From 7017c2427ca8a98308b29f494ddc422a1486c636 Mon Sep 17 00:00:00 2001 From: ajdj100 Date: Sun, 25 Jan 2026 10:49:29 -0500 Subject: [PATCH] Updated db scripts --- ...wn.sql => 20260125045035_initial.down.sql} | 0 ...l.up.sql => 20260125045035_initial.up.sql} | 192 +- api/migrations/seed.sql | 203324 ++++++++------- api/scripts/migrate.js | 11 +- api/scripts/seed.js | 10 +- 5 files changed, 102911 insertions(+), 100626 deletions(-) rename api/migrations/{20251231010446_initial.down.sql => 20260125045035_initial.down.sql} (100%) rename api/migrations/{20251231010446_initial.up.sql => 20260125045035_initial.up.sql} (73%) diff --git a/api/migrations/20251231010446_initial.down.sql b/api/migrations/20260125045035_initial.down.sql similarity index 100% rename from api/migrations/20251231010446_initial.down.sql rename to api/migrations/20260125045035_initial.down.sql diff --git a/api/migrations/20251231010446_initial.up.sql b/api/migrations/20260125045035_initial.up.sql similarity index 73% rename from api/migrations/20251231010446_initial.up.sql rename to api/migrations/20260125045035_initial.up.sql index 85e173a..f15644c 100644 --- a/api/migrations/20251231010446_initial.up.sql +++ b/api/migrations/20260125045035_initial.up.sql @@ -14,11 +14,6 @@ /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- Dumping database structure for milsim_website_development -CREATE DATABASE IF NOT EXISTS `milsim_website_development` /*!40100 DEFAULT CHARACTER SET utf8mb4 */; -USE `milsim_website_development`; - -- Dumping structure for table milsim_website_development.application_comments CREATE TABLE IF NOT EXISTS `application_comments` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -68,7 +63,7 @@ CREATE TABLE IF NOT EXISTS `arma_maps` ( `map` varchar(50) DEFAULT NULL, `name` text DEFAULT NULL, `last_used` datetime DEFAULT NULL, - `deleted` tinyint(4) DEFAULT 0, + `deleted` tinyint(1) DEFAULT 0, `workshop_id` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `map` (`map`) USING BTREE @@ -108,18 +103,19 @@ CREATE TABLE IF NOT EXISTS `calendar_events` ( `cancelled` tinyint(1) DEFAULT 0, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `full_day` tinyint(4) DEFAULT NULL, + `full_day` tinyint(1) DEFAULT NULL, `guilded_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guilded_channel_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_creator` (`creator`), CONSTRAINT `FK_calendar_events_members` FOREIGN KEY (`creator`) REFERENCES `members` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=3346 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=3361 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Data exporting was unselected. -- Dumping structure for table milsim_website_development.calendar_events_signups CREATE TABLE IF NOT EXISTS `calendar_events_signups` ( + `id` int(11) NOT NULL AUTO_INCREMENT, `member_id` int(11) NOT NULL, `event_id` int(11) NOT NULL, `status` enum('not_attending','attending','maybe') COLLATE utf8mb4_unicode_ci NOT NULL, @@ -127,12 +123,13 @@ CREATE TABLE IF NOT EXISTS `calendar_events_signups` ( `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `guilded_member_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `guilded_event_id` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, - PRIMARY KEY (`member_id`,`event_id`), + PRIMARY KEY (`id`), + UNIQUE KEY `member_id_event_id` (`member_id`,`event_id`), UNIQUE KEY `guilded_member_id_guilded_event_id` (`guilded_member_id`,`guilded_event_id`), KEY `fk_signup_event` (`event_id`), CONSTRAINT `fk_signup_event` FOREIGN KEY (`event_id`) REFERENCES `calendar_events` (`id`) ON DELETE CASCADE, CONSTRAINT `fk_signup_member` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON DELETE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=99088 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Data exporting was unselected. @@ -143,7 +140,7 @@ CREATE TABLE IF NOT EXISTS `course_attendee_roles` ( `description` text DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) NOT NULL DEFAULT 0, + `deleted` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `type` (`name`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COMMENT='Changed from course_attendee_type to event_attendee_type'; @@ -152,6 +149,7 @@ CREATE TABLE IF NOT EXISTS `course_attendee_roles` ( -- Dumping structure for table milsim_website_development.course_attendees CREATE TABLE IF NOT EXISTS `course_attendees` ( + `id` int(11) NOT NULL AUTO_INCREMENT, `passed_bookwork` tinyint(1) NOT NULL DEFAULT 0, `passed_qual` tinyint(1) NOT NULL DEFAULT 0, `attendee_id` int(11) NOT NULL, @@ -160,15 +158,17 @@ CREATE TABLE IF NOT EXISTS `course_attendees` ( `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `remarks` text DEFAULT NULL, - `expired` tinyint(4) NOT NULL DEFAULT 0, - `expired_reason` varchar(50) NOT NULL DEFAULT '0', - PRIMARY KEY (`attendee_id`,`course_event_id`) USING BTREE, + `expired` tinyint(1) NOT NULL DEFAULT 0, + `expired_reason` tinytext DEFAULT NULL, + `expired_date` datetime DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `attendee_id_course_event_id` (`attendee_id`,`course_event_id`), KEY `courseInstanceId` (`course_event_id`) USING BTREE, KEY `fk_CourseInstancesMembers_CoureseAttendeeType_id` (`attendee_role_id`) USING BTREE, CONSTRAINT `fk_course_event_member_coures_attendee_type_id` FOREIGN KEY (`attendee_role_id`) REFERENCES `course_attendee_roles` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_course_event_members_coures_event_id` FOREIGN KEY (`course_event_id`) REFERENCES `course_events` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_course_event_members_members_id` FOREIGN KEY (`attendee_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=1736 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. @@ -194,8 +194,8 @@ CREATE TABLE IF NOT EXISTS `course_events` ( `report_url` varchar(2048) DEFAULT NULL, `remarks` text DEFAULT NULL, `created_by` int(11) DEFAULT NULL, - `hasBookwork` tinyint(4) DEFAULT NULL, - `hasQual` tinyint(4) DEFAULT NULL, + `hasBookwork` tinyint(1) DEFAULT NULL, + `hasQual` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_course_events_event_type_id` (`event_type`) USING BTREE, KEY `courseId` (`course_id`) USING BTREE, @@ -203,7 +203,7 @@ CREATE TABLE IF NOT EXISTS `course_events` ( CONSTRAINT `fk_coures_events_course_id` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_course_events_created_by` FOREIGN KEY (`created_by`) REFERENCES `members` (`id`), CONSTRAINT `fk_course_events_event_type_id` FOREIGN KEY (`event_type`) REFERENCES `event_types` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=430 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. @@ -214,9 +214,9 @@ CREATE TABLE IF NOT EXISTS `course_qualified_trainers` ( `course_id` int(11) DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `qualified` tinyint(4) DEFAULT NULL, + `qualified` tinyint(1) DEFAULT NULL, `instance_qualified_id` int(11) DEFAULT NULL, - `deleted` tinyint(4) DEFAULT 0, + `deleted` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `memberId_courseId` (`member_id`,`course_id`) USING BTREE, KEY `fk_coures_qualified_trainers_coures_id` (`course_id`) USING BTREE, @@ -228,6 +228,31 @@ CREATE TABLE IF NOT EXISTS `course_qualified_trainers` ( -- Data exporting was unselected. +-- Dumping structure for table milsim_website_development.course_requests +CREATE TABLE IF NOT EXISTS `course_requests` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `course_id` int(11) DEFAULT NULL COMMENT 'What training is requested', + `requester_id` int(11) DEFAULT NULL COMMENT 'Who Requetsed the training', + `requested_availablity` tinytext DEFAULT NULL COMMENT 'Freeform Request Time Frame', + `aditional_info` tinytext DEFAULT NULL COMMENT 'Aditional info provided by requester', + `request_status` enum('New Request','Awaiting Scheduling','Scheduled','Fulfilled','Did Not Attend','Ignore') DEFAULT NULL COMMENT 'Allow Training Staff to keep track of state of request', + `requested_date` datetime NOT NULL DEFAULT current_timestamp() COMMENT 'Date the Request was put in', + `fufilled_by_id` int(11) DEFAULT NULL COMMENT 'Who Fufilled the Request', + `fufilled_date` datetime DEFAULT NULL COMMENT 'What date the request was fufilled', + `request_notes` tinytext DEFAULT NULL COMMENT 'Notes for the Training Staff to put on the request (Internal)', + `created_at` datetime NOT NULL DEFAULT current_timestamp() COMMENT 'Database Value', + `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Database Value', + PRIMARY KEY (`id`) USING BTREE, + KEY `FK__members` (`requester_id`) USING BTREE, + KEY `FK__courses` (`course_id`) USING BTREE, + KEY `FK__members_2` (`fufilled_by_id`) USING BTREE, + CONSTRAINT `FK__courses` FOREIGN KEY (`course_id`) REFERENCES `courses` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK__members` FOREIGN KEY (`requester_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, + CONSTRAINT `FK__members_2` FOREIGN KEY (`fufilled_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Course requests that members wish to make.'; + +-- Data exporting was unselected. + -- Dumping structure for table milsim_website_development.courses CREATE TABLE IF NOT EXISTS `courses` ( `id` int(11) NOT NULL AUTO_INCREMENT, @@ -238,14 +263,14 @@ CREATE TABLE IF NOT EXISTS `courses` ( `image_url` varchar(255) DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, + `deleted` tinyint(1) DEFAULT 0, `prereq_id` int(11) DEFAULT NULL, `hasBookwork` tinyint(1) NOT NULL DEFAULT 0, `hasQual` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`), UNIQUE KEY `shortName` (`short_name`) USING BTREE -) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. @@ -270,7 +295,7 @@ CREATE TABLE IF NOT EXISTS `event_types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `event_type` varchar(100) DEFAULT NULL, `event_category` varchar(100) DEFAULT NULL, - `deleted` tinyint(4) NOT NULL DEFAULT 0, + `deleted` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4; @@ -286,7 +311,7 @@ CREATE TABLE IF NOT EXISTS `guilded_events` ( `event_date` datetime DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` int(11) DEFAULT NULL, + `deleted` tinyint(1) DEFAULT NULL, `url` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `calendar_id_event_id` (`channel_id`,`event_id`) USING BTREE @@ -305,11 +330,11 @@ CREATE TABLE IF NOT EXISTS `leave_of_absences` ( `type_id` int(11) DEFAULT NULL, `reason` text DEFAULT NULL COMMENT 'Reason a person has put in the LOA', `created_by_id` int(11) DEFAULT NULL, - `deleted` tinyint(4) NOT NULL DEFAULT 0, - `expired` tinyint(4) DEFAULT NULL COMMENT 'If a LOA is Expired or not', + `deleted` tinyint(1) NOT NULL DEFAULT 0, + `expired` tinyint(1) DEFAULT NULL COMMENT 'If a LOA is Expired or not', `closed_by` int(11) DEFAULT NULL COMMENT 'Who Closed the LOA if it was manually Closed', `ended_at` date DEFAULT NULL, - `closed` tinyint(4) DEFAULT NULL COMMENT 'If a LOA was closed early or ', + `closed` tinyint(1) DEFAULT NULL COMMENT 'If a LOA was closed early or ', `created_at` datetime NOT NULL DEFAULT current_timestamp() COMMENT 'Database Record Creation Date', `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Database Record Modified Date', PRIMARY KEY (`id`), @@ -319,7 +344,7 @@ CREATE TABLE IF NOT EXISTS `leave_of_absences` ( CONSTRAINT `FK_leave_of_absences_leave_of_absences_types` FOREIGN KEY (`type_id`) REFERENCES `leave_of_absences_types` (`id`) ON UPDATE CASCADE, CONSTRAINT `c` FOREIGN KEY (`created_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_leave_of_absesnse_members_id` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. @@ -328,7 +353,7 @@ CREATE TABLE IF NOT EXISTS `leave_of_absences_types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `max_length_days` int(11) NOT NULL DEFAULT 0, - `extendable` tinyint(4) NOT NULL DEFAULT 0, + `extendable` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; @@ -351,11 +376,11 @@ CREATE TABLE IF NOT EXISTS `members` ( `aliases` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`aliases`)), `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT NULL, + `deleted` tinyint(1) DEFAULT NULL, `remarks` text DEFAULT NULL, `authentik_sub` varchar(255) DEFAULT NULL, `authentik_issuer` varchar(255) DEFAULT NULL, - `state` enum('guest','applicant','member','retired','banned','denied') NOT NULL DEFAULT 'member', + `state` enum('guest','applicant','member','retired','banned','denied') NOT NULL DEFAULT 'guest', `displayName` varchar(50) DEFAULT NULL, `last_activity` datetime DEFAULT NULL, `last_login` datetime DEFAULT NULL, @@ -365,7 +390,7 @@ CREATE TABLE IF NOT EXISTS `members` ( UNIQUE KEY `discordId` (`discord_id`) USING BTREE, UNIQUE KEY `guilded_id` (`guilded_id`), UNIQUE KEY `uk_authentik_identity` (`authentik_issuer`,`authentik_sub`) -) ENGINE=InnoDB AUTO_INCREMENT=3349 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=3362 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. @@ -394,7 +419,7 @@ CREATE TABLE IF NOT EXISTS `members_qualifications` ( `event_date` datetime DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT NULL, + `deleted` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_members_qualifications_member_id` (`member_id`), KEY `fk_members_qualifications_qualifications_id` (`qualification_id`), @@ -412,10 +437,14 @@ CREATE TABLE IF NOT EXISTS `members_ranks` ( `authorized_by_id` int(11) DEFAULT NULL, `created_by_id` int(11) DEFAULT NULL, `reason` varchar(50) DEFAULT NULL, - `start_date` datetime NOT NULL DEFAULT current_timestamp(), - `end_date` datetime DEFAULT NULL, + `start_date_og` datetime DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date_og` datetime DEFAULT NULL, + `end_date` date DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp(), + `created_at_ts` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `batch` varchar(36) DEFAULT NULL, PRIMARY KEY (`id`), KEY `fk_members_ranks_members_id` (`member_id`), KEY `fk_members_ranks_rank_id` (`rank_id`), @@ -425,19 +454,21 @@ CREATE TABLE IF NOT EXISTS `members_ranks` ( CONSTRAINT `FK_members_ranks_members_2` FOREIGN KEY (`authorized_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, CONSTRAINT `FK_members_ranks_members_3` FOREIGN KEY (`created_by_id`) REFERENCES `members` (`id`) ON UPDATE CASCADE, CONSTRAINT `fk_members_ranks_rank_id` FOREIGN KEY (`rank_id`) REFERENCES `ranks` (`id`) ON UPDATE CASCADE -) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4; +) ENGINE=InnoDB AUTO_INCREMENT=120 DEFAULT CHARSET=utf8mb4; -- Data exporting was unselected. -- Dumping structure for table milsim_website_development.members_roles CREATE TABLE IF NOT EXISTS `members_roles` ( + `id` int(11) NOT NULL AUTO_INCREMENT, `member_id` int(11) NOT NULL, `role_id` int(11) NOT NULL, - PRIMARY KEY (`member_id`,`role_id`), + PRIMARY KEY (`id`), + UNIQUE KEY `member_id_role_id` (`member_id`,`role_id`), KEY `role_id` (`role_id`), CONSTRAINT `members_roles_ibfk_1` FOREIGN KEY (`member_id`) REFERENCES `members` (`id`) ON DELETE CASCADE, CONSTRAINT `members_roles_ibfk_2` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +) ENGINE=InnoDB AUTO_INCREMENT=108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- Data exporting was unselected. @@ -449,8 +480,10 @@ CREATE TABLE IF NOT EXISTS `members_statuses` ( `authorized_by_id` int(11) DEFAULT NULL, `created_by_id` int(11) DEFAULT NULL, `reason` varchar(50) DEFAULT NULL, - `start_date` datetime NOT NULL DEFAULT current_timestamp(), - `end_date` datetime DEFAULT NULL, + `start_date_og` datetime DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date_og` datetime DEFAULT NULL, + `end_date` date DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`), @@ -474,10 +507,12 @@ CREATE TABLE IF NOT EXISTS `members_unit` ( `authorized_by_id` int(11) NOT NULL, `created_by_id` int(11) NOT NULL, `reason` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', - `start_date` datetime NOT NULL DEFAULT current_timestamp(), - `end_date` datetime DEFAULT NULL, - `created_at` datetime DEFAULT current_timestamp(), - `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), + `start_date_og` datetime DEFAULT NULL, + `start_date` date DEFAULT NULL, + `end_date_og` datetime DEFAULT NULL, + `end_date` date DEFAULT NULL, + `created_at` datetime NOT NULL DEFAULT current_timestamp(), + `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`), KEY `FK_members_unit_units` (`unit_id`), KEY `FK_members_unit_members` (`member_id`), @@ -497,7 +532,7 @@ CREATE TABLE IF NOT EXISTS `mission_attendee_roles` ( `name` varchar(50) DEFAULT NULL, `short_name` varchar(50) DEFAULT NULL, `description` text DEFAULT NULL, - `deleted` tinyint(4) NOT NULL DEFAULT 0, + `deleted` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `role_name` (`name`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; @@ -536,7 +571,7 @@ CREATE TABLE IF NOT EXISTS `mission_events` ( `guilded_event_id` int(11) DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, + `deleted` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `event_name` (`event_name`), KEY `fk_events_author_member_id` (`author_id`) USING BTREE, @@ -561,7 +596,7 @@ CREATE TABLE IF NOT EXISTS `qualifications` ( `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), `image_url` varchar(250) DEFAULT NULL, - `deleted` tinytext DEFAULT '0', + `deleted` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `name` (`name`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Contains a list of Member Qualifications for the unit.'; @@ -618,38 +653,6 @@ CREATE TABLE IF NOT EXISTS `site_config` ( CONSTRAINT `FK_site_config_units` FOREIGN KEY (`application_unit_on_accept`) REFERENCES `units` (`id`) ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; --- Data exporting was unselected. - --- Dumping structure for procedure milsim_website_development.sp_accept_new_recruit_validation -DELIMITER // -// -DELIMITER ; - --- Dumping structure for procedure milsim_website_development.sp_GetCalendarEventSignups -DELIMITER // -// -DELIMITER ; - --- Dumping structure for procedure milsim_website_development.sp_manual_update_report -DELIMITER // -// -DELIMITER ; - --- Dumping structure for procedure milsim_website_development.sp_update_member_rank -DELIMITER // -// -DELIMITER ; - --- Dumping structure for procedure milsim_website_development.sp_update_member_status -DELIMITER // -// -DELIMITER ; - --- Dumping structure for procedure milsim_website_development.sp_update_member_unit -DELIMITER // -// -DELIMITER ; - -- Dumping structure for table milsim_website_development.status_change_requests CREATE TABLE IF NOT EXISTS `status_change_requests` ( `id` int(11) NOT NULL, @@ -685,7 +688,7 @@ CREATE TABLE IF NOT EXISTS `statuses` ( `name` varchar(100) NOT NULL, `created_at` datetime NOT NULL DEFAULT current_timestamp(), `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, + `deleted` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4; @@ -698,7 +701,7 @@ CREATE TABLE IF NOT EXISTS `statuses_reasons` ( `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` datetime DEFAULT current_timestamp(), `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(), - `deleted` tinyint(4) DEFAULT 0, + `deleted` tinyint(1) DEFAULT 0, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Contains a list of Reasons that a Status Change occured. This helps determine Promotions, Demotions, Transfers, Joins, Leaves.'; @@ -712,7 +715,7 @@ CREATE TABLE IF NOT EXISTS `units` ( `type` enum('Company','Status','External') DEFAULT NULL, `is_internal` tinyint(4) NOT NULL, `description` text DEFAULT NULL, - `active` tinyint(4) NOT NULL DEFAULT 1, + `active` tinyint(1) NOT NULL DEFAULT 1, `color` varchar(10) DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4; @@ -725,9 +728,9 @@ CREATE TABLE `view_member_latest_info` ( `member_id` INT(11) NOT NULL, `member_name` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci', `rank` LONGTEXT NULL COLLATE 'utf8mb4_general_ci', - `rank_date` DATETIME NULL, + `rank_date` DATE NULL, `status` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', - `status_date` DATETIME NULL + `status_date` DATE NULL ); -- Dumping structure for view milsim_website_development.view_member_rank_status_all @@ -736,9 +739,9 @@ CREATE TABLE `view_member_rank_status_all` ( `member_id` INT(11) NOT NULL, `member_name` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci', `rank` LONGTEXT NULL COLLATE 'utf8mb4_general_ci', - `rank_date` DATETIME NULL, + `rank_date` DATE NULL, `status` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', - `status_date` DATETIME NULL + `status_date` DATE NULL ); -- Dumping structure for view milsim_website_development.view_member_rank_unit_status_latest @@ -748,11 +751,12 @@ CREATE TABLE `view_member_rank_unit_status_latest` ( `member_name` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci', `displayName` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', `rank` LONGTEXT NULL COLLATE 'utf8mb4_general_ci', - `rank_date` DATETIME NULL, - `status` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', - `status_date` DATETIME NULL, + `rank_abv` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', + `rank_date` DATE NULL, `unit` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', - `unit_date` DATETIME NULL, + `unit_date` DATE NULL, + `status` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci', + `status_date` DATE NULL, `loa_until` DATE NULL ); @@ -765,22 +769,22 @@ CREATE TABLE `view_member_settings` ( -- Removing temporary table and create final VIEW structure DROP TABLE IF EXISTS `view_member_latest_info`; -CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `view_member_latest_info` AS select `m`.`id` AS `member_id`,`m`.`name` AS `member_name`,`r`.`name` AS `rank`,`mr`.`start_date` AS `rank_date`,`s`.`name` AS `status`,`ms`.`start_date` AS `status_date` from ((((`milsim_website_development`.`members` `m` left join (select `mr`.`id` AS `id`,`mr`.`member_id` AS `member_id`,`mr`.`rank_id` AS `rank_id`,`mr`.`start_date` AS `start_date`,`mr`.`created_at` AS `created_at`,`mr`.`updated_at` AS `updated_at` from ((`milsim_website_development`.`members_ranks` `mr` join (select `milsim_website_development`.`members_ranks`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_ranks`.`start_date`) AS `max_date` from `milsim_website_development`.`members_ranks` group by `milsim_website_development`.`members_ranks`.`member_id`) `lr` on(`lr`.`member_id` = `mr`.`member_id` and `lr`.`max_date` = `mr`.`start_date`)) join (select `milsim_website_development`.`members_ranks`.`member_id` AS `member_id`,`milsim_website_development`.`members_ranks`.`start_date` AS `start_date`,max(`milsim_website_development`.`members_ranks`.`id`) AS `max_id` from `milsim_website_development`.`members_ranks` group by `milsim_website_development`.`members_ranks`.`member_id`,`milsim_website_development`.`members_ranks`.`start_date`) `lr2` on(`lr2`.`member_id` = `mr`.`member_id` and `lr2`.`start_date` = `mr`.`start_date` and `lr2`.`max_id` = `mr`.`id`))) `mr` on(`mr`.`member_id` = `m`.`id`)) left join `milsim_website_development`.`ranks` `r` on(`r`.`id` = `mr`.`rank_id`)) left join (select `ms`.`id` AS `id`,`ms`.`member_id` AS `member_id`,`ms`.`status_id` AS `status_id`,`ms`.`start_date` AS `start_date`,`ms`.`created_at` AS `created_at`,`ms`.`updated_at` AS `updated_at` from ((`milsim_website_development`.`members_statuses` `ms` join (select `milsim_website_development`.`members_statuses`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_statuses`.`start_date`) AS `max_date` from `milsim_website_development`.`members_statuses` group by `milsim_website_development`.`members_statuses`.`member_id`) `ls` on(`ls`.`member_id` = `ms`.`member_id` and `ls`.`max_date` = `ms`.`start_date`)) join (select `milsim_website_development`.`members_statuses`.`member_id` AS `member_id`,`milsim_website_development`.`members_statuses`.`start_date` AS `start_date`,max(`milsim_website_development`.`members_statuses`.`id`) AS `max_id` from `milsim_website_development`.`members_statuses` group by `milsim_website_development`.`members_statuses`.`member_id`,`milsim_website_development`.`members_statuses`.`start_date`) `ls2` on(`ls2`.`member_id` = `ms`.`member_id` and `ls2`.`start_date` = `ms`.`start_date` and `ls2`.`max_id` = `ms`.`id`))) `ms` on(`ms`.`member_id` = `m`.`id`)) left join `milsim_website_development`.`statuses` `s` on(`s`.`id` = `ms`.`status_id`)) +CREATE VIEW `view_member_latest_info` AS select `m`.`id` AS `member_id`,`m`.`name` AS `member_name`,`r`.`name` AS `rank`,`mr`.`start_date` AS `rank_date`,`s`.`name` AS `status`,`ms`.`start_date` AS `status_date` from ((((`members` `m` left join (select `mr`.`id` AS `id`,`mr`.`member_id` AS `member_id`,`mr`.`rank_id` AS `rank_id`,`mr`.`start_date` AS `start_date`,`mr`.`created_at` AS `created_at`,`mr`.`updated_at` AS `updated_at` from ((`members_ranks` `mr` join (select `members_ranks`.`member_id` AS `member_id`,max(`members_ranks`.`start_date`) AS `max_date` from `members_ranks` group by `members_ranks`.`member_id`) `lr` on(`lr`.`member_id` = `mr`.`member_id` and `lr`.`max_date` = `mr`.`start_date`)) join (select `members_ranks`.`member_id` AS `member_id`,`members_ranks`.`start_date` AS `start_date`,max(`members_ranks`.`id`) AS `max_id` from `members_ranks` group by `members_ranks`.`member_id`,`members_ranks`.`start_date`) `lr2` on(`lr2`.`member_id` = `mr`.`member_id` and `lr2`.`start_date` = `mr`.`start_date` and `lr2`.`max_id` = `mr`.`id`))) `mr` on(`mr`.`member_id` = `m`.`id`)) left join `ranks` `r` on(`r`.`id` = `mr`.`rank_id`)) left join (select `ms`.`id` AS `id`,`ms`.`member_id` AS `member_id`,`ms`.`status_id` AS `status_id`,`ms`.`start_date` AS `start_date`,`ms`.`created_at` AS `created_at`,`ms`.`updated_at` AS `updated_at` from ((`members_statuses` `ms` join (select `members_statuses`.`member_id` AS `member_id`,max(`members_statuses`.`start_date`) AS `max_date` from `members_statuses` group by `members_statuses`.`member_id`) `ls` on(`ls`.`member_id` = `ms`.`member_id` and `ls`.`max_date` = `ms`.`start_date`)) join (select `members_statuses`.`member_id` AS `member_id`,`members_statuses`.`start_date` AS `start_date`,max(`members_statuses`.`id`) AS `max_id` from `members_statuses` group by `members_statuses`.`member_id`,`members_statuses`.`start_date`) `ls2` on(`ls2`.`member_id` = `ms`.`member_id` and `ls2`.`start_date` = `ms`.`start_date` and `ls2`.`max_id` = `ms`.`id`))) `ms` on(`ms`.`member_id` = `m`.`id`)) left join `statuses` `s` on(`s`.`id` = `ms`.`status_id`)) ; -- Removing temporary table and create final VIEW structure DROP TABLE IF EXISTS `view_member_rank_status_all`; -CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `view_member_rank_status_all` AS select `milsim_website_development`.`members`.`id` AS `member_id`,`milsim_website_development`.`members`.`name` AS `member_name`,`milsim_website_development`.`ranks`.`name` AS `rank`,`members_ranks`.`start_date` AS `rank_date`,`milsim_website_development`.`statuses`.`name` AS `status`,`members_statuses`.`start_date` AS `status_date` from ((((`milsim_website_development`.`members` left join (select `mr`.`id` AS `id`,`mr`.`member_id` AS `member_id`,`mr`.`rank_id` AS `rank_id`,`mr`.`start_date` AS `start_date`,`mr`.`created_at` AS `created_at`,`mr`.`updated_at` AS `updated_at` from (`milsim_website_development`.`members_ranks` `mr` join (select `milsim_website_development`.`members_ranks`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_ranks`.`start_date`) AS `max_rank_date` from `milsim_website_development`.`members_ranks` group by `milsim_website_development`.`members_ranks`.`member_id`) `latest_ranks` on(`mr`.`member_id` = `latest_ranks`.`member_id` and `mr`.`start_date` = `latest_ranks`.`max_rank_date`))) `members_ranks` on(`milsim_website_development`.`members`.`id` = `members_ranks`.`member_id`)) left join (select `ms`.`id` AS `id`,`ms`.`member_id` AS `member_id`,`ms`.`status_id` AS `status_id`,`ms`.`start_date` AS `start_date`,`ms`.`created_at` AS `created_at`,`ms`.`updated_at` AS `updated_at` from (`milsim_website_development`.`members_statuses` `ms` join (select `milsim_website_development`.`members_statuses`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_statuses`.`start_date`) AS `max_status_date` from `milsim_website_development`.`members_statuses` group by `milsim_website_development`.`members_statuses`.`member_id`) `latest_statuses` on(`ms`.`member_id` = `latest_statuses`.`member_id` and `ms`.`start_date` = `latest_statuses`.`max_status_date`))) `members_statuses` on(`milsim_website_development`.`members`.`id` = `members_statuses`.`member_id`)) left join `milsim_website_development`.`ranks` on(`members_ranks`.`rank_id` = `milsim_website_development`.`ranks`.`id`)) left join `milsim_website_development`.`statuses` on(`members_statuses`.`status_id` = `milsim_website_development`.`statuses`.`id`)) +CREATE VIEW `view_member_rank_status_all` AS select `members`.`id` AS `member_id`,`members`.`name` AS `member_name`,`ranks`.`name` AS `rank`,`members_ranks`.`start_date` AS `rank_date`,`statuses`.`name` AS `status`,`members_statuses`.`start_date` AS `status_date` from ((((`members` left join (select `mr`.`id` AS `id`,`mr`.`member_id` AS `member_id`,`mr`.`rank_id` AS `rank_id`,`mr`.`start_date` AS `start_date`,`mr`.`created_at` AS `created_at`,`mr`.`updated_at` AS `updated_at` from (`members_ranks` `mr` join (select `members_ranks`.`member_id` AS `member_id`,max(`members_ranks`.`start_date`) AS `max_rank_date` from `members_ranks` group by `members_ranks`.`member_id`) `latest_ranks` on(`mr`.`member_id` = `latest_ranks`.`member_id` and `mr`.`start_date` = `latest_ranks`.`max_rank_date`))) `members_ranks` on(`members`.`id` = `members_ranks`.`member_id`)) left join (select `ms`.`id` AS `id`,`ms`.`member_id` AS `member_id`,`ms`.`status_id` AS `status_id`,`ms`.`start_date` AS `start_date`,`ms`.`created_at` AS `created_at`,`ms`.`updated_at` AS `updated_at` from (`members_statuses` `ms` join (select `members_statuses`.`member_id` AS `member_id`,max(`members_statuses`.`start_date`) AS `max_status_date` from `members_statuses` group by `members_statuses`.`member_id`) `latest_statuses` on(`ms`.`member_id` = `latest_statuses`.`member_id` and `ms`.`start_date` = `latest_statuses`.`max_status_date`))) `members_statuses` on(`members`.`id` = `members_statuses`.`member_id`)) left join `ranks` on(`members_ranks`.`rank_id` = `ranks`.`id`)) left join `statuses` on(`members_statuses`.`status_id` = `statuses`.`id`)) ; -- Removing temporary table and create final VIEW structure DROP TABLE IF EXISTS `view_member_rank_unit_status_latest`; -CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `view_member_rank_unit_status_latest` AS select `m`.`id` AS `member_id`,`m`.`name` AS `member_name`,`m`.`displayName` AS `displayName`,`r`.`name` AS `rank`,`mr`.`start_date` AS `rank_date`,`s`.`name` AS `status`,`ms`.`start_date` AS `status_date`,`u`.`name` AS `unit`,`mu`.`start_date` AS `unit_date`,`loa`.`loa_until` AS `loa_until` from (((((((`milsim_website_development`.`members` `m` left join (select `mr`.`member_id` AS `member_id`,`mr`.`rank_id` AS `rank_id`,`mr`.`start_date` AS `start_date` from (`milsim_website_development`.`members_ranks` `mr` join (select `milsim_website_development`.`members_ranks`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_ranks`.`start_date`) AS `max_start_date` from `milsim_website_development`.`members_ranks` group by `milsim_website_development`.`members_ranks`.`member_id`) `latest` on(`mr`.`member_id` = `latest`.`member_id` and `mr`.`start_date` = `latest`.`max_start_date`))) `mr` on(`m`.`id` = `mr`.`member_id`)) left join `milsim_website_development`.`ranks` `r` on(`mr`.`rank_id` = `r`.`id`)) left join (select `ms`.`member_id` AS `member_id`,`ms`.`status_id` AS `status_id`,`ms`.`start_date` AS `start_date` from (`milsim_website_development`.`members_statuses` `ms` join (select `milsim_website_development`.`members_statuses`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_statuses`.`start_date`) AS `max_start_date` from `milsim_website_development`.`members_statuses` group by `milsim_website_development`.`members_statuses`.`member_id`) `latest` on(`ms`.`member_id` = `latest`.`member_id` and `ms`.`start_date` = `latest`.`max_start_date`))) `ms` on(`m`.`id` = `ms`.`member_id`)) left join `milsim_website_development`.`statuses` `s` on(`ms`.`status_id` = `s`.`id`)) left join (select `mu`.`member_id` AS `member_id`,`mu`.`unit_id` AS `unit_id`,`mu`.`start_date` AS `start_date` from (`milsim_website_development`.`members_unit` `mu` join (select `milsim_website_development`.`members_unit`.`member_id` AS `member_id`,max(`milsim_website_development`.`members_unit`.`start_date`) AS `max_start_date` from `milsim_website_development`.`members_unit` group by `milsim_website_development`.`members_unit`.`member_id`) `latest` on(`mu`.`member_id` = `latest`.`member_id` and `mu`.`start_date` = `latest`.`max_start_date`))) `mu` on(`m`.`id` = `mu`.`member_id`)) left join `milsim_website_development`.`units` `u` on(`mu`.`unit_id` = `u`.`id`)) left join (select `l`.`member_id` AS `member_id`,max(greatest(cast(`l`.`end_date` as date),cast(coalesce(`l`.`extended_till`,`l`.`end_date`) as date))) AS `loa_until` from `milsim_website_development`.`leave_of_absences` `l` where `l`.`deleted` = 0 and (`l`.`closed` is null or `l`.`closed` = 0) and (`l`.`expired` is null or `l`.`expired` = 0) and cast(`l`.`start_date` as date) <= curdate() and (cast(`l`.`end_date` as date) >= curdate() or cast(`l`.`extended_till` as date) >= curdate()) group by `l`.`member_id`) `loa` on(`loa`.`member_id` = `m`.`id`)) +CREATE VIEW `view_member_rank_unit_status_latest` AS select `m`.`id` AS `member_id`,`m`.`name` AS `member_name`,`m`.`displayName` AS `displayName`,`r`.`name` AS `rank`,`r`.`short_name` AS `rank_abv`,`mr`.`start_date` AS `rank_date`,`u`.`name` AS `unit`,`mu`.`start_date` AS `unit_date`,`s`.`name` AS `status`,`ms`.`start_date` AS `status_date`,`loa`.`loa_until` AS `loa_until` from (((((((`members` `m` left join (select `x`.`id` AS `id`,`x`.`member_id` AS `member_id`,`x`.`rank_id` AS `rank_id`,`x`.`authorized_by_id` AS `authorized_by_id`,`x`.`created_by_id` AS `created_by_id`,`x`.`reason` AS `reason`,`x`.`start_date_og` AS `start_date_og`,`x`.`start_date` AS `start_date`,`x`.`end_date_og` AS `end_date_og`,`x`.`end_date` AS `end_date`,`x`.`created_at` AS `created_at`,`x`.`created_at_ts` AS `created_at_ts`,`x`.`updated_at` AS `updated_at`,`x`.`batch` AS `batch` from (`members_ranks` `x` join (select `members_ranks`.`member_id` AS `member_id`,max(`members_ranks`.`created_at`) AS `max_created` from `members_ranks` where `members_ranks`.`end_date` is null group by `members_ranks`.`member_id`) `y` on(`x`.`member_id` = `y`.`member_id` and `x`.`created_at` = `y`.`max_created`))) `mr` on(`mr`.`member_id` = `m`.`id`)) left join `ranks` `r` on(`r`.`id` = `mr`.`rank_id`)) left join (select `x`.`id` AS `id`,`x`.`member_id` AS `member_id`,`x`.`unit_id` AS `unit_id`,`x`.`authorized_by_id` AS `authorized_by_id`,`x`.`created_by_id` AS `created_by_id`,`x`.`reason` AS `reason`,`x`.`start_date_og` AS `start_date_og`,`x`.`start_date` AS `start_date`,`x`.`end_date_og` AS `end_date_og`,`x`.`end_date` AS `end_date`,`x`.`created_at` AS `created_at`,`x`.`updated_at` AS `updated_at` from (`members_unit` `x` join (select `members_unit`.`member_id` AS `member_id`,max(`members_unit`.`created_at`) AS `max_created` from `members_unit` where `members_unit`.`end_date` is null group by `members_unit`.`member_id`) `y` on(`x`.`member_id` = `y`.`member_id` and `x`.`created_at` = `y`.`max_created`))) `mu` on(`mu`.`member_id` = `m`.`id`)) left join `units` `u` on(`u`.`id` = `mu`.`unit_id`)) left join (select `x`.`id` AS `id`,`x`.`member_id` AS `member_id`,`x`.`status_id` AS `status_id`,`x`.`authorized_by_id` AS `authorized_by_id`,`x`.`created_by_id` AS `created_by_id`,`x`.`reason` AS `reason`,`x`.`start_date_og` AS `start_date_og`,`x`.`start_date` AS `start_date`,`x`.`end_date_og` AS `end_date_og`,`x`.`end_date` AS `end_date`,`x`.`created_at` AS `created_at`,`x`.`updated_at` AS `updated_at` from (`members_statuses` `x` join (select `members_statuses`.`member_id` AS `member_id`,max(`members_statuses`.`created_at`) AS `max_created` from `members_statuses` where `members_statuses`.`end_date` is null group by `members_statuses`.`member_id`) `y` on(`x`.`member_id` = `y`.`member_id` and `x`.`created_at` = `y`.`max_created`))) `ms` on(`ms`.`member_id` = `m`.`id`)) left join `statuses` `s` on(`s`.`id` = `ms`.`status_id`)) left join (select `x`.`id` AS `id`,`x`.`member_id` AS `member_id`,`x`.`filed_date` AS `filed_date`,`x`.`start_date` AS `start_date`,`x`.`end_date` AS `end_date`,`x`.`extended_till` AS `extended_till`,`x`.`type_id` AS `type_id`,`x`.`reason` AS `reason`,`x`.`created_by_id` AS `created_by_id`,`x`.`deleted` AS `deleted`,`x`.`expired` AS `expired`,`x`.`closed_by` AS `closed_by`,`x`.`ended_at` AS `ended_at`,`x`.`closed` AS `closed`,`x`.`created_at` AS `created_at`,`x`.`updated_at` AS `updated_at`,greatest(cast(`x`.`end_date` as date),cast(coalesce(`x`.`extended_till`,`x`.`end_date`) as date)) AS `loa_until` from (`leave_of_absences` `x` join (select `leave_of_absences`.`member_id` AS `member_id`,max(`leave_of_absences`.`created_at`) AS `max_created` from `leave_of_absences` where (`leave_of_absences`.`deleted` = 0 or `leave_of_absences`.`deleted` is null) and (`leave_of_absences`.`closed` = 0 or `leave_of_absences`.`closed` is null) group by `leave_of_absences`.`member_id`) `y` on(`x`.`member_id` = `y`.`member_id` and `x`.`created_at` = `y`.`max_created`))) `loa` on(`loa`.`member_id` = `m`.`id`)) order by `m`.`displayName` ; -- Removing temporary table and create final VIEW structure DROP TABLE IF EXISTS `view_member_settings`; -CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `view_member_settings` AS select `m`.`id` AS `id`,`m`.`displayName` AS `displayName` from `members` `m` +CREATE VIEW `view_member_settings` AS select `m`.`id` AS `id`,`m`.`displayName` AS `displayName` from `members` `m` ; /*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */; diff --git a/api/migrations/seed.sql b/api/migrations/seed.sql index 887dec3..55f6c41 100644 --- a/api/migrations/seed.sql +++ b/api/migrations/seed.sql @@ -59,7 +59,7 @@ INSERT INTO `awards` (`id`, `name`, `short_name`, `description`, `type`, `footpr (35, 'Operation Siren Song (Malden, Sarugao, Kolgujev, Everon)', NULL, 'Awarded for participation in at least half of the total number of operations during a given campaign.', 'Campaign Ribbon', NULL, '2023-05-03 19:06:18.000', '2023-05-03 21:14:56.000', NULL, 0, NULL), (36, 'Royal Guardian of the Kenpire (Victors\' Ribbon)', NULL, 'NA', 'Additional Ribbons', NULL, '2023-05-03 19:07:11.000', '2023-05-03 21:14:56.000', NULL, 0, NULL); --- Dumping data for table milsim_website_development.calendar_events: ~3,345 rows (approximately) +-- Dumping data for table milsim_website_development.calendar_events: ~3,283 rows (approximately) INSERT INTO `calendar_events` (`id`, `name`, `start`, `end`, `location`, `color`, `description`, `creator`, `cancelled`, `created_at`, `updated_at`, `full_day`, `guilded_id`, `guilded_channel_id`) VALUES (1, 'OPFOR/BLUFOR Asset Familiarization - Hosted by Toast', '2020-03-19 18:00:00', '2020-03-19 19:30:00', '', '#008ae1', 'Learn how to use some of the heavier assets we use in the 17th BCT.\r\nThis will not cover IDF and thus will not qualify for the IDF ribbon.\r\n\r\nAdditionally, get some extensive familiarization with OPFOR crew-served weapons and vehicles, and learn how to use OPFOR weapons in last-resort events.', 468, 0, '2020-03-19 02:44:00', '2025-12-17 19:45:26', NULL, '2958042', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), (2, 'Ranger Training - Hosted by Del', '2020-03-20 18:00:00', '2020-03-20 20:30:00', '', '#6cba50', '"This week in Ranger Training...', 468, 0, '2020-03-19 02:44:33', '2025-12-17 19:45:26', NULL, '2958044', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), @@ -3406,99046 +3406,99124 @@ INSERT INTO `calendar_events` (`id`, `name`, `start`, `end`, `location`, `color` (3342, 'Alpha Debrief / Yap at me if u want', '2025-12-13 22:00:00', '2025-12-13 22:15:00', '', '#FFFFFF', 'Ill be around 15 minutes or so after the op if you wanna yap about how the op went, points for you or me to improve on, literally whatever', 61, 0, '2025-12-13 17:30:23', '2025-12-17 19:45:40', NULL, '8564398', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), (3343, 'Sniper Review', '2025-12-16 23:00:00', '2025-12-17 00:00:00', 'Training Server', '#FFFFFF', 'EVENT DETAILS: Sniper Course Review\nSERVER: 17th Training Server\nMAP: Altis\nMODS / MODPACK REQUIRED: 17th Modpack', 67, 0, '2025-12-14 04:41:30', '2025-12-17 19:45:40', NULL, '8564411', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), (3344, 'NO NEW DATA IN GUILDED', '2025-12-17 00:00:00', '2025-12-20 00:00:00', '', '#df5353', 'Data Migration to new platform! Any Data added to Guilded will not be transferred!', 38, 0, '2025-12-16 02:50:32', '2025-12-17 19:45:40', NULL, '8564829', 'f50565c0-fdae-4483-ac65-4ccb8563ceb0'), - (3345, 'NCO Meeting', '2025-12-20 18:00:00', '2025-12-20 18:15:00', 'NCO Club on TS', '#6cd265', 'Yap about the plan', 61, 0, '2025-12-18 05:01:33', '2025-12-18 05:01:33', NULL, NULL, NULL); + (3345, 'NCO Meeting', '2025-12-20 18:00:00', '2025-12-20 18:15:00', 'NCO Club on TS', '#6cd265', 'Yap about the plan', 61, 0, '2025-12-18 05:01:33', '2025-12-18 05:01:33', NULL, NULL, NULL), + (3346, 'Operation Fractured Bolt P5', '2026-01-03 19:00:00', '2026-01-03 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Drakovac\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:35:10', '2025-12-25 22:35:10', NULL, NULL, NULL), + (3347, 'Operation Fractured Bolt P6', '2026-01-10 19:00:00', '2026-01-10 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:36:44', '2025-12-25 22:36:44', NULL, NULL, NULL), + (3348, 'Operation Fractured Bolt P7', '2026-01-17 19:00:00', '2026-01-17 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:37:09', '2025-12-25 22:37:30', NULL, NULL, NULL), + (3349, 'Operation Fractured Bolt P8', '2026-01-24 19:00:00', '2026-01-24 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:38:16', '2025-12-25 22:38:16', NULL, NULL, NULL), + (3350, 'Operation Fractured Bolt P9', '2026-01-31 19:00:00', '2026-01-31 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:38:55', '2025-12-25 22:38:55', NULL, NULL, NULL), + (3351, 'Operation Fractured Bolt P10', '2026-02-07 19:00:00', '2026-02-07 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign Operation\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:39:53', '2025-12-25 22:39:53', NULL, NULL, NULL), + (3352, 'Placeholder', '2026-02-14 19:00:00', '2026-02-14 22:00:00', '', '#ff5959', 'EVENT DETAILS: -\nSERVER: 17th Private Operations\nMAP: -\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:40:34', '2025-12-25 22:40:34', NULL, NULL, NULL), + (3353, 'RASP', '2026-02-21 19:00:00', '2026-02-21 22:00:00', '', '#ff5959', 'EVENT DETAILS: -\nSERVER: 17th Private Operations\nMAP: -\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:41:19', '2025-12-25 22:41:19', NULL, NULL, NULL), + (3354, 'Fractured Bolt RRC Mini-Op 5', '2026-01-06 19:00:00', '2026-01-06 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:42:30', '2025-12-25 22:44:05', NULL, NULL, NULL), + (3355, 'Fractured Bolt RRC Mini-Op 6', '2026-01-13 19:00:00', '2026-01-13 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:43:26', '2025-12-25 22:45:54', NULL, NULL, NULL), + (3356, 'Fractured Bolt RRC Mini-Op 7', '2026-01-20 19:00:00', '2026-01-20 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:44:32', '2025-12-25 22:45:42', NULL, NULL, NULL), + (3357, 'Fractured Bolt RRC Mini-Op 8', '2026-01-27 19:00:00', '2026-01-27 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:45:17', '2025-12-25 22:45:29', NULL, NULL, NULL), + (3358, 'Fractued Bolt RRC Mini-Op 9', '2026-02-03 19:00:00', '2026-02-03 22:00:00', '', '#ff5959', 'EVENT DETAILS: Campaign RRC Mini-Op\nSERVER: 17th Private Operations\nMAP: Stubbhult\nMODS / MODPACK REQUIRED: 17th Modpack', 46, 0, '2025-12-25 22:46:31', '2025-12-25 22:46:51', NULL, NULL, NULL), + (3359, 'ℹ️ Website Went Live', '2025-12-21 00:00:00', '2025-12-22 23:59:00', 'ONLINE', '#a25fce', 'No More Test Data in Production Website!!!!!!!!!!', 38, 0, '2025-12-27 21:01:41', '2025-12-28 17:04:06', NULL, NULL, NULL), + (3360, 'Iceberg Server Patching', '2025-12-30 12:00:00', '2025-12-30 21:00:00', '', '#a25fce', 'Install update and reboot for new year.', 38, 0, '2025-12-30 17:15:31', '2025-12-30 17:15:45', NULL, NULL, NULL); --- Dumping data for table milsim_website_development.calendar_events_signups: ~99,017 rows (approximately) -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (1, 3241, 'attending', '2025-10-11 17:58:40', '2025-12-17 19:46:13', 'dlYNOzlm', '8493557'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (1, 3242, 'attending', '2025-10-24 20:45:21', '2025-12-17 19:46:14', 'dlYNOzlm', '8493558'), - (1, 3243, 'not_attending', '2025-10-18 00:21:30', '2025-12-17 19:46:14', 'dlYNOzlm', '8493559'), - (1, 3253, 'not_attending', '2025-10-26 17:02:39', '2025-12-17 19:46:14', 'dlYNOzlm', '8493572'), - (1, 3295, 'not_attending', '2025-11-01 22:20:22', '2025-12-17 19:46:14', 'dlYNOzlm', '8547541'), - (1, 3300, 'not_attending', '2025-11-01 22:20:24', '2025-12-17 19:46:14', 'dlYNOzlm', '8549145'), - (1, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dlYNOzlm', '8555421'), - (2, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dBbJMp8d', '7074364'), - (2, 2528, 'maybe', '2024-08-08 19:04:57', '2025-12-17 19:46:31', 'dBbJMp8d', '7074368'), - (2, 2556, 'attending', '2024-04-19 02:04:56', '2025-12-17 19:46:34', 'dBbJMp8d', '7114955'), - (2, 2557, 'not_attending', '2024-04-26 02:52:33', '2025-12-17 19:46:34', 'dBbJMp8d', '7114956'), - (2, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dBbJMp8d', '7114957'), - (2, 2585, 'not_attending', '2024-04-24 23:08:33', '2025-12-17 19:46:34', 'dBbJMp8d', '7175828'), - (2, 2590, 'maybe', '2024-04-17 04:26:38', '2025-12-17 19:46:34', 'dBbJMp8d', '7178446'), - (2, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dBbJMp8d', '7220467'), - (2, 2603, 'attending', '2024-05-15 16:35:54', '2025-12-17 19:46:35', 'dBbJMp8d', '7225669'), - (2, 2604, 'attending', '2024-05-29 10:11:27', '2025-12-17 19:46:36', 'dBbJMp8d', '7225670'), - (2, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBbJMp8d', '7240354'), - (2, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBbJMp8d', '7251633'), - (2, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBbJMp8d', '7263048'), - (2, 2626, 'attending', '2024-05-18 21:10:58', '2025-12-17 19:46:35', 'dBbJMp8d', '7264723'), - (2, 2627, 'attending', '2024-05-24 00:07:47', '2025-12-17 19:46:35', 'dBbJMp8d', '7264724'), - (2, 2628, 'attending', '2024-05-29 10:11:44', '2025-12-17 19:46:36', 'dBbJMp8d', '7264725'), - (2, 2629, 'attending', '2024-06-05 19:15:46', '2025-12-17 19:46:28', 'dBbJMp8d', '7264726'), - (2, 2630, 'attending', '2024-05-16 21:07:59', '2025-12-17 19:46:35', 'dBbJMp8d', '7264801'), - (2, 2636, 'attending', '2024-05-26 17:48:18', '2025-12-17 19:46:35', 'dBbJMp8d', '7270323'), - (2, 2637, 'attending', '2024-05-26 20:55:46', '2025-12-17 19:46:35', 'dBbJMp8d', '7270324'), - (2, 2644, 'maybe', '2024-05-23 10:39:35', '2025-12-17 19:46:35', 'dBbJMp8d', '7279039'), - (2, 2647, 'attending', '2024-06-09 17:55:06', '2025-12-17 19:46:28', 'dBbJMp8d', '7282057'), - (2, 2652, 'maybe', '2024-05-26 13:52:29', '2025-12-17 19:46:36', 'dBbJMp8d', '7288339'), - (2, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dBbJMp8d', '7302674'), - (2, 2665, 'attending', '2024-06-07 19:45:02', '2025-12-17 19:46:36', 'dBbJMp8d', '7306370'), - (2, 2667, 'attending', '2024-06-05 19:15:21', '2025-12-17 19:46:36', 'dBbJMp8d', '7307776'), - (2, 2668, 'maybe', '2024-06-05 19:15:36', '2025-12-17 19:46:36', 'dBbJMp8d', '7308821'), - (2, 2678, 'attending', '2024-06-10 13:47:10', '2025-12-17 19:46:28', 'dBbJMp8d', '7319489'), - (2, 2679, 'maybe', '2024-06-10 13:41:28', '2025-12-17 19:46:29', 'dBbJMp8d', '7319490'), - (2, 2682, 'attending', '2024-06-10 14:37:45', '2025-12-17 19:46:28', 'dBbJMp8d', '7321862'), - (2, 2683, 'maybe', '2024-06-10 19:25:19', '2025-12-17 19:46:28', 'dBbJMp8d', '7321978'), - (2, 2687, 'attending', '2024-06-12 13:44:17', '2025-12-17 19:46:28', 'dBbJMp8d', '7324019'), - (2, 2688, 'attending', '2024-06-18 15:46:24', '2025-12-17 19:46:29', 'dBbJMp8d', '7324073'), - (2, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dBbJMp8d', '7324074'), - (2, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dBbJMp8d', '7324075'), - (2, 2691, 'not_attending', '2024-07-15 11:23:24', '2025-12-17 19:46:30', 'dBbJMp8d', '7324076'), - (2, 2692, 'not_attending', '2024-07-19 11:46:32', '2025-12-17 19:46:30', 'dBbJMp8d', '7324077'), - (2, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dBbJMp8d', '7324078'), - (2, 2694, 'attending', '2024-08-10 16:01:11', '2025-12-17 19:46:31', 'dBbJMp8d', '7324079'), - (2, 2696, 'attending', '2024-08-24 21:24:45', '2025-12-17 19:46:32', 'dBbJMp8d', '7324081'), - (2, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dBbJMp8d', '7324082'), - (2, 2698, 'attending', '2024-09-07 12:16:18', '2025-12-17 19:46:24', 'dBbJMp8d', '7324083'), - (2, 2699, 'attending', '2024-06-12 16:23:46', '2025-12-17 19:46:28', 'dBbJMp8d', '7324385'), - (2, 2700, 'not_attending', '2024-06-13 01:27:49', '2025-12-17 19:46:28', 'dBbJMp8d', '7324388'), - (2, 2701, 'attending', '2024-06-21 11:09:03', '2025-12-17 19:46:29', 'dBbJMp8d', '7324391'), - (2, 2705, 'maybe', '2024-06-21 11:09:12', '2025-12-17 19:46:29', 'dBbJMp8d', '7324944'), - (2, 2706, 'attending', '2024-06-16 15:20:22', '2025-12-17 19:46:28', 'dBbJMp8d', '7324947'), - (2, 2711, 'attending', '2024-07-19 00:21:35', '2025-12-17 19:46:30', 'dBbJMp8d', '7326524'), - (2, 2721, 'attending', '2024-06-18 22:32:13', '2025-12-17 19:46:29', 'dBbJMp8d', '7331456'), - (2, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dBbJMp8d', '7331457'), - (2, 2723, 'attending', '2024-06-21 11:07:54', '2025-12-17 19:46:29', 'dBbJMp8d', '7332389'), - (2, 2724, 'attending', '2024-06-21 11:08:47', '2025-12-17 19:46:29', 'dBbJMp8d', '7332562'), - (2, 2729, 'attending', '2024-06-21 21:28:22', '2025-12-17 19:46:29', 'dBbJMp8d', '7335092'), - (2, 2731, 'attending', '2024-06-22 17:20:07', '2025-12-17 19:46:29', 'dBbJMp8d', '7335303'), - (2, 2735, 'attending', '2024-06-28 16:50:58', '2025-12-17 19:46:29', 'dBbJMp8d', '7340369'), - (2, 2737, 'attending', '2024-07-01 21:29:50', '2025-12-17 19:46:29', 'dBbJMp8d', '7344070'), - (2, 2741, 'not_attending', '2024-06-30 23:44:52', '2025-12-17 19:46:30', 'dBbJMp8d', '7344592'), - (2, 2742, 'attending', '2024-07-01 21:30:05', '2025-12-17 19:46:29', 'dBbJMp8d', '7345167'), - (2, 2744, 'attending', '2024-07-03 16:29:49', '2025-12-17 19:46:29', 'dBbJMp8d', '7347764'), - (2, 2746, 'maybe', '2024-07-11 21:55:59', '2025-12-17 19:46:29', 'dBbJMp8d', '7348713'), - (2, 2747, 'attending', '2024-07-16 21:39:42', '2025-12-17 19:46:30', 'dBbJMp8d', '7353587'), - (2, 2749, 'maybe', '2024-07-09 20:46:16', '2025-12-17 19:46:29', 'dBbJMp8d', '7355496'), - (2, 2753, 'maybe', '2024-07-16 00:41:40', '2025-12-17 19:46:30', 'dBbJMp8d', '7355538'), - (2, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dBbJMp8d', '7356752'), - (2, 2755, 'attending', '2024-07-09 18:44:42', '2025-12-17 19:46:29', 'dBbJMp8d', '7357808'), - (2, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dBbJMp8d', '7358733'), - (2, 2759, 'not_attending', '2024-07-12 19:40:34', '2025-12-17 19:46:30', 'dBbJMp8d', '7359624'), - (2, 2766, 'maybe', '2024-07-26 22:33:53', '2025-12-17 19:46:30', 'dBbJMp8d', '7363643'), - (2, 2768, 'attending', '2024-07-18 22:49:10', '2025-12-17 19:46:30', 'dBbJMp8d', '7366031'), - (2, 2769, 'attending', '2024-07-19 21:21:13', '2025-12-17 19:46:30', 'dBbJMp8d', '7366803'), - (2, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dBbJMp8d', '7368606'), - (2, 2786, 'maybe', '2024-08-06 16:40:02', '2025-12-17 19:46:31', 'dBbJMp8d', '7381403'), - (2, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dBbJMp8d', '7397462'), - (2, 2802, 'attending', '2024-08-26 13:45:48', '2025-12-17 19:46:32', 'dBbJMp8d', '7397463'), - (2, 2806, 'attending', '2024-09-05 23:43:49', '2025-12-17 19:46:25', 'dBbJMp8d', '7404888'), - (2, 2817, 'maybe', '2024-09-29 15:12:18', '2025-12-17 19:46:25', 'dBbJMp8d', '7424270'), - (2, 2821, 'not_attending', '2024-10-09 14:05:55', '2025-12-17 19:46:26', 'dBbJMp8d', '7424275'), - (2, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dBbJMp8d', '7424276'), - (2, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dBbJMp8d', '7432751'), - (2, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dBbJMp8d', '7432752'), - (2, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dBbJMp8d', '7432753'), - (2, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dBbJMp8d', '7432754'), - (2, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dBbJMp8d', '7432755'), - (2, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dBbJMp8d', '7432756'), - (2, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dBbJMp8d', '7432758'), - (2, 2831, 'maybe', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dBbJMp8d', '7432759'), - (2, 2832, 'attending', '2024-09-09 20:22:44', '2025-12-17 19:46:24', 'dBbJMp8d', '7433324'), - (2, 2833, 'maybe', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dBbJMp8d', '7433834'), - (2, 2835, 'maybe', '2024-09-11 16:23:20', '2025-12-17 19:46:24', 'dBbJMp8d', '7437354'), - (2, 2838, 'not_attending', '2024-09-18 18:14:31', '2025-12-17 19:46:25', 'dBbJMp8d', '7439182'), - (2, 2839, 'maybe', '2024-09-13 10:29:26', '2025-12-17 19:46:25', 'dBbJMp8d', '7439262'), - (2, 2840, 'attending', '2024-09-16 20:57:42', '2025-12-17 19:46:25', 'dBbJMp8d', '7444429'), - (2, 2848, 'attending', '2024-09-24 16:38:48', '2025-12-17 19:46:25', 'dBbJMp8d', '7456145'), - (2, 2858, 'attending', '2024-10-16 00:56:18', '2025-12-17 19:46:26', 'dBbJMp8d', '7469388'), - (2, 2862, 'maybe', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dBbJMp8d', '7470197'), - (2, 2864, 'maybe', '2024-10-16 00:57:47', '2025-12-17 19:46:26', 'dBbJMp8d', '7471199'), - (2, 2865, 'attending', '2024-10-30 20:57:00', '2025-12-17 19:46:26', 'dBbJMp8d', '7471200'), - (2, 2867, 'not_attending', '2024-11-26 22:27:18', '2025-12-17 19:46:21', 'dBbJMp8d', '7471202'), - (2, 2869, 'attending', '2024-10-05 15:07:40', '2025-12-17 19:46:26', 'dBbJMp8d', '7474823'), - (2, 2871, 'maybe', '2024-10-16 00:57:23', '2025-12-17 19:46:26', 'dBbJMp8d', '7480481'), - (2, 2878, 'maybe', '2024-10-16 00:55:29', '2025-12-17 19:46:26', 'dBbJMp8d', '7633857'), - (2, 2881, 'not_attending', '2024-10-31 21:51:44', '2025-12-17 19:46:26', 'dBbJMp8d', '7644047'), - (2, 2883, 'attending', '2024-10-17 21:22:42', '2025-12-17 19:46:26', 'dBbJMp8d', '7649157'), - (2, 2891, 'attending', '2024-10-26 20:48:50', '2025-12-17 19:46:26', 'dBbJMp8d', '7668163'), - (2, 2892, 'attending', '2024-10-30 15:50:16', '2025-12-17 19:46:26', 'dBbJMp8d', '7672064'), - (2, 2895, 'maybe', '2024-11-05 00:50:01', '2025-12-17 19:46:26', 'dBbJMp8d', '7682072'), - (2, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dBbJMp8d', '7685613'), - (2, 2899, 'maybe', '2024-11-13 13:28:42', '2025-12-17 19:46:27', 'dBbJMp8d', '7685616'), - (2, 2900, 'maybe', '2024-11-10 15:29:19', '2025-12-17 19:46:26', 'dBbJMp8d', '7686090'), - (2, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dBbJMp8d', '7688194'), - (2, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dBbJMp8d', '7688196'), - (2, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dBbJMp8d', '7688289'), - (2, 2911, 'attending', '2024-11-11 12:35:15', '2025-12-17 19:46:27', 'dBbJMp8d', '7689876'), - (2, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dBbJMp8d', '7692763'), - (2, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dBbJMp8d', '7697552'), - (2, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dBbJMp8d', '7699878'), - (2, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dBbJMp8d', '7704043'), - (2, 2920, 'attending', '2024-11-24 00:24:23', '2025-12-17 19:46:28', 'dBbJMp8d', '7708406'), - (2, 2924, 'attending', '2024-11-27 00:01:55', '2025-12-17 19:46:28', 'dBbJMp8d', '7712467'), - (2, 2925, 'attending', '2024-12-12 23:55:28', '2025-12-17 19:46:21', 'dBbJMp8d', '7713584'), - (2, 2926, 'attending', '2024-12-05 23:16:34', '2025-12-17 19:46:21', 'dBbJMp8d', '7713585'), - (2, 2927, 'maybe', '2024-12-17 02:17:08', '2025-12-17 19:46:22', 'dBbJMp8d', '7713586'), - (2, 2930, 'maybe', '2024-12-09 02:26:56', '2025-12-17 19:46:21', 'dBbJMp8d', '7724554'), - (2, 2947, 'attending', '2024-12-09 03:09:30', '2025-12-17 19:46:21', 'dBbJMp8d', '7727445'), - (2, 2952, 'not_attending', '2024-12-15 21:33:09', '2025-12-17 19:46:21', 'dBbJMp8d', '7730167'), - (2, 2958, 'maybe', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dBbJMp8d', '7738518'), - (2, 2959, 'maybe', '2024-12-21 20:26:11', '2025-12-17 19:46:22', 'dBbJMp8d', '7747388'), - (2, 2962, 'attending', '2024-12-26 22:25:16', '2025-12-17 19:46:22', 'dBbJMp8d', '7750632'), - (2, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBbJMp8d', '7750636'), - (2, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBbJMp8d', '7796540'), - (2, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBbJMp8d', '7796541'), - (2, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBbJMp8d', '7796542'), - (2, 2967, 'attending', '2025-01-07 14:59:57', '2025-12-17 19:46:22', 'dBbJMp8d', '7797181'), - (2, 2968, 'attending', '2025-01-12 21:40:19', '2025-12-17 19:46:22', 'dBbJMp8d', '7797967'), - (2, 2969, 'attending', '2025-01-11 22:39:35', '2025-12-17 19:46:22', 'dBbJMp8d', '7800474'), - (2, 2971, 'attending', '2025-01-23 15:06:02', '2025-12-17 19:46:22', 'dBbJMp8d', '7812230'), - (2, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dBbJMp8d', '7825913'), - (2, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dBbJMp8d', '7825920'), - (2, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dBbJMp8d', '7826209'), - (2, 2983, 'attending', '2025-02-01 16:58:29', '2025-12-17 19:46:23', 'dBbJMp8d', '7829499'), - (2, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dBbJMp8d', '7834742'), - (2, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dBbJMp8d', '7842108'), - (2, 2990, 'attending', '2025-02-15 19:23:34', '2025-12-17 19:46:23', 'dBbJMp8d', '7842898'), - (2, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dBbJMp8d', '7842902'), - (2, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dBbJMp8d', '7842903'), - (2, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dBbJMp8d', '7842904'), - (2, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dBbJMp8d', '7842905'), - (2, 2999, 'attending', '2025-02-13 01:17:28', '2025-12-17 19:46:23', 'dBbJMp8d', '7844784'), - (2, 3000, 'not_attending', '2025-02-18 03:53:12', '2025-12-17 19:46:24', 'dBbJMp8d', '7852541'), - (2, 3002, 'not_attending', '2025-02-22 15:17:49', '2025-12-17 19:46:24', 'dBbJMp8d', '7854212'), - (2, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dBbJMp8d', '7855719'), - (2, 3007, 'not_attending', '2025-02-25 04:49:52', '2025-12-17 19:46:24', 'dBbJMp8d', '7860683'), - (2, 3008, 'not_attending', '2025-02-25 04:50:05', '2025-12-17 19:46:24', 'dBbJMp8d', '7860684'), - (2, 3010, 'not_attending', '2025-03-01 01:20:05', '2025-12-17 19:46:18', 'dBbJMp8d', '7864879'), - (2, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dBbJMp8d', '7866095'), - (2, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dBbJMp8d', '7869170'), - (2, 3015, 'maybe', '2025-04-21 07:32:52', '2025-12-17 19:46:20', 'dBbJMp8d', '7869186'), - (2, 3016, 'attending', '2025-04-12 15:06:08', '2025-12-17 19:46:20', 'dBbJMp8d', '7869187'), - (2, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dBbJMp8d', '7869188'), - (2, 3018, 'not_attending', '2025-04-11 09:49:59', '2025-12-17 19:46:20', 'dBbJMp8d', '7869189'), - (2, 3028, 'attending', '2025-04-24 19:33:30', '2025-12-17 19:46:20', 'dBbJMp8d', '7869199'), - (2, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dBbJMp8d', '7869201'), - (2, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dBbJMp8d', '7877465'), - (2, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dBbJMp8d', '7878570'), - (2, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dBbJMp8d', '7888250'), - (2, 3075, 'maybe', '2025-04-17 21:39:43', '2025-12-17 19:46:20', 'dBbJMp8d', '7898896'), - (2, 3087, 'not_attending', '2025-04-15 01:13:32', '2025-12-17 19:46:20', 'dBbJMp8d', '7903856'), - (2, 3088, 'maybe', '2025-06-13 16:42:54', '2025-12-17 19:46:15', 'dBbJMp8d', '7904777'), - (2, 3090, 'attending', '2025-04-17 21:39:15', '2025-12-17 19:46:20', 'dBbJMp8d', '7914315'), - (2, 3091, 'attending', '2025-04-17 21:39:24', '2025-12-17 19:46:20', 'dBbJMp8d', '8340289'), - (2, 3094, 'attending', '2025-05-05 10:12:28', '2025-12-17 19:46:21', 'dBbJMp8d', '8342292'), - (2, 3095, 'attending', '2025-04-27 23:24:44', '2025-12-17 19:46:20', 'dBbJMp8d', '8342293'), - (2, 3096, 'maybe', '2025-04-21 07:31:57', '2025-12-17 19:46:20', 'dBbJMp8d', '8342987'), - (2, 3097, 'maybe', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dBbJMp8d', '8342993'), - (2, 3100, 'attending', '2025-04-22 01:57:34', '2025-12-17 19:46:20', 'dBbJMp8d', '8343977'), - (2, 3102, 'not_attending', '2025-04-27 17:27:24', '2025-12-17 19:46:20', 'dBbJMp8d', '8346008'), - (2, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dBbJMp8d', '8349164'), - (2, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dBbJMp8d', '8349545'), - (2, 3106, 'attending', '2025-05-01 09:28:39', '2025-12-17 19:46:20', 'dBbJMp8d', '8349552'), - (2, 3107, 'attending', '2025-05-02 02:16:00', '2025-12-17 19:46:20', 'dBbJMp8d', '8350107'), - (2, 3108, 'attending', '2025-05-01 17:13:32', '2025-12-17 19:46:20', 'dBbJMp8d', '8351411'), - (2, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dBbJMp8d', '8353584'), - (2, 3114, 'maybe', '2025-05-05 10:11:01', '2025-12-17 19:46:20', 'dBbJMp8d', '8357180'), - (2, 3126, 'maybe', '2025-05-14 02:45:33', '2025-12-17 19:46:21', 'dBbJMp8d', '8365614'), - (2, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dBbJMp8d', '8368028'), - (2, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dBbJMp8d', '8368029'), - (2, 3133, 'attending', '2025-05-24 22:19:28', '2025-12-17 19:46:14', 'dBbJMp8d', '8368030'), - (2, 3136, 'not_attending', '2025-05-20 21:46:29', '2025-12-17 19:46:21', 'dBbJMp8d', '8374152'), - (2, 3137, 'not_attending', '2025-05-20 21:46:45', '2025-12-17 19:46:21', 'dBbJMp8d', '8374153'), - (2, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dBbJMp8d', '8388462'), - (2, 3150, 'maybe', '2025-06-21 13:06:55', '2025-12-17 19:46:15', 'dBbJMp8d', '8393174'), - (2, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dBbJMp8d', '8400273'), - (2, 3154, 'attending', '2025-06-26 21:35:18', '2025-12-17 19:46:15', 'dBbJMp8d', '8400274'), - (2, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dBbJMp8d', '8400275'), - (2, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dBbJMp8d', '8400276'), - (2, 3160, 'maybe', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'dBbJMp8d', '8401411'), - (2, 3165, 'attending', '2025-06-07 19:37:34', '2025-12-17 19:46:14', 'dBbJMp8d', '8404220'), - (2, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dBbJMp8d', '8404977'), - (2, 3170, 'attending', '2025-06-09 16:33:52', '2025-12-17 19:46:15', 'dBbJMp8d', '8405947'), - (2, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dBbJMp8d', '8430783'), - (2, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dBbJMp8d', '8430784'), - (2, 3183, 'attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dBbJMp8d', '8430799'), - (2, 3184, 'maybe', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dBbJMp8d', '8430800'), - (2, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dBbJMp8d', '8430801'), - (2, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dBbJMp8d', '8438709'), - (2, 3192, 'maybe', '2025-07-16 17:10:57', '2025-12-17 19:46:17', 'dBbJMp8d', '8456429'), - (2, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dBbJMp8d', '8457738'), - (2, 3195, 'attending', '2025-08-06 21:40:09', '2025-12-17 19:46:17', 'dBbJMp8d', '8458118'), - (2, 3196, 'attending', '2025-08-13 21:37:42', '2025-12-17 19:46:17', 'dBbJMp8d', '8458543'), - (2, 3198, 'attending', '2025-08-20 22:00:11', '2025-12-17 19:46:18', 'dBbJMp8d', '8459268'), - (2, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dBbJMp8d', '8459566'), - (2, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dBbJMp8d', '8459567'), - (2, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dBbJMp8d', '8461032'), - (2, 3210, 'not_attending', '2025-08-27 20:54:11', '2025-12-17 19:46:18', 'dBbJMp8d', '8471162'), - (2, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dBbJMp8d', '8477877'), - (2, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dBbJMp8d', '8485688'), - (2, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dBbJMp8d', '8490587'), - (2, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dBbJMp8d', '8493552'), - (2, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dBbJMp8d', '8493553'), - (2, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dBbJMp8d', '8493554'), - (2, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dBbJMp8d', '8493555'), - (2, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dBbJMp8d', '8493556'), - (2, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dBbJMp8d', '8493557'), - (2, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dBbJMp8d', '8493558'), - (2, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dBbJMp8d', '8493559'), - (2, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dBbJMp8d', '8493560'), - (2, 3245, 'maybe', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dBbJMp8d', '8493561'), - (2, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dBbJMp8d', '8493572'), - (2, 3258, 'attending', '2025-09-03 09:57:10', '2025-12-17 19:46:11', 'dBbJMp8d', '8510285'), - (2, 3263, 'maybe', '2025-09-10 20:22:39', '2025-12-17 19:46:12', 'dBbJMp8d', '8514576'), - (2, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dBbJMp8d', '8540725'), - (2, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dBbJMp8d', '8555421'), - (3, 3195, 'maybe', '2025-08-06 22:21:31', '2025-12-17 19:46:17', 'AnnplqbA', '8458118'), - (3, 3198, 'maybe', '2025-08-20 17:07:42', '2025-12-17 19:46:18', 'AnnplqbA', '8459268'), - (3, 3201, 'not_attending', '2025-08-07 04:50:15', '2025-12-17 19:46:17', 'AnnplqbA', '8459567'), - (3, 3210, 'not_attending', '2025-08-27 05:39:45', '2025-12-17 19:46:18', 'AnnplqbA', '8471162'), - (3, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnnplqbA', '8477877'), - (3, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnnplqbA', '8485688'), - (3, 3235, 'maybe', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnnplqbA', '8490587'), - (3, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnnplqbA', '8493552'), - (3, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnnplqbA', '8493553'), - (3, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnnplqbA', '8493554'), - (3, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnnplqbA', '8493555'), - (3, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnnplqbA', '8493556'), - (3, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnnplqbA', '8493557'), - (3, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnnplqbA', '8493558'), - (3, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnnplqbA', '8493559'), - (3, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnnplqbA', '8493560'), - (3, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnnplqbA', '8493561'), - (3, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnnplqbA', '8493572'), - (3, 3258, 'not_attending', '2025-09-03 18:44:28', '2025-12-17 19:46:11', 'AnnplqbA', '8510285'), - (3, 3260, 'maybe', '2025-09-09 22:48:29', '2025-12-17 19:46:12', 'AnnplqbA', '8512640'), - (3, 3263, 'maybe', '2025-09-10 17:32:02', '2025-12-17 19:46:12', 'AnnplqbA', '8514576'), - (3, 3272, 'attending', '2025-09-18 03:24:34', '2025-12-17 19:46:12', 'AnnplqbA', '8524068'), - (3, 3275, 'not_attending', '2025-09-24 20:41:30', '2025-12-17 19:46:12', 'AnnplqbA', '8527786'), - (3, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnnplqbA', '8540725'), - (3, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnnplqbA', '8555421'), - (4, 2276, 'attending', '2023-10-14 02:59:16', '2025-12-17 19:46:46', '54k7D2w4', '6453951'), - (4, 2296, 'maybe', '2023-10-23 21:41:44', '2025-12-17 19:46:47', '54k7D2w4', '6468393'), - (4, 2299, 'attending', '2023-10-17 03:24:47', '2025-12-17 19:46:46', '54k7D2w4', '6472181'), - (4, 2302, 'not_attending', '2023-10-23 21:35:18', '2025-12-17 19:46:46', '54k7D2w4', '6482535'), - (4, 2303, 'attending', '2023-10-23 19:16:54', '2025-12-17 19:46:47', '54k7D2w4', '6482691'), - (4, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '54k7D2w4', '6482693'), - (4, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '54k7D2w4', '6484200'), - (4, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '54k7D2w4', '6484680'), - (4, 2310, 'maybe', '2023-11-01 21:19:06', '2025-12-17 19:46:47', '54k7D2w4', '6487709'), - (4, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '54k7D2w4', '6507741'), - (4, 2322, 'attending', '2023-11-13 10:23:31', '2025-12-17 19:46:48', '54k7D2w4', '6514659'), - (4, 2323, 'attending', '2023-11-27 04:01:41', '2025-12-17 19:46:48', '54k7D2w4', '6514660'), - (4, 2324, 'attending', '2023-12-04 22:55:36', '2025-12-17 19:46:49', '54k7D2w4', '6514662'), - (4, 2325, 'attending', '2023-12-12 02:57:28', '2025-12-17 19:46:36', '54k7D2w4', '6514663'), - (4, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '54k7D2w4', '6519103'), - (4, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '54k7D2w4', '6535681'), - (4, 2340, 'not_attending', '2023-11-20 06:30:04', '2025-12-17 19:46:48', '54k7D2w4', '6540279'), - (4, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '54k7D2w4', '6584747'), - (4, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '54k7D2w4', '6587097'), - (4, 2353, 'attending', '2023-11-29 23:17:05', '2025-12-17 19:46:48', '54k7D2w4', '6588894'), - (4, 2355, 'not_attending', '2023-11-30 23:56:25', '2025-12-17 19:46:49', '54k7D2w4', '6593339'), - (4, 2356, 'maybe', '2023-12-09 22:26:47', '2025-12-17 19:46:36', '54k7D2w4', '6593340'), - (4, 2357, 'attending', '2023-12-09 22:27:08', '2025-12-17 19:46:36', '54k7D2w4', '6593341'), - (4, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '54k7D2w4', '6609022'), - (4, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '54k7D2w4', '6632757'), - (4, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '54k7D2w4', '6644187'), - (4, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '54k7D2w4', '6648951'), - (4, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '54k7D2w4', '6648952'), - (4, 2388, 'not_attending', '2024-01-06 20:09:16', '2025-12-17 19:46:37', '54k7D2w4', '6649244'), - (4, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '54k7D2w4', '6655401'), - (4, 2399, 'maybe', '2024-01-07 22:23:40', '2025-12-17 19:46:38', '54k7D2w4', '6657583'), - (4, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '54k7D2w4', '6661585'), - (4, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '54k7D2w4', '6661588'), - (4, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '54k7D2w4', '6661589'), - (4, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '54k7D2w4', '6699906'), - (4, 2408, 'attending', '2024-01-26 08:30:18', '2025-12-17 19:46:40', '54k7D2w4', '6699907'), - (4, 2409, 'attending', '2024-02-02 14:42:42', '2025-12-17 19:46:41', '54k7D2w4', '6699909'), - (4, 2410, 'attending', '2024-02-09 18:37:40', '2025-12-17 19:46:41', '54k7D2w4', '6699911'), - (4, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '54k7D2w4', '6699913'), - (4, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '54k7D2w4', '6701109'), - (4, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '54k7D2w4', '6705219'), - (4, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '54k7D2w4', '6710153'), - (4, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '54k7D2w4', '6711552'), - (4, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '54k7D2w4', '6711553'), - (4, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '54k7D2w4', '6722688'), - (4, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '54k7D2w4', '6730620'), - (4, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '54k7D2w4', '6730642'), - (4, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '54k7D2w4', '6740364'), - (4, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '54k7D2w4', '6743829'), - (4, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '54k7D2w4', '7030380'), - (4, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '54k7D2w4', '7033677'), - (4, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '54k7D2w4', '7035415'), - (4, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '54k7D2w4', '7044715'), - (4, 2482, 'maybe', '2024-03-08 00:08:19', '2025-12-17 19:46:44', '54k7D2w4', '7044719'), - (4, 2487, 'maybe', '2024-03-16 17:23:03', '2025-12-17 19:46:33', '54k7D2w4', '7049279'), - (4, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '54k7D2w4', '7050318'), - (4, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '54k7D2w4', '7050319'), - (4, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '54k7D2w4', '7050322'), - (4, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '54k7D2w4', '7057804'), - (4, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '54k7D2w4', '7059866'), - (4, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '54k7D2w4', '7072824'), - (4, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '54k7D2w4', '7074348'), - (4, 2510, 'not_attending', '2024-03-16 17:22:47', '2025-12-17 19:46:33', '54k7D2w4', '7074350'), - (4, 2518, 'maybe', '2024-07-25 15:23:40', '2025-12-17 19:46:30', '54k7D2w4', '7074358'), - (4, 2521, 'maybe', '2024-06-15 18:57:24', '2025-12-17 19:46:29', '54k7D2w4', '7074361'), - (4, 2522, 'not_attending', '2024-07-14 20:45:34', '2025-12-17 19:46:30', '54k7D2w4', '7074362'), - (4, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '54k7D2w4', '7074364'), - (4, 2525, 'maybe', '2024-06-10 14:46:49', '2025-12-17 19:46:28', '54k7D2w4', '7074365'), - (4, 2526, 'not_attending', '2024-08-01 21:08:23', '2025-12-17 19:46:31', '54k7D2w4', '7074366'), - (4, 2527, 'not_attending', '2024-06-23 15:37:19', '2025-12-17 19:46:29', '54k7D2w4', '7074367'), - (4, 2528, 'maybe', '2024-08-06 22:20:50', '2025-12-17 19:46:31', '54k7D2w4', '7074368'), - (4, 2530, 'attending', '2024-08-14 18:41:30', '2025-12-17 19:46:31', '54k7D2w4', '7074373'), - (4, 2531, 'attending', '2024-08-25 23:54:13', '2025-12-17 19:46:32', '54k7D2w4', '7074378'), - (4, 2532, 'not_attending', '2024-09-02 19:59:36', '2025-12-17 19:46:32', '54k7D2w4', '7074383'), - (4, 2533, 'attending', '2024-08-19 05:37:55', '2025-12-17 19:46:32', '54k7D2w4', '7074384'), - (4, 2537, 'not_attending', '2024-03-18 19:56:35', '2025-12-17 19:46:33', '54k7D2w4', '7085484'), - (4, 2538, 'maybe', '2024-03-23 18:31:27', '2025-12-17 19:46:33', '54k7D2w4', '7085485'), - (4, 2539, 'not_attending', '2024-03-23 21:31:42', '2025-12-17 19:46:33', '54k7D2w4', '7085486'), - (4, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '54k7D2w4', '7089267'), - (4, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '54k7D2w4', '7098747'), - (4, 2553, 'not_attending', '2024-03-30 04:19:28', '2025-12-17 19:46:33', '54k7D2w4', '7113468'), - (4, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '54k7D2w4', '7114856'), - (4, 2555, 'attending', '2024-04-01 00:23:16', '2025-12-17 19:46:33', '54k7D2w4', '7114951'), - (4, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '54k7D2w4', '7114955'), - (4, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '54k7D2w4', '7114956'), - (4, 2558, 'attending', '2024-04-21 01:25:23', '2025-12-17 19:46:35', '54k7D2w4', '7114957'), - (4, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '54k7D2w4', '7153615'), - (4, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '54k7D2w4', '7159484'), - (4, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '54k7D2w4', '7178446'), - (4, 2597, 'not_attending', '2024-04-21 23:04:18', '2025-12-17 19:46:34', '54k7D2w4', '7186726'), - (4, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '54k7D2w4', '7220467'), - (4, 2609, 'not_attending', '2024-05-05 21:07:29', '2025-12-17 19:46:35', '54k7D2w4', '7240354'), - (4, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '54k7D2w4', '7251633'), - (4, 2623, 'attending', '2024-05-10 14:15:51', '2025-12-17 19:46:35', '54k7D2w4', '7263048'), - (4, 2626, 'not_attending', '2024-05-12 14:07:36', '2025-12-17 19:46:35', '54k7D2w4', '7264723'), - (4, 2627, 'attending', '2024-05-21 12:30:51', '2025-12-17 19:46:35', '54k7D2w4', '7264724'), - (4, 2628, 'attending', '2024-05-31 04:04:22', '2025-12-17 19:46:36', '54k7D2w4', '7264725'), - (4, 2629, 'attending', '2024-06-02 21:37:48', '2025-12-17 19:46:28', '54k7D2w4', '7264726'), - (4, 2636, 'not_attending', '2024-05-23 23:49:53', '2025-12-17 19:46:35', '54k7D2w4', '7270323'), - (4, 2647, 'attending', '2024-06-02 18:51:49', '2025-12-17 19:46:28', '54k7D2w4', '7282057'), - (4, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '54k7D2w4', '7302674'), - (4, 2665, 'not_attending', '2024-06-05 21:51:30', '2025-12-17 19:46:36', '54k7D2w4', '7306370'), - (4, 2666, 'attending', '2024-06-05 21:51:24', '2025-12-17 19:46:36', '54k7D2w4', '7307775'), - (4, 2671, 'not_attending', '2024-06-09 20:17:55', '2025-12-17 19:46:28', '54k7D2w4', '7318256'), - (4, 2675, 'maybe', '2024-08-04 01:58:11', '2025-12-17 19:46:31', '54k7D2w4', '7319481'), - (4, 2678, 'attending', '2024-06-10 01:39:20', '2025-12-17 19:46:28', '54k7D2w4', '7319489'), - (4, 2679, 'attending', '2024-06-12 15:20:16', '2025-12-17 19:46:29', '54k7D2w4', '7319490'), - (4, 2683, 'not_attending', '2024-06-10 22:57:54', '2025-12-17 19:46:28', '54k7D2w4', '7321978'), - (4, 2688, 'attending', '2024-06-21 20:21:47', '2025-12-17 19:46:29', '54k7D2w4', '7324073'), - (4, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '54k7D2w4', '7324074'), - (4, 2690, 'attending', '2024-07-07 02:26:20', '2025-12-17 19:46:30', '54k7D2w4', '7324075'), - (4, 2691, 'attending', '2024-07-14 20:45:39', '2025-12-17 19:46:30', '54k7D2w4', '7324076'), - (4, 2692, 'maybe', '2024-07-14 20:45:45', '2025-12-17 19:46:30', '54k7D2w4', '7324077'), - (4, 2693, 'attending', '2024-07-25 15:23:53', '2025-12-17 19:46:31', '54k7D2w4', '7324078'), - (4, 2694, 'attending', '2024-08-04 15:36:33', '2025-12-17 19:46:31', '54k7D2w4', '7324079'), - (4, 2695, 'attending', '2024-08-10 22:25:17', '2025-12-17 19:46:31', '54k7D2w4', '7324080'), - (4, 2696, 'attending', '2024-08-18 18:18:44', '2025-12-17 19:46:32', '54k7D2w4', '7324081'), - (4, 2697, 'not_attending', '2024-08-27 01:05:01', '2025-12-17 19:46:32', '54k7D2w4', '7324082'), - (4, 2698, 'attending', '2024-08-27 01:05:07', '2025-12-17 19:46:24', '54k7D2w4', '7324083'), - (4, 2708, 'maybe', '2024-06-13 20:12:57', '2025-12-17 19:46:28', '54k7D2w4', '7325048'), - (4, 2719, 'maybe', '2024-06-23 15:36:13', '2025-12-17 19:46:29', '54k7D2w4', '7331305'), - (4, 2720, 'maybe', '2024-06-18 21:33:07', '2025-12-17 19:46:28', '54k7D2w4', '7331436'), - (4, 2721, 'attending', '2024-06-19 00:58:38', '2025-12-17 19:46:29', '54k7D2w4', '7331456'), - (4, 2722, 'attending', '2024-07-07 21:42:15', '2025-12-17 19:46:29', '54k7D2w4', '7331457'), - (4, 2724, 'maybe', '2024-06-26 22:39:10', '2025-12-17 19:46:29', '54k7D2w4', '7332562'), - (4, 2728, 'maybe', '2024-06-21 18:10:42', '2025-12-17 19:46:29', '54k7D2w4', '7334124'), - (4, 2743, 'not_attending', '2024-07-01 22:28:29', '2025-12-17 19:46:29', '54k7D2w4', '7345688'), - (4, 2753, 'maybe', '2024-07-09 19:12:59', '2025-12-17 19:46:30', '54k7D2w4', '7355538'), - (4, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '54k7D2w4', '7356752'), - (4, 2755, 'not_attending', '2024-07-10 13:27:09', '2025-12-17 19:46:29', '54k7D2w4', '7357808'), - (4, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '54k7D2w4', '7363643'), - (4, 2770, 'maybe', '2024-07-20 21:22:38', '2025-12-17 19:46:30', '54k7D2w4', '7368196'), - (4, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '54k7D2w4', '7368606'), - (4, 2785, 'attending', '2024-07-30 18:16:54', '2025-12-17 19:46:31', '54k7D2w4', '7380988'), - (4, 2786, 'attending', '2024-08-06 19:45:30', '2025-12-17 19:46:31', '54k7D2w4', '7381403'), - (4, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '54k7D2w4', '7397462'), - (4, 2808, 'not_attending', '2024-08-27 01:01:29', '2025-12-17 19:46:32', '54k7D2w4', '7412860'), - (4, 2811, 'attending', '2024-08-31 20:05:06', '2025-12-17 19:46:32', '54k7D2w4', '7418895'), - (4, 2817, 'maybe', '2024-09-29 19:34:39', '2025-12-17 19:46:25', '54k7D2w4', '7424270'), - (4, 2821, 'not_attending', '2024-10-06 15:03:14', '2025-12-17 19:46:26', '54k7D2w4', '7424275'), - (4, 2822, 'maybe', '2024-11-04 15:44:28', '2025-12-17 19:46:26', '54k7D2w4', '7424276'), - (4, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '54k7D2w4', '7432751'), - (4, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '54k7D2w4', '7432752'), - (4, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '54k7D2w4', '7432753'), - (4, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '54k7D2w4', '7432754'), - (4, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '54k7D2w4', '7432755'), - (4, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '54k7D2w4', '7432756'), - (4, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '54k7D2w4', '7432758'), - (4, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '54k7D2w4', '7432759'), - (4, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '54k7D2w4', '7433834'), - (4, 2836, 'maybe', '2024-09-13 16:42:49', '2025-12-17 19:46:25', '54k7D2w4', '7438708'), - (4, 2845, 'maybe', '2024-09-21 18:59:06', '2025-12-17 19:46:25', '54k7D2w4', '7452129'), - (4, 2850, 'not_attending', '2024-09-29 16:21:14', '2025-12-17 19:46:25', '54k7D2w4', '7457153'), - (4, 2855, 'not_attending', '2024-09-30 22:51:47', '2025-12-17 19:46:26', '54k7D2w4', '7469385'), - (4, 2857, 'maybe', '2024-10-24 14:17:40', '2025-12-17 19:46:26', '54k7D2w4', '7469387'), - (4, 2858, 'maybe', '2024-10-15 17:37:39', '2025-12-17 19:46:26', '54k7D2w4', '7469388'), - (4, 2859, 'not_attending', '2024-10-31 14:07:52', '2025-12-17 19:46:26', '54k7D2w4', '7469389'), - (4, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '54k7D2w4', '7470197'), - (4, 2891, 'maybe', '2024-10-25 16:32:19', '2025-12-17 19:46:26', '54k7D2w4', '7668163'), - (4, 2894, 'maybe', '2024-11-02 17:08:17', '2025-12-17 19:46:26', '54k7D2w4', '7680059'), - (4, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '54k7D2w4', '7685613'), - (4, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '54k7D2w4', '7688194'), - (4, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '54k7D2w4', '7688196'), - (4, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '54k7D2w4', '7688289'), - (4, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', '54k7D2w4', '7692763'), - (4, 2913, 'maybe', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '54k7D2w4', '7697552'), - (4, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '54k7D2w4', '7699878'), - (4, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '54k7D2w4', '7704043'), - (4, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '54k7D2w4', '7712467'), - (4, 2925, 'not_attending', '2024-12-03 00:52:11', '2025-12-17 19:46:21', '54k7D2w4', '7713584'), - (4, 2926, 'maybe', '2024-12-03 00:52:14', '2025-12-17 19:46:21', '54k7D2w4', '7713585'), - (4, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '54k7D2w4', '7713586'), - (4, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '54k7D2w4', '7738518'), - (4, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '54k7D2w4', '7750632'), - (4, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '54k7D2w4', '7750636'), - (4, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '54k7D2w4', '7796540'), - (4, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '54k7D2w4', '7796541'), - (4, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '54k7D2w4', '7796542'), - (4, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '54k7D2w4', '7825913'), - (4, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '54k7D2w4', '7826209'), - (4, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '54k7D2w4', '7834742'), - (4, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '54k7D2w4', '7842108'), - (4, 2990, 'attending', '2025-02-14 23:27:28', '2025-12-17 19:46:23', '54k7D2w4', '7842898'), - (4, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '54k7D2w4', '7842902'), - (4, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '54k7D2w4', '7842903'), - (4, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '54k7D2w4', '7842904'), - (4, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '54k7D2w4', '7842905'), - (4, 3002, 'attending', '2025-02-19 00:41:34', '2025-12-17 19:46:24', '54k7D2w4', '7854212'), - (4, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '54k7D2w4', '7855719'), - (4, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '54k7D2w4', '7860683'), - (4, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '54k7D2w4', '7860684'), - (4, 3011, 'attending', '2025-03-01 20:45:52', '2025-12-17 19:46:24', '54k7D2w4', '7865624'), - (4, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '54k7D2w4', '7866095'), - (4, 3013, 'maybe', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '54k7D2w4', '7869170'), - (4, 3014, 'attending', '2025-03-30 16:13:09', '2025-12-17 19:46:19', '54k7D2w4', '7869185'), - (4, 3015, 'attending', '2025-04-20 02:02:47', '2025-12-17 19:46:20', '54k7D2w4', '7869186'), - (4, 3016, 'attending', '2025-04-13 22:40:32', '2025-12-17 19:46:20', '54k7D2w4', '7869187'), - (4, 3017, 'attending', '2025-03-16 05:15:46', '2025-12-17 19:46:19', '54k7D2w4', '7869188'), - (4, 3018, 'attending', '2025-04-06 03:54:52', '2025-12-17 19:46:20', '54k7D2w4', '7869189'), - (4, 3028, 'attending', '2025-04-16 01:09:48', '2025-12-17 19:46:20', '54k7D2w4', '7869199'), - (4, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '54k7D2w4', '7869201'), - (4, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '54k7D2w4', '7877465'), - (4, 3034, 'maybe', '2025-03-11 17:13:10', '2025-12-17 19:46:18', '54k7D2w4', '7878570'), - (4, 3035, 'not_attending', '2025-03-11 23:40:16', '2025-12-17 19:46:19', '54k7D2w4', '7879085'), - (4, 3036, 'maybe', '2025-03-13 16:12:36', '2025-12-17 19:46:19', '54k7D2w4', '7880952'), - (4, 3043, 'maybe', '2025-03-15 19:18:39', '2025-12-17 19:46:19', '54k7D2w4', '7882587'), - (4, 3044, 'maybe', '2025-03-28 20:55:43', '2025-12-17 19:46:19', '54k7D2w4', '7882690'), - (4, 3045, 'attending', '2025-04-03 04:08:11', '2025-12-17 19:46:19', '54k7D2w4', '7882691'), - (4, 3046, 'attending', '2025-04-09 01:05:30', '2025-12-17 19:46:20', '54k7D2w4', '7882692'), - (4, 3047, 'attending', '2025-04-25 17:32:22', '2025-12-17 19:46:20', '54k7D2w4', '7882693'), - (4, 3048, 'maybe', '2025-04-19 04:37:34', '2025-12-17 19:46:20', '54k7D2w4', '7882694'), - (4, 3051, 'attending', '2025-03-16 23:20:50', '2025-12-17 19:46:19', '54k7D2w4', '7884023'), - (4, 3052, 'attending', '2025-03-16 23:20:55', '2025-12-17 19:46:19', '54k7D2w4', '7884024'), - (4, 3054, 'attending', '2025-03-17 00:16:43', '2025-12-17 19:46:19', '54k7D2w4', '7884168'), - (4, 3055, 'maybe', '2025-03-25 15:18:17', '2025-12-17 19:46:19', '54k7D2w4', '7888118'), - (4, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '54k7D2w4', '7888250'), - (4, 3060, 'maybe', '2025-03-31 18:30:52', '2025-12-17 19:46:19', '54k7D2w4', '7892589'), - (4, 3066, 'maybe', '2025-04-07 18:09:23', '2025-12-17 19:46:20', '54k7D2w4', '7894207'), - (4, 3067, 'attending', '2025-03-31 23:48:59', '2025-12-17 19:46:19', '54k7D2w4', '7894745'), - (4, 3072, 'maybe', '2025-04-03 16:42:04', '2025-12-17 19:46:19', '54k7D2w4', '7895449'), - (4, 3078, 'attending', '2025-04-06 02:50:52', '2025-12-17 19:46:20', '54k7D2w4', '7901213'), - (4, 3084, 'not_attending', '2025-04-09 23:19:16', '2025-12-17 19:46:20', '54k7D2w4', '7903687'), - (4, 3088, 'not_attending', '2025-06-09 20:00:25', '2025-12-17 19:46:15', '54k7D2w4', '7904777'), - (4, 3090, 'not_attending', '2025-04-17 02:02:09', '2025-12-17 19:46:20', '54k7D2w4', '7914315'), - (4, 3093, 'maybe', '2025-04-23 21:30:24', '2025-12-17 19:46:20', '54k7D2w4', '8342248'), - (4, 3094, 'not_attending', '2025-04-21 21:57:13', '2025-12-17 19:46:21', '54k7D2w4', '8342292'), - (4, 3095, 'not_attending', '2025-04-21 21:57:11', '2025-12-17 19:46:20', '54k7D2w4', '8342293'), - (4, 3098, 'attending', '2025-04-21 14:47:01', '2025-12-17 19:46:20', '54k7D2w4', '8343504'), - (4, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '54k7D2w4', '8349164'), - (4, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '54k7D2w4', '8349545'), - (4, 3107, 'attending', '2025-04-27 22:47:18', '2025-12-17 19:46:20', '54k7D2w4', '8350107'), - (4, 3109, 'attending', '2025-04-29 02:44:48', '2025-12-17 19:46:21', '54k7D2w4', '8352001'), - (4, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '54k7D2w4', '8353584'), - (4, 3121, 'attending', '2025-05-07 16:44:29', '2025-12-17 19:46:21', '54k7D2w4', '8362730'), - (4, 3124, 'attending', '2025-05-09 02:03:19', '2025-12-17 19:46:21', '54k7D2w4', '8363566'), - (4, 3131, 'attending', '2025-05-13 00:40:25', '2025-12-17 19:46:21', '54k7D2w4', '8368028'), - (4, 3132, 'attending', '2025-05-13 00:40:27', '2025-12-17 19:46:21', '54k7D2w4', '8368029'), - (4, 3133, 'attending', '2025-05-13 00:40:30', '2025-12-17 19:46:14', '54k7D2w4', '8368030'), - (4, 3134, 'attending', '2025-05-13 01:01:21', '2025-12-17 19:46:21', '54k7D2w4', '8368031'), - (4, 3136, 'maybe', '2025-05-19 22:27:59', '2025-12-17 19:46:21', '54k7D2w4', '8374152'), - (4, 3137, 'not_attending', '2025-05-19 22:27:54', '2025-12-17 19:46:21', '54k7D2w4', '8374153'), - (4, 3139, 'maybe', '2025-05-24 19:44:34', '2025-12-17 19:46:21', '54k7D2w4', '8377425'), - (4, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '54k7D2w4', '8388462'), - (4, 3150, 'not_attending', '2025-06-03 23:51:34', '2025-12-17 19:46:15', '54k7D2w4', '8393174'), - (4, 3151, 'attending', '2025-05-31 19:15:12', '2025-12-17 19:46:14', '54k7D2w4', '8393497'), - (4, 3152, 'attending', '2025-05-31 19:17:29', '2025-12-17 19:46:14', '54k7D2w4', '8393582'), - (4, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '54k7D2w4', '8400273'), - (4, 3154, 'not_attending', '2025-06-15 03:58:12', '2025-12-17 19:46:15', '54k7D2w4', '8400274'), - (4, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '54k7D2w4', '8400275'), - (4, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '54k7D2w4', '8400276'), - (4, 3162, 'attending', '2025-06-04 16:41:09', '2025-12-17 19:46:15', '54k7D2w4', '8401599'), - (4, 3165, 'attending', '2025-06-07 22:11:49', '2025-12-17 19:46:14', '54k7D2w4', '8404220'), - (4, 3166, 'attending', '2025-06-07 22:16:24', '2025-12-17 19:46:15', '54k7D2w4', '8404242'), - (4, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '54k7D2w4', '8404977'), - (4, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '54k7D2w4', '8430783'), - (4, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '54k7D2w4', '8430784'), - (4, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '54k7D2w4', '8430799'), - (4, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '54k7D2w4', '8430800'), - (4, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '54k7D2w4', '8430801'), - (4, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '54k7D2w4', '8438709'), - (4, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '54k7D2w4', '8457738'), - (4, 3196, 'maybe', '2025-08-10 00:41:56', '2025-12-17 19:46:17', '54k7D2w4', '8458543'), - (4, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '54k7D2w4', '8459566'), - (4, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '54k7D2w4', '8459567'), - (4, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '54k7D2w4', '8461032'), - (4, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '54k7D2w4', '8477877'), - (4, 3219, 'not_attending', '2025-08-10 15:59:19', '2025-12-17 19:46:18', '54k7D2w4', '8482548'), - (4, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', '54k7D2w4', '8485688'), - (4, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '54k7D2w4', '8490587'), - (4, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '54k7D2w4', '8493552'), - (4, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '54k7D2w4', '8493553'), - (4, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '54k7D2w4', '8493554'), - (4, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '54k7D2w4', '8493555'), - (4, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '54k7D2w4', '8493556'), - (4, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '54k7D2w4', '8493557'), - (4, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '54k7D2w4', '8493558'), - (4, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '54k7D2w4', '8493559'), - (4, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '54k7D2w4', '8493560'), - (4, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '54k7D2w4', '8493561'), - (4, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '54k7D2w4', '8493572'), - (4, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '54k7D2w4', '8540725'), - (4, 3302, 'maybe', '2025-11-16 00:04:48', '2025-12-17 19:46:14', '54k7D2w4', '8550022'), - (4, 3304, 'attending', '2025-11-16 00:22:53', '2025-12-17 19:46:14', '54k7D2w4', '8550024'), - (4, 3305, 'not_attending', '2025-11-26 20:08:21', '2025-12-17 19:46:11', '54k7D2w4', '8550025'), - (4, 3306, 'maybe', '2025-12-11 22:37:59', '2025-12-17 19:46:11', '54k7D2w4', '8550026'), - (4, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '54k7D2w4', '8555421'), - (5, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AYwOz8od', '5426882'), - (5, 1512, 'not_attending', '2022-07-11 22:57:03', '2025-12-17 19:47:19', 'AYwOz8od', '5441112'), - (5, 1513, 'attending', '2022-07-16 01:15:13', '2025-12-17 19:47:19', 'AYwOz8od', '5441125'), - (5, 1514, 'not_attending', '2022-07-17 02:24:08', '2025-12-17 19:47:20', 'AYwOz8od', '5441126'), - (5, 1515, 'attending', '2022-08-06 17:11:11', '2025-12-17 19:47:21', 'AYwOz8od', '5441128'), - (5, 1516, 'not_attending', '2022-08-16 23:17:04', '2025-12-17 19:47:23', 'AYwOz8od', '5441129'), - (5, 1517, 'not_attending', '2022-08-16 23:17:15', '2025-12-17 19:47:23', 'AYwOz8od', '5441130'), - (5, 1518, 'not_attending', '2022-08-18 03:09:46', '2025-12-17 19:47:24', 'AYwOz8od', '5441131'), - (5, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AYwOz8od', '5441132'), - (5, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AYwOz8od', '5446643'), - (5, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'AYwOz8od', '5449068'), - (5, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AYwOz8od', '5453325'), - (5, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AYwOz8od', '5454516'), - (5, 1544, 'not_attending', '2022-09-16 02:51:40', '2025-12-17 19:47:11', 'AYwOz8od', '5454517'), - (5, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AYwOz8od', '5454605'), - (5, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AYwOz8od', '5455037'), - (5, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AYwOz8od', '5461278'), - (5, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AYwOz8od', '5469480'), - (5, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AYwOz8od', '5471073'), - (5, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AYwOz8od', '5474663'), - (5, 1567, 'attending', '2022-08-02 17:50:50', '2025-12-17 19:47:21', 'AYwOz8od', '5477629'), - (5, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AYwOz8od', '5482022'), - (5, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AYwOz8od', '5482793'), - (5, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AYwOz8od', '5488912'), - (5, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AYwOz8od', '5492192'), - (5, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AYwOz8od', '5493139'), - (5, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AYwOz8od', '5493200'), - (5, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AYwOz8od', '5502188'), - (5, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AYwOz8od', '5505059'), - (5, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AYwOz8od', '5509055'), - (5, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AYwOz8od', '5512862'), - (5, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AYwOz8od', '5513985'), - (5, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'AYwOz8od', '5519981'), - (5, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AYwOz8od', '5522550'), - (5, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AYwOz8od', '5534683'), - (5, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AYwOz8od', '5537735'), - (5, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AYwOz8od', '5540859'), - (5, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AYwOz8od', '5546619'), - (5, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AYwOz8od', '5555245'), - (5, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AYwOz8od', '5557747'), - (5, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AYwOz8od', '5560255'), - (5, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AYwOz8od', '5562906'), - (5, 1667, 'not_attending', '2022-09-16 02:51:45', '2025-12-17 19:47:11', 'AYwOz8od', '5563221'), - (5, 1668, 'attending', '2022-10-01 17:41:21', '2025-12-17 19:47:12', 'AYwOz8od', '5563222'), - (5, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AYwOz8od', '5600604'), - (5, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AYwOz8od', '5605544'), - (5, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'AYwOz8od', '5606737'), - (5, 1719, 'attending', '2022-10-08 01:42:45', '2025-12-17 19:47:12', 'AYwOz8od', '5630958'), - (5, 1720, 'not_attending', '2022-10-11 15:40:12', '2025-12-17 19:47:12', 'AYwOz8od', '5630959'), - (5, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AYwOz8od', '5630960'), - (5, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AYwOz8od', '5630961'), - (5, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AYwOz8od', '5630962'), - (5, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AYwOz8od', '5630966'), - (5, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AYwOz8od', '5630967'), - (5, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AYwOz8od', '5630968'), - (5, 1727, 'attending', '2022-12-03 03:59:13', '2025-12-17 19:47:16', 'AYwOz8od', '5630969'), - (5, 1728, 'attending', '2022-12-11 21:13:43', '2025-12-17 19:47:17', 'AYwOz8od', '5630970'), - (5, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AYwOz8od', '5635406'), - (5, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AYwOz8od', '5638765'), - (5, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AYwOz8od', '5640097'), - (5, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AYwOz8od', '5640843'), - (5, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AYwOz8od', '5641521'), - (5, 1744, 'attending', '2022-11-23 01:01:19', '2025-12-17 19:47:16', 'AYwOz8od', '5642818'), - (5, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AYwOz8od', '5652395'), - (5, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AYwOz8od', '5670445'), - (5, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AYwOz8od', '5671637'), - (5, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AYwOz8od', '5672329'), - (5, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AYwOz8od', '5674057'), - (5, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AYwOz8od', '5674060'), - (5, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AYwOz8od', '5677461'), - (5, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AYwOz8od', '5698046'), - (5, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AYwOz8od', '5699760'), - (5, 1793, 'maybe', '2022-11-24 07:16:03', '2025-12-17 19:47:16', 'AYwOz8od', '5736365'), - (5, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AYwOz8od', '5741601'), - (5, 1797, 'attending', '2022-12-09 22:03:25', '2025-12-17 19:47:17', 'AYwOz8od', '5757486'), - (5, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AYwOz8od', '5763458'), - (5, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AYwOz8od', '5774172'), - (5, 1826, 'not_attending', '2022-12-17 19:47:16', '2025-12-17 19:47:04', 'AYwOz8od', '5776768'), - (5, 1832, 'not_attending', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'AYwOz8od', '5818247'), - (5, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AYwOz8od', '5819471'), - (5, 1837, 'attending', '2022-12-07 23:15:49', '2025-12-17 19:47:16', 'AYwOz8od', '5820146'), - (5, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AYwOz8od', '5827739'), - (5, 1843, 'attending', '2022-12-17 21:27:50', '2025-12-17 19:47:04', 'AYwOz8od', '5844304'), - (5, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AYwOz8od', '5844306'), - (5, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AYwOz8od', '5850159'), - (5, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AYwOz8od', '5858999'), - (5, 1852, 'attending', '2023-01-10 22:44:23', '2025-12-17 19:47:05', 'AYwOz8od', '5869898'), - (5, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AYwOz8od', '5871984'), - (5, 1859, 'maybe', '2023-01-20 18:11:02', '2025-12-17 19:47:05', 'AYwOz8od', '5876234'), - (5, 1861, 'maybe', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AYwOz8od', '5876354'), - (5, 1864, 'maybe', '2023-01-20 18:11:07', '2025-12-17 19:47:05', 'AYwOz8od', '5879675'), - (5, 1865, 'attending', '2023-01-28 03:04:13', '2025-12-17 19:47:06', 'AYwOz8od', '5879676'), - (5, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AYwOz8od', '5880939'), - (5, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AYwOz8od', '5880940'), - (5, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AYwOz8od', '5880942'), - (5, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AYwOz8od', '5880943'), - (5, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AYwOz8od', '5887890'), - (5, 1875, 'maybe', '2023-01-27 20:50:51', '2025-12-17 19:47:06', 'AYwOz8od', '5887908'), - (5, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AYwOz8od', '5888598'), - (5, 1877, 'not_attending', '2023-01-22 21:46:41', '2025-12-17 19:47:05', 'AYwOz8od', '5888693'), - (5, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AYwOz8od', '5893260'), - (5, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AYwOz8od', '5899826'), - (5, 1885, 'attending', '2023-02-24 19:37:34', '2025-12-17 19:47:08', 'AYwOz8od', '5899928'), - (5, 1886, 'maybe', '2023-03-07 01:50:39', '2025-12-17 19:47:09', 'AYwOz8od', '5899930'), - (5, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AYwOz8od', '5900199'), - (5, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AYwOz8od', '5900200'), - (5, 1891, 'attending', '2023-03-20 15:54:35', '2025-12-17 19:46:56', 'AYwOz8od', '5900202'), - (5, 1892, 'maybe', '2023-03-16 19:56:17', '2025-12-17 19:46:56', 'AYwOz8od', '5900203'), - (5, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AYwOz8od', '5901108'), - (5, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AYwOz8od', '5901126'), - (5, 1897, 'attending', '2023-02-10 23:44:01', '2025-12-17 19:47:07', 'AYwOz8od', '5901128'), - (5, 1899, 'attending', '2023-02-10 23:48:42', '2025-12-17 19:47:07', 'AYwOz8od', '5901323'), - (5, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AYwOz8od', '5909655'), - (5, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AYwOz8od', '5910522'), - (5, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AYwOz8od', '5910526'), - (5, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AYwOz8od', '5910528'), - (5, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AYwOz8od', '5916219'), - (5, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AYwOz8od', '5936234'), - (5, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AYwOz8od', '5958351'), - (5, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AYwOz8od', '5959751'), - (5, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AYwOz8od', '5959755'), - (5, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AYwOz8od', '5960055'), - (5, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AYwOz8od', '5961684'), - (5, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'AYwOz8od', '5962132'), - (5, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AYwOz8od', '5962133'), - (5, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AYwOz8od', '5962134'), - (5, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AYwOz8od', '5962317'), - (5, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AYwOz8od', '5962318'), - (5, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AYwOz8od', '5965933'), - (5, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AYwOz8od', '5967014'), - (5, 1955, 'attending', '2023-03-28 01:38:09', '2025-12-17 19:46:57', 'AYwOz8od', '5972529'), - (5, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AYwOz8od', '5972815'), - (5, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AYwOz8od', '5974016'), - (5, 1965, 'maybe', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AYwOz8od', '5981515'), - (5, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AYwOz8od', '5993516'), - (5, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AYwOz8od', '5998939'), - (5, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AYwOz8od', '6028191'), - (5, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AYwOz8od', '6040066'), - (5, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AYwOz8od', '6042717'), - (5, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AYwOz8od', '6044838'), - (5, 1987, 'attending', '2023-04-16 21:38:29', '2025-12-17 19:47:00', 'AYwOz8od', '6044839'), - (5, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYwOz8od', '6045684'), - (5, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AYwOz8od', '6050104'), - (5, 1999, 'not_attending', '2023-04-18 18:48:50', '2025-12-17 19:47:00', 'AYwOz8od', '6052057'), - (5, 2003, 'attending', '2023-05-15 21:07:29', '2025-12-17 19:47:03', 'AYwOz8od', '6052606'), - (5, 2005, 'attending', '2023-04-04 22:31:25', '2025-12-17 19:46:58', 'AYwOz8od', '6053195'), - (5, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AYwOz8od', '6053198'), - (5, 2008, 'attending', '2023-04-07 17:24:47', '2025-12-17 19:46:58', 'AYwOz8od', '6055808'), - (5, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'AYwOz8od', '6056085'), - (5, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AYwOz8od', '6056916'), - (5, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AYwOz8od', '6059290'), - (5, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AYwOz8od', '6060328'), - (5, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AYwOz8od', '6061037'), - (5, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AYwOz8od', '6061039'), - (5, 2019, 'not_attending', '2023-04-16 20:07:22', '2025-12-17 19:47:00', 'AYwOz8od', '6062934'), - (5, 2021, 'not_attending', '2023-04-16 23:39:49', '2025-12-17 19:47:00', 'AYwOz8od', '6066316'), - (5, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AYwOz8od', '6067245'), - (5, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AYwOz8od', '6068094'), - (5, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AYwOz8od', '6068252'), - (5, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AYwOz8od', '6068253'), - (5, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AYwOz8od', '6068254'), - (5, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AYwOz8od', '6068280'), - (5, 2032, 'attending', '2023-06-02 22:24:53', '2025-12-17 19:47:04', 'AYwOz8od', '6068281'), - (5, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AYwOz8od', '6069093'), - (5, 2040, 'attending', '2023-04-27 22:40:56', '2025-12-17 19:47:01', 'AYwOz8od', '6072453'), - (5, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'AYwOz8od', '6072528'), - (5, 2043, 'attending', '2023-04-25 16:43:41', '2025-12-17 19:47:01', 'AYwOz8od', '6073023'), - (5, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AYwOz8od', '6079840'), - (5, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AYwOz8od', '6083398'), - (5, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AYwOz8od', '6093504'), - (5, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AYwOz8od', '6097414'), - (5, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AYwOz8od', '6097442'), - (5, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AYwOz8od', '6097684'), - (5, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AYwOz8od', '6098762'), - (5, 2065, 'maybe', '2023-06-16 17:38:33', '2025-12-17 19:46:49', 'AYwOz8od', '6101169'), - (5, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AYwOz8od', '6101361'), - (5, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AYwOz8od', '6101362'), - (5, 2070, 'attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AYwOz8od', '6103752'), - (5, 2074, 'not_attending', '2023-05-19 22:05:21', '2025-12-17 19:47:03', 'AYwOz8od', '6107312'), - (5, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AYwOz8od', '6107314'), - (5, 2087, 'attending', '2023-05-31 03:52:59', '2025-12-17 19:47:04', 'AYwOz8od', '6120034'), - (5, 2089, 'attending', '2023-06-05 05:17:47', '2025-12-17 19:47:04', 'AYwOz8od', '6125227'), - (5, 2091, 'attending', '2023-06-04 03:47:18', '2025-12-17 19:47:04', 'AYwOz8od', '6130657'), - (5, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AYwOz8od', '6136733'), - (5, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AYwOz8od', '6137989'), - (5, 2097, 'not_attending', '2023-06-07 17:47:38', '2025-12-17 19:47:04', 'AYwOz8od', '6139059'), - (5, 2099, 'attending', '2023-06-14 18:35:16', '2025-12-17 19:46:49', 'AYwOz8od', '6143012'), - (5, 2104, 'attending', '2023-06-19 22:23:20', '2025-12-17 19:46:50', 'AYwOz8od', '6149499'), - (5, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AYwOz8od', '6150864'), - (5, 2110, 'attending', '2023-06-19 22:23:14', '2025-12-17 19:46:50', 'AYwOz8od', '6155491'), - (5, 2116, 'attending', '2023-07-03 21:46:17', '2025-12-17 19:46:51', 'AYwOz8od', '6163389'), - (5, 2117, 'attending', '2023-06-26 05:46:14', '2025-12-17 19:46:50', 'AYwOz8od', '6163750'), - (5, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AYwOz8od', '6164417'), - (5, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AYwOz8od', '6166388'), - (5, 2121, 'attending', '2023-06-29 00:51:20', '2025-12-17 19:46:50', 'AYwOz8od', '6176439'), - (5, 2122, 'attending', '2023-06-30 19:35:12', '2025-12-17 19:46:51', 'AYwOz8od', '6176476'), - (5, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AYwOz8od', '6182410'), - (5, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AYwOz8od', '6185812'), - (5, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AYwOz8od', '6187651'), - (5, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AYwOz8od', '6187963'), - (5, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AYwOz8od', '6187964'), - (5, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AYwOz8od', '6187966'), - (5, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AYwOz8od', '6187967'), - (5, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AYwOz8od', '6187969'), - (5, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AYwOz8od', '6334878'), - (5, 2146, 'attending', '2023-07-17 05:47:21', '2025-12-17 19:46:53', 'AYwOz8od', '6335638'), - (5, 2152, 'attending', '2023-07-13 17:31:21', '2025-12-17 19:46:52', 'AYwOz8od', '6337021'), - (5, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AYwOz8od', '6337236'), - (5, 2155, 'attending', '2023-07-16 20:49:50', '2025-12-17 19:46:53', 'AYwOz8od', '6337970'), - (5, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AYwOz8od', '6338308'), - (5, 2158, 'attending', '2023-07-23 07:26:59', '2025-12-17 19:46:53', 'AYwOz8od', '6338353'), - (5, 2159, 'attending', '2023-07-17 05:47:19', '2025-12-17 19:46:53', 'AYwOz8od', '6338355'), - (5, 2160, 'not_attending', '2023-07-19 19:34:24', '2025-12-17 19:46:54', 'AYwOz8od', '6338358'), - (5, 2161, 'attending', '2023-07-15 19:18:15', '2025-12-17 19:46:52', 'AYwOz8od', '6340748'), - (5, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'AYwOz8od', '6340845'), - (5, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AYwOz8od', '6341710'), - (5, 2165, 'attending', '2023-07-26 20:25:46', '2025-12-17 19:46:54', 'AYwOz8od', '6342044'), - (5, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AYwOz8od', '6342298'), - (5, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AYwOz8od', '6343294'), - (5, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AYwOz8od', '6347034'), - (5, 2177, 'not_attending', '2023-08-07 23:05:50', '2025-12-17 19:46:55', 'AYwOz8od', '6347053'), - (5, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AYwOz8od', '6347056'), - (5, 2183, 'not_attending', '2023-07-28 15:19:17', '2025-12-17 19:46:54', 'AYwOz8od', '6353008'), - (5, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AYwOz8od', '6353830'), - (5, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AYwOz8od', '6353831'), - (5, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AYwOz8od', '6357867'), - (5, 2190, 'attending', '2023-08-07 00:07:32', '2025-12-17 19:46:55', 'AYwOz8od', '6357892'), - (5, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AYwOz8od', '6358652'), - (5, 2195, 'attending', '2023-08-23 01:30:44', '2025-12-17 19:46:55', 'AYwOz8od', '6359397'), - (5, 2196, 'not_attending', '2023-09-03 16:34:04', '2025-12-17 19:46:56', 'AYwOz8od', '6359398'), - (5, 2199, 'attending', '2023-08-13 18:14:57', '2025-12-17 19:46:55', 'AYwOz8od', '6359849'), - (5, 2200, 'attending', '2023-08-07 00:07:36', '2025-12-17 19:46:55', 'AYwOz8od', '6359850'), - (5, 2204, 'not_attending', '2023-08-13 18:15:07', '2025-12-17 19:46:55', 'AYwOz8od', '6361542'), - (5, 2206, 'not_attending', '2023-08-09 03:57:51', '2025-12-17 19:46:55', 'AYwOz8od', '6361659'), - (5, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AYwOz8od', '6361709'), - (5, 2209, 'attending', '2023-08-23 01:30:10', '2025-12-17 19:46:55', 'AYwOz8od', '6361710'), - (5, 2210, 'attending', '2023-08-26 21:55:28', '2025-12-17 19:46:55', 'AYwOz8od', '6361711'), - (5, 2211, 'not_attending', '2023-08-13 18:15:04', '2025-12-17 19:46:55', 'AYwOz8od', '6361712'), - (5, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AYwOz8od', '6361713'), - (5, 2214, 'maybe', '2023-08-12 20:33:14', '2025-12-17 19:46:55', 'AYwOz8od', '6363218'), - (5, 2215, 'maybe', '2023-08-11 18:46:57', '2025-12-17 19:46:55', 'AYwOz8od', '6363479'), - (5, 2216, 'attending', '2023-08-19 22:55:01', '2025-12-17 19:46:55', 'AYwOz8od', '6364123'), - (5, 2217, 'maybe', '2023-08-12 20:33:20', '2025-12-17 19:46:55', 'AYwOz8od', '6364333'), - (5, 2232, 'attending', '2023-08-23 01:37:22', '2025-12-17 19:46:55', 'AYwOz8od', '6374818'), - (5, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AYwOz8od', '6382573'), - (5, 2239, 'attending', '2023-08-31 18:06:33', '2025-12-17 19:46:56', 'AYwOz8od', '6387592'), - (5, 2240, 'attending', '2023-09-06 04:13:35', '2025-12-17 19:46:56', 'AYwOz8od', '6388603'), - (5, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AYwOz8od', '6388604'), - (5, 2242, 'attending', '2023-09-22 18:33:10', '2025-12-17 19:46:45', 'AYwOz8od', '6388606'), - (5, 2247, 'maybe', '2023-09-05 19:51:26', '2025-12-17 19:46:56', 'AYwOz8od', '6394628'), - (5, 2248, 'maybe', '2023-09-13 00:10:06', '2025-12-17 19:46:44', 'AYwOz8od', '6394629'), - (5, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AYwOz8od', '6394631'), - (5, 2253, 'attending', '2023-09-26 01:11:53', '2025-12-17 19:46:45', 'AYwOz8od', '6401811'), - (5, 2255, 'maybe', '2023-09-17 03:56:40', '2025-12-17 19:46:45', 'AYwOz8od', '6403562'), - (5, 2265, 'attending', '2023-10-01 04:29:53', '2025-12-17 19:46:45', 'AYwOz8od', '6439625'), - (5, 2266, 'maybe', '2023-10-07 20:01:22', '2025-12-17 19:46:45', 'AYwOz8od', '6439635'), - (5, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AYwOz8od', '6440863'), - (5, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AYwOz8od', '6445440'), - (5, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AYwOz8od', '6453951'), - (5, 2279, 'attending', '2023-10-11 16:12:33', '2025-12-17 19:46:46', 'AYwOz8od', '6455460'), - (5, 2285, 'maybe', '2023-10-27 19:44:43', '2025-12-17 19:46:47', 'AYwOz8od', '6460929'), - (5, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AYwOz8od', '6461696'), - (5, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AYwOz8od', '6462129'), - (5, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AYwOz8od', '6463218'), - (5, 2299, 'attending', '2023-10-18 17:01:57', '2025-12-17 19:46:46', 'AYwOz8od', '6472181'), - (5, 2302, 'not_attending', '2023-10-20 23:42:59', '2025-12-17 19:46:46', 'AYwOz8od', '6482535'), - (5, 2303, 'attending', '2023-10-26 16:19:28', '2025-12-17 19:46:47', 'AYwOz8od', '6482691'), - (5, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AYwOz8od', '6482693'), - (5, 2306, 'attending', '2023-11-13 23:48:44', '2025-12-17 19:46:47', 'AYwOz8od', '6484200'), - (5, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AYwOz8od', '6484680'), - (5, 2310, 'attending', '2023-11-10 05:37:46', '2025-12-17 19:46:47', 'AYwOz8od', '6487709'), - (5, 2313, 'attending', '2023-10-28 20:32:09', '2025-12-17 19:46:47', 'AYwOz8od', '6492612'), - (5, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AYwOz8od', '6507741'), - (5, 2322, 'attending', '2023-11-16 19:03:15', '2025-12-17 19:46:48', 'AYwOz8od', '6514659'), - (5, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AYwOz8od', '6514660'), - (5, 2324, 'attending', '2023-12-07 19:24:41', '2025-12-17 19:46:49', 'AYwOz8od', '6514662'), - (5, 2325, 'not_attending', '2023-12-13 04:36:15', '2025-12-17 19:46:36', 'AYwOz8od', '6514663'), - (5, 2331, 'not_attending', '2023-11-12 23:03:21', '2025-12-17 19:46:47', 'AYwOz8od', '6518640'), - (5, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AYwOz8od', '6519103'), - (5, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AYwOz8od', '6535681'), - (5, 2338, 'not_attending', '2023-11-25 23:39:22', '2025-12-17 19:46:48', 'AYwOz8od', '6538868'), - (5, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AYwOz8od', '6584747'), - (5, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AYwOz8od', '6587097'), - (5, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AYwOz8od', '6609022'), - (5, 2364, 'attending', '2023-12-08 01:10:52', '2025-12-17 19:46:49', 'AYwOz8od', '6613011'), - (5, 2366, 'attending', '2023-12-08 22:15:23', '2025-12-17 19:46:36', 'AYwOz8od', '6615304'), - (5, 2370, 'maybe', '2023-12-13 06:27:40', '2025-12-17 19:46:36', 'AYwOz8od', '6623765'), - (5, 2371, 'attending', '2023-12-15 05:58:24', '2025-12-17 19:46:36', 'AYwOz8od', '6624495'), - (5, 2373, 'attending', '2023-12-20 01:45:47', '2025-12-17 19:46:38', 'AYwOz8od', '6632678'), - (5, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AYwOz8od', '6632757'), - (5, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AYwOz8od', '6644187'), - (5, 2380, 'attending', '2023-12-31 03:53:26', '2025-12-17 19:46:37', 'AYwOz8od', '6645105'), - (5, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AYwOz8od', '6648951'), - (5, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AYwOz8od', '6648952'), - (5, 2388, 'attending', '2024-01-05 23:06:51', '2025-12-17 19:46:37', 'AYwOz8od', '6649244'), - (5, 2390, 'maybe', '2024-01-07 05:22:28', '2025-12-17 19:46:37', 'AYwOz8od', '6651141'), - (5, 2391, 'not_attending', '2024-01-13 00:40:37', '2025-12-17 19:46:37', 'AYwOz8od', '6654138'), - (5, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AYwOz8od', '6655401'), - (5, 2397, 'not_attending', '2024-01-08 18:18:30', '2025-12-17 19:46:37', 'AYwOz8od', '6657379'), - (5, 2398, 'not_attending', '2024-01-10 05:14:27', '2025-12-17 19:46:37', 'AYwOz8od', '6657381'), - (5, 2399, 'attending', '2024-01-13 20:40:10', '2025-12-17 19:46:38', 'AYwOz8od', '6657583'), - (5, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AYwOz8od', '6661585'), - (5, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AYwOz8od', '6661588'), - (5, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AYwOz8od', '6661589'), - (5, 2404, 'attending', '2024-01-15 19:55:56', '2025-12-17 19:46:38', 'AYwOz8od', '6666858'), - (5, 2406, 'not_attending', '2024-01-17 22:34:00', '2025-12-17 19:46:40', 'AYwOz8od', '6692344'), - (5, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AYwOz8od', '6699906'), - (5, 2408, 'attending', '2024-01-23 23:46:39', '2025-12-17 19:46:40', 'AYwOz8od', '6699907'), - (5, 2409, 'attending', '2024-02-01 03:42:46', '2025-12-17 19:46:41', 'AYwOz8od', '6699909'), - (5, 2410, 'attending', '2024-02-08 00:40:23', '2025-12-17 19:46:41', 'AYwOz8od', '6699911'), - (5, 2411, 'attending', '2024-02-15 04:00:55', '2025-12-17 19:46:41', 'AYwOz8od', '6699913'), - (5, 2414, 'maybe', '2024-01-18 01:45:20', '2025-12-17 19:46:40', 'AYwOz8od', '6701000'), - (5, 2415, 'maybe', '2024-01-18 01:45:21', '2025-12-17 19:46:40', 'AYwOz8od', '6701001'), - (5, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AYwOz8od', '6701109'), - (5, 2421, 'not_attending', '2024-01-26 04:45:32', '2025-12-17 19:46:40', 'AYwOz8od', '6704598'), - (5, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AYwOz8od', '6705219'), - (5, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AYwOz8od', '6710153'), - (5, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AYwOz8od', '6711552'), - (5, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'AYwOz8od', '6711553'), - (5, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AYwOz8od', '6722688'), - (5, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AYwOz8od', '6730620'), - (5, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AYwOz8od', '6730642'), - (5, 2444, 'attending', '2024-02-09 18:59:35', '2025-12-17 19:46:41', 'AYwOz8od', '6734367'), - (5, 2445, 'not_attending', '2024-02-16 03:44:01', '2025-12-17 19:46:41', 'AYwOz8od', '6734368'), - (5, 2447, 'not_attending', '2024-03-10 18:04:18', '2025-12-17 19:46:32', 'AYwOz8od', '6734370'), - (5, 2448, 'not_attending', '2024-03-27 02:22:30', '2025-12-17 19:46:33', 'AYwOz8od', '6734371'), - (5, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AYwOz8od', '6740364'), - (5, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AYwOz8od', '6743829'), - (5, 2466, 'not_attending', '2024-02-13 23:39:45', '2025-12-17 19:46:41', 'AYwOz8od', '7026777'), - (5, 2467, 'maybe', '2024-02-24 18:03:11', '2025-12-17 19:46:43', 'AYwOz8od', '7029987'), - (5, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AYwOz8od', '7030380'), - (5, 2471, 'attending', '2024-02-20 02:56:57', '2025-12-17 19:46:42', 'AYwOz8od', '7032425'), - (5, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AYwOz8od', '7033677'), - (5, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'AYwOz8od', '7035415'), - (5, 2476, 'attending', '2024-02-27 00:50:07', '2025-12-17 19:46:43', 'AYwOz8od', '7035691'), - (5, 2478, 'attending', '2024-02-23 01:15:16', '2025-12-17 19:46:43', 'AYwOz8od', '7036478'), - (5, 2480, 'maybe', '2024-02-24 18:03:09', '2025-12-17 19:46:43', 'AYwOz8od', '7042160'), - (5, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AYwOz8od', '7044715'), - (5, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AYwOz8od', '7050318'), - (5, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AYwOz8od', '7050319'), - (5, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AYwOz8od', '7050322'), - (5, 2498, 'attending', '2024-03-20 20:37:24', '2025-12-17 19:46:33', 'AYwOz8od', '7057662'), - (5, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AYwOz8od', '7057804'), - (5, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'AYwOz8od', '7059866'), - (5, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AYwOz8od', '7072824'), - (5, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AYwOz8od', '7074348'), - (5, 2513, 'attending', '2024-04-18 15:59:18', '2025-12-17 19:46:34', 'AYwOz8od', '7074353'), - (5, 2516, 'not_attending', '2024-05-02 20:16:45', '2025-12-17 19:46:35', 'AYwOz8od', '7074356'), - (5, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AYwOz8od', '7074364'), - (5, 2527, 'maybe', '2024-06-27 15:48:37', '2025-12-17 19:46:29', 'AYwOz8od', '7074367'), - (5, 2528, 'attending', '2024-08-07 16:10:24', '2025-12-17 19:46:31', 'AYwOz8od', '7074368'), - (5, 2533, 'attending', '2024-08-21 16:33:29', '2025-12-17 19:46:32', 'AYwOz8od', '7074384'), - (5, 2534, 'maybe', '2024-03-13 16:29:27', '2025-12-17 19:46:32', 'AYwOz8od', '7076875'), - (5, 2537, 'maybe', '2024-03-21 18:01:08', '2025-12-17 19:46:33', 'AYwOz8od', '7085484'), - (5, 2538, 'maybe', '2024-03-28 21:13:17', '2025-12-17 19:46:33', 'AYwOz8od', '7085485'), - (5, 2539, 'attending', '2024-04-03 21:45:00', '2025-12-17 19:46:33', 'AYwOz8od', '7085486'), - (5, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AYwOz8od', '7089267'), - (5, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AYwOz8od', '7098747'), - (5, 2553, 'attending', '2024-03-29 18:44:38', '2025-12-17 19:46:33', 'AYwOz8od', '7113468'), - (5, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AYwOz8od', '7114856'), - (5, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AYwOz8od', '7114951'), - (5, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AYwOz8od', '7114955'), - (5, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AYwOz8od', '7114956'), - (5, 2558, 'attending', '2024-05-01 17:54:47', '2025-12-17 19:46:35', 'AYwOz8od', '7114957'), - (5, 2564, 'not_attending', '2024-04-09 00:05:02', '2025-12-17 19:46:33', 'AYwOz8od', '7134735'), - (5, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AYwOz8od', '7153615'), - (5, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AYwOz8od', '7159484'), - (5, 2573, 'attending', '2024-04-09 00:02:24', '2025-12-17 19:46:34', 'AYwOz8od', '7160612'), - (5, 2576, 'not_attending', '2024-04-24 01:11:42', '2025-12-17 19:46:34', 'AYwOz8od', '7164538'), - (5, 2581, 'not_attending', '2024-04-21 21:23:37', '2025-12-17 19:46:34', 'AYwOz8od', '7169048'), - (5, 2584, 'attending', '2024-04-21 02:24:30', '2025-12-17 19:46:34', 'AYwOz8od', '7175057'), - (5, 2585, 'attending', '2024-04-21 21:23:34', '2025-12-17 19:46:34', 'AYwOz8od', '7175828'), - (5, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AYwOz8od', '7178446'), - (5, 2592, 'attending', '2024-04-20 01:54:28', '2025-12-17 19:46:34', 'AYwOz8od', '7180959'), - (5, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AYwOz8od', '7220467'), - (5, 2603, 'not_attending', '2024-05-11 20:54:14', '2025-12-17 19:46:35', 'AYwOz8od', '7225669'), - (5, 2605, 'attending', '2024-05-03 21:51:19', '2025-12-17 19:46:35', 'AYwOz8od', '7229243'), - (5, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AYwOz8od', '7240354'), - (5, 2611, 'attending', '2024-05-05 20:39:30', '2025-12-17 19:46:35', 'AYwOz8od', '7247642'), - (5, 2613, 'attending', '2024-05-05 20:39:34', '2025-12-17 19:46:35', 'AYwOz8od', '7247644'), - (5, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AYwOz8od', '7251633'), - (5, 2620, 'attending', '2024-05-07 16:47:49', '2025-12-17 19:46:35', 'AYwOz8od', '7258097'), - (5, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'AYwOz8od', '7263048'), - (5, 2626, 'attending', '2024-05-16 00:53:26', '2025-12-17 19:46:35', 'AYwOz8od', '7264723'), - (5, 2627, 'not_attending', '2024-05-18 17:51:38', '2025-12-17 19:46:35', 'AYwOz8od', '7264724'), - (5, 2630, 'not_attending', '2024-05-12 17:22:50', '2025-12-17 19:46:35', 'AYwOz8od', '7264801'), - (5, 2643, 'attending', '2024-05-18 17:51:25', '2025-12-17 19:46:35', 'AYwOz8od', '7276587'), - (5, 2646, 'not_attending', '2024-05-20 19:51:10', '2025-12-17 19:46:35', 'AYwOz8od', '7281768'), - (5, 2647, 'attending', '2024-05-29 18:38:07', '2025-12-17 19:46:28', 'AYwOz8od', '7282057'), - (5, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AYwOz8od', '7302674'), - (5, 2674, 'maybe', '2024-07-07 03:40:13', '2025-12-17 19:46:29', 'AYwOz8od', '7319480'), - (5, 2679, 'attending', '2024-06-20 01:26:48', '2025-12-17 19:46:29', 'AYwOz8od', '7319490'), - (5, 2688, 'attending', '2024-06-25 03:59:36', '2025-12-17 19:46:29', 'AYwOz8od', '7324073'), - (5, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AYwOz8od', '7324074'), - (5, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AYwOz8od', '7324075'), - (5, 2691, 'attending', '2024-07-17 16:15:22', '2025-12-17 19:46:30', 'AYwOz8od', '7324076'), - (5, 2692, 'not_attending', '2024-07-23 20:09:24', '2025-12-17 19:46:30', 'AYwOz8od', '7324077'), - (5, 2693, 'attending', '2024-08-01 02:42:40', '2025-12-17 19:46:31', 'AYwOz8od', '7324078'), - (5, 2694, 'attending', '2024-08-05 23:05:00', '2025-12-17 19:46:31', 'AYwOz8od', '7324079'), - (5, 2695, 'not_attending', '2024-08-15 18:24:59', '2025-12-17 19:46:31', 'AYwOz8od', '7324080'), - (5, 2696, 'attending', '2024-08-22 21:49:50', '2025-12-17 19:46:32', 'AYwOz8od', '7324081'), - (5, 2697, 'attending', '2024-08-30 19:28:16', '2025-12-17 19:46:32', 'AYwOz8od', '7324082'), - (5, 2698, 'attending', '2024-09-05 22:43:33', '2025-12-17 19:46:24', 'AYwOz8od', '7324083'), - (5, 2701, 'not_attending', '2024-06-25 03:59:34', '2025-12-17 19:46:29', 'AYwOz8od', '7324391'), - (5, 2706, 'attending', '2024-06-14 20:10:14', '2025-12-17 19:46:28', 'AYwOz8od', '7324947'), - (5, 2711, 'not_attending', '2024-07-17 03:02:56', '2025-12-17 19:46:30', 'AYwOz8od', '7326524'), - (5, 2712, 'attending', '2024-07-30 15:09:30', '2025-12-17 19:46:31', 'AYwOz8od', '7326525'), - (5, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AYwOz8od', '7331457'), - (5, 2723, 'not_attending', '2024-06-20 01:26:45', '2025-12-17 19:46:29', 'AYwOz8od', '7332389'), - (5, 2724, 'maybe', '2024-06-25 03:59:30', '2025-12-17 19:46:29', 'AYwOz8od', '7332562'), - (5, 2729, 'attending', '2024-06-23 15:50:00', '2025-12-17 19:46:29', 'AYwOz8od', '7335092'), - (5, 2736, 'attending', '2024-06-29 20:29:24', '2025-12-17 19:46:29', 'AYwOz8od', '7342038'), - (5, 2737, 'not_attending', '2024-06-30 20:35:08', '2025-12-17 19:46:29', 'AYwOz8od', '7344070'), - (5, 2739, 'maybe', '2024-07-01 16:25:48', '2025-12-17 19:46:29', 'AYwOz8od', '7344575'), - (5, 2741, 'maybe', '2024-07-01 16:38:27', '2025-12-17 19:46:30', 'AYwOz8od', '7344592'), - (5, 2742, 'attending', '2024-07-03 16:19:25', '2025-12-17 19:46:29', 'AYwOz8od', '7345167'), - (5, 2746, 'maybe', '2024-07-08 19:20:20', '2025-12-17 19:46:29', 'AYwOz8od', '7348713'), - (5, 2747, 'attending', '2024-07-17 03:02:47', '2025-12-17 19:46:30', 'AYwOz8od', '7353587'), - (5, 2749, 'not_attending', '2024-07-07 21:57:22', '2025-12-17 19:46:29', 'AYwOz8od', '7355496'), - (5, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AYwOz8od', '7356752'), - (5, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AYwOz8od', '7363643'), - (5, 2770, 'not_attending', '2024-07-20 21:09:59', '2025-12-17 19:46:30', 'AYwOz8od', '7368196'), - (5, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AYwOz8od', '7368606'), - (5, 2782, 'maybe', '2024-07-29 19:14:09', '2025-12-17 19:46:30', 'AYwOz8od', '7376725'), - (5, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AYwOz8od', '7397462'), - (5, 2802, 'maybe', '2024-09-02 04:39:45', '2025-12-17 19:46:32', 'AYwOz8od', '7397463'), - (5, 2806, 'not_attending', '2024-09-14 21:51:15', '2025-12-17 19:46:25', 'AYwOz8od', '7404888'), - (5, 2811, 'attending', '2024-08-31 21:30:08', '2025-12-17 19:46:32', 'AYwOz8od', '7418895'), - (5, 2813, 'not_attending', '2024-09-04 16:42:34', '2025-12-17 19:46:24', 'AYwOz8od', '7424105'), - (5, 2814, 'maybe', '2024-09-08 04:50:29', '2025-12-17 19:46:24', 'AYwOz8od', '7424267'), - (5, 2821, 'attending', '2024-10-09 04:28:07', '2025-12-17 19:46:26', 'AYwOz8od', '7424275'), - (5, 2822, 'maybe', '2024-11-10 00:27:43', '2025-12-17 19:46:26', 'AYwOz8od', '7424276'), - (5, 2823, 'attending', '2024-09-06 14:01:21', '2025-12-17 19:46:24', 'AYwOz8od', '7430247'), - (5, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AYwOz8od', '7432751'), - (5, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AYwOz8od', '7432752'), - (5, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AYwOz8od', '7432753'), - (5, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AYwOz8od', '7432754'), - (5, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AYwOz8od', '7432755'), - (5, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AYwOz8od', '7432756'), - (5, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AYwOz8od', '7432758'), - (5, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AYwOz8od', '7432759'), - (5, 2832, 'not_attending', '2024-09-09 20:33:00', '2025-12-17 19:46:24', 'AYwOz8od', '7433324'), - (5, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AYwOz8od', '7433834'), - (5, 2836, 'not_attending', '2024-09-12 22:35:03', '2025-12-17 19:46:25', 'AYwOz8od', '7438708'), - (5, 2839, 'not_attending', '2024-09-25 01:46:39', '2025-12-17 19:46:25', 'AYwOz8od', '7439262'), - (5, 2845, 'attending', '2024-09-21 18:49:26', '2025-12-17 19:46:25', 'AYwOz8od', '7452129'), - (5, 2849, 'attending', '2024-09-25 00:51:28', '2025-12-17 19:46:25', 'AYwOz8od', '7457114'), - (5, 2851, 'attending', '2024-09-28 20:55:26', '2025-12-17 19:46:25', 'AYwOz8od', '7461883'), - (5, 2858, 'not_attending', '2024-10-13 04:50:40', '2025-12-17 19:46:26', 'AYwOz8od', '7469388'), - (5, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'AYwOz8od', '7470197'), - (5, 2865, 'maybe', '2024-10-20 19:23:32', '2025-12-17 19:46:26', 'AYwOz8od', '7471200'), - (5, 2867, 'not_attending', '2024-12-03 03:00:27', '2025-12-17 19:46:21', 'AYwOz8od', '7471202'), - (5, 2870, 'attending', '2024-10-05 20:57:01', '2025-12-17 19:46:26', 'AYwOz8od', '7475068'), - (5, 2886, 'attending', '2024-11-03 20:54:53', '2025-12-17 19:46:26', 'AYwOz8od', '7654498'), - (5, 2891, 'attending', '2024-10-26 18:52:17', '2025-12-17 19:46:26', 'AYwOz8od', '7668163'), - (5, 2892, 'not_attending', '2024-10-27 23:27:40', '2025-12-17 19:46:26', 'AYwOz8od', '7672064'), - (5, 2894, 'attending', '2024-11-02 18:42:13', '2025-12-17 19:46:26', 'AYwOz8od', '7680059'), - (5, 2896, 'not_attending', '2024-11-12 17:18:16', '2025-12-17 19:46:27', 'AYwOz8od', '7683647'), - (5, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AYwOz8od', '7685613'), - (5, 2900, 'not_attending', '2024-11-11 00:08:09', '2025-12-17 19:46:26', 'AYwOz8od', '7686090'), - (5, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AYwOz8od', '7688194'), - (5, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AYwOz8od', '7688196'), - (5, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AYwOz8od', '7688289'), - (5, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'AYwOz8od', '7692763'), - (5, 2913, 'maybe', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AYwOz8od', '7697552'), - (5, 2915, 'not_attending', '2024-11-19 20:14:28', '2025-12-17 19:46:27', 'AYwOz8od', '7698151'), - (5, 2916, 'not_attending', '2024-11-19 20:14:25', '2025-12-17 19:46:27', 'AYwOz8od', '7699006'), - (5, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AYwOz8od', '7699878'), - (5, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'AYwOz8od', '7704043'), - (5, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AYwOz8od', '7712467'), - (5, 2925, 'attending', '2024-12-10 02:15:23', '2025-12-17 19:46:21', 'AYwOz8od', '7713584'), - (5, 2926, 'not_attending', '2024-11-30 22:30:57', '2025-12-17 19:46:21', 'AYwOz8od', '7713585'), - (5, 2927, 'not_attending', '2024-12-15 19:32:58', '2025-12-17 19:46:22', 'AYwOz8od', '7713586'), - (5, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AYwOz8od', '7738518'), - (5, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AYwOz8od', '7750636'), - (5, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AYwOz8od', '7796540'), - (5, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AYwOz8od', '7796541'), - (5, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AYwOz8od', '7796542'), - (5, 2968, 'not_attending', '2025-01-09 05:17:00', '2025-12-17 19:46:22', 'AYwOz8od', '7797967'), - (5, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AYwOz8od', '7825913'), - (5, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AYwOz8od', '7826209'), - (5, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AYwOz8od', '7834742'), - (5, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'AYwOz8od', '7842108'), - (5, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AYwOz8od', '7842902'), - (5, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AYwOz8od', '7842903'), - (5, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AYwOz8od', '7842904'), - (5, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AYwOz8od', '7842905'), - (5, 3000, 'attending', '2025-02-17 19:37:31', '2025-12-17 19:46:24', 'AYwOz8od', '7852541'), - (5, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AYwOz8od', '7855719'), - (5, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AYwOz8od', '7860683'), - (5, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AYwOz8od', '7860684'), - (5, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AYwOz8od', '7866095'), - (5, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AYwOz8od', '7869170'), - (5, 3014, 'attending', '2025-03-31 17:05:56', '2025-12-17 19:46:19', 'AYwOz8od', '7869185'), - (5, 3016, 'attending', '2025-04-19 05:01:50', '2025-12-17 19:46:20', 'AYwOz8od', '7869187'), - (5, 3017, 'not_attending', '2025-03-22 21:04:46', '2025-12-17 19:46:19', 'AYwOz8od', '7869188'), - (5, 3018, 'attending', '2025-04-09 00:40:13', '2025-12-17 19:46:20', 'AYwOz8od', '7869189'), - (5, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AYwOz8od', '7869201'), - (5, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AYwOz8od', '7877465'), - (5, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AYwOz8od', '7878570'), - (5, 3046, 'attending', '2025-04-12 18:49:51', '2025-12-17 19:46:20', 'AYwOz8od', '7882692'), - (5, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AYwOz8od', '7888250'), - (5, 3065, 'attending', '2025-03-29 01:00:39', '2025-12-17 19:46:19', 'AYwOz8od', '7893676'), - (5, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AYwOz8od', '7904777'), - (5, 3094, 'not_attending', '2025-05-03 00:21:28', '2025-12-17 19:46:21', 'AYwOz8od', '8342292'), - (5, 3095, 'attending', '2025-04-28 14:33:18', '2025-12-17 19:46:20', 'AYwOz8od', '8342293'), - (5, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AYwOz8od', '8349164'), - (5, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AYwOz8od', '8349545'), - (5, 3108, 'attending', '2025-05-03 19:12:06', '2025-12-17 19:46:20', 'AYwOz8od', '8351411'), - (5, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AYwOz8od', '8353584'), - (5, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AYwOz8od', '8368028'), - (5, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AYwOz8od', '8368029'), - (5, 3133, 'attending', '2025-05-29 20:50:57', '2025-12-17 19:46:14', 'AYwOz8od', '8368030'), - (5, 3139, 'attending', '2025-05-24 21:37:35', '2025-12-17 19:46:21', 'AYwOz8od', '8377425'), - (5, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AYwOz8od', '8388462'), - (5, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AYwOz8od', '8400273'), - (5, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AYwOz8od', '8400274'), - (5, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AYwOz8od', '8400275'), - (5, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'AYwOz8od', '8400276'), - (5, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AYwOz8od', '8404977'), - (5, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AYwOz8od', '8430783'), - (5, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AYwOz8od', '8430784'), - (5, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AYwOz8od', '8430799'), - (5, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AYwOz8od', '8430800'), - (5, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AYwOz8od', '8430801'), - (5, 3186, 'maybe', '2025-07-01 00:41:26', '2025-12-17 19:46:16', 'AYwOz8od', '8431527'), - (5, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AYwOz8od', '8438709'), - (5, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AYwOz8od', '8457738'), - (5, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AYwOz8od', '8459566'), - (5, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AYwOz8od', '8459567'), - (5, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AYwOz8od', '8461032'), - (5, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AYwOz8od', '8477877'), - (5, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AYwOz8od', '8485688'), - (5, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AYwOz8od', '8490587'), - (5, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AYwOz8od', '8493552'), - (5, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AYwOz8od', '8493553'), - (5, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AYwOz8od', '8493554'), - (5, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AYwOz8od', '8493555'), - (5, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AYwOz8od', '8493556'), - (5, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AYwOz8od', '8493557'), - (5, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AYwOz8od', '8493558'), - (5, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AYwOz8od', '8493559'), - (5, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AYwOz8od', '8493560'), - (5, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'AYwOz8od', '8493561'), - (5, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AYwOz8od', '8493572'), - (5, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AYwOz8od', '8540725'), - (5, 3289, 'attending', '2025-10-21 20:17:02', '2025-12-17 19:46:14', 'AYwOz8od', '8542939'), - (5, 3295, 'attending', '2025-10-30 16:49:43', '2025-12-17 19:46:14', 'AYwOz8od', '8547541'), - (5, 3300, 'not_attending', '2025-11-08 17:28:56', '2025-12-17 19:46:14', 'AYwOz8od', '8549145'), - (5, 3302, 'not_attending', '2025-11-01 19:30:44', '2025-12-17 19:46:14', 'AYwOz8od', '8550022'), - (5, 3304, 'attending', '2025-11-18 06:57:45', '2025-12-17 19:46:14', 'AYwOz8od', '8550024'), - (5, 3305, 'attending', '2025-12-06 01:33:17', '2025-12-17 19:46:11', 'AYwOz8od', '8550025'), - (5, 3306, 'attending', '2025-12-13 17:50:22', '2025-12-17 19:46:11', 'AYwOz8od', '8550026'), - (5, 3307, 'maybe', '2025-12-14 05:10:15', '2025-12-17 19:46:11', 'AYwOz8od', '8550027'), - (5, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AYwOz8od', '8555421'), - (6, 246, 'not_attending', '2020-12-12 04:38:43', '2025-12-17 19:47:55', 'ndaRDaKm', '3149477'), - (6, 258, 'attending', '2021-06-01 22:43:16', '2025-12-17 19:47:47', 'ndaRDaKm', '3149489'), - (6, 409, 'not_attending', '2020-12-11 01:07:33', '2025-12-17 19:47:54', 'ndaRDaKm', '3236467'), - (6, 429, 'attending', '2020-12-06 17:17:04', '2025-12-17 19:47:54', 'ndaRDaKm', '3250523'), - (6, 493, 'not_attending', '2020-12-04 15:43:42', '2025-12-17 19:47:54', 'ndaRDaKm', '3313856'), - (6, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaRDaKm', '3314964'), - (6, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ndaRDaKm', '3323365'), - (6, 507, 'not_attending', '2020-12-17 23:33:22', '2025-12-17 19:47:48', 'ndaRDaKm', '3324148'), - (6, 513, 'attending', '2020-12-19 07:36:09', '2025-12-17 19:47:55', 'ndaRDaKm', '3329383'), - (6, 517, 'attending', '2021-01-07 05:54:01', '2025-12-17 19:47:48', 'ndaRDaKm', '3337137'), - (6, 522, 'attending', '2020-12-17 23:33:18', '2025-12-17 19:47:55', 'ndaRDaKm', '3342836'), - (6, 526, 'attending', '2020-12-29 16:53:40', '2025-12-17 19:47:48', 'ndaRDaKm', '3351539'), - (6, 529, 'attending', '2021-01-02 22:30:37', '2025-12-17 19:47:48', 'ndaRDaKm', '3364568'), - (6, 532, 'attending', '2021-01-05 22:20:50', '2025-12-17 19:47:48', 'ndaRDaKm', '3381412'), - (6, 534, 'attending', '2021-01-09 21:36:16', '2025-12-17 19:47:48', 'ndaRDaKm', '3384157'), - (6, 535, 'attending', '2021-01-05 22:19:51', '2025-12-17 19:47:48', 'ndaRDaKm', '3384729'), - (6, 536, 'attending', '2021-01-06 03:07:14', '2025-12-17 19:47:48', 'ndaRDaKm', '3386848'), - (6, 538, 'attending', '2021-01-10 18:16:51', '2025-12-17 19:47:48', 'ndaRDaKm', '3388151'), - (6, 540, 'attending', '2021-01-07 01:57:18', '2025-12-17 19:47:48', 'ndaRDaKm', '3389527'), - (6, 542, 'attending', '2021-01-10 18:17:20', '2025-12-17 19:47:48', 'ndaRDaKm', '3395013'), - (6, 543, 'attending', '2021-01-12 03:36:36', '2025-12-17 19:47:48', 'ndaRDaKm', '3396499'), - (6, 547, 'not_attending', '2021-01-23 20:10:47', '2025-12-17 19:47:49', 'ndaRDaKm', '3396504'), - (6, 548, 'attending', '2021-01-13 02:47:41', '2025-12-17 19:47:48', 'ndaRDaKm', '3403650'), - (6, 549, 'attending', '2021-01-16 17:40:36', '2025-12-17 19:47:48', 'ndaRDaKm', '3406988'), - (6, 550, 'not_attending', '2021-01-17 22:41:35', '2025-12-17 19:47:48', 'ndaRDaKm', '3407018'), - (6, 554, 'attending', '2021-01-21 00:57:46', '2025-12-17 19:47:49', 'ndaRDaKm', '3408338'), - (6, 555, 'attending', '2021-01-18 20:40:51', '2025-12-17 19:47:49', 'ndaRDaKm', '3416576'), - (6, 557, 'not_attending', '2021-01-21 00:57:52', '2025-12-17 19:47:49', 'ndaRDaKm', '3418748'), - (6, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'ndaRDaKm', '3418925'), - (6, 559, 'not_attending', '2021-01-29 18:28:22', '2025-12-17 19:47:49', 'ndaRDaKm', '3421439'), - (6, 561, 'not_attending', '2021-01-23 20:10:40', '2025-12-17 19:47:49', 'ndaRDaKm', '3421916'), - (6, 562, 'attending', '2021-01-23 17:58:19', '2025-12-17 19:47:49', 'ndaRDaKm', '3424911'), - (6, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'ndaRDaKm', '3426074'), - (6, 567, 'not_attending', '2021-01-30 18:43:15', '2025-12-17 19:47:50', 'ndaRDaKm', '3428895'), - (6, 568, 'attending', '2021-01-26 04:24:33', '2025-12-17 19:47:50', 'ndaRDaKm', '3430267'), - (6, 569, 'attending', '2021-01-27 22:09:44', '2025-12-17 19:47:49', 'ndaRDaKm', '3432673'), - (6, 570, 'not_attending', '2021-02-01 16:17:27', '2025-12-17 19:47:50', 'ndaRDaKm', '3435538'), - (6, 571, 'attending', '2021-02-10 01:16:43', '2025-12-17 19:47:50', 'ndaRDaKm', '3435539'), - (6, 576, 'not_attending', '2021-01-31 00:46:21', '2025-12-17 19:47:50', 'ndaRDaKm', '3438748'), - (6, 577, 'not_attending', '2021-01-28 18:10:10', '2025-12-17 19:47:49', 'ndaRDaKm', '3439167'), - (6, 578, 'attending', '2021-02-01 16:18:05', '2025-12-17 19:47:50', 'ndaRDaKm', '3440043'), - (6, 579, 'attending', '2021-02-03 18:23:18', '2025-12-17 19:47:50', 'ndaRDaKm', '3440978'), - (6, 580, 'attending', '2021-01-30 00:16:46', '2025-12-17 19:47:50', 'ndaRDaKm', '3444240'), - (6, 581, 'not_attending', '2021-02-01 22:00:00', '2025-12-17 19:47:50', 'ndaRDaKm', '3445029'), - (6, 582, 'not_attending', '2021-02-01 22:00:06', '2025-12-17 19:47:50', 'ndaRDaKm', '3445769'), - (6, 598, 'not_attending', '2021-02-09 19:47:46', '2025-12-17 19:47:50', 'ndaRDaKm', '3468003'), - (6, 600, 'not_attending', '2021-02-06 03:25:00', '2025-12-17 19:47:50', 'ndaRDaKm', '3468125'), - (6, 602, 'attending', '2021-02-07 07:20:10', '2025-12-17 19:47:50', 'ndaRDaKm', '3470303'), - (6, 603, 'attending', '2021-02-07 07:20:14', '2025-12-17 19:47:50', 'ndaRDaKm', '3470304'), - (6, 604, 'attending', '2021-02-27 19:41:15', '2025-12-17 19:47:50', 'ndaRDaKm', '3470305'), - (6, 605, 'not_attending', '2021-02-14 18:53:28', '2025-12-17 19:47:50', 'ndaRDaKm', '3470991'), - (6, 606, 'not_attending', '2021-02-10 01:16:29', '2025-12-17 19:47:50', 'ndaRDaKm', '3470998'), - (6, 607, 'not_attending', '2021-02-15 20:56:58', '2025-12-17 19:47:50', 'ndaRDaKm', '3471882'), - (6, 616, 'attending', '2021-02-15 22:29:04', '2025-12-17 19:47:50', 'ndaRDaKm', '3493478'), - (6, 618, 'attending', '2021-02-19 22:35:58', '2025-12-17 19:47:50', 'ndaRDaKm', '3503991'), - (6, 621, 'attending', '2021-03-01 02:58:30', '2025-12-17 19:47:51', 'ndaRDaKm', '3517815'), - (6, 622, 'attending', '2021-03-01 02:58:31', '2025-12-17 19:47:51', 'ndaRDaKm', '3517816'), - (6, 623, 'not_attending', '2021-02-28 21:50:42', '2025-12-17 19:47:51', 'ndaRDaKm', '3523941'), - (6, 631, 'not_attending', '2021-03-07 10:18:36', '2025-12-17 19:47:51', 'ndaRDaKm', '3533850'), - (6, 638, 'not_attending', '2021-04-04 14:24:32', '2025-12-17 19:47:44', 'ndaRDaKm', '3536632'), - (6, 639, 'not_attending', '2021-03-21 17:59:26', '2025-12-17 19:47:51', 'ndaRDaKm', '3536656'), - (6, 641, 'attending', '2021-03-06 22:19:30', '2025-12-17 19:47:44', 'ndaRDaKm', '3539916'), - (6, 642, 'attending', '2021-03-06 22:19:32', '2025-12-17 19:47:44', 'ndaRDaKm', '3539917'), - (6, 643, 'attending', '2021-04-05 21:55:08', '2025-12-17 19:47:45', 'ndaRDaKm', '3539918'), - (6, 644, 'attending', '2021-04-05 21:55:12', '2025-12-17 19:47:45', 'ndaRDaKm', '3539919'), - (6, 645, 'attending', '2021-05-02 03:52:21', '2025-12-17 19:47:46', 'ndaRDaKm', '3539920'), - (6, 646, 'attending', '2021-05-15 19:21:56', '2025-12-17 19:47:46', 'ndaRDaKm', '3539921'), - (6, 647, 'attending', '2021-05-22 15:06:30', '2025-12-17 19:47:46', 'ndaRDaKm', '3539922'), - (6, 648, 'attending', '2021-05-25 17:06:36', '2025-12-17 19:47:47', 'ndaRDaKm', '3539923'), - (6, 649, 'attending', '2021-03-06 22:19:34', '2025-12-17 19:47:51', 'ndaRDaKm', '3539927'), - (6, 650, 'attending', '2021-03-27 16:01:28', '2025-12-17 19:47:44', 'ndaRDaKm', '3539928'), - (6, 651, 'not_attending', '2021-03-10 22:57:06', '2025-12-17 19:47:51', 'ndaRDaKm', '3541045'), - (6, 657, 'attending', '2021-04-17 21:11:28', '2025-12-17 19:47:45', 'ndaRDaKm', '3547132'), - (6, 658, 'attending', '2021-06-12 21:27:35', '2025-12-17 19:47:47', 'ndaRDaKm', '3547134'), - (6, 661, 'attending', '2021-04-03 19:39:47', '2025-12-17 19:47:44', 'ndaRDaKm', '3547137'), - (6, 662, 'attending', '2021-04-24 21:01:58', '2025-12-17 19:47:45', 'ndaRDaKm', '3547138'), - (6, 664, 'attending', '2021-09-03 04:09:24', '2025-12-17 19:47:43', 'ndaRDaKm', '3547142'), - (6, 667, 'attending', '2021-08-28 21:09:59', '2025-12-17 19:47:42', 'ndaRDaKm', '3547145'), - (6, 669, 'attending', '2021-06-26 18:01:15', '2025-12-17 19:47:38', 'ndaRDaKm', '3547147'), - (6, 672, 'attending', '2021-05-22 15:06:32', '2025-12-17 19:47:46', 'ndaRDaKm', '3547150'), - (6, 673, 'attending', '2021-07-03 20:34:29', '2025-12-17 19:47:38', 'ndaRDaKm', '3547151'), - (6, 674, 'maybe', '2021-08-06 04:50:06', '2025-12-17 19:47:41', 'ndaRDaKm', '3547152'), - (6, 676, 'attending', '2021-07-24 17:11:08', '2025-12-17 19:47:40', 'ndaRDaKm', '3547154'), - (6, 685, 'not_attending', '2021-04-12 14:58:31', '2025-12-17 19:47:44', 'ndaRDaKm', '3551564'), - (6, 687, 'not_attending', '2021-03-11 23:06:06', '2025-12-17 19:47:51', 'ndaRDaKm', '3553405'), - (6, 691, 'not_attending', '2021-04-19 00:00:25', '2025-12-17 19:47:45', 'ndaRDaKm', '3561928'), - (6, 698, 'attending', '2021-03-15 14:10:37', '2025-12-17 19:47:44', 'ndaRDaKm', '3571867'), - (6, 706, 'not_attending', '2021-04-17 21:11:55', '2025-12-17 19:47:45', 'ndaRDaKm', '3582734'), - (6, 707, 'not_attending', '2021-04-25 21:15:28', '2025-12-17 19:47:46', 'ndaRDaKm', '3583262'), - (6, 715, 'attending', '2021-03-31 21:37:33', '2025-12-17 19:47:44', 'ndaRDaKm', '3604146'), - (6, 717, 'attending', '2021-03-26 17:02:34', '2025-12-17 19:47:44', 'ndaRDaKm', '3619523'), - (6, 718, 'attending', '2021-03-27 21:14:06', '2025-12-17 19:47:44', 'ndaRDaKm', '3626844'), - (6, 719, 'maybe', '2021-04-08 21:16:15', '2025-12-17 19:47:44', 'ndaRDaKm', '3635405'), - (6, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ndaRDaKm', '3661369'), - (6, 725, 'attending', '2021-05-23 18:15:46', '2025-12-17 19:47:47', 'ndaRDaKm', '3661372'), - (6, 727, 'attending', '2021-06-08 01:05:35', '2025-12-17 19:47:38', 'ndaRDaKm', '3661377'), - (6, 728, 'attending', '2021-04-14 17:07:22', '2025-12-17 19:47:44', 'ndaRDaKm', '3668073'), - (6, 731, 'not_attending', '2021-04-07 20:21:46', '2025-12-17 19:47:44', 'ndaRDaKm', '3674262'), - (6, 732, 'attending', '2021-04-17 21:12:37', '2025-12-17 19:47:45', 'ndaRDaKm', '3674268'), - (6, 733, 'not_attending', '2021-04-04 14:24:44', '2025-12-17 19:47:44', 'ndaRDaKm', '3675473'), - (6, 734, 'attending', '2021-04-06 18:00:24', '2025-12-17 19:47:44', 'ndaRDaKm', '3676806'), - (6, 735, 'not_attending', '2021-04-05 00:36:14', '2025-12-17 19:47:46', 'ndaRDaKm', '3677402'), - (6, 736, 'not_attending', '2021-04-09 18:01:04', '2025-12-17 19:47:44', 'ndaRDaKm', '3677701'), - (6, 737, 'not_attending', '2021-04-06 22:24:05', '2025-12-17 19:47:44', 'ndaRDaKm', '3679349'), - (6, 752, 'attending', '2021-04-11 03:19:06', '2025-12-17 19:47:44', 'ndaRDaKm', '3699422'), - (6, 753, 'attending', '2021-04-14 17:07:42', '2025-12-17 19:47:45', 'ndaRDaKm', '3701861'), - (6, 762, 'not_attending', '2021-04-18 03:23:32', '2025-12-17 19:47:45', 'ndaRDaKm', '3719118'), - (6, 766, 'attending', '2021-05-12 04:35:13', '2025-12-17 19:47:46', 'ndaRDaKm', '3721383'), - (6, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndaRDaKm', '3730212'), - (6, 777, 'attending', '2021-04-30 19:54:51', '2025-12-17 19:47:46', 'ndaRDaKm', '3746248'), - (6, 785, 'not_attending', '2021-05-16 18:05:19', '2025-12-17 19:47:46', 'ndaRDaKm', '3779779'), - (6, 788, 'attending', '2021-05-07 22:31:06', '2025-12-17 19:47:46', 'ndaRDaKm', '3781975'), - (6, 789, 'attending', '2021-05-23 23:36:22', '2025-12-17 19:47:47', 'ndaRDaKm', '3785818'), - (6, 792, 'attending', '2021-05-19 23:17:24', '2025-12-17 19:47:46', 'ndaRDaKm', '3793156'), - (6, 793, 'attending', '2021-06-02 17:17:02', '2025-12-17 19:47:47', 'ndaRDaKm', '3793537'), - (6, 794, 'not_attending', '2021-05-25 17:06:24', '2025-12-17 19:47:47', 'ndaRDaKm', '3793538'), - (6, 805, 'attending', '2021-06-08 01:05:33', '2025-12-17 19:47:47', 'ndaRDaKm', '3804777'), - (6, 808, 'attending', '2021-05-20 23:05:20', '2025-12-17 19:47:46', 'ndaRDaKm', '3807358'), - (6, 823, 'attending', '2021-06-05 17:02:27', '2025-12-17 19:47:48', 'ndaRDaKm', '3974109'), - (6, 827, 'attending', '2021-06-05 17:01:41', '2025-12-17 19:47:47', 'ndaRDaKm', '3975311'), - (6, 828, 'attending', '2021-06-08 01:05:40', '2025-12-17 19:47:47', 'ndaRDaKm', '3975312'), - (6, 838, 'not_attending', '2021-06-09 23:31:24', '2025-12-17 19:47:47', 'ndaRDaKm', '3994992'), - (6, 844, 'attending', '2021-06-10 21:31:09', '2025-12-17 19:47:38', 'ndaRDaKm', '4014338'), - (6, 857, 'attending', '2021-11-24 03:50:50', '2025-12-17 19:47:37', 'ndaRDaKm', '4015731'), - (6, 866, 'not_attending', '2021-06-21 21:07:16', '2025-12-17 19:47:38', 'ndaRDaKm', '4020424'), - (6, 867, 'attending', '2021-06-25 21:12:16', '2025-12-17 19:47:38', 'ndaRDaKm', '4021848'), - (6, 869, 'attending', '2021-06-26 22:23:29', '2025-12-17 19:47:38', 'ndaRDaKm', '4136744'), - (6, 870, 'attending', '2021-06-30 21:42:19', '2025-12-17 19:47:39', 'ndaRDaKm', '4136937'), - (6, 871, 'attending', '2021-07-05 03:59:49', '2025-12-17 19:47:39', 'ndaRDaKm', '4136938'), - (6, 872, 'attending', '2021-07-21 22:19:28', '2025-12-17 19:47:40', 'ndaRDaKm', '4136947'), - (6, 874, 'attending', '2021-06-23 17:59:56', '2025-12-17 19:47:38', 'ndaRDaKm', '4139815'), - (6, 876, 'attending', '2021-06-22 22:42:57', '2025-12-17 19:47:38', 'ndaRDaKm', '4139926'), - (6, 879, 'attending', '2021-06-28 14:14:36', '2025-12-17 19:47:38', 'ndaRDaKm', '4147806'), - (6, 880, 'attending', '2021-06-19 14:22:50', '2025-12-17 19:47:48', 'ndaRDaKm', '4205383'), - (6, 882, 'not_attending', '2021-06-25 21:45:25', '2025-12-17 19:47:38', 'ndaRDaKm', '4207630'), - (6, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndaRDaKm', '4210314'), - (6, 887, 'attending', '2021-07-07 17:24:43', '2025-12-17 19:47:39', 'ndaRDaKm', '4225444'), - (6, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndaRDaKm', '4239259'), - (6, 900, 'attending', '2021-07-18 19:28:02', '2025-12-17 19:47:40', 'ndaRDaKm', '4240316'), - (6, 901, 'attending', '2021-07-22 16:42:24', '2025-12-17 19:47:40', 'ndaRDaKm', '4240317'), - (6, 902, 'maybe', '2021-08-05 13:01:22', '2025-12-17 19:47:41', 'ndaRDaKm', '4240318'), - (6, 903, 'not_attending', '2021-08-08 17:38:45', '2025-12-17 19:47:42', 'ndaRDaKm', '4240320'), - (6, 905, 'attending', '2021-07-04 15:32:44', '2025-12-17 19:47:39', 'ndaRDaKm', '4250163'), - (6, 909, 'not_attending', '2021-07-10 19:43:28', '2025-12-17 19:47:39', 'ndaRDaKm', '4258187'), - (6, 913, 'attending', '2021-07-12 01:39:51', '2025-12-17 19:47:39', 'ndaRDaKm', '4273765'), - (6, 914, 'attending', '2021-07-19 17:23:06', '2025-12-17 19:47:39', 'ndaRDaKm', '4273767'), - (6, 915, 'attending', '2021-07-19 17:23:02', '2025-12-17 19:47:39', 'ndaRDaKm', '4273770'), - (6, 916, 'attending', '2021-07-20 22:04:36', '2025-12-17 19:47:40', 'ndaRDaKm', '4273772'), - (6, 917, 'not_attending', '2021-07-14 19:28:31', '2025-12-17 19:47:39', 'ndaRDaKm', '4274481'), - (6, 919, 'attending', '2021-07-14 04:36:02', '2025-12-17 19:47:39', 'ndaRDaKm', '4275957'), - (6, 920, 'attending', '2021-07-17 20:40:13', '2025-12-17 19:47:40', 'ndaRDaKm', '4277819'), - (6, 925, 'not_attending', '2021-08-16 21:27:31', '2025-12-17 19:47:42', 'ndaRDaKm', '4297210'), - (6, 926, 'not_attending', '2021-08-18 18:04:15', '2025-12-17 19:47:42', 'ndaRDaKm', '4297211'), - (6, 929, 'not_attending', '2021-08-02 18:10:06', '2025-12-17 19:47:41', 'ndaRDaKm', '4297223'), - (6, 930, 'attending', '2021-08-08 13:49:56', '2025-12-17 19:47:41', 'ndaRDaKm', '4300787'), - (6, 931, 'attending', '2021-07-27 22:46:41', '2025-12-17 19:47:40', 'ndaRDaKm', '4301535'), - (6, 933, 'not_attending', '2021-07-28 23:20:03', '2025-12-17 19:47:40', 'ndaRDaKm', '4301723'), - (6, 934, 'attending', '2021-08-04 04:08:23', '2025-12-17 19:47:40', 'ndaRDaKm', '4302093'), - (6, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndaRDaKm', '4304151'), - (6, 937, 'not_attending', '2021-07-27 22:46:38', '2025-12-17 19:47:40', 'ndaRDaKm', '4306596'), - (6, 938, 'attending', '2021-07-25 23:51:03', '2025-12-17 19:47:40', 'ndaRDaKm', '4306597'), - (6, 940, 'not_attending', '2021-07-28 15:55:26', '2025-12-17 19:47:40', 'ndaRDaKm', '4309049'), - (6, 942, 'attending', '2021-07-27 22:48:37', '2025-12-17 19:47:40', 'ndaRDaKm', '4310297'), - (6, 952, 'attending', '2021-07-28 21:12:19', '2025-12-17 19:47:41', 'ndaRDaKm', '4318286'), - (6, 957, 'attending', '2021-08-05 13:01:34', '2025-12-17 19:47:41', 'ndaRDaKm', '4338834'), - (6, 958, 'attending', '2021-08-06 21:48:08', '2025-12-17 19:47:41', 'ndaRDaKm', '4342996'), - (6, 961, 'not_attending', '2021-08-08 17:38:53', '2025-12-17 19:47:42', 'ndaRDaKm', '4345519'), - (6, 962, 'attending', '2021-08-08 17:40:16', '2025-12-17 19:47:41', 'ndaRDaKm', '4346305'), - (6, 963, 'not_attending', '2021-08-16 22:47:52', '2025-12-17 19:47:42', 'ndaRDaKm', '4353159'), - (6, 967, 'attending', '2021-08-12 18:57:20', '2025-12-17 19:47:42', 'ndaRDaKm', '4356164'), - (6, 971, 'not_attending', '2021-09-08 23:07:29', '2025-12-17 19:47:43', 'ndaRDaKm', '4356801'), - (6, 972, 'attending', '2021-08-13 23:37:43', '2025-12-17 19:47:42', 'ndaRDaKm', '4358025'), - (6, 973, 'maybe', '2021-08-21 17:42:35', '2025-12-17 19:47:42', 'ndaRDaKm', '4366186'), - (6, 974, 'attending', '2021-08-23 15:40:23', '2025-12-17 19:47:42', 'ndaRDaKm', '4366187'), - (6, 977, 'attending', '2021-08-19 16:08:29', '2025-12-17 19:47:42', 'ndaRDaKm', '4378479'), - (6, 978, 'not_attending', '2021-08-21 21:52:47', '2025-12-17 19:47:42', 'ndaRDaKm', '4378509'), - (6, 987, 'not_attending', '2021-09-01 16:54:30', '2025-12-17 19:47:43', 'ndaRDaKm', '4402634'), - (6, 988, 'attending', '2021-08-26 13:57:48', '2025-12-17 19:47:42', 'ndaRDaKm', '4402823'), - (6, 990, 'not_attending', '2021-08-30 23:48:22', '2025-12-17 19:47:43', 'ndaRDaKm', '4420735'), - (6, 991, 'attending', '2021-08-28 22:27:11', '2025-12-17 19:47:43', 'ndaRDaKm', '4420738'), - (6, 992, 'attending', '2021-08-28 22:28:44', '2025-12-17 19:47:33', 'ndaRDaKm', '4420739'), - (6, 993, 'attending', '2021-08-28 22:28:46', '2025-12-17 19:47:34', 'ndaRDaKm', '4420741'), - (6, 994, 'attending', '2021-09-28 22:55:16', '2025-12-17 19:47:34', 'ndaRDaKm', '4420742'), - (6, 995, 'not_attending', '2021-08-31 15:41:27', '2025-12-17 19:47:34', 'ndaRDaKm', '4420744'), - (6, 996, 'not_attending', '2021-10-16 04:45:47', '2025-12-17 19:47:35', 'ndaRDaKm', '4420747'), - (6, 997, 'not_attending', '2021-10-16 15:05:11', '2025-12-17 19:47:35', 'ndaRDaKm', '4420748'), - (6, 998, 'attending', '2021-08-28 22:28:53', '2025-12-17 19:47:36', 'ndaRDaKm', '4420749'), - (6, 999, 'attending', '2021-08-29 03:07:44', '2025-12-17 19:47:43', 'ndaRDaKm', '4421150'), - (6, 1016, 'attending', '2021-09-04 17:37:29', '2025-12-17 19:47:43', 'ndaRDaKm', '4441271'), - (6, 1021, 'not_attending', '2021-09-20 21:16:57', '2025-12-17 19:47:34', 'ndaRDaKm', '4451803'), - (6, 1022, 'attending', '2021-09-13 02:18:20', '2025-12-17 19:47:43', 'ndaRDaKm', '4458628'), - (6, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndaRDaKm', '4461883'), - (6, 1026, 'not_attending', '2021-09-13 02:30:47', '2025-12-17 19:47:43', 'ndaRDaKm', '4472951'), - (6, 1032, 'attending', '2021-09-13 04:07:54', '2025-12-17 19:47:34', 'ndaRDaKm', '4473825'), - (6, 1033, 'attending', '2021-09-16 15:50:07', '2025-12-17 19:47:43', 'ndaRDaKm', '4486006'), - (6, 1036, 'not_attending', '2021-09-22 22:45:26', '2025-12-17 19:47:34', 'ndaRDaKm', '4493166'), - (6, 1041, 'attending', '2021-12-02 16:22:45', '2025-12-17 19:47:37', 'ndaRDaKm', '4496606'), - (6, 1042, 'attending', '2021-11-25 21:27:26', '2025-12-17 19:47:37', 'ndaRDaKm', '4496607'), - (6, 1043, 'not_attending', '2021-10-18 23:15:49', '2025-12-17 19:47:35', 'ndaRDaKm', '4496608'), - (6, 1045, 'attending', '2021-10-18 23:15:55', '2025-12-17 19:47:36', 'ndaRDaKm', '4496610'), - (6, 1046, 'not_attending', '2021-10-16 04:45:36', '2025-12-17 19:47:35', 'ndaRDaKm', '4496611'), - (6, 1049, 'attending', '2022-01-21 22:58:25', '2025-12-17 19:47:32', 'ndaRDaKm', '4496614'), - (6, 1051, 'attending', '2022-01-30 02:37:14', '2025-12-17 19:47:32', 'ndaRDaKm', '4496616'), - (6, 1053, 'attending', '2022-02-13 17:29:24', '2025-12-17 19:47:32', 'ndaRDaKm', '4496618'), - (6, 1055, 'attending', '2022-01-01 03:38:52', '2025-12-17 19:47:31', 'ndaRDaKm', '4496621'), - (6, 1058, 'attending', '2022-02-26 23:58:47', '2025-12-17 19:47:33', 'ndaRDaKm', '4496625'), - (6, 1059, 'attending', '2022-03-12 22:04:02', '2025-12-17 19:47:33', 'ndaRDaKm', '4496626'), - (6, 1060, 'maybe', '2022-03-24 16:23:30', '2025-12-17 19:47:25', 'ndaRDaKm', '4496627'), - (6, 1061, 'attending', '2022-02-09 02:29:16', '2025-12-17 19:47:32', 'ndaRDaKm', '4496628'), - (6, 1062, 'attending', '2022-03-05 22:21:18', '2025-12-17 19:47:33', 'ndaRDaKm', '4496629'), - (6, 1063, 'attending', '2021-09-20 18:39:28', '2025-12-17 19:47:34', 'ndaRDaKm', '4496630'), - (6, 1064, 'not_attending', '2021-09-21 03:37:56', '2025-12-17 19:47:34', 'ndaRDaKm', '4499526'), - (6, 1066, 'attending', '2021-09-21 17:11:14', '2025-12-17 19:47:34', 'ndaRDaKm', '4506039'), - (6, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndaRDaKm', '4508342'), - (6, 1068, 'maybe', '2021-09-30 13:39:26', '2025-12-17 19:47:34', 'ndaRDaKm', '4511471'), - (6, 1072, 'maybe', '2021-10-04 01:19:47', '2025-12-17 19:47:34', 'ndaRDaKm', '4516287'), - (6, 1074, 'maybe', '2021-09-29 00:42:52', '2025-12-17 19:47:34', 'ndaRDaKm', '4528953'), - (6, 1075, 'attending', '2021-10-02 20:03:50', '2025-12-17 19:47:34', 'ndaRDaKm', '4536351'), - (6, 1077, 'not_attending', '2021-10-12 14:14:01', '2025-12-17 19:47:34', 'ndaRDaKm', '4540903'), - (6, 1079, 'not_attending', '2021-10-20 21:25:35', '2025-12-17 19:47:35', 'ndaRDaKm', '4563823'), - (6, 1082, 'maybe', '2021-10-12 14:07:35', '2025-12-17 19:47:35', 'ndaRDaKm', '4566762'), - (6, 1086, 'not_attending', '2021-10-14 06:57:15', '2025-12-17 19:47:35', 'ndaRDaKm', '4568602'), - (6, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndaRDaKm', '4572153'), - (6, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ndaRDaKm', '4585962'), - (6, 1094, 'attending', '2021-10-31 18:33:32', '2025-12-17 19:47:36', 'ndaRDaKm', '4587337'), - (6, 1095, 'not_attending', '2021-10-28 03:35:22', '2025-12-17 19:47:36', 'ndaRDaKm', '4596356'), - (6, 1097, 'not_attending', '2021-11-02 03:50:01', '2025-12-17 19:47:36', 'ndaRDaKm', '4598860'), - (6, 1098, 'maybe', '2021-11-09 00:03:43', '2025-12-17 19:47:36', 'ndaRDaKm', '4598861'), - (6, 1099, 'not_attending', '2021-11-06 22:45:32', '2025-12-17 19:47:36', 'ndaRDaKm', '4602797'), - (6, 1108, 'attending', '2021-11-17 19:59:18', '2025-12-17 19:47:37', 'ndaRDaKm', '4632276'), - (6, 1114, 'attending', '2021-11-12 00:55:17', '2025-12-17 19:47:36', 'ndaRDaKm', '4637896'), - (6, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndaRDaKm', '4642994'), - (6, 1117, 'attending', '2021-12-08 23:01:00', '2025-12-17 19:47:37', 'ndaRDaKm', '4642995'), - (6, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ndaRDaKm', '4642996'), - (6, 1119, 'maybe', '2022-01-01 03:43:40', '2025-12-17 19:47:31', 'ndaRDaKm', '4642997'), - (6, 1126, 'attending', '2021-12-11 22:51:13', '2025-12-17 19:47:38', 'ndaRDaKm', '4645687'), - (6, 1127, 'not_attending', '2021-12-12 15:09:36', '2025-12-17 19:47:38', 'ndaRDaKm', '4645698'), - (6, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndaRDaKm', '4645704'), - (6, 1129, 'attending', '2021-11-27 23:46:03', '2025-12-17 19:47:37', 'ndaRDaKm', '4645705'), - (6, 1130, 'attending', '2021-12-02 16:22:41', '2025-12-17 19:47:37', 'ndaRDaKm', '4658824'), - (6, 1131, 'attending', '2021-12-18 23:16:48', '2025-12-17 19:47:31', 'ndaRDaKm', '4658825'), - (6, 1134, 'attending', '2021-11-24 07:01:52', '2025-12-17 19:47:37', 'ndaRDaKm', '4668385'), - (6, 1135, 'not_attending', '2021-11-26 21:43:52', '2025-12-17 19:47:37', 'ndaRDaKm', '4670469'), - (6, 1143, 'attending', '2021-12-02 00:52:42', '2025-12-17 19:47:37', 'ndaRDaKm', '4683667'), - (6, 1149, 'not_attending', '2021-12-09 20:24:55', '2025-12-17 19:47:38', 'ndaRDaKm', '4694407'), - (6, 1151, 'attending', '2021-12-28 05:08:31', '2025-12-17 19:47:31', 'ndaRDaKm', '4708704'), - (6, 1152, 'attending', '2022-01-06 20:55:06', '2025-12-17 19:47:31', 'ndaRDaKm', '4708705'), - (6, 1153, 'maybe', '2022-01-19 23:00:29', '2025-12-17 19:47:32', 'ndaRDaKm', '4708707'), - (6, 1155, 'attending', '2021-12-20 23:32:18', '2025-12-17 19:47:31', 'ndaRDaKm', '4715119'), - (6, 1163, 'attending', '2021-12-28 05:08:48', '2025-12-17 19:47:31', 'ndaRDaKm', '4724206'), - (6, 1164, 'attending', '2021-12-27 23:24:29', '2025-12-17 19:47:31', 'ndaRDaKm', '4724208'), - (6, 1165, 'attending', '2021-12-27 23:24:30', '2025-12-17 19:47:31', 'ndaRDaKm', '4724210'), - (6, 1173, 'attending', '2022-01-08 22:52:14', '2025-12-17 19:47:31', 'ndaRDaKm', '4736495'), - (6, 1174, 'not_attending', '2022-01-11 21:20:30', '2025-12-17 19:47:31', 'ndaRDaKm', '4736496'), - (6, 1175, 'attending', '2022-01-22 22:51:16', '2025-12-17 19:47:32', 'ndaRDaKm', '4736497'), - (6, 1176, 'attending', '2022-01-06 20:54:55', '2025-12-17 19:47:32', 'ndaRDaKm', '4736498'), - (6, 1177, 'attending', '2022-02-09 02:29:13', '2025-12-17 19:47:32', 'ndaRDaKm', '4736499'), - (6, 1178, 'not_attending', '2022-01-30 00:29:34', '2025-12-17 19:47:32', 'ndaRDaKm', '4736500'), - (6, 1179, 'attending', '2022-02-13 17:29:22', '2025-12-17 19:47:32', 'ndaRDaKm', '4736501'), - (6, 1180, 'attending', '2022-02-26 22:16:31', '2025-12-17 19:47:33', 'ndaRDaKm', '4736502'), - (6, 1181, 'attending', '2022-03-05 22:21:16', '2025-12-17 19:47:33', 'ndaRDaKm', '4736503'), - (6, 1182, 'attending', '2022-03-12 22:04:00', '2025-12-17 19:47:33', 'ndaRDaKm', '4736504'), - (6, 1184, 'attending', '2022-01-06 04:18:36', '2025-12-17 19:47:31', 'ndaRDaKm', '4742350'), - (6, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndaRDaKm', '4746789'), - (6, 1188, 'maybe', '2022-01-16 20:18:40', '2025-12-17 19:47:32', 'ndaRDaKm', '4753929'), - (6, 1222, 'not_attending', '2022-02-17 00:45:14', '2025-12-17 19:47:32', 'ndaRDaKm', '5015628'), - (6, 1224, 'attending', '2022-01-30 20:35:33', '2025-12-17 19:47:32', 'ndaRDaKm', '5016682'), - (6, 1228, 'maybe', '2022-02-08 00:11:39', '2025-12-17 19:47:32', 'ndaRDaKm', '5028238'), - (6, 1232, 'not_attending', '2022-02-09 02:28:54', '2025-12-17 19:47:32', 'ndaRDaKm', '5038850'), - (6, 1236, 'attending', '2022-02-14 08:46:13', '2025-12-17 19:47:32', 'ndaRDaKm', '5045826'), - (6, 1237, 'attending', '2022-02-15 20:33:30', '2025-12-17 19:47:32', 'ndaRDaKm', '5050641'), - (6, 1238, 'not_attending', '2022-02-21 01:44:29', '2025-12-17 19:47:32', 'ndaRDaKm', '5052236'), - (6, 1239, 'not_attending', '2022-03-02 22:02:19', '2025-12-17 19:47:33', 'ndaRDaKm', '5052238'), - (6, 1242, 'maybe', '2022-03-29 23:52:01', '2025-12-17 19:47:25', 'ndaRDaKm', '5052241'), - (6, 1250, 'attending', '2022-02-27 00:08:19', '2025-12-17 19:47:33', 'ndaRDaKm', '5069735'), - (6, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndaRDaKm', '5132533'), - (6, 1260, 'attending', '2022-03-01 20:17:27', '2025-12-17 19:47:33', 'ndaRDaKm', '5142082'), - (6, 1264, 'not_attending', '2022-03-22 15:46:25', '2025-12-17 19:47:25', 'ndaRDaKm', '5160281'), - (6, 1265, 'not_attending', '2022-03-12 03:27:45', '2025-12-17 19:47:33', 'ndaRDaKm', '5160862'), - (6, 1272, 'not_attending', '2022-03-15 20:47:25', '2025-12-17 19:47:25', 'ndaRDaKm', '5186582'), - (6, 1273, 'maybe', '2022-03-24 16:23:28', '2025-12-17 19:47:25', 'ndaRDaKm', '5186583'), - (6, 1274, 'not_attending', '2022-03-15 20:49:04', '2025-12-17 19:47:26', 'ndaRDaKm', '5186585'), - (6, 1280, 'not_attending', '2022-03-18 00:36:29', '2025-12-17 19:47:25', 'ndaRDaKm', '5189749'), - (6, 1281, 'maybe', '2022-04-08 18:25:24', '2025-12-17 19:47:27', 'ndaRDaKm', '5190437'), - (6, 1284, 'attending', '2022-04-16 19:28:49', '2025-12-17 19:47:27', 'ndaRDaKm', '5195095'), - (6, 1291, 'not_attending', '2022-03-25 22:03:45', '2025-12-17 19:47:25', 'ndaRDaKm', '5200458'), - (6, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndaRDaKm', '5215989'), - (6, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ndaRDaKm', '5223686'), - (6, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ndaRDaKm', '5227432'), - (6, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'ndaRDaKm', '5231461'), - (6, 1315, 'attending', '2022-04-10 20:46:15', '2025-12-17 19:47:27', 'ndaRDaKm', '5237522'), - (6, 1345, 'attending', '2022-04-23 20:30:43', '2025-12-17 19:47:27', 'ndaRDaKm', '5247466'), - (6, 1346, 'attending', '2022-04-21 19:01:29', '2025-12-17 19:47:27', 'ndaRDaKm', '5247467'), - (6, 1362, 'maybe', '2022-04-25 19:12:07', '2025-12-17 19:47:28', 'ndaRDaKm', '5260800'), - (6, 1372, 'attending', '2022-05-04 22:31:08', '2025-12-17 19:47:28', 'ndaRDaKm', '5264352'), - (6, 1374, 'attending', '2022-05-02 01:58:33', '2025-12-17 19:47:28', 'ndaRDaKm', '5269930'), - (6, 1378, 'attending', '2022-05-02 02:27:30', '2025-12-17 19:47:28', 'ndaRDaKm', '5271448'), - (6, 1379, 'attending', '2022-05-06 17:04:51', '2025-12-17 19:47:29', 'ndaRDaKm', '5271449'), - (6, 1380, 'not_attending', '2022-05-22 23:45:34', '2025-12-17 19:47:30', 'ndaRDaKm', '5271450'), - (6, 1383, 'attending', '2022-05-13 22:07:11', '2025-12-17 19:47:28', 'ndaRDaKm', '5276469'), - (6, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ndaRDaKm', '5278159'), - (6, 1401, 'maybe', '2022-05-18 22:07:37', '2025-12-17 19:47:29', 'ndaRDaKm', '5286295'), - (6, 1403, 'attending', '2022-05-12 18:00:09', '2025-12-17 19:47:29', 'ndaRDaKm', '5288052'), - (6, 1407, 'attending', '2022-05-25 21:10:08', '2025-12-17 19:47:30', 'ndaRDaKm', '5363695'), - (6, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ndaRDaKm', '5365960'), - (6, 1410, 'not_attending', '2022-05-17 02:30:18', '2025-12-17 19:47:29', 'ndaRDaKm', '5367530'), - (6, 1411, 'not_attending', '2022-05-19 22:13:05', '2025-12-17 19:47:29', 'ndaRDaKm', '5367531'), - (6, 1412, 'attending', '2022-05-17 02:23:11', '2025-12-17 19:47:29', 'ndaRDaKm', '5367532'), - (6, 1413, 'not_attending', '2022-05-20 20:46:21', '2025-12-17 19:47:29', 'ndaRDaKm', '5367533'), - (6, 1414, 'maybe', '2022-05-21 01:09:21', '2025-12-17 19:47:29', 'ndaRDaKm', '5368445'), - (6, 1415, 'attending', '2022-05-25 21:10:04', '2025-12-17 19:47:30', 'ndaRDaKm', '5368973'), - (6, 1419, 'maybe', '2022-06-08 18:38:34', '2025-12-17 19:47:30', 'ndaRDaKm', '5373081'), - (6, 1427, 'maybe', '2022-05-25 22:29:33', '2025-12-17 19:47:30', 'ndaRDaKm', '5376074'), - (6, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ndaRDaKm', '5378247'), - (6, 1431, 'attending', '2022-06-03 03:43:21', '2025-12-17 19:47:30', 'ndaRDaKm', '5389605'), - (6, 1442, 'attending', '2022-06-03 03:43:18', '2025-12-17 19:47:17', 'ndaRDaKm', '5397265'), - (6, 1444, 'attending', '2022-06-11 19:45:15', '2025-12-17 19:47:30', 'ndaRDaKm', '5397614'), - (6, 1445, 'attending', '2022-06-18 18:54:37', '2025-12-17 19:47:17', 'ndaRDaKm', '5397615'), - (6, 1451, 'attending', '2022-06-10 03:02:54', '2025-12-17 19:47:17', 'ndaRDaKm', '5403967'), - (6, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ndaRDaKm', '5404786'), - (6, 1460, 'attending', '2022-06-13 15:15:57', '2025-12-17 19:47:31', 'ndaRDaKm', '5404817'), - (6, 1462, 'not_attending', '2022-06-10 21:54:05', '2025-12-17 19:47:17', 'ndaRDaKm', '5405203'), - (6, 1466, 'attending', '2022-06-12 21:31:31', '2025-12-17 19:47:17', 'ndaRDaKm', '5406427'), - (6, 1477, 'attending', '2022-06-15 17:39:42', '2025-12-17 19:47:17', 'ndaRDaKm', '5408766'), - (6, 1478, 'not_attending', '2022-06-15 18:07:12', '2025-12-17 19:47:19', 'ndaRDaKm', '5408794'), - (6, 1480, 'attending', '2022-06-26 21:38:48', '2025-12-17 19:47:19', 'ndaRDaKm', '5411699'), - (6, 1481, 'attending', '2022-06-18 22:18:05', '2025-12-17 19:47:17', 'ndaRDaKm', '5412237'), - (6, 1482, 'not_attending', '2022-06-20 02:30:50', '2025-12-17 19:47:19', 'ndaRDaKm', '5412550'), - (6, 1484, 'maybe', '2022-06-21 00:50:51', '2025-12-17 19:47:17', 'ndaRDaKm', '5415046'), - (6, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ndaRDaKm', '5422086'), - (6, 1498, 'not_attending', '2022-07-03 00:19:58', '2025-12-17 19:47:19', 'ndaRDaKm', '5422406'), - (6, 1502, 'not_attending', '2022-07-09 00:06:55', '2025-12-17 19:47:19', 'ndaRDaKm', '5424565'), - (6, 1504, 'attending', '2022-07-09 03:11:57', '2025-12-17 19:47:19', 'ndaRDaKm', '5426882'), - (6, 1505, 'not_attending', '2022-07-05 04:08:55', '2025-12-17 19:47:19', 'ndaRDaKm', '5427083'), - (6, 1508, 'maybe', '2022-07-13 06:10:41', '2025-12-17 19:47:19', 'ndaRDaKm', '5433453'), - (6, 1511, 'attending', '2022-07-09 18:47:51', '2025-12-17 19:47:19', 'ndaRDaKm', '5437733'), - (6, 1513, 'attending', '2022-07-09 18:47:44', '2025-12-17 19:47:19', 'ndaRDaKm', '5441125'), - (6, 1514, 'not_attending', '2022-07-09 18:55:51', '2025-12-17 19:47:20', 'ndaRDaKm', '5441126'), - (6, 1515, 'attending', '2022-07-09 18:55:55', '2025-12-17 19:47:21', 'ndaRDaKm', '5441128'), - (6, 1516, 'attending', '2022-08-19 19:58:03', '2025-12-17 19:47:23', 'ndaRDaKm', '5441129'), - (6, 1517, 'attending', '2022-08-27 21:02:42', '2025-12-17 19:47:23', 'ndaRDaKm', '5441130'), - (6, 1518, 'not_attending', '2022-08-27 03:09:15', '2025-12-17 19:47:24', 'ndaRDaKm', '5441131'), - (6, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ndaRDaKm', '5441132'), - (6, 1528, 'attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ndaRDaKm', '5446643'), - (6, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ndaRDaKm', '5453325'), - (6, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ndaRDaKm', '5454516'), - (6, 1544, 'maybe', '2022-09-15 00:33:14', '2025-12-17 19:47:11', 'ndaRDaKm', '5454517'), - (6, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ndaRDaKm', '5454605'), - (6, 1550, 'attending', '2022-07-19 20:17:50', '2025-12-17 19:47:20', 'ndaRDaKm', '5454803'), - (6, 1551, 'attending', '2022-07-19 21:18:30', '2025-12-17 19:47:20', 'ndaRDaKm', '5455037'), - (6, 1561, 'attending', '2022-08-01 20:37:36', '2025-12-17 19:47:22', 'ndaRDaKm', '5461278'), - (6, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ndaRDaKm', '5469480'), - (6, 1565, 'attending', '2022-07-26 02:25:05', '2025-12-17 19:47:21', 'ndaRDaKm', '5471073'), - (6, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ndaRDaKm', '5474663'), - (6, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ndaRDaKm', '5482022'), - (6, 1575, 'maybe', '2022-08-05 04:43:43', '2025-12-17 19:47:23', 'ndaRDaKm', '5482250'), - (6, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ndaRDaKm', '5482793'), - (6, 1578, 'attending', '2022-08-04 02:55:38', '2025-12-17 19:47:21', 'ndaRDaKm', '5483073'), - (6, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ndaRDaKm', '5488912'), - (6, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ndaRDaKm', '5492192'), - (6, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ndaRDaKm', '5493139'), - (6, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ndaRDaKm', '5493200'), - (6, 1593, 'maybe', '2022-08-13 02:38:50', '2025-12-17 19:47:22', 'ndaRDaKm', '5494043'), - (6, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ndaRDaKm', '5502188'), - (6, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndaRDaKm', '5505059'), - (6, 1615, 'maybe', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ndaRDaKm', '5509055'), - (6, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndaRDaKm', '5512862'), - (6, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndaRDaKm', '5513985'), - (6, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ndaRDaKm', '5519981'), - (6, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndaRDaKm', '5522550'), - (6, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndaRDaKm', '5534683'), - (6, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ndaRDaKm', '5537735'), - (6, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndaRDaKm', '5540859'), - (6, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndaRDaKm', '5546619'), - (6, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ndaRDaKm', '5555245'), - (6, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndaRDaKm', '5557747'), - (6, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndaRDaKm', '5560255'), - (6, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndaRDaKm', '5562906'), - (6, 1667, 'attending', '2022-09-24 16:02:41', '2025-12-17 19:47:11', 'ndaRDaKm', '5563221'), - (6, 1668, 'not_attending', '2022-10-01 07:45:46', '2025-12-17 19:47:12', 'ndaRDaKm', '5563222'), - (6, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndaRDaKm', '5600604'), - (6, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndaRDaKm', '5605544'), - (6, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'ndaRDaKm', '5606737'), - (6, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ndaRDaKm', '5630960'), - (6, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndaRDaKm', '5630961'), - (6, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndaRDaKm', '5630962'), - (6, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndaRDaKm', '5630966'), - (6, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ndaRDaKm', '5630967'), - (6, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndaRDaKm', '5630968'), - (6, 1727, 'not_attending', '2022-11-28 23:18:52', '2025-12-17 19:47:16', 'ndaRDaKm', '5630969'), - (6, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndaRDaKm', '5635406'), - (6, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndaRDaKm', '5638765'), - (6, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndaRDaKm', '5640097'), - (6, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ndaRDaKm', '5640843'), - (6, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndaRDaKm', '5641521'), - (6, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ndaRDaKm', '5642818'), - (6, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndaRDaKm', '5652395'), - (6, 1762, 'attending', '2022-10-24 02:32:17', '2025-12-17 19:47:16', 'ndaRDaKm', '5670445'), - (6, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndaRDaKm', '5671637'), - (6, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndaRDaKm', '5672329'), - (6, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndaRDaKm', '5674057'), - (6, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndaRDaKm', '5674060'), - (6, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndaRDaKm', '5677461'), - (6, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndaRDaKm', '5698046'), - (6, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ndaRDaKm', '5699760'), - (6, 1790, 'not_attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'ndaRDaKm', '5727424'), - (6, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndaRDaKm', '5741601'), - (6, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndaRDaKm', '5763458'), - (6, 1799, 'attending', '2022-11-26 23:56:54', '2025-12-17 19:47:16', 'ndaRDaKm', '5764666'), - (6, 1804, 'attending', '2023-01-24 22:39:59', '2025-12-17 19:47:06', 'ndaRDaKm', '5764674'), - (6, 1805, 'attending', '2023-01-31 18:59:56', '2025-12-17 19:47:06', 'ndaRDaKm', '5764675'), - (6, 1806, 'not_attending', '2023-01-13 01:26:39', '2025-12-17 19:47:05', 'ndaRDaKm', '5764676'), - (6, 1807, 'attending', '2023-01-13 08:40:19', '2025-12-17 19:47:05', 'ndaRDaKm', '5764677'), - (6, 1814, 'attending', '2023-02-14 22:45:28', '2025-12-17 19:47:08', 'ndaRDaKm', '5764684'), - (6, 1817, 'maybe', '2023-02-21 22:24:47', '2025-12-17 19:46:57', 'ndaRDaKm', '5764687'), - (6, 1820, 'attending', '2023-04-08 01:18:25', '2025-12-17 19:46:58', 'ndaRDaKm', '5764690'), - (6, 1821, 'not_attending', '2023-02-21 22:24:56', '2025-12-17 19:46:56', 'ndaRDaKm', '5764691'), - (6, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndaRDaKm', '5774172'), - (6, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ndaRDaKm', '5818247'), - (6, 1834, 'not_attending', '2022-12-10 02:15:11', '2025-12-17 19:47:17', 'ndaRDaKm', '5819470'), - (6, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndaRDaKm', '5819471'), - (6, 1841, 'attending', '2023-01-06 11:28:21', '2025-12-17 19:47:05', 'ndaRDaKm', '5827665'), - (6, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndaRDaKm', '5827739'), - (6, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndaRDaKm', '5844306'), - (6, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndaRDaKm', '5850159'), - (6, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndaRDaKm', '5858999'), - (6, 1851, 'attending', '2023-01-08 22:20:14', '2025-12-17 19:47:05', 'ndaRDaKm', '5869316'), - (6, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndaRDaKm', '5871984'), - (6, 1859, 'not_attending', '2023-01-13 01:26:47', '2025-12-17 19:47:05', 'ndaRDaKm', '5876234'), - (6, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndaRDaKm', '5876354'), - (6, 1864, 'not_attending', '2023-01-16 18:53:06', '2025-12-17 19:47:05', 'ndaRDaKm', '5879675'), - (6, 1865, 'attending', '2023-01-24 22:39:55', '2025-12-17 19:47:06', 'ndaRDaKm', '5879676'), - (6, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndaRDaKm', '5880939'), - (6, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ndaRDaKm', '5880940'), - (6, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndaRDaKm', '5880942'), - (6, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndaRDaKm', '5880943'), - (6, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndaRDaKm', '5887890'), - (6, 1875, 'maybe', '2023-01-24 22:39:46', '2025-12-17 19:47:06', 'ndaRDaKm', '5887908'), - (6, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndaRDaKm', '5888598'), - (6, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndaRDaKm', '5893260'), - (6, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndaRDaKm', '5899826'), - (6, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndaRDaKm', '5900199'), - (6, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ndaRDaKm', '5900200'), - (6, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndaRDaKm', '5900202'), - (6, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndaRDaKm', '5900203'), - (6, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndaRDaKm', '5901108'), - (6, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndaRDaKm', '5901126'), - (6, 1897, 'attending', '2023-02-06 17:18:45', '2025-12-17 19:47:07', 'ndaRDaKm', '5901128'), - (6, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndaRDaKm', '5909655'), - (6, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndaRDaKm', '5910522'), - (6, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndaRDaKm', '5910526'), - (6, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndaRDaKm', '5910528'), - (6, 1922, 'not_attending', '2023-02-14 22:45:24', '2025-12-17 19:47:07', 'ndaRDaKm', '5916219'), - (6, 1924, 'attending', '2023-02-16 17:39:14', '2025-12-17 19:47:07', 'ndaRDaKm', '5931095'), - (6, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndaRDaKm', '5936234'), - (6, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndaRDaKm', '5958351'), - (6, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndaRDaKm', '5959751'), - (6, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndaRDaKm', '5959755'), - (6, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndaRDaKm', '5960055'), - (6, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndaRDaKm', '5961684'), - (6, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndaRDaKm', '5962132'), - (6, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'ndaRDaKm', '5962133'), - (6, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndaRDaKm', '5962134'), - (6, 1947, 'not_attending', '2023-02-26 00:00:13', '2025-12-17 19:47:09', 'ndaRDaKm', '5962233'), - (6, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndaRDaKm', '5962317'), - (6, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndaRDaKm', '5962318'), - (6, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndaRDaKm', '5965933'), - (6, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndaRDaKm', '5967014'), - (6, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'ndaRDaKm', '5972763'), - (6, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndaRDaKm', '5972815'), - (6, 1959, 'attending', '2023-03-07 06:30:13', '2025-12-17 19:46:57', 'ndaRDaKm', '5972829'), - (6, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndaRDaKm', '5974016'), - (6, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndaRDaKm', '5981515'), - (6, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndaRDaKm', '5993516'), - (6, 1972, 'attending', '2023-03-19 06:27:03', '2025-12-17 19:46:56', 'ndaRDaKm', '5993776'), - (6, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndaRDaKm', '5998939'), - (6, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndaRDaKm', '6028191'), - (6, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndaRDaKm', '6040066'), - (6, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndaRDaKm', '6042717'), - (6, 1985, 'attending', '2023-03-26 21:28:30', '2025-12-17 19:46:57', 'ndaRDaKm', '6043041'), - (6, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndaRDaKm', '6044838'), - (6, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndaRDaKm', '6044839'), - (6, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaRDaKm', '6045684'), - (6, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndaRDaKm', '6050104'), - (6, 1996, 'attending', '2023-04-03 02:17:03', '2025-12-17 19:46:58', 'ndaRDaKm', '6050667'), - (6, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndaRDaKm', '6053195'), - (6, 2006, 'attending', '2023-04-08 21:51:08', '2025-12-17 19:46:59', 'ndaRDaKm', '6053198'), - (6, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndaRDaKm', '6056085'), - (6, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndaRDaKm', '6056916'), - (6, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndaRDaKm', '6059290'), - (6, 2013, 'maybe', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndaRDaKm', '6060328'), - (6, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndaRDaKm', '6061037'), - (6, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndaRDaKm', '6061039'), - (6, 2017, 'not_attending', '2023-04-11 23:17:51', '2025-12-17 19:46:59', 'ndaRDaKm', '6061099'), - (6, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndaRDaKm', '6067245'), - (6, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndaRDaKm', '6068094'), - (6, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndaRDaKm', '6068252'), - (6, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndaRDaKm', '6068253'), - (6, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndaRDaKm', '6068254'), - (6, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'ndaRDaKm', '6068280'), - (6, 2032, 'attending', '2023-05-31 03:40:29', '2025-12-17 19:47:04', 'ndaRDaKm', '6068281'), - (6, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndaRDaKm', '6069093'), - (6, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndaRDaKm', '6072528'), - (6, 2043, 'attending', '2023-04-25 23:33:46', '2025-12-17 19:47:01', 'ndaRDaKm', '6073023'), - (6, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'ndaRDaKm', '6075556'), - (6, 2046, 'not_attending', '2023-05-06 01:36:27', '2025-12-17 19:47:02', 'ndaRDaKm', '6076020'), - (6, 2047, 'attending', '2023-05-07 22:16:22', '2025-12-17 19:47:02', 'ndaRDaKm', '6076027'), - (6, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndaRDaKm', '6079840'), - (6, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndaRDaKm', '6083398'), - (6, 2052, 'attending', '2023-05-05 22:29:06', '2025-12-17 19:47:02', 'ndaRDaKm', '6088220'), - (6, 2053, 'attending', '2023-05-06 05:08:13', '2025-12-17 19:47:02', 'ndaRDaKm', '6092644'), - (6, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndaRDaKm', '6093504'), - (6, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndaRDaKm', '6097414'), - (6, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndaRDaKm', '6097442'), - (6, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndaRDaKm', '6097684'), - (6, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndaRDaKm', '6098762'), - (6, 2064, 'attending', '2023-06-03 09:55:47', '2025-12-17 19:46:50', 'ndaRDaKm', '6099988'), - (6, 2065, 'attending', '2023-05-18 23:18:19', '2025-12-17 19:46:49', 'ndaRDaKm', '6101169'), - (6, 2066, 'attending', '2023-06-03 20:00:27', '2025-12-17 19:47:04', 'ndaRDaKm', '6101361'), - (6, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndaRDaKm', '6101362'), - (6, 2070, 'attending', '2023-05-15 17:21:42', '2025-12-17 19:47:03', 'ndaRDaKm', '6103752'), - (6, 2074, 'attending', '2023-05-17 22:49:44', '2025-12-17 19:47:03', 'ndaRDaKm', '6107312'), - (6, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndaRDaKm', '6107314'), - (6, 2086, 'attending', '2023-06-01 22:08:38', '2025-12-17 19:47:04', 'ndaRDaKm', '6119877'), - (6, 2087, 'attending', '2023-05-28 04:21:41', '2025-12-17 19:47:04', 'ndaRDaKm', '6120034'), - (6, 2090, 'attending', '2023-06-01 05:44:32', '2025-12-17 19:47:04', 'ndaRDaKm', '6127961'), - (6, 2091, 'maybe', '2023-06-03 20:02:00', '2025-12-17 19:47:04', 'ndaRDaKm', '6130657'), - (6, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ndaRDaKm', '6136733'), - (6, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndaRDaKm', '6137989'), - (6, 2105, 'attending', '2023-06-18 06:44:30', '2025-12-17 19:46:50', 'ndaRDaKm', '6149551'), - (6, 2106, 'attending', '2023-06-18 06:44:24', '2025-12-17 19:46:50', 'ndaRDaKm', '6150479'), - (6, 2107, 'maybe', '2023-06-18 07:04:59', '2025-12-17 19:46:50', 'ndaRDaKm', '6150480'), - (6, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndaRDaKm', '6150864'), - (6, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndaRDaKm', '6155491'), - (6, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndaRDaKm', '6164417'), - (6, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndaRDaKm', '6166388'), - (6, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndaRDaKm', '6176439'), - (6, 2124, 'attending', '2023-07-05 02:36:11', '2025-12-17 19:46:51', 'ndaRDaKm', '6176988'), - (6, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'ndaRDaKm', '6180853'), - (6, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndaRDaKm', '6182410'), - (6, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndaRDaKm', '6185812'), - (6, 2132, 'attending', '2023-07-09 02:34:29', '2025-12-17 19:46:52', 'ndaRDaKm', '6187015'), - (6, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndaRDaKm', '6187651'), - (6, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndaRDaKm', '6187963'), - (6, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndaRDaKm', '6187964'), - (6, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndaRDaKm', '6187966'), - (6, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndaRDaKm', '6187967'), - (6, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndaRDaKm', '6187969'), - (6, 2143, 'not_attending', '2023-07-08 19:55:18', '2025-12-17 19:46:51', 'ndaRDaKm', '6334348'), - (6, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndaRDaKm', '6334878'), - (6, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndaRDaKm', '6337236'), - (6, 2155, 'maybe', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndaRDaKm', '6337970'), - (6, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndaRDaKm', '6338308'), - (6, 2159, 'not_attending', '2023-07-17 18:53:10', '2025-12-17 19:46:53', 'ndaRDaKm', '6338355'), - (6, 2160, 'not_attending', '2023-07-26 23:03:07', '2025-12-17 19:46:54', 'ndaRDaKm', '6338358'), - (6, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'ndaRDaKm', '6340845'), - (6, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndaRDaKm', '6341710'), - (6, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndaRDaKm', '6342044'), - (6, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndaRDaKm', '6342298'), - (6, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndaRDaKm', '6343294'), - (6, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndaRDaKm', '6347034'), - (6, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndaRDaKm', '6347056'), - (6, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndaRDaKm', '6353830'), - (6, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndaRDaKm', '6353831'), - (6, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndaRDaKm', '6357867'), - (6, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndaRDaKm', '6358652'), - (6, 2195, 'attending', '2023-08-23 18:00:15', '2025-12-17 19:46:55', 'ndaRDaKm', '6359397'), - (6, 2197, 'maybe', '2023-09-15 07:12:50', '2025-12-17 19:46:44', 'ndaRDaKm', '6359399'), - (6, 2198, 'not_attending', '2023-09-21 04:09:36', '2025-12-17 19:46:45', 'ndaRDaKm', '6359400'), - (6, 2199, 'attending', '2023-08-10 23:11:26', '2025-12-17 19:46:55', 'ndaRDaKm', '6359849'), - (6, 2204, 'not_attending', '2023-08-15 23:01:17', '2025-12-17 19:46:55', 'ndaRDaKm', '6361542'), - (6, 2206, 'attending', '2023-08-09 19:18:53', '2025-12-17 19:46:55', 'ndaRDaKm', '6361659'), - (6, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndaRDaKm', '6361709'), - (6, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndaRDaKm', '6361710'), - (6, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndaRDaKm', '6361711'), - (6, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndaRDaKm', '6361712'), - (6, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndaRDaKm', '6361713'), - (6, 2215, 'maybe', '2023-08-11 20:45:39', '2025-12-17 19:46:55', 'ndaRDaKm', '6363479'), - (6, 2232, 'attending', '2023-08-23 18:00:10', '2025-12-17 19:46:55', 'ndaRDaKm', '6374818'), - (6, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndaRDaKm', '6382573'), - (6, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'ndaRDaKm', '6383149'), - (6, 2239, 'attending', '2023-09-02 17:39:18', '2025-12-17 19:46:56', 'ndaRDaKm', '6387592'), - (6, 2240, 'not_attending', '2023-09-02 21:30:50', '2025-12-17 19:46:56', 'ndaRDaKm', '6388603'), - (6, 2241, 'maybe', '2023-09-02 21:42:35', '2025-12-17 19:46:44', 'ndaRDaKm', '6388604'), - (6, 2247, 'attending', '2023-09-06 22:12:52', '2025-12-17 19:46:56', 'ndaRDaKm', '6394628'), - (6, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndaRDaKm', '6394629'), - (6, 2249, 'attending', '2023-09-20 21:19:48', '2025-12-17 19:46:45', 'ndaRDaKm', '6394630'), - (6, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndaRDaKm', '6394631'), - (6, 2253, 'not_attending', '2023-09-30 04:39:13', '2025-12-17 19:46:45', 'ndaRDaKm', '6401811'), - (6, 2258, 'attending', '2023-09-21 08:13:56', '2025-12-17 19:46:45', 'ndaRDaKm', '6419492'), - (6, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndaRDaKm', '6440863'), - (6, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndaRDaKm', '6445440'), - (6, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndaRDaKm', '6453951'), - (6, 2285, 'not_attending', '2023-10-27 18:26:27', '2025-12-17 19:46:47', 'ndaRDaKm', '6460929'), - (6, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndaRDaKm', '6461696'), - (6, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndaRDaKm', '6462129'), - (6, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndaRDaKm', '6463218'), - (6, 2299, 'attending', '2023-10-16 18:06:08', '2025-12-17 19:46:46', 'ndaRDaKm', '6472181'), - (6, 2303, 'not_attending', '2023-10-27 04:48:42', '2025-12-17 19:46:47', 'ndaRDaKm', '6482691'), - (6, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndaRDaKm', '6482693'), - (6, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ndaRDaKm', '6484200'), - (6, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndaRDaKm', '6484680'), - (6, 2315, 'attending', '2023-11-07 00:00:47', '2025-12-17 19:46:47', 'ndaRDaKm', '6493666'), - (6, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndaRDaKm', '6507741'), - (6, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndaRDaKm', '6514659'), - (6, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndaRDaKm', '6514660'), - (6, 2326, 'maybe', '2023-11-01 17:34:48', '2025-12-17 19:46:48', 'ndaRDaKm', '6514805'), - (6, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndaRDaKm', '6519103'), - (6, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndaRDaKm', '6535681'), - (6, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndaRDaKm', '6584747'), - (6, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndaRDaKm', '6587097'), - (6, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndaRDaKm', '6609022'), - (6, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndaRDaKm', '6632757'), - (6, 2375, 'attending', '2023-12-20 23:34:13', '2025-12-17 19:46:36', 'ndaRDaKm', '6634548'), - (6, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndaRDaKm', '6644187'), - (6, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndaRDaKm', '6648951'), - (6, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndaRDaKm', '6648952'), - (6, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndaRDaKm', '6655401'), - (6, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndaRDaKm', '6661585'), - (6, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndaRDaKm', '6661588'), - (6, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndaRDaKm', '6661589'), - (6, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndaRDaKm', '6699906'), - (6, 2409, 'attending', '2024-01-29 17:41:55', '2025-12-17 19:46:41', 'ndaRDaKm', '6699909'), - (6, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ndaRDaKm', '6699913'), - (6, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndaRDaKm', '6701109'), - (6, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndaRDaKm', '6705219'), - (6, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndaRDaKm', '6710153'), - (6, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndaRDaKm', '6711552'), - (6, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ndaRDaKm', '6711553'), - (6, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ndaRDaKm', '6722688'), - (6, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ndaRDaKm', '6730620'), - (6, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ndaRDaKm', '6740364'), - (6, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ndaRDaKm', '6743829'), - (6, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ndaRDaKm', '7030380'), - (6, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ndaRDaKm', '7033677'), - (6, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ndaRDaKm', '7044715'), - (6, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ndaRDaKm', '7050318'), - (6, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ndaRDaKm', '7050319'), - (6, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ndaRDaKm', '7050322'), - (6, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ndaRDaKm', '7057804'), - (6, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ndaRDaKm', '7072824'), - (6, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ndaRDaKm', '7074348'), - (6, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndaRDaKm', '7074364'), - (6, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ndaRDaKm', '7089267'), - (6, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ndaRDaKm', '7098747'), - (6, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ndaRDaKm', '7113468'), - (6, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ndaRDaKm', '7114856'), - (6, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ndaRDaKm', '7114951'), - (6, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ndaRDaKm', '7114955'), - (6, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ndaRDaKm', '7114956'), - (6, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndaRDaKm', '7114957'), - (6, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndaRDaKm', '7159484'), - (6, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndaRDaKm', '7178446'), - (6, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ndaRDaKm', '7220467'), - (6, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndaRDaKm', '7240354'), - (6, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndaRDaKm', '7251633'), - (6, 2626, 'attending', '2024-05-18 22:27:44', '2025-12-17 19:46:35', 'ndaRDaKm', '7264723'), - (6, 2627, 'maybe', '2024-05-21 16:53:06', '2025-12-17 19:46:35', 'ndaRDaKm', '7264724'), - (6, 2628, 'not_attending', '2024-05-21 16:53:11', '2025-12-17 19:46:36', 'ndaRDaKm', '7264725'), - (6, 2629, 'not_attending', '2024-05-21 16:53:15', '2025-12-17 19:46:28', 'ndaRDaKm', '7264726'), - (6, 2647, 'maybe', '2024-06-09 17:50:02', '2025-12-17 19:46:28', 'ndaRDaKm', '7282057'), - (6, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'ndaRDaKm', '7302674'), - (6, 2671, 'attending', '2024-06-11 14:19:14', '2025-12-17 19:46:28', 'ndaRDaKm', '7318256'), - (6, 2672, 'maybe', '2024-06-09 17:50:11', '2025-12-17 19:46:28', 'ndaRDaKm', '7318459'), - (6, 2678, 'attending', '2024-06-14 21:12:52', '2025-12-17 19:46:28', 'ndaRDaKm', '7319489'), - (6, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndaRDaKm', '7324073'), - (6, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndaRDaKm', '7324074'), - (6, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndaRDaKm', '7324075'), - (6, 2691, 'attending', '2024-07-08 14:55:53', '2025-12-17 19:46:30', 'ndaRDaKm', '7324076'), - (6, 2692, 'maybe', '2024-07-08 14:55:59', '2025-12-17 19:46:30', 'ndaRDaKm', '7324077'), - (6, 2693, 'attending', '2024-07-21 04:17:31', '2025-12-17 19:46:31', 'ndaRDaKm', '7324078'), - (6, 2694, 'attending', '2024-07-21 04:17:33', '2025-12-17 19:46:31', 'ndaRDaKm', '7324079'), - (6, 2695, 'attending', '2024-08-17 01:09:14', '2025-12-17 19:46:31', 'ndaRDaKm', '7324080'), - (6, 2696, 'attending', '2024-08-17 15:44:37', '2025-12-17 19:46:32', 'ndaRDaKm', '7324081'), - (6, 2697, 'attending', '2024-08-31 06:16:45', '2025-12-17 19:46:32', 'ndaRDaKm', '7324082'), - (6, 2698, 'not_attending', '2024-09-07 00:46:29', '2025-12-17 19:46:24', 'ndaRDaKm', '7324083'), - (6, 2699, 'maybe', '2024-06-12 17:20:01', '2025-12-17 19:46:28', 'ndaRDaKm', '7324385'), - (6, 2700, 'attending', '2024-06-13 20:47:25', '2025-12-17 19:46:28', 'ndaRDaKm', '7324388'), - (6, 2701, 'maybe', '2024-06-26 03:19:15', '2025-12-17 19:46:29', 'ndaRDaKm', '7324391'), - (6, 2706, 'maybe', '2024-06-19 04:41:14', '2025-12-17 19:46:28', 'ndaRDaKm', '7324947'), - (6, 2722, 'attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'ndaRDaKm', '7331457'), - (6, 2723, 'maybe', '2024-06-21 02:00:49', '2025-12-17 19:46:29', 'ndaRDaKm', '7332389'), - (6, 2724, 'maybe', '2024-06-26 03:19:06', '2025-12-17 19:46:29', 'ndaRDaKm', '7332562'), - (6, 2726, 'attending', '2024-06-19 19:18:18', '2025-12-17 19:46:29', 'ndaRDaKm', '7332853'), - (6, 2741, 'maybe', '2024-07-08 14:56:27', '2025-12-17 19:46:30', 'ndaRDaKm', '7344592'), - (6, 2747, 'maybe', '2024-07-17 19:08:33', '2025-12-17 19:46:30', 'ndaRDaKm', '7353587'), - (6, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'ndaRDaKm', '7356752'), - (6, 2755, 'maybe', '2024-07-10 16:56:37', '2025-12-17 19:46:29', 'ndaRDaKm', '7357808'), - (6, 2766, 'attending', '2024-07-18 02:08:58', '2025-12-17 19:46:30', 'ndaRDaKm', '7363643'), - (6, 2767, 'maybe', '2024-07-18 02:08:56', '2025-12-17 19:46:30', 'ndaRDaKm', '7364726'), - (6, 2768, 'attending', '2024-07-18 02:07:00', '2025-12-17 19:46:30', 'ndaRDaKm', '7366031'), - (6, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndaRDaKm', '7368606'), - (6, 2782, 'maybe', '2024-07-28 15:54:06', '2025-12-17 19:46:30', 'ndaRDaKm', '7376725'), - (6, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndaRDaKm', '7397462'), - (6, 2802, 'attending', '2024-09-02 01:55:21', '2025-12-17 19:46:32', 'ndaRDaKm', '7397463'), - (6, 2806, 'maybe', '2024-09-14 16:17:20', '2025-12-17 19:46:25', 'ndaRDaKm', '7404888'), - (6, 2808, 'attending', '2024-08-31 06:16:55', '2025-12-17 19:46:32', 'ndaRDaKm', '7412860'), - (6, 2821, 'maybe', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndaRDaKm', '7424275'), - (6, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'ndaRDaKm', '7424276'), - (6, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndaRDaKm', '7432751'), - (6, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndaRDaKm', '7432752'), - (6, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndaRDaKm', '7432753'), - (6, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndaRDaKm', '7432754'), - (6, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndaRDaKm', '7432755'), - (6, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndaRDaKm', '7432756'), - (6, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndaRDaKm', '7432758'), - (6, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndaRDaKm', '7432759'), - (6, 2832, 'maybe', '2024-09-11 16:53:03', '2025-12-17 19:46:24', 'ndaRDaKm', '7433324'), - (6, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndaRDaKm', '7433834'), - (6, 2834, 'maybe', '2024-09-12 21:29:06', '2025-12-17 19:46:25', 'ndaRDaKm', '7433852'), - (6, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndaRDaKm', '7470197'), - (6, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndaRDaKm', '7685613'), - (6, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndaRDaKm', '7688194'), - (6, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndaRDaKm', '7688196'), - (6, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndaRDaKm', '7688289'), - (6, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'ndaRDaKm', '7692763'), - (6, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndaRDaKm', '7697552'), - (6, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndaRDaKm', '7699878'), - (6, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndaRDaKm', '7704043'), - (6, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndaRDaKm', '7712467'), - (6, 2925, 'attending', '2024-12-06 02:12:59', '2025-12-17 19:46:21', 'ndaRDaKm', '7713584'), - (6, 2926, 'attending', '2024-12-03 17:38:46', '2025-12-17 19:46:21', 'ndaRDaKm', '7713585'), - (6, 2927, 'attending', '2024-12-06 02:13:01', '2025-12-17 19:46:22', 'ndaRDaKm', '7713586'), - (6, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndaRDaKm', '7738518'), - (6, 2962, 'not_attending', '2024-12-25 12:51:13', '2025-12-17 19:46:22', 'ndaRDaKm', '7750632'), - (6, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndaRDaKm', '7750636'), - (6, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndaRDaKm', '7796540'), - (6, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndaRDaKm', '7796541'), - (6, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndaRDaKm', '7796542'), - (6, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndaRDaKm', '7825913'), - (6, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndaRDaKm', '7826209'), - (6, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndaRDaKm', '7834742'), - (6, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'ndaRDaKm', '7842108'), - (6, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndaRDaKm', '7842902'), - (6, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndaRDaKm', '7842903'), - (6, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndaRDaKm', '7842904'), - (6, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndaRDaKm', '7842905'), - (6, 3003, 'attending', '2025-02-19 15:28:26', '2025-12-17 19:46:24', 'ndaRDaKm', '7854589'), - (6, 3005, 'maybe', '2025-02-19 15:28:09', '2025-12-17 19:46:24', 'ndaRDaKm', '7854604'), - (6, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndaRDaKm', '7855719'), - (6, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndaRDaKm', '7860683'), - (6, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndaRDaKm', '7860684'), - (6, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndaRDaKm', '7866095'), - (6, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndaRDaKm', '7869170'), - (6, 3014, 'attending', '2025-04-05 18:42:02', '2025-12-17 19:46:20', 'ndaRDaKm', '7869185'), - (6, 3015, 'attending', '2025-04-05 18:42:12', '2025-12-17 19:46:20', 'ndaRDaKm', '7869186'), - (6, 3016, 'attending', '2025-04-05 18:42:10', '2025-12-17 19:46:20', 'ndaRDaKm', '7869187'), - (6, 3017, 'not_attending', '2025-03-12 20:41:12', '2025-12-17 19:46:19', 'ndaRDaKm', '7869188'), - (6, 3018, 'attending', '2025-04-05 18:42:04', '2025-12-17 19:46:20', 'ndaRDaKm', '7869189'), - (6, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndaRDaKm', '7869201'), - (6, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndaRDaKm', '7877465'), - (6, 3049, 'maybe', '2025-03-21 14:57:35', '2025-12-17 19:46:19', 'ndaRDaKm', '7883215'), - (6, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndaRDaKm', '7888250'), - (6, 3059, 'attending', '2025-03-26 11:29:19', '2025-12-17 19:46:19', 'ndaRDaKm', '7891868'), - (6, 3072, 'maybe', '2025-04-03 12:00:44', '2025-12-17 19:46:19', 'ndaRDaKm', '7895449'), - (6, 3084, 'maybe', '2025-04-08 23:48:58', '2025-12-17 19:46:20', 'ndaRDaKm', '7903687'), - (6, 3088, 'attending', '2025-06-09 13:53:07', '2025-12-17 19:46:15', 'ndaRDaKm', '7904777'), - (6, 3090, 'maybe', '2025-04-17 22:31:28', '2025-12-17 19:46:20', 'ndaRDaKm', '7914315'), - (6, 3093, 'maybe', '2025-04-22 20:47:29', '2025-12-17 19:46:20', 'ndaRDaKm', '8342248'), - (6, 3094, 'maybe', '2025-04-28 14:50:44', '2025-12-17 19:46:21', 'ndaRDaKm', '8342292'), - (6, 3095, 'attending', '2025-04-29 17:49:44', '2025-12-17 19:46:20', 'ndaRDaKm', '8342293'), - (6, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndaRDaKm', '8349164'), - (6, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndaRDaKm', '8349545'), - (6, 3111, 'attending', '2025-04-29 17:48:08', '2025-12-17 19:46:20', 'ndaRDaKm', '8353494'), - (6, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ndaRDaKm', '8353584'), - (6, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndaRDaKm', '8368028'), - (6, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndaRDaKm', '8368029'), - (6, 3133, 'attending', '2025-05-31 20:17:01', '2025-12-17 19:46:14', 'ndaRDaKm', '8368030'), - (6, 3136, 'maybe', '2025-05-21 11:42:52', '2025-12-17 19:46:21', 'ndaRDaKm', '8374152'), - (6, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndaRDaKm', '8388462'), - (6, 3150, 'maybe', '2025-06-19 22:07:37', '2025-12-17 19:46:15', 'ndaRDaKm', '8393174'), - (6, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndaRDaKm', '8400273'), - (6, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ndaRDaKm', '8400274'), - (6, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndaRDaKm', '8400275'), - (6, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ndaRDaKm', '8400276'), - (6, 3161, 'maybe', '2025-06-09 13:53:19', '2025-12-17 19:46:15', 'ndaRDaKm', '8401412'), - (6, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndaRDaKm', '8404977'), - (6, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndaRDaKm', '8430783'), - (6, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndaRDaKm', '8430784'), - (6, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndaRDaKm', '8430799'), - (6, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndaRDaKm', '8430800'), - (6, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndaRDaKm', '8430801'), - (6, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndaRDaKm', '8438709'), - (6, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndaRDaKm', '8457738'), - (6, 3195, 'attending', '2025-07-18 00:18:21', '2025-12-17 19:46:17', 'ndaRDaKm', '8458118'), - (6, 3196, 'attending', '2025-07-18 00:22:43', '2025-12-17 19:46:17', 'ndaRDaKm', '8458543'), - (6, 3198, 'attending', '2025-08-17 22:00:23', '2025-12-17 19:46:18', 'ndaRDaKm', '8459268'), - (6, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndaRDaKm', '8459566'), - (6, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndaRDaKm', '8459567'), - (6, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndaRDaKm', '8461032'), - (6, 3210, 'attending', '2025-08-25 13:46:08', '2025-12-17 19:46:18', 'ndaRDaKm', '8471162'), - (6, 3213, 'maybe', '2025-08-11 21:39:18', '2025-12-17 19:46:17', 'ndaRDaKm', '8477876'), - (6, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndaRDaKm', '8477877'), - (6, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'ndaRDaKm', '8485688'), - (6, 3235, 'maybe', '2025-08-18 22:29:28', '2025-12-17 19:46:18', 'ndaRDaKm', '8490587'), - (6, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ndaRDaKm', '8493552'), - (6, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ndaRDaKm', '8493553'), - (6, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ndaRDaKm', '8493554'), - (6, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ndaRDaKm', '8493555'), - (6, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ndaRDaKm', '8493556'), - (6, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ndaRDaKm', '8493557'), - (6, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ndaRDaKm', '8493558'), - (6, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ndaRDaKm', '8493559'), - (6, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ndaRDaKm', '8493560'), - (6, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'ndaRDaKm', '8493561'), - (6, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ndaRDaKm', '8493572'), - (6, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ndaRDaKm', '8540725'), - (6, 3289, 'attending', '2025-10-22 23:47:51', '2025-12-17 19:46:14', 'ndaRDaKm', '8542939'), - (6, 3305, 'maybe', '2025-12-06 13:02:22', '2025-12-17 19:46:11', 'ndaRDaKm', '8550025'), - (6, 3307, 'maybe', '2025-12-19 02:08:35', '2025-12-19 02:08:35', NULL, NULL), - (6, 3310, 'attending', '2025-12-01 23:05:54', '2025-12-17 19:46:11', 'ndaRDaKm', '8550410'), - (6, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndaRDaKm', '8555421'), - (7, 1543, 'not_attending', '2023-07-21 15:32:44', '2025-12-17 19:47:21', 'dOxojqLm', '5454516'), - (7, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOxojqLm', '5900202'), - (7, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOxojqLm', '5900203'), - (7, 1917, 'not_attending', '2023-03-12 16:07:19', '2025-12-17 19:47:10', 'dOxojqLm', '5910528'), - (7, 1943, 'attending', '2023-03-11 17:55:54', '2025-12-17 19:47:10', 'dOxojqLm', '5962091'), - (7, 1946, 'not_attending', '2023-03-15 21:30:47', '2025-12-17 19:46:56', 'dOxojqLm', '5962134'), - (7, 1948, 'maybe', '2023-03-15 21:31:50', '2025-12-17 19:46:57', 'dOxojqLm', '5962317'), - (7, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dOxojqLm', '5962318'), - (7, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dOxojqLm', '5965933'), - (7, 1966, 'attending', '2023-03-11 17:56:03', '2025-12-17 19:47:10', 'dOxojqLm', '5983042'), - (7, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOxojqLm', '5993516'), - (7, 1974, 'maybe', '2023-03-21 14:20:50', '2025-12-17 19:46:57', 'dOxojqLm', '5993778'), - (7, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOxojqLm', '5998939'), - (7, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOxojqLm', '6028191'), - (7, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOxojqLm', '6040066'), - (7, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOxojqLm', '6042717'), - (7, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOxojqLm', '6044838'), - (7, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOxojqLm', '6044839'), - (7, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOxojqLm', '6045684'), - (7, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dOxojqLm', '6050104'), - (7, 1996, 'attending', '2023-04-02 21:11:03', '2025-12-17 19:46:58', 'dOxojqLm', '6050667'), - (7, 1998, 'not_attending', '2023-04-09 13:49:05', '2025-12-17 19:46:59', 'dOxojqLm', '6052056'), - (7, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOxojqLm', '6053195'), - (7, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOxojqLm', '6053198'), - (7, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOxojqLm', '6056085'), - (7, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOxojqLm', '6056916'), - (7, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOxojqLm', '6059290'), - (7, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOxojqLm', '6060328'), - (7, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOxojqLm', '6061037'), - (7, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOxojqLm', '6061039'), - (7, 2020, 'not_attending', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'dOxojqLm', '6065813'), - (7, 2021, 'attending', '2023-04-15 19:13:58', '2025-12-17 19:47:00', 'dOxojqLm', '6066316'), - (7, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOxojqLm', '6067245'), - (7, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOxojqLm', '6068094'), - (7, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOxojqLm', '6068252'), - (7, 2029, 'maybe', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOxojqLm', '6068253'), - (7, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOxojqLm', '6068254'), - (7, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dOxojqLm', '6068280'), - (7, 2032, 'attending', '2023-05-26 22:26:30', '2025-12-17 19:47:04', 'dOxojqLm', '6068281'), - (7, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOxojqLm', '6069093'), - (7, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dOxojqLm', '6072528'), - (7, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dOxojqLm', '6075556'), - (7, 2046, 'maybe', '2023-05-04 00:14:38', '2025-12-17 19:47:02', 'dOxojqLm', '6076020'), - (7, 2047, 'maybe', '2023-05-03 14:32:02', '2025-12-17 19:47:02', 'dOxojqLm', '6076027'), - (7, 2049, 'attending', '2023-04-29 17:38:54', '2025-12-17 19:47:01', 'dOxojqLm', '6079840'), - (7, 2050, 'attending', '2023-05-04 00:14:00', '2025-12-17 19:47:02', 'dOxojqLm', '6080489'), - (7, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOxojqLm', '6083398'), - (7, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOxojqLm', '6093504'), - (7, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOxojqLm', '6097414'), - (7, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOxojqLm', '6097442'), - (7, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOxojqLm', '6097684'), - (7, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOxojqLm', '6098762'), - (7, 2064, 'attending', '2023-06-08 21:07:36', '2025-12-17 19:46:50', 'dOxojqLm', '6099988'), - (7, 2065, 'attending', '2023-06-08 21:07:27', '2025-12-17 19:46:49', 'dOxojqLm', '6101169'), - (7, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOxojqLm', '6101361'), - (7, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOxojqLm', '6101362'), - (7, 2068, 'attending', '2023-05-13 17:55:44', '2025-12-17 19:47:03', 'dOxojqLm', '6102837'), - (7, 2069, 'maybe', '2023-05-14 21:46:22', '2025-12-17 19:47:03', 'dOxojqLm', '6103750'), - (7, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOxojqLm', '6107314'), - (7, 2078, 'maybe', '2023-05-22 21:21:45', '2025-12-17 19:47:03', 'dOxojqLm', '6114163'), - (7, 2080, 'maybe', '2023-05-22 22:46:38', '2025-12-17 19:47:04', 'dOxojqLm', '6114677'), - (7, 2083, 'maybe', '2023-05-22 22:50:28', '2025-12-17 19:47:04', 'dOxojqLm', '6115629'), - (7, 2086, 'attending', '2023-05-26 21:23:26', '2025-12-17 19:47:04', 'dOxojqLm', '6119877'), - (7, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOxojqLm', '6120034'), - (7, 2093, 'maybe', '2023-06-05 01:25:28', '2025-12-17 19:47:04', 'dOxojqLm', '6132598'), - (7, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dOxojqLm', '6136733'), - (7, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOxojqLm', '6137989'), - (7, 2097, 'attending', '2023-06-08 01:12:41', '2025-12-17 19:47:04', 'dOxojqLm', '6139059'), - (7, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOxojqLm', '6150864'), - (7, 2109, 'attending', '2023-06-19 19:22:43', '2025-12-17 19:46:50', 'dOxojqLm', '6152821'), - (7, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOxojqLm', '6155491'), - (7, 2111, 'maybe', '2023-06-19 19:22:50', '2025-12-17 19:46:50', 'dOxojqLm', '6156121'), - (7, 2114, 'maybe', '2023-06-25 14:45:31', '2025-12-17 19:46:50', 'dOxojqLm', '6158648'), - (7, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOxojqLm', '6164417'), - (7, 2119, 'maybe', '2023-06-26 14:55:21', '2025-12-17 19:46:50', 'dOxojqLm', '6165461'), - (7, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOxojqLm', '6166388'), - (7, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOxojqLm', '6176439'), - (7, 2122, 'maybe', '2023-06-28 20:12:10', '2025-12-17 19:46:51', 'dOxojqLm', '6176476'), - (7, 2123, 'attending', '2023-06-28 20:12:01', '2025-12-17 19:46:50', 'dOxojqLm', '6176502'), - (7, 2124, 'maybe', '2023-06-29 20:33:56', '2025-12-17 19:46:51', 'dOxojqLm', '6176988'), - (7, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOxojqLm', '6182410'), - (7, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOxojqLm', '6185812'), - (7, 2132, 'maybe', '2023-07-06 11:24:09', '2025-12-17 19:46:52', 'dOxojqLm', '6187015'), - (7, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOxojqLm', '6187651'), - (7, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOxojqLm', '6187963'), - (7, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOxojqLm', '6187964'), - (7, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOxojqLm', '6187966'), - (7, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOxojqLm', '6187967'), - (7, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOxojqLm', '6187969'), - (7, 2142, 'attending', '2023-07-09 13:24:12', '2025-12-17 19:46:52', 'dOxojqLm', '6333850'), - (7, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOxojqLm', '6334878'), - (7, 2147, 'maybe', '2023-07-12 19:37:05', '2025-12-17 19:46:52', 'dOxojqLm', '6335666'), - (7, 2151, 'maybe', '2023-07-09 23:36:07', '2025-12-17 19:46:52', 'dOxojqLm', '6335700'), - (7, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOxojqLm', '6337236'), - (7, 2154, 'attending', '2023-07-11 23:20:18', '2025-12-17 19:46:52', 'dOxojqLm', '6337689'), - (7, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOxojqLm', '6337970'), - (7, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOxojqLm', '6338308'), - (7, 2157, 'not_attending', '2023-07-12 21:54:30', '2025-12-17 19:46:52', 'dOxojqLm', '6338342'), - (7, 2158, 'not_attending', '2023-07-13 19:26:34', '2025-12-17 19:46:53', 'dOxojqLm', '6338353'), - (7, 2159, 'attending', '2023-07-13 19:26:23', '2025-12-17 19:46:53', 'dOxojqLm', '6338355'), - (7, 2160, 'attending', '2023-07-13 19:26:25', '2025-12-17 19:46:54', 'dOxojqLm', '6338358'), - (7, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOxojqLm', '6341710'), - (7, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOxojqLm', '6342044'), - (7, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOxojqLm', '6342298'), - (7, 2171, 'attending', '2023-07-18 01:30:02', '2025-12-17 19:46:54', 'dOxojqLm', '6342328'), - (7, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOxojqLm', '6343294'), - (7, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOxojqLm', '6347034'), - (7, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOxojqLm', '6347056'), - (7, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOxojqLm', '6353830'), - (7, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOxojqLm', '6353831'), - (7, 2189, 'maybe', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOxojqLm', '6357867'), - (7, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOxojqLm', '6358652'), - (7, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dOxojqLm', '6358668'), - (7, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dOxojqLm', '6358669'), - (7, 2204, 'attending', '2023-08-09 18:33:30', '2025-12-17 19:46:55', 'dOxojqLm', '6361542'), - (7, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOxojqLm', '6361709'), - (7, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dOxojqLm', '6361710'), - (7, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOxojqLm', '6361711'), - (7, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOxojqLm', '6361712'), - (7, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOxojqLm', '6361713'), - (7, 2213, 'attending', '2023-08-15 22:42:36', '2025-12-17 19:46:55', 'dOxojqLm', '6362935'), - (7, 2214, 'maybe', '2023-08-12 23:33:30', '2025-12-17 19:46:55', 'dOxojqLm', '6363218'), - (7, 2221, 'maybe', '2023-08-15 22:43:02', '2025-12-17 19:46:55', 'dOxojqLm', '6367357'), - (7, 2222, 'maybe', '2023-08-15 22:43:05', '2025-12-17 19:46:55', 'dOxojqLm', '6367358'), - (7, 2225, 'attending', '2023-08-20 11:28:28', '2025-12-17 19:46:55', 'dOxojqLm', '6368434'), - (7, 2232, 'attending', '2023-08-22 23:14:49', '2025-12-17 19:46:55', 'dOxojqLm', '6374818'), - (7, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOxojqLm', '6382573'), - (7, 2236, 'attending', '2023-08-25 17:20:48', '2025-12-17 19:46:55', 'dOxojqLm', '6382618'), - (7, 2239, 'attending', '2023-08-31 17:58:31', '2025-12-17 19:46:56', 'dOxojqLm', '6387592'), - (7, 2240, 'attending', '2023-09-09 22:07:45', '2025-12-17 19:46:56', 'dOxojqLm', '6388603'), - (7, 2241, 'attending', '2023-09-09 22:07:50', '2025-12-17 19:46:44', 'dOxojqLm', '6388604'), - (7, 2242, 'attending', '2023-09-23 00:32:36', '2025-12-17 19:46:45', 'dOxojqLm', '6388606'), - (7, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOxojqLm', '6394629'), - (7, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOxojqLm', '6394631'), - (7, 2253, 'attending', '2023-09-16 22:36:21', '2025-12-17 19:46:45', 'dOxojqLm', '6401811'), - (7, 2255, 'attending', '2023-09-12 23:14:07', '2025-12-17 19:46:45', 'dOxojqLm', '6403562'), - (7, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOxojqLm', '6440863'), - (7, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOxojqLm', '6445440'), - (7, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOxojqLm', '6453951'), - (7, 2277, 'attending', '2023-10-08 18:44:13', '2025-12-17 19:46:46', 'dOxojqLm', '6455211'), - (7, 2279, 'attending', '2023-10-08 18:56:47', '2025-12-17 19:46:46', 'dOxojqLm', '6455460'), - (7, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOxojqLm', '6461696'), - (7, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOxojqLm', '6462129'), - (7, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOxojqLm', '6463218'), - (7, 2295, 'attending', '2023-10-15 18:59:53', '2025-12-17 19:46:46', 'dOxojqLm', '6467832'), - (7, 2299, 'attending', '2023-10-20 15:32:35', '2025-12-17 19:46:46', 'dOxojqLm', '6472181'), - (7, 2303, 'attending', '2023-10-22 15:22:25', '2025-12-17 19:46:47', 'dOxojqLm', '6482691'), - (7, 2304, 'attending', '2023-10-27 21:30:22', '2025-12-17 19:46:47', 'dOxojqLm', '6482693'), - (7, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dOxojqLm', '6484200'), - (7, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOxojqLm', '6484680'), - (7, 2308, 'attending', '2023-10-23 13:44:36', '2025-12-17 19:46:47', 'dOxojqLm', '6485393'), - (7, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOxojqLm', '6507741'), - (7, 2322, 'attending', '2023-11-09 23:13:12', '2025-12-17 19:46:48', 'dOxojqLm', '6514659'), - (7, 2323, 'not_attending', '2023-11-19 18:08:27', '2025-12-17 19:46:49', 'dOxojqLm', '6514660'), - (7, 2324, 'attending', '2023-11-19 18:08:30', '2025-12-17 19:46:49', 'dOxojqLm', '6514662'), - (7, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOxojqLm', '6519103'), - (7, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOxojqLm', '6535681'), - (7, 2338, 'maybe', '2023-11-15 02:24:50', '2025-12-17 19:46:48', 'dOxojqLm', '6538868'), - (7, 2339, 'not_attending', '2023-11-09 23:13:39', '2025-12-17 19:46:47', 'dOxojqLm', '6539128'), - (7, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOxojqLm', '6584747'), - (7, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOxojqLm', '6587097'), - (7, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOxojqLm', '6609022'), - (7, 2372, 'not_attending', '2023-12-15 15:23:06', '2025-12-17 19:46:36', 'dOxojqLm', '6628243'), - (7, 2373, 'attending', '2023-12-26 19:36:41', '2025-12-17 19:46:38', 'dOxojqLm', '6632678'), - (7, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOxojqLm', '6632757'), - (7, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOxojqLm', '6644187'), - (7, 2380, 'attending', '2023-12-31 13:55:41', '2025-12-17 19:46:37', 'dOxojqLm', '6645105'), - (7, 2385, 'maybe', '2024-01-08 17:57:39', '2025-12-17 19:46:37', 'dOxojqLm', '6648943'), - (7, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOxojqLm', '6648951'), - (7, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOxojqLm', '6648952'), - (7, 2389, 'maybe', '2024-01-10 23:36:35', '2025-12-17 19:46:40', 'dOxojqLm', '6651094'), - (7, 2393, 'not_attending', '2024-01-13 23:06:37', '2025-12-17 19:46:38', 'dOxojqLm', '6654468'), - (7, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOxojqLm', '6655401'), - (7, 2397, 'maybe', '2024-01-08 17:57:24', '2025-12-17 19:46:37', 'dOxojqLm', '6657379'), - (7, 2399, 'not_attending', '2024-01-08 17:57:15', '2025-12-17 19:46:38', 'dOxojqLm', '6657583'), - (7, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOxojqLm', '6661585'), - (7, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOxojqLm', '6661588'), - (7, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOxojqLm', '6661589'), - (7, 2405, 'maybe', '2024-01-13 23:07:02', '2025-12-17 19:46:38', 'dOxojqLm', '6667332'), - (7, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOxojqLm', '6699906'), - (7, 2408, 'attending', '2024-01-15 03:51:54', '2025-12-17 19:46:40', 'dOxojqLm', '6699907'), - (7, 2409, 'not_attending', '2024-01-15 03:51:56', '2025-12-17 19:46:41', 'dOxojqLm', '6699909'), - (7, 2410, 'attending', '2024-01-15 03:51:58', '2025-12-17 19:46:41', 'dOxojqLm', '6699911'), - (7, 2411, 'attending', '2024-02-11 04:13:57', '2025-12-17 19:46:41', 'dOxojqLm', '6699913'), - (7, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOxojqLm', '6701109'), - (7, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dOxojqLm', '6704561'), - (7, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOxojqLm', '6705219'), - (7, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dOxojqLm', '6708410'), - (7, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOxojqLm', '6710153'), - (7, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOxojqLm', '6711552'), - (7, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOxojqLm', '6711553'), - (7, 2431, 'attending', '2024-01-23 21:27:42', '2025-12-17 19:46:41', 'dOxojqLm', '6712394'), - (7, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOxojqLm', '6722688'), - (7, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOxojqLm', '6730620'), - (7, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOxojqLm', '6730642'), - (7, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOxojqLm', '6740364'), - (7, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOxojqLm', '6743829'), - (7, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOxojqLm', '7030380'), - (7, 2471, 'attending', '2024-02-23 00:40:30', '2025-12-17 19:46:42', 'dOxojqLm', '7032425'), - (7, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOxojqLm', '7033677'), - (7, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOxojqLm', '7035415'), - (7, 2479, 'attending', '2024-02-23 00:41:10', '2025-12-17 19:46:43', 'dOxojqLm', '7037009'), - (7, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOxojqLm', '7044715'), - (7, 2487, 'attending', '2024-03-01 20:50:43', '2025-12-17 19:46:33', 'dOxojqLm', '7049279'), - (7, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOxojqLm', '7050318'), - (7, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOxojqLm', '7050319'), - (7, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOxojqLm', '7050322'), - (7, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOxojqLm', '7057804'), - (7, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOxojqLm', '7072824'), - (7, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOxojqLm', '7074348'), - (7, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dOxojqLm', '7074364'), - (7, 2537, 'maybe', '2024-03-23 14:43:14', '2025-12-17 19:46:33', 'dOxojqLm', '7085484'), - (7, 2539, 'maybe', '2024-03-31 17:05:25', '2025-12-17 19:46:33', 'dOxojqLm', '7085486'), - (7, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOxojqLm', '7089267'), - (7, 2544, 'maybe', '2024-03-23 14:43:41', '2025-12-17 19:46:33', 'dOxojqLm', '7096941'), - (7, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOxojqLm', '7098747'), - (7, 2553, 'maybe', '2024-03-30 02:50:15', '2025-12-17 19:46:33', 'dOxojqLm', '7113468'), - (7, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOxojqLm', '7114856'), - (7, 2555, 'attending', '2024-03-31 17:05:38', '2025-12-17 19:46:33', 'dOxojqLm', '7114951'), - (7, 2556, 'attending', '2024-03-31 17:05:46', '2025-12-17 19:46:34', 'dOxojqLm', '7114955'), - (7, 2557, 'attending', '2024-03-31 17:05:48', '2025-12-17 19:46:34', 'dOxojqLm', '7114956'), - (7, 2558, 'maybe', '2024-03-31 17:05:49', '2025-12-17 19:46:35', 'dOxojqLm', '7114957'), - (7, 2566, 'attending', '2024-04-07 14:39:13', '2025-12-17 19:46:34', 'dOxojqLm', '7140664'), - (7, 2567, 'attending', '2024-04-04 01:21:07', '2025-12-17 19:46:33', 'dOxojqLm', '7144962'), - (7, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOxojqLm', '7153615'), - (7, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOxojqLm', '7159484'), - (7, 2573, 'maybe', '2024-04-14 20:58:26', '2025-12-17 19:46:34', 'dOxojqLm', '7160612'), - (7, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOxojqLm', '7178446'), - (7, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOxojqLm', '7220467'), - (7, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dOxojqLm', '7240354'), - (7, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOxojqLm', '7251633'), - (7, 2626, 'maybe', '2024-05-13 17:29:53', '2025-12-17 19:46:35', 'dOxojqLm', '7264723'), - (7, 2628, 'attending', '2024-05-25 16:46:55', '2025-12-17 19:46:36', 'dOxojqLm', '7264725'), - (7, 2629, 'not_attending', '2024-06-08 16:56:27', '2025-12-17 19:46:28', 'dOxojqLm', '7264726'), - (7, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOxojqLm', '7302674'), - (7, 2678, 'attending', '2024-06-15 18:49:26', '2025-12-17 19:46:28', 'dOxojqLm', '7319489'), - (7, 2686, 'attending', '2024-06-11 13:17:04', '2025-12-17 19:46:29', 'dOxojqLm', '7323802'), - (7, 2688, 'attending', '2024-06-27 22:05:26', '2025-12-17 19:46:29', 'dOxojqLm', '7324073'), - (7, 2689, 'attending', '2024-06-27 22:05:31', '2025-12-17 19:46:29', 'dOxojqLm', '7324074'), - (7, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dOxojqLm', '7324075'), - (7, 2691, 'attending', '2024-07-08 21:06:08', '2025-12-17 19:46:30', 'dOxojqLm', '7324076'), - (7, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dOxojqLm', '7324078'), - (7, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dOxojqLm', '7324082'), - (7, 2710, 'attending', '2024-06-16 15:51:24', '2025-12-17 19:46:28', 'dOxojqLm', '7325108'), - (7, 2717, 'maybe', '2024-06-18 23:32:23', '2025-12-17 19:46:29', 'dOxojqLm', '7329149'), - (7, 2721, 'not_attending', '2024-06-18 22:59:31', '2025-12-17 19:46:29', 'dOxojqLm', '7331456'), - (7, 2722, 'attending', '2024-07-08 21:06:36', '2025-12-17 19:46:29', 'dOxojqLm', '7331457'), - (7, 2753, 'not_attending', '2024-07-13 22:20:30', '2025-12-17 19:46:30', 'dOxojqLm', '7355538'), - (7, 2761, 'attending', '2024-07-16 20:07:29', '2025-12-17 19:46:30', 'dOxojqLm', '7363412'), - (7, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dOxojqLm', '7363643'), - (7, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dOxojqLm', '7368606'), - (7, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dOxojqLm', '7397462'), - (7, 2821, 'maybe', '2024-09-18 21:41:46', '2025-12-17 19:46:26', 'dOxojqLm', '7424275'), - (7, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dOxojqLm', '7424276'), - (7, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dOxojqLm', '7432751'), - (7, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dOxojqLm', '7432752'), - (7, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dOxojqLm', '7432753'), - (7, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dOxojqLm', '7432754'), - (7, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dOxojqLm', '7432755'), - (7, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dOxojqLm', '7432756'), - (7, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOxojqLm', '7432758'), - (7, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dOxojqLm', '7432759'), - (7, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dOxojqLm', '7433834'), - (7, 2843, 'attending', '2024-09-23 22:50:13', '2025-12-17 19:46:25', 'dOxojqLm', '7450219'), - (7, 2850, 'maybe', '2024-09-29 01:54:46', '2025-12-17 19:46:25', 'dOxojqLm', '7457153'), - (7, 2860, 'maybe', '2024-10-05 22:02:04', '2025-12-17 19:46:26', 'dOxojqLm', '7469393'), - (7, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dOxojqLm', '7470197'), - (7, 2868, 'attending', '2024-10-05 22:01:36', '2025-12-17 19:46:26', 'dOxojqLm', '7474506'), - (7, 2875, 'maybe', '2024-10-09 21:25:34', '2025-12-17 19:46:26', 'dOxojqLm', '7482241'), - (7, 2885, 'attending', '2024-10-17 21:25:03', '2025-12-17 19:46:26', 'dOxojqLm', '7649944'), - (7, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dOxojqLm', '7685613'), - (7, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dOxojqLm', '7688194'), - (7, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dOxojqLm', '7688196'), - (7, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dOxojqLm', '7688289'), - (7, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dOxojqLm', '7692763'), - (7, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dOxojqLm', '7697552'), - (7, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dOxojqLm', '7699878'), - (7, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dOxojqLm', '7704043'), - (7, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dOxojqLm', '7712467'), - (7, 2925, 'maybe', '2024-12-14 23:41:02', '2025-12-17 19:46:21', 'dOxojqLm', '7713584'), - (7, 2926, 'not_attending', '2024-11-29 20:43:39', '2025-12-17 19:46:21', 'dOxojqLm', '7713585'), - (7, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dOxojqLm', '7713586'), - (7, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dOxojqLm', '7738518'), - (7, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dOxojqLm', '7750636'), - (7, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dOxojqLm', '7796540'), - (7, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dOxojqLm', '7796541'), - (7, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dOxojqLm', '7796542'), - (7, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dOxojqLm', '7825913'), - (7, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dOxojqLm', '7825920'), - (7, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dOxojqLm', '7826209'), - (7, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dOxojqLm', '7834742'), - (7, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dOxojqLm', '7842108'), - (7, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dOxojqLm', '7842902'), - (7, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dOxojqLm', '7842903'), - (7, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dOxojqLm', '7842904'), - (7, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dOxojqLm', '7842905'), - (7, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dOxojqLm', '7855719'), - (7, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dOxojqLm', '7860683'), - (7, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dOxojqLm', '7860684'), - (7, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dOxojqLm', '7866095'), - (7, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dOxojqLm', '7869170'), - (7, 3014, 'attending', '2025-03-22 21:05:38', '2025-12-17 19:46:19', 'dOxojqLm', '7869185'), - (7, 3015, 'maybe', '2025-04-05 21:54:41', '2025-12-17 19:46:20', 'dOxojqLm', '7869186'), - (7, 3016, 'attending', '2025-04-05 21:54:31', '2025-12-17 19:46:20', 'dOxojqLm', '7869187'), - (7, 3017, 'attending', '2025-03-22 21:05:36', '2025-12-17 19:46:19', 'dOxojqLm', '7869188'), - (7, 3028, 'attending', '2025-04-23 14:31:08', '2025-12-17 19:46:20', 'dOxojqLm', '7869199'), - (7, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dOxojqLm', '7869201'), - (7, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dOxojqLm', '7877465'), - (7, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dOxojqLm', '7888250'), - (7, 3070, 'not_attending', '2025-04-02 21:31:58', '2025-12-17 19:46:20', 'dOxojqLm', '7894829'), - (7, 3088, 'maybe', '2025-06-08 20:05:19', '2025-12-17 19:46:15', 'dOxojqLm', '7904777'), - (7, 3095, 'attending', '2025-05-03 22:17:04', '2025-12-17 19:46:20', 'dOxojqLm', '8342293'), - (7, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dOxojqLm', '8349164'), - (7, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dOxojqLm', '8349545'), - (7, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dOxojqLm', '8353584'), - (7, 3130, 'maybe', '2025-05-24 21:19:06', '2025-12-17 19:46:21', 'dOxojqLm', '8367403'), - (7, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dOxojqLm', '8368028'), - (7, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dOxojqLm', '8368029'), - (7, 3133, 'attending', '2025-05-28 22:47:01', '2025-12-17 19:46:14', 'dOxojqLm', '8368030'), - (7, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dOxojqLm', '8388462'), - (7, 3150, 'maybe', '2025-06-05 22:57:00', '2025-12-17 19:46:15', 'dOxojqLm', '8393174'), - (7, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dOxojqLm', '8400273'), - (7, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dOxojqLm', '8400274'), - (7, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dOxojqLm', '8400275'), - (7, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dOxojqLm', '8400276'), - (7, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dOxojqLm', '8404977'), - (7, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dOxojqLm', '8430783'), - (7, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dOxojqLm', '8430784'), - (7, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dOxojqLm', '8430799'), - (7, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dOxojqLm', '8430800'), - (7, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dOxojqLm', '8430801'), - (7, 3188, 'attending', '2025-07-09 20:49:31', '2025-12-17 19:46:17', 'dOxojqLm', '8438709'), - (7, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dOxojqLm', '8457738'), - (7, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dOxojqLm', '8459566'), - (7, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dOxojqLm', '8459567'), - (7, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dOxojqLm', '8459568'), - (7, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dOxojqLm', '8461032'), - (7, 3214, 'attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dOxojqLm', '8477877'), - (7, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dOxojqLm', '8485688'), - (7, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dOxojqLm', '8490587'), - (7, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dOxojqLm', '8493552'), - (7, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dOxojqLm', '8493553'), - (7, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dOxojqLm', '8493554'), - (7, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dOxojqLm', '8493555'), - (7, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dOxojqLm', '8493556'), - (7, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dOxojqLm', '8493557'), - (7, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dOxojqLm', '8493558'), - (7, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dOxojqLm', '8493559'), - (7, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dOxojqLm', '8493560'), - (7, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dOxojqLm', '8493561'), - (7, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dOxojqLm', '8493572'), - (7, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dOxojqLm', '8540725'), - (7, 3294, 'attending', '2025-10-18 16:52:31', '2025-12-17 19:46:14', 'dOxojqLm', '8546775'), - (7, 3302, 'attending', '2025-11-12 01:35:52', '2025-12-17 19:46:14', 'dOxojqLm', '8550022'), - (7, 3304, 'attending', '2025-11-12 01:35:55', '2025-12-17 19:46:14', 'dOxojqLm', '8550024'), - (7, 3305, 'attending', '2025-11-12 01:36:00', '2025-12-17 19:46:11', 'dOxojqLm', '8550025'), - (7, 3306, 'attending', '2025-12-01 20:47:45', '2025-12-17 19:46:11', 'dOxojqLm', '8550026'), - (7, 3307, 'not_attending', '2025-12-01 20:47:40', '2025-12-17 19:46:11', 'dOxojqLm', '8550027'), - (7, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dOxojqLm', '8555421'), - (8, 2522, 'attending', '2024-07-14 21:33:11', '2025-12-17 19:46:30', 'Arr7X9XA', '7074362'), - (8, 2531, 'attending', '2024-08-29 21:34:40', '2025-12-17 19:46:32', 'Arr7X9XA', '7074378'), - (8, 2532, 'attending', '2024-09-04 20:27:14', '2025-12-17 19:46:32', 'Arr7X9XA', '7074383'), - (8, 2533, 'not_attending', '2024-08-18 19:05:48', '2025-12-17 19:46:32', 'Arr7X9XA', '7074384'), - (8, 2691, 'attending', '2024-07-14 12:49:47', '2025-12-17 19:46:30', 'Arr7X9XA', '7324076'), - (8, 2692, 'attending', '2024-07-21 12:34:07', '2025-12-17 19:46:30', 'Arr7X9XA', '7324077'), - (8, 2693, 'attending', '2024-07-28 12:18:38', '2025-12-17 19:46:31', 'Arr7X9XA', '7324078'), - (8, 2694, 'attending', '2024-08-08 01:53:12', '2025-12-17 19:46:31', 'Arr7X9XA', '7324079'), - (8, 2695, 'attending', '2024-08-13 17:10:05', '2025-12-17 19:46:31', 'Arr7X9XA', '7324080'), - (8, 2696, 'attending', '2024-08-18 19:05:59', '2025-12-17 19:46:32', 'Arr7X9XA', '7324081'), - (8, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Arr7X9XA', '7324082'), - (8, 2698, 'attending', '2024-09-02 21:19:42', '2025-12-17 19:46:24', 'Arr7X9XA', '7324083'), - (8, 2712, 'attending', '2024-07-29 15:27:18', '2025-12-17 19:46:31', 'Arr7X9XA', '7326525'), - (8, 2722, 'not_attending', '2024-07-12 22:43:28', '2025-12-17 19:46:30', 'Arr7X9XA', '7331457'), - (8, 2757, 'attending', '2024-07-14 12:47:37', '2025-12-17 19:46:30', 'Arr7X9XA', '7358733'), - (8, 2759, 'attending', '2024-07-12 18:19:06', '2025-12-17 19:46:30', 'Arr7X9XA', '7359624'), - (8, 2764, 'attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'Arr7X9XA', '7363595'), - (8, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'Arr7X9XA', '7363643'), - (8, 2768, 'attending', '2024-07-18 15:49:59', '2025-12-17 19:46:30', 'Arr7X9XA', '7366031'), - (8, 2769, 'not_attending', '2024-07-20 13:17:08', '2025-12-17 19:46:30', 'Arr7X9XA', '7366803'), - (8, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Arr7X9XA', '7368606'), - (8, 2776, 'attending', '2024-07-23 18:34:04', '2025-12-17 19:46:30', 'Arr7X9XA', '7370690'), - (8, 2781, 'attending', '2024-07-28 12:19:16', '2025-12-17 19:46:30', 'Arr7X9XA', '7373194'), - (8, 2783, 'attending', '2024-08-03 15:31:51', '2025-12-17 19:46:31', 'Arr7X9XA', '7379699'), - (8, 2786, 'maybe', '2024-08-04 02:55:41', '2025-12-17 19:46:31', 'Arr7X9XA', '7381403'), - (8, 2799, 'attending', '2024-08-12 16:18:02', '2025-12-17 19:46:31', 'Arr7X9XA', '7395922'), - (8, 2800, 'not_attending', '2024-08-15 21:45:15', '2025-12-17 19:46:31', 'Arr7X9XA', '7397405'), - (8, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Arr7X9XA', '7397462'), - (8, 2803, 'attending', '2024-08-17 15:57:13', '2025-12-17 19:46:32', 'Arr7X9XA', '7397869'), - (8, 2805, 'attending', '2024-08-20 22:10:33', '2025-12-17 19:46:32', 'Arr7X9XA', '7403620'), - (8, 2813, 'attending', '2024-09-06 22:25:01', '2025-12-17 19:46:24', 'Arr7X9XA', '7424105'), - (8, 2821, 'attending', '2024-10-12 13:40:35', '2025-12-17 19:46:26', 'Arr7X9XA', '7424275'), - (8, 2822, 'attending', '2024-11-10 20:18:49', '2025-12-17 19:46:26', 'Arr7X9XA', '7424276'), - (8, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Arr7X9XA', '7432751'), - (8, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Arr7X9XA', '7432752'), - (8, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Arr7X9XA', '7432753'), - (8, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Arr7X9XA', '7432754'), - (8, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Arr7X9XA', '7432755'), - (8, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Arr7X9XA', '7432756'), - (8, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Arr7X9XA', '7432758'), - (8, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Arr7X9XA', '7432759'), - (8, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Arr7X9XA', '7433834'), - (8, 2834, 'attending', '2024-09-14 13:38:20', '2025-12-17 19:46:25', 'Arr7X9XA', '7433852'), - (8, 2839, 'not_attending', '2024-09-24 20:19:36', '2025-12-17 19:46:25', 'Arr7X9XA', '7439262'), - (8, 2844, 'attending', '2024-09-20 17:20:14', '2025-12-17 19:46:25', 'Arr7X9XA', '7450233'), - (8, 2855, 'attending', '2024-10-03 17:59:00', '2025-12-17 19:46:26', 'Arr7X9XA', '7469385'), - (8, 2861, 'attending', '2024-10-03 17:58:53', '2025-12-17 19:46:26', 'Arr7X9XA', '7469826'), - (8, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Arr7X9XA', '7470197'), - (8, 2867, 'attending', '2024-12-06 20:42:33', '2025-12-17 19:46:21', 'Arr7X9XA', '7471202'), - (8, 2878, 'attending', '2024-10-16 12:06:32', '2025-12-17 19:46:26', 'Arr7X9XA', '7633857'), - (8, 2880, 'attending', '2024-10-12 13:40:22', '2025-12-17 19:46:26', 'Arr7X9XA', '7636316'), - (8, 2881, 'attending', '2024-11-06 21:32:01', '2025-12-17 19:46:26', 'Arr7X9XA', '7644047'), - (8, 2883, 'attending', '2024-10-23 20:26:40', '2025-12-17 19:46:26', 'Arr7X9XA', '7649157'), - (8, 2889, 'attending', '2024-10-28 20:29:43', '2025-12-17 19:46:26', 'Arr7X9XA', '7660485'), - (8, 2892, 'attending', '2024-10-30 19:53:40', '2025-12-17 19:46:26', 'Arr7X9XA', '7672064'), - (8, 2893, 'attending', '2024-11-05 14:53:55', '2025-12-17 19:46:26', 'Arr7X9XA', '7672705'), - (8, 2896, 'attending', '2024-11-11 00:31:38', '2025-12-17 19:46:27', 'Arr7X9XA', '7683647'), - (8, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'Arr7X9XA', '7685613'), - (8, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Arr7X9XA', '7688194'), - (8, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Arr7X9XA', '7688196'), - (8, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Arr7X9XA', '7688289'), - (8, 2906, 'attending', '2024-11-09 22:08:28', '2025-12-17 19:46:26', 'Arr7X9XA', '7689366'), - (8, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Arr7X9XA', '7692763'), - (8, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Arr7X9XA', '7697552'), - (8, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Arr7X9XA', '7699878'), - (8, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Arr7X9XA', '7704043'), - (8, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Arr7X9XA', '7712467'), - (8, 2925, 'attending', '2024-12-05 18:12:14', '2025-12-17 19:46:21', 'Arr7X9XA', '7713584'), - (8, 2926, 'attending', '2024-12-05 18:12:09', '2025-12-17 19:46:21', 'Arr7X9XA', '7713585'), - (8, 2927, 'not_attending', '2024-12-05 18:12:16', '2025-12-17 19:46:22', 'Arr7X9XA', '7713586'), - (8, 2929, 'attending', '2024-12-08 20:37:56', '2025-12-17 19:46:21', 'Arr7X9XA', '7723465'), - (8, 2930, 'attending', '2024-12-07 00:51:27', '2025-12-17 19:46:21', 'Arr7X9XA', '7724554'), - (8, 2947, 'attending', '2024-12-09 21:15:56', '2025-12-17 19:46:21', 'Arr7X9XA', '7727445'), - (8, 2951, 'not_attending', '2024-12-11 22:27:25', '2025-12-17 19:46:21', 'Arr7X9XA', '7729509'), - (8, 2954, 'attending', '2024-12-14 22:55:46', '2025-12-17 19:46:21', 'Arr7X9XA', '7734260'), - (8, 2955, 'attending', '2024-12-15 20:42:32', '2025-12-17 19:46:21', 'Arr7X9XA', '7735094'), - (8, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Arr7X9XA', '7738518'), - (8, 2962, 'attending', '2024-12-26 02:55:48', '2025-12-17 19:46:22', 'Arr7X9XA', '7750632'), - (8, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Arr7X9XA', '7750636'), - (8, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Arr7X9XA', '7796540'), - (8, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Arr7X9XA', '7796541'), - (8, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Arr7X9XA', '7796542'), - (8, 2974, 'attending', '2025-01-18 20:44:45', '2025-12-17 19:46:22', 'Arr7X9XA', '7814958'), - (8, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Arr7X9XA', '7825913'), - (8, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Arr7X9XA', '7826209'), - (8, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Arr7X9XA', '7834742'), - (8, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'Arr7X9XA', '7842108'), - (8, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Arr7X9XA', '7842902'), - (8, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Arr7X9XA', '7842903'), - (8, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Arr7X9XA', '7842904'), - (8, 2994, 'maybe', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Arr7X9XA', '7842905'), - (8, 2999, 'attending', '2025-02-13 14:30:37', '2025-12-17 19:46:23', 'Arr7X9XA', '7844784'), - (8, 3001, 'attending', '2025-02-21 23:49:53', '2025-12-17 19:46:24', 'Arr7X9XA', '7854184'), - (8, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Arr7X9XA', '7855719'), - (8, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Arr7X9XA', '7860683'), - (8, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Arr7X9XA', '7860684'), - (8, 3009, 'attending', '2025-03-02 14:57:16', '2025-12-17 19:46:18', 'Arr7X9XA', '7864019'), - (8, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Arr7X9XA', '7866095'), - (8, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Arr7X9XA', '7869170'), - (8, 3015, 'not_attending', '2025-04-26 16:44:42', '2025-12-17 19:46:20', 'Arr7X9XA', '7869186'), - (8, 3016, 'attending', '2025-04-16 15:57:10', '2025-12-17 19:46:20', 'Arr7X9XA', '7869187'), - (8, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Arr7X9XA', '7869188'), - (8, 3018, 'attending', '2025-04-12 01:21:59', '2025-12-17 19:46:20', 'Arr7X9XA', '7869189'), - (8, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Arr7X9XA', '7869201'), - (8, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Arr7X9XA', '7877465'), - (8, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'Arr7X9XA', '7878570'), - (8, 3039, 'maybe', '2025-03-19 20:51:57', '2025-12-17 19:46:19', 'Arr7X9XA', '7881992'), - (8, 3042, 'attending', '2025-03-15 14:14:23', '2025-12-17 19:46:19', 'Arr7X9XA', '7882467'), - (8, 3046, 'attending', '2025-04-12 21:00:38', '2025-12-17 19:46:20', 'Arr7X9XA', '7882692'), - (8, 3054, 'attending', '2025-03-18 16:45:59', '2025-12-17 19:46:19', 'Arr7X9XA', '7884168'), - (8, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Arr7X9XA', '7888250'), - (8, 3061, 'attending', '2025-04-02 20:12:41', '2025-12-17 19:46:19', 'Arr7X9XA', '7892590'), - (8, 3074, 'attending', '2025-04-05 12:41:10', '2025-12-17 19:46:19', 'Arr7X9XA', '7897784'), - (8, 3075, 'maybe', '2025-04-18 13:20:19', '2025-12-17 19:46:20', 'Arr7X9XA', '7898896'), - (8, 3076, 'not_attending', '2025-04-05 21:24:48', '2025-12-17 19:46:20', 'Arr7X9XA', '7899007'), - (8, 3078, 'attending', '2025-04-06 14:35:02', '2025-12-17 19:46:20', 'Arr7X9XA', '7901213'), - (8, 3079, 'not_attending', '2025-04-06 17:28:05', '2025-12-17 19:46:20', 'Arr7X9XA', '7901439'), - (8, 3080, 'attending', '2025-04-06 16:39:24', '2025-12-17 19:46:20', 'Arr7X9XA', '7901441'), - (8, 3087, 'attending', '2025-04-16 15:05:38', '2025-12-17 19:46:20', 'Arr7X9XA', '7903856'), - (8, 3088, 'attending', '2025-06-09 19:54:23', '2025-12-17 19:46:15', 'Arr7X9XA', '7904777'), - (8, 3094, 'attending', '2025-05-07 22:28:13', '2025-12-17 19:46:21', 'Arr7X9XA', '8342292'), - (8, 3095, 'attending', '2025-04-29 14:49:57', '2025-12-17 19:46:20', 'Arr7X9XA', '8342293'), - (8, 3097, 'not_attending', '2025-04-25 12:22:11', '2025-12-17 19:46:20', 'Arr7X9XA', '8342993'), - (8, 3100, 'attending', '2025-04-22 12:42:46', '2025-12-17 19:46:20', 'Arr7X9XA', '8343977'), - (8, 3103, 'attending', '2025-04-26 16:44:35', '2025-12-17 19:46:20', 'Arr7X9XA', '8347770'), - (8, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Arr7X9XA', '8349164'), - (8, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Arr7X9XA', '8349545'), - (8, 3110, 'attending', '2025-04-30 16:55:08', '2025-12-17 19:46:20', 'Arr7X9XA', '8353484'), - (8, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'Arr7X9XA', '8353584'), - (8, 3119, 'attending', '2025-05-13 19:04:34', '2025-12-17 19:46:21', 'Arr7X9XA', '8360035'), - (8, 3120, 'attending', '2025-05-07 22:28:25', '2025-12-17 19:46:21', 'Arr7X9XA', '8360736'), - (8, 3121, 'attending', '2025-05-13 00:32:52', '2025-12-17 19:46:21', 'Arr7X9XA', '8362730'), - (8, 3122, 'attending', '2025-05-09 20:16:56', '2025-12-17 19:46:21', 'Arr7X9XA', '8362978'), - (8, 3123, 'attending', '2025-05-08 18:49:10', '2025-12-17 19:46:21', 'Arr7X9XA', '8363523'), - (8, 3124, 'maybe', '2025-05-09 20:17:05', '2025-12-17 19:46:21', 'Arr7X9XA', '8363566'), - (8, 3126, 'maybe', '2025-05-13 22:28:16', '2025-12-17 19:46:21', 'Arr7X9XA', '8365614'), - (8, 3127, 'attending', '2025-05-11 23:06:07', '2025-12-17 19:46:21', 'Arr7X9XA', '8365615'), - (8, 3129, 'attending', '2025-05-11 23:40:24', '2025-12-17 19:46:21', 'Arr7X9XA', '8366441'), - (8, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Arr7X9XA', '8368028'), - (8, 3132, 'not_attending', '2025-05-15 19:59:03', '2025-12-17 19:46:21', 'Arr7X9XA', '8368029'), - (8, 3133, 'attending', '2025-05-15 19:59:06', '2025-12-17 19:46:14', 'Arr7X9XA', '8368030'), - (8, 3135, 'not_attending', '2025-05-17 13:41:35', '2025-12-17 19:46:21', 'Arr7X9XA', '8373126'), - (8, 3136, 'maybe', '2025-05-21 19:35:02', '2025-12-17 19:46:21', 'Arr7X9XA', '8374152'), - (8, 3137, 'maybe', '2025-05-21 19:34:57', '2025-12-17 19:46:21', 'Arr7X9XA', '8374153'), - (8, 3138, 'attending', '2025-05-18 16:47:49', '2025-12-17 19:46:21', 'Arr7X9XA', '8376037'), - (8, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Arr7X9XA', '8388462'), - (8, 3150, 'attending', '2025-06-21 16:53:03', '2025-12-17 19:46:15', 'Arr7X9XA', '8393174'), - (8, 3151, 'attending', '2025-05-31 21:41:12', '2025-12-17 19:46:14', 'Arr7X9XA', '8393497'), - (8, 3153, 'maybe', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Arr7X9XA', '8400273'), - (8, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'Arr7X9XA', '8400274'), - (8, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Arr7X9XA', '8400275'), - (8, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Arr7X9XA', '8400276'), - (8, 3159, 'maybe', '2025-06-09 19:54:35', '2025-12-17 19:46:15', 'Arr7X9XA', '8401410'), - (8, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Arr7X9XA', '8404977'), - (8, 3173, 'attending', '2025-06-14 18:16:14', '2025-12-17 19:46:15', 'Arr7X9XA', '8410806'), - (8, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Arr7X9XA', '8430783'), - (8, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Arr7X9XA', '8430784'), - (8, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Arr7X9XA', '8430799'), - (8, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Arr7X9XA', '8430800'), - (8, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Arr7X9XA', '8430801'), - (8, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Arr7X9XA', '8438709'), - (8, 3190, 'maybe', '2025-07-18 15:36:45', '2025-12-17 19:46:17', 'Arr7X9XA', '8443962'), - (8, 3192, 'attending', '2025-07-15 16:07:18', '2025-12-17 19:46:17', 'Arr7X9XA', '8456429'), - (8, 3193, 'attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Arr7X9XA', '8457738'), - (8, 3194, 'maybe', '2025-07-17 22:37:32', '2025-12-17 19:46:17', 'Arr7X9XA', '8457740'), - (8, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Arr7X9XA', '8459566'), - (8, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Arr7X9XA', '8459567'), - (8, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Arr7X9XA', '8461032'), - (8, 3211, 'attending', '2025-08-08 14:47:53', '2025-12-17 19:46:17', 'Arr7X9XA', '8477785'), - (8, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Arr7X9XA', '8477877'), - (8, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'Arr7X9XA', '8485688'), - (8, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Arr7X9XA', '8490587'), - (8, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Arr7X9XA', '8493552'), - (8, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Arr7X9XA', '8493553'), - (8, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Arr7X9XA', '8493554'), - (8, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Arr7X9XA', '8493555'), - (8, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Arr7X9XA', '8493556'), - (8, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Arr7X9XA', '8493557'), - (8, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Arr7X9XA', '8493558'), - (8, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Arr7X9XA', '8493559'), - (8, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Arr7X9XA', '8493560'), - (8, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Arr7X9XA', '8493561'), - (8, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Arr7X9XA', '8493572'), - (8, 3269, 'not_attending', '2025-09-25 16:03:44', '2025-12-17 19:46:12', 'Arr7X9XA', '8514582'), - (8, 3272, 'attending', '2025-09-20 22:11:34', '2025-12-17 19:46:12', 'Arr7X9XA', '8524068'), - (8, 3275, 'attending', '2025-09-20 22:21:20', '2025-12-17 19:46:12', 'Arr7X9XA', '8527786'), - (8, 3277, 'attending', '2025-09-27 18:18:50', '2025-12-17 19:46:12', 'Arr7X9XA', '8533938'), - (8, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Arr7X9XA', '8540725'), - (8, 3295, 'attending', '2025-10-28 16:23:53', '2025-12-17 19:46:14', 'Arr7X9XA', '8547541'), - (8, 3300, 'not_attending', '2025-11-08 21:28:29', '2025-12-17 19:46:14', 'Arr7X9XA', '8549145'), - (8, 3304, 'attending', '2025-11-22 21:02:17', '2025-12-17 19:46:14', 'Arr7X9XA', '8550024'), - (8, 3305, 'attending', '2025-12-02 18:58:55', '2025-12-17 19:46:11', 'Arr7X9XA', '8550025'), - (8, 3306, 'not_attending', '2025-12-14 00:10:04', '2025-12-17 19:46:11', 'Arr7X9XA', '8550026'), - (8, 3314, 'attending', '2025-11-01 00:12:00', '2025-12-17 19:46:14', 'Arr7X9XA', '8551821'), - (8, 3315, 'attending', '2025-11-05 01:13:48', '2025-12-17 19:46:14', 'Arr7X9XA', '8552486'), - (8, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Arr7X9XA', '8555421'), - (8, 3326, 'attending', '2025-11-20 00:28:50', '2025-12-17 19:46:14', 'Arr7X9XA', '8556661'), - (8, 3327, 'attending', '2025-12-05 00:39:00', '2025-12-17 19:46:11', 'Arr7X9XA', '8557174'), - (8, 3331, 'attending', '2025-12-04 23:08:43', '2025-12-17 19:46:11', 'Arr7X9XA', '8562166'), - (8, 3334, 'attending', '2025-12-08 21:00:13', '2025-12-17 19:46:11', 'Arr7X9XA', '8563246'), - (8, 3336, 'attending', '2025-12-15 20:55:40', '2025-12-17 19:46:11', 'Arr7X9XA', '8563248'), - (8, 3337, 'attending', '2025-12-12 14:34:26', '2025-12-17 19:46:11', 'Arr7X9XA', '8563315'), - (8, 3343, 'attending', '2025-12-17 00:02:45', '2025-12-17 19:46:11', 'Arr7X9XA', '8564411'), - (9, 3241, 'attending', '2025-10-11 20:11:01', '2025-12-17 19:46:13', 'dKw8DJ5d', '8493557'), - (9, 3242, 'attending', '2025-10-22 19:35:13', '2025-12-17 19:46:14', 'dKw8DJ5d', '8493558'), - (9, 3243, 'attending', '2025-10-14 19:49:49', '2025-12-17 19:46:14', 'dKw8DJ5d', '8493559'), - (9, 3253, 'not_attending', '2025-10-26 16:34:39', '2025-12-17 19:46:14', 'dKw8DJ5d', '8493572'), - (9, 3288, 'attending', '2025-10-11 09:04:09', '2025-12-17 19:46:13', 'dKw8DJ5d', '8542408'), - (9, 3289, 'not_attending', '2025-10-22 22:09:06', '2025-12-17 19:46:14', 'dKw8DJ5d', '8542939'), - (9, 3295, 'attending', '2025-10-29 21:05:57', '2025-12-17 19:46:14', 'dKw8DJ5d', '8547541'), - (9, 3300, 'attending', '2025-11-05 21:08:00', '2025-12-17 19:46:14', 'dKw8DJ5d', '8549145'), - (9, 3302, 'attending', '2025-11-11 21:49:24', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550022'), - (9, 3304, 'attending', '2025-11-18 00:16:58', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550024'), - (9, 3305, 'attending', '2025-12-02 23:12:34', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550025'), - (9, 3306, 'not_attending', '2025-12-07 04:37:28', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550026'), - (9, 3307, 'attending', '2025-12-18 23:24:23', '2025-12-18 23:24:23', NULL, NULL), - (9, 3308, 'not_attending', '2025-11-02 16:34:33', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550408'), - (9, 3309, 'not_attending', '2025-11-02 16:34:42', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550409'), - (9, 3310, 'not_attending', '2025-11-08 16:35:53', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550410'), - (9, 3311, 'not_attending', '2025-12-02 23:11:57', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550412'), - (9, 3312, 'not_attending', '2025-12-02 23:12:02', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550413'), - (9, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dKw8DJ5d', '8555421'), - (9, 3331, 'attending', '2025-12-02 21:10:47', '2025-12-17 19:46:11', 'dKw8DJ5d', '8562166'), - (9, 3333, 'attending', '2025-12-13 16:59:32', '2025-12-17 19:46:11', 'dKw8DJ5d', '8562500'), - (9, 3337, 'attending', '2025-12-07 04:37:22', '2025-12-17 19:46:11', 'dKw8DJ5d', '8563315'), - (10, 3305, 'maybe', '2025-12-03 13:49:43', '2025-12-17 19:46:11', 'dKnJnJa4', '8550025'), - (10, 3310, 'attending', '2025-12-01 13:54:13', '2025-12-17 19:46:11', 'dKnJnJa4', '8550410'), - (10, 3311, 'maybe', '2025-12-04 20:49:07', '2025-12-17 19:46:11', 'dKnJnJa4', '8550412'), - (10, 3330, 'attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', 'dKnJnJa4', '8561720'), - (10, 3332, 'not_attending', '2025-12-03 13:49:37', '2025-12-17 19:46:11', 'dKnJnJa4', '8562248'), - (10, 3333, 'maybe', '2025-12-06 15:59:09', '2025-12-17 19:46:11', 'dKnJnJa4', '8562500'), - (11, 2136, 'not_attending', '2023-07-23 02:19:46', '2025-12-17 19:46:53', 'mjj86rgm', '6187966'), - (11, 2148, 'attending', '2023-07-23 02:18:56', '2025-12-17 19:46:53', 'mjj86rgm', '6335667'), - (11, 2159, 'attending', '2023-07-22 03:01:47', '2025-12-17 19:46:53', 'mjj86rgm', '6338355'), - (11, 2160, 'maybe', '2023-07-26 15:41:14', '2025-12-17 19:46:54', 'mjj86rgm', '6338358'), - (11, 2165, 'attending', '2023-08-01 18:11:10', '2025-12-17 19:46:54', 'mjj86rgm', '6342044'), - (11, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mjj86rgm', '6343294'), - (11, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mjj86rgm', '6347034'), - (11, 2177, 'attending', '2023-08-05 03:42:19', '2025-12-17 19:46:55', 'mjj86rgm', '6347053'), - (11, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mjj86rgm', '6347056'), - (11, 2180, 'attending', '2023-07-27 17:37:28', '2025-12-17 19:46:54', 'mjj86rgm', '6348788'), - (11, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mjj86rgm', '6353830'), - (11, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mjj86rgm', '6353831'), - (11, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mjj86rgm', '6357867'), - (11, 2190, 'attending', '2023-08-04 12:56:13', '2025-12-17 19:46:55', 'mjj86rgm', '6357892'), - (11, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mjj86rgm', '6358652'), - (11, 2196, 'not_attending', '2023-09-05 19:46:17', '2025-12-17 19:46:56', 'mjj86rgm', '6359398'), - (11, 2197, 'attending', '2023-09-13 12:52:03', '2025-12-17 19:46:44', 'mjj86rgm', '6359399'), - (11, 2199, 'attending', '2023-08-10 23:05:17', '2025-12-17 19:46:55', 'mjj86rgm', '6359849'), - (11, 2200, 'attending', '2023-08-08 13:28:54', '2025-12-17 19:46:55', 'mjj86rgm', '6359850'), - (11, 2202, 'attending', '2023-08-06 18:29:00', '2025-12-17 19:46:54', 'mjj86rgm', '6360509'), - (11, 2204, 'not_attending', '2023-08-18 01:24:50', '2025-12-17 19:46:55', 'mjj86rgm', '6361542'), - (11, 2206, 'attending', '2023-08-08 17:04:29', '2025-12-17 19:46:55', 'mjj86rgm', '6361659'), - (11, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'mjj86rgm', '6361709'), - (11, 2209, 'maybe', '2023-08-21 09:36:48', '2025-12-17 19:46:55', 'mjj86rgm', '6361710'), - (11, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mjj86rgm', '6361711'), - (11, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mjj86rgm', '6361712'), - (11, 2212, 'not_attending', '2023-09-24 01:42:18', '2025-12-17 19:46:45', 'mjj86rgm', '6361713'), - (11, 2214, 'attending', '2023-08-13 16:25:59', '2025-12-17 19:46:55', 'mjj86rgm', '6363218'), - (11, 2215, 'attending', '2023-08-11 11:45:03', '2025-12-17 19:46:55', 'mjj86rgm', '6363479'), - (11, 2217, 'maybe', '2023-08-14 18:37:01', '2025-12-17 19:46:55', 'mjj86rgm', '6364333'), - (11, 2220, 'maybe', '2023-08-28 04:54:19', '2025-12-17 19:46:56', 'mjj86rgm', '6367310'), - (11, 2227, 'attending', '2023-08-20 17:24:28', '2025-12-17 19:46:55', 'mjj86rgm', '6370581'), - (11, 2232, 'not_attending', '2023-08-24 02:33:58', '2025-12-17 19:46:55', 'mjj86rgm', '6374818'), - (11, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mjj86rgm', '6382573'), - (11, 2239, 'not_attending', '2023-08-31 18:00:06', '2025-12-17 19:46:56', 'mjj86rgm', '6387592'), - (11, 2240, 'attending', '2023-09-05 18:29:51', '2025-12-17 19:46:56', 'mjj86rgm', '6388603'), - (11, 2241, 'attending', '2023-09-05 15:39:26', '2025-12-17 19:46:44', 'mjj86rgm', '6388604'), - (11, 2242, 'attending', '2023-09-22 17:33:07', '2025-12-17 19:46:45', 'mjj86rgm', '6388606'), - (11, 2243, 'attending', '2023-09-05 11:29:34', '2025-12-17 19:46:56', 'mjj86rgm', '6393686'), - (11, 2244, 'attending', '2023-09-05 11:30:41', '2025-12-17 19:46:44', 'mjj86rgm', '6393700'), - (11, 2245, 'attending', '2023-09-14 23:09:21', '2025-12-17 19:46:45', 'mjj86rgm', '6393703'), - (11, 2247, 'attending', '2023-09-05 19:43:13', '2025-12-17 19:46:56', 'mjj86rgm', '6394628'), - (11, 2248, 'attending', '2023-09-07 16:19:07', '2025-12-17 19:46:44', 'mjj86rgm', '6394629'), - (11, 2249, 'attending', '2023-09-18 13:41:52', '2025-12-17 19:46:45', 'mjj86rgm', '6394630'), - (11, 2250, 'attending', '2023-09-18 22:30:46', '2025-12-17 19:46:45', 'mjj86rgm', '6394631'), - (11, 2252, 'maybe', '2023-09-10 19:59:23', '2025-12-17 19:46:45', 'mjj86rgm', '6396837'), - (11, 2253, 'attending', '2023-09-25 20:58:42', '2025-12-17 19:46:45', 'mjj86rgm', '6401811'), - (11, 2258, 'attending', '2023-09-24 01:41:37', '2025-12-17 19:46:45', 'mjj86rgm', '6419492'), - (11, 2259, 'not_attending', '2023-09-22 17:21:01', '2025-12-17 19:46:45', 'mjj86rgm', '6421257'), - (11, 2261, 'attending', '2023-09-28 23:46:10', '2025-12-17 19:46:45', 'mjj86rgm', '6427422'), - (11, 2262, 'attending', '2023-10-01 03:55:53', '2025-12-17 19:46:45', 'mjj86rgm', '6427423'), - (11, 2268, 'attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mjj86rgm', '6440863'), - (11, 2269, 'attending', '2023-10-03 14:29:20', '2025-12-17 19:46:45', 'mjj86rgm', '6442978'), - (11, 2270, 'attending', '2023-10-03 14:24:30', '2025-12-17 19:46:46', 'mjj86rgm', '6443067'), - (11, 2271, 'maybe', '2023-10-06 22:43:11', '2025-12-17 19:46:45', 'mjj86rgm', '6445375'), - (11, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mjj86rgm', '6445440'), - (11, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mjj86rgm', '6453951'), - (11, 2279, 'attending', '2023-10-08 20:04:54', '2025-12-17 19:46:46', 'mjj86rgm', '6455460'), - (11, 2284, 'attending', '2023-10-10 14:12:23', '2025-12-17 19:46:46', 'mjj86rgm', '6460928'), - (11, 2285, 'attending', '2023-10-15 23:07:12', '2025-12-17 19:46:47', 'mjj86rgm', '6460929'), - (11, 2286, 'attending', '2023-11-30 00:34:17', '2025-12-17 19:46:48', 'mjj86rgm', '6460930'), - (11, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mjj86rgm', '6461696'), - (11, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mjj86rgm', '6462129'), - (11, 2290, 'attending', '2023-10-15 20:17:29', '2025-12-17 19:46:46', 'mjj86rgm', '6462214'), - (11, 2291, 'attending', '2023-10-20 22:42:29', '2025-12-17 19:46:46', 'mjj86rgm', '6462215'), - (11, 2292, 'attending', '2023-10-30 22:35:41', '2025-12-17 19:46:47', 'mjj86rgm', '6462216'), - (11, 2293, 'attending', '2023-10-11 21:29:52', '2025-12-17 19:46:46', 'mjj86rgm', '6463218'), - (11, 2299, 'attending', '2023-10-17 11:56:33', '2025-12-17 19:46:46', 'mjj86rgm', '6472181'), - (11, 2300, 'maybe', '2023-10-15 23:07:32', '2025-12-17 19:46:47', 'mjj86rgm', '6472185'), - (11, 2302, 'attending', '2023-10-24 13:43:03', '2025-12-17 19:46:46', 'mjj86rgm', '6482535'), - (11, 2303, 'not_attending', '2023-10-24 15:43:20', '2025-12-17 19:46:47', 'mjj86rgm', '6482691'), - (11, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mjj86rgm', '6482693'), - (11, 2306, 'attending', '2023-11-15 16:14:57', '2025-12-17 19:46:47', 'mjj86rgm', '6484200'), - (11, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mjj86rgm', '6484680'), - (11, 2310, 'attending', '2023-11-06 14:23:44', '2025-12-17 19:46:47', 'mjj86rgm', '6487709'), - (11, 2311, 'attending', '2023-11-07 00:50:55', '2025-12-17 19:46:47', 'mjj86rgm', '6487725'), - (11, 2315, 'attending', '2023-11-06 02:15:30', '2025-12-17 19:46:47', 'mjj86rgm', '6493666'), - (11, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mjj86rgm', '6507741'), - (11, 2318, 'attending', '2023-10-30 15:02:20', '2025-12-17 19:46:47', 'mjj86rgm', '6508566'), - (11, 2319, 'not_attending', '2023-10-30 15:01:50', '2025-12-17 19:46:47', 'mjj86rgm', '6508567'), - (11, 2320, 'attending', '2023-11-07 04:43:16', '2025-12-17 19:46:47', 'mjj86rgm', '6508647'), - (11, 2322, 'attending', '2023-11-09 20:16:49', '2025-12-17 19:46:48', 'mjj86rgm', '6514659'), - (11, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mjj86rgm', '6514660'), - (11, 2324, 'attending', '2023-12-09 18:12:58', '2025-12-17 19:46:49', 'mjj86rgm', '6514662'), - (11, 2325, 'attending', '2023-12-10 23:18:31', '2025-12-17 19:46:36', 'mjj86rgm', '6514663'), - (11, 2329, 'maybe', '2023-11-05 21:14:33', '2025-12-17 19:46:47', 'mjj86rgm', '6517138'), - (11, 2331, 'attending', '2023-11-08 00:48:34', '2025-12-17 19:46:47', 'mjj86rgm', '6518640'), - (11, 2333, 'attending', '2023-11-06 02:52:27', '2025-12-17 19:46:47', 'mjj86rgm', '6519103'), - (11, 2335, 'attending', '2023-11-08 00:48:52', '2025-12-17 19:46:47', 'mjj86rgm', '6534890'), - (11, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mjj86rgm', '6535681'), - (11, 2338, 'attending', '2023-11-23 20:30:39', '2025-12-17 19:46:48', 'mjj86rgm', '6538868'), - (11, 2345, 'attending', '2023-11-23 20:31:15', '2025-12-17 19:46:48', 'mjj86rgm', '6582414'), - (11, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mjj86rgm', '6584747'), - (11, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mjj86rgm', '6587097'), - (11, 2357, 'maybe', '2023-12-18 19:04:56', '2025-12-17 19:46:36', 'mjj86rgm', '6593341'), - (11, 2362, 'not_attending', '2023-12-05 02:24:10', '2025-12-17 19:46:49', 'mjj86rgm', '6605708'), - (11, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mjj86rgm', '6609022'), - (11, 2364, 'attending', '2023-12-07 04:24:32', '2025-12-17 19:46:49', 'mjj86rgm', '6613011'), - (11, 2366, 'attending', '2023-12-10 23:18:02', '2025-12-17 19:46:36', 'mjj86rgm', '6615304'), - (11, 2370, 'attending', '2023-12-12 20:23:41', '2025-12-17 19:46:36', 'mjj86rgm', '6623765'), - (11, 2371, 'attending', '2023-12-13 04:09:59', '2025-12-17 19:46:36', 'mjj86rgm', '6624495'), - (11, 2373, 'attending', '2024-01-08 13:01:45', '2025-12-17 19:46:38', 'mjj86rgm', '6632678'), - (11, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mjj86rgm', '6632757'), - (11, 2377, 'not_attending', '2024-01-03 04:13:45', '2025-12-17 19:46:37', 'mjj86rgm', '6643448'), - (11, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mjj86rgm', '6644187'), - (11, 2382, 'not_attending', '2024-01-03 04:13:18', '2025-12-17 19:46:37', 'mjj86rgm', '6646401'), - (11, 2384, 'not_attending', '2024-01-03 04:13:28', '2025-12-17 19:46:37', 'mjj86rgm', '6648022'), - (11, 2385, 'not_attending', '2024-01-03 04:13:49', '2025-12-17 19:46:37', 'mjj86rgm', '6648943'), - (11, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mjj86rgm', '6648951'), - (11, 2387, 'not_attending', '2024-01-03 04:13:29', '2025-12-17 19:46:37', 'mjj86rgm', '6648952'), - (11, 2388, 'not_attending', '2024-01-03 04:13:41', '2025-12-17 19:46:37', 'mjj86rgm', '6649244'), - (11, 2391, 'attending', '2024-01-07 15:26:09', '2025-12-17 19:46:37', 'mjj86rgm', '6654138'), - (11, 2392, 'maybe', '2024-01-07 15:26:05', '2025-12-17 19:46:37', 'mjj86rgm', '6654412'), - (11, 2394, 'maybe', '2024-01-18 12:07:02', '2025-12-17 19:46:40', 'mjj86rgm', '6654470'), - (11, 2395, 'attending', '2024-01-08 05:08:59', '2025-12-17 19:46:38', 'mjj86rgm', '6654471'), - (11, 2396, 'attending', '2024-01-08 05:09:01', '2025-12-17 19:46:38', 'mjj86rgm', '6655401'), - (11, 2398, 'attending', '2024-01-07 15:25:53', '2025-12-17 19:46:37', 'mjj86rgm', '6657381'), - (11, 2399, 'attending', '2024-01-10 16:10:40', '2025-12-17 19:46:38', 'mjj86rgm', '6657583'), - (11, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mjj86rgm', '6661585'), - (11, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mjj86rgm', '6661588'), - (11, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mjj86rgm', '6661589'), - (11, 2406, 'maybe', '2024-01-15 05:56:59', '2025-12-17 19:46:40', 'mjj86rgm', '6692344'), - (11, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mjj86rgm', '6699906'), - (11, 2408, 'attending', '2024-01-15 05:56:52', '2025-12-17 19:46:40', 'mjj86rgm', '6699907'), - (11, 2409, 'attending', '2024-01-28 00:48:26', '2025-12-17 19:46:41', 'mjj86rgm', '6699909'), - (11, 2410, 'not_attending', '2024-02-05 15:05:32', '2025-12-17 19:46:41', 'mjj86rgm', '6699911'), - (11, 2411, 'not_attending', '2024-02-05 18:30:31', '2025-12-17 19:46:41', 'mjj86rgm', '6699913'), - (11, 2412, 'attending', '2024-02-20 18:48:13', '2025-12-17 19:46:43', 'mjj86rgm', '6700717'), - (11, 2414, 'not_attending', '2024-01-20 18:03:47', '2025-12-17 19:46:40', 'mjj86rgm', '6701000'), - (11, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mjj86rgm', '6701109'), - (11, 2419, 'not_attending', '2024-01-18 15:39:47', '2025-12-17 19:46:41', 'mjj86rgm', '6704505'), - (11, 2421, 'attending', '2024-01-22 04:37:54', '2025-12-17 19:46:40', 'mjj86rgm', '6704598'), - (11, 2423, 'attending', '2024-01-25 04:26:12', '2025-12-17 19:46:40', 'mjj86rgm', '6705141'), - (11, 2424, 'maybe', '2024-01-19 13:17:48', '2025-12-17 19:46:40', 'mjj86rgm', '6705143'), - (11, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mjj86rgm', '6705219'), - (11, 2426, 'not_attending', '2024-01-20 03:19:38', '2025-12-17 19:46:40', 'mjj86rgm', '6705569'), - (11, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mjj86rgm', '6710153'), - (11, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mjj86rgm', '6711552'), - (11, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mjj86rgm', '6711553'), - (11, 2431, 'attending', '2024-01-27 07:06:02', '2025-12-17 19:46:41', 'mjj86rgm', '6712394'), - (11, 2433, 'maybe', '2024-01-25 04:26:22', '2025-12-17 19:46:40', 'mjj86rgm', '6715688'), - (11, 2434, 'attending', '2024-01-26 23:55:13', '2025-12-17 19:46:40', 'mjj86rgm', '6716605'), - (11, 2437, 'attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mjj86rgm', '6722688'), - (11, 2438, 'attending', '2024-02-04 16:59:47', '2025-12-17 19:46:41', 'mjj86rgm', '6730201'), - (11, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mjj86rgm', '6730620'), - (11, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mjj86rgm', '6730642'), - (11, 2442, 'attending', '2024-02-02 19:19:22', '2025-12-17 19:46:41', 'mjj86rgm', '6732647'), - (11, 2444, 'attending', '2024-02-06 15:01:59', '2025-12-17 19:46:41', 'mjj86rgm', '6734367'), - (11, 2446, 'not_attending', '2024-03-01 15:40:12', '2025-12-17 19:46:43', 'mjj86rgm', '6734369'), - (11, 2447, 'attending', '2024-03-11 20:20:57', '2025-12-17 19:46:32', 'mjj86rgm', '6734370'), - (11, 2448, 'attending', '2024-03-26 17:49:55', '2025-12-17 19:46:33', 'mjj86rgm', '6734371'), - (11, 2453, 'attending', '2024-02-07 16:12:38', '2025-12-17 19:46:42', 'mjj86rgm', '6740364'), - (11, 2457, 'attending', '2024-02-08 18:14:37', '2025-12-17 19:46:41', 'mjj86rgm', '6742221'), - (11, 2458, 'maybe', '2024-02-09 22:09:57', '2025-12-17 19:46:41', 'mjj86rgm', '6743731'), - (11, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mjj86rgm', '6743829'), - (11, 2465, 'maybe', '2024-02-14 11:32:02', '2025-12-17 19:46:42', 'mjj86rgm', '7026725'), - (11, 2467, 'maybe', '2024-02-24 22:36:08', '2025-12-17 19:46:43', 'mjj86rgm', '7029987'), - (11, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mjj86rgm', '7030380'), - (11, 2471, 'attending', '2024-02-20 02:59:30', '2025-12-17 19:46:42', 'mjj86rgm', '7032425'), - (11, 2472, 'attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mjj86rgm', '7033677'), - (11, 2474, 'attending', '2024-02-20 21:42:56', '2025-12-17 19:46:43', 'mjj86rgm', '7035415'), - (11, 2475, 'maybe', '2024-02-27 21:37:28', '2025-12-17 19:46:43', 'mjj86rgm', '7035643'), - (11, 2476, 'attending', '2024-02-25 14:43:01', '2025-12-17 19:46:43', 'mjj86rgm', '7035691'), - (11, 2477, 'maybe', '2024-02-22 16:53:36', '2025-12-17 19:46:42', 'mjj86rgm', '7035692'), - (11, 2480, 'maybe', '2024-02-25 14:41:40', '2025-12-17 19:46:43', 'mjj86rgm', '7042160'), - (11, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mjj86rgm', '7044715'), - (11, 2482, 'not_attending', '2024-03-02 18:35:29', '2025-12-17 19:46:44', 'mjj86rgm', '7044719'), - (11, 2484, 'maybe', '2024-03-03 17:34:37', '2025-12-17 19:46:43', 'mjj86rgm', '7046836'), - (11, 2486, 'maybe', '2024-03-03 17:34:23', '2025-12-17 19:46:43', 'mjj86rgm', '7048277'), - (11, 2487, 'not_attending', '2024-03-11 02:04:24', '2025-12-17 19:46:33', 'mjj86rgm', '7049279'), - (11, 2489, 'attending', '2024-02-28 02:47:01', '2025-12-17 19:46:43', 'mjj86rgm', '7050161'), - (11, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mjj86rgm', '7050318'), - (11, 2491, 'attending', '2024-02-28 02:27:21', '2025-12-17 19:46:44', 'mjj86rgm', '7050319'), - (11, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mjj86rgm', '7050322'), - (11, 2497, 'maybe', '2024-03-04 20:07:04', '2025-12-17 19:46:43', 'mjj86rgm', '7057501'), - (11, 2498, 'attending', '2024-03-17 19:55:28', '2025-12-17 19:46:33', 'mjj86rgm', '7057662'), - (11, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mjj86rgm', '7057804'), - (11, 2500, 'attending', '2024-03-05 03:29:27', '2025-12-17 19:46:43', 'mjj86rgm', '7058603'), - (11, 2501, 'attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'mjj86rgm', '7059866'), - (11, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mjj86rgm', '7072824'), - (11, 2508, 'attending', '2024-03-12 16:27:09', '2025-12-17 19:46:32', 'mjj86rgm', '7074348'), - (11, 2509, 'not_attending', '2024-03-25 02:48:04', '2025-12-17 19:46:33', 'mjj86rgm', '7074349'), - (11, 2510, 'attending', '2024-03-15 02:25:39', '2025-12-17 19:46:33', 'mjj86rgm', '7074350'), - (11, 2511, 'attending', '2024-04-10 13:55:37', '2025-12-17 19:46:33', 'mjj86rgm', '7074351'), - (11, 2512, 'not_attending', '2024-04-02 18:10:15', '2025-12-17 19:46:33', 'mjj86rgm', '7074352'), - (11, 2513, 'attending', '2024-04-18 03:34:47', '2025-12-17 19:46:34', 'mjj86rgm', '7074353'), - (11, 2514, 'not_attending', '2024-04-25 21:27:06', '2025-12-17 19:46:34', 'mjj86rgm', '7074354'), - (11, 2516, 'attending', '2024-04-30 23:33:03', '2025-12-17 19:46:35', 'mjj86rgm', '7074356'), - (11, 2518, 'attending', '2024-07-19 14:55:57', '2025-12-17 19:46:30', 'mjj86rgm', '7074358'), - (11, 2520, 'attending', '2024-05-12 04:03:57', '2025-12-17 19:46:35', 'mjj86rgm', '7074360'), - (11, 2521, 'maybe', '2024-06-20 23:42:43', '2025-12-17 19:46:29', 'mjj86rgm', '7074361'), - (11, 2523, 'not_attending', '2024-05-23 13:24:31', '2025-12-17 19:46:36', 'mjj86rgm', '7074363'), - (11, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mjj86rgm', '7074364'), - (11, 2525, 'attending', '2024-06-10 02:26:59', '2025-12-17 19:46:28', 'mjj86rgm', '7074365'), - (11, 2528, 'not_attending', '2024-08-05 00:32:41', '2025-12-17 19:46:31', 'mjj86rgm', '7074368'), - (11, 2534, 'attending', '2024-03-13 16:22:26', '2025-12-17 19:46:32', 'mjj86rgm', '7076875'), - (11, 2536, 'attending', '2024-03-14 12:30:41', '2025-12-17 19:46:33', 'mjj86rgm', '7077689'), - (11, 2537, 'attending', '2024-03-22 14:17:05', '2025-12-17 19:46:33', 'mjj86rgm', '7085484'), - (11, 2538, 'not_attending', '2024-03-17 14:49:20', '2025-12-17 19:46:33', 'mjj86rgm', '7085485'), - (11, 2539, 'attending', '2024-03-19 23:46:01', '2025-12-17 19:46:33', 'mjj86rgm', '7085486'), - (11, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mjj86rgm', '7089267'), - (11, 2541, 'attending', '2024-03-17 14:20:09', '2025-12-17 19:46:33', 'mjj86rgm', '7089404'), - (11, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mjj86rgm', '7098747'), - (11, 2552, 'attending', '2024-03-27 22:08:44', '2025-12-17 19:46:33', 'mjj86rgm', '7111123'), - (11, 2553, 'attending', '2024-03-29 13:22:18', '2025-12-17 19:46:33', 'mjj86rgm', '7113468'), - (11, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mjj86rgm', '7114856'), - (11, 2555, 'attending', '2024-04-02 18:20:27', '2025-12-17 19:46:33', 'mjj86rgm', '7114951'), - (11, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mjj86rgm', '7114955'), - (11, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mjj86rgm', '7114956'), - (11, 2558, 'not_attending', '2024-04-03 00:19:22', '2025-12-17 19:46:35', 'mjj86rgm', '7114957'), - (11, 2561, 'attending', '2024-04-01 22:19:06', '2025-12-17 19:46:33', 'mjj86rgm', '7131267'), - (11, 2562, 'attending', '2024-04-02 18:10:28', '2025-12-17 19:46:33', 'mjj86rgm', '7134552'), - (11, 2563, 'attending', '2024-04-02 18:31:59', '2025-12-17 19:46:33', 'mjj86rgm', '7134734'), - (11, 2564, 'attending', '2024-04-08 22:59:21', '2025-12-17 19:46:33', 'mjj86rgm', '7134735'), - (11, 2565, 'attending', '2024-04-02 20:53:53', '2025-12-17 19:46:33', 'mjj86rgm', '7135074'), - (11, 2566, 'attending', '2024-04-03 01:42:06', '2025-12-17 19:46:34', 'mjj86rgm', '7140664'), - (11, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mjj86rgm', '7153615'), - (11, 2569, 'maybe', '2024-04-07 06:01:16', '2025-12-17 19:46:33', 'mjj86rgm', '7154056'), - (11, 2570, 'attending', '2024-04-07 17:43:19', '2025-12-17 19:46:33', 'mjj86rgm', '7159187'), - (11, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mjj86rgm', '7159484'), - (11, 2572, 'maybe', '2024-04-08 22:14:52', '2025-12-17 19:46:33', 'mjj86rgm', '7159522'), - (11, 2573, 'attending', '2024-04-09 15:36:28', '2025-12-17 19:46:34', 'mjj86rgm', '7160612'), - (11, 2575, 'not_attending', '2024-04-12 18:02:06', '2025-12-17 19:46:33', 'mjj86rgm', '7164534'), - (11, 2576, 'attending', '2024-04-26 21:53:54', '2025-12-17 19:46:34', 'mjj86rgm', '7164538'), - (11, 2577, 'attending', '2024-04-10 20:46:26', '2025-12-17 19:46:33', 'mjj86rgm', '7166293'), - (11, 2578, 'maybe', '2024-04-11 21:35:06', '2025-12-17 19:46:34', 'mjj86rgm', '7167016'), - (11, 2579, 'attending', '2024-04-11 13:33:46', '2025-12-17 19:46:33', 'mjj86rgm', '7167020'), - (11, 2581, 'not_attending', '2024-04-13 13:16:37', '2025-12-17 19:46:34', 'mjj86rgm', '7169048'), - (11, 2583, 'attending', '2024-04-14 18:43:59', '2025-12-17 19:46:34', 'mjj86rgm', '7172946'), - (11, 2584, 'attending', '2024-04-15 01:13:02', '2025-12-17 19:46:34', 'mjj86rgm', '7175057'), - (11, 2585, 'attending', '2024-04-17 23:43:19', '2025-12-17 19:46:34', 'mjj86rgm', '7175828'), - (11, 2586, 'attending', '2024-04-15 18:42:31', '2025-12-17 19:46:34', 'mjj86rgm', '7176151'), - (11, 2587, 'attending', '2024-04-15 18:42:36', '2025-12-17 19:46:34', 'mjj86rgm', '7176152'), - (11, 2588, 'not_attending', '2024-04-16 03:41:05', '2025-12-17 19:46:34', 'mjj86rgm', '7177233'), - (11, 2589, 'not_attending', '2024-04-18 13:33:51', '2025-12-17 19:46:34', 'mjj86rgm', '7177235'), - (11, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mjj86rgm', '7178446'), - (11, 2593, 'attending', '2024-04-19 01:48:25', '2025-12-17 19:46:34', 'mjj86rgm', '7181003'), - (11, 2596, 'attending', '2024-04-24 15:15:43', '2025-12-17 19:46:34', 'mjj86rgm', '7183788'), - (11, 2599, 'attending', '2024-04-22 13:02:21', '2025-12-17 19:46:34', 'mjj86rgm', '7189372'), - (11, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mjj86rgm', '7220467'), - (11, 2603, 'attending', '2024-04-29 14:10:55', '2025-12-17 19:46:35', 'mjj86rgm', '7225669'), - (11, 2604, 'attending', '2024-04-29 14:11:04', '2025-12-17 19:46:36', 'mjj86rgm', '7225670'), - (11, 2606, 'attending', '2024-04-28 15:47:51', '2025-12-17 19:46:35', 'mjj86rgm', '7230496'), - (11, 2609, 'attending', '2024-05-06 21:11:33', '2025-12-17 19:46:35', 'mjj86rgm', '7240354'), - (11, 2611, 'attending', '2024-05-05 14:45:30', '2025-12-17 19:46:35', 'mjj86rgm', '7247642'), - (11, 2612, 'attending', '2024-05-06 14:56:07', '2025-12-17 19:46:35', 'mjj86rgm', '7247643'), - (11, 2613, 'maybe', '2024-05-09 16:54:28', '2025-12-17 19:46:35', 'mjj86rgm', '7247644'), - (11, 2614, 'attending', '2024-05-02 16:40:08', '2025-12-17 19:46:35', 'mjj86rgm', '7247645'), - (11, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mjj86rgm', '7251633'), - (11, 2620, 'maybe', '2024-05-12 04:04:03', '2025-12-17 19:46:35', 'mjj86rgm', '7258097'), - (11, 2621, 'attending', '2024-05-07 01:27:34', '2025-12-17 19:46:35', 'mjj86rgm', '7258170'), - (11, 2622, 'attending', '2024-05-09 05:24:22', '2025-12-17 19:46:35', 'mjj86rgm', '7262064'), - (11, 2623, 'maybe', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mjj86rgm', '7263048'), - (11, 2626, 'not_attending', '2024-05-17 14:25:21', '2025-12-17 19:46:35', 'mjj86rgm', '7264723'), - (11, 2627, 'not_attending', '2024-05-23 16:39:39', '2025-12-17 19:46:35', 'mjj86rgm', '7264724'), - (11, 2628, 'attending', '2024-05-22 00:29:10', '2025-12-17 19:46:36', 'mjj86rgm', '7264725'), - (11, 2629, 'attending', '2024-05-23 11:59:27', '2025-12-17 19:46:28', 'mjj86rgm', '7264726'), - (11, 2630, 'attending', '2024-05-15 05:10:08', '2025-12-17 19:46:35', 'mjj86rgm', '7264801'), - (11, 2639, 'attending', '2024-05-16 14:50:42', '2025-12-17 19:46:35', 'mjj86rgm', '7273242'), - (11, 2642, 'attending', '2024-05-18 01:49:23', '2025-12-17 19:46:35', 'mjj86rgm', '7276108'), - (11, 2647, 'attending', '2024-05-27 21:25:05', '2025-12-17 19:46:28', 'mjj86rgm', '7282057'), - (11, 2651, 'not_attending', '2024-05-24 21:46:32', '2025-12-17 19:46:35', 'mjj86rgm', '7288200'), - (11, 2652, 'not_attending', '2024-05-24 21:44:04', '2025-12-17 19:46:36', 'mjj86rgm', '7288339'), - (11, 2654, 'attending', '2024-05-26 21:39:35', '2025-12-17 19:46:36', 'mjj86rgm', '7291219'), - (11, 2656, 'attending', '2024-05-27 01:14:25', '2025-12-17 19:46:36', 'mjj86rgm', '7291301'), - (11, 2657, 'attending', '2024-05-29 01:24:49', '2025-12-17 19:46:36', 'mjj86rgm', '7294438'), - (11, 2660, 'attending', '2024-06-01 21:35:12', '2025-12-17 19:46:36', 'mjj86rgm', '7301638'), - (11, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mjj86rgm', '7302674'), - (11, 2663, 'not_attending', '2024-06-03 00:52:57', '2025-12-17 19:46:36', 'mjj86rgm', '7303913'), - (11, 2666, 'not_attending', '2024-06-05 23:10:38', '2025-12-17 19:46:36', 'mjj86rgm', '7307775'), - (11, 2667, 'attending', '2024-06-05 11:50:27', '2025-12-17 19:46:36', 'mjj86rgm', '7307776'), - (11, 2668, 'not_attending', '2024-06-05 23:10:43', '2025-12-17 19:46:36', 'mjj86rgm', '7308821'), - (11, 2669, 'maybe', '2024-06-08 14:47:03', '2025-12-17 19:46:36', 'mjj86rgm', '7318057'), - (11, 2672, 'attending', '2024-06-09 16:55:43', '2025-12-17 19:46:28', 'mjj86rgm', '7318459'), - (11, 2678, 'attending', '2024-06-10 15:50:54', '2025-12-17 19:46:28', 'mjj86rgm', '7319489'), - (11, 2679, 'attending', '2024-06-11 19:11:09', '2025-12-17 19:46:29', 'mjj86rgm', '7319490'), - (11, 2681, 'attending', '2024-06-10 02:08:33', '2025-12-17 19:46:28', 'mjj86rgm', '7320409'), - (11, 2682, 'attending', '2024-06-10 12:53:34', '2025-12-17 19:46:28', 'mjj86rgm', '7321862'), - (11, 2683, 'attending', '2024-06-10 17:26:14', '2025-12-17 19:46:28', 'mjj86rgm', '7321978'), - (11, 2684, 'attending', '2024-06-11 18:31:41', '2025-12-17 19:46:28', 'mjj86rgm', '7322001'), - (11, 2687, 'attending', '2024-06-11 20:32:32', '2025-12-17 19:46:28', 'mjj86rgm', '7324019'), - (11, 2688, 'attending', '2024-06-12 16:05:07', '2025-12-17 19:46:29', 'mjj86rgm', '7324073'), - (11, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mjj86rgm', '7324074'), - (11, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mjj86rgm', '7324075'), - (11, 2691, 'attending', '2024-07-16 00:14:19', '2025-12-17 19:46:30', 'mjj86rgm', '7324076'), - (11, 2692, 'attending', '2024-07-22 20:57:45', '2025-12-17 19:46:30', 'mjj86rgm', '7324077'), - (11, 2693, 'not_attending', '2024-07-30 12:16:19', '2025-12-17 19:46:31', 'mjj86rgm', '7324078'), - (11, 2694, 'not_attending', '2024-08-01 22:17:53', '2025-12-17 19:46:31', 'mjj86rgm', '7324079'), - (11, 2696, 'not_attending', '2024-08-20 12:26:22', '2025-12-17 19:46:32', 'mjj86rgm', '7324081'), - (11, 2697, 'not_attending', '2024-08-27 00:00:09', '2025-12-17 19:46:32', 'mjj86rgm', '7324082'), - (11, 2698, 'not_attending', '2024-09-01 22:28:43', '2025-12-17 19:46:24', 'mjj86rgm', '7324083'), - (11, 2699, 'attending', '2024-06-12 15:25:06', '2025-12-17 19:46:28', 'mjj86rgm', '7324385'), - (11, 2700, 'not_attending', '2024-06-13 13:18:10', '2025-12-17 19:46:28', 'mjj86rgm', '7324388'), - (11, 2702, 'attending', '2024-06-12 22:18:29', '2025-12-17 19:46:28', 'mjj86rgm', '7324867'), - (11, 2706, 'attending', '2024-06-13 13:43:34', '2025-12-17 19:46:28', 'mjj86rgm', '7324947'), - (11, 2708, 'attending', '2024-06-13 20:23:03', '2025-12-17 19:46:28', 'mjj86rgm', '7325048'), - (11, 2711, 'attending', '2024-07-19 22:44:01', '2025-12-17 19:46:30', 'mjj86rgm', '7326524'), - (11, 2714, 'attending', '2024-06-15 14:30:05', '2025-12-17 19:46:28', 'mjj86rgm', '7326981'), - (11, 2716, 'attending', '2024-06-16 19:29:07', '2025-12-17 19:46:29', 'mjj86rgm', '7329096'), - (11, 2718, 'attending', '2024-06-18 17:50:20', '2025-12-17 19:46:28', 'mjj86rgm', '7330458'), - (11, 2721, 'attending', '2024-06-23 04:34:58', '2025-12-17 19:46:29', 'mjj86rgm', '7331456'), - (11, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mjj86rgm', '7331457'), - (11, 2723, 'attending', '2024-06-19 22:27:56', '2025-12-17 19:46:29', 'mjj86rgm', '7332389'), - (11, 2724, 'attending', '2024-06-19 17:53:29', '2025-12-17 19:46:29', 'mjj86rgm', '7332562'), - (11, 2725, 'attending', '2024-06-19 17:56:59', '2025-12-17 19:46:28', 'mjj86rgm', '7332564'), - (11, 2727, 'attending', '2024-06-19 21:22:10', '2025-12-17 19:46:29', 'mjj86rgm', '7332865'), - (11, 2728, 'not_attending', '2024-06-20 23:42:52', '2025-12-17 19:46:29', 'mjj86rgm', '7334124'), - (11, 2735, 'attending', '2024-06-28 14:05:29', '2025-12-17 19:46:29', 'mjj86rgm', '7340369'), - (11, 2737, 'maybe', '2024-07-01 15:01:06', '2025-12-17 19:46:29', 'mjj86rgm', '7344070'), - (11, 2739, 'attending', '2024-06-30 23:17:49', '2025-12-17 19:46:29', 'mjj86rgm', '7344575'), - (11, 2740, 'attending', '2024-07-01 12:31:52', '2025-12-17 19:46:29', 'mjj86rgm', '7344576'), - (11, 2742, 'attending', '2024-07-02 01:40:21', '2025-12-17 19:46:29', 'mjj86rgm', '7345167'), - (11, 2743, 'not_attending', '2024-07-04 01:29:28', '2025-12-17 19:46:29', 'mjj86rgm', '7345688'), - (11, 2744, 'attending', '2024-07-02 14:34:18', '2025-12-17 19:46:29', 'mjj86rgm', '7347764'), - (11, 2748, 'attending', '2024-07-05 22:35:44', '2025-12-17 19:46:29', 'mjj86rgm', '7353759'), - (11, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mjj86rgm', '7356752'), - (11, 2763, 'maybe', '2024-07-19 14:55:46', '2025-12-17 19:46:30', 'mjj86rgm', '7363594'), - (11, 2764, 'maybe', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'mjj86rgm', '7363595'), - (11, 2766, 'attending', '2024-07-22 20:58:37', '2025-12-17 19:46:30', 'mjj86rgm', '7363643'), - (11, 2767, 'attending', '2024-07-19 14:55:53', '2025-12-17 19:46:30', 'mjj86rgm', '7364726'), - (11, 2771, 'attending', '2024-07-21 18:22:08', '2025-12-17 19:46:30', 'mjj86rgm', '7368263'), - (11, 2772, 'attending', '2024-07-22 14:30:39', '2025-12-17 19:46:30', 'mjj86rgm', '7368267'), - (11, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mjj86rgm', '7368606'), - (11, 2776, 'attending', '2024-07-25 15:37:05', '2025-12-17 19:46:30', 'mjj86rgm', '7370690'), - (11, 2780, 'attending', '2024-07-26 13:44:54', '2025-12-17 19:46:30', 'mjj86rgm', '7371849'), - (11, 2782, 'maybe', '2024-07-28 18:45:31', '2025-12-17 19:46:30', 'mjj86rgm', '7376725'), - (11, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mjj86rgm', '7397462'), - (11, 2803, 'attending', '2024-08-20 11:46:31', '2025-12-17 19:46:32', 'mjj86rgm', '7397869'), - (11, 2806, 'attending', '2024-09-08 18:47:53', '2025-12-17 19:46:25', 'mjj86rgm', '7404888'), - (11, 2808, 'maybe', '2024-08-26 23:16:26', '2025-12-17 19:46:32', 'mjj86rgm', '7412860'), - (11, 2821, 'attending', '2024-09-30 14:35:01', '2025-12-17 19:46:26', 'mjj86rgm', '7424275'), - (11, 2822, 'attending', '2024-10-22 02:30:18', '2025-12-17 19:46:26', 'mjj86rgm', '7424276'), - (11, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mjj86rgm', '7432751'), - (11, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mjj86rgm', '7432752'), - (11, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mjj86rgm', '7432753'), - (11, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mjj86rgm', '7432754'), - (11, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mjj86rgm', '7432755'), - (11, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mjj86rgm', '7432756'), - (11, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mjj86rgm', '7432758'), - (11, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mjj86rgm', '7432759'), - (11, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mjj86rgm', '7433834'), - (11, 2838, 'not_attending', '2024-09-25 21:27:33', '2025-12-17 19:46:25', 'mjj86rgm', '7439182'), - (11, 2855, 'attending', '2024-10-01 11:49:55', '2025-12-17 19:46:26', 'mjj86rgm', '7469385'), - (11, 2856, 'maybe', '2024-10-10 18:37:30', '2025-12-17 19:46:26', 'mjj86rgm', '7469386'), - (11, 2857, 'not_attending', '2024-10-23 12:55:26', '2025-12-17 19:46:26', 'mjj86rgm', '7469387'), - (11, 2858, 'attending', '2024-10-16 23:21:12', '2025-12-17 19:46:26', 'mjj86rgm', '7469388'), - (11, 2861, 'attending', '2024-10-01 11:49:52', '2025-12-17 19:46:26', 'mjj86rgm', '7469826'), - (11, 2862, 'not_attending', '2024-09-30 20:16:44', '2025-12-17 19:46:25', 'mjj86rgm', '7470197'), - (11, 2863, 'not_attending', '2024-10-01 11:50:22', '2025-12-17 19:46:26', 'mjj86rgm', '7470275'), - (11, 2864, 'maybe', '2024-10-14 22:46:11', '2025-12-17 19:46:26', 'mjj86rgm', '7471199'), - (11, 2865, 'not_attending', '2024-10-28 15:05:55', '2025-12-17 19:46:26', 'mjj86rgm', '7471200'), - (11, 2867, 'attending', '2024-12-05 22:18:44', '2025-12-17 19:46:21', 'mjj86rgm', '7471202'), - (11, 2871, 'attending', '2024-10-14 22:46:03', '2025-12-17 19:46:26', 'mjj86rgm', '7480481'), - (11, 2878, 'attending', '2024-10-16 21:54:47', '2025-12-17 19:46:26', 'mjj86rgm', '7633857'), - (11, 2881, 'attending', '2024-11-02 13:20:25', '2025-12-17 19:46:26', 'mjj86rgm', '7644047'), - (11, 2882, 'not_attending', '2024-10-14 22:47:41', '2025-12-17 19:46:26', 'mjj86rgm', '7644822'), - (11, 2883, 'attending', '2024-10-17 01:04:51', '2025-12-17 19:46:26', 'mjj86rgm', '7649157'), - (11, 2886, 'not_attending', '2024-11-02 13:20:38', '2025-12-17 19:46:26', 'mjj86rgm', '7654498'), - (11, 2888, 'attending', '2024-10-21 09:35:16', '2025-12-17 19:46:26', 'mjj86rgm', '7654822'), - (11, 2891, 'maybe', '2024-10-25 17:12:39', '2025-12-17 19:46:26', 'mjj86rgm', '7668163'), - (11, 2892, 'not_attending', '2024-10-28 15:05:37', '2025-12-17 19:46:26', 'mjj86rgm', '7672064'), - (11, 2893, 'not_attending', '2024-11-02 02:24:25', '2025-12-17 19:46:26', 'mjj86rgm', '7672705'), - (11, 2895, 'attending', '2024-11-04 23:20:47', '2025-12-17 19:46:26', 'mjj86rgm', '7682072'), - (11, 2896, 'attending', '2024-11-09 04:37:19', '2025-12-17 19:46:27', 'mjj86rgm', '7683647'), - (11, 2897, 'maybe', '2024-11-15 17:09:12', '2025-12-17 19:46:27', 'mjj86rgm', '7683650'), - (11, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'mjj86rgm', '7685613'), - (11, 2900, 'attending', '2024-11-08 00:55:32', '2025-12-17 19:46:26', 'mjj86rgm', '7686090'), - (11, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mjj86rgm', '7688194'), - (11, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mjj86rgm', '7688196'), - (11, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mjj86rgm', '7688289'), - (11, 2911, 'attending', '2024-11-11 04:01:15', '2025-12-17 19:46:27', 'mjj86rgm', '7689876'), - (11, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'mjj86rgm', '7692763'), - (11, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mjj86rgm', '7697552'), - (11, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mjj86rgm', '7699878'), - (11, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mjj86rgm', '7704043'), - (11, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mjj86rgm', '7712467'), - (11, 2925, 'attending', '2024-12-09 22:01:56', '2025-12-17 19:46:21', 'mjj86rgm', '7713584'), - (11, 2926, 'attending', '2024-12-05 21:59:45', '2025-12-17 19:46:21', 'mjj86rgm', '7713585'), - (11, 2927, 'not_attending', '2024-12-14 00:47:41', '2025-12-17 19:46:22', 'mjj86rgm', '7713586'), - (11, 2930, 'attending', '2024-12-09 22:01:22', '2025-12-17 19:46:21', 'mjj86rgm', '7724554'), - (11, 2939, 'not_attending', '2025-02-15 21:01:14', '2025-12-17 19:46:24', 'mjj86rgm', '7725957'), - (11, 2952, 'attending', '2024-12-12 01:15:31', '2025-12-17 19:46:21', 'mjj86rgm', '7730167'), - (11, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mjj86rgm', '7738518'), - (11, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mjj86rgm', '7750636'), - (11, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mjj86rgm', '7796540'), - (11, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mjj86rgm', '7796541'), - (11, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mjj86rgm', '7796542'), - (11, 2971, 'attending', '2025-01-15 00:37:07', '2025-12-17 19:46:22', 'mjj86rgm', '7812230'), - (11, 2972, 'attending', '2025-01-21 16:17:30', '2025-12-17 19:46:22', 'mjj86rgm', '7812563'), - (11, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mjj86rgm', '7825913'), - (11, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'mjj86rgm', '7825920'), - (11, 2981, 'not_attending', '2025-01-29 17:00:37', '2025-12-17 19:46:22', 'mjj86rgm', '7826124'), - (11, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mjj86rgm', '7826209'), - (11, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mjj86rgm', '7834742'), - (11, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'mjj86rgm', '7842108'), - (11, 2990, 'attending', '2025-02-11 03:31:36', '2025-12-17 19:46:23', 'mjj86rgm', '7842898'), - (11, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mjj86rgm', '7842902'), - (11, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mjj86rgm', '7842903'), - (11, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mjj86rgm', '7842904'), - (11, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mjj86rgm', '7842905'), - (11, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'mjj86rgm', '7842906'), - (11, 2996, 'attending', '2025-02-25 01:49:53', '2025-12-17 19:46:24', 'mjj86rgm', '7842907'), - (11, 2998, 'attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'mjj86rgm', '7842909'), - (11, 3002, 'attending', '2025-02-20 03:03:51', '2025-12-17 19:46:24', 'mjj86rgm', '7854212'), - (11, 3004, 'maybe', '2025-02-20 02:33:50', '2025-12-17 19:46:24', 'mjj86rgm', '7854599'), - (11, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mjj86rgm', '7855719'), - (11, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mjj86rgm', '7860683'), - (11, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mjj86rgm', '7860684'), - (11, 3009, 'attending', '2025-02-27 16:09:13', '2025-12-17 19:46:18', 'mjj86rgm', '7864019'), - (11, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mjj86rgm', '7866095'), - (11, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mjj86rgm', '7869170'), - (11, 3014, 'maybe', '2025-03-31 21:59:46', '2025-12-17 19:46:20', 'mjj86rgm', '7869185'), - (11, 3017, 'attending', '2025-03-11 23:37:11', '2025-12-17 19:46:19', 'mjj86rgm', '7869188'), - (11, 3018, 'not_attending', '2025-04-08 17:37:38', '2025-12-17 19:46:20', 'mjj86rgm', '7869189'), - (11, 3023, 'attending', '2025-03-04 03:45:22', '2025-12-17 19:46:19', 'mjj86rgm', '7869194'), - (11, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'mjj86rgm', '7869195'), - (11, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mjj86rgm', '7869201'), - (11, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mjj86rgm', '7877465'), - (11, 3034, 'attending', '2025-03-11 21:43:55', '2025-12-17 19:46:18', 'mjj86rgm', '7878570'), - (11, 3036, 'attending', '2025-03-13 15:39:51', '2025-12-17 19:46:19', 'mjj86rgm', '7880952'), - (11, 3039, 'not_attending', '2025-03-18 21:48:57', '2025-12-17 19:46:19', 'mjj86rgm', '7881992'), - (11, 3054, 'attending', '2025-03-17 00:15:41', '2025-12-17 19:46:19', 'mjj86rgm', '7884168'), - (11, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mjj86rgm', '7888250'), - (11, 3057, 'attending', '2025-03-24 23:02:37', '2025-12-17 19:46:19', 'mjj86rgm', '7890059'), - (11, 3062, 'attending', '2025-03-29 19:01:01', '2025-12-17 19:46:19', 'mjj86rgm', '7892738'), - (11, 3083, 'attending', '2025-04-09 20:55:18', '2025-12-17 19:46:20', 'mjj86rgm', '7903308'), - (11, 3088, 'attending', '2025-06-06 16:34:18', '2025-12-17 19:46:15', 'mjj86rgm', '7904777'), - (11, 3089, 'not_attending', '2025-04-13 17:13:49', '2025-12-17 19:46:20', 'mjj86rgm', '7911208'), - (11, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjj86rgm', '8349164'), - (11, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjj86rgm', '8349545'), - (11, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mjj86rgm', '8353584'), - (11, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjj86rgm', '8368028'), - (11, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjj86rgm', '8368029'), - (11, 3133, 'attending', '2025-05-31 15:36:17', '2025-12-17 19:46:14', 'mjj86rgm', '8368030'), - (11, 3142, 'attending', '2025-05-28 19:28:59', '2025-12-17 19:46:21', 'mjj86rgm', '8387505'), - (11, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjj86rgm', '8388462'), - (11, 3150, 'maybe', '2025-06-06 16:34:21', '2025-12-17 19:46:15', 'mjj86rgm', '8393174'), - (11, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjj86rgm', '8400273'), - (11, 3154, 'attending', '2025-06-25 19:00:02', '2025-12-17 19:46:15', 'mjj86rgm', '8400274'), - (11, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjj86rgm', '8400275'), - (11, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mjj86rgm', '8400276'), - (11, 3160, 'maybe', '2025-06-06 16:34:01', '2025-12-17 19:46:15', 'mjj86rgm', '8401411'), - (11, 3161, 'not_attending', '2025-06-06 16:33:45', '2025-12-17 19:46:15', 'mjj86rgm', '8401412'), - (11, 3167, 'not_attending', '2025-06-09 20:47:02', '2025-12-17 19:46:15', 'mjj86rgm', '8404521'), - (11, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjj86rgm', '8404977'), - (11, 3171, 'attending', '2025-06-13 18:00:32', '2025-12-17 19:46:15', 'mjj86rgm', '8409765'), - (11, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mjj86rgm', '8430783'), - (11, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjj86rgm', '8430784'), - (11, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjj86rgm', '8430799'), - (11, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjj86rgm', '8430800'), - (11, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjj86rgm', '8430801'), - (11, 3188, 'attending', '2025-07-12 17:39:37', '2025-12-17 19:46:17', 'mjj86rgm', '8438709'), - (11, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjj86rgm', '8457738'), - (11, 3195, 'attending', '2025-08-05 22:22:47', '2025-12-17 19:46:17', 'mjj86rgm', '8458118'), - (11, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjj86rgm', '8459566'), - (11, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjj86rgm', '8459567'), - (11, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjj86rgm', '8461032'), - (11, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjj86rgm', '8477877'), - (11, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'mjj86rgm', '8485688'), - (11, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mjj86rgm', '8490587'), - (11, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mjj86rgm', '8493552'), - (11, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mjj86rgm', '8493553'), - (11, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mjj86rgm', '8493554'), - (11, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mjj86rgm', '8493555'), - (11, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mjj86rgm', '8493556'), - (11, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mjj86rgm', '8493557'), - (11, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mjj86rgm', '8493558'), - (11, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mjj86rgm', '8493559'), - (11, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mjj86rgm', '8493560'), - (11, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'mjj86rgm', '8493561'), - (11, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mjj86rgm', '8493572'), - (11, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mjj86rgm', '8540725'), - (11, 3295, 'not_attending', '2025-10-30 15:54:14', '2025-12-17 19:46:14', 'mjj86rgm', '8547541'), - (11, 3305, 'not_attending', '2025-12-07 00:18:33', '2025-12-17 19:46:11', 'mjj86rgm', '8550025'), - (11, 3306, 'attending', '2025-12-07 00:18:39', '2025-12-17 19:46:11', 'mjj86rgm', '8550026'), - (11, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mjj86rgm', '8555421'), - (12, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZaNBe4', '6484200'), - (12, 2310, 'attending', '2023-11-10 15:35:51', '2025-12-17 19:46:47', 'dKZaNBe4', '6487709'), - (12, 2320, 'maybe', '2023-11-09 23:45:59', '2025-12-17 19:46:47', 'dKZaNBe4', '6508647'), - (12, 2322, 'attending', '2023-11-12 08:28:32', '2025-12-17 19:46:48', 'dKZaNBe4', '6514659'), - (12, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZaNBe4', '6514660'), - (12, 2324, 'not_attending', '2023-12-03 04:20:53', '2025-12-17 19:46:49', 'dKZaNBe4', '6514662'), - (12, 2325, 'attending', '2023-12-05 04:57:29', '2025-12-17 19:46:36', 'dKZaNBe4', '6514663'), - (12, 2339, 'attending', '2023-11-10 20:16:54', '2025-12-17 19:46:47', 'dKZaNBe4', '6539128'), - (12, 2340, 'attending', '2023-11-12 08:28:12', '2025-12-17 19:46:48', 'dKZaNBe4', '6540279'), - (12, 2342, 'attending', '2023-11-13 19:45:17', '2025-12-17 19:46:47', 'dKZaNBe4', '6545076'), - (12, 2345, 'not_attending', '2023-11-29 22:56:36', '2025-12-17 19:46:48', 'dKZaNBe4', '6582414'), - (12, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZaNBe4', '6584747'), - (12, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZaNBe4', '6587097'), - (12, 2353, 'attending', '2023-11-26 21:59:23', '2025-12-17 19:46:48', 'dKZaNBe4', '6588894'), - (12, 2355, 'attending', '2023-11-30 23:55:51', '2025-12-17 19:46:49', 'dKZaNBe4', '6593339'), - (12, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZaNBe4', '6609022'), - (12, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZaNBe4', '6632757'), - (12, 2376, 'not_attending', '2024-01-21 05:48:18', '2025-12-17 19:46:40', 'dKZaNBe4', '6642900'), - (12, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZaNBe4', '6644187'), - (12, 2381, 'not_attending', '2024-01-02 02:51:27', '2025-12-17 19:46:37', 'dKZaNBe4', '6646398'), - (12, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZaNBe4', '6648951'), - (12, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZaNBe4', '6648952'), - (12, 2388, 'attending', '2024-01-03 05:39:48', '2025-12-17 19:46:37', 'dKZaNBe4', '6649244'), - (12, 2395, 'attending', '2024-01-16 00:15:23', '2025-12-17 19:46:38', 'dKZaNBe4', '6654471'), - (12, 2396, 'attending', '2024-01-16 00:15:36', '2025-12-17 19:46:38', 'dKZaNBe4', '6655401'), - (12, 2399, 'attending', '2024-01-09 15:33:04', '2025-12-17 19:46:37', 'dKZaNBe4', '6657583'), - (12, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZaNBe4', '6661585'), - (12, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZaNBe4', '6661588'), - (12, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZaNBe4', '6661589'), - (12, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZaNBe4', '6699906'), - (12, 2408, 'attending', '2024-01-21 05:46:57', '2025-12-17 19:46:40', 'dKZaNBe4', '6699907'), - (12, 2409, 'attending', '2024-01-30 15:35:02', '2025-12-17 19:46:41', 'dKZaNBe4', '6699909'), - (12, 2410, 'attending', '2024-02-06 22:29:23', '2025-12-17 19:46:41', 'dKZaNBe4', '6699911'), - (12, 2411, 'attending', '2024-02-12 05:31:11', '2025-12-17 19:46:41', 'dKZaNBe4', '6699913'), - (12, 2412, 'attending', '2024-02-20 01:47:51', '2025-12-17 19:46:43', 'dKZaNBe4', '6700717'), - (12, 2414, 'attending', '2024-01-20 19:40:57', '2025-12-17 19:46:40', 'dKZaNBe4', '6701000'), - (12, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZaNBe4', '6701109'), - (12, 2419, 'not_attending', '2024-01-21 05:49:52', '2025-12-17 19:46:41', 'dKZaNBe4', '6704505'), - (12, 2421, 'not_attending', '2024-01-21 05:52:43', '2025-12-17 19:46:40', 'dKZaNBe4', '6704598'), - (12, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZaNBe4', '6705219'), - (12, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZaNBe4', '6710153'), - (12, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZaNBe4', '6711552'), - (12, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZaNBe4', '6711553'), - (12, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKZaNBe4', '6722688'), - (12, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKZaNBe4', '6730620'), - (12, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKZaNBe4', '6730642'), - (12, 2445, 'attending', '2024-02-17 00:10:09', '2025-12-17 19:46:41', 'dKZaNBe4', '6734368'), - (12, 2447, 'attending', '2024-03-14 13:34:54', '2025-12-17 19:46:32', 'dKZaNBe4', '6734370'), - (12, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKZaNBe4', '6740364'), - (12, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKZaNBe4', '6743829'), - (12, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKZaNBe4', '7030380'), - (12, 2471, 'attending', '2024-02-24 00:59:25', '2025-12-17 19:46:42', 'dKZaNBe4', '7032425'), - (12, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKZaNBe4', '7033677'), - (12, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKZaNBe4', '7035415'), - (12, 2481, 'attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKZaNBe4', '7044715'), - (12, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKZaNBe4', '7050318'), - (12, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKZaNBe4', '7050319'), - (12, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKZaNBe4', '7050322'), - (12, 2498, 'attending', '2024-03-20 21:34:26', '2025-12-17 19:46:33', 'dKZaNBe4', '7057662'), - (12, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKZaNBe4', '7057804'), - (12, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dKZaNBe4', '7059866'), - (12, 2505, 'attending', '2024-03-19 21:12:18', '2025-12-17 19:46:33', 'dKZaNBe4', '7069163'), - (12, 2507, 'attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKZaNBe4', '7072824'), - (12, 2508, 'attending', '2024-03-13 14:18:51', '2025-12-17 19:46:32', 'dKZaNBe4', '7074348'), - (12, 2510, 'attending', '2024-03-21 23:48:08', '2025-12-17 19:46:33', 'dKZaNBe4', '7074350'), - (12, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dKZaNBe4', '7074364'), - (12, 2537, 'attending', '2024-03-22 13:37:49', '2025-12-17 19:46:33', 'dKZaNBe4', '7085484'), - (12, 2538, 'not_attending', '2024-03-24 16:58:38', '2025-12-17 19:46:33', 'dKZaNBe4', '7085485'), - (12, 2539, 'attending', '2024-04-05 01:29:45', '2025-12-17 19:46:33', 'dKZaNBe4', '7085486'), - (12, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKZaNBe4', '7089267'), - (12, 2541, 'attending', '2024-03-18 23:15:07', '2025-12-17 19:46:33', 'dKZaNBe4', '7089404'), - (12, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKZaNBe4', '7098747'), - (12, 2551, 'attending', '2024-03-31 17:44:41', '2025-12-17 19:46:33', 'dKZaNBe4', '7109912'), - (12, 2553, 'not_attending', '2024-03-29 19:05:11', '2025-12-17 19:46:33', 'dKZaNBe4', '7113468'), - (12, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKZaNBe4', '7114856'), - (12, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKZaNBe4', '7114951'), - (12, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKZaNBe4', '7114955'), - (12, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKZaNBe4', '7114956'), - (12, 2558, 'not_attending', '2024-04-20 18:25:19', '2025-12-17 19:46:35', 'dKZaNBe4', '7114957'), - (12, 2563, 'not_attending', '2024-04-09 13:39:02', '2025-12-17 19:46:33', 'dKZaNBe4', '7134734'), - (12, 2564, 'attending', '2024-04-09 13:38:38', '2025-12-17 19:46:33', 'dKZaNBe4', '7134735'), - (12, 2568, 'maybe', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKZaNBe4', '7153615'), - (12, 2570, 'attending', '2024-04-07 19:58:37', '2025-12-17 19:46:33', 'dKZaNBe4', '7159187'), - (12, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKZaNBe4', '7159484'), - (12, 2573, 'attending', '2024-04-14 02:10:44', '2025-12-17 19:46:34', 'dKZaNBe4', '7160612'), - (12, 2577, 'attending', '2024-04-11 14:36:43', '2025-12-17 19:46:33', 'dKZaNBe4', '7166293'), - (12, 2578, 'attending', '2024-04-11 21:35:15', '2025-12-17 19:46:34', 'dKZaNBe4', '7167016'), - (12, 2579, 'attending', '2024-04-12 20:39:08', '2025-12-17 19:46:33', 'dKZaNBe4', '7167020'), - (12, 2581, 'attending', '2024-04-18 03:35:06', '2025-12-17 19:46:34', 'dKZaNBe4', '7169048'), - (12, 2583, 'attending', '2024-04-15 21:12:29', '2025-12-17 19:46:34', 'dKZaNBe4', '7172946'), - (12, 2585, 'attending', '2024-04-21 23:45:36', '2025-12-17 19:46:34', 'dKZaNBe4', '7175828'), - (12, 2588, 'attending', '2024-04-16 16:00:09', '2025-12-17 19:46:34', 'dKZaNBe4', '7177233'), - (12, 2589, 'attending', '2024-04-16 16:00:11', '2025-12-17 19:46:34', 'dKZaNBe4', '7177235'), - (12, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKZaNBe4', '7178446'), - (12, 2592, 'attending', '2024-04-20 18:24:56', '2025-12-17 19:46:34', 'dKZaNBe4', '7180959'), - (12, 2596, 'attending', '2024-04-26 13:45:15', '2025-12-17 19:46:34', 'dKZaNBe4', '7183788'), - (12, 2597, 'maybe', '2024-04-26 19:19:59', '2025-12-17 19:46:34', 'dKZaNBe4', '7186726'), - (12, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dKZaNBe4', '7220467'), - (12, 2603, 'attending', '2024-05-15 03:03:17', '2025-12-17 19:46:35', 'dKZaNBe4', '7225669'), - (12, 2604, 'not_attending', '2024-05-28 13:01:46', '2025-12-17 19:46:36', 'dKZaNBe4', '7225670'), - (12, 2605, 'attending', '2024-05-03 17:05:29', '2025-12-17 19:46:35', 'dKZaNBe4', '7229243'), - (12, 2606, 'attending', '2024-04-28 15:47:40', '2025-12-17 19:46:35', 'dKZaNBe4', '7230496'), - (12, 2609, 'not_attending', '2024-05-02 21:07:42', '2025-12-17 19:46:35', 'dKZaNBe4', '7240354'), - (12, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dKZaNBe4', '7251633'), - (12, 2621, 'not_attending', '2024-05-07 01:41:06', '2025-12-17 19:46:35', 'dKZaNBe4', '7258170'), - (12, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dKZaNBe4', '7263048'), - (12, 2626, 'attending', '2024-05-15 03:03:35', '2025-12-17 19:46:35', 'dKZaNBe4', '7264723'), - (12, 2627, 'not_attending', '2024-05-19 03:13:51', '2025-12-17 19:46:35', 'dKZaNBe4', '7264724'), - (12, 2628, 'attending', '2024-05-19 03:13:57', '2025-12-17 19:46:36', 'dKZaNBe4', '7264725'), - (12, 2629, 'attending', '2024-05-19 03:14:35', '2025-12-17 19:46:28', 'dKZaNBe4', '7264726'), - (12, 2644, 'attending', '2024-05-20 13:51:13', '2025-12-17 19:46:35', 'dKZaNBe4', '7279039'), - (12, 2646, 'attending', '2024-05-20 15:58:17', '2025-12-17 19:46:35', 'dKZaNBe4', '7281768'), - (12, 2649, 'not_attending', '2024-05-21 17:55:21', '2025-12-17 19:46:35', 'dKZaNBe4', '7282950'), - (12, 2659, 'attending', '2024-06-01 20:45:37', '2025-12-17 19:46:36', 'dKZaNBe4', '7299599'), - (12, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dKZaNBe4', '7302674'), - (12, 2663, 'maybe', '2024-06-03 18:41:40', '2025-12-17 19:46:36', 'dKZaNBe4', '7303913'), - (12, 2667, 'attending', '2024-06-05 15:03:58', '2025-12-17 19:46:36', 'dKZaNBe4', '7307776'), - (12, 2675, 'not_attending', '2024-07-23 02:09:52', '2025-12-17 19:46:31', 'dKZaNBe4', '7319481'), - (12, 2678, 'attending', '2024-06-13 17:43:11', '2025-12-17 19:46:28', 'dKZaNBe4', '7319489'), - (12, 2679, 'maybe', '2024-06-22 20:42:16', '2025-12-17 19:46:29', 'dKZaNBe4', '7319490'), - (12, 2681, 'attending', '2024-06-10 05:36:03', '2025-12-17 19:46:28', 'dKZaNBe4', '7320409'), - (12, 2682, 'attending', '2024-06-10 18:29:25', '2025-12-17 19:46:28', 'dKZaNBe4', '7321862'), - (12, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'dKZaNBe4', '7324019'), - (12, 2688, 'attending', '2024-06-24 13:50:44', '2025-12-17 19:46:29', 'dKZaNBe4', '7324073'), - (12, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dKZaNBe4', '7324074'), - (12, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dKZaNBe4', '7324075'), - (12, 2691, 'attending', '2024-07-17 13:22:59', '2025-12-17 19:46:30', 'dKZaNBe4', '7324076'), - (12, 2692, 'maybe', '2024-07-27 21:32:39', '2025-12-17 19:46:30', 'dKZaNBe4', '7324077'), - (12, 2693, 'attending', '2024-07-23 02:09:45', '2025-12-17 19:46:31', 'dKZaNBe4', '7324078'), - (12, 2694, 'attending', '2024-08-06 20:27:28', '2025-12-17 19:46:31', 'dKZaNBe4', '7324079'), - (12, 2695, 'not_attending', '2024-08-13 02:50:15', '2025-12-17 19:46:31', 'dKZaNBe4', '7324080'), - (12, 2696, 'attending', '2024-08-23 03:28:03', '2025-12-17 19:46:32', 'dKZaNBe4', '7324081'), - (12, 2697, 'attending', '2024-08-30 22:08:44', '2025-12-17 19:46:32', 'dKZaNBe4', '7324082'), - (12, 2698, 'attending', '2024-08-06 20:27:41', '2025-12-17 19:46:24', 'dKZaNBe4', '7324083'), - (12, 2699, 'attending', '2024-06-12 15:10:33', '2025-12-17 19:46:28', 'dKZaNBe4', '7324385'), - (12, 2702, 'attending', '2024-06-13 15:16:03', '2025-12-17 19:46:28', 'dKZaNBe4', '7324867'), - (12, 2705, 'maybe', '2024-06-13 13:30:57', '2025-12-17 19:46:29', 'dKZaNBe4', '7324944'), - (12, 2706, 'attending', '2024-06-13 13:36:50', '2025-12-17 19:46:28', 'dKZaNBe4', '7324947'), - (12, 2707, 'maybe', '2024-06-13 15:03:07', '2025-12-17 19:46:28', 'dKZaNBe4', '7324952'), - (12, 2712, 'attending', '2024-08-02 22:55:07', '2025-12-17 19:46:31', 'dKZaNBe4', '7326525'), - (12, 2719, 'attending', '2024-06-18 20:54:21', '2025-12-17 19:46:29', 'dKZaNBe4', '7331305'), - (12, 2721, 'attending', '2024-06-18 23:05:19', '2025-12-17 19:46:29', 'dKZaNBe4', '7331456'), - (12, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dKZaNBe4', '7331457'), - (12, 2724, 'attending', '2024-06-26 20:38:44', '2025-12-17 19:46:29', 'dKZaNBe4', '7332562'), - (12, 2730, 'attending', '2024-06-22 06:53:37', '2025-12-17 19:46:29', 'dKZaNBe4', '7335193'), - (12, 2734, 'not_attending', '2024-06-27 17:35:01', '2025-12-17 19:46:29', 'dKZaNBe4', '7339440'), - (12, 2746, 'not_attending', '2024-07-11 21:18:15', '2025-12-17 19:46:29', 'dKZaNBe4', '7348713'), - (12, 2747, 'attending', '2024-07-17 22:13:15', '2025-12-17 19:46:30', 'dKZaNBe4', '7353587'), - (12, 2749, 'attending', '2024-07-07 18:43:20', '2025-12-17 19:46:29', 'dKZaNBe4', '7355496'), - (12, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dKZaNBe4', '7356752'), - (12, 2755, 'maybe', '2024-07-10 21:01:21', '2025-12-17 19:46:29', 'dKZaNBe4', '7357808'), - (12, 2757, 'attending', '2024-07-11 15:41:00', '2025-12-17 19:46:30', 'dKZaNBe4', '7358733'), - (12, 2758, 'attending', '2024-07-11 22:20:02', '2025-12-17 19:46:30', 'dKZaNBe4', '7358837'), - (12, 2759, 'attending', '2024-07-12 18:04:01', '2025-12-17 19:46:30', 'dKZaNBe4', '7359624'), - (12, 2760, 'not_attending', '2024-07-18 19:35:41', '2025-12-17 19:46:30', 'dKZaNBe4', '7359871'), - (12, 2763, 'attending', '2024-07-17 13:23:14', '2025-12-17 19:46:30', 'dKZaNBe4', '7363594'), - (12, 2764, 'attending', '2024-07-14 23:08:11', '2025-12-17 19:46:30', 'dKZaNBe4', '7363595'), - (12, 2766, 'attending', '2024-07-21 21:06:51', '2025-12-17 19:46:30', 'dKZaNBe4', '7363643'), - (12, 2767, 'maybe', '2024-07-22 20:48:05', '2025-12-17 19:46:30', 'dKZaNBe4', '7364726'), - (12, 2768, 'attending', '2024-07-18 00:38:14', '2025-12-17 19:46:30', 'dKZaNBe4', '7366031'), - (12, 2769, 'attending', '2024-07-19 21:32:50', '2025-12-17 19:46:30', 'dKZaNBe4', '7366803'), - (12, 2773, 'not_attending', '2024-07-21 21:06:21', '2025-12-17 19:46:31', 'dKZaNBe4', '7368605'), - (12, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dKZaNBe4', '7368606'), - (12, 2781, 'attending', '2024-07-25 21:16:51', '2025-12-17 19:46:30', 'dKZaNBe4', '7373194'), - (12, 2786, 'attending', '2024-08-02 02:15:12', '2025-12-17 19:46:31', 'dKZaNBe4', '7381403'), - (12, 2798, 'attending', '2024-08-11 23:27:39', '2025-12-17 19:46:31', 'dKZaNBe4', '7395910'), - (12, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dKZaNBe4', '7397462'), - (12, 2802, 'attending', '2024-09-02 01:02:56', '2025-12-17 19:46:32', 'dKZaNBe4', '7397463'), - (12, 2804, 'attending', '2024-08-19 02:51:06', '2025-12-17 19:46:32', 'dKZaNBe4', '7399270'), - (12, 2806, 'attending', '2024-08-21 21:36:32', '2025-12-17 19:46:25', 'dKZaNBe4', '7404888'), - (12, 2808, 'attending', '2024-08-28 03:09:52', '2025-12-17 19:46:32', 'dKZaNBe4', '7412860'), - (12, 2809, 'attending', '2024-08-30 05:27:39', '2025-12-17 19:46:32', 'dKZaNBe4', '7414808'), - (12, 2811, 'attending', '2024-08-31 02:57:43', '2025-12-17 19:46:32', 'dKZaNBe4', '7418895'), - (12, 2817, 'maybe', '2024-09-29 19:30:00', '2025-12-17 19:46:25', 'dKZaNBe4', '7424270'), - (12, 2819, 'attending', '2024-10-19 20:41:15', '2025-12-17 19:46:26', 'dKZaNBe4', '7424273'), - (12, 2821, 'attending', '2024-10-09 15:34:01', '2025-12-17 19:46:26', 'dKZaNBe4', '7424275'), - (12, 2822, 'not_attending', '2024-11-07 02:33:34', '2025-12-17 19:46:26', 'dKZaNBe4', '7424276'), - (12, 2823, 'attending', '2024-09-06 13:45:29', '2025-12-17 19:46:24', 'dKZaNBe4', '7430247'), - (12, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dKZaNBe4', '7432751'), - (12, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dKZaNBe4', '7432752'), - (12, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dKZaNBe4', '7432753'), - (12, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dKZaNBe4', '7432754'), - (12, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dKZaNBe4', '7432755'), - (12, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dKZaNBe4', '7432756'), - (12, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dKZaNBe4', '7432758'), - (12, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dKZaNBe4', '7432759'), - (12, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dKZaNBe4', '7433834'), - (12, 2834, 'attending', '2024-09-11 01:52:13', '2025-12-17 19:46:25', 'dKZaNBe4', '7433852'), - (12, 2836, 'attending', '2024-09-14 20:27:24', '2025-12-17 19:46:25', 'dKZaNBe4', '7438708'), - (12, 2839, 'not_attending', '2024-09-25 19:49:23', '2025-12-17 19:46:25', 'dKZaNBe4', '7439262'), - (12, 2841, 'not_attending', '2024-09-16 01:07:15', '2025-12-17 19:46:25', 'dKZaNBe4', '7444444'), - (12, 2844, 'not_attending', '2024-09-20 14:46:27', '2025-12-17 19:46:25', 'dKZaNBe4', '7450233'), - (12, 2845, 'attending', '2024-09-21 21:22:47', '2025-12-17 19:46:25', 'dKZaNBe4', '7452129'), - (12, 2850, 'not_attending', '2024-10-02 00:14:08', '2025-12-17 19:46:25', 'dKZaNBe4', '7457153'), - (12, 2861, 'attending', '2024-09-30 19:58:50', '2025-12-17 19:46:26', 'dKZaNBe4', '7469826'), - (12, 2862, 'attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dKZaNBe4', '7470197'), - (12, 2869, 'attending', '2024-10-02 23:14:24', '2025-12-17 19:46:26', 'dKZaNBe4', '7474823'), - (12, 2870, 'attending', '2024-10-03 22:25:43', '2025-12-17 19:46:26', 'dKZaNBe4', '7475068'), - (12, 2871, 'attending', '2024-10-06 04:40:16', '2025-12-17 19:46:26', 'dKZaNBe4', '7480481'), - (12, 2883, 'attending', '2024-10-17 04:52:14', '2025-12-17 19:46:26', 'dKZaNBe4', '7649157'), - (12, 2891, 'maybe', '2024-10-26 19:06:10', '2025-12-17 19:46:26', 'dKZaNBe4', '7668163'), - (12, 2894, 'attending', '2024-11-02 20:55:50', '2025-12-17 19:46:26', 'dKZaNBe4', '7680059'), - (12, 2897, 'attending', '2024-11-14 21:10:00', '2025-12-17 19:46:27', 'dKZaNBe4', '7683650'), - (12, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'dKZaNBe4', '7685613'), - (12, 2899, 'attending', '2024-11-11 14:31:48', '2025-12-17 19:46:27', 'dKZaNBe4', '7685616'), - (12, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dKZaNBe4', '7688194'), - (12, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dKZaNBe4', '7688196'), - (12, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dKZaNBe4', '7688289'), - (12, 2906, 'maybe', '2024-11-09 21:53:41', '2025-12-17 19:46:26', 'dKZaNBe4', '7689366'), - (12, 2909, 'attending', '2024-11-11 00:01:03', '2025-12-17 19:46:27', 'dKZaNBe4', '7689771'), - (12, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dKZaNBe4', '7692763'), - (12, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dKZaNBe4', '7697552'), - (12, 2916, 'attending', '2024-11-17 19:12:15', '2025-12-17 19:46:27', 'dKZaNBe4', '7699006'), - (12, 2917, 'attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dKZaNBe4', '7699878'), - (12, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dKZaNBe4', '7704043'), - (12, 2922, 'maybe', '2024-11-25 23:38:21', '2025-12-17 19:46:21', 'dKZaNBe4', '7710890'), - (12, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dKZaNBe4', '7712467'), - (12, 2925, 'attending', '2024-12-03 04:45:23', '2025-12-17 19:46:21', 'dKZaNBe4', '7713584'), - (12, 2926, 'not_attending', '2024-12-03 04:45:19', '2025-12-17 19:46:21', 'dKZaNBe4', '7713585'), - (12, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dKZaNBe4', '7713586'), - (12, 2953, 'attending', '2024-12-14 18:37:13', '2025-12-17 19:46:21', 'dKZaNBe4', '7733836'), - (12, 2954, 'attending', '2024-12-14 18:28:11', '2025-12-17 19:46:21', 'dKZaNBe4', '7734260'), - (12, 2957, 'attending', '2024-12-15 21:00:04', '2025-12-17 19:46:21', 'dKZaNBe4', '7735370'), - (12, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dKZaNBe4', '7738518'), - (12, 2962, 'not_attending', '2024-12-26 20:50:08', '2025-12-17 19:46:22', 'dKZaNBe4', '7750632'), - (12, 2963, 'attending', '2024-12-28 19:05:03', '2025-12-17 19:46:22', 'dKZaNBe4', '7750636'), - (12, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dKZaNBe4', '7796540'), - (12, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dKZaNBe4', '7796541'), - (12, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dKZaNBe4', '7796542'), - (12, 2972, 'attending', '2025-01-15 20:13:20', '2025-12-17 19:46:22', 'dKZaNBe4', '7812563'), - (12, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dKZaNBe4', '7825913'), - (12, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dKZaNBe4', '7825920'), - (12, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dKZaNBe4', '7826209'), - (12, 2984, 'maybe', '2025-02-02 19:42:43', '2025-12-17 19:46:23', 'dKZaNBe4', '7830134'), - (12, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dKZaNBe4', '7834742'), - (12, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dKZaNBe4', '7842108'), - (12, 2990, 'attending', '2025-02-15 06:06:07', '2025-12-17 19:46:23', 'dKZaNBe4', '7842898'), - (12, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dKZaNBe4', '7842902'), - (12, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dKZaNBe4', '7842903'), - (12, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dKZaNBe4', '7842904'), - (12, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dKZaNBe4', '7842905'), - (12, 3001, 'attending', '2025-02-18 16:45:49', '2025-12-17 19:46:24', 'dKZaNBe4', '7854184'), - (12, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dKZaNBe4', '7855719'), - (12, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dKZaNBe4', '7860683'), - (12, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dKZaNBe4', '7860684'), - (12, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dKZaNBe4', '7866095'), - (12, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dKZaNBe4', '7869170'), - (12, 3014, 'attending', '2025-04-01 01:23:50', '2025-12-17 19:46:19', 'dKZaNBe4', '7869185'), - (12, 3015, 'attending', '2025-04-18 14:33:14', '2025-12-17 19:46:20', 'dKZaNBe4', '7869186'), - (12, 3016, 'attending', '2025-04-18 14:33:09', '2025-12-17 19:46:20', 'dKZaNBe4', '7869187'), - (12, 3017, 'attending', '2025-03-25 01:04:03', '2025-12-17 19:46:19', 'dKZaNBe4', '7869188'), - (12, 3028, 'attending', '2025-04-27 17:52:37', '2025-12-17 19:46:20', 'dKZaNBe4', '7869199'), - (12, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dKZaNBe4', '7869201'), - (12, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dKZaNBe4', '7877465'), - (12, 3041, 'attending', '2025-03-14 04:33:14', '2025-12-17 19:46:19', 'dKZaNBe4', '7881995'), - (12, 3043, 'maybe', '2025-03-15 19:49:28', '2025-12-17 19:46:19', 'dKZaNBe4', '7882587'), - (12, 3049, 'attending', '2025-03-16 16:47:55', '2025-12-17 19:46:19', 'dKZaNBe4', '7883215'), - (12, 3050, 'maybe', '2025-03-17 13:06:53', '2025-12-17 19:46:19', 'dKZaNBe4', '7884021'), - (12, 3053, 'attending', '2025-03-17 00:11:15', '2025-12-17 19:46:19', 'dKZaNBe4', '7884030'), - (12, 3055, 'maybe', '2025-03-27 03:28:42', '2025-12-17 19:46:19', 'dKZaNBe4', '7888118'), - (12, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dKZaNBe4', '7888250'), - (12, 3058, 'not_attending', '2025-03-27 22:15:01', '2025-12-17 19:46:19', 'dKZaNBe4', '7891460'), - (12, 3072, 'maybe', '2025-04-03 00:06:18', '2025-12-17 19:46:19', 'dKZaNBe4', '7895449'), - (12, 3081, 'not_attending', '2025-04-08 12:33:06', '2025-12-17 19:46:20', 'dKZaNBe4', '7902801'), - (12, 3088, 'attending', '2025-06-10 18:55:31', '2025-12-17 19:46:15', 'dKZaNBe4', '7904777'), - (12, 3091, 'not_attending', '2025-04-18 14:34:01', '2025-12-17 19:46:20', 'dKZaNBe4', '8340289'), - (12, 3093, 'not_attending', '2025-04-20 16:59:35', '2025-12-17 19:46:20', 'dKZaNBe4', '8342248'), - (12, 3094, 'not_attending', '2025-05-05 11:43:29', '2025-12-17 19:46:21', 'dKZaNBe4', '8342292'), - (12, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dKZaNBe4', '8349164'), - (12, 3105, 'attending', '2025-06-16 02:18:02', '2025-12-17 19:46:15', 'dKZaNBe4', '8349545'), - (12, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dKZaNBe4', '8353584'), - (12, 3113, 'attending', '2025-05-01 01:57:52', '2025-12-17 19:46:20', 'dKZaNBe4', '8355089'), - (12, 3125, 'attending', '2025-05-09 21:29:55', '2025-12-17 19:46:21', 'dKZaNBe4', '8364293'), - (12, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dKZaNBe4', '8368028'), - (12, 3132, 'not_attending', '2025-05-18 21:55:13', '2025-12-17 19:46:21', 'dKZaNBe4', '8368029'), - (12, 3133, 'attending', '2025-05-23 04:37:23', '2025-12-17 19:46:14', 'dKZaNBe4', '8368030'), - (12, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dKZaNBe4', '8388462'), - (12, 3150, 'maybe', '2025-06-16 16:08:19', '2025-12-17 19:46:15', 'dKZaNBe4', '8393174'), - (12, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dKZaNBe4', '8400273'), - (12, 3154, 'attending', '2025-06-21 18:43:14', '2025-12-17 19:46:15', 'dKZaNBe4', '8400274'), - (12, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dKZaNBe4', '8400275'), - (12, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dKZaNBe4', '8400276'), - (12, 3157, 'attending', '2025-06-04 04:29:10', '2025-12-17 19:46:15', 'dKZaNBe4', '8401407'), - (12, 3158, 'attending', '2025-06-04 04:30:57', '2025-12-17 19:46:15', 'dKZaNBe4', '8401408'), - (12, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dKZaNBe4', '8404977'), - (12, 3176, 'attending', '2025-06-20 01:02:05', '2025-12-17 19:46:15', 'dKZaNBe4', '8416741'), - (12, 3179, 'not_attending', '2025-06-24 03:27:21', '2025-12-17 19:46:15', 'dKZaNBe4', '8421850'), - (12, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dKZaNBe4', '8430783'), - (12, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dKZaNBe4', '8430784'), - (12, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dKZaNBe4', '8430799'), - (12, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dKZaNBe4', '8430800'), - (12, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dKZaNBe4', '8430801'), - (12, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dKZaNBe4', '8438709'), - (12, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dKZaNBe4', '8457738'), - (12, 3200, 'attending', '2025-07-19 18:31:02', '2025-12-17 19:46:17', 'dKZaNBe4', '8459566'), - (12, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dKZaNBe4', '8459567'), - (12, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dKZaNBe4', '8461032'), - (12, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dKZaNBe4', '8477877'), - (12, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dKZaNBe4', '8485688'), - (12, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dKZaNBe4', '8490587'), - (12, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dKZaNBe4', '8493552'), - (12, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dKZaNBe4', '8493553'), - (12, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dKZaNBe4', '8493554'), - (12, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dKZaNBe4', '8493555'), - (12, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dKZaNBe4', '8493556'), - (12, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dKZaNBe4', '8493557'), - (12, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dKZaNBe4', '8493558'), - (12, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dKZaNBe4', '8493559'), - (12, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dKZaNBe4', '8493560'), - (12, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dKZaNBe4', '8493561'), - (12, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dKZaNBe4', '8493572'), - (12, 3272, 'maybe', '2025-09-18 19:54:23', '2025-12-17 19:46:12', 'dKZaNBe4', '8524068'), - (12, 3274, 'attending', '2025-09-20 21:23:32', '2025-12-17 19:46:12', 'dKZaNBe4', '8527784'), - (12, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dKZaNBe4', '8540725'), - (12, 3289, 'attending', '2025-10-23 01:54:52', '2025-12-17 19:46:14', 'dKZaNBe4', '8542939'), - (12, 3295, 'not_attending', '2025-10-26 19:56:53', '2025-12-17 19:46:14', 'dKZaNBe4', '8547541'), - (12, 3300, 'attending', '2025-10-26 19:57:04', '2025-12-17 19:46:14', 'dKZaNBe4', '8549145'), - (12, 3302, 'attending', '2025-11-09 05:28:59', '2025-12-17 19:46:14', 'dKZaNBe4', '8550022'), - (12, 3304, 'attending', '2025-11-22 21:31:03', '2025-12-17 19:46:14', 'dKZaNBe4', '8550024'), - (12, 3305, 'not_attending', '2025-12-03 00:39:01', '2025-12-17 19:46:11', 'dKZaNBe4', '8550025'), - (12, 3306, 'attending', '2025-12-13 22:34:10', '2025-12-17 19:46:11', 'dKZaNBe4', '8550026'), - (12, 3308, 'maybe', '2025-11-11 01:02:42', '2025-12-17 19:46:14', 'dKZaNBe4', '8550408'), - (12, 3316, 'attending', '2025-11-05 04:37:11', '2025-12-17 19:46:14', 'dKZaNBe4', '8552493'), - (12, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dKZaNBe4', '8555421'), - (12, 3323, 'attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'dKZaNBe4', '8555522'), - (12, 3325, 'maybe', '2025-11-20 00:18:52', '2025-12-17 19:46:14', 'dKZaNBe4', '8556660'), - (12, 3328, 'maybe', '2025-11-22 21:31:06', '2025-12-17 19:46:14', 'dKZaNBe4', '8557254'), - (13, 1480, 'attending', '2022-06-24 22:08:08', '2025-12-17 19:47:19', 'ZdNrg9kd', '5411699'), - (13, 1482, 'not_attending', '2022-06-25 01:25:48', '2025-12-17 19:47:19', 'ZdNrg9kd', '5412550'), - (13, 1485, 'attending', '2022-06-23 20:49:37', '2025-12-17 19:47:17', 'ZdNrg9kd', '5416276'), - (13, 1488, 'attending', '2022-06-25 20:50:38', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420154'), - (13, 1489, 'maybe', '2022-07-06 18:56:27', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420155'), - (13, 1490, 'attending', '2022-07-03 06:12:13', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420156'), - (13, 1491, 'attending', '2022-07-03 06:12:35', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420158'), - (13, 1492, 'attending', '2022-07-05 03:07:30', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420175'), - (13, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422086'), - (13, 1496, 'attending', '2022-06-26 16:41:21', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422404'), - (13, 1497, 'attending', '2022-06-26 16:41:27', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422405'), - (13, 1498, 'attending', '2022-07-02 19:57:57', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422406'), - (13, 1500, 'maybe', '2022-07-06 03:02:41', '2025-12-17 19:47:19', 'ZdNrg9kd', '5423915'), - (13, 1501, 'maybe', '2022-06-29 22:47:55', '2025-12-17 19:47:19', 'ZdNrg9kd', '5424546'), - (13, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ZdNrg9kd', '5424565'), - (13, 1504, 'attending', '2022-07-01 23:27:43', '2025-12-17 19:47:19', 'ZdNrg9kd', '5426882'), - (13, 1505, 'attending', '2022-07-02 22:19:31', '2025-12-17 19:47:19', 'ZdNrg9kd', '5427083'), - (13, 1508, 'attending', '2022-07-02 22:18:37', '2025-12-17 19:47:19', 'ZdNrg9kd', '5433453'), - (13, 1509, 'maybe', '2022-07-06 03:02:31', '2025-12-17 19:47:19', 'ZdNrg9kd', '5434019'), - (13, 1511, 'attending', '2022-07-07 03:44:02', '2025-12-17 19:47:19', 'ZdNrg9kd', '5437733'), - (13, 1513, 'attending', '2022-07-10 03:06:35', '2025-12-17 19:47:19', 'ZdNrg9kd', '5441125'), - (13, 1514, 'attending', '2022-07-10 03:06:37', '2025-12-17 19:47:20', 'ZdNrg9kd', '5441126'), - (13, 1515, 'maybe', '2022-07-19 15:16:21', '2025-12-17 19:47:21', 'ZdNrg9kd', '5441128'), - (13, 1516, 'attending', '2022-08-16 01:59:40', '2025-12-17 19:47:23', 'ZdNrg9kd', '5441129'), - (13, 1517, 'attending', '2022-08-16 01:59:49', '2025-12-17 19:47:23', 'ZdNrg9kd', '5441130'), - (13, 1518, 'attending', '2022-08-22 02:10:40', '2025-12-17 19:47:24', 'ZdNrg9kd', '5441131'), - (13, 1519, 'attending', '2022-08-22 02:10:58', '2025-12-17 19:47:24', 'ZdNrg9kd', '5441132'), - (13, 1520, 'attending', '2022-07-10 03:04:23', '2025-12-17 19:47:19', 'ZdNrg9kd', '5441645'), - (13, 1522, 'attending', '2022-07-12 02:03:01', '2025-12-17 19:47:20', 'ZdNrg9kd', '5442832'), - (13, 1524, 'attending', '2022-07-11 17:49:47', '2025-12-17 19:47:19', 'ZdNrg9kd', '5443300'), - (13, 1525, 'not_attending', '2022-07-13 00:58:13', '2025-12-17 19:47:19', 'ZdNrg9kd', '5444962'), - (13, 1528, 'maybe', '2022-07-13 22:45:47', '2025-12-17 19:47:20', 'ZdNrg9kd', '5446643'), - (13, 1537, 'maybe', '2022-07-16 17:47:45', '2025-12-17 19:47:20', 'ZdNrg9kd', '5449117'), - (13, 1539, 'attending', '2022-07-19 15:16:12', '2025-12-17 19:47:21', 'ZdNrg9kd', '5449671'), - (13, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ZdNrg9kd', '5453325'), - (13, 1541, 'attending', '2022-07-19 15:16:02', '2025-12-17 19:47:20', 'ZdNrg9kd', '5453542'), - (13, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ZdNrg9kd', '5454516'), - (13, 1544, 'maybe', '2022-09-11 22:59:57', '2025-12-17 19:47:11', 'ZdNrg9kd', '5454517'), - (13, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ZdNrg9kd', '5454605'), - (13, 1546, 'maybe', '2022-07-27 01:38:39', '2025-12-17 19:47:20', 'ZdNrg9kd', '5454607'), - (13, 1551, 'maybe', '2022-07-19 22:37:55', '2025-12-17 19:47:20', 'ZdNrg9kd', '5455037'), - (13, 1553, 'maybe', '2022-07-19 23:29:00', '2025-12-17 19:47:20', 'ZdNrg9kd', '5455164'), - (13, 1557, 'attending', '2022-08-03 01:51:59', '2025-12-17 19:47:21', 'ZdNrg9kd', '5458729'), - (13, 1558, 'attending', '2022-09-14 03:06:03', '2025-12-17 19:47:10', 'ZdNrg9kd', '5458730'), - (13, 1559, 'attending', '2022-09-16 22:35:59', '2025-12-17 19:47:11', 'ZdNrg9kd', '5458731'), - (13, 1561, 'attending', '2022-08-02 02:50:05', '2025-12-17 19:47:22', 'ZdNrg9kd', '5461278'), - (13, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ZdNrg9kd', '5469480'), - (13, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ZdNrg9kd', '5471073'), - (13, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ZdNrg9kd', '5474663'), - (13, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ZdNrg9kd', '5482022'), - (13, 1575, 'attending', '2022-08-17 01:49:20', '2025-12-17 19:47:23', 'ZdNrg9kd', '5482250'), - (13, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ZdNrg9kd', '5482793'), - (13, 1580, 'attending', '2022-08-07 04:24:58', '2025-12-17 19:47:22', 'ZdNrg9kd', '5488912'), - (13, 1582, 'attending', '2022-08-16 01:59:35', '2025-12-17 19:47:23', 'ZdNrg9kd', '5492001'), - (13, 1583, 'attending', '2022-08-07 21:17:29', '2025-12-17 19:47:22', 'ZdNrg9kd', '5492002'), - (13, 1584, 'maybe', '2022-08-16 01:59:46', '2025-12-17 19:47:23', 'ZdNrg9kd', '5492004'), - (13, 1585, 'attending', '2022-08-07 21:17:20', '2025-12-17 19:47:22', 'ZdNrg9kd', '5492013'), - (13, 1586, 'attending', '2022-08-17 01:50:07', '2025-12-17 19:47:23', 'ZdNrg9kd', '5492019'), - (13, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ZdNrg9kd', '5492192'), - (13, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ZdNrg9kd', '5493139'), - (13, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'ZdNrg9kd', '5493200'), - (13, 1603, 'attending', '2022-08-16 01:59:21', '2025-12-17 19:47:23', 'ZdNrg9kd', '5497895'), - (13, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ZdNrg9kd', '5502188'), - (13, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ZdNrg9kd', '5505059'), - (13, 1609, 'attending', '2022-08-22 02:10:51', '2025-12-17 19:47:23', 'ZdNrg9kd', '5506590'), - (13, 1610, 'attending', '2022-08-22 02:10:13', '2025-12-17 19:47:23', 'ZdNrg9kd', '5506595'), - (13, 1615, 'maybe', '2022-08-22 02:10:25', '2025-12-17 19:47:23', 'ZdNrg9kd', '5509055'), - (13, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ZdNrg9kd', '5512862'), - (13, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ZdNrg9kd', '5513985'), - (13, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ZdNrg9kd', '5519981'), - (13, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ZdNrg9kd', '5522550'), - (13, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ZdNrg9kd', '5534683'), - (13, 1635, 'attending', '2022-09-05 23:33:28', '2025-12-17 19:47:10', 'ZdNrg9kd', '5537735'), - (13, 1637, 'attending', '2022-09-05 23:32:57', '2025-12-17 19:47:24', 'ZdNrg9kd', '5539591'), - (13, 1640, 'attending', '2022-09-05 23:33:24', '2025-12-17 19:47:10', 'ZdNrg9kd', '5540859'), - (13, 1642, 'maybe', '2022-09-05 23:33:09', '2025-12-17 19:47:24', 'ZdNrg9kd', '5544227'), - (13, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ZdNrg9kd', '5546619'), - (13, 1653, 'maybe', '2022-09-16 22:36:26', '2025-12-17 19:47:11', 'ZdNrg9kd', '5554400'), - (13, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ZdNrg9kd', '5555245'), - (13, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ZdNrg9kd', '5557747'), - (13, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ZdNrg9kd', '5560255'), - (13, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ZdNrg9kd', '5562906'), - (13, 1665, 'attending', '2022-09-12 21:24:37', '2025-12-17 19:47:25', 'ZdNrg9kd', '5563133'), - (13, 1666, 'maybe', '2022-09-20 01:53:42', '2025-12-17 19:47:11', 'ZdNrg9kd', '5563208'), - (13, 1667, 'attending', '2022-09-24 16:29:24', '2025-12-17 19:47:11', 'ZdNrg9kd', '5563221'), - (13, 1668, 'attending', '2022-10-01 17:56:11', '2025-12-17 19:47:12', 'ZdNrg9kd', '5563222'), - (13, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ZdNrg9kd', '5600604'), - (13, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ZdNrg9kd', '5605544'), - (13, 1699, 'attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'ZdNrg9kd', '5606737'), - (13, 1704, 'attending', '2022-10-06 22:34:32', '2025-12-17 19:47:12', 'ZdNrg9kd', '5610508'), - (13, 1713, 'attending', '2022-10-04 02:31:53', '2025-12-17 19:47:13', 'ZdNrg9kd', '5622108'), - (13, 1714, 'attending', '2022-10-04 02:31:55', '2025-12-17 19:47:14', 'ZdNrg9kd', '5622347'), - (13, 1717, 'attending', '2022-10-21 22:31:25', '2025-12-17 19:47:13', 'ZdNrg9kd', '5622842'), - (13, 1719, 'attending', '2022-10-07 13:14:11', '2025-12-17 19:47:12', 'ZdNrg9kd', '5630958'), - (13, 1720, 'attending', '2022-10-12 21:56:51', '2025-12-17 19:47:12', 'ZdNrg9kd', '5630959'), - (13, 1721, 'attending', '2022-10-12 21:57:09', '2025-12-17 19:47:13', 'ZdNrg9kd', '5630960'), - (13, 1722, 'maybe', '2022-10-12 21:57:11', '2025-12-17 19:47:14', 'ZdNrg9kd', '5630961'), - (13, 1723, 'attending', '2022-10-12 21:57:15', '2025-12-17 19:47:15', 'ZdNrg9kd', '5630962'), - (13, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ZdNrg9kd', '5630966'), - (13, 1725, 'attending', '2022-11-08 02:37:53', '2025-12-17 19:47:16', 'ZdNrg9kd', '5630967'), - (13, 1726, 'attending', '2022-11-08 02:37:55', '2025-12-17 19:47:16', 'ZdNrg9kd', '5630968'), - (13, 1727, 'attending', '2022-11-08 02:37:56', '2025-12-17 19:47:16', 'ZdNrg9kd', '5630969'), - (13, 1728, 'attending', '2022-12-05 03:36:33', '2025-12-17 19:47:17', 'ZdNrg9kd', '5630970'), - (13, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ZdNrg9kd', '5635406'), - (13, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ZdNrg9kd', '5638765'), - (13, 1739, 'maybe', '2022-10-14 02:18:04', '2025-12-17 19:47:14', 'ZdNrg9kd', '5640097'), - (13, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ZdNrg9kd', '5640843'), - (13, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ZdNrg9kd', '5641521'), - (13, 1744, 'attending', '2022-11-21 23:32:13', '2025-12-17 19:47:16', 'ZdNrg9kd', '5642818'), - (13, 1747, 'maybe', '2022-10-24 01:46:57', '2025-12-17 19:47:14', 'ZdNrg9kd', '5648009'), - (13, 1750, 'attending', '2022-10-16 03:59:20', '2025-12-17 19:47:15', 'ZdNrg9kd', '5652365'), - (13, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ZdNrg9kd', '5652395'), - (13, 1753, 'maybe', '2022-10-16 03:58:52', '2025-12-17 19:47:13', 'ZdNrg9kd', '5656228'), - (13, 1757, 'maybe', '2022-10-24 03:01:37', '2025-12-17 19:47:15', 'ZdNrg9kd', '5668974'), - (13, 1759, 'attending', '2022-10-22 18:55:00', '2025-12-17 19:47:13', 'ZdNrg9kd', '5669097'), - (13, 1762, 'attending', '2022-11-12 23:38:36', '2025-12-17 19:47:16', 'ZdNrg9kd', '5670445'), - (13, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ZdNrg9kd', '5671637'), - (13, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ZdNrg9kd', '5672329'), - (13, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ZdNrg9kd', '5674057'), - (13, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ZdNrg9kd', '5674060'), - (13, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ZdNrg9kd', '5677461'), - (13, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ZdNrg9kd', '5698046'), - (13, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'ZdNrg9kd', '5699760'), - (13, 1790, 'attending', '2022-11-08 02:37:50', '2025-12-17 19:47:15', 'ZdNrg9kd', '5727424'), - (13, 1793, 'attending', '2022-11-20 23:52:29', '2025-12-17 19:47:16', 'ZdNrg9kd', '5736365'), - (13, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ZdNrg9kd', '5741601'), - (13, 1797, 'attending', '2022-12-01 00:41:38', '2025-12-17 19:47:17', 'ZdNrg9kd', '5757486'), - (13, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ZdNrg9kd', '5763458'), - (13, 1800, 'attending', '2022-11-19 20:26:59', '2025-12-17 19:47:16', 'ZdNrg9kd', '5764667'), - (13, 1807, 'attending', '2023-01-11 00:46:24', '2025-12-17 19:47:05', 'ZdNrg9kd', '5764677'), - (13, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ZdNrg9kd', '5774172'), - (13, 1826, 'attending', '2022-12-04 18:50:53', '2025-12-17 19:47:04', 'ZdNrg9kd', '5776768'), - (13, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'ZdNrg9kd', '5818247'), - (13, 1834, 'attending', '2022-12-10 22:54:28', '2025-12-17 19:47:17', 'ZdNrg9kd', '5819470'), - (13, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ZdNrg9kd', '5819471'), - (13, 1837, 'attending', '2022-12-08 00:30:15', '2025-12-17 19:47:16', 'ZdNrg9kd', '5820146'), - (13, 1842, 'attending', '2022-12-09 03:46:15', '2025-12-17 19:47:04', 'ZdNrg9kd', '5827739'), - (13, 1843, 'attending', '2022-12-17 19:28:03', '2025-12-17 19:47:04', 'ZdNrg9kd', '5844304'), - (13, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ZdNrg9kd', '5844306'), - (13, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ZdNrg9kd', '5850159'), - (13, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ZdNrg9kd', '5858999'), - (13, 1851, 'not_attending', '2023-01-08 22:13:13', '2025-12-17 19:47:05', 'ZdNrg9kd', '5869316'), - (13, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ZdNrg9kd', '5871984'), - (13, 1856, 'attending', '2023-01-14 05:49:09', '2025-12-17 19:47:05', 'ZdNrg9kd', '5873970'), - (13, 1857, 'attending', '2023-01-17 04:54:18', '2025-12-17 19:47:05', 'ZdNrg9kd', '5873973'), - (13, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ZdNrg9kd', '5876354'), - (13, 1863, 'attending', '2023-01-29 19:36:16', '2025-12-17 19:47:06', 'ZdNrg9kd', '5877255'), - (13, 1864, 'attending', '2023-01-17 04:54:24', '2025-12-17 19:47:05', 'ZdNrg9kd', '5879675'), - (13, 1865, 'attending', '2023-01-17 04:54:22', '2025-12-17 19:47:06', 'ZdNrg9kd', '5879676'), - (13, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'ZdNrg9kd', '5880939'), - (13, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ZdNrg9kd', '5880940'), - (13, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ZdNrg9kd', '5880942'), - (13, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ZdNrg9kd', '5880943'), - (13, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ZdNrg9kd', '5887890'), - (13, 1875, 'attending', '2023-01-26 23:00:55', '2025-12-17 19:47:06', 'ZdNrg9kd', '5887908'), - (13, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ZdNrg9kd', '5888598'), - (13, 1878, 'attending', '2023-01-29 03:29:01', '2025-12-17 19:47:07', 'ZdNrg9kd', '5893000'), - (13, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ZdNrg9kd', '5893260'), - (13, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ZdNrg9kd', '5899826'), - (13, 1889, 'attending', '2023-02-01 05:26:45', '2025-12-17 19:47:07', 'ZdNrg9kd', '5900199'), - (13, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ZdNrg9kd', '5900200'), - (13, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ZdNrg9kd', '5900202'), - (13, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ZdNrg9kd', '5900203'), - (13, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ZdNrg9kd', '5901108'), - (13, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ZdNrg9kd', '5901126'), - (13, 1897, 'attending', '2023-02-01 05:26:40', '2025-12-17 19:47:07', 'ZdNrg9kd', '5901128'), - (13, 1898, 'attending', '2023-02-01 05:26:32', '2025-12-17 19:47:06', 'ZdNrg9kd', '5901263'), - (13, 1899, 'maybe', '2023-02-01 05:26:53', '2025-12-17 19:47:07', 'ZdNrg9kd', '5901323'), - (13, 1907, 'maybe', '2023-02-04 18:31:13', '2025-12-17 19:47:07', 'ZdNrg9kd', '5904716'), - (13, 1908, 'attending', '2023-02-04 18:30:33', '2025-12-17 19:47:07', 'ZdNrg9kd', '5905018'), - (13, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ZdNrg9kd', '5909655'), - (13, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ZdNrg9kd', '5910522'), - (13, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ZdNrg9kd', '5910526'), - (13, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ZdNrg9kd', '5910528'), - (13, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ZdNrg9kd', '5916219'), - (13, 1926, 'attending', '2023-02-27 23:50:03', '2025-12-17 19:47:08', 'ZdNrg9kd', '5932620'), - (13, 1927, 'attending', '2023-02-27 23:50:24', '2025-12-17 19:47:10', 'ZdNrg9kd', '5932621'), - (13, 1930, 'attending', '2023-02-20 19:22:43', '2025-12-17 19:47:08', 'ZdNrg9kd', '5933462'), - (13, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ZdNrg9kd', '5936234'), - (13, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ZdNrg9kd', '5958351'), - (13, 1936, 'attending', '2023-02-23 22:51:52', '2025-12-17 19:47:08', 'ZdNrg9kd', '5959397'), - (13, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ZdNrg9kd', '5959751'), - (13, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ZdNrg9kd', '5959755'), - (13, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ZdNrg9kd', '5960055'), - (13, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ZdNrg9kd', '5961684'), - (13, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'ZdNrg9kd', '5962132'), - (13, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'ZdNrg9kd', '5962133'), - (13, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ZdNrg9kd', '5962134'), - (13, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ZdNrg9kd', '5962317'), - (13, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ZdNrg9kd', '5962318'), - (13, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ZdNrg9kd', '5965933'), - (13, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ZdNrg9kd', '5967014'), - (13, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'ZdNrg9kd', '5972763'), - (13, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ZdNrg9kd', '5972815'), - (13, 1960, 'attending', '2023-03-06 14:33:32', '2025-12-17 19:47:09', 'ZdNrg9kd', '5973267'), - (13, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ZdNrg9kd', '5974016'), - (13, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ZdNrg9kd', '5981515'), - (13, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ZdNrg9kd', '5993516'), - (13, 1972, 'maybe', '2023-03-19 18:47:59', '2025-12-17 19:46:56', 'ZdNrg9kd', '5993776'), - (13, 1973, 'attending', '2023-03-14 21:13:45', '2025-12-17 19:46:56', 'ZdNrg9kd', '5993777'), - (13, 1974, 'attending', '2023-03-27 17:46:47', '2025-12-17 19:46:57', 'ZdNrg9kd', '5993778'), - (13, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ZdNrg9kd', '5998939'), - (13, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ZdNrg9kd', '6028191'), - (13, 1982, 'attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ZdNrg9kd', '6040066'), - (13, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ZdNrg9kd', '6042717'), - (13, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ZdNrg9kd', '6044838'), - (13, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ZdNrg9kd', '6044839'), - (13, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNrg9kd', '6045684'), - (13, 1994, 'maybe', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ZdNrg9kd', '6050104'), - (13, 2003, 'attending', '2023-05-16 17:05:32', '2025-12-17 19:47:03', 'ZdNrg9kd', '6052606'), - (13, 2004, 'not_attending', '2023-05-28 03:12:03', '2025-12-17 19:47:04', 'ZdNrg9kd', '6052607'), - (13, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ZdNrg9kd', '6053195'), - (13, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ZdNrg9kd', '6053198'), - (13, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ZdNrg9kd', '6056085'), - (13, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ZdNrg9kd', '6056916'), - (13, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ZdNrg9kd', '6059290'), - (13, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ZdNrg9kd', '6060328'), - (13, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ZdNrg9kd', '6061037'), - (13, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ZdNrg9kd', '6061039'), - (13, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ZdNrg9kd', '6067245'), - (13, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ZdNrg9kd', '6068094'), - (13, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ZdNrg9kd', '6068252'), - (13, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ZdNrg9kd', '6068253'), - (13, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ZdNrg9kd', '6068254'), - (13, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'ZdNrg9kd', '6068280'), - (13, 2032, 'attending', '2023-05-18 21:58:44', '2025-12-17 19:47:04', 'ZdNrg9kd', '6068281'), - (13, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ZdNrg9kd', '6069093'), - (13, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ZdNrg9kd', '6072528'), - (13, 2046, 'maybe', '2023-05-12 21:24:54', '2025-12-17 19:47:02', 'ZdNrg9kd', '6076020'), - (13, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ZdNrg9kd', '6079840'), - (13, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ZdNrg9kd', '6083398'), - (13, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ZdNrg9kd', '6093504'), - (13, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ZdNrg9kd', '6097414'), - (13, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ZdNrg9kd', '6097442'), - (13, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ZdNrg9kd', '6097684'), - (13, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ZdNrg9kd', '6098762'), - (13, 2064, 'attending', '2023-06-08 15:58:20', '2025-12-17 19:46:50', 'ZdNrg9kd', '6099988'), - (13, 2065, 'attending', '2023-06-08 15:58:17', '2025-12-17 19:46:49', 'ZdNrg9kd', '6101169'), - (13, 2066, 'attending', '2023-05-28 03:12:04', '2025-12-17 19:47:04', 'ZdNrg9kd', '6101361'), - (13, 2067, 'maybe', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ZdNrg9kd', '6101362'), - (13, 2070, 'attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'ZdNrg9kd', '6103752'), - (13, 2074, 'attending', '2023-05-18 21:58:18', '2025-12-17 19:47:03', 'ZdNrg9kd', '6107312'), - (13, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ZdNrg9kd', '6107314'), - (13, 2078, 'attending', '2023-05-23 19:40:38', '2025-12-17 19:47:03', 'ZdNrg9kd', '6114163'), - (13, 2086, 'maybe', '2023-05-28 03:11:53', '2025-12-17 19:47:04', 'ZdNrg9kd', '6119877'), - (13, 2087, 'maybe', '2023-05-28 03:11:45', '2025-12-17 19:47:04', 'ZdNrg9kd', '6120034'), - (13, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ZdNrg9kd', '6136733'), - (13, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ZdNrg9kd', '6137989'), - (13, 2105, 'maybe', '2023-06-17 20:59:28', '2025-12-17 19:46:50', 'ZdNrg9kd', '6149551'), - (13, 2106, 'maybe', '2023-06-18 21:04:03', '2025-12-17 19:46:50', 'ZdNrg9kd', '6150479'), - (13, 2108, 'maybe', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ZdNrg9kd', '6150864'), - (13, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ZdNrg9kd', '6155491'), - (13, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ZdNrg9kd', '6164417'), - (13, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ZdNrg9kd', '6166388'), - (13, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ZdNrg9kd', '6176439'), - (13, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'ZdNrg9kd', '6182410'), - (13, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ZdNrg9kd', '6185812'), - (13, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ZdNrg9kd', '6187651'), - (13, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ZdNrg9kd', '6187963'), - (13, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ZdNrg9kd', '6187964'), - (13, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ZdNrg9kd', '6187966'), - (13, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ZdNrg9kd', '6187967'), - (13, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ZdNrg9kd', '6187969'), - (13, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ZdNrg9kd', '6334878'), - (13, 2146, 'maybe', '2023-07-17 18:53:27', '2025-12-17 19:46:53', 'ZdNrg9kd', '6335638'), - (13, 2148, 'attending', '2023-07-24 21:18:08', '2025-12-17 19:46:53', 'ZdNrg9kd', '6335667'), - (13, 2152, 'maybe', '2023-07-12 19:28:41', '2025-12-17 19:46:52', 'ZdNrg9kd', '6337021'), - (13, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ZdNrg9kd', '6337236'), - (13, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ZdNrg9kd', '6337970'), - (13, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ZdNrg9kd', '6338308'), - (13, 2159, 'attending', '2023-07-17 18:53:33', '2025-12-17 19:46:53', 'ZdNrg9kd', '6338355'), - (13, 2160, 'maybe', '2023-07-29 17:57:12', '2025-12-17 19:46:54', 'ZdNrg9kd', '6338358'), - (13, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'ZdNrg9kd', '6340845'), - (13, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ZdNrg9kd', '6341710'), - (13, 2164, 'attending', '2023-07-27 01:53:12', '2025-12-17 19:46:54', 'ZdNrg9kd', '6341797'), - (13, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ZdNrg9kd', '6342044'), - (13, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ZdNrg9kd', '6342298'), - (13, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'ZdNrg9kd', '6343294'), - (13, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ZdNrg9kd', '6347034'), - (13, 2177, 'maybe', '2023-08-12 03:53:36', '2025-12-17 19:46:55', 'ZdNrg9kd', '6347053'), - (13, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ZdNrg9kd', '6347056'), - (13, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ZdNrg9kd', '6353830'), - (13, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ZdNrg9kd', '6353831'), - (13, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ZdNrg9kd', '6357867'), - (13, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ZdNrg9kd', '6358652'), - (13, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'ZdNrg9kd', '6359940'), - (13, 2204, 'not_attending', '2023-08-19 02:37:43', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361542'), - (13, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ZdNrg9kd', '6361709'), - (13, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361710'), - (13, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361711'), - (13, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361712'), - (13, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ZdNrg9kd', '6361713'), - (13, 2232, 'attending', '2023-08-24 21:29:30', '2025-12-17 19:46:55', 'ZdNrg9kd', '6374818'), - (13, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ZdNrg9kd', '6382573'), - (13, 2239, 'maybe', '2023-09-02 04:39:54', '2025-12-17 19:46:56', 'ZdNrg9kd', '6387592'), - (13, 2240, 'maybe', '2023-09-09 05:15:00', '2025-12-17 19:46:56', 'ZdNrg9kd', '6388603'), - (13, 2241, 'maybe', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ZdNrg9kd', '6388604'), - (13, 2242, 'not_attending', '2023-09-21 03:16:39', '2025-12-17 19:46:45', 'ZdNrg9kd', '6388606'), - (13, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ZdNrg9kd', '6394629'), - (13, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ZdNrg9kd', '6394631'), - (13, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ZdNrg9kd', '6440863'), - (13, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ZdNrg9kd', '6445440'), - (13, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ZdNrg9kd', '6453951'), - (13, 2279, 'attending', '2023-10-08 21:00:08', '2025-12-17 19:46:46', 'ZdNrg9kd', '6455460'), - (13, 2283, 'attending', '2023-10-11 15:51:53', '2025-12-17 19:46:46', 'ZdNrg9kd', '6455503'), - (13, 2284, 'maybe', '2023-10-13 15:42:51', '2025-12-17 19:46:46', 'ZdNrg9kd', '6460928'), - (13, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ZdNrg9kd', '6461696'), - (13, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ZdNrg9kd', '6462129'), - (13, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ZdNrg9kd', '6463218'), - (13, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ZdNrg9kd', '6472181'), - (13, 2303, 'attending', '2023-10-28 17:05:51', '2025-12-17 19:46:47', 'ZdNrg9kd', '6482691'), - (13, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ZdNrg9kd', '6482693'), - (13, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'ZdNrg9kd', '6484200'), - (13, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ZdNrg9kd', '6484680'), - (13, 2314, 'maybe', '2023-10-29 02:50:04', '2025-12-17 19:46:47', 'ZdNrg9kd', '6493665'), - (13, 2315, 'maybe', '2023-10-29 02:50:09', '2025-12-17 19:46:47', 'ZdNrg9kd', '6493666'), - (13, 2316, 'attending', '2023-10-29 02:50:15', '2025-12-17 19:46:48', 'ZdNrg9kd', '6493668'), - (13, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ZdNrg9kd', '6507741'), - (13, 2320, 'attending', '2023-11-02 21:30:27', '2025-12-17 19:46:47', 'ZdNrg9kd', '6508647'), - (13, 2322, 'maybe', '2023-11-02 21:30:45', '2025-12-17 19:46:48', 'ZdNrg9kd', '6514659'), - (13, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ZdNrg9kd', '6514660'), - (13, 2324, 'attending', '2023-12-07 04:57:48', '2025-12-17 19:46:49', 'ZdNrg9kd', '6514662'), - (13, 2325, 'maybe', '2023-12-15 03:18:13', '2025-12-17 19:46:36', 'ZdNrg9kd', '6514663'), - (13, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ZdNrg9kd', '6519103'), - (13, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ZdNrg9kd', '6535681'), - (13, 2345, 'maybe', '2023-11-22 19:01:41', '2025-12-17 19:46:48', 'ZdNrg9kd', '6582414'), - (13, 2350, 'attending', '2023-11-22 19:01:09', '2025-12-17 19:46:48', 'ZdNrg9kd', '6584352'), - (13, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ZdNrg9kd', '6584747'), - (13, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ZdNrg9kd', '6587097'), - (13, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ZdNrg9kd', '6609022'), - (13, 2364, 'maybe', '2023-12-07 04:57:42', '2025-12-17 19:46:49', 'ZdNrg9kd', '6613011'), - (13, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ZdNrg9kd', '6632757'), - (13, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ZdNrg9kd', '6644187'), - (13, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ZdNrg9kd', '6648951'), - (13, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ZdNrg9kd', '6648952'), - (13, 2388, 'maybe', '2024-01-06 17:48:27', '2025-12-17 19:46:37', 'ZdNrg9kd', '6649244'), - (13, 2396, 'maybe', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ZdNrg9kd', '6655401'), - (13, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ZdNrg9kd', '6661585'), - (13, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ZdNrg9kd', '6661588'), - (13, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ZdNrg9kd', '6661589'), - (13, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ZdNrg9kd', '6699906'), - (13, 2408, 'attending', '2024-01-25 22:16:19', '2025-12-17 19:46:40', 'ZdNrg9kd', '6699907'), - (13, 2409, 'maybe', '2024-02-03 06:21:47', '2025-12-17 19:46:41', 'ZdNrg9kd', '6699909'), - (13, 2410, 'attending', '2024-02-09 02:12:47', '2025-12-17 19:46:41', 'ZdNrg9kd', '6699911'), - (13, 2411, 'attending', '2024-02-09 02:12:49', '2025-12-17 19:46:41', 'ZdNrg9kd', '6699913'), - (13, 2412, 'not_attending', '2024-02-09 02:12:56', '2025-12-17 19:46:43', 'ZdNrg9kd', '6700717'), - (13, 2414, 'maybe', '2024-01-16 01:37:23', '2025-12-17 19:46:40', 'ZdNrg9kd', '6701000'), - (13, 2415, 'maybe', '2024-01-20 17:57:53', '2025-12-17 19:46:40', 'ZdNrg9kd', '6701001'), - (13, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ZdNrg9kd', '6701109'), - (13, 2423, 'attending', '2024-01-25 00:58:21', '2025-12-17 19:46:40', 'ZdNrg9kd', '6705141'), - (13, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ZdNrg9kd', '6705219'), - (13, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ZdNrg9kd', '6710153'), - (13, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ZdNrg9kd', '6711552'), - (13, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ZdNrg9kd', '6711553'), - (13, 2433, 'attending', '2024-01-25 00:58:26', '2025-12-17 19:46:40', 'ZdNrg9kd', '6715688'), - (13, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ZdNrg9kd', '6722688'), - (13, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ZdNrg9kd', '6730620'), - (13, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'ZdNrg9kd', '6730642'), - (13, 2450, 'maybe', '2024-02-09 02:13:06', '2025-12-17 19:46:41', 'ZdNrg9kd', '6738807'), - (13, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ZdNrg9kd', '6740364'), - (13, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ZdNrg9kd', '6743829'), - (13, 2467, 'attending', '2024-02-25 09:09:15', '2025-12-17 19:46:43', 'ZdNrg9kd', '7029987'), - (13, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ZdNrg9kd', '7030380'), - (13, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ZdNrg9kd', '7033677'), - (13, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'ZdNrg9kd', '7035415'), - (13, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ZdNrg9kd', '7044715'), - (13, 2487, 'maybe', '2024-03-21 04:35:18', '2025-12-17 19:46:33', 'ZdNrg9kd', '7049279'), - (13, 2490, 'maybe', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ZdNrg9kd', '7050318'), - (13, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ZdNrg9kd', '7050319'), - (13, 2492, 'maybe', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ZdNrg9kd', '7050322'), - (13, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ZdNrg9kd', '7057804'), - (13, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'ZdNrg9kd', '7059866'), - (13, 2505, 'attending', '2024-03-12 15:06:09', '2025-12-17 19:46:33', 'ZdNrg9kd', '7069163'), - (13, 2507, 'maybe', '2024-03-14 16:33:33', '2025-12-17 19:46:33', 'ZdNrg9kd', '7072824'), - (13, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ZdNrg9kd', '7074348'), - (13, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ZdNrg9kd', '7074364'), - (13, 2537, 'maybe', '2024-03-21 04:35:25', '2025-12-17 19:46:33', 'ZdNrg9kd', '7085484'), - (13, 2538, 'attending', '2024-03-21 04:35:29', '2025-12-17 19:46:33', 'ZdNrg9kd', '7085485'), - (13, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'ZdNrg9kd', '7089267'), - (13, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ZdNrg9kd', '7098747'), - (13, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ZdNrg9kd', '7113468'), - (13, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ZdNrg9kd', '7114856'), - (13, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'ZdNrg9kd', '7114951'), - (13, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ZdNrg9kd', '7114955'), - (13, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ZdNrg9kd', '7114956'), - (13, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ZdNrg9kd', '7114957'), - (13, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'ZdNrg9kd', '7153615'), - (13, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ZdNrg9kd', '7159484'), - (13, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ZdNrg9kd', '7178446'), - (13, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'ZdNrg9kd', '7220467'), - (13, 2605, 'attending', '2024-04-28 02:37:30', '2025-12-17 19:46:35', 'ZdNrg9kd', '7229243'), - (13, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ZdNrg9kd', '7240354'), - (13, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ZdNrg9kd', '7251633'), - (13, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'ZdNrg9kd', '7263048'), - (13, 2628, 'maybe', '2024-05-30 18:11:10', '2025-12-17 19:46:36', 'ZdNrg9kd', '7264725'), - (13, 2629, 'maybe', '2024-05-30 18:11:14', '2025-12-17 19:46:28', 'ZdNrg9kd', '7264726'), - (13, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'ZdNrg9kd', '7302674'), - (13, 2678, 'maybe', '2024-06-13 01:10:04', '2025-12-17 19:46:28', 'ZdNrg9kd', '7319489'), - (13, 2679, 'maybe', '2024-06-13 01:10:08', '2025-12-17 19:46:29', 'ZdNrg9kd', '7319490'), - (13, 2687, 'maybe', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'ZdNrg9kd', '7324019'), - (13, 2688, 'maybe', '2024-06-13 01:10:15', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324073'), - (13, 2689, 'attending', '2024-06-13 01:10:17', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324074'), - (13, 2690, 'maybe', '2024-07-06 15:52:40', '2025-12-17 19:46:30', 'ZdNrg9kd', '7324075'), - (13, 2691, 'maybe', '2024-07-15 22:20:03', '2025-12-17 19:46:30', 'ZdNrg9kd', '7324076'), - (13, 2692, 'not_attending', '2024-07-15 22:20:23', '2025-12-17 19:46:30', 'ZdNrg9kd', '7324077'), - (13, 2693, 'attending', '2024-07-27 22:12:35', '2025-12-17 19:46:31', 'ZdNrg9kd', '7324078'), - (13, 2695, 'not_attending', '2024-08-17 21:03:56', '2025-12-17 19:46:32', 'ZdNrg9kd', '7324080'), - (13, 2696, 'attending', '2024-08-17 21:04:00', '2025-12-17 19:46:32', 'ZdNrg9kd', '7324081'), - (13, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ZdNrg9kd', '7324082'), - (13, 2700, 'maybe', '2024-06-14 17:38:12', '2025-12-17 19:46:28', 'ZdNrg9kd', '7324388'), - (13, 2701, 'maybe', '2024-06-22 17:23:05', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324391'), - (13, 2705, 'attending', '2024-06-14 17:38:44', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324944'), - (13, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ZdNrg9kd', '7331457'), - (13, 2731, 'attending', '2024-06-22 17:21:10', '2025-12-17 19:46:29', 'ZdNrg9kd', '7335303'), - (13, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'ZdNrg9kd', '7356752'), - (13, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'ZdNrg9kd', '7358733'), - (13, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'ZdNrg9kd', '7363595'), - (13, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ZdNrg9kd', '7363643'), - (13, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ZdNrg9kd', '7368606'), - (13, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ZdNrg9kd', '7397462'), - (13, 2821, 'maybe', '2024-10-02 00:27:55', '2025-12-17 19:46:26', 'ZdNrg9kd', '7424275'), - (13, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'ZdNrg9kd', '7424276'), - (13, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ZdNrg9kd', '7432751'), - (13, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ZdNrg9kd', '7432752'), - (13, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ZdNrg9kd', '7432753'), - (13, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432754'), - (13, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432755'), - (13, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432756'), - (13, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432758'), - (13, 2831, 'maybe', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432759'), - (13, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ZdNrg9kd', '7433834'), - (13, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ZdNrg9kd', '7470197'), - (13, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ZdNrg9kd', '7685613'), - (13, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ZdNrg9kd', '7688194'), - (13, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ZdNrg9kd', '7688196'), - (13, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ZdNrg9kd', '7688289'), - (13, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'ZdNrg9kd', '7692763'), - (13, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ZdNrg9kd', '7697552'), - (13, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ZdNrg9kd', '7699878'), - (13, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ZdNrg9kd', '7704043'), - (13, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ZdNrg9kd', '7712467'), - (13, 2926, 'maybe', '2024-12-07 15:34:29', '2025-12-17 19:46:21', 'ZdNrg9kd', '7713585'), - (13, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ZdNrg9kd', '7713586'), - (13, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ZdNrg9kd', '7738518'), - (13, 2962, 'maybe', '2024-12-25 18:48:15', '2025-12-17 19:46:22', 'ZdNrg9kd', '7750632'), - (13, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ZdNrg9kd', '7750636'), - (13, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ZdNrg9kd', '7796540'), - (13, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ZdNrg9kd', '7796541'), - (13, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ZdNrg9kd', '7796542'), - (13, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ZdNrg9kd', '7825913'), - (13, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ZdNrg9kd', '7826209'), - (13, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ZdNrg9kd', '7834742'), - (13, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ZdNrg9kd', '7842108'), - (13, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ZdNrg9kd', '7842902'), - (13, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ZdNrg9kd', '7842903'), - (13, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ZdNrg9kd', '7842904'), - (13, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ZdNrg9kd', '7842905'), - (13, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ZdNrg9kd', '7855719'), - (13, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ZdNrg9kd', '7860683'), - (13, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ZdNrg9kd', '7860684'), - (13, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ZdNrg9kd', '7866095'), - (13, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ZdNrg9kd', '7869170'), - (13, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ZdNrg9kd', '7869188'), - (13, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ZdNrg9kd', '7869201'), - (13, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ZdNrg9kd', '7877465'), - (13, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'ZdNrg9kd', '7878570'), - (13, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ZdNrg9kd', '7888250'), - (13, 3067, 'attending', '2025-04-01 21:31:04', '2025-12-17 19:46:19', 'ZdNrg9kd', '7894745'), - (13, 3077, 'attending', '2025-04-06 17:11:45', '2025-12-17 19:46:20', 'ZdNrg9kd', '7899510'), - (13, 3087, 'maybe', '2025-04-14 22:47:28', '2025-12-17 19:46:20', 'ZdNrg9kd', '7903856'), - (13, 3088, 'maybe', '2025-06-10 02:51:24', '2025-12-17 19:46:15', 'ZdNrg9kd', '7904777'), - (13, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ZdNrg9kd', '8349164'), - (13, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ZdNrg9kd', '8349545'), - (13, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ZdNrg9kd', '8353584'), - (13, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ZdNrg9kd', '8368028'), - (13, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ZdNrg9kd', '8368029'), - (13, 3133, 'maybe', '2025-05-23 19:52:28', '2025-12-17 19:46:14', 'ZdNrg9kd', '8368030'), - (13, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ZdNrg9kd', '8388462'), - (13, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ZdNrg9kd', '8400273'), - (13, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ZdNrg9kd', '8400274'), - (13, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ZdNrg9kd', '8400275'), - (13, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ZdNrg9kd', '8400276'), - (13, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ZdNrg9kd', '8404977'), - (13, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ZdNrg9kd', '8430783'), - (13, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ZdNrg9kd', '8430784'), - (13, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ZdNrg9kd', '8430799'), - (13, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ZdNrg9kd', '8430800'), - (13, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ZdNrg9kd', '8430801'), - (13, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ZdNrg9kd', '8438709'), - (13, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ZdNrg9kd', '8457738'), - (13, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ZdNrg9kd', '8459566'), - (13, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ZdNrg9kd', '8459567'), - (13, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ZdNrg9kd', '8461032'), - (13, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ZdNrg9kd', '8477877'), - (13, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ZdNrg9kd', '8485688'), - (13, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ZdNrg9kd', '8490587'), - (13, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ZdNrg9kd', '8493552'), - (13, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ZdNrg9kd', '8493553'), - (13, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ZdNrg9kd', '8493554'), - (13, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ZdNrg9kd', '8493555'), - (13, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ZdNrg9kd', '8493556'), - (13, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ZdNrg9kd', '8493557'), - (13, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ZdNrg9kd', '8493558'), - (13, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ZdNrg9kd', '8493559'), - (13, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ZdNrg9kd', '8493560'), - (13, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ZdNrg9kd', '8493561'), - (13, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ZdNrg9kd', '8493572'), - (13, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ZdNrg9kd', '8540725'), - (13, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ZdNrg9kd', '8555421'), - (14, 3014, 'attending', '2025-04-01 04:53:18', '2025-12-17 19:46:19', 'dVoXyYym', '7869185'), - (14, 3016, 'attending', '2025-04-18 18:47:50', '2025-12-17 19:46:20', 'dVoXyYym', '7869187'), - (14, 3018, 'attending', '2025-04-12 01:15:07', '2025-12-17 19:46:20', 'dVoXyYym', '7869189'), - (14, 3067, 'attending', '2025-04-03 04:45:26', '2025-12-17 19:46:19', 'dVoXyYym', '7894745'), - (14, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dVoXyYym', '7897784'), - (14, 3078, 'not_attending', '2025-04-06 02:48:53', '2025-12-17 19:46:20', 'dVoXyYym', '7901213'), - (14, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dVoXyYym', '7904777'), - (14, 3098, 'attending', '2025-04-21 14:47:10', '2025-12-17 19:46:20', 'dVoXyYym', '8343504'), - (14, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVoXyYym', '8349164'), - (14, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVoXyYym', '8349545'), - (14, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVoXyYym', '8353584'), - (14, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dVoXyYym', '8368028'), - (14, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dVoXyYym', '8368029'), - (14, 3133, 'attending', '2025-05-31 17:51:01', '2025-12-17 19:46:14', 'dVoXyYym', '8368030'), - (14, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dVoXyYym', '8388462'), - (14, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dVoXyYym', '8400273'), - (14, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dVoXyYym', '8400274'), - (14, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dVoXyYym', '8400275'), - (14, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dVoXyYym', '8400276'), - (14, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dVoXyYym', '8404977'), - (14, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dVoXyYym', '8430783'), - (14, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dVoXyYym', '8430784'), - (14, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dVoXyYym', '8430799'), - (14, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dVoXyYym', '8430800'), - (14, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dVoXyYym', '8430801'), - (14, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dVoXyYym', '8438709'), - (14, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVoXyYym', '8457738'), - (14, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVoXyYym', '8459566'), - (14, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVoXyYym', '8459567'), - (14, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVoXyYym', '8461032'), - (14, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVoXyYym', '8477877'), - (14, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dVoXyYym', '8485688'), - (14, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dVoXyYym', '8490587'), - (14, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVoXyYym', '8493552'), - (14, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dVoXyYym', '8493553'), - (14, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVoXyYym', '8493554'), - (14, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVoXyYym', '8493555'), - (14, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVoXyYym', '8493556'), - (14, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVoXyYym', '8493557'), - (14, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVoXyYym', '8493558'), - (14, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVoXyYym', '8493559'), - (14, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVoXyYym', '8493560'), - (14, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dVoXyYym', '8493561'), - (14, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVoXyYym', '8493572'), - (14, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dVoXyYym', '8540725'), - (14, 3306, 'attending', '2025-12-13 22:17:13', '2025-12-17 19:46:11', 'dVoXyYym', '8550026'), - (14, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dVoXyYym', '8555421'), - (15, 20, 'attending', '2020-05-12 19:12:13', '2025-12-17 19:47:57', 'EdVaaRZ4', '2958064'), - (15, 62, 'not_attending', '2020-05-12 23:23:45', '2025-12-17 19:47:57', 'EdVaaRZ4', '2977131'), - (15, 78, 'attending', '2020-05-23 21:06:53', '2025-12-17 19:47:57', 'EdVaaRZ4', '2978249'), - (15, 79, 'attending', '2020-05-30 21:43:48', '2025-12-17 19:47:57', 'EdVaaRZ4', '2978250'), - (15, 81, 'attending', '2020-06-13 22:07:15', '2025-12-17 19:47:58', 'EdVaaRZ4', '2978252'), - (15, 108, 'not_attending', '2020-05-17 17:51:17', '2025-12-17 19:47:57', 'EdVaaRZ4', '2993504'), - (15, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'EdVaaRZ4', '2994480'), - (15, 115, 'not_attending', '2020-05-17 17:21:36', '2025-12-17 19:47:57', 'EdVaaRZ4', '3001217'), - (15, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'EdVaaRZ4', '3023063'), - (15, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'EdVaaRZ4', '3034321'), - (15, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'EdVaaRZ4', '3035881'), - (15, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'EdVaaRZ4', '3049983'), - (15, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'EdVaaRZ4', '3058959'), - (15, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'EdVaaRZ4', '3067093'), - (15, 181, 'attending', '2020-06-15 22:02:53', '2025-12-17 19:47:58', 'EdVaaRZ4', '3074513'), - (15, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'EdVaaRZ4', '3075228'), - (15, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'EdVaaRZ4', '3075456'), - (15, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'EdVaaRZ4', '3083791'), - (15, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'EdVaaRZ4', '3085151'), - (15, 191, 'not_attending', '2020-07-09 19:28:15', '2025-12-17 19:47:55', 'EdVaaRZ4', '3087259'), - (15, 193, 'attending', '2020-07-25 18:32:06', '2025-12-17 19:47:55', 'EdVaaRZ4', '3087261'), - (15, 194, 'not_attending', '2020-07-31 00:32:44', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087262'), - (15, 195, 'attending', '2020-08-07 22:04:32', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087264'), - (15, 196, 'attending', '2020-08-11 21:54:20', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087265'), - (15, 197, 'attending', '2020-08-14 13:14:12', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087266'), - (15, 198, 'attending', '2020-08-25 20:12:52', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087267'), - (15, 199, 'not_attending', '2020-09-05 22:25:28', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087268'), - (15, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'EdVaaRZ4', '3088653'), - (15, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'EdVaaRZ4', '3106813'), - (15, 223, 'attending', '2020-09-12 15:58:16', '2025-12-17 19:47:56', 'EdVaaRZ4', '3129980'), - (15, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'EdVaaRZ4', '3132817'), - (15, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'EdVaaRZ4', '3132820'), - (15, 249, 'not_attending', '2020-11-17 01:50:24', '2025-12-17 19:47:54', 'EdVaaRZ4', '3149480'), - (15, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'EdVaaRZ4', '3155321'), - (15, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'EdVaaRZ4', '3162006'), - (15, 274, 'not_attending', '2020-08-25 20:12:42', '2025-12-17 19:47:56', 'EdVaaRZ4', '3163404'), - (15, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'EdVaaRZ4', '3163442'), - (15, 287, 'not_attending', '2020-08-27 14:22:51', '2025-12-17 19:47:56', 'EdVaaRZ4', '3170247'), - (15, 293, 'not_attending', '2020-08-14 13:13:47', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172832'), - (15, 294, 'maybe', '2020-08-26 20:52:16', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172833'), - (15, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172834'), - (15, 296, 'attending', '2020-08-25 20:22:03', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172876'), - (15, 298, 'not_attending', '2020-08-25 20:13:50', '2025-12-17 19:47:56', 'EdVaaRZ4', '3174556'), - (15, 303, 'attending', '2020-08-16 17:40:00', '2025-12-17 19:47:56', 'EdVaaRZ4', '3178444'), - (15, 308, 'not_attending', '2020-08-25 20:14:28', '2025-12-17 19:47:56', 'EdVaaRZ4', '3183341'), - (15, 311, 'not_attending', '2020-09-18 15:00:20', '2025-12-17 19:47:56', 'EdVaaRZ4', '3186057'), - (15, 312, 'attending', '2020-09-10 22:49:04', '2025-12-17 19:47:56', 'EdVaaRZ4', '3187795'), - (15, 315, 'attending', '2020-09-04 21:33:44', '2025-12-17 19:47:56', 'EdVaaRZ4', '3189085'), - (15, 317, 'not_attending', '2020-08-26 20:52:07', '2025-12-17 19:47:56', 'EdVaaRZ4', '3191735'), - (15, 335, 'not_attending', '2020-09-04 21:32:57', '2025-12-17 19:47:56', 'EdVaaRZ4', '3200209'), - (15, 342, 'not_attending', '2020-09-27 03:42:24', '2025-12-17 19:47:52', 'EdVaaRZ4', '3204472'), - (15, 348, 'not_attending', '2020-09-27 03:42:13', '2025-12-17 19:47:52', 'EdVaaRZ4', '3209159'), - (15, 362, 'attending', '2020-09-25 19:22:11', '2025-12-17 19:47:52', 'EdVaaRZ4', '3214207'), - (15, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'EdVaaRZ4', '3217037'), - (15, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'EdVaaRZ4', '3218510'), - (15, 375, 'not_attending', '2020-10-02 19:53:44', '2025-12-17 19:47:52', 'EdVaaRZ4', '3222825'), - (15, 385, 'attending', '2020-10-03 22:34:14', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228698'), - (15, 386, 'not_attending', '2020-10-02 19:53:50', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228699'), - (15, 387, 'not_attending', '2020-10-02 19:53:56', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228700'), - (15, 388, 'not_attending', '2020-10-02 19:53:59', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228701'), - (15, 421, 'not_attending', '2020-10-19 11:44:11', '2025-12-17 19:47:52', 'EdVaaRZ4', '3245294'), - (15, 422, 'not_attending', '2020-10-19 11:44:39', '2025-12-17 19:47:53', 'EdVaaRZ4', '3245295'), - (15, 423, 'not_attending', '2020-10-19 11:44:56', '2025-12-17 19:47:53', 'EdVaaRZ4', '3245296'), - (15, 424, 'not_attending', '2020-10-19 11:44:01', '2025-12-17 19:47:52', 'EdVaaRZ4', '3245751'), - (15, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'EdVaaRZ4', '3250232'), - (15, 428, 'not_attending', '2020-10-19 11:44:27', '2025-12-17 19:47:53', 'EdVaaRZ4', '3250332'), - (15, 430, 'not_attending', '2020-10-19 11:44:07', '2025-12-17 19:47:52', 'EdVaaRZ4', '3253094'), - (15, 431, 'attending', '2020-10-27 23:25:52', '2025-12-17 19:47:53', 'EdVaaRZ4', '3253225'), - (15, 438, 'attending', '2020-10-27 23:27:05', '2025-12-17 19:47:53', 'EdVaaRZ4', '3256163'), - (15, 439, 'not_attending', '2020-10-27 23:26:53', '2025-12-17 19:47:53', 'EdVaaRZ4', '3256164'), - (15, 440, 'not_attending', '2020-10-19 11:45:01', '2025-12-17 19:47:53', 'EdVaaRZ4', '3256168'), - (15, 441, 'attending', '2020-11-05 17:51:34', '2025-12-17 19:47:54', 'EdVaaRZ4', '3256169'), - (15, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'EdVaaRZ4', '3263578'), - (15, 444, 'not_attending', '2020-10-28 02:16:43', '2025-12-17 19:47:53', 'EdVaaRZ4', '3263745'), - (15, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'EdVaaRZ4', '3266138'), - (15, 446, 'attending', '2020-10-27 20:10:19', '2025-12-17 19:47:53', 'EdVaaRZ4', '3267163'), - (15, 447, 'not_attending', '2020-10-27 23:26:55', '2025-12-17 19:47:53', 'EdVaaRZ4', '3267895'), - (15, 455, 'not_attending', '2020-11-05 17:51:09', '2025-12-17 19:47:53', 'EdVaaRZ4', '3276391'), - (15, 456, 'not_attending', '2020-11-17 01:46:02', '2025-12-17 19:47:54', 'EdVaaRZ4', '3276428'), - (15, 459, 'not_attending', '2020-11-17 01:46:55', '2025-12-17 19:47:54', 'EdVaaRZ4', '3281467'), - (15, 462, 'not_attending', '2020-11-15 00:36:50', '2025-12-17 19:47:54', 'EdVaaRZ4', '3281470'), - (15, 466, 'not_attending', '2020-11-17 01:46:40', '2025-12-17 19:47:54', 'EdVaaRZ4', '3281829'), - (15, 467, 'not_attending', '2020-11-17 01:50:23', '2025-12-17 19:47:54', 'EdVaaRZ4', '3282756'), - (15, 468, 'not_attending', '2020-11-17 01:46:35', '2025-12-17 19:47:54', 'EdVaaRZ4', '3285413'), - (15, 469, 'not_attending', '2020-11-21 16:17:38', '2025-12-17 19:47:54', 'EdVaaRZ4', '3285414'), - (15, 471, 'not_attending', '2020-11-17 01:50:27', '2025-12-17 19:47:54', 'EdVaaRZ4', '3285445'), - (15, 476, 'not_attending', '2020-11-17 01:50:17', '2025-12-17 19:47:54', 'EdVaaRZ4', '3286982'), - (15, 478, 'not_attending', '2020-11-17 01:50:19', '2025-12-17 19:47:54', 'EdVaaRZ4', '3290899'), - (15, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'EdVaaRZ4', '3297764'), - (15, 493, 'attending', '2020-12-05 14:44:16', '2025-12-17 19:47:54', 'EdVaaRZ4', '3313856'), - (15, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'EdVaaRZ4', '3314909'), - (15, 500, 'not_attending', '2020-12-19 00:35:26', '2025-12-17 19:47:55', 'EdVaaRZ4', '3314964'), - (15, 502, 'attending', '2020-12-10 19:19:11', '2025-12-17 19:47:55', 'EdVaaRZ4', '3323365'), - (15, 513, 'not_attending', '2020-12-19 02:08:53', '2025-12-17 19:47:55', 'EdVaaRZ4', '3329383'), - (15, 514, 'attending', '2020-12-10 19:19:09', '2025-12-17 19:47:55', 'EdVaaRZ4', '3329400'), - (15, 526, 'attending', '2021-01-02 06:01:26', '2025-12-17 19:47:48', 'EdVaaRZ4', '3351539'), - (15, 531, 'attending', '2021-01-02 20:53:50', '2025-12-17 19:47:48', 'EdVaaRZ4', '3378210'), - (15, 536, 'attending', '2021-01-08 23:23:47', '2025-12-17 19:47:48', 'EdVaaRZ4', '3386848'), - (15, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'EdVaaRZ4', '3389527'), - (15, 541, 'attending', '2021-01-08 23:23:46', '2025-12-17 19:47:48', 'EdVaaRZ4', '3391683'), - (15, 543, 'not_attending', '2021-01-12 03:15:06', '2025-12-17 19:47:48', 'EdVaaRZ4', '3396499'), - (15, 548, 'attending', '2021-01-14 02:55:27', '2025-12-17 19:47:48', 'EdVaaRZ4', '3403650'), - (15, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'EdVaaRZ4', '3406988'), - (15, 550, 'attending', '2021-01-13 02:13:44', '2025-12-17 19:47:48', 'EdVaaRZ4', '3407018'), - (15, 553, 'attending', '2021-01-14 02:55:25', '2025-12-17 19:47:48', 'EdVaaRZ4', '3407248'), - (15, 555, 'not_attending', '2021-01-23 05:47:47', '2025-12-17 19:47:49', 'EdVaaRZ4', '3416576'), - (15, 558, 'not_attending', '2021-01-22 01:56:51', '2025-12-17 19:47:49', 'EdVaaRZ4', '3418925'), - (15, 561, 'not_attending', '2021-01-23 05:47:41', '2025-12-17 19:47:49', 'EdVaaRZ4', '3421916'), - (15, 566, 'not_attending', '2021-01-30 23:02:40', '2025-12-17 19:47:50', 'EdVaaRZ4', '3427928'), - (15, 567, 'not_attending', '2021-01-30 23:02:44', '2025-12-17 19:47:50', 'EdVaaRZ4', '3428895'), - (15, 568, 'attending', '2021-01-27 16:25:34', '2025-12-17 19:47:50', 'EdVaaRZ4', '3430267'), - (15, 569, 'not_attending', '2021-01-27 22:23:22', '2025-12-17 19:47:49', 'EdVaaRZ4', '3432673'), - (15, 575, 'attending', '2021-01-27 16:25:33', '2025-12-17 19:47:50', 'EdVaaRZ4', '3437492'), - (15, 579, 'attending', '2021-02-05 16:00:41', '2025-12-17 19:47:50', 'EdVaaRZ4', '3440978'), - (15, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'EdVaaRZ4', '3468125'), - (15, 602, 'not_attending', '2021-02-13 20:28:50', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470303'), - (15, 603, 'attending', '2021-02-20 18:12:03', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470304'), - (15, 604, 'attending', '2021-02-25 03:03:12', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470305'), - (15, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470991'), - (15, 607, 'attending', '2021-02-08 03:15:17', '2025-12-17 19:47:50', 'EdVaaRZ4', '3471882'), - (15, 609, 'not_attending', '2021-02-13 20:28:48', '2025-12-17 19:47:50', 'EdVaaRZ4', '3480916'), - (15, 615, 'not_attending', '2021-02-20 23:29:57', '2025-12-17 19:47:50', 'EdVaaRZ4', '3490045'), - (15, 618, 'not_attending', '2021-02-20 20:44:07', '2025-12-17 19:47:50', 'EdVaaRZ4', '3503991'), - (15, 619, 'attending', '2021-02-20 18:12:00', '2025-12-17 19:47:50', 'EdVaaRZ4', '3506310'), - (15, 621, 'attending', '2021-03-06 17:44:58', '2025-12-17 19:47:51', 'EdVaaRZ4', '3517815'), - (15, 622, 'attending', '2021-03-10 16:35:44', '2025-12-17 19:47:51', 'EdVaaRZ4', '3517816'), - (15, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'EdVaaRZ4', '3523941'), - (15, 624, 'attending', '2021-02-27 01:04:00', '2025-12-17 19:47:50', 'EdVaaRZ4', '3528556'), - (15, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'EdVaaRZ4', '3533850'), - (15, 632, 'attending', '2021-03-01 00:56:54', '2025-12-17 19:47:51', 'EdVaaRZ4', '3533853'), - (15, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'EdVaaRZ4', '3536632'), - (15, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'EdVaaRZ4', '3536656'), - (15, 641, 'attending', '2021-03-17 13:21:44', '2025-12-17 19:47:44', 'EdVaaRZ4', '3539916'), - (15, 642, 'attending', '2021-03-17 13:21:48', '2025-12-17 19:47:44', 'EdVaaRZ4', '3539917'), - (15, 643, 'attending', '2021-04-15 17:48:15', '2025-12-17 19:47:45', 'EdVaaRZ4', '3539918'), - (15, 644, 'not_attending', '2021-04-20 14:29:21', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539919'), - (15, 645, 'attending', '2021-03-22 18:00:17', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539920'), - (15, 646, 'attending', '2021-03-22 18:00:22', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539921'), - (15, 647, 'not_attending', '2021-03-22 18:00:37', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539922'), - (15, 648, 'not_attending', '2021-05-15 20:32:59', '2025-12-17 19:47:47', 'EdVaaRZ4', '3539923'), - (15, 649, 'not_attending', '2021-03-10 16:35:55', '2025-12-17 19:47:51', 'EdVaaRZ4', '3539927'), - (15, 650, 'attending', '2021-03-17 13:21:38', '2025-12-17 19:47:44', 'EdVaaRZ4', '3539928'), - (15, 653, 'attending', '2021-03-06 17:45:31', '2025-12-17 19:47:51', 'EdVaaRZ4', '3546917'), - (15, 654, 'not_attending', '2021-03-09 00:10:54', '2025-12-17 19:47:51', 'EdVaaRZ4', '3546990'), - (15, 655, 'attending', '2021-03-10 16:35:42', '2025-12-17 19:47:51', 'EdVaaRZ4', '3547129'), - (15, 656, 'not_attending', '2021-03-10 16:35:50', '2025-12-17 19:47:51', 'EdVaaRZ4', '3547130'), - (15, 657, 'attending', '2021-04-15 17:48:13', '2025-12-17 19:47:45', 'EdVaaRZ4', '3547132'), - (15, 658, 'attending', '2021-06-06 19:03:03', '2025-12-17 19:47:47', 'EdVaaRZ4', '3547134'), - (15, 659, 'attending', '2021-03-17 13:21:46', '2025-12-17 19:47:44', 'EdVaaRZ4', '3547135'), - (15, 660, 'not_attending', '2021-07-08 23:24:43', '2025-12-17 19:47:39', 'EdVaaRZ4', '3547136'), - (15, 661, 'attending', '2021-03-17 13:21:43', '2025-12-17 19:47:44', 'EdVaaRZ4', '3547137'), - (15, 662, 'not_attending', '2021-04-20 14:29:18', '2025-12-17 19:47:45', 'EdVaaRZ4', '3547138'), - (15, 663, 'attending', '2021-03-22 18:00:48', '2025-12-17 19:47:46', 'EdVaaRZ4', '3547140'), - (15, 664, 'not_attending', '2021-09-10 18:09:21', '2025-12-17 19:47:43', 'EdVaaRZ4', '3547142'), - (15, 665, 'not_attending', '2021-09-04 13:36:54', '2025-12-17 19:47:43', 'EdVaaRZ4', '3547143'), - (15, 666, 'attending', '2021-08-07 22:08:15', '2025-12-17 19:47:42', 'EdVaaRZ4', '3547144'), - (15, 667, 'attending', '2021-08-28 17:24:09', '2025-12-17 19:47:42', 'EdVaaRZ4', '3547145'), - (15, 668, 'attending', '2021-03-22 18:00:47', '2025-12-17 19:47:46', 'EdVaaRZ4', '3547146'), - (15, 669, 'not_attending', '2021-06-13 02:35:38', '2025-12-17 19:47:38', 'EdVaaRZ4', '3547147'), - (15, 670, 'not_attending', '2021-06-11 00:40:55', '2025-12-17 19:47:48', 'EdVaaRZ4', '3547148'), - (15, 671, 'not_attending', '2021-07-17 21:29:46', '2025-12-17 19:47:39', 'EdVaaRZ4', '3547149'), - (15, 672, 'not_attending', '2021-03-22 18:00:40', '2025-12-17 19:47:46', 'EdVaaRZ4', '3547150'), - (15, 673, 'attending', '2021-06-30 22:18:55', '2025-12-17 19:47:38', 'EdVaaRZ4', '3547151'), - (15, 674, 'attending', '2021-08-05 18:38:55', '2025-12-17 19:47:41', 'EdVaaRZ4', '3547152'), - (15, 675, 'attending', '2021-07-31 17:18:45', '2025-12-17 19:47:40', 'EdVaaRZ4', '3547153'), - (15, 676, 'attending', '2021-07-22 23:50:23', '2025-12-17 19:47:40', 'EdVaaRZ4', '3547154'), - (15, 677, 'not_attending', '2021-05-15 20:33:01', '2025-12-17 19:47:47', 'EdVaaRZ4', '3547155'), - (15, 679, 'not_attending', '2021-03-30 01:58:32', '2025-12-17 19:47:44', 'EdVaaRZ4', '3547168'), - (15, 684, 'maybe', '2021-03-12 00:48:40', '2025-12-17 19:47:51', 'EdVaaRZ4', '3549257'), - (15, 685, 'attending', '2021-03-10 16:38:30', '2025-12-17 19:47:44', 'EdVaaRZ4', '3551564'), - (15, 687, 'not_attending', '2021-03-10 16:35:25', '2025-12-17 19:47:51', 'EdVaaRZ4', '3553405'), - (15, 705, 'attending', '2021-03-22 14:44:41', '2025-12-17 19:47:44', 'EdVaaRZ4', '3581895'), - (15, 706, 'attending', '2021-03-30 01:59:52', '2025-12-17 19:47:45', 'EdVaaRZ4', '3582734'), - (15, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'EdVaaRZ4', '3583262'), - (15, 711, 'attending', '2021-04-01 18:06:34', '2025-12-17 19:47:44', 'EdVaaRZ4', '3588075'), - (15, 717, 'not_attending', '2021-03-27 14:13:04', '2025-12-17 19:47:44', 'EdVaaRZ4', '3619523'), - (15, 718, 'attending', '2021-03-27 14:10:15', '2025-12-17 19:47:44', 'EdVaaRZ4', '3626844'), - (15, 722, 'maybe', '2021-04-02 20:56:56', '2025-12-17 19:47:44', 'EdVaaRZ4', '3646347'), - (15, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'EdVaaRZ4', '3661369'), - (15, 731, 'not_attending', '2021-04-07 02:03:33', '2025-12-17 19:47:44', 'EdVaaRZ4', '3674262'), - (15, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'EdVaaRZ4', '3677402'), - (15, 737, 'not_attending', '2021-04-05 20:11:03', '2025-12-17 19:47:44', 'EdVaaRZ4', '3679349'), - (15, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'EdVaaRZ4', '3730212'), - (15, 777, 'attending', '2021-04-30 01:24:39', '2025-12-17 19:47:46', 'EdVaaRZ4', '3746248'), - (15, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'EdVaaRZ4', '3793156'), - (15, 822, 'not_attending', '2021-06-03 01:51:55', '2025-12-17 19:47:47', 'EdVaaRZ4', '3969986'), - (15, 823, 'not_attending', '2021-06-11 00:40:53', '2025-12-17 19:47:48', 'EdVaaRZ4', '3974109'), - (15, 827, 'attending', '2021-06-04 23:06:44', '2025-12-17 19:47:47', 'EdVaaRZ4', '3975311'), - (15, 828, 'attending', '2021-06-06 19:02:59', '2025-12-17 19:47:47', 'EdVaaRZ4', '3975312'), - (15, 838, 'attending', '2021-06-06 17:32:06', '2025-12-17 19:47:47', 'EdVaaRZ4', '3994992'), - (15, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'EdVaaRZ4', '4014338'), - (15, 867, 'not_attending', '2021-06-13 02:35:41', '2025-12-17 19:47:38', 'EdVaaRZ4', '4021848'), - (15, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'EdVaaRZ4', '4136744'), - (15, 870, 'attending', '2021-06-30 22:18:53', '2025-12-17 19:47:39', 'EdVaaRZ4', '4136937'), - (15, 871, 'not_attending', '2021-07-08 23:24:47', '2025-12-17 19:47:39', 'EdVaaRZ4', '4136938'), - (15, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'EdVaaRZ4', '4136947'), - (15, 884, 'maybe', '2021-08-05 18:39:11', '2025-12-17 19:47:42', 'EdVaaRZ4', '4210314'), - (15, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'EdVaaRZ4', '4225444'), - (15, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'EdVaaRZ4', '4239259'), - (15, 900, 'attending', '2021-07-22 23:50:25', '2025-12-17 19:47:40', 'EdVaaRZ4', '4240316'), - (15, 901, 'attending', '2021-07-31 17:18:43', '2025-12-17 19:47:40', 'EdVaaRZ4', '4240317'), - (15, 902, 'attending', '2021-08-05 18:38:57', '2025-12-17 19:47:41', 'EdVaaRZ4', '4240318'), - (15, 903, 'attending', '2021-08-07 22:08:17', '2025-12-17 19:47:42', 'EdVaaRZ4', '4240320'), - (15, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'EdVaaRZ4', '4250163'), - (15, 906, 'not_attending', '2021-07-05 05:49:54', '2025-12-17 19:47:39', 'EdVaaRZ4', '4253431'), - (15, 917, 'maybe', '2021-07-12 00:12:22', '2025-12-17 19:47:39', 'EdVaaRZ4', '4274481'), - (15, 919, 'attending', '2021-07-16 01:42:54', '2025-12-17 19:47:39', 'EdVaaRZ4', '4275957'), - (15, 920, 'not_attending', '2021-07-20 01:49:37', '2025-12-17 19:47:40', 'EdVaaRZ4', '4277819'), - (15, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'EdVaaRZ4', '4301723'), - (15, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'EdVaaRZ4', '4302093'), - (15, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'EdVaaRZ4', '4304151'), - (15, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'EdVaaRZ4', '4345519'), - (15, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'EdVaaRZ4', '4356801'), - (15, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'EdVaaRZ4', '4358025'), - (15, 973, 'maybe', '2021-08-20 00:36:19', '2025-12-17 19:47:42', 'EdVaaRZ4', '4366186'), - (15, 974, 'attending', '2021-08-28 17:24:11', '2025-12-17 19:47:42', 'EdVaaRZ4', '4366187'), - (15, 988, 'not_attending', '2021-08-24 09:06:10', '2025-12-17 19:47:42', 'EdVaaRZ4', '4402823'), - (15, 989, 'attending', '2021-08-27 20:15:48', '2025-12-17 19:47:43', 'EdVaaRZ4', '4414282'), - (15, 990, 'not_attending', '2021-09-04 13:36:56', '2025-12-17 19:47:43', 'EdVaaRZ4', '4420735'), - (15, 991, 'not_attending', '2021-09-10 18:09:19', '2025-12-17 19:47:43', 'EdVaaRZ4', '4420738'), - (15, 992, 'not_attending', '2021-09-18 15:40:07', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420739'), - (15, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420741'), - (15, 994, 'not_attending', '2021-10-02 21:54:13', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420742'), - (15, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420744'), - (15, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'EdVaaRZ4', '4420747'), - (15, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'EdVaaRZ4', '4420748'), - (15, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'EdVaaRZ4', '4420749'), - (15, 1017, 'attending', '2021-09-06 22:16:58', '2025-12-17 19:47:43', 'EdVaaRZ4', '4441822'), - (15, 1020, 'not_attending', '2021-09-08 01:28:44', '2025-12-17 19:47:43', 'EdVaaRZ4', '4451787'), - (15, 1021, 'maybe', '2021-09-09 22:34:51', '2025-12-17 19:47:34', 'EdVaaRZ4', '4451803'), - (15, 1023, 'not_attending', '2021-09-10 16:51:17', '2025-12-17 19:47:43', 'EdVaaRZ4', '4461883'), - (15, 1033, 'not_attending', '2021-09-18 15:39:58', '2025-12-17 19:47:43', 'EdVaaRZ4', '4486006'), - (15, 1040, 'not_attending', '2021-12-10 23:10:15', '2025-12-17 19:47:38', 'EdVaaRZ4', '4496605'), - (15, 1041, 'attending', '2021-12-04 23:57:06', '2025-12-17 19:47:37', 'EdVaaRZ4', '4496606'), - (15, 1042, 'not_attending', '2021-11-19 02:30:29', '2025-12-17 19:47:37', 'EdVaaRZ4', '4496607'), - (15, 1044, 'not_attending', '2021-11-04 22:05:33', '2025-12-17 19:47:36', 'EdVaaRZ4', '4496609'), - (15, 1048, 'attending', '2021-11-12 12:41:35', '2025-12-17 19:47:36', 'EdVaaRZ4', '4496613'), - (15, 1054, 'attending', '2022-03-19 21:48:02', '2025-12-17 19:47:25', 'EdVaaRZ4', '4496619'), - (15, 1055, 'attending', '2021-12-18 20:22:04', '2025-12-17 19:47:31', 'EdVaaRZ4', '4496621'), - (15, 1057, 'not_attending', '2021-11-19 02:30:22', '2025-12-17 19:47:37', 'EdVaaRZ4', '4496624'), - (15, 1058, 'attending', '2022-03-26 17:27:55', '2025-12-17 19:47:33', 'EdVaaRZ4', '4496625'), - (15, 1059, 'not_attending', '2022-03-10 14:12:09', '2025-12-17 19:47:33', 'EdVaaRZ4', '4496626'), - (15, 1060, 'attending', '2022-03-23 15:57:43', '2025-12-17 19:47:25', 'EdVaaRZ4', '4496627'), - (15, 1062, 'attending', '2022-03-05 16:32:16', '2025-12-17 19:47:33', 'EdVaaRZ4', '4496629'), - (15, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'EdVaaRZ4', '4508342'), - (15, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'EdVaaRZ4', '4568602'), - (15, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'EdVaaRZ4', '4572153'), - (15, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'EdVaaRZ4', '4585962'), - (15, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'EdVaaRZ4', '4596356'), - (15, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'EdVaaRZ4', '4598860'), - (15, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'EdVaaRZ4', '4598861'), - (15, 1099, 'not_attending', '2021-11-04 22:05:31', '2025-12-17 19:47:36', 'EdVaaRZ4', '4602797'), - (15, 1114, 'attending', '2021-11-12 12:41:37', '2025-12-17 19:47:36', 'EdVaaRZ4', '4637896'), - (15, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'EdVaaRZ4', '4642994'), - (15, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'EdVaaRZ4', '4642995'), - (15, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'EdVaaRZ4', '4642996'), - (15, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'EdVaaRZ4', '4642997'), - (15, 1126, 'not_attending', '2021-12-10 23:10:13', '2025-12-17 19:47:38', 'EdVaaRZ4', '4645687'), - (15, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'EdVaaRZ4', '4645698'), - (15, 1128, 'not_attending', '2021-11-19 02:30:24', '2025-12-17 19:47:37', 'EdVaaRZ4', '4645704'), - (15, 1129, 'not_attending', '2021-11-19 02:30:27', '2025-12-17 19:47:37', 'EdVaaRZ4', '4645705'), - (15, 1130, 'attending', '2021-12-04 23:57:04', '2025-12-17 19:47:37', 'EdVaaRZ4', '4658824'), - (15, 1131, 'attending', '2021-12-18 20:22:06', '2025-12-17 19:47:31', 'EdVaaRZ4', '4658825'), - (15, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'EdVaaRZ4', '4668385'), - (15, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'EdVaaRZ4', '4694407'), - (15, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'EdVaaRZ4', '4736497'), - (15, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'EdVaaRZ4', '4736499'), - (15, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'EdVaaRZ4', '4736500'), - (15, 1180, 'attending', '2022-02-26 19:53:42', '2025-12-17 19:47:33', 'EdVaaRZ4', '4736502'), - (15, 1181, 'attending', '2022-03-05 16:32:18', '2025-12-17 19:47:33', 'EdVaaRZ4', '4736503'), - (15, 1182, 'not_attending', '2022-03-10 14:12:07', '2025-12-17 19:47:33', 'EdVaaRZ4', '4736504'), - (15, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'EdVaaRZ4', '4746789'), - (15, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'EdVaaRZ4', '4753929'), - (15, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'EdVaaRZ4', '5038850'), - (15, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'EdVaaRZ4', '5045826'), - (15, 1259, 'not_attending', '2022-03-10 16:36:10', '2025-12-17 19:47:33', 'EdVaaRZ4', '5132533'), - (15, 1264, 'attending', '2022-03-06 19:42:52', '2025-12-17 19:47:25', 'EdVaaRZ4', '5160281'), - (15, 1265, 'not_attending', '2022-03-10 16:36:13', '2025-12-17 19:47:33', 'EdVaaRZ4', '5160862'), - (15, 1272, 'attending', '2022-03-19 21:47:59', '2025-12-17 19:47:25', 'EdVaaRZ4', '5186582'), - (15, 1273, 'attending', '2022-03-23 15:57:40', '2025-12-17 19:47:25', 'EdVaaRZ4', '5186583'), - (15, 1274, 'attending', '2022-04-02 20:05:50', '2025-12-17 19:47:26', 'EdVaaRZ4', '5186585'), - (15, 1275, 'attending', '2022-04-02 20:05:48', '2025-12-17 19:47:26', 'EdVaaRZ4', '5186587'), - (15, 1281, 'attending', '2022-04-09 00:08:55', '2025-12-17 19:47:27', 'EdVaaRZ4', '5190437'), - (15, 1284, 'attending', '2022-04-15 11:43:21', '2025-12-17 19:47:27', 'EdVaaRZ4', '5195095'), - (15, 1294, 'attending', '2022-04-03 21:28:18', '2025-12-17 19:47:26', 'EdVaaRZ4', '5214686'), - (15, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'EdVaaRZ4', '5215989'), - (15, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'EdVaaRZ4', '5223686'), - (15, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'EdVaaRZ4', '5227432'), - (15, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'EdVaaRZ4', '5231461'), - (15, 1338, 'attending', '2022-04-15 13:54:59', '2025-12-17 19:47:27', 'EdVaaRZ4', '5245270'), - (15, 1342, 'attending', '2022-04-16 20:37:52', '2025-12-17 19:47:27', 'EdVaaRZ4', '5246530'), - (15, 1344, 'attending', '2022-04-26 12:15:15', '2025-12-17 19:47:28', 'EdVaaRZ4', '5247465'), - (15, 1345, 'not_attending', '2022-04-17 20:17:52', '2025-12-17 19:47:27', 'EdVaaRZ4', '5247466'), - (15, 1346, 'not_attending', '2022-04-17 20:17:44', '2025-12-17 19:47:27', 'EdVaaRZ4', '5247467'), - (15, 1355, 'attending', '2022-04-21 17:53:21', '2025-12-17 19:47:27', 'EdVaaRZ4', '5252573'), - (15, 1362, 'attending', '2022-04-26 12:15:07', '2025-12-17 19:47:28', 'EdVaaRZ4', '5260800'), - (15, 1374, 'attending', '2022-05-06 15:40:15', '2025-12-17 19:47:28', 'EdVaaRZ4', '5269930'), - (15, 1378, 'not_attending', '2022-05-06 15:40:37', '2025-12-17 19:47:29', 'EdVaaRZ4', '5271448'), - (15, 1379, 'not_attending', '2022-05-06 15:40:40', '2025-12-17 19:47:29', 'EdVaaRZ4', '5271449'), - (15, 1380, 'attending', '2022-05-27 16:20:26', '2025-12-17 19:47:30', 'EdVaaRZ4', '5271450'), - (15, 1383, 'not_attending', '2022-05-12 16:37:57', '2025-12-17 19:47:28', 'EdVaaRZ4', '5276469'), - (15, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'EdVaaRZ4', '5278159'), - (15, 1391, 'attending', '2022-05-06 09:04:55', '2025-12-17 19:47:28', 'EdVaaRZ4', '5279531'), - (15, 1392, 'attending', '2022-05-06 09:04:58', '2025-12-17 19:47:28', 'EdVaaRZ4', '5279532'), - (15, 1395, 'attending', '2022-05-07 22:19:45', '2025-12-17 19:47:28', 'EdVaaRZ4', '5281102'), - (15, 1396, 'not_attending', '2022-05-11 01:54:19', '2025-12-17 19:47:28', 'EdVaaRZ4', '5281103'), - (15, 1397, 'not_attending', '2022-05-11 01:54:22', '2025-12-17 19:47:29', 'EdVaaRZ4', '5281104'), - (15, 1402, 'attending', '2022-05-12 16:38:55', '2025-12-17 19:47:30', 'EdVaaRZ4', '5287977'), - (15, 1407, 'attending', '2022-06-04 21:28:55', '2025-12-17 19:47:30', 'EdVaaRZ4', '5363695'), - (15, 1408, 'not_attending', '2022-05-20 14:12:54', '2025-12-17 19:47:29', 'EdVaaRZ4', '5365960'), - (15, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'EdVaaRZ4', '5368973'), - (15, 1419, 'not_attending', '2022-06-08 22:31:22', '2025-12-17 19:47:30', 'EdVaaRZ4', '5373081'), - (15, 1428, 'not_attending', '2022-06-10 22:45:52', '2025-12-17 19:47:30', 'EdVaaRZ4', '5378247'), - (15, 1431, 'attending', '2022-06-05 02:21:34', '2025-12-17 19:47:30', 'EdVaaRZ4', '5389605'), - (15, 1432, 'attending', '2022-05-30 21:33:07', '2025-12-17 19:47:30', 'EdVaaRZ4', '5391566'), - (15, 1442, 'not_attending', '2022-06-14 16:25:04', '2025-12-17 19:47:17', 'EdVaaRZ4', '5397265'), - (15, 1443, 'attending', '2022-06-04 21:28:58', '2025-12-17 19:47:30', 'EdVaaRZ4', '5397613'), - (15, 1444, 'attending', '2022-06-05 02:21:32', '2025-12-17 19:47:30', 'EdVaaRZ4', '5397614'), - (15, 1445, 'not_attending', '2022-06-14 16:25:03', '2025-12-17 19:47:17', 'EdVaaRZ4', '5397615'), - (15, 1451, 'not_attending', '2022-06-14 16:24:58', '2025-12-17 19:47:17', 'EdVaaRZ4', '5403967'), - (15, 1458, 'not_attending', '2022-06-16 13:20:36', '2025-12-17 19:47:17', 'EdVaaRZ4', '5404786'), - (15, 1462, 'not_attending', '2022-06-14 16:24:59', '2025-12-17 19:47:17', 'EdVaaRZ4', '5405203'), - (15, 1468, 'maybe', '2022-06-30 00:16:08', '2025-12-17 19:47:19', 'EdVaaRZ4', '5406832'), - (15, 1477, 'attending', '2022-06-21 23:53:41', '2025-12-17 19:47:17', 'EdVaaRZ4', '5408766'), - (15, 1478, 'not_attending', '2022-06-23 14:52:01', '2025-12-17 19:47:19', 'EdVaaRZ4', '5408794'), - (15, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'EdVaaRZ4', '5411699'), - (15, 1482, 'attending', '2022-06-23 14:52:54', '2025-12-17 19:47:19', 'EdVaaRZ4', '5412550'), - (15, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'EdVaaRZ4', '5415046'), - (15, 1493, 'attending', '2022-06-25 20:30:44', '2025-12-17 19:47:19', 'EdVaaRZ4', '5420218'), - (15, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'EdVaaRZ4', '5422086'), - (15, 1498, 'attending', '2022-06-27 16:23:41', '2025-12-17 19:47:19', 'EdVaaRZ4', '5422406'), - (15, 1499, 'attending', '2022-06-27 16:23:39', '2025-12-17 19:47:19', 'EdVaaRZ4', '5422407'), - (15, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'EdVaaRZ4', '5424565'), - (15, 1503, 'attending', '2022-06-29 18:21:03', '2025-12-17 19:47:19', 'EdVaaRZ4', '5426820'), - (15, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'EdVaaRZ4', '5426882'), - (15, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'EdVaaRZ4', '5427083'), - (15, 1507, 'attending', '2022-07-02 22:10:07', '2025-12-17 19:47:19', 'EdVaaRZ4', '5433100'), - (15, 1508, 'attending', '2022-07-13 20:21:10', '2025-12-17 19:47:19', 'EdVaaRZ4', '5433453'), - (15, 1511, 'not_attending', '2022-07-08 17:47:06', '2025-12-17 19:47:19', 'EdVaaRZ4', '5437733'), - (15, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'EdVaaRZ4', '5441125'), - (15, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'EdVaaRZ4', '5441126'), - (15, 1515, 'attending', '2022-08-06 13:38:40', '2025-12-17 19:47:21', 'EdVaaRZ4', '5441128'), - (15, 1516, 'attending', '2022-08-15 00:10:27', '2025-12-17 19:47:23', 'EdVaaRZ4', '5441129'), - (15, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'EdVaaRZ4', '5441131'), - (15, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'EdVaaRZ4', '5441132'), - (15, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'EdVaaRZ4', '5446643'), - (15, 1531, 'not_attending', '2022-07-16 02:18:37', '2025-12-17 19:47:19', 'EdVaaRZ4', '5448756'), - (15, 1532, 'attending', '2022-07-22 22:13:28', '2025-12-17 19:47:20', 'EdVaaRZ4', '5448757'), - (15, 1533, 'attending', '2022-07-19 17:33:32', '2025-12-17 19:47:21', 'EdVaaRZ4', '5448758'), - (15, 1534, 'maybe', '2022-08-06 13:38:43', '2025-12-17 19:47:21', 'EdVaaRZ4', '5448759'), - (15, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'EdVaaRZ4', '5453325'), - (15, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'EdVaaRZ4', '5454516'), - (15, 1544, 'attending', '2022-09-15 10:07:33', '2025-12-17 19:47:11', 'EdVaaRZ4', '5454517'), - (15, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'EdVaaRZ4', '5454605'), - (15, 1549, 'not_attending', '2022-07-21 20:35:38', '2025-12-17 19:47:20', 'EdVaaRZ4', '5454789'), - (15, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'EdVaaRZ4', '5455037'), - (15, 1555, 'attending', '2022-07-21 02:25:37', '2025-12-17 19:47:20', 'EdVaaRZ4', '5456489'), - (15, 1558, 'not_attending', '2022-08-22 23:07:12', '2025-12-17 19:47:10', 'EdVaaRZ4', '5458730'), - (15, 1560, 'attending', '2022-07-22 18:36:03', '2025-12-17 19:47:23', 'EdVaaRZ4', '5458768'), - (15, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'EdVaaRZ4', '5461278'), - (15, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'EdVaaRZ4', '5469480'), - (15, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'EdVaaRZ4', '5471073'), - (15, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'EdVaaRZ4', '5474663'), - (15, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'EdVaaRZ4', '5482022'), - (15, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'EdVaaRZ4', '5482793'), - (15, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'EdVaaRZ4', '5488912'), - (15, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'EdVaaRZ4', '5492192'), - (15, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'EdVaaRZ4', '5493139'), - (15, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'EdVaaRZ4', '5493200'), - (15, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'EdVaaRZ4', '5502188'), - (15, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'EdVaaRZ4', '5505059'), - (15, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'EdVaaRZ4', '5509055'), - (15, 1619, 'attending', '2022-08-22 23:07:36', '2025-12-17 19:47:23', 'EdVaaRZ4', '5512862'), - (15, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'EdVaaRZ4', '5513985'), - (15, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'EdVaaRZ4', '5519981'), - (15, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'EdVaaRZ4', '5522550'), - (15, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'EdVaaRZ4', '5534683'), - (15, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'EdVaaRZ4', '5537735'), - (15, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'EdVaaRZ4', '5540859'), - (15, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'EdVaaRZ4', '5546619'), - (15, 1652, 'attending', '2022-09-07 14:36:11', '2025-12-17 19:47:24', 'EdVaaRZ4', '5552671'), - (15, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'EdVaaRZ4', '5555245'), - (15, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'EdVaaRZ4', '5557747'), - (15, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'EdVaaRZ4', '5560255'), - (15, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'EdVaaRZ4', '5562906'), - (15, 1667, 'attending', '2022-09-22 18:49:56', '2025-12-17 19:47:11', 'EdVaaRZ4', '5563221'), - (15, 1668, 'attending', '2022-09-30 22:00:24', '2025-12-17 19:47:12', 'EdVaaRZ4', '5563222'), - (15, 1669, 'attending', '2022-09-12 02:07:00', '2025-12-17 19:47:10', 'EdVaaRZ4', '5564033'), - (15, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'EdVaaRZ4', '5600604'), - (15, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'EdVaaRZ4', '5605544'), - (15, 1699, 'attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'EdVaaRZ4', '5606737'), - (15, 1705, 'attending', '2022-09-29 21:10:42', '2025-12-17 19:47:12', 'EdVaaRZ4', '5612209'), - (15, 1717, 'attending', '2022-10-16 02:21:04', '2025-12-17 19:47:13', 'EdVaaRZ4', '5622842'), - (15, 1719, 'attending', '2022-10-07 10:43:36', '2025-12-17 19:47:12', 'EdVaaRZ4', '5630958'), - (15, 1720, 'attending', '2022-10-14 19:34:56', '2025-12-17 19:47:12', 'EdVaaRZ4', '5630959'), - (15, 1721, 'attending', '2022-10-21 09:03:25', '2025-12-17 19:47:13', 'EdVaaRZ4', '5630960'), - (15, 1722, 'not_attending', '2022-10-24 16:13:27', '2025-12-17 19:47:14', 'EdVaaRZ4', '5630961'), - (15, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'EdVaaRZ4', '5630962'), - (15, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'EdVaaRZ4', '5630966'), - (15, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'EdVaaRZ4', '5630967'), - (15, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'EdVaaRZ4', '5630968'), - (15, 1727, 'attending', '2022-12-02 01:24:30', '2025-12-17 19:47:16', 'EdVaaRZ4', '5630969'), - (15, 1728, 'attending', '2022-12-06 18:45:17', '2025-12-17 19:47:17', 'EdVaaRZ4', '5630970'), - (15, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'EdVaaRZ4', '5635406'), - (15, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'EdVaaRZ4', '5638765'), - (15, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'EdVaaRZ4', '5640097'), - (15, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'EdVaaRZ4', '5640843'), - (15, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'EdVaaRZ4', '5641521'), - (15, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'EdVaaRZ4', '5642818'), - (15, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'EdVaaRZ4', '5652395'), - (15, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'EdVaaRZ4', '5670445'), - (15, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'EdVaaRZ4', '5671637'), - (15, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'EdVaaRZ4', '5672329'), - (15, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'EdVaaRZ4', '5674057'), - (15, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'EdVaaRZ4', '5674060'), - (15, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'EdVaaRZ4', '5677461'), - (15, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'EdVaaRZ4', '5698046'), - (15, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'EdVaaRZ4', '5699760'), - (15, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'EdVaaRZ4', '5741601'), - (15, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'EdVaaRZ4', '5763458'), - (15, 1801, 'maybe', '2022-12-02 01:24:33', '2025-12-17 19:47:16', 'EdVaaRZ4', '5764668'), - (15, 1806, 'not_attending', '2023-01-21 13:59:41', '2025-12-17 19:47:05', 'EdVaaRZ4', '5764676'), - (15, 1807, 'maybe', '2023-01-12 23:08:47', '2025-12-17 19:47:05', 'EdVaaRZ4', '5764677'), - (15, 1808, 'not_attending', '2023-03-01 01:42:49', '2025-12-17 19:47:08', 'EdVaaRZ4', '5764678'), - (15, 1810, 'maybe', '2023-04-19 17:09:46', '2025-12-17 19:47:00', 'EdVaaRZ4', '5764680'), - (15, 1812, 'not_attending', '2023-03-01 01:43:23', '2025-12-17 19:47:09', 'EdVaaRZ4', '5764682'), - (15, 1815, 'not_attending', '2023-02-17 17:29:44', '2025-12-17 19:47:07', 'EdVaaRZ4', '5764685'), - (15, 1817, 'not_attending', '2023-03-08 01:14:05', '2025-12-17 19:46:57', 'EdVaaRZ4', '5764687'), - (15, 1818, 'not_attending', '2023-02-07 03:02:14', '2025-12-17 19:47:07', 'EdVaaRZ4', '5764688'), - (15, 1821, 'not_attending', '2023-03-01 01:43:36', '2025-12-17 19:46:56', 'EdVaaRZ4', '5764691'), - (15, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'EdVaaRZ4', '5774172'), - (15, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'EdVaaRZ4', '5818247'), - (15, 1834, 'attending', '2022-12-10 19:47:11', '2025-12-17 19:47:17', 'EdVaaRZ4', '5819470'), - (15, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'EdVaaRZ4', '5819471'), - (15, 1841, 'attending', '2022-12-09 19:25:14', '2025-12-17 19:47:05', 'EdVaaRZ4', '5827665'), - (15, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'EdVaaRZ4', '5827739'), - (15, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'EdVaaRZ4', '5844306'), - (15, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'EdVaaRZ4', '5850159'), - (15, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'EdVaaRZ4', '5858999'), - (15, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'EdVaaRZ4', '5871984'), - (15, 1860, 'not_attending', '2023-01-13 12:28:57', '2025-12-17 19:47:05', 'EdVaaRZ4', '5876309'), - (15, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'EdVaaRZ4', '5876354'), - (15, 1864, 'not_attending', '2023-01-21 13:59:39', '2025-12-17 19:47:05', 'EdVaaRZ4', '5879675'), - (15, 1865, 'attending', '2023-01-24 02:17:22', '2025-12-17 19:47:06', 'EdVaaRZ4', '5879676'), - (15, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'EdVaaRZ4', '5880939'), - (15, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'EdVaaRZ4', '5880940'), - (15, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'EdVaaRZ4', '5880942'), - (15, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'EdVaaRZ4', '5880943'), - (15, 1870, 'not_attending', '2023-01-21 13:59:43', '2025-12-17 19:47:05', 'EdVaaRZ4', '5881740'), - (15, 1873, 'not_attending', '2023-01-21 13:59:46', '2025-12-17 19:47:05', 'EdVaaRZ4', '5885295'), - (15, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'EdVaaRZ4', '5887890'), - (15, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'EdVaaRZ4', '5888598'), - (15, 1879, 'attending', '2023-01-25 01:00:36', '2025-12-17 19:47:06', 'EdVaaRZ4', '5893001'), - (15, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'EdVaaRZ4', '5893260'), - (15, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'EdVaaRZ4', '5899826'), - (15, 1888, 'maybe', '2023-02-17 17:29:59', '2025-12-17 19:47:07', 'EdVaaRZ4', '5900197'), - (15, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'EdVaaRZ4', '5900199'), - (15, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'EdVaaRZ4', '5900200'), - (15, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'EdVaaRZ4', '5900202'), - (15, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'EdVaaRZ4', '5900203'), - (15, 1894, 'attending', '2023-01-31 21:20:24', '2025-12-17 19:47:06', 'EdVaaRZ4', '5901100'), - (15, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'EdVaaRZ4', '5901108'), - (15, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'EdVaaRZ4', '5901126'), - (15, 1897, 'not_attending', '2023-02-02 14:44:01', '2025-12-17 19:47:07', 'EdVaaRZ4', '5901128'), - (15, 1899, 'not_attending', '2023-02-07 03:02:27', '2025-12-17 19:47:07', 'EdVaaRZ4', '5901323'), - (15, 1909, 'not_attending', '2023-02-07 03:02:25', '2025-12-17 19:47:07', 'EdVaaRZ4', '5906541'), - (15, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'EdVaaRZ4', '5909655'), - (15, 1912, 'attending', '2023-02-12 22:53:06', '2025-12-17 19:47:07', 'EdVaaRZ4', '5909808'), - (15, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'EdVaaRZ4', '5910522'), - (15, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'EdVaaRZ4', '5910526'), - (15, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'EdVaaRZ4', '5910528'), - (15, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'EdVaaRZ4', '5916219'), - (15, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'EdVaaRZ4', '5936234'), - (15, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'EdVaaRZ4', '5958351'), - (15, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'EdVaaRZ4', '5959751'), - (15, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'EdVaaRZ4', '5959755'), - (15, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'EdVaaRZ4', '5960055'), - (15, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'EdVaaRZ4', '5961684'), - (15, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'EdVaaRZ4', '5962132'), - (15, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'EdVaaRZ4', '5962133'), - (15, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'EdVaaRZ4', '5962134'), - (15, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'EdVaaRZ4', '5962317'), - (15, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'EdVaaRZ4', '5962318'), - (15, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'EdVaaRZ4', '5965933'), - (15, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'EdVaaRZ4', '5967014'), - (15, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'EdVaaRZ4', '5972763'), - (15, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'EdVaaRZ4', '5972815'), - (15, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'EdVaaRZ4', '5974016'), - (15, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'EdVaaRZ4', '5975052'), - (15, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'EdVaaRZ4', '5975054'), - (15, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'EdVaaRZ4', '5981515'), - (15, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'EdVaaRZ4', '5993516'), - (15, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'EdVaaRZ4', '5998939'), - (15, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'EdVaaRZ4', '6028191'), - (15, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'EdVaaRZ4', '6040066'), - (15, 1983, 'attending', '2023-03-23 23:38:11', '2025-12-17 19:46:59', 'EdVaaRZ4', '6040068'), - (15, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'EdVaaRZ4', '6042717'), - (15, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'EdVaaRZ4', '6044838'), - (15, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'EdVaaRZ4', '6044839'), - (15, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVaaRZ4', '6045684'), - (15, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'EdVaaRZ4', '6050104'), - (15, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'EdVaaRZ4', '6053195'), - (15, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'EdVaaRZ4', '6053198'), - (15, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'EdVaaRZ4', '6056085'), - (15, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'EdVaaRZ4', '6056916'), - (15, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'EdVaaRZ4', '6059290'), - (15, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'EdVaaRZ4', '6060328'), - (15, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'EdVaaRZ4', '6061037'), - (15, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'EdVaaRZ4', '6061039'), - (15, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'EdVaaRZ4', '6065813'), - (15, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'EdVaaRZ4', '6067245'), - (15, 2024, 'attending', '2023-04-19 00:02:24', '2025-12-17 19:47:00', 'EdVaaRZ4', '6067437'), - (15, 2027, 'attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'EdVaaRZ4', '6068094'), - (15, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'EdVaaRZ4', '6068252'), - (15, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'EdVaaRZ4', '6068253'), - (15, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'EdVaaRZ4', '6068254'), - (15, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'EdVaaRZ4', '6068280'), - (15, 2032, 'not_attending', '2023-05-18 16:21:30', '2025-12-17 19:47:04', 'EdVaaRZ4', '6068281'), - (15, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'EdVaaRZ4', '6069093'), - (15, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'EdVaaRZ4', '6072528'), - (15, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'EdVaaRZ4', '6075556'), - (15, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'EdVaaRZ4', '6079840'), - (15, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'EdVaaRZ4', '6083398'), - (15, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'EdVaaRZ4', '6093504'), - (15, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'EdVaaRZ4', '6097414'), - (15, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'EdVaaRZ4', '6097442'), - (15, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'EdVaaRZ4', '6097684'), - (15, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'EdVaaRZ4', '6098762'), - (15, 2064, 'not_attending', '2023-06-22 23:57:46', '2025-12-17 19:46:50', 'EdVaaRZ4', '6099988'), - (15, 2066, 'not_attending', '2023-05-25 00:10:52', '2025-12-17 19:47:04', 'EdVaaRZ4', '6101361'), - (15, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'EdVaaRZ4', '6101362'), - (15, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'EdVaaRZ4', '6107314'), - (15, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'EdVaaRZ4', '6120034'), - (15, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'EdVaaRZ4', '6136733'), - (15, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'EdVaaRZ4', '6137989'), - (15, 2098, 'attending', '2023-06-07 23:44:25', '2025-12-17 19:47:04', 'EdVaaRZ4', '6139831'), - (15, 2108, 'maybe', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'EdVaaRZ4', '6150864'), - (15, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'EdVaaRZ4', '6155491'), - (15, 2115, 'attending', '2023-06-23 00:00:49', '2025-12-17 19:46:50', 'EdVaaRZ4', '6161437'), - (15, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'EdVaaRZ4', '6164417'), - (15, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'EdVaaRZ4', '6166388'), - (15, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'EdVaaRZ4', '6176439'), - (15, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'EdVaaRZ4', '6182410'), - (15, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'EdVaaRZ4', '6185812'), - (15, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'EdVaaRZ4', '6187651'), - (15, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'EdVaaRZ4', '6187963'), - (15, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'EdVaaRZ4', '6187964'), - (15, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'EdVaaRZ4', '6187966'), - (15, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'EdVaaRZ4', '6187967'), - (15, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'EdVaaRZ4', '6187969'), - (15, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'EdVaaRZ4', '6334878'), - (15, 2152, 'attending', '2023-07-14 21:10:17', '2025-12-17 19:46:52', 'EdVaaRZ4', '6337021'), - (15, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'EdVaaRZ4', '6337236'), - (15, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'EdVaaRZ4', '6337970'), - (15, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'EdVaaRZ4', '6338308'), - (15, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'EdVaaRZ4', '6338342'), - (15, 2159, 'attending', '2023-07-22 11:26:01', '2025-12-17 19:46:53', 'EdVaaRZ4', '6338355'), - (15, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'EdVaaRZ4', '6341710'), - (15, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'EdVaaRZ4', '6342044'), - (15, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'EdVaaRZ4', '6342298'), - (15, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'EdVaaRZ4', '6343294'), - (15, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'EdVaaRZ4', '6347034'), - (15, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'EdVaaRZ4', '6347056'), - (15, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'EdVaaRZ4', '6353830'), - (15, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'EdVaaRZ4', '6353831'), - (15, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'EdVaaRZ4', '6357867'), - (15, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'EdVaaRZ4', '6358652'), - (15, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'EdVaaRZ4', '6358668'), - (15, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'EdVaaRZ4', '6358669'), - (15, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'EdVaaRZ4', '6361709'), - (15, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'EdVaaRZ4', '6361710'), - (15, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'EdVaaRZ4', '6361711'), - (15, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'EdVaaRZ4', '6361712'), - (15, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'EdVaaRZ4', '6361713'), - (15, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'EdVaaRZ4', '6382573'), - (15, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'EdVaaRZ4', '6388604'), - (15, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'EdVaaRZ4', '6394629'), - (15, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'EdVaaRZ4', '6394631'), - (15, 2253, 'attending', '2023-09-29 15:06:54', '2025-12-17 19:46:45', 'EdVaaRZ4', '6401811'), - (15, 2267, 'attending', '2023-09-29 22:06:03', '2025-12-17 19:46:45', 'EdVaaRZ4', '6440034'), - (15, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'EdVaaRZ4', '6440863'), - (15, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'EdVaaRZ4', '6445440'), - (15, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'EdVaaRZ4', '6453951'), - (15, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'EdVaaRZ4', '6461696'), - (15, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'EdVaaRZ4', '6462129'), - (15, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'EdVaaRZ4', '6463218'), - (15, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'EdVaaRZ4', '6472181'), - (15, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'EdVaaRZ4', '6482693'), - (15, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'EdVaaRZ4', '6484200'), - (15, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'EdVaaRZ4', '6484680'), - (15, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'EdVaaRZ4', '6507741'), - (15, 2322, 'attending', '2023-11-18 00:47:30', '2025-12-17 19:46:48', 'EdVaaRZ4', '6514659'), - (15, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'EdVaaRZ4', '6514660'), - (15, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'EdVaaRZ4', '6519103'), - (15, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'EdVaaRZ4', '6535681'), - (15, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'EdVaaRZ4', '6584747'), - (15, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'EdVaaRZ4', '6587097'), - (15, 2354, 'attending', '2023-11-26 19:07:54', '2025-12-17 19:46:48', 'EdVaaRZ4', '6591742'), - (15, 2360, 'attending', '2023-12-01 21:05:04', '2025-12-17 19:46:49', 'EdVaaRZ4', '6599341'), - (15, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'EdVaaRZ4', '6609022'), - (15, 2365, 'attending', '2023-12-24 00:21:28', '2025-12-17 19:46:37', 'EdVaaRZ4', '6613093'), - (15, 2373, 'attending', '2023-12-31 22:55:05', '2025-12-17 19:46:38', 'EdVaaRZ4', '6632678'), - (15, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'EdVaaRZ4', '6632757'), - (15, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'EdVaaRZ4', '6644187'), - (15, 2380, 'attending', '2023-12-30 21:10:25', '2025-12-17 19:46:37', 'EdVaaRZ4', '6645105'), - (15, 2381, 'attending', '2023-12-31 23:26:41', '2025-12-17 19:46:37', 'EdVaaRZ4', '6646398'), - (15, 2383, 'attending', '2024-01-02 00:29:29', '2025-12-17 19:46:37', 'EdVaaRZ4', '6647606'), - (15, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'EdVaaRZ4', '6648951'), - (15, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'EdVaaRZ4', '6648952'), - (15, 2388, 'attending', '2024-01-03 16:30:42', '2025-12-17 19:46:37', 'EdVaaRZ4', '6649244'), - (15, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'EdVaaRZ4', '6655401'), - (15, 2399, 'attending', '2024-01-10 01:32:16', '2025-12-17 19:46:38', 'EdVaaRZ4', '6657583'), - (15, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'EdVaaRZ4', '6661585'), - (15, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'EdVaaRZ4', '6661588'), - (15, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'EdVaaRZ4', '6661589'), - (15, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'EdVaaRZ4', '6699906'), - (15, 2408, 'not_attending', '2024-01-24 12:50:40', '2025-12-17 19:46:40', 'EdVaaRZ4', '6699907'), - (15, 2409, 'attending', '2024-01-31 21:32:43', '2025-12-17 19:46:41', 'EdVaaRZ4', '6699909'), - (15, 2411, 'attending', '2024-02-11 19:42:59', '2025-12-17 19:46:41', 'EdVaaRZ4', '6699913'), - (15, 2412, 'not_attending', '2024-02-20 12:48:20', '2025-12-17 19:46:43', 'EdVaaRZ4', '6700717'), - (15, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'EdVaaRZ4', '6701109'), - (15, 2419, 'attending', '2024-01-18 23:07:45', '2025-12-17 19:46:41', 'EdVaaRZ4', '6704505'), - (15, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'EdVaaRZ4', '6704561'), - (15, 2421, 'attending', '2024-01-26 21:40:06', '2025-12-17 19:46:40', 'EdVaaRZ4', '6704598'), - (15, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'EdVaaRZ4', '6705219'), - (15, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'EdVaaRZ4', '6708410'), - (15, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'EdVaaRZ4', '6710153'), - (15, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'EdVaaRZ4', '6711552'), - (15, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'EdVaaRZ4', '6711553'), - (15, 2432, 'not_attending', '2024-01-24 13:25:18', '2025-12-17 19:46:41', 'EdVaaRZ4', '6712822'), - (15, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'EdVaaRZ4', '6722688'), - (15, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'EdVaaRZ4', '6730620'), - (15, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'EdVaaRZ4', '6730642'), - (15, 2453, 'attending', '2024-02-07 02:49:07', '2025-12-17 19:46:42', 'EdVaaRZ4', '6740364'), - (15, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'EdVaaRZ4', '6743829'), - (15, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'EdVaaRZ4', '7030380'), - (15, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'EdVaaRZ4', '7033677'), - (15, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'EdVaaRZ4', '7035415'), - (15, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'EdVaaRZ4', '7044715'), - (15, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'EdVaaRZ4', '7050318'), - (15, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'EdVaaRZ4', '7050319'), - (15, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'EdVaaRZ4', '7050322'), - (15, 2498, 'attending', '2024-03-06 02:22:19', '2025-12-17 19:46:33', 'EdVaaRZ4', '7057662'), - (15, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'EdVaaRZ4', '7057804'), - (15, 2502, 'attending', '2024-03-06 02:22:16', '2025-12-17 19:46:33', 'EdVaaRZ4', '7061202'), - (15, 2504, 'attending', '2024-03-07 18:30:58', '2025-12-17 19:46:33', 'EdVaaRZ4', '7063296'), - (15, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'EdVaaRZ4', '7072824'), - (15, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'EdVaaRZ4', '7074348'), - (15, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'EdVaaRZ4', '7074364'), - (15, 2537, 'attending', '2024-03-21 23:22:01', '2025-12-17 19:46:33', 'EdVaaRZ4', '7085484'), - (15, 2538, 'attending', '2024-03-21 23:22:13', '2025-12-17 19:46:33', 'EdVaaRZ4', '7085485'), - (15, 2539, 'attending', '2024-04-03 22:48:54', '2025-12-17 19:46:33', 'EdVaaRZ4', '7085486'), - (15, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'EdVaaRZ4', '7089267'), - (15, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'EdVaaRZ4', '7098747'), - (15, 2553, 'attending', '2024-03-29 22:56:01', '2025-12-17 19:46:33', 'EdVaaRZ4', '7113468'), - (15, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'EdVaaRZ4', '7114856'), - (15, 2555, 'attending', '2024-03-31 02:41:06', '2025-12-17 19:46:33', 'EdVaaRZ4', '7114951'), - (15, 2556, 'attending', '2024-04-03 00:12:59', '2025-12-17 19:46:34', 'EdVaaRZ4', '7114955'), - (15, 2557, 'attending', '2024-04-03 00:12:17', '2025-12-17 19:46:34', 'EdVaaRZ4', '7114956'), - (15, 2558, 'attending', '2024-04-03 00:13:01', '2025-12-17 19:46:35', 'EdVaaRZ4', '7114957'), - (15, 2564, 'maybe', '2024-04-10 20:31:33', '2025-12-17 19:46:33', 'EdVaaRZ4', '7134735'), - (15, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'EdVaaRZ4', '7153615'), - (15, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'EdVaaRZ4', '7159484'), - (15, 2582, 'attending', '2024-04-12 21:56:19', '2025-12-17 19:46:34', 'EdVaaRZ4', '7169765'), - (15, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'EdVaaRZ4', '7178446'), - (15, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'EdVaaRZ4', '7220467'), - (15, 2609, 'not_attending', '2024-04-30 19:19:56', '2025-12-17 19:46:35', 'EdVaaRZ4', '7240354'), - (15, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'EdVaaRZ4', '7251633'), - (15, 2626, 'attending', '2024-05-12 03:35:29', '2025-12-17 19:46:35', 'EdVaaRZ4', '7264723'), - (15, 2627, 'attending', '2024-05-12 03:42:06', '2025-12-17 19:46:35', 'EdVaaRZ4', '7264724'), - (15, 2628, 'attending', '2024-05-12 03:42:10', '2025-12-17 19:46:36', 'EdVaaRZ4', '7264725'), - (15, 2629, 'attending', '2024-05-12 03:42:13', '2025-12-17 19:46:28', 'EdVaaRZ4', '7264726'), - (15, 2647, 'attending', '2024-05-26 21:04:16', '2025-12-17 19:46:28', 'EdVaaRZ4', '7282057'), - (15, 2650, 'attending', '2024-05-24 16:28:37', '2025-12-17 19:46:35', 'EdVaaRZ4', '7288199'), - (15, 2651, 'not_attending', '2024-05-24 22:48:45', '2025-12-17 19:46:35', 'EdVaaRZ4', '7288200'), - (15, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'EdVaaRZ4', '7302674'), - (15, 2662, 'attending', '2024-06-02 19:03:13', '2025-12-17 19:46:36', 'EdVaaRZ4', '7302815'), - (15, 2667, 'attending', '2024-06-05 12:14:40', '2025-12-17 19:46:36', 'EdVaaRZ4', '7307776'), - (15, 2668, 'attending', '2024-06-07 14:53:21', '2025-12-17 19:46:36', 'EdVaaRZ4', '7308821'), - (15, 2678, 'not_attending', '2024-06-10 15:38:30', '2025-12-17 19:46:28', 'EdVaaRZ4', '7319489'), - (15, 2679, 'attending', '2024-06-10 15:38:33', '2025-12-17 19:46:29', 'EdVaaRZ4', '7319490'), - (15, 2688, 'not_attending', '2024-06-19 16:41:06', '2025-12-17 19:46:29', 'EdVaaRZ4', '7324073'), - (15, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'EdVaaRZ4', '7324074'), - (15, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'EdVaaRZ4', '7324075'), - (15, 2691, 'attending', '2024-07-19 03:36:12', '2025-12-17 19:46:30', 'EdVaaRZ4', '7324076'), - (15, 2692, 'not_attending', '2024-07-07 16:12:55', '2025-12-17 19:46:30', 'EdVaaRZ4', '7324077'), - (15, 2693, 'not_attending', '2024-07-07 16:13:06', '2025-12-17 19:46:31', 'EdVaaRZ4', '7324078'), - (15, 2694, 'not_attending', '2024-07-28 00:06:48', '2025-12-17 19:46:31', 'EdVaaRZ4', '7324079'), - (15, 2695, 'attending', '2024-08-15 17:11:03', '2025-12-17 19:46:31', 'EdVaaRZ4', '7324080'), - (15, 2696, 'attending', '2024-08-15 17:11:06', '2025-12-17 19:46:32', 'EdVaaRZ4', '7324081'), - (15, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'EdVaaRZ4', '7324082'), - (15, 2717, 'attending', '2024-06-19 16:40:39', '2025-12-17 19:46:29', 'EdVaaRZ4', '7329149'), - (15, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'EdVaaRZ4', '7331457'), - (15, 2761, 'attending', '2024-07-17 13:35:16', '2025-12-17 19:46:30', 'EdVaaRZ4', '7363412'), - (15, 2762, 'attending', '2024-07-14 15:15:33', '2025-12-17 19:46:30', 'EdVaaRZ4', '7363413'), - (15, 2765, 'attending', '2024-07-15 00:24:46', '2025-12-17 19:46:30', 'EdVaaRZ4', '7363604'), - (15, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'EdVaaRZ4', '7363643'), - (15, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'EdVaaRZ4', '7368606'), - (15, 2775, 'attending', '2024-07-21 22:06:26', '2025-12-17 19:46:30', 'EdVaaRZ4', '7368642'), - (15, 2797, 'attending', '2024-08-10 14:00:56', '2025-12-17 19:46:31', 'EdVaaRZ4', '7392641'), - (15, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'EdVaaRZ4', '7397462'), - (15, 2821, 'attending', '2024-10-04 14:57:09', '2025-12-17 19:46:26', 'EdVaaRZ4', '7424275'), - (15, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'EdVaaRZ4', '7424276'), - (15, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'EdVaaRZ4', '7432751'), - (15, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'EdVaaRZ4', '7432752'), - (15, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'EdVaaRZ4', '7432753'), - (15, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432754'), - (15, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432755'), - (15, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432756'), - (15, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432758'), - (15, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432759'), - (15, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'EdVaaRZ4', '7433834'), - (15, 2849, 'not_attending', '2024-09-30 14:33:40', '2025-12-17 19:46:25', 'EdVaaRZ4', '7457114'), - (15, 2850, 'not_attending', '2024-09-30 14:33:37', '2025-12-17 19:46:25', 'EdVaaRZ4', '7457153'), - (15, 2860, 'attending', '2024-09-30 14:34:37', '2025-12-17 19:46:26', 'EdVaaRZ4', '7469393'), - (15, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'EdVaaRZ4', '7470197'), - (15, 2879, 'attending', '2024-10-11 01:03:12', '2025-12-17 19:46:26', 'EdVaaRZ4', '7633863'), - (15, 2884, 'attending', '2024-10-17 10:05:28', '2025-12-17 19:46:26', 'EdVaaRZ4', '7649932'), - (15, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'EdVaaRZ4', '7685613'), - (15, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'EdVaaRZ4', '7688194'), - (15, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'EdVaaRZ4', '7688196'), - (15, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'EdVaaRZ4', '7688289'), - (15, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'EdVaaRZ4', '7692763'), - (15, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'EdVaaRZ4', '7697552'), - (15, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'EdVaaRZ4', '7699878'), - (15, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'EdVaaRZ4', '7704043'), - (15, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'EdVaaRZ4', '7712467'), - (15, 2925, 'not_attending', '2024-12-12 02:54:45', '2025-12-17 19:46:21', 'EdVaaRZ4', '7713584'), - (15, 2926, 'not_attending', '2024-12-07 01:52:17', '2025-12-17 19:46:21', 'EdVaaRZ4', '7713585'), - (15, 2927, 'attending', '2024-12-16 14:55:45', '2025-12-17 19:46:22', 'EdVaaRZ4', '7713586'), - (15, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'EdVaaRZ4', '7738518'), - (15, 2959, 'attending', '2024-12-22 17:21:05', '2025-12-17 19:46:22', 'EdVaaRZ4', '7747388'), - (15, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'EdVaaRZ4', '7750632'), - (15, 2963, 'attending', '2024-12-28 03:41:43', '2025-12-17 19:46:22', 'EdVaaRZ4', '7750636'), - (15, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'EdVaaRZ4', '7796540'), - (15, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'EdVaaRZ4', '7796541'), - (15, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'EdVaaRZ4', '7796542'), - (15, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'EdVaaRZ4', '7825913'), - (15, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'EdVaaRZ4', '7825920'), - (15, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'EdVaaRZ4', '7826209'), - (15, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'EdVaaRZ4', '7834742'), - (15, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'EdVaaRZ4', '7842108'), - (15, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'EdVaaRZ4', '7842902'), - (15, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'EdVaaRZ4', '7842903'), - (15, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'EdVaaRZ4', '7842904'), - (15, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'EdVaaRZ4', '7842905'), - (15, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'EdVaaRZ4', '7855719'), - (15, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'EdVaaRZ4', '7860683'), - (15, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'EdVaaRZ4', '7860684'), - (15, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'EdVaaRZ4', '7866095'), - (15, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'EdVaaRZ4', '7869170'), - (15, 3014, 'attending', '2025-03-31 15:25:44', '2025-12-17 19:46:19', 'EdVaaRZ4', '7869185'), - (15, 3015, 'not_attending', '2025-04-03 22:38:28', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869186'), - (15, 3016, 'not_attending', '2025-03-31 15:25:48', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869187'), - (15, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'EdVaaRZ4', '7869188'), - (15, 3018, 'not_attending', '2025-03-31 15:25:46', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869189'), - (15, 3028, 'not_attending', '2025-04-11 11:21:32', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869199'), - (15, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'EdVaaRZ4', '7869201'), - (15, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'EdVaaRZ4', '7877465'), - (15, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'EdVaaRZ4', '7888250'), - (15, 3059, 'attending', '2025-03-26 11:29:01', '2025-12-17 19:46:19', 'EdVaaRZ4', '7891868'), - (15, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'EdVaaRZ4', '7904777'), - (15, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'EdVaaRZ4', '8349164'), - (15, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'EdVaaRZ4', '8349545'), - (15, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'EdVaaRZ4', '8353584'), - (15, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'EdVaaRZ4', '8368028'), - (15, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'EdVaaRZ4', '8368029'), - (15, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'EdVaaRZ4', '8388462'), - (15, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'EdVaaRZ4', '8400273'), - (15, 3154, 'attending', '2025-06-25 17:14:42', '2025-12-17 19:46:15', 'EdVaaRZ4', '8400274'), - (15, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'EdVaaRZ4', '8400275'), - (15, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'EdVaaRZ4', '8400276'), - (15, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'EdVaaRZ4', '8404977'), - (15, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'EdVaaRZ4', '8430783'), - (15, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'EdVaaRZ4', '8430784'), - (15, 3183, 'attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'EdVaaRZ4', '8430799'), - (15, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'EdVaaRZ4', '8430800'), - (15, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'EdVaaRZ4', '8430801'), - (15, 3188, 'attending', '2025-07-15 11:58:26', '2025-12-17 19:46:17', 'EdVaaRZ4', '8438709'), - (15, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'EdVaaRZ4', '8457738'), - (15, 3195, 'attending', '2025-08-06 22:02:50', '2025-12-17 19:46:17', 'EdVaaRZ4', '8458118'), - (15, 3196, 'attending', '2025-08-13 23:06:06', '2025-12-17 19:46:17', 'EdVaaRZ4', '8458543'), - (15, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'EdVaaRZ4', '8459566'), - (15, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'EdVaaRZ4', '8459567'), - (15, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'EdVaaRZ4', '8461032'), - (15, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'EdVaaRZ4', '8477877'), - (15, 3217, 'attending', '2025-08-08 15:56:00', '2025-12-17 19:46:17', 'EdVaaRZ4', '8481811'), - (15, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'EdVaaRZ4', '8485688'), - (15, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'EdVaaRZ4', '8490587'), - (15, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'EdVaaRZ4', '8493552'), - (15, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'EdVaaRZ4', '8493553'), - (15, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'EdVaaRZ4', '8493554'), - (15, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'EdVaaRZ4', '8493555'), - (15, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'EdVaaRZ4', '8493556'), - (15, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'EdVaaRZ4', '8493557'), - (15, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'EdVaaRZ4', '8493558'), - (15, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'EdVaaRZ4', '8493559'), - (15, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'EdVaaRZ4', '8493560'), - (15, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'EdVaaRZ4', '8493561'), - (15, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'EdVaaRZ4', '8493572'), - (15, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'EdVaaRZ4', '8540725'), - (15, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'EdVaaRZ4', '8555421'), - (16, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'O4ZrpPl4', '6044839'), - (16, 1994, 'attending', '2023-04-05 21:32:02', '2025-12-17 19:46:59', 'O4ZrpPl4', '6050104'), - (16, 1998, 'attending', '2023-04-10 22:48:48', '2025-12-17 19:46:59', 'O4ZrpPl4', '6052056'), - (16, 2002, 'attending', '2023-04-28 17:19:32', '2025-12-17 19:47:01', 'O4ZrpPl4', '6052605'), - (16, 2005, 'attending', '2023-04-05 22:52:52', '2025-12-17 19:46:58', 'O4ZrpPl4', '6053195'), - (16, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'O4ZrpPl4', '6053198'), - (16, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'O4ZrpPl4', '6056085'), - (16, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'O4ZrpPl4', '6056916'), - (16, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'O4ZrpPl4', '6059290'), - (16, 2013, 'maybe', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'O4ZrpPl4', '6060328'), - (16, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'O4ZrpPl4', '6061037'), - (16, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'O4ZrpPl4', '6061039'), - (16, 2019, 'attending', '2023-04-20 22:28:14', '2025-12-17 19:47:00', 'O4ZrpPl4', '6062934'), - (16, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'O4ZrpPl4', '6067245'), - (16, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'O4ZrpPl4', '6068094'), - (16, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'O4ZrpPl4', '6068252'), - (16, 2029, 'maybe', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'O4ZrpPl4', '6068253'), - (16, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'O4ZrpPl4', '6068254'), - (16, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'O4ZrpPl4', '6068280'), - (16, 2032, 'maybe', '2023-06-03 23:23:25', '2025-12-17 19:47:04', 'O4ZrpPl4', '6068281'), - (16, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'O4ZrpPl4', '6069093'), - (16, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'O4ZrpPl4', '6072528'), - (16, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'O4ZrpPl4', '6079840'), - (16, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'O4ZrpPl4', '6083398'), - (16, 2052, 'attending', '2023-05-06 01:56:24', '2025-12-17 19:47:02', 'O4ZrpPl4', '6088220'), - (16, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'O4ZrpPl4', '6093504'), - (16, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'O4ZrpPl4', '6097414'), - (16, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'O4ZrpPl4', '6097442'), - (16, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'O4ZrpPl4', '6097684'), - (16, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'O4ZrpPl4', '6098762'), - (16, 2064, 'attending', '2023-06-24 21:18:12', '2025-12-17 19:46:50', 'O4ZrpPl4', '6099988'), - (16, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'O4ZrpPl4', '6101361'), - (16, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'O4ZrpPl4', '6101362'), - (16, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'O4ZrpPl4', '6103752'), - (16, 2074, 'attending', '2023-05-24 18:49:11', '2025-12-17 19:47:03', 'O4ZrpPl4', '6107312'), - (16, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'O4ZrpPl4', '6107314'), - (16, 2087, 'maybe', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'O4ZrpPl4', '6120034'), - (16, 2089, 'attending', '2023-06-08 02:49:24', '2025-12-17 19:47:04', 'O4ZrpPl4', '6125227'), - (16, 2090, 'maybe', '2023-06-02 16:07:23', '2025-12-17 19:47:04', 'O4ZrpPl4', '6127961'), - (16, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'O4ZrpPl4', '6136733'), - (16, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'O4ZrpPl4', '6137989'), - (16, 2099, 'attending', '2023-06-15 20:33:14', '2025-12-17 19:46:49', 'O4ZrpPl4', '6143012'), - (16, 2105, 'attending', '2023-06-19 23:02:00', '2025-12-17 19:46:50', 'O4ZrpPl4', '6149551'), - (16, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'O4ZrpPl4', '6150864'), - (16, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'O4ZrpPl4', '6155491'), - (16, 2117, 'attending', '2023-06-25 06:53:23', '2025-12-17 19:46:50', 'O4ZrpPl4', '6163750'), - (16, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'O4ZrpPl4', '6164417'), - (16, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'O4ZrpPl4', '6166388'), - (16, 2121, 'maybe', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'O4ZrpPl4', '6176439'), - (16, 2122, 'attending', '2023-07-06 22:27:58', '2025-12-17 19:46:51', 'O4ZrpPl4', '6176476'), - (16, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'O4ZrpPl4', '6182410'), - (16, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'O4ZrpPl4', '6185812'), - (16, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'O4ZrpPl4', '6187651'), - (16, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'O4ZrpPl4', '6187963'), - (16, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'O4ZrpPl4', '6187964'), - (16, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'O4ZrpPl4', '6187966'), - (16, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'O4ZrpPl4', '6187967'), - (16, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'O4ZrpPl4', '6187969'), - (16, 2141, 'maybe', '2023-07-12 18:24:19', '2025-12-17 19:46:52', 'O4ZrpPl4', '6188819'), - (16, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'O4ZrpPl4', '6334878'), - (16, 2146, 'attending', '2023-07-21 22:56:44', '2025-12-17 19:46:53', 'O4ZrpPl4', '6335638'), - (16, 2152, 'attending', '2023-07-14 23:00:30', '2025-12-17 19:46:52', 'O4ZrpPl4', '6337021'), - (16, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'O4ZrpPl4', '6337236'), - (16, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'O4ZrpPl4', '6337970'), - (16, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'O4ZrpPl4', '6338308'), - (16, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'O4ZrpPl4', '6340845'), - (16, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'O4ZrpPl4', '6341710'), - (16, 2165, 'attending', '2023-08-02 17:03:18', '2025-12-17 19:46:54', 'O4ZrpPl4', '6342044'), - (16, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'O4ZrpPl4', '6342298'), - (16, 2168, 'maybe', '2023-07-17 22:13:49', '2025-12-17 19:46:52', 'O4ZrpPl4', '6342302'), - (16, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'O4ZrpPl4', '6343294'), - (16, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'O4ZrpPl4', '6347034'), - (16, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'O4ZrpPl4', '6347056'), - (16, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'O4ZrpPl4', '6353830'), - (16, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'O4ZrpPl4', '6353831'), - (16, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'O4ZrpPl4', '6357867'), - (16, 2191, 'maybe', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'O4ZrpPl4', '6358652'), - (16, 2195, 'maybe', '2023-08-22 20:05:57', '2025-12-17 19:46:55', 'O4ZrpPl4', '6359397'), - (16, 2199, 'attending', '2023-08-16 22:23:32', '2025-12-17 19:46:55', 'O4ZrpPl4', '6359849'), - (16, 2204, 'attending', '2023-08-19 20:58:39', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361542'), - (16, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'O4ZrpPl4', '6361709'), - (16, 2209, 'maybe', '2023-08-22 20:05:24', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361710'), - (16, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361711'), - (16, 2211, 'attending', '2023-08-18 10:03:28', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361712'), - (16, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'O4ZrpPl4', '6361713'), - (16, 2221, 'maybe', '2023-08-20 21:41:23', '2025-12-17 19:46:55', 'O4ZrpPl4', '6367357'), - (16, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'O4ZrpPl4', '6382573'), - (16, 2239, 'maybe', '2023-09-02 19:13:24', '2025-12-17 19:46:56', 'O4ZrpPl4', '6387592'), - (16, 2240, 'maybe', '2023-09-09 20:00:59', '2025-12-17 19:46:56', 'O4ZrpPl4', '6388603'), - (16, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'O4ZrpPl4', '6388604'), - (16, 2247, 'attending', '2023-09-06 21:51:23', '2025-12-17 19:46:56', 'O4ZrpPl4', '6394628'), - (16, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'O4ZrpPl4', '6394629'), - (16, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'O4ZrpPl4', '6394631'), - (16, 2268, 'maybe', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'O4ZrpPl4', '6440863'), - (16, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'O4ZrpPl4', '6445440'), - (16, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'O4ZrpPl4', '6453951'), - (16, 2279, 'attending', '2023-10-12 19:28:31', '2025-12-17 19:46:46', 'O4ZrpPl4', '6455460'), - (16, 2284, 'attending', '2023-10-13 22:09:08', '2025-12-17 19:46:46', 'O4ZrpPl4', '6460928'), - (16, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'O4ZrpPl4', '6461696'), - (16, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'O4ZrpPl4', '6462129'), - (16, 2292, 'maybe', '2023-11-01 20:37:18', '2025-12-17 19:46:47', 'O4ZrpPl4', '6462216'), - (16, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'O4ZrpPl4', '6463218'), - (16, 2299, 'maybe', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'O4ZrpPl4', '6472181'), - (16, 2300, 'attending', '2023-10-29 02:17:29', '2025-12-17 19:46:47', 'O4ZrpPl4', '6472185'), - (16, 2303, 'attending', '2023-10-28 21:19:34', '2025-12-17 19:46:47', 'O4ZrpPl4', '6482691'), - (16, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'O4ZrpPl4', '6482693'), - (16, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'O4ZrpPl4', '6484200'), - (16, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'O4ZrpPl4', '6484680'), - (16, 2310, 'maybe', '2023-11-12 00:14:12', '2025-12-17 19:46:47', 'O4ZrpPl4', '6487709'), - (16, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'O4ZrpPl4', '6507741'), - (16, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'O4ZrpPl4', '6514659'), - (16, 2323, 'maybe', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'O4ZrpPl4', '6514660'), - (16, 2325, 'attending', '2023-12-16 22:42:46', '2025-12-17 19:46:36', 'O4ZrpPl4', '6514663'), - (16, 2331, 'attending', '2023-11-15 01:27:48', '2025-12-17 19:46:47', 'O4ZrpPl4', '6518640'), - (16, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'O4ZrpPl4', '6519103'), - (16, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'O4ZrpPl4', '6535681'), - (16, 2345, 'attending', '2023-11-29 19:20:03', '2025-12-17 19:46:48', 'O4ZrpPl4', '6582414'), - (16, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'O4ZrpPl4', '6584747'), - (16, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'O4ZrpPl4', '6587097'), - (16, 2362, 'maybe', '2023-12-07 07:42:32', '2025-12-17 19:46:49', 'O4ZrpPl4', '6605708'), - (16, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'O4ZrpPl4', '6609022'), - (16, 2366, 'maybe', '2023-12-12 23:15:22', '2025-12-17 19:46:36', 'O4ZrpPl4', '6615304'), - (16, 2370, 'maybe', '2023-12-13 04:15:43', '2025-12-17 19:46:36', 'O4ZrpPl4', '6623765'), - (16, 2374, 'maybe', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'O4ZrpPl4', '6632757'), - (16, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'O4ZrpPl4', '6644187'), - (16, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'O4ZrpPl4', '6648951'), - (16, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'O4ZrpPl4', '6648952'), - (16, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'O4ZrpPl4', '6655401'), - (16, 2398, 'maybe', '2024-01-10 21:30:13', '2025-12-17 19:46:37', 'O4ZrpPl4', '6657381'), - (16, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'O4ZrpPl4', '6661585'), - (16, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'O4ZrpPl4', '6661588'), - (16, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'O4ZrpPl4', '6661589'), - (16, 2406, 'attending', '2024-01-19 22:02:29', '2025-12-17 19:46:40', 'O4ZrpPl4', '6692344'), - (16, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'O4ZrpPl4', '6699906'), - (16, 2411, 'maybe', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'O4ZrpPl4', '6699913'), - (16, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'O4ZrpPl4', '6701109'), - (16, 2421, 'attending', '2024-01-27 00:27:22', '2025-12-17 19:46:40', 'O4ZrpPl4', '6704598'), - (16, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'O4ZrpPl4', '6705219'), - (16, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'O4ZrpPl4', '6710153'), - (16, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'O4ZrpPl4', '6711552'), - (16, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'O4ZrpPl4', '6711553'), - (16, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'O4ZrpPl4', '6722688'), - (16, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'O4ZrpPl4', '6730620'), - (16, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'O4ZrpPl4', '6730642'), - (16, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'O4ZrpPl4', '6740364'), - (16, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'O4ZrpPl4', '6743829'), - (16, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'O4ZrpPl4', '7030380'), - (16, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'O4ZrpPl4', '7033677'), - (16, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'O4ZrpPl4', '7035415'), - (16, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'O4ZrpPl4', '7044715'), - (16, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'O4ZrpPl4', '7050318'), - (16, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'O4ZrpPl4', '7050319'), - (16, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'O4ZrpPl4', '7050322'), - (16, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'O4ZrpPl4', '7057804'), - (16, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'O4ZrpPl4', '7059866'), - (16, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'O4ZrpPl4', '7072824'), - (16, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'O4ZrpPl4', '7074348'), - (16, 2521, 'maybe', '2024-06-20 22:47:00', '2025-12-17 19:46:29', 'O4ZrpPl4', '7074361'), - (16, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'O4ZrpPl4', '7074364'), - (16, 2534, 'attending', '2024-03-13 22:46:19', '2025-12-17 19:46:32', 'O4ZrpPl4', '7076875'), - (16, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'O4ZrpPl4', '7089267'), - (16, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'O4ZrpPl4', '7098747'), - (16, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'O4ZrpPl4', '7113468'), - (16, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'O4ZrpPl4', '7114856'), - (16, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'O4ZrpPl4', '7114951'), - (16, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'O4ZrpPl4', '7114955'), - (16, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'O4ZrpPl4', '7114956'), - (16, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'O4ZrpPl4', '7114957'), - (16, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'O4ZrpPl4', '7153615'), - (16, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'O4ZrpPl4', '7159484'), - (16, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'O4ZrpPl4', '7178446'), - (16, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'O4ZrpPl4', '7220467'), - (16, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'O4ZrpPl4', '7240354'), - (16, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'O4ZrpPl4', '7251633'), - (16, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'O4ZrpPl4', '7263048'), - (16, 2629, 'maybe', '2024-06-08 22:23:37', '2025-12-17 19:46:28', 'O4ZrpPl4', '7264726'), - (16, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'O4ZrpPl4', '7302674'), - (16, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'O4ZrpPl4', '7324073'), - (16, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'O4ZrpPl4', '7324074'), - (16, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'O4ZrpPl4', '7324075'), - (16, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'O4ZrpPl4', '7324078'), - (16, 2695, 'maybe', '2024-08-16 23:09:06', '2025-12-17 19:46:32', 'O4ZrpPl4', '7324080'), - (16, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'O4ZrpPl4', '7324082'), - (16, 2699, 'attending', '2024-06-12 22:27:52', '2025-12-17 19:46:28', 'O4ZrpPl4', '7324385'), - (16, 2712, 'maybe', '2024-08-02 17:49:42', '2025-12-17 19:46:31', 'O4ZrpPl4', '7326525'), - (16, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'O4ZrpPl4', '7331457'), - (16, 2724, 'attending', '2024-06-26 22:14:29', '2025-12-17 19:46:29', 'O4ZrpPl4', '7332562'), - (16, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'O4ZrpPl4', '7356752'), - (16, 2755, 'attending', '2024-07-10 20:52:24', '2025-12-17 19:46:29', 'O4ZrpPl4', '7357808'), - (16, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'O4ZrpPl4', '7363643'), - (16, 2767, 'attending', '2024-07-22 21:56:54', '2025-12-17 19:46:30', 'O4ZrpPl4', '7364726'), - (16, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'O4ZrpPl4', '7368606'), - (16, 2800, 'maybe', '2024-08-16 02:44:40', '2025-12-17 19:46:31', 'O4ZrpPl4', '7397405'), - (16, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'O4ZrpPl4', '7397462'), - (16, 2806, 'maybe', '2024-09-18 22:16:50', '2025-12-17 19:46:25', 'O4ZrpPl4', '7404888'), - (16, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'O4ZrpPl4', '7424275'), - (16, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'O4ZrpPl4', '7424276'), - (16, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'O4ZrpPl4', '7432751'), - (16, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'O4ZrpPl4', '7432752'), - (16, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'O4ZrpPl4', '7432753'), - (16, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432754'), - (16, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432755'), - (16, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432756'), - (16, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432758'), - (16, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432759'), - (16, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'O4ZrpPl4', '7433834'), - (16, 2839, 'attending', '2024-09-25 22:13:40', '2025-12-17 19:46:25', 'O4ZrpPl4', '7439262'), - (16, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'O4ZrpPl4', '7470197'), - (16, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'O4ZrpPl4', '7685613'), - (16, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'O4ZrpPl4', '7688194'), - (16, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'O4ZrpPl4', '7688196'), - (16, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'O4ZrpPl4', '7688289'), - (16, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'O4ZrpPl4', '7692763'), - (16, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'O4ZrpPl4', '7697552'), - (16, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'O4ZrpPl4', '7699878'), - (16, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'O4ZrpPl4', '7704043'), - (16, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'O4ZrpPl4', '7712467'), - (16, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'O4ZrpPl4', '7713585'), - (16, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'O4ZrpPl4', '7713586'), - (16, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'O4ZrpPl4', '7738518'), - (16, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'O4ZrpPl4', '7750636'), - (16, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'O4ZrpPl4', '7796540'), - (16, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'O4ZrpPl4', '7796541'), - (16, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'O4ZrpPl4', '7796542'), - (16, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'O4ZrpPl4', '7825913'), - (16, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'O4ZrpPl4', '7826209'), - (16, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'O4ZrpPl4', '7834742'), - (16, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'O4ZrpPl4', '7842108'), - (16, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'O4ZrpPl4', '7842902'), - (16, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'O4ZrpPl4', '7842903'), - (16, 2993, 'maybe', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'O4ZrpPl4', '7842904'), - (16, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'O4ZrpPl4', '7842905'), - (16, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'O4ZrpPl4', '7855719'), - (16, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'O4ZrpPl4', '7860683'), - (16, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'O4ZrpPl4', '7860684'), - (16, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'O4ZrpPl4', '7866095'), - (16, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'O4ZrpPl4', '7869170'), - (16, 3014, 'attending', '2025-04-05 19:10:35', '2025-12-17 19:46:20', 'O4ZrpPl4', '7869185'), - (16, 3015, 'attending', '2025-04-26 22:40:32', '2025-12-17 19:46:20', 'O4ZrpPl4', '7869186'), - (16, 3016, 'attending', '2025-04-19 19:07:23', '2025-12-17 19:46:20', 'O4ZrpPl4', '7869187'), - (16, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'O4ZrpPl4', '7869188'), - (16, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'O4ZrpPl4', '7869201'), - (16, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'O4ZrpPl4', '7877465'), - (16, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'O4ZrpPl4', '7878570'), - (16, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'O4ZrpPl4', '7888250'), - (16, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'O4ZrpPl4', '7904777'), - (16, 3094, 'maybe', '2025-05-03 23:14:30', '2025-12-17 19:46:21', 'O4ZrpPl4', '8342292'), - (16, 3095, 'attending', '2025-05-03 22:55:01', '2025-12-17 19:46:20', 'O4ZrpPl4', '8342293'), - (16, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'O4ZrpPl4', '8349164'), - (16, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'O4ZrpPl4', '8349545'), - (16, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'O4ZrpPl4', '8353584'), - (16, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'O4ZrpPl4', '8368028'), - (16, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'O4ZrpPl4', '8368029'), - (16, 3136, 'maybe', '2025-05-21 21:01:37', '2025-12-17 19:46:21', 'O4ZrpPl4', '8374152'), - (16, 3137, 'maybe', '2025-05-21 21:01:27', '2025-12-17 19:46:21', 'O4ZrpPl4', '8374153'), - (16, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'O4ZrpPl4', '8388462'), - (16, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'O4ZrpPl4', '8400273'), - (16, 3154, 'maybe', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'O4ZrpPl4', '8400274'), - (16, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'O4ZrpPl4', '8400275'), - (16, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'O4ZrpPl4', '8400276'), - (16, 3169, 'attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'O4ZrpPl4', '8404977'), - (16, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'O4ZrpPl4', '8430783'), - (16, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'O4ZrpPl4', '8430784'), - (16, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'O4ZrpPl4', '8430799'), - (16, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'O4ZrpPl4', '8430800'), - (16, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'O4ZrpPl4', '8430801'), - (16, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'O4ZrpPl4', '8438709'), - (16, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'O4ZrpPl4', '8457738'), - (16, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'O4ZrpPl4', '8459566'), - (16, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'O4ZrpPl4', '8459567'), - (16, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'O4ZrpPl4', '8461032'), - (16, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'O4ZrpPl4', '8477877'), - (16, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'O4ZrpPl4', '8485688'), - (16, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'O4ZrpPl4', '8490587'), - (16, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'O4ZrpPl4', '8493552'), - (16, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'O4ZrpPl4', '8493553'), - (16, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'O4ZrpPl4', '8493554'), - (16, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'O4ZrpPl4', '8493555'), - (16, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'O4ZrpPl4', '8493556'), - (16, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'O4ZrpPl4', '8493557'), - (16, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'O4ZrpPl4', '8493558'), - (16, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'O4ZrpPl4', '8493559'), - (16, 3244, 'maybe', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'O4ZrpPl4', '8493560'), - (16, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'O4ZrpPl4', '8493561'), - (16, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'O4ZrpPl4', '8493572'), - (16, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'O4ZrpPl4', '8540725'), - (16, 3295, 'maybe', '2025-11-01 15:55:41', '2025-12-17 19:46:14', 'O4ZrpPl4', '8547541'), - (16, 3300, 'attending', '2025-11-08 21:57:29', '2025-12-17 19:46:14', 'O4ZrpPl4', '8549145'), - (16, 3302, 'attending', '2025-11-15 10:40:34', '2025-12-17 19:46:14', 'O4ZrpPl4', '8550022'), - (16, 3304, 'maybe', '2025-11-22 20:50:29', '2025-12-17 19:46:14', 'O4ZrpPl4', '8550024'), - (16, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'O4ZrpPl4', '8555421'), - (16, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'O4ZrpPl4', '8555522'), - (17, 2993, 'not_attending', '2025-03-14 23:27:13', '2025-12-17 19:46:19', 'dOKY6z8d', '7842904'), - (17, 3012, 'attending', '2025-03-21 15:39:58', '2025-12-17 19:46:19', 'dOKY6z8d', '7866095'), - (17, 3016, 'attending', '2025-04-18 01:56:37', '2025-12-17 19:46:20', 'dOKY6z8d', '7869187'), - (17, 3017, 'attending', '2025-03-25 00:56:02', '2025-12-17 19:46:19', 'dOKY6z8d', '7869188'), - (17, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'dOKY6z8d', '7880977'), - (17, 3038, 'attending', '2025-03-14 02:55:42', '2025-12-17 19:46:19', 'dOKY6z8d', '7881989'), - (17, 3055, 'attending', '2025-03-25 00:55:46', '2025-12-17 19:46:19', 'dOKY6z8d', '7888118'), - (17, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dOKY6z8d', '7888250'), - (17, 3061, 'attending', '2025-03-31 15:16:32', '2025-12-17 19:46:19', 'dOKY6z8d', '7892590'), - (17, 3072, 'attending', '2025-04-03 16:16:23', '2025-12-17 19:46:19', 'dOKY6z8d', '7895449'), - (17, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dOKY6z8d', '7904777'), - (17, 3090, 'attending', '2025-04-16 15:57:23', '2025-12-17 19:46:20', 'dOKY6z8d', '7914315'), - (17, 3094, 'attending', '2025-04-30 17:08:46', '2025-12-17 19:46:21', 'dOKY6z8d', '8342292'), - (17, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dOKY6z8d', '8349164'), - (17, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dOKY6z8d', '8349545'), - (17, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dOKY6z8d', '8353584'), - (17, 3126, 'attending', '2025-05-11 22:16:43', '2025-12-17 19:46:21', 'dOKY6z8d', '8365614'), - (17, 3131, 'attending', '2025-05-15 16:23:17', '2025-12-17 19:46:21', 'dOKY6z8d', '8368028'), - (17, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dOKY6z8d', '8368029'), - (17, 3133, 'attending', '2025-05-28 05:28:46', '2025-12-17 19:46:14', 'dOKY6z8d', '8368030'), - (17, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dOKY6z8d', '8388462'), - (17, 3152, 'attending', '2025-06-05 03:55:39', '2025-12-17 19:46:14', 'dOKY6z8d', '8393582'), - (17, 3153, 'attending', '2025-06-03 13:46:04', '2025-12-17 19:46:15', 'dOKY6z8d', '8400273'), - (17, 3154, 'attending', '2025-06-26 03:23:38', '2025-12-17 19:46:15', 'dOKY6z8d', '8400274'), - (17, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dOKY6z8d', '8400275'), - (17, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dOKY6z8d', '8400276'), - (17, 3167, 'attending', '2025-06-08 21:48:25', '2025-12-17 19:46:15', 'dOKY6z8d', '8404521'), - (17, 3168, 'attending', '2025-06-14 18:12:12', '2025-12-17 19:46:15', 'dOKY6z8d', '8404522'), - (17, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dOKY6z8d', '8404977'), - (17, 3175, 'attending', '2025-06-16 01:43:03', '2025-12-17 19:46:15', 'dOKY6z8d', '8410815'), - (17, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dOKY6z8d', '8430783'), - (17, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dOKY6z8d', '8430784'), - (17, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dOKY6z8d', '8430799'), - (17, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dOKY6z8d', '8430800'), - (17, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dOKY6z8d', '8430801'), - (17, 3186, 'attending', '2025-07-01 00:33:02', '2025-12-17 19:46:16', 'dOKY6z8d', '8431527'), - (17, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dOKY6z8d', '8438709'), - (17, 3192, 'attending', '2025-07-15 16:08:02', '2025-12-17 19:46:17', 'dOKY6z8d', '8456429'), - (17, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dOKY6z8d', '8457738'), - (17, 3195, 'attending', '2025-07-31 20:07:49', '2025-12-17 19:46:17', 'dOKY6z8d', '8458118'), - (17, 3196, 'attending', '2025-08-13 22:14:04', '2025-12-17 19:46:17', 'dOKY6z8d', '8458543'), - (17, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dOKY6z8d', '8459566'), - (17, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dOKY6z8d', '8459567'), - (17, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dOKY6z8d', '8461032'), - (17, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dOKY6z8d', '8477877'), - (17, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dOKY6z8d', '8485688'), - (17, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dOKY6z8d', '8490587'), - (17, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dOKY6z8d', '8493552'), - (17, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dOKY6z8d', '8493553'), - (17, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dOKY6z8d', '8493554'), - (17, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dOKY6z8d', '8493555'), - (17, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dOKY6z8d', '8493556'), - (17, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dOKY6z8d', '8493557'), - (17, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dOKY6z8d', '8493558'), - (17, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dOKY6z8d', '8493559'), - (17, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dOKY6z8d', '8493560'), - (17, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dOKY6z8d', '8493561'), - (17, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dOKY6z8d', '8493572'), - (17, 3258, 'not_attending', '2025-09-03 21:03:02', '2025-12-17 19:46:11', 'dOKY6z8d', '8510285'), - (17, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dOKY6z8d', '8540725'), - (17, 3295, 'attending', '2025-11-01 22:10:08', '2025-12-17 19:46:14', 'dOKY6z8d', '8547541'), - (17, 3300, 'attending', '2025-11-05 21:42:21', '2025-12-17 19:46:14', 'dOKY6z8d', '8549145'), - (17, 3302, 'attending', '2025-11-11 04:59:32', '2025-12-17 19:46:14', 'dOKY6z8d', '8550022'), - (17, 3304, 'not_attending', '2025-11-18 16:17:01', '2025-12-17 19:46:14', 'dOKY6z8d', '8550024'), - (17, 3305, 'attending', '2025-12-05 08:52:04', '2025-12-17 19:46:11', 'dOKY6z8d', '8550025'), - (17, 3306, 'attending', '2025-12-11 17:42:34', '2025-12-17 19:46:11', 'dOKY6z8d', '8550026'), - (17, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dOKY6z8d', '8555421'), - (18, 1480, 'attending', '2022-06-26 00:51:48', '2025-12-17 19:47:19', 'mpQ3lnqA', '5411699'), - (18, 1482, 'not_attending', '2022-06-25 01:25:48', '2025-12-17 19:47:19', 'mpQ3lnqA', '5412550'), - (18, 1485, 'attending', '2022-06-24 00:58:33', '2025-12-17 19:47:17', 'mpQ3lnqA', '5416276'), - (18, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mpQ3lnqA', '5422086'), - (18, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mpQ3lnqA', '5422406'), - (18, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mpQ3lnqA', '5424565'), - (18, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mpQ3lnqA', '5426882'), - (18, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mpQ3lnqA', '5427083'), - (18, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mpQ3lnqA', '5441125'), - (18, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mpQ3lnqA', '5441126'), - (18, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mpQ3lnqA', '5441128'), - (18, 1518, 'maybe', '2022-08-31 23:51:20', '2025-12-17 19:47:24', 'mpQ3lnqA', '5441131'), - (18, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mpQ3lnqA', '5441132'), - (18, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mpQ3lnqA', '5446643'), - (18, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'mpQ3lnqA', '5449068'), - (18, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mpQ3lnqA', '5453325'), - (18, 1542, 'attending', '2022-07-22 20:42:58', '2025-12-17 19:47:20', 'mpQ3lnqA', '5454064'), - (18, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mpQ3lnqA', '5454516'), - (18, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mpQ3lnqA', '5454605'), - (18, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mpQ3lnqA', '5455037'), - (18, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mpQ3lnqA', '5461278'), - (18, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mpQ3lnqA', '5469480'), - (18, 1563, 'not_attending', '2022-07-31 23:42:55', '2025-12-17 19:47:21', 'mpQ3lnqA', '5469889'), - (18, 1564, 'attending', '2022-07-31 23:43:01', '2025-12-17 19:47:21', 'mpQ3lnqA', '5469890'), - (18, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mpQ3lnqA', '5471073'), - (18, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mpQ3lnqA', '5474663'), - (18, 1570, 'attending', '2022-08-01 22:53:09', '2025-12-17 19:47:21', 'mpQ3lnqA', '5481830'), - (18, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mpQ3lnqA', '5482022'), - (18, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mpQ3lnqA', '5482793'), - (18, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mpQ3lnqA', '5488912'), - (18, 1581, 'attending', '2022-08-11 22:17:08', '2025-12-17 19:47:22', 'mpQ3lnqA', '5490302'), - (18, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mpQ3lnqA', '5492192'), - (18, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mpQ3lnqA', '5493139'), - (18, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mpQ3lnqA', '5493200'), - (18, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mpQ3lnqA', '5502188'), - (18, 1607, 'attending', '2022-08-20 21:10:46', '2025-12-17 19:47:23', 'mpQ3lnqA', '5504589'), - (18, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mpQ3lnqA', '5505059'), - (18, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mpQ3lnqA', '5509055'), - (18, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mpQ3lnqA', '5512862'), - (18, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mpQ3lnqA', '5513985'), - (18, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mpQ3lnqA', '5519981'), - (18, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mpQ3lnqA', '5522550'), - (18, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mpQ3lnqA', '5534683'), - (18, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mpQ3lnqA', '5537735'), - (18, 1636, 'attending', '2022-09-04 23:29:12', '2025-12-17 19:47:24', 'mpQ3lnqA', '5538454'), - (18, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mpQ3lnqA', '5540859'), - (18, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mpQ3lnqA', '5546619'), - (18, 1647, 'attending', '2022-09-18 20:41:10', '2025-12-17 19:47:11', 'mpQ3lnqA', '5548660'), - (18, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mpQ3lnqA', '5555245'), - (18, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mpQ3lnqA', '5557747'), - (18, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpQ3lnqA', '5560255'), - (18, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mpQ3lnqA', '5562906'), - (18, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mpQ3lnqA', '5600604'), - (18, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpQ3lnqA', '5605544'), - (18, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'mpQ3lnqA', '5606737'), - (18, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mpQ3lnqA', '5630960'), - (18, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mpQ3lnqA', '5630961'), - (18, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mpQ3lnqA', '5630962'), - (18, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mpQ3lnqA', '5630966'), - (18, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mpQ3lnqA', '5630967'), - (18, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mpQ3lnqA', '5630968'), - (18, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpQ3lnqA', '5635406'), - (18, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpQ3lnqA', '5638765'), - (18, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mpQ3lnqA', '5640097'), - (18, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mpQ3lnqA', '5640843'), - (18, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mpQ3lnqA', '5641521'), - (18, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mpQ3lnqA', '5642818'), - (18, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mpQ3lnqA', '5652395'), - (18, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mpQ3lnqA', '5670445'), - (18, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mpQ3lnqA', '5671637'), - (18, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mpQ3lnqA', '5672329'), - (18, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mpQ3lnqA', '5674057'), - (18, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mpQ3lnqA', '5674060'), - (18, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mpQ3lnqA', '5677461'), - (18, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mpQ3lnqA', '5698046'), - (18, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mpQ3lnqA', '5699760'), - (18, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mpQ3lnqA', '5741601'), - (18, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mpQ3lnqA', '5763458'), - (18, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mpQ3lnqA', '5774172'), - (18, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mpQ3lnqA', '5818247'), - (18, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mpQ3lnqA', '5819471'), - (18, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mpQ3lnqA', '5827739'), - (18, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mpQ3lnqA', '5844306'), - (18, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mpQ3lnqA', '5850159'), - (18, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mpQ3lnqA', '5858999'), - (18, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mpQ3lnqA', '5871984'), - (18, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mpQ3lnqA', '5876354'), - (18, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mpQ3lnqA', '5880939'), - (18, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mpQ3lnqA', '5880940'), - (18, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mpQ3lnqA', '5880942'), - (18, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mpQ3lnqA', '5880943'), - (18, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mpQ3lnqA', '5887890'), - (18, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mpQ3lnqA', '5888598'), - (18, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mpQ3lnqA', '5893260'), - (18, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mpQ3lnqA', '5899826'), - (18, 1888, 'maybe', '2023-02-17 22:08:54', '2025-12-17 19:47:07', 'mpQ3lnqA', '5900197'), - (18, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mpQ3lnqA', '5900199'), - (18, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mpQ3lnqA', '5900200'), - (18, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mpQ3lnqA', '5900202'), - (18, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mpQ3lnqA', '5900203'), - (18, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mpQ3lnqA', '5901108'), - (18, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mpQ3lnqA', '5901126'), - (18, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mpQ3lnqA', '5909655'), - (18, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mpQ3lnqA', '5910522'), - (18, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mpQ3lnqA', '5910526'), - (18, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mpQ3lnqA', '5910528'), - (18, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mpQ3lnqA', '5916219'), - (18, 1928, 'maybe', '2023-02-17 22:08:41', '2025-12-17 19:47:07', 'mpQ3lnqA', '5932627'), - (18, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mpQ3lnqA', '5936234'), - (18, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mpQ3lnqA', '5958351'), - (18, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mpQ3lnqA', '5959751'), - (18, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mpQ3lnqA', '5959755'), - (18, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mpQ3lnqA', '5960055'), - (18, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mpQ3lnqA', '5961684'), - (18, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mpQ3lnqA', '5962132'), - (18, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mpQ3lnqA', '5962133'), - (18, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mpQ3lnqA', '5962134'), - (18, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mpQ3lnqA', '5962317'), - (18, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mpQ3lnqA', '5962318'), - (18, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mpQ3lnqA', '5965933'), - (18, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mpQ3lnqA', '5967014'), - (18, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mpQ3lnqA', '5972815'), - (18, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mpQ3lnqA', '5974016'), - (18, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'mpQ3lnqA', '5975052'), - (18, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'mpQ3lnqA', '5975054'), - (18, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mpQ3lnqA', '5981515'), - (18, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mpQ3lnqA', '5993516'), - (18, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mpQ3lnqA', '5998939'), - (18, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mpQ3lnqA', '6028191'), - (18, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mpQ3lnqA', '6040066'), - (18, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mpQ3lnqA', '6042717'), - (18, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mpQ3lnqA', '6044838'), - (18, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mpQ3lnqA', '6044839'), - (18, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpQ3lnqA', '6045684'), - (18, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mpQ3lnqA', '6050104'), - (18, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mpQ3lnqA', '6053195'), - (18, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mpQ3lnqA', '6053198'), - (18, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mpQ3lnqA', '6056085'), - (18, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mpQ3lnqA', '6056916'), - (18, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mpQ3lnqA', '6059290'), - (18, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mpQ3lnqA', '6060328'), - (18, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mpQ3lnqA', '6061037'), - (18, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mpQ3lnqA', '6061039'), - (18, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mpQ3lnqA', '6067245'), - (18, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mpQ3lnqA', '6068094'), - (18, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mpQ3lnqA', '6068252'), - (18, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mpQ3lnqA', '6068253'), - (18, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mpQ3lnqA', '6068254'), - (18, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mpQ3lnqA', '6068280'), - (18, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mpQ3lnqA', '6069093'), - (18, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mpQ3lnqA', '6072528'), - (18, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'mpQ3lnqA', '6075556'), - (18, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mpQ3lnqA', '6079840'), - (18, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mpQ3lnqA', '6083398'), - (18, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mpQ3lnqA', '6093504'), - (18, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mpQ3lnqA', '6097414'), - (18, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mpQ3lnqA', '6097442'), - (18, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mpQ3lnqA', '6097684'), - (18, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mpQ3lnqA', '6098762'), - (18, 2065, 'maybe', '2023-06-17 14:10:15', '2025-12-17 19:46:49', 'mpQ3lnqA', '6101169'), - (18, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mpQ3lnqA', '6101361'), - (18, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mpQ3lnqA', '6101362'), - (18, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mpQ3lnqA', '6107314'), - (18, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mpQ3lnqA', '6120034'), - (18, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mpQ3lnqA', '6136733'), - (18, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mpQ3lnqA', '6137989'), - (18, 2103, 'maybe', '2023-06-17 22:54:31', '2025-12-17 19:46:50', 'mpQ3lnqA', '6149451'), - (18, 2104, 'attending', '2023-06-17 14:10:07', '2025-12-17 19:46:50', 'mpQ3lnqA', '6149499'), - (18, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mpQ3lnqA', '6150864'), - (18, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mpQ3lnqA', '6155491'), - (18, 2113, 'not_attending', '2023-06-23 01:13:01', '2025-12-17 19:46:50', 'mpQ3lnqA', '6156215'), - (18, 2114, 'attending', '2023-06-26 21:58:13', '2025-12-17 19:46:50', 'mpQ3lnqA', '6158648'), - (18, 2118, 'attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mpQ3lnqA', '6164417'), - (18, 2119, 'attending', '2023-06-27 22:45:11', '2025-12-17 19:46:50', 'mpQ3lnqA', '6165461'), - (18, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mpQ3lnqA', '6166388'), - (18, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mpQ3lnqA', '6176439'), - (18, 2122, 'maybe', '2023-06-29 22:53:04', '2025-12-17 19:46:51', 'mpQ3lnqA', '6176476'), - (18, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'mpQ3lnqA', '6182410'), - (18, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mpQ3lnqA', '6185812'), - (18, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mpQ3lnqA', '6187651'), - (18, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mpQ3lnqA', '6187963'), - (18, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mpQ3lnqA', '6187964'), - (18, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mpQ3lnqA', '6187966'), - (18, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mpQ3lnqA', '6187967'), - (18, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mpQ3lnqA', '6187969'), - (18, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mpQ3lnqA', '6334878'), - (18, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mpQ3lnqA', '6337236'), - (18, 2155, 'attending', '2023-07-14 00:55:45', '2025-12-17 19:46:53', 'mpQ3lnqA', '6337970'), - (18, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mpQ3lnqA', '6338308'), - (18, 2157, 'not_attending', '2023-07-12 21:56:12', '2025-12-17 19:46:52', 'mpQ3lnqA', '6338342'), - (18, 2159, 'not_attending', '2023-07-20 01:58:28', '2025-12-17 19:46:53', 'mpQ3lnqA', '6338355'), - (18, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mpQ3lnqA', '6341710'), - (18, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mpQ3lnqA', '6342044'), - (18, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mpQ3lnqA', '6342298'), - (18, 2169, 'attending', '2023-07-20 01:58:07', '2025-12-17 19:46:53', 'mpQ3lnqA', '6342306'), - (18, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mpQ3lnqA', '6343294'), - (18, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mpQ3lnqA', '6347034'), - (18, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mpQ3lnqA', '6347056'), - (18, 2179, 'not_attending', '2023-08-03 19:20:52', '2025-12-17 19:46:54', 'mpQ3lnqA', '6347591'), - (18, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mpQ3lnqA', '6353830'), - (18, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mpQ3lnqA', '6353831'), - (18, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mpQ3lnqA', '6357867'), - (18, 2190, 'not_attending', '2023-08-06 13:01:55', '2025-12-17 19:46:55', 'mpQ3lnqA', '6357892'), - (18, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mpQ3lnqA', '6358652'), - (18, 2193, 'attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'mpQ3lnqA', '6358668'), - (18, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'mpQ3lnqA', '6358669'), - (18, 2199, 'attending', '2023-08-11 02:58:08', '2025-12-17 19:46:55', 'mpQ3lnqA', '6359849'), - (18, 2200, 'attending', '2023-08-06 12:59:32', '2025-12-17 19:46:55', 'mpQ3lnqA', '6359850'), - (18, 2208, 'attending', '2023-08-09 13:05:47', '2025-12-17 19:46:54', 'mpQ3lnqA', '6361709'), - (18, 2209, 'attending', '2023-08-23 09:50:34', '2025-12-17 19:46:55', 'mpQ3lnqA', '6361710'), - (18, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mpQ3lnqA', '6361711'), - (18, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mpQ3lnqA', '6361712'), - (18, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mpQ3lnqA', '6361713'), - (18, 2213, 'attending', '2023-08-09 17:36:01', '2025-12-17 19:46:55', 'mpQ3lnqA', '6362935'), - (18, 2220, 'maybe', '2023-09-03 21:52:24', '2025-12-17 19:46:56', 'mpQ3lnqA', '6367310'), - (18, 2229, 'attending', '2023-08-20 19:13:13', '2025-12-17 19:46:55', 'mpQ3lnqA', '6373787'), - (18, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mpQ3lnqA', '6382573'), - (18, 2238, 'attending', '2023-09-01 17:34:26', '2025-12-17 19:46:56', 'mpQ3lnqA', '6387266'), - (18, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mpQ3lnqA', '6388604'), - (18, 2247, 'attending', '2023-09-05 19:39:10', '2025-12-17 19:46:56', 'mpQ3lnqA', '6394628'), - (18, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mpQ3lnqA', '6394629'), - (18, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mpQ3lnqA', '6394631'), - (18, 2251, 'maybe', '2023-09-05 20:31:49', '2025-12-17 19:46:56', 'mpQ3lnqA', '6395182'), - (18, 2263, 'not_attending', '2023-09-27 23:19:10', '2025-12-17 19:46:45', 'mpQ3lnqA', '6429351'), - (18, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mpQ3lnqA', '6440863'), - (18, 2270, 'attending', '2023-10-10 22:41:41', '2025-12-17 19:46:46', 'mpQ3lnqA', '6443067'), - (18, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mpQ3lnqA', '6445440'), - (18, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mpQ3lnqA', '6453951'), - (18, 2278, 'attending', '2023-10-08 16:28:22', '2025-12-17 19:46:45', 'mpQ3lnqA', '6455213'), - (18, 2280, 'attending', '2023-10-10 14:22:20', '2025-12-17 19:46:46', 'mpQ3lnqA', '6455470'), - (18, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mpQ3lnqA', '6461696'), - (18, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mpQ3lnqA', '6462129'), - (18, 2290, 'attending', '2023-10-18 22:18:47', '2025-12-17 19:46:46', 'mpQ3lnqA', '6462214'), - (18, 2292, 'attending', '2023-10-30 20:55:44', '2025-12-17 19:46:47', 'mpQ3lnqA', '6462216'), - (18, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mpQ3lnqA', '6463218'), - (18, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mpQ3lnqA', '6472181'), - (18, 2300, 'maybe', '2023-10-22 18:55:39', '2025-12-17 19:46:47', 'mpQ3lnqA', '6472185'), - (18, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mpQ3lnqA', '6482693'), - (18, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mpQ3lnqA', '6484200'), - (18, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mpQ3lnqA', '6484680'), - (18, 2310, 'maybe', '2023-10-24 21:16:12', '2025-12-17 19:46:47', 'mpQ3lnqA', '6487709'), - (18, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mpQ3lnqA', '6507741'), - (18, 2319, 'attending', '2023-10-30 20:55:27', '2025-12-17 19:46:47', 'mpQ3lnqA', '6508567'), - (18, 2322, 'not_attending', '2023-11-17 11:37:39', '2025-12-17 19:46:48', 'mpQ3lnqA', '6514659'), - (18, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mpQ3lnqA', '6514660'), - (18, 2325, 'attending', '2023-12-16 15:00:23', '2025-12-17 19:46:36', 'mpQ3lnqA', '6514663'), - (18, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mpQ3lnqA', '6519103'), - (18, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mpQ3lnqA', '6535681'), - (18, 2338, 'attending', '2023-11-25 15:46:12', '2025-12-17 19:46:48', 'mpQ3lnqA', '6538868'), - (18, 2341, 'maybe', '2023-11-12 21:12:48', '2025-12-17 19:46:48', 'mpQ3lnqA', '6543263'), - (18, 2347, 'attending', '2023-11-19 16:33:58', '2025-12-17 19:46:48', 'mpQ3lnqA', '6583053'), - (18, 2351, 'not_attending', '2023-11-21 02:07:08', '2025-12-17 19:46:48', 'mpQ3lnqA', '6584747'), - (18, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mpQ3lnqA', '6587097'), - (18, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mpQ3lnqA', '6609022'), - (18, 2368, 'maybe', '2023-12-12 11:09:45', '2025-12-17 19:46:36', 'mpQ3lnqA', '6621445'), - (18, 2370, 'maybe', '2023-12-14 00:43:29', '2025-12-17 19:46:36', 'mpQ3lnqA', '6623765'), - (18, 2372, 'maybe', '2023-12-16 00:40:25', '2025-12-17 19:46:36', 'mpQ3lnqA', '6628243'), - (18, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mpQ3lnqA', '6632757'), - (18, 2378, 'maybe', '2023-12-29 20:14:02', '2025-12-17 19:46:37', 'mpQ3lnqA', '6644006'), - (18, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mpQ3lnqA', '6644187'), - (18, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mpQ3lnqA', '6648951'), - (18, 2387, 'attending', '2024-01-04 03:43:39', '2025-12-17 19:46:37', 'mpQ3lnqA', '6648952'), - (18, 2388, 'not_attending', '2024-01-03 02:11:35', '2025-12-17 19:46:37', 'mpQ3lnqA', '6649244'), - (18, 2392, 'attending', '2024-01-08 21:22:16', '2025-12-17 19:46:37', 'mpQ3lnqA', '6654412'), - (18, 2393, 'not_attending', '2024-01-12 04:13:38', '2025-12-17 19:46:38', 'mpQ3lnqA', '6654468'), - (18, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mpQ3lnqA', '6655401'), - (18, 2399, 'not_attending', '2024-01-13 15:34:02', '2025-12-17 19:46:38', 'mpQ3lnqA', '6657583'), - (18, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mpQ3lnqA', '6661585'), - (18, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mpQ3lnqA', '6661588'), - (18, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mpQ3lnqA', '6661589'), - (18, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mpQ3lnqA', '6699906'), - (18, 2408, 'attending', '2024-01-26 11:46:01', '2025-12-17 19:46:40', 'mpQ3lnqA', '6699907'), - (18, 2409, 'attending', '2024-02-02 18:06:18', '2025-12-17 19:46:41', 'mpQ3lnqA', '6699909'), - (18, 2410, 'attending', '2024-02-06 20:52:17', '2025-12-17 19:46:41', 'mpQ3lnqA', '6699911'), - (18, 2411, 'not_attending', '2024-02-16 01:39:50', '2025-12-17 19:46:42', 'mpQ3lnqA', '6699913'), - (18, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mpQ3lnqA', '6701109'), - (18, 2417, 'attending', '2024-01-18 02:17:15', '2025-12-17 19:46:40', 'mpQ3lnqA', '6701905'), - (18, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'mpQ3lnqA', '6704561'), - (18, 2422, 'maybe', '2024-01-24 17:54:11', '2025-12-17 19:46:40', 'mpQ3lnqA', '6704650'), - (18, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mpQ3lnqA', '6705219'), - (18, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'mpQ3lnqA', '6708410'), - (18, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mpQ3lnqA', '6710153'), - (18, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mpQ3lnqA', '6711552'), - (18, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'mpQ3lnqA', '6711553'), - (18, 2435, 'maybe', '2024-01-27 17:25:27', '2025-12-17 19:46:41', 'mpQ3lnqA', '6721547'), - (18, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mpQ3lnqA', '6722688'), - (18, 2438, 'maybe', '2024-02-03 23:55:23', '2025-12-17 19:46:41', 'mpQ3lnqA', '6730201'), - (18, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mpQ3lnqA', '6730620'), - (18, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mpQ3lnqA', '6730642'), - (18, 2441, 'not_attending', '2024-02-01 02:16:05', '2025-12-17 19:46:41', 'mpQ3lnqA', '6731263'), - (18, 2453, 'attending', '2024-02-08 02:25:59', '2025-12-17 19:46:42', 'mpQ3lnqA', '6740364'), - (18, 2454, 'maybe', '2024-02-08 02:25:50', '2025-12-17 19:46:42', 'mpQ3lnqA', '6740921'), - (18, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mpQ3lnqA', '6743829'), - (18, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mpQ3lnqA', '7030380'), - (18, 2469, 'maybe', '2024-02-16 23:15:26', '2025-12-17 19:46:42', 'mpQ3lnqA', '7030632'), - (18, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mpQ3lnqA', '7033677'), - (18, 2473, 'attending', '2024-02-20 21:28:02', '2025-12-17 19:46:43', 'mpQ3lnqA', '7033724'), - (18, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mpQ3lnqA', '7035415'), - (18, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mpQ3lnqA', '7044715'), - (18, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mpQ3lnqA', '7050318'), - (18, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mpQ3lnqA', '7050319'), - (18, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mpQ3lnqA', '7050322'), - (18, 2495, 'not_attending', '2024-03-02 22:26:20', '2025-12-17 19:46:32', 'mpQ3lnqA', '7052982'), - (18, 2498, 'attending', '2024-03-19 00:41:20', '2025-12-17 19:46:33', 'mpQ3lnqA', '7057662'), - (18, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mpQ3lnqA', '7057804'), - (18, 2500, 'attending', '2024-03-06 02:23:17', '2025-12-17 19:46:43', 'mpQ3lnqA', '7058603'), - (18, 2502, 'maybe', '2024-03-06 02:23:05', '2025-12-17 19:46:33', 'mpQ3lnqA', '7061202'), - (18, 2503, 'not_attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'mpQ3lnqA', '7062500'), - (18, 2504, 'maybe', '2024-03-22 17:22:54', '2025-12-17 19:46:33', 'mpQ3lnqA', '7063296'), - (18, 2505, 'maybe', '2024-03-19 23:18:05', '2025-12-17 19:46:33', 'mpQ3lnqA', '7069163'), - (18, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mpQ3lnqA', '7072824'), - (18, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mpQ3lnqA', '7074348'), - (18, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mpQ3lnqA', '7074364'), - (18, 2526, 'maybe', '2024-07-30 15:00:19', '2025-12-17 19:46:31', 'mpQ3lnqA', '7074366'), - (18, 2532, 'maybe', '2024-09-04 02:35:32', '2025-12-17 19:46:32', 'mpQ3lnqA', '7074383'), - (18, 2534, 'maybe', '2024-03-13 21:54:44', '2025-12-17 19:46:32', 'mpQ3lnqA', '7076875'), - (18, 2536, 'not_attending', '2024-03-15 00:39:32', '2025-12-17 19:46:33', 'mpQ3lnqA', '7077689'), - (18, 2537, 'attending', '2024-03-23 14:29:54', '2025-12-17 19:46:33', 'mpQ3lnqA', '7085484'), - (18, 2538, 'not_attending', '2024-03-19 00:41:42', '2025-12-17 19:46:33', 'mpQ3lnqA', '7085485'), - (18, 2539, 'not_attending', '2024-04-06 19:34:40', '2025-12-17 19:46:33', 'mpQ3lnqA', '7085486'), - (18, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mpQ3lnqA', '7089267'), - (18, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mpQ3lnqA', '7098747'), - (18, 2551, 'not_attending', '2024-03-30 21:59:26', '2025-12-17 19:46:33', 'mpQ3lnqA', '7109912'), - (18, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mpQ3lnqA', '7113468'), - (18, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mpQ3lnqA', '7114856'), - (18, 2555, 'maybe', '2024-03-31 10:53:42', '2025-12-17 19:46:34', 'mpQ3lnqA', '7114951'), - (18, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mpQ3lnqA', '7114955'), - (18, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mpQ3lnqA', '7114956'), - (18, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mpQ3lnqA', '7114957'), - (18, 2564, 'attending', '2024-04-06 19:34:56', '2025-12-17 19:46:33', 'mpQ3lnqA', '7134735'), - (18, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mpQ3lnqA', '7153615'), - (18, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mpQ3lnqA', '7159484'), - (18, 2582, 'maybe', '2024-04-15 18:40:20', '2025-12-17 19:46:34', 'mpQ3lnqA', '7169765'), - (18, 2583, 'maybe', '2024-04-15 18:40:01', '2025-12-17 19:46:34', 'mpQ3lnqA', '7172946'), - (18, 2585, 'attending', '2024-04-21 15:44:02', '2025-12-17 19:46:34', 'mpQ3lnqA', '7175828'), - (18, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mpQ3lnqA', '7178446'), - (18, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mpQ3lnqA', '7220467'), - (18, 2603, 'maybe', '2024-05-15 12:19:08', '2025-12-17 19:46:35', 'mpQ3lnqA', '7225669'), - (18, 2604, 'attending', '2024-05-27 23:30:59', '2025-12-17 19:46:36', 'mpQ3lnqA', '7225670'), - (18, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mpQ3lnqA', '7240354'), - (18, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mpQ3lnqA', '7251633'), - (18, 2630, 'not_attending', '2024-05-16 22:52:58', '2025-12-17 19:46:35', 'mpQ3lnqA', '7264801'), - (18, 2632, 'maybe', '2024-05-14 20:15:37', '2025-12-17 19:46:35', 'mpQ3lnqA', '7269123'), - (18, 2655, 'attending', '2024-05-27 13:57:01', '2025-12-17 19:46:35', 'mpQ3lnqA', '7291225'), - (18, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mpQ3lnqA', '7302674'), - (18, 2671, 'maybe', '2024-06-09 21:50:46', '2025-12-17 19:46:28', 'mpQ3lnqA', '7318256'), - (18, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mpQ3lnqA', '7324073'), - (18, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mpQ3lnqA', '7324074'), - (18, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mpQ3lnqA', '7324075'), - (18, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mpQ3lnqA', '7324078'), - (18, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mpQ3lnqA', '7324082'), - (18, 2699, 'attending', '2024-06-12 14:48:30', '2025-12-17 19:46:28', 'mpQ3lnqA', '7324385'), - (18, 2706, 'attending', '2024-06-18 20:49:14', '2025-12-17 19:46:28', 'mpQ3lnqA', '7324947'), - (18, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mpQ3lnqA', '7331457'), - (18, 2724, 'attending', '2024-06-26 21:30:50', '2025-12-17 19:46:29', 'mpQ3lnqA', '7332562'), - (18, 2737, 'attending', '2024-06-30 15:09:22', '2025-12-17 19:46:29', 'mpQ3lnqA', '7344070'), - (18, 2742, 'attending', '2024-07-03 15:28:33', '2025-12-17 19:46:29', 'mpQ3lnqA', '7345167'), - (18, 2746, 'attending', '2024-07-08 21:52:03', '2025-12-17 19:46:29', 'mpQ3lnqA', '7348713'), - (18, 2747, 'not_attending', '2024-07-15 14:00:23', '2025-12-17 19:46:30', 'mpQ3lnqA', '7353587'), - (18, 2751, 'attending', '2024-07-07 21:25:19', '2025-12-17 19:46:29', 'mpQ3lnqA', '7355530'), - (18, 2752, 'attending', '2024-07-07 21:27:57', '2025-12-17 19:46:29', 'mpQ3lnqA', '7355531'), - (18, 2763, 'attending', '2024-07-15 14:00:05', '2025-12-17 19:46:30', 'mpQ3lnqA', '7363594'), - (18, 2766, 'attending', '2024-07-30 15:00:06', '2025-12-17 19:46:30', 'mpQ3lnqA', '7363643'), - (18, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mpQ3lnqA', '7368606'), - (18, 2781, 'maybe', '2024-07-28 18:45:37', '2025-12-17 19:46:30', 'mpQ3lnqA', '7373194'), - (18, 2786, 'attending', '2024-08-07 01:16:40', '2025-12-17 19:46:31', 'mpQ3lnqA', '7381403'), - (18, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mpQ3lnqA', '7397462'), - (18, 2802, 'attending', '2024-08-27 23:43:41', '2025-12-17 19:46:32', 'mpQ3lnqA', '7397463'), - (18, 2806, 'maybe', '2024-09-16 12:55:52', '2025-12-17 19:46:25', 'mpQ3lnqA', '7404888'), - (18, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mpQ3lnqA', '7424275'), - (18, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mpQ3lnqA', '7424276'), - (18, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mpQ3lnqA', '7432751'), - (18, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mpQ3lnqA', '7432752'), - (18, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mpQ3lnqA', '7432753'), - (18, 2827, 'maybe', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432754'), - (18, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432755'), - (18, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432756'), - (18, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432758'), - (18, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432759'), - (18, 2832, 'attending', '2024-09-09 22:09:48', '2025-12-17 19:46:24', 'mpQ3lnqA', '7433324'), - (18, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mpQ3lnqA', '7433834'), - (18, 2839, 'maybe', '2024-09-16 12:56:02', '2025-12-17 19:46:25', 'mpQ3lnqA', '7439262'), - (18, 2841, 'maybe', '2024-09-16 12:55:28', '2025-12-17 19:46:25', 'mpQ3lnqA', '7444444'), - (18, 2842, 'maybe', '2024-09-19 11:37:16', '2025-12-17 19:46:25', 'mpQ3lnqA', '7446133'), - (18, 2850, 'maybe', '2024-09-25 12:13:51', '2025-12-17 19:46:25', 'mpQ3lnqA', '7457153'), - (18, 2856, 'maybe', '2024-10-07 14:05:14', '2025-12-17 19:46:26', 'mpQ3lnqA', '7469386'), - (18, 2858, 'not_attending', '2024-10-15 20:03:41', '2025-12-17 19:46:26', 'mpQ3lnqA', '7469388'), - (18, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mpQ3lnqA', '7470197'), - (18, 2878, 'maybe', '2024-10-15 20:04:00', '2025-12-17 19:46:26', 'mpQ3lnqA', '7633857'), - (18, 2882, 'maybe', '2024-10-18 01:00:54', '2025-12-17 19:46:26', 'mpQ3lnqA', '7644822'), - (18, 2883, 'maybe', '2024-10-18 13:32:59', '2025-12-17 19:46:26', 'mpQ3lnqA', '7649157'), - (18, 2892, 'maybe', '2024-10-28 23:37:10', '2025-12-17 19:46:26', 'mpQ3lnqA', '7672064'), - (18, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mpQ3lnqA', '7685613'), - (18, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mpQ3lnqA', '7688194'), - (18, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mpQ3lnqA', '7688196'), - (18, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mpQ3lnqA', '7688289'), - (18, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mpQ3lnqA', '7692763'), - (18, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mpQ3lnqA', '7697552'), - (18, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mpQ3lnqA', '7699878'), - (18, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mpQ3lnqA', '7704043'), - (18, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mpQ3lnqA', '7712467'), - (18, 2925, 'attending', '2024-12-13 18:15:42', '2025-12-17 19:46:21', 'mpQ3lnqA', '7713584'), - (18, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mpQ3lnqA', '7713585'), - (18, 2927, 'attending', '2024-12-09 03:08:39', '2025-12-17 19:46:22', 'mpQ3lnqA', '7713586'), - (18, 2928, 'maybe', '2024-12-02 15:15:57', '2025-12-17 19:46:28', 'mpQ3lnqA', '7718132'), - (18, 2930, 'maybe', '2024-12-09 03:08:10', '2025-12-17 19:46:21', 'mpQ3lnqA', '7724554'), - (18, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mpQ3lnqA', '7738518'), - (18, 2959, 'attending', '2024-12-21 18:28:21', '2025-12-17 19:46:22', 'mpQ3lnqA', '7747388'), - (18, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mpQ3lnqA', '7750636'), - (18, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mpQ3lnqA', '7796540'), - (18, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mpQ3lnqA', '7796541'), - (18, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mpQ3lnqA', '7796542'), - (18, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mpQ3lnqA', '7825913'), - (18, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mpQ3lnqA', '7826209'), - (18, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mpQ3lnqA', '7834742'), - (18, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mpQ3lnqA', '7842108'), - (18, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mpQ3lnqA', '7842902'), - (18, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mpQ3lnqA', '7842903'), - (18, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mpQ3lnqA', '7842904'), - (18, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mpQ3lnqA', '7842905'), - (18, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mpQ3lnqA', '7855719'), - (18, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mpQ3lnqA', '7860683'), - (18, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mpQ3lnqA', '7860684'), - (18, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mpQ3lnqA', '7866095'), - (18, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mpQ3lnqA', '7869170'), - (18, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mpQ3lnqA', '7869188'), - (18, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mpQ3lnqA', '7869201'), - (18, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mpQ3lnqA', '7877465'), - (18, 3053, 'maybe', '2025-03-23 20:46:51', '2025-12-17 19:46:19', 'mpQ3lnqA', '7884030'), - (18, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mpQ3lnqA', '7888250'), - (18, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mpQ3lnqA', '7904777'), - (18, 3096, 'maybe', '2025-04-24 16:29:02', '2025-12-17 19:46:20', 'mpQ3lnqA', '8342987'), - (18, 3097, 'attending', '2025-04-24 16:29:35', '2025-12-17 19:46:20', 'mpQ3lnqA', '8342993'), - (18, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mpQ3lnqA', '8349164'), - (18, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mpQ3lnqA', '8349545'), - (18, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mpQ3lnqA', '8353584'), - (18, 3125, 'maybe', '2025-05-13 15:44:18', '2025-12-17 19:46:21', 'mpQ3lnqA', '8364293'), - (18, 3126, 'attending', '2025-05-13 15:02:16', '2025-12-17 19:46:21', 'mpQ3lnqA', '8365614'), - (18, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mpQ3lnqA', '8368028'), - (18, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mpQ3lnqA', '8368029'), - (18, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mpQ3lnqA', '8388462'), - (18, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mpQ3lnqA', '8400273'), - (18, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mpQ3lnqA', '8400274'), - (18, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mpQ3lnqA', '8400275'), - (18, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mpQ3lnqA', '8400276'), - (18, 3161, 'maybe', '2025-06-06 00:30:58', '2025-12-17 19:46:15', 'mpQ3lnqA', '8401412'), - (18, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mpQ3lnqA', '8404977'), - (18, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mpQ3lnqA', '8430783'), - (18, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mpQ3lnqA', '8430784'), - (18, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mpQ3lnqA', '8430799'), - (18, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mpQ3lnqA', '8430800'), - (18, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mpQ3lnqA', '8430801'), - (18, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mpQ3lnqA', '8438709'), - (18, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mpQ3lnqA', '8457738'), - (18, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mpQ3lnqA', '8459566'), - (18, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mpQ3lnqA', '8459567'), - (18, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mpQ3lnqA', '8461032'), - (18, 3210, 'attending', '2025-08-25 22:42:05', '2025-12-17 19:46:18', 'mpQ3lnqA', '8471162'), - (18, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mpQ3lnqA', '8477877'), - (18, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mpQ3lnqA', '8485688'), - (18, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mpQ3lnqA', '8490587'), - (18, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mpQ3lnqA', '8493552'), - (18, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mpQ3lnqA', '8493553'), - (18, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mpQ3lnqA', '8493554'), - (18, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mpQ3lnqA', '8493555'), - (18, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mpQ3lnqA', '8493556'), - (18, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mpQ3lnqA', '8493557'), - (18, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mpQ3lnqA', '8493558'), - (18, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mpQ3lnqA', '8493559'), - (18, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mpQ3lnqA', '8493560'), - (18, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mpQ3lnqA', '8493561'), - (18, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mpQ3lnqA', '8493572'), - (18, 3255, 'attending', '2025-08-25 01:42:23', '2025-12-17 19:46:18', 'mpQ3lnqA', '8495106'), - (18, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mpQ3lnqA', '8540725'), - (18, 3289, 'maybe', '2025-10-16 16:55:49', '2025-12-17 19:46:14', 'mpQ3lnqA', '8542939'), - (18, 3293, 'maybe', '2025-10-16 16:55:38', '2025-12-17 19:46:14', 'mpQ3lnqA', '8543836'), - (18, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mpQ3lnqA', '8555421'), - (19, 10, 'attending', '2020-03-28 19:47:44', '2025-12-17 19:47:56', 'GAneZjYm', '2958053'), - (19, 11, 'attending', '2020-03-29 00:51:51', '2025-12-17 19:47:57', 'GAneZjYm', '2958055'), - (19, 13, 'maybe', '2020-04-06 20:25:33', '2025-12-17 19:47:57', 'GAneZjYm', '2958057'), - (19, 14, 'maybe', '2020-04-04 18:08:57', '2025-12-17 19:47:57', 'GAneZjYm', '2958058'), - (19, 28, 'attending', '2020-04-02 17:34:50', '2025-12-17 19:47:56', 'GAneZjYm', '2960421'), - (19, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'GAneZjYm', '2961309'), - (19, 30, 'maybe', '2020-04-04 18:08:12', '2025-12-17 19:47:57', 'GAneZjYm', '2961895'), - (19, 33, 'maybe', '2020-04-04 18:08:32', '2025-12-17 19:47:57', 'GAneZjYm', '2963932'), - (19, 35, 'attending', '2020-03-29 00:52:19', '2025-12-17 19:47:56', 'GAneZjYm', '2969206'), - (19, 36, 'attending', '2020-04-04 00:27:06', '2025-12-17 19:47:57', 'GAneZjYm', '2969208'), - (19, 37, 'not_attending', '2020-03-31 00:09:40', '2025-12-17 19:47:56', 'GAneZjYm', '2969680'), - (19, 38, 'attending', '2020-04-03 22:48:10', '2025-12-17 19:47:56', 'GAneZjYm', '2969751'), - (19, 41, 'maybe', '2020-04-16 14:38:25', '2025-12-17 19:47:57', 'GAneZjYm', '2971546'), - (19, 42, 'maybe', '2020-04-04 18:07:41', '2025-12-17 19:47:57', 'GAneZjYm', '2973471'), - (19, 44, 'maybe', '2020-04-05 22:36:14', '2025-12-17 19:47:57', 'GAneZjYm', '2974534'), - (19, 45, 'maybe', '2020-04-06 20:25:22', '2025-12-17 19:47:57', 'GAneZjYm', '2974760'), - (19, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'GAneZjYm', '2974955'), - (19, 55, 'maybe', '2020-04-06 20:25:04', '2025-12-17 19:47:57', 'GAneZjYm', '2975384'), - (19, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'GAneZjYm', '2975385'), - (19, 57, 'maybe', '2020-04-09 02:55:48', '2025-12-17 19:47:57', 'GAneZjYm', '2976575'), - (19, 58, 'attending', '2020-04-21 22:54:52', '2025-12-17 19:47:57', 'GAneZjYm', '2977127'), - (19, 59, 'attending', '2020-05-04 18:11:48', '2025-12-17 19:47:57', 'GAneZjYm', '2977128'), - (19, 60, 'attending', '2020-04-28 18:48:27', '2025-12-17 19:47:57', 'GAneZjYm', '2977129'), - (19, 61, 'attending', '2020-04-14 20:06:30', '2025-12-17 19:47:57', 'GAneZjYm', '2977130'), - (19, 62, 'attending', '2020-05-12 21:11:20', '2025-12-17 19:47:57', 'GAneZjYm', '2977131'), - (19, 68, 'not_attending', '2020-06-22 06:36:19', '2025-12-17 19:47:58', 'GAneZjYm', '2977137'), - (19, 70, 'not_attending', '2020-04-10 17:41:10', '2025-12-17 19:47:57', 'GAneZjYm', '2977343'), - (19, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'GAneZjYm', '2977812'), - (19, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'GAneZjYm', '2977931'), - (19, 74, 'attending', '2020-04-14 20:02:10', '2025-12-17 19:47:57', 'GAneZjYm', '2978244'), - (19, 75, 'attending', '2020-04-19 19:57:32', '2025-12-17 19:47:57', 'GAneZjYm', '2978245'), - (19, 76, 'attending', '2020-05-01 03:22:48', '2025-12-17 19:47:57', 'GAneZjYm', '2978246'), - (19, 77, 'attending', '2020-05-06 19:53:56', '2025-12-17 19:47:57', 'GAneZjYm', '2978247'), - (19, 78, 'attending', '2020-05-15 14:22:26', '2025-12-17 19:47:57', 'GAneZjYm', '2978249'), - (19, 79, 'attending', '2020-05-28 14:33:58', '2025-12-17 19:47:57', 'GAneZjYm', '2978250'), - (19, 80, 'attending', '2020-06-06 22:35:56', '2025-12-17 19:47:58', 'GAneZjYm', '2978251'), - (19, 81, 'attending', '2020-06-13 03:18:40', '2025-12-17 19:47:58', 'GAneZjYm', '2978252'), - (19, 82, 'maybe', '2020-04-24 18:33:37', '2025-12-17 19:47:57', 'GAneZjYm', '2978433'), - (19, 83, 'attending', '2020-05-08 22:49:22', '2025-12-17 19:47:57', 'GAneZjYm', '2978438'), - (19, 84, 'maybe', '2020-04-20 16:24:09', '2025-12-17 19:47:57', 'GAneZjYm', '2980871'), - (19, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'GAneZjYm', '2981388'), - (19, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'GAneZjYm', '2986743'), - (19, 96, 'maybe', '2020-05-03 21:22:06', '2025-12-17 19:47:57', 'GAneZjYm', '2987453'), - (19, 100, 'attending', '2020-04-20 23:51:24', '2025-12-17 19:47:57', 'GAneZjYm', '2989142'), - (19, 101, 'attending', '2020-04-23 15:28:22', '2025-12-17 19:47:57', 'GAneZjYm', '2989975'), - (19, 104, 'not_attending', '2020-04-24 14:20:07', '2025-12-17 19:47:57', 'GAneZjYm', '2991471'), - (19, 106, 'maybe', '2020-05-01 03:22:46', '2025-12-17 19:47:57', 'GAneZjYm', '2993501'), - (19, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'GAneZjYm', '2994480'), - (19, 115, 'attending', '2020-05-14 16:37:23', '2025-12-17 19:47:57', 'GAneZjYm', '3001217'), - (19, 121, 'not_attending', '2020-05-26 14:12:27', '2025-12-17 19:47:57', 'GAneZjYm', '3023063'), - (19, 123, 'not_attending', '2020-05-25 22:01:07', '2025-12-17 19:47:57', 'GAneZjYm', '3023729'), - (19, 133, 'attending', '2020-06-24 22:47:42', '2025-12-17 19:47:58', 'GAneZjYm', '3034321'), - (19, 135, 'not_attending', '2020-05-26 14:12:24', '2025-12-17 19:47:57', 'GAneZjYm', '3034368'), - (19, 136, 'not_attending', '2020-05-25 00:06:09', '2025-12-17 19:47:57', 'GAneZjYm', '3035881'), - (19, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'GAneZjYm', '3049983'), - (19, 156, 'attending', '2020-09-11 18:57:48', '2025-12-17 19:47:56', 'GAneZjYm', '3058693'), - (19, 157, 'attending', '2020-09-18 16:23:10', '2025-12-17 19:47:56', 'GAneZjYm', '3058694'), - (19, 158, 'not_attending', '2020-09-26 02:18:37', '2025-12-17 19:47:52', 'GAneZjYm', '3058695'), - (19, 159, 'not_attending', '2020-10-03 16:50:43', '2025-12-17 19:47:52', 'GAneZjYm', '3058696'), - (19, 160, 'not_attending', '2020-10-22 04:06:20', '2025-12-17 19:47:52', 'GAneZjYm', '3058697'), - (19, 161, 'not_attending', '2020-10-09 20:36:27', '2025-12-17 19:47:52', 'GAneZjYm', '3058698'), - (19, 162, 'attending', '2020-10-13 03:40:39', '2025-12-17 19:47:52', 'GAneZjYm', '3058699'), - (19, 164, 'attending', '2020-11-12 00:24:15', '2025-12-17 19:47:54', 'GAneZjYm', '3058701'), - (19, 165, 'maybe', '2020-11-02 07:05:25', '2025-12-17 19:47:53', 'GAneZjYm', '3058702'), - (19, 166, 'attending', '2020-11-18 10:23:22', '2025-12-17 19:47:54', 'GAneZjYm', '3058704'), - (19, 167, 'attending', '2020-11-24 04:06:49', '2025-12-17 19:47:54', 'GAneZjYm', '3058705'), - (19, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'GAneZjYm', '3058959'), - (19, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'GAneZjYm', '3067093'), - (19, 176, 'not_attending', '2020-06-22 06:36:10', '2025-12-17 19:47:58', 'GAneZjYm', '3073192'), - (19, 181, 'not_attending', '2020-06-20 22:12:34', '2025-12-17 19:47:58', 'GAneZjYm', '3074513'), - (19, 182, 'attending', '2020-06-22 06:36:52', '2025-12-17 19:47:55', 'GAneZjYm', '3074514'), - (19, 183, 'not_attending', '2020-06-22 06:36:02', '2025-12-17 19:47:58', 'GAneZjYm', '3075228'), - (19, 184, 'not_attending', '2020-06-22 06:35:56', '2025-12-17 19:47:58', 'GAneZjYm', '3075262'), - (19, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'GAneZjYm', '3075456'), - (19, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'GAneZjYm', '3083791'), - (19, 187, 'not_attending', '2020-06-27 20:07:37', '2025-12-17 19:47:55', 'GAneZjYm', '3085151'), - (19, 191, 'attending', '2020-07-09 02:50:33', '2025-12-17 19:47:55', 'GAneZjYm', '3087259'), - (19, 192, 'attending', '2020-07-18 01:18:15', '2025-12-17 19:47:55', 'GAneZjYm', '3087260'), - (19, 193, 'not_attending', '2020-07-24 19:37:30', '2025-12-17 19:47:55', 'GAneZjYm', '3087261'), - (19, 194, 'attending', '2020-07-31 17:47:25', '2025-12-17 19:47:56', 'GAneZjYm', '3087262'), - (19, 195, 'attending', '2020-08-07 18:49:27', '2025-12-17 19:47:56', 'GAneZjYm', '3087264'), - (19, 196, 'attending', '2020-08-15 01:29:31', '2025-12-17 19:47:56', 'GAneZjYm', '3087265'), - (19, 197, 'attending', '2020-08-15 01:29:33', '2025-12-17 19:47:56', 'GAneZjYm', '3087266'), - (19, 198, 'not_attending', '2020-08-29 04:06:22', '2025-12-17 19:47:56', 'GAneZjYm', '3087267'), - (19, 199, 'attending', '2020-09-03 19:48:48', '2025-12-17 19:47:56', 'GAneZjYm', '3087268'), - (19, 200, 'attending', '2020-09-06 16:44:07', '2025-12-17 19:47:56', 'GAneZjYm', '3087269'), - (19, 201, 'maybe', '2020-06-22 06:36:33', '2025-12-17 19:47:55', 'GAneZjYm', '3088653'), - (19, 203, 'not_attending', '2020-06-22 06:35:43', '2025-12-17 19:47:58', 'GAneZjYm', '3091624'), - (19, 205, 'attending', '2020-07-09 21:22:01', '2025-12-17 19:47:55', 'GAneZjYm', '3104804'), - (19, 206, 'maybe', '2020-07-15 15:23:10', '2025-12-17 19:47:55', 'GAneZjYm', '3104806'), - (19, 208, 'not_attending', '2020-08-07 02:53:44', '2025-12-17 19:47:56', 'GAneZjYm', '3104808'), - (19, 209, 'not_attending', '2020-06-29 04:08:14', '2025-12-17 19:47:55', 'GAneZjYm', '3106813'), - (19, 214, 'not_attending', '2020-07-08 16:42:37', '2025-12-17 19:47:55', 'GAneZjYm', '3124139'), - (19, 223, 'attending', '2020-09-12 22:01:45', '2025-12-17 19:47:56', 'GAneZjYm', '3129980'), - (19, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'GAneZjYm', '3132817'), - (19, 227, 'maybe', '2020-07-16 16:19:40', '2025-12-17 19:47:55', 'GAneZjYm', '3132820'), - (19, 237, 'maybe', '2020-07-28 21:39:45', '2025-12-17 19:47:55', 'GAneZjYm', '3142085'), - (19, 268, 'maybe', '2020-07-30 07:49:00', '2025-12-17 19:47:55', 'GAneZjYm', '3153060'), - (19, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'GAneZjYm', '3155321'), - (19, 273, 'not_attending', '2020-08-07 02:53:25', '2025-12-17 19:47:56', 'GAneZjYm', '3162006'), - (19, 277, 'not_attending', '2020-08-07 02:53:34', '2025-12-17 19:47:56', 'GAneZjYm', '3163442'), - (19, 281, 'attending', '2020-08-07 18:50:16', '2025-12-17 19:47:56', 'GAneZjYm', '3166945'), - (19, 293, 'not_attending', '2020-08-16 03:34:38', '2025-12-17 19:47:56', 'GAneZjYm', '3172832'), - (19, 294, 'attending', '2020-08-27 00:46:10', '2025-12-17 19:47:56', 'GAneZjYm', '3172833'), - (19, 295, 'not_attending', '2020-08-16 03:34:48', '2025-12-17 19:47:56', 'GAneZjYm', '3172834'), - (19, 296, 'attending', '2020-09-11 22:42:53', '2025-12-17 19:47:56', 'GAneZjYm', '3172876'), - (19, 298, 'attending', '2020-08-28 20:15:03', '2025-12-17 19:47:56', 'GAneZjYm', '3174556'), - (19, 304, 'attending', '2020-09-07 19:35:10', '2025-12-17 19:47:56', 'GAneZjYm', '3178916'), - (19, 308, 'not_attending', '2020-09-03 21:51:27', '2025-12-17 19:47:56', 'GAneZjYm', '3183341'), - (19, 310, 'attending', '2020-08-23 17:58:06', '2025-12-17 19:47:56', 'GAneZjYm', '3186005'), - (19, 311, 'maybe', '2020-09-10 21:49:41', '2025-12-17 19:47:56', 'GAneZjYm', '3186057'), - (19, 317, 'maybe', '2020-08-27 00:45:52', '2025-12-17 19:47:56', 'GAneZjYm', '3191735'), - (19, 319, 'attending', '2020-08-31 23:13:15', '2025-12-17 19:47:56', 'GAneZjYm', '3194179'), - (19, 335, 'attending', '2020-09-03 19:55:50', '2025-12-17 19:47:56', 'GAneZjYm', '3200209'), - (19, 339, 'not_attending', '2020-09-10 00:44:33', '2025-12-17 19:47:56', 'GAneZjYm', '3204469'), - (19, 340, 'not_attending', '2020-09-18 16:22:56', '2025-12-17 19:47:56', 'GAneZjYm', '3204470'), - (19, 341, 'maybe', '2020-09-21 16:41:38', '2025-12-17 19:47:52', 'GAneZjYm', '3204471'), - (19, 342, 'maybe', '2020-09-29 20:46:39', '2025-12-17 19:47:52', 'GAneZjYm', '3204472'), - (19, 346, 'not_attending', '2020-09-15 21:48:25', '2025-12-17 19:47:56', 'GAneZjYm', '3207515'), - (19, 348, 'maybe', '2020-09-21 16:42:18', '2025-12-17 19:47:52', 'GAneZjYm', '3209159'), - (19, 351, 'not_attending', '2020-09-11 22:43:02', '2025-12-17 19:47:56', 'GAneZjYm', '3209257'), - (19, 355, 'maybe', '2020-09-16 22:37:27', '2025-12-17 19:47:56', 'GAneZjYm', '3212571'), - (19, 356, 'maybe', '2020-09-16 17:49:52', '2025-12-17 19:47:51', 'GAneZjYm', '3212572'), - (19, 361, 'maybe', '2020-09-14 18:49:58', '2025-12-17 19:47:56', 'GAneZjYm', '3213323'), - (19, 362, 'maybe', '2020-09-26 02:18:18', '2025-12-17 19:47:52', 'GAneZjYm', '3214207'), - (19, 363, 'maybe', '2020-09-21 16:41:56', '2025-12-17 19:47:52', 'GAneZjYm', '3217037'), - (19, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'GAneZjYm', '3218510'), - (19, 366, 'attending', '2020-09-21 16:41:05', '2025-12-17 19:47:56', 'GAneZjYm', '3219750'), - (19, 367, 'attending', '2020-09-21 16:41:20', '2025-12-17 19:47:51', 'GAneZjYm', '3219751'), - (19, 375, 'maybe', '2020-10-08 23:09:27', '2025-12-17 19:47:52', 'GAneZjYm', '3222825'), - (19, 385, 'not_attending', '2020-10-03 16:50:50', '2025-12-17 19:47:52', 'GAneZjYm', '3228698'), - (19, 386, 'not_attending', '2020-10-09 20:36:32', '2025-12-17 19:47:52', 'GAneZjYm', '3228699'), - (19, 387, 'attending', '2020-10-13 03:40:42', '2025-12-17 19:47:52', 'GAneZjYm', '3228700'), - (19, 388, 'maybe', '2020-10-22 04:06:26', '2025-12-17 19:47:52', 'GAneZjYm', '3228701'), - (19, 406, 'attending', '2021-04-01 20:39:00', '2025-12-17 19:47:44', 'GAneZjYm', '3236464'), - (19, 416, 'maybe', '2020-10-08 23:09:43', '2025-12-17 19:47:52', 'GAneZjYm', '3238073'), - (19, 420, 'not_attending', '2020-10-15 16:49:07', '2025-12-17 19:47:52', 'GAneZjYm', '3245293'), - (19, 421, 'maybe', '2020-10-22 04:06:11', '2025-12-17 19:47:52', 'GAneZjYm', '3245294'), - (19, 422, 'maybe', '2020-10-29 22:23:56', '2025-12-17 19:47:53', 'GAneZjYm', '3245295'), - (19, 423, 'attending', '2020-11-05 18:42:31', '2025-12-17 19:47:53', 'GAneZjYm', '3245296'), - (19, 424, 'maybe', '2020-10-12 04:27:20', '2025-12-17 19:47:52', 'GAneZjYm', '3245751'), - (19, 426, 'maybe', '2020-10-16 17:10:45', '2025-12-17 19:47:52', 'GAneZjYm', '3250232'), - (19, 429, 'attending', '2020-12-06 05:10:52', '2025-12-17 19:47:54', 'GAneZjYm', '3250523'), - (19, 431, 'maybe', '2020-10-24 15:03:39', '2025-12-17 19:47:53', 'GAneZjYm', '3253225'), - (19, 438, 'not_attending', '2020-10-24 15:03:59', '2025-12-17 19:47:53', 'GAneZjYm', '3256163'), - (19, 439, 'maybe', '2020-10-28 23:54:37', '2025-12-17 19:47:53', 'GAneZjYm', '3256164'), - (19, 440, 'maybe', '2020-10-22 04:06:49', '2025-12-17 19:47:53', 'GAneZjYm', '3256168'), - (19, 441, 'attending', '2020-11-12 00:24:17', '2025-12-17 19:47:54', 'GAneZjYm', '3256169'), - (19, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GAneZjYm', '3263578'), - (19, 445, 'not_attending', '2020-11-09 03:12:33', '2025-12-17 19:47:54', 'GAneZjYm', '3266138'), - (19, 446, 'not_attending', '2020-10-26 17:41:58', '2025-12-17 19:47:53', 'GAneZjYm', '3267163'), - (19, 452, 'maybe', '2020-11-30 01:03:46', '2025-12-17 19:47:54', 'GAneZjYm', '3272981'), - (19, 456, 'not_attending', '2020-11-17 01:00:40', '2025-12-17 19:47:54', 'GAneZjYm', '3276428'), - (19, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'GAneZjYm', '3281467'), - (19, 461, 'not_attending', '2020-11-08 05:11:50', '2025-12-17 19:47:53', 'GAneZjYm', '3281469'), - (19, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GAneZjYm', '3281470'), - (19, 464, 'not_attending', '2020-11-24 11:23:40', '2025-12-17 19:47:54', 'GAneZjYm', '3281554'), - (19, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GAneZjYm', '3281829'), - (19, 468, 'attending', '2020-11-18 10:23:19', '2025-12-17 19:47:54', 'GAneZjYm', '3285413'), - (19, 469, 'attending', '2020-11-24 04:06:51', '2025-12-17 19:47:54', 'GAneZjYm', '3285414'), - (19, 474, 'not_attending', '2020-11-12 00:24:06', '2025-12-17 19:47:54', 'GAneZjYm', '3286570'), - (19, 479, 'not_attending', '2020-11-19 01:18:18', '2025-12-17 19:47:54', 'GAneZjYm', '3295306'), - (19, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GAneZjYm', '3297764'), - (19, 487, 'maybe', '2020-11-29 20:48:18', '2025-12-17 19:47:54', 'GAneZjYm', '3311122'), - (19, 493, 'attending', '2020-11-29 20:48:22', '2025-12-17 19:47:54', 'GAneZjYm', '3313856'), - (19, 494, 'not_attending', '2020-11-29 20:48:04', '2025-12-17 19:47:54', 'GAneZjYm', '3313866'), - (19, 496, 'not_attending', '2020-12-10 18:06:01', '2025-12-17 19:47:54', 'GAneZjYm', '3314269'), - (19, 497, 'not_attending', '2020-12-09 20:28:20', '2025-12-17 19:47:55', 'GAneZjYm', '3314270'), - (19, 499, 'not_attending', '2020-12-09 20:28:07', '2025-12-17 19:47:55', 'GAneZjYm', '3314909'), - (19, 500, 'attending', '2020-12-18 21:48:40', '2025-12-17 19:47:55', 'GAneZjYm', '3314964'), - (19, 502, 'attending', '2020-12-08 23:19:16', '2025-12-17 19:47:55', 'GAneZjYm', '3323365'), - (19, 506, 'maybe', '2020-12-12 20:06:14', '2025-12-17 19:47:55', 'GAneZjYm', '3323375'), - (19, 513, 'attending', '2020-12-19 23:27:24', '2025-12-17 19:47:55', 'GAneZjYm', '3329383'), - (19, 516, 'maybe', '2020-12-20 23:05:43', '2025-12-17 19:47:48', 'GAneZjYm', '3334530'), - (19, 517, 'attending', '2021-01-08 00:36:27', '2025-12-17 19:47:48', 'GAneZjYm', '3337137'), - (19, 526, 'attending', '2020-12-31 00:38:26', '2025-12-17 19:47:48', 'GAneZjYm', '3351539'), - (19, 528, 'attending', '2021-01-03 03:33:34', '2025-12-17 19:47:48', 'GAneZjYm', '3363022'), - (19, 532, 'not_attending', '2021-01-08 23:26:05', '2025-12-17 19:47:48', 'GAneZjYm', '3381412'), - (19, 536, 'attending', '2021-01-08 23:30:54', '2025-12-17 19:47:48', 'GAneZjYm', '3386848'), - (19, 538, 'maybe', '2021-01-15 00:44:15', '2025-12-17 19:47:48', 'GAneZjYm', '3388151'), - (19, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GAneZjYm', '3389527'), - (19, 542, 'not_attending', '2021-01-11 03:30:52', '2025-12-17 19:47:48', 'GAneZjYm', '3395013'), - (19, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GAneZjYm', '3396499'), - (19, 548, 'attending', '2021-01-13 02:46:59', '2025-12-17 19:47:48', 'GAneZjYm', '3403650'), - (19, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GAneZjYm', '3406988'), - (19, 555, 'attending', '2021-01-22 23:38:35', '2025-12-17 19:47:49', 'GAneZjYm', '3416576'), - (19, 557, 'attending', '2021-01-21 00:58:09', '2025-12-17 19:47:49', 'GAneZjYm', '3418748'), - (19, 558, 'not_attending', '2021-01-19 05:21:41', '2025-12-17 19:47:49', 'GAneZjYm', '3418925'), - (19, 559, 'not_attending', '2021-01-28 08:04:14', '2025-12-17 19:47:49', 'GAneZjYm', '3421439'), - (19, 568, 'attending', '2021-01-29 04:59:00', '2025-12-17 19:47:50', 'GAneZjYm', '3430267'), - (19, 571, 'not_attending', '2021-02-13 02:05:10', '2025-12-17 19:47:50', 'GAneZjYm', '3435539'), - (19, 578, 'attending', '2021-02-03 20:40:21', '2025-12-17 19:47:50', 'GAneZjYm', '3440043'), - (19, 579, 'attending', '2021-01-30 23:33:10', '2025-12-17 19:47:50', 'GAneZjYm', '3440978'), - (19, 583, 'not_attending', '2021-02-01 13:33:09', '2025-12-17 19:47:50', 'GAneZjYm', '3449144'), - (19, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'GAneZjYm', '3468125'), - (19, 602, 'not_attending', '2021-02-10 06:06:31', '2025-12-17 19:47:50', 'GAneZjYm', '3470303'), - (19, 603, 'attending', '2021-02-20 17:57:03', '2025-12-17 19:47:50', 'GAneZjYm', '3470304'), - (19, 604, 'attending', '2021-02-23 05:20:18', '2025-12-17 19:47:50', 'GAneZjYm', '3470305'), - (19, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GAneZjYm', '3470991'), - (19, 621, 'maybe', '2021-03-06 08:08:30', '2025-12-17 19:47:51', 'GAneZjYm', '3517815'), - (19, 622, 'attending', '2021-03-09 08:42:00', '2025-12-17 19:47:51', 'GAneZjYm', '3517816'), - (19, 623, 'not_attending', '2021-02-27 18:51:13', '2025-12-17 19:47:51', 'GAneZjYm', '3523941'), - (19, 624, 'attending', '2021-02-27 11:56:57', '2025-12-17 19:47:50', 'GAneZjYm', '3528556'), - (19, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GAneZjYm', '3533850'), - (19, 635, 'attending', '2021-04-04 02:58:54', '2025-12-17 19:47:44', 'GAneZjYm', '3534719'), - (19, 637, 'maybe', '2021-03-18 22:36:47', '2025-12-17 19:47:51', 'GAneZjYm', '3536411'), - (19, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GAneZjYm', '3536632'), - (19, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GAneZjYm', '3536656'), - (19, 641, 'attending', '2021-04-01 22:56:54', '2025-12-17 19:47:44', 'GAneZjYm', '3539916'), - (19, 642, 'attending', '2021-04-10 16:35:08', '2025-12-17 19:47:44', 'GAneZjYm', '3539917'), - (19, 643, 'attending', '2021-04-13 08:13:06', '2025-12-17 19:47:45', 'GAneZjYm', '3539918'), - (19, 644, 'attending', '2021-04-14 07:39:40', '2025-12-17 19:47:45', 'GAneZjYm', '3539919'), - (19, 645, 'attending', '2021-05-08 21:58:23', '2025-12-17 19:47:46', 'GAneZjYm', '3539920'), - (19, 646, 'attending', '2021-05-15 12:00:42', '2025-12-17 19:47:46', 'GAneZjYm', '3539921'), - (19, 647, 'not_attending', '2021-05-22 20:56:02', '2025-12-17 19:47:46', 'GAneZjYm', '3539922'), - (19, 648, 'attending', '2021-05-29 19:20:58', '2025-12-17 19:47:47', 'GAneZjYm', '3539923'), - (19, 649, 'attending', '2021-03-18 22:36:35', '2025-12-17 19:47:51', 'GAneZjYm', '3539927'), - (19, 650, 'attending', '2021-03-27 20:44:20', '2025-12-17 19:47:44', 'GAneZjYm', '3539928'), - (19, 651, 'attending', '2021-03-09 18:40:32', '2025-12-17 19:47:51', 'GAneZjYm', '3541045'), - (19, 653, 'attending', '2021-03-06 23:53:56', '2025-12-17 19:47:51', 'GAneZjYm', '3546917'), - (19, 655, 'attending', '2021-03-12 06:24:54', '2025-12-17 19:47:51', 'GAneZjYm', '3547129'), - (19, 656, 'attending', '2021-03-18 22:36:37', '2025-12-17 19:47:51', 'GAneZjYm', '3547130'), - (19, 659, 'attending', '2021-04-06 13:06:27', '2025-12-17 19:47:44', 'GAneZjYm', '3547135'), - (19, 660, 'attending', '2021-07-08 02:08:25', '2025-12-17 19:47:39', 'GAneZjYm', '3547136'), - (19, 661, 'attending', '2021-04-01 22:56:59', '2025-12-17 19:47:44', 'GAneZjYm', '3547137'), - (19, 662, 'attending', '2021-04-14 07:39:44', '2025-12-17 19:47:45', 'GAneZjYm', '3547138'), - (19, 671, 'not_attending', '2021-07-17 16:07:43', '2025-12-17 19:47:39', 'GAneZjYm', '3547149'), - (19, 672, 'not_attending', '2021-05-22 20:56:07', '2025-12-17 19:47:46', 'GAneZjYm', '3547150'), - (19, 674, 'attending', '2021-08-06 06:17:16', '2025-12-17 19:47:41', 'GAneZjYm', '3547152'), - (19, 676, 'attending', '2021-07-24 01:52:19', '2025-12-17 19:47:40', 'GAneZjYm', '3547154'), - (19, 679, 'attending', '2021-03-09 09:03:04', '2025-12-17 19:47:44', 'GAneZjYm', '3547168'), - (19, 705, 'attending', '2021-03-26 03:35:29', '2025-12-17 19:47:44', 'GAneZjYm', '3581895'), - (19, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GAneZjYm', '3582734'), - (19, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GAneZjYm', '3583262'), - (19, 711, 'maybe', '2021-04-01 20:39:12', '2025-12-17 19:47:44', 'GAneZjYm', '3588075'), - (19, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GAneZjYm', '3619523'), - (19, 719, 'not_attending', '2021-04-08 04:15:21', '2025-12-17 19:47:44', 'GAneZjYm', '3635405'), - (19, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GAneZjYm', '3661369'), - (19, 731, 'not_attending', '2021-04-06 05:12:20', '2025-12-17 19:47:44', 'GAneZjYm', '3674262'), - (19, 733, 'not_attending', '2021-04-04 20:57:12', '2025-12-17 19:47:44', 'GAneZjYm', '3675473'), - (19, 735, 'maybe', '2021-04-05 03:04:49', '2025-12-17 19:47:46', 'GAneZjYm', '3677402'), - (19, 736, 'attending', '2021-04-05 04:02:42', '2025-12-17 19:47:44', 'GAneZjYm', '3677701'), - (19, 737, 'attending', '2021-04-05 16:42:31', '2025-12-17 19:47:44', 'GAneZjYm', '3679349'), - (19, 761, 'attending', '2021-05-14 22:40:57', '2025-12-17 19:47:46', 'GAneZjYm', '3716041'), - (19, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GAneZjYm', '3730212'), - (19, 777, 'attending', '2021-04-28 12:54:24', '2025-12-17 19:47:46', 'GAneZjYm', '3746248'), - (19, 783, 'not_attending', '2021-05-01 01:14:18', '2025-12-17 19:47:46', 'GAneZjYm', '3767471'), - (19, 785, 'attending', '2021-05-15 19:17:13', '2025-12-17 19:47:46', 'GAneZjYm', '3779779'), - (19, 786, 'not_attending', '2021-05-11 03:55:24', '2025-12-17 19:47:46', 'GAneZjYm', '3780093'), - (19, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GAneZjYm', '3793156'), - (19, 794, 'attending', '2021-05-26 23:16:49', '2025-12-17 19:47:47', 'GAneZjYm', '3793538'), - (19, 812, 'attending', '2021-05-18 01:54:00', '2025-12-17 19:47:46', 'GAneZjYm', '3808031'), - (19, 822, 'attending', '2021-06-06 09:00:05', '2025-12-17 19:47:47', 'GAneZjYm', '3969986'), - (19, 823, 'attending', '2021-06-19 20:38:25', '2025-12-17 19:47:48', 'GAneZjYm', '3974109'), - (19, 827, 'attending', '2021-06-02 04:28:41', '2025-12-17 19:47:47', 'GAneZjYm', '3975311'), - (19, 828, 'not_attending', '2021-06-12 21:48:15', '2025-12-17 19:47:47', 'GAneZjYm', '3975312'), - (19, 835, 'attending', '2021-06-06 09:02:38', '2025-12-17 19:47:47', 'GAneZjYm', '3992486'), - (19, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GAneZjYm', '3994992'), - (19, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GAneZjYm', '4014338'), - (19, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GAneZjYm', '4021848'), - (19, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GAneZjYm', '4136744'), - (19, 870, 'attending', '2021-07-03 21:20:18', '2025-12-17 19:47:39', 'GAneZjYm', '4136937'), - (19, 871, 'attending', '2021-07-07 21:07:39', '2025-12-17 19:47:39', 'GAneZjYm', '4136938'), - (19, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GAneZjYm', '4136947'), - (19, 884, 'attending', '2021-07-17 06:41:37', '2025-12-17 19:47:42', 'GAneZjYm', '4210314'), - (19, 885, 'maybe', '2021-06-27 22:30:28', '2025-12-17 19:47:38', 'GAneZjYm', '4222370'), - (19, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GAneZjYm', '4225444'), - (19, 897, 'attending', '2021-06-28 22:35:16', '2025-12-17 19:47:38', 'GAneZjYm', '4232132'), - (19, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GAneZjYm', '4239259'), - (19, 900, 'attending', '2021-07-21 05:31:09', '2025-12-17 19:47:40', 'GAneZjYm', '4240316'), - (19, 901, 'attending', '2021-07-31 06:07:55', '2025-12-17 19:47:40', 'GAneZjYm', '4240317'), - (19, 902, 'attending', '2021-08-06 06:17:13', '2025-12-17 19:47:41', 'GAneZjYm', '4240318'), - (19, 903, 'attending', '2021-08-11 05:30:09', '2025-12-17 19:47:42', 'GAneZjYm', '4240320'), - (19, 905, 'attending', '2021-07-07 22:13:48', '2025-12-17 19:47:39', 'GAneZjYm', '4250163'), - (19, 906, 'attending', '2021-07-10 03:24:17', '2025-12-17 19:47:39', 'GAneZjYm', '4253431'), - (19, 916, 'not_attending', '2021-07-21 05:23:32', '2025-12-17 19:47:40', 'GAneZjYm', '4273772'), - (19, 919, 'not_attending', '2021-07-17 16:07:38', '2025-12-17 19:47:39', 'GAneZjYm', '4275957'), - (19, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GAneZjYm', '4277819'), - (19, 926, 'not_attending', '2021-08-18 20:37:16', '2025-12-17 19:47:42', 'GAneZjYm', '4297211'), - (19, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GAneZjYm', '4301723'), - (19, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GAneZjYm', '4302093'), - (19, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GAneZjYm', '4304151'), - (19, 937, 'attending', '2021-07-24 01:52:40', '2025-12-17 19:47:40', 'GAneZjYm', '4306596'), - (19, 961, 'attending', '2021-08-08 06:10:17', '2025-12-17 19:47:41', 'GAneZjYm', '4345519'), - (19, 971, 'maybe', '2021-09-08 05:42:32', '2025-12-17 19:47:43', 'GAneZjYm', '4356801'), - (19, 972, 'maybe', '2021-08-20 22:55:53', '2025-12-17 19:47:42', 'GAneZjYm', '4358025'), - (19, 973, 'attending', '2021-08-21 21:59:36', '2025-12-17 19:47:42', 'GAneZjYm', '4366186'), - (19, 974, 'attending', '2021-08-24 01:35:09', '2025-12-17 19:47:42', 'GAneZjYm', '4366187'), - (19, 979, 'attending', '2021-08-18 19:48:25', '2025-12-17 19:47:42', 'GAneZjYm', '4379085'), - (19, 990, 'attending', '2021-08-28 22:31:51', '2025-12-17 19:47:43', 'GAneZjYm', '4420735'), - (19, 991, 'attending', '2021-08-28 22:31:53', '2025-12-17 19:47:43', 'GAneZjYm', '4420738'), - (19, 992, 'not_attending', '2021-09-15 22:29:34', '2025-12-17 19:47:34', 'GAneZjYm', '4420739'), - (19, 993, 'attending', '2021-08-28 22:31:56', '2025-12-17 19:47:34', 'GAneZjYm', '4420741'), - (19, 994, 'attending', '2021-10-02 02:33:57', '2025-12-17 19:47:34', 'GAneZjYm', '4420742'), - (19, 995, 'attending', '2021-08-28 22:31:57', '2025-12-17 19:47:34', 'GAneZjYm', '4420744'), - (19, 996, 'attending', '2021-08-28 22:32:00', '2025-12-17 19:47:35', 'GAneZjYm', '4420747'), - (19, 997, 'attending', '2021-08-28 22:32:02', '2025-12-17 19:47:35', 'GAneZjYm', '4420748'), - (19, 998, 'attending', '2021-08-28 22:32:04', '2025-12-17 19:47:36', 'GAneZjYm', '4420749'), - (19, 999, 'not_attending', '2021-08-30 17:32:06', '2025-12-17 19:47:43', 'GAneZjYm', '4421150'), - (19, 1016, 'not_attending', '2021-09-08 20:26:42', '2025-12-17 19:47:43', 'GAneZjYm', '4441271'), - (19, 1018, 'not_attending', '2021-09-06 05:42:06', '2025-12-17 19:47:43', 'GAneZjYm', '4448883'), - (19, 1022, 'attending', '2021-09-15 02:37:56', '2025-12-17 19:47:43', 'GAneZjYm', '4458628'), - (19, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GAneZjYm', '4461883'), - (19, 1033, 'not_attending', '2021-09-18 03:09:33', '2025-12-17 19:47:43', 'GAneZjYm', '4486006'), - (19, 1036, 'attending', '2021-09-22 21:50:49', '2025-12-17 19:47:34', 'GAneZjYm', '4493166'), - (19, 1040, 'maybe', '2021-12-11 22:42:48', '2025-12-17 19:47:38', 'GAneZjYm', '4496605'), - (19, 1064, 'attending', '2021-09-21 20:02:43', '2025-12-17 19:47:34', 'GAneZjYm', '4499526'), - (19, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GAneZjYm', '4508342'), - (19, 1074, 'attending', '2021-09-29 23:19:19', '2025-12-17 19:47:34', 'GAneZjYm', '4528953'), - (19, 1077, 'attending', '2021-10-12 19:42:16', '2025-12-17 19:47:34', 'GAneZjYm', '4540903'), - (19, 1085, 'attending', '2021-12-23 21:31:13', '2025-12-17 19:47:31', 'GAneZjYm', '4568542'), - (19, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GAneZjYm', '4568602'), - (19, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GAneZjYm', '4572153'), - (19, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GAneZjYm', '4585962'), - (19, 1094, 'not_attending', '2021-10-30 19:11:17', '2025-12-17 19:47:36', 'GAneZjYm', '4587337'), - (19, 1099, 'attending', '2021-11-06 22:29:46', '2025-12-17 19:47:36', 'GAneZjYm', '4602797'), - (19, 1102, 'maybe', '2021-11-05 03:18:34', '2025-12-17 19:47:37', 'GAneZjYm', '4612098'), - (19, 1105, 'maybe', '2021-11-10 22:19:41', '2025-12-17 19:47:36', 'GAneZjYm', '4618567'), - (19, 1108, 'attending', '2021-11-18 00:27:51', '2025-12-17 19:47:37', 'GAneZjYm', '4632276'), - (19, 1126, 'maybe', '2021-12-11 21:41:05', '2025-12-17 19:47:38', 'GAneZjYm', '4645687'), - (19, 1127, 'attending', '2021-11-28 03:30:01', '2025-12-17 19:47:38', 'GAneZjYm', '4645698'), - (19, 1130, 'attending', '2021-12-04 22:16:29', '2025-12-17 19:47:37', 'GAneZjYm', '4658824'), - (19, 1132, 'attending', '2021-11-23 00:54:40', '2025-12-17 19:47:37', 'GAneZjYm', '4660657'), - (19, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GAneZjYm', '4668385'), - (19, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GAneZjYm', '4694407'), - (19, 1164, 'attending', '2021-12-29 20:35:55', '2025-12-17 19:47:31', 'GAneZjYm', '4724208'), - (19, 1165, 'attending', '2021-12-29 20:35:56', '2025-12-17 19:47:31', 'GAneZjYm', '4724210'), - (19, 1175, 'attending', '2022-01-22 18:42:57', '2025-12-17 19:47:32', 'GAneZjYm', '4736497'), - (19, 1176, 'attending', '2022-02-05 23:46:32', '2025-12-17 19:47:32', 'GAneZjYm', '4736498'), - (19, 1177, 'attending', '2022-02-11 05:07:07', '2025-12-17 19:47:32', 'GAneZjYm', '4736499'), - (19, 1181, 'attending', '2022-03-01 16:20:05', '2025-12-17 19:47:33', 'GAneZjYm', '4736503'), - (19, 1182, 'attending', '2022-03-08 22:59:22', '2025-12-17 19:47:33', 'GAneZjYm', '4736504'), - (19, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GAneZjYm', '4746789'), - (19, 1203, 'attending', '2022-01-22 23:25:18', '2025-12-17 19:47:32', 'GAneZjYm', '4773535'), - (19, 1204, 'attending', '2022-02-13 21:19:57', '2025-12-17 19:47:32', 'GAneZjYm', '4773576'), - (19, 1205, 'not_attending', '2022-03-13 19:12:18', '2025-12-17 19:47:33', 'GAneZjYm', '4773577'), - (19, 1209, 'attending', '2022-01-22 22:50:37', '2025-12-17 19:47:32', 'GAneZjYm', '4776926'), - (19, 1219, 'attending', '2022-02-02 09:04:00', '2025-12-17 19:47:32', 'GAneZjYm', '4788466'), - (19, 1232, 'attending', '2022-02-09 23:19:57', '2025-12-17 19:47:32', 'GAneZjYm', '5038850'), - (19, 1236, 'not_attending', '2022-02-16 23:00:34', '2025-12-17 19:47:32', 'GAneZjYm', '5045826'), - (19, 1249, 'not_attending', '2022-03-08 22:58:53', '2025-12-17 19:47:33', 'GAneZjYm', '5068530'), - (19, 1254, 'attending', '2022-03-05 21:39:59', '2025-12-17 19:47:33', 'GAneZjYm', '5129129'), - (19, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GAneZjYm', '5132533'), - (19, 1265, 'not_attending', '2022-03-08 22:59:15', '2025-12-17 19:47:33', 'GAneZjYm', '5160862'), - (19, 1266, 'attending', '2022-03-12 23:18:12', '2025-12-17 19:47:33', 'GAneZjYm', '5166407'), - (19, 1272, 'not_attending', '2022-03-18 01:37:59', '2025-12-17 19:47:25', 'GAneZjYm', '5186582'), - (19, 1281, 'not_attending', '2022-04-09 22:14:32', '2025-12-17 19:47:27', 'GAneZjYm', '5190437'), - (19, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GAneZjYm', '5195095'), - (19, 1293, 'not_attending', '2022-04-09 16:57:35', '2025-12-17 19:47:27', 'GAneZjYm', '5214641'), - (19, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GAneZjYm', '5215989'), - (19, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GAneZjYm', '5223686'), - (19, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'GAneZjYm', '5227432'), - (19, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GAneZjYm', '5247467'), - (19, 1362, 'attending', '2022-04-30 19:57:10', '2025-12-17 19:47:28', 'GAneZjYm', '5260800'), - (19, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GAneZjYm', '5269930'), - (19, 1378, 'attending', '2022-05-14 11:13:17', '2025-12-17 19:47:29', 'GAneZjYm', '5271448'), - (19, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'GAneZjYm', '5271449'), - (19, 1380, 'not_attending', '2022-05-24 19:44:30', '2025-12-17 19:47:30', 'GAneZjYm', '5271450'), - (19, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'GAneZjYm', '5276469'), - (19, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GAneZjYm', '5278159'), - (19, 1396, 'attending', '2022-05-14 11:13:14', '2025-12-17 19:47:28', 'GAneZjYm', '5281103'), - (19, 1407, 'not_attending', '2022-06-03 17:38:11', '2025-12-17 19:47:30', 'GAneZjYm', '5363695'), - (19, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GAneZjYm', '5365960'), - (19, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'GAneZjYm', '5368973'), - (19, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GAneZjYm', '5378247'), - (19, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GAneZjYm', '5389605'), - (19, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GAneZjYm', '5397265'), - (19, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'GAneZjYm', '5403967'), - (19, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GAneZjYm', '5404786'), - (19, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GAneZjYm', '5405203'), - (19, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'GAneZjYm', '5411699'), - (19, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GAneZjYm', '5412550'), - (19, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GAneZjYm', '5415046'), - (19, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GAneZjYm', '5422086'), - (19, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GAneZjYm', '5422406'), - (19, 1561, 'not_attending', '2022-08-12 22:48:05', '2025-12-17 19:47:22', 'GAneZjYm', '5461278'), - (19, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GAneZjYm', '5502188'), - (19, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GAneZjYm', '5505059'), - (19, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GAneZjYm', '5509055'), - (19, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GAneZjYm', '5512862'), - (19, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GAneZjYm', '5513985'), - (19, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GAneZjYm', '5519981'), - (19, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GAneZjYm', '5522550'), - (19, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GAneZjYm', '5534683'), - (19, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GAneZjYm', '5537735'), - (19, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GAneZjYm', '5540859'), - (19, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GAneZjYm', '5546619'), - (19, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GAneZjYm', '5555245'), - (19, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GAneZjYm', '5557747'), - (19, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GAneZjYm', '5560255'), - (19, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GAneZjYm', '5562906'), - (19, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GAneZjYm', '5600604'), - (19, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GAneZjYm', '5605544'), - (19, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GAneZjYm', '5630960'), - (19, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GAneZjYm', '5630961'), - (19, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GAneZjYm', '5630962'), - (19, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GAneZjYm', '5630966'), - (19, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GAneZjYm', '5630967'), - (19, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GAneZjYm', '5630968'), - (19, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GAneZjYm', '5635406'), - (19, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GAneZjYm', '5638765'), - (19, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GAneZjYm', '5640097'), - (19, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GAneZjYm', '5640843'), - (19, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GAneZjYm', '5641521'), - (19, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GAneZjYm', '5642818'), - (19, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GAneZjYm', '5652395'), - (19, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GAneZjYm', '5670445'), - (19, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GAneZjYm', '5671637'), - (19, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GAneZjYm', '5672329'), - (19, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GAneZjYm', '5674057'), - (19, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GAneZjYm', '5674060'), - (19, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GAneZjYm', '5677461'), - (19, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GAneZjYm', '5698046'), - (19, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GAneZjYm', '5699760'), - (19, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GAneZjYm', '5741601'), - (19, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GAneZjYm', '5763458'), - (19, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GAneZjYm', '5774172'), - (19, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GAneZjYm', '5818247'), - (19, 1834, 'attending', '2022-12-11 23:56:09', '2025-12-17 19:47:17', 'GAneZjYm', '5819470'), - (19, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GAneZjYm', '5819471'), - (19, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GAneZjYm', '5827739'), - (19, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GAneZjYm', '5844306'), - (19, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GAneZjYm', '5850159'), - (19, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GAneZjYm', '5858999'), - (19, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GAneZjYm', '5871984'), - (19, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GAneZjYm', '5876354'), - (19, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GAneZjYm', '5880939'), - (19, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GAneZjYm', '5880940'), - (19, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GAneZjYm', '5880942'), - (19, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GAneZjYm', '5880943'), - (19, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GAneZjYm', '5887890'), - (19, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GAneZjYm', '5888598'), - (19, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GAneZjYm', '5893260'), - (19, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GAneZjYm', '5899826'), - (19, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GAneZjYm', '5900199'), - (19, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GAneZjYm', '5900200'), - (19, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GAneZjYm', '5900202'), - (19, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GAneZjYm', '5900203'), - (19, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GAneZjYm', '5901108'), - (19, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GAneZjYm', '5901126'), - (19, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GAneZjYm', '5909655'), - (19, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GAneZjYm', '5910522'), - (19, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GAneZjYm', '5910526'), - (19, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GAneZjYm', '5910528'), - (19, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GAneZjYm', '5916219'), - (19, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GAneZjYm', '5936234'), - (19, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GAneZjYm', '5958351'), - (19, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GAneZjYm', '5959751'), - (19, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GAneZjYm', '5959755'), - (19, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GAneZjYm', '5960055'), - (19, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GAneZjYm', '5961684'), - (19, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GAneZjYm', '5962132'), - (19, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GAneZjYm', '5962133'), - (19, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GAneZjYm', '5962134'), - (19, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GAneZjYm', '5962317'), - (19, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GAneZjYm', '5962318'), - (19, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'GAneZjYm', '5965933'), - (19, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GAneZjYm', '5967014'), - (19, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GAneZjYm', '5972815'), - (19, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GAneZjYm', '5974016'), - (19, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GAneZjYm', '5981515'), - (19, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GAneZjYm', '5993516'), - (19, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GAneZjYm', '5998939'), - (19, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GAneZjYm', '6028191'), - (19, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GAneZjYm', '6040066'), - (19, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GAneZjYm', '6042717'), - (19, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GAneZjYm', '6044838'), - (19, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GAneZjYm', '6044839'), - (19, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GAneZjYm', '6045684'), - (19, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GAneZjYm', '6050104'), - (19, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GAneZjYm', '6053195'), - (19, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GAneZjYm', '6053198'), - (19, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GAneZjYm', '6056085'), - (19, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GAneZjYm', '6056916'), - (19, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GAneZjYm', '6059290'), - (19, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GAneZjYm', '6061037'), - (19, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GAneZjYm', '6061039'), - (19, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GAneZjYm', '6067245'), - (19, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GAneZjYm', '6068094'), - (19, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GAneZjYm', '6068252'), - (19, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GAneZjYm', '6068253'), - (19, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GAneZjYm', '6068254'), - (19, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GAneZjYm', '6068280'), - (19, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GAneZjYm', '6069093'), - (19, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GAneZjYm', '6072528'), - (19, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GAneZjYm', '6079840'), - (19, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GAneZjYm', '6083398'), - (19, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GAneZjYm', '6093504'), - (19, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GAneZjYm', '6097414'), - (19, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GAneZjYm', '6097442'), - (19, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GAneZjYm', '6097684'), - (19, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GAneZjYm', '6098762'), - (19, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GAneZjYm', '6101362'), - (19, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GAneZjYm', '6107314'), - (19, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GAneZjYm', '6361713'), - (19, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GAneZjYm', '6388604'), - (19, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GAneZjYm', '6394629'), - (19, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GAneZjYm', '6394631'), - (19, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GAneZjYm', '6440863'), - (19, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GAneZjYm', '6445440'), - (19, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GAneZjYm', '6453951'), - (19, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GAneZjYm', '6461696'), - (19, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GAneZjYm', '6462129'), - (19, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GAneZjYm', '6463218'), - (19, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GAneZjYm', '6472181'), - (19, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GAneZjYm', '6482693'), - (19, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GAneZjYm', '6484200'), - (19, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GAneZjYm', '6484680'), - (19, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GAneZjYm', '6507741'), - (19, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GAneZjYm', '6514659'), - (19, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GAneZjYm', '6514660'), - (19, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GAneZjYm', '6519103'), - (19, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GAneZjYm', '6535681'), - (19, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GAneZjYm', '6584747'), - (19, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GAneZjYm', '6587097'), - (19, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GAneZjYm', '6609022'), - (19, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'GAneZjYm', '6632757'), - (19, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GAneZjYm', '6644187'), - (19, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GAneZjYm', '6648951'), - (19, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GAneZjYm', '6648952'), - (19, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GAneZjYm', '6661585'), - (19, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GAneZjYm', '6661588'), - (19, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GAneZjYm', '6661589'), - (19, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GAneZjYm', '6699906'), - (19, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAneZjYm', '7074364'), - (19, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GAneZjYm', '7114957'), - (19, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GAneZjYm', '7178446'), - (19, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GAneZjYm', '7220467'), - (19, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GAneZjYm', '7240354'), - (19, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GAneZjYm', '7251633'), - (19, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GAneZjYm', '7324073'), - (19, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAneZjYm', '7324074'), - (19, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAneZjYm', '7324075'), - (19, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GAneZjYm', '7324078'), - (19, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GAneZjYm', '7324082'), - (19, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GAneZjYm', '7331457'), - (19, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GAneZjYm', '7363643'), - (19, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAneZjYm', '7368606'), - (19, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GAneZjYm', '7397462'), - (19, 2821, 'attending', '2024-10-12 14:16:39', '2025-12-17 19:46:26', 'GAneZjYm', '7424275'), - (19, 2822, 'attending', '2024-11-10 14:51:38', '2025-12-17 19:46:26', 'GAneZjYm', '7424276'), - (19, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAneZjYm', '7432751'), - (19, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAneZjYm', '7432752'), - (19, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAneZjYm', '7432753'), - (19, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAneZjYm', '7432754'), - (19, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAneZjYm', '7432755'), - (19, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAneZjYm', '7432756'), - (19, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAneZjYm', '7432758'), - (19, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAneZjYm', '7432759'), - (19, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAneZjYm', '7433834'), - (19, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'GAneZjYm', '7470197'), - (19, 2891, 'attending', '2024-10-25 20:18:48', '2025-12-17 19:46:26', 'GAneZjYm', '7668163'), - (19, 2894, 'attending', '2024-11-02 16:57:28', '2025-12-17 19:46:26', 'GAneZjYm', '7680059'), - (19, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GAneZjYm', '7685613'), - (19, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAneZjYm', '7688194'), - (19, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAneZjYm', '7688196'), - (19, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAneZjYm', '7688289'), - (19, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAneZjYm', '7692763'), - (19, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAneZjYm', '7697552'), - (19, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAneZjYm', '7699878'), - (19, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'GAneZjYm', '7704043'), - (19, 2924, 'attending', '2024-11-26 14:29:59', '2025-12-17 19:46:28', 'GAneZjYm', '7712467'), - (19, 2925, 'attending', '2024-12-15 00:27:54', '2025-12-17 19:46:21', 'GAneZjYm', '7713584'), - (19, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GAneZjYm', '7713585'), - (19, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAneZjYm', '7713586'), - (19, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAneZjYm', '7738518'), - (19, 2962, 'attending', '2024-12-26 23:41:32', '2025-12-17 19:46:22', 'GAneZjYm', '7750632'), - (19, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAneZjYm', '7750636'), - (19, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAneZjYm', '7796540'), - (19, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAneZjYm', '7796541'), - (19, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAneZjYm', '7796542'), - (19, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAneZjYm', '7825913'), - (19, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', 'GAneZjYm', '7825920'), - (19, 2981, 'attending', '2025-01-29 16:58:41', '2025-12-17 19:46:22', 'GAneZjYm', '7826124'), - (19, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAneZjYm', '7834742'), - (19, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'GAneZjYm', '7842108'), - (19, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAneZjYm', '7842902'), - (19, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAneZjYm', '7842903'), - (19, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAneZjYm', '7842904'), - (19, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAneZjYm', '7842905'), - (19, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAneZjYm', '7855719'), - (19, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAneZjYm', '7860683'), - (19, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAneZjYm', '7860684'), - (19, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAneZjYm', '7866095'), - (19, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GAneZjYm', '7869170'), - (19, 3015, 'not_attending', '2025-04-21 11:43:53', '2025-12-17 19:46:20', 'GAneZjYm', '7869186'), - (19, 3016, 'attending', '2025-04-19 22:05:58', '2025-12-17 19:46:20', 'GAneZjYm', '7869187'), - (19, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GAneZjYm', '7869188'), - (19, 3022, 'not_attending', '2025-04-23 13:38:50', '2025-12-17 19:46:20', 'GAneZjYm', '7869193'), - (19, 3023, 'attending', '2025-03-17 13:45:19', '2025-12-17 19:46:19', 'GAneZjYm', '7869194'), - (19, 3028, 'attending', '2025-04-23 13:38:57', '2025-12-17 19:46:20', 'GAneZjYm', '7869199'), - (19, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAneZjYm', '7869201'), - (19, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAneZjYm', '7877465'), - (19, 3047, 'not_attending', '2025-04-23 13:38:28', '2025-12-17 19:46:20', 'GAneZjYm', '7882693'), - (19, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAneZjYm', '7888250'), - (19, 3061, 'attending', '2025-03-27 15:18:01', '2025-12-17 19:46:19', 'GAneZjYm', '7892590'), - (19, 3080, 'attending', '2025-04-06 16:39:16', '2025-12-17 19:46:20', 'GAneZjYm', '7901441'), - (19, 3088, 'attending', '2025-06-08 18:09:46', '2025-12-17 19:46:15', 'GAneZjYm', '7904777'), - (19, 3094, 'attending', '2025-05-06 21:37:07', '2025-12-17 19:46:21', 'GAneZjYm', '8342292'), - (19, 3095, 'attending', '2025-04-27 17:24:02', '2025-12-17 19:46:20', 'GAneZjYm', '8342293'), - (19, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAneZjYm', '8349164'), - (19, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAneZjYm', '8349545'), - (19, 3108, 'attending', '2025-05-03 15:59:54', '2025-12-17 19:46:20', 'GAneZjYm', '8351411'), - (19, 3110, 'not_attending', '2025-04-29 19:54:07', '2025-12-17 19:46:20', 'GAneZjYm', '8353484'), - (19, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'GAneZjYm', '8353584'), - (19, 3119, 'attending', '2025-05-13 13:48:34', '2025-12-17 19:46:21', 'GAneZjYm', '8360035'), - (19, 3126, 'maybe', '2025-05-11 04:02:43', '2025-12-17 19:46:21', 'GAneZjYm', '8365614'), - (19, 3131, 'not_attending', '2025-05-13 00:04:02', '2025-12-17 19:46:21', 'GAneZjYm', '8368028'), - (19, 3132, 'not_attending', '2025-05-19 22:23:19', '2025-12-17 19:46:21', 'GAneZjYm', '8368029'), - (19, 3133, 'attending', '2025-05-29 11:42:34', '2025-12-17 19:46:14', 'GAneZjYm', '8368030'), - (19, 3134, 'not_attending', '2025-05-13 00:04:31', '2025-12-17 19:46:21', 'GAneZjYm', '8368031'), - (19, 3139, 'attending', '2025-05-19 22:23:52', '2025-12-17 19:46:21', 'GAneZjYm', '8377425'), - (19, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAneZjYm', '8388462'), - (19, 3145, 'attending', '2025-05-31 20:45:07', '2025-12-17 19:46:14', 'GAneZjYm', '8393168'), - (19, 3147, 'attending', '2025-06-09 13:51:15', '2025-12-17 19:46:15', 'GAneZjYm', '8393170'), - (19, 3150, 'attending', '2025-06-18 22:08:59', '2025-12-17 19:46:15', 'GAneZjYm', '8393174'), - (19, 3151, 'attending', '2025-05-31 18:39:53', '2025-12-17 19:46:14', 'GAneZjYm', '8393497'), - (19, 3153, 'attending', '2025-06-03 21:16:46', '2025-12-17 19:46:15', 'GAneZjYm', '8400273'), - (19, 3154, 'attending', '2025-06-21 15:17:59', '2025-12-17 19:46:15', 'GAneZjYm', '8400274'), - (19, 3155, 'attending', '2025-07-01 21:04:22', '2025-12-17 19:46:16', 'GAneZjYm', '8400275'), - (19, 3156, 'attending', '2025-07-11 15:34:35', '2025-12-17 19:46:16', 'GAneZjYm', '8400276'), - (19, 3169, 'attending', '2025-06-08 18:09:24', '2025-12-17 19:46:15', 'GAneZjYm', '8404977'), - (19, 3183, 'attending', '2025-07-16 20:17:55', '2025-12-17 19:46:17', 'GAneZjYm', '8430799'), - (19, 3188, 'attending', '2025-07-12 22:46:15', '2025-12-17 19:46:17', 'GAneZjYm', '8438709'), - (19, 3193, 'attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAneZjYm', '8457738'), - (19, 3195, 'attending', '2025-08-06 22:42:06', '2025-12-17 19:46:17', 'GAneZjYm', '8458118'), - (19, 3196, 'not_attending', '2025-08-12 13:58:36', '2025-12-17 19:46:17', 'GAneZjYm', '8458543'), - (19, 3199, 'attending', '2025-07-19 13:47:59', '2025-12-17 19:46:17', 'GAneZjYm', '8459565'), - (19, 3200, 'attending', '2025-07-20 03:17:04', '2025-12-17 19:46:17', 'GAneZjYm', '8459566'), - (19, 3201, 'attending', '2025-08-09 15:38:15', '2025-12-17 19:46:17', 'GAneZjYm', '8459567'), - (19, 3202, 'attending', '2025-07-23 12:35:56', '2025-12-17 19:46:17', 'GAneZjYm', '8459568'), - (19, 3203, 'attending', '2025-07-20 03:17:17', '2025-12-17 19:46:17', 'GAneZjYm', '8461032'), - (19, 3213, 'maybe', '2025-08-12 13:58:45', '2025-12-17 19:46:17', 'GAneZjYm', '8477876'), - (19, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAneZjYm', '8477877'), - (19, 3217, 'not_attending', '2025-08-12 13:58:39', '2025-12-17 19:46:17', 'GAneZjYm', '8481811'), - (19, 3224, 'attending', '2025-09-07 01:55:10', '2025-12-17 19:46:12', 'GAneZjYm', '8485679'), - (19, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAneZjYm', '8485688'), - (19, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAneZjYm', '8490587'), - (19, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAneZjYm', '8493552'), - (19, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAneZjYm', '8493553'), - (19, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAneZjYm', '8493554'), - (19, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAneZjYm', '8493555'), - (19, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAneZjYm', '8493556'), - (19, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAneZjYm', '8493557'), - (19, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAneZjYm', '8493558'), - (19, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAneZjYm', '8493559'), - (19, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAneZjYm', '8493560'), - (19, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'GAneZjYm', '8493561'), - (19, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAneZjYm', '8493572'), - (19, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAneZjYm', '8540725'), - (19, 3295, 'attending', '2025-11-01 22:47:48', '2025-12-17 19:46:14', 'GAneZjYm', '8547541'), - (19, 3297, 'attending', '2025-10-21 03:10:35', '2025-12-17 19:46:14', 'GAneZjYm', '8548090'), - (19, 3300, 'attending', '2025-11-07 12:18:15', '2025-12-17 19:46:14', 'GAneZjYm', '8549145'), - (19, 3302, 'attending', '2025-11-08 17:37:08', '2025-12-17 19:46:14', 'GAneZjYm', '8550022'), - (19, 3304, 'attending', '2025-11-08 17:37:13', '2025-12-17 19:46:14', 'GAneZjYm', '8550024'), - (19, 3307, 'attending', '2025-12-15 18:43:40', '2025-12-17 19:46:11', 'GAneZjYm', '8550027'), - (19, 3311, 'attending', '2025-12-08 02:30:21', '2025-12-17 19:46:11', 'GAneZjYm', '8550412'), - (19, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAneZjYm', '8555421'), - (20, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dzbNypVd', '7074364'), - (20, 2688, 'attending', '2024-06-27 19:39:36', '2025-12-17 19:46:29', 'dzbNypVd', '7324073'), - (20, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dzbNypVd', '7324074'), - (20, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dzbNypVd', '7324075'), - (20, 2691, 'not_attending', '2024-07-20 18:39:17', '2025-12-17 19:46:30', 'dzbNypVd', '7324076'), - (20, 2692, 'not_attending', '2024-07-27 21:06:25', '2025-12-17 19:46:30', 'dzbNypVd', '7324077'), - (20, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dzbNypVd', '7324078'), - (20, 2696, 'attending', '2024-08-21 18:03:23', '2025-12-17 19:46:32', 'dzbNypVd', '7324081'), - (20, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dzbNypVd', '7324082'), - (20, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dzbNypVd', '7331457'), - (20, 2735, 'attending', '2024-06-28 14:00:55', '2025-12-17 19:46:29', 'dzbNypVd', '7340369'), - (20, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dzbNypVd', '7356752'), - (20, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dzbNypVd', '7363643'), - (20, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dzbNypVd', '7368606'), - (20, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dzbNypVd', '7397462'), - (20, 2821, 'maybe', '2024-10-07 19:50:26', '2025-12-17 19:46:26', 'dzbNypVd', '7424275'), - (20, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dzbNypVd', '7424276'), - (20, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dzbNypVd', '7432751'), - (20, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dzbNypVd', '7432752'), - (20, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dzbNypVd', '7432753'), - (20, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dzbNypVd', '7432754'), - (20, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dzbNypVd', '7432755'), - (20, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dzbNypVd', '7432756'), - (20, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dzbNypVd', '7432758'), - (20, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dzbNypVd', '7432759'), - (20, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dzbNypVd', '7433834'), - (20, 2834, 'not_attending', '2024-09-10 23:32:24', '2025-12-17 19:46:25', 'dzbNypVd', '7433852'), - (20, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dzbNypVd', '7470197'), - (20, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dzbNypVd', '7685613'), - (20, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dzbNypVd', '7688194'), - (20, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dzbNypVd', '7688196'), - (20, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dzbNypVd', '7688289'), - (20, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dzbNypVd', '7692763'), - (20, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dzbNypVd', '7697552'), - (20, 2916, 'not_attending', '2024-11-20 00:26:01', '2025-12-17 19:46:27', 'dzbNypVd', '7699006'), - (20, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dzbNypVd', '7699878'), - (20, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dzbNypVd', '7704043'), - (20, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dzbNypVd', '7712467'), - (20, 2925, 'attending', '2024-12-14 21:03:47', '2025-12-17 19:46:21', 'dzbNypVd', '7713584'), - (20, 2926, 'attending', '2024-12-03 16:40:18', '2025-12-17 19:46:21', 'dzbNypVd', '7713585'), - (20, 2927, 'not_attending', '2024-12-01 16:33:58', '2025-12-17 19:46:22', 'dzbNypVd', '7713586'), - (20, 2933, 'not_attending', '2024-12-15 03:03:30', '2025-12-17 19:46:22', 'dzbNypVd', '7725950'), - (20, 2937, 'not_attending', '2024-12-15 03:03:05', '2025-12-17 19:46:21', 'dzbNypVd', '7725955'), - (20, 2952, 'not_attending', '2024-12-15 03:03:14', '2025-12-17 19:46:21', 'dzbNypVd', '7730167'), - (20, 2953, 'not_attending', '2024-12-14 06:13:34', '2025-12-17 19:46:21', 'dzbNypVd', '7733836'), - (20, 2957, 'not_attending', '2024-12-16 00:08:27', '2025-12-17 19:46:21', 'dzbNypVd', '7735370'), - (20, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dzbNypVd', '7738518'), - (20, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dzbNypVd', '7750636'), - (20, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dzbNypVd', '7796540'), - (20, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dzbNypVd', '7796541'), - (20, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dzbNypVd', '7796542'), - (20, 2972, 'maybe', '2025-01-19 18:50:01', '2025-12-17 19:46:22', 'dzbNypVd', '7812563'), - (20, 2974, 'attending', '2025-01-18 23:24:13', '2025-12-17 19:46:22', 'dzbNypVd', '7814958'), - (20, 2975, 'maybe', '2025-01-25 21:10:58', '2025-12-17 19:46:22', 'dzbNypVd', '7823615'), - (20, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dzbNypVd', '7825913'), - (20, 2980, 'maybe', '2025-01-28 23:25:25', '2025-12-17 19:46:23', 'dzbNypVd', '7825920'), - (20, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dzbNypVd', '7826209'), - (20, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dzbNypVd', '7834742'), - (20, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dzbNypVd', '7842108'), - (20, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dzbNypVd', '7842902'), - (20, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dzbNypVd', '7842903'), - (20, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dzbNypVd', '7842904'), - (20, 2994, 'maybe', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dzbNypVd', '7842905'), - (20, 3000, 'maybe', '2025-02-21 01:23:39', '2025-12-17 19:46:24', 'dzbNypVd', '7852541'), - (20, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dzbNypVd', '7855719'), - (20, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dzbNypVd', '7860683'), - (20, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dzbNypVd', '7860684'), - (20, 3009, 'not_attending', '2025-02-28 22:31:43', '2025-12-17 19:46:18', 'dzbNypVd', '7864019'), - (20, 3010, 'maybe', '2025-02-28 23:41:00', '2025-12-17 19:46:18', 'dzbNypVd', '7864879'), - (20, 3011, 'attending', '2025-03-01 23:02:52', '2025-12-17 19:46:24', 'dzbNypVd', '7865624'), - (20, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dzbNypVd', '7866095'), - (20, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dzbNypVd', '7869170'), - (20, 3014, 'attending', '2025-03-31 21:05:59', '2025-12-17 19:46:19', 'dzbNypVd', '7869185'), - (20, 3015, 'attending', '2025-04-21 23:10:11', '2025-12-17 19:46:20', 'dzbNypVd', '7869186'), - (20, 3016, 'attending', '2025-04-06 20:33:08', '2025-12-17 19:46:20', 'dzbNypVd', '7869187'), - (20, 3017, 'attending', '2025-03-25 13:28:40', '2025-12-17 19:46:19', 'dzbNypVd', '7869188'), - (20, 3018, 'attending', '2025-04-06 20:33:37', '2025-12-17 19:46:20', 'dzbNypVd', '7869189'), - (20, 3028, 'attending', '2025-04-07 20:50:54', '2025-12-17 19:46:20', 'dzbNypVd', '7869199'), - (20, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dzbNypVd', '7869201'), - (20, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dzbNypVd', '7877465'), - (20, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dzbNypVd', '7878570'), - (20, 3046, 'attending', '2025-04-06 20:33:39', '2025-12-17 19:46:20', 'dzbNypVd', '7882692'), - (20, 3047, 'attending', '2025-04-26 19:51:05', '2025-12-17 19:46:20', 'dzbNypVd', '7882693'), - (20, 3048, 'attending', '2025-04-19 21:08:50', '2025-12-17 19:46:20', 'dzbNypVd', '7882694'), - (20, 3049, 'not_attending', '2025-03-17 21:51:04', '2025-12-17 19:46:19', 'dzbNypVd', '7883215'), - (20, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dzbNypVd', '7888250'), - (20, 3060, 'attending', '2025-03-27 14:16:18', '2025-12-17 19:46:19', 'dzbNypVd', '7892589'), - (20, 3061, 'attending', '2025-04-02 21:41:38', '2025-12-17 19:46:19', 'dzbNypVd', '7892590'), - (20, 3062, 'attending', '2025-03-27 22:11:32', '2025-12-17 19:46:19', 'dzbNypVd', '7892738'), - (20, 3063, 'attending', '2025-03-28 08:51:54', '2025-12-17 19:46:19', 'dzbNypVd', '7892801'), - (20, 3065, 'not_attending', '2025-04-03 20:14:35', '2025-12-17 19:46:19', 'dzbNypVd', '7893676'), - (20, 3075, 'attending', '2025-04-04 18:59:39', '2025-12-17 19:46:20', 'dzbNypVd', '7898896'), - (20, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dzbNypVd', '7904777'), - (20, 3091, 'not_attending', '2025-04-18 20:39:54', '2025-12-17 19:46:20', 'dzbNypVd', '8340289'), - (20, 3094, 'attending', '2025-04-21 23:10:15', '2025-12-17 19:46:21', 'dzbNypVd', '8342292'), - (20, 3095, 'attending', '2025-04-21 23:10:13', '2025-12-17 19:46:20', 'dzbNypVd', '8342293'), - (20, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dzbNypVd', '8349164'), - (20, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dzbNypVd', '8349545'), - (20, 3108, 'attending', '2025-04-29 22:36:19', '2025-12-17 19:46:20', 'dzbNypVd', '8351411'), - (20, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dzbNypVd', '8353584'), - (20, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dzbNypVd', '8368028'), - (20, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dzbNypVd', '8368029'), - (20, 3133, 'attending', '2025-05-27 23:25:00', '2025-12-17 19:46:14', 'dzbNypVd', '8368030'), - (20, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dzbNypVd', '8388462'), - (20, 3151, 'attending', '2025-05-31 22:00:33', '2025-12-17 19:46:14', 'dzbNypVd', '8393497'), - (20, 3153, 'attending', '2025-06-03 19:55:28', '2025-12-17 19:46:15', 'dzbNypVd', '8400273'), - (20, 3154, 'attending', '2025-06-26 10:43:57', '2025-12-17 19:46:15', 'dzbNypVd', '8400274'), - (20, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dzbNypVd', '8400275'), - (20, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dzbNypVd', '8400276'), - (20, 3167, 'attending', '2025-06-08 02:03:26', '2025-12-17 19:46:15', 'dzbNypVd', '8404521'), - (20, 3168, 'maybe', '2025-06-08 02:06:17', '2025-12-17 19:46:15', 'dzbNypVd', '8404522'), - (20, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dzbNypVd', '8404977'), - (20, 3175, 'attending', '2025-06-14 18:23:06', '2025-12-17 19:46:15', 'dzbNypVd', '8410815'), - (20, 3179, 'attending', '2025-06-27 20:19:24', '2025-12-17 19:46:15', 'dzbNypVd', '8421850'), - (20, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dzbNypVd', '8430783'), - (20, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dzbNypVd', '8430784'), - (20, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dzbNypVd', '8430799'), - (20, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dzbNypVd', '8430800'), - (20, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dzbNypVd', '8430801'), - (20, 3188, 'not_attending', '2025-07-07 22:13:40', '2025-12-17 19:46:17', 'dzbNypVd', '8438709'), - (20, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dzbNypVd', '8457738'), - (20, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dzbNypVd', '8459566'), - (20, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dzbNypVd', '8459567'), - (20, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dzbNypVd', '8459568'), - (20, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dzbNypVd', '8461032'), - (20, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dzbNypVd', '8477877'), - (20, 3224, 'attending', '2025-09-03 19:29:24', '2025-12-17 19:46:12', 'dzbNypVd', '8485679'), - (20, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dzbNypVd', '8485688'), - (20, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dzbNypVd', '8490587'), - (20, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dzbNypVd', '8493552'), - (20, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dzbNypVd', '8493553'), - (20, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dzbNypVd', '8493554'), - (20, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dzbNypVd', '8493555'), - (20, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dzbNypVd', '8493556'), - (20, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dzbNypVd', '8493557'), - (20, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dzbNypVd', '8493558'), - (20, 3243, 'maybe', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dzbNypVd', '8493559'), - (20, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dzbNypVd', '8493560'), - (20, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dzbNypVd', '8493561'), - (20, 3250, 'not_attending', '2025-10-25 20:30:10', '2025-12-17 19:46:14', 'dzbNypVd', '8493566'), - (20, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dzbNypVd', '8493572'), - (20, 3257, 'attending', '2025-08-28 20:56:31', '2025-12-17 19:46:11', 'dzbNypVd', '8502340'), - (20, 3259, 'not_attending', '2025-09-05 18:37:59', '2025-12-17 19:46:12', 'dzbNypVd', '8512638'), - (20, 3260, 'not_attending', '2025-09-05 18:37:55', '2025-12-17 19:46:12', 'dzbNypVd', '8512640'), - (20, 3261, 'not_attending', '2025-09-05 18:37:40', '2025-12-17 19:46:12', 'dzbNypVd', '8512641'), - (20, 3262, 'not_attending', '2025-09-05 18:37:44', '2025-12-17 19:46:12', 'dzbNypVd', '8512642'), - (20, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dzbNypVd', '8540725'), - (20, 3295, 'attending', '2025-10-28 20:59:29', '2025-12-17 19:46:14', 'dzbNypVd', '8547541'), - (20, 3300, 'attending', '2025-11-06 23:11:52', '2025-12-17 19:46:14', 'dzbNypVd', '8549145'), - (20, 3302, 'not_attending', '2025-11-04 17:23:53', '2025-12-17 19:46:14', 'dzbNypVd', '8550022'), - (20, 3304, 'attending', '2025-11-18 02:11:47', '2025-12-17 19:46:14', 'dzbNypVd', '8550024'), - (20, 3305, 'maybe', '2025-12-02 23:12:19', '2025-12-17 19:46:11', 'dzbNypVd', '8550025'), - (20, 3306, 'attending', '2025-12-09 02:30:53', '2025-12-17 19:46:11', 'dzbNypVd', '8550026'), - (20, 3307, 'attending', '2025-12-16 00:24:05', '2025-12-17 19:46:11', 'dzbNypVd', '8550027'), - (20, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dzbNypVd', '8555421'), - (20, 3338, 'not_attending', '2025-12-06 21:42:55', '2025-12-17 19:46:11', 'dzbNypVd', '8563316'), - (20, 3341, 'maybe', '2025-12-13 22:59:43', '2025-12-17 19:46:11', 'dzbNypVd', '8564397'), - (21, 1052, 'not_attending', '2022-01-15 19:48:57', '2025-12-17 19:47:31', 'AnbyDDkA', '4496617'), - (21, 1151, 'attending', '2022-01-05 00:13:08', '2025-12-17 19:47:31', 'AnbyDDkA', '4708704'), - (21, 1152, 'attending', '2022-01-12 11:28:54', '2025-12-17 19:47:31', 'AnbyDDkA', '4708705'), - (21, 1153, 'attending', '2022-01-20 00:54:49', '2025-12-17 19:47:32', 'AnbyDDkA', '4708707'), - (21, 1154, 'not_attending', '2022-01-25 18:26:57', '2025-12-17 19:47:32', 'AnbyDDkA', '4708708'), - (21, 1159, 'attending', '2022-01-05 00:25:10', '2025-12-17 19:47:31', 'AnbyDDkA', '4717532'), - (21, 1162, 'attending', '2022-01-07 18:48:46', '2025-12-17 19:47:31', 'AnbyDDkA', '4718771'), - (21, 1166, 'not_attending', '2022-01-11 00:08:12', '2025-12-17 19:47:31', 'AnbyDDkA', '4725109'), - (21, 1167, 'attending', '2022-01-06 22:18:56', '2025-12-17 19:47:31', 'AnbyDDkA', '4731015'), - (21, 1170, 'not_attending', '2022-01-10 01:07:41', '2025-12-17 19:47:31', 'AnbyDDkA', '4731045'), - (21, 1171, 'attending', '2022-01-04 04:42:46', '2025-12-17 19:47:31', 'AnbyDDkA', '4733292'), - (21, 1173, 'attending', '2022-01-05 18:05:08', '2025-12-17 19:47:31', 'AnbyDDkA', '4736495'), - (21, 1174, 'attending', '2022-01-09 02:20:33', '2025-12-17 19:47:31', 'AnbyDDkA', '4736496'), - (21, 1175, 'attending', '2022-01-22 23:56:02', '2025-12-17 19:47:32', 'AnbyDDkA', '4736497'), - (21, 1176, 'attending', '2022-02-05 18:18:25', '2025-12-17 19:47:32', 'AnbyDDkA', '4736498'), - (21, 1177, 'not_attending', '2022-02-13 00:28:30', '2025-12-17 19:47:32', 'AnbyDDkA', '4736499'), - (21, 1178, 'not_attending', '2022-01-30 03:08:05', '2025-12-17 19:47:32', 'AnbyDDkA', '4736500'), - (21, 1179, 'maybe', '2022-02-17 22:11:20', '2025-12-17 19:47:32', 'AnbyDDkA', '4736501'), - (21, 1180, 'not_attending', '2022-02-27 05:44:19', '2025-12-17 19:47:33', 'AnbyDDkA', '4736502'), - (21, 1181, 'attending', '2022-03-05 23:29:05', '2025-12-17 19:47:33', 'AnbyDDkA', '4736503'), - (21, 1182, 'attending', '2022-03-12 23:33:34', '2025-12-17 19:47:33', 'AnbyDDkA', '4736504'), - (21, 1184, 'attending', '2022-01-15 01:57:57', '2025-12-17 19:47:31', 'AnbyDDkA', '4742350'), - (21, 1185, 'not_attending', '2022-01-14 04:59:21', '2025-12-17 19:47:31', 'AnbyDDkA', '4746789'), - (21, 1186, 'not_attending', '2022-01-15 19:48:54', '2025-12-17 19:47:31', 'AnbyDDkA', '4747800'), - (21, 1187, 'attending', '2022-01-11 01:06:39', '2025-12-17 19:47:31', 'AnbyDDkA', '4753907'), - (21, 1188, 'not_attending', '2022-01-11 04:07:48', '2025-12-17 19:47:32', 'AnbyDDkA', '4753929'), - (21, 1189, 'maybe', '2022-01-17 18:55:53', '2025-12-17 19:47:31', 'AnbyDDkA', '4753938'), - (21, 1190, 'not_attending', '2022-01-14 00:35:31', '2025-12-17 19:47:31', 'AnbyDDkA', '4757377'), - (21, 1191, 'not_attending', '2022-01-11 23:32:30', '2025-12-17 19:47:31', 'AnbyDDkA', '4757390'), - (21, 1192, 'not_attending', '2022-01-20 19:30:06', '2025-12-17 19:47:32', 'AnbyDDkA', '4758745'), - (21, 1193, 'maybe', '2022-01-13 03:16:00', '2025-12-17 19:47:32', 'AnbyDDkA', '4759563'), - (21, 1196, 'not_attending', '2022-01-20 19:29:56', '2025-12-17 19:47:32', 'AnbyDDkA', '4765583'), - (21, 1199, 'not_attending', '2022-01-25 08:11:10', '2025-12-17 19:47:32', 'AnbyDDkA', '4766802'), - (21, 1201, 'not_attending', '2022-01-20 19:30:10', '2025-12-17 19:47:32', 'AnbyDDkA', '4766841'), - (21, 1202, 'not_attending', '2022-01-30 09:46:19', '2025-12-17 19:47:32', 'AnbyDDkA', '4769423'), - (21, 1206, 'attending', '2022-04-10 22:43:17', '2025-12-17 19:47:27', 'AnbyDDkA', '4773578'), - (21, 1208, 'attending', '2022-01-23 02:41:14', '2025-12-17 19:47:32', 'AnbyDDkA', '4774419'), - (21, 1213, 'not_attending', '2022-02-06 23:00:00', '2025-12-17 19:47:32', 'AnbyDDkA', '4780760'), - (21, 1217, 'attending', '2022-01-30 12:47:14', '2025-12-17 19:47:32', 'AnbyDDkA', '4781139'), - (21, 1219, 'attending', '2022-02-02 22:06:29', '2025-12-17 19:47:32', 'AnbyDDkA', '4788466'), - (21, 1224, 'maybe', '2022-01-30 20:35:34', '2025-12-17 19:47:32', 'AnbyDDkA', '5016682'), - (21, 1228, 'attending', '2022-02-11 18:18:20', '2025-12-17 19:47:32', 'AnbyDDkA', '5028238'), - (21, 1232, 'attending', '2022-02-09 00:53:20', '2025-12-17 19:47:32', 'AnbyDDkA', '5038850'), - (21, 1234, 'attending', '2022-02-16 00:06:18', '2025-12-17 19:47:32', 'AnbyDDkA', '5042197'), - (21, 1236, 'not_attending', '2022-02-17 22:10:11', '2025-12-17 19:47:32', 'AnbyDDkA', '5045826'), - (21, 1239, 'attending', '2022-03-03 00:26:11', '2025-12-17 19:47:33', 'AnbyDDkA', '5052238'), - (21, 1240, 'attending', '2022-03-16 21:48:57', '2025-12-17 19:47:33', 'AnbyDDkA', '5052239'), - (21, 1241, 'not_attending', '2022-03-23 20:35:41', '2025-12-17 19:47:25', 'AnbyDDkA', '5052240'), - (21, 1242, 'attending', '2022-03-30 22:13:43', '2025-12-17 19:47:25', 'AnbyDDkA', '5052241'), - (21, 1243, 'not_attending', '2022-03-06 19:51:02', '2025-12-17 19:47:33', 'AnbyDDkA', '5058336'), - (21, 1246, 'attending', '2022-03-03 23:51:02', '2025-12-17 19:47:33', 'AnbyDDkA', '5064727'), - (21, 1249, 'attending', '2022-03-09 23:50:15', '2025-12-17 19:47:33', 'AnbyDDkA', '5068530'), - (21, 1250, 'maybe', '2022-03-04 00:09:50', '2025-12-17 19:47:33', 'AnbyDDkA', '5069735'), - (21, 1252, 'attending', '2022-03-05 01:01:44', '2025-12-17 19:47:33', 'AnbyDDkA', '5129121'), - (21, 1255, 'attending', '2022-02-28 20:03:23', '2025-12-17 19:47:33', 'AnbyDDkA', '5129140'), - (21, 1257, 'attending', '2022-03-01 05:58:47', '2025-12-17 19:47:33', 'AnbyDDkA', '5129274'), - (21, 1259, 'attending', '2022-03-11 23:27:18', '2025-12-17 19:47:33', 'AnbyDDkA', '5132533'), - (21, 1262, 'attending', '2022-03-11 20:58:05', '2025-12-17 19:47:33', 'AnbyDDkA', '5157773'), - (21, 1266, 'not_attending', '2022-03-14 23:45:21', '2025-12-17 19:47:33', 'AnbyDDkA', '5166407'), - (21, 1267, 'attending', '2022-03-16 22:20:51', '2025-12-17 19:47:25', 'AnbyDDkA', '5169578'), - (21, 1268, 'attending', '2022-03-15 22:06:56', '2025-12-17 19:47:33', 'AnbyDDkA', '5176296'), - (21, 1269, 'not_attending', '2022-03-18 21:54:47', '2025-12-17 19:47:25', 'AnbyDDkA', '5179439'), - (21, 1271, 'not_attending', '2022-03-18 21:54:18', '2025-12-17 19:47:25', 'AnbyDDkA', '5181648'), - (21, 1272, 'attending', '2022-03-19 18:00:18', '2025-12-17 19:47:25', 'AnbyDDkA', '5186582'), - (21, 1273, 'attending', '2022-03-26 18:16:44', '2025-12-17 19:47:25', 'AnbyDDkA', '5186583'), - (21, 1274, 'attending', '2022-04-02 07:00:33', '2025-12-17 19:47:26', 'AnbyDDkA', '5186585'), - (21, 1278, 'not_attending', '2022-03-17 21:01:45', '2025-12-17 19:47:33', 'AnbyDDkA', '5186920'), - (21, 1279, 'attending', '2022-03-16 10:07:41', '2025-12-17 19:47:25', 'AnbyDDkA', '5187212'), - (21, 1281, 'not_attending', '2022-04-09 20:57:36', '2025-12-17 19:47:27', 'AnbyDDkA', '5190437'), - (21, 1282, 'maybe', '2022-03-21 16:21:39', '2025-12-17 19:47:25', 'AnbyDDkA', '5191241'), - (21, 1284, 'not_attending', '2022-04-13 18:43:14', '2025-12-17 19:47:27', 'AnbyDDkA', '5195095'), - (21, 1288, 'not_attending', '2022-03-29 21:21:58', '2025-12-17 19:47:25', 'AnbyDDkA', '5199460'), - (21, 1290, 'maybe', '2022-03-29 13:56:00', '2025-12-17 19:47:25', 'AnbyDDkA', '5200196'), - (21, 1293, 'maybe', '2022-04-10 17:26:17', '2025-12-17 19:47:27', 'AnbyDDkA', '5214641'), - (21, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'AnbyDDkA', '5215989'), - (21, 1299, 'maybe', '2022-03-31 19:53:03', '2025-12-17 19:47:25', 'AnbyDDkA', '5217660'), - (21, 1302, 'maybe', '2022-04-08 20:38:40', '2025-12-17 19:47:27', 'AnbyDDkA', '5220867'), - (21, 1304, 'attending', '2022-04-06 22:47:00', '2025-12-17 19:47:26', 'AnbyDDkA', '5223468'), - (21, 1305, 'attending', '2022-04-10 22:43:14', '2025-12-17 19:47:27', 'AnbyDDkA', '5223673'), - (21, 1306, 'attending', '2022-04-05 22:29:51', '2025-12-17 19:47:26', 'AnbyDDkA', '5223682'), - (21, 1307, 'not_attending', '2022-04-07 22:45:57', '2025-12-17 19:47:27', 'AnbyDDkA', '5223686'), - (21, 1308, 'not_attending', '2022-04-13 03:29:30', '2025-12-17 19:47:27', 'AnbyDDkA', '5226703'), - (21, 1309, 'not_attending', '2022-04-07 22:45:50', '2025-12-17 19:47:26', 'AnbyDDkA', '5227432'), - (21, 1310, 'attending', '2022-04-08 01:33:43', '2025-12-17 19:47:27', 'AnbyDDkA', '5231071'), - (21, 1312, 'maybe', '2022-04-13 18:38:18', '2025-12-17 19:47:27', 'AnbyDDkA', '5231459'), - (21, 1313, 'not_attending', '2022-04-13 03:29:21', '2025-12-17 19:47:27', 'AnbyDDkA', '5231461'), - (21, 1314, 'attending', '2022-04-08 20:20:33', '2025-12-17 19:47:27', 'AnbyDDkA', '5233137'), - (21, 1319, 'not_attending', '2022-04-25 21:26:03', '2025-12-17 19:47:27', 'AnbyDDkA', '5238353'), - (21, 1321, 'attending', '2022-04-22 21:01:56', '2025-12-17 19:47:27', 'AnbyDDkA', '5238355'), - (21, 1322, 'attending', '2022-04-26 14:15:15', '2025-12-17 19:47:27', 'AnbyDDkA', '5238356'), - (21, 1327, 'not_attending', '2022-04-25 21:13:53', '2025-12-17 19:47:27', 'AnbyDDkA', '5238445'), - (21, 1328, 'maybe', '2022-04-13 18:38:26', '2025-12-17 19:47:27', 'AnbyDDkA', '5238759'), - (21, 1330, 'not_attending', '2022-04-13 18:43:52', '2025-12-17 19:47:27', 'AnbyDDkA', '5242155'), - (21, 1332, 'maybe', '2022-04-13 18:38:10', '2025-12-17 19:47:27', 'AnbyDDkA', '5243274'), - (21, 1333, 'attending', '2022-04-13 18:34:11', '2025-12-17 19:47:27', 'AnbyDDkA', '5243711'), - (21, 1341, 'not_attending', '2022-05-01 03:04:32', '2025-12-17 19:47:28', 'AnbyDDkA', '5245755'), - (21, 1345, 'attending', '2022-04-23 21:42:41', '2025-12-17 19:47:27', 'AnbyDDkA', '5247466'), - (21, 1346, 'attending', '2022-04-23 20:29:48', '2025-12-17 19:47:27', 'AnbyDDkA', '5247467'), - (21, 1348, 'not_attending', '2022-05-01 23:36:57', '2025-12-17 19:47:28', 'AnbyDDkA', '5247605'), - (21, 1350, 'attending', '2022-04-21 17:20:11', '2025-12-17 19:47:27', 'AnbyDDkA', '5249763'), - (21, 1357, 'maybe', '2022-04-25 21:15:21', '2025-12-17 19:47:27', 'AnbyDDkA', '5256017'), - (21, 1360, 'attending', '2022-04-27 00:11:09', '2025-12-17 19:47:27', 'AnbyDDkA', '5260197'), - (21, 1362, 'attending', '2022-04-27 19:43:04', '2025-12-17 19:47:28', 'AnbyDDkA', '5260800'), - (21, 1374, 'attending', '2022-05-05 19:12:34', '2025-12-17 19:47:28', 'AnbyDDkA', '5269930'), - (21, 1375, 'attending', '2022-05-05 22:37:59', '2025-12-17 19:47:28', 'AnbyDDkA', '5269932'), - (21, 1376, 'maybe', '2022-05-12 20:30:22', '2025-12-17 19:47:28', 'AnbyDDkA', '5271446'), - (21, 1378, 'maybe', '2022-05-11 07:24:08', '2025-12-17 19:47:29', 'AnbyDDkA', '5271448'), - (21, 1379, 'attending', '2022-05-21 01:16:08', '2025-12-17 19:47:29', 'AnbyDDkA', '5271449'), - (21, 1380, 'not_attending', '2022-05-28 22:59:24', '2025-12-17 19:47:30', 'AnbyDDkA', '5271450'), - (21, 1382, 'attending', '2022-05-09 22:56:11', '2025-12-17 19:47:28', 'AnbyDDkA', '5276350'), - (21, 1383, 'attending', '2022-05-05 19:15:05', '2025-12-17 19:47:28', 'AnbyDDkA', '5276469'), - (21, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AnbyDDkA', '5278159'), - (21, 1394, 'maybe', '2022-05-21 12:38:41', '2025-12-17 19:47:30', 'AnbyDDkA', '5280667'), - (21, 1395, 'attending', '2022-05-07 21:36:39', '2025-12-17 19:47:28', 'AnbyDDkA', '5281102'), - (21, 1396, 'maybe', '2022-05-11 07:24:15', '2025-12-17 19:47:28', 'AnbyDDkA', '5281103'), - (21, 1397, 'not_attending', '2022-05-21 21:28:47', '2025-12-17 19:47:29', 'AnbyDDkA', '5281104'), - (21, 1400, 'attending', '2022-05-16 21:31:35', '2025-12-17 19:47:29', 'AnbyDDkA', '5284864'), - (21, 1403, 'attending', '2022-05-20 22:48:57', '2025-12-17 19:47:29', 'AnbyDDkA', '5288052'), - (21, 1406, 'attending', '2022-05-15 21:44:07', '2025-12-17 19:47:29', 'AnbyDDkA', '5288619'), - (21, 1407, 'not_attending', '2022-06-02 22:36:52', '2025-12-17 19:47:30', 'AnbyDDkA', '5363695'), - (21, 1408, 'not_attending', '2022-05-20 21:45:33', '2025-12-17 19:47:29', 'AnbyDDkA', '5365960'), - (21, 1410, 'attending', '2022-05-17 02:58:18', '2025-12-17 19:47:29', 'AnbyDDkA', '5367530'), - (21, 1411, 'attending', '2022-05-17 03:00:49', '2025-12-17 19:47:29', 'AnbyDDkA', '5367531'), - (21, 1412, 'attending', '2022-05-17 02:59:27', '2025-12-17 19:47:29', 'AnbyDDkA', '5367532'), - (21, 1413, 'attending', '2022-05-17 03:03:38', '2025-12-17 19:47:29', 'AnbyDDkA', '5367533'), - (21, 1414, 'attending', '2022-05-21 01:46:16', '2025-12-17 19:47:29', 'AnbyDDkA', '5368445'), - (21, 1415, 'attending', '2022-05-19 17:35:16', '2025-12-17 19:47:30', 'AnbyDDkA', '5368973'), - (21, 1417, 'not_attending', '2022-05-22 17:29:14', '2025-12-17 19:47:30', 'AnbyDDkA', '5370465'), - (21, 1419, 'attending', '2022-06-08 02:40:26', '2025-12-17 19:47:30', 'AnbyDDkA', '5373081'), - (21, 1420, 'maybe', '2022-05-23 06:59:25', '2025-12-17 19:47:30', 'AnbyDDkA', '5374882'), - (21, 1421, 'attending', '2022-05-30 17:08:04', '2025-12-17 19:47:30', 'AnbyDDkA', '5374885'), - (21, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AnbyDDkA', '5378247'), - (21, 1429, 'attending', '2022-05-30 23:28:53', '2025-12-17 19:47:30', 'AnbyDDkA', '5388761'), - (21, 1430, 'not_attending', '2022-06-09 23:00:33', '2025-12-17 19:47:30', 'AnbyDDkA', '5389402'), - (21, 1431, 'attending', '2022-06-08 02:40:31', '2025-12-17 19:47:30', 'AnbyDDkA', '5389605'), - (21, 1432, 'maybe', '2022-06-02 22:37:28', '2025-12-17 19:47:30', 'AnbyDDkA', '5391566'), - (21, 1439, 'attending', '2022-06-02 22:37:15', '2025-12-17 19:47:30', 'AnbyDDkA', '5396072'), - (21, 1442, 'not_attending', '2022-06-18 22:32:56', '2025-12-17 19:47:17', 'AnbyDDkA', '5397265'), - (21, 1444, 'attending', '2022-06-08 02:40:34', '2025-12-17 19:47:30', 'AnbyDDkA', '5397614'), - (21, 1445, 'maybe', '2022-06-18 16:41:23', '2025-12-17 19:47:17', 'AnbyDDkA', '5397615'), - (21, 1446, 'not_attending', '2022-06-09 20:39:34', '2025-12-17 19:47:30', 'AnbyDDkA', '5399721'), - (21, 1448, 'attending', '2022-06-07 02:18:15', '2025-12-17 19:47:30', 'AnbyDDkA', '5401479'), - (21, 1450, 'attending', '2022-06-08 18:15:27', '2025-12-17 19:47:30', 'AnbyDDkA', '5403421'), - (21, 1451, 'not_attending', '2022-06-18 02:12:59', '2025-12-17 19:47:17', 'AnbyDDkA', '5403967'), - (21, 1452, 'not_attending', '2022-06-09 18:36:06', '2025-12-17 19:47:30', 'AnbyDDkA', '5404197'), - (21, 1454, 'maybe', '2022-06-12 17:01:09', '2025-12-17 19:47:31', 'AnbyDDkA', '5404771'), - (21, 1457, 'not_attending', '2022-06-12 23:31:21', '2025-12-17 19:47:31', 'AnbyDDkA', '5404780'), - (21, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AnbyDDkA', '5404786'), - (21, 1460, 'attending', '2022-06-13 23:00:29', '2025-12-17 19:47:31', 'AnbyDDkA', '5404817'), - (21, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AnbyDDkA', '5405203'), - (21, 1463, 'not_attending', '2022-06-15 00:07:39', '2025-12-17 19:47:31', 'AnbyDDkA', '5405208'), - (21, 1464, 'maybe', '2022-06-10 22:18:35', '2025-12-17 19:47:30', 'AnbyDDkA', '5405212'), - (21, 1465, 'attending', '2022-06-12 21:23:38', '2025-12-17 19:47:31', 'AnbyDDkA', '5406355'), - (21, 1466, 'not_attending', '2022-06-15 17:38:06', '2025-12-17 19:47:17', 'AnbyDDkA', '5406427'), - (21, 1469, 'maybe', '2022-06-20 19:56:51', '2025-12-17 19:47:17', 'AnbyDDkA', '5406838'), - (21, 1470, 'maybe', '2022-06-13 21:28:16', '2025-12-17 19:47:17', 'AnbyDDkA', '5407053'), - (21, 1473, 'maybe', '2022-06-14 21:20:26', '2025-12-17 19:47:31', 'AnbyDDkA', '5407267'), - (21, 1480, 'maybe', '2022-06-26 22:54:39', '2025-12-17 19:47:19', 'AnbyDDkA', '5411699'), - (21, 1482, 'maybe', '2022-06-23 18:54:03', '2025-12-17 19:47:19', 'AnbyDDkA', '5412550'), - (21, 1484, 'attending', '2022-06-22 19:43:01', '2025-12-17 19:47:17', 'AnbyDDkA', '5415046'), - (21, 1485, 'attending', '2022-06-21 18:05:18', '2025-12-17 19:47:17', 'AnbyDDkA', '5416276'), - (21, 1486, 'attending', '2022-07-01 01:46:50', '2025-12-17 19:47:19', 'AnbyDDkA', '5416339'), - (21, 1488, 'not_attending', '2022-07-01 22:36:16', '2025-12-17 19:47:19', 'AnbyDDkA', '5420154'), - (21, 1489, 'not_attending', '2022-07-01 22:36:19', '2025-12-17 19:47:19', 'AnbyDDkA', '5420155'), - (21, 1490, 'not_attending', '2022-07-01 22:36:27', '2025-12-17 19:47:19', 'AnbyDDkA', '5420156'), - (21, 1491, 'maybe', '2022-07-01 22:36:48', '2025-12-17 19:47:19', 'AnbyDDkA', '5420158'), - (21, 1492, 'not_attending', '2022-07-01 22:36:36', '2025-12-17 19:47:19', 'AnbyDDkA', '5420175'), - (21, 1495, 'not_attending', '2022-07-01 22:36:31', '2025-12-17 19:47:19', 'AnbyDDkA', '5422086'), - (21, 1496, 'not_attending', '2022-06-30 21:04:06', '2025-12-17 19:47:19', 'AnbyDDkA', '5422404'), - (21, 1498, 'not_attending', '2022-07-01 22:35:59', '2025-12-17 19:47:19', 'AnbyDDkA', '5422406'), - (21, 1499, 'not_attending', '2022-07-01 22:36:03', '2025-12-17 19:47:19', 'AnbyDDkA', '5422407'), - (21, 1500, 'not_attending', '2022-07-01 22:36:24', '2025-12-17 19:47:19', 'AnbyDDkA', '5423915'), - (21, 1501, 'not_attending', '2022-06-29 22:32:50', '2025-12-17 19:47:19', 'AnbyDDkA', '5424546'), - (21, 1502, 'maybe', '2022-07-01 22:36:43', '2025-12-17 19:47:19', 'AnbyDDkA', '5424565'), - (21, 1503, 'not_attending', '2022-07-01 22:36:12', '2025-12-17 19:47:19', 'AnbyDDkA', '5426820'), - (21, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AnbyDDkA', '5426882'), - (21, 1505, 'maybe', '2022-07-01 22:36:52', '2025-12-17 19:47:19', 'AnbyDDkA', '5427083'), - (21, 1508, 'maybe', '2022-07-13 23:08:38', '2025-12-17 19:47:19', 'AnbyDDkA', '5433453'), - (21, 1512, 'attending', '2022-07-12 17:01:31', '2025-12-17 19:47:19', 'AnbyDDkA', '5441112'), - (21, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AnbyDDkA', '5441125'), - (21, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AnbyDDkA', '5441126'), - (21, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AnbyDDkA', '5441128'), - (21, 1516, 'attending', '2022-08-21 04:20:17', '2025-12-17 19:47:23', 'AnbyDDkA', '5441129'), - (21, 1517, 'attending', '2022-08-26 09:45:17', '2025-12-17 19:47:23', 'AnbyDDkA', '5441130'), - (21, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AnbyDDkA', '5441131'), - (21, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AnbyDDkA', '5441132'), - (21, 1520, 'not_attending', '2022-07-12 17:01:48', '2025-12-17 19:47:19', 'AnbyDDkA', '5441645'), - (21, 1521, 'not_attending', '2022-07-12 22:49:41', '2025-12-17 19:47:19', 'AnbyDDkA', '5442180'), - (21, 1522, 'maybe', '2022-07-19 16:24:48', '2025-12-17 19:47:20', 'AnbyDDkA', '5442832'), - (21, 1524, 'not_attending', '2022-07-12 17:01:37', '2025-12-17 19:47:19', 'AnbyDDkA', '5443300'), - (21, 1526, 'not_attending', '2022-07-22 22:20:56', '2025-12-17 19:47:20', 'AnbyDDkA', '5445059'), - (21, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AnbyDDkA', '5446643'), - (21, 1532, 'attending', '2022-07-23 17:29:36', '2025-12-17 19:47:20', 'AnbyDDkA', '5448757'), - (21, 1535, 'attending', '2022-07-19 16:24:42', '2025-12-17 19:47:20', 'AnbyDDkA', '5448830'), - (21, 1537, 'attending', '2022-07-18 22:26:02', '2025-12-17 19:47:20', 'AnbyDDkA', '5449117'), - (21, 1538, 'maybe', '2022-07-31 20:57:06', '2025-12-17 19:47:21', 'AnbyDDkA', '5449565'), - (21, 1539, 'maybe', '2022-07-17 18:38:00', '2025-12-17 19:47:21', 'AnbyDDkA', '5449671'), - (21, 1540, 'not_attending', '2022-07-21 20:56:21', '2025-12-17 19:47:20', 'AnbyDDkA', '5453325'), - (21, 1542, 'attending', '2022-07-18 19:05:22', '2025-12-17 19:47:20', 'AnbyDDkA', '5454064'), - (21, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AnbyDDkA', '5454516'), - (21, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AnbyDDkA', '5454605'), - (21, 1546, 'attending', '2022-07-27 20:59:13', '2025-12-17 19:47:20', 'AnbyDDkA', '5454607'), - (21, 1549, 'maybe', '2022-07-19 18:51:10', '2025-12-17 19:47:20', 'AnbyDDkA', '5454789'), - (21, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AnbyDDkA', '5455037'), - (21, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AnbyDDkA', '5461278'), - (21, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AnbyDDkA', '5469480'), - (21, 1565, 'attending', '2022-07-25 23:34:24', '2025-12-17 19:47:21', 'AnbyDDkA', '5471073'), - (21, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AnbyDDkA', '5474663'), - (21, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AnbyDDkA', '5482022'), - (21, 1575, 'attending', '2022-08-26 17:34:52', '2025-12-17 19:47:23', 'AnbyDDkA', '5482250'), - (21, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AnbyDDkA', '5482793'), - (21, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AnbyDDkA', '5488912'), - (21, 1582, 'maybe', '2022-08-13 21:39:30', '2025-12-17 19:47:23', 'AnbyDDkA', '5492001'), - (21, 1586, 'not_attending', '2022-08-19 05:25:59', '2025-12-17 19:47:23', 'AnbyDDkA', '5492019'), - (21, 1587, 'maybe', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AnbyDDkA', '5492192'), - (21, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AnbyDDkA', '5493139'), - (21, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AnbyDDkA', '5493200'), - (21, 1593, 'attending', '2022-08-09 04:25:57', '2025-12-17 19:47:22', 'AnbyDDkA', '5494043'), - (21, 1602, 'attending', '2022-08-11 16:27:08', '2025-12-17 19:47:22', 'AnbyDDkA', '5497383'), - (21, 1603, 'not_attending', '2022-08-13 21:39:50', '2025-12-17 19:47:23', 'AnbyDDkA', '5497895'), - (21, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AnbyDDkA', '5502188'), - (21, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AnbyDDkA', '5505059'), - (21, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AnbyDDkA', '5509055'), - (21, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AnbyDDkA', '5512862'), - (21, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AnbyDDkA', '5513985'), - (21, 1625, 'attending', '2022-08-25 18:35:58', '2025-12-17 19:47:23', 'AnbyDDkA', '5519736'), - (21, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'AnbyDDkA', '5519981'), - (21, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AnbyDDkA', '5522550'), - (21, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AnbyDDkA', '5534683'), - (21, 1631, 'attending', '2022-08-27 14:12:56', '2025-12-17 19:47:23', 'AnbyDDkA', '5534684'), - (21, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AnbyDDkA', '5537735'), - (21, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AnbyDDkA', '5540859'), - (21, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AnbyDDkA', '5546619'), - (21, 1652, 'attending', '2022-09-10 22:07:47', '2025-12-17 19:47:24', 'AnbyDDkA', '5552671'), - (21, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AnbyDDkA', '5555245'), - (21, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AnbyDDkA', '5557747'), - (21, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AnbyDDkA', '5560255'), - (21, 1663, 'attending', '2022-09-10 13:23:01', '2025-12-17 19:47:24', 'AnbyDDkA', '5562345'), - (21, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AnbyDDkA', '5562906'), - (21, 1667, 'attending', '2022-09-24 15:49:57', '2025-12-17 19:47:11', 'AnbyDDkA', '5563221'), - (21, 1668, 'not_attending', '2022-10-01 11:33:07', '2025-12-17 19:47:12', 'AnbyDDkA', '5563222'), - (21, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AnbyDDkA', '5600604'), - (21, 1682, 'attending', '2022-09-24 21:35:35', '2025-12-17 19:47:11', 'AnbyDDkA', '5605317'), - (21, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AnbyDDkA', '5605544'), - (21, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'AnbyDDkA', '5606737'), - (21, 1700, 'maybe', '2022-10-01 11:33:03', '2025-12-17 19:47:12', 'AnbyDDkA', '5606814'), - (21, 1702, 'attending', '2022-09-30 05:50:56', '2025-12-17 19:47:12', 'AnbyDDkA', '5609173'), - (21, 1717, 'maybe', '2022-10-21 20:16:40', '2025-12-17 19:47:13', 'AnbyDDkA', '5622842'), - (21, 1718, 'maybe', '2022-10-18 20:30:15', '2025-12-17 19:47:12', 'AnbyDDkA', '5630907'), - (21, 1719, 'attending', '2022-10-05 17:41:59', '2025-12-17 19:47:12', 'AnbyDDkA', '5630958'), - (21, 1721, 'attending', '2022-10-18 20:31:22', '2025-12-17 19:47:13', 'AnbyDDkA', '5630960'), - (21, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AnbyDDkA', '5630961'), - (21, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AnbyDDkA', '5630962'), - (21, 1724, 'maybe', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AnbyDDkA', '5630966'), - (21, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AnbyDDkA', '5630967'), - (21, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AnbyDDkA', '5630968'), - (21, 1727, 'not_attending', '2022-12-02 16:07:50', '2025-12-17 19:47:16', 'AnbyDDkA', '5630969'), - (21, 1731, 'attending', '2022-10-07 14:58:01', '2025-12-17 19:47:12', 'AnbyDDkA', '5635226'), - (21, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AnbyDDkA', '5635406'), - (21, 1735, 'attending', '2022-10-08 17:06:25', '2025-12-17 19:47:12', 'AnbyDDkA', '5637484'), - (21, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AnbyDDkA', '5638765'), - (21, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AnbyDDkA', '5640097'), - (21, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AnbyDDkA', '5640843'), - (21, 1742, 'not_attending', '2022-10-18 20:30:36', '2025-12-17 19:47:13', 'AnbyDDkA', '5641245'), - (21, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AnbyDDkA', '5641521'), - (21, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AnbyDDkA', '5642818'), - (21, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AnbyDDkA', '5652395'), - (21, 1758, 'attending', '2022-10-21 12:56:27', '2025-12-17 19:47:13', 'AnbyDDkA', '5668976'), - (21, 1759, 'attending', '2022-10-21 15:07:34', '2025-12-17 19:47:13', 'AnbyDDkA', '5669097'), - (21, 1761, 'maybe', '2022-11-18 16:15:52', '2025-12-17 19:47:16', 'AnbyDDkA', '5670434'), - (21, 1762, 'attending', '2022-11-18 16:17:22', '2025-12-17 19:47:16', 'AnbyDDkA', '5670445'), - (21, 1764, 'not_attending', '2022-10-24 13:22:45', '2025-12-17 19:47:14', 'AnbyDDkA', '5671637'), - (21, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AnbyDDkA', '5672329'), - (21, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AnbyDDkA', '5674057'), - (21, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AnbyDDkA', '5674060'), - (21, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AnbyDDkA', '5677461'), - (21, 1775, 'attending', '2022-10-27 16:25:50', '2025-12-17 19:47:14', 'AnbyDDkA', '5679063'), - (21, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AnbyDDkA', '5698046'), - (21, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AnbyDDkA', '5699760'), - (21, 1790, 'attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'AnbyDDkA', '5727424'), - (21, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AnbyDDkA', '5741601'), - (21, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AnbyDDkA', '5763458'), - (21, 1805, 'maybe', '2023-01-31 10:33:00', '2025-12-17 19:47:06', 'AnbyDDkA', '5764675'), - (21, 1806, 'maybe', '2023-01-21 03:31:05', '2025-12-17 19:47:05', 'AnbyDDkA', '5764676'), - (21, 1807, 'maybe', '2023-01-10 02:34:21', '2025-12-17 19:47:05', 'AnbyDDkA', '5764677'), - (21, 1808, 'attending', '2023-03-04 08:54:30', '2025-12-17 19:47:08', 'AnbyDDkA', '5764678'), - (21, 1809, 'attending', '2023-04-15 16:10:24', '2025-12-17 19:46:59', 'AnbyDDkA', '5764679'), - (21, 1810, 'maybe', '2023-04-22 22:15:39', '2025-12-17 19:47:00', 'AnbyDDkA', '5764680'), - (21, 1811, 'attending', '2023-05-01 10:08:58', '2025-12-17 19:47:02', 'AnbyDDkA', '5764681'), - (21, 1812, 'attending', '2023-03-06 13:55:22', '2025-12-17 19:47:09', 'AnbyDDkA', '5764682'), - (21, 1813, 'attending', '2023-04-23 02:17:40', '2025-12-17 19:47:01', 'AnbyDDkA', '5764683'), - (21, 1816, 'attending', '2023-05-15 11:33:21', '2025-12-17 19:47:03', 'AnbyDDkA', '5764686'), - (21, 1818, 'not_attending', '2023-02-10 19:42:30', '2025-12-17 19:47:07', 'AnbyDDkA', '5764688'), - (21, 1819, 'attending', '2023-04-01 21:56:12', '2025-12-17 19:46:58', 'AnbyDDkA', '5764689'), - (21, 1820, 'attending', '2023-04-08 18:05:18', '2025-12-17 19:46:58', 'AnbyDDkA', '5764690'), - (21, 1821, 'maybe', '2023-03-16 22:32:32', '2025-12-17 19:46:56', 'AnbyDDkA', '5764691'), - (21, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AnbyDDkA', '5774172'), - (21, 1828, 'not_attending', '2022-11-28 21:34:53', '2025-12-17 19:47:16', 'AnbyDDkA', '5778865'), - (21, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'AnbyDDkA', '5818247'), - (21, 1834, 'not_attending', '2022-12-10 13:22:21', '2025-12-17 19:47:17', 'AnbyDDkA', '5819470'), - (21, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AnbyDDkA', '5819471'), - (21, 1841, 'attending', '2023-01-08 12:00:37', '2025-12-17 19:47:05', 'AnbyDDkA', '5827665'), - (21, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AnbyDDkA', '5827739'), - (21, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AnbyDDkA', '5844306'), - (21, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AnbyDDkA', '5850159'), - (21, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AnbyDDkA', '5858999'), - (21, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AnbyDDkA', '5871984'), - (21, 1855, 'maybe', '2023-01-13 17:23:48', '2025-12-17 19:47:05', 'AnbyDDkA', '5873968'), - (21, 1859, 'attending', '2023-01-21 00:52:55', '2025-12-17 19:47:05', 'AnbyDDkA', '5876234'), - (21, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AnbyDDkA', '5876354'), - (21, 1864, 'attending', '2023-01-16 17:23:43', '2025-12-17 19:47:05', 'AnbyDDkA', '5879675'), - (21, 1865, 'attending', '2023-01-28 17:28:42', '2025-12-17 19:47:06', 'AnbyDDkA', '5879676'), - (21, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AnbyDDkA', '5880939'), - (21, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AnbyDDkA', '5880940'), - (21, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AnbyDDkA', '5880942'), - (21, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AnbyDDkA', '5880943'), - (21, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AnbyDDkA', '5887890'), - (21, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AnbyDDkA', '5888598'), - (21, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AnbyDDkA', '5893260'), - (21, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AnbyDDkA', '5899826'), - (21, 1886, 'maybe', '2023-03-07 11:20:10', '2025-12-17 19:47:09', 'AnbyDDkA', '5899930'), - (21, 1888, 'maybe', '2023-02-17 18:48:01', '2025-12-17 19:47:07', 'AnbyDDkA', '5900197'), - (21, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AnbyDDkA', '5900199'), - (21, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AnbyDDkA', '5900200'), - (21, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AnbyDDkA', '5900202'), - (21, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AnbyDDkA', '5900203'), - (21, 1893, 'not_attending', '2023-02-01 00:51:30', '2025-12-17 19:47:06', 'AnbyDDkA', '5901055'), - (21, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AnbyDDkA', '5901108'), - (21, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AnbyDDkA', '5901126'), - (21, 1897, 'not_attending', '2023-02-05 17:01:02', '2025-12-17 19:47:07', 'AnbyDDkA', '5901128'), - (21, 1899, 'maybe', '2023-02-10 19:42:20', '2025-12-17 19:47:07', 'AnbyDDkA', '5901323'), - (21, 1900, 'attending', '2023-02-01 00:45:28', '2025-12-17 19:47:06', 'AnbyDDkA', '5901331'), - (21, 1906, 'not_attending', '2023-03-09 13:27:58', '2025-12-17 19:47:09', 'AnbyDDkA', '5904523'), - (21, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AnbyDDkA', '5909655'), - (21, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AnbyDDkA', '5910522'), - (21, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AnbyDDkA', '5910526'), - (21, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AnbyDDkA', '5910528'), - (21, 1922, 'maybe', '2023-02-13 00:49:06', '2025-12-17 19:47:07', 'AnbyDDkA', '5916219'), - (21, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AnbyDDkA', '5936234'), - (21, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AnbyDDkA', '5958351'), - (21, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AnbyDDkA', '5959751'), - (21, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AnbyDDkA', '5959755'), - (21, 1940, 'attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AnbyDDkA', '5960055'), - (21, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AnbyDDkA', '5961684'), - (21, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'AnbyDDkA', '5962132'), - (21, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'AnbyDDkA', '5962133'), - (21, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AnbyDDkA', '5962134'), - (21, 1947, 'not_attending', '2023-03-05 00:18:30', '2025-12-17 19:47:09', 'AnbyDDkA', '5962233'), - (21, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AnbyDDkA', '5962317'), - (21, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AnbyDDkA', '5962318'), - (21, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AnbyDDkA', '5965933'), - (21, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AnbyDDkA', '5967014'), - (21, 1956, 'maybe', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'AnbyDDkA', '5972763'), - (21, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AnbyDDkA', '5972815'), - (21, 1958, 'maybe', '2023-03-06 13:58:58', '2025-12-17 19:47:09', 'AnbyDDkA', '5972821'), - (21, 1960, 'attending', '2023-03-06 14:32:12', '2025-12-17 19:47:09', 'AnbyDDkA', '5973267'), - (21, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AnbyDDkA', '5974016'), - (21, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AnbyDDkA', '5981515'), - (21, 1967, 'attending', '2023-03-12 04:20:09', '2025-12-17 19:47:10', 'AnbyDDkA', '5985650'), - (21, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AnbyDDkA', '5993516'), - (21, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AnbyDDkA', '5998939'), - (21, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AnbyDDkA', '6028191'), - (21, 1979, 'maybe', '2023-03-18 22:21:42', '2025-12-17 19:46:56', 'AnbyDDkA', '6030009'), - (21, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AnbyDDkA', '6040066'), - (21, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AnbyDDkA', '6042717'), - (21, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AnbyDDkA', '6044838'), - (21, 1987, 'maybe', '2023-04-15 23:00:58', '2025-12-17 19:47:00', 'AnbyDDkA', '6044839'), - (21, 1988, 'maybe', '2023-04-26 14:25:01', '2025-12-17 19:47:01', 'AnbyDDkA', '6044840'), - (21, 1989, 'maybe', '2023-05-14 21:43:40', '2025-12-17 19:47:03', 'AnbyDDkA', '6044842'), - (21, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AnbyDDkA', '6045684'), - (21, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'AnbyDDkA', '6050104'), - (21, 2002, 'maybe', '2023-04-28 15:59:34', '2025-12-17 19:47:01', 'AnbyDDkA', '6052605'), - (21, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AnbyDDkA', '6053195'), - (21, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AnbyDDkA', '6053198'), - (21, 2010, 'maybe', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AnbyDDkA', '6056085'), - (21, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AnbyDDkA', '6056916'), - (21, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AnbyDDkA', '6059290'), - (21, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AnbyDDkA', '6060328'), - (21, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AnbyDDkA', '6061037'), - (21, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AnbyDDkA', '6061039'), - (21, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AnbyDDkA', '6067245'), - (21, 2025, 'attending', '2023-04-23 02:17:34', '2025-12-17 19:47:00', 'AnbyDDkA', '6067457'), - (21, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AnbyDDkA', '6068094'), - (21, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AnbyDDkA', '6068252'), - (21, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AnbyDDkA', '6068253'), - (21, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AnbyDDkA', '6068254'), - (21, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AnbyDDkA', '6068280'), - (21, 2032, 'not_attending', '2023-05-28 01:49:32', '2025-12-17 19:47:04', 'AnbyDDkA', '6068281'), - (21, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AnbyDDkA', '6069093'), - (21, 2035, 'not_attending', '2023-05-04 18:48:28', '2025-12-17 19:47:02', 'AnbyDDkA', '6070142'), - (21, 2038, 'maybe', '2023-04-28 15:59:28', '2025-12-17 19:47:01', 'AnbyDDkA', '6071944'), - (21, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'AnbyDDkA', '6072528'), - (21, 2042, 'attending', '2023-04-24 20:43:19', '2025-12-17 19:47:01', 'AnbyDDkA', '6072941'), - (21, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AnbyDDkA', '6079840'), - (21, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AnbyDDkA', '6083398'), - (21, 2054, 'maybe', '2023-05-14 21:43:45', '2025-12-17 19:47:03', 'AnbyDDkA', '6093445'), - (21, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AnbyDDkA', '6093504'), - (21, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AnbyDDkA', '6097414'), - (21, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AnbyDDkA', '6097442'), - (21, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AnbyDDkA', '6097684'), - (21, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AnbyDDkA', '6098762'), - (21, 2064, 'maybe', '2023-06-09 13:39:25', '2025-12-17 19:46:50', 'AnbyDDkA', '6099988'), - (21, 2065, 'maybe', '2023-06-16 04:47:42', '2025-12-17 19:46:49', 'AnbyDDkA', '6101169'), - (21, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AnbyDDkA', '6101361'), - (21, 2067, 'maybe', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AnbyDDkA', '6101362'), - (21, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AnbyDDkA', '6103752'), - (21, 2071, 'maybe', '2023-05-15 17:13:53', '2025-12-17 19:47:03', 'AnbyDDkA', '6104949'), - (21, 2073, 'attending', '2023-05-15 19:05:46', '2025-12-17 19:47:03', 'AnbyDDkA', '6106002'), - (21, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AnbyDDkA', '6107314'), - (21, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'AnbyDDkA', '6120034'), - (21, 2094, 'not_attending', '2023-06-09 13:39:11', '2025-12-17 19:47:04', 'AnbyDDkA', '6135924'), - (21, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AnbyDDkA', '6136733'), - (21, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AnbyDDkA', '6137989'), - (21, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AnbyDDkA', '6150864'), - (21, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'AnbyDDkA', '6155491'), - (21, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AnbyDDkA', '6164417'), - (21, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AnbyDDkA', '6166388'), - (21, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'AnbyDDkA', '6176439'), - (21, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AnbyDDkA', '6182410'), - (21, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AnbyDDkA', '6185812'), - (21, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AnbyDDkA', '6187651'), - (21, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AnbyDDkA', '6187963'), - (21, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AnbyDDkA', '6187964'), - (21, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AnbyDDkA', '6187966'), - (21, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AnbyDDkA', '6187967'), - (21, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AnbyDDkA', '6187969'), - (21, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AnbyDDkA', '6334878'), - (21, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AnbyDDkA', '6337236'), - (21, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AnbyDDkA', '6337970'), - (21, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AnbyDDkA', '6338308'), - (21, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'AnbyDDkA', '6340845'), - (21, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AnbyDDkA', '6341710'), - (21, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AnbyDDkA', '6342044'), - (21, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AnbyDDkA', '6342298'), - (21, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AnbyDDkA', '6343294'), - (21, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AnbyDDkA', '6347034'), - (21, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AnbyDDkA', '6347056'), - (21, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AnbyDDkA', '6353830'), - (21, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AnbyDDkA', '6353831'), - (21, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AnbyDDkA', '6357867'), - (21, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AnbyDDkA', '6358652'), - (21, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AnbyDDkA', '6361709'), - (21, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AnbyDDkA', '6361710'), - (21, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AnbyDDkA', '6361711'), - (21, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AnbyDDkA', '6361712'), - (21, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AnbyDDkA', '6361713'), - (21, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AnbyDDkA', '6382573'), - (21, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AnbyDDkA', '6388604'), - (21, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AnbyDDkA', '6394629'), - (21, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AnbyDDkA', '6394631'), - (21, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AnbyDDkA', '6440863'), - (21, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AnbyDDkA', '6445440'), - (21, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AnbyDDkA', '6453951'), - (21, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AnbyDDkA', '6461696'), - (21, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AnbyDDkA', '6462129'), - (21, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AnbyDDkA', '6463218'), - (21, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AnbyDDkA', '6472181'), - (21, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AnbyDDkA', '6482693'), - (21, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'AnbyDDkA', '6484200'), - (21, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'AnbyDDkA', '6484680'), - (21, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AnbyDDkA', '6507741'), - (21, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AnbyDDkA', '6514659'), - (21, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AnbyDDkA', '6514660'), - (21, 2324, 'attending', '2023-12-07 20:59:19', '2025-12-17 19:46:49', 'AnbyDDkA', '6514662'), - (21, 2325, 'attending', '2023-12-07 20:59:31', '2025-12-17 19:46:36', 'AnbyDDkA', '6514663'), - (21, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AnbyDDkA', '6519103'), - (21, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AnbyDDkA', '6535681'), - (21, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AnbyDDkA', '6584747'), - (21, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AnbyDDkA', '6587097'), - (21, 2356, 'maybe', '2023-12-09 22:49:55', '2025-12-17 19:46:36', 'AnbyDDkA', '6593340'), - (21, 2362, 'maybe', '2023-12-07 21:02:23', '2025-12-17 19:46:49', 'AnbyDDkA', '6605708'), - (21, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AnbyDDkA', '6609022'), - (21, 2366, 'maybe', '2023-12-07 22:41:31', '2025-12-17 19:46:36', 'AnbyDDkA', '6615304'), - (21, 2367, 'attending', '2023-12-09 22:39:14', '2025-12-17 19:46:49', 'AnbyDDkA', '6620890'), - (21, 2371, 'maybe', '2023-12-15 22:00:03', '2025-12-17 19:46:36', 'AnbyDDkA', '6624495'), - (21, 2373, 'attending', '2023-12-21 17:52:07', '2025-12-17 19:46:38', 'AnbyDDkA', '6632678'), - (21, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AnbyDDkA', '6632757'), - (21, 2376, 'not_attending', '2024-01-15 09:23:41', '2025-12-17 19:46:40', 'AnbyDDkA', '6642900'), - (21, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AnbyDDkA', '6644187'), - (21, 2380, 'attending', '2023-12-31 17:28:43', '2025-12-17 19:46:37', 'AnbyDDkA', '6645105'), - (21, 2381, 'maybe', '2024-01-01 16:49:40', '2025-12-17 19:46:37', 'AnbyDDkA', '6646398'), - (21, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AnbyDDkA', '6648951'), - (21, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AnbyDDkA', '6648952'), - (21, 2388, 'attending', '2024-01-03 19:27:06', '2025-12-17 19:46:37', 'AnbyDDkA', '6649244'), - (21, 2389, 'attending', '2024-01-03 20:03:26', '2025-12-17 19:46:40', 'AnbyDDkA', '6651094'), - (21, 2390, 'maybe', '2024-01-07 18:52:43', '2025-12-17 19:46:37', 'AnbyDDkA', '6651141'), - (21, 2393, 'not_attending', '2024-01-15 00:30:36', '2025-12-17 19:46:38', 'AnbyDDkA', '6654468'), - (21, 2394, 'not_attending', '2024-01-15 09:21:59', '2025-12-17 19:46:38', 'AnbyDDkA', '6654470'), - (21, 2395, 'not_attending', '2024-01-16 18:02:47', '2025-12-17 19:46:38', 'AnbyDDkA', '6654471'), - (21, 2396, 'not_attending', '2024-01-15 09:21:11', '2025-12-17 19:46:38', 'AnbyDDkA', '6655401'), - (21, 2399, 'maybe', '2024-01-13 23:46:42', '2025-12-17 19:46:38', 'AnbyDDkA', '6657583'), - (21, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AnbyDDkA', '6661585'), - (21, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AnbyDDkA', '6661588'), - (21, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AnbyDDkA', '6661589'), - (21, 2404, 'not_attending', '2024-01-15 09:21:36', '2025-12-17 19:46:38', 'AnbyDDkA', '6666858'), - (21, 2405, 'not_attending', '2024-01-15 09:22:03', '2025-12-17 19:46:38', 'AnbyDDkA', '6667332'), - (21, 2406, 'not_attending', '2024-01-15 09:23:01', '2025-12-17 19:46:40', 'AnbyDDkA', '6692344'), - (21, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AnbyDDkA', '6699906'), - (21, 2408, 'attending', '2024-01-15 09:23:24', '2025-12-17 19:46:40', 'AnbyDDkA', '6699907'), - (21, 2409, 'not_attending', '2024-02-01 17:57:46', '2025-12-17 19:46:41', 'AnbyDDkA', '6699909'), - (21, 2410, 'attending', '2024-02-05 14:43:23', '2025-12-17 19:46:41', 'AnbyDDkA', '6699911'), - (21, 2411, 'attending', '2024-02-13 05:40:07', '2025-12-17 19:46:41', 'AnbyDDkA', '6699913'), - (21, 2412, 'attending', '2024-02-19 16:50:51', '2025-12-17 19:46:43', 'AnbyDDkA', '6700717'), - (21, 2413, 'maybe', '2024-02-13 05:40:23', '2025-12-17 19:46:42', 'AnbyDDkA', '6700719'), - (21, 2414, 'attending', '2024-01-16 01:37:31', '2025-12-17 19:46:40', 'AnbyDDkA', '6701000'), - (21, 2415, 'attending', '2024-01-16 01:42:34', '2025-12-17 19:46:40', 'AnbyDDkA', '6701001'), - (21, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AnbyDDkA', '6701109'), - (21, 2419, 'maybe', '2024-01-18 15:36:18', '2025-12-17 19:46:41', 'AnbyDDkA', '6704505'), - (21, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AnbyDDkA', '6705219'), - (21, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AnbyDDkA', '6710153'), - (21, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AnbyDDkA', '6711552'), - (21, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AnbyDDkA', '6711553'), - (21, 2432, 'not_attending', '2024-02-03 11:47:26', '2025-12-17 19:46:41', 'AnbyDDkA', '6712822'), - (21, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AnbyDDkA', '6722688'), - (21, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AnbyDDkA', '6730620'), - (21, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AnbyDDkA', '6730642'), - (21, 2443, 'not_attending', '2024-02-03 11:47:20', '2025-12-17 19:46:41', 'AnbyDDkA', '6733775'), - (21, 2450, 'maybe', '2024-02-11 04:47:37', '2025-12-17 19:46:41', 'AnbyDDkA', '6738807'), - (21, 2452, 'maybe', '2024-02-13 14:13:02', '2025-12-17 19:46:41', 'AnbyDDkA', '6740361'), - (21, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AnbyDDkA', '6740364'), - (21, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AnbyDDkA', '6743829'), - (21, 2461, 'attending', '2024-02-10 20:13:30', '2025-12-17 19:46:41', 'AnbyDDkA', '6744245'), - (21, 2467, 'maybe', '2024-02-25 14:46:29', '2025-12-17 19:46:43', 'AnbyDDkA', '7029987'), - (21, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AnbyDDkA', '7030380'), - (21, 2471, 'not_attending', '2024-02-19 16:51:46', '2025-12-17 19:46:42', 'AnbyDDkA', '7032425'), - (21, 2472, 'not_attending', '2024-02-20 08:52:02', '2025-12-17 19:46:42', 'AnbyDDkA', '7033677'), - (21, 2474, 'attending', '2024-02-21 00:20:32', '2025-12-17 19:46:43', 'AnbyDDkA', '7035415'), - (21, 2475, 'not_attending', '2024-02-28 10:41:45', '2025-12-17 19:46:43', 'AnbyDDkA', '7035643'), - (21, 2478, 'attending', '2024-02-21 00:20:10', '2025-12-17 19:46:43', 'AnbyDDkA', '7036478'), - (21, 2480, 'attending', '2024-02-25 14:46:33', '2025-12-17 19:46:43', 'AnbyDDkA', '7042160'), - (21, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AnbyDDkA', '7044715'), - (21, 2489, 'not_attending', '2024-02-28 10:41:52', '2025-12-17 19:46:43', 'AnbyDDkA', '7050161'), - (21, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AnbyDDkA', '7050318'), - (21, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AnbyDDkA', '7050319'), - (21, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AnbyDDkA', '7050322'), - (21, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AnbyDDkA', '7057804'), - (21, 2500, 'maybe', '2024-03-06 21:18:23', '2025-12-17 19:46:43', 'AnbyDDkA', '7058603'), - (21, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'AnbyDDkA', '7059866'), - (21, 2504, 'not_attending', '2024-03-21 17:42:49', '2025-12-17 19:46:33', 'AnbyDDkA', '7063296'), - (21, 2505, 'maybe', '2024-03-21 17:42:44', '2025-12-17 19:46:33', 'AnbyDDkA', '7069163'), - (21, 2506, 'attending', '2024-03-09 23:51:00', '2025-12-17 19:46:44', 'AnbyDDkA', '7069242'), - (21, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AnbyDDkA', '7072824'), - (21, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AnbyDDkA', '7074348'), - (21, 2510, 'maybe', '2024-03-21 17:42:37', '2025-12-17 19:46:33', 'AnbyDDkA', '7074350'), - (21, 2511, 'maybe', '2024-04-11 22:25:06', '2025-12-17 19:46:33', 'AnbyDDkA', '7074351'), - (21, 2513, 'maybe', '2024-04-14 16:39:21', '2025-12-17 19:46:34', 'AnbyDDkA', '7074353'), - (21, 2522, 'maybe', '2024-07-15 19:42:03', '2025-12-17 19:46:30', 'AnbyDDkA', '7074362'), - (21, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AnbyDDkA', '7074364'), - (21, 2525, 'not_attending', '2024-06-13 20:33:31', '2025-12-17 19:46:28', 'AnbyDDkA', '7074365'), - (21, 2529, 'maybe', '2024-05-22 23:03:41', '2025-12-17 19:46:35', 'AnbyDDkA', '7074369'), - (21, 2532, 'not_attending', '2024-09-04 19:03:11', '2025-12-17 19:46:32', 'AnbyDDkA', '7074383'), - (21, 2539, 'attending', '2024-04-06 21:30:28', '2025-12-17 19:46:33', 'AnbyDDkA', '7085486'), - (21, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AnbyDDkA', '7089267'), - (21, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AnbyDDkA', '7098747'), - (21, 2551, 'attending', '2024-04-01 20:46:28', '2025-12-17 19:46:33', 'AnbyDDkA', '7109912'), - (21, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AnbyDDkA', '7113468'), - (21, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AnbyDDkA', '7114856'), - (21, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AnbyDDkA', '7114951'), - (21, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AnbyDDkA', '7114955'), - (21, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AnbyDDkA', '7114956'), - (21, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AnbyDDkA', '7114957'), - (21, 2564, 'maybe', '2024-04-10 20:14:40', '2025-12-17 19:46:33', 'AnbyDDkA', '7134735'), - (21, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AnbyDDkA', '7153615'), - (21, 2571, 'maybe', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AnbyDDkA', '7159484'), - (21, 2572, 'attending', '2024-04-13 10:55:40', '2025-12-17 19:46:33', 'AnbyDDkA', '7159522'), - (21, 2573, 'maybe', '2024-04-14 16:38:57', '2025-12-17 19:46:34', 'AnbyDDkA', '7160612'), - (21, 2574, 'attending', '2024-04-13 17:50:15', '2025-12-17 19:46:33', 'AnbyDDkA', '7163825'), - (21, 2578, 'not_attending', '2024-04-13 19:34:31', '2025-12-17 19:46:34', 'AnbyDDkA', '7167016'), - (21, 2580, 'not_attending', '2024-04-13 19:34:36', '2025-12-17 19:46:34', 'AnbyDDkA', '7167272'), - (21, 2583, 'not_attending', '2024-04-14 16:38:43', '2025-12-17 19:46:34', 'AnbyDDkA', '7172946'), - (21, 2584, 'not_attending', '2024-04-21 16:30:55', '2025-12-17 19:46:34', 'AnbyDDkA', '7175057'), - (21, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AnbyDDkA', '7178446'), - (21, 2591, 'maybe', '2024-04-19 21:47:13', '2025-12-17 19:46:34', 'AnbyDDkA', '7180957'), - (21, 2592, 'attending', '2024-04-20 00:02:57', '2025-12-17 19:46:34', 'AnbyDDkA', '7180959'), - (21, 2596, 'attending', '2024-04-21 13:02:56', '2025-12-17 19:46:34', 'AnbyDDkA', '7183788'), - (21, 2597, 'not_attending', '2024-04-26 21:57:00', '2025-12-17 19:46:34', 'AnbyDDkA', '7186726'), - (21, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AnbyDDkA', '7220467'), - (21, 2609, 'attending', '2024-05-06 19:29:54', '2025-12-17 19:46:35', 'AnbyDDkA', '7240354'), - (21, 2614, 'maybe', '2024-05-10 13:12:06', '2025-12-17 19:46:35', 'AnbyDDkA', '7247645'), - (21, 2615, 'not_attending', '2024-05-03 14:48:20', '2025-12-17 19:46:35', 'AnbyDDkA', '7249787'), - (21, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AnbyDDkA', '7251633'), - (21, 2619, 'maybe', '2024-05-10 13:12:09', '2025-12-17 19:46:35', 'AnbyDDkA', '7252965'), - (21, 2622, 'not_attending', '2024-05-10 13:12:16', '2025-12-17 19:46:35', 'AnbyDDkA', '7262064'), - (21, 2623, 'attending', '2024-05-10 13:07:31', '2025-12-17 19:46:35', 'AnbyDDkA', '7263048'), - (21, 2626, 'attending', '2024-05-13 18:42:23', '2025-12-17 19:46:35', 'AnbyDDkA', '7264723'), - (21, 2627, 'not_attending', '2024-05-13 18:32:35', '2025-12-17 19:46:35', 'AnbyDDkA', '7264724'), - (21, 2628, 'maybe', '2024-05-27 04:08:14', '2025-12-17 19:46:36', 'AnbyDDkA', '7264725'), - (21, 2629, 'attending', '2024-05-27 04:08:17', '2025-12-17 19:46:28', 'AnbyDDkA', '7264726'), - (21, 2643, 'attending', '2024-05-18 12:26:57', '2025-12-17 19:46:35', 'AnbyDDkA', '7276587'), - (21, 2647, 'attending', '2024-06-09 16:04:54', '2025-12-17 19:46:28', 'AnbyDDkA', '7282057'), - (21, 2649, 'attending', '2024-05-21 12:21:30', '2025-12-17 19:46:35', 'AnbyDDkA', '7282950'), - (21, 2653, 'attending', '2024-05-25 17:10:28', '2025-12-17 19:46:35', 'AnbyDDkA', '7289186'), - (21, 2659, 'maybe', '2024-06-01 18:41:24', '2025-12-17 19:46:36', 'AnbyDDkA', '7299599'), - (21, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AnbyDDkA', '7302674'), - (21, 2669, 'attending', '2024-06-08 19:54:54', '2025-12-17 19:46:36', 'AnbyDDkA', '7318057'), - (21, 2674, 'maybe', '2024-07-06 21:52:34', '2025-12-17 19:46:29', 'AnbyDDkA', '7319480'), - (21, 2676, 'attending', '2024-08-31 20:55:36', '2025-12-17 19:46:32', 'AnbyDDkA', '7319482'), - (21, 2678, 'not_attending', '2024-06-13 19:48:51', '2025-12-17 19:46:28', 'AnbyDDkA', '7319489'), - (21, 2679, 'maybe', '2024-06-16 17:40:28', '2025-12-17 19:46:29', 'AnbyDDkA', '7319490'), - (21, 2686, 'maybe', '2024-06-21 18:05:31', '2025-12-17 19:46:29', 'AnbyDDkA', '7323802'), - (21, 2688, 'maybe', '2024-06-16 17:40:21', '2025-12-17 19:46:29', 'AnbyDDkA', '7324073'), - (21, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AnbyDDkA', '7324074'), - (21, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AnbyDDkA', '7324075'), - (21, 2691, 'attending', '2024-07-13 18:49:56', '2025-12-17 19:46:30', 'AnbyDDkA', '7324076'), - (21, 2692, 'attending', '2024-07-27 14:28:39', '2025-12-17 19:46:30', 'AnbyDDkA', '7324077'), - (21, 2693, 'not_attending', '2024-07-27 23:04:28', '2025-12-17 19:46:31', 'AnbyDDkA', '7324078'), - (21, 2694, 'attending', '2024-08-09 12:40:36', '2025-12-17 19:46:31', 'AnbyDDkA', '7324079'), - (21, 2695, 'not_attending', '2024-08-11 20:27:05', '2025-12-17 19:46:31', 'AnbyDDkA', '7324080'), - (21, 2696, 'not_attending', '2024-08-22 12:26:19', '2025-12-17 19:46:32', 'AnbyDDkA', '7324081'), - (21, 2697, 'attending', '2024-08-27 16:14:48', '2025-12-17 19:46:32', 'AnbyDDkA', '7324082'), - (21, 2698, 'attending', '2024-09-01 12:08:50', '2025-12-17 19:46:24', 'AnbyDDkA', '7324083'), - (21, 2700, 'not_attending', '2024-06-14 14:26:26', '2025-12-17 19:46:28', 'AnbyDDkA', '7324388'), - (21, 2707, 'attending', '2024-06-13 14:47:50', '2025-12-17 19:46:28', 'AnbyDDkA', '7324952'), - (21, 2711, 'maybe', '2024-07-19 21:40:32', '2025-12-17 19:46:30', 'AnbyDDkA', '7326524'), - (21, 2716, 'maybe', '2024-06-21 18:12:43', '2025-12-17 19:46:29', 'AnbyDDkA', '7329096'), - (21, 2719, 'attending', '2024-06-18 18:09:29', '2025-12-17 19:46:29', 'AnbyDDkA', '7331305'), - (21, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AnbyDDkA', '7331457'), - (21, 2723, 'maybe', '2024-06-21 18:05:42', '2025-12-17 19:46:29', 'AnbyDDkA', '7332389'), - (21, 2736, 'not_attending', '2024-06-29 21:30:36', '2025-12-17 19:46:29', 'AnbyDDkA', '7342038'), - (21, 2749, 'maybe', '2024-07-09 12:46:30', '2025-12-17 19:46:29', 'AnbyDDkA', '7355496'), - (21, 2753, 'maybe', '2024-07-09 12:46:43', '2025-12-17 19:46:30', 'AnbyDDkA', '7355538'), - (21, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AnbyDDkA', '7356752'), - (21, 2755, 'not_attending', '2024-07-09 19:34:47', '2025-12-17 19:46:29', 'AnbyDDkA', '7357808'), - (21, 2757, 'not_attending', '2024-07-12 20:08:04', '2025-12-17 19:46:30', 'AnbyDDkA', '7358733'), - (21, 2759, 'attending', '2024-07-12 20:07:57', '2025-12-17 19:46:30', 'AnbyDDkA', '7359624'), - (21, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'AnbyDDkA', '7363643'), - (21, 2770, 'attending', '2024-07-20 20:27:02', '2025-12-17 19:46:30', 'AnbyDDkA', '7368196'), - (21, 2772, 'not_attending', '2024-07-23 13:42:41', '2025-12-17 19:46:30', 'AnbyDDkA', '7368267'), - (21, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AnbyDDkA', '7368606'), - (21, 2776, 'maybe', '2024-07-23 13:42:30', '2025-12-17 19:46:30', 'AnbyDDkA', '7370690'), - (21, 2781, 'not_attending', '2024-07-25 21:16:33', '2025-12-17 19:46:30', 'AnbyDDkA', '7373194'), - (21, 2785, 'maybe', '2024-07-31 05:28:32', '2025-12-17 19:46:31', 'AnbyDDkA', '7380988'), - (21, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AnbyDDkA', '7397462'), - (21, 2802, 'not_attending', '2024-09-02 10:19:46', '2025-12-17 19:46:32', 'AnbyDDkA', '7397463'), - (21, 2808, 'attending', '2024-08-27 16:14:37', '2025-12-17 19:46:32', 'AnbyDDkA', '7412860'), - (21, 2810, 'not_attending', '2024-09-01 12:08:41', '2025-12-17 19:46:32', 'AnbyDDkA', '7415553'), - (21, 2811, 'attending', '2024-08-30 23:32:07', '2025-12-17 19:46:32', 'AnbyDDkA', '7418895'), - (21, 2813, 'attending', '2024-09-03 15:31:18', '2025-12-17 19:46:24', 'AnbyDDkA', '7424105'), - (21, 2814, 'attending', '2024-09-07 00:10:13', '2025-12-17 19:46:24', 'AnbyDDkA', '7424267'), - (21, 2821, 'maybe', '2024-10-09 22:01:07', '2025-12-17 19:46:26', 'AnbyDDkA', '7424275'), - (21, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AnbyDDkA', '7424276'), - (21, 2823, 'maybe', '2024-09-07 12:26:07', '2025-12-17 19:46:24', 'AnbyDDkA', '7430247'), - (21, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AnbyDDkA', '7432751'), - (21, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AnbyDDkA', '7432752'), - (21, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AnbyDDkA', '7432753'), - (21, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AnbyDDkA', '7432754'), - (21, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AnbyDDkA', '7432755'), - (21, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AnbyDDkA', '7432756'), - (21, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AnbyDDkA', '7432758'), - (21, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AnbyDDkA', '7432759'), - (21, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AnbyDDkA', '7433834'), - (21, 2834, 'attending', '2024-09-11 01:52:43', '2025-12-17 19:46:25', 'AnbyDDkA', '7433852'), - (21, 2836, 'attending', '2024-09-12 18:31:42', '2025-12-17 19:46:25', 'AnbyDDkA', '7438708'), - (21, 2837, 'attending', '2024-09-12 18:57:03', '2025-12-17 19:46:25', 'AnbyDDkA', '7438711'), - (21, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AnbyDDkA', '7470197'), - (21, 2875, 'maybe', '2024-10-11 13:36:26', '2025-12-17 19:46:26', 'AnbyDDkA', '7482241'), - (21, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AnbyDDkA', '7685613'), - (21, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AnbyDDkA', '7688194'), - (21, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AnbyDDkA', '7688196'), - (21, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AnbyDDkA', '7688289'), - (21, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AnbyDDkA', '7692763'), - (21, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AnbyDDkA', '7697552'), - (21, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AnbyDDkA', '7699878'), - (21, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AnbyDDkA', '7704043'), - (21, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AnbyDDkA', '7712467'), - (21, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'AnbyDDkA', '7713585'), - (21, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AnbyDDkA', '7713586'), - (21, 2942, 'attending', '2025-02-16 17:12:45', '2025-12-17 19:46:24', 'AnbyDDkA', '7725960'), - (21, 2943, 'not_attending', '2025-02-16 17:12:53', '2025-12-17 19:46:18', 'AnbyDDkA', '7725961'), - (21, 2944, 'maybe', '2025-02-16 17:12:50', '2025-12-17 19:46:24', 'AnbyDDkA', '7725963'), - (21, 2945, 'maybe', '2025-02-16 17:12:57', '2025-12-17 19:46:19', 'AnbyDDkA', '7725964'), - (21, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AnbyDDkA', '7738518'), - (21, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AnbyDDkA', '7750636'), - (21, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AnbyDDkA', '7796540'), - (21, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AnbyDDkA', '7796541'), - (21, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AnbyDDkA', '7796542'), - (21, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AnbyDDkA', '7825913'), - (21, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AnbyDDkA', '7826209'), - (21, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AnbyDDkA', '7834742'), - (21, 2988, 'maybe', '2025-02-08 18:33:04', '2025-12-17 19:46:23', 'AnbyDDkA', '7839569'), - (21, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'AnbyDDkA', '7842108'), - (21, 2990, 'attending', '2025-02-11 12:44:38', '2025-12-17 19:46:23', 'AnbyDDkA', '7842898'), - (21, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AnbyDDkA', '7842902'), - (21, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AnbyDDkA', '7842903'), - (21, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AnbyDDkA', '7842904'), - (21, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AnbyDDkA', '7842905'), - (21, 3000, 'maybe', '2025-02-21 12:51:13', '2025-12-17 19:46:24', 'AnbyDDkA', '7852541'), - (21, 3001, 'attending', '2025-02-19 21:24:27', '2025-12-17 19:46:24', 'AnbyDDkA', '7854184'), - (21, 3002, 'attending', '2025-02-21 12:51:20', '2025-12-17 19:46:24', 'AnbyDDkA', '7854212'), - (21, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AnbyDDkA', '7855719'), - (21, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AnbyDDkA', '7860683'), - (21, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AnbyDDkA', '7860684'), - (21, 3011, 'maybe', '2025-03-01 23:41:55', '2025-12-17 19:46:24', 'AnbyDDkA', '7865624'), - (21, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AnbyDDkA', '7866095'), - (21, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AnbyDDkA', '7869170'), - (21, 3014, 'attending', '2025-04-04 03:48:37', '2025-12-17 19:46:19', 'AnbyDDkA', '7869185'), - (21, 3015, 'not_attending', '2025-04-18 15:49:43', '2025-12-17 19:46:20', 'AnbyDDkA', '7869186'), - (21, 3016, 'attending', '2025-04-17 07:52:41', '2025-12-17 19:46:20', 'AnbyDDkA', '7869187'), - (21, 3017, 'maybe', '2025-03-22 18:53:34', '2025-12-17 19:46:19', 'AnbyDDkA', '7869188'), - (21, 3018, 'attending', '2025-04-11 19:27:04', '2025-12-17 19:46:20', 'AnbyDDkA', '7869189'), - (21, 3020, 'attending', '2025-04-18 15:49:32', '2025-12-17 19:46:20', 'AnbyDDkA', '7869191'), - (21, 3021, 'maybe', '2025-04-12 21:23:09', '2025-12-17 19:46:20', 'AnbyDDkA', '7869192'), - (21, 3029, 'attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AnbyDDkA', '7869201'), - (21, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AnbyDDkA', '7877465'), - (21, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AnbyDDkA', '7878570'), - (21, 3045, 'not_attending', '2025-04-04 03:48:55', '2025-12-17 19:46:19', 'AnbyDDkA', '7882691'), - (21, 3046, 'attending', '2025-04-12 21:21:59', '2025-12-17 19:46:20', 'AnbyDDkA', '7882692'), - (21, 3047, 'not_attending', '2025-04-18 15:49:41', '2025-12-17 19:46:20', 'AnbyDDkA', '7882693'), - (21, 3048, 'attending', '2025-04-18 15:48:31', '2025-12-17 19:46:20', 'AnbyDDkA', '7882694'), - (21, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AnbyDDkA', '7888250'), - (21, 3083, 'attending', '2025-04-08 17:14:36', '2025-12-17 19:46:20', 'AnbyDDkA', '7903308'), - (21, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AnbyDDkA', '7904777'), - (21, 3091, 'maybe', '2025-04-18 15:48:04', '2025-12-17 19:46:20', 'AnbyDDkA', '8340289'), - (21, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AnbyDDkA', '8349164'), - (21, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AnbyDDkA', '8349545'), - (21, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AnbyDDkA', '8353584'), - (21, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AnbyDDkA', '8368028'), - (21, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AnbyDDkA', '8368029'), - (21, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AnbyDDkA', '8388462'), - (21, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AnbyDDkA', '8400273'), - (21, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AnbyDDkA', '8400274'), - (21, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AnbyDDkA', '8400275'), - (21, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'AnbyDDkA', '8400276'), - (21, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AnbyDDkA', '8404977'), - (21, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AnbyDDkA', '8430783'), - (21, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AnbyDDkA', '8430784'), - (21, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AnbyDDkA', '8430799'), - (21, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AnbyDDkA', '8430800'), - (21, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AnbyDDkA', '8430801'), - (21, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AnbyDDkA', '8438709'), - (21, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AnbyDDkA', '8457738'), - (21, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AnbyDDkA', '8459566'), - (21, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AnbyDDkA', '8459567'), - (21, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AnbyDDkA', '8461032'), - (21, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnbyDDkA', '8477877'), - (21, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnbyDDkA', '8485688'), - (21, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnbyDDkA', '8490587'), - (21, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnbyDDkA', '8493552'), - (21, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnbyDDkA', '8493553'), - (21, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnbyDDkA', '8493554'), - (21, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnbyDDkA', '8493555'), - (21, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnbyDDkA', '8493556'), - (21, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnbyDDkA', '8493557'), - (21, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnbyDDkA', '8493558'), - (21, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnbyDDkA', '8493559'), - (21, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnbyDDkA', '8493560'), - (21, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnbyDDkA', '8493561'), - (21, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnbyDDkA', '8493572'), - (21, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnbyDDkA', '8540725'), - (21, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnbyDDkA', '8555421'), - (22, 1152, 'attending', '2022-01-12 15:47:46', '2025-12-17 19:47:31', 'd5Dx1pO4', '4708705'), - (22, 1153, 'attending', '2022-01-17 23:37:50', '2025-12-17 19:47:32', 'd5Dx1pO4', '4708707'), - (22, 1154, 'maybe', '2022-01-24 01:22:34', '2025-12-17 19:47:32', 'd5Dx1pO4', '4708708'), - (22, 1173, 'attending', '2022-01-07 20:33:28', '2025-12-17 19:47:31', 'd5Dx1pO4', '4736495'), - (22, 1174, 'maybe', '2022-01-14 04:04:20', '2025-12-17 19:47:31', 'd5Dx1pO4', '4736496'), - (22, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd5Dx1pO4', '4736497'), - (22, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd5Dx1pO4', '4736499'), - (22, 1178, 'attending', '2022-01-25 01:05:52', '2025-12-17 19:47:32', 'd5Dx1pO4', '4736500'), - (22, 1180, 'attending', '2022-02-22 15:39:07', '2025-12-17 19:47:33', 'd5Dx1pO4', '4736502'), - (22, 1181, 'attending', '2022-03-02 20:34:32', '2025-12-17 19:47:33', 'd5Dx1pO4', '4736503'), - (22, 1182, 'attending', '2022-03-08 23:14:57', '2025-12-17 19:47:33', 'd5Dx1pO4', '4736504'), - (22, 1183, 'maybe', '2022-01-11 03:25:24', '2025-12-17 19:47:31', 'd5Dx1pO4', '4742171'), - (22, 1184, 'maybe', '2022-01-11 03:33:39', '2025-12-17 19:47:31', 'd5Dx1pO4', '4742350'), - (22, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'd5Dx1pO4', '4746789'), - (22, 1188, 'attending', '2022-01-17 20:35:09', '2025-12-17 19:47:31', 'd5Dx1pO4', '4753929'), - (22, 1190, 'attending', '2022-01-11 22:57:40', '2025-12-17 19:47:31', 'd5Dx1pO4', '4757377'), - (22, 1191, 'attending', '2022-01-12 00:34:24', '2025-12-17 19:47:31', 'd5Dx1pO4', '4757390'), - (22, 1192, 'attending', '2022-01-20 14:40:19', '2025-12-17 19:47:32', 'd5Dx1pO4', '4758745'), - (22, 1193, 'maybe', '2022-01-17 23:33:31', '2025-12-17 19:47:32', 'd5Dx1pO4', '4759563'), - (22, 1198, 'attending', '2022-01-24 01:22:26', '2025-12-17 19:47:32', 'd5Dx1pO4', '4766801'), - (22, 1199, 'attending', '2022-01-24 01:22:29', '2025-12-17 19:47:32', 'd5Dx1pO4', '4766802'), - (22, 1200, 'attending', '2022-01-17 23:33:10', '2025-12-17 19:47:32', 'd5Dx1pO4', '4766830'), - (22, 1202, 'attending', '2022-01-24 01:22:40', '2025-12-17 19:47:32', 'd5Dx1pO4', '4769423'), - (22, 1219, 'attending', '2022-01-31 17:23:38', '2025-12-17 19:47:32', 'd5Dx1pO4', '4788466'), - (22, 1224, 'attending', '2022-01-31 17:23:35', '2025-12-17 19:47:32', 'd5Dx1pO4', '5016682'), - (22, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd5Dx1pO4', '5038850'), - (22, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd5Dx1pO4', '5045826'), - (22, 1238, 'attending', '2022-02-22 15:39:15', '2025-12-17 19:47:32', 'd5Dx1pO4', '5052236'), - (22, 1239, 'attending', '2022-02-28 14:29:22', '2025-12-17 19:47:33', 'd5Dx1pO4', '5052238'), - (22, 1240, 'attending', '2022-03-14 00:40:38', '2025-12-17 19:47:33', 'd5Dx1pO4', '5052239'), - (22, 1241, 'attending', '2022-03-22 12:47:25', '2025-12-17 19:47:25', 'd5Dx1pO4', '5052240'), - (22, 1242, 'attending', '2022-03-29 21:20:31', '2025-12-17 19:47:25', 'd5Dx1pO4', '5052241'), - (22, 1243, 'attending', '2022-03-06 17:20:22', '2025-12-17 19:47:33', 'd5Dx1pO4', '5058336'), - (22, 1246, 'attending', '2022-02-23 19:04:22', '2025-12-17 19:47:33', 'd5Dx1pO4', '5064727'), - (22, 1248, 'maybe', '2022-02-23 19:04:01', '2025-12-17 19:47:33', 'd5Dx1pO4', '5065064'), - (22, 1249, 'maybe', '2022-03-09 21:41:55', '2025-12-17 19:47:33', 'd5Dx1pO4', '5068530'), - (22, 1250, 'maybe', '2022-03-03 22:26:25', '2025-12-17 19:47:33', 'd5Dx1pO4', '5069735'), - (22, 1253, 'attending', '2022-03-02 15:43:29', '2025-12-17 19:47:33', 'd5Dx1pO4', '5129122'), - (22, 1255, 'maybe', '2022-02-28 19:56:51', '2025-12-17 19:47:33', 'd5Dx1pO4', '5129140'), - (22, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd5Dx1pO4', '5132533'), - (22, 1261, 'attending', '2022-03-04 01:56:56', '2025-12-17 19:47:33', 'd5Dx1pO4', '5154274'), - (22, 1262, 'not_attending', '2022-03-10 17:43:25', '2025-12-17 19:47:33', 'd5Dx1pO4', '5157773'), - (22, 1264, 'attending', '2022-03-22 16:58:17', '2025-12-17 19:47:25', 'd5Dx1pO4', '5160281'), - (22, 1266, 'maybe', '2022-03-14 18:26:07', '2025-12-17 19:47:33', 'd5Dx1pO4', '5166407'), - (22, 1267, 'attending', '2022-03-12 22:18:28', '2025-12-17 19:47:25', 'd5Dx1pO4', '5169578'), - (22, 1269, 'attending', '2022-03-17 16:01:55', '2025-12-17 19:47:25', 'd5Dx1pO4', '5179439'), - (22, 1270, 'maybe', '2022-03-15 14:48:46', '2025-12-17 19:47:25', 'd5Dx1pO4', '5181277'), - (22, 1272, 'attending', '2022-03-15 23:39:09', '2025-12-17 19:47:25', 'd5Dx1pO4', '5186582'), - (22, 1273, 'attending', '2022-03-26 18:34:38', '2025-12-17 19:47:25', 'd5Dx1pO4', '5186583'), - (22, 1274, 'attending', '2022-03-31 01:30:37', '2025-12-17 19:47:26', 'd5Dx1pO4', '5186585'), - (22, 1276, 'maybe', '2022-03-27 16:05:12', '2025-12-17 19:47:25', 'd5Dx1pO4', '5186820'), - (22, 1278, 'attending', '2022-03-16 21:29:40', '2025-12-17 19:47:33', 'd5Dx1pO4', '5186920'), - (22, 1279, 'attending', '2022-03-16 21:29:09', '2025-12-17 19:47:25', 'd5Dx1pO4', '5187212'), - (22, 1281, 'attending', '2022-04-08 03:31:50', '2025-12-17 19:47:27', 'd5Dx1pO4', '5190437'), - (22, 1284, 'attending', '2022-04-13 14:13:28', '2025-12-17 19:47:27', 'd5Dx1pO4', '5195095'), - (22, 1287, 'attending', '2022-03-23 01:05:05', '2025-12-17 19:47:25', 'd5Dx1pO4', '5199425'), - (22, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'd5Dx1pO4', '5215989'), - (22, 1298, 'attending', '2022-03-29 12:16:15', '2025-12-17 19:47:25', 'd5Dx1pO4', '5216645'), - (22, 1304, 'maybe', '2022-04-04 16:40:55', '2025-12-17 19:47:26', 'd5Dx1pO4', '5223468'), - (22, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd5Dx1pO4', '5223686'), - (22, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd5Dx1pO4', '5227432'), - (22, 1314, 'maybe', '2022-04-08 20:31:37', '2025-12-17 19:47:27', 'd5Dx1pO4', '5233137'), - (22, 1315, 'maybe', '2022-04-18 19:44:43', '2025-12-17 19:47:27', 'd5Dx1pO4', '5237522'), - (22, 1317, 'attending', '2022-04-11 22:52:39', '2025-12-17 19:47:27', 'd5Dx1pO4', '5237543'), - (22, 1319, 'attending', '2022-04-11 13:27:45', '2025-12-17 19:47:27', 'd5Dx1pO4', '5238353'), - (22, 1320, 'attending', '2022-04-11 13:27:54', '2025-12-17 19:47:27', 'd5Dx1pO4', '5238354'), - (22, 1322, 'maybe', '2022-04-15 02:33:55', '2025-12-17 19:47:27', 'd5Dx1pO4', '5238356'), - (22, 1331, 'attending', '2022-04-12 23:44:26', '2025-12-17 19:47:27', 'd5Dx1pO4', '5242156'), - (22, 1337, 'attending', '2022-04-19 01:03:30', '2025-12-17 19:47:27', 'd5Dx1pO4', '5245036'), - (22, 1346, 'attending', '2022-04-18 19:44:36', '2025-12-17 19:47:27', 'd5Dx1pO4', '5247467'), - (22, 1360, 'maybe', '2022-04-26 18:52:12', '2025-12-17 19:47:27', 'd5Dx1pO4', '5260197'), - (22, 1362, 'attending', '2022-04-25 17:43:46', '2025-12-17 19:47:28', 'd5Dx1pO4', '5260800'), - (22, 1364, 'attending', '2022-05-01 20:22:34', '2025-12-17 19:47:28', 'd5Dx1pO4', '5261598'), - (22, 1365, 'attending', '2022-05-01 15:25:07', '2025-12-17 19:47:28', 'd5Dx1pO4', '5261600'), - (22, 1370, 'not_attending', '2022-04-29 17:12:15', '2025-12-17 19:47:28', 'd5Dx1pO4', '5263775'), - (22, 1371, 'attending', '2022-04-27 20:51:33', '2025-12-17 19:47:27', 'd5Dx1pO4', '5263784'), - (22, 1372, 'maybe', '2022-05-02 17:49:45', '2025-12-17 19:47:28', 'd5Dx1pO4', '5264352'), - (22, 1374, 'attending', '2022-05-02 01:40:34', '2025-12-17 19:47:28', 'd5Dx1pO4', '5269930'), - (22, 1378, 'maybe', '2022-05-05 21:29:56', '2025-12-17 19:47:29', 'd5Dx1pO4', '5271448'), - (22, 1379, 'attending', '2022-05-15 23:43:21', '2025-12-17 19:47:29', 'd5Dx1pO4', '5271449'), - (22, 1380, 'not_attending', '2022-05-15 23:43:34', '2025-12-17 19:47:30', 'd5Dx1pO4', '5271450'), - (22, 1381, 'attending', '2022-05-06 17:44:20', '2025-12-17 19:47:28', 'd5Dx1pO4', '5271453'), - (22, 1383, 'attending', '2022-05-13 18:09:06', '2025-12-17 19:47:28', 'd5Dx1pO4', '5276469'), - (22, 1385, 'maybe', '2022-05-11 13:04:11', '2025-12-17 19:47:28', 'd5Dx1pO4', '5277822'), - (22, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd5Dx1pO4', '5278159'), - (22, 1392, 'not_attending', '2022-05-10 14:19:39', '2025-12-17 19:47:28', 'd5Dx1pO4', '5279532'), - (22, 1403, 'attending', '2022-05-20 17:01:29', '2025-12-17 19:47:29', 'd5Dx1pO4', '5288052'), - (22, 1407, 'attending', '2022-05-30 01:25:03', '2025-12-17 19:47:30', 'd5Dx1pO4', '5363695'), - (22, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd5Dx1pO4', '5365960'), - (22, 1412, 'attending', '2022-05-19 21:32:04', '2025-12-17 19:47:29', 'd5Dx1pO4', '5367532'), - (22, 1413, 'attending', '2022-05-21 02:17:21', '2025-12-17 19:47:29', 'd5Dx1pO4', '5367533'), - (22, 1415, 'maybe', '2022-05-19 15:16:13', '2025-12-17 19:47:30', 'd5Dx1pO4', '5368973'), - (22, 1416, 'attending', '2022-05-19 17:47:48', '2025-12-17 19:47:30', 'd5Dx1pO4', '5369628'), - (22, 1424, 'maybe', '2022-05-26 19:04:24', '2025-12-17 19:47:30', 'd5Dx1pO4', '5375772'), - (22, 1427, 'maybe', '2022-05-24 15:40:05', '2025-12-17 19:47:30', 'd5Dx1pO4', '5376074'), - (22, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd5Dx1pO4', '5378247'), - (22, 1431, 'not_attending', '2022-06-11 02:22:25', '2025-12-17 19:47:31', 'd5Dx1pO4', '5389605'), - (22, 1436, 'attending', '2022-06-01 03:36:39', '2025-12-17 19:47:30', 'd5Dx1pO4', '5394292'), - (22, 1437, 'maybe', '2022-06-01 17:14:32', '2025-12-17 19:47:30', 'd5Dx1pO4', '5394493'), - (22, 1438, 'maybe', '2022-06-01 17:09:16', '2025-12-17 19:47:30', 'd5Dx1pO4', '5395032'), - (22, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd5Dx1pO4', '5397265'), - (22, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd5Dx1pO4', '5403967'), - (22, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd5Dx1pO4', '5404786'), - (22, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd5Dx1pO4', '5405203'), - (22, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'd5Dx1pO4', '5408794'), - (22, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd5Dx1pO4', '5411699'), - (22, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd5Dx1pO4', '5412550'), - (22, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd5Dx1pO4', '5415046'), - (22, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd5Dx1pO4', '5422086'), - (22, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd5Dx1pO4', '5422406'), - (22, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd5Dx1pO4', '5424565'), - (22, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd5Dx1pO4', '5426882'), - (22, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd5Dx1pO4', '5427083'), - (22, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd5Dx1pO4', '5441125'), - (22, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd5Dx1pO4', '5441126'), - (22, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd5Dx1pO4', '5441128'), - (22, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd5Dx1pO4', '5441131'), - (22, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'd5Dx1pO4', '5441132'), - (22, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd5Dx1pO4', '5446643'), - (22, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd5Dx1pO4', '5453325'), - (22, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd5Dx1pO4', '5454516'), - (22, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd5Dx1pO4', '5454605'), - (22, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd5Dx1pO4', '5455037'), - (22, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd5Dx1pO4', '5461278'), - (22, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd5Dx1pO4', '5469480'), - (22, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd5Dx1pO4', '5471073'), - (22, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd5Dx1pO4', '5474663'), - (22, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd5Dx1pO4', '5482022'), - (22, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd5Dx1pO4', '5482793'), - (22, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd5Dx1pO4', '5488912'), - (22, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd5Dx1pO4', '5492192'), - (22, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd5Dx1pO4', '5493139'), - (22, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd5Dx1pO4', '5493200'), - (22, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd5Dx1pO4', '5502188'), - (22, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd5Dx1pO4', '5505059'), - (22, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd5Dx1pO4', '5509055'), - (22, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd5Dx1pO4', '5512862'), - (22, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd5Dx1pO4', '5513985'), - (22, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'd5Dx1pO4', '5519981'), - (22, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd5Dx1pO4', '5522550'), - (22, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd5Dx1pO4', '5534683'), - (22, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd5Dx1pO4', '5537735'), - (22, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd5Dx1pO4', '5540859'), - (22, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd5Dx1pO4', '5546619'), - (22, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd5Dx1pO4', '5555245'), - (22, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd5Dx1pO4', '5557747'), - (22, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd5Dx1pO4', '5560255'), - (22, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd5Dx1pO4', '5562906'), - (22, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd5Dx1pO4', '5600604'), - (22, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd5Dx1pO4', '5605544'), - (22, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'd5Dx1pO4', '5606737'), - (22, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd5Dx1pO4', '5630960'), - (22, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd5Dx1pO4', '5630961'), - (22, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd5Dx1pO4', '5630962'), - (22, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd5Dx1pO4', '5630966'), - (22, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd5Dx1pO4', '5630967'), - (22, 1726, 'attending', '2022-11-16 18:18:05', '2025-12-17 19:47:16', 'd5Dx1pO4', '5630968'), - (22, 1727, 'maybe', '2022-11-28 23:51:31', '2025-12-17 19:47:16', 'd5Dx1pO4', '5630969'), - (22, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd5Dx1pO4', '5635406'), - (22, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd5Dx1pO4', '5638765'), - (22, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd5Dx1pO4', '5640097'), - (22, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd5Dx1pO4', '5640843'), - (22, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd5Dx1pO4', '5641521'), - (22, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd5Dx1pO4', '5642818'), - (22, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd5Dx1pO4', '5652395'), - (22, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd5Dx1pO4', '5670445'), - (22, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd5Dx1pO4', '5671637'), - (22, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd5Dx1pO4', '5672329'), - (22, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd5Dx1pO4', '5674057'), - (22, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd5Dx1pO4', '5674060'), - (22, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd5Dx1pO4', '5677461'), - (22, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd5Dx1pO4', '5698046'), - (22, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd5Dx1pO4', '5699760'), - (22, 1793, 'attending', '2022-11-23 14:43:29', '2025-12-17 19:47:16', 'd5Dx1pO4', '5736365'), - (22, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd5Dx1pO4', '5741601'), - (22, 1796, 'attending', '2022-12-01 23:57:16', '2025-12-17 19:47:16', 'd5Dx1pO4', '5756755'), - (22, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd5Dx1pO4', '5763458'), - (22, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd5Dx1pO4', '5774172'), - (22, 1831, 'attending', '2022-12-02 19:05:41', '2025-12-17 19:47:16', 'd5Dx1pO4', '5813239'), - (22, 1832, 'maybe', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'd5Dx1pO4', '5818247'), - (22, 1833, 'maybe', '2022-12-05 04:01:06', '2025-12-17 19:47:16', 'd5Dx1pO4', '5819465'), - (22, 1834, 'not_attending', '2022-12-09 20:19:20', '2025-12-17 19:47:17', 'd5Dx1pO4', '5819470'), - (22, 1835, 'maybe', '2022-12-23 03:48:27', '2025-12-17 19:47:05', 'd5Dx1pO4', '5819471'), - (22, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'd5Dx1pO4', '5827739'), - (22, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd5Dx1pO4', '5844306'), - (22, 1847, 'attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd5Dx1pO4', '5850159'), - (22, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd5Dx1pO4', '5858999'), - (22, 1852, 'attending', '2023-01-11 23:22:53', '2025-12-17 19:47:05', 'd5Dx1pO4', '5869898'), - (22, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd5Dx1pO4', '5871984'), - (22, 1859, 'maybe', '2023-01-20 21:43:57', '2025-12-17 19:47:05', 'd5Dx1pO4', '5876234'), - (22, 1861, 'attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd5Dx1pO4', '5876354'), - (22, 1863, 'attending', '2023-01-29 18:25:09', '2025-12-17 19:47:06', 'd5Dx1pO4', '5877255'), - (22, 1864, 'attending', '2023-01-20 22:03:33', '2025-12-17 19:47:05', 'd5Dx1pO4', '5879675'), - (22, 1865, 'attending', '2023-01-25 01:22:34', '2025-12-17 19:47:06', 'd5Dx1pO4', '5879676'), - (22, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd5Dx1pO4', '5880939'), - (22, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'd5Dx1pO4', '5880940'), - (22, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd5Dx1pO4', '5880942'), - (22, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd5Dx1pO4', '5880943'), - (22, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd5Dx1pO4', '5887890'), - (22, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd5Dx1pO4', '5888598'), - (22, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd5Dx1pO4', '5893260'), - (22, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'd5Dx1pO4', '5899826'), - (22, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'd5Dx1pO4', '5900199'), - (22, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd5Dx1pO4', '5900200'), - (22, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd5Dx1pO4', '5900202'), - (22, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd5Dx1pO4', '5900203'), - (22, 1895, 'maybe', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'd5Dx1pO4', '5901108'), - (22, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd5Dx1pO4', '5901126'), - (22, 1897, 'maybe', '2023-02-08 18:51:19', '2025-12-17 19:47:07', 'd5Dx1pO4', '5901128'), - (22, 1902, 'maybe', '2023-02-01 21:21:47', '2025-12-17 19:47:06', 'd5Dx1pO4', '5902254'), - (22, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'd5Dx1pO4', '5909655'), - (22, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'd5Dx1pO4', '5910522'), - (22, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'd5Dx1pO4', '5910526'), - (22, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'd5Dx1pO4', '5910528'), - (22, 1922, 'maybe', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd5Dx1pO4', '5916219'), - (22, 1931, 'not_attending', '2023-02-24 18:15:10', '2025-12-17 19:47:08', 'd5Dx1pO4', '5933464'), - (22, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd5Dx1pO4', '5936234'), - (22, 1935, 'attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd5Dx1pO4', '5958351'), - (22, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd5Dx1pO4', '5959751'), - (22, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd5Dx1pO4', '5959755'), - (22, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd5Dx1pO4', '5960055'), - (22, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd5Dx1pO4', '5961684'), - (22, 1944, 'maybe', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd5Dx1pO4', '5962132'), - (22, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'd5Dx1pO4', '5962133'), - (22, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd5Dx1pO4', '5962134'), - (22, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd5Dx1pO4', '5962317'), - (22, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd5Dx1pO4', '5962318'), - (22, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd5Dx1pO4', '5965933'), - (22, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd5Dx1pO4', '5967014'), - (22, 1957, 'attending', '2023-03-06 18:58:40', '2025-12-17 19:47:10', 'd5Dx1pO4', '5972815'), - (22, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd5Dx1pO4', '5974016'), - (22, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd5Dx1pO4', '5981515'), - (22, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd5Dx1pO4', '5993516'), - (22, 1972, 'not_attending', '2023-03-17 01:49:55', '2025-12-17 19:46:56', 'd5Dx1pO4', '5993776'), - (22, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd5Dx1pO4', '5998939'), - (22, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd5Dx1pO4', '6028191'), - (22, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd5Dx1pO4', '6040066'), - (22, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd5Dx1pO4', '6042717'), - (22, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd5Dx1pO4', '6044838'), - (22, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd5Dx1pO4', '6044839'), - (22, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd5Dx1pO4', '6045684'), - (22, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd5Dx1pO4', '6050104'), - (22, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd5Dx1pO4', '6053195'), - (22, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd5Dx1pO4', '6053198'), - (22, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd5Dx1pO4', '6056085'), - (22, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd5Dx1pO4', '6056916'), - (22, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd5Dx1pO4', '6059290'), - (22, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd5Dx1pO4', '6060328'), - (22, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd5Dx1pO4', '6061037'), - (22, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd5Dx1pO4', '6061039'), - (22, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd5Dx1pO4', '6067245'), - (22, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd5Dx1pO4', '6068094'), - (22, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd5Dx1pO4', '6068252'), - (22, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd5Dx1pO4', '6068253'), - (22, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd5Dx1pO4', '6068254'), - (22, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'd5Dx1pO4', '6068280'), - (22, 2032, 'attending', '2023-06-01 19:55:09', '2025-12-17 19:47:04', 'd5Dx1pO4', '6068281'), - (22, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd5Dx1pO4', '6069093'), - (22, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'd5Dx1pO4', '6072528'), - (22, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd5Dx1pO4', '6079840'), - (22, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd5Dx1pO4', '6083398'), - (22, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'd5Dx1pO4', '6093504'), - (22, 2059, 'maybe', '2023-05-11 14:08:02', '2025-12-17 19:47:02', 'd5Dx1pO4', '6097361'), - (22, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd5Dx1pO4', '6097414'), - (22, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd5Dx1pO4', '6097442'), - (22, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd5Dx1pO4', '6097684'), - (22, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd5Dx1pO4', '6098762'), - (22, 2064, 'attending', '2023-06-20 15:21:35', '2025-12-17 19:46:50', 'd5Dx1pO4', '6099988'), - (22, 2065, 'attending', '2023-06-11 15:25:02', '2025-12-17 19:46:49', 'd5Dx1pO4', '6101169'), - (22, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'd5Dx1pO4', '6101361'), - (22, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd5Dx1pO4', '6101362'), - (22, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd5Dx1pO4', '6103752'), - (22, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd5Dx1pO4', '6107314'), - (22, 2084, 'attending', '2023-05-26 15:27:19', '2025-12-17 19:47:04', 'd5Dx1pO4', '6117127'), - (22, 2086, 'not_attending', '2023-05-28 02:02:48', '2025-12-17 19:47:04', 'd5Dx1pO4', '6119877'), - (22, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd5Dx1pO4', '6120034'), - (22, 2090, 'not_attending', '2023-06-01 19:55:02', '2025-12-17 19:47:04', 'd5Dx1pO4', '6127961'), - (22, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'd5Dx1pO4', '6136733'), - (22, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'd5Dx1pO4', '6137989'), - (22, 2098, 'attending', '2023-06-09 11:47:58', '2025-12-17 19:47:04', 'd5Dx1pO4', '6139831'), - (22, 2102, 'attending', '2023-06-13 22:48:44', '2025-12-17 19:46:50', 'd5Dx1pO4', '6146559'), - (22, 2103, 'attending', '2023-06-19 20:31:51', '2025-12-17 19:46:50', 'd5Dx1pO4', '6149451'), - (22, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'd5Dx1pO4', '6150864'), - (22, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'd5Dx1pO4', '6155491'), - (22, 2111, 'not_attending', '2023-06-20 15:21:16', '2025-12-17 19:46:50', 'd5Dx1pO4', '6156121'), - (22, 2113, 'maybe', '2023-06-19 23:29:00', '2025-12-17 19:46:50', 'd5Dx1pO4', '6156215'), - (22, 2115, 'attending', '2023-06-23 20:43:58', '2025-12-17 19:46:50', 'd5Dx1pO4', '6161437'), - (22, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd5Dx1pO4', '6164417'), - (22, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd5Dx1pO4', '6166388'), - (22, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd5Dx1pO4', '6176439'), - (22, 2124, 'maybe', '2023-07-03 23:01:13', '2025-12-17 19:46:51', 'd5Dx1pO4', '6176988'), - (22, 2126, 'attending', '2023-06-30 00:12:28', '2025-12-17 19:46:51', 'd5Dx1pO4', '6177548'), - (22, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'd5Dx1pO4', '6182410'), - (22, 2129, 'maybe', '2023-07-03 00:49:07', '2025-12-17 19:46:51', 'd5Dx1pO4', '6182825'), - (22, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd5Dx1pO4', '6185812'), - (22, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd5Dx1pO4', '6187651'), - (22, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd5Dx1pO4', '6187963'), - (22, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd5Dx1pO4', '6187964'), - (22, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd5Dx1pO4', '6187966'), - (22, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd5Dx1pO4', '6187967'), - (22, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd5Dx1pO4', '6187969'), - (22, 2140, 'attending', '2023-07-08 17:27:15', '2025-12-17 19:46:52', 'd5Dx1pO4', '6188074'), - (22, 2142, 'maybe', '2023-07-09 20:43:48', '2025-12-17 19:46:52', 'd5Dx1pO4', '6333850'), - (22, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd5Dx1pO4', '6334878'), - (22, 2150, 'attending', '2023-07-09 22:30:36', '2025-12-17 19:46:52', 'd5Dx1pO4', '6335687'), - (22, 2153, 'maybe', '2023-07-15 02:36:22', '2025-12-17 19:46:52', 'd5Dx1pO4', '6337236'), - (22, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd5Dx1pO4', '6337970'), - (22, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd5Dx1pO4', '6338308'), - (22, 2157, 'maybe', '2023-07-15 13:16:08', '2025-12-17 19:46:52', 'd5Dx1pO4', '6338342'), - (22, 2159, 'attending', '2023-07-15 02:36:39', '2025-12-17 19:46:53', 'd5Dx1pO4', '6338355'), - (22, 2160, 'attending', '2023-07-15 02:37:03', '2025-12-17 19:46:54', 'd5Dx1pO4', '6338358'), - (22, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd5Dx1pO4', '6341710'), - (22, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd5Dx1pO4', '6342044'), - (22, 2167, 'maybe', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd5Dx1pO4', '6342298'), - (22, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'd5Dx1pO4', '6343294'), - (22, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd5Dx1pO4', '6347034'), - (22, 2177, 'maybe', '2023-08-02 14:32:01', '2025-12-17 19:46:55', 'd5Dx1pO4', '6347053'), - (22, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd5Dx1pO4', '6347056'), - (22, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd5Dx1pO4', '6353830'), - (22, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd5Dx1pO4', '6353831'), - (22, 2187, 'maybe', '2023-08-06 16:45:17', '2025-12-17 19:46:55', 'd5Dx1pO4', '6357559'), - (22, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd5Dx1pO4', '6357867'), - (22, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd5Dx1pO4', '6358652'), - (22, 2193, 'maybe', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'd5Dx1pO4', '6358668'), - (22, 2194, 'maybe', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'd5Dx1pO4', '6358669'), - (22, 2204, 'attending', '2023-08-10 11:00:50', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361542'), - (22, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd5Dx1pO4', '6361709'), - (22, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361710'), - (22, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361711'), - (22, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361712'), - (22, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd5Dx1pO4', '6361713'), - (22, 2231, 'maybe', '2023-08-21 13:04:30', '2025-12-17 19:46:55', 'd5Dx1pO4', '6374748'), - (22, 2232, 'maybe', '2023-08-22 03:07:11', '2025-12-17 19:46:55', 'd5Dx1pO4', '6374818'), - (22, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd5Dx1pO4', '6382573'), - (22, 2239, 'not_attending', '2023-09-01 14:57:04', '2025-12-17 19:46:56', 'd5Dx1pO4', '6387592'), - (22, 2240, 'attending', '2023-09-08 21:19:04', '2025-12-17 19:46:56', 'd5Dx1pO4', '6388603'), - (22, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd5Dx1pO4', '6388604'), - (22, 2242, 'attending', '2023-09-19 14:15:56', '2025-12-17 19:46:45', 'd5Dx1pO4', '6388606'), - (22, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd5Dx1pO4', '6394629'), - (22, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd5Dx1pO4', '6394631'), - (22, 2253, 'maybe', '2023-09-25 22:54:50', '2025-12-17 19:46:45', 'd5Dx1pO4', '6401811'), - (22, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd5Dx1pO4', '6440863'), - (22, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd5Dx1pO4', '6445440'), - (22, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd5Dx1pO4', '6453951'), - (22, 2280, 'maybe', '2023-10-10 15:42:16', '2025-12-17 19:46:46', 'd5Dx1pO4', '6455470'), - (22, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd5Dx1pO4', '6461696'), - (22, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd5Dx1pO4', '6462129'), - (22, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd5Dx1pO4', '6463218'), - (22, 2299, 'maybe', '2023-10-17 21:26:52', '2025-12-17 19:46:46', 'd5Dx1pO4', '6472181'), - (22, 2302, 'attending', '2023-10-23 12:03:53', '2025-12-17 19:46:46', 'd5Dx1pO4', '6482535'), - (22, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd5Dx1pO4', '6482693'), - (22, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd5Dx1pO4', '6484200'), - (22, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'd5Dx1pO4', '6484680'), - (22, 2310, 'attending', '2023-11-10 17:04:56', '2025-12-17 19:46:47', 'd5Dx1pO4', '6487709'), - (22, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd5Dx1pO4', '6507741'), - (22, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd5Dx1pO4', '6514659'), - (22, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd5Dx1pO4', '6514660'), - (22, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd5Dx1pO4', '6519103'), - (22, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd5Dx1pO4', '6535681'), - (22, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd5Dx1pO4', '6584747'), - (22, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd5Dx1pO4', '6587097'), - (22, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd5Dx1pO4', '6609022'), - (22, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd5Dx1pO4', '6632757'), - (22, 2377, 'attending', '2024-01-08 22:52:59', '2025-12-17 19:46:37', 'd5Dx1pO4', '6643448'), - (22, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd5Dx1pO4', '6644187'), - (22, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd5Dx1pO4', '6648951'), - (22, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd5Dx1pO4', '6648952'), - (22, 2388, 'attending', '2024-01-04 21:27:55', '2025-12-17 19:46:37', 'd5Dx1pO4', '6649244'), - (22, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd5Dx1pO4', '6655401'), - (22, 2397, 'attending', '2024-01-08 22:52:56', '2025-12-17 19:46:37', 'd5Dx1pO4', '6657379'), - (22, 2399, 'maybe', '2024-01-12 01:46:36', '2025-12-17 19:46:38', 'd5Dx1pO4', '6657583'), - (22, 2400, 'attending', '2024-01-11 20:53:49', '2025-12-17 19:46:37', 'd5Dx1pO4', '6659378'), - (22, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd5Dx1pO4', '6661585'), - (22, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd5Dx1pO4', '6661588'), - (22, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd5Dx1pO4', '6661589'), - (22, 2404, 'maybe', '2024-01-15 23:14:14', '2025-12-17 19:46:38', 'd5Dx1pO4', '6666858'), - (22, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd5Dx1pO4', '6699906'), - (22, 2408, 'attending', '2024-01-25 21:55:31', '2025-12-17 19:46:40', 'd5Dx1pO4', '6699907'), - (22, 2409, 'maybe', '2024-02-03 18:52:48', '2025-12-17 19:46:41', 'd5Dx1pO4', '6699909'), - (22, 2410, 'attending', '2024-02-07 12:44:39', '2025-12-17 19:46:41', 'd5Dx1pO4', '6699911'), - (22, 2411, 'attending', '2024-02-11 04:28:32', '2025-12-17 19:46:41', 'd5Dx1pO4', '6699913'), - (22, 2412, 'attending', '2024-02-11 04:28:40', '2025-12-17 19:46:43', 'd5Dx1pO4', '6700717'), - (22, 2414, 'maybe', '2024-01-20 18:35:30', '2025-12-17 19:46:40', 'd5Dx1pO4', '6701000'), - (22, 2415, 'maybe', '2024-01-20 18:35:32', '2025-12-17 19:46:40', 'd5Dx1pO4', '6701001'), - (22, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd5Dx1pO4', '6701109'), - (22, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd5Dx1pO4', '6705219'), - (22, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd5Dx1pO4', '6710153'), - (22, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd5Dx1pO4', '6711552'), - (22, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd5Dx1pO4', '6711553'), - (22, 2431, 'attending', '2024-02-02 00:28:39', '2025-12-17 19:46:41', 'd5Dx1pO4', '6712394'), - (22, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd5Dx1pO4', '6722688'), - (22, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd5Dx1pO4', '6730620'), - (22, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd5Dx1pO4', '6730642'), - (22, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd5Dx1pO4', '6740364'), - (22, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd5Dx1pO4', '6743829'), - (22, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd5Dx1pO4', '7030380'), - (22, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd5Dx1pO4', '7033677'), - (22, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd5Dx1pO4', '7035415'), - (22, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd5Dx1pO4', '7044715'), - (22, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd5Dx1pO4', '7050318'), - (22, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd5Dx1pO4', '7050319'), - (22, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd5Dx1pO4', '7050322'), - (22, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd5Dx1pO4', '7057804'), - (22, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'd5Dx1pO4', '7059866'), - (22, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd5Dx1pO4', '7072824'), - (22, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd5Dx1pO4', '7074348'), - (22, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd5Dx1pO4', '7074364'), - (22, 2529, 'maybe', '2024-05-23 17:43:46', '2025-12-17 19:46:35', 'd5Dx1pO4', '7074369'), - (22, 2537, 'attending', '2024-03-16 18:11:36', '2025-12-17 19:46:33', 'd5Dx1pO4', '7085484'), - (22, 2539, 'not_attending', '2024-04-02 17:12:51', '2025-12-17 19:46:33', 'd5Dx1pO4', '7085486'), - (22, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd5Dx1pO4', '7089267'), - (22, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd5Dx1pO4', '7098747'), - (22, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd5Dx1pO4', '7113468'), - (22, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd5Dx1pO4', '7114856'), - (22, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd5Dx1pO4', '7114951'), - (22, 2556, 'maybe', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd5Dx1pO4', '7114955'), - (22, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd5Dx1pO4', '7114956'), - (22, 2558, 'attending', '2024-05-01 23:23:40', '2025-12-17 19:46:35', 'd5Dx1pO4', '7114957'), - (22, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd5Dx1pO4', '7153615'), - (22, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd5Dx1pO4', '7159484'), - (22, 2585, 'maybe', '2024-04-24 20:41:23', '2025-12-17 19:46:34', 'd5Dx1pO4', '7175828'), - (22, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd5Dx1pO4', '7178446'), - (22, 2600, 'attending', '2024-04-28 21:55:21', '2025-12-17 19:46:35', 'd5Dx1pO4', '7196794'), - (22, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd5Dx1pO4', '7220467'), - (22, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd5Dx1pO4', '7240354'), - (22, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd5Dx1pO4', '7251633'), - (22, 2626, 'not_attending', '2024-05-14 20:08:34', '2025-12-17 19:46:35', 'd5Dx1pO4', '7264723'), - (22, 2627, 'maybe', '2024-05-25 12:55:49', '2025-12-17 19:46:35', 'd5Dx1pO4', '7264724'), - (22, 2628, 'not_attending', '2024-05-31 12:50:36', '2025-12-17 19:46:36', 'd5Dx1pO4', '7264725'), - (22, 2629, 'not_attending', '2024-06-03 23:15:38', '2025-12-17 19:46:28', 'd5Dx1pO4', '7264726'), - (22, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'd5Dx1pO4', '7302674'), - (22, 2667, 'maybe', '2024-06-05 18:07:17', '2025-12-17 19:46:36', 'd5Dx1pO4', '7307776'), - (22, 2678, 'maybe', '2024-06-15 20:56:24', '2025-12-17 19:46:28', 'd5Dx1pO4', '7319489'), - (22, 2688, 'maybe', '2024-06-24 22:22:16', '2025-12-17 19:46:29', 'd5Dx1pO4', '7324073'), - (22, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd5Dx1pO4', '7324074'), - (22, 2690, 'attending', '2024-07-07 02:55:55', '2025-12-17 19:46:30', 'd5Dx1pO4', '7324075'), - (22, 2691, 'attending', '2024-07-20 20:06:44', '2025-12-17 19:46:30', 'd5Dx1pO4', '7324076'), - (22, 2692, 'maybe', '2024-07-22 23:29:09', '2025-12-17 19:46:30', 'd5Dx1pO4', '7324077'), - (22, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd5Dx1pO4', '7324078'), - (22, 2694, 'attending', '2024-08-06 14:06:30', '2025-12-17 19:46:31', 'd5Dx1pO4', '7324079'), - (22, 2695, 'attending', '2024-08-17 19:56:41', '2025-12-17 19:46:31', 'd5Dx1pO4', '7324080'), - (22, 2696, 'attending', '2024-08-24 18:51:27', '2025-12-17 19:46:32', 'd5Dx1pO4', '7324081'), - (22, 2697, 'not_attending', '2024-08-26 12:32:31', '2025-12-17 19:46:32', 'd5Dx1pO4', '7324082'), - (22, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd5Dx1pO4', '7331457'), - (22, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'd5Dx1pO4', '7356752'), - (22, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd5Dx1pO4', '7363643'), - (22, 2767, 'attending', '2024-07-22 16:57:18', '2025-12-17 19:46:30', 'd5Dx1pO4', '7364726'), - (22, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd5Dx1pO4', '7368606'), - (22, 2785, 'attending', '2024-07-30 15:42:54', '2025-12-17 19:46:31', 'd5Dx1pO4', '7380988'), - (22, 2791, 'attending', '2024-08-06 23:20:56', '2025-12-17 19:46:31', 'd5Dx1pO4', '7390760'), - (22, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd5Dx1pO4', '7397462'), - (22, 2821, 'not_attending', '2024-10-06 02:30:13', '2025-12-17 19:46:26', 'd5Dx1pO4', '7424275'), - (22, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd5Dx1pO4', '7424276'), - (22, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd5Dx1pO4', '7432751'), - (22, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd5Dx1pO4', '7432752'), - (22, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd5Dx1pO4', '7432753'), - (22, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432754'), - (22, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432755'), - (22, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432756'), - (22, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432758'), - (22, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432759'), - (22, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd5Dx1pO4', '7433834'), - (22, 2862, 'maybe', '2024-10-01 03:40:45', '2025-12-17 19:46:25', 'd5Dx1pO4', '7470197'), - (22, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd5Dx1pO4', '7685613'), - (22, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd5Dx1pO4', '7688194'), - (22, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd5Dx1pO4', '7688196'), - (22, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd5Dx1pO4', '7688289'), - (22, 2912, 'maybe', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd5Dx1pO4', '7692763'), - (22, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd5Dx1pO4', '7697552'), - (22, 2915, 'attending', '2024-11-18 21:52:08', '2025-12-17 19:46:27', 'd5Dx1pO4', '7698151'), - (22, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd5Dx1pO4', '7699878'), - (22, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd5Dx1pO4', '7704043'), - (22, 2922, 'attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'd5Dx1pO4', '7710890'), - (22, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd5Dx1pO4', '7712467'), - (22, 2925, 'attending', '2024-12-13 17:20:39', '2025-12-17 19:46:21', 'd5Dx1pO4', '7713584'), - (22, 2926, 'not_attending', '2024-12-05 15:02:29', '2025-12-17 19:46:21', 'd5Dx1pO4', '7713585'), - (22, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd5Dx1pO4', '7713586'), - (22, 2929, 'not_attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'd5Dx1pO4', '7723465'), - (22, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd5Dx1pO4', '7738518'), - (22, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd5Dx1pO4', '7750636'), - (22, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd5Dx1pO4', '7796540'), - (22, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd5Dx1pO4', '7796541'), - (22, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd5Dx1pO4', '7796542'), - (22, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd5Dx1pO4', '7825913'), - (22, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd5Dx1pO4', '7826209'), - (22, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd5Dx1pO4', '7834742'), - (22, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd5Dx1pO4', '7842108'), - (22, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd5Dx1pO4', '7842902'), - (22, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd5Dx1pO4', '7842903'), - (22, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd5Dx1pO4', '7842904'), - (22, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd5Dx1pO4', '7842905'), - (22, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd5Dx1pO4', '7855719'), - (22, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd5Dx1pO4', '7860683'), - (22, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd5Dx1pO4', '7860684'), - (22, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd5Dx1pO4', '7866095'), - (22, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd5Dx1pO4', '7869170'), - (22, 3014, 'attending', '2025-04-05 14:24:10', '2025-12-17 19:46:20', 'd5Dx1pO4', '7869185'), - (22, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd5Dx1pO4', '7869188'), - (22, 3018, 'attending', '2025-04-12 16:20:21', '2025-12-17 19:46:20', 'd5Dx1pO4', '7869189'), - (22, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd5Dx1pO4', '7869201'), - (22, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd5Dx1pO4', '7877465'), - (22, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd5Dx1pO4', '7888250'), - (22, 3088, 'maybe', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd5Dx1pO4', '7904777'), - (22, 3094, 'not_attending', '2025-05-07 22:52:49', '2025-12-17 19:46:21', 'd5Dx1pO4', '8342292'), - (22, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd5Dx1pO4', '8349164'), - (22, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd5Dx1pO4', '8349545'), - (22, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd5Dx1pO4', '8353584'), - (22, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd5Dx1pO4', '8368028'), - (22, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd5Dx1pO4', '8368029'), - (22, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd5Dx1pO4', '8388462'), - (22, 3150, 'attending', '2025-06-19 16:35:21', '2025-12-17 19:46:15', 'd5Dx1pO4', '8393174'), - (22, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd5Dx1pO4', '8400273'), - (22, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd5Dx1pO4', '8400274'), - (22, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd5Dx1pO4', '8400275'), - (22, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd5Dx1pO4', '8400276'), - (22, 3158, 'not_attending', '2025-06-04 04:30:57', '2025-12-17 19:46:15', 'd5Dx1pO4', '8401408'), - (22, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd5Dx1pO4', '8404977'), - (22, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd5Dx1pO4', '8430783'), - (22, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd5Dx1pO4', '8430784'), - (22, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd5Dx1pO4', '8430799'), - (22, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd5Dx1pO4', '8430800'), - (22, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd5Dx1pO4', '8430801'), - (22, 3188, 'attending', '2025-07-09 14:30:12', '2025-12-17 19:46:17', 'd5Dx1pO4', '8438709'), - (22, 3190, 'maybe', '2025-07-17 14:09:21', '2025-12-17 19:46:17', 'd5Dx1pO4', '8443962'), - (22, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd5Dx1pO4', '8457738'), - (22, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd5Dx1pO4', '8459566'), - (22, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd5Dx1pO4', '8459567'), - (22, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd5Dx1pO4', '8461032'), - (22, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd5Dx1pO4', '8477877'), - (22, 3233, 'maybe', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd5Dx1pO4', '8485688'), - (22, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd5Dx1pO4', '8490587'), - (22, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd5Dx1pO4', '8493552'), - (22, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd5Dx1pO4', '8493553'), - (22, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd5Dx1pO4', '8493554'), - (22, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd5Dx1pO4', '8493555'), - (22, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd5Dx1pO4', '8493556'), - (22, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd5Dx1pO4', '8493557'), - (22, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd5Dx1pO4', '8493558'), - (22, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd5Dx1pO4', '8493559'), - (22, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd5Dx1pO4', '8493560'), - (22, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd5Dx1pO4', '8493561'), - (22, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd5Dx1pO4', '8493572'), - (22, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd5Dx1pO4', '8540725'), - (22, 3295, 'maybe', '2025-10-30 19:26:02', '2025-12-17 19:46:14', 'd5Dx1pO4', '8547541'), - (22, 3306, 'attending', '2025-12-13 04:43:31', '2025-12-17 19:46:11', 'd5Dx1pO4', '8550026'), - (22, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd5Dx1pO4', '8555421'), - (23, 2518, 'not_attending', '2024-07-22 04:59:47', '2025-12-17 19:46:30', 'AeBO3kP4', '7074358'), - (23, 2522, 'maybe', '2024-07-14 02:49:33', '2025-12-17 19:46:30', 'AeBO3kP4', '7074362'), - (23, 2524, 'attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AeBO3kP4', '7074364'), - (23, 2526, 'not_attending', '2024-07-31 22:07:49', '2025-12-17 19:46:31', 'AeBO3kP4', '7074366'), - (23, 2532, 'not_attending', '2024-09-02 14:21:06', '2025-12-17 19:46:32', 'AeBO3kP4', '7074383'), - (23, 2533, 'not_attending', '2024-08-18 02:25:04', '2025-12-17 19:46:32', 'AeBO3kP4', '7074384'), - (23, 2629, 'attending', '2024-06-05 15:32:41', '2025-12-17 19:46:28', 'AeBO3kP4', '7264726'), - (23, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'AeBO3kP4', '7302674'), - (23, 2663, 'attending', '2024-06-04 08:42:18', '2025-12-17 19:46:36', 'AeBO3kP4', '7303913'), - (23, 2668, 'attending', '2024-06-05 19:53:24', '2025-12-17 19:46:36', 'AeBO3kP4', '7308821'), - (23, 2678, 'attending', '2024-06-12 13:56:08', '2025-12-17 19:46:28', 'AeBO3kP4', '7319489'), - (23, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AeBO3kP4', '7324073'), - (23, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AeBO3kP4', '7324074'), - (23, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AeBO3kP4', '7324075'), - (23, 2691, 'attending', '2024-07-18 22:40:25', '2025-12-17 19:46:30', 'AeBO3kP4', '7324076'), - (23, 2692, 'maybe', '2024-07-26 07:32:06', '2025-12-17 19:46:30', 'AeBO3kP4', '7324077'), - (23, 2693, 'attending', '2024-07-21 03:55:25', '2025-12-17 19:46:31', 'AeBO3kP4', '7324078'), - (23, 2694, 'attending', '2024-08-08 22:07:02', '2025-12-17 19:46:31', 'AeBO3kP4', '7324079'), - (23, 2695, 'attending', '2024-08-13 01:55:25', '2025-12-17 19:46:31', 'AeBO3kP4', '7324080'), - (23, 2696, 'attending', '2024-08-18 02:25:13', '2025-12-17 19:46:32', 'AeBO3kP4', '7324081'), - (23, 2697, 'attending', '2024-08-30 07:14:05', '2025-12-17 19:46:32', 'AeBO3kP4', '7324082'), - (23, 2699, 'attending', '2024-06-12 18:54:59', '2025-12-17 19:46:28', 'AeBO3kP4', '7324385'), - (23, 2700, 'attending', '2024-06-14 14:31:33', '2025-12-17 19:46:28', 'AeBO3kP4', '7324388'), - (23, 2702, 'attending', '2024-06-13 02:08:38', '2025-12-17 19:46:28', 'AeBO3kP4', '7324867'), - (23, 2706, 'maybe', '2024-06-17 07:05:30', '2025-12-17 19:46:28', 'AeBO3kP4', '7324947'), - (23, 2711, 'attending', '2024-07-16 18:07:08', '2025-12-17 19:46:30', 'AeBO3kP4', '7326524'), - (23, 2712, 'attending', '2024-07-31 22:08:39', '2025-12-17 19:46:31', 'AeBO3kP4', '7326525'), - (23, 2721, 'maybe', '2024-06-19 03:03:53', '2025-12-17 19:46:29', 'AeBO3kP4', '7331456'), - (23, 2722, 'attending', '2024-07-08 02:33:26', '2025-12-17 19:46:29', 'AeBO3kP4', '7331457'), - (23, 2729, 'not_attending', '2024-06-21 21:29:55', '2025-12-17 19:46:29', 'AeBO3kP4', '7335092'), - (23, 2741, 'attending', '2024-06-30 23:33:56', '2025-12-17 19:46:30', 'AeBO3kP4', '7344592'), - (23, 2746, 'attending', '2024-07-11 20:49:48', '2025-12-17 19:46:29', 'AeBO3kP4', '7348713'), - (23, 2747, 'attending', '2024-07-16 13:42:40', '2025-12-17 19:46:30', 'AeBO3kP4', '7353587'), - (23, 2753, 'maybe', '2024-07-14 02:48:46', '2025-12-17 19:46:30', 'AeBO3kP4', '7355538'), - (23, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AeBO3kP4', '7356752'), - (23, 2755, 'attending', '2024-07-09 16:34:09', '2025-12-17 19:46:29', 'AeBO3kP4', '7357808'), - (23, 2757, 'maybe', '2024-07-14 02:48:04', '2025-12-17 19:46:30', 'AeBO3kP4', '7358733'), - (23, 2759, 'attending', '2024-07-12 17:06:56', '2025-12-17 19:46:30', 'AeBO3kP4', '7359624'), - (23, 2760, 'maybe', '2024-07-17 20:23:43', '2025-12-17 19:46:30', 'AeBO3kP4', '7359871'), - (23, 2766, 'attending', '2024-07-27 12:21:46', '2025-12-17 19:46:30', 'AeBO3kP4', '7363643'), - (23, 2767, 'attending', '2024-07-22 04:55:48', '2025-12-17 19:46:30', 'AeBO3kP4', '7364726'), - (23, 2768, 'maybe', '2024-07-18 03:25:42', '2025-12-17 19:46:30', 'AeBO3kP4', '7366031'), - (23, 2769, 'maybe', '2024-07-20 01:48:56', '2025-12-17 19:46:30', 'AeBO3kP4', '7366803'), - (23, 2771, 'attending', '2024-07-21 02:25:04', '2025-12-17 19:46:30', 'AeBO3kP4', '7368263'), - (23, 2772, 'attending', '2024-07-21 03:49:21', '2025-12-17 19:46:30', 'AeBO3kP4', '7368267'), - (23, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AeBO3kP4', '7368606'), - (23, 2777, 'maybe', '2024-07-24 22:09:28', '2025-12-17 19:46:30', 'AeBO3kP4', '7370870'), - (23, 2782, 'maybe', '2024-07-29 06:34:51', '2025-12-17 19:46:30', 'AeBO3kP4', '7376725'), - (23, 2783, 'attending', '2024-08-03 10:31:18', '2025-12-17 19:46:31', 'AeBO3kP4', '7379699'), - (23, 2791, 'not_attending', '2024-08-07 21:00:39', '2025-12-17 19:46:31', 'AeBO3kP4', '7390760'), - (23, 2792, 'attending', '2024-08-09 19:49:49', '2025-12-17 19:46:31', 'AeBO3kP4', '7390763'), - (23, 2798, 'maybe', '2024-08-12 16:09:40', '2025-12-17 19:46:31', 'AeBO3kP4', '7395910'), - (23, 2799, 'attending', '2024-08-12 14:13:33', '2025-12-17 19:46:31', 'AeBO3kP4', '7395922'), - (23, 2800, 'attending', '2024-08-16 03:51:12', '2025-12-17 19:46:31', 'AeBO3kP4', '7397405'), - (23, 2801, 'attending', '2024-08-13 22:01:27', '2025-12-17 19:46:32', 'AeBO3kP4', '7397462'), - (23, 2803, 'attending', '2024-08-14 14:37:12', '2025-12-17 19:46:32', 'AeBO3kP4', '7397869'), - (23, 2804, 'attending', '2024-08-16 20:08:57', '2025-12-17 19:46:32', 'AeBO3kP4', '7399270'), - (23, 2805, 'attending', '2024-08-20 13:51:05', '2025-12-17 19:46:32', 'AeBO3kP4', '7403620'), - (23, 2806, 'attending', '2024-09-14 16:55:56', '2025-12-17 19:46:25', 'AeBO3kP4', '7404888'), - (23, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AeBO3kP4', '7424275'), - (23, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AeBO3kP4', '7424276'), - (23, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AeBO3kP4', '7432751'), - (23, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AeBO3kP4', '7432752'), - (23, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AeBO3kP4', '7432753'), - (23, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AeBO3kP4', '7432754'), - (23, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AeBO3kP4', '7432755'), - (23, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AeBO3kP4', '7432756'), - (23, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AeBO3kP4', '7432758'), - (23, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AeBO3kP4', '7432759'), - (23, 2832, 'maybe', '2024-09-09 20:25:39', '2025-12-17 19:46:24', 'AeBO3kP4', '7433324'), - (23, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AeBO3kP4', '7433834'), - (23, 2835, 'maybe', '2024-09-11 15:31:28', '2025-12-17 19:46:24', 'AeBO3kP4', '7437354'), - (23, 2838, 'attending', '2024-09-19 17:59:01', '2025-12-17 19:46:25', 'AeBO3kP4', '7439182'), - (23, 2839, 'attending', '2024-09-22 18:02:30', '2025-12-17 19:46:25', 'AeBO3kP4', '7439262'), - (23, 2840, 'attending', '2024-09-16 07:28:26', '2025-12-17 19:46:25', 'AeBO3kP4', '7444429'), - (23, 2845, 'maybe', '2024-09-21 18:53:24', '2025-12-17 19:46:25', 'AeBO3kP4', '7452129'), - (23, 2847, 'attending', '2024-09-22 16:09:58', '2025-12-17 19:46:25', 'AeBO3kP4', '7452299'), - (23, 2849, 'attending', '2024-09-28 06:05:27', '2025-12-17 19:46:25', 'AeBO3kP4', '7457114'), - (23, 2850, 'attending', '2024-09-25 13:43:24', '2025-12-17 19:46:25', 'AeBO3kP4', '7457153'), - (23, 2858, 'attending', '2024-10-12 19:19:02', '2025-12-17 19:46:26', 'AeBO3kP4', '7469388'), - (23, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AeBO3kP4', '7470197'), - (23, 2865, 'maybe', '2024-11-01 16:25:13', '2025-12-17 19:46:26', 'AeBO3kP4', '7471200'), - (23, 2871, 'maybe', '2024-10-16 15:51:54', '2025-12-17 19:46:26', 'AeBO3kP4', '7480481'), - (23, 2874, 'attending', '2024-10-08 05:12:04', '2025-12-17 19:46:26', 'AeBO3kP4', '7482239'), - (23, 2878, 'maybe', '2024-10-16 12:16:07', '2025-12-17 19:46:26', 'AeBO3kP4', '7633857'), - (23, 2881, 'maybe', '2024-11-04 05:59:33', '2025-12-17 19:46:26', 'AeBO3kP4', '7644047'), - (23, 2883, 'maybe', '2024-10-19 04:28:00', '2025-12-17 19:46:26', 'AeBO3kP4', '7649157'), - (23, 2892, 'maybe', '2024-10-28 07:21:00', '2025-12-17 19:46:26', 'AeBO3kP4', '7672064'), - (23, 2893, 'attending', '2024-11-03 02:58:41', '2025-12-17 19:46:26', 'AeBO3kP4', '7672705'), - (23, 2895, 'not_attending', '2024-11-05 07:07:40', '2025-12-17 19:46:26', 'AeBO3kP4', '7682072'), - (23, 2896, 'not_attending', '2024-11-09 23:40:12', '2025-12-17 19:46:27', 'AeBO3kP4', '7683647'), - (23, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'AeBO3kP4', '7685613'), - (23, 2900, 'not_attending', '2024-11-09 23:37:22', '2025-12-17 19:46:26', 'AeBO3kP4', '7686090'), - (23, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AeBO3kP4', '7688194'), - (23, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AeBO3kP4', '7688196'), - (23, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AeBO3kP4', '7688289'), - (23, 2911, 'attending', '2024-11-11 04:01:12', '2025-12-17 19:46:27', 'AeBO3kP4', '7689876'), - (23, 2912, 'maybe', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'AeBO3kP4', '7692763'), - (23, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AeBO3kP4', '7697552'), - (23, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AeBO3kP4', '7699878'), - (23, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'AeBO3kP4', '7704043'), - (23, 2922, 'not_attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'AeBO3kP4', '7710890'), - (23, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AeBO3kP4', '7712467'), - (23, 2925, 'not_attending', '2024-12-02 21:55:54', '2025-12-17 19:46:21', 'AeBO3kP4', '7713584'), - (23, 2926, 'not_attending', '2024-12-02 21:55:47', '2025-12-17 19:46:21', 'AeBO3kP4', '7713585'), - (23, 2927, 'not_attending', '2024-12-02 21:55:58', '2025-12-17 19:46:22', 'AeBO3kP4', '7713586'), - (23, 2929, 'not_attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'AeBO3kP4', '7723465'), - (23, 2958, 'attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'AeBO3kP4', '7738518'), - (23, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AeBO3kP4', '7750636'), - (23, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AeBO3kP4', '7796540'), - (23, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AeBO3kP4', '7796541'), - (23, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AeBO3kP4', '7796542'), - (23, 2967, 'maybe', '2025-01-07 15:25:29', '2025-12-17 19:46:22', 'AeBO3kP4', '7797181'), - (23, 2975, 'maybe', '2025-01-25 22:42:14', '2025-12-17 19:46:22', 'AeBO3kP4', '7823615'), - (23, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AeBO3kP4', '7825913'), - (23, 2980, 'attending', '2025-01-29 04:45:56', '2025-12-17 19:46:22', 'AeBO3kP4', '7825920'), - (23, 2981, 'maybe', '2025-01-29 16:59:27', '2025-12-17 19:46:22', 'AeBO3kP4', '7826124'), - (23, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AeBO3kP4', '7826209'), - (23, 2983, 'maybe', '2025-02-01 18:09:43', '2025-12-17 19:46:23', 'AeBO3kP4', '7829499'), - (23, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AeBO3kP4', '7834742'), - (23, 2986, 'attending', '2025-02-04 18:22:32', '2025-12-17 19:46:23', 'AeBO3kP4', '7835405'), - (23, 2987, 'attending', '2025-02-07 14:30:12', '2025-12-17 19:46:23', 'AeBO3kP4', '7839568'), - (23, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AeBO3kP4', '7842108'), - (23, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AeBO3kP4', '7842902'), - (23, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AeBO3kP4', '7842903'), - (23, 2993, 'maybe', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AeBO3kP4', '7842904'), - (23, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AeBO3kP4', '7842905'), - (23, 2999, 'attending', '2025-02-13 02:45:14', '2025-12-17 19:46:23', 'AeBO3kP4', '7844784'), - (23, 3005, 'attending', '2025-02-19 00:20:33', '2025-12-17 19:46:24', 'AeBO3kP4', '7854604'), - (23, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AeBO3kP4', '7855719'), - (23, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AeBO3kP4', '7860683'), - (23, 3008, 'attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AeBO3kP4', '7860684'), - (23, 3009, 'maybe', '2025-02-27 18:35:23', '2025-12-17 19:46:18', 'AeBO3kP4', '7864019'), - (23, 3010, 'maybe', '2025-03-04 04:22:46', '2025-12-17 19:46:18', 'AeBO3kP4', '7864879'), - (23, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AeBO3kP4', '7866095'), - (23, 3013, 'attending', '2025-03-04 04:22:25', '2025-12-17 19:46:18', 'AeBO3kP4', '7869170'), - (23, 3015, 'not_attending', '2025-04-22 23:28:46', '2025-12-17 19:46:20', 'AeBO3kP4', '7869186'), - (23, 3016, 'attending', '2025-03-16 06:34:31', '2025-12-17 19:46:20', 'AeBO3kP4', '7869187'), - (23, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AeBO3kP4', '7869188'), - (23, 3018, 'attending', '2025-03-16 06:34:28', '2025-12-17 19:46:20', 'AeBO3kP4', '7869189'), - (23, 3028, 'attending', '2025-04-27 02:34:46', '2025-12-17 19:46:20', 'AeBO3kP4', '7869199'), - (23, 3029, 'attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AeBO3kP4', '7869201'), - (23, 3030, 'maybe', '2025-03-06 04:59:57', '2025-12-17 19:46:18', 'AeBO3kP4', '7872088'), - (23, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AeBO3kP4', '7877465'), - (23, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AeBO3kP4', '7878570'), - (23, 3036, 'attending', '2025-03-13 15:55:51', '2025-12-17 19:46:19', 'AeBO3kP4', '7880952'), - (23, 3037, 'attending', '2025-03-13 18:41:51', '2025-12-17 19:46:19', 'AeBO3kP4', '7880977'), - (23, 3039, 'attending', '2025-03-19 20:51:28', '2025-12-17 19:46:19', 'AeBO3kP4', '7881992'), - (23, 3041, 'not_attending', '2025-03-14 20:22:55', '2025-12-17 19:46:19', 'AeBO3kP4', '7881995'), - (23, 3046, 'maybe', '2025-04-08 10:43:56', '2025-12-17 19:46:20', 'AeBO3kP4', '7882692'), - (23, 3048, 'attending', '2025-04-19 19:19:47', '2025-12-17 19:46:20', 'AeBO3kP4', '7882694'), - (23, 3051, 'not_attending', '2025-03-20 22:07:16', '2025-12-17 19:46:19', 'AeBO3kP4', '7884023'), - (23, 3052, 'attending', '2025-03-20 22:07:22', '2025-12-17 19:46:19', 'AeBO3kP4', '7884024'), - (23, 3054, 'attending', '2025-03-17 03:44:16', '2025-12-17 19:46:19', 'AeBO3kP4', '7884168'), - (23, 3055, 'maybe', '2025-03-21 05:35:11', '2025-12-17 19:46:19', 'AeBO3kP4', '7888118'), - (23, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AeBO3kP4', '7888250'), - (23, 3057, 'attending', '2025-03-24 18:09:58', '2025-12-17 19:46:19', 'AeBO3kP4', '7890059'), - (23, 3062, 'maybe', '2025-03-29 23:02:11', '2025-12-17 19:46:19', 'AeBO3kP4', '7892738'), - (23, 3070, 'not_attending', '2025-04-06 06:24:02', '2025-12-17 19:46:20', 'AeBO3kP4', '7894829'), - (23, 3075, 'maybe', '2025-04-18 00:55:26', '2025-12-17 19:46:20', 'AeBO3kP4', '7898896'), - (23, 3085, 'maybe', '2025-04-08 19:18:38', '2025-12-17 19:46:20', 'AeBO3kP4', '7903688'), - (23, 3087, 'maybe', '2025-04-14 18:17:49', '2025-12-17 19:46:20', 'AeBO3kP4', '7903856'), - (23, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AeBO3kP4', '7904777'), - (23, 3090, 'not_attending', '2025-04-16 17:06:55', '2025-12-17 19:46:20', 'AeBO3kP4', '7914315'), - (23, 3091, 'attending', '2025-04-17 21:11:29', '2025-12-17 19:46:20', 'AeBO3kP4', '8340289'), - (23, 3094, 'attending', '2025-04-25 22:17:19', '2025-12-17 19:46:21', 'AeBO3kP4', '8342292'), - (23, 3095, 'not_attending', '2025-05-03 19:47:56', '2025-12-17 19:46:20', 'AeBO3kP4', '8342293'), - (23, 3097, 'not_attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'AeBO3kP4', '8342993'), - (23, 3102, 'maybe', '2025-04-27 02:34:55', '2025-12-17 19:46:20', 'AeBO3kP4', '8346008'), - (23, 3104, 'attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AeBO3kP4', '8349164'), - (23, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AeBO3kP4', '8349545'), - (23, 3106, 'not_attending', '2025-04-29 13:57:48', '2025-12-17 19:46:20', 'AeBO3kP4', '8349552'), - (23, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AeBO3kP4', '8353584'), - (23, 3114, 'attending', '2025-05-02 21:34:04', '2025-12-17 19:46:20', 'AeBO3kP4', '8357180'), - (23, 3123, 'not_attending', '2025-05-08 19:44:27', '2025-12-17 19:46:21', 'AeBO3kP4', '8363523'), - (23, 3124, 'maybe', '2025-05-09 21:17:41', '2025-12-17 19:46:21', 'AeBO3kP4', '8363566'), - (23, 3126, 'attending', '2025-05-12 09:08:59', '2025-12-17 19:46:21', 'AeBO3kP4', '8365614'), - (23, 3131, 'not_attending', '2025-05-13 04:27:18', '2025-12-17 19:46:21', 'AeBO3kP4', '8368028'), - (23, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AeBO3kP4', '8368029'), - (23, 3136, 'attending', '2025-05-19 03:07:10', '2025-12-17 19:46:21', 'AeBO3kP4', '8374152'), - (23, 3137, 'attending', '2025-05-19 03:04:55', '2025-12-17 19:46:21', 'AeBO3kP4', '8374153'), - (23, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AeBO3kP4', '8388462'), - (23, 3150, 'attending', '2025-06-15 00:27:53', '2025-12-17 19:46:15', 'AeBO3kP4', '8393174'), - (23, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AeBO3kP4', '8400273'), - (23, 3154, 'attending', '2025-06-15 00:32:52', '2025-12-17 19:46:15', 'AeBO3kP4', '8400274'), - (23, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AeBO3kP4', '8400275'), - (23, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AeBO3kP4', '8400276'), - (23, 3160, 'not_attending', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'AeBO3kP4', '8401411'), - (23, 3161, 'not_attending', '2025-06-04 09:04:49', '2025-12-17 19:46:15', 'AeBO3kP4', '8401412'), - (23, 3165, 'attending', '2025-06-07 20:48:42', '2025-12-17 19:46:14', 'AeBO3kP4', '8404220'), - (23, 3168, 'maybe', '2025-06-20 00:54:49', '2025-12-17 19:46:15', 'AeBO3kP4', '8404522'), - (23, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AeBO3kP4', '8404977'), - (23, 3181, 'maybe', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AeBO3kP4', '8430783'), - (23, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AeBO3kP4', '8430784'), - (23, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AeBO3kP4', '8430799'), - (23, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AeBO3kP4', '8430800'), - (23, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AeBO3kP4', '8430801'), - (23, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AeBO3kP4', '8438709'), - (23, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AeBO3kP4', '8457738'), - (23, 3195, 'attending', '2025-08-06 00:48:02', '2025-12-17 19:46:17', 'AeBO3kP4', '8458118'), - (23, 3196, 'attending', '2025-08-12 05:45:20', '2025-12-17 19:46:17', 'AeBO3kP4', '8458543'), - (23, 3198, 'attending', '2025-08-16 22:05:08', '2025-12-17 19:46:18', 'AeBO3kP4', '8459268'), - (23, 3200, 'maybe', '2025-07-19 18:56:36', '2025-12-17 19:46:17', 'AeBO3kP4', '8459566'), - (23, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AeBO3kP4', '8459567'), - (23, 3203, 'attending', '2025-07-20 02:36:20', '2025-12-17 19:46:17', 'AeBO3kP4', '8461032'), - (23, 3210, 'maybe', '2025-08-27 09:35:50', '2025-12-17 19:46:18', 'AeBO3kP4', '8471162'), - (23, 3211, 'maybe', '2025-08-08 15:54:45', '2025-12-17 19:46:17', 'AeBO3kP4', '8477785'), - (23, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AeBO3kP4', '8477877'), - (23, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AeBO3kP4', '8485688'), - (23, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AeBO3kP4', '8490587'), - (23, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AeBO3kP4', '8493552'), - (23, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AeBO3kP4', '8493553'), - (23, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AeBO3kP4', '8493554'), - (23, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AeBO3kP4', '8493555'), - (23, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AeBO3kP4', '8493556'), - (23, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AeBO3kP4', '8493557'), - (23, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AeBO3kP4', '8493558'), - (23, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AeBO3kP4', '8493559'), - (23, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AeBO3kP4', '8493560'), - (23, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AeBO3kP4', '8493561'), - (23, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AeBO3kP4', '8493572'), - (23, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AeBO3kP4', '8540725'), - (23, 3292, 'attending', '2025-10-15 05:53:19', '2025-12-17 19:46:14', 'AeBO3kP4', '8543835'), - (23, 3293, 'not_attending', '2025-10-15 09:51:41', '2025-12-17 19:46:14', 'AeBO3kP4', '8543836'), - (23, 3295, 'attending', '2025-11-01 15:05:05', '2025-12-17 19:46:14', 'AeBO3kP4', '8547541'), - (23, 3308, 'maybe', '2025-11-03 01:42:24', '2025-12-17 19:46:14', 'AeBO3kP4', '8550408'), - (23, 3309, 'attending', '2025-11-18 00:40:25', '2025-12-17 19:46:14', 'AeBO3kP4', '8550409'), - (23, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AeBO3kP4', '8555421'), - (24, 3241, 'attending', '2025-10-09 04:29:24', '2025-12-17 19:46:13', 'mL2QO3a4', '8493557'), - (24, 3242, 'attending', '2025-10-25 04:48:07', '2025-12-17 19:46:14', 'mL2QO3a4', '8493558'), - (24, 3244, 'attending', '2025-10-02 05:08:53', '2025-12-17 19:46:13', 'mL2QO3a4', '8493560'), - (24, 3253, 'attending', '2025-10-25 22:26:44', '2025-12-17 19:46:14', 'mL2QO3a4', '8493572'), - (24, 3278, 'attending', '2025-09-30 14:58:18', '2025-12-17 19:46:13', 'mL2QO3a4', '8535533'), - (24, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mL2QO3a4', '8540725'), - (24, 3289, 'attending', '2025-10-25 04:49:41', '2025-12-17 19:46:14', 'mL2QO3a4', '8542939'), - (24, 3295, 'attending', '2025-10-29 03:03:24', '2025-12-17 19:46:14', 'mL2QO3a4', '8547541'), - (24, 3300, 'attending', '2025-11-08 00:23:40', '2025-12-17 19:46:14', 'mL2QO3a4', '8549145'), - (24, 3304, 'attending', '2025-11-20 00:49:32', '2025-12-17 19:46:14', 'mL2QO3a4', '8550024'), - (24, 3305, 'attending', '2025-12-04 04:30:21', '2025-12-17 19:46:11', 'mL2QO3a4', '8550025'), - (24, 3306, 'attending', '2025-12-13 06:37:30', '2025-12-17 19:46:11', 'mL2QO3a4', '8550026'), - (24, 3307, 'not_attending', '2025-12-15 06:36:36', '2025-12-17 19:46:11', 'mL2QO3a4', '8550027'), - (24, 3308, 'attending', '2025-11-11 07:39:38', '2025-12-17 19:46:14', 'mL2QO3a4', '8550408'), - (24, 3309, 'not_attending', '2025-11-17 08:07:10', '2025-12-17 19:46:14', 'mL2QO3a4', '8550409'), - (24, 3320, 'attending', '2025-11-13 00:50:04', '2025-12-17 19:46:14', 'mL2QO3a4', '8555219'), - (24, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mL2QO3a4', '8555421'), - (24, 3332, 'attending', '2025-12-04 04:30:04', '2025-12-17 19:46:11', 'mL2QO3a4', '8562248'), - (25, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4WB6BgnA', '6482693'), - (25, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4WB6BgnA', '6484200'), - (25, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4WB6BgnA', '6507741'), - (25, 2322, 'attending', '2023-11-14 02:57:13', '2025-12-17 19:46:48', '4WB6BgnA', '6514659'), - (25, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4WB6BgnA', '6514660'), - (25, 2324, 'attending', '2023-12-08 14:54:09', '2025-12-17 19:46:49', '4WB6BgnA', '6514662'), - (25, 2325, 'attending', '2023-12-05 03:01:35', '2025-12-17 19:46:36', '4WB6BgnA', '6514663'), - (25, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4WB6BgnA', '6519103'), - (25, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4WB6BgnA', '6535681'), - (25, 2340, 'attending', '2023-11-15 03:54:46', '2025-12-17 19:46:48', '4WB6BgnA', '6540279'), - (25, 2342, 'attending', '2023-11-13 19:45:22', '2025-12-17 19:46:47', '4WB6BgnA', '6545076'), - (25, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4WB6BgnA', '6584747'), - (25, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4WB6BgnA', '6587097'), - (25, 2353, 'attending', '2023-11-28 00:36:17', '2025-12-17 19:46:48', '4WB6BgnA', '6588894'), - (25, 2355, 'attending', '2023-11-28 00:35:55', '2025-12-17 19:46:49', '4WB6BgnA', '6593339'), - (25, 2356, 'attending', '2023-11-28 00:37:13', '2025-12-17 19:46:36', '4WB6BgnA', '6593340'), - (25, 2357, 'not_attending', '2023-11-28 00:37:21', '2025-12-17 19:46:36', '4WB6BgnA', '6593341'), - (25, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4WB6BgnA', '6609022'), - (25, 2373, 'attending', '2024-01-02 03:16:09', '2025-12-17 19:46:38', '4WB6BgnA', '6632678'), - (25, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4WB6BgnA', '6632757'), - (25, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4WB6BgnA', '6644187'), - (25, 2382, 'attending', '2024-01-02 03:16:44', '2025-12-17 19:46:37', '4WB6BgnA', '6646401'), - (25, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4WB6BgnA', '6648951'), - (25, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4WB6BgnA', '6648952'), - (25, 2388, 'attending', '2024-01-06 23:36:55', '2025-12-17 19:46:37', '4WB6BgnA', '6649244'), - (25, 2392, 'attending', '2024-01-05 01:34:52', '2025-12-17 19:46:37', '4WB6BgnA', '6654412'), - (25, 2393, 'attending', '2024-01-05 01:32:33', '2025-12-17 19:46:38', '4WB6BgnA', '6654468'), - (25, 2394, 'maybe', '2024-01-17 01:29:14', '2025-12-17 19:46:38', '4WB6BgnA', '6654470'), - (25, 2395, 'attending', '2024-01-05 01:32:37', '2025-12-17 19:46:38', '4WB6BgnA', '6654471'), - (25, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4WB6BgnA', '6655401'), - (25, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4WB6BgnA', '6661585'), - (25, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4WB6BgnA', '6661588'), - (25, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4WB6BgnA', '6661589'), - (25, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4WB6BgnA', '6699906'), - (25, 2408, 'attending', '2024-01-25 00:34:13', '2025-12-17 19:46:40', '4WB6BgnA', '6699907'), - (25, 2409, 'attending', '2024-01-31 11:24:22', '2025-12-17 19:46:41', '4WB6BgnA', '6699909'), - (25, 2410, 'attending', '2024-02-07 00:22:39', '2025-12-17 19:46:41', '4WB6BgnA', '6699911'), - (25, 2411, 'attending', '2024-02-14 10:44:01', '2025-12-17 19:46:41', '4WB6BgnA', '6699913'), - (25, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4WB6BgnA', '6701109'), - (25, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4WB6BgnA', '6705219'), - (25, 2426, 'maybe', '2024-01-21 07:11:03', '2025-12-17 19:46:40', '4WB6BgnA', '6705569'), - (25, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4WB6BgnA', '6710153'), - (25, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4WB6BgnA', '6711552'), - (25, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4WB6BgnA', '6711553'), - (25, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4WB6BgnA', '6722688'), - (25, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4WB6BgnA', '6730620'), - (25, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4WB6BgnA', '6730642'), - (25, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4WB6BgnA', '6740364'), - (25, 2455, 'maybe', '2024-02-08 14:49:38', '2025-12-17 19:46:41', '4WB6BgnA', '6741034'), - (25, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4WB6BgnA', '6743829'), - (25, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4WB6BgnA', '7030380'), - (25, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4WB6BgnA', '7033677'), - (25, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4WB6BgnA', '7035415'), - (25, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4WB6BgnA', '7044715'), - (25, 2482, 'maybe', '2024-03-07 01:05:04', '2025-12-17 19:46:44', '4WB6BgnA', '7044719'), - (25, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4WB6BgnA', '7050318'), - (25, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4WB6BgnA', '7050319'), - (25, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4WB6BgnA', '7050322'), - (25, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4WB6BgnA', '7057804'), - (25, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', '4WB6BgnA', '7059866'), - (25, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4WB6BgnA', '7072824'), - (25, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4WB6BgnA', '7074348'), - (25, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4WB6BgnA', '7074364'), - (25, 2525, 'maybe', '2024-06-13 20:48:50', '2025-12-17 19:46:28', '4WB6BgnA', '7074365'), - (25, 2536, 'maybe', '2024-03-16 05:35:49', '2025-12-17 19:46:33', '4WB6BgnA', '7077689'), - (25, 2537, 'attending', '2024-03-23 17:26:19', '2025-12-17 19:46:33', '4WB6BgnA', '7085484'), - (25, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4WB6BgnA', '7089267'), - (25, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4WB6BgnA', '7098747'), - (25, 2553, 'maybe', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4WB6BgnA', '7113468'), - (25, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4WB6BgnA', '7114856'), - (25, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4WB6BgnA', '7114951'), - (25, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4WB6BgnA', '7114955'), - (25, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4WB6BgnA', '7114956'), - (25, 2558, 'attending', '2024-04-16 20:44:50', '2025-12-17 19:46:35', '4WB6BgnA', '7114957'), - (25, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4WB6BgnA', '7153615'), - (25, 2571, 'maybe', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4WB6BgnA', '7159484'), - (25, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4WB6BgnA', '7178446'), - (25, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4WB6BgnA', '7220467'), - (25, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4WB6BgnA', '7240354'), - (25, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4WB6BgnA', '7251633'), - (25, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4WB6BgnA', '7263048'), - (25, 2626, 'attending', '2024-05-18 00:03:40', '2025-12-17 19:46:35', '4WB6BgnA', '7264723'), - (25, 2627, 'attending', '2024-05-22 02:58:08', '2025-12-17 19:46:35', '4WB6BgnA', '7264724'), - (25, 2628, 'attending', '2024-05-28 22:47:47', '2025-12-17 19:46:36', '4WB6BgnA', '7264725'), - (25, 2629, 'attending', '2024-05-28 22:47:49', '2025-12-17 19:46:28', '4WB6BgnA', '7264726'), - (25, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4WB6BgnA', '7302674'), - (25, 2671, 'attending', '2024-06-09 23:21:28', '2025-12-17 19:46:28', '4WB6BgnA', '7318256'), - (25, 2678, 'attending', '2024-06-12 20:13:19', '2025-12-17 19:46:28', '4WB6BgnA', '7319489'), - (25, 2679, 'attending', '2024-06-17 20:59:24', '2025-12-17 19:46:29', '4WB6BgnA', '7319490'), - (25, 2683, 'not_attending', '2024-06-11 01:23:18', '2025-12-17 19:46:28', '4WB6BgnA', '7321978'), - (25, 2687, 'attending', '2024-06-11 21:11:55', '2025-12-17 19:46:28', '4WB6BgnA', '7324019'), - (25, 2688, 'attending', '2024-06-25 22:36:02', '2025-12-17 19:46:29', '4WB6BgnA', '7324073'), - (25, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4WB6BgnA', '7324074'), - (25, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4WB6BgnA', '7324075'), - (25, 2691, 'attending', '2024-07-17 20:29:08', '2025-12-17 19:46:30', '4WB6BgnA', '7324076'), - (25, 2692, 'not_attending', '2024-07-21 02:54:52', '2025-12-17 19:46:30', '4WB6BgnA', '7324077'), - (25, 2693, 'maybe', '2024-08-01 02:56:36', '2025-12-17 19:46:31', '4WB6BgnA', '7324078'), - (25, 2694, 'attending', '2024-08-09 21:25:56', '2025-12-17 19:46:31', '4WB6BgnA', '7324079'), - (25, 2695, 'attending', '2024-08-17 04:06:10', '2025-12-17 19:46:31', '4WB6BgnA', '7324080'), - (25, 2696, 'attending', '2024-08-24 18:49:42', '2025-12-17 19:46:32', '4WB6BgnA', '7324081'), - (25, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4WB6BgnA', '7324082'), - (25, 2698, 'attending', '2024-09-04 01:56:32', '2025-12-17 19:46:24', '4WB6BgnA', '7324083'), - (25, 2702, 'attending', '2024-06-13 00:55:24', '2025-12-17 19:46:28', '4WB6BgnA', '7324867'), - (25, 2705, 'attending', '2024-06-13 20:49:43', '2025-12-17 19:46:29', '4WB6BgnA', '7324944'), - (25, 2706, 'attending', '2024-06-19 23:09:26', '2025-12-17 19:46:28', '4WB6BgnA', '7324947'), - (25, 2707, 'attending', '2024-06-13 20:49:24', '2025-12-17 19:46:28', '4WB6BgnA', '7324952'), - (25, 2719, 'attending', '2024-06-23 18:17:40', '2025-12-17 19:46:29', '4WB6BgnA', '7331305'), - (25, 2720, 'attending', '2024-06-18 20:57:01', '2025-12-17 19:46:28', '4WB6BgnA', '7331436'), - (25, 2721, 'attending', '2024-06-18 23:07:10', '2025-12-17 19:46:29', '4WB6BgnA', '7331456'), - (25, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4WB6BgnA', '7331457'), - (25, 2724, 'attending', '2024-06-26 21:18:39', '2025-12-17 19:46:29', '4WB6BgnA', '7332562'), - (25, 2726, 'attending', '2024-06-19 19:17:45', '2025-12-17 19:46:29', '4WB6BgnA', '7332853'), - (25, 2733, 'attending', '2024-06-26 00:30:49', '2025-12-17 19:46:29', '4WB6BgnA', '7338853'), - (25, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4WB6BgnA', '7356752'), - (25, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', '4WB6BgnA', '7363595'), - (25, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4WB6BgnA', '7363643'), - (25, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4WB6BgnA', '7368606'), - (25, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4WB6BgnA', '7397462'), - (25, 2821, 'not_attending', '2024-10-12 00:45:48', '2025-12-17 19:46:26', '4WB6BgnA', '7424275'), - (25, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4WB6BgnA', '7424276'), - (25, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4WB6BgnA', '7432751'), - (25, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4WB6BgnA', '7432752'), - (25, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4WB6BgnA', '7432753'), - (25, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4WB6BgnA', '7432754'), - (25, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4WB6BgnA', '7432755'), - (25, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4WB6BgnA', '7432756'), - (25, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4WB6BgnA', '7432758'), - (25, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4WB6BgnA', '7432759'), - (25, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4WB6BgnA', '7433834'), - (25, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4WB6BgnA', '7470197'), - (25, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4WB6BgnA', '7685613'), - (25, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4WB6BgnA', '7688194'), - (25, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4WB6BgnA', '7688196'), - (25, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4WB6BgnA', '7688289'), - (25, 2909, 'attending', '2024-11-10 21:20:50', '2025-12-17 19:46:27', '4WB6BgnA', '7689771'), - (25, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4WB6BgnA', '7692763'), - (25, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4WB6BgnA', '7697552'), - (25, 2916, 'attending', '2024-11-20 00:53:53', '2025-12-17 19:46:27', '4WB6BgnA', '7699006'), - (25, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4WB6BgnA', '7699878'), - (25, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4WB6BgnA', '7704043'), - (25, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4WB6BgnA', '7712467'), - (25, 2925, 'attending', '2024-12-12 01:17:45', '2025-12-17 19:46:21', '4WB6BgnA', '7713584'), - (25, 2926, 'maybe', '2024-12-07 05:00:27', '2025-12-17 19:46:21', '4WB6BgnA', '7713585'), - (25, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4WB6BgnA', '7713586'), - (25, 2951, 'attending', '2024-12-12 01:17:41', '2025-12-17 19:46:21', '4WB6BgnA', '7729509'), - (25, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4WB6BgnA', '7738518'), - (25, 2962, 'maybe', '2024-12-27 01:44:23', '2025-12-17 19:46:22', '4WB6BgnA', '7750632'), - (25, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4WB6BgnA', '7750636'), - (25, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4WB6BgnA', '7796540'), - (25, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4WB6BgnA', '7796541'), - (25, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4WB6BgnA', '7796542'), - (25, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4WB6BgnA', '7825913'), - (25, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4WB6BgnA', '7826209'), - (25, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4WB6BgnA', '7834742'), - (25, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '4WB6BgnA', '7842108'), - (25, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4WB6BgnA', '7842902'), - (25, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4WB6BgnA', '7842903'), - (25, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4WB6BgnA', '7842904'), - (25, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4WB6BgnA', '7842905'), - (25, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4WB6BgnA', '7855719'), - (25, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4WB6BgnA', '7860683'), - (25, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4WB6BgnA', '7860684'), - (25, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4WB6BgnA', '7866095'), - (25, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4WB6BgnA', '7869170'), - (25, 3014, 'attending', '2025-03-31 22:52:46', '2025-12-17 19:46:19', '4WB6BgnA', '7869185'), - (25, 3015, 'attending', '2025-04-25 01:43:06', '2025-12-17 19:46:20', '4WB6BgnA', '7869186'), - (25, 3016, 'attending', '2025-04-16 22:57:34', '2025-12-17 19:46:20', '4WB6BgnA', '7869187'), - (25, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4WB6BgnA', '7869188'), - (25, 3018, 'attending', '2025-04-09 00:05:04', '2025-12-17 19:46:20', '4WB6BgnA', '7869189'), - (25, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4WB6BgnA', '7869201'), - (25, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4WB6BgnA', '7877465'), - (25, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4WB6BgnA', '7878570'), - (25, 3042, 'attending', '2025-03-15 02:13:04', '2025-12-17 19:46:19', '4WB6BgnA', '7882467'), - (25, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4WB6BgnA', '7888250'), - (25, 3060, 'not_attending', '2025-03-27 14:16:18', '2025-12-17 19:46:19', '4WB6BgnA', '7892589'), - (25, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', '4WB6BgnA', '7903852'), - (25, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4WB6BgnA', '7904777'), - (25, 3095, 'attending', '2025-04-27 22:56:37', '2025-12-17 19:46:20', '4WB6BgnA', '8342293'), - (25, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4WB6BgnA', '8349164'), - (25, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4WB6BgnA', '8349545'), - (25, 3107, 'attending', '2025-04-27 23:26:09', '2025-12-17 19:46:20', '4WB6BgnA', '8350107'), - (25, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4WB6BgnA', '8353584'), - (25, 3127, 'maybe', '2025-05-13 01:23:42', '2025-12-17 19:46:21', '4WB6BgnA', '8365615'), - (25, 3131, 'attending', '2025-05-15 00:40:30', '2025-12-17 19:46:21', '4WB6BgnA', '8368028'), - (25, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4WB6BgnA', '8368029'), - (25, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4WB6BgnA', '8388462'), - (25, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4WB6BgnA', '8400273'), - (25, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4WB6BgnA', '8400274'), - (25, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4WB6BgnA', '8400275'), - (25, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4WB6BgnA', '8400276'), - (25, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4WB6BgnA', '8404977'), - (25, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4WB6BgnA', '8430783'), - (25, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4WB6BgnA', '8430784'), - (25, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4WB6BgnA', '8430799'), - (25, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4WB6BgnA', '8430800'), - (25, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4WB6BgnA', '8430801'), - (25, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4WB6BgnA', '8438709'), - (25, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4WB6BgnA', '8457738'), - (25, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4WB6BgnA', '8459566'), - (25, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4WB6BgnA', '8459567'), - (25, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4WB6BgnA', '8461032'), - (25, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4WB6BgnA', '8477877'), - (25, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4WB6BgnA', '8485688'), - (25, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4WB6BgnA', '8490587'), - (25, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4WB6BgnA', '8493552'), - (25, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4WB6BgnA', '8493553'), - (25, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4WB6BgnA', '8493554'), - (25, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4WB6BgnA', '8493555'), - (25, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4WB6BgnA', '8493556'), - (25, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4WB6BgnA', '8493557'), - (25, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4WB6BgnA', '8493558'), - (25, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4WB6BgnA', '8493559'), - (25, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4WB6BgnA', '8493560'), - (25, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4WB6BgnA', '8493561'), - (25, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4WB6BgnA', '8493572'), - (25, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '4WB6BgnA', '8540725'), - (25, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4WB6BgnA', '8555421'), - (26, 2518, 'attending', '2024-07-21 03:04:21', '2025-12-17 19:46:30', 'dJZQ6EMd', '7074358'), - (26, 2522, 'attending', '2024-07-17 01:59:16', '2025-12-17 19:46:30', 'dJZQ6EMd', '7074362'), - (26, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJZQ6EMd', '7074364'), - (26, 2527, 'maybe', '2024-06-26 01:20:50', '2025-12-17 19:46:29', 'dJZQ6EMd', '7074367'), - (26, 2531, 'not_attending', '2024-08-28 22:14:48', '2025-12-17 19:46:32', 'dJZQ6EMd', '7074378'), - (26, 2661, 'attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'dJZQ6EMd', '7302674'), - (26, 2678, 'attending', '2024-06-14 21:55:17', '2025-12-17 19:46:28', 'dJZQ6EMd', '7319489'), - (26, 2679, 'attending', '2024-06-20 01:22:14', '2025-12-17 19:46:29', 'dJZQ6EMd', '7319490'), - (26, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324073'), - (26, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324074'), - (26, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJZQ6EMd', '7324075'), - (26, 2691, 'attending', '2024-07-14 01:46:47', '2025-12-17 19:46:30', 'dJZQ6EMd', '7324076'), - (26, 2692, 'attending', '2024-07-21 18:01:56', '2025-12-17 19:46:30', 'dJZQ6EMd', '7324077'), - (26, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJZQ6EMd', '7324078'), - (26, 2694, 'attending', '2024-08-07 01:27:24', '2025-12-17 19:46:31', 'dJZQ6EMd', '7324079'), - (26, 2697, 'attending', '2024-08-27 16:00:01', '2025-12-17 19:46:32', 'dJZQ6EMd', '7324082'), - (26, 2698, 'attending', '2024-09-03 19:42:37', '2025-12-17 19:46:24', 'dJZQ6EMd', '7324083'), - (26, 2700, 'attending', '2024-06-14 21:46:57', '2025-12-17 19:46:28', 'dJZQ6EMd', '7324388'), - (26, 2701, 'maybe', '2024-06-28 18:32:14', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324391'), - (26, 2702, 'attending', '2024-06-13 18:33:33', '2025-12-17 19:46:28', 'dJZQ6EMd', '7324867'), - (26, 2705, 'not_attending', '2024-06-30 15:53:32', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324944'), - (26, 2706, 'attending', '2024-06-19 00:51:19', '2025-12-17 19:46:28', 'dJZQ6EMd', '7324947'), - (26, 2719, 'attending', '2024-06-20 01:25:06', '2025-12-17 19:46:29', 'dJZQ6EMd', '7331305'), - (26, 2720, 'not_attending', '2024-06-18 21:05:50', '2025-12-17 19:46:28', 'dJZQ6EMd', '7331436'), - (26, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dJZQ6EMd', '7331457'), - (26, 2723, 'maybe', '2024-06-21 14:09:00', '2025-12-17 19:46:29', 'dJZQ6EMd', '7332389'), - (26, 2724, 'maybe', '2024-06-25 23:23:58', '2025-12-17 19:46:29', 'dJZQ6EMd', '7332562'), - (26, 2728, 'attending', '2024-06-21 22:30:15', '2025-12-17 19:46:29', 'dJZQ6EMd', '7334124'), - (26, 2733, 'attending', '2024-06-26 01:21:16', '2025-12-17 19:46:29', 'dJZQ6EMd', '7338853'), - (26, 2747, 'attending', '2024-07-17 22:52:00', '2025-12-17 19:46:30', 'dJZQ6EMd', '7353587'), - (26, 2749, 'attending', '2024-07-09 13:36:13', '2025-12-17 19:46:29', 'dJZQ6EMd', '7355496'), - (26, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJZQ6EMd', '7356752'), - (26, 2755, 'attending', '2024-07-10 22:36:19', '2025-12-17 19:46:29', 'dJZQ6EMd', '7357808'), - (26, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dJZQ6EMd', '7363595'), - (26, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dJZQ6EMd', '7363643'), - (26, 2767, 'attending', '2024-07-21 02:58:28', '2025-12-17 19:46:30', 'dJZQ6EMd', '7364726'), - (26, 2771, 'not_attending', '2024-07-21 02:57:28', '2025-12-17 19:46:30', 'dJZQ6EMd', '7368263'), - (26, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJZQ6EMd', '7368606'), - (26, 2786, 'attending', '2024-08-07 00:10:18', '2025-12-17 19:46:31', 'dJZQ6EMd', '7381403'), - (26, 2790, 'attending', '2024-08-05 20:25:19', '2025-12-17 19:46:31', 'dJZQ6EMd', '7384857'), - (26, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJZQ6EMd', '7397462'), - (26, 2806, 'attending', '2024-09-18 15:53:24', '2025-12-17 19:46:25', 'dJZQ6EMd', '7404888'), - (26, 2808, 'attending', '2024-08-27 22:32:21', '2025-12-17 19:46:32', 'dJZQ6EMd', '7412860'), - (26, 2821, 'attending', '2024-10-07 20:15:16', '2025-12-17 19:46:26', 'dJZQ6EMd', '7424275'), - (26, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJZQ6EMd', '7424276'), - (26, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJZQ6EMd', '7432751'), - (26, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJZQ6EMd', '7432752'), - (26, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJZQ6EMd', '7432753'), - (26, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432754'), - (26, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432755'), - (26, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432756'), - (26, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432758'), - (26, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432759'), - (26, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dJZQ6EMd', '7433834'), - (26, 2839, 'attending', '2024-09-25 18:46:28', '2025-12-17 19:46:25', 'dJZQ6EMd', '7439262'), - (26, 2849, 'attending', '2024-09-30 22:24:07', '2025-12-17 19:46:25', 'dJZQ6EMd', '7457114'), - (26, 2850, 'attending', '2024-10-01 21:58:04', '2025-12-17 19:46:25', 'dJZQ6EMd', '7457153'), - (26, 2859, 'maybe', '2024-10-31 23:55:30', '2025-12-17 19:46:26', 'dJZQ6EMd', '7469389'), - (26, 2861, 'maybe', '2024-10-03 13:46:10', '2025-12-17 19:46:26', 'dJZQ6EMd', '7469826'), - (26, 2862, 'attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJZQ6EMd', '7470197'), - (26, 2870, 'attending', '2024-10-05 20:57:56', '2025-12-17 19:46:26', 'dJZQ6EMd', '7475068'), - (26, 2874, 'attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'dJZQ6EMd', '7482239'), - (26, 2875, 'attending', '2024-10-07 22:03:31', '2025-12-17 19:46:26', 'dJZQ6EMd', '7482241'), - (26, 2878, 'maybe', '2024-10-16 18:19:33', '2025-12-17 19:46:26', 'dJZQ6EMd', '7633857'), - (26, 2881, 'maybe', '2024-11-06 22:05:40', '2025-12-17 19:46:26', 'dJZQ6EMd', '7644047'), - (26, 2883, 'maybe', '2024-10-23 18:45:19', '2025-12-17 19:46:26', 'dJZQ6EMd', '7649157'), - (26, 2892, 'attending', '2024-10-30 22:05:22', '2025-12-17 19:46:26', 'dJZQ6EMd', '7672064'), - (26, 2893, 'attending', '2024-10-29 02:18:09', '2025-12-17 19:46:26', 'dJZQ6EMd', '7672705'), - (26, 2895, 'maybe', '2024-11-05 06:52:52', '2025-12-17 19:46:26', 'dJZQ6EMd', '7682072'), - (26, 2896, 'maybe', '2024-11-12 23:52:47', '2025-12-17 19:46:27', 'dJZQ6EMd', '7683647'), - (26, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'dJZQ6EMd', '7685613'), - (26, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJZQ6EMd', '7688194'), - (26, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJZQ6EMd', '7688196'), - (26, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJZQ6EMd', '7688289'), - (26, 2912, 'maybe', '2024-11-15 01:04:33', '2025-12-17 19:46:27', 'dJZQ6EMd', '7692763'), - (26, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dJZQ6EMd', '7697552'), - (26, 2915, 'attending', '2024-11-22 00:16:45', '2025-12-17 19:46:27', 'dJZQ6EMd', '7698151'), - (26, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dJZQ6EMd', '7699878'), - (26, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'dJZQ6EMd', '7704043'), - (26, 2921, 'maybe', '2024-11-24 04:23:18', '2025-12-17 19:46:28', 'dJZQ6EMd', '7708460'), - (26, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dJZQ6EMd', '7712467'), - (26, 2925, 'attending', '2024-12-12 23:52:57', '2025-12-17 19:46:21', 'dJZQ6EMd', '7713584'), - (26, 2926, 'attending', '2024-12-03 06:21:27', '2025-12-17 19:46:21', 'dJZQ6EMd', '7713585'), - (26, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dJZQ6EMd', '7713586'), - (26, 2929, 'attending', '2024-12-09 21:10:54', '2025-12-17 19:46:21', 'dJZQ6EMd', '7723465'), - (26, 2930, 'attending', '2024-12-11 20:13:43', '2025-12-17 19:46:21', 'dJZQ6EMd', '7724554'), - (26, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dJZQ6EMd', '7738518'), - (26, 2959, 'maybe', '2024-12-24 00:23:32', '2025-12-17 19:46:22', 'dJZQ6EMd', '7747388'), - (26, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dJZQ6EMd', '7750636'), - (26, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dJZQ6EMd', '7796540'), - (26, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dJZQ6EMd', '7796541'), - (26, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dJZQ6EMd', '7796542'), - (26, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dJZQ6EMd', '7825913'), - (26, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dJZQ6EMd', '7825920'), - (26, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dJZQ6EMd', '7826209'), - (26, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dJZQ6EMd', '7834742'), - (26, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dJZQ6EMd', '7842108'), - (26, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dJZQ6EMd', '7842902'), - (26, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dJZQ6EMd', '7842903'), - (26, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dJZQ6EMd', '7842904'), - (26, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dJZQ6EMd', '7842905'), - (26, 2999, 'not_attending', '2025-02-13 02:49:33', '2025-12-17 19:46:23', 'dJZQ6EMd', '7844784'), - (26, 3001, 'attending', '2025-02-21 17:08:06', '2025-12-17 19:46:24', 'dJZQ6EMd', '7854184'), - (26, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dJZQ6EMd', '7855719'), - (26, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dJZQ6EMd', '7860683'), - (26, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dJZQ6EMd', '7860684'), - (26, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dJZQ6EMd', '7866095'), - (26, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dJZQ6EMd', '7869170'), - (26, 3014, 'attending', '2025-03-15 21:54:25', '2025-12-17 19:46:19', 'dJZQ6EMd', '7869185'), - (26, 3015, 'attending', '2025-04-22 02:30:22', '2025-12-17 19:46:20', 'dJZQ6EMd', '7869186'), - (26, 3017, 'attending', '2025-03-15 21:54:24', '2025-12-17 19:46:19', 'dJZQ6EMd', '7869188'), - (26, 3018, 'attending', '2025-04-05 03:20:43', '2025-12-17 19:46:20', 'dJZQ6EMd', '7869189'), - (26, 3028, 'maybe', '2025-04-07 18:22:34', '2025-12-17 19:46:20', 'dJZQ6EMd', '7869199'), - (26, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dJZQ6EMd', '7869201'), - (26, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dJZQ6EMd', '7877465'), - (26, 3034, 'attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dJZQ6EMd', '7878570'), - (26, 3045, 'maybe', '2025-04-05 03:20:51', '2025-12-17 19:46:19', 'dJZQ6EMd', '7882691'), - (26, 3046, 'maybe', '2025-04-12 01:49:02', '2025-12-17 19:46:20', 'dJZQ6EMd', '7882692'), - (26, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dJZQ6EMd', '7888250'), - (26, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dJZQ6EMd', '7904777'), - (26, 3094, 'attending', '2025-05-09 17:28:37', '2025-12-17 19:46:21', 'dJZQ6EMd', '8342292'), - (26, 3096, 'not_attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dJZQ6EMd', '8342987'), - (26, 3097, 'not_attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dJZQ6EMd', '8342993'), - (26, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dJZQ6EMd', '8349164'), - (26, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dJZQ6EMd', '8349545'), - (26, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dJZQ6EMd', '8353584'), - (26, 3124, 'maybe', '2025-05-12 23:23:58', '2025-12-17 19:46:21', 'dJZQ6EMd', '8363566'), - (26, 3131, 'attending', '2025-05-13 21:12:52', '2025-12-17 19:46:21', 'dJZQ6EMd', '8368028'), - (26, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dJZQ6EMd', '8368029'), - (26, 3133, 'maybe', '2025-05-21 04:06:34', '2025-12-17 19:46:14', 'dJZQ6EMd', '8368030'), - (26, 3136, 'maybe', '2025-05-21 19:00:36', '2025-12-17 19:46:21', 'dJZQ6EMd', '8374152'), - (26, 3137, 'attending', '2025-05-21 19:00:26', '2025-12-17 19:46:21', 'dJZQ6EMd', '8374153'), - (26, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dJZQ6EMd', '8388462'), - (26, 3150, 'attending', '2025-06-07 00:30:33', '2025-12-17 19:46:15', 'dJZQ6EMd', '8393174'), - (26, 3152, 'attending', '2025-06-03 13:41:15', '2025-12-17 19:46:14', 'dJZQ6EMd', '8393582'), - (26, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dJZQ6EMd', '8400273'), - (26, 3154, 'attending', '2025-06-07 00:30:19', '2025-12-17 19:46:15', 'dJZQ6EMd', '8400274'), - (26, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dJZQ6EMd', '8400275'), - (26, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dJZQ6EMd', '8400276'), - (26, 3157, 'attending', '2025-06-04 04:29:10', '2025-12-17 19:46:15', 'dJZQ6EMd', '8401407'), - (26, 3159, 'attending', '2025-06-04 04:33:31', '2025-12-17 19:46:15', 'dJZQ6EMd', '8401410'), - (26, 3160, 'attending', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'dJZQ6EMd', '8401411'), - (26, 3165, 'attending', '2025-06-07 20:08:43', '2025-12-17 19:46:14', 'dJZQ6EMd', '8404220'), - (26, 3166, 'not_attending', '2025-06-07 22:16:56', '2025-12-17 19:46:15', 'dJZQ6EMd', '8404242'), - (26, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dJZQ6EMd', '8404977'), - (26, 3176, 'attending', '2025-06-20 01:02:05', '2025-12-17 19:46:15', 'dJZQ6EMd', '8416741'), - (26, 3179, 'not_attending', '2025-06-24 03:27:21', '2025-12-17 19:46:15', 'dJZQ6EMd', '8421850'), - (26, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dJZQ6EMd', '8430783'), - (26, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dJZQ6EMd', '8430784'), - (26, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dJZQ6EMd', '8430799'), - (26, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dJZQ6EMd', '8430800'), - (26, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dJZQ6EMd', '8430801'), - (26, 3188, 'not_attending', '2025-07-11 15:17:46', '2025-12-17 19:46:17', 'dJZQ6EMd', '8438709'), - (26, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dJZQ6EMd', '8457738'), - (26, 3196, 'maybe', '2025-08-13 17:30:21', '2025-12-17 19:46:17', 'dJZQ6EMd', '8458543'), - (26, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dJZQ6EMd', '8459566'), - (26, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dJZQ6EMd', '8459567'), - (26, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dJZQ6EMd', '8461032'), - (26, 3205, 'maybe', '2025-07-24 12:06:28', '2025-12-17 19:46:17', 'dJZQ6EMd', '8461764'), - (26, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dJZQ6EMd', '8477877'), - (26, 3219, 'maybe', '2025-08-19 15:14:12', '2025-12-17 19:46:18', 'dJZQ6EMd', '8482548'), - (26, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dJZQ6EMd', '8485688'), - (26, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dJZQ6EMd', '8490587'), - (26, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dJZQ6EMd', '8493552'), - (26, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dJZQ6EMd', '8493553'), - (26, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dJZQ6EMd', '8493554'), - (26, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dJZQ6EMd', '8493555'), - (26, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dJZQ6EMd', '8493556'), - (26, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dJZQ6EMd', '8493557'), - (26, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dJZQ6EMd', '8493558'), - (26, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dJZQ6EMd', '8493559'), - (26, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dJZQ6EMd', '8493560'), - (26, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dJZQ6EMd', '8493561'), - (26, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dJZQ6EMd', '8493572'), - (26, 3272, 'maybe', '2025-09-18 04:50:15', '2025-12-17 19:46:12', 'dJZQ6EMd', '8524068'), - (26, 3284, 'maybe', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dJZQ6EMd', '8540725'), - (26, 3295, 'not_attending', '2025-10-29 15:01:06', '2025-12-17 19:46:14', 'dJZQ6EMd', '8547541'), - (26, 3300, 'attending', '2025-11-07 16:45:07', '2025-12-17 19:46:14', 'dJZQ6EMd', '8549145'), - (26, 3302, 'not_attending', '2025-11-10 19:53:36', '2025-12-17 19:46:14', 'dJZQ6EMd', '8550022'), - (26, 3304, 'not_attending', '2025-11-18 03:44:12', '2025-12-17 19:46:14', 'dJZQ6EMd', '8550024'), - (26, 3305, 'attending', '2025-12-02 17:01:52', '2025-12-17 19:46:11', 'dJZQ6EMd', '8550025'), - (26, 3306, 'attending', '2025-12-09 06:43:36', '2025-12-17 19:46:11', 'dJZQ6EMd', '8550026'), - (26, 3309, 'maybe', '2025-11-18 01:46:52', '2025-12-17 19:46:14', 'dJZQ6EMd', '8550409'), - (26, 3319, 'attending', '2025-11-11 18:26:27', '2025-12-17 19:46:14', 'dJZQ6EMd', '8553114'), - (26, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dJZQ6EMd', '8555421'), - (26, 3325, 'attending', '2025-11-20 00:18:52', '2025-12-17 19:46:14', 'dJZQ6EMd', '8556660'), - (26, 3327, 'maybe', '2025-12-04 00:45:27', '2025-12-17 19:46:11', 'dJZQ6EMd', '8557174'), - (26, 3339, 'attending', '2025-12-07 05:26:10', '2025-12-17 19:46:11', 'dJZQ6EMd', '8563326'), - (26, 3341, 'maybe', '2025-12-13 21:34:16', '2025-12-17 19:46:11', 'dJZQ6EMd', '8564397'), - (27, 648, 'not_attending', '2021-05-26 01:24:51', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3539923'), - (27, 742, 'attending', '2021-06-12 18:18:29', '2025-12-17 19:47:48', 'VdxEJ2Xm', '3680622'), - (27, 743, 'attending', '2021-06-13 02:47:51', '2025-12-17 19:47:38', 'VdxEJ2Xm', '3680623'), - (27, 745, 'maybe', '2021-06-28 17:25:57', '2025-12-17 19:47:38', 'VdxEJ2Xm', '3680625'), - (27, 746, 'not_attending', '2021-07-09 23:36:36', '2025-12-17 19:47:39', 'VdxEJ2Xm', '3680626'), - (27, 823, 'not_attending', '2021-06-22 13:43:00', '2025-12-17 19:47:48', 'VdxEJ2Xm', '3974109'), - (27, 827, 'not_attending', '2021-06-04 20:27:25', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3975311'), - (27, 828, 'attending', '2021-06-12 18:17:23', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3975312'), - (27, 832, 'not_attending', '2021-06-04 20:29:13', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3976650'), - (27, 838, 'not_attending', '2021-06-12 18:15:24', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3994992'), - (27, 844, 'not_attending', '2021-06-12 18:15:20', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4014338'), - (27, 867, 'attending', '2021-06-13 02:47:53', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4021848'), - (27, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4136744'), - (27, 870, 'attending', '2021-07-03 15:28:15', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4136937'), - (27, 871, 'attending', '2021-07-03 18:57:58', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4136938'), - (27, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4136947'), - (27, 884, 'not_attending', '2021-07-30 14:51:13', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4210314'), - (27, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4225444'), - (27, 889, 'attending', '2021-06-27 05:40:52', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4227492'), - (27, 896, 'not_attending', '2021-06-29 20:08:37', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4231145'), - (27, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4239259'), - (27, 900, 'attending', '2021-07-07 15:04:47', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4240316'), - (27, 901, 'attending', '2021-07-10 20:04:41', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4240317'), - (27, 902, 'attending', '2021-08-03 22:26:15', '2025-12-17 19:47:41', 'VdxEJ2Xm', '4240318'), - (27, 903, 'attending', '2021-07-30 14:51:02', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4240320'), - (27, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4250163'), - (27, 909, 'attending', '2021-07-07 15:01:49', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4258187'), - (27, 910, 'attending', '2021-07-07 15:03:03', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4258189'), - (27, 919, 'not_attending', '2021-07-14 19:08:54', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4275957'), - (27, 920, 'not_attending', '2021-07-28 00:35:24', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4277819'), - (27, 922, 'attending', '2021-07-14 19:09:03', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4280811'), - (27, 933, 'not_attending', '2021-07-28 00:35:17', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4301723'), - (27, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4302093'), - (27, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VdxEJ2Xm', '4304151'), - (27, 969, 'attending', '2021-08-13 22:43:04', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4356699'), - (27, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4356801'), - (27, 973, 'not_attending', '2021-08-17 02:48:30', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4366186'), - (27, 974, 'not_attending', '2021-08-17 02:48:23', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4366187'), - (27, 990, 'not_attending', '2021-09-01 17:04:14', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4420735'), - (27, 991, 'not_attending', '2021-09-01 17:04:26', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4420738'), - (27, 992, 'not_attending', '2021-09-18 22:50:36', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4420739'), - (27, 993, 'not_attending', '2021-09-25 21:34:22', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4420741'), - (27, 995, 'attending', '2021-09-01 17:04:53', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4420744'), - (27, 996, 'not_attending', '2021-10-30 16:39:56', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4420747'), - (27, 997, 'attending', '2021-09-01 17:05:00', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4420748'), - (27, 998, 'not_attending', '2021-10-30 16:41:10', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4420749'), - (27, 1012, 'not_attending', '2021-10-05 19:41:46', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4438816'), - (27, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4461883'), - (27, 1051, 'not_attending', '2022-02-04 03:53:01', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4496616'), - (27, 1053, 'attending', '2022-02-15 21:02:37', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4496618'), - (27, 1054, 'attending', '2022-03-17 13:24:27', '2025-12-17 19:47:25', 'VdxEJ2Xm', '4496619'), - (27, 1056, 'not_attending', '2021-11-27 20:50:57', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4496622'), - (27, 1058, 'maybe', '2022-02-14 15:27:43', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4496625'), - (27, 1059, 'attending', '2022-03-12 15:53:25', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4496626'), - (27, 1060, 'not_attending', '2022-03-23 05:57:44', '2025-12-17 19:47:25', 'VdxEJ2Xm', '4496627'), - (27, 1062, 'attending', '2022-03-04 05:45:34', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4496629'), - (27, 1067, 'not_attending', '2021-09-24 23:37:21', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4508342'), - (27, 1073, 'not_attending', '2021-10-01 21:33:38', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4518993'), - (27, 1086, 'not_attending', '2021-10-13 22:01:13', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4568602'), - (27, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4585962'), - (27, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4596356'), - (27, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4598860'), - (27, 1098, 'not_attending', '2021-11-11 00:42:29', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4598861'), - (27, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4602797'), - (27, 1113, 'not_attending', '2021-11-27 20:49:50', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4635421'), - (27, 1114, 'not_attending', '2021-11-12 08:47:23', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4637896'), - (27, 1116, 'not_attending', '2021-11-27 20:50:02', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4642994'), - (27, 1117, 'not_attending', '2021-11-16 03:39:20', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4642995'), - (27, 1118, 'not_attending', '2021-11-27 20:50:29', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4642996'), - (27, 1119, 'not_attending', '2021-11-27 20:50:42', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4642997'), - (27, 1126, 'attending', '2021-12-12 00:18:09', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4645687'), - (27, 1127, 'not_attending', '2021-11-27 20:50:18', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4645698'), - (27, 1128, 'attending', '2021-11-16 03:38:13', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4645704'), - (27, 1129, 'attending', '2021-11-16 03:39:34', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4645705'), - (27, 1130, 'attending', '2021-11-27 20:50:07', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4658824'), - (27, 1131, 'attending', '2021-11-27 20:50:35', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4658825'), - (27, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4668385'), - (27, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4694407'), - (27, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4706262'), - (27, 1173, 'not_attending', '2022-01-08 05:37:39', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4736495'), - (27, 1174, 'attending', '2022-01-13 18:39:16', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4736496'), - (27, 1175, 'attending', '2022-01-15 23:04:15', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736497'), - (27, 1176, 'not_attending', '2022-02-04 03:53:03', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736498'), - (27, 1177, 'attending', '2022-02-10 15:57:13', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736499'), - (27, 1178, 'attending', '2022-01-26 00:20:50', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736500'), - (27, 1179, 'attending', '2022-02-15 21:02:38', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736501'), - (27, 1180, 'maybe', '2022-02-14 15:27:24', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4736502'), - (27, 1181, 'attending', '2022-03-04 05:45:31', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4736503'), - (27, 1182, 'attending', '2022-03-12 15:53:27', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4736504'), - (27, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4746789'), - (27, 1188, 'not_attending', '2022-01-15 23:04:05', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4753929'), - (27, 1196, 'attending', '2022-01-19 20:18:22', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4765583'), - (27, 1206, 'attending', '2022-04-10 20:36:59', '2025-12-17 19:47:27', 'VdxEJ2Xm', '4773578'), - (27, 1225, 'not_attending', '2022-02-03 22:13:01', '2025-12-17 19:47:32', 'VdxEJ2Xm', '5019063'), - (27, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VdxEJ2Xm', '5038850'), - (27, 1236, 'not_attending', '2022-02-18 01:32:42', '2025-12-17 19:47:32', 'VdxEJ2Xm', '5045826'), - (27, 1254, 'attending', '2022-03-04 05:45:40', '2025-12-17 19:47:33', 'VdxEJ2Xm', '5129129'), - (27, 1259, 'attending', '2022-03-11 23:47:59', '2025-12-17 19:47:33', 'VdxEJ2Xm', '5132533'), - (27, 1272, 'attending', '2022-03-17 15:40:16', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5186582'), - (27, 1273, 'not_attending', '2022-03-23 05:57:36', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5186583'), - (27, 1274, 'attending', '2022-03-17 13:23:38', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5186585'), - (27, 1275, 'attending', '2022-03-17 13:25:15', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5186587'), - (27, 1277, 'not_attending', '2022-03-17 13:24:21', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5186865'), - (27, 1281, 'not_attending', '2022-04-08 20:57:30', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5190437'), - (27, 1284, 'attending', '2022-04-16 06:17:22', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5195095'), - (27, 1293, 'attending', '2022-04-10 20:36:53', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5214641'), - (27, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5215989'), - (27, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5223686'), - (27, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5227432'), - (27, 1311, 'attending', '2022-04-10 20:36:55', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5231430'), - (27, 1313, 'maybe', '2022-04-08 20:57:31', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5231461'), - (27, 1344, 'attending', '2022-04-25 20:24:23', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5247465'), - (27, 1345, 'attending', '2022-04-20 16:29:19', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5247466'), - (27, 1346, 'attending', '2022-04-20 16:29:17', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5247467'), - (27, 1348, 'not_attending', '2022-05-01 22:45:25', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5247605'), - (27, 1349, 'not_attending', '2022-04-20 16:29:08', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5249631'), - (27, 1354, 'attending', '2022-04-21 17:41:38', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5252569'), - (27, 1362, 'attending', '2022-04-25 20:23:16', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5260800'), - (27, 1374, 'attending', '2022-05-07 19:36:01', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5269930'), - (27, 1378, 'not_attending', '2022-05-05 14:40:47', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5271448'), - (27, 1379, 'attending', '2022-05-05 14:40:56', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5271449'), - (27, 1380, 'attending', '2022-05-28 18:14:47', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5271450'), - (27, 1383, 'attending', '2022-05-10 13:15:08', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5276469'), - (27, 1384, 'maybe', '2022-05-05 14:39:43', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5277078'), - (27, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5278159'), - (27, 1393, 'not_attending', '2022-05-27 15:17:43', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5280603'), - (27, 1394, 'not_attending', '2022-05-27 22:51:27', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5280667'), - (27, 1395, 'attending', '2022-05-07 19:36:00', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5281102'), - (27, 1396, 'not_attending', '2022-05-10 13:14:36', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5281103'), - (27, 1397, 'attending', '2022-05-18 23:55:50', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5281104'), - (27, 1407, 'attending', '2022-05-28 18:15:14', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5363695'), - (27, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5365960'), - (27, 1415, 'attending', '2022-06-01 17:05:50', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5368973'), - (27, 1422, 'not_attending', '2022-05-28 18:15:00', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5375603'), - (27, 1423, 'not_attending', '2022-06-15 22:07:33', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5375727'), - (27, 1425, 'not_attending', '2022-05-24 18:45:47', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5375861'), - (27, 1426, 'attending', '2022-05-24 04:26:54', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5375873'), - (27, 1428, 'not_attending', '2022-06-08 19:31:43', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5378247'), - (27, 1431, 'not_attending', '2022-05-30 03:01:55', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5389605'), - (27, 1442, 'attending', '2022-06-03 20:46:16', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5397265'), - (27, 1444, 'not_attending', '2022-06-08 19:31:52', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5397614'), - (27, 1445, 'attending', '2022-06-14 00:54:44', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5397615'), - (27, 1451, 'not_attending', '2022-06-17 16:08:09', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5403967'), - (27, 1452, 'not_attending', '2022-06-13 01:45:03', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5404197'), - (27, 1458, 'maybe', '2022-06-10 15:10:33', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5404786'), - (27, 1461, 'attending', '2022-06-10 15:10:15', '2025-12-17 19:47:31', 'VdxEJ2Xm', '5405149'), - (27, 1462, 'not_attending', '2022-06-17 16:08:11', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5405203'), - (27, 1478, 'maybe', '2022-06-20 07:11:20', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5408794'), - (27, 1480, 'not_attending', '2022-06-26 22:45:48', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5411699'), - (27, 1482, 'attending', '2022-06-20 07:10:58', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5412550'), - (27, 1484, 'maybe', '2022-06-23 04:36:35', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5415046'), - (27, 1485, 'attending', '2022-06-22 12:52:54', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5416276'), - (27, 1495, 'maybe', '2022-06-26 22:46:32', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5422086'), - (27, 1498, 'not_attending', '2022-07-03 01:08:38', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5422406'), - (27, 1499, 'not_attending', '2022-07-03 01:08:36', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5422407'), - (27, 1502, 'not_attending', '2022-07-08 22:21:04', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5424565'), - (27, 1504, 'not_attending', '2022-07-14 17:16:42', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5426882'), - (27, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5427083'), - (27, 1511, 'attending', '2022-07-06 23:59:15', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5437733'), - (27, 1513, 'attending', '2022-07-09 17:06:20', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5441125'), - (27, 1514, 'attending', '2022-07-14 17:17:37', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5441126'), - (27, 1515, 'attending', '2022-07-14 17:17:56', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5441128'), - (27, 1516, 'attending', '2022-07-14 17:17:59', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5441129'), - (27, 1517, 'not_attending', '2022-07-14 17:18:02', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5441130'), - (27, 1518, 'attending', '2022-07-14 17:18:06', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5441131'), - (27, 1519, 'attending', '2022-07-14 17:18:10', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5441132'), - (27, 1527, 'not_attending', '2022-07-14 17:17:30', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5446425'), - (27, 1528, 'not_attending', '2022-07-14 17:16:47', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5446643'), - (27, 1530, 'not_attending', '2022-07-15 16:00:14', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5448612'), - (27, 1532, 'attending', '2022-07-21 21:38:46', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5448757'), - (27, 1533, 'maybe', '2022-07-19 16:06:02', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5448758'), - (27, 1534, 'maybe', '2022-08-02 15:12:35', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5448759'), - (27, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5453325'), - (27, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5454516'), - (27, 1544, 'not_attending', '2022-08-08 21:10:07', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5454517'), - (27, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5454605'), - (27, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5455037'), - (27, 1556, 'attending', '2022-07-22 00:36:17', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5457734'), - (27, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5461278'), - (27, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5469480'), - (27, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5471073'), - (27, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5474663'), - (27, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5482022'), - (27, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5482793'), - (27, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5488912'), - (27, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5492192'), - (27, 1588, 'maybe', '2022-08-08 21:09:30', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5493139'), - (27, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5493200'), - (27, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5502188'), - (27, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5505059'), - (27, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5509055'), - (27, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5512862'), - (27, 1622, 'attending', '2022-08-23 02:35:51', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5513677'), - (27, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5513985'), - (27, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5519981'), - (27, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5522550'), - (27, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5534683'), - (27, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5537735'), - (27, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5540859'), - (27, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5546619'), - (27, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5555245'), - (27, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5557747'), - (27, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5560255'), - (27, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5562906'), - (27, 1667, 'not_attending', '2022-09-24 20:33:39', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5563221'), - (27, 1668, 'not_attending', '2022-09-24 20:33:51', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5563222'), - (27, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5600604'), - (27, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5605544'), - (27, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5606737'), - (27, 1719, 'not_attending', '2022-10-07 17:05:34', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5630958'), - (27, 1720, 'attending', '2022-10-12 19:56:33', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5630959'), - (27, 1721, 'attending', '2022-10-16 04:21:06', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5630960'), - (27, 1722, 'attending', '2022-10-24 16:37:37', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5630961'), - (27, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5630962'), - (27, 1724, 'attending', '2022-11-03 16:41:04', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5630966'), - (27, 1725, 'attending', '2022-11-03 16:41:13', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5630967'), - (27, 1726, 'attending', '2022-11-03 16:41:19', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5630968'), - (27, 1727, 'attending', '2022-11-03 16:41:39', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5630969'), - (27, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5635406'), - (27, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5638765'), - (27, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5640097'), - (27, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5640843'), - (27, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5641521'), - (27, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5642818'), - (27, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5652395'), - (27, 1753, 'maybe', '2022-10-19 14:55:09', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5656228'), - (27, 1762, 'maybe', '2022-11-28 15:08:15', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5670445'), - (27, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5671637'), - (27, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5672329'), - (27, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5674057'), - (27, 1767, 'maybe', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5674060'), - (27, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5677461'), - (27, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5698046'), - (27, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5699760'), - (27, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5741601'), - (27, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5763458'), - (27, 1807, 'attending', '2023-01-11 16:17:37', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5764677'), - (27, 1808, 'maybe', '2023-03-02 00:07:40', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5764678'), - (27, 1809, 'attending', '2023-04-12 00:51:09', '2025-12-17 19:46:59', 'VdxEJ2Xm', '5764679'), - (27, 1813, 'maybe', '2023-04-27 14:01:00', '2025-12-17 19:47:01', 'VdxEJ2Xm', '5764683'), - (27, 1814, 'attending', '2023-02-23 20:49:37', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5764684'), - (27, 1815, 'attending', '2023-02-19 00:04:37', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5764685'), - (27, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'VdxEJ2Xm', '5774172'), - (27, 1825, 'maybe', '2022-11-27 04:27:05', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5776760'), - (27, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5818247'), - (27, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5819471'), - (27, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'VdxEJ2Xm', '5827739'), - (27, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5844306'), - (27, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5850159'), - (27, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5858999'), - (27, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5871984'), - (27, 1860, 'maybe', '2023-01-13 05:47:25', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5876309'), - (27, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5876354'), - (27, 1864, 'attending', '2023-01-22 00:34:14', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5879675'), - (27, 1865, 'attending', '2023-01-24 00:37:22', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5879676'), - (27, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5880939'), - (27, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5880940'), - (27, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5880942'), - (27, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5880943'), - (27, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5887890'), - (27, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5888598'), - (27, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5893260'), - (27, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5899826'), - (27, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5900199'), - (27, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5900200'), - (27, 1891, 'maybe', '2023-03-22 01:34:46', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5900202'), - (27, 1892, 'attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5900203'), - (27, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5901108'), - (27, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5901126'), - (27, 1897, 'not_attending', '2023-01-31 22:40:51', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5901128'), - (27, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5909655'), - (27, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5910522'), - (27, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5910526'), - (27, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5910528'), - (27, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5916219'), - (27, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5936234'), - (27, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5958351'), - (27, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5959751'), - (27, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5959755'), - (27, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5960055'), - (27, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5961684'), - (27, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5962132'), - (27, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5962133'), - (27, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5962134'), - (27, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'VdxEJ2Xm', '5962317'), - (27, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'VdxEJ2Xm', '5962318'), - (27, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5965933'), - (27, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5967014'), - (27, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5972763'), - (27, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5972815'), - (27, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5974016'), - (27, 1962, 'attending', '2023-03-08 01:59:20', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5975052'), - (27, 1963, 'attending', '2023-03-08 02:08:47', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5975054'), - (27, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5981515'), - (27, 1966, 'maybe', '2023-03-12 18:07:07', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5983042'), - (27, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5993516'), - (27, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5998939'), - (27, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6028191'), - (27, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'VdxEJ2Xm', '6040066'), - (27, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'VdxEJ2Xm', '6042717'), - (27, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6044838'), - (27, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6044839'), - (27, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'VdxEJ2Xm', '6045684'), - (27, 1991, 'attending', '2023-03-30 15:01:29', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6047354'), - (27, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6050104'), - (27, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6053195'), - (27, 2006, 'maybe', '2023-04-05 16:28:21', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6053198'), - (27, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6056085'), - (27, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6056916'), - (27, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6059290'), - (27, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6060328'), - (27, 2014, 'attending', '2023-04-12 00:46:40', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6060337'), - (27, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6061037'), - (27, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6061039'), - (27, 2018, 'attending', '2023-04-12 00:50:53', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6061171'), - (27, 2020, 'attending', '2023-04-14 17:13:58', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6065813'), - (27, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6067245'), - (27, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6068094'), - (27, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6068252'), - (27, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6068253'), - (27, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6068254'), - (27, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6068280'), - (27, 2032, 'attending', '2023-04-24 23:03:06', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6068281'), - (27, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6069093'), - (27, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6072528'), - (27, 2043, 'maybe', '2023-04-26 17:37:47', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6073023'), - (27, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6075556'), - (27, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6079840'), - (27, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6083398'), - (27, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6093504'), - (27, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6097414'), - (27, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6097442'), - (27, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6097684'), - (27, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6098762'), - (27, 2064, 'not_attending', '2023-06-20 02:16:34', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6099988'), - (27, 2065, 'attending', '2023-06-17 23:24:46', '2025-12-17 19:46:49', 'VdxEJ2Xm', '6101169'), - (27, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6101361'), - (27, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6101362'), - (27, 2071, 'attending', '2023-05-15 03:17:23', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6104949'), - (27, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6107314'), - (27, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6119877'), - (27, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6120034'), - (27, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6135924'), - (27, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6136733'), - (27, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6137989'), - (27, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6150864'), - (27, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6155491'), - (27, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6164417'), - (27, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6166388'), - (27, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6176439'), - (27, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6182410'), - (27, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6185812'), - (27, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6187651'), - (27, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6187963'), - (27, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6187964'), - (27, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6187966'), - (27, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6187967'), - (27, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6187969'), - (27, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6334878'), - (27, 2147, 'not_attending', '2023-07-16 20:16:01', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6335666'), - (27, 2150, 'attending', '2023-07-09 21:55:06', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6335687'), - (27, 2151, 'maybe', '2023-07-10 23:49:10', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6335700'), - (27, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6337236'), - (27, 2154, 'attending', '2023-07-12 21:44:18', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6337689'), - (27, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6337970'), - (27, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6338308'), - (27, 2157, 'attending', '2023-07-12 21:52:35', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6338342'), - (27, 2158, 'attending', '2023-07-12 23:26:16', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6338353'), - (27, 2159, 'attending', '2023-07-16 17:49:24', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6338355'), - (27, 2160, 'not_attending', '2023-07-18 02:14:53', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6338358'), - (27, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6341710'), - (27, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6342044'), - (27, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6342298'), - (27, 2168, 'attending', '2023-07-17 19:28:03', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6342302'), - (27, 2169, 'attending', '2023-07-17 19:37:44', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6342306'), - (27, 2170, 'attending', '2023-07-17 19:40:19', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6342307'), - (27, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6343294'), - (27, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6347034'), - (27, 2177, 'not_attending', '2023-08-07 21:02:36', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6347053'), - (27, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6347056'), - (27, 2181, 'attending', '2023-07-25 19:43:59', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6349354'), - (27, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6353830'), - (27, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6353831'), - (27, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6357867'), - (27, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6358652'), - (27, 2193, 'attending', '2023-08-03 22:01:03', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6358668'), - (27, 2194, 'attending', '2023-08-03 22:03:22', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6358669'), - (27, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6361709'), - (27, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6361710'), - (27, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6361711'), - (27, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6361712'), - (27, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6361713'), - (27, 2216, 'attending', '2023-08-19 16:47:28', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6364123'), - (27, 2232, 'attending', '2023-08-23 12:34:29', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6374818'), - (27, 2235, 'attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6382573'), - (27, 2239, 'attending', '2023-08-31 18:08:44', '2025-12-17 19:46:56', 'VdxEJ2Xm', '6387592'), - (27, 2240, 'attending', '2023-09-08 19:57:08', '2025-12-17 19:46:56', 'VdxEJ2Xm', '6388603'), - (27, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'VdxEJ2Xm', '6388604'), - (27, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'VdxEJ2Xm', '6394629'), - (27, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6394631'), - (27, 2253, 'attending', '2023-09-30 22:48:28', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6401811'), - (27, 2255, 'attending', '2023-09-17 18:24:03', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6403562'), - (27, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6440863'), - (27, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6445440'), - (27, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6453951'), - (27, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6461696'), - (27, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6462129'), - (27, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6463218'), - (27, 2299, 'attending', '2023-10-21 00:33:07', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6472181'), - (27, 2303, 'attending', '2023-10-23 17:39:19', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6482691'), - (27, 2304, 'attending', '2023-10-23 17:39:34', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6482693'), - (27, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6484200'), - (27, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6484680'), - (27, 2310, 'not_attending', '2023-11-01 22:34:48', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6487709'), - (27, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6507741'), - (27, 2322, 'attending', '2023-11-01 22:34:51', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6514659'), - (27, 2323, 'attending', '2023-11-01 22:40:00', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6514660'), - (27, 2324, 'attending', '2023-11-01 22:40:02', '2025-12-17 19:46:49', 'VdxEJ2Xm', '6514662'), - (27, 2325, 'not_attending', '2023-11-01 22:40:05', '2025-12-17 19:46:36', 'VdxEJ2Xm', '6514663'), - (27, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6519103'), - (27, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6535681'), - (27, 2338, 'attending', '2023-11-21 18:35:46', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6538868'), - (27, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6584747'), - (27, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6587097'), - (27, 2358, 'attending', '2023-11-29 18:57:29', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6595321'), - (27, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'VdxEJ2Xm', '6609022'), - (27, 2373, 'attending', '2024-01-04 19:51:59', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6632678'), - (27, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'VdxEJ2Xm', '6632757'), - (27, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6644187'), - (27, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6648951'), - (27, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6648952'), - (27, 2388, 'attending', '2024-01-04 19:51:31', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6649244'), - (27, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6655401'), - (27, 2399, 'not_attending', '2024-01-09 14:31:38', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6657583'), - (27, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6661585'), - (27, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6661588'), - (27, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6661589'), - (27, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6699906'), - (27, 2408, 'attending', '2024-01-27 05:28:16', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6699907'), - (27, 2409, 'attending', '2024-01-31 21:51:25', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6699909'), - (27, 2410, 'maybe', '2024-02-07 22:47:49', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6699911'), - (27, 2411, 'attending', '2024-02-13 13:51:12', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6699913'), - (27, 2412, 'maybe', '2024-02-20 01:11:22', '2025-12-17 19:46:43', 'VdxEJ2Xm', '6700717'), - (27, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6701109'), - (27, 2420, 'attending', '2024-01-18 15:50:48', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6704561'), - (27, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6705219'), - (27, 2427, 'attending', '2024-01-20 18:57:15', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6708410'), - (27, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6710153'), - (27, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6711552'), - (27, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6711553'), - (27, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6722688'), - (27, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6730620'), - (27, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6730642'), - (27, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'VdxEJ2Xm', '6740364'), - (27, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6743829'), - (27, 2467, 'attending', '2024-02-25 21:52:13', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7029987'), - (27, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7030380'), - (27, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'VdxEJ2Xm', '7033677'), - (27, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7035415'), - (27, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7044715'), - (27, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7050318'), - (27, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'VdxEJ2Xm', '7050319'), - (27, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7050322'), - (27, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7057804'), - (27, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7072824'), - (27, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7074348'), - (27, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7074364'), - (27, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7089267'), - (27, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7098747'), - (27, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7113468'), - (27, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7114856'), - (27, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7114951'), - (27, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7114955'), - (27, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7114956'), - (27, 2558, 'attending', '2024-04-15 15:38:12', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7114957'), - (27, 2567, 'attending', '2024-04-06 19:25:22', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7144962'), - (27, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7153615'), - (27, 2569, 'attending', '2024-04-07 19:39:18', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7154056'), - (27, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7159484'), - (27, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7178446'), - (27, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7220467'), - (27, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7240354'), - (27, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7251633'), - (27, 2626, 'attending', '2024-05-18 02:50:34', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7264723'), - (27, 2627, 'attending', '2024-05-20 14:22:28', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7264724'), - (27, 2628, 'attending', '2024-05-30 17:52:00', '2025-12-17 19:46:36', 'VdxEJ2Xm', '7264725'), - (27, 2629, 'attending', '2024-06-06 22:01:40', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7264726'), - (27, 2647, 'attending', '2024-05-21 01:30:14', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7282057'), - (27, 2650, 'maybe', '2024-05-24 16:28:58', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7288199'), - (27, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7302674'), - (27, 2662, 'attending', '2024-06-02 18:58:55', '2025-12-17 19:46:36', 'VdxEJ2Xm', '7302815'), - (27, 2672, 'attending', '2024-06-09 16:31:29', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7318459'), - (27, 2674, 'attending', '2024-06-17 20:10:04', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7319480'), - (27, 2675, 'attending', '2024-06-17 20:09:53', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7319481'), - (27, 2676, 'attending', '2024-06-17 20:09:46', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7319482'), - (27, 2677, 'attending', '2024-09-04 03:53:45', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7319483'), - (27, 2678, 'not_attending', '2024-06-14 00:39:46', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7319489'), - (27, 2679, 'not_attending', '2024-06-17 20:08:52', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7319490'), - (27, 2681, 'attending', '2024-06-10 03:24:09', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7320409'), - (27, 2686, 'attending', '2024-06-11 13:49:52', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7323802'), - (27, 2688, 'not_attending', '2024-06-17 20:08:56', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7324073'), - (27, 2689, 'attending', '2024-06-17 20:09:04', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7324074'), - (27, 2690, 'attending', '2024-06-17 20:09:08', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7324075'), - (27, 2691, 'attending', '2024-06-17 20:09:11', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7324076'), - (27, 2692, 'not_attending', '2024-06-17 20:09:14', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7324077'), - (27, 2693, 'attending', '2024-06-17 20:09:20', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7324078'), - (27, 2694, 'attending', '2024-06-17 20:09:22', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7324079'), - (27, 2695, 'attending', '2024-06-17 20:09:26', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7324080'), - (27, 2696, 'not_attending', '2024-06-17 20:09:28', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7324081'), - (27, 2697, 'attending', '2024-06-17 20:09:32', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7324082'), - (27, 2698, 'attending', '2024-06-17 20:09:39', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7324083'), - (27, 2701, 'maybe', '2024-06-17 20:10:41', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7324391'), - (27, 2709, 'attending', '2024-06-14 00:39:42', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7325107'), - (27, 2710, 'attending', '2024-06-14 00:39:26', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7325108'), - (27, 2711, 'maybe', '2024-06-17 20:10:08', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7326524'), - (27, 2712, 'maybe', '2024-06-17 20:10:00', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7326525'), - (27, 2722, 'maybe', '2024-07-08 16:50:07', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7331457'), - (27, 2723, 'not_attending', '2024-06-20 19:09:07', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7332389'), - (27, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7363643'), - (27, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7368606'), - (27, 2792, 'attending', '2024-08-07 00:33:27', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7390763'), - (27, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7397462'), - (27, 2808, 'attending', '2024-08-27 22:19:31', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7412860'), - (27, 2814, 'attending', '2024-09-04 03:53:26', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7424267'), - (27, 2815, 'not_attending', '2024-09-04 03:53:30', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7424268'), - (27, 2816, 'attending', '2024-09-04 03:53:34', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7424269'), - (27, 2817, 'attending', '2024-09-04 03:53:37', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7424270'), - (27, 2818, 'attending', '2024-09-04 03:53:56', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424272'), - (27, 2819, 'attending', '2024-09-04 03:54:00', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424273'), - (27, 2820, 'maybe', '2024-09-04 03:54:01', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424274'), - (27, 2821, 'attending', '2024-09-08 03:29:15', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424275'), - (27, 2822, 'attending', '2024-09-04 03:54:09', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424276'), - (27, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7432751'), - (27, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7432752'), - (27, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7432753'), - (27, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432754'), - (27, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432755'), - (27, 2829, 'maybe', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432756'), - (27, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432758'), - (27, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432759'), - (27, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7433834'), - (27, 2834, 'not_attending', '2024-09-11 01:52:43', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7433852'), - (27, 2836, 'attending', '2024-09-13 06:02:11', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7438708'), - (27, 2837, 'attending', '2024-09-12 18:57:15', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7438711'), - (27, 2839, 'maybe', '2024-09-13 06:01:52', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7439262'), - (27, 2846, 'attending', '2024-09-21 20:31:49', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7452148'), - (27, 2853, 'attending', '2024-10-17 17:23:43', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7465683'), - (27, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7470197'), - (27, 2867, 'not_attending', '2024-12-06 20:36:50', '2025-12-17 19:46:21', 'VdxEJ2Xm', '7471202'), - (27, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7685613'), - (27, 2903, 'not_attending', '2024-11-08 23:55:48', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7688194'), - (27, 2904, 'attending', '2024-11-08 23:55:52', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7688196'), - (27, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7688289'), - (27, 2908, 'attending', '2024-11-11 01:12:25', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7689420'), - (27, 2910, 'attending', '2024-11-11 01:12:33', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7689867'), - (27, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7692763'), - (27, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7697552'), - (27, 2914, 'maybe', '2024-11-16 23:09:37', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7697743'), - (27, 2917, 'attending', '2024-11-18 19:22:21', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7699878'), - (27, 2919, 'attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7704043'), - (27, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7712467'), - (27, 2925, 'not_attending', '2024-12-06 20:36:28', '2025-12-17 19:46:21', 'VdxEJ2Xm', '7713584'), - (27, 2926, 'attending', '2024-12-03 04:16:03', '2025-12-17 19:46:21', 'VdxEJ2Xm', '7713585'), - (27, 2927, 'attending', '2024-12-06 20:36:25', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7713586'), - (27, 2935, 'attending', '2025-02-01 19:06:38', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7725953'), - (27, 2938, 'attending', '2025-01-18 23:56:17', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7725956'), - (27, 2939, 'attending', '2025-02-11 04:00:00', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7725957'), - (27, 2940, 'attending', '2025-01-18 23:56:26', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7725958'), - (27, 2941, 'attending', '2025-02-07 19:25:35', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7725959'), - (27, 2942, 'attending', '2025-02-11 03:59:53', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7725960'), - (27, 2943, 'attending', '2025-02-11 03:59:46', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7725961'), - (27, 2944, 'attending', '2025-02-11 03:59:48', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7725963'), - (27, 2945, 'attending', '2025-02-11 04:03:57', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7725964'), - (27, 2946, 'attending', '2025-03-04 03:32:53', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7725965'), - (27, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7738518'), - (27, 2962, 'attending', '2024-12-23 22:21:54', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7750632'), - (27, 2963, 'attending', '2024-12-28 19:08:53', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7750636'), - (27, 2964, 'attending', '2025-01-07 04:32:54', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7796540'), - (27, 2965, 'attending', '2025-01-18 23:56:15', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7796541'), - (27, 2966, 'attending', '2025-01-18 23:56:25', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7796542'), - (27, 2979, 'attending', '2025-01-28 22:22:25', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7825913'), - (27, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7825920'), - (27, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7826209'), - (27, 2985, 'attending', '2025-02-03 21:29:04', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7834742'), - (27, 2988, 'attending', '2025-02-07 14:33:49', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7839569'), - (27, 2989, 'attending', '2025-02-10 19:51:22', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7842108'), - (27, 2991, 'attending', '2025-02-11 03:59:54', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842902'), - (27, 2992, 'maybe', '2025-02-11 03:59:49', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842903'), - (27, 2993, 'attending', '2025-02-11 04:03:50', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7842904'), - (27, 2994, 'attending', '2025-02-11 03:59:42', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7842905'), - (27, 2995, 'attending', '2025-02-11 04:03:17', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842906'), - (27, 2996, 'attending', '2025-02-11 04:03:25', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842907'), - (27, 2997, 'attending', '2025-02-11 04:03:26', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7842908'), - (27, 2998, 'attending', '2025-02-11 04:03:39', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7842909'), - (27, 3005, 'maybe', '2025-02-19 21:15:56', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7854604'), - (27, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7855719'), - (27, 3007, 'attending', '2025-02-24 17:45:45', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7860683'), - (27, 3008, 'attending', '2025-02-24 17:45:43', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7860684'), - (27, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7866095'), - (27, 3013, 'maybe', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7869170'), - (27, 3014, 'attending', '2025-03-06 15:55:06', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869185'), - (27, 3015, 'not_attending', '2025-03-06 15:55:13', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869186'), - (27, 3016, 'attending', '2025-03-06 15:55:10', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869187'), - (27, 3017, 'attending', '2025-03-06 15:54:58', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869188'), - (27, 3018, 'attending', '2025-03-06 15:55:08', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869189'), - (27, 3019, 'attending', '2025-03-06 15:55:23', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869190'), - (27, 3020, 'attending', '2025-03-06 15:55:19', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869191'), - (27, 3021, 'attending', '2025-03-06 15:55:21', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869192'), - (27, 3022, 'attending', '2025-03-06 15:55:15', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869193'), - (27, 3023, 'attending', '2025-03-04 03:44:26', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869194'), - (27, 3024, 'attending', '2025-03-04 03:55:39', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869195'), - (27, 3025, 'attending', '2025-03-06 15:55:27', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869196'), - (27, 3026, 'attending', '2025-03-06 15:55:29', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869197'), - (27, 3027, 'attending', '2025-03-06 15:55:25', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869198'), - (27, 3028, 'attending', '2025-03-06 15:55:31', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869199'), - (27, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7869201'), - (27, 3033, 'maybe', '2025-03-11 05:12:19', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7877465'), - (27, 3055, 'attending', '2025-03-27 16:23:26', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7888118'), - (27, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7888250'), - (27, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'VdxEJ2Xm', '7904777'), - (27, 3090, 'maybe', '2025-04-17 22:04:18', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7914315'), - (27, 3094, 'attending', '2025-04-21 21:08:49', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8342292'), - (27, 3095, 'attending', '2025-04-21 21:08:48', '2025-12-17 19:46:20', 'VdxEJ2Xm', '8342293'), - (27, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8349164'), - (27, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8349545'), - (27, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8353584'), - (27, 3131, 'attending', '2025-05-14 02:40:57', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8368028'), - (27, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8368029'), - (27, 3133, 'attending', '2025-05-30 17:06:13', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8368030'), - (27, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8388462'), - (27, 3150, 'not_attending', '2025-06-20 17:21:09', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8393174'), - (27, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8400273'), - (27, 3154, 'attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8400274'), - (27, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8400275'), - (27, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8400276'), - (27, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8404977'), - (27, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8430783'), - (27, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8430784'), - (27, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8430799'), - (27, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8430800'), - (27, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8430801'), - (27, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8438709'), - (27, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8457738'), - (27, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8459566'), - (27, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8459567'), - (27, 3202, 'attending', '2025-07-23 12:56:54', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8459568'), - (27, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8461032'), - (27, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8477877'), - (27, 3233, 'attending', '2025-08-12 12:51:10', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8485688'), - (27, 3235, 'maybe', '2025-08-19 19:30:34', '2025-12-17 19:46:18', 'VdxEJ2Xm', '8490587'), - (27, 3236, 'attending', '2025-08-19 19:29:45', '2025-12-17 19:46:18', 'VdxEJ2Xm', '8493552'), - (27, 3237, 'attending', '2025-08-19 19:30:15', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8493553'), - (27, 3238, 'not_attending', '2025-08-19 19:30:02', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8493554'), - (27, 3239, 'attending', '2025-08-19 19:31:36', '2025-12-17 19:46:12', 'VdxEJ2Xm', '8493555'), - (27, 3240, 'attending', '2025-08-19 19:33:45', '2025-12-17 19:46:12', 'VdxEJ2Xm', '8493556'), - (27, 3241, 'attending', '2025-08-19 19:37:37', '2025-12-17 19:46:13', 'VdxEJ2Xm', '8493557'), - (27, 3242, 'attending', '2025-08-19 19:37:16', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8493558'), - (27, 3243, 'attending', '2025-08-19 19:37:51', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8493559'), - (27, 3244, 'attending', '2025-08-19 19:34:54', '2025-12-17 19:46:13', 'VdxEJ2Xm', '8493560'), - (27, 3245, 'attending', '2025-08-19 19:35:09', '2025-12-17 19:46:12', 'VdxEJ2Xm', '8493561'), - (27, 3253, 'attending', '2025-08-19 19:44:15', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8493572'), - (27, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'VdxEJ2Xm', '8540725'), - (27, 3289, 'attending', '2025-10-21 01:25:53', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8542939'), - (27, 3295, 'not_attending', '2025-10-28 20:50:48', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8547541'), - (27, 3305, 'attending', '2025-12-01 22:39:09', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8550025'), - (27, 3306, 'attending', '2025-12-01 22:39:30', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8550026'), - (27, 3307, 'attending', '2025-12-01 22:39:40', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8550027'), - (27, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8555421'), - (28, 1182, 'attending', '2022-03-10 05:19:45', '2025-12-17 19:47:33', '2d28vkMA', '4736504'), - (28, 1207, 'attending', '2022-05-06 17:11:53', '2025-12-17 19:47:28', '2d28vkMA', '4773579'), - (28, 1240, 'attending', '2022-03-12 20:39:21', '2025-12-17 19:47:33', '2d28vkMA', '5052239'), - (28, 1241, 'maybe', '2022-03-22 11:56:35', '2025-12-17 19:47:25', '2d28vkMA', '5052240'), - (28, 1242, 'maybe', '2022-03-29 15:58:23', '2025-12-17 19:47:25', '2d28vkMA', '5052241'), - (28, 1249, 'attending', '2022-03-09 03:23:36', '2025-12-17 19:47:33', '2d28vkMA', '5068530'), - (28, 1259, 'attending', '2022-03-10 05:19:36', '2025-12-17 19:47:33', '2d28vkMA', '5132533'), - (28, 1262, 'maybe', '2022-03-10 05:23:23', '2025-12-17 19:47:33', '2d28vkMA', '5157773'), - (28, 1263, 'attending', '2022-03-07 21:20:34', '2025-12-17 19:47:33', '2d28vkMA', '5158145'), - (28, 1264, 'maybe', '2022-03-22 11:56:29', '2025-12-17 19:47:25', '2d28vkMA', '5160281'), - (28, 1266, 'attending', '2022-03-09 03:19:47', '2025-12-17 19:47:33', '2d28vkMA', '5166407'), - (28, 1267, 'attending', '2022-03-17 22:53:52', '2025-12-17 19:47:25', '2d28vkMA', '5169578'), - (28, 1269, 'attending', '2022-03-18 22:13:18', '2025-12-17 19:47:25', '2d28vkMA', '5179439'), - (28, 1270, 'attending', '2022-03-17 01:20:17', '2025-12-17 19:47:25', '2d28vkMA', '5181277'), - (28, 1271, 'not_attending', '2022-03-18 17:40:18', '2025-12-17 19:47:25', '2d28vkMA', '5181648'), - (28, 1272, 'attending', '2022-03-17 03:05:06', '2025-12-17 19:47:25', '2d28vkMA', '5186582'), - (28, 1273, 'attending', '2022-03-26 17:08:12', '2025-12-17 19:47:25', '2d28vkMA', '5186583'), - (28, 1274, 'attending', '2022-03-27 03:11:39', '2025-12-17 19:47:26', '2d28vkMA', '5186585'), - (28, 1276, 'attending', '2022-03-27 21:08:27', '2025-12-17 19:47:25', '2d28vkMA', '5186820'), - (28, 1277, 'not_attending', '2022-03-18 17:40:22', '2025-12-17 19:47:25', '2d28vkMA', '5186865'), - (28, 1278, 'not_attending', '2022-03-16 21:42:33', '2025-12-17 19:47:33', '2d28vkMA', '5186920'), - (28, 1279, 'attending', '2022-03-16 21:42:13', '2025-12-17 19:47:25', '2d28vkMA', '5187212'), - (28, 1281, 'attending', '2022-04-09 18:52:41', '2025-12-17 19:47:27', '2d28vkMA', '5190437'), - (28, 1282, 'attending', '2022-03-18 03:00:11', '2025-12-17 19:47:25', '2d28vkMA', '5191241'), - (28, 1283, 'attending', '2022-03-19 19:59:40', '2025-12-17 19:47:25', '2d28vkMA', '5193533'), - (28, 1284, 'attending', '2022-03-30 17:49:34', '2025-12-17 19:47:27', '2d28vkMA', '5195095'), - (28, 1287, 'attending', '2022-03-28 20:44:58', '2025-12-17 19:47:25', '2d28vkMA', '5199425'), - (28, 1288, 'not_attending', '2022-03-29 15:58:19', '2025-12-17 19:47:25', '2d28vkMA', '5199460'), - (28, 1289, 'maybe', '2022-03-29 15:58:39', '2025-12-17 19:47:25', '2d28vkMA', '5200190'), - (28, 1290, 'attending', '2022-03-29 15:58:07', '2025-12-17 19:47:25', '2d28vkMA', '5200196'), - (28, 1294, 'attending', '2022-03-30 17:49:07', '2025-12-17 19:47:26', '2d28vkMA', '5214686'), - (28, 1296, 'attending', '2022-03-29 15:58:51', '2025-12-17 19:47:26', '2d28vkMA', '5215985'), - (28, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '2d28vkMA', '5215989'), - (28, 1299, 'not_attending', '2022-03-31 19:33:01', '2025-12-17 19:47:25', '2d28vkMA', '5217660'), - (28, 1300, 'not_attending', '2022-03-31 19:32:58', '2025-12-17 19:47:25', '2d28vkMA', '5217936'), - (28, 1305, 'not_attending', '2022-04-09 18:52:53', '2025-12-17 19:47:27', '2d28vkMA', '5223673'), - (28, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '2d28vkMA', '5223686'), - (28, 1308, 'not_attending', '2022-04-13 16:18:48', '2025-12-17 19:47:27', '2d28vkMA', '5226703'), - (28, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '2d28vkMA', '5227432'), - (28, 1311, 'not_attending', '2022-04-09 18:52:48', '2025-12-17 19:47:27', '2d28vkMA', '5231430'), - (28, 1312, 'not_attending', '2022-04-13 16:19:23', '2025-12-17 19:47:27', '2d28vkMA', '5231459'), - (28, 1313, 'not_attending', '2022-04-09 18:53:07', '2025-12-17 19:47:27', '2d28vkMA', '5231461'), - (28, 1314, 'not_attending', '2022-04-09 18:53:02', '2025-12-17 19:47:27', '2d28vkMA', '5233137'), - (28, 1315, 'not_attending', '2022-04-23 00:04:15', '2025-12-17 19:47:27', '2d28vkMA', '5237522'), - (28, 1316, 'not_attending', '2022-04-13 16:18:54', '2025-12-17 19:47:27', '2d28vkMA', '5237536'), - (28, 1318, 'not_attending', '2022-04-13 16:18:56', '2025-12-17 19:47:27', '2d28vkMA', '5238343'), - (28, 1321, 'not_attending', '2022-04-13 16:19:46', '2025-12-17 19:47:27', '2d28vkMA', '5238355'), - (28, 1322, 'not_attending', '2022-04-26 21:21:10', '2025-12-17 19:47:27', '2d28vkMA', '5238356'), - (28, 1328, 'not_attending', '2022-04-13 16:19:27', '2025-12-17 19:47:27', '2d28vkMA', '5238759'), - (28, 1329, 'not_attending', '2022-04-13 16:19:00', '2025-12-17 19:47:27', '2d28vkMA', '5240135'), - (28, 1330, 'not_attending', '2022-04-13 16:19:35', '2025-12-17 19:47:27', '2d28vkMA', '5242155'), - (28, 1331, 'not_attending', '2022-04-13 16:19:38', '2025-12-17 19:47:27', '2d28vkMA', '5242156'), - (28, 1332, 'not_attending', '2022-04-13 16:19:25', '2025-12-17 19:47:27', '2d28vkMA', '5243274'), - (28, 1336, 'not_attending', '2022-04-15 01:46:28', '2025-12-17 19:47:27', '2d28vkMA', '5244915'), - (28, 1337, 'attending', '2022-04-19 16:35:01', '2025-12-17 19:47:27', '2d28vkMA', '5245036'), - (28, 1340, 'not_attending', '2022-04-26 20:56:07', '2025-12-17 19:47:27', '2d28vkMA', '5245754'), - (28, 1344, 'attending', '2022-04-26 20:56:22', '2025-12-17 19:47:28', '2d28vkMA', '5247465'), - (28, 1346, 'attending', '2022-04-23 00:05:36', '2025-12-17 19:47:27', '2d28vkMA', '5247467'), - (28, 1349, 'not_attending', '2022-04-19 16:35:05', '2025-12-17 19:47:27', '2d28vkMA', '5249631'), - (28, 1354, 'attending', '2022-04-23 15:24:21', '2025-12-17 19:47:27', '2d28vkMA', '5252569'), - (28, 1355, 'not_attending', '2022-04-26 20:56:17', '2025-12-17 19:47:28', '2d28vkMA', '5252573'), - (28, 1357, 'attending', '2022-04-24 18:05:13', '2025-12-17 19:47:27', '2d28vkMA', '5256017'), - (28, 1358, 'attending', '2022-04-26 21:50:26', '2025-12-17 19:47:27', '2d28vkMA', '5258022'), - (28, 1359, 'not_attending', '2022-05-04 17:13:47', '2025-12-17 19:47:28', '2d28vkMA', '5258360'), - (28, 1360, 'not_attending', '2022-04-26 20:55:51', '2025-12-17 19:47:27', '2d28vkMA', '5260197'), - (28, 1362, 'attending', '2022-04-25 18:59:07', '2025-12-17 19:47:28', '2d28vkMA', '5260800'), - (28, 1363, 'not_attending', '2022-04-26 20:56:12', '2025-12-17 19:47:28', '2d28vkMA', '5261577'), - (28, 1366, 'not_attending', '2022-04-26 20:56:03', '2025-12-17 19:47:27', '2d28vkMA', '5262344'), - (28, 1368, 'not_attending', '2022-05-06 09:42:22', '2025-12-17 19:47:28', '2d28vkMA', '5262783'), - (28, 1369, 'maybe', '2022-05-06 09:43:07', '2025-12-17 19:47:28', '2d28vkMA', '5262809'), - (28, 1371, 'not_attending', '2022-04-27 19:04:27', '2025-12-17 19:47:27', '2d28vkMA', '5263784'), - (28, 1372, 'maybe', '2022-05-04 17:13:53', '2025-12-17 19:47:28', '2d28vkMA', '5264352'), - (28, 1374, 'attending', '2022-04-30 19:51:58', '2025-12-17 19:47:28', '2d28vkMA', '5269930'), - (28, 1375, 'not_attending', '2022-05-04 17:14:13', '2025-12-17 19:47:28', '2d28vkMA', '5269932'), - (28, 1376, 'not_attending', '2022-05-06 09:43:38', '2025-12-17 19:47:28', '2d28vkMA', '5271446'), - (28, 1377, 'not_attending', '2022-05-06 09:43:41', '2025-12-17 19:47:28', '2d28vkMA', '5271447'), - (28, 1378, 'attending', '2022-05-06 09:43:46', '2025-12-17 19:47:28', '2d28vkMA', '5271448'), - (28, 1379, 'attending', '2022-05-10 02:10:57', '2025-12-17 19:47:29', '2d28vkMA', '5271449'), - (28, 1380, 'attending', '2022-05-28 17:32:33', '2025-12-17 19:47:30', '2d28vkMA', '5271450'), - (28, 1381, 'attending', '2022-05-05 03:15:22', '2025-12-17 19:47:28', '2d28vkMA', '5271453'), - (28, 1382, 'not_attending', '2022-05-06 09:43:04', '2025-12-17 19:47:28', '2d28vkMA', '5276350'), - (28, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '2d28vkMA', '5276469'), - (28, 1384, 'attending', '2022-05-04 18:19:38', '2025-12-17 19:47:28', '2d28vkMA', '5277078'), - (28, 1385, 'attending', '2022-05-06 09:41:09', '2025-12-17 19:47:28', '2d28vkMA', '5277822'), - (28, 1386, 'not_attending', '2022-05-05 15:14:23', '2025-12-17 19:47:28', '2d28vkMA', '5278159'), - (28, 1388, 'not_attending', '2022-05-06 09:42:13', '2025-12-17 19:47:28', '2d28vkMA', '5278201'), - (28, 1389, 'not_attending', '2022-05-06 17:12:17', '2025-12-17 19:47:28', '2d28vkMA', '5278202'), - (28, 1391, 'not_attending', '2022-05-06 17:12:21', '2025-12-17 19:47:28', '2d28vkMA', '5279531'), - (28, 1393, 'not_attending', '2022-05-17 21:11:04', '2025-12-17 19:47:30', '2d28vkMA', '5280603'), - (28, 1394, 'not_attending', '2022-05-17 21:10:42', '2025-12-17 19:47:30', '2d28vkMA', '5280667'), - (28, 1396, 'attending', '2022-05-14 21:51:26', '2025-12-17 19:47:28', '2d28vkMA', '5281103'), - (28, 1397, 'attending', '2022-05-17 21:10:32', '2025-12-17 19:47:29', '2d28vkMA', '5281104'), - (28, 1399, 'attending', '2022-05-12 22:42:33', '2025-12-17 19:47:28', '2d28vkMA', '5281796'), - (28, 1401, 'not_attending', '2022-05-17 21:10:06', '2025-12-17 19:47:29', '2d28vkMA', '5286295'), - (28, 1402, 'not_attending', '2022-05-17 21:10:40', '2025-12-17 19:47:30', '2d28vkMA', '5287977'), - (28, 1403, 'not_attending', '2022-05-17 21:10:24', '2025-12-17 19:47:29', '2d28vkMA', '5288052'), - (28, 1404, 'not_attending', '2022-05-17 21:10:02', '2025-12-17 19:47:29', '2d28vkMA', '5288114'), - (28, 1405, 'not_attending', '2022-05-17 21:10:15', '2025-12-17 19:47:29', '2d28vkMA', '5288115'), - (28, 1407, 'not_attending', '2022-05-27 02:03:23', '2025-12-17 19:47:30', '2d28vkMA', '5363695'), - (28, 1408, 'not_attending', '2022-05-17 21:10:20', '2025-12-17 19:47:29', '2d28vkMA', '5365960'), - (28, 1409, 'not_attending', '2022-05-17 21:10:46', '2025-12-17 19:47:30', '2d28vkMA', '5367032'), - (28, 1414, 'attending', '2022-05-18 05:31:14', '2025-12-17 19:47:29', '2d28vkMA', '5368445'), - (28, 1415, 'not_attending', '2022-05-23 13:01:45', '2025-12-17 19:47:30', '2d28vkMA', '5368973'), - (28, 1416, 'not_attending', '2022-05-27 02:03:11', '2025-12-17 19:47:30', '2d28vkMA', '5369628'), - (28, 1417, 'not_attending', '2022-05-23 13:01:14', '2025-12-17 19:47:30', '2d28vkMA', '5370465'), - (28, 1419, 'not_attending', '2022-06-03 02:44:28', '2025-12-17 19:47:30', '2d28vkMA', '5373081'), - (28, 1420, 'not_attending', '2022-05-24 20:01:52', '2025-12-17 19:47:30', '2d28vkMA', '5374882'), - (28, 1421, 'not_attending', '2022-05-27 02:03:14', '2025-12-17 19:47:30', '2d28vkMA', '5374885'), - (28, 1422, 'not_attending', '2022-05-24 20:01:57', '2025-12-17 19:47:30', '2d28vkMA', '5375603'), - (28, 1423, 'not_attending', '2022-06-03 02:44:48', '2025-12-17 19:47:17', '2d28vkMA', '5375727'), - (28, 1424, 'not_attending', '2022-05-24 20:01:43', '2025-12-17 19:47:30', '2d28vkMA', '5375772'), - (28, 1425, 'not_attending', '2022-05-24 20:01:47', '2025-12-17 19:47:30', '2d28vkMA', '5375861'), - (28, 1426, 'not_attending', '2022-05-24 20:01:39', '2025-12-17 19:47:30', '2d28vkMA', '5375873'), - (28, 1427, 'not_attending', '2022-05-24 20:01:31', '2025-12-17 19:47:30', '2d28vkMA', '5376074'), - (28, 1428, 'not_attending', '2022-05-27 02:02:59', '2025-12-17 19:47:30', '2d28vkMA', '5378247'), - (28, 1430, 'not_attending', '2022-06-09 02:49:18', '2025-12-17 19:47:30', '2d28vkMA', '5389402'), - (28, 1431, 'attending', '2022-06-03 02:44:02', '2025-12-17 19:47:30', '2d28vkMA', '5389605'), - (28, 1432, 'not_attending', '2022-06-03 02:44:14', '2025-12-17 19:47:30', '2d28vkMA', '5391566'), - (28, 1433, 'not_attending', '2022-06-03 02:44:16', '2025-12-17 19:47:30', '2d28vkMA', '5391667'), - (28, 1435, 'not_attending', '2022-06-03 02:44:10', '2025-12-17 19:47:30', '2d28vkMA', '5394015'), - (28, 1439, 'not_attending', '2022-06-03 02:44:35', '2025-12-17 19:47:30', '2d28vkMA', '5396072'), - (28, 1440, 'not_attending', '2022-06-03 02:44:32', '2025-12-17 19:47:30', '2d28vkMA', '5396080'), - (28, 1441, 'not_attending', '2022-06-03 02:44:41', '2025-12-17 19:47:30', '2d28vkMA', '5397171'), - (28, 1442, 'attending', '2022-06-03 02:46:21', '2025-12-17 19:47:17', '2d28vkMA', '5397265'), - (28, 1444, 'attending', '2022-06-09 02:49:38', '2025-12-17 19:47:30', '2d28vkMA', '5397614'), - (28, 1446, 'not_attending', '2022-06-09 02:49:12', '2025-12-17 19:47:30', '2d28vkMA', '5399721'), - (28, 1447, 'not_attending', '2022-06-09 02:49:21', '2025-12-17 19:47:30', '2d28vkMA', '5401089'), - (28, 1449, 'not_attending', '2022-06-09 02:49:49', '2025-12-17 19:47:31', '2d28vkMA', '5403335'), - (28, 1450, 'not_attending', '2022-06-09 02:49:25', '2025-12-17 19:47:30', '2d28vkMA', '5403421'), - (28, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '2d28vkMA', '5403967'), - (28, 1452, 'attending', '2022-06-09 14:59:07', '2025-12-17 19:47:30', '2d28vkMA', '5404197'), - (28, 1453, 'not_attending', '2022-06-12 03:04:14', '2025-12-17 19:47:31', '2d28vkMA', '5404745'), - (28, 1454, 'not_attending', '2022-06-12 03:04:10', '2025-12-17 19:47:31', '2d28vkMA', '5404771'), - (28, 1456, 'not_attending', '2022-06-12 23:19:49', '2025-12-17 19:47:17', '2d28vkMA', '5404779'), - (28, 1457, 'not_attending', '2022-06-12 03:04:05', '2025-12-17 19:47:31', '2d28vkMA', '5404780'), - (28, 1458, 'attending', '2022-06-10 16:37:19', '2025-12-17 19:47:17', '2d28vkMA', '5404786'), - (28, 1459, 'not_attending', '2022-06-10 16:37:37', '2025-12-17 19:47:17', '2d28vkMA', '5404793'), - (28, 1461, 'not_attending', '2022-06-12 23:19:54', '2025-12-17 19:47:31', '2d28vkMA', '5405149'), - (28, 1462, 'not_attending', '2022-06-12 23:19:35', '2025-12-17 19:47:17', '2d28vkMA', '5405203'), - (28, 1463, 'not_attending', '2022-06-12 23:19:56', '2025-12-17 19:47:31', '2d28vkMA', '5405208'), - (28, 1465, 'attending', '2022-06-12 04:08:00', '2025-12-17 19:47:31', '2d28vkMA', '5406355'), - (28, 1466, 'not_attending', '2022-06-12 23:19:47', '2025-12-17 19:47:17', '2d28vkMA', '5406427'), - (28, 1468, 'maybe', '2022-06-29 18:50:23', '2025-12-17 19:47:19', '2d28vkMA', '5406832'), - (28, 1469, 'not_attending', '2022-06-12 23:20:13', '2025-12-17 19:47:17', '2d28vkMA', '5406838'), - (28, 1470, 'not_attending', '2022-06-12 23:19:25', '2025-12-17 19:47:17', '2d28vkMA', '5407053'), - (28, 1480, 'attending', '2022-06-26 22:46:01', '2025-12-17 19:47:19', '2d28vkMA', '5411699'), - (28, 1482, 'attending', '2022-06-19 19:35:53', '2025-12-17 19:47:19', '2d28vkMA', '5412550'), - (28, 1483, 'attending', '2022-06-20 12:07:45', '2025-12-17 19:47:17', '2d28vkMA', '5414556'), - (28, 1484, 'attending', '2022-06-23 01:55:06', '2025-12-17 19:47:17', '2d28vkMA', '5415046'), - (28, 1486, 'not_attending', '2022-07-01 00:10:35', '2025-12-17 19:47:19', '2d28vkMA', '5416339'), - (28, 1494, 'not_attending', '2022-06-25 15:19:20', '2025-12-17 19:47:19', '2d28vkMA', '5421626'), - (28, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '2d28vkMA', '5422086'), - (28, 1497, 'attending', '2022-07-01 00:10:31', '2025-12-17 19:47:19', '2d28vkMA', '5422405'), - (28, 1498, 'not_attending', '2022-07-02 18:30:09', '2025-12-17 19:47:19', '2d28vkMA', '5422406'), - (28, 1499, 'not_attending', '2022-07-02 18:30:06', '2025-12-17 19:47:19', '2d28vkMA', '5422407'), - (28, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '2d28vkMA', '5424565'), - (28, 1503, 'not_attending', '2022-06-29 18:50:27', '2025-12-17 19:47:19', '2d28vkMA', '5426820'), - (28, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '2d28vkMA', '5426882'), - (28, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '2d28vkMA', '5427083'), - (28, 1508, 'not_attending', '2022-07-14 00:17:39', '2025-12-17 19:47:19', '2d28vkMA', '5433453'), - (28, 1512, 'maybe', '2022-07-14 00:17:26', '2025-12-17 19:47:19', '2d28vkMA', '5441112'), - (28, 1513, 'attending', '2022-07-14 00:11:51', '2025-12-17 19:47:19', '2d28vkMA', '5441125'), - (28, 1514, 'maybe', '2022-07-18 19:48:22', '2025-12-17 19:47:20', '2d28vkMA', '5441126'), - (28, 1515, 'attending', '2022-08-06 21:56:53', '2025-12-17 19:47:21', '2d28vkMA', '5441128'), - (28, 1516, 'not_attending', '2022-08-14 15:58:49', '2025-12-17 19:47:23', '2d28vkMA', '5441129'), - (28, 1518, 'attending', '2022-08-31 21:12:31', '2025-12-17 19:47:24', '2d28vkMA', '5441131'), - (28, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '2d28vkMA', '5441132'), - (28, 1522, 'not_attending', '2022-07-18 19:47:57', '2025-12-17 19:47:20', '2d28vkMA', '5442832'), - (28, 1526, 'not_attending', '2022-07-18 19:48:14', '2025-12-17 19:47:20', '2d28vkMA', '5445059'), - (28, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '2d28vkMA', '5446643'), - (28, 1532, 'maybe', '2022-07-18 19:48:20', '2025-12-17 19:47:20', '2d28vkMA', '5448757'), - (28, 1535, 'not_attending', '2022-07-18 19:47:53', '2025-12-17 19:47:20', '2d28vkMA', '5448830'), - (28, 1536, 'not_attending', '2022-07-18 19:47:50', '2025-12-17 19:47:20', '2d28vkMA', '5449068'), - (28, 1537, 'not_attending', '2022-07-18 19:48:00', '2025-12-17 19:47:20', '2d28vkMA', '5449117'), - (28, 1539, 'not_attending', '2022-07-27 20:28:09', '2025-12-17 19:47:21', '2d28vkMA', '5449671'), - (28, 1540, 'not_attending', '2022-07-18 19:48:11', '2025-12-17 19:47:20', '2d28vkMA', '5453325'), - (28, 1541, 'not_attending', '2022-07-24 14:41:09', '2025-12-17 19:47:20', '2d28vkMA', '5453542'), - (28, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '2d28vkMA', '5454516'), - (28, 1544, 'attending', '2022-09-14 20:27:17', '2025-12-17 19:47:11', '2d28vkMA', '5454517'), - (28, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '2d28vkMA', '5454605'), - (28, 1546, 'attending', '2022-07-27 20:28:01', '2025-12-17 19:47:20', '2d28vkMA', '5454607'), - (28, 1547, 'attending', '2022-07-26 00:48:55', '2025-12-17 19:47:20', '2d28vkMA', '5454608'), - (28, 1549, 'not_attending', '2022-07-24 14:40:56', '2025-12-17 19:47:20', '2d28vkMA', '5454789'), - (28, 1550, 'not_attending', '2022-07-24 14:41:23', '2025-12-17 19:47:20', '2d28vkMA', '5454803'), - (28, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '2d28vkMA', '5455037'), - (28, 1552, 'not_attending', '2022-07-24 14:41:37', '2025-12-17 19:47:20', '2d28vkMA', '5455149'), - (28, 1560, 'not_attending', '2022-08-16 15:52:26', '2025-12-17 19:47:23', '2d28vkMA', '5458768'), - (28, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '2d28vkMA', '5461278'), - (28, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '2d28vkMA', '5469480'), - (28, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '2d28vkMA', '5471073'), - (28, 1566, 'attending', '2022-07-27 20:27:42', '2025-12-17 19:47:20', '2d28vkMA', '5474663'), - (28, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '2d28vkMA', '5482022'), - (28, 1575, 'not_attending', '2022-08-16 15:52:53', '2025-12-17 19:47:23', '2d28vkMA', '5482250'), - (28, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '2d28vkMA', '5482793'), - (28, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '2d28vkMA', '5488912'), - (28, 1581, 'attending', '2022-08-11 02:57:48', '2025-12-17 19:47:22', '2d28vkMA', '5490302'), - (28, 1582, 'not_attending', '2022-08-16 15:52:31', '2025-12-17 19:47:23', '2d28vkMA', '5492001'), - (28, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '2d28vkMA', '5492192'), - (28, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '2d28vkMA', '5493139'), - (28, 1589, 'not_attending', '2022-08-16 15:52:41', '2025-12-17 19:47:23', '2d28vkMA', '5493159'), - (28, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '2d28vkMA', '5493200'), - (28, 1591, 'not_attending', '2022-08-14 15:57:26', '2025-12-17 19:47:22', '2d28vkMA', '5493764'), - (28, 1593, 'maybe', '2022-08-11 02:58:52', '2025-12-17 19:47:22', '2d28vkMA', '5494043'), - (28, 1595, 'not_attending', '2022-08-11 02:57:52', '2025-12-17 19:47:22', '2d28vkMA', '5495736'), - (28, 1597, 'not_attending', '2022-08-14 15:57:09', '2025-12-17 19:47:22', '2d28vkMA', '5496566'), - (28, 1598, 'not_attending', '2022-08-14 15:57:36', '2025-12-17 19:47:22', '2d28vkMA', '5496567'), - (28, 1601, 'not_attending', '2022-08-11 03:19:36', '2025-12-17 19:47:22', '2d28vkMA', '5496589'), - (28, 1603, 'not_attending', '2022-08-12 03:23:47', '2025-12-17 19:47:23', '2d28vkMA', '5497895'), - (28, 1604, 'maybe', '2022-08-14 15:57:52', '2025-12-17 19:47:22', '2d28vkMA', '5501504'), - (28, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '2d28vkMA', '5502188'), - (28, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '2d28vkMA', '5505059'), - (28, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '2d28vkMA', '5509055'), - (28, 1618, 'not_attending', '2022-08-24 12:32:09', '2025-12-17 19:47:23', '2d28vkMA', '5512005'), - (28, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '2d28vkMA', '5512862'), - (28, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '2d28vkMA', '5513985'), - (28, 1626, 'attending', '2022-08-25 23:12:14', '2025-12-17 19:47:11', '2d28vkMA', '5519981'), - (28, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '2d28vkMA', '5522550'), - (28, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '2d28vkMA', '5534683'), - (28, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '2d28vkMA', '5537735'), - (28, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '2d28vkMA', '5540859'), - (28, 1642, 'attending', '2022-09-07 20:29:07', '2025-12-17 19:47:24', '2d28vkMA', '5544227'), - (28, 1645, 'attending', '2022-09-03 20:12:54', '2025-12-17 19:47:25', '2d28vkMA', '5546559'), - (28, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '2d28vkMA', '5546619'), - (28, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '2d28vkMA', '5555245'), - (28, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '2d28vkMA', '5557747'), - (28, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '2d28vkMA', '5560255'), - (28, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '2d28vkMA', '5562906'), - (28, 1665, 'attending', '2022-09-10 21:04:04', '2025-12-17 19:47:25', '2d28vkMA', '5563133'), - (28, 1667, 'attending', '2022-09-24 05:18:59', '2025-12-17 19:47:11', '2d28vkMA', '5563221'), - (28, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '2d28vkMA', '5600604'), - (28, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '2d28vkMA', '5605544'), - (28, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '2d28vkMA', '5606737'), - (28, 1702, 'attending', '2022-10-02 19:34:38', '2025-12-17 19:47:12', '2d28vkMA', '5609173'), - (28, 1711, 'attending', '2022-10-06 21:37:31', '2025-12-17 19:47:12', '2d28vkMA', '5621883'), - (28, 1719, 'attending', '2022-10-07 15:10:39', '2025-12-17 19:47:12', '2d28vkMA', '5630958'), - (28, 1720, 'attending', '2022-10-15 17:53:23', '2025-12-17 19:47:12', '2d28vkMA', '5630959'), - (28, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '2d28vkMA', '5630960'), - (28, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '2d28vkMA', '5630961'), - (28, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '2d28vkMA', '5630962'), - (28, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '2d28vkMA', '5630966'), - (28, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '2d28vkMA', '5630967'), - (28, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '2d28vkMA', '5630968'), - (28, 1727, 'not_attending', '2022-11-29 21:44:17', '2025-12-17 19:47:16', '2d28vkMA', '5630969'), - (28, 1728, 'attending', '2022-11-27 16:27:06', '2025-12-17 19:47:17', '2d28vkMA', '5630970'), - (28, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '2d28vkMA', '5635406'), - (28, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '2d28vkMA', '5638765'), - (28, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '2d28vkMA', '5640097'), - (28, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '2d28vkMA', '5640843'), - (28, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '2d28vkMA', '5641521'), - (28, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '2d28vkMA', '5642818'), - (28, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '2d28vkMA', '5652395'), - (28, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '2d28vkMA', '5670445'), - (28, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '2d28vkMA', '5671637'), - (28, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '2d28vkMA', '5672329'), - (28, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '2d28vkMA', '5674057'), - (28, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '2d28vkMA', '5674060'), - (28, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', '2d28vkMA', '5677461'), - (28, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '2d28vkMA', '5698046'), - (28, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '2d28vkMA', '5699760'), - (28, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '2d28vkMA', '5741601'), - (28, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '2d28vkMA', '5763458'), - (28, 1805, 'attending', '2023-02-03 00:05:51', '2025-12-17 19:47:06', '2d28vkMA', '5764675'), - (28, 1806, 'attending', '2023-01-17 14:56:47', '2025-12-17 19:47:05', '2d28vkMA', '5764676'), - (28, 1807, 'attending', '2023-01-11 03:37:06', '2025-12-17 19:47:05', '2d28vkMA', '5764677'), - (28, 1811, 'maybe', '2023-05-06 16:14:55', '2025-12-17 19:47:02', '2d28vkMA', '5764681'), - (28, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '2d28vkMA', '5774172'), - (28, 1827, 'attending', '2022-11-27 06:45:17', '2025-12-17 19:47:16', '2d28vkMA', '5776786'), - (28, 1829, 'maybe', '2022-11-29 21:44:46', '2025-12-17 19:47:16', '2d28vkMA', '5778867'), - (28, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '2d28vkMA', '5818247'), - (28, 1833, 'not_attending', '2022-12-05 05:22:21', '2025-12-17 19:47:16', '2d28vkMA', '5819465'), - (28, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '2d28vkMA', '5819471'), - (28, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '2d28vkMA', '5827739'), - (28, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '2d28vkMA', '5844306'), - (28, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '2d28vkMA', '5850159'), - (28, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '2d28vkMA', '5858999'), - (28, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '2d28vkMA', '5871984'), - (28, 1858, 'attending', '2023-01-12 19:06:22', '2025-12-17 19:47:05', '2d28vkMA', '5875044'), - (28, 1860, 'attending', '2023-01-13 05:49:20', '2025-12-17 19:47:05', '2d28vkMA', '5876309'), - (28, 1861, 'not_attending', '2023-01-14 04:29:02', '2025-12-17 19:47:05', '2d28vkMA', '5876354'), - (28, 1864, 'attending', '2023-01-17 14:56:48', '2025-12-17 19:47:05', '2d28vkMA', '5879675'), - (28, 1865, 'attending', '2023-01-25 04:33:28', '2025-12-17 19:47:06', '2d28vkMA', '5879676'), - (28, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '2d28vkMA', '5880939'), - (28, 1867, 'attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '2d28vkMA', '5880940'), - (28, 1868, 'not_attending', '2023-02-17 17:40:16', '2025-12-17 19:47:07', '2d28vkMA', '5880942'), - (28, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '2d28vkMA', '5880943'), - (28, 1870, 'attending', '2023-01-17 19:14:15', '2025-12-17 19:47:05', '2d28vkMA', '5881740'), - (28, 1871, 'attending', '2023-01-18 05:57:49', '2025-12-17 19:47:05', '2d28vkMA', '5883502'), - (28, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '2d28vkMA', '5887890'), - (28, 1875, 'not_attending', '2023-01-25 04:33:20', '2025-12-17 19:47:06', '2d28vkMA', '5887908'), - (28, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '2d28vkMA', '5888598'), - (28, 1879, 'attending', '2023-01-24 22:14:56', '2025-12-17 19:47:06', '2d28vkMA', '5893001'), - (28, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '2d28vkMA', '5893260'), - (28, 1882, 'attending', '2023-01-29 18:21:07', '2025-12-17 19:47:06', '2d28vkMA', '5898447'), - (28, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '2d28vkMA', '5899826'), - (28, 1885, 'not_attending', '2023-02-17 17:40:26', '2025-12-17 19:47:08', '2d28vkMA', '5899928'), - (28, 1888, 'attending', '2023-02-17 23:26:58', '2025-12-17 19:47:07', '2d28vkMA', '5900197'), - (28, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '2d28vkMA', '5900199'), - (28, 1890, 'not_attending', '2023-02-17 17:40:20', '2025-12-17 19:47:08', '2d28vkMA', '5900200'), - (28, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '2d28vkMA', '5900202'), - (28, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '2d28vkMA', '5900203'), - (28, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '2d28vkMA', '5901108'), - (28, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '2d28vkMA', '5901126'), - (28, 1897, 'attending', '2023-02-07 20:12:33', '2025-12-17 19:47:07', '2d28vkMA', '5901128'), - (28, 1898, 'attending', '2023-01-31 23:39:17', '2025-12-17 19:47:06', '2d28vkMA', '5901263'), - (28, 1902, 'attending', '2023-02-03 00:05:46', '2025-12-17 19:47:06', '2d28vkMA', '5902254'), - (28, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '2d28vkMA', '5909655'), - (28, 1913, 'maybe', '2023-02-07 20:12:21', '2025-12-17 19:47:07', '2d28vkMA', '5910300'), - (28, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '2d28vkMA', '5910522'), - (28, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '2d28vkMA', '5910526'), - (28, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '2d28vkMA', '5910528'), - (28, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '2d28vkMA', '5916219'), - (28, 1923, 'attending', '2023-02-16 05:26:46', '2025-12-17 19:47:07', '2d28vkMA', '5930436'), - (28, 1924, 'not_attending', '2023-02-19 05:54:06', '2025-12-17 19:47:07', '2d28vkMA', '5931095'), - (28, 1925, 'not_attending', '2023-02-18 18:35:37', '2025-12-17 19:47:08', '2d28vkMA', '5932619'), - (28, 1928, 'not_attending', '2023-02-19 05:54:18', '2025-12-17 19:47:07', '2d28vkMA', '5932627'), - (28, 1929, 'not_attending', '2023-02-18 18:35:33', '2025-12-17 19:47:07', '2d28vkMA', '5932628'), - (28, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '2d28vkMA', '5936234'), - (28, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '2d28vkMA', '5958351'), - (28, 1938, 'maybe', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '2d28vkMA', '5959751'), - (28, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '2d28vkMA', '5959755'), - (28, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '2d28vkMA', '5960055'), - (28, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '2d28vkMA', '5961684'), - (28, 1942, 'not_attending', '2023-02-27 22:54:39', '2025-12-17 19:47:08', '2d28vkMA', '5962085'), - (28, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '2d28vkMA', '5962132'), - (28, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '2d28vkMA', '5962133'), - (28, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '2d28vkMA', '5962134'), - (28, 1947, 'attending', '2023-03-05 18:18:49', '2025-12-17 19:47:09', '2d28vkMA', '5962233'), - (28, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '2d28vkMA', '5962317'), - (28, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '2d28vkMA', '5962318'), - (28, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', '2d28vkMA', '5965933'), - (28, 1953, 'attending', '2023-03-01 20:41:47', '2025-12-17 19:47:09', '2d28vkMA', '5966307'), - (28, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '2d28vkMA', '5967014'), - (28, 1956, 'attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '2d28vkMA', '5972763'), - (28, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '2d28vkMA', '5972815'), - (28, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '2d28vkMA', '5974016'), - (28, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '2d28vkMA', '5981515'), - (28, 1966, 'attending', '2023-03-12 15:16:51', '2025-12-17 19:47:10', '2d28vkMA', '5983042'), - (28, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '2d28vkMA', '5993516'), - (28, 1972, 'not_attending', '2023-03-18 01:48:34', '2025-12-17 19:46:56', '2d28vkMA', '5993776'), - (28, 1973, 'not_attending', '2023-03-18 01:48:30', '2025-12-17 19:46:56', '2d28vkMA', '5993777'), - (28, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '2d28vkMA', '5998939'), - (28, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '2d28vkMA', '6028191'), - (28, 1979, 'not_attending', '2023-03-18 01:48:27', '2025-12-17 19:46:56', '2d28vkMA', '6030009'), - (28, 1980, 'not_attending', '2023-03-22 19:35:18', '2025-12-17 19:46:57', '2d28vkMA', '6036032'), - (28, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '2d28vkMA', '6040066'), - (28, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '2d28vkMA', '6042717'), - (28, 1985, 'attending', '2023-03-26 18:06:35', '2025-12-17 19:46:57', '2d28vkMA', '6043041'), - (28, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '2d28vkMA', '6044838'), - (28, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '2d28vkMA', '6044839'), - (28, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d28vkMA', '6045684'), - (28, 1991, 'attending', '2023-03-30 14:48:11', '2025-12-17 19:46:58', '2d28vkMA', '6047354'), - (28, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '2d28vkMA', '6050104'), - (28, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '2d28vkMA', '6053195'), - (28, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '2d28vkMA', '6053198'), - (28, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '2d28vkMA', '6056085'), - (28, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '2d28vkMA', '6056916'), - (28, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '2d28vkMA', '6059290'), - (28, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '2d28vkMA', '6060328'), - (28, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '2d28vkMA', '6061037'), - (28, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '2d28vkMA', '6061039'), - (28, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '2d28vkMA', '6067245'), - (28, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '2d28vkMA', '6068094'), - (28, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '2d28vkMA', '6068252'), - (28, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '2d28vkMA', '6068253'), - (28, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '2d28vkMA', '6068254'), - (28, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '2d28vkMA', '6068280'), - (28, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '2d28vkMA', '6069093'), - (28, 2039, 'attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', '2d28vkMA', '6072398'), - (28, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '2d28vkMA', '6072528'), - (28, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', '2d28vkMA', '6073678'), - (28, 2045, 'attending', '2023-04-30 02:00:56', '2025-12-17 19:47:01', '2d28vkMA', '6075556'), - (28, 2048, 'attending', '2023-05-03 02:39:22', '2025-12-17 19:47:03', '2d28vkMA', '6076415'), - (28, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '2d28vkMA', '6079840'), - (28, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '2d28vkMA', '6083398'), - (28, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '2d28vkMA', '6093504'), - (28, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '2d28vkMA', '6097414'), - (28, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '2d28vkMA', '6097442'), - (28, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '2d28vkMA', '6097684'), - (28, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '2d28vkMA', '6098762'), - (28, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '2d28vkMA', '6101361'), - (28, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '2d28vkMA', '6101362'), - (28, 2074, 'attending', '2023-05-20 00:08:19', '2025-12-17 19:47:03', '2d28vkMA', '6107312'), - (28, 2075, 'not_attending', '2023-05-17 22:42:51', '2025-12-17 19:46:50', '2d28vkMA', '6107314'), - (28, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '2d28vkMA', '6120034'), - (28, 2094, 'not_attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', '2d28vkMA', '6135924'), - (28, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '2d28vkMA', '6136733'), - (28, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '2d28vkMA', '6137989'), - (28, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '2d28vkMA', '6150864'), - (28, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '2d28vkMA', '6155491'), - (28, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '2d28vkMA', '6164417'), - (28, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '2d28vkMA', '6166388'), - (28, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '2d28vkMA', '6176439'), - (28, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '2d28vkMA', '6182410'), - (28, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '2d28vkMA', '6185812'), - (28, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '2d28vkMA', '6187651'), - (28, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '2d28vkMA', '6187963'), - (28, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '2d28vkMA', '6187964'), - (28, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '2d28vkMA', '6187966'), - (28, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '2d28vkMA', '6187967'), - (28, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '2d28vkMA', '6187969'), - (28, 2140, 'not_attending', '2023-07-13 21:00:43', '2025-12-17 19:46:52', '2d28vkMA', '6188074'), - (28, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '2d28vkMA', '6334878'), - (28, 2145, 'not_attending', '2023-07-13 21:00:45', '2025-12-17 19:46:52', '2d28vkMA', '6334903'), - (28, 2147, 'not_attending', '2023-07-13 21:01:02', '2025-12-17 19:46:52', '2d28vkMA', '6335666'), - (28, 2149, 'attending', '2023-07-09 21:43:40', '2025-12-17 19:46:53', '2d28vkMA', '6335682'), - (28, 2151, 'not_attending', '2023-07-09 22:57:13', '2025-12-17 19:46:52', '2d28vkMA', '6335700'), - (28, 2152, 'attending', '2023-07-11 22:50:36', '2025-12-17 19:46:52', '2d28vkMA', '6337021'), - (28, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '2d28vkMA', '6337236'), - (28, 2154, 'not_attending', '2023-07-11 22:52:40', '2025-12-17 19:46:52', '2d28vkMA', '6337689'), - (28, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '2d28vkMA', '6337970'), - (28, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '2d28vkMA', '6338308'), - (28, 2159, 'not_attending', '2023-07-18 19:09:42', '2025-12-17 19:46:53', '2d28vkMA', '6338355'), - (28, 2160, 'attending', '2023-07-29 21:09:07', '2025-12-17 19:46:54', '2d28vkMA', '6338358'), - (28, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '2d28vkMA', '6341710'), - (28, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '2d28vkMA', '6342044'), - (28, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '2d28vkMA', '6342298'), - (28, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '2d28vkMA', '6343294'), - (28, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '2d28vkMA', '6347034'), - (28, 2177, 'not_attending', '2023-08-09 23:22:24', '2025-12-17 19:46:55', '2d28vkMA', '6347053'), - (28, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '2d28vkMA', '6347056'), - (28, 2184, 'not_attending', '2023-07-29 21:09:08', '2025-12-17 19:46:54', '2d28vkMA', '6353825'), - (28, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '2d28vkMA', '6353830'), - (28, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '2d28vkMA', '6353831'), - (28, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '2d28vkMA', '6357867'), - (28, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '2d28vkMA', '6358652'), - (28, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '2d28vkMA', '6358668'), - (28, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '2d28vkMA', '6358669'), - (28, 2195, 'attending', '2023-08-25 22:45:50', '2025-12-17 19:46:55', '2d28vkMA', '6359397'), - (28, 2199, 'attending', '2023-08-05 15:55:14', '2025-12-17 19:46:55', '2d28vkMA', '6359849'), - (28, 2200, 'attending', '2023-08-05 16:00:11', '2025-12-17 19:46:55', '2d28vkMA', '6359850'), - (28, 2203, 'not_attending', '2023-08-10 14:03:37', '2025-12-17 19:46:55', '2d28vkMA', '6361524'), - (28, 2204, 'not_attending', '2023-08-10 14:03:56', '2025-12-17 19:46:55', '2d28vkMA', '6361542'), - (28, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '2d28vkMA', '6361709'), - (28, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '2d28vkMA', '6361710'), - (28, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '2d28vkMA', '6361711'), - (28, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '2d28vkMA', '6361712'), - (28, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '2d28vkMA', '6361713'), - (28, 2213, 'attending', '2023-08-09 17:40:57', '2025-12-17 19:46:55', '2d28vkMA', '6362935'), - (28, 2216, 'attending', '2023-08-20 19:30:47', '2025-12-17 19:46:55', '2d28vkMA', '6364123'), - (28, 2234, 'attending', '2023-08-28 14:37:55', '2025-12-17 19:46:56', '2d28vkMA', '6382559'), - (28, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '2d28vkMA', '6382573'), - (28, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '2d28vkMA', '6388604'), - (28, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '2d28vkMA', '6394629'), - (28, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '2d28vkMA', '6394631'), - (28, 2256, 'attending', '2023-09-21 14:34:41', '2025-12-17 19:46:45', '2d28vkMA', '6404369'), - (28, 2265, 'not_attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', '2d28vkMA', '6439625'), - (28, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '2d28vkMA', '6440863'), - (28, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '2d28vkMA', '6445440'), - (28, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '2d28vkMA', '6453951'), - (28, 2279, 'attending', '2023-10-12 22:52:49', '2025-12-17 19:46:46', '2d28vkMA', '6455460'), - (28, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '2d28vkMA', '6461696'), - (28, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '2d28vkMA', '6462129'), - (28, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '2d28vkMA', '6463218'), - (28, 2295, 'attending', '2023-10-16 13:24:20', '2025-12-17 19:46:46', '2d28vkMA', '6467832'), - (28, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '2d28vkMA', '6472181'), - (28, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', '2d28vkMA', '6474276'), - (28, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '2d28vkMA', '6482693'), - (28, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '2d28vkMA', '6484200'), - (28, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '2d28vkMA', '6484680'), - (28, 2310, 'attending', '2023-10-29 02:38:38', '2025-12-17 19:46:47', '2d28vkMA', '6487709'), - (28, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '2d28vkMA', '6507741'), - (28, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '2d28vkMA', '6514659'), - (28, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '2d28vkMA', '6514660'), - (28, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '2d28vkMA', '6519103'), - (28, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '2d28vkMA', '6535681'), - (28, 2338, 'not_attending', '2023-11-21 22:10:50', '2025-12-17 19:46:48', '2d28vkMA', '6538868'), - (28, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '2d28vkMA', '6584747'), - (28, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '2d28vkMA', '6587097'), - (28, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '2d28vkMA', '6609022'), - (28, 2372, 'not_attending', '2023-12-15 15:23:06', '2025-12-17 19:46:36', '2d28vkMA', '6628243'), - (28, 2373, 'attending', '2024-01-10 14:04:43', '2025-12-17 19:46:38', '2d28vkMA', '6632678'), - (28, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '2d28vkMA', '6632757'), - (28, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '2d28vkMA', '6644187'), - (28, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '2d28vkMA', '6648951'), - (28, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '2d28vkMA', '6648952'), - (28, 2388, 'attending', '2024-01-05 23:25:55', '2025-12-17 19:46:37', '2d28vkMA', '6649244'), - (28, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '2d28vkMA', '6655401'), - (28, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '2d28vkMA', '6661585'), - (28, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '2d28vkMA', '6661588'), - (28, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '2d28vkMA', '6661589'), - (28, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '2d28vkMA', '6699906'), - (28, 2408, 'attending', '2024-01-22 20:07:43', '2025-12-17 19:46:40', '2d28vkMA', '6699907'), - (28, 2410, 'attending', '2024-02-08 16:34:10', '2025-12-17 19:46:41', '2d28vkMA', '6699911'), - (28, 2411, 'attending', '2024-02-15 22:27:57', '2025-12-17 19:46:41', '2d28vkMA', '6699913'), - (28, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '2d28vkMA', '6701109'), - (28, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '2d28vkMA', '6704561'), - (28, 2425, 'attending', '2024-01-19 05:06:48', '2025-12-17 19:46:40', '2d28vkMA', '6705219'), - (28, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '2d28vkMA', '6710153'), - (28, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '2d28vkMA', '6711552'), - (28, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '2d28vkMA', '6711553'), - (28, 2431, 'attending', '2024-01-28 04:22:00', '2025-12-17 19:46:41', '2d28vkMA', '6712394'), - (28, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '2d28vkMA', '6722688'), - (28, 2438, 'attending', '2024-02-04 02:47:17', '2025-12-17 19:46:41', '2d28vkMA', '6730201'), - (28, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '2d28vkMA', '6730620'), - (28, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '2d28vkMA', '6730642'), - (28, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '2d28vkMA', '6740364'), - (28, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '2d28vkMA', '6743829'), - (28, 2467, 'maybe', '2024-02-21 15:36:38', '2025-12-17 19:46:43', '2d28vkMA', '7029987'), - (28, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '2d28vkMA', '7030380'), - (28, 2471, 'maybe', '2024-02-21 15:35:38', '2025-12-17 19:46:42', '2d28vkMA', '7032425'), - (28, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '2d28vkMA', '7033677'), - (28, 2474, 'not_attending', '2024-02-21 15:36:06', '2025-12-17 19:46:43', '2d28vkMA', '7035415'), - (28, 2479, 'attending', '2024-02-21 02:45:32', '2025-12-17 19:46:43', '2d28vkMA', '7037009'), - (28, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '2d28vkMA', '7044715'), - (28, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '2d28vkMA', '7050318'), - (28, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '2d28vkMA', '7050319'), - (28, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '2d28vkMA', '7050322'), - (28, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '2d28vkMA', '7057804'), - (28, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '2d28vkMA', '7072824'), - (28, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '2d28vkMA', '7074348'), - (28, 2511, 'attending', '2024-04-11 23:29:30', '2025-12-17 19:46:33', '2d28vkMA', '7074351'), - (28, 2512, 'maybe', '2024-03-29 16:32:32', '2025-12-17 19:46:33', '2d28vkMA', '7074352'), - (28, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '2d28vkMA', '7074364'), - (28, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '2d28vkMA', '7089267'), - (28, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '2d28vkMA', '7098747'), - (28, 2553, 'attending', '2024-03-29 11:42:20', '2025-12-17 19:46:33', '2d28vkMA', '7113468'), - (28, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '2d28vkMA', '7114856'), - (28, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '2d28vkMA', '7114951'), - (28, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '2d28vkMA', '7114955'), - (28, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '2d28vkMA', '7114956'), - (28, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '2d28vkMA', '7114957'), - (28, 2564, 'attending', '2024-04-03 01:28:53', '2025-12-17 19:46:33', '2d28vkMA', '7134735'), - (28, 2567, 'attending', '2024-04-04 01:56:00', '2025-12-17 19:46:33', '2d28vkMA', '7144962'), - (28, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '2d28vkMA', '7153615'), - (28, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '2d28vkMA', '7159484'), - (28, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '2d28vkMA', '7178446'), - (28, 2598, 'attending', '2024-04-21 22:45:02', '2025-12-17 19:46:34', '2d28vkMA', '7186731'), - (28, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '2d28vkMA', '7220467'), - (28, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '2d28vkMA', '7240354'), - (28, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '2d28vkMA', '7251633'), - (28, 2626, 'attending', '2024-05-17 13:09:12', '2025-12-17 19:46:35', '2d28vkMA', '7264723'), - (28, 2628, 'attending', '2024-05-30 22:18:35', '2025-12-17 19:46:36', '2d28vkMA', '7264725'), - (28, 2648, 'attending', '2024-05-20 23:53:49', '2025-12-17 19:46:35', '2d28vkMA', '7282283'), - (28, 2655, 'attending', '2024-05-26 21:46:43', '2025-12-17 19:46:35', '2d28vkMA', '7291225'), - (28, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '2d28vkMA', '7302674'), - (28, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '2d28vkMA', '7324073'), - (28, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '2d28vkMA', '7324074'), - (28, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '2d28vkMA', '7324075'), - (28, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '2d28vkMA', '7324078'), - (28, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '2d28vkMA', '7324082'), - (28, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '2d28vkMA', '7331457'), - (28, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '2d28vkMA', '7363643'), - (28, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '2d28vkMA', '7368606'), - (28, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '2d28vkMA', '7397462'), - (28, 2821, 'attending', '2024-10-07 16:32:47', '2025-12-17 19:46:26', '2d28vkMA', '7424275'), - (28, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '2d28vkMA', '7424276'), - (28, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '2d28vkMA', '7432751'), - (28, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '2d28vkMA', '7432752'), - (28, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '2d28vkMA', '7432753'), - (28, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '2d28vkMA', '7432754'), - (28, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '2d28vkMA', '7432755'), - (28, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '2d28vkMA', '7432756'), - (28, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '2d28vkMA', '7432758'), - (28, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '2d28vkMA', '7432759'), - (28, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '2d28vkMA', '7433834'), - (28, 2839, 'attending', '2024-09-25 13:42:47', '2025-12-17 19:46:25', '2d28vkMA', '7439262'), - (28, 2858, 'attending', '2024-10-11 19:25:00', '2025-12-17 19:46:26', '2d28vkMA', '7469388'), - (28, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '2d28vkMA', '7470197'), - (28, 2892, 'attending', '2024-10-27 21:32:27', '2025-12-17 19:46:26', '2d28vkMA', '7672064'), - (28, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '2d28vkMA', '7685613'), - (28, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '2d28vkMA', '7688194'), - (28, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '2d28vkMA', '7688196'), - (28, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '2d28vkMA', '7688289'), - (28, 2908, 'not_attending', '2024-11-11 01:14:50', '2025-12-17 19:46:27', '2d28vkMA', '7689420'), - (28, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '2d28vkMA', '7692763'), - (28, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '2d28vkMA', '7697552'), - (28, 2915, 'attending', '2024-11-17 05:48:35', '2025-12-17 19:46:27', '2d28vkMA', '7698151'), - (28, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '2d28vkMA', '7699878'), - (28, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '2d28vkMA', '7704043'), - (28, 2922, 'not_attending', '2024-11-25 22:47:46', '2025-12-17 19:46:21', '2d28vkMA', '7710890'), - (28, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '2d28vkMA', '7712467'), - (28, 2926, 'attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '2d28vkMA', '7713585'), - (28, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '2d28vkMA', '7713586'), - (28, 2929, 'not_attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', '2d28vkMA', '7723465'), - (28, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '2d28vkMA', '7738518'), - (28, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '2d28vkMA', '7750632'), - (28, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '2d28vkMA', '7750636'), - (28, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '2d28vkMA', '7796540'), - (28, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '2d28vkMA', '7796541'), - (28, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '2d28vkMA', '7796542'), - (28, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '2d28vkMA', '7825913'), - (28, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', '2d28vkMA', '7825920'), - (28, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '2d28vkMA', '7826209'), - (28, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '2d28vkMA', '7834742'), - (28, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '2d28vkMA', '7842108'), - (28, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '2d28vkMA', '7842902'), - (28, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '2d28vkMA', '7842903'), - (28, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '2d28vkMA', '7842904'), - (28, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '2d28vkMA', '7842905'), - (28, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', '2d28vkMA', '7842906'), - (28, 2998, 'not_attending', '2025-03-04 03:56:37', '2025-12-17 19:46:18', '2d28vkMA', '7842909'), - (28, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '2d28vkMA', '7855719'), - (28, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '2d28vkMA', '7860683'), - (28, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '2d28vkMA', '7860684'), - (28, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '2d28vkMA', '7866095'), - (28, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '2d28vkMA', '7869170'), - (28, 3015, 'attending', '2025-04-22 15:27:17', '2025-12-17 19:46:20', '2d28vkMA', '7869186'), - (28, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '2d28vkMA', '7869188'), - (28, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', '2d28vkMA', '7869194'), - (28, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', '2d28vkMA', '7869195'), - (28, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '2d28vkMA', '7869201'), - (28, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '2d28vkMA', '7877465'), - (28, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '2d28vkMA', '7888250'), - (28, 3072, 'maybe', '2025-04-03 16:47:31', '2025-12-17 19:46:19', '2d28vkMA', '7895449'), - (28, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '2d28vkMA', '7904777'), - (28, 3094, 'not_attending', '2025-05-10 15:50:16', '2025-12-17 19:46:21', '2d28vkMA', '8342292'), - (28, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '2d28vkMA', '8349164'), - (28, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '2d28vkMA', '8349545'), - (28, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '2d28vkMA', '8353584'), - (28, 3131, 'attending', '2025-05-15 16:38:43', '2025-12-17 19:46:21', '2d28vkMA', '8368028'), - (28, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '2d28vkMA', '8368029'), - (28, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '2d28vkMA', '8388462'), - (28, 3153, 'attending', '2025-06-03 11:50:05', '2025-12-17 19:46:15', '2d28vkMA', '8400273'), - (28, 3154, 'attending', '2025-06-27 02:33:54', '2025-12-17 19:46:15', '2d28vkMA', '8400274'), - (28, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '2d28vkMA', '8400275'), - (28, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '2d28vkMA', '8400276'), - (28, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '2d28vkMA', '8404977'), - (28, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '2d28vkMA', '8430783'), - (28, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '2d28vkMA', '8430784'), - (28, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '2d28vkMA', '8430799'), - (28, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '2d28vkMA', '8430800'), - (28, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '2d28vkMA', '8430801'), - (28, 3188, 'attending', '2025-07-06 01:49:51', '2025-12-17 19:46:17', '2d28vkMA', '8438709'), - (28, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '2d28vkMA', '8457738'), - (28, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '2d28vkMA', '8459566'), - (28, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '2d28vkMA', '8459567'), - (28, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', '2d28vkMA', '8459568'), - (28, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '2d28vkMA', '8461032'), - (28, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '2d28vkMA', '8477877'), - (28, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '2d28vkMA', '8485688'), - (28, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '2d28vkMA', '8490587'), - (28, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '2d28vkMA', '8493552'), - (28, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '2d28vkMA', '8493553'), - (28, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '2d28vkMA', '8493554'), - (28, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '2d28vkMA', '8493555'), - (28, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '2d28vkMA', '8493556'), - (28, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '2d28vkMA', '8493557'), - (28, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '2d28vkMA', '8493558'), - (28, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '2d28vkMA', '8493559'), - (28, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '2d28vkMA', '8493560'), - (28, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '2d28vkMA', '8493561'), - (28, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '2d28vkMA', '8493572'), - (28, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '2d28vkMA', '8540725'), - (28, 3289, 'attending', '2025-10-24 18:54:34', '2025-12-17 19:46:14', '2d28vkMA', '8542939'), - (28, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '2d28vkMA', '8555421'), - (28, 3325, 'maybe', '2025-11-24 00:28:22', '2025-12-17 19:46:14', '2d28vkMA', '8556660'), - (28, 3327, 'maybe', '2025-11-27 22:45:33', '2025-12-17 19:46:11', '2d28vkMA', '8557174'), - (29, 3304, 'attending', '2025-11-22 11:58:38', '2025-12-17 19:46:14', 'dJVbgOwd', '8550024'), - (29, 3305, 'attending', '2025-12-05 08:37:47', '2025-12-17 19:46:11', 'dJVbgOwd', '8550025'), - (29, 3306, 'attending', '2025-12-13 02:48:56', '2025-12-17 19:46:11', 'dJVbgOwd', '8550026'), - (29, 3324, 'attending', '2025-11-18 00:10:55', '2025-12-17 19:46:14', 'dJVbgOwd', '8556406'), - (29, 3327, 'attending', '2025-11-24 07:43:08', '2025-12-17 19:46:11', 'dJVbgOwd', '8557174'), - (30, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ArbMKbqA', '7904777'), - (30, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', 'ArbMKbqA', '8387505'), - (30, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ArbMKbqA', '8388462'), - (30, 3150, 'attending', '2025-06-21 18:23:51', '2025-12-17 19:46:15', 'ArbMKbqA', '8393174'), - (30, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ArbMKbqA', '8400273'), - (30, 3154, 'attending', '2025-06-28 18:14:39', '2025-12-17 19:46:15', 'ArbMKbqA', '8400274'), - (30, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ArbMKbqA', '8400275'), - (30, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ArbMKbqA', '8400276'), - (30, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ArbMKbqA', '8404977'), - (30, 3170, 'not_attending', '2025-06-09 16:34:14', '2025-12-17 19:46:15', 'ArbMKbqA', '8405947'), - (30, 3171, 'not_attending', '2025-06-13 18:00:16', '2025-12-17 19:46:15', 'ArbMKbqA', '8409765'), - (30, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ArbMKbqA', '8430783'), - (30, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ArbMKbqA', '8430784'), - (30, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ArbMKbqA', '8430799'), - (30, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ArbMKbqA', '8430800'), - (30, 3185, 'maybe', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ArbMKbqA', '8430801'), - (30, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ArbMKbqA', '8438709'), - (30, 3192, 'maybe', '2025-07-15 16:08:02', '2025-12-17 19:46:17', 'ArbMKbqA', '8456429'), - (30, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ArbMKbqA', '8457738'), - (30, 3194, 'attending', '2025-07-18 21:46:22', '2025-12-17 19:46:17', 'ArbMKbqA', '8457740'), - (30, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ArbMKbqA', '8459566'), - (30, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ArbMKbqA', '8459567'), - (30, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ArbMKbqA', '8461032'), - (30, 3209, 'attending', '2025-07-28 02:11:23', '2025-12-17 19:46:17', 'ArbMKbqA', '8467750'), - (30, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ArbMKbqA', '8477877'), - (30, 3216, 'attending', '2025-08-08 02:45:44', '2025-12-17 19:46:17', 'ArbMKbqA', '8481608'), - (30, 3217, 'maybe', '2025-08-09 19:24:20', '2025-12-17 19:46:17', 'ArbMKbqA', '8481811'), - (30, 3219, 'maybe', '2025-08-11 20:07:28', '2025-12-17 19:46:18', 'ArbMKbqA', '8482548'), - (30, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ArbMKbqA', '8485688'), - (30, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ArbMKbqA', '8490587'), - (30, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ArbMKbqA', '8493552'), - (30, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ArbMKbqA', '8493553'), - (30, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ArbMKbqA', '8493554'), - (30, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ArbMKbqA', '8493555'), - (30, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ArbMKbqA', '8493556'), - (30, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ArbMKbqA', '8493557'), - (30, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ArbMKbqA', '8493558'), - (30, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ArbMKbqA', '8493559'), - (30, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ArbMKbqA', '8493560'), - (30, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ArbMKbqA', '8493561'), - (30, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ArbMKbqA', '8493572'), - (30, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ArbMKbqA', '8540725'), - (30, 3295, 'not_attending', '2025-10-29 02:14:11', '2025-12-17 19:46:14', 'ArbMKbqA', '8547541'), - (30, 3296, 'attending', '2025-10-23 13:49:12', '2025-12-17 19:46:14', 'ArbMKbqA', '8547711'), - (30, 3301, 'maybe', '2025-11-27 07:14:00', '2025-12-17 19:46:11', 'ArbMKbqA', '8550021'), - (30, 3310, 'maybe', '2025-11-27 07:13:34', '2025-12-17 19:46:11', 'ArbMKbqA', '8550410'), - (30, 3311, 'maybe', '2025-11-27 07:13:53', '2025-12-17 19:46:11', 'ArbMKbqA', '8550412'), - (30, 3312, 'maybe', '2025-11-27 07:13:56', '2025-12-17 19:46:11', 'ArbMKbqA', '8550413'), - (30, 3314, 'attending', '2025-11-04 22:02:51', '2025-12-17 19:46:14', 'ArbMKbqA', '8551821'), - (30, 3315, 'not_attending', '2025-11-05 01:14:00', '2025-12-17 19:46:14', 'ArbMKbqA', '8552486'), - (30, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ArbMKbqA', '8555421'), - (31, 3295, 'attending', '2025-10-28 08:24:32', '2025-12-17 19:46:14', '4Z6z17l4', '8547541'), - (31, 3300, 'attending', '2025-11-05 12:37:31', '2025-12-17 19:46:14', '4Z6z17l4', '8549145'), - (31, 3302, 'attending', '2025-11-12 10:57:51', '2025-12-17 19:46:14', '4Z6z17l4', '8550022'), - (31, 3304, 'not_attending', '2025-11-22 07:52:52', '2025-12-17 19:46:14', '4Z6z17l4', '8550024'), - (31, 3305, 'attending', '2025-12-06 18:40:42', '2025-12-17 19:46:11', '4Z6z17l4', '8550025'), - (31, 3311, 'maybe', '2025-12-09 17:39:30', '2025-12-17 19:46:11', '4Z6z17l4', '8550412'), - (31, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4Z6z17l4', '8555421'), - (32, 3298, 'not_attending', '2025-10-21 21:28:55', '2025-12-17 19:46:14', '401W2ORd', '8548211'), - (32, 3321, 'attending', '2025-11-14 01:03:34', '2025-12-17 19:46:14', '401W2ORd', '8555418'), - (32, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '401W2ORd', '8555421'), - (33, 3015, 'attending', '2025-04-24 21:13:23', '2025-12-17 19:46:20', 'mjVP59Nm', '7869186'), - (33, 3016, 'attending', '2025-04-19 22:04:14', '2025-12-17 19:46:20', 'mjVP59Nm', '7869187'), - (33, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mjVP59Nm', '7904777'), - (33, 3094, 'attending', '2025-05-10 20:01:32', '2025-12-17 19:46:21', 'mjVP59Nm', '8342292'), - (33, 3095, 'attending', '2025-05-01 19:15:57', '2025-12-17 19:46:20', 'mjVP59Nm', '8342293'), - (33, 3103, 'attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'mjVP59Nm', '8347770'), - (33, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjVP59Nm', '8349164'), - (33, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjVP59Nm', '8349545'), - (33, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mjVP59Nm', '8353584'), - (33, 3116, 'attending', '2025-05-03 18:35:37', '2025-12-17 19:46:20', 'mjVP59Nm', '8358252'), - (33, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjVP59Nm', '8368028'), - (33, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjVP59Nm', '8368029'), - (33, 3133, 'attending', '2025-05-31 20:15:31', '2025-12-17 19:46:14', 'mjVP59Nm', '8368030'), - (33, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjVP59Nm', '8388462'), - (33, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjVP59Nm', '8400273'), - (33, 3154, 'not_attending', '2025-06-26 04:45:46', '2025-12-17 19:46:15', 'mjVP59Nm', '8400274'), - (33, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjVP59Nm', '8400275'), - (33, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mjVP59Nm', '8400276'), - (33, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjVP59Nm', '8404977'), - (33, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mjVP59Nm', '8430783'), - (33, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjVP59Nm', '8430784'), - (33, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjVP59Nm', '8430799'), - (33, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjVP59Nm', '8430800'), - (33, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjVP59Nm', '8430801'), - (33, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mjVP59Nm', '8438709'), - (33, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjVP59Nm', '8457738'), - (33, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjVP59Nm', '8459566'), - (33, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjVP59Nm', '8459567'), - (33, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjVP59Nm', '8461032'), - (33, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjVP59Nm', '8477877'), - (33, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mjVP59Nm', '8485688'), - (33, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mjVP59Nm', '8490587'), - (33, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mjVP59Nm', '8493552'), - (33, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'mjVP59Nm', '8493553'), - (33, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mjVP59Nm', '8493554'), - (33, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mjVP59Nm', '8493555'), - (33, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mjVP59Nm', '8493556'), - (33, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mjVP59Nm', '8493557'), - (33, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mjVP59Nm', '8493558'), - (33, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mjVP59Nm', '8493559'), - (33, 3244, 'maybe', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mjVP59Nm', '8493560'), - (33, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'mjVP59Nm', '8493561'), - (33, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mjVP59Nm', '8493572'), - (33, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mjVP59Nm', '8540725'), - (33, 3302, 'not_attending', '2025-11-09 06:22:12', '2025-12-17 19:46:14', 'mjVP59Nm', '8550022'), - (33, 3304, 'attending', '2025-11-22 08:19:51', '2025-12-17 19:46:14', 'mjVP59Nm', '8550024'), - (33, 3305, 'attending', '2025-12-04 04:33:21', '2025-12-17 19:46:11', 'mjVP59Nm', '8550025'), - (33, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mjVP59Nm', '8555421'), - (34, 3015, 'attending', '2025-04-24 07:57:09', '2025-12-17 19:46:20', 'dVo6zbpm', '7869186'), - (34, 3022, 'not_attending', '2025-04-25 00:04:33', '2025-12-17 19:46:20', 'dVo6zbpm', '7869193'), - (34, 3088, 'attending', '2025-06-09 08:18:24', '2025-12-17 19:46:15', 'dVo6zbpm', '7904777'), - (34, 3094, 'attending', '2025-04-30 23:11:22', '2025-12-17 19:46:21', 'dVo6zbpm', '8342292'), - (34, 3095, 'attending', '2025-04-24 07:57:29', '2025-12-17 19:46:20', 'dVo6zbpm', '8342293'), - (34, 3096, 'maybe', '2025-04-22 20:29:52', '2025-12-17 19:46:20', 'dVo6zbpm', '8342987'), - (34, 3097, 'not_attending', '2025-04-22 20:29:21', '2025-12-17 19:46:20', 'dVo6zbpm', '8342993'), - (34, 3100, 'attending', '2025-04-22 01:57:34', '2025-12-17 19:46:20', 'dVo6zbpm', '8343977'), - (34, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVo6zbpm', '8349164'), - (34, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVo6zbpm', '8349545'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (34, 3106, 'attending', '2025-04-27 18:14:47', '2025-12-17 19:46:20', 'dVo6zbpm', '8349552'), - (34, 3107, 'maybe', '2025-04-27 22:56:39', '2025-12-17 19:46:20', 'dVo6zbpm', '8350107'), - (34, 3109, 'maybe', '2025-05-04 23:06:16', '2025-12-17 19:46:21', 'dVo6zbpm', '8352001'), - (34, 3110, 'maybe', '2025-04-30 23:10:59', '2025-12-17 19:46:20', 'dVo6zbpm', '8353484'), - (34, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVo6zbpm', '8353584'), - (34, 3114, 'not_attending', '2025-05-03 08:10:31', '2025-12-17 19:46:20', 'dVo6zbpm', '8357180'), - (34, 3119, 'attending', '2025-05-07 07:44:52', '2025-12-17 19:46:21', 'dVo6zbpm', '8360035'), - (34, 3120, 'not_attending', '2025-05-07 07:44:01', '2025-12-17 19:46:21', 'dVo6zbpm', '8360736'), - (34, 3121, 'maybe', '2025-05-07 16:58:24', '2025-12-17 19:46:21', 'dVo6zbpm', '8362730'), - (34, 3122, 'maybe', '2025-05-12 09:17:41', '2025-12-17 19:46:21', 'dVo6zbpm', '8362978'), - (34, 3123, 'not_attending', '2025-05-09 08:29:12', '2025-12-17 19:46:21', 'dVo6zbpm', '8363523'), - (34, 3124, 'attending', '2025-05-09 02:03:30', '2025-12-17 19:46:21', 'dVo6zbpm', '8363566'), - (34, 3127, 'not_attending', '2025-05-12 09:17:48', '2025-12-17 19:46:21', 'dVo6zbpm', '8365615'), - (34, 3131, 'attending', '2025-05-13 08:02:15', '2025-12-17 19:46:21', 'dVo6zbpm', '8368028'), - (34, 3132, 'attending', '2025-05-19 17:32:01', '2025-12-17 19:46:21', 'dVo6zbpm', '8368029'), - (34, 3133, 'attending', '2025-05-24 19:55:23', '2025-12-17 19:46:14', 'dVo6zbpm', '8368030'), - (34, 3135, 'maybe', '2025-05-19 17:31:59', '2025-12-17 19:46:21', 'dVo6zbpm', '8373126'), - (34, 3138, 'attending', '2025-05-18 16:48:23', '2025-12-17 19:46:21', 'dVo6zbpm', '8376037'), - (34, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dVo6zbpm', '8388462'), - (34, 3150, 'not_attending', '2025-06-06 22:40:42', '2025-12-17 19:46:15', 'dVo6zbpm', '8393174'), - (34, 3152, 'attending', '2025-05-31 19:17:49', '2025-12-17 19:46:14', 'dVo6zbpm', '8393582'), - (34, 3153, 'attending', '2025-06-03 20:03:15', '2025-12-17 19:46:15', 'dVo6zbpm', '8400273'), - (34, 3154, 'attending', '2025-06-21 19:59:36', '2025-12-17 19:46:15', 'dVo6zbpm', '8400274'), - (34, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dVo6zbpm', '8400275'), - (34, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dVo6zbpm', '8400276'), - (34, 3157, 'maybe', '2025-06-06 22:33:38', '2025-12-17 19:46:15', 'dVo6zbpm', '8401407'), - (34, 3159, 'maybe', '2025-06-06 22:39:48', '2025-12-17 19:46:15', 'dVo6zbpm', '8401410'), - (34, 3161, 'maybe', '2025-06-06 22:19:54', '2025-12-17 19:46:15', 'dVo6zbpm', '8401412'), - (34, 3162, 'not_attending', '2025-06-17 07:08:30', '2025-12-17 19:46:15', 'dVo6zbpm', '8401599'), - (34, 3164, 'attending', '2025-06-06 00:50:56', '2025-12-17 19:46:15', 'dVo6zbpm', '8403121'), - (34, 3166, 'maybe', '2025-06-07 22:16:51', '2025-12-17 19:46:15', 'dVo6zbpm', '8404242'), - (34, 3169, 'not_attending', '2025-06-09 08:17:48', '2025-12-17 19:46:15', 'dVo6zbpm', '8404977'), - (34, 3172, 'not_attending', '2025-06-17 07:08:36', '2025-12-17 19:46:15', 'dVo6zbpm', '8410181'), - (34, 3175, 'maybe', '2025-06-15 01:27:05', '2025-12-17 19:46:15', 'dVo6zbpm', '8410815'), - (34, 3176, 'maybe', '2025-06-21 19:59:23', '2025-12-17 19:46:15', 'dVo6zbpm', '8416741'), - (34, 3179, 'maybe', '2025-06-24 17:41:28', '2025-12-17 19:46:15', 'dVo6zbpm', '8421850'), - (34, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dVo6zbpm', '8430783'), - (34, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dVo6zbpm', '8430784'), - (34, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dVo6zbpm', '8430799'), - (34, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dVo6zbpm', '8430800'), - (34, 3185, 'maybe', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dVo6zbpm', '8430801'), - (34, 3186, 'attending', '2025-07-01 01:03:11', '2025-12-17 19:46:16', 'dVo6zbpm', '8431527'), - (34, 3188, 'attending', '2025-07-14 09:04:17', '2025-12-17 19:46:17', 'dVo6zbpm', '8438709'), - (34, 3189, 'maybe', '2025-07-08 21:35:33', '2025-12-17 19:46:16', 'dVo6zbpm', '8438849'), - (34, 3190, 'not_attending', '2025-07-14 09:04:12', '2025-12-17 19:46:17', 'dVo6zbpm', '8443962'), - (34, 3192, 'attending', '2025-07-15 16:08:02', '2025-12-17 19:46:17', 'dVo6zbpm', '8456429'), - (34, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVo6zbpm', '8457738'), - (34, 3195, 'attending', '2025-07-21 07:45:47', '2025-12-17 19:46:17', 'dVo6zbpm', '8458118'), - (34, 3196, 'attending', '2025-08-07 21:50:42', '2025-12-17 19:46:17', 'dVo6zbpm', '8458543'), - (34, 3197, 'attending', '2025-07-18 02:28:13', '2025-12-17 19:46:17', 'dVo6zbpm', '8458825'), - (34, 3198, 'not_attending', '2025-08-17 11:50:31', '2025-12-17 19:46:18', 'dVo6zbpm', '8459268'), - (34, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVo6zbpm', '8459566'), - (34, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVo6zbpm', '8459567'), - (34, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVo6zbpm', '8461032'), - (34, 3205, 'not_attending', '2025-07-20 22:49:05', '2025-12-17 19:46:17', 'dVo6zbpm', '8461764'), - (34, 3208, 'maybe', '2025-07-28 23:13:52', '2025-12-17 19:46:17', 'dVo6zbpm', '8467717'), - (34, 3210, 'attending', '2025-08-17 11:50:27', '2025-12-17 19:46:18', 'dVo6zbpm', '8471162'), - (34, 3211, 'not_attending', '2025-08-07 21:45:03', '2025-12-17 19:46:17', 'dVo6zbpm', '8477785'), - (34, 3213, 'maybe', '2025-08-11 19:32:37', '2025-12-17 19:46:17', 'dVo6zbpm', '8477876'), - (34, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVo6zbpm', '8477877'), - (34, 3217, 'not_attending', '2025-08-12 15:23:35', '2025-12-17 19:46:17', 'dVo6zbpm', '8481811'), - (34, 3219, 'not_attending', '2025-08-17 11:50:42', '2025-12-17 19:46:18', 'dVo6zbpm', '8482548'), - (34, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dVo6zbpm', '8485688'), - (34, 3235, 'maybe', '2025-08-18 17:52:27', '2025-12-17 19:46:18', 'dVo6zbpm', '8490587'), - (34, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVo6zbpm', '8493552'), - (34, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dVo6zbpm', '8493553'), - (34, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVo6zbpm', '8493554'), - (34, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVo6zbpm', '8493555'), - (34, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVo6zbpm', '8493556'), - (34, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVo6zbpm', '8493557'), - (34, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVo6zbpm', '8493558'), - (34, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVo6zbpm', '8493559'), - (34, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVo6zbpm', '8493560'), - (34, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dVo6zbpm', '8493561'), - (34, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVo6zbpm', '8493572'), - (34, 3261, 'attending', '2025-09-15 07:00:05', '2025-12-17 19:46:12', 'dVo6zbpm', '8512641'), - (34, 3262, 'attending', '2025-09-15 07:00:35', '2025-12-17 19:46:12', 'dVo6zbpm', '8512642'), - (34, 3264, 'not_attending', '2025-09-15 07:00:20', '2025-12-17 19:46:12', 'dVo6zbpm', '8514577'), - (34, 3266, 'attending', '2025-09-27 20:20:43', '2025-12-17 19:46:13', 'dVo6zbpm', '8514579'), - (34, 3272, 'maybe', '2025-09-22 08:15:01', '2025-12-17 19:46:12', 'dVo6zbpm', '8524068'), - (34, 3274, 'maybe', '2025-09-22 08:15:12', '2025-12-17 19:46:12', 'dVo6zbpm', '8527784'), - (34, 3280, 'maybe', '2025-10-01 22:56:34', '2025-12-17 19:46:13', 'dVo6zbpm', '8535686'), - (34, 3281, 'attending', '2025-10-01 22:56:40', '2025-12-17 19:46:14', 'dVo6zbpm', '8535687'), - (34, 3282, 'not_attending', '2025-10-05 19:06:25', '2025-12-17 19:46:13', 'dVo6zbpm', '8537571'), - (34, 3283, 'maybe', '2025-10-05 19:06:45', '2025-12-17 19:46:14', 'dVo6zbpm', '8538077'), - (34, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dVo6zbpm', '8540725'), - (34, 3285, 'not_attending', '2025-10-08 21:01:18', '2025-12-17 19:46:13', 'dVo6zbpm', '8540726'), - (34, 3286, 'attending', '2025-10-08 21:15:32', '2025-12-17 19:46:14', 'dVo6zbpm', '8540728'), - (34, 3287, 'attending', '2025-10-12 22:50:58', '2025-12-17 19:46:14', 'dVo6zbpm', '8540729'), - (34, 3289, 'not_attending', '2025-10-17 01:20:11', '2025-12-17 19:46:14', 'dVo6zbpm', '8542939'), - (34, 3292, 'not_attending', '2025-10-16 08:24:51', '2025-12-17 19:46:14', 'dVo6zbpm', '8543835'), - (34, 3293, 'attending', '2025-10-16 08:24:55', '2025-12-17 19:46:14', 'dVo6zbpm', '8543836'), - (34, 3294, 'attending', '2025-10-18 21:23:27', '2025-12-17 19:46:14', 'dVo6zbpm', '8546775'), - (34, 3295, 'not_attending', '2025-10-28 20:50:29', '2025-12-17 19:46:14', 'dVo6zbpm', '8547541'), - (34, 3300, 'maybe', '2025-10-30 21:02:51', '2025-12-17 19:46:14', 'dVo6zbpm', '8549145'), - (34, 3302, 'attending', '2025-10-29 00:11:44', '2025-12-17 19:46:14', 'dVo6zbpm', '8550022'), - (34, 3304, 'not_attending', '2025-11-18 10:05:30', '2025-12-17 19:46:14', 'dVo6zbpm', '8550024'), - (34, 3306, 'not_attending', '2025-12-02 17:11:31', '2025-12-17 19:46:11', 'dVo6zbpm', '8550026'), - (34, 3307, 'attending', '2025-12-15 20:50:26', '2025-12-17 19:46:11', 'dVo6zbpm', '8550027'), - (34, 3308, 'not_attending', '2025-10-28 20:50:18', '2025-12-17 19:46:14', 'dVo6zbpm', '8550408'), - (34, 3309, 'attending', '2025-11-16 04:12:57', '2025-12-17 19:46:14', 'dVo6zbpm', '8550409'), - (34, 3310, 'attending', '2025-11-19 22:32:29', '2025-12-17 19:46:11', 'dVo6zbpm', '8550410'), - (34, 3311, 'not_attending', '2025-12-08 10:47:26', '2025-12-17 19:46:11', 'dVo6zbpm', '8550412'), - (34, 3313, 'not_attending', '2025-10-30 21:02:58', '2025-12-17 19:46:14', 'dVo6zbpm', '8550896'), - (34, 3319, 'attending', '2025-11-08 20:12:17', '2025-12-17 19:46:14', 'dVo6zbpm', '8553114'), - (34, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dVo6zbpm', '8555421'), - (34, 3327, 'not_attending', '2025-11-24 12:50:30', '2025-12-17 19:46:11', 'dVo6zbpm', '8557174'), - (34, 3334, 'not_attending', '2025-12-08 10:47:23', '2025-12-17 19:46:11', 'dVo6zbpm', '8563246'), - (34, 3343, 'maybe', '2025-12-15 20:50:52', '2025-12-17 19:46:11', 'dVo6zbpm', '8564411'), - (35, 2410, 'attending', '2024-02-08 01:32:14', '2025-12-17 19:46:41', 'dxKzV994', '6699911'), - (35, 2411, 'attending', '2024-02-11 04:29:25', '2025-12-17 19:46:41', 'dxKzV994', '6699913'), - (35, 2412, 'attending', '2024-02-11 05:08:26', '2025-12-17 19:46:43', 'dxKzV994', '6700717'), - (35, 2449, 'not_attending', '2024-02-16 04:17:07', '2025-12-17 19:46:42', 'dxKzV994', '6735833'), - (35, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxKzV994', '6740364'), - (35, 2454, 'attending', '2024-02-16 04:17:11', '2025-12-17 19:46:42', 'dxKzV994', '6740921'), - (35, 2455, 'attending', '2024-02-08 05:15:52', '2025-12-17 19:46:41', 'dxKzV994', '6741034'), - (35, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxKzV994', '6743829'), - (35, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxKzV994', '7030380'), - (35, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxKzV994', '7033677'), - (35, 2474, 'attending', '2024-02-20 22:03:04', '2025-12-17 19:46:43', 'dxKzV994', '7035415'), - (35, 2475, 'not_attending', '2024-02-21 01:20:22', '2025-12-17 19:46:43', 'dxKzV994', '7035643'), - (35, 2476, 'attending', '2024-02-21 01:20:19', '2025-12-17 19:46:43', 'dxKzV994', '7035691'), - (35, 2477, 'attending', '2024-02-20 22:01:59', '2025-12-17 19:46:42', 'dxKzV994', '7035692'), - (35, 2481, 'attending', '2024-02-25 03:47:57', '2025-12-17 19:46:43', 'dxKzV994', '7044715'), - (35, 2482, 'attending', '2024-02-25 03:47:59', '2025-12-17 19:46:44', 'dxKzV994', '7044719'), - (35, 2484, 'attending', '2024-02-26 17:54:24', '2025-12-17 19:46:43', 'dxKzV994', '7046836'), - (35, 2486, 'attending', '2024-03-04 05:44:02', '2025-12-17 19:46:43', 'dxKzV994', '7048277'), - (35, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxKzV994', '7050318'), - (35, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxKzV994', '7050319'), - (35, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxKzV994', '7050322'), - (35, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxKzV994', '7057804'), - (35, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dxKzV994', '7059866'), - (35, 2505, 'maybe', '2024-03-17 02:17:29', '2025-12-17 19:46:33', 'dxKzV994', '7069163'), - (35, 2507, 'attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxKzV994', '7072824'), - (35, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxKzV994', '7074348'), - (35, 2509, 'attending', '2024-03-25 21:16:33', '2025-12-17 19:46:33', 'dxKzV994', '7074349'), - (35, 2512, 'attending', '2024-04-04 23:56:05', '2025-12-17 19:46:33', 'dxKzV994', '7074352'), - (35, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxKzV994', '7074364'), - (35, 2537, 'attending', '2024-03-23 14:50:01', '2025-12-17 19:46:33', 'dxKzV994', '7085484'), - (35, 2539, 'attending', '2024-04-04 23:31:51', '2025-12-17 19:46:33', 'dxKzV994', '7085486'), - (35, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxKzV994', '7089267'), - (35, 2541, 'maybe', '2024-03-17 14:27:01', '2025-12-17 19:46:33', 'dxKzV994', '7089404'), - (35, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxKzV994', '7098747'), - (35, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxKzV994', '7113468'), - (35, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxKzV994', '7114856'), - (35, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxKzV994', '7114951'), - (35, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxKzV994', '7114955'), - (35, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxKzV994', '7114956'), - (35, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxKzV994', '7114957'), - (35, 2562, 'attending', '2024-04-02 19:19:57', '2025-12-17 19:46:33', 'dxKzV994', '7134552'), - (35, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxKzV994', '7153615'), - (35, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxKzV994', '7159484'), - (35, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxKzV994', '7178446'), - (35, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxKzV994', '7220467'), - (35, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxKzV994', '7240354'), - (35, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxKzV994', '7251633'), - (35, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dxKzV994', '7263048'), - (35, 2626, 'attending', '2024-05-18 19:05:20', '2025-12-17 19:46:35', 'dxKzV994', '7264723'), - (35, 2627, 'attending', '2024-05-25 20:15:02', '2025-12-17 19:46:35', 'dxKzV994', '7264724'), - (35, 2628, 'attending', '2024-06-01 16:05:45', '2025-12-17 19:46:36', 'dxKzV994', '7264725'), - (35, 2629, 'attending', '2024-06-04 21:11:45', '2025-12-17 19:46:28', 'dxKzV994', '7264726'), - (35, 2649, 'attending', '2024-05-28 12:28:47', '2025-12-17 19:46:35', 'dxKzV994', '7282950'), - (35, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxKzV994', '7302674'), - (35, 2663, 'attending', '2024-06-04 16:16:34', '2025-12-17 19:46:36', 'dxKzV994', '7303913'), - (35, 2678, 'not_attending', '2024-06-15 19:51:53', '2025-12-17 19:46:28', 'dxKzV994', '7319489'), - (35, 2679, 'attending', '2024-06-18 15:57:01', '2025-12-17 19:46:29', 'dxKzV994', '7319490'), - (35, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxKzV994', '7324073'), - (35, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxKzV994', '7324074'), - (35, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxKzV994', '7324075'), - (35, 2691, 'attending', '2024-07-20 06:56:06', '2025-12-17 19:46:30', 'dxKzV994', '7324076'), - (35, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxKzV994', '7324078'), - (35, 2694, 'maybe', '2024-08-10 14:14:39', '2025-12-17 19:46:31', 'dxKzV994', '7324079'), - (35, 2695, 'attending', '2024-08-16 15:14:06', '2025-12-17 19:46:31', 'dxKzV994', '7324080'), - (35, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxKzV994', '7324082'), - (35, 2698, 'attending', '2024-09-07 20:57:56', '2025-12-17 19:46:24', 'dxKzV994', '7324083'), - (35, 2716, 'attending', '2024-06-17 00:01:56', '2025-12-17 19:46:29', 'dxKzV994', '7329096'), - (35, 2718, 'not_attending', '2024-06-18 15:56:53', '2025-12-17 19:46:28', 'dxKzV994', '7330458'), - (35, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxKzV994', '7331457'), - (35, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxKzV994', '7356752'), - (35, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxKzV994', '7363643'), - (35, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxKzV994', '7368606'), - (35, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxKzV994', '7397462'), - (35, 2821, 'not_attending', '2024-10-06 00:14:27', '2025-12-17 19:46:26', 'dxKzV994', '7424275'), - (35, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxKzV994', '7424276'), - (35, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxKzV994', '7432751'), - (35, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxKzV994', '7432752'), - (35, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxKzV994', '7432753'), - (35, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxKzV994', '7432754'), - (35, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxKzV994', '7432755'), - (35, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxKzV994', '7432756'), - (35, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxKzV994', '7432758'), - (35, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxKzV994', '7432759'), - (35, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxKzV994', '7433834'), - (35, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxKzV994', '7470197'), - (35, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxKzV994', '7685613'), - (35, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxKzV994', '7688194'), - (35, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxKzV994', '7688196'), - (35, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxKzV994', '7688289'), - (35, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dxKzV994', '7692763'), - (35, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxKzV994', '7697552'), - (35, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxKzV994', '7699878'), - (35, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxKzV994', '7704043'), - (35, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxKzV994', '7712467'), - (35, 2925, 'maybe', '2024-12-12 02:16:54', '2025-12-17 19:46:21', 'dxKzV994', '7713584'), - (35, 2926, 'attending', '2024-12-07 01:06:32', '2025-12-17 19:46:21', 'dxKzV994', '7713585'), - (35, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxKzV994', '7713586'), - (35, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxKzV994', '7738518'), - (35, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxKzV994', '7750636'), - (35, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxKzV994', '7796540'), - (35, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxKzV994', '7796541'), - (35, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxKzV994', '7796542'), - (35, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxKzV994', '7825913'), - (35, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxKzV994', '7826209'), - (35, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxKzV994', '7834742'), - (35, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dxKzV994', '7842108'), - (35, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxKzV994', '7842902'), - (35, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxKzV994', '7842903'), - (35, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxKzV994', '7842904'), - (35, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxKzV994', '7842905'), - (35, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxKzV994', '7855719'), - (35, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxKzV994', '7860683'), - (35, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxKzV994', '7860684'), - (35, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxKzV994', '7866095'), - (35, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxKzV994', '7869170'), - (35, 3014, 'attending', '2025-04-05 21:24:35', '2025-12-17 19:46:20', 'dxKzV994', '7869185'), - (35, 3015, 'attending', '2025-04-20 02:08:43', '2025-12-17 19:46:20', 'dxKzV994', '7869186'), - (35, 3016, 'attending', '2025-04-16 15:01:19', '2025-12-17 19:46:20', 'dxKzV994', '7869187'), - (35, 3017, 'attending', '2025-03-22 19:12:27', '2025-12-17 19:46:19', 'dxKzV994', '7869188'), - (35, 3018, 'attending', '2025-04-12 20:10:41', '2025-12-17 19:46:20', 'dxKzV994', '7869189'), - (35, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxKzV994', '7869201'), - (35, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxKzV994', '7877465'), - (35, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dxKzV994', '7878570'), - (35, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxKzV994', '7888250'), - (35, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxKzV994', '7904777'), - (35, 3095, 'not_attending', '2025-05-02 13:20:12', '2025-12-17 19:46:20', 'dxKzV994', '8342293'), - (35, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxKzV994', '8349164'), - (35, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxKzV994', '8349545'), - (35, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxKzV994', '8353584'), - (35, 3131, 'attending', '2025-05-15 03:07:33', '2025-12-17 19:46:21', 'dxKzV994', '8368028'), - (35, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxKzV994', '8368029'), - (35, 3133, 'attending', '2025-05-31 21:50:48', '2025-12-17 19:46:14', 'dxKzV994', '8368030'), - (35, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxKzV994', '8388462'), - (35, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxKzV994', '8400273'), - (35, 3154, 'attending', '2025-06-26 22:36:27', '2025-12-17 19:46:15', 'dxKzV994', '8400274'), - (35, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxKzV994', '8400275'), - (35, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dxKzV994', '8400276'), - (35, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxKzV994', '8404977'), - (35, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxKzV994', '8430783'), - (35, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxKzV994', '8430784'), - (35, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxKzV994', '8430799'), - (35, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxKzV994', '8430800'), - (35, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxKzV994', '8430801'), - (35, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxKzV994', '8438709'), - (35, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxKzV994', '8457738'), - (35, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxKzV994', '8459566'), - (35, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxKzV994', '8459567'), - (35, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxKzV994', '8461032'), - (35, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxKzV994', '8477877'), - (35, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxKzV994', '8485688'), - (35, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxKzV994', '8490587'), - (35, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxKzV994', '8493552'), - (35, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxKzV994', '8493553'), - (35, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxKzV994', '8493554'), - (35, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxKzV994', '8493555'), - (35, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxKzV994', '8493556'), - (35, 3241, 'maybe', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxKzV994', '8493557'), - (35, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxKzV994', '8493558'), - (35, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxKzV994', '8493559'), - (35, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxKzV994', '8493560'), - (35, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxKzV994', '8493561'), - (35, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxKzV994', '8493572'), - (35, 3275, 'not_attending', '2025-09-20 22:37:17', '2025-12-17 19:46:12', 'dxKzV994', '8527786'), - (35, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxKzV994', '8540725'), - (35, 3295, 'not_attending', '2025-10-30 21:52:22', '2025-12-17 19:46:14', 'dxKzV994', '8547541'), - (35, 3300, 'maybe', '2025-10-30 21:52:33', '2025-12-17 19:46:14', 'dxKzV994', '8549145'), - (35, 3302, 'attending', '2025-11-13 01:58:51', '2025-12-17 19:46:14', 'dxKzV994', '8550022'), - (35, 3304, 'attending', '2025-11-16 04:15:56', '2025-12-17 19:46:14', 'dxKzV994', '8550024'), - (35, 3305, 'attending', '2025-11-25 02:18:49', '2025-12-17 19:46:11', 'dxKzV994', '8550025'), - (35, 3306, 'attending', '2025-12-12 20:32:26', '2025-12-17 19:46:11', 'dxKzV994', '8550026'), - (35, 3307, 'not_attending', '2025-12-18 02:21:16', '2025-12-18 02:21:16', NULL, NULL), - (35, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxKzV994', '8555421'), - (36, 3242, 'not_attending', '2025-10-25 16:35:59', '2025-12-17 19:46:14', '4EKLYLXm', '8493558'), - (36, 3243, 'attending', '2025-10-15 22:00:26', '2025-12-17 19:46:14', '4EKLYLXm', '8493559'), - (36, 3289, 'maybe', '2025-10-23 20:00:28', '2025-12-17 19:46:14', '4EKLYLXm', '8542939'), - (36, 3298, 'not_attending', '2025-10-21 21:28:55', '2025-12-17 19:46:14', '4EKLYLXm', '8548211'), - (36, 3300, 'attending', '2025-11-08 19:43:20', '2025-12-17 19:46:14', '4EKLYLXm', '8549145'), - (36, 3302, 'attending', '2025-11-12 22:45:24', '2025-12-17 19:46:14', '4EKLYLXm', '8550022'), - (36, 3304, 'not_attending', '2025-11-18 02:36:32', '2025-12-17 19:46:14', '4EKLYLXm', '8550024'), - (36, 3316, 'attending', '2025-11-05 04:37:28', '2025-12-17 19:46:14', '4EKLYLXm', '8552493'), - (36, 3321, 'attending', '2025-11-14 01:03:34', '2025-12-17 19:46:14', '4EKLYLXm', '8555418'), - (36, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4EKLYLXm', '8555421'), - (37, 2806, 'attending', '2024-09-17 17:38:00', '2025-12-17 19:46:25', 'dJxQEoqA', '7404888'), - (37, 2821, 'attending', '2024-09-19 18:38:06', '2025-12-17 19:46:26', 'dJxQEoqA', '7424275'), - (37, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJxQEoqA', '7424276'), - (37, 2825, 'attending', '2024-09-17 17:38:09', '2025-12-17 19:46:25', 'dJxQEoqA', '7432752'), - (37, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', 'dJxQEoqA', '7432753'), - (37, 2827, 'attending', '2024-09-29 01:56:56', '2025-12-17 19:46:26', 'dJxQEoqA', '7432754'), - (37, 2828, 'attending', '2024-10-13 22:29:18', '2025-12-17 19:46:26', 'dJxQEoqA', '7432755'), - (37, 2829, 'attending', '2024-10-13 22:29:20', '2025-12-17 19:46:26', 'dJxQEoqA', '7432756'), - (37, 2830, 'not_attending', '2024-10-13 22:29:22', '2025-12-17 19:46:26', 'dJxQEoqA', '7432758'), - (37, 2831, 'attending', '2024-10-13 22:29:14', '2025-12-17 19:46:26', 'dJxQEoqA', '7432759'), - (37, 2838, 'not_attending', '2024-09-27 17:51:34', '2025-12-17 19:46:25', 'dJxQEoqA', '7439182'), - (37, 2839, 'maybe', '2024-09-21 22:23:57', '2025-12-17 19:46:25', 'dJxQEoqA', '7439262'), - (37, 2841, 'maybe', '2024-09-17 17:36:04', '2025-12-17 19:46:25', 'dJxQEoqA', '7444444'), - (37, 2843, 'maybe', '2024-09-19 22:43:30', '2025-12-17 19:46:25', 'dJxQEoqA', '7450219'), - (37, 2849, 'attending', '2024-09-29 01:56:08', '2025-12-17 19:46:25', 'dJxQEoqA', '7457114'), - (37, 2850, 'maybe', '2024-09-29 01:56:48', '2025-12-17 19:46:25', 'dJxQEoqA', '7457153'), - (37, 2855, 'maybe', '2024-09-30 18:02:18', '2025-12-17 19:46:26', 'dJxQEoqA', '7469385'), - (37, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJxQEoqA', '7470197'), - (37, 2863, 'maybe', '2024-10-01 05:48:18', '2025-12-17 19:46:26', 'dJxQEoqA', '7470275'), - (37, 2868, 'maybe', '2024-10-06 00:50:41', '2025-12-17 19:46:26', 'dJxQEoqA', '7474506'), - (37, 2874, 'maybe', '2024-10-12 22:44:13', '2025-12-17 19:46:26', 'dJxQEoqA', '7482239'), - (37, 2896, 'attending', '2024-11-11 20:30:58', '2025-12-17 19:46:27', 'dJxQEoqA', '7683647'), - (37, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dJxQEoqA', '7685613'), - (37, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJxQEoqA', '7688194'), - (37, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJxQEoqA', '7688196'), - (37, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJxQEoqA', '7688289'), - (37, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dJxQEoqA', '7692763'), - (37, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dJxQEoqA', '7697552'), - (37, 2916, 'maybe', '2024-11-18 03:34:26', '2025-12-17 19:46:27', 'dJxQEoqA', '7699006'), - (37, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dJxQEoqA', '7699878'), - (37, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dJxQEoqA', '7704043'), - (37, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dJxQEoqA', '7712467'), - (37, 2926, 'attending', '2024-12-02 02:25:03', '2025-12-17 19:46:21', 'dJxQEoqA', '7713585'), - (37, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dJxQEoqA', '7713586'), - (37, 2929, 'maybe', '2024-12-08 04:19:19', '2025-12-17 19:46:21', 'dJxQEoqA', '7723465'), - (37, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'dJxQEoqA', '7738518'), - (37, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dJxQEoqA', '7750636'), - (37, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dJxQEoqA', '7796540'), - (37, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dJxQEoqA', '7796541'), - (37, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dJxQEoqA', '7796542'), - (37, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dJxQEoqA', '7825913'), - (37, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dJxQEoqA', '7826209'), - (37, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dJxQEoqA', '7834742'), - (37, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dJxQEoqA', '7842108'), - (37, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dJxQEoqA', '7842902'), - (37, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dJxQEoqA', '7842903'), - (37, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dJxQEoqA', '7842904'), - (37, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dJxQEoqA', '7842905'), - (37, 3000, 'attending', '2025-02-21 00:22:30', '2025-12-17 19:46:24', 'dJxQEoqA', '7852541'), - (37, 3001, 'attending', '2025-02-21 00:22:19', '2025-12-17 19:46:24', 'dJxQEoqA', '7854184'), - (37, 3003, 'maybe', '2025-02-20 21:10:40', '2025-12-17 19:46:24', 'dJxQEoqA', '7854589'), - (37, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dJxQEoqA', '7855719'), - (37, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dJxQEoqA', '7860683'), - (37, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dJxQEoqA', '7860684'), - (37, 3009, 'attending', '2025-03-02 07:12:43', '2025-12-17 19:46:18', 'dJxQEoqA', '7864019'), - (37, 3010, 'attending', '2025-03-07 23:18:25', '2025-12-17 19:46:18', 'dJxQEoqA', '7864879'), - (37, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dJxQEoqA', '7866095'), - (37, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dJxQEoqA', '7869170'), - (37, 3014, 'attending', '2025-04-01 15:24:31', '2025-12-17 19:46:19', 'dJxQEoqA', '7869185'), - (37, 3015, 'attending', '2025-04-04 20:22:41', '2025-12-17 19:46:20', 'dJxQEoqA', '7869186'), - (37, 3016, 'attending', '2025-04-04 20:22:40', '2025-12-17 19:46:20', 'dJxQEoqA', '7869187'), - (37, 3017, 'attending', '2025-03-25 02:08:28', '2025-12-17 19:46:19', 'dJxQEoqA', '7869188'), - (37, 3018, 'attending', '2025-03-31 02:59:26', '2025-12-17 19:46:20', 'dJxQEoqA', '7869189'), - (37, 3028, 'attending', '2025-04-07 15:22:09', '2025-12-17 19:46:20', 'dJxQEoqA', '7869199'), - (37, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dJxQEoqA', '7869201'), - (37, 3031, 'maybe', '2025-03-07 05:14:48', '2025-12-17 19:46:18', 'dJxQEoqA', '7875371'), - (37, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dJxQEoqA', '7877465'), - (37, 3036, 'maybe', '2025-03-13 20:50:50', '2025-12-17 19:46:19', 'dJxQEoqA', '7880952'), - (37, 3039, 'maybe', '2025-03-19 03:34:28', '2025-12-17 19:46:19', 'dJxQEoqA', '7881992'), - (37, 3041, 'maybe', '2025-03-14 03:08:21', '2025-12-17 19:46:19', 'dJxQEoqA', '7881995'), - (37, 3045, 'maybe', '2025-04-01 15:24:26', '2025-12-17 19:46:19', 'dJxQEoqA', '7882691'), - (37, 3051, 'maybe', '2025-03-18 22:07:16', '2025-12-17 19:46:19', 'dJxQEoqA', '7884023'), - (37, 3054, 'maybe', '2025-03-18 20:38:47', '2025-12-17 19:46:19', 'dJxQEoqA', '7884168'), - (37, 3055, 'maybe', '2025-03-26 22:36:49', '2025-12-17 19:46:19', 'dJxQEoqA', '7888118'), - (37, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dJxQEoqA', '7888250'), - (37, 3060, 'attending', '2025-03-29 00:31:54', '2025-12-17 19:46:19', 'dJxQEoqA', '7892589'), - (37, 3061, 'attending', '2025-03-27 15:18:01', '2025-12-17 19:46:19', 'dJxQEoqA', '7892590'), - (37, 3063, 'attending', '2025-03-29 00:46:23', '2025-12-17 19:46:19', 'dJxQEoqA', '7892801'), - (37, 3065, 'attending', '2025-03-29 00:37:32', '2025-12-17 19:46:19', 'dJxQEoqA', '7893676'), - (37, 3067, 'maybe', '2025-03-31 03:00:16', '2025-12-17 19:46:19', 'dJxQEoqA', '7894745'), - (37, 3070, 'attending', '2025-03-30 23:33:39', '2025-12-17 19:46:20', 'dJxQEoqA', '7894829'), - (37, 3071, 'maybe', '2025-04-01 07:09:56', '2025-12-17 19:46:19', 'dJxQEoqA', '7895429'), - (37, 3072, 'attending', '2025-04-03 16:43:28', '2025-12-17 19:46:19', 'dJxQEoqA', '7895449'), - (37, 3074, 'maybe', '2025-04-04 20:22:04', '2025-12-17 19:46:19', 'dJxQEoqA', '7897784'), - (37, 3075, 'maybe', '2025-04-09 22:14:43', '2025-12-17 19:46:20', 'dJxQEoqA', '7898896'), - (37, 3077, 'attending', '2025-04-05 22:08:41', '2025-12-17 19:46:20', 'dJxQEoqA', '7899510'), - (37, 3080, 'attending', '2025-04-09 22:14:10', '2025-12-17 19:46:20', 'dJxQEoqA', '7901441'), - (37, 3081, 'maybe', '2025-04-09 00:22:02', '2025-12-17 19:46:20', 'dJxQEoqA', '7902801'), - (37, 3084, 'attending', '2025-04-09 00:21:45', '2025-12-17 19:46:20', 'dJxQEoqA', '7903687'), - (37, 3085, 'attending', '2025-04-12 14:47:17', '2025-12-17 19:46:20', 'dJxQEoqA', '7903688'), - (37, 3087, 'attending', '2025-04-09 23:15:18', '2025-12-17 19:46:20', 'dJxQEoqA', '7903856'), - (37, 3088, 'attending', '2025-06-09 20:32:12', '2025-12-17 19:46:15', 'dJxQEoqA', '7904777'), - (37, 3089, 'maybe', '2025-04-14 17:02:45', '2025-12-17 19:46:20', 'dJxQEoqA', '7911208'), - (37, 3090, 'attending', '2025-04-16 23:02:35', '2025-12-17 19:46:20', 'dJxQEoqA', '7914315'), - (37, 3091, 'not_attending', '2025-04-17 21:52:28', '2025-12-17 19:46:20', 'dJxQEoqA', '8340289'), - (37, 3094, 'attending', '2025-04-22 22:14:26', '2025-12-17 19:46:21', 'dJxQEoqA', '8342292'), - (37, 3095, 'attending', '2025-04-28 14:35:13', '2025-12-17 19:46:20', 'dJxQEoqA', '8342293'), - (37, 3096, 'maybe', '2025-04-21 03:33:26', '2025-12-17 19:46:20', 'dJxQEoqA', '8342987'), - (37, 3097, 'maybe', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dJxQEoqA', '8342993'), - (37, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dJxQEoqA', '8349164'), - (37, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dJxQEoqA', '8349545'), - (37, 3106, 'attending', '2025-04-27 05:18:32', '2025-12-17 19:46:20', 'dJxQEoqA', '8349552'), - (37, 3107, 'maybe', '2025-04-28 14:35:05', '2025-12-17 19:46:20', 'dJxQEoqA', '8350107'), - (37, 3110, 'attending', '2025-04-29 19:54:07', '2025-12-17 19:46:20', 'dJxQEoqA', '8353484'), - (37, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dJxQEoqA', '8353584'), - (37, 3116, 'attending', '2025-05-03 18:35:21', '2025-12-17 19:46:20', 'dJxQEoqA', '8358252'), - (37, 3119, 'not_attending', '2025-05-05 20:54:14', '2025-12-17 19:46:21', 'dJxQEoqA', '8360035'), - (37, 3122, 'attending', '2025-05-11 02:35:58', '2025-12-17 19:46:21', 'dJxQEoqA', '8362978'), - (37, 3124, 'attending', '2025-05-11 02:35:46', '2025-12-17 19:46:21', 'dJxQEoqA', '8363566'), - (37, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dJxQEoqA', '8368028'), - (37, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dJxQEoqA', '8368029'), - (37, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dJxQEoqA', '8388462'), - (37, 3150, 'attending', '2025-06-05 22:37:53', '2025-12-17 19:46:15', 'dJxQEoqA', '8393174'), - (37, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dJxQEoqA', '8400273'), - (37, 3154, 'maybe', '2025-06-28 01:12:22', '2025-12-17 19:46:15', 'dJxQEoqA', '8400274'), - (37, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dJxQEoqA', '8400275'), - (37, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dJxQEoqA', '8400276'), - (37, 3160, 'maybe', '2025-06-05 22:36:51', '2025-12-17 19:46:15', 'dJxQEoqA', '8401411'), - (37, 3168, 'maybe', '2025-06-18 04:57:04', '2025-12-17 19:46:15', 'dJxQEoqA', '8404522'), - (37, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dJxQEoqA', '8404977'), - (37, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dJxQEoqA', '8430783'), - (37, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dJxQEoqA', '8430784'), - (37, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dJxQEoqA', '8430799'), - (37, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dJxQEoqA', '8430800'), - (37, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dJxQEoqA', '8430801'), - (37, 3188, 'maybe', '2025-07-13 01:22:40', '2025-12-17 19:46:17', 'dJxQEoqA', '8438709'), - (37, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dJxQEoqA', '8457738'), - (37, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dJxQEoqA', '8459566'), - (37, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dJxQEoqA', '8459567'), - (37, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dJxQEoqA', '8461032'), - (37, 3214, 'attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dJxQEoqA', '8477877'), - (37, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dJxQEoqA', '8485688'), - (37, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dJxQEoqA', '8490587'), - (37, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dJxQEoqA', '8493552'), - (37, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dJxQEoqA', '8493553'), - (37, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dJxQEoqA', '8493554'), - (37, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dJxQEoqA', '8493555'), - (37, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dJxQEoqA', '8493556'), - (37, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dJxQEoqA', '8493557'), - (37, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dJxQEoqA', '8493558'), - (37, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dJxQEoqA', '8493559'), - (37, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dJxQEoqA', '8493560'), - (37, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dJxQEoqA', '8493561'), - (37, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dJxQEoqA', '8493572'), - (37, 3255, 'attending', '2025-08-21 21:17:00', '2025-12-17 19:46:18', 'dJxQEoqA', '8495106'), - (37, 3259, 'maybe', '2025-09-09 20:57:35', '2025-12-17 19:46:12', 'dJxQEoqA', '8512638'), - (37, 3262, 'maybe', '2025-09-09 20:16:10', '2025-12-17 19:46:12', 'dJxQEoqA', '8512642'), - (37, 3263, 'maybe', '2025-09-09 20:57:14', '2025-12-17 19:46:12', 'dJxQEoqA', '8514576'), - (37, 3272, 'attending', '2025-09-17 22:55:01', '2025-12-17 19:46:12', 'dJxQEoqA', '8524068'), - (37, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dJxQEoqA', '8540725'), - (37, 3293, 'maybe', '2025-10-22 07:21:27', '2025-12-17 19:46:14', 'dJxQEoqA', '8543836'), - (37, 3295, 'attending', '2025-10-28 20:58:32', '2025-12-17 19:46:14', 'dJxQEoqA', '8547541'), - (37, 3300, 'attending', '2025-11-03 10:38:04', '2025-12-17 19:46:14', 'dJxQEoqA', '8549145'), - (37, 3302, 'attending', '2025-11-11 00:35:24', '2025-12-17 19:46:14', 'dJxQEoqA', '8550022'), - (37, 3304, 'maybe', '2025-11-11 00:35:25', '2025-12-17 19:46:14', 'dJxQEoqA', '8550024'), - (37, 3305, 'attending', '2025-12-02 12:01:39', '2025-12-17 19:46:11', 'dJxQEoqA', '8550025'), - (37, 3313, 'attending', '2025-10-30 03:18:25', '2025-12-17 19:46:14', 'dJxQEoqA', '8550896'), - (37, 3317, 'attending', '2025-11-06 00:20:17', '2025-12-17 19:46:14', 'dJxQEoqA', '8552943'), - (37, 3319, 'maybe', '2025-11-11 00:46:34', '2025-12-17 19:46:14', 'dJxQEoqA', '8553114'), - (37, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dJxQEoqA', '8555421'), - (37, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'dJxQEoqA', '8555522'), - (37, 3324, 'attending', '2025-11-18 00:04:04', '2025-12-17 19:46:14', 'dJxQEoqA', '8556406'), - (37, 3331, 'attending', '2025-12-02 02:42:36', '2025-12-17 19:46:11', 'dJxQEoqA', '8562166'), - (37, 3335, 'maybe', '2025-12-07 20:33:36', '2025-12-17 19:46:11', 'dJxQEoqA', '8563247'), - (37, 3336, 'maybe', '2025-12-07 03:57:45', '2025-12-17 19:46:11', 'dJxQEoqA', '8563248'), - (37, 3337, 'attending', '2025-12-07 03:57:32', '2025-12-17 19:46:11', 'dJxQEoqA', '8563315'), - (37, 3338, 'attending', '2025-12-06 22:55:49', '2025-12-17 19:46:11', 'dJxQEoqA', '8563316'), - (38, 4, 'attending', '2020-03-21 22:32:11', '2025-12-17 19:47:58', 'VmyeBRym', '2958046'), - (38, 5, 'attending', '2020-03-21 22:31:56', '2025-12-17 19:47:58', 'VmyeBRym', '2958047'), - (38, 10, 'attending', '2020-03-28 21:45:27', '2025-12-17 19:47:56', 'VmyeBRym', '2958053'), - (38, 16, 'attending', '2020-03-27 22:58:15', '2025-12-17 19:47:56', 'VmyeBRym', '2958060'), - (38, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'VmyeBRym', '2961309'), - (38, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'VmyeBRym', '2961895'), - (38, 36, 'attending', '2020-04-05 00:59:26', '2025-12-17 19:47:57', 'VmyeBRym', '2969208'), - (38, 37, 'attending', '2020-03-31 12:38:43', '2025-12-17 19:47:56', 'VmyeBRym', '2969680'), - (38, 39, 'attending', '2020-04-05 00:59:20', '2025-12-17 19:47:56', 'VmyeBRym', '2970637'), - (38, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'VmyeBRym', '2971546'), - (38, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'VmyeBRym', '2974534'), - (38, 46, 'attending', '2020-04-11 21:29:32', '2025-12-17 19:47:57', 'VmyeBRym', '2974955'), - (38, 55, 'maybe', '2020-04-06 20:58:46', '2025-12-17 19:47:57', 'VmyeBRym', '2975384'), - (38, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'VmyeBRym', '2975385'), - (38, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'VmyeBRym', '2976575'), - (38, 60, 'maybe', '2020-04-28 22:28:53', '2025-12-17 19:47:57', 'VmyeBRym', '2977129'), - (38, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'VmyeBRym', '2977343'), - (38, 71, 'attending', '2020-04-11 21:29:33', '2025-12-17 19:47:57', 'VmyeBRym', '2977526'), - (38, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'VmyeBRym', '2977812'), - (38, 73, 'attending', '2020-04-17 23:21:38', '2025-12-17 19:47:57', 'VmyeBRym', '2977931'), - (38, 74, 'attending', '2020-04-17 23:21:45', '2025-12-17 19:47:57', 'VmyeBRym', '2978244'), - (38, 75, 'attending', '2020-04-25 17:15:01', '2025-12-17 19:47:57', 'VmyeBRym', '2978245'), - (38, 76, 'attending', '2020-05-02 19:19:07', '2025-12-17 19:47:57', 'VmyeBRym', '2978246'), - (38, 77, 'attending', '2020-05-09 17:59:57', '2025-12-17 19:47:57', 'VmyeBRym', '2978247'), - (38, 78, 'attending', '2020-05-22 16:37:20', '2025-12-17 19:47:57', 'VmyeBRym', '2978249'), - (38, 79, 'attending', '2020-05-28 14:00:11', '2025-12-17 19:47:57', 'VmyeBRym', '2978250'), - (38, 80, 'attending', '2020-06-06 22:45:28', '2025-12-17 19:47:58', 'VmyeBRym', '2978251'), - (38, 81, 'attending', '2020-06-13 21:45:51', '2025-12-17 19:47:58', 'VmyeBRym', '2978252'), - (38, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'VmyeBRym', '2978433'), - (38, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'VmyeBRym', '2978438'), - (38, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'VmyeBRym', '2980871'), - (38, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'VmyeBRym', '2981388'), - (38, 88, 'maybe', '2020-04-17 23:21:51', '2025-12-17 19:47:57', 'VmyeBRym', '2982603'), - (38, 89, 'attending', '2020-05-02 19:19:09', '2025-12-17 19:47:57', 'VmyeBRym', '2982604'), - (38, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'VmyeBRym', '2986743'), - (38, 104, 'attending', '2020-04-24 14:40:41', '2025-12-17 19:47:57', 'VmyeBRym', '2991471'), - (38, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'VmyeBRym', '2993501'), - (38, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'VmyeBRym', '2994480'), - (38, 115, 'attending', '2020-05-15 17:11:58', '2025-12-17 19:47:57', 'VmyeBRym', '3001217'), - (38, 119, 'maybe', '2020-05-09 18:00:02', '2025-12-17 19:47:57', 'VmyeBRym', '3015486'), - (38, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'VmyeBRym', '3023063'), - (38, 125, 'maybe', '2020-05-22 16:37:10', '2025-12-17 19:47:57', 'VmyeBRym', '3023987'), - (38, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'VmyeBRym', '3034321'), - (38, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'VmyeBRym', '3035881'), - (38, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'VmyeBRym', '3049983'), - (38, 144, 'maybe', '2020-06-06 18:48:45', '2025-12-17 19:47:58', 'VmyeBRym', '3058679'), - (38, 145, 'attending', '2020-06-13 21:45:49', '2025-12-17 19:47:58', 'VmyeBRym', '3058680'), - (38, 147, 'not_attending', '2020-08-19 19:05:07', '2025-12-17 19:47:56', 'VmyeBRym', '3058684'), - (38, 148, 'attending', '2020-07-11 19:45:49', '2025-12-17 19:47:55', 'VmyeBRym', '3058685'), - (38, 151, 'maybe', '2020-08-29 00:45:14', '2025-12-17 19:47:56', 'VmyeBRym', '3058688'), - (38, 152, 'maybe', '2020-09-05 15:18:14', '2025-12-17 19:47:56', 'VmyeBRym', '3058689'), - (38, 158, 'attending', '2020-09-26 21:58:52', '2025-12-17 19:47:52', 'VmyeBRym', '3058695'), - (38, 159, 'maybe', '2020-10-03 21:51:29', '2025-12-17 19:47:52', 'VmyeBRym', '3058696'), - (38, 160, 'maybe', '2020-10-24 16:23:39', '2025-12-17 19:47:52', 'VmyeBRym', '3058697'), - (38, 161, 'maybe', '2020-10-09 22:42:11', '2025-12-17 19:47:52', 'VmyeBRym', '3058698'), - (38, 162, 'maybe', '2020-10-17 16:26:45', '2025-12-17 19:47:52', 'VmyeBRym', '3058699'), - (38, 165, 'attending', '2020-11-07 23:47:35', '2025-12-17 19:47:53', 'VmyeBRym', '3058702'), - (38, 167, 'maybe', '2020-11-28 17:51:19', '2025-12-17 19:47:54', 'VmyeBRym', '3058705'), - (38, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'VmyeBRym', '3058959'), - (38, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'VmyeBRym', '3067093'), - (38, 182, 'maybe', '2020-06-27 02:53:35', '2025-12-17 19:47:55', 'VmyeBRym', '3074514'), - (38, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'VmyeBRym', '3075228'), - (38, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'VmyeBRym', '3075456'), - (38, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'VmyeBRym', '3083791'), - (38, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'VmyeBRym', '3085151'), - (38, 190, 'not_attending', '2020-07-04 21:35:50', '2025-12-17 19:47:55', 'VmyeBRym', '3087258'), - (38, 191, 'attending', '2020-07-11 19:45:50', '2025-12-17 19:47:55', 'VmyeBRym', '3087259'), - (38, 192, 'maybe', '2020-07-13 03:31:51', '2025-12-17 19:47:55', 'VmyeBRym', '3087260'), - (38, 194, 'maybe', '2020-08-01 20:31:44', '2025-12-17 19:47:55', 'VmyeBRym', '3087262'), - (38, 196, 'attending', '2020-08-15 19:13:05', '2025-12-17 19:47:56', 'VmyeBRym', '3087265'), - (38, 197, 'not_attending', '2020-08-19 00:44:16', '2025-12-17 19:47:56', 'VmyeBRym', '3087266'), - (38, 198, 'attending', '2020-08-29 22:06:54', '2025-12-17 19:47:56', 'VmyeBRym', '3087267'), - (38, 199, 'attending', '2020-09-04 03:53:41', '2025-12-17 19:47:56', 'VmyeBRym', '3087268'), - (38, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'VmyeBRym', '3088653'), - (38, 203, 'attending', '2020-06-22 21:36:30', '2025-12-17 19:47:58', 'VmyeBRym', '3091624'), - (38, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'VmyeBRym', '3106813'), - (38, 221, 'attending', '2020-09-17 23:29:15', '2025-12-17 19:47:56', 'VmyeBRym', '3129265'), - (38, 223, 'attending', '2020-09-13 03:29:07', '2025-12-17 19:47:56', 'VmyeBRym', '3129980'), - (38, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'VmyeBRym', '3132817'), - (38, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'VmyeBRym', '3132820'), - (38, 245, 'attending', '2020-12-02 04:38:19', '2025-12-17 19:47:54', 'VmyeBRym', '3149476'), - (38, 258, 'attending', '2021-06-01 15:04:24', '2025-12-17 19:47:47', 'VmyeBRym', '3149489'), - (38, 260, 'attending', '2021-06-15 23:22:51', '2025-12-17 19:47:47', 'VmyeBRym', '3149491'), - (38, 262, 'attending', '2021-06-29 21:06:32', '2025-12-17 19:47:38', 'VmyeBRym', '3149493'), - (38, 268, 'attending', '2020-07-28 22:18:31', '2025-12-17 19:47:55', 'VmyeBRym', '3153060'), - (38, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'VmyeBRym', '3155321'), - (38, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'VmyeBRym', '3162006'), - (38, 275, 'attending', '2020-08-03 20:02:43', '2025-12-17 19:47:56', 'VmyeBRym', '3163405'), - (38, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'VmyeBRym', '3163442'), - (38, 281, 'attending', '2020-08-09 03:05:58', '2025-12-17 19:47:56', 'VmyeBRym', '3166945'), - (38, 293, 'not_attending', '2020-08-19 19:04:23', '2025-12-17 19:47:56', 'VmyeBRym', '3172832'), - (38, 294, 'maybe', '2020-08-26 23:13:59', '2025-12-17 19:47:56', 'VmyeBRym', '3172833'), - (38, 295, 'attending', '2020-09-02 23:56:24', '2025-12-17 19:47:56', 'VmyeBRym', '3172834'), - (38, 296, 'attending', '2020-09-12 03:33:10', '2025-12-17 19:47:56', 'VmyeBRym', '3172876'), - (38, 300, 'attending', '2020-08-12 22:42:39', '2025-12-17 19:47:56', 'VmyeBRym', '3177986'), - (38, 304, 'maybe', '2020-09-08 02:20:50', '2025-12-17 19:47:56', 'VmyeBRym', '3178916'), - (38, 305, 'not_attending', '2020-08-17 14:13:36', '2025-12-17 19:47:56', 'VmyeBRym', '3179555'), - (38, 311, 'maybe', '2020-09-19 14:05:35', '2025-12-17 19:47:56', 'VmyeBRym', '3186057'), - (38, 316, 'attending', '2020-08-26 02:06:59', '2025-12-17 19:47:56', 'VmyeBRym', '3191519'), - (38, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'VmyeBRym', '3191735'), - (38, 319, 'not_attending', '2020-08-31 22:48:18', '2025-12-17 19:47:56', 'VmyeBRym', '3194179'), - (38, 334, 'not_attending', '2020-10-05 14:30:16', '2025-12-17 19:47:52', 'VmyeBRym', '3199784'), - (38, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'VmyeBRym', '3200209'), - (38, 337, 'attending', '2020-09-10 00:32:15', '2025-12-17 19:47:56', 'VmyeBRym', '3201771'), - (38, 339, 'maybe', '2020-09-10 00:32:19', '2025-12-17 19:47:56', 'VmyeBRym', '3204469'), - (38, 340, 'attending', '2020-09-19 02:58:27', '2025-12-17 19:47:56', 'VmyeBRym', '3204470'), - (38, 341, 'maybe', '2020-09-25 19:21:39', '2025-12-17 19:47:52', 'VmyeBRym', '3204471'), - (38, 342, 'attending', '2020-10-02 23:44:53', '2025-12-17 19:47:52', 'VmyeBRym', '3204472'), - (38, 353, 'attending', '2020-09-13 21:15:06', '2025-12-17 19:47:56', 'VmyeBRym', '3210789'), - (38, 354, 'attending', '2020-09-20 23:26:21', '2025-12-17 19:47:56', 'VmyeBRym', '3212570'), - (38, 355, 'attending', '2020-09-17 00:20:57', '2025-12-17 19:47:56', 'VmyeBRym', '3212571'), - (38, 356, 'maybe', '2020-09-23 22:37:56', '2025-12-17 19:47:51', 'VmyeBRym', '3212572'), - (38, 361, 'attending', '2020-09-14 20:28:10', '2025-12-17 19:47:56', 'VmyeBRym', '3213323'), - (38, 362, 'maybe', '2020-09-25 19:23:28', '2025-12-17 19:47:52', 'VmyeBRym', '3214207'), - (38, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'VmyeBRym', '3217037'), - (38, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'VmyeBRym', '3218510'), - (38, 370, 'not_attending', '2020-10-14 23:25:59', '2025-12-17 19:47:52', 'VmyeBRym', '3221405'), - (38, 379, 'maybe', '2020-10-04 19:02:47', '2025-12-17 19:47:52', 'VmyeBRym', '3226266'), - (38, 385, 'attending', '2020-10-03 20:48:21', '2025-12-17 19:47:52', 'VmyeBRym', '3228698'), - (38, 386, 'attending', '2020-10-11 05:23:10', '2025-12-17 19:47:52', 'VmyeBRym', '3228699'), - (38, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'VmyeBRym', '3228700'), - (38, 388, 'maybe', '2020-10-24 16:24:08', '2025-12-17 19:47:52', 'VmyeBRym', '3228701'), - (38, 393, 'attending', '2021-06-24 16:46:11', '2025-12-17 19:47:38', 'VmyeBRym', '3236448'), - (38, 408, 'attending', '2021-02-19 00:54:52', '2025-12-17 19:47:50', 'VmyeBRym', '3236466'), - (38, 410, 'not_attending', '2020-11-26 23:30:30', '2025-12-17 19:47:54', 'VmyeBRym', '3236469'), - (38, 414, 'not_attending', '2020-10-17 00:02:56', '2025-12-17 19:47:52', 'VmyeBRym', '3237277'), - (38, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'VmyeBRym', '3245751'), - (38, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'VmyeBRym', '3250232'), - (38, 427, 'attending', '2020-10-14 21:56:07', '2025-12-17 19:47:53', 'VmyeBRym', '3250233'), - (38, 429, 'attending', '2020-11-27 21:25:02', '2025-12-17 19:47:54', 'VmyeBRym', '3250523'), - (38, 438, 'attending', '2020-10-31 22:47:43', '2025-12-17 19:47:53', 'VmyeBRym', '3256163'), - (38, 440, 'attending', '2020-11-07 23:29:58', '2025-12-17 19:47:53', 'VmyeBRym', '3256168'), - (38, 441, 'attending', '2020-11-15 00:38:01', '2025-12-17 19:47:54', 'VmyeBRym', '3256169'), - (38, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:52', 'VmyeBRym', '3263578'), - (38, 445, 'maybe', '2020-11-12 23:41:37', '2025-12-17 19:47:54', 'VmyeBRym', '3266138'), - (38, 456, 'maybe', '2020-11-17 00:54:22', '2025-12-17 19:47:54', 'VmyeBRym', '3276428'), - (38, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'VmyeBRym', '3281467'), - (38, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'VmyeBRym', '3281470'), - (38, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'VmyeBRym', '3281829'), - (38, 468, 'attending', '2020-11-21 23:16:05', '2025-12-17 19:47:54', 'VmyeBRym', '3285413'), - (38, 469, 'maybe', '2020-11-28 17:51:26', '2025-12-17 19:47:54', 'VmyeBRym', '3285414'), - (38, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'VmyeBRym', '3297764'), - (38, 484, 'attending', '2020-11-20 00:27:28', '2025-12-17 19:47:54', 'VmyeBRym', '3297792'), - (38, 489, 'not_attending', '2020-11-27 21:24:42', '2025-12-17 19:47:54', 'VmyeBRym', '3313022'), - (38, 493, 'attending', '2020-12-05 04:01:51', '2025-12-17 19:47:54', 'VmyeBRym', '3313856'), - (38, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'VmyeBRym', '3314909'), - (38, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'VmyeBRym', '3314964'), - (38, 502, 'maybe', '2020-12-12 19:46:53', '2025-12-17 19:47:55', 'VmyeBRym', '3323365'), - (38, 513, 'attending', '2020-12-20 00:09:25', '2025-12-17 19:47:55', 'VmyeBRym', '3329383'), - (38, 526, 'maybe', '2021-01-01 19:15:28', '2025-12-17 19:47:48', 'VmyeBRym', '3351539'), - (38, 536, 'attending', '2021-01-06 17:07:10', '2025-12-17 19:47:48', 'VmyeBRym', '3386848'), - (38, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'VmyeBRym', '3389527'), - (38, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'VmyeBRym', '3396499'), - (38, 548, 'attending', '2021-01-16 22:20:14', '2025-12-17 19:47:48', 'VmyeBRym', '3403650'), - (38, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:48', 'VmyeBRym', '3406988'), - (38, 555, 'attending', '2021-01-23 20:08:31', '2025-12-17 19:47:49', 'VmyeBRym', '3416576'), - (38, 558, 'maybe', '2021-01-23 00:57:29', '2025-12-17 19:47:49', 'VmyeBRym', '3418925'), - (38, 567, 'maybe', '2021-01-30 22:20:17', '2025-12-17 19:47:50', 'VmyeBRym', '3428895'), - (38, 568, 'maybe', '2021-01-31 00:01:20', '2025-12-17 19:47:50', 'VmyeBRym', '3430267'), - (38, 569, 'not_attending', '2021-01-27 04:55:40', '2025-12-17 19:47:49', 'VmyeBRym', '3432673'), - (38, 579, 'attending', '2021-02-07 00:22:20', '2025-12-17 19:47:50', 'VmyeBRym', '3440978'), - (38, 580, 'not_attending', '2021-01-31 21:14:28', '2025-12-17 19:47:50', 'VmyeBRym', '3444240'), - (38, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'VmyeBRym', '3468125'), - (38, 602, 'maybe', '2021-02-12 14:50:39', '2025-12-17 19:47:50', 'VmyeBRym', '3470303'), - (38, 603, 'attending', '2021-02-20 20:06:05', '2025-12-17 19:47:50', 'VmyeBRym', '3470304'), - (38, 604, 'attending', '2021-02-27 23:10:00', '2025-12-17 19:47:50', 'VmyeBRym', '3470305'), - (38, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VmyeBRym', '3470991'), - (38, 609, 'maybe', '2021-02-12 14:50:36', '2025-12-17 19:47:50', 'VmyeBRym', '3480916'), - (38, 619, 'maybe', '2021-02-20 20:06:02', '2025-12-17 19:47:50', 'VmyeBRym', '3506310'), - (38, 621, 'maybe', '2021-03-06 13:54:41', '2025-12-17 19:47:51', 'VmyeBRym', '3517815'), - (38, 622, 'not_attending', '2021-03-13 19:00:58', '2025-12-17 19:47:51', 'VmyeBRym', '3517816'), - (38, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'VmyeBRym', '3523941'), - (38, 624, 'attending', '2021-02-27 23:09:59', '2025-12-17 19:47:50', 'VmyeBRym', '3528556'), - (38, 626, 'not_attending', '2021-03-06 13:54:35', '2025-12-17 19:47:51', 'VmyeBRym', '3533298'), - (38, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VmyeBRym', '3533850'), - (38, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VmyeBRym', '3536632'), - (38, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VmyeBRym', '3536656'), - (38, 641, 'maybe', '2021-04-02 16:47:58', '2025-12-17 19:47:44', 'VmyeBRym', '3539916'), - (38, 642, 'maybe', '2021-04-10 17:22:24', '2025-12-17 19:47:44', 'VmyeBRym', '3539917'), - (38, 643, 'maybe', '2021-04-17 18:17:11', '2025-12-17 19:47:45', 'VmyeBRym', '3539918'), - (38, 644, 'maybe', '2021-04-24 16:59:31', '2025-12-17 19:47:45', 'VmyeBRym', '3539919'), - (38, 645, 'not_attending', '2021-05-08 14:38:30', '2025-12-17 19:47:46', 'VmyeBRym', '3539920'), - (38, 646, 'attending', '2021-05-15 20:33:23', '2025-12-17 19:47:46', 'VmyeBRym', '3539921'), - (38, 647, 'maybe', '2021-05-22 16:37:19', '2025-12-17 19:47:46', 'VmyeBRym', '3539922'), - (38, 648, 'maybe', '2021-05-28 15:59:46', '2025-12-17 19:47:47', 'VmyeBRym', '3539923'), - (38, 649, 'attending', '2021-03-20 22:48:00', '2025-12-17 19:47:51', 'VmyeBRym', '3539927'), - (38, 657, 'maybe', '2021-04-17 18:17:14', '2025-12-17 19:47:45', 'VmyeBRym', '3547132'), - (38, 659, 'maybe', '2021-04-10 22:01:19', '2025-12-17 19:47:44', 'VmyeBRym', '3547135'), - (38, 662, 'maybe', '2021-04-24 16:59:23', '2025-12-17 19:47:45', 'VmyeBRym', '3547138'), - (38, 663, 'not_attending', '2021-05-05 01:08:47', '2025-12-17 19:47:46', 'VmyeBRym', '3547140'), - (38, 664, 'maybe', '2021-09-11 20:42:11', '2025-12-17 19:47:43', 'VmyeBRym', '3547142'), - (38, 666, 'attending', '2021-08-14 21:33:02', '2025-12-17 19:47:42', 'VmyeBRym', '3547144'), - (38, 667, 'maybe', '2021-08-28 20:33:49', '2025-12-17 19:47:42', 'VmyeBRym', '3547145'), - (38, 669, 'attending', '2021-06-26 21:19:30', '2025-12-17 19:47:38', 'VmyeBRym', '3547147'), - (38, 671, 'maybe', '2021-07-17 05:27:57', '2025-12-17 19:47:39', 'VmyeBRym', '3547149'), - (38, 672, 'maybe', '2021-05-22 16:37:23', '2025-12-17 19:47:46', 'VmyeBRym', '3547150'), - (38, 674, 'maybe', '2021-08-07 14:44:14', '2025-12-17 19:47:41', 'VmyeBRym', '3547152'), - (38, 675, 'not_attending', '2021-07-31 04:03:41', '2025-12-17 19:47:40', 'VmyeBRym', '3547153'), - (38, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VmyeBRym', '3582734'), - (38, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'VmyeBRym', '3583262'), - (38, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VmyeBRym', '3619523'), - (38, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'VmyeBRym', '3661369'), - (38, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VmyeBRym', '3674262'), - (38, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VmyeBRym', '3677402'), - (38, 756, 'attending', '2021-04-13 03:18:10', '2025-12-17 19:47:46', 'VmyeBRym', '3704795'), - (38, 774, 'not_attending', '2021-04-22 01:09:53', '2025-12-17 19:47:45', 'VmyeBRym', '3730212'), - (38, 783, 'attending', '2021-05-03 21:30:41', '2025-12-17 19:47:46', 'VmyeBRym', '3767471'), - (38, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'VmyeBRym', '3793156'), - (38, 822, 'not_attending', '2021-06-03 01:52:19', '2025-12-17 19:47:47', 'VmyeBRym', '3969986'), - (38, 823, 'not_attending', '2021-06-17 04:11:28', '2025-12-17 19:47:48', 'VmyeBRym', '3974109'), - (38, 827, 'not_attending', '2021-06-01 18:15:18', '2025-12-17 19:47:47', 'VmyeBRym', '3975311'), - (38, 828, 'attending', '2021-06-12 22:19:48', '2025-12-17 19:47:47', 'VmyeBRym', '3975312'), - (38, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VmyeBRym', '3994992'), - (38, 844, 'attending', '2021-06-23 22:56:27', '2025-12-17 19:47:38', 'VmyeBRym', '4014338'), - (38, 867, 'attending', '2021-06-26 21:19:32', '2025-12-17 19:47:38', 'VmyeBRym', '4021848'), - (38, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmyeBRym', '4136744'), - (38, 870, 'not_attending', '2021-07-02 23:04:20', '2025-12-17 19:47:38', 'VmyeBRym', '4136937'), - (38, 871, 'attending', '2021-07-10 16:55:28', '2025-12-17 19:47:39', 'VmyeBRym', '4136938'), - (38, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VmyeBRym', '4136947'), - (38, 879, 'maybe', '2021-06-28 21:02:28', '2025-12-17 19:47:38', 'VmyeBRym', '4147806'), - (38, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'VmyeBRym', '4210314'), - (38, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VmyeBRym', '4225444'), - (38, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VmyeBRym', '4239259'), - (38, 900, 'maybe', '2021-07-24 21:34:59', '2025-12-17 19:47:40', 'VmyeBRym', '4240316'), - (38, 901, 'maybe', '2021-07-31 04:02:55', '2025-12-17 19:47:40', 'VmyeBRym', '4240317'), - (38, 902, 'maybe', '2021-08-07 14:44:17', '2025-12-17 19:47:41', 'VmyeBRym', '4240318'), - (38, 903, 'attending', '2021-08-14 21:32:54', '2025-12-17 19:47:42', 'VmyeBRym', '4240320'), - (38, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VmyeBRym', '4250163'), - (38, 906, 'attending', '2021-07-11 16:56:08', '2025-12-17 19:47:39', 'VmyeBRym', '4253431'), - (38, 919, 'maybe', '2021-07-17 05:27:53', '2025-12-17 19:47:39', 'VmyeBRym', '4275957'), - (38, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'VmyeBRym', '4277819'), - (38, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'VmyeBRym', '4301723'), - (38, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VmyeBRym', '4302093'), - (38, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VmyeBRym', '4304151'), - (38, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'VmyeBRym', '4345519'), - (38, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VmyeBRym', '4356801'), - (38, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'VmyeBRym', '4358025'), - (38, 973, 'maybe', '2021-08-21 21:45:08', '2025-12-17 19:47:42', 'VmyeBRym', '4366186'), - (38, 974, 'maybe', '2021-08-28 04:11:23', '2025-12-17 19:47:42', 'VmyeBRym', '4366187'), - (38, 983, 'attending', '2021-08-20 19:44:22', '2025-12-17 19:47:42', 'VmyeBRym', '4390051'), - (38, 988, 'maybe', '2021-08-27 21:08:06', '2025-12-17 19:47:42', 'VmyeBRym', '4402823'), - (38, 990, 'maybe', '2021-09-04 06:36:37', '2025-12-17 19:47:43', 'VmyeBRym', '4420735'), - (38, 991, 'attending', '2021-09-11 20:42:06', '2025-12-17 19:47:43', 'VmyeBRym', '4420738'), - (38, 992, 'not_attending', '2021-09-10 05:26:03', '2025-12-17 19:47:33', 'VmyeBRym', '4420739'), - (38, 993, 'attending', '2021-09-25 17:54:49', '2025-12-17 19:47:34', 'VmyeBRym', '4420741'), - (38, 994, 'maybe', '2021-10-02 21:58:08', '2025-12-17 19:47:34', 'VmyeBRym', '4420742'), - (38, 995, 'maybe', '2021-10-09 16:15:32', '2025-12-17 19:47:34', 'VmyeBRym', '4420744'), - (38, 996, 'attending', '2021-10-16 19:48:25', '2025-12-17 19:47:35', 'VmyeBRym', '4420747'), - (38, 997, 'not_attending', '2021-10-17 02:31:09', '2025-12-17 19:47:35', 'VmyeBRym', '4420748'), - (38, 998, 'attending', '2021-10-30 22:29:32', '2025-12-17 19:47:36', 'VmyeBRym', '4420749'), - (38, 1001, 'attending', '2021-08-30 00:59:31', '2025-12-17 19:47:43', 'VmyeBRym', '4424687'), - (38, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VmyeBRym', '4461883'), - (38, 1038, 'not_attending', '2021-09-25 21:10:50', '2025-12-17 19:47:34', 'VmyeBRym', '4496603'), - (38, 1041, 'not_attending', '2021-11-28 21:03:03', '2025-12-17 19:47:37', 'VmyeBRym', '4496606'), - (38, 1043, 'not_attending', '2021-10-17 02:31:04', '2025-12-17 19:47:35', 'VmyeBRym', '4496608'), - (38, 1044, 'attending', '2021-11-06 19:41:34', '2025-12-17 19:47:36', 'VmyeBRym', '4496609'), - (38, 1045, 'maybe', '2021-10-30 04:53:17', '2025-12-17 19:47:36', 'VmyeBRym', '4496610'), - (38, 1046, 'maybe', '2021-10-16 19:48:23', '2025-12-17 19:47:35', 'VmyeBRym', '4496611'), - (38, 1047, 'maybe', '2021-10-09 16:15:29', '2025-12-17 19:47:34', 'VmyeBRym', '4496612'), - (38, 1049, 'attending', '2022-01-22 19:35:27', '2025-12-17 19:47:32', 'VmyeBRym', '4496614'), - (38, 1050, 'attending', '2022-01-29 20:51:38', '2025-12-17 19:47:32', 'VmyeBRym', '4496615'), - (38, 1051, 'maybe', '2022-02-05 07:04:25', '2025-12-17 19:47:32', 'VmyeBRym', '4496616'), - (38, 1053, 'maybe', '2022-02-19 18:02:50', '2025-12-17 19:47:32', 'VmyeBRym', '4496618'), - (38, 1054, 'attending', '2022-03-18 16:48:31', '2025-12-17 19:47:25', 'VmyeBRym', '4496619'), - (38, 1055, 'maybe', '2021-12-18 19:54:50', '2025-12-17 19:47:31', 'VmyeBRym', '4496621'), - (38, 1056, 'maybe', '2022-01-08 22:09:02', '2025-12-17 19:47:31', 'VmyeBRym', '4496622'), - (38, 1057, 'not_attending', '2021-11-17 21:11:08', '2025-12-17 19:47:37', 'VmyeBRym', '4496624'), - (38, 1058, 'maybe', '2022-02-26 17:37:05', '2025-12-17 19:47:33', 'VmyeBRym', '4496625'), - (38, 1059, 'attending', '2022-03-12 19:46:31', '2025-12-17 19:47:33', 'VmyeBRym', '4496626'), - (38, 1060, 'maybe', '2022-03-26 05:30:25', '2025-12-17 19:47:25', 'VmyeBRym', '4496627'), - (38, 1061, 'maybe', '2022-02-12 17:51:59', '2025-12-17 19:47:32', 'VmyeBRym', '4496628'), - (38, 1062, 'not_attending', '2022-03-01 17:56:20', '2025-12-17 19:47:33', 'VmyeBRym', '4496629'), - (38, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'VmyeBRym', '4508342'), - (38, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:34', 'VmyeBRym', '4568602'), - (38, 1087, 'not_attending', '2021-10-16 19:48:34', '2025-12-17 19:47:35', 'VmyeBRym', '4572153'), - (38, 1089, 'maybe', '2021-10-18 19:23:06', '2025-12-17 19:47:35', 'VmyeBRym', '4574712'), - (38, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VmyeBRym', '4585962'), - (38, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VmyeBRym', '4596356'), - (38, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VmyeBRym', '4598860'), - (38, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'VmyeBRym', '4598861'), - (38, 1099, 'attending', '2021-11-06 19:41:35', '2025-12-17 19:47:36', 'VmyeBRym', '4602797'), - (38, 1103, 'maybe', '2021-11-13 21:17:50', '2025-12-17 19:47:36', 'VmyeBRym', '4616350'), - (38, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'VmyeBRym', '4637896'), - (38, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'VmyeBRym', '4642994'), - (38, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'VmyeBRym', '4642995'), - (38, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'VmyeBRym', '4642996'), - (38, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'VmyeBRym', '4642997'), - (38, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'VmyeBRym', '4645687'), - (38, 1127, 'attending', '2021-12-12 05:22:06', '2025-12-17 19:47:38', 'VmyeBRym', '4645698'), - (38, 1128, 'attending', '2021-11-20 23:43:40', '2025-12-17 19:47:37', 'VmyeBRym', '4645704'), - (38, 1129, 'attending', '2021-11-27 21:58:50', '2025-12-17 19:47:37', 'VmyeBRym', '4645705'), - (38, 1130, 'maybe', '2021-12-04 19:58:40', '2025-12-17 19:47:37', 'VmyeBRym', '4658824'), - (38, 1131, 'attending', '2021-12-18 23:27:03', '2025-12-17 19:47:31', 'VmyeBRym', '4658825'), - (38, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VmyeBRym', '4668385'), - (38, 1138, 'attending', '2021-11-30 00:43:59', '2025-12-17 19:47:37', 'VmyeBRym', '4675407'), - (38, 1145, 'not_attending', '2021-12-09 23:25:24', '2025-12-17 19:47:38', 'VmyeBRym', '4691157'), - (38, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VmyeBRym', '4694407'), - (38, 1162, 'maybe', '2022-01-07 23:29:41', '2025-12-17 19:47:31', 'VmyeBRym', '4718771'), - (38, 1164, 'attending', '2022-01-03 16:06:06', '2025-12-17 19:47:31', 'VmyeBRym', '4724208'), - (38, 1165, 'attending', '2022-01-03 16:06:07', '2025-12-17 19:47:31', 'VmyeBRym', '4724210'), - (38, 1167, 'maybe', '2022-01-07 00:41:46', '2025-12-17 19:47:31', 'VmyeBRym', '4731015'), - (38, 1173, 'attending', '2022-01-08 22:08:59', '2025-12-17 19:47:31', 'VmyeBRym', '4736495'), - (38, 1174, 'attending', '2022-01-15 19:09:26', '2025-12-17 19:47:31', 'VmyeBRym', '4736496'), - (38, 1175, 'attending', '2022-01-22 19:35:28', '2025-12-17 19:47:32', 'VmyeBRym', '4736497'), - (38, 1176, 'attending', '2022-02-04 02:04:11', '2025-12-17 19:47:32', 'VmyeBRym', '4736498'), - (38, 1177, 'attending', '2022-02-12 17:52:02', '2025-12-17 19:47:32', 'VmyeBRym', '4736499'), - (38, 1178, 'attending', '2022-01-29 20:51:34', '2025-12-17 19:47:32', 'VmyeBRym', '4736500'), - (38, 1179, 'attending', '2022-02-19 18:02:55', '2025-12-17 19:47:32', 'VmyeBRym', '4736501'), - (38, 1180, 'attending', '2022-02-26 23:45:46', '2025-12-17 19:47:33', 'VmyeBRym', '4736502'), - (38, 1181, 'not_attending', '2022-03-01 17:56:23', '2025-12-17 19:47:33', 'VmyeBRym', '4736503'), - (38, 1182, 'attending', '2022-03-12 19:46:33', '2025-12-17 19:47:33', 'VmyeBRym', '4736504'), - (38, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VmyeBRym', '4746789'), - (38, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'VmyeBRym', '4753929'), - (38, 1206, 'attending', '2022-04-10 19:26:41', '2025-12-17 19:47:27', 'VmyeBRym', '4773578'), - (38, 1207, 'maybe', '2022-05-08 20:57:27', '2025-12-17 19:47:28', 'VmyeBRym', '4773579'), - (38, 1215, 'attending', '2022-02-26 00:38:53', '2025-12-17 19:47:33', 'VmyeBRym', '4780763'), - (38, 1220, 'maybe', '2022-01-29 01:49:51', '2025-12-17 19:47:32', 'VmyeBRym', '4790257'), - (38, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VmyeBRym', '5038850'), - (38, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VmyeBRym', '5045826'), - (38, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VmyeBRym', '5132533'), - (38, 1272, 'attending', '2022-03-18 16:48:28', '2025-12-17 19:47:25', 'VmyeBRym', '5186582'), - (38, 1273, 'attending', '2022-03-26 22:10:15', '2025-12-17 19:47:25', 'VmyeBRym', '5186583'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (38, 1274, 'attending', '2022-04-02 13:04:41', '2025-12-17 19:47:26', 'VmyeBRym', '5186585'), - (38, 1275, 'maybe', '2022-04-02 13:04:45', '2025-12-17 19:47:26', 'VmyeBRym', '5186587'), - (38, 1276, 'maybe', '2022-03-27 20:51:56', '2025-12-17 19:47:25', 'VmyeBRym', '5186820'), - (38, 1281, 'maybe', '2022-04-09 17:30:26', '2025-12-17 19:47:27', 'VmyeBRym', '5190437'), - (38, 1282, 'attending', '2022-03-18 00:26:12', '2025-12-17 19:47:25', 'VmyeBRym', '5191241'), - (38, 1284, 'attending', '2022-04-16 21:28:53', '2025-12-17 19:47:27', 'VmyeBRym', '5195095'), - (38, 1288, 'maybe', '2022-03-29 21:20:19', '2025-12-17 19:47:25', 'VmyeBRym', '5199460'), - (38, 1293, 'attending', '2022-04-10 19:26:39', '2025-12-17 19:47:27', 'VmyeBRym', '5214641'), - (38, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'VmyeBRym', '5215989'), - (38, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'VmyeBRym', '5223686'), - (38, 1309, 'attending', '2022-04-06 03:43:12', '2025-12-17 19:47:26', 'VmyeBRym', '5227432'), - (38, 1310, 'attending', '2022-04-07 22:17:33', '2025-12-17 19:47:27', 'VmyeBRym', '5231071'), - (38, 1312, 'attending', '2022-04-12 03:05:47', '2025-12-17 19:47:27', 'VmyeBRym', '5231459'), - (38, 1313, 'attending', '2022-04-12 23:20:26', '2025-12-17 19:47:27', 'VmyeBRym', '5231461'), - (38, 1336, 'attending', '2022-04-19 23:20:53', '2025-12-17 19:47:27', 'VmyeBRym', '5244915'), - (38, 1345, 'maybe', '2022-04-23 15:21:09', '2025-12-17 19:47:27', 'VmyeBRym', '5247466'), - (38, 1346, 'attending', '2022-04-23 15:21:12', '2025-12-17 19:47:27', 'VmyeBRym', '5247467'), - (38, 1362, 'attending', '2022-04-25 19:24:53', '2025-12-17 19:47:28', 'VmyeBRym', '5260800'), - (38, 1374, 'attending', '2022-05-07 21:01:12', '2025-12-17 19:47:28', 'VmyeBRym', '5269930'), - (38, 1378, 'attending', '2022-05-13 18:23:10', '2025-12-17 19:47:28', 'VmyeBRym', '5271448'), - (38, 1379, 'attending', '2022-05-20 22:50:08', '2025-12-17 19:47:29', 'VmyeBRym', '5271449'), - (38, 1380, 'not_attending', '2022-05-28 02:08:27', '2025-12-17 19:47:30', 'VmyeBRym', '5271450'), - (38, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'VmyeBRym', '5276469'), - (38, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'VmyeBRym', '5278159'), - (38, 1395, 'maybe', '2022-05-07 21:01:14', '2025-12-17 19:47:28', 'VmyeBRym', '5281102'), - (38, 1397, 'attending', '2022-05-20 22:50:07', '2025-12-17 19:47:29', 'VmyeBRym', '5281104'), - (38, 1407, 'attending', '2022-06-03 23:50:38', '2025-12-17 19:47:30', 'VmyeBRym', '5363695'), - (38, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'VmyeBRym', '5365960'), - (38, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'VmyeBRym', '5368973'), - (38, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'VmyeBRym', '5378247'), - (38, 1431, 'attending', '2022-06-09 15:22:41', '2025-12-17 19:47:30', 'VmyeBRym', '5389605'), - (38, 1442, 'attending', '2022-06-18 15:37:50', '2025-12-17 19:47:17', 'VmyeBRym', '5397265'), - (38, 1444, 'maybe', '2022-06-09 15:22:43', '2025-12-17 19:47:30', 'VmyeBRym', '5397614'), - (38, 1445, 'maybe', '2022-06-18 15:37:53', '2025-12-17 19:47:17', 'VmyeBRym', '5397615'), - (38, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'VmyeBRym', '5403967'), - (38, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'VmyeBRym', '5404786'), - (38, 1460, 'maybe', '2022-06-13 22:21:34', '2025-12-17 19:47:31', 'VmyeBRym', '5404817'), - (38, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'VmyeBRym', '5405203'), - (38, 1477, 'attending', '2022-06-22 00:00:00', '2025-12-17 19:47:17', 'VmyeBRym', '5408766'), - (38, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'VmyeBRym', '5411699'), - (38, 1482, 'attending', '2022-06-23 18:37:04', '2025-12-17 19:47:19', 'VmyeBRym', '5412550'), - (38, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'VmyeBRym', '5415046'), - (38, 1493, 'maybe', '2022-06-25 20:33:34', '2025-12-17 19:47:19', 'VmyeBRym', '5420218'), - (38, 1494, 'not_attending', '2022-06-25 15:19:20', '2025-12-17 19:47:19', 'VmyeBRym', '5421626'), - (38, 1495, 'attending', '2022-07-05 23:49:26', '2025-12-17 19:47:19', 'VmyeBRym', '5422086'), - (38, 1498, 'not_attending', '2022-07-02 04:24:56', '2025-12-17 19:47:19', 'VmyeBRym', '5422406'), - (38, 1499, 'not_attending', '2022-07-02 04:25:06', '2025-12-17 19:47:19', 'VmyeBRym', '5422407'), - (38, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'VmyeBRym', '5424565'), - (38, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'VmyeBRym', '5426882'), - (38, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'VmyeBRym', '5427083'), - (38, 1509, 'attending', '2022-07-05 18:53:23', '2025-12-17 19:47:19', 'VmyeBRym', '5434019'), - (38, 1511, 'attending', '2022-07-09 20:10:19', '2025-12-17 19:47:19', 'VmyeBRym', '5437733'), - (38, 1513, 'attending', '2022-07-14 15:00:00', '2025-12-17 19:47:19', 'VmyeBRym', '5441125'), - (38, 1514, 'attending', '2022-07-21 20:09:25', '2025-12-17 19:47:20', 'VmyeBRym', '5441126'), - (38, 1515, 'attending', '2022-08-05 00:40:00', '2025-12-17 19:47:21', 'VmyeBRym', '5441128'), - (38, 1516, 'attending', '2022-08-20 03:41:06', '2025-12-17 19:47:23', 'VmyeBRym', '5441129'), - (38, 1517, 'attending', '2022-08-25 15:13:55', '2025-12-17 19:47:23', 'VmyeBRym', '5441130'), - (38, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'VmyeBRym', '5441131'), - (38, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'VmyeBRym', '5441132'), - (38, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'VmyeBRym', '5446643'), - (38, 1532, 'maybe', '2022-07-23 19:13:24', '2025-12-17 19:47:20', 'VmyeBRym', '5448757'), - (38, 1536, 'attending', '2022-07-21 22:47:55', '2025-12-17 19:47:20', 'VmyeBRym', '5449068'), - (38, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'VmyeBRym', '5453325'), - (38, 1541, 'attending', '2022-07-25 18:12:15', '2025-12-17 19:47:20', 'VmyeBRym', '5453542'), - (38, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'VmyeBRym', '5454516'), - (38, 1544, 'not_attending', '2022-09-11 14:11:20', '2025-12-17 19:47:11', 'VmyeBRym', '5454517'), - (38, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'VmyeBRym', '5454605'), - (38, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'VmyeBRym', '5455037'), - (38, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'VmyeBRym', '5461278'), - (38, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'VmyeBRym', '5469480'), - (38, 1565, 'attending', '2022-08-07 17:30:58', '2025-12-17 19:47:21', 'VmyeBRym', '5471073'), - (38, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'VmyeBRym', '5474663'), - (38, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'VmyeBRym', '5482022'), - (38, 1572, 'not_attending', '2022-08-01 19:50:19', '2025-12-17 19:47:22', 'VmyeBRym', '5482078'), - (38, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'VmyeBRym', '5482793'), - (38, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'VmyeBRym', '5488912'), - (38, 1586, 'attending', '2022-08-18 23:08:41', '2025-12-17 19:47:23', 'VmyeBRym', '5492019'), - (38, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'VmyeBRym', '5492192'), - (38, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'VmyeBRym', '5493139'), - (38, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'VmyeBRym', '5493200'), - (38, 1593, 'attending', '2022-08-09 03:56:19', '2025-12-17 19:47:22', 'VmyeBRym', '5494043'), - (38, 1603, 'attending', '2022-08-19 22:07:50', '2025-12-17 19:47:23', 'VmyeBRym', '5497895'), - (38, 1604, 'maybe', '2022-08-17 22:24:50', '2025-12-17 19:47:22', 'VmyeBRym', '5501504'), - (38, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'VmyeBRym', '5502188'), - (38, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'VmyeBRym', '5505059'), - (38, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'VmyeBRym', '5509055'), - (38, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'VmyeBRym', '5512862'), - (38, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'VmyeBRym', '5513985'), - (38, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'VmyeBRym', '5519981'), - (38, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'VmyeBRym', '5522550'), - (38, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'VmyeBRym', '5534683'), - (38, 1634, 'attending', '2022-08-29 00:11:24', '2025-12-17 19:47:23', 'VmyeBRym', '5536950'), - (38, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'VmyeBRym', '5537735'), - (38, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'VmyeBRym', '5540859'), - (38, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'VmyeBRym', '5546619'), - (38, 1652, 'maybe', '2022-09-10 18:57:50', '2025-12-17 19:47:24', 'VmyeBRym', '5552671'), - (38, 1658, 'attending', '2022-09-06 15:31:39', '2025-12-17 19:47:24', 'VmyeBRym', '5555245'), - (38, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'VmyeBRym', '5557747'), - (38, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'VmyeBRym', '5560255'), - (38, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'VmyeBRym', '5562906'), - (38, 1667, 'maybe', '2022-09-24 16:08:26', '2025-12-17 19:47:11', 'VmyeBRym', '5563221'), - (38, 1668, 'attending', '2022-10-01 20:44:13', '2025-12-17 19:47:12', 'VmyeBRym', '5563222'), - (38, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'VmyeBRym', '5600604'), - (38, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'VmyeBRym', '5605544'), - (38, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'VmyeBRym', '5606737'), - (38, 1707, 'not_attending', '2022-10-14 04:02:17', '2025-12-17 19:47:12', 'VmyeBRym', '5613104'), - (38, 1719, 'attending', '2022-10-05 16:08:10', '2025-12-17 19:47:12', 'VmyeBRym', '5630958'), - (38, 1720, 'attending', '2022-10-14 19:01:02', '2025-12-17 19:47:12', 'VmyeBRym', '5630959'), - (38, 1721, 'attending', '2022-10-21 15:17:49', '2025-12-17 19:47:13', 'VmyeBRym', '5630960'), - (38, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'VmyeBRym', '5630961'), - (38, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'VmyeBRym', '5630962'), - (38, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'VmyeBRym', '5630966'), - (38, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'VmyeBRym', '5630967'), - (38, 1726, 'maybe', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'VmyeBRym', '5630968'), - (38, 1727, 'attending', '2022-12-03 14:25:21', '2025-12-17 19:47:16', 'VmyeBRym', '5630969'), - (38, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'VmyeBRym', '5635406'), - (38, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'VmyeBRym', '5638765'), - (38, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'VmyeBRym', '5640097'), - (38, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'VmyeBRym', '5640843'), - (38, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'VmyeBRym', '5641521'), - (38, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'VmyeBRym', '5642818'), - (38, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'VmyeBRym', '5652395'), - (38, 1759, 'maybe', '2022-10-21 15:17:52', '2025-12-17 19:47:13', 'VmyeBRym', '5669097'), - (38, 1760, 'attending', '2022-10-21 22:18:06', '2025-12-17 19:47:13', 'VmyeBRym', '5669463'), - (38, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'VmyeBRym', '5670445'), - (38, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'VmyeBRym', '5671637'), - (38, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'VmyeBRym', '5672329'), - (38, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'VmyeBRym', '5674057'), - (38, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'VmyeBRym', '5674060'), - (38, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'VmyeBRym', '5677461'), - (38, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'VmyeBRym', '5698046'), - (38, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'VmyeBRym', '5699760'), - (38, 1790, 'attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'VmyeBRym', '5727424'), - (38, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'VmyeBRym', '5741601'), - (38, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'VmyeBRym', '5763458'), - (38, 1804, 'maybe', '2023-01-28 19:38:17', '2025-12-17 19:47:06', 'VmyeBRym', '5764674'), - (38, 1805, 'attending', '2023-02-04 22:55:27', '2025-12-17 19:47:06', 'VmyeBRym', '5764675'), - (38, 1809, 'attending', '2023-04-15 18:38:09', '2025-12-17 19:46:59', 'VmyeBRym', '5764679'), - (38, 1813, 'maybe', '2023-04-29 15:44:55', '2025-12-17 19:47:01', 'VmyeBRym', '5764683'), - (38, 1815, 'not_attending', '2023-02-17 02:06:59', '2025-12-17 19:47:07', 'VmyeBRym', '5764685'), - (38, 1821, 'maybe', '2023-03-18 15:54:33', '2025-12-17 19:46:56', 'VmyeBRym', '5764691'), - (38, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'VmyeBRym', '5774172'), - (38, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'VmyeBRym', '5818247'), - (38, 1834, 'not_attending', '2022-12-10 05:42:41', '2025-12-17 19:47:17', 'VmyeBRym', '5819470'), - (38, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'VmyeBRym', '5819471'), - (38, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'VmyeBRym', '5827739'), - (38, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'VmyeBRym', '5844306'), - (38, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'VmyeBRym', '5850159'), - (38, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'VmyeBRym', '5858999'), - (38, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'VmyeBRym', '5871984'), - (38, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'VmyeBRym', '5876354'), - (38, 1864, 'attending', '2023-01-21 00:40:01', '2025-12-17 19:47:05', 'VmyeBRym', '5879675'), - (38, 1865, 'attending', '2023-01-28 03:48:31', '2025-12-17 19:47:06', 'VmyeBRym', '5879676'), - (38, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'VmyeBRym', '5880939'), - (38, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'VmyeBRym', '5880940'), - (38, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'VmyeBRym', '5880942'), - (38, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'VmyeBRym', '5880943'), - (38, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'VmyeBRym', '5887890'), - (38, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'VmyeBRym', '5888598'), - (38, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'VmyeBRym', '5893260'), - (38, 1881, 'attending', '2023-02-08 18:45:27', '2025-12-17 19:47:07', 'VmyeBRym', '5894218'), - (38, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'VmyeBRym', '5899826'), - (38, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'VmyeBRym', '5900199'), - (38, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:07', 'VmyeBRym', '5900200'), - (38, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'VmyeBRym', '5900202'), - (38, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'VmyeBRym', '5900203'), - (38, 1893, 'attending', '2023-01-31 23:50:22', '2025-12-17 19:47:06', 'VmyeBRym', '5901055'), - (38, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'VmyeBRym', '5901108'), - (38, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'VmyeBRym', '5901126'), - (38, 1897, 'attending', '2023-02-08 18:44:24', '2025-12-17 19:47:07', 'VmyeBRym', '5901128'), - (38, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'VmyeBRym', '5909655'), - (38, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'VmyeBRym', '5910522'), - (38, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'VmyeBRym', '5910526'), - (38, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'VmyeBRym', '5910528'), - (38, 1922, 'not_attending', '2023-02-13 05:52:16', '2025-12-17 19:47:07', 'VmyeBRym', '5916219'), - (38, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'VmyeBRym', '5936234'), - (38, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'VmyeBRym', '5958351'), - (38, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'VmyeBRym', '5959751'), - (38, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'VmyeBRym', '5959755'), - (38, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'VmyeBRym', '5960055'), - (38, 1941, 'attending', '2023-02-25 03:28:06', '2025-12-17 19:47:09', 'VmyeBRym', '5961684'), - (38, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'VmyeBRym', '5962132'), - (38, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'VmyeBRym', '5962133'), - (38, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'VmyeBRym', '5962134'), - (38, 1947, 'attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'VmyeBRym', '5962233'), - (38, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'VmyeBRym', '5962317'), - (38, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'VmyeBRym', '5962318'), - (38, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'VmyeBRym', '5965933'), - (38, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'VmyeBRym', '5967014'), - (38, 1956, 'attending', '2023-03-06 04:33:13', '2025-12-17 19:47:09', 'VmyeBRym', '5972763'), - (38, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'VmyeBRym', '5972815'), - (38, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'VmyeBRym', '5974016'), - (38, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'VmyeBRym', '5981515'), - (38, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'VmyeBRym', '5993516'), - (38, 1972, 'maybe', '2023-03-19 23:25:19', '2025-12-17 19:46:56', 'VmyeBRym', '5993776'), - (38, 1973, 'attending', '2023-03-17 21:33:17', '2025-12-17 19:46:56', 'VmyeBRym', '5993777'), - (38, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'VmyeBRym', '5998939'), - (38, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'VmyeBRym', '6028191'), - (38, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'VmyeBRym', '6040066'), - (38, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'VmyeBRym', '6042717'), - (38, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'VmyeBRym', '6044838'), - (38, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'VmyeBRym', '6044839'), - (38, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'VmyeBRym', '6045684'), - (38, 1994, 'maybe', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'VmyeBRym', '6050104'), - (38, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'VmyeBRym', '6053195'), - (38, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'VmyeBRym', '6053198'), - (38, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'VmyeBRym', '6056085'), - (38, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'VmyeBRym', '6056916'), - (38, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'VmyeBRym', '6059290'), - (38, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'VmyeBRym', '6060328'), - (38, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'VmyeBRym', '6061037'), - (38, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'VmyeBRym', '6061039'), - (38, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'VmyeBRym', '6067245'), - (38, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'VmyeBRym', '6068094'), - (38, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'VmyeBRym', '6068252'), - (38, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'VmyeBRym', '6068253'), - (38, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'VmyeBRym', '6068254'), - (38, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'VmyeBRym', '6068280'), - (38, 2032, 'not_attending', '2023-05-28 03:49:18', '2025-12-17 19:47:04', 'VmyeBRym', '6068281'), - (38, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'VmyeBRym', '6069093'), - (38, 2039, 'not_attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'VmyeBRym', '6072398'), - (38, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'VmyeBRym', '6072528'), - (38, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', 'VmyeBRym', '6073678'), - (38, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'VmyeBRym', '6079840'), - (38, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'VmyeBRym', '6083398'), - (38, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'VmyeBRym', '6093504'), - (38, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'VmyeBRym', '6097414'), - (38, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'VmyeBRym', '6097442'), - (38, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'VmyeBRym', '6097684'), - (38, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'VmyeBRym', '6098762'), - (38, 2064, 'maybe', '2023-06-24 05:10:28', '2025-12-17 19:46:50', 'VmyeBRym', '6099988'), - (38, 2065, 'attending', '2023-06-17 15:55:04', '2025-12-17 19:46:49', 'VmyeBRym', '6101169'), - (38, 2066, 'maybe', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'VmyeBRym', '6101361'), - (38, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'VmyeBRym', '6101362'), - (38, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'VmyeBRym', '6107314'), - (38, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'VmyeBRym', '6120034'), - (38, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'VmyeBRym', '6136733'), - (38, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'VmyeBRym', '6137989'), - (38, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'VmyeBRym', '6150864'), - (38, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'VmyeBRym', '6155491'), - (38, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'VmyeBRym', '6164417'), - (38, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'VmyeBRym', '6166388'), - (38, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'VmyeBRym', '6176439'), - (38, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'VmyeBRym', '6182410'), - (38, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'VmyeBRym', '6185812'), - (38, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'VmyeBRym', '6187651'), - (38, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'VmyeBRym', '6187963'), - (38, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'VmyeBRym', '6187964'), - (38, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'VmyeBRym', '6187966'), - (38, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'VmyeBRym', '6187967'), - (38, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'VmyeBRym', '6187969'), - (38, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'VmyeBRym', '6334878'), - (38, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:52', 'VmyeBRym', '6337236'), - (38, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'VmyeBRym', '6337970'), - (38, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'VmyeBRym', '6338308'), - (38, 2159, 'attending', '2023-07-20 19:00:45', '2025-12-17 19:46:53', 'VmyeBRym', '6338355'), - (38, 2160, 'not_attending', '2023-07-17 18:46:56', '2025-12-17 19:46:54', 'VmyeBRym', '6338358'), - (38, 2161, 'maybe', '2023-07-15 19:11:38', '2025-12-17 19:46:52', 'VmyeBRym', '6340748'), - (38, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'VmyeBRym', '6340845'), - (38, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'VmyeBRym', '6341710'), - (38, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'VmyeBRym', '6342044'), - (38, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'VmyeBRym', '6342298'), - (38, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'VmyeBRym', '6343294'), - (38, 2175, 'not_attending', '2023-07-22 18:59:02', '2025-12-17 19:46:53', 'VmyeBRym', '6346982'), - (38, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'VmyeBRym', '6347034'), - (38, 2177, 'attending', '2023-08-12 12:44:53', '2025-12-17 19:46:55', 'VmyeBRym', '6347053'), - (38, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'VmyeBRym', '6347056'), - (38, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'VmyeBRym', '6353830'), - (38, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'VmyeBRym', '6353831'), - (38, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'VmyeBRym', '6357867'), - (38, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'VmyeBRym', '6358652'), - (38, 2204, 'attending', '2023-08-14 22:13:46', '2025-12-17 19:46:55', 'VmyeBRym', '6361542'), - (38, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'VmyeBRym', '6361709'), - (38, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'VmyeBRym', '6361710'), - (38, 2210, 'maybe', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'VmyeBRym', '6361711'), - (38, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'VmyeBRym', '6361712'), - (38, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'VmyeBRym', '6361713'), - (38, 2216, 'attending', '2023-08-19 01:46:32', '2025-12-17 19:46:55', 'VmyeBRym', '6364123'), - (38, 2227, 'attending', '2023-08-19 02:04:23', '2025-12-17 19:46:55', 'VmyeBRym', '6370581'), - (38, 2228, 'not_attending', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'VmyeBRym', '6372777'), - (38, 2232, 'attending', '2023-08-26 15:40:49', '2025-12-17 19:46:55', 'VmyeBRym', '6374818'), - (38, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'VmyeBRym', '6382573'), - (38, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'VmyeBRym', '6383149'), - (38, 2239, 'attending', '2023-09-02 20:14:04', '2025-12-17 19:46:56', 'VmyeBRym', '6387592'), - (38, 2240, 'attending', '2023-09-09 03:33:00', '2025-12-17 19:46:56', 'VmyeBRym', '6388603'), - (38, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'VmyeBRym', '6388604'), - (38, 2242, 'maybe', '2023-09-23 20:33:27', '2025-12-17 19:46:45', 'VmyeBRym', '6388606'), - (38, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'VmyeBRym', '6394629'), - (38, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'VmyeBRym', '6394631'), - (38, 2253, 'not_attending', '2023-09-25 02:49:10', '2025-12-17 19:46:45', 'VmyeBRym', '6401811'), - (38, 2255, 'maybe', '2023-09-13 22:37:09', '2025-12-17 19:46:45', 'VmyeBRym', '6403562'), - (38, 2265, 'maybe', '2023-10-01 19:57:14', '2025-12-17 19:46:45', 'VmyeBRym', '6439625'), - (38, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'VmyeBRym', '6440863'), - (38, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'VmyeBRym', '6445440'), - (38, 2273, 'attending', '2023-10-05 23:17:11', '2025-12-17 19:46:45', 'VmyeBRym', '6448282'), - (38, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'VmyeBRym', '6453951'), - (38, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'VmyeBRym', '6461696'), - (38, 2288, 'attending', '2023-10-11 05:12:35', '2025-12-17 19:46:46', 'VmyeBRym', '6462068'), - (38, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'VmyeBRym', '6462129'), - (38, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'VmyeBRym', '6463218'), - (38, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'VmyeBRym', '6472181'), - (38, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', 'VmyeBRym', '6474276'), - (38, 2303, 'maybe', '2023-10-28 06:33:40', '2025-12-17 19:46:47', 'VmyeBRym', '6482691'), - (38, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'VmyeBRym', '6482693'), - (38, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'VmyeBRym', '6484200'), - (38, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'VmyeBRym', '6484680'), - (38, 2310, 'maybe', '2023-11-11 19:47:57', '2025-12-17 19:46:47', 'VmyeBRym', '6487709'), - (38, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'VmyeBRym', '6507741'), - (38, 2322, 'attending', '2023-11-18 19:11:27', '2025-12-17 19:46:48', 'VmyeBRym', '6514659'), - (38, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:48', 'VmyeBRym', '6514660'), - (38, 2324, 'attending', '2023-12-09 07:15:57', '2025-12-17 19:46:49', 'VmyeBRym', '6514662'), - (38, 2325, 'attending', '2023-12-16 20:26:08', '2025-12-17 19:46:36', 'VmyeBRym', '6514663'), - (38, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'VmyeBRym', '6519103'), - (38, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'VmyeBRym', '6535681'), - (38, 2339, 'attending', '2023-11-09 20:10:29', '2025-12-17 19:46:47', 'VmyeBRym', '6539128'), - (38, 2346, 'not_attending', '2023-11-18 22:27:54', '2025-12-17 19:46:48', 'VmyeBRym', '6582418'), - (38, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'VmyeBRym', '6584747'), - (38, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'VmyeBRym', '6587097'), - (38, 2359, 'attending', '2023-11-30 17:20:50', '2025-12-17 19:46:48', 'VmyeBRym', '6596617'), - (38, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'VmyeBRym', '6609022'), - (38, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'VmyeBRym', '6632757'), - (38, 2377, 'attending', '2023-12-29 21:52:24', '2025-12-17 19:46:37', 'VmyeBRym', '6643448'), - (38, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'VmyeBRym', '6644187'), - (38, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'VmyeBRym', '6648951'), - (38, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'VmyeBRym', '6648952'), - (38, 2388, 'maybe', '2024-01-05 16:22:39', '2025-12-17 19:46:37', 'VmyeBRym', '6649244'), - (38, 2395, 'maybe', '2024-01-17 01:12:56', '2025-12-17 19:46:38', 'VmyeBRym', '6654471'), - (38, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'VmyeBRym', '6655401'), - (38, 2399, 'attending', '2024-01-14 00:32:06', '2025-12-17 19:46:37', 'VmyeBRym', '6657583'), - (38, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'VmyeBRym', '6661585'), - (38, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'VmyeBRym', '6661588'), - (38, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'VmyeBRym', '6661589'), - (38, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'VmyeBRym', '6699906'), - (38, 2408, 'attending', '2024-01-27 06:11:03', '2025-12-17 19:46:40', 'VmyeBRym', '6699907'), - (38, 2409, 'attending', '2024-02-03 04:45:32', '2025-12-17 19:46:41', 'VmyeBRym', '6699909'), - (38, 2410, 'attending', '2024-02-08 00:34:41', '2025-12-17 19:46:41', 'VmyeBRym', '6699911'), - (38, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'VmyeBRym', '6699913'), - (38, 2413, 'attending', '2024-02-18 20:52:44', '2025-12-17 19:46:42', 'VmyeBRym', '6700719'), - (38, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'VmyeBRym', '6701109'), - (38, 2417, 'attending', '2024-01-22 02:50:56', '2025-12-17 19:46:40', 'VmyeBRym', '6701905'), - (38, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'VmyeBRym', '6705219'), - (38, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'VmyeBRym', '6710153'), - (38, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'VmyeBRym', '6711552'), - (38, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'VmyeBRym', '6711553'), - (38, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'VmyeBRym', '6722688'), - (38, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'VmyeBRym', '6730620'), - (38, 2440, 'attending', '2024-01-31 07:48:05', '2025-12-17 19:46:41', 'VmyeBRym', '6730642'), - (38, 2450, 'not_attending', '2024-02-11 18:06:32', '2025-12-17 19:46:41', 'VmyeBRym', '6738807'), - (38, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'VmyeBRym', '6740364'), - (38, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'VmyeBRym', '6743829'), - (38, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'VmyeBRym', '7030380'), - (38, 2471, 'attending', '2024-02-18 19:55:16', '2025-12-17 19:46:42', 'VmyeBRym', '7032425'), - (38, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'VmyeBRym', '7033677'), - (38, 2474, 'attending', '2024-02-24 16:11:30', '2025-12-17 19:46:43', 'VmyeBRym', '7035415'), - (38, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'VmyeBRym', '7044715'), - (38, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'VmyeBRym', '7050318'), - (38, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'VmyeBRym', '7050319'), - (38, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'VmyeBRym', '7050322'), - (38, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'VmyeBRym', '7057804'), - (38, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'VmyeBRym', '7059866'), - (38, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'VmyeBRym', '7072824'), - (38, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'VmyeBRym', '7074348'), - (38, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'VmyeBRym', '7074364'), - (38, 2528, 'attending', '2024-08-09 01:40:55', '2025-12-17 19:46:31', 'VmyeBRym', '7074368'), - (38, 2532, 'not_attending', '2024-09-05 21:46:46', '2025-12-17 19:46:32', 'VmyeBRym', '7074383'), - (38, 2535, 'maybe', '2024-03-16 20:06:32', '2025-12-17 19:46:32', 'VmyeBRym', '7076879'), - (38, 2536, 'attending', '2024-03-17 02:14:34', '2025-12-17 19:46:33', 'VmyeBRym', '7077689'), - (38, 2537, 'not_attending', '2024-03-19 04:43:20', '2025-12-17 19:46:33', 'VmyeBRym', '7085484'), - (38, 2538, 'maybe', '2024-03-29 02:48:21', '2025-12-17 19:46:33', 'VmyeBRym', '7085485'), - (38, 2539, 'not_attending', '2024-03-19 04:43:26', '2025-12-17 19:46:33', 'VmyeBRym', '7085486'), - (38, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'VmyeBRym', '7089267'), - (38, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'VmyeBRym', '7098747'), - (38, 2553, 'maybe', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'VmyeBRym', '7113468'), - (38, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'VmyeBRym', '7114856'), - (38, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'VmyeBRym', '7114951'), - (38, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'VmyeBRym', '7114955'), - (38, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'VmyeBRym', '7114956'), - (38, 2558, 'maybe', '2024-04-30 16:28:04', '2025-12-17 19:46:35', 'VmyeBRym', '7114957'), - (38, 2563, 'attending', '2024-04-03 23:00:50', '2025-12-17 19:46:33', 'VmyeBRym', '7134734'), - (38, 2566, 'attending', '2024-04-03 23:00:54', '2025-12-17 19:46:34', 'VmyeBRym', '7140664'), - (38, 2568, 'not_attending', '2024-04-05 18:50:48', '2025-12-17 19:46:33', 'VmyeBRym', '7153615'), - (38, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'VmyeBRym', '7159484'), - (38, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'VmyeBRym', '7178446'), - (38, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'VmyeBRym', '7220467'), - (38, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'VmyeBRym', '7240354'), - (38, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'VmyeBRym', '7251633'), - (38, 2626, 'attending', '2024-05-17 14:08:45', '2025-12-17 19:46:35', 'VmyeBRym', '7264723'), - (38, 2627, 'attending', '2024-05-25 16:31:03', '2025-12-17 19:46:35', 'VmyeBRym', '7264724'), - (38, 2628, 'attending', '2024-05-31 00:56:41', '2025-12-17 19:46:36', 'VmyeBRym', '7264725'), - (38, 2629, 'attending', '2024-06-08 04:11:17', '2025-12-17 19:46:28', 'VmyeBRym', '7264726'), - (38, 2632, 'attending', '2024-05-13 22:59:59', '2025-12-17 19:46:35', 'VmyeBRym', '7269123'), - (38, 2647, 'attending', '2024-06-09 19:36:51', '2025-12-17 19:46:28', 'VmyeBRym', '7282057'), - (38, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'VmyeBRym', '7302674'), - (38, 2678, 'attending', '2024-06-15 06:20:39', '2025-12-17 19:46:28', 'VmyeBRym', '7319489'), - (38, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'VmyeBRym', '7324073'), - (38, 2689, 'maybe', '2024-06-20 14:33:22', '2025-12-17 19:46:29', 'VmyeBRym', '7324074'), - (38, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'VmyeBRym', '7324075'), - (38, 2691, 'attending', '2024-07-20 18:04:27', '2025-12-17 19:46:30', 'VmyeBRym', '7324076'), - (38, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'VmyeBRym', '7324078'), - (38, 2694, 'attending', '2024-08-10 01:34:42', '2025-12-17 19:46:31', 'VmyeBRym', '7324079'), - (38, 2695, 'attending', '2024-08-13 17:45:59', '2025-12-17 19:46:31', 'VmyeBRym', '7324080'), - (38, 2696, 'not_attending', '2024-08-13 17:46:01', '2025-12-17 19:46:32', 'VmyeBRym', '7324081'), - (38, 2697, 'not_attending', '2024-08-31 16:59:23', '2025-12-17 19:46:32', 'VmyeBRym', '7324082'), - (38, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'VmyeBRym', '7331457'), - (38, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'VmyeBRym', '7363643'), - (38, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'VmyeBRym', '7368606'), - (38, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'VmyeBRym', '7397462'), - (38, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'VmyeBRym', '7424275'), - (38, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'VmyeBRym', '7432751'), - (38, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'VmyeBRym', '7432752'), - (38, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'VmyeBRym', '7432753'), - (38, 2827, 'maybe', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'VmyeBRym', '7432754'), - (38, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'VmyeBRym', '7432755'), - (38, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'VmyeBRym', '7432756'), - (38, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'VmyeBRym', '7432758'), - (38, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'VmyeBRym', '7432759'), - (38, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'VmyeBRym', '7433834'), - (38, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'VmyeBRym', '7470197'), - (38, 2870, 'attending', '2024-10-05 21:26:46', '2025-12-17 19:46:26', 'VmyeBRym', '7475068'), - (38, 2874, 'attending', '2024-10-07 21:43:31', '2025-12-17 19:46:26', 'VmyeBRym', '7482239'), - (38, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'VmyeBRym', '7685613'), - (38, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'VmyeBRym', '7688194'), - (38, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'VmyeBRym', '7688196'), - (38, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'VmyeBRym', '7688289'), - (38, 2908, 'not_attending', '2024-11-11 01:14:39', '2025-12-17 19:46:27', 'VmyeBRym', '7689420'), - (38, 2910, 'not_attending', '2024-11-11 01:13:52', '2025-12-17 19:46:27', 'VmyeBRym', '7689867'), - (38, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'VmyeBRym', '7692763'), - (38, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'VmyeBRym', '7697552'), - (38, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'VmyeBRym', '7699878'), - (38, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'VmyeBRym', '7704043'), - (38, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'VmyeBRym', '7712467'), - (38, 2925, 'attending', '2024-12-12 05:09:32', '2025-12-17 19:46:21', 'VmyeBRym', '7713584'), - (38, 2926, 'maybe', '2024-12-04 15:03:42', '2025-12-17 19:46:21', 'VmyeBRym', '7713585'), - (38, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'VmyeBRym', '7713586'), - (38, 2942, 'attending', '2025-02-22 22:39:00', '2025-12-17 19:46:24', 'VmyeBRym', '7725960'), - (38, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'VmyeBRym', '7738518'), - (38, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'VmyeBRym', '7750632'), - (38, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'VmyeBRym', '7750636'), - (38, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'VmyeBRym', '7796540'), - (38, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'VmyeBRym', '7796541'), - (38, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'VmyeBRym', '7796542'), - (38, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'VmyeBRym', '7825913'), - (38, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'VmyeBRym', '7826209'), - (38, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'VmyeBRym', '7834742'), - (38, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'VmyeBRym', '7842108'), - (38, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'VmyeBRym', '7842902'), - (38, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'VmyeBRym', '7842903'), - (38, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'VmyeBRym', '7842904'), - (38, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'VmyeBRym', '7842905'), - (38, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'VmyeBRym', '7842909'), - (38, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'VmyeBRym', '7855719'), - (38, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'VmyeBRym', '7860683'), - (38, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'VmyeBRym', '7860684'), - (38, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'VmyeBRym', '7866095'), - (38, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'VmyeBRym', '7869170'), - (38, 3014, 'attending', '2025-04-05 18:42:47', '2025-12-17 19:46:19', 'VmyeBRym', '7869185'), - (38, 3015, 'attending', '2025-04-26 21:35:04', '2025-12-17 19:46:20', 'VmyeBRym', '7869186'), - (38, 3016, 'attending', '2025-04-17 01:43:32', '2025-12-17 19:46:20', 'VmyeBRym', '7869187'), - (38, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'VmyeBRym', '7869188'), - (38, 3018, 'not_attending', '2025-04-12 18:20:33', '2025-12-17 19:46:20', 'VmyeBRym', '7869189'), - (38, 3019, 'attending', '2025-04-05 18:42:43', '2025-12-17 19:46:20', 'VmyeBRym', '7869190'), - (38, 3021, 'maybe', '2025-04-12 18:20:35', '2025-12-17 19:46:20', 'VmyeBRym', '7869192'), - (38, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'VmyeBRym', '7869194'), - (38, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'VmyeBRym', '7869195'), - (38, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'VmyeBRym', '7869201'), - (38, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'VmyeBRym', '7877465'), - (38, 3046, 'not_attending', '2025-04-12 18:20:31', '2025-12-17 19:46:20', 'VmyeBRym', '7882692'), - (38, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'VmyeBRym', '7888250'), - (38, 3088, 'maybe', '2025-06-10 14:17:58', '2025-12-17 19:46:15', 'VmyeBRym', '7904777'), - (38, 3095, 'attending', '2025-05-03 21:59:48', '2025-12-17 19:46:20', 'VmyeBRym', '8342293'), - (38, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'VmyeBRym', '8349164'), - (38, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'VmyeBRym', '8349545'), - (38, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'VmyeBRym', '8353584'), - (38, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'VmyeBRym', '8368028'), - (38, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'VmyeBRym', '8368029'), - (38, 3133, 'attending', '2025-05-29 15:01:42', '2025-12-17 19:46:14', 'VmyeBRym', '8368030'), - (38, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'VmyeBRym', '8388462'), - (38, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:14', 'VmyeBRym', '8400273'), - (38, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'VmyeBRym', '8400275'), - (38, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'VmyeBRym', '8400276'), - (38, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'VmyeBRym', '8404977'), - (38, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'VmyeBRym', '8430783'), - (38, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'VmyeBRym', '8430784'), - (38, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'VmyeBRym', '8430799'), - (38, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'VmyeBRym', '8430800'), - (38, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'VmyeBRym', '8430801'), - (38, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'VmyeBRym', '8438709'), - (38, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'VmyeBRym', '8457738'), - (38, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'VmyeBRym', '8459566'), - (38, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'VmyeBRym', '8459567'), - (38, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'VmyeBRym', '8459568'), - (38, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'VmyeBRym', '8461032'), - (38, 3212, 'attending', '2025-08-05 00:07:23', '2025-12-17 19:46:17', 'VmyeBRym', '8477787'), - (38, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'VmyeBRym', '8477877'), - (38, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'VmyeBRym', '8485688'), - (38, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'VmyeBRym', '8490587'), - (38, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'VmyeBRym', '8493552'), - (38, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'VmyeBRym', '8493553'), - (38, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'VmyeBRym', '8493554'), - (38, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'VmyeBRym', '8493555'), - (38, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'VmyeBRym', '8493556'), - (38, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'VmyeBRym', '8493557'), - (38, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'VmyeBRym', '8493558'), - (38, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'VmyeBRym', '8493559'), - (38, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'VmyeBRym', '8493560'), - (38, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'VmyeBRym', '8493561'), - (38, 3246, 'not_attending', '2025-09-08 15:05:05', '2025-12-17 19:46:13', 'VmyeBRym', '8493562'), - (38, 3247, 'not_attending', '2025-09-08 15:05:25', '2025-12-17 19:46:14', 'VmyeBRym', '8493563'), - (38, 3248, 'not_attending', '2025-09-08 15:05:17', '2025-12-17 19:46:13', 'VmyeBRym', '8493564'), - (38, 3249, 'not_attending', '2025-09-08 15:05:20', '2025-12-17 19:46:13', 'VmyeBRym', '8493565'), - (38, 3250, 'not_attending', '2025-09-08 15:05:30', '2025-12-17 19:46:14', 'VmyeBRym', '8493566'), - (38, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'VmyeBRym', '8493572'), - (38, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'VmyeBRym', '8540725'), - (38, 3300, 'not_attending', '2025-11-07 18:21:44', '2025-12-17 19:46:14', 'VmyeBRym', '8549145'), - (38, 3301, 'attending', '2025-12-21 07:45:50', '2025-12-21 07:45:54', NULL, NULL), - (38, 3302, 'maybe', '2025-11-15 23:08:55', '2025-12-17 19:46:14', 'VmyeBRym', '8550022'), - (38, 3304, 'maybe', '2025-11-23 00:06:28', '2025-12-17 19:46:14', 'VmyeBRym', '8550024'), - (38, 3305, 'attending', '2025-12-02 22:25:17', '2025-12-17 19:46:11', 'VmyeBRym', '8550025'), - (38, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'VmyeBRym', '8555421'), - (39, 247, 'attending', '2020-12-29 23:52:25', '2025-12-17 19:47:48', 'kdKMreZA', '3149478'), - (39, 518, 'not_attending', '2021-01-07 00:52:33', '2025-12-17 19:47:48', 'kdKMreZA', '3337138'), - (39, 521, 'not_attending', '2021-01-01 17:56:03', '2025-12-17 19:47:48', 'kdKMreZA', '3337454'), - (39, 526, 'attending', '2020-12-30 05:08:34', '2025-12-17 19:47:48', 'kdKMreZA', '3351539'), - (39, 535, 'attending', '2021-01-09 17:36:46', '2025-12-17 19:47:48', 'kdKMreZA', '3384729'), - (39, 536, 'attending', '2021-01-08 20:35:40', '2025-12-17 19:47:48', 'kdKMreZA', '3386848'), - (39, 540, 'not_attending', '2021-01-09 17:35:56', '2025-12-17 19:47:48', 'kdKMreZA', '3389527'), - (39, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdKMreZA', '3396499'), - (39, 548, 'attending', '2021-01-13 18:10:20', '2025-12-17 19:47:48', 'kdKMreZA', '3403650'), - (39, 549, 'not_attending', '2021-01-18 23:46:49', '2025-12-17 19:47:49', 'kdKMreZA', '3406988'), - (39, 551, 'attending', '2021-01-16 15:41:08', '2025-12-17 19:47:49', 'kdKMreZA', '3407219'), - (39, 555, 'not_attending', '2021-01-22 04:28:14', '2025-12-17 19:47:49', 'kdKMreZA', '3416576'), - (39, 558, 'not_attending', '2021-01-22 20:44:51', '2025-12-17 19:47:49', 'kdKMreZA', '3418925'), - (39, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'kdKMreZA', '3426074'), - (39, 568, 'attending', '2021-01-29 22:21:23', '2025-12-17 19:47:50', 'kdKMreZA', '3430267'), - (39, 569, 'attending', '2021-01-26 14:36:29', '2025-12-17 19:47:49', 'kdKMreZA', '3432673'), - (39, 570, 'attending', '2021-02-05 03:25:36', '2025-12-17 19:47:50', 'kdKMreZA', '3435538'), - (39, 571, 'attending', '2021-02-11 23:07:52', '2025-12-17 19:47:50', 'kdKMreZA', '3435539'), - (39, 576, 'attending', '2021-01-30 02:57:39', '2025-12-17 19:47:50', 'kdKMreZA', '3438748'), - (39, 577, 'attending', '2021-01-28 05:31:02', '2025-12-17 19:47:49', 'kdKMreZA', '3439167'), - (39, 578, 'attending', '2021-02-03 14:35:03', '2025-12-17 19:47:50', 'kdKMreZA', '3440043'), - (39, 579, 'attending', '2021-02-06 19:19:57', '2025-12-17 19:47:50', 'kdKMreZA', '3440978'), - (39, 580, 'attending', '2021-01-31 05:19:07', '2025-12-17 19:47:50', 'kdKMreZA', '3444240'), - (39, 581, 'not_attending', '2021-02-01 21:22:58', '2025-12-17 19:47:50', 'kdKMreZA', '3445029'), - (39, 582, 'not_attending', '2021-02-01 14:35:10', '2025-12-17 19:47:50', 'kdKMreZA', '3445769'), - (39, 591, 'attending', '2021-02-05 03:26:24', '2025-12-17 19:47:50', 'kdKMreZA', '3465880'), - (39, 598, 'attending', '2021-02-09 20:26:37', '2025-12-17 19:47:50', 'kdKMreZA', '3468003'), - (39, 599, 'not_attending', '2021-02-16 22:37:29', '2025-12-17 19:47:50', 'kdKMreZA', '3468117'), - (39, 600, 'attending', '2021-02-22 00:29:49', '2025-12-17 19:47:50', 'kdKMreZA', '3468125'), - (39, 602, 'attending', '2021-02-07 17:02:11', '2025-12-17 19:47:50', 'kdKMreZA', '3470303'), - (39, 603, 'attending', '2021-02-20 19:07:24', '2025-12-17 19:47:50', 'kdKMreZA', '3470304'), - (39, 604, 'not_attending', '2021-02-24 18:31:12', '2025-12-17 19:47:50', 'kdKMreZA', '3470305'), - (39, 605, 'attending', '2021-02-14 23:38:20', '2025-12-17 19:47:50', 'kdKMreZA', '3470991'), - (39, 607, 'attending', '2021-02-19 21:11:22', '2025-12-17 19:47:50', 'kdKMreZA', '3471882'), - (39, 612, 'not_attending', '2021-02-18 00:29:34', '2025-12-17 19:47:50', 'kdKMreZA', '3490040'), - (39, 616, 'attending', '2021-02-21 00:46:02', '2025-12-17 19:47:50', 'kdKMreZA', '3493478'), - (39, 618, 'attending', '2021-02-20 20:11:16', '2025-12-17 19:47:50', 'kdKMreZA', '3503991'), - (39, 621, 'attending', '2021-03-05 01:21:11', '2025-12-17 19:47:51', 'kdKMreZA', '3517815'), - (39, 622, 'attending', '2021-03-14 00:24:18', '2025-12-17 19:47:51', 'kdKMreZA', '3517816'), - (39, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdKMreZA', '3523941'), - (39, 631, 'attending', '2021-03-07 23:50:41', '2025-12-17 19:47:51', 'kdKMreZA', '3533850'), - (39, 638, 'not_attending', '2021-04-04 16:39:23', '2025-12-17 19:47:44', 'kdKMreZA', '3536632'), - (39, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKMreZA', '3536656'), - (39, 641, 'attending', '2021-03-29 19:52:45', '2025-12-17 19:47:44', 'kdKMreZA', '3539916'), - (39, 642, 'maybe', '2021-04-08 23:43:19', '2025-12-17 19:47:44', 'kdKMreZA', '3539917'), - (39, 643, 'attending', '2021-04-15 01:47:32', '2025-12-17 19:47:45', 'kdKMreZA', '3539918'), - (39, 644, 'not_attending', '2021-04-23 21:08:23', '2025-12-17 19:47:46', 'kdKMreZA', '3539919'), - (39, 645, 'attending', '2021-05-05 22:34:25', '2025-12-17 19:47:46', 'kdKMreZA', '3539920'), - (39, 646, 'attending', '2021-05-12 01:53:32', '2025-12-17 19:47:46', 'kdKMreZA', '3539921'), - (39, 647, 'attending', '2021-05-18 20:20:09', '2025-12-17 19:47:46', 'kdKMreZA', '3539922'), - (39, 648, 'attending', '2021-05-25 20:20:31', '2025-12-17 19:47:47', 'kdKMreZA', '3539923'), - (39, 649, 'not_attending', '2021-03-18 22:24:51', '2025-12-17 19:47:51', 'kdKMreZA', '3539927'), - (39, 650, 'not_attending', '2021-03-26 20:40:47', '2025-12-17 19:47:44', 'kdKMreZA', '3539928'), - (39, 651, 'not_attending', '2021-03-10 22:36:15', '2025-12-17 19:47:51', 'kdKMreZA', '3541045'), - (39, 685, 'attending', '2021-04-12 20:48:03', '2025-12-17 19:47:44', 'kdKMreZA', '3551564'), - (39, 703, 'maybe', '2021-04-11 16:22:19', '2025-12-17 19:47:44', 'kdKMreZA', '3578388'), - (39, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKMreZA', '3582734'), - (39, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKMreZA', '3583262'), - (39, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKMreZA', '3619523'), - (39, 719, 'maybe', '2021-04-08 23:01:59', '2025-12-17 19:47:44', 'kdKMreZA', '3635405'), - (39, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKMreZA', '3661369'), - (39, 728, 'attending', '2021-04-12 20:54:25', '2025-12-17 19:47:44', 'kdKMreZA', '3668073'), - (39, 729, 'attending', '2021-04-26 18:26:07', '2025-12-17 19:47:46', 'kdKMreZA', '3668075'), - (39, 730, 'not_attending', '2021-05-05 22:34:03', '2025-12-17 19:47:46', 'kdKMreZA', '3668076'), - (39, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKMreZA', '3674262'), - (39, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKMreZA', '3677402'), - (39, 736, 'maybe', '2021-04-08 23:43:10', '2025-12-17 19:47:44', 'kdKMreZA', '3677701'), - (39, 760, 'maybe', '2021-05-14 12:09:37', '2025-12-17 19:47:46', 'kdKMreZA', '3716035'), - (39, 761, 'attending', '2021-05-14 21:19:39', '2025-12-17 19:47:46', 'kdKMreZA', '3716041'), - (39, 764, 'not_attending', '2021-04-23 21:08:11', '2025-12-17 19:47:45', 'kdKMreZA', '3720507'), - (39, 765, 'not_attending', '2021-04-22 20:59:36', '2025-12-17 19:47:45', 'kdKMreZA', '3720508'), - (39, 766, 'maybe', '2021-05-08 20:51:15', '2025-12-17 19:47:46', 'kdKMreZA', '3721383'), - (39, 774, 'not_attending', '2021-04-22 20:59:19', '2025-12-17 19:47:45', 'kdKMreZA', '3730212'), - (39, 777, 'not_attending', '2021-05-01 00:52:47', '2025-12-17 19:47:46', 'kdKMreZA', '3746248'), - (39, 781, 'maybe', '2021-05-03 22:02:13', '2025-12-17 19:47:46', 'kdKMreZA', '3760130'), - (39, 782, 'attending', '2021-05-03 19:27:32', '2025-12-17 19:47:46', 'kdKMreZA', '3761843'), - (39, 785, 'maybe', '2021-05-14 12:10:28', '2025-12-17 19:47:46', 'kdKMreZA', '3779779'), - (39, 789, 'maybe', '2021-05-19 16:34:41', '2025-12-17 19:47:47', 'kdKMreZA', '3785818'), - (39, 790, 'not_attending', '2021-05-07 22:10:28', '2025-12-17 19:47:46', 'kdKMreZA', '3789923'), - (39, 791, 'attending', '2021-05-10 22:51:04', '2025-12-17 19:47:46', 'kdKMreZA', '3792735'), - (39, 792, 'attending', '2021-05-19 16:35:19', '2025-12-17 19:47:46', 'kdKMreZA', '3793156'), - (39, 793, 'attending', '2021-06-02 01:57:07', '2025-12-17 19:47:47', 'kdKMreZA', '3793537'), - (39, 794, 'attending', '2021-05-23 15:31:45', '2025-12-17 19:47:47', 'kdKMreZA', '3793538'), - (39, 795, 'not_attending', '2021-06-07 23:56:53', '2025-12-17 19:47:47', 'kdKMreZA', '3793539'), - (39, 796, 'maybe', '2021-05-17 12:33:30', '2025-12-17 19:47:46', 'kdKMreZA', '3793862'), - (39, 798, 'not_attending', '2021-05-20 21:36:35', '2025-12-17 19:47:46', 'kdKMreZA', '3796262'), - (39, 808, 'maybe', '2021-05-16 02:56:09', '2025-12-17 19:47:46', 'kdKMreZA', '3807358'), - (39, 821, 'maybe', '2021-05-28 10:47:40', '2025-12-17 19:47:47', 'kdKMreZA', '3963965'), - (39, 823, 'attending', '2021-06-13 23:04:50', '2025-12-17 19:47:48', 'kdKMreZA', '3974109'), - (39, 827, 'maybe', '2021-06-05 16:17:55', '2025-12-17 19:47:47', 'kdKMreZA', '3975311'), - (39, 828, 'not_attending', '2021-06-08 23:32:24', '2025-12-17 19:47:47', 'kdKMreZA', '3975312'), - (39, 838, 'not_attending', '2021-06-09 23:14:59', '2025-12-17 19:47:47', 'kdKMreZA', '3994992'), - (39, 841, 'not_attending', '2021-06-15 20:12:19', '2025-12-17 19:47:48', 'kdKMreZA', '4007434'), - (39, 844, 'attending', '2021-06-23 17:42:32', '2025-12-17 19:47:38', 'kdKMreZA', '4014338'), - (39, 850, 'not_attending', '2021-08-25 22:45:31', '2025-12-17 19:47:42', 'kdKMreZA', '4015722'), - (39, 867, 'attending', '2021-06-23 10:30:40', '2025-12-17 19:47:38', 'kdKMreZA', '4021848'), - (39, 869, 'attending', '2021-06-30 21:21:10', '2025-12-17 19:47:38', 'kdKMreZA', '4136744'), - (39, 870, 'attending', '2021-06-30 12:38:50', '2025-12-17 19:47:39', 'kdKMreZA', '4136937'), - (39, 871, 'attending', '2021-07-10 16:12:48', '2025-12-17 19:47:39', 'kdKMreZA', '4136938'), - (39, 872, 'attending', '2021-07-20 09:57:10', '2025-12-17 19:47:40', 'kdKMreZA', '4136947'), - (39, 875, 'attending', '2021-06-26 18:44:56', '2025-12-17 19:47:38', 'kdKMreZA', '4139816'), - (39, 880, 'maybe', '2021-06-19 15:46:12', '2025-12-17 19:47:48', 'kdKMreZA', '4205383'), - (39, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdKMreZA', '4210314'), - (39, 885, 'not_attending', '2021-06-27 22:31:28', '2025-12-17 19:47:38', 'kdKMreZA', '4222370'), - (39, 887, 'attending', '2021-07-10 16:14:50', '2025-12-17 19:47:39', 'kdKMreZA', '4225444'), - (39, 898, 'maybe', '2021-06-30 12:35:32', '2025-12-17 19:47:38', 'kdKMreZA', '4236746'), - (39, 899, 'maybe', '2021-06-30 22:48:17', '2025-12-17 19:47:39', 'kdKMreZA', '4239259'), - (39, 900, 'not_attending', '2021-07-20 09:57:58', '2025-12-17 19:47:40', 'kdKMreZA', '4240316'), - (39, 901, 'attending', '2021-07-31 14:38:15', '2025-12-17 19:47:40', 'kdKMreZA', '4240317'), - (39, 902, 'attending', '2021-08-07 17:47:23', '2025-12-17 19:47:41', 'kdKMreZA', '4240318'), - (39, 903, 'not_attending', '2021-08-09 19:12:09', '2025-12-17 19:47:42', 'kdKMreZA', '4240320'), - (39, 905, 'not_attending', '2021-07-07 10:18:12', '2025-12-17 19:47:39', 'kdKMreZA', '4250163'), - (39, 917, 'not_attending', '2021-07-14 23:17:50', '2025-12-17 19:47:39', 'kdKMreZA', '4274481'), - (39, 919, 'not_attending', '2021-07-17 13:52:47', '2025-12-17 19:47:39', 'kdKMreZA', '4275957'), - (39, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdKMreZA', '4277819'), - (39, 933, 'attending', '2021-07-26 21:51:01', '2025-12-17 19:47:40', 'kdKMreZA', '4301723'), - (39, 934, 'maybe', '2021-08-02 00:16:46', '2025-12-17 19:47:40', 'kdKMreZA', '4302093'), - (39, 935, 'not_attending', '2021-08-11 21:54:33', '2025-12-17 19:47:41', 'kdKMreZA', '4304151'), - (39, 937, 'maybe', '2021-07-26 21:50:43', '2025-12-17 19:47:40', 'kdKMreZA', '4306596'), - (39, 952, 'attending', '2021-08-02 00:16:09', '2025-12-17 19:47:41', 'kdKMreZA', '4318286'), - (39, 955, 'maybe', '2021-08-09 21:46:41', '2025-12-17 19:47:41', 'kdKMreZA', '4331588'), - (39, 961, 'not_attending', '2021-08-13 20:47:27', '2025-12-17 19:47:42', 'kdKMreZA', '4345519'), - (39, 964, 'maybe', '2021-08-21 20:08:26', '2025-12-17 19:47:42', 'kdKMreZA', '4353160'), - (39, 971, 'maybe', '2021-09-08 19:31:53', '2025-12-17 19:47:43', 'kdKMreZA', '4356801'), - (39, 972, 'not_attending', '2021-08-19 19:50:11', '2025-12-17 19:47:42', 'kdKMreZA', '4358025'), - (39, 973, 'not_attending', '2021-08-18 00:38:40', '2025-12-17 19:47:42', 'kdKMreZA', '4366186'), - (39, 974, 'attending', '2021-08-28 22:01:10', '2025-12-17 19:47:42', 'kdKMreZA', '4366187'), - (39, 985, 'not_attending', '2021-08-21 17:35:18', '2025-12-17 19:47:42', 'kdKMreZA', '4391748'), - (39, 986, 'attending', '2021-08-21 20:08:06', '2025-12-17 19:47:42', 'kdKMreZA', '4394209'), - (39, 987, 'attending', '2021-08-30 20:22:24', '2025-12-17 19:47:43', 'kdKMreZA', '4402634'), - (39, 988, 'attending', '2021-08-26 18:15:52', '2025-12-17 19:47:42', 'kdKMreZA', '4402823'), - (39, 989, 'maybe', '2021-09-01 22:12:56', '2025-12-17 19:47:43', 'kdKMreZA', '4414282'), - (39, 990, 'attending', '2021-08-30 02:40:42', '2025-12-17 19:47:43', 'kdKMreZA', '4420735'), - (39, 991, 'not_attending', '2021-09-01 15:19:48', '2025-12-17 19:47:43', 'kdKMreZA', '4420738'), - (39, 992, 'attending', '2021-09-18 13:39:18', '2025-12-17 19:47:33', 'kdKMreZA', '4420739'), - (39, 993, 'attending', '2021-09-16 22:34:50', '2025-12-17 19:47:34', 'kdKMreZA', '4420741'), - (39, 994, 'attending', '2021-10-02 21:26:26', '2025-12-17 19:47:34', 'kdKMreZA', '4420742'), - (39, 995, 'attending', '2021-10-04 19:43:29', '2025-12-17 19:47:34', 'kdKMreZA', '4420744'), - (39, 996, 'attending', '2021-10-15 22:38:16', '2025-12-17 19:47:35', 'kdKMreZA', '4420747'), - (39, 997, 'attending', '2021-10-23 17:07:06', '2025-12-17 19:47:35', 'kdKMreZA', '4420748'), - (39, 998, 'attending', '2021-10-30 21:16:17', '2025-12-17 19:47:36', 'kdKMreZA', '4420749'), - (39, 1016, 'not_attending', '2021-09-09 22:28:08', '2025-12-17 19:47:43', 'kdKMreZA', '4441271'), - (39, 1019, 'not_attending', '2021-09-16 22:32:41', '2025-12-17 19:47:43', 'kdKMreZA', '4450515'), - (39, 1021, 'attending', '2021-09-20 22:32:46', '2025-12-17 19:47:34', 'kdKMreZA', '4451803'), - (39, 1022, 'attending', '2021-09-12 23:32:10', '2025-12-17 19:47:43', 'kdKMreZA', '4458628'), - (39, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKMreZA', '4461883'), - (39, 1036, 'attending', '2021-09-20 20:29:17', '2025-12-17 19:47:34', 'kdKMreZA', '4493166'), - (39, 1040, 'maybe', '2021-12-11 22:25:44', '2025-12-17 19:47:38', 'kdKMreZA', '4496605'), - (39, 1041, 'attending', '2021-12-04 23:42:17', '2025-12-17 19:47:37', 'kdKMreZA', '4496606'), - (39, 1049, 'maybe', '2022-01-22 20:40:36', '2025-12-17 19:47:32', 'kdKMreZA', '4496614'), - (39, 1050, 'attending', '2022-01-29 04:31:38', '2025-12-17 19:47:32', 'kdKMreZA', '4496615'), - (39, 1051, 'attending', '2022-02-05 06:10:23', '2025-12-17 19:47:32', 'kdKMreZA', '4496616'), - (39, 1052, 'attending', '2022-01-11 16:19:06', '2025-12-17 19:47:31', 'kdKMreZA', '4496617'), - (39, 1053, 'not_attending', '2022-02-14 05:09:56', '2025-12-17 19:47:32', 'kdKMreZA', '4496618'), - (39, 1054, 'attending', '2022-03-17 11:57:18', '2025-12-17 19:47:25', 'kdKMreZA', '4496619'), - (39, 1055, 'attending', '2021-12-18 18:20:09', '2025-12-17 19:47:31', 'kdKMreZA', '4496621'), - (39, 1056, 'attending', '2022-01-04 20:58:35', '2025-12-17 19:47:31', 'kdKMreZA', '4496622'), - (39, 1058, 'maybe', '2022-02-26 16:21:26', '2025-12-17 19:47:33', 'kdKMreZA', '4496625'), - (39, 1059, 'not_attending', '2022-03-10 14:46:25', '2025-12-17 19:47:33', 'kdKMreZA', '4496626'), - (39, 1060, 'not_attending', '2022-03-22 11:35:30', '2025-12-17 19:47:25', 'kdKMreZA', '4496627'), - (39, 1061, 'not_attending', '2022-02-06 06:34:37', '2025-12-17 19:47:32', 'kdKMreZA', '4496628'), - (39, 1062, 'not_attending', '2022-02-28 22:10:29', '2025-12-17 19:47:33', 'kdKMreZA', '4496629'), - (39, 1066, 'attending', '2021-09-25 19:02:21', '2025-12-17 19:47:34', 'kdKMreZA', '4506039'), - (39, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKMreZA', '4508342'), - (39, 1068, 'maybe', '2021-09-27 10:59:52', '2025-12-17 19:47:34', 'kdKMreZA', '4511471'), - (39, 1071, 'not_attending', '2021-10-04 22:53:59', '2025-12-17 19:47:34', 'kdKMreZA', '4516078'), - (39, 1072, 'attending', '2021-10-06 13:58:52', '2025-12-17 19:47:34', 'kdKMreZA', '4516287'), - (39, 1074, 'attending', '2021-09-29 02:06:32', '2025-12-17 19:47:34', 'kdKMreZA', '4528953'), - (39, 1077, 'attending', '2021-10-13 22:59:40', '2025-12-17 19:47:34', 'kdKMreZA', '4540903'), - (39, 1078, 'not_attending', '2021-10-07 21:20:22', '2025-12-17 19:47:34', 'kdKMreZA', '4541281'), - (39, 1079, 'attending', '2021-10-20 01:00:54', '2025-12-17 19:47:35', 'kdKMreZA', '4563823'), - (39, 1082, 'attending', '2021-10-12 15:19:56', '2025-12-17 19:47:35', 'kdKMreZA', '4566762'), - (39, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKMreZA', '4568602'), - (39, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKMreZA', '4572153'), - (39, 1089, 'not_attending', '2021-10-18 22:49:29', '2025-12-17 19:47:35', 'kdKMreZA', '4574712'), - (39, 1090, 'maybe', '2021-10-16 16:39:45', '2025-12-17 19:47:35', 'kdKMreZA', '4574713'), - (39, 1092, 'not_attending', '2021-10-21 22:54:10', '2025-12-17 19:47:35', 'kdKMreZA', '4582837'), - (39, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'kdKMreZA', '4585962'), - (39, 1094, 'attending', '2021-10-31 22:31:18', '2025-12-17 19:47:36', 'kdKMreZA', '4587337'), - (39, 1095, 'attending', '2021-10-27 22:28:39', '2025-12-17 19:47:35', 'kdKMreZA', '4596356'), - (39, 1096, 'maybe', '2021-10-29 19:40:19', '2025-12-17 19:47:36', 'kdKMreZA', '4596453'), - (39, 1097, 'attending', '2021-11-03 21:38:21', '2025-12-17 19:47:36', 'kdKMreZA', '4598860'), - (39, 1098, 'attending', '2021-11-10 16:49:11', '2025-12-17 19:47:36', 'kdKMreZA', '4598861'), - (39, 1099, 'not_attending', '2021-11-03 21:39:27', '2025-12-17 19:47:36', 'kdKMreZA', '4602797'), - (39, 1108, 'attending', '2021-11-16 14:43:10', '2025-12-17 19:47:37', 'kdKMreZA', '4632276'), - (39, 1114, 'attending', '2021-11-12 00:23:40', '2025-12-17 19:47:36', 'kdKMreZA', '4637896'), - (39, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKMreZA', '4642994'), - (39, 1117, 'attending', '2021-12-09 00:45:56', '2025-12-17 19:47:37', 'kdKMreZA', '4642995'), - (39, 1118, 'attending', '2021-12-08 20:32:43', '2025-12-17 19:47:38', 'kdKMreZA', '4642996'), - (39, 1119, 'not_attending', '2021-12-22 17:02:49', '2025-12-17 19:47:31', 'kdKMreZA', '4642997'), - (39, 1122, 'attending', '2021-12-02 20:28:32', '2025-12-17 19:47:37', 'kdKMreZA', '4644023'), - (39, 1123, 'attending', '2021-12-10 23:24:15', '2025-12-17 19:47:38', 'kdKMreZA', '4644024'), - (39, 1124, 'maybe', '2021-12-13 17:37:23', '2025-12-17 19:47:38', 'kdKMreZA', '4644025'), - (39, 1126, 'attending', '2021-12-10 14:04:47', '2025-12-17 19:47:38', 'kdKMreZA', '4645687'), - (39, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKMreZA', '4645698'), - (39, 1128, 'attending', '2021-11-20 18:28:22', '2025-12-17 19:47:37', 'kdKMreZA', '4645704'), - (39, 1129, 'attending', '2021-11-26 19:23:01', '2025-12-17 19:47:37', 'kdKMreZA', '4645705'), - (39, 1130, 'attending', '2021-12-04 23:42:25', '2025-12-17 19:47:37', 'kdKMreZA', '4658824'), - (39, 1131, 'attending', '2021-12-18 18:20:23', '2025-12-17 19:47:31', 'kdKMreZA', '4658825'), - (39, 1132, 'attending', '2021-11-22 03:07:19', '2025-12-17 19:47:37', 'kdKMreZA', '4660657'), - (39, 1134, 'attending', '2021-11-24 14:30:06', '2025-12-17 19:47:37', 'kdKMreZA', '4668385'), - (39, 1135, 'attending', '2021-11-26 19:22:47', '2025-12-17 19:47:37', 'kdKMreZA', '4670469'), - (39, 1137, 'maybe', '2021-11-28 20:56:33', '2025-12-17 19:47:37', 'kdKMreZA', '4674797'), - (39, 1138, 'maybe', '2021-11-29 19:05:20', '2025-12-17 19:47:37', 'kdKMreZA', '4675407'), - (39, 1139, 'attending', '2021-12-02 23:51:59', '2025-12-17 19:47:37', 'kdKMreZA', '4675604'), - (39, 1140, 'not_attending', '2021-12-04 02:00:51', '2025-12-17 19:47:37', 'kdKMreZA', '4679701'), - (39, 1143, 'attending', '2021-12-01 21:57:15', '2025-12-17 19:47:37', 'kdKMreZA', '4683667'), - (39, 1144, 'not_attending', '2021-12-08 00:51:43', '2025-12-17 19:47:37', 'kdKMreZA', '4687090'), - (39, 1145, 'attending', '2021-12-09 23:15:06', '2025-12-17 19:47:38', 'kdKMreZA', '4691157'), - (39, 1146, 'not_attending', '2021-12-10 23:24:04', '2025-12-17 19:47:38', 'kdKMreZA', '4692841'), - (39, 1148, 'attending', '2021-12-17 23:55:38', '2025-12-17 19:47:31', 'kdKMreZA', '4692843'), - (39, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKMreZA', '4694407'), - (39, 1151, 'attending', '2022-01-04 20:38:47', '2025-12-17 19:47:31', 'kdKMreZA', '4708704'), - (39, 1152, 'attending', '2022-01-08 20:54:00', '2025-12-17 19:47:31', 'kdKMreZA', '4708705'), - (39, 1153, 'attending', '2022-01-13 04:40:46', '2025-12-17 19:47:32', 'kdKMreZA', '4708707'), - (39, 1154, 'attending', '2022-01-26 16:16:42', '2025-12-17 19:47:32', 'kdKMreZA', '4708708'), - (39, 1155, 'maybe', '2021-12-20 19:18:53', '2025-12-17 19:47:31', 'kdKMreZA', '4715119'), - (39, 1156, 'attending', '2021-12-18 21:47:43', '2025-12-17 19:47:31', 'kdKMreZA', '4715207'), - (39, 1163, 'attending', '2021-12-27 22:41:19', '2025-12-17 19:47:31', 'kdKMreZA', '4724206'), - (39, 1164, 'attending', '2022-01-03 17:12:33', '2025-12-17 19:47:31', 'kdKMreZA', '4724208'), - (39, 1165, 'attending', '2022-01-03 17:12:49', '2025-12-17 19:47:31', 'kdKMreZA', '4724210'), - (39, 1173, 'attending', '2022-01-04 20:58:40', '2025-12-17 19:47:31', 'kdKMreZA', '4736495'), - (39, 1174, 'attending', '2022-01-11 16:19:13', '2025-12-17 19:47:31', 'kdKMreZA', '4736496'), - (39, 1175, 'attending', '2022-01-22 23:47:57', '2025-12-17 19:47:32', 'kdKMreZA', '4736497'), - (39, 1176, 'attending', '2022-02-05 06:10:33', '2025-12-17 19:47:32', 'kdKMreZA', '4736498'), - (39, 1177, 'not_attending', '2022-02-06 06:34:41', '2025-12-17 19:47:32', 'kdKMreZA', '4736499'), - (39, 1178, 'attending', '2022-01-29 04:31:44', '2025-12-17 19:47:32', 'kdKMreZA', '4736500'), - (39, 1179, 'not_attending', '2022-02-14 05:10:00', '2025-12-17 19:47:32', 'kdKMreZA', '4736501'), - (39, 1180, 'maybe', '2022-02-26 16:21:19', '2025-12-17 19:47:33', 'kdKMreZA', '4736502'), - (39, 1181, 'not_attending', '2022-02-28 22:10:34', '2025-12-17 19:47:33', 'kdKMreZA', '4736503'), - (39, 1182, 'not_attending', '2022-03-10 14:46:18', '2025-12-17 19:47:33', 'kdKMreZA', '4736504'), - (39, 1183, 'attending', '2022-01-11 23:38:30', '2025-12-17 19:47:31', 'kdKMreZA', '4742171'), - (39, 1184, 'attending', '2022-01-15 00:24:08', '2025-12-17 19:47:31', 'kdKMreZA', '4742350'), - (39, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKMreZA', '4746789'), - (39, 1188, 'maybe', '2022-01-11 16:20:08', '2025-12-17 19:47:32', 'kdKMreZA', '4753929'), - (39, 1200, 'maybe', '2022-01-18 19:09:17', '2025-12-17 19:47:32', 'kdKMreZA', '4766830'), - (39, 1201, 'not_attending', '2022-01-21 00:08:31', '2025-12-17 19:47:32', 'kdKMreZA', '4766841'), - (39, 1202, 'not_attending', '2022-01-26 20:25:16', '2025-12-17 19:47:32', 'kdKMreZA', '4769423'), - (39, 1211, 'maybe', '2022-01-26 20:25:40', '2025-12-17 19:47:32', 'kdKMreZA', '4780754'), - (39, 1212, 'attending', '2022-01-31 23:53:40', '2025-12-17 19:47:32', 'kdKMreZA', '4780759'), - (39, 1213, 'attending', '2022-02-07 00:59:50', '2025-12-17 19:47:32', 'kdKMreZA', '4780760'), - (39, 1214, 'not_attending', '2022-02-17 23:47:55', '2025-12-17 19:47:32', 'kdKMreZA', '4780761'), - (39, 1219, 'attending', '2022-01-31 15:09:32', '2025-12-17 19:47:32', 'kdKMreZA', '4788466'), - (39, 1222, 'maybe', '2022-02-15 14:33:22', '2025-12-17 19:47:32', 'kdKMreZA', '5015628'), - (39, 1224, 'not_attending', '2022-01-31 23:55:45', '2025-12-17 19:47:32', 'kdKMreZA', '5016682'), - (39, 1228, 'attending', '2022-02-11 16:51:33', '2025-12-17 19:47:32', 'kdKMreZA', '5028238'), - (39, 1229, 'maybe', '2022-02-14 05:09:41', '2025-12-17 19:47:32', 'kdKMreZA', '5034963'), - (39, 1232, 'maybe', '2022-02-09 03:49:00', '2025-12-17 19:47:32', 'kdKMreZA', '5038850'), - (39, 1234, 'maybe', '2022-02-14 05:08:46', '2025-12-17 19:47:32', 'kdKMreZA', '5042197'), - (39, 1236, 'maybe', '2022-02-16 03:50:35', '2025-12-17 19:47:32', 'kdKMreZA', '5045826'), - (39, 1238, 'maybe', '2022-02-23 19:59:55', '2025-12-17 19:47:32', 'kdKMreZA', '5052236'), - (39, 1239, 'not_attending', '2022-03-03 00:49:42', '2025-12-17 19:47:33', 'kdKMreZA', '5052238'), - (39, 1240, 'maybe', '2022-03-16 00:53:50', '2025-12-17 19:47:33', 'kdKMreZA', '5052239'), - (39, 1242, 'attending', '2022-03-30 22:25:14', '2025-12-17 19:47:25', 'kdKMreZA', '5052241'), - (39, 1246, 'maybe', '2022-02-28 22:10:22', '2025-12-17 19:47:33', 'kdKMreZA', '5064727'), - (39, 1257, 'attending', '2022-02-28 21:15:12', '2025-12-17 19:47:33', 'kdKMreZA', '5129274'), - (39, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKMreZA', '5132533'), - (39, 1266, 'attending', '2022-03-12 21:52:57', '2025-12-17 19:47:33', 'kdKMreZA', '5166407'), - (39, 1267, 'maybe', '2022-03-17 11:57:00', '2025-12-17 19:47:25', 'kdKMreZA', '5169578'), - (39, 1268, 'attending', '2022-03-12 21:35:45', '2025-12-17 19:47:33', 'kdKMreZA', '5176296'), - (39, 1272, 'attending', '2022-03-17 11:57:46', '2025-12-17 19:47:25', 'kdKMreZA', '5186582'), - (39, 1273, 'not_attending', '2022-03-22 11:35:25', '2025-12-17 19:47:25', 'kdKMreZA', '5186583'), - (39, 1274, 'attending', '2022-03-28 17:40:50', '2025-12-17 19:47:26', 'kdKMreZA', '5186585'), - (39, 1275, 'attending', '2022-03-28 17:40:45', '2025-12-17 19:47:26', 'kdKMreZA', '5186587'), - (39, 1276, 'maybe', '2022-03-26 14:07:05', '2025-12-17 19:47:25', 'kdKMreZA', '5186820'), - (39, 1281, 'attending', '2022-04-09 19:04:39', '2025-12-17 19:47:27', 'kdKMreZA', '5190437'), - (39, 1284, 'maybe', '2022-04-16 15:05:21', '2025-12-17 19:47:27', 'kdKMreZA', '5195095'), - (39, 1285, 'not_attending', '2022-03-22 11:35:19', '2025-12-17 19:47:25', 'kdKMreZA', '5196763'), - (39, 1288, 'maybe', '2022-03-28 17:40:24', '2025-12-17 19:47:25', 'kdKMreZA', '5199460'), - (39, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKMreZA', '5215989'), - (39, 1304, 'maybe', '2022-04-06 16:17:30', '2025-12-17 19:47:26', 'kdKMreZA', '5223468'), - (39, 1305, 'maybe', '2022-04-10 20:41:45', '2025-12-17 19:47:27', 'kdKMreZA', '5223673'), - (39, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdKMreZA', '5223686'), - (39, 1308, 'not_attending', '2022-04-13 21:53:48', '2025-12-17 19:47:27', 'kdKMreZA', '5226703'), - (39, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'kdKMreZA', '5227432'), - (39, 1313, 'attending', '2022-04-11 01:53:42', '2025-12-17 19:47:27', 'kdKMreZA', '5231461'), - (39, 1314, 'not_attending', '2022-04-11 21:04:14', '2025-12-17 19:47:27', 'kdKMreZA', '5233137'), - (39, 1315, 'not_attending', '2022-04-22 22:36:34', '2025-12-17 19:47:27', 'kdKMreZA', '5237522'), - (39, 1317, 'attending', '2022-04-11 21:04:18', '2025-12-17 19:47:27', 'kdKMreZA', '5237543'), - (39, 1330, 'maybe', '2022-04-18 11:49:16', '2025-12-17 19:47:27', 'kdKMreZA', '5242155'), - (39, 1337, 'not_attending', '2022-04-20 15:47:31', '2025-12-17 19:47:27', 'kdKMreZA', '5245036'), - (39, 1344, 'not_attending', '2022-04-29 23:39:20', '2025-12-17 19:47:28', 'kdKMreZA', '5247465'), - (39, 1345, 'attending', '2022-04-22 18:43:32', '2025-12-17 19:47:27', 'kdKMreZA', '5247466'), - (39, 1346, 'attending', '2022-04-22 18:42:51', '2025-12-17 19:47:27', 'kdKMreZA', '5247467'), - (39, 1353, 'attending', '2022-04-24 15:58:09', '2025-12-17 19:47:27', 'kdKMreZA', '5251777'), - (39, 1355, 'not_attending', '2022-04-29 14:27:22', '2025-12-17 19:47:28', 'kdKMreZA', '5252573'), - (39, 1358, 'attending', '2022-04-24 13:24:32', '2025-12-17 19:47:27', 'kdKMreZA', '5258022'), - (39, 1361, 'attending', '2022-04-25 14:42:13', '2025-12-17 19:47:28', 'kdKMreZA', '5260491'), - (39, 1362, 'not_attending', '2022-04-29 23:39:25', '2025-12-17 19:47:28', 'kdKMreZA', '5260800'), - (39, 1368, 'attending', '2022-05-06 22:53:32', '2025-12-17 19:47:28', 'kdKMreZA', '5262783'), - (39, 1371, 'not_attending', '2022-04-27 21:02:45', '2025-12-17 19:47:27', 'kdKMreZA', '5263784'), - (39, 1372, 'maybe', '2022-05-01 19:10:23', '2025-12-17 19:47:28', 'kdKMreZA', '5264352'), - (39, 1374, 'not_attending', '2022-05-06 23:02:42', '2025-12-17 19:47:28', 'kdKMreZA', '5269930'), - (39, 1378, 'attending', '2022-05-10 01:36:58', '2025-12-17 19:47:28', 'kdKMreZA', '5271448'), - (39, 1379, 'attending', '2022-05-10 01:36:27', '2025-12-17 19:47:29', 'kdKMreZA', '5271449'), - (39, 1380, 'attending', '2022-05-28 20:18:58', '2025-12-17 19:47:30', 'kdKMreZA', '5271450'), - (39, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'kdKMreZA', '5276469'), - (39, 1385, 'not_attending', '2022-05-11 12:33:28', '2025-12-17 19:47:28', 'kdKMreZA', '5277822'), - (39, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdKMreZA', '5278159'), - (39, 1388, 'attending', '2022-05-06 18:49:20', '2025-12-17 19:47:28', 'kdKMreZA', '5278201'), - (39, 1396, 'attending', '2022-05-13 18:00:25', '2025-12-17 19:47:28', 'kdKMreZA', '5281103'), - (39, 1397, 'attending', '2022-05-18 01:00:47', '2025-12-17 19:47:29', 'kdKMreZA', '5281104'), - (39, 1400, 'attending', '2022-05-10 01:51:40', '2025-12-17 19:47:29', 'kdKMreZA', '5284864'), - (39, 1401, 'not_attending', '2022-05-16 18:45:52', '2025-12-17 19:47:29', 'kdKMreZA', '5286295'), - (39, 1407, 'attending', '2022-06-04 19:18:03', '2025-12-17 19:47:30', 'kdKMreZA', '5363695'), - (39, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdKMreZA', '5365960'), - (39, 1409, 'attending', '2022-05-22 02:40:20', '2025-12-17 19:47:30', 'kdKMreZA', '5367032'), - (39, 1415, 'maybe', '2022-05-31 10:21:18', '2025-12-17 19:47:30', 'kdKMreZA', '5368973'), - (39, 1423, 'not_attending', '2022-06-15 22:10:16', '2025-12-17 19:47:17', 'kdKMreZA', '5375727'), - (39, 1427, 'not_attending', '2022-05-24 21:32:48', '2025-12-17 19:47:30', 'kdKMreZA', '5376074'), - (39, 1428, 'not_attending', '2022-06-06 14:56:31', '2025-12-17 19:47:30', 'kdKMreZA', '5378247'), - (39, 1431, 'not_attending', '2022-06-11 14:22:07', '2025-12-17 19:47:31', 'kdKMreZA', '5389605'), - (39, 1438, 'maybe', '2022-06-01 19:55:25', '2025-12-17 19:47:30', 'kdKMreZA', '5395032'), - (39, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdKMreZA', '5397265'), - (39, 1444, 'not_attending', '2022-06-11 14:22:14', '2025-12-17 19:47:30', 'kdKMreZA', '5397614'), - (39, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'kdKMreZA', '5403967'), - (39, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdKMreZA', '5404786'), - (39, 1460, 'maybe', '2022-06-13 10:29:25', '2025-12-17 19:47:31', 'kdKMreZA', '5404817'), - (39, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdKMreZA', '5405203'), - (39, 1477, 'attending', '2022-06-21 22:58:53', '2025-12-17 19:47:17', 'kdKMreZA', '5408766'), - (39, 1478, 'attending', '2022-06-24 18:38:18', '2025-12-17 19:47:17', 'kdKMreZA', '5408794'), - (39, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'kdKMreZA', '5411699'), - (39, 1482, 'not_attending', '2022-06-24 18:37:48', '2025-12-17 19:47:19', 'kdKMreZA', '5412550'), - (39, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdKMreZA', '5415046'), - (39, 1493, 'not_attending', '2022-06-25 18:21:33', '2025-12-17 19:47:19', 'kdKMreZA', '5420218'), - (39, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdKMreZA', '5422086'), - (39, 1498, 'attending', '2022-07-01 15:39:21', '2025-12-17 19:47:19', 'kdKMreZA', '5422406'), - (39, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdKMreZA', '5424565'), - (39, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdKMreZA', '5426882'), - (39, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'kdKMreZA', '5427083'), - (39, 1508, 'maybe', '2022-07-12 18:48:08', '2025-12-17 19:47:19', 'kdKMreZA', '5433453'), - (39, 1511, 'not_attending', '2022-07-09 20:10:55', '2025-12-17 19:47:19', 'kdKMreZA', '5437733'), - (39, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdKMreZA', '5441125'), - (39, 1514, 'maybe', '2022-07-22 18:01:25', '2025-12-17 19:47:20', 'kdKMreZA', '5441126'), - (39, 1515, 'attending', '2022-08-02 01:31:30', '2025-12-17 19:47:21', 'kdKMreZA', '5441128'), - (39, 1516, 'not_attending', '2022-08-19 19:31:31', '2025-12-17 19:47:23', 'kdKMreZA', '5441129'), - (39, 1517, 'attending', '2022-08-26 20:52:37', '2025-12-17 19:47:23', 'kdKMreZA', '5441130'), - (39, 1518, 'maybe', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdKMreZA', '5441131'), - (39, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'kdKMreZA', '5441132'), - (39, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'kdKMreZA', '5446643'), - (39, 1531, 'attending', '2022-07-16 18:46:05', '2025-12-17 19:47:19', 'kdKMreZA', '5448756'), - (39, 1532, 'maybe', '2022-07-23 17:25:55', '2025-12-17 19:47:20', 'kdKMreZA', '5448757'), - (39, 1533, 'not_attending', '2022-07-29 09:23:25', '2025-12-17 19:47:21', 'kdKMreZA', '5448758'), - (39, 1534, 'attending', '2022-08-02 01:31:26', '2025-12-17 19:47:21', 'kdKMreZA', '5448759'), - (39, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdKMreZA', '5453325'), - (39, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdKMreZA', '5454516'), - (39, 1544, 'attending', '2022-09-17 12:05:39', '2025-12-17 19:47:11', 'kdKMreZA', '5454517'), - (39, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdKMreZA', '5454605'), - (39, 1547, 'maybe', '2022-07-26 19:21:33', '2025-12-17 19:47:20', 'kdKMreZA', '5454608'), - (39, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdKMreZA', '5455037'), - (39, 1552, 'attending', '2022-07-19 22:39:15', '2025-12-17 19:47:20', 'kdKMreZA', '5455149'), - (39, 1559, 'maybe', '2022-09-28 16:59:16', '2025-12-17 19:47:11', 'kdKMreZA', '5458731'), - (39, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdKMreZA', '5461278'), - (39, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdKMreZA', '5469480'), - (39, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'kdKMreZA', '5471073'), - (39, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdKMreZA', '5474663'), - (39, 1567, 'attending', '2022-07-31 16:47:23', '2025-12-17 19:47:21', 'kdKMreZA', '5477629'), - (39, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdKMreZA', '5482022'), - (39, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'kdKMreZA', '5482793'), - (39, 1580, 'maybe', '2022-08-08 10:58:18', '2025-12-17 19:47:22', 'kdKMreZA', '5488912'), - (39, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdKMreZA', '5492192'), - (39, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdKMreZA', '5493139'), - (39, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdKMreZA', '5493200'), - (39, 1591, 'attending', '2022-08-08 23:18:45', '2025-12-17 19:47:22', 'kdKMreZA', '5493764'), - (39, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdKMreZA', '5502188'), - (39, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdKMreZA', '5505059'), - (39, 1609, 'maybe', '2022-08-29 14:09:07', '2025-12-17 19:47:23', 'kdKMreZA', '5506590'), - (39, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdKMreZA', '5509055'), - (39, 1618, 'attending', '2022-08-28 20:43:08', '2025-12-17 19:47:23', 'kdKMreZA', '5512005'), - (39, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdKMreZA', '5512862'), - (39, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdKMreZA', '5513985'), - (39, 1626, 'not_attending', '2022-08-26 00:34:27', '2025-12-17 19:47:11', 'kdKMreZA', '5519981'), - (39, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdKMreZA', '5522550'), - (39, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdKMreZA', '5534683'), - (39, 1631, 'attending', '2022-08-27 15:13:24', '2025-12-17 19:47:23', 'kdKMreZA', '5534684'), - (39, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdKMreZA', '5537735'), - (39, 1636, 'attending', '2022-09-04 23:33:36', '2025-12-17 19:47:24', 'kdKMreZA', '5538454'), - (39, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdKMreZA', '5540859'), - (39, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdKMreZA', '5546619'), - (39, 1648, 'maybe', '2022-09-09 17:57:03', '2025-12-17 19:47:24', 'kdKMreZA', '5548974'), - (39, 1649, 'maybe', '2022-09-03 17:43:05', '2025-12-17 19:47:24', 'kdKMreZA', '5549346'), - (39, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'kdKMreZA', '5555245'), - (39, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdKMreZA', '5557747'), - (39, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdKMreZA', '5560255'), - (39, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdKMreZA', '5562906'), - (39, 1666, 'not_attending', '2022-09-27 22:40:51', '2025-12-17 19:47:11', 'kdKMreZA', '5563208'), - (39, 1667, 'attending', '2022-09-24 18:30:09', '2025-12-17 19:47:11', 'kdKMreZA', '5563221'), - (39, 1668, 'not_attending', '2022-10-01 15:28:23', '2025-12-17 19:47:12', 'kdKMreZA', '5563222'), - (39, 1672, 'attending', '2022-09-17 12:05:44', '2025-12-17 19:47:11', 'kdKMreZA', '5586237'), - (39, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdKMreZA', '5600604'), - (39, 1679, 'not_attending', '2022-10-04 22:13:16', '2025-12-17 19:47:12', 'kdKMreZA', '5601099'), - (39, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdKMreZA', '5605544'), - (39, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'kdKMreZA', '5606737'), - (39, 1704, 'attending', '2022-10-07 01:29:28', '2025-12-17 19:47:12', 'kdKMreZA', '5610508'), - (39, 1708, 'attending', '2022-10-05 21:56:17', '2025-12-17 19:47:12', 'kdKMreZA', '5617648'), - (39, 1719, 'attending', '2022-10-08 16:30:24', '2025-12-17 19:47:12', 'kdKMreZA', '5630958'), - (39, 1720, 'not_attending', '2022-10-14 12:42:14', '2025-12-17 19:47:12', 'kdKMreZA', '5630959'), - (39, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdKMreZA', '5630960'), - (39, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdKMreZA', '5630961'), - (39, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdKMreZA', '5630962'), - (39, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdKMreZA', '5630966'), - (39, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdKMreZA', '5630967'), - (39, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdKMreZA', '5630968'), - (39, 1727, 'not_attending', '2022-11-28 22:38:23', '2025-12-17 19:47:16', 'kdKMreZA', '5630969'), - (39, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdKMreZA', '5635406'), - (39, 1735, 'attending', '2022-10-08 17:30:06', '2025-12-17 19:47:12', 'kdKMreZA', '5637484'), - (39, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdKMreZA', '5638765'), - (39, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdKMreZA', '5640097'), - (39, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdKMreZA', '5640843'), - (39, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdKMreZA', '5641521'), - (39, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdKMreZA', '5642818'), - (39, 1747, 'maybe', '2022-10-25 12:26:42', '2025-12-17 19:47:14', 'kdKMreZA', '5648009'), - (39, 1750, 'not_attending', '2022-11-04 02:29:37', '2025-12-17 19:47:15', 'kdKMreZA', '5652365'), - (39, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdKMreZA', '5652395'), - (39, 1759, 'attending', '2022-10-22 17:06:52', '2025-12-17 19:47:13', 'kdKMreZA', '5669097'), - (39, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdKMreZA', '5670445'), - (39, 1763, 'maybe', '2022-11-11 21:46:31', '2025-12-17 19:47:15', 'kdKMreZA', '5670803'), - (39, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdKMreZA', '5671637'), - (39, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdKMreZA', '5672329'), - (39, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdKMreZA', '5674057'), - (39, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdKMreZA', '5674060'), - (39, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdKMreZA', '5677461'), - (39, 1776, 'maybe', '2022-11-08 20:04:03', '2025-12-17 19:47:15', 'kdKMreZA', '5691067'), - (39, 1781, 'maybe', '2022-11-02 17:21:34', '2025-12-17 19:47:15', 'kdKMreZA', '5696178'), - (39, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdKMreZA', '5698046'), - (39, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdKMreZA', '5699760'), - (39, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdKMreZA', '5741601'), - (39, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdKMreZA', '5763458'), - (39, 1799, 'attending', '2022-11-26 18:52:10', '2025-12-17 19:47:16', 'kdKMreZA', '5764666'), - (39, 1800, 'not_attending', '2022-11-19 20:43:46', '2025-12-17 19:47:16', 'kdKMreZA', '5764667'), - (39, 1801, 'not_attending', '2022-11-28 22:38:08', '2025-12-17 19:47:16', 'kdKMreZA', '5764668'), - (39, 1802, 'not_attending', '2022-12-10 15:20:12', '2025-12-17 19:47:17', 'kdKMreZA', '5764669'), - (39, 1804, 'attending', '2023-01-27 17:03:44', '2025-12-17 19:47:06', 'kdKMreZA', '5764674'), - (39, 1805, 'attending', '2023-02-02 22:16:25', '2025-12-17 19:47:06', 'kdKMreZA', '5764675'), - (39, 1806, 'attending', '2023-01-20 14:22:37', '2025-12-17 19:47:05', 'kdKMreZA', '5764676'), - (39, 1807, 'attending', '2023-01-12 22:01:11', '2025-12-17 19:47:05', 'kdKMreZA', '5764677'), - (39, 1808, 'attending', '2023-03-01 14:24:43', '2025-12-17 19:47:08', 'kdKMreZA', '5764678'), - (39, 1809, 'attending', '2023-04-15 14:38:08', '2025-12-17 19:46:59', 'kdKMreZA', '5764679'), - (39, 1810, 'attending', '2023-04-22 11:57:36', '2025-12-17 19:47:00', 'kdKMreZA', '5764680'), - (39, 1811, 'not_attending', '2023-05-06 15:33:28', '2025-12-17 19:47:02', 'kdKMreZA', '5764681'), - (39, 1812, 'attending', '2023-03-11 19:36:18', '2025-12-17 19:47:09', 'kdKMreZA', '5764682'), - (39, 1814, 'attending', '2023-02-25 19:01:14', '2025-12-17 19:47:08', 'kdKMreZA', '5764684'), - (39, 1815, 'not_attending', '2023-02-18 15:51:27', '2025-12-17 19:47:07', 'kdKMreZA', '5764685'), - (39, 1816, 'not_attending', '2023-05-20 15:28:19', '2025-12-17 19:47:03', 'kdKMreZA', '5764686'), - (39, 1818, 'not_attending', '2023-02-10 19:27:24', '2025-12-17 19:47:07', 'kdKMreZA', '5764688'), - (39, 1819, 'attending', '2023-03-31 23:23:08', '2025-12-17 19:46:58', 'kdKMreZA', '5764689'), - (39, 1820, 'not_attending', '2023-04-07 19:13:44', '2025-12-17 19:46:58', 'kdKMreZA', '5764690'), - (39, 1821, 'attending', '2023-03-17 11:42:17', '2025-12-17 19:46:56', 'kdKMreZA', '5764691'), - (39, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdKMreZA', '5774172'), - (39, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'kdKMreZA', '5818247'), - (39, 1833, 'maybe', '2022-12-05 14:23:19', '2025-12-17 19:47:16', 'kdKMreZA', '5819465'), - (39, 1834, 'not_attending', '2022-12-10 15:20:07', '2025-12-17 19:47:17', 'kdKMreZA', '5819470'), - (39, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdKMreZA', '5819471'), - (39, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdKMreZA', '5827739'), - (39, 1843, 'maybe', '2022-12-17 21:46:54', '2025-12-17 19:47:04', 'kdKMreZA', '5844304'), - (39, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdKMreZA', '5844306'), - (39, 1847, 'maybe', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdKMreZA', '5850159'), - (39, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdKMreZA', '5858999'), - (39, 1852, 'not_attending', '2023-01-11 21:05:57', '2025-12-17 19:47:05', 'kdKMreZA', '5869898'), - (39, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdKMreZA', '5871984'), - (39, 1855, 'maybe', '2023-01-12 21:57:04', '2025-12-17 19:47:05', 'kdKMreZA', '5873968'), - (39, 1859, 'maybe', '2023-01-20 19:47:52', '2025-12-17 19:47:05', 'kdKMreZA', '5876234'), - (39, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdKMreZA', '5876354'), - (39, 1864, 'attending', '2023-01-20 14:22:41', '2025-12-17 19:47:05', 'kdKMreZA', '5879675'), - (39, 1865, 'attending', '2023-01-27 17:03:48', '2025-12-17 19:47:06', 'kdKMreZA', '5879676'), - (39, 1866, 'maybe', '2023-01-24 14:37:17', '2025-12-17 19:47:05', 'kdKMreZA', '5880939'), - (39, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdKMreZA', '5880940'), - (39, 1868, 'maybe', '2023-02-21 21:15:42', '2025-12-17 19:47:07', 'kdKMreZA', '5880942'), - (39, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdKMreZA', '5880943'), - (39, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdKMreZA', '5887890'), - (39, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdKMreZA', '5888598'), - (39, 1879, 'attending', '2023-01-25 04:36:10', '2025-12-17 19:47:06', 'kdKMreZA', '5893001'), - (39, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdKMreZA', '5893260'), - (39, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdKMreZA', '5899826'), - (39, 1886, 'maybe', '2023-03-08 21:38:54', '2025-12-17 19:47:09', 'kdKMreZA', '5899930'), - (39, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdKMreZA', '5900199'), - (39, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdKMreZA', '5900200'), - (39, 1891, 'maybe', '2023-03-22 14:55:48', '2025-12-17 19:46:56', 'kdKMreZA', '5900202'), - (39, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdKMreZA', '5900203'), - (39, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdKMreZA', '5901108'), - (39, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdKMreZA', '5901126'), - (39, 1897, 'not_attending', '2023-02-10 19:27:27', '2025-12-17 19:47:07', 'kdKMreZA', '5901128'), - (39, 1898, 'maybe', '2023-02-01 21:08:32', '2025-12-17 19:47:06', 'kdKMreZA', '5901263'), - (39, 1900, 'maybe', '2023-02-02 22:16:08', '2025-12-17 19:47:06', 'kdKMreZA', '5901331'), - (39, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdKMreZA', '5909655'), - (39, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdKMreZA', '5910522'), - (39, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdKMreZA', '5910526'), - (39, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdKMreZA', '5910528'), - (39, 1920, 'maybe', '2023-02-13 01:49:57', '2025-12-17 19:47:07', 'kdKMreZA', '5914091'), - (39, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdKMreZA', '5916219'), - (39, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdKMreZA', '5936234'), - (39, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdKMreZA', '5958351'), - (39, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdKMreZA', '5959751'), - (39, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdKMreZA', '5959755'), - (39, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdKMreZA', '5960055'), - (39, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdKMreZA', '5961684'), - (39, 1943, 'maybe', '2023-03-13 12:45:34', '2025-12-17 19:47:10', 'kdKMreZA', '5962091'), - (39, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'kdKMreZA', '5962132'), - (39, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'kdKMreZA', '5962133'), - (39, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdKMreZA', '5962134'), - (39, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdKMreZA', '5962317'), - (39, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdKMreZA', '5962318'), - (39, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'kdKMreZA', '5965933'), - (39, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdKMreZA', '5967014'), - (39, 1955, 'maybe', '2023-03-29 15:18:17', '2025-12-17 19:46:57', 'kdKMreZA', '5972529'), - (39, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'kdKMreZA', '5972763'), - (39, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdKMreZA', '5972815'), - (39, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdKMreZA', '5974016'), - (39, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdKMreZA', '5981515'), - (39, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdKMreZA', '5993516'), - (39, 1971, 'maybe', '2023-03-20 15:03:06', '2025-12-17 19:46:56', 'kdKMreZA', '5993765'), - (39, 1972, 'not_attending', '2023-03-13 19:42:39', '2025-12-17 19:46:56', 'kdKMreZA', '5993776'), - (39, 1975, 'not_attending', '2023-03-26 15:55:41', '2025-12-17 19:46:57', 'kdKMreZA', '5995351'), - (39, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdKMreZA', '5998939'), - (39, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdKMreZA', '6028191'), - (39, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdKMreZA', '6040066'), - (39, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdKMreZA', '6042717'), - (39, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdKMreZA', '6044838'), - (39, 1987, 'maybe', '2023-04-18 17:48:52', '2025-12-17 19:47:00', 'kdKMreZA', '6044839'), - (39, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKMreZA', '6045684'), - (39, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdKMreZA', '6050104'), - (39, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdKMreZA', '6053195'), - (39, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdKMreZA', '6053198'), - (39, 2007, 'attending', '2023-04-07 03:16:18', '2025-12-17 19:46:58', 'kdKMreZA', '6055291'), - (39, 2008, 'maybe', '2023-04-07 19:49:52', '2025-12-17 19:46:58', 'kdKMreZA', '6055808'), - (39, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdKMreZA', '6056085'), - (39, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdKMreZA', '6056916'), - (39, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdKMreZA', '6059290'), - (39, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdKMreZA', '6060328'), - (39, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdKMreZA', '6061037'), - (39, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdKMreZA', '6061039'), - (39, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdKMreZA', '6067245'), - (39, 2025, 'attending', '2023-04-23 17:10:44', '2025-12-17 19:47:00', 'kdKMreZA', '6067457'), - (39, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdKMreZA', '6068094'), - (39, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdKMreZA', '6068252'), - (39, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdKMreZA', '6068253'), - (39, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdKMreZA', '6068254'), - (39, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'kdKMreZA', '6068280'), - (39, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdKMreZA', '6069093'), - (39, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdKMreZA', '6072528'), - (39, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdKMreZA', '6079840'), - (39, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdKMreZA', '6083398'), - (39, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdKMreZA', '6093504'), - (39, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdKMreZA', '6097414'), - (39, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdKMreZA', '6097442'), - (39, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdKMreZA', '6097684'), - (39, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdKMreZA', '6098762'), - (39, 2064, 'attending', '2023-06-24 16:43:47', '2025-12-17 19:46:50', 'kdKMreZA', '6099988'), - (39, 2065, 'attending', '2023-06-17 21:45:23', '2025-12-17 19:46:49', 'kdKMreZA', '6101169'), - (39, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdKMreZA', '6101361'), - (39, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdKMreZA', '6101362'), - (39, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'kdKMreZA', '6103752'), - (39, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdKMreZA', '6107314'), - (39, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdKMreZA', '6120034'), - (39, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'kdKMreZA', '6136733'), - (39, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdKMreZA', '6137989'), - (39, 2106, 'attending', '2023-06-20 22:52:04', '2025-12-17 19:46:50', 'kdKMreZA', '6150479'), - (39, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdKMreZA', '6150864'), - (39, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdKMreZA', '6155491'), - (39, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdKMreZA', '6164417'), - (39, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdKMreZA', '6166388'), - (39, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdKMreZA', '6176439'), - (39, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'kdKMreZA', '6180853'), - (39, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdKMreZA', '6182410'), - (39, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdKMreZA', '6185812'), - (39, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdKMreZA', '6187651'), - (39, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdKMreZA', '6187963'), - (39, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdKMreZA', '6187964'), - (39, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdKMreZA', '6187966'), - (39, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdKMreZA', '6187967'), - (39, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdKMreZA', '6187969'), - (39, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdKMreZA', '6334878'), - (39, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdKMreZA', '6337236'), - (39, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdKMreZA', '6337970'), - (39, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdKMreZA', '6338308'), - (39, 2159, 'maybe', '2023-07-21 14:09:03', '2025-12-17 19:46:53', 'kdKMreZA', '6338355'), - (39, 2160, 'attending', '2023-07-29 22:36:21', '2025-12-17 19:46:54', 'kdKMreZA', '6338358'), - (39, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'kdKMreZA', '6340845'), - (39, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdKMreZA', '6341710'), - (39, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdKMreZA', '6342044'), - (39, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdKMreZA', '6342298'), - (39, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdKMreZA', '6343294'), - (39, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdKMreZA', '6347034'), - (39, 2177, 'maybe', '2023-08-12 13:06:45', '2025-12-17 19:46:55', 'kdKMreZA', '6347053'), - (39, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdKMreZA', '6347056'), - (39, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdKMreZA', '6353830'), - (39, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdKMreZA', '6353831'), - (39, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdKMreZA', '6357867'), - (39, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdKMreZA', '6358652'), - (39, 2200, 'maybe', '2023-08-07 19:47:01', '2025-12-17 19:46:55', 'kdKMreZA', '6359850'), - (39, 2204, 'maybe', '2023-08-19 15:57:24', '2025-12-17 19:46:55', 'kdKMreZA', '6361542'), - (39, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdKMreZA', '6361709'), - (39, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdKMreZA', '6361710'), - (39, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdKMreZA', '6361711'), - (39, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdKMreZA', '6361712'), - (39, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdKMreZA', '6361713'), - (39, 2232, 'maybe', '2023-08-23 12:48:38', '2025-12-17 19:46:55', 'kdKMreZA', '6374818'), - (39, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdKMreZA', '6382573'), - (39, 2239, 'not_attending', '2023-08-31 18:14:24', '2025-12-17 19:46:56', 'kdKMreZA', '6387592'), - (39, 2240, 'not_attending', '2023-09-05 22:21:08', '2025-12-17 19:46:56', 'kdKMreZA', '6388603'), - (39, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdKMreZA', '6388604'), - (39, 2242, 'maybe', '2023-09-23 17:09:09', '2025-12-17 19:46:45', 'kdKMreZA', '6388606'), - (39, 2243, 'maybe', '2023-09-05 22:20:57', '2025-12-17 19:46:56', 'kdKMreZA', '6393686'), - (39, 2244, 'maybe', '2023-09-11 16:45:46', '2025-12-17 19:46:44', 'kdKMreZA', '6393700'), - (39, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdKMreZA', '6394629'), - (39, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdKMreZA', '6394631'), - (39, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdKMreZA', '6440863'), - (39, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdKMreZA', '6445440'), - (39, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdKMreZA', '6453951'), - (39, 2279, 'maybe', '2023-10-09 17:02:58', '2025-12-17 19:46:46', 'kdKMreZA', '6455460'), - (39, 2285, 'attending', '2023-10-27 22:41:44', '2025-12-17 19:46:47', 'kdKMreZA', '6460929'), - (39, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdKMreZA', '6461696'), - (39, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdKMreZA', '6462129'), - (39, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdKMreZA', '6463218'), - (39, 2296, 'maybe', '2023-10-26 18:46:40', '2025-12-17 19:46:47', 'kdKMreZA', '6468393'), - (39, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdKMreZA', '6472181'), - (39, 2303, 'not_attending', '2023-10-28 18:01:39', '2025-12-17 19:46:47', 'kdKMreZA', '6482691'), - (39, 2304, 'maybe', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdKMreZA', '6482693'), - (39, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdKMreZA', '6484200'), - (39, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdKMreZA', '6484680'), - (39, 2310, 'attending', '2023-11-11 21:30:20', '2025-12-17 19:46:47', 'kdKMreZA', '6487709'), - (39, 2311, 'maybe', '2023-11-05 22:55:05', '2025-12-17 19:46:47', 'kdKMreZA', '6487725'), - (39, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdKMreZA', '6507741'), - (39, 2322, 'attending', '2023-11-16 16:56:29', '2025-12-17 19:46:48', 'kdKMreZA', '6514659'), - (39, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdKMreZA', '6514660'), - (39, 2324, 'not_attending', '2023-12-09 17:22:51', '2025-12-17 19:46:49', 'kdKMreZA', '6514662'), - (39, 2325, 'maybe', '2023-12-16 19:02:54', '2025-12-17 19:46:36', 'kdKMreZA', '6514663'), - (39, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdKMreZA', '6519103'), - (39, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdKMreZA', '6535681'), - (39, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdKMreZA', '6584747'), - (39, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdKMreZA', '6587097'), - (39, 2362, 'maybe', '2023-12-04 12:36:40', '2025-12-17 19:46:49', 'kdKMreZA', '6605708'), - (39, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdKMreZA', '6609022'), - (39, 2365, 'not_attending', '2023-12-23 21:31:24', '2025-12-17 19:46:37', 'kdKMreZA', '6613093'), - (39, 2371, 'maybe', '2023-12-15 17:17:58', '2025-12-17 19:46:36', 'kdKMreZA', '6624495'), - (39, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'kdKMreZA', '6632757'), - (39, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdKMreZA', '6644187'), - (39, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdKMreZA', '6648951'), - (39, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdKMreZA', '6648952'), - (39, 2388, 'maybe', '2024-01-06 21:08:13', '2025-12-17 19:46:37', 'kdKMreZA', '6649244'), - (39, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdKMreZA', '6655401'), - (39, 2399, 'not_attending', '2024-01-13 18:19:55', '2025-12-17 19:46:38', 'kdKMreZA', '6657583'), - (39, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdKMreZA', '6661585'), - (39, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdKMreZA', '6661588'), - (39, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdKMreZA', '6661589'), - (39, 2406, 'attending', '2024-01-20 00:57:11', '2025-12-17 19:46:40', 'kdKMreZA', '6692344'), - (39, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdKMreZA', '6699906'), - (39, 2408, 'attending', '2024-01-26 19:14:23', '2025-12-17 19:46:40', 'kdKMreZA', '6699907'), - (39, 2409, 'not_attending', '2024-02-03 15:28:20', '2025-12-17 19:46:41', 'kdKMreZA', '6699909'), - (39, 2410, 'not_attending', '2024-02-11 00:59:58', '2025-12-17 19:46:41', 'kdKMreZA', '6699911'), - (39, 2411, 'not_attending', '2024-02-16 19:50:46', '2025-12-17 19:46:42', 'kdKMreZA', '6699913'), - (39, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdKMreZA', '6701109'), - (39, 2424, 'not_attending', '2024-01-20 00:56:42', '2025-12-17 19:46:40', 'kdKMreZA', '6705143'), - (39, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdKMreZA', '6705219'), - (39, 2426, 'maybe', '2024-01-20 18:29:35', '2025-12-17 19:46:40', 'kdKMreZA', '6705569'), - (39, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdKMreZA', '6710153'), - (39, 2429, 'maybe', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdKMreZA', '6711552'), - (39, 2430, 'maybe', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdKMreZA', '6711553'), - (39, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdKMreZA', '6722688'), - (39, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdKMreZA', '6730620'), - (39, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'kdKMreZA', '6730642'), - (39, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdKMreZA', '6740364'), - (39, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdKMreZA', '6743829'), - (39, 2462, 'attending', '2024-02-12 20:49:51', '2025-12-17 19:46:41', 'kdKMreZA', '6744701'), - (39, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdKMreZA', '7030380'), - (39, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'kdKMreZA', '7033677'), - (39, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'kdKMreZA', '7035415'), - (39, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdKMreZA', '7044715'), - (39, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdKMreZA', '7050318'), - (39, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdKMreZA', '7050319'), - (39, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdKMreZA', '7050322'), - (39, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdKMreZA', '7057804'), - (39, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'kdKMreZA', '7059866'), - (39, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdKMreZA', '7072824'), - (39, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdKMreZA', '7074348'), - (39, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdKMreZA', '7074364'), - (39, 2531, 'maybe', '2024-08-29 16:47:27', '2025-12-17 19:46:32', 'kdKMreZA', '7074378'), - (39, 2537, 'not_attending', '2024-03-23 17:20:22', '2025-12-17 19:46:33', 'kdKMreZA', '7085484'), - (39, 2539, 'not_attending', '2024-04-04 16:18:28', '2025-12-17 19:46:33', 'kdKMreZA', '7085486'), - (39, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdKMreZA', '7089267'), - (39, 2541, 'maybe', '2024-03-18 18:02:00', '2025-12-17 19:46:33', 'kdKMreZA', '7089404'), - (39, 2548, 'maybe', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdKMreZA', '7098747'), - (39, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdKMreZA', '7113468'), - (39, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdKMreZA', '7114856'), - (39, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdKMreZA', '7114951'), - (39, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdKMreZA', '7114955'), - (39, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdKMreZA', '7114956'), - (39, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdKMreZA', '7114957'), - (39, 2564, 'maybe', '2024-04-08 14:50:35', '2025-12-17 19:46:33', 'kdKMreZA', '7134735'), - (39, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'kdKMreZA', '7153615'), - (39, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdKMreZA', '7159484'), - (39, 2584, 'maybe', '2024-04-21 16:13:06', '2025-12-17 19:46:34', 'kdKMreZA', '7175057'), - (39, 2585, 'attending', '2024-04-24 18:03:49', '2025-12-17 19:46:34', 'kdKMreZA', '7175828'), - (39, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdKMreZA', '7178446'), - (39, 2601, 'maybe', '2024-04-24 18:03:42', '2025-12-17 19:46:34', 'kdKMreZA', '7197023'), - (39, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'kdKMreZA', '7220467'), - (39, 2604, 'attending', '2024-05-29 22:08:58', '2025-12-17 19:46:36', 'kdKMreZA', '7225670'), - (39, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdKMreZA', '7240354'), - (39, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdKMreZA', '7251633'), - (39, 2623, 'maybe', '2024-05-10 13:48:26', '2025-12-17 19:46:35', 'kdKMreZA', '7263048'), - (39, 2627, 'attending', '2024-05-25 16:57:57', '2025-12-17 19:46:35', 'kdKMreZA', '7264724'), - (39, 2628, 'maybe', '2024-06-01 20:51:45', '2025-12-17 19:46:36', 'kdKMreZA', '7264725'), - (39, 2629, 'not_attending', '2024-06-07 16:04:58', '2025-12-17 19:46:28', 'kdKMreZA', '7264726'), - (39, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'kdKMreZA', '7302674'), - (39, 2678, 'not_attending', '2024-06-15 15:34:51', '2025-12-17 19:46:28', 'kdKMreZA', '7319489'), - (39, 2679, 'maybe', '2024-06-22 20:24:04', '2025-12-17 19:46:29', 'kdKMreZA', '7319490'), - (39, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdKMreZA', '7324073'), - (39, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdKMreZA', '7324074'), - (39, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdKMreZA', '7324075'), - (39, 2691, 'attending', '2024-07-20 18:07:44', '2025-12-17 19:46:30', 'kdKMreZA', '7324076'), - (39, 2692, 'not_attending', '2024-07-25 20:37:11', '2025-12-17 19:46:30', 'kdKMreZA', '7324077'), - (39, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdKMreZA', '7324078'), - (39, 2694, 'not_attending', '2024-08-09 18:24:07', '2025-12-17 19:46:31', 'kdKMreZA', '7324079'), - (39, 2695, 'attending', '2024-08-16 09:59:25', '2025-12-17 19:46:31', 'kdKMreZA', '7324080'), - (39, 2696, 'attending', '2024-08-24 16:17:25', '2025-12-17 19:46:32', 'kdKMreZA', '7324081'), - (39, 2697, 'attending', '2024-08-29 16:47:51', '2025-12-17 19:46:32', 'kdKMreZA', '7324082'), - (39, 2698, 'not_attending', '2024-09-05 19:20:21', '2025-12-17 19:46:24', 'kdKMreZA', '7324083'), - (39, 2699, 'attending', '2024-06-12 21:57:55', '2025-12-17 19:46:28', 'kdKMreZA', '7324385'), - (39, 2706, 'attending', '2024-06-19 17:44:26', '2025-12-17 19:46:28', 'kdKMreZA', '7324947'), - (39, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdKMreZA', '7331457'), - (39, 2743, 'maybe', '2024-07-05 13:28:36', '2025-12-17 19:46:29', 'kdKMreZA', '7345688'), - (39, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'kdKMreZA', '7356752'), - (39, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdKMreZA', '7363643'), - (39, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdKMreZA', '7368606'), - (39, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdKMreZA', '7397462'), - (39, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdKMreZA', '7424275'), - (39, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'kdKMreZA', '7424276'), - (39, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdKMreZA', '7432751'), - (39, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdKMreZA', '7432752'), - (39, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdKMreZA', '7432753'), - (39, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdKMreZA', '7432754'), - (39, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdKMreZA', '7432755'), - (39, 2829, 'maybe', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdKMreZA', '7432756'), - (39, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdKMreZA', '7432758'), - (39, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdKMreZA', '7432759'), - (39, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdKMreZA', '7433834'), - (39, 2839, 'not_attending', '2024-09-25 17:59:31', '2025-12-17 19:46:25', 'kdKMreZA', '7439262'), - (39, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'kdKMreZA', '7470197'), - (39, 2878, 'maybe', '2024-10-16 18:19:36', '2025-12-17 19:46:26', 'kdKMreZA', '7633857'), - (39, 2883, 'maybe', '2024-10-23 22:09:37', '2025-12-17 19:46:26', 'kdKMreZA', '7649157'), - (39, 2892, 'not_attending', '2024-10-30 19:04:02', '2025-12-17 19:46:26', 'kdKMreZA', '7672064'), - (39, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdKMreZA', '7685613'), - (39, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdKMreZA', '7688194'), - (39, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdKMreZA', '7688196'), - (39, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdKMreZA', '7688289'), - (39, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdKMreZA', '7692763'), - (39, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdKMreZA', '7697552'), - (39, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdKMreZA', '7699878'), - (39, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdKMreZA', '7704043'), - (39, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdKMreZA', '7712467'), - (39, 2925, 'attending', '2024-12-14 13:34:58', '2025-12-17 19:46:21', 'kdKMreZA', '7713584'), - (39, 2926, 'not_attending', '2024-12-06 19:32:42', '2025-12-17 19:46:21', 'kdKMreZA', '7713585'), - (39, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdKMreZA', '7713586'), - (39, 2930, 'maybe', '2024-12-09 23:02:03', '2025-12-17 19:46:21', 'kdKMreZA', '7724554'), - (39, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdKMreZA', '7738518'), - (39, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'kdKMreZA', '7750632'), - (39, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdKMreZA', '7750636'), - (39, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdKMreZA', '7796540'), - (39, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdKMreZA', '7796541'), - (39, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdKMreZA', '7796542'), - (39, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdKMreZA', '7825913'), - (39, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdKMreZA', '7826209'), - (39, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdKMreZA', '7834742'), - (39, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'kdKMreZA', '7842108'), - (39, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdKMreZA', '7842902'), - (39, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdKMreZA', '7842903'), - (39, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdKMreZA', '7842904'), - (39, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdKMreZA', '7842905'), - (39, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdKMreZA', '7855719'), - (39, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdKMreZA', '7860683'), - (39, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdKMreZA', '7860684'), - (39, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdKMreZA', '7866095'), - (39, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdKMreZA', '7869170'), - (39, 3014, 'attending', '2025-04-05 16:08:31', '2025-12-17 19:46:20', 'kdKMreZA', '7869185'), - (39, 3015, 'attending', '2025-04-26 14:08:12', '2025-12-17 19:46:20', 'kdKMreZA', '7869186'), - (39, 3016, 'attending', '2025-04-19 16:40:10', '2025-12-17 19:46:20', 'kdKMreZA', '7869187'), - (39, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdKMreZA', '7869188'), - (39, 3018, 'attending', '2025-04-12 17:33:40', '2025-12-17 19:46:20', 'kdKMreZA', '7869189'), - (39, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdKMreZA', '7869201'), - (39, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdKMreZA', '7877465'), - (39, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'kdKMreZA', '7878570'), - (39, 3055, 'maybe', '2025-03-27 20:03:22', '2025-12-17 19:46:19', 'kdKMreZA', '7888118'), - (39, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdKMreZA', '7888250'), - (39, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdKMreZA', '7904777'), - (39, 3094, 'attending', '2025-05-10 15:29:51', '2025-12-17 19:46:21', 'kdKMreZA', '8342292'), - (39, 3095, 'not_attending', '2025-05-03 12:31:10', '2025-12-17 19:46:20', 'kdKMreZA', '8342293'), - (39, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdKMreZA', '8349164'), - (39, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdKMreZA', '8349545'), - (39, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'kdKMreZA', '8353584'), - (39, 3126, 'attending', '2025-05-14 20:23:42', '2025-12-17 19:46:21', 'kdKMreZA', '8365614'), - (39, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdKMreZA', '8368028'), - (39, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdKMreZA', '8368029'), - (39, 3133, 'attending', '2025-05-30 20:37:58', '2025-12-17 19:46:14', 'kdKMreZA', '8368030'), - (39, 3136, 'maybe', '2025-05-21 19:10:34', '2025-12-17 19:46:21', 'kdKMreZA', '8374152'), - (39, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdKMreZA', '8388462'), - (39, 3150, 'maybe', '2025-06-21 00:06:19', '2025-12-17 19:46:15', 'kdKMreZA', '8393174'), - (39, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdKMreZA', '8400273'), - (39, 3154, 'not_attending', '2025-06-26 21:02:45', '2025-12-17 19:46:15', 'kdKMreZA', '8400274'), - (39, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdKMreZA', '8400275'), - (39, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'kdKMreZA', '8400276'), - (39, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdKMreZA', '8404977'), - (39, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdKMreZA', '8430783'), - (39, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdKMreZA', '8430784'), - (39, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdKMreZA', '8430799'), - (39, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdKMreZA', '8430800'), - (39, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdKMreZA', '8430801'), - (39, 3186, 'attending', '2025-07-02 12:31:01', '2025-12-17 19:46:16', 'kdKMreZA', '8431527'), - (39, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdKMreZA', '8438709'), - (39, 3189, 'not_attending', '2025-07-10 20:28:51', '2025-12-17 19:46:16', 'kdKMreZA', '8438849'), - (39, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdKMreZA', '8457738'), - (39, 3195, 'attending', '2025-08-06 20:29:05', '2025-12-17 19:46:17', 'kdKMreZA', '8458118'), - (39, 3196, 'attending', '2025-08-13 14:16:12', '2025-12-17 19:46:17', 'kdKMreZA', '8458543'), - (39, 3198, 'maybe', '2025-08-20 18:58:46', '2025-12-17 19:46:18', 'kdKMreZA', '8459268'), - (39, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdKMreZA', '8459566'), - (39, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdKMreZA', '8459567'), - (39, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdKMreZA', '8461032'), - (39, 3210, 'maybe', '2025-08-27 11:41:15', '2025-12-17 19:46:18', 'kdKMreZA', '8471162'), - (39, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdKMreZA', '8477877'), - (39, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdKMreZA', '8485688'), - (39, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdKMreZA', '8490587'), - (39, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdKMreZA', '8493552'), - (39, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdKMreZA', '8493553'), - (39, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdKMreZA', '8493554'), - (39, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdKMreZA', '8493555'), - (39, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdKMreZA', '8493556'), - (39, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdKMreZA', '8493557'), - (39, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdKMreZA', '8493558'), - (39, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdKMreZA', '8493559'), - (39, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdKMreZA', '8493560'), - (39, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdKMreZA', '8493561'), - (39, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdKMreZA', '8493572'), - (39, 3263, 'maybe', '2025-09-10 21:33:59', '2025-12-17 19:46:12', 'kdKMreZA', '8514576'), - (39, 3264, 'maybe', '2025-09-17 20:47:46', '2025-12-17 19:46:12', 'kdKMreZA', '8514577'), - (39, 3266, 'maybe', '2025-10-01 21:25:36', '2025-12-17 19:46:13', 'kdKMreZA', '8514579'), - (39, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdKMreZA', '8540725'), - (39, 3289, 'not_attending', '2025-10-21 20:12:40', '2025-12-17 19:46:14', 'kdKMreZA', '8542939'), - (39, 3295, 'attending', '2025-11-01 21:17:18', '2025-12-17 19:46:14', 'kdKMreZA', '8547541'), - (39, 3300, 'attending', '2025-11-08 17:43:26', '2025-12-17 19:46:14', 'kdKMreZA', '8549145'), - (39, 3302, 'not_attending', '2025-11-14 16:39:38', '2025-12-17 19:46:14', 'kdKMreZA', '8550022'), - (39, 3304, 'attending', '2025-11-17 23:41:20', '2025-12-17 19:46:14', 'kdKMreZA', '8550024'), - (39, 3305, 'attending', '2025-12-06 20:02:07', '2025-12-17 19:46:11', 'kdKMreZA', '8550025'), - (39, 3306, 'attending', '2025-12-13 17:22:15', '2025-12-17 19:46:11', 'kdKMreZA', '8550026'), - (39, 3307, 'maybe', '2025-12-18 01:22:14', '2025-12-18 01:22:14', NULL, NULL), - (39, 3308, 'attending', '2025-11-11 22:55:26', '2025-12-17 19:46:14', 'kdKMreZA', '8550408'), - (39, 3311, 'attending', '2025-12-10 00:56:01', '2025-12-17 19:46:11', 'kdKMreZA', '8550412'), - (39, 3313, 'attending', '2025-11-05 22:24:40', '2025-12-17 19:46:14', 'kdKMreZA', '8550896'), - (39, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdKMreZA', '8555421'), - (39, 3327, 'attending', '2025-12-05 00:57:13', '2025-12-17 19:46:11', 'kdKMreZA', '8557174'), - (40, 3237, 'attending', '2025-09-05 01:26:58', '2025-12-17 19:46:11', 'xAYyPO0A', '8493553'), - (40, 3242, 'attending', '2025-10-24 23:14:15', '2025-12-17 19:46:14', 'xAYyPO0A', '8493558'), - (40, 3253, 'attending', '2025-10-15 00:04:49', '2025-12-17 19:46:14', 'xAYyPO0A', '8493572'), - (40, 3276, 'attending', '2025-09-22 20:54:02', '2025-12-17 19:46:12', 'xAYyPO0A', '8529058'), - (40, 3284, 'attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAYyPO0A', '8540725'), - (40, 3286, 'not_attending', '2025-10-15 00:04:20', '2025-12-17 19:46:14', 'xAYyPO0A', '8540728'), - (40, 3287, 'maybe', '2025-10-15 00:04:02', '2025-12-17 19:46:14', 'xAYyPO0A', '8540729'), - (40, 3289, 'attending', '2025-10-21 23:44:09', '2025-12-17 19:46:14', 'xAYyPO0A', '8542939'), - (40, 3293, 'attending', '2025-10-15 05:54:23', '2025-12-17 19:46:14', 'xAYyPO0A', '8543836'), - (40, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAYyPO0A', '8555421'), - (41, 2210, 'maybe', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxMXk3Om', '6361711'), - (41, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxMXk3Om', '6361713'), - (41, 2239, 'maybe', '2023-09-02 21:49:40', '2025-12-17 19:46:56', 'dxMXk3Om', '6387592'), - (41, 2240, 'attending', '2023-09-09 01:18:29', '2025-12-17 19:46:56', 'dxMXk3Om', '6388603'), - (41, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxMXk3Om', '6388604'), - (41, 2242, 'attending', '2023-09-23 15:25:35', '2025-12-17 19:46:45', 'dxMXk3Om', '6388606'), - (41, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxMXk3Om', '6394629'), - (41, 2249, 'attending', '2023-09-20 20:11:40', '2025-12-17 19:46:45', 'dxMXk3Om', '6394630'), - (41, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxMXk3Om', '6394631'), - (41, 2253, 'attending', '2023-09-30 03:48:12', '2025-12-17 19:46:45', 'dxMXk3Om', '6401811'), - (41, 2259, 'attending', '2023-09-23 01:21:34', '2025-12-17 19:46:45', 'dxMXk3Om', '6421257'), - (41, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxMXk3Om', '6440863'), - (41, 2270, 'attending', '2023-10-10 21:20:09', '2025-12-17 19:46:46', 'dxMXk3Om', '6443067'), - (41, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dxMXk3Om', '6445440'), - (41, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dxMXk3Om', '6453951'), - (41, 2279, 'maybe', '2023-10-12 14:14:18', '2025-12-17 19:46:46', 'dxMXk3Om', '6455460'), - (41, 2285, 'attending', '2023-10-27 22:09:45', '2025-12-17 19:46:47', 'dxMXk3Om', '6460929'), - (41, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dxMXk3Om', '6461696'), - (41, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dxMXk3Om', '6462129'), - (41, 2290, 'attending', '2023-10-18 20:18:42', '2025-12-17 19:46:46', 'dxMXk3Om', '6462214'), - (41, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dxMXk3Om', '6463218'), - (41, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dxMXk3Om', '6472181'), - (41, 2302, 'attending', '2023-10-23 22:27:01', '2025-12-17 19:46:46', 'dxMXk3Om', '6482535'), - (41, 2303, 'attending', '2023-10-28 12:48:48', '2025-12-17 19:46:47', 'dxMXk3Om', '6482691'), - (41, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxMXk3Om', '6482693'), - (41, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dxMXk3Om', '6484200'), - (41, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dxMXk3Om', '6484680'), - (41, 2310, 'not_attending', '2023-11-11 00:00:32', '2025-12-17 19:46:47', 'dxMXk3Om', '6487709'), - (41, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxMXk3Om', '6507741'), - (41, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxMXk3Om', '6514659'), - (41, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMXk3Om', '6514660'), - (41, 2324, 'not_attending', '2023-12-09 18:00:44', '2025-12-17 19:46:49', 'dxMXk3Om', '6514662'), - (41, 2325, 'attending', '2023-12-16 16:39:08', '2025-12-17 19:46:36', 'dxMXk3Om', '6514663'), - (41, 2331, 'attending', '2023-11-15 00:47:02', '2025-12-17 19:46:47', 'dxMXk3Om', '6518640'), - (41, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxMXk3Om', '6519103'), - (41, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dxMXk3Om', '6535681'), - (41, 2338, 'attending', '2023-11-25 19:11:09', '2025-12-17 19:46:48', 'dxMXk3Om', '6538868'), - (41, 2345, 'attending', '2023-11-29 21:19:00', '2025-12-17 19:46:48', 'dxMXk3Om', '6582414'), - (41, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxMXk3Om', '6584747'), - (41, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMXk3Om', '6587097'), - (41, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMXk3Om', '6609022'), - (41, 2365, 'maybe', '2023-12-23 00:24:54', '2025-12-17 19:46:37', 'dxMXk3Om', '6613093'), - (41, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMXk3Om', '6632757'), - (41, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMXk3Om', '6644187'), - (41, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMXk3Om', '6648951'), - (41, 2387, 'maybe', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMXk3Om', '6648952'), - (41, 2388, 'attending', '2024-01-06 03:16:13', '2025-12-17 19:46:37', 'dxMXk3Om', '6649244'), - (41, 2391, 'maybe', '2024-01-12 20:29:24', '2025-12-17 19:46:37', 'dxMXk3Om', '6654138'), - (41, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMXk3Om', '6655401'), - (41, 2399, 'maybe', '2024-01-13 15:20:27', '2025-12-17 19:46:38', 'dxMXk3Om', '6657583'), - (41, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMXk3Om', '6661585'), - (41, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMXk3Om', '6661588'), - (41, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMXk3Om', '6661589'), - (41, 2406, 'maybe', '2024-01-19 14:30:22', '2025-12-17 19:46:40', 'dxMXk3Om', '6692344'), - (41, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMXk3Om', '6699906'), - (41, 2408, 'maybe', '2024-01-27 17:21:25', '2025-12-17 19:46:40', 'dxMXk3Om', '6699907'), - (41, 2409, 'maybe', '2024-02-03 21:33:11', '2025-12-17 19:46:41', 'dxMXk3Om', '6699909'), - (41, 2410, 'attending', '2024-02-11 00:42:26', '2025-12-17 19:46:41', 'dxMXk3Om', '6699911'), - (41, 2411, 'maybe', '2024-02-09 23:02:29', '2025-12-17 19:46:42', 'dxMXk3Om', '6699913'), - (41, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMXk3Om', '6701109'), - (41, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMXk3Om', '6705219'), - (41, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMXk3Om', '6710153'), - (41, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMXk3Om', '6711552'), - (41, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMXk3Om', '6711553'), - (41, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMXk3Om', '6722688'), - (41, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMXk3Om', '6730620'), - (41, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMXk3Om', '6730642'), - (41, 2444, 'maybe', '2024-02-09 23:02:13', '2025-12-17 19:46:41', 'dxMXk3Om', '6734367'), - (41, 2447, 'not_attending', '2024-03-15 13:52:07', '2025-12-17 19:46:32', 'dxMXk3Om', '6734370'), - (41, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMXk3Om', '6740364'), - (41, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMXk3Om', '6743829'), - (41, 2466, 'maybe', '2024-02-14 14:46:27', '2025-12-17 19:46:41', 'dxMXk3Om', '7026777'), - (41, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMXk3Om', '7030380'), - (41, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMXk3Om', '7033677'), - (41, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMXk3Om', '7035415'), - (41, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMXk3Om', '7044715'), - (41, 2484, 'maybe', '2024-03-05 21:33:50', '2025-12-17 19:46:43', 'dxMXk3Om', '7046836'), - (41, 2489, 'attending', '2024-02-27 23:07:15', '2025-12-17 19:46:43', 'dxMXk3Om', '7050161'), - (41, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMXk3Om', '7050318'), - (41, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMXk3Om', '7050319'), - (41, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMXk3Om', '7050322'), - (41, 2498, 'attending', '2024-03-20 15:34:02', '2025-12-17 19:46:33', 'dxMXk3Om', '7057662'), - (41, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMXk3Om', '7057804'), - (41, 2500, 'maybe', '2024-03-06 02:16:59', '2025-12-17 19:46:43', 'dxMXk3Om', '7058603'), - (41, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dxMXk3Om', '7059866'), - (41, 2503, 'attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'dxMXk3Om', '7062500'), - (41, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMXk3Om', '7072824'), - (41, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMXk3Om', '7074348'), - (41, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxMXk3Om', '7074364'), - (41, 2534, 'maybe', '2024-03-13 22:48:56', '2025-12-17 19:46:32', 'dxMXk3Om', '7076875'), - (41, 2539, 'attending', '2024-04-06 21:19:22', '2025-12-17 19:46:33', 'dxMXk3Om', '7085486'), - (41, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMXk3Om', '7089267'), - (41, 2541, 'attending', '2024-03-18 12:57:39', '2025-12-17 19:46:33', 'dxMXk3Om', '7089404'), - (41, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMXk3Om', '7098747'), - (41, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxMXk3Om', '7113468'), - (41, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMXk3Om', '7114856'), - (41, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMXk3Om', '7114951'), - (41, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxMXk3Om', '7114955'), - (41, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMXk3Om', '7114956'), - (41, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMXk3Om', '7114957'), - (41, 2564, 'maybe', '2024-04-10 20:44:07', '2025-12-17 19:46:33', 'dxMXk3Om', '7134735'), - (41, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMXk3Om', '7153615'), - (41, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMXk3Om', '7159484'), - (41, 2576, 'attending', '2024-04-26 14:40:27', '2025-12-17 19:46:34', 'dxMXk3Om', '7164538'), - (41, 2578, 'maybe', '2024-04-12 23:45:18', '2025-12-17 19:46:34', 'dxMXk3Om', '7167016'), - (41, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMXk3Om', '7178446'), - (41, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMXk3Om', '7220467'), - (41, 2603, 'maybe', '2024-05-15 15:34:54', '2025-12-17 19:46:35', 'dxMXk3Om', '7225669'), - (41, 2604, 'maybe', '2024-05-28 22:58:26', '2025-12-17 19:46:36', 'dxMXk3Om', '7225670'), - (41, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMXk3Om', '7240354'), - (41, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMXk3Om', '7251633'), - (41, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dxMXk3Om', '7263048'), - (41, 2626, 'attending', '2024-05-17 02:06:47', '2025-12-17 19:46:35', 'dxMXk3Om', '7264723'), - (41, 2627, 'attending', '2024-05-24 22:58:17', '2025-12-17 19:46:35', 'dxMXk3Om', '7264724'), - (41, 2628, 'attending', '2024-06-01 13:30:57', '2025-12-17 19:46:36', 'dxMXk3Om', '7264725'), - (41, 2629, 'attending', '2024-06-07 22:58:35', '2025-12-17 19:46:28', 'dxMXk3Om', '7264726'), - (41, 2630, 'maybe', '2024-05-16 21:46:16', '2025-12-17 19:46:35', 'dxMXk3Om', '7264801'), - (41, 2647, 'maybe', '2024-06-09 19:49:59', '2025-12-17 19:46:28', 'dxMXk3Om', '7282057'), - (41, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMXk3Om', '7302674'), - (41, 2667, 'maybe', '2024-06-05 15:56:31', '2025-12-17 19:46:36', 'dxMXk3Om', '7307776'), - (41, 2668, 'maybe', '2024-06-07 22:23:53', '2025-12-17 19:46:36', 'dxMXk3Om', '7308821'), - (41, 2678, 'attending', '2024-06-15 03:03:28', '2025-12-17 19:46:28', 'dxMXk3Om', '7319489'), - (41, 2679, 'attending', '2024-06-21 11:34:43', '2025-12-17 19:46:29', 'dxMXk3Om', '7319490'), - (41, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxMXk3Om', '7324073'), - (41, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxMXk3Om', '7324074'), - (41, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxMXk3Om', '7324075'), - (41, 2691, 'attending', '2024-07-19 21:06:53', '2025-12-17 19:46:30', 'dxMXk3Om', '7324076'), - (41, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxMXk3Om', '7324078'), - (41, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxMXk3Om', '7324082'), - (41, 2699, 'attending', '2024-06-12 19:16:59', '2025-12-17 19:46:28', 'dxMXk3Om', '7324385'), - (41, 2700, 'maybe', '2024-06-14 18:32:31', '2025-12-17 19:46:28', 'dxMXk3Om', '7324388'), - (41, 2706, 'attending', '2024-06-19 21:10:39', '2025-12-17 19:46:28', 'dxMXk3Om', '7324947'), - (41, 2719, 'maybe', '2024-06-23 03:14:56', '2025-12-17 19:46:29', 'dxMXk3Om', '7331305'), - (41, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxMXk3Om', '7331457'), - (41, 2723, 'maybe', '2024-06-21 11:34:11', '2025-12-17 19:46:29', 'dxMXk3Om', '7332389'), - (41, 2742, 'maybe', '2024-07-03 20:35:02', '2025-12-17 19:46:29', 'dxMXk3Om', '7345167'), - (41, 2743, 'maybe', '2024-07-05 19:02:07', '2025-12-17 19:46:29', 'dxMXk3Om', '7345688'), - (41, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxMXk3Om', '7356752'), - (41, 2755, 'maybe', '2024-07-10 19:20:52', '2025-12-17 19:46:29', 'dxMXk3Om', '7357808'), - (41, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxMXk3Om', '7363643'), - (41, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxMXk3Om', '7368606'), - (41, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxMXk3Om', '7397462'), - (41, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxMXk3Om', '7424275'), - (41, 2822, 'attending', '2024-11-10 21:55:01', '2025-12-17 19:46:26', 'dxMXk3Om', '7424276'), - (41, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxMXk3Om', '7432751'), - (41, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxMXk3Om', '7432752'), - (41, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxMXk3Om', '7432753'), - (41, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxMXk3Om', '7432754'), - (41, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxMXk3Om', '7432755'), - (41, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxMXk3Om', '7432756'), - (41, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxMXk3Om', '7432758'), - (41, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxMXk3Om', '7432759'), - (41, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxMXk3Om', '7433834'), - (41, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxMXk3Om', '7470197'), - (41, 2881, 'maybe', '2024-11-06 18:55:49', '2025-12-17 19:46:26', 'dxMXk3Om', '7644047'), - (41, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxMXk3Om', '7685613'), - (41, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxMXk3Om', '7688194'), - (41, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxMXk3Om', '7688196'), - (41, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxMXk3Om', '7688289'), - (41, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dxMXk3Om', '7692763'), - (41, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxMXk3Om', '7697552'), - (41, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxMXk3Om', '7699878'), - (41, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxMXk3Om', '7704043'), - (41, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxMXk3Om', '7712467'), - (41, 2925, 'maybe', '2024-12-12 16:40:52', '2025-12-17 19:46:21', 'dxMXk3Om', '7713584'), - (41, 2926, 'attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxMXk3Om', '7713585'), - (41, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxMXk3Om', '7713586'), - (41, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMXk3Om', '7738518'), - (41, 2959, 'maybe', '2024-12-23 17:41:34', '2025-12-17 19:46:22', 'dxMXk3Om', '7747388'), - (41, 2962, 'maybe', '2024-12-27 14:45:59', '2025-12-17 19:46:22', 'dxMXk3Om', '7750632'), - (41, 2963, 'maybe', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMXk3Om', '7750636'), - (41, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMXk3Om', '7796540'), - (41, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMXk3Om', '7796541'), - (41, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMXk3Om', '7796542'), - (41, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxMXk3Om', '7825913'), - (41, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxMXk3Om', '7826209'), - (41, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxMXk3Om', '7834742'), - (41, 2988, 'not_attending', '2025-02-07 14:33:49', '2025-12-17 19:46:23', 'dxMXk3Om', '7839569'), - (41, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dxMXk3Om', '7842108'), - (41, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxMXk3Om', '7842902'), - (41, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxMXk3Om', '7842903'), - (41, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxMXk3Om', '7842904'), - (41, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxMXk3Om', '7842905'), - (41, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxMXk3Om', '7855719'), - (41, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxMXk3Om', '7860683'), - (41, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxMXk3Om', '7860684'), - (41, 3010, 'maybe', '2025-03-08 14:32:52', '2025-12-17 19:46:18', 'dxMXk3Om', '7864879'), - (41, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxMXk3Om', '7866095'), - (41, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxMXk3Om', '7869170'), - (41, 3014, 'attending', '2025-04-05 17:34:45', '2025-12-17 19:46:20', 'dxMXk3Om', '7869185'), - (41, 3015, 'attending', '2025-04-21 17:02:14', '2025-12-17 19:46:20', 'dxMXk3Om', '7869186'), - (41, 3016, 'attending', '2025-04-13 01:54:21', '2025-12-17 19:46:20', 'dxMXk3Om', '7869187'), - (41, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxMXk3Om', '7869188'), - (41, 3018, 'attending', '2025-04-09 00:07:27', '2025-12-17 19:46:20', 'dxMXk3Om', '7869189'), - (41, 3028, 'maybe', '2025-04-20 02:08:50', '2025-12-17 19:46:20', 'dxMXk3Om', '7869199'), - (41, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxMXk3Om', '7869201'), - (41, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxMXk3Om', '7877465'), - (41, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dxMXk3Om', '7878570'), - (41, 3048, 'maybe', '2025-04-19 20:39:27', '2025-12-17 19:46:20', 'dxMXk3Om', '7882694'), - (41, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxMXk3Om', '7888250'), - (41, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxMXk3Om', '7904777'), - (41, 3095, 'maybe', '2025-04-28 00:41:13', '2025-12-17 19:46:20', 'dxMXk3Om', '8342293'), - (41, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxMXk3Om', '8349164'), - (41, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxMXk3Om', '8349545'), - (41, 3106, 'attending', '2025-04-27 20:10:45', '2025-12-17 19:46:20', 'dxMXk3Om', '8349552'), - (41, 3107, 'maybe', '2025-05-02 13:19:35', '2025-12-17 19:46:20', 'dxMXk3Om', '8350107'), - (41, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxMXk3Om', '8353584'), - (41, 3131, 'attending', '2025-05-13 14:58:23', '2025-12-17 19:46:21', 'dxMXk3Om', '8368028'), - (41, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxMXk3Om', '8368029'), - (41, 3133, 'attending', '2025-05-28 12:21:13', '2025-12-17 19:46:14', 'dxMXk3Om', '8368030'), - (41, 3136, 'maybe', '2025-05-20 19:11:41', '2025-12-17 19:46:21', 'dxMXk3Om', '8374152'), - (41, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxMXk3Om', '8388462'), - (41, 3153, 'maybe', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxMXk3Om', '8400273'), - (41, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dxMXk3Om', '8400274'), - (41, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxMXk3Om', '8400275'), - (41, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dxMXk3Om', '8400276'), - (41, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxMXk3Om', '8404977'), - (41, 3173, 'attending', '2025-06-14 20:59:04', '2025-12-17 19:46:15', 'dxMXk3Om', '8410806'), - (41, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxMXk3Om', '8430783'), - (41, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxMXk3Om', '8430784'), - (41, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxMXk3Om', '8430799'), - (41, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxMXk3Om', '8430800'), - (41, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxMXk3Om', '8430801'), - (41, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxMXk3Om', '8438709'), - (41, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxMXk3Om', '8457738'), - (41, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxMXk3Om', '8459566'), - (41, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxMXk3Om', '8459567'), - (41, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxMXk3Om', '8461032'), - (41, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxMXk3Om', '8477877'), - (41, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxMXk3Om', '8485688'), - (41, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxMXk3Om', '8490587'), - (41, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxMXk3Om', '8493552'), - (41, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxMXk3Om', '8493553'), - (41, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxMXk3Om', '8493554'), - (41, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxMXk3Om', '8493555'), - (41, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxMXk3Om', '8493556'), - (41, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxMXk3Om', '8493557'), - (41, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxMXk3Om', '8493558'), - (41, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxMXk3Om', '8493559'), - (41, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxMXk3Om', '8493560'), - (41, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxMXk3Om', '8493561'), - (41, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxMXk3Om', '8493572'), - (41, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxMXk3Om', '8540725'), - (41, 3302, 'attending', '2025-11-16 00:43:41', '2025-12-17 19:46:14', 'dxMXk3Om', '8550022'), - (41, 3304, 'maybe', '2025-11-22 15:17:29', '2025-12-17 19:46:14', 'dxMXk3Om', '8550024'), - (41, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxMXk3Om', '8555421'), - (42, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVDLp6ZA', '6337970'), - (42, 2159, 'attending', '2023-07-22 12:38:55', '2025-12-17 19:46:53', 'dVDLp6ZA', '6338355'), - (42, 2160, 'attending', '2023-07-23 02:53:01', '2025-12-17 19:46:54', 'dVDLp6ZA', '6338358'), - (42, 2165, 'attending', '2023-07-29 18:02:02', '2025-12-17 19:46:54', 'dVDLp6ZA', '6342044'), - (42, 2166, 'not_attending', '2023-07-24 02:34:52', '2025-12-17 19:46:54', 'dVDLp6ZA', '6342115'), - (42, 2169, 'attending', '2023-07-22 02:31:19', '2025-12-17 19:46:53', 'dVDLp6ZA', '6342306'), - (42, 2170, 'not_attending', '2023-07-22 02:31:25', '2025-12-17 19:46:53', 'dVDLp6ZA', '6342307'), - (42, 2172, 'attending', '2023-07-19 14:43:50', '2025-12-17 19:46:53', 'dVDLp6ZA', '6342591'), - (42, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dVDLp6ZA', '6343294'), - (42, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVDLp6ZA', '6347034'), - (42, 2177, 'attending', '2023-08-10 02:40:05', '2025-12-17 19:46:55', 'dVDLp6ZA', '6347053'), - (42, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVDLp6ZA', '6347056'), - (42, 2179, 'attending', '2023-07-24 02:18:36', '2025-12-17 19:46:54', 'dVDLp6ZA', '6347591'), - (42, 2180, 'attending', '2023-07-25 13:10:42', '2025-12-17 19:46:54', 'dVDLp6ZA', '6348788'), - (42, 2181, 'attending', '2023-07-25 19:23:09', '2025-12-17 19:46:54', 'dVDLp6ZA', '6349354'), - (42, 2182, 'maybe', '2023-07-25 21:29:47', '2025-12-17 19:46:53', 'dVDLp6ZA', '6349618'), - (42, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVDLp6ZA', '6353830'), - (42, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVDLp6ZA', '6353831'), - (42, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVDLp6ZA', '6357867'), - (42, 2190, 'not_attending', '2023-08-03 02:31:39', '2025-12-17 19:46:55', 'dVDLp6ZA', '6357892'), - (42, 2191, 'maybe', '2023-08-03 21:47:09', '2025-12-17 19:46:54', 'dVDLp6ZA', '6358652'), - (42, 2193, 'attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dVDLp6ZA', '6358668'), - (42, 2194, 'attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dVDLp6ZA', '6358669'), - (42, 2195, 'attending', '2023-08-05 13:24:44', '2025-12-17 19:46:55', 'dVDLp6ZA', '6359397'), - (42, 2196, 'maybe', '2023-09-08 22:07:21', '2025-12-17 19:46:56', 'dVDLp6ZA', '6359398'), - (42, 2197, 'attending', '2023-09-09 01:21:19', '2025-12-17 19:46:44', 'dVDLp6ZA', '6359399'), - (42, 2198, 'attending', '2023-09-16 19:43:23', '2025-12-17 19:46:45', 'dVDLp6ZA', '6359400'), - (42, 2199, 'attending', '2023-08-06 02:50:22', '2025-12-17 19:46:55', 'dVDLp6ZA', '6359849'), - (42, 2200, 'attending', '2023-08-06 02:50:16', '2025-12-17 19:46:55', 'dVDLp6ZA', '6359850'), - (42, 2202, 'attending', '2023-08-06 18:32:42', '2025-12-17 19:46:54', 'dVDLp6ZA', '6360509'), - (42, 2204, 'attending', '2023-08-09 22:13:17', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361542'), - (42, 2206, 'attending', '2023-08-08 12:43:34', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361659'), - (42, 2208, 'attending', '2023-08-08 12:43:58', '2025-12-17 19:46:54', 'dVDLp6ZA', '6361709'), - (42, 2209, 'attending', '2023-08-20 16:19:56', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361710'), - (42, 2210, 'attending', '2023-08-24 19:31:45', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361711'), - (42, 2211, 'attending', '2023-08-14 12:53:52', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361712'), - (42, 2212, 'attending', '2023-09-20 16:14:38', '2025-12-17 19:46:45', 'dVDLp6ZA', '6361713'), - (42, 2213, 'attending', '2023-08-09 17:36:20', '2025-12-17 19:46:55', 'dVDLp6ZA', '6362935'), - (42, 2215, 'attending', '2023-08-10 22:59:48', '2025-12-17 19:46:55', 'dVDLp6ZA', '6363479'), - (42, 2218, 'attending', '2023-08-15 02:36:40', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367308'), - (42, 2219, 'attending', '2023-08-15 14:24:12', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367309'), - (42, 2220, 'attending', '2023-08-18 13:54:53', '2025-12-17 19:46:56', 'dVDLp6ZA', '6367310'), - (42, 2221, 'not_attending', '2023-08-15 02:36:48', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367357'), - (42, 2222, 'not_attending', '2023-08-15 20:02:26', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367358'), - (42, 2224, 'attending', '2023-08-15 19:59:02', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367635'), - (42, 2227, 'attending', '2023-08-20 19:17:32', '2025-12-17 19:46:55', 'dVDLp6ZA', '6370581'), - (42, 2229, 'attending', '2023-08-20 19:11:50', '2025-12-17 19:46:55', 'dVDLp6ZA', '6373787'), - (42, 2232, 'attending', '2023-08-22 12:32:37', '2025-12-17 19:46:55', 'dVDLp6ZA', '6374818'), - (42, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVDLp6ZA', '6382573'), - (42, 2236, 'maybe', '2023-08-28 20:28:20', '2025-12-17 19:46:55', 'dVDLp6ZA', '6382618'), - (42, 2238, 'attending', '2023-08-31 12:55:50', '2025-12-17 19:46:56', 'dVDLp6ZA', '6387266'), - (42, 2239, 'not_attending', '2023-08-31 17:59:37', '2025-12-17 19:46:56', 'dVDLp6ZA', '6387592'), - (42, 2240, 'attending', '2023-09-04 04:21:07', '2025-12-17 19:46:56', 'dVDLp6ZA', '6388603'), - (42, 2241, 'attending', '2023-09-10 02:59:08', '2025-12-17 19:46:44', 'dVDLp6ZA', '6388604'), - (42, 2242, 'attending', '2023-09-17 19:49:39', '2025-12-17 19:46:45', 'dVDLp6ZA', '6388606'), - (42, 2243, 'attending', '2023-09-04 23:05:33', '2025-12-17 19:46:56', 'dVDLp6ZA', '6393686'), - (42, 2244, 'attending', '2023-09-05 15:58:49', '2025-12-17 19:46:44', 'dVDLp6ZA', '6393700'), - (42, 2245, 'attending', '2023-09-25 16:01:32', '2025-12-17 19:46:45', 'dVDLp6ZA', '6393703'), - (42, 2247, 'attending', '2023-09-05 19:37:29', '2025-12-17 19:46:56', 'dVDLp6ZA', '6394628'), - (42, 2248, 'attending', '2023-09-10 02:58:58', '2025-12-17 19:46:44', 'dVDLp6ZA', '6394629'), - (42, 2249, 'attending', '2023-09-14 02:48:11', '2025-12-17 19:46:45', 'dVDLp6ZA', '6394630'), - (42, 2250, 'attending', '2023-09-20 16:14:32', '2025-12-17 19:46:45', 'dVDLp6ZA', '6394631'), - (42, 2251, 'attending', '2023-09-05 20:28:55', '2025-12-17 19:46:56', 'dVDLp6ZA', '6395182'), - (42, 2252, 'attending', '2023-09-25 02:34:26', '2025-12-17 19:46:45', 'dVDLp6ZA', '6396837'), - (42, 2253, 'attending', '2023-09-15 20:01:06', '2025-12-17 19:46:45', 'dVDLp6ZA', '6401811'), - (42, 2256, 'attending', '2023-09-13 00:21:50', '2025-12-17 19:46:45', 'dVDLp6ZA', '6404369'), - (42, 2259, 'attending', '2023-09-22 02:33:59', '2025-12-17 19:46:45', 'dVDLp6ZA', '6421257'), - (42, 2263, 'attending', '2023-09-25 22:36:32', '2025-12-17 19:46:45', 'dVDLp6ZA', '6429351'), - (42, 2265, 'attending', '2023-10-01 03:43:33', '2025-12-17 19:46:45', 'dVDLp6ZA', '6439625'), - (42, 2267, 'maybe', '2023-10-03 02:06:15', '2025-12-17 19:46:45', 'dVDLp6ZA', '6440034'), - (42, 2268, 'attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVDLp6ZA', '6440863'), - (42, 2270, 'attending', '2023-10-03 02:02:39', '2025-12-17 19:46:46', 'dVDLp6ZA', '6443067'), - (42, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVDLp6ZA', '6445440'), - (42, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVDLp6ZA', '6453951'), - (42, 2277, 'maybe', '2023-10-08 16:13:26', '2025-12-17 19:46:46', 'dVDLp6ZA', '6455211'), - (42, 2279, 'attending', '2023-10-08 19:43:46', '2025-12-17 19:46:46', 'dVDLp6ZA', '6455460'), - (42, 2284, 'attending', '2023-10-10 18:31:20', '2025-12-17 19:46:46', 'dVDLp6ZA', '6460928'), - (42, 2285, 'attending', '2023-10-15 20:50:58', '2025-12-17 19:46:47', 'dVDLp6ZA', '6460929'), - (42, 2286, 'maybe', '2023-11-24 02:52:22', '2025-12-17 19:46:48', 'dVDLp6ZA', '6460930'), - (42, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVDLp6ZA', '6461696'), - (42, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVDLp6ZA', '6462129'), - (42, 2290, 'attending', '2023-10-11 22:04:06', '2025-12-17 19:46:46', 'dVDLp6ZA', '6462214'), - (42, 2291, 'attending', '2023-10-11 22:04:17', '2025-12-17 19:46:46', 'dVDLp6ZA', '6462215'), - (42, 2292, 'attending', '2023-10-19 20:30:04', '2025-12-17 19:46:47', 'dVDLp6ZA', '6462216'), - (42, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVDLp6ZA', '6463218'), - (42, 2294, 'attending', '2023-10-12 14:20:11', '2025-12-17 19:46:46', 'dVDLp6ZA', '6465907'), - (42, 2295, 'not_attending', '2023-10-15 04:03:17', '2025-12-17 19:46:46', 'dVDLp6ZA', '6467832'), - (42, 2299, 'attending', '2023-10-15 20:51:09', '2025-12-17 19:46:46', 'dVDLp6ZA', '6472181'), - (42, 2301, 'maybe', '2023-10-23 02:41:07', '2025-12-17 19:46:46', 'dVDLp6ZA', '6474276'), - (42, 2302, 'attending', '2023-10-23 04:08:06', '2025-12-17 19:46:46', 'dVDLp6ZA', '6482535'), - (42, 2303, 'attending', '2023-10-22 20:26:33', '2025-12-17 19:46:47', 'dVDLp6ZA', '6482691'), - (42, 2304, 'attending', '2023-10-30 00:37:43', '2025-12-17 19:46:47', 'dVDLp6ZA', '6482693'), - (42, 2306, 'attending', '2023-11-07 04:50:38', '2025-12-17 19:46:47', 'dVDLp6ZA', '6484200'), - (42, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVDLp6ZA', '6484680'), - (42, 2308, 'not_attending', '2023-10-23 12:47:21', '2025-12-17 19:46:47', 'dVDLp6ZA', '6485393'), - (42, 2310, 'attending', '2023-10-29 21:12:51', '2025-12-17 19:46:47', 'dVDLp6ZA', '6487709'), - (42, 2314, 'not_attending', '2023-11-02 12:11:08', '2025-12-17 19:46:47', 'dVDLp6ZA', '6493665'), - (42, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVDLp6ZA', '6507741'), - (42, 2320, 'maybe', '2023-11-08 18:01:39', '2025-12-17 19:46:47', 'dVDLp6ZA', '6508647'), - (42, 2322, 'attending', '2023-11-07 04:51:00', '2025-12-17 19:46:48', 'dVDLp6ZA', '6514659'), - (42, 2323, 'attending', '2023-11-19 04:46:02', '2025-12-17 19:46:48', 'dVDLp6ZA', '6514660'), - (42, 2324, 'attending', '2023-12-05 20:57:27', '2025-12-17 19:46:49', 'dVDLp6ZA', '6514662'), - (42, 2325, 'attending', '2023-12-08 04:01:57', '2025-12-17 19:46:36', 'dVDLp6ZA', '6514663'), - (42, 2327, 'maybe', '2023-11-01 20:59:55', '2025-12-17 19:46:47', 'dVDLp6ZA', '6515494'), - (42, 2329, 'maybe', '2023-11-02 16:18:39', '2025-12-17 19:46:47', 'dVDLp6ZA', '6517138'), - (42, 2331, 'attending', '2023-11-05 18:27:21', '2025-12-17 19:46:47', 'dVDLp6ZA', '6518640'), - (42, 2333, 'attending', '2023-11-04 21:01:05', '2025-12-17 19:46:47', 'dVDLp6ZA', '6519103'), - (42, 2335, 'attending', '2023-11-08 04:10:25', '2025-12-17 19:46:47', 'dVDLp6ZA', '6534890'), - (42, 2337, 'attending', '2023-11-08 01:15:09', '2025-12-17 19:46:48', 'dVDLp6ZA', '6535681'), - (42, 2338, 'maybe', '2023-11-10 14:15:55', '2025-12-17 19:46:48', 'dVDLp6ZA', '6538868'), - (42, 2343, 'maybe', '2023-11-19 21:36:35', '2025-12-17 19:46:48', 'dVDLp6ZA', '6574728'), - (42, 2345, 'maybe', '2023-11-21 01:42:08', '2025-12-17 19:46:48', 'dVDLp6ZA', '6582414'), - (42, 2347, 'attending', '2023-11-19 16:00:44', '2025-12-17 19:46:48', 'dVDLp6ZA', '6583053'), - (42, 2350, 'attending', '2023-11-22 05:22:54', '2025-12-17 19:46:48', 'dVDLp6ZA', '6584352'), - (42, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVDLp6ZA', '6584747'), - (42, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVDLp6ZA', '6587097'), - (42, 2354, 'maybe', '2023-11-26 19:18:04', '2025-12-17 19:46:48', 'dVDLp6ZA', '6591742'), - (42, 2356, 'maybe', '2023-12-10 21:28:07', '2025-12-17 19:46:36', 'dVDLp6ZA', '6593340'), - (42, 2358, 'attending', '2023-11-29 18:59:48', '2025-12-17 19:46:48', 'dVDLp6ZA', '6595321'), - (42, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVDLp6ZA', '6609022'), - (42, 2364, 'attending', '2023-12-07 04:28:59', '2025-12-17 19:46:49', 'dVDLp6ZA', '6613011'), - (42, 2366, 'attending', '2023-12-08 21:13:48', '2025-12-17 19:46:36', 'dVDLp6ZA', '6615304'), - (42, 2368, 'attending', '2023-12-11 02:20:03', '2025-12-17 19:46:36', 'dVDLp6ZA', '6621445'), - (42, 2370, 'attending', '2023-12-12 13:45:27', '2025-12-17 19:46:36', 'dVDLp6ZA', '6623765'), - (42, 2371, 'attending', '2023-12-13 02:17:52', '2025-12-17 19:46:36', 'dVDLp6ZA', '6624495'), - (42, 2372, 'maybe', '2023-12-15 21:19:35', '2025-12-17 19:46:36', 'dVDLp6ZA', '6628243'), - (42, 2373, 'attending', '2023-12-18 23:13:40', '2025-12-17 19:46:38', 'dVDLp6ZA', '6632678'), - (42, 2374, 'attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVDLp6ZA', '6632757'), - (42, 2375, 'attending', '2023-12-20 17:20:30', '2025-12-17 19:46:36', 'dVDLp6ZA', '6634548'), - (42, 2378, 'maybe', '2024-01-01 23:15:57', '2025-12-17 19:46:37', 'dVDLp6ZA', '6644006'), - (42, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVDLp6ZA', '6644187'), - (42, 2380, 'attending', '2023-12-30 21:25:52', '2025-12-17 19:46:37', 'dVDLp6ZA', '6645105'), - (42, 2381, 'attending', '2024-01-02 02:15:58', '2025-12-17 19:46:37', 'dVDLp6ZA', '6646398'), - (42, 2382, 'maybe', '2024-01-01 23:16:05', '2025-12-17 19:46:37', 'dVDLp6ZA', '6646401'), - (42, 2385, 'maybe', '2024-01-03 03:13:02', '2025-12-17 19:46:37', 'dVDLp6ZA', '6648943'), - (42, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVDLp6ZA', '6648951'), - (42, 2387, 'attending', '2024-01-03 01:57:16', '2025-12-17 19:46:37', 'dVDLp6ZA', '6648952'), - (42, 2388, 'attending', '2024-01-03 02:20:00', '2025-12-17 19:46:37', 'dVDLp6ZA', '6649244'), - (42, 2391, 'attending', '2024-01-09 02:05:50', '2025-12-17 19:46:37', 'dVDLp6ZA', '6654138'), - (42, 2392, 'maybe', '2024-01-11 16:19:58', '2025-12-17 19:46:37', 'dVDLp6ZA', '6654412'), - (42, 2395, 'attending', '2024-01-04 23:53:48', '2025-12-17 19:46:38', 'dVDLp6ZA', '6654471'), - (42, 2396, 'maybe', '2024-01-16 05:04:32', '2025-12-17 19:46:38', 'dVDLp6ZA', '6655401'), - (42, 2397, 'attending', '2024-01-07 05:19:54', '2025-12-17 19:46:37', 'dVDLp6ZA', '6657379'), - (42, 2398, 'maybe', '2024-01-10 15:16:21', '2025-12-17 19:46:37', 'dVDLp6ZA', '6657381'), - (42, 2399, 'attending', '2024-01-07 18:30:32', '2025-12-17 19:46:37', 'dVDLp6ZA', '6657583'), - (42, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVDLp6ZA', '6661585'), - (42, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVDLp6ZA', '6661588'), - (42, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVDLp6ZA', '6661589'), - (42, 2406, 'maybe', '2024-01-14 15:42:47', '2025-12-17 19:46:40', 'dVDLp6ZA', '6692344'), - (42, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVDLp6ZA', '6699906'), - (42, 2408, 'attending', '2024-01-16 05:08:03', '2025-12-17 19:46:40', 'dVDLp6ZA', '6699907'), - (42, 2409, 'attending', '2024-01-29 18:20:43', '2025-12-17 19:46:41', 'dVDLp6ZA', '6699909'), - (42, 2410, 'attending', '2024-02-04 22:30:26', '2025-12-17 19:46:41', 'dVDLp6ZA', '6699911'), - (42, 2411, 'attending', '2024-02-04 22:30:51', '2025-12-17 19:46:41', 'dVDLp6ZA', '6699913'), - (42, 2412, 'not_attending', '2024-02-02 21:58:39', '2025-12-17 19:46:43', 'dVDLp6ZA', '6700717'), - (42, 2415, 'not_attending', '2024-01-18 04:41:06', '2025-12-17 19:46:40', 'dVDLp6ZA', '6701001'), - (42, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVDLp6ZA', '6701109'), - (42, 2420, 'maybe', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dVDLp6ZA', '6704561'), - (42, 2421, 'attending', '2024-01-21 22:45:46', '2025-12-17 19:46:40', 'dVDLp6ZA', '6704598'), - (42, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVDLp6ZA', '6705219'), - (42, 2426, 'attending', '2024-01-19 20:05:26', '2025-12-17 19:46:40', 'dVDLp6ZA', '6705569'), - (42, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dVDLp6ZA', '6708410'), - (42, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVDLp6ZA', '6710153'), - (42, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVDLp6ZA', '6711552'), - (42, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVDLp6ZA', '6711553'), - (42, 2431, 'maybe', '2024-01-23 03:42:44', '2025-12-17 19:46:41', 'dVDLp6ZA', '6712394'), - (42, 2434, 'attending', '2024-01-25 23:45:02', '2025-12-17 19:46:40', 'dVDLp6ZA', '6716605'), - (42, 2436, 'attending', '2024-01-27 19:52:19', '2025-12-17 19:46:40', 'dVDLp6ZA', '6722687'), - (42, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVDLp6ZA', '6722688'), - (42, 2438, 'maybe', '2024-02-01 21:20:45', '2025-12-17 19:46:41', 'dVDLp6ZA', '6730201'), - (42, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVDLp6ZA', '6730620'), - (42, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVDLp6ZA', '6730642'), - (42, 2442, 'maybe', '2024-02-02 21:58:45', '2025-12-17 19:46:41', 'dVDLp6ZA', '6732647'), - (42, 2444, 'attending', '2024-02-04 22:30:18', '2025-12-17 19:46:41', 'dVDLp6ZA', '6734367'), - (42, 2445, 'attending', '2024-02-11 04:51:18', '2025-12-17 19:46:41', 'dVDLp6ZA', '6734368'), - (42, 2446, 'maybe', '2024-02-23 16:05:30', '2025-12-17 19:46:43', 'dVDLp6ZA', '6734369'), - (42, 2447, 'attending', '2024-03-05 05:19:52', '2025-12-17 19:46:32', 'dVDLp6ZA', '6734370'), - (42, 2448, 'attending', '2024-03-21 03:33:43', '2025-12-17 19:46:33', 'dVDLp6ZA', '6734371'), - (42, 2453, 'attending', '2024-02-08 13:38:21', '2025-12-17 19:46:42', 'dVDLp6ZA', '6740364'), - (42, 2454, 'maybe', '2024-02-18 04:57:12', '2025-12-17 19:46:42', 'dVDLp6ZA', '6740921'), - (42, 2458, 'not_attending', '2024-02-09 21:17:10', '2025-12-17 19:46:41', 'dVDLp6ZA', '6743731'), - (42, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVDLp6ZA', '6743829'), - (42, 2466, 'attending', '2024-02-13 22:13:55', '2025-12-17 19:46:41', 'dVDLp6ZA', '7026777'), - (42, 2467, 'attending', '2024-02-17 13:41:47', '2025-12-17 19:46:43', 'dVDLp6ZA', '7029987'), - (42, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVDLp6ZA', '7030380'), - (42, 2471, 'attending', '2024-02-20 02:21:22', '2025-12-17 19:46:42', 'dVDLp6ZA', '7032425'), - (42, 2472, 'attending', '2024-02-20 02:21:08', '2025-12-17 19:46:42', 'dVDLp6ZA', '7033677'), - (42, 2474, 'attending', '2024-02-20 21:15:51', '2025-12-17 19:46:43', 'dVDLp6ZA', '7035415'), - (42, 2479, 'not_attending', '2024-02-21 04:19:06', '2025-12-17 19:46:43', 'dVDLp6ZA', '7037009'), - (42, 2481, 'not_attending', '2024-02-24 21:23:55', '2025-12-17 19:46:43', 'dVDLp6ZA', '7044715'), - (42, 2487, 'maybe', '2024-02-29 03:22:18', '2025-12-17 19:46:33', 'dVDLp6ZA', '7049279'), - (42, 2489, 'not_attending', '2024-02-27 23:59:51', '2025-12-17 19:46:43', 'dVDLp6ZA', '7050161'), - (42, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVDLp6ZA', '7050318'), - (42, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVDLp6ZA', '7050319'), - (42, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVDLp6ZA', '7050322'), - (42, 2493, 'attending', '2024-03-10 12:39:00', '2025-12-17 19:46:32', 'dVDLp6ZA', '7052471'), - (42, 2498, 'attending', '2024-03-14 23:20:01', '2025-12-17 19:46:33', 'dVDLp6ZA', '7057662'), - (42, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dVDLp6ZA', '7057804'), - (42, 2500, 'maybe', '2024-03-05 01:41:18', '2025-12-17 19:46:43', 'dVDLp6ZA', '7058603'), - (42, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVDLp6ZA', '7072824'), - (42, 2508, 'attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVDLp6ZA', '7074348'), - (42, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dVDLp6ZA', '7074364'), - (42, 2534, 'maybe', '2024-03-13 16:18:52', '2025-12-17 19:46:32', 'dVDLp6ZA', '7076875'), - (42, 2537, 'not_attending', '2024-03-18 15:56:13', '2025-12-17 19:46:33', 'dVDLp6ZA', '7085484'), - (42, 2538, 'attending', '2024-03-21 03:33:33', '2025-12-17 19:46:33', 'dVDLp6ZA', '7085485'), - (42, 2539, 'not_attending', '2024-03-22 17:38:09', '2025-12-17 19:46:33', 'dVDLp6ZA', '7085486'), - (42, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVDLp6ZA', '7089267'), - (42, 2541, 'attending', '2024-03-17 02:24:20', '2025-12-17 19:46:33', 'dVDLp6ZA', '7089404'), - (42, 2548, 'attending', '2024-03-23 18:28:19', '2025-12-17 19:46:33', 'dVDLp6ZA', '7098747'), - (42, 2549, 'attending', '2024-03-26 14:58:02', '2025-12-17 19:46:33', 'dVDLp6ZA', '7099657'), - (42, 2552, 'maybe', '2024-03-27 22:31:58', '2025-12-17 19:46:33', 'dVDLp6ZA', '7111123'), - (42, 2553, 'attending', '2024-03-29 11:57:38', '2025-12-17 19:46:33', 'dVDLp6ZA', '7113468'), - (42, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVDLp6ZA', '7114856'), - (42, 2555, 'attending', '2024-03-31 03:45:05', '2025-12-17 19:46:33', 'dVDLp6ZA', '7114951'), - (42, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVDLp6ZA', '7114955'), - (42, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVDLp6ZA', '7114956'), - (42, 2558, 'attending', '2024-04-28 02:38:16', '2025-12-17 19:46:35', 'dVDLp6ZA', '7114957'), - (42, 2564, 'attending', '2024-04-02 19:16:46', '2025-12-17 19:46:33', 'dVDLp6ZA', '7134735'), - (42, 2567, 'attending', '2024-04-04 01:13:14', '2025-12-17 19:46:33', 'dVDLp6ZA', '7144962'), - (42, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVDLp6ZA', '7153615'), - (42, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVDLp6ZA', '7159484'), - (42, 2573, 'maybe', '2024-04-08 22:59:10', '2025-12-17 19:46:34', 'dVDLp6ZA', '7160612'), - (42, 2575, 'maybe', '2024-04-10 03:18:51', '2025-12-17 19:46:33', 'dVDLp6ZA', '7164534'), - (42, 2576, 'not_attending', '2024-04-23 02:44:00', '2025-12-17 19:46:34', 'dVDLp6ZA', '7164538'), - (42, 2584, 'not_attending', '2024-04-16 13:13:40', '2025-12-17 19:46:34', 'dVDLp6ZA', '7175057'), - (42, 2585, 'maybe', '2024-04-18 03:24:03', '2025-12-17 19:46:34', 'dVDLp6ZA', '7175828'), - (42, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVDLp6ZA', '7178446'), - (42, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dVDLp6ZA', '7220467'), - (42, 2603, 'attending', '2024-05-09 02:38:41', '2025-12-17 19:46:35', 'dVDLp6ZA', '7225669'), - (42, 2604, 'attending', '2024-05-26 21:25:06', '2025-12-17 19:46:36', 'dVDLp6ZA', '7225670'), - (42, 2609, 'not_attending', '2024-04-30 01:20:10', '2025-12-17 19:46:35', 'dVDLp6ZA', '7240354'), - (42, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dVDLp6ZA', '7251633'), - (42, 2620, 'maybe', '2024-05-09 02:38:47', '2025-12-17 19:46:35', 'dVDLp6ZA', '7258097'), - (42, 2626, 'attending', '2024-05-14 17:29:55', '2025-12-17 19:46:35', 'dVDLp6ZA', '7264723'), - (42, 2628, 'attending', '2024-05-24 02:33:49', '2025-12-17 19:46:36', 'dVDLp6ZA', '7264725'), - (42, 2629, 'not_attending', '2024-05-24 02:33:47', '2025-12-17 19:46:28', 'dVDLp6ZA', '7264726'), - (42, 2630, 'maybe', '2024-05-12 13:27:17', '2025-12-17 19:46:35', 'dVDLp6ZA', '7264801'), - (42, 2638, 'attending', '2024-05-15 21:42:18', '2025-12-17 19:46:35', 'dVDLp6ZA', '7273117'), - (42, 2647, 'attending', '2024-05-25 01:13:19', '2025-12-17 19:46:28', 'dVDLp6ZA', '7282057'), - (42, 2650, 'attending', '2024-05-24 16:28:40', '2025-12-17 19:46:35', 'dVDLp6ZA', '7288199'), - (42, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dVDLp6ZA', '7302674'), - (42, 2678, 'maybe', '2024-06-11 11:48:14', '2025-12-17 19:46:28', 'dVDLp6ZA', '7319489'), - (42, 2679, 'not_attending', '2024-06-11 11:48:22', '2025-12-17 19:46:29', 'dVDLp6ZA', '7319490'), - (42, 2688, 'not_attending', '2024-06-22 14:25:24', '2025-12-17 19:46:29', 'dVDLp6ZA', '7324073'), - (42, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dVDLp6ZA', '7324074'), - (42, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dVDLp6ZA', '7324075'), - (42, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dVDLp6ZA', '7324078'), - (42, 2696, 'attending', '2024-08-18 21:43:40', '2025-12-17 19:46:32', 'dVDLp6ZA', '7324081'), - (42, 2697, 'attending', '2024-08-20 17:00:37', '2025-12-17 19:46:32', 'dVDLp6ZA', '7324082'), - (42, 2698, 'attending', '2024-09-04 01:06:14', '2025-12-17 19:46:24', 'dVDLp6ZA', '7324083'), - (42, 2701, 'maybe', '2024-06-21 22:54:26', '2025-12-17 19:46:29', 'dVDLp6ZA', '7324391'), - (42, 2706, 'maybe', '2024-06-13 20:22:09', '2025-12-17 19:46:28', 'dVDLp6ZA', '7324947'), - (42, 2707, 'not_attending', '2024-06-13 20:17:58', '2025-12-17 19:46:28', 'dVDLp6ZA', '7324952'), - (42, 2710, 'maybe', '2024-06-14 00:46:34', '2025-12-17 19:46:28', 'dVDLp6ZA', '7325108'), - (42, 2719, 'attending', '2024-06-18 18:13:52', '2025-12-17 19:46:29', 'dVDLp6ZA', '7331305'), - (42, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dVDLp6ZA', '7331457'), - (42, 2724, 'maybe', '2024-06-23 13:35:50', '2025-12-17 19:46:29', 'dVDLp6ZA', '7332562'), - (42, 2742, 'maybe', '2024-07-01 17:27:52', '2025-12-17 19:46:29', 'dVDLp6ZA', '7345167'), - (42, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dVDLp6ZA', '7363643'), - (42, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dVDLp6ZA', '7368606'), - (42, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dVDLp6ZA', '7397462'), - (42, 2806, 'maybe', '2024-09-09 04:13:14', '2025-12-17 19:46:25', 'dVDLp6ZA', '7404888'), - (42, 2808, 'attending', '2024-08-27 03:32:21', '2025-12-17 19:46:32', 'dVDLp6ZA', '7412860'), - (42, 2814, 'attending', '2024-09-08 15:48:43', '2025-12-17 19:46:24', 'dVDLp6ZA', '7424267'), - (42, 2817, 'maybe', '2024-09-29 16:08:34', '2025-12-17 19:46:25', 'dVDLp6ZA', '7424270'), - (42, 2821, 'attending', '2024-10-08 18:44:36', '2025-12-17 19:46:26', 'dVDLp6ZA', '7424275'), - (42, 2822, 'attending', '2024-10-21 23:34:36', '2025-12-17 19:46:26', 'dVDLp6ZA', '7424276'), - (42, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dVDLp6ZA', '7432751'), - (42, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dVDLp6ZA', '7432752'), - (42, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dVDLp6ZA', '7432753'), - (42, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432754'), - (42, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432755'), - (42, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432756'), - (42, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432758'), - (42, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432759'), - (42, 2832, 'attending', '2024-09-09 20:36:42', '2025-12-17 19:46:24', 'dVDLp6ZA', '7433324'), - (42, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dVDLp6ZA', '7433834'), - (42, 2836, 'attending', '2024-09-14 12:45:02', '2025-12-17 19:46:25', 'dVDLp6ZA', '7438708'), - (42, 2839, 'attending', '2024-09-13 03:38:42', '2025-12-17 19:46:25', 'dVDLp6ZA', '7439262'), - (42, 2843, 'maybe', '2024-09-20 16:22:13', '2025-12-17 19:46:25', 'dVDLp6ZA', '7450219'), - (42, 2845, 'not_attending', '2024-09-21 18:45:15', '2025-12-17 19:46:25', 'dVDLp6ZA', '7452129'), - (42, 2851, 'attending', '2024-09-28 20:40:31', '2025-12-17 19:46:25', 'dVDLp6ZA', '7461883'), - (42, 2857, 'maybe', '2024-10-23 20:17:17', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469387'), - (42, 2858, 'attending', '2024-10-11 19:38:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469388'), - (42, 2860, 'maybe', '2024-10-01 20:31:47', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469393'), - (42, 2861, 'maybe', '2024-09-30 23:32:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469826'), - (42, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dVDLp6ZA', '7470197'), - (42, 2870, 'attending', '2024-10-05 21:22:31', '2025-12-17 19:46:26', 'dVDLp6ZA', '7475068'), - (42, 2871, 'maybe', '2024-10-14 00:48:57', '2025-12-17 19:46:26', 'dVDLp6ZA', '7480481'), - (42, 2878, 'maybe', '2024-10-10 22:59:48', '2025-12-17 19:46:26', 'dVDLp6ZA', '7633857'), - (42, 2881, 'maybe', '2024-10-27 13:18:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7644047'), - (42, 2883, 'maybe', '2024-10-17 01:05:57', '2025-12-17 19:46:26', 'dVDLp6ZA', '7649157'), - (42, 2885, 'attending', '2024-10-17 14:52:57', '2025-12-17 19:46:26', 'dVDLp6ZA', '7649944'), - (42, 2886, 'maybe', '2024-11-02 00:45:47', '2025-12-17 19:46:26', 'dVDLp6ZA', '7654498'), - (42, 2891, 'attending', '2024-10-25 15:58:18', '2025-12-17 19:46:26', 'dVDLp6ZA', '7668163'), - (42, 2892, 'not_attending', '2024-10-27 21:26:55', '2025-12-17 19:46:26', 'dVDLp6ZA', '7672064'), - (42, 2894, 'attending', '2024-11-02 19:34:35', '2025-12-17 19:46:26', 'dVDLp6ZA', '7680059'), - (42, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dVDLp6ZA', '7685613'), - (42, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dVDLp6ZA', '7688194'), - (42, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dVDLp6ZA', '7688196'), - (42, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dVDLp6ZA', '7688289'), - (42, 2906, 'attending', '2024-11-09 22:18:05', '2025-12-17 19:46:26', 'dVDLp6ZA', '7689366'), - (42, 2909, 'maybe', '2024-11-11 02:06:45', '2025-12-17 19:46:27', 'dVDLp6ZA', '7689771'), - (42, 2912, 'maybe', '2024-11-17 03:44:51', '2025-12-17 19:46:27', 'dVDLp6ZA', '7692763'), - (42, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dVDLp6ZA', '7697552'), - (42, 2915, 'maybe', '2024-11-17 17:02:52', '2025-12-17 19:46:27', 'dVDLp6ZA', '7698151'), - (42, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dVDLp6ZA', '7699878'), - (42, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dVDLp6ZA', '7704043'), - (42, 2924, 'maybe', '2024-11-26 15:52:05', '2025-12-17 19:46:28', 'dVDLp6ZA', '7712467'), - (42, 2925, 'attending', '2024-12-09 19:16:25', '2025-12-17 19:46:21', 'dVDLp6ZA', '7713584'), - (42, 2926, 'attending', '2024-12-03 04:18:10', '2025-12-17 19:46:21', 'dVDLp6ZA', '7713585'), - (42, 2927, 'attending', '2024-12-04 00:38:19', '2025-12-17 19:46:22', 'dVDLp6ZA', '7713586'), - (42, 2930, 'maybe', '2024-12-07 20:14:01', '2025-12-17 19:46:21', 'dVDLp6ZA', '7724554'), - (42, 2931, 'attending', '2024-12-07 20:13:50', '2025-12-17 19:46:21', 'dVDLp6ZA', '7725490'), - (42, 2954, 'attending', '2024-12-14 20:20:09', '2025-12-17 19:46:21', 'dVDLp6ZA', '7734260'), - (42, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dVDLp6ZA', '7738518'), - (42, 2962, 'maybe', '2024-12-25 04:41:48', '2025-12-17 19:46:22', 'dVDLp6ZA', '7750632'), - (42, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dVDLp6ZA', '7750636'), - (42, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dVDLp6ZA', '7796540'), - (42, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dVDLp6ZA', '7796541'), - (42, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dVDLp6ZA', '7796542'), - (42, 2968, 'attending', '2025-01-08 21:38:31', '2025-12-17 19:46:22', 'dVDLp6ZA', '7797967'), - (42, 2974, 'attending', '2025-01-18 18:59:10', '2025-12-17 19:46:22', 'dVDLp6ZA', '7814958'), - (42, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dVDLp6ZA', '7825913'), - (42, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dVDLp6ZA', '7826209'), - (42, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dVDLp6ZA', '7834742'), - (42, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842108'), - (42, 2990, 'attending', '2025-02-15 16:22:06', '2025-12-17 19:46:23', 'dVDLp6ZA', '7842898'), - (42, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842902'), - (42, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842903'), - (42, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dVDLp6ZA', '7842904'), - (42, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dVDLp6ZA', '7842905'), - (42, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842906'), - (42, 2996, 'attending', '2025-02-25 00:54:56', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842907'), - (42, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'dVDLp6ZA', '7842909'), - (42, 3005, 'maybe', '2025-02-19 01:24:23', '2025-12-17 19:46:24', 'dVDLp6ZA', '7854604'), - (42, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dVDLp6ZA', '7855719'), - (42, 3007, 'attending', '2025-02-24 20:31:20', '2025-12-17 19:46:24', 'dVDLp6ZA', '7860683'), - (42, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dVDLp6ZA', '7860684'), - (42, 3011, 'attending', '2025-03-01 21:43:51', '2025-12-17 19:46:24', 'dVDLp6ZA', '7865624'), - (42, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dVDLp6ZA', '7866095'), - (42, 3013, 'maybe', '2025-03-04 03:13:27', '2025-12-17 19:46:18', 'dVDLp6ZA', '7869170'), - (42, 3014, 'attending', '2025-03-30 20:26:45', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869185'), - (42, 3015, 'attending', '2025-04-21 12:44:48', '2025-12-17 19:46:20', 'dVDLp6ZA', '7869186'), - (42, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869188'), - (42, 3023, 'attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869194'), - (42, 3024, 'attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869195'), - (42, 3028, 'attending', '2025-04-03 02:07:47', '2025-12-17 19:46:20', 'dVDLp6ZA', '7869199'), - (42, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dVDLp6ZA', '7869201'), - (42, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dVDLp6ZA', '7877465'), - (42, 3036, 'maybe', '2025-03-13 22:28:28', '2025-12-17 19:46:19', 'dVDLp6ZA', '7880952'), - (42, 3043, 'attending', '2025-03-15 19:33:48', '2025-12-17 19:46:19', 'dVDLp6ZA', '7882587'), - (42, 3044, 'attending', '2025-03-26 02:51:46', '2025-12-17 19:46:19', 'dVDLp6ZA', '7882690'), - (42, 3045, 'attending', '2025-04-04 22:16:24', '2025-12-17 19:46:19', 'dVDLp6ZA', '7882691'), - (42, 3046, 'attending', '2025-04-12 21:07:03', '2025-12-17 19:46:20', 'dVDLp6ZA', '7882692'), - (42, 3047, 'attending', '2025-04-26 21:17:24', '2025-12-17 19:46:20', 'dVDLp6ZA', '7882693'), - (42, 3055, 'attending', '2025-03-26 01:50:19', '2025-12-17 19:46:19', 'dVDLp6ZA', '7888118'), - (42, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dVDLp6ZA', '7888250'), - (42, 3072, 'attending', '2025-04-03 01:41:01', '2025-12-17 19:46:19', 'dVDLp6ZA', '7895449'), - (42, 3085, 'not_attending', '2025-04-09 22:38:44', '2025-12-17 19:46:20', 'dVDLp6ZA', '7903688'), - (42, 3086, 'maybe', '2025-04-09 22:38:28', '2025-12-17 19:46:20', 'dVDLp6ZA', '7903852'), - (42, 3088, 'attending', '2025-06-03 17:13:02', '2025-12-17 19:46:15', 'dVDLp6ZA', '7904777'), - (42, 3090, 'maybe', '2025-04-16 13:28:15', '2025-12-17 19:46:20', 'dVDLp6ZA', '7914315'), - (42, 3094, 'attending', '2025-05-03 19:51:56', '2025-12-17 19:46:21', 'dVDLp6ZA', '8342292'), - (42, 3095, 'attending', '2025-04-28 22:55:40', '2025-12-17 19:46:20', 'dVDLp6ZA', '8342293'), - (42, 3104, 'attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVDLp6ZA', '8349164'), - (42, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVDLp6ZA', '8349545'), - (42, 3108, 'attending', '2025-05-03 19:51:21', '2025-12-17 19:46:20', 'dVDLp6ZA', '8351411'), - (42, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVDLp6ZA', '8353584'), - (42, 3126, 'attending', '2025-05-11 16:31:11', '2025-12-17 19:46:21', 'dVDLp6ZA', '8365614'), - (42, 3130, 'not_attending', '2025-05-12 12:36:37', '2025-12-17 19:46:21', 'dVDLp6ZA', '8367403'), - (42, 3131, 'attending', '2025-05-13 00:08:34', '2025-12-17 19:46:21', 'dVDLp6ZA', '8368028'), - (42, 3132, 'attending', '2025-05-18 14:49:44', '2025-12-17 19:46:21', 'dVDLp6ZA', '8368029'), - (42, 3134, 'attending', '2025-05-13 00:39:35', '2025-12-17 19:46:21', 'dVDLp6ZA', '8368031'), - (42, 3136, 'attending', '2025-05-18 14:49:16', '2025-12-17 19:46:21', 'dVDLp6ZA', '8374152'), - (42, 3139, 'attending', '2025-05-24 21:07:22', '2025-12-17 19:46:21', 'dVDLp6ZA', '8377425'), - (42, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dVDLp6ZA', '8388462'), - (42, 3150, 'attending', '2025-06-06 01:01:22', '2025-12-17 19:46:15', 'dVDLp6ZA', '8393174'), - (42, 3151, 'attending', '2025-05-31 18:52:24', '2025-12-17 19:46:14', 'dVDLp6ZA', '8393497'), - (42, 3153, 'maybe', '2025-06-03 17:12:56', '2025-12-17 19:46:15', 'dVDLp6ZA', '8400273'), - (42, 3154, 'attending', '2025-06-26 02:13:33', '2025-12-17 19:46:15', 'dVDLp6ZA', '8400274'), - (42, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dVDLp6ZA', '8400275'), - (42, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dVDLp6ZA', '8400276'), - (42, 3157, 'maybe', '2025-06-05 20:42:07', '2025-12-17 19:46:15', 'dVDLp6ZA', '8401407'), - (42, 3169, 'maybe', '2025-06-08 18:09:28', '2025-12-17 19:46:15', 'dVDLp6ZA', '8404977'), - (42, 3181, 'maybe', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dVDLp6ZA', '8430783'), - (42, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dVDLp6ZA', '8430784'), - (42, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dVDLp6ZA', '8430799'), - (42, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dVDLp6ZA', '8430800'), - (42, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dVDLp6ZA', '8430801'), - (42, 3188, 'maybe', '2025-07-13 19:07:59', '2025-12-17 19:46:17', 'dVDLp6ZA', '8438709'), - (42, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVDLp6ZA', '8457738'), - (42, 3195, 'maybe', '2025-07-27 00:32:05', '2025-12-17 19:46:17', 'dVDLp6ZA', '8458118'), - (42, 3196, 'maybe', '2025-08-09 19:21:27', '2025-12-17 19:46:17', 'dVDLp6ZA', '8458543'), - (42, 3198, 'attending', '2025-08-14 17:20:10', '2025-12-17 19:46:18', 'dVDLp6ZA', '8459268'), - (42, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVDLp6ZA', '8459566'), - (42, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVDLp6ZA', '8459567'), - (42, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dVDLp6ZA', '8459568'), - (42, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVDLp6ZA', '8461032'), - (42, 3210, 'attending', '2025-08-20 23:22:15', '2025-12-17 19:46:18', 'dVDLp6ZA', '8471162'), - (42, 3214, 'attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVDLp6ZA', '8477877'), - (42, 3225, 'attending', '2025-08-19 00:52:55', '2025-12-17 19:46:18', 'dVDLp6ZA', '8485680'), - (42, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'dVDLp6ZA', '8485688'), - (42, 3235, 'maybe', '2025-08-17 15:19:33', '2025-12-17 19:46:18', 'dVDLp6ZA', '8490587'), - (42, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVDLp6ZA', '8493552'), - (42, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dVDLp6ZA', '8493553'), - (42, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVDLp6ZA', '8493554'), - (42, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVDLp6ZA', '8493555'), - (42, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVDLp6ZA', '8493556'), - (42, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVDLp6ZA', '8493557'), - (42, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVDLp6ZA', '8493558'), - (42, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVDLp6ZA', '8493559'), - (42, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVDLp6ZA', '8493560'), - (42, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dVDLp6ZA', '8493561'), - (42, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVDLp6ZA', '8493572'), - (42, 3258, 'maybe', '2025-09-02 00:44:58', '2025-12-17 19:46:11', 'dVDLp6ZA', '8510285'), - (42, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dVDLp6ZA', '8540725'), - (42, 3289, 'attending', '2025-10-14 12:13:40', '2025-12-17 19:46:14', 'dVDLp6ZA', '8542939'), - (42, 3295, 'attending', '2025-10-28 21:07:19', '2025-12-17 19:46:14', 'dVDLp6ZA', '8547541'), - (42, 3300, 'attending', '2025-11-07 10:54:48', '2025-12-17 19:46:14', 'dVDLp6ZA', '8549145'), - (42, 3302, 'attending', '2025-11-08 11:45:49', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550022'), - (42, 3304, 'not_attending', '2025-11-08 11:45:53', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550024'), - (42, 3305, 'attending', '2025-12-03 00:55:09', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550025'), - (42, 3306, 'not_attending', '2025-12-07 22:38:09', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550026'), - (42, 3307, 'attending', '2025-12-13 20:30:57', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550027'), - (42, 3308, 'attending', '2025-11-09 22:16:14', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550408'), - (42, 3309, 'attending', '2025-11-14 22:56:07', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550409'), - (42, 3310, 'attending', '2025-11-24 03:20:27', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550410'), - (42, 3311, 'not_attending', '2025-12-08 01:50:07', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550412'), - (42, 3318, 'not_attending', '2025-11-07 02:02:38', '2025-12-17 19:46:14', 'dVDLp6ZA', '8553025'), - (42, 3319, 'not_attending', '2025-11-08 01:36:31', '2025-12-17 19:46:14', 'dVDLp6ZA', '8553114'), - (42, 3320, 'maybe', '2025-11-13 00:23:32', '2025-12-17 19:46:14', 'dVDLp6ZA', '8555219'), - (42, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dVDLp6ZA', '8555421'), - (42, 3323, 'attending', '2025-11-15 12:00:42', '2025-12-17 19:46:14', 'dVDLp6ZA', '8555522'), - (42, 3332, 'maybe', '2025-12-02 21:38:23', '2025-12-17 19:46:11', 'dVDLp6ZA', '8562248'), - (43, 10, 'attending', '2020-03-25 23:38:55', '2025-12-17 19:47:56', 'x4oeVOJm', '2958053'), - (43, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'x4oeVOJm', '2961309'), - (43, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'x4oeVOJm', '2961895'), - (43, 34, 'attending', '2020-03-25 23:14:10', '2025-12-17 19:47:56', 'x4oeVOJm', '2966259'), - (43, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'x4oeVOJm', '2969208'), - (43, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'x4oeVOJm', '2971546'), - (43, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'x4oeVOJm', '2974534'), - (43, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'x4oeVOJm', '2974955'), - (43, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'x4oeVOJm', '2975384'), - (43, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'x4oeVOJm', '2975385'), - (43, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'x4oeVOJm', '2976575'), - (43, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'x4oeVOJm', '2977343'), - (43, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'x4oeVOJm', '2977812'), - (43, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'x4oeVOJm', '2977931'), - (43, 74, 'attending', '2020-04-18 00:24:39', '2025-12-17 19:47:57', 'x4oeVOJm', '2978244'), - (43, 75, 'attending', '2020-04-25 17:17:48', '2025-12-17 19:47:57', 'x4oeVOJm', '2978245'), - (43, 76, 'attending', '2020-04-18 00:24:43', '2025-12-17 19:47:57', 'x4oeVOJm', '2978246'), - (43, 77, 'attending', '2020-04-18 00:24:48', '2025-12-17 19:47:57', 'x4oeVOJm', '2978247'), - (43, 78, 'not_attending', '2020-05-19 18:49:52', '2025-12-17 19:47:57', 'x4oeVOJm', '2978249'), - (43, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'x4oeVOJm', '2978250'), - (43, 82, 'attending', '2020-04-10 22:33:23', '2025-12-17 19:47:57', 'x4oeVOJm', '2978433'), - (43, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'x4oeVOJm', '2978438'), - (43, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'x4oeVOJm', '2980871'), - (43, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'x4oeVOJm', '2981388'), - (43, 92, 'attending', '2020-04-19 07:02:28', '2025-12-17 19:47:57', 'x4oeVOJm', '2986743'), - (43, 103, 'attending', '2020-04-24 12:39:50', '2025-12-17 19:47:57', 'x4oeVOJm', '2991407'), - (43, 104, 'attending', '2020-04-24 13:41:50', '2025-12-17 19:47:57', 'x4oeVOJm', '2991471'), - (43, 106, 'attending', '2020-04-26 22:32:42', '2025-12-17 19:47:57', 'x4oeVOJm', '2993501'), - (43, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'x4oeVOJm', '2994480'), - (43, 110, 'not_attending', '2020-05-03 15:13:01', '2025-12-17 19:47:57', 'x4oeVOJm', '2994906'), - (43, 114, 'not_attending', '2020-04-28 14:40:24', '2025-12-17 19:47:57', 'x4oeVOJm', '2994911'), - (43, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', 'x4oeVOJm', '3001217'), - (43, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'x4oeVOJm', '3023063'), - (43, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'x4oeVOJm', '3034321'), - (43, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'x4oeVOJm', '3035881'), - (43, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'x4oeVOJm', '3049983'), - (43, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'x4oeVOJm', '3058959'), - (43, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'x4oeVOJm', '3067093'), - (43, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'x4oeVOJm', '3075228'), - (43, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'x4oeVOJm', '3075456'), - (43, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'x4oeVOJm', '3083791'), - (43, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'x4oeVOJm', '3085151'), - (43, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'x4oeVOJm', '3087265'), - (43, 197, 'attending', '2020-08-21 00:20:28', '2025-12-17 19:47:56', 'x4oeVOJm', '3087266'), - (43, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'x4oeVOJm', '3087267'), - (43, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'x4oeVOJm', '3087268'), - (43, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'x4oeVOJm', '3088653'), - (43, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'x4oeVOJm', '3106813'), - (43, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'x4oeVOJm', '3129980'), - (43, 225, 'attending', '2020-07-13 21:33:15', '2025-12-17 19:47:55', 'x4oeVOJm', '3132378'), - (43, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'x4oeVOJm', '3132817'), - (43, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'x4oeVOJm', '3132820'), - (43, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'x4oeVOJm', '3155321'), - (43, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'x4oeVOJm', '3162006'), - (43, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'x4oeVOJm', '3163442'), - (43, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'x4oeVOJm', '3172832'), - (43, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'x4oeVOJm', '3172833'), - (43, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'x4oeVOJm', '3172834'), - (43, 296, 'attending', '2020-08-10 02:04:42', '2025-12-17 19:47:56', 'x4oeVOJm', '3172876'), - (43, 305, 'attending', '2020-08-14 14:27:01', '2025-12-17 19:47:56', 'x4oeVOJm', '3179555'), - (43, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'x4oeVOJm', '3186057'), - (43, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'x4oeVOJm', '3191735'), - (43, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'x4oeVOJm', '3200209'), - (43, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', 'x4oeVOJm', '3214207'), - (43, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'x4oeVOJm', '3217037'), - (43, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'x4oeVOJm', '3218510'), - (43, 379, 'attending', '2020-09-26 00:17:56', '2025-12-17 19:47:52', 'x4oeVOJm', '3226266'), - (43, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'x4oeVOJm', '3228698'), - (43, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'x4oeVOJm', '3228699'), - (43, 387, 'attending', '2020-10-17 16:01:40', '2025-12-17 19:47:52', 'x4oeVOJm', '3228700'), - (43, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'x4oeVOJm', '3228701'), - (43, 424, 'attending', '2020-10-12 00:53:47', '2025-12-17 19:47:52', 'x4oeVOJm', '3245751'), - (43, 427, 'attending', '2020-10-14 16:13:55', '2025-12-17 19:47:53', 'x4oeVOJm', '3250233'), - (43, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'x4oeVOJm', '3256168'), - (43, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'x4oeVOJm', '3263578'), - (43, 456, 'attending', '2020-11-05 05:32:38', '2025-12-17 19:47:54', 'x4oeVOJm', '3276428'), - (43, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'x4oeVOJm', '3281467'), - (43, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'x4oeVOJm', '3281470'), - (43, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'x4oeVOJm', '3281829'), - (43, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'x4oeVOJm', '3285413'), - (43, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'x4oeVOJm', '3285414'), - (43, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'x4oeVOJm', '3297764'), - (43, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'x4oeVOJm', '3313856'), - (43, 499, 'attending', '2020-11-30 03:46:08', '2025-12-17 19:47:55', 'x4oeVOJm', '3314909'), - (43, 500, 'attending', '2020-12-14 02:14:48', '2025-12-17 19:47:55', 'x4oeVOJm', '3314964'), - (43, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'x4oeVOJm', '3323365'), - (43, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'x4oeVOJm', '3329383'), - (43, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'x4oeVOJm', '3351539'), - (43, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'x4oeVOJm', '3386848'), - (43, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'x4oeVOJm', '3389527'), - (43, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'x4oeVOJm', '3396499'), - (43, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'x4oeVOJm', '3403650'), - (43, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'x4oeVOJm', '3406988'), - (43, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'x4oeVOJm', '3416576'), - (43, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'x4oeVOJm', '3426074'), - (43, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'x4oeVOJm', '3430267'), - (43, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'x4oeVOJm', '3470303'), - (43, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'x4oeVOJm', '3470305'), - (43, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'x4oeVOJm', '3470991'), - (43, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'x4oeVOJm', '3517815'), - (43, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'x4oeVOJm', '3517816'), - (43, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'x4oeVOJm', '3523941'), - (43, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'x4oeVOJm', '3533850'), - (43, 637, 'attending', '2021-03-01 17:30:57', '2025-12-17 19:47:51', 'x4oeVOJm', '3536411'), - (43, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'x4oeVOJm', '3536632'), - (43, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'x4oeVOJm', '3536656'), - (43, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'x4oeVOJm', '3539916'), - (43, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'x4oeVOJm', '3539917'), - (43, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'x4oeVOJm', '3539918'), - (43, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'x4oeVOJm', '3539919'), - (43, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'x4oeVOJm', '3539920'), - (43, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'x4oeVOJm', '3539921'), - (43, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'x4oeVOJm', '3539922'), - (43, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'x4oeVOJm', '3539923'), - (43, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'x4oeVOJm', '3539927'), - (43, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'x4oeVOJm', '3582734'), - (43, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'x4oeVOJm', '3583262'), - (43, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'x4oeVOJm', '3619523'), - (43, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'x4oeVOJm', '3661369'), - (43, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'x4oeVOJm', '3674262'), - (43, 761, 'attending', '2021-04-16 12:30:47', '2025-12-17 19:47:46', 'x4oeVOJm', '3716041'), - (43, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'x4oeVOJm', '3730212'), - (43, 784, 'attending', '2021-05-01 15:15:08', '2025-12-17 19:47:46', 'x4oeVOJm', '3768775'), - (43, 792, 'attending', '2021-05-07 17:54:27', '2025-12-17 19:47:46', 'x4oeVOJm', '3793156'), - (43, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'x4oeVOJm', '3974109'), - (43, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'x4oeVOJm', '3975311'), - (43, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'x4oeVOJm', '3975312'), - (43, 835, 'not_attending', '2021-06-04 00:28:36', '2025-12-17 19:47:47', 'x4oeVOJm', '3992486'), - (43, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'x4oeVOJm', '3994992'), - (43, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'x4oeVOJm', '4014338'), - (43, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'x4oeVOJm', '4021848'), - (43, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'x4oeVOJm', '4136744'), - (43, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'x4oeVOJm', '4136937'), - (43, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'x4oeVOJm', '4136938'), - (43, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'x4oeVOJm', '4136947'), - (43, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oeVOJm', '4210314'), - (43, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oeVOJm', '4225444'), - (43, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'x4oeVOJm', '4239259'), - (43, 900, 'maybe', '2021-07-24 13:14:38', '2025-12-17 19:47:40', 'x4oeVOJm', '4240316'), - (43, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oeVOJm', '4240317'), - (43, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'x4oeVOJm', '4240318'), - (43, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'x4oeVOJm', '4240320'), - (43, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'x4oeVOJm', '4250163'), - (43, 906, 'not_attending', '2021-07-05 05:49:09', '2025-12-17 19:47:39', 'x4oeVOJm', '4253431'), - (43, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oeVOJm', '4275957'), - (43, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oeVOJm', '4277819'), - (43, 932, 'attending', '2021-07-22 22:55:33', '2025-12-17 19:47:42', 'x4oeVOJm', '4301664'), - (43, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oeVOJm', '4301723'), - (43, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'x4oeVOJm', '4302093'), - (43, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oeVOJm', '4304151'), - (43, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'x4oeVOJm', '4356801'), - (43, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'x4oeVOJm', '4366186'), - (43, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'x4oeVOJm', '4366187'), - (43, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'x4oeVOJm', '4420735'), - (43, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'x4oeVOJm', '4420738'), - (43, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'x4oeVOJm', '4420739'), - (43, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'x4oeVOJm', '4420741'), - (43, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'x4oeVOJm', '4420744'), - (43, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'x4oeVOJm', '4420747'), - (43, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'x4oeVOJm', '4420748'), - (43, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'x4oeVOJm', '4420749'), - (43, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'x4oeVOJm', '4461883'), - (43, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'x4oeVOJm', '4508342'), - (43, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'x4oeVOJm', '4568602'), - (43, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'x4oeVOJm', '4572153'), - (43, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'x4oeVOJm', '4585962'), - (43, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'x4oeVOJm', '4596356'), - (43, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'x4oeVOJm', '4598860'), - (43, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'x4oeVOJm', '4598861'), - (43, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'x4oeVOJm', '4602797'), - (43, 1102, 'attending', '2021-11-14 21:21:27', '2025-12-17 19:47:37', 'x4oeVOJm', '4612098'), - (43, 1114, 'not_attending', '2021-11-14 00:08:37', '2025-12-17 19:47:36', 'x4oeVOJm', '4637896'), - (43, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'x4oeVOJm', '4642994'), - (43, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'x4oeVOJm', '4642995'), - (43, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'x4oeVOJm', '4642996'), - (43, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'x4oeVOJm', '4642997'), - (43, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'x4oeVOJm', '4645687'), - (43, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'x4oeVOJm', '4645698'), - (43, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'x4oeVOJm', '4645704'), - (43, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'x4oeVOJm', '4645705'), - (43, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'x4oeVOJm', '4668385'), - (43, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'x4oeVOJm', '4694407'), - (43, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'x4oeVOJm', '4736497'), - (43, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'x4oeVOJm', '4736499'), - (43, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'x4oeVOJm', '4736500'), - (43, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'x4oeVOJm', '4736503'), - (43, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'x4oeVOJm', '4736504'), - (43, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'x4oeVOJm', '4746789'), - (43, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'x4oeVOJm', '4753929'), - (43, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'x4oeVOJm', '5038850'), - (43, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'x4oeVOJm', '5045826'), - (43, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'x4oeVOJm', '5132533'), - (43, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'x4oeVOJm', '5186582'), - (43, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'x4oeVOJm', '5186583'), - (43, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'x4oeVOJm', '5186585'), - (43, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'x4oeVOJm', '5190437'), - (43, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'x4oeVOJm', '5215989'), - (43, 1346, 'not_attending', '2022-04-23 21:49:08', '2025-12-17 19:47:27', 'x4oeVOJm', '5247467'), - (43, 1362, 'attending', '2022-04-27 00:53:37', '2025-12-17 19:47:28', 'x4oeVOJm', '5260800'), - (43, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'x4oeVOJm', '5269930'), - (43, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'x4oeVOJm', '5271448'), - (43, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'x4oeVOJm', '5271449'), - (43, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'x4oeVOJm', '5276469'), - (43, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'x4oeVOJm', '5278159'), - (43, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'x4oeVOJm', '5363695'), - (43, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'x4oeVOJm', '5365960'), - (43, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'x4oeVOJm', '5368973'), - (43, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'x4oeVOJm', '5378247'), - (43, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'x4oeVOJm', '5389605'), - (43, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'x4oeVOJm', '5397265'), - (43, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'x4oeVOJm', '5403967'), - (43, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'x4oeVOJm', '5405203'), - (43, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'x4oeVOJm', '5408794'), - (43, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'x4oeVOJm', '5411699'), - (43, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'x4oeVOJm', '5412550'), - (43, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'x4oeVOJm', '5415046'), - (43, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'x4oeVOJm', '5422086'), - (43, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'x4oeVOJm', '5422406'), - (43, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'x4oeVOJm', '5424565'), - (43, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'x4oeVOJm', '5426882'), - (43, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'x4oeVOJm', '5427083'), - (43, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'x4oeVOJm', '5441125'), - (43, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'x4oeVOJm', '5441126'), - (43, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'x4oeVOJm', '5441128'), - (43, 1517, 'attending', '2022-08-26 22:10:44', '2025-12-17 19:47:23', 'x4oeVOJm', '5441130'), - (43, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'x4oeVOJm', '5441131'), - (43, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'x4oeVOJm', '5441132'), - (43, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'x4oeVOJm', '5446643'), - (43, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'x4oeVOJm', '5453325'), - (43, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'x4oeVOJm', '5454516'), - (43, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'x4oeVOJm', '5454605'), - (43, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'x4oeVOJm', '5455037'), - (43, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'x4oeVOJm', '5461278'), - (43, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'x4oeVOJm', '5469480'), - (43, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'x4oeVOJm', '5471073'), - (43, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'x4oeVOJm', '5474663'), - (43, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'x4oeVOJm', '5482022'), - (43, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'x4oeVOJm', '5482793'), - (43, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'x4oeVOJm', '5488912'), - (43, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'x4oeVOJm', '5492192'), - (43, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'x4oeVOJm', '5493139'), - (43, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'x4oeVOJm', '5493200'), - (43, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'x4oeVOJm', '5502188'), - (43, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'x4oeVOJm', '5505059'), - (43, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'x4oeVOJm', '5509055'), - (43, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'x4oeVOJm', '5512862'), - (43, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'x4oeVOJm', '5513985'), - (43, 1626, 'attending', '2022-08-26 00:31:12', '2025-12-17 19:47:11', 'x4oeVOJm', '5519981'), - (43, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'x4oeVOJm', '5522550'), - (43, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'x4oeVOJm', '5534683'), - (43, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'x4oeVOJm', '5537735'), - (43, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'x4oeVOJm', '5540859'), - (43, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'x4oeVOJm', '5546619'), - (43, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'x4oeVOJm', '5555245'), - (43, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'x4oeVOJm', '5557747'), - (43, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'x4oeVOJm', '5560255'), - (43, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'x4oeVOJm', '5562906'), - (43, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'x4oeVOJm', '5600604'), - (43, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'x4oeVOJm', '5605544'), - (43, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'x4oeVOJm', '5630960'), - (43, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'x4oeVOJm', '5630961'), - (43, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'x4oeVOJm', '5630962'), - (43, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'x4oeVOJm', '5630966'), - (43, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'x4oeVOJm', '5630967'), - (43, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'x4oeVOJm', '5630968'), - (43, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'x4oeVOJm', '5635406'), - (43, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'x4oeVOJm', '5638765'), - (43, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'x4oeVOJm', '5640097'), - (43, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'x4oeVOJm', '5640843'), - (43, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'x4oeVOJm', '5641521'), - (43, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'x4oeVOJm', '5642818'), - (43, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'x4oeVOJm', '5652395'), - (43, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'x4oeVOJm', '5670445'), - (43, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'x4oeVOJm', '5671637'), - (43, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'x4oeVOJm', '5672329'), - (43, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'x4oeVOJm', '5674057'), - (43, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'x4oeVOJm', '5674060'), - (43, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'x4oeVOJm', '5677461'), - (43, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'x4oeVOJm', '5698046'), - (43, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'x4oeVOJm', '5699760'), - (43, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'x4oeVOJm', '5741601'), - (43, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'x4oeVOJm', '5763458'), - (43, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'x4oeVOJm', '5774172'), - (43, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'x4oeVOJm', '5818247'), - (43, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'x4oeVOJm', '5819471'), - (43, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'x4oeVOJm', '5827739'), - (43, 1844, 'attending', '2022-12-18 00:27:56', '2025-12-17 19:47:05', 'x4oeVOJm', '5844306'), - (43, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'x4oeVOJm', '5850159'), - (43, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'x4oeVOJm', '5858999'), - (43, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'x4oeVOJm', '5871984'), - (43, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'x4oeVOJm', '5876354'), - (43, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'x4oeVOJm', '5880939'), - (43, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'x4oeVOJm', '5880940'), - (43, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'x4oeVOJm', '5880942'), - (43, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'x4oeVOJm', '5880943'), - (43, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'x4oeVOJm', '5887890'), - (43, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'x4oeVOJm', '5888598'), - (43, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'x4oeVOJm', '5893260'), - (43, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'x4oeVOJm', '5899826'), - (43, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'x4oeVOJm', '5900199'), - (43, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'x4oeVOJm', '5900200'), - (43, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'x4oeVOJm', '5900202'), - (43, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'x4oeVOJm', '5900203'), - (43, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'x4oeVOJm', '5901108'), - (43, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'x4oeVOJm', '5901126'), - (43, 1897, 'attending', '2023-02-11 00:55:35', '2025-12-17 19:47:07', 'x4oeVOJm', '5901128'), - (43, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'x4oeVOJm', '5909655'), - (43, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'x4oeVOJm', '5910522'), - (43, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'x4oeVOJm', '5910526'), - (43, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'x4oeVOJm', '5910528'), - (43, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'x4oeVOJm', '5916219'), - (43, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'x4oeVOJm', '5936234'), - (43, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'x4oeVOJm', '5958351'), - (43, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'x4oeVOJm', '5959751'), - (43, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'x4oeVOJm', '5959755'), - (43, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'x4oeVOJm', '5960055'), - (43, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'x4oeVOJm', '5961684'), - (43, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'x4oeVOJm', '5962132'), - (43, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'x4oeVOJm', '5962133'), - (43, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'x4oeVOJm', '5962134'), - (43, 1947, 'not_attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'x4oeVOJm', '5962233'), - (43, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'x4oeVOJm', '5962317'), - (43, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'x4oeVOJm', '5962318'), - (43, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'x4oeVOJm', '5965933'), - (43, 1953, 'attending', '2023-03-01 20:39:23', '2025-12-17 19:47:09', 'x4oeVOJm', '5966307'), - (43, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'x4oeVOJm', '5967014'), - (43, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'x4oeVOJm', '5972763'), - (43, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'x4oeVOJm', '5972815'), - (43, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'x4oeVOJm', '5974016'), - (43, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'x4oeVOJm', '5981515'), - (43, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'x4oeVOJm', '5993516'), - (43, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'x4oeVOJm', '5998939'), - (43, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'x4oeVOJm', '6028191'), - (43, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'x4oeVOJm', '6040066'), - (43, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'x4oeVOJm', '6042717'), - (43, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'x4oeVOJm', '6044838'), - (43, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'x4oeVOJm', '6044839'), - (43, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oeVOJm', '6045684'), - (43, 1991, 'attending', '2023-03-30 14:47:04', '2025-12-17 19:46:58', 'x4oeVOJm', '6047354'), - (43, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'x4oeVOJm', '6050104'), - (43, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'x4oeVOJm', '6053195'), - (43, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'x4oeVOJm', '6053198'), - (43, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'x4oeVOJm', '6056085'), - (43, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'x4oeVOJm', '6056916'), - (43, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'x4oeVOJm', '6059290'), - (43, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'x4oeVOJm', '6060328'), - (43, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'x4oeVOJm', '6061037'), - (43, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'x4oeVOJm', '6061039'), - (43, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'x4oeVOJm', '6065813'), - (43, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'x4oeVOJm', '6067245'), - (43, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'x4oeVOJm', '6068094'), - (43, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'x4oeVOJm', '6068252'), - (43, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'x4oeVOJm', '6068253'), - (43, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'x4oeVOJm', '6068254'), - (43, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'x4oeVOJm', '6068280'), - (43, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'x4oeVOJm', '6069093'), - (43, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'x4oeVOJm', '6072528'), - (43, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', 'x4oeVOJm', '6073678'), - (43, 2045, 'attending', '2023-04-27 13:13:49', '2025-12-17 19:47:01', 'x4oeVOJm', '6075556'), - (43, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'x4oeVOJm', '6079840'), - (43, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'x4oeVOJm', '6083398'), - (43, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'x4oeVOJm', '6093504'), - (43, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'x4oeVOJm', '6097414'), - (43, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'x4oeVOJm', '6097442'), - (43, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'x4oeVOJm', '6097684'), - (43, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'x4oeVOJm', '6098762'), - (43, 2064, 'attending', '2023-06-20 14:40:23', '2025-12-17 19:46:50', 'x4oeVOJm', '6099988'), - (43, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'x4oeVOJm', '6101361'), - (43, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'x4oeVOJm', '6101362'), - (43, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', 'x4oeVOJm', '6119877'), - (43, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'x4oeVOJm', '6120034'), - (43, 2094, 'not_attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'x4oeVOJm', '6135924'), - (43, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'x4oeVOJm', '6136733'), - (43, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'x4oeVOJm', '6137989'), - (43, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'x4oeVOJm', '6150864'), - (43, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'x4oeVOJm', '6155491'), - (43, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'x4oeVOJm', '6164417'), - (43, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'x4oeVOJm', '6166388'), - (43, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'x4oeVOJm', '6176439'), - (43, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'x4oeVOJm', '6182410'), - (43, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'x4oeVOJm', '6185812'), - (43, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'x4oeVOJm', '6187651'), - (43, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'x4oeVOJm', '6187963'), - (43, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'x4oeVOJm', '6187964'), - (43, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'x4oeVOJm', '6187966'), - (43, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'x4oeVOJm', '6187967'), - (43, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'x4oeVOJm', '6187969'), - (43, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'x4oeVOJm', '6334878'), - (43, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'x4oeVOJm', '6337236'), - (43, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'x4oeVOJm', '6337970'), - (43, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'x4oeVOJm', '6338308'), - (43, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'x4oeVOJm', '6341710'), - (43, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'x4oeVOJm', '6342044'), - (43, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'x4oeVOJm', '6342298'), - (43, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'x4oeVOJm', '6343294'), - (43, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'x4oeVOJm', '6347034'), - (43, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'x4oeVOJm', '6347056'), - (43, 2183, 'attending', '2023-07-29 21:03:51', '2025-12-17 19:46:54', 'x4oeVOJm', '6353008'), - (43, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'x4oeVOJm', '6353830'), - (43, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'x4oeVOJm', '6353831'), - (43, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'x4oeVOJm', '6357867'), - (43, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'x4oeVOJm', '6358652'), - (43, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'x4oeVOJm', '6361709'), - (43, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'x4oeVOJm', '6361710'), - (43, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'x4oeVOJm', '6361711'), - (43, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'x4oeVOJm', '6361712'), - (43, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'x4oeVOJm', '6361713'), - (43, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'x4oeVOJm', '6394629'), - (43, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'x4oeVOJm', '6394631'), - (43, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'x4oeVOJm', '6440863'), - (43, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'x4oeVOJm', '6445440'), - (43, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'x4oeVOJm', '6453951'), - (43, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'x4oeVOJm', '6461696'), - (43, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'x4oeVOJm', '6462129'), - (43, 2291, 'attending', '2023-10-20 15:50:06', '2025-12-17 19:46:46', 'x4oeVOJm', '6462215'), - (43, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'x4oeVOJm', '6463218'), - (43, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'x4oeVOJm', '6472181'), - (43, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'x4oeVOJm', '6482693'), - (43, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'x4oeVOJm', '6484200'), - (43, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'x4oeVOJm', '6484680'), - (43, 2310, 'attending', '2023-10-29 03:30:07', '2025-12-17 19:46:47', 'x4oeVOJm', '6487709'), - (43, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'x4oeVOJm', '6507741'), - (43, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'x4oeVOJm', '6514659'), - (43, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'x4oeVOJm', '6514660'), - (43, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'x4oeVOJm', '6519103'), - (43, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'x4oeVOJm', '6535681'), - (43, 2351, 'attending', '2023-11-21 02:14:06', '2025-12-17 19:46:48', 'x4oeVOJm', '6584747'), - (43, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'x4oeVOJm', '6587097'), - (43, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'x4oeVOJm', '6609022'), - (43, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'x4oeVOJm', '6632757'), - (43, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'x4oeVOJm', '6644187'), - (43, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'x4oeVOJm', '6648951'), - (43, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'x4oeVOJm', '6648952'), - (43, 2388, 'attending', '2024-01-06 02:58:57', '2025-12-17 19:46:37', 'x4oeVOJm', '6649244'), - (43, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'x4oeVOJm', '6655401'), - (43, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'x4oeVOJm', '6661585'), - (43, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'x4oeVOJm', '6661588'), - (43, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'x4oeVOJm', '6661589'), - (43, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'x4oeVOJm', '6699906'), - (43, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'x4oeVOJm', '6699913'), - (43, 2413, 'attending', '2024-02-08 02:21:50', '2025-12-17 19:46:42', 'x4oeVOJm', '6700719'), - (43, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'x4oeVOJm', '6701109'), - (43, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'x4oeVOJm', '6705219'), - (43, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'x4oeVOJm', '6710153'), - (43, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'x4oeVOJm', '6711552'), - (43, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'x4oeVOJm', '6711553'), - (43, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'x4oeVOJm', '6722688'), - (43, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'x4oeVOJm', '6730620'), - (43, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'x4oeVOJm', '6730642'), - (43, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'x4oeVOJm', '6740364'), - (43, 2454, 'attending', '2024-02-08 02:27:20', '2025-12-17 19:46:42', 'x4oeVOJm', '6740921'), - (43, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'x4oeVOJm', '6743829'), - (43, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'x4oeVOJm', '7030380'), - (43, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'x4oeVOJm', '7033677'), - (43, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'x4oeVOJm', '7035415'), - (43, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'x4oeVOJm', '7044715'), - (43, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'x4oeVOJm', '7050318'), - (43, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'x4oeVOJm', '7050319'), - (43, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'x4oeVOJm', '7050322'), - (43, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'x4oeVOJm', '7057804'), - (43, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'x4oeVOJm', '7072824'), - (43, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'x4oeVOJm', '7074348'), - (43, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'x4oeVOJm', '7074364'), - (43, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'x4oeVOJm', '7089267'), - (43, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'x4oeVOJm', '7098747'), - (43, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'x4oeVOJm', '7113468'), - (43, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'x4oeVOJm', '7114856'), - (43, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'x4oeVOJm', '7114951'), - (43, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'x4oeVOJm', '7114955'), - (43, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'x4oeVOJm', '7114956'), - (43, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'x4oeVOJm', '7114957'), - (43, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'x4oeVOJm', '7153615'), - (43, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'x4oeVOJm', '7159484'), - (43, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'x4oeVOJm', '7178446'), - (43, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'x4oeVOJm', '7220467'), - (43, 2605, 'attending', '2024-04-29 03:45:06', '2025-12-17 19:46:35', 'x4oeVOJm', '7229243'), - (43, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'x4oeVOJm', '7240354'), - (43, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'x4oeVOJm', '7251633'), - (43, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'x4oeVOJm', '7302674'), - (43, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'x4oeVOJm', '7324073'), - (43, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'x4oeVOJm', '7324074'), - (43, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'x4oeVOJm', '7324075'), - (43, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'x4oeVOJm', '7324078'), - (43, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'x4oeVOJm', '7324082'), - (43, 2722, 'attending', '2024-06-18 22:36:45', '2025-12-17 19:46:29', 'x4oeVOJm', '7331457'), - (43, 2753, 'attending', '2024-07-08 21:47:20', '2025-12-17 19:46:30', 'x4oeVOJm', '7355538'), - (43, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'x4oeVOJm', '7363643'), - (43, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'x4oeVOJm', '7368606'), - (43, 2787, 'attending', '2024-08-01 22:02:27', '2025-12-17 19:46:32', 'x4oeVOJm', '7381568'), - (43, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'x4oeVOJm', '7397462'), - (43, 2805, 'attending', '2024-08-20 14:00:40', '2025-12-17 19:46:32', 'x4oeVOJm', '7403620'), - (43, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'x4oeVOJm', '7424275'), - (43, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'x4oeVOJm', '7424276'), - (43, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'x4oeVOJm', '7432751'), - (43, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'x4oeVOJm', '7432752'), - (43, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'x4oeVOJm', '7432753'), - (43, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'x4oeVOJm', '7432754'), - (43, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'x4oeVOJm', '7432755'), - (43, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'x4oeVOJm', '7432756'), - (43, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'x4oeVOJm', '7432758'), - (43, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'x4oeVOJm', '7432759'), - (43, 2832, 'attending', '2024-09-09 20:27:36', '2025-12-17 19:46:24', 'x4oeVOJm', '7433324'), - (43, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'x4oeVOJm', '7433834'), - (43, 2837, 'not_attending', '2024-09-12 18:57:43', '2025-12-17 19:46:25', 'x4oeVOJm', '7438711'), - (43, 2843, 'maybe', '2024-09-22 19:48:44', '2025-12-17 19:46:25', 'x4oeVOJm', '7450219'), - (43, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'x4oeVOJm', '7470197'), - (43, 2873, 'attending', '2024-12-10 05:16:40', '2025-12-17 19:46:22', 'x4oeVOJm', '7480850'), - (43, 2878, 'attending', '2024-10-10 22:56:05', '2025-12-17 19:46:26', 'x4oeVOJm', '7633857'), - (43, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'x4oeVOJm', '7685613'), - (43, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'x4oeVOJm', '7688194'), - (43, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'x4oeVOJm', '7688196'), - (43, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'x4oeVOJm', '7688289'), - (43, 2908, 'not_attending', '2024-11-11 01:14:44', '2025-12-17 19:46:27', 'x4oeVOJm', '7689420'), - (43, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'x4oeVOJm', '7692763'), - (43, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'x4oeVOJm', '7697552'), - (43, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'x4oeVOJm', '7699878'), - (43, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'x4oeVOJm', '7704043'), - (43, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'x4oeVOJm', '7712467'), - (43, 2925, 'attending', '2024-12-10 18:07:34', '2025-12-17 19:46:21', 'x4oeVOJm', '7713584'), - (43, 2926, 'attending', '2024-12-04 07:36:35', '2025-12-17 19:46:21', 'x4oeVOJm', '7713585'), - (43, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'x4oeVOJm', '7713586'), - (43, 2942, 'not_attending', '2025-02-20 21:11:16', '2025-12-17 19:46:24', 'x4oeVOJm', '7725960'), - (43, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'x4oeVOJm', '7738518'), - (43, 2962, 'attending', '2024-12-25 03:15:39', '2025-12-17 19:46:22', 'x4oeVOJm', '7750632'), - (43, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'x4oeVOJm', '7750636'), - (43, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'x4oeVOJm', '7796540'), - (43, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'x4oeVOJm', '7796541'), - (43, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'x4oeVOJm', '7796542'), - (43, 2968, 'attending', '2025-01-08 20:09:55', '2025-12-17 19:46:22', 'x4oeVOJm', '7797967'), - (43, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'x4oeVOJm', '7825913'), - (43, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'x4oeVOJm', '7826209'), - (43, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'x4oeVOJm', '7834742'), - (43, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'x4oeVOJm', '7842108'), - (43, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'x4oeVOJm', '7842902'), - (43, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'x4oeVOJm', '7842903'), - (43, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'x4oeVOJm', '7842904'), - (43, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'x4oeVOJm', '7842905'), - (43, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'x4oeVOJm', '7842906'), - (43, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'x4oeVOJm', '7842909'), - (43, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'x4oeVOJm', '7855719'), - (43, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'x4oeVOJm', '7860683'), - (43, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'x4oeVOJm', '7860684'), - (43, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'x4oeVOJm', '7866095'), - (43, 3013, 'attending', '2025-03-04 04:05:12', '2025-12-17 19:46:18', 'x4oeVOJm', '7869170'), - (43, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'x4oeVOJm', '7869188'), - (43, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'x4oeVOJm', '7869194'), - (43, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'x4oeVOJm', '7869195'), - (43, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'x4oeVOJm', '7877465'), - (43, 3056, 'attending', '2025-03-21 15:24:13', '2025-12-17 19:46:19', 'x4oeVOJm', '7888250'), - (43, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'x4oeVOJm', '7903852'), - (43, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'x4oeVOJm', '7904777'), - (43, 3095, 'attending', '2025-05-03 18:01:47', '2025-12-17 19:46:20', 'x4oeVOJm', '8342293'), - (43, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'x4oeVOJm', '8349164'), - (43, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'x4oeVOJm', '8349545'), - (43, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'x4oeVOJm', '8353584'), - (43, 3114, 'maybe', '2025-05-05 11:59:34', '2025-12-17 19:46:20', 'x4oeVOJm', '8357180'), - (43, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'x4oeVOJm', '8368028'), - (43, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'x4oeVOJm', '8368029'), - (43, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'x4oeVOJm', '8400273'), - (43, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'x4oeVOJm', '8400274'), - (43, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'x4oeVOJm', '8400275'), - (43, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'x4oeVOJm', '8400276'), - (43, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'x4oeVOJm', '8404977'), - (43, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'x4oeVOJm', '8430783'), - (43, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'x4oeVOJm', '8430784'), - (43, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'x4oeVOJm', '8430799'), - (43, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'x4oeVOJm', '8430800'), - (43, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'x4oeVOJm', '8430801'), - (43, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'x4oeVOJm', '8438709'), - (43, 3193, 'attending', '2025-07-17 22:37:24', '2025-12-17 19:46:17', 'x4oeVOJm', '8457738'), - (43, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'x4oeVOJm', '8459566'), - (43, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'x4oeVOJm', '8459567'), - (43, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'x4oeVOJm', '8459568'), - (43, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'x4oeVOJm', '8461032'), - (43, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'x4oeVOJm', '8477877'), - (43, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'x4oeVOJm', '8485688'), - (43, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'x4oeVOJm', '8490587'), - (43, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'x4oeVOJm', '8493552'), - (43, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'x4oeVOJm', '8493553'), - (43, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'x4oeVOJm', '8493554'), - (43, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'x4oeVOJm', '8493555'), - (43, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'x4oeVOJm', '8493556'), - (43, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'x4oeVOJm', '8493557'), - (43, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'x4oeVOJm', '8493558'), - (43, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'x4oeVOJm', '8493559'), - (43, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'x4oeVOJm', '8493560'), - (43, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'x4oeVOJm', '8493561'), - (43, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'x4oeVOJm', '8493572'), - (43, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'x4oeVOJm', '8540725'), - (43, 3300, 'attending', '2025-11-07 12:15:00', '2025-12-17 19:46:14', 'x4oeVOJm', '8549145'), - (43, 3302, 'attending', '2025-11-14 03:41:59', '2025-12-17 19:46:14', 'x4oeVOJm', '8550022'), - (43, 3304, 'attending', '2025-11-16 16:37:21', '2025-12-17 19:46:14', 'x4oeVOJm', '8550024'), - (43, 3307, 'attending', '2025-12-15 14:52:06', '2025-12-17 19:46:11', 'x4oeVOJm', '8550027'), - (43, 3308, 'attending', '2025-11-11 23:33:25', '2025-12-17 19:46:14', 'x4oeVOJm', '8550408'), - (43, 3309, 'attending', '2025-11-16 16:36:56', '2025-12-17 19:46:14', 'x4oeVOJm', '8550409'), - (43, 3310, 'attending', '2025-11-30 21:20:24', '2025-12-17 19:46:11', 'x4oeVOJm', '8550410'), - (43, 3311, 'attending', '2025-12-09 03:06:55', '2025-12-17 19:46:11', 'x4oeVOJm', '8550412'), - (43, 3318, 'not_attending', '2025-11-07 02:02:31', '2025-12-17 19:46:14', 'x4oeVOJm', '8553025'), - (43, 3320, 'attending', '2025-11-16 16:37:10', '2025-12-17 19:46:14', 'x4oeVOJm', '8555219'), - (43, 3340, 'attending', '2025-12-09 03:00:08', '2025-12-17 19:46:11', 'x4oeVOJm', '8563371'), - (44, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd5Y0BbOd', '7904777'), - (44, 3107, 'attending', '2025-05-02 05:06:59', '2025-12-17 19:46:20', 'd5Y0BbOd', '8350107'), - (44, 3109, 'attending', '2025-05-06 09:37:55', '2025-12-17 19:46:21', 'd5Y0BbOd', '8352001'), - (44, 3114, 'not_attending', '2025-05-02 21:35:08', '2025-12-17 19:46:20', 'd5Y0BbOd', '8357180'), - (44, 3120, 'maybe', '2025-05-06 09:38:08', '2025-12-17 19:46:21', 'd5Y0BbOd', '8360736'), - (44, 3121, 'maybe', '2025-05-11 06:41:27', '2025-12-17 19:46:21', 'd5Y0BbOd', '8362730'), - (44, 3122, 'not_attending', '2025-05-11 06:41:32', '2025-12-17 19:46:21', 'd5Y0BbOd', '8362978'), - (44, 3129, 'attending', '2025-05-13 05:51:40', '2025-12-17 19:46:21', 'd5Y0BbOd', '8366441'), - (44, 3131, 'not_attending', '2025-05-13 05:51:29', '2025-12-17 19:46:21', 'd5Y0BbOd', '8368028'), - (44, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd5Y0BbOd', '8368029'), - (44, 3133, 'not_attending', '2025-05-26 02:55:14', '2025-12-17 19:46:14', 'd5Y0BbOd', '8368030'), - (44, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd5Y0BbOd', '8388462'), - (44, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd5Y0BbOd', '8400273'), - (44, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd5Y0BbOd', '8400274'), - (44, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd5Y0BbOd', '8400275'), - (44, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd5Y0BbOd', '8400276'), - (44, 3166, 'attending', '2025-06-10 15:33:31', '2025-12-17 19:46:15', 'd5Y0BbOd', '8404242'), - (44, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd5Y0BbOd', '8404977'), - (44, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd5Y0BbOd', '8430783'), - (44, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd5Y0BbOd', '8430784'), - (44, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd5Y0BbOd', '8430799'), - (44, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd5Y0BbOd', '8430800'), - (44, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd5Y0BbOd', '8430801'), - (44, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd5Y0BbOd', '8438709'), - (44, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd5Y0BbOd', '8457738'), - (44, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd5Y0BbOd', '8459566'), - (44, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd5Y0BbOd', '8459567'), - (44, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd5Y0BbOd', '8461032'), - (44, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd5Y0BbOd', '8477877'), - (44, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd5Y0BbOd', '8485688'), - (44, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd5Y0BbOd', '8490587'), - (44, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd5Y0BbOd', '8493552'), - (44, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd5Y0BbOd', '8493553'), - (44, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd5Y0BbOd', '8493554'), - (44, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd5Y0BbOd', '8493555'), - (44, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd5Y0BbOd', '8493556'), - (44, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd5Y0BbOd', '8493557'), - (44, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd5Y0BbOd', '8493558'), - (44, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd5Y0BbOd', '8493559'), - (44, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd5Y0BbOd', '8493560'), - (44, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd5Y0BbOd', '8493561'), - (44, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd5Y0BbOd', '8493572'), - (44, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd5Y0BbOd', '8540725'), - (44, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd5Y0BbOd', '8555421'), - (45, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd9oPaqqA', '6164417'), - (45, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd9oPaqqA', '6166388'), - (45, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd9oPaqqA', '6176439'), - (45, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'd9oPaqqA', '6182410'), - (45, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd9oPaqqA', '6185812'), - (45, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd9oPaqqA', '6187651'), - (45, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd9oPaqqA', '6187963'), - (45, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd9oPaqqA', '6187964'), - (45, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd9oPaqqA', '6187966'), - (45, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd9oPaqqA', '6187967'), - (45, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd9oPaqqA', '6187969'), - (45, 2142, 'maybe', '2023-07-16 14:42:13', '2025-12-17 19:46:52', 'd9oPaqqA', '6333850'), - (45, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd9oPaqqA', '6334878'), - (45, 2149, 'maybe', '2023-07-16 14:42:31', '2025-12-17 19:46:53', 'd9oPaqqA', '6335682'), - (45, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd9oPaqqA', '6337236'), - (45, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd9oPaqqA', '6337970'), - (45, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd9oPaqqA', '6338308'), - (45, 2159, 'attending', '2023-07-21 17:27:55', '2025-12-17 19:46:53', 'd9oPaqqA', '6338355'), - (45, 2160, 'attending', '2023-07-29 17:34:10', '2025-12-17 19:46:54', 'd9oPaqqA', '6338358'), - (45, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'd9oPaqqA', '6340845'), - (45, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd9oPaqqA', '6341710'), - (45, 2165, 'attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd9oPaqqA', '6342044'), - (45, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd9oPaqqA', '6342298'), - (45, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd9oPaqqA', '6343294'), - (45, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd9oPaqqA', '6347034'), - (45, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd9oPaqqA', '6347056'), - (45, 2183, 'maybe', '2023-07-29 17:34:06', '2025-12-17 19:46:54', 'd9oPaqqA', '6353008'), - (45, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd9oPaqqA', '6353830'), - (45, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd9oPaqqA', '6353831'), - (45, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd9oPaqqA', '6357867'), - (45, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd9oPaqqA', '6358652'), - (45, 2204, 'attending', '2023-08-16 17:22:00', '2025-12-17 19:46:55', 'd9oPaqqA', '6361542'), - (45, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd9oPaqqA', '6361709'), - (45, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd9oPaqqA', '6361710'), - (45, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd9oPaqqA', '6361711'), - (45, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd9oPaqqA', '6361712'), - (45, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd9oPaqqA', '6361713'), - (45, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd9oPaqqA', '6382573'), - (45, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd9oPaqqA', '6388604'), - (45, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd9oPaqqA', '6394629'), - (45, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd9oPaqqA', '6394631'), - (45, 2252, 'maybe', '2023-09-25 16:36:39', '2025-12-17 19:46:45', 'd9oPaqqA', '6396837'), - (45, 2253, 'attending', '2023-09-30 22:41:19', '2025-12-17 19:46:45', 'd9oPaqqA', '6401811'), - (45, 2263, 'maybe', '2023-09-30 18:25:59', '2025-12-17 19:46:45', 'd9oPaqqA', '6429351'), - (45, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd9oPaqqA', '6440863'), - (45, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd9oPaqqA', '6445440'), - (45, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd9oPaqqA', '6453951'), - (45, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd9oPaqqA', '6461696'), - (45, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd9oPaqqA', '6462129'), - (45, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd9oPaqqA', '6463218'), - (45, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd9oPaqqA', '6472181'), - (45, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd9oPaqqA', '6482693'), - (45, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd9oPaqqA', '6484200'), - (45, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'd9oPaqqA', '6484680'), - (45, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd9oPaqqA', '6507741'), - (45, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd9oPaqqA', '6514659'), - (45, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd9oPaqqA', '6514660'), - (45, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd9oPaqqA', '6519103'), - (45, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd9oPaqqA', '6535681'), - (45, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd9oPaqqA', '6584747'), - (45, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd9oPaqqA', '6587097'), - (45, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd9oPaqqA', '6609022'), - (45, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd9oPaqqA', '6632757'), - (45, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd9oPaqqA', '6644187'), - (45, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd9oPaqqA', '6648951'), - (45, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd9oPaqqA', '6648952'), - (45, 2388, 'attending', '2024-01-03 04:59:26', '2025-12-17 19:46:37', 'd9oPaqqA', '6649244'), - (45, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd9oPaqqA', '6655401'), - (45, 2399, 'attending', '2024-01-14 00:33:07', '2025-12-17 19:46:38', 'd9oPaqqA', '6657583'), - (45, 2400, 'attending', '2024-01-08 15:02:46', '2025-12-17 19:46:37', 'd9oPaqqA', '6659378'), - (45, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd9oPaqqA', '6661585'), - (45, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd9oPaqqA', '6661588'), - (45, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd9oPaqqA', '6661589'), - (45, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd9oPaqqA', '6699906'), - (45, 2410, 'attending', '2024-02-10 21:31:57', '2025-12-17 19:46:41', 'd9oPaqqA', '6699911'), - (45, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'd9oPaqqA', '6699913'), - (45, 2416, 'maybe', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd9oPaqqA', '6701109'), - (45, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd9oPaqqA', '6705219'), - (45, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd9oPaqqA', '6710153'), - (45, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd9oPaqqA', '6711552'), - (45, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'd9oPaqqA', '6711553'), - (45, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd9oPaqqA', '6722688'), - (45, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd9oPaqqA', '6730620'), - (45, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd9oPaqqA', '6730642'), - (45, 2448, 'maybe', '2024-03-29 12:48:19', '2025-12-17 19:46:33', 'd9oPaqqA', '6734371'), - (45, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd9oPaqqA', '6740364'), - (45, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd9oPaqqA', '6743829'), - (45, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd9oPaqqA', '7030380'), - (45, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd9oPaqqA', '7033677'), - (45, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd9oPaqqA', '7035415'), - (45, 2475, 'attending', '2024-02-29 00:49:09', '2025-12-17 19:46:43', 'd9oPaqqA', '7035643'), - (45, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd9oPaqqA', '7044715'), - (45, 2487, 'maybe', '2024-03-22 21:47:26', '2025-12-17 19:46:33', 'd9oPaqqA', '7049279'), - (45, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd9oPaqqA', '7050318'), - (45, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd9oPaqqA', '7050319'), - (45, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd9oPaqqA', '7050322'), - (45, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd9oPaqqA', '7057804'), - (45, 2500, 'maybe', '2024-03-06 23:21:27', '2025-12-17 19:46:43', 'd9oPaqqA', '7058603'), - (45, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd9oPaqqA', '7072824'), - (45, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd9oPaqqA', '7074348'), - (45, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd9oPaqqA', '7074364'), - (45, 2534, 'maybe', '2024-03-13 22:07:13', '2025-12-17 19:46:32', 'd9oPaqqA', '7076875'), - (45, 2539, 'attending', '2024-04-06 22:52:57', '2025-12-17 19:46:33', 'd9oPaqqA', '7085486'), - (45, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd9oPaqqA', '7089267'), - (45, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd9oPaqqA', '7098747'), - (45, 2553, 'attending', '2024-03-29 12:48:12', '2025-12-17 19:46:33', 'd9oPaqqA', '7113468'), - (45, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd9oPaqqA', '7114856'), - (45, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd9oPaqqA', '7114951'), - (45, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd9oPaqqA', '7114955'), - (45, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd9oPaqqA', '7114956'), - (45, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd9oPaqqA', '7114957'), - (45, 2562, 'attending', '2024-04-02 18:54:32', '2025-12-17 19:46:33', 'd9oPaqqA', '7134552'), - (45, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd9oPaqqA', '7153615'), - (45, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd9oPaqqA', '7159484'), - (45, 2573, 'maybe', '2024-04-16 21:28:10', '2025-12-17 19:46:34', 'd9oPaqqA', '7160612'), - (45, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd9oPaqqA', '7178446'), - (45, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd9oPaqqA', '7220467'), - (45, 2607, 'attending', '2024-04-29 20:43:11', '2025-12-17 19:46:35', 'd9oPaqqA', '7240136'), - (45, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd9oPaqqA', '7240354'), - (45, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd9oPaqqA', '7251633'), - (45, 2626, 'attending', '2024-05-18 10:51:26', '2025-12-17 19:46:35', 'd9oPaqqA', '7264723'), - (45, 2628, 'attending', '2024-05-31 20:31:28', '2025-12-17 19:46:36', 'd9oPaqqA', '7264725'), - (45, 2652, 'attending', '2024-05-31 23:08:48', '2025-12-17 19:46:36', 'd9oPaqqA', '7288339'), - (45, 2671, 'maybe', '2024-06-10 09:46:51', '2025-12-17 19:46:28', 'd9oPaqqA', '7318256'), - (45, 2678, 'attending', '2024-06-15 15:41:36', '2025-12-17 19:46:28', 'd9oPaqqA', '7319489'), - (45, 2679, 'attending', '2024-06-19 15:51:00', '2025-12-17 19:46:29', 'd9oPaqqA', '7319490'), - (45, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd9oPaqqA', '7324073'), - (45, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd9oPaqqA', '7324074'), - (45, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd9oPaqqA', '7324075'), - (45, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd9oPaqqA', '7324078'), - (45, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd9oPaqqA', '7324082'), - (45, 2706, 'attending', '2024-06-19 15:50:55', '2025-12-17 19:46:28', 'd9oPaqqA', '7324947'), - (45, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd9oPaqqA', '7331457'), - (45, 2726, 'attending', '2024-06-19 21:15:08', '2025-12-17 19:46:29', 'd9oPaqqA', '7332853'), - (45, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd9oPaqqA', '7363643'), - (45, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd9oPaqqA', '7368606'), - (45, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd9oPaqqA', '7397462'), - (45, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd9oPaqqA', '7424275'), - (45, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd9oPaqqA', '7424276'), - (45, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd9oPaqqA', '7432751'), - (45, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd9oPaqqA', '7432752'), - (45, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd9oPaqqA', '7432753'), - (45, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd9oPaqqA', '7432754'), - (45, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd9oPaqqA', '7432755'), - (45, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd9oPaqqA', '7432756'), - (45, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd9oPaqqA', '7432758'), - (45, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd9oPaqqA', '7432759'), - (45, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd9oPaqqA', '7433834'), - (45, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd9oPaqqA', '7470197'), - (45, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd9oPaqqA', '7685613'), - (45, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd9oPaqqA', '7688194'), - (45, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd9oPaqqA', '7688196'), - (45, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd9oPaqqA', '7688289'), - (45, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd9oPaqqA', '7692763'), - (45, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd9oPaqqA', '7697552'), - (45, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd9oPaqqA', '7699878'), - (45, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd9oPaqqA', '7704043'), - (45, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd9oPaqqA', '7712467'), - (45, 2925, 'attending', '2024-12-15 00:03:16', '2025-12-17 19:46:21', 'd9oPaqqA', '7713584'), - (45, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd9oPaqqA', '7713585'), - (45, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd9oPaqqA', '7713586'), - (45, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd9oPaqqA', '7738518'), - (45, 2962, 'not_attending', '2024-12-27 09:48:26', '2025-12-17 19:46:22', 'd9oPaqqA', '7750632'), - (45, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd9oPaqqA', '7750636'), - (45, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd9oPaqqA', '7796540'), - (45, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd9oPaqqA', '7796541'), - (45, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd9oPaqqA', '7796542'), - (45, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd9oPaqqA', '7825913'), - (45, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd9oPaqqA', '7826209'), - (45, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd9oPaqqA', '7834742'), - (45, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd9oPaqqA', '7842108'), - (45, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd9oPaqqA', '7842902'), - (45, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd9oPaqqA', '7842903'), - (45, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd9oPaqqA', '7842904'), - (45, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd9oPaqqA', '7842905'), - (45, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd9oPaqqA', '7855719'), - (45, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd9oPaqqA', '7860683'), - (45, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd9oPaqqA', '7860684'), - (45, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd9oPaqqA', '7866095'), - (45, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd9oPaqqA', '7869170'), - (45, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd9oPaqqA', '7869188'), - (45, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd9oPaqqA', '7869201'), - (45, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd9oPaqqA', '7877465'), - (45, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd9oPaqqA', '7888250'), - (45, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd9oPaqqA', '7904777'), - (45, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd9oPaqqA', '8349164'), - (45, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd9oPaqqA', '8349545'), - (45, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd9oPaqqA', '8353584'), - (45, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd9oPaqqA', '8368028'), - (45, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd9oPaqqA', '8368029'), - (45, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd9oPaqqA', '8388462'), - (45, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd9oPaqqA', '8400273'), - (45, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd9oPaqqA', '8400274'), - (45, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd9oPaqqA', '8400275'), - (45, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd9oPaqqA', '8400276'), - (45, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd9oPaqqA', '8404977'), - (45, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd9oPaqqA', '8430783'), - (45, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd9oPaqqA', '8430784'), - (45, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd9oPaqqA', '8430799'), - (45, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd9oPaqqA', '8430800'), - (45, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd9oPaqqA', '8430801'), - (45, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd9oPaqqA', '8438709'), - (45, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd9oPaqqA', '8457738'), - (45, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd9oPaqqA', '8459566'), - (45, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd9oPaqqA', '8459567'), - (45, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd9oPaqqA', '8461032'), - (45, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd9oPaqqA', '8477877'), - (45, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd9oPaqqA', '8485688'), - (45, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd9oPaqqA', '8490587'), - (45, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd9oPaqqA', '8493552'), - (45, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd9oPaqqA', '8493553'), - (45, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd9oPaqqA', '8493554'), - (45, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd9oPaqqA', '8493555'), - (45, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd9oPaqqA', '8493556'), - (45, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd9oPaqqA', '8493557'), - (45, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd9oPaqqA', '8493558'), - (45, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd9oPaqqA', '8493559'), - (45, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd9oPaqqA', '8493560'), - (45, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd9oPaqqA', '8493561'), - (45, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd9oPaqqA', '8493572'), - (45, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd9oPaqqA', '8540725'), - (45, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd9oPaqqA', '8555421'), - (46, 3088, 'not_attending', '2025-05-30 04:57:38', '2025-12-17 19:46:15', 'd3R13PZ4', '7904777'), - (46, 3104, 'not_attending', '2025-05-30 04:57:28', '2025-12-17 19:46:15', 'd3R13PZ4', '8349164'), - (46, 3105, 'not_attending', '2025-05-30 04:57:34', '2025-12-17 19:46:15', 'd3R13PZ4', '8349545'), - (46, 3132, 'attending', '2025-05-22 12:28:40', '2025-12-17 19:46:21', 'd3R13PZ4', '8368029'), - (46, 3133, 'attending', '2025-05-22 12:29:21', '2025-12-17 19:46:14', 'd3R13PZ4', '8368030'), - (46, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd3R13PZ4', '8388462'), - (46, 3146, 'not_attending', '2025-06-02 02:49:34', '2025-12-17 19:46:15', 'd3R13PZ4', '8393169'), - (46, 3147, 'not_attending', '2025-06-02 02:49:53', '2025-12-17 19:46:15', 'd3R13PZ4', '8393170'), - (46, 3148, 'not_attending', '2025-06-02 02:49:56', '2025-12-17 19:46:15', 'd3R13PZ4', '8393171'), - (46, 3149, 'not_attending', '2025-06-02 02:49:57', '2025-12-17 19:46:16', 'd3R13PZ4', '8393173'), - (46, 3150, 'not_attending', '2025-06-02 02:49:41', '2025-12-17 19:46:15', 'd3R13PZ4', '8393174'), - (46, 3152, 'not_attending', '2025-06-02 02:49:32', '2025-12-17 19:46:14', 'd3R13PZ4', '8393582'), - (46, 3153, 'maybe', '2025-06-03 20:40:29', '2025-12-17 19:46:15', 'd3R13PZ4', '8400273'), - (46, 3154, 'attending', '2025-06-04 05:48:46', '2025-12-17 19:46:15', 'd3R13PZ4', '8400274'), - (46, 3155, 'attending', '2025-06-04 05:48:53', '2025-12-17 19:46:16', 'd3R13PZ4', '8400275'), - (46, 3156, 'attending', '2025-06-04 05:48:57', '2025-12-17 19:46:16', 'd3R13PZ4', '8400276'), - (46, 3157, 'not_attending', '2025-06-04 05:48:31', '2025-12-17 19:46:15', 'd3R13PZ4', '8401407'), - (46, 3158, 'not_attending', '2025-06-04 05:48:34', '2025-12-17 19:46:15', 'd3R13PZ4', '8401408'), - (46, 3159, 'not_attending', '2025-06-04 05:48:36', '2025-12-17 19:46:15', 'd3R13PZ4', '8401410'), - (46, 3160, 'not_attending', '2025-06-04 05:48:39', '2025-12-17 19:46:15', 'd3R13PZ4', '8401411'), - (46, 3161, 'not_attending', '2025-06-04 05:48:26', '2025-12-17 19:46:15', 'd3R13PZ4', '8401412'), - (46, 3162, 'not_attending', '2025-06-05 02:00:45', '2025-12-17 19:46:15', 'd3R13PZ4', '8401599'), - (46, 3163, 'not_attending', '2025-06-05 22:56:31', '2025-12-17 19:46:15', 'd3R13PZ4', '8402899'), - (46, 3164, 'maybe', '2025-06-06 06:07:38', '2025-12-17 19:46:15', 'd3R13PZ4', '8403121'), - (46, 3166, 'not_attending', '2025-06-08 22:40:14', '2025-12-17 19:46:15', 'd3R13PZ4', '8404242'), - (46, 3167, 'not_attending', '2025-06-08 22:40:41', '2025-12-17 19:46:15', 'd3R13PZ4', '8404521'), - (46, 3168, 'not_attending', '2025-06-08 22:40:58', '2025-12-17 19:46:15', 'd3R13PZ4', '8404522'), - (46, 3169, 'maybe', '2025-06-08 22:40:23', '2025-12-17 19:46:15', 'd3R13PZ4', '8404977'), - (46, 3170, 'not_attending', '2025-06-10 19:08:38', '2025-12-17 19:46:15', 'd3R13PZ4', '8405947'), - (46, 3171, 'not_attending', '2025-06-13 20:52:43', '2025-12-17 19:46:15', 'd3R13PZ4', '8409765'), - (46, 3172, 'not_attending', '2025-06-14 22:19:11', '2025-12-17 19:46:15', 'd3R13PZ4', '8410181'), - (46, 3173, 'not_attending', '2025-06-14 22:18:46', '2025-12-17 19:46:15', 'd3R13PZ4', '8410806'), - (46, 3175, 'not_attending', '2025-06-14 22:19:16', '2025-12-17 19:46:15', 'd3R13PZ4', '8410815'), - (46, 3176, 'not_attending', '2025-06-20 11:33:43', '2025-12-17 19:46:15', 'd3R13PZ4', '8416741'), - (46, 3177, 'not_attending', '2025-06-20 20:03:18', '2025-12-17 19:46:15', 'd3R13PZ4', '8417592'), - (46, 3178, 'not_attending', '2025-06-24 03:32:56', '2025-12-17 19:46:15', 'd3R13PZ4', '8421848'), - (46, 3179, 'not_attending', '2025-06-24 03:33:02', '2025-12-17 19:46:15', 'd3R13PZ4', '8421850'), - (46, 3180, 'not_attending', '2025-06-25 01:02:38', '2025-12-17 19:46:15', 'd3R13PZ4', '8422682'), - (46, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd3R13PZ4', '8430783'), - (46, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd3R13PZ4', '8430784'), - (46, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd3R13PZ4', '8430799'), - (46, 3184, 'maybe', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd3R13PZ4', '8430800'), - (46, 3185, 'maybe', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd3R13PZ4', '8430801'), - (46, 3186, 'not_attending', '2025-07-01 00:33:35', '2025-12-17 19:46:16', 'd3R13PZ4', '8431527'), - (46, 3187, 'not_attending', '2025-07-03 20:04:47', '2025-12-17 19:46:16', 'd3R13PZ4', '8434478'), - (46, 3188, 'attending', '2025-07-06 21:03:50', '2025-12-17 19:46:17', 'd3R13PZ4', '8438709'), - (46, 3189, 'not_attending', '2025-07-06 21:03:46', '2025-12-17 19:46:16', 'd3R13PZ4', '8438849'), - (46, 3190, 'not_attending', '2025-07-12 20:01:21', '2025-12-17 19:46:17', 'd3R13PZ4', '8443962'), - (46, 3191, 'not_attending', '2025-07-14 19:56:19', '2025-12-17 19:46:17', 'd3R13PZ4', '8444983'), - (46, 3192, 'not_attending', '2025-07-15 20:02:14', '2025-12-17 19:46:17', 'd3R13PZ4', '8456429'), - (46, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd3R13PZ4', '8457738'), - (46, 3194, 'not_attending', '2025-07-17 23:09:33', '2025-12-17 19:46:17', 'd3R13PZ4', '8457740'), - (46, 3195, 'attending', '2025-07-17 23:28:07', '2025-12-17 19:46:17', 'd3R13PZ4', '8458118'), - (46, 3196, 'attending', '2025-07-18 00:22:16', '2025-12-17 19:46:17', 'd3R13PZ4', '8458543'), - (46, 3197, 'not_attending', '2025-07-18 02:41:38', '2025-12-17 19:46:17', 'd3R13PZ4', '8458825'), - (46, 3198, 'attending', '2025-07-18 07:49:06', '2025-12-17 19:46:18', 'd3R13PZ4', '8459268'), - (46, 3199, 'not_attending', '2025-07-19 11:24:33', '2025-12-17 19:46:17', 'd3R13PZ4', '8459565'), - (46, 3200, 'not_attending', '2025-07-19 11:24:40', '2025-12-17 19:46:17', 'd3R13PZ4', '8459566'), - (46, 3201, 'maybe', '2025-07-19 11:24:45', '2025-12-17 19:46:17', 'd3R13PZ4', '8459567'), - (46, 3202, 'not_attending', '2025-07-19 11:24:38', '2025-12-17 19:46:17', 'd3R13PZ4', '8459568'), - (46, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd3R13PZ4', '8461032'), - (46, 3204, 'not_attending', '2025-07-20 03:28:06', '2025-12-17 19:46:17', 'd3R13PZ4', '8461035'), - (46, 3205, 'attending', '2025-07-20 21:25:52', '2025-12-17 19:46:17', 'd3R13PZ4', '8461764'), - (46, 3206, 'maybe', '2025-07-23 03:29:57', '2025-12-17 19:46:17', 'd3R13PZ4', '8462943'), - (46, 3207, 'not_attending', '2025-07-25 22:12:19', '2025-12-17 19:46:17', 'd3R13PZ4', '8466820'), - (46, 3208, 'not_attending', '2025-07-27 04:47:38', '2025-12-17 19:46:17', 'd3R13PZ4', '8467717'), - (46, 3209, 'not_attending', '2025-07-27 20:10:36', '2025-12-17 19:46:17', 'd3R13PZ4', '8467750'), - (46, 3210, 'attending', '2025-07-30 03:16:21', '2025-12-17 19:46:18', 'd3R13PZ4', '8471162'), - (46, 3211, 'maybe', '2025-08-04 23:55:48', '2025-12-17 19:46:17', 'd3R13PZ4', '8477785'), - (46, 3212, 'not_attending', '2025-08-04 23:55:43', '2025-12-17 19:46:17', 'd3R13PZ4', '8477787'), - (46, 3213, 'maybe', '2025-08-05 09:30:23', '2025-12-17 19:46:17', 'd3R13PZ4', '8477876'), - (46, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd3R13PZ4', '8477877'), - (46, 3215, 'maybe', '2025-08-05 09:30:25', '2025-12-17 19:46:18', 'd3R13PZ4', '8477880'), - (46, 3216, 'not_attending', '2025-08-08 10:16:35', '2025-12-17 19:46:17', 'd3R13PZ4', '8481608'), - (46, 3217, 'not_attending', '2025-08-08 19:08:55', '2025-12-17 19:46:17', 'd3R13PZ4', '8481811'), - (46, 3218, 'not_attending', '2025-08-09 19:03:28', '2025-12-17 19:46:17', 'd3R13PZ4', '8481869'), - (46, 3219, 'not_attending', '2025-08-12 13:22:42', '2025-12-17 19:46:18', 'd3R13PZ4', '8482548'), - (46, 3220, 'not_attending', '2025-08-12 13:23:13', '2025-12-17 19:46:18', 'd3R13PZ4', '8485675'), - (46, 3221, 'not_attending', '2025-08-12 13:22:59', '2025-12-17 19:46:18', 'd3R13PZ4', '8485676'), - (46, 3222, 'not_attending', '2025-08-12 13:23:17', '2025-12-17 19:46:11', 'd3R13PZ4', '8485677'), - (46, 3223, 'not_attending', '2025-08-12 13:23:24', '2025-12-17 19:46:12', 'd3R13PZ4', '8485678'), - (46, 3224, 'not_attending', '2025-08-12 13:23:22', '2025-12-17 19:46:12', 'd3R13PZ4', '8485679'), - (46, 3225, 'not_attending', '2025-08-12 13:22:53', '2025-12-17 19:46:18', 'd3R13PZ4', '8485680'), - (46, 3226, 'not_attending', '2025-08-12 13:23:23', '2025-12-17 19:46:12', 'd3R13PZ4', '8485681'), - (46, 3227, 'not_attending', '2025-08-12 13:23:27', '2025-12-17 19:46:12', 'd3R13PZ4', '8485682'), - (46, 3228, 'not_attending', '2025-08-12 13:23:19', '2025-12-17 19:46:11', 'd3R13PZ4', '8485683'), - (46, 3229, 'not_attending', '2025-08-12 13:23:14', '2025-12-17 19:46:18', 'd3R13PZ4', '8485684'), - (46, 3230, 'not_attending', '2025-08-12 13:23:28', '2025-12-17 19:46:12', 'd3R13PZ4', '8485685'), - (46, 3231, 'not_attending', '2025-08-12 13:23:34', '2025-12-17 19:46:13', 'd3R13PZ4', '8485686'), - (46, 3232, 'not_attending', '2025-08-12 13:23:32', '2025-12-17 19:46:13', 'd3R13PZ4', '8485687'), - (46, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd3R13PZ4', '8485688'), - (46, 3235, 'not_attending', '2025-08-17 18:57:07', '2025-12-17 19:46:18', 'd3R13PZ4', '8490587'), - (46, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd3R13PZ4', '8493552'), - (46, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd3R13PZ4', '8493553'), - (46, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd3R13PZ4', '8493554'), - (46, 3239, 'maybe', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd3R13PZ4', '8493555'), - (46, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd3R13PZ4', '8493556'), - (46, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd3R13PZ4', '8493557'), - (46, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd3R13PZ4', '8493558'), - (46, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd3R13PZ4', '8493559'), - (46, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd3R13PZ4', '8493560'), - (46, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'd3R13PZ4', '8493561'), - (46, 3246, 'not_attending', '2025-08-19 21:41:29', '2025-12-17 19:46:13', 'd3R13PZ4', '8493562'), - (46, 3247, 'not_attending', '2025-08-19 21:41:18', '2025-12-17 19:46:14', 'd3R13PZ4', '8493563'), - (46, 3248, 'not_attending', '2025-08-19 21:41:26', '2025-12-17 19:46:13', 'd3R13PZ4', '8493564'), - (46, 3249, 'not_attending', '2025-08-19 21:41:23', '2025-12-17 19:46:13', 'd3R13PZ4', '8493565'), - (46, 3250, 'not_attending', '2025-08-19 21:41:14', '2025-12-17 19:46:14', 'd3R13PZ4', '8493566'), - (46, 3251, 'not_attending', '2025-08-19 21:41:20', '2025-12-17 19:46:14', 'd3R13PZ4', '8493568'), - (46, 3252, 'not_attending', '2025-08-19 21:41:16', '2025-12-17 19:46:14', 'd3R13PZ4', '8493569'), - (46, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd3R13PZ4', '8493572'), - (46, 3254, 'not_attending', '2025-08-19 21:40:57', '2025-12-17 19:46:14', 'd3R13PZ4', '8493575'), - (46, 3255, 'not_attending', '2025-08-22 19:40:31', '2025-12-17 19:46:18', 'd3R13PZ4', '8495106'), - (46, 3256, 'not_attending', '2025-08-28 22:58:11', '2025-12-17 19:46:11', 'd3R13PZ4', '8501354'), - (46, 3257, 'not_attending', '2025-08-28 22:58:07', '2025-12-17 19:46:11', 'd3R13PZ4', '8502340'), - (46, 3258, 'not_attending', '2025-09-02 11:50:09', '2025-12-17 19:46:11', 'd3R13PZ4', '8510285'), - (46, 3261, 'not_attending', '2025-09-13 11:45:58', '2025-12-17 19:46:12', 'd3R13PZ4', '8512641'), - (46, 3262, 'not_attending', '2025-09-13 11:46:04', '2025-12-17 19:46:12', 'd3R13PZ4', '8512642'), - (46, 3264, 'not_attending', '2025-09-13 11:46:02', '2025-12-17 19:46:12', 'd3R13PZ4', '8514577'), - (46, 3265, 'not_attending', '2025-09-13 11:46:11', '2025-12-17 19:46:12', 'd3R13PZ4', '8514578'), - (46, 3266, 'not_attending', '2025-09-13 11:46:17', '2025-12-17 19:46:13', 'd3R13PZ4', '8514579'), - (46, 3268, 'not_attending', '2025-09-13 11:46:06', '2025-12-17 19:46:12', 'd3R13PZ4', '8514581'), - (46, 3269, 'not_attending', '2025-09-13 11:46:13', '2025-12-17 19:46:12', 'd3R13PZ4', '8514582'), - (46, 3270, 'not_attending', '2025-09-13 11:46:19', '2025-12-17 19:46:13', 'd3R13PZ4', '8514583'), - (46, 3271, 'not_attending', '2025-09-16 21:19:27', '2025-12-17 19:46:12', 'd3R13PZ4', '8521430'), - (46, 3272, 'not_attending', '2025-09-17 22:52:53', '2025-12-17 19:46:12', 'd3R13PZ4', '8524068'), - (46, 3273, 'not_attending', '2025-09-19 04:13:13', '2025-12-17 19:46:12', 'd3R13PZ4', '8525831'), - (46, 3274, 'not_attending', '2025-09-20 21:40:43', '2025-12-17 19:46:12', 'd3R13PZ4', '8527784'), - (46, 3275, 'not_attending', '2025-09-20 22:22:32', '2025-12-17 19:46:12', 'd3R13PZ4', '8527786'), - (46, 3276, 'not_attending', '2025-09-22 21:00:21', '2025-12-17 19:46:12', 'd3R13PZ4', '8529058'), - (46, 3277, 'not_attending', '2025-09-27 21:32:06', '2025-12-17 19:46:12', 'd3R13PZ4', '8533938'), - (46, 3278, 'not_attending', '2025-09-30 18:39:55', '2025-12-17 19:46:13', 'd3R13PZ4', '8535533'), - (46, 3279, 'attending', '2025-10-01 08:35:29', '2025-12-17 19:46:13', 'd3R13PZ4', '8535685'), - (46, 3280, 'attending', '2025-10-01 08:35:30', '2025-12-17 19:46:13', 'd3R13PZ4', '8535686'), - (46, 3281, 'attending', '2025-10-01 08:35:32', '2025-12-17 19:46:14', 'd3R13PZ4', '8535687'), - (46, 3282, 'not_attending', '2025-10-04 20:39:33', '2025-12-17 19:46:13', 'd3R13PZ4', '8537571'), - (46, 3283, 'not_attending', '2025-10-05 13:40:01', '2025-12-17 19:46:14', 'd3R13PZ4', '8538077'), - (46, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd3R13PZ4', '8540725'), - (46, 3285, 'not_attending', '2025-10-08 21:07:05', '2025-12-17 19:46:13', 'd3R13PZ4', '8540726'), - (46, 3286, 'not_attending', '2025-10-08 21:07:00', '2025-12-17 19:46:14', 'd3R13PZ4', '8540728'), - (46, 3287, 'not_attending', '2025-10-08 21:07:16', '2025-12-17 19:46:14', 'd3R13PZ4', '8540729'), - (46, 3288, 'not_attending', '2025-10-11 05:46:24', '2025-12-17 19:46:13', 'd3R13PZ4', '8542408'), - (46, 3289, 'not_attending', '2025-10-12 03:41:31', '2025-12-17 19:46:14', 'd3R13PZ4', '8542939'), - (46, 3290, 'not_attending', '2025-10-12 04:39:17', '2025-12-17 19:46:13', 'd3R13PZ4', '8542943'), - (46, 3291, 'not_attending', '2025-10-14 23:18:10', '2025-12-17 19:46:14', 'd3R13PZ4', '8543782'), - (46, 3292, 'not_attending', '2025-10-16 00:46:43', '2025-12-17 19:46:14', 'd3R13PZ4', '8543835'), - (46, 3293, 'not_attending', '2025-10-15 07:45:59', '2025-12-17 19:46:14', 'd3R13PZ4', '8543836'), - (46, 3294, 'not_attending', '2025-10-18 20:17:27', '2025-12-17 19:46:14', 'd3R13PZ4', '8546775'), - (46, 3295, 'attending', '2025-10-19 05:41:12', '2025-12-17 19:46:14', 'd3R13PZ4', '8547541'), - (46, 3296, 'not_attending', '2025-10-20 21:07:25', '2025-12-17 19:46:14', 'd3R13PZ4', '8547711'), - (46, 3297, 'not_attending', '2025-10-21 03:10:23', '2025-12-17 19:46:14', 'd3R13PZ4', '8548090'), - (46, 3298, 'not_attending', '2025-10-21 22:41:27', '2025-12-17 19:46:14', 'd3R13PZ4', '8548211'), - (46, 3299, 'not_attending', '2025-10-25 04:07:28', '2025-12-17 19:46:14', 'd3R13PZ4', '8548493'), - (46, 3300, 'not_attending', '2025-10-26 04:04:29', '2025-12-17 19:46:14', 'd3R13PZ4', '8549145'), - (46, 3302, 'attending', '2025-10-28 00:45:44', '2025-12-17 19:46:14', 'd3R13PZ4', '8550022'), - (46, 3304, 'attending', '2025-10-28 00:46:21', '2025-12-17 19:46:14', 'd3R13PZ4', '8550024'), - (46, 3305, 'attending', '2025-10-28 00:55:49', '2025-12-17 19:46:11', 'd3R13PZ4', '8550025'), - (46, 3306, 'attending', '2025-10-28 00:56:01', '2025-12-17 19:46:11', 'd3R13PZ4', '8550026'), - (46, 3308, 'attending', '2025-10-28 04:25:31', '2025-12-17 19:46:14', 'd3R13PZ4', '8550408'), - (46, 3309, 'attending', '2025-10-28 04:28:11', '2025-12-17 19:46:14', 'd3R13PZ4', '8550409'), - (46, 3310, 'attending', '2025-10-28 04:31:06', '2025-12-17 19:46:11', 'd3R13PZ4', '8550410'), - (46, 3311, 'attending', '2025-10-28 04:31:05', '2025-12-17 19:46:11', 'd3R13PZ4', '8550412'), - (46, 3312, 'not_attending', '2025-10-28 04:31:03', '2025-12-17 19:46:11', 'd3R13PZ4', '8550413'), - (46, 3313, 'not_attending', '2025-10-30 02:23:10', '2025-12-17 19:46:14', 'd3R13PZ4', '8550896'), - (46, 3314, 'not_attending', '2025-11-01 00:13:32', '2025-12-17 19:46:14', 'd3R13PZ4', '8551821'), - (46, 3315, 'not_attending', '2025-11-05 13:03:21', '2025-12-17 19:46:14', 'd3R13PZ4', '8552486'), - (46, 3316, 'not_attending', '2025-11-05 13:03:25', '2025-12-17 19:46:14', 'd3R13PZ4', '8552493'), - (46, 3317, 'not_attending', '2025-11-06 00:50:51', '2025-12-17 19:46:14', 'd3R13PZ4', '8552943'), - (46, 3318, 'maybe', '2025-11-07 02:02:31', '2025-12-17 19:46:14', 'd3R13PZ4', '8553025'), - (46, 3319, 'not_attending', '2025-11-09 08:24:36', '2025-12-17 19:46:14', 'd3R13PZ4', '8553114'), - (46, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd3R13PZ4', '8555421'), - (46, 3333, 'not_attending', '2025-12-04 09:19:14', '2025-12-17 19:46:11', 'd3R13PZ4', '8562500'), - (46, 3340, 'attending', '2025-12-09 02:59:38', '2025-12-17 19:46:11', 'd3R13PZ4', '8563371'), - (47, 3304, 'attending', '2025-11-19 22:13:14', '2025-12-17 19:46:14', 'd2rMEvod', '8550024'), - (47, 3305, 'attending', '2025-12-02 04:36:04', '2025-12-17 19:46:11', 'd2rMEvod', '8550025'), - (47, 3306, 'attending', '2025-12-09 04:06:14', '2025-12-17 19:46:11', 'd2rMEvod', '8550026'), - (47, 3307, 'attending', '2025-12-16 01:34:28', '2025-12-17 19:46:11', 'd2rMEvod', '8550027'), - (47, 3310, 'attending', '2025-11-20 05:37:39', '2025-12-17 19:46:11', 'd2rMEvod', '8550410'), - (47, 3311, 'attending', '2025-12-05 05:07:44', '2025-12-17 19:46:11', 'd2rMEvod', '8550412'), - (47, 3324, 'attending', '2025-11-19 17:14:38', '2025-12-17 19:46:14', 'd2rMEvod', '8556406'), - (47, 3325, 'maybe', '2025-11-20 05:40:54', '2025-12-17 19:46:14', 'd2rMEvod', '8556660'), - (47, 3326, 'maybe', '2025-11-20 21:45:58', '2025-12-17 19:46:14', 'd2rMEvod', '8556661'), - (47, 3327, 'attending', '2025-11-21 01:39:45', '2025-12-17 19:46:11', 'd2rMEvod', '8557174'), - (47, 3331, 'attending', '2025-12-02 04:36:22', '2025-12-17 19:46:11', 'd2rMEvod', '8562166'), - (47, 3333, 'attending', '2025-12-06 03:20:39', '2025-12-17 19:46:11', 'd2rMEvod', '8562500'), - (47, 3334, 'attending', '2025-12-05 05:05:39', '2025-12-17 19:46:11', 'd2rMEvod', '8563246'), - (47, 3335, 'attending', '2025-12-05 05:07:19', '2025-12-17 19:46:11', 'd2rMEvod', '8563247'), - (47, 3336, 'maybe', '2025-12-05 05:07:51', '2025-12-17 19:46:11', 'd2rMEvod', '8563248'), - (47, 3337, 'maybe', '2025-12-07 04:10:12', '2025-12-17 19:46:11', 'd2rMEvod', '8563315'), - (48, 571, 'attending', '2021-02-12 18:28:52', '2025-12-17 19:47:50', 'oAgrkRqm', '3435539'), - (48, 573, 'maybe', '2021-02-18 07:55:47', '2025-12-17 19:47:50', 'oAgrkRqm', '3435542'), - (48, 574, 'maybe', '2021-03-02 03:55:38', '2025-12-17 19:47:51', 'oAgrkRqm', '3435543'), - (48, 582, 'not_attending', '2021-02-28 21:41:23', '2025-12-17 19:47:50', 'oAgrkRqm', '3445769'), - (48, 587, 'not_attending', '2021-02-15 16:53:51', '2025-12-17 19:47:50', 'oAgrkRqm', '3449470'), - (48, 592, 'maybe', '2021-02-18 07:55:18', '2025-12-17 19:47:50', 'oAgrkRqm', '3467757'), - (48, 594, 'maybe', '2021-02-15 17:09:47', '2025-12-17 19:47:51', 'oAgrkRqm', '3467759'), - (48, 595, 'maybe', '2021-03-06 06:57:18', '2025-12-17 19:47:51', 'oAgrkRqm', '3467761'), - (48, 596, 'maybe', '2021-03-06 06:57:11', '2025-12-17 19:47:51', 'oAgrkRqm', '3467762'), - (48, 597, 'not_attending', '2021-03-12 19:28:37', '2025-12-17 19:47:51', 'oAgrkRqm', '3467764'), - (48, 599, 'attending', '2021-02-15 16:53:25', '2025-12-17 19:47:50', 'oAgrkRqm', '3468117'), - (48, 600, 'maybe', '2021-02-18 07:53:10', '2025-12-17 19:47:50', 'oAgrkRqm', '3468125'), - (48, 601, 'not_attending', '2021-02-15 19:57:44', '2025-12-17 19:47:50', 'oAgrkRqm', '3468131'), - (48, 602, 'attending', '2021-02-12 18:28:57', '2025-12-17 19:47:50', 'oAgrkRqm', '3470303'), - (48, 603, 'attending', '2021-02-15 01:51:18', '2025-12-17 19:47:50', 'oAgrkRqm', '3470304'), - (48, 604, 'attending', '2021-02-21 10:17:40', '2025-12-17 19:47:50', 'oAgrkRqm', '3470305'), - (48, 605, 'attending', '2021-02-14 02:37:23', '2025-12-17 19:47:50', 'oAgrkRqm', '3470991'), - (48, 607, 'maybe', '2021-02-18 07:54:20', '2025-12-17 19:47:50', 'oAgrkRqm', '3471882'), - (48, 610, 'attending', '2021-02-12 18:28:07', '2025-12-17 19:47:50', 'oAgrkRqm', '3482159'), - (48, 611, 'attending', '2021-02-15 19:16:22', '2025-12-17 19:47:50', 'oAgrkRqm', '3482659'), - (48, 612, 'attending', '2021-02-15 01:49:43', '2025-12-17 19:47:50', 'oAgrkRqm', '3490040'), - (48, 613, 'attending', '2021-02-15 01:49:48', '2025-12-17 19:47:50', 'oAgrkRqm', '3490041'), - (48, 614, 'attending', '2021-02-15 01:50:10', '2025-12-17 19:47:51', 'oAgrkRqm', '3490042'), - (48, 615, 'attending', '2021-02-15 16:59:17', '2025-12-17 19:47:50', 'oAgrkRqm', '3490045'), - (48, 616, 'maybe', '2021-02-18 21:30:14', '2025-12-17 19:47:50', 'oAgrkRqm', '3493478'), - (48, 618, 'attending', '2021-02-20 09:01:47', '2025-12-17 19:47:50', 'oAgrkRqm', '3503991'), - (48, 620, 'maybe', '2021-02-22 23:59:25', '2025-12-17 19:47:50', 'oAgrkRqm', '3513703'), - (48, 621, 'attending', '2021-02-24 16:29:54', '2025-12-17 19:47:51', 'oAgrkRqm', '3517815'), - (48, 622, 'attending', '2021-02-24 16:29:59', '2025-12-17 19:47:51', 'oAgrkRqm', '3517816'), - (48, 623, 'attending', '2021-02-25 23:36:20', '2025-12-17 19:47:50', 'oAgrkRqm', '3523941'), - (48, 625, 'attending', '2021-02-28 21:06:40', '2025-12-17 19:47:51', 'oAgrkRqm', '3533296'), - (48, 626, 'attending', '2021-02-28 21:06:49', '2025-12-17 19:47:51', 'oAgrkRqm', '3533298'), - (48, 627, 'maybe', '2021-02-28 21:39:05', '2025-12-17 19:47:51', 'oAgrkRqm', '3533303'), - (48, 628, 'maybe', '2021-02-28 21:38:57', '2025-12-17 19:47:51', 'oAgrkRqm', '3533305'), - (48, 629, 'maybe', '2021-02-28 21:39:31', '2025-12-17 19:47:51', 'oAgrkRqm', '3533307'), - (48, 631, 'attending', '2021-03-01 05:19:00', '2025-12-17 19:47:51', 'oAgrkRqm', '3533850'), - (48, 633, 'maybe', '2021-03-14 08:00:00', '2025-12-17 19:47:44', 'oAgrkRqm', '3534717'), - (48, 637, 'maybe', '2021-03-02 15:30:19', '2025-12-17 19:47:51', 'oAgrkRqm', '3536411'), - (48, 638, 'attending', '2021-04-04 01:52:58', '2025-12-17 19:47:44', 'oAgrkRqm', '3536632'), - (48, 639, 'attending', '2021-03-20 02:51:35', '2025-12-17 19:47:51', 'oAgrkRqm', '3536656'), - (48, 640, 'attending', '2021-03-03 02:19:53', '2025-12-17 19:47:51', 'oAgrkRqm', '3538866'), - (48, 641, 'attending', '2021-04-03 15:41:04', '2025-12-17 19:47:44', 'oAgrkRqm', '3539916'), - (48, 642, 'attending', '2021-04-10 22:34:49', '2025-12-17 19:47:44', 'oAgrkRqm', '3539917'), - (48, 643, 'attending', '2021-04-17 15:36:10', '2025-12-17 19:47:45', 'oAgrkRqm', '3539918'), - (48, 644, 'attending', '2021-04-21 15:20:54', '2025-12-17 19:47:45', 'oAgrkRqm', '3539919'), - (48, 645, 'attending', '2021-05-02 13:40:44', '2025-12-17 19:47:46', 'oAgrkRqm', '3539920'), - (48, 646, 'attending', '2021-05-13 23:23:25', '2025-12-17 19:47:46', 'oAgrkRqm', '3539921'), - (48, 647, 'attending', '2021-05-21 09:41:25', '2025-12-17 19:47:46', 'oAgrkRqm', '3539922'), - (48, 648, 'attending', '2021-05-27 20:56:43', '2025-12-17 19:47:47', 'oAgrkRqm', '3539923'), - (48, 649, 'maybe', '2021-03-03 20:22:27', '2025-12-17 19:47:51', 'oAgrkRqm', '3539927'), - (48, 650, 'attending', '2021-03-27 08:34:35', '2025-12-17 19:47:44', 'oAgrkRqm', '3539928'), - (48, 651, 'attending', '2021-03-10 17:40:40', '2025-12-17 19:47:51', 'oAgrkRqm', '3541045'), - (48, 652, 'attending', '2021-03-07 19:53:18', '2025-12-17 19:47:51', 'oAgrkRqm', '3544466'), - (48, 679, 'maybe', '2021-03-10 13:24:11', '2025-12-17 19:47:44', 'oAgrkRqm', '3547168'), - (48, 681, 'attending', '2021-03-07 22:03:42', '2025-12-17 19:47:43', 'oAgrkRqm', '3548803'), - (48, 684, 'attending', '2021-03-12 19:39:13', '2025-12-17 19:47:51', 'oAgrkRqm', '3549257'), - (48, 685, 'not_attending', '2021-04-12 23:15:42', '2025-12-17 19:47:44', 'oAgrkRqm', '3551564'), - (48, 686, 'maybe', '2021-03-10 13:23:32', '2025-12-17 19:47:51', 'oAgrkRqm', '3553333'), - (48, 687, 'maybe', '2021-03-12 01:59:22', '2025-12-17 19:47:51', 'oAgrkRqm', '3553405'), - (48, 690, 'maybe', '2021-03-11 15:03:22', '2025-12-17 19:47:43', 'oAgrkRqm', '3559954'), - (48, 691, 'maybe', '2021-03-16 15:26:56', '2025-12-17 19:47:45', 'oAgrkRqm', '3561928'), - (48, 695, 'attending', '2021-03-18 19:54:23', '2025-12-17 19:47:51', 'oAgrkRqm', '3567535'), - (48, 696, 'maybe', '2021-03-14 08:00:00', '2025-12-17 19:47:51', 'oAgrkRqm', '3567536'), - (48, 697, 'maybe', '2021-03-14 08:00:00', '2025-12-17 19:47:44', 'oAgrkRqm', '3567537'), - (48, 698, 'attending', '2021-03-16 15:26:16', '2025-12-17 19:47:44', 'oAgrkRqm', '3571867'), - (48, 703, 'maybe', '2021-03-19 17:20:44', '2025-12-17 19:47:44', 'oAgrkRqm', '3578388'), - (48, 704, 'maybe', '2021-03-19 17:20:19', '2025-12-17 19:47:44', 'oAgrkRqm', '3581429'), - (48, 705, 'maybe', '2021-03-19 17:20:13', '2025-12-17 19:47:44', 'oAgrkRqm', '3581895'), - (48, 706, 'attending', '2021-04-18 17:45:29', '2025-12-17 19:47:45', 'oAgrkRqm', '3582734'), - (48, 707, 'attending', '2021-04-23 18:13:02', '2025-12-17 19:47:46', 'oAgrkRqm', '3583262'), - (48, 708, 'maybe', '2021-03-25 23:29:35', '2025-12-17 19:47:44', 'oAgrkRqm', '3587850'), - (48, 711, 'maybe', '2021-03-29 21:45:58', '2025-12-17 19:47:44', 'oAgrkRqm', '3588075'), - (48, 715, 'maybe', '2021-03-25 16:30:16', '2025-12-17 19:47:44', 'oAgrkRqm', '3604146'), - (48, 717, 'maybe', '2021-03-25 16:29:47', '2025-12-17 19:47:44', 'oAgrkRqm', '3619523'), - (48, 724, 'attending', '2021-05-09 06:25:05', '2025-12-17 19:47:46', 'oAgrkRqm', '3661369'), - (48, 725, 'attending', '2021-05-09 23:51:18', '2025-12-17 19:47:47', 'oAgrkRqm', '3661372'), - (48, 727, 'attending', '2021-06-04 20:30:42', '2025-12-17 19:47:38', 'oAgrkRqm', '3661377'), - (48, 728, 'maybe', '2021-04-12 23:16:24', '2025-12-17 19:47:44', 'oAgrkRqm', '3668073'), - (48, 729, 'maybe', '2021-04-12 23:16:29', '2025-12-17 19:47:46', 'oAgrkRqm', '3668075'), - (48, 730, 'not_attending', '2021-05-05 22:23:58', '2025-12-17 19:47:46', 'oAgrkRqm', '3668076'), - (48, 731, 'not_attending', '2021-04-04 01:51:16', '2025-12-17 19:47:44', 'oAgrkRqm', '3674262'), - (48, 732, 'not_attending', '2021-04-21 15:20:38', '2025-12-17 19:47:45', 'oAgrkRqm', '3674268'), - (48, 735, 'not_attending', '2021-05-02 13:38:42', '2025-12-17 19:47:46', 'oAgrkRqm', '3677402'), - (48, 761, 'maybe', '2021-05-01 14:39:29', '2025-12-17 19:47:46', 'oAgrkRqm', '3716041'), - (48, 764, 'maybe', '2021-04-23 18:12:40', '2025-12-17 19:47:45', 'oAgrkRqm', '3720507'), - (48, 766, 'maybe', '2021-05-01 14:39:18', '2025-12-17 19:47:46', 'oAgrkRqm', '3721383'), - (48, 774, 'maybe', '2021-04-21 15:20:10', '2025-12-17 19:47:45', 'oAgrkRqm', '3730212'), - (48, 777, 'attending', '2021-05-01 15:00:56', '2025-12-17 19:47:46', 'oAgrkRqm', '3746248'), - (48, 779, 'attending', '2021-05-02 13:38:49', '2025-12-17 19:47:46', 'oAgrkRqm', '3757118'), - (48, 781, 'attending', '2021-05-06 23:35:43', '2025-12-17 19:47:46', 'oAgrkRqm', '3760130'), - (48, 790, 'attending', '2021-05-07 21:39:11', '2025-12-17 19:47:46', 'oAgrkRqm', '3789923'), - (48, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAgrkRqm', '3793156'), - (48, 794, 'maybe', '2021-05-26 22:37:32', '2025-12-17 19:47:47', 'oAgrkRqm', '3793538'), - (48, 795, 'maybe', '2021-06-04 20:30:04', '2025-12-17 19:47:47', 'oAgrkRqm', '3793539'), - (48, 796, 'maybe', '2021-05-08 02:43:45', '2025-12-17 19:47:46', 'oAgrkRqm', '3793862'), - (48, 805, 'attending', '2021-06-04 20:30:24', '2025-12-17 19:47:47', 'oAgrkRqm', '3804777'), - (48, 819, 'not_attending', '2021-05-30 21:57:08', '2025-12-17 19:47:47', 'oAgrkRqm', '3833017'), - (48, 823, 'attending', '2021-06-17 13:08:56', '2025-12-17 19:47:48', 'oAgrkRqm', '3974109'), - (48, 824, 'maybe', '2021-05-30 07:28:37', '2025-12-17 19:47:47', 'oAgrkRqm', '3974112'), - (48, 827, 'attending', '2021-06-04 20:27:03', '2025-12-17 19:47:47', 'oAgrkRqm', '3975311'), - (48, 828, 'not_attending', '2021-06-03 14:38:31', '2025-12-17 19:47:47', 'oAgrkRqm', '3975312'), - (48, 837, 'maybe', '2021-06-04 20:30:32', '2025-12-17 19:47:48', 'oAgrkRqm', '3992545'), - (48, 838, 'maybe', '2021-06-06 22:03:15', '2025-12-17 19:47:47', 'oAgrkRqm', '3994992'), - (48, 841, 'maybe', '2021-06-09 03:50:40', '2025-12-17 19:47:48', 'oAgrkRqm', '4007434'), - (48, 844, 'maybe', '2021-06-23 21:59:38', '2025-12-17 19:47:38', 'oAgrkRqm', '4014338'), - (48, 845, 'not_attending', '2021-06-30 18:33:16', '2025-12-17 19:47:38', 'oAgrkRqm', '4015717'), - (48, 859, 'maybe', '2021-06-10 18:43:12', '2025-12-17 19:47:48', 'oAgrkRqm', '4015993'), - (48, 867, 'attending', '2021-06-25 22:39:04', '2025-12-17 19:47:38', 'oAgrkRqm', '4021848'), - (48, 869, 'maybe', '2021-06-30 18:33:45', '2025-12-17 19:47:38', 'oAgrkRqm', '4136744'), - (48, 870, 'attending', '2021-06-28 13:54:18', '2025-12-17 19:47:38', 'oAgrkRqm', '4136937'), - (48, 871, 'attending', '2021-07-10 18:15:29', '2025-12-17 19:47:39', 'oAgrkRqm', '4136938'), - (48, 872, 'maybe', '2021-06-19 10:42:02', '2025-12-17 19:47:40', 'oAgrkRqm', '4136947'), - (48, 874, 'maybe', '2021-06-16 13:18:08', '2025-12-17 19:47:38', 'oAgrkRqm', '4139815'), - (48, 875, 'maybe', '2021-06-16 13:18:24', '2025-12-17 19:47:38', 'oAgrkRqm', '4139816'), - (48, 876, 'maybe', '2021-06-19 10:41:09', '2025-12-17 19:47:38', 'oAgrkRqm', '4139926'), - (48, 879, 'maybe', '2021-06-17 13:08:32', '2025-12-17 19:47:38', 'oAgrkRqm', '4147806'), - (48, 883, 'maybe', '2021-06-21 15:09:02', '2025-12-17 19:47:38', 'oAgrkRqm', '4209121'), - (48, 884, 'not_attending', '2021-08-11 11:15:35', '2025-12-17 19:47:42', 'oAgrkRqm', '4210314'), - (48, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAgrkRqm', '4225444'), - (48, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAgrkRqm', '4239259'), - (48, 900, 'attending', '2021-07-24 10:53:57', '2025-12-17 19:47:40', 'oAgrkRqm', '4240316'), - (48, 901, 'attending', '2021-07-31 20:28:14', '2025-12-17 19:47:40', 'oAgrkRqm', '4240317'), - (48, 902, 'attending', '2021-08-07 20:11:50', '2025-12-17 19:47:41', 'oAgrkRqm', '4240318'), - (48, 903, 'attending', '2021-08-13 23:20:46', '2025-12-17 19:47:42', 'oAgrkRqm', '4240320'), - (48, 905, 'maybe', '2021-07-05 13:14:09', '2025-12-17 19:47:39', 'oAgrkRqm', '4250163'), - (48, 908, 'maybe', '2021-07-12 07:07:34', '2025-12-17 19:47:39', 'oAgrkRqm', '4257613'), - (48, 916, 'attending', '2021-07-22 23:04:32', '2025-12-17 19:47:40', 'oAgrkRqm', '4273772'), - (48, 917, 'attending', '2021-07-14 12:22:23', '2025-12-17 19:47:39', 'oAgrkRqm', '4274481'), - (48, 919, 'maybe', '2021-07-17 20:17:24', '2025-12-17 19:47:39', 'oAgrkRqm', '4275957'), - (48, 920, 'attending', '2021-07-18 21:58:51', '2025-12-17 19:47:40', 'oAgrkRqm', '4277819'), - (48, 921, 'maybe', '2021-07-14 12:22:19', '2025-12-17 19:47:39', 'oAgrkRqm', '4278368'), - (48, 926, 'attending', '2021-08-18 22:18:17', '2025-12-17 19:47:42', 'oAgrkRqm', '4297211'), - (48, 930, 'maybe', '2021-07-22 21:19:43', '2025-12-17 19:47:41', 'oAgrkRqm', '4300787'), - (48, 931, 'maybe', '2021-07-26 00:05:52', '2025-12-17 19:47:40', 'oAgrkRqm', '4301535'), - (48, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAgrkRqm', '4301723'), - (48, 934, 'not_attending', '2021-08-03 18:01:30', '2025-12-17 19:47:41', 'oAgrkRqm', '4302093'), - (48, 935, 'not_attending', '2021-08-13 23:20:24', '2025-12-17 19:47:41', 'oAgrkRqm', '4304151'), - (48, 961, 'not_attending', '2021-08-11 11:15:14', '2025-12-17 19:47:42', 'oAgrkRqm', '4345519'), - (48, 965, 'maybe', '2021-08-17 19:46:43', '2025-12-17 19:47:42', 'oAgrkRqm', '4353703'), - (48, 971, 'not_attending', '2021-09-08 14:09:42', '2025-12-17 19:47:43', 'oAgrkRqm', '4356801'), - (48, 972, 'not_attending', '2021-08-20 19:58:04', '2025-12-17 19:47:42', 'oAgrkRqm', '4358025'), - (48, 973, 'maybe', '2021-08-20 19:58:34', '2025-12-17 19:47:42', 'oAgrkRqm', '4366186'), - (48, 974, 'not_attending', '2021-08-21 15:57:35', '2025-12-17 19:47:42', 'oAgrkRqm', '4366187'), - (48, 976, 'maybe', '2021-08-17 19:46:39', '2025-12-17 19:47:42', 'oAgrkRqm', '4373933'), - (48, 980, 'maybe', '2021-08-20 19:58:16', '2025-12-17 19:47:42', 'oAgrkRqm', '4380358'), - (48, 987, 'maybe', '2021-08-29 17:31:34', '2025-12-17 19:47:43', 'oAgrkRqm', '4402634'), - (48, 988, 'not_attending', '2021-08-24 13:55:13', '2025-12-17 19:47:42', 'oAgrkRqm', '4402823'), - (48, 990, 'attending', '2021-09-03 03:05:22', '2025-12-17 19:47:43', 'oAgrkRqm', '4420735'), - (48, 991, 'not_attending', '2021-09-08 13:22:04', '2025-12-17 19:47:43', 'oAgrkRqm', '4420738'), - (48, 992, 'attending', '2021-09-18 19:04:41', '2025-12-17 19:47:33', 'oAgrkRqm', '4420739'), - (48, 993, 'attending', '2021-09-23 00:00:26', '2025-12-17 19:47:34', 'oAgrkRqm', '4420741'), - (48, 994, 'not_attending', '2021-10-02 03:54:34', '2025-12-17 19:47:34', 'oAgrkRqm', '4420742'), - (48, 995, 'not_attending', '2021-10-07 04:08:14', '2025-12-17 19:47:34', 'oAgrkRqm', '4420744'), - (48, 996, 'attending', '2021-10-16 14:42:06', '2025-12-17 19:47:35', 'oAgrkRqm', '4420747'), - (48, 997, 'not_attending', '2021-10-23 07:01:07', '2025-12-17 19:47:35', 'oAgrkRqm', '4420748'), - (48, 998, 'maybe', '2021-08-29 17:31:11', '2025-12-17 19:47:36', 'oAgrkRqm', '4420749'), - (48, 1016, 'attending', '2021-09-03 17:14:14', '2025-12-17 19:47:43', 'oAgrkRqm', '4441271'), - (48, 1017, 'not_attending', '2021-09-06 23:16:09', '2025-12-17 19:47:43', 'oAgrkRqm', '4441822'), - (48, 1020, 'not_attending', '2021-09-13 22:45:20', '2025-12-17 19:47:43', 'oAgrkRqm', '4451787'), - (48, 1021, 'not_attending', '2021-09-19 23:56:29', '2025-12-17 19:47:34', 'oAgrkRqm', '4451803'), - (48, 1023, 'not_attending', '2021-09-10 01:00:45', '2025-12-17 19:47:43', 'oAgrkRqm', '4461883'), - (48, 1032, 'maybe', '2021-09-19 23:56:00', '2025-12-17 19:47:34', 'oAgrkRqm', '4473825'), - (48, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAgrkRqm', '4508342'), - (48, 1072, 'maybe', '2021-10-02 18:24:33', '2025-12-17 19:47:34', 'oAgrkRqm', '4516287'), - (48, 1074, 'maybe', '2021-09-29 20:01:20', '2025-12-17 19:47:34', 'oAgrkRqm', '4528953'), - (48, 1077, 'maybe', '2021-10-12 00:15:37', '2025-12-17 19:47:34', 'oAgrkRqm', '4540903'), - (48, 1079, 'maybe', '2021-10-20 17:37:04', '2025-12-17 19:47:35', 'oAgrkRqm', '4563823'), - (48, 1083, 'maybe', '2021-10-12 00:15:19', '2025-12-17 19:47:34', 'oAgrkRqm', '4566768'), - (48, 1084, 'not_attending', '2021-10-16 14:04:35', '2025-12-17 19:47:35', 'oAgrkRqm', '4566769'), - (48, 1085, 'not_attending', '2021-12-23 16:38:18', '2025-12-17 19:47:31', 'oAgrkRqm', '4568542'), - (48, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAgrkRqm', '4568602'), - (48, 1087, 'not_attending', '2021-10-16 14:04:39', '2025-12-17 19:47:35', 'oAgrkRqm', '4572153'), - (48, 1092, 'not_attending', '2021-10-21 18:35:07', '2025-12-17 19:47:35', 'oAgrkRqm', '4582837'), - (48, 1093, 'not_attending', '2021-10-20 23:15:10', '2025-12-17 19:47:35', 'oAgrkRqm', '4585962'), - (48, 1094, 'attending', '2021-10-31 17:06:57', '2025-12-17 19:47:36', 'oAgrkRqm', '4587337'), - (48, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'oAgrkRqm', '4596356'), - (48, 1097, 'maybe', '2021-10-28 14:34:12', '2025-12-17 19:47:36', 'oAgrkRqm', '4598860'), - (48, 1098, 'attending', '2021-11-10 21:12:39', '2025-12-17 19:47:36', 'oAgrkRqm', '4598861'), - (48, 1099, 'maybe', '2021-10-31 17:06:31', '2025-12-17 19:47:36', 'oAgrkRqm', '4602797'), - (48, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'oAgrkRqm', '4637896'), - (48, 1116, 'maybe', '2021-11-14 07:58:36', '2025-12-17 19:47:37', 'oAgrkRqm', '4642994'), - (48, 1117, 'attending', '2021-12-08 20:56:53', '2025-12-17 19:47:37', 'oAgrkRqm', '4642995'), - (48, 1118, 'maybe', '2021-11-14 07:58:33', '2025-12-17 19:47:38', 'oAgrkRqm', '4642996'), - (48, 1119, 'maybe', '2021-11-14 07:58:31', '2025-12-17 19:47:31', 'oAgrkRqm', '4642997'), - (48, 1126, 'maybe', '2021-11-14 23:42:42', '2025-12-17 19:47:38', 'oAgrkRqm', '4645687'), - (48, 1127, 'maybe', '2021-11-14 23:42:40', '2025-12-17 19:47:38', 'oAgrkRqm', '4645698'), - (48, 1128, 'attending', '2021-11-19 20:33:41', '2025-12-17 19:47:37', 'oAgrkRqm', '4645704'), - (48, 1129, 'attending', '2021-11-27 13:22:15', '2025-12-17 19:47:37', 'oAgrkRqm', '4645705'), - (48, 1130, 'attending', '2021-12-04 08:47:19', '2025-12-17 19:47:37', 'oAgrkRqm', '4658824'), - (48, 1131, 'attending', '2021-12-13 01:04:32', '2025-12-17 19:47:31', 'oAgrkRqm', '4658825'), - (48, 1133, 'not_attending', '2021-11-24 00:45:34', '2025-12-17 19:47:37', 'oAgrkRqm', '4661671'), - (48, 1134, 'not_attending', '2021-11-24 17:39:50', '2025-12-17 19:47:37', 'oAgrkRqm', '4668385'), - (48, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAgrkRqm', '4694407'), - (48, 1152, 'attending', '2022-01-12 22:03:32', '2025-12-17 19:47:31', 'oAgrkRqm', '4708705'), - (48, 1155, 'maybe', '2021-12-20 22:42:05', '2025-12-17 19:47:31', 'oAgrkRqm', '4715119'), - (48, 1159, 'maybe', '2022-01-04 04:07:58', '2025-12-17 19:47:31', 'oAgrkRqm', '4717532'), - (48, 1170, 'maybe', '2022-01-10 00:18:23', '2025-12-17 19:47:31', 'oAgrkRqm', '4731045'), - (48, 1172, 'not_attending', '2022-01-19 00:45:32', '2025-12-17 19:47:32', 'oAgrkRqm', '4735348'), - (48, 1173, 'attending', '2022-01-08 22:31:42', '2025-12-17 19:47:31', 'oAgrkRqm', '4736495'), - (48, 1174, 'attending', '2022-01-12 18:17:26', '2025-12-17 19:47:31', 'oAgrkRqm', '4736496'), - (48, 1175, 'attending', '2022-01-22 18:52:59', '2025-12-17 19:47:32', 'oAgrkRqm', '4736497'), - (48, 1176, 'attending', '2022-02-05 19:10:50', '2025-12-17 19:47:32', 'oAgrkRqm', '4736498'), - (48, 1177, 'attending', '2022-02-09 01:42:47', '2025-12-17 19:47:32', 'oAgrkRqm', '4736499'), - (48, 1178, 'attending', '2022-01-27 19:36:39', '2025-12-17 19:47:32', 'oAgrkRqm', '4736500'), - (48, 1179, 'attending', '2022-02-19 08:21:06', '2025-12-17 19:47:32', 'oAgrkRqm', '4736501'), - (48, 1181, 'attending', '2022-03-02 15:31:47', '2025-12-17 19:47:33', 'oAgrkRqm', '4736503'), - (48, 1182, 'attending', '2022-03-11 16:39:08', '2025-12-17 19:47:33', 'oAgrkRqm', '4736504'), - (48, 1185, 'not_attending', '2022-01-12 22:53:50', '2025-12-17 19:47:31', 'oAgrkRqm', '4746789'), - (48, 1188, 'not_attending', '2022-01-12 22:53:27', '2025-12-17 19:47:32', 'oAgrkRqm', '4753929'), - (48, 1202, 'not_attending', '2022-01-27 23:54:06', '2025-12-17 19:47:32', 'oAgrkRqm', '4769423'), - (48, 1206, 'attending', '2022-04-08 21:57:36', '2025-12-17 19:47:27', 'oAgrkRqm', '4773578'), - (48, 1207, 'attending', '2022-05-08 21:49:59', '2025-12-17 19:47:28', 'oAgrkRqm', '4773579'), - (48, 1216, 'not_attending', '2022-01-27 19:37:39', '2025-12-17 19:47:32', 'oAgrkRqm', '4781137'), - (48, 1217, 'attending', '2022-01-27 19:36:52', '2025-12-17 19:47:32', 'oAgrkRqm', '4781139'), - (48, 1229, 'attending', '2022-02-18 04:58:44', '2025-12-17 19:47:32', 'oAgrkRqm', '5034963'), - (48, 1232, 'not_attending', '2022-02-09 01:42:19', '2025-12-17 19:47:32', 'oAgrkRqm', '5038850'), - (48, 1236, 'maybe', '2022-02-16 23:54:01', '2025-12-17 19:47:32', 'oAgrkRqm', '5045826'), - (48, 1239, 'maybe', '2022-03-02 15:31:31', '2025-12-17 19:47:33', 'oAgrkRqm', '5052238'), - (48, 1252, 'not_attending', '2022-03-04 23:27:11', '2025-12-17 19:47:33', 'oAgrkRqm', '5129121'), - (48, 1253, 'attending', '2022-02-28 20:05:36', '2025-12-17 19:47:33', 'oAgrkRqm', '5129122'), - (48, 1259, 'not_attending', '2022-03-01 18:17:28', '2025-12-17 19:47:33', 'oAgrkRqm', '5132533'), - (48, 1261, 'not_attending', '2022-03-07 23:45:27', '2025-12-17 19:47:33', 'oAgrkRqm', '5154274'), - (48, 1266, 'attending', '2022-03-14 23:45:28', '2025-12-17 19:47:33', 'oAgrkRqm', '5166407'), - (48, 1267, 'not_attending', '2022-03-17 15:07:44', '2025-12-17 19:47:25', 'oAgrkRqm', '5169578'), - (48, 1269, 'maybe', '2022-03-13 21:43:32', '2025-12-17 19:47:25', 'oAgrkRqm', '5179439'), - (48, 1270, 'maybe', '2022-03-17 15:08:10', '2025-12-17 19:47:25', 'oAgrkRqm', '5181277'), - (48, 1272, 'attending', '2022-03-17 15:08:12', '2025-12-17 19:47:25', 'oAgrkRqm', '5186582'), - (48, 1273, 'attending', '2022-03-26 16:34:47', '2025-12-17 19:47:25', 'oAgrkRqm', '5186583'), - (48, 1274, 'attending', '2022-03-29 16:49:28', '2025-12-17 19:47:26', 'oAgrkRqm', '5186585'), - (48, 1276, 'maybe', '2022-03-17 15:08:25', '2025-12-17 19:47:25', 'oAgrkRqm', '5186820'), - (48, 1278, 'not_attending', '2022-03-17 15:07:37', '2025-12-17 19:47:33', 'oAgrkRqm', '5186920'), - (48, 1281, 'attending', '2022-04-09 17:35:23', '2025-12-17 19:47:27', 'oAgrkRqm', '5190437'), - (48, 1284, 'attending', '2022-04-11 20:09:53', '2025-12-17 19:47:27', 'oAgrkRqm', '5195095'), - (48, 1287, 'attending', '2022-03-23 04:23:21', '2025-12-17 19:47:25', 'oAgrkRqm', '5199425'), - (48, 1293, 'attending', '2022-03-27 21:08:21', '2025-12-17 19:47:27', 'oAgrkRqm', '5214641'), - (48, 1297, 'not_attending', '2022-03-29 16:49:21', '2025-12-17 19:47:26', 'oAgrkRqm', '5215989'), - (48, 1298, 'attending', '2022-03-29 16:49:08', '2025-12-17 19:47:25', 'oAgrkRqm', '5216645'), - (48, 1307, 'not_attending', '2022-04-05 23:35:54', '2025-12-17 19:47:27', 'oAgrkRqm', '5223686'), - (48, 1309, 'maybe', '2022-04-06 19:07:13', '2025-12-17 19:47:26', 'oAgrkRqm', '5227432'), - (48, 1312, 'maybe', '2022-04-11 20:09:49', '2025-12-17 19:47:27', 'oAgrkRqm', '5231459'), - (48, 1313, 'maybe', '2022-04-11 20:09:38', '2025-12-17 19:47:27', 'oAgrkRqm', '5231461'), - (48, 1316, 'maybe', '2022-04-11 20:09:02', '2025-12-17 19:47:27', 'oAgrkRqm', '5237536'), - (48, 1322, 'attending', '2022-04-26 15:14:49', '2025-12-17 19:47:27', 'oAgrkRqm', '5238356'), - (48, 1325, 'not_attending', '2022-04-12 17:13:41', '2025-12-17 19:47:28', 'oAgrkRqm', '5238361'), - (48, 1337, 'attending', '2022-04-20 18:42:22', '2025-12-17 19:47:27', 'oAgrkRqm', '5245036'), - (48, 1346, 'attending', '2022-04-17 16:40:53', '2025-12-17 19:47:27', 'oAgrkRqm', '5247467'), - (48, 1351, 'maybe', '2022-05-02 13:46:41', '2025-12-17 19:47:28', 'oAgrkRqm', '5251561'), - (48, 1354, 'maybe', '2022-04-22 14:59:27', '2025-12-17 19:47:27', 'oAgrkRqm', '5252569'), - (48, 1362, 'attending', '2022-04-25 17:29:24', '2025-12-17 19:47:28', 'oAgrkRqm', '5260800'), - (48, 1369, 'maybe', '2022-05-10 21:19:35', '2025-12-17 19:47:28', 'oAgrkRqm', '5262809'), - (48, 1370, 'attending', '2022-04-28 13:59:46', '2025-12-17 19:47:28', 'oAgrkRqm', '5263775'), - (48, 1374, 'attending', '2022-05-02 06:07:21', '2025-12-17 19:47:28', 'oAgrkRqm', '5269930'), - (48, 1378, 'attending', '2022-05-07 05:37:37', '2025-12-17 19:47:28', 'oAgrkRqm', '5271448'), - (48, 1379, 'attending', '2022-05-07 05:37:50', '2025-12-17 19:47:29', 'oAgrkRqm', '5271449'), - (48, 1380, 'attending', '2022-05-18 19:33:12', '2025-12-17 19:47:30', 'oAgrkRqm', '5271450'), - (48, 1381, 'attending', '2022-05-05 17:55:22', '2025-12-17 19:47:28', 'oAgrkRqm', '5271453'), - (48, 1383, 'not_attending', '2022-05-10 21:19:47', '2025-12-17 19:47:28', 'oAgrkRqm', '5276469'), - (48, 1384, 'attending', '2022-05-05 13:22:48', '2025-12-17 19:47:28', 'oAgrkRqm', '5277078'), - (48, 1385, 'not_attending', '2022-05-11 04:54:38', '2025-12-17 19:47:28', 'oAgrkRqm', '5277822'), - (48, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'oAgrkRqm', '5278159'), - (48, 1396, 'attending', '2022-05-10 21:20:29', '2025-12-17 19:47:28', 'oAgrkRqm', '5281103'), - (48, 1397, 'attending', '2022-05-10 21:20:35', '2025-12-17 19:47:29', 'oAgrkRqm', '5281104'), - (48, 1407, 'attending', '2022-05-15 19:50:53', '2025-12-17 19:47:30', 'oAgrkRqm', '5363695'), - (48, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'oAgrkRqm', '5365960'), - (48, 1414, 'maybe', '2022-05-18 19:32:39', '2025-12-17 19:47:29', 'oAgrkRqm', '5368445'), - (48, 1415, 'attending', '2022-06-03 22:46:13', '2025-12-17 19:47:30', 'oAgrkRqm', '5368973'), - (48, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'oAgrkRqm', '5378247'), - (48, 1431, 'attending', '2022-06-03 03:04:24', '2025-12-17 19:47:30', 'oAgrkRqm', '5389605'), - (48, 1442, 'attending', '2022-06-03 03:04:26', '2025-12-17 19:47:17', 'oAgrkRqm', '5397265'), - (48, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'oAgrkRqm', '5403967'), - (48, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'oAgrkRqm', '5404786'), - (48, 1460, 'maybe', '2022-06-13 12:57:20', '2025-12-17 19:47:31', 'oAgrkRqm', '5404817'), - (48, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'oAgrkRqm', '5405203'), - (48, 1465, 'attending', '2022-06-12 02:59:02', '2025-12-17 19:47:31', 'oAgrkRqm', '5406355'), - (48, 1470, 'not_attending', '2022-06-18 17:45:27', '2025-12-17 19:47:17', 'oAgrkRqm', '5407053'), - (48, 1478, 'maybe', '2022-06-22 02:02:48', '2025-12-17 19:47:19', 'oAgrkRqm', '5408794'), - (48, 1480, 'maybe', '2022-06-22 00:57:17', '2025-12-17 19:47:19', 'oAgrkRqm', '5411699'), - (48, 1482, 'attending', '2022-06-24 13:12:57', '2025-12-17 19:47:19', 'oAgrkRqm', '5412550'), - (48, 1483, 'not_attending', '2022-06-23 20:02:40', '2025-12-17 19:47:17', 'oAgrkRqm', '5414556'), - (48, 1484, 'maybe', '2022-06-22 17:19:47', '2025-12-17 19:47:17', 'oAgrkRqm', '5415046'), - (48, 1494, 'attending', '2022-06-25 15:18:05', '2025-12-17 19:47:19', 'oAgrkRqm', '5421626'), - (48, 1495, 'attending', '2022-06-26 03:24:01', '2025-12-17 19:47:19', 'oAgrkRqm', '5422086'), - (48, 1498, 'not_attending', '2022-06-27 18:08:10', '2025-12-17 19:47:19', 'oAgrkRqm', '5422406'), - (48, 1502, 'not_attending', '2022-07-09 01:20:23', '2025-12-17 19:47:19', 'oAgrkRqm', '5424565'), - (48, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'oAgrkRqm', '5426882'), - (48, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'oAgrkRqm', '5427083'), - (48, 1511, 'attending', '2022-07-06 23:37:41', '2025-12-17 19:47:19', 'oAgrkRqm', '5437733'), - (48, 1513, 'attending', '2022-07-09 18:57:01', '2025-12-17 19:47:19', 'oAgrkRqm', '5441125'), - (48, 1514, 'attending', '2022-07-09 18:57:02', '2025-12-17 19:47:20', 'oAgrkRqm', '5441126'), - (48, 1515, 'attending', '2022-08-04 23:51:50', '2025-12-17 19:47:21', 'oAgrkRqm', '5441128'), - (48, 1516, 'attending', '2022-08-14 08:10:45', '2025-12-17 19:47:23', 'oAgrkRqm', '5441129'), - (48, 1517, 'attending', '2022-08-21 05:31:32', '2025-12-17 19:47:23', 'oAgrkRqm', '5441130'), - (48, 1518, 'attending', '2022-08-22 02:50:25', '2025-12-17 19:47:24', 'oAgrkRqm', '5441131'), - (48, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'oAgrkRqm', '5441132'), - (48, 1521, 'not_attending', '2022-07-12 20:40:53', '2025-12-17 19:47:19', 'oAgrkRqm', '5442180'), - (48, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'oAgrkRqm', '5446643'), - (48, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'oAgrkRqm', '5453325'), - (48, 1543, 'attending', '2022-07-19 02:19:15', '2025-12-17 19:47:21', 'oAgrkRqm', '5454516'), - (48, 1544, 'attending', '2022-09-13 18:57:24', '2025-12-17 19:47:11', 'oAgrkRqm', '5454517'), - (48, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'oAgrkRqm', '5454605'), - (48, 1546, 'attending', '2022-07-19 13:55:51', '2025-12-17 19:47:20', 'oAgrkRqm', '5454607'), - (48, 1547, 'not_attending', '2022-07-19 17:22:30', '2025-12-17 19:47:20', 'oAgrkRqm', '5454608'), - (48, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'oAgrkRqm', '5455037'), - (48, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'oAgrkRqm', '5461278'), - (48, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'oAgrkRqm', '5469480'), - (48, 1565, 'attending', '2022-07-25 22:41:03', '2025-12-17 19:47:21', 'oAgrkRqm', '5471073'), - (48, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'oAgrkRqm', '5474663'), - (48, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'oAgrkRqm', '5482022'), - (48, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'oAgrkRqm', '5482793'), - (48, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'oAgrkRqm', '5488912'), - (48, 1587, 'maybe', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'oAgrkRqm', '5492192'), - (48, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'oAgrkRqm', '5493139'), - (48, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'oAgrkRqm', '5493200'), - (48, 1605, 'not_attending', '2022-08-15 02:16:03', '2025-12-17 19:47:23', 'oAgrkRqm', '5502188'), - (48, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'oAgrkRqm', '5505059'), - (48, 1610, 'maybe', '2022-08-22 02:49:58', '2025-12-17 19:47:23', 'oAgrkRqm', '5506595'), - (48, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'oAgrkRqm', '5509055'), - (48, 1618, 'attending', '2022-08-25 00:58:21', '2025-12-17 19:47:23', 'oAgrkRqm', '5512005'), - (48, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'oAgrkRqm', '5512862'), - (48, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'oAgrkRqm', '5513985'), - (48, 1626, 'not_attending', '2022-08-25 22:34:46', '2025-12-17 19:47:11', 'oAgrkRqm', '5519981'), - (48, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'oAgrkRqm', '5522550'), - (48, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'oAgrkRqm', '5534683'), - (48, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'oAgrkRqm', '5537735'), - (48, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'oAgrkRqm', '5540859'), - (48, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'oAgrkRqm', '5546619'), - (48, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'oAgrkRqm', '5555245'), - (48, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'oAgrkRqm', '5557747'), - (48, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'oAgrkRqm', '5560255'), - (48, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'oAgrkRqm', '5562906'), - (48, 1667, 'not_attending', '2022-09-24 16:41:34', '2025-12-17 19:47:11', 'oAgrkRqm', '5563221'), - (48, 1668, 'attending', '2022-09-25 04:30:43', '2025-12-17 19:47:12', 'oAgrkRqm', '5563222'), - (48, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'oAgrkRqm', '5600604'), - (48, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'oAgrkRqm', '5605544'), - (48, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'oAgrkRqm', '5606737'), - (48, 1702, 'attending', '2022-10-10 19:38:58', '2025-12-17 19:47:12', 'oAgrkRqm', '5609173'), - (48, 1708, 'attending', '2022-10-05 22:55:30', '2025-12-17 19:47:12', 'oAgrkRqm', '5617648'), - (48, 1711, 'maybe', '2022-10-06 19:59:33', '2025-12-17 19:47:12', 'oAgrkRqm', '5621883'), - (48, 1714, 'maybe', '2022-10-16 20:36:43', '2025-12-17 19:47:14', 'oAgrkRqm', '5622347'), - (48, 1719, 'attending', '2022-10-06 20:19:29', '2025-12-17 19:47:12', 'oAgrkRqm', '5630958'), - (48, 1720, 'attending', '2022-10-08 22:19:01', '2025-12-17 19:47:12', 'oAgrkRqm', '5630959'), - (48, 1721, 'attending', '2022-10-16 20:36:23', '2025-12-17 19:47:13', 'oAgrkRqm', '5630960'), - (48, 1722, 'attending', '2022-10-16 20:37:11', '2025-12-17 19:47:14', 'oAgrkRqm', '5630961'), - (48, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'oAgrkRqm', '5630962'), - (48, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'oAgrkRqm', '5630966'), - (48, 1725, 'attending', '2022-11-13 04:14:56', '2025-12-17 19:47:16', 'oAgrkRqm', '5630967'), - (48, 1726, 'attending', '2022-11-13 04:15:00', '2025-12-17 19:47:16', 'oAgrkRqm', '5630968'), - (48, 1727, 'attending', '2022-11-13 04:15:02', '2025-12-17 19:47:16', 'oAgrkRqm', '5630969'), - (48, 1728, 'attending', '2022-11-27 04:06:52', '2025-12-17 19:47:17', 'oAgrkRqm', '5630970'), - (48, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'oAgrkRqm', '5635406'), - (48, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'oAgrkRqm', '5638765'), - (48, 1739, 'maybe', '2022-10-16 20:36:58', '2025-12-17 19:47:14', 'oAgrkRqm', '5640097'), - (48, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'oAgrkRqm', '5640843'), - (48, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'oAgrkRqm', '5641521'), - (48, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'oAgrkRqm', '5642818'), - (48, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'oAgrkRqm', '5652395'), - (48, 1757, 'not_attending', '2022-10-23 20:55:34', '2025-12-17 19:47:15', 'oAgrkRqm', '5668974'), - (48, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'oAgrkRqm', '5670445'), - (48, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'oAgrkRqm', '5671637'), - (48, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'oAgrkRqm', '5672329'), - (48, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'oAgrkRqm', '5674057'), - (48, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'oAgrkRqm', '5674060'), - (48, 1770, 'not_attending', '2022-10-28 17:53:06', '2025-12-17 19:47:14', 'oAgrkRqm', '5676936'), - (48, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'oAgrkRqm', '5677461'), - (48, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'oAgrkRqm', '5698046'), - (48, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'oAgrkRqm', '5699760'), - (48, 1785, 'attending', '2022-11-15 23:43:42', '2025-12-17 19:47:15', 'oAgrkRqm', '5702414'), - (48, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'oAgrkRqm', '5741601'), - (48, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'oAgrkRqm', '5763458'), - (48, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'oAgrkRqm', '5774172'), - (48, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'oAgrkRqm', '5818247'), - (48, 1834, 'not_attending', '2022-12-07 02:49:23', '2025-12-17 19:47:17', 'oAgrkRqm', '5819470'), - (48, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'oAgrkRqm', '5819471'), - (48, 1841, 'attending', '2023-01-08 19:25:07', '2025-12-17 19:47:05', 'oAgrkRqm', '5827665'), - (48, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'oAgrkRqm', '5827739'), - (48, 1843, 'attending', '2022-12-17 21:53:20', '2025-12-17 19:47:04', 'oAgrkRqm', '5844304'), - (48, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'oAgrkRqm', '5844306'), - (48, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'oAgrkRqm', '5850159'), - (48, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'oAgrkRqm', '5858999'), - (48, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'oAgrkRqm', '5871984'), - (48, 1860, 'attending', '2023-01-13 06:08:12', '2025-12-17 19:47:05', 'oAgrkRqm', '5876309'), - (48, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'oAgrkRqm', '5876354'), - (48, 1864, 'attending', '2023-01-17 16:16:45', '2025-12-17 19:47:05', 'oAgrkRqm', '5879675'), - (48, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'oAgrkRqm', '5880939'), - (48, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'oAgrkRqm', '5880940'), - (48, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'oAgrkRqm', '5880942'), - (48, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'oAgrkRqm', '5880943'), - (48, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'oAgrkRqm', '5887890'), - (48, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'oAgrkRqm', '5888598'), - (48, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'oAgrkRqm', '5893260'), - (48, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'oAgrkRqm', '5899826'), - (48, 1886, 'maybe', '2023-03-06 22:40:40', '2025-12-17 19:47:09', 'oAgrkRqm', '5899930'), - (48, 1888, 'attending', '2023-02-17 17:34:48', '2025-12-17 19:47:07', 'oAgrkRqm', '5900197'), - (48, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'oAgrkRqm', '5900199'), - (48, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'oAgrkRqm', '5900200'), - (48, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'oAgrkRqm', '5900202'), - (48, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'oAgrkRqm', '5900203'), - (48, 1895, 'maybe', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'oAgrkRqm', '5901108'), - (48, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'oAgrkRqm', '5901126'), - (48, 1899, 'not_attending', '2023-02-10 20:38:32', '2025-12-17 19:47:07', 'oAgrkRqm', '5901323'), - (48, 1902, 'attending', '2023-02-01 19:48:18', '2025-12-17 19:47:06', 'oAgrkRqm', '5902254'), - (48, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'oAgrkRqm', '5909655'), - (48, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'oAgrkRqm', '5910522'), - (48, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'oAgrkRqm', '5910526'), - (48, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'oAgrkRqm', '5910528'), - (48, 1922, 'attending', '2023-02-13 22:43:19', '2025-12-17 19:47:07', 'oAgrkRqm', '5916219'), - (48, 1928, 'maybe', '2023-02-18 03:11:12', '2025-12-17 19:47:07', 'oAgrkRqm', '5932627'), - (48, 1933, 'attending', '2023-02-21 17:59:33', '2025-12-17 19:47:08', 'oAgrkRqm', '5936234'), - (48, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'oAgrkRqm', '5958351'), - (48, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'oAgrkRqm', '5959751'), - (48, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'oAgrkRqm', '5959755'), - (48, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'oAgrkRqm', '5960055'), - (48, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'oAgrkRqm', '5961684'), - (48, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'oAgrkRqm', '5962132'), - (48, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'oAgrkRqm', '5962133'), - (48, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'oAgrkRqm', '5962134'), - (48, 1947, 'attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'oAgrkRqm', '5962233'), - (48, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'oAgrkRqm', '5962317'), - (48, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'oAgrkRqm', '5962318'), - (48, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'oAgrkRqm', '5965933'), - (48, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'oAgrkRqm', '5967014'), - (48, 1956, 'maybe', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'oAgrkRqm', '5972763'), - (48, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'oAgrkRqm', '5972815'), - (48, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'oAgrkRqm', '5974016'), - (48, 1964, 'attending', '2023-03-08 23:51:25', '2025-12-17 19:47:09', 'oAgrkRqm', '5977129'), - (48, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'oAgrkRqm', '5981515'), - (48, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'oAgrkRqm', '5993516'), - (48, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'oAgrkRqm', '5998939'), - (48, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'oAgrkRqm', '6028191'), - (48, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'oAgrkRqm', '6040066'), - (48, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'oAgrkRqm', '6042717'), - (48, 1986, 'attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'oAgrkRqm', '6044838'), - (48, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'oAgrkRqm', '6044839'), - (48, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgrkRqm', '6045684'), - (48, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'oAgrkRqm', '6050104'), - (48, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'oAgrkRqm', '6053195'), - (48, 2006, 'maybe', '2023-04-10 04:38:32', '2025-12-17 19:46:59', 'oAgrkRqm', '6053198'), - (48, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'oAgrkRqm', '6056085'), - (48, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'oAgrkRqm', '6056916'), - (48, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'oAgrkRqm', '6059290'), - (48, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'oAgrkRqm', '6060328'), - (48, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'oAgrkRqm', '6061037'), - (48, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'oAgrkRqm', '6061039'), - (48, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'oAgrkRqm', '6061099'), - (48, 2019, 'attending', '2023-04-15 21:26:55', '2025-12-17 19:47:00', 'oAgrkRqm', '6062934'), - (48, 2020, 'maybe', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'oAgrkRqm', '6065813'), - (48, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'oAgrkRqm', '6067245'), - (48, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'oAgrkRqm', '6068094'), - (48, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'oAgrkRqm', '6068252'), - (48, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'oAgrkRqm', '6068253'), - (48, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'oAgrkRqm', '6068254'), - (48, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'oAgrkRqm', '6068280'), - (48, 2032, 'attending', '2023-06-03 18:15:54', '2025-12-17 19:47:04', 'oAgrkRqm', '6068281'), - (48, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'oAgrkRqm', '6069093'), - (48, 2039, 'not_attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'oAgrkRqm', '6072398'), - (48, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'oAgrkRqm', '6072528'), - (48, 2044, 'attending', '2023-05-14 20:51:54', '2025-12-17 19:47:03', 'oAgrkRqm', '6073678'), - (48, 2048, 'maybe', '2023-04-28 13:01:23', '2025-12-17 19:47:03', 'oAgrkRqm', '6076415'), - (48, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'oAgrkRqm', '6079840'), - (48, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'oAgrkRqm', '6083398'), - (48, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'oAgrkRqm', '6093504'), - (48, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'oAgrkRqm', '6097414'), - (48, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'oAgrkRqm', '6097442'), - (48, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'oAgrkRqm', '6097684'), - (48, 2063, 'attending', '2023-05-09 20:38:36', '2025-12-17 19:47:03', 'oAgrkRqm', '6098762'), - (48, 2065, 'attending', '2023-05-20 10:20:25', '2025-12-17 19:46:49', 'oAgrkRqm', '6101169'), - (48, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'oAgrkRqm', '6101361'), - (48, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'oAgrkRqm', '6101362'), - (48, 2070, 'not_attending', '2023-05-17 12:00:40', '2025-12-17 19:47:03', 'oAgrkRqm', '6103752'), - (48, 2073, 'maybe', '2023-05-15 23:28:55', '2025-12-17 19:47:03', 'oAgrkRqm', '6106002'), - (48, 2074, 'maybe', '2023-05-21 22:15:41', '2025-12-17 19:47:03', 'oAgrkRqm', '6107312'), - (48, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'oAgrkRqm', '6107314'), - (48, 2076, 'attending', '2023-05-19 06:43:17', '2025-12-17 19:47:03', 'oAgrkRqm', '6108350'), - (48, 2080, 'attending', '2023-05-22 04:17:43', '2025-12-17 19:47:04', 'oAgrkRqm', '6114677'), - (48, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'oAgrkRqm', '6120034'), - (48, 2090, 'not_attending', '2023-06-02 05:32:50', '2025-12-17 19:47:04', 'oAgrkRqm', '6127961'), - (48, 2094, 'attending', '2023-06-05 12:40:26', '2025-12-17 19:47:04', 'oAgrkRqm', '6135924'), - (48, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'oAgrkRqm', '6136733'), - (48, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'oAgrkRqm', '6137989'), - (48, 2104, 'not_attending', '2023-06-18 14:19:26', '2025-12-17 19:46:50', 'oAgrkRqm', '6149499'), - (48, 2106, 'maybe', '2023-06-18 14:19:13', '2025-12-17 19:46:50', 'oAgrkRqm', '6150479'), - (48, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'oAgrkRqm', '6150864'), - (48, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'oAgrkRqm', '6155491'), - (48, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'oAgrkRqm', '6164417'), - (48, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'oAgrkRqm', '6166388'), - (48, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'oAgrkRqm', '6176439'), - (48, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'oAgrkRqm', '6182410'), - (48, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'oAgrkRqm', '6185812'), - (48, 2133, 'attending', '2023-07-06 16:56:53', '2025-12-17 19:46:51', 'oAgrkRqm', '6187651'), - (48, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'oAgrkRqm', '6187963'), - (48, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'oAgrkRqm', '6187964'), - (48, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'oAgrkRqm', '6187966'), - (48, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'oAgrkRqm', '6187967'), - (48, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'oAgrkRqm', '6187969'), - (48, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'oAgrkRqm', '6334878'), - (48, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'oAgrkRqm', '6337236'), - (48, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'oAgrkRqm', '6337970'), - (48, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'oAgrkRqm', '6338308'), - (48, 2158, 'attending', '2023-07-22 18:54:56', '2025-12-17 19:46:53', 'oAgrkRqm', '6338353'), - (48, 2159, 'attending', '2023-07-17 19:47:13', '2025-12-17 19:46:53', 'oAgrkRqm', '6338355'), - (48, 2160, 'attending', '2023-07-17 19:47:19', '2025-12-17 19:46:54', 'oAgrkRqm', '6338358'), - (48, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'oAgrkRqm', '6341710'), - (48, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'oAgrkRqm', '6342044'), - (48, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'oAgrkRqm', '6342298'), - (48, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'oAgrkRqm', '6343294'), - (48, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'oAgrkRqm', '6347034'), - (48, 2177, 'maybe', '2023-08-12 22:29:14', '2025-12-17 19:46:55', 'oAgrkRqm', '6347053'), - (48, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'oAgrkRqm', '6347056'), - (48, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'oAgrkRqm', '6353830'), - (48, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'oAgrkRqm', '6353831'), - (48, 2187, 'attending', '2023-08-06 06:19:54', '2025-12-17 19:46:55', 'oAgrkRqm', '6357559'), - (48, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'oAgrkRqm', '6357867'), - (48, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'oAgrkRqm', '6358652'), - (48, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'oAgrkRqm', '6358668'), - (48, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'oAgrkRqm', '6358669'), - (48, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'oAgrkRqm', '6361709'), - (48, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'oAgrkRqm', '6361710'), - (48, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'oAgrkRqm', '6361711'), - (48, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'oAgrkRqm', '6361712'), - (48, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'oAgrkRqm', '6361713'), - (48, 2216, 'attending', '2023-08-19 17:03:47', '2025-12-17 19:46:55', 'oAgrkRqm', '6364123'), - (48, 2231, 'not_attending', '2023-08-21 18:03:04', '2025-12-17 19:46:55', 'oAgrkRqm', '6374748'), - (48, 2232, 'attending', '2023-08-23 21:47:56', '2025-12-17 19:46:55', 'oAgrkRqm', '6374818'), - (48, 2235, 'attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'oAgrkRqm', '6382573'), - (48, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'oAgrkRqm', '6388604'), - (48, 2242, 'attending', '2023-09-22 07:22:01', '2025-12-17 19:46:45', 'oAgrkRqm', '6388606'), - (48, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'oAgrkRqm', '6394629'), - (48, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'oAgrkRqm', '6394631'), - (48, 2253, 'attending', '2023-09-22 07:22:17', '2025-12-17 19:46:45', 'oAgrkRqm', '6401811'), - (48, 2259, 'attending', '2023-09-22 01:29:43', '2025-12-17 19:46:45', 'oAgrkRqm', '6421257'), - (48, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'oAgrkRqm', '6440863'), - (48, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'oAgrkRqm', '6445440'), - (48, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'oAgrkRqm', '6453951'), - (48, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'oAgrkRqm', '6461696'), - (48, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'oAgrkRqm', '6462129'), - (48, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'oAgrkRqm', '6463218'), - (48, 2299, 'attending', '2023-10-16 20:44:41', '2025-12-17 19:46:46', 'oAgrkRqm', '6472181'), - (48, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'oAgrkRqm', '6482693'), - (48, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'oAgrkRqm', '6484200'), - (48, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'oAgrkRqm', '6484680'), - (48, 2310, 'not_attending', '2023-11-09 08:10:00', '2025-12-17 19:46:47', 'oAgrkRqm', '6487709'), - (48, 2315, 'attending', '2023-11-05 03:14:05', '2025-12-17 19:46:47', 'oAgrkRqm', '6493666'), - (48, 2316, 'attending', '2023-11-05 03:14:08', '2025-12-17 19:46:48', 'oAgrkRqm', '6493668'), - (48, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'oAgrkRqm', '6507741'), - (48, 2318, 'maybe', '2023-10-31 03:58:13', '2025-12-17 19:46:47', 'oAgrkRqm', '6508566'), - (48, 2320, 'attending', '2023-11-05 03:14:07', '2025-12-17 19:46:47', 'oAgrkRqm', '6508647'), - (48, 2322, 'attending', '2023-11-09 08:13:39', '2025-12-17 19:46:48', 'oAgrkRqm', '6514659'), - (48, 2323, 'attending', '2023-11-09 08:13:40', '2025-12-17 19:46:48', 'oAgrkRqm', '6514660'), - (48, 2324, 'not_attending', '2023-11-09 08:13:43', '2025-12-17 19:46:49', 'oAgrkRqm', '6514662'), - (48, 2325, 'attending', '2023-11-09 08:13:55', '2025-12-17 19:46:36', 'oAgrkRqm', '6514663'), - (48, 2327, 'maybe', '2023-11-01 21:08:25', '2025-12-17 19:46:47', 'oAgrkRqm', '6515494'), - (48, 2330, 'not_attending', '2023-11-07 06:01:49', '2025-12-17 19:46:47', 'oAgrkRqm', '6517941'), - (48, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'oAgrkRqm', '6519103'), - (48, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'oAgrkRqm', '6535681'), - (48, 2338, 'maybe', '2023-11-25 22:53:29', '2025-12-17 19:46:48', 'oAgrkRqm', '6538868'), - (48, 2340, 'attending', '2023-11-17 23:37:17', '2025-12-17 19:46:48', 'oAgrkRqm', '6540279'), - (48, 2350, 'attending', '2023-11-20 22:37:39', '2025-12-17 19:46:48', 'oAgrkRqm', '6584352'), - (48, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'oAgrkRqm', '6584747'), - (48, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'oAgrkRqm', '6587097'), - (48, 2353, 'attending', '2023-11-23 01:56:36', '2025-12-17 19:46:48', 'oAgrkRqm', '6588894'), - (48, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'oAgrkRqm', '6609022'), - (48, 2373, 'maybe', '2024-01-14 07:47:34', '2025-12-17 19:46:38', 'oAgrkRqm', '6632678'), - (48, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'oAgrkRqm', '6632757'), - (48, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAgrkRqm', '6644187'), - (48, 2380, 'attending', '2023-12-31 01:38:33', '2025-12-17 19:46:37', 'oAgrkRqm', '6645105'), - (48, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAgrkRqm', '6648951'), - (48, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAgrkRqm', '6648952'), - (48, 2388, 'attending', '2024-01-03 02:54:59', '2025-12-17 19:46:37', 'oAgrkRqm', '6649244'), - (48, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAgrkRqm', '6655401'), - (48, 2399, 'attending', '2024-01-13 20:23:19', '2025-12-17 19:46:38', 'oAgrkRqm', '6657583'), - (48, 2400, 'not_attending', '2024-01-09 00:06:14', '2025-12-17 19:46:37', 'oAgrkRqm', '6659378'), - (48, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAgrkRqm', '6661585'), - (48, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAgrkRqm', '6661588'), - (48, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAgrkRqm', '6661589'), - (48, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAgrkRqm', '6699906'), - (48, 2408, 'attending', '2024-01-21 18:49:08', '2025-12-17 19:46:40', 'oAgrkRqm', '6699907'), - (48, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'oAgrkRqm', '6699913'), - (48, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAgrkRqm', '6701109'), - (48, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAgrkRqm', '6705219'), - (48, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAgrkRqm', '6710153'), - (48, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAgrkRqm', '6711552'), - (48, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'oAgrkRqm', '6711553'), - (48, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAgrkRqm', '6722688'), - (48, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAgrkRqm', '6730620'), - (48, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'oAgrkRqm', '6730642'), - (48, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAgrkRqm', '6740364'), - (48, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAgrkRqm', '6743829'), - (48, 2467, 'maybe', '2024-02-25 17:32:48', '2025-12-17 19:46:43', 'oAgrkRqm', '7029987'), - (48, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAgrkRqm', '7030380'), - (48, 2471, 'maybe', '2024-02-20 03:11:48', '2025-12-17 19:46:42', 'oAgrkRqm', '7032425'), - (48, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'oAgrkRqm', '7033677'), - (48, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'oAgrkRqm', '7035415'), - (48, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAgrkRqm', '7044715'), - (48, 2487, 'not_attending', '2024-03-17 19:55:10', '2025-12-17 19:46:33', 'oAgrkRqm', '7049279'), - (48, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAgrkRqm', '7050318'), - (48, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAgrkRqm', '7050319'), - (48, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAgrkRqm', '7050322'), - (48, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAgrkRqm', '7057804'), - (48, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAgrkRqm', '7072824'), - (48, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAgrkRqm', '7074348'), - (48, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'oAgrkRqm', '7074364'), - (48, 2528, 'attending', '2024-08-08 23:03:21', '2025-12-17 19:46:31', 'oAgrkRqm', '7074368'), - (48, 2533, 'maybe', '2024-08-22 12:27:57', '2025-12-17 19:46:32', 'oAgrkRqm', '7074384'), - (48, 2537, 'not_attending', '2024-03-17 19:55:13', '2025-12-17 19:46:33', 'oAgrkRqm', '7085484'), - (48, 2538, 'maybe', '2024-03-17 19:55:29', '2025-12-17 19:46:33', 'oAgrkRqm', '7085485'), - (48, 2539, 'attending', '2024-03-17 19:55:35', '2025-12-17 19:46:33', 'oAgrkRqm', '7085486'), - (48, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAgrkRqm', '7089267'), - (48, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAgrkRqm', '7098747'), - (48, 2553, 'maybe', '2024-03-29 23:15:36', '2025-12-17 19:46:33', 'oAgrkRqm', '7113468'), - (48, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAgrkRqm', '7114856'), - (48, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAgrkRqm', '7114951'), - (48, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAgrkRqm', '7114955'), - (48, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAgrkRqm', '7114956'), - (48, 2558, 'attending', '2024-04-03 23:30:55', '2025-12-17 19:46:35', 'oAgrkRqm', '7114957'), - (48, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'oAgrkRqm', '7153615'), - (48, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAgrkRqm', '7159484'), - (48, 2573, 'maybe', '2024-04-08 23:40:30', '2025-12-17 19:46:34', 'oAgrkRqm', '7160612'), - (48, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAgrkRqm', '7178446'), - (48, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'oAgrkRqm', '7220467'), - (48, 2609, 'not_attending', '2024-04-30 01:20:10', '2025-12-17 19:46:35', 'oAgrkRqm', '7240354'), - (48, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'oAgrkRqm', '7251633'), - (48, 2626, 'attending', '2024-05-14 14:27:04', '2025-12-17 19:46:35', 'oAgrkRqm', '7264723'), - (48, 2638, 'attending', '2024-05-15 21:42:13', '2025-12-17 19:46:35', 'oAgrkRqm', '7273117'), - (48, 2647, 'attending', '2024-06-08 18:58:16', '2025-12-17 19:46:28', 'oAgrkRqm', '7282057'), - (48, 2655, 'not_attending', '2024-05-26 22:13:15', '2025-12-17 19:46:35', 'oAgrkRqm', '7291225'), - (48, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'oAgrkRqm', '7302674'), - (48, 2676, 'attending', '2024-08-31 06:45:39', '2025-12-17 19:46:32', 'oAgrkRqm', '7319482'), - (48, 2678, 'not_attending', '2024-06-14 13:24:38', '2025-12-17 19:46:28', 'oAgrkRqm', '7319489'), - (48, 2679, 'maybe', '2024-06-20 03:34:12', '2025-12-17 19:46:29', 'oAgrkRqm', '7319490'), - (48, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'oAgrkRqm', '7324073'), - (48, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'oAgrkRqm', '7324074'), - (48, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'oAgrkRqm', '7324075'), - (48, 2691, 'attending', '2024-07-16 13:50:47', '2025-12-17 19:46:30', 'oAgrkRqm', '7324076'), - (48, 2692, 'maybe', '2024-07-16 13:50:50', '2025-12-17 19:46:30', 'oAgrkRqm', '7324077'), - (48, 2693, 'attending', '2024-07-16 13:50:54', '2025-12-17 19:46:31', 'oAgrkRqm', '7324078'), - (48, 2694, 'attending', '2024-07-16 13:50:55', '2025-12-17 19:46:31', 'oAgrkRqm', '7324079'), - (48, 2695, 'attending', '2024-07-16 13:50:58', '2025-12-17 19:46:31', 'oAgrkRqm', '7324080'), - (48, 2696, 'attending', '2024-07-16 13:51:00', '2025-12-17 19:46:32', 'oAgrkRqm', '7324081'), - (48, 2697, 'attending', '2024-08-31 06:45:27', '2025-12-17 19:46:32', 'oAgrkRqm', '7324082'), - (48, 2698, 'attending', '2024-09-07 17:14:07', '2025-12-17 19:46:24', 'oAgrkRqm', '7324083'), - (48, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'oAgrkRqm', '7331457'), - (48, 2753, 'maybe', '2024-07-08 22:33:36', '2025-12-17 19:46:30', 'oAgrkRqm', '7355538'), - (48, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'oAgrkRqm', '7356752'), - (48, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'oAgrkRqm', '7363643'), - (48, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'oAgrkRqm', '7368606'), - (48, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'oAgrkRqm', '7397462'), - (48, 2805, 'maybe', '2024-08-20 14:23:56', '2025-12-17 19:46:32', 'oAgrkRqm', '7403620'), - (48, 2808, 'attending', '2024-08-31 06:45:37', '2025-12-17 19:46:32', 'oAgrkRqm', '7412860'), - (48, 2811, 'not_attending', '2024-08-31 06:45:33', '2025-12-17 19:46:32', 'oAgrkRqm', '7418895'), - (48, 2821, 'attending', '2024-09-08 03:15:16', '2025-12-17 19:46:26', 'oAgrkRqm', '7424275'), - (48, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'oAgrkRqm', '7424276'), - (48, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'oAgrkRqm', '7432751'), - (48, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'oAgrkRqm', '7432752'), - (48, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'oAgrkRqm', '7432753'), - (48, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'oAgrkRqm', '7432754'), - (48, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'oAgrkRqm', '7432755'), - (48, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'oAgrkRqm', '7432756'), - (48, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'oAgrkRqm', '7432758'), - (48, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'oAgrkRqm', '7432759'), - (48, 2832, 'maybe', '2024-09-11 16:11:27', '2025-12-17 19:46:24', 'oAgrkRqm', '7433324'), - (48, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'oAgrkRqm', '7433834'), - (48, 2858, 'attending', '2024-10-17 14:54:39', '2025-12-17 19:46:26', 'oAgrkRqm', '7469388'), - (48, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'oAgrkRqm', '7470197'), - (48, 2870, 'attending', '2024-10-05 21:20:17', '2025-12-17 19:46:26', 'oAgrkRqm', '7475068'), - (48, 2873, 'attending', '2024-12-11 20:16:58', '2025-12-17 19:46:22', 'oAgrkRqm', '7480850'), - (48, 2885, 'attending', '2024-10-17 14:54:35', '2025-12-17 19:46:26', 'oAgrkRqm', '7649944'), - (48, 2892, 'attending', '2024-10-30 23:13:54', '2025-12-17 19:46:26', 'oAgrkRqm', '7672064'), - (48, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'oAgrkRqm', '7685613'), - (48, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'oAgrkRqm', '7688194'), - (48, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'oAgrkRqm', '7688196'), - (48, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'oAgrkRqm', '7688289'), - (48, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'oAgrkRqm', '7692763'), - (48, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'oAgrkRqm', '7697552'), - (48, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'oAgrkRqm', '7699878'), - (48, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'oAgrkRqm', '7704043'), - (48, 2924, 'attending', '2024-11-26 15:16:31', '2025-12-17 19:46:28', 'oAgrkRqm', '7712467'), - (48, 2925, 'attending', '2024-12-11 20:16:51', '2025-12-17 19:46:21', 'oAgrkRqm', '7713584'), - (48, 2926, 'attending', '2024-12-03 14:56:30', '2025-12-17 19:46:21', 'oAgrkRqm', '7713585'), - (48, 2927, 'attending', '2024-12-11 20:16:53', '2025-12-17 19:46:22', 'oAgrkRqm', '7713586'), - (48, 2948, 'attending', '2024-12-11 20:17:01', '2025-12-17 19:46:22', 'oAgrkRqm', '7728212'), - (48, 2949, 'attending', '2024-12-11 20:17:15', '2025-12-17 19:46:22', 'oAgrkRqm', '7728213'), - (48, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'oAgrkRqm', '7738518'), - (48, 2959, 'maybe', '2024-12-20 22:17:19', '2025-12-17 19:46:22', 'oAgrkRqm', '7747388'), - (48, 2962, 'maybe', '2024-12-24 00:39:15', '2025-12-17 19:46:22', 'oAgrkRqm', '7750632'), - (48, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'oAgrkRqm', '7750636'), - (48, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'oAgrkRqm', '7796540'), - (48, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'oAgrkRqm', '7796541'), - (48, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'oAgrkRqm', '7796542'), - (48, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'oAgrkRqm', '7825913'), - (48, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'oAgrkRqm', '7826209'), - (48, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'oAgrkRqm', '7834742'), - (48, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'oAgrkRqm', '7842108'), - (48, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'oAgrkRqm', '7842902'), - (48, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'oAgrkRqm', '7842903'), - (48, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'oAgrkRqm', '7842904'), - (48, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'oAgrkRqm', '7842905'), - (48, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'oAgrkRqm', '7855719'), - (48, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'oAgrkRqm', '7860683'), - (48, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'oAgrkRqm', '7860684'), - (48, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'oAgrkRqm', '7866095'), - (48, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'oAgrkRqm', '7869170'), - (48, 3014, 'attending', '2025-04-05 15:16:16', '2025-12-17 19:46:20', 'oAgrkRqm', '7869185'), - (48, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'oAgrkRqm', '7869188'), - (48, 3028, 'attending', '2025-04-27 15:56:34', '2025-12-17 19:46:20', 'oAgrkRqm', '7869199'), - (48, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'oAgrkRqm', '7869201'), - (48, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'oAgrkRqm', '7877465'), - (48, 3055, 'not_attending', '2025-03-27 16:26:07', '2025-12-17 19:46:19', 'oAgrkRqm', '7888118'), - (48, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'oAgrkRqm', '7888250'), - (48, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'oAgrkRqm', '7903852'), - (48, 3088, 'attending', '2025-06-13 04:33:22', '2025-12-17 19:46:15', 'oAgrkRqm', '7904777'), - (48, 3094, 'attending', '2025-05-08 18:16:39', '2025-12-17 19:46:21', 'oAgrkRqm', '8342292'), - (48, 3095, 'attending', '2025-05-03 23:19:58', '2025-12-17 19:46:20', 'oAgrkRqm', '8342293'), - (48, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'oAgrkRqm', '8349164'), - (48, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'oAgrkRqm', '8349545'), - (48, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'oAgrkRqm', '8353584'), - (48, 3113, 'not_attending', '2025-05-01 20:50:55', '2025-12-17 19:46:20', 'oAgrkRqm', '8355089'), - (48, 3131, 'attending', '2025-05-15 00:40:02', '2025-12-17 19:46:21', 'oAgrkRqm', '8368028'), - (48, 3132, 'attending', '2025-05-15 00:40:05', '2025-12-17 19:46:21', 'oAgrkRqm', '8368029'), - (48, 3133, 'attending', '2025-05-15 00:40:08', '2025-12-17 19:46:14', 'oAgrkRqm', '8368030'), - (48, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'oAgrkRqm', '8388462'), - (48, 3150, 'maybe', '2025-06-21 22:19:10', '2025-12-17 19:46:15', 'oAgrkRqm', '8393174'), - (48, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'oAgrkRqm', '8400273'), - (48, 3154, 'maybe', '2025-06-23 22:39:33', '2025-12-17 19:46:15', 'oAgrkRqm', '8400274'), - (48, 3155, 'maybe', '2025-06-23 22:39:42', '2025-12-17 19:46:16', 'oAgrkRqm', '8400275'), - (48, 3156, 'maybe', '2025-06-23 22:39:49', '2025-12-17 19:46:16', 'oAgrkRqm', '8400276'), - (48, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'oAgrkRqm', '8404977'), - (48, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'oAgrkRqm', '8430783'), - (48, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'oAgrkRqm', '8430784'), - (48, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'oAgrkRqm', '8430799'), - (48, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'oAgrkRqm', '8430800'), - (48, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'oAgrkRqm', '8430801'), - (48, 3188, 'attending', '2025-07-14 23:58:41', '2025-12-17 19:46:17', 'oAgrkRqm', '8438709'), - (48, 3190, 'not_attending', '2025-07-13 23:07:38', '2025-12-17 19:46:17', 'oAgrkRqm', '8443962'), - (48, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'oAgrkRqm', '8457738'), - (48, 3195, 'attending', '2025-08-03 21:20:37', '2025-12-17 19:46:17', 'oAgrkRqm', '8458118'), - (48, 3196, 'attending', '2025-08-12 00:10:29', '2025-12-17 19:46:17', 'oAgrkRqm', '8458543'), - (48, 3198, 'maybe', '2025-08-20 13:18:06', '2025-12-17 19:46:18', 'oAgrkRqm', '8459268'), - (48, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'oAgrkRqm', '8459566'), - (48, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'oAgrkRqm', '8459567'), - (48, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'oAgrkRqm', '8461032'), - (48, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'oAgrkRqm', '8477877'), - (48, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'oAgrkRqm', '8485688'), - (48, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'oAgrkRqm', '8490587'), - (48, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'oAgrkRqm', '8493552'), - (48, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'oAgrkRqm', '8493553'), - (48, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'oAgrkRqm', '8493554'), - (48, 3239, 'maybe', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'oAgrkRqm', '8493555'), - (48, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'oAgrkRqm', '8493556'), - (48, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'oAgrkRqm', '8493557'), - (48, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'oAgrkRqm', '8493558'), - (48, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'oAgrkRqm', '8493559'), - (48, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'oAgrkRqm', '8493560'), - (48, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'oAgrkRqm', '8493561'), - (48, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'oAgrkRqm', '8493572'), - (48, 3263, 'not_attending', '2025-09-10 13:48:51', '2025-12-17 19:46:12', 'oAgrkRqm', '8514576'), - (48, 3283, 'not_attending', '2025-10-15 04:47:38', '2025-12-17 19:46:14', 'oAgrkRqm', '8538077'), - (48, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'oAgrkRqm', '8540725'), - (48, 3295, 'attending', '2025-10-29 11:07:39', '2025-12-17 19:46:14', 'oAgrkRqm', '8547541'), - (48, 3300, 'attending', '2025-10-29 11:07:49', '2025-12-17 19:46:14', 'oAgrkRqm', '8549145'), - (48, 3302, 'attending', '2025-10-29 11:07:56', '2025-12-17 19:46:14', 'oAgrkRqm', '8550022'), - (48, 3304, 'attending', '2025-10-29 11:07:58', '2025-12-17 19:46:14', 'oAgrkRqm', '8550024'), - (48, 3305, 'attending', '2025-10-29 11:08:00', '2025-12-17 19:46:11', 'oAgrkRqm', '8550025'), - (48, 3306, 'attending', '2025-10-29 11:08:23', '2025-12-17 19:46:11', 'oAgrkRqm', '8550026'), - (48, 3307, 'attending', '2025-10-29 11:08:25', '2025-12-18 00:56:58', 'oAgrkRqm', '8550027'), - (48, 3308, 'attending', '2025-10-29 11:07:35', '2025-12-17 19:46:14', 'oAgrkRqm', '8550408'), - (48, 3309, 'attending', '2025-10-29 11:08:05', '2025-12-17 19:46:14', 'oAgrkRqm', '8550409'), - (48, 3310, 'attending', '2025-10-29 11:08:07', '2025-12-17 19:46:11', 'oAgrkRqm', '8550410'), - (48, 3311, 'attending', '2025-10-29 11:08:13', '2025-12-17 19:46:11', 'oAgrkRqm', '8550412'), - (48, 3312, 'attending', '2025-10-29 11:08:14', '2025-12-17 19:46:11', 'oAgrkRqm', '8550413'), - (48, 3318, 'not_attending', '2025-11-07 02:02:46', '2025-12-17 19:46:14', 'oAgrkRqm', '8553025'), - (48, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'oAgrkRqm', '8555421'), - (49, 2965, 'not_attending', '2025-01-18 22:12:13', '2025-12-17 19:46:22', '4ZE2DlrA', '7796541'), - (49, 2966, 'attending', '2025-01-25 12:45:25', '2025-12-17 19:46:22', '4ZE2DlrA', '7796542'), - (49, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4ZE2DlrA', '7825913'), - (49, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4ZE2DlrA', '7826209'), - (49, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4ZE2DlrA', '7834742'), - (49, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4ZE2DlrA', '7842108'), - (49, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4ZE2DlrA', '7842902'), - (49, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4ZE2DlrA', '7842903'), - (49, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4ZE2DlrA', '7842904'), - (49, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4ZE2DlrA', '7842905'), - (49, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4ZE2DlrA', '7855719'), - (49, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4ZE2DlrA', '7860683'), - (49, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4ZE2DlrA', '7860684'), - (49, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4ZE2DlrA', '7866095'), - (49, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4ZE2DlrA', '7869170'), - (49, 3015, 'not_attending', '2025-04-25 12:58:00', '2025-12-17 19:46:20', '4ZE2DlrA', '7869186'), - (49, 3016, 'attending', '2025-04-19 22:04:42', '2025-12-17 19:46:20', '4ZE2DlrA', '7869187'), - (49, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4ZE2DlrA', '7869188'), - (49, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4ZE2DlrA', '7869201'), - (49, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4ZE2DlrA', '7877465'), - (49, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:19', '4ZE2DlrA', '7878570'), - (49, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4ZE2DlrA', '7888250'), - (49, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4ZE2DlrA', '7904777'), - (49, 3094, 'attending', '2025-05-07 19:07:28', '2025-12-17 19:46:21', '4ZE2DlrA', '8342292'), - (49, 3095, 'not_attending', '2025-04-28 17:54:30', '2025-12-17 19:46:20', '4ZE2DlrA', '8342293'), - (49, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4ZE2DlrA', '8349164'), - (49, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4ZE2DlrA', '8349545'), - (49, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4ZE2DlrA', '8353584'), - (49, 3131, 'maybe', '2025-05-15 02:45:16', '2025-12-17 19:46:21', '4ZE2DlrA', '8368028'), - (49, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4ZE2DlrA', '8368029'), - (49, 3133, 'attending', '2025-05-29 11:43:29', '2025-12-17 19:46:14', '4ZE2DlrA', '8368030'), - (49, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4ZE2DlrA', '8388462'), - (49, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4ZE2DlrA', '8400273'), - (49, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4ZE2DlrA', '8400274'), - (49, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4ZE2DlrA', '8400275'), - (49, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4ZE2DlrA', '8400276'), - (49, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4ZE2DlrA', '8404977'), - (49, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '4ZE2DlrA', '8430783'), - (49, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4ZE2DlrA', '8430784'), - (49, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4ZE2DlrA', '8430799'), - (49, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4ZE2DlrA', '8430800'), - (49, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4ZE2DlrA', '8430801'), - (49, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4ZE2DlrA', '8438709'), - (49, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4ZE2DlrA', '8457738'), - (49, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4ZE2DlrA', '8459566'), - (49, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4ZE2DlrA', '8459567'), - (49, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4ZE2DlrA', '8461032'), - (49, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4ZE2DlrA', '8477877'), - (49, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4ZE2DlrA', '8485688'), - (49, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4ZE2DlrA', '8490587'), - (49, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4ZE2DlrA', '8493552'), - (49, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4ZE2DlrA', '8493553'), - (49, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4ZE2DlrA', '8493554'), - (49, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4ZE2DlrA', '8493555'), - (49, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4ZE2DlrA', '8493556'), - (49, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4ZE2DlrA', '8493557'), - (49, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4ZE2DlrA', '8493558'), - (49, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4ZE2DlrA', '8493559'), - (49, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4ZE2DlrA', '8493560'), - (49, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4ZE2DlrA', '8493561'), - (49, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4ZE2DlrA', '8493572'), - (49, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4ZE2DlrA', '8540725'), - (49, 3300, 'not_attending', '2025-11-08 15:53:39', '2025-12-17 19:46:14', '4ZE2DlrA', '8549145'), - (49, 3305, 'attending', '2025-12-04 01:20:13', '2025-12-17 19:46:11', '4ZE2DlrA', '8550025'), - (49, 3306, 'attending', '2025-12-11 20:39:59', '2025-12-17 19:46:11', '4ZE2DlrA', '8550026'), - (49, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4ZE2DlrA', '8555421'), - (50, 3015, 'attending', '2025-04-24 01:36:11', '2025-12-17 19:46:20', 'AnjQqeyA', '7869186'), - (50, 3016, 'attending', '2025-04-17 01:41:57', '2025-12-17 19:46:20', 'AnjQqeyA', '7869187'), - (50, 3075, 'attending', '2025-04-17 22:52:36', '2025-12-17 19:46:20', 'AnjQqeyA', '7898896'), - (50, 3087, 'attending', '2025-04-15 18:41:37', '2025-12-17 19:46:20', 'AnjQqeyA', '7903856'), - (50, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AnjQqeyA', '7904777'), - (50, 3091, 'maybe', '2025-04-17 22:56:46', '2025-12-17 19:46:20', 'AnjQqeyA', '8340289'), - (50, 3092, 'attending', '2025-04-17 22:56:33', '2025-12-17 19:46:20', 'AnjQqeyA', '8340351'), - (50, 3093, 'attending', '2025-04-23 00:05:07', '2025-12-17 19:46:20', 'AnjQqeyA', '8342248'), - (50, 3094, 'maybe', '2025-05-07 22:10:10', '2025-12-17 19:46:21', 'AnjQqeyA', '8342292'), - (50, 3095, 'attending', '2025-05-02 17:34:36', '2025-12-17 19:46:20', 'AnjQqeyA', '8342293'), - (50, 3096, 'attending', '2025-04-24 01:35:28', '2025-12-17 19:46:20', 'AnjQqeyA', '8342987'), - (50, 3101, 'attending', '2025-04-24 01:36:04', '2025-12-17 19:46:20', 'AnjQqeyA', '8345032'), - (50, 3102, 'attending', '2025-04-24 01:34:49', '2025-12-17 19:46:20', 'AnjQqeyA', '8346008'), - (50, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AnjQqeyA', '8349164'), - (50, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AnjQqeyA', '8349545'), - (50, 3106, 'not_attending', '2025-04-29 20:12:30', '2025-12-17 19:46:20', 'AnjQqeyA', '8349552'), - (50, 3109, 'attending', '2025-05-07 06:00:05', '2025-12-17 19:46:21', 'AnjQqeyA', '8352001'), - (50, 3110, 'attending', '2025-05-07 05:59:58', '2025-12-17 19:46:20', 'AnjQqeyA', '8353484'), - (50, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AnjQqeyA', '8353584'), - (50, 3113, 'attending', '2025-05-01 19:28:46', '2025-12-17 19:46:20', 'AnjQqeyA', '8355089'), - (50, 3119, 'attending', '2025-05-12 23:01:26', '2025-12-17 19:46:21', 'AnjQqeyA', '8360035'), - (50, 3120, 'not_attending', '2025-05-07 06:00:27', '2025-12-17 19:46:21', 'AnjQqeyA', '8360736'), - (50, 3121, 'not_attending', '2025-05-12 23:34:59', '2025-12-17 19:46:21', 'AnjQqeyA', '8362730'), - (50, 3122, 'attending', '2025-05-12 23:01:33', '2025-12-17 19:46:21', 'AnjQqeyA', '8362978'), - (50, 3124, 'attending', '2025-05-12 23:01:00', '2025-12-17 19:46:21', 'AnjQqeyA', '8363566'), - (50, 3130, 'attending', '2025-05-27 06:41:44', '2025-12-17 19:46:21', 'AnjQqeyA', '8367403'), - (50, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AnjQqeyA', '8368028'), - (50, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AnjQqeyA', '8368029'), - (50, 3133, 'attending', '2025-05-31 22:29:37', '2025-12-17 19:46:14', 'AnjQqeyA', '8368030'), - (50, 3138, 'attending', '2025-05-25 01:31:54', '2025-12-17 19:46:21', 'AnjQqeyA', '8376037'), - (50, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AnjQqeyA', '8388462'), - (50, 3150, 'attending', '2025-06-21 21:05:57', '2025-12-17 19:46:15', 'AnjQqeyA', '8393174'), - (50, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AnjQqeyA', '8400273'), - (50, 3154, 'attending', '2025-06-28 19:40:04', '2025-12-17 19:46:15', 'AnjQqeyA', '8400274'), - (50, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AnjQqeyA', '8400275'), - (50, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AnjQqeyA', '8400276'), - (50, 3160, 'maybe', '2025-06-12 20:13:03', '2025-12-17 19:46:15', 'AnjQqeyA', '8401411'), - (50, 3161, 'attending', '2025-06-08 02:05:45', '2025-12-17 19:46:15', 'AnjQqeyA', '8401412'), - (50, 3164, 'attending', '2025-06-08 02:06:16', '2025-12-17 19:46:15', 'AnjQqeyA', '8403121'), - (50, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AnjQqeyA', '8404977'), - (50, 3172, 'maybe', '2025-06-19 04:23:17', '2025-12-17 19:46:15', 'AnjQqeyA', '8410181'), - (50, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AnjQqeyA', '8430783'), - (50, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AnjQqeyA', '8430784'), - (50, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AnjQqeyA', '8430799'), - (50, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AnjQqeyA', '8430800'), - (50, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AnjQqeyA', '8430801'), - (50, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AnjQqeyA', '8438709'), - (50, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AnjQqeyA', '8457738'), - (50, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AnjQqeyA', '8459566'), - (50, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AnjQqeyA', '8459567'), - (50, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AnjQqeyA', '8461032'), - (50, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnjQqeyA', '8477877'), - (50, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnjQqeyA', '8485688'), - (50, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnjQqeyA', '8490587'), - (50, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnjQqeyA', '8493552'), - (50, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnjQqeyA', '8493553'), - (50, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnjQqeyA', '8493554'), - (50, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnjQqeyA', '8493555'), - (50, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnjQqeyA', '8493556'), - (50, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnjQqeyA', '8493557'), - (50, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnjQqeyA', '8493558'), - (50, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnjQqeyA', '8493559'), - (50, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnjQqeyA', '8493560'), - (50, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnjQqeyA', '8493561'), - (50, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnjQqeyA', '8493572'), - (50, 3279, 'attending', '2025-10-02 19:03:38', '2025-12-17 19:46:13', 'AnjQqeyA', '8535685'), - (50, 3280, 'attending', '2025-10-09 17:59:41', '2025-12-17 19:46:13', 'AnjQqeyA', '8535686'), - (50, 3282, 'attending', '2025-10-06 21:29:17', '2025-12-17 19:46:13', 'AnjQqeyA', '8537571'), - (50, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnjQqeyA', '8540725'), - (50, 3285, 'not_attending', '2025-10-08 18:56:32', '2025-12-17 19:46:13', 'AnjQqeyA', '8540726'), - (50, 3291, 'attending', '2025-10-16 18:20:07', '2025-12-17 19:46:14', 'AnjQqeyA', '8543782'), - (50, 3300, 'attending', '2025-11-07 17:07:11', '2025-12-17 19:46:14', 'AnjQqeyA', '8549145'), - (50, 3302, 'attending', '2025-11-14 04:39:04', '2025-12-17 19:46:14', 'AnjQqeyA', '8550022'), - (50, 3304, 'attending', '2025-11-21 21:21:51', '2025-12-17 19:46:14', 'AnjQqeyA', '8550024'), - (50, 3305, 'attending', '2025-12-07 00:47:00', '2025-12-17 19:46:11', 'AnjQqeyA', '8550025'), - (50, 3307, 'maybe', '2025-12-16 01:43:16', '2025-12-17 19:46:11', 'AnjQqeyA', '8550027'), - (50, 3319, 'attending', '2025-11-14 00:08:26', '2025-12-17 19:46:14', 'AnjQqeyA', '8553114'), - (50, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnjQqeyA', '8555421'), - (50, 3334, 'attending', '2025-12-08 21:43:20', '2025-12-17 19:46:11', 'AnjQqeyA', '8563246'), - (50, 3335, 'attending', '2025-12-12 01:10:14', '2025-12-17 19:46:11', 'AnjQqeyA', '8563247'), - (51, 2492, 'attending', '2024-03-13 22:22:57', '2025-12-17 19:46:32', '1ArLNqYd', '7050322'), - (51, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '1ArLNqYd', '7072824'), - (51, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '1ArLNqYd', '7074364'), - (51, 2536, 'attending', '2024-03-17 02:21:47', '2025-12-17 19:46:33', '1ArLNqYd', '7077689'), - (51, 2537, 'not_attending', '2024-03-23 21:32:46', '2025-12-17 19:46:33', '1ArLNqYd', '7085484'), - (51, 2539, 'maybe', '2024-04-06 16:12:48', '2025-12-17 19:46:33', '1ArLNqYd', '7085486'), - (51, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '1ArLNqYd', '7089267'), - (51, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '1ArLNqYd', '7098747'), - (51, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '1ArLNqYd', '7113468'), - (51, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '1ArLNqYd', '7114856'), - (51, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '1ArLNqYd', '7114951'), - (51, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '1ArLNqYd', '7114955'), - (51, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '1ArLNqYd', '7114956'), - (51, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '1ArLNqYd', '7114957'), - (51, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '1ArLNqYd', '7153615'), - (51, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '1ArLNqYd', '7159484'), - (51, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '1ArLNqYd', '7178446'), - (51, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '1ArLNqYd', '7220467'), - (51, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '1ArLNqYd', '7240354'), - (51, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '1ArLNqYd', '7251633'), - (51, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '1ArLNqYd', '7263048'), - (51, 2627, 'not_attending', '2024-05-25 20:51:43', '2025-12-17 19:46:35', '1ArLNqYd', '7264724'), - (51, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '1ArLNqYd', '7302674'), - (51, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '1ArLNqYd', '7324073'), - (51, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '1ArLNqYd', '7324074'), - (51, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '1ArLNqYd', '7324075'), - (51, 2691, 'attending', '2024-07-20 13:26:49', '2025-12-17 19:46:30', '1ArLNqYd', '7324076'), - (51, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '1ArLNqYd', '7324078'), - (51, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '1ArLNqYd', '7324082'), - (51, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '1ArLNqYd', '7331457'), - (51, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '1ArLNqYd', '7356752'), - (51, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '1ArLNqYd', '7363643'), - (51, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '1ArLNqYd', '7368606'), - (51, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '1ArLNqYd', '7397462'), - (51, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '1ArLNqYd', '7424275'), - (51, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '1ArLNqYd', '7424276'), - (51, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '1ArLNqYd', '7432751'), - (51, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '1ArLNqYd', '7432752'), - (51, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '1ArLNqYd', '7432753'), - (51, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '1ArLNqYd', '7432754'), - (51, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '1ArLNqYd', '7432755'), - (51, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '1ArLNqYd', '7432756'), - (51, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '1ArLNqYd', '7432758'), - (51, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '1ArLNqYd', '7432759'), - (51, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '1ArLNqYd', '7433834'), - (51, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '1ArLNqYd', '7470197'), - (51, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '1ArLNqYd', '7685613'), - (51, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '1ArLNqYd', '7688194'), - (51, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '1ArLNqYd', '7688196'), - (51, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '1ArLNqYd', '7688289'), - (51, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '1ArLNqYd', '7692763'), - (51, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '1ArLNqYd', '7697552'), - (51, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '1ArLNqYd', '7699878'), - (51, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '1ArLNqYd', '7704043'), - (51, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1ArLNqYd', '7712467'), - (51, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1ArLNqYd', '7713585'), - (51, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1ArLNqYd', '7713586'), - (51, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '1ArLNqYd', '7738518'), - (51, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '1ArLNqYd', '7750632'), - (51, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1ArLNqYd', '7750636'), - (51, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1ArLNqYd', '7796540'), - (51, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1ArLNqYd', '7796541'), - (51, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1ArLNqYd', '7796542'), - (51, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1ArLNqYd', '7825913'), - (51, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1ArLNqYd', '7826209'), - (51, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1ArLNqYd', '7834742'), - (51, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1ArLNqYd', '7842108'), - (51, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1ArLNqYd', '7842902'), - (51, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1ArLNqYd', '7842903'), - (51, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1ArLNqYd', '7842904'), - (51, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1ArLNqYd', '7842905'), - (51, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1ArLNqYd', '7855719'), - (51, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1ArLNqYd', '7860683'), - (51, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1ArLNqYd', '7860684'), - (51, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1ArLNqYd', '7866095'), - (51, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1ArLNqYd', '7869170'), - (51, 3014, 'attending', '2025-04-04 15:48:59', '2025-12-17 19:46:19', '1ArLNqYd', '7869185'), - (51, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArLNqYd', '7869188'), - (51, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1ArLNqYd', '7869201'), - (51, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1ArLNqYd', '7877465'), - (51, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '1ArLNqYd', '7878570'), - (51, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1ArLNqYd', '7888250'), - (51, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1ArLNqYd', '7904777'), - (51, 3094, 'attending', '2025-05-10 22:28:18', '2025-12-17 19:46:21', '1ArLNqYd', '8342292'), - (51, 3095, 'attending', '2025-05-03 21:15:03', '2025-12-17 19:46:20', '1ArLNqYd', '8342293'), - (51, 3104, 'attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArLNqYd', '8349164'), - (51, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArLNqYd', '8349545'), - (51, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '1ArLNqYd', '8353584'), - (51, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1ArLNqYd', '8368028'), - (51, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1ArLNqYd', '8368029'), - (51, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1ArLNqYd', '8388462'), - (51, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1ArLNqYd', '8400273'), - (51, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '1ArLNqYd', '8400274'), - (51, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1ArLNqYd', '8400275'), - (51, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '1ArLNqYd', '8400276'), - (51, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1ArLNqYd', '8404977'), - (51, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1ArLNqYd', '8430783'), - (51, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1ArLNqYd', '8430784'), - (51, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1ArLNqYd', '8430799'), - (51, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1ArLNqYd', '8430800'), - (51, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1ArLNqYd', '8430801'), - (51, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1ArLNqYd', '8438709'), - (51, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1ArLNqYd', '8457738'), - (51, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1ArLNqYd', '8459566'), - (51, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1ArLNqYd', '8459567'), - (51, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1ArLNqYd', '8461032'), - (51, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1ArLNqYd', '8477877'), - (51, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1ArLNqYd', '8485688'), - (51, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '1ArLNqYd', '8490587'), - (51, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '1ArLNqYd', '8493552'), - (51, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '1ArLNqYd', '8493553'), - (51, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '1ArLNqYd', '8493554'), - (51, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '1ArLNqYd', '8493555'), - (51, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '1ArLNqYd', '8493556'), - (51, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '1ArLNqYd', '8493557'), - (51, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '1ArLNqYd', '8493558'), - (51, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '1ArLNqYd', '8493559'), - (51, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '1ArLNqYd', '8493560'), - (51, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '1ArLNqYd', '8493561'), - (51, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '1ArLNqYd', '8493572'), - (51, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '1ArLNqYd', '8540725'), - (51, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '1ArLNqYd', '8555421'), - (52, 3306, 'maybe', '2025-12-09 00:28:05', '2025-12-17 19:46:11', 'mpL0jgQm', '8550026'), - (52, 3339, 'attending', '2025-12-07 05:26:10', '2025-12-17 19:46:11', 'mpL0jgQm', '8563326'), - (53, 1207, 'not_attending', '2022-05-05 22:24:41', '2025-12-17 19:47:28', 'dzkzQzym', '4773579'), - (53, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dzkzQzym', '5195095'), - (53, 1314, 'attending', '2022-04-10 23:33:59', '2025-12-17 19:47:27', 'dzkzQzym', '5233137'), - (53, 1319, 'attending', '2022-04-11 14:29:10', '2025-12-17 19:47:27', 'dzkzQzym', '5238353'), - (53, 1320, 'attending', '2022-04-11 14:29:21', '2025-12-17 19:47:27', 'dzkzQzym', '5238354'), - (53, 1324, 'attending', '2022-04-14 21:12:40', '2025-12-17 19:47:27', 'dzkzQzym', '5238360'), - (53, 1330, 'attending', '2022-04-13 00:45:48', '2025-12-17 19:47:27', 'dzkzQzym', '5242155'), - (53, 1336, 'attending', '2022-04-15 21:01:07', '2025-12-17 19:47:27', 'dzkzQzym', '5244915'), - (53, 1337, 'maybe', '2022-04-20 22:18:57', '2025-12-17 19:47:27', 'dzkzQzym', '5245036'), - (53, 1346, 'maybe', '2022-04-19 23:40:30', '2025-12-17 19:47:27', 'dzkzQzym', '5247467'), - (53, 1359, 'not_attending', '2022-05-01 21:13:58', '2025-12-17 19:47:28', 'dzkzQzym', '5258360'), - (53, 1360, 'maybe', '2022-04-26 12:18:54', '2025-12-17 19:47:27', 'dzkzQzym', '5260197'), - (53, 1362, 'not_attending', '2022-04-26 02:23:33', '2025-12-17 19:47:28', 'dzkzQzym', '5260800'), - (53, 1364, 'attending', '2022-04-26 12:21:01', '2025-12-17 19:47:28', 'dzkzQzym', '5261598'), - (53, 1368, 'not_attending', '2022-05-06 20:36:10', '2025-12-17 19:47:28', 'dzkzQzym', '5262783'), - (53, 1369, 'not_attending', '2022-05-10 23:49:46', '2025-12-17 19:47:28', 'dzkzQzym', '5262809'), - (53, 1371, 'maybe', '2022-04-27 20:31:40', '2025-12-17 19:47:27', 'dzkzQzym', '5263784'), - (53, 1374, 'attending', '2022-04-30 21:01:25', '2025-12-17 19:47:28', 'dzkzQzym', '5269930'), - (53, 1375, 'attending', '2022-05-05 21:47:57', '2025-12-17 19:47:28', 'dzkzQzym', '5269932'), - (53, 1376, 'not_attending', '2022-05-05 22:25:28', '2025-12-17 19:47:28', 'dzkzQzym', '5271446'), - (53, 1377, 'not_attending', '2022-05-05 22:25:35', '2025-12-17 19:47:28', 'dzkzQzym', '5271447'), - (53, 1378, 'not_attending', '2022-05-05 22:23:25', '2025-12-17 19:47:29', 'dzkzQzym', '5271448'), - (53, 1379, 'attending', '2022-05-02 17:39:17', '2025-12-17 19:47:29', 'dzkzQzym', '5271449'), - (53, 1380, 'attending', '2022-05-28 20:17:54', '2025-12-17 19:47:30', 'dzkzQzym', '5271450'), - (53, 1381, 'not_attending', '2022-05-05 22:24:35', '2025-12-17 19:47:28', 'dzkzQzym', '5271453'), - (53, 1382, 'not_attending', '2022-05-05 22:24:59', '2025-12-17 19:47:28', 'dzkzQzym', '5276350'), - (53, 1383, 'not_attending', '2022-05-05 22:25:41', '2025-12-17 19:47:28', 'dzkzQzym', '5276469'), - (53, 1384, 'maybe', '2022-05-04 20:07:02', '2025-12-17 19:47:28', 'dzkzQzym', '5277078'), - (53, 1385, 'not_attending', '2022-05-05 22:23:44', '2025-12-17 19:47:28', 'dzkzQzym', '5277822'), - (53, 1386, 'not_attending', '2022-05-06 20:35:41', '2025-12-17 19:47:28', 'dzkzQzym', '5278159'), - (53, 1387, 'not_attending', '2022-05-05 22:25:15', '2025-12-17 19:47:28', 'dzkzQzym', '5278173'), - (53, 1388, 'not_attending', '2022-05-05 22:23:59', '2025-12-17 19:47:28', 'dzkzQzym', '5278201'), - (53, 1389, 'not_attending', '2022-05-05 22:24:46', '2025-12-17 19:47:28', 'dzkzQzym', '5278202'), - (53, 1393, 'not_attending', '2022-05-21 02:44:24', '2025-12-17 19:47:30', 'dzkzQzym', '5280603'), - (53, 1394, 'not_attending', '2022-05-16 04:07:30', '2025-12-17 19:47:30', 'dzkzQzym', '5280667'), - (53, 1401, 'not_attending', '2022-05-18 20:46:50', '2025-12-17 19:47:29', 'dzkzQzym', '5286295'), - (53, 1402, 'not_attending', '2022-05-17 20:05:13', '2025-12-17 19:47:30', 'dzkzQzym', '5287977'), - (53, 1403, 'not_attending', '2022-05-20 21:51:18', '2025-12-17 19:47:29', 'dzkzQzym', '5288052'), - (53, 1404, 'attending', '2022-05-15 19:47:09', '2025-12-17 19:47:29', 'dzkzQzym', '5288114'), - (53, 1405, 'maybe', '2022-05-19 22:57:29', '2025-12-17 19:47:29', 'dzkzQzym', '5288115'), - (53, 1407, 'attending', '2022-06-02 19:35:18', '2025-12-17 19:47:30', 'dzkzQzym', '5363695'), - (53, 1408, 'not_attending', '2022-05-20 21:51:15', '2025-12-17 19:47:29', 'dzkzQzym', '5365960'), - (53, 1409, 'maybe', '2022-05-22 15:55:11', '2025-12-17 19:47:30', 'dzkzQzym', '5367032'), - (53, 1414, 'attending', '2022-05-18 10:13:32', '2025-12-17 19:47:29', 'dzkzQzym', '5368445'), - (53, 1415, 'not_attending', '2022-05-19 21:47:21', '2025-12-17 19:47:30', 'dzkzQzym', '5368973'), - (53, 1416, 'attending', '2022-05-28 21:07:42', '2025-12-17 19:47:30', 'dzkzQzym', '5369628'), - (53, 1417, 'not_attending', '2022-05-24 00:10:38', '2025-12-17 19:47:30', 'dzkzQzym', '5370465'), - (53, 1418, 'not_attending', '2022-05-22 02:50:51', '2025-12-17 19:47:30', 'dzkzQzym', '5372162'), - (53, 1419, 'not_attending', '2022-05-31 19:15:40', '2025-12-17 19:47:30', 'dzkzQzym', '5373081'), - (53, 1420, 'attending', '2022-05-27 09:10:15', '2025-12-17 19:47:30', 'dzkzQzym', '5374882'), - (53, 1421, 'attending', '2022-05-23 01:35:19', '2025-12-17 19:47:30', 'dzkzQzym', '5374885'), - (53, 1422, 'not_attending', '2022-05-23 20:53:26', '2025-12-17 19:47:30', 'dzkzQzym', '5375603'), - (53, 1423, 'not_attending', '2022-05-31 19:15:55', '2025-12-17 19:47:17', 'dzkzQzym', '5375727'), - (53, 1424, 'attending', '2022-05-26 19:22:48', '2025-12-17 19:47:30', 'dzkzQzym', '5375772'), - (53, 1425, 'attending', '2022-05-26 19:22:35', '2025-12-17 19:47:30', 'dzkzQzym', '5375861'), - (53, 1427, 'attending', '2022-05-25 21:47:01', '2025-12-17 19:47:30', 'dzkzQzym', '5376074'), - (53, 1428, 'not_attending', '2022-06-01 10:33:22', '2025-12-17 19:47:30', 'dzkzQzym', '5378247'), - (53, 1429, 'attending', '2022-05-29 04:45:11', '2025-12-17 19:47:30', 'dzkzQzym', '5388761'), - (53, 1430, 'not_attending', '2022-06-01 10:33:29', '2025-12-17 19:47:30', 'dzkzQzym', '5389402'), - (53, 1431, 'not_attending', '2022-05-31 19:15:31', '2025-12-17 19:47:30', 'dzkzQzym', '5389605'), - (53, 1432, 'not_attending', '2022-06-01 10:33:10', '2025-12-17 19:47:30', 'dzkzQzym', '5391566'), - (53, 1434, 'not_attending', '2022-06-01 10:32:35', '2025-12-17 19:47:30', 'dzkzQzym', '5393861'), - (53, 1435, 'not_attending', '2022-06-01 10:32:44', '2025-12-17 19:47:30', 'dzkzQzym', '5394015'), - (53, 1436, 'not_attending', '2022-06-01 10:32:51', '2025-12-17 19:47:30', 'dzkzQzym', '5394292'), - (53, 1437, 'not_attending', '2022-06-01 10:33:03', '2025-12-17 19:47:30', 'dzkzQzym', '5394493'), - (53, 1439, 'not_attending', '2022-06-01 20:02:38', '2025-12-17 19:47:30', 'dzkzQzym', '5396072'), - (53, 1440, 'not_attending', '2022-06-07 19:35:05', '2025-12-17 19:47:30', 'dzkzQzym', '5396080'), - (53, 1442, 'attending', '2022-06-03 08:35:58', '2025-12-17 19:47:17', 'dzkzQzym', '5397265'), - (53, 1446, 'not_attending', '2022-06-05 06:47:41', '2025-12-17 19:47:30', 'dzkzQzym', '5399721'), - (53, 1447, 'not_attending', '2022-06-07 19:35:15', '2025-12-17 19:47:30', 'dzkzQzym', '5401089'), - (53, 1449, 'not_attending', '2022-06-13 04:03:47', '2025-12-17 19:47:31', 'dzkzQzym', '5403335'), - (53, 1451, 'maybe', '2022-06-17 09:43:48', '2025-12-17 19:47:17', 'dzkzQzym', '5403967'), - (53, 1454, 'not_attending', '2022-06-12 09:08:01', '2025-12-17 19:47:31', 'dzkzQzym', '5404771'), - (53, 1455, 'maybe', '2022-06-10 10:09:33', '2025-12-17 19:47:31', 'dzkzQzym', '5404772'), - (53, 1457, 'not_attending', '2022-06-12 09:07:53', '2025-12-17 19:47:31', 'dzkzQzym', '5404780'), - (53, 1458, 'maybe', '2022-06-10 10:05:12', '2025-12-17 19:47:17', 'dzkzQzym', '5404786'), - (53, 1461, 'not_attending', '2022-06-13 04:04:10', '2025-12-17 19:47:31', 'dzkzQzym', '5405149'), - (53, 1462, 'not_attending', '2022-06-10 19:18:27', '2025-12-17 19:47:17', 'dzkzQzym', '5405203'), - (53, 1463, 'not_attending', '2022-06-13 04:03:57', '2025-12-17 19:47:31', 'dzkzQzym', '5405208'), - (53, 1465, 'not_attending', '2022-06-12 09:07:46', '2025-12-17 19:47:31', 'dzkzQzym', '5406355'), - (53, 1469, 'not_attending', '2022-06-17 10:16:36', '2025-12-17 19:47:17', 'dzkzQzym', '5406838'), - (53, 1470, 'attending', '2022-06-13 04:07:30', '2025-12-17 19:47:17', 'dzkzQzym', '5407053'), - (53, 1471, 'not_attending', '2022-06-18 22:24:10', '2025-12-17 19:47:17', 'dzkzQzym', '5407063'), - (53, 1472, 'not_attending', '2022-06-21 19:50:40', '2025-12-17 19:47:17', 'dzkzQzym', '5407065'), - (53, 1473, 'not_attending', '2022-06-13 04:03:37', '2025-12-17 19:47:31', 'dzkzQzym', '5407267'), - (53, 1474, 'not_attending', '2022-06-15 01:50:24', '2025-12-17 19:47:19', 'dzkzQzym', '5408029'), - (53, 1475, 'not_attending', '2022-06-16 22:31:12', '2025-12-17 19:47:17', 'dzkzQzym', '5408108'), - (53, 1476, 'not_attending', '2022-06-17 10:16:44', '2025-12-17 19:47:17', 'dzkzQzym', '5408130'), - (53, 1478, 'not_attending', '2022-06-15 01:50:14', '2025-12-17 19:47:19', 'dzkzQzym', '5408794'), - (53, 1479, 'attending', '2022-06-17 09:43:58', '2025-12-17 19:47:17', 'dzkzQzym', '5410322'), - (53, 1480, 'not_attending', '2022-06-21 19:50:51', '2025-12-17 19:47:19', 'dzkzQzym', '5411699'), - (53, 1481, 'not_attending', '2022-06-21 09:53:55', '2025-12-17 19:47:17', 'dzkzQzym', '5412237'), - (53, 1482, 'not_attending', '2022-06-20 08:19:43', '2025-12-17 19:47:19', 'dzkzQzym', '5412550'), - (53, 1483, 'not_attending', '2022-06-20 08:19:56', '2025-12-17 19:47:17', 'dzkzQzym', '5414556'), - (53, 1484, 'not_attending', '2022-06-21 09:52:50', '2025-12-17 19:47:17', 'dzkzQzym', '5415046'), - (53, 1485, 'not_attending', '2022-06-21 19:50:29', '2025-12-17 19:47:17', 'dzkzQzym', '5416276'), - (53, 1486, 'not_attending', '2022-06-22 03:25:38', '2025-12-17 19:47:19', 'dzkzQzym', '5416339'), - (53, 1487, 'not_attending', '2022-06-25 20:44:04', '2025-12-17 19:47:19', 'dzkzQzym', '5419006'), - (53, 1488, 'attending', '2022-06-25 20:44:22', '2025-12-17 19:47:19', 'dzkzQzym', '5420154'), - (53, 1489, 'not_attending', '2022-06-25 20:44:46', '2025-12-17 19:47:19', 'dzkzQzym', '5420155'), - (53, 1490, 'not_attending', '2022-06-25 20:44:56', '2025-12-17 19:47:19', 'dzkzQzym', '5420156'), - (53, 1491, 'not_attending', '2022-06-25 20:45:10', '2025-12-17 19:47:19', 'dzkzQzym', '5420158'), - (53, 1492, 'not_attending', '2022-06-25 20:45:03', '2025-12-17 19:47:19', 'dzkzQzym', '5420175'), - (53, 1495, 'not_attending', '2022-06-26 08:46:15', '2025-12-17 19:47:19', 'dzkzQzym', '5422086'), - (53, 1496, 'not_attending', '2022-06-26 20:38:57', '2025-12-17 19:47:19', 'dzkzQzym', '5422404'), - (53, 1497, 'not_attending', '2022-06-26 20:39:07', '2025-12-17 19:47:19', 'dzkzQzym', '5422405'), - (53, 1498, 'attending', '2022-06-26 20:38:29', '2025-12-17 19:47:19', 'dzkzQzym', '5422406'), - (53, 1500, 'not_attending', '2022-06-28 02:33:13', '2025-12-17 19:47:19', 'dzkzQzym', '5423915'), - (53, 1501, 'not_attending', '2022-06-28 17:28:10', '2025-12-17 19:47:19', 'dzkzQzym', '5424546'), - (53, 1502, 'not_attending', '2022-06-28 17:29:51', '2025-12-17 19:47:19', 'dzkzQzym', '5424565'), - (53, 1503, 'attending', '2022-07-02 19:16:12', '2025-12-17 19:47:19', 'dzkzQzym', '5426820'), - (53, 1504, 'not_attending', '2022-06-30 20:55:36', '2025-12-17 19:47:19', 'dzkzQzym', '5426882'), - (53, 1505, 'not_attending', '2022-06-30 20:55:12', '2025-12-17 19:47:19', 'dzkzQzym', '5427083'), - (53, 1506, 'maybe', '2022-07-02 19:08:09', '2025-12-17 19:47:19', 'dzkzQzym', '5429935'), - (53, 1509, 'not_attending', '2022-07-06 12:18:50', '2025-12-17 19:47:19', 'dzkzQzym', '5434019'), - (53, 1511, 'not_attending', '2022-07-09 20:32:24', '2025-12-17 19:47:19', 'dzkzQzym', '5437733'), - (53, 1513, 'attending', '2022-07-09 08:55:56', '2025-12-17 19:47:19', 'dzkzQzym', '5441125'), - (53, 1514, 'not_attending', '2022-07-09 08:56:06', '2025-12-17 19:47:20', 'dzkzQzym', '5441126'), - (53, 1515, 'not_attending', '2022-07-09 08:56:31', '2025-12-17 19:47:21', 'dzkzQzym', '5441128'), - (53, 1516, 'not_attending', '2022-07-09 11:30:09', '2025-12-17 19:47:23', 'dzkzQzym', '5441129'), - (53, 1517, 'attending', '2022-07-09 11:30:26', '2025-12-17 19:47:23', 'dzkzQzym', '5441130'), - (53, 1518, 'not_attending', '2022-07-09 11:30:54', '2025-12-17 19:47:24', 'dzkzQzym', '5441131'), - (53, 1519, 'attending', '2022-07-09 11:31:13', '2025-12-17 19:47:24', 'dzkzQzym', '5441132'), - (53, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dzkzQzym', '5446643'), - (53, 1537, 'maybe', '2022-07-18 21:27:29', '2025-12-17 19:47:20', 'dzkzQzym', '5449117'), - (53, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dzkzQzym', '5453325'), - (53, 1541, 'not_attending', '2022-07-21 10:52:35', '2025-12-17 19:47:20', 'dzkzQzym', '5453542'), - (53, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dzkzQzym', '5454516'), - (53, 1544, 'not_attending', '2022-08-14 13:03:09', '2025-12-17 19:47:11', 'dzkzQzym', '5454517'), - (53, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dzkzQzym', '5454605'), - (53, 1546, 'not_attending', '2022-07-21 10:52:51', '2025-12-17 19:47:20', 'dzkzQzym', '5454607'), - (53, 1547, 'maybe', '2022-07-20 05:17:20', '2025-12-17 19:47:20', 'dzkzQzym', '5454608'), - (53, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dzkzQzym', '5455037'), - (53, 1560, 'not_attending', '2022-08-07 19:52:35', '2025-12-17 19:47:23', 'dzkzQzym', '5458768'), - (53, 1561, 'attending', '2022-07-26 18:27:35', '2025-12-17 19:47:22', 'dzkzQzym', '5461278'), - (53, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dzkzQzym', '5469480'), - (53, 1565, 'maybe', '2022-07-25 23:03:39', '2025-12-17 19:47:21', 'dzkzQzym', '5471073'), - (53, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dzkzQzym', '5474663'), - (53, 1569, 'not_attending', '2022-08-02 23:35:43', '2025-12-17 19:47:21', 'dzkzQzym', '5481507'), - (53, 1570, 'not_attending', '2022-08-02 23:35:22', '2025-12-17 19:47:21', 'dzkzQzym', '5481830'), - (53, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dzkzQzym', '5482022'), - (53, 1572, 'not_attending', '2022-08-02 23:35:57', '2025-12-17 19:47:22', 'dzkzQzym', '5482078'), - (53, 1573, 'not_attending', '2022-08-01 20:22:29', '2025-12-17 19:47:22', 'dzkzQzym', '5482152'), - (53, 1574, 'attending', '2022-08-01 20:22:40', '2025-12-17 19:47:22', 'dzkzQzym', '5482153'), - (53, 1575, 'not_attending', '2022-08-07 19:52:43', '2025-12-17 19:47:23', 'dzkzQzym', '5482250'), - (53, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dzkzQzym', '5482793'), - (53, 1578, 'not_attending', '2022-08-02 23:35:12', '2025-12-17 19:47:21', 'dzkzQzym', '5483073'), - (53, 1579, 'not_attending', '2022-08-04 11:26:08', '2025-12-17 19:47:22', 'dzkzQzym', '5486019'), - (53, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dzkzQzym', '5488912'), - (53, 1581, 'attending', '2022-08-07 19:51:42', '2025-12-17 19:47:22', 'dzkzQzym', '5490302'), - (53, 1582, 'not_attending', '2022-08-16 22:24:39', '2025-12-17 19:47:23', 'dzkzQzym', '5492001'), - (53, 1583, 'not_attending', '2022-08-08 12:04:13', '2025-12-17 19:47:22', 'dzkzQzym', '5492002'), - (53, 1584, 'maybe', '2022-08-18 10:04:49', '2025-12-17 19:47:23', 'dzkzQzym', '5492004'), - (53, 1586, 'not_attending', '2022-08-17 08:26:05', '2025-12-17 19:47:23', 'dzkzQzym', '5492019'), - (53, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dzkzQzym', '5492192'), - (53, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dzkzQzym', '5493139'), - (53, 1589, 'not_attending', '2022-08-17 08:26:18', '2025-12-17 19:47:23', 'dzkzQzym', '5493159'), - (53, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dzkzQzym', '5493200'), - (53, 1591, 'attending', '2022-08-10 17:33:44', '2025-12-17 19:47:22', 'dzkzQzym', '5493764'), - (53, 1593, 'maybe', '2022-08-10 17:33:23', '2025-12-17 19:47:22', 'dzkzQzym', '5494043'), - (53, 1595, 'maybe', '2022-08-10 14:27:52', '2025-12-17 19:47:22', 'dzkzQzym', '5495736'), - (53, 1599, 'maybe', '2022-08-14 13:01:48', '2025-12-17 19:47:23', 'dzkzQzym', '5496568'), - (53, 1601, 'not_attending', '2022-08-14 21:52:18', '2025-12-17 19:47:22', 'dzkzQzym', '5496589'), - (53, 1602, 'maybe', '2022-08-13 02:09:45', '2025-12-17 19:47:22', 'dzkzQzym', '5497383'), - (53, 1603, 'not_attending', '2022-08-17 08:25:48', '2025-12-17 19:47:23', 'dzkzQzym', '5497895'), - (53, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dzkzQzym', '5502188'), - (53, 1606, 'maybe', '2022-08-18 10:02:06', '2025-12-17 19:47:23', 'dzkzQzym', '5504585'), - (53, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dzkzQzym', '5505059'), - (53, 1611, 'attending', '2022-08-18 09:58:48', '2025-12-17 19:47:24', 'dzkzQzym', '5507652'), - (53, 1612, 'attending', '2022-08-18 10:03:56', '2025-12-17 19:47:12', 'dzkzQzym', '5507653'), - (53, 1613, 'attending', '2022-08-18 10:04:03', '2025-12-17 19:47:14', 'dzkzQzym', '5507654'), - (53, 1614, 'maybe', '2022-08-19 10:51:35', '2025-12-17 19:47:23', 'dzkzQzym', '5508371'), - (53, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dzkzQzym', '5509055'), - (53, 1618, 'not_attending', '2022-08-23 22:12:44', '2025-12-17 19:47:23', 'dzkzQzym', '5512005'), - (53, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dzkzQzym', '5512862'), - (53, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dzkzQzym', '5513985'), - (53, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dzkzQzym', '5519981'), - (53, 1627, 'not_attending', '2022-08-31 20:40:29', '2025-12-17 19:47:24', 'dzkzQzym', '5521552'), - (53, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dzkzQzym', '5522550'), - (53, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dzkzQzym', '5534683'), - (53, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dzkzQzym', '5537735'), - (53, 1636, 'not_attending', '2022-08-31 20:41:06', '2025-12-17 19:47:24', 'dzkzQzym', '5538454'), - (53, 1638, 'not_attending', '2022-08-31 20:40:35', '2025-12-17 19:47:24', 'dzkzQzym', '5540402'), - (53, 1639, 'not_attending', '2022-08-31 20:40:53', '2025-12-17 19:47:24', 'dzkzQzym', '5540403'), - (53, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dzkzQzym', '5540859'), - (53, 1642, 'attending', '2022-09-01 08:44:17', '2025-12-17 19:47:24', 'dzkzQzym', '5544227'), - (53, 1643, 'maybe', '2022-09-09 09:24:06', '2025-12-17 19:47:11', 'dzkzQzym', '5545856'), - (53, 1645, 'not_attending', '2022-09-04 18:28:34', '2025-12-17 19:47:25', 'dzkzQzym', '5546559'), - (53, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dzkzQzym', '5546619'), - (53, 1648, 'maybe', '2022-09-04 18:30:30', '2025-12-17 19:47:24', 'dzkzQzym', '5548974'), - (53, 1651, 'maybe', '2022-09-04 18:28:42', '2025-12-17 19:47:24', 'dzkzQzym', '5551425'), - (53, 1652, 'maybe', '2022-09-10 02:17:03', '2025-12-17 19:47:24', 'dzkzQzym', '5552671'), - (53, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dzkzQzym', '5555245'), - (53, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dzkzQzym', '5557747'), - (53, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dzkzQzym', '5560255'), - (53, 1663, 'maybe', '2022-09-10 15:27:08', '2025-12-17 19:47:24', 'dzkzQzym', '5562345'), - (53, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dzkzQzym', '5562906'), - (53, 1665, 'not_attending', '2022-09-11 02:41:07', '2025-12-17 19:47:25', 'dzkzQzym', '5563133'), - (53, 1667, 'attending', '2022-09-15 07:44:14', '2025-12-17 19:47:11', 'dzkzQzym', '5563221'), - (53, 1668, 'not_attending', '2022-09-15 09:02:06', '2025-12-17 19:47:12', 'dzkzQzym', '5563222'), - (53, 1671, 'not_attending', '2022-09-15 20:53:17', '2025-12-17 19:47:10', 'dzkzQzym', '5585041'), - (53, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dzkzQzym', '5600604'), - (53, 1680, 'attending', '2022-09-27 19:32:55', '2025-12-17 19:47:11', 'dzkzQzym', '5601577'), - (53, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dzkzQzym', '5605544'), - (53, 1699, 'attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'dzkzQzym', '5606737'), - (53, 1705, 'attending', '2022-09-30 02:21:55', '2025-12-17 19:47:12', 'dzkzQzym', '5612209'), - (53, 1716, 'not_attending', '2022-10-06 20:07:02', '2025-12-17 19:47:12', 'dzkzQzym', '5622429'), - (53, 1719, 'not_attending', '2022-10-05 09:45:50', '2025-12-17 19:47:12', 'dzkzQzym', '5630958'), - (53, 1720, 'attending', '2022-10-05 09:45:54', '2025-12-17 19:47:12', 'dzkzQzym', '5630959'), - (53, 1721, 'attending', '2022-10-05 09:45:57', '2025-12-17 19:47:13', 'dzkzQzym', '5630960'), - (53, 1722, 'not_attending', '2022-10-05 09:46:03', '2025-12-17 19:47:14', 'dzkzQzym', '5630961'), - (53, 1723, 'attending', '2022-10-16 17:40:44', '2025-12-17 19:47:15', 'dzkzQzym', '5630962'), - (53, 1724, 'not_attending', '2022-10-16 17:41:00', '2025-12-17 19:47:15', 'dzkzQzym', '5630966'), - (53, 1725, 'attending', '2022-10-16 17:41:11', '2025-12-17 19:47:16', 'dzkzQzym', '5630967'), - (53, 1726, 'not_attending', '2022-10-16 17:41:15', '2025-12-17 19:47:16', 'dzkzQzym', '5630968'), - (53, 1727, 'attending', '2022-10-16 17:41:25', '2025-12-17 19:47:16', 'dzkzQzym', '5630969'), - (53, 1728, 'attending', '2022-11-28 21:43:46', '2025-12-17 19:47:17', 'dzkzQzym', '5630970'), - (53, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dzkzQzym', '5635406'), - (53, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dzkzQzym', '5638765'), - (53, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dzkzQzym', '5640097'), - (53, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dzkzQzym', '5640843'), - (53, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dzkzQzym', '5641521'), - (53, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dzkzQzym', '5642818'), - (53, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dzkzQzym', '5652395'), - (53, 1753, 'not_attending', '2022-10-16 17:39:57', '2025-12-17 19:47:13', 'dzkzQzym', '5656228'), - (53, 1761, 'attending', '2022-11-18 16:17:55', '2025-12-17 19:47:16', 'dzkzQzym', '5670434'), - (53, 1762, 'not_attending', '2022-11-28 21:46:02', '2025-12-17 19:47:16', 'dzkzQzym', '5670445'), - (53, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dzkzQzym', '5671637'), - (53, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dzkzQzym', '5672329'), - (53, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dzkzQzym', '5674057'), - (53, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dzkzQzym', '5674060'), - (53, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dzkzQzym', '5677461'), - (53, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dzkzQzym', '5698046'), - (53, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dzkzQzym', '5699760'), - (53, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dzkzQzym', '5741601'), - (53, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dzkzQzym', '5763458'), - (53, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dzkzQzym', '5774172'), - (53, 1827, 'maybe', '2022-11-28 21:45:08', '2025-12-17 19:47:16', 'dzkzQzym', '5776786'), - (53, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dzkzQzym', '5818247'), - (53, 1834, 'not_attending', '2022-12-05 10:41:37', '2025-12-17 19:47:17', 'dzkzQzym', '5819470'), - (53, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dzkzQzym', '5819471'), - (53, 1837, 'maybe', '2022-12-05 22:36:41', '2025-12-17 19:47:16', 'dzkzQzym', '5820146'), - (53, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'dzkzQzym', '5827739'), - (53, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dzkzQzym', '5844306'), - (53, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dzkzQzym', '5850159'), - (53, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dzkzQzym', '5858999'), - (53, 1852, 'not_attending', '2023-01-10 21:09:49', '2025-12-17 19:47:05', 'dzkzQzym', '5869898'), - (53, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dzkzQzym', '5871984'), - (53, 1860, 'not_attending', '2023-01-15 00:30:36', '2025-12-17 19:47:05', 'dzkzQzym', '5876309'), - (53, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dzkzQzym', '5876354'), - (53, 1864, 'not_attending', '2023-01-20 11:56:45', '2025-12-17 19:47:05', 'dzkzQzym', '5879675'), - (53, 1865, 'attending', '2023-01-20 11:57:02', '2025-12-17 19:47:06', 'dzkzQzym', '5879676'), - (53, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dzkzQzym', '5880939'), - (53, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dzkzQzym', '5880940'), - (53, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dzkzQzym', '5880942'), - (53, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dzkzQzym', '5880943'), - (53, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dzkzQzym', '5887890'), - (53, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dzkzQzym', '5888598'), - (53, 1879, 'maybe', '2023-01-29 14:06:24', '2025-12-17 19:47:06', 'dzkzQzym', '5893001'), - (53, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dzkzQzym', '5893260'), - (53, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dzkzQzym', '5899826'), - (53, 1888, 'maybe', '2023-02-17 16:52:55', '2025-12-17 19:47:07', 'dzkzQzym', '5900197'), - (53, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dzkzQzym', '5900199'), - (53, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dzkzQzym', '5900200'), - (53, 1891, 'not_attending', '2023-03-08 20:55:52', '2025-12-17 19:46:56', 'dzkzQzym', '5900202'), - (53, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dzkzQzym', '5900203'), - (53, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dzkzQzym', '5901108'), - (53, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dzkzQzym', '5901126'), - (53, 1897, 'attending', '2023-02-07 18:01:18', '2025-12-17 19:47:07', 'dzkzQzym', '5901128'), - (53, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dzkzQzym', '5909655'), - (53, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dzkzQzym', '5910522'), - (53, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dzkzQzym', '5910526'), - (53, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dzkzQzym', '5910528'), - (53, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dzkzQzym', '5916219'), - (53, 1930, 'attending', '2023-02-18 14:42:17', '2025-12-17 19:47:08', 'dzkzQzym', '5933462'), - (53, 1931, 'maybe', '2023-02-18 14:42:21', '2025-12-17 19:47:08', 'dzkzQzym', '5933464'), - (53, 1933, 'attending', '2023-02-21 13:39:51', '2025-12-17 19:47:08', 'dzkzQzym', '5936234'), - (53, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dzkzQzym', '5958351'), - (53, 1938, 'maybe', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dzkzQzym', '5959751'), - (53, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dzkzQzym', '5959755'), - (53, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dzkzQzym', '5960055'), - (53, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dzkzQzym', '5961684'), - (53, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dzkzQzym', '5962132'), - (53, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dzkzQzym', '5962133'), - (53, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dzkzQzym', '5962134'), - (53, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dzkzQzym', '5962317'), - (53, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dzkzQzym', '5962318'), - (53, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dzkzQzym', '5965933'), - (53, 1953, 'maybe', '2023-03-02 07:14:15', '2025-12-17 19:47:09', 'dzkzQzym', '5966307'), - (53, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dzkzQzym', '5967014'), - (53, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dzkzQzym', '5972815'), - (53, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dzkzQzym', '5974016'), - (53, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dzkzQzym', '5975052'), - (53, 1963, 'attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dzkzQzym', '5975054'), - (53, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dzkzQzym', '5981515'), - (53, 1966, 'attending', '2023-03-11 18:56:39', '2025-12-17 19:47:10', 'dzkzQzym', '5983042'), - (53, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dzkzQzym', '5993516'), - (53, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dzkzQzym', '5998939'), - (53, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dzkzQzym', '6028191'), - (53, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dzkzQzym', '6040066'), - (53, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dzkzQzym', '6042717'), - (53, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dzkzQzym', '6044838'), - (53, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dzkzQzym', '6044839'), - (53, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzkzQzym', '6045684'), - (53, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dzkzQzym', '6050104'), - (53, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dzkzQzym', '6053195'), - (53, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dzkzQzym', '6053198'), - (53, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dzkzQzym', '6056085'), - (53, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dzkzQzym', '6056916'), - (53, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dzkzQzym', '6059290'), - (53, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dzkzQzym', '6060328'), - (53, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dzkzQzym', '6061037'), - (53, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dzkzQzym', '6061039'), - (53, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dzkzQzym', '6067245'), - (53, 2025, 'maybe', '2023-04-17 11:30:52', '2025-12-17 19:47:00', 'dzkzQzym', '6067457'), - (53, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dzkzQzym', '6068094'), - (53, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dzkzQzym', '6068252'), - (53, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dzkzQzym', '6068253'), - (53, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dzkzQzym', '6068254'), - (53, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dzkzQzym', '6068280'), - (53, 2032, 'attending', '2023-04-18 11:44:46', '2025-12-17 19:47:04', 'dzkzQzym', '6068281'), - (53, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dzkzQzym', '6069093'), - (53, 2034, 'maybe', '2023-04-24 11:18:02', '2025-12-17 19:47:00', 'dzkzQzym', '6069372'), - (53, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dzkzQzym', '6072528'), - (53, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dzkzQzym', '6075556'), - (53, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dzkzQzym', '6079840'), - (53, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dzkzQzym', '6083398'), - (53, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dzkzQzym', '6093504'), - (53, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dzkzQzym', '6097414'), - (53, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dzkzQzym', '6097442'), - (53, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dzkzQzym', '6097684'), - (53, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dzkzQzym', '6098762'), - (53, 2065, 'attending', '2023-06-13 17:13:46', '2025-12-17 19:46:49', 'dzkzQzym', '6101169'), - (53, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dzkzQzym', '6101361'), - (53, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dzkzQzym', '6101362'), - (53, 2068, 'attending', '2023-05-13 17:55:47', '2025-12-17 19:47:03', 'dzkzQzym', '6102837'), - (53, 2071, 'attending', '2023-05-15 04:14:10', '2025-12-17 19:47:03', 'dzkzQzym', '6104949'), - (53, 2074, 'maybe', '2023-05-20 09:17:24', '2025-12-17 19:47:03', 'dzkzQzym', '6107312'), - (53, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dzkzQzym', '6107314'), - (53, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', 'dzkzQzym', '6119877'), - (53, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dzkzQzym', '6120034'), - (53, 2093, 'attending', '2023-06-04 02:39:45', '2025-12-17 19:47:04', 'dzkzQzym', '6132598'), - (53, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dzkzQzym', '6136733'), - (53, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dzkzQzym', '6137989'), - (53, 2103, 'attending', '2023-06-19 20:00:20', '2025-12-17 19:46:50', 'dzkzQzym', '6149451'), - (53, 2105, 'maybe', '2023-06-17 21:57:10', '2025-12-17 19:46:50', 'dzkzQzym', '6149551'), - (53, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dzkzQzym', '6150864'), - (53, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dzkzQzym', '6155491'), - (53, 2114, 'attending', '2023-06-26 22:23:15', '2025-12-17 19:46:50', 'dzkzQzym', '6158648'), - (53, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dzkzQzym', '6164417'), - (53, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dzkzQzym', '6166388'), - (53, 2121, 'maybe', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dzkzQzym', '6176439'), - (53, 2123, 'attending', '2023-06-28 21:33:41', '2025-12-17 19:46:50', 'dzkzQzym', '6176502'), - (53, 2126, 'maybe', '2023-06-30 02:26:51', '2025-12-17 19:46:51', 'dzkzQzym', '6177548'), - (53, 2127, 'attending', '2023-07-01 20:59:30', '2025-12-17 19:46:50', 'dzkzQzym', '6180853'), - (53, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dzkzQzym', '6182410'), - (53, 2130, 'not_attending', '2023-07-03 22:10:04', '2025-12-17 19:46:51', 'dzkzQzym', '6183891'), - (53, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dzkzQzym', '6185812'), - (53, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dzkzQzym', '6187651'), - (53, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dzkzQzym', '6187963'), - (53, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dzkzQzym', '6187964'), - (53, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dzkzQzym', '6187966'), - (53, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dzkzQzym', '6187967'), - (53, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dzkzQzym', '6187969'), - (53, 2140, 'maybe', '2023-07-10 10:28:16', '2025-12-17 19:46:52', 'dzkzQzym', '6188074'), - (53, 2142, 'maybe', '2023-07-07 20:57:55', '2025-12-17 19:46:52', 'dzkzQzym', '6333850'), - (53, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dzkzQzym', '6334878'), - (53, 2151, 'attending', '2023-07-10 10:28:47', '2025-12-17 19:46:52', 'dzkzQzym', '6335700'), - (53, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dzkzQzym', '6337236'), - (53, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dzkzQzym', '6337970'), - (53, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dzkzQzym', '6338308'), - (53, 2159, 'not_attending', '2023-07-13 16:04:04', '2025-12-17 19:46:53', 'dzkzQzym', '6338355'), - (53, 2160, 'attending', '2023-07-13 16:04:08', '2025-12-17 19:46:54', 'dzkzQzym', '6338358'), - (53, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dzkzQzym', '6341710'), - (53, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dzkzQzym', '6342044'), - (53, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dzkzQzym', '6342298'), - (53, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dzkzQzym', '6343294'), - (53, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dzkzQzym', '6347034'), - (53, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dzkzQzym', '6347056'), - (53, 2183, 'maybe', '2023-07-28 13:28:29', '2025-12-17 19:46:54', 'dzkzQzym', '6353008'), - (53, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dzkzQzym', '6353830'), - (53, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dzkzQzym', '6353831'), - (53, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dzkzQzym', '6357867'), - (53, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dzkzQzym', '6358652'), - (53, 2193, 'maybe', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dzkzQzym', '6358668'), - (53, 2194, 'maybe', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dzkzQzym', '6358669'), - (53, 2198, 'maybe', '2023-09-09 22:25:00', '2025-12-17 19:46:45', 'dzkzQzym', '6359400'), - (53, 2204, 'attending', '2023-08-18 22:54:30', '2025-12-17 19:46:55', 'dzkzQzym', '6361542'), - (53, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dzkzQzym', '6361709'), - (53, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dzkzQzym', '6361710'), - (53, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dzkzQzym', '6361711'), - (53, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dzkzQzym', '6361712'), - (53, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dzkzQzym', '6361713'), - (53, 2232, 'attending', '2023-08-23 10:41:16', '2025-12-17 19:46:55', 'dzkzQzym', '6374818'), - (53, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dzkzQzym', '6382573'), - (53, 2240, 'attending', '2023-09-07 12:35:55', '2025-12-17 19:46:56', 'dzkzQzym', '6388603'), - (53, 2241, 'not_attending', '2023-09-09 22:23:07', '2025-12-17 19:46:44', 'dzkzQzym', '6388604'), - (53, 2242, 'attending', '2023-09-21 00:12:43', '2025-12-17 19:46:45', 'dzkzQzym', '6388606'), - (53, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dzkzQzym', '6394629'), - (53, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dzkzQzym', '6394631'), - (53, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dzkzQzym', '6440863'), - (53, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dzkzQzym', '6445440'), - (53, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dzkzQzym', '6453951'), - (53, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dzkzQzym', '6461696'), - (53, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dzkzQzym', '6462129'), - (53, 2290, 'maybe', '2023-10-18 16:39:31', '2025-12-17 19:46:46', 'dzkzQzym', '6462214'), - (53, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dzkzQzym', '6463218'), - (53, 2299, 'attending', '2023-10-15 20:24:13', '2025-12-17 19:46:46', 'dzkzQzym', '6472181'), - (53, 2304, 'attending', '2023-10-24 11:31:38', '2025-12-17 19:46:47', 'dzkzQzym', '6482693'), - (53, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dzkzQzym', '6484200'), - (53, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dzkzQzym', '6484680'), - (53, 2310, 'not_attending', '2023-11-04 17:24:30', '2025-12-17 19:46:47', 'dzkzQzym', '6487709'), - (53, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dzkzQzym', '6507741'), - (53, 2322, 'attending', '2023-11-04 17:24:37', '2025-12-17 19:46:48', 'dzkzQzym', '6514659'), - (53, 2323, 'attending', '2023-11-04 17:24:45', '2025-12-17 19:46:48', 'dzkzQzym', '6514660'), - (53, 2324, 'not_attending', '2023-11-04 17:24:48', '2025-12-17 19:46:49', 'dzkzQzym', '6514662'), - (53, 2325, 'attending', '2023-11-25 20:21:14', '2025-12-17 19:46:36', 'dzkzQzym', '6514663'), - (53, 2326, 'attending', '2023-11-04 17:24:08', '2025-12-17 19:46:48', 'dzkzQzym', '6514805'), - (53, 2329, 'attending', '2023-11-04 17:10:59', '2025-12-17 19:46:47', 'dzkzQzym', '6517138'), - (53, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dzkzQzym', '6519103'), - (53, 2334, 'maybe', '2023-11-06 05:12:49', '2025-12-17 19:46:48', 'dzkzQzym', '6529252'), - (53, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dzkzQzym', '6535681'), - (53, 2338, 'maybe', '2023-11-13 10:47:29', '2025-12-17 19:46:48', 'dzkzQzym', '6538868'), - (53, 2340, 'not_attending', '2023-11-21 04:09:44', '2025-12-17 19:46:48', 'dzkzQzym', '6540279'), - (53, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dzkzQzym', '6584747'), - (53, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dzkzQzym', '6587097'), - (53, 2357, 'maybe', '2023-11-28 00:25:40', '2025-12-17 19:46:36', 'dzkzQzym', '6593341'), - (53, 2358, 'not_attending', '2023-11-29 22:49:45', '2025-12-17 19:46:48', 'dzkzQzym', '6595321'), - (53, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dzkzQzym', '6609022'), - (53, 2365, 'attending', '2023-12-19 00:48:41', '2025-12-17 19:46:37', 'dzkzQzym', '6613093'), - (53, 2373, 'maybe', '2024-01-13 23:25:00', '2025-12-17 19:46:38', 'dzkzQzym', '6632678'), - (53, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dzkzQzym', '6632757'), - (53, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dzkzQzym', '6644187'), - (53, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dzkzQzym', '6648951'), - (53, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dzkzQzym', '6648952'), - (53, 2395, 'maybe', '2024-01-13 23:24:35', '2025-12-17 19:46:38', 'dzkzQzym', '6654471'), - (53, 2396, 'maybe', '2024-01-13 23:24:48', '2025-12-17 19:46:38', 'dzkzQzym', '6655401'), - (53, 2399, 'not_attending', '2024-01-10 04:52:48', '2025-12-17 19:46:38', 'dzkzQzym', '6657583'), - (53, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dzkzQzym', '6661585'), - (53, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dzkzQzym', '6661588'), - (53, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dzkzQzym', '6661589'), - (53, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dzkzQzym', '6699906'), - (53, 2408, 'attending', '2024-01-15 04:53:31', '2025-12-17 19:46:40', 'dzkzQzym', '6699907'), - (53, 2409, 'attending', '2024-01-15 04:53:36', '2025-12-17 19:46:41', 'dzkzQzym', '6699909'), - (53, 2410, 'attending', '2024-01-15 04:53:41', '2025-12-17 19:46:41', 'dzkzQzym', '6699911'), - (53, 2411, 'attending', '2024-02-02 00:31:41', '2025-12-17 19:46:41', 'dzkzQzym', '6699913'), - (53, 2412, 'attending', '2024-02-20 04:26:29', '2025-12-17 19:46:43', 'dzkzQzym', '6700717'), - (53, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dzkzQzym', '6701109'), - (53, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dzkzQzym', '6705219'), - (53, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dzkzQzym', '6710153'), - (53, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dzkzQzym', '6711552'), - (53, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dzkzQzym', '6711553'), - (53, 2431, 'not_attending', '2024-02-02 00:31:23', '2025-12-17 19:46:41', 'dzkzQzym', '6712394'), - (53, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dzkzQzym', '6722688'), - (53, 2438, 'maybe', '2024-02-02 00:31:33', '2025-12-17 19:46:41', 'dzkzQzym', '6730201'), - (53, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dzkzQzym', '6730620'), - (53, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dzkzQzym', '6730642'), - (53, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dzkzQzym', '6740364'), - (53, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dzkzQzym', '6743829'), - (53, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dzkzQzym', '7030380'), - (53, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'dzkzQzym', '7033677'), - (53, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dzkzQzym', '7035415'), - (53, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dzkzQzym', '7044715'), - (53, 2486, 'maybe', '2024-03-04 05:21:25', '2025-12-17 19:46:43', 'dzkzQzym', '7048277'), - (53, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dzkzQzym', '7050318'), - (53, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dzkzQzym', '7050319'), - (53, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dzkzQzym', '7050322'), - (53, 2493, 'not_attending', '2024-03-10 04:44:17', '2025-12-17 19:46:32', 'dzkzQzym', '7052471'), - (53, 2495, 'maybe', '2024-03-05 21:47:21', '2025-12-17 19:46:32', 'dzkzQzym', '7052982'), - (53, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dzkzQzym', '7057804'), - (53, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dzkzQzym', '7059866'), - (53, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dzkzQzym', '7072824'), - (53, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dzkzQzym', '7074348'), - (53, 2524, 'attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dzkzQzym', '7074364'), - (53, 2526, 'attending', '2024-08-01 01:44:42', '2025-12-17 19:46:31', 'dzkzQzym', '7074366'), - (53, 2538, 'attending', '2024-03-26 23:54:20', '2025-12-17 19:46:33', 'dzkzQzym', '7085485'), - (53, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dzkzQzym', '7089267'), - (53, 2542, 'attending', '2024-03-24 23:06:32', '2025-12-17 19:46:33', 'dzkzQzym', '7090025'), - (53, 2545, 'attending', '2024-03-24 23:06:25', '2025-12-17 19:46:33', 'dzkzQzym', '7096942'), - (53, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dzkzQzym', '7098747'), - (53, 2553, 'attending', '2024-03-29 19:58:22', '2025-12-17 19:46:33', 'dzkzQzym', '7113468'), - (53, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dzkzQzym', '7114856'), - (53, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dzkzQzym', '7114951'), - (53, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dzkzQzym', '7114955'), - (53, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dzkzQzym', '7114956'), - (53, 2558, 'maybe', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dzkzQzym', '7114957'), - (53, 2564, 'maybe', '2024-04-10 19:39:33', '2025-12-17 19:46:33', 'dzkzQzym', '7134735'), - (53, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dzkzQzym', '7153615'), - (53, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dzkzQzym', '7159484'), - (53, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzkzQzym', '7178446'), - (53, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dzkzQzym', '7220467'), - (53, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dzkzQzym', '7240354'), - (53, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dzkzQzym', '7251633'), - (53, 2624, 'attending', '2024-05-12 10:03:50', '2025-12-17 19:46:35', 'dzkzQzym', '7263301'), - (53, 2626, 'attending', '2024-05-18 03:10:55', '2025-12-17 19:46:35', 'dzkzQzym', '7264723'), - (53, 2627, 'attending', '2024-05-18 03:11:08', '2025-12-17 19:46:35', 'dzkzQzym', '7264724'), - (53, 2628, 'not_attending', '2024-05-18 03:11:03', '2025-12-17 19:46:36', 'dzkzQzym', '7264725'), - (53, 2629, 'attending', '2024-05-18 03:11:05', '2025-12-17 19:46:28', 'dzkzQzym', '7264726'), - (53, 2647, 'attending', '2024-06-09 04:42:55', '2025-12-17 19:46:28', 'dzkzQzym', '7282057'), - (53, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dzkzQzym', '7302674'), - (53, 2673, 'attending', '2024-06-09 21:46:21', '2025-12-17 19:46:28', 'dzkzQzym', '7319473'), - (53, 2678, 'attending', '2024-06-09 21:44:59', '2025-12-17 19:46:28', 'dzkzQzym', '7319489'), - (53, 2679, 'attending', '2024-06-21 21:14:34', '2025-12-17 19:46:29', 'dzkzQzym', '7319490'), - (53, 2682, 'attending', '2024-06-10 21:38:30', '2025-12-17 19:46:28', 'dzkzQzym', '7321862'), - (53, 2685, 'attending', '2024-06-10 23:12:34', '2025-12-17 19:46:28', 'dzkzQzym', '7322675'), - (53, 2686, 'attending', '2024-06-11 10:09:32', '2025-12-17 19:46:29', 'dzkzQzym', '7323802'), - (53, 2688, 'attending', '2024-06-12 20:59:59', '2025-12-17 19:46:29', 'dzkzQzym', '7324073'), - (53, 2689, 'attending', '2024-06-17 19:38:24', '2025-12-17 19:46:29', 'dzkzQzym', '7324074'), - (53, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dzkzQzym', '7324075'), - (53, 2691, 'attending', '2024-07-14 14:41:52', '2025-12-17 19:46:30', 'dzkzQzym', '7324076'), - (53, 2693, 'attending', '2024-08-01 01:43:12', '2025-12-17 19:46:31', 'dzkzQzym', '7324078'), - (53, 2694, 'attending', '2024-08-01 01:43:29', '2025-12-17 19:46:31', 'dzkzQzym', '7324079'), - (53, 2695, 'attending', '2024-08-01 01:43:39', '2025-12-17 19:46:31', 'dzkzQzym', '7324080'), - (53, 2696, 'attending', '2024-08-01 01:43:41', '2025-12-17 19:46:32', 'dzkzQzym', '7324081'), - (53, 2697, 'not_attending', '2024-08-28 23:38:26', '2025-12-17 19:46:32', 'dzkzQzym', '7324082'), - (53, 2702, 'attending', '2024-06-12 22:18:15', '2025-12-17 19:46:28', 'dzkzQzym', '7324867'), - (53, 2706, 'maybe', '2024-06-19 01:21:05', '2025-12-17 19:46:28', 'dzkzQzym', '7324947'), - (53, 2721, 'attending', '2024-06-19 01:20:46', '2025-12-17 19:46:29', 'dzkzQzym', '7331456'), - (53, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dzkzQzym', '7331457'), - (53, 2732, 'not_attending', '2024-06-24 01:06:20', '2025-12-17 19:46:29', 'dzkzQzym', '7337207'), - (53, 2750, 'attending', '2024-07-07 20:55:42', '2025-12-17 19:46:30', 'dzkzQzym', '7355526'), - (53, 2753, 'attending', '2024-07-08 21:47:08', '2025-12-17 19:46:30', 'dzkzQzym', '7355538'), - (53, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dzkzQzym', '7363643'), - (53, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dzkzQzym', '7368606'), - (53, 2796, 'attending', '2024-08-15 00:29:55', '2025-12-17 19:46:31', 'dzkzQzym', '7391451'), - (53, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dzkzQzym', '7397462'), - (53, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dzkzQzym', '7424275'), - (53, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dzkzQzym', '7424276'), - (53, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dzkzQzym', '7432751'), - (53, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dzkzQzym', '7432752'), - (53, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dzkzQzym', '7432753'), - (53, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dzkzQzym', '7432754'), - (53, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dzkzQzym', '7432755'), - (53, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dzkzQzym', '7432756'), - (53, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dzkzQzym', '7432758'), - (53, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dzkzQzym', '7432759'), - (53, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dzkzQzym', '7433834'), - (53, 2837, 'not_attending', '2024-09-12 18:57:25', '2025-12-17 19:46:25', 'dzkzQzym', '7438711'), - (53, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dzkzQzym', '7470197'), - (53, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dzkzQzym', '7685613'), - (53, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dzkzQzym', '7688194'), - (53, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dzkzQzym', '7688196'), - (53, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dzkzQzym', '7688289'), - (53, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dzkzQzym', '7692763'), - (53, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dzkzQzym', '7697552'), - (53, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dzkzQzym', '7699878'), - (53, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dzkzQzym', '7704043'), - (53, 2922, 'attending', '2024-11-25 22:44:08', '2025-12-17 19:46:21', 'dzkzQzym', '7710890'), - (53, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dzkzQzym', '7712467'), - (53, 2926, 'attending', '2024-12-07 06:51:10', '2025-12-17 19:46:21', 'dzkzQzym', '7713585'), - (53, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dzkzQzym', '7713586'), - (53, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dzkzQzym', '7738518'), - (53, 2962, 'maybe', '2024-12-27 17:31:14', '2025-12-17 19:46:22', 'dzkzQzym', '7750632'), - (53, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dzkzQzym', '7750636'), - (53, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dzkzQzym', '7796540'), - (53, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dzkzQzym', '7796541'), - (53, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dzkzQzym', '7796542'), - (53, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dzkzQzym', '7825913'), - (53, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dzkzQzym', '7825920'), - (53, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dzkzQzym', '7826209'), - (53, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dzkzQzym', '7834742'), - (53, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dzkzQzym', '7842108'), - (53, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dzkzQzym', '7842902'), - (53, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dzkzQzym', '7842903'), - (53, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dzkzQzym', '7842904'), - (53, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dzkzQzym', '7842905'), - (53, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dzkzQzym', '7855719'), - (53, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dzkzQzym', '7860683'), - (53, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dzkzQzym', '7860684'), - (53, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dzkzQzym', '7866095'), - (53, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dzkzQzym', '7869170'), - (53, 3014, 'attending', '2025-04-02 17:43:08', '2025-12-17 19:46:19', 'dzkzQzym', '7869185'), - (53, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dzkzQzym', '7869188'), - (53, 3018, 'maybe', '2025-04-08 16:26:12', '2025-12-17 19:46:20', 'dzkzQzym', '7869189'), - (53, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dzkzQzym', '7869201'), - (53, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dzkzQzym', '7877465'), - (53, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dzkzQzym', '7888250'), - (53, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dzkzQzym', '7904777'), - (53, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dzkzQzym', '8349164'), - (53, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dzkzQzym', '8349545'), - (53, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dzkzQzym', '8353584'), - (53, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dzkzQzym', '8368028'), - (53, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dzkzQzym', '8368029'), - (53, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dzkzQzym', '8388462'), - (53, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dzkzQzym', '8400273'), - (53, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dzkzQzym', '8400274'), - (53, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dzkzQzym', '8400275'), - (53, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dzkzQzym', '8400276'), - (53, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dzkzQzym', '8404977'), - (53, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dzkzQzym', '8430783'), - (53, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dzkzQzym', '8430784'), - (53, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dzkzQzym', '8430799'), - (53, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dzkzQzym', '8430800'), - (53, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dzkzQzym', '8430801'), - (53, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dzkzQzym', '8438709'), - (53, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dzkzQzym', '8457738'), - (53, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dzkzQzym', '8459566'), - (53, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dzkzQzym', '8459567'), - (53, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dzkzQzym', '8459568'), - (53, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dzkzQzym', '8461032'), - (53, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dzkzQzym', '8477877'), - (53, 3215, 'maybe', '2025-08-17 03:17:18', '2025-12-17 19:46:18', 'dzkzQzym', '8477880'), - (53, 3219, 'not_attending', '2025-08-17 03:17:38', '2025-12-17 19:46:18', 'dzkzQzym', '8482548'), - (53, 3222, 'not_attending', '2025-08-29 11:58:42', '2025-12-17 19:46:11', 'dzkzQzym', '8485677'), - (53, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'dzkzQzym', '8485688'), - (53, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dzkzQzym', '8490587'), - (53, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dzkzQzym', '8493552'), - (53, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dzkzQzym', '8493553'), - (53, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dzkzQzym', '8493554'), - (53, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dzkzQzym', '8493555'), - (53, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dzkzQzym', '8493556'), - (53, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dzkzQzym', '8493557'), - (53, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dzkzQzym', '8493558'), - (53, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dzkzQzym', '8493559'), - (53, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dzkzQzym', '8493560'), - (53, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dzkzQzym', '8493561'), - (53, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dzkzQzym', '8493572'), - (53, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dzkzQzym', '8540725'), - (53, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dzkzQzym', '8555421'), - (54, 2821, 'not_attending', '2024-10-09 22:34:19', '2025-12-17 19:46:26', '4oqqKeJm', '7424275'), - (54, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4oqqKeJm', '7424276'), - (54, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', '4oqqKeJm', '7432753'), - (54, 2827, 'not_attending', '2024-09-30 15:46:43', '2025-12-17 19:46:26', '4oqqKeJm', '7432754'), - (54, 2828, 'maybe', '2024-10-09 22:34:24', '2025-12-17 19:46:26', '4oqqKeJm', '7432755'), - (54, 2829, 'attending', '2024-10-09 22:34:27', '2025-12-17 19:46:26', '4oqqKeJm', '7432756'), - (54, 2830, 'maybe', '2024-10-09 22:34:30', '2025-12-17 19:46:26', '4oqqKeJm', '7432758'), - (54, 2831, 'not_attending', '2024-10-09 22:34:32', '2025-12-17 19:46:26', '4oqqKeJm', '7432759'), - (54, 2857, 'maybe', '2024-10-19 06:50:04', '2025-12-17 19:46:26', '4oqqKeJm', '7469387'), - (54, 2858, 'maybe', '2024-10-09 22:34:35', '2025-12-17 19:46:26', '4oqqKeJm', '7469388'), - (54, 2859, 'attending', '2024-10-25 21:47:12', '2025-12-17 19:46:26', '4oqqKeJm', '7469389'), - (54, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4oqqKeJm', '7470197'), - (54, 2865, 'maybe', '2024-10-25 21:47:10', '2025-12-17 19:46:26', '4oqqKeJm', '7471200'), - (54, 2867, 'maybe', '2024-12-06 21:06:04', '2025-12-17 19:46:21', '4oqqKeJm', '7471202'), - (54, 2869, 'attending', '2024-10-02 23:14:23', '2025-12-17 19:46:26', '4oqqKeJm', '7474823'), - (54, 2874, 'maybe', '2024-10-09 22:34:38', '2025-12-17 19:46:26', '4oqqKeJm', '7482239'), - (54, 2886, 'attending', '2024-10-25 21:47:27', '2025-12-17 19:46:26', '4oqqKeJm', '7654498'), - (54, 2889, 'attending', '2024-10-24 22:32:36', '2025-12-17 19:46:26', '4oqqKeJm', '7660485'), - (54, 2893, 'maybe', '2024-11-04 19:33:30', '2025-12-17 19:46:26', '4oqqKeJm', '7672705'), - (54, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4oqqKeJm', '7685613'), - (54, 2899, 'attending', '2024-11-09 17:48:06', '2025-12-17 19:46:27', '4oqqKeJm', '7685616'), - (54, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4oqqKeJm', '7688194'), - (54, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4oqqKeJm', '7688196'), - (54, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4oqqKeJm', '7688289'), - (54, 2909, 'maybe', '2024-11-12 22:57:34', '2025-12-17 19:46:27', '4oqqKeJm', '7689771'), - (54, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4oqqKeJm', '7692763'), - (54, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4oqqKeJm', '7697552'), - (54, 2916, 'attending', '2024-11-17 23:18:24', '2025-12-17 19:46:27', '4oqqKeJm', '7699006'), - (54, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4oqqKeJm', '7699878'), - (54, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4oqqKeJm', '7704043'), - (54, 2924, 'maybe', '2024-11-27 00:41:58', '2025-12-17 19:46:28', '4oqqKeJm', '7712467'), - (54, 2925, 'attending', '2024-12-03 18:12:18', '2025-12-17 19:46:21', '4oqqKeJm', '7713584'), - (54, 2926, 'attending', '2024-12-03 18:12:11', '2025-12-17 19:46:21', '4oqqKeJm', '7713585'), - (54, 2927, 'attending', '2024-12-03 18:12:19', '2025-12-17 19:46:22', '4oqqKeJm', '7713586'), - (54, 2930, 'maybe', '2024-12-07 01:16:42', '2025-12-17 19:46:21', '4oqqKeJm', '7724554'), - (54, 2953, 'maybe', '2024-12-14 17:17:15', '2025-12-17 19:46:21', '4oqqKeJm', '7733836'), - (54, 2957, 'maybe', '2024-12-16 18:00:59', '2025-12-17 19:46:21', '4oqqKeJm', '7735370'), - (54, 2958, 'maybe', '2024-12-18 21:23:26', '2025-12-17 19:46:21', '4oqqKeJm', '7738518'), - (54, 2959, 'attending', '2024-12-21 21:57:14', '2025-12-17 19:46:22', '4oqqKeJm', '7747388'), - (54, 2962, 'not_attending', '2024-12-24 18:51:36', '2025-12-17 19:46:22', '4oqqKeJm', '7750632'), - (54, 2963, 'not_attending', '2024-12-24 18:51:48', '2025-12-17 19:46:22', '4oqqKeJm', '7750636'), - (54, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4oqqKeJm', '7796540'), - (54, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4oqqKeJm', '7796541'), - (54, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4oqqKeJm', '7796542'), - (54, 2968, 'maybe', '2025-01-08 22:58:17', '2025-12-17 19:46:22', '4oqqKeJm', '7797967'), - (54, 2970, 'maybe', '2025-01-12 22:55:16', '2025-12-17 19:46:22', '4oqqKeJm', '7800991'), - (54, 2971, 'maybe', '2025-01-17 18:19:12', '2025-12-17 19:46:22', '4oqqKeJm', '7812230'), - (54, 2972, 'attending', '2025-01-17 18:19:09', '2025-12-17 19:46:22', '4oqqKeJm', '7812563'), - (54, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4oqqKeJm', '7825913'), - (54, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4oqqKeJm', '7826209'), - (54, 2984, 'maybe', '2025-02-06 03:51:11', '2025-12-17 19:46:23', '4oqqKeJm', '7830134'), - (54, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4oqqKeJm', '7834742'), - (54, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '4oqqKeJm', '7842108'), - (54, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4oqqKeJm', '7842902'), - (54, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4oqqKeJm', '7842903'), - (54, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4oqqKeJm', '7842904'), - (54, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4oqqKeJm', '7842905'), - (54, 3000, 'attending', '2025-02-17 19:37:40', '2025-12-17 19:46:24', '4oqqKeJm', '7852541'), - (54, 3001, 'maybe', '2025-02-20 01:30:14', '2025-12-17 19:46:24', '4oqqKeJm', '7854184'), - (54, 3004, 'attending', '2025-02-20 01:29:06', '2025-12-17 19:46:24', '4oqqKeJm', '7854599'), - (54, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4oqqKeJm', '7855719'), - (54, 3007, 'maybe', '2025-02-24 23:00:59', '2025-12-17 19:46:24', '4oqqKeJm', '7860683'), - (54, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4oqqKeJm', '7860684'), - (54, 3009, 'attending', '2025-02-28 04:51:49', '2025-12-17 19:46:18', '4oqqKeJm', '7864019'), - (54, 3010, 'attending', '2025-03-02 20:41:40', '2025-12-17 19:46:18', '4oqqKeJm', '7864879'), - (54, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4oqqKeJm', '7866095'), - (54, 3013, 'attending', '2025-03-05 18:29:17', '2025-12-17 19:46:18', '4oqqKeJm', '7869170'), - (54, 3014, 'not_attending', '2025-03-21 21:24:19', '2025-12-17 19:46:20', '4oqqKeJm', '7869185'), - (54, 3015, 'attending', '2025-03-29 15:41:54', '2025-12-17 19:46:20', '4oqqKeJm', '7869186'), - (54, 3016, 'attending', '2025-03-29 15:41:52', '2025-12-17 19:46:20', '4oqqKeJm', '7869187'), - (54, 3017, 'not_attending', '2025-03-20 22:37:22', '2025-12-17 19:46:19', '4oqqKeJm', '7869188'), - (54, 3018, 'attending', '2025-03-29 15:41:50', '2025-12-17 19:46:20', '4oqqKeJm', '7869189'), - (54, 3028, 'attending', '2025-04-01 22:39:03', '2025-12-17 19:46:20', '4oqqKeJm', '7869199'), - (54, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4oqqKeJm', '7869201'), - (54, 3033, 'attending', '2025-03-11 02:32:21', '2025-12-17 19:46:19', '4oqqKeJm', '7877465'), - (54, 3034, 'maybe', '2025-03-11 22:24:26', '2025-12-17 19:46:18', '4oqqKeJm', '7878570'), - (54, 3036, 'attending', '2025-03-13 20:26:12', '2025-12-17 19:46:19', '4oqqKeJm', '7880952'), - (54, 3038, 'attending', '2025-03-14 02:55:37', '2025-12-17 19:46:19', '4oqqKeJm', '7881989'), - (54, 3039, 'attending', '2025-03-14 13:14:53', '2025-12-17 19:46:19', '4oqqKeJm', '7881992'), - (54, 3040, 'attending', '2025-03-14 03:06:02', '2025-12-17 19:46:19', '4oqqKeJm', '7881994'), - (54, 3041, 'maybe', '2025-03-14 13:15:10', '2025-12-17 19:46:19', '4oqqKeJm', '7881995'), - (54, 3049, 'not_attending', '2025-03-16 23:00:39', '2025-12-17 19:46:19', '4oqqKeJm', '7883215'), - (54, 3050, 'not_attending', '2025-03-16 22:57:56', '2025-12-17 19:46:19', '4oqqKeJm', '7884021'), - (54, 3051, 'attending', '2025-03-16 23:11:00', '2025-12-17 19:46:19', '4oqqKeJm', '7884023'), - (54, 3052, 'attending', '2025-03-16 23:15:31', '2025-12-17 19:46:19', '4oqqKeJm', '7884024'), - (54, 3054, 'attending', '2025-03-17 00:47:32', '2025-12-17 19:46:19', '4oqqKeJm', '7884168'), - (54, 3055, 'attending', '2025-03-21 21:24:02', '2025-12-17 19:46:19', '4oqqKeJm', '7888118'), - (54, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4oqqKeJm', '7888250'), - (54, 3058, 'attending', '2025-03-27 22:33:46', '2025-12-17 19:46:19', '4oqqKeJm', '7891460'), - (54, 3064, 'attending', '2025-03-28 14:09:30', '2025-12-17 19:46:19', '4oqqKeJm', '7892835'), - (54, 3066, 'maybe', '2025-03-31 14:44:08', '2025-12-17 19:46:20', '4oqqKeJm', '7894207'), - (54, 3068, 'attending', '2025-03-30 22:46:58', '2025-12-17 19:46:19', '4oqqKeJm', '7894823'), - (54, 3069, 'attending', '2025-03-31 02:22:29', '2025-12-17 19:46:19', '4oqqKeJm', '7894828'), - (54, 3070, 'attending', '2025-03-30 23:33:39', '2025-12-17 19:46:20', '4oqqKeJm', '7894829'), - (54, 3072, 'attending', '2025-04-01 23:07:37', '2025-12-17 19:46:19', '4oqqKeJm', '7895449'), - (54, 3076, 'attending', '2025-04-05 05:50:53', '2025-12-17 19:46:20', '4oqqKeJm', '7899007'), - (54, 3081, 'maybe', '2025-04-07 19:48:03', '2025-12-17 19:46:20', '4oqqKeJm', '7902801'), - (54, 3082, 'attending', '2025-04-09 23:04:13', '2025-12-17 19:46:20', '4oqqKeJm', '7902819'), - (54, 3084, 'attending', '2025-04-09 14:57:53', '2025-12-17 19:46:20', '4oqqKeJm', '7903687'), - (54, 3085, 'maybe', '2025-04-11 02:29:59', '2025-12-17 19:46:20', '4oqqKeJm', '7903688'), - (54, 3088, 'not_attending', '2025-06-12 16:47:01', '2025-12-17 19:46:15', '4oqqKeJm', '7904777'), - (54, 3090, 'attending', '2025-04-15 23:16:21', '2025-12-17 19:46:20', '4oqqKeJm', '7914315'), - (54, 3093, 'maybe', '2025-04-19 22:24:21', '2025-12-17 19:46:20', '4oqqKeJm', '8342248'), - (54, 3094, 'not_attending', '2025-05-10 02:35:42', '2025-12-17 19:46:21', '4oqqKeJm', '8342292'), - (54, 3095, 'not_attending', '2025-04-27 23:39:25', '2025-12-17 19:46:20', '4oqqKeJm', '8342293'), - (54, 3096, 'attending', '2025-04-21 08:11:27', '2025-12-17 19:46:20', '4oqqKeJm', '8342987'), - (54, 3097, 'attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', '4oqqKeJm', '8342993'), - (54, 3101, 'attending', '2025-04-22 20:00:42', '2025-12-17 19:46:20', '4oqqKeJm', '8345032'), - (54, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4oqqKeJm', '8349164'), - (54, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4oqqKeJm', '8349545'), - (54, 3109, 'maybe', '2025-05-02 00:33:05', '2025-12-17 19:46:21', '4oqqKeJm', '8352001'), - (54, 3110, 'attending', '2025-04-29 19:54:07', '2025-12-17 19:46:20', '4oqqKeJm', '8353484'), - (54, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4oqqKeJm', '8353584'), - (54, 3119, 'maybe', '2025-05-11 00:30:31', '2025-12-17 19:46:21', '4oqqKeJm', '8360035'), - (54, 3121, 'maybe', '2025-05-10 12:31:20', '2025-12-17 19:46:21', '4oqqKeJm', '8362730'), - (54, 3122, 'not_attending', '2025-05-07 22:17:52', '2025-12-17 19:46:21', '4oqqKeJm', '8362978'), - (54, 3126, 'not_attending', '2025-05-14 19:11:46', '2025-12-17 19:46:21', '4oqqKeJm', '8365614'), - (54, 3131, 'attending', '2025-05-13 00:18:27', '2025-12-17 19:46:21', '4oqqKeJm', '8368028'), - (54, 3132, 'attending', '2025-05-18 02:26:29', '2025-12-17 19:46:21', '4oqqKeJm', '8368029'), - (54, 3133, 'attending', '2025-05-25 02:35:45', '2025-12-17 19:46:14', '4oqqKeJm', '8368030'), - (54, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4oqqKeJm', '8388462'), - (54, 3150, 'not_attending', '2025-06-18 10:20:12', '2025-12-17 19:46:15', '4oqqKeJm', '8393174'), - (54, 3153, 'attending', '2025-06-03 17:37:59', '2025-12-17 19:46:15', '4oqqKeJm', '8400273'), - (54, 3154, 'not_attending', '2025-06-14 10:05:06', '2025-12-17 19:46:15', '4oqqKeJm', '8400274'), - (54, 3155, 'not_attending', '2025-06-28 17:33:40', '2025-12-17 19:46:16', '4oqqKeJm', '8400275'), - (54, 3156, 'not_attending', '2025-06-28 17:33:46', '2025-12-17 19:46:16', '4oqqKeJm', '8400276'), - (54, 3159, 'maybe', '2025-06-04 16:08:54', '2025-12-17 19:46:15', '4oqqKeJm', '8401410'), - (54, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4oqqKeJm', '8404977'), - (54, 3172, 'not_attending', '2025-06-18 10:21:29', '2025-12-17 19:46:15', '4oqqKeJm', '8410181'), - (54, 3176, 'maybe', '2025-06-22 00:14:56', '2025-12-17 19:46:15', '4oqqKeJm', '8416741'), - (54, 3180, 'maybe', '2025-06-25 10:54:36', '2025-12-17 19:46:15', '4oqqKeJm', '8422682'), - (54, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '4oqqKeJm', '8430783'), - (54, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4oqqKeJm', '8430784'), - (54, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4oqqKeJm', '8430799'), - (54, 3184, 'maybe', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4oqqKeJm', '8430800'), - (54, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4oqqKeJm', '8430801'), - (54, 3186, 'not_attending', '2025-07-01 01:23:11', '2025-12-17 19:46:16', '4oqqKeJm', '8431527'), - (54, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4oqqKeJm', '8438709'), - (54, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4oqqKeJm', '8457738'), - (54, 3195, 'attending', '2025-07-26 22:03:33', '2025-12-17 19:46:17', '4oqqKeJm', '8458118'), - (54, 3196, 'attending', '2025-07-30 18:01:27', '2025-12-17 19:46:17', '4oqqKeJm', '8458543'), - (54, 3198, 'maybe', '2025-07-30 18:02:29', '2025-12-17 19:46:18', '4oqqKeJm', '8459268'), - (54, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4oqqKeJm', '8459566'), - (54, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4oqqKeJm', '8459567'), - (54, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4oqqKeJm', '8461032'), - (54, 3208, 'maybe', '2025-07-29 04:42:29', '2025-12-17 19:46:17', '4oqqKeJm', '8467717'), - (54, 3210, 'maybe', '2025-07-30 18:02:37', '2025-12-17 19:46:18', '4oqqKeJm', '8471162'), - (54, 3211, 'not_attending', '2025-08-04 23:47:28', '2025-12-17 19:46:17', '4oqqKeJm', '8477785'), - (54, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4oqqKeJm', '8477877'), - (54, 3217, 'not_attending', '2025-08-11 06:24:30', '2025-12-17 19:46:17', '4oqqKeJm', '8481811'), - (54, 3219, 'maybe', '2025-08-12 19:49:46', '2025-12-17 19:46:18', '4oqqKeJm', '8482548'), - (54, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4oqqKeJm', '8485688'), - (54, 3235, 'maybe', '2025-08-17 21:29:37', '2025-12-17 19:46:18', '4oqqKeJm', '8490587'), - (54, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4oqqKeJm', '8493552'), - (54, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4oqqKeJm', '8493553'), - (54, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4oqqKeJm', '8493554'), - (54, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4oqqKeJm', '8493555'), - (54, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4oqqKeJm', '8493556'), - (54, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4oqqKeJm', '8493557'), - (54, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4oqqKeJm', '8493558'), - (54, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4oqqKeJm', '8493559'), - (54, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4oqqKeJm', '8493560'), - (54, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '4oqqKeJm', '8493561'), - (54, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4oqqKeJm', '8493572'), - (54, 3257, 'maybe', '2025-08-28 05:53:02', '2025-12-17 19:46:11', '4oqqKeJm', '8502340'), - (54, 3258, 'not_attending', '2025-09-03 19:18:08', '2025-12-17 19:46:11', '4oqqKeJm', '8510285'), - (54, 3262, 'maybe', '2025-09-05 14:01:49', '2025-12-17 19:46:12', '4oqqKeJm', '8512642'), - (54, 3271, 'maybe', '2025-09-15 21:16:32', '2025-12-17 19:46:12', '4oqqKeJm', '8521430'), - (54, 3279, 'not_attending', '2025-10-02 15:38:56', '2025-12-17 19:46:13', '4oqqKeJm', '8535685'), - (54, 3280, 'maybe', '2025-10-01 14:53:14', '2025-12-17 19:46:13', '4oqqKeJm', '8535686'), - (54, 3281, 'maybe', '2025-10-01 14:53:18', '2025-12-17 19:46:14', '4oqqKeJm', '8535687'), - (54, 3282, 'maybe', '2025-10-05 18:07:35', '2025-12-17 19:46:13', '4oqqKeJm', '8537571'), - (54, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4oqqKeJm', '8540725'), - (54, 3285, 'not_attending', '2025-10-09 01:26:14', '2025-12-17 19:46:13', '4oqqKeJm', '8540726'), - (54, 3289, 'attending', '2025-10-12 18:56:05', '2025-12-17 19:46:14', '4oqqKeJm', '8542939'), - (54, 3295, 'not_attending', '2025-11-01 14:44:57', '2025-12-17 19:46:14', '4oqqKeJm', '8547541'), - (54, 3300, 'attending', '2025-10-28 14:28:33', '2025-12-17 19:46:14', '4oqqKeJm', '8549145'), - (54, 3302, 'attending', '2025-11-01 14:45:19', '2025-12-17 19:46:14', '4oqqKeJm', '8550022'), - (54, 3304, 'maybe', '2025-11-01 14:45:24', '2025-12-17 19:46:14', '4oqqKeJm', '8550024'), - (54, 3305, 'maybe', '2025-12-02 15:59:18', '2025-12-17 19:46:11', '4oqqKeJm', '8550025'), - (54, 3308, 'not_attending', '2025-11-02 01:18:32', '2025-12-17 19:46:14', '4oqqKeJm', '8550408'), - (54, 3309, 'not_attending', '2025-11-02 01:18:35', '2025-12-17 19:46:14', '4oqqKeJm', '8550409'), - (54, 3311, 'not_attending', '2025-12-04 16:15:27', '2025-12-17 19:46:11', '4oqqKeJm', '8550412'), - (54, 3313, 'not_attending', '2025-11-02 14:43:47', '2025-12-17 19:46:14', '4oqqKeJm', '8550896'), - (54, 3314, 'not_attending', '2025-11-02 14:43:43', '2025-12-17 19:46:14', '4oqqKeJm', '8551821'), - (54, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4oqqKeJm', '8555421'), - (54, 3336, 'maybe', '2025-12-12 18:10:41', '2025-12-17 19:46:11', '4oqqKeJm', '8563248'), - (56, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'v4Do21MA', '7074364'), - (56, 2688, 'attending', '2024-06-21 09:55:35', '2025-12-17 19:46:29', 'v4Do21MA', '7324073'), - (56, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'v4Do21MA', '7324074'), - (56, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'v4Do21MA', '7324075'), - (56, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'v4Do21MA', '7324078'), - (56, 2696, 'attending', '2024-08-22 22:32:45', '2025-12-17 19:46:32', 'v4Do21MA', '7324081'), - (56, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'v4Do21MA', '7324082'), - (56, 2705, 'attending', '2024-06-29 00:59:39', '2025-12-17 19:46:29', 'v4Do21MA', '7324944'), - (56, 2719, 'attending', '2024-06-23 17:56:31', '2025-12-17 19:46:29', 'v4Do21MA', '7331305'), - (56, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'v4Do21MA', '7331457'), - (56, 2723, 'attending', '2024-06-19 21:47:52', '2025-12-17 19:46:29', 'v4Do21MA', '7332389'), - (56, 2725, 'not_attending', '2024-06-19 19:53:35', '2025-12-17 19:46:28', 'v4Do21MA', '7332564'), - (56, 2733, 'attending', '2024-06-26 14:58:31', '2025-12-17 19:46:29', 'v4Do21MA', '7338853'), - (56, 2734, 'attending', '2024-07-04 23:54:08', '2025-12-17 19:46:29', 'v4Do21MA', '7339440'), - (56, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'v4Do21MA', '7356752'), - (56, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'v4Do21MA', '7363643'), - (56, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'v4Do21MA', '7368606'), - (56, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'v4Do21MA', '7397462'), - (56, 2808, 'attending', '2024-09-01 17:11:54', '2025-12-17 19:46:32', 'v4Do21MA', '7412860'), - (56, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'v4Do21MA', '7424275'), - (56, 2822, 'attending', '2024-11-10 16:20:50', '2025-12-17 19:46:26', 'v4Do21MA', '7424276'), - (56, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'v4Do21MA', '7432751'), - (56, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'v4Do21MA', '7432752'), - (56, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'v4Do21MA', '7432753'), - (56, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'v4Do21MA', '7432754'), - (56, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'v4Do21MA', '7432755'), - (56, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'v4Do21MA', '7432756'), - (56, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'v4Do21MA', '7432758'), - (56, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'v4Do21MA', '7432759'), - (56, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'v4Do21MA', '7433834'), - (56, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'v4Do21MA', '7470197'), - (56, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'v4Do21MA', '7685613'), - (56, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'v4Do21MA', '7688194'), - (56, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'v4Do21MA', '7688196'), - (56, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'v4Do21MA', '7688289'), - (56, 2909, 'attending', '2024-11-10 21:21:05', '2025-12-17 19:46:27', 'v4Do21MA', '7689771'), - (56, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'v4Do21MA', '7692763'), - (56, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'v4Do21MA', '7697552'), - (56, 2915, 'attending', '2024-11-22 00:35:35', '2025-12-17 19:46:27', 'v4Do21MA', '7698151'), - (56, 2917, 'attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'v4Do21MA', '7699878'), - (56, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'v4Do21MA', '7704043'), - (56, 2920, 'attending', '2024-11-23 23:04:56', '2025-12-17 19:46:28', 'v4Do21MA', '7708406'), - (56, 2921, 'attending', '2024-11-25 02:27:24', '2025-12-17 19:46:28', 'v4Do21MA', '7708460'), - (56, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'v4Do21MA', '7712467'), - (56, 2925, 'attending', '2024-12-11 13:18:35', '2025-12-17 19:46:21', 'v4Do21MA', '7713584'), - (56, 2926, 'attending', '2024-12-06 19:58:06', '2025-12-17 19:46:21', 'v4Do21MA', '7713585'), - (56, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'v4Do21MA', '7713586'), - (56, 2937, 'attending', '2024-12-14 18:04:59', '2025-12-17 19:46:21', 'v4Do21MA', '7725955'), - (56, 2941, 'attending', '2025-02-07 13:44:32', '2025-12-17 19:46:23', 'v4Do21MA', '7725959'), - (56, 2946, 'attending', '2025-03-25 12:09:17', '2025-12-17 19:46:19', 'v4Do21MA', '7725965'), - (56, 2947, 'attending', '2024-12-10 19:39:15', '2025-12-17 19:46:21', 'v4Do21MA', '7727445'), - (56, 2951, 'attending', '2024-12-11 13:18:27', '2025-12-17 19:46:21', 'v4Do21MA', '7729509'), - (56, 2952, 'attending', '2024-12-12 15:53:21', '2025-12-17 19:46:21', 'v4Do21MA', '7730167'), - (56, 2953, 'attending', '2024-12-15 04:41:47', '2025-12-17 19:46:21', 'v4Do21MA', '7733836'), - (56, 2954, 'attending', '2024-12-14 18:04:53', '2025-12-17 19:46:21', 'v4Do21MA', '7734260'), - (56, 2957, 'attending', '2024-12-16 17:03:12', '2025-12-17 19:46:21', 'v4Do21MA', '7735370'), - (56, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'v4Do21MA', '7738518'), - (56, 2962, 'not_attending', '2024-12-27 22:26:20', '2025-12-17 19:46:22', 'v4Do21MA', '7750632'), - (56, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'v4Do21MA', '7750636'), - (56, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'v4Do21MA', '7796540'), - (56, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'v4Do21MA', '7796541'), - (56, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'v4Do21MA', '7796542'), - (56, 2967, 'attending', '2025-01-08 22:09:21', '2025-12-17 19:46:22', 'v4Do21MA', '7797181'), - (56, 2968, 'maybe', '2025-01-08 20:13:27', '2025-12-17 19:46:22', 'v4Do21MA', '7797967'), - (56, 2971, 'not_attending', '2025-01-15 00:36:58', '2025-12-17 19:46:22', 'v4Do21MA', '7812230'), - (56, 2972, 'attending', '2025-01-15 20:13:33', '2025-12-17 19:46:22', 'v4Do21MA', '7812563'), - (56, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'v4Do21MA', '7825913'), - (56, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'v4Do21MA', '7826209'), - (56, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'v4Do21MA', '7834742'), - (56, 2986, 'attending', '2025-02-07 20:58:30', '2025-12-17 19:46:23', 'v4Do21MA', '7835405'), - (56, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'v4Do21MA', '7842108'), - (56, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'v4Do21MA', '7842902'), - (56, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'v4Do21MA', '7842903'), - (56, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'v4Do21MA', '7842904'), - (56, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'v4Do21MA', '7842905'), - (56, 3000, 'maybe', '2025-02-22 19:45:45', '2025-12-17 19:46:24', 'v4Do21MA', '7852541'), - (56, 3004, 'attending', '2025-02-19 12:09:59', '2025-12-17 19:46:24', 'v4Do21MA', '7854599'), - (56, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'v4Do21MA', '7855719'), - (56, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'v4Do21MA', '7860683'), - (56, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'v4Do21MA', '7860684'), - (56, 3009, 'maybe', '2025-03-02 03:53:56', '2025-12-17 19:46:18', 'v4Do21MA', '7864019'), - (56, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'v4Do21MA', '7866095'), - (56, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'v4Do21MA', '7869170'), - (56, 3014, 'attending', '2025-03-31 22:46:42', '2025-12-17 19:46:19', 'v4Do21MA', '7869185'), - (56, 3015, 'attending', '2025-04-23 23:42:49', '2025-12-17 19:46:20', 'v4Do21MA', '7869186'), - (56, 3016, 'attending', '2025-04-17 21:01:20', '2025-12-17 19:46:20', 'v4Do21MA', '7869187'), - (56, 3017, 'attending', '2025-03-25 12:09:12', '2025-12-17 19:46:19', 'v4Do21MA', '7869188'), - (56, 3018, 'attending', '2025-04-09 12:05:32', '2025-12-17 19:46:20', 'v4Do21MA', '7869189'), - (56, 3020, 'attending', '2025-04-17 21:01:23', '2025-12-17 19:46:20', 'v4Do21MA', '7869191'), - (56, 3028, 'attending', '2025-03-29 15:48:20', '2025-12-17 19:46:20', 'v4Do21MA', '7869199'), - (56, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'v4Do21MA', '7869201'), - (56, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'v4Do21MA', '7877465'), - (56, 3034, 'attending', '2025-03-11 16:57:33', '2025-12-17 19:46:18', 'v4Do21MA', '7878570'), - (56, 3036, 'attending', '2025-03-13 22:46:29', '2025-12-17 19:46:19', 'v4Do21MA', '7880952'), - (56, 3038, 'attending', '2025-03-14 11:09:53', '2025-12-17 19:46:19', 'v4Do21MA', '7881989'), - (56, 3039, 'attending', '2025-03-14 09:30:37', '2025-12-17 19:46:19', 'v4Do21MA', '7881992'), - (56, 3040, 'attending', '2025-03-14 09:30:33', '2025-12-17 19:46:19', 'v4Do21MA', '7881994'), - (56, 3041, 'maybe', '2025-03-15 00:18:49', '2025-12-17 19:46:19', 'v4Do21MA', '7881995'), - (56, 3042, 'attending', '2025-03-15 01:12:21', '2025-12-17 19:46:19', 'v4Do21MA', '7882467'), - (56, 3043, 'attending', '2025-03-15 19:14:47', '2025-12-17 19:46:19', 'v4Do21MA', '7882587'), - (56, 3044, 'attending', '2025-03-25 12:09:14', '2025-12-17 19:46:19', 'v4Do21MA', '7882690'), - (56, 3045, 'attending', '2025-03-31 22:46:45', '2025-12-17 19:46:19', 'v4Do21MA', '7882691'), - (56, 3046, 'attending', '2025-04-09 12:05:33', '2025-12-17 19:46:20', 'v4Do21MA', '7882692'), - (56, 3048, 'attending', '2025-04-17 21:01:18', '2025-12-17 19:46:20', 'v4Do21MA', '7882694'), - (56, 3051, 'attending', '2025-03-16 23:10:27', '2025-12-17 19:46:19', 'v4Do21MA', '7884023'), - (56, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'v4Do21MA', '7888250'), - (56, 3067, 'attending', '2025-04-04 22:40:47', '2025-12-17 19:46:19', 'v4Do21MA', '7894745'), - (56, 3068, 'attending', '2025-03-30 22:46:58', '2025-12-17 19:46:19', 'v4Do21MA', '7894823'), - (56, 3069, 'attending', '2025-03-30 23:38:57', '2025-12-17 19:46:19', 'v4Do21MA', '7894828'), - (56, 3070, 'attending', '2025-03-30 23:33:39', '2025-12-17 19:46:20', 'v4Do21MA', '7894829'), - (56, 3072, 'attending', '2025-04-03 20:19:08', '2025-12-17 19:46:19', 'v4Do21MA', '7895449'), - (56, 3074, 'attending', '2025-04-05 14:32:47', '2025-12-17 19:46:19', 'v4Do21MA', '7897784'), - (56, 3075, 'attending', '2025-04-17 21:00:53', '2025-12-17 19:46:20', 'v4Do21MA', '7898896'), - (56, 3076, 'attending', '2025-04-05 05:50:53', '2025-12-17 19:46:20', 'v4Do21MA', '7899007'), - (56, 3086, 'attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'v4Do21MA', '7903852'), - (56, 3088, 'attending', '2025-06-13 18:36:53', '2025-12-17 19:46:15', 'v4Do21MA', '7904777'), - (56, 3094, 'attending', '2025-05-10 17:58:30', '2025-12-17 19:46:21', 'v4Do21MA', '8342292'), - (56, 3095, 'attending', '2025-04-30 03:07:24', '2025-12-17 19:46:20', 'v4Do21MA', '8342293'), - (56, 3101, 'attending', '2025-04-22 19:53:57', '2025-12-17 19:46:20', 'v4Do21MA', '8345032'), - (56, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'v4Do21MA', '8349164'), - (56, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'v4Do21MA', '8349545'), - (56, 3108, 'attending', '2025-04-30 03:07:26', '2025-12-17 19:46:20', 'v4Do21MA', '8351411'), - (56, 3112, 'attending', '2025-05-07 01:02:46', '2025-12-17 19:46:21', 'v4Do21MA', '8353584'), - (56, 3120, 'attending', '2025-05-07 22:28:52', '2025-12-17 19:46:21', 'v4Do21MA', '8360736'), - (56, 3123, 'attending', '2025-05-09 20:55:30', '2025-12-17 19:46:21', 'v4Do21MA', '8363523'), - (56, 3127, 'attending', '2025-05-16 23:39:28', '2025-12-17 19:46:21', 'v4Do21MA', '8365615'), - (56, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'v4Do21MA', '8368028'), - (56, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'v4Do21MA', '8368029'), - (56, 3133, 'attending', '2025-05-29 13:33:10', '2025-12-17 19:46:14', 'v4Do21MA', '8368030'), - (56, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'v4Do21MA', '8388462'), - (56, 3144, 'attending', '2025-05-30 20:25:04', '2025-12-17 19:46:14', 'v4Do21MA', '8393073'), - (56, 3150, 'not_attending', '2025-06-21 22:57:32', '2025-12-17 19:46:15', 'v4Do21MA', '8393174'), - (56, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'v4Do21MA', '8400273'), - (56, 3154, 'attending', '2025-06-26 05:39:05', '2025-12-17 19:46:15', 'v4Do21MA', '8400274'), - (56, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'v4Do21MA', '8400275'), - (56, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'v4Do21MA', '8400276'), - (56, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'v4Do21MA', '8404977'), - (56, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'v4Do21MA', '8430783'), - (56, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'v4Do21MA', '8430784'), - (56, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'v4Do21MA', '8430799'), - (56, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'v4Do21MA', '8430800'), - (56, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'v4Do21MA', '8430801'), - (56, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'v4Do21MA', '8438709'), - (56, 3190, 'attending', '2025-07-12 19:44:54', '2025-12-17 19:46:17', 'v4Do21MA', '8443962'), - (56, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'v4Do21MA', '8457738'), - (56, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'v4Do21MA', '8459566'), - (56, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'v4Do21MA', '8459567'), - (56, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'v4Do21MA', '8461032'), - (56, 3206, 'attending', '2025-07-22 17:48:17', '2025-12-17 19:46:17', 'v4Do21MA', '8462943'), - (56, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'v4Do21MA', '8477877'), - (56, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'v4Do21MA', '8485688'), - (56, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'v4Do21MA', '8490587'), - (56, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'v4Do21MA', '8493552'), - (56, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'v4Do21MA', '8493553'), - (56, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'v4Do21MA', '8493554'), - (56, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'v4Do21MA', '8493555'), - (56, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'v4Do21MA', '8493556'), - (56, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'v4Do21MA', '8493557'), - (56, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'v4Do21MA', '8493558'), - (56, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'v4Do21MA', '8493559'), - (56, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'v4Do21MA', '8493560'), - (56, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'v4Do21MA', '8493561'), - (56, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'v4Do21MA', '8493572'), - (56, 3283, 'attending', '2025-10-05 03:08:09', '2025-12-17 19:46:14', 'v4Do21MA', '8538077'), - (56, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'v4Do21MA', '8540725'), - (56, 3289, 'attending', '2025-10-24 18:40:48', '2025-12-17 19:46:14', 'v4Do21MA', '8542939'), - (56, 3290, 'attending', '2025-10-13 20:30:29', '2025-12-17 19:46:13', 'v4Do21MA', '8542943'), - (56, 3294, 'attending', '2025-10-18 16:09:04', '2025-12-17 19:46:14', 'v4Do21MA', '8546775'), - (56, 3295, 'not_attending', '2025-11-01 22:52:33', '2025-12-17 19:46:14', 'v4Do21MA', '8547541'), - (56, 3300, 'attending', '2025-11-05 05:17:00', '2025-12-17 19:46:14', 'v4Do21MA', '8549145'), - (56, 3302, 'attending', '2025-11-16 00:22:46', '2025-12-17 19:46:14', 'v4Do21MA', '8550022'), - (56, 3304, 'attending', '2025-11-23 00:13:18', '2025-12-17 19:46:14', 'v4Do21MA', '8550024'), - (56, 3305, 'attending', '2025-12-04 08:00:20', '2025-12-17 19:46:11', 'v4Do21MA', '8550025'), - (56, 3306, 'attending', '2025-12-11 17:31:36', '2025-12-17 19:46:11', 'v4Do21MA', '8550026'), - (56, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'v4Do21MA', '8555421'), - (56, 3333, 'attending', '2025-12-04 05:05:01', '2025-12-17 19:46:11', 'v4Do21MA', '8562500'), - (56, 3343, 'attending', '2025-12-14 04:42:09', '2025-12-17 19:46:11', 'v4Do21MA', '8564411'), - (57, 393, 'attending', '2021-06-22 23:31:30', '2025-12-17 19:47:38', 'xAY1yRaA', '3236448'), - (57, 745, 'attending', '2021-07-02 22:04:53', '2025-12-17 19:47:38', 'xAY1yRaA', '3680625'), - (57, 746, 'attending', '2021-07-09 19:59:17', '2025-12-17 19:47:39', 'xAY1yRaA', '3680626'), - (57, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xAY1yRaA', '4021848'), - (57, 869, 'attending', '2021-06-29 00:37:00', '2025-12-17 19:47:38', 'xAY1yRaA', '4136744'), - (57, 870, 'attending', '2021-07-02 21:19:36', '2025-12-17 19:47:39', 'xAY1yRaA', '4136937'), - (57, 871, 'attending', '2021-07-05 10:14:49', '2025-12-17 19:47:39', 'xAY1yRaA', '4136938'), - (57, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'xAY1yRaA', '4136947'), - (57, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'xAY1yRaA', '4210314'), - (57, 885, 'attending', '2021-06-27 22:44:40', '2025-12-17 19:47:38', 'xAY1yRaA', '4222370'), - (57, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xAY1yRaA', '4225444'), - (57, 896, 'attending', '2021-06-29 00:37:08', '2025-12-17 19:47:38', 'xAY1yRaA', '4231145'), - (57, 897, 'not_attending', '2021-06-28 09:55:03', '2025-12-17 19:47:38', 'xAY1yRaA', '4232132'), - (57, 899, 'maybe', '2021-07-04 15:08:29', '2025-12-17 19:47:39', 'xAY1yRaA', '4239259'), - (57, 900, 'attending', '2021-07-18 22:15:57', '2025-12-17 19:47:40', 'xAY1yRaA', '4240316'), - (57, 901, 'attending', '2021-07-30 21:25:44', '2025-12-17 19:47:40', 'xAY1yRaA', '4240317'), - (57, 902, 'attending', '2021-08-04 10:03:57', '2025-12-17 19:47:41', 'xAY1yRaA', '4240318'), - (57, 903, 'attending', '2021-08-09 09:50:09', '2025-12-17 19:47:42', 'xAY1yRaA', '4240320'), - (57, 905, 'not_attending', '2021-07-05 10:15:07', '2025-12-17 19:47:39', 'xAY1yRaA', '4250163'), - (57, 909, 'attending', '2021-07-10 19:34:30', '2025-12-17 19:47:39', 'xAY1yRaA', '4258187'), - (57, 910, 'attending', '2021-07-10 21:10:48', '2025-12-17 19:47:39', 'xAY1yRaA', '4258189'), - (57, 918, 'attending', '2021-07-12 19:37:43', '2025-12-17 19:47:39', 'xAY1yRaA', '4274486'), - (57, 919, 'maybe', '2021-07-17 16:22:39', '2025-12-17 19:47:39', 'xAY1yRaA', '4275957'), - (57, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xAY1yRaA', '4277819'), - (57, 922, 'attending', '2021-07-23 10:42:20', '2025-12-17 19:47:40', 'xAY1yRaA', '4280811'), - (57, 926, 'attending', '2021-08-16 16:34:28', '2025-12-17 19:47:42', 'xAY1yRaA', '4297211'), - (57, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xAY1yRaA', '4301723'), - (57, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xAY1yRaA', '4302093'), - (57, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xAY1yRaA', '4304151'), - (57, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'xAY1yRaA', '4345519'), - (57, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'xAY1yRaA', '4356801'), - (57, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xAY1yRaA', '4358025'), - (57, 973, 'attending', '2021-08-19 11:56:32', '2025-12-17 19:47:42', 'xAY1yRaA', '4366186'), - (57, 974, 'attending', '2021-08-23 11:46:21', '2025-12-17 19:47:42', 'xAY1yRaA', '4366187'), - (57, 977, 'maybe', '2021-08-20 15:50:57', '2025-12-17 19:47:42', 'xAY1yRaA', '4378479'), - (57, 978, 'attending', '2021-08-21 20:04:14', '2025-12-17 19:47:42', 'xAY1yRaA', '4378509'), - (57, 986, 'attending', '2021-08-22 17:28:16', '2025-12-17 19:47:42', 'xAY1yRaA', '4394209'), - (57, 988, 'not_attending', '2021-08-27 20:48:57', '2025-12-17 19:47:42', 'xAY1yRaA', '4402823'), - (57, 990, 'attending', '2021-08-28 22:56:10', '2025-12-17 19:47:43', 'xAY1yRaA', '4420735'), - (57, 991, 'attending', '2021-08-28 22:56:13', '2025-12-17 19:47:43', 'xAY1yRaA', '4420738'), - (57, 992, 'attending', '2021-09-15 10:07:07', '2025-12-17 19:47:33', 'xAY1yRaA', '4420739'), - (57, 993, 'attending', '2021-09-24 22:00:34', '2025-12-17 19:47:34', 'xAY1yRaA', '4420741'), - (57, 994, 'attending', '2021-09-28 22:03:18', '2025-12-17 19:47:34', 'xAY1yRaA', '4420742'), - (57, 995, 'attending', '2021-10-09 09:06:58', '2025-12-17 19:47:34', 'xAY1yRaA', '4420744'), - (57, 996, 'attending', '2021-10-02 15:53:42', '2025-12-17 19:47:35', 'xAY1yRaA', '4420747'), - (57, 997, 'attending', '2021-10-11 09:50:17', '2025-12-17 19:47:35', 'xAY1yRaA', '4420748'), - (57, 998, 'attending', '2021-10-11 09:50:19', '2025-12-17 19:47:36', 'xAY1yRaA', '4420749'), - (57, 999, 'not_attending', '2021-08-31 14:29:18', '2025-12-17 19:47:43', 'xAY1yRaA', '4421150'), - (57, 1017, 'not_attending', '2021-09-06 20:11:47', '2025-12-17 19:47:43', 'xAY1yRaA', '4441822'), - (57, 1019, 'not_attending', '2021-09-16 21:54:43', '2025-12-17 19:47:43', 'xAY1yRaA', '4450515'), - (57, 1022, 'attending', '2021-09-15 22:01:29', '2025-12-17 19:47:43', 'xAY1yRaA', '4458628'), - (57, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'xAY1yRaA', '4461883'), - (57, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'xAY1yRaA', '4508342'), - (57, 1072, 'attending', '2021-10-06 20:13:38', '2025-12-17 19:47:34', 'xAY1yRaA', '4516287'), - (57, 1074, 'attending', '2021-09-29 09:28:40', '2025-12-17 19:47:34', 'xAY1yRaA', '4528953'), - (57, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'xAY1yRaA', '4568602'), - (57, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'xAY1yRaA', '4572153'), - (57, 1092, 'attending', '2021-10-21 19:51:45', '2025-12-17 19:47:35', 'xAY1yRaA', '4582837'), - (57, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xAY1yRaA', '4585962'), - (57, 1095, 'attending', '2021-10-27 21:05:25', '2025-12-17 19:47:35', 'xAY1yRaA', '4596356'), - (57, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xAY1yRaA', '4598860'), - (57, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xAY1yRaA', '4598861'), - (57, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'xAY1yRaA', '4602797'), - (57, 1114, 'attending', '2021-11-11 22:47:19', '2025-12-17 19:47:36', 'xAY1yRaA', '4637896'), - (57, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xAY1yRaA', '4642994'), - (57, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'xAY1yRaA', '4642995'), - (57, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xAY1yRaA', '4642996'), - (57, 1119, 'attending', '2021-12-19 16:58:56', '2025-12-17 19:47:31', 'xAY1yRaA', '4642997'), - (57, 1126, 'attending', '2021-12-11 20:30:55', '2025-12-17 19:47:38', 'xAY1yRaA', '4645687'), - (57, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xAY1yRaA', '4645698'), - (57, 1128, 'attending', '2021-11-18 00:22:29', '2025-12-17 19:47:37', 'xAY1yRaA', '4645704'), - (57, 1129, 'not_attending', '2021-11-27 22:17:34', '2025-12-17 19:47:37', 'xAY1yRaA', '4645705'), - (57, 1130, 'not_attending', '2021-12-04 22:10:05', '2025-12-17 19:47:37', 'xAY1yRaA', '4658824'), - (57, 1131, 'maybe', '2021-12-18 22:32:15', '2025-12-17 19:47:31', 'xAY1yRaA', '4658825'), - (57, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'xAY1yRaA', '4668385'), - (57, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'xAY1yRaA', '4694407'), - (57, 1151, 'attending', '2022-01-02 22:14:57', '2025-12-17 19:47:31', 'xAY1yRaA', '4708704'), - (57, 1173, 'attending', '2022-01-08 20:25:36', '2025-12-17 19:47:31', 'xAY1yRaA', '4736495'), - (57, 1174, 'attending', '2022-01-14 11:43:25', '2025-12-17 19:47:31', 'xAY1yRaA', '4736496'), - (57, 1175, 'attending', '2022-01-22 12:01:31', '2025-12-17 19:47:32', 'xAY1yRaA', '4736497'), - (57, 1176, 'attending', '2022-02-05 19:21:02', '2025-12-17 19:47:32', 'xAY1yRaA', '4736498'), - (57, 1177, 'attending', '2022-02-11 19:44:38', '2025-12-17 19:47:32', 'xAY1yRaA', '4736499'), - (57, 1178, 'attending', '2022-01-28 00:26:49', '2025-12-17 19:47:32', 'xAY1yRaA', '4736500'), - (57, 1181, 'not_attending', '2022-03-05 16:26:07', '2025-12-17 19:47:33', 'xAY1yRaA', '4736503'), - (57, 1182, 'attending', '2022-03-11 22:58:13', '2025-12-17 19:47:33', 'xAY1yRaA', '4736504'), - (57, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xAY1yRaA', '4746789'), - (57, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xAY1yRaA', '4753929'), - (57, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xAY1yRaA', '5038850'), - (57, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xAY1yRaA', '5045826'), - (57, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xAY1yRaA', '5132533'), - (57, 1272, 'maybe', '2022-03-17 20:54:38', '2025-12-17 19:47:25', 'xAY1yRaA', '5186582'), - (57, 1273, 'attending', '2022-03-25 20:20:43', '2025-12-17 19:47:25', 'xAY1yRaA', '5186583'), - (57, 1274, 'attending', '2022-04-02 18:20:49', '2025-12-17 19:47:26', 'xAY1yRaA', '5186585'), - (57, 1281, 'attending', '2022-04-06 20:19:41', '2025-12-17 19:47:27', 'xAY1yRaA', '5190437'), - (57, 1284, 'attending', '2022-04-16 10:59:30', '2025-12-17 19:47:27', 'xAY1yRaA', '5195095'), - (57, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xAY1yRaA', '5215989'), - (57, 1305, 'attending', '2022-04-10 22:33:52', '2025-12-17 19:47:27', 'xAY1yRaA', '5223673'), - (57, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'xAY1yRaA', '5223686'), - (57, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'xAY1yRaA', '5227432'), - (57, 1346, 'attending', '2022-04-20 20:37:46', '2025-12-17 19:47:27', 'xAY1yRaA', '5247467'), - (57, 1357, 'attending', '2022-04-25 19:53:06', '2025-12-17 19:47:27', 'xAY1yRaA', '5256017'), - (57, 1362, 'attending', '2022-04-25 19:52:52', '2025-12-17 19:47:28', 'xAY1yRaA', '5260800'), - (57, 1364, 'attending', '2022-05-03 20:26:12', '2025-12-17 19:47:28', 'xAY1yRaA', '5261598'), - (57, 1374, 'attending', '2022-05-03 20:23:45', '2025-12-17 19:47:28', 'xAY1yRaA', '5269930'), - (57, 1378, 'attending', '2022-05-07 16:59:37', '2025-12-17 19:47:28', 'xAY1yRaA', '5271448'), - (57, 1379, 'attending', '2022-05-18 20:31:54', '2025-12-17 19:47:29', 'xAY1yRaA', '5271449'), - (57, 1383, 'attending', '2022-05-13 21:04:32', '2025-12-17 19:47:28', 'xAY1yRaA', '5276469'), - (57, 1385, 'attending', '2022-05-11 22:45:50', '2025-12-17 19:47:28', 'xAY1yRaA', '5277822'), - (57, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'xAY1yRaA', '5278159'), - (57, 1401, 'attending', '2022-05-18 20:47:19', '2025-12-17 19:47:29', 'xAY1yRaA', '5286295'), - (57, 1407, 'attending', '2022-06-03 21:38:23', '2025-12-17 19:47:30', 'xAY1yRaA', '5363695'), - (57, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'xAY1yRaA', '5365960'), - (57, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'xAY1yRaA', '5368973'), - (57, 1423, 'attending', '2022-06-03 21:38:39', '2025-12-17 19:47:17', 'xAY1yRaA', '5375727'), - (57, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'xAY1yRaA', '5378247'), - (57, 1431, 'attending', '2022-06-03 21:38:28', '2025-12-17 19:47:30', 'xAY1yRaA', '5389605'), - (57, 1442, 'attending', '2022-06-03 21:38:30', '2025-12-17 19:47:17', 'xAY1yRaA', '5397265'), - (57, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'xAY1yRaA', '5403967'), - (57, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'xAY1yRaA', '5404786'), - (57, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'xAY1yRaA', '5405203'), - (57, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'xAY1yRaA', '5408794'), - (57, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'xAY1yRaA', '5411699'), - (57, 1482, 'attending', '2022-06-25 15:16:43', '2025-12-17 19:47:19', 'xAY1yRaA', '5412550'), - (57, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'xAY1yRaA', '5415046'), - (57, 1491, 'attending', '2022-07-08 20:09:13', '2025-12-17 19:47:19', 'xAY1yRaA', '5420158'), - (57, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'xAY1yRaA', '5422086'), - (57, 1498, 'attending', '2022-06-27 00:09:30', '2025-12-17 19:47:19', 'xAY1yRaA', '5422406'), - (57, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'xAY1yRaA', '5424565'), - (57, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'xAY1yRaA', '5426882'), - (57, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'xAY1yRaA', '5427083'), - (57, 1508, 'attending', '2022-07-02 20:48:12', '2025-12-17 19:47:19', 'xAY1yRaA', '5433453'), - (57, 1511, 'attending', '2022-07-08 20:09:17', '2025-12-17 19:47:19', 'xAY1yRaA', '5437733'), - (57, 1513, 'attending', '2022-07-09 09:20:42', '2025-12-17 19:47:19', 'xAY1yRaA', '5441125'), - (57, 1514, 'attending', '2022-07-09 09:27:40', '2025-12-17 19:47:20', 'xAY1yRaA', '5441126'), - (57, 1515, 'attending', '2022-08-06 18:28:45', '2025-12-17 19:47:21', 'xAY1yRaA', '5441128'), - (57, 1516, 'attending', '2022-08-19 09:23:43', '2025-12-17 19:47:23', 'xAY1yRaA', '5441129'), - (57, 1517, 'attending', '2022-08-19 09:23:44', '2025-12-17 19:47:23', 'xAY1yRaA', '5441130'), - (57, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'xAY1yRaA', '5441131'), - (57, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'xAY1yRaA', '5441132'), - (57, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'xAY1yRaA', '5446643'), - (57, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'xAY1yRaA', '5453325'), - (57, 1541, 'attending', '2022-07-25 20:31:02', '2025-12-17 19:47:20', 'xAY1yRaA', '5453542'), - (57, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'xAY1yRaA', '5454516'), - (57, 1544, 'maybe', '2022-09-11 15:34:54', '2025-12-17 19:47:11', 'xAY1yRaA', '5454517'), - (57, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'xAY1yRaA', '5454605'), - (57, 1551, 'attending', '2022-07-19 21:20:08', '2025-12-17 19:47:20', 'xAY1yRaA', '5455037'), - (57, 1557, 'attending', '2022-07-23 15:48:48', '2025-12-17 19:47:21', 'xAY1yRaA', '5458729'), - (57, 1558, 'attending', '2022-07-23 21:31:58', '2025-12-17 19:47:10', 'xAY1yRaA', '5458730'), - (57, 1559, 'attending', '2022-07-23 21:31:56', '2025-12-17 19:47:11', 'xAY1yRaA', '5458731'), - (57, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'xAY1yRaA', '5461278'), - (57, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'xAY1yRaA', '5469480'), - (57, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'xAY1yRaA', '5471073'), - (57, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'xAY1yRaA', '5474663'), - (57, 1569, 'attending', '2022-08-05 18:21:02', '2025-12-17 19:47:21', 'xAY1yRaA', '5481507'), - (57, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'xAY1yRaA', '5482022'), - (57, 1575, 'attending', '2022-08-26 16:14:34', '2025-12-17 19:47:23', 'xAY1yRaA', '5482250'), - (57, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'xAY1yRaA', '5482793'), - (57, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'xAY1yRaA', '5488912'), - (57, 1582, 'maybe', '2022-08-19 09:23:23', '2025-12-17 19:47:23', 'xAY1yRaA', '5492001'), - (57, 1584, 'not_attending', '2022-08-19 09:23:25', '2025-12-17 19:47:23', 'xAY1yRaA', '5492004'), - (57, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'xAY1yRaA', '5492192'), - (57, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'xAY1yRaA', '5493139'), - (57, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'xAY1yRaA', '5493200'), - (57, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'xAY1yRaA', '5502188'), - (57, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'xAY1yRaA', '5505059'), - (57, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'xAY1yRaA', '5509055'), - (57, 1618, 'attending', '2022-08-28 19:11:45', '2025-12-17 19:47:23', 'xAY1yRaA', '5512005'), - (57, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'xAY1yRaA', '5512862'), - (57, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'xAY1yRaA', '5513985'), - (57, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'xAY1yRaA', '5519981'), - (57, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'xAY1yRaA', '5522550'), - (57, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'xAY1yRaA', '5534683'), - (57, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'xAY1yRaA', '5537735'), - (57, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'xAY1yRaA', '5540859'), - (57, 1641, 'attending', '2022-09-01 22:04:20', '2025-12-17 19:47:24', 'xAY1yRaA', '5544226'), - (57, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'xAY1yRaA', '5546619'), - (57, 1648, 'attending', '2022-09-09 16:41:24', '2025-12-17 19:47:24', 'xAY1yRaA', '5548974'), - (57, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'xAY1yRaA', '5555245'), - (57, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'xAY1yRaA', '5557747'), - (57, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'xAY1yRaA', '5560255'), - (57, 1664, 'maybe', '2022-09-10 17:35:57', '2025-12-17 19:47:25', 'xAY1yRaA', '5562906'), - (57, 1667, 'attending', '2022-09-21 22:17:10', '2025-12-17 19:47:11', 'xAY1yRaA', '5563221'), - (57, 1668, 'attending', '2022-09-25 09:41:07', '2025-12-17 19:47:12', 'xAY1yRaA', '5563222'), - (57, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'xAY1yRaA', '5600604'), - (57, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'xAY1yRaA', '5605544'), - (57, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'xAY1yRaA', '5606737'), - (57, 1708, 'attending', '2022-10-01 15:52:19', '2025-12-17 19:47:12', 'xAY1yRaA', '5617648'), - (57, 1719, 'attending', '2022-10-06 20:50:20', '2025-12-17 19:47:12', 'xAY1yRaA', '5630958'), - (57, 1720, 'attending', '2022-10-07 23:50:54', '2025-12-17 19:47:12', 'xAY1yRaA', '5630959'), - (57, 1721, 'attending', '2022-10-07 23:50:56', '2025-12-17 19:47:13', 'xAY1yRaA', '5630960'), - (57, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'xAY1yRaA', '5630961'), - (57, 1723, 'not_attending', '2022-11-01 21:27:12', '2025-12-17 19:47:15', 'xAY1yRaA', '5630962'), - (57, 1724, 'attending', '2022-11-05 14:20:27', '2025-12-17 19:47:15', 'xAY1yRaA', '5630966'), - (57, 1725, 'attending', '2022-11-05 14:20:29', '2025-12-17 19:47:16', 'xAY1yRaA', '5630967'), - (57, 1726, 'attending', '2022-11-20 19:46:35', '2025-12-17 19:47:16', 'xAY1yRaA', '5630968'), - (57, 1727, 'attending', '2022-12-02 21:00:04', '2025-12-17 19:47:16', 'xAY1yRaA', '5630969'), - (57, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'xAY1yRaA', '5635406'), - (57, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'xAY1yRaA', '5638765'), - (57, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'xAY1yRaA', '5640097'), - (57, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'xAY1yRaA', '5640843'), - (57, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'xAY1yRaA', '5641521'), - (57, 1744, 'not_attending', '2022-11-23 21:29:02', '2025-12-17 19:47:16', 'xAY1yRaA', '5642818'), - (57, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'xAY1yRaA', '5652395'), - (57, 1761, 'attending', '2022-11-18 16:48:03', '2025-12-17 19:47:16', 'xAY1yRaA', '5670434'), - (57, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'xAY1yRaA', '5670445'), - (57, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'xAY1yRaA', '5671637'), - (57, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'xAY1yRaA', '5672329'), - (57, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'xAY1yRaA', '5674057'), - (57, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'xAY1yRaA', '5674060'), - (57, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'xAY1yRaA', '5677461'), - (57, 1776, 'attending', '2022-11-05 14:20:35', '2025-12-17 19:47:15', 'xAY1yRaA', '5691067'), - (57, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'xAY1yRaA', '5698046'), - (57, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'xAY1yRaA', '5699760'), - (57, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'xAY1yRaA', '5741601'), - (57, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'xAY1yRaA', '5763458'), - (57, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'xAY1yRaA', '5774172'), - (57, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'xAY1yRaA', '5818247'), - (57, 1834, 'attending', '2022-12-09 22:40:57', '2025-12-17 19:47:17', 'xAY1yRaA', '5819470'), - (57, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'xAY1yRaA', '5819471'), - (57, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'xAY1yRaA', '5827739'), - (57, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xAY1yRaA', '5844306'), - (57, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xAY1yRaA', '5850159'), - (57, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xAY1yRaA', '5858999'), - (57, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xAY1yRaA', '5871984'), - (57, 1859, 'attending', '2023-01-12 23:38:06', '2025-12-17 19:47:05', 'xAY1yRaA', '5876234'), - (57, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xAY1yRaA', '5876354'), - (57, 1864, 'attending', '2023-01-18 21:54:57', '2025-12-17 19:47:05', 'xAY1yRaA', '5879675'), - (57, 1865, 'attending', '2023-01-24 22:37:46', '2025-12-17 19:47:06', 'xAY1yRaA', '5879676'), - (57, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xAY1yRaA', '5880939'), - (57, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xAY1yRaA', '5880940'), - (57, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xAY1yRaA', '5880942'), - (57, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xAY1yRaA', '5880943'), - (57, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xAY1yRaA', '5887890'), - (57, 1875, 'attending', '2023-01-22 18:46:52', '2025-12-17 19:47:06', 'xAY1yRaA', '5887908'), - (57, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xAY1yRaA', '5888598'), - (57, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xAY1yRaA', '5893260'), - (57, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xAY1yRaA', '5899826'), - (57, 1885, 'attending', '2023-02-12 15:32:46', '2025-12-17 19:47:08', 'xAY1yRaA', '5899928'), - (57, 1886, 'attending', '2023-03-02 01:34:29', '2025-12-17 19:47:09', 'xAY1yRaA', '5899930'), - (57, 1888, 'attending', '2023-02-17 16:22:26', '2025-12-17 19:47:07', 'xAY1yRaA', '5900197'), - (57, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xAY1yRaA', '5900199'), - (57, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xAY1yRaA', '5900200'), - (57, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xAY1yRaA', '5900202'), - (57, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xAY1yRaA', '5900203'), - (57, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xAY1yRaA', '5901108'), - (57, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xAY1yRaA', '5901126'), - (57, 1897, 'attending', '2023-02-08 00:35:09', '2025-12-17 19:47:07', 'xAY1yRaA', '5901128'), - (57, 1899, 'maybe', '2023-02-08 00:35:38', '2025-12-17 19:47:07', 'xAY1yRaA', '5901323'), - (57, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xAY1yRaA', '5909655'), - (57, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xAY1yRaA', '5910522'), - (57, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xAY1yRaA', '5910526'), - (57, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xAY1yRaA', '5910528'), - (57, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xAY1yRaA', '5916219'), - (57, 1923, 'attending', '2023-02-16 23:46:18', '2025-12-17 19:47:07', 'xAY1yRaA', '5930436'), - (57, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xAY1yRaA', '5936234'), - (57, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xAY1yRaA', '5958351'), - (57, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xAY1yRaA', '5959751'), - (57, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xAY1yRaA', '5959755'), - (57, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xAY1yRaA', '5960055'), - (57, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xAY1yRaA', '5961684'), - (57, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'xAY1yRaA', '5962132'), - (57, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'xAY1yRaA', '5962133'), - (57, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xAY1yRaA', '5962134'), - (57, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xAY1yRaA', '5962317'), - (57, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xAY1yRaA', '5962318'), - (57, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'xAY1yRaA', '5965933'), - (57, 1953, 'attending', '2023-03-01 21:53:16', '2025-12-17 19:47:09', 'xAY1yRaA', '5966307'), - (57, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xAY1yRaA', '5967014'), - (57, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xAY1yRaA', '5972815'), - (57, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xAY1yRaA', '5974016'), - (57, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xAY1yRaA', '5981515'), - (57, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xAY1yRaA', '5993516'), - (57, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xAY1yRaA', '5998939'), - (57, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xAY1yRaA', '6028191'), - (57, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xAY1yRaA', '6040066'), - (57, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xAY1yRaA', '6042717'), - (57, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xAY1yRaA', '6044838'), - (57, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xAY1yRaA', '6044839'), - (57, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'xAY1yRaA', '6045684'), - (57, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xAY1yRaA', '6050104'), - (57, 1996, 'attending', '2023-04-02 21:57:05', '2025-12-17 19:46:58', 'xAY1yRaA', '6050667'), - (57, 2003, 'attending', '2023-05-14 17:31:11', '2025-12-17 19:47:03', 'xAY1yRaA', '6052606'), - (57, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xAY1yRaA', '6053195'), - (57, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xAY1yRaA', '6053198'), - (57, 2008, 'attending', '2023-04-07 21:52:39', '2025-12-17 19:46:58', 'xAY1yRaA', '6055808'), - (57, 2010, 'maybe', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xAY1yRaA', '6056085'), - (57, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xAY1yRaA', '6056916'), - (57, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xAY1yRaA', '6059290'), - (57, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xAY1yRaA', '6060328'), - (57, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xAY1yRaA', '6061037'), - (57, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xAY1yRaA', '6061039'), - (57, 2020, 'not_attending', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'xAY1yRaA', '6065813'), - (57, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xAY1yRaA', '6067245'), - (57, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xAY1yRaA', '6068094'), - (57, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xAY1yRaA', '6068252'), - (57, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xAY1yRaA', '6068253'), - (57, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xAY1yRaA', '6068254'), - (57, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'xAY1yRaA', '6068280'), - (57, 2032, 'attending', '2023-06-01 22:36:40', '2025-12-17 19:47:04', 'xAY1yRaA', '6068281'), - (57, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xAY1yRaA', '6069093'), - (57, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xAY1yRaA', '6072528'), - (57, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'xAY1yRaA', '6075556'), - (57, 2048, 'maybe', '2023-05-14 17:30:48', '2025-12-17 19:47:03', 'xAY1yRaA', '6076415'), - (57, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xAY1yRaA', '6079840'), - (57, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xAY1yRaA', '6083398'), - (57, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xAY1yRaA', '6093504'), - (57, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xAY1yRaA', '6097414'), - (57, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xAY1yRaA', '6097442'), - (57, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xAY1yRaA', '6097684'), - (57, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xAY1yRaA', '6098762'), - (57, 2064, 'attending', '2023-06-24 18:18:36', '2025-12-17 19:46:50', 'xAY1yRaA', '6099988'), - (57, 2065, 'not_attending', '2023-06-15 21:48:54', '2025-12-17 19:46:49', 'xAY1yRaA', '6101169'), - (57, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xAY1yRaA', '6101361'), - (57, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xAY1yRaA', '6101362'), - (57, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xAY1yRaA', '6107314'), - (57, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xAY1yRaA', '6120034'), - (57, 2091, 'attending', '2023-06-04 18:15:30', '2025-12-17 19:47:04', 'xAY1yRaA', '6130657'), - (57, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'xAY1yRaA', '6136733'), - (57, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xAY1yRaA', '6137989'), - (57, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xAY1yRaA', '6150864'), - (57, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xAY1yRaA', '6155491'), - (57, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xAY1yRaA', '6164417'), - (57, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xAY1yRaA', '6166388'), - (57, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xAY1yRaA', '6176439'), - (57, 2123, 'attending', '2023-06-29 21:13:35', '2025-12-17 19:46:50', 'xAY1yRaA', '6176502'), - (57, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xAY1yRaA', '6182410'), - (57, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xAY1yRaA', '6185812'), - (57, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xAY1yRaA', '6187651'), - (57, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xAY1yRaA', '6187963'), - (57, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xAY1yRaA', '6187964'), - (57, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xAY1yRaA', '6187966'), - (57, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xAY1yRaA', '6187967'), - (57, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xAY1yRaA', '6187969'), - (57, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xAY1yRaA', '6334878'), - (57, 2146, 'attending', '2023-07-14 08:57:02', '2025-12-17 19:46:53', 'xAY1yRaA', '6335638'), - (57, 2152, 'attending', '2023-07-13 20:14:10', '2025-12-17 19:46:52', 'xAY1yRaA', '6337021'), - (57, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xAY1yRaA', '6337236'), - (57, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xAY1yRaA', '6337970'), - (57, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xAY1yRaA', '6338308'), - (57, 2159, 'attending', '2023-07-16 17:26:41', '2025-12-17 19:46:53', 'xAY1yRaA', '6338355'), - (57, 2160, 'attending', '2023-07-16 17:26:43', '2025-12-17 19:46:54', 'xAY1yRaA', '6338358'), - (57, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xAY1yRaA', '6341710'), - (57, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xAY1yRaA', '6342044'), - (57, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xAY1yRaA', '6342298'), - (57, 2168, 'not_attending', '2023-07-17 20:14:56', '2025-12-17 19:46:52', 'xAY1yRaA', '6342302'), - (57, 2169, 'attending', '2023-07-24 19:55:41', '2025-12-17 19:46:53', 'xAY1yRaA', '6342306'), - (57, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xAY1yRaA', '6343294'), - (57, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xAY1yRaA', '6347034'), - (57, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xAY1yRaA', '6347056'), - (57, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xAY1yRaA', '6353830'), - (57, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xAY1yRaA', '6353831'), - (57, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xAY1yRaA', '6357867'), - (57, 2191, 'attending', '2023-08-03 21:49:01', '2025-12-17 19:46:54', 'xAY1yRaA', '6358652'), - (57, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'xAY1yRaA', '6358668'), - (57, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'xAY1yRaA', '6358669'), - (57, 2195, 'attending', '2023-08-25 13:45:16', '2025-12-17 19:46:55', 'xAY1yRaA', '6359397'), - (57, 2196, 'attending', '2023-09-03 14:09:19', '2025-12-17 19:46:56', 'xAY1yRaA', '6359398'), - (57, 2197, 'attending', '2023-09-09 19:35:44', '2025-12-17 19:46:44', 'xAY1yRaA', '6359399'), - (57, 2198, 'attending', '2023-09-21 20:41:50', '2025-12-17 19:46:45', 'xAY1yRaA', '6359400'), - (57, 2200, 'attending', '2023-08-09 20:54:25', '2025-12-17 19:46:55', 'xAY1yRaA', '6359850'), - (57, 2204, 'attending', '2023-08-12 12:21:24', '2025-12-17 19:46:55', 'xAY1yRaA', '6361542'), - (57, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xAY1yRaA', '6361709'), - (57, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xAY1yRaA', '6361710'), - (57, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xAY1yRaA', '6361711'), - (57, 2211, 'attending', '2023-08-12 12:21:20', '2025-12-17 19:46:55', 'xAY1yRaA', '6361712'), - (57, 2212, 'attending', '2023-09-23 09:38:52', '2025-12-17 19:46:45', 'xAY1yRaA', '6361713'), - (57, 2232, 'attending', '2023-08-23 20:23:04', '2025-12-17 19:46:55', 'xAY1yRaA', '6374818'), - (57, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'xAY1yRaA', '6382573'), - (57, 2239, 'attending', '2023-08-31 23:04:14', '2025-12-17 19:46:56', 'xAY1yRaA', '6387592'), - (57, 2240, 'attending', '2023-09-07 16:27:53', '2025-12-17 19:46:56', 'xAY1yRaA', '6388603'), - (57, 2241, 'attending', '2023-09-07 16:27:56', '2025-12-17 19:46:44', 'xAY1yRaA', '6388604'), - (57, 2242, 'attending', '2023-09-22 15:06:21', '2025-12-17 19:46:45', 'xAY1yRaA', '6388606'), - (57, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xAY1yRaA', '6394629'), - (57, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xAY1yRaA', '6394631'), - (57, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xAY1yRaA', '6440863'), - (57, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xAY1yRaA', '6445440'), - (57, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xAY1yRaA', '6453951'), - (57, 2284, 'attending', '2023-10-09 23:17:07', '2025-12-17 19:46:46', 'xAY1yRaA', '6460928'), - (57, 2285, 'attending', '2023-10-15 23:16:56', '2025-12-17 19:46:47', 'xAY1yRaA', '6460929'), - (57, 2286, 'attending', '2023-11-30 00:04:57', '2025-12-17 19:46:48', 'xAY1yRaA', '6460930'), - (57, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xAY1yRaA', '6461696'), - (57, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xAY1yRaA', '6462129'), - (57, 2291, 'attending', '2023-10-18 20:49:06', '2025-12-17 19:46:46', 'xAY1yRaA', '6462215'), - (57, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xAY1yRaA', '6463218'), - (57, 2299, 'attending', '2023-10-20 10:55:24', '2025-12-17 19:46:46', 'xAY1yRaA', '6472181'), - (57, 2303, 'attending', '2023-10-23 20:33:56', '2025-12-17 19:46:47', 'xAY1yRaA', '6482691'), - (57, 2304, 'attending', '2023-10-28 21:26:44', '2025-12-17 19:46:47', 'xAY1yRaA', '6482693'), - (57, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'xAY1yRaA', '6484200'), - (57, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xAY1yRaA', '6484680'), - (57, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xAY1yRaA', '6507741'), - (57, 2321, 'attending', '2023-11-02 20:53:41', '2025-12-17 19:46:47', 'xAY1yRaA', '6512075'), - (57, 2322, 'attending', '2023-11-05 12:40:37', '2025-12-17 19:46:48', 'xAY1yRaA', '6514659'), - (57, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xAY1yRaA', '6514660'), - (57, 2324, 'attending', '2023-12-09 21:46:53', '2025-12-17 19:46:49', 'xAY1yRaA', '6514662'), - (57, 2325, 'attending', '2023-12-09 21:46:59', '2025-12-17 19:46:36', 'xAY1yRaA', '6514663'), - (57, 2326, 'attending', '2023-11-05 15:27:10', '2025-12-17 19:46:48', 'xAY1yRaA', '6514805'), - (57, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xAY1yRaA', '6519103'), - (57, 2335, 'maybe', '2023-11-10 01:56:18', '2025-12-17 19:46:47', 'xAY1yRaA', '6534890'), - (57, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xAY1yRaA', '6535681'), - (57, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xAY1yRaA', '6584747'), - (57, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xAY1yRaA', '6587097'), - (57, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xAY1yRaA', '6609022'), - (57, 2364, 'attending', '2023-12-07 23:32:20', '2025-12-17 19:46:49', 'xAY1yRaA', '6613011'), - (57, 2371, 'attending', '2023-12-12 22:34:15', '2025-12-17 19:46:36', 'xAY1yRaA', '6624495'), - (57, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xAY1yRaA', '6632757'), - (57, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xAY1yRaA', '6644187'), - (57, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xAY1yRaA', '6648951'), - (57, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xAY1yRaA', '6648952'), - (57, 2388, 'attending', '2024-01-04 22:56:38', '2025-12-17 19:46:37', 'xAY1yRaA', '6649244'), - (57, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xAY1yRaA', '6655401'), - (57, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xAY1yRaA', '6661585'), - (57, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xAY1yRaA', '6661588'), - (57, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xAY1yRaA', '6661589'), - (57, 2406, 'attending', '2024-01-20 00:31:37', '2025-12-17 19:46:40', 'xAY1yRaA', '6692344'), - (57, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xAY1yRaA', '6699906'), - (57, 2408, 'attending', '2024-01-20 21:00:13', '2025-12-17 19:46:40', 'xAY1yRaA', '6699907'), - (57, 2409, 'attending', '2024-01-20 21:00:15', '2025-12-17 19:46:41', 'xAY1yRaA', '6699909'), - (57, 2410, 'attending', '2024-01-20 21:00:18', '2025-12-17 19:46:41', 'xAY1yRaA', '6699911'), - (57, 2411, 'attending', '2024-02-16 16:27:09', '2025-12-17 19:46:41', 'xAY1yRaA', '6699913'), - (57, 2412, 'not_attending', '2024-02-16 16:27:14', '2025-12-17 19:46:43', 'xAY1yRaA', '6700717'), - (57, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xAY1yRaA', '6701109'), - (57, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'xAY1yRaA', '6704561'), - (57, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xAY1yRaA', '6705219'), - (57, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'xAY1yRaA', '6708410'), - (57, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xAY1yRaA', '6710153'), - (57, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xAY1yRaA', '6711552'), - (57, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xAY1yRaA', '6711553'), - (57, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xAY1yRaA', '6722688'), - (57, 2438, 'attending', '2024-02-05 23:12:00', '2025-12-17 19:46:41', 'xAY1yRaA', '6730201'), - (57, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xAY1yRaA', '6730620'), - (57, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xAY1yRaA', '6730642'), - (57, 2446, 'attending', '2024-02-27 22:41:19', '2025-12-17 19:46:43', 'xAY1yRaA', '6734369'), - (57, 2447, 'attending', '2024-03-09 21:29:17', '2025-12-17 19:46:32', 'xAY1yRaA', '6734370'), - (57, 2448, 'attending', '2024-03-23 20:17:33', '2025-12-17 19:46:33', 'xAY1yRaA', '6734371'), - (57, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xAY1yRaA', '6740364'), - (57, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xAY1yRaA', '6743829'), - (57, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xAY1yRaA', '7030380'), - (57, 2471, 'attending', '2024-02-18 20:39:50', '2025-12-17 19:46:42', 'xAY1yRaA', '7032425'), - (57, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xAY1yRaA', '7033677'), - (57, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xAY1yRaA', '7035415'), - (57, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xAY1yRaA', '7044715'), - (57, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xAY1yRaA', '7050318'), - (57, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xAY1yRaA', '7050319'), - (57, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xAY1yRaA', '7050322'), - (57, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xAY1yRaA', '7057804'), - (57, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xAY1yRaA', '7072824'), - (57, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xAY1yRaA', '7074348'), - (57, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xAY1yRaA', '7074364'), - (57, 2526, 'attending', '2024-08-01 17:51:02', '2025-12-17 19:46:31', 'xAY1yRaA', '7074366'), - (57, 2535, 'attending', '2024-03-16 00:51:57', '2025-12-17 19:46:32', 'xAY1yRaA', '7076879'), - (57, 2537, 'attending', '2024-03-17 15:46:30', '2025-12-17 19:46:33', 'xAY1yRaA', '7085484'), - (57, 2538, 'attending', '2024-03-17 15:46:44', '2025-12-17 19:46:33', 'xAY1yRaA', '7085485'), - (57, 2539, 'attending', '2024-04-03 21:43:12', '2025-12-17 19:46:33', 'xAY1yRaA', '7085486'), - (57, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'xAY1yRaA', '7089267'), - (57, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xAY1yRaA', '7098747'), - (57, 2553, 'attending', '2024-03-29 18:47:38', '2025-12-17 19:46:33', 'xAY1yRaA', '7113468'), - (57, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xAY1yRaA', '7114856'), - (57, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xAY1yRaA', '7114951'), - (57, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xAY1yRaA', '7114955'), - (57, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xAY1yRaA', '7114956'), - (57, 2558, 'attending', '2024-04-26 22:10:39', '2025-12-17 19:46:35', 'xAY1yRaA', '7114957'), - (57, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xAY1yRaA', '7153615'), - (57, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xAY1yRaA', '7159484'), - (57, 2575, 'attending', '2024-04-11 20:17:43', '2025-12-17 19:46:33', 'xAY1yRaA', '7164534'), - (57, 2576, 'attending', '2024-04-25 20:03:54', '2025-12-17 19:46:34', 'xAY1yRaA', '7164538'), - (57, 2579, 'attending', '2024-04-11 20:16:09', '2025-12-17 19:46:33', 'xAY1yRaA', '7167020'), - (57, 2584, 'attending', '2024-04-18 19:52:58', '2025-12-17 19:46:34', 'xAY1yRaA', '7175057'), - (57, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xAY1yRaA', '7178446'), - (57, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'xAY1yRaA', '7220467'), - (57, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xAY1yRaA', '7240354'), - (57, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xAY1yRaA', '7251633'), - (57, 2626, 'attending', '2024-05-17 16:10:53', '2025-12-17 19:46:35', 'xAY1yRaA', '7264723'), - (57, 2627, 'attending', '2024-05-17 16:10:56', '2025-12-17 19:46:35', 'xAY1yRaA', '7264724'), - (57, 2628, 'attending', '2024-05-17 16:10:58', '2025-12-17 19:46:36', 'xAY1yRaA', '7264725'), - (57, 2629, 'attending', '2024-05-17 16:10:59', '2025-12-17 19:46:28', 'xAY1yRaA', '7264726'), - (57, 2630, 'attending', '2024-05-16 15:10:59', '2025-12-17 19:46:35', 'xAY1yRaA', '7264801'), - (57, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'xAY1yRaA', '7302674'), - (57, 2678, 'attending', '2024-06-14 18:44:43', '2025-12-17 19:46:28', 'xAY1yRaA', '7319489'), - (57, 2688, 'attending', '2024-06-14 18:44:55', '2025-12-17 19:46:29', 'xAY1yRaA', '7324073'), - (57, 2689, 'attending', '2024-06-14 18:44:57', '2025-12-17 19:46:29', 'xAY1yRaA', '7324074'), - (57, 2690, 'attending', '2024-07-01 08:31:38', '2025-12-17 19:46:30', 'xAY1yRaA', '7324075'), - (57, 2691, 'attending', '2024-07-01 08:31:39', '2025-12-17 19:46:30', 'xAY1yRaA', '7324076'), - (57, 2693, 'attending', '2024-07-01 08:31:42', '2025-12-17 19:46:31', 'xAY1yRaA', '7324078'), - (57, 2694, 'attending', '2024-07-01 08:31:44', '2025-12-17 19:46:31', 'xAY1yRaA', '7324079'), - (57, 2695, 'maybe', '2024-08-10 21:01:04', '2025-12-17 19:46:31', 'xAY1yRaA', '7324080'), - (57, 2696, 'attending', '2024-08-10 21:01:08', '2025-12-17 19:46:32', 'xAY1yRaA', '7324081'), - (57, 2697, 'attending', '2024-08-10 21:01:10', '2025-12-17 19:46:32', 'xAY1yRaA', '7324082'), - (57, 2712, 'attending', '2024-08-01 17:50:51', '2025-12-17 19:46:31', 'xAY1yRaA', '7326525'), - (57, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xAY1yRaA', '7331457'), - (57, 2723, 'attending', '2024-06-19 21:04:10', '2025-12-17 19:46:29', 'xAY1yRaA', '7332389'), - (57, 2740, 'not_attending', '2024-06-30 22:48:53', '2025-12-17 19:46:29', 'xAY1yRaA', '7344576'), - (57, 2742, 'attending', '2024-07-03 20:31:13', '2025-12-17 19:46:29', 'xAY1yRaA', '7345167'), - (57, 2743, 'not_attending', '2024-07-04 21:34:02', '2025-12-17 19:46:29', 'xAY1yRaA', '7345688'), - (57, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xAY1yRaA', '7363643'), - (57, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xAY1yRaA', '7368606'), - (57, 2796, 'attending', '2024-08-16 13:34:09', '2025-12-17 19:46:31', 'xAY1yRaA', '7391451'), - (57, 2800, 'attending', '2024-08-13 23:44:51', '2025-12-17 19:46:31', 'xAY1yRaA', '7397405'), - (57, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xAY1yRaA', '7397462'), - (57, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xAY1yRaA', '7424275'), - (57, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'xAY1yRaA', '7424276'), - (57, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xAY1yRaA', '7432751'), - (57, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xAY1yRaA', '7432752'), - (57, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xAY1yRaA', '7432753'), - (57, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xAY1yRaA', '7432754'), - (57, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xAY1yRaA', '7432755'), - (57, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xAY1yRaA', '7432756'), - (57, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xAY1yRaA', '7432758'), - (57, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xAY1yRaA', '7432759'), - (57, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xAY1yRaA', '7433834'), - (57, 2838, 'attending', '2024-09-14 21:09:09', '2025-12-17 19:46:25', 'xAY1yRaA', '7439182'), - (57, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'xAY1yRaA', '7470197'), - (57, 2865, 'attending', '2024-10-27 17:14:53', '2025-12-17 19:46:26', 'xAY1yRaA', '7471200'), - (57, 2867, 'attending', '2024-12-02 00:36:51', '2025-12-17 19:46:21', 'xAY1yRaA', '7471202'), - (57, 2886, 'attending', '2024-11-07 02:40:18', '2025-12-17 19:46:26', 'xAY1yRaA', '7654498'), - (57, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xAY1yRaA', '7685613'), - (57, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xAY1yRaA', '7688194'), - (57, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xAY1yRaA', '7688196'), - (57, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xAY1yRaA', '7688289'), - (57, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xAY1yRaA', '7692763'), - (57, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xAY1yRaA', '7697552'), - (57, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xAY1yRaA', '7699878'), - (57, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'xAY1yRaA', '7704043'), - (57, 2924, 'attending', '2024-11-26 22:00:03', '2025-12-17 19:46:28', 'xAY1yRaA', '7712467'), - (57, 2925, 'attending', '2024-12-02 00:36:44', '2025-12-17 19:46:21', 'xAY1yRaA', '7713584'), - (57, 2926, 'attending', '2024-12-02 00:36:42', '2025-12-17 19:46:21', 'xAY1yRaA', '7713585'), - (57, 2927, 'attending', '2024-12-02 00:36:46', '2025-12-17 19:46:22', 'xAY1yRaA', '7713586'), - (57, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xAY1yRaA', '7738518'), - (57, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', 'xAY1yRaA', '7750632'), - (57, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xAY1yRaA', '7750636'), - (57, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xAY1yRaA', '7796540'), - (57, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xAY1yRaA', '7796541'), - (57, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xAY1yRaA', '7796542'), - (57, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xAY1yRaA', '7825913'), - (57, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xAY1yRaA', '7826209'), - (57, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xAY1yRaA', '7834742'), - (57, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'xAY1yRaA', '7842108'), - (57, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xAY1yRaA', '7842902'), - (57, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xAY1yRaA', '7842903'), - (57, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xAY1yRaA', '7842904'), - (57, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xAY1yRaA', '7842905'), - (57, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xAY1yRaA', '7855719'), - (57, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xAY1yRaA', '7860683'), - (57, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xAY1yRaA', '7860684'), - (57, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xAY1yRaA', '7866095'), - (57, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xAY1yRaA', '7869170'), - (57, 3014, 'attending', '2025-04-05 14:06:33', '2025-12-17 19:46:20', 'xAY1yRaA', '7869185'), - (57, 3015, 'attending', '2025-04-05 14:06:39', '2025-12-17 19:46:20', 'xAY1yRaA', '7869186'), - (57, 3016, 'attending', '2025-04-05 14:06:38', '2025-12-17 19:46:20', 'xAY1yRaA', '7869187'), - (57, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xAY1yRaA', '7869188'), - (57, 3018, 'attending', '2025-04-05 14:06:36', '2025-12-17 19:46:20', 'xAY1yRaA', '7869189'), - (57, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xAY1yRaA', '7869201'), - (57, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xAY1yRaA', '7877465'), - (57, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xAY1yRaA', '7888250'), - (57, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xAY1yRaA', '7904777'), - (57, 3094, 'not_attending', '2025-04-21 21:51:15', '2025-12-17 19:46:21', 'xAY1yRaA', '8342292'), - (57, 3095, 'attending', '2025-04-21 21:51:13', '2025-12-17 19:46:20', 'xAY1yRaA', '8342293'), - (57, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xAY1yRaA', '8349164'), - (57, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xAY1yRaA', '8349545'), - (57, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'xAY1yRaA', '8353584'), - (57, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xAY1yRaA', '8368028'), - (57, 3132, 'attending', '2025-05-17 00:55:49', '2025-12-17 19:46:21', 'xAY1yRaA', '8368029'), - (57, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xAY1yRaA', '8388462'), - (57, 3150, 'not_attending', '2025-06-06 23:42:03', '2025-12-17 19:46:15', 'xAY1yRaA', '8393174'), - (57, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xAY1yRaA', '8400273'), - (57, 3154, 'attending', '2025-06-06 23:42:11', '2025-12-17 19:46:15', 'xAY1yRaA', '8400274'), - (57, 3155, 'not_attending', '2025-06-06 23:42:12', '2025-12-17 19:46:16', 'xAY1yRaA', '8400275'), - (57, 3156, 'attending', '2025-06-06 23:42:13', '2025-12-17 19:46:16', 'xAY1yRaA', '8400276'), - (57, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xAY1yRaA', '8404977'), - (57, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xAY1yRaA', '8430783'), - (57, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xAY1yRaA', '8430784'), - (57, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xAY1yRaA', '8430799'), - (57, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xAY1yRaA', '8430800'), - (57, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xAY1yRaA', '8430801'), - (57, 3188, 'attending', '2025-07-12 22:46:21', '2025-12-17 19:46:17', 'xAY1yRaA', '8438709'), - (57, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xAY1yRaA', '8457738'), - (57, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xAY1yRaA', '8459566'), - (57, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xAY1yRaA', '8459567'), - (57, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xAY1yRaA', '8461032'), - (57, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xAY1yRaA', '8477877'), - (57, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xAY1yRaA', '8485688'), - (57, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xAY1yRaA', '8490587'), - (57, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xAY1yRaA', '8493552'), - (57, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xAY1yRaA', '8493553'), - (57, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xAY1yRaA', '8493554'), - (57, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xAY1yRaA', '8493555'), - (57, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xAY1yRaA', '8493556'), - (57, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xAY1yRaA', '8493557'), - (57, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xAY1yRaA', '8493558'), - (57, 3243, 'maybe', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xAY1yRaA', '8493559'), - (57, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xAY1yRaA', '8493560'), - (57, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'xAY1yRaA', '8493561'), - (57, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xAY1yRaA', '8493572'), - (57, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAY1yRaA', '8540725'), - (57, 3295, 'not_attending', '2025-10-25 22:18:26', '2025-12-17 19:46:14', 'xAY1yRaA', '8547541'), - (57, 3300, 'attending', '2025-10-31 11:03:33', '2025-12-17 19:46:14', 'xAY1yRaA', '8549145'), - (57, 3302, 'attending', '2025-10-31 11:03:47', '2025-12-17 19:46:14', 'xAY1yRaA', '8550022'), - (57, 3304, 'attending', '2025-10-31 11:03:49', '2025-12-17 19:46:14', 'xAY1yRaA', '8550024'), - (57, 3306, 'attending', '2025-12-12 13:09:48', '2025-12-17 19:46:11', 'xAY1yRaA', '8550026'), - (57, 3307, 'attending', '2025-12-12 13:09:54', '2025-12-17 19:46:11', 'xAY1yRaA', '8550027'), - (57, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAY1yRaA', '8555421'), - (58, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GmjRr03m', '5441128'), - (58, 1516, 'attending', '2022-08-14 12:01:44', '2025-12-17 19:47:23', 'GmjRr03m', '5441129'), - (58, 1517, 'attending', '2022-08-22 16:57:00', '2025-12-17 19:47:23', 'GmjRr03m', '5441130'), - (58, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjRr03m', '5441131'), - (58, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjRr03m', '5441132'), - (58, 1544, 'attending', '2022-09-17 23:00:17', '2025-12-17 19:47:11', 'GmjRr03m', '5454517'), - (58, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjRr03m', '5461278'), - (58, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GmjRr03m', '5469480'), - (58, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'GmjRr03m', '5471073'), - (58, 1567, 'attending', '2022-08-03 19:15:16', '2025-12-17 19:47:21', 'GmjRr03m', '5477629'), - (58, 1575, 'attending', '2022-08-22 16:56:48', '2025-12-17 19:47:23', 'GmjRr03m', '5482250'), - (58, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'GmjRr03m', '5482793'), - (58, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjRr03m', '5488912'), - (58, 1582, 'attending', '2022-08-14 12:01:42', '2025-12-17 19:47:23', 'GmjRr03m', '5492001'), - (58, 1584, 'maybe', '2022-08-22 16:56:58', '2025-12-17 19:47:23', 'GmjRr03m', '5492004'), - (58, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjRr03m', '5492192'), - (58, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjRr03m', '5493139'), - (58, 1589, 'attending', '2022-08-14 12:02:04', '2025-12-17 19:47:23', 'GmjRr03m', '5493159'), - (58, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjRr03m', '5493200'), - (58, 1595, 'attending', '2022-08-12 19:44:10', '2025-12-17 19:47:22', 'GmjRr03m', '5495736'), - (58, 1598, 'attending', '2022-08-15 00:51:17', '2025-12-17 19:47:22', 'GmjRr03m', '5496567'), - (58, 1603, 'attending', '2022-08-16 21:13:27', '2025-12-17 19:47:23', 'GmjRr03m', '5497895'), - (58, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjRr03m', '5502188'), - (58, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjRr03m', '5505059'), - (58, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', 'GmjRr03m', '5509055'), - (58, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjRr03m', '5512862'), - (58, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjRr03m', '5513985'), - (58, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'GmjRr03m', '5519981'), - (58, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjRr03m', '5522550'), - (58, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjRr03m', '5534683'), - (58, 1635, 'maybe', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjRr03m', '5537735'), - (58, 1636, 'attending', '2022-09-01 19:34:17', '2025-12-17 19:47:24', 'GmjRr03m', '5538454'), - (58, 1640, 'maybe', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjRr03m', '5540859'), - (58, 1641, 'attending', '2022-09-01 19:34:06', '2025-12-17 19:47:24', 'GmjRr03m', '5544226'), - (58, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjRr03m', '5546619'), - (58, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GmjRr03m', '5555245'), - (58, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjRr03m', '5557747'), - (58, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjRr03m', '5560255'), - (58, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjRr03m', '5562906'), - (58, 1667, 'maybe', '2022-09-24 19:24:23', '2025-12-17 19:47:11', 'GmjRr03m', '5563221'), - (58, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjRr03m', '5600604'), - (58, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjRr03m', '5605544'), - (58, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', 'GmjRr03m', '5606737'), - (58, 1707, 'attending', '2022-10-11 18:00:11', '2025-12-17 19:47:12', 'GmjRr03m', '5613104'), - (58, 1712, 'attending', '2022-10-11 18:00:07', '2025-12-17 19:47:12', 'GmjRr03m', '5622073'), - (58, 1714, 'maybe', '2022-10-26 19:50:52', '2025-12-17 19:47:14', 'GmjRr03m', '5622347'), - (58, 1717, 'attending', '2022-10-18 01:21:02', '2025-12-17 19:47:13', 'GmjRr03m', '5622842'), - (58, 1720, 'attending', '2022-10-12 15:35:14', '2025-12-17 19:47:12', 'GmjRr03m', '5630959'), - (58, 1721, 'attending', '2022-10-17 13:11:16', '2025-12-17 19:47:13', 'GmjRr03m', '5630960'), - (58, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjRr03m', '5630961'), - (58, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjRr03m', '5630962'), - (58, 1724, 'attending', '2022-11-06 23:30:38', '2025-12-17 19:47:15', 'GmjRr03m', '5630966'), - (58, 1725, 'attending', '2022-11-06 23:30:58', '2025-12-17 19:47:16', 'GmjRr03m', '5630967'), - (58, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjRr03m', '5630968'), - (58, 1727, 'attending', '2022-11-29 21:21:49', '2025-12-17 19:47:16', 'GmjRr03m', '5630969'), - (58, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjRr03m', '5635406'), - (58, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjRr03m', '5638765'), - (58, 1739, 'attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjRr03m', '5640097'), - (58, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjRr03m', '5640843'), - (58, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjRr03m', '5641521'), - (58, 1744, 'attending', '2022-11-23 00:49:09', '2025-12-17 19:47:16', 'GmjRr03m', '5642818'), - (58, 1751, 'attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjRr03m', '5652395'), - (58, 1761, 'attending', '2022-11-14 18:56:50', '2025-12-17 19:47:16', 'GmjRr03m', '5670434'), - (58, 1762, 'attending', '2022-11-29 21:21:40', '2025-12-17 19:47:16', 'GmjRr03m', '5670445'), - (58, 1763, 'attending', '2022-11-06 23:30:22', '2025-12-17 19:47:15', 'GmjRr03m', '5670803'), - (58, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjRr03m', '5671637'), - (58, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjRr03m', '5672329'), - (58, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjRr03m', '5674057'), - (58, 1767, 'attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjRr03m', '5674060'), - (58, 1770, 'attending', '2022-10-28 15:37:20', '2025-12-17 19:47:14', 'GmjRr03m', '5676936'), - (58, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GmjRr03m', '5677461'), - (58, 1776, 'attending', '2022-11-10 00:43:37', '2025-12-17 19:47:15', 'GmjRr03m', '5691067'), - (58, 1780, 'attending', '2022-11-06 23:30:16', '2025-12-17 19:47:15', 'GmjRr03m', '5696082'), - (58, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjRr03m', '5698046'), - (58, 1784, 'attending', '2022-11-06 23:30:47', '2025-12-17 19:47:15', 'GmjRr03m', '5699760'), - (58, 1793, 'maybe', '2022-11-25 21:58:17', '2025-12-17 19:47:16', 'GmjRr03m', '5736365'), - (58, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjRr03m', '5741601'), - (58, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjRr03m', '5763458'), - (58, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjRr03m', '5774172'), - (58, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'GmjRr03m', '5818247'), - (58, 1834, 'maybe', '2022-12-10 17:59:50', '2025-12-17 19:47:17', 'GmjRr03m', '5819470'), - (58, 1835, 'maybe', '2023-01-06 02:56:05', '2025-12-17 19:47:05', 'GmjRr03m', '5819471'), - (58, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GmjRr03m', '5827739'), - (58, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjRr03m', '5844306'), - (58, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjRr03m', '5850159'), - (58, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjRr03m', '5858999'), - (58, 1851, 'maybe', '2023-01-08 23:20:37', '2025-12-17 19:47:05', 'GmjRr03m', '5869316'), - (58, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjRr03m', '5871984'), - (58, 1859, 'attending', '2023-01-20 20:16:52', '2025-12-17 19:47:05', 'GmjRr03m', '5876234'), - (58, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjRr03m', '5876354'), - (58, 1864, 'attending', '2023-01-20 20:17:08', '2025-12-17 19:47:05', 'GmjRr03m', '5879675'), - (58, 1865, 'attending', '2023-01-28 00:16:15', '2025-12-17 19:47:06', 'GmjRr03m', '5879676'), - (58, 1866, 'maybe', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjRr03m', '5880939'), - (58, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjRr03m', '5880940'), - (58, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GmjRr03m', '5880942'), - (58, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjRr03m', '5880943'), - (58, 1872, 'maybe', '2023-01-20 23:59:52', '2025-12-17 19:47:05', 'GmjRr03m', '5883546'), - (58, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjRr03m', '5887890'), - (58, 1875, 'attending', '2023-01-23 19:33:04', '2025-12-17 19:47:06', 'GmjRr03m', '5887908'), - (58, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjRr03m', '5888598'), - (58, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjRr03m', '5893260'), - (58, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjRr03m', '5899826'), - (58, 1885, 'attending', '2023-02-23 23:33:56', '2025-12-17 19:47:08', 'GmjRr03m', '5899928'), - (58, 1888, 'attending', '2023-02-17 15:39:57', '2025-12-17 19:47:07', 'GmjRr03m', '5900197'), - (58, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjRr03m', '5900199'), - (58, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjRr03m', '5900200'), - (58, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjRr03m', '5900202'), - (58, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjRr03m', '5900203'), - (58, 1895, 'maybe', '2023-01-31 21:46:41', '2025-12-17 19:47:06', 'GmjRr03m', '5901108'), - (58, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjRr03m', '5901126'), - (58, 1897, 'attending', '2023-02-11 16:28:26', '2025-12-17 19:47:07', 'GmjRr03m', '5901128'), - (58, 1899, 'maybe', '2023-02-11 00:14:55', '2025-12-17 19:47:07', 'GmjRr03m', '5901323'), - (58, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjRr03m', '5909655'), - (58, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjRr03m', '5910522'), - (58, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjRr03m', '5910526'), - (58, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjRr03m', '5910528'), - (58, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjRr03m', '5916219'), - (58, 1924, 'maybe', '2023-02-17 15:40:05', '2025-12-17 19:47:07', 'GmjRr03m', '5931095'), - (58, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GmjRr03m', '5936234'), - (58, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjRr03m', '5958351'), - (58, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjRr03m', '5959751'), - (58, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjRr03m', '5959755'), - (58, 1940, 'attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjRr03m', '5960055'), - (58, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjRr03m', '5961684'), - (58, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'GmjRr03m', '5962132'), - (58, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GmjRr03m', '5962133'), - (58, 1946, 'maybe', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjRr03m', '5962134'), - (58, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjRr03m', '5962317'), - (58, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjRr03m', '5962318'), - (58, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'GmjRr03m', '5965933'), - (58, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjRr03m', '5967014'), - (58, 1955, 'maybe', '2023-03-29 22:52:53', '2025-12-17 19:46:57', 'GmjRr03m', '5972529'), - (58, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjRr03m', '5972815'), - (58, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjRr03m', '5974016'), - (58, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjRr03m', '5981515'), - (58, 1968, 'maybe', '2023-03-12 23:14:58', '2025-12-17 19:47:10', 'GmjRr03m', '5993515'), - (58, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjRr03m', '5993516'), - (58, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjRr03m', '5998939'), - (58, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjRr03m', '6028191'), - (58, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjRr03m', '6040066'), - (58, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjRr03m', '6042717'), - (58, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjRr03m', '6044838'), - (58, 1987, 'maybe', '2023-04-15 14:56:22', '2025-12-17 19:47:00', 'GmjRr03m', '6044839'), - (58, 1988, 'attending', '2023-04-15 14:56:24', '2025-12-17 19:47:01', 'GmjRr03m', '6044840'), - (58, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjRr03m', '6045684'), - (58, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjRr03m', '6050104'), - (58, 1998, 'attending', '2023-04-08 18:19:30', '2025-12-17 19:46:59', 'GmjRr03m', '6052056'), - (58, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjRr03m', '6053195'), - (58, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjRr03m', '6053198'), - (58, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjRr03m', '6056085'), - (58, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjRr03m', '6056916'), - (58, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjRr03m', '6059290'), - (58, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjRr03m', '6060328'), - (58, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjRr03m', '6061037'), - (58, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjRr03m', '6061039'), - (58, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjRr03m', '6067245'), - (58, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjRr03m', '6068094'), - (58, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjRr03m', '6068252'), - (58, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjRr03m', '6068253'), - (58, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjRr03m', '6068254'), - (58, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'GmjRr03m', '6068280'), - (58, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjRr03m', '6069093'), - (58, 2038, 'maybe', '2023-04-28 18:24:46', '2025-12-17 19:47:01', 'GmjRr03m', '6071944'), - (58, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'GmjRr03m', '6072528'), - (58, 2046, 'maybe', '2023-05-12 19:10:29', '2025-12-17 19:47:02', 'GmjRr03m', '6076020'), - (58, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjRr03m', '6079840'), - (58, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjRr03m', '6083398'), - (58, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GmjRr03m', '6093504'), - (58, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjRr03m', '6097414'), - (58, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjRr03m', '6097442'), - (58, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjRr03m', '6097684'), - (58, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjRr03m', '6098762'), - (58, 2065, 'attending', '2023-06-16 03:33:31', '2025-12-17 19:46:49', 'GmjRr03m', '6101169'), - (58, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjRr03m', '6101361'), - (58, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjRr03m', '6101362'), - (58, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'GmjRr03m', '6103752'), - (58, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjRr03m', '6107314'), - (58, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GmjRr03m', '6120034'), - (58, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'GmjRr03m', '6136733'), - (58, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjRr03m', '6137989'), - (58, 2102, 'attending', '2023-06-16 03:33:38', '2025-12-17 19:46:50', 'GmjRr03m', '6146559'), - (58, 2104, 'maybe', '2023-06-22 22:07:32', '2025-12-17 19:46:50', 'GmjRr03m', '6149499'), - (58, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjRr03m', '6150864'), - (58, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjRr03m', '6155491'), - (58, 2116, 'maybe', '2023-07-05 20:33:03', '2025-12-17 19:46:51', 'GmjRr03m', '6163389'), - (58, 2118, 'maybe', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjRr03m', '6164417'), - (58, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjRr03m', '6166388'), - (58, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjRr03m', '6176439'), - (58, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'GmjRr03m', '6182410'), - (58, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjRr03m', '6185812'), - (58, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjRr03m', '6187651'), - (58, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjRr03m', '6187963'), - (58, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjRr03m', '6187964'), - (58, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjRr03m', '6187966'), - (58, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjRr03m', '6187967'), - (58, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjRr03m', '6187969'), - (58, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjRr03m', '6334878'), - (58, 2146, 'maybe', '2023-07-09 21:35:00', '2025-12-17 19:46:53', 'GmjRr03m', '6335638'), - (58, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjRr03m', '6337236'), - (58, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjRr03m', '6337970'), - (58, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjRr03m', '6338308'), - (58, 2159, 'attending', '2023-07-16 20:43:18', '2025-12-17 19:46:53', 'GmjRr03m', '6338355'), - (58, 2160, 'attending', '2023-07-29 22:36:54', '2025-12-17 19:46:54', 'GmjRr03m', '6338358'), - (58, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'GmjRr03m', '6340845'), - (58, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjRr03m', '6341710'), - (58, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjRr03m', '6342044'), - (58, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjRr03m', '6342298'), - (58, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'GmjRr03m', '6343294'), - (58, 2176, 'maybe', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjRr03m', '6347034'), - (58, 2177, 'maybe', '2023-08-12 19:50:27', '2025-12-17 19:46:55', 'GmjRr03m', '6347053'), - (58, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjRr03m', '6347056'), - (58, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjRr03m', '6353830'), - (58, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjRr03m', '6353831'), - (58, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjRr03m', '6357867'), - (58, 2191, 'maybe', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjRr03m', '6358652'), - (58, 2197, 'maybe', '2023-09-15 14:00:03', '2025-12-17 19:46:44', 'GmjRr03m', '6359399'), - (58, 2198, 'attending', '2023-09-22 14:17:29', '2025-12-17 19:46:45', 'GmjRr03m', '6359400'), - (58, 2199, 'maybe', '2023-08-16 22:55:17', '2025-12-17 19:46:55', 'GmjRr03m', '6359849'), - (58, 2200, 'maybe', '2023-08-10 00:41:59', '2025-12-17 19:46:55', 'GmjRr03m', '6359850'), - (58, 2201, 'attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'GmjRr03m', '6359940'), - (58, 2204, 'attending', '2023-08-18 12:36:45', '2025-12-17 19:46:55', 'GmjRr03m', '6361542'), - (58, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjRr03m', '6361709'), - (58, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjRr03m', '6361710'), - (58, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjRr03m', '6361711'), - (58, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjRr03m', '6361712'), - (58, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjRr03m', '6361713'), - (58, 2232, 'attending', '2023-08-23 22:27:55', '2025-12-17 19:46:55', 'GmjRr03m', '6374818'), - (58, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GmjRr03m', '6382573'), - (58, 2239, 'attending', '2023-09-02 15:48:05', '2025-12-17 19:46:56', 'GmjRr03m', '6387592'), - (58, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'GmjRr03m', '6388604'), - (58, 2242, 'attending', '2023-09-18 20:01:52', '2025-12-17 19:46:45', 'GmjRr03m', '6388606'), - (58, 2244, 'maybe', '2023-09-11 23:28:52', '2025-12-17 19:46:44', 'GmjRr03m', '6393700'), - (58, 2248, 'maybe', '2023-09-11 23:28:34', '2025-12-17 19:46:44', 'GmjRr03m', '6394629'), - (58, 2249, 'maybe', '2023-09-20 00:28:12', '2025-12-17 19:46:45', 'GmjRr03m', '6394630'), - (58, 2250, 'maybe', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjRr03m', '6394631'), - (58, 2253, 'not_attending', '2023-09-25 20:56:02', '2025-12-17 19:46:45', 'GmjRr03m', '6401811'), - (58, 2259, 'maybe', '2023-09-22 14:22:28', '2025-12-17 19:46:45', 'GmjRr03m', '6421257'), - (58, 2261, 'maybe', '2023-09-28 21:10:33', '2025-12-17 19:46:45', 'GmjRr03m', '6427422'), - (58, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjRr03m', '6440863'), - (58, 2269, 'maybe', '2023-10-02 18:39:09', '2025-12-17 19:46:45', 'GmjRr03m', '6442978'), - (58, 2270, 'attending', '2023-10-10 22:43:29', '2025-12-17 19:46:46', 'GmjRr03m', '6443067'), - (58, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjRr03m', '6445440'), - (58, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjRr03m', '6453951'), - (58, 2285, 'not_attending', '2023-10-19 20:09:13', '2025-12-17 19:46:47', 'GmjRr03m', '6460929'), - (58, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjRr03m', '6461696'), - (58, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjRr03m', '6462129'), - (58, 2291, 'maybe', '2023-10-19 00:01:35', '2025-12-17 19:46:46', 'GmjRr03m', '6462215'), - (58, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjRr03m', '6463218'), - (58, 2299, 'maybe', '2023-10-19 00:01:31', '2025-12-17 19:46:46', 'GmjRr03m', '6472181'), - (58, 2302, 'not_attending', '2023-10-24 23:04:49', '2025-12-17 19:46:46', 'GmjRr03m', '6482535'), - (58, 2303, 'not_attending', '2023-10-24 23:05:08', '2025-12-17 19:46:47', 'GmjRr03m', '6482691'), - (58, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjRr03m', '6482693'), - (58, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'GmjRr03m', '6484200'), - (58, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'GmjRr03m', '6484680'), - (58, 2310, 'attending', '2023-11-08 01:07:40', '2025-12-17 19:46:47', 'GmjRr03m', '6487709'), - (58, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjRr03m', '6507741'), - (58, 2318, 'attending', '2023-10-31 22:55:41', '2025-12-17 19:46:47', 'GmjRr03m', '6508566'), - (58, 2322, 'attending', '2023-11-12 16:29:44', '2025-12-17 19:46:48', 'GmjRr03m', '6514659'), - (58, 2323, 'attending', '2023-11-27 17:40:28', '2025-12-17 19:46:48', 'GmjRr03m', '6514660'), - (58, 2324, 'attending', '2023-12-04 23:52:59', '2025-12-17 19:46:49', 'GmjRr03m', '6514662'), - (58, 2325, 'attending', '2023-12-14 00:22:45', '2025-12-17 19:46:36', 'GmjRr03m', '6514663'), - (58, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjRr03m', '6519103'), - (58, 2335, 'attending', '2023-11-11 00:54:17', '2025-12-17 19:46:47', 'GmjRr03m', '6534890'), - (58, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjRr03m', '6535681'), - (58, 2338, 'maybe', '2023-11-15 22:18:55', '2025-12-17 19:46:48', 'GmjRr03m', '6538868'), - (58, 2340, 'maybe', '2023-11-21 20:12:44', '2025-12-17 19:46:48', 'GmjRr03m', '6540279'), - (58, 2343, 'maybe', '2023-11-19 16:57:25', '2025-12-17 19:46:48', 'GmjRr03m', '6574728'), - (58, 2345, 'maybe', '2023-11-29 22:12:28', '2025-12-17 19:46:48', 'GmjRr03m', '6582414'), - (58, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjRr03m', '6584747'), - (58, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjRr03m', '6587097'), - (58, 2362, 'maybe', '2023-12-04 23:52:56', '2025-12-17 19:46:49', 'GmjRr03m', '6605708'), - (58, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjRr03m', '6609022'), - (58, 2365, 'maybe', '2023-12-23 15:59:33', '2025-12-17 19:46:37', 'GmjRr03m', '6613093'), - (58, 2371, 'maybe', '2023-12-14 00:22:41', '2025-12-17 19:46:36', 'GmjRr03m', '6624495'), - (58, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GmjRr03m', '6632757'), - (58, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjRr03m', '6644187'), - (58, 2381, 'maybe', '2024-01-01 19:18:13', '2025-12-17 19:46:37', 'GmjRr03m', '6646398'), - (58, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjRr03m', '6648951'), - (58, 2387, 'attending', '2024-01-04 00:59:26', '2025-12-17 19:46:37', 'GmjRr03m', '6648952'), - (58, 2388, 'maybe', '2024-01-05 20:22:46', '2025-12-17 19:46:37', 'GmjRr03m', '6649244'), - (58, 2392, 'attending', '2024-01-09 21:13:32', '2025-12-17 19:46:37', 'GmjRr03m', '6654412'), - (58, 2394, 'not_attending', '2024-01-15 22:14:10', '2025-12-17 19:46:38', 'GmjRr03m', '6654470'), - (58, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjRr03m', '6655401'), - (58, 2399, 'attending', '2024-01-08 23:26:02', '2025-12-17 19:46:37', 'GmjRr03m', '6657583'), - (58, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjRr03m', '6661585'), - (58, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjRr03m', '6661588'), - (58, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjRr03m', '6661589'), - (58, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjRr03m', '6699906'), - (58, 2408, 'attending', '2024-01-22 02:48:36', '2025-12-17 19:46:40', 'GmjRr03m', '6699907'), - (58, 2409, 'not_attending', '2024-02-01 00:19:32', '2025-12-17 19:46:41', 'GmjRr03m', '6699909'), - (58, 2411, 'attending', '2024-02-15 18:22:43', '2025-12-17 19:46:41', 'GmjRr03m', '6699913'), - (58, 2412, 'attending', '2024-02-20 02:41:56', '2025-12-17 19:46:43', 'GmjRr03m', '6700717'), - (58, 2415, 'maybe', '2024-01-20 23:15:30', '2025-12-17 19:46:40', 'GmjRr03m', '6701001'), - (58, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjRr03m', '6701109'), - (58, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjRr03m', '6705219'), - (58, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjRr03m', '6710153'), - (58, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjRr03m', '6711552'), - (58, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GmjRr03m', '6711553'), - (58, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjRr03m', '6722688'), - (58, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjRr03m', '6730620'), - (58, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'GmjRr03m', '6730642'), - (58, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjRr03m', '6740364'), - (58, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjRr03m', '6743829'), - (58, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjRr03m', '7030380'), - (58, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GmjRr03m', '7033677'), - (58, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'GmjRr03m', '7035415'), - (58, 2475, 'attending', '2024-02-27 01:02:19', '2025-12-17 19:46:43', 'GmjRr03m', '7035643'), - (58, 2478, 'maybe', '2024-02-21 00:19:47', '2025-12-17 19:46:43', 'GmjRr03m', '7036478'), - (58, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjRr03m', '7044715'), - (58, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjRr03m', '7050318'), - (58, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjRr03m', '7050319'), - (58, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjRr03m', '7050322'), - (58, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjRr03m', '7057804'), - (58, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'GmjRr03m', '7059866'), - (58, 2506, 'attending', '2024-03-09 20:10:00', '2025-12-17 19:46:44', 'GmjRr03m', '7069242'), - (58, 2507, 'attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjRr03m', '7072824'), - (58, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjRr03m', '7074348'), - (58, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GmjRr03m', '7074364'), - (58, 2537, 'maybe', '2024-03-22 19:07:36', '2025-12-17 19:46:33', 'GmjRr03m', '7085484'), - (58, 2539, 'maybe', '2024-04-06 22:05:06', '2025-12-17 19:46:33', 'GmjRr03m', '7085486'), - (58, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'GmjRr03m', '7089267'), - (58, 2541, 'attending', '2024-03-18 19:14:49', '2025-12-17 19:46:33', 'GmjRr03m', '7089404'), - (58, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjRr03m', '7098747'), - (58, 2553, 'maybe', '2024-03-29 13:05:46', '2025-12-17 19:46:33', 'GmjRr03m', '7113468'), - (58, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjRr03m', '7114856'), - (58, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjRr03m', '7114951'), - (58, 2556, 'maybe', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjRr03m', '7114955'), - (58, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjRr03m', '7114956'), - (58, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GmjRr03m', '7114957'), - (58, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'GmjRr03m', '7153615'), - (58, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjRr03m', '7159484'), - (58, 2572, 'maybe', '2024-04-13 01:12:24', '2025-12-17 19:46:33', 'GmjRr03m', '7159522'), - (58, 2573, 'maybe', '2024-04-14 21:06:26', '2025-12-17 19:46:34', 'GmjRr03m', '7160612'), - (58, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjRr03m', '7178446'), - (58, 2596, 'not_attending', '2024-04-26 04:48:05', '2025-12-17 19:46:34', 'GmjRr03m', '7183788'), - (58, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'GmjRr03m', '7220467'), - (58, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjRr03m', '7240354'), - (58, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjRr03m', '7251633'), - (58, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'GmjRr03m', '7263048'), - (58, 2626, 'maybe', '2024-05-16 23:15:39', '2025-12-17 19:46:35', 'GmjRr03m', '7264723'), - (58, 2644, 'maybe', '2024-05-20 20:00:36', '2025-12-17 19:46:35', 'GmjRr03m', '7279039'), - (58, 2646, 'attending', '2024-05-20 20:00:49', '2025-12-17 19:46:35', 'GmjRr03m', '7281768'), - (58, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'GmjRr03m', '7302674'), - (58, 2666, 'attending', '2024-06-06 02:13:26', '2025-12-17 19:46:36', 'GmjRr03m', '7307775'), - (58, 2678, 'maybe', '2024-06-11 22:18:36', '2025-12-17 19:46:28', 'GmjRr03m', '7319489'), - (58, 2682, 'attending', '2024-06-10 22:33:34', '2025-12-17 19:46:28', 'GmjRr03m', '7321862'), - (58, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjRr03m', '7324073'), - (58, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjRr03m', '7324074'), - (58, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GmjRr03m', '7324075'), - (58, 2692, 'maybe', '2024-07-27 11:39:31', '2025-12-17 19:46:30', 'GmjRr03m', '7324077'), - (58, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GmjRr03m', '7324078'), - (58, 2694, 'not_attending', '2024-08-09 18:56:06', '2025-12-17 19:46:31', 'GmjRr03m', '7324079'), - (58, 2695, 'maybe', '2024-08-17 22:13:00', '2025-12-17 19:46:32', 'GmjRr03m', '7324080'), - (58, 2696, 'attending', '2024-08-23 02:31:34', '2025-12-17 19:46:32', 'GmjRr03m', '7324081'), - (58, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GmjRr03m', '7324082'), - (58, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GmjRr03m', '7331457'), - (58, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'GmjRr03m', '7356752'), - (58, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'GmjRr03m', '7363643'), - (58, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GmjRr03m', '7368606'), - (58, 2783, 'attending', '2024-08-03 15:37:52', '2025-12-17 19:46:31', 'GmjRr03m', '7379699'), - (58, 2801, 'maybe', '2024-08-19 20:53:17', '2025-12-17 19:46:32', 'GmjRr03m', '7397462'), - (58, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GmjRr03m', '7424275'), - (58, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'GmjRr03m', '7424276'), - (58, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GmjRr03m', '7432751'), - (58, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GmjRr03m', '7432752'), - (58, 2826, 'maybe', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GmjRr03m', '7432753'), - (58, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GmjRr03m', '7432754'), - (58, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GmjRr03m', '7432755'), - (58, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GmjRr03m', '7432756'), - (58, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GmjRr03m', '7432758'), - (58, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GmjRr03m', '7432759'), - (58, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GmjRr03m', '7433834'), - (58, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GmjRr03m', '7470197'), - (58, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GmjRr03m', '7685613'), - (58, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GmjRr03m', '7688194'), - (58, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GmjRr03m', '7688196'), - (58, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GmjRr03m', '7688289'), - (58, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'GmjRr03m', '7692763'), - (58, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GmjRr03m', '7697552'), - (58, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GmjRr03m', '7699878'), - (58, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GmjRr03m', '7704043'), - (58, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GmjRr03m', '7712467'), - (58, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GmjRr03m', '7713585'), - (58, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GmjRr03m', '7713586'), - (58, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GmjRr03m', '7738518'), - (58, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GmjRr03m', '7750636'), - (58, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GmjRr03m', '7796540'), - (58, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GmjRr03m', '7796541'), - (58, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GmjRr03m', '7796542'), - (58, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GmjRr03m', '7825913'), - (58, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GmjRr03m', '7826209'), - (58, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GmjRr03m', '7834742'), - (58, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GmjRr03m', '7842108'), - (58, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GmjRr03m', '7842902'), - (58, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GmjRr03m', '7842903'), - (58, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GmjRr03m', '7842904'), - (58, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GmjRr03m', '7842905'), - (58, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GmjRr03m', '7855719'), - (58, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GmjRr03m', '7860683'), - (58, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GmjRr03m', '7860684'), - (58, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GmjRr03m', '7866095'), - (58, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GmjRr03m', '7869170'), - (58, 3014, 'maybe', '2025-03-30 17:04:21', '2025-12-17 19:46:20', 'GmjRr03m', '7869185'), - (58, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GmjRr03m', '7869188'), - (58, 3018, 'attending', '2025-04-10 16:46:00', '2025-12-17 19:46:20', 'GmjRr03m', '7869189'), - (58, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GmjRr03m', '7869201'), - (58, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GmjRr03m', '7877465'), - (58, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'GmjRr03m', '7878570'), - (58, 3043, 'attending', '2025-03-15 20:09:49', '2025-12-17 19:46:19', 'GmjRr03m', '7882587'), - (58, 3055, 'maybe', '2025-03-27 22:23:48', '2025-12-17 19:46:19', 'GmjRr03m', '7888118'), - (58, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GmjRr03m', '7888250'), - (58, 3088, 'attending', '2025-06-09 20:31:56', '2025-12-17 19:46:15', 'GmjRr03m', '7904777'), - (58, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GmjRr03m', '8349164'), - (58, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GmjRr03m', '8349545'), - (58, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'GmjRr03m', '8353584'), - (58, 3131, 'not_attending', '2025-05-15 00:40:27', '2025-12-17 19:46:21', 'GmjRr03m', '8368028'), - (58, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GmjRr03m', '8368029'), - (58, 3133, 'attending', '2025-05-27 23:23:32', '2025-12-17 19:46:14', 'GmjRr03m', '8368030'), - (58, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GmjRr03m', '8388462'), - (58, 3153, 'maybe', '2025-06-03 20:00:09', '2025-12-17 19:46:15', 'GmjRr03m', '8400273'), - (58, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'GmjRr03m', '8400274'), - (58, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GmjRr03m', '8400275'), - (58, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'GmjRr03m', '8400276'), - (58, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GmjRr03m', '8404977'), - (58, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GmjRr03m', '8430783'), - (58, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GmjRr03m', '8430784'), - (58, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GmjRr03m', '8430799'), - (58, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GmjRr03m', '8430800'), - (58, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GmjRr03m', '8430801'), - (58, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GmjRr03m', '8438709'), - (58, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GmjRr03m', '8457738'), - (58, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GmjRr03m', '8459566'), - (58, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GmjRr03m', '8459567'), - (58, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GmjRr03m', '8461032'), - (58, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GmjRr03m', '8477877'), - (58, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GmjRr03m', '8485688'), - (58, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GmjRr03m', '8490587'), - (58, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GmjRr03m', '8493552'), - (58, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GmjRr03m', '8493553'), - (58, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GmjRr03m', '8493554'), - (58, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GmjRr03m', '8493555'), - (58, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GmjRr03m', '8493556'), - (58, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GmjRr03m', '8493557'), - (58, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GmjRr03m', '8493558'), - (58, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GmjRr03m', '8493559'), - (58, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GmjRr03m', '8493560'), - (58, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GmjRr03m', '8493561'), - (58, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GmjRr03m', '8493572'), - (58, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GmjRr03m', '8540725'), - (58, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GmjRr03m', '8555421'), - (59, 2146, 'maybe', '2023-07-21 04:39:53', '2025-12-17 19:46:53', 'dxMJoEXm', '6335638'), - (59, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:52', 'dxMJoEXm', '6337236'), - (59, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxMJoEXm', '6337970'), - (59, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'dxMJoEXm', '6338308'), - (59, 2159, 'attending', '2023-07-19 22:45:48', '2025-12-17 19:46:53', 'dxMJoEXm', '6338355'), - (59, 2160, 'not_attending', '2023-07-27 17:30:21', '2025-12-17 19:46:54', 'dxMJoEXm', '6338358'), - (59, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxMJoEXm', '6341710'), - (59, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxMJoEXm', '6342044'), - (59, 2167, 'attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxMJoEXm', '6342298'), - (59, 2169, 'maybe', '2023-07-21 02:45:15', '2025-12-17 19:46:53', 'dxMJoEXm', '6342306'), - (59, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxMJoEXm', '6342591'), - (59, 2173, 'attending', '2023-07-18 16:54:21', '2025-12-17 19:46:53', 'dxMJoEXm', '6342769'), - (59, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dxMJoEXm', '6343294'), - (59, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxMJoEXm', '6347034'), - (59, 2177, 'attending', '2023-08-12 20:32:31', '2025-12-17 19:46:55', 'dxMJoEXm', '6347053'), - (59, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxMJoEXm', '6347056'), - (59, 2179, 'attending', '2023-07-24 03:28:36', '2025-12-17 19:46:54', 'dxMJoEXm', '6347591'), - (59, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxMJoEXm', '6353830'), - (59, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxMJoEXm', '6353831'), - (59, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxMJoEXm', '6357867'), - (59, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxMJoEXm', '6358652'), - (59, 2193, 'attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dxMJoEXm', '6358668'), - (59, 2194, 'attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dxMJoEXm', '6358669'), - (59, 2204, 'attending', '2023-08-10 22:26:28', '2025-12-17 19:46:55', 'dxMJoEXm', '6361542'), - (59, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxMJoEXm', '6361709'), - (59, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxMJoEXm', '6361710'), - (59, 2210, 'maybe', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxMJoEXm', '6361711'), - (59, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxMJoEXm', '6361712'), - (59, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxMJoEXm', '6361713'), - (59, 2218, 'maybe', '2023-08-14 22:10:14', '2025-12-17 19:46:55', 'dxMJoEXm', '6367308'), - (59, 2219, 'maybe', '2023-08-14 22:10:58', '2025-12-17 19:46:55', 'dxMJoEXm', '6367309'), - (59, 2224, 'attending', '2023-08-15 18:46:24', '2025-12-17 19:46:55', 'dxMJoEXm', '6367635'), - (59, 2229, 'maybe', '2023-08-20 19:11:50', '2025-12-17 19:46:55', 'dxMJoEXm', '6373787'), - (59, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxMJoEXm', '6382573'), - (59, 2239, 'attending', '2023-08-31 17:59:16', '2025-12-17 19:46:56', 'dxMJoEXm', '6387592'), - (59, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxMJoEXm', '6388604'), - (59, 2247, 'attending', '2023-09-06 22:23:01', '2025-12-17 19:46:56', 'dxMJoEXm', '6394628'), - (59, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxMJoEXm', '6394629'), - (59, 2249, 'attending', '2023-09-20 22:52:51', '2025-12-17 19:46:45', 'dxMJoEXm', '6394630'), - (59, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxMJoEXm', '6394631'), - (59, 2251, 'attending', '2023-09-05 20:27:49', '2025-12-17 19:46:56', 'dxMJoEXm', '6395182'), - (59, 2253, 'maybe', '2023-09-25 17:58:11', '2025-12-17 19:46:45', 'dxMJoEXm', '6401811'), - (59, 2256, 'maybe', '2023-09-18 23:22:07', '2025-12-17 19:46:45', 'dxMJoEXm', '6404369'), - (59, 2259, 'attending', '2023-09-23 00:58:29', '2025-12-17 19:46:45', 'dxMJoEXm', '6421257'), - (59, 2263, 'attending', '2023-09-27 13:31:08', '2025-12-17 19:46:45', 'dxMJoEXm', '6429351'), - (59, 2267, 'attending', '2023-09-29 22:00:04', '2025-12-17 19:46:45', 'dxMJoEXm', '6440034'), - (59, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxMJoEXm', '6440863'), - (59, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dxMJoEXm', '6445440'), - (59, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dxMJoEXm', '6453951'), - (59, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dxMJoEXm', '6461696'), - (59, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dxMJoEXm', '6462129'), - (59, 2290, 'attending', '2023-10-18 17:55:38', '2025-12-17 19:46:46', 'dxMJoEXm', '6462214'), - (59, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dxMJoEXm', '6463218'), - (59, 2294, 'attending', '2023-10-13 00:58:17', '2025-12-17 19:46:46', 'dxMJoEXm', '6465907'), - (59, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dxMJoEXm', '6472181'), - (59, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxMJoEXm', '6482693'), - (59, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dxMJoEXm', '6484200'), - (59, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dxMJoEXm', '6484680'), - (59, 2317, 'attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxMJoEXm', '6507741'), - (59, 2318, 'maybe', '2023-10-30 14:44:27', '2025-12-17 19:46:47', 'dxMJoEXm', '6508566'), - (59, 2319, 'maybe', '2023-10-30 14:44:52', '2025-12-17 19:46:47', 'dxMJoEXm', '6508567'), - (59, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxMJoEXm', '6514659'), - (59, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMJoEXm', '6514660'), - (59, 2329, 'attending', '2023-11-07 14:42:20', '2025-12-17 19:46:47', 'dxMJoEXm', '6517138'), - (59, 2330, 'attending', '2023-11-03 08:46:54', '2025-12-17 19:46:47', 'dxMJoEXm', '6517941'), - (59, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxMJoEXm', '6519103'), - (59, 2337, 'attending', '2023-11-08 01:08:22', '2025-12-17 19:46:48', 'dxMJoEXm', '6535681'), - (59, 2341, 'maybe', '2023-11-13 19:52:38', '2025-12-17 19:46:48', 'dxMJoEXm', '6543263'), - (59, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxMJoEXm', '6584747'), - (59, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMJoEXm', '6587097'), - (59, 2360, 'maybe', '2023-12-02 03:04:11', '2025-12-17 19:46:49', 'dxMJoEXm', '6599341'), - (59, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMJoEXm', '6609022'), - (59, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMJoEXm', '6632757'), - (59, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMJoEXm', '6644187'), - (59, 2383, 'attending', '2024-01-02 00:29:36', '2025-12-17 19:46:37', 'dxMJoEXm', '6647606'), - (59, 2384, 'attending', '2024-01-02 04:26:38', '2025-12-17 19:46:37', 'dxMJoEXm', '6648022'), - (59, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMJoEXm', '6648951'), - (59, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMJoEXm', '6648952'), - (59, 2388, 'maybe', '2024-01-04 21:41:49', '2025-12-17 19:46:37', 'dxMJoEXm', '6649244'), - (59, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMJoEXm', '6655401'), - (59, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMJoEXm', '6661585'), - (59, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMJoEXm', '6661588'), - (59, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMJoEXm', '6661589'), - (59, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMJoEXm', '6699906'), - (59, 2408, 'maybe', '2024-01-25 20:31:15', '2025-12-17 19:46:40', 'dxMJoEXm', '6699907'), - (59, 2410, 'maybe', '2024-02-10 02:56:35', '2025-12-17 19:46:41', 'dxMJoEXm', '6699911'), - (59, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxMJoEXm', '6699913'), - (59, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMJoEXm', '6701109'), - (59, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dxMJoEXm', '6704561'), - (59, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMJoEXm', '6705219'), - (59, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dxMJoEXm', '6708410'), - (59, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMJoEXm', '6710153'), - (59, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMJoEXm', '6711552'), - (59, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMJoEXm', '6711553'), - (59, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMJoEXm', '6722688'), - (59, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMJoEXm', '6730620'), - (59, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMJoEXm', '6730642'), - (59, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMJoEXm', '6740364'), - (59, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMJoEXm', '6743829'), - (59, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMJoEXm', '7030380'), - (59, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMJoEXm', '7033677'), - (59, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMJoEXm', '7035415'), - (59, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMJoEXm', '7044715'), - (59, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMJoEXm', '7050318'), - (59, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMJoEXm', '7050319'), - (59, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMJoEXm', '7050322'), - (59, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMJoEXm', '7057804'), - (59, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMJoEXm', '7072824'), - (59, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMJoEXm', '7074348'), - (59, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMJoEXm', '7089267'), - (59, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMJoEXm', '7098747'), - (59, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxMJoEXm', '7113468'), - (59, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMJoEXm', '7114856'), - (59, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMJoEXm', '7114951'), - (59, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxMJoEXm', '7114955'), - (59, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMJoEXm', '7114956'), - (59, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMJoEXm', '7114957'), - (59, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMJoEXm', '7153615'), - (59, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMJoEXm', '7159484'), - (59, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMJoEXm', '7178446'), - (59, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMJoEXm', '7220467'), - (59, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMJoEXm', '7240354'), - (59, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMJoEXm', '7251633'), - (59, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMJoEXm', '7302674'), - (59, 2925, 'attending', '2024-12-10 03:40:39', '2025-12-17 19:46:21', 'dxMJoEXm', '7713584'), - (59, 2927, 'attending', '2024-12-16 00:24:26', '2025-12-17 19:46:22', 'dxMJoEXm', '7713586'), - (59, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMJoEXm', '7738518'), - (59, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMJoEXm', '7750636'), - (59, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMJoEXm', '7796540'), - (59, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMJoEXm', '7796541'), - (59, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMJoEXm', '7796542'), - (59, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxMJoEXm', '7825913'), - (59, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxMJoEXm', '7826209'), - (59, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxMJoEXm', '7834742'), - (59, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dxMJoEXm', '7842108'), - (59, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxMJoEXm', '7842902'), - (59, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxMJoEXm', '7842903'), - (59, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxMJoEXm', '7842904'), - (59, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxMJoEXm', '7842905'), - (59, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxMJoEXm', '7855719'), - (59, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxMJoEXm', '7860683'), - (59, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxMJoEXm', '7860684'), - (59, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxMJoEXm', '7866095'), - (59, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxMJoEXm', '7869170'), - (59, 3015, 'attending', '2025-04-23 06:10:34', '2025-12-17 19:46:20', 'dxMJoEXm', '7869186'), - (59, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxMJoEXm', '7869188'), - (59, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxMJoEXm', '7869201'), - (59, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxMJoEXm', '7877465'), - (59, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxMJoEXm', '7888250'), - (59, 3070, 'attending', '2025-04-02 02:44:30', '2025-12-17 19:46:20', 'dxMJoEXm', '7894829'), - (59, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxMJoEXm', '7904777'), - (59, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxMJoEXm', '8349164'), - (59, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxMJoEXm', '8349545'), - (59, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxMJoEXm', '8353584'), - (59, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dxMJoEXm', '8368028'), - (59, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxMJoEXm', '8368029'), - (59, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxMJoEXm', '8388462'), - (59, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxMJoEXm', '8400273'), - (59, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dxMJoEXm', '8400274'), - (59, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxMJoEXm', '8400275'), - (59, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dxMJoEXm', '8400276'), - (59, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxMJoEXm', '8404977'), - (59, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxMJoEXm', '8430783'), - (59, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxMJoEXm', '8430784'), - (59, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxMJoEXm', '8430799'), - (59, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxMJoEXm', '8430800'), - (59, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxMJoEXm', '8430801'), - (59, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxMJoEXm', '8438709'), - (59, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxMJoEXm', '8457738'), - (59, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxMJoEXm', '8459566'), - (59, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxMJoEXm', '8459567'), - (59, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxMJoEXm', '8461032'), - (59, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxMJoEXm', '8477877'), - (59, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxMJoEXm', '8485688'), - (59, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxMJoEXm', '8490587'), - (59, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxMJoEXm', '8493552'), - (59, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxMJoEXm', '8493553'), - (59, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxMJoEXm', '8493554'), - (59, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxMJoEXm', '8493555'), - (59, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxMJoEXm', '8493556'), - (59, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxMJoEXm', '8493557'), - (59, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxMJoEXm', '8493558'), - (59, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxMJoEXm', '8493559'), - (59, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxMJoEXm', '8493560'), - (59, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxMJoEXm', '8493561'), - (59, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxMJoEXm', '8493572'), - (59, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxMJoEXm', '8540725'), - (59, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxMJoEXm', '8555421'), - (60, 497, 'attending', '2020-12-17 21:40:56', '2025-12-17 19:47:55', '8mR9wNYd', '3314270'), - (60, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '8mR9wNYd', '3314964'), - (60, 502, 'attending', '2020-12-12 23:08:32', '2025-12-17 19:47:55', '8mR9wNYd', '3323365'), - (60, 513, 'attending', '2020-12-20 00:49:16', '2025-12-17 19:47:55', '8mR9wNYd', '3329383'), - (60, 518, 'not_attending', '2021-01-06 23:58:02', '2025-12-17 19:47:48', '8mR9wNYd', '3337138'), - (60, 519, 'attending', '2020-12-20 21:04:33', '2025-12-17 19:47:55', '8mR9wNYd', '3337448'), - (60, 525, 'attending', '2020-12-22 03:16:56', '2025-12-17 19:47:48', '8mR9wNYd', '3350467'), - (60, 526, 'attending', '2020-12-29 18:17:14', '2025-12-17 19:47:48', '8mR9wNYd', '3351539'), - (60, 529, 'attending', '2021-01-03 22:51:08', '2025-12-17 19:47:48', '8mR9wNYd', '3364568'), - (60, 532, 'attending', '2021-01-08 14:08:56', '2025-12-17 19:47:48', '8mR9wNYd', '3381412'), - (60, 534, 'attending', '2021-01-05 04:34:22', '2025-12-17 19:47:48', '8mR9wNYd', '3384157'), - (60, 536, 'attending', '2021-01-07 17:21:11', '2025-12-17 19:47:48', '8mR9wNYd', '3386848'), - (60, 538, 'maybe', '2021-01-12 03:57:02', '2025-12-17 19:47:48', '8mR9wNYd', '3388151'), - (60, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '8mR9wNYd', '3389527'), - (60, 542, 'attending', '2021-01-11 02:41:06', '2025-12-17 19:47:48', '8mR9wNYd', '3395013'), - (60, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '8mR9wNYd', '3396499'), - (60, 548, 'not_attending', '2021-01-12 03:54:40', '2025-12-17 19:47:48', '8mR9wNYd', '3403650'), - (60, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '8mR9wNYd', '3406988'), - (60, 555, 'attending', '2021-01-20 18:34:43', '2025-12-17 19:47:49', '8mR9wNYd', '3416576'), - (60, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '8mR9wNYd', '3418925'), - (60, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', '8mR9wNYd', '3426074'), - (60, 565, 'attending', '2021-01-26 19:25:49', '2025-12-17 19:47:49', '8mR9wNYd', '3426083'), - (60, 567, 'attending', '2021-01-26 19:37:06', '2025-12-17 19:47:50', '8mR9wNYd', '3428895'), - (60, 568, 'attending', '2021-01-26 19:37:09', '2025-12-17 19:47:50', '8mR9wNYd', '3430267'), - (60, 569, 'attending', '2021-01-26 19:25:40', '2025-12-17 19:47:49', '8mR9wNYd', '3432673'), - (60, 571, 'maybe', '2021-02-12 17:40:37', '2025-12-17 19:47:50', '8mR9wNYd', '3435539'), - (60, 576, 'attending', '2021-01-29 08:41:54', '2025-12-17 19:47:50', '8mR9wNYd', '3438748'), - (60, 579, 'attending', '2021-02-01 22:50:23', '2025-12-17 19:47:50', '8mR9wNYd', '3440978'), - (60, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '8mR9wNYd', '3468125'), - (60, 602, 'attending', '2021-02-07 23:32:58', '2025-12-17 19:47:50', '8mR9wNYd', '3470303'), - (60, 603, 'attending', '2021-02-20 21:47:26', '2025-12-17 19:47:50', '8mR9wNYd', '3470304'), - (60, 604, 'attending', '2021-02-24 00:18:30', '2025-12-17 19:47:50', '8mR9wNYd', '3470305'), - (60, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '8mR9wNYd', '3470991'), - (60, 608, 'attending', '2021-02-10 21:16:33', '2025-12-17 19:47:50', '8mR9wNYd', '3475332'), - (60, 621, 'attending', '2021-03-02 21:31:25', '2025-12-17 19:47:51', '8mR9wNYd', '3517815'), - (60, 622, 'attending', '2021-03-10 14:51:58', '2025-12-17 19:47:51', '8mR9wNYd', '3517816'), - (60, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '8mR9wNYd', '3523941'), - (60, 631, 'not_attending', '2021-03-02 21:31:19', '2025-12-17 19:47:51', '8mR9wNYd', '3533850'), - (60, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8mR9wNYd', '3536632'), - (60, 639, 'not_attending', '2021-03-02 21:31:07', '2025-12-17 19:47:51', '8mR9wNYd', '3536656'), - (60, 641, 'attending', '2021-04-01 05:08:31', '2025-12-17 19:47:44', '8mR9wNYd', '3539916'), - (60, 642, 'attending', '2021-04-09 21:09:17', '2025-12-17 19:47:44', '8mR9wNYd', '3539917'), - (60, 643, 'attending', '2021-04-15 00:19:40', '2025-12-17 19:47:45', '8mR9wNYd', '3539918'), - (60, 644, 'attending', '2021-04-24 05:56:10', '2025-12-17 19:47:45', '8mR9wNYd', '3539919'), - (60, 645, 'attending', '2021-05-07 17:55:43', '2025-12-17 19:47:46', '8mR9wNYd', '3539920'), - (60, 646, 'attending', '2021-05-11 18:52:41', '2025-12-17 19:47:46', '8mR9wNYd', '3539921'), - (60, 647, 'attending', '2021-05-21 17:32:22', '2025-12-17 19:47:46', '8mR9wNYd', '3539922'), - (60, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8mR9wNYd', '3539923'), - (60, 649, 'attending', '2021-03-20 00:00:34', '2025-12-17 19:47:51', '8mR9wNYd', '3539927'), - (60, 650, 'attending', '2021-03-27 17:34:47', '2025-12-17 19:47:44', '8mR9wNYd', '3539928'), - (60, 687, 'not_attending', '2021-03-11 20:49:45', '2025-12-17 19:47:51', '8mR9wNYd', '3553405'), - (60, 690, 'attending', '2021-03-23 20:03:51', '2025-12-17 19:47:43', '8mR9wNYd', '3559954'), - (60, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8mR9wNYd', '3582734'), - (60, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8mR9wNYd', '3583262'), - (60, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8mR9wNYd', '3619523'), - (60, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8mR9wNYd', '3661369'), - (60, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8mR9wNYd', '3674262'), - (60, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8mR9wNYd', '3677402'), - (60, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '8mR9wNYd', '3730212'), - (60, 777, 'attending', '2021-04-28 20:50:00', '2025-12-17 19:47:46', '8mR9wNYd', '3746248'), - (60, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8mR9wNYd', '3793156'), - (60, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '8mR9wNYd', '3974109'), - (60, 827, 'attending', '2021-06-03 18:13:05', '2025-12-17 19:47:47', '8mR9wNYd', '3975311'), - (60, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '8mR9wNYd', '3975312'), - (60, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '8mR9wNYd', '3994992'), - (60, 844, 'attending', '2021-06-12 00:52:14', '2025-12-17 19:47:38', '8mR9wNYd', '4014338'), - (60, 867, 'attending', '2021-06-26 15:12:54', '2025-12-17 19:47:38', '8mR9wNYd', '4021848'), - (60, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '8mR9wNYd', '4136744'), - (60, 870, 'attending', '2021-07-03 21:53:44', '2025-12-17 19:47:39', '8mR9wNYd', '4136937'), - (60, 871, 'attending', '2021-07-09 22:16:25', '2025-12-17 19:47:39', '8mR9wNYd', '4136938'), - (60, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '8mR9wNYd', '4136947'), - (60, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '8mR9wNYd', '4210314'), - (60, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8mR9wNYd', '4225444'), - (60, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '8mR9wNYd', '4239259'), - (60, 900, 'not_attending', '2021-07-24 22:04:22', '2025-12-17 19:47:40', '8mR9wNYd', '4240316'), - (60, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '8mR9wNYd', '4240317'), - (60, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '8mR9wNYd', '4240318'), - (60, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '8mR9wNYd', '4240320'), - (60, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8mR9wNYd', '4250163'), - (60, 919, 'attending', '2021-07-17 12:44:17', '2025-12-17 19:47:39', '8mR9wNYd', '4275957'), - (60, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '8mR9wNYd', '4277819'), - (60, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '8mR9wNYd', '4301723'), - (60, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '8mR9wNYd', '4302093'), - (60, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '8mR9wNYd', '4304151'), - (60, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '8mR9wNYd', '4345519'), - (60, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '8mR9wNYd', '4356801'), - (60, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '8mR9wNYd', '4358025'), - (60, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '8mR9wNYd', '4366186'), - (60, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '8mR9wNYd', '4366187'), - (60, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '8mR9wNYd', '4402823'), - (60, 990, 'attending', '2021-09-04 21:10:54', '2025-12-17 19:47:43', '8mR9wNYd', '4420735'), - (60, 991, 'attending', '2021-09-11 21:51:43', '2025-12-17 19:47:43', '8mR9wNYd', '4420738'), - (60, 992, 'attending', '2021-09-18 21:38:33', '2025-12-17 19:47:33', '8mR9wNYd', '4420739'), - (60, 993, 'attending', '2021-09-25 20:34:44', '2025-12-17 19:47:34', '8mR9wNYd', '4420741'), - (60, 994, 'attending', '2021-10-01 01:08:50', '2025-12-17 19:47:34', '8mR9wNYd', '4420742'), - (60, 995, 'attending', '2021-10-09 20:04:45', '2025-12-17 19:47:34', '8mR9wNYd', '4420744'), - (60, 996, 'attending', '2021-10-16 02:22:55', '2025-12-17 19:47:35', '8mR9wNYd', '4420747'), - (60, 997, 'attending', '2021-10-23 19:56:16', '2025-12-17 19:47:35', '8mR9wNYd', '4420748'), - (60, 998, 'attending', '2021-10-30 15:55:28', '2025-12-17 19:47:36', '8mR9wNYd', '4420749'), - (60, 1016, 'attending', '2021-09-05 01:53:59', '2025-12-17 19:47:43', '8mR9wNYd', '4441271'), - (60, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '8mR9wNYd', '4461883'), - (60, 1040, 'attending', '2021-12-11 18:40:37', '2025-12-17 19:47:38', '8mR9wNYd', '4496605'), - (60, 1049, 'attending', '2022-01-22 23:00:52', '2025-12-17 19:47:32', '8mR9wNYd', '4496614'), - (60, 1050, 'attending', '2022-01-29 19:31:35', '2025-12-17 19:47:32', '8mR9wNYd', '4496615'), - (60, 1051, 'not_attending', '2022-02-05 16:04:40', '2025-12-17 19:47:32', '8mR9wNYd', '4496616'), - (60, 1052, 'attending', '2022-01-14 16:52:04', '2025-12-17 19:47:31', '8mR9wNYd', '4496617'), - (60, 1056, 'attending', '2022-01-08 23:29:28', '2025-12-17 19:47:31', '8mR9wNYd', '4496622'), - (60, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '8mR9wNYd', '4508342'), - (60, 1068, 'attending', '2021-09-30 22:17:49', '2025-12-17 19:47:34', '8mR9wNYd', '4511471'), - (60, 1070, 'attending', '2021-10-01 22:36:45', '2025-12-17 19:47:34', '8mR9wNYd', '4512562'), - (60, 1072, 'attending', '2021-10-06 20:22:09', '2025-12-17 19:47:34', '8mR9wNYd', '4516287'), - (60, 1074, 'attending', '2021-09-29 20:41:42', '2025-12-17 19:47:34', '8mR9wNYd', '4528953'), - (60, 1079, 'attending', '2021-10-20 21:11:34', '2025-12-17 19:47:35', '8mR9wNYd', '4563823'), - (60, 1082, 'attending', '2021-10-15 20:26:52', '2025-12-17 19:47:35', '8mR9wNYd', '4566762'), - (60, 1085, 'attending', '2021-12-23 23:43:42', '2025-12-17 19:47:31', '8mR9wNYd', '4568542'), - (60, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '8mR9wNYd', '4568602'), - (60, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '8mR9wNYd', '4572153'), - (60, 1092, 'attending', '2021-10-21 21:52:50', '2025-12-17 19:47:35', '8mR9wNYd', '4582837'), - (60, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', '8mR9wNYd', '4585962'), - (60, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '8mR9wNYd', '4596356'), - (60, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '8mR9wNYd', '4598860'), - (60, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '8mR9wNYd', '4598861'), - (60, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '8mR9wNYd', '4602797'), - (60, 1103, 'attending', '2021-11-13 20:36:17', '2025-12-17 19:47:36', '8mR9wNYd', '4616350'), - (60, 1108, 'attending', '2021-11-18 00:44:36', '2025-12-17 19:47:37', '8mR9wNYd', '4632276'), - (60, 1114, 'attending', '2021-11-13 20:36:11', '2025-12-17 19:47:36', '8mR9wNYd', '4637896'), - (60, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '8mR9wNYd', '4642994'), - (60, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '8mR9wNYd', '4642995'), - (60, 1118, 'attending', '2021-12-16 00:34:23', '2025-12-17 19:47:38', '8mR9wNYd', '4642996'), - (60, 1119, 'attending', '2021-12-22 23:31:54', '2025-12-17 19:47:31', '8mR9wNYd', '4642997'), - (60, 1126, 'attending', '2021-12-11 18:40:33', '2025-12-17 19:47:38', '8mR9wNYd', '4645687'), - (60, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '8mR9wNYd', '4645698'), - (60, 1128, 'attending', '2021-11-20 04:19:31', '2025-12-17 19:47:37', '8mR9wNYd', '4645704'), - (60, 1129, 'attending', '2021-11-27 22:36:33', '2025-12-17 19:47:37', '8mR9wNYd', '4645705'), - (60, 1130, 'attending', '2021-12-04 20:52:36', '2025-12-17 19:47:37', '8mR9wNYd', '4658824'), - (60, 1131, 'attending', '2021-12-18 19:22:38', '2025-12-17 19:47:31', '8mR9wNYd', '4658825'), - (60, 1132, 'attending', '2021-11-22 23:05:01', '2025-12-17 19:47:37', '8mR9wNYd', '4660657'), - (60, 1134, 'attending', '2021-11-24 20:33:27', '2025-12-17 19:47:37', '8mR9wNYd', '4668385'), - (60, 1135, 'attending', '2021-11-26 23:41:47', '2025-12-17 19:47:37', '8mR9wNYd', '4670469'), - (60, 1136, 'not_attending', '2021-11-26 00:09:49', '2025-12-17 19:47:37', '8mR9wNYd', '4670473'), - (60, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '8mR9wNYd', '4694407'), - (60, 1151, 'attending', '2022-01-06 01:01:11', '2025-12-17 19:47:31', '8mR9wNYd', '4708704'), - (60, 1152, 'attending', '2022-01-13 00:40:58', '2025-12-17 19:47:31', '8mR9wNYd', '4708705'), - (60, 1153, 'attending', '2022-01-20 00:51:08', '2025-12-17 19:47:32', '8mR9wNYd', '4708707'), - (60, 1156, 'attending', '2021-12-21 23:13:45', '2025-12-17 19:47:31', '8mR9wNYd', '4715207'), - (60, 1173, 'attending', '2022-01-04 16:10:24', '2025-12-17 19:47:31', '8mR9wNYd', '4736495'), - (60, 1174, 'attending', '2022-01-14 16:52:02', '2025-12-17 19:47:31', '8mR9wNYd', '4736496'), - (60, 1175, 'attending', '2022-01-22 23:00:53', '2025-12-17 19:47:32', '8mR9wNYd', '4736497'), - (60, 1176, 'not_attending', '2022-02-05 16:04:33', '2025-12-17 19:47:32', '8mR9wNYd', '4736498'), - (60, 1177, 'attending', '2022-02-12 23:46:16', '2025-12-17 19:47:32', '8mR9wNYd', '4736499'), - (60, 1178, 'attending', '2022-01-29 19:31:32', '2025-12-17 19:47:32', '8mR9wNYd', '4736500'), - (60, 1181, 'attending', '2022-03-05 20:28:20', '2025-12-17 19:47:33', '8mR9wNYd', '4736503'), - (60, 1182, 'attending', '2022-03-12 20:34:51', '2025-12-17 19:47:33', '8mR9wNYd', '4736504'), - (60, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '8mR9wNYd', '4746789'), - (60, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '8mR9wNYd', '4753929'), - (60, 1211, 'maybe', '2022-01-28 17:57:58', '2025-12-17 19:47:32', '8mR9wNYd', '4780754'), - (60, 1212, 'attending', '2022-02-03 19:36:05', '2025-12-17 19:47:32', '8mR9wNYd', '4780759'), - (60, 1215, 'attending', '2022-02-18 22:28:20', '2025-12-17 19:47:33', '8mR9wNYd', '4780763'), - (60, 1219, 'attending', '2022-02-02 23:59:06', '2025-12-17 19:47:32', '8mR9wNYd', '4788466'), - (60, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '8mR9wNYd', '5038850'), - (60, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '8mR9wNYd', '5045826'), - (60, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '8mR9wNYd', '5132533'), - (60, 1272, 'attending', '2022-03-19 17:00:26', '2025-12-17 19:47:25', '8mR9wNYd', '5186582'), - (60, 1273, 'attending', '2022-03-26 15:50:58', '2025-12-17 19:47:25', '8mR9wNYd', '5186583'), - (60, 1274, 'attending', '2022-04-02 19:30:59', '2025-12-17 19:47:26', '8mR9wNYd', '5186585'), - (60, 1281, 'attending', '2022-04-09 22:12:59', '2025-12-17 19:47:27', '8mR9wNYd', '5190437'), - (60, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '8mR9wNYd', '5195095'), - (60, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '8mR9wNYd', '5215989'), - (60, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '8mR9wNYd', '5223686'), - (60, 1308, 'attending', '2022-04-13 22:33:34', '2025-12-17 19:47:27', '8mR9wNYd', '5226703'), - (60, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '8mR9wNYd', '5227432'), - (60, 1313, 'attending', '2022-04-12 01:44:15', '2025-12-17 19:47:27', '8mR9wNYd', '5231461'), - (60, 1318, 'attending', '2022-04-14 22:07:35', '2025-12-17 19:47:27', '8mR9wNYd', '5238343'), - (60, 1332, 'not_attending', '2022-04-14 22:56:04', '2025-12-17 19:47:27', '8mR9wNYd', '5243274'), - (60, 1337, 'attending', '2022-04-20 21:04:38', '2025-12-17 19:47:27', '8mR9wNYd', '5245036'), - (60, 1346, 'attending', '2022-04-23 21:45:31', '2025-12-17 19:47:27', '8mR9wNYd', '5247467'), - (60, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', '8mR9wNYd', '5249631'), - (60, 1354, 'not_attending', '2022-04-21 18:07:01', '2025-12-17 19:47:27', '8mR9wNYd', '5252569'), - (60, 1356, 'attending', '2022-04-22 01:32:41', '2025-12-17 19:47:27', '8mR9wNYd', '5252913'), - (60, 1362, 'attending', '2022-04-27 21:02:10', '2025-12-17 19:47:28', '8mR9wNYd', '5260800'), - (60, 1371, 'attending', '2022-04-27 21:02:07', '2025-12-17 19:47:27', '8mR9wNYd', '5263784'), - (60, 1374, 'maybe', '2022-05-07 16:19:39', '2025-12-17 19:47:28', '8mR9wNYd', '5269930'), - (60, 1378, 'attending', '2022-05-14 14:56:23', '2025-12-17 19:47:29', '8mR9wNYd', '5271448'), - (60, 1379, 'attending', '2022-05-20 12:06:07', '2025-12-17 19:47:29', '8mR9wNYd', '5271449'), - (60, 1380, 'attending', '2022-05-28 15:52:57', '2025-12-17 19:47:30', '8mR9wNYd', '5271450'), - (60, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '8mR9wNYd', '5276469'), - (60, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '8mR9wNYd', '5278159'), - (60, 1407, 'attending', '2022-06-01 19:25:02', '2025-12-17 19:47:30', '8mR9wNYd', '5363695'), - (60, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '8mR9wNYd', '5365960'), - (60, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '8mR9wNYd', '5368973'), - (60, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '8mR9wNYd', '5378247'), - (60, 1431, 'attending', '2022-06-11 19:45:04', '2025-12-17 19:47:30', '8mR9wNYd', '5389605'), - (60, 1442, 'attending', '2022-06-18 17:36:07', '2025-12-17 19:47:17', '8mR9wNYd', '5397265'), - (60, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '8mR9wNYd', '5403967'), - (60, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '8mR9wNYd', '5404786'), - (60, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '8mR9wNYd', '5405203'), - (60, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '8mR9wNYd', '5408794'), - (60, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '8mR9wNYd', '5411699'), - (60, 1482, 'attending', '2022-06-25 18:33:45', '2025-12-17 19:47:19', '8mR9wNYd', '5412550'), - (60, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '8mR9wNYd', '5415046'), - (60, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '8mR9wNYd', '5422086'), - (60, 1498, 'attending', '2022-07-02 21:54:54', '2025-12-17 19:47:19', '8mR9wNYd', '5422406'), - (60, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '8mR9wNYd', '5424565'), - (60, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '8mR9wNYd', '5426882'), - (60, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '8mR9wNYd', '5427083'), - (60, 1508, 'attending', '2022-07-13 22:40:57', '2025-12-17 19:47:19', '8mR9wNYd', '5433453'), - (60, 1511, 'attending', '2022-07-09 20:45:19', '2025-12-17 19:47:19', '8mR9wNYd', '5437733'), - (60, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '8mR9wNYd', '5441125'), - (60, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '8mR9wNYd', '5441126'), - (60, 1515, 'attending', '2022-08-06 22:05:15', '2025-12-17 19:47:21', '8mR9wNYd', '5441128'), - (60, 1516, 'maybe', '2022-08-20 21:48:56', '2025-12-17 19:47:23', '8mR9wNYd', '5441129'), - (60, 1517, 'attending', '2022-08-27 19:18:02', '2025-12-17 19:47:23', '8mR9wNYd', '5441130'), - (60, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '8mR9wNYd', '5441131'), - (60, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '8mR9wNYd', '5441132'), - (60, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '8mR9wNYd', '5446643'), - (60, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '8mR9wNYd', '5453325'), - (60, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '8mR9wNYd', '5454516'), - (60, 1544, 'attending', '2022-09-17 16:17:59', '2025-12-17 19:47:11', '8mR9wNYd', '5454517'), - (60, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '8mR9wNYd', '5454605'), - (60, 1546, 'attending', '2022-07-27 22:00:51', '2025-12-17 19:47:20', '8mR9wNYd', '5454607'), - (60, 1551, 'attending', '2022-07-19 22:44:10', '2025-12-17 19:47:20', '8mR9wNYd', '5455037'), - (60, 1557, 'attending', '2022-08-03 21:17:19', '2025-12-17 19:47:21', '8mR9wNYd', '5458729'), - (60, 1558, 'attending', '2022-09-13 21:02:55', '2025-12-17 19:47:10', '8mR9wNYd', '5458730'), - (60, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '8mR9wNYd', '5461278'), - (60, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '8mR9wNYd', '5469480'), - (60, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '8mR9wNYd', '5471073'), - (60, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '8mR9wNYd', '5474663'), - (60, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '8mR9wNYd', '5482022'), - (60, 1575, 'attending', '2022-08-26 22:45:29', '2025-12-17 19:47:23', '8mR9wNYd', '5482250'), - (60, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '8mR9wNYd', '5482793'), - (60, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '8mR9wNYd', '5488912'), - (60, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '8mR9wNYd', '5492192'), - (60, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '8mR9wNYd', '5493139'), - (60, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '8mR9wNYd', '5493200'), - (60, 1592, 'attending', '2022-08-10 16:21:19', '2025-12-17 19:47:22', '8mR9wNYd', '5494031'), - (60, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '8mR9wNYd', '5502188'), - (60, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '8mR9wNYd', '5505059'), - (60, 1610, 'attending', '2022-08-26 20:06:19', '2025-12-17 19:47:23', '8mR9wNYd', '5506595'), - (60, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '8mR9wNYd', '5509055'), - (60, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '8mR9wNYd', '5512862'), - (60, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '8mR9wNYd', '5513985'), - (60, 1626, 'attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '8mR9wNYd', '5519981'), - (60, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '8mR9wNYd', '5522550'), - (60, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '8mR9wNYd', '5534683'), - (60, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '8mR9wNYd', '5537735'), - (60, 1640, 'attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '8mR9wNYd', '5540859'), - (60, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '8mR9wNYd', '5546619'), - (60, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '8mR9wNYd', '5555245'), - (60, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '8mR9wNYd', '5557747'), - (60, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '8mR9wNYd', '5560255'), - (60, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '8mR9wNYd', '5562906'), - (60, 1667, 'attending', '2022-09-24 18:42:30', '2025-12-17 19:47:11', '8mR9wNYd', '5563221'), - (60, 1668, 'attending', '2022-09-25 03:23:26', '2025-12-17 19:47:12', '8mR9wNYd', '5563222'), - (60, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '8mR9wNYd', '5600604'), - (60, 1679, 'attending', '2022-10-04 21:56:21', '2025-12-17 19:47:12', '8mR9wNYd', '5601099'), - (60, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '8mR9wNYd', '5605544'), - (60, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', '8mR9wNYd', '5606737'), - (60, 1717, 'attending', '2022-10-21 20:03:09', '2025-12-17 19:47:13', '8mR9wNYd', '5622842'), - (60, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', '8mR9wNYd', '5630907'), - (60, 1719, 'attending', '2022-10-07 21:58:50', '2025-12-17 19:47:12', '8mR9wNYd', '5630958'), - (60, 1720, 'attending', '2022-10-15 18:11:24', '2025-12-17 19:47:12', '8mR9wNYd', '5630959'), - (60, 1721, 'not_attending', '2022-10-17 20:09:46', '2025-12-17 19:47:13', '8mR9wNYd', '5630960'), - (60, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '8mR9wNYd', '5630961'), - (60, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '8mR9wNYd', '5630962'), - (60, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '8mR9wNYd', '5630966'), - (60, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '8mR9wNYd', '5630967'), - (60, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '8mR9wNYd', '5630968'), - (60, 1727, 'attending', '2022-12-03 18:49:00', '2025-12-17 19:47:16', '8mR9wNYd', '5630969'), - (60, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '8mR9wNYd', '5635406'), - (60, 1733, 'attending', '2022-10-11 15:46:46', '2025-12-17 19:47:12', '8mR9wNYd', '5635411'), - (60, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '8mR9wNYd', '5638765'), - (60, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '8mR9wNYd', '5640097'), - (60, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '8mR9wNYd', '5640843'), - (60, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '8mR9wNYd', '5641521'), - (60, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '8mR9wNYd', '5642818'), - (60, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '8mR9wNYd', '5652395'), - (60, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '8mR9wNYd', '5670445'), - (60, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '8mR9wNYd', '5671637'), - (60, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '8mR9wNYd', '5672329'), - (60, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '8mR9wNYd', '5674057'), - (60, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '8mR9wNYd', '5674060'), - (60, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '8mR9wNYd', '5677461'), - (60, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '8mR9wNYd', '5698046'), - (60, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '8mR9wNYd', '5699760'), - (60, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '8mR9wNYd', '5741601'), - (60, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '8mR9wNYd', '5763458'), - (60, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '8mR9wNYd', '5774172'), - (60, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '8mR9wNYd', '5818247'), - (60, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '8mR9wNYd', '5819471'), - (60, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '8mR9wNYd', '5827739'), - (60, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '8mR9wNYd', '5844306'), - (60, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '8mR9wNYd', '5850159'), - (60, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '8mR9wNYd', '5858999'), - (60, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '8mR9wNYd', '5871984'), - (60, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '8mR9wNYd', '5876354'), - (60, 1864, 'attending', '2023-01-20 21:32:26', '2025-12-17 19:47:05', '8mR9wNYd', '5879675'), - (60, 1865, 'not_attending', '2023-01-28 15:07:02', '2025-12-17 19:47:06', '8mR9wNYd', '5879676'), - (60, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '8mR9wNYd', '5880939'), - (60, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '8mR9wNYd', '5887890'), - (60, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '8mR9wNYd', '5888598'), - (60, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '8mR9wNYd', '5893260'), - (60, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '8mR9wNYd', '5899826'), - (60, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '8mR9wNYd', '5901108'), - (60, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '8mR9wNYd', '5901126'), - (60, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mR9wNYd', '6045684'), - (60, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8mR9wNYd', '6067245'), - (60, 2060, 'not_attending', '2023-05-20 22:43:24', '2025-12-17 19:47:03', '8mR9wNYd', '6097414'), - (60, 2061, 'not_attending', '2023-05-11 23:34:43', '2025-12-17 19:47:02', '8mR9wNYd', '6097442'), - (60, 2064, 'maybe', '2023-06-24 16:25:28', '2025-12-17 19:46:50', '8mR9wNYd', '6099988'), - (60, 2065, 'maybe', '2023-06-16 22:32:59', '2025-12-17 19:46:49', '8mR9wNYd', '6101169'), - (60, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '8mR9wNYd', '6101361'), - (60, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8mR9wNYd', '6101362'), - (60, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '8mR9wNYd', '6103752'), - (60, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8mR9wNYd', '6107314'), - (60, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '8mR9wNYd', '6120034'), - (60, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '8mR9wNYd', '6136733'), - (60, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '8mR9wNYd', '6137989'), - (60, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '8mR9wNYd', '6150864'), - (60, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '8mR9wNYd', '6155491'), - (60, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '8mR9wNYd', '6164417'), - (60, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '8mR9wNYd', '6166388'), - (60, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '8mR9wNYd', '6176439'), - (60, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '8mR9wNYd', '6182410'), - (60, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '8mR9wNYd', '6185812'), - (60, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '8mR9wNYd', '6187651'), - (60, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '8mR9wNYd', '6187963'), - (60, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '8mR9wNYd', '6187964'), - (60, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '8mR9wNYd', '6187966'), - (60, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '8mR9wNYd', '6187967'), - (60, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '8mR9wNYd', '6187969'), - (60, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '8mR9wNYd', '6334878'), - (60, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '8mR9wNYd', '6337236'), - (60, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '8mR9wNYd', '6337970'), - (60, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '8mR9wNYd', '6338308'), - (60, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '8mR9wNYd', '6340845'), - (60, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '8mR9wNYd', '6341710'), - (60, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '8mR9wNYd', '6342044'), - (60, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '8mR9wNYd', '6342298'), - (60, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '8mR9wNYd', '6343294'), - (60, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '8mR9wNYd', '6347034'), - (60, 2177, 'attending', '2023-08-12 20:36:56', '2025-12-17 19:46:55', '8mR9wNYd', '6347053'), - (60, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '8mR9wNYd', '6347056'), - (60, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '8mR9wNYd', '6353830'), - (60, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '8mR9wNYd', '6353831'), - (60, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '8mR9wNYd', '6357867'), - (60, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '8mR9wNYd', '6358652'), - (60, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '8mR9wNYd', '6361709'), - (60, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '8mR9wNYd', '6361710'), - (60, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '8mR9wNYd', '6361711'), - (60, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '8mR9wNYd', '6361712'), - (60, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '8mR9wNYd', '6361713'), - (60, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '8mR9wNYd', '6382573'), - (60, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '8mR9wNYd', '6388604'), - (60, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '8mR9wNYd', '6394629'), - (60, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '8mR9wNYd', '6394631'), - (60, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '8mR9wNYd', '6440863'), - (60, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '8mR9wNYd', '6445440'), - (60, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '8mR9wNYd', '6453951'), - (60, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '8mR9wNYd', '6461696'), - (60, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '8mR9wNYd', '6462129'), - (60, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '8mR9wNYd', '6463218'), - (60, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '8mR9wNYd', '6472181'), - (60, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '8mR9wNYd', '6482693'), - (60, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '8mR9wNYd', '6484200'), - (60, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '8mR9wNYd', '6484680'), - (60, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '8mR9wNYd', '6507741'), - (60, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '8mR9wNYd', '6514659'), - (60, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '8mR9wNYd', '6514660'), - (60, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '8mR9wNYd', '6519103'), - (60, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '8mR9wNYd', '6535681'), - (60, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '8mR9wNYd', '6584747'), - (60, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '8mR9wNYd', '6587097'), - (60, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '8mR9wNYd', '6609022'), - (60, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '8mR9wNYd', '6632757'), - (60, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '8mR9wNYd', '6644187'), - (60, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '8mR9wNYd', '6648951'), - (60, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '8mR9wNYd', '6648952'), - (60, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '8mR9wNYd', '6655401'), - (60, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '8mR9wNYd', '6661585'), - (60, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '8mR9wNYd', '6661588'), - (60, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '8mR9wNYd', '6661589'), - (60, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '8mR9wNYd', '6699906'), - (60, 2410, 'attending', '2024-02-10 18:59:10', '2025-12-17 19:46:41', '8mR9wNYd', '6699911'), - (60, 2411, 'attending', '2024-02-15 18:15:38', '2025-12-17 19:46:41', '8mR9wNYd', '6699913'), - (60, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '8mR9wNYd', '6701109'), - (60, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '8mR9wNYd', '6705219'), - (60, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '8mR9wNYd', '6710153'), - (60, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '8mR9wNYd', '6711552'), - (60, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '8mR9wNYd', '6711553'), - (60, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '8mR9wNYd', '6722688'), - (60, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '8mR9wNYd', '6730620'), - (60, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '8mR9wNYd', '6730642'), - (60, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '8mR9wNYd', '6740364'), - (60, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '8mR9wNYd', '6743829'), - (60, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '8mR9wNYd', '7030380'), - (60, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '8mR9wNYd', '7033677'), - (60, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '8mR9wNYd', '7035415'), - (60, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '8mR9wNYd', '7044715'), - (60, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '8mR9wNYd', '7050318'), - (60, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '8mR9wNYd', '7050319'), - (60, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '8mR9wNYd', '7050322'), - (60, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '8mR9wNYd', '7057804'), - (60, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '8mR9wNYd', '7059866'), - (60, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '8mR9wNYd', '7072824'), - (60, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '8mR9wNYd', '7074348'), - (60, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '8mR9wNYd', '7074364'), - (60, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '8mR9wNYd', '7089267'), - (60, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '8mR9wNYd', '7098747'), - (60, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '8mR9wNYd', '7113468'), - (60, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '8mR9wNYd', '7114856'), - (60, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '8mR9wNYd', '7114951'), - (60, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '8mR9wNYd', '7114955'), - (60, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '8mR9wNYd', '7114956'), - (60, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '8mR9wNYd', '7114957'), - (60, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '8mR9wNYd', '7153615'), - (60, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '8mR9wNYd', '7159484'), - (60, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '8mR9wNYd', '7178446'), - (60, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '8mR9wNYd', '7220467'), - (60, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '8mR9wNYd', '7240354'), - (60, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '8mR9wNYd', '7251633'), - (60, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '8mR9wNYd', '7263048'), - (60, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '8mR9wNYd', '7302674'), - (60, 2679, 'attending', '2024-06-22 18:31:37', '2025-12-17 19:46:29', '8mR9wNYd', '7319490'), - (60, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '8mR9wNYd', '7324073'), - (60, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '8mR9wNYd', '7324074'), - (60, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '8mR9wNYd', '7324075'), - (60, 2691, 'attending', '2024-07-20 22:06:25', '2025-12-17 19:46:30', '8mR9wNYd', '7324076'), - (60, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '8mR9wNYd', '7324078'), - (60, 2695, 'attending', '2024-08-17 17:42:35', '2025-12-17 19:46:31', '8mR9wNYd', '7324080'), - (60, 2696, 'attending', '2024-08-24 20:37:29', '2025-12-17 19:46:32', '8mR9wNYd', '7324081'), - (60, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '8mR9wNYd', '7324082'), - (60, 2698, 'maybe', '2024-09-06 12:12:22', '2025-12-17 19:46:24', '8mR9wNYd', '7324083'), - (60, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '8mR9wNYd', '7331457'), - (60, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '8mR9wNYd', '7356752'), - (60, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '8mR9wNYd', '7363643'), - (60, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '8mR9wNYd', '7368606'), - (60, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '8mR9wNYd', '7397462'), - (60, 2821, 'maybe', '2024-10-08 14:06:06', '2025-12-17 19:46:26', '8mR9wNYd', '7424275'), - (60, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '8mR9wNYd', '7424276'), - (60, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '8mR9wNYd', '7432751'), - (60, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '8mR9wNYd', '7432752'), - (60, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '8mR9wNYd', '7432753'), - (60, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '8mR9wNYd', '7432754'), - (60, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '8mR9wNYd', '7432755'), - (60, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '8mR9wNYd', '7432756'), - (60, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '8mR9wNYd', '7432758'), - (60, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '8mR9wNYd', '7432759'), - (60, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '8mR9wNYd', '7433834'), - (60, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '8mR9wNYd', '7470197'), - (60, 2878, 'maybe', '2024-10-16 21:09:30', '2025-12-17 19:46:26', '8mR9wNYd', '7633857'), - (60, 2881, 'attending', '2024-10-29 03:20:35', '2025-12-17 19:46:26', '8mR9wNYd', '7644047'), - (60, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '8mR9wNYd', '7685613'), - (60, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '8mR9wNYd', '7688194'), - (60, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '8mR9wNYd', '7688196'), - (60, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '8mR9wNYd', '7688289'), - (60, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '8mR9wNYd', '7692763'), - (60, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '8mR9wNYd', '7697552'), - (60, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '8mR9wNYd', '7699878'), - (60, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '8mR9wNYd', '7704043'), - (60, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '8mR9wNYd', '7712467'), - (60, 2926, 'attending', '2024-12-07 21:58:52', '2025-12-17 19:46:21', '8mR9wNYd', '7713585'), - (60, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '8mR9wNYd', '7713586'), - (60, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '8mR9wNYd', '7738518'), - (60, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '8mR9wNYd', '7750632'), - (60, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '8mR9wNYd', '7750636'), - (60, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '8mR9wNYd', '7796540'), - (60, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '8mR9wNYd', '7796541'), - (60, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '8mR9wNYd', '7796542'), - (60, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '8mR9wNYd', '7825913'), - (60, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '8mR9wNYd', '7826209'), - (60, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '8mR9wNYd', '7834742'), - (60, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '8mR9wNYd', '7842108'), - (60, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '8mR9wNYd', '7842902'), - (60, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '8mR9wNYd', '7842903'), - (60, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '8mR9wNYd', '7842904'), - (60, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '8mR9wNYd', '7842905'), - (60, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '8mR9wNYd', '7855719'), - (60, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '8mR9wNYd', '7860683'), - (60, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '8mR9wNYd', '7860684'), - (60, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '8mR9wNYd', '7866095'), - (60, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '8mR9wNYd', '7869170'), - (60, 3014, 'attending', '2025-04-01 17:20:47', '2025-12-17 19:46:19', '8mR9wNYd', '7869185'), - (60, 3015, 'attending', '2025-04-21 16:31:35', '2025-12-17 19:46:20', '8mR9wNYd', '7869186'), - (60, 3016, 'attending', '2025-04-16 13:18:55', '2025-12-17 19:46:20', '8mR9wNYd', '7869187'), - (60, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '8mR9wNYd', '7869188'), - (60, 3018, 'attending', '2025-04-09 20:33:10', '2025-12-17 19:46:20', '8mR9wNYd', '7869189'), - (60, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '8mR9wNYd', '7869201'), - (60, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '8mR9wNYd', '7877465'), - (60, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '8mR9wNYd', '7878570'), - (60, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '8mR9wNYd', '7888250'), - (60, 3088, 'maybe', '2025-06-12 14:42:46', '2025-12-17 19:46:15', '8mR9wNYd', '7904777'), - (60, 3094, 'maybe', '2025-05-10 12:55:02', '2025-12-17 19:46:21', '8mR9wNYd', '8342292'), - (60, 3095, 'attending', '2025-04-29 14:21:22', '2025-12-17 19:46:20', '8mR9wNYd', '8342293'), - (60, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '8mR9wNYd', '8349164'), - (60, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '8mR9wNYd', '8349545'), - (60, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '8mR9wNYd', '8353584'), - (60, 3131, 'not_attending', '2025-05-15 12:41:49', '2025-12-17 19:46:21', '8mR9wNYd', '8368028'), - (60, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '8mR9wNYd', '8368029'), - (60, 3133, 'maybe', '2025-05-29 14:53:43', '2025-12-17 19:46:14', '8mR9wNYd', '8368030'), - (60, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '8mR9wNYd', '8388462'), - (60, 3150, 'attending', '2025-06-21 16:32:48', '2025-12-17 19:46:15', '8mR9wNYd', '8393174'), - (60, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '8mR9wNYd', '8400273'), - (60, 3154, 'attending', '2025-06-28 18:06:03', '2025-12-17 19:46:15', '8mR9wNYd', '8400274'), - (60, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '8mR9wNYd', '8400275'), - (60, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '8mR9wNYd', '8400276'), - (60, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '8mR9wNYd', '8404977'), - (60, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '8mR9wNYd', '8430783'), - (60, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '8mR9wNYd', '8430784'), - (60, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '8mR9wNYd', '8430799'), - (60, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '8mR9wNYd', '8430800'), - (60, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '8mR9wNYd', '8430801'), - (60, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '8mR9wNYd', '8438709'), - (60, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '8mR9wNYd', '8457738'), - (60, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '8mR9wNYd', '8459566'), - (60, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '8mR9wNYd', '8459567'), - (60, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '8mR9wNYd', '8461032'), - (60, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '8mR9wNYd', '8477877'), - (60, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '8mR9wNYd', '8485688'), - (60, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '8mR9wNYd', '8490587'), - (60, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '8mR9wNYd', '8493552'), - (60, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '8mR9wNYd', '8493553'), - (60, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '8mR9wNYd', '8493554'), - (60, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '8mR9wNYd', '8493555'), - (60, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '8mR9wNYd', '8493556'), - (60, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '8mR9wNYd', '8493557'), - (60, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '8mR9wNYd', '8493558'), - (60, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '8mR9wNYd', '8493559'), - (60, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '8mR9wNYd', '8493560'), - (60, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '8mR9wNYd', '8493561'), - (60, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '8mR9wNYd', '8493572'), - (60, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '8mR9wNYd', '8540725'), - (60, 3305, 'attending', '2025-12-06 20:19:17', '2025-12-17 19:46:11', '8mR9wNYd', '8550025'), - (60, 3306, 'attending', '2025-12-13 18:55:19', '2025-12-17 19:46:11', '8mR9wNYd', '8550026'), - (60, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '8mR9wNYd', '8555421'), - (61, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOpMqqEm', '5630967'), - (61, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOpMqqEm', '5630968'), - (61, 1727, 'attending', '2022-11-28 01:58:09', '2025-12-17 19:47:16', 'dOpMqqEm', '5630969'), - (61, 1744, 'maybe', '2022-11-23 16:42:10', '2025-12-17 19:47:16', 'dOpMqqEm', '5642818'), - (61, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOpMqqEm', '5670445'), - (61, 1784, 'not_attending', '2022-11-16 19:58:39', '2025-12-17 19:47:16', 'dOpMqqEm', '5699760'), - (61, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOpMqqEm', '5741601'), - (61, 1795, 'attending', '2022-11-16 18:40:21', '2025-12-17 19:47:16', 'dOpMqqEm', '5754366'), - (61, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOpMqqEm', '5763458'), - (61, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOpMqqEm', '5774172'), - (61, 1826, 'attending', '2022-11-28 02:00:09', '2025-12-17 19:47:04', 'dOpMqqEm', '5776768'), - (61, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOpMqqEm', '5818247'), - (61, 1834, 'maybe', '2022-12-10 18:12:57', '2025-12-17 19:47:17', 'dOpMqqEm', '5819470'), - (61, 1835, 'maybe', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOpMqqEm', '5819471'), - (61, 1839, 'attending', '2022-12-06 04:37:28', '2025-12-17 19:47:04', 'dOpMqqEm', '5821920'), - (61, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOpMqqEm', '5827739'), - (61, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOpMqqEm', '5844306'), - (61, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOpMqqEm', '5850159'), - (61, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOpMqqEm', '5858999'), - (61, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOpMqqEm', '5871984'), - (61, 1861, 'maybe', '2023-01-17 16:10:08', '2025-12-17 19:47:05', 'dOpMqqEm', '5876354'), - (61, 1864, 'attending', '2023-01-17 04:44:23', '2025-12-17 19:47:05', 'dOpMqqEm', '5879675'), - (61, 1865, 'attending', '2023-01-26 12:02:56', '2025-12-17 19:47:06', 'dOpMqqEm', '5879676'), - (61, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dOpMqqEm', '5880939'), - (61, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dOpMqqEm', '5880940'), - (61, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dOpMqqEm', '5880942'), - (61, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dOpMqqEm', '5880943'), - (61, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOpMqqEm', '5887890'), - (61, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOpMqqEm', '5888598'), - (61, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOpMqqEm', '5893260'), - (61, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dOpMqqEm', '5899826'), - (61, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dOpMqqEm', '5900199'), - (61, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dOpMqqEm', '5900200'), - (61, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOpMqqEm', '5900202'), - (61, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOpMqqEm', '5900203'), - (61, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dOpMqqEm', '5901108'), - (61, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dOpMqqEm', '5901126'), - (61, 1897, 'attending', '2023-02-07 12:19:03', '2025-12-17 19:47:07', 'dOpMqqEm', '5901128'), - (61, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dOpMqqEm', '5909655'), - (61, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dOpMqqEm', '5910522'), - (61, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dOpMqqEm', '5910526'), - (61, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dOpMqqEm', '5910528'), - (61, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dOpMqqEm', '5916219'), - (61, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dOpMqqEm', '5936234'), - (61, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dOpMqqEm', '5958351'), - (61, 1936, 'attending', '2023-02-26 00:16:58', '2025-12-17 19:47:08', 'dOpMqqEm', '5959397'), - (61, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dOpMqqEm', '5959751'), - (61, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dOpMqqEm', '5959755'), - (61, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dOpMqqEm', '5960055'), - (61, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dOpMqqEm', '5961684'), - (61, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dOpMqqEm', '5962132'), - (61, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dOpMqqEm', '5962133'), - (61, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dOpMqqEm', '5962134'), - (61, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dOpMqqEm', '5962317'), - (61, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dOpMqqEm', '5962318'), - (61, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dOpMqqEm', '5965933'), - (61, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dOpMqqEm', '5967014'), - (61, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dOpMqqEm', '5972815'), - (61, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dOpMqqEm', '5974016'), - (61, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dOpMqqEm', '5981515'), - (61, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOpMqqEm', '5993516'), - (61, 1973, 'maybe', '2023-03-18 14:16:32', '2025-12-17 19:46:56', 'dOpMqqEm', '5993777'), - (61, 1974, 'maybe', '2023-03-30 20:50:03', '2025-12-17 19:46:57', 'dOpMqqEm', '5993778'), - (61, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOpMqqEm', '5998939'), - (61, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOpMqqEm', '6028191'), - (61, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOpMqqEm', '6040066'), - (61, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOpMqqEm', '6042717'), - (61, 1986, 'maybe', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOpMqqEm', '6044838'), - (61, 1987, 'maybe', '2023-04-18 16:05:24', '2025-12-17 19:47:00', 'dOpMqqEm', '6044839'), - (61, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOpMqqEm', '6045684'), - (61, 1992, 'maybe', '2023-04-01 15:22:29', '2025-12-17 19:46:58', 'dOpMqqEm', '6048742'), - (61, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dOpMqqEm', '6050104'), - (61, 1999, 'maybe', '2023-04-18 16:05:38', '2025-12-17 19:47:00', 'dOpMqqEm', '6052057'), - (61, 2002, 'maybe', '2023-04-28 21:43:05', '2025-12-17 19:47:01', 'dOpMqqEm', '6052605'), - (61, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOpMqqEm', '6053195'), - (61, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOpMqqEm', '6053198'), - (61, 2008, 'maybe', '2023-04-07 16:42:47', '2025-12-17 19:46:58', 'dOpMqqEm', '6055808'), - (61, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOpMqqEm', '6056085'), - (61, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOpMqqEm', '6056916'), - (61, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOpMqqEm', '6059290'), - (61, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOpMqqEm', '6060328'), - (61, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOpMqqEm', '6061037'), - (61, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOpMqqEm', '6061039'), - (61, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOpMqqEm', '6067245'), - (61, 2026, 'attending', '2023-04-24 14:03:18', '2025-12-17 19:47:01', 'dOpMqqEm', '6068078'), - (61, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOpMqqEm', '6068094'), - (61, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOpMqqEm', '6068252'), - (61, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOpMqqEm', '6068253'), - (61, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOpMqqEm', '6068254'), - (61, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dOpMqqEm', '6068280'), - (61, 2032, 'attending', '2023-06-02 17:39:22', '2025-12-17 19:47:04', 'dOpMqqEm', '6068281'), - (61, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOpMqqEm', '6069093'), - (61, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOpMqqEm', '6072528'), - (61, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOpMqqEm', '6079840'), - (61, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOpMqqEm', '6083398'), - (61, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dOpMqqEm', '6093504'), - (61, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOpMqqEm', '6097414'), - (61, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOpMqqEm', '6097442'), - (61, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOpMqqEm', '6097684'), - (61, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOpMqqEm', '6098762'), - (61, 2064, 'maybe', '2023-06-24 15:14:23', '2025-12-17 19:46:50', 'dOpMqqEm', '6099988'), - (61, 2065, 'attending', '2023-06-15 23:48:50', '2025-12-17 19:46:49', 'dOpMqqEm', '6101169'), - (61, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOpMqqEm', '6101361'), - (61, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOpMqqEm', '6101362'), - (61, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dOpMqqEm', '6103752'), - (61, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOpMqqEm', '6107314'), - (61, 2085, 'attending', '2023-05-30 23:03:03', '2025-12-17 19:47:04', 'dOpMqqEm', '6118068'), - (61, 2087, 'attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOpMqqEm', '6120034'), - (61, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dOpMqqEm', '6136733'), - (61, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOpMqqEm', '6137989'), - (61, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOpMqqEm', '6150864'), - (61, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOpMqqEm', '6155491'), - (61, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOpMqqEm', '6164417'), - (61, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOpMqqEm', '6166388'), - (61, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOpMqqEm', '6176439'), - (61, 2122, 'attending', '2023-06-27 22:03:23', '2025-12-17 19:46:51', 'dOpMqqEm', '6176476'), - (61, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dOpMqqEm', '6180853'), - (61, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOpMqqEm', '6182410'), - (61, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOpMqqEm', '6185812'), - (61, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOpMqqEm', '6187651'), - (61, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOpMqqEm', '6187963'), - (61, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOpMqqEm', '6187964'), - (61, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOpMqqEm', '6187966'), - (61, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOpMqqEm', '6187967'), - (61, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOpMqqEm', '6187969'), - (61, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOpMqqEm', '6334878'), - (61, 2152, 'maybe', '2023-07-14 21:43:35', '2025-12-17 19:46:52', 'dOpMqqEm', '6337021'), - (61, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOpMqqEm', '6337236'), - (61, 2155, 'maybe', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOpMqqEm', '6337970'), - (61, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOpMqqEm', '6338308'), - (61, 2159, 'attending', '2023-07-19 14:55:59', '2025-12-17 19:46:53', 'dOpMqqEm', '6338355'), - (61, 2160, 'attending', '2023-07-29 14:37:12', '2025-12-17 19:46:54', 'dOpMqqEm', '6338358'), - (61, 2161, 'attending', '2023-07-15 19:11:38', '2025-12-17 19:46:52', 'dOpMqqEm', '6340748'), - (61, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dOpMqqEm', '6340845'), - (61, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOpMqqEm', '6341710'), - (61, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOpMqqEm', '6342044'), - (61, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOpMqqEm', '6342298'), - (61, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOpMqqEm', '6343294'), - (61, 2175, 'not_attending', '2023-07-22 18:59:02', '2025-12-17 19:46:53', 'dOpMqqEm', '6346982'), - (61, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOpMqqEm', '6347034'), - (61, 2177, 'attending', '2023-08-11 19:36:58', '2025-12-17 19:46:55', 'dOpMqqEm', '6347053'), - (61, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOpMqqEm', '6347056'), - (61, 2184, 'attending', '2023-07-29 20:37:46', '2025-12-17 19:46:54', 'dOpMqqEm', '6353825'), - (61, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOpMqqEm', '6353830'), - (61, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOpMqqEm', '6353831'), - (61, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOpMqqEm', '6357867'), - (61, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOpMqqEm', '6358652'), - (61, 2196, 'attending', '2023-08-29 23:11:00', '2025-12-17 19:46:56', 'dOpMqqEm', '6359398'), - (61, 2197, 'attending', '2023-09-13 03:13:42', '2025-12-17 19:46:44', 'dOpMqqEm', '6359399'), - (61, 2198, 'attending', '2023-09-13 03:13:45', '2025-12-17 19:46:45', 'dOpMqqEm', '6359400'), - (61, 2200, 'attending', '2023-08-10 23:02:56', '2025-12-17 19:46:55', 'dOpMqqEm', '6359850'), - (61, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'dOpMqqEm', '6359940'), - (61, 2204, 'attending', '2023-08-16 14:06:46', '2025-12-17 19:46:55', 'dOpMqqEm', '6361542'), - (61, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOpMqqEm', '6361709'), - (61, 2209, 'attending', '2023-08-23 14:13:43', '2025-12-17 19:46:55', 'dOpMqqEm', '6361710'), - (61, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOpMqqEm', '6361711'), - (61, 2211, 'attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOpMqqEm', '6361712'), - (61, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOpMqqEm', '6361713'), - (61, 2214, 'attending', '2023-08-12 02:50:01', '2025-12-17 19:46:55', 'dOpMqqEm', '6363218'), - (61, 2218, 'attending', '2023-08-16 23:56:33', '2025-12-17 19:46:55', 'dOpMqqEm', '6367308'), - (61, 2220, 'attending', '2023-09-04 22:55:32', '2025-12-17 19:46:56', 'dOpMqqEm', '6367310'), - (61, 2228, 'not_attending', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'dOpMqqEm', '6372777'), - (61, 2232, 'attending', '2023-08-22 23:29:42', '2025-12-17 19:46:55', 'dOpMqqEm', '6374818'), - (61, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOpMqqEm', '6382573'), - (61, 2239, 'attending', '2023-09-01 18:32:10', '2025-12-17 19:46:56', 'dOpMqqEm', '6387592'), - (61, 2240, 'attending', '2023-09-08 18:13:54', '2025-12-17 19:46:56', 'dOpMqqEm', '6388603'), - (61, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOpMqqEm', '6388604'), - (61, 2242, 'attending', '2023-09-23 05:41:05', '2025-12-17 19:46:45', 'dOpMqqEm', '6388606'), - (61, 2243, 'maybe', '2023-09-07 21:31:20', '2025-12-17 19:46:56', 'dOpMqqEm', '6393686'), - (61, 2244, 'attending', '2023-09-08 06:38:57', '2025-12-17 19:46:44', 'dOpMqqEm', '6393700'), - (61, 2245, 'attending', '2023-09-08 06:37:03', '2025-12-17 19:46:45', 'dOpMqqEm', '6393703'), - (61, 2247, 'attending', '2023-09-06 20:45:23', '2025-12-17 19:46:56', 'dOpMqqEm', '6394628'), - (61, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOpMqqEm', '6394629'), - (61, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOpMqqEm', '6394631'), - (61, 2253, 'attending', '2023-09-30 17:05:53', '2025-12-17 19:46:45', 'dOpMqqEm', '6401811'), - (61, 2257, 'attending', '2023-09-16 21:58:20', '2025-12-17 19:46:44', 'dOpMqqEm', '6408068'), - (61, 2263, 'attending', '2023-09-25 22:45:22', '2025-12-17 19:46:45', 'dOpMqqEm', '6429351'), - (61, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOpMqqEm', '6440863'), - (61, 2270, 'attending', '2023-10-02 22:42:13', '2025-12-17 19:46:46', 'dOpMqqEm', '6443067'), - (61, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOpMqqEm', '6445440'), - (61, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOpMqqEm', '6453951'), - (61, 2283, 'attending', '2023-10-09 18:15:49', '2025-12-17 19:46:46', 'dOpMqqEm', '6455503'), - (61, 2284, 'attending', '2023-10-11 00:08:31', '2025-12-17 19:46:46', 'dOpMqqEm', '6460928'), - (61, 2285, 'attending', '2023-10-16 02:07:34', '2025-12-17 19:46:47', 'dOpMqqEm', '6460929'), - (61, 2286, 'attending', '2023-11-30 00:41:37', '2025-12-17 19:46:48', 'dOpMqqEm', '6460930'), - (61, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOpMqqEm', '6461696'), - (61, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOpMqqEm', '6462129'), - (61, 2290, 'attending', '2023-10-18 13:08:22', '2025-12-17 19:46:46', 'dOpMqqEm', '6462214'), - (61, 2291, 'maybe', '2023-10-19 02:00:23', '2025-12-17 19:46:46', 'dOpMqqEm', '6462215'), - (61, 2293, 'attending', '2023-10-11 21:27:46', '2025-12-17 19:46:46', 'dOpMqqEm', '6463218'), - (61, 2299, 'attending', '2023-10-18 22:42:11', '2025-12-17 19:46:46', 'dOpMqqEm', '6472181'), - (61, 2303, 'attending', '2023-10-27 02:17:37', '2025-12-17 19:46:47', 'dOpMqqEm', '6482691'), - (61, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOpMqqEm', '6482693'), - (61, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dOpMqqEm', '6484200'), - (61, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOpMqqEm', '6484680'), - (61, 2310, 'attending', '2023-11-05 02:36:22', '2025-12-17 19:46:47', 'dOpMqqEm', '6487709'), - (61, 2314, 'attending', '2023-10-29 20:53:08', '2025-12-17 19:46:47', 'dOpMqqEm', '6493665'), - (61, 2315, 'attending', '2023-10-29 20:53:22', '2025-12-17 19:46:47', 'dOpMqqEm', '6493666'), - (61, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOpMqqEm', '6507741'), - (61, 2320, 'attending', '2023-10-30 20:32:05', '2025-12-17 19:46:47', 'dOpMqqEm', '6508647'), - (61, 2322, 'attending', '2023-11-13 06:45:47', '2025-12-17 19:46:48', 'dOpMqqEm', '6514659'), - (61, 2323, 'attending', '2023-11-27 04:13:51', '2025-12-17 19:46:48', 'dOpMqqEm', '6514660'), - (61, 2324, 'attending', '2023-12-07 22:29:57', '2025-12-17 19:46:49', 'dOpMqqEm', '6514662'), - (61, 2325, 'attending', '2023-12-07 22:29:59', '2025-12-17 19:46:36', 'dOpMqqEm', '6514663'), - (61, 2331, 'attending', '2023-11-09 04:19:36', '2025-12-17 19:46:47', 'dOpMqqEm', '6518640'), - (61, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOpMqqEm', '6519103'), - (61, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOpMqqEm', '6535681'), - (61, 2340, 'attending', '2023-11-21 18:23:00', '2025-12-17 19:46:48', 'dOpMqqEm', '6540279'), - (61, 2345, 'attending', '2023-11-29 22:23:45', '2025-12-17 19:46:48', 'dOpMqqEm', '6582414'), - (61, 2350, 'attending', '2023-11-21 02:01:13', '2025-12-17 19:46:48', 'dOpMqqEm', '6584352'), - (61, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOpMqqEm', '6584747'), - (61, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOpMqqEm', '6587097'), - (61, 2353, 'maybe', '2023-11-29 23:20:10', '2025-12-17 19:46:48', 'dOpMqqEm', '6588894'), - (61, 2355, 'maybe', '2023-12-01 00:44:06', '2025-12-17 19:46:49', 'dOpMqqEm', '6593339'), - (61, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOpMqqEm', '6609022'), - (61, 2364, 'attending', '2023-12-08 14:09:30', '2025-12-17 19:46:49', 'dOpMqqEm', '6613011'), - (61, 2367, 'attending', '2023-12-09 22:32:29', '2025-12-17 19:46:49', 'dOpMqqEm', '6620890'), - (61, 2371, 'attending', '2023-12-13 21:55:50', '2025-12-17 19:46:36', 'dOpMqqEm', '6624495'), - (61, 2373, 'attending', '2024-01-10 23:00:54', '2025-12-17 19:46:38', 'dOpMqqEm', '6632678'), - (61, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOpMqqEm', '6632757'), - (61, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOpMqqEm', '6644187'), - (61, 2380, 'attending', '2023-12-31 02:02:02', '2025-12-17 19:46:37', 'dOpMqqEm', '6645105'), - (61, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOpMqqEm', '6648951'), - (61, 2387, 'attending', '2024-01-03 00:46:25', '2025-12-17 19:46:37', 'dOpMqqEm', '6648952'), - (61, 2388, 'attending', '2024-01-04 03:36:44', '2025-12-17 19:46:37', 'dOpMqqEm', '6649244'), - (61, 2391, 'attending', '2024-01-08 00:43:26', '2025-12-17 19:46:37', 'dOpMqqEm', '6654138'), - (61, 2392, 'attending', '2024-01-06 16:19:15', '2025-12-17 19:46:37', 'dOpMqqEm', '6654412'), - (61, 2394, 'attending', '2024-01-06 16:19:16', '2025-12-17 19:46:38', 'dOpMqqEm', '6654470'), - (61, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOpMqqEm', '6655401'), - (61, 2399, 'attending', '2024-01-08 00:43:32', '2025-12-17 19:46:37', 'dOpMqqEm', '6657583'), - (61, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOpMqqEm', '6661585'), - (61, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOpMqqEm', '6661588'), - (61, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOpMqqEm', '6661589'), - (61, 2406, 'attending', '2024-01-16 01:47:53', '2025-12-17 19:46:40', 'dOpMqqEm', '6692344'), - (61, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOpMqqEm', '6699906'), - (61, 2408, 'attending', '2024-01-15 05:16:54', '2025-12-17 19:46:40', 'dOpMqqEm', '6699907'), - (61, 2409, 'attending', '2024-01-15 05:16:56', '2025-12-17 19:46:41', 'dOpMqqEm', '6699909'), - (61, 2410, 'attending', '2024-01-15 05:16:58', '2025-12-17 19:46:41', 'dOpMqqEm', '6699911'), - (61, 2411, 'attending', '2024-02-03 16:27:15', '2025-12-17 19:46:41', 'dOpMqqEm', '6699913'), - (61, 2412, 'attending', '2024-02-18 22:24:22', '2025-12-17 19:46:43', 'dOpMqqEm', '6700717'), - (61, 2413, 'maybe', '2024-02-18 19:56:36', '2025-12-17 19:46:42', 'dOpMqqEm', '6700719'), - (61, 2414, 'maybe', '2024-01-18 01:18:31', '2025-12-17 19:46:40', 'dOpMqqEm', '6701000'), - (61, 2415, 'attending', '2024-01-18 01:18:35', '2025-12-17 19:46:40', 'dOpMqqEm', '6701001'), - (61, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOpMqqEm', '6701109'), - (61, 2421, 'attending', '2024-01-26 01:09:53', '2025-12-17 19:46:40', 'dOpMqqEm', '6704598'), - (61, 2423, 'attending', '2024-01-19 01:26:02', '2025-12-17 19:46:40', 'dOpMqqEm', '6705141'), - (61, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOpMqqEm', '6705219'), - (61, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOpMqqEm', '6710153'), - (61, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOpMqqEm', '6711552'), - (61, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dOpMqqEm', '6711553'), - (61, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOpMqqEm', '6722688'), - (61, 2438, 'attending', '2024-02-07 23:26:11', '2025-12-17 19:46:41', 'dOpMqqEm', '6730201'), - (61, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOpMqqEm', '6730620'), - (61, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOpMqqEm', '6730642'), - (61, 2444, 'attending', '2024-02-04 14:48:19', '2025-12-17 19:46:41', 'dOpMqqEm', '6734367'), - (61, 2445, 'attending', '2024-02-04 14:48:21', '2025-12-17 19:46:41', 'dOpMqqEm', '6734368'), - (61, 2446, 'attending', '2024-03-01 03:58:17', '2025-12-17 19:46:43', 'dOpMqqEm', '6734369'), - (61, 2447, 'attending', '2024-03-13 14:57:23', '2025-12-17 19:46:32', 'dOpMqqEm', '6734370'), - (61, 2448, 'attending', '2024-03-26 14:43:49', '2025-12-17 19:46:33', 'dOpMqqEm', '6734371'), - (61, 2450, 'attending', '2024-02-05 18:28:22', '2025-12-17 19:46:41', 'dOpMqqEm', '6738807'), - (61, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOpMqqEm', '6740364'), - (61, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOpMqqEm', '6743829'), - (61, 2466, 'maybe', '2024-02-14 03:42:19', '2025-12-17 19:46:41', 'dOpMqqEm', '7026777'), - (61, 2467, 'maybe', '2024-02-25 04:16:27', '2025-12-17 19:46:43', 'dOpMqqEm', '7029987'), - (61, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOpMqqEm', '7030380'), - (61, 2472, 'attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOpMqqEm', '7033677'), - (61, 2474, 'attending', '2024-02-21 03:23:18', '2025-12-17 19:46:43', 'dOpMqqEm', '7035415'), - (61, 2478, 'attending', '2024-02-24 22:21:05', '2025-12-17 19:46:43', 'dOpMqqEm', '7036478'), - (61, 2480, 'maybe', '2024-02-25 04:16:35', '2025-12-17 19:46:43', 'dOpMqqEm', '7042160'), - (61, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOpMqqEm', '7044715'), - (61, 2484, 'attending', '2024-03-01 03:58:47', '2025-12-17 19:46:43', 'dOpMqqEm', '7046836'), - (61, 2489, 'attending', '2024-02-28 05:31:07', '2025-12-17 19:46:43', 'dOpMqqEm', '7050161'), - (61, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOpMqqEm', '7050318'), - (61, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOpMqqEm', '7050319'), - (61, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOpMqqEm', '7050322'), - (61, 2496, 'attending', '2024-03-02 22:32:54', '2025-12-17 19:46:43', 'dOpMqqEm', '7055967'), - (61, 2498, 'attending', '2024-03-19 04:36:08', '2025-12-17 19:46:33', 'dOpMqqEm', '7057662'), - (61, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOpMqqEm', '7057804'), - (61, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dOpMqqEm', '7059866'), - (61, 2505, 'attending', '2024-03-09 17:30:30', '2025-12-17 19:46:33', 'dOpMqqEm', '7069163'), - (61, 2507, 'attending', '2024-03-12 15:21:38', '2025-12-17 19:46:33', 'dOpMqqEm', '7072824'), - (61, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOpMqqEm', '7074348'), - (61, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dOpMqqEm', '7074364'), - (61, 2529, 'attending', '2024-05-22 23:44:14', '2025-12-17 19:46:35', 'dOpMqqEm', '7074369'), - (61, 2534, 'attending', '2024-03-13 16:18:33', '2025-12-17 19:46:32', 'dOpMqqEm', '7076875'), - (61, 2537, 'maybe', '2024-03-23 01:21:52', '2025-12-17 19:46:33', 'dOpMqqEm', '7085484'), - (61, 2538, 'attending', '2024-03-19 06:10:48', '2025-12-17 19:46:33', 'dOpMqqEm', '7085485'), - (61, 2539, 'attending', '2024-03-31 02:09:11', '2025-12-17 19:46:33', 'dOpMqqEm', '7085486'), - (61, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOpMqqEm', '7089267'), - (61, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOpMqqEm', '7098747'), - (61, 2553, 'attending', '2024-03-29 18:47:25', '2025-12-17 19:46:33', 'dOpMqqEm', '7113468'), - (61, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOpMqqEm', '7114856'), - (61, 2555, 'attending', '2024-04-02 21:31:57', '2025-12-17 19:46:33', 'dOpMqqEm', '7114951'), - (61, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOpMqqEm', '7114955'), - (61, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOpMqqEm', '7114956'), - (61, 2558, 'attending', '2024-04-03 01:09:16', '2025-12-17 19:46:35', 'dOpMqqEm', '7114957'), - (61, 2563, 'maybe', '2024-04-08 21:54:55', '2025-12-17 19:46:33', 'dOpMqqEm', '7134734'), - (61, 2564, 'maybe', '2024-04-07 12:40:50', '2025-12-17 19:46:33', 'dOpMqqEm', '7134735'), - (61, 2566, 'maybe', '2024-04-12 04:16:55', '2025-12-17 19:46:34', 'dOpMqqEm', '7140664'), - (61, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOpMqqEm', '7153615'), - (61, 2571, 'attending', '2024-04-08 17:47:55', '2025-12-17 19:46:33', 'dOpMqqEm', '7159484'), - (61, 2572, 'attending', '2024-04-13 19:27:14', '2025-12-17 19:46:33', 'dOpMqqEm', '7159522'), - (61, 2573, 'maybe', '2024-04-14 02:09:11', '2025-12-17 19:46:34', 'dOpMqqEm', '7160612'), - (61, 2575, 'attending', '2024-04-11 11:25:56', '2025-12-17 19:46:33', 'dOpMqqEm', '7164534'), - (61, 2580, 'maybe', '2024-04-11 22:55:32', '2025-12-17 19:46:34', 'dOpMqqEm', '7167272'), - (61, 2585, 'maybe', '2024-04-24 13:55:42', '2025-12-17 19:46:34', 'dOpMqqEm', '7175828'), - (61, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOpMqqEm', '7178446'), - (61, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOpMqqEm', '7220467'), - (61, 2604, 'attending', '2024-05-29 01:14:52', '2025-12-17 19:46:36', 'dOpMqqEm', '7225670'), - (61, 2609, 'attending', '2024-05-06 14:02:45', '2025-12-17 19:46:35', 'dOpMqqEm', '7240354'), - (61, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOpMqqEm', '7251633'), - (61, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dOpMqqEm', '7263048'), - (61, 2626, 'attending', '2024-05-16 01:16:57', '2025-12-17 19:46:35', 'dOpMqqEm', '7264723'), - (61, 2627, 'attending', '2024-05-21 22:47:10', '2025-12-17 19:46:35', 'dOpMqqEm', '7264724'), - (61, 2628, 'attending', '2024-05-30 02:03:51', '2025-12-17 19:46:36', 'dOpMqqEm', '7264725'), - (61, 2629, 'attending', '2024-06-03 02:14:50', '2025-12-17 19:46:28', 'dOpMqqEm', '7264726'), - (61, 2630, 'attending', '2024-05-15 19:34:50', '2025-12-17 19:46:35', 'dOpMqqEm', '7264801'), - (61, 2644, 'attending', '2024-05-19 13:44:24', '2025-12-17 19:46:35', 'dOpMqqEm', '7279039'), - (61, 2647, 'attending', '2024-06-03 17:53:11', '2025-12-17 19:46:28', 'dOpMqqEm', '7282057'), - (61, 2653, 'attending', '2024-05-25 21:00:47', '2025-12-17 19:46:35', 'dOpMqqEm', '7289186'), - (61, 2654, 'attending', '2024-05-28 00:07:11', '2025-12-17 19:46:36', 'dOpMqqEm', '7291219'), - (61, 2659, 'attending', '2024-06-01 21:54:55', '2025-12-17 19:46:36', 'dOpMqqEm', '7299599'), - (61, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOpMqqEm', '7302674'), - (61, 2664, 'attending', '2024-06-04 14:38:02', '2025-12-17 19:46:36', 'dOpMqqEm', '7306358'), - (61, 2665, 'attending', '2024-06-04 14:53:04', '2025-12-17 19:46:36', 'dOpMqqEm', '7306370'), - (61, 2666, 'attending', '2024-06-05 13:56:28', '2025-12-17 19:46:36', 'dOpMqqEm', '7307775'), - (61, 2668, 'maybe', '2024-06-07 03:05:11', '2025-12-17 19:46:36', 'dOpMqqEm', '7308821'), - (61, 2678, 'maybe', '2024-06-15 03:39:03', '2025-12-17 19:46:28', 'dOpMqqEm', '7319489'), - (61, 2679, 'attending', '2024-06-16 23:17:42', '2025-12-17 19:46:29', 'dOpMqqEm', '7319490'), - (61, 2687, 'attending', '2024-06-11 19:36:27', '2025-12-17 19:46:28', 'dOpMqqEm', '7324019'), - (61, 2688, 'attending', '2024-06-24 03:07:38', '2025-12-17 19:46:29', 'dOpMqqEm', '7324073'), - (61, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dOpMqqEm', '7324074'), - (61, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dOpMqqEm', '7324075'), - (61, 2691, 'attending', '2024-07-18 02:41:27', '2025-12-17 19:46:30', 'dOpMqqEm', '7324076'), - (61, 2692, 'attending', '2024-07-27 05:40:37', '2025-12-17 19:46:30', 'dOpMqqEm', '7324077'), - (61, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dOpMqqEm', '7324078'), - (61, 2694, 'attending', '2024-08-07 22:54:01', '2025-12-17 19:46:31', 'dOpMqqEm', '7324079'), - (61, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dOpMqqEm', '7324082'), - (61, 2698, 'attending', '2024-09-04 14:56:28', '2025-12-17 19:46:24', 'dOpMqqEm', '7324083'), - (61, 2700, 'attending', '2024-06-14 18:24:34', '2025-12-17 19:46:28', 'dOpMqqEm', '7324388'), - (61, 2705, 'attending', '2024-06-21 01:32:19', '2025-12-17 19:46:29', 'dOpMqqEm', '7324944'), - (61, 2707, 'attending', '2024-06-17 20:06:30', '2025-12-17 19:46:28', 'dOpMqqEm', '7324952'), - (61, 2711, 'attending', '2024-07-19 17:32:53', '2025-12-17 19:46:30', 'dOpMqqEm', '7326524'), - (61, 2712, 'attending', '2024-08-02 14:14:15', '2025-12-17 19:46:31', 'dOpMqqEm', '7326525'), - (61, 2720, 'maybe', '2024-06-18 21:37:33', '2025-12-17 19:46:28', 'dOpMqqEm', '7331436'), - (61, 2721, 'maybe', '2024-06-21 01:31:50', '2025-12-17 19:46:29', 'dOpMqqEm', '7331456'), - (61, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dOpMqqEm', '7331457'), - (61, 2723, 'attending', '2024-06-21 19:25:47', '2025-12-17 19:46:29', 'dOpMqqEm', '7332389'), - (61, 2724, 'attending', '2024-06-26 22:00:29', '2025-12-17 19:46:29', 'dOpMqqEm', '7332562'), - (61, 2737, 'attending', '2024-07-02 22:43:56', '2025-12-17 19:46:29', 'dOpMqqEm', '7344070'), - (61, 2738, 'maybe', '2024-07-05 12:13:41', '2025-12-17 19:46:29', 'dOpMqqEm', '7344085'), - (61, 2745, 'attending', '2024-07-25 20:13:02', '2025-12-17 19:46:30', 'dOpMqqEm', '7348712'), - (61, 2747, 'maybe', '2024-07-17 20:04:51', '2025-12-17 19:46:30', 'dOpMqqEm', '7353587'), - (61, 2749, 'attending', '2024-07-07 20:14:12', '2025-12-17 19:46:29', 'dOpMqqEm', '7355496'), - (61, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dOpMqqEm', '7356752'), - (61, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dOpMqqEm', '7358733'), - (61, 2764, 'attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dOpMqqEm', '7363595'), - (61, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dOpMqqEm', '7363643'), - (61, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dOpMqqEm', '7368606'), - (61, 2776, 'attending', '2024-07-24 16:47:45', '2025-12-17 19:46:30', 'dOpMqqEm', '7370690'), - (61, 2777, 'attending', '2024-07-24 16:47:47', '2025-12-17 19:46:30', 'dOpMqqEm', '7370870'), - (61, 2783, 'attending', '2024-07-29 22:06:56', '2025-12-17 19:46:31', 'dOpMqqEm', '7379699'), - (61, 2784, 'attending', '2024-07-30 16:01:57', '2025-12-17 19:46:31', 'dOpMqqEm', '7380872'), - (61, 2788, 'attending', '2024-08-02 22:44:16', '2025-12-17 19:46:31', 'dOpMqqEm', '7384036'), - (61, 2794, 'not_attending', '2024-08-08 01:51:03', '2025-12-17 19:46:31', 'dOpMqqEm', '7391173'), - (61, 2802, 'attending', '2024-09-02 06:36:32', '2025-12-17 19:46:32', 'dOpMqqEm', '7397463'), - (61, 2806, 'attending', '2024-09-17 14:56:47', '2025-12-17 19:46:25', 'dOpMqqEm', '7404888'), - (61, 2821, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOpMqqEm', '7424275'), - (61, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dOpMqqEm', '7424276'), - (61, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dOpMqqEm', '7432751'), - (61, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dOpMqqEm', '7432752'), - (61, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dOpMqqEm', '7432753'), - (61, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dOpMqqEm', '7432754'), - (61, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dOpMqqEm', '7432755'), - (61, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dOpMqqEm', '7432756'), - (61, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOpMqqEm', '7432758'), - (61, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dOpMqqEm', '7432759'), - (61, 2832, 'attending', '2024-09-11 22:44:11', '2025-12-17 19:46:24', 'dOpMqqEm', '7433324'), - (61, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dOpMqqEm', '7433834'), - (61, 2834, 'attending', '2024-09-10 21:37:44', '2025-12-17 19:46:25', 'dOpMqqEm', '7433852'), - (61, 2844, 'attending', '2024-09-20 20:24:39', '2025-12-17 19:46:25', 'dOpMqqEm', '7450233'), - (61, 2856, 'attending', '2024-10-10 22:16:53', '2025-12-17 19:46:26', 'dOpMqqEm', '7469386'), - (61, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dOpMqqEm', '7470197'), - (61, 2878, 'maybe', '2024-10-16 20:57:05', '2025-12-17 19:46:26', 'dOpMqqEm', '7633857'), - (61, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dOpMqqEm', '7685613'), - (61, 2899, 'attending', '2024-11-07 17:16:51', '2025-12-17 19:46:27', 'dOpMqqEm', '7685616'), - (61, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dOpMqqEm', '7688194'), - (61, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dOpMqqEm', '7688196'), - (61, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dOpMqqEm', '7688289'), - (61, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dOpMqqEm', '7692763'), - (61, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dOpMqqEm', '7697552'), - (61, 2916, 'attending', '2024-11-17 16:58:49', '2025-12-17 19:46:27', 'dOpMqqEm', '7699006'), - (61, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dOpMqqEm', '7699878'), - (61, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dOpMqqEm', '7704043'), - (61, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dOpMqqEm', '7712467'), - (61, 2925, 'attending', '2024-12-08 12:42:17', '2025-12-17 19:46:21', 'dOpMqqEm', '7713584'), - (61, 2926, 'attending', '2024-12-03 20:10:47', '2025-12-17 19:46:21', 'dOpMqqEm', '7713585'), - (61, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dOpMqqEm', '7713586'), - (61, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dOpMqqEm', '7738518'), - (61, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dOpMqqEm', '7750636'), - (61, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dOpMqqEm', '7796540'), - (61, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dOpMqqEm', '7796541'), - (61, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dOpMqqEm', '7796542'), - (61, 2972, 'attending', '2025-01-16 22:06:36', '2025-12-17 19:46:22', 'dOpMqqEm', '7812563'), - (61, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dOpMqqEm', '7825913'), - (61, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dOpMqqEm', '7825920'), - (61, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dOpMqqEm', '7826209'), - (61, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dOpMqqEm', '7834742'), - (61, 2988, 'attending', '2025-02-07 14:33:49', '2025-12-17 19:46:23', 'dOpMqqEm', '7839569'), - (61, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dOpMqqEm', '7842108'), - (61, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dOpMqqEm', '7842902'), - (61, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dOpMqqEm', '7842903'), - (61, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dOpMqqEm', '7842904'), - (61, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dOpMqqEm', '7842905'), - (61, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dOpMqqEm', '7855719'), - (61, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dOpMqqEm', '7860683'), - (61, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dOpMqqEm', '7860684'), - (61, 3010, 'attending', '2025-02-28 23:06:22', '2025-12-17 19:46:18', 'dOpMqqEm', '7864879'), - (61, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dOpMqqEm', '7866095'), - (61, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dOpMqqEm', '7869170'), - (61, 3014, 'attending', '2025-03-26 03:02:11', '2025-12-17 19:46:19', 'dOpMqqEm', '7869185'), - (61, 3015, 'attending', '2025-03-26 03:02:25', '2025-12-17 19:46:20', 'dOpMqqEm', '7869186'), - (61, 3016, 'attending', '2025-03-26 03:02:20', '2025-12-17 19:46:20', 'dOpMqqEm', '7869187'), - (61, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dOpMqqEm', '7869188'), - (61, 3018, 'attending', '2025-03-26 03:02:16', '2025-12-17 19:46:20', 'dOpMqqEm', '7869189'), - (61, 3028, 'attending', '2025-04-20 02:51:45', '2025-12-17 19:46:20', 'dOpMqqEm', '7869199'), - (61, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dOpMqqEm', '7869201'), - (61, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dOpMqqEm', '7877465'), - (61, 3034, 'attending', '2025-03-11 22:18:14', '2025-12-17 19:46:18', 'dOpMqqEm', '7878570'), - (61, 3036, 'attending', '2025-03-13 15:34:16', '2025-12-17 19:46:19', 'dOpMqqEm', '7880952'), - (61, 3039, 'attending', '2025-03-14 03:00:25', '2025-12-17 19:46:19', 'dOpMqqEm', '7881992'), - (61, 3048, 'attending', '2025-04-19 13:32:04', '2025-12-17 19:46:20', 'dOpMqqEm', '7882694'), - (61, 3054, 'maybe', '2025-03-17 00:16:03', '2025-12-17 19:46:19', 'dOpMqqEm', '7884168'), - (61, 3055, 'attending', '2025-03-20 22:36:04', '2025-12-17 19:46:19', 'dOpMqqEm', '7888118'), - (61, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dOpMqqEm', '7888250'), - (61, 3060, 'attending', '2025-03-27 14:13:21', '2025-12-17 19:46:19', 'dOpMqqEm', '7892589'), - (61, 3061, 'attending', '2025-03-27 15:06:03', '2025-12-17 19:46:19', 'dOpMqqEm', '7892590'), - (61, 3071, 'attending', '2025-03-31 20:39:51', '2025-12-17 19:46:19', 'dOpMqqEm', '7895429'), - (61, 3072, 'attending', '2025-04-03 03:52:44', '2025-12-17 19:46:19', 'dOpMqqEm', '7895449'), - (61, 3073, 'attending', '2025-04-03 20:28:01', '2025-12-17 19:46:19', 'dOpMqqEm', '7897303'), - (61, 3075, 'maybe', '2025-04-06 14:43:10', '2025-12-17 19:46:20', 'dOpMqqEm', '7898896'), - (61, 3080, 'attending', '2025-04-06 16:24:04', '2025-12-17 19:46:20', 'dOpMqqEm', '7901441'), - (61, 3084, 'attending', '2025-04-08 19:11:02', '2025-12-17 19:46:20', 'dOpMqqEm', '7903687'), - (61, 3085, 'attending', '2025-04-08 19:11:04', '2025-12-17 19:46:20', 'dOpMqqEm', '7903688'), - (61, 3088, 'attending', '2025-06-03 13:50:06', '2025-12-17 19:46:15', 'dOpMqqEm', '7904777'), - (61, 3090, 'attending', '2025-04-16 00:37:30', '2025-12-17 19:46:20', 'dOpMqqEm', '7914315'), - (61, 3094, 'attending', '2025-05-06 19:35:09', '2025-12-17 19:46:21', 'dOpMqqEm', '8342292'), - (61, 3095, 'attending', '2025-05-03 18:18:25', '2025-12-17 19:46:20', 'dOpMqqEm', '8342293'), - (61, 3096, 'attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dOpMqqEm', '8342987'), - (61, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dOpMqqEm', '8349164'), - (61, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dOpMqqEm', '8349545'), - (61, 3110, 'attending', '2025-04-29 19:52:29', '2025-12-17 19:46:20', 'dOpMqqEm', '8353484'), - (61, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dOpMqqEm', '8353584'), - (61, 3122, 'attending', '2025-05-08 14:24:14', '2025-12-17 19:46:21', 'dOpMqqEm', '8362978'), - (61, 3123, 'attending', '2025-05-08 18:49:23', '2025-12-17 19:46:21', 'dOpMqqEm', '8363523'), - (61, 3127, 'attending', '2025-05-11 03:58:21', '2025-12-17 19:46:21', 'dOpMqqEm', '8365615'), - (61, 3131, 'attending', '2025-05-14 01:27:58', '2025-12-17 19:46:21', 'dOpMqqEm', '8368028'), - (61, 3132, 'attending', '2025-05-19 14:58:14', '2025-12-17 19:46:21', 'dOpMqqEm', '8368029'), - (61, 3133, 'attending', '2025-05-19 14:58:16', '2025-12-17 19:46:14', 'dOpMqqEm', '8368030'), - (61, 3134, 'attending', '2025-05-17 22:23:49', '2025-12-17 19:46:21', 'dOpMqqEm', '8368031'), - (61, 3135, 'attending', '2025-05-17 19:47:01', '2025-12-17 19:46:21', 'dOpMqqEm', '8373126'), - (61, 3137, 'attending', '2025-05-19 14:57:42', '2025-12-17 19:46:21', 'dOpMqqEm', '8374153'), - (61, 3138, 'attending', '2025-05-18 16:48:23', '2025-12-17 19:46:21', 'dOpMqqEm', '8376037'), - (61, 3139, 'attending', '2025-05-24 21:55:59', '2025-12-17 19:46:21', 'dOpMqqEm', '8377425'), - (61, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dOpMqqEm', '8388462'), - (61, 3144, 'attending', '2025-05-30 20:25:04', '2025-12-17 19:46:14', 'dOpMqqEm', '8393073'), - (61, 3150, 'attending', '2025-06-03 13:50:13', '2025-12-17 19:46:15', 'dOpMqqEm', '8393174'), - (61, 3153, 'attending', '2025-06-03 13:49:54', '2025-12-17 19:46:15', 'dOpMqqEm', '8400273'), - (61, 3154, 'attending', '2025-06-26 04:44:07', '2025-12-17 19:46:15', 'dOpMqqEm', '8400274'), - (61, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dOpMqqEm', '8400275'), - (61, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dOpMqqEm', '8400276'), - (61, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dOpMqqEm', '8404977'), - (61, 3173, 'attending', '2025-06-14 17:02:54', '2025-12-17 19:46:15', 'dOpMqqEm', '8410806'), - (61, 3178, 'attending', '2025-06-24 22:05:02', '2025-12-17 19:46:15', 'dOpMqqEm', '8421848'), - (61, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dOpMqqEm', '8430783'), - (61, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dOpMqqEm', '8430784'), - (61, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dOpMqqEm', '8430799'), - (61, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dOpMqqEm', '8430800'), - (61, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dOpMqqEm', '8430801'), - (61, 3188, 'attending', '2025-07-08 18:23:58', '2025-12-17 19:46:17', 'dOpMqqEm', '8438709'), - (61, 3189, 'attending', '2025-07-10 22:09:54', '2025-12-17 19:46:16', 'dOpMqqEm', '8438849'), - (61, 3192, 'maybe', '2025-07-15 17:12:51', '2025-12-17 19:46:17', 'dOpMqqEm', '8456429'), - (61, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dOpMqqEm', '8457738'), - (61, 3194, 'attending', '2025-07-17 22:37:09', '2025-12-17 19:46:17', 'dOpMqqEm', '8457740'), - (61, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dOpMqqEm', '8459566'), - (61, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dOpMqqEm', '8459567'), - (61, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dOpMqqEm', '8461032'), - (61, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dOpMqqEm', '8477877'), - (61, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dOpMqqEm', '8485688'), - (61, 3235, 'attending', '2025-08-18 22:28:37', '2025-12-17 19:46:18', 'dOpMqqEm', '8490587'), - (61, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dOpMqqEm', '8493552'), - (61, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dOpMqqEm', '8493553'), - (61, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dOpMqqEm', '8493554'), - (61, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dOpMqqEm', '8493555'), - (61, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dOpMqqEm', '8493556'), - (61, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dOpMqqEm', '8493557'), - (61, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dOpMqqEm', '8493558'), - (61, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dOpMqqEm', '8493559'), - (61, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dOpMqqEm', '8493560'), - (61, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dOpMqqEm', '8493561'), - (61, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dOpMqqEm', '8493572'), - (61, 3257, 'attending', '2025-08-28 20:56:22', '2025-12-17 19:46:11', 'dOpMqqEm', '8502340'), - (61, 3258, 'attending', '2025-09-02 14:30:00', '2025-12-17 19:46:11', 'dOpMqqEm', '8510285'), - (61, 3263, 'attending', '2025-09-07 13:51:41', '2025-12-17 19:46:12', 'dOpMqqEm', '8514576'), - (61, 3272, 'attending', '2025-09-18 03:24:34', '2025-12-17 19:46:12', 'dOpMqqEm', '8524068'), - (61, 3275, 'not_attending', '2025-09-20 22:38:53', '2025-12-17 19:46:12', 'dOpMqqEm', '8527786'), - (61, 3277, 'attending', '2025-09-27 21:46:36', '2025-12-17 19:46:12', 'dOpMqqEm', '8533938'), - (61, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dOpMqqEm', '8540725'), - (61, 3289, 'attending', '2025-10-20 14:49:02', '2025-12-17 19:46:14', 'dOpMqqEm', '8542939'), - (61, 3295, 'attending', '2025-10-28 20:58:07', '2025-12-17 19:46:14', 'dOpMqqEm', '8547541'), - (61, 3300, 'attending', '2025-11-06 00:51:52', '2025-12-17 19:46:14', 'dOpMqqEm', '8549145'), - (61, 3302, 'attending', '2025-11-06 00:51:45', '2025-12-17 19:46:14', 'dOpMqqEm', '8550022'), - (61, 3304, 'attending', '2025-11-06 00:51:47', '2025-12-17 19:46:14', 'dOpMqqEm', '8550024'), - (61, 3305, 'attending', '2025-11-18 20:56:37', '2025-12-17 19:46:11', 'dOpMqqEm', '8550025'), - (61, 3306, 'attending', '2025-12-02 05:09:10', '2025-12-17 19:46:11', 'dOpMqqEm', '8550026'), - (61, 3307, 'attending', '2025-12-14 22:37:45', '2025-12-17 19:46:11', 'dOpMqqEm', '8550027'), - (61, 3308, 'attending', '2025-11-11 06:01:11', '2025-12-17 19:46:14', 'dOpMqqEm', '8550408'), - (61, 3309, 'attending', '2025-11-18 20:56:06', '2025-12-17 19:46:14', 'dOpMqqEm', '8550409'), - (61, 3310, 'attending', '2025-11-18 20:56:34', '2025-12-17 19:46:11', 'dOpMqqEm', '8550410'), - (61, 3311, 'attending', '2025-12-08 01:35:13', '2025-12-17 19:46:11', 'dOpMqqEm', '8550412'), - (61, 3318, 'not_attending', '2025-11-07 02:02:31', '2025-12-17 19:46:14', 'dOpMqqEm', '8553025'), - (61, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dOpMqqEm', '8555421'), - (61, 3323, 'attending', '2025-11-15 06:42:33', '2025-12-17 19:46:14', 'dOpMqqEm', '8555522'), - (61, 3326, 'not_attending', '2025-11-20 00:28:50', '2025-12-17 19:46:14', 'dOpMqqEm', '8556661'), - (61, 3328, 'attending', '2025-11-21 09:03:48', '2025-12-17 19:46:14', 'dOpMqqEm', '8557254'), - (61, 3329, 'attending', '2025-11-23 02:55:44', '2025-12-17 19:46:14', 'dOpMqqEm', '8558286'), - (61, 3331, 'maybe', '2025-12-05 01:52:54', '2025-12-17 19:46:11', 'dOpMqqEm', '8562166'), - (61, 3338, 'attending', '2025-12-06 21:41:54', '2025-12-17 19:46:11', 'dOpMqqEm', '8563316'), - (61, 3340, 'attending', '2025-12-12 18:35:35', '2025-12-17 19:46:11', 'dOpMqqEm', '8563371'), - (61, 3341, 'attending', '2025-12-13 17:31:06', '2025-12-17 19:46:11', 'dOpMqqEm', '8564397'), - (61, 3342, 'attending', '2025-12-13 17:31:05', '2025-12-17 19:46:11', 'dOpMqqEm', '8564398'), - (62, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dO6Jw0n4', '7074364'), - (62, 2609, 'not_attending', '2024-05-11 02:57:10', '2025-12-17 19:46:35', 'dO6Jw0n4', '7240354'), - (62, 2625, 'attending', '2024-05-12 18:00:03', '2025-12-17 19:46:35', 'dO6Jw0n4', '7263302'), - (62, 2626, 'attending', '2024-05-12 03:47:35', '2025-12-17 19:46:35', 'dO6Jw0n4', '7264723'), - (62, 2627, 'attending', '2024-05-20 00:17:00', '2025-12-17 19:46:35', 'dO6Jw0n4', '7264724'), - (62, 2628, 'attending', '2024-05-20 01:38:35', '2025-12-17 19:46:36', 'dO6Jw0n4', '7264725'), - (62, 2629, 'attending', '2024-05-20 01:38:39', '2025-12-17 19:46:28', 'dO6Jw0n4', '7264726'), - (62, 2631, 'attending', '2024-05-12 15:47:11', '2025-12-17 19:46:35', 'dO6Jw0n4', '7265589'), - (62, 2634, 'attending', '2024-05-15 17:02:00', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270321'), - (62, 2635, 'attending', '2024-05-15 17:02:05', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270322'), - (62, 2636, 'attending', '2024-05-16 03:33:28', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270323'), - (62, 2637, 'attending', '2024-05-16 03:33:30', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270324'), - (62, 2647, 'attending', '2024-05-29 03:42:09', '2025-12-17 19:46:28', 'dO6Jw0n4', '7282057'), - (62, 2661, 'attending', '2024-06-02 16:01:35', '2025-12-17 19:46:28', 'dO6Jw0n4', '7302674'), - (62, 2675, 'attending', '2024-07-28 22:43:30', '2025-12-17 19:46:31', 'dO6Jw0n4', '7319481'), - (62, 2677, 'attending', '2024-09-22 04:06:12', '2025-12-17 19:46:26', 'dO6Jw0n4', '7319483'), - (62, 2678, 'attending', '2024-06-10 11:57:30', '2025-12-17 19:46:28', 'dO6Jw0n4', '7319489'), - (62, 2688, 'attending', '2024-06-22 16:23:57', '2025-12-17 19:46:29', 'dO6Jw0n4', '7324073'), - (62, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dO6Jw0n4', '7324074'), - (62, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dO6Jw0n4', '7324075'), - (62, 2691, 'maybe', '2024-07-18 02:21:20', '2025-12-17 19:46:30', 'dO6Jw0n4', '7324076'), - (62, 2692, 'not_attending', '2024-07-27 22:42:54', '2025-12-17 19:46:30', 'dO6Jw0n4', '7324077'), - (62, 2693, 'attending', '2024-07-28 22:42:57', '2025-12-17 19:46:31', 'dO6Jw0n4', '7324078'), - (62, 2694, 'not_attending', '2024-07-28 22:43:41', '2025-12-17 19:46:31', 'dO6Jw0n4', '7324079'), - (62, 2695, 'attending', '2024-08-15 16:42:45', '2025-12-17 19:46:31', 'dO6Jw0n4', '7324080'), - (62, 2696, 'attending', '2024-08-23 12:23:27', '2025-12-17 19:46:32', 'dO6Jw0n4', '7324081'), - (62, 2697, 'attending', '2024-08-26 05:06:55', '2025-12-17 19:46:32', 'dO6Jw0n4', '7324082'), - (62, 2705, 'attending', '2024-06-19 00:06:38', '2025-12-17 19:46:29', 'dO6Jw0n4', '7324944'), - (62, 2706, 'maybe', '2024-06-17 03:04:23', '2025-12-17 19:46:28', 'dO6Jw0n4', '7324947'), - (62, 2708, 'maybe', '2024-06-13 20:20:43', '2025-12-17 19:46:28', 'dO6Jw0n4', '7325048'), - (62, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dO6Jw0n4', '7331457'), - (62, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dO6Jw0n4', '7356752'), - (62, 2764, 'attending', '2024-07-28 20:59:12', '2025-12-17 19:46:30', 'dO6Jw0n4', '7363595'), - (62, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dO6Jw0n4', '7363643'), - (62, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dO6Jw0n4', '7368606'), - (62, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dO6Jw0n4', '7397462'), - (62, 2808, 'attending', '2024-08-29 05:34:31', '2025-12-17 19:46:32', 'dO6Jw0n4', '7412860'), - (62, 2816, 'attending', '2024-09-15 20:14:30', '2025-12-17 19:46:25', 'dO6Jw0n4', '7424269'), - (62, 2817, 'attending', '2024-09-15 20:14:41', '2025-12-17 19:46:25', 'dO6Jw0n4', '7424270'), - (62, 2818, 'attending', '2024-09-22 04:06:21', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424272'), - (62, 2819, 'attending', '2024-09-22 04:06:24', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424273'), - (62, 2820, 'attending', '2024-09-22 04:06:29', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424274'), - (62, 2821, 'attending', '2024-09-22 04:06:42', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424275'), - (62, 2822, 'attending', '2024-11-07 22:02:53', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424276'), - (62, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dO6Jw0n4', '7432751'), - (62, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dO6Jw0n4', '7432752'), - (62, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dO6Jw0n4', '7432753'), - (62, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432754'), - (62, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432755'), - (62, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432756'), - (62, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432758'), - (62, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432759'), - (62, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dO6Jw0n4', '7433834'), - (62, 2834, 'maybe', '2024-09-12 04:30:25', '2025-12-17 19:46:25', 'dO6Jw0n4', '7433852'), - (62, 2835, 'attending', '2024-09-12 04:31:38', '2025-12-17 19:46:24', 'dO6Jw0n4', '7437354'), - (62, 2837, 'attending', '2024-09-13 04:54:31', '2025-12-17 19:46:25', 'dO6Jw0n4', '7438711'), - (62, 2847, 'attending', '2024-09-22 04:05:46', '2025-12-17 19:46:25', 'dO6Jw0n4', '7452299'), - (62, 2853, 'attending', '2024-11-07 22:02:48', '2025-12-17 19:46:26', 'dO6Jw0n4', '7465683'), - (62, 2858, 'attending', '2024-10-17 21:59:12', '2025-12-17 19:46:26', 'dO6Jw0n4', '7469388'), - (62, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dO6Jw0n4', '7470197'), - (62, 2870, 'attending', '2024-10-04 14:04:52', '2025-12-17 19:46:26', 'dO6Jw0n4', '7475068'), - (62, 2874, 'attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'dO6Jw0n4', '7482239'), - (62, 2878, 'maybe', '2024-10-13 13:59:16', '2025-12-17 19:46:26', 'dO6Jw0n4', '7633857'), - (62, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dO6Jw0n4', '7685613'), - (62, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dO6Jw0n4', '7688194'), - (62, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dO6Jw0n4', '7688196'), - (62, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dO6Jw0n4', '7688289'), - (62, 2909, 'not_attending', '2024-11-10 21:20:50', '2025-12-17 19:46:27', 'dO6Jw0n4', '7689771'), - (62, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dO6Jw0n4', '7692763'), - (62, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dO6Jw0n4', '7697552'), - (62, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dO6Jw0n4', '7699878'), - (62, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dO6Jw0n4', '7704043'), - (62, 2921, 'attending', '2024-11-24 01:01:43', '2025-12-17 19:46:28', 'dO6Jw0n4', '7708460'), - (62, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dO6Jw0n4', '7712467'), - (62, 2925, 'attending', '2024-12-08 17:12:02', '2025-12-17 19:46:21', 'dO6Jw0n4', '7713584'), - (62, 2926, 'attending', '2024-12-06 21:55:15', '2025-12-17 19:46:21', 'dO6Jw0n4', '7713585'), - (62, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dO6Jw0n4', '7713586'), - (62, 2934, 'attending', '2025-01-10 20:13:20', '2025-12-17 19:46:22', 'dO6Jw0n4', '7725952'), - (62, 2937, 'attending', '2024-12-08 17:12:06', '2025-12-17 19:46:21', 'dO6Jw0n4', '7725955'), - (62, 2939, 'maybe', '2025-02-15 17:00:10', '2025-12-17 19:46:24', 'dO6Jw0n4', '7725957'), - (62, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dO6Jw0n4', '7738518'), - (62, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dO6Jw0n4', '7750636'), - (62, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dO6Jw0n4', '7796540'), - (62, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dO6Jw0n4', '7796541'), - (62, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dO6Jw0n4', '7796542'), - (62, 2968, 'maybe', '2025-01-08 21:39:33', '2025-12-17 19:46:22', 'dO6Jw0n4', '7797967'), - (62, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dO6Jw0n4', '7825913'), - (62, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dO6Jw0n4', '7826209'), - (62, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dO6Jw0n4', '7834742'), - (62, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dO6Jw0n4', '7842108'), - (62, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dO6Jw0n4', '7842902'), - (62, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dO6Jw0n4', '7842903'), - (62, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dO6Jw0n4', '7842904'), - (62, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dO6Jw0n4', '7842905'), - (62, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dO6Jw0n4', '7855719'), - (62, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dO6Jw0n4', '7860683'), - (62, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dO6Jw0n4', '7860684'), - (62, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dO6Jw0n4', '7866095'), - (62, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dO6Jw0n4', '7869170'), - (62, 3014, 'maybe', '2025-04-05 14:40:06', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869185'), - (62, 3015, 'not_attending', '2025-04-26 21:12:48', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869186'), - (62, 3016, 'maybe', '2025-04-16 23:08:27', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869187'), - (62, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dO6Jw0n4', '7869188'), - (62, 3018, 'attending', '2025-04-12 16:02:06', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869189'), - (62, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dO6Jw0n4', '7869201'), - (62, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dO6Jw0n4', '7877465'), - (62, 3034, 'not_attending', '2025-03-11 16:55:48', '2025-12-17 19:46:18', 'dO6Jw0n4', '7878570'), - (62, 3040, 'not_attending', '2025-03-14 03:06:02', '2025-12-17 19:46:19', 'dO6Jw0n4', '7881994'), - (62, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dO6Jw0n4', '7888250'), - (62, 3083, 'not_attending', '2025-04-08 17:17:42', '2025-12-17 19:46:20', 'dO6Jw0n4', '7903308'), - (62, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dO6Jw0n4', '7904777'), - (62, 3094, 'maybe', '2025-05-08 16:03:41', '2025-12-17 19:46:21', 'dO6Jw0n4', '8342292'), - (62, 3095, 'maybe', '2025-05-03 19:10:17', '2025-12-17 19:46:20', 'dO6Jw0n4', '8342293'), - (62, 3096, 'not_attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dO6Jw0n4', '8342987'), - (62, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dO6Jw0n4', '8349164'), - (62, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dO6Jw0n4', '8349545'), - (62, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dO6Jw0n4', '8353584'), - (62, 3131, 'maybe', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dO6Jw0n4', '8368028'), - (62, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dO6Jw0n4', '8368029'), - (62, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dO6Jw0n4', '8388462'), - (62, 3150, 'maybe', '2025-06-21 17:00:16', '2025-12-17 19:46:15', 'dO6Jw0n4', '8393174'), - (62, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dO6Jw0n4', '8400273'), - (62, 3154, 'attending', '2025-06-27 12:38:41', '2025-12-17 19:46:15', 'dO6Jw0n4', '8400274'), - (62, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dO6Jw0n4', '8400275'), - (62, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dO6Jw0n4', '8400276'), - (62, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dO6Jw0n4', '8404977'), - (62, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dO6Jw0n4', '8430783'), - (62, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dO6Jw0n4', '8430784'), - (62, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dO6Jw0n4', '8430799'), - (62, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dO6Jw0n4', '8430800'), - (62, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dO6Jw0n4', '8430801'), - (62, 3187, 'attending', '2025-07-03 23:29:38', '2025-12-17 19:46:16', 'dO6Jw0n4', '8434478'), - (62, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dO6Jw0n4', '8438709'), - (62, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dO6Jw0n4', '8457738'), - (62, 3197, 'maybe', '2025-07-24 23:19:11', '2025-12-17 19:46:17', 'dO6Jw0n4', '8458825'), - (62, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dO6Jw0n4', '8459566'), - (62, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dO6Jw0n4', '8459567'), - (62, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dO6Jw0n4', '8461032'), - (62, 3206, 'maybe', '2025-07-22 17:48:47', '2025-12-17 19:46:17', 'dO6Jw0n4', '8462943'), - (62, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dO6Jw0n4', '8477877'), - (62, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dO6Jw0n4', '8485688'), - (62, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dO6Jw0n4', '8490587'), - (62, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dO6Jw0n4', '8493552'), - (62, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dO6Jw0n4', '8493553'), - (62, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dO6Jw0n4', '8493554'), - (62, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dO6Jw0n4', '8493555'), - (62, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dO6Jw0n4', '8493556'), - (62, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dO6Jw0n4', '8493557'), - (62, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dO6Jw0n4', '8493558'), - (62, 3243, 'maybe', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dO6Jw0n4', '8493559'), - (62, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dO6Jw0n4', '8493560'), - (62, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dO6Jw0n4', '8493561'), - (62, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dO6Jw0n4', '8493572'), - (62, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dO6Jw0n4', '8540725'), - (62, 3295, 'maybe', '2025-11-01 06:56:43', '2025-12-17 19:46:14', 'dO6Jw0n4', '8547541'), - (62, 3302, 'attending', '2025-11-11 16:52:46', '2025-12-17 19:46:14', 'dO6Jw0n4', '8550022'), - (62, 3304, 'not_attending', '2025-11-22 15:03:26', '2025-12-17 19:46:14', 'dO6Jw0n4', '8550024'), - (62, 3306, 'not_attending', '2025-12-11 17:23:57', '2025-12-17 19:46:11', 'dO6Jw0n4', '8550026'), - (62, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dO6Jw0n4', '8555421'), - (63, 3284, 'maybe', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '401wK9Ed', '8540725'), - (63, 3288, 'not_attending', '2025-10-11 05:44:36', '2025-12-17 19:46:13', '401wK9Ed', '8542408'), - (63, 3290, 'attending', '2025-10-12 22:59:40', '2025-12-17 19:46:13', '401wK9Ed', '8542943'), - (63, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '401wK9Ed', '8555421'), - (64, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mLzK5gZ4', '7713586'), - (64, 2955, 'attending', '2024-12-15 20:02:05', '2025-12-17 19:46:21', 'mLzK5gZ4', '7735094'), - (64, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mLzK5gZ4', '7738518'), - (64, 2962, 'attending', '2024-12-27 00:10:39', '2025-12-17 19:46:22', 'mLzK5gZ4', '7750632'), - (64, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mLzK5gZ4', '7750636'), - (64, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mLzK5gZ4', '7796540'), - (64, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mLzK5gZ4', '7796541'), - (64, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mLzK5gZ4', '7796542'), - (64, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mLzK5gZ4', '7825913'), - (64, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mLzK5gZ4', '7826209'), - (64, 2983, 'attending', '2025-02-01 16:58:26', '2025-12-17 19:46:23', 'mLzK5gZ4', '7829499'), - (64, 2984, 'attending', '2025-02-04 01:16:36', '2025-12-17 19:46:23', 'mLzK5gZ4', '7830134'), - (64, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mLzK5gZ4', '7834742'), - (64, 2987, 'not_attending', '2025-02-07 14:30:12', '2025-12-17 19:46:23', 'mLzK5gZ4', '7839568'), - (64, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mLzK5gZ4', '7842108'), - (64, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mLzK5gZ4', '7842902'), - (64, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mLzK5gZ4', '7842903'), - (64, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mLzK5gZ4', '7842904'), - (64, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mLzK5gZ4', '7842905'), - (64, 2999, 'not_attending', '2025-02-13 02:45:14', '2025-12-17 19:46:23', 'mLzK5gZ4', '7844784'), - (64, 3002, 'not_attending', '2025-02-22 23:34:12', '2025-12-17 19:46:24', 'mLzK5gZ4', '7854212'), - (64, 3006, 'attending', '2025-02-20 02:23:03', '2025-12-17 19:46:24', 'mLzK5gZ4', '7855719'), - (64, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mLzK5gZ4', '7860683'), - (64, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mLzK5gZ4', '7860684'), - (64, 3010, 'not_attending', '2025-03-01 01:20:05', '2025-12-17 19:46:18', 'mLzK5gZ4', '7864879'), - (64, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mLzK5gZ4', '7866095'), - (64, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mLzK5gZ4', '7869170'), - (64, 3014, 'attending', '2025-04-05 18:17:20', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869185'), - (64, 3015, 'attending', '2025-04-05 18:17:32', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869186'), - (64, 3016, 'attending', '2025-04-05 18:17:29', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869187'), - (64, 3017, 'attending', '2025-03-22 02:43:10', '2025-12-17 19:46:19', 'mLzK5gZ4', '7869188'), - (64, 3018, 'attending', '2025-04-05 18:17:27', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869189'), - (64, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mLzK5gZ4', '7869201'), - (64, 3030, 'attending', '2025-03-06 19:10:17', '2025-12-17 19:46:18', 'mLzK5gZ4', '7872088'), - (64, 3031, 'attending', '2025-03-07 04:51:10', '2025-12-17 19:46:18', 'mLzK5gZ4', '7875371'), - (64, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mLzK5gZ4', '7877465'), - (64, 3037, 'maybe', '2025-03-13 16:58:04', '2025-12-17 19:46:19', 'mLzK5gZ4', '7880977'), - (64, 3038, 'attending', '2025-03-14 02:15:32', '2025-12-17 19:46:19', 'mLzK5gZ4', '7881989'), - (64, 3039, 'maybe', '2025-03-16 23:18:23', '2025-12-17 19:46:19', 'mLzK5gZ4', '7881992'), - (64, 3041, 'not_attending', '2025-03-16 16:13:35', '2025-12-17 19:46:19', 'mLzK5gZ4', '7881995'), - (64, 3049, 'attending', '2025-03-16 23:17:13', '2025-12-17 19:46:19', 'mLzK5gZ4', '7883215'), - (64, 3050, 'attending', '2025-03-16 22:59:47', '2025-12-17 19:46:19', 'mLzK5gZ4', '7884021'), - (64, 3055, 'maybe', '2025-03-22 02:42:54', '2025-12-17 19:46:19', 'mLzK5gZ4', '7888118'), - (64, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mLzK5gZ4', '7888250'), - (64, 3058, 'attending', '2025-03-27 00:37:09', '2025-12-17 19:46:19', 'mLzK5gZ4', '7891460'), - (64, 3060, 'maybe', '2025-03-30 20:20:55', '2025-12-17 19:46:19', 'mLzK5gZ4', '7892589'), - (64, 3064, 'attending', '2025-03-29 15:51:53', '2025-12-17 19:46:19', 'mLzK5gZ4', '7892835'), - (64, 3067, 'attending', '2025-03-31 18:38:07', '2025-12-17 19:46:19', 'mLzK5gZ4', '7894745'), - (64, 3072, 'attending', '2025-04-03 20:45:41', '2025-12-17 19:46:19', 'mLzK5gZ4', '7895449'), - (64, 3074, 'attending', '2025-04-05 18:20:09', '2025-12-17 19:46:19', 'mLzK5gZ4', '7897784'), - (64, 3077, 'attending', '2025-04-07 06:57:12', '2025-12-17 19:46:20', 'mLzK5gZ4', '7899510'), - (64, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mLzK5gZ4', '7904777'), - (64, 3090, 'maybe', '2025-04-15 23:22:52', '2025-12-17 19:46:20', 'mLzK5gZ4', '7914315'), - (64, 3094, 'not_attending', '2025-04-27 21:08:19', '2025-12-17 19:46:21', 'mLzK5gZ4', '8342292'), - (64, 3095, 'not_attending', '2025-04-27 21:08:13', '2025-12-17 19:46:20', 'mLzK5gZ4', '8342293'), - (64, 3102, 'attending', '2025-04-26 17:28:03', '2025-12-17 19:46:20', 'mLzK5gZ4', '8346008'), - (64, 3103, 'attending', '2025-04-26 15:28:43', '2025-12-17 19:46:20', 'mLzK5gZ4', '8347770'), - (64, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mLzK5gZ4', '8349164'), - (64, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mLzK5gZ4', '8349545'), - (64, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mLzK5gZ4', '8353584'), - (64, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mLzK5gZ4', '8368028'), - (64, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mLzK5gZ4', '8368029'), - (64, 3136, 'attending', '2025-05-17 21:57:47', '2025-12-17 19:46:21', 'mLzK5gZ4', '8374152'), - (64, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mLzK5gZ4', '8388462'), - (64, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mLzK5gZ4', '8400273'), - (64, 3154, 'attending', '2025-06-26 18:35:43', '2025-12-17 19:46:15', 'mLzK5gZ4', '8400274'), - (64, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mLzK5gZ4', '8400275'), - (64, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mLzK5gZ4', '8400276'), - (64, 3157, 'attending', '2025-06-04 04:29:10', '2025-12-17 19:46:15', 'mLzK5gZ4', '8401407'), - (64, 3159, 'attending', '2025-06-05 18:48:23', '2025-12-17 19:46:15', 'mLzK5gZ4', '8401410'), - (64, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mLzK5gZ4', '8404977'), - (64, 3176, 'attending', '2025-06-20 01:02:05', '2025-12-17 19:46:15', 'mLzK5gZ4', '8416741'), - (64, 3179, 'not_attending', '2025-06-24 03:27:21', '2025-12-17 19:46:15', 'mLzK5gZ4', '8421850'), - (64, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mLzK5gZ4', '8430783'), - (64, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mLzK5gZ4', '8430784'), - (64, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mLzK5gZ4', '8430799'), - (64, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mLzK5gZ4', '8430800'), - (64, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mLzK5gZ4', '8430801'), - (64, 3187, 'attending', '2025-07-03 16:40:43', '2025-12-17 19:46:16', 'mLzK5gZ4', '8434478'), - (64, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mLzK5gZ4', '8438709'), - (64, 3191, 'attending', '2025-07-15 17:40:26', '2025-12-17 19:46:17', 'mLzK5gZ4', '8444983'), - (64, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mLzK5gZ4', '8457738'), - (64, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mLzK5gZ4', '8459566'), - (64, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mLzK5gZ4', '8459567'), - (64, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mLzK5gZ4', '8461032'), - (64, 3205, 'not_attending', '2025-07-20 21:25:34', '2025-12-17 19:46:17', 'mLzK5gZ4', '8461764'), - (64, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mLzK5gZ4', '8477877'), - (64, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mLzK5gZ4', '8485688'), - (64, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mLzK5gZ4', '8490587'), - (64, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mLzK5gZ4', '8493552'), - (64, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mLzK5gZ4', '8493553'), - (64, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mLzK5gZ4', '8493554'), - (64, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mLzK5gZ4', '8493555'), - (64, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mLzK5gZ4', '8493556'), - (64, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mLzK5gZ4', '8493557'), - (64, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mLzK5gZ4', '8493558'), - (64, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mLzK5gZ4', '8493559'), - (64, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mLzK5gZ4', '8493560'), - (64, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mLzK5gZ4', '8493561'), - (64, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mLzK5gZ4', '8493572'), - (64, 3271, 'maybe', '2025-09-17 19:24:48', '2025-12-17 19:46:12', 'mLzK5gZ4', '8521430'), - (64, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mLzK5gZ4', '8540725'), - (64, 3296, 'attending', '2025-10-23 18:03:26', '2025-12-17 19:46:14', 'mLzK5gZ4', '8547711'), - (64, 3302, 'attending', '2025-11-12 15:59:03', '2025-12-17 19:46:14', 'mLzK5gZ4', '8550022'), - (64, 3307, 'attending', '2025-12-15 17:07:27', '2025-12-17 19:46:11', 'mLzK5gZ4', '8550027'), - (64, 3321, 'attending', '2025-11-14 01:03:34', '2025-12-17 19:46:14', 'mLzK5gZ4', '8555418'), - (64, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mLzK5gZ4', '8555421'), - (64, 3330, 'attending', '2025-11-30 19:26:44', '2025-12-17 19:46:11', 'mLzK5gZ4', '8561720'), - (65, 3305, 'attending', '2025-12-02 02:47:12', '2025-12-17 19:46:11', 'dazMLRZm', '8550025'), - (65, 3306, 'attending', '2025-12-13 02:32:37', '2025-12-17 19:46:11', 'dazMLRZm', '8550026'), - (65, 3307, 'attending', '2025-12-16 08:13:42', '2025-12-18 22:55:00', 'dazMLRZm', '8550027'), - (65, 3330, 'attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', 'dazMLRZm', '8561720'), - (65, 3336, 'attending', '2025-12-16 00:54:24', '2025-12-17 19:46:11', 'dazMLRZm', '8563248'), - (66, 3195, 'not_attending', '2025-08-03 06:40:10', '2025-12-17 19:46:17', 'nm6a881d', '8458118'), - (66, 3200, 'attending', '2025-08-02 01:05:03', '2025-12-17 19:46:17', 'nm6a881d', '8459566'), - (66, 3201, 'attending', '2025-08-03 06:40:15', '2025-12-17 19:46:17', 'nm6a881d', '8459567'), - (66, 3203, 'attending', '2025-07-24 04:43:36', '2025-12-17 19:46:17', 'nm6a881d', '8461032'), - (66, 3207, 'attending', '2025-07-25 18:53:40', '2025-12-17 19:46:17', 'nm6a881d', '8466820'), - (66, 3211, 'attending', '2025-08-05 02:23:10', '2025-12-17 19:46:17', 'nm6a881d', '8477785'), - (66, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm6a881d', '8477877'), - (66, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'nm6a881d', '8485688'), - (66, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm6a881d', '8490587'), - (66, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm6a881d', '8493552'), - (66, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm6a881d', '8493553'), - (66, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm6a881d', '8493554'), - (66, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm6a881d', '8493555'), - (66, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm6a881d', '8493556'), - (66, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm6a881d', '8493557'), - (66, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm6a881d', '8493558'), - (66, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm6a881d', '8493559'), - (66, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm6a881d', '8493560'), - (66, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'nm6a881d', '8493561'), - (66, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm6a881d', '8493572'), - (66, 3257, 'attending', '2025-08-28 22:55:14', '2025-12-17 19:46:11', 'nm6a881d', '8502340'), - (66, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'nm6a881d', '8540725'), - (66, 3289, 'attending', '2025-10-24 23:55:40', '2025-12-17 19:46:14', 'nm6a881d', '8542939'), - (66, 3300, 'not_attending', '2025-11-05 01:03:23', '2025-12-17 19:46:14', 'nm6a881d', '8549145'), - (66, 3302, 'attending', '2025-11-10 01:11:30', '2025-12-17 19:46:14', 'nm6a881d', '8550022'), - (66, 3304, 'attending', '2025-11-16 04:38:32', '2025-12-17 19:46:14', 'nm6a881d', '8550024'), - (66, 3305, 'not_attending', '2025-12-01 08:05:25', '2025-12-17 19:46:11', 'nm6a881d', '8550025'), - (66, 3307, 'maybe', '2025-12-18 08:07:29', '2025-12-18 08:07:29', NULL, NULL), - (66, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm6a881d', '8555421'), - (67, 2821, 'attending', '2024-10-11 01:06:43', '2025-12-17 19:46:26', 'mRBRe9Ym', '7424275'), - (67, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mRBRe9Ym', '7424276'), - (67, 2825, 'attending', '2024-09-21 05:25:04', '2025-12-17 19:46:25', 'mRBRe9Ym', '7432752'), - (67, 2826, 'attending', '2024-09-26 20:32:59', '2025-12-17 19:46:25', 'mRBRe9Ym', '7432753'), - (67, 2827, 'attending', '2024-10-04 11:09:05', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432754'), - (67, 2828, 'not_attending', '2024-10-14 09:54:40', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432755'), - (67, 2829, 'attending', '2024-10-14 09:54:47', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432756'), - (67, 2830, 'attending', '2024-10-14 09:55:23', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432758'), - (67, 2831, 'attending', '2024-11-09 13:15:57', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432759'), - (67, 2839, 'maybe', '2024-09-25 15:58:07', '2025-12-17 19:46:25', 'mRBRe9Ym', '7439262'), - (67, 2858, 'maybe', '2024-10-14 09:54:35', '2025-12-17 19:46:26', 'mRBRe9Ym', '7469388'), - (67, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mRBRe9Ym', '7470197'), - (67, 2864, 'maybe', '2024-10-14 09:54:17', '2025-12-17 19:46:26', 'mRBRe9Ym', '7471199'), - (67, 2865, 'attending', '2024-11-01 01:25:05', '2025-12-17 19:46:26', 'mRBRe9Ym', '7471200'), - (67, 2871, 'attending', '2024-10-14 09:54:23', '2025-12-17 19:46:26', 'mRBRe9Ym', '7480481'), - (67, 2878, 'maybe', '2024-10-14 09:54:27', '2025-12-17 19:46:26', 'mRBRe9Ym', '7633857'), - (67, 2881, 'attending', '2024-11-06 04:27:44', '2025-12-17 19:46:26', 'mRBRe9Ym', '7644047'), - (67, 2883, 'attending', '2024-10-22 04:20:58', '2025-12-17 19:46:26', 'mRBRe9Ym', '7649157'), - (67, 2888, 'attending', '2024-10-21 07:59:30', '2025-12-17 19:46:26', 'mRBRe9Ym', '7654822'), - (67, 2889, 'attending', '2024-10-22 03:07:34', '2025-12-17 19:46:26', 'mRBRe9Ym', '7660485'), - (67, 2893, 'attending', '2024-10-29 02:22:27', '2025-12-17 19:46:26', 'mRBRe9Ym', '7672705'), - (67, 2896, 'attending', '2024-11-12 16:27:23', '2025-12-17 19:46:27', 'mRBRe9Ym', '7683647'), - (67, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mRBRe9Ym', '7685613'), - (67, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mRBRe9Ym', '7688194'), - (67, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mRBRe9Ym', '7688196'), - (67, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mRBRe9Ym', '7688289'), - (67, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'mRBRe9Ym', '7692763'), - (67, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mRBRe9Ym', '7697552'), - (67, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mRBRe9Ym', '7699878'), - (67, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mRBRe9Ym', '7704043'), - (67, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mRBRe9Ym', '7712467'), - (67, 2926, 'attending', '2024-12-07 02:33:27', '2025-12-17 19:46:21', 'mRBRe9Ym', '7713585'), - (67, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mRBRe9Ym', '7713586'), - (67, 2930, 'maybe', '2024-12-10 14:24:02', '2025-12-17 19:46:21', 'mRBRe9Ym', '7724554'), - (67, 2955, 'attending', '2024-12-16 22:21:42', '2025-12-17 19:46:21', 'mRBRe9Ym', '7735094'), - (67, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mRBRe9Ym', '7738518'), - (67, 2962, 'not_attending', '2024-12-27 22:26:25', '2025-12-17 19:46:22', 'mRBRe9Ym', '7750632'), - (67, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mRBRe9Ym', '7750636'), - (67, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mRBRe9Ym', '7796540'), - (67, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mRBRe9Ym', '7796541'), - (67, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mRBRe9Ym', '7796542'), - (67, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mRBRe9Ym', '7825913'), - (67, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mRBRe9Ym', '7826209'), - (67, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mRBRe9Ym', '7834742'), - (67, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mRBRe9Ym', '7842108'), - (67, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mRBRe9Ym', '7842902'), - (67, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mRBRe9Ym', '7842903'), - (67, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mRBRe9Ym', '7842904'), - (67, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mRBRe9Ym', '7842905'), - (67, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mRBRe9Ym', '7855719'), - (67, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mRBRe9Ym', '7860683'), - (67, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mRBRe9Ym', '7860684'), - (67, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mRBRe9Ym', '7866095'), - (67, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mRBRe9Ym', '7869170'), - (67, 3014, 'maybe', '2025-04-05 21:56:37', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869185'), - (67, 3015, 'not_attending', '2025-04-26 20:05:15', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869186'), - (67, 3016, 'attending', '2025-04-15 00:12:53', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869187'), - (67, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mRBRe9Ym', '7869188'), - (67, 3018, 'not_attending', '2025-04-12 02:17:08', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869189'), - (67, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mRBRe9Ym', '7869201'), - (67, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mRBRe9Ym', '7877465'), - (67, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mRBRe9Ym', '7888250'), - (67, 3060, 'attending', '2025-04-04 00:07:03', '2025-12-17 19:46:19', 'mRBRe9Ym', '7892589'), - (67, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mRBRe9Ym', '7904777'), - (67, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mRBRe9Ym', '8349164'), - (67, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mRBRe9Ym', '8349545'), - (67, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mRBRe9Ym', '8353584'), - (67, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mRBRe9Ym', '8368028'), - (67, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mRBRe9Ym', '8368029'), - (67, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mRBRe9Ym', '8388462'), - (67, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mRBRe9Ym', '8400273'), - (67, 3154, 'maybe', '2025-06-27 22:01:06', '2025-12-17 19:46:15', 'mRBRe9Ym', '8400274'), - (67, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mRBRe9Ym', '8400275'), - (67, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mRBRe9Ym', '8400276'), - (67, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mRBRe9Ym', '8404977'), - (67, 3178, 'attending', '2025-06-24 03:14:58', '2025-12-17 19:46:15', 'mRBRe9Ym', '8421848'), - (67, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mRBRe9Ym', '8430783'), - (67, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mRBRe9Ym', '8430784'), - (67, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mRBRe9Ym', '8430799'), - (67, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mRBRe9Ym', '8430800'), - (67, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mRBRe9Ym', '8430801'), - (67, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mRBRe9Ym', '8438709'), - (67, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mRBRe9Ym', '8457738'), - (67, 3195, 'attending', '2025-07-18 00:25:36', '2025-12-17 19:46:17', 'mRBRe9Ym', '8458118'), - (67, 3196, 'attending', '2025-07-18 00:56:04', '2025-12-17 19:46:17', 'mRBRe9Ym', '8458543'), - (67, 3197, 'maybe', '2025-07-22 05:23:01', '2025-12-17 19:46:17', 'mRBRe9Ym', '8458825'), - (67, 3198, 'attending', '2025-07-18 07:53:22', '2025-12-17 19:46:18', 'mRBRe9Ym', '8459268'), - (67, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mRBRe9Ym', '8459566'), - (67, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mRBRe9Ym', '8459567'), - (67, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mRBRe9Ym', '8461032'), - (67, 3210, 'attending', '2025-07-30 03:16:51', '2025-12-17 19:46:18', 'mRBRe9Ym', '8471162'), - (67, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mRBRe9Ym', '8477877'), - (67, 3216, 'attending', '2025-08-09 01:54:51', '2025-12-17 19:46:17', 'mRBRe9Ym', '8481608'), - (67, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mRBRe9Ym', '8485688'), - (67, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mRBRe9Ym', '8490587'), - (67, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mRBRe9Ym', '8493552'), - (67, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mRBRe9Ym', '8493553'), - (67, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mRBRe9Ym', '8493554'), - (67, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mRBRe9Ym', '8493555'), - (67, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mRBRe9Ym', '8493556'), - (67, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mRBRe9Ym', '8493557'), - (67, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mRBRe9Ym', '8493558'), - (67, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mRBRe9Ym', '8493559'), - (67, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mRBRe9Ym', '8493560'), - (67, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mRBRe9Ym', '8493561'), - (67, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mRBRe9Ym', '8493572'), - (67, 3272, 'attending', '2025-09-18 03:24:36', '2025-12-17 19:46:12', 'mRBRe9Ym', '8524068'), - (67, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mRBRe9Ym', '8540725'), - (67, 3289, 'attending', '2025-10-25 00:31:44', '2025-12-17 19:46:14', 'mRBRe9Ym', '8542939'), - (67, 3295, 'attending', '2025-10-29 00:58:21', '2025-12-17 19:46:14', 'mRBRe9Ym', '8547541'), - (67, 3302, 'attending', '2025-11-14 00:05:48', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550022'), - (67, 3304, 'attending', '2025-11-22 00:49:25', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550024'), - (67, 3305, 'attending', '2025-12-06 01:35:54', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550025'), - (67, 3306, 'attending', '2025-12-13 02:31:14', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550026'), - (67, 3307, 'attending', '2025-12-18 22:24:33', '2025-12-18 22:24:33', NULL, NULL), - (67, 3308, 'attending', '2025-11-09 22:15:51', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550408'), - (67, 3309, 'attending', '2025-11-17 00:06:07', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550409'), - (67, 3310, 'attending', '2025-12-01 01:47:58', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550410'), - (67, 3311, 'maybe', '2025-12-09 04:31:18', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550412'), - (67, 3313, 'maybe', '2025-11-05 22:40:43', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550896'), - (67, 3317, 'attending', '2025-11-13 00:38:38', '2025-12-17 19:46:14', 'mRBRe9Ym', '8552943'), - (67, 3319, 'maybe', '2025-11-08 01:36:42', '2025-12-17 19:46:14', 'mRBRe9Ym', '8553114'), - (67, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mRBRe9Ym', '8555421'), - (67, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'mRBRe9Ym', '8555522'), - (67, 3343, 'attending', '2025-12-14 04:42:15', '2025-12-17 19:46:11', 'mRBRe9Ym', '8564411'), - (68, 3014, 'maybe', '2025-04-04 04:00:31', '2025-12-17 19:46:20', 'mq6lQajA', '7869185'), - (68, 3015, 'maybe', '2025-04-26 17:32:27', '2025-12-17 19:46:20', 'mq6lQajA', '7869186'), - (68, 3016, 'maybe', '2025-04-19 12:02:24', '2025-12-17 19:46:20', 'mq6lQajA', '7869187'), - (68, 3018, 'maybe', '2025-04-12 15:30:52', '2025-12-17 19:46:20', 'mq6lQajA', '7869189'), - (68, 3067, 'maybe', '2025-04-04 04:00:39', '2025-12-17 19:46:19', 'mq6lQajA', '7894745'), - (68, 3070, 'not_attending', '2025-04-09 08:37:39', '2025-12-17 19:46:20', 'mq6lQajA', '7894829'), - (68, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'mq6lQajA', '7897784'), - (68, 3079, 'maybe', '2025-04-06 16:08:31', '2025-12-17 19:46:20', 'mq6lQajA', '7901439'), - (68, 3080, 'maybe', '2025-04-07 07:12:07', '2025-12-17 19:46:20', 'mq6lQajA', '7901441'), - (68, 3083, 'maybe', '2025-04-09 07:08:34', '2025-12-17 19:46:20', 'mq6lQajA', '7903308'), - (68, 3084, 'maybe', '2025-04-09 07:09:03', '2025-12-17 19:46:20', 'mq6lQajA', '7903687'), - (68, 3085, 'not_attending', '2025-04-12 04:04:22', '2025-12-17 19:46:20', 'mq6lQajA', '7903688'), - (68, 3088, 'maybe', '2025-06-13 00:38:38', '2025-12-17 19:46:15', 'mq6lQajA', '7904777'), - (68, 3089, 'attending', '2025-04-13 17:13:49', '2025-12-17 19:46:20', 'mq6lQajA', '7911208'), - (68, 3094, 'maybe', '2025-05-10 17:25:28', '2025-12-17 19:46:21', 'mq6lQajA', '8342292'), - (68, 3095, 'attending', '2025-05-03 17:31:12', '2025-12-17 19:46:20', 'mq6lQajA', '8342293'), - (68, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mq6lQajA', '8349164'), - (68, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mq6lQajA', '8349545'), - (68, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mq6lQajA', '8353584'), - (68, 3126, 'maybe', '2025-05-14 19:57:22', '2025-12-17 19:46:21', 'mq6lQajA', '8365614'), - (68, 3131, 'maybe', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mq6lQajA', '8368028'), - (68, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mq6lQajA', '8368029'), - (68, 3133, 'attending', '2025-05-31 21:20:05', '2025-12-17 19:46:14', 'mq6lQajA', '8368030'), - (68, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mq6lQajA', '8388462'), - (68, 3150, 'maybe', '2025-06-21 22:05:54', '2025-12-17 19:46:15', 'mq6lQajA', '8393174'), - (68, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mq6lQajA', '8400273'), - (68, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mq6lQajA', '8400274'), - (68, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mq6lQajA', '8400275'), - (68, 3156, 'maybe', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mq6lQajA', '8400276'), - (68, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mq6lQajA', '8404977'), - (68, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mq6lQajA', '8430783'), - (68, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mq6lQajA', '8430784'), - (68, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mq6lQajA', '8430799'), - (68, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mq6lQajA', '8430800'), - (68, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mq6lQajA', '8430801'), - (68, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mq6lQajA', '8438709'), - (68, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mq6lQajA', '8457738'), - (68, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mq6lQajA', '8459566'), - (68, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mq6lQajA', '8459567'), - (68, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mq6lQajA', '8461032'), - (68, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mq6lQajA', '8477877'), - (68, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mq6lQajA', '8485688'), - (68, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mq6lQajA', '8490587'), - (68, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mq6lQajA', '8493552'), - (68, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mq6lQajA', '8493553'), - (68, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mq6lQajA', '8493554'), - (68, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mq6lQajA', '8493555'), - (68, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mq6lQajA', '8493556'), - (68, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mq6lQajA', '8493557'), - (68, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mq6lQajA', '8493558'), - (68, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mq6lQajA', '8493559'), - (68, 3244, 'maybe', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mq6lQajA', '8493560'), - (68, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mq6lQajA', '8493561'), - (68, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mq6lQajA', '8493572'), - (68, 3258, 'attending', '2025-09-03 20:16:41', '2025-12-17 19:46:11', 'mq6lQajA', '8510285'), - (68, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mq6lQajA', '8540725'), - (68, 3304, 'maybe', '2025-11-22 21:46:03', '2025-12-17 19:46:14', 'mq6lQajA', '8550024'), - (68, 3305, 'maybe', '2025-12-06 21:19:36', '2025-12-17 19:46:11', 'mq6lQajA', '8550025'), - (68, 3306, 'attending', '2025-12-13 22:19:40', '2025-12-17 19:46:11', 'mq6lQajA', '8550026'), - (68, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mq6lQajA', '8555421'), - (69, 3237, 'attending', '2025-09-02 21:26:41', '2025-12-17 19:46:11', 'dljWe8OA', '8493553'), - (69, 3240, 'attending', '2025-09-07 01:59:42', '2025-12-17 19:46:12', 'dljWe8OA', '8493556'), - (69, 3241, 'not_attending', '2025-10-03 22:16:58', '2025-12-17 19:46:13', 'dljWe8OA', '8493557'), - (69, 3244, 'attending', '2025-09-29 10:41:02', '2025-12-17 19:46:13', 'dljWe8OA', '8493560'), - (69, 3245, 'attending', '2025-09-20 14:09:10', '2025-12-17 19:46:12', 'dljWe8OA', '8493561'), - (69, 3258, 'attending', '2025-09-02 20:41:58', '2025-12-17 19:46:11', 'dljWe8OA', '8510285'), - (69, 3259, 'attending', '2025-09-06 13:49:44', '2025-12-17 19:46:12', 'dljWe8OA', '8512638'), - (69, 3260, 'attending', '2025-09-06 13:49:42', '2025-12-17 19:46:12', 'dljWe8OA', '8512640'), - (69, 3261, 'attending', '2025-09-06 13:49:46', '2025-12-17 19:46:12', 'dljWe8OA', '8512641'), - (69, 3262, 'attending', '2025-09-06 13:49:48', '2025-12-17 19:46:12', 'dljWe8OA', '8512642'), - (69, 3263, 'attending', '2025-09-07 14:30:51', '2025-12-17 19:46:12', 'dljWe8OA', '8514576'), - (69, 3264, 'attending', '2025-09-15 17:43:28', '2025-12-17 19:46:12', 'dljWe8OA', '8514577'), - (69, 3265, 'attending', '2025-09-22 18:30:17', '2025-12-17 19:46:12', 'dljWe8OA', '8514578'), - (69, 3266, 'attending', '2025-09-29 10:41:15', '2025-12-17 19:46:13', 'dljWe8OA', '8514579'), - (69, 3271, 'attending', '2025-09-20 13:59:10', '2025-12-17 19:46:12', 'dljWe8OA', '8521430'), - (69, 3272, 'attending', '2025-09-17 22:50:56', '2025-12-17 19:46:12', 'dljWe8OA', '8524068'), - (69, 3273, 'attending', '2025-09-19 02:47:34', '2025-12-17 19:46:12', 'dljWe8OA', '8525831'), - (69, 3275, 'attending', '2025-09-22 18:20:43', '2025-12-17 19:46:12', 'dljWe8OA', '8527786'), - (69, 3276, 'not_attending', '2025-09-22 18:20:47', '2025-12-17 19:46:12', 'dljWe8OA', '8529058'), - (69, 3280, 'attending', '2025-10-09 17:47:48', '2025-12-17 19:46:13', 'dljWe8OA', '8535686'), - (69, 3281, 'not_attending', '2025-10-11 14:34:29', '2025-12-17 19:46:14', 'dljWe8OA', '8535687'), - (69, 3282, 'attending', '2025-10-04 20:21:46', '2025-12-17 19:46:13', 'dljWe8OA', '8537571'), - (69, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dljWe8OA', '8540725'), - (69, 3285, 'not_attending', '2025-10-08 18:56:32', '2025-12-17 19:46:13', 'dljWe8OA', '8540726'), - (69, 3286, 'attending', '2025-10-11 14:34:35', '2025-12-17 19:46:14', 'dljWe8OA', '8540728'), - (69, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dljWe8OA', '8555421'), - (70, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dz7V5Ebm', '7842108'), - (70, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dz7V5Ebm', '7842902'), - (70, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dz7V5Ebm', '7842903'), - (70, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dz7V5Ebm', '7842904'), - (70, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dz7V5Ebm', '7842905'), - (70, 2999, 'attending', '2025-02-13 02:18:05', '2025-12-17 19:46:23', 'dz7V5Ebm', '7844784'), - (70, 3001, 'maybe', '2025-02-21 03:09:07', '2025-12-17 19:46:24', 'dz7V5Ebm', '7854184'), - (70, 3003, 'attending', '2025-02-18 23:45:12', '2025-12-17 19:46:24', 'dz7V5Ebm', '7854589'), - (70, 3006, 'attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dz7V5Ebm', '7855719'), - (70, 3007, 'maybe', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dz7V5Ebm', '7860683'), - (70, 3008, 'attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dz7V5Ebm', '7860684'), - (70, 3009, 'maybe', '2025-02-28 23:04:13', '2025-12-17 19:46:18', 'dz7V5Ebm', '7864019'), - (70, 3010, 'maybe', '2025-03-01 01:20:05', '2025-12-17 19:46:18', 'dz7V5Ebm', '7864879'), - (70, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dz7V5Ebm', '7866095'), - (70, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dz7V5Ebm', '7869170'), - (70, 3014, 'attending', '2025-03-31 22:50:22', '2025-12-17 19:46:19', 'dz7V5Ebm', '7869185'), - (70, 3015, 'attending', '2025-04-22 22:14:00', '2025-12-17 19:46:20', 'dz7V5Ebm', '7869186'), - (70, 3016, 'attending', '2025-04-08 00:27:46', '2025-12-17 19:46:20', 'dz7V5Ebm', '7869187'), - (70, 3017, 'attending', '2025-03-25 22:48:11', '2025-12-17 19:46:19', 'dz7V5Ebm', '7869188'), - (70, 3018, 'attending', '2025-04-03 20:22:47', '2025-12-17 19:46:20', 'dz7V5Ebm', '7869189'), - (70, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dz7V5Ebm', '7869201'), - (70, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dz7V5Ebm', '7877465'), - (70, 3034, 'attending', '2025-03-11 22:18:53', '2025-12-17 19:46:18', 'dz7V5Ebm', '7878570'), - (70, 3039, 'maybe', '2025-03-19 21:07:13', '2025-12-17 19:46:19', 'dz7V5Ebm', '7881992'), - (70, 3040, 'maybe', '2025-03-17 23:03:50', '2025-12-17 19:46:19', 'dz7V5Ebm', '7881994'), - (70, 3041, 'maybe', '2025-03-16 22:54:37', '2025-12-17 19:46:19', 'dz7V5Ebm', '7881995'), - (70, 3051, 'attending', '2025-03-16 23:10:54', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884023'), - (70, 3052, 'maybe', '2025-03-17 22:45:02', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884024'), - (70, 3053, 'maybe', '2025-03-17 23:04:02', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884030'), - (70, 3054, 'maybe', '2025-03-17 22:13:08', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884168'), - (70, 3055, 'attending', '2025-03-25 22:48:07', '2025-12-17 19:46:19', 'dz7V5Ebm', '7888118'), - (70, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dz7V5Ebm', '7888250'), - (70, 3060, 'maybe', '2025-03-30 02:30:06', '2025-12-17 19:46:19', 'dz7V5Ebm', '7892589'), - (70, 3061, 'not_attending', '2025-03-28 20:47:32', '2025-12-17 19:46:19', 'dz7V5Ebm', '7892590'), - (70, 3065, 'attending', '2025-03-29 00:40:23', '2025-12-17 19:46:19', 'dz7V5Ebm', '7893676'), - (70, 3066, 'maybe', '2025-03-30 23:23:21', '2025-12-17 19:46:20', 'dz7V5Ebm', '7894207'), - (70, 3069, 'maybe', '2025-04-02 21:20:21', '2025-12-17 19:46:19', 'dz7V5Ebm', '7894828'), - (70, 3070, 'not_attending', '2025-03-30 23:34:30', '2025-12-17 19:46:20', 'dz7V5Ebm', '7894829'), - (70, 3075, 'maybe', '2025-04-08 00:26:35', '2025-12-17 19:46:20', 'dz7V5Ebm', '7898896'), - (70, 3080, 'attending', '2025-04-06 16:39:16', '2025-12-17 19:46:20', 'dz7V5Ebm', '7901441'), - (70, 3081, 'maybe', '2025-04-08 00:26:44', '2025-12-17 19:46:20', 'dz7V5Ebm', '7902801'), - (70, 3083, 'maybe', '2025-04-08 20:17:16', '2025-12-17 19:46:20', 'dz7V5Ebm', '7903308'), - (70, 3084, 'maybe', '2025-04-08 20:17:21', '2025-12-17 19:46:20', 'dz7V5Ebm', '7903687'), - (70, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dz7V5Ebm', '7904777'), - (70, 3090, 'maybe', '2025-04-16 20:40:20', '2025-12-17 19:46:20', 'dz7V5Ebm', '7914315'), - (70, 3093, 'maybe', '2025-04-21 01:14:42', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342248'), - (70, 3094, 'attending', '2025-05-07 23:07:59', '2025-12-17 19:46:21', 'dz7V5Ebm', '8342292'), - (70, 3095, 'attending', '2025-04-30 21:54:48', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342293'), - (70, 3096, 'not_attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342987'), - (70, 3097, 'maybe', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342993'), - (70, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dz7V5Ebm', '8349164'), - (70, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dz7V5Ebm', '8349545'), - (70, 3109, 'attending', '2025-05-07 23:08:34', '2025-12-17 19:46:21', 'dz7V5Ebm', '8352001'), - (70, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dz7V5Ebm', '8353584'), - (70, 3119, 'attending', '2025-05-05 20:54:14', '2025-12-17 19:46:21', 'dz7V5Ebm', '8360035'), - (70, 3121, 'maybe', '2025-05-12 22:51:26', '2025-12-17 19:46:21', 'dz7V5Ebm', '8362730'), - (70, 3122, 'maybe', '2025-05-08 21:33:08', '2025-12-17 19:46:21', 'dz7V5Ebm', '8362978'), - (70, 3131, 'attending', '2025-05-15 01:19:59', '2025-12-17 19:46:21', 'dz7V5Ebm', '8368028'), - (70, 3132, 'attending', '2025-05-15 22:47:14', '2025-12-17 19:46:21', 'dz7V5Ebm', '8368029'), - (70, 3133, 'attending', '2025-05-15 22:47:15', '2025-12-17 19:46:14', 'dz7V5Ebm', '8368030'), - (70, 3137, 'maybe', '2025-05-17 20:05:46', '2025-12-17 19:46:21', 'dz7V5Ebm', '8374153'), - (70, 3138, 'maybe', '2025-05-18 20:40:42', '2025-12-17 19:46:21', 'dz7V5Ebm', '8376037'), - (70, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dz7V5Ebm', '8388462'), - (70, 3150, 'maybe', '2025-06-21 20:35:37', '2025-12-17 19:46:15', 'dz7V5Ebm', '8393174'), - (70, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dz7V5Ebm', '8400273'), - (70, 3154, 'attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dz7V5Ebm', '8400274'), - (70, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dz7V5Ebm', '8400275'), - (70, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dz7V5Ebm', '8400276'), - (70, 3157, 'maybe', '2025-06-05 00:00:24', '2025-12-17 19:46:15', 'dz7V5Ebm', '8401407'), - (70, 3160, 'attending', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'dz7V5Ebm', '8401411'), - (70, 3163, 'not_attending', '2025-06-07 22:20:43', '2025-12-17 19:46:15', 'dz7V5Ebm', '8402899'), - (70, 3164, 'maybe', '2025-06-08 15:55:29', '2025-12-17 19:46:15', 'dz7V5Ebm', '8403121'), - (70, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dz7V5Ebm', '8404977'), - (70, 3176, 'maybe', '2025-06-23 23:19:16', '2025-12-17 19:46:15', 'dz7V5Ebm', '8416741'), - (70, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dz7V5Ebm', '8430783'), - (70, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dz7V5Ebm', '8430784'), - (70, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dz7V5Ebm', '8430799'), - (70, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dz7V5Ebm', '8430800'), - (70, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dz7V5Ebm', '8430801'), - (70, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dz7V5Ebm', '8438709'), - (70, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dz7V5Ebm', '8457738'), - (70, 3194, 'attending', '2025-07-18 22:12:20', '2025-12-17 19:46:17', 'dz7V5Ebm', '8457740'), - (70, 3197, 'attending', '2025-07-19 17:32:54', '2025-12-17 19:46:17', 'dz7V5Ebm', '8458825'), - (70, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dz7V5Ebm', '8459566'), - (70, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dz7V5Ebm', '8459567'), - (70, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dz7V5Ebm', '8461032'), - (70, 3205, 'maybe', '2025-07-20 23:48:22', '2025-12-17 19:46:17', 'dz7V5Ebm', '8461764'), - (70, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dz7V5Ebm', '8477877'), - (70, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dz7V5Ebm', '8485688'), - (70, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dz7V5Ebm', '8490587'), - (70, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dz7V5Ebm', '8493552'), - (70, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dz7V5Ebm', '8493553'), - (70, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dz7V5Ebm', '8493554'), - (70, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dz7V5Ebm', '8493555'), - (70, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dz7V5Ebm', '8493556'), - (70, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dz7V5Ebm', '8493557'), - (70, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dz7V5Ebm', '8493558'), - (70, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dz7V5Ebm', '8493559'), - (70, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dz7V5Ebm', '8493560'), - (70, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dz7V5Ebm', '8493561'), - (70, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dz7V5Ebm', '8493572'), - (70, 3257, 'maybe', '2025-08-27 23:53:23', '2025-12-17 19:46:11', 'dz7V5Ebm', '8502340'), - (70, 3258, 'maybe', '2025-09-03 22:52:25', '2025-12-17 19:46:11', 'dz7V5Ebm', '8510285'), - (70, 3274, 'maybe', '2025-09-20 21:23:38', '2025-12-17 19:46:12', 'dz7V5Ebm', '8527784'), - (70, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dz7V5Ebm', '8540725'), - (70, 3295, 'maybe', '2025-10-31 20:59:30', '2025-12-17 19:46:14', 'dz7V5Ebm', '8547541'), - (70, 3302, 'not_attending', '2025-11-06 00:51:33', '2025-12-17 19:46:14', 'dz7V5Ebm', '8550022'), - (70, 3304, 'not_attending', '2025-11-06 00:51:38', '2025-12-17 19:46:14', 'dz7V5Ebm', '8550024'), - (70, 3305, 'maybe', '2025-12-02 02:40:13', '2025-12-17 19:46:11', 'dz7V5Ebm', '8550025'), - (70, 3306, 'maybe', '2025-12-07 18:30:52', '2025-12-17 19:46:11', 'dz7V5Ebm', '8550026'), - (70, 3313, 'attending', '2025-10-30 21:58:16', '2025-12-17 19:46:14', 'dz7V5Ebm', '8550896'), - (70, 3314, 'maybe', '2025-11-04 01:00:15', '2025-12-17 19:46:14', 'dz7V5Ebm', '8551821'), - (70, 3317, 'attending', '2025-11-07 00:56:02', '2025-12-17 19:46:14', 'dz7V5Ebm', '8552943'), - (70, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dz7V5Ebm', '8555421'), - (70, 3327, 'maybe', '2025-12-02 02:41:28', '2025-12-17 19:46:11', 'dz7V5Ebm', '8557174'), - (70, 3331, 'attending', '2025-12-02 02:41:33', '2025-12-17 19:46:11', 'dz7V5Ebm', '8562166'), - (70, 3335, 'maybe', '2025-12-11 22:37:30', '2025-12-17 19:46:11', 'dz7V5Ebm', '8563247'), - (70, 3336, 'maybe', '2025-12-15 01:31:17', '2025-12-17 19:46:11', 'dz7V5Ebm', '8563248'), - (70, 3337, 'maybe', '2025-12-07 18:30:28', '2025-12-17 19:46:11', 'dz7V5Ebm', '8563315'), - (71, 1824, 'not_attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'GmjM985d', '5774172'), - (71, 1832, 'not_attending', '2022-12-03 19:14:16', '2025-12-17 19:47:16', 'GmjM985d', '5818247'), - (71, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjM985d', '5819471'), - (71, 1836, 'attending', '2022-12-07 15:09:52', '2025-12-17 19:47:16', 'GmjM985d', '5819484'), - (71, 1837, 'attending', '2022-12-07 18:12:02', '2025-12-17 19:47:16', 'GmjM985d', '5820146'), - (71, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GmjM985d', '5827739'), - (71, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjM985d', '5844306'), - (71, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjM985d', '5850159'), - (71, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjM985d', '5858999'), - (71, 1851, 'attending', '2023-01-09 01:02:40', '2025-12-17 19:47:05', 'GmjM985d', '5869316'), - (71, 1852, 'maybe', '2023-01-11 22:06:32', '2025-12-17 19:47:05', 'GmjM985d', '5869898'), - (71, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjM985d', '5871984'), - (71, 1859, 'attending', '2023-01-18 00:07:56', '2025-12-17 19:47:05', 'GmjM985d', '5876234'), - (71, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjM985d', '5876354'), - (71, 1864, 'attending', '2023-01-19 01:03:27', '2025-12-17 19:47:05', 'GmjM985d', '5879675'), - (71, 1865, 'attending', '2023-01-24 21:06:34', '2025-12-17 19:47:06', 'GmjM985d', '5879676'), - (71, 1866, 'attending', '2023-01-22 04:54:14', '2025-12-17 19:47:05', 'GmjM985d', '5880939'), - (71, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjM985d', '5880940'), - (71, 1868, 'attending', '2023-02-21 21:48:54', '2025-12-17 19:47:07', 'GmjM985d', '5880942'), - (71, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjM985d', '5880943'), - (71, 1871, 'attending', '2023-01-19 14:46:12', '2025-12-17 19:47:05', 'GmjM985d', '5883502'), - (71, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjM985d', '5887890'), - (71, 1875, 'attending', '2023-01-24 21:06:28', '2025-12-17 19:47:06', 'GmjM985d', '5887908'), - (71, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjM985d', '5888598'), - (71, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjM985d', '5893260'), - (71, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjM985d', '5899826'), - (71, 1885, 'attending', '2023-02-22 18:40:12', '2025-12-17 19:47:08', 'GmjM985d', '5899928'), - (71, 1886, 'attending', '2023-03-06 22:45:39', '2025-12-17 19:47:09', 'GmjM985d', '5899930'), - (71, 1888, 'attending', '2023-02-16 04:30:39', '2025-12-17 19:47:07', 'GmjM985d', '5900197'), - (71, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjM985d', '5900199'), - (71, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjM985d', '5900200'), - (71, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjM985d', '5900202'), - (71, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjM985d', '5900203'), - (71, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GmjM985d', '5901108'), - (71, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjM985d', '5901126'), - (71, 1897, 'attending', '2023-02-06 22:26:22', '2025-12-17 19:47:07', 'GmjM985d', '5901128'), - (71, 1899, 'attending', '2023-02-06 22:26:28', '2025-12-17 19:47:07', 'GmjM985d', '5901323'), - (71, 1905, 'not_attending', '2023-02-04 23:04:01', '2025-12-17 19:47:06', 'GmjM985d', '5904479'), - (71, 1906, 'attending', '2023-03-10 16:00:08', '2025-12-17 19:47:09', 'GmjM985d', '5904523'), - (71, 1908, 'attending', '2023-02-16 04:35:19', '2025-12-17 19:47:07', 'GmjM985d', '5905018'), - (71, 1910, 'attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjM985d', '5909655'), - (71, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjM985d', '5910522'), - (71, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjM985d', '5910526'), - (71, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjM985d', '5910528'), - (71, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjM985d', '5916219'), - (71, 1926, 'attending', '2023-02-26 00:31:58', '2025-12-17 19:47:08', 'GmjM985d', '5932620'), - (71, 1929, 'attending', '2023-02-20 19:12:56', '2025-12-17 19:47:07', 'GmjM985d', '5932628'), - (71, 1933, 'attending', '2023-02-20 22:24:14', '2025-12-17 19:47:08', 'GmjM985d', '5936234'), - (71, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjM985d', '5958351'), - (71, 1936, 'not_attending', '2023-02-26 00:31:42', '2025-12-17 19:47:08', 'GmjM985d', '5959397'), - (71, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjM985d', '5959751'), - (71, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjM985d', '5959755'), - (71, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjM985d', '5960055'), - (71, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjM985d', '5961684'), - (71, 1942, 'attending', '2023-03-01 18:53:49', '2025-12-17 19:47:08', 'GmjM985d', '5962085'), - (71, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'GmjM985d', '5962132'), - (71, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'GmjM985d', '5962133'), - (71, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjM985d', '5962134'), - (71, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjM985d', '5962317'), - (71, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjM985d', '5962318'), - (71, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GmjM985d', '5965933'), - (71, 1952, 'attending', '2023-03-02 21:55:31', '2025-12-17 19:47:08', 'GmjM985d', '5965937'), - (71, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjM985d', '5967014'), - (71, 1955, 'attending', '2023-03-29 15:22:22', '2025-12-17 19:46:57', 'GmjM985d', '5972529'), - (71, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjM985d', '5972815'), - (71, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjM985d', '5974016'), - (71, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjM985d', '5981515'), - (71, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjM985d', '5993516'), - (71, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjM985d', '5998939'), - (71, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjM985d', '6028191'), - (71, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjM985d', '6040066'), - (71, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjM985d', '6042717'), - (71, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjM985d', '6044838'), - (71, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GmjM985d', '6044839'), - (71, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'GmjM985d', '6045684'), - (71, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjM985d', '6050104'), - (71, 2002, 'attending', '2023-04-28 21:33:31', '2025-12-17 19:47:01', 'GmjM985d', '6052605'), - (71, 2003, 'attending', '2023-05-18 22:42:48', '2025-12-17 19:47:03', 'GmjM985d', '6052606'), - (71, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjM985d', '6053195'), - (71, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjM985d', '6053198'), - (71, 2008, 'attending', '2023-04-07 20:47:31', '2025-12-17 19:46:58', 'GmjM985d', '6055808'), - (71, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjM985d', '6056085'), - (71, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjM985d', '6056916'), - (71, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjM985d', '6059290'), - (71, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjM985d', '6060328'), - (71, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjM985d', '6061037'), - (71, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjM985d', '6061039'), - (71, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjM985d', '6067245'), - (71, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjM985d', '6068094'), - (71, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjM985d', '6068252'), - (71, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjM985d', '6068253'), - (71, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjM985d', '6068254'), - (71, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'GmjM985d', '6068280'), - (71, 2032, 'attending', '2023-05-31 01:46:20', '2025-12-17 19:47:04', 'GmjM985d', '6068281'), - (71, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjM985d', '6069093'), - (71, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'GmjM985d', '6072528'), - (71, 2046, 'maybe', '2023-05-12 16:01:54', '2025-12-17 19:47:02', 'GmjM985d', '6076020'), - (71, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjM985d', '6079840'), - (71, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjM985d', '6083398'), - (71, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'GmjM985d', '6093504'), - (71, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjM985d', '6097414'), - (71, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjM985d', '6097442'), - (71, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjM985d', '6097684'), - (71, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjM985d', '6098762'), - (71, 2065, 'attending', '2023-06-16 16:07:26', '2025-12-17 19:46:49', 'GmjM985d', '6101169'), - (71, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjM985d', '6101361'), - (71, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjM985d', '6101362'), - (71, 2069, 'attending', '2023-05-18 19:21:02', '2025-12-17 19:47:03', 'GmjM985d', '6103750'), - (71, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'GmjM985d', '6103752'), - (71, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjM985d', '6107314'), - (71, 2087, 'attending', '2023-05-31 01:46:15', '2025-12-17 19:47:04', 'GmjM985d', '6120034'), - (71, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'GmjM985d', '6136733'), - (71, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjM985d', '6137989'), - (71, 2097, 'maybe', '2023-06-12 14:23:27', '2025-12-17 19:47:04', 'GmjM985d', '6139059'), - (71, 2108, 'attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjM985d', '6150864'), - (71, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjM985d', '6155491'), - (71, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjM985d', '6164417'), - (71, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjM985d', '6166388'), - (71, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjM985d', '6176439'), - (71, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'GmjM985d', '6182410'), - (71, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjM985d', '6185812'), - (71, 2132, 'attending', '2023-07-09 22:53:38', '2025-12-17 19:46:52', 'GmjM985d', '6187015'), - (71, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjM985d', '6187651'), - (71, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjM985d', '6187963'), - (71, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjM985d', '6187964'), - (71, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjM985d', '6187966'), - (71, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjM985d', '6187967'), - (71, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjM985d', '6187969'), - (71, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjM985d', '6334878'), - (71, 2149, 'attending', '2023-07-18 16:56:52', '2025-12-17 19:46:53', 'GmjM985d', '6335682'), - (71, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjM985d', '6337236'), - (71, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjM985d', '6337970'), - (71, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjM985d', '6338308'), - (71, 2159, 'attending', '2023-07-21 00:28:46', '2025-12-17 19:46:53', 'GmjM985d', '6338355'), - (71, 2160, 'attending', '2023-07-27 13:29:08', '2025-12-17 19:46:54', 'GmjM985d', '6338358'), - (71, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'GmjM985d', '6340845'), - (71, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjM985d', '6341710'), - (71, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjM985d', '6342044'), - (71, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjM985d', '6342298'), - (71, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'GmjM985d', '6343294'), - (71, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjM985d', '6347034'), - (71, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjM985d', '6347056'), - (71, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjM985d', '6353830'), - (71, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjM985d', '6353831'), - (71, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjM985d', '6357867'), - (71, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjM985d', '6358652'), - (71, 2197, 'attending', '2023-09-15 14:13:18', '2025-12-17 19:46:44', 'GmjM985d', '6359399'), - (71, 2204, 'not_attending', '2023-08-19 10:14:42', '2025-12-17 19:46:55', 'GmjM985d', '6361542'), - (71, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjM985d', '6361709'), - (71, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjM985d', '6361710'), - (71, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjM985d', '6361711'), - (71, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjM985d', '6361712'), - (71, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjM985d', '6361713'), - (71, 2219, 'not_attending', '2023-08-28 08:04:59', '2025-12-17 19:46:55', 'GmjM985d', '6367309'), - (71, 2235, 'attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GmjM985d', '6382573'), - (71, 2236, 'attending', '2023-08-31 19:15:40', '2025-12-17 19:46:55', 'GmjM985d', '6382618'), - (71, 2239, 'attending', '2023-08-31 20:47:01', '2025-12-17 19:46:56', 'GmjM985d', '6387592'), - (71, 2240, 'attending', '2023-09-09 17:39:38', '2025-12-17 19:46:56', 'GmjM985d', '6388603'), - (71, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GmjM985d', '6388604'), - (71, 2243, 'maybe', '2023-09-07 19:40:50', '2025-12-17 19:46:56', 'GmjM985d', '6393686'), - (71, 2247, 'attending', '2023-09-06 19:56:44', '2025-12-17 19:46:56', 'GmjM985d', '6394628'), - (71, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GmjM985d', '6394629'), - (71, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjM985d', '6394631'), - (71, 2262, 'attending', '2023-10-01 22:16:29', '2025-12-17 19:46:45', 'GmjM985d', '6427423'), - (71, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjM985d', '6440863'), - (71, 2269, 'attending', '2023-10-05 21:25:03', '2025-12-17 19:46:45', 'GmjM985d', '6442978'), - (71, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjM985d', '6445440'), - (71, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjM985d', '6453951'), - (71, 2279, 'not_attending', '2023-10-11 15:13:39', '2025-12-17 19:46:46', 'GmjM985d', '6455460'), - (71, 2285, 'attending', '2023-10-27 01:45:31', '2025-12-17 19:46:47', 'GmjM985d', '6460929'), - (71, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjM985d', '6461696'), - (71, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjM985d', '6462129'), - (71, 2290, 'attending', '2023-10-18 14:36:30', '2025-12-17 19:46:46', 'GmjM985d', '6462214'), - (71, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjM985d', '6463218'), - (71, 2296, 'attending', '2023-10-26 12:10:38', '2025-12-17 19:46:47', 'GmjM985d', '6468393'), - (71, 2299, 'maybe', '2023-10-19 02:03:53', '2025-12-17 19:46:46', 'GmjM985d', '6472181'), - (71, 2302, 'attending', '2023-10-22 19:29:40', '2025-12-17 19:46:46', 'GmjM985d', '6482535'), - (71, 2303, 'attending', '2023-10-27 19:12:35', '2025-12-17 19:46:47', 'GmjM985d', '6482691'), - (71, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjM985d', '6482693'), - (71, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'GmjM985d', '6484200'), - (71, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'GmjM985d', '6484680'), - (71, 2310, 'attending', '2023-11-11 19:42:06', '2025-12-17 19:46:47', 'GmjM985d', '6487709'), - (71, 2315, 'attending', '2023-11-06 21:41:38', '2025-12-17 19:46:47', 'GmjM985d', '6493666'), - (71, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjM985d', '6507741'), - (71, 2322, 'attending', '2023-11-17 23:31:40', '2025-12-17 19:46:48', 'GmjM985d', '6514659'), - (71, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GmjM985d', '6514660'), - (71, 2325, 'maybe', '2023-12-16 04:55:32', '2025-12-17 19:46:36', 'GmjM985d', '6514663'), - (71, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjM985d', '6519103'), - (71, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjM985d', '6535681'), - (71, 2345, 'attending', '2023-11-29 20:57:49', '2025-12-17 19:46:48', 'GmjM985d', '6582414'), - (71, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjM985d', '6584747'), - (71, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjM985d', '6587097'), - (71, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjM985d', '6609022'), - (71, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GmjM985d', '6632757'), - (71, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjM985d', '6644187'), - (71, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjM985d', '6648951'), - (71, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GmjM985d', '6648952'), - (71, 2388, 'attending', '2024-01-06 13:25:04', '2025-12-17 19:46:37', 'GmjM985d', '6649244'), - (71, 2391, 'attending', '2024-01-12 04:30:07', '2025-12-17 19:46:37', 'GmjM985d', '6654138'), - (71, 2392, 'attending', '2024-01-12 00:46:41', '2025-12-17 19:46:37', 'GmjM985d', '6654412'), - (71, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjM985d', '6655401'), - (71, 2399, 'not_attending', '2024-01-13 21:55:46', '2025-12-17 19:46:38', 'GmjM985d', '6657583'), - (71, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjM985d', '6661585'), - (71, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjM985d', '6661588'), - (71, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjM985d', '6661589'), - (71, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjM985d', '6699906'), - (71, 2409, 'attending', '2024-02-03 23:00:52', '2025-12-17 19:46:41', 'GmjM985d', '6699909'), - (71, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GmjM985d', '6699913'), - (71, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjM985d', '6701109'), - (71, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjM985d', '6705219'), - (71, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjM985d', '6710153'), - (71, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjM985d', '6711552'), - (71, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'GmjM985d', '6711553'), - (71, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjM985d', '6722688'), - (71, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjM985d', '6730620'), - (71, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'GmjM985d', '6730642'), - (71, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjM985d', '6740364'), - (71, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjM985d', '6743829'), - (71, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjM985d', '7030380'), - (71, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GmjM985d', '7033677'), - (71, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'GmjM985d', '7035415'), - (71, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjM985d', '7044715'), - (71, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjM985d', '7050318'), - (71, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjM985d', '7050319'), - (71, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjM985d', '7050322'), - (71, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjM985d', '7057804'), - (71, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'GmjM985d', '7059866'), - (71, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjM985d', '7072824'), - (71, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjM985d', '7074348'), - (71, 2516, 'maybe', '2024-05-02 18:44:20', '2025-12-17 19:46:35', 'GmjM985d', '7074356'), - (71, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GmjM985d', '7074364'), - (71, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'GmjM985d', '7089267'), - (71, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjM985d', '7098747'), - (71, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GmjM985d', '7113468'), - (71, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjM985d', '7114856'), - (71, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjM985d', '7114951'), - (71, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjM985d', '7114955'), - (71, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjM985d', '7114956'), - (71, 2558, 'not_attending', '2024-05-02 18:47:36', '2025-12-17 19:46:35', 'GmjM985d', '7114957'), - (71, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'GmjM985d', '7153615'), - (71, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjM985d', '7159484'), - (71, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjM985d', '7178446'), - (71, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'GmjM985d', '7220467'), - (71, 2605, 'attending', '2024-05-02 18:44:34', '2025-12-17 19:46:35', 'GmjM985d', '7229243'), - (71, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjM985d', '7240354'), - (71, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjM985d', '7251633'), - (71, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'GmjM985d', '7263048'), - (71, 2626, 'attending', '2024-05-18 21:44:07', '2025-12-17 19:46:35', 'GmjM985d', '7264723'), - (71, 2629, 'attending', '2024-06-08 18:38:51', '2025-12-17 19:46:28', 'GmjM985d', '7264726'), - (71, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'GmjM985d', '7302674'), - (71, 2678, 'not_attending', '2024-06-15 18:55:33', '2025-12-17 19:46:28', 'GmjM985d', '7319489'), - (71, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjM985d', '7324073'), - (71, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjM985d', '7324074'), - (71, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GmjM985d', '7324075'), - (71, 2691, 'attending', '2024-07-20 20:02:23', '2025-12-17 19:46:30', 'GmjM985d', '7324076'), - (71, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GmjM985d', '7324078'), - (71, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GmjM985d', '7324082'), - (71, 2699, 'attending', '2024-06-12 22:34:16', '2025-12-17 19:46:28', 'GmjM985d', '7324385'), - (71, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GmjM985d', '7331457'), - (71, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'GmjM985d', '7356752'), - (71, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'GmjM985d', '7363643'), - (71, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GmjM985d', '7368606'), - (71, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GmjM985d', '7397462'), - (71, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GmjM985d', '7424275'), - (71, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'GmjM985d', '7424276'), - (71, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GmjM985d', '7432751'), - (71, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GmjM985d', '7432752'), - (71, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GmjM985d', '7432753'), - (71, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GmjM985d', '7432754'), - (71, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GmjM985d', '7432755'), - (71, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GmjM985d', '7432756'), - (71, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GmjM985d', '7432758'), - (71, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GmjM985d', '7432759'), - (71, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GmjM985d', '7433834'), - (71, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GmjM985d', '7470197'), - (71, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GmjM985d', '7685613'), - (71, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GmjM985d', '7688194'), - (71, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GmjM985d', '7688196'), - (71, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GmjM985d', '7688289'), - (71, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GmjM985d', '7692763'), - (71, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GmjM985d', '7697552'), - (71, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GmjM985d', '7699878'), - (71, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GmjM985d', '7704043'), - (71, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GmjM985d', '7712467'), - (71, 2925, 'attending', '2024-12-13 19:08:50', '2025-12-17 19:46:21', 'GmjM985d', '7713584'), - (71, 2926, 'attending', '2024-12-06 00:44:47', '2025-12-17 19:46:21', 'GmjM985d', '7713585'), - (71, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GmjM985d', '7713586'), - (71, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GmjM985d', '7738518'), - (71, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GmjM985d', '7750636'), - (71, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GmjM985d', '7796540'), - (71, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GmjM985d', '7796541'), - (71, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GmjM985d', '7796542'), - (71, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GmjM985d', '7825913'), - (71, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GmjM985d', '7826209'), - (71, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GmjM985d', '7834742'), - (71, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'GmjM985d', '7842108'), - (71, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GmjM985d', '7842902'), - (71, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GmjM985d', '7842903'), - (71, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GmjM985d', '7842904'), - (71, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GmjM985d', '7842905'), - (71, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GmjM985d', '7855719'), - (71, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GmjM985d', '7860683'), - (71, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GmjM985d', '7860684'), - (71, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GmjM985d', '7866095'), - (71, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GmjM985d', '7869170'), - (71, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GmjM985d', '7869188'), - (71, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GmjM985d', '7869201'), - (71, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GmjM985d', '7877465'), - (71, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'GmjM985d', '7878570'), - (71, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GmjM985d', '7888250'), - (71, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GmjM985d', '7904777'), - (71, 3094, 'attending', '2025-05-10 20:01:56', '2025-12-17 19:46:21', 'GmjM985d', '8342292'), - (71, 3095, 'attending', '2025-05-02 19:55:09', '2025-12-17 19:46:20', 'GmjM985d', '8342293'), - (71, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GmjM985d', '8349164'), - (71, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GmjM985d', '8349545'), - (71, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'GmjM985d', '8353584'), - (71, 3126, 'attending', '2025-05-13 19:53:53', '2025-12-17 19:46:21', 'GmjM985d', '8365614'), - (71, 3131, 'attending', '2025-05-14 20:52:47', '2025-12-17 19:46:21', 'GmjM985d', '8368028'), - (71, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GmjM985d', '8368029'), - (71, 3133, 'attending', '2025-05-31 18:17:36', '2025-12-17 19:46:14', 'GmjM985d', '8368030'), - (71, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GmjM985d', '8388462'), - (71, 3150, 'attending', '2025-06-21 17:29:28', '2025-12-17 19:46:15', 'GmjM985d', '8393174'), - (71, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GmjM985d', '8400273'), - (71, 3154, 'attending', '2025-06-27 23:10:32', '2025-12-17 19:46:15', 'GmjM985d', '8400274'), - (71, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GmjM985d', '8400275'), - (71, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'GmjM985d', '8400276'), - (71, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GmjM985d', '8404977'), - (71, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GmjM985d', '8430783'), - (71, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GmjM985d', '8430784'), - (71, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GmjM985d', '8430799'), - (71, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GmjM985d', '8430800'), - (71, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GmjM985d', '8430801'), - (71, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GmjM985d', '8438709'), - (71, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GmjM985d', '8457738'), - (71, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GmjM985d', '8459566'), - (71, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GmjM985d', '8459567'), - (71, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GmjM985d', '8461032'), - (71, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GmjM985d', '8477877'), - (71, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'GmjM985d', '8485688'), - (71, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GmjM985d', '8490587'), - (71, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GmjM985d', '8493552'), - (71, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GmjM985d', '8493553'), - (71, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GmjM985d', '8493554'), - (71, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GmjM985d', '8493555'), - (71, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GmjM985d', '8493556'), - (71, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GmjM985d', '8493557'), - (71, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GmjM985d', '8493558'), - (71, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GmjM985d', '8493559'), - (71, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GmjM985d', '8493560'), - (71, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GmjM985d', '8493561'), - (71, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GmjM985d', '8493572'), - (71, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GmjM985d', '8540725'), - (71, 3300, 'attending', '2025-11-07 21:53:21', '2025-12-17 19:46:14', 'GmjM985d', '8549145'), - (71, 3302, 'attending', '2025-11-15 20:29:36', '2025-12-17 19:46:14', 'GmjM985d', '8550022'), - (71, 3304, 'attending', '2025-11-22 21:19:59', '2025-12-17 19:46:14', 'GmjM985d', '8550024'), - (71, 3306, 'not_attending', '2025-12-09 18:20:15', '2025-12-17 19:46:11', 'GmjM985d', '8550026'), - (71, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GmjM985d', '8555421'), - (71, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'GmjM985d', '8555522'), - (72, 3300, 'attending', '2025-11-09 00:32:13', '2025-12-17 19:46:14', 'd5b07J1m', '8549145'), - (72, 3302, 'attending', '2025-11-14 12:59:45', '2025-12-17 19:46:14', 'd5b07J1m', '8550022'), - (72, 3308, 'attending', '2025-11-11 05:28:00', '2025-12-17 19:46:14', 'd5b07J1m', '8550408'), - (72, 3309, 'attending', '2025-11-17 00:57:21', '2025-12-17 19:46:14', 'd5b07J1m', '8550409'), - (72, 3316, 'attending', '2025-11-05 04:37:28', '2025-12-17 19:46:14', 'd5b07J1m', '8552493'), - (72, 3319, 'attending', '2025-11-14 01:06:59', '2025-12-17 19:46:14', 'd5b07J1m', '8553114'), - (72, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd5b07J1m', '8555421'), - (72, 3326, 'attending', '2025-11-20 00:28:50', '2025-12-17 19:46:14', 'd5b07J1m', '8556661'), - (73, 3015, 'attending', '2025-04-23 01:08:50', '2025-12-17 19:46:20', '841PEgPA', '7869186'), - (73, 3016, 'attending', '2025-04-19 02:01:28', '2025-12-17 19:46:20', '841PEgPA', '7869187'), - (73, 3088, 'attending', '2025-06-09 21:29:03', '2025-12-17 19:46:15', '841PEgPA', '7904777'), - (73, 3094, 'attending', '2025-05-10 21:34:01', '2025-12-17 19:46:21', '841PEgPA', '8342292'), - (73, 3095, 'attending', '2025-04-28 01:40:56', '2025-12-17 19:46:20', '841PEgPA', '8342293'), - (73, 3108, 'attending', '2025-05-01 01:58:39', '2025-12-17 19:46:20', '841PEgPA', '8351411'), - (73, 3112, 'maybe', '2025-05-07 20:56:27', '2025-12-17 19:46:21', '841PEgPA', '8353584'), - (73, 3113, 'attending', '2025-05-01 21:18:44', '2025-12-17 19:46:20', '841PEgPA', '8355089'), - (73, 3119, 'attending', '2025-05-13 19:32:52', '2025-12-17 19:46:21', '841PEgPA', '8360035'), - (73, 3126, 'attending', '2025-05-14 02:50:24', '2025-12-17 19:46:21', '841PEgPA', '8365614'), - (73, 3128, 'maybe', '2025-05-13 16:42:12', '2025-12-17 19:46:21', '841PEgPA', '8366077'), - (73, 3131, 'attending', '2025-05-15 04:11:14', '2025-12-17 19:46:21', '841PEgPA', '8368028'), - (73, 3132, 'attending', '2025-05-23 19:27:25', '2025-12-17 19:46:21', '841PEgPA', '8368029'), - (73, 3134, 'attending', '2025-05-15 04:11:03', '2025-12-17 19:46:21', '841PEgPA', '8368031'), - (73, 3136, 'attending', '2025-05-21 19:54:41', '2025-12-17 19:46:21', '841PEgPA', '8374152'), - (73, 3137, 'attending', '2025-05-21 19:54:32', '2025-12-17 19:46:21', '841PEgPA', '8374153'), - (73, 3139, 'attending', '2025-05-23 19:27:20', '2025-12-17 19:46:21', '841PEgPA', '8377425'), - (73, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '841PEgPA', '8388462'), - (73, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '841PEgPA', '8400273'), - (73, 3154, 'not_attending', '2025-06-17 04:55:06', '2025-12-17 19:46:15', '841PEgPA', '8400274'), - (73, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '841PEgPA', '8400275'), - (73, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '841PEgPA', '8400276'), - (73, 3159, 'maybe', '2025-06-09 21:29:57', '2025-12-17 19:46:15', '841PEgPA', '8401410'), - (73, 3169, 'attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '841PEgPA', '8404977'), - (73, 3172, 'not_attending', '2025-06-17 05:09:39', '2025-12-17 19:46:15', '841PEgPA', '8410181'), - (73, 3173, 'attending', '2025-06-14 20:27:43', '2025-12-17 19:46:15', '841PEgPA', '8410806'), - (73, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '841PEgPA', '8430783'), - (73, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '841PEgPA', '8430784'), - (73, 3183, 'attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '841PEgPA', '8430799'), - (73, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '841PEgPA', '8430800'), - (73, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '841PEgPA', '8430801'), - (73, 3186, 'attending', '2025-07-03 21:00:22', '2025-12-17 19:46:16', '841PEgPA', '8431527'), - (73, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '841PEgPA', '8438709'), - (73, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '841PEgPA', '8457738'), - (73, 3194, 'not_attending', '2025-07-17 22:37:32', '2025-12-17 19:46:17', '841PEgPA', '8457740'), - (73, 3196, 'attending', '2025-08-13 20:13:07', '2025-12-17 19:46:17', '841PEgPA', '8458543'), - (73, 3198, 'maybe', '2025-08-18 16:03:11', '2025-12-17 19:46:18', '841PEgPA', '8459268'), - (73, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '841PEgPA', '8459566'), - (73, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '841PEgPA', '8459567'), - (73, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '841PEgPA', '8461032'), - (73, 3208, 'attending', '2025-07-31 17:33:12', '2025-12-17 19:46:17', '841PEgPA', '8467717'), - (73, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '841PEgPA', '8477877'), - (73, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '841PEgPA', '8485688'), - (73, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '841PEgPA', '8490587'), - (73, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '841PEgPA', '8493552'), - (73, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '841PEgPA', '8493553'), - (73, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '841PEgPA', '8493554'), - (73, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '841PEgPA', '8493555'), - (73, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '841PEgPA', '8493556'), - (73, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '841PEgPA', '8493557'), - (73, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '841PEgPA', '8493558'), - (73, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '841PEgPA', '8493559'), - (73, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '841PEgPA', '8493560'), - (73, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '841PEgPA', '8493561'), - (73, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '841PEgPA', '8493572'), - (73, 3255, 'maybe', '2025-08-26 11:40:57', '2025-12-17 19:46:18', '841PEgPA', '8495106'), - (73, 3256, 'maybe', '2025-08-27 17:49:41', '2025-12-17 19:46:11', '841PEgPA', '8501354'), - (73, 3258, 'attending', '2025-09-03 18:34:13', '2025-12-17 19:46:11', '841PEgPA', '8510285'), - (73, 3259, 'maybe', '2025-09-08 03:11:49', '2025-12-17 19:46:12', '841PEgPA', '8512638'), - (73, 3260, 'attending', '2025-09-08 03:11:33', '2025-12-17 19:46:12', '841PEgPA', '8512640'), - (73, 3261, 'attending', '2025-09-16 22:16:29', '2025-12-17 19:46:12', '841PEgPA', '8512641'), - (73, 3262, 'maybe', '2025-09-18 19:44:16', '2025-12-17 19:46:12', '841PEgPA', '8512642'), - (73, 3263, 'attending', '2025-09-10 16:00:30', '2025-12-17 19:46:12', '841PEgPA', '8514576'), - (73, 3265, 'attending', '2025-09-24 20:34:59', '2025-12-17 19:46:12', '841PEgPA', '8514578'), - (73, 3266, 'attending', '2025-09-30 00:12:54', '2025-12-17 19:46:13', '841PEgPA', '8514579'), - (73, 3268, 'maybe', '2025-09-18 22:25:17', '2025-12-17 19:46:12', '841PEgPA', '8514581'), - (73, 3271, 'maybe', '2025-09-22 19:46:43', '2025-12-17 19:46:12', '841PEgPA', '8521430'), - (73, 3279, 'attending', '2025-10-01 23:38:14', '2025-12-17 19:46:13', '841PEgPA', '8535685'), - (73, 3282, 'attending', '2025-10-06 18:58:22', '2025-12-17 19:46:13', '841PEgPA', '8537571'), - (73, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '841PEgPA', '8540725'), - (73, 3289, 'attending', '2025-10-20 19:06:24', '2025-12-17 19:46:14', '841PEgPA', '8542939'), - (73, 3292, 'attending', '2025-10-21 21:38:29', '2025-12-17 19:46:14', '841PEgPA', '8543835'), - (73, 3295, 'maybe', '2025-10-29 03:15:31', '2025-12-17 19:46:14', '841PEgPA', '8547541'), - (73, 3300, 'not_attending', '2025-11-05 05:29:38', '2025-12-17 19:46:14', '841PEgPA', '8549145'), - (73, 3305, 'attending', '2025-12-01 04:45:59', '2025-12-17 19:46:11', '841PEgPA', '8550025'), - (73, 3306, 'attending', '2025-12-10 22:59:29', '2025-12-17 19:46:11', '841PEgPA', '8550026'), - (73, 3307, 'attending', '2025-12-15 09:33:46', '2025-12-17 19:46:11', '841PEgPA', '8550027'), - (73, 3308, 'maybe', '2025-11-10 22:38:09', '2025-12-17 19:46:14', '841PEgPA', '8550408'), - (73, 3309, 'attending', '2025-11-17 00:11:58', '2025-12-17 19:46:14', '841PEgPA', '8550409'), - (73, 3310, 'attending', '2025-12-01 04:45:31', '2025-12-17 19:46:11', '841PEgPA', '8550410'), - (73, 3311, 'attending', '2025-12-08 04:50:27', '2025-12-17 19:46:11', '841PEgPA', '8550412'), - (73, 3313, 'attending', '2025-11-05 23:56:51', '2025-12-17 19:46:14', '841PEgPA', '8550896'), - (73, 3317, 'maybe', '2025-11-10 22:38:14', '2025-12-17 19:46:14', '841PEgPA', '8552943'), - (73, 3319, 'attending', '2025-11-08 01:20:04', '2025-12-17 19:46:14', '841PEgPA', '8553114'), - (73, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '841PEgPA', '8555421'), - (73, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', '841PEgPA', '8555522'), - (73, 3327, 'attending', '2025-12-04 20:57:38', '2025-12-17 19:46:11', '841PEgPA', '8557174'), - (73, 3334, 'attending', '2025-12-08 18:12:46', '2025-12-17 19:46:11', '841PEgPA', '8563246'), - (73, 3335, 'attending', '2025-12-11 22:25:11', '2025-12-17 19:46:11', '841PEgPA', '8563247'), - (73, 3336, 'attending', '2025-12-15 22:42:16', '2025-12-17 19:46:11', '841PEgPA', '8563248'), - (74, 646, 'attending', '2021-05-12 20:55:10', '2025-12-17 19:47:46', 'amG6Ynrd', '3539921'), - (74, 647, 'attending', '2021-05-17 20:53:45', '2025-12-17 19:47:46', 'amG6Ynrd', '3539922'), - (74, 648, 'attending', '2021-05-24 22:45:28', '2025-12-17 19:47:47', 'amG6Ynrd', '3539923'), - (74, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amG6Ynrd', '3974109'), - (74, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amG6Ynrd', '3975311'), - (74, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amG6Ynrd', '3975312'), - (74, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amG6Ynrd', '3994992'), - (74, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amG6Ynrd', '4014338'), - (74, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amG6Ynrd', '4021848'), - (74, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amG6Ynrd', '4136744'), - (74, 870, 'attending', '2021-06-29 22:35:06', '2025-12-17 19:47:38', 'amG6Ynrd', '4136937'), - (74, 871, 'attending', '2021-07-06 19:21:23', '2025-12-17 19:47:39', 'amG6Ynrd', '4136938'), - (74, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amG6Ynrd', '4136947'), - (74, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amG6Ynrd', '4210314'), - (74, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amG6Ynrd', '4225444'), - (74, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amG6Ynrd', '4239259'), - (74, 900, 'attending', '2021-07-18 20:15:30', '2025-12-17 19:47:40', 'amG6Ynrd', '4240316'), - (74, 901, 'attending', '2021-07-31 17:55:35', '2025-12-17 19:47:40', 'amG6Ynrd', '4240317'), - (74, 902, 'attending', '2021-08-04 21:43:39', '2025-12-17 19:47:41', 'amG6Ynrd', '4240318'), - (74, 903, 'not_attending', '2021-08-13 16:21:28', '2025-12-17 19:47:42', 'amG6Ynrd', '4240320'), - (74, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amG6Ynrd', '4250163'), - (74, 919, 'attending', '2021-07-17 23:16:00', '2025-12-17 19:47:39', 'amG6Ynrd', '4275957'), - (74, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amG6Ynrd', '4277819'), - (74, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amG6Ynrd', '4301723'), - (74, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'amG6Ynrd', '4302093'), - (74, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amG6Ynrd', '4304151'), - (74, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'amG6Ynrd', '4345519'), - (74, 971, 'not_attending', '2021-09-08 22:58:52', '2025-12-17 19:47:43', 'amG6Ynrd', '4356801'), - (74, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'amG6Ynrd', '4358025'), - (74, 973, 'attending', '2021-08-21 15:29:52', '2025-12-17 19:47:42', 'amG6Ynrd', '4366186'), - (74, 974, 'attending', '2021-08-28 14:59:15', '2025-12-17 19:47:42', 'amG6Ynrd', '4366187'), - (74, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'amG6Ynrd', '4402823'), - (74, 990, 'not_attending', '2021-08-29 14:05:19', '2025-12-17 19:47:43', 'amG6Ynrd', '4420735'), - (74, 991, 'attending', '2021-08-29 14:05:58', '2025-12-17 19:47:43', 'amG6Ynrd', '4420738'), - (74, 992, 'attending', '2021-09-18 22:16:58', '2025-12-17 19:47:33', 'amG6Ynrd', '4420739'), - (74, 993, 'attending', '2021-09-25 21:11:56', '2025-12-17 19:47:34', 'amG6Ynrd', '4420741'), - (74, 994, 'not_attending', '2021-10-02 01:35:02', '2025-12-17 19:47:34', 'amG6Ynrd', '4420742'), - (74, 995, 'not_attending', '2021-10-06 22:20:01', '2025-12-17 19:47:34', 'amG6Ynrd', '4420744'), - (74, 996, 'maybe', '2021-10-16 22:10:34', '2025-12-17 19:47:35', 'amG6Ynrd', '4420747'), - (74, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'amG6Ynrd', '4420748'), - (74, 998, 'maybe', '2021-10-30 22:13:01', '2025-12-17 19:47:36', 'amG6Ynrd', '4420749'), - (74, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'amG6Ynrd', '4461883'), - (74, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'amG6Ynrd', '4508342'), - (74, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'amG6Ynrd', '4568602'), - (74, 1087, 'maybe', '2021-10-15 18:11:45', '2025-12-17 19:47:35', 'amG6Ynrd', '4572153'), - (74, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'amG6Ynrd', '4585962'), - (74, 1094, 'attending', '2021-10-31 22:32:28', '2025-12-17 19:47:36', 'amG6Ynrd', '4587337'), - (74, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'amG6Ynrd', '4596356'), - (74, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'amG6Ynrd', '4598860'), - (74, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'amG6Ynrd', '4598861'), - (74, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'amG6Ynrd', '4602797'), - (74, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'amG6Ynrd', '4637896'), - (74, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'amG6Ynrd', '4642994'), - (74, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'amG6Ynrd', '4642995'), - (74, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'amG6Ynrd', '4642996'), - (74, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'amG6Ynrd', '4642997'), - (74, 1126, 'attending', '2021-12-11 18:46:37', '2025-12-17 19:47:38', 'amG6Ynrd', '4645687'), - (74, 1127, 'attending', '2021-12-12 20:52:27', '2025-12-17 19:47:38', 'amG6Ynrd', '4645698'), - (74, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'amG6Ynrd', '4645704'), - (74, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'amG6Ynrd', '4645705'), - (74, 1130, 'attending', '2021-12-04 22:58:27', '2025-12-17 19:47:37', 'amG6Ynrd', '4658824'), - (74, 1131, 'not_attending', '2021-12-19 00:33:23', '2025-12-17 19:47:31', 'amG6Ynrd', '4658825'), - (74, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'amG6Ynrd', '4668385'), - (74, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amG6Ynrd', '4694407'), - (74, 1173, 'attending', '2022-01-08 14:28:14', '2025-12-17 19:47:31', 'amG6Ynrd', '4736495'), - (74, 1174, 'attending', '2022-01-16 00:21:27', '2025-12-17 19:47:31', 'amG6Ynrd', '4736496'), - (74, 1175, 'attending', '2022-01-21 19:51:53', '2025-12-17 19:47:32', 'amG6Ynrd', '4736497'), - (74, 1176, 'attending', '2022-02-06 00:02:32', '2025-12-17 19:47:32', 'amG6Ynrd', '4736498'), - (74, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amG6Ynrd', '4736499'), - (74, 1178, 'maybe', '2022-01-29 04:59:54', '2025-12-17 19:47:32', 'amG6Ynrd', '4736500'), - (74, 1181, 'attending', '2022-03-05 12:30:57', '2025-12-17 19:47:33', 'amG6Ynrd', '4736503'), - (74, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amG6Ynrd', '4736504'), - (74, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'amG6Ynrd', '4746789'), - (74, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amG6Ynrd', '4753929'), - (74, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amG6Ynrd', '5038850'), - (74, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amG6Ynrd', '5045826'), - (74, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amG6Ynrd', '5132533'), - (74, 1272, 'maybe', '2022-03-18 19:52:05', '2025-12-17 19:47:25', 'amG6Ynrd', '5186582'), - (74, 1273, 'maybe', '2022-03-20 10:01:16', '2025-12-17 19:47:25', 'amG6Ynrd', '5186583'), - (74, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amG6Ynrd', '5186585'), - (74, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amG6Ynrd', '5190437'), - (74, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'amG6Ynrd', '5195095'), - (74, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'amG6Ynrd', '5215989'), - (74, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'amG6Ynrd', '5223686'), - (74, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'amG6Ynrd', '5227432'), - (74, 1336, 'maybe', '2022-04-19 16:33:19', '2025-12-17 19:47:27', 'amG6Ynrd', '5244915'), - (74, 1346, 'maybe', '2022-04-20 00:05:45', '2025-12-17 19:47:27', 'amG6Ynrd', '5247467'), - (74, 1362, 'attending', '2022-04-29 17:28:49', '2025-12-17 19:47:28', 'amG6Ynrd', '5260800'), - (74, 1374, 'not_attending', '2022-05-07 21:46:13', '2025-12-17 19:47:28', 'amG6Ynrd', '5269930'), - (74, 1378, 'not_attending', '2022-05-14 15:03:35', '2025-12-17 19:47:29', 'amG6Ynrd', '5271448'), - (74, 1379, 'not_attending', '2022-05-21 23:01:38', '2025-12-17 19:47:30', 'amG6Ynrd', '5271449'), - (74, 1383, 'maybe', '2022-05-04 01:02:55', '2025-12-17 19:47:28', 'amG6Ynrd', '5276469'), - (74, 1384, 'not_attending', '2022-05-07 21:46:17', '2025-12-17 19:47:28', 'amG6Ynrd', '5277078'), - (74, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'amG6Ynrd', '5278159'), - (74, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'amG6Ynrd', '5363695'), - (74, 1408, 'not_attending', '2022-05-20 21:57:31', '2025-12-17 19:47:29', 'amG6Ynrd', '5365960'), - (74, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'amG6Ynrd', '5368973'), - (74, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'amG6Ynrd', '5378247'), - (74, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'amG6Ynrd', '5389605'), - (74, 1442, 'attending', '2022-06-18 12:02:49', '2025-12-17 19:47:17', 'amG6Ynrd', '5397265'), - (74, 1451, 'not_attending', '2022-06-17 16:03:24', '2025-12-17 19:47:17', 'amG6Ynrd', '5403967'), - (74, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'amG6Ynrd', '5404786'), - (74, 1462, 'not_attending', '2022-06-17 16:03:27', '2025-12-17 19:47:17', 'amG6Ynrd', '5405203'), - (74, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'amG6Ynrd', '5411699'), - (74, 1482, 'not_attending', '2022-06-25 15:30:57', '2025-12-17 19:47:19', 'amG6Ynrd', '5412550'), - (74, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'amG6Ynrd', '5415046'), - (74, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'amG6Ynrd', '5422086'), - (74, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'amG6Ynrd', '5422406'), - (74, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'amG6Ynrd', '5424565'), - (74, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'amG6Ynrd', '5426882'), - (74, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'amG6Ynrd', '5427083'), - (74, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'amG6Ynrd', '5441125'), - (74, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'amG6Ynrd', '5441126'), - (74, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'amG6Ynrd', '5446643'), - (74, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'amG6Ynrd', '5453325'), - (74, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'amG6Ynrd', '5454516'), - (74, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'amG6Ynrd', '5454605'), - (74, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'amG6Ynrd', '5455037'), - (74, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'amG6Ynrd', '5471073'), - (74, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'amG6Ynrd', '5474663'), - (74, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'amG6Ynrd', '5482022'), - (74, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amG6Ynrd', '6045684'), - (74, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'amG6Ynrd', '6361713'), - (74, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'amG6Ynrd', '6388604'), - (74, 2242, 'attending', '2023-09-22 23:30:43', '2025-12-17 19:46:45', 'amG6Ynrd', '6388606'), - (74, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'amG6Ynrd', '6394629'), - (74, 2250, 'maybe', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'amG6Ynrd', '6394631'), - (74, 2253, 'attending', '2023-09-26 21:35:15', '2025-12-17 19:46:45', 'amG6Ynrd', '6401811'), - (74, 2254, 'attending', '2023-09-10 21:29:34', '2025-12-17 19:46:44', 'amG6Ynrd', '6401889'), - (74, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'amG6Ynrd', '6440863'), - (74, 2270, 'attending', '2023-10-10 21:20:44', '2025-12-17 19:46:46', 'amG6Ynrd', '6443067'), - (74, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'amG6Ynrd', '6445440'), - (74, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'amG6Ynrd', '6453951'), - (74, 2283, 'maybe', '2023-10-10 22:55:48', '2025-12-17 19:46:46', 'amG6Ynrd', '6455503'), - (74, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'amG6Ynrd', '6461696'), - (74, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'amG6Ynrd', '6462129'), - (74, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'amG6Ynrd', '6463218'), - (74, 2299, 'attending', '2023-10-20 21:54:28', '2025-12-17 19:46:46', 'amG6Ynrd', '6472181'), - (74, 2303, 'attending', '2023-10-26 20:57:01', '2025-12-17 19:46:47', 'amG6Ynrd', '6482691'), - (74, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'amG6Ynrd', '6482693'), - (74, 2306, 'maybe', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'amG6Ynrd', '6484200'), - (74, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'amG6Ynrd', '6484680'), - (74, 2310, 'not_attending', '2023-11-11 19:57:59', '2025-12-17 19:46:47', 'amG6Ynrd', '6487709'), - (74, 2314, 'not_attending', '2023-11-01 22:15:33', '2025-12-17 19:46:47', 'amG6Ynrd', '6493665'), - (74, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'amG6Ynrd', '6507741'), - (74, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'amG6Ynrd', '6514659'), - (74, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'amG6Ynrd', '6514660'), - (74, 2324, 'attending', '2023-12-09 21:43:37', '2025-12-17 19:46:49', 'amG6Ynrd', '6514662'), - (74, 2325, 'attending', '2023-12-15 11:35:41', '2025-12-17 19:46:36', 'amG6Ynrd', '6514663'), - (74, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'amG6Ynrd', '6519103'), - (74, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'amG6Ynrd', '6535681'), - (74, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'amG6Ynrd', '6584747'), - (74, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'amG6Ynrd', '6587097'), - (74, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'amG6Ynrd', '6609022'), - (74, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'amG6Ynrd', '6632757'), - (74, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'amG6Ynrd', '6644187'), - (74, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'amG6Ynrd', '6648951'), - (74, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'amG6Ynrd', '6648952'), - (74, 2388, 'maybe', '2024-01-05 11:50:53', '2025-12-17 19:46:37', 'amG6Ynrd', '6649244'), - (74, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'amG6Ynrd', '6655401'), - (74, 2399, 'maybe', '2024-01-13 20:04:48', '2025-12-17 19:46:38', 'amG6Ynrd', '6657583'), - (74, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'amG6Ynrd', '6661585'), - (74, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'amG6Ynrd', '6661588'), - (74, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'amG6Ynrd', '6661589'), - (74, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'amG6Ynrd', '6699906'), - (74, 2408, 'attending', '2024-01-27 17:48:51', '2025-12-17 19:46:40', 'amG6Ynrd', '6699907'), - (74, 2409, 'not_attending', '2024-01-31 20:24:49', '2025-12-17 19:46:41', 'amG6Ynrd', '6699909'), - (74, 2410, 'attending', '2024-02-09 23:20:48', '2025-12-17 19:46:41', 'amG6Ynrd', '6699911'), - (74, 2411, 'attending', '2024-02-16 15:44:11', '2025-12-17 19:46:41', 'amG6Ynrd', '6699913'), - (74, 2412, 'not_attending', '2024-02-20 11:51:47', '2025-12-17 19:46:43', 'amG6Ynrd', '6700717'), - (74, 2414, 'attending', '2024-01-20 17:54:09', '2025-12-17 19:46:40', 'amG6Ynrd', '6701000'), - (74, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'amG6Ynrd', '6701109'), - (74, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'amG6Ynrd', '6705219'), - (74, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'amG6Ynrd', '6710153'), - (74, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'amG6Ynrd', '6711552'), - (74, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'amG6Ynrd', '6711553'), - (74, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'amG6Ynrd', '6722688'), - (74, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'amG6Ynrd', '6730620'), - (74, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'amG6Ynrd', '6730642'), - (74, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'amG6Ynrd', '6740364'), - (74, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'amG6Ynrd', '6743829'), - (74, 2465, 'not_attending', '2024-02-17 22:18:49', '2025-12-17 19:46:42', 'amG6Ynrd', '7026725'), - (74, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'amG6Ynrd', '7030380'), - (74, 2469, 'maybe', '2024-02-17 22:17:38', '2025-12-17 19:46:42', 'amG6Ynrd', '7030632'), - (74, 2471, 'maybe', '2024-02-19 01:04:34', '2025-12-17 19:46:42', 'amG6Ynrd', '7032425'), - (74, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'amG6Ynrd', '7033677'), - (74, 2474, 'attending', '2024-02-20 21:49:45', '2025-12-17 19:46:43', 'amG6Ynrd', '7035415'), - (74, 2475, 'maybe', '2024-02-23 03:33:01', '2025-12-17 19:46:43', 'amG6Ynrd', '7035643'), - (74, 2477, 'maybe', '2024-02-22 22:52:38', '2025-12-17 19:46:42', 'amG6Ynrd', '7035692'), - (74, 2481, 'maybe', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'amG6Ynrd', '7044715'), - (74, 2482, 'not_attending', '2024-03-07 01:06:19', '2025-12-17 19:46:44', 'amG6Ynrd', '7044719'), - (74, 2483, 'not_attending', '2024-02-24 21:49:12', '2025-12-17 19:46:32', 'amG6Ynrd', '7044720'), - (74, 2485, 'attending', '2024-02-26 23:56:04', '2025-12-17 19:46:43', 'amG6Ynrd', '7048111'), - (74, 2486, 'maybe', '2024-03-04 23:28:23', '2025-12-17 19:46:43', 'amG6Ynrd', '7048277'), - (74, 2487, 'maybe', '2024-03-17 20:20:11', '2025-12-17 19:46:33', 'amG6Ynrd', '7049279'), - (74, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'amG6Ynrd', '7050318'), - (74, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'amG6Ynrd', '7050319'), - (74, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'amG6Ynrd', '7050322'), - (74, 2493, 'not_attending', '2024-03-10 21:05:39', '2025-12-17 19:46:32', 'amG6Ynrd', '7052471'), - (74, 2494, 'not_attending', '2024-03-10 21:05:42', '2025-12-17 19:46:32', 'amG6Ynrd', '7052472'), - (74, 2499, 'attending', '2024-03-07 01:05:52', '2025-12-17 19:46:43', 'amG6Ynrd', '7057804'), - (74, 2502, 'maybe', '2024-03-17 20:19:39', '2025-12-17 19:46:33', 'amG6Ynrd', '7061202'), - (74, 2503, 'not_attending', '2024-03-07 01:09:11', '2025-12-17 19:46:32', 'amG6Ynrd', '7062500'), - (74, 2505, 'maybe', '2024-03-17 20:19:57', '2025-12-17 19:46:33', 'amG6Ynrd', '7069163'), - (74, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'amG6Ynrd', '7072824'), - (74, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'amG6Ynrd', '7074348'), - (74, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'amG6Ynrd', '7074364'), - (74, 2525, 'maybe', '2024-06-10 16:59:37', '2025-12-17 19:46:28', 'amG6Ynrd', '7074365'), - (74, 2534, 'maybe', '2024-03-13 16:22:34', '2025-12-17 19:46:32', 'amG6Ynrd', '7076875'), - (74, 2539, 'attending', '2024-04-05 18:33:49', '2025-12-17 19:46:33', 'amG6Ynrd', '7085486'), - (74, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'amG6Ynrd', '7089267'), - (74, 2541, 'maybe', '2024-03-17 20:19:16', '2025-12-17 19:46:33', 'amG6Ynrd', '7089404'), - (74, 2548, 'maybe', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'amG6Ynrd', '7098747'), - (74, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'amG6Ynrd', '7113468'), - (74, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'amG6Ynrd', '7114856'), - (74, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'amG6Ynrd', '7114951'), - (74, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'amG6Ynrd', '7114955'), - (74, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'amG6Ynrd', '7114956'), - (74, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'amG6Ynrd', '7114957'), - (74, 2566, 'maybe', '2024-04-05 18:35:25', '2025-12-17 19:46:34', 'amG6Ynrd', '7140664'), - (74, 2567, 'maybe', '2024-04-05 18:34:22', '2025-12-17 19:46:33', 'amG6Ynrd', '7144962'), - (74, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'amG6Ynrd', '7153615'), - (74, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'amG6Ynrd', '7159484'), - (74, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'amG6Ynrd', '7178446'), - (74, 2597, 'maybe', '2024-04-23 20:00:49', '2025-12-17 19:46:34', 'amG6Ynrd', '7186726'), - (74, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'amG6Ynrd', '7220467'), - (74, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'amG6Ynrd', '7240354'), - (74, 2613, 'maybe', '2024-05-05 12:55:48', '2025-12-17 19:46:35', 'amG6Ynrd', '7247644'), - (74, 2614, 'maybe', '2024-05-05 12:55:54', '2025-12-17 19:46:35', 'amG6Ynrd', '7247645'), - (74, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'amG6Ynrd', '7251633'), - (74, 2626, 'attending', '2024-05-18 11:20:56', '2025-12-17 19:46:35', 'amG6Ynrd', '7264723'), - (74, 2627, 'attending', '2024-05-20 08:45:38', '2025-12-17 19:46:35', 'amG6Ynrd', '7264724'), - (74, 2628, 'attending', '2024-05-29 00:35:17', '2025-12-17 19:46:36', 'amG6Ynrd', '7264725'), - (74, 2629, 'attending', '2024-06-07 21:26:09', '2025-12-17 19:46:28', 'amG6Ynrd', '7264726'), - (74, 2636, 'maybe', '2024-05-20 08:45:44', '2025-12-17 19:46:35', 'amG6Ynrd', '7270323'), - (74, 2637, 'maybe', '2024-05-20 08:45:46', '2025-12-17 19:46:35', 'amG6Ynrd', '7270324'), - (74, 2647, 'attending', '2024-05-21 16:58:41', '2025-12-17 19:46:28', 'amG6Ynrd', '7282057'), - (74, 2649, 'maybe', '2024-05-25 13:02:51', '2025-12-17 19:46:35', 'amG6Ynrd', '7282950'), - (74, 2652, 'maybe', '2024-05-29 00:34:52', '2025-12-17 19:46:36', 'amG6Ynrd', '7288339'), - (74, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'amG6Ynrd', '7302674'), - (74, 2672, 'maybe', '2024-06-09 16:03:14', '2025-12-17 19:46:28', 'amG6Ynrd', '7318459'), - (74, 2674, 'maybe', '2024-07-01 18:21:06', '2025-12-17 19:46:29', 'amG6Ynrd', '7319480'), - (74, 2678, 'attending', '2024-06-15 16:05:34', '2025-12-17 19:46:28', 'amG6Ynrd', '7319489'), - (74, 2679, 'attending', '2024-06-20 12:28:01', '2025-12-17 19:46:29', 'amG6Ynrd', '7319490'), - (74, 2681, 'maybe', '2024-06-10 16:59:03', '2025-12-17 19:46:28', 'amG6Ynrd', '7320409'), - (74, 2686, 'maybe', '2024-06-20 12:27:49', '2025-12-17 19:46:29', 'amG6Ynrd', '7323802'), - (74, 2688, 'attending', '2024-06-24 21:39:50', '2025-12-17 19:46:29', 'amG6Ynrd', '7324073'), - (74, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'amG6Ynrd', '7324074'), - (74, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'amG6Ynrd', '7324075'), - (74, 2691, 'not_attending', '2024-07-11 11:51:44', '2025-12-17 19:46:30', 'amG6Ynrd', '7324076'), - (74, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'amG6Ynrd', '7324078'), - (74, 2694, 'maybe', '2024-08-07 15:52:56', '2025-12-17 19:46:31', 'amG6Ynrd', '7324079'), - (74, 2696, 'attending', '2024-08-24 22:12:13', '2025-12-17 19:46:32', 'amG6Ynrd', '7324081'), - (74, 2697, 'maybe', '2024-08-30 10:26:55', '2025-12-17 19:46:32', 'amG6Ynrd', '7324082'), - (74, 2701, 'maybe', '2024-06-26 20:10:00', '2025-12-17 19:46:29', 'amG6Ynrd', '7324391'), - (74, 2705, 'maybe', '2024-06-26 22:03:28', '2025-12-17 19:46:29', 'amG6Ynrd', '7324944'), - (74, 2717, 'maybe', '2024-06-24 21:39:44', '2025-12-17 19:46:29', 'amG6Ynrd', '7329149'), - (74, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'amG6Ynrd', '7331457'), - (74, 2733, 'maybe', '2024-06-26 00:43:26', '2025-12-17 19:46:29', 'amG6Ynrd', '7338853'), - (74, 2738, 'maybe', '2024-07-01 18:20:27', '2025-12-17 19:46:29', 'amG6Ynrd', '7344085'), - (74, 2763, 'maybe', '2024-07-18 16:02:12', '2025-12-17 19:46:30', 'amG6Ynrd', '7363594'), - (74, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'amG6Ynrd', '7363643'), - (74, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'amG6Ynrd', '7368606'), - (74, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'amG6Ynrd', '7397462'), - (74, 2816, 'maybe', '2024-09-19 00:10:38', '2025-12-17 19:46:25', 'amG6Ynrd', '7424269'), - (74, 2821, 'attending', '2024-10-12 15:57:48', '2025-12-17 19:46:26', 'amG6Ynrd', '7424275'), - (74, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'amG6Ynrd', '7424276'), - (74, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'amG6Ynrd', '7432751'), - (74, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'amG6Ynrd', '7432752'), - (74, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'amG6Ynrd', '7432753'), - (74, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'amG6Ynrd', '7432754'), - (74, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'amG6Ynrd', '7432755'), - (74, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'amG6Ynrd', '7432756'), - (74, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'amG6Ynrd', '7432758'), - (74, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'amG6Ynrd', '7432759'), - (74, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'amG6Ynrd', '7433834'), - (74, 2834, 'maybe', '2024-09-14 14:39:10', '2025-12-17 19:46:25', 'amG6Ynrd', '7433852'), - (74, 2843, 'maybe', '2024-09-20 16:11:10', '2025-12-17 19:46:25', 'amG6Ynrd', '7450219'), - (74, 2860, 'maybe', '2024-10-08 22:21:11', '2025-12-17 19:46:26', 'amG6Ynrd', '7469393'), - (74, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'amG6Ynrd', '7470197'), - (74, 2876, 'maybe', '2024-10-08 22:20:55', '2025-12-17 19:46:26', 'amG6Ynrd', '7490980'), - (74, 2897, 'maybe', '2024-11-16 14:05:39', '2025-12-17 19:46:27', 'amG6Ynrd', '7683650'), - (74, 2898, 'maybe', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'amG6Ynrd', '7685613'), - (74, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'amG6Ynrd', '7688194'), - (74, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'amG6Ynrd', '7688196'), - (74, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'amG6Ynrd', '7688289'), - (74, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'amG6Ynrd', '7692763'), - (74, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'amG6Ynrd', '7697552'), - (74, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'amG6Ynrd', '7699878'), - (74, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'amG6Ynrd', '7704043'), - (74, 2922, 'not_attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'amG6Ynrd', '7710890'), - (74, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'amG6Ynrd', '7712467'), - (74, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'amG6Ynrd', '7713585'), - (74, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'amG6Ynrd', '7713586'), - (74, 2929, 'maybe', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'amG6Ynrd', '7723465'), - (74, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'amG6Ynrd', '7738518'), - (74, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', 'amG6Ynrd', '7750632'), - (74, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'amG6Ynrd', '7750636'), - (74, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'amG6Ynrd', '7796540'), - (74, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'amG6Ynrd', '7796541'), - (74, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'amG6Ynrd', '7796542'), - (74, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'amG6Ynrd', '7825913'), - (74, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'amG6Ynrd', '7826209'), - (74, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'amG6Ynrd', '7834742'), - (74, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'amG6Ynrd', '7842108'), - (74, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'amG6Ynrd', '7842902'), - (74, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'amG6Ynrd', '7842903'), - (74, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'amG6Ynrd', '7842904'), - (74, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'amG6Ynrd', '7842905'), - (74, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'amG6Ynrd', '7855719'), - (74, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'amG6Ynrd', '7860683'), - (74, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'amG6Ynrd', '7860684'), - (74, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'amG6Ynrd', '7866095'), - (74, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'amG6Ynrd', '7869170'), - (74, 3014, 'attending', '2025-04-05 14:30:51', '2025-12-17 19:46:20', 'amG6Ynrd', '7869185'), - (74, 3015, 'not_attending', '2025-04-26 19:09:54', '2025-12-17 19:46:20', 'amG6Ynrd', '7869186'), - (74, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'amG6Ynrd', '7869188'), - (74, 3018, 'not_attending', '2025-04-12 20:49:47', '2025-12-17 19:46:20', 'amG6Ynrd', '7869189'), - (74, 3028, 'maybe', '2025-04-26 13:49:53', '2025-12-17 19:46:20', 'amG6Ynrd', '7869199'), - (74, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'amG6Ynrd', '7869201'), - (74, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'amG6Ynrd', '7877465'), - (74, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'amG6Ynrd', '7888250'), - (74, 3072, 'maybe', '2025-04-01 14:00:54', '2025-12-17 19:46:19', 'amG6Ynrd', '7895449'), - (74, 3081, 'maybe', '2025-04-11 20:52:51', '2025-12-17 19:46:20', 'amG6Ynrd', '7902801'), - (74, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'amG6Ynrd', '7904777'), - (74, 3095, 'not_attending', '2025-04-29 15:15:48', '2025-12-17 19:46:20', 'amG6Ynrd', '8342293'), - (74, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'amG6Ynrd', '8349164'), - (74, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'amG6Ynrd', '8349545'), - (74, 3110, 'maybe', '2025-05-07 01:51:58', '2025-12-17 19:46:21', 'amG6Ynrd', '8353484'), - (74, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'amG6Ynrd', '8353584'), - (74, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'amG6Ynrd', '8368028'), - (74, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'amG6Ynrd', '8368029'), - (74, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'amG6Ynrd', '8388462'), - (74, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'amG6Ynrd', '8400273'), - (74, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'amG6Ynrd', '8400274'), - (74, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'amG6Ynrd', '8400275'), - (74, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'amG6Ynrd', '8400276'), - (74, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'amG6Ynrd', '8404977'), - (74, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'amG6Ynrd', '8430783'), - (74, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'amG6Ynrd', '8430784'), - (74, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'amG6Ynrd', '8430799'), - (74, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'amG6Ynrd', '8430800'), - (74, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'amG6Ynrd', '8430801'), - (74, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'amG6Ynrd', '8438709'), - (74, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'amG6Ynrd', '8457738'), - (74, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'amG6Ynrd', '8459566'), - (74, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'amG6Ynrd', '8459567'), - (74, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'amG6Ynrd', '8461032'), - (74, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'amG6Ynrd', '8477877'), - (74, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'amG6Ynrd', '8485688'), - (74, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'amG6Ynrd', '8490587'), - (74, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'amG6Ynrd', '8493552'), - (74, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'amG6Ynrd', '8493553'), - (74, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'amG6Ynrd', '8493554'), - (74, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'amG6Ynrd', '8493555'), - (74, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'amG6Ynrd', '8493556'), - (74, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'amG6Ynrd', '8493557'), - (74, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'amG6Ynrd', '8493558'), - (74, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'amG6Ynrd', '8493559'), - (74, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'amG6Ynrd', '8493560'), - (74, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'amG6Ynrd', '8493561'), - (74, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'amG6Ynrd', '8493572'), - (74, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'amG6Ynrd', '8540725'), - (74, 3302, 'attending', '2025-11-13 22:08:26', '2025-12-17 19:46:14', 'amG6Ynrd', '8550022'), - (74, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'amG6Ynrd', '8555421'), - (75, 3201, 'attending', '2025-08-09 21:33:56', '2025-12-17 19:46:17', '4Wpw0zEd', '8459567'), - (75, 3211, 'attending', '2025-08-08 20:28:43', '2025-12-17 19:46:17', '4Wpw0zEd', '8477785'), - (75, 3218, 'not_attending', '2025-08-09 00:21:03', '2025-12-17 19:46:17', '4Wpw0zEd', '8481869'), - (75, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4Wpw0zEd', '8485688'), - (75, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4Wpw0zEd', '8490587'), - (75, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4Wpw0zEd', '8493552'), - (75, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4Wpw0zEd', '8493553'), - (75, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4Wpw0zEd', '8493554'), - (75, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4Wpw0zEd', '8493555'), - (75, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4Wpw0zEd', '8493556'), - (75, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4Wpw0zEd', '8493557'), - (75, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4Wpw0zEd', '8493558'), - (75, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4Wpw0zEd', '8493559'), - (75, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4Wpw0zEd', '8493560'), - (75, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '4Wpw0zEd', '8493561'), - (75, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4Wpw0zEd', '8493572'), - (75, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4Wpw0zEd', '8540725'), - (75, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4Wpw0zEd', '8555421'), - (76, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mp1j1klA', '8438709'), - (76, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mp1j1klA', '8457738'), - (76, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mp1j1klA', '8459566'), - (76, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mp1j1klA', '8459567'), - (76, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mp1j1klA', '8461032'), - (76, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mp1j1klA', '8477877'), - (76, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mp1j1klA', '8485688'), - (76, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mp1j1klA', '8490587'), - (76, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mp1j1klA', '8493552'), - (76, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mp1j1klA', '8493553'), - (76, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mp1j1klA', '8493554'), - (76, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mp1j1klA', '8493555'), - (76, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mp1j1klA', '8493556'), - (76, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mp1j1klA', '8493557'), - (76, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mp1j1klA', '8493558'), - (76, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mp1j1klA', '8493559'), - (76, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mp1j1klA', '8493560'), - (76, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mp1j1klA', '8493561'), - (76, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mp1j1klA', '8493572'), - (76, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mp1j1klA', '8540725'), - (76, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mp1j1klA', '8555421'), - (77, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AYg6GRGd', '7074364'), - (77, 2604, 'attending', '2024-05-29 01:15:44', '2025-12-17 19:46:36', 'AYg6GRGd', '7225670'), - (77, 2628, 'not_attending', '2024-05-31 00:56:26', '2025-12-17 19:46:36', 'AYg6GRGd', '7264725'), - (77, 2629, 'attending', '2024-06-08 12:20:11', '2025-12-17 19:46:28', 'AYg6GRGd', '7264726'), - (77, 2647, 'attending', '2024-06-09 18:39:47', '2025-12-17 19:46:28', 'AYg6GRGd', '7282057'), - (77, 2654, 'maybe', '2024-05-28 17:57:16', '2025-12-17 19:46:36', 'AYg6GRGd', '7291219'), - (77, 2657, 'attending', '2024-05-29 01:20:06', '2025-12-17 19:46:36', 'AYg6GRGd', '7294438'), - (77, 2658, 'attending', '2024-06-01 19:49:45', '2025-12-17 19:46:36', 'AYg6GRGd', '7298846'), - (77, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AYg6GRGd', '7302674'), - (77, 2662, 'not_attending', '2024-06-05 04:03:00', '2025-12-17 19:46:36', 'AYg6GRGd', '7302815'), - (77, 2667, 'attending', '2024-06-05 14:30:36', '2025-12-17 19:46:36', 'AYg6GRGd', '7307776'), - (77, 2671, 'attending', '2024-06-09 18:45:29', '2025-12-17 19:46:28', 'AYg6GRGd', '7318256'), - (77, 2688, 'attending', '2024-06-24 18:48:49', '2025-12-17 19:46:29', 'AYg6GRGd', '7324073'), - (77, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AYg6GRGd', '7324074'), - (77, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AYg6GRGd', '7324075'), - (77, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AYg6GRGd', '7324078'), - (77, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AYg6GRGd', '7324082'), - (77, 2699, 'attending', '2024-06-12 22:45:07', '2025-12-17 19:46:28', 'AYg6GRGd', '7324385'), - (77, 2706, 'attending', '2024-06-19 15:17:00', '2025-12-17 19:46:28', 'AYg6GRGd', '7324947'), - (77, 2707, 'maybe', '2024-06-13 20:30:14', '2025-12-17 19:46:28', 'AYg6GRGd', '7324952'), - (77, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AYg6GRGd', '7331457'), - (77, 2724, 'attending', '2024-06-19 17:48:24', '2025-12-17 19:46:29', 'AYg6GRGd', '7332562'), - (77, 2755, 'not_attending', '2024-07-10 15:51:31', '2025-12-17 19:46:29', 'AYg6GRGd', '7357808'), - (77, 2756, 'attending', '2024-07-09 23:06:53', '2025-12-17 19:46:29', 'AYg6GRGd', '7358329'), - (77, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AYg6GRGd', '7363643'), - (77, 2773, 'not_attending', '2024-07-21 18:44:50', '2025-12-17 19:46:31', 'AYg6GRGd', '7368605'), - (77, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AYg6GRGd', '7368606'), - (77, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AYg6GRGd', '7397462'), - (77, 2806, 'attending', '2024-09-15 23:36:24', '2025-12-17 19:46:25', 'AYg6GRGd', '7404888'), - (77, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AYg6GRGd', '7424275'), - (77, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AYg6GRGd', '7424276'), - (77, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AYg6GRGd', '7432751'), - (77, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AYg6GRGd', '7432752'), - (77, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AYg6GRGd', '7432753'), - (77, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AYg6GRGd', '7432754'), - (77, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AYg6GRGd', '7432755'), - (77, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AYg6GRGd', '7432756'), - (77, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AYg6GRGd', '7432758'), - (77, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AYg6GRGd', '7432759'), - (77, 2832, 'attending', '2024-09-11 16:15:22', '2025-12-17 19:46:24', 'AYg6GRGd', '7433324'), - (77, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AYg6GRGd', '7433834'), - (77, 2839, 'not_attending', '2024-09-24 16:31:16', '2025-12-17 19:46:25', 'AYg6GRGd', '7439262'), - (77, 2842, 'attending', '2024-09-16 22:29:39', '2025-12-17 19:46:25', 'AYg6GRGd', '7446133'), - (77, 2850, 'attending', '2024-10-01 16:27:54', '2025-12-17 19:46:25', 'AYg6GRGd', '7457153'), - (77, 2854, 'not_attending', '2024-10-03 20:58:18', '2025-12-17 19:46:26', 'AYg6GRGd', '7465684'), - (77, 2855, 'attending', '2024-10-03 20:49:59', '2025-12-17 19:46:26', 'AYg6GRGd', '7469385'), - (77, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AYg6GRGd', '7470197'), - (77, 2863, 'attending', '2024-10-01 16:54:11', '2025-12-17 19:46:26', 'AYg6GRGd', '7470275'), - (77, 2868, 'attending', '2024-10-03 21:08:42', '2025-12-17 19:46:26', 'AYg6GRGd', '7474506'), - (77, 2869, 'not_attending', '2024-10-03 20:58:07', '2025-12-17 19:46:26', 'AYg6GRGd', '7474823'), - (77, 2870, 'not_attending', '2024-10-03 20:58:12', '2025-12-17 19:46:26', 'AYg6GRGd', '7475068'), - (77, 2875, 'attending', '2024-10-07 23:04:57', '2025-12-17 19:46:26', 'AYg6GRGd', '7482241'), - (77, 2883, 'attending', '2024-10-21 22:34:01', '2025-12-17 19:46:26', 'AYg6GRGd', '7649157'), - (77, 2888, 'attending', '2024-10-21 22:34:05', '2025-12-17 19:46:26', 'AYg6GRGd', '7654822'), - (77, 2889, 'attending', '2024-10-22 02:19:51', '2025-12-17 19:46:26', 'AYg6GRGd', '7660485'), - (77, 2893, 'attending', '2024-11-03 02:16:23', '2025-12-17 19:46:26', 'AYg6GRGd', '7672705'), - (77, 2896, 'not_attending', '2024-11-13 00:01:04', '2025-12-17 19:46:27', 'AYg6GRGd', '7683647'), - (77, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AYg6GRGd', '7685613'), - (77, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AYg6GRGd', '7688194'), - (77, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AYg6GRGd', '7688196'), - (77, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AYg6GRGd', '7688289'), - (77, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AYg6GRGd', '7692763'), - (77, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AYg6GRGd', '7697552'), - (77, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AYg6GRGd', '7699878'), - (77, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AYg6GRGd', '7704043'), - (77, 2922, 'attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'AYg6GRGd', '7710890'), - (77, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AYg6GRGd', '7712467'), - (77, 2925, 'attending', '2024-12-10 02:53:56', '2025-12-17 19:46:21', 'AYg6GRGd', '7713584'), - (77, 2926, 'attending', '2024-12-04 01:28:43', '2025-12-17 19:46:21', 'AYg6GRGd', '7713585'), - (77, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AYg6GRGd', '7713586'), - (77, 2929, 'attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'AYg6GRGd', '7723465'), - (77, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AYg6GRGd', '7738518'), - (77, 2962, 'attending', '2024-12-27 22:29:40', '2025-12-17 19:46:22', 'AYg6GRGd', '7750632'), - (77, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AYg6GRGd', '7750636'), - (77, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AYg6GRGd', '7796540'), - (77, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AYg6GRGd', '7796541'), - (77, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AYg6GRGd', '7796542'), - (77, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AYg6GRGd', '7825913'), - (77, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AYg6GRGd', '7826209'), - (77, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AYg6GRGd', '7834742'), - (77, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AYg6GRGd', '7842108'), - (77, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AYg6GRGd', '7842902'), - (77, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AYg6GRGd', '7842903'), - (77, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AYg6GRGd', '7842904'), - (77, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AYg6GRGd', '7842905'), - (77, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AYg6GRGd', '7855719'), - (77, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AYg6GRGd', '7860683'), - (77, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AYg6GRGd', '7860684'), - (77, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AYg6GRGd', '7866095'), - (77, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AYg6GRGd', '7869170'), - (77, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AYg6GRGd', '7869188'), - (77, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AYg6GRGd', '7869201'), - (77, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AYg6GRGd', '7877465'), - (77, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AYg6GRGd', '7888250'), - (77, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AYg6GRGd', '7904777'), - (77, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AYg6GRGd', '8349164'), - (77, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AYg6GRGd', '8349545'), - (77, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AYg6GRGd', '8353584'), - (77, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AYg6GRGd', '8368028'), - (77, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AYg6GRGd', '8368029'), - (77, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AYg6GRGd', '8388462'), - (77, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AYg6GRGd', '8400273'), - (77, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AYg6GRGd', '8400274'), - (77, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AYg6GRGd', '8400275'), - (77, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AYg6GRGd', '8400276'), - (77, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AYg6GRGd', '8404977'), - (77, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AYg6GRGd', '8430783'), - (77, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AYg6GRGd', '8430784'), - (77, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AYg6GRGd', '8430799'), - (77, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AYg6GRGd', '8430800'), - (77, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AYg6GRGd', '8430801'), - (77, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AYg6GRGd', '8438709'), - (77, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AYg6GRGd', '8457738'), - (77, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AYg6GRGd', '8459566'), - (77, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AYg6GRGd', '8459567'), - (77, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AYg6GRGd', '8461032'), - (77, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AYg6GRGd', '8477877'), - (77, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AYg6GRGd', '8485688'), - (77, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AYg6GRGd', '8490587'), - (77, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AYg6GRGd', '8493552'), - (77, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AYg6GRGd', '8493553'), - (77, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AYg6GRGd', '8493554'), - (77, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AYg6GRGd', '8493555'), - (77, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AYg6GRGd', '8493556'), - (77, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AYg6GRGd', '8493557'), - (77, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AYg6GRGd', '8493558'), - (77, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AYg6GRGd', '8493559'), - (77, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AYg6GRGd', '8493560'), - (77, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AYg6GRGd', '8493561'), - (77, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AYg6GRGd', '8493572'), - (77, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AYg6GRGd', '8540725'), - (77, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AYg6GRGd', '8555421'), - (78, 2695, 'attending', '2024-08-17 17:14:18', '2025-12-17 19:46:31', 'mGWO76km', '7324080'), - (78, 2696, 'maybe', '2024-08-24 18:48:11', '2025-12-17 19:46:32', 'mGWO76km', '7324081'), - (78, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mGWO76km', '7324082'), - (78, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mGWO76km', '7397462'), - (78, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mGWO76km', '7424275'), - (78, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mGWO76km', '7424276'), - (78, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mGWO76km', '7432751'), - (78, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mGWO76km', '7432752'), - (78, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mGWO76km', '7432753'), - (78, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mGWO76km', '7432754'), - (78, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mGWO76km', '7432755'), - (78, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mGWO76km', '7432756'), - (78, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mGWO76km', '7432758'), - (78, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mGWO76km', '7432759'), - (78, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mGWO76km', '7433834'), - (78, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mGWO76km', '7470197'), - (78, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mGWO76km', '7685613'), - (78, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mGWO76km', '7688194'), - (78, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mGWO76km', '7688196'), - (78, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mGWO76km', '7688289'), - (78, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mGWO76km', '7692763'), - (78, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mGWO76km', '7697552'), - (78, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mGWO76km', '7699878'), - (78, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mGWO76km', '7704043'), - (78, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mGWO76km', '7712467'), - (78, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mGWO76km', '7713585'), - (78, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mGWO76km', '7713586'), - (78, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mGWO76km', '7738518'), - (78, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mGWO76km', '7750636'), - (78, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mGWO76km', '7796540'), - (78, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mGWO76km', '7796541'), - (78, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mGWO76km', '7796542'), - (78, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mGWO76km', '7825913'), - (78, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mGWO76km', '7826209'), - (78, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mGWO76km', '7834742'), - (78, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mGWO76km', '7842108'), - (78, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mGWO76km', '7842902'), - (78, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mGWO76km', '7842903'), - (78, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mGWO76km', '7842904'), - (78, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mGWO76km', '7842905'), - (78, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mGWO76km', '7855719'), - (78, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mGWO76km', '7860683'), - (78, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mGWO76km', '7860684'), - (78, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mGWO76km', '7866095'), - (78, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mGWO76km', '7869170'), - (78, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mGWO76km', '7869188'), - (78, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mGWO76km', '7869201'), - (78, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mGWO76km', '7877465'), - (78, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mGWO76km', '7888250'), - (78, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mGWO76km', '7904777'), - (78, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mGWO76km', '8349164'), - (78, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mGWO76km', '8349545'), - (78, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mGWO76km', '8353584'), - (78, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mGWO76km', '8368028'), - (78, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mGWO76km', '8368029'), - (78, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mGWO76km', '8388462'), - (78, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mGWO76km', '8400273'), - (78, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mGWO76km', '8400274'), - (78, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mGWO76km', '8400275'), - (78, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mGWO76km', '8400276'), - (78, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mGWO76km', '8404977'), - (78, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mGWO76km', '8430783'), - (78, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mGWO76km', '8430784'), - (78, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mGWO76km', '8430799'), - (78, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mGWO76km', '8430800'), - (78, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mGWO76km', '8430801'), - (78, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mGWO76km', '8438709'), - (78, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mGWO76km', '8457738'), - (78, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mGWO76km', '8459566'), - (78, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mGWO76km', '8459567'), - (78, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mGWO76km', '8461032'), - (78, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mGWO76km', '8477877'), - (78, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mGWO76km', '8485688'), - (78, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mGWO76km', '8490587'), - (78, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mGWO76km', '8493552'), - (78, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'mGWO76km', '8493553'), - (78, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mGWO76km', '8493554'), - (78, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mGWO76km', '8493555'), - (78, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mGWO76km', '8493556'), - (78, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mGWO76km', '8493557'), - (78, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mGWO76km', '8493558'), - (78, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mGWO76km', '8493559'), - (78, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mGWO76km', '8493560'), - (78, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mGWO76km', '8493561'), - (78, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mGWO76km', '8493572'), - (78, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mGWO76km', '8540725'), - (78, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mGWO76km', '8555421'), - (79, 3088, 'not_attending', '2025-06-14 16:24:53', '2025-12-17 19:46:15', 'ydw10ZjA', '7904777'), - (79, 3131, 'attending', '2025-05-13 01:04:28', '2025-12-17 19:46:21', 'ydw10ZjA', '8368028'), - (79, 3132, 'not_attending', '2025-05-22 17:01:40', '2025-12-17 19:46:21', 'ydw10ZjA', '8368029'), - (79, 3133, 'attending', '2025-05-28 02:57:28', '2025-12-17 19:46:14', 'ydw10ZjA', '8368030'), - (79, 3153, 'not_attending', '2025-06-04 14:00:27', '2025-12-17 19:46:15', 'ydw10ZjA', '8400273'), - (79, 3154, 'not_attending', '2025-06-28 21:03:04', '2025-12-17 19:46:15', 'ydw10ZjA', '8400274'), - (79, 3155, 'maybe', '2025-07-02 16:23:49', '2025-12-17 19:46:16', 'ydw10ZjA', '8400275'), - (79, 3188, 'not_attending', '2025-07-17 16:37:27', '2025-12-17 19:46:17', 'ydw10ZjA', '8438709'), - (79, 3200, 'not_attending', '2025-08-01 00:49:36', '2025-12-17 19:46:17', 'ydw10ZjA', '8459566'), - (79, 3203, 'not_attending', '2025-07-23 03:14:06', '2025-12-17 19:46:17', 'ydw10ZjA', '8461032'), - (79, 3236, 'not_attending', '2025-08-21 07:53:50', '2025-12-17 19:46:18', 'ydw10ZjA', '8493552'), - (79, 3237, 'not_attending', '2025-09-03 23:25:54', '2025-12-17 19:46:12', 'ydw10ZjA', '8493553'), - (79, 3238, 'not_attending', '2025-08-29 18:20:26', '2025-12-17 19:46:11', 'ydw10ZjA', '8493554'), - (79, 3240, 'maybe', '2025-09-10 01:12:12', '2025-12-17 19:46:12', 'ydw10ZjA', '8493556'), - (80, 2513, 'attending', '2024-04-18 16:02:52', '2025-12-17 19:46:34', 'mLo70Lad', '7074353'), - (80, 2514, 'maybe', '2024-04-22 15:32:31', '2025-12-17 19:46:34', 'mLo70Lad', '7074354'), - (80, 2516, 'attending', '2024-05-02 16:39:25', '2025-12-17 19:46:35', 'mLo70Lad', '7074356'), - (80, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mLo70Lad', '7074364'), - (80, 2529, 'maybe', '2024-05-23 02:38:34', '2025-12-17 19:46:35', 'mLo70Lad', '7074369'), - (80, 2555, 'attending', '2024-04-09 21:11:39', '2025-12-17 19:46:34', 'mLo70Lad', '7114951'), - (80, 2556, 'attending', '2024-04-15 16:07:39', '2025-12-17 19:46:34', 'mLo70Lad', '7114955'), - (80, 2557, 'attending', '2024-04-22 15:37:07', '2025-12-17 19:46:34', 'mLo70Lad', '7114956'), - (80, 2558, 'attending', '2024-05-02 17:45:22', '2025-12-17 19:46:35', 'mLo70Lad', '7114957'), - (80, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mLo70Lad', '7153615'), - (80, 2570, 'attending', '2024-04-07 17:50:58', '2025-12-17 19:46:33', 'mLo70Lad', '7159187'), - (80, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mLo70Lad', '7159484'), - (80, 2581, 'not_attending', '2024-04-22 16:10:21', '2025-12-17 19:46:34', 'mLo70Lad', '7169048'), - (80, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mLo70Lad', '7178446'), - (80, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'mLo70Lad', '7220467'), - (80, 2604, 'attending', '2024-05-29 16:00:34', '2025-12-17 19:46:36', 'mLo70Lad', '7225670'), - (80, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mLo70Lad', '7240354'), - (80, 2611, 'maybe', '2024-05-06 22:28:33', '2025-12-17 19:46:35', 'mLo70Lad', '7247642'), - (80, 2613, 'maybe', '2024-05-09 20:18:02', '2025-12-17 19:46:35', 'mLo70Lad', '7247644'), - (80, 2614, 'maybe', '2024-05-10 02:20:49', '2025-12-17 19:46:35', 'mLo70Lad', '7247645'), - (80, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mLo70Lad', '7251633'), - (80, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mLo70Lad', '7263048'), - (80, 2625, 'maybe', '2024-05-12 22:37:38', '2025-12-17 19:46:35', 'mLo70Lad', '7263302'), - (80, 2626, 'attending', '2024-05-17 02:11:00', '2025-12-17 19:46:35', 'mLo70Lad', '7264723'), - (80, 2627, 'attending', '2024-05-25 16:05:44', '2025-12-17 19:46:35', 'mLo70Lad', '7264724'), - (80, 2628, 'attending', '2024-05-31 15:46:23', '2025-12-17 19:46:36', 'mLo70Lad', '7264725'), - (80, 2629, 'attending', '2024-06-08 01:28:28', '2025-12-17 19:46:28', 'mLo70Lad', '7264726'), - (80, 2630, 'attending', '2024-05-16 23:05:34', '2025-12-17 19:46:35', 'mLo70Lad', '7264801'), - (80, 2634, 'maybe', '2024-05-19 15:40:06', '2025-12-17 19:46:35', 'mLo70Lad', '7270321'), - (80, 2635, 'attending', '2024-05-19 03:39:02', '2025-12-17 19:46:35', 'mLo70Lad', '7270322'), - (80, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mLo70Lad', '7302674'), - (80, 2678, 'attending', '2024-06-15 01:48:11', '2025-12-17 19:46:28', 'mLo70Lad', '7319489'), - (80, 2679, 'attending', '2024-06-22 00:24:18', '2025-12-17 19:46:29', 'mLo70Lad', '7319490'), - (80, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mLo70Lad', '7324073'), - (80, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mLo70Lad', '7324074'), - (80, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mLo70Lad', '7324075'), - (80, 2691, 'attending', '2024-07-19 00:46:23', '2025-12-17 19:46:30', 'mLo70Lad', '7324076'), - (80, 2692, 'not_attending', '2024-07-07 15:43:52', '2025-12-17 19:46:30', 'mLo70Lad', '7324077'), - (80, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mLo70Lad', '7324078'), - (80, 2694, 'attending', '2024-08-10 01:36:59', '2025-12-17 19:46:31', 'mLo70Lad', '7324079'), - (80, 2695, 'attending', '2024-08-17 00:20:36', '2025-12-17 19:46:31', 'mLo70Lad', '7324080'), - (80, 2696, 'attending', '2024-08-24 15:48:31', '2025-12-17 19:46:32', 'mLo70Lad', '7324081'), - (80, 2697, 'attending', '2024-08-26 16:06:33', '2025-12-17 19:46:32', 'mLo70Lad', '7324082'), - (80, 2698, 'attending', '2024-09-07 16:00:30', '2025-12-17 19:46:24', 'mLo70Lad', '7324083'), - (80, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mLo70Lad', '7331457'), - (80, 2743, 'attending', '2024-07-06 00:00:03', '2025-12-17 19:46:29', 'mLo70Lad', '7345688'), - (80, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mLo70Lad', '7356752'), - (80, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mLo70Lad', '7363643'), - (80, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mLo70Lad', '7368606'), - (80, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mLo70Lad', '7397462'), - (80, 2821, 'attending', '2024-10-10 00:30:24', '2025-12-17 19:46:26', 'mLo70Lad', '7424275'), - (80, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mLo70Lad', '7424276'), - (80, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mLo70Lad', '7432751'), - (80, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mLo70Lad', '7432752'), - (80, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mLo70Lad', '7432753'), - (80, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mLo70Lad', '7432754'), - (80, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mLo70Lad', '7432755'), - (80, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mLo70Lad', '7432756'), - (80, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mLo70Lad', '7432758'), - (80, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mLo70Lad', '7432759'), - (80, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mLo70Lad', '7433834'), - (80, 2849, 'maybe', '2024-09-29 01:53:00', '2025-12-17 19:46:25', 'mLo70Lad', '7457114'), - (80, 2858, 'attending', '2024-10-17 23:24:08', '2025-12-17 19:46:26', 'mLo70Lad', '7469388'), - (80, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mLo70Lad', '7470197'), - (80, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mLo70Lad', '7685613'), - (80, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mLo70Lad', '7688194'), - (80, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mLo70Lad', '7688196'), - (80, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mLo70Lad', '7688289'), - (80, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mLo70Lad', '7692763'), - (80, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mLo70Lad', '7697552'), - (80, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mLo70Lad', '7699878'), - (80, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mLo70Lad', '7704043'), - (80, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mLo70Lad', '7712467'), - (80, 2925, 'attending', '2024-12-10 01:52:04', '2025-12-17 19:46:21', 'mLo70Lad', '7713584'), - (80, 2926, 'attending', '2024-12-05 20:28:25', '2025-12-17 19:46:21', 'mLo70Lad', '7713585'), - (80, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mLo70Lad', '7713586'), - (80, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mLo70Lad', '7738518'), - (80, 2962, 'attending', '2024-12-27 17:40:05', '2025-12-17 19:46:22', 'mLo70Lad', '7750632'), - (80, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mLo70Lad', '7750636'), - (80, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mLo70Lad', '7796540'), - (80, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mLo70Lad', '7796541'), - (80, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mLo70Lad', '7796542'), - (80, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mLo70Lad', '7825913'), - (80, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'mLo70Lad', '7825920'), - (80, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mLo70Lad', '7826209'), - (80, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mLo70Lad', '7834742'), - (80, 2988, 'attending', '2025-02-08 03:36:59', '2025-12-17 19:46:23', 'mLo70Lad', '7839569'), - (80, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'mLo70Lad', '7842108'), - (80, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mLo70Lad', '7842902'), - (80, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mLo70Lad', '7842903'), - (80, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mLo70Lad', '7842904'), - (80, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mLo70Lad', '7842905'), - (80, 2999, 'not_attending', '2025-02-13 02:50:14', '2025-12-17 19:46:23', 'mLo70Lad', '7844784'), - (80, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mLo70Lad', '7855719'), - (80, 3007, 'attending', '2025-02-25 04:02:38', '2025-12-17 19:46:24', 'mLo70Lad', '7860683'), - (80, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mLo70Lad', '7860684'), - (80, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mLo70Lad', '7866095'), - (80, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mLo70Lad', '7869170'), - (80, 3014, 'attending', '2025-04-01 16:36:20', '2025-12-17 19:46:19', 'mLo70Lad', '7869185'), - (80, 3015, 'attending', '2025-04-22 15:51:49', '2025-12-17 19:46:20', 'mLo70Lad', '7869186'), - (80, 3016, 'attending', '2025-04-15 00:12:05', '2025-12-17 19:46:20', 'mLo70Lad', '7869187'), - (80, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mLo70Lad', '7869188'), - (80, 3018, 'attending', '2025-04-08 22:50:32', '2025-12-17 19:46:20', 'mLo70Lad', '7869189'), - (80, 3028, 'attending', '2025-04-27 03:12:37', '2025-12-17 19:46:20', 'mLo70Lad', '7869199'), - (80, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mLo70Lad', '7869201'), - (80, 3033, 'attending', '2025-03-11 02:32:15', '2025-12-17 19:46:19', 'mLo70Lad', '7877465'), - (80, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'mLo70Lad', '7878570'), - (80, 3050, 'attending', '2025-03-16 22:53:40', '2025-12-17 19:46:19', 'mLo70Lad', '7884021'), - (80, 3053, 'attending', '2025-03-16 23:27:28', '2025-12-17 19:46:19', 'mLo70Lad', '7884030'), - (80, 3055, 'maybe', '2025-03-27 16:26:07', '2025-12-17 19:46:19', 'mLo70Lad', '7888118'), - (80, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mLo70Lad', '7888250'), - (80, 3072, 'maybe', '2025-04-03 16:47:25', '2025-12-17 19:46:19', 'mLo70Lad', '7895449'), - (80, 3088, 'attending', '2025-06-11 20:56:28', '2025-12-17 19:46:15', 'mLo70Lad', '7904777'), - (80, 3090, 'maybe', '2025-04-16 16:09:45', '2025-12-17 19:46:20', 'mLo70Lad', '7914315'), - (80, 3094, 'not_attending', '2025-05-06 16:41:11', '2025-12-17 19:46:21', 'mLo70Lad', '8342292'), - (80, 3095, 'attending', '2025-04-27 16:17:09', '2025-12-17 19:46:20', 'mLo70Lad', '8342293'), - (80, 3099, 'attending', '2025-04-22 01:36:21', '2025-12-17 19:46:20', 'mLo70Lad', '8343522'), - (80, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mLo70Lad', '8349164'), - (80, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mLo70Lad', '8349545'), - (80, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mLo70Lad', '8353584'), - (80, 3113, 'attending', '2025-05-01 00:52:12', '2025-12-17 19:46:20', 'mLo70Lad', '8355089'), - (80, 3131, 'not_attending', '2025-05-13 01:08:50', '2025-12-17 19:46:21', 'mLo70Lad', '8368028'), - (80, 3132, 'not_attending', '2025-05-13 01:08:55', '2025-12-17 19:46:21', 'mLo70Lad', '8368029'), - (80, 3133, 'not_attending', '2025-05-27 20:28:58', '2025-12-17 19:46:14', 'mLo70Lad', '8368030'), - (80, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mLo70Lad', '8388462'), - (80, 3150, 'not_attending', '2025-06-15 17:56:43', '2025-12-17 19:46:15', 'mLo70Lad', '8393174'), - (80, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mLo70Lad', '8400273'), - (80, 3154, 'attending', '2025-06-23 00:43:35', '2025-12-17 19:46:15', 'mLo70Lad', '8400274'), - (80, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mLo70Lad', '8400275'), - (80, 3156, 'attending', '2025-06-17 15:35:27', '2025-12-17 19:46:16', 'mLo70Lad', '8400276'), - (80, 3158, 'attending', '2025-06-04 04:30:57', '2025-12-17 19:46:15', 'mLo70Lad', '8401408'), - (80, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mLo70Lad', '8404977'), - (80, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mLo70Lad', '8430783'), - (80, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mLo70Lad', '8430784'), - (80, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mLo70Lad', '8430799'), - (80, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mLo70Lad', '8430800'), - (80, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mLo70Lad', '8430801'), - (80, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mLo70Lad', '8438709'), - (80, 3193, 'attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mLo70Lad', '8457738'), - (80, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mLo70Lad', '8459566'), - (80, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mLo70Lad', '8459567'), - (80, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mLo70Lad', '8461032'), - (80, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mLo70Lad', '8477877'), - (80, 3216, 'attending', '2025-08-08 02:45:49', '2025-12-17 19:46:17', 'mLo70Lad', '8481608'), - (80, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mLo70Lad', '8485688'), - (80, 3235, 'maybe', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mLo70Lad', '8490587'), - (80, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mLo70Lad', '8493552'), - (80, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mLo70Lad', '8493553'), - (80, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mLo70Lad', '8493554'), - (80, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mLo70Lad', '8493555'), - (80, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mLo70Lad', '8493556'), - (80, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mLo70Lad', '8493557'), - (80, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mLo70Lad', '8493558'), - (80, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mLo70Lad', '8493559'), - (80, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mLo70Lad', '8493560'), - (80, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mLo70Lad', '8493561'), - (80, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mLo70Lad', '8493572'), - (80, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mLo70Lad', '8540725'), - (80, 3295, 'not_attending', '2025-10-29 16:16:10', '2025-12-17 19:46:14', 'mLo70Lad', '8547541'), - (80, 3300, 'not_attending', '2025-10-26 21:23:22', '2025-12-17 19:46:14', 'mLo70Lad', '8549145'), - (80, 3302, 'attending', '2025-11-09 18:09:06', '2025-12-17 19:46:14', 'mLo70Lad', '8550022'), - (80, 3304, 'attending', '2025-11-19 03:36:01', '2025-12-17 19:46:14', 'mLo70Lad', '8550024'), - (80, 3305, 'maybe', '2025-11-26 00:36:30', '2025-12-17 19:46:11', 'mLo70Lad', '8550025'), - (80, 3306, 'attending', '2025-12-07 18:11:07', '2025-12-17 19:46:11', 'mLo70Lad', '8550026'), - (80, 3307, 'attending', '2025-12-16 02:30:06', '2025-12-17 19:46:11', 'mLo70Lad', '8550027'), - (80, 3311, 'maybe', '2025-12-09 18:19:29', '2025-12-17 19:46:11', 'mLo70Lad', '8550412'), - (80, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mLo70Lad', '8555421'), - (81, 395, 'attending', '2021-06-08 21:45:33', '2025-12-17 19:47:47', '841br9Ed', '3236450'), - (81, 665, 'attending', '2021-09-04 22:08:54', '2025-12-17 19:47:43', '841br9Ed', '3547143'), - (81, 666, 'attending', '2021-08-09 00:08:37', '2025-12-17 19:47:42', '841br9Ed', '3547144'), - (81, 667, 'attending', '2021-08-26 18:57:23', '2025-12-17 19:47:42', '841br9Ed', '3547145'), - (81, 805, 'attending', '2021-06-13 20:55:57', '2025-12-17 19:47:47', '841br9Ed', '3804777'), - (81, 823, 'maybe', '2021-06-26 20:33:24', '2025-12-17 19:47:48', '841br9Ed', '3974109'), - (81, 828, 'attending', '2021-06-12 19:18:35', '2025-12-17 19:47:47', '841br9Ed', '3975312'), - (81, 837, 'attending', '2021-06-15 21:58:37', '2025-12-17 19:47:48', '841br9Ed', '3992545'), - (81, 841, 'attending', '2021-06-12 05:19:46', '2025-12-17 19:47:48', '841br9Ed', '4007434'), - (81, 844, 'attending', '2021-06-12 21:23:39', '2025-12-17 19:47:38', '841br9Ed', '4014338'), - (81, 845, 'not_attending', '2021-06-29 19:49:23', '2025-12-17 19:47:38', '841br9Ed', '4015717'), - (81, 850, 'attending', '2021-08-24 15:16:23', '2025-12-17 19:47:42', '841br9Ed', '4015722'), - (81, 857, 'not_attending', '2021-11-24 03:57:30', '2025-12-17 19:47:37', '841br9Ed', '4015731'), - (81, 866, 'maybe', '2021-06-21 20:02:36', '2025-12-17 19:47:38', '841br9Ed', '4020424'), - (81, 867, 'attending', '2021-06-17 18:50:46', '2025-12-17 19:47:38', '841br9Ed', '4021848'), - (81, 869, 'maybe', '2021-06-30 12:13:44', '2025-12-17 19:47:38', '841br9Ed', '4136744'), - (81, 870, 'attending', '2021-06-20 21:40:55', '2025-12-17 19:47:38', '841br9Ed', '4136937'), - (81, 871, 'attending', '2021-06-20 21:41:00', '2025-12-17 19:47:39', '841br9Ed', '4136938'), - (81, 872, 'attending', '2021-07-21 15:12:42', '2025-12-17 19:47:40', '841br9Ed', '4136947'), - (81, 873, 'attending', '2021-06-14 22:24:45', '2025-12-17 19:47:48', '841br9Ed', '4138297'), - (81, 874, 'attending', '2021-06-20 21:40:24', '2025-12-17 19:47:38', '841br9Ed', '4139815'), - (81, 875, 'attending', '2021-06-27 02:28:57', '2025-12-17 19:47:38', '841br9Ed', '4139816'), - (81, 876, 'not_attending', '2021-06-22 20:33:48', '2025-12-17 19:47:38', '841br9Ed', '4139926'), - (81, 878, 'attending', '2021-06-16 01:17:14', '2025-12-17 19:47:38', '841br9Ed', '4143331'), - (81, 879, 'maybe', '2021-06-27 02:27:39', '2025-12-17 19:47:38', '841br9Ed', '4147806'), - (81, 880, 'attending', '2021-06-19 21:20:01', '2025-12-17 19:47:48', '841br9Ed', '4205383'), - (81, 882, 'maybe', '2021-06-20 21:41:21', '2025-12-17 19:47:38', '841br9Ed', '4207630'), - (81, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '841br9Ed', '4210314'), - (81, 885, 'maybe', '2021-06-27 02:29:41', '2025-12-17 19:47:38', '841br9Ed', '4222370'), - (81, 887, 'not_attending', '2021-07-14 21:55:36', '2025-12-17 19:47:39', '841br9Ed', '4225444'), - (81, 890, 'maybe', '2021-06-29 01:59:49', '2025-12-17 19:47:38', '841br9Ed', '4228666'), - (81, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '841br9Ed', '4239259'), - (81, 900, 'attending', '2021-07-19 21:12:35', '2025-12-17 19:47:40', '841br9Ed', '4240316'), - (81, 901, 'attending', '2021-07-26 20:13:59', '2025-12-17 19:47:40', '841br9Ed', '4240317'), - (81, 902, 'attending', '2021-08-03 15:30:32', '2025-12-17 19:47:41', '841br9Ed', '4240318'), - (81, 903, 'attending', '2021-08-09 00:08:39', '2025-12-17 19:47:42', '841br9Ed', '4240320'), - (81, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '841br9Ed', '4250163'), - (81, 911, 'not_attending', '2021-07-12 19:55:03', '2025-12-17 19:47:39', '841br9Ed', '4264465'), - (81, 913, 'attending', '2021-07-12 19:55:06', '2025-12-17 19:47:39', '841br9Ed', '4273765'), - (81, 914, 'maybe', '2021-07-15 19:59:56', '2025-12-17 19:47:39', '841br9Ed', '4273767'), - (81, 915, 'maybe', '2021-07-19 21:13:26', '2025-12-17 19:47:39', '841br9Ed', '4273770'), - (81, 917, 'attending', '2021-07-12 19:55:55', '2025-12-17 19:47:39', '841br9Ed', '4274481'), - (81, 919, 'attending', '2021-07-12 19:57:36', '2025-12-17 19:47:39', '841br9Ed', '4275957'), - (81, 920, 'maybe', '2021-07-25 18:41:37', '2025-12-17 19:47:40', '841br9Ed', '4277819'), - (81, 926, 'attending', '2021-08-16 14:08:28', '2025-12-17 19:47:42', '841br9Ed', '4297211'), - (81, 927, 'maybe', '2021-07-29 22:22:31', '2025-12-17 19:47:40', '841br9Ed', '4297216'), - (81, 928, 'attending', '2021-07-26 20:12:20', '2025-12-17 19:47:40', '841br9Ed', '4297218'), - (81, 929, 'maybe', '2021-08-05 21:48:19', '2025-12-17 19:47:41', '841br9Ed', '4297223'), - (81, 933, 'maybe', '2021-07-27 22:08:01', '2025-12-17 19:47:40', '841br9Ed', '4301723'), - (81, 934, 'maybe', '2021-08-04 20:00:58', '2025-12-17 19:47:41', '841br9Ed', '4302093'), - (81, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '841br9Ed', '4304151'), - (81, 937, 'maybe', '2021-07-27 18:53:45', '2025-12-17 19:47:40', '841br9Ed', '4306596'), - (81, 938, 'maybe', '2021-07-26 22:02:05', '2025-12-17 19:47:40', '841br9Ed', '4306597'), - (81, 946, 'attending', '2021-07-27 22:07:45', '2025-12-17 19:47:40', '841br9Ed', '4314835'), - (81, 952, 'maybe', '2021-08-05 21:48:17', '2025-12-17 19:47:41', '841br9Ed', '4318286'), - (81, 955, 'maybe', '2021-08-09 00:07:29', '2025-12-17 19:47:41', '841br9Ed', '4331588'), - (81, 960, 'attending', '2021-08-09 00:07:51', '2025-12-17 19:47:41', '841br9Ed', '4344519'), - (81, 961, 'not_attending', '2021-08-09 00:08:08', '2025-12-17 19:47:42', '841br9Ed', '4345519'), - (81, 963, 'attending', '2021-08-15 21:41:03', '2025-12-17 19:47:42', '841br9Ed', '4353159'), - (81, 964, 'attending', '2021-08-23 16:01:07', '2025-12-17 19:47:42', '841br9Ed', '4353160'), - (81, 971, 'maybe', '2021-09-08 20:38:46', '2025-12-17 19:47:43', '841br9Ed', '4356801'), - (81, 972, 'not_attending', '2021-08-20 20:44:09', '2025-12-17 19:47:42', '841br9Ed', '4358025'), - (81, 973, 'attending', '2021-08-15 21:41:07', '2025-12-17 19:47:42', '841br9Ed', '4366186'), - (81, 974, 'attending', '2021-08-16 14:09:05', '2025-12-17 19:47:42', '841br9Ed', '4366187'), - (81, 976, 'attending', '2021-08-17 20:34:36', '2025-12-17 19:47:42', '841br9Ed', '4373933'), - (81, 981, 'maybe', '2021-08-23 16:01:28', '2025-12-17 19:47:42', '841br9Ed', '4387305'), - (81, 987, 'attending', '2021-08-28 22:32:27', '2025-12-17 19:47:43', '841br9Ed', '4402634'), - (81, 988, 'maybe', '2021-08-27 20:51:30', '2025-12-17 19:47:42', '841br9Ed', '4402823'), - (81, 989, 'maybe', '2021-09-09 20:55:33', '2025-12-17 19:47:43', '841br9Ed', '4414282'), - (81, 990, 'attending', '2021-08-28 22:31:50', '2025-12-17 19:47:43', '841br9Ed', '4420735'), - (81, 991, 'attending', '2021-08-28 22:32:12', '2025-12-17 19:47:43', '841br9Ed', '4420738'), - (81, 992, 'not_attending', '2021-09-18 16:32:48', '2025-12-17 19:47:34', '841br9Ed', '4420739'), - (81, 993, 'attending', '2021-09-20 15:45:53', '2025-12-17 19:47:34', '841br9Ed', '4420741'), - (81, 994, 'maybe', '2021-10-02 14:56:33', '2025-12-17 19:47:34', '841br9Ed', '4420742'), - (81, 995, 'attending', '2021-10-09 15:10:51', '2025-12-17 19:47:34', '841br9Ed', '4420744'), - (81, 996, 'attending', '2021-10-11 22:55:26', '2025-12-17 19:47:35', '841br9Ed', '4420747'), - (81, 997, 'attending', '2021-10-20 21:17:33', '2025-12-17 19:47:35', '841br9Ed', '4420748'), - (81, 998, 'attending', '2021-10-30 21:23:40', '2025-12-17 19:47:36', '841br9Ed', '4420749'), - (81, 1016, 'attending', '2021-09-03 18:26:07', '2025-12-17 19:47:43', '841br9Ed', '4441271'), - (81, 1019, 'maybe', '2021-09-16 18:15:32', '2025-12-17 19:47:43', '841br9Ed', '4450515'), - (81, 1020, 'attending', '2021-09-08 20:40:09', '2025-12-17 19:47:43', '841br9Ed', '4451787'), - (81, 1021, 'maybe', '2021-09-20 21:37:05', '2025-12-17 19:47:34', '841br9Ed', '4451803'), - (81, 1022, 'maybe', '2021-09-15 10:32:59', '2025-12-17 19:47:43', '841br9Ed', '4458628'), - (81, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '841br9Ed', '4461883'), - (81, 1033, 'maybe', '2021-09-18 14:03:18', '2025-12-17 19:47:43', '841br9Ed', '4486006'), - (81, 1036, 'maybe', '2021-09-19 17:56:28', '2025-12-17 19:47:34', '841br9Ed', '4493166'), - (81, 1038, 'attending', '2021-09-20 15:45:55', '2025-12-17 19:47:34', '841br9Ed', '4496603'), - (81, 1042, 'attending', '2021-11-27 20:52:47', '2025-12-17 19:47:37', '841br9Ed', '4496607'), - (81, 1043, 'attending', '2021-10-21 21:03:59', '2025-12-17 19:47:35', '841br9Ed', '4496608'), - (81, 1045, 'attending', '2021-10-30 21:23:41', '2025-12-17 19:47:36', '841br9Ed', '4496610'), - (81, 1046, 'attending', '2021-10-16 15:20:45', '2025-12-17 19:47:35', '841br9Ed', '4496611'), - (81, 1047, 'attending', '2021-10-09 15:10:53', '2025-12-17 19:47:34', '841br9Ed', '4496612'), - (81, 1048, 'attending', '2021-11-08 23:47:10', '2025-12-17 19:47:36', '841br9Ed', '4496613'), - (81, 1049, 'attending', '2022-01-19 22:07:40', '2025-12-17 19:47:32', '841br9Ed', '4496614'), - (81, 1050, 'maybe', '2022-01-29 19:58:46', '2025-12-17 19:47:32', '841br9Ed', '4496615'), - (81, 1052, 'attending', '2022-01-14 16:33:22', '2025-12-17 19:47:31', '841br9Ed', '4496617'), - (81, 1053, 'attending', '2022-02-19 14:51:51', '2025-12-17 19:47:32', '841br9Ed', '4496618'), - (81, 1054, 'attending', '2022-03-18 14:39:37', '2025-12-17 19:47:25', '841br9Ed', '4496619'), - (81, 1055, 'not_attending', '2021-12-16 03:54:16', '2025-12-17 19:47:31', '841br9Ed', '4496621'), - (81, 1056, 'attending', '2022-01-03 03:11:36', '2025-12-17 19:47:31', '841br9Ed', '4496622'), - (81, 1057, 'attending', '2021-11-20 17:08:18', '2025-12-17 19:47:37', '841br9Ed', '4496624'), - (81, 1058, 'attending', '2022-02-24 17:18:12', '2025-12-17 19:47:33', '841br9Ed', '4496625'), - (81, 1059, 'not_attending', '2022-03-10 20:53:04', '2025-12-17 19:47:33', '841br9Ed', '4496626'), - (81, 1060, 'not_attending', '2022-03-25 15:35:49', '2025-12-17 19:47:25', '841br9Ed', '4496627'), - (81, 1061, 'attending', '2022-02-10 10:59:09', '2025-12-17 19:47:32', '841br9Ed', '4496628'), - (81, 1062, 'attending', '2022-03-03 23:45:35', '2025-12-17 19:47:33', '841br9Ed', '4496629'), - (81, 1063, 'attending', '2021-09-21 14:54:05', '2025-12-17 19:47:34', '841br9Ed', '4496630'), - (81, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '841br9Ed', '4508342'), - (81, 1074, 'maybe', '2021-09-29 20:03:24', '2025-12-17 19:47:34', '841br9Ed', '4528953'), - (81, 1077, 'maybe', '2021-10-11 14:20:29', '2025-12-17 19:47:34', '841br9Ed', '4540903'), - (81, 1079, 'maybe', '2021-10-20 21:16:50', '2025-12-17 19:47:35', '841br9Ed', '4563823'), - (81, 1082, 'maybe', '2021-10-15 17:37:06', '2025-12-17 19:47:35', '841br9Ed', '4566762'), - (81, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '841br9Ed', '4568602'), - (81, 1087, 'attending', '2021-10-15 08:38:15', '2025-12-17 19:47:35', '841br9Ed', '4572153'), - (81, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '841br9Ed', '4585962'), - (81, 1094, 'attending', '2021-10-30 16:04:01', '2025-12-17 19:47:36', '841br9Ed', '4587337'), - (81, 1095, 'maybe', '2021-10-27 21:32:24', '2025-12-17 19:47:36', '841br9Ed', '4596356'), - (81, 1097, 'attending', '2021-10-30 16:03:40', '2025-12-17 19:47:36', '841br9Ed', '4598860'), - (81, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '841br9Ed', '4598861'), - (81, 1099, 'attending', '2021-10-31 10:19:46', '2025-12-17 19:47:36', '841br9Ed', '4602797'), - (81, 1100, 'maybe', '2021-11-02 22:08:45', '2025-12-17 19:47:36', '841br9Ed', '4607305'), - (81, 1101, 'maybe', '2021-11-02 22:08:49', '2025-12-17 19:47:36', '841br9Ed', '4607339'), - (81, 1102, 'maybe', '2021-11-13 17:59:31', '2025-12-17 19:47:37', '841br9Ed', '4612098'), - (81, 1104, 'attending', '2021-11-08 23:47:08', '2025-12-17 19:47:36', '841br9Ed', '4618310'), - (81, 1108, 'attending', '2021-11-18 00:30:25', '2025-12-17 19:47:37', '841br9Ed', '4632276'), - (81, 1114, 'attending', '2021-11-12 01:19:38', '2025-12-17 19:47:36', '841br9Ed', '4637896'), - (81, 1116, 'attending', '2021-11-24 03:58:08', '2025-12-17 19:47:37', '841br9Ed', '4642994'), - (81, 1117, 'attending', '2021-12-09 00:37:48', '2025-12-17 19:47:37', '841br9Ed', '4642995'), - (81, 1118, 'attending', '2021-12-16 00:52:56', '2025-12-17 19:47:38', '841br9Ed', '4642996'), - (81, 1119, 'attending', '2021-12-20 17:43:59', '2025-12-17 19:47:31', '841br9Ed', '4642997'), - (81, 1122, 'attending', '2021-11-29 02:21:47', '2025-12-17 19:47:37', '841br9Ed', '4644023'), - (81, 1126, 'not_attending', '2021-12-09 21:10:04', '2025-12-17 19:47:38', '841br9Ed', '4645687'), - (81, 1127, 'attending', '2021-11-14 22:26:27', '2025-12-17 19:47:38', '841br9Ed', '4645698'), - (81, 1128, 'attending', '2021-11-14 22:31:53', '2025-12-17 19:47:37', '841br9Ed', '4645704'), - (81, 1129, 'attending', '2021-11-27 20:52:45', '2025-12-17 19:47:37', '841br9Ed', '4645705'), - (81, 1130, 'attending', '2021-11-30 05:41:27', '2025-12-17 19:47:37', '841br9Ed', '4658824'), - (81, 1131, 'not_attending', '2021-12-16 03:54:22', '2025-12-17 19:47:31', '841br9Ed', '4658825'), - (81, 1132, 'maybe', '2021-11-21 23:21:41', '2025-12-17 19:47:37', '841br9Ed', '4660657'), - (81, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '841br9Ed', '4668385'), - (81, 1137, 'attending', '2021-11-28 19:28:02', '2025-12-17 19:47:37', '841br9Ed', '4674797'), - (81, 1138, 'attending', '2021-11-28 19:28:07', '2025-12-17 19:47:37', '841br9Ed', '4675407'), - (81, 1139, 'maybe', '2021-12-02 23:13:00', '2025-12-17 19:47:37', '841br9Ed', '4675604'), - (81, 1140, 'maybe', '2021-12-04 02:03:44', '2025-12-17 19:47:37', '841br9Ed', '4679701'), - (81, 1143, 'attending', '2021-12-01 21:47:59', '2025-12-17 19:47:37', '841br9Ed', '4683667'), - (81, 1144, 'not_attending', '2021-12-07 22:27:17', '2025-12-17 19:47:37', '841br9Ed', '4687090'), - (81, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '841br9Ed', '4694407'), - (81, 1152, 'attending', '2022-01-07 01:19:43', '2025-12-17 19:47:31', '841br9Ed', '4708705'), - (81, 1153, 'attending', '2022-01-19 22:07:29', '2025-12-17 19:47:32', '841br9Ed', '4708707'), - (81, 1163, 'attending', '2022-01-02 13:37:57', '2025-12-17 19:47:31', '841br9Ed', '4724206'), - (81, 1173, 'attending', '2022-01-07 01:19:31', '2025-12-17 19:47:31', '841br9Ed', '4736495'), - (81, 1174, 'attending', '2022-01-14 16:32:28', '2025-12-17 19:47:31', '841br9Ed', '4736496'), - (81, 1175, 'attending', '2022-01-19 22:07:37', '2025-12-17 19:47:32', '841br9Ed', '4736497'), - (81, 1176, 'attending', '2022-02-05 16:56:48', '2025-12-17 19:47:32', '841br9Ed', '4736498'), - (81, 1177, 'attending', '2022-02-10 10:59:11', '2025-12-17 19:47:32', '841br9Ed', '4736499'), - (81, 1178, 'maybe', '2022-01-29 19:58:49', '2025-12-17 19:47:32', '841br9Ed', '4736500'), - (81, 1179, 'attending', '2022-02-19 14:51:50', '2025-12-17 19:47:32', '841br9Ed', '4736501'), - (81, 1180, 'attending', '2022-02-24 17:18:13', '2025-12-17 19:47:33', '841br9Ed', '4736502'), - (81, 1181, 'attending', '2022-03-02 14:04:39', '2025-12-17 19:47:33', '841br9Ed', '4736503'), - (81, 1182, 'not_attending', '2022-03-10 20:53:09', '2025-12-17 19:47:33', '841br9Ed', '4736504'), - (81, 1184, 'maybe', '2022-01-14 22:15:29', '2025-12-17 19:47:31', '841br9Ed', '4742350'), - (81, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '841br9Ed', '4746789'), - (81, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '841br9Ed', '4753929'), - (81, 1190, 'maybe', '2022-01-12 21:47:12', '2025-12-17 19:47:31', '841br9Ed', '4757377'), - (81, 1201, 'maybe', '2022-01-19 22:07:51', '2025-12-17 19:47:32', '841br9Ed', '4766841'), - (81, 1203, 'attending', '2022-01-22 00:47:13', '2025-12-17 19:47:32', '841br9Ed', '4773535'), - (81, 1206, 'attending', '2022-03-27 11:48:42', '2025-12-17 19:47:27', '841br9Ed', '4773578'), - (81, 1207, 'attending', '2022-05-02 17:22:09', '2025-12-17 19:47:28', '841br9Ed', '4773579'), - (81, 1215, 'maybe', '2022-02-24 21:54:12', '2025-12-17 19:47:33', '841br9Ed', '4780763'), - (81, 1216, 'maybe', '2022-01-29 19:58:53', '2025-12-17 19:47:32', '841br9Ed', '4781137'), - (81, 1232, 'not_attending', '2022-02-09 22:28:47', '2025-12-17 19:47:32', '841br9Ed', '5038850'), - (81, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '841br9Ed', '5045826'), - (81, 1238, 'not_attending', '2022-02-23 18:25:15', '2025-12-17 19:47:32', '841br9Ed', '5052236'), - (81, 1240, 'attending', '2022-03-14 02:02:36', '2025-12-17 19:47:33', '841br9Ed', '5052239'), - (81, 1241, 'maybe', '2022-03-23 22:09:51', '2025-12-17 19:47:25', '841br9Ed', '5052240'), - (81, 1242, 'maybe', '2022-03-30 22:31:31', '2025-12-17 19:47:25', '841br9Ed', '5052241'), - (81, 1243, 'attending', '2022-03-06 19:45:30', '2025-12-17 19:47:33', '841br9Ed', '5058336'), - (81, 1245, 'maybe', '2022-02-24 21:55:34', '2025-12-17 19:47:33', '841br9Ed', '5061301'), - (81, 1248, 'attending', '2022-02-23 18:42:22', '2025-12-17 19:47:33', '841br9Ed', '5065064'), - (81, 1249, 'attending', '2022-03-10 00:17:57', '2025-12-17 19:47:33', '841br9Ed', '5068530'), - (81, 1250, 'attending', '2022-03-03 23:45:16', '2025-12-17 19:47:33', '841br9Ed', '5069735'), - (81, 1253, 'maybe', '2022-03-03 23:46:16', '2025-12-17 19:47:33', '841br9Ed', '5129122'), - (81, 1259, 'maybe', '2022-03-03 23:47:17', '2025-12-17 19:47:33', '841br9Ed', '5132533'), - (81, 1261, 'maybe', '2022-03-03 23:46:52', '2025-12-17 19:47:33', '841br9Ed', '5154274'), - (81, 1264, 'attending', '2022-03-16 22:46:56', '2025-12-17 19:47:25', '841br9Ed', '5160281'), - (81, 1266, 'maybe', '2022-03-14 02:02:31', '2025-12-17 19:47:33', '841br9Ed', '5166407'), - (81, 1269, 'attending', '2022-03-18 14:40:07', '2025-12-17 19:47:25', '841br9Ed', '5179439'), - (81, 1270, 'maybe', '2022-03-18 14:40:26', '2025-12-17 19:47:25', '841br9Ed', '5181277'), - (81, 1271, 'maybe', '2022-03-18 14:39:50', '2025-12-17 19:47:25', '841br9Ed', '5181648'), - (81, 1272, 'attending', '2022-03-16 22:46:38', '2025-12-17 19:47:25', '841br9Ed', '5186582'), - (81, 1273, 'not_attending', '2022-03-25 15:35:52', '2025-12-17 19:47:25', '841br9Ed', '5186583'), - (81, 1274, 'attending', '2022-04-01 18:43:23', '2025-12-17 19:47:26', '841br9Ed', '5186585'), - (81, 1275, 'attending', '2022-04-01 18:43:22', '2025-12-17 19:47:26', '841br9Ed', '5186587'), - (81, 1281, 'attending', '2022-04-05 20:06:48', '2025-12-17 19:47:27', '841br9Ed', '5190437'), - (81, 1282, 'attending', '2022-03-18 14:40:33', '2025-12-17 19:47:25', '841br9Ed', '5191241'), - (81, 1284, 'attending', '2022-04-16 21:54:31', '2025-12-17 19:47:27', '841br9Ed', '5195095'), - (81, 1287, 'attending', '2022-03-23 01:05:02', '2025-12-17 19:47:25', '841br9Ed', '5199425'), - (81, 1288, 'attending', '2022-03-23 01:16:59', '2025-12-17 19:47:25', '841br9Ed', '5199460'), - (81, 1293, 'attending', '2022-03-28 18:59:46', '2025-12-17 19:47:27', '841br9Ed', '5214641'), - (81, 1295, 'attending', '2022-03-28 14:10:29', '2025-12-17 19:47:25', '841br9Ed', '5215609'), - (81, 1297, 'maybe', '2022-03-28 21:23:53', '2025-12-17 19:47:26', '841br9Ed', '5215989'), - (81, 1299, 'attending', '2022-03-30 01:14:16', '2025-12-17 19:47:25', '841br9Ed', '5217660'), - (81, 1301, 'attending', '2022-03-30 22:32:02', '2025-12-17 19:47:26', '841br9Ed', '5218175'), - (81, 1304, 'not_attending', '2022-04-06 21:31:50', '2025-12-17 19:47:26', '841br9Ed', '5223468'), - (81, 1305, 'maybe', '2022-04-10 22:48:17', '2025-12-17 19:47:27', '841br9Ed', '5223673'), - (81, 1306, 'attending', '2022-04-05 20:05:34', '2025-12-17 19:47:26', '841br9Ed', '5223682'), - (81, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '841br9Ed', '5223686'), - (81, 1308, 'not_attending', '2022-04-13 19:06:35', '2025-12-17 19:47:27', '841br9Ed', '5226703'), - (81, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '841br9Ed', '5227432'), - (81, 1310, 'attending', '2022-04-07 17:48:30', '2025-12-17 19:47:27', '841br9Ed', '5231071'), - (81, 1312, 'attending', '2022-04-08 03:10:45', '2025-12-17 19:47:27', '841br9Ed', '5231459'), - (81, 1313, 'attending', '2022-04-08 03:24:47', '2025-12-17 19:47:27', '841br9Ed', '5231461'), - (81, 1315, 'attending', '2022-04-11 12:38:16', '2025-12-17 19:47:27', '841br9Ed', '5237522'), - (81, 1330, 'not_attending', '2022-04-18 21:21:10', '2025-12-17 19:47:27', '841br9Ed', '5242155'), - (81, 1334, 'not_attending', '2022-04-14 18:09:09', '2025-12-17 19:47:27', '841br9Ed', '5244797'), - (81, 1337, 'attending', '2022-04-18 00:02:08', '2025-12-17 19:47:27', '841br9Ed', '5245036'), - (81, 1344, 'attending', '2022-04-17 16:32:14', '2025-12-17 19:47:28', '841br9Ed', '5247465'), - (81, 1346, 'attending', '2022-04-17 16:39:54', '2025-12-17 19:47:27', '841br9Ed', '5247467'), - (81, 1353, 'attending', '2022-04-21 16:23:23', '2025-12-17 19:47:27', '841br9Ed', '5251777'), - (81, 1357, 'attending', '2022-04-25 17:33:36', '2025-12-17 19:47:27', '841br9Ed', '5256017'), - (81, 1362, 'attending', '2022-04-25 17:31:06', '2025-12-17 19:47:28', '841br9Ed', '5260800'), - (81, 1368, 'attending', '2022-05-01 20:34:06', '2025-12-17 19:47:28', '841br9Ed', '5262783'), - (81, 1374, 'attending', '2022-05-02 17:22:01', '2025-12-17 19:47:28', '841br9Ed', '5269930'), - (81, 1375, 'attending', '2022-05-02 17:20:45', '2025-12-17 19:47:28', '841br9Ed', '5269932'), - (81, 1378, 'attending', '2022-05-10 20:01:21', '2025-12-17 19:47:28', '841br9Ed', '5271448'), - (81, 1379, 'attending', '2022-05-15 02:47:35', '2025-12-17 19:47:29', '841br9Ed', '5271449'), - (81, 1380, 'not_attending', '2022-05-15 02:48:03', '2025-12-17 19:47:30', '841br9Ed', '5271450'), - (81, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '841br9Ed', '5276469'), - (81, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '841br9Ed', '5278159'), - (81, 1394, 'not_attending', '2022-05-18 19:41:33', '2025-12-17 19:47:30', '841br9Ed', '5280667'), - (81, 1395, 'attending', '2022-05-07 16:06:26', '2025-12-17 19:47:28', '841br9Ed', '5281102'), - (81, 1397, 'attending', '2022-05-17 12:05:46', '2025-12-17 19:47:29', '841br9Ed', '5281104'), - (81, 1407, 'attending', '2022-06-01 15:49:28', '2025-12-17 19:47:30', '841br9Ed', '5363695'), - (81, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '841br9Ed', '5365960'), - (81, 1414, 'not_attending', '2022-05-20 23:58:31', '2025-12-17 19:47:29', '841br9Ed', '5368445'), - (81, 1415, 'maybe', '2022-06-03 14:50:31', '2025-12-17 19:47:30', '841br9Ed', '5368973'), - (81, 1428, 'attending', '2022-06-05 23:32:02', '2025-12-17 19:47:30', '841br9Ed', '5378247'), - (81, 1431, 'attending', '2022-06-03 14:49:28', '2025-12-17 19:47:30', '841br9Ed', '5389605'), - (81, 1441, 'not_attending', '2022-06-05 16:28:53', '2025-12-17 19:47:30', '841br9Ed', '5397171'), - (81, 1442, 'attending', '2022-06-05 23:32:41', '2025-12-17 19:47:17', '841br9Ed', '5397265'), - (81, 1443, 'attending', '2022-06-03 14:52:38', '2025-12-17 19:47:30', '841br9Ed', '5397613'), - (81, 1444, 'attending', '2022-06-05 23:32:38', '2025-12-17 19:47:30', '841br9Ed', '5397614'), - (81, 1445, 'attending', '2022-06-10 10:26:36', '2025-12-17 19:47:17', '841br9Ed', '5397615'), - (81, 1451, 'maybe', '2022-06-17 22:13:29', '2025-12-17 19:47:17', '841br9Ed', '5403967'), - (81, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '841br9Ed', '5404786'), - (81, 1459, 'attending', '2022-06-10 10:26:51', '2025-12-17 19:47:17', '841br9Ed', '5404793'), - (81, 1460, 'attending', '2022-06-12 20:36:02', '2025-12-17 19:47:31', '841br9Ed', '5404817'), - (81, 1462, 'not_attending', '2022-06-12 22:16:31', '2025-12-17 19:47:17', '841br9Ed', '5405203'), - (81, 1465, 'attending', '2022-06-12 03:06:46', '2025-12-17 19:47:31', '841br9Ed', '5406355'), - (81, 1478, 'maybe', '2022-06-24 21:24:57', '2025-12-17 19:47:19', '841br9Ed', '5408794'), - (81, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '841br9Ed', '5411699'), - (81, 1482, 'attending', '2022-06-20 03:03:19', '2025-12-17 19:47:19', '841br9Ed', '5412550'), - (81, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '841br9Ed', '5415046'), - (81, 1493, 'attending', '2022-06-24 19:22:58', '2025-12-17 19:47:19', '841br9Ed', '5420218'), - (81, 1494, 'not_attending', '2022-06-25 15:22:37', '2025-12-17 19:47:19', '841br9Ed', '5421626'), - (81, 1495, 'attending', '2022-06-27 19:28:37', '2025-12-17 19:47:19', '841br9Ed', '5422086'), - (81, 1498, 'not_attending', '2022-06-27 19:28:33', '2025-12-17 19:47:19', '841br9Ed', '5422406'), - (81, 1499, 'not_attending', '2022-06-27 18:11:26', '2025-12-17 19:47:19', '841br9Ed', '5422407'), - (81, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '841br9Ed', '5424565'), - (81, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '841br9Ed', '5426882'), - (81, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '841br9Ed', '5427083'), - (81, 1511, 'not_attending', '2022-07-06 23:43:26', '2025-12-17 19:47:19', '841br9Ed', '5437733'), - (81, 1513, 'attending', '2022-07-09 16:17:19', '2025-12-17 19:47:19', '841br9Ed', '5441125'), - (81, 1514, 'attending', '2022-07-19 13:23:00', '2025-12-17 19:47:20', '841br9Ed', '5441126'), - (81, 1515, 'attending', '2022-08-04 18:57:26', '2025-12-17 19:47:21', '841br9Ed', '5441128'), - (81, 1516, 'not_attending', '2022-08-19 23:29:40', '2025-12-17 19:47:23', '841br9Ed', '5441129'), - (81, 1517, 'not_attending', '2022-08-23 20:13:15', '2025-12-17 19:47:23', '841br9Ed', '5441130'), - (81, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '841br9Ed', '5441131'), - (81, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '841br9Ed', '5441132'), - (81, 1522, 'attending', '2022-07-18 14:15:14', '2025-12-17 19:47:20', '841br9Ed', '5442832'), - (81, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '841br9Ed', '5446643'), - (81, 1531, 'attending', '2022-07-16 12:37:49', '2025-12-17 19:47:19', '841br9Ed', '5448756'), - (81, 1532, 'attending', '2022-07-18 14:14:59', '2025-12-17 19:47:20', '841br9Ed', '5448757'), - (81, 1534, 'attending', '2022-08-04 18:57:25', '2025-12-17 19:47:21', '841br9Ed', '5448759'), - (81, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '841br9Ed', '5453325'), - (81, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '841br9Ed', '5454516'), - (81, 1544, 'attending', '2022-09-13 23:47:25', '2025-12-17 19:47:11', '841br9Ed', '5454517'), - (81, 1545, 'maybe', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '841br9Ed', '5454605'), - (81, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '841br9Ed', '5455037'), - (81, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '841br9Ed', '5461278'), - (81, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '841br9Ed', '5469480'), - (81, 1565, 'attending', '2022-07-27 00:31:08', '2025-12-17 19:47:21', '841br9Ed', '5471073'), - (81, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '841br9Ed', '5474663'), - (81, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '841br9Ed', '5482022'), - (81, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '841br9Ed', '5482793'), - (81, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '841br9Ed', '5488912'), - (81, 1583, 'attending', '2022-08-10 00:32:19', '2025-12-17 19:47:22', '841br9Ed', '5492002'), - (81, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '841br9Ed', '5492192'), - (81, 1588, 'not_attending', '2022-08-08 19:40:40', '2025-12-17 19:47:22', '841br9Ed', '5493139'), - (81, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '841br9Ed', '5493200'), - (81, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '841br9Ed', '5502188'), - (81, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '841br9Ed', '5505059'), - (81, 1609, 'maybe', '2022-08-25 20:16:05', '2025-12-17 19:47:23', '841br9Ed', '5506590'), - (81, 1610, 'maybe', '2022-08-25 20:16:28', '2025-12-17 19:47:23', '841br9Ed', '5506595'), - (81, 1612, 'not_attending', '2022-09-26 19:57:04', '2025-12-17 19:47:12', '841br9Ed', '5507653'), - (81, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '841br9Ed', '5509055'), - (81, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '841br9Ed', '5512862'), - (81, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '841br9Ed', '5513985'), - (81, 1626, 'attending', '2022-08-26 00:29:00', '2025-12-17 19:47:11', '841br9Ed', '5519981'), - (81, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '841br9Ed', '5522550'), - (81, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '841br9Ed', '5534683'), - (81, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '841br9Ed', '5537735'), - (81, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '841br9Ed', '5540859'), - (81, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '841br9Ed', '5546619'), - (81, 1649, 'attending', '2022-09-03 15:36:37', '2025-12-17 19:47:24', '841br9Ed', '5549346'), - (81, 1652, 'maybe', '2022-09-08 14:16:56', '2025-12-17 19:47:24', '841br9Ed', '5552671'), - (81, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '841br9Ed', '5555245'), - (81, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '841br9Ed', '5557747'), - (81, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '841br9Ed', '5560255'), - (81, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '841br9Ed', '5562906'), - (81, 1667, 'maybe', '2022-09-24 18:10:32', '2025-12-17 19:47:11', '841br9Ed', '5563221'), - (81, 1668, 'not_attending', '2022-10-01 22:06:42', '2025-12-17 19:47:12', '841br9Ed', '5563222'), - (81, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '841br9Ed', '5600604'), - (81, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '841br9Ed', '5605544'), - (81, 1699, 'maybe', '2022-09-26 12:15:58', '2025-12-17 19:47:12', '841br9Ed', '5606737'), - (81, 1705, 'attending', '2022-09-29 21:29:18', '2025-12-17 19:47:12', '841br9Ed', '5612209'), - (81, 1716, 'attending', '2022-10-03 20:58:10', '2025-12-17 19:47:12', '841br9Ed', '5622429'), - (81, 1719, 'attending', '2022-10-07 18:25:50', '2025-12-17 19:47:12', '841br9Ed', '5630958'), - (81, 1720, 'attending', '2022-10-14 19:37:29', '2025-12-17 19:47:12', '841br9Ed', '5630959'), - (81, 1721, 'attending', '2022-10-22 14:18:29', '2025-12-17 19:47:13', '841br9Ed', '5630960'), - (81, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '841br9Ed', '5630961'), - (81, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '841br9Ed', '5630962'), - (81, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '841br9Ed', '5630966'), - (81, 1725, 'attending', '2022-11-12 01:18:33', '2025-12-17 19:47:16', '841br9Ed', '5630967'), - (81, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '841br9Ed', '5630968'), - (81, 1727, 'attending', '2022-11-21 23:16:55', '2025-12-17 19:47:16', '841br9Ed', '5630969'), - (81, 1728, 'attending', '2022-12-05 02:49:04', '2025-12-17 19:47:17', '841br9Ed', '5630970'), - (81, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '841br9Ed', '5635406'), - (81, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '841br9Ed', '5638765'), - (81, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '841br9Ed', '5640097'), - (81, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '841br9Ed', '5640843'), - (81, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '841br9Ed', '5641521'), - (81, 1744, 'attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '841br9Ed', '5642818'), - (81, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '841br9Ed', '5652395'), - (81, 1753, 'maybe', '2022-10-16 14:00:34', '2025-12-17 19:47:13', '841br9Ed', '5656228'), - (81, 1759, 'attending', '2022-10-22 20:56:18', '2025-12-17 19:47:13', '841br9Ed', '5669097'), - (81, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '841br9Ed', '5670445'), - (81, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '841br9Ed', '5671637'), - (81, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '841br9Ed', '5672329'), - (81, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '841br9Ed', '5674057'), - (81, 1767, 'maybe', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '841br9Ed', '5674060'), - (81, 1769, 'maybe', '2022-11-03 22:25:55', '2025-12-17 19:47:15', '841br9Ed', '5676351'), - (81, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '841br9Ed', '5677461'), - (81, 1776, 'maybe', '2022-11-09 21:05:17', '2025-12-17 19:47:15', '841br9Ed', '5691067'), - (81, 1777, 'attending', '2022-11-07 22:35:40', '2025-12-17 19:47:15', '841br9Ed', '5693021'), - (81, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '841br9Ed', '5698046'), - (81, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '841br9Ed', '5699760'), - (81, 1790, 'maybe', '2022-11-12 01:18:00', '2025-12-17 19:47:15', '841br9Ed', '5727424'), - (81, 1793, 'maybe', '2022-11-21 23:16:49', '2025-12-17 19:47:16', '841br9Ed', '5736365'), - (81, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '841br9Ed', '5741601'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (81, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '841br9Ed', '5763458'), - (81, 1813, 'attending', '2023-04-29 21:53:12', '2025-12-17 19:47:01', '841br9Ed', '5764683'), - (81, 1815, 'attending', '2023-02-17 15:01:19', '2025-12-17 19:47:07', '841br9Ed', '5764685'), - (81, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '841br9Ed', '5774172'), - (81, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '841br9Ed', '5818247'), - (81, 1834, 'maybe', '2022-12-10 13:42:48', '2025-12-17 19:47:17', '841br9Ed', '5819470'), - (81, 1835, 'attending', '2023-01-04 03:00:50', '2025-12-17 19:47:05', '841br9Ed', '5819471'), - (81, 1841, 'attending', '2022-12-23 15:57:09', '2025-12-17 19:47:05', '841br9Ed', '5827665'), - (81, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '841br9Ed', '5827739'), - (81, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '841br9Ed', '5844306'), - (81, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '841br9Ed', '5850159'), - (81, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '841br9Ed', '5858999'), - (81, 1852, 'maybe', '2023-01-11 20:35:32', '2025-12-17 19:47:05', '841br9Ed', '5869898'), - (81, 1853, 'attending', '2023-01-10 02:34:14', '2025-12-17 19:47:05', '841br9Ed', '5871984'), - (81, 1856, 'maybe', '2023-01-17 16:13:45', '2025-12-17 19:47:05', '841br9Ed', '5873970'), - (81, 1860, 'maybe', '2023-01-16 17:10:51', '2025-12-17 19:47:05', '841br9Ed', '5876309'), - (81, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '841br9Ed', '5876354'), - (81, 1864, 'attending', '2023-01-16 17:10:45', '2025-12-17 19:47:05', '841br9Ed', '5879675'), - (81, 1865, 'attending', '2023-01-26 12:25:58', '2025-12-17 19:47:06', '841br9Ed', '5879676'), - (81, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '841br9Ed', '5880939'), - (81, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '841br9Ed', '5880940'), - (81, 1868, 'maybe', '2023-02-19 16:39:32', '2025-12-17 19:47:07', '841br9Ed', '5880942'), - (81, 1869, 'maybe', '2023-02-28 19:47:14', '2025-12-17 19:47:09', '841br9Ed', '5880943'), - (81, 1872, 'maybe', '2023-01-20 20:18:45', '2025-12-17 19:47:05', '841br9Ed', '5883546'), - (81, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '841br9Ed', '5887890'), - (81, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '841br9Ed', '5888598'), - (81, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '841br9Ed', '5893260'), - (81, 1881, 'attending', '2023-01-25 03:49:39', '2025-12-17 19:47:07', '841br9Ed', '5894218'), - (81, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '841br9Ed', '5899826'), - (81, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '841br9Ed', '5900199'), - (81, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '841br9Ed', '5900200'), - (81, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '841br9Ed', '5900202'), - (81, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '841br9Ed', '5900203'), - (81, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '841br9Ed', '5901108'), - (81, 1897, 'attending', '2023-02-10 14:29:22', '2025-12-17 19:47:07', '841br9Ed', '5901128'), - (81, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '841br9Ed', '5909655'), - (81, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '841br9Ed', '5910522'), - (81, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '841br9Ed', '5910526'), - (81, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '841br9Ed', '5910528'), - (81, 1920, 'attending', '2023-02-14 00:24:42', '2025-12-17 19:47:07', '841br9Ed', '5914091'), - (81, 1922, 'attending', '2023-02-12 18:27:32', '2025-12-17 19:47:07', '841br9Ed', '5916219'), - (81, 1923, 'attending', '2023-02-18 18:31:09', '2025-12-17 19:47:07', '841br9Ed', '5930436'), - (81, 1933, 'attending', '2023-02-20 16:56:35', '2025-12-17 19:47:08', '841br9Ed', '5936234'), - (81, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '841br9Ed', '5958351'), - (81, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '841br9Ed', '5959751'), - (81, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '841br9Ed', '5959755'), - (81, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '841br9Ed', '5960055'), - (81, 1941, 'maybe', '2023-02-25 23:34:41', '2025-12-17 19:47:09', '841br9Ed', '5961684'), - (81, 1944, 'attending', '2023-02-26 03:03:03', '2025-12-17 19:47:09', '841br9Ed', '5962132'), - (81, 1945, 'attending', '2023-02-27 21:22:18', '2025-12-17 19:47:09', '841br9Ed', '5962133'), - (81, 1946, 'attending', '2023-02-27 21:22:26', '2025-12-17 19:46:56', '841br9Ed', '5962134'), - (81, 1947, 'attending', '2023-02-25 23:59:31', '2025-12-17 19:47:09', '841br9Ed', '5962233'), - (81, 1948, 'attending', '2023-02-27 21:22:35', '2025-12-17 19:46:57', '841br9Ed', '5962317'), - (81, 1949, 'not_attending', '2023-02-26 04:44:40', '2025-12-17 19:46:59', '841br9Ed', '5962318'), - (81, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '841br9Ed', '5965933'), - (81, 1953, 'maybe', '2023-03-01 20:57:20', '2025-12-17 19:47:09', '841br9Ed', '5966307'), - (81, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '841br9Ed', '5967014'), - (81, 1956, 'attending', '2023-03-06 04:33:10', '2025-12-17 19:47:09', '841br9Ed', '5972763'), - (81, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '841br9Ed', '5972815'), - (81, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '841br9Ed', '5974016'), - (81, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '841br9Ed', '5981515'), - (81, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '841br9Ed', '5993516'), - (81, 1972, 'attending', '2023-03-16 01:28:27', '2025-12-17 19:46:56', '841br9Ed', '5993776'), - (81, 1973, 'maybe', '2023-03-19 03:22:20', '2025-12-17 19:46:56', '841br9Ed', '5993777'), - (81, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '841br9Ed', '5998939'), - (81, 1978, 'maybe', '2023-03-26 07:35:24', '2025-12-17 19:46:58', '841br9Ed', '6028191'), - (81, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '841br9Ed', '6040066'), - (81, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '841br9Ed', '6042717'), - (81, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '841br9Ed', '6044838'), - (81, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '841br9Ed', '6044839'), - (81, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841br9Ed', '6045684'), - (81, 1992, 'attending', '2023-04-01 00:28:29', '2025-12-17 19:46:58', '841br9Ed', '6048742'), - (81, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '841br9Ed', '6050104'), - (81, 1997, 'attending', '2023-04-03 13:31:12', '2025-12-17 19:46:58', '841br9Ed', '6051604'), - (81, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '841br9Ed', '6053195'), - (81, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '841br9Ed', '6053198'), - (81, 2010, 'attending', '2023-04-07 18:33:36', '2025-12-17 19:46:59', '841br9Ed', '6056085'), - (81, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '841br9Ed', '6056916'), - (81, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '841br9Ed', '6059290'), - (81, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '841br9Ed', '6060328'), - (81, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '841br9Ed', '6061037'), - (81, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '841br9Ed', '6061039'), - (81, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', '841br9Ed', '6061099'), - (81, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '841br9Ed', '6067245'), - (81, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '841br9Ed', '6068094'), - (81, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '841br9Ed', '6068252'), - (81, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '841br9Ed', '6068253'), - (81, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '841br9Ed', '6068254'), - (81, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '841br9Ed', '6068280'), - (81, 2032, 'attending', '2023-05-20 21:20:46', '2025-12-17 19:47:04', '841br9Ed', '6068281'), - (81, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '841br9Ed', '6069093'), - (81, 2039, 'attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', '841br9Ed', '6072398'), - (81, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '841br9Ed', '6072528'), - (81, 2043, 'maybe', '2023-04-25 22:03:35', '2025-12-17 19:47:01', '841br9Ed', '6073023'), - (81, 2044, 'attending', '2023-04-26 00:28:45', '2025-12-17 19:47:03', '841br9Ed', '6073678'), - (81, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '841br9Ed', '6079840'), - (81, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '841br9Ed', '6083398'), - (81, 2056, 'attending', '2023-05-09 19:49:34', '2025-12-17 19:47:02', '841br9Ed', '6093504'), - (81, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '841br9Ed', '6097414'), - (81, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '841br9Ed', '6097442'), - (81, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '841br9Ed', '6097684'), - (81, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '841br9Ed', '6098762'), - (81, 2064, 'attending', '2023-06-24 16:20:23', '2025-12-17 19:46:50', '841br9Ed', '6099988'), - (81, 2065, 'attending', '2023-05-20 21:20:35', '2025-12-17 19:46:49', '841br9Ed', '6101169'), - (81, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '841br9Ed', '6101361'), - (81, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '841br9Ed', '6101362'), - (81, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '841br9Ed', '6103752'), - (81, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '841br9Ed', '6107314'), - (81, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '841br9Ed', '6120034'), - (81, 2089, 'maybe', '2023-06-07 23:57:16', '2025-12-17 19:47:04', '841br9Ed', '6125227'), - (81, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', '841br9Ed', '6135924'), - (81, 2095, 'attending', '2023-06-05 20:05:26', '2025-12-17 19:46:51', '841br9Ed', '6136733'), - (81, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '841br9Ed', '6137989'), - (81, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '841br9Ed', '6150864'), - (81, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '841br9Ed', '6155491'), - (81, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '841br9Ed', '6164417'), - (81, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '841br9Ed', '6166388'), - (81, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '841br9Ed', '6176439'), - (81, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '841br9Ed', '6182410'), - (81, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '841br9Ed', '6185812'), - (81, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '841br9Ed', '6187651'), - (81, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '841br9Ed', '6187963'), - (81, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '841br9Ed', '6187964'), - (81, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '841br9Ed', '6187966'), - (81, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '841br9Ed', '6187967'), - (81, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '841br9Ed', '6187969'), - (81, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '841br9Ed', '6334878'), - (81, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '841br9Ed', '6337236'), - (81, 2154, 'maybe', '2023-07-11 23:11:58', '2025-12-17 19:46:52', '841br9Ed', '6337689'), - (81, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '841br9Ed', '6337970'), - (81, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '841br9Ed', '6338308'), - (81, 2157, 'not_attending', '2023-07-12 21:54:13', '2025-12-17 19:46:52', '841br9Ed', '6338342'), - (81, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '841br9Ed', '6341710'), - (81, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '841br9Ed', '6342044'), - (81, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '841br9Ed', '6342298'), - (81, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '841br9Ed', '6343294'), - (81, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '841br9Ed', '6347034'), - (81, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '841br9Ed', '6347056'), - (81, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '841br9Ed', '6353830'), - (81, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '841br9Ed', '6353831'), - (81, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '841br9Ed', '6357867'), - (81, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '841br9Ed', '6358652'), - (81, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '841br9Ed', '6358668'), - (81, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '841br9Ed', '6358669'), - (81, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '841br9Ed', '6361709'), - (81, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '841br9Ed', '6361710'), - (81, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '841br9Ed', '6361711'), - (81, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '841br9Ed', '6361712'), - (81, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '841br9Ed', '6361713'), - (81, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '841br9Ed', '6382573'), - (81, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '841br9Ed', '6388604'), - (81, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '841br9Ed', '6394629'), - (81, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '841br9Ed', '6394631'), - (81, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '841br9Ed', '6440863'), - (81, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '841br9Ed', '6445440'), - (81, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '841br9Ed', '6453951'), - (81, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '841br9Ed', '6461696'), - (81, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '841br9Ed', '6462129'), - (81, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '841br9Ed', '6463218'), - (81, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '841br9Ed', '6472181'), - (81, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', '841br9Ed', '6474276'), - (81, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '841br9Ed', '6482693'), - (81, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '841br9Ed', '6484200'), - (81, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '841br9Ed', '6484680'), - (81, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '841br9Ed', '6507741'), - (81, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '841br9Ed', '6514659'), - (81, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '841br9Ed', '6514660'), - (81, 2324, 'not_attending', '2023-12-09 19:40:29', '2025-12-17 19:46:49', '841br9Ed', '6514662'), - (81, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '841br9Ed', '6519103'), - (81, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '841br9Ed', '6535681'), - (81, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '841br9Ed', '6584747'), - (81, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '841br9Ed', '6587097'), - (81, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '841br9Ed', '6609022'), - (81, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '841br9Ed', '6644187'), - (81, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '841br9Ed', '6648951'), - (81, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '841br9Ed', '6648952'), - (81, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '841br9Ed', '6655401'), - (81, 2399, 'attending', '2024-01-13 18:46:29', '2025-12-17 19:46:38', '841br9Ed', '6657583'), - (81, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '841br9Ed', '6661585'), - (81, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '841br9Ed', '6661588'), - (81, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '841br9Ed', '6661589'), - (81, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '841br9Ed', '6699906'), - (81, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '841br9Ed', '6699913'), - (81, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '841br9Ed', '6701109'), - (81, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '841br9Ed', '6705219'), - (81, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '841br9Ed', '6710153'), - (81, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '841br9Ed', '6711552'), - (81, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '841br9Ed', '6711553'), - (81, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '841br9Ed', '6722688'), - (81, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '841br9Ed', '6730620'), - (81, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '841br9Ed', '6740364'), - (81, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '841br9Ed', '6743829'), - (81, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '841br9Ed', '7030380'), - (81, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '841br9Ed', '7033677'), - (81, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '841br9Ed', '7044715'), - (81, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '841br9Ed', '7050318'), - (81, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '841br9Ed', '7050319'), - (81, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '841br9Ed', '7050322'), - (81, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '841br9Ed', '7057804'), - (81, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '841br9Ed', '7072824'), - (81, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '841br9Ed', '7074348'), - (81, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '841br9Ed', '7074364'), - (81, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '841br9Ed', '7089267'), - (81, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '841br9Ed', '7098747'), - (81, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '841br9Ed', '7113468'), - (81, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '841br9Ed', '7114856'), - (81, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '841br9Ed', '7114951'), - (81, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '841br9Ed', '7114955'), - (81, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '841br9Ed', '7114956'), - (81, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '841br9Ed', '7114957'), - (81, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '841br9Ed', '7159484'), - (81, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '841br9Ed', '7178446'), - (81, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '841br9Ed', '7220467'), - (81, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '841br9Ed', '7240354'), - (81, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '841br9Ed', '7251633'), - (81, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '841br9Ed', '7324073'), - (81, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '841br9Ed', '7324074'), - (81, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '841br9Ed', '7324075'), - (81, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '841br9Ed', '7324078'), - (81, 2697, 'attending', '2024-08-30 23:54:52', '2025-12-17 19:46:32', '841br9Ed', '7324082'), - (81, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '841br9Ed', '7331457'), - (81, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '841br9Ed', '7363643'), - (81, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '841br9Ed', '7368606'), - (81, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '841br9Ed', '7397462'), - (81, 2808, 'attending', '2024-08-30 22:27:47', '2025-12-17 19:46:32', '841br9Ed', '7412860'), - (81, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '841br9Ed', '7424275'), - (81, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '841br9Ed', '7424276'), - (81, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '841br9Ed', '7432751'), - (81, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '841br9Ed', '7432752'), - (81, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '841br9Ed', '7432753'), - (81, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '841br9Ed', '7432754'), - (81, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '841br9Ed', '7432755'), - (81, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '841br9Ed', '7432756'), - (81, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '841br9Ed', '7432758'), - (81, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '841br9Ed', '7432759'), - (81, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '841br9Ed', '7433834'), - (81, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '841br9Ed', '7470197'), - (81, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '841br9Ed', '7685613'), - (81, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '841br9Ed', '7688194'), - (81, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '841br9Ed', '7688196'), - (81, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '841br9Ed', '7688289'), - (81, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '841br9Ed', '7692763'), - (81, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '841br9Ed', '7697552'), - (81, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '841br9Ed', '7699878'), - (81, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '841br9Ed', '7704043'), - (81, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '841br9Ed', '7712467'), - (81, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '841br9Ed', '7713585'), - (81, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '841br9Ed', '7713586'), - (81, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '841br9Ed', '7738518'), - (81, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', '841br9Ed', '7750632'), - (81, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '841br9Ed', '7750636'), - (81, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '841br9Ed', '7796540'), - (81, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '841br9Ed', '7796541'), - (81, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '841br9Ed', '7796542'), - (81, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '841br9Ed', '7825913'), - (81, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '841br9Ed', '7826209'), - (81, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '841br9Ed', '7834742'), - (81, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '841br9Ed', '7842108'), - (81, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '841br9Ed', '7842902'), - (81, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '841br9Ed', '7842903'), - (81, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '841br9Ed', '7842904'), - (81, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '841br9Ed', '7842905'), - (81, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '841br9Ed', '7855719'), - (81, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '841br9Ed', '7860683'), - (81, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '841br9Ed', '7860684'), - (81, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '841br9Ed', '7866095'), - (81, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '841br9Ed', '7869170'), - (81, 3014, 'not_attending', '2025-03-31 23:13:03', '2025-12-17 19:46:20', '841br9Ed', '7869185'), - (81, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '841br9Ed', '7869188'), - (81, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '841br9Ed', '7869201'), - (81, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '841br9Ed', '7877465'), - (81, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '841br9Ed', '7878570'), - (81, 3055, 'maybe', '2025-03-27 22:56:55', '2025-12-17 19:46:19', '841br9Ed', '7888118'), - (81, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '841br9Ed', '7888250'), - (81, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '841br9Ed', '7904777'), - (81, 3095, 'attending', '2025-05-03 22:33:57', '2025-12-17 19:46:20', '841br9Ed', '8342293'), - (81, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '841br9Ed', '8349164'), - (81, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '841br9Ed', '8349545'), - (81, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '841br9Ed', '8353584'), - (81, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '841br9Ed', '8368028'), - (81, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '841br9Ed', '8368029'), - (81, 3133, 'not_attending', '2025-05-29 14:36:06', '2025-12-17 19:46:14', '841br9Ed', '8368030'), - (81, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '841br9Ed', '8388462'), - (81, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '841br9Ed', '8400273'), - (81, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '841br9Ed', '8400274'), - (81, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '841br9Ed', '8400275'), - (81, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '841br9Ed', '8400276'), - (81, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '841br9Ed', '8404977'), - (81, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '841br9Ed', '8430783'), - (81, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '841br9Ed', '8430784'), - (81, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '841br9Ed', '8430799'), - (81, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '841br9Ed', '8430800'), - (81, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '841br9Ed', '8430801'), - (81, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '841br9Ed', '8438709'), - (81, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '841br9Ed', '8457738'), - (81, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '841br9Ed', '8459566'), - (81, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '841br9Ed', '8459567'), - (81, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '841br9Ed', '8461032'), - (81, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '841br9Ed', '8477877'), - (81, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '841br9Ed', '8485688'), - (81, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '841br9Ed', '8490587'), - (81, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '841br9Ed', '8493552'), - (81, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '841br9Ed', '8493553'), - (81, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '841br9Ed', '8493554'), - (81, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '841br9Ed', '8493555'), - (81, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '841br9Ed', '8493556'), - (81, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '841br9Ed', '8493557'), - (81, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '841br9Ed', '8493558'), - (81, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '841br9Ed', '8493559'), - (81, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '841br9Ed', '8493560'), - (81, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '841br9Ed', '8493561'), - (81, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '841br9Ed', '8493572'), - (81, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '841br9Ed', '8540725'), - (81, 3295, 'maybe', '2025-11-01 21:43:02', '2025-12-17 19:46:14', '841br9Ed', '8547541'), - (81, 3302, 'attending', '2025-11-13 07:14:13', '2025-12-17 19:46:14', '841br9Ed', '8550022'), - (81, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '841br9Ed', '8555421'), - (81, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', '841br9Ed', '8555522'), - (82, 245, 'attending', '2020-12-01 00:30:24', '2025-12-17 19:47:54', 'kdK0eo5m', '3149476'), - (82, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'kdK0eo5m', '3285414'), - (82, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'kdK0eo5m', '3313856'), - (82, 496, 'attending', '2020-12-10 22:46:44', '2025-12-17 19:47:54', 'kdK0eo5m', '3314269'), - (82, 497, 'not_attending', '2020-12-18 00:31:39', '2025-12-17 19:47:55', 'kdK0eo5m', '3314270'), - (82, 499, 'attending', '2020-12-12 00:59:15', '2025-12-17 19:47:55', 'kdK0eo5m', '3314909'), - (82, 500, 'maybe', '2020-12-19 00:25:12', '2025-12-17 19:47:55', 'kdK0eo5m', '3314964'), - (82, 501, 'attending', '2020-12-09 00:27:13', '2025-12-17 19:47:54', 'kdK0eo5m', '3317834'), - (82, 502, 'attending', '2020-12-11 06:51:42', '2025-12-17 19:47:55', 'kdK0eo5m', '3323365'), - (82, 506, 'attending', '2020-12-14 00:48:42', '2025-12-17 19:47:55', 'kdK0eo5m', '3323375'), - (82, 513, 'attending', '2020-12-19 19:29:40', '2025-12-17 19:47:55', 'kdK0eo5m', '3329383'), - (82, 517, 'maybe', '2021-01-04 21:11:25', '2025-12-17 19:47:48', 'kdK0eo5m', '3337137'), - (82, 518, 'maybe', '2021-01-04 21:11:06', '2025-12-17 19:47:48', 'kdK0eo5m', '3337138'), - (82, 526, 'attending', '2020-12-31 12:30:21', '2025-12-17 19:47:48', 'kdK0eo5m', '3351539'), - (82, 529, 'maybe', '2021-01-04 21:10:53', '2025-12-17 19:47:48', 'kdK0eo5m', '3364568'), - (82, 532, 'maybe', '2021-01-08 06:41:28', '2025-12-17 19:47:48', 'kdK0eo5m', '3381412'), - (82, 534, 'attending', '2021-01-08 06:41:34', '2025-12-17 19:47:48', 'kdK0eo5m', '3384157'), - (82, 536, 'attending', '2021-01-08 06:41:36', '2025-12-17 19:47:48', 'kdK0eo5m', '3386848'), - (82, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdK0eo5m', '3389527'), - (82, 542, 'attending', '2021-01-11 21:13:22', '2025-12-17 19:47:48', 'kdK0eo5m', '3395013'), - (82, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdK0eo5m', '3396499'), - (82, 548, 'attending', '2021-01-14 04:58:42', '2025-12-17 19:47:48', 'kdK0eo5m', '3403650'), - (82, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdK0eo5m', '3406988'), - (82, 550, 'attending', '2021-01-18 00:43:48', '2025-12-17 19:47:48', 'kdK0eo5m', '3407018'), - (82, 555, 'attending', '2021-01-23 19:50:42', '2025-12-17 19:47:49', 'kdK0eo5m', '3416576'), - (82, 556, 'maybe', '2021-01-25 20:02:54', '2025-12-17 19:47:49', 'kdK0eo5m', '3417170'), - (82, 557, 'maybe', '2021-01-19 18:52:24', '2025-12-17 19:47:49', 'kdK0eo5m', '3418748'), - (82, 558, 'maybe', '2021-01-20 04:34:58', '2025-12-17 19:47:49', 'kdK0eo5m', '3418925'), - (82, 562, 'attending', '2021-01-23 18:27:47', '2025-12-17 19:47:49', 'kdK0eo5m', '3424911'), - (82, 564, 'not_attending', '2021-01-24 08:44:18', '2025-12-17 19:47:49', 'kdK0eo5m', '3426074'), - (82, 567, 'attending', '2021-01-24 08:50:46', '2025-12-17 19:47:50', 'kdK0eo5m', '3428895'), - (82, 568, 'attending', '2021-01-26 00:38:36', '2025-12-17 19:47:50', 'kdK0eo5m', '3430267'), - (82, 569, 'maybe', '2021-01-27 22:08:56', '2025-12-17 19:47:49', 'kdK0eo5m', '3432673'), - (82, 571, 'maybe', '2021-02-12 05:09:04', '2025-12-17 19:47:50', 'kdK0eo5m', '3435539'), - (82, 577, 'maybe', '2021-01-29 05:03:59', '2025-12-17 19:47:49', 'kdK0eo5m', '3439167'), - (82, 579, 'attending', '2021-02-06 21:52:09', '2025-12-17 19:47:50', 'kdK0eo5m', '3440978'), - (82, 580, 'maybe', '2021-01-31 19:43:38', '2025-12-17 19:47:50', 'kdK0eo5m', '3444240'), - (82, 591, 'maybe', '2021-02-08 20:06:10', '2025-12-17 19:47:50', 'kdK0eo5m', '3465880'), - (82, 599, 'maybe', '2021-02-11 22:59:44', '2025-12-17 19:47:50', 'kdK0eo5m', '3468117'), - (82, 600, 'maybe', '2021-02-21 10:33:40', '2025-12-17 19:47:50', 'kdK0eo5m', '3468125'), - (82, 602, 'attending', '2021-02-10 01:05:48', '2025-12-17 19:47:50', 'kdK0eo5m', '3470303'), - (82, 603, 'attending', '2021-02-20 20:20:31', '2025-12-17 19:47:50', 'kdK0eo5m', '3470304'), - (82, 604, 'attending', '2021-02-27 01:29:13', '2025-12-17 19:47:50', 'kdK0eo5m', '3470305'), - (82, 605, 'attending', '2021-02-15 02:00:54', '2025-12-17 19:47:50', 'kdK0eo5m', '3470991'), - (82, 612, 'attending', '2021-02-18 03:49:08', '2025-12-17 19:47:50', 'kdK0eo5m', '3490040'), - (82, 613, 'maybe', '2021-02-24 03:02:55', '2025-12-17 19:47:50', 'kdK0eo5m', '3490041'), - (82, 614, 'attending', '2021-03-04 00:45:10', '2025-12-17 19:47:51', 'kdK0eo5m', '3490042'), - (82, 616, 'attending', '2021-02-21 20:09:24', '2025-12-17 19:47:50', 'kdK0eo5m', '3493478'), - (82, 621, 'attending', '2021-03-04 09:45:32', '2025-12-17 19:47:51', 'kdK0eo5m', '3517815'), - (82, 622, 'attending', '2021-03-10 01:15:24', '2025-12-17 19:47:51', 'kdK0eo5m', '3517816'), - (82, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdK0eo5m', '3523941'), - (82, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdK0eo5m', '3533850'), - (82, 637, 'attending', '2021-03-01 21:33:46', '2025-12-17 19:47:51', 'kdK0eo5m', '3536411'), - (82, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdK0eo5m', '3536632'), - (82, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdK0eo5m', '3536656'), - (82, 641, 'attending', '2021-04-03 04:46:25', '2025-12-17 19:47:44', 'kdK0eo5m', '3539916'), - (82, 642, 'attending', '2021-04-10 03:14:53', '2025-12-17 19:47:44', 'kdK0eo5m', '3539917'), - (82, 643, 'attending', '2021-04-15 23:09:09', '2025-12-17 19:47:45', 'kdK0eo5m', '3539918'), - (82, 644, 'attending', '2021-04-23 21:29:52', '2025-12-17 19:47:45', 'kdK0eo5m', '3539919'), - (82, 645, 'attending', '2021-05-08 04:10:03', '2025-12-17 19:47:46', 'kdK0eo5m', '3539920'), - (82, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdK0eo5m', '3539921'), - (82, 647, 'attending', '2021-05-21 17:10:55', '2025-12-17 19:47:46', 'kdK0eo5m', '3539922'), - (82, 648, 'attending', '2021-05-28 16:11:29', '2025-12-17 19:47:47', 'kdK0eo5m', '3539923'), - (82, 649, 'maybe', '2021-03-20 06:00:47', '2025-12-17 19:47:51', 'kdK0eo5m', '3539927'), - (82, 650, 'attending', '2021-03-27 17:30:22', '2025-12-17 19:47:44', 'kdK0eo5m', '3539928'), - (82, 687, 'attending', '2021-03-12 01:45:06', '2025-12-17 19:47:51', 'kdK0eo5m', '3553405'), - (82, 699, 'maybe', '2021-03-26 03:40:56', '2025-12-17 19:47:44', 'kdK0eo5m', '3572241'), - (82, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdK0eo5m', '3582734'), - (82, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdK0eo5m', '3583262'), - (82, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdK0eo5m', '3619523'), - (82, 719, 'maybe', '2021-04-08 22:31:24', '2025-12-17 19:47:44', 'kdK0eo5m', '3635405'), - (82, 722, 'maybe', '2021-04-02 21:56:44', '2025-12-17 19:47:44', 'kdK0eo5m', '3646347'), - (82, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdK0eo5m', '3661369'), - (82, 731, 'maybe', '2021-04-05 22:42:52', '2025-12-17 19:47:44', 'kdK0eo5m', '3674262'), - (82, 735, 'maybe', '2021-04-05 21:11:35', '2025-12-17 19:47:46', 'kdK0eo5m', '3677402'), - (82, 737, 'attending', '2021-04-06 22:05:13', '2025-12-17 19:47:44', 'kdK0eo5m', '3679349'), - (82, 752, 'attending', '2021-04-15 23:12:58', '2025-12-17 19:47:44', 'kdK0eo5m', '3699422'), - (82, 774, 'maybe', '2021-04-21 21:02:59', '2025-12-17 19:47:45', 'kdK0eo5m', '3730212'), - (82, 777, 'attending', '2021-05-01 21:08:03', '2025-12-17 19:47:46', 'kdK0eo5m', '3746248'), - (82, 779, 'maybe', '2021-05-03 21:03:20', '2025-12-17 19:47:46', 'kdK0eo5m', '3757118'), - (82, 782, 'maybe', '2021-05-04 06:00:22', '2025-12-17 19:47:46', 'kdK0eo5m', '3761843'), - (82, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdK0eo5m', '3793156'), - (82, 793, 'attending', '2021-06-01 22:16:28', '2025-12-17 19:47:47', 'kdK0eo5m', '3793537'), - (82, 794, 'attending', '2021-05-20 07:28:21', '2025-12-17 19:47:47', 'kdK0eo5m', '3793538'), - (82, 808, 'maybe', '2021-05-20 19:51:35', '2025-12-17 19:47:46', 'kdK0eo5m', '3807358'), - (82, 823, 'attending', '2021-06-17 03:17:20', '2025-12-17 19:47:48', 'kdK0eo5m', '3974109'), - (82, 827, 'attending', '2021-06-05 18:55:05', '2025-12-17 19:47:47', 'kdK0eo5m', '3975311'), - (82, 828, 'attending', '2021-06-12 05:11:04', '2025-12-17 19:47:47', 'kdK0eo5m', '3975312'), - (82, 834, 'maybe', '2021-06-08 00:19:59', '2025-12-17 19:47:47', 'kdK0eo5m', '3990439'), - (82, 837, 'attending', '2021-06-17 22:36:55', '2025-12-17 19:47:48', 'kdK0eo5m', '3992545'), - (82, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdK0eo5m', '3994992'), - (82, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdK0eo5m', '4014338'), - (82, 866, 'maybe', '2021-06-15 22:36:29', '2025-12-17 19:47:38', 'kdK0eo5m', '4020424'), - (82, 867, 'not_attending', '2021-06-24 08:13:25', '2025-12-17 19:47:38', 'kdK0eo5m', '4021848'), - (82, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdK0eo5m', '4136744'), - (82, 870, 'attending', '2021-07-02 03:08:44', '2025-12-17 19:47:39', 'kdK0eo5m', '4136937'), - (82, 871, 'attending', '2021-07-07 22:21:38', '2025-12-17 19:47:39', 'kdK0eo5m', '4136938'), - (82, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdK0eo5m', '4136947'), - (82, 876, 'attending', '2021-06-22 23:48:10', '2025-12-17 19:47:38', 'kdK0eo5m', '4139926'), - (82, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdK0eo5m', '4210314'), - (82, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdK0eo5m', '4225444'), - (82, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdK0eo5m', '4239259'), - (82, 900, 'attending', '2021-07-24 17:00:32', '2025-12-17 19:47:40', 'kdK0eo5m', '4240316'), - (82, 901, 'attending', '2021-07-30 23:06:03', '2025-12-17 19:47:40', 'kdK0eo5m', '4240317'), - (82, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdK0eo5m', '4240318'), - (82, 903, 'attending', '2021-08-12 17:20:09', '2025-12-17 19:47:42', 'kdK0eo5m', '4240320'), - (82, 905, 'attending', '2021-07-07 22:20:47', '2025-12-17 19:47:39', 'kdK0eo5m', '4250163'), - (82, 919, 'attending', '2021-07-17 22:27:00', '2025-12-17 19:47:39', 'kdK0eo5m', '4275957'), - (82, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdK0eo5m', '4277819'), - (82, 933, 'attending', '2021-07-28 22:49:04', '2025-12-17 19:47:40', 'kdK0eo5m', '4301723'), - (82, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdK0eo5m', '4302093'), - (82, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdK0eo5m', '4304151'), - (82, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'kdK0eo5m', '4345519'), - (82, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdK0eo5m', '4356801'), - (82, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'kdK0eo5m', '4358025'), - (82, 973, 'attending', '2021-08-21 17:26:47', '2025-12-17 19:47:42', 'kdK0eo5m', '4366186'), - (82, 974, 'attending', '2021-08-27 21:24:52', '2025-12-17 19:47:42', 'kdK0eo5m', '4366187'), - (82, 988, 'maybe', '2021-08-27 19:10:20', '2025-12-17 19:47:42', 'kdK0eo5m', '4402823'), - (82, 990, 'attending', '2021-09-04 18:39:25', '2025-12-17 19:47:43', 'kdK0eo5m', '4420735'), - (82, 991, 'attending', '2021-09-11 19:34:13', '2025-12-17 19:47:43', 'kdK0eo5m', '4420738'), - (82, 992, 'attending', '2021-09-18 17:49:51', '2025-12-17 19:47:33', 'kdK0eo5m', '4420739'), - (82, 993, 'attending', '2021-09-25 18:24:02', '2025-12-17 19:47:34', 'kdK0eo5m', '4420741'), - (82, 994, 'not_attending', '2021-10-02 20:05:25', '2025-12-17 19:47:34', 'kdK0eo5m', '4420742'), - (82, 995, 'attending', '2021-10-09 09:11:01', '2025-12-17 19:47:34', 'kdK0eo5m', '4420744'), - (82, 996, 'attending', '2021-10-15 17:52:36', '2025-12-17 19:47:35', 'kdK0eo5m', '4420747'), - (82, 997, 'not_attending', '2021-10-23 21:26:09', '2025-12-17 19:47:35', 'kdK0eo5m', '4420748'), - (82, 998, 'attending', '2021-10-30 02:15:41', '2025-12-17 19:47:36', 'kdK0eo5m', '4420749'), - (82, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdK0eo5m', '4461883'), - (82, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdK0eo5m', '4508342'), - (82, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdK0eo5m', '4568602'), - (82, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdK0eo5m', '4572153'), - (82, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'kdK0eo5m', '4585962'), - (82, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'kdK0eo5m', '4596356'), - (82, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdK0eo5m', '4598860'), - (82, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdK0eo5m', '4598861'), - (82, 1099, 'not_attending', '2021-11-06 20:23:49', '2025-12-17 19:47:36', 'kdK0eo5m', '4602797'), - (82, 1114, 'not_attending', '2021-11-13 21:55:21', '2025-12-17 19:47:36', 'kdK0eo5m', '4637896'), - (82, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdK0eo5m', '4642994'), - (82, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'kdK0eo5m', '4642995'), - (82, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdK0eo5m', '4642996'), - (82, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdK0eo5m', '4642997'), - (82, 1126, 'not_attending', '2021-12-11 17:54:30', '2025-12-17 19:47:38', 'kdK0eo5m', '4645687'), - (82, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdK0eo5m', '4645698'), - (82, 1128, 'not_attending', '2021-11-20 21:53:55', '2025-12-17 19:47:37', 'kdK0eo5m', '4645704'), - (82, 1129, 'not_attending', '2021-11-28 00:22:53', '2025-12-17 19:47:37', 'kdK0eo5m', '4645705'), - (82, 1130, 'not_attending', '2021-12-04 22:04:23', '2025-12-17 19:47:37', 'kdK0eo5m', '4658824'), - (82, 1131, 'attending', '2021-12-19 00:42:16', '2025-12-17 19:47:31', 'kdK0eo5m', '4658825'), - (82, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdK0eo5m', '4668385'), - (82, 1146, 'maybe', '2021-12-08 06:32:47', '2025-12-17 19:47:38', 'kdK0eo5m', '4692841'), - (82, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdK0eo5m', '4694407'), - (82, 1151, 'maybe', '2022-01-06 00:49:23', '2025-12-17 19:47:31', 'kdK0eo5m', '4708704'), - (82, 1173, 'attending', '2022-01-09 00:23:32', '2025-12-17 19:47:31', 'kdK0eo5m', '4736495'), - (82, 1174, 'attending', '2022-01-15 22:13:46', '2025-12-17 19:47:31', 'kdK0eo5m', '4736496'), - (82, 1175, 'attending', '2022-01-22 22:00:33', '2025-12-17 19:47:32', 'kdK0eo5m', '4736497'), - (82, 1176, 'attending', '2022-02-05 22:44:21', '2025-12-17 19:47:32', 'kdK0eo5m', '4736498'), - (82, 1177, 'attending', '2022-02-12 22:52:46', '2025-12-17 19:47:32', 'kdK0eo5m', '4736499'), - (82, 1178, 'attending', '2022-01-29 22:36:48', '2025-12-17 19:47:32', 'kdK0eo5m', '4736500'), - (82, 1179, 'attending', '2022-02-19 22:34:36', '2025-12-17 19:47:32', 'kdK0eo5m', '4736501'), - (82, 1180, 'attending', '2022-02-26 23:55:14', '2025-12-17 19:47:33', 'kdK0eo5m', '4736502'), - (82, 1181, 'attending', '2022-03-06 00:02:02', '2025-12-17 19:47:33', 'kdK0eo5m', '4736503'), - (82, 1182, 'attending', '2022-03-12 21:50:57', '2025-12-17 19:47:33', 'kdK0eo5m', '4736504'), - (82, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdK0eo5m', '4746789'), - (82, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdK0eo5m', '4753929'), - (82, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdK0eo5m', '5038850'), - (82, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdK0eo5m', '5045826'), - (82, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdK0eo5m', '5132533'), - (82, 1272, 'attending', '2022-03-19 20:53:53', '2025-12-17 19:47:25', 'kdK0eo5m', '5186582'), - (82, 1273, 'attending', '2022-03-26 04:31:14', '2025-12-17 19:47:25', 'kdK0eo5m', '5186583'), - (82, 1274, 'attending', '2022-04-02 19:41:26', '2025-12-17 19:47:26', 'kdK0eo5m', '5186585'), - (82, 1281, 'not_attending', '2022-04-09 22:01:30', '2025-12-17 19:47:27', 'kdK0eo5m', '5190437'), - (82, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdK0eo5m', '5195095'), - (82, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdK0eo5m', '5215989'), - (82, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdK0eo5m', '5223686'), - (82, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'kdK0eo5m', '5227432'), - (82, 1346, 'not_attending', '2022-04-23 22:21:30', '2025-12-17 19:47:27', 'kdK0eo5m', '5247467'), - (82, 1362, 'attending', '2022-04-30 18:40:27', '2025-12-17 19:47:28', 'kdK0eo5m', '5260800'), - (82, 1374, 'attending', '2022-05-07 20:21:55', '2025-12-17 19:47:28', 'kdK0eo5m', '5269930'), - (82, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdK0eo5m', '5271448'), - (82, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'kdK0eo5m', '5271449'), - (82, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'kdK0eo5m', '5276469'), - (82, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdK0eo5m', '5278159'), - (82, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdK0eo5m', '5363695'), - (82, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdK0eo5m', '5365960'), - (82, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'kdK0eo5m', '5368973'), - (82, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdK0eo5m', '5378247'), - (82, 1431, 'attending', '2022-06-11 19:25:07', '2025-12-17 19:47:30', 'kdK0eo5m', '5389605'), - (82, 1442, 'not_attending', '2022-06-18 22:08:05', '2025-12-17 19:47:17', 'kdK0eo5m', '5397265'), - (82, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'kdK0eo5m', '5403967'), - (82, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdK0eo5m', '5404786'), - (82, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdK0eo5m', '5405203'), - (82, 1478, 'not_attending', '2022-06-23 17:45:38', '2025-12-17 19:47:19', 'kdK0eo5m', '5408794'), - (82, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'kdK0eo5m', '5411699'), - (82, 1482, 'not_attending', '2022-06-25 22:20:15', '2025-12-17 19:47:19', 'kdK0eo5m', '5412550'), - (82, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdK0eo5m', '5415046'), - (82, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdK0eo5m', '5422086'), - (82, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdK0eo5m', '5422406'), - (82, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdK0eo5m', '5424565'), - (82, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdK0eo5m', '5426882'), - (82, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'kdK0eo5m', '5427083'), - (82, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdK0eo5m', '5441125'), - (82, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdK0eo5m', '5441126'), - (82, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdK0eo5m', '5441128'), - (82, 1516, 'attending', '2022-08-20 19:12:34', '2025-12-17 19:47:23', 'kdK0eo5m', '5441129'), - (82, 1517, 'attending', '2022-08-06 01:33:01', '2025-12-17 19:47:23', 'kdK0eo5m', '5441130'), - (82, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdK0eo5m', '5441131'), - (82, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdK0eo5m', '5441132'), - (82, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'kdK0eo5m', '5446643'), - (82, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdK0eo5m', '5453325'), - (82, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdK0eo5m', '5454516'), - (82, 1544, 'attending', '2022-09-17 21:21:50', '2025-12-17 19:47:11', 'kdK0eo5m', '5454517'), - (82, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdK0eo5m', '5454605'), - (82, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdK0eo5m', '5455037'), - (82, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdK0eo5m', '5461278'), - (82, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdK0eo5m', '5469480'), - (82, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'kdK0eo5m', '5471073'), - (82, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdK0eo5m', '5474663'), - (82, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdK0eo5m', '5482022'), - (82, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'kdK0eo5m', '5482793'), - (82, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdK0eo5m', '5488912'), - (82, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdK0eo5m', '5492192'), - (82, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdK0eo5m', '5493139'), - (82, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdK0eo5m', '5493200'), - (82, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdK0eo5m', '5502188'), - (82, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdK0eo5m', '5505059'), - (82, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdK0eo5m', '5509055'), - (82, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdK0eo5m', '5512862'), - (82, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdK0eo5m', '5513985'), - (82, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdK0eo5m', '5519981'), - (82, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdK0eo5m', '5522550'), - (82, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdK0eo5m', '5534683'), - (82, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdK0eo5m', '5537735'), - (82, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdK0eo5m', '5540859'), - (82, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdK0eo5m', '5546619'), - (82, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'kdK0eo5m', '5555245'), - (82, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdK0eo5m', '5557747'), - (82, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdK0eo5m', '5560255'), - (82, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdK0eo5m', '5562906'), - (82, 1667, 'attending', '2022-09-24 21:44:40', '2025-12-17 19:47:11', 'kdK0eo5m', '5563221'), - (82, 1668, 'attending', '2022-10-01 20:58:15', '2025-12-17 19:47:12', 'kdK0eo5m', '5563222'), - (82, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdK0eo5m', '5600604'), - (82, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdK0eo5m', '5605544'), - (82, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'kdK0eo5m', '5606737'), - (82, 1719, 'attending', '2022-10-08 18:55:31', '2025-12-17 19:47:12', 'kdK0eo5m', '5630958'), - (82, 1720, 'attending', '2022-10-15 21:56:52', '2025-12-17 19:47:12', 'kdK0eo5m', '5630959'), - (82, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdK0eo5m', '5630960'), - (82, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdK0eo5m', '5630961'), - (82, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdK0eo5m', '5630962'), - (82, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdK0eo5m', '5630966'), - (82, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdK0eo5m', '5630967'), - (82, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdK0eo5m', '5630968'), - (82, 1727, 'attending', '2022-12-03 22:19:46', '2025-12-17 19:47:16', 'kdK0eo5m', '5630969'), - (82, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdK0eo5m', '5635406'), - (82, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdK0eo5m', '5638765'), - (82, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdK0eo5m', '5640097'), - (82, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdK0eo5m', '5640843'), - (82, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdK0eo5m', '5641521'), - (82, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdK0eo5m', '5642818'), - (82, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdK0eo5m', '5652395'), - (82, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdK0eo5m', '5670445'), - (82, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdK0eo5m', '5671637'), - (82, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdK0eo5m', '5672329'), - (82, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdK0eo5m', '5674057'), - (82, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdK0eo5m', '5674060'), - (82, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdK0eo5m', '5677461'), - (82, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdK0eo5m', '5698046'), - (82, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdK0eo5m', '5699760'), - (82, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdK0eo5m', '5741601'), - (82, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdK0eo5m', '5763458'), - (82, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdK0eo5m', '5774172'), - (82, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdK0eo5m', '5818247'), - (82, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdK0eo5m', '5819471'), - (82, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdK0eo5m', '5827739'), - (82, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdK0eo5m', '5844306'), - (82, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdK0eo5m', '5850159'), - (82, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdK0eo5m', '5858999'), - (82, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdK0eo5m', '5871984'), - (82, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdK0eo5m', '5876354'), - (82, 1864, 'attending', '2023-01-21 22:11:28', '2025-12-17 19:47:05', 'kdK0eo5m', '5879675'), - (82, 1865, 'attending', '2023-01-28 23:56:06', '2025-12-17 19:47:06', 'kdK0eo5m', '5879676'), - (82, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdK0eo5m', '5880939'), - (82, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdK0eo5m', '5880940'), - (82, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdK0eo5m', '5880942'), - (82, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdK0eo5m', '5880943'), - (82, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdK0eo5m', '5887890'), - (82, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdK0eo5m', '5888598'), - (82, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdK0eo5m', '5893260'), - (82, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdK0eo5m', '5899826'), - (82, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdK0eo5m', '5900199'), - (82, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdK0eo5m', '5900200'), - (82, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdK0eo5m', '5900202'), - (82, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdK0eo5m', '5900203'), - (82, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdK0eo5m', '5901108'), - (82, 1896, 'maybe', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdK0eo5m', '5901126'), - (82, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdK0eo5m', '5909655'), - (82, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdK0eo5m', '5910522'), - (82, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdK0eo5m', '5910526'), - (82, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdK0eo5m', '5910528'), - (82, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdK0eo5m', '5916219'), - (82, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdK0eo5m', '5936234'), - (82, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdK0eo5m', '5958351'), - (82, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdK0eo5m', '5959751'), - (82, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdK0eo5m', '5959755'), - (82, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdK0eo5m', '5960055'), - (82, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdK0eo5m', '5961684'), - (82, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdK0eo5m', '5962132'), - (82, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'kdK0eo5m', '5962133'), - (82, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdK0eo5m', '5962134'), - (82, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdK0eo5m', '5962317'), - (82, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdK0eo5m', '5962318'), - (82, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdK0eo5m', '5965933'), - (82, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdK0eo5m', '5967014'), - (82, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdK0eo5m', '5972815'), - (82, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdK0eo5m', '5974016'), - (82, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdK0eo5m', '5981515'), - (82, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdK0eo5m', '5993516'), - (82, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdK0eo5m', '5998939'), - (82, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdK0eo5m', '6028191'), - (82, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdK0eo5m', '6040066'), - (82, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdK0eo5m', '6042717'), - (82, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdK0eo5m', '6044838'), - (82, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdK0eo5m', '6044839'), - (82, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0eo5m', '6045684'), - (82, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdK0eo5m', '6050104'), - (82, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdK0eo5m', '6053195'), - (82, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdK0eo5m', '6053198'), - (82, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdK0eo5m', '6056085'), - (82, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdK0eo5m', '6056916'), - (82, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdK0eo5m', '6059290'), - (82, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdK0eo5m', '6060328'), - (82, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdK0eo5m', '6061037'), - (82, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdK0eo5m', '6061039'), - (82, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdK0eo5m', '6067245'), - (82, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdK0eo5m', '6068094'), - (82, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdK0eo5m', '6068252'), - (82, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdK0eo5m', '6068253'), - (82, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdK0eo5m', '6068254'), - (82, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdK0eo5m', '6068280'), - (82, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdK0eo5m', '6069093'), - (82, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdK0eo5m', '6072528'), - (82, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdK0eo5m', '6079840'), - (82, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdK0eo5m', '6083398'), - (82, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdK0eo5m', '6093504'), - (82, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdK0eo5m', '6097414'), - (82, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdK0eo5m', '6097442'), - (82, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdK0eo5m', '6097684'), - (82, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdK0eo5m', '6098762'), - (82, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdK0eo5m', '6101361'), - (82, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdK0eo5m', '6101362'), - (82, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'kdK0eo5m', '6103752'), - (82, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdK0eo5m', '6107314'), - (82, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdK0eo5m', '6120034'), - (82, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'kdK0eo5m', '6136733'), - (82, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdK0eo5m', '6137989'), - (82, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdK0eo5m', '6150864'), - (82, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdK0eo5m', '6155491'), - (82, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdK0eo5m', '6164417'), - (82, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdK0eo5m', '6166388'), - (82, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdK0eo5m', '6176439'), - (82, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdK0eo5m', '6182410'), - (82, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdK0eo5m', '6185812'), - (82, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdK0eo5m', '6187651'), - (82, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdK0eo5m', '6187963'), - (82, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdK0eo5m', '6187964'), - (82, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdK0eo5m', '6187966'), - (82, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdK0eo5m', '6187967'), - (82, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdK0eo5m', '6187969'), - (82, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdK0eo5m', '6334878'), - (82, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdK0eo5m', '6337236'), - (82, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdK0eo5m', '6337970'), - (82, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdK0eo5m', '6338308'), - (82, 2159, 'attending', '2023-07-22 21:40:54', '2025-12-17 19:46:53', 'kdK0eo5m', '6338355'), - (82, 2160, 'attending', '2023-07-29 21:28:25', '2025-12-17 19:46:54', 'kdK0eo5m', '6338358'), - (82, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'kdK0eo5m', '6340845'), - (82, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdK0eo5m', '6341710'), - (82, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdK0eo5m', '6342044'), - (82, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdK0eo5m', '6342298'), - (82, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdK0eo5m', '6343294'), - (82, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdK0eo5m', '6347034'), - (82, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdK0eo5m', '6347056'), - (82, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdK0eo5m', '6353830'), - (82, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdK0eo5m', '6353831'), - (82, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdK0eo5m', '6357867'), - (82, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdK0eo5m', '6358652'), - (82, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdK0eo5m', '6361709'), - (82, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdK0eo5m', '6361710'), - (82, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdK0eo5m', '6361711'), - (82, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdK0eo5m', '6361712'), - (82, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdK0eo5m', '6361713'), - (82, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdK0eo5m', '6382573'), - (82, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'kdK0eo5m', '6388604'), - (82, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdK0eo5m', '6394629'), - (82, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdK0eo5m', '6394631'), - (82, 2253, 'maybe', '2023-09-30 22:52:42', '2025-12-17 19:46:45', 'kdK0eo5m', '6401811'), - (82, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdK0eo5m', '6440863'), - (82, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdK0eo5m', '6445440'), - (82, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdK0eo5m', '6453951'), - (82, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdK0eo5m', '6461696'), - (82, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdK0eo5m', '6462129'), - (82, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdK0eo5m', '6463218'), - (82, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdK0eo5m', '6472181'), - (82, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdK0eo5m', '6482693'), - (82, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdK0eo5m', '6484200'), - (82, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdK0eo5m', '6484680'), - (82, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdK0eo5m', '6507741'), - (82, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdK0eo5m', '6514659'), - (82, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdK0eo5m', '6514660'), - (82, 2324, 'attending', '2023-12-09 23:34:55', '2025-12-17 19:46:49', 'kdK0eo5m', '6514662'), - (82, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdK0eo5m', '6519103'), - (82, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdK0eo5m', '6535681'), - (82, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdK0eo5m', '6584747'), - (82, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdK0eo5m', '6587097'), - (82, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdK0eo5m', '6609022'), - (82, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'kdK0eo5m', '6632757'), - (82, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdK0eo5m', '6644187'), - (82, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdK0eo5m', '6648951'), - (82, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdK0eo5m', '6648952'), - (82, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdK0eo5m', '6655401'), - (82, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdK0eo5m', '6661585'), - (82, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdK0eo5m', '6661588'), - (82, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdK0eo5m', '6661589'), - (82, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdK0eo5m', '6699906'), - (82, 2408, 'attending', '2024-01-27 23:01:12', '2025-12-17 19:46:40', 'kdK0eo5m', '6699907'), - (82, 2410, 'attending', '2024-02-10 21:57:56', '2025-12-17 19:46:41', 'kdK0eo5m', '6699911'), - (82, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdK0eo5m', '6699913'), - (82, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdK0eo5m', '6701109'), - (82, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdK0eo5m', '6705219'), - (82, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdK0eo5m', '6710153'), - (82, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdK0eo5m', '6711552'), - (82, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdK0eo5m', '6711553'), - (82, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdK0eo5m', '6722688'), - (82, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdK0eo5m', '6730620'), - (82, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'kdK0eo5m', '6730642'), - (82, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdK0eo5m', '6740364'), - (82, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdK0eo5m', '6743829'), - (82, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdK0eo5m', '7030380'), - (82, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'kdK0eo5m', '7033677'), - (82, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'kdK0eo5m', '7035415'), - (82, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdK0eo5m', '7044715'), - (82, 2484, 'maybe', '2024-03-01 20:30:40', '2025-12-17 19:46:43', 'kdK0eo5m', '7046836'), - (82, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdK0eo5m', '7050318'), - (82, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdK0eo5m', '7050319'), - (82, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdK0eo5m', '7050322'), - (82, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdK0eo5m', '7057804'), - (82, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'kdK0eo5m', '7059866'), - (82, 2505, 'attending', '2024-03-19 00:08:40', '2025-12-17 19:46:33', 'kdK0eo5m', '7069163'), - (82, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdK0eo5m', '7072824'), - (82, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdK0eo5m', '7074348'), - (82, 2509, 'maybe', '2024-03-28 23:08:25', '2025-12-17 19:46:33', 'kdK0eo5m', '7074349'), - (82, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdK0eo5m', '7074364'), - (82, 2534, 'attending', '2024-03-13 22:24:52', '2025-12-17 19:46:32', 'kdK0eo5m', '7076875'), - (82, 2538, 'attending', '2024-03-28 21:05:45', '2025-12-17 19:46:33', 'kdK0eo5m', '7085485'), - (82, 2539, 'attending', '2024-04-06 21:01:42', '2025-12-17 19:46:33', 'kdK0eo5m', '7085486'), - (82, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdK0eo5m', '7089267'), - (82, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdK0eo5m', '7098747'), - (82, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdK0eo5m', '7113468'), - (82, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdK0eo5m', '7114856'), - (82, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'kdK0eo5m', '7114951'), - (82, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdK0eo5m', '7114955'), - (82, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdK0eo5m', '7114956'), - (82, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdK0eo5m', '7114957'), - (82, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'kdK0eo5m', '7153615'), - (82, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdK0eo5m', '7159484'), - (82, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdK0eo5m', '7178446'), - (82, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdK0eo5m', '7220467'), - (82, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdK0eo5m', '7240354'), - (82, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdK0eo5m', '7251633'), - (82, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'kdK0eo5m', '7263048'), - (82, 2626, 'attending', '2024-05-18 21:59:51', '2025-12-17 19:46:35', 'kdK0eo5m', '7264723'), - (82, 2627, 'attending', '2024-05-25 22:21:38', '2025-12-17 19:46:35', 'kdK0eo5m', '7264724'), - (82, 2628, 'attending', '2024-06-01 21:21:57', '2025-12-17 19:46:36', 'kdK0eo5m', '7264725'), - (82, 2629, 'attending', '2024-06-08 20:51:31', '2025-12-17 19:46:28', 'kdK0eo5m', '7264726'), - (82, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'kdK0eo5m', '7302674'), - (82, 2667, 'attending', '2024-06-05 23:13:14', '2025-12-17 19:46:36', 'kdK0eo5m', '7307776'), - (82, 2678, 'attending', '2024-06-15 21:59:24', '2025-12-17 19:46:28', 'kdK0eo5m', '7319489'), - (82, 2679, 'attending', '2024-06-22 20:45:52', '2025-12-17 19:46:29', 'kdK0eo5m', '7319490'), - (82, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdK0eo5m', '7324073'), - (82, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdK0eo5m', '7324074'), - (82, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdK0eo5m', '7324075'), - (82, 2691, 'not_attending', '2024-07-19 09:54:52', '2025-12-17 19:46:30', 'kdK0eo5m', '7324076'), - (82, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdK0eo5m', '7324078'), - (82, 2694, 'not_attending', '2024-08-10 18:03:26', '2025-12-17 19:46:31', 'kdK0eo5m', '7324079'), - (82, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdK0eo5m', '7324082'), - (82, 2700, 'maybe', '2024-06-14 19:38:05', '2025-12-17 19:46:28', 'kdK0eo5m', '7324388'), - (82, 2706, 'attending', '2024-06-19 22:12:39', '2025-12-17 19:46:28', 'kdK0eo5m', '7324947'), - (82, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdK0eo5m', '7331457'), - (82, 2723, 'attending', '2024-06-21 22:08:21', '2025-12-17 19:46:29', 'kdK0eo5m', '7332389'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (82, 2724, 'attending', '2024-06-26 22:11:57', '2025-12-17 19:46:29', 'kdK0eo5m', '7332562'), - (82, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'kdK0eo5m', '7356752'), - (82, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdK0eo5m', '7363643'), - (82, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdK0eo5m', '7368606'), - (82, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdK0eo5m', '7397462'), - (82, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdK0eo5m', '7424275'), - (82, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'kdK0eo5m', '7424276'), - (82, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdK0eo5m', '7432751'), - (82, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdK0eo5m', '7432752'), - (82, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdK0eo5m', '7432753'), - (82, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdK0eo5m', '7432754'), - (82, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdK0eo5m', '7432755'), - (82, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdK0eo5m', '7432756'), - (82, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdK0eo5m', '7432758'), - (82, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdK0eo5m', '7432759'), - (82, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdK0eo5m', '7433834'), - (82, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'kdK0eo5m', '7470197'), - (82, 2865, 'attending', '2024-11-01 21:31:35', '2025-12-17 19:46:26', 'kdK0eo5m', '7471200'), - (82, 2870, 'attending', '2024-10-05 21:18:03', '2025-12-17 19:46:26', 'kdK0eo5m', '7475068'), - (82, 2886, 'maybe', '2024-11-08 21:59:18', '2025-12-17 19:46:26', 'kdK0eo5m', '7654498'), - (82, 2898, 'maybe', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdK0eo5m', '7685613'), - (82, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdK0eo5m', '7688194'), - (82, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdK0eo5m', '7688196'), - (82, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdK0eo5m', '7688289'), - (82, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdK0eo5m', '7692763'), - (82, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdK0eo5m', '7697552'), - (82, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdK0eo5m', '7699878'), - (82, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdK0eo5m', '7704043'), - (82, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdK0eo5m', '7712467'), - (82, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdK0eo5m', '7713585'), - (82, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdK0eo5m', '7713586'), - (82, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdK0eo5m', '7738518'), - (82, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'kdK0eo5m', '7750632'), - (82, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdK0eo5m', '7750636'), - (82, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdK0eo5m', '7796540'), - (82, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdK0eo5m', '7796541'), - (82, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdK0eo5m', '7796542'), - (82, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdK0eo5m', '7825913'), - (82, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdK0eo5m', '7826209'), - (82, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdK0eo5m', '7834742'), - (82, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'kdK0eo5m', '7842108'), - (82, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdK0eo5m', '7842902'), - (82, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdK0eo5m', '7842903'), - (82, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdK0eo5m', '7842904'), - (82, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdK0eo5m', '7842905'), - (82, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdK0eo5m', '7855719'), - (82, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdK0eo5m', '7860683'), - (82, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdK0eo5m', '7860684'), - (82, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdK0eo5m', '7866095'), - (82, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdK0eo5m', '7869170'), - (82, 3014, 'attending', '2025-04-05 20:55:03', '2025-12-17 19:46:20', 'kdK0eo5m', '7869185'), - (82, 3015, 'attending', '2025-04-25 22:27:12', '2025-12-17 19:46:20', 'kdK0eo5m', '7869186'), - (82, 3016, 'attending', '2025-04-19 19:31:57', '2025-12-17 19:46:20', 'kdK0eo5m', '7869187'), - (82, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdK0eo5m', '7869188'), - (82, 3018, 'attending', '2025-04-12 20:00:15', '2025-12-17 19:46:20', 'kdK0eo5m', '7869189'), - (82, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdK0eo5m', '7869201'), - (82, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdK0eo5m', '7877465'), - (82, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'kdK0eo5m', '7878570'), - (82, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdK0eo5m', '7888250'), - (82, 3088, 'attending', '2025-06-12 17:39:10', '2025-12-17 19:46:15', 'kdK0eo5m', '7904777'), - (82, 3094, 'attending', '2025-05-10 20:57:06', '2025-12-17 19:46:21', 'kdK0eo5m', '8342292'), - (82, 3095, 'attending', '2025-04-30 02:17:38', '2025-12-17 19:46:20', 'kdK0eo5m', '8342293'), - (82, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdK0eo5m', '8349164'), - (82, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdK0eo5m', '8349545'), - (82, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'kdK0eo5m', '8353584'), - (82, 3126, 'attending', '2025-05-14 18:02:01', '2025-12-17 19:46:21', 'kdK0eo5m', '8365614'), - (82, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdK0eo5m', '8368028'), - (82, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdK0eo5m', '8368029'), - (82, 3133, 'attending', '2025-05-30 15:52:07', '2025-12-17 19:46:14', 'kdK0eo5m', '8368030'), - (82, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdK0eo5m', '8388462'), - (82, 3150, 'maybe', '2025-06-21 21:57:30', '2025-12-17 19:46:15', 'kdK0eo5m', '8393174'), - (82, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdK0eo5m', '8400273'), - (82, 3154, 'attending', '2025-06-28 00:40:53', '2025-12-17 19:46:15', 'kdK0eo5m', '8400274'), - (82, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdK0eo5m', '8400275'), - (82, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'kdK0eo5m', '8400276'), - (82, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdK0eo5m', '8404977'), - (82, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdK0eo5m', '8430783'), - (82, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdK0eo5m', '8430784'), - (82, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdK0eo5m', '8430799'), - (82, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdK0eo5m', '8430800'), - (82, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdK0eo5m', '8430801'), - (82, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdK0eo5m', '8438709'), - (82, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdK0eo5m', '8457738'), - (82, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdK0eo5m', '8459566'), - (82, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdK0eo5m', '8459567'), - (82, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdK0eo5m', '8461032'), - (82, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdK0eo5m', '8477877'), - (82, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdK0eo5m', '8485688'), - (82, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdK0eo5m', '8490587'), - (82, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdK0eo5m', '8493552'), - (82, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdK0eo5m', '8493553'), - (82, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdK0eo5m', '8493554'), - (82, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdK0eo5m', '8493555'), - (82, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdK0eo5m', '8493556'), - (82, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdK0eo5m', '8493557'), - (82, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdK0eo5m', '8493558'), - (82, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdK0eo5m', '8493559'), - (82, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdK0eo5m', '8493560'), - (82, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdK0eo5m', '8493561'), - (82, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdK0eo5m', '8493572'), - (82, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdK0eo5m', '8540725'), - (82, 3302, 'attending', '2025-11-13 21:56:20', '2025-12-17 19:46:14', 'kdK0eo5m', '8550022'), - (82, 3306, 'attending', '2025-12-13 01:15:28', '2025-12-17 19:46:11', 'kdK0eo5m', '8550026'), - (82, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdK0eo5m', '8555421'), - (167, 196, 'not_attending', '2020-08-15 23:34:31', '2025-12-17 19:47:56', '1ArKKVX4', '3087265'), - (167, 197, 'attending', '2020-08-15 23:36:21', '2025-12-17 19:47:56', '1ArKKVX4', '3087266'), - (167, 198, 'not_attending', '2020-08-21 01:53:11', '2025-12-17 19:47:56', '1ArKKVX4', '3087267'), - (167, 199, 'attending', '2020-08-27 21:11:21', '2025-12-17 19:47:56', '1ArKKVX4', '3087268'), - (167, 219, 'attending', '2020-08-13 23:18:53', '2025-12-17 19:47:56', '1ArKKVX4', '3129263'), - (167, 223, 'attending', '2020-09-04 22:06:32', '2025-12-17 19:47:56', '1ArKKVX4', '3129980'), - (167, 293, 'not_attending', '2020-08-14 20:29:51', '2025-12-17 19:47:56', '1ArKKVX4', '3172832'), - (167, 294, 'not_attending', '2020-08-21 01:57:01', '2025-12-17 19:47:56', '1ArKKVX4', '3172833'), - (167, 295, 'attending', '2020-08-22 23:47:01', '2025-12-17 19:47:56', '1ArKKVX4', '3172834'), - (167, 304, 'attending', '2020-09-01 14:05:11', '2025-12-17 19:47:56', '1ArKKVX4', '3178916'), - (167, 306, 'not_attending', '2020-08-21 16:08:35', '2025-12-17 19:47:56', '1ArKKVX4', '3179777'), - (167, 308, 'attending', '2020-08-27 21:11:57', '2025-12-17 19:47:56', '1ArKKVX4', '3183341'), - (167, 311, 'not_attending', '2020-09-19 23:01:00', '2025-12-17 19:47:56', '1ArKKVX4', '3186057'), - (167, 312, 'not_attending', '2020-09-10 21:55:41', '2025-12-17 19:47:56', '1ArKKVX4', '3187795'), - (167, 315, 'maybe', '2020-09-07 14:30:51', '2025-12-17 19:47:56', '1ArKKVX4', '3189085'), - (167, 317, 'not_attending', '2020-08-27 21:10:41', '2025-12-17 19:47:56', '1ArKKVX4', '3191735'), - (167, 330, 'not_attending', '2020-09-05 14:04:53', '2025-12-17 19:47:56', '1ArKKVX4', '3197322'), - (167, 335, 'attending', '2020-09-02 13:47:45', '2025-12-17 19:47:56', '1ArKKVX4', '3200209'), - (167, 339, 'attending', '2020-09-07 14:30:41', '2025-12-17 19:47:56', '1ArKKVX4', '3204469'), - (167, 340, 'not_attending', '2020-09-18 20:52:32', '2025-12-17 19:47:56', '1ArKKVX4', '3204470'), - (167, 341, 'not_attending', '2020-09-25 14:48:20', '2025-12-17 19:47:52', '1ArKKVX4', '3204471'), - (167, 342, 'not_attending', '2020-10-02 22:12:16', '2025-12-17 19:47:52', '1ArKKVX4', '3204472'), - (167, 344, 'attending', '2020-10-05 21:23:18', '2025-12-17 19:47:53', '1ArKKVX4', '3206906'), - (167, 345, 'not_attending', '2020-09-13 03:01:42', '2025-12-17 19:47:56', '1ArKKVX4', '3207423'), - (167, 348, 'attending', '2020-09-25 04:30:56', '2025-12-17 19:47:52', '1ArKKVX4', '3209159'), - (167, 349, 'not_attending', '2020-09-13 21:36:06', '2025-12-17 19:47:56', '1ArKKVX4', '3209194'), - (167, 354, 'not_attending', '2020-09-19 23:06:32', '2025-12-17 19:47:56', '1ArKKVX4', '3212570'), - (167, 362, 'attending', '2020-09-26 21:27:09', '2025-12-17 19:47:52', '1ArKKVX4', '3214207'), - (167, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '1ArKKVX4', '3217037'), - (167, 365, 'not_attending', '2020-09-24 15:45:59', '2025-12-17 19:47:52', '1ArKKVX4', '3218510'), - (167, 375, 'not_attending', '2020-10-08 22:16:32', '2025-12-17 19:47:52', '1ArKKVX4', '3222825'), - (167, 381, 'attending', '2020-09-26 18:52:26', '2025-12-17 19:47:52', '1ArKKVX4', '3226871'), - (167, 382, 'attending', '2020-09-27 22:14:14', '2025-12-17 19:47:52', '1ArKKVX4', '3226873'), - (167, 385, 'attending', '2020-09-29 13:24:41', '2025-12-17 19:47:52', '1ArKKVX4', '3228698'), - (167, 386, 'attending', '2020-09-29 13:24:43', '2025-12-17 19:47:52', '1ArKKVX4', '3228699'), - (167, 387, 'attending', '2020-10-16 01:15:41', '2025-12-17 19:47:52', '1ArKKVX4', '3228700'), - (167, 388, 'not_attending', '2020-10-16 01:15:46', '2025-12-17 19:47:52', '1ArKKVX4', '3228701'), - (167, 390, 'attending', '2020-10-01 14:59:04', '2025-12-17 19:47:52', '1ArKKVX4', '3231510'), - (167, 414, 'attending', '2020-10-18 18:35:39', '2025-12-17 19:47:52', '1ArKKVX4', '3237277'), - (167, 416, 'attending', '2020-10-09 18:09:41', '2025-12-17 19:47:52', '1ArKKVX4', '3238073'), - (167, 417, 'not_attending', '2020-10-12 14:17:31', '2025-12-17 19:47:52', '1ArKKVX4', '3238779'), - (167, 418, 'attending', '2020-10-14 13:43:10', '2025-12-17 19:47:52', '1ArKKVX4', '3241728'), - (167, 420, 'attending', '2020-10-12 14:17:47', '2025-12-17 19:47:52', '1ArKKVX4', '3245293'), - (167, 421, 'attending', '2020-10-12 14:17:48', '2025-12-17 19:47:52', '1ArKKVX4', '3245294'), - (167, 422, 'attending', '2020-10-12 14:17:50', '2025-12-17 19:47:53', '1ArKKVX4', '3245295'), - (167, 423, 'attending', '2020-10-12 14:17:53', '2025-12-17 19:47:53', '1ArKKVX4', '3245296'), - (167, 424, 'maybe', '2020-10-18 17:22:24', '2025-12-17 19:47:52', '1ArKKVX4', '3245751'), - (167, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '1ArKKVX4', '3250232'), - (167, 428, 'not_attending', '2020-10-22 21:32:29', '2025-12-17 19:47:53', '1ArKKVX4', '3250332'), - (167, 430, 'not_attending', '2020-10-18 03:12:41', '2025-12-17 19:47:52', '1ArKKVX4', '3253094'), - (167, 431, 'not_attending', '2020-10-27 22:50:09', '2025-12-17 19:47:53', '1ArKKVX4', '3253225'), - (167, 435, 'attending', '2020-10-18 03:13:14', '2025-12-17 19:47:52', '1ArKKVX4', '3254790'), - (167, 438, 'not_attending', '2020-10-18 15:21:23', '2025-12-17 19:47:53', '1ArKKVX4', '3256163'), - (167, 439, 'not_attending', '2020-10-18 18:35:52', '2025-12-17 19:47:53', '1ArKKVX4', '3256164'), - (167, 440, 'attending', '2020-10-18 17:16:31', '2025-12-17 19:47:53', '1ArKKVX4', '3256168'), - (167, 441, 'attending', '2020-11-08 04:20:45', '2025-12-17 19:47:54', '1ArKKVX4', '3256169'), - (167, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', '1ArKKVX4', '3263578'), - (167, 444, 'maybe', '2020-10-24 13:16:53', '2025-12-17 19:47:53', '1ArKKVX4', '3263745'), - (167, 445, 'attending', '2020-11-08 04:21:23', '2025-12-17 19:47:54', '1ArKKVX4', '3266138'), - (167, 448, 'attending', '2020-10-30 23:02:50', '2025-12-17 19:47:53', '1ArKKVX4', '3271831'), - (167, 449, 'not_attending', '2020-11-08 04:21:04', '2025-12-17 19:47:53', '1ArKKVX4', '3272055'), - (167, 452, 'not_attending', '2020-11-26 22:47:07', '2025-12-17 19:47:54', '1ArKKVX4', '3272981'), - (167, 456, 'maybe', '2020-11-08 19:49:59', '2025-12-17 19:47:54', '1ArKKVX4', '3276428'), - (167, 458, 'not_attending', '2020-11-10 06:02:23', '2025-12-17 19:47:53', '1ArKKVX4', '3279233'), - (167, 459, 'not_attending', '2020-11-15 00:48:10', '2025-12-17 19:47:54', '1ArKKVX4', '3281467'), - (167, 461, 'not_attending', '2020-11-09 15:28:46', '2025-12-17 19:47:53', '1ArKKVX4', '3281469'), - (167, 462, 'attending', '2020-11-08 16:00:17', '2025-12-17 19:47:53', '1ArKKVX4', '3281470'), - (167, 466, 'not_attending', '2020-11-24 00:45:22', '2025-12-17 19:47:54', '1ArKKVX4', '3281829'), - (167, 467, 'not_attending', '2020-11-16 15:38:02', '2025-12-17 19:47:54', '1ArKKVX4', '3282756'), - (167, 468, 'not_attending', '2020-11-21 23:10:30', '2025-12-17 19:47:54', '1ArKKVX4', '3285413'), - (167, 469, 'not_attending', '2020-11-28 23:16:53', '2025-12-17 19:47:54', '1ArKKVX4', '3285414'), - (167, 475, 'maybe', '2020-11-22 15:47:08', '2025-12-17 19:47:54', '1ArKKVX4', '3286760'), - (167, 478, 'maybe', '2020-11-17 15:12:14', '2025-12-17 19:47:54', '1ArKKVX4', '3290899'), - (167, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '1ArKKVX4', '3297764'), - (167, 485, 'attending', '2020-11-26 22:46:53', '2025-12-17 19:47:54', '1ArKKVX4', '3299698'), - (167, 486, 'maybe', '2020-11-23 14:26:17', '2025-12-17 19:47:54', '1ArKKVX4', '3300281'), - (167, 488, 'not_attending', '2020-11-26 22:47:22', '2025-12-17 19:47:54', '1ArKKVX4', '3312757'), - (167, 489, 'not_attending', '2020-11-27 23:39:07', '2025-12-17 19:47:54', '1ArKKVX4', '3313022'), - (167, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '1ArKKVX4', '3313856'), - (167, 496, 'maybe', '2020-12-07 03:43:39', '2025-12-17 19:47:54', '1ArKKVX4', '3314269'), - (167, 499, 'maybe', '2020-12-08 15:54:14', '2025-12-17 19:47:55', '1ArKKVX4', '3314909'), - (167, 500, 'maybe', '2020-12-15 14:06:40', '2025-12-17 19:47:55', '1ArKKVX4', '3314964'), - (167, 501, 'maybe', '2020-12-07 15:44:54', '2025-12-17 19:47:54', '1ArKKVX4', '3317834'), - (167, 502, 'attending', '2020-12-07 03:43:33', '2025-12-17 19:47:55', '1ArKKVX4', '3323365'), - (167, 506, 'maybe', '2020-12-13 00:07:14', '2025-12-17 19:47:55', '1ArKKVX4', '3323375'), - (167, 513, 'attending', '2020-12-14 15:51:17', '2025-12-17 19:47:55', '1ArKKVX4', '3329383'), - (167, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '1ArKKVX4', '3351539'), - (167, 993, 'attending', '2021-09-24 14:50:00', '2025-12-17 19:47:34', '1ArKKVX4', '4420741'), - (167, 994, 'attending', '2021-10-01 15:42:58', '2025-12-17 19:47:34', '1ArKKVX4', '4420742'), - (167, 995, 'attending', '2021-10-01 15:42:56', '2025-12-17 19:47:34', '1ArKKVX4', '4420744'), - (167, 996, 'not_attending', '2021-10-16 16:49:48', '2025-12-17 19:47:35', '1ArKKVX4', '4420747'), - (167, 997, 'not_attending', '2021-10-22 10:44:05', '2025-12-17 19:47:35', '1ArKKVX4', '4420748'), - (167, 1066, 'attending', '2021-09-25 19:09:17', '2025-12-17 19:47:34', '1ArKKVX4', '4506039'), - (167, 1068, 'maybe', '2021-09-26 01:43:13', '2025-12-17 19:47:34', '1ArKKVX4', '4511471'), - (167, 1069, 'attending', '2021-09-24 16:34:05', '2025-12-17 19:47:34', '1ArKKVX4', '4512090'), - (167, 1070, 'maybe', '2021-10-01 00:04:20', '2025-12-17 19:47:34', '1ArKKVX4', '4512562'), - (167, 1072, 'maybe', '2021-10-01 15:42:52', '2025-12-17 19:47:34', '1ArKKVX4', '4516287'), - (167, 1074, 'attending', '2021-09-30 00:19:34', '2025-12-17 19:47:34', '1ArKKVX4', '4528953'), - (167, 1075, 'not_attending', '2021-10-09 00:20:53', '2025-12-17 19:47:34', '1ArKKVX4', '4536351'), - (167, 1077, 'maybe', '2021-10-11 19:28:27', '2025-12-17 19:47:34', '1ArKKVX4', '4540903'), - (167, 1078, 'maybe', '2021-10-05 19:39:34', '2025-12-17 19:47:34', '1ArKKVX4', '4541281'), - (167, 1082, 'maybe', '2021-10-13 16:55:49', '2025-12-17 19:47:35', '1ArKKVX4', '4566762'), - (167, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '1ArKKVX4', '4568602'), - (167, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '1ArKKVX4', '4572153'), - (167, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '1ArKKVX4', '4585962'), - (167, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '1ArKKVX4', '4596356'), - (167, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '1ArKKVX4', '4598860'), - (167, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '1ArKKVX4', '4598861'), - (167, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '1ArKKVX4', '4602797'), - (167, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '1ArKKVX4', '4637896'), - (167, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '1ArKKVX4', '4642994'), - (167, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '1ArKKVX4', '4642995'), - (167, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '1ArKKVX4', '4642996'), - (167, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '1ArKKVX4', '4642997'), - (167, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '1ArKKVX4', '4645687'), - (167, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '1ArKKVX4', '4645698'), - (167, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '1ArKKVX4', '4645704'), - (167, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '1ArKKVX4', '4645705'), - (167, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '1ArKKVX4', '4668385'), - (167, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '1ArKKVX4', '4694407'), - (167, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '1ArKKVX4', '4736497'), - (167, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '1ArKKVX4', '4736499'), - (167, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '1ArKKVX4', '4736500'), - (167, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '1ArKKVX4', '4736503'), - (167, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '1ArKKVX4', '4736504'), - (167, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '1ArKKVX4', '4746789'), - (167, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '1ArKKVX4', '4753929'), - (167, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '1ArKKVX4', '5038850'), - (167, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '1ArKKVX4', '5045826'), - (167, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '1ArKKVX4', '5132533'), - (167, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '1ArKKVX4', '5186582'), - (167, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '1ArKKVX4', '5186583'), - (167, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '1ArKKVX4', '5186585'), - (167, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '1ArKKVX4', '5190437'), - (167, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '1ArKKVX4', '5195095'), - (167, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '1ArKKVX4', '5215989'), - (167, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '1ArKKVX4', '5223686'), - (167, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '1ArKKVX4', '5247467'), - (167, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '1ArKKVX4', '5260800'), - (167, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '1ArKKVX4', '5269930'), - (167, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '1ArKKVX4', '5271448'), - (167, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '1ArKKVX4', '5271449'), - (167, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '1ArKKVX4', '5278159'), - (167, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '1ArKKVX4', '5363695'), - (167, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '1ArKKVX4', '5365960'), - (167, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '1ArKKVX4', '5378247'), - (167, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '1ArKKVX4', '5389605'), - (167, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '1ArKKVX4', '5397265'), - (167, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '1ArKKVX4', '5404786'), - (167, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '1ArKKVX4', '5405203'), - (167, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '1ArKKVX4', '5412550'), - (167, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '1ArKKVX4', '5415046'), - (167, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '1ArKKVX4', '5422086'), - (167, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '1ArKKVX4', '5422406'), - (167, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '1ArKKVX4', '5424565'), - (167, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '1ArKKVX4', '5426882'), - (167, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '1ArKKVX4', '5441125'), - (167, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '1ArKKVX4', '5441126'), - (167, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '1ArKKVX4', '5441128'), - (167, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '1ArKKVX4', '5441131'), - (167, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '1ArKKVX4', '5441132'), - (167, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '1ArKKVX4', '5453325'), - (167, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '1ArKKVX4', '5454516'), - (167, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '1ArKKVX4', '5454605'), - (167, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '1ArKKVX4', '5455037'), - (167, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '1ArKKVX4', '5461278'), - (167, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '1ArKKVX4', '5469480'), - (167, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '1ArKKVX4', '5474663'), - (167, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '1ArKKVX4', '5482022'), - (167, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '1ArKKVX4', '5488912'), - (167, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '1ArKKVX4', '5492192'), - (167, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '1ArKKVX4', '5493139'), - (167, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '1ArKKVX4', '5493200'), - (167, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '1ArKKVX4', '5502188'), - (167, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '1ArKKVX4', '5505059'), - (167, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '1ArKKVX4', '5509055'), - (167, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '1ArKKVX4', '5512862'), - (167, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '1ArKKVX4', '5513985'), - (167, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '1ArKKVX4', '5519981'), - (167, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '1ArKKVX4', '5522550'), - (167, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '1ArKKVX4', '5534683'), - (167, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '1ArKKVX4', '5537735'), - (167, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '1ArKKVX4', '5540859'), - (167, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '1ArKKVX4', '5546619'), - (167, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '1ArKKVX4', '5557747'), - (167, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '1ArKKVX4', '5560255'), - (167, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '1ArKKVX4', '5562906'), - (167, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '1ArKKVX4', '5600604'), - (167, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '1ArKKVX4', '5605544'), - (167, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '1ArKKVX4', '5630960'), - (167, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '1ArKKVX4', '5630961'), - (167, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '1ArKKVX4', '5630962'), - (167, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '1ArKKVX4', '5630966'), - (167, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '1ArKKVX4', '5630967'), - (167, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '1ArKKVX4', '5630968'), - (167, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '1ArKKVX4', '5635406'), - (167, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '1ArKKVX4', '5638765'), - (167, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '1ArKKVX4', '5640097'), - (167, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '1ArKKVX4', '5640843'), - (167, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '1ArKKVX4', '5641521'), - (167, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '1ArKKVX4', '5642818'), - (167, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '1ArKKVX4', '5652395'), - (167, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '1ArKKVX4', '5670445'), - (167, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '1ArKKVX4', '5671637'), - (167, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '1ArKKVX4', '5672329'), - (167, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '1ArKKVX4', '5674057'), - (167, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '1ArKKVX4', '5674060'), - (167, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '1ArKKVX4', '5677461'), - (167, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '1ArKKVX4', '5698046'), - (167, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '1ArKKVX4', '5699760'), - (167, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '1ArKKVX4', '5741601'), - (167, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '1ArKKVX4', '5763458'), - (167, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '1ArKKVX4', '5774172'), - (167, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '1ArKKVX4', '5818247'), - (167, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '1ArKKVX4', '5819471'), - (167, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '1ArKKVX4', '5827739'), - (167, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '1ArKKVX4', '5844306'), - (167, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '1ArKKVX4', '5850159'), - (167, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '1ArKKVX4', '5858999'), - (167, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '1ArKKVX4', '5871984'), - (167, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '1ArKKVX4', '5876354'), - (167, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '1ArKKVX4', '5880939'), - (167, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '1ArKKVX4', '5880940'), - (167, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '1ArKKVX4', '5880942'), - (167, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '1ArKKVX4', '5880943'), - (167, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '1ArKKVX4', '5887890'), - (167, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '1ArKKVX4', '5888598'), - (167, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '1ArKKVX4', '5893260'), - (167, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '1ArKKVX4', '5899826'), - (167, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '1ArKKVX4', '5900199'), - (167, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '1ArKKVX4', '5900200'), - (167, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '1ArKKVX4', '5900202'), - (167, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '1ArKKVX4', '5900203'), - (167, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '1ArKKVX4', '5901108'), - (167, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '1ArKKVX4', '5901126'), - (167, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '1ArKKVX4', '5901606'), - (167, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '1ArKKVX4', '5909655'), - (167, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '1ArKKVX4', '5910522'), - (167, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '1ArKKVX4', '5910526'), - (167, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '1ArKKVX4', '5910528'), - (167, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '1ArKKVX4', '5916219'), - (167, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '1ArKKVX4', '5936234'), - (167, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '1ArKKVX4', '5958351'), - (167, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '1ArKKVX4', '5959751'), - (167, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '1ArKKVX4', '5959755'), - (167, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '1ArKKVX4', '5960055'), - (167, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '1ArKKVX4', '5961684'), - (167, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '1ArKKVX4', '5962132'), - (167, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '1ArKKVX4', '5962133'), - (167, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '1ArKKVX4', '5962134'), - (167, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '1ArKKVX4', '5962317'), - (167, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '1ArKKVX4', '5962318'), - (167, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '1ArKKVX4', '5965933'), - (167, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '1ArKKVX4', '5967014'), - (167, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '1ArKKVX4', '5972815'), - (167, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '1ArKKVX4', '5974016'), - (167, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '1ArKKVX4', '5981515'), - (167, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '1ArKKVX4', '5993516'), - (167, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '1ArKKVX4', '5998939'), - (167, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '1ArKKVX4', '6028191'), - (167, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '1ArKKVX4', '6040066'), - (167, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '1ArKKVX4', '6042717'), - (167, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '1ArKKVX4', '6044838'), - (167, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '1ArKKVX4', '6044839'), - (167, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArKKVX4', '6045684'), - (167, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '1ArKKVX4', '6050104'), - (167, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '1ArKKVX4', '6053195'), - (167, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '1ArKKVX4', '6053198'), - (167, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '1ArKKVX4', '6056085'), - (167, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '1ArKKVX4', '6056916'), - (167, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '1ArKKVX4', '6059290'), - (167, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '1ArKKVX4', '6060328'), - (167, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '1ArKKVX4', '6061037'), - (167, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '1ArKKVX4', '6061039'), - (167, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '1ArKKVX4', '6067245'), - (167, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '1ArKKVX4', '6068094'), - (167, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '1ArKKVX4', '6068252'), - (167, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '1ArKKVX4', '6068253'), - (167, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '1ArKKVX4', '6068254'), - (167, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '1ArKKVX4', '6068280'), - (167, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '1ArKKVX4', '6069093'), - (167, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '1ArKKVX4', '6072528'), - (167, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '1ArKKVX4', '6079840'), - (167, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '1ArKKVX4', '6083398'), - (167, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '1ArKKVX4', '6093504'), - (167, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '1ArKKVX4', '6097414'), - (167, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '1ArKKVX4', '6097442'), - (167, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '1ArKKVX4', '6097684'), - (167, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '1ArKKVX4', '6098762'), - (167, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '1ArKKVX4', '6101361'), - (167, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '1ArKKVX4', '6101362'), - (167, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '1ArKKVX4', '6107314'), - (167, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '1ArKKVX4', '6120034'), - (167, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '1ArKKVX4', '6136733'), - (167, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '1ArKKVX4', '6137989'), - (167, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '1ArKKVX4', '6150864'), - (167, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '1ArKKVX4', '6155491'), - (167, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '1ArKKVX4', '6164417'), - (167, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '1ArKKVX4', '6166388'), - (167, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '1ArKKVX4', '6176439'), - (167, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '1ArKKVX4', '6182410'), - (167, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '1ArKKVX4', '6185812'), - (167, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '1ArKKVX4', '6187651'), - (167, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '1ArKKVX4', '6187963'), - (167, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '1ArKKVX4', '6187964'), - (167, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '1ArKKVX4', '6187966'), - (167, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '1ArKKVX4', '6187967'), - (167, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '1ArKKVX4', '6187969'), - (167, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '1ArKKVX4', '6334878'), - (167, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '1ArKKVX4', '6337236'), - (167, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '1ArKKVX4', '6337970'), - (167, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '1ArKKVX4', '6338308'), - (167, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '1ArKKVX4', '6341710'), - (167, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '1ArKKVX4', '6342044'), - (167, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '1ArKKVX4', '6342298'), - (167, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '1ArKKVX4', '6343294'), - (167, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '1ArKKVX4', '6347034'), - (167, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '1ArKKVX4', '6347056'), - (167, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '1ArKKVX4', '6353830'), - (167, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '1ArKKVX4', '6353831'), - (167, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '1ArKKVX4', '6357867'), - (167, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '1ArKKVX4', '6358652'), - (167, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '1ArKKVX4', '6361709'), - (167, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '1ArKKVX4', '6361710'), - (167, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '1ArKKVX4', '6361711'), - (167, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '1ArKKVX4', '6361712'), - (167, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '1ArKKVX4', '6361713'), - (167, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '1ArKKVX4', '6382573'), - (167, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '1ArKKVX4', '6388604'), - (167, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '1ArKKVX4', '6394629'), - (167, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '1ArKKVX4', '6394631'), - (167, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '1ArKKVX4', '6440863'), - (167, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '1ArKKVX4', '6445440'), - (167, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '1ArKKVX4', '6453951'), - (167, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '1ArKKVX4', '6461696'), - (167, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '1ArKKVX4', '6462129'), - (167, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '1ArKKVX4', '6463218'), - (167, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '1ArKKVX4', '6472181'), - (167, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '1ArKKVX4', '6482693'), - (167, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '1ArKKVX4', '6484200'), - (167, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '1ArKKVX4', '6484680'), - (167, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '1ArKKVX4', '6507741'), - (167, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '1ArKKVX4', '6514659'), - (167, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '1ArKKVX4', '6514660'), - (167, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '1ArKKVX4', '6519103'), - (167, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '1ArKKVX4', '6535681'), - (167, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '1ArKKVX4', '6584747'), - (167, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '1ArKKVX4', '6587097'), - (167, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '1ArKKVX4', '6609022'), - (167, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '1ArKKVX4', '6632757'), - (167, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '1ArKKVX4', '6644187'), - (167, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '1ArKKVX4', '6648951'), - (167, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '1ArKKVX4', '6648952'), - (167, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '1ArKKVX4', '6655401'), - (167, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '1ArKKVX4', '6661585'), - (167, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '1ArKKVX4', '6661588'), - (167, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '1ArKKVX4', '6661589'), - (167, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '1ArKKVX4', '6699906'), - (167, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '1ArKKVX4', '6699913'), - (167, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '1ArKKVX4', '6701109'), - (167, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '1ArKKVX4', '6705219'), - (167, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '1ArKKVX4', '6710153'), - (167, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '1ArKKVX4', '6711552'), - (167, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '1ArKKVX4', '6711553'), - (167, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '1ArKKVX4', '6722688'), - (167, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '1ArKKVX4', '6730620'), - (167, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '1ArKKVX4', '6740364'), - (167, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '1ArKKVX4', '6743829'), - (167, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '1ArKKVX4', '7030380'), - (167, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '1ArKKVX4', '7033677'), - (167, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '1ArKKVX4', '7044715'), - (167, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '1ArKKVX4', '7050318'), - (167, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '1ArKKVX4', '7050319'), - (167, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '1ArKKVX4', '7050322'), - (167, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '1ArKKVX4', '7057804'), - (167, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '1ArKKVX4', '7072824'), - (167, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '1ArKKVX4', '7074348'), - (167, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '1ArKKVX4', '7074364'), - (167, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '1ArKKVX4', '7089267'), - (167, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '1ArKKVX4', '7098747'), - (167, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '1ArKKVX4', '7113468'), - (167, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '1ArKKVX4', '7114856'), - (167, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '1ArKKVX4', '7114951'), - (167, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '1ArKKVX4', '7114955'), - (167, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '1ArKKVX4', '7114956'), - (167, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '1ArKKVX4', '7114957'), - (167, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '1ArKKVX4', '7159484'), - (167, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '1ArKKVX4', '7178446'), - (167, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '1ArKKVX4', '7220467'), - (167, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '1ArKKVX4', '7240354'), - (167, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '1ArKKVX4', '7251633'), - (167, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '1ArKKVX4', '7324073'), - (167, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '1ArKKVX4', '7324074'), - (167, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '1ArKKVX4', '7324075'), - (167, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '1ArKKVX4', '7324078'), - (167, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '1ArKKVX4', '7324082'), - (167, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '1ArKKVX4', '7331457'), - (167, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '1ArKKVX4', '7363643'), - (167, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '1ArKKVX4', '7368606'), - (167, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '1ArKKVX4', '7397462'), - (167, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '1ArKKVX4', '7424275'), - (167, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '1ArKKVX4', '7432751'), - (167, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '1ArKKVX4', '7432752'), - (167, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '1ArKKVX4', '7432753'), - (167, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '1ArKKVX4', '7432754'), - (167, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '1ArKKVX4', '7432755'), - (167, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '1ArKKVX4', '7432756'), - (167, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '1ArKKVX4', '7432758'), - (167, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '1ArKKVX4', '7432759'), - (167, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '1ArKKVX4', '7433834'), - (167, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '1ArKKVX4', '7470197'), - (167, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '1ArKKVX4', '7685613'), - (167, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '1ArKKVX4', '7688194'), - (167, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '1ArKKVX4', '7688196'), - (167, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '1ArKKVX4', '7688289'), - (167, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '1ArKKVX4', '7692763'), - (167, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '1ArKKVX4', '7697552'), - (167, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '1ArKKVX4', '7699878'), - (167, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '1ArKKVX4', '7704043'), - (167, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1ArKKVX4', '7712467'), - (167, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1ArKKVX4', '7713585'), - (167, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1ArKKVX4', '7713586'), - (167, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '1ArKKVX4', '7738518'), - (167, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1ArKKVX4', '7750636'), - (167, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1ArKKVX4', '7796540'), - (167, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1ArKKVX4', '7796541'), - (167, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1ArKKVX4', '7796542'), - (167, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1ArKKVX4', '7825913'), - (167, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1ArKKVX4', '7826209'), - (167, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1ArKKVX4', '7834742'), - (167, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1ArKKVX4', '7842108'), - (167, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1ArKKVX4', '7842902'), - (167, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1ArKKVX4', '7842903'), - (167, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1ArKKVX4', '7842904'), - (167, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1ArKKVX4', '7842905'), - (167, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1ArKKVX4', '7855719'), - (167, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1ArKKVX4', '7860683'), - (167, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1ArKKVX4', '7860684'), - (167, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1ArKKVX4', '7866095'), - (167, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1ArKKVX4', '7869170'), - (167, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArKKVX4', '7869188'), - (167, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1ArKKVX4', '7869201'), - (167, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1ArKKVX4', '7877465'), - (167, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1ArKKVX4', '7888250'), - (167, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1ArKKVX4', '7904777'), - (167, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArKKVX4', '8349164'), - (167, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArKKVX4', '8349545'), - (167, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1ArKKVX4', '8368028'), - (167, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1ArKKVX4', '8368029'), - (167, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1ArKKVX4', '8388462'), - (167, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1ArKKVX4', '8400273'), - (167, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1ArKKVX4', '8400275'), - (167, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '1ArKKVX4', '8400276'), - (167, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1ArKKVX4', '8404977'), - (167, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1ArKKVX4', '8430783'), - (167, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1ArKKVX4', '8430784'), - (167, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1ArKKVX4', '8430799'), - (167, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1ArKKVX4', '8430800'), - (167, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1ArKKVX4', '8430801'), - (167, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1ArKKVX4', '8438709'), - (167, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1ArKKVX4', '8457738'), - (167, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1ArKKVX4', '8459566'), - (167, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1ArKKVX4', '8459567'), - (167, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1ArKKVX4', '8461032'), - (167, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1ArKKVX4', '8477877'), - (167, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1ArKKVX4', '8485688'), - (167, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '1ArKKVX4', '8490587'), - (167, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '1ArKKVX4', '8493552'), - (167, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '1ArKKVX4', '8493553'), - (167, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '1ArKKVX4', '8493554'), - (167, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '1ArKKVX4', '8493555'), - (167, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '1ArKKVX4', '8493556'), - (167, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '1ArKKVX4', '8493557'), - (167, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '1ArKKVX4', '8493558'), - (167, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '1ArKKVX4', '8493559'), - (167, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '1ArKKVX4', '8493560'), - (167, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '1ArKKVX4', '8493561'), - (167, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '1ArKKVX4', '8493572'), - (167, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '1ArKKVX4', '8540725'), - (167, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '1ArKKVX4', '8555421'), - (168, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'Qd53g9VA', '3149489'), - (168, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'Qd53g9VA', '3149491'), - (168, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'Qd53g9VA', '3236450'), - (168, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'Qd53g9VA', '3236452'), - (168, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Qd53g9VA', '3539921'), - (168, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Qd53g9VA', '3539922'), - (168, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Qd53g9VA', '3539923'), - (168, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Qd53g9VA', '3806392'), - (168, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'Qd53g9VA', '3963335'), - (168, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Qd53g9VA', '3975311'), - (168, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Qd53g9VA', '3975312'), - (168, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Qd53g9VA', '3994992'), - (168, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Qd53g9VA', '4014338'), - (168, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Qd53g9VA', '4136744'), - (168, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd53g9VA', '6045684'), - (169, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'my10reWm', '5880940'), - (169, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'my10reWm', '5880942'), - (169, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'my10reWm', '5880943'), - (169, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'my10reWm', '5900199'), - (169, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'my10reWm', '5900200'), - (169, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'my10reWm', '5900202'), - (169, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'my10reWm', '5900203'), - (169, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'my10reWm', '5909655'), - (169, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'my10reWm', '5910522'), - (169, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'my10reWm', '5910526'), - (169, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'my10reWm', '5910528'), - (169, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'my10reWm', '5916219'), - (169, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'my10reWm', '5936234'), - (169, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'my10reWm', '5936691'), - (169, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'my10reWm', '5958351'), - (169, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'my10reWm', '5959751'), - (169, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'my10reWm', '5959755'), - (169, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'my10reWm', '5960055'), - (169, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'my10reWm', '5961684'), - (169, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'my10reWm', '5962132'), - (169, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'my10reWm', '5962133'), - (169, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'my10reWm', '5962134'), - (169, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'my10reWm', '5962317'), - (169, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'my10reWm', '5962318'), - (169, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'my10reWm', '5965933'), - (169, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'my10reWm', '5967014'), - (169, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'my10reWm', '5972815'), - (169, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'my10reWm', '5974016'), - (169, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'my10reWm', '5981515'), - (169, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'my10reWm', '5993516'), - (169, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'my10reWm', '5998939'), - (169, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'my10reWm', '6028191'), - (169, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'my10reWm', '6040066'), - (169, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'my10reWm', '6042717'), - (169, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'my10reWm', '6045684'), - (170, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AXonw1Em', '7834742'), - (170, 2986, 'not_attending', '2025-02-04 20:56:50', '2025-12-17 19:46:23', 'AXonw1Em', '7835405'), - (170, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AXonw1Em', '7842108'), - (170, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AXonw1Em', '7842902'), - (170, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AXonw1Em', '7842903'), - (170, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AXonw1Em', '7842904'), - (170, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AXonw1Em', '7842905'), - (170, 2999, 'attending', '2025-02-13 02:18:05', '2025-12-17 19:46:23', 'AXonw1Em', '7844784'), - (170, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AXonw1Em', '7855719'), - (170, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AXonw1Em', '7860683'), - (170, 3008, 'attending', '2025-02-24 19:23:45', '2025-12-17 19:46:24', 'AXonw1Em', '7860684'), - (170, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AXonw1Em', '7866095'), - (170, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AXonw1Em', '7869170'), - (170, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AXonw1Em', '7869188'), - (170, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AXonw1Em', '7869201'), - (170, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AXonw1Em', '7877465'), - (170, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AXonw1Em', '7878570'), - (170, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AXonw1Em', '7888250'), - (170, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AXonw1Em', '7904777'), - (170, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AXonw1Em', '8349164'), - (170, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AXonw1Em', '8349545'), - (170, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AXonw1Em', '8353584'), - (170, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AXonw1Em', '8368028'), - (170, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AXonw1Em', '8368029'), - (170, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AXonw1Em', '8388462'), - (170, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AXonw1Em', '8400273'), - (170, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AXonw1Em', '8400274'), - (170, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AXonw1Em', '8400275'), - (170, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AXonw1Em', '8400276'), - (170, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AXonw1Em', '8404977'), - (170, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AXonw1Em', '8430783'), - (170, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AXonw1Em', '8430784'), - (170, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AXonw1Em', '8430799'), - (170, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AXonw1Em', '8430800'), - (170, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AXonw1Em', '8430801'), - (170, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AXonw1Em', '8438709'), - (170, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AXonw1Em', '8457738'), - (170, 3196, 'attending', '2025-08-13 21:54:28', '2025-12-17 19:46:17', 'AXonw1Em', '8458543'), - (170, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AXonw1Em', '8459566'), - (170, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AXonw1Em', '8459567'), - (170, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AXonw1Em', '8461032'), - (170, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AXonw1Em', '8477877'), - (170, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AXonw1Em', '8485688'), - (171, 1515, 'attending', '2022-08-06 06:54:10', '2025-12-17 19:47:21', 'AQRN1X04', '5441128'), - (171, 1516, 'attending', '2022-08-20 11:37:07', '2025-12-17 19:47:23', 'AQRN1X04', '5441129'), - (171, 1517, 'attending', '2022-08-27 23:19:24', '2025-12-17 19:47:23', 'AQRN1X04', '5441130'), - (171, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AQRN1X04', '5441131'), - (171, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'AQRN1X04', '5441132'), - (171, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AQRN1X04', '5461278'), - (171, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AQRN1X04', '5469480'), - (171, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'AQRN1X04', '5471073'), - (171, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AQRN1X04', '5482022'), - (171, 1574, 'attending', '2022-08-09 11:51:05', '2025-12-17 19:47:22', 'AQRN1X04', '5482153'), - (171, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AQRN1X04', '5482793'), - (171, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AQRN1X04', '5488912'), - (171, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AQRN1X04', '5492192'), - (171, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AQRN1X04', '5493139'), - (171, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AQRN1X04', '5493200'), - (171, 1594, 'attending', '2022-08-09 23:46:44', '2025-12-17 19:47:22', 'AQRN1X04', '5495523'), - (171, 1598, 'attending', '2022-08-13 01:30:42', '2025-12-17 19:47:22', 'AQRN1X04', '5496567'), - (171, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AQRN1X04', '5502188'), - (171, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AQRN1X04', '5505059'), - (171, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AQRN1X04', '5509055'), - (171, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AQRN1X04', '5512862'), - (171, 1621, 'not_attending', '2022-08-23 08:37:50', '2025-12-17 19:47:23', 'AQRN1X04', '5513531'), - (171, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AQRN1X04', '5513985'), - (171, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'AQRN1X04', '5519981'), - (171, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AQRN1X04', '5522550'), - (171, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AQRN1X04', '5534683'), - (171, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AQRN1X04', '5537735'), - (171, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AQRN1X04', '5540859'), - (171, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AQRN1X04', '5546619'), - (171, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AQRN1X04', '5555245'), - (171, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AQRN1X04', '5557747'), - (171, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AQRN1X04', '5560255'), - (171, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AQRN1X04', '5562906'), - (171, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AQRN1X04', '5600604'), - (171, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AQRN1X04', '5605544'), - (171, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', 'AQRN1X04', '5606737'), - (171, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AQRN1X04', '5630960'), - (171, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AQRN1X04', '5630961'), - (171, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AQRN1X04', '5630962'), - (171, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AQRN1X04', '5630966'), - (171, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AQRN1X04', '5630967'), - (171, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AQRN1X04', '5630968'), - (171, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AQRN1X04', '5635406'), - (171, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AQRN1X04', '5638765'), - (171, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AQRN1X04', '5640097'), - (171, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AQRN1X04', '5640843'), - (171, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AQRN1X04', '5641521'), - (171, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AQRN1X04', '5642818'), - (171, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AQRN1X04', '5652395'), - (171, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AQRN1X04', '5670445'), - (171, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AQRN1X04', '5671637'), - (171, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AQRN1X04', '5672329'), - (171, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AQRN1X04', '5674057'), - (171, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AQRN1X04', '5674060'), - (171, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AQRN1X04', '5677461'), - (171, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AQRN1X04', '5698046'), - (171, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AQRN1X04', '5699760'), - (171, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AQRN1X04', '5741601'), - (171, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AQRN1X04', '5763458'), - (171, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AQRN1X04', '5774172'), - (171, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AQRN1X04', '5818247'), - (171, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AQRN1X04', '5819471'), - (171, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AQRN1X04', '5827739'), - (171, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AQRN1X04', '5844306'), - (171, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AQRN1X04', '5850159'), - (171, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AQRN1X04', '5858999'), - (171, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AQRN1X04', '5871984'), - (171, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AQRN1X04', '5876354'), - (171, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AQRN1X04', '5880939'), - (171, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AQRN1X04', '5887890'), - (171, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AQRN1X04', '5888598'), - (171, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AQRN1X04', '5893260'), - (171, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQRN1X04', '6045684'), - (172, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '64vqJ0WA', '5269930'), - (172, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '64vqJ0WA', '5271448'), - (172, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '64vqJ0WA', '5271449'), - (172, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '64vqJ0WA', '5276469'), - (172, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '64vqJ0WA', '5278159'), - (172, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '64vqJ0WA', '5363695'), - (172, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '64vqJ0WA', '5365960'), - (172, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '64vqJ0WA', '5368973'), - (172, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '64vqJ0WA', '5378247'), - (172, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '64vqJ0WA', '5389605'), - (172, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '64vqJ0WA', '5397265'), - (172, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '64vqJ0WA', '6045684'), - (173, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', '401ExNRd', '8529058'), - (173, 3278, 'not_attending', '2025-09-30 15:01:05', '2025-12-17 19:46:13', '401ExNRd', '8535533'), - (173, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '401ExNRd', '8540725'), - (173, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '401ExNRd', '8555421'), - (173, 3324, 'not_attending', '2025-11-18 00:10:55', '2025-12-17 19:46:14', '401ExNRd', '8556406'), - (173, 3330, 'not_attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', '401ExNRd', '8561720'), - (174, 408, 'attending', '2021-02-06 00:26:43', '2025-12-17 19:47:50', 'rdOP6W8m', '3236466'), - (174, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'rdOP6W8m', '3236467'), - (174, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'rdOP6W8m', '3314964'), - (174, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'rdOP6W8m', '3323365'), - (174, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'rdOP6W8m', '3324148'), - (174, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'rdOP6W8m', '3329383'), - (174, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'rdOP6W8m', '3351539'), - (174, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'rdOP6W8m', '3386848'), - (174, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'rdOP6W8m', '3389527'), - (174, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'rdOP6W8m', '3396499'), - (174, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'rdOP6W8m', '3403650'), - (174, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'rdOP6W8m', '3406988'), - (174, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'rdOP6W8m', '3416576'), - (174, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'rdOP6W8m', '3426074'), - (174, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'rdOP6W8m', '3430267'), - (174, 570, 'attending', '2021-02-06 01:07:19', '2025-12-17 19:47:50', 'rdOP6W8m', '3435538'), - (174, 571, 'attending', '2021-02-13 22:54:16', '2025-12-17 19:47:50', 'rdOP6W8m', '3435539'), - (174, 572, 'attending', '2021-02-06 01:07:21', '2025-12-17 19:47:50', 'rdOP6W8m', '3435540'), - (174, 589, 'not_attending', '2021-02-19 14:57:23', '2025-12-17 19:47:50', 'rdOP6W8m', '3449473'), - (174, 592, 'not_attending', '2021-02-25 18:36:27', '2025-12-17 19:47:50', 'rdOP6W8m', '3467757'), - (174, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'rdOP6W8m', '3468125'), - (174, 602, 'attending', '2021-02-13 23:33:55', '2025-12-17 19:47:50', 'rdOP6W8m', '3470303'), - (174, 603, 'attending', '2021-02-19 14:57:36', '2025-12-17 19:47:50', 'rdOP6W8m', '3470304'), - (174, 604, 'attending', '2021-02-23 02:51:18', '2025-12-17 19:47:50', 'rdOP6W8m', '3470305'), - (174, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOP6W8m', '3470991'), - (174, 607, 'not_attending', '2021-02-19 14:57:27', '2025-12-17 19:47:50', 'rdOP6W8m', '3471882'), - (174, 608, 'not_attending', '2021-02-11 01:00:11', '2025-12-17 19:47:50', 'rdOP6W8m', '3475332'), - (174, 615, 'attending', '2021-02-19 14:57:03', '2025-12-17 19:47:50', 'rdOP6W8m', '3490045'), - (174, 616, 'not_attending', '2021-02-21 20:44:05', '2025-12-17 19:47:50', 'rdOP6W8m', '3493478'), - (174, 621, 'attending', '2021-03-01 01:05:52', '2025-12-17 19:47:51', 'rdOP6W8m', '3517815'), - (174, 622, 'attending', '2021-03-01 01:05:56', '2025-12-17 19:47:51', 'rdOP6W8m', '3517816'), - (174, 623, 'attending', '2021-02-25 18:37:07', '2025-12-17 19:47:50', 'rdOP6W8m', '3523941'), - (174, 631, 'maybe', '2021-03-01 01:06:09', '2025-12-17 19:47:51', 'rdOP6W8m', '3533850'), - (174, 637, 'maybe', '2021-03-03 15:58:57', '2025-12-17 19:47:51', 'rdOP6W8m', '3536411'), - (174, 638, 'attending', '2021-03-01 19:23:55', '2025-12-17 19:47:44', 'rdOP6W8m', '3536632'), - (174, 639, 'attending', '2021-03-01 19:48:35', '2025-12-17 19:47:51', 'rdOP6W8m', '3536656'), - (174, 641, 'attending', '2021-03-03 16:02:29', '2025-12-17 19:47:44', 'rdOP6W8m', '3539916'), - (174, 642, 'attending', '2021-03-03 16:02:27', '2025-12-17 19:47:44', 'rdOP6W8m', '3539917'), - (174, 643, 'attending', '2021-03-03 16:02:25', '2025-12-17 19:47:45', 'rdOP6W8m', '3539918'), - (174, 644, 'attending', '2021-04-24 15:21:19', '2025-12-17 19:47:45', 'rdOP6W8m', '3539919'), - (174, 645, 'maybe', '2021-05-04 10:00:11', '2025-12-17 19:47:46', 'rdOP6W8m', '3539920'), - (174, 646, 'maybe', '2021-05-04 10:00:19', '2025-12-17 19:47:46', 'rdOP6W8m', '3539921'), - (174, 647, 'attending', '2021-05-22 21:02:11', '2025-12-17 19:47:46', 'rdOP6W8m', '3539922'), - (174, 648, 'attending', '2021-05-28 10:18:17', '2025-12-17 19:47:47', 'rdOP6W8m', '3539923'), - (174, 649, 'not_attending', '2021-03-20 22:28:09', '2025-12-17 19:47:51', 'rdOP6W8m', '3539927'), - (174, 650, 'attending', '2021-03-27 20:44:08', '2025-12-17 19:47:44', 'rdOP6W8m', '3539928'), - (174, 664, 'maybe', '2021-09-11 20:46:40', '2025-12-17 19:47:43', 'rdOP6W8m', '3547142'), - (174, 665, 'not_attending', '2021-09-04 20:29:35', '2025-12-17 19:47:43', 'rdOP6W8m', '3547143'), - (174, 667, 'attending', '2021-08-28 16:19:56', '2025-12-17 19:47:42', 'rdOP6W8m', '3547145'), - (174, 703, 'not_attending', '2021-04-12 16:08:46', '2025-12-17 19:47:44', 'rdOP6W8m', '3578388'), - (174, 706, 'attending', '2021-03-19 17:56:55', '2025-12-17 19:47:45', 'rdOP6W8m', '3582734'), - (174, 707, 'attending', '2021-04-24 15:21:22', '2025-12-17 19:47:46', 'rdOP6W8m', '3583262'), - (174, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOP6W8m', '3619523'), - (174, 724, 'attending', '2021-05-09 21:06:34', '2025-12-17 19:47:46', 'rdOP6W8m', '3661369'), - (174, 725, 'attending', '2021-04-13 11:17:50', '2025-12-17 19:47:47', 'rdOP6W8m', '3661372'), - (174, 727, 'attending', '2021-05-24 01:25:57', '2025-12-17 19:47:38', 'rdOP6W8m', '3661377'), - (174, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'rdOP6W8m', '3674262'), - (174, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'rdOP6W8m', '3677402'), - (174, 761, 'maybe', '2021-05-04 10:00:01', '2025-12-17 19:47:46', 'rdOP6W8m', '3716041'), - (174, 767, 'maybe', '2021-04-18 23:54:20', '2025-12-17 19:47:46', 'rdOP6W8m', '3722476'), - (174, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOP6W8m', '3730212'), - (174, 777, 'not_attending', '2021-05-01 17:16:32', '2025-12-17 19:47:46', 'rdOP6W8m', '3746248'), - (174, 789, 'attending', '2021-05-28 10:18:19', '2025-12-17 19:47:47', 'rdOP6W8m', '3785818'), - (174, 792, 'maybe', '2021-05-09 14:06:22', '2025-12-17 19:47:46', 'rdOP6W8m', '3793156'), - (174, 805, 'attending', '2021-05-24 01:25:55', '2025-12-17 19:47:47', 'rdOP6W8m', '3804777'), - (174, 823, 'attending', '2021-06-02 01:04:36', '2025-12-17 19:47:48', 'rdOP6W8m', '3974109'), - (174, 827, 'attending', '2021-06-05 21:47:37', '2025-12-17 19:47:47', 'rdOP6W8m', '3975311'), - (174, 828, 'not_attending', '2021-06-12 22:29:46', '2025-12-17 19:47:47', 'rdOP6W8m', '3975312'), - (174, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOP6W8m', '3994992'), - (174, 844, 'maybe', '2021-06-10 15:09:55', '2025-12-17 19:47:38', 'rdOP6W8m', '4014338'), - (174, 846, 'attending', '2021-06-10 23:19:39', '2025-12-17 19:47:39', 'rdOP6W8m', '4015718'), - (174, 867, 'not_attending', '2021-06-16 11:44:49', '2025-12-17 19:47:38', 'rdOP6W8m', '4021848'), - (174, 868, 'maybe', '2021-06-16 11:44:19', '2025-12-17 19:47:48', 'rdOP6W8m', '4022012'), - (174, 869, 'not_attending', '2021-06-30 23:32:22', '2025-12-17 19:47:38', 'rdOP6W8m', '4136744'), - (174, 870, 'attending', '2021-07-03 22:46:27', '2025-12-17 19:47:39', 'rdOP6W8m', '4136937'), - (174, 871, 'maybe', '2021-07-07 16:44:48', '2025-12-17 19:47:39', 'rdOP6W8m', '4136938'), - (174, 872, 'maybe', '2021-06-22 18:06:04', '2025-12-17 19:47:40', 'rdOP6W8m', '4136947'), - (174, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOP6W8m', '4210314'), - (174, 887, 'maybe', '2021-07-15 13:32:47', '2025-12-17 19:47:39', 'rdOP6W8m', '4225444'), - (174, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdOP6W8m', '4239259'), - (174, 900, 'not_attending', '2021-07-25 12:07:29', '2025-12-17 19:47:40', 'rdOP6W8m', '4240316'), - (174, 901, 'attending', '2021-07-31 14:50:01', '2025-12-17 19:47:40', 'rdOP6W8m', '4240317'), - (174, 902, 'attending', '2021-08-07 19:20:56', '2025-12-17 19:47:41', 'rdOP6W8m', '4240318'), - (174, 903, 'maybe', '2021-08-14 17:59:20', '2025-12-17 19:47:42', 'rdOP6W8m', '4240320'), - (174, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdOP6W8m', '4250163'), - (174, 919, 'attending', '2021-07-15 13:32:12', '2025-12-17 19:47:39', 'rdOP6W8m', '4275957'), - (174, 920, 'attending', '2021-07-15 13:33:07', '2025-12-17 19:47:40', 'rdOP6W8m', '4277819'), - (174, 926, 'attending', '2021-08-18 22:55:59', '2025-12-17 19:47:42', 'rdOP6W8m', '4297211'), - (174, 930, 'maybe', '2021-07-26 16:43:14', '2025-12-17 19:47:41', 'rdOP6W8m', '4300787'), - (174, 933, 'not_attending', '2021-07-25 12:07:46', '2025-12-17 19:47:40', 'rdOP6W8m', '4301723'), - (174, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'rdOP6W8m', '4302093'), - (174, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOP6W8m', '4304151'), - (174, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'rdOP6W8m', '4345519'), - (174, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOP6W8m', '4356801'), - (174, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'rdOP6W8m', '4358025'), - (174, 973, 'attending', '2021-08-21 22:47:02', '2025-12-17 19:47:42', 'rdOP6W8m', '4366186'), - (174, 974, 'not_attending', '2021-08-28 16:20:01', '2025-12-17 19:47:43', 'rdOP6W8m', '4366187'), - (174, 976, 'maybe', '2021-08-20 15:35:41', '2025-12-17 19:47:42', 'rdOP6W8m', '4373933'), - (174, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'rdOP6W8m', '4402823'), - (174, 990, 'not_attending', '2021-09-04 20:29:24', '2025-12-17 19:47:43', 'rdOP6W8m', '4420735'), - (174, 991, 'maybe', '2021-09-11 20:46:48', '2025-12-17 19:47:43', 'rdOP6W8m', '4420738'), - (174, 992, 'attending', '2021-09-02 13:54:18', '2025-12-17 19:47:33', 'rdOP6W8m', '4420739'), - (174, 993, 'attending', '2021-09-02 13:54:20', '2025-12-17 19:47:34', 'rdOP6W8m', '4420741'), - (174, 994, 'not_attending', '2021-09-26 02:23:09', '2025-12-17 19:47:34', 'rdOP6W8m', '4420742'), - (174, 995, 'attending', '2021-10-09 15:14:22', '2025-12-17 19:47:34', 'rdOP6W8m', '4420744'), - (174, 996, 'attending', '2021-09-18 02:23:23', '2025-12-17 19:47:35', 'rdOP6W8m', '4420747'), - (174, 997, 'attending', '2021-09-18 02:23:26', '2025-12-17 19:47:35', 'rdOP6W8m', '4420748'), - (174, 998, 'attending', '2021-09-18 02:23:28', '2025-12-17 19:47:36', 'rdOP6W8m', '4420749'), - (174, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'rdOP6W8m', '4461883'), - (174, 1032, 'maybe', '2021-09-16 14:33:14', '2025-12-17 19:47:34', 'rdOP6W8m', '4473825'), - (174, 1033, 'attending', '2021-09-18 02:21:42', '2025-12-17 19:47:43', 'rdOP6W8m', '4486006'), - (174, 1038, 'attending', '2021-09-24 01:34:49', '2025-12-17 19:47:34', 'rdOP6W8m', '4496603'), - (174, 1039, 'not_attending', '2021-09-26 02:23:06', '2025-12-17 19:47:34', 'rdOP6W8m', '4496604'), - (174, 1040, 'maybe', '2021-12-06 02:46:13', '2025-12-17 19:47:38', 'rdOP6W8m', '4496605'), - (174, 1042, 'maybe', '2021-11-15 21:56:31', '2025-12-17 19:47:37', 'rdOP6W8m', '4496607'), - (174, 1044, 'not_attending', '2021-11-07 16:20:40', '2025-12-17 19:47:36', 'rdOP6W8m', '4496609'), - (174, 1048, 'maybe', '2021-11-12 23:58:49', '2025-12-17 19:47:36', 'rdOP6W8m', '4496613'), - (174, 1050, 'attending', '2022-01-29 20:48:50', '2025-12-17 19:47:32', 'rdOP6W8m', '4496615'), - (174, 1053, 'attending', '2022-02-13 21:41:51', '2025-12-17 19:47:32', 'rdOP6W8m', '4496618'), - (174, 1054, 'not_attending', '2022-03-13 04:41:25', '2025-12-17 19:47:25', 'rdOP6W8m', '4496619'), - (174, 1055, 'attending', '2021-12-18 22:59:20', '2025-12-17 19:47:31', 'rdOP6W8m', '4496621'), - (174, 1057, 'maybe', '2021-11-15 21:56:27', '2025-12-17 19:47:37', 'rdOP6W8m', '4496624'), - (174, 1058, 'attending', '2022-02-13 21:41:55', '2025-12-17 19:47:33', 'rdOP6W8m', '4496625'), - (174, 1059, 'maybe', '2022-03-12 16:22:17', '2025-12-17 19:47:33', 'rdOP6W8m', '4496626'), - (174, 1060, 'not_attending', '2022-03-13 04:41:31', '2025-12-17 19:47:25', 'rdOP6W8m', '4496627'), - (174, 1061, 'attending', '2022-02-10 16:04:05', '2025-12-17 19:47:32', 'rdOP6W8m', '4496628'), - (174, 1062, 'attending', '2022-02-20 15:36:10', '2025-12-17 19:47:33', 'rdOP6W8m', '4496629'), - (174, 1065, 'not_attending', '2021-09-21 15:45:23', '2025-12-17 19:47:34', 'rdOP6W8m', '4505800'), - (174, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'rdOP6W8m', '4508342'), - (174, 1071, 'attending', '2021-09-27 01:51:52', '2025-12-17 19:47:34', 'rdOP6W8m', '4516078'), - (174, 1073, 'not_attending', '2021-09-29 11:33:45', '2025-12-17 19:47:34', 'rdOP6W8m', '4518993'), - (174, 1076, 'maybe', '2021-10-07 00:22:46', '2025-12-17 19:47:34', 'rdOP6W8m', '4539147'), - (174, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'rdOP6W8m', '4568602'), - (174, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'rdOP6W8m', '4572153'), - (174, 1088, 'attending', '2021-10-20 22:59:07', '2025-12-17 19:47:35', 'rdOP6W8m', '4574382'), - (174, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'rdOP6W8m', '4585962'), - (174, 1094, 'attending', '2021-10-28 00:12:13', '2025-12-17 19:47:36', 'rdOP6W8m', '4587337'), - (174, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'rdOP6W8m', '4596356'), - (174, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'rdOP6W8m', '4598860'), - (174, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'rdOP6W8m', '4598861'), - (174, 1099, 'attending', '2021-10-31 17:19:28', '2025-12-17 19:47:36', 'rdOP6W8m', '4602797'), - (174, 1101, 'attending', '2021-11-01 22:25:15', '2025-12-17 19:47:36', 'rdOP6W8m', '4607339'), - (174, 1103, 'maybe', '2021-11-12 23:58:27', '2025-12-17 19:47:36', 'rdOP6W8m', '4616350'), - (174, 1104, 'maybe', '2021-11-12 23:58:37', '2025-12-17 19:47:36', 'rdOP6W8m', '4618310'), - (174, 1109, 'not_attending', '2021-11-20 22:43:33', '2025-12-17 19:47:37', 'rdOP6W8m', '4635221'), - (174, 1110, 'not_attending', '2021-11-20 22:43:36', '2025-12-17 19:47:37', 'rdOP6W8m', '4635224'), - (174, 1113, 'not_attending', '2021-11-27 21:53:21', '2025-12-17 19:47:37', 'rdOP6W8m', '4635421'), - (174, 1114, 'maybe', '2021-11-12 23:57:36', '2025-12-17 19:47:36', 'rdOP6W8m', '4637896'), - (174, 1115, 'not_attending', '2021-11-17 00:48:20', '2025-12-17 19:47:37', 'rdOP6W8m', '4638673'), - (174, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'rdOP6W8m', '4642994'), - (174, 1117, 'attending', '2021-12-09 00:16:44', '2025-12-17 19:47:37', 'rdOP6W8m', '4642995'), - (174, 1118, 'maybe', '2021-12-15 23:31:59', '2025-12-17 19:47:38', 'rdOP6W8m', '4642996'), - (174, 1119, 'maybe', '2021-12-19 19:44:06', '2025-12-17 19:47:31', 'rdOP6W8m', '4642997'), - (174, 1126, 'attending', '2021-11-27 21:53:46', '2025-12-17 19:47:38', 'rdOP6W8m', '4645687'), - (174, 1127, 'maybe', '2021-12-02 17:30:46', '2025-12-17 19:47:38', 'rdOP6W8m', '4645698'), - (174, 1128, 'attending', '2021-11-15 13:13:32', '2025-12-17 19:47:37', 'rdOP6W8m', '4645704'), - (174, 1129, 'not_attending', '2021-12-02 17:29:38', '2025-12-17 19:47:37', 'rdOP6W8m', '4645705'), - (174, 1130, 'attending', '2021-11-26 18:17:41', '2025-12-17 19:47:37', 'rdOP6W8m', '4658824'), - (174, 1131, 'attending', '2021-11-27 21:53:49', '2025-12-17 19:47:31', 'rdOP6W8m', '4658825'), - (174, 1134, 'maybe', '2021-11-26 18:11:02', '2025-12-17 19:47:37', 'rdOP6W8m', '4668385'), - (174, 1135, 'not_attending', '2021-11-26 18:16:50', '2025-12-17 19:47:37', 'rdOP6W8m', '4670469'), - (174, 1142, 'maybe', '2021-12-02 17:30:15', '2025-12-17 19:47:37', 'rdOP6W8m', '4681923'), - (174, 1145, 'maybe', '2021-12-07 03:01:24', '2025-12-17 19:47:38', 'rdOP6W8m', '4691157'), - (174, 1146, 'maybe', '2021-12-07 03:01:28', '2025-12-17 19:47:38', 'rdOP6W8m', '4692841'), - (174, 1148, 'maybe', '2021-12-17 23:49:46', '2025-12-17 19:47:31', 'rdOP6W8m', '4692843'), - (174, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'rdOP6W8m', '4694407'), - (174, 1150, 'attending', '2021-12-13 00:53:16', '2025-12-17 19:47:38', 'rdOP6W8m', '4706262'), - (174, 1151, 'maybe', '2021-12-27 16:06:54', '2025-12-17 19:47:31', 'rdOP6W8m', '4708704'), - (174, 1154, 'maybe', '2022-01-26 23:43:58', '2025-12-17 19:47:32', 'rdOP6W8m', '4708708'), - (174, 1173, 'attending', '2022-01-08 16:49:50', '2025-12-17 19:47:31', 'rdOP6W8m', '4736495'), - (174, 1174, 'attending', '2022-01-08 16:50:05', '2025-12-17 19:47:31', 'rdOP6W8m', '4736496'), - (174, 1175, 'attending', '2022-01-08 16:50:07', '2025-12-17 19:47:32', 'rdOP6W8m', '4736497'), - (174, 1176, 'attending', '2022-02-05 04:10:11', '2025-12-17 19:47:32', 'rdOP6W8m', '4736498'), - (174, 1177, 'attending', '2022-02-10 16:04:08', '2025-12-17 19:47:32', 'rdOP6W8m', '4736499'), - (174, 1178, 'attending', '2022-01-08 16:50:08', '2025-12-17 19:47:32', 'rdOP6W8m', '4736500'), - (174, 1179, 'attending', '2022-02-13 21:41:53', '2025-12-17 19:47:32', 'rdOP6W8m', '4736501'), - (174, 1180, 'attending', '2022-02-13 21:41:56', '2025-12-17 19:47:33', 'rdOP6W8m', '4736502'), - (174, 1181, 'attending', '2022-02-20 15:36:09', '2025-12-17 19:47:33', 'rdOP6W8m', '4736503'), - (174, 1182, 'attending', '2022-03-08 19:03:16', '2025-12-17 19:47:33', 'rdOP6W8m', '4736504'), - (174, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'rdOP6W8m', '4746789'), - (174, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'rdOP6W8m', '4753929'), - (174, 1189, 'maybe', '2022-01-16 18:03:17', '2025-12-17 19:47:31', 'rdOP6W8m', '4753938'), - (174, 1207, 'not_attending', '2022-05-06 02:32:49', '2025-12-17 19:47:28', 'rdOP6W8m', '4773579'), - (174, 1219, 'maybe', '2022-01-29 20:49:27', '2025-12-17 19:47:32', 'rdOP6W8m', '4788466'), - (174, 1222, 'maybe', '2022-02-16 17:45:56', '2025-12-17 19:47:32', 'rdOP6W8m', '5015628'), - (174, 1225, 'not_attending', '2022-02-04 22:51:44', '2025-12-17 19:47:32', 'rdOP6W8m', '5019063'), - (174, 1228, 'attending', '2022-02-11 23:06:19', '2025-12-17 19:47:32', 'rdOP6W8m', '5028238'), - (174, 1232, 'not_attending', '2022-02-10 15:57:58', '2025-12-17 19:47:32', 'rdOP6W8m', '5038850'), - (174, 1233, 'maybe', '2022-02-10 16:03:45', '2025-12-17 19:47:32', 'rdOP6W8m', '5038910'), - (174, 1234, 'maybe', '2022-02-13 22:05:26', '2025-12-17 19:47:32', 'rdOP6W8m', '5042197'), - (174, 1236, 'attending', '2022-02-16 03:12:09', '2025-12-17 19:47:32', 'rdOP6W8m', '5045826'), - (174, 1238, 'maybe', '2022-02-20 15:35:25', '2025-12-17 19:47:32', 'rdOP6W8m', '5052236'), - (174, 1239, 'attending', '2022-03-02 18:00:47', '2025-12-17 19:47:33', 'rdOP6W8m', '5052238'), - (174, 1240, 'maybe', '2022-03-09 21:06:47', '2025-12-17 19:47:33', 'rdOP6W8m', '5052239'), - (174, 1241, 'maybe', '2022-03-22 01:07:27', '2025-12-17 19:47:25', 'rdOP6W8m', '5052240'), - (174, 1242, 'attending', '2022-03-30 22:36:07', '2025-12-17 19:47:25', 'rdOP6W8m', '5052241'), - (174, 1243, 'not_attending', '2022-03-06 20:09:26', '2025-12-17 19:47:33', 'rdOP6W8m', '5058336'), - (174, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'rdOP6W8m', '5132533'), - (174, 1260, 'not_attending', '2022-03-02 18:00:42', '2025-12-17 19:47:33', 'rdOP6W8m', '5142082'), - (174, 1262, 'maybe', '2022-03-09 21:12:42', '2025-12-17 19:47:33', 'rdOP6W8m', '5157773'), - (174, 1264, 'not_attending', '2022-03-13 04:41:53', '2025-12-17 19:47:25', 'rdOP6W8m', '5160281'), - (174, 1266, 'not_attending', '2022-03-13 04:41:35', '2025-12-17 19:47:33', 'rdOP6W8m', '5166407'), - (174, 1267, 'not_attending', '2022-03-13 04:41:47', '2025-12-17 19:47:25', 'rdOP6W8m', '5169578'), - (174, 1268, 'not_attending', '2022-03-13 04:41:39', '2025-12-17 19:47:33', 'rdOP6W8m', '5176296'), - (174, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'rdOP6W8m', '5186582'), - (174, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'rdOP6W8m', '5186583'), - (174, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'rdOP6W8m', '5186585'), - (174, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'rdOP6W8m', '5190437'), - (174, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'rdOP6W8m', '5195095'), - (174, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'rdOP6W8m', '5215989'), - (174, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'rdOP6W8m', '5223686'), - (174, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'rdOP6W8m', '5227432'), - (174, 1311, 'not_attending', '2022-04-08 02:44:27', '2025-12-17 19:47:27', 'rdOP6W8m', '5231430'), - (174, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'rdOP6W8m', '5231461'), - (174, 1343, 'not_attending', '2022-05-06 02:32:33', '2025-12-17 19:47:28', 'rdOP6W8m', '5247200'), - (174, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'rdOP6W8m', '5247467'), - (174, 1354, 'not_attending', '2022-04-21 18:07:01', '2025-12-17 19:47:27', 'rdOP6W8m', '5252569'), - (174, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'rdOP6W8m', '5260800'), - (174, 1369, 'not_attending', '2022-05-06 02:33:01', '2025-12-17 19:47:28', 'rdOP6W8m', '5262809'), - (174, 1374, 'not_attending', '2022-05-06 02:32:46', '2025-12-17 19:47:28', 'rdOP6W8m', '5269930'), - (174, 1376, 'not_attending', '2022-05-06 02:33:12', '2025-12-17 19:47:28', 'rdOP6W8m', '5271446'), - (174, 1377, 'not_attending', '2022-05-06 02:33:16', '2025-12-17 19:47:28', 'rdOP6W8m', '5271447'), - (174, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'rdOP6W8m', '5271448'), - (174, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'rdOP6W8m', '5271449'), - (174, 1380, 'not_attending', '2022-05-27 01:40:26', '2025-12-17 19:47:30', 'rdOP6W8m', '5271450'), - (174, 1381, 'not_attending', '2022-05-06 02:32:36', '2025-12-17 19:47:28', 'rdOP6W8m', '5271453'), - (174, 1382, 'not_attending', '2022-05-06 02:32:57', '2025-12-17 19:47:28', 'rdOP6W8m', '5276350'), - (174, 1383, 'not_attending', '2022-05-06 02:33:20', '2025-12-17 19:47:28', 'rdOP6W8m', '5276469'), - (174, 1385, 'not_attending', '2022-05-06 02:33:09', '2025-12-17 19:47:28', 'rdOP6W8m', '5277822'), - (174, 1386, 'not_attending', '2022-05-06 02:32:30', '2025-12-17 19:47:28', 'rdOP6W8m', '5278159'), - (174, 1387, 'not_attending', '2022-05-06 02:33:05', '2025-12-17 19:47:28', 'rdOP6W8m', '5278173'), - (174, 1388, 'not_attending', '2022-05-06 02:32:26', '2025-12-17 19:47:28', 'rdOP6W8m', '5278201'), - (174, 1389, 'not_attending', '2022-05-06 02:32:53', '2025-12-17 19:47:28', 'rdOP6W8m', '5278202'), - (174, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'rdOP6W8m', '5363695'), - (174, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'rdOP6W8m', '5365960'), - (174, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'rdOP6W8m', '5368973'), - (174, 1416, 'not_attending', '2022-05-27 01:40:30', '2025-12-17 19:47:30', 'rdOP6W8m', '5369628'), - (174, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'rdOP6W8m', '5378247'), - (174, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'rdOP6W8m', '5389605'), - (174, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'rdOP6W8m', '5397265'), - (174, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'rdOP6W8m', '5403967'), - (174, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'rdOP6W8m', '5404786'), - (174, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'rdOP6W8m', '5405203'), - (174, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'rdOP6W8m', '5411699'), - (174, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'rdOP6W8m', '5412550'), - (174, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'rdOP6W8m', '5415046'), - (174, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'rdOP6W8m', '5422086'), - (174, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'rdOP6W8m', '5422406'), - (174, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'rdOP6W8m', '5424565'), - (174, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'rdOP6W8m', '5426882'), - (174, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'rdOP6W8m', '5427083'), - (174, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'rdOP6W8m', '5441125'), - (174, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'rdOP6W8m', '5441126'), - (174, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'rdOP6W8m', '5441128'), - (174, 1517, 'attending', '2022-08-22 13:37:12', '2025-12-17 19:47:23', 'rdOP6W8m', '5441130'), - (174, 1518, 'attending', '2022-08-31 22:34:35', '2025-12-17 19:47:24', 'rdOP6W8m', '5441131'), - (174, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'rdOP6W8m', '5441132'), - (174, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'rdOP6W8m', '5446643'), - (174, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'rdOP6W8m', '5453325'), - (174, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'rdOP6W8m', '5454516'), - (174, 1544, 'not_attending', '2022-09-11 18:20:44', '2025-12-17 19:47:11', 'rdOP6W8m', '5454517'), - (174, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'rdOP6W8m', '5454605'), - (174, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'rdOP6W8m', '5455037'), - (174, 1559, 'maybe', '2022-09-28 21:38:40', '2025-12-17 19:47:11', 'rdOP6W8m', '5458731'), - (174, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'rdOP6W8m', '5461278'), - (174, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'rdOP6W8m', '5469480'), - (174, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'rdOP6W8m', '5471073'), - (174, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'rdOP6W8m', '5474663'), - (174, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'rdOP6W8m', '5482022'), - (174, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'rdOP6W8m', '5482793'), - (174, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'rdOP6W8m', '5488912'), - (174, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'rdOP6W8m', '5492192'), - (174, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'rdOP6W8m', '5493139'), - (174, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'rdOP6W8m', '5493200'), - (174, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'rdOP6W8m', '5502188'), - (174, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'rdOP6W8m', '5505059'), - (174, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'rdOP6W8m', '5509055'), - (174, 1616, 'attending', '2022-08-22 13:40:53', '2025-12-17 19:47:23', 'rdOP6W8m', '5509478'), - (174, 1618, 'maybe', '2022-08-22 13:37:08', '2025-12-17 19:47:23', 'rdOP6W8m', '5512005'), - (174, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'rdOP6W8m', '5512862'), - (174, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'rdOP6W8m', '5513985'), - (174, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'rdOP6W8m', '5519981'), - (174, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'rdOP6W8m', '5522550'), - (174, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'rdOP6W8m', '5534683'), - (174, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'rdOP6W8m', '5537735'), - (174, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'rdOP6W8m', '5540859'), - (174, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'rdOP6W8m', '5546619'), - (174, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'rdOP6W8m', '5555245'), - (174, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'rdOP6W8m', '5557747'), - (174, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'rdOP6W8m', '5560255'), - (174, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'rdOP6W8m', '5562906'), - (174, 1668, 'maybe', '2022-10-01 13:40:26', '2025-12-17 19:47:12', 'rdOP6W8m', '5563222'), - (174, 1673, 'maybe', '2022-09-29 22:05:35', '2025-12-17 19:47:11', 'rdOP6W8m', '5592454'), - (174, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'rdOP6W8m', '5600604'), - (174, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'rdOP6W8m', '5605544'), - (174, 1699, 'maybe', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'rdOP6W8m', '5606737'), - (174, 1703, 'maybe', '2022-10-05 20:51:06', '2025-12-17 19:47:12', 'rdOP6W8m', '5609176'), - (174, 1708, 'maybe', '2022-10-05 20:51:35', '2025-12-17 19:47:12', 'rdOP6W8m', '5617648'), - (174, 1711, 'maybe', '2022-10-05 20:52:58', '2025-12-17 19:47:12', 'rdOP6W8m', '5621883'), - (174, 1717, 'attending', '2022-10-20 21:59:39', '2025-12-17 19:47:13', 'rdOP6W8m', '5622842'), - (174, 1719, 'attending', '2022-10-05 20:54:19', '2025-12-17 19:47:12', 'rdOP6W8m', '5630958'), - (174, 1720, 'attending', '2022-10-10 13:14:57', '2025-12-17 19:47:12', 'rdOP6W8m', '5630959'), - (174, 1721, 'attending', '2022-10-18 23:26:17', '2025-12-17 19:47:13', 'rdOP6W8m', '5630960'), - (174, 1722, 'attending', '2022-10-20 22:00:05', '2025-12-17 19:47:14', 'rdOP6W8m', '5630961'), - (174, 1723, 'maybe', '2022-11-01 20:20:07', '2025-12-17 19:47:15', 'rdOP6W8m', '5630962'), - (174, 1724, 'attending', '2022-11-01 20:21:14', '2025-12-17 19:47:15', 'rdOP6W8m', '5630966'), - (174, 1725, 'attending', '2022-11-01 20:21:19', '2025-12-17 19:47:16', 'rdOP6W8m', '5630967'), - (174, 1726, 'maybe', '2022-11-01 20:21:21', '2025-12-17 19:47:16', 'rdOP6W8m', '5630968'), - (174, 1727, 'maybe', '2022-11-01 20:21:23', '2025-12-17 19:47:16', 'rdOP6W8m', '5630969'), - (174, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'rdOP6W8m', '5635406'), - (174, 1733, 'not_attending', '2022-10-09 02:54:50', '2025-12-17 19:47:12', 'rdOP6W8m', '5635411'), - (174, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'rdOP6W8m', '5638765'), - (174, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'rdOP6W8m', '5640097'), - (174, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'rdOP6W8m', '5640843'), - (174, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'rdOP6W8m', '5641521'), - (174, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'rdOP6W8m', '5642818'), - (174, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'rdOP6W8m', '5652395'), - (174, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'rdOP6W8m', '5670445'), - (174, 1763, 'maybe', '2022-11-01 20:21:03', '2025-12-17 19:47:15', 'rdOP6W8m', '5670803'), - (174, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'rdOP6W8m', '5671637'), - (174, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'rdOP6W8m', '5672329'), - (174, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'rdOP6W8m', '5674057'), - (174, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'rdOP6W8m', '5674060'), - (174, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'rdOP6W8m', '5677461'), - (174, 1776, 'maybe', '2022-11-01 20:20:54', '2025-12-17 19:47:15', 'rdOP6W8m', '5691067'), - (174, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'rdOP6W8m', '5698046'), - (174, 1783, 'maybe', '2022-11-15 23:27:33', '2025-12-17 19:47:16', 'rdOP6W8m', '5698621'), - (174, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'rdOP6W8m', '5699760'), - (174, 1785, 'maybe', '2022-11-15 23:27:49', '2025-12-17 19:47:15', 'rdOP6W8m', '5702414'), - (174, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'rdOP6W8m', '5741601'), - (174, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'rdOP6W8m', '5763458'), - (174, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'rdOP6W8m', '5774172'), - (174, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'rdOP6W8m', '5818247'), - (174, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'rdOP6W8m', '5819471'), - (174, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'rdOP6W8m', '5827739'), - (174, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'rdOP6W8m', '5844306'), - (174, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'rdOP6W8m', '5850159'), - (174, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'rdOP6W8m', '5858999'), - (174, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'rdOP6W8m', '5871984'), - (174, 1859, 'maybe', '2023-01-19 23:10:49', '2025-12-17 19:47:05', 'rdOP6W8m', '5876234'), - (174, 1860, 'maybe', '2023-01-18 22:22:39', '2025-12-17 19:47:05', 'rdOP6W8m', '5876309'), - (174, 1861, 'maybe', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'rdOP6W8m', '5876354'), - (174, 1864, 'maybe', '2023-01-19 23:11:07', '2025-12-17 19:47:05', 'rdOP6W8m', '5879675'), - (174, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'rdOP6W8m', '5880939'), - (174, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'rdOP6W8m', '5880940'), - (174, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'rdOP6W8m', '5880942'), - (174, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'rdOP6W8m', '5880943'), - (174, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'rdOP6W8m', '5887890'), - (174, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'rdOP6W8m', '5888598'), - (174, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'rdOP6W8m', '5893260'), - (174, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'rdOP6W8m', '5899826'), - (174, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'rdOP6W8m', '5900199'), - (174, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'rdOP6W8m', '5900200'), - (174, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'rdOP6W8m', '5900202'), - (174, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'rdOP6W8m', '5900203'), - (174, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'rdOP6W8m', '5901108'), - (174, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'rdOP6W8m', '5901126'), - (174, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'rdOP6W8m', '5909655'), - (174, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'rdOP6W8m', '5910522'), - (174, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'rdOP6W8m', '5910526'), - (174, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'rdOP6W8m', '5910528'), - (174, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'rdOP6W8m', '5916219'), - (174, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'rdOP6W8m', '5936234'), - (174, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'rdOP6W8m', '5958351'), - (174, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'rdOP6W8m', '5959751'), - (174, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'rdOP6W8m', '5959755'), - (174, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'rdOP6W8m', '5960055'), - (174, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'rdOP6W8m', '5961684'), - (174, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'rdOP6W8m', '5962132'), - (174, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'rdOP6W8m', '5962133'), - (174, 1946, 'maybe', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'rdOP6W8m', '5962134'), - (174, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'rdOP6W8m', '5962317'), - (174, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'rdOP6W8m', '5962318'), - (174, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'rdOP6W8m', '5965933'), - (174, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'rdOP6W8m', '5967014'), - (174, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'rdOP6W8m', '5972815'), - (174, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'rdOP6W8m', '5974016'), - (174, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'rdOP6W8m', '5975052'), - (174, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'rdOP6W8m', '5975054'), - (174, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'rdOP6W8m', '5981515'), - (174, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'rdOP6W8m', '5993516'), - (174, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'rdOP6W8m', '5998939'), - (174, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'rdOP6W8m', '6028191'), - (174, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'rdOP6W8m', '6040066'), - (174, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'rdOP6W8m', '6042717'), - (174, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'rdOP6W8m', '6044838'), - (174, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'rdOP6W8m', '6044839'), - (174, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOP6W8m', '6045684'), - (174, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'rdOP6W8m', '6050104'), - (174, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'rdOP6W8m', '6053195'), - (174, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'rdOP6W8m', '6053198'), - (174, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'rdOP6W8m', '6056085'), - (174, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'rdOP6W8m', '6056916'), - (174, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'rdOP6W8m', '6059290'), - (174, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'rdOP6W8m', '6060328'), - (174, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'rdOP6W8m', '6061037'), - (174, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'rdOP6W8m', '6061039'), - (174, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'rdOP6W8m', '6065813'), - (174, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'rdOP6W8m', '6067245'), - (174, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'rdOP6W8m', '6068094'), - (174, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'rdOP6W8m', '6068252'), - (174, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'rdOP6W8m', '6068253'), - (174, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'rdOP6W8m', '6068254'), - (174, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'rdOP6W8m', '6068280'), - (174, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'rdOP6W8m', '6069093'), - (174, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'rdOP6W8m', '6072528'), - (174, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'rdOP6W8m', '6075556'), - (174, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'rdOP6W8m', '6079840'), - (174, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'rdOP6W8m', '6083398'), - (174, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'rdOP6W8m', '6093504'), - (174, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'rdOP6W8m', '6097414'), - (174, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'rdOP6W8m', '6097442'), - (174, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'rdOP6W8m', '6097684'), - (174, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'rdOP6W8m', '6098762'), - (174, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'rdOP6W8m', '6101362'), - (174, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'rdOP6W8m', '6107314'), - (174, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'rdOP6W8m', '6337970'), - (174, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'rdOP6W8m', '6342044'), - (174, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'rdOP6W8m', '6343294'), - (174, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'rdOP6W8m', '6347034'), - (174, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'rdOP6W8m', '6347056'), - (174, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'rdOP6W8m', '6353830'), - (174, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'rdOP6W8m', '6353831'), - (174, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'rdOP6W8m', '6357867'), - (174, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'rdOP6W8m', '6358652'), - (174, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'rdOP6W8m', '6361709'), - (174, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'rdOP6W8m', '6361710'), - (174, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'rdOP6W8m', '6361711'), - (174, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'rdOP6W8m', '6361712'), - (174, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'rdOP6W8m', '6361713'), - (174, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'rdOP6W8m', '6382573'), - (174, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'rdOP6W8m', '6388604'), - (174, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'rdOP6W8m', '6394629'), - (174, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'rdOP6W8m', '6394631'), - (174, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'rdOP6W8m', '6440863'), - (174, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'rdOP6W8m', '6445440'), - (174, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'rdOP6W8m', '6453951'), - (174, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'rdOP6W8m', '6461696'), - (174, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'rdOP6W8m', '6462129'), - (174, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'rdOP6W8m', '6463218'), - (174, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'rdOP6W8m', '6472181'), - (174, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'rdOP6W8m', '6482693'), - (174, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'rdOP6W8m', '6484200'), - (174, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'rdOP6W8m', '6484680'), - (174, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'rdOP6W8m', '6507741'), - (174, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'rdOP6W8m', '6514659'), - (174, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'rdOP6W8m', '6514660'), - (174, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'rdOP6W8m', '6519103'), - (174, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'rdOP6W8m', '6535681'), - (174, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'rdOP6W8m', '6584747'), - (174, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'rdOP6W8m', '6587097'), - (174, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'rdOP6W8m', '6609022'), - (174, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'rdOP6W8m', '6632757'), - (174, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'rdOP6W8m', '6644187'), - (174, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'rdOP6W8m', '6648951'), - (174, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'rdOP6W8m', '6648952'), - (174, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'rdOP6W8m', '6655401'), - (174, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'rdOP6W8m', '6661585'), - (174, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'rdOP6W8m', '6661588'), - (174, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'rdOP6W8m', '6661589'), - (174, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'rdOP6W8m', '6699906'), - (174, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'rdOP6W8m', '6699913'), - (174, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'rdOP6W8m', '6701109'), - (174, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'rdOP6W8m', '6705219'), - (174, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'rdOP6W8m', '6710153'), - (174, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'rdOP6W8m', '6711552'), - (174, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'rdOP6W8m', '6711553'), - (174, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'rdOP6W8m', '6722688'), - (174, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'rdOP6W8m', '6730620'), - (174, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'rdOP6W8m', '6740364'), - (174, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'rdOP6W8m', '6743829'), - (174, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'rdOP6W8m', '7030380'), - (174, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'rdOP6W8m', '7033677'), - (174, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'rdOP6W8m', '7044715'), - (174, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'rdOP6W8m', '7050318'), - (174, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'rdOP6W8m', '7050319'), - (174, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'rdOP6W8m', '7050322'), - (174, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'rdOP6W8m', '7057804'), - (174, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'rdOP6W8m', '7072824'), - (174, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'rdOP6W8m', '7074348'), - (174, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'rdOP6W8m', '7074364'), - (174, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'rdOP6W8m', '7089267'), - (174, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'rdOP6W8m', '7098747'), - (174, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'rdOP6W8m', '7113468'), - (174, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'rdOP6W8m', '7114856'), - (174, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'rdOP6W8m', '7114951'), - (174, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'rdOP6W8m', '7114955'), - (174, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'rdOP6W8m', '7114956'), - (174, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'rdOP6W8m', '7114957'), - (174, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'rdOP6W8m', '7159484'), - (174, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'rdOP6W8m', '7178446'), - (174, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'rdOP6W8m', '7220467'), - (174, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'rdOP6W8m', '7240354'), - (174, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'rdOP6W8m', '7251633'), - (174, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'rdOP6W8m', '7324073'), - (174, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'rdOP6W8m', '7324074'), - (174, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'rdOP6W8m', '7324075'), - (174, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'rdOP6W8m', '7324078'), - (174, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'rdOP6W8m', '7324082'), - (174, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'rdOP6W8m', '7331457'), - (174, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'rdOP6W8m', '7363643'), - (174, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'rdOP6W8m', '7368606'), - (174, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'rdOP6W8m', '7397462'), - (174, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'rdOP6W8m', '7424275'), - (174, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'rdOP6W8m', '7432751'), - (174, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'rdOP6W8m', '7432752'), - (174, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'rdOP6W8m', '7432753'), - (174, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'rdOP6W8m', '7432754'), - (174, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'rdOP6W8m', '7432755'), - (174, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'rdOP6W8m', '7432756'), - (174, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'rdOP6W8m', '7432758'), - (174, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'rdOP6W8m', '7432759'), - (174, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'rdOP6W8m', '7433834'), - (174, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'rdOP6W8m', '7470197'), - (174, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'rdOP6W8m', '7685613'), - (174, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'rdOP6W8m', '7688194'), - (174, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'rdOP6W8m', '7688196'), - (174, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'rdOP6W8m', '7688289'), - (174, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'rdOP6W8m', '7692763'), - (174, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'rdOP6W8m', '7697552'), - (174, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'rdOP6W8m', '7699878'), - (174, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'rdOP6W8m', '7704043'), - (174, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'rdOP6W8m', '7712467'), - (174, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'rdOP6W8m', '7713585'), - (174, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'rdOP6W8m', '7713586'), - (174, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'rdOP6W8m', '7738518'), - (174, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'rdOP6W8m', '7750636'), - (174, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'rdOP6W8m', '7796540'), - (174, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'rdOP6W8m', '7796541'), - (174, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'rdOP6W8m', '7796542'), - (174, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'rdOP6W8m', '7825913'), - (174, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'rdOP6W8m', '7826209'), - (174, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'rdOP6W8m', '7834742'), - (174, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'rdOP6W8m', '7842108'), - (174, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'rdOP6W8m', '7842902'), - (174, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'rdOP6W8m', '7842903'), - (174, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'rdOP6W8m', '7842904'), - (174, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'rdOP6W8m', '7842905'), - (174, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'rdOP6W8m', '7855719'), - (174, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'rdOP6W8m', '7860683'), - (174, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'rdOP6W8m', '7860684'), - (174, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'rdOP6W8m', '7866095'), - (174, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'rdOP6W8m', '7869170'), - (174, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'rdOP6W8m', '7869188'), - (174, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'rdOP6W8m', '7869201'), - (174, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'rdOP6W8m', '7877465'), - (174, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'rdOP6W8m', '7888250'), - (174, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'rdOP6W8m', '7904777'), - (174, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'rdOP6W8m', '8349164'), - (174, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'rdOP6W8m', '8349545'), - (174, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'rdOP6W8m', '8368028'), - (174, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'rdOP6W8m', '8368029'), - (174, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'rdOP6W8m', '8388462'), - (174, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'rdOP6W8m', '8400273'), - (174, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'rdOP6W8m', '8400275'), - (174, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'rdOP6W8m', '8400276'), - (174, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'rdOP6W8m', '8404977'), - (174, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'rdOP6W8m', '8430783'), - (174, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'rdOP6W8m', '8430784'), - (174, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'rdOP6W8m', '8430799'), - (174, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'rdOP6W8m', '8430800'), - (174, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'rdOP6W8m', '8430801'), - (174, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'rdOP6W8m', '8438709'), - (174, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'rdOP6W8m', '8457738'), - (174, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'rdOP6W8m', '8459566'), - (174, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'rdOP6W8m', '8459567'), - (174, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'rdOP6W8m', '8461032'), - (174, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'rdOP6W8m', '8477877'), - (174, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'rdOP6W8m', '8485688'), - (174, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'rdOP6W8m', '8490587'), - (174, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'rdOP6W8m', '8493552'), - (174, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'rdOP6W8m', '8493553'), - (174, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'rdOP6W8m', '8493554'), - (174, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'rdOP6W8m', '8493555'), - (174, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'rdOP6W8m', '8493556'), - (174, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'rdOP6W8m', '8493557'), - (174, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'rdOP6W8m', '8493558'), - (174, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'rdOP6W8m', '8493559'), - (174, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'rdOP6W8m', '8493560'), - (174, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'rdOP6W8m', '8493561'), - (174, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'rdOP6W8m', '8493572'), - (174, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'rdOP6W8m', '8540725'), - (174, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'rdOP6W8m', '8555421'), - (175, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dxD095Gd', '4694407'), - (175, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dxD095Gd', '4736497'), - (175, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dxD095Gd', '4736500'), - (175, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dxD095Gd', '4746789'), - (175, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dxD095Gd', '4753929'), - (175, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dxD095Gd', '6045684'), - (176, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mMbOKBYA', '5880940'), - (176, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mMbOKBYA', '5880942'), - (176, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mMbOKBYA', '5880943'), - (176, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mMbOKBYA', '5900199'), - (176, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mMbOKBYA', '5900200'), - (176, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mMbOKBYA', '5900202'), - (176, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mMbOKBYA', '5900203'), - (176, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mMbOKBYA', '5901108'), - (176, 1896, 'attending', '2023-02-03 03:29:49', '2025-12-17 19:47:06', 'mMbOKBYA', '5901126'), - (176, 1897, 'maybe', '2023-02-10 21:11:10', '2025-12-17 19:47:07', 'mMbOKBYA', '5901128'), - (176, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mMbOKBYA', '5909655'), - (176, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mMbOKBYA', '5910522'), - (176, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mMbOKBYA', '5910526'), - (176, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mMbOKBYA', '5910528'), - (176, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mMbOKBYA', '5916219'), - (176, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mMbOKBYA', '5936234'), - (176, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mMbOKBYA', '5958351'), - (176, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mMbOKBYA', '5959751'), - (176, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mMbOKBYA', '5959755'), - (176, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mMbOKBYA', '5960055'), - (176, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mMbOKBYA', '5961684'), - (176, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mMbOKBYA', '5962132'), - (176, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mMbOKBYA', '5962133'), - (176, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mMbOKBYA', '5962134'), - (176, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mMbOKBYA', '5962317'), - (176, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mMbOKBYA', '5962318'), - (176, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mMbOKBYA', '5965933'), - (176, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mMbOKBYA', '5967014'), - (176, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mMbOKBYA', '5972815'), - (176, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mMbOKBYA', '5974016'), - (176, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mMbOKBYA', '5981515'), - (176, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mMbOKBYA', '5993516'), - (176, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mMbOKBYA', '5998939'), - (176, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mMbOKBYA', '6028191'), - (176, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mMbOKBYA', '6040066'), - (176, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mMbOKBYA', '6042717'), - (176, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mMbOKBYA', '6044838'), - (176, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mMbOKBYA', '6044839'), - (176, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mMbOKBYA', '6045684'), - (176, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mMbOKBYA', '6050104'), - (176, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mMbOKBYA', '6053195'), - (176, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mMbOKBYA', '6053198'), - (176, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mMbOKBYA', '6056085'), - (176, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mMbOKBYA', '6056916'), - (176, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mMbOKBYA', '6059290'), - (176, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mMbOKBYA', '6060328'), - (176, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mMbOKBYA', '6061037'), - (176, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mMbOKBYA', '6061039'), - (176, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mMbOKBYA', '6067245'), - (176, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mMbOKBYA', '6068094'), - (176, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mMbOKBYA', '6068252'), - (176, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mMbOKBYA', '6068253'), - (176, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mMbOKBYA', '6068254'), - (176, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mMbOKBYA', '6068280'), - (176, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mMbOKBYA', '6069093'), - (176, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mMbOKBYA', '6072528'), - (176, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mMbOKBYA', '6079840'), - (176, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mMbOKBYA', '6083398'), - (176, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mMbOKBYA', '6093504'), - (176, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mMbOKBYA', '6097414'), - (176, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mMbOKBYA', '6097442'), - (176, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mMbOKBYA', '6097684'), - (176, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mMbOKBYA', '6098762'), - (176, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mMbOKBYA', '6101362'), - (176, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mMbOKBYA', '6103752'), - (176, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mMbOKBYA', '6107314'), - (177, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4WP20JPd', '4356801'), - (177, 973, 'attending', '2021-08-21 11:43:39', '2025-12-17 19:47:42', '4WP20JPd', '4366186'), - (177, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:42', '4WP20JPd', '4366187'), - (177, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4WP20JPd', '4420735'), - (177, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4WP20JPd', '4420738'), - (177, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', '4WP20JPd', '4420739'), - (177, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4WP20JPd', '4420741'), - (177, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4WP20JPd', '4420744'), - (177, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4WP20JPd', '4420747'), - (177, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4WP20JPd', '4420748'), - (177, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4WP20JPd', '4420749'), - (177, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4WP20JPd', '4461883'), - (177, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4WP20JPd', '4508342'), - (177, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4WP20JPd', '4568602'), - (177, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4WP20JPd', '4572153'), - (177, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4WP20JPd', '4585962'), - (177, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4WP20JPd', '4596356'), - (177, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4WP20JPd', '4598860'), - (177, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4WP20JPd', '4598861'), - (177, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4WP20JPd', '4602797'), - (177, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4WP20JPd', '4637896'), - (177, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4WP20JPd', '4642994'), - (177, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4WP20JPd', '4642995'), - (177, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4WP20JPd', '4642996'), - (177, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4WP20JPd', '4642997'), - (177, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4WP20JPd', '4645687'), - (177, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4WP20JPd', '4645698'), - (177, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4WP20JPd', '4645704'), - (177, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4WP20JPd', '4645705'), - (177, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4WP20JPd', '4668385'), - (177, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WP20JPd', '6045684'), - (178, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'AQRkr1a4', '5513985'), - (178, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'AQRkr1a4', '5534683'), - (178, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AQRkr1a4', '5537735'), - (178, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AQRkr1a4', '5540859'), - (178, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AQRkr1a4', '5555245'), - (178, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AQRkr1a4', '5557747'), - (178, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AQRkr1a4', '5560255'), - (178, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AQRkr1a4', '5562906'), - (178, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AQRkr1a4', '5600604'), - (178, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AQRkr1a4', '5605544'), - (178, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AQRkr1a4', '5635406'), - (178, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AQRkr1a4', '5638765'), - (178, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'AQRkr1a4', '5640843'), - (178, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQRkr1a4', '6045684'), - (179, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', 'mj6BxZbm', '5426882'), - (179, 1513, 'attending', '2022-07-16 01:15:13', '2025-12-17 19:47:19', 'mj6BxZbm', '5441125'), - (179, 1514, 'attending', '2022-07-22 02:27:59', '2025-12-17 19:47:20', 'mj6BxZbm', '5441126'), - (179, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mj6BxZbm', '5441128'), - (179, 1516, 'attending', '2022-08-20 20:47:33', '2025-12-17 19:47:23', 'mj6BxZbm', '5441129'), - (179, 1517, 'attending', '2022-08-26 18:54:18', '2025-12-17 19:47:23', 'mj6BxZbm', '5441130'), - (179, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mj6BxZbm', '5441131'), - (179, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mj6BxZbm', '5441132'), - (179, 1528, 'not_attending', '2022-07-17 17:31:19', '2025-12-17 19:47:20', 'mj6BxZbm', '5446643'), - (179, 1536, 'attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'mj6BxZbm', '5449068'), - (179, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mj6BxZbm', '5453325'), - (179, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mj6BxZbm', '5454516'), - (179, 1544, 'attending', '2022-09-17 18:02:23', '2025-12-17 19:47:11', 'mj6BxZbm', '5454517'), - (179, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mj6BxZbm', '5454605'), - (179, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mj6BxZbm', '5455037'), - (179, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mj6BxZbm', '5461278'), - (179, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mj6BxZbm', '5469480'), - (179, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mj6BxZbm', '5471073'), - (179, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mj6BxZbm', '5474663'), - (179, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mj6BxZbm', '5482022'), - (179, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mj6BxZbm', '5482793'), - (179, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mj6BxZbm', '5488912'), - (179, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mj6BxZbm', '5492192'), - (179, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mj6BxZbm', '5493139'), - (179, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mj6BxZbm', '5493200'), - (179, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mj6BxZbm', '5502188'), - (179, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mj6BxZbm', '5505059'), - (179, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mj6BxZbm', '5509055'), - (179, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mj6BxZbm', '5512862'), - (179, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mj6BxZbm', '5513985'), - (179, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mj6BxZbm', '5519981'), - (179, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mj6BxZbm', '5522550'), - (179, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mj6BxZbm', '5534683'), - (179, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mj6BxZbm', '5537735'), - (179, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mj6BxZbm', '5540859'), - (179, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mj6BxZbm', '5546619'), - (179, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mj6BxZbm', '5555245'), - (179, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mj6BxZbm', '5557747'), - (179, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mj6BxZbm', '5560255'), - (179, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mj6BxZbm', '5562906'), - (179, 1668, 'attending', '2022-10-01 17:43:01', '2025-12-17 19:47:12', 'mj6BxZbm', '5563222'), - (179, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mj6BxZbm', '5600604'), - (179, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mj6BxZbm', '5605544'), - (179, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'mj6BxZbm', '5606737'), - (179, 1719, 'attending', '2022-10-07 14:56:13', '2025-12-17 19:47:12', 'mj6BxZbm', '5630958'), - (179, 1720, 'attending', '2022-10-15 19:14:21', '2025-12-17 19:47:12', 'mj6BxZbm', '5630959'), - (179, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mj6BxZbm', '5630960'), - (179, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mj6BxZbm', '5630961'), - (179, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mj6BxZbm', '5630962'), - (179, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mj6BxZbm', '5630966'), - (179, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mj6BxZbm', '5630967'), - (179, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mj6BxZbm', '5630968'), - (179, 1727, 'attending', '2022-12-03 04:00:26', '2025-12-17 19:47:16', 'mj6BxZbm', '5630969'), - (179, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mj6BxZbm', '5635406'), - (179, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mj6BxZbm', '5638765'), - (179, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mj6BxZbm', '5640097'), - (179, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mj6BxZbm', '5640843'), - (179, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mj6BxZbm', '5641521'), - (179, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mj6BxZbm', '5642818'), - (179, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mj6BxZbm', '5652395'), - (179, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mj6BxZbm', '5670445'), - (179, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mj6BxZbm', '5671637'), - (179, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mj6BxZbm', '5672329'), - (179, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mj6BxZbm', '5674057'), - (179, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mj6BxZbm', '5674060'), - (179, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mj6BxZbm', '5677461'), - (179, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mj6BxZbm', '5698046'), - (179, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mj6BxZbm', '5699760'), - (179, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mj6BxZbm', '5741601'), - (179, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mj6BxZbm', '5763458'), - (179, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mj6BxZbm', '5774172'), - (179, 1832, 'not_attending', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'mj6BxZbm', '5818247'), - (179, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mj6BxZbm', '5819471'), - (179, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mj6BxZbm', '5827739'), - (179, 1843, 'attending', '2022-12-18 00:01:06', '2025-12-17 19:47:04', 'mj6BxZbm', '5844304'), - (179, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mj6BxZbm', '5844306'), - (179, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mj6BxZbm', '5850159'), - (179, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mj6BxZbm', '5858999'), - (179, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mj6BxZbm', '5871984'), - (179, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mj6BxZbm', '5876354'), - (179, 1864, 'attending', '2023-01-21 21:48:13', '2025-12-17 19:47:05', 'mj6BxZbm', '5879675'), - (179, 1865, 'attending', '2023-01-28 19:13:39', '2025-12-17 19:47:06', 'mj6BxZbm', '5879676'), - (179, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mj6BxZbm', '5880939'), - (179, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mj6BxZbm', '5880940'), - (179, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mj6BxZbm', '5880942'), - (179, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mj6BxZbm', '5880943'), - (179, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mj6BxZbm', '5887890'), - (179, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mj6BxZbm', '5888598'), - (179, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mj6BxZbm', '5893260'), - (179, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mj6BxZbm', '5899826'), - (179, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mj6BxZbm', '5900199'), - (179, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mj6BxZbm', '5900200'), - (179, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mj6BxZbm', '5900202'), - (179, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mj6BxZbm', '5900203'), - (179, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mj6BxZbm', '5901108'), - (179, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mj6BxZbm', '5901126'), - (179, 1897, 'attending', '2023-02-11 22:28:29', '2025-12-17 19:47:07', 'mj6BxZbm', '5901128'), - (179, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mj6BxZbm', '5909655'), - (179, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mj6BxZbm', '5910522'), - (179, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mj6BxZbm', '5910526'), - (179, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mj6BxZbm', '5910528'), - (179, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mj6BxZbm', '5916219'), - (179, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mj6BxZbm', '5936234'), - (179, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mj6BxZbm', '5958351'), - (179, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mj6BxZbm', '5959751'), - (179, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mj6BxZbm', '5959755'), - (179, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mj6BxZbm', '5960055'), - (179, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mj6BxZbm', '5961684'), - (179, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mj6BxZbm', '5962132'), - (179, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mj6BxZbm', '5962133'), - (179, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mj6BxZbm', '5962134'), - (179, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mj6BxZbm', '5962317'), - (179, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mj6BxZbm', '5962318'), - (179, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mj6BxZbm', '5965933'), - (179, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mj6BxZbm', '5967014'), - (179, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mj6BxZbm', '5972815'), - (179, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mj6BxZbm', '5974016'), - (179, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mj6BxZbm', '5981515'), - (179, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mj6BxZbm', '5993516'), - (179, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mj6BxZbm', '5998939'), - (179, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mj6BxZbm', '6028191'), - (179, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mj6BxZbm', '6040066'), - (179, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mj6BxZbm', '6042717'), - (179, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mj6BxZbm', '6044838'), - (179, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mj6BxZbm', '6044839'), - (179, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj6BxZbm', '6045684'), - (179, 1991, 'not_attending', '2023-04-01 22:27:06', '2025-12-17 19:46:58', 'mj6BxZbm', '6047354'), - (179, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mj6BxZbm', '6050104'), - (179, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mj6BxZbm', '6053195'), - (179, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mj6BxZbm', '6053198'), - (179, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mj6BxZbm', '6056085'), - (179, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mj6BxZbm', '6056916'), - (179, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mj6BxZbm', '6059290'), - (179, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mj6BxZbm', '6060328'), - (179, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mj6BxZbm', '6061037'), - (179, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mj6BxZbm', '6061039'), - (179, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mj6BxZbm', '6067245'), - (179, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mj6BxZbm', '6068094'), - (179, 2028, 'maybe', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mj6BxZbm', '6068252'), - (179, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mj6BxZbm', '6068253'), - (179, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mj6BxZbm', '6068254'), - (179, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'mj6BxZbm', '6068280'), - (179, 2032, 'attending', '2023-06-03 22:20:58', '2025-12-17 19:47:04', 'mj6BxZbm', '6068281'), - (179, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mj6BxZbm', '6069093'), - (179, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mj6BxZbm', '6072528'), - (179, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mj6BxZbm', '6079840'), - (179, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mj6BxZbm', '6083398'), - (179, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'mj6BxZbm', '6093504'), - (179, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mj6BxZbm', '6097414'), - (179, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mj6BxZbm', '6097442'), - (179, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mj6BxZbm', '6097684'), - (179, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mj6BxZbm', '6098762'), - (179, 2064, 'not_attending', '2023-06-24 12:27:52', '2025-12-17 19:46:50', 'mj6BxZbm', '6099988'), - (179, 2065, 'attending', '2023-06-17 17:06:59', '2025-12-17 19:46:49', 'mj6BxZbm', '6101169'), - (179, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mj6BxZbm', '6101361'), - (179, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mj6BxZbm', '6101362'), - (179, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mj6BxZbm', '6103752'), - (179, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mj6BxZbm', '6107314'), - (179, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mj6BxZbm', '6120034'), - (179, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mj6BxZbm', '6136733'), - (179, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mj6BxZbm', '6137989'), - (179, 2097, 'attending', '2023-06-10 19:18:24', '2025-12-17 19:47:04', 'mj6BxZbm', '6139059'), - (179, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mj6BxZbm', '6150864'), - (179, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mj6BxZbm', '6155491'), - (179, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mj6BxZbm', '6164417'), - (179, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mj6BxZbm', '6166388'), - (179, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mj6BxZbm', '6176439'), - (179, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'mj6BxZbm', '6182410'), - (179, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mj6BxZbm', '6185812'), - (179, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mj6BxZbm', '6187651'), - (179, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mj6BxZbm', '6187963'), - (179, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mj6BxZbm', '6187964'), - (179, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mj6BxZbm', '6187966'), - (179, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mj6BxZbm', '6187967'), - (179, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mj6BxZbm', '6187969'), - (179, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mj6BxZbm', '6334878'), - (179, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mj6BxZbm', '6337236'), - (179, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mj6BxZbm', '6337970'), - (179, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mj6BxZbm', '6338308'), - (179, 2159, 'attending', '2023-07-22 18:58:56', '2025-12-17 19:46:53', 'mj6BxZbm', '6338355'), - (179, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mj6BxZbm', '6340845'), - (179, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mj6BxZbm', '6341710'), - (179, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mj6BxZbm', '6342044'), - (179, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mj6BxZbm', '6342298'), - (179, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mj6BxZbm', '6343294'), - (179, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mj6BxZbm', '6347034'), - (179, 2177, 'attending', '2023-08-12 18:39:22', '2025-12-17 19:46:55', 'mj6BxZbm', '6347053'), - (179, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mj6BxZbm', '6347056'), - (179, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mj6BxZbm', '6353830'), - (179, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mj6BxZbm', '6353831'), - (179, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mj6BxZbm', '6357867'), - (179, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mj6BxZbm', '6358652'), - (179, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mj6BxZbm', '6361709'), - (179, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mj6BxZbm', '6361710'), - (179, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mj6BxZbm', '6361711'), - (179, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mj6BxZbm', '6361712'), - (179, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mj6BxZbm', '6361713'), - (179, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mj6BxZbm', '6382573'), - (179, 2239, 'attending', '2023-09-02 14:30:23', '2025-12-17 19:46:56', 'mj6BxZbm', '6387592'), - (179, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mj6BxZbm', '6388604'), - (179, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mj6BxZbm', '6394629'), - (179, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mj6BxZbm', '6394631'), - (179, 2253, 'attending', '2023-09-30 21:31:45', '2025-12-17 19:46:45', 'mj6BxZbm', '6401811'), - (179, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mj6BxZbm', '6440863'), - (179, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mj6BxZbm', '6445440'), - (179, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mj6BxZbm', '6453951'), - (179, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mj6BxZbm', '6461696'), - (179, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mj6BxZbm', '6462129'), - (179, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mj6BxZbm', '6463218'), - (179, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mj6BxZbm', '6472181'), - (179, 2303, 'attending', '2023-10-28 19:04:35', '2025-12-17 19:46:47', 'mj6BxZbm', '6482691'), - (179, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mj6BxZbm', '6482693'), - (179, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mj6BxZbm', '6484200'), - (179, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mj6BxZbm', '6484680'), - (179, 2310, 'not_attending', '2023-11-10 21:07:26', '2025-12-17 19:46:47', 'mj6BxZbm', '6487709'), - (179, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mj6BxZbm', '6507741'), - (179, 2322, 'attending', '2023-11-18 19:54:19', '2025-12-17 19:46:48', 'mj6BxZbm', '6514659'), - (179, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mj6BxZbm', '6514660'), - (179, 2324, 'not_attending', '2023-12-09 23:41:06', '2025-12-17 19:46:49', 'mj6BxZbm', '6514662'), - (179, 2325, 'not_attending', '2023-12-16 21:13:01', '2025-12-17 19:46:36', 'mj6BxZbm', '6514663'), - (179, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mj6BxZbm', '6519103'), - (179, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mj6BxZbm', '6535681'), - (179, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mj6BxZbm', '6584747'), - (179, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mj6BxZbm', '6587097'), - (179, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mj6BxZbm', '6609022'), - (179, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mj6BxZbm', '6632757'), - (179, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mj6BxZbm', '6644187'), - (179, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mj6BxZbm', '6648951'), - (179, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mj6BxZbm', '6648952'), - (179, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mj6BxZbm', '6655401'), - (179, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mj6BxZbm', '6661585'), - (179, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mj6BxZbm', '6661588'), - (179, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mj6BxZbm', '6661589'), - (179, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mj6BxZbm', '6699906'), - (179, 2408, 'attending', '2024-01-27 18:21:41', '2025-12-17 19:46:40', 'mj6BxZbm', '6699907'), - (179, 2409, 'attending', '2024-02-03 20:32:59', '2025-12-17 19:46:41', 'mj6BxZbm', '6699909'), - (179, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'mj6BxZbm', '6699913'), - (179, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mj6BxZbm', '6701109'), - (179, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mj6BxZbm', '6705219'), - (179, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mj6BxZbm', '6710153'), - (179, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mj6BxZbm', '6711552'), - (179, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'mj6BxZbm', '6711553'), - (179, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mj6BxZbm', '6722688'), - (179, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mj6BxZbm', '6730620'), - (179, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mj6BxZbm', '6730642'), - (179, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mj6BxZbm', '6740364'), - (179, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mj6BxZbm', '6743829'), - (179, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mj6BxZbm', '7030380'), - (179, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mj6BxZbm', '7033677'), - (179, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mj6BxZbm', '7035415'), - (179, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mj6BxZbm', '7044715'), - (179, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mj6BxZbm', '7050318'), - (179, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mj6BxZbm', '7050319'), - (179, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mj6BxZbm', '7050322'), - (179, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mj6BxZbm', '7057804'), - (179, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'mj6BxZbm', '7059866'), - (179, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mj6BxZbm', '7072824'), - (179, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mj6BxZbm', '7074348'), - (179, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mj6BxZbm', '7074364'), - (179, 2539, 'not_attending', '2024-04-06 21:46:53', '2025-12-17 19:46:33', 'mj6BxZbm', '7085486'), - (179, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mj6BxZbm', '7089267'), - (179, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mj6BxZbm', '7098747'), - (179, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mj6BxZbm', '7113468'), - (179, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mj6BxZbm', '7114856'), - (179, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mj6BxZbm', '7114951'), - (179, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mj6BxZbm', '7114955'), - (179, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mj6BxZbm', '7114956'), - (179, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mj6BxZbm', '7114957'), - (179, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mj6BxZbm', '7153615'), - (179, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mj6BxZbm', '7159484'), - (179, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mj6BxZbm', '7178446'), - (179, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mj6BxZbm', '7220467'), - (179, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mj6BxZbm', '7240354'), - (179, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mj6BxZbm', '7251633'), - (179, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mj6BxZbm', '7263048'), - (179, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mj6BxZbm', '7302674'), - (179, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mj6BxZbm', '7324073'), - (179, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mj6BxZbm', '7324074'), - (179, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mj6BxZbm', '7324075'), - (179, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mj6BxZbm', '7324078'), - (179, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mj6BxZbm', '7324082'), - (179, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mj6BxZbm', '7331457'), - (179, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mj6BxZbm', '7356752'), - (179, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mj6BxZbm', '7363643'), - (179, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mj6BxZbm', '7368606'), - (179, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mj6BxZbm', '7397462'), - (179, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mj6BxZbm', '7424275'), - (179, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mj6BxZbm', '7424276'), - (179, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mj6BxZbm', '7432751'), - (179, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mj6BxZbm', '7432752'), - (179, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mj6BxZbm', '7432753'), - (179, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mj6BxZbm', '7432754'), - (179, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mj6BxZbm', '7432755'), - (179, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mj6BxZbm', '7432756'), - (179, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mj6BxZbm', '7432758'), - (179, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mj6BxZbm', '7432759'), - (179, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mj6BxZbm', '7433834'), - (179, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mj6BxZbm', '7470197'), - (179, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mj6BxZbm', '7685613'), - (179, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mj6BxZbm', '7688194'), - (179, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mj6BxZbm', '7688196'), - (179, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mj6BxZbm', '7688289'), - (180, 1714, 'attending', '2022-10-27 19:54:07', '2025-12-17 19:47:14', 'AYVQOGo4', '5622347'), - (180, 1722, 'not_attending', '2022-10-27 16:45:54', '2025-12-17 19:47:14', 'AYVQOGo4', '5630961'), - (180, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AYVQOGo4', '5630962'), - (180, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AYVQOGo4', '5630966'), - (180, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AYVQOGo4', '5630967'), - (180, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AYVQOGo4', '5630968'), - (180, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AYVQOGo4', '5642818'), - (180, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AYVQOGo4', '5698046'), - (180, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'AYVQOGo4', '5699760'), - (180, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AYVQOGo4', '5741601'), - (180, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AYVQOGo4', '5763458'), - (180, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AYVQOGo4', '5774172'), - (180, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYVQOGo4', '6045684'), - (181, 2517, 'maybe', '2024-06-27 20:14:16', '2025-12-17 19:46:29', 'mqnGJx1A', '7074357'), - (181, 2521, 'attending', '2024-06-20 20:58:36', '2025-12-17 19:46:29', 'mqnGJx1A', '7074361'), - (181, 2523, 'attending', '2024-06-03 20:00:08', '2025-12-17 19:46:36', 'mqnGJx1A', '7074363'), - (181, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mqnGJx1A', '7074364'), - (181, 2525, 'attending', '2024-06-10 11:31:35', '2025-12-17 19:46:28', 'mqnGJx1A', '7074365'), - (181, 2526, 'attending', '2024-08-01 21:03:58', '2025-12-17 19:46:31', 'mqnGJx1A', '7074366'), - (181, 2527, 'attending', '2024-06-27 20:14:34', '2025-12-17 19:46:29', 'mqnGJx1A', '7074367'), - (181, 2628, 'attending', '2024-06-01 21:39:54', '2025-12-17 19:46:36', 'mqnGJx1A', '7264725'), - (181, 2629, 'attending', '2024-06-03 20:00:16', '2025-12-17 19:46:28', 'mqnGJx1A', '7264726'), - (181, 2647, 'attending', '2024-06-05 11:50:11', '2025-12-17 19:46:28', 'mqnGJx1A', '7282057'), - (181, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'mqnGJx1A', '7291219'), - (181, 2660, 'attending', '2024-06-01 21:40:00', '2025-12-17 19:46:36', 'mqnGJx1A', '7301638'), - (181, 2661, 'maybe', '2024-06-07 20:45:57', '2025-12-17 19:46:28', 'mqnGJx1A', '7302674'), - (181, 2665, 'attending', '2024-06-04 14:53:00', '2025-12-17 19:46:36', 'mqnGJx1A', '7306370'), - (181, 2666, 'maybe', '2024-06-06 19:09:00', '2025-12-17 19:46:36', 'mqnGJx1A', '7307775'), - (181, 2678, 'attending', '2024-06-10 11:31:40', '2025-12-17 19:46:28', 'mqnGJx1A', '7319489'), - (181, 2679, 'attending', '2024-06-22 20:36:11', '2025-12-17 19:46:29', 'mqnGJx1A', '7319490'), - (181, 2683, 'attending', '2024-06-10 19:21:29', '2025-12-17 19:46:28', 'mqnGJx1A', '7321978'), - (181, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mqnGJx1A', '7324073'), - (181, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mqnGJx1A', '7324074'), - (181, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mqnGJx1A', '7324075'), - (181, 2691, 'attending', '2024-07-20 21:32:26', '2025-12-17 19:46:30', 'mqnGJx1A', '7324076'), - (181, 2692, 'attending', '2024-07-27 22:44:35', '2025-12-17 19:46:30', 'mqnGJx1A', '7324077'), - (181, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mqnGJx1A', '7324078'), - (181, 2694, 'not_attending', '2024-08-09 23:14:14', '2025-12-17 19:46:31', 'mqnGJx1A', '7324079'), - (181, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mqnGJx1A', '7324082'), - (181, 2700, 'maybe', '2024-06-13 10:58:12', '2025-12-17 19:46:28', 'mqnGJx1A', '7324388'), - (181, 2716, 'not_attending', '2024-06-22 20:36:14', '2025-12-17 19:46:29', 'mqnGJx1A', '7329096'), - (181, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mqnGJx1A', '7331457'), - (181, 2729, 'attending', '2024-06-21 21:32:28', '2025-12-17 19:46:29', 'mqnGJx1A', '7335092'), - (181, 2738, 'not_attending', '2024-06-30 23:55:17', '2025-12-17 19:46:29', 'mqnGJx1A', '7344085'), - (181, 2741, 'not_attending', '2024-06-30 23:33:56', '2025-12-17 19:46:30', 'mqnGJx1A', '7344592'), - (181, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mqnGJx1A', '7356752'), - (181, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mqnGJx1A', '7363643'), - (181, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mqnGJx1A', '7368606'), - (181, 2791, 'not_attending', '2024-08-09 23:14:22', '2025-12-17 19:46:31', 'mqnGJx1A', '7390760'), - (181, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mqnGJx1A', '7397462'), - (181, 2813, 'not_attending', '2024-09-06 16:46:16', '2025-12-17 19:46:24', 'mqnGJx1A', '7424105'), - (181, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mqnGJx1A', '7424275'), - (181, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mqnGJx1A', '7432751'), - (181, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mqnGJx1A', '7432752'), - (181, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mqnGJx1A', '7432753'), - (181, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mqnGJx1A', '7432754'), - (181, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mqnGJx1A', '7432755'), - (181, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mqnGJx1A', '7432756'), - (181, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mqnGJx1A', '7432758'), - (181, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mqnGJx1A', '7432759'), - (181, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mqnGJx1A', '7433834'), - (181, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mqnGJx1A', '7470197'), - (182, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybLjMgA', '7324075'), - (182, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybLjMgA', '7324078'), - (182, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mybLjMgA', '7331457'), - (182, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mybLjMgA', '7359624'), - (182, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mybLjMgA', '7363643'), - (182, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybLjMgA', '7368606'), - (183, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dzO1KBpm', '4694407'), - (183, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dzO1KBpm', '4736497'), - (183, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dzO1KBpm', '4736500'), - (183, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dzO1KBpm', '4746789'), - (183, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dzO1KBpm', '4753929'), - (183, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dzO1KBpm', '6045684'), - (184, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'VdxQr0Gm', '6045684'), - (185, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzOY0rRm', '6045684'), - (186, 767, 'not_attending', '2021-05-01 15:11:35', '2025-12-17 19:47:46', '2d2Ev3M4', '3722476'), - (186, 777, 'not_attending', '2021-05-01 15:10:40', '2025-12-17 19:47:46', '2d2Ev3M4', '3746248'), - (186, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2Ev3M4', '6045684'), - (187, 196, 'not_attending', '2020-08-15 19:53:37', '2025-12-17 19:47:56', 'ndaMxJad', '3087265'), - (187, 197, 'maybe', '2020-08-22 02:54:30', '2025-12-17 19:47:56', 'ndaMxJad', '3087266'), - (187, 198, 'not_attending', '2020-08-29 17:18:29', '2025-12-17 19:47:56', 'ndaMxJad', '3087267'), - (187, 199, 'not_attending', '2020-09-04 14:11:19', '2025-12-17 19:47:56', 'ndaMxJad', '3087268'), - (187, 219, 'attending', '2020-08-16 04:32:04', '2025-12-17 19:47:56', 'ndaMxJad', '3129263'), - (187, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'ndaMxJad', '3129980'), - (187, 239, 'maybe', '2020-08-25 02:25:53', '2025-12-17 19:47:56', 'ndaMxJad', '3149470'), - (187, 285, 'attending', '2020-08-25 00:07:44', '2025-12-17 19:47:56', 'ndaMxJad', '3170245'), - (187, 286, 'attending', '2020-08-25 02:26:06', '2025-12-17 19:47:56', 'ndaMxJad', '3170246'), - (187, 287, 'attending', '2020-08-28 23:21:08', '2025-12-17 19:47:56', 'ndaMxJad', '3170247'), - (187, 288, 'attending', '2020-09-02 23:57:18', '2025-12-17 19:47:56', 'ndaMxJad', '3170249'), - (187, 289, 'attending', '2020-09-04 23:33:08', '2025-12-17 19:47:56', 'ndaMxJad', '3170250'), - (187, 291, 'attending', '2020-09-11 01:22:28', '2025-12-17 19:47:56', 'ndaMxJad', '3170252'), - (187, 293, 'not_attending', '2020-08-14 20:29:51', '2025-12-17 19:47:56', 'ndaMxJad', '3172832'), - (187, 294, 'not_attending', '2020-08-14 20:29:58', '2025-12-17 19:47:56', 'ndaMxJad', '3172833'), - (187, 295, 'not_attending', '2020-08-14 20:30:10', '2025-12-17 19:47:56', 'ndaMxJad', '3172834'), - (187, 309, 'attending', '2020-08-21 01:58:37', '2025-12-17 19:47:56', 'ndaMxJad', '3185332'), - (187, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'ndaMxJad', '3186057'), - (187, 313, 'attending', '2020-08-23 02:51:04', '2025-12-17 19:47:56', 'ndaMxJad', '3188127'), - (187, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'ndaMxJad', '3191735'), - (187, 318, 'maybe', '2020-08-31 16:56:55', '2025-12-17 19:47:56', 'ndaMxJad', '3193885'), - (187, 321, 'not_attending', '2020-09-06 21:57:19', '2025-12-17 19:47:56', 'ndaMxJad', '3197077'), - (187, 324, 'maybe', '2020-09-18 13:56:29', '2025-12-17 19:47:56', 'ndaMxJad', '3197082'), - (187, 325, 'maybe', '2020-09-18 13:56:38', '2025-12-17 19:47:51', 'ndaMxJad', '3197083'), - (187, 331, 'maybe', '2020-09-01 14:59:52', '2025-12-17 19:47:56', 'ndaMxJad', '3198871'), - (187, 332, 'attending', '2020-09-10 00:20:18', '2025-12-17 19:47:56', 'ndaMxJad', '3198873'), - (187, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'ndaMxJad', '3200209'), - (187, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', 'ndaMxJad', '3200495'), - (187, 343, 'not_attending', '2020-09-21 22:56:44', '2025-12-17 19:47:56', 'ndaMxJad', '3206759'), - (187, 344, 'maybe', '2020-09-12 04:37:15', '2025-12-17 19:47:53', 'ndaMxJad', '3206906'), - (187, 362, 'not_attending', '2020-09-25 19:23:20', '2025-12-17 19:47:52', 'ndaMxJad', '3214207'), - (187, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'ndaMxJad', '3217037'), - (187, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'ndaMxJad', '3218510'), - (187, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', 'ndaMxJad', '3221403'), - (187, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'ndaMxJad', '3228698'), - (187, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'ndaMxJad', '3228699'), - (187, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'ndaMxJad', '3228700'), - (187, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'ndaMxJad', '3228701'), - (187, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'ndaMxJad', '3245751'), - (187, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'ndaMxJad', '3250232'), - (187, 432, 'maybe', '2020-10-27 22:24:41', '2025-12-17 19:47:53', 'ndaMxJad', '3254416'), - (187, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'ndaMxJad', '3256168'), - (187, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'ndaMxJad', '3263578'), - (187, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'ndaMxJad', '3276428'), - (187, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ndaMxJad', '3281467'), - (187, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'ndaMxJad', '3281470'), - (187, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'ndaMxJad', '3281829'), - (187, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'ndaMxJad', '3285413'), - (187, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'ndaMxJad', '3285414'), - (187, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ndaMxJad', '3297764'), - (187, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'ndaMxJad', '3313856'), - (187, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ndaMxJad', '3314909'), - (187, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaMxJad', '3314964'), - (187, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ndaMxJad', '3323365'), - (187, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'ndaMxJad', '3329383'), - (187, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndaMxJad', '3351539'), - (187, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndaMxJad', '3386848'), - (187, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndaMxJad', '3389527'), - (187, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndaMxJad', '3396499'), - (187, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndaMxJad', '3403650'), - (187, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaMxJad', '3406988'), - (187, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'ndaMxJad', '3408338'), - (187, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndaMxJad', '3416576'), - (187, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaMxJad', '6045684'), - (188, 2122, 'attending', '2023-07-05 22:09:03', '2025-12-17 19:46:51', 'xd96qyZm', '6176476'), - (188, 2125, 'not_attending', '2023-07-02 02:53:23', '2025-12-17 19:46:51', 'xd96qyZm', '6177485'), - (188, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xd96qyZm', '6182410'), - (188, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xd96qyZm', '6185812'), - (188, 2132, 'maybe', '2023-07-08 15:23:58', '2025-12-17 19:46:52', 'xd96qyZm', '6187015'), - (188, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xd96qyZm', '6187651'), - (188, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xd96qyZm', '6187963'), - (188, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xd96qyZm', '6187964'), - (188, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xd96qyZm', '6187966'), - (188, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xd96qyZm', '6187967'), - (188, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xd96qyZm', '6187969'), - (188, 2141, 'attending', '2023-07-08 15:23:01', '2025-12-17 19:46:52', 'xd96qyZm', '6188819'), - (188, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xd96qyZm', '6334878'), - (188, 2146, 'attending', '2023-07-20 23:05:32', '2025-12-17 19:46:53', 'xd96qyZm', '6335638'), - (188, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xd96qyZm', '6337236'), - (188, 2154, 'maybe', '2023-07-12 22:03:58', '2025-12-17 19:46:52', 'xd96qyZm', '6337689'), - (188, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xd96qyZm', '6337970'), - (188, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xd96qyZm', '6338308'), - (188, 2157, 'not_attending', '2023-07-12 21:54:30', '2025-12-17 19:46:52', 'xd96qyZm', '6338342'), - (188, 2159, 'maybe', '2023-07-18 20:59:57', '2025-12-17 19:46:53', 'xd96qyZm', '6338355'), - (188, 2160, 'attending', '2023-07-29 18:10:32', '2025-12-17 19:46:54', 'xd96qyZm', '6338358'), - (188, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xd96qyZm', '6341710'), - (188, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xd96qyZm', '6342044'), - (188, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xd96qyZm', '6342298'), - (188, 2171, 'attending', '2023-07-28 18:52:30', '2025-12-17 19:46:54', 'xd96qyZm', '6342328'), - (188, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xd96qyZm', '6343294'), - (188, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xd96qyZm', '6347034'), - (188, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xd96qyZm', '6347056'), - (188, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xd96qyZm', '6353830'), - (188, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xd96qyZm', '6353831'), - (188, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xd96qyZm', '6357867'), - (188, 2190, 'attending', '2023-08-07 22:39:49', '2025-12-17 19:46:55', 'xd96qyZm', '6357892'), - (188, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xd96qyZm', '6358652'), - (188, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'xd96qyZm', '6358668'), - (188, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'xd96qyZm', '6358669'), - (188, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xd96qyZm', '6361709'), - (188, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xd96qyZm', '6361710'), - (188, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xd96qyZm', '6361711'), - (188, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xd96qyZm', '6361712'), - (188, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xd96qyZm', '6361713'), - (188, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'xd96qyZm', '6382573'), - (188, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'xd96qyZm', '6388604'), - (188, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xd96qyZm', '6394629'), - (188, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xd96qyZm', '6394631'), - (188, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xd96qyZm', '6440863'), - (188, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xd96qyZm', '6445440'), - (188, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xd96qyZm', '6453951'), - (188, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xd96qyZm', '6461696'), - (188, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xd96qyZm', '6462129'), - (188, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xd96qyZm', '6463218'), - (188, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'xd96qyZm', '6472181'), - (188, 2304, 'maybe', '2023-10-28 02:20:59', '2025-12-17 19:46:47', 'xd96qyZm', '6482693'), - (188, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'xd96qyZm', '6484200'), - (188, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xd96qyZm', '6484680'), - (188, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xd96qyZm', '6507741'), - (188, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'xd96qyZm', '6514659'), - (188, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xd96qyZm', '6514660'), - (188, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xd96qyZm', '6519103'), - (188, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xd96qyZm', '6535681'), - (188, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xd96qyZm', '6584747'), - (188, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xd96qyZm', '6587097'), - (188, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xd96qyZm', '6609022'), - (188, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xd96qyZm', '6632757'), - (188, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xd96qyZm', '6644187'), - (188, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xd96qyZm', '6648951'), - (188, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xd96qyZm', '6648952'), - (188, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xd96qyZm', '6655401'), - (188, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xd96qyZm', '6661585'), - (188, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xd96qyZm', '6661588'), - (188, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xd96qyZm', '6661589'), - (188, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xd96qyZm', '6699906'), - (188, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'xd96qyZm', '6699913'), - (188, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xd96qyZm', '6701109'), - (188, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'xd96qyZm', '6704561'), - (188, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xd96qyZm', '6705219'), - (188, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'xd96qyZm', '6708410'), - (188, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xd96qyZm', '6710153'), - (188, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xd96qyZm', '6711552'), - (188, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xd96qyZm', '6711553'), - (188, 2435, 'not_attending', '2024-01-27 02:47:43', '2025-12-17 19:46:41', 'xd96qyZm', '6721547'), - (188, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xd96qyZm', '6722688'), - (188, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xd96qyZm', '6730620'), - (188, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xd96qyZm', '6730642'), - (188, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xd96qyZm', '6740364'), - (188, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xd96qyZm', '6743829'), - (188, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xd96qyZm', '7030380'), - (188, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xd96qyZm', '7033677'), - (188, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xd96qyZm', '7035415'), - (188, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xd96qyZm', '7044715'), - (188, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xd96qyZm', '7050318'), - (188, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xd96qyZm', '7050319'), - (188, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xd96qyZm', '7050322'), - (188, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xd96qyZm', '7057804'), - (188, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xd96qyZm', '7072824'), - (188, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xd96qyZm', '7074348'), - (188, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'xd96qyZm', '7089267'), - (188, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xd96qyZm', '7098747'), - (188, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xd96qyZm', '7113468'), - (188, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xd96qyZm', '7114856'), - (188, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xd96qyZm', '7114951'), - (188, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xd96qyZm', '7114955'), - (188, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xd96qyZm', '7114956'), - (188, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xd96qyZm', '7153615'), - (188, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xd96qyZm', '7159484'), - (189, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E5a3p04', '6045684'), - (190, 1865, 'attending', '2023-01-28 15:03:23', '2025-12-17 19:47:06', 'dKb1r7Y4', '5879676'), - (190, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dKb1r7Y4', '5880939'), - (190, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dKb1r7Y4', '5880940'), - (190, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dKb1r7Y4', '5880942'), - (190, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dKb1r7Y4', '5887890'), - (190, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dKb1r7Y4', '5888598'), - (190, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dKb1r7Y4', '5893260'), - (190, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dKb1r7Y4', '5899826'), - (190, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dKb1r7Y4', '5900199'), - (190, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dKb1r7Y4', '5900200'), - (190, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901055'), - (190, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901108'), - (190, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901126'), - (190, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901606'), - (190, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dKb1r7Y4', '5909655'), - (190, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dKb1r7Y4', '5910522'), - (190, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dKb1r7Y4', '5910526'), - (190, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dKb1r7Y4', '5910528'), - (190, 1920, 'not_attending', '2023-02-13 14:43:47', '2025-12-17 19:47:07', 'dKb1r7Y4', '5914091'), - (190, 1921, 'maybe', '2023-02-27 15:45:00', '2025-12-17 19:47:08', 'dKb1r7Y4', '5914092'), - (190, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dKb1r7Y4', '5916219'), - (190, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dKb1r7Y4', '5936234'), - (190, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'dKb1r7Y4', '5936691'), - (190, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dKb1r7Y4', '5958351'), - (190, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dKb1r7Y4', '5959751'), - (190, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dKb1r7Y4', '5959755'), - (190, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dKb1r7Y4', '5960055'), - (190, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dKb1r7Y4', '5961684'), - (190, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dKb1r7Y4', '5962132'), - (190, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dKb1r7Y4', '5962133'), - (190, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dKb1r7Y4', '5962134'), - (190, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dKb1r7Y4', '5962317'), - (190, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dKb1r7Y4', '5962318'), - (190, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKb1r7Y4', '6045684'), - (191, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Agkj0pjA', '4736497'), - (191, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Agkj0pjA', '4736499'), - (191, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Agkj0pjA', '4736500'), - (191, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Agkj0pjA', '4736503'), - (191, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Agkj0pjA', '4736504'), - (191, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Agkj0pjA', '5038850'), - (191, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Agkj0pjA', '5045826'), - (191, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Agkj0pjA', '5132533'), - (191, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Agkj0pjA', '6045684'), - (192, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybg8agA', '7074364'), - (192, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'mybg8agA', '7301638'), - (192, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybg8agA', '7324073'), - (192, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybg8agA', '7324074'), - (192, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybg8agA', '7324075'), - (192, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybg8agA', '7324078'), - (192, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybg8agA', '7324082'), - (192, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mybg8agA', '7324867'), - (192, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mybg8agA', '7331457'), - (192, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'mybg8agA', '7332564'), - (192, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'mybg8agA', '7335193'), - (192, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mybg8agA', '7359624'), - (192, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mybg8agA', '7363643'), - (192, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybg8agA', '7368606'), - (192, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybg8agA', '7397462'), - (192, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybg8agA', '7424275'), - (192, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybg8agA', '7432751'), - (192, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybg8agA', '7432752'), - (192, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybg8agA', '7432753'), - (192, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybg8agA', '7432754'), - (192, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybg8agA', '7432755'), - (192, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybg8agA', '7432756'), - (192, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybg8agA', '7432758'), - (192, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybg8agA', '7432759'), - (192, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mybg8agA', '7433834'), - (192, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybg8agA', '7470197'), - (192, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybg8agA', '7685613'), - (192, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybg8agA', '7688194'), - (192, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybg8agA', '7688196'), - (192, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybg8agA', '7688289'), - (193, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dzO9pjam', '4420744'), - (193, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dzO9pjam', '4420747'), - (193, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dzO9pjam', '4568602'), - (193, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dzO9pjam', '4572153'), - (193, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dzO9pjam', '4585962'), - (193, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dzO9pjam', '4596356'), - (193, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dzO9pjam', '4598860'), - (193, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dzO9pjam', '4598861'), - (193, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dzO9pjam', '4602797'), - (193, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dzO9pjam', '4637896'), - (193, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dzO9pjam', '4642994'), - (193, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dzO9pjam', '4642995'), - (193, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dzO9pjam', '4642996'), - (193, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dzO9pjam', '4642997'), - (193, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dzO9pjam', '4645687'), - (193, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dzO9pjam', '4645698'), - (193, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dzO9pjam', '4645704'), - (193, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dzO9pjam', '4645705'), - (193, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dzO9pjam', '4668385'), - (193, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzO9pjam', '6045684'), - (194, 262, 'attending', '2021-06-26 19:33:20', '2025-12-17 19:47:38', 'amGy6jL4', '3149493'), - (194, 727, 'maybe', '2021-06-27 03:17:19', '2025-12-17 19:47:38', 'amGy6jL4', '3661377'), - (194, 845, 'maybe', '2021-06-27 23:27:49', '2025-12-17 19:47:38', 'amGy6jL4', '4015717'), - (194, 867, 'maybe', '2021-06-26 20:08:12', '2025-12-17 19:47:38', 'amGy6jL4', '4021848'), - (194, 869, 'attending', '2021-06-30 04:50:27', '2025-12-17 19:47:38', 'amGy6jL4', '4136744'), - (194, 870, 'maybe', '2021-06-27 23:28:03', '2025-12-17 19:47:39', 'amGy6jL4', '4136937'), - (194, 871, 'attending', '2021-07-05 15:58:45', '2025-12-17 19:47:39', 'amGy6jL4', '4136938'), - (194, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'amGy6jL4', '4136947'), - (194, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGy6jL4', '4210314'), - (194, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGy6jL4', '4225444'), - (194, 899, 'maybe', '2021-07-02 18:14:14', '2025-12-17 19:47:39', 'amGy6jL4', '4239259'), - (194, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGy6jL4', '4240316'), - (194, 905, 'attending', '2021-07-05 15:58:09', '2025-12-17 19:47:39', 'amGy6jL4', '4250163'), - (194, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGy6jL4', '4275957'), - (194, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGy6jL4', '6045684'), - (195, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40kgWbKA', '6045684'), - (196, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'AQ9PRZgA', '4420744'), - (196, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'AQ9PRZgA', '4420747'), - (196, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AQ9PRZgA', '4568602'), - (196, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'AQ9PRZgA', '4572153'), - (196, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'AQ9PRZgA', '4585962'), - (196, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'AQ9PRZgA', '4596356'), - (196, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AQ9PRZgA', '4598860'), - (196, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AQ9PRZgA', '4598861'), - (196, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'AQ9PRZgA', '4602797'), - (196, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AQ9PRZgA', '4637896'), - (196, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AQ9PRZgA', '4642994'), - (196, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AQ9PRZgA', '4642995'), - (196, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AQ9PRZgA', '4642996'), - (196, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AQ9PRZgA', '4642997'), - (196, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AQ9PRZgA', '4645687'), - (196, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AQ9PRZgA', '4645698'), - (196, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AQ9PRZgA', '4645704'), - (196, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AQ9PRZgA', '4645705'), - (196, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AQ9PRZgA', '4668385'), - (196, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ9PRZgA', '6045684'), - (197, 2514, 'attending', '2024-04-20 04:09:44', '2025-12-17 19:46:34', 'Agvo9ggm', '7074354'), - (197, 2515, 'not_attending', '2024-04-30 01:43:32', '2025-12-17 19:46:35', 'Agvo9ggm', '7074355'), - (197, 2516, 'attending', '2024-04-24 04:37:47', '2025-12-17 19:46:35', 'Agvo9ggm', '7074356'), - (197, 2519, 'attending', '2024-04-30 01:43:20', '2025-12-17 19:46:36', 'Agvo9ggm', '7074359'), - (197, 2520, 'maybe', '2024-04-30 01:43:17', '2025-12-17 19:46:35', 'Agvo9ggm', '7074360'), - (197, 2521, 'attending', '2024-04-30 01:43:23', '2025-12-17 19:46:29', 'Agvo9ggm', '7074361'), - (197, 2523, 'attending', '2024-04-30 01:43:22', '2025-12-17 19:46:36', 'Agvo9ggm', '7074363'), - (197, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Agvo9ggm', '7074364'), - (197, 2525, 'attending', '2024-04-30 01:43:22', '2025-12-17 19:46:28', 'Agvo9ggm', '7074365'), - (197, 2529, 'attending', '2024-04-30 01:43:18', '2025-12-17 19:46:35', 'Agvo9ggm', '7074369'), - (197, 2556, 'not_attending', '2024-04-20 04:06:11', '2025-12-17 19:46:34', 'Agvo9ggm', '7114955'), - (197, 2557, 'attending', '2024-04-20 04:07:08', '2025-12-17 19:46:34', 'Agvo9ggm', '7114956'), - (197, 2558, 'attending', '2024-04-20 04:10:45', '2025-12-17 19:46:35', 'Agvo9ggm', '7114957'), - (197, 2576, 'maybe', '2024-04-24 04:37:28', '2025-12-17 19:46:34', 'Agvo9ggm', '7164538'), - (197, 2581, 'attending', '2024-04-20 04:09:21', '2025-12-17 19:46:34', 'Agvo9ggm', '7169048'), - (197, 2584, 'not_attending', '2024-04-20 04:06:24', '2025-12-17 19:46:34', 'Agvo9ggm', '7175057'), - (197, 2585, 'maybe', '2024-04-20 04:06:39', '2025-12-17 19:46:34', 'Agvo9ggm', '7175828'), - (197, 2595, 'attending', '2024-04-20 04:09:43', '2025-12-17 19:46:34', 'Agvo9ggm', '7182252'), - (197, 2597, 'attending', '2024-04-22 14:13:58', '2025-12-17 19:46:34', 'Agvo9ggm', '7186726'), - (197, 2599, 'attending', '2024-04-22 13:04:25', '2025-12-17 19:46:34', 'Agvo9ggm', '7189372'), - (197, 2600, 'maybe', '2024-04-24 02:21:36', '2025-12-17 19:46:35', 'Agvo9ggm', '7196794'), - (197, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Agvo9ggm', '7220467'), - (197, 2603, 'maybe', '2024-04-30 01:43:14', '2025-12-17 19:46:35', 'Agvo9ggm', '7225669'), - (197, 2604, 'attending', '2024-04-30 01:43:20', '2025-12-17 19:46:36', 'Agvo9ggm', '7225670'), - (197, 2605, 'not_attending', '2024-04-28 03:44:39', '2025-12-17 19:46:35', 'Agvo9ggm', '7229243'), - (197, 2607, 'not_attending', '2024-04-29 20:42:42', '2025-12-17 19:46:35', 'Agvo9ggm', '7240136'), - (197, 2608, 'not_attending', '2024-04-30 01:25:58', '2025-12-17 19:46:35', 'Agvo9ggm', '7240272'), - (197, 2609, 'not_attending', '2024-04-30 01:43:04', '2025-12-17 19:46:35', 'Agvo9ggm', '7240354'), - (197, 2611, 'not_attending', '2024-05-02 23:08:30', '2025-12-17 19:46:35', 'Agvo9ggm', '7247642'), - (197, 2612, 'not_attending', '2024-05-02 23:08:31', '2025-12-17 19:46:35', 'Agvo9ggm', '7247643'), - (197, 2613, 'not_attending', '2024-05-02 23:08:32', '2025-12-17 19:46:35', 'Agvo9ggm', '7247644'), - (197, 2614, 'not_attending', '2024-05-02 23:08:34', '2025-12-17 19:46:35', 'Agvo9ggm', '7247645'), - (197, 2617, 'attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Agvo9ggm', '7251633'), - (197, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'Agvo9ggm', '7263048'), - (197, 2624, 'attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', 'Agvo9ggm', '7263301'), - (197, 2625, 'not_attending', '2024-05-10 22:39:46', '2025-12-17 19:46:35', 'Agvo9ggm', '7263302'), - (197, 2626, 'not_attending', '2024-05-12 19:50:07', '2025-12-17 19:46:35', 'Agvo9ggm', '7264723'), - (197, 2627, 'attending', '2024-05-12 19:50:09', '2025-12-17 19:46:35', 'Agvo9ggm', '7264724'), - (197, 2628, 'attending', '2024-05-12 19:50:10', '2025-12-17 19:46:36', 'Agvo9ggm', '7264725'), - (197, 2629, 'attending', '2024-05-12 19:50:11', '2025-12-17 19:46:28', 'Agvo9ggm', '7264726'), - (197, 2634, 'not_attending', '2024-05-14 23:15:15', '2025-12-17 19:46:35', 'Agvo9ggm', '7270321'), - (197, 2635, 'not_attending', '2024-05-14 23:15:16', '2025-12-17 19:46:35', 'Agvo9ggm', '7270322'), - (197, 2636, 'not_attending', '2024-05-14 23:15:23', '2025-12-17 19:46:35', 'Agvo9ggm', '7270323'), - (197, 2637, 'not_attending', '2024-05-14 23:15:23', '2025-12-17 19:46:35', 'Agvo9ggm', '7270324'), - (197, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'Agvo9ggm', '7302674'), - (197, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Agvo9ggm', '7324073'), - (197, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Agvo9ggm', '7324074'), - (197, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Agvo9ggm', '7324075'), - (197, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Agvo9ggm', '7324078'), - (197, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Agvo9ggm', '7324082'), - (197, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'Agvo9ggm', '7331457'), - (197, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'Agvo9ggm', '7356752'), - (197, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'Agvo9ggm', '7363643'), - (197, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Agvo9ggm', '7368606'), - (197, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Agvo9ggm', '7397462'), - (197, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Agvo9ggm', '7424275'), - (197, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Agvo9ggm', '7424276'), - (197, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Agvo9ggm', '7432751'), - (197, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Agvo9ggm', '7432752'), - (197, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Agvo9ggm', '7432753'), - (197, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Agvo9ggm', '7432754'), - (197, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Agvo9ggm', '7432755'), - (197, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Agvo9ggm', '7432756'), - (197, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Agvo9ggm', '7432758'), - (197, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Agvo9ggm', '7432759'), - (197, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Agvo9ggm', '7433834'), - (197, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Agvo9ggm', '7470197'), - (197, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Agvo9ggm', '7685613'), - (197, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Agvo9ggm', '7688194'), - (197, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Agvo9ggm', '7688196'), - (197, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Agvo9ggm', '7688289'), - (198, 258, 'attending', '2021-06-01 22:40:16', '2025-12-17 19:47:47', 'GmjorN3A', '3149489'), - (198, 745, 'not_attending', '2021-07-02 23:36:47', '2025-12-17 19:47:38', 'GmjorN3A', '3680625'), - (198, 823, 'attending', '2021-06-15 20:34:49', '2025-12-17 19:47:48', 'GmjorN3A', '3974109'), - (198, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjorN3A', '3975311'), - (198, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjorN3A', '3975312'), - (198, 838, 'attending', '2021-06-06 20:00:05', '2025-12-17 19:47:47', 'GmjorN3A', '3994992'), - (198, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjorN3A', '4014338'), - (198, 857, 'not_attending', '2021-11-24 20:17:47', '2025-12-17 19:47:37', 'GmjorN3A', '4015731'), - (198, 867, 'attending', '2021-06-26 17:40:06', '2025-12-17 19:47:38', 'GmjorN3A', '4021848'), - (198, 869, 'attending', '2021-06-30 18:12:01', '2025-12-17 19:47:38', 'GmjorN3A', '4136744'), - (198, 870, 'attending', '2021-06-29 20:57:40', '2025-12-17 19:47:38', 'GmjorN3A', '4136937'), - (198, 871, 'attending', '2021-07-05 18:38:09', '2025-12-17 19:47:39', 'GmjorN3A', '4136938'), - (198, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjorN3A', '4136947'), - (198, 875, 'not_attending', '2021-07-01 02:11:16', '2025-12-17 19:47:38', 'GmjorN3A', '4139816'), - (198, 879, 'maybe', '2021-06-28 20:40:47', '2025-12-17 19:47:38', 'GmjorN3A', '4147806'), - (198, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjorN3A', '4210314'), - (198, 885, 'attending', '2021-06-26 20:59:02', '2025-12-17 19:47:38', 'GmjorN3A', '4222370'), - (198, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjorN3A', '4225444'), - (198, 896, 'attending', '2021-06-29 22:30:57', '2025-12-17 19:47:38', 'GmjorN3A', '4231145'), - (198, 898, 'not_attending', '2021-06-30 03:41:43', '2025-12-17 19:47:38', 'GmjorN3A', '4236746'), - (198, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjorN3A', '4239259'), - (198, 900, 'attending', '2021-07-24 17:33:53', '2025-12-17 19:47:40', 'GmjorN3A', '4240316'), - (198, 901, 'attending', '2021-07-31 21:05:34', '2025-12-17 19:47:40', 'GmjorN3A', '4240317'), - (198, 902, 'attending', '2021-08-07 15:25:26', '2025-12-17 19:47:41', 'GmjorN3A', '4240318'), - (198, 903, 'attending', '2021-08-13 20:22:38', '2025-12-17 19:47:42', 'GmjorN3A', '4240320'), - (198, 905, 'attending', '2021-07-07 20:49:29', '2025-12-17 19:47:39', 'GmjorN3A', '4250163'), - (198, 909, 'attending', '2021-07-10 19:56:00', '2025-12-17 19:47:39', 'GmjorN3A', '4258187'), - (198, 911, 'not_attending', '2021-07-13 21:21:34', '2025-12-17 19:47:39', 'GmjorN3A', '4264465'), - (198, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjorN3A', '4275957'), - (198, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjorN3A', '4277819'), - (198, 926, 'attending', '2021-08-17 20:02:15', '2025-12-17 19:47:42', 'GmjorN3A', '4297211'), - (198, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjorN3A', '4301723'), - (198, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GmjorN3A', '4302093'), - (198, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjorN3A', '4304151'), - (198, 961, 'not_attending', '2021-08-13 20:46:22', '2025-12-17 19:47:42', 'GmjorN3A', '4345519'), - (198, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjorN3A', '4356801'), - (198, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'GmjorN3A', '4358025'), - (198, 973, 'attending', '2021-08-21 20:44:56', '2025-12-17 19:47:42', 'GmjorN3A', '4366186'), - (198, 974, 'attending', '2021-08-28 21:19:53', '2025-12-17 19:47:42', 'GmjorN3A', '4366187'), - (198, 985, 'attending', '2021-08-21 02:37:59', '2025-12-17 19:47:42', 'GmjorN3A', '4391748'), - (198, 988, 'attending', '2021-08-27 22:23:47', '2025-12-17 19:47:42', 'GmjorN3A', '4402823'), - (198, 989, 'attending', '2021-09-09 02:07:58', '2025-12-17 19:47:43', 'GmjorN3A', '4414282'), - (198, 990, 'attending', '2021-09-04 03:00:08', '2025-12-17 19:47:43', 'GmjorN3A', '4420735'), - (198, 991, 'attending', '2021-09-09 02:08:23', '2025-12-17 19:47:43', 'GmjorN3A', '4420738'), - (198, 992, 'attending', '2021-09-18 18:15:24', '2025-12-17 19:47:33', 'GmjorN3A', '4420739'), - (198, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjorN3A', '4420741'), - (198, 994, 'attending', '2021-10-02 18:55:41', '2025-12-17 19:47:34', 'GmjorN3A', '4420742'), - (198, 995, 'attending', '2021-10-09 16:06:06', '2025-12-17 19:47:34', 'GmjorN3A', '4420744'), - (198, 996, 'attending', '2021-10-16 20:31:35', '2025-12-17 19:47:35', 'GmjorN3A', '4420747'), - (198, 997, 'attending', '2021-10-23 19:45:37', '2025-12-17 19:47:35', 'GmjorN3A', '4420748'), - (198, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjorN3A', '4420749'), - (198, 1019, 'maybe', '2021-09-16 22:27:54', '2025-12-17 19:47:43', 'GmjorN3A', '4450515'), - (198, 1020, 'attending', '2021-09-13 22:57:57', '2025-12-17 19:47:43', 'GmjorN3A', '4451787'), - (198, 1022, 'attending', '2021-09-15 21:33:51', '2025-12-17 19:47:43', 'GmjorN3A', '4458628'), - (198, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GmjorN3A', '4461883'), - (198, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GmjorN3A', '4508342'), - (198, 1074, 'attending', '2021-09-29 21:08:57', '2025-12-17 19:47:34', 'GmjorN3A', '4528953'), - (198, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GmjorN3A', '4568602'), - (198, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GmjorN3A', '4572153'), - (198, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GmjorN3A', '4585962'), - (198, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'GmjorN3A', '4596356'), - (198, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GmjorN3A', '4598860'), - (198, 1098, 'attending', '2021-11-08 03:18:23', '2025-12-17 19:47:36', 'GmjorN3A', '4598861'), - (198, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GmjorN3A', '4602797'), - (198, 1106, 'attending', '2021-11-10 03:29:52', '2025-12-17 19:47:36', 'GmjorN3A', '4620452'), - (198, 1107, 'not_attending', '2021-11-16 19:43:11', '2025-12-17 19:47:37', 'GmjorN3A', '4620697'), - (198, 1114, 'attending', '2021-11-12 23:30:14', '2025-12-17 19:47:36', 'GmjorN3A', '4637896'), - (198, 1116, 'not_attending', '2021-12-01 22:12:00', '2025-12-17 19:47:37', 'GmjorN3A', '4642994'), - (198, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'GmjorN3A', '4642995'), - (198, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GmjorN3A', '4642996'), - (198, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GmjorN3A', '4642997'), - (198, 1126, 'not_attending', '2021-12-12 00:31:51', '2025-12-17 19:47:38', 'GmjorN3A', '4645687'), - (198, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GmjorN3A', '4645698'), - (198, 1128, 'attending', '2021-11-20 20:20:53', '2025-12-17 19:47:37', 'GmjorN3A', '4645704'), - (198, 1129, 'attending', '2021-11-24 19:36:00', '2025-12-17 19:47:37', 'GmjorN3A', '4645705'), - (198, 1130, 'attending', '2021-12-04 20:25:39', '2025-12-17 19:47:37', 'GmjorN3A', '4658824'), - (198, 1134, 'not_attending', '2021-11-24 20:17:50', '2025-12-17 19:47:37', 'GmjorN3A', '4668385'), - (198, 1138, 'attending', '2021-11-29 21:29:19', '2025-12-17 19:47:37', 'GmjorN3A', '4675407'), - (198, 1139, 'attending', '2021-11-29 07:25:33', '2025-12-17 19:47:37', 'GmjorN3A', '4675604'), - (198, 1140, 'attending', '2021-11-30 03:52:55', '2025-12-17 19:47:37', 'GmjorN3A', '4679701'), - (198, 1142, 'attending', '2021-12-06 18:07:51', '2025-12-17 19:47:37', 'GmjorN3A', '4681923'), - (198, 1144, 'attending', '2021-12-06 18:07:34', '2025-12-17 19:47:37', 'GmjorN3A', '4687090'), - (198, 1146, 'not_attending', '2021-12-09 04:06:43', '2025-12-17 19:47:38', 'GmjorN3A', '4692841'), - (198, 1148, 'not_attending', '2021-12-17 23:47:33', '2025-12-17 19:47:31', 'GmjorN3A', '4692843'), - (198, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GmjorN3A', '4694407'), - (198, 1156, 'attending', '2021-12-18 21:32:17', '2025-12-17 19:47:31', 'GmjorN3A', '4715207'), - (198, 1164, 'attending', '2022-01-03 20:10:15', '2025-12-17 19:47:31', 'GmjorN3A', '4724208'), - (198, 1165, 'attending', '2022-01-03 20:10:16', '2025-12-17 19:47:31', 'GmjorN3A', '4724210'), - (198, 1174, 'attending', '2022-01-12 20:36:43', '2025-12-17 19:47:31', 'GmjorN3A', '4736496'), - (198, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GmjorN3A', '4736497'), - (198, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GmjorN3A', '4736499'), - (198, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GmjorN3A', '4736500'), - (198, 1179, 'attending', '2022-02-19 22:11:05', '2025-12-17 19:47:32', 'GmjorN3A', '4736501'), - (198, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GmjorN3A', '4736503'), - (198, 1182, 'not_attending', '2022-03-12 23:02:28', '2025-12-17 19:47:33', 'GmjorN3A', '4736504'), - (198, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GmjorN3A', '4746789'), - (198, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'GmjorN3A', '4753929'), - (198, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GmjorN3A', '5038850'), - (198, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GmjorN3A', '5045826'), - (198, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GmjorN3A', '5132533'), - (198, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GmjorN3A', '5186582'), - (198, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GmjorN3A', '5186583'), - (198, 1274, 'attending', '2022-04-02 16:58:35', '2025-12-17 19:47:26', 'GmjorN3A', '5186585'), - (198, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GmjorN3A', '5190437'), - (198, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GmjorN3A', '5195095'), - (198, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GmjorN3A', '5215989'), - (198, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GmjorN3A', '5223686'), - (198, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'GmjorN3A', '5227432'), - (198, 1346, 'attending', '2022-04-23 21:09:52', '2025-12-17 19:47:27', 'GmjorN3A', '5247467'), - (198, 1362, 'attending', '2022-04-30 20:03:26', '2025-12-17 19:47:28', 'GmjorN3A', '5260800'), - (198, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GmjorN3A', '5269930'), - (198, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GmjorN3A', '5271448'), - (198, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'GmjorN3A', '5271449'), - (198, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'GmjorN3A', '5276469'), - (198, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GmjorN3A', '5278159'), - (198, 1407, 'attending', '2022-06-03 22:44:17', '2025-12-17 19:47:30', 'GmjorN3A', '5363695'), - (198, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GmjorN3A', '5365960'), - (198, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'GmjorN3A', '5368973'), - (198, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GmjorN3A', '5378247'), - (198, 1431, 'attending', '2022-06-11 19:46:14', '2025-12-17 19:47:30', 'GmjorN3A', '5389605'), - (198, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GmjorN3A', '5397265'), - (198, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'GmjorN3A', '5403967'), - (198, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GmjorN3A', '5404786'), - (198, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GmjorN3A', '5405203'), - (198, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'GmjorN3A', '5408794'), - (198, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'GmjorN3A', '5411699'), - (198, 1482, 'attending', '2022-06-25 18:23:01', '2025-12-17 19:47:19', 'GmjorN3A', '5412550'), - (198, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GmjorN3A', '5415046'), - (198, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GmjorN3A', '5422086'), - (198, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GmjorN3A', '5422406'), - (198, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GmjorN3A', '5424565'), - (198, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GmjorN3A', '5426882'), - (198, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'GmjorN3A', '5427083'), - (198, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GmjorN3A', '5441125'), - (198, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GmjorN3A', '5441126'), - (198, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GmjorN3A', '5441128'), - (198, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjorN3A', '5441131'), - (198, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjorN3A', '5441132'), - (198, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'GmjorN3A', '5446643'), - (198, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GmjorN3A', '5453325'), - (198, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GmjorN3A', '5454516'), - (198, 1544, 'attending', '2022-09-17 18:16:52', '2025-12-17 19:47:11', 'GmjorN3A', '5454517'), - (198, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GmjorN3A', '5454605'), - (198, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GmjorN3A', '5455037'), - (198, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjorN3A', '5461278'), - (198, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GmjorN3A', '5469480'), - (198, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'GmjorN3A', '5471073'), - (198, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GmjorN3A', '5474663'), - (198, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GmjorN3A', '5482022'), - (198, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'GmjorN3A', '5482793'), - (198, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjorN3A', '5488912'), - (198, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjorN3A', '5492192'), - (198, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjorN3A', '5493139'), - (198, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjorN3A', '5493200'), - (198, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjorN3A', '5502188'), - (198, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjorN3A', '5505059'), - (198, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GmjorN3A', '5509055'), - (198, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjorN3A', '5512862'), - (198, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjorN3A', '5513985'), - (198, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'GmjorN3A', '5519981'), - (198, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjorN3A', '5522550'), - (198, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjorN3A', '5534683'), - (198, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjorN3A', '5537735'), - (198, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjorN3A', '5540859'), - (198, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjorN3A', '5546619'), - (198, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GmjorN3A', '5555245'), - (198, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjorN3A', '5557747'), - (198, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjorN3A', '5560255'), - (198, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjorN3A', '5562906'), - (198, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjorN3A', '5600604'), - (198, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjorN3A', '5605544'), - (198, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'GmjorN3A', '5606737'), - (198, 1712, 'not_attending', '2022-10-13 22:25:20', '2025-12-17 19:47:12', 'GmjorN3A', '5622073'), - (198, 1719, 'attending', '2022-10-08 15:57:25', '2025-12-17 19:47:12', 'GmjorN3A', '5630958'), - (198, 1720, 'attending', '2022-10-15 19:53:32', '2025-12-17 19:47:12', 'GmjorN3A', '5630959'), - (198, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GmjorN3A', '5630960'), - (198, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjorN3A', '5630961'), - (198, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjorN3A', '5630962'), - (198, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GmjorN3A', '5630966'), - (198, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GmjorN3A', '5630967'), - (198, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjorN3A', '5630968'), - (198, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjorN3A', '5635406'), - (198, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjorN3A', '5638765'), - (198, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjorN3A', '5640097'), - (198, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjorN3A', '5640843'), - (198, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjorN3A', '5641521'), - (198, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GmjorN3A', '5642818'), - (198, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjorN3A', '5652395'), - (198, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GmjorN3A', '5670445'), - (198, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjorN3A', '5671637'), - (198, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjorN3A', '5672329'), - (198, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjorN3A', '5674057'), - (198, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjorN3A', '5674060'), - (198, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GmjorN3A', '5677461'), - (198, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjorN3A', '5698046'), - (198, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GmjorN3A', '5699760'), - (198, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjorN3A', '5741601'), - (198, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjorN3A', '5763458'), - (198, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjorN3A', '5774172'), - (198, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'GmjorN3A', '5818247'), - (198, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjorN3A', '5819471'), - (198, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'GmjorN3A', '5827739'), - (198, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjorN3A', '5844306'), - (198, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjorN3A', '5850159'), - (198, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjorN3A', '5858999'), - (198, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjorN3A', '5871984'), - (198, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjorN3A', '5876354'), - (198, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjorN3A', '5880939'), - (198, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjorN3A', '5887890'), - (198, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjorN3A', '5888598'), - (198, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjorN3A', '5893260'), - (198, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjorN3A', '6045684'), - (199, 249, 'not_attending', '2020-11-17 23:13:35', '2025-12-17 19:47:54', 'LmpjJqQ4', '3149480'), - (199, 410, 'attending', '2020-11-22 05:42:25', '2025-12-17 19:47:54', 'LmpjJqQ4', '3236469'), - (199, 452, 'not_attending', '2020-11-27 05:58:03', '2025-12-17 19:47:54', 'LmpjJqQ4', '3272981'), - (199, 468, 'attending', '2020-11-15 21:52:41', '2025-12-17 19:47:54', 'LmpjJqQ4', '3285413'), - (199, 469, 'attending', '2020-11-22 05:42:34', '2025-12-17 19:47:54', 'LmpjJqQ4', '3285414'), - (199, 481, 'not_attending', '2020-11-20 01:34:51', '2025-12-17 19:47:54', 'LmpjJqQ4', '3297764'), - (199, 487, 'not_attending', '2020-11-27 05:58:11', '2025-12-17 19:47:54', 'LmpjJqQ4', '3311122'), - (199, 488, 'not_attending', '2020-12-02 03:54:22', '2025-12-17 19:47:54', 'LmpjJqQ4', '3312757'), - (199, 493, 'attending', '2020-11-29 16:29:06', '2025-12-17 19:47:54', 'LmpjJqQ4', '3313856'), - (199, 494, 'attending', '2020-11-29 17:27:39', '2025-12-17 19:47:54', 'LmpjJqQ4', '3313866'), - (199, 496, 'attending', '2020-11-29 21:47:34', '2025-12-17 19:47:54', 'LmpjJqQ4', '3314269'), - (199, 497, 'attending', '2020-11-29 21:47:38', '2025-12-17 19:47:55', 'LmpjJqQ4', '3314270'), - (199, 498, 'attending', '2020-11-29 22:25:38', '2025-12-17 19:47:54', 'LmpjJqQ4', '3314302'), - (199, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'LmpjJqQ4', '3314909'), - (199, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'LmpjJqQ4', '3314964'), - (199, 501, 'attending', '2020-12-02 03:58:51', '2025-12-17 19:47:54', 'LmpjJqQ4', '3317834'), - (199, 502, 'attending', '2020-12-09 06:12:45', '2025-12-17 19:47:55', 'LmpjJqQ4', '3323365'), - (199, 506, 'attending', '2020-12-13 21:45:41', '2025-12-17 19:47:55', 'LmpjJqQ4', '3323375'), - (199, 513, 'attending', '2020-12-14 14:53:55', '2025-12-17 19:47:55', 'LmpjJqQ4', '3329383'), - (199, 516, 'maybe', '2020-12-15 02:00:40', '2025-12-17 19:47:48', 'LmpjJqQ4', '3334530'), - (199, 517, 'maybe', '2020-12-15 02:00:01', '2025-12-17 19:47:48', 'LmpjJqQ4', '3337137'), - (199, 518, 'maybe', '2020-12-15 02:00:05', '2025-12-17 19:47:48', 'LmpjJqQ4', '3337138'), - (199, 519, 'not_attending', '2020-12-22 00:22:05', '2025-12-17 19:47:55', 'LmpjJqQ4', '3337448'), - (199, 520, 'not_attending', '2020-12-20 21:48:59', '2025-12-17 19:47:55', 'LmpjJqQ4', '3337453'), - (199, 521, 'not_attending', '2020-12-21 15:08:32', '2025-12-17 19:47:48', 'LmpjJqQ4', '3337454'), - (199, 526, 'maybe', '2020-12-27 23:30:23', '2025-12-17 19:47:48', 'LmpjJqQ4', '3351539'), - (199, 529, 'not_attending', '2021-01-05 18:05:48', '2025-12-17 19:47:48', 'LmpjJqQ4', '3364568'), - (199, 530, 'not_attending', '2021-01-03 06:21:24', '2025-12-17 19:47:48', 'LmpjJqQ4', '3373923'), - (199, 532, 'maybe', '2021-01-03 06:21:10', '2025-12-17 19:47:48', 'LmpjJqQ4', '3381412'), - (199, 534, 'maybe', '2021-01-05 04:33:38', '2025-12-17 19:47:48', 'LmpjJqQ4', '3384157'), - (199, 536, 'maybe', '2021-01-10 00:06:03', '2025-12-17 19:47:48', 'LmpjJqQ4', '3386848'), - (199, 538, 'not_attending', '2021-01-11 16:19:44', '2025-12-17 19:47:48', 'LmpjJqQ4', '3388151'), - (199, 540, 'maybe', '2021-01-07 21:20:24', '2025-12-17 19:47:48', 'LmpjJqQ4', '3389527'), - (199, 542, 'attending', '2021-01-12 03:02:37', '2025-12-17 19:47:48', 'LmpjJqQ4', '3395013'), - (199, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'LmpjJqQ4', '3396499'), - (199, 548, 'maybe', '2021-01-13 16:29:40', '2025-12-17 19:47:48', 'LmpjJqQ4', '3403650'), - (199, 549, 'not_attending', '2021-01-19 04:13:12', '2025-12-17 19:47:49', 'LmpjJqQ4', '3406988'), - (199, 550, 'not_attending', '2021-01-17 18:12:36', '2025-12-17 19:47:48', 'LmpjJqQ4', '3407018'), - (199, 551, 'maybe', '2021-01-15 17:57:40', '2025-12-17 19:47:49', 'LmpjJqQ4', '3407219'), - (199, 555, 'not_attending', '2021-01-24 00:43:16', '2025-12-17 19:47:49', 'LmpjJqQ4', '3416576'), - (199, 556, 'not_attending', '2021-01-24 20:34:46', '2025-12-17 19:47:49', 'LmpjJqQ4', '3417170'), - (199, 558, 'maybe', '2021-01-19 16:05:51', '2025-12-17 19:47:49', 'LmpjJqQ4', '3418925'), - (199, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'LmpjJqQ4', '3426074'), - (199, 567, 'maybe', '2021-01-24 20:32:33', '2025-12-17 19:47:50', 'LmpjJqQ4', '3428895'), - (199, 568, 'maybe', '2021-01-24 20:32:41', '2025-12-17 19:47:50', 'LmpjJqQ4', '3430267'), - (199, 569, 'not_attending', '2021-01-26 02:09:40', '2025-12-17 19:47:49', 'LmpjJqQ4', '3432673'), - (199, 570, 'maybe', '2021-01-26 15:55:17', '2025-12-17 19:47:50', 'LmpjJqQ4', '3435538'), - (199, 571, 'maybe', '2021-02-12 17:39:06', '2025-12-17 19:47:50', 'LmpjJqQ4', '3435539'), - (199, 579, 'maybe', '2021-01-31 21:00:06', '2025-12-17 19:47:50', 'LmpjJqQ4', '3440978'), - (199, 591, 'maybe', '2021-02-05 01:31:20', '2025-12-17 19:47:50', 'LmpjJqQ4', '3465880'), - (199, 600, 'not_attending', '2021-02-16 00:49:37', '2025-12-17 19:47:50', 'LmpjJqQ4', '3468125'), - (199, 602, 'maybe', '2021-02-11 00:08:18', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470303'), - (199, 603, 'maybe', '2021-02-11 00:08:21', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470304'), - (199, 604, 'maybe', '2021-02-11 00:08:23', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470305'), - (199, 605, 'not_attending', '2021-02-08 22:17:01', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470991'), - (199, 607, 'not_attending', '2021-02-16 00:49:16', '2025-12-17 19:47:50', 'LmpjJqQ4', '3471882'), - (199, 611, 'not_attending', '2021-02-16 00:49:22', '2025-12-17 19:47:50', 'LmpjJqQ4', '3482659'), - (199, 615, 'maybe', '2021-02-16 00:47:44', '2025-12-17 19:47:50', 'LmpjJqQ4', '3490045'), - (199, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'LmpjJqQ4', '3517815'), - (199, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'LmpjJqQ4', '3517816'), - (199, 623, 'not_attending', '2021-02-26 00:31:58', '2025-12-17 19:47:51', 'LmpjJqQ4', '3523941'), - (199, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'LmpjJqQ4', '3533850'), - (199, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'LmpjJqQ4', '3536632'), - (199, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'LmpjJqQ4', '3536656'), - (199, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'LmpjJqQ4', '3539916'), - (199, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'LmpjJqQ4', '3539917'), - (199, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'LmpjJqQ4', '3539918'), - (199, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539919'), - (199, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539920'), - (199, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539921'), - (199, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539922'), - (199, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'LmpjJqQ4', '3539923'), - (199, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'LmpjJqQ4', '3539927'), - (199, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'LmpjJqQ4', '3582734'), - (199, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'LmpjJqQ4', '3583262'), - (199, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'LmpjJqQ4', '3619523'), - (199, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'LmpjJqQ4', '3661369'), - (199, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'LmpjJqQ4', '3674262'), - (199, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'LmpjJqQ4', '3677402'), - (199, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'LmpjJqQ4', '3730212'), - (199, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'LmpjJqQ4', '3793156'), - (199, 823, 'not_attending', '2021-06-17 00:50:41', '2025-12-17 19:47:48', 'LmpjJqQ4', '3974109'), - (199, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'LmpjJqQ4', '3975311'), - (199, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpjJqQ4', '3975312'), - (199, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpjJqQ4', '3994992'), - (199, 841, 'not_attending', '2021-06-15 19:02:35', '2025-12-17 19:47:48', 'LmpjJqQ4', '4007434'), - (199, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpjJqQ4', '4014338'), - (199, 867, 'attending', '2021-06-24 21:12:42', '2025-12-17 19:47:38', 'LmpjJqQ4', '4021848'), - (199, 868, 'attending', '2021-06-18 23:52:51', '2025-12-17 19:47:48', 'LmpjJqQ4', '4022012'), - (199, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpjJqQ4', '4136744'), - (199, 870, 'not_attending', '2021-07-02 22:01:55', '2025-12-17 19:47:39', 'LmpjJqQ4', '4136937'), - (199, 871, 'not_attending', '2021-07-10 21:04:54', '2025-12-17 19:47:39', 'LmpjJqQ4', '4136938'), - (199, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpjJqQ4', '4136947'), - (199, 873, 'not_attending', '2021-06-17 00:50:38', '2025-12-17 19:47:48', 'LmpjJqQ4', '4138297'), - (199, 874, 'not_attending', '2021-06-24 23:07:47', '2025-12-17 19:47:38', 'LmpjJqQ4', '4139815'), - (199, 876, 'maybe', '2021-06-17 00:51:24', '2025-12-17 19:47:38', 'LmpjJqQ4', '4139926'), - (199, 878, 'maybe', '2021-06-17 00:51:09', '2025-12-17 19:47:38', 'LmpjJqQ4', '4143331'), - (199, 879, 'not_attending', '2021-06-28 22:00:54', '2025-12-17 19:47:38', 'LmpjJqQ4', '4147806'), - (199, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpjJqQ4', '4210314'), - (199, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpjJqQ4', '4225444'), - (199, 898, 'maybe', '2021-06-30 15:06:10', '2025-12-17 19:47:38', 'LmpjJqQ4', '4236746'), - (199, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpjJqQ4', '4239259'), - (199, 900, 'attending', '2021-07-22 20:42:59', '2025-12-17 19:47:40', 'LmpjJqQ4', '4240316'), - (199, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'LmpjJqQ4', '4240317'), - (199, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'LmpjJqQ4', '4240318'), - (199, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'LmpjJqQ4', '4240320'), - (199, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpjJqQ4', '4250163'), - (199, 917, 'maybe', '2021-07-12 12:54:04', '2025-12-17 19:47:39', 'LmpjJqQ4', '4274481'), - (199, 919, 'maybe', '2021-07-17 20:56:09', '2025-12-17 19:47:39', 'LmpjJqQ4', '4275957'), - (199, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpjJqQ4', '4277819'), - (199, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpjJqQ4', '4301723'), - (199, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpjJqQ4', '4302093'), - (199, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpjJqQ4', '4304151'), - (199, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'LmpjJqQ4', '4345519'), - (199, 971, 'not_attending', '2021-09-08 23:15:37', '2025-12-17 19:47:43', 'LmpjJqQ4', '4356801'), - (199, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpjJqQ4', '4358025'), - (199, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'LmpjJqQ4', '4366186'), - (199, 974, 'attending', '2021-08-24 15:44:48', '2025-12-17 19:47:42', 'LmpjJqQ4', '4366187'), - (199, 987, 'attending', '2021-09-01 21:33:02', '2025-12-17 19:47:43', 'LmpjJqQ4', '4402634'), - (199, 988, 'maybe', '2021-08-27 00:06:51', '2025-12-17 19:47:42', 'LmpjJqQ4', '4402823'), - (199, 989, 'maybe', '2021-08-28 22:28:21', '2025-12-17 19:47:43', 'LmpjJqQ4', '4414282'), - (199, 990, 'attending', '2021-09-04 00:19:07', '2025-12-17 19:47:43', 'LmpjJqQ4', '4420735'), - (199, 991, 'attending', '2021-09-11 21:57:18', '2025-12-17 19:47:43', 'LmpjJqQ4', '4420738'), - (199, 992, 'attending', '2021-09-18 18:13:38', '2025-12-17 19:47:33', 'LmpjJqQ4', '4420739'), - (199, 993, 'attending', '2021-09-25 03:10:26', '2025-12-17 19:47:34', 'LmpjJqQ4', '4420741'), - (199, 994, 'attending', '2021-10-02 21:01:06', '2025-12-17 19:47:34', 'LmpjJqQ4', '4420742'), - (199, 995, 'not_attending', '2021-10-09 20:37:18', '2025-12-17 19:47:34', 'LmpjJqQ4', '4420744'), - (199, 996, 'not_attending', '2021-10-16 22:29:43', '2025-12-17 19:47:35', 'LmpjJqQ4', '4420747'), - (199, 997, 'not_attending', '2021-10-23 21:18:57', '2025-12-17 19:47:35', 'LmpjJqQ4', '4420748'), - (199, 998, 'attending', '2021-10-30 19:57:14', '2025-12-17 19:47:36', 'LmpjJqQ4', '4420749'), - (199, 1001, 'maybe', '2021-08-30 13:38:36', '2025-12-17 19:47:43', 'LmpjJqQ4', '4424687'), - (199, 1002, 'attending', '2021-08-30 13:37:57', '2025-12-17 19:47:43', 'LmpjJqQ4', '4424932'), - (199, 1016, 'attending', '2021-09-04 00:18:40', '2025-12-17 19:47:43', 'LmpjJqQ4', '4441271'), - (199, 1017, 'attending', '2021-09-06 23:16:10', '2025-12-17 19:47:43', 'LmpjJqQ4', '4441822'), - (199, 1020, 'attending', '2021-09-06 15:38:03', '2025-12-17 19:47:43', 'LmpjJqQ4', '4451787'), - (199, 1021, 'attending', '2021-09-20 22:16:02', '2025-12-17 19:47:34', 'LmpjJqQ4', '4451803'), - (199, 1023, 'maybe', '2021-09-13 20:31:00', '2025-12-17 19:47:43', 'LmpjJqQ4', '4461883'), - (199, 1025, 'maybe', '2021-09-14 20:35:30', '2025-12-17 19:47:43', 'LmpjJqQ4', '4462052'), - (199, 1029, 'maybe', '2021-09-13 02:51:24', '2025-12-17 19:47:43', 'LmpjJqQ4', '4473063'), - (199, 1030, 'not_attending', '2021-09-18 18:14:10', '2025-12-17 19:47:34', 'LmpjJqQ4', '4473064'), - (199, 1035, 'not_attending', '2021-09-20 19:45:43', '2025-12-17 19:47:34', 'LmpjJqQ4', '4492184'), - (199, 1036, 'maybe', '2021-09-18 18:13:59', '2025-12-17 19:47:34', 'LmpjJqQ4', '4493166'), - (199, 1066, 'attending', '2021-09-25 14:58:40', '2025-12-17 19:47:34', 'LmpjJqQ4', '4506039'), - (199, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpjJqQ4', '4508342'), - (199, 1068, 'attending', '2021-09-30 21:40:36', '2025-12-17 19:47:34', 'LmpjJqQ4', '4511471'), - (199, 1070, 'not_attending', '2021-10-01 22:53:59', '2025-12-17 19:47:34', 'LmpjJqQ4', '4512562'), - (199, 1074, 'attending', '2021-09-29 20:41:21', '2025-12-17 19:47:34', 'LmpjJqQ4', '4528953'), - (199, 1079, 'attending', '2021-10-20 21:37:47', '2025-12-17 19:47:35', 'LmpjJqQ4', '4563823'), - (199, 1082, 'maybe', '2021-10-12 00:04:26', '2025-12-17 19:47:35', 'LmpjJqQ4', '4566762'), - (199, 1085, 'attending', '2021-12-23 21:35:09', '2025-12-17 19:47:31', 'LmpjJqQ4', '4568542'), - (199, 1086, 'not_attending', '2021-10-14 19:58:47', '2025-12-17 19:47:35', 'LmpjJqQ4', '4568602'), - (199, 1087, 'not_attending', '2021-10-15 11:04:46', '2025-12-17 19:47:35', 'LmpjJqQ4', '4572153'), - (199, 1092, 'not_attending', '2021-10-21 21:56:52', '2025-12-17 19:47:35', 'LmpjJqQ4', '4582837'), - (199, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpjJqQ4', '4585962'), - (199, 1094, 'maybe', '2021-10-21 03:49:24', '2025-12-17 19:47:36', 'LmpjJqQ4', '4587337'), - (199, 1095, 'not_attending', '2021-10-27 21:43:31', '2025-12-17 19:47:36', 'LmpjJqQ4', '4596356'), - (199, 1097, 'not_attending', '2021-11-03 18:07:26', '2025-12-17 19:47:36', 'LmpjJqQ4', '4598860'), - (199, 1098, 'not_attending', '2021-11-09 16:17:26', '2025-12-17 19:47:36', 'LmpjJqQ4', '4598861'), - (199, 1099, 'attending', '2021-11-06 22:32:31', '2025-12-17 19:47:36', 'LmpjJqQ4', '4602797'), - (199, 1107, 'not_attending', '2021-11-17 00:45:32', '2025-12-17 19:47:37', 'LmpjJqQ4', '4620697'), - (199, 1114, 'maybe', '2021-11-12 02:27:35', '2025-12-17 19:47:36', 'LmpjJqQ4', '4637896'), - (199, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpjJqQ4', '4642994'), - (199, 1117, 'maybe', '2021-12-02 17:00:48', '2025-12-17 19:47:38', 'LmpjJqQ4', '4642995'), - (199, 1118, 'maybe', '2021-12-02 17:01:06', '2025-12-17 19:47:38', 'LmpjJqQ4', '4642996'), - (199, 1119, 'maybe', '2021-12-02 17:01:09', '2025-12-17 19:47:31', 'LmpjJqQ4', '4642997'), - (199, 1126, 'not_attending', '2021-12-11 23:44:54', '2025-12-17 19:47:38', 'LmpjJqQ4', '4645687'), - (199, 1127, 'maybe', '2021-12-02 17:00:59', '2025-12-17 19:47:38', 'LmpjJqQ4', '4645698'), - (199, 1128, 'not_attending', '2021-11-20 20:14:53', '2025-12-17 19:47:37', 'LmpjJqQ4', '4645704'), - (199, 1129, 'maybe', '2021-11-22 00:51:08', '2025-12-17 19:47:37', 'LmpjJqQ4', '4645705'), - (199, 1132, 'not_attending', '2021-11-22 23:26:02', '2025-12-17 19:47:37', 'LmpjJqQ4', '4660657'), - (199, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpjJqQ4', '4668385'), - (199, 1140, 'maybe', '2021-12-02 17:00:25', '2025-12-17 19:47:37', 'LmpjJqQ4', '4679701'), - (199, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpjJqQ4', '4694407'), - (199, 1164, 'maybe', '2021-12-28 06:24:57', '2025-12-17 19:47:31', 'LmpjJqQ4', '4724208'), - (199, 1165, 'maybe', '2021-12-28 06:25:03', '2025-12-17 19:47:31', 'LmpjJqQ4', '4724210'), - (199, 1167, 'not_attending', '2022-01-03 18:40:29', '2025-12-17 19:47:31', 'LmpjJqQ4', '4731015'), - (199, 1170, 'maybe', '2022-01-03 18:40:16', '2025-12-17 19:47:31', 'LmpjJqQ4', '4731045'), - (199, 1174, 'attending', '2022-01-15 23:43:51', '2025-12-17 19:47:31', 'LmpjJqQ4', '4736496'), - (199, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'LmpjJqQ4', '4736497'), - (199, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpjJqQ4', '4736499'), - (199, 1178, 'not_attending', '2022-01-29 22:17:12', '2025-12-17 19:47:32', 'LmpjJqQ4', '4736500'), - (199, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'LmpjJqQ4', '4736503'), - (199, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpjJqQ4', '4736504'), - (199, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpjJqQ4', '4746789'), - (199, 1188, 'maybe', '2022-01-15 19:54:44', '2025-12-17 19:47:32', 'LmpjJqQ4', '4753929'), - (199, 1193, 'maybe', '2022-01-15 19:54:56', '2025-12-17 19:47:32', 'LmpjJqQ4', '4759563'), - (199, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpjJqQ4', '5038850'), - (199, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpjJqQ4', '5045826'), - (199, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpjJqQ4', '5132533'), - (199, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'LmpjJqQ4', '5186582'), - (199, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpjJqQ4', '5186583'), - (199, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'LmpjJqQ4', '5186585'), - (199, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpjJqQ4', '5190437'), - (199, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'LmpjJqQ4', '5195095'), - (199, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpjJqQ4', '5215989'), - (199, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'LmpjJqQ4', '5223686'), - (199, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'LmpjJqQ4', '5227432'), - (199, 1346, 'not_attending', '2022-04-23 22:07:17', '2025-12-17 19:47:27', 'LmpjJqQ4', '5247467'), - (199, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'LmpjJqQ4', '5260800'), - (199, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'LmpjJqQ4', '5269930'), - (199, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'LmpjJqQ4', '5271448'), - (199, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'LmpjJqQ4', '5271449'), - (199, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'LmpjJqQ4', '5276469'), - (199, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'LmpjJqQ4', '5278159'), - (199, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'LmpjJqQ4', '5363695'), - (199, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'LmpjJqQ4', '5365960'), - (199, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'LmpjJqQ4', '5368973'), - (199, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpjJqQ4', '6045684'), - (200, 1177, 'attending', '2022-02-18 14:59:08', '2025-12-17 19:47:32', 'mj6EzlNm', '4736499'), - (200, 1231, 'attending', '2022-02-18 14:58:41', '2025-12-17 19:47:33', 'mj6EzlNm', '5037637'), - (200, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mj6EzlNm', '6045684'), - (201, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4E5gqyX4', '4637896'), - (201, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4E5gqyX4', '4642994'), - (201, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4E5gqyX4', '4642995'), - (201, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4E5gqyX4', '4642996'), - (201, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4E5gqyX4', '4642997'), - (201, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4E5gqyX4', '4645687'), - (201, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4E5gqyX4', '4645698'), - (201, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4E5gqyX4', '4645704'), - (201, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4E5gqyX4', '4645705'), - (201, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4E5gqyX4', '4668385'), - (201, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E5gqyX4', '6045684'), - (202, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKG7GGNd', '6045684'), - (203, 996, 'attending', '2021-10-12 19:32:55', '2025-12-17 19:47:35', 'dVB17ryd', '4420747'), - (203, 997, 'attending', '2021-10-23 18:11:34', '2025-12-17 19:47:35', 'dVB17ryd', '4420748'), - (203, 998, 'attending', '2021-10-30 17:46:53', '2025-12-17 19:47:36', 'dVB17ryd', '4420749'), - (203, 1009, 'attending', '2021-10-11 00:19:23', '2025-12-17 19:47:34', 'dVB17ryd', '4438811'), - (203, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dVB17ryd', '4568602'), - (203, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVB17ryd', '4572153'), - (203, 1088, 'attending', '2021-10-23 19:57:17', '2025-12-17 19:47:35', 'dVB17ryd', '4574382'), - (203, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dVB17ryd', '4585962'), - (203, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dVB17ryd', '4596356'), - (203, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dVB17ryd', '4598860'), - (203, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dVB17ryd', '4598861'), - (203, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dVB17ryd', '4602797'), - (203, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dVB17ryd', '4637896'), - (203, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dVB17ryd', '4642994'), - (203, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dVB17ryd', '4642995'), - (203, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dVB17ryd', '4642996'), - (203, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dVB17ryd', '4642997'), - (203, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dVB17ryd', '4645687'), - (203, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dVB17ryd', '4645698'), - (203, 1128, 'attending', '2021-11-20 03:09:28', '2025-12-17 19:47:37', 'dVB17ryd', '4645704'), - (203, 1129, 'attending', '2021-11-27 19:01:02', '2025-12-17 19:47:37', 'dVB17ryd', '4645705'), - (203, 1130, 'not_attending', '2021-12-04 18:16:54', '2025-12-17 19:47:37', 'dVB17ryd', '4658824'), - (203, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dVB17ryd', '4668385'), - (203, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dVB17ryd', '4694407'), - (203, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'dVB17ryd', '4706262'), - (203, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dVB17ryd', '4736497'), - (203, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dVB17ryd', '4736499'), - (203, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dVB17ryd', '4736500'), - (203, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dVB17ryd', '4736503'), - (203, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dVB17ryd', '4736504'), - (203, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVB17ryd', '4746789'), - (203, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dVB17ryd', '4753929'), - (203, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dVB17ryd', '5038850'), - (203, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dVB17ryd', '5045826'), - (203, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVB17ryd', '5132533'), - (203, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dVB17ryd', '5186582'), - (203, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dVB17ryd', '5186583'), - (203, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dVB17ryd', '5186585'), - (203, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVB17ryd', '5190437'), - (203, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVB17ryd', '5215989'), - (203, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVB17ryd', '6045684'), - (204, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'QdJxR7nA', '5630961'), - (204, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'QdJxR7nA', '5630962'), - (204, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'QdJxR7nA', '5630966'), - (204, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'QdJxR7nA', '5630967'), - (204, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'QdJxR7nA', '5630968'), - (204, 1738, 'maybe', '2022-10-25 17:37:20', '2025-12-17 19:47:14', 'QdJxR7nA', '5638765'), - (204, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'QdJxR7nA', '5640097'), - (204, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'QdJxR7nA', '5642818'), - (204, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'QdJxR7nA', '5670445'), - (204, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'QdJxR7nA', '5671637'), - (204, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'QdJxR7nA', '5672329'), - (204, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'QdJxR7nA', '5674057'), - (204, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'QdJxR7nA', '5674060'), - (204, 1772, 'maybe', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'QdJxR7nA', '5677461'), - (204, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'QdJxR7nA', '5698046'), - (204, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'QdJxR7nA', '5699760'), - (204, 1786, 'not_attending', '2022-11-08 23:40:43', '2025-12-17 19:47:15', 'QdJxR7nA', '5727232'), - (204, 1788, 'attending', '2022-11-17 12:26:34', '2025-12-17 19:47:16', 'QdJxR7nA', '5727236'), - (204, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'QdJxR7nA', '5741601'), - (204, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'QdJxR7nA', '5763458'), - (204, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'QdJxR7nA', '5774172'), - (204, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'QdJxR7nA', '5818247'), - (204, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'QdJxR7nA', '5819471'), - (204, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'QdJxR7nA', '5827739'), - (204, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'QdJxR7nA', '5844306'), - (204, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'QdJxR7nA', '5850159'), - (204, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'QdJxR7nA', '5858999'), - (204, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'QdJxR7nA', '5871984'), - (204, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'QdJxR7nA', '5876354'), - (204, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'QdJxR7nA', '5880939'), - (204, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'QdJxR7nA', '5887890'), - (204, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'QdJxR7nA', '5888598'), - (204, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'QdJxR7nA', '5893260'), - (204, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'QdJxR7nA', '6045684'), - (205, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4DpLWeo4', '6514660'), - (205, 2352, 'not_attending', '2023-11-22 19:12:21', '2025-12-17 19:46:48', '4DpLWeo4', '6587097'), - (205, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', '4DpLWeo4', '6596617'), - (205, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4DpLWeo4', '6609022'), - (205, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4DpLWeo4', '6632757'), - (205, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4DpLWeo4', '6644187'), - (205, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4DpLWeo4', '6648951'), - (205, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4DpLWeo4', '6648952'), - (205, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', '4DpLWeo4', '6651141'), - (205, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4DpLWeo4', '6655401'), - (205, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4DpLWeo4', '6661585'), - (205, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4DpLWeo4', '6661588'), - (205, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4DpLWeo4', '6661589'), - (205, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4DpLWeo4', '6699906'), - (205, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4DpLWeo4', '6699913'), - (205, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4DpLWeo4', '6701109'), - (205, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4DpLWeo4', '6705219'), - (205, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4DpLWeo4', '6710153'), - (205, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4DpLWeo4', '6711552'), - (205, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4DpLWeo4', '6711553'), - (205, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4DpLWeo4', '6722688'), - (205, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4DpLWeo4', '6730620'), - (205, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4DpLWeo4', '6730642'), - (205, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4DpLWeo4', '6740364'), - (205, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4DpLWeo4', '6743829'), - (205, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4DpLWeo4', '7030380'), - (205, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4DpLWeo4', '7033677'), - (205, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4DpLWeo4', '7035415'), - (205, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4DpLWeo4', '7044715'), - (205, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4DpLWeo4', '7050318'), - (205, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4DpLWeo4', '7050319'), - (205, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4DpLWeo4', '7050322'), - (205, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4DpLWeo4', '7057804'), - (205, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4DpLWeo4', '7072824'), - (205, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4DpLWeo4', '7074348'), - (205, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4DpLWeo4', '7089267'), - (205, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4DpLWeo4', '7098747'), - (205, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4DpLWeo4', '7113468'), - (205, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4DpLWeo4', '7114856'), - (205, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4DpLWeo4', '7114951'), - (205, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4DpLWeo4', '7114955'), - (205, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4DpLWeo4', '7114956'), - (205, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4DpLWeo4', '7153615'), - (205, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4DpLWeo4', '7159484'), - (205, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4DpLWeo4', '7178446'), - (206, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'LmpJy8N4', '3974109'), - (206, 827, 'attending', '2021-06-04 20:53:38', '2025-12-17 19:47:47', 'LmpJy8N4', '3975311'), - (206, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpJy8N4', '3975312'), - (206, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpJy8N4', '3994992'), - (206, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpJy8N4', '4014338'), - (206, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'LmpJy8N4', '4021848'), - (206, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpJy8N4', '4136744'), - (206, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'LmpJy8N4', '4136937'), - (206, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'LmpJy8N4', '4136938'), - (206, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJy8N4', '4136947'), - (206, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpJy8N4', '4225444'), - (206, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpJy8N4', '4239259'), - (206, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpJy8N4', '4250163'), - (206, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJy8N4', '6045684'), - (207, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd8qQgVpm', '7324078'), - (207, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd8qQgVpm', '7324082'), - (207, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd8qQgVpm', '7363643'), - (207, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd8qQgVpm', '7397462'), - (207, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd8qQgVpm', '7424275'), - (207, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd8qQgVpm', '7432751'), - (207, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd8qQgVpm', '7432752'), - (207, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd8qQgVpm', '7432753'), - (207, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd8qQgVpm', '7432754'), - (207, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd8qQgVpm', '7432755'), - (207, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd8qQgVpm', '7432756'), - (207, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd8qQgVpm', '7432758'), - (207, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd8qQgVpm', '7432759'), - (207, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd8qQgVpm', '7433834'), - (207, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd8qQgVpm', '7470197'), - (207, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd8qQgVpm', '7685613'), - (207, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd8qQgVpm', '7688194'), - (207, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd8qQgVpm', '7688196'), - (207, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd8qQgVpm', '7688289'), - (208, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZ81694', '6514660'), - (208, 2352, 'not_attending', '2023-11-22 19:12:21', '2025-12-17 19:46:48', 'dKZ81694', '6587097'), - (208, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZ81694', '6609022'), - (208, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZ81694', '6632757'), - (208, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZ81694', '6644187'), - (208, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZ81694', '6648951'), - (208, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZ81694', '6648952'), - (208, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZ81694', '6655401'), - (208, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZ81694', '6661585'), - (208, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZ81694', '6661588'), - (208, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZ81694', '6661589'), - (208, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZ81694', '6699906'), - (208, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dKZ81694', '6699913'), - (208, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZ81694', '6701109'), - (208, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZ81694', '6705219'), - (208, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZ81694', '6710153'), - (208, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZ81694', '6711552'), - (208, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZ81694', '6711553'), - (208, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKZ81694', '6722688'), - (208, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKZ81694', '6730620'), - (208, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKZ81694', '6730642'), - (208, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKZ81694', '6740364'), - (208, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKZ81694', '6743829'), - (208, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKZ81694', '7030380'), - (208, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKZ81694', '7033677'), - (208, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKZ81694', '7035415'), - (208, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKZ81694', '7044715'), - (208, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKZ81694', '7050318'), - (208, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKZ81694', '7050319'), - (208, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKZ81694', '7050322'), - (208, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKZ81694', '7057804'), - (208, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKZ81694', '7072824'), - (208, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dKZ81694', '7074348'), - (208, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKZ81694', '7089267'), - (208, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKZ81694', '7098747'), - (208, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dKZ81694', '7113468'), - (208, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKZ81694', '7114856'), - (208, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKZ81694', '7114951'), - (208, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKZ81694', '7114955'), - (208, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKZ81694', '7114956'), - (208, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKZ81694', '7153615'), - (208, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKZ81694', '7159484'), - (208, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKZ81694', '7178446'), - (209, 2065, 'attending', '2023-06-17 17:21:00', '2025-12-17 19:46:49', 'dzgb7Mpm', '6101169'), - (209, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dzgb7Mpm', '6101361'), - (209, 2075, 'maybe', '2023-06-30 02:22:49', '2025-12-17 19:46:50', 'dzgb7Mpm', '6107314'), - (209, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dzgb7Mpm', '6136733'), - (209, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dzgb7Mpm', '6137989'), - (209, 2098, 'not_attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dzgb7Mpm', '6139831'), - (209, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dzgb7Mpm', '6150864'), - (209, 2109, 'attending', '2023-06-19 05:59:02', '2025-12-17 19:46:50', 'dzgb7Mpm', '6152821'), - (209, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dzgb7Mpm', '6155491'), - (209, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dzgb7Mpm', '6164417'), - (209, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dzgb7Mpm', '6166388'), - (209, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dzgb7Mpm', '6176439'), - (209, 2122, 'attending', '2023-06-30 22:16:33', '2025-12-17 19:46:51', 'dzgb7Mpm', '6176476'), - (209, 2124, 'attending', '2023-07-04 11:01:12', '2025-12-17 19:46:51', 'dzgb7Mpm', '6176988'), - (209, 2128, 'maybe', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dzgb7Mpm', '6182410'), - (209, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dzgb7Mpm', '6185812'), - (209, 2132, 'attending', '2023-07-06 02:13:03', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187015'), - (209, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dzgb7Mpm', '6187651'), - (209, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187963'), - (209, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187964'), - (209, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dzgb7Mpm', '6187966'), - (209, 2137, 'attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dzgb7Mpm', '6187967'), - (209, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187969'), - (209, 2139, 'attending', '2023-07-09 02:53:03', '2025-12-17 19:46:52', 'dzgb7Mpm', '6188027'), - (209, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dzgb7Mpm', '6334878'), - (209, 2146, 'attending', '2023-07-18 00:00:55', '2025-12-17 19:46:53', 'dzgb7Mpm', '6335638'), - (209, 2148, 'attending', '2023-07-11 11:17:11', '2025-12-17 19:46:53', 'dzgb7Mpm', '6335667'), - (209, 2152, 'attending', '2023-07-13 03:12:17', '2025-12-17 19:46:52', 'dzgb7Mpm', '6337021'), - (209, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dzgb7Mpm', '6337236'), - (209, 2155, 'attending', '2023-07-17 23:59:56', '2025-12-17 19:46:53', 'dzgb7Mpm', '6337970'), - (209, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dzgb7Mpm', '6338308'), - (209, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dzgb7Mpm', '6340845'), - (209, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dzgb7Mpm', '6341710'), - (209, 2164, 'maybe', '2023-07-19 19:40:17', '2025-12-17 19:46:54', 'dzgb7Mpm', '6341797'), - (209, 2165, 'attending', '2023-08-01 07:53:58', '2025-12-17 19:46:54', 'dzgb7Mpm', '6342044'), - (209, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dzgb7Mpm', '6342298'), - (209, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dzgb7Mpm', '6343294'), - (209, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dzgb7Mpm', '6347034'), - (209, 2177, 'attending', '2023-08-04 02:01:28', '2025-12-17 19:46:55', 'dzgb7Mpm', '6347053'), - (209, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dzgb7Mpm', '6347056'), - (209, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dzgb7Mpm', '6353830'), - (209, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dzgb7Mpm', '6353831'), - (209, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dzgb7Mpm', '6357867'), - (209, 2190, 'attending', '2023-08-07 04:28:01', '2025-12-17 19:46:55', 'dzgb7Mpm', '6357892'), - (209, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dzgb7Mpm', '6358652'), - (209, 2195, 'attending', '2023-08-20 23:18:10', '2025-12-17 19:46:55', 'dzgb7Mpm', '6359397'), - (209, 2196, 'attending', '2023-09-03 16:26:15', '2025-12-17 19:46:56', 'dzgb7Mpm', '6359398'), - (209, 2197, 'attending', '2023-09-15 14:07:11', '2025-12-17 19:46:44', 'dzgb7Mpm', '6359399'), - (209, 2198, 'attending', '2023-09-18 03:38:30', '2025-12-17 19:46:45', 'dzgb7Mpm', '6359400'), - (209, 2199, 'attending', '2023-08-08 01:44:39', '2025-12-17 19:46:55', 'dzgb7Mpm', '6359849'), - (209, 2200, 'attending', '2023-08-10 17:00:02', '2025-12-17 19:46:55', 'dzgb7Mpm', '6359850'), - (209, 2202, 'attending', '2023-08-06 19:02:11', '2025-12-17 19:46:54', 'dzgb7Mpm', '6360509'), - (209, 2204, 'attending', '2023-08-14 22:44:51', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361542'), - (209, 2206, 'attending', '2023-08-08 14:47:18', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361659'), - (209, 2208, 'maybe', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dzgb7Mpm', '6361709'), - (209, 2209, 'maybe', '2023-08-20 23:17:53', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361710'), - (209, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361711'), - (209, 2211, 'attending', '2023-08-14 02:29:38', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361712'), - (209, 2212, 'attending', '2023-09-18 03:39:19', '2025-12-17 19:46:45', 'dzgb7Mpm', '6361713'), - (209, 2214, 'attending', '2023-08-10 22:18:16', '2025-12-17 19:46:55', 'dzgb7Mpm', '6363218'), - (209, 2215, 'attending', '2023-08-11 22:04:22', '2025-12-17 19:46:55', 'dzgb7Mpm', '6363479'), - (209, 2217, 'attending', '2023-08-14 02:28:51', '2025-12-17 19:46:55', 'dzgb7Mpm', '6364333'), - (209, 2220, 'attending', '2023-09-04 22:52:10', '2025-12-17 19:46:56', 'dzgb7Mpm', '6367310'), - (209, 2225, 'attending', '2023-08-29 05:08:54', '2025-12-17 19:46:55', 'dzgb7Mpm', '6368434'), - (209, 2227, 'attending', '2023-08-20 23:17:42', '2025-12-17 19:46:55', 'dzgb7Mpm', '6370581'), - (209, 2232, 'attending', '2023-08-23 19:24:36', '2025-12-17 19:46:55', 'dzgb7Mpm', '6374818'), - (209, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dzgb7Mpm', '6382573'), - (209, 2239, 'maybe', '2023-09-01 00:37:17', '2025-12-17 19:46:56', 'dzgb7Mpm', '6387592'), - (209, 2240, 'attending', '2023-09-05 02:42:39', '2025-12-17 19:46:56', 'dzgb7Mpm', '6388603'), - (209, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dzgb7Mpm', '6388604'), - (209, 2242, 'maybe', '2023-09-21 21:45:07', '2025-12-17 19:46:45', 'dzgb7Mpm', '6388606'), - (209, 2244, 'attending', '2023-09-05 02:42:34', '2025-12-17 19:46:44', 'dzgb7Mpm', '6393700'), - (209, 2245, 'attending', '2023-09-18 03:39:05', '2025-12-17 19:46:45', 'dzgb7Mpm', '6393703'), - (209, 2247, 'attending', '2023-09-05 19:25:24', '2025-12-17 19:46:56', 'dzgb7Mpm', '6394628'), - (209, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dzgb7Mpm', '6394629'), - (209, 2249, 'attending', '2023-09-18 03:38:27', '2025-12-17 19:46:45', 'dzgb7Mpm', '6394630'), - (209, 2250, 'maybe', '2023-09-18 03:39:14', '2025-12-17 19:46:45', 'dzgb7Mpm', '6394631'), - (209, 2252, 'attending', '2023-09-18 03:38:58', '2025-12-17 19:46:45', 'dzgb7Mpm', '6396837'), - (209, 2253, 'attending', '2023-09-27 09:09:07', '2025-12-17 19:46:45', 'dzgb7Mpm', '6401811'), - (209, 2258, 'attending', '2023-09-21 08:13:43', '2025-12-17 19:46:45', 'dzgb7Mpm', '6419492'), - (209, 2261, 'attending', '2023-09-27 06:46:08', '2025-12-17 19:46:45', 'dzgb7Mpm', '6427422'), - (209, 2262, 'attending', '2023-10-01 17:47:11', '2025-12-17 19:46:45', 'dzgb7Mpm', '6427423'), - (209, 2265, 'attending', '2023-10-01 17:49:00', '2025-12-17 19:46:45', 'dzgb7Mpm', '6439625'), - (209, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dzgb7Mpm', '6440863'), - (209, 2269, 'attending', '2023-10-05 20:41:57', '2025-12-17 19:46:45', 'dzgb7Mpm', '6442978'), - (209, 2271, 'attending', '2023-10-03 00:44:09', '2025-12-17 19:46:45', 'dzgb7Mpm', '6445375'), - (209, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dzgb7Mpm', '6445440'), - (209, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dzgb7Mpm', '6453951'), - (209, 2279, 'attending', '2023-10-10 13:57:34', '2025-12-17 19:46:46', 'dzgb7Mpm', '6455460'), - (209, 2283, 'maybe', '2023-10-10 14:07:08', '2025-12-17 19:46:46', 'dzgb7Mpm', '6455503'), - (209, 2284, 'maybe', '2023-10-10 14:02:28', '2025-12-17 19:46:46', 'dzgb7Mpm', '6460928'), - (209, 2285, 'attending', '2023-10-10 14:07:35', '2025-12-17 19:46:47', 'dzgb7Mpm', '6460929'), - (209, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dzgb7Mpm', '6461696'), - (209, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dzgb7Mpm', '6462129'), - (209, 2290, 'attending', '2023-10-11 09:03:41', '2025-12-17 19:46:46', 'dzgb7Mpm', '6462214'), - (209, 2291, 'not_attending', '2023-10-15 20:16:14', '2025-12-17 19:46:46', 'dzgb7Mpm', '6462215'), - (209, 2292, 'attending', '2023-10-31 20:17:17', '2025-12-17 19:46:47', 'dzgb7Mpm', '6462216'), - (209, 2293, 'attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dzgb7Mpm', '6463218'), - (209, 2296, 'attending', '2023-10-23 12:20:40', '2025-12-17 19:46:47', 'dzgb7Mpm', '6468393'), - (209, 2299, 'attending', '2023-10-15 20:16:21', '2025-12-17 19:46:46', 'dzgb7Mpm', '6472181'), - (209, 2300, 'attending', '2023-10-23 12:22:27', '2025-12-17 19:46:47', 'dzgb7Mpm', '6472185'), - (209, 2302, 'attending', '2023-10-22 22:52:01', '2025-12-17 19:46:46', 'dzgb7Mpm', '6482535'), - (209, 2303, 'attending', '2023-10-23 12:20:55', '2025-12-17 19:46:47', 'dzgb7Mpm', '6482691'), - (209, 2304, 'attending', '2023-10-31 20:18:28', '2025-12-17 19:46:47', 'dzgb7Mpm', '6482693'), - (209, 2306, 'attending', '2023-11-14 00:58:18', '2025-12-17 19:46:47', 'dzgb7Mpm', '6484200'), - (209, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dzgb7Mpm', '6484680'), - (209, 2310, 'attending', '2023-11-11 16:13:20', '2025-12-17 19:46:47', 'dzgb7Mpm', '6487709'), - (209, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dzgb7Mpm', '6507741'), - (209, 2322, 'attending', '2023-11-12 07:36:19', '2025-12-17 19:46:48', 'dzgb7Mpm', '6514659'), - (209, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dzgb7Mpm', '6514660'), - (209, 2324, 'not_attending', '2023-12-02 19:25:28', '2025-12-17 19:46:49', 'dzgb7Mpm', '6514662'), - (209, 2325, 'attending', '2023-12-12 02:48:47', '2025-12-17 19:46:36', 'dzgb7Mpm', '6514663'), - (209, 2329, 'attending', '2023-11-02 15:52:14', '2025-12-17 19:46:47', 'dzgb7Mpm', '6517138'), - (209, 2333, 'maybe', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dzgb7Mpm', '6519103'), - (209, 2335, 'attending', '2023-11-11 00:54:08', '2025-12-17 19:46:47', 'dzgb7Mpm', '6534890'), - (209, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dzgb7Mpm', '6535681'), - (209, 2338, 'maybe', '2023-11-12 07:36:44', '2025-12-17 19:46:48', 'dzgb7Mpm', '6538868'), - (209, 2345, 'attending', '2023-11-21 07:26:45', '2025-12-17 19:46:48', 'dzgb7Mpm', '6582414'), - (209, 2350, 'attending', '2023-11-21 07:26:07', '2025-12-17 19:46:48', 'dzgb7Mpm', '6584352'), - (209, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dzgb7Mpm', '6584747'), - (209, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dzgb7Mpm', '6587097'), - (209, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dzgb7Mpm', '6609022'), - (209, 2366, 'attending', '2023-12-08 22:15:25', '2025-12-17 19:46:36', 'dzgb7Mpm', '6615304'), - (209, 2373, 'attending', '2024-01-14 18:10:29', '2025-12-17 19:46:38', 'dzgb7Mpm', '6632678'), - (209, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dzgb7Mpm', '6632757'), - (209, 2375, 'attending', '2023-12-20 20:49:34', '2025-12-17 19:46:36', 'dzgb7Mpm', '6634548'), - (209, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dzgb7Mpm', '6644187'), - (209, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dzgb7Mpm', '6648951'), - (209, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dzgb7Mpm', '6648952'), - (209, 2388, 'attending', '2024-01-06 08:30:53', '2025-12-17 19:46:37', 'dzgb7Mpm', '6649244'), - (209, 2391, 'attending', '2024-01-12 08:37:12', '2025-12-17 19:46:37', 'dzgb7Mpm', '6654138'), - (209, 2392, 'attending', '2024-01-11 23:25:03', '2025-12-17 19:46:37', 'dzgb7Mpm', '6654412'), - (209, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dzgb7Mpm', '6655401'), - (209, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dzgb7Mpm', '6661585'), - (209, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dzgb7Mpm', '6661588'), - (209, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dzgb7Mpm', '6661589'), - (209, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dzgb7Mpm', '6699906'), - (209, 2408, 'attending', '2024-01-18 03:09:43', '2025-12-17 19:46:40', 'dzgb7Mpm', '6699907'), - (209, 2409, 'attending', '2024-01-18 03:09:46', '2025-12-17 19:46:41', 'dzgb7Mpm', '6699909'), - (209, 2410, 'attending', '2024-01-18 03:09:49', '2025-12-17 19:46:41', 'dzgb7Mpm', '6699911'), - (209, 2411, 'attending', '2024-02-06 01:27:58', '2025-12-17 19:46:41', 'dzgb7Mpm', '6699913'), - (209, 2412, 'maybe', '2024-02-12 19:17:17', '2025-12-17 19:46:43', 'dzgb7Mpm', '6700717'), - (209, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dzgb7Mpm', '6701109'), - (209, 2424, 'attending', '2024-01-19 03:07:24', '2025-12-17 19:46:40', 'dzgb7Mpm', '6705143'), - (209, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dzgb7Mpm', '6705219'), - (209, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dzgb7Mpm', '6710153'), - (209, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dzgb7Mpm', '6711552'), - (209, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dzgb7Mpm', '6711553'), - (209, 2431, 'maybe', '2024-01-30 00:09:19', '2025-12-17 19:46:41', 'dzgb7Mpm', '6712394'), - (209, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dzgb7Mpm', '6722688'), - (209, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dzgb7Mpm', '6730620'), - (209, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dzgb7Mpm', '6730642'), - (209, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dzgb7Mpm', '6740364'), - (209, 2457, 'attending', '2024-02-08 17:31:26', '2025-12-17 19:46:41', 'dzgb7Mpm', '6742221'), - (209, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dzgb7Mpm', '6743829'), - (209, 2462, 'attending', '2024-02-12 19:16:35', '2025-12-17 19:46:41', 'dzgb7Mpm', '6744701'), - (209, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dzgb7Mpm', '7030380'), - (209, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'dzgb7Mpm', '7033677'), - (209, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dzgb7Mpm', '7035415'), - (209, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dzgb7Mpm', '7044715'), - (209, 2484, 'attending', '2024-02-26 03:10:27', '2025-12-17 19:46:43', 'dzgb7Mpm', '7046836'), - (209, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dzgb7Mpm', '7050318'), - (209, 2491, 'attending', '2024-02-28 02:25:37', '2025-12-17 19:46:44', 'dzgb7Mpm', '7050319'), - (209, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dzgb7Mpm', '7050322'), - (209, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dzgb7Mpm', '7057804'), - (209, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dzgb7Mpm', '7059866'), - (209, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dzgb7Mpm', '7072824'), - (209, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dzgb7Mpm', '7074348'), - (209, 2513, 'maybe', '2024-04-15 15:08:23', '2025-12-17 19:46:34', 'dzgb7Mpm', '7074353'), - (209, 2522, 'attending', '2024-07-18 21:02:32', '2025-12-17 19:46:30', 'dzgb7Mpm', '7074362'), - (209, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dzgb7Mpm', '7074364'), - (209, 2537, 'maybe', '2024-03-23 02:52:22', '2025-12-17 19:46:33', 'dzgb7Mpm', '7085484'), - (209, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dzgb7Mpm', '7089267'), - (209, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dzgb7Mpm', '7098747'), - (209, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dzgb7Mpm', '7113468'), - (209, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dzgb7Mpm', '7114856'), - (209, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dzgb7Mpm', '7114951'), - (209, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dzgb7Mpm', '7114955'), - (209, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dzgb7Mpm', '7114956'), - (209, 2558, 'maybe', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dzgb7Mpm', '7114957'), - (209, 2566, 'attending', '2024-04-15 15:07:50', '2025-12-17 19:46:34', 'dzgb7Mpm', '7140664'), - (209, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dzgb7Mpm', '7153615'), - (209, 2570, 'attending', '2024-04-07 19:07:21', '2025-12-17 19:46:33', 'dzgb7Mpm', '7159187'), - (209, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dzgb7Mpm', '7159484'), - (209, 2573, 'attending', '2024-04-14 02:10:01', '2025-12-17 19:46:34', 'dzgb7Mpm', '7160612'), - (209, 2581, 'attending', '2024-04-18 03:10:01', '2025-12-17 19:46:34', 'dzgb7Mpm', '7169048'), - (209, 2585, 'attending', '2024-04-15 15:11:49', '2025-12-17 19:46:34', 'dzgb7Mpm', '7175828'), - (209, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzgb7Mpm', '7178446'), - (209, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dzgb7Mpm', '7220467'), - (209, 2603, 'attending', '2024-05-13 04:51:00', '2025-12-17 19:46:35', 'dzgb7Mpm', '7225669'), - (209, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dzgb7Mpm', '7240354'), - (209, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dzgb7Mpm', '7251633'), - (209, 2623, 'attending', '2024-05-11 20:13:01', '2025-12-17 19:46:35', 'dzgb7Mpm', '7263048'), - (209, 2626, 'not_attending', '2024-05-13 04:51:23', '2025-12-17 19:46:35', 'dzgb7Mpm', '7264723'), - (209, 2627, 'attending', '2024-05-25 21:44:05', '2025-12-17 19:46:35', 'dzgb7Mpm', '7264724'), - (209, 2628, 'attending', '2024-05-30 18:50:51', '2025-12-17 19:46:36', 'dzgb7Mpm', '7264725'), - (209, 2629, 'attending', '2024-06-08 04:09:05', '2025-12-17 19:46:28', 'dzgb7Mpm', '7264726'), - (209, 2636, 'maybe', '2024-05-19 15:29:17', '2025-12-17 19:46:35', 'dzgb7Mpm', '7270323'), - (209, 2637, 'maybe', '2024-05-19 15:29:19', '2025-12-17 19:46:35', 'dzgb7Mpm', '7270324'), - (209, 2644, 'maybe', '2024-05-19 15:25:09', '2025-12-17 19:46:35', 'dzgb7Mpm', '7279039'), - (209, 2649, 'maybe', '2024-05-27 20:34:59', '2025-12-17 19:46:35', 'dzgb7Mpm', '7282950'), - (209, 2656, 'attending', '2024-05-30 18:50:29', '2025-12-17 19:46:36', 'dzgb7Mpm', '7291301'), - (209, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dzgb7Mpm', '7302674'), - (209, 2665, 'attending', '2024-06-06 20:18:20', '2025-12-17 19:46:36', 'dzgb7Mpm', '7306370'), - (209, 2667, 'attending', '2024-06-05 23:14:27', '2025-12-17 19:46:36', 'dzgb7Mpm', '7307776'), - (209, 2675, 'attending', '2024-08-04 16:44:53', '2025-12-17 19:46:31', 'dzgb7Mpm', '7319481'), - (209, 2678, 'attending', '2024-06-15 05:51:53', '2025-12-17 19:46:28', 'dzgb7Mpm', '7319489'), - (209, 2679, 'not_attending', '2024-06-17 11:29:54', '2025-12-17 19:46:29', 'dzgb7Mpm', '7319490'), - (209, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'dzgb7Mpm', '7324019'), - (209, 2688, 'attending', '2024-06-15 05:52:17', '2025-12-17 19:46:29', 'dzgb7Mpm', '7324073'), - (209, 2689, 'attending', '2024-06-15 05:52:19', '2025-12-17 19:46:29', 'dzgb7Mpm', '7324074'), - (209, 2690, 'attending', '2024-06-17 11:30:59', '2025-12-17 19:46:30', 'dzgb7Mpm', '7324075'), - (209, 2691, 'attending', '2024-06-17 11:31:01', '2025-12-17 19:46:30', 'dzgb7Mpm', '7324076'), - (209, 2692, 'maybe', '2024-06-17 11:31:06', '2025-12-17 19:46:30', 'dzgb7Mpm', '7324077'), - (209, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dzgb7Mpm', '7324078'), - (209, 2694, 'attending', '2024-08-01 21:26:18', '2025-12-17 19:46:31', 'dzgb7Mpm', '7324079'), - (209, 2695, 'maybe', '2024-08-01 21:26:23', '2025-12-17 19:46:31', 'dzgb7Mpm', '7324080'), - (209, 2696, 'attending', '2024-08-01 21:26:25', '2025-12-17 19:46:32', 'dzgb7Mpm', '7324081'), - (209, 2697, 'attending', '2024-08-30 17:37:38', '2025-12-17 19:46:32', 'dzgb7Mpm', '7324082'), - (209, 2698, 'not_attending', '2024-09-03 17:37:52', '2025-12-17 19:46:24', 'dzgb7Mpm', '7324083'), - (209, 2705, 'attending', '2024-06-13 13:28:13', '2025-12-17 19:46:29', 'dzgb7Mpm', '7324944'), - (209, 2706, 'attending', '2024-06-17 23:57:30', '2025-12-17 19:46:28', 'dzgb7Mpm', '7324947'), - (209, 2722, 'attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dzgb7Mpm', '7331457'), - (209, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'dzgb7Mpm', '7335193'), - (209, 2731, 'attending', '2024-06-25 17:31:38', '2025-12-17 19:46:29', 'dzgb7Mpm', '7335303'), - (209, 2742, 'attending', '2024-07-03 22:39:11', '2025-12-17 19:46:29', 'dzgb7Mpm', '7345167'), - (209, 2743, 'attending', '2024-07-05 22:31:44', '2025-12-17 19:46:29', 'dzgb7Mpm', '7345688'), - (209, 2749, 'attending', '2024-07-07 18:42:30', '2025-12-17 19:46:29', 'dzgb7Mpm', '7355496'), - (209, 2754, 'attending', '2024-07-14 22:59:55', '2025-12-17 19:46:30', 'dzgb7Mpm', '7356752'), - (209, 2755, 'attending', '2024-07-10 22:19:21', '2025-12-17 19:46:29', 'dzgb7Mpm', '7357808'), - (209, 2757, 'attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dzgb7Mpm', '7358733'), - (209, 2763, 'attending', '2024-07-17 01:29:11', '2025-12-17 19:46:30', 'dzgb7Mpm', '7363594'), - (209, 2764, 'attending', '2024-07-14 23:08:18', '2025-12-17 19:46:30', 'dzgb7Mpm', '7363595'), - (209, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dzgb7Mpm', '7363643'), - (209, 2767, 'attending', '2024-07-17 01:29:08', '2025-12-17 19:46:30', 'dzgb7Mpm', '7364726'), - (209, 2768, 'attending', '2024-07-18 00:36:40', '2025-12-17 19:46:30', 'dzgb7Mpm', '7366031'), - (209, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dzgb7Mpm', '7368606'), - (209, 2776, 'maybe', '2024-07-25 21:05:43', '2025-12-17 19:46:30', 'dzgb7Mpm', '7370690'), - (209, 2783, 'attending', '2024-07-29 22:07:08', '2025-12-17 19:46:31', 'dzgb7Mpm', '7379699'), - (209, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dzgb7Mpm', '7397462'), - (209, 2808, 'attending', '2024-09-01 09:29:20', '2025-12-17 19:46:32', 'dzgb7Mpm', '7412860'), - (209, 2809, 'attending', '2024-08-30 17:37:46', '2025-12-17 19:46:32', 'dzgb7Mpm', '7414808'), - (209, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dzgb7Mpm', '7424275'), - (209, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dzgb7Mpm', '7424276'), - (209, 2824, 'maybe', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dzgb7Mpm', '7432751'), - (209, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dzgb7Mpm', '7432752'), - (209, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dzgb7Mpm', '7432753'), - (209, 2827, 'maybe', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432754'), - (209, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432755'), - (209, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432756'), - (209, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432758'), - (209, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432759'), - (209, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dzgb7Mpm', '7433834'), - (209, 2847, 'not_attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', 'dzgb7Mpm', '7452299'), - (209, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dzgb7Mpm', '7470197'), - (209, 2870, 'maybe', '2024-10-05 17:31:08', '2025-12-17 19:46:26', 'dzgb7Mpm', '7475068'), - (209, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dzgb7Mpm', '7685613'), - (209, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dzgb7Mpm', '7688194'), - (209, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dzgb7Mpm', '7688196'), - (209, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dzgb7Mpm', '7688289'), - (209, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dzgb7Mpm', '7692763'), - (209, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dzgb7Mpm', '7697552'), - (209, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dzgb7Mpm', '7699878'), - (209, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dzgb7Mpm', '7704043'), - (209, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dzgb7Mpm', '7712467'), - (209, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dzgb7Mpm', '7713585'), - (209, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dzgb7Mpm', '7713586'), - (209, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dzgb7Mpm', '7738518'), - (209, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dzgb7Mpm', '7750636'), - (209, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dzgb7Mpm', '7796540'), - (209, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dzgb7Mpm', '7796541'), - (209, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dzgb7Mpm', '7796542'), - (210, 884, 'not_attending', '2021-08-13 22:24:14', '2025-12-17 19:47:42', 'AQ91XjxA', '4210314'), - (210, 903, 'attending', '2021-08-13 21:25:40', '2025-12-17 19:47:42', 'AQ91XjxA', '4240320'), - (210, 926, 'attending', '2021-08-18 02:48:22', '2025-12-17 19:47:42', 'AQ91XjxA', '4297211'), - (210, 948, 'attending', '2021-08-12 22:28:23', '2025-12-17 19:47:41', 'AQ91XjxA', '4315714'), - (210, 971, 'not_attending', '2021-09-09 03:09:19', '2025-12-17 19:47:43', 'AQ91XjxA', '4356801'), - (210, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'AQ91XjxA', '4358025'), - (210, 973, 'not_attending', '2021-08-21 20:37:52', '2025-12-17 19:47:42', 'AQ91XjxA', '4366186'), - (210, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'AQ91XjxA', '4366187'), - (210, 985, 'attending', '2021-08-21 17:04:47', '2025-12-17 19:47:42', 'AQ91XjxA', '4391748'), - (210, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'AQ91XjxA', '4402823'), - (210, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'AQ91XjxA', '4420735'), - (210, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'AQ91XjxA', '4420738'), - (210, 992, 'attending', '2021-09-18 21:54:41', '2025-12-17 19:47:33', 'AQ91XjxA', '4420739'), - (210, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'AQ91XjxA', '4420741'), - (210, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'AQ91XjxA', '4420744'), - (210, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'AQ91XjxA', '4420747'), - (210, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'AQ91XjxA', '4420748'), - (210, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'AQ91XjxA', '4420749'), - (210, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AQ91XjxA', '4461883'), - (210, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AQ91XjxA', '4508342'), - (210, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AQ91XjxA', '4568602'), - (210, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AQ91XjxA', '6045684'), - (211, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', '40k5NaEA', '4420739'), - (211, 993, 'not_attending', '2021-09-27 00:25:15', '2025-12-17 19:47:34', '40k5NaEA', '4420741'), - (211, 994, 'attending', '2021-10-02 21:43:05', '2025-12-17 19:47:34', '40k5NaEA', '4420742'), - (211, 995, 'attending', '2021-10-04 19:55:26', '2025-12-17 19:47:34', '40k5NaEA', '4420744'), - (211, 996, 'attending', '2021-10-10 16:54:22', '2025-12-17 19:47:35', '40k5NaEA', '4420747'), - (211, 997, 'not_attending', '2021-10-23 20:23:29', '2025-12-17 19:47:35', '40k5NaEA', '4420748'), - (211, 998, 'not_attending', '2021-10-29 14:14:52', '2025-12-17 19:47:36', '40k5NaEA', '4420749'), - (211, 1005, 'attending', '2021-09-17 03:45:11', '2025-12-17 19:47:34', '40k5NaEA', '4438807'), - (211, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '40k5NaEA', '4508342'), - (211, 1070, 'attending', '2021-09-30 22:39:38', '2025-12-17 19:47:34', '40k5NaEA', '4512562'), - (211, 1078, 'attending', '2021-10-07 17:15:05', '2025-12-17 19:47:34', '40k5NaEA', '4541281'), - (211, 1086, 'attending', '2021-10-13 19:21:24', '2025-12-17 19:47:34', '40k5NaEA', '4568602'), - (211, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '40k5NaEA', '4572153'), - (211, 1093, 'not_attending', '2021-10-22 15:44:30', '2025-12-17 19:47:35', '40k5NaEA', '4585962'), - (211, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '40k5NaEA', '4596356'), - (211, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '40k5NaEA', '4598860'), - (211, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '40k5NaEA', '4598861'), - (211, 1099, 'not_attending', '2021-11-10 20:17:36', '2025-12-17 19:47:36', '40k5NaEA', '4602797'), - (211, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '40k5NaEA', '4637896'), - (211, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '40k5NaEA', '4642994'), - (211, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '40k5NaEA', '4642995'), - (211, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '40k5NaEA', '4642996'), - (211, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '40k5NaEA', '4642997'), - (211, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '40k5NaEA', '4645687'), - (211, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '40k5NaEA', '4645698'), - (211, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '40k5NaEA', '4645704'), - (211, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '40k5NaEA', '4645705'), - (211, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '40k5NaEA', '4668385'), - (211, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '40k5NaEA', '4694407'), - (211, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '40k5NaEA', '4736497'), - (211, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '40k5NaEA', '4736499'), - (211, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '40k5NaEA', '4736500'), - (211, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '40k5NaEA', '4736503'), - (211, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '40k5NaEA', '4736504'), - (211, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '40k5NaEA', '4746789'), - (211, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '40k5NaEA', '4753929'), - (211, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '40k5NaEA', '5038850'), - (211, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '40k5NaEA', '5045826'), - (211, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '40k5NaEA', '5132533'), - (211, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '40k5NaEA', '5186582'), - (211, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '40k5NaEA', '5186583'), - (211, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '40k5NaEA', '5186585'), - (211, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '40k5NaEA', '5190437'), - (211, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '40k5NaEA', '5215989'), - (211, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40k5NaEA', '6045684'), - (212, 650, 'maybe', '2022-03-16 23:19:39', '2025-12-17 19:47:44', 'dVbr7epd', '3539928'), - (212, 699, 'attending', '2022-03-16 23:19:24', '2025-12-17 19:47:44', 'dVbr7epd', '3572241'), - (212, 712, 'attending', '2022-03-16 23:19:12', '2025-12-17 19:47:44', 'dVbr7epd', '3604056'), - (212, 1240, 'maybe', '2022-03-16 09:57:12', '2025-12-17 19:47:33', 'dVbr7epd', '5052239'), - (212, 1259, 'attending', '2022-03-14 17:48:24', '2025-12-17 19:47:33', 'dVbr7epd', '5132533'), - (212, 1264, 'maybe', '2022-03-15 11:41:09', '2025-12-17 19:47:25', 'dVbr7epd', '5160281'), - (212, 1266, 'maybe', '2022-03-14 17:47:59', '2025-12-17 19:47:33', 'dVbr7epd', '5166407'), - (212, 1268, 'attending', '2022-03-13 23:22:05', '2025-12-17 19:47:33', 'dVbr7epd', '5176296'), - (212, 1270, 'attending', '2022-03-20 00:28:47', '2025-12-17 19:47:25', 'dVbr7epd', '5181277'), - (212, 1271, 'attending', '2022-03-15 11:40:11', '2025-12-17 19:47:25', 'dVbr7epd', '5181648'), - (212, 1272, 'maybe', '2022-03-16 22:18:08', '2025-12-17 19:47:25', 'dVbr7epd', '5186582'), - (212, 1273, 'attending', '2022-03-20 22:10:49', '2025-12-17 19:47:25', 'dVbr7epd', '5186583'), - (212, 1274, 'maybe', '2022-04-02 17:49:22', '2025-12-17 19:47:26', 'dVbr7epd', '5186585'), - (212, 1276, 'maybe', '2022-03-26 16:09:42', '2025-12-17 19:47:25', 'dVbr7epd', '5186820'), - (212, 1277, 'maybe', '2022-03-16 00:48:30', '2025-12-17 19:47:25', 'dVbr7epd', '5186865'), - (212, 1279, 'maybe', '2022-03-16 09:44:42', '2025-12-17 19:47:25', 'dVbr7epd', '5187212'), - (212, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVbr7epd', '5190437'), - (212, 1282, 'attending', '2022-03-19 13:57:35', '2025-12-17 19:47:25', 'dVbr7epd', '5191241'), - (212, 1284, 'maybe', '2022-04-02 17:45:41', '2025-12-17 19:47:27', 'dVbr7epd', '5195095'), - (212, 1289, 'attending', '2022-03-23 19:17:59', '2025-12-17 19:47:25', 'dVbr7epd', '5200190'), - (212, 1290, 'attending', '2022-03-23 19:18:09', '2025-12-17 19:47:25', 'dVbr7epd', '5200196'), - (212, 1292, 'attending', '2022-03-28 16:46:55', '2025-12-17 19:47:25', 'dVbr7epd', '5214043'), - (212, 1293, 'maybe', '2022-03-27 20:57:06', '2025-12-17 19:47:27', 'dVbr7epd', '5214641'), - (212, 1294, 'attending', '2022-04-02 09:19:17', '2025-12-17 19:47:26', 'dVbr7epd', '5214686'), - (212, 1296, 'maybe', '2022-04-02 17:48:40', '2025-12-17 19:47:26', 'dVbr7epd', '5215985'), - (212, 1297, 'attending', '2022-03-28 16:46:21', '2025-12-17 19:47:25', 'dVbr7epd', '5215989'), - (212, 1302, 'not_attending', '2022-04-02 17:48:18', '2025-12-17 19:47:27', 'dVbr7epd', '5220867'), - (212, 1303, 'maybe', '2022-04-07 05:41:37', '2025-12-17 19:47:27', 'dVbr7epd', '5222531'), - (212, 1304, 'maybe', '2022-04-05 01:33:54', '2025-12-17 19:47:26', 'dVbr7epd', '5223468'), - (212, 1307, 'maybe', '2022-04-04 22:07:20', '2025-12-17 19:47:26', 'dVbr7epd', '5223686'), - (212, 1308, 'maybe', '2022-04-13 19:55:52', '2025-12-17 19:47:27', 'dVbr7epd', '5226703'), - (212, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVbr7epd', '5227432'), - (212, 1316, 'attending', '2022-04-12 13:23:14', '2025-12-17 19:47:27', 'dVbr7epd', '5237536'), - (212, 1318, 'maybe', '2022-04-12 13:23:39', '2025-12-17 19:47:27', 'dVbr7epd', '5238343'), - (212, 1321, 'maybe', '2022-04-12 13:23:48', '2025-12-17 19:47:27', 'dVbr7epd', '5238355'), - (212, 1322, 'attending', '2022-04-12 13:24:22', '2025-12-17 19:47:27', 'dVbr7epd', '5238356'), - (212, 1328, 'maybe', '2022-04-12 13:52:40', '2025-12-17 19:47:27', 'dVbr7epd', '5238759'), - (212, 1332, 'maybe', '2022-04-15 18:19:59', '2025-12-17 19:47:27', 'dVbr7epd', '5243274'), - (212, 1336, 'attending', '2022-04-17 15:35:29', '2025-12-17 19:47:27', 'dVbr7epd', '5244915'), - (212, 1337, 'attending', '2022-04-18 19:39:39', '2025-12-17 19:47:27', 'dVbr7epd', '5245036'), - (212, 1341, 'maybe', '2022-04-17 01:51:23', '2025-12-17 19:47:28', 'dVbr7epd', '5245755'), - (212, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dVbr7epd', '5247467'), - (212, 1347, 'maybe', '2022-04-18 19:39:58', '2025-12-17 19:47:27', 'dVbr7epd', '5247537'), - (212, 1349, 'maybe', '2022-04-21 22:25:36', '2025-12-17 19:47:27', 'dVbr7epd', '5249631'), - (212, 1351, 'maybe', '2022-04-22 21:12:39', '2025-12-17 19:47:28', 'dVbr7epd', '5251561'), - (212, 1359, 'maybe', '2022-04-25 09:06:26', '2025-12-17 19:47:28', 'dVbr7epd', '5258360'), - (212, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dVbr7epd', '5260800'), - (212, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dVbr7epd', '5269930'), - (212, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dVbr7epd', '5271448'), - (212, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dVbr7epd', '5271449'), - (212, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dVbr7epd', '5276469'), - (212, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'dVbr7epd', '5277078'), - (212, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVbr7epd', '5278159'), - (212, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dVbr7epd', '5363695'), - (212, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVbr7epd', '5365960'), - (212, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dVbr7epd', '5368973'), - (212, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVbr7epd', '5378247'), - (212, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dVbr7epd', '5389605'), - (212, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dVbr7epd', '5397265'), - (212, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dVbr7epd', '5403967'), - (212, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVbr7epd', '5404786'), - (212, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVbr7epd', '5405203'), - (212, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dVbr7epd', '5411699'), - (212, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dVbr7epd', '5412550'), - (212, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dVbr7epd', '5415046'), - (212, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVbr7epd', '5422086'), - (212, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dVbr7epd', '5422406'), - (212, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVbr7epd', '5424565'), - (212, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVbr7epd', '5426882'), - (212, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dVbr7epd', '5427083'), - (212, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dVbr7epd', '5441125'), - (212, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dVbr7epd', '5441126'), - (212, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVbr7epd', '5441128'), - (212, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVbr7epd', '5441131'), - (212, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVbr7epd', '5441132'), - (212, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVbr7epd', '5446643'), - (212, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVbr7epd', '5453325'), - (212, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVbr7epd', '5454516'), - (212, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVbr7epd', '5454605'), - (212, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVbr7epd', '5455037'), - (212, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVbr7epd', '5461278'), - (212, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVbr7epd', '5469480'), - (212, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVbr7epd', '5471073'), - (212, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVbr7epd', '5474663'), - (212, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVbr7epd', '5482022'), - (212, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVbr7epd', '5482793'), - (212, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVbr7epd', '5488912'), - (212, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVbr7epd', '5492192'), - (212, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVbr7epd', '5493139'), - (212, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVbr7epd', '5493200'), - (212, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVbr7epd', '5502188'), - (212, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVbr7epd', '5505059'), - (212, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVbr7epd', '5509055'), - (212, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVbr7epd', '5512862'), - (212, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVbr7epd', '5513985'), - (212, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dVbr7epd', '5519981'), - (212, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVbr7epd', '5522550'), - (212, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVbr7epd', '5534683'), - (212, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVbr7epd', '5537735'), - (212, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVbr7epd', '5540859'), - (212, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVbr7epd', '5546619'), - (212, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVbr7epd', '5555245'), - (212, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVbr7epd', '5557747'), - (212, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVbr7epd', '5560255'), - (212, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVbr7epd', '5562906'), - (212, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVbr7epd', '5600604'), - (212, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVbr7epd', '5605544'), - (212, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'dVbr7epd', '5606737'), - (212, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVbr7epd', '5630960'), - (212, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVbr7epd', '5630961'), - (212, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVbr7epd', '5630962'), - (212, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVbr7epd', '5630966'), - (212, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVbr7epd', '5630967'), - (212, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVbr7epd', '5630968'), - (212, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVbr7epd', '5635406'), - (212, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVbr7epd', '5638765'), - (212, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVbr7epd', '5640097'), - (212, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVbr7epd', '5640843'), - (212, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVbr7epd', '5641521'), - (212, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVbr7epd', '5642818'), - (212, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVbr7epd', '5652395'), - (212, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVbr7epd', '5670445'), - (212, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVbr7epd', '5671637'), - (212, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVbr7epd', '5672329'), - (212, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVbr7epd', '5674057'), - (212, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVbr7epd', '5674060'), - (212, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVbr7epd', '5677461'), - (212, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVbr7epd', '5698046'), - (212, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVbr7epd', '5699760'), - (212, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVbr7epd', '5741601'), - (212, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVbr7epd', '5763458'), - (212, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVbr7epd', '5774172'), - (212, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVbr7epd', '5818247'), - (212, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVbr7epd', '5819471'), - (212, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVbr7epd', '5827739'), - (212, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVbr7epd', '5844306'), - (212, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVbr7epd', '5850159'), - (212, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVbr7epd', '5858999'), - (212, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVbr7epd', '5871984'), - (212, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVbr7epd', '5876354'), - (212, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVbr7epd', '5880939'), - (212, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dVbr7epd', '5880940'), - (212, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVbr7epd', '5880942'), - (212, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVbr7epd', '5880943'), - (212, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVbr7epd', '5887890'), - (212, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVbr7epd', '5888598'), - (212, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVbr7epd', '5893260'), - (212, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dVbr7epd', '5899826'), - (212, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dVbr7epd', '5900199'), - (212, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVbr7epd', '5900200'), - (212, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVbr7epd', '5900202'), - (212, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVbr7epd', '5900203'), - (212, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dVbr7epd', '5901108'), - (212, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dVbr7epd', '5901126'), - (212, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dVbr7epd', '5909655'), - (212, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dVbr7epd', '5910522'), - (212, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dVbr7epd', '5910526'), - (212, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dVbr7epd', '5910528'), - (212, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dVbr7epd', '5916219'), - (212, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVbr7epd', '5936234'), - (212, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVbr7epd', '5958351'), - (212, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVbr7epd', '5959751'), - (212, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVbr7epd', '5959755'), - (212, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVbr7epd', '5960055'), - (212, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVbr7epd', '5961684'), - (212, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVbr7epd', '5962132'), - (212, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVbr7epd', '5962133'), - (212, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVbr7epd', '5962134'), - (212, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVbr7epd', '5962317'), - (212, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVbr7epd', '5962318'), - (212, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVbr7epd', '5965933'), - (212, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVbr7epd', '5967014'), - (212, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVbr7epd', '5972815'), - (212, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVbr7epd', '5974016'), - (212, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dVbr7epd', '5975052'), - (212, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dVbr7epd', '5975054'), - (212, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVbr7epd', '5981515'), - (212, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVbr7epd', '5993516'), - (212, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVbr7epd', '5998939'), - (212, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVbr7epd', '6028191'), - (212, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVbr7epd', '6040066'), - (212, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVbr7epd', '6042717'), - (212, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVbr7epd', '6044838'), - (212, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVbr7epd', '6044839'), - (212, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbr7epd', '6045684'), - (212, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVbr7epd', '6050104'), - (212, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVbr7epd', '6053195'), - (212, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVbr7epd', '6053198'), - (212, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVbr7epd', '6056085'), - (212, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVbr7epd', '6056916'), - (212, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVbr7epd', '6059290'), - (212, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVbr7epd', '6060328'), - (212, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVbr7epd', '6061037'), - (212, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVbr7epd', '6061039'), - (212, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVbr7epd', '6067245'), - (212, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVbr7epd', '6068094'), - (212, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVbr7epd', '6068252'), - (212, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVbr7epd', '6068253'), - (212, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVbr7epd', '6068254'), - (212, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVbr7epd', '6068280'), - (212, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVbr7epd', '6069093'), - (212, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dVbr7epd', '6072528'), - (212, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dVbr7epd', '6075556'), - (212, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVbr7epd', '6079840'), - (212, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVbr7epd', '6083398'), - (212, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVbr7epd', '6093504'), - (212, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVbr7epd', '6097414'), - (212, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVbr7epd', '6097442'), - (212, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVbr7epd', '6097684'), - (212, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVbr7epd', '6098762'), - (212, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVbr7epd', '6101362'), - (212, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVbr7epd', '6107314'), - (213, 406, 'attending', '2021-04-22 15:43:30', '2025-12-17 19:47:44', 'pmbpnwE4', '3236464'), - (213, 644, 'attending', '2021-04-22 22:45:06', '2025-12-17 19:47:45', 'pmbpnwE4', '3539919'), - (213, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'pmbpnwE4', '3539920'), - (213, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'pmbpnwE4', '3539921'), - (213, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'pmbpnwE4', '3539922'), - (213, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'pmbpnwE4', '3539923'), - (213, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'pmbpnwE4', '3583262'), - (213, 768, 'attending', '2021-04-26 22:35:00', '2025-12-17 19:47:46', 'pmbpnwE4', '3724124'), - (213, 775, 'attending', '2021-04-22 03:45:41', '2025-12-17 19:47:45', 'pmbpnwE4', '3731062'), - (213, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'pmbpnwE4', '3793156'), - (213, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmbpnwE4', '3975311'), - (213, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbpnwE4', '3994992'), - (213, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbpnwE4', '6045684'), - (214, 971, 'attending', '2021-09-08 19:13:55', '2025-12-17 19:47:43', 'dBnl00wd', '4356801'), - (214, 991, 'attending', '2021-09-08 09:48:38', '2025-12-17 19:47:43', 'dBnl00wd', '4420738'), - (214, 992, 'not_attending', '2021-09-19 01:31:23', '2025-12-17 19:47:34', 'dBnl00wd', '4420739'), - (214, 993, 'attending', '2021-09-09 22:57:54', '2025-12-17 19:47:34', 'dBnl00wd', '4420741'), - (214, 994, 'attending', '2021-10-02 18:13:45', '2025-12-17 19:47:34', 'dBnl00wd', '4420742'), - (214, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dBnl00wd', '4420744'), - (214, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dBnl00wd', '4420747'), - (214, 1004, 'attending', '2021-09-08 09:48:55', '2025-12-17 19:47:43', 'dBnl00wd', '4438804'), - (214, 1019, 'attending', '2021-09-09 22:57:25', '2025-12-17 19:47:43', 'dBnl00wd', '4450515'), - (214, 1020, 'maybe', '2021-09-13 14:10:05', '2025-12-17 19:47:43', 'dBnl00wd', '4451787'), - (214, 1022, 'attending', '2021-09-09 22:57:15', '2025-12-17 19:47:43', 'dBnl00wd', '4458628'), - (214, 1023, 'not_attending', '2021-09-09 22:55:39', '2025-12-17 19:47:43', 'dBnl00wd', '4461883'), - (214, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dBnl00wd', '4508342'), - (214, 1072, 'attending', '2021-10-06 23:24:25', '2025-12-17 19:47:34', 'dBnl00wd', '4516287'), - (214, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dBnl00wd', '4568602'), - (214, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dBnl00wd', '6045684'), - (215, 221, 'attending', '2020-09-15 21:53:55', '2025-12-17 19:47:56', 'GmjM1Vad', '3129265'), - (215, 311, 'attending', '2020-09-18 15:00:39', '2025-12-17 19:47:56', 'GmjM1Vad', '3186057'), - (215, 340, 'attending', '2020-09-18 15:00:52', '2025-12-17 19:47:56', 'GmjM1Vad', '3204470'), - (215, 341, 'maybe', '2020-09-25 20:59:59', '2025-12-17 19:47:52', 'GmjM1Vad', '3204471'), - (215, 342, 'attending', '2020-10-02 19:37:12', '2025-12-17 19:47:52', 'GmjM1Vad', '3204472'), - (215, 344, 'maybe', '2020-11-01 17:06:13', '2025-12-17 19:47:53', 'GmjM1Vad', '3206906'), - (215, 348, 'maybe', '2020-09-27 03:24:59', '2025-12-17 19:47:52', 'GmjM1Vad', '3209159'), - (215, 362, 'attending', '2020-09-20 16:19:33', '2025-12-17 19:47:52', 'GmjM1Vad', '3214207'), - (215, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'GmjM1Vad', '3217037'), - (215, 364, 'maybe', '2020-09-19 16:10:52', '2025-12-17 19:47:56', 'GmjM1Vad', '3217106'), - (215, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'GmjM1Vad', '3218510'), - (215, 375, 'maybe', '2020-10-05 02:50:43', '2025-12-17 19:47:52', 'GmjM1Vad', '3222825'), - (215, 382, 'maybe', '2020-09-27 21:57:48', '2025-12-17 19:47:52', 'GmjM1Vad', '3226873'), - (215, 385, 'attending', '2020-09-28 23:18:04', '2025-12-17 19:47:52', 'GmjM1Vad', '3228698'), - (215, 386, 'attending', '2020-10-09 17:04:36', '2025-12-17 19:47:52', 'GmjM1Vad', '3228699'), - (215, 387, 'not_attending', '2020-10-17 18:27:03', '2025-12-17 19:47:52', 'GmjM1Vad', '3228700'), - (215, 388, 'attending', '2020-10-24 13:59:21', '2025-12-17 19:47:52', 'GmjM1Vad', '3228701'), - (215, 390, 'maybe', '2020-10-01 18:19:50', '2025-12-17 19:47:52', 'GmjM1Vad', '3231510'), - (215, 411, 'maybe', '2020-10-04 22:14:43', '2025-12-17 19:47:52', 'GmjM1Vad', '3236596'), - (215, 414, 'not_attending', '2020-10-18 20:04:32', '2025-12-17 19:47:52', 'GmjM1Vad', '3237277'), - (215, 415, 'maybe', '2020-10-12 16:43:09', '2025-12-17 19:47:52', 'GmjM1Vad', '3238044'), - (215, 416, 'maybe', '2020-10-09 20:39:27', '2025-12-17 19:47:52', 'GmjM1Vad', '3238073'), - (215, 417, 'maybe', '2020-10-08 19:52:01', '2025-12-17 19:47:52', 'GmjM1Vad', '3238779'), - (215, 420, 'attending', '2020-10-15 22:54:55', '2025-12-17 19:47:52', 'GmjM1Vad', '3245293'), - (215, 421, 'maybe', '2020-10-23 22:59:03', '2025-12-17 19:47:52', 'GmjM1Vad', '3245294'), - (215, 422, 'maybe', '2020-10-29 22:10:31', '2025-12-17 19:47:53', 'GmjM1Vad', '3245295'), - (215, 423, 'maybe', '2020-11-05 23:56:00', '2025-12-17 19:47:53', 'GmjM1Vad', '3245296'), - (215, 424, 'maybe', '2020-10-12 01:12:00', '2025-12-17 19:47:52', 'GmjM1Vad', '3245751'), - (215, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GmjM1Vad', '3250232'), - (215, 428, 'maybe', '2020-10-26 20:03:30', '2025-12-17 19:47:53', 'GmjM1Vad', '3250332'), - (215, 438, 'maybe', '2020-10-31 20:34:10', '2025-12-17 19:47:53', 'GmjM1Vad', '3256163'), - (215, 439, 'maybe', '2020-10-28 18:26:17', '2025-12-17 19:47:53', 'GmjM1Vad', '3256164'), - (215, 440, 'maybe', '2020-10-18 16:39:59', '2025-12-17 19:47:53', 'GmjM1Vad', '3256168'), - (215, 441, 'maybe', '2020-11-14 16:17:42', '2025-12-17 19:47:54', 'GmjM1Vad', '3256169'), - (215, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GmjM1Vad', '3263578'), - (215, 445, 'maybe', '2020-11-12 19:47:51', '2025-12-17 19:47:54', 'GmjM1Vad', '3266138'), - (215, 447, 'maybe', '2020-10-28 00:43:18', '2025-12-17 19:47:53', 'GmjM1Vad', '3267895'), - (215, 456, 'maybe', '2020-11-05 15:17:35', '2025-12-17 19:47:54', 'GmjM1Vad', '3276428'), - (215, 459, 'maybe', '2020-11-10 00:12:43', '2025-12-17 19:47:54', 'GmjM1Vad', '3281467'), - (215, 461, 'maybe', '2020-11-10 00:13:00', '2025-12-17 19:47:53', 'GmjM1Vad', '3281469'), - (215, 462, 'not_attending', '2020-11-11 22:51:00', '2025-12-17 19:47:54', 'GmjM1Vad', '3281470'), - (215, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GmjM1Vad', '3281829'), - (215, 468, 'maybe', '2020-11-11 22:51:10', '2025-12-17 19:47:54', 'GmjM1Vad', '3285413'), - (215, 469, 'maybe', '2020-11-11 22:51:08', '2025-12-17 19:47:54', 'GmjM1Vad', '3285414'), - (215, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GmjM1Vad', '3297764'), - (215, 493, 'maybe', '2020-12-05 15:31:35', '2025-12-17 19:47:54', 'GmjM1Vad', '3313856'), - (215, 497, 'maybe', '2020-12-15 00:20:07', '2025-12-17 19:47:55', 'GmjM1Vad', '3314270'), - (215, 499, 'maybe', '2020-12-05 15:31:42', '2025-12-17 19:47:55', 'GmjM1Vad', '3314909'), - (215, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GmjM1Vad', '3314964'), - (215, 502, 'not_attending', '2020-12-12 20:34:05', '2025-12-17 19:47:55', 'GmjM1Vad', '3323365'), - (215, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GmjM1Vad', '3329383'), - (215, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GmjM1Vad', '3351539'), - (215, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GmjM1Vad', '3386848'), - (215, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GmjM1Vad', '3389527'), - (215, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GmjM1Vad', '3396499'), - (215, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GmjM1Vad', '3403650'), - (215, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GmjM1Vad', '3406988'), - (215, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GmjM1Vad', '3416576'), - (215, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'GmjM1Vad', '3418925'), - (215, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'GmjM1Vad', '3430267'), - (215, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'GmjM1Vad', '3470303'), - (215, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'GmjM1Vad', '3470305'), - (215, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GmjM1Vad', '3470991'), - (215, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'GmjM1Vad', '3517815'), - (215, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'GmjM1Vad', '3517816'), - (215, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'GmjM1Vad', '3523941'), - (215, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GmjM1Vad', '3533850'), - (215, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GmjM1Vad', '3536632'), - (215, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GmjM1Vad', '3536656'), - (215, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'GmjM1Vad', '3539916'), - (215, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'GmjM1Vad', '3539917'), - (215, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'GmjM1Vad', '3539918'), - (215, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'GmjM1Vad', '3539919'), - (215, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'GmjM1Vad', '3539920'), - (215, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'GmjM1Vad', '3539921'), - (215, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'GmjM1Vad', '3539922'), - (215, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'GmjM1Vad', '3539923'), - (215, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GmjM1Vad', '3539927'), - (215, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GmjM1Vad', '3582734'), - (215, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GmjM1Vad', '3583262'), - (215, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GmjM1Vad', '3619523'), - (215, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GmjM1Vad', '3661369'), - (215, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GmjM1Vad', '3674262'), - (215, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GmjM1Vad', '3677402'), - (215, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GmjM1Vad', '3730212'), - (215, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GmjM1Vad', '3793156'), - (215, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjM1Vad', '3974109'), - (215, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjM1Vad', '3975311'), - (215, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjM1Vad', '3975312'), - (215, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjM1Vad', '3994992'), - (215, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjM1Vad', '4014338'), - (215, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GmjM1Vad', '4021848'), - (215, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjM1Vad', '4136744'), - (215, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GmjM1Vad', '4136937'), - (215, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GmjM1Vad', '4136938'), - (215, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjM1Vad', '4136947'), - (215, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjM1Vad', '4210314'), - (215, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjM1Vad', '4225444'), - (215, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjM1Vad', '4239259'), - (215, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GmjM1Vad', '4240316'), - (215, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GmjM1Vad', '4240317'), - (215, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GmjM1Vad', '4240318'), - (215, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GmjM1Vad', '4240320'), - (215, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GmjM1Vad', '4250163'), - (215, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjM1Vad', '4275957'), - (215, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjM1Vad', '4277819'), - (215, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjM1Vad', '4301723'), - (215, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GmjM1Vad', '4302093'), - (215, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjM1Vad', '4304151'), - (215, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjM1Vad', '4356801'), - (215, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GmjM1Vad', '4366186'), - (215, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GmjM1Vad', '4366187'), - (215, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GmjM1Vad', '4420735'), - (215, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GmjM1Vad', '4420738'), - (215, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GmjM1Vad', '4420739'), - (215, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjM1Vad', '4420741'), - (215, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GmjM1Vad', '4420744'), - (215, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GmjM1Vad', '4420747'), - (215, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GmjM1Vad', '4420748'), - (215, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjM1Vad', '4420749'), - (215, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GmjM1Vad', '4461883'), - (215, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GmjM1Vad', '4508342'), - (215, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GmjM1Vad', '4568602'), - (215, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GmjM1Vad', '4572153'), - (215, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GmjM1Vad', '4585962'), - (215, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'GmjM1Vad', '4596356'), - (215, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GmjM1Vad', '4598860'), - (215, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'GmjM1Vad', '4598861'), - (215, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GmjM1Vad', '4602797'), - (215, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'GmjM1Vad', '4637896'), - (215, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'GmjM1Vad', '4642994'), - (215, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'GmjM1Vad', '4642995'), - (215, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GmjM1Vad', '4642996'), - (215, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GmjM1Vad', '4642997'), - (215, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'GmjM1Vad', '4645687'), - (215, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GmjM1Vad', '4645698'), - (215, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'GmjM1Vad', '4645704'), - (215, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'GmjM1Vad', '4645705'), - (215, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GmjM1Vad', '4668385'), - (215, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GmjM1Vad', '4694407'), - (215, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GmjM1Vad', '4736497'), - (215, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GmjM1Vad', '4736499'), - (215, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GmjM1Vad', '4736500'), - (215, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GmjM1Vad', '4736503'), - (215, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'GmjM1Vad', '4736504'), - (215, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GmjM1Vad', '4746789'), - (215, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'GmjM1Vad', '4753929'), - (215, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GmjM1Vad', '5038850'), - (215, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GmjM1Vad', '5045826'), - (215, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GmjM1Vad', '5132533'), - (215, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GmjM1Vad', '5186582'), - (215, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GmjM1Vad', '5186583'), - (215, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'GmjM1Vad', '5186585'), - (215, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GmjM1Vad', '5190437'), - (215, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GmjM1Vad', '5195095'), - (215, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GmjM1Vad', '5215989'), - (215, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GmjM1Vad', '5223686'), - (215, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GmjM1Vad', '5247467'), - (215, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'GmjM1Vad', '5260800'), - (215, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GmjM1Vad', '5269930'), - (215, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GmjM1Vad', '5271448'), - (215, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'GmjM1Vad', '5271449'), - (215, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GmjM1Vad', '5278159'), - (215, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'GmjM1Vad', '5363695'), - (215, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GmjM1Vad', '5365960'), - (215, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GmjM1Vad', '5378247'), - (215, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GmjM1Vad', '5389605'), - (215, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GmjM1Vad', '5397265'), - (215, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GmjM1Vad', '5404786'), - (215, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GmjM1Vad', '5405203'), - (215, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GmjM1Vad', '5412550'), - (215, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GmjM1Vad', '5415046'), - (215, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GmjM1Vad', '5422086'), - (215, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GmjM1Vad', '5422406'), - (215, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GmjM1Vad', '5424565'), - (215, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GmjM1Vad', '5426882'), - (215, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GmjM1Vad', '5441125'), - (215, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GmjM1Vad', '5441126'), - (215, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GmjM1Vad', '5441128'), - (215, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjM1Vad', '5441131'), - (215, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjM1Vad', '5441132'), - (215, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GmjM1Vad', '5453325'), - (215, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GmjM1Vad', '5454516'), - (215, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GmjM1Vad', '5454605'), - (215, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GmjM1Vad', '5455037'), - (215, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjM1Vad', '5461278'), - (215, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GmjM1Vad', '5469480'), - (215, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GmjM1Vad', '5474663'), - (215, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GmjM1Vad', '5482022'), - (215, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjM1Vad', '5488912'), - (215, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjM1Vad', '5492192'), - (215, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjM1Vad', '5493139'), - (215, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjM1Vad', '5493200'), - (215, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjM1Vad', '5502188'), - (215, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjM1Vad', '5505059'), - (215, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GmjM1Vad', '5509055'), - (215, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjM1Vad', '5512862'), - (215, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjM1Vad', '5513985'), - (215, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GmjM1Vad', '5519981'), - (215, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjM1Vad', '5522550'), - (215, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjM1Vad', '5534683'), - (215, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjM1Vad', '5537735'), - (215, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjM1Vad', '5540859'), - (215, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjM1Vad', '5546619'), - (215, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjM1Vad', '5557747'), - (215, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjM1Vad', '5560255'), - (215, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjM1Vad', '5562906'), - (215, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjM1Vad', '5600604'), - (215, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjM1Vad', '5605544'), - (215, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GmjM1Vad', '5630960'), - (215, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjM1Vad', '5630961'), - (215, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjM1Vad', '5630962'), - (215, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GmjM1Vad', '5630966'), - (215, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GmjM1Vad', '5630967'), - (215, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjM1Vad', '5630968'), - (215, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjM1Vad', '5635406'), - (215, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjM1Vad', '5638765'), - (215, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjM1Vad', '5640097'), - (215, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjM1Vad', '5640843'), - (215, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjM1Vad', '5641521'), - (215, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GmjM1Vad', '5642818'), - (215, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjM1Vad', '5652395'), - (215, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GmjM1Vad', '5670445'), - (215, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjM1Vad', '5671637'), - (215, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjM1Vad', '5672329'), - (215, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjM1Vad', '5674057'), - (215, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjM1Vad', '5674060'), - (215, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GmjM1Vad', '5677461'), - (215, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjM1Vad', '5698046'), - (215, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GmjM1Vad', '5699760'), - (215, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjM1Vad', '5741601'), - (215, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjM1Vad', '5763458'), - (215, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjM1Vad', '5774172'), - (215, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GmjM1Vad', '5818247'), - (215, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjM1Vad', '5819471'), - (215, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'GmjM1Vad', '5827739'), - (215, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjM1Vad', '5844306'), - (215, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjM1Vad', '5850159'), - (215, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjM1Vad', '5858999'), - (215, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjM1Vad', '5871984'), - (215, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjM1Vad', '5876354'), - (215, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjM1Vad', '5880939'), - (215, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjM1Vad', '5880940'), - (215, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GmjM1Vad', '5880942'), - (215, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjM1Vad', '5880943'), - (215, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjM1Vad', '5887890'), - (215, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjM1Vad', '5888598'), - (215, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjM1Vad', '5893260'), - (215, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjM1Vad', '5899826'), - (215, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjM1Vad', '5900199'), - (215, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjM1Vad', '5900200'), - (215, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjM1Vad', '5900202'), - (215, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjM1Vad', '5900203'), - (215, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GmjM1Vad', '5901108'), - (215, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjM1Vad', '5901126'), - (215, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'GmjM1Vad', '5901606'), - (215, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjM1Vad', '5909655'), - (215, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjM1Vad', '5910522'), - (215, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjM1Vad', '5910526'), - (215, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjM1Vad', '5910528'), - (215, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjM1Vad', '5916219'), - (215, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GmjM1Vad', '5936234'), - (215, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjM1Vad', '5958351'), - (215, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjM1Vad', '5959751'), - (215, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjM1Vad', '5959755'), - (215, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjM1Vad', '5960055'), - (215, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjM1Vad', '5961684'), - (215, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GmjM1Vad', '5962132'), - (215, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GmjM1Vad', '5962133'), - (215, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjM1Vad', '5962134'), - (215, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjM1Vad', '5962317'), - (215, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjM1Vad', '5962318'), - (215, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GmjM1Vad', '5965933'), - (215, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjM1Vad', '5967014'), - (215, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjM1Vad', '5972815'), - (215, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjM1Vad', '5974016'), - (215, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjM1Vad', '5981515'), - (215, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjM1Vad', '5993516'), - (215, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjM1Vad', '5998939'), - (215, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjM1Vad', '6028191'), - (215, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjM1Vad', '6040066'), - (215, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjM1Vad', '6042717'), - (215, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjM1Vad', '6044838'), - (215, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GmjM1Vad', '6044839'), - (215, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjM1Vad', '6045684'), - (215, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjM1Vad', '6050104'), - (215, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjM1Vad', '6053195'), - (215, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjM1Vad', '6053198'), - (215, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjM1Vad', '6056085'), - (215, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjM1Vad', '6056916'), - (215, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjM1Vad', '6059290'), - (215, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjM1Vad', '6060328'), - (215, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjM1Vad', '6061037'), - (215, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjM1Vad', '6061039'), - (215, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjM1Vad', '6067245'), - (215, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjM1Vad', '6068094'), - (215, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjM1Vad', '6068252'), - (215, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjM1Vad', '6068253'), - (215, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjM1Vad', '6068254'), - (215, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GmjM1Vad', '6068280'), - (215, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjM1Vad', '6069093'), - (215, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GmjM1Vad', '6072528'), - (215, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjM1Vad', '6079840'), - (215, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjM1Vad', '6083398'), - (215, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GmjM1Vad', '6093504'), - (215, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjM1Vad', '6097414'), - (215, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjM1Vad', '6097442'), - (215, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjM1Vad', '6097684'), - (215, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjM1Vad', '6098762'), - (215, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjM1Vad', '6101361'), - (215, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjM1Vad', '6101362'), - (215, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjM1Vad', '6107314'), - (215, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GmjM1Vad', '6120034'), - (215, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GmjM1Vad', '6136733'), - (215, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjM1Vad', '6137989'), - (215, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjM1Vad', '6150864'), - (215, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjM1Vad', '6155491'), - (215, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjM1Vad', '6164417'), - (215, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjM1Vad', '6166388'), - (215, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjM1Vad', '6176439'), - (215, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GmjM1Vad', '6182410'), - (215, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjM1Vad', '6185812'), - (215, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjM1Vad', '6187651'), - (215, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjM1Vad', '6187963'), - (215, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjM1Vad', '6187964'), - (215, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjM1Vad', '6187966'), - (215, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjM1Vad', '6187967'), - (215, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjM1Vad', '6187969'), - (215, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjM1Vad', '6334878'), - (215, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjM1Vad', '6337236'), - (215, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjM1Vad', '6337970'), - (215, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjM1Vad', '6338308'), - (215, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjM1Vad', '6341710'), - (215, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjM1Vad', '6342044'), - (215, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjM1Vad', '6342298'), - (215, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GmjM1Vad', '6343294'), - (215, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjM1Vad', '6347034'), - (215, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjM1Vad', '6347056'), - (215, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjM1Vad', '6353830'), - (215, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjM1Vad', '6353831'), - (215, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjM1Vad', '6357867'), - (215, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjM1Vad', '6358652'), - (215, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjM1Vad', '6361709'), - (215, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjM1Vad', '6361710'), - (215, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjM1Vad', '6361711'), - (215, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjM1Vad', '6361712'), - (215, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjM1Vad', '6361713'), - (215, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GmjM1Vad', '6382573'), - (215, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GmjM1Vad', '6388604'), - (215, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GmjM1Vad', '6394629'), - (215, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjM1Vad', '6394631'), - (215, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjM1Vad', '6440863'), - (215, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjM1Vad', '6445440'), - (215, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjM1Vad', '6453951'), - (215, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjM1Vad', '6461696'), - (215, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjM1Vad', '6462129'), - (215, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjM1Vad', '6463218'), - (215, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GmjM1Vad', '6472181'), - (215, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjM1Vad', '6482693'), - (215, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GmjM1Vad', '6484200'), - (215, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GmjM1Vad', '6484680'), - (215, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjM1Vad', '6507741'), - (215, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GmjM1Vad', '6514659'), - (215, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GmjM1Vad', '6514660'), - (215, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjM1Vad', '6519103'), - (215, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjM1Vad', '6535681'), - (215, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjM1Vad', '6584747'), - (215, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjM1Vad', '6587097'), - (215, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjM1Vad', '6609022'), - (215, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GmjM1Vad', '6632757'), - (215, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjM1Vad', '6644187'), - (215, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjM1Vad', '6648951'), - (215, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GmjM1Vad', '6648952'), - (215, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjM1Vad', '6655401'), - (215, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjM1Vad', '6661585'), - (215, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjM1Vad', '6661588'), - (215, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjM1Vad', '6661589'), - (215, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjM1Vad', '6699906'), - (215, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GmjM1Vad', '6699913'), - (215, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjM1Vad', '6701109'), - (215, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjM1Vad', '6705219'), - (215, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjM1Vad', '6710153'), - (215, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjM1Vad', '6711552'), - (215, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GmjM1Vad', '6711553'), - (215, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjM1Vad', '6722688'), - (215, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjM1Vad', '6730620'), - (215, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjM1Vad', '6740364'), - (215, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjM1Vad', '6743829'), - (215, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjM1Vad', '7030380'), - (215, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GmjM1Vad', '7033677'), - (215, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjM1Vad', '7044715'), - (215, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjM1Vad', '7050318'), - (215, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjM1Vad', '7050319'), - (215, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjM1Vad', '7050322'), - (215, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjM1Vad', '7057804'), - (215, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjM1Vad', '7072824'), - (215, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjM1Vad', '7074348'), - (215, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GmjM1Vad', '7074364'), - (215, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GmjM1Vad', '7089267'), - (215, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjM1Vad', '7098747'), - (215, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GmjM1Vad', '7113468'), - (215, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjM1Vad', '7114856'), - (215, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjM1Vad', '7114951'), - (215, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjM1Vad', '7114955'), - (215, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjM1Vad', '7114956'), - (215, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GmjM1Vad', '7114957'), - (215, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjM1Vad', '7159484'), - (215, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjM1Vad', '7178446'), - (215, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GmjM1Vad', '7220467'), - (215, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjM1Vad', '7240354'), - (215, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjM1Vad', '7251633'), - (215, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjM1Vad', '7324073'), - (215, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjM1Vad', '7324074'), - (215, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GmjM1Vad', '7324075'), - (215, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GmjM1Vad', '7324078'), - (215, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GmjM1Vad', '7324082'), - (215, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GmjM1Vad', '7331457'), - (215, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GmjM1Vad', '7363643'), - (215, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GmjM1Vad', '7368606'), - (215, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GmjM1Vad', '7397462'), - (215, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GmjM1Vad', '7424275'), - (215, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GmjM1Vad', '7432751'), - (215, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GmjM1Vad', '7432752'), - (215, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GmjM1Vad', '7432753'), - (215, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GmjM1Vad', '7432754'), - (215, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GmjM1Vad', '7432755'), - (215, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GmjM1Vad', '7432756'), - (215, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GmjM1Vad', '7432758'), - (215, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GmjM1Vad', '7432759'), - (215, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GmjM1Vad', '7433834'), - (215, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GmjM1Vad', '7470197'), - (215, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GmjM1Vad', '7685613'), - (215, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GmjM1Vad', '7688194'), - (215, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GmjM1Vad', '7688196'), - (215, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GmjM1Vad', '7688289'), - (215, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GmjM1Vad', '7692763'), - (215, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GmjM1Vad', '7697552'), - (215, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GmjM1Vad', '7699878'), - (215, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GmjM1Vad', '7704043'), - (215, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GmjM1Vad', '7712467'), - (215, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GmjM1Vad', '7713585'), - (215, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GmjM1Vad', '7713586'), - (215, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GmjM1Vad', '7738518'), - (215, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GmjM1Vad', '7750636'), - (215, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GmjM1Vad', '7796540'), - (215, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GmjM1Vad', '7796541'), - (215, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GmjM1Vad', '7796542'), - (215, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GmjM1Vad', '7825913'), - (215, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GmjM1Vad', '7826209'), - (215, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GmjM1Vad', '7834742'), - (215, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GmjM1Vad', '7842108'), - (215, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GmjM1Vad', '7842902'), - (215, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GmjM1Vad', '7842903'), - (215, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GmjM1Vad', '7842904'), - (215, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GmjM1Vad', '7842905'), - (215, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GmjM1Vad', '7855719'), - (215, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GmjM1Vad', '7860683'), - (215, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GmjM1Vad', '7860684'), - (215, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GmjM1Vad', '7866095'), - (215, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GmjM1Vad', '7869170'), - (215, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GmjM1Vad', '7869188'), - (215, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GmjM1Vad', '7869201'), - (215, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GmjM1Vad', '7877465'), - (215, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GmjM1Vad', '7888250'), - (215, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GmjM1Vad', '7904777'), - (215, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GmjM1Vad', '8349164'), - (215, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GmjM1Vad', '8349545'), - (215, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GmjM1Vad', '8368028'), - (215, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GmjM1Vad', '8368029'), - (215, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GmjM1Vad', '8388462'), - (215, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GmjM1Vad', '8400273'), - (215, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GmjM1Vad', '8400275'), - (215, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'GmjM1Vad', '8400276'), - (215, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GmjM1Vad', '8404977'), - (215, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GmjM1Vad', '8430783'), - (215, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GmjM1Vad', '8430784'), - (215, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GmjM1Vad', '8430799'), - (215, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GmjM1Vad', '8430800'), - (215, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GmjM1Vad', '8430801'), - (215, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GmjM1Vad', '8438709'), - (215, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GmjM1Vad', '8457738'), - (215, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GmjM1Vad', '8459566'), - (215, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GmjM1Vad', '8459567'), - (215, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GmjM1Vad', '8461032'), - (215, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GmjM1Vad', '8477877'), - (215, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GmjM1Vad', '8485688'), - (215, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GmjM1Vad', '8490587'), - (215, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GmjM1Vad', '8493552'), - (215, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GmjM1Vad', '8493553'), - (215, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GmjM1Vad', '8493554'), - (215, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GmjM1Vad', '8493555'), - (215, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GmjM1Vad', '8493556'), - (215, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GmjM1Vad', '8493557'), - (215, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GmjM1Vad', '8493558'), - (215, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GmjM1Vad', '8493559'), - (215, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GmjM1Vad', '8493560'), - (215, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GmjM1Vad', '8493561'), - (215, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GmjM1Vad', '8493572'), - (215, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GmjM1Vad', '8540725'), - (215, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GmjM1Vad', '8555421'), - (216, 30, 'attending', '2020-04-05 05:04:35', '2025-12-17 19:47:57', '6AXQbev4', '2961895'), - (216, 36, 'not_attending', '2020-04-02 04:22:07', '2025-12-17 19:47:57', '6AXQbev4', '2969208'), - (216, 37, 'attending', '2020-03-29 14:59:55', '2025-12-17 19:47:56', '6AXQbev4', '2969680'), - (216, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', '6AXQbev4', '2971546'), - (216, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '6AXQbev4', '2974534'), - (216, 46, 'attending', '2020-04-11 18:33:04', '2025-12-17 19:47:57', '6AXQbev4', '2974955'), - (216, 55, 'attending', '2020-04-06 15:50:11', '2025-12-17 19:47:57', '6AXQbev4', '2975384'), - (216, 56, 'attending', '2020-04-06 16:01:12', '2025-12-17 19:47:57', '6AXQbev4', '2975385'), - (216, 57, 'attending', '2020-04-27 16:02:28', '2025-12-17 19:47:57', '6AXQbev4', '2976575'), - (216, 59, 'not_attending', '2020-04-27 16:03:41', '2025-12-17 19:47:57', '6AXQbev4', '2977128'), - (216, 60, 'not_attending', '2020-04-27 16:02:37', '2025-12-17 19:47:57', '6AXQbev4', '2977129'), - (216, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '6AXQbev4', '2977343'), - (216, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '6AXQbev4', '2977812'), - (216, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', '6AXQbev4', '2977931'), - (216, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', '6AXQbev4', '2978244'), - (216, 75, 'attending', '2020-04-22 01:55:09', '2025-12-17 19:47:57', '6AXQbev4', '2978245'), - (216, 76, 'not_attending', '2020-04-27 16:03:10', '2025-12-17 19:47:57', '6AXQbev4', '2978246'), - (216, 77, 'attending', '2020-05-09 22:35:45', '2025-12-17 19:47:57', '6AXQbev4', '2978247'), - (216, 78, 'attending', '2020-05-23 01:53:14', '2025-12-17 19:47:57', '6AXQbev4', '2978249'), - (216, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', '6AXQbev4', '2978250'), - (216, 80, 'attending', '2020-06-02 19:30:57', '2025-12-17 19:47:58', '6AXQbev4', '2978251'), - (216, 81, 'not_attending', '2020-06-02 19:31:41', '2025-12-17 19:47:58', '6AXQbev4', '2978252'), - (216, 82, 'not_attending', '2020-04-23 06:44:43', '2025-12-17 19:47:57', '6AXQbev4', '2978433'), - (216, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '6AXQbev4', '2978438'), - (216, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '6AXQbev4', '2980871'), - (216, 85, 'not_attending', '2020-04-22 22:41:26', '2025-12-17 19:47:57', '6AXQbev4', '2980872'), - (216, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '6AXQbev4', '2981388'), - (216, 91, 'attending', '2020-04-27 16:03:04', '2025-12-17 19:47:57', '6AXQbev4', '2985130'), - (216, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '6AXQbev4', '2986743'), - (216, 95, 'not_attending', '2020-04-27 16:02:52', '2025-12-17 19:47:57', '6AXQbev4', '2987452'), - (216, 99, 'not_attending', '2020-04-27 16:03:21', '2025-12-17 19:47:57', '6AXQbev4', '2988545'), - (216, 102, 'attending', '2020-04-28 14:40:42', '2025-12-17 19:47:57', '6AXQbev4', '2990784'), - (216, 103, 'attending', '2020-04-27 16:03:29', '2025-12-17 19:47:57', '6AXQbev4', '2991407'), - (216, 104, 'attending', '2020-04-24 17:17:30', '2025-12-17 19:47:57', '6AXQbev4', '2991471'), - (216, 106, 'not_attending', '2020-04-27 16:02:14', '2025-12-17 19:47:57', '6AXQbev4', '2993501'), - (216, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '6AXQbev4', '2994480'), - (216, 114, 'attending', '2020-04-28 14:40:15', '2025-12-17 19:47:57', '6AXQbev4', '2994911'), - (216, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', '6AXQbev4', '3001217'), - (216, 121, 'attending', '2020-05-27 05:23:54', '2025-12-17 19:47:57', '6AXQbev4', '3023063'), - (216, 133, 'attending', '2020-06-26 00:56:32', '2025-12-17 19:47:58', '6AXQbev4', '3034321'), - (216, 134, 'attending', '2020-05-24 00:06:05', '2025-12-17 19:47:57', '6AXQbev4', '3034367'), - (216, 135, 'attending', '2020-05-24 00:11:02', '2025-12-17 19:47:57', '6AXQbev4', '3034368'), - (216, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '6AXQbev4', '3035881'), - (216, 142, 'attending', '2020-05-31 22:53:41', '2025-12-17 19:47:57', '6AXQbev4', '3049860'), - (216, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '6AXQbev4', '3049983'), - (216, 168, 'attending', '2020-06-06 17:51:55', '2025-12-17 19:47:58', '6AXQbev4', '3058740'), - (216, 170, 'attending', '2020-06-06 18:07:29', '2025-12-17 19:47:58', '6AXQbev4', '3058742'), - (216, 171, 'attending', '2020-06-06 18:09:27', '2025-12-17 19:47:58', '6AXQbev4', '3058743'), - (216, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '6AXQbev4', '3058959'), - (216, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', '6AXQbev4', '3067093'), - (216, 181, 'attending', '2020-06-20 22:15:25', '2025-12-17 19:47:58', '6AXQbev4', '3074513'), - (216, 182, 'not_attending', '2020-06-27 16:40:01', '2025-12-17 19:47:55', '6AXQbev4', '3074514'), - (216, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '6AXQbev4', '3075228'), - (216, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '6AXQbev4', '3075456'), - (216, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '6AXQbev4', '3083791'), - (216, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '6AXQbev4', '3085151'), - (216, 192, 'maybe', '2020-07-18 06:24:16', '2025-12-17 19:47:55', '6AXQbev4', '3087260'), - (216, 194, 'attending', '2020-07-28 16:28:07', '2025-12-17 19:47:56', '6AXQbev4', '3087262'), - (216, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '6AXQbev4', '3087265'), - (216, 197, 'not_attending', '2020-08-20 23:26:49', '2025-12-17 19:47:56', '6AXQbev4', '3087266'), - (216, 198, 'not_attending', '2020-08-26 15:06:23', '2025-12-17 19:47:56', '6AXQbev4', '3087267'), - (216, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', '6AXQbev4', '3087268'), - (216, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '6AXQbev4', '3088653'), - (216, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '6AXQbev4', '3106813'), - (216, 223, 'not_attending', '2020-09-12 21:27:59', '2025-12-17 19:47:56', '6AXQbev4', '3129980'), - (216, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '6AXQbev4', '3132817'), - (216, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '6AXQbev4', '3132820'), - (216, 228, 'attending', '2020-07-13 20:05:36', '2025-12-17 19:47:55', '6AXQbev4', '3132821'), - (216, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '6AXQbev4', '3155321'), - (216, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '6AXQbev4', '3162006'), - (216, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '6AXQbev4', '3163442'), - (216, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '6AXQbev4', '3169555'), - (216, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', '6AXQbev4', '3169556'), - (216, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '6AXQbev4', '3172832'), - (216, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '6AXQbev4', '3172833'), - (216, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '6AXQbev4', '3172834'), - (216, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '6AXQbev4', '3172876'), - (216, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', '6AXQbev4', '3186057'), - (216, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '6AXQbev4', '3191735'), - (216, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', '6AXQbev4', '3193885'), - (216, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '6AXQbev4', '3200209'), - (216, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', '6AXQbev4', '3200495'), - (216, 343, 'not_attending', '2020-09-21 22:56:44', '2025-12-17 19:47:56', '6AXQbev4', '3206759'), - (216, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', '6AXQbev4', '3214207'), - (216, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '6AXQbev4', '3217037'), - (216, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '6AXQbev4', '3218510'), - (216, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', '6AXQbev4', '3221403'), - (216, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', '6AXQbev4', '3228698'), - (216, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', '6AXQbev4', '3228699'), - (216, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', '6AXQbev4', '3228700'), - (216, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', '6AXQbev4', '3228701'), - (216, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', '6AXQbev4', '3245751'), - (216, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '6AXQbev4', '3250232'), - (216, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', '6AXQbev4', '3256168'), - (216, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXQbev4', '6045684'), - (216, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '6AXQbev4', '7904777'), - (216, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '6AXQbev4', '8349164'), - (216, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '6AXQbev4', '8349545'), - (216, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '6AXQbev4', '8368028'), - (216, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '6AXQbev4', '8368029'), - (216, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '6AXQbev4', '8388462'), - (216, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '6AXQbev4', '8400273'), - (216, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '6AXQbev4', '8400275'), - (216, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '6AXQbev4', '8400276'), - (216, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '6AXQbev4', '8404977'), - (216, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '6AXQbev4', '8430783'), - (216, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '6AXQbev4', '8430784'), - (216, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '6AXQbev4', '8430799'), - (216, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '6AXQbev4', '8430800'), - (216, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '6AXQbev4', '8430801'), - (216, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '6AXQbev4', '8438709'), - (216, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '6AXQbev4', '8457738'), - (216, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '6AXQbev4', '8459566'), - (216, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '6AXQbev4', '8459567'), - (216, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '6AXQbev4', '8461032'), - (216, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '6AXQbev4', '8477877'), - (216, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '6AXQbev4', '8485688'), - (216, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '6AXQbev4', '8490587'), - (216, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '6AXQbev4', '8493552'), - (216, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '6AXQbev4', '8493553'), - (216, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '6AXQbev4', '8493554'), - (216, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '6AXQbev4', '8493555'), - (216, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '6AXQbev4', '8493556'), - (216, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '6AXQbev4', '8493557'), - (216, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '6AXQbev4', '8493558'), - (216, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '6AXQbev4', '8493559'), - (216, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '6AXQbev4', '8493560'), - (216, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '6AXQbev4', '8493561'), - (216, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '6AXQbev4', '8493572'), - (216, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '6AXQbev4', '8540725'), - (216, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '6AXQbev4', '8555421'), - (217, 393, 'attending', '2021-06-24 21:57:05', '2025-12-17 19:47:38', 'x4o8e3nd', '3236448'), - (217, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'x4o8e3nd', '4021848'), - (217, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4o8e3nd', '6045684'), - (218, 397, 'attending', '2021-05-24 22:42:00', '2025-12-17 19:47:47', 'LmpJz8N4', '3236452'), - (218, 648, 'attending', '2021-05-28 03:03:27', '2025-12-17 19:47:47', 'LmpJz8N4', '3539923'), - (218, 742, 'attending', '2021-06-18 21:46:47', '2025-12-17 19:47:48', 'LmpJz8N4', '3680622'), - (218, 744, 'not_attending', '2021-06-07 12:48:32', '2025-12-17 19:47:47', 'LmpJz8N4', '3680624'), - (218, 821, 'attending', '2021-05-29 00:40:41', '2025-12-17 19:47:47', 'LmpJz8N4', '3963965'), - (218, 823, 'attending', '2021-06-12 14:56:05', '2025-12-17 19:47:48', 'LmpJz8N4', '3974109'), - (218, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'LmpJz8N4', '3975311'), - (218, 828, 'not_attending', '2021-06-12 14:55:25', '2025-12-17 19:47:47', 'LmpJz8N4', '3975312'), - (218, 830, 'attending', '2021-06-03 15:26:00', '2025-12-17 19:47:47', 'LmpJz8N4', '3976648'), - (218, 831, 'attending', '2021-06-03 15:26:04', '2025-12-17 19:47:47', 'LmpJz8N4', '3976649'), - (218, 832, 'attending', '2021-06-03 15:26:08', '2025-12-17 19:47:47', 'LmpJz8N4', '3976650'), - (218, 838, 'maybe', '2021-06-06 18:32:56', '2025-12-17 19:47:47', 'LmpJz8N4', '3994992'), - (218, 844, 'attending', '2021-06-23 22:17:59', '2025-12-17 19:47:38', 'LmpJz8N4', '4014338'), - (218, 867, 'attending', '2021-06-23 18:34:11', '2025-12-17 19:47:38', 'LmpJz8N4', '4021848'), - (218, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpJz8N4', '4136744'), - (218, 870, 'not_attending', '2021-07-03 19:22:57', '2025-12-17 19:47:39', 'LmpJz8N4', '4136937'), - (218, 871, 'not_attending', '2021-07-10 20:31:18', '2025-12-17 19:47:39', 'LmpJz8N4', '4136938'), - (218, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJz8N4', '4136947'), - (218, 877, 'attending', '2021-06-16 16:57:29', '2025-12-17 19:47:48', 'LmpJz8N4', '4140575'), - (218, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpJz8N4', '4210314'), - (218, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpJz8N4', '4225444'), - (218, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpJz8N4', '4239259'), - (218, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'LmpJz8N4', '4240316'), - (218, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'LmpJz8N4', '4240317'), - (218, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'LmpJz8N4', '4240318'), - (218, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'LmpJz8N4', '4240320'), - (218, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpJz8N4', '4250163'), - (218, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'LmpJz8N4', '4275957'), - (218, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpJz8N4', '4277819'), - (218, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpJz8N4', '4301723'), - (218, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpJz8N4', '4302093'), - (218, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpJz8N4', '4304151'), - (218, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'LmpJz8N4', '4356801'), - (218, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'LmpJz8N4', '4366186'), - (218, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'LmpJz8N4', '4366187'), - (218, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'LmpJz8N4', '4420735'), - (218, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'LmpJz8N4', '4420738'), - (218, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'LmpJz8N4', '4420739'), - (218, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'LmpJz8N4', '4420741'), - (218, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'LmpJz8N4', '4420744'), - (218, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'LmpJz8N4', '4420747'), - (218, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'LmpJz8N4', '4420748'), - (218, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'LmpJz8N4', '4420749'), - (218, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'LmpJz8N4', '4461883'), - (218, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpJz8N4', '4508342'), - (218, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpJz8N4', '4568602'), - (218, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'LmpJz8N4', '4572153'), - (218, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpJz8N4', '4585962'), - (218, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'LmpJz8N4', '4596356'), - (218, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpJz8N4', '4598860'), - (218, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpJz8N4', '4598861'), - (218, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'LmpJz8N4', '4602797'), - (218, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'LmpJz8N4', '4637896'), - (218, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpJz8N4', '4642994'), - (218, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'LmpJz8N4', '4642995'), - (218, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpJz8N4', '4642996'), - (218, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpJz8N4', '4642997'), - (218, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'LmpJz8N4', '4645687'), - (218, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpJz8N4', '4645698'), - (218, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'LmpJz8N4', '4645704'), - (218, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'LmpJz8N4', '4645705'), - (218, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpJz8N4', '4668385'), - (218, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpJz8N4', '4694407'), - (218, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'LmpJz8N4', '4706262'), - (218, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'LmpJz8N4', '4736497'), - (218, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpJz8N4', '4736499'), - (218, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'LmpJz8N4', '4736500'), - (218, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'LmpJz8N4', '4736503'), - (218, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpJz8N4', '4736504'), - (218, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpJz8N4', '4746789'), - (218, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'LmpJz8N4', '4753929'), - (218, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpJz8N4', '5038850'), - (218, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpJz8N4', '5045826'), - (218, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpJz8N4', '5132533'), - (218, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'LmpJz8N4', '5186582'), - (218, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpJz8N4', '5186583'), - (218, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'LmpJz8N4', '5186585'), - (218, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpJz8N4', '5190437'), - (218, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpJz8N4', '5215989'), - (218, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJz8N4', '6045684'), - (219, 2904, 'attending', '2024-11-24 00:35:52', '2025-12-17 19:46:28', 'm6Yzl7Rd', '7688196'), - (219, 2920, 'not_attending', '2024-11-23 23:12:56', '2025-12-17 19:46:28', 'm6Yzl7Rd', '7708406'), - (219, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6Yzl7Rd', '7712467'), - (219, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6Yzl7Rd', '7713585'), - (219, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7713586'), - (219, 2947, 'not_attending', '2024-12-09 03:11:05', '2025-12-17 19:46:21', 'm6Yzl7Rd', '7727445'), - (219, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7738518'), - (219, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7750636'), - (219, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7796540'), - (219, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7796541'), - (219, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7796542'), - (219, 2967, 'not_attending', '2025-01-07 14:57:05', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7797181'), - (219, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7825913'), - (219, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7826209'), - (219, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7834742'), - (219, 2986, 'not_attending', '2025-02-07 22:00:58', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7835405'), - (219, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7842108'), - (219, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7842902'), - (219, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7842903'), - (219, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6Yzl7Rd', '7842904'), - (219, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7842905'), - (219, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7844784'), - (219, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7855719'), - (219, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7860683'), - (219, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7860684'), - (219, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6Yzl7Rd', '7866095'), - (219, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7869170'), - (219, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7869201'), - (219, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7872088'), - (220, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'xAYL689m', '3149489'), - (220, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'xAYL689m', '3149491'), - (220, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'xAYL689m', '3236450'), - (220, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'xAYL689m', '3236452'), - (220, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'xAYL689m', '3539921'), - (220, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xAYL689m', '3539922'), - (220, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'xAYL689m', '3539923'), - (220, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'xAYL689m', '3806392'), - (220, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'xAYL689m', '3963335'), - (220, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xAYL689m', '3975311'), - (220, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xAYL689m', '3975312'), - (220, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xAYL689m', '3994992'), - (220, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xAYL689m', '4014338'), - (220, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xAYL689m', '4136744'), - (220, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYL689m', '6045684'), - (221, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dODP7NPm', '4637896'), - (221, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dODP7NPm', '4642994'), - (221, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'dODP7NPm', '4642995'), - (221, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dODP7NPm', '4642996'), - (221, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dODP7NPm', '4642997'), - (221, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dODP7NPm', '4645687'), - (221, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dODP7NPm', '4645698'), - (221, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dODP7NPm', '4645704'), - (221, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dODP7NPm', '4645705'), - (221, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dODP7NPm', '4668385'), - (221, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dODP7NPm', '6045684'), - (222, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dVBvL8pd', '4736497'), - (222, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dVBvL8pd', '4736500'), - (222, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVBvL8pd', '4746789'), - (222, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dVBvL8pd', '4753929'), - (222, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBvL8pd', '6045684'), - (223, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dK39RzZd', '6045684'), - (224, 2521, 'attending', '2024-06-20 09:17:38', '2025-12-17 19:46:29', 'dJQe07w4', '7074361'), - (224, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJQe07w4', '7074364'), - (224, 2525, 'attending', '2024-06-13 08:26:32', '2025-12-17 19:46:28', 'dJQe07w4', '7074365'), - (224, 2527, 'maybe', '2024-06-27 23:14:46', '2025-12-17 19:46:29', 'dJQe07w4', '7074367'), - (224, 2629, 'attending', '2024-06-08 20:53:48', '2025-12-17 19:46:28', 'dJQe07w4', '7264726'), - (224, 2647, 'attending', '2024-06-09 05:09:48', '2025-12-17 19:46:28', 'dJQe07w4', '7282057'), - (224, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'dJQe07w4', '7302674'), - (224, 2671, 'attending', '2024-06-10 09:04:44', '2025-12-17 19:46:28', 'dJQe07w4', '7318256'), - (224, 2678, 'attending', '2024-06-15 02:50:33', '2025-12-17 19:46:28', 'dJQe07w4', '7319489'), - (224, 2679, 'attending', '2024-06-22 02:18:30', '2025-12-17 19:46:29', 'dJQe07w4', '7319490'), - (224, 2683, 'attending', '2024-06-15 02:51:00', '2025-12-17 19:46:28', 'dJQe07w4', '7321978'), - (224, 2688, 'attending', '2024-06-23 03:55:12', '2025-12-17 19:46:29', 'dJQe07w4', '7324073'), - (224, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJQe07w4', '7324074'), - (224, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJQe07w4', '7324075'), - (224, 2691, 'attending', '2024-07-20 02:36:26', '2025-12-17 19:46:30', 'dJQe07w4', '7324076'), - (224, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJQe07w4', '7324078'), - (224, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dJQe07w4', '7324082'), - (224, 2699, 'maybe', '2024-06-12 20:10:35', '2025-12-17 19:46:28', 'dJQe07w4', '7324385'), - (224, 2700, 'maybe', '2024-06-14 03:20:46', '2025-12-17 19:46:28', 'dJQe07w4', '7324388'), - (224, 2701, 'maybe', '2024-06-27 23:16:42', '2025-12-17 19:46:29', 'dJQe07w4', '7324391'), - (224, 2706, 'attending', '2024-06-19 21:21:11', '2025-12-17 19:46:28', 'dJQe07w4', '7324947'), - (224, 2720, 'attending', '2024-06-18 20:58:15', '2025-12-17 19:46:28', 'dJQe07w4', '7331436'), - (224, 2721, 'attending', '2024-06-21 15:53:47', '2025-12-17 19:46:29', 'dJQe07w4', '7331456'), - (224, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dJQe07w4', '7331457'), - (224, 2723, 'maybe', '2024-06-21 21:15:53', '2025-12-17 19:46:29', 'dJQe07w4', '7332389'), - (224, 2724, 'maybe', '2024-06-26 10:35:34', '2025-12-17 19:46:29', 'dJQe07w4', '7332562'), - (224, 2728, 'attending', '2024-06-21 11:27:30', '2025-12-17 19:46:29', 'dJQe07w4', '7334124'), - (224, 2729, 'maybe', '2024-06-23 03:55:34', '2025-12-17 19:46:29', 'dJQe07w4', '7335092'), - (224, 2742, 'maybe', '2024-07-03 22:18:35', '2025-12-17 19:46:29', 'dJQe07w4', '7345167'), - (224, 2753, 'maybe', '2024-07-16 08:07:27', '2025-12-17 19:46:30', 'dJQe07w4', '7355538'), - (224, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJQe07w4', '7356752'), - (224, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dJQe07w4', '7363643'), - (224, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJQe07w4', '7368606'), - (224, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJQe07w4', '7397462'), - (224, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dJQe07w4', '7424275'), - (224, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJQe07w4', '7424276'), - (224, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJQe07w4', '7432751'), - (224, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJQe07w4', '7432752'), - (224, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJQe07w4', '7432753'), - (224, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJQe07w4', '7432754'), - (224, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJQe07w4', '7432755'), - (224, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJQe07w4', '7432756'), - (224, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJQe07w4', '7432758'), - (224, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJQe07w4', '7432759'), - (224, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dJQe07w4', '7433834'), - (224, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJQe07w4', '7470197'), - (224, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dJQe07w4', '7685613'), - (224, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJQe07w4', '7688194'), - (224, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJQe07w4', '7688196'), - (224, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJQe07w4', '7688289'), - (225, 871, 'maybe', '2021-07-05 17:23:40', '2025-12-17 19:47:39', 'pmbejZKd', '4136938'), - (225, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'pmbejZKd', '4136947'), - (225, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbejZKd', '4210314'), - (225, 887, 'maybe', '2021-07-11 19:19:15', '2025-12-17 19:47:39', 'pmbejZKd', '4225444'), - (225, 892, 'attending', '2021-07-05 17:23:27', '2025-12-17 19:47:39', 'pmbejZKd', '4229418'), - (225, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'pmbejZKd', '4229420'), - (225, 894, 'maybe', '2021-07-20 13:08:00', '2025-12-17 19:47:40', 'pmbejZKd', '4229423'), - (225, 895, 'maybe', '2021-07-10 18:29:05', '2025-12-17 19:47:39', 'pmbejZKd', '4229424'), - (225, 900, 'not_attending', '2021-07-18 20:46:11', '2025-12-17 19:47:40', 'pmbejZKd', '4240316'), - (225, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbejZKd', '4240317'), - (225, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbejZKd', '4240318'), - (225, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbejZKd', '4240320'), - (225, 919, 'not_attending', '2021-07-14 09:44:12', '2025-12-17 19:47:39', 'pmbejZKd', '4275957'), - (225, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbejZKd', '4277819'), - (225, 923, 'not_attending', '2021-07-20 10:48:17', '2025-12-17 19:47:40', 'pmbejZKd', '4292773'), - (225, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbejZKd', '4301723'), - (225, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbejZKd', '4302093'), - (225, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbejZKd', '4304151'), - (225, 940, 'not_attending', '2021-07-30 16:29:50', '2025-12-17 19:47:40', 'pmbejZKd', '4309049'), - (225, 947, 'maybe', '2021-07-30 16:49:55', '2025-12-17 19:47:41', 'pmbejZKd', '4315713'), - (225, 948, 'not_attending', '2021-08-11 05:28:23', '2025-12-17 19:47:41', 'pmbejZKd', '4315714'), - (225, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'pmbejZKd', '4315726'), - (225, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbejZKd', '4356801'), - (225, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbejZKd', '4366186'), - (225, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbejZKd', '4366187'), - (225, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbejZKd', '4420735'), - (225, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbejZKd', '4420738'), - (225, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbejZKd', '4420739'), - (225, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbejZKd', '4420741'), - (225, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbejZKd', '4420744'), - (225, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbejZKd', '4420747'), - (225, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbejZKd', '4420748'), - (225, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbejZKd', '4420749'), - (225, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbejZKd', '6045684'), - (226, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'da7pZrDA', '7074364'), - (226, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'da7pZrDA', '7324073'), - (226, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'da7pZrDA', '7324074'), - (226, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'da7pZrDA', '7324075'), - (226, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'da7pZrDA', '7324078'), - (226, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'da7pZrDA', '7331457'), - (226, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'da7pZrDA', '7332564'), - (226, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'da7pZrDA', '7335193'), - (226, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'da7pZrDA', '7344575'), - (226, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'da7pZrDA', '7359624'), - (226, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'da7pZrDA', '7363643'), - (226, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'da7pZrDA', '7368606'), - (227, 1374, 'attending', '2022-05-02 21:34:39', '2025-12-17 19:47:28', 'dBWaRaPm', '5269930'), - (227, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dBWaRaPm', '5271448'), - (227, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dBWaRaPm', '5271449'), - (227, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dBWaRaPm', '5276469'), - (227, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dBWaRaPm', '5278159'), - (227, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dBWaRaPm', '5363695'), - (227, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dBWaRaPm', '5365960'), - (227, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dBWaRaPm', '5368973'), - (227, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dBWaRaPm', '5378247'), - (227, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dBWaRaPm', '5389605'), - (227, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dBWaRaPm', '5397265'), - (227, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBWaRaPm', '6045684'), - (228, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dOpbaM8m', '5630962'), - (228, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOpbaM8m', '5630966'), - (228, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOpbaM8m', '5630967'), - (228, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOpbaM8m', '5630968'), - (228, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOpbaM8m', '5642818'), - (228, 1778, 'maybe', '2022-11-02 02:07:36', '2025-12-17 19:47:15', 'dOpbaM8m', '5694251'), - (228, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOpbaM8m', '5698046'), - (228, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dOpbaM8m', '5699760'), - (228, 1786, 'not_attending', '2022-11-08 23:41:42', '2025-12-17 19:47:15', 'dOpbaM8m', '5727232'), - (228, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOpbaM8m', '5741601'), - (228, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOpbaM8m', '5763458'), - (228, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOpbaM8m', '5774172'), - (228, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOpbaM8m', '6045684'), - (229, 871, 'attending', '2021-07-10 19:45:44', '2025-12-17 19:47:39', 'N4E0NnWA', '4136938'), - (229, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'N4E0NnWA', '4136947'), - (229, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'N4E0NnWA', '4210314'), - (229, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'N4E0NnWA', '4225444'), - (229, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'N4E0NnWA', '4229420'), - (229, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'N4E0NnWA', '4229423'), - (229, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'N4E0NnWA', '4240316'), - (229, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'N4E0NnWA', '4275957'), - (229, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'N4E0NnWA', '4292773'), - (229, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4E0NnWA', '6045684'), - (230, 1480, 'not_attending', '2022-06-22 22:19:47', '2025-12-17 19:47:19', 'dx6oqzOA', '5411699'), - (230, 1482, 'not_attending', '2022-06-25 01:25:48', '2025-12-17 19:47:19', 'dx6oqzOA', '5412550'), - (230, 1485, 'attending', '2022-06-23 22:08:11', '2025-12-17 19:47:17', 'dx6oqzOA', '5416276'), - (230, 1486, 'not_attending', '2022-06-23 22:08:22', '2025-12-17 19:47:19', 'dx6oqzOA', '5416339'), - (230, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dx6oqzOA', '5422086'), - (230, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dx6oqzOA', '5422406'), - (230, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dx6oqzOA', '5424565'), - (230, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dx6oqzOA', '5426882'), - (230, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dx6oqzOA', '5427083'), - (230, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dx6oqzOA', '5441125'), - (230, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dx6oqzOA', '5441126'), - (230, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dx6oqzOA', '5441128'), - (230, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dx6oqzOA', '5446643'), - (230, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dx6oqzOA', '5453325'), - (230, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dx6oqzOA', '5454516'), - (230, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dx6oqzOA', '5454605'), - (230, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dx6oqzOA', '5455037'), - (230, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dx6oqzOA', '5461278'), - (230, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dx6oqzOA', '5469480'), - (230, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dx6oqzOA', '5471073'), - (230, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dx6oqzOA', '5474663'), - (230, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dx6oqzOA', '5482022'), - (230, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dx6oqzOA', '5482793'), - (230, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dx6oqzOA', '5488912'), - (230, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dx6oqzOA', '5492192'), - (230, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dx6oqzOA', '5493139'), - (230, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dx6oqzOA', '5493200'), - (230, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dx6oqzOA', '5502188'), - (230, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dx6oqzOA', '5512862'), - (230, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dx6oqzOA', '5513985'), - (230, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx6oqzOA', '6045684'), - (231, 251, 'maybe', '2021-01-26 03:16:24', '2025-12-17 19:47:49', 'v4DPq664', '3149482'), - (231, 400, 'attending', '2021-01-27 01:59:39', '2025-12-17 19:47:50', 'v4DPq664', '3236455'), - (231, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'v4DPq664', '3430267'), - (231, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'v4DPq664', '3468125'), - (231, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'v4DPq664', '3470303'), - (231, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'v4DPq664', '3470991'), - (231, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DPq664', '6045684'), - (232, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Aen3RgV4', '7424275'), - (232, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', 'Aen3RgV4', '7432753'), - (232, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'Aen3RgV4', '7432756'), - (232, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'Aen3RgV4', '7432758'), - (232, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Aen3RgV4', '7470197'), - (232, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Aen3RgV4', '7685613'), - (232, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Aen3RgV4', '7688194'), - (232, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Aen3RgV4', '7688196'), - (232, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Aen3RgV4', '7688289'), - (233, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'myDzWVJd', '4356801'), - (233, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'myDzWVJd', '4420738'), - (233, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'myDzWVJd', '4420739'), - (233, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'myDzWVJd', '4420741'), - (233, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'myDzWVJd', '4420744'), - (233, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'myDzWVJd', '4420747'), - (233, 1003, 'attending', '2021-09-06 20:35:33', '2025-12-17 19:47:43', 'myDzWVJd', '4438802'), - (233, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'myDzWVJd', '4461883'), - (233, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'myDzWVJd', '4508342'), - (233, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'myDzWVJd', '4568602'), - (233, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'myDzWVJd', '4572153'), - (233, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'myDzWVJd', '4585962'), - (233, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'myDzWVJd', '4596356'), - (233, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'myDzWVJd', '4598860'), - (233, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'myDzWVJd', '4598861'), - (233, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'myDzWVJd', '4602797'), - (233, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'myDzWVJd', '4637896'), - (233, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'myDzWVJd', '4642994'), - (233, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'myDzWVJd', '4642995'), - (233, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'myDzWVJd', '4642996'), - (233, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'myDzWVJd', '4642997'), - (233, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'myDzWVJd', '4645687'), - (233, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'myDzWVJd', '4645698'), - (233, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'myDzWVJd', '4645704'), - (233, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'myDzWVJd', '4645705'), - (233, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'myDzWVJd', '4668385'), - (233, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'myDzWVJd', '6045684'), - (234, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'd9n8lJem', '4420744'), - (234, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'd9n8lJem', '4420747'), - (234, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd9n8lJem', '4568602'), - (234, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'd9n8lJem', '4572153'), - (234, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'd9n8lJem', '4585962'), - (234, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'd9n8lJem', '4596356'), - (234, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'd9n8lJem', '4598860'), - (234, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'd9n8lJem', '4598861'), - (234, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'd9n8lJem', '4602797'), - (234, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'd9n8lJem', '4637896'), - (234, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'd9n8lJem', '4642994'), - (234, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'd9n8lJem', '4642995'), - (234, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'd9n8lJem', '4642996'), - (234, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'd9n8lJem', '4642997'), - (234, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd9n8lJem', '4645687'), - (234, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd9n8lJem', '4645698'), - (234, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd9n8lJem', '4645704'), - (234, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd9n8lJem', '4645705'), - (234, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'd9n8lJem', '4668385'), - (234, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9n8lJem', '6045684'), - (235, 250, 'attending', '2021-02-09 21:58:22', '2025-12-17 19:47:50', 'w4Wk1xp4', '3149481'), - (235, 602, 'maybe', '2021-02-13 23:35:08', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470303'), - (235, 603, 'attending', '2021-02-19 23:30:55', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470304'), - (235, 604, 'not_attending', '2021-02-25 08:41:13', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470305'), - (235, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470991'), - (235, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'w4Wk1xp4', '3517815'), - (235, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'w4Wk1xp4', '3523941'), - (235, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4Wk1xp4', '3533850'), - (235, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4Wk1xp4', '3536632'), - (235, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'w4Wk1xp4', '3536656'), - (235, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'w4Wk1xp4', '3539916'), - (235, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'w4Wk1xp4', '3539917'), - (235, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'w4Wk1xp4', '3539918'), - (235, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539919'), - (235, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539920'), - (235, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539921'), - (235, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539922'), - (235, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'w4Wk1xp4', '3539923'), - (235, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4Wk1xp4', '6045684'), - (236, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ6ZJwd', '6045684'), - (237, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7zOvzPd', '6045684'), - (238, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'mq1eqrLm', '4420744'), - (238, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mq1eqrLm', '4420747'), - (238, 997, 'attending', '2021-10-22 14:45:12', '2025-12-17 19:47:35', 'mq1eqrLm', '4420748'), - (238, 998, 'attending', '2021-10-29 14:30:08', '2025-12-17 19:47:36', 'mq1eqrLm', '4420749'), - (238, 1006, 'not_attending', '2021-10-01 20:29:04', '2025-12-17 19:47:34', 'mq1eqrLm', '4438808'), - (238, 1008, 'attending', '2021-10-12 18:29:44', '2025-12-17 19:47:35', 'mq1eqrLm', '4438810'), - (238, 1009, 'not_attending', '2021-10-11 22:45:41', '2025-12-17 19:47:34', 'mq1eqrLm', '4438811'), - (238, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mq1eqrLm', '4568602'), - (238, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mq1eqrLm', '4572153'), - (238, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mq1eqrLm', '4585962'), - (238, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mq1eqrLm', '4596356'), - (238, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'mq1eqrLm', '4598860'), - (238, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'mq1eqrLm', '4598861'), - (238, 1099, 'not_attending', '2021-11-06 20:57:05', '2025-12-17 19:47:36', 'mq1eqrLm', '4602797'), - (238, 1114, 'not_attending', '2021-11-14 00:26:51', '2025-12-17 19:47:36', 'mq1eqrLm', '4637896'), - (238, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mq1eqrLm', '4642994'), - (238, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mq1eqrLm', '4642995'), - (238, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mq1eqrLm', '4642996'), - (238, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mq1eqrLm', '4642997'), - (238, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mq1eqrLm', '4645687'), - (238, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mq1eqrLm', '4645698'), - (238, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mq1eqrLm', '4645704'), - (238, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mq1eqrLm', '4645705'), - (238, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mq1eqrLm', '4668385'), - (238, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mq1eqrLm', '4694407'), - (238, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mq1eqrLm', '4736497'), - (238, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mq1eqrLm', '4736499'), - (238, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mq1eqrLm', '4736500'), - (238, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mq1eqrLm', '4736503'), - (238, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mq1eqrLm', '4736504'), - (238, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mq1eqrLm', '4746789'), - (238, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mq1eqrLm', '4753929'), - (238, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mq1eqrLm', '5038850'), - (238, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mq1eqrLm', '5045826'), - (238, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mq1eqrLm', '5132533'), - (238, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mq1eqrLm', '5186582'), - (238, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mq1eqrLm', '5186583'), - (238, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mq1eqrLm', '5186585'), - (238, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mq1eqrLm', '5190437'), - (238, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mq1eqrLm', '5215989'), - (238, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mq1eqrLm', '6045684'), - (239, 247, 'attending', '2020-12-29 22:14:10', '2025-12-17 19:47:48', '8mRz3zlm', '3149478'), - (239, 400, 'not_attending', '2021-02-05 01:10:20', '2025-12-17 19:47:50', '8mRz3zlm', '3236455'), - (239, 408, 'not_attending', '2021-02-04 19:35:16', '2025-12-17 19:47:50', '8mRz3zlm', '3236466'), - (239, 526, 'attending', '2021-01-02 22:45:47', '2025-12-17 19:47:48', '8mRz3zlm', '3351539'), - (239, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '8mRz3zlm', '3386848'), - (239, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '8mRz3zlm', '3389527'), - (239, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '8mRz3zlm', '3396499'), - (239, 548, 'attending', '2021-01-16 21:35:14', '2025-12-17 19:47:48', '8mRz3zlm', '3403650'), - (239, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '8mRz3zlm', '3406988'), - (239, 551, 'attending', '2021-01-20 00:00:24', '2025-12-17 19:47:49', '8mRz3zlm', '3407219'), - (239, 555, 'attending', '2021-01-20 00:00:01', '2025-12-17 19:47:49', '8mRz3zlm', '3416576'), - (239, 556, 'not_attending', '2021-01-27 00:08:55', '2025-12-17 19:47:49', '8mRz3zlm', '3417170'), - (239, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '8mRz3zlm', '3418925'), - (239, 562, 'attending', '2021-01-23 20:38:33', '2025-12-17 19:47:49', '8mRz3zlm', '3424911'), - (239, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', '8mRz3zlm', '3426074'), - (239, 567, 'attending', '2021-01-27 23:17:33', '2025-12-17 19:47:50', '8mRz3zlm', '3428895'), - (239, 568, 'attending', '2021-01-27 22:55:34', '2025-12-17 19:47:50', '8mRz3zlm', '3430267'), - (239, 569, 'attending', '2021-01-27 00:08:03', '2025-12-17 19:47:49', '8mRz3zlm', '3432673'), - (239, 570, 'attending', '2021-02-05 15:12:37', '2025-12-17 19:47:50', '8mRz3zlm', '3435538'), - (239, 576, 'not_attending', '2021-02-01 04:53:18', '2025-12-17 19:47:50', '8mRz3zlm', '3438748'), - (239, 577, 'attending', '2021-01-29 22:29:17', '2025-12-17 19:47:49', '8mRz3zlm', '3439167'), - (239, 578, 'not_attending', '2021-02-01 04:52:34', '2025-12-17 19:47:50', '8mRz3zlm', '3440043'), - (239, 579, 'maybe', '2021-02-05 18:53:01', '2025-12-17 19:47:50', '8mRz3zlm', '3440978'), - (239, 580, 'attending', '2021-01-30 18:38:45', '2025-12-17 19:47:50', '8mRz3zlm', '3444240'), - (239, 581, 'attending', '2021-01-30 03:55:15', '2025-12-17 19:47:50', '8mRz3zlm', '3445029'), - (239, 582, 'not_attending', '2021-02-01 04:52:26', '2025-12-17 19:47:50', '8mRz3zlm', '3445769'), - (239, 587, 'maybe', '2021-02-15 23:56:19', '2025-12-17 19:47:50', '8mRz3zlm', '3449470'), - (239, 588, 'attending', '2021-02-02 18:08:01', '2025-12-17 19:47:50', '8mRz3zlm', '3449471'), - (239, 589, 'maybe', '2021-02-19 03:15:02', '2025-12-17 19:47:50', '8mRz3zlm', '3449473'), - (239, 591, 'not_attending', '2021-02-08 22:18:41', '2025-12-17 19:47:50', '8mRz3zlm', '3465880'), - (239, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '8mRz3zlm', '3468125'), - (239, 602, 'attending', '2021-02-07 17:45:45', '2025-12-17 19:47:50', '8mRz3zlm', '3470303'), - (239, 603, 'not_attending', '2021-02-20 21:01:25', '2025-12-17 19:47:50', '8mRz3zlm', '3470304'), - (239, 604, 'attending', '2021-02-07 17:45:49', '2025-12-17 19:47:50', '8mRz3zlm', '3470305'), - (239, 605, 'not_attending', '2021-02-15 00:51:50', '2025-12-17 19:47:50', '8mRz3zlm', '3470991'), - (239, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '8mRz3zlm', '3517815'), - (239, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '8mRz3zlm', '3517816'), - (239, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '8mRz3zlm', '3523941'), - (239, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '8mRz3zlm', '3533850'), - (239, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8mRz3zlm', '3536632'), - (239, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8mRz3zlm', '3536656'), - (239, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '8mRz3zlm', '3539916'), - (239, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '8mRz3zlm', '3539917'), - (239, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '8mRz3zlm', '3539918'), - (239, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '8mRz3zlm', '3539919'), - (239, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '8mRz3zlm', '3539920'), - (239, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '8mRz3zlm', '3539921'), - (239, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '8mRz3zlm', '3539922'), - (239, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8mRz3zlm', '3539923'), - (239, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8mRz3zlm', '3539927'), - (239, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8mRz3zlm', '3582734'), - (239, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8mRz3zlm', '3619523'), - (239, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRz3zlm', '6045684'), - (240, 400, 'attending', '2021-02-02 01:54:10', '2025-12-17 19:47:50', 'rdOr5j84', '3236455'), - (240, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'rdOr5j84', '3468125'), - (240, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'rdOr5j84', '3470303'), - (240, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'rdOr5j84', '3470305'), - (240, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOr5j84', '3470991'), - (240, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'rdOr5j84', '3517815'), - (240, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'rdOr5j84', '3517816'), - (240, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'rdOr5j84', '3523941'), - (240, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOr5j84', '3533850'), - (240, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOr5j84', '3536632'), - (240, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'rdOr5j84', '3536656'), - (240, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'rdOr5j84', '3539916'), - (240, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'rdOr5j84', '3539917'), - (240, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOr5j84', '3539918'), - (240, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'rdOr5j84', '3539919'), - (240, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'rdOr5j84', '3539920'), - (240, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'rdOr5j84', '3539921'), - (240, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'rdOr5j84', '3539922'), - (240, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'rdOr5j84', '3539923'), - (240, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOr5j84', '3539927'), - (240, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOr5j84', '3582734'), - (240, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOr5j84', '3619523'), - (240, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOr5j84', '6045684'), - (241, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amG67wLd', '4694407'), - (241, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'amG67wLd', '4736497'), - (241, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amG67wLd', '4736499'), - (241, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'amG67wLd', '4736500'), - (241, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'amG67wLd', '4736503'), - (241, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amG67wLd', '4736504'), - (241, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'amG67wLd', '4746789'), - (241, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amG67wLd', '4753929'), - (241, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amG67wLd', '5038850'), - (241, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amG67wLd', '5045826'), - (241, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amG67wLd', '5132533'), - (241, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'amG67wLd', '5186582'), - (241, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'amG67wLd', '5186583'), - (241, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amG67wLd', '5186585'), - (241, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amG67wLd', '5190437'), - (241, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'amG67wLd', '5195095'), - (241, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'amG67wLd', '5215989'), - (241, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'amG67wLd', '5223686'), - (241, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'amG67wLd', '5247467'), - (241, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'amG67wLd', '5260800'), - (241, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'amG67wLd', '5269930'), - (241, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'amG67wLd', '5271448'), - (241, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'amG67wLd', '5271449'), - (241, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'amG67wLd', '5278159'), - (241, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'amG67wLd', '5363695'), - (241, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'amG67wLd', '5365960'), - (241, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'amG67wLd', '5378247'), - (241, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'amG67wLd', '5389605'), - (241, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'amG67wLd', '5397265'), - (241, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'amG67wLd', '5404786'), - (241, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'amG67wLd', '5405203'), - (241, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'amG67wLd', '5412550'), - (241, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'amG67wLd', '5415046'), - (241, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'amG67wLd', '5422086'), - (241, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'amG67wLd', '5422406'), - (241, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'amG67wLd', '5424565'), - (241, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'amG67wLd', '5426882'), - (241, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'amG67wLd', '5441125'), - (241, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'amG67wLd', '5441126'), - (241, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'amG67wLd', '5441128'), - (241, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'amG67wLd', '5441131'), - (241, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'amG67wLd', '5441132'), - (241, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'amG67wLd', '5453325'), - (241, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'amG67wLd', '5454516'), - (241, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'amG67wLd', '5454605'), - (241, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'amG67wLd', '5455037'), - (241, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'amG67wLd', '5461278'), - (241, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'amG67wLd', '5469480'), - (241, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'amG67wLd', '5474663'), - (241, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'amG67wLd', '5482022'), - (241, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'amG67wLd', '5488912'), - (241, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'amG67wLd', '5492192'), - (241, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'amG67wLd', '5493139'), - (241, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'amG67wLd', '5493200'), - (241, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'amG67wLd', '5502188'), - (241, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'amG67wLd', '5505059'), - (241, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'amG67wLd', '5509055'), - (241, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'amG67wLd', '5512862'), - (241, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'amG67wLd', '5513985'), - (241, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'amG67wLd', '5519981'), - (241, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'amG67wLd', '5522550'), - (241, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'amG67wLd', '5534683'), - (241, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'amG67wLd', '5537735'), - (241, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'amG67wLd', '5540859'), - (241, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'amG67wLd', '5546619'), - (241, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'amG67wLd', '5557747'), - (241, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'amG67wLd', '5560255'), - (241, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'amG67wLd', '5562906'), - (241, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'amG67wLd', '5600604'), - (241, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'amG67wLd', '5605544'), - (241, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'amG67wLd', '5630960'), - (241, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'amG67wLd', '5630961'), - (241, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'amG67wLd', '5630962'), - (241, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'amG67wLd', '5630966'), - (241, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'amG67wLd', '5630967'), - (241, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'amG67wLd', '5630968'), - (241, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'amG67wLd', '5635406'), - (241, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'amG67wLd', '5638765'), - (241, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'amG67wLd', '5640097'), - (241, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'amG67wLd', '5640843'), - (241, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'amG67wLd', '5641521'), - (241, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'amG67wLd', '5642818'), - (241, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'amG67wLd', '5652395'), - (241, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'amG67wLd', '5670445'), - (241, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'amG67wLd', '5671637'), - (241, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'amG67wLd', '5672329'), - (241, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'amG67wLd', '5674057'), - (241, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'amG67wLd', '5674060'), - (241, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'amG67wLd', '5677461'), - (241, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'amG67wLd', '5698046'), - (241, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'amG67wLd', '5699760'), - (241, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'amG67wLd', '5741601'), - (241, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'amG67wLd', '5763458'), - (241, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'amG67wLd', '5774172'), - (241, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'amG67wLd', '5818247'), - (241, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'amG67wLd', '5819471'), - (241, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'amG67wLd', '5827739'), - (241, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'amG67wLd', '5844306'), - (241, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'amG67wLd', '5850159'), - (241, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'amG67wLd', '5858999'), - (241, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'amG67wLd', '5871984'), - (241, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'amG67wLd', '5876354'), - (241, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'amG67wLd', '5880939'), - (241, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'amG67wLd', '5880940'), - (241, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'amG67wLd', '5880942'), - (241, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'amG67wLd', '5880943'), - (241, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'amG67wLd', '5887890'), - (241, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'amG67wLd', '5888598'), - (241, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'amG67wLd', '5893260'), - (241, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'amG67wLd', '5899826'), - (241, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'amG67wLd', '5900199'), - (241, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'amG67wLd', '5900200'), - (241, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'amG67wLd', '5900202'), - (241, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'amG67wLd', '5900203'), - (241, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'amG67wLd', '5901108'), - (241, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'amG67wLd', '5901126'), - (241, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'amG67wLd', '5901606'), - (241, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'amG67wLd', '5909655'), - (241, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'amG67wLd', '5910522'), - (241, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'amG67wLd', '5910526'), - (241, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'amG67wLd', '5910528'), - (241, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'amG67wLd', '5916219'), - (241, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'amG67wLd', '5936234'), - (241, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'amG67wLd', '5958351'), - (241, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'amG67wLd', '5959751'), - (241, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'amG67wLd', '5959755'), - (241, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'amG67wLd', '5960055'), - (241, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'amG67wLd', '5961684'), - (241, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'amG67wLd', '5962132'), - (241, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'amG67wLd', '5962133'), - (241, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'amG67wLd', '5962134'), - (241, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'amG67wLd', '5962317'), - (241, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'amG67wLd', '5962318'), - (241, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'amG67wLd', '5965933'), - (241, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'amG67wLd', '5967014'), - (241, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'amG67wLd', '5972815'), - (241, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'amG67wLd', '5974016'), - (241, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'amG67wLd', '5981515'), - (241, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'amG67wLd', '5993516'), - (241, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'amG67wLd', '5998939'), - (241, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'amG67wLd', '6028191'), - (241, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'amG67wLd', '6040066'), - (241, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'amG67wLd', '6042717'), - (241, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'amG67wLd', '6044838'), - (241, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'amG67wLd', '6044839'), - (241, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amG67wLd', '6045684'), - (241, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'amG67wLd', '6050104'), - (241, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'amG67wLd', '6053195'), - (241, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'amG67wLd', '6053198'), - (241, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'amG67wLd', '6056085'), - (241, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'amG67wLd', '6056916'), - (241, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'amG67wLd', '6059290'), - (241, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'amG67wLd', '6060328'), - (241, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'amG67wLd', '6061037'), - (241, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'amG67wLd', '6061039'), - (241, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'amG67wLd', '6067245'), - (241, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'amG67wLd', '6068094'), - (241, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'amG67wLd', '6068252'), - (241, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'amG67wLd', '6068253'), - (241, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'amG67wLd', '6068254'), - (241, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'amG67wLd', '6068280'), - (241, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'amG67wLd', '6069093'), - (241, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'amG67wLd', '6072528'), - (241, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'amG67wLd', '6079840'), - (241, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'amG67wLd', '6083398'), - (241, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'amG67wLd', '6093504'), - (241, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'amG67wLd', '6097414'), - (241, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'amG67wLd', '6097442'), - (241, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'amG67wLd', '6097684'), - (241, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'amG67wLd', '6098762'), - (241, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'amG67wLd', '6101361'), - (241, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'amG67wLd', '6101362'), - (241, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'amG67wLd', '6107314'), - (241, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'amG67wLd', '6120034'), - (241, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'amG67wLd', '6136733'), - (241, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'amG67wLd', '6137989'), - (241, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'amG67wLd', '6150864'), - (241, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'amG67wLd', '6155491'), - (241, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'amG67wLd', '6164417'), - (241, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'amG67wLd', '6166388'), - (241, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'amG67wLd', '6176439'), - (241, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'amG67wLd', '6182410'), - (241, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'amG67wLd', '6185812'), - (241, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'amG67wLd', '6187651'), - (241, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'amG67wLd', '6187963'), - (241, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'amG67wLd', '6187964'), - (241, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'amG67wLd', '6187966'), - (241, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'amG67wLd', '6187967'), - (241, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'amG67wLd', '6187969'), - (241, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'amG67wLd', '6334878'), - (241, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'amG67wLd', '6337236'), - (241, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'amG67wLd', '6337970'), - (241, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'amG67wLd', '6338308'), - (241, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'amG67wLd', '6341710'), - (241, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'amG67wLd', '6342044'), - (241, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'amG67wLd', '6342298'), - (241, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'amG67wLd', '6343294'), - (241, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'amG67wLd', '6347034'), - (241, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'amG67wLd', '6347056'), - (241, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'amG67wLd', '6353830'), - (241, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'amG67wLd', '6353831'), - (241, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'amG67wLd', '6357867'), - (241, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'amG67wLd', '6358652'), - (241, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'amG67wLd', '6361709'), - (241, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'amG67wLd', '6361710'), - (241, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'amG67wLd', '6361711'), - (241, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'amG67wLd', '6361712'), - (241, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'amG67wLd', '6361713'), - (241, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'amG67wLd', '6382573'), - (241, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'amG67wLd', '6388604'), - (241, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'amG67wLd', '6394629'), - (241, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'amG67wLd', '6394631'), - (241, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'amG67wLd', '6440863'), - (241, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'amG67wLd', '6445440'), - (241, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'amG67wLd', '6453951'), - (241, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'amG67wLd', '6461696'), - (241, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'amG67wLd', '6462129'), - (241, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'amG67wLd', '6463218'), - (241, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'amG67wLd', '6472181'), - (241, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'amG67wLd', '6482693'), - (241, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'amG67wLd', '6484200'), - (241, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'amG67wLd', '6484680'), - (241, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'amG67wLd', '6507741'), - (241, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'amG67wLd', '6514659'), - (241, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'amG67wLd', '6514660'), - (241, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'amG67wLd', '6519103'), - (241, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'amG67wLd', '6535681'), - (241, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'amG67wLd', '6584747'), - (241, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'amG67wLd', '6587097'), - (241, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'amG67wLd', '6609022'), - (241, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'amG67wLd', '6632757'), - (241, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'amG67wLd', '6644187'), - (241, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'amG67wLd', '6648951'), - (241, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'amG67wLd', '6648952'), - (241, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'amG67wLd', '6655401'), - (241, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'amG67wLd', '6661585'), - (241, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'amG67wLd', '6661588'), - (241, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'amG67wLd', '6661589'), - (241, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'amG67wLd', '6699906'), - (241, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'amG67wLd', '6699913'), - (241, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'amG67wLd', '6701109'), - (241, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'amG67wLd', '6705219'), - (241, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'amG67wLd', '6710153'), - (241, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'amG67wLd', '6711552'), - (241, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'amG67wLd', '6711553'), - (241, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'amG67wLd', '6722688'), - (241, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'amG67wLd', '6730620'), - (241, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'amG67wLd', '6740364'), - (241, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'amG67wLd', '6743829'), - (241, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'amG67wLd', '7030380'), - (241, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'amG67wLd', '7033677'), - (241, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'amG67wLd', '7044715'), - (241, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'amG67wLd', '7050318'), - (241, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'amG67wLd', '7050319'), - (241, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'amG67wLd', '7050322'), - (241, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'amG67wLd', '7057804'), - (241, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'amG67wLd', '7072824'), - (241, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'amG67wLd', '7074348'), - (241, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'amG67wLd', '7074364'), - (241, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'amG67wLd', '7089267'), - (241, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'amG67wLd', '7098747'), - (241, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'amG67wLd', '7113468'), - (241, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'amG67wLd', '7114856'), - (241, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'amG67wLd', '7114951'), - (241, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'amG67wLd', '7114955'), - (241, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'amG67wLd', '7114956'), - (241, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'amG67wLd', '7114957'), - (241, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'amG67wLd', '7159484'), - (241, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'amG67wLd', '7178446'), - (241, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'amG67wLd', '7220467'), - (241, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'amG67wLd', '7240354'), - (241, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'amG67wLd', '7251633'), - (241, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'amG67wLd', '7324073'), - (241, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'amG67wLd', '7324074'), - (241, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'amG67wLd', '7324075'), - (241, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'amG67wLd', '7324078'), - (241, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'amG67wLd', '7324082'), - (241, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'amG67wLd', '7331457'), - (241, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'amG67wLd', '7363643'), - (241, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'amG67wLd', '7368606'), - (241, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'amG67wLd', '7397462'), - (241, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'amG67wLd', '7424275'), - (241, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'amG67wLd', '7432751'), - (241, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'amG67wLd', '7432752'), - (241, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'amG67wLd', '7432753'), - (241, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'amG67wLd', '7432754'), - (241, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'amG67wLd', '7432755'), - (241, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'amG67wLd', '7432756'), - (241, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'amG67wLd', '7432758'), - (241, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'amG67wLd', '7432759'), - (241, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'amG67wLd', '7433834'), - (241, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'amG67wLd', '7470197'), - (241, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'amG67wLd', '7685613'), - (241, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'amG67wLd', '7688194'), - (241, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'amG67wLd', '7688196'), - (241, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'amG67wLd', '7688289'), - (241, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'amG67wLd', '7692763'), - (241, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'amG67wLd', '7697552'), - (241, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'amG67wLd', '7699878'), - (241, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'amG67wLd', '7704043'), - (241, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'amG67wLd', '7712467'), - (241, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'amG67wLd', '7713585'), - (241, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'amG67wLd', '7713586'), - (241, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'amG67wLd', '7738518'), - (241, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'amG67wLd', '7750636'), - (241, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'amG67wLd', '7796540'), - (241, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'amG67wLd', '7796541'), - (241, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'amG67wLd', '7796542'), - (241, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'amG67wLd', '7825913'), - (241, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'amG67wLd', '7826209'), - (241, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'amG67wLd', '7834742'), - (241, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'amG67wLd', '7842108'), - (241, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'amG67wLd', '7842902'), - (241, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'amG67wLd', '7842903'), - (241, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'amG67wLd', '7842904'), - (241, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'amG67wLd', '7842905'), - (241, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'amG67wLd', '7855719'), - (241, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'amG67wLd', '7860683'), - (241, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'amG67wLd', '7860684'), - (241, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'amG67wLd', '7866095'), - (241, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'amG67wLd', '7869170'), - (241, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'amG67wLd', '7869188'), - (241, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'amG67wLd', '7869201'), - (241, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'amG67wLd', '7877465'), - (241, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'amG67wLd', '7888250'), - (241, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'amG67wLd', '7904777'), - (241, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'amG67wLd', '8349164'), - (241, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'amG67wLd', '8349545'), - (241, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'amG67wLd', '8368028'), - (241, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'amG67wLd', '8368029'), - (241, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'amG67wLd', '8388462'), - (241, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'amG67wLd', '8400273'), - (241, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'amG67wLd', '8400275'), - (241, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'amG67wLd', '8400276'), - (241, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'amG67wLd', '8404977'), - (241, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'amG67wLd', '8430783'), - (241, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'amG67wLd', '8430784'), - (241, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'amG67wLd', '8430799'), - (241, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'amG67wLd', '8430800'), - (241, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'amG67wLd', '8430801'), - (241, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'amG67wLd', '8438709'), - (241, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'amG67wLd', '8457738'), - (241, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'amG67wLd', '8459566'), - (241, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'amG67wLd', '8459567'), - (241, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'amG67wLd', '8461032'), - (241, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'amG67wLd', '8477877'), - (241, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'amG67wLd', '8485688'), - (241, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'amG67wLd', '8490587'), - (241, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'amG67wLd', '8493552'), - (241, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'amG67wLd', '8493553'), - (241, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'amG67wLd', '8493554'), - (241, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'amG67wLd', '8493555'), - (241, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'amG67wLd', '8493556'), - (241, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'amG67wLd', '8493557'), - (241, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'amG67wLd', '8493558'), - (241, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'amG67wLd', '8493559'), - (241, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'amG67wLd', '8493560'), - (241, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'amG67wLd', '8493561'), - (241, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'amG67wLd', '8493572'), - (241, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'amG67wLd', '8540725'), - (241, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'amG67wLd', '8555421'), - (242, 1659, 'attending', '2022-09-23 02:40:11', '2025-12-17 19:47:11', 'd8L5Oo0d', '5557747'), - (242, 1667, 'attending', '2022-09-24 20:54:44', '2025-12-17 19:47:11', 'd8L5Oo0d', '5563221'), - (242, 1668, 'not_attending', '2022-10-01 19:48:22', '2025-12-17 19:47:12', 'd8L5Oo0d', '5563222'), - (242, 1676, 'attending', '2022-09-21 13:23:56', '2025-12-17 19:47:11', 'd8L5Oo0d', '5596181'), - (242, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd8L5Oo0d', '5600604'), - (242, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd8L5Oo0d', '5605544'), - (242, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'd8L5Oo0d', '5606737'), - (242, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd8L5Oo0d', '5630960'), - (242, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd8L5Oo0d', '5630961'), - (242, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd8L5Oo0d', '5630962'), - (242, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd8L5Oo0d', '5630966'), - (242, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd8L5Oo0d', '5630967'), - (242, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd8L5Oo0d', '5630968'), - (242, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd8L5Oo0d', '5635406'), - (242, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd8L5Oo0d', '5638765'), - (242, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd8L5Oo0d', '5640097'), - (242, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'd8L5Oo0d', '5640843'), - (242, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd8L5Oo0d', '5641521'), - (242, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd8L5Oo0d', '5642818'), - (242, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd8L5Oo0d', '5652395'), - (242, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd8L5Oo0d', '5670445'), - (242, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd8L5Oo0d', '5671637'), - (242, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd8L5Oo0d', '5672329'), - (242, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd8L5Oo0d', '5674057'), - (242, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd8L5Oo0d', '5674060'), - (242, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd8L5Oo0d', '5677461'), - (242, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd8L5Oo0d', '5698046'), - (242, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd8L5Oo0d', '5699760'), - (242, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd8L5Oo0d', '5741601'), - (242, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd8L5Oo0d', '5763458'), - (242, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd8L5Oo0d', '5774172'), - (242, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd8L5Oo0d', '5818247'), - (242, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd8L5Oo0d', '5819471'), - (242, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd8L5Oo0d', '5827739'), - (242, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd8L5Oo0d', '5844306'), - (242, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd8L5Oo0d', '5850159'), - (242, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd8L5Oo0d', '5858999'), - (242, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd8L5Oo0d', '5871984'), - (242, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd8L5Oo0d', '5876354'), - (242, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd8L5Oo0d', '5880939'), - (242, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd8L5Oo0d', '5887890'), - (242, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd8L5Oo0d', '5888598'), - (242, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd8L5Oo0d', '5893260'), - (242, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8L5Oo0d', '6045684'), - (243, 1442, 'attending', '2022-06-18 17:22:23', '2025-12-17 19:47:17', 'O4Zobld1', '5397265'), - (243, 1459, 'maybe', '2022-06-20 00:05:56', '2025-12-17 19:47:17', 'O4Zobld1', '5404793'), - (243, 1476, 'maybe', '2022-06-19 17:45:02', '2025-12-17 19:47:17', 'O4Zobld1', '5408130'), - (243, 1480, 'attending', '2022-06-19 03:16:17', '2025-12-17 19:47:19', 'O4Zobld1', '5411699'), - (243, 1482, 'attending', '2022-06-22 01:49:51', '2025-12-17 19:47:19', 'O4Zobld1', '5412550'), - (243, 1483, 'maybe', '2022-06-22 02:54:03', '2025-12-17 19:47:17', 'O4Zobld1', '5414556'), - (243, 1484, 'attending', '2022-06-22 20:58:14', '2025-12-17 19:47:17', 'O4Zobld1', '5415046'), - (243, 1485, 'maybe', '2022-06-21 20:15:51', '2025-12-17 19:47:17', 'O4Zobld1', '5416276'), - (243, 1486, 'attending', '2022-06-28 23:34:35', '2025-12-17 19:47:19', 'O4Zobld1', '5416339'), - (243, 1488, 'maybe', '2022-06-30 06:52:24', '2025-12-17 19:47:19', 'O4Zobld1', '5420154'), - (243, 1489, 'maybe', '2022-06-30 05:40:51', '2025-12-17 19:47:19', 'O4Zobld1', '5420155'), - (243, 1495, 'maybe', '2022-07-05 04:11:57', '2025-12-17 19:47:19', 'O4Zobld1', '5422086'), - (243, 1496, 'maybe', '2022-06-28 19:50:13', '2025-12-17 19:47:19', 'O4Zobld1', '5422404'), - (243, 1497, 'maybe', '2022-06-28 23:34:36', '2025-12-17 19:47:19', 'O4Zobld1', '5422405'), - (243, 1498, 'attending', '2022-07-01 01:36:42', '2025-12-17 19:47:19', 'O4Zobld1', '5422406'), - (243, 1500, 'maybe', '2022-07-05 04:11:17', '2025-12-17 19:47:19', 'O4Zobld1', '5423915'), - (243, 1501, 'maybe', '2022-06-28 23:34:43', '2025-12-17 19:47:19', 'O4Zobld1', '5424546'), - (243, 1502, 'maybe', '2022-07-05 04:11:24', '2025-12-17 19:47:19', 'O4Zobld1', '5424565'), - (243, 1504, 'attending', '2022-07-02 20:58:09', '2025-12-17 19:47:19', 'O4Zobld1', '5426882'), - (243, 1505, 'maybe', '2022-07-02 20:58:34', '2025-12-17 19:47:19', 'O4Zobld1', '5427083'), - (243, 1508, 'attending', '2022-07-02 20:57:59', '2025-12-17 19:47:19', 'O4Zobld1', '5433453'), - (243, 1509, 'maybe', '2022-07-06 02:02:28', '2025-12-17 19:47:19', 'O4Zobld1', '5434019'), - (243, 1513, 'attending', '2022-07-12 23:26:11', '2025-12-17 19:47:19', 'O4Zobld1', '5441125'), - (243, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'O4Zobld1', '5441126'), - (243, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'O4Zobld1', '5441128'), - (243, 1516, 'attending', '2022-08-16 23:43:25', '2025-12-17 19:47:23', 'O4Zobld1', '5441129'), - (243, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'O4Zobld1', '5441131'), - (243, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'O4Zobld1', '5441132'), - (243, 1520, 'attending', '2022-07-12 05:20:28', '2025-12-17 19:47:19', 'O4Zobld1', '5441645'), - (243, 1522, 'attending', '2022-07-11 17:50:39', '2025-12-17 19:47:20', 'O4Zobld1', '5442832'), - (243, 1525, 'attending', '2022-07-12 23:26:35', '2025-12-17 19:47:19', 'O4Zobld1', '5444962'), - (243, 1528, 'maybe', '2022-07-13 22:43:39', '2025-12-17 19:47:20', 'O4Zobld1', '5446643'), - (243, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'O4Zobld1', '5453325'), - (243, 1541, 'attending', '2022-07-24 04:08:29', '2025-12-17 19:47:20', 'O4Zobld1', '5453542'), - (243, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'O4Zobld1', '5454516'), - (243, 1544, 'attending', '2022-09-17 21:47:31', '2025-12-17 19:47:11', 'O4Zobld1', '5454517'), - (243, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'O4Zobld1', '5454605'), - (243, 1547, 'maybe', '2022-07-26 03:57:41', '2025-12-17 19:47:20', 'O4Zobld1', '5454608'), - (243, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'O4Zobld1', '5455037'), - (243, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'O4Zobld1', '5461278'), - (243, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'O4Zobld1', '5469480'), - (243, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'O4Zobld1', '5471073'), - (243, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'O4Zobld1', '5474663'), - (243, 1570, 'attending', '2022-08-31 21:02:48', '2025-12-17 19:47:21', 'O4Zobld1', '5481830'), - (243, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'O4Zobld1', '5482022'), - (243, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'O4Zobld1', '5482793'), - (243, 1580, 'attending', '2022-08-09 22:26:58', '2025-12-17 19:47:22', 'O4Zobld1', '5488912'), - (243, 1581, 'attending', '2022-08-11 19:46:00', '2025-12-17 19:47:22', 'O4Zobld1', '5490302'), - (243, 1586, 'attending', '2022-08-16 23:43:10', '2025-12-17 19:47:23', 'O4Zobld1', '5492019'), - (243, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'O4Zobld1', '5492192'), - (243, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'O4Zobld1', '5493139'), - (243, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'O4Zobld1', '5493200'), - (243, 1592, 'attending', '2022-08-10 20:59:09', '2025-12-17 19:47:22', 'O4Zobld1', '5494031'), - (243, 1593, 'maybe', '2022-08-13 02:19:50', '2025-12-17 19:47:22', 'O4Zobld1', '5494043'), - (243, 1595, 'attending', '2022-08-12 03:31:12', '2025-12-17 19:47:22', 'O4Zobld1', '5495736'), - (243, 1597, 'maybe', '2022-08-13 04:21:52', '2025-12-17 19:47:22', 'O4Zobld1', '5496566'), - (243, 1598, 'attending', '2022-08-13 04:22:00', '2025-12-17 19:47:22', 'O4Zobld1', '5496567'), - (243, 1603, 'maybe', '2022-08-13 04:22:27', '2025-12-17 19:47:23', 'O4Zobld1', '5497895'), - (243, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'O4Zobld1', '5502188'), - (243, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'O4Zobld1', '5505059'), - (243, 1609, 'attending', '2022-08-29 01:03:27', '2025-12-17 19:47:23', 'O4Zobld1', '5506590'), - (243, 1610, 'maybe', '2022-08-29 01:03:47', '2025-12-17 19:47:23', 'O4Zobld1', '5506595'), - (243, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'O4Zobld1', '5509055'), - (243, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'O4Zobld1', '5512862'), - (243, 1620, 'attending', '2022-08-25 20:54:22', '2025-12-17 19:47:23', 'O4Zobld1', '5513046'), - (243, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'O4Zobld1', '5513985'), - (243, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'O4Zobld1', '5519981'), - (243, 1627, 'attending', '2022-09-02 01:00:19', '2025-12-17 19:47:24', 'O4Zobld1', '5521552'), - (243, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'O4Zobld1', '5522550'), - (243, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'O4Zobld1', '5534683'), - (243, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'O4Zobld1', '5537735'), - (243, 1636, 'maybe', '2022-09-04 22:41:51', '2025-12-17 19:47:24', 'O4Zobld1', '5538454'), - (243, 1638, 'attending', '2022-09-01 18:19:43', '2025-12-17 19:47:24', 'O4Zobld1', '5540402'), - (243, 1639, 'attending', '2022-09-01 23:32:22', '2025-12-17 19:47:24', 'O4Zobld1', '5540403'), - (243, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'O4Zobld1', '5540859'), - (243, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'O4Zobld1', '5546619'), - (243, 1652, 'attending', '2022-09-10 20:32:26', '2025-12-17 19:47:24', 'O4Zobld1', '5552671'), - (243, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'O4Zobld1', '5555245'), - (243, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'O4Zobld1', '5557747'), - (243, 1661, 'attending', '2022-09-09 00:19:23', '2025-12-17 19:47:24', 'O4Zobld1', '5560254'), - (243, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'O4Zobld1', '5560255'), - (243, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'O4Zobld1', '5562906'), - (243, 1667, 'attending', '2022-09-24 21:57:01', '2025-12-17 19:47:11', 'O4Zobld1', '5563221'), - (243, 1668, 'attending', '2022-10-01 21:34:36', '2025-12-17 19:47:12', 'O4Zobld1', '5563222'), - (243, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'O4Zobld1', '5600604'), - (243, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'O4Zobld1', '5605544'), - (243, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'O4Zobld1', '5606737'), - (243, 1714, 'attending', '2022-10-27 23:10:39', '2025-12-17 19:47:14', 'O4Zobld1', '5622347'), - (243, 1720, 'attending', '2022-10-15 18:05:14', '2025-12-17 19:47:12', 'O4Zobld1', '5630959'), - (243, 1721, 'attending', '2022-10-21 04:06:20', '2025-12-17 19:47:13', 'O4Zobld1', '5630960'), - (243, 1722, 'attending', '2022-10-24 20:56:22', '2025-12-17 19:47:14', 'O4Zobld1', '5630961'), - (243, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'O4Zobld1', '5630962'), - (243, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'O4Zobld1', '5630966'), - (243, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'O4Zobld1', '5630967'), - (243, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'O4Zobld1', '5630968'), - (243, 1727, 'attending', '2022-12-02 02:56:22', '2025-12-17 19:47:16', 'O4Zobld1', '5630969'), - (243, 1728, 'attending', '2022-11-27 04:11:22', '2025-12-17 19:47:17', 'O4Zobld1', '5630970'), - (243, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'O4Zobld1', '5635406'), - (243, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'O4Zobld1', '5638765'), - (243, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'O4Zobld1', '5640097'), - (243, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'O4Zobld1', '5640843'), - (243, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'O4Zobld1', '5641521'), - (243, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'O4Zobld1', '5642818'), - (243, 1747, 'attending', '2022-10-18 23:32:38', '2025-12-17 19:47:13', 'O4Zobld1', '5648009'), - (243, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'O4Zobld1', '5652395'), - (243, 1757, 'maybe', '2022-11-03 22:06:37', '2025-12-17 19:47:15', 'O4Zobld1', '5668974'), - (243, 1762, 'attending', '2022-12-02 00:13:20', '2025-12-17 19:47:16', 'O4Zobld1', '5670445'), - (243, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'O4Zobld1', '5671637'), - (243, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'O4Zobld1', '5672329'), - (243, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'O4Zobld1', '5674057'), - (243, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'O4Zobld1', '5674060'), - (243, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'O4Zobld1', '5677461'), - (243, 1776, 'attending', '2022-11-08 23:23:02', '2025-12-17 19:47:15', 'O4Zobld1', '5691067'), - (243, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'O4Zobld1', '5698046'), - (243, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'O4Zobld1', '5699760'), - (243, 1793, 'maybe', '2022-11-23 22:32:36', '2025-12-17 19:47:16', 'O4Zobld1', '5736365'), - (243, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'O4Zobld1', '5741601'), - (243, 1796, 'attending', '2022-12-01 05:27:49', '2025-12-17 19:47:16', 'O4Zobld1', '5756755'), - (243, 1797, 'maybe', '2022-12-08 06:51:58', '2025-12-17 19:47:17', 'O4Zobld1', '5757486'), - (243, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'O4Zobld1', '5763458'), - (243, 1802, 'attending', '2022-12-08 06:52:02', '2025-12-17 19:47:17', 'O4Zobld1', '5764669'), - (243, 1803, 'attending', '2023-01-04 05:48:14', '2025-12-17 19:47:05', 'O4Zobld1', '5764673'), - (243, 1806, 'attending', '2023-01-21 03:59:54', '2025-12-17 19:47:05', 'O4Zobld1', '5764676'), - (243, 1807, 'attending', '2023-01-12 03:59:03', '2025-12-17 19:47:05', 'O4Zobld1', '5764677'), - (243, 1820, 'not_attending', '2023-04-05 21:23:37', '2025-12-17 19:46:58', 'O4Zobld1', '5764690'), - (243, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'O4Zobld1', '5774172'), - (243, 1825, 'attending', '2022-12-09 00:56:03', '2025-12-17 19:47:16', 'O4Zobld1', '5776760'), - (243, 1826, 'attending', '2022-12-20 02:59:58', '2025-12-17 19:47:04', 'O4Zobld1', '5776768'), - (243, 1828, 'attending', '2022-11-28 20:40:15', '2025-12-17 19:47:16', 'O4Zobld1', '5778865'), - (243, 1829, 'maybe', '2022-12-02 05:41:12', '2025-12-17 19:47:16', 'O4Zobld1', '5778867'), - (243, 1831, 'maybe', '2022-12-02 05:54:27', '2025-12-17 19:47:16', 'O4Zobld1', '5813239'), - (243, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'O4Zobld1', '5818247'), - (243, 1833, 'maybe', '2022-12-06 06:24:42', '2025-12-17 19:47:16', 'O4Zobld1', '5819465'), - (243, 1834, 'maybe', '2022-12-08 06:52:03', '2025-12-17 19:47:17', 'O4Zobld1', '5819470'), - (243, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'O4Zobld1', '5819471'), - (243, 1836, 'attending', '2022-12-05 17:24:33', '2025-12-17 19:47:16', 'O4Zobld1', '5819484'), - (243, 1837, 'attending', '2022-12-07 23:16:52', '2025-12-17 19:47:16', 'O4Zobld1', '5820146'), - (243, 1838, 'attending', '2022-12-05 23:38:54', '2025-12-17 19:47:16', 'O4Zobld1', '5821722'), - (243, 1839, 'attending', '2022-12-21 23:33:00', '2025-12-17 19:47:04', 'O4Zobld1', '5821920'), - (243, 1840, 'maybe', '2022-12-08 06:39:13', '2025-12-17 19:47:17', 'O4Zobld1', '5822288'), - (243, 1841, 'attending', '2022-12-29 03:06:06', '2025-12-17 19:47:05', 'O4Zobld1', '5827665'), - (243, 1842, 'maybe', '2022-12-09 03:45:41', '2025-12-17 19:47:04', 'O4Zobld1', '5827739'), - (243, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'O4Zobld1', '5844306'), - (243, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'O4Zobld1', '5850159'), - (243, 1849, 'maybe', '2023-01-04 05:48:05', '2025-12-17 19:47:05', 'O4Zobld1', '5852467'), - (243, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'O4Zobld1', '5858999'), - (243, 1852, 'attending', '2023-01-11 04:08:21', '2025-12-17 19:47:05', 'O4Zobld1', '5869898'), - (243, 1853, 'maybe', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'O4Zobld1', '5871984'), - (243, 1859, 'attending', '2023-01-20 03:51:34', '2025-12-17 19:47:05', 'O4Zobld1', '5876234'), - (243, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'O4Zobld1', '5876354'), - (243, 1864, 'attending', '2023-01-21 03:59:53', '2025-12-17 19:47:05', 'O4Zobld1', '5879675'), - (243, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'O4Zobld1', '5880939'), - (243, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'O4Zobld1', '5880940'), - (243, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'O4Zobld1', '5880942'), - (243, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'O4Zobld1', '5880943'), - (243, 1872, 'attending', '2023-01-20 03:51:55', '2025-12-17 19:47:05', 'O4Zobld1', '5883546'), - (243, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'O4Zobld1', '5887890'), - (243, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'O4Zobld1', '5888598'), - (243, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'O4Zobld1', '5893260'), - (243, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'O4Zobld1', '5899826'), - (243, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'O4Zobld1', '5900199'), - (243, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'O4Zobld1', '5900200'), - (243, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'O4Zobld1', '5900202'), - (243, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'O4Zobld1', '5900203'), - (243, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'O4Zobld1', '5901108'), - (243, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'O4Zobld1', '5901126'), - (243, 1897, 'attending', '2023-02-10 06:22:25', '2025-12-17 19:47:07', 'O4Zobld1', '5901128'), - (243, 1905, 'maybe', '2023-02-05 21:20:51', '2025-12-17 19:47:06', 'O4Zobld1', '5904479'), - (243, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'O4Zobld1', '5909655'), - (243, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'O4Zobld1', '5910522'), - (243, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'O4Zobld1', '5910526'), - (243, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'O4Zobld1', '5910528'), - (243, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'O4Zobld1', '5916219'), - (243, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'O4Zobld1', '5936234'), - (243, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'O4Zobld1', '5958351'), - (243, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'O4Zobld1', '5959751'), - (243, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'O4Zobld1', '5959755'), - (243, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'O4Zobld1', '5960055'), - (243, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'O4Zobld1', '5961684'), - (243, 1942, 'attending', '2023-03-01 02:24:19', '2025-12-17 19:47:08', 'O4Zobld1', '5962085'), - (243, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'O4Zobld1', '5962132'), - (243, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'O4Zobld1', '5962133'), - (243, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'O4Zobld1', '5962134'), - (243, 1947, 'attending', '2023-03-05 03:54:57', '2025-12-17 19:47:09', 'O4Zobld1', '5962233'), - (243, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'O4Zobld1', '5962317'), - (243, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'O4Zobld1', '5962318'), - (243, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'O4Zobld1', '5965933'), - (243, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'O4Zobld1', '5967014'), - (243, 1955, 'attending', '2023-03-29 22:20:03', '2025-12-17 19:46:57', 'O4Zobld1', '5972529'), - (243, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'O4Zobld1', '5972763'), - (243, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'O4Zobld1', '5972815'), - (243, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'O4Zobld1', '5974016'), - (243, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'O4Zobld1', '5981515'), - (243, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'O4Zobld1', '5993516'), - (243, 1973, 'attending', '2023-03-15 03:19:34', '2025-12-17 19:46:56', 'O4Zobld1', '5993777'), - (243, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'O4Zobld1', '5998939'), - (243, 1978, 'maybe', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'O4Zobld1', '6028191'), - (243, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'O4Zobld1', '6040066'), - (243, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'O4Zobld1', '6042717'), - (243, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'O4Zobld1', '6044838'), - (243, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'O4Zobld1', '6044839'), - (243, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'O4Zobld1', '6045684'), - (243, 1992, 'attending', '2023-04-01 01:03:27', '2025-12-17 19:46:58', 'O4Zobld1', '6048742'), - (243, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'O4Zobld1', '6050104'), - (243, 1997, 'attending', '2023-04-05 21:23:35', '2025-12-17 19:46:58', 'O4Zobld1', '6051604'), - (243, 1999, 'maybe', '2023-04-11 01:50:15', '2025-12-17 19:47:00', 'O4Zobld1', '6052057'), - (243, 2000, 'attending', '2023-04-04 02:22:15', '2025-12-17 19:46:58', 'O4Zobld1', '6052107'), - (243, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'O4Zobld1', '6053195'), - (243, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'O4Zobld1', '6053198'), - (243, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'O4Zobld1', '6056085'), - (243, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'O4Zobld1', '6056916'), - (243, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'O4Zobld1', '6059290'), - (243, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'O4Zobld1', '6060328'), - (243, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'O4Zobld1', '6061037'), - (243, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'O4Zobld1', '6061039'), - (243, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'O4Zobld1', '6061099'), - (243, 2021, 'attending', '2023-04-16 23:54:52', '2025-12-17 19:47:00', 'O4Zobld1', '6066316'), - (243, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'O4Zobld1', '6067245'), - (243, 2025, 'maybe', '2023-04-23 03:52:10', '2025-12-17 19:47:00', 'O4Zobld1', '6067457'), - (243, 2026, 'maybe', '2023-04-23 21:14:21', '2025-12-17 19:47:01', 'O4Zobld1', '6068078'), - (243, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'O4Zobld1', '6068094'), - (243, 2028, 'maybe', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'O4Zobld1', '6068252'), - (243, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'O4Zobld1', '6068253'), - (243, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'O4Zobld1', '6068254'), - (243, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'O4Zobld1', '6068280'), - (243, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'O4Zobld1', '6069093'), - (243, 2037, 'attending', '2023-04-23 21:13:28', '2025-12-17 19:47:01', 'O4Zobld1', '6071943'), - (243, 2039, 'maybe', '2023-04-23 21:14:03', '2025-12-17 19:47:01', 'O4Zobld1', '6072398'), - (243, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'O4Zobld1', '6072528'), - (243, 2043, 'maybe', '2023-04-26 02:41:39', '2025-12-17 19:47:01', 'O4Zobld1', '6073023'), - (243, 2045, 'maybe', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'O4Zobld1', '6075556'), - (243, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'O4Zobld1', '6079840'), - (243, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'O4Zobld1', '6083398'), - (243, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'O4Zobld1', '6093504'), - (243, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'O4Zobld1', '6097414'), - (243, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'O4Zobld1', '6097442'), - (243, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'O4Zobld1', '6097684'), - (243, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'O4Zobld1', '6098762'), - (243, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'O4Zobld1', '6101362'), - (243, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'O4Zobld1', '6107314'), - (244, 1116, 'attending', '2021-11-29 22:33:07', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4642994'), - (244, 1122, 'not_attending', '2021-11-25 06:39:59', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4644023'), - (244, 1126, 'attending', '2021-12-12 00:48:35', '2025-12-17 19:47:38', 'Ae7wW0Wd', '4645687'), - (244, 1129, 'maybe', '2021-11-26 19:07:31', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4645705'), - (244, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4668385'), - (244, 1135, 'attending', '2021-11-25 19:45:25', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4670469'), - (244, 1139, 'attending', '2021-11-29 00:05:54', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4675604'), - (244, 1140, 'attending', '2021-11-30 20:37:46', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4679701'), - (244, 1143, 'attending', '2021-12-01 21:50:03', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4683667'), - (244, 1146, 'attending', '2021-12-08 00:52:41', '2025-12-17 19:47:38', 'Ae7wW0Wd', '4692841'), - (244, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Ae7wW0Wd', '4694407'), - (244, 1157, 'attending', '2021-12-19 14:36:22', '2025-12-17 19:47:31', 'Ae7wW0Wd', '4715208'), - (244, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4736497'), - (244, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4736499'), - (244, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4736500'), - (244, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Ae7wW0Wd', '4736503'), - (244, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Ae7wW0Wd', '4736504'), - (244, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Ae7wW0Wd', '4746789'), - (244, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4753929'), - (244, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Ae7wW0Wd', '5038850'), - (244, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Ae7wW0Wd', '5045826'), - (244, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Ae7wW0Wd', '5132533'), - (244, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Ae7wW0Wd', '5186582'), - (244, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Ae7wW0Wd', '5186583'), - (244, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Ae7wW0Wd', '5186585'), - (244, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Ae7wW0Wd', '5190437'), - (244, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Ae7wW0Wd', '5215989'), - (244, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ae7wW0Wd', '6045684'), - (245, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dKwYOlBd', '7324075'), - (245, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dKwYOlBd', '7324078'), - (245, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dKwYOlBd', '7324082'), - (245, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dKwYOlBd', '7331457'), - (245, 2734, 'attending', '2024-07-05 22:39:31', '2025-12-17 19:46:29', 'dKwYOlBd', '7339440'), - (245, 2748, 'attending', '2024-07-05 22:35:52', '2025-12-17 19:46:29', 'dKwYOlBd', '7353759'), - (245, 2750, 'attending', '2024-07-10 09:56:03', '2025-12-17 19:46:30', 'dKwYOlBd', '7355526'), - (245, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dKwYOlBd', '7363643'), - (245, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dKwYOlBd', '7368606'), - (245, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dKwYOlBd', '7397462'), - (245, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dKwYOlBd', '7424275'), - (245, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dKwYOlBd', '7424276'), - (245, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dKwYOlBd', '7432751'), - (245, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dKwYOlBd', '7432752'), - (245, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dKwYOlBd', '7432753'), - (245, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dKwYOlBd', '7432754'), - (245, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dKwYOlBd', '7432755'), - (245, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dKwYOlBd', '7432756'), - (245, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dKwYOlBd', '7432758'), - (245, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dKwYOlBd', '7432759'), - (245, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dKwYOlBd', '7433834'), - (245, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dKwYOlBd', '7470197'), - (245, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dKwYOlBd', '7685613'), - (245, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dKwYOlBd', '7688194'), - (245, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dKwYOlBd', '7688196'), - (245, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dKwYOlBd', '7688289'), - (246, 2516, 'maybe', '2024-05-02 13:47:26', '2025-12-17 19:46:35', 'dxObDGD4', '7074356'), - (246, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxObDGD4', '7074364'), - (246, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dxObDGD4', '7114956'), - (246, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxObDGD4', '7114957'), - (246, 2576, 'maybe', '2024-04-23 19:30:05', '2025-12-17 19:46:34', 'dxObDGD4', '7164538'), - (246, 2585, 'maybe', '2024-04-22 20:00:37', '2025-12-17 19:46:34', 'dxObDGD4', '7175828'), - (246, 2591, 'attending', '2024-04-19 21:43:28', '2025-12-17 19:46:34', 'dxObDGD4', '7180957'), - (246, 2593, 'attending', '2024-04-19 01:42:06', '2025-12-17 19:46:34', 'dxObDGD4', '7181003'), - (246, 2597, 'attending', '2024-04-23 19:29:58', '2025-12-17 19:46:34', 'dxObDGD4', '7186726'), - (246, 2598, 'attending', '2024-04-22 22:06:26', '2025-12-17 19:46:34', 'dxObDGD4', '7186731'), - (246, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxObDGD4', '7220467'), - (246, 2603, 'attending', '2024-05-15 01:49:36', '2025-12-17 19:46:35', 'dxObDGD4', '7225669'), - (246, 2604, 'maybe', '2024-05-28 18:29:15', '2025-12-17 19:46:36', 'dxObDGD4', '7225670'), - (246, 2607, 'attending', '2024-04-30 00:26:15', '2025-12-17 19:46:35', 'dxObDGD4', '7240136'), - (246, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxObDGD4', '7240354'), - (246, 2611, 'attending', '2024-05-02 22:41:04', '2025-12-17 19:46:35', 'dxObDGD4', '7247642'), - (246, 2612, 'maybe', '2024-05-02 22:41:06', '2025-12-17 19:46:35', 'dxObDGD4', '7247643'), - (246, 2613, 'maybe', '2024-05-02 22:41:09', '2025-12-17 19:46:35', 'dxObDGD4', '7247644'), - (246, 2614, 'maybe', '2024-05-02 22:41:11', '2025-12-17 19:46:35', 'dxObDGD4', '7247645'), - (246, 2617, 'maybe', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxObDGD4', '7251633'), - (246, 2619, 'attending', '2024-05-09 17:34:09', '2025-12-17 19:46:35', 'dxObDGD4', '7252965'), - (246, 2624, 'not_attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', 'dxObDGD4', '7263301'), - (246, 2626, 'attending', '2024-05-15 01:50:39', '2025-12-17 19:46:35', 'dxObDGD4', '7264723'), - (246, 2627, 'attending', '2024-05-22 03:44:29', '2025-12-17 19:46:35', 'dxObDGD4', '7264724'), - (246, 2628, 'attending', '2024-05-31 14:30:45', '2025-12-17 19:46:36', 'dxObDGD4', '7264725'), - (246, 2629, 'attending', '2024-06-08 22:02:05', '2025-12-17 19:46:28', 'dxObDGD4', '7264726'), - (246, 2630, 'attending', '2024-05-15 01:50:28', '2025-12-17 19:46:35', 'dxObDGD4', '7264801'), - (246, 2650, 'maybe', '2024-05-28 18:28:27', '2025-12-17 19:46:36', 'dxObDGD4', '7288199'), - (246, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxObDGD4', '7302674'), - (246, 2662, 'attending', '2024-06-02 19:11:57', '2025-12-17 19:46:36', 'dxObDGD4', '7302815'), - (246, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxObDGD4', '7324073'), - (246, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxObDGD4', '7324074'), - (246, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxObDGD4', '7324075'), - (246, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxObDGD4', '7324078'), - (246, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxObDGD4', '7324082'), - (246, 2700, 'maybe', '2024-06-13 23:35:26', '2025-12-17 19:46:28', 'dxObDGD4', '7324388'), - (246, 2706, 'attending', '2024-06-19 18:45:48', '2025-12-17 19:46:28', 'dxObDGD4', '7324947'), - (246, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxObDGD4', '7331457'), - (246, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxObDGD4', '7363643'), - (246, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxObDGD4', '7368606'), - (246, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxObDGD4', '7397462'), - (246, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxObDGD4', '7424275'), - (246, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxObDGD4', '7424276'), - (246, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxObDGD4', '7432751'), - (246, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxObDGD4', '7432752'), - (246, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxObDGD4', '7432753'), - (246, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxObDGD4', '7432754'), - (246, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxObDGD4', '7432755'), - (246, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxObDGD4', '7432756'), - (246, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxObDGD4', '7432758'), - (246, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxObDGD4', '7432759'), - (246, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxObDGD4', '7433834'), - (246, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxObDGD4', '7470197'), - (246, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxObDGD4', '7685613'), - (246, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxObDGD4', '7688194'), - (246, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxObDGD4', '7688196'), - (246, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxObDGD4', '7688289'), - (247, 1176, 'maybe', '2022-02-03 08:02:02', '2025-12-17 19:47:32', 'ydwM1N5A', '4736498'), - (247, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ydwM1N5A', '4736499'), - (247, 1178, 'attending', '2022-01-29 21:23:13', '2025-12-17 19:47:32', 'ydwM1N5A', '4736500'), - (247, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ydwM1N5A', '4736503'), - (247, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ydwM1N5A', '4736504'), - (247, 1202, 'attending', '2022-01-25 08:23:57', '2025-12-17 19:47:32', 'ydwM1N5A', '4769423'), - (247, 1211, 'attending', '2022-01-25 00:27:37', '2025-12-17 19:47:32', 'ydwM1N5A', '4780754'), - (247, 1216, 'attending', '2022-01-25 08:23:39', '2025-12-17 19:47:32', 'ydwM1N5A', '4781137'), - (247, 1217, 'not_attending', '2022-01-29 23:22:42', '2025-12-17 19:47:32', 'ydwM1N5A', '4781139'), - (247, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ydwM1N5A', '5038850'), - (247, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ydwM1N5A', '5045826'), - (247, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ydwM1N5A', '5132533'), - (247, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ydwM1N5A', '5186582'), - (247, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ydwM1N5A', '5186583'), - (247, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ydwM1N5A', '5186585'), - (247, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ydwM1N5A', '5190437'), - (247, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ydwM1N5A', '5215989'), - (247, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwM1N5A', '6045684'), - (248, 1181, 'attending', '2022-03-05 22:10:36', '2025-12-17 19:47:33', 'ArQxe8wm', '4736503'), - (248, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ArQxe8wm', '4736504'), - (248, 1212, 'maybe', '2022-02-21 23:54:22', '2025-12-17 19:47:32', 'ArQxe8wm', '4780759'), - (248, 1215, 'not_attending', '2022-02-26 01:47:54', '2025-12-17 19:47:33', 'ArQxe8wm', '4780763'), - (248, 1246, 'attending', '2022-03-03 13:01:00', '2025-12-17 19:47:33', 'ArQxe8wm', '5064727'), - (248, 1249, 'attending', '2022-03-07 23:06:49', '2025-12-17 19:47:33', 'ArQxe8wm', '5068530'), - (248, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ArQxe8wm', '5132533'), - (248, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ArQxe8wm', '5186582'), - (248, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ArQxe8wm', '5186583'), - (248, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ArQxe8wm', '5186585'), - (248, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ArQxe8wm', '5190437'), - (248, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ArQxe8wm', '5195095'), - (248, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ArQxe8wm', '5215989'), - (248, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ArQxe8wm', '5223686'), - (248, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ArQxe8wm', '5227432'), - (248, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ArQxe8wm', '5247467'), - (248, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ArQxe8wm', '5260800'), - (248, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ArQxe8wm', '5269930'), - (248, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ArQxe8wm', '5271448'), - (248, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'ArQxe8wm', '5271449'), - (248, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ArQxe8wm', '5276469'), - (248, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ArQxe8wm', '5278159'), - (248, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ArQxe8wm', '5363695'), - (248, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQxe8wm', '5365960'), - (248, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQxe8wm', '5368973'), - (248, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ArQxe8wm', '5378247'), - (248, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ArQxe8wm', '5389605'), - (248, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ArQxe8wm', '5397265'), - (248, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ArQxe8wm', '5403967'), - (248, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ArQxe8wm', '5404786'), - (248, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ArQxe8wm', '5405203'), - (248, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'ArQxe8wm', '5408794'), - (248, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ArQxe8wm', '5411699'), - (248, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ArQxe8wm', '5412550'), - (248, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ArQxe8wm', '5415046'), - (248, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ArQxe8wm', '5422086'), - (248, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ArQxe8wm', '5422406'), - (248, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ArQxe8wm', '5424565'), - (248, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQxe8wm', '5426882'), - (248, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ArQxe8wm', '5427083'), - (248, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ArQxe8wm', '5441125'), - (248, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ArQxe8wm', '5441126'), - (248, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ArQxe8wm', '5441128'), - (248, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ArQxe8wm', '5441131'), - (248, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ArQxe8wm', '5441132'), - (248, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQxe8wm', '5446643'), - (248, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQxe8wm', '5453325'), - (248, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQxe8wm', '5454516'), - (248, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQxe8wm', '5454605'), - (248, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQxe8wm', '5455037'), - (248, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQxe8wm', '5461278'), - (248, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQxe8wm', '5469480'), - (248, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQxe8wm', '5471073'), - (248, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ArQxe8wm', '5474663'), - (248, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQxe8wm', '5482022'), - (248, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQxe8wm', '5482793'), - (248, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQxe8wm', '5488912'), - (248, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQxe8wm', '5492192'), - (248, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQxe8wm', '5493139'), - (248, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQxe8wm', '5493200'), - (248, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQxe8wm', '5502188'), - (248, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ArQxe8wm', '5505059'), - (248, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ArQxe8wm', '5509055'), - (248, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ArQxe8wm', '5512862'), - (248, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ArQxe8wm', '5513985'), - (248, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ArQxe8wm', '5519981'), - (248, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ArQxe8wm', '5522550'), - (248, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ArQxe8wm', '5534683'), - (248, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ArQxe8wm', '5546619'), - (248, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ArQxe8wm', '5555245'), - (248, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ArQxe8wm', '5557747'), - (248, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArQxe8wm', '6045684'), - (249, 401, 'attending', '2021-05-11 19:42:16', '2025-12-17 19:47:46', 'xd9BzWZm', '3236456'), - (249, 646, 'not_attending', '2021-05-15 11:18:28', '2025-12-17 19:47:46', 'xd9BzWZm', '3539921'), - (249, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xd9BzWZm', '3539922'), - (249, 648, 'attending', '2021-05-28 22:53:21', '2025-12-17 19:47:47', 'xd9BzWZm', '3539923'), - (249, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xd9BzWZm', '3974109'), - (249, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xd9BzWZm', '3975311'), - (249, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xd9BzWZm', '3975312'), - (249, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xd9BzWZm', '3994992'), - (249, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd9BzWZm', '4014338'), - (249, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xd9BzWZm', '4021848'), - (249, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd9BzWZm', '4136744'), - (249, 870, 'not_attending', '2021-07-03 18:50:30', '2025-12-17 19:47:39', 'xd9BzWZm', '4136937'), - (249, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd9BzWZm', '4136938'), - (249, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd9BzWZm', '4136947'), - (249, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'xd9BzWZm', '4210314'), - (249, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd9BzWZm', '4225444'), - (249, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd9BzWZm', '4239259'), - (249, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'xd9BzWZm', '4240316'), - (249, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'xd9BzWZm', '4240317'), - (249, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'xd9BzWZm', '4240318'), - (249, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'xd9BzWZm', '4240320'), - (249, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd9BzWZm', '4250163'), - (249, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'xd9BzWZm', '4275957'), - (249, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xd9BzWZm', '4277819'), - (249, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xd9BzWZm', '4301723'), - (249, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xd9BzWZm', '4302093'), - (249, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xd9BzWZm', '4304151'), - (249, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'xd9BzWZm', '4345519'), - (249, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xd9BzWZm', '4358025'), - (249, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'xd9BzWZm', '4366186'), - (249, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'xd9BzWZm', '4366187'), - (249, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9BzWZm', '6045684'), - (250, 423, 'attending', '2020-11-06 00:32:36', '2025-12-17 19:47:53', '6AXqYJY4', '3245296'), - (250, 440, 'attending', '2020-11-08 00:19:29', '2025-12-17 19:47:53', '6AXqYJY4', '3256168'), - (250, 441, 'attending', '2020-11-08 21:01:37', '2025-12-17 19:47:54', '6AXqYJY4', '3256169'), - (250, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', '6AXqYJY4', '3266138'), - (250, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '6AXqYJY4', '3281467'), - (250, 462, 'attending', '2020-11-08 05:46:12', '2025-12-17 19:47:53', '6AXqYJY4', '3281470'), - (250, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '6AXqYJY4', '3281829'), - (250, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '6AXqYJY4', '3285413'), - (250, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '6AXqYJY4', '3285414'), - (250, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '6AXqYJY4', '3297764'), - (250, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '6AXqYJY4', '3313856'), - (250, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '6AXqYJY4', '3314909'), - (250, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '6AXqYJY4', '3314964'), - (250, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '6AXqYJY4', '3323365'), - (250, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '6AXqYJY4', '3329383'), - (250, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '6AXqYJY4', '3351539'), - (250, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '6AXqYJY4', '3386848'), - (250, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '6AXqYJY4', '3389527'), - (250, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '6AXqYJY4', '3396499'), - (250, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '6AXqYJY4', '3403650'), - (250, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '6AXqYJY4', '3406988'), - (250, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '6AXqYJY4', '3416576'), - (250, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '6AXqYJY4', '3418925'), - (250, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', '6AXqYJY4', '3426074'), - (250, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', '6AXqYJY4', '3430267'), - (250, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '6AXqYJY4', '3470305'), - (250, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '6AXqYJY4', '3470991'), - (250, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '6AXqYJY4', '3517815'), - (250, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '6AXqYJY4', '3517816'), - (250, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '6AXqYJY4', '3523941'), - (250, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '6AXqYJY4', '3533850'), - (250, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '6AXqYJY4', '3536632'), - (250, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '6AXqYJY4', '3536656'), - (250, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '6AXqYJY4', '3539916'), - (250, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '6AXqYJY4', '3539917'), - (250, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '6AXqYJY4', '3539918'), - (250, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '6AXqYJY4', '3539919'), - (250, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '6AXqYJY4', '3539920'), - (250, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '6AXqYJY4', '3539921'), - (250, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '6AXqYJY4', '3539922'), - (250, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '6AXqYJY4', '3539923'), - (250, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '6AXqYJY4', '3539927'), - (250, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '6AXqYJY4', '3582734'), - (250, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '6AXqYJY4', '3583262'), - (250, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXqYJY4', '3619523'), - (250, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '6AXqYJY4', '3661369'), - (250, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXqYJY4', '3674262'), - (250, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXqYJY4', '3677402'), - (250, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXqYJY4', '3730212'), - (250, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXqYJY4', '3793156'), - (250, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXqYJY4', '3974109'), - (250, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXqYJY4', '3975311'), - (250, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXqYJY4', '3975312'), - (250, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXqYJY4', '3994992'), - (250, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXqYJY4', '4014338'), - (250, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXqYJY4', '4021848'), - (250, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXqYJY4', '4136744'), - (250, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXqYJY4', '4136937'), - (250, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXqYJY4', '4136938'), - (250, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXqYJY4', '4136947'), - (250, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXqYJY4', '4210314'), - (250, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXqYJY4', '4225444'), - (250, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXqYJY4', '4239259'), - (250, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXqYJY4', '4240316'), - (250, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXqYJY4', '4240317'), - (250, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXqYJY4', '4240318'), - (250, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXqYJY4', '4240320'), - (250, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXqYJY4', '4250163'), - (250, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXqYJY4', '4275957'), - (250, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXqYJY4', '4277819'), - (250, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXqYJY4', '4301723'), - (250, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXqYJY4', '4302093'), - (250, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXqYJY4', '4304151'), - (250, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXqYJY4', '4356801'), - (250, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXqYJY4', '4366186'), - (250, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXqYJY4', '4366187'), - (250, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AXqYJY4', '4420735'), - (250, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AXqYJY4', '4420738'), - (250, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AXqYJY4', '4420739'), - (250, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AXqYJY4', '4420741'), - (250, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXqYJY4', '4420744'), - (250, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXqYJY4', '4420747'), - (250, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AXqYJY4', '4420748'), - (250, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXqYJY4', '4420749'), - (250, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXqYJY4', '4461883'), - (250, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXqYJY4', '4508342'), - (250, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXqYJY4', '4568602'), - (250, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AXqYJY4', '4572153'), - (250, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AXqYJY4', '4585962'), - (250, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '6AXqYJY4', '4596356'), - (250, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AXqYJY4', '4598860'), - (250, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AXqYJY4', '4598861'), - (250, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '6AXqYJY4', '4602797'), - (250, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '6AXqYJY4', '4637896'), - (250, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AXqYJY4', '4642994'), - (250, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AXqYJY4', '4642995'), - (250, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AXqYJY4', '4642996'), - (250, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AXqYJY4', '4642997'), - (250, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '6AXqYJY4', '4645687'), - (250, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '6AXqYJY4', '4645698'), - (250, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '6AXqYJY4', '4645704'), - (250, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '6AXqYJY4', '4645705'), - (250, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '6AXqYJY4', '4668385'), - (250, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '6AXqYJY4', '4694407'), - (250, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '6AXqYJY4', '4736497'), - (250, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '6AXqYJY4', '4736499'), - (250, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '6AXqYJY4', '4736500'), - (250, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '6AXqYJY4', '4736503'), - (250, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '6AXqYJY4', '4736504'), - (250, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '6AXqYJY4', '4746789'), - (250, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '6AXqYJY4', '4753929'), - (250, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '6AXqYJY4', '5038850'), - (250, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '6AXqYJY4', '5045826'), - (250, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '6AXqYJY4', '5132533'), - (250, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '6AXqYJY4', '5186582'), - (250, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '6AXqYJY4', '5186583'), - (250, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '6AXqYJY4', '5186585'), - (250, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '6AXqYJY4', '5190437'), - (250, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '6AXqYJY4', '5195095'), - (250, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '6AXqYJY4', '5215989'), - (250, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '6AXqYJY4', '5223686'), - (250, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '6AXqYJY4', '5247467'), - (250, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '6AXqYJY4', '5260800'), - (250, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '6AXqYJY4', '5269930'), - (250, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '6AXqYJY4', '5271448'), - (250, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '6AXqYJY4', '5271449'), - (250, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '6AXqYJY4', '5278159'), - (250, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '6AXqYJY4', '5363695'), - (250, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '6AXqYJY4', '5365960'), - (250, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '6AXqYJY4', '5378247'), - (250, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '6AXqYJY4', '5389605'), - (250, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '6AXqYJY4', '5397265'), - (250, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '6AXqYJY4', '5404786'), - (250, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '6AXqYJY4', '5405203'), - (250, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '6AXqYJY4', '5412550'), - (250, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '6AXqYJY4', '5415046'), - (250, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '6AXqYJY4', '5422086'), - (250, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '6AXqYJY4', '5422406'), - (250, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '6AXqYJY4', '5424565'), - (250, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '6AXqYJY4', '5426882'), - (250, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '6AXqYJY4', '5441125'), - (250, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '6AXqYJY4', '5441126'), - (250, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '6AXqYJY4', '5441128'), - (250, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '6AXqYJY4', '5441131'), - (250, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '6AXqYJY4', '5441132'), - (250, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '6AXqYJY4', '5453325'), - (250, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '6AXqYJY4', '5454516'), - (250, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '6AXqYJY4', '5454605'), - (250, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '6AXqYJY4', '5455037'), - (250, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '6AXqYJY4', '5461278'), - (250, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '6AXqYJY4', '5469480'), - (250, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '6AXqYJY4', '5474663'), - (250, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '6AXqYJY4', '5482022'), - (250, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '6AXqYJY4', '5488912'), - (250, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '6AXqYJY4', '5492192'), - (250, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '6AXqYJY4', '5493139'), - (250, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '6AXqYJY4', '5493200'), - (250, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '6AXqYJY4', '5502188'), - (250, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '6AXqYJY4', '5505059'), - (250, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '6AXqYJY4', '5509055'), - (250, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '6AXqYJY4', '5512862'), - (250, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '6AXqYJY4', '5513985'), - (250, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '6AXqYJY4', '5519981'), - (250, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '6AXqYJY4', '5522550'), - (250, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '6AXqYJY4', '5534683'), - (250, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '6AXqYJY4', '5537735'), - (250, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '6AXqYJY4', '5540859'), - (250, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '6AXqYJY4', '5546619'), - (250, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '6AXqYJY4', '5557747'), - (250, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '6AXqYJY4', '5560255'), - (250, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '6AXqYJY4', '5562906'), - (250, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '6AXqYJY4', '5600604'), - (250, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '6AXqYJY4', '5605544'), - (250, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '6AXqYJY4', '5630960'), - (250, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '6AXqYJY4', '5630961'), - (250, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '6AXqYJY4', '5630962'), - (250, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '6AXqYJY4', '5630966'), - (250, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '6AXqYJY4', '5630967'), - (250, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '6AXqYJY4', '5630968'), - (250, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '6AXqYJY4', '5635406'), - (250, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '6AXqYJY4', '5638765'), - (250, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '6AXqYJY4', '5640097'), - (250, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '6AXqYJY4', '5640843'), - (250, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '6AXqYJY4', '5641521'), - (250, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '6AXqYJY4', '5642818'), - (250, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '6AXqYJY4', '5652395'), - (250, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '6AXqYJY4', '5670445'), - (250, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '6AXqYJY4', '5671637'), - (250, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '6AXqYJY4', '5672329'), - (250, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '6AXqYJY4', '5674057'), - (250, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '6AXqYJY4', '5674060'), - (250, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '6AXqYJY4', '5677461'), - (250, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '6AXqYJY4', '5698046'), - (250, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '6AXqYJY4', '5699760'), - (250, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '6AXqYJY4', '5741601'), - (250, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '6AXqYJY4', '5763458'), - (250, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '6AXqYJY4', '5774172'), - (250, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '6AXqYJY4', '5818247'), - (250, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '6AXqYJY4', '5819471'), - (250, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '6AXqYJY4', '5827739'), - (250, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '6AXqYJY4', '5844306'), - (250, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '6AXqYJY4', '5850159'), - (250, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '6AXqYJY4', '5858999'), - (250, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '6AXqYJY4', '5871984'), - (250, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '6AXqYJY4', '5876354'), - (250, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '6AXqYJY4', '5880939'), - (250, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '6AXqYJY4', '5880940'), - (250, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '6AXqYJY4', '5880942'), - (250, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '6AXqYJY4', '5880943'), - (250, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '6AXqYJY4', '5887890'), - (250, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '6AXqYJY4', '5888598'), - (250, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '6AXqYJY4', '5893260'), - (250, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '6AXqYJY4', '5899826'), - (250, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '6AXqYJY4', '5900199'), - (250, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '6AXqYJY4', '5900200'), - (250, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '6AXqYJY4', '5900202'), - (250, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '6AXqYJY4', '5900203'), - (250, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '6AXqYJY4', '5901108'), - (250, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '6AXqYJY4', '5901126'), - (250, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '6AXqYJY4', '5901606'), - (250, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '6AXqYJY4', '5909655'), - (250, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '6AXqYJY4', '5910522'), - (250, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '6AXqYJY4', '5910526'), - (250, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '6AXqYJY4', '5910528'), - (250, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '6AXqYJY4', '5916219'), - (250, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '6AXqYJY4', '5936234'), - (250, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '6AXqYJY4', '5958351'), - (250, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '6AXqYJY4', '5959751'), - (250, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '6AXqYJY4', '5959755'), - (250, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '6AXqYJY4', '5960055'), - (250, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '6AXqYJY4', '5961684'), - (250, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '6AXqYJY4', '5962132'), - (250, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '6AXqYJY4', '5962133'), - (250, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '6AXqYJY4', '5962134'), - (250, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '6AXqYJY4', '5962317'), - (250, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '6AXqYJY4', '5962318'), - (250, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '6AXqYJY4', '5965933'), - (250, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '6AXqYJY4', '5967014'), - (250, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '6AXqYJY4', '5972815'), - (250, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '6AXqYJY4', '5974016'), - (250, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '6AXqYJY4', '5981515'), - (250, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '6AXqYJY4', '5993516'), - (250, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '6AXqYJY4', '5998939'), - (250, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '6AXqYJY4', '6028191'), - (250, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '6AXqYJY4', '6040066'), - (250, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '6AXqYJY4', '6042717'), - (250, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '6AXqYJY4', '6044838'), - (250, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '6AXqYJY4', '6044839'), - (250, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXqYJY4', '6045684'), - (250, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '6AXqYJY4', '6050104'), - (250, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '6AXqYJY4', '6053195'), - (250, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '6AXqYJY4', '6053198'), - (250, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '6AXqYJY4', '6056085'), - (250, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '6AXqYJY4', '6056916'), - (250, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '6AXqYJY4', '6059290'), - (250, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '6AXqYJY4', '6060328'), - (250, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '6AXqYJY4', '6061037'), - (250, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '6AXqYJY4', '6061039'), - (250, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '6AXqYJY4', '6067245'), - (250, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '6AXqYJY4', '6068094'), - (250, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '6AXqYJY4', '6068252'), - (250, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '6AXqYJY4', '6068253'), - (250, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '6AXqYJY4', '6068254'), - (250, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '6AXqYJY4', '6068280'), - (250, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '6AXqYJY4', '6069093'), - (250, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '6AXqYJY4', '6072528'), - (250, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '6AXqYJY4', '6079840'), - (250, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '6AXqYJY4', '6083398'), - (250, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '6AXqYJY4', '6093504'), - (250, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '6AXqYJY4', '6097414'), - (250, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '6AXqYJY4', '6097442'), - (250, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '6AXqYJY4', '6097684'), - (250, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '6AXqYJY4', '6098762'), - (250, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '6AXqYJY4', '6101361'), - (250, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '6AXqYJY4', '6101362'), - (250, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '6AXqYJY4', '6107314'), - (250, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '6AXqYJY4', '6120034'), - (250, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '6AXqYJY4', '6136733'), - (250, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '6AXqYJY4', '6137989'), - (250, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '6AXqYJY4', '6150864'), - (250, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '6AXqYJY4', '6155491'), - (250, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '6AXqYJY4', '6164417'), - (250, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '6AXqYJY4', '6166388'), - (250, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '6AXqYJY4', '6176439'), - (250, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '6AXqYJY4', '6182410'), - (250, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '6AXqYJY4', '6185812'), - (250, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '6AXqYJY4', '6187651'), - (250, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '6AXqYJY4', '6187963'), - (250, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '6AXqYJY4', '6187964'), - (250, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '6AXqYJY4', '6187966'), - (250, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '6AXqYJY4', '6187967'), - (250, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '6AXqYJY4', '6187969'), - (250, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '6AXqYJY4', '6334878'), - (250, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '6AXqYJY4', '6337236'), - (250, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '6AXqYJY4', '6337970'), - (250, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '6AXqYJY4', '6338308'), - (250, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '6AXqYJY4', '6341710'), - (250, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '6AXqYJY4', '6342044'), - (250, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '6AXqYJY4', '6342298'), - (250, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '6AXqYJY4', '6343294'), - (250, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '6AXqYJY4', '6347034'), - (250, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '6AXqYJY4', '6347056'), - (250, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '6AXqYJY4', '6353830'), - (250, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '6AXqYJY4', '6353831'), - (250, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '6AXqYJY4', '6357867'), - (250, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '6AXqYJY4', '6358652'), - (250, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '6AXqYJY4', '6361709'), - (250, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '6AXqYJY4', '6361710'), - (250, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '6AXqYJY4', '6361711'), - (250, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '6AXqYJY4', '6361712'), - (250, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '6AXqYJY4', '6361713'), - (250, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '6AXqYJY4', '6382573'), - (250, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '6AXqYJY4', '6388604'), - (250, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '6AXqYJY4', '6394629'), - (250, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '6AXqYJY4', '6394631'), - (250, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '6AXqYJY4', '6440863'), - (250, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '6AXqYJY4', '6445440'), - (250, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '6AXqYJY4', '6453951'), - (250, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '6AXqYJY4', '6461696'), - (250, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '6AXqYJY4', '6462129'), - (250, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '6AXqYJY4', '6463218'), - (250, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '6AXqYJY4', '6472181'), - (250, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '6AXqYJY4', '6482693'), - (250, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '6AXqYJY4', '6484200'), - (250, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '6AXqYJY4', '6484680'), - (250, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '6AXqYJY4', '6507741'), - (250, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '6AXqYJY4', '6514659'), - (250, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '6AXqYJY4', '6514660'), - (250, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '6AXqYJY4', '6519103'), - (250, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '6AXqYJY4', '6535681'), - (250, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '6AXqYJY4', '6584747'), - (250, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '6AXqYJY4', '6587097'), - (250, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '6AXqYJY4', '6609022'), - (250, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '6AXqYJY4', '6632757'), - (250, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '6AXqYJY4', '6644187'), - (250, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '6AXqYJY4', '6648951'), - (250, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '6AXqYJY4', '6648952'), - (250, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '6AXqYJY4', '6655401'), - (250, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '6AXqYJY4', '6661585'), - (250, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '6AXqYJY4', '6661588'), - (250, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '6AXqYJY4', '6661589'), - (250, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '6AXqYJY4', '6699906'), - (250, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '6AXqYJY4', '6699913'), - (250, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '6AXqYJY4', '6701109'), - (250, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '6AXqYJY4', '6705219'), - (250, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '6AXqYJY4', '6710153'), - (250, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '6AXqYJY4', '6711552'), - (250, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '6AXqYJY4', '6711553'), - (250, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '6AXqYJY4', '6722688'), - (250, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '6AXqYJY4', '6730620'), - (250, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '6AXqYJY4', '6740364'), - (250, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '6AXqYJY4', '6743829'), - (250, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '6AXqYJY4', '7030380'), - (250, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '6AXqYJY4', '7033677'), - (250, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '6AXqYJY4', '7044715'), - (250, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '6AXqYJY4', '7050318'), - (250, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '6AXqYJY4', '7050319'), - (250, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '6AXqYJY4', '7050322'), - (250, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '6AXqYJY4', '7057804'), - (250, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '6AXqYJY4', '7072824'), - (250, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '6AXqYJY4', '7074348'), - (250, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '6AXqYJY4', '7074364'), - (250, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '6AXqYJY4', '7089267'), - (250, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '6AXqYJY4', '7098747'), - (250, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '6AXqYJY4', '7113468'), - (250, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '6AXqYJY4', '7114856'), - (250, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '6AXqYJY4', '7114951'), - (250, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '6AXqYJY4', '7114955'), - (250, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '6AXqYJY4', '7114956'), - (250, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '6AXqYJY4', '7114957'), - (250, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '6AXqYJY4', '7159484'), - (250, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '6AXqYJY4', '7178446'), - (250, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '6AXqYJY4', '7220467'), - (250, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '6AXqYJY4', '7240354'), - (250, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '6AXqYJY4', '7251633'), - (250, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '6AXqYJY4', '7324073'), - (250, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '6AXqYJY4', '7324074'), - (250, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '6AXqYJY4', '7324075'), - (250, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '6AXqYJY4', '7324078'), - (250, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '6AXqYJY4', '7324082'), - (250, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '6AXqYJY4', '7331457'), - (250, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '6AXqYJY4', '7363643'), - (250, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '6AXqYJY4', '7368606'), - (250, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '6AXqYJY4', '7397462'), - (250, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '6AXqYJY4', '7424275'), - (250, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '6AXqYJY4', '7432751'), - (250, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '6AXqYJY4', '7432752'), - (250, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '6AXqYJY4', '7432753'), - (250, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '6AXqYJY4', '7432754'), - (250, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '6AXqYJY4', '7432755'), - (250, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '6AXqYJY4', '7432756'), - (250, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '6AXqYJY4', '7432758'), - (250, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '6AXqYJY4', '7432759'), - (250, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '6AXqYJY4', '7433834'), - (250, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '6AXqYJY4', '7470197'), - (250, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '6AXqYJY4', '7685613'), - (250, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '6AXqYJY4', '7688194'), - (250, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '6AXqYJY4', '7688196'), - (250, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '6AXqYJY4', '7688289'), - (250, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '6AXqYJY4', '7692763'), - (250, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '6AXqYJY4', '7697552'), - (250, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '6AXqYJY4', '7699878'), - (250, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '6AXqYJY4', '7704043'), - (250, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '6AXqYJY4', '7712467'), - (250, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '6AXqYJY4', '7713585'), - (250, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '6AXqYJY4', '7713586'), - (250, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '6AXqYJY4', '7738518'), - (250, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '6AXqYJY4', '7750636'), - (250, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '6AXqYJY4', '7796540'), - (250, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '6AXqYJY4', '7796541'), - (250, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '6AXqYJY4', '7796542'), - (250, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '6AXqYJY4', '7825913'), - (250, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '6AXqYJY4', '7826209'), - (250, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '6AXqYJY4', '7834742'), - (250, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '6AXqYJY4', '7842108'), - (250, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '6AXqYJY4', '7842902'), - (250, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '6AXqYJY4', '7842903'), - (250, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '6AXqYJY4', '7842904'), - (250, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '6AXqYJY4', '7842905'), - (250, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '6AXqYJY4', '7855719'), - (250, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '6AXqYJY4', '7860683'), - (250, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '6AXqYJY4', '7860684'), - (250, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '6AXqYJY4', '7866095'), - (250, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '6AXqYJY4', '7869170'), - (250, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '6AXqYJY4', '7869188'), - (250, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '6AXqYJY4', '7869201'), - (250, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '6AXqYJY4', '7877465'), - (250, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '6AXqYJY4', '7888250'), - (250, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '6AXqYJY4', '7904777'), - (250, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '6AXqYJY4', '8349164'), - (250, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '6AXqYJY4', '8349545'), - (250, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '6AXqYJY4', '8368028'), - (250, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '6AXqYJY4', '8368029'), - (250, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '6AXqYJY4', '8388462'), - (250, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '6AXqYJY4', '8400273'), - (250, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '6AXqYJY4', '8400275'), - (250, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '6AXqYJY4', '8400276'), - (250, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '6AXqYJY4', '8404977'), - (250, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '6AXqYJY4', '8430783'), - (250, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '6AXqYJY4', '8430784'), - (250, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '6AXqYJY4', '8430799'), - (250, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '6AXqYJY4', '8430800'), - (250, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '6AXqYJY4', '8430801'), - (250, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '6AXqYJY4', '8438709'), - (250, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '6AXqYJY4', '8457738'), - (250, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '6AXqYJY4', '8459566'), - (250, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '6AXqYJY4', '8459567'), - (250, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '6AXqYJY4', '8461032'), - (250, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '6AXqYJY4', '8477877'), - (250, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '6AXqYJY4', '8485688'), - (250, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '6AXqYJY4', '8490587'), - (250, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '6AXqYJY4', '8493552'), - (250, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '6AXqYJY4', '8493553'), - (250, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '6AXqYJY4', '8493554'), - (250, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '6AXqYJY4', '8493555'), - (250, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '6AXqYJY4', '8493556'), - (250, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '6AXqYJY4', '8493557'), - (250, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '6AXqYJY4', '8493558'), - (250, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '6AXqYJY4', '8493559'), - (250, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '6AXqYJY4', '8493560'), - (250, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '6AXqYJY4', '8493561'), - (250, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '6AXqYJY4', '8493572'), - (250, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '6AXqYJY4', '8540725'), - (250, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '6AXqYJY4', '8555421'), - (251, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3ROYLe4', '6045684'), - (252, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40J3LKm', '6045684'), - (253, 260, 'attending', '2021-06-13 18:48:03', '2025-12-17 19:47:47', 'ndaVPZKm', '3149491'), - (253, 743, 'attending', '2021-06-20 04:23:26', '2025-12-17 19:47:38', 'ndaVPZKm', '3680623'), - (253, 823, 'attending', '2021-06-16 03:47:48', '2025-12-17 19:47:48', 'ndaVPZKm', '3974109'), - (253, 844, 'not_attending', '2021-06-14 18:34:52', '2025-12-17 19:47:38', 'ndaVPZKm', '4014338'), - (253, 867, 'attending', '2021-06-20 03:44:54', '2025-12-17 19:47:38', 'ndaVPZKm', '4021848'), - (253, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ndaVPZKm', '4136744'), - (253, 870, 'not_attending', '2021-07-01 14:25:39', '2025-12-17 19:47:39', 'ndaVPZKm', '4136937'), - (253, 871, 'attending', '2021-07-05 14:19:01', '2025-12-17 19:47:39', 'ndaVPZKm', '4136938'), - (253, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndaVPZKm', '4136947'), - (253, 874, 'attending', '2021-06-19 18:08:40', '2025-12-17 19:47:38', 'ndaVPZKm', '4139815'), - (253, 875, 'attending', '2021-06-27 02:42:24', '2025-12-17 19:47:38', 'ndaVPZKm', '4139816'), - (253, 879, 'attending', '2021-06-28 22:17:00', '2025-12-17 19:47:38', 'ndaVPZKm', '4147806'), - (253, 880, 'attending', '2021-06-18 13:43:11', '2025-12-17 19:47:48', 'ndaVPZKm', '4205383'), - (253, 883, 'not_attending', '2021-06-22 11:47:11', '2025-12-17 19:47:38', 'ndaVPZKm', '4209121'), - (253, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndaVPZKm', '4210314'), - (253, 885, 'not_attending', '2021-06-27 20:17:41', '2025-12-17 19:47:38', 'ndaVPZKm', '4222370'), - (253, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndaVPZKm', '4225444'), - (253, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndaVPZKm', '4239259'), - (253, 900, 'not_attending', '2021-07-24 16:58:22', '2025-12-17 19:47:40', 'ndaVPZKm', '4240316'), - (253, 901, 'attending', '2021-07-30 02:24:09', '2025-12-17 19:47:40', 'ndaVPZKm', '4240317'), - (253, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndaVPZKm', '4240318'), - (253, 903, 'attending', '2021-08-10 20:10:41', '2025-12-17 19:47:42', 'ndaVPZKm', '4240320'), - (253, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndaVPZKm', '4250163'), - (253, 909, 'attending', '2021-07-10 19:50:27', '2025-12-17 19:47:39', 'ndaVPZKm', '4258187'), - (253, 910, 'not_attending', '2021-07-17 21:05:13', '2025-12-17 19:47:39', 'ndaVPZKm', '4258189'), - (253, 916, 'not_attending', '2021-07-22 03:58:54', '2025-12-17 19:47:40', 'ndaVPZKm', '4273772'), - (253, 917, 'attending', '2021-07-12 12:38:24', '2025-12-17 19:47:39', 'ndaVPZKm', '4274481'), - (253, 918, 'attending', '2021-07-12 22:47:38', '2025-12-17 19:47:39', 'ndaVPZKm', '4274486'), - (253, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndaVPZKm', '4275957'), - (253, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndaVPZKm', '4277819'), - (253, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndaVPZKm', '4301723'), - (253, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ndaVPZKm', '4302093'), - (253, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndaVPZKm', '4304151'), - (253, 946, 'attending', '2021-08-01 02:36:53', '2025-12-17 19:47:40', 'ndaVPZKm', '4314835'), - (253, 955, 'attending', '2021-08-03 03:10:39', '2025-12-17 19:47:41', 'ndaVPZKm', '4331588'), - (253, 960, 'attending', '2021-08-11 18:26:01', '2025-12-17 19:47:41', 'ndaVPZKm', '4344519'), - (253, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndaVPZKm', '4345519'), - (253, 970, 'not_attending', '2021-08-13 22:52:56', '2025-12-17 19:47:42', 'ndaVPZKm', '4356798'), - (253, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndaVPZKm', '4356801'), - (253, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndaVPZKm', '4358025'), - (253, 973, 'attending', '2021-08-17 12:41:24', '2025-12-17 19:47:42', 'ndaVPZKm', '4366186'), - (253, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndaVPZKm', '4366187'), - (253, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndaVPZKm', '4402823'), - (253, 990, 'maybe', '2021-08-30 14:12:57', '2025-12-17 19:47:43', 'ndaVPZKm', '4420735'), - (253, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ndaVPZKm', '4420738'), - (253, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndaVPZKm', '4420739'), - (253, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndaVPZKm', '4420741'), - (253, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndaVPZKm', '4420744'), - (253, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndaVPZKm', '4420747'), - (253, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndaVPZKm', '4420748'), - (253, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndaVPZKm', '4420749'), - (253, 1020, 'not_attending', '2021-09-13 19:11:25', '2025-12-17 19:47:43', 'ndaVPZKm', '4451787'), - (253, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndaVPZKm', '4461883'), - (253, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndaVPZKm', '4508342'), - (253, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndaVPZKm', '4568602'), - (253, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ndaVPZKm', '4668385'), - (253, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndaVPZKm', '4694407'), - (253, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ndaVPZKm', '4736497'), - (253, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndaVPZKm', '4736500'), - (253, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndaVPZKm', '4746789'), - (253, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ndaVPZKm', '4753929'), - (253, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndaVPZKm', '5038850'), - (253, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaVPZKm', '6045684'), - (254, 871, 'not_attending', '2021-07-05 05:53:31', '2025-12-17 19:47:39', 'x4oRKGoA', '4136938'), - (254, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'x4oRKGoA', '4136947'), - (254, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oRKGoA', '4210314'), - (254, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oRKGoA', '4225444'), - (254, 892, 'maybe', '2021-07-05 01:20:48', '2025-12-17 19:47:39', 'x4oRKGoA', '4229418'), - (254, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'x4oRKGoA', '4229420'), - (254, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'x4oRKGoA', '4229423'), - (254, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'x4oRKGoA', '4240316'), - (254, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oRKGoA', '4240317'), - (254, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'x4oRKGoA', '4240318'), - (254, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'x4oRKGoA', '4240320'), - (254, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oRKGoA', '4275957'), - (254, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oRKGoA', '4277819'), - (254, 923, 'not_attending', '2021-07-20 02:30:47', '2025-12-17 19:47:40', 'x4oRKGoA', '4292773'), - (254, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oRKGoA', '4301723'), - (254, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'x4oRKGoA', '4302093'), - (254, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oRKGoA', '4304151'), - (254, 940, 'not_attending', '2021-07-30 16:29:29', '2025-12-17 19:47:40', 'x4oRKGoA', '4309049'), - (254, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'x4oRKGoA', '4315713'), - (254, 948, 'not_attending', '2021-08-11 05:28:23', '2025-12-17 19:47:41', 'x4oRKGoA', '4315714'), - (254, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'x4oRKGoA', '4315726'), - (254, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'x4oRKGoA', '4356801'), - (254, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'x4oRKGoA', '4366186'), - (254, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'x4oRKGoA', '4366187'), - (254, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'x4oRKGoA', '4420735'), - (254, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'x4oRKGoA', '4420738'), - (254, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'x4oRKGoA', '4420739'), - (254, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'x4oRKGoA', '4420741'), - (254, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'x4oRKGoA', '4420744'), - (254, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'x4oRKGoA', '4420747'), - (254, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'x4oRKGoA', '4420748'), - (254, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'x4oRKGoA', '4420749'), - (254, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oRKGoA', '6045684'), - (255, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlO6PYV4', '6045684'), - (256, 3233, 'attending', '2025-08-15 20:15:27', '2025-12-17 19:46:18', 'AnJZbzJA', '8485688'), - (256, 3234, 'attending', '2025-08-15 02:56:47', '2025-12-17 19:46:17', 'AnJZbzJA', '8488773'), - (256, 3235, 'not_attending', '2025-08-19 15:28:45', '2025-12-17 19:46:18', 'AnJZbzJA', '8490587'), - (256, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnJZbzJA', '8493552'), - (256, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnJZbzJA', '8493553'), - (256, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnJZbzJA', '8493554'), - (256, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnJZbzJA', '8493555'), - (256, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnJZbzJA', '8493556'), - (256, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnJZbzJA', '8493557'), - (256, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnJZbzJA', '8493558'), - (256, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnJZbzJA', '8493559'), - (256, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnJZbzJA', '8493560'), - (256, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'AnJZbzJA', '8493561'), - (256, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnJZbzJA', '8493572'), - (256, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'AnJZbzJA', '8540725'), - (256, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnJZbzJA', '8555421'), - (257, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'oAgMxVyd', '6045684'), - (258, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLgQ1yd', '5424565'), - (258, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLgQ1yd', '5426882'), - (258, 1505, 'not_attending', '2022-07-06 01:20:19', '2025-12-17 19:47:19', 'NmLgQ1yd', '5427083'), - (258, 1512, 'maybe', '2022-07-12 17:02:29', '2025-12-17 19:47:19', 'NmLgQ1yd', '5441112'), - (258, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLgQ1yd', '5441125'), - (258, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmLgQ1yd', '5441126'), - (258, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmLgQ1yd', '5441128'), - (258, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLgQ1yd', '5446643'), - (258, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'NmLgQ1yd', '5449068'), - (258, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLgQ1yd', '5453325'), - (258, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLgQ1yd', '5454516'), - (258, 1544, 'attending', '2022-09-17 02:45:18', '2025-12-17 19:47:11', 'NmLgQ1yd', '5454517'), - (258, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLgQ1yd', '5454605'), - (258, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLgQ1yd', '5455037'), - (258, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLgQ1yd', '5461278'), - (258, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLgQ1yd', '5469480'), - (258, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLgQ1yd', '5471073'), - (258, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'NmLgQ1yd', '5474663'), - (258, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLgQ1yd', '5482022'), - (258, 1574, 'attending', '2022-08-08 16:13:57', '2025-12-17 19:47:22', 'NmLgQ1yd', '5482153'), - (258, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLgQ1yd', '5482793'), - (258, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLgQ1yd', '5488912'), - (258, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLgQ1yd', '5492192'), - (258, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLgQ1yd', '5493139'), - (258, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLgQ1yd', '5493200'), - (258, 1598, 'attending', '2022-08-11 16:28:12', '2025-12-17 19:47:22', 'NmLgQ1yd', '5496567'), - (258, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLgQ1yd', '5502188'), - (258, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLgQ1yd', '5512862'), - (258, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLgQ1yd', '5513985'), - (258, 1630, 'attending', '2022-09-13 17:58:54', '2025-12-17 19:47:10', 'NmLgQ1yd', '5534683'), - (258, 1635, 'attending', '2022-09-16 11:01:12', '2025-12-17 19:47:10', 'NmLgQ1yd', '5537735'), - (258, 1640, 'not_attending', '2022-09-15 22:05:31', '2025-12-17 19:47:10', 'NmLgQ1yd', '5540859'), - (258, 1643, 'maybe', '2022-09-22 15:56:14', '2025-12-17 19:47:11', 'NmLgQ1yd', '5545856'), - (258, 1644, 'attending', '2022-09-19 22:53:28', '2025-12-17 19:47:11', 'NmLgQ1yd', '5545857'), - (258, 1647, 'maybe', '2022-09-18 09:37:24', '2025-12-17 19:47:11', 'NmLgQ1yd', '5548660'), - (258, 1662, 'attending', '2022-09-20 06:31:33', '2025-12-17 19:47:11', 'NmLgQ1yd', '5560255'), - (258, 1666, 'attending', '2022-09-22 15:56:26', '2025-12-17 19:47:11', 'NmLgQ1yd', '5563208'), - (258, 1677, 'attending', '2022-09-22 15:56:04', '2025-12-17 19:47:11', 'NmLgQ1yd', '5600604'), - (258, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLgQ1yd', '5605544'), - (258, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'NmLgQ1yd', '5606737'), - (258, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLgQ1yd', '5630960'), - (258, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLgQ1yd', '5630961'), - (258, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLgQ1yd', '5630962'), - (258, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLgQ1yd', '5630966'), - (258, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLgQ1yd', '5630967'), - (258, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLgQ1yd', '5630968'), - (258, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLgQ1yd', '5635406'), - (258, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLgQ1yd', '5638765'), - (258, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLgQ1yd', '5640097'), - (258, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLgQ1yd', '5640843'), - (258, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLgQ1yd', '5641521'), - (258, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLgQ1yd', '5642818'), - (258, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLgQ1yd', '5652395'), - (258, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLgQ1yd', '5670445'), - (258, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLgQ1yd', '5671637'), - (258, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLgQ1yd', '5672329'), - (258, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLgQ1yd', '5674057'), - (258, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLgQ1yd', '5674060'), - (258, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLgQ1yd', '5677461'), - (258, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLgQ1yd', '5698046'), - (258, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLgQ1yd', '5699760'), - (258, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLgQ1yd', '5741601'), - (258, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLgQ1yd', '5763458'), - (258, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLgQ1yd', '5774172'), - (258, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'NmLgQ1yd', '5818247'), - (258, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLgQ1yd', '5819471'), - (258, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLgQ1yd', '5827739'), - (258, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLgQ1yd', '5844306'), - (258, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLgQ1yd', '5850159'), - (258, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLgQ1yd', '5858999'), - (258, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLgQ1yd', '5871984'), - (258, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLgQ1yd', '5876354'), - (258, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'NmLgQ1yd', '5880939'), - (258, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLgQ1yd', '5880940'), - (258, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLgQ1yd', '5880942'), - (258, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'NmLgQ1yd', '5880943'), - (258, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLgQ1yd', '5887890'), - (258, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLgQ1yd', '5888598'), - (258, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLgQ1yd', '5893260'), - (258, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLgQ1yd', '5899826'), - (258, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLgQ1yd', '5900199'), - (258, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLgQ1yd', '5900200'), - (258, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'NmLgQ1yd', '5900202'), - (258, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLgQ1yd', '5900203'), - (258, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLgQ1yd', '5901108'), - (258, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLgQ1yd', '5901126'), - (258, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLgQ1yd', '5909655'), - (258, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLgQ1yd', '5910522'), - (258, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLgQ1yd', '5910526'), - (258, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLgQ1yd', '5910528'), - (258, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLgQ1yd', '5916219'), - (258, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'NmLgQ1yd', '5936234'), - (258, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLgQ1yd', '5958351'), - (258, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'NmLgQ1yd', '5959751'), - (258, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'NmLgQ1yd', '5959755'), - (258, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'NmLgQ1yd', '5960055'), - (258, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLgQ1yd', '5961684'), - (258, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'NmLgQ1yd', '5962132'), - (258, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'NmLgQ1yd', '5962133'), - (258, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLgQ1yd', '5962134'), - (258, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLgQ1yd', '5962317'), - (258, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLgQ1yd', '5962318'), - (258, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'NmLgQ1yd', '5965933'), - (258, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLgQ1yd', '5967014'), - (258, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLgQ1yd', '5972815'), - (258, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'NmLgQ1yd', '5974016'), - (258, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLgQ1yd', '5981515'), - (258, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'NmLgQ1yd', '5993516'), - (258, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'NmLgQ1yd', '5998939'), - (258, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLgQ1yd', '6028191'), - (258, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'NmLgQ1yd', '6040066'), - (258, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'NmLgQ1yd', '6042717'), - (258, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLgQ1yd', '6044838'), - (258, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLgQ1yd', '6044839'), - (258, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'NmLgQ1yd', '6045684'), - (258, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLgQ1yd', '6050104'), - (258, 1999, 'maybe', '2023-04-15 21:44:58', '2025-12-17 19:47:00', 'NmLgQ1yd', '6052057'), - (258, 2002, 'attending', '2023-04-25 05:16:56', '2025-12-17 19:47:01', 'NmLgQ1yd', '6052605'), - (258, 2003, 'maybe', '2023-05-15 01:14:43', '2025-12-17 19:47:03', 'NmLgQ1yd', '6052606'), - (258, 2004, 'maybe', '2023-05-16 06:05:45', '2025-12-17 19:47:04', 'NmLgQ1yd', '6052607'), - (258, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLgQ1yd', '6053195'), - (258, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'NmLgQ1yd', '6053198'), - (258, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'NmLgQ1yd', '6056085'), - (258, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLgQ1yd', '6056916'), - (258, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLgQ1yd', '6059290'), - (258, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLgQ1yd', '6060328'), - (258, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLgQ1yd', '6061037'), - (258, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLgQ1yd', '6061039'), - (258, 2019, 'attending', '2023-04-15 21:44:26', '2025-12-17 19:47:00', 'NmLgQ1yd', '6062934'), - (258, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLgQ1yd', '6067245'), - (258, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLgQ1yd', '6068094'), - (258, 2028, 'maybe', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'NmLgQ1yd', '6068252'), - (258, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'NmLgQ1yd', '6068253'), - (258, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'NmLgQ1yd', '6068254'), - (258, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'NmLgQ1yd', '6068280'), - (258, 2032, 'maybe', '2023-05-16 06:05:29', '2025-12-17 19:47:04', 'NmLgQ1yd', '6068281'), - (258, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLgQ1yd', '6069093'), - (258, 2035, 'maybe', '2023-05-04 04:02:37', '2025-12-17 19:47:02', 'NmLgQ1yd', '6070142'), - (258, 2039, 'not_attending', '2023-04-25 05:21:47', '2025-12-17 19:47:01', 'NmLgQ1yd', '6072398'), - (258, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'NmLgQ1yd', '6072528'), - (258, 2042, 'maybe', '2023-04-27 06:35:53', '2025-12-17 19:47:01', 'NmLgQ1yd', '6072941'), - (258, 2043, 'maybe', '2023-04-25 05:18:35', '2025-12-17 19:47:01', 'NmLgQ1yd', '6073023'), - (258, 2049, 'maybe', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'NmLgQ1yd', '6079840'), - (258, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLgQ1yd', '6083398'), - (258, 2052, 'attending', '2023-05-06 02:22:23', '2025-12-17 19:47:02', 'NmLgQ1yd', '6088220'), - (258, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'NmLgQ1yd', '6093504'), - (258, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'NmLgQ1yd', '6097414'), - (258, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLgQ1yd', '6097442'), - (258, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLgQ1yd', '6097684'), - (258, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLgQ1yd', '6098762'), - (258, 2065, 'maybe', '2023-06-15 17:50:22', '2025-12-17 19:46:49', 'NmLgQ1yd', '6101169'), - (258, 2066, 'maybe', '2023-05-16 06:05:34', '2025-12-17 19:47:04', 'NmLgQ1yd', '6101361'), - (258, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLgQ1yd', '6101362'), - (258, 2070, 'maybe', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'NmLgQ1yd', '6103752'), - (258, 2074, 'attending', '2023-05-24 03:24:07', '2025-12-17 19:47:03', 'NmLgQ1yd', '6107312'), - (258, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLgQ1yd', '6107314'), - (258, 2080, 'not_attending', '2023-05-29 19:53:27', '2025-12-17 19:47:04', 'NmLgQ1yd', '6114677'), - (258, 2087, 'maybe', '2023-05-29 02:09:39', '2025-12-17 19:47:04', 'NmLgQ1yd', '6120034'), - (258, 2089, 'attending', '2023-06-06 05:32:07', '2025-12-17 19:47:04', 'NmLgQ1yd', '6125227'), - (258, 2090, 'attending', '2023-06-02 20:45:42', '2025-12-17 19:47:04', 'NmLgQ1yd', '6127961'), - (258, 2091, 'maybe', '2023-06-04 04:39:27', '2025-12-17 19:47:04', 'NmLgQ1yd', '6130657'), - (258, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'NmLgQ1yd', '6136733'), - (258, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'NmLgQ1yd', '6137989'), - (258, 2099, 'attending', '2023-06-15 21:59:23', '2025-12-17 19:46:49', 'NmLgQ1yd', '6143012'), - (258, 2101, 'not_attending', '2023-06-17 02:28:01', '2025-12-17 19:46:49', 'NmLgQ1yd', '6144741'), - (258, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'NmLgQ1yd', '6150864'), - (258, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'NmLgQ1yd', '6155491'), - (258, 2115, 'not_attending', '2023-06-29 04:42:32', '2025-12-17 19:46:50', 'NmLgQ1yd', '6161437'), - (258, 2116, 'maybe', '2023-07-01 20:25:34', '2025-12-17 19:46:51', 'NmLgQ1yd', '6163389'), - (258, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'NmLgQ1yd', '6164417'), - (258, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'NmLgQ1yd', '6166388'), - (258, 2121, 'maybe', '2023-06-28 12:48:59', '2025-12-17 19:46:50', 'NmLgQ1yd', '6176439'), - (258, 2124, 'maybe', '2023-06-29 22:19:37', '2025-12-17 19:46:51', 'NmLgQ1yd', '6176988'), - (258, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'NmLgQ1yd', '6182410'), - (258, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'NmLgQ1yd', '6185812'), - (258, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'NmLgQ1yd', '6187651'), - (258, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'NmLgQ1yd', '6187963'), - (258, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'NmLgQ1yd', '6187964'), - (258, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'NmLgQ1yd', '6187966'), - (258, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'NmLgQ1yd', '6187967'), - (258, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'NmLgQ1yd', '6187969'), - (258, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'NmLgQ1yd', '6334878'), - (258, 2146, 'maybe', '2023-07-17 06:07:51', '2025-12-17 19:46:53', 'NmLgQ1yd', '6335638'), - (258, 2152, 'attending', '2023-07-14 22:56:01', '2025-12-17 19:46:52', 'NmLgQ1yd', '6337021'), - (258, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'NmLgQ1yd', '6337236'), - (258, 2155, 'attending', '2023-07-17 06:07:27', '2025-12-17 19:46:53', 'NmLgQ1yd', '6337970'), - (258, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'NmLgQ1yd', '6338308'), - (258, 2158, 'maybe', '2023-07-20 22:10:32', '2025-12-17 19:46:53', 'NmLgQ1yd', '6338353'), - (258, 2159, 'attending', '2023-07-17 06:08:07', '2025-12-17 19:46:53', 'NmLgQ1yd', '6338355'), - (258, 2160, 'maybe', '2023-07-20 22:11:10', '2025-12-17 19:46:54', 'NmLgQ1yd', '6338358'), - (258, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'NmLgQ1yd', '6340845'), - (258, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'NmLgQ1yd', '6341710'), - (258, 2164, 'maybe', '2023-07-27 04:28:17', '2025-12-17 19:46:54', 'NmLgQ1yd', '6341797'), - (258, 2165, 'attending', '2023-08-01 14:27:03', '2025-12-17 19:46:54', 'NmLgQ1yd', '6342044'), - (258, 2166, 'not_attending', '2023-07-20 22:10:57', '2025-12-17 19:46:54', 'NmLgQ1yd', '6342115'), - (258, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'NmLgQ1yd', '6342298'), - (258, 2171, 'maybe', '2023-07-27 04:31:23', '2025-12-17 19:46:54', 'NmLgQ1yd', '6342328'), - (258, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'NmLgQ1yd', '6343294'), - (258, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'NmLgQ1yd', '6347034'), - (258, 2177, 'not_attending', '2023-08-01 14:27:30', '2025-12-17 19:46:55', 'NmLgQ1yd', '6347053'), - (258, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'NmLgQ1yd', '6347056'), - (258, 2180, 'attending', '2023-07-25 16:25:36', '2025-12-17 19:46:54', 'NmLgQ1yd', '6348788'), - (258, 2185, 'maybe', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'NmLgQ1yd', '6353830'), - (258, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'NmLgQ1yd', '6353831'), - (258, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'NmLgQ1yd', '6357867'), - (258, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'NmLgQ1yd', '6358652'), - (258, 2195, 'attending', '2023-08-21 15:54:16', '2025-12-17 19:46:55', 'NmLgQ1yd', '6359397'), - (258, 2196, 'attending', '2023-09-08 02:13:01', '2025-12-17 19:46:56', 'NmLgQ1yd', '6359398'), - (258, 2197, 'attending', '2023-09-10 05:03:52', '2025-12-17 19:46:44', 'NmLgQ1yd', '6359399'), - (258, 2198, 'maybe', '2023-09-17 21:28:14', '2025-12-17 19:46:45', 'NmLgQ1yd', '6359400'), - (258, 2200, 'maybe', '2023-08-09 06:46:17', '2025-12-17 19:46:55', 'NmLgQ1yd', '6359850'), - (258, 2204, 'maybe', '2023-08-19 02:19:07', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361542'), - (258, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361709'), - (258, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361710'), - (258, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361711'), - (258, 2211, 'attending', '2023-08-18 05:42:34', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361712'), - (258, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'NmLgQ1yd', '6361713'), - (258, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'NmLgQ1yd', '6382573'), - (258, 2236, 'maybe', '2023-08-30 20:00:24', '2025-12-17 19:46:55', 'NmLgQ1yd', '6382618'), - (258, 2239, 'attending', '2023-08-31 20:12:57', '2025-12-17 19:46:56', 'NmLgQ1yd', '6387592'), - (258, 2241, 'attending', '2023-09-10 05:04:11', '2025-12-17 19:46:44', 'NmLgQ1yd', '6388604'), - (258, 2243, 'attending', '2023-09-07 05:14:45', '2025-12-17 19:46:56', 'NmLgQ1yd', '6393686'), - (258, 2248, 'not_attending', '2023-09-10 05:04:53', '2025-12-17 19:46:44', 'NmLgQ1yd', '6394629'), - (258, 2249, 'attending', '2023-09-17 21:27:46', '2025-12-17 19:46:45', 'NmLgQ1yd', '6394630'), - (258, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'NmLgQ1yd', '6394631'), - (258, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'NmLgQ1yd', '6440863'), - (258, 2271, 'attending', '2023-10-06 16:43:03', '2025-12-17 19:46:45', 'NmLgQ1yd', '6445375'), - (258, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLgQ1yd', '6445440'), - (258, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLgQ1yd', '6453951'), - (258, 2283, 'maybe', '2023-10-10 15:45:07', '2025-12-17 19:46:46', 'NmLgQ1yd', '6455503'), - (258, 2285, 'maybe', '2023-10-23 13:16:47', '2025-12-17 19:46:47', 'NmLgQ1yd', '6460929'), - (258, 2286, 'maybe', '2023-11-28 17:35:23', '2025-12-17 19:46:48', 'NmLgQ1yd', '6460930'), - (258, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'NmLgQ1yd', '6461696'), - (258, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'NmLgQ1yd', '6462129'), - (258, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLgQ1yd', '6463218'), - (258, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'NmLgQ1yd', '6472181'), - (258, 2304, 'maybe', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'NmLgQ1yd', '6482693'), - (258, 2306, 'attending', '2023-11-15 18:49:02', '2025-12-17 19:46:47', 'NmLgQ1yd', '6484200'), - (258, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'NmLgQ1yd', '6484680'), - (258, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'NmLgQ1yd', '6507741'), - (258, 2320, 'maybe', '2023-11-07 16:44:49', '2025-12-17 19:46:47', 'NmLgQ1yd', '6508647'), - (258, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'NmLgQ1yd', '6514659'), - (258, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'NmLgQ1yd', '6514660'), - (258, 2324, 'maybe', '2023-12-07 17:57:33', '2025-12-17 19:46:49', 'NmLgQ1yd', '6514662'), - (258, 2333, 'attending', '2023-11-07 16:44:38', '2025-12-17 19:46:47', 'NmLgQ1yd', '6519103'), - (258, 2337, 'maybe', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'NmLgQ1yd', '6535681'), - (258, 2338, 'maybe', '2023-11-24 06:57:16', '2025-12-17 19:46:48', 'NmLgQ1yd', '6538868'), - (258, 2345, 'attending', '2023-11-28 17:35:10', '2025-12-17 19:46:48', 'NmLgQ1yd', '6582414'), - (258, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLgQ1yd', '6584747'), - (258, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLgQ1yd', '6587097'), - (258, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLgQ1yd', '6609022'), - (258, 2365, 'maybe', '2023-12-22 19:00:42', '2025-12-17 19:46:37', 'NmLgQ1yd', '6613093'), - (258, 2366, 'maybe', '2023-12-12 23:16:15', '2025-12-17 19:46:36', 'NmLgQ1yd', '6615304'), - (258, 2370, 'attending', '2023-12-12 17:41:00', '2025-12-17 19:46:36', 'NmLgQ1yd', '6623765'), - (258, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'NmLgQ1yd', '6632757'), - (258, 2378, 'attending', '2024-01-01 20:19:10', '2025-12-17 19:46:37', 'NmLgQ1yd', '6644006'), - (258, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLgQ1yd', '6644187'), - (258, 2382, 'not_attending', '2024-01-01 20:17:42', '2025-12-17 19:46:37', 'NmLgQ1yd', '6646401'), - (258, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLgQ1yd', '6648951'), - (258, 2387, 'attending', '2024-01-04 03:38:40', '2025-12-17 19:46:37', 'NmLgQ1yd', '6648952'), - (258, 2391, 'attending', '2024-01-08 07:40:37', '2025-12-17 19:46:37', 'NmLgQ1yd', '6654138'), - (258, 2394, 'attending', '2024-01-17 04:40:03', '2025-12-17 19:46:38', 'NmLgQ1yd', '6654470'), - (258, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'NmLgQ1yd', '6655401'), - (258, 2398, 'attending', '2024-01-08 07:40:16', '2025-12-17 19:46:37', 'NmLgQ1yd', '6657381'), - (258, 2399, 'not_attending', '2024-01-13 10:55:19', '2025-12-17 19:46:38', 'NmLgQ1yd', '6657583'), - (258, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'NmLgQ1yd', '6661585'), - (258, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'NmLgQ1yd', '6661588'), - (258, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'NmLgQ1yd', '6661589'), - (258, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLgQ1yd', '6699906'), - (258, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'NmLgQ1yd', '6699913'), - (258, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'NmLgQ1yd', '6701109'), - (258, 2423, 'maybe', '2024-01-22 05:21:32', '2025-12-17 19:46:40', 'NmLgQ1yd', '6705141'), - (258, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLgQ1yd', '6705219'), - (258, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLgQ1yd', '6710153'), - (258, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLgQ1yd', '6711552'), - (258, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'NmLgQ1yd', '6711553'), - (258, 2431, 'maybe', '2024-01-28 07:01:42', '2025-12-17 19:46:41', 'NmLgQ1yd', '6712394'), - (258, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'NmLgQ1yd', '6722688'), - (258, 2438, 'attending', '2024-02-05 05:13:24', '2025-12-17 19:46:41', 'NmLgQ1yd', '6730201'), - (258, 2439, 'maybe', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'NmLgQ1yd', '6730620'), - (258, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'NmLgQ1yd', '6730642'), - (258, 2445, 'attending', '2024-02-15 06:57:18', '2025-12-17 19:46:41', 'NmLgQ1yd', '6734368'), - (258, 2446, 'attending', '2024-02-27 06:42:03', '2025-12-17 19:46:43', 'NmLgQ1yd', '6734369'), - (258, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'NmLgQ1yd', '6740364'), - (258, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'NmLgQ1yd', '6743829'), - (258, 2465, 'not_attending', '2024-02-20 10:32:27', '2025-12-17 19:46:42', 'NmLgQ1yd', '7026725'), - (258, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'NmLgQ1yd', '7030380'), - (258, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'NmLgQ1yd', '7033677'), - (258, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'NmLgQ1yd', '7035415'), - (258, 2477, 'not_attending', '2024-02-21 08:19:58', '2025-12-17 19:46:42', 'NmLgQ1yd', '7035692'), - (258, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'NmLgQ1yd', '7044715'), - (258, 2490, 'maybe', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'NmLgQ1yd', '7050318'), - (258, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'NmLgQ1yd', '7050319'), - (258, 2492, 'maybe', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'NmLgQ1yd', '7050322'), - (258, 2499, 'maybe', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'NmLgQ1yd', '7057804'), - (258, 2501, 'maybe', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'NmLgQ1yd', '7059866'), - (258, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'NmLgQ1yd', '7072824'), - (258, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'NmLgQ1yd', '7074348'), - (258, 2516, 'not_attending', '2024-04-30 05:37:04', '2025-12-17 19:46:35', 'NmLgQ1yd', '7074356'), - (258, 2522, 'maybe', '2024-07-18 14:50:21', '2025-12-17 19:46:30', 'NmLgQ1yd', '7074362'), - (258, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'NmLgQ1yd', '7074364'), - (258, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'NmLgQ1yd', '7089267'), - (258, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'NmLgQ1yd', '7098747'), - (258, 2552, 'attending', '2024-03-27 21:56:33', '2025-12-17 19:46:33', 'NmLgQ1yd', '7111123'), - (258, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'NmLgQ1yd', '7113468'), - (258, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'NmLgQ1yd', '7114856'), - (258, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'NmLgQ1yd', '7114951'), - (258, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'NmLgQ1yd', '7114955'), - (258, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'NmLgQ1yd', '7114956'), - (258, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'NmLgQ1yd', '7114957'), - (258, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'NmLgQ1yd', '7153615'), - (258, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'NmLgQ1yd', '7159484'), - (258, 2575, 'maybe', '2024-04-12 14:34:36', '2025-12-17 19:46:33', 'NmLgQ1yd', '7164534'), - (258, 2585, 'maybe', '2024-04-21 04:58:54', '2025-12-17 19:46:34', 'NmLgQ1yd', '7175828'), - (258, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'NmLgQ1yd', '7178446'), - (258, 2595, 'maybe', '2024-04-22 05:36:42', '2025-12-17 19:46:34', 'NmLgQ1yd', '7182252'), - (258, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'NmLgQ1yd', '7220467'), - (258, 2603, 'maybe', '2024-05-12 17:49:30', '2025-12-17 19:46:35', 'NmLgQ1yd', '7225669'), - (258, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'NmLgQ1yd', '7240354'), - (258, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'NmLgQ1yd', '7251633'), - (258, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'NmLgQ1yd', '7263048'), - (258, 2628, 'maybe', '2024-05-29 16:23:21', '2025-12-17 19:46:36', 'NmLgQ1yd', '7264725'), - (258, 2630, 'maybe', '2024-05-12 17:50:06', '2025-12-17 19:46:35', 'NmLgQ1yd', '7264801'), - (258, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'NmLgQ1yd', '7302674'), - (258, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'NmLgQ1yd', '7324073'), - (258, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'NmLgQ1yd', '7324074'), - (258, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'NmLgQ1yd', '7324075'), - (258, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'NmLgQ1yd', '7324078'), - (258, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'NmLgQ1yd', '7324082'), - (258, 2701, 'maybe', '2024-06-26 02:44:25', '2025-12-17 19:46:29', 'NmLgQ1yd', '7324391'), - (258, 2706, 'attending', '2024-06-18 02:24:40', '2025-12-17 19:46:28', 'NmLgQ1yd', '7324947'), - (258, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'NmLgQ1yd', '7331457'), - (258, 2746, 'maybe', '2024-07-08 15:02:17', '2025-12-17 19:46:29', 'NmLgQ1yd', '7348713'), - (258, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'NmLgQ1yd', '7356752'), - (258, 2755, 'maybe', '2024-07-10 02:47:42', '2025-12-17 19:46:29', 'NmLgQ1yd', '7357808'), - (258, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'NmLgQ1yd', '7363643'), - (258, 2772, 'maybe', '2024-07-23 00:08:17', '2025-12-17 19:46:30', 'NmLgQ1yd', '7368267'), - (258, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'NmLgQ1yd', '7368606'), - (258, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'NmLgQ1yd', '7397462'), - (258, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'NmLgQ1yd', '7424275'), - (258, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'NmLgQ1yd', '7424276'), - (258, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'NmLgQ1yd', '7432751'), - (258, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'NmLgQ1yd', '7432752'), - (258, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'NmLgQ1yd', '7432753'), - (258, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432754'), - (258, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432755'), - (258, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432756'), - (258, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432758'), - (258, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432759'), - (258, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'NmLgQ1yd', '7433834'), - (258, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'NmLgQ1yd', '7470197'), - (258, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'NmLgQ1yd', '7685613'), - (258, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'NmLgQ1yd', '7688194'), - (258, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'NmLgQ1yd', '7688196'), - (258, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'NmLgQ1yd', '7688289'), - (258, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'NmLgQ1yd', '7692763'), - (258, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'NmLgQ1yd', '7697552'), - (258, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'NmLgQ1yd', '7699878'), - (258, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'NmLgQ1yd', '7704043'), - (258, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'NmLgQ1yd', '7712467'), - (258, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'NmLgQ1yd', '7713585'), - (258, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'NmLgQ1yd', '7713586'), - (258, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'NmLgQ1yd', '7738518'), - (258, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'NmLgQ1yd', '7750636'), - (258, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'NmLgQ1yd', '7796540'), - (258, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'NmLgQ1yd', '7796541'), - (258, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'NmLgQ1yd', '7796542'), - (258, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'NmLgQ1yd', '7825913'), - (258, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'NmLgQ1yd', '7826209'), - (258, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'NmLgQ1yd', '7834742'), - (258, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'NmLgQ1yd', '7842108'), - (258, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'NmLgQ1yd', '7842902'), - (258, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'NmLgQ1yd', '7842903'), - (258, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'NmLgQ1yd', '7842904'), - (258, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'NmLgQ1yd', '7842905'), - (258, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'NmLgQ1yd', '7855719'), - (258, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'NmLgQ1yd', '7860683'), - (258, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'NmLgQ1yd', '7860684'), - (258, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'NmLgQ1yd', '7866095'), - (258, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'NmLgQ1yd', '7869170'), - (258, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'NmLgQ1yd', '7869188'), - (258, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'NmLgQ1yd', '7869201'), - (258, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'NmLgQ1yd', '7877465'), - (258, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'NmLgQ1yd', '7888250'), - (258, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'NmLgQ1yd', '7904777'), - (258, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'NmLgQ1yd', '8349164'), - (258, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'NmLgQ1yd', '8349545'), - (258, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'NmLgQ1yd', '8368028'), - (258, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'NmLgQ1yd', '8368029'), - (258, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'NmLgQ1yd', '8388462'), - (258, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'NmLgQ1yd', '8400273'), - (258, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'NmLgQ1yd', '8400275'), - (258, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'NmLgQ1yd', '8400276'), - (258, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'NmLgQ1yd', '8404977'), - (258, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'NmLgQ1yd', '8430783'), - (258, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'NmLgQ1yd', '8430784'), - (258, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'NmLgQ1yd', '8430799'), - (258, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'NmLgQ1yd', '8430800'), - (258, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'NmLgQ1yd', '8430801'), - (258, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'NmLgQ1yd', '8438709'), - (258, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'NmLgQ1yd', '8457738'), - (258, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'NmLgQ1yd', '8459566'), - (258, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'NmLgQ1yd', '8459567'), - (258, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'NmLgQ1yd', '8461032'), - (258, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'NmLgQ1yd', '8477877'), - (258, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'NmLgQ1yd', '8485688'), - (258, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'NmLgQ1yd', '8490587'), - (258, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'NmLgQ1yd', '8493552'), - (258, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'NmLgQ1yd', '8493553'), - (258, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'NmLgQ1yd', '8493554'), - (258, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'NmLgQ1yd', '8493555'), - (258, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'NmLgQ1yd', '8493556'), - (258, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'NmLgQ1yd', '8493557'), - (258, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'NmLgQ1yd', '8493558'), - (258, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'NmLgQ1yd', '8493559'), - (258, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'NmLgQ1yd', '8493560'), - (258, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'NmLgQ1yd', '8493561'), - (258, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'NmLgQ1yd', '8493572'), - (258, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'NmLgQ1yd', '8540725'), - (258, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'NmLgQ1yd', '8555421'), - (259, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4Dn2vDLm', '4736503'), - (259, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '4Dn2vDLm', '5199460'), - (259, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4Dn2vDLm', '6045684'), - (260, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'm7jRy8Md', '6655401'), - (260, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'm7jRy8Md', '6699906'), - (260, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'm7jRy8Md', '6699913'), - (260, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'm7jRy8Md', '6701109'), - (260, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'm7jRy8Md', '6705219'), - (260, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'm7jRy8Md', '6710153'), - (260, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'm7jRy8Md', '6711552'), - (260, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'm7jRy8Md', '6711553'), - (260, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'm7jRy8Md', '6722688'), - (260, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'm7jRy8Md', '6730620'), - (260, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'm7jRy8Md', '6730642'), - (260, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'm7jRy8Md', '6740364'), - (260, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'm7jRy8Md', '6743829'), - (260, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'm7jRy8Md', '7030380'), - (260, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'm7jRy8Md', '7033677'), - (260, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'm7jRy8Md', '7035415'), - (260, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'm7jRy8Md', '7044715'), - (260, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'm7jRy8Md', '7050318'), - (260, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'm7jRy8Md', '7050319'), - (260, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'm7jRy8Md', '7050322'), - (260, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'm7jRy8Md', '7057804'), - (260, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'm7jRy8Md', '7072824'), - (260, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'm7jRy8Md', '7074348'), - (260, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'm7jRy8Md', '7089267'), - (260, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'm7jRy8Md', '7098747'), - (260, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'm7jRy8Md', '7113468'), - (260, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'm7jRy8Md', '7114856'), - (260, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'm7jRy8Md', '7114951'), - (260, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'm7jRy8Md', '7114955'), - (260, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'm7jRy8Md', '7114956'), - (260, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'm7jRy8Md', '7153615'), - (260, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'm7jRy8Md', '7159484'), - (260, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'm7jRy8Md', '7178446'), - (261, 399, 'attending', '2020-11-12 09:34:58', '2025-12-17 19:47:54', 'nm6bX13m', '3236454'), - (261, 441, 'maybe', '2020-11-15 01:53:30', '2025-12-17 19:47:54', 'nm6bX13m', '3256169'), - (261, 469, 'attending', '2020-11-27 06:34:43', '2025-12-17 19:47:54', 'nm6bX13m', '3285414'), - (261, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'nm6bX13m', '3297764'), - (261, 484, 'not_attending', '2020-11-21 01:10:23', '2025-12-17 19:47:54', 'nm6bX13m', '3297792'), - (261, 490, 'attending', '2020-11-29 20:18:54', '2025-12-17 19:47:54', 'nm6bX13m', '3313532'), - (261, 491, 'attending', '2020-11-29 20:18:43', '2025-12-17 19:47:55', 'nm6bX13m', '3313533'), - (261, 492, 'attending', '2020-11-29 20:18:48', '2025-12-17 19:47:54', 'nm6bX13m', '3313731'), - (261, 493, 'maybe', '2020-11-29 20:18:17', '2025-12-17 19:47:54', 'nm6bX13m', '3313856'), - (261, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'nm6bX13m', '3314909'), - (261, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'nm6bX13m', '3314964'), - (261, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'nm6bX13m', '3323365'), - (261, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'nm6bX13m', '3329383'), - (261, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'nm6bX13m', '3351539'), - (261, 529, 'attending', '2021-01-06 03:31:40', '2025-12-17 19:47:48', 'nm6bX13m', '3364568'), - (261, 532, 'attending', '2021-01-07 19:21:58', '2025-12-17 19:47:48', 'nm6bX13m', '3381412'), - (261, 534, 'attending', '2021-01-09 21:53:27', '2025-12-17 19:47:48', 'nm6bX13m', '3384157'), - (261, 535, 'attending', '2021-01-09 21:06:30', '2025-12-17 19:47:48', 'nm6bX13m', '3384729'), - (261, 536, 'attending', '2021-01-06 03:30:46', '2025-12-17 19:47:48', 'nm6bX13m', '3386848'), - (261, 540, 'attending', '2021-01-10 14:20:08', '2025-12-17 19:47:48', 'nm6bX13m', '3389527'), - (261, 542, 'not_attending', '2021-01-11 03:00:50', '2025-12-17 19:47:48', 'nm6bX13m', '3395013'), - (261, 543, 'attending', '2021-01-11 03:01:44', '2025-12-17 19:47:48', 'nm6bX13m', '3396499'), - (261, 546, 'attending', '2021-01-22 02:35:50', '2025-12-17 19:47:49', 'nm6bX13m', '3396503'), - (261, 547, 'not_attending', '2021-01-22 00:09:41', '2025-12-17 19:47:49', 'nm6bX13m', '3396504'), - (261, 548, 'maybe', '2021-01-16 02:28:55', '2025-12-17 19:47:48', 'nm6bX13m', '3403650'), - (261, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nm6bX13m', '3406988'), - (261, 555, 'attending', '2021-01-20 01:00:19', '2025-12-17 19:47:49', 'nm6bX13m', '3416576'), - (261, 556, 'not_attending', '2021-01-20 01:12:04', '2025-12-17 19:47:49', 'nm6bX13m', '3417170'), - (261, 558, 'maybe', '2021-01-20 12:21:42', '2025-12-17 19:47:49', 'nm6bX13m', '3418925'), - (261, 561, 'attending', '2021-01-20 12:19:32', '2025-12-17 19:47:49', 'nm6bX13m', '3421916'), - (261, 562, 'not_attending', '2021-01-22 00:09:29', '2025-12-17 19:47:49', 'nm6bX13m', '3424911'), - (261, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'nm6bX13m', '3426074'), - (261, 568, 'not_attending', '2021-01-31 00:45:53', '2025-12-17 19:47:50', 'nm6bX13m', '3430267'), - (261, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'nm6bX13m', '3432673'), - (261, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'nm6bX13m', '3468125'), - (261, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'nm6bX13m', '3470303'), - (261, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'nm6bX13m', '3470305'), - (261, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'nm6bX13m', '3470991'), - (261, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'nm6bX13m', '3517815'), - (261, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'nm6bX13m', '3517816'), - (261, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'nm6bX13m', '3523941'), - (261, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'nm6bX13m', '3533850'), - (261, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'nm6bX13m', '3536632'), - (261, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'nm6bX13m', '3536656'), - (261, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'nm6bX13m', '3539916'), - (261, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'nm6bX13m', '3539917'), - (261, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'nm6bX13m', '3539918'), - (261, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'nm6bX13m', '3539919'), - (261, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'nm6bX13m', '3539920'), - (261, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'nm6bX13m', '3539921'), - (261, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'nm6bX13m', '3539922'), - (261, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'nm6bX13m', '3539923'), - (261, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'nm6bX13m', '3539927'), - (261, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'nm6bX13m', '3582734'), - (261, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'nm6bX13m', '3583262'), - (261, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'nm6bX13m', '3619523'), - (261, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'nm6bX13m', '3661369'), - (261, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'nm6bX13m', '3674262'), - (261, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'nm6bX13m', '3677402'), - (261, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'nm6bX13m', '3730212'), - (261, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6bX13m', '6045684'), - (262, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZBJje4', '6482693'), - (262, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZBJje4', '6484200'), - (262, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'dKZBJje4', '6484680'), - (262, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZBJje4', '6507741'), - (262, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZBJje4', '6514659'), - (262, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZBJje4', '6514660'), - (262, 2328, 'not_attending', '2023-11-03 19:15:50', '2025-12-17 19:46:47', 'dKZBJje4', '6515504'), - (262, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZBJje4', '6519103'), - (262, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZBJje4', '6535681'), - (262, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'dKZBJje4', '6545076'), - (262, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZBJje4', '6584747'), - (262, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZBJje4', '6587097'), - (262, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZBJje4', '6609022'), - (262, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZBJje4', '6632757'), - (262, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZBJje4', '6644187'), - (262, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZBJje4', '6648951'), - (262, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZBJje4', '6648952'), - (262, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dKZBJje4', '6651141'), - (262, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZBJje4', '6655401'), - (262, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZBJje4', '6661585'), - (262, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZBJje4', '6661588'), - (262, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZBJje4', '6661589'), - (262, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZBJje4', '6699906'), - (262, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dKZBJje4', '6699913'), - (262, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZBJje4', '6701109'), - (262, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZBJje4', '6705219'), - (262, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZBJje4', '6710153'), - (262, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZBJje4', '6711552'), - (262, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZBJje4', '6711553'), - (262, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKZBJje4', '6722688'), - (262, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKZBJje4', '6730620'), - (262, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKZBJje4', '6730642'), - (262, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKZBJje4', '6740364'), - (262, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKZBJje4', '6743829'), - (262, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKZBJje4', '7030380'), - (262, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKZBJje4', '7033677'), - (262, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKZBJje4', '7035415'), - (262, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKZBJje4', '7044715'), - (262, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKZBJje4', '7050318'), - (262, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKZBJje4', '7050319'), - (262, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKZBJje4', '7050322'), - (262, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKZBJje4', '7057804'), - (262, 2502, 'not_attending', '2024-03-06 02:24:36', '2025-12-17 19:46:33', 'dKZBJje4', '7061202'), - (262, 2503, 'not_attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'dKZBJje4', '7062500'), - (262, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKZBJje4', '7072824'), - (262, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dKZBJje4', '7074348'), - (262, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKZBJje4', '7089267'), - (262, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKZBJje4', '7098747'), - (262, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dKZBJje4', '7113468'), - (262, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKZBJje4', '7114856'), - (262, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKZBJje4', '7114951'), - (262, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKZBJje4', '7114955'), - (262, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKZBJje4', '7114956'), - (262, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKZBJje4', '7153615'), - (262, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKZBJje4', '7159484'), - (262, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKZBJje4', '7178446'), - (263, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'nm6yEkGd', '3386848'), - (263, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'nm6yEkGd', '3389527'), - (263, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'nm6yEkGd', '3396499'), - (263, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'nm6yEkGd', '3403650'), - (263, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nm6yEkGd', '3406988'), - (263, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'nm6yEkGd', '3416576'), - (263, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'nm6yEkGd', '3426074'), - (263, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'nm6yEkGd', '3430267'), - (263, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'nm6yEkGd', '3468125'), - (263, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'nm6yEkGd', '3470303'), - (263, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'nm6yEkGd', '3470991'), - (263, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6yEkGd', '6045684'), - (264, 645, 'attending', '2021-04-28 02:48:05', '2025-12-17 19:47:46', 'oAQv9DN4', '3539920'), - (264, 646, 'attending', '2021-05-09 19:42:39', '2025-12-17 19:47:46', 'oAQv9DN4', '3539921'), - (264, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'oAQv9DN4', '3539922'), - (264, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'oAQv9DN4', '3539923'), - (264, 663, 'not_attending', '2021-05-04 19:47:57', '2025-12-17 19:47:46', 'oAQv9DN4', '3547140'), - (264, 707, 'attending', '2021-04-25 19:22:13', '2025-12-17 19:47:46', 'oAQv9DN4', '3583262'), - (264, 724, 'attending', '2021-05-04 19:47:49', '2025-12-17 19:47:46', 'oAQv9DN4', '3661369'), - (264, 729, 'maybe', '2021-04-28 14:26:15', '2025-12-17 19:47:46', 'oAQv9DN4', '3668075'), - (264, 756, 'attending', '2021-04-26 00:50:34', '2025-12-17 19:47:46', 'oAQv9DN4', '3704795'), - (264, 761, 'attending', '2021-05-09 19:42:33', '2025-12-17 19:47:46', 'oAQv9DN4', '3716041'), - (264, 767, 'attending', '2021-04-27 00:06:37', '2025-12-17 19:47:46', 'oAQv9DN4', '3722476'), - (264, 773, 'attending', '2021-04-26 00:50:42', '2025-12-17 19:47:46', 'oAQv9DN4', '3729399'), - (264, 777, 'attending', '2021-04-28 02:47:17', '2025-12-17 19:47:46', 'oAQv9DN4', '3746248'), - (264, 780, 'attending', '2021-05-04 19:47:52', '2025-12-17 19:47:46', 'oAQv9DN4', '3757175'), - (264, 784, 'attending', '2021-05-04 19:41:55', '2025-12-17 19:47:46', 'oAQv9DN4', '3768775'), - (264, 791, 'attending', '2021-05-09 19:42:09', '2025-12-17 19:47:46', 'oAQv9DN4', '3792735'), - (264, 792, 'attending', '2021-05-08 01:21:16', '2025-12-17 19:47:46', 'oAQv9DN4', '3793156'), - (264, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'oAQv9DN4', '3974109'), - (264, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAQv9DN4', '3975311'), - (264, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'oAQv9DN4', '3975312'), - (264, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQv9DN4', '3994992'), - (264, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'oAQv9DN4', '4014338'), - (264, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'oAQv9DN4', '4021848'), - (264, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAQv9DN4', '4136744'), - (264, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAQv9DN4', '4136937'), - (264, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAQv9DN4', '4136938'), - (264, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAQv9DN4', '4136947'), - (264, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAQv9DN4', '4239259'), - (264, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQv9DN4', '4250163'), - (264, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQv9DN4', '6045684'), - (265, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'kdKjenY4', '3149489'), - (265, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'kdKjenY4', '3149491'), - (265, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'kdKjenY4', '3236450'), - (265, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'kdKjenY4', '3236452'), - (265, 646, 'not_attending', '2021-05-14 05:34:22', '2025-12-17 19:47:46', 'kdKjenY4', '3539921'), - (265, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'kdKjenY4', '3539922'), - (265, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'kdKjenY4', '3539923'), - (265, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'kdKjenY4', '3806392'), - (265, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'kdKjenY4', '3963335'), - (265, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdKjenY4', '3975311'), - (265, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKjenY4', '3975312'), - (265, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKjenY4', '3994992'), - (265, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKjenY4', '4014338'), - (265, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKjenY4', '4136744'), - (265, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKjenY4', '6045684'), - (266, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v81gJWm', '6045684'), - (267, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', '4PNnq6Mm', '5426882'), - (267, 1512, 'attending', '2022-07-15 01:57:19', '2025-12-17 19:47:19', '4PNnq6Mm', '5441112'), - (267, 1513, 'attending', '2022-07-16 00:59:25', '2025-12-17 19:47:19', '4PNnq6Mm', '5441125'), - (267, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4PNnq6Mm', '5441126'), - (267, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4PNnq6Mm', '5441128'), - (267, 1528, 'not_attending', '2022-07-17 17:31:19', '2025-12-17 19:47:20', '4PNnq6Mm', '5446643'), - (267, 1535, 'not_attending', '2022-07-17 16:14:59', '2025-12-17 19:47:20', '4PNnq6Mm', '5448830'), - (267, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', '4PNnq6Mm', '5449068'), - (267, 1537, 'attending', '2022-07-17 16:14:53', '2025-12-17 19:47:20', '4PNnq6Mm', '5449117'), - (267, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4PNnq6Mm', '5453325'), - (267, 1541, 'not_attending', '2022-07-19 02:46:57', '2025-12-17 19:47:20', '4PNnq6Mm', '5453542'), - (267, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4PNnq6Mm', '5454516'), - (267, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4PNnq6Mm', '5454605'), - (267, 1546, 'not_attending', '2022-07-25 15:30:52', '2025-12-17 19:47:20', '4PNnq6Mm', '5454607'), - (267, 1549, 'attending', '2022-07-23 01:47:55', '2025-12-17 19:47:20', '4PNnq6Mm', '5454789'), - (267, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4PNnq6Mm', '5455037'), - (267, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4PNnq6Mm', '5461278'), - (267, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4PNnq6Mm', '5469480'), - (267, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4PNnq6Mm', '5471073'), - (267, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '4PNnq6Mm', '5474663'), - (267, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4PNnq6Mm', '5482022'), - (267, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4PNnq6Mm', '5482793'), - (267, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4PNnq6Mm', '5488912'), - (267, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4PNnq6Mm', '5492192'), - (267, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4PNnq6Mm', '5493139'), - (267, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4PNnq6Mm', '5493200'), - (267, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4PNnq6Mm', '5502188'), - (267, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4PNnq6Mm', '5512862'), - (267, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4PNnq6Mm', '5513985'), - (267, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNnq6Mm', '6045684'), - (268, 2925, 'not_attending', '2024-12-10 05:51:39', '2025-12-17 19:46:21', 'm6qyjWLd', '7713584'), - (268, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6qyjWLd', '7713586'), - (268, 2947, 'not_attending', '2024-12-09 03:11:24', '2025-12-17 19:46:21', 'm6qyjWLd', '7727445'), - (268, 2952, 'attending', '2024-12-11 16:38:02', '2025-12-17 19:46:21', 'm6qyjWLd', '7730167'), - (268, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'm6qyjWLd', '7738518'), - (268, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6qyjWLd', '7750636'), - (268, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6qyjWLd', '7796540'), - (268, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6qyjWLd', '7796541'), - (268, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6qyjWLd', '7796542'), - (268, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6qyjWLd', '7825913'), - (268, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6qyjWLd', '7826209'), - (268, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6qyjWLd', '7834742'), - (268, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6qyjWLd', '7842108'), - (268, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6qyjWLd', '7842902'), - (268, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6qyjWLd', '7842903'), - (268, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6qyjWLd', '7842904'), - (268, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6qyjWLd', '7842905'), - (268, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6qyjWLd', '7855719'), - (268, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6qyjWLd', '7860683'), - (268, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6qyjWLd', '7860684'), - (268, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6qyjWLd', '7866095'), - (268, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6qyjWLd', '7869170'), - (268, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'm6qyjWLd', '7869188'), - (268, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6qyjWLd', '7869201'), - (268, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'm6qyjWLd', '7877465'), - (268, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'm6qyjWLd', '7878570'), - (268, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'm6qyjWLd', '7888250'), - (268, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'm6qyjWLd', '8349164'), - (268, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'm6qyjWLd', '8349545'), - (268, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'm6qyjWLd', '8353584'), - (269, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybqnRwA', '7074364'), - (269, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'mybqnRwA', '7302674'), - (269, 2678, 'maybe', '2024-06-14 13:41:01', '2025-12-17 19:46:28', 'mybqnRwA', '7319489'), - (269, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybqnRwA', '7324073'), - (269, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybqnRwA', '7324074'), - (269, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybqnRwA', '7324075'), - (269, 2691, 'attending', '2024-07-19 22:18:53', '2025-12-17 19:46:30', 'mybqnRwA', '7324076'), - (269, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybqnRwA', '7324078'), - (269, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybqnRwA', '7324082'), - (269, 2702, 'attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mybqnRwA', '7324867'), - (269, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mybqnRwA', '7331457'), - (269, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mybqnRwA', '7356752'), - (269, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mybqnRwA', '7363643'), - (269, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybqnRwA', '7368606'), - (269, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybqnRwA', '7397462'), - (269, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybqnRwA', '7424275'), - (269, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mybqnRwA', '7424276'), - (269, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybqnRwA', '7432751'), - (269, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybqnRwA', '7432752'), - (269, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybqnRwA', '7432753'), - (269, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybqnRwA', '7432754'), - (269, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybqnRwA', '7432755'), - (269, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybqnRwA', '7432756'), - (269, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybqnRwA', '7432758'), - (269, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybqnRwA', '7432759'), - (269, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mybqnRwA', '7433834'), - (269, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybqnRwA', '7470197'), - (269, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybqnRwA', '7685613'), - (269, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybqnRwA', '7688194'), - (269, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybqnRwA', '7688196'), - (269, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybqnRwA', '7688289'), - (270, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mLDwX28m', '6045684'), - (271, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', 'm7QaMGl4', '4420739'), - (271, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'm7QaMGl4', '4420741'), - (271, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'm7QaMGl4', '4420744'), - (271, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'm7QaMGl4', '4420747'), - (271, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm7QaMGl4', '4508342'), - (271, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm7QaMGl4', '4568602'), - (271, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm7QaMGl4', '4572153'), - (271, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'm7QaMGl4', '4585962'), - (271, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm7QaMGl4', '4596356'), - (271, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm7QaMGl4', '4598860'), - (271, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm7QaMGl4', '4598861'), - (271, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm7QaMGl4', '4602797'), - (271, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm7QaMGl4', '4637896'), - (271, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm7QaMGl4', '4642994'), - (271, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm7QaMGl4', '4642995'), - (271, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm7QaMGl4', '4642996'), - (271, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm7QaMGl4', '4642997'), - (271, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm7QaMGl4', '4645687'), - (271, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm7QaMGl4', '4645698'), - (271, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm7QaMGl4', '4645704'), - (271, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm7QaMGl4', '4645705'), - (271, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm7QaMGl4', '4668385'), - (271, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7QaMGl4', '6045684'), - (272, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4knNDqLA', '5441131'), - (272, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4knNDqLA', '5441132'), - (272, 1562, 'not_attending', '2022-08-17 14:05:38', '2025-12-17 19:47:22', '4knNDqLA', '5469480'), - (272, 1575, 'attending', '2022-08-26 22:20:19', '2025-12-17 19:47:23', '4knNDqLA', '5482250'), - (272, 1591, 'attending', '2022-08-15 19:20:15', '2025-12-17 19:47:22', '4knNDqLA', '5493764'), - (272, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4knNDqLA', '5505059'), - (272, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4knNDqLA', '5509055'), - (272, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4knNDqLA', '5512862'), - (272, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4knNDqLA', '5513985'), - (272, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '4knNDqLA', '5519981'), - (272, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4knNDqLA', '5522550'), - (272, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4knNDqLA', '5534683'), - (272, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4knNDqLA', '5537735'), - (272, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4knNDqLA', '5540859'), - (272, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4knNDqLA', '5546619'), - (272, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4knNDqLA', '5555245'), - (272, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4knNDqLA', '5557747'), - (272, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4knNDqLA', '5560255'), - (272, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4knNDqLA', '5562906'), - (272, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4knNDqLA', '5600604'), - (272, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4knNDqLA', '5605544'), - (272, 1699, 'not_attending', '2022-09-26 12:18:45', '2025-12-17 19:47:12', '4knNDqLA', '5606737'), - (272, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4knNDqLA', '5630960'), - (272, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4knNDqLA', '5630961'), - (272, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4knNDqLA', '5630962'), - (272, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4knNDqLA', '5630966'), - (272, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4knNDqLA', '5630967'), - (272, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4knNDqLA', '5630968'), - (272, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4knNDqLA', '5635406'), - (272, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4knNDqLA', '5638765'), - (272, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4knNDqLA', '5640097'), - (272, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4knNDqLA', '5640843'), - (272, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4knNDqLA', '5641521'), - (272, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4knNDqLA', '5642818'), - (272, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4knNDqLA', '5652395'), - (272, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4knNDqLA', '5670445'), - (272, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4knNDqLA', '5671637'), - (272, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4knNDqLA', '5672329'), - (272, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4knNDqLA', '5674057'), - (272, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4knNDqLA', '5674060'), - (272, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4knNDqLA', '5677461'), - (272, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4knNDqLA', '5698046'), - (272, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4knNDqLA', '5699760'), - (272, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4knNDqLA', '5741601'), - (272, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4knNDqLA', '5763458'), - (272, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4knNDqLA', '5774172'), - (272, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4knNDqLA', '5818247'), - (272, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4knNDqLA', '5819471'), - (272, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4knNDqLA', '5827739'), - (272, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4knNDqLA', '5844306'), - (272, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4knNDqLA', '5850159'), - (272, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4knNDqLA', '5858999'), - (272, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4knNDqLA', '5871984'), - (272, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4knNDqLA', '5876354'), - (272, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4knNDqLA', '5880939'), - (272, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4knNDqLA', '5887890'), - (272, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4knNDqLA', '5888598'), - (272, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4knNDqLA', '5893260'), - (272, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4knNDqLA', '6045684'), - (273, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4Z7Znnrd', '6101361'), - (273, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '4Z7Znnrd', '6136733'), - (273, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4Z7Znnrd', '6137989'), - (273, 2098, 'not_attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', '4Z7Znnrd', '6139831'), - (273, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4Z7Znnrd', '6150864'), - (273, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4Z7Znnrd', '6155491'), - (273, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4Z7Znnrd', '6164417'), - (273, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4Z7Znnrd', '6166388'), - (273, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4Z7Znnrd', '6176439'), - (273, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', '4Z7Znnrd', '6177485'), - (273, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4Z7Znnrd', '6182410'), - (273, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4Z7Znnrd', '6185812'), - (273, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4Z7Znnrd', '6187651'), - (273, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4Z7Znnrd', '6187963'), - (273, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4Z7Znnrd', '6187964'), - (273, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4Z7Znnrd', '6187966'), - (273, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4Z7Znnrd', '6187967'), - (273, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4Z7Znnrd', '6187969'), - (273, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4Z7Znnrd', '6334878'), - (274, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mG7jyBwm', '6044839'), - (274, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mG7jyBwm', '6053198'), - (274, 2011, 'not_attending', '2023-04-10 18:04:05', '2025-12-17 19:46:59', 'mG7jyBwm', '6056916'), - (274, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mG7jyBwm', '6059290'), - (274, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mG7jyBwm', '6060328'), - (274, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mG7jyBwm', '6061037'), - (274, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mG7jyBwm', '6061039'), - (274, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mG7jyBwm', '6067245'), - (274, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mG7jyBwm', '6068094'), - (274, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mG7jyBwm', '6068252'), - (274, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mG7jyBwm', '6068253'), - (274, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mG7jyBwm', '6068254'), - (274, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'mG7jyBwm', '6068280'), - (274, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mG7jyBwm', '6069093'), - (274, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mG7jyBwm', '6072528'), - (274, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mG7jyBwm', '6079840'), - (274, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mG7jyBwm', '6083398'), - (274, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'mG7jyBwm', '6093504'), - (274, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mG7jyBwm', '6097414'), - (274, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mG7jyBwm', '6097442'), - (274, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mG7jyBwm', '6097684'), - (274, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mG7jyBwm', '6098762'), - (274, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mG7jyBwm', '6101362'), - (274, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mG7jyBwm', '6107314'), - (274, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mG7jyBwm', '6120034'), - (275, 2521, 'maybe', '2024-06-18 01:19:04', '2025-12-17 19:46:29', 'mybqKV6A', '7074361'), - (275, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybqKV6A', '7074364'), - (275, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'mybqKV6A', '7302674'), - (275, 2678, 'attending', '2024-06-15 17:46:21', '2025-12-17 19:46:28', 'mybqKV6A', '7319489'), - (275, 2683, 'attending', '2024-06-16 01:55:17', '2025-12-17 19:46:28', 'mybqKV6A', '7321978'), - (275, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybqKV6A', '7324073'), - (275, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybqKV6A', '7324074'), - (275, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybqKV6A', '7324075'), - (275, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybqKV6A', '7324078'), - (275, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybqKV6A', '7324082'), - (275, 2706, 'attending', '2024-06-18 01:20:06', '2025-12-17 19:46:28', 'mybqKV6A', '7324947'), - (275, 2720, 'attending', '2024-06-18 20:56:00', '2025-12-17 19:46:28', 'mybqKV6A', '7331436'), - (275, 2721, 'attending', '2024-06-18 22:51:11', '2025-12-17 19:46:29', 'mybqKV6A', '7331456'), - (275, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mybqKV6A', '7331457'), - (275, 2723, 'not_attending', '2024-06-21 18:54:14', '2025-12-17 19:46:29', 'mybqKV6A', '7332389'), - (275, 2746, 'attending', '2024-07-09 22:42:55', '2025-12-17 19:46:29', 'mybqKV6A', '7348713'), - (275, 2747, 'not_attending', '2024-07-17 16:52:24', '2025-12-17 19:46:30', 'mybqKV6A', '7353587'), - (275, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mybqKV6A', '7356752'), - (275, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mybqKV6A', '7363643'), - (275, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybqKV6A', '7368606'), - (275, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybqKV6A', '7397462'), - (275, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybqKV6A', '7424275'), - (275, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mybqKV6A', '7424276'), - (275, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybqKV6A', '7432751'), - (275, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybqKV6A', '7432752'), - (275, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybqKV6A', '7432753'), - (275, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybqKV6A', '7432754'), - (275, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybqKV6A', '7432755'), - (275, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybqKV6A', '7432756'), - (275, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybqKV6A', '7432758'), - (275, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybqKV6A', '7432759'), - (275, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mybqKV6A', '7433834'), - (275, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybqKV6A', '7470197'), - (275, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybqKV6A', '7685613'), - (275, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybqKV6A', '7688194'), - (275, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybqKV6A', '7688196'), - (275, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybqKV6A', '7688289'), - (276, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dJVD5EQd', '7904777'), - (276, 3094, 'attending', '2025-05-04 10:40:46', '2025-12-17 19:46:21', 'dJVD5EQd', '8342292'), - (276, 3106, 'attending', '2025-05-01 02:34:22', '2025-12-17 19:46:20', 'dJVD5EQd', '8349552'), - (276, 3110, 'maybe', '2025-05-04 10:41:10', '2025-12-17 19:46:20', 'dJVD5EQd', '8353484'), - (276, 3112, 'maybe', '2025-05-04 10:41:01', '2025-12-17 19:46:21', 'dJVD5EQd', '8353584'), - (276, 3126, 'not_attending', '2025-05-12 14:56:40', '2025-12-17 19:46:21', 'dJVD5EQd', '8365614'), - (276, 3131, 'attending', '2025-05-14 22:18:48', '2025-12-17 19:46:21', 'dJVD5EQd', '8368028'), - (276, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dJVD5EQd', '8368029'), - (276, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dJVD5EQd', '8388462'), - (276, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dJVD5EQd', '8400273'), - (276, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dJVD5EQd', '8400274'), - (276, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dJVD5EQd', '8400275'), - (276, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dJVD5EQd', '8400276'), - (276, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dJVD5EQd', '8404977'), - (276, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dJVD5EQd', '8430783'), - (276, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dJVD5EQd', '8430784'), - (276, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dJVD5EQd', '8430799'), - (276, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dJVD5EQd', '8430800'), - (276, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dJVD5EQd', '8430801'), - (276, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dJVD5EQd', '8438709'), - (276, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dJVD5EQd', '8457738'), - (276, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dJVD5EQd', '8459566'), - (276, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dJVD5EQd', '8459567'), - (276, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dJVD5EQd', '8461032'), - (276, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dJVD5EQd', '8477877'), - (276, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dJVD5EQd', '8485688'), - (276, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dJVD5EQd', '8490587'), - (276, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dJVD5EQd', '8493552'), - (276, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dJVD5EQd', '8493553'), - (276, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dJVD5EQd', '8493554'), - (276, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dJVD5EQd', '8493555'), - (276, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dJVD5EQd', '8493556'), - (276, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dJVD5EQd', '8493557'), - (276, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dJVD5EQd', '8493558'), - (276, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dJVD5EQd', '8493559'), - (276, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dJVD5EQd', '8493560'), - (276, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dJVD5EQd', '8493561'), - (276, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dJVD5EQd', '8493572'), - (276, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dJVD5EQd', '8540725'), - (276, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dJVD5EQd', '8555421'), - (277, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mLLBzXZm', '6482693'), - (277, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mLLBzXZm', '6484200'), - (277, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'mLLBzXZm', '6484680'), - (277, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mLLBzXZm', '6507741'), - (277, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mLLBzXZm', '6514659'), - (277, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mLLBzXZm', '6514660'), - (277, 2328, 'attending', '2023-11-03 19:15:50', '2025-12-17 19:46:47', 'mLLBzXZm', '6515504'), - (277, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mLLBzXZm', '6519103'), - (277, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mLLBzXZm', '6535681'), - (277, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mLLBzXZm', '6545076'), - (277, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mLLBzXZm', '6584747'), - (277, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mLLBzXZm', '6587097'), - (277, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mLLBzXZm', '6609022'), - (277, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mLLBzXZm', '6632757'), - (277, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mLLBzXZm', '6644187'), - (277, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mLLBzXZm', '6648951'), - (277, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mLLBzXZm', '6648952'), - (277, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mLLBzXZm', '6651141'), - (277, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mLLBzXZm', '6655401'), - (277, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mLLBzXZm', '6661585'), - (277, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mLLBzXZm', '6661588'), - (277, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mLLBzXZm', '6661589'), - (277, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mLLBzXZm', '6699906'), - (277, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mLLBzXZm', '6699913'), - (277, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mLLBzXZm', '6701109'), - (277, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mLLBzXZm', '6705219'), - (277, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mLLBzXZm', '6710153'), - (277, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mLLBzXZm', '6711552'), - (277, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mLLBzXZm', '6711553'), - (277, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mLLBzXZm', '6722688'), - (277, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mLLBzXZm', '6730620'), - (277, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mLLBzXZm', '6730642'), - (277, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mLLBzXZm', '6740364'), - (277, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mLLBzXZm', '6743829'), - (277, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mLLBzXZm', '7030380'), - (277, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mLLBzXZm', '7033677'), - (277, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mLLBzXZm', '7035415'), - (277, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mLLBzXZm', '7044715'), - (277, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mLLBzXZm', '7050318'), - (277, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mLLBzXZm', '7050319'), - (277, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mLLBzXZm', '7050322'), - (277, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mLLBzXZm', '7057804'), - (277, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mLLBzXZm', '7072824'), - (277, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mLLBzXZm', '7074348'), - (277, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mLLBzXZm', '7089267'), - (277, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mLLBzXZm', '7098747'), - (277, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mLLBzXZm', '7113468'), - (277, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mLLBzXZm', '7114856'), - (277, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mLLBzXZm', '7114951'), - (277, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mLLBzXZm', '7114955'), - (277, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mLLBzXZm', '7114956'), - (277, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mLLBzXZm', '7153615'), - (277, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mLLBzXZm', '7159484'), - (277, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mLLBzXZm', '7178446'), - (278, 1097, 'attending', '2021-11-03 05:34:40', '2025-12-17 19:47:36', 'AYzJ2nw4', '4598860'), - (278, 1098, 'attending', '2021-11-04 02:34:28', '2025-12-17 19:47:36', 'AYzJ2nw4', '4598861'), - (278, 1103, 'attending', '2021-11-07 16:20:23', '2025-12-17 19:47:36', 'AYzJ2nw4', '4616350'), - (278, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AYzJ2nw4', '4637896'), - (278, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AYzJ2nw4', '4642994'), - (278, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'AYzJ2nw4', '4642995'), - (278, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AYzJ2nw4', '4642996'), - (278, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AYzJ2nw4', '4642997'), - (278, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AYzJ2nw4', '4645687'), - (278, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AYzJ2nw4', '4645698'), - (278, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AYzJ2nw4', '4645704'), - (278, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AYzJ2nw4', '4645705'), - (278, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AYzJ2nw4', '4668385'), - (278, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'AYzJ2nw4', '4694407'), - (278, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYzJ2nw4', '6045684'), - (279, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dN9VnnW4', '4736503'), - (279, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dN9VnnW4', '4736504'), - (279, 1257, 'attending', '2022-03-01 00:21:23', '2025-12-17 19:47:33', 'dN9VnnW4', '5129274'), - (279, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dN9VnnW4', '5132533'), - (279, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dN9VnnW4', '5186582'), - (279, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dN9VnnW4', '5186583'), - (279, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dN9VnnW4', '5186585'), - (279, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dN9VnnW4', '5190437'), - (279, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dN9VnnW4', '5215989'), - (279, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dN9VnnW4', '6045684'), - (280, 538, 'attending', '2022-01-12 00:31:05', '2025-12-17 19:47:48', '4ZkX9bLd', '3388151'), - (280, 864, 'not_attending', '2021-11-14 03:27:52', '2025-12-17 19:47:37', '4ZkX9bLd', '4015998'), - (280, 1079, 'attending', '2021-10-21 03:52:03', '2025-12-17 19:47:35', '4ZkX9bLd', '4563823'), - (280, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '4ZkX9bLd', '4585962'), - (280, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4ZkX9bLd', '4596356'), - (280, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4ZkX9bLd', '4598860'), - (280, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4ZkX9bLd', '4598861'), - (280, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4ZkX9bLd', '4602797'), - (280, 1103, 'attending', '2021-11-13 21:18:21', '2025-12-17 19:47:36', '4ZkX9bLd', '4616350'), - (280, 1114, 'attending', '2021-11-14 00:05:50', '2025-12-17 19:47:36', '4ZkX9bLd', '4637896'), - (280, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4ZkX9bLd', '4642994'), - (280, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4ZkX9bLd', '4642995'), - (280, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4ZkX9bLd', '4642996'), - (280, 1119, 'attending', '2021-12-23 00:58:08', '2025-12-17 19:47:31', '4ZkX9bLd', '4642997'), - (280, 1120, 'attending', '2021-11-14 03:27:32', '2025-12-17 19:47:37', '4ZkX9bLd', '4644021'), - (280, 1126, 'attending', '2021-12-11 23:39:29', '2025-12-17 19:47:38', '4ZkX9bLd', '4645687'), - (280, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4ZkX9bLd', '4645698'), - (280, 1128, 'attending', '2021-11-18 18:46:13', '2025-12-17 19:47:37', '4ZkX9bLd', '4645704'), - (280, 1129, 'attending', '2021-11-24 21:01:36', '2025-12-17 19:47:37', '4ZkX9bLd', '4645705'), - (280, 1130, 'attending', '2021-12-04 17:38:18', '2025-12-17 19:47:37', '4ZkX9bLd', '4658824'), - (280, 1131, 'not_attending', '2021-12-18 17:04:27', '2025-12-17 19:47:31', '4ZkX9bLd', '4658825'), - (280, 1132, 'attending', '2021-11-23 00:01:41', '2025-12-17 19:47:37', '4ZkX9bLd', '4660657'), - (280, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4ZkX9bLd', '4668385'), - (280, 1139, 'maybe', '2021-12-01 21:34:06', '2025-12-17 19:47:37', '4ZkX9bLd', '4675604'), - (280, 1140, 'maybe', '2021-12-01 21:34:09', '2025-12-17 19:47:37', '4ZkX9bLd', '4679701'), - (280, 1147, 'attending', '2021-12-12 15:06:09', '2025-12-17 19:47:38', '4ZkX9bLd', '4692842'), - (280, 1148, 'attending', '2021-12-16 04:40:47', '2025-12-17 19:47:31', '4ZkX9bLd', '4692843'), - (280, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4ZkX9bLd', '4694407'), - (280, 1152, 'not_attending', '2022-01-11 03:28:50', '2025-12-17 19:47:31', '4ZkX9bLd', '4708705'), - (280, 1153, 'not_attending', '2022-01-19 02:01:57', '2025-12-17 19:47:32', '4ZkX9bLd', '4708707'), - (280, 1154, 'not_attending', '2022-01-23 21:33:18', '2025-12-17 19:47:32', '4ZkX9bLd', '4708708'), - (280, 1155, 'attending', '2021-12-18 17:04:38', '2025-12-17 19:47:31', '4ZkX9bLd', '4715119'), - (280, 1156, 'attending', '2021-12-20 23:53:01', '2025-12-17 19:47:31', '4ZkX9bLd', '4715207'), - (280, 1164, 'attending', '2021-12-28 00:54:21', '2025-12-17 19:47:31', '4ZkX9bLd', '4724208'), - (280, 1165, 'not_attending', '2021-12-28 00:54:24', '2025-12-17 19:47:31', '4ZkX9bLd', '4724210'), - (280, 1167, 'not_attending', '2022-01-06 23:52:49', '2025-12-17 19:47:31', '4ZkX9bLd', '4731015'), - (280, 1170, 'not_attending', '2022-01-09 23:48:42', '2025-12-17 19:47:31', '4ZkX9bLd', '4731045'), - (280, 1173, 'attending', '2022-01-08 20:58:27', '2025-12-17 19:47:31', '4ZkX9bLd', '4736495'), - (280, 1174, 'attending', '2022-01-12 00:33:02', '2025-12-17 19:47:31', '4ZkX9bLd', '4736496'), - (280, 1175, 'attending', '2022-01-23 00:19:51', '2025-12-17 19:47:32', '4ZkX9bLd', '4736497'), - (280, 1176, 'attending', '2022-02-01 00:32:00', '2025-12-17 19:47:32', '4ZkX9bLd', '4736498'), - (280, 1177, 'attending', '2022-02-08 14:21:19', '2025-12-17 19:47:32', '4ZkX9bLd', '4736499'), - (280, 1178, 'attending', '2022-01-23 06:32:14', '2025-12-17 19:47:32', '4ZkX9bLd', '4736500'), - (280, 1179, 'attending', '2022-02-16 02:31:04', '2025-12-17 19:47:32', '4ZkX9bLd', '4736501'), - (280, 1180, 'attending', '2022-02-23 03:06:14', '2025-12-17 19:47:33', '4ZkX9bLd', '4736502'), - (280, 1181, 'not_attending', '2022-03-05 20:14:42', '2025-12-17 19:47:33', '4ZkX9bLd', '4736503'), - (280, 1182, 'attending', '2022-03-07 18:30:26', '2025-12-17 19:47:33', '4ZkX9bLd', '4736504'), - (280, 1184, 'attending', '2022-01-15 00:50:47', '2025-12-17 19:47:31', '4ZkX9bLd', '4742350'), - (280, 1185, 'not_attending', '2022-01-12 13:39:58', '2025-12-17 19:47:31', '4ZkX9bLd', '4746789'), - (280, 1188, 'attending', '2022-01-17 18:47:17', '2025-12-17 19:47:31', '4ZkX9bLd', '4753929'), - (280, 1197, 'not_attending', '2022-01-25 13:26:32', '2025-12-17 19:47:32', '4ZkX9bLd', '4766799'), - (280, 1198, 'not_attending', '2022-01-24 23:49:09', '2025-12-17 19:47:32', '4ZkX9bLd', '4766801'), - (280, 1199, 'attending', '2022-01-24 21:33:42', '2025-12-17 19:47:32', '4ZkX9bLd', '4766802'), - (280, 1200, 'attending', '2022-01-18 02:25:33', '2025-12-17 19:47:32', '4ZkX9bLd', '4766830'), - (280, 1202, 'attending', '2022-01-19 18:26:43', '2025-12-17 19:47:32', '4ZkX9bLd', '4769423'), - (280, 1217, 'not_attending', '2022-01-30 20:34:53', '2025-12-17 19:47:32', '4ZkX9bLd', '4781139'), - (280, 1219, 'not_attending', '2022-02-01 22:22:46', '2025-12-17 19:47:32', '4ZkX9bLd', '4788466'), - (280, 1221, 'not_attending', '2022-01-29 21:45:22', '2025-12-17 19:47:32', '4ZkX9bLd', '4790261'), - (280, 1222, 'not_attending', '2022-02-16 02:30:30', '2025-12-17 19:47:32', '4ZkX9bLd', '5015628'), - (280, 1224, 'attending', '2022-01-31 15:52:43', '2025-12-17 19:47:32', '4ZkX9bLd', '5016682'), - (280, 1228, 'not_attending', '2022-02-08 18:37:21', '2025-12-17 19:47:32', '4ZkX9bLd', '5028238'), - (280, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4ZkX9bLd', '5038850'), - (280, 1234, 'attending', '2022-02-13 02:42:13', '2025-12-17 19:47:32', '4ZkX9bLd', '5042197'), - (280, 1236, 'attending', '2022-02-16 02:29:32', '2025-12-17 19:47:32', '4ZkX9bLd', '5045826'), - (280, 1237, 'not_attending', '2022-02-16 04:00:33', '2025-12-17 19:47:32', '4ZkX9bLd', '5050641'), - (280, 1238, 'maybe', '2022-02-24 01:13:36', '2025-12-17 19:47:32', '4ZkX9bLd', '5052236'), - (280, 1240, 'not_attending', '2022-03-14 21:03:24', '2025-12-17 19:47:33', '4ZkX9bLd', '5052239'), - (280, 1241, 'not_attending', '2022-03-23 16:55:09', '2025-12-17 19:47:25', '4ZkX9bLd', '5052240'), - (280, 1242, 'not_attending', '2022-03-29 20:27:07', '2025-12-17 19:47:25', '4ZkX9bLd', '5052241'), - (280, 1248, 'attending', '2022-02-23 18:49:47', '2025-12-17 19:47:33', '4ZkX9bLd', '5065064'), - (280, 1255, 'attending', '2022-03-01 02:15:42', '2025-12-17 19:47:33', '4ZkX9bLd', '5129140'), - (280, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4ZkX9bLd', '5132533'), - (280, 1262, 'attending', '2022-03-10 14:02:07', '2025-12-17 19:47:33', '4ZkX9bLd', '5157773'), - (280, 1264, 'not_attending', '2022-03-22 23:20:50', '2025-12-17 19:47:25', '4ZkX9bLd', '5160281'), - (280, 1266, 'not_attending', '2022-03-15 00:14:41', '2025-12-17 19:47:33', '4ZkX9bLd', '5166407'), - (280, 1270, 'not_attending', '2022-03-20 16:21:19', '2025-12-17 19:47:25', '4ZkX9bLd', '5181277'), - (280, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4ZkX9bLd', '5186582'), - (280, 1273, 'attending', '2022-03-26 21:40:22', '2025-12-17 19:47:25', '4ZkX9bLd', '5186583'), - (280, 1274, 'attending', '2022-04-02 13:55:42', '2025-12-17 19:47:26', '4ZkX9bLd', '5186585'), - (280, 1276, 'attending', '2022-03-27 00:35:54', '2025-12-17 19:47:25', '4ZkX9bLd', '5186820'), - (280, 1279, 'not_attending', '2022-03-20 20:54:06', '2025-12-17 19:47:25', '4ZkX9bLd', '5187212'), - (280, 1281, 'attending', '2022-04-04 17:32:36', '2025-12-17 19:47:27', '4ZkX9bLd', '5190437'), - (280, 1284, 'not_attending', '2022-04-16 19:09:05', '2025-12-17 19:47:27', '4ZkX9bLd', '5195095'), - (280, 1294, 'attending', '2022-03-30 03:19:11', '2025-12-17 19:47:26', '4ZkX9bLd', '5214686'), - (280, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4ZkX9bLd', '5215989'), - (280, 1302, 'not_attending', '2022-04-03 03:54:41', '2025-12-17 19:47:27', '4ZkX9bLd', '5220867'), - (280, 1304, 'not_attending', '2022-04-04 12:56:57', '2025-12-17 19:47:26', '4ZkX9bLd', '5223468'), - (280, 1305, 'attending', '2022-04-04 17:33:28', '2025-12-17 19:47:27', '4ZkX9bLd', '5223673'), - (280, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4ZkX9bLd', '5223686'), - (280, 1308, 'not_attending', '2022-04-08 20:36:21', '2025-12-17 19:47:27', '4ZkX9bLd', '5226703'), - (280, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4ZkX9bLd', '5227432'), - (280, 1315, 'not_attending', '2022-04-22 01:17:23', '2025-12-17 19:47:27', '4ZkX9bLd', '5237522'), - (280, 1317, 'not_attending', '2022-04-11 04:09:30', '2025-12-17 19:47:27', '4ZkX9bLd', '5237543'), - (280, 1320, 'not_attending', '2022-04-24 22:46:25', '2025-12-17 19:47:27', '4ZkX9bLd', '5238354'), - (280, 1322, 'not_attending', '2022-04-26 00:04:38', '2025-12-17 19:47:27', '4ZkX9bLd', '5238356'), - (280, 1324, 'maybe', '2022-04-15 03:16:46', '2025-12-17 19:47:27', '4ZkX9bLd', '5238360'), - (280, 1326, 'attending', '2022-05-01 01:47:27', '2025-12-17 19:47:28', '4ZkX9bLd', '5238362'), - (280, 1336, 'attending', '2022-04-15 02:25:17', '2025-12-17 19:47:27', '4ZkX9bLd', '5244915'), - (280, 1337, 'attending', '2022-04-15 02:25:27', '2025-12-17 19:47:27', '4ZkX9bLd', '5245036'), - (280, 1346, 'attending', '2022-04-17 20:01:15', '2025-12-17 19:47:27', '4ZkX9bLd', '5247467'), - (280, 1348, 'maybe', '2022-05-01 17:49:57', '2025-12-17 19:47:28', '4ZkX9bLd', '5247605'), - (280, 1350, 'not_attending', '2022-04-19 20:22:52', '2025-12-17 19:47:27', '4ZkX9bLd', '5249763'), - (280, 1357, 'attending', '2022-04-25 17:54:54', '2025-12-17 19:47:27', '4ZkX9bLd', '5256017'), - (280, 1362, 'not_attending', '2022-04-25 23:30:23', '2025-12-17 19:47:28', '4ZkX9bLd', '5260800'), - (280, 1374, 'attending', '2022-04-30 21:27:01', '2025-12-17 19:47:28', '4ZkX9bLd', '5269930'), - (280, 1375, 'not_attending', '2022-05-05 23:49:41', '2025-12-17 19:47:28', '4ZkX9bLd', '5269932'), - (280, 1378, 'attending', '2022-05-08 14:18:49', '2025-12-17 19:47:28', '4ZkX9bLd', '5271448'), - (280, 1379, 'attending', '2022-05-20 12:30:27', '2025-12-17 19:47:29', '4ZkX9bLd', '5271449'), - (280, 1380, 'not_attending', '2022-05-08 14:19:23', '2025-12-17 19:47:30', '4ZkX9bLd', '5271450'), - (280, 1383, 'not_attending', '2022-05-08 22:10:10', '2025-12-17 19:47:28', '4ZkX9bLd', '5276469'), - (280, 1385, 'not_attending', '2022-05-07 19:43:58', '2025-12-17 19:47:28', '4ZkX9bLd', '5277822'), - (280, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4ZkX9bLd', '5278159'), - (280, 1392, 'not_attending', '2022-05-10 22:45:25', '2025-12-17 19:47:28', '4ZkX9bLd', '5279532'), - (280, 1401, 'not_attending', '2022-05-11 09:36:39', '2025-12-17 19:47:29', '4ZkX9bLd', '5286295'), - (280, 1403, 'not_attending', '2022-05-17 03:40:22', '2025-12-17 19:47:29', '4ZkX9bLd', '5288052'), - (280, 1407, 'attending', '2022-05-15 13:21:27', '2025-12-17 19:47:30', '4ZkX9bLd', '5363695'), - (280, 1408, 'not_attending', '2022-05-20 02:45:57', '2025-12-17 19:47:29', '4ZkX9bLd', '5365960'), - (280, 1414, 'not_attending', '2022-05-20 13:54:07', '2025-12-17 19:47:29', '4ZkX9bLd', '5368445'), - (280, 1415, 'attending', '2022-05-19 16:13:18', '2025-12-17 19:47:30', '4ZkX9bLd', '5368973'), - (280, 1419, 'not_attending', '2022-05-26 22:42:32', '2025-12-17 19:47:30', '4ZkX9bLd', '5373081'), - (280, 1423, 'not_attending', '2022-06-16 00:31:57', '2025-12-17 19:47:17', '4ZkX9bLd', '5375727'), - (280, 1428, 'not_attending', '2022-06-06 17:08:57', '2025-12-17 19:47:30', '4ZkX9bLd', '5378247'), - (280, 1431, 'attending', '2022-06-03 03:16:29', '2025-12-17 19:47:30', '4ZkX9bLd', '5389605'), - (280, 1441, 'not_attending', '2022-06-05 13:42:17', '2025-12-17 19:47:30', '4ZkX9bLd', '5397171'), - (280, 1442, 'not_attending', '2022-06-19 02:53:26', '2025-12-17 19:47:17', '4ZkX9bLd', '5397265'), - (280, 1446, 'not_attending', '2022-06-09 04:39:39', '2025-12-17 19:47:30', '4ZkX9bLd', '5399721'), - (280, 1451, 'attending', '2022-06-09 21:32:48', '2025-12-17 19:47:17', '4ZkX9bLd', '5403967'), - (280, 1455, 'not_attending', '2022-06-10 01:40:25', '2025-12-17 19:47:31', '4ZkX9bLd', '5404772'), - (280, 1458, 'not_attending', '2022-06-18 22:35:57', '2025-12-17 19:47:17', '4ZkX9bLd', '5404786'), - (280, 1462, 'not_attending', '2022-06-11 03:34:54', '2025-12-17 19:47:17', '4ZkX9bLd', '5405203'), - (280, 1463, 'not_attending', '2022-06-12 19:24:44', '2025-12-17 19:47:31', '4ZkX9bLd', '5405208'), - (280, 1466, 'not_attending', '2022-06-16 03:20:45', '2025-12-17 19:47:17', '4ZkX9bLd', '5406427'), - (280, 1470, 'not_attending', '2022-06-13 01:59:52', '2025-12-17 19:47:17', '4ZkX9bLd', '5407053'), - (280, 1473, 'not_attending', '2022-06-13 12:19:40', '2025-12-17 19:47:31', '4ZkX9bLd', '5407267'), - (280, 1476, 'attending', '2022-06-15 18:31:02', '2025-12-17 19:47:17', '4ZkX9bLd', '5408130'), - (280, 1478, 'attending', '2022-06-15 17:48:05', '2025-12-17 19:47:17', '4ZkX9bLd', '5408794'), - (280, 1480, 'attending', '2022-06-20 17:45:31', '2025-12-17 19:47:19', '4ZkX9bLd', '5411699'), - (280, 1482, 'attending', '2022-06-19 19:51:00', '2025-12-17 19:47:19', '4ZkX9bLd', '5412550'), - (280, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4ZkX9bLd', '5415046'), - (280, 1485, 'not_attending', '2022-06-21 20:24:20', '2025-12-17 19:47:17', '4ZkX9bLd', '5416276'), - (280, 1495, 'not_attending', '2022-06-27 01:52:19', '2025-12-17 19:47:19', '4ZkX9bLd', '5422086'), - (280, 1498, 'not_attending', '2022-06-29 17:43:48', '2025-12-17 19:47:19', '4ZkX9bLd', '5422406'), - (280, 1499, 'not_attending', '2022-06-29 17:43:51', '2025-12-17 19:47:19', '4ZkX9bLd', '5422407'), - (280, 1501, 'maybe', '2022-06-29 22:28:55', '2025-12-17 19:47:19', '4ZkX9bLd', '5424546'), - (280, 1502, 'not_attending', '2022-07-08 21:51:49', '2025-12-17 19:47:19', '4ZkX9bLd', '5424565'), - (280, 1504, 'attending', '2022-07-04 16:49:13', '2025-12-17 19:47:19', '4ZkX9bLd', '5426882'), - (280, 1505, 'attending', '2022-07-01 01:31:26', '2025-12-17 19:47:19', '4ZkX9bLd', '5427083'), - (280, 1507, 'not_attending', '2022-07-04 16:50:19', '2025-12-17 19:47:19', '4ZkX9bLd', '5433100'), - (280, 1508, 'attending', '2022-07-04 16:49:39', '2025-12-17 19:47:19', '4ZkX9bLd', '5433453'), - (280, 1511, 'not_attending', '2022-07-06 23:39:05', '2025-12-17 19:47:19', '4ZkX9bLd', '5437733'), - (280, 1513, 'not_attending', '2022-07-11 04:42:43', '2025-12-17 19:47:20', '4ZkX9bLd', '5441125'), - (280, 1514, 'attending', '2022-07-09 06:09:14', '2025-12-17 19:47:20', '4ZkX9bLd', '5441126'), - (280, 1515, 'attending', '2022-07-09 06:09:20', '2025-12-17 19:47:21', '4ZkX9bLd', '5441128'), - (280, 1516, 'attending', '2022-08-01 00:07:19', '2025-12-17 19:47:23', '4ZkX9bLd', '5441129'), - (280, 1517, 'not_attending', '2022-08-11 15:38:47', '2025-12-17 19:47:23', '4ZkX9bLd', '5441130'), - (280, 1518, 'attending', '2022-08-24 18:38:42', '2025-12-17 19:47:24', '4ZkX9bLd', '5441131'), - (280, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '4ZkX9bLd', '5441132'), - (280, 1520, 'not_attending', '2022-07-11 23:29:30', '2025-12-17 19:47:19', '4ZkX9bLd', '5441645'), - (280, 1522, 'attending', '2022-07-10 19:51:56', '2025-12-17 19:47:20', '4ZkX9bLd', '5442832'), - (280, 1524, 'maybe', '2022-07-11 21:22:10', '2025-12-17 19:47:19', '4ZkX9bLd', '5443300'), - (280, 1528, 'attending', '2022-07-13 23:05:18', '2025-12-17 19:47:20', '4ZkX9bLd', '5446643'), - (280, 1529, 'not_attending', '2022-07-15 16:09:27', '2025-12-17 19:47:19', '4ZkX9bLd', '5447079'), - (280, 1531, 'not_attending', '2022-07-16 18:48:44', '2025-12-17 19:47:19', '4ZkX9bLd', '5448756'), - (280, 1533, 'attending', '2022-07-30 19:29:21', '2025-12-17 19:47:21', '4ZkX9bLd', '5448758'), - (280, 1536, 'maybe', '2022-07-16 18:49:28', '2025-12-17 19:47:20', '4ZkX9bLd', '5449068'), - (280, 1539, 'not_attending', '2022-07-17 23:16:37', '2025-12-17 19:47:21', '4ZkX9bLd', '5449671'), - (280, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4ZkX9bLd', '5453325'), - (280, 1541, 'maybe', '2022-07-18 17:58:27', '2025-12-17 19:47:20', '4ZkX9bLd', '5453542'), - (280, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4ZkX9bLd', '5454516'), - (280, 1544, 'attending', '2022-09-13 01:06:38', '2025-12-17 19:47:11', '4ZkX9bLd', '5454517'), - (280, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4ZkX9bLd', '5454605'), - (280, 1546, 'not_attending', '2022-07-19 16:30:23', '2025-12-17 19:47:20', '4ZkX9bLd', '5454607'), - (280, 1547, 'not_attending', '2022-07-20 18:43:51', '2025-12-17 19:47:20', '4ZkX9bLd', '5454608'), - (280, 1550, 'maybe', '2022-07-22 00:23:44', '2025-12-17 19:47:20', '4ZkX9bLd', '5454803'), - (280, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4ZkX9bLd', '5455037'), - (280, 1557, 'not_attending', '2022-08-01 00:06:27', '2025-12-17 19:47:21', '4ZkX9bLd', '5458729'), - (280, 1558, 'not_attending', '2022-09-13 01:06:31', '2025-12-17 19:47:10', '4ZkX9bLd', '5458730'), - (280, 1559, 'not_attending', '2022-09-24 12:49:36', '2025-12-17 19:47:11', '4ZkX9bLd', '5458731'), - (280, 1561, 'not_attending', '2022-07-28 21:09:57', '2025-12-17 19:47:22', '4ZkX9bLd', '5461278'), - (280, 1562, 'not_attending', '2022-08-01 00:07:26', '2025-12-17 19:47:22', '4ZkX9bLd', '5469480'), - (280, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4ZkX9bLd', '5471073'), - (280, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4ZkX9bLd', '5474663'), - (280, 1567, 'attending', '2022-08-01 00:05:59', '2025-12-17 19:47:21', '4ZkX9bLd', '5477629'), - (280, 1568, 'not_attending', '2022-08-01 01:38:59', '2025-12-17 19:47:21', '4ZkX9bLd', '5480628'), - (280, 1569, 'maybe', '2022-08-01 17:27:49', '2025-12-17 19:47:21', '4ZkX9bLd', '5481507'), - (280, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4ZkX9bLd', '5482022'), - (280, 1572, 'not_attending', '2022-08-02 16:24:08', '2025-12-17 19:47:22', '4ZkX9bLd', '5482078'), - (280, 1575, 'not_attending', '2022-08-05 02:05:56', '2025-12-17 19:47:23', '4ZkX9bLd', '5482250'), - (280, 1577, 'attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4ZkX9bLd', '5482793'), - (280, 1579, 'not_attending', '2022-08-04 02:50:18', '2025-12-17 19:47:22', '4ZkX9bLd', '5486019'), - (280, 1580, 'attending', '2022-08-07 02:12:47', '2025-12-17 19:47:22', '4ZkX9bLd', '5488912'), - (280, 1581, 'not_attending', '2022-08-07 18:29:50', '2025-12-17 19:47:22', '4ZkX9bLd', '5490302'), - (280, 1586, 'attending', '2022-08-09 19:44:57', '2025-12-17 19:47:23', '4ZkX9bLd', '5492019'), - (280, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4ZkX9bLd', '5492192'), - (280, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4ZkX9bLd', '5493139'), - (280, 1589, 'attending', '2022-08-12 18:19:19', '2025-12-17 19:47:23', '4ZkX9bLd', '5493159'), - (280, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', '4ZkX9bLd', '5493200'), - (280, 1593, 'maybe', '2022-08-10 17:49:41', '2025-12-17 19:47:22', '4ZkX9bLd', '5494043'), - (280, 1595, 'not_attending', '2022-08-10 01:09:42', '2025-12-17 19:47:22', '4ZkX9bLd', '5495736'), - (280, 1603, 'not_attending', '2022-08-19 20:53:51', '2025-12-17 19:47:23', '4ZkX9bLd', '5497895'), - (280, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4ZkX9bLd', '5502188'), - (280, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4ZkX9bLd', '5505059'), - (280, 1609, 'attending', '2022-08-18 13:00:13', '2025-12-17 19:47:23', '4ZkX9bLd', '5506590'), - (280, 1610, 'attending', '2022-08-18 13:00:23', '2025-12-17 19:47:23', '4ZkX9bLd', '5506595'), - (280, 1615, 'not_attending', '2022-08-25 23:57:11', '2025-12-17 19:47:23', '4ZkX9bLd', '5509055'), - (280, 1618, 'attending', '2022-08-22 03:52:04', '2025-12-17 19:47:23', '4ZkX9bLd', '5512005'), - (280, 1619, 'not_attending', '2022-08-23 22:28:55', '2025-12-17 19:47:23', '4ZkX9bLd', '5512862'), - (280, 1620, 'not_attending', '2022-08-23 02:32:43', '2025-12-17 19:47:23', '4ZkX9bLd', '5513046'), - (280, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4ZkX9bLd', '5513985'), - (280, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', '4ZkX9bLd', '5519981'), - (280, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4ZkX9bLd', '5522550'), - (280, 1630, 'attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4ZkX9bLd', '5534683'), - (280, 1635, 'not_attending', '2022-09-13 01:06:35', '2025-12-17 19:47:10', '4ZkX9bLd', '5537735'), - (280, 1637, 'attending', '2022-08-31 03:33:20', '2025-12-17 19:47:24', '4ZkX9bLd', '5539591'), - (280, 1640, 'maybe', '2022-09-13 01:06:33', '2025-12-17 19:47:10', '4ZkX9bLd', '5540859'), - (280, 1643, 'not_attending', '2022-09-18 15:52:30', '2025-12-17 19:47:11', '4ZkX9bLd', '5545856'), - (280, 1644, 'attending', '2022-09-13 01:06:21', '2025-12-17 19:47:11', '4ZkX9bLd', '5545857'), - (280, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4ZkX9bLd', '5546619'), - (280, 1647, 'not_attending', '2022-09-13 21:43:18', '2025-12-17 19:47:11', '4ZkX9bLd', '5548660'), - (280, 1653, 'maybe', '2022-09-19 17:28:27', '2025-12-17 19:47:11', '4ZkX9bLd', '5554400'), - (280, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4ZkX9bLd', '5555245'), - (280, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4ZkX9bLd', '5557747'), - (280, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4ZkX9bLd', '5560255'), - (280, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4ZkX9bLd', '5562906'), - (280, 1665, 'attending', '2022-09-13 01:06:27', '2025-12-17 19:47:25', '4ZkX9bLd', '5563133'), - (280, 1667, 'attending', '2022-09-20 17:49:24', '2025-12-17 19:47:11', '4ZkX9bLd', '5563221'), - (280, 1668, 'not_attending', '2022-09-25 03:07:52', '2025-12-17 19:47:12', '4ZkX9bLd', '5563222'), - (280, 1673, 'not_attending', '2022-09-29 03:55:55', '2025-12-17 19:47:11', '4ZkX9bLd', '5592454'), - (280, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4ZkX9bLd', '5600604'), - (280, 1679, 'attending', '2022-10-03 17:41:06', '2025-12-17 19:47:12', '4ZkX9bLd', '5601099'), - (280, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4ZkX9bLd', '5605544'), - (280, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', '4ZkX9bLd', '5606737'), - (280, 1704, 'not_attending', '2022-10-06 22:18:38', '2025-12-17 19:47:12', '4ZkX9bLd', '5610508'), - (280, 1718, 'attending', '2022-10-18 23:10:16', '2025-12-17 19:47:12', '4ZkX9bLd', '5630907'), - (280, 1719, 'attending', '2022-10-05 17:32:40', '2025-12-17 19:47:12', '4ZkX9bLd', '5630958'), - (280, 1720, 'attending', '2022-10-05 17:32:44', '2025-12-17 19:47:12', '4ZkX9bLd', '5630959'), - (280, 1721, 'not_attending', '2022-10-05 17:32:47', '2025-12-17 19:47:13', '4ZkX9bLd', '5630960'), - (280, 1722, 'attending', '2022-10-14 21:49:45', '2025-12-17 19:47:14', '4ZkX9bLd', '5630961'), - (280, 1723, 'attending', '2022-10-31 17:47:03', '2025-12-17 19:47:15', '4ZkX9bLd', '5630962'), - (280, 1724, 'attending', '2022-10-31 17:47:07', '2025-12-17 19:47:15', '4ZkX9bLd', '5630966'), - (280, 1725, 'attending', '2022-10-31 17:47:11', '2025-12-17 19:47:16', '4ZkX9bLd', '5630967'), - (280, 1726, 'attending', '2022-11-14 03:48:21', '2025-12-17 19:47:16', '4ZkX9bLd', '5630968'), - (280, 1727, 'attending', '2022-11-29 18:44:09', '2025-12-17 19:47:16', '4ZkX9bLd', '5630969'), - (280, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4ZkX9bLd', '5635406'), - (280, 1736, 'not_attending', '2022-10-24 01:18:03', '2025-12-17 19:47:15', '4ZkX9bLd', '5638456'), - (280, 1737, 'not_attending', '2022-11-23 23:57:32', '2025-12-17 19:47:16', '4ZkX9bLd', '5638457'), - (280, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4ZkX9bLd', '5638765'), - (280, 1739, 'not_attending', '2022-10-21 20:51:48', '2025-12-17 19:47:14', '4ZkX9bLd', '5640097'), - (280, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4ZkX9bLd', '5640843'), - (280, 1742, 'not_attending', '2022-10-10 18:30:16', '2025-12-17 19:47:13', '4ZkX9bLd', '5641245'), - (280, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4ZkX9bLd', '5641521'), - (280, 1744, 'not_attending', '2022-11-23 18:37:24', '2025-12-17 19:47:16', '4ZkX9bLd', '5642818'), - (280, 1745, 'not_attending', '2022-10-11 17:40:25', '2025-12-17 19:47:12', '4ZkX9bLd', '5643088'), - (280, 1747, 'attending', '2022-10-12 20:43:59', '2025-12-17 19:47:13', '4ZkX9bLd', '5648009'), - (280, 1750, 'not_attending', '2022-11-04 12:10:55', '2025-12-17 19:47:15', '4ZkX9bLd', '5652365'), - (280, 1751, 'not_attending', '2022-10-16 17:45:57', '2025-12-17 19:47:13', '4ZkX9bLd', '5652395'), - (280, 1756, 'not_attending', '2022-10-19 03:36:43', '2025-12-17 19:47:13', '4ZkX9bLd', '5663338'), - (280, 1757, 'maybe', '2022-10-25 20:25:25', '2025-12-17 19:47:15', '4ZkX9bLd', '5668974'), - (280, 1761, 'not_attending', '2022-11-14 03:48:39', '2025-12-17 19:47:16', '4ZkX9bLd', '5670434'), - (280, 1762, 'attending', '2022-11-20 23:48:26', '2025-12-17 19:47:16', '4ZkX9bLd', '5670445'), - (280, 1763, 'not_attending', '2022-11-06 17:40:28', '2025-12-17 19:47:15', '4ZkX9bLd', '5670803'), - (280, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4ZkX9bLd', '5671637'), - (280, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4ZkX9bLd', '5672329'), - (280, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4ZkX9bLd', '5674057'), - (280, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4ZkX9bLd', '5674060'), - (280, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', '4ZkX9bLd', '5677461'), - (280, 1776, 'maybe', '2022-11-01 03:45:17', '2025-12-17 19:47:15', '4ZkX9bLd', '5691067'), - (280, 1780, 'attending', '2022-11-01 22:16:38', '2025-12-17 19:47:15', '4ZkX9bLd', '5696082'), - (280, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4ZkX9bLd', '5698046'), - (280, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4ZkX9bLd', '5699760'), - (280, 1790, 'not_attending', '2022-11-12 19:51:54', '2025-12-17 19:47:15', '4ZkX9bLd', '5727424'), - (280, 1793, 'maybe', '2022-11-24 04:31:21', '2025-12-17 19:47:16', '4ZkX9bLd', '5736365'), - (280, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4ZkX9bLd', '5741601'), - (280, 1796, 'not_attending', '2022-11-29 18:44:04', '2025-12-17 19:47:16', '4ZkX9bLd', '5756755'), - (280, 1797, 'not_attending', '2022-12-07 13:30:20', '2025-12-17 19:47:17', '4ZkX9bLd', '5757486'), - (280, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4ZkX9bLd', '5763458'), - (280, 1806, 'not_attending', '2023-01-21 23:40:15', '2025-12-17 19:47:05', '4ZkX9bLd', '5764676'), - (280, 1808, 'not_attending', '2023-03-04 18:36:14', '2025-12-17 19:47:08', '4ZkX9bLd', '5764678'), - (280, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4ZkX9bLd', '5774172'), - (280, 1826, 'not_attending', '2022-12-07 13:31:05', '2025-12-17 19:47:04', '4ZkX9bLd', '5776768'), - (280, 1828, 'not_attending', '2022-11-29 18:44:02', '2025-12-17 19:47:16', '4ZkX9bLd', '5778865'), - (280, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '4ZkX9bLd', '5818247'), - (280, 1834, 'attending', '2022-12-07 13:30:41', '2025-12-17 19:47:17', '4ZkX9bLd', '5819470'), - (280, 1835, 'not_attending', '2022-12-07 13:30:33', '2025-12-17 19:47:05', '4ZkX9bLd', '5819471'), - (280, 1837, 'not_attending', '2022-12-07 13:30:03', '2025-12-17 19:47:16', '4ZkX9bLd', '5820146'), - (280, 1839, 'not_attending', '2022-12-19 18:41:34', '2025-12-17 19:47:04', '4ZkX9bLd', '5821920'), - (280, 1841, 'attending', '2022-12-26 21:49:46', '2025-12-17 19:47:05', '4ZkX9bLd', '5827665'), - (280, 1842, 'attending', '2022-12-12 01:47:23', '2025-12-17 19:47:04', '4ZkX9bLd', '5827739'), - (280, 1843, 'not_attending', '2022-12-18 01:22:10', '2025-12-17 19:47:04', '4ZkX9bLd', '5844304'), - (280, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4ZkX9bLd', '5844306'), - (280, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4ZkX9bLd', '5850159'), - (280, 1848, 'not_attending', '2023-01-04 02:25:08', '2025-12-17 19:47:05', '4ZkX9bLd', '5852466'), - (280, 1849, 'maybe', '2023-01-04 02:25:03', '2025-12-17 19:47:05', '4ZkX9bLd', '5852467'), - (280, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4ZkX9bLd', '5858999'), - (280, 1852, 'not_attending', '2023-01-09 14:35:33', '2025-12-17 19:47:05', '4ZkX9bLd', '5869898'), - (280, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4ZkX9bLd', '5871984'), - (280, 1859, 'not_attending', '2023-01-21 16:25:03', '2025-12-17 19:47:05', '4ZkX9bLd', '5876234'), - (280, 1861, 'not_attending', '2023-01-15 16:00:52', '2025-12-17 19:47:05', '4ZkX9bLd', '5876354'), - (280, 1864, 'attending', '2023-01-17 10:58:41', '2025-12-17 19:47:05', '4ZkX9bLd', '5879675'), - (280, 1865, 'attending', '2023-01-24 21:34:02', '2025-12-17 19:47:06', '4ZkX9bLd', '5879676'), - (280, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '4ZkX9bLd', '5880939'), - (280, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4ZkX9bLd', '5880940'), - (280, 1868, 'not_attending', '2023-02-21 23:43:45', '2025-12-17 19:47:07', '4ZkX9bLd', '5880942'), - (280, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4ZkX9bLd', '5880943'), - (280, 1873, 'not_attending', '2023-01-20 13:03:37', '2025-12-17 19:47:05', '4ZkX9bLd', '5885295'), - (280, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4ZkX9bLd', '5887890'), - (280, 1875, 'not_attending', '2023-01-28 01:04:53', '2025-12-17 19:47:06', '4ZkX9bLd', '5887908'), - (280, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4ZkX9bLd', '5888598'), - (280, 1878, 'attending', '2023-01-24 19:17:42', '2025-12-17 19:47:07', '4ZkX9bLd', '5893000'), - (280, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4ZkX9bLd', '5893260'), - (280, 1882, 'attending', '2023-01-30 23:23:20', '2025-12-17 19:47:06', '4ZkX9bLd', '5898447'), - (280, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4ZkX9bLd', '5899826'), - (280, 1885, 'not_attending', '2023-02-11 03:35:27', '2025-12-17 19:47:08', '4ZkX9bLd', '5899928'), - (280, 1886, 'not_attending', '2023-02-25 21:07:57', '2025-12-17 19:47:09', '4ZkX9bLd', '5899930'), - (280, 1888, 'not_attending', '2023-02-04 04:16:11', '2025-12-17 19:47:07', '4ZkX9bLd', '5900197'), - (280, 1889, 'not_attending', '2023-02-01 18:25:16', '2025-12-17 19:47:07', '4ZkX9bLd', '5900199'), - (280, 1890, 'attending', '2023-02-02 18:06:03', '2025-12-17 19:47:08', '4ZkX9bLd', '5900200'), - (280, 1891, 'not_attending', '2023-03-14 20:57:27', '2025-12-17 19:46:56', '4ZkX9bLd', '5900202'), - (280, 1892, 'not_attending', '2023-03-12 19:25:04', '2025-12-17 19:46:56', '4ZkX9bLd', '5900203'), - (280, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4ZkX9bLd', '5901108'), - (280, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4ZkX9bLd', '5901126'), - (280, 1897, 'not_attending', '2023-02-07 01:57:03', '2025-12-17 19:47:07', '4ZkX9bLd', '5901128'), - (280, 1898, 'not_attending', '2023-02-01 00:01:55', '2025-12-17 19:47:06', '4ZkX9bLd', '5901263'), - (280, 1899, 'not_attending', '2023-02-07 01:57:11', '2025-12-17 19:47:07', '4ZkX9bLd', '5901323'), - (280, 1908, 'not_attending', '2023-02-05 16:06:15', '2025-12-17 19:47:07', '4ZkX9bLd', '5905018'), - (280, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4ZkX9bLd', '5909655'), - (280, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4ZkX9bLd', '5910522'), - (280, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4ZkX9bLd', '5910526'), - (280, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4ZkX9bLd', '5910528'), - (280, 1922, 'not_attending', '2023-02-13 14:16:07', '2025-12-17 19:47:07', '4ZkX9bLd', '5916219'), - (280, 1927, 'not_attending', '2023-03-17 04:15:17', '2025-12-17 19:47:10', '4ZkX9bLd', '5932621'), - (280, 1929, 'maybe', '2023-02-18 19:38:06', '2025-12-17 19:47:07', '4ZkX9bLd', '5932628'), - (280, 1933, 'attending', '2023-02-20 21:16:17', '2025-12-17 19:47:08', '4ZkX9bLd', '5936234'), - (280, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4ZkX9bLd', '5958351'), - (280, 1936, 'not_attending', '2023-02-23 17:46:47', '2025-12-17 19:47:08', '4ZkX9bLd', '5959397'), - (280, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4ZkX9bLd', '5959751'), - (280, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4ZkX9bLd', '5959755'), - (280, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4ZkX9bLd', '5960055'), - (280, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4ZkX9bLd', '5961684'), - (280, 1942, 'not_attending', '2023-02-26 03:52:49', '2025-12-17 19:47:08', '4ZkX9bLd', '5962085'), - (280, 1943, 'not_attending', '2023-03-04 23:19:42', '2025-12-17 19:47:10', '4ZkX9bLd', '5962091'), - (280, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '4ZkX9bLd', '5962132'), - (280, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '4ZkX9bLd', '5962133'), - (280, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4ZkX9bLd', '5962134'), - (280, 1947, 'not_attending', '2023-03-06 04:58:35', '2025-12-17 19:47:09', '4ZkX9bLd', '5962233'), - (280, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4ZkX9bLd', '5962317'), - (280, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4ZkX9bLd', '5962318'), - (280, 1951, 'not_attending', '2023-03-05 18:07:21', '2025-12-17 19:46:56', '4ZkX9bLd', '5965933'), - (280, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4ZkX9bLd', '5967014'), - (280, 1955, 'not_attending', '2023-03-14 20:57:31', '2025-12-17 19:46:57', '4ZkX9bLd', '5972529'), - (280, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '4ZkX9bLd', '5972763'), - (280, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4ZkX9bLd', '5972815'), - (280, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4ZkX9bLd', '5974016'), - (280, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4ZkX9bLd', '5981515'), - (280, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4ZkX9bLd', '5993516'), - (280, 1972, 'not_attending', '2023-03-14 20:58:06', '2025-12-17 19:46:56', '4ZkX9bLd', '5993776'), - (280, 1973, 'maybe', '2023-03-14 20:57:51', '2025-12-17 19:46:56', '4ZkX9bLd', '5993777'), - (280, 1974, 'maybe', '2023-03-13 17:56:06', '2025-12-17 19:46:57', '4ZkX9bLd', '5993778'), - (280, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4ZkX9bLd', '5998939'), - (280, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4ZkX9bLd', '6028191'), - (280, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4ZkX9bLd', '6040066'), - (280, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4ZkX9bLd', '6042717'), - (280, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4ZkX9bLd', '6044838'), - (280, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4ZkX9bLd', '6044839'), - (280, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZkX9bLd', '6045684'), - (280, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4ZkX9bLd', '6050104'), - (280, 1998, 'maybe', '2023-04-05 14:39:04', '2025-12-17 19:46:59', '4ZkX9bLd', '6052056'), - (280, 1999, 'not_attending', '2023-04-19 13:15:00', '2025-12-17 19:47:00', '4ZkX9bLd', '6052057'), - (280, 2002, 'not_attending', '2023-04-19 13:17:27', '2025-12-17 19:47:01', '4ZkX9bLd', '6052605'), - (280, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4ZkX9bLd', '6053195'), - (280, 2006, 'not_attending', '2023-04-07 18:13:46', '2025-12-17 19:46:59', '4ZkX9bLd', '6053198'), - (280, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4ZkX9bLd', '6056085'), - (280, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4ZkX9bLd', '6056916'), - (280, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4ZkX9bLd', '6059290'), - (280, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4ZkX9bLd', '6060328'), - (280, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4ZkX9bLd', '6061037'), - (280, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4ZkX9bLd', '6061039'), - (280, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4ZkX9bLd', '6067245'), - (280, 2025, 'not_attending', '2023-04-19 13:15:48', '2025-12-17 19:47:00', '4ZkX9bLd', '6067457'), - (280, 2026, 'not_attending', '2023-04-19 13:15:22', '2025-12-17 19:47:01', '4ZkX9bLd', '6068078'), - (280, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4ZkX9bLd', '6068094'), - (280, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4ZkX9bLd', '6068252'), - (280, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4ZkX9bLd', '6068253'), - (280, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4ZkX9bLd', '6068254'), - (280, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4ZkX9bLd', '6068280'), - (280, 2032, 'attending', '2023-06-01 19:44:28', '2025-12-17 19:47:04', '4ZkX9bLd', '6068281'), - (280, 2033, 'maybe', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4ZkX9bLd', '6069093'), - (280, 2036, 'attending', '2023-04-21 03:05:44', '2025-12-17 19:47:01', '4ZkX9bLd', '6070780'), - (280, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4ZkX9bLd', '6072528'), - (280, 2046, 'not_attending', '2023-05-11 04:59:27', '2025-12-17 19:47:02', '4ZkX9bLd', '6076020'), - (280, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4ZkX9bLd', '6079840'), - (280, 2050, 'not_attending', '2023-05-01 15:04:39', '2025-12-17 19:47:02', '4ZkX9bLd', '6080489'), - (280, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4ZkX9bLd', '6083398'), - (280, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4ZkX9bLd', '6093504'), - (280, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4ZkX9bLd', '6097414'), - (280, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4ZkX9bLd', '6097442'), - (280, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4ZkX9bLd', '6097684'), - (280, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4ZkX9bLd', '6098762'), - (280, 2064, 'not_attending', '2023-06-19 00:50:38', '2025-12-17 19:46:50', '4ZkX9bLd', '6099988'), - (280, 2065, 'not_attending', '2023-06-12 12:44:48', '2025-12-17 19:46:49', '4ZkX9bLd', '6101169'), - (280, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4ZkX9bLd', '6101361'), - (280, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4ZkX9bLd', '6101362'), - (280, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4ZkX9bLd', '6103752'), - (280, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4ZkX9bLd', '6107314'), - (280, 2078, 'maybe', '2023-05-21 13:34:45', '2025-12-17 19:47:03', '4ZkX9bLd', '6114163'), - (280, 2080, 'not_attending', '2023-05-27 17:17:28', '2025-12-17 19:47:04', '4ZkX9bLd', '6114677'), - (280, 2086, 'not_attending', '2023-05-26 16:00:21', '2025-12-17 19:47:04', '4ZkX9bLd', '6119877'), - (280, 2087, 'not_attending', '2023-05-30 19:21:41', '2025-12-17 19:47:04', '4ZkX9bLd', '6120034'), - (280, 2089, 'not_attending', '2023-06-05 03:57:17', '2025-12-17 19:47:04', '4ZkX9bLd', '6125227'), - (280, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4ZkX9bLd', '6136733'), - (280, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4ZkX9bLd', '6137989'), - (280, 2097, 'attending', '2023-06-07 16:07:19', '2025-12-17 19:47:04', '4ZkX9bLd', '6139059'), - (280, 2104, 'attending', '2023-06-18 23:14:58', '2025-12-17 19:46:50', '4ZkX9bLd', '6149499'), - (280, 2105, 'not_attending', '2023-06-19 20:38:59', '2025-12-17 19:46:50', '4ZkX9bLd', '6149551'), - (280, 2106, 'not_attending', '2023-06-20 18:09:50', '2025-12-17 19:46:50', '4ZkX9bLd', '6150479'), - (280, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4ZkX9bLd', '6150864'), - (280, 2110, 'not_attending', '2023-06-20 18:09:58', '2025-12-17 19:46:50', '4ZkX9bLd', '6155491'), - (280, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4ZkX9bLd', '6164417'), - (280, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4ZkX9bLd', '6166388'), - (280, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4ZkX9bLd', '6176439'), - (280, 2122, 'not_attending', '2023-07-03 00:36:11', '2025-12-17 19:46:51', '4ZkX9bLd', '6176476'), - (280, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '4ZkX9bLd', '6182410'), - (280, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4ZkX9bLd', '6185812'), - (280, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4ZkX9bLd', '6187651'), - (280, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4ZkX9bLd', '6187963'), - (280, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4ZkX9bLd', '6187964'), - (280, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4ZkX9bLd', '6187966'), - (280, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4ZkX9bLd', '6187967'), - (280, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4ZkX9bLd', '6187969'), - (280, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4ZkX9bLd', '6334878'), - (280, 2147, 'not_attending', '2023-07-16 20:11:24', '2025-12-17 19:46:52', '4ZkX9bLd', '6335666'), - (280, 2148, 'not_attending', '2023-07-21 15:03:28', '2025-12-17 19:46:53', '4ZkX9bLd', '6335667'), - (280, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4ZkX9bLd', '6337236'), - (280, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4ZkX9bLd', '6337970'), - (280, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4ZkX9bLd', '6338308'), - (280, 2159, 'attending', '2023-07-21 15:03:07', '2025-12-17 19:46:53', '4ZkX9bLd', '6338355'), - (280, 2160, 'attending', '2023-07-29 18:19:22', '2025-12-17 19:46:54', '4ZkX9bLd', '6338358'), - (280, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4ZkX9bLd', '6340845'), - (280, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4ZkX9bLd', '6341710'), - (280, 2164, 'not_attending', '2023-07-24 22:20:25', '2025-12-17 19:46:54', '4ZkX9bLd', '6341797'), - (280, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4ZkX9bLd', '6342044'), - (280, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4ZkX9bLd', '6342298'), - (280, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '4ZkX9bLd', '6343294'), - (280, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4ZkX9bLd', '6347034'), - (280, 2177, 'not_attending', '2023-08-04 20:15:32', '2025-12-17 19:46:55', '4ZkX9bLd', '6347053'), - (280, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4ZkX9bLd', '6347056'), - (280, 2180, 'not_attending', '2023-07-27 15:21:00', '2025-12-17 19:46:54', '4ZkX9bLd', '6348788'), - (280, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4ZkX9bLd', '6353830'), - (280, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4ZkX9bLd', '6353831'), - (280, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4ZkX9bLd', '6357867'), - (280, 2190, 'attending', '2023-08-03 12:28:01', '2025-12-17 19:46:55', '4ZkX9bLd', '6357892'), - (280, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4ZkX9bLd', '6358652'), - (280, 2200, 'attending', '2023-08-10 02:24:49', '2025-12-17 19:46:55', '4ZkX9bLd', '6359850'), - (280, 2204, 'not_attending', '2023-08-13 20:55:06', '2025-12-17 19:46:55', '4ZkX9bLd', '6361542'), - (280, 2206, 'not_attending', '2023-08-08 20:18:06', '2025-12-17 19:46:55', '4ZkX9bLd', '6361659'), - (280, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4ZkX9bLd', '6361709'), - (280, 2209, 'maybe', '2023-08-23 14:03:27', '2025-12-17 19:46:55', '4ZkX9bLd', '6361710'), - (280, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4ZkX9bLd', '6361711'), - (280, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4ZkX9bLd', '6361712'), - (280, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4ZkX9bLd', '6361713'), - (280, 2214, 'attending', '2023-08-10 02:25:06', '2025-12-17 19:46:55', '4ZkX9bLd', '6363218'), - (280, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4ZkX9bLd', '6382573'), - (280, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4ZkX9bLd', '6388604'), - (280, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4ZkX9bLd', '6394629'), - (280, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4ZkX9bLd', '6394631'), - (280, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4ZkX9bLd', '6440863'), - (280, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4ZkX9bLd', '6445440'), - (280, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4ZkX9bLd', '6453951'), - (280, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4ZkX9bLd', '6461696'), - (280, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4ZkX9bLd', '6462129'), - (280, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4ZkX9bLd', '6463218'), - (280, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4ZkX9bLd', '6472181'), - (280, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4ZkX9bLd', '6482693'), - (280, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4ZkX9bLd', '6484200'), - (280, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '4ZkX9bLd', '6484680'), - (280, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4ZkX9bLd', '6507741'), - (280, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4ZkX9bLd', '6514659'), - (280, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4ZkX9bLd', '6514660'), - (280, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4ZkX9bLd', '6519103'), - (280, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4ZkX9bLd', '6535681'), - (280, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4ZkX9bLd', '6584747'), - (280, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4ZkX9bLd', '6587097'), - (280, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4ZkX9bLd', '6609022'), - (280, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4ZkX9bLd', '6632757'), - (280, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4ZkX9bLd', '6644187'), - (280, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4ZkX9bLd', '6648951'), - (280, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4ZkX9bLd', '6648952'), - (280, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4ZkX9bLd', '6655401'), - (280, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4ZkX9bLd', '6661585'), - (280, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4ZkX9bLd', '6661588'), - (280, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4ZkX9bLd', '6661589'), - (280, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4ZkX9bLd', '6699906'), - (280, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4ZkX9bLd', '6699913'), - (280, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4ZkX9bLd', '6701109'), - (280, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4ZkX9bLd', '6705219'), - (280, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4ZkX9bLd', '6710153'), - (280, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4ZkX9bLd', '6711552'), - (280, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4ZkX9bLd', '6711553'), - (280, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4ZkX9bLd', '6722688'), - (280, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4ZkX9bLd', '6730620'), - (280, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4ZkX9bLd', '6730642'), - (280, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4ZkX9bLd', '6740364'), - (280, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4ZkX9bLd', '6743829'), - (280, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4ZkX9bLd', '7030380'), - (280, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4ZkX9bLd', '7033677'), - (280, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4ZkX9bLd', '7035415'), - (280, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4ZkX9bLd', '7044715'), - (280, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4ZkX9bLd', '7050318'), - (280, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4ZkX9bLd', '7050319'), - (280, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4ZkX9bLd', '7050322'), - (280, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4ZkX9bLd', '7057804'), - (280, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '4ZkX9bLd', '7059866'), - (280, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4ZkX9bLd', '7072824'), - (280, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4ZkX9bLd', '7074348'), - (280, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4ZkX9bLd', '7074364'), - (280, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4ZkX9bLd', '7089267'), - (280, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4ZkX9bLd', '7098747'), - (280, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4ZkX9bLd', '7113468'), - (280, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4ZkX9bLd', '7114856'), - (280, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4ZkX9bLd', '7114951'), - (280, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4ZkX9bLd', '7114955'), - (280, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4ZkX9bLd', '7114956'), - (280, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4ZkX9bLd', '7114957'), - (280, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4ZkX9bLd', '7153615'), - (280, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4ZkX9bLd', '7159484'), - (280, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4ZkX9bLd', '7178446'), - (280, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4ZkX9bLd', '7220467'), - (280, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4ZkX9bLd', '7240354'), - (280, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4ZkX9bLd', '7251633'), - (280, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4ZkX9bLd', '7263048'), - (280, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4ZkX9bLd', '7302674'), - (280, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4ZkX9bLd', '7324073'), - (280, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4ZkX9bLd', '7324074'), - (280, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4ZkX9bLd', '7324075'), - (280, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4ZkX9bLd', '7324078'), - (280, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4ZkX9bLd', '7324082'), - (280, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4ZkX9bLd', '7331457'), - (280, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4ZkX9bLd', '7356752'), - (280, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '4ZkX9bLd', '7363643'), - (280, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4ZkX9bLd', '7368606'), - (280, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4ZkX9bLd', '7397462'), - (280, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4ZkX9bLd', '7424275'), - (280, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4ZkX9bLd', '7424276'), - (280, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4ZkX9bLd', '7432751'), - (280, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4ZkX9bLd', '7432752'), - (280, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4ZkX9bLd', '7432753'), - (280, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4ZkX9bLd', '7432754'), - (280, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4ZkX9bLd', '7432755'), - (280, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4ZkX9bLd', '7432756'), - (280, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4ZkX9bLd', '7432758'), - (280, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4ZkX9bLd', '7432759'), - (280, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4ZkX9bLd', '7433834'), - (280, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4ZkX9bLd', '7470197'), - (280, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4ZkX9bLd', '7685613'), - (280, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4ZkX9bLd', '7688194'), - (280, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4ZkX9bLd', '7688196'), - (280, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4ZkX9bLd', '7688289'), - (281, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mqEaZO5m', '5195095'), - (281, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mqEaZO5m', '5247467'), - (281, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mqEaZO5m', '5260800'), - (281, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mqEaZO5m', '5269930'), - (281, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mqEaZO5m', '5271448'), - (281, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'mqEaZO5m', '5271449'), - (281, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mqEaZO5m', '5276469'), - (281, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mqEaZO5m', '5278159'), - (281, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mqEaZO5m', '5363695'), - (281, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mqEaZO5m', '5365960'), - (281, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mqEaZO5m', '5368973'), - (281, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mqEaZO5m', '5378247'), - (281, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mqEaZO5m', '5389605'), - (281, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mqEaZO5m', '5397265'), - (281, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mqEaZO5m', '6045684'), - (282, 262, 'attending', '2021-06-29 21:35:18', '2025-12-17 19:47:38', 'w4WeBkqm', '3149493'), - (282, 746, 'not_attending', '2021-07-10 00:10:18', '2025-12-17 19:47:39', 'w4WeBkqm', '3680626'), - (282, 870, 'attending', '2021-06-30 15:16:24', '2025-12-17 19:47:39', 'w4WeBkqm', '4136937'), - (282, 871, 'not_attending', '2021-07-11 12:37:49', '2025-12-17 19:47:39', 'w4WeBkqm', '4136938'), - (282, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'w4WeBkqm', '4136947'), - (282, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4WeBkqm', '4210314'), - (282, 887, 'not_attending', '2021-07-14 23:17:00', '2025-12-17 19:47:39', 'w4WeBkqm', '4225444'), - (282, 891, 'maybe', '2021-06-30 15:16:44', '2025-12-17 19:47:38', 'w4WeBkqm', '4229417'), - (282, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'w4WeBkqm', '4229418'), - (282, 899, 'not_attending', '2021-07-05 23:30:58', '2025-12-17 19:47:39', 'w4WeBkqm', '4239259'), - (282, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4WeBkqm', '4240316'), - (282, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4WeBkqm', '4240317'), - (282, 902, 'not_attending', '2021-08-07 22:51:19', '2025-12-17 19:47:41', 'w4WeBkqm', '4240318'), - (282, 903, 'attending', '2021-08-09 19:24:19', '2025-12-17 19:47:42', 'w4WeBkqm', '4240320'), - (282, 905, 'attending', '2021-07-05 18:57:16', '2025-12-17 19:47:39', 'w4WeBkqm', '4250163'), - (282, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4WeBkqm', '4275957'), - (282, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4WeBkqm', '4277819'), - (282, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4WeBkqm', '4301723'), - (282, 934, 'maybe', '2021-08-03 14:37:47', '2025-12-17 19:47:41', 'w4WeBkqm', '4302093'), - (282, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4WeBkqm', '4304151'), - (282, 952, 'maybe', '2021-08-04 23:39:54', '2025-12-17 19:47:41', 'w4WeBkqm', '4318286'), - (282, 954, 'maybe', '2021-08-09 19:23:55', '2025-12-17 19:47:41', 'w4WeBkqm', '4331303'), - (282, 967, 'maybe', '2021-08-12 01:20:04', '2025-12-17 19:47:42', 'w4WeBkqm', '4356164'), - (282, 971, 'not_attending', '2021-09-08 23:15:33', '2025-12-17 19:47:43', 'w4WeBkqm', '4356801'), - (282, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4WeBkqm', '4366186'), - (282, 974, 'not_attending', '2021-08-28 20:43:38', '2025-12-17 19:47:43', 'w4WeBkqm', '4366187'), - (282, 981, 'maybe', '2021-08-25 11:49:46', '2025-12-17 19:47:42', 'w4WeBkqm', '4387305'), - (282, 989, 'not_attending', '2021-09-09 13:33:27', '2025-12-17 19:47:43', 'w4WeBkqm', '4414282'), - (282, 990, 'attending', '2021-09-02 15:16:15', '2025-12-17 19:47:43', 'w4WeBkqm', '4420735'), - (282, 991, 'attending', '2021-09-05 13:50:19', '2025-12-17 19:47:43', 'w4WeBkqm', '4420738'), - (282, 992, 'not_attending', '2021-09-25 23:51:51', '2025-12-17 19:47:34', 'w4WeBkqm', '4420739'), - (282, 993, 'not_attending', '2021-10-16 23:32:42', '2025-12-17 19:47:34', 'w4WeBkqm', '4420741'), - (282, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'w4WeBkqm', '4420744'), - (282, 996, 'not_attending', '2021-10-16 23:32:50', '2025-12-17 19:47:35', 'w4WeBkqm', '4420747'), - (282, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'w4WeBkqm', '4420748'), - (282, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4WeBkqm', '4420749'), - (282, 999, 'not_attending', '2021-09-01 00:49:12', '2025-12-17 19:47:43', 'w4WeBkqm', '4421150'), - (282, 1013, 'maybe', '2021-09-05 13:49:16', '2025-12-17 19:47:43', 'w4WeBkqm', '4438817'), - (282, 1014, 'not_attending', '2021-09-06 22:16:00', '2025-12-17 19:47:43', 'w4WeBkqm', '4439233'), - (282, 1016, 'not_attending', '2021-09-09 13:33:08', '2025-12-17 19:47:43', 'w4WeBkqm', '4441271'), - (282, 1020, 'maybe', '2021-09-09 13:33:38', '2025-12-17 19:47:43', 'w4WeBkqm', '4451787'), - (282, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4WeBkqm', '4461883'), - (282, 1034, 'not_attending', '2021-09-17 16:28:31', '2025-12-17 19:47:43', 'w4WeBkqm', '4486265'), - (282, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4WeBkqm', '4508342'), - (282, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4WeBkqm', '4568602'), - (282, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4WeBkqm', '4585962'), - (282, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'w4WeBkqm', '4596356'), - (282, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4WeBkqm', '4598860'), - (282, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4WeBkqm', '4598861'), - (282, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'w4WeBkqm', '4602797'), - (282, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'w4WeBkqm', '4637896'), - (282, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'w4WeBkqm', '4642994'), - (282, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'w4WeBkqm', '4642995'), - (282, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'w4WeBkqm', '4642996'), - (282, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'w4WeBkqm', '4642997'), - (282, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'w4WeBkqm', '4645687'), - (282, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'w4WeBkqm', '4645698'), - (282, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'w4WeBkqm', '4645704'), - (282, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'w4WeBkqm', '4645705'), - (282, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'w4WeBkqm', '4668385'), - (282, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'w4WeBkqm', '4694407'), - (282, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'w4WeBkqm', '4706262'), - (282, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4WeBkqm', '4736497'), - (282, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4WeBkqm', '4736499'), - (282, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4WeBkqm', '4736500'), - (282, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4WeBkqm', '4736503'), - (282, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4WeBkqm', '4736504'), - (282, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'w4WeBkqm', '4746789'), - (282, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'w4WeBkqm', '4753929'), - (282, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4WeBkqm', '5038850'), - (282, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4WeBkqm', '5045826'), - (282, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4WeBkqm', '5132533'), - (282, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4WeBkqm', '5186582'), - (282, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4WeBkqm', '5186583'), - (282, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4WeBkqm', '5186585'), - (282, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4WeBkqm', '5190437'), - (282, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4WeBkqm', '5215989'), - (282, 1518, 'attending', '2022-08-31 13:17:52', '2025-12-17 19:47:24', 'w4WeBkqm', '5441131'), - (282, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'w4WeBkqm', '5441132'), - (282, 1544, 'attending', '2022-09-13 23:11:58', '2025-12-17 19:47:11', 'w4WeBkqm', '5454517'), - (282, 1558, 'maybe', '2022-09-13 23:11:32', '2025-12-17 19:47:10', 'w4WeBkqm', '5458730'), - (282, 1561, 'not_attending', '2022-08-11 04:53:05', '2025-12-17 19:47:22', 'w4WeBkqm', '5461278'), - (282, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'w4WeBkqm', '5488912'), - (282, 1591, 'attending', '2022-08-11 01:40:04', '2025-12-17 19:47:22', 'w4WeBkqm', '5493764'), - (282, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'w4WeBkqm', '5502188'), - (282, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'w4WeBkqm', '5505059'), - (282, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'w4WeBkqm', '5509055'), - (282, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'w4WeBkqm', '5512862'), - (282, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'w4WeBkqm', '5513985'), - (282, 1626, 'maybe', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'w4WeBkqm', '5519981'), - (282, 1628, 'attending', '2022-08-27 17:09:03', '2025-12-17 19:47:23', 'w4WeBkqm', '5522500'), - (282, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'w4WeBkqm', '5522550'), - (282, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'w4WeBkqm', '5534683'), - (282, 1635, 'maybe', '2022-09-13 23:11:51', '2025-12-17 19:47:10', 'w4WeBkqm', '5537735'), - (282, 1640, 'maybe', '2022-09-13 23:11:41', '2025-12-17 19:47:10', 'w4WeBkqm', '5540859'), - (282, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'w4WeBkqm', '5546619'), - (282, 1647, 'attending', '2022-09-13 23:11:16', '2025-12-17 19:47:11', 'w4WeBkqm', '5548660'), - (282, 1648, 'maybe', '2022-09-09 18:41:33', '2025-12-17 19:47:24', 'w4WeBkqm', '5548974'), - (282, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'w4WeBkqm', '5555245'), - (282, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'w4WeBkqm', '5557747'), - (282, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'w4WeBkqm', '5560255'), - (282, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'w4WeBkqm', '5562906'), - (282, 1667, 'not_attending', '2022-09-24 07:52:42', '2025-12-17 19:47:11', 'w4WeBkqm', '5563221'), - (282, 1674, 'attending', '2022-09-25 18:11:49', '2025-12-17 19:47:12', 'w4WeBkqm', '5593112'), - (282, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'w4WeBkqm', '5600604'), - (282, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'w4WeBkqm', '5605544'), - (282, 1697, 'not_attending', '2022-09-25 18:11:32', '2025-12-17 19:47:12', 'w4WeBkqm', '5605560'), - (282, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'w4WeBkqm', '5606737'), - (282, 1713, 'maybe', '2022-10-17 22:00:52', '2025-12-17 19:47:13', 'w4WeBkqm', '5622108'), - (282, 1719, 'maybe', '2022-10-05 19:43:52', '2025-12-17 19:47:12', 'w4WeBkqm', '5630958'), - (282, 1720, 'not_attending', '2022-10-05 19:44:00', '2025-12-17 19:47:12', 'w4WeBkqm', '5630959'), - (282, 1721, 'maybe', '2022-10-05 19:44:05', '2025-12-17 19:47:13', 'w4WeBkqm', '5630960'), - (282, 1722, 'maybe', '2022-10-05 19:44:10', '2025-12-17 19:47:14', 'w4WeBkqm', '5630961'), - (282, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'w4WeBkqm', '5630962'), - (282, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'w4WeBkqm', '5630966'), - (282, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'w4WeBkqm', '5630967'), - (282, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'w4WeBkqm', '5630968'), - (282, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'w4WeBkqm', '5635406'), - (282, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'w4WeBkqm', '5638765'), - (282, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'w4WeBkqm', '5640097'), - (282, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'w4WeBkqm', '5640843'), - (282, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'w4WeBkqm', '5641521'), - (282, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'w4WeBkqm', '5642818'), - (282, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'w4WeBkqm', '5652395'), - (282, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'w4WeBkqm', '5670445'), - (282, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'w4WeBkqm', '5671637'), - (282, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'w4WeBkqm', '5672329'), - (282, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'w4WeBkqm', '5674057'), - (282, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'w4WeBkqm', '5674060'), - (282, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'w4WeBkqm', '5677461'), - (282, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'w4WeBkqm', '5698046'), - (282, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'w4WeBkqm', '5699760'), - (282, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'w4WeBkqm', '5741601'), - (282, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'w4WeBkqm', '5763458'), - (282, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'w4WeBkqm', '5774172'), - (282, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'w4WeBkqm', '5818247'), - (282, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'w4WeBkqm', '5819471'), - (282, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'w4WeBkqm', '5827739'), - (282, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'w4WeBkqm', '5844306'), - (282, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'w4WeBkqm', '5850159'), - (282, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'w4WeBkqm', '5858999'), - (282, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'w4WeBkqm', '5871984'), - (282, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'w4WeBkqm', '5876354'), - (282, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'w4WeBkqm', '5880939'), - (282, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'w4WeBkqm', '5880940'), - (282, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'w4WeBkqm', '5880942'), - (282, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'w4WeBkqm', '5880943'), - (282, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'w4WeBkqm', '5887890'), - (282, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'w4WeBkqm', '5888598'), - (282, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'w4WeBkqm', '5893260'), - (282, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'w4WeBkqm', '5899826'), - (282, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'w4WeBkqm', '5900199'), - (282, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'w4WeBkqm', '5900200'), - (282, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'w4WeBkqm', '5900202'), - (282, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'w4WeBkqm', '5900203'), - (282, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'w4WeBkqm', '5901108'), - (282, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'w4WeBkqm', '5901126'), - (282, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'w4WeBkqm', '5909655'), - (282, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'w4WeBkqm', '5910522'), - (282, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'w4WeBkqm', '5910526'), - (282, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'w4WeBkqm', '5910528'), - (282, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'w4WeBkqm', '5916219'), - (282, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'w4WeBkqm', '5936234'), - (282, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'w4WeBkqm', '5958351'), - (282, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'w4WeBkqm', '5959751'), - (282, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'w4WeBkqm', '5959755'), - (282, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'w4WeBkqm', '5960055'), - (282, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'w4WeBkqm', '5961684'), - (282, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'w4WeBkqm', '5962132'), - (282, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'w4WeBkqm', '5962133'), - (282, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'w4WeBkqm', '5962134'), - (282, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'w4WeBkqm', '5962317'), - (282, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'w4WeBkqm', '5962318'), - (282, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'w4WeBkqm', '5965933'), - (282, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'w4WeBkqm', '5967014'), - (282, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'w4WeBkqm', '5972815'), - (282, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'w4WeBkqm', '5974016'), - (282, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'w4WeBkqm', '5981515'), - (282, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'w4WeBkqm', '5993516'), - (282, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'w4WeBkqm', '5998939'), - (282, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'w4WeBkqm', '6028191'), - (282, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'w4WeBkqm', '6040066'), - (282, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'w4WeBkqm', '6042717'), - (282, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'w4WeBkqm', '6044838'), - (282, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'w4WeBkqm', '6044839'), - (282, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WeBkqm', '6045684'), - (282, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'w4WeBkqm', '6050104'), - (282, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'w4WeBkqm', '6053195'), - (282, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'w4WeBkqm', '6053198'), - (282, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'w4WeBkqm', '6056085'), - (282, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'w4WeBkqm', '6056916'), - (282, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'w4WeBkqm', '6059290'), - (282, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'w4WeBkqm', '6060328'), - (282, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'w4WeBkqm', '6061037'), - (282, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'w4WeBkqm', '6061039'), - (282, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'w4WeBkqm', '6067245'), - (282, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'w4WeBkqm', '6068094'), - (282, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'w4WeBkqm', '6068252'), - (282, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'w4WeBkqm', '6068253'), - (282, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'w4WeBkqm', '6068254'), - (282, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'w4WeBkqm', '6068280'), - (282, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'w4WeBkqm', '6069093'), - (282, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'w4WeBkqm', '6072528'), - (282, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'w4WeBkqm', '6079840'), - (282, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'w4WeBkqm', '6083398'), - (282, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'w4WeBkqm', '6093504'), - (282, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'w4WeBkqm', '6097414'), - (282, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'w4WeBkqm', '6097442'), - (282, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'w4WeBkqm', '6097684'), - (282, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'w4WeBkqm', '6098762'), - (282, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'w4WeBkqm', '6101361'), - (282, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'w4WeBkqm', '6101362'), - (282, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'w4WeBkqm', '6107314'), - (282, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'w4WeBkqm', '6120034'), - (282, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'w4WeBkqm', '6136733'), - (282, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'w4WeBkqm', '6137989'), - (282, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'w4WeBkqm', '6150864'), - (282, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'w4WeBkqm', '6155491'), - (282, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'w4WeBkqm', '6164417'), - (282, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'w4WeBkqm', '6166388'), - (282, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'w4WeBkqm', '6176439'), - (282, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'w4WeBkqm', '6182410'), - (282, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'w4WeBkqm', '6185812'), - (282, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'w4WeBkqm', '6187651'), - (282, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'w4WeBkqm', '6187963'), - (282, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'w4WeBkqm', '6187964'), - (282, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'w4WeBkqm', '6187966'), - (282, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'w4WeBkqm', '6187967'), - (282, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'w4WeBkqm', '6187969'), - (282, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'w4WeBkqm', '6334878'), - (282, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'w4WeBkqm', '6337236'), - (282, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'w4WeBkqm', '6337970'), - (282, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'w4WeBkqm', '6338308'), - (282, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'w4WeBkqm', '6341710'), - (282, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'w4WeBkqm', '6342044'), - (282, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'w4WeBkqm', '6342298'), - (282, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'w4WeBkqm', '6343294'), - (282, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'w4WeBkqm', '6347034'), - (282, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'w4WeBkqm', '6347056'), - (282, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'w4WeBkqm', '6353830'), - (282, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'w4WeBkqm', '6353831'), - (282, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'w4WeBkqm', '6357867'), - (282, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'w4WeBkqm', '6358652'), - (282, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'w4WeBkqm', '6361709'), - (282, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'w4WeBkqm', '6361710'), - (282, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'w4WeBkqm', '6361711'), - (282, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'w4WeBkqm', '6361712'), - (282, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'w4WeBkqm', '6361713'), - (282, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'w4WeBkqm', '6382573'), - (282, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'w4WeBkqm', '6388604'), - (282, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'w4WeBkqm', '6394629'), - (282, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'w4WeBkqm', '6394631'), - (282, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'w4WeBkqm', '6440863'), - (282, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'w4WeBkqm', '6445440'), - (282, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'w4WeBkqm', '6453951'), - (282, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'w4WeBkqm', '6461696'), - (282, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'w4WeBkqm', '6462129'), - (282, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'w4WeBkqm', '6463218'), - (282, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'w4WeBkqm', '6472181'), - (282, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'w4WeBkqm', '6482693'), - (282, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'w4WeBkqm', '6484200'), - (282, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'w4WeBkqm', '6484680'), - (282, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'w4WeBkqm', '6507741'), - (282, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'w4WeBkqm', '6514659'), - (282, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'w4WeBkqm', '6514660'), - (282, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'w4WeBkqm', '6519103'), - (282, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'w4WeBkqm', '6535681'), - (282, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'w4WeBkqm', '6584747'), - (282, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'w4WeBkqm', '6587097'), - (282, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'w4WeBkqm', '6609022'), - (282, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'w4WeBkqm', '6632757'), - (282, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'w4WeBkqm', '6644187'), - (282, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'w4WeBkqm', '6648951'), - (282, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'w4WeBkqm', '6648952'), - (282, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'w4WeBkqm', '6655401'), - (282, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'w4WeBkqm', '6661585'), - (282, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'w4WeBkqm', '6661588'), - (282, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'w4WeBkqm', '6661589'), - (282, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'w4WeBkqm', '6699906'), - (282, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'w4WeBkqm', '6699913'), - (282, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'w4WeBkqm', '6701109'), - (282, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'w4WeBkqm', '6705219'), - (282, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'w4WeBkqm', '6710153'), - (282, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'w4WeBkqm', '6711552'), - (282, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'w4WeBkqm', '6711553'), - (282, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'w4WeBkqm', '6722688'), - (282, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'w4WeBkqm', '6730620'), - (282, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'w4WeBkqm', '6740364'), - (282, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'w4WeBkqm', '6743829'), - (282, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'w4WeBkqm', '7030380'), - (282, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'w4WeBkqm', '7033677'), - (282, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'w4WeBkqm', '7044715'), - (282, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'w4WeBkqm', '7050318'), - (282, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'w4WeBkqm', '7050319'), - (282, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'w4WeBkqm', '7050322'), - (282, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'w4WeBkqm', '7057804'), - (282, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'w4WeBkqm', '7072824'), - (282, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'w4WeBkqm', '7074348'), - (282, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'w4WeBkqm', '7074364'), - (282, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'w4WeBkqm', '7089267'), - (282, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'w4WeBkqm', '7098747'), - (282, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'w4WeBkqm', '7113468'), - (282, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'w4WeBkqm', '7114856'), - (282, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'w4WeBkqm', '7114951'), - (282, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'w4WeBkqm', '7114955'), - (282, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'w4WeBkqm', '7114956'), - (282, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'w4WeBkqm', '7114957'), - (282, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'w4WeBkqm', '7159484'), - (282, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'w4WeBkqm', '7178446'), - (282, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'w4WeBkqm', '7220467'), - (282, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'w4WeBkqm', '7240354'), - (282, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'w4WeBkqm', '7251633'), - (282, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'w4WeBkqm', '7324073'), - (282, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'w4WeBkqm', '7324074'), - (282, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'w4WeBkqm', '7324075'), - (282, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'w4WeBkqm', '7324078'), - (282, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'w4WeBkqm', '7324082'), - (282, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'w4WeBkqm', '7331457'), - (282, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'w4WeBkqm', '7363643'), - (282, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'w4WeBkqm', '7368606'), - (282, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'w4WeBkqm', '7397462'), - (282, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'w4WeBkqm', '7424275'), - (282, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'w4WeBkqm', '7432751'), - (282, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'w4WeBkqm', '7432752'), - (282, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'w4WeBkqm', '7432753'), - (282, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'w4WeBkqm', '7432754'), - (282, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'w4WeBkqm', '7432755'), - (282, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'w4WeBkqm', '7432756'), - (282, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'w4WeBkqm', '7432758'), - (282, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'w4WeBkqm', '7432759'), - (282, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'w4WeBkqm', '7433834'), - (282, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'w4WeBkqm', '7470197'), - (282, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'w4WeBkqm', '7685613'), - (282, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'w4WeBkqm', '7688194'), - (282, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'w4WeBkqm', '7688196'), - (282, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'w4WeBkqm', '7688289'), - (282, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'w4WeBkqm', '7692763'), - (282, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'w4WeBkqm', '7697552'), - (282, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'w4WeBkqm', '7699878'), - (282, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'w4WeBkqm', '7704043'), - (282, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'w4WeBkqm', '7712467'), - (282, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'w4WeBkqm', '7713585'), - (282, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'w4WeBkqm', '7713586'), - (282, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'w4WeBkqm', '7738518'), - (282, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'w4WeBkqm', '7750636'), - (282, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'w4WeBkqm', '7796540'), - (282, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'w4WeBkqm', '7796541'), - (282, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'w4WeBkqm', '7796542'), - (282, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'w4WeBkqm', '7825913'), - (282, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'w4WeBkqm', '7826209'), - (282, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'w4WeBkqm', '7834742'), - (282, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'w4WeBkqm', '7842108'), - (282, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'w4WeBkqm', '7842902'), - (282, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'w4WeBkqm', '7842903'), - (282, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'w4WeBkqm', '7842904'), - (282, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'w4WeBkqm', '7842905'), - (282, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'w4WeBkqm', '7855719'), - (282, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'w4WeBkqm', '7860683'), - (282, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'w4WeBkqm', '7860684'), - (282, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'w4WeBkqm', '7866095'), - (282, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'w4WeBkqm', '7869170'), - (282, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'w4WeBkqm', '7869188'), - (282, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'w4WeBkqm', '7869201'), - (282, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'w4WeBkqm', '7877465'), - (282, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'w4WeBkqm', '7888250'), - (282, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'w4WeBkqm', '7904777'), - (282, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'w4WeBkqm', '8349164'), - (282, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'w4WeBkqm', '8349545'), - (282, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'w4WeBkqm', '8368028'), - (282, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'w4WeBkqm', '8368029'), - (282, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'w4WeBkqm', '8388462'), - (282, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'w4WeBkqm', '8400273'), - (282, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'w4WeBkqm', '8400275'), - (282, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'w4WeBkqm', '8400276'), - (282, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'w4WeBkqm', '8404977'), - (282, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'w4WeBkqm', '8430783'), - (282, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'w4WeBkqm', '8430784'), - (282, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'w4WeBkqm', '8430799'), - (282, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'w4WeBkqm', '8430800'), - (282, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'w4WeBkqm', '8430801'), - (282, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'w4WeBkqm', '8438709'), - (282, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'w4WeBkqm', '8457738'), - (282, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'w4WeBkqm', '8459566'), - (282, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'w4WeBkqm', '8459567'), - (282, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'w4WeBkqm', '8461032'), - (282, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'w4WeBkqm', '8477877'), - (282, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'w4WeBkqm', '8485688'), - (282, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'w4WeBkqm', '8490587'), - (282, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'w4WeBkqm', '8493552'), - (282, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'w4WeBkqm', '8493553'), - (282, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'w4WeBkqm', '8493554'), - (282, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'w4WeBkqm', '8493555'), - (282, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'w4WeBkqm', '8493556'), - (282, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'w4WeBkqm', '8493557'), - (282, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'w4WeBkqm', '8493558'), - (282, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'w4WeBkqm', '8493559'), - (282, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'w4WeBkqm', '8493560'), - (282, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'w4WeBkqm', '8493561'), - (282, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'w4WeBkqm', '8493572'), - (282, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'w4WeBkqm', '8540725'), - (282, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'w4WeBkqm', '8555421'), - (283, 260, 'maybe', '2021-06-15 21:32:58', '2025-12-17 19:47:48', 'v4D0GyL4', '3149491'), - (283, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'v4D0GyL4', '3149493'), - (283, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'v4D0GyL4', '3236448'), - (283, 395, 'maybe', '2021-06-09 03:39:35', '2025-12-17 19:47:47', 'v4D0GyL4', '3236450'), - (283, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'v4D0GyL4', '3974109'), - (283, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'v4D0GyL4', '3975311'), - (283, 828, 'not_attending', '2021-06-12 22:45:35', '2025-12-17 19:47:47', 'v4D0GyL4', '3975312'), - (283, 838, 'maybe', '2021-06-09 15:36:46', '2025-12-17 19:47:47', 'v4D0GyL4', '3994992'), - (283, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4D0GyL4', '4014338'), - (283, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'v4D0GyL4', '4021848'), - (283, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4D0GyL4', '4136744'), - (283, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'v4D0GyL4', '4136937'), - (283, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'v4D0GyL4', '4136938'), - (283, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'v4D0GyL4', '4136947'), - (283, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4D0GyL4', '4225444'), - (283, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'v4D0GyL4', '4229417'), - (283, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'v4D0GyL4', '4229418'), - (283, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'v4D0GyL4', '4239259'), - (283, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4D0GyL4', '4250163'), - (283, 1009, 'attending', '2021-10-11 14:46:19', '2025-12-17 19:47:34', 'v4D0GyL4', '4438811'), - (283, 1077, 'maybe', '2021-10-13 15:38:58', '2025-12-17 19:47:34', 'v4D0GyL4', '4540903'), - (283, 1082, 'attending', '2021-10-15 21:20:28', '2025-12-17 19:47:35', 'v4D0GyL4', '4566762'), - (283, 1086, 'attending', '2021-10-15 21:11:46', '2025-12-17 19:47:34', 'v4D0GyL4', '4568602'), - (283, 1153, 'maybe', '2022-01-19 02:52:10', '2025-12-17 19:47:32', 'v4D0GyL4', '4708707'), - (283, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'v4D0GyL4', '4736497'), - (283, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'v4D0GyL4', '4736499'), - (283, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'v4D0GyL4', '4736500'), - (283, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'v4D0GyL4', '4736503'), - (283, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'v4D0GyL4', '4736504'), - (283, 1196, 'attending', '2022-01-20 01:12:37', '2025-12-17 19:47:32', 'v4D0GyL4', '4765583'), - (283, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4D0GyL4', '5038850'), - (283, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4D0GyL4', '5045826'), - (283, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4D0GyL4', '5132533'), - (283, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'v4D0GyL4', '5186582'), - (283, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'v4D0GyL4', '5186583'), - (283, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'v4D0GyL4', '5186585'), - (283, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4D0GyL4', '5190437'), - (283, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4D0GyL4', '5215989'), - (283, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4D0GyL4', '6045684'), - (284, 665, 'not_attending', '2021-09-04 22:05:32', '2025-12-17 19:47:43', 'AYzjRPe4', '3547143'), - (284, 951, 'attending', '2021-08-29 19:58:57', '2025-12-17 19:47:43', 'AYzjRPe4', '4315731'), - (284, 971, 'attending', '2021-09-08 16:44:46', '2025-12-17 19:47:43', 'AYzjRPe4', '4356801'), - (284, 987, 'attending', '2021-09-01 15:17:55', '2025-12-17 19:47:43', 'AYzjRPe4', '4402634'), - (284, 989, 'attending', '2021-09-10 19:39:10', '2025-12-17 19:47:43', 'AYzjRPe4', '4414282'), - (284, 990, 'not_attending', '2021-09-04 22:05:47', '2025-12-17 19:47:43', 'AYzjRPe4', '4420735'), - (284, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'AYzjRPe4', '4420738'), - (284, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'AYzjRPe4', '4420739'), - (284, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'AYzjRPe4', '4420741'), - (284, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'AYzjRPe4', '4420744'), - (284, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'AYzjRPe4', '4420747'), - (284, 1002, 'attending', '2021-08-30 17:39:13', '2025-12-17 19:47:43', 'AYzjRPe4', '4424932'), - (284, 1017, 'not_attending', '2021-09-06 23:25:25', '2025-12-17 19:47:43', 'AYzjRPe4', '4441822'), - (284, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AYzjRPe4', '4461883'), - (284, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AYzjRPe4', '4508342'), - (284, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AYzjRPe4', '4568602'), - (284, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AYzjRPe4', '6045684'), - (285, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ArngEwYA', '7904777'), - (285, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ArngEwYA', '8368028'), - (285, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ArngEwYA', '8368029'), - (285, 3140, 'not_attending', '2025-05-21 04:07:31', '2025-12-17 19:46:21', 'ArngEwYA', '8380399'), - (285, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', 'ArngEwYA', '8387505'), - (285, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ArngEwYA', '8388462'), - (285, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ArngEwYA', '8400273'), - (285, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ArngEwYA', '8400274'), - (285, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ArngEwYA', '8400275'), - (285, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ArngEwYA', '8400276'), - (285, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ArngEwYA', '8404977'), - (285, 3171, 'not_attending', '2025-06-13 18:00:16', '2025-12-17 19:46:15', 'ArngEwYA', '8409765'), - (285, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'ArngEwYA', '8430783'), - (285, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ArngEwYA', '8430784'), - (285, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ArngEwYA', '8430799'), - (285, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ArngEwYA', '8430800'), - (285, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ArngEwYA', '8430801'), - (285, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ArngEwYA', '8438709'), - (285, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ArngEwYA', '8457738'), - (285, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ArngEwYA', '8459566'), - (285, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ArngEwYA', '8459567'), - (285, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ArngEwYA', '8461032'), - (285, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ArngEwYA', '8477877'), - (285, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ArngEwYA', '8485688'), - (285, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ArngEwYA', '8490587'), - (285, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ArngEwYA', '8493552'), - (285, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'ArngEwYA', '8493553'), - (285, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ArngEwYA', '8493554'), - (285, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ArngEwYA', '8493555'), - (285, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ArngEwYA', '8493556'), - (285, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ArngEwYA', '8493557'), - (285, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ArngEwYA', '8493558'), - (285, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ArngEwYA', '8493559'), - (285, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ArngEwYA', '8493560'), - (285, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'ArngEwYA', '8493561'), - (285, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ArngEwYA', '8493572'), - (285, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'ArngEwYA', '8529058'), - (286, 1241, 'maybe', '2022-03-23 23:08:13', '2025-12-17 19:47:25', 'dw8QYw0m', '5052240'), - (286, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'dw8QYw0m', '5186585'), - (286, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dw8QYw0m', '5195095'), - (286, 1285, 'attending', '2022-03-25 21:50:56', '2025-12-17 19:47:25', 'dw8QYw0m', '5196763'), - (286, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dw8QYw0m', '5215989'), - (286, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dw8QYw0m', '5223686'), - (286, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dw8QYw0m', '5227432'), - (286, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dw8QYw0m', '5247467'), - (286, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dw8QYw0m', '5260800'), - (286, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dw8QYw0m', '5269930'), - (286, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dw8QYw0m', '5271448'), - (286, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dw8QYw0m', '5271449'), - (286, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dw8QYw0m', '5276469'), - (286, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dw8QYw0m', '5278159'), - (286, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dw8QYw0m', '6045684'), - (287, 622, 'attending', '2021-03-08 16:49:20', '2025-12-17 19:47:51', 'Pm7NE5ld', '3517816'), - (287, 638, 'attending', '2021-04-03 20:27:10', '2025-12-17 19:47:44', 'Pm7NE5ld', '3536632'), - (287, 639, 'maybe', '2021-03-20 18:28:23', '2025-12-17 19:47:51', 'Pm7NE5ld', '3536656'), - (287, 641, 'attending', '2021-04-02 11:59:29', '2025-12-17 19:47:44', 'Pm7NE5ld', '3539916'), - (287, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Pm7NE5ld', '3539918'), - (287, 644, 'attending', '2021-04-24 16:23:19', '2025-12-17 19:47:45', 'Pm7NE5ld', '3539919'), - (287, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm7NE5ld', '3539920'), - (287, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm7NE5ld', '3539921'), - (287, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Pm7NE5ld', '3539922'), - (287, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Pm7NE5ld', '3539923'), - (287, 649, 'attending', '2021-03-08 16:49:48', '2025-12-17 19:47:51', 'Pm7NE5ld', '3539927'), - (287, 650, 'not_attending', '2021-03-27 21:01:00', '2025-12-17 19:47:44', 'Pm7NE5ld', '3539928'), - (287, 654, 'attending', '2021-03-08 13:20:34', '2025-12-17 19:47:51', 'Pm7NE5ld', '3546990'), - (287, 692, 'attending', '2021-03-13 23:08:29', '2025-12-17 19:47:51', 'Pm7NE5ld', '3561995'), - (287, 705, 'not_attending', '2021-04-02 11:59:20', '2025-12-17 19:47:44', 'Pm7NE5ld', '3581895'), - (287, 706, 'attending', '2021-03-27 14:39:00', '2025-12-17 19:47:45', 'Pm7NE5ld', '3582734'), - (287, 707, 'maybe', '2021-04-25 16:33:38', '2025-12-17 19:47:46', 'Pm7NE5ld', '3583262'), - (287, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Pm7NE5ld', '3619523'), - (287, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7NE5ld', '3661369'), - (287, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7NE5ld', '3674262'), - (287, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm7NE5ld', '3677402'), - (287, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7NE5ld', '3730212'), - (287, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7NE5ld', '3793156'), - (287, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7NE5ld', '3975311'), - (287, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7NE5ld', '3994992'), - (287, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7NE5ld', '6045684'), - (288, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlOQvPX4', '6045684'), - (289, 850, 'attending', '2021-08-25 18:09:28', '2025-12-17 19:47:42', 'nm6wWxgA', '4015722'), - (289, 950, 'not_attending', '2021-08-21 07:35:16', '2025-12-17 19:47:42', 'nm6wWxgA', '4315730'), - (289, 965, 'maybe', '2021-08-19 03:08:59', '2025-12-17 19:47:42', 'nm6wWxgA', '4353703'), - (289, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nm6wWxgA', '4356801'), - (289, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'nm6wWxgA', '4366186'), - (289, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'nm6wWxgA', '4366187'), - (289, 977, 'attending', '2021-08-20 18:57:52', '2025-12-17 19:47:42', 'nm6wWxgA', '4378479'), - (289, 980, 'not_attending', '2021-08-21 18:48:36', '2025-12-17 19:47:42', 'nm6wWxgA', '4380358'), - (289, 981, 'maybe', '2021-08-27 21:53:02', '2025-12-17 19:47:42', 'nm6wWxgA', '4387305'), - (289, 983, 'attending', '2021-08-20 22:43:11', '2025-12-17 19:47:42', 'nm6wWxgA', '4390051'), - (289, 990, 'not_attending', '2021-08-30 23:33:28', '2025-12-17 19:47:43', 'nm6wWxgA', '4420735'), - (289, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nm6wWxgA', '4420738'), - (289, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'nm6wWxgA', '4420739'), - (289, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm6wWxgA', '4420741'), - (289, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nm6wWxgA', '4420744'), - (289, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nm6wWxgA', '4420747'), - (289, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nm6wWxgA', '4420748'), - (289, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nm6wWxgA', '4420749'), - (289, 1015, 'maybe', '2021-09-10 16:17:22', '2025-12-17 19:47:43', 'nm6wWxgA', '4440800'), - (289, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nm6wWxgA', '4461883'), - (289, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nm6wWxgA', '4508342'), - (289, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nm6wWxgA', '4568602'), - (289, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nm6wWxgA', '4572153'), - (289, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'nm6wWxgA', '4585962'), - (289, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'nm6wWxgA', '4596356'), - (289, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nm6wWxgA', '4598860'), - (289, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'nm6wWxgA', '4598861'), - (289, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'nm6wWxgA', '4602797'), - (289, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'nm6wWxgA', '4637896'), - (289, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nm6wWxgA', '4642994'), - (289, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'nm6wWxgA', '4642995'), - (289, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'nm6wWxgA', '4642996'), - (289, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'nm6wWxgA', '4642997'), - (289, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'nm6wWxgA', '4645687'), - (289, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nm6wWxgA', '4645698'), - (289, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'nm6wWxgA', '4645704'), - (289, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'nm6wWxgA', '4645705'), - (289, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nm6wWxgA', '4668385'), - (289, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nm6wWxgA', '4694407'), - (289, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm6wWxgA', '4736497'), - (289, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nm6wWxgA', '4736499'), - (289, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm6wWxgA', '4736500'), - (289, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nm6wWxgA', '4736503'), - (289, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nm6wWxgA', '4736504'), - (289, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nm6wWxgA', '4746789'), - (289, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'nm6wWxgA', '4753929'), - (289, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nm6wWxgA', '5038850'), - (289, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nm6wWxgA', '5045826'), - (289, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm6wWxgA', '5132533'), - (289, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'nm6wWxgA', '5186582'), - (289, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nm6wWxgA', '5186583'), - (289, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nm6wWxgA', '5186585'), - (289, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'nm6wWxgA', '5190437'), - (289, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nm6wWxgA', '5195095'), - (289, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm6wWxgA', '5215989'), - (289, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm6wWxgA', '5223686'), - (289, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nm6wWxgA', '5247467'), - (289, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nm6wWxgA', '5260800'), - (289, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nm6wWxgA', '5269930'), - (289, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nm6wWxgA', '5271448'), - (289, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'nm6wWxgA', '5271449'), - (289, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm6wWxgA', '5278159'), - (289, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'nm6wWxgA', '5363695'), - (289, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm6wWxgA', '5365960'), - (289, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm6wWxgA', '5378247'), - (289, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'nm6wWxgA', '5389605'), - (289, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nm6wWxgA', '5397265'), - (289, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm6wWxgA', '5404786'), - (289, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm6wWxgA', '5405203'), - (289, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm6wWxgA', '5412550'), - (289, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm6wWxgA', '5415046'), - (289, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm6wWxgA', '5422086'), - (289, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nm6wWxgA', '5422406'), - (289, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm6wWxgA', '5424565'), - (289, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm6wWxgA', '5426882'), - (289, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm6wWxgA', '5441125'), - (289, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm6wWxgA', '5441126'), - (289, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nm6wWxgA', '5441128'), - (289, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm6wWxgA', '5441131'), - (289, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm6wWxgA', '5441132'), - (289, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm6wWxgA', '5453325'), - (289, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm6wWxgA', '5454516'), - (289, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm6wWxgA', '5454605'), - (289, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm6wWxgA', '5455037'), - (289, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm6wWxgA', '5461278'), - (289, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm6wWxgA', '5469480'), - (289, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm6wWxgA', '5474663'), - (289, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm6wWxgA', '5482022'), - (289, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm6wWxgA', '5488912'), - (289, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm6wWxgA', '5492192'), - (289, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm6wWxgA', '5493139'), - (289, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm6wWxgA', '5493200'), - (289, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm6wWxgA', '5502188'), - (289, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm6wWxgA', '5505059'), - (289, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm6wWxgA', '5509055'), - (289, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm6wWxgA', '5512862'), - (289, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm6wWxgA', '5513985'), - (289, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nm6wWxgA', '5519981'), - (289, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm6wWxgA', '5522550'), - (289, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm6wWxgA', '5534683'), - (289, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm6wWxgA', '5537735'), - (289, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm6wWxgA', '5540859'), - (289, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm6wWxgA', '5546619'), - (289, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm6wWxgA', '5557747'), - (289, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm6wWxgA', '5560255'), - (289, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm6wWxgA', '5562906'), - (289, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm6wWxgA', '5600604'), - (289, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm6wWxgA', '5605544'), - (289, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'nm6wWxgA', '5606737'), - (289, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm6wWxgA', '5630960'), - (289, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm6wWxgA', '5630961'), - (289, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm6wWxgA', '5630962'), - (289, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm6wWxgA', '5630966'), - (289, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm6wWxgA', '5630967'), - (289, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm6wWxgA', '5630968'), - (289, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm6wWxgA', '5635406'), - (289, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm6wWxgA', '5638765'), - (289, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm6wWxgA', '5640097'), - (289, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm6wWxgA', '5640843'), - (289, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm6wWxgA', '5641521'), - (289, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm6wWxgA', '5642818'), - (289, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm6wWxgA', '5652395'), - (289, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm6wWxgA', '5670445'), - (289, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm6wWxgA', '5671637'), - (289, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm6wWxgA', '5672329'), - (289, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm6wWxgA', '5674057'), - (289, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm6wWxgA', '5674060'), - (289, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm6wWxgA', '5677461'), - (289, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm6wWxgA', '5698046'), - (289, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm6wWxgA', '5699760'), - (289, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm6wWxgA', '5741601'), - (289, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm6wWxgA', '5763458'), - (289, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm6wWxgA', '5774172'), - (289, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nm6wWxgA', '5818247'), - (289, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm6wWxgA', '5819471'), - (289, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'nm6wWxgA', '5827739'), - (289, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm6wWxgA', '5844306'), - (289, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm6wWxgA', '5850159'), - (289, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm6wWxgA', '5858999'), - (289, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm6wWxgA', '5871984'), - (289, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm6wWxgA', '5876354'), - (289, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm6wWxgA', '5880939'), - (289, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm6wWxgA', '5880940'), - (289, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm6wWxgA', '5880942'), - (289, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm6wWxgA', '5880943'), - (289, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm6wWxgA', '5887890'), - (289, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm6wWxgA', '5888598'), - (289, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm6wWxgA', '5893260'), - (289, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm6wWxgA', '5899826'), - (289, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm6wWxgA', '5900199'), - (289, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm6wWxgA', '5900200'), - (289, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm6wWxgA', '5900202'), - (289, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm6wWxgA', '5900203'), - (289, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm6wWxgA', '5901108'), - (289, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm6wWxgA', '5901126'), - (289, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm6wWxgA', '5909655'), - (289, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm6wWxgA', '5910522'), - (289, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm6wWxgA', '5910526'), - (289, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm6wWxgA', '5910528'), - (289, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm6wWxgA', '5916219'), - (289, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm6wWxgA', '5936234'), - (289, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm6wWxgA', '5958351'), - (289, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm6wWxgA', '5959751'), - (289, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm6wWxgA', '5959755'), - (289, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm6wWxgA', '5960055'), - (289, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm6wWxgA', '5961684'), - (289, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm6wWxgA', '5962132'), - (289, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nm6wWxgA', '5962133'), - (289, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm6wWxgA', '5962134'), - (289, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm6wWxgA', '5962317'), - (289, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm6wWxgA', '5962318'), - (289, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nm6wWxgA', '5965933'), - (289, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm6wWxgA', '5967014'), - (289, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm6wWxgA', '5972815'), - (289, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm6wWxgA', '5974016'), - (289, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm6wWxgA', '5981515'), - (289, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm6wWxgA', '5993516'), - (289, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm6wWxgA', '5998939'), - (289, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm6wWxgA', '6028191'), - (289, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm6wWxgA', '6040066'), - (289, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm6wWxgA', '6042717'), - (289, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm6wWxgA', '6044838'), - (289, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm6wWxgA', '6044839'), - (289, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6wWxgA', '6045684'), - (289, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm6wWxgA', '6050104'), - (289, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm6wWxgA', '6053195'), - (289, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm6wWxgA', '6053198'), - (289, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm6wWxgA', '6056085'), - (289, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm6wWxgA', '6056916'), - (289, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm6wWxgA', '6059290'), - (289, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm6wWxgA', '6060328'), - (289, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm6wWxgA', '6061037'), - (289, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm6wWxgA', '6061039'), - (289, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm6wWxgA', '6067245'), - (289, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm6wWxgA', '6068094'), - (289, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm6wWxgA', '6068252'), - (289, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm6wWxgA', '6068253'), - (289, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm6wWxgA', '6068254'), - (289, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm6wWxgA', '6068280'), - (289, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm6wWxgA', '6069093'), - (289, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm6wWxgA', '6072528'), - (289, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm6wWxgA', '6079840'), - (289, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm6wWxgA', '6083398'), - (289, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm6wWxgA', '6093504'), - (289, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm6wWxgA', '6097414'), - (289, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm6wWxgA', '6097442'), - (289, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm6wWxgA', '6097684'), - (289, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm6wWxgA', '6098762'), - (289, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm6wWxgA', '6101361'), - (289, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm6wWxgA', '6101362'), - (289, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm6wWxgA', '6107314'), - (289, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm6wWxgA', '6120034'), - (289, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nm6wWxgA', '6136733'), - (289, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm6wWxgA', '6137989'), - (289, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm6wWxgA', '6150864'), - (289, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm6wWxgA', '6155491'), - (289, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm6wWxgA', '6164417'), - (289, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm6wWxgA', '6166388'), - (289, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm6wWxgA', '6176439'), - (289, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm6wWxgA', '6182410'), - (289, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm6wWxgA', '6185812'), - (289, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm6wWxgA', '6187651'), - (289, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm6wWxgA', '6187963'), - (289, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm6wWxgA', '6187964'), - (289, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm6wWxgA', '6187966'), - (289, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm6wWxgA', '6187967'), - (289, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm6wWxgA', '6187969'), - (289, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm6wWxgA', '6334878'), - (289, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm6wWxgA', '6337236'), - (289, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm6wWxgA', '6337970'), - (289, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm6wWxgA', '6338308'), - (289, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm6wWxgA', '6341710'), - (289, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm6wWxgA', '6342044'), - (289, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm6wWxgA', '6342298'), - (289, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm6wWxgA', '6343294'), - (289, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm6wWxgA', '6347034'), - (289, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm6wWxgA', '6347056'), - (289, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm6wWxgA', '6353830'), - (289, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm6wWxgA', '6353831'), - (289, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm6wWxgA', '6357867'), - (289, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm6wWxgA', '6358652'), - (289, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm6wWxgA', '6361709'), - (289, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm6wWxgA', '6361710'), - (289, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm6wWxgA', '6361711'), - (289, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm6wWxgA', '6361712'), - (289, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm6wWxgA', '6361713'), - (289, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nm6wWxgA', '6382573'), - (289, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm6wWxgA', '6388604'), - (289, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm6wWxgA', '6394629'), - (289, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm6wWxgA', '6394631'), - (289, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm6wWxgA', '6440863'), - (289, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm6wWxgA', '6445440'), - (289, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm6wWxgA', '6453951'), - (289, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm6wWxgA', '6461696'), - (289, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm6wWxgA', '6462129'), - (289, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm6wWxgA', '6463218'), - (289, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm6wWxgA', '6472181'), - (289, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm6wWxgA', '6482693'), - (289, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nm6wWxgA', '6484200'), - (289, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm6wWxgA', '6484680'), - (289, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm6wWxgA', '6507741'), - (289, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm6wWxgA', '6514659'), - (289, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm6wWxgA', '6514660'), - (289, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm6wWxgA', '6519103'), - (289, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm6wWxgA', '6535681'), - (289, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm6wWxgA', '6584747'), - (289, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm6wWxgA', '6587097'), - (289, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm6wWxgA', '6609022'), - (289, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nm6wWxgA', '6632757'), - (289, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm6wWxgA', '6644187'), - (289, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm6wWxgA', '6648951'), - (289, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm6wWxgA', '6648952'), - (289, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm6wWxgA', '6655401'), - (289, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm6wWxgA', '6661585'), - (289, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm6wWxgA', '6661588'), - (289, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm6wWxgA', '6661589'), - (289, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm6wWxgA', '6699906'), - (289, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm6wWxgA', '6699913'), - (289, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm6wWxgA', '6701109'), - (289, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm6wWxgA', '6705219'), - (289, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm6wWxgA', '6710153'), - (289, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm6wWxgA', '6711552'), - (289, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nm6wWxgA', '6711553'), - (289, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm6wWxgA', '6722688'), - (289, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm6wWxgA', '6730620'), - (289, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm6wWxgA', '6740364'), - (289, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm6wWxgA', '6743829'), - (289, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm6wWxgA', '7030380'), - (289, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nm6wWxgA', '7033677'), - (289, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm6wWxgA', '7044715'), - (289, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm6wWxgA', '7050318'), - (289, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm6wWxgA', '7050319'), - (289, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm6wWxgA', '7050322'), - (289, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm6wWxgA', '7057804'), - (289, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm6wWxgA', '7072824'), - (289, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm6wWxgA', '7074348'), - (289, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm6wWxgA', '7074364'), - (289, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nm6wWxgA', '7089267'), - (289, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm6wWxgA', '7098747'), - (289, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm6wWxgA', '7113468'), - (289, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm6wWxgA', '7114856'), - (289, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm6wWxgA', '7114951'), - (289, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm6wWxgA', '7114955'), - (289, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm6wWxgA', '7114956'), - (289, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm6wWxgA', '7114957'), - (289, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm6wWxgA', '7159484'), - (289, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm6wWxgA', '7178446'), - (289, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nm6wWxgA', '7220467'), - (289, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm6wWxgA', '7240354'), - (289, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm6wWxgA', '7251633'), - (289, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm6wWxgA', '7324073'), - (289, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm6wWxgA', '7324074'), - (289, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm6wWxgA', '7324075'), - (289, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm6wWxgA', '7324078'), - (289, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm6wWxgA', '7324082'), - (289, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm6wWxgA', '7331457'), - (289, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm6wWxgA', '7363643'), - (289, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm6wWxgA', '7368606'), - (289, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm6wWxgA', '7397462'), - (289, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm6wWxgA', '7424275'), - (289, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm6wWxgA', '7432751'), - (289, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm6wWxgA', '7432752'), - (289, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm6wWxgA', '7432753'), - (289, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm6wWxgA', '7432754'), - (289, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm6wWxgA', '7432755'), - (289, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm6wWxgA', '7432756'), - (289, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm6wWxgA', '7432758'), - (289, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm6wWxgA', '7432759'), - (289, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm6wWxgA', '7433834'), - (289, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nm6wWxgA', '7470197'), - (289, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm6wWxgA', '7685613'), - (289, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm6wWxgA', '7688194'), - (289, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm6wWxgA', '7688196'), - (289, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm6wWxgA', '7688289'), - (289, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm6wWxgA', '7692763'), - (289, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm6wWxgA', '7697552'), - (289, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm6wWxgA', '7699878'), - (289, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nm6wWxgA', '7704043'), - (289, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm6wWxgA', '7712467'), - (289, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm6wWxgA', '7713585'), - (289, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm6wWxgA', '7713586'), - (289, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm6wWxgA', '7738518'), - (289, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm6wWxgA', '7750636'), - (289, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm6wWxgA', '7796540'), - (289, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm6wWxgA', '7796541'), - (289, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm6wWxgA', '7796542'), - (289, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm6wWxgA', '7825913'), - (289, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm6wWxgA', '7826209'), - (289, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm6wWxgA', '7834742'), - (289, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm6wWxgA', '7842108'), - (289, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm6wWxgA', '7842902'), - (289, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm6wWxgA', '7842903'), - (289, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm6wWxgA', '7842904'), - (289, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm6wWxgA', '7842905'), - (289, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm6wWxgA', '7855719'), - (289, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm6wWxgA', '7860683'), - (289, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm6wWxgA', '7860684'), - (289, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm6wWxgA', '7866095'), - (289, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm6wWxgA', '7869170'), - (289, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm6wWxgA', '7869188'), - (289, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm6wWxgA', '7869201'), - (289, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm6wWxgA', '7877465'), - (289, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm6wWxgA', '7888250'), - (289, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm6wWxgA', '7904777'), - (289, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm6wWxgA', '8349164'), - (289, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm6wWxgA', '8349545'), - (289, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm6wWxgA', '8368028'), - (289, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm6wWxgA', '8368029'), - (289, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm6wWxgA', '8388462'), - (289, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm6wWxgA', '8400273'), - (289, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm6wWxgA', '8400275'), - (289, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nm6wWxgA', '8400276'), - (289, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm6wWxgA', '8404977'), - (289, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm6wWxgA', '8430783'), - (289, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm6wWxgA', '8430784'), - (289, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm6wWxgA', '8430799'), - (289, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm6wWxgA', '8430800'), - (289, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm6wWxgA', '8430801'), - (289, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm6wWxgA', '8438709'), - (289, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm6wWxgA', '8457738'), - (289, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm6wWxgA', '8459566'), - (289, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm6wWxgA', '8459567'), - (289, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm6wWxgA', '8461032'), - (289, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm6wWxgA', '8477877'), - (289, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm6wWxgA', '8485688'), - (289, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm6wWxgA', '8490587'), - (289, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm6wWxgA', '8493552'), - (289, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm6wWxgA', '8493553'), - (289, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm6wWxgA', '8493554'), - (289, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm6wWxgA', '8493555'), - (289, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm6wWxgA', '8493556'), - (289, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm6wWxgA', '8493557'), - (289, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm6wWxgA', '8493558'), - (289, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm6wWxgA', '8493559'), - (289, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm6wWxgA', '8493560'), - (289, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nm6wWxgA', '8493561'), - (289, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm6wWxgA', '8493572'), - (289, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm6wWxgA', '8540725'), - (289, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm6wWxgA', '8555421'), - (290, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4EZ368Wd', '7074364'), - (290, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4EZ368Wd', '7324073'), - (290, 2689, 'attending', '2024-06-27 13:35:30', '2025-12-17 19:46:29', '4EZ368Wd', '7324074'), - (290, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4EZ368Wd', '7324075'), - (290, 2691, 'attending', '2024-07-20 21:23:13', '2025-12-17 19:46:30', '4EZ368Wd', '7324076'), - (290, 2692, 'maybe', '2024-07-27 18:59:42', '2025-12-17 19:46:30', '4EZ368Wd', '7324077'), - (290, 2693, 'maybe', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4EZ368Wd', '7324078'), - (290, 2694, 'attending', '2024-08-10 15:53:36', '2025-12-17 19:46:31', '4EZ368Wd', '7324079'), - (290, 2697, 'not_attending', '2024-08-31 17:07:51', '2025-12-17 19:46:32', '4EZ368Wd', '7324082'), - (290, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '4EZ368Wd', '7331457'), - (290, 2737, 'attending', '2024-07-02 18:33:11', '2025-12-17 19:46:29', '4EZ368Wd', '7344070'), - (290, 2739, 'attending', '2024-06-30 23:17:56', '2025-12-17 19:46:29', '4EZ368Wd', '7344575'), - (290, 2740, 'attending', '2024-07-01 18:48:03', '2025-12-17 19:46:29', '4EZ368Wd', '7344576'), - (290, 2743, 'attending', '2024-07-05 18:04:26', '2025-12-17 19:46:29', '4EZ368Wd', '7345688'), - (290, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4EZ368Wd', '7356752'), - (290, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '4EZ368Wd', '7363643'), - (290, 2772, 'maybe', '2024-07-21 17:43:12', '2025-12-17 19:46:30', '4EZ368Wd', '7368267'), - (290, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4EZ368Wd', '7368606'), - (290, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4EZ368Wd', '7397462'), - (290, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4EZ368Wd', '7424275'), - (290, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4EZ368Wd', '7424276'), - (290, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4EZ368Wd', '7432751'), - (290, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4EZ368Wd', '7432752'), - (290, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4EZ368Wd', '7432753'), - (290, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4EZ368Wd', '7432754'), - (290, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4EZ368Wd', '7432755'), - (290, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4EZ368Wd', '7432756'), - (290, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4EZ368Wd', '7432758'), - (290, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4EZ368Wd', '7432759'), - (290, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '4EZ368Wd', '7433834'), - (290, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4EZ368Wd', '7470197'), - (290, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4EZ368Wd', '7685613'), - (290, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4EZ368Wd', '7688194'), - (290, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4EZ368Wd', '7688196'), - (290, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4EZ368Wd', '7688289'), - (290, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4EZ368Wd', '7692763'), - (290, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4EZ368Wd', '7697552'), - (290, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4EZ368Wd', '7699878'), - (290, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4EZ368Wd', '7704043'), - (290, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4EZ368Wd', '7712467'), - (290, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4EZ368Wd', '7713585'), - (290, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4EZ368Wd', '7713586'), - (290, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4EZ368Wd', '7738518'), - (290, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4EZ368Wd', '7750636'), - (290, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4EZ368Wd', '7796540'), - (290, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4EZ368Wd', '7796541'), - (290, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4EZ368Wd', '7796542'), - (291, 1148, 'attending', '2021-12-17 23:19:14', '2025-12-17 19:47:31', 'VmMOryY4', '4692843'), - (291, 1156, 'attending', '2021-12-21 01:51:21', '2025-12-17 19:47:31', 'VmMOryY4', '4715207'), - (291, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'VmMOryY4', '4736497'), - (291, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'VmMOryY4', '4736499'), - (291, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'VmMOryY4', '4736500'), - (291, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'VmMOryY4', '4736503'), - (291, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'VmMOryY4', '4736504'), - (291, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VmMOryY4', '4746789'), - (291, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'VmMOryY4', '4753929'), - (291, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VmMOryY4', '5038850'), - (291, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VmMOryY4', '5045826'), - (291, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VmMOryY4', '5132533'), - (291, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMOryY4', '6045684'), - (292, 1643, 'not_attending', '2022-09-26 23:10:09', '2025-12-17 19:47:11', 'dOjwMey4', '5545856'), - (292, 1668, 'attending', '2022-09-28 21:00:17', '2025-12-17 19:47:12', 'dOjwMey4', '5563222'), - (292, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dOjwMey4', '5600604'), - (292, 1680, 'attending', '2022-09-26 21:44:32', '2025-12-17 19:47:11', 'dOjwMey4', '5601577'), - (292, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dOjwMey4', '5605544'), - (292, 1698, 'attending', '2022-09-26 22:46:14', '2025-12-17 19:47:11', 'dOjwMey4', '5606366'), - (292, 1699, 'attending', '2022-10-04 12:48:09', '2025-12-17 19:47:12', 'dOjwMey4', '5606737'), - (292, 1700, 'attending', '2022-09-30 12:59:37', '2025-12-17 19:47:12', 'dOjwMey4', '5606814'), - (292, 1701, 'not_attending', '2022-09-26 21:43:31', '2025-12-17 19:47:11', 'dOjwMey4', '5607857'), - (292, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dOjwMey4', '5630960'), - (292, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dOjwMey4', '5630961'), - (292, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dOjwMey4', '5630962'), - (292, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOjwMey4', '5630966'), - (292, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOjwMey4', '5630967'), - (292, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOjwMey4', '5630968'), - (292, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dOjwMey4', '5635406'), - (292, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dOjwMey4', '5638765'), - (292, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dOjwMey4', '5640097'), - (292, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dOjwMey4', '5640843'), - (292, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dOjwMey4', '5641521'), - (292, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOjwMey4', '5642818'), - (292, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dOjwMey4', '5652395'), - (292, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOjwMey4', '5670445'), - (292, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dOjwMey4', '5671637'), - (292, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dOjwMey4', '5672329'), - (292, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dOjwMey4', '5674057'), - (292, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dOjwMey4', '5674060'), - (292, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dOjwMey4', '5677461'), - (292, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOjwMey4', '5698046'), - (292, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dOjwMey4', '5699760'), - (292, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOjwMey4', '5741601'), - (292, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOjwMey4', '5763458'), - (292, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOjwMey4', '5774172'), - (292, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOjwMey4', '5818247'), - (292, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOjwMey4', '5819471'), - (292, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOjwMey4', '5827739'), - (292, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOjwMey4', '5844306'), - (292, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOjwMey4', '5850159'), - (292, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOjwMey4', '5858999'), - (292, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOjwMey4', '5871984'), - (292, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOjwMey4', '5876354'), - (292, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOjwMey4', '5880939'), - (292, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dOjwMey4', '5880940'), - (292, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dOjwMey4', '5880942'), - (292, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dOjwMey4', '5880943'), - (292, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOjwMey4', '5887890'), - (292, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOjwMey4', '5888598'), - (292, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOjwMey4', '5893260'), - (292, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dOjwMey4', '5899826'), - (292, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dOjwMey4', '5900199'), - (292, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dOjwMey4', '5900200'), - (292, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOjwMey4', '5900202'), - (292, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOjwMey4', '5900203'), - (292, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dOjwMey4', '5901108'), - (292, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dOjwMey4', '5901126'), - (292, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dOjwMey4', '5909655'), - (292, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dOjwMey4', '5910522'), - (292, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dOjwMey4', '5910526'), - (292, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dOjwMey4', '5910528'), - (292, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dOjwMey4', '5916219'), - (292, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dOjwMey4', '5936234'), - (292, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dOjwMey4', '5958351'), - (292, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dOjwMey4', '5959751'), - (292, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dOjwMey4', '5959755'), - (292, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dOjwMey4', '5960055'), - (292, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dOjwMey4', '5961684'), - (292, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dOjwMey4', '5962132'), - (292, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dOjwMey4', '5962133'), - (292, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dOjwMey4', '5962134'), - (292, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dOjwMey4', '5962317'), - (292, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dOjwMey4', '5962318'), - (292, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dOjwMey4', '5965933'), - (292, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dOjwMey4', '5967014'), - (292, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dOjwMey4', '5972815'), - (292, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dOjwMey4', '5974016'), - (292, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dOjwMey4', '5975052'), - (292, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dOjwMey4', '5975054'), - (292, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dOjwMey4', '5981515'), - (292, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOjwMey4', '5993516'), - (292, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOjwMey4', '5998939'), - (292, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOjwMey4', '6028191'), - (292, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOjwMey4', '6040066'), - (292, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOjwMey4', '6042717'), - (292, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOjwMey4', '6044838'), - (292, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOjwMey4', '6044839'), - (292, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOjwMey4', '6045684'), - (292, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dOjwMey4', '6050104'), - (292, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOjwMey4', '6053195'), - (292, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOjwMey4', '6053198'), - (292, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOjwMey4', '6056085'), - (292, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOjwMey4', '6056916'), - (292, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOjwMey4', '6059290'), - (292, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOjwMey4', '6060328'), - (292, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOjwMey4', '6061037'), - (292, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOjwMey4', '6061039'), - (292, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOjwMey4', '6067245'), - (292, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOjwMey4', '6068094'), - (292, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOjwMey4', '6068252'), - (292, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOjwMey4', '6068253'), - (292, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOjwMey4', '6068254'), - (292, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dOjwMey4', '6068280'), - (292, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOjwMey4', '6069093'), - (292, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOjwMey4', '6072528'), - (292, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dOjwMey4', '6075556'), - (292, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOjwMey4', '6079840'), - (292, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOjwMey4', '6083398'), - (292, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOjwMey4', '6093504'), - (292, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOjwMey4', '6097414'), - (292, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOjwMey4', '6097442'), - (292, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOjwMey4', '6097684'), - (292, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOjwMey4', '6098762'), - (292, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOjwMey4', '6101362'), - (292, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOjwMey4', '6107314'), - (293, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AXZe87vd', '7074364'), - (293, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AXZe87vd', '7324073'), - (293, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AXZe87vd', '7324074'), - (293, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AXZe87vd', '7324075'), - (293, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AXZe87vd', '7324078'), - (293, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'AXZe87vd', '7324867'), - (293, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AXZe87vd', '7331457'), - (293, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'AXZe87vd', '7332564'), - (293, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'AXZe87vd', '7335193'), - (293, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'AXZe87vd', '7359624'), - (293, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AXZe87vd', '7363643'), - (293, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AXZe87vd', '7368606'), - (294, 849, 'not_attending', '2021-07-28 23:52:53', '2025-12-17 19:47:40', '6AXe2Q64', '4015721'), - (294, 870, 'not_attending', '2021-07-03 01:49:22', '2025-12-17 19:47:39', '6AXe2Q64', '4136937'), - (294, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXe2Q64', '4136938'), - (294, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', '6AXe2Q64', '4136947'), - (294, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXe2Q64', '4210314'), - (294, 887, 'attending', '2021-07-14 22:30:47', '2025-12-17 19:47:39', '6AXe2Q64', '4225444'), - (294, 891, 'attending', '2021-07-02 19:55:49', '2025-12-17 19:47:38', '6AXe2Q64', '4229417'), - (294, 892, 'attending', '2021-07-04 02:49:50', '2025-12-17 19:47:39', '6AXe2Q64', '4229418'), - (294, 894, 'not_attending', '2021-07-14 22:34:16', '2025-12-17 19:47:39', '6AXe2Q64', '4229423'), - (294, 895, 'attending', '2021-07-03 00:56:07', '2025-12-17 19:47:39', '6AXe2Q64', '4229424'), - (294, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXe2Q64', '4239259'), - (294, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXe2Q64', '4240316'), - (294, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXe2Q64', '4240317'), - (294, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXe2Q64', '4240318'), - (294, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXe2Q64', '4240320'), - (294, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXe2Q64', '4250163'), - (294, 908, 'not_attending', '2021-07-15 22:16:22', '2025-12-17 19:47:39', '6AXe2Q64', '4257613'), - (294, 910, 'maybe', '2021-07-13 01:10:30', '2025-12-17 19:47:39', '6AXe2Q64', '4258189'), - (294, 912, 'attending', '2021-07-13 01:00:06', '2025-12-17 19:47:39', '6AXe2Q64', '4271104'), - (294, 914, 'maybe', '2021-07-17 21:25:10', '2025-12-17 19:47:39', '6AXe2Q64', '4273767'), - (294, 918, 'attending', '2021-07-12 22:34:19', '2025-12-17 19:47:39', '6AXe2Q64', '4274486'), - (294, 919, 'attending', '2021-07-14 15:31:43', '2025-12-17 19:47:39', '6AXe2Q64', '4275957'), - (294, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXe2Q64', '4277819'), - (294, 921, 'attending', '2021-07-14 00:55:02', '2025-12-17 19:47:39', '6AXe2Q64', '4278368'), - (294, 927, 'attending', '2021-07-27 00:20:10', '2025-12-17 19:47:40', '6AXe2Q64', '4297216'), - (294, 929, 'maybe', '2021-08-03 01:08:13', '2025-12-17 19:47:41', '6AXe2Q64', '4297223'), - (294, 933, 'not_attending', '2021-07-28 23:53:17', '2025-12-17 19:47:40', '6AXe2Q64', '4301723'), - (294, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXe2Q64', '4302093'), - (294, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXe2Q64', '4304151'), - (294, 938, 'attending', '2021-07-25 22:46:06', '2025-12-17 19:47:40', '6AXe2Q64', '4306597'), - (294, 952, 'maybe', '2021-08-03 01:07:52', '2025-12-17 19:47:41', '6AXe2Q64', '4318286'), - (294, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '6AXe2Q64', '4345519'), - (294, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXe2Q64', '4356801'), - (294, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '6AXe2Q64', '4358025'), - (294, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXe2Q64', '4366186'), - (294, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXe2Q64', '4366187'), - (294, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '6AXe2Q64', '4402823'), - (294, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AXe2Q64', '4420735'), - (294, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AXe2Q64', '4420738'), - (294, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AXe2Q64', '4420739'), - (294, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AXe2Q64', '4420741'), - (294, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXe2Q64', '4420744'), - (294, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXe2Q64', '4420747'), - (294, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AXe2Q64', '4420748'), - (294, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXe2Q64', '4420749'), - (294, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXe2Q64', '4461883'), - (294, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXe2Q64', '4508342'), - (294, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXe2Q64', '4568602'), - (294, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXe2Q64', '6045684'), - (295, 513, 'attending', '2020-12-20 00:09:18', '2025-12-17 19:47:55', 'rdOPwZym', '3329383'), - (295, 522, 'attending', '2020-12-16 21:26:42', '2025-12-17 19:47:55', 'rdOPwZym', '3342836'), - (295, 526, 'attending', '2021-01-03 00:17:23', '2025-12-17 19:47:48', 'rdOPwZym', '3351539'), - (295, 532, 'attending', '2021-01-08 18:38:45', '2025-12-17 19:47:48', 'rdOPwZym', '3381412'), - (295, 535, 'attending', '2021-01-09 20:26:16', '2025-12-17 19:47:48', 'rdOPwZym', '3384729'), - (295, 536, 'attending', '2021-01-06 17:21:05', '2025-12-17 19:47:48', 'rdOPwZym', '3386848'), - (295, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'rdOPwZym', '3389527'), - (295, 542, 'attending', '2021-01-12 00:21:11', '2025-12-17 19:47:48', 'rdOPwZym', '3395013'), - (295, 543, 'attending', '2021-01-15 21:01:47', '2025-12-17 19:47:48', 'rdOPwZym', '3396499'), - (295, 548, 'attending', '2021-01-13 18:17:50', '2025-12-17 19:47:48', 'rdOPwZym', '3403650'), - (295, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'rdOPwZym', '3406988'), - (295, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'rdOPwZym', '3416576'), - (295, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'rdOPwZym', '3418925'), - (295, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'rdOPwZym', '3430267'), - (295, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'rdOPwZym', '3432673'), - (295, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'rdOPwZym', '3468125'), - (295, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'rdOPwZym', '3470303'), - (295, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'rdOPwZym', '3470305'), - (295, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOPwZym', '3470991'), - (295, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'rdOPwZym', '3517815'), - (295, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'rdOPwZym', '3517816'), - (295, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'rdOPwZym', '3523941'), - (295, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOPwZym', '3533850'), - (295, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOPwZym', '3536632'), - (295, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'rdOPwZym', '3536656'), - (295, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'rdOPwZym', '3539916'), - (295, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'rdOPwZym', '3539917'), - (295, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOPwZym', '3539918'), - (295, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'rdOPwZym', '3539919'), - (295, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'rdOPwZym', '3539920'), - (295, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'rdOPwZym', '3539921'), - (295, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'rdOPwZym', '3539922'), - (295, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'rdOPwZym', '3539923'), - (295, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOPwZym', '3539927'), - (295, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOPwZym', '3582734'), - (295, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'rdOPwZym', '3583262'), - (295, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOPwZym', '3619523'), - (295, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'rdOPwZym', '3661369'), - (295, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'rdOPwZym', '3674262'), - (295, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'rdOPwZym', '3677402'), - (295, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOPwZym', '3730212'), - (295, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOPwZym', '6045684'), - (296, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'EdVWLErm', '3470305'), - (296, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'EdVWLErm', '3517815'), - (296, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'EdVWLErm', '3523941'), - (296, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'EdVWLErm', '3533850'), - (296, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'EdVWLErm', '3536632'), - (296, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'EdVWLErm', '3536656'), - (296, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'EdVWLErm', '3539916'), - (296, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'EdVWLErm', '3539917'), - (296, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'EdVWLErm', '3539918'), - (296, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'EdVWLErm', '3539919'), - (296, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'EdVWLErm', '3539920'), - (296, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'EdVWLErm', '3539921'), - (296, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'EdVWLErm', '3539922'), - (296, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'EdVWLErm', '3539923'), - (296, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVWLErm', '6045684'), - (297, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6ozY30A', '5426882'), - (297, 1512, 'attending', '2022-07-12 22:31:16', '2025-12-17 19:47:19', 'm6ozY30A', '5441112'), - (297, 1513, 'attending', '2022-07-13 10:59:43', '2025-12-17 19:47:19', 'm6ozY30A', '5441125'), - (297, 1514, 'attending', '2022-07-19 07:50:35', '2025-12-17 19:47:20', 'm6ozY30A', '5441126'), - (297, 1515, 'attending', '2022-08-05 07:50:30', '2025-12-17 19:47:21', 'm6ozY30A', '5441128'), - (297, 1516, 'attending', '2022-08-19 08:06:09', '2025-12-17 19:47:23', 'm6ozY30A', '5441129'), - (297, 1517, 'attending', '2022-08-19 08:06:20', '2025-12-17 19:47:23', 'm6ozY30A', '5441130'), - (297, 1518, 'not_attending', '2022-09-01 15:10:57', '2025-12-17 19:47:24', 'm6ozY30A', '5441131'), - (297, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6ozY30A', '5441132'), - (297, 1526, 'maybe', '2022-07-16 00:13:30', '2025-12-17 19:47:20', 'm6ozY30A', '5445059'), - (297, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6ozY30A', '5446643'), - (297, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'm6ozY30A', '5449068'), - (297, 1540, 'not_attending', '2022-07-22 16:19:25', '2025-12-17 19:47:20', 'm6ozY30A', '5453325'), - (297, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6ozY30A', '5454516'), - (297, 1544, 'not_attending', '2022-09-17 20:01:46', '2025-12-17 19:47:11', 'm6ozY30A', '5454517'), - (297, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6ozY30A', '5454605'), - (297, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6ozY30A', '5455037'), - (297, 1561, 'maybe', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6ozY30A', '5461278'), - (297, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6ozY30A', '5469480'), - (297, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6ozY30A', '5471073'), - (297, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'm6ozY30A', '5474663'), - (297, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6ozY30A', '5482022'), - (297, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6ozY30A', '5482793'), - (297, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6ozY30A', '5488912'), - (297, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6ozY30A', '5492192'), - (297, 1588, 'attending', '2022-08-09 15:31:13', '2025-12-17 19:47:22', 'm6ozY30A', '5493139'), - (297, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6ozY30A', '5493200'), - (297, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6ozY30A', '5502188'), - (297, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6ozY30A', '5505059'), - (297, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6ozY30A', '5509055'), - (297, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6ozY30A', '5512862'), - (297, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6ozY30A', '5513985'), - (297, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'm6ozY30A', '5519981'), - (297, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6ozY30A', '5522550'), - (297, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6ozY30A', '5534683'), - (297, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6ozY30A', '5537735'), - (297, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6ozY30A', '5540859'), - (297, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6ozY30A', '5546619'), - (297, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6ozY30A', '5555245'), - (297, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6ozY30A', '5557747'), - (297, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6ozY30A', '5560255'), - (297, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6ozY30A', '5562906'), - (297, 1667, 'attending', '2022-09-24 19:16:23', '2025-12-17 19:47:11', 'm6ozY30A', '5563221'), - (297, 1668, 'attending', '2022-10-01 01:23:21', '2025-12-17 19:47:12', 'm6ozY30A', '5563222'), - (297, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6ozY30A', '5600604'), - (297, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6ozY30A', '5605544'), - (297, 1699, 'attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'm6ozY30A', '5606737'), - (297, 1719, 'attending', '2022-10-05 07:56:09', '2025-12-17 19:47:12', 'm6ozY30A', '5630958'), - (297, 1720, 'attending', '2022-10-05 08:01:57', '2025-12-17 19:47:12', 'm6ozY30A', '5630959'), - (297, 1721, 'not_attending', '2022-10-17 07:12:44', '2025-12-17 19:47:13', 'm6ozY30A', '5630960'), - (297, 1722, 'not_attending', '2022-10-24 14:45:57', '2025-12-17 19:47:14', 'm6ozY30A', '5630961'), - (297, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6ozY30A', '5630962'), - (297, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6ozY30A', '5630966'), - (297, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6ozY30A', '5630967'), - (297, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm6ozY30A', '5630968'), - (297, 1727, 'not_attending', '2022-12-03 22:25:03', '2025-12-17 19:47:16', 'm6ozY30A', '5630969'), - (297, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6ozY30A', '5635406'), - (297, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6ozY30A', '5638765'), - (297, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6ozY30A', '5640097'), - (297, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6ozY30A', '5640843'), - (297, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6ozY30A', '5641521'), - (297, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6ozY30A', '5642818'), - (297, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6ozY30A', '5652395'), - (297, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6ozY30A', '5670445'), - (297, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6ozY30A', '5671637'), - (297, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6ozY30A', '5672329'), - (297, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6ozY30A', '5674057'), - (297, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6ozY30A', '5674060'), - (297, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6ozY30A', '5677461'), - (297, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6ozY30A', '5698046'), - (297, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6ozY30A', '5699760'), - (297, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6ozY30A', '5741601'), - (297, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6ozY30A', '5763458'), - (297, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6ozY30A', '5774172'), - (297, 1832, 'not_attending', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'm6ozY30A', '5818247'), - (297, 1834, 'not_attending', '2022-12-10 09:03:28', '2025-12-17 19:47:17', 'm6ozY30A', '5819470'), - (297, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6ozY30A', '5819471'), - (297, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6ozY30A', '5827739'), - (297, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6ozY30A', '5844306'), - (297, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6ozY30A', '5850159'), - (297, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6ozY30A', '5858999'), - (297, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6ozY30A', '5871984'), - (297, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6ozY30A', '5876354'), - (297, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm6ozY30A', '5880939'), - (297, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6ozY30A', '5887890'), - (297, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6ozY30A', '5888598'), - (297, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6ozY30A', '5893260'), - (297, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6ozY30A', '6045684'), - (298, 311, 'not_attending', '2020-09-14 14:45:56', '2025-12-17 19:47:56', 'QdJY2Pn4', '3186057'), - (298, 327, 'attending', '2020-09-26 14:22:35', '2025-12-17 19:47:52', 'QdJY2Pn4', '3197085'), - (298, 328, 'attending', '2020-09-26 14:22:47', '2025-12-17 19:47:52', 'QdJY2Pn4', '3197086'), - (298, 333, 'attending', '2020-10-05 22:40:52', '2025-12-17 19:47:52', 'QdJY2Pn4', '3199782'), - (298, 334, 'attending', '2020-10-08 20:04:45', '2025-12-17 19:47:52', 'QdJY2Pn4', '3199784'), - (298, 342, 'attending', '2020-10-02 21:48:37', '2025-12-17 19:47:52', 'QdJY2Pn4', '3204472'), - (298, 347, 'maybe', '2020-09-24 19:44:26', '2025-12-17 19:47:51', 'QdJY2Pn4', '3207930'), - (298, 348, 'attending', '2020-09-25 16:02:17', '2025-12-17 19:47:52', 'QdJY2Pn4', '3209159'), - (298, 357, 'maybe', '2020-09-30 03:11:43', '2025-12-17 19:47:52', 'QdJY2Pn4', '3212573'), - (298, 362, 'attending', '2020-09-26 01:14:13', '2025-12-17 19:47:52', 'QdJY2Pn4', '3214207'), - (298, 363, 'not_attending', '2020-09-28 00:17:53', '2025-12-17 19:47:52', 'QdJY2Pn4', '3217037'), - (298, 365, 'maybe', '2020-09-24 19:44:21', '2025-12-17 19:47:52', 'QdJY2Pn4', '3218510'), - (298, 369, 'attending', '2020-10-12 21:04:53', '2025-12-17 19:47:52', 'QdJY2Pn4', '3221404'), - (298, 383, 'attending', '2020-09-28 00:17:20', '2025-12-17 19:47:52', 'QdJY2Pn4', '3227946'), - (298, 385, 'attending', '2020-10-03 15:24:48', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228698'), - (298, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228699'), - (298, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228700'), - (298, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228701'), - (298, 412, 'not_attending', '2020-10-07 23:03:59', '2025-12-17 19:47:52', 'QdJY2Pn4', '3236636'), - (298, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'QdJY2Pn4', '3245751'), - (298, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'QdJY2Pn4', '3250232'), - (298, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'QdJY2Pn4', '3256168'), - (298, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'QdJY2Pn4', '3263578'), - (298, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'QdJY2Pn4', '3276428'), - (298, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'QdJY2Pn4', '3281467'), - (298, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'QdJY2Pn4', '3281470'), - (298, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'QdJY2Pn4', '3281829'), - (298, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'QdJY2Pn4', '3285413'), - (298, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'QdJY2Pn4', '3285414'), - (298, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'QdJY2Pn4', '3297764'), - (298, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'QdJY2Pn4', '3313856'), - (298, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'QdJY2Pn4', '3314909'), - (298, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'QdJY2Pn4', '3314964'), - (298, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'QdJY2Pn4', '3323365'), - (298, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'QdJY2Pn4', '3329383'), - (298, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'QdJY2Pn4', '3351539'), - (298, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'QdJY2Pn4', '3386848'), - (298, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'QdJY2Pn4', '3389527'), - (298, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'QdJY2Pn4', '3396499'), - (298, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'QdJY2Pn4', '3403650'), - (298, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'QdJY2Pn4', '3406988'), - (298, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'QdJY2Pn4', '3408338'), - (298, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'QdJY2Pn4', '3416576'), - (298, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJY2Pn4', '6045684'), - (299, 2376, 'attending', '2024-01-03 22:53:14', '2025-12-17 19:46:40', 'xAYQZxGA', '6642900'), - (299, 2377, 'attending', '2024-01-03 22:52:52', '2025-12-17 19:46:37', 'xAYQZxGA', '6643448'), - (299, 2379, 'attending', '2024-01-03 22:52:24', '2025-12-17 19:46:37', 'xAYQZxGA', '6644187'), - (299, 2385, 'attending', '2024-01-03 22:52:55', '2025-12-17 19:46:37', 'xAYQZxGA', '6648943'), - (299, 2386, 'attending', '2024-01-03 22:50:43', '2025-12-17 19:46:37', 'xAYQZxGA', '6648951'), - (299, 2387, 'attending', '2024-01-03 22:52:12', '2025-12-17 19:46:37', 'xAYQZxGA', '6648952'), - (299, 2388, 'attending', '2024-01-03 22:52:35', '2025-12-17 19:46:37', 'xAYQZxGA', '6649244'), - (299, 2389, 'attending', '2024-01-03 22:53:11', '2025-12-17 19:46:40', 'xAYQZxGA', '6651094'), - (299, 2390, 'maybe', '2024-01-03 22:52:39', '2025-12-17 19:46:37', 'xAYQZxGA', '6651141'), - (299, 2392, 'attending', '2024-01-09 18:01:00', '2025-12-17 19:46:37', 'xAYQZxGA', '6654412'), - (299, 2393, 'maybe', '2024-01-09 09:42:16', '2025-12-17 19:46:38', 'xAYQZxGA', '6654468'), - (299, 2394, 'maybe', '2024-01-09 18:03:37', '2025-12-17 19:46:38', 'xAYQZxGA', '6654470'), - (299, 2396, 'attending', '2024-01-16 21:54:29', '2025-12-17 19:46:38', 'xAYQZxGA', '6655401'), - (299, 2397, 'attending', '2024-01-08 22:39:05', '2025-12-17 19:46:37', 'xAYQZxGA', '6657379'), - (299, 2398, 'attending', '2024-01-11 03:57:23', '2025-12-17 19:46:37', 'xAYQZxGA', '6657381'), - (299, 2399, 'attending', '2024-01-09 18:03:14', '2025-12-17 19:46:37', 'xAYQZxGA', '6657583'), - (299, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xAYQZxGA', '6661585'), - (299, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xAYQZxGA', '6661588'), - (299, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xAYQZxGA', '6661589'), - (299, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xAYQZxGA', '6699906'), - (299, 2408, 'not_attending', '2024-01-21 00:44:34', '2025-12-17 19:46:40', 'xAYQZxGA', '6699907'), - (299, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'xAYQZxGA', '6699913'), - (299, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xAYQZxGA', '6701109'), - (299, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xAYQZxGA', '6705219'), - (299, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xAYQZxGA', '6710153'), - (299, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xAYQZxGA', '6711552'), - (299, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'xAYQZxGA', '6711553'), - (299, 2435, 'not_attending', '2024-01-29 19:35:31', '2025-12-17 19:46:41', 'xAYQZxGA', '6721547'), - (299, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xAYQZxGA', '6722688'), - (299, 2438, 'attending', '2024-02-07 19:10:20', '2025-12-17 19:46:41', 'xAYQZxGA', '6730201'), - (299, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xAYQZxGA', '6730620'), - (299, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xAYQZxGA', '6730642'), - (299, 2449, 'attending', '2024-02-19 23:07:19', '2025-12-17 19:46:42', 'xAYQZxGA', '6735833'), - (299, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xAYQZxGA', '6740364'), - (299, 2454, 'attending', '2024-02-20 22:47:28', '2025-12-17 19:46:42', 'xAYQZxGA', '6740921'), - (299, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xAYQZxGA', '6743829'), - (299, 2462, 'attending', '2024-02-12 19:56:25', '2025-12-17 19:46:41', 'xAYQZxGA', '6744701'), - (299, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xAYQZxGA', '7030380'), - (299, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'xAYQZxGA', '7033677'), - (299, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xAYQZxGA', '7035415'), - (299, 2475, 'attending', '2024-02-29 00:02:34', '2025-12-17 19:46:43', 'xAYQZxGA', '7035643'), - (299, 2476, 'attending', '2024-02-27 12:38:55', '2025-12-17 19:46:43', 'xAYQZxGA', '7035691'), - (299, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xAYQZxGA', '7044715'), - (299, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xAYQZxGA', '7050318'), - (299, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xAYQZxGA', '7050319'), - (299, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xAYQZxGA', '7050322'), - (299, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xAYQZxGA', '7057804'), - (299, 2500, 'maybe', '2024-03-06 23:19:05', '2025-12-17 19:46:43', 'xAYQZxGA', '7058603'), - (299, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'xAYQZxGA', '7059866'), - (299, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xAYQZxGA', '7072824'), - (299, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xAYQZxGA', '7074348'), - (299, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xAYQZxGA', '7074364'), - (299, 2537, 'not_attending', '2024-03-23 14:30:34', '2025-12-17 19:46:33', 'xAYQZxGA', '7085484'), - (299, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'xAYQZxGA', '7089267'), - (299, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xAYQZxGA', '7098747'), - (299, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xAYQZxGA', '7113468'), - (299, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xAYQZxGA', '7114856'), - (299, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xAYQZxGA', '7114951'), - (299, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xAYQZxGA', '7114955'), - (299, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xAYQZxGA', '7114956'), - (299, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xAYQZxGA', '7114957'), - (299, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xAYQZxGA', '7153615'), - (299, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xAYQZxGA', '7159484'), - (299, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xAYQZxGA', '7178446'), - (299, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'xAYQZxGA', '7220467'), - (299, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xAYQZxGA', '7240354'), - (299, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xAYQZxGA', '7251633'), - (299, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'xAYQZxGA', '7263048'), - (299, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'xAYQZxGA', '7302674'), - (299, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xAYQZxGA', '7324073'), - (299, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xAYQZxGA', '7324074'), - (299, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xAYQZxGA', '7324075'), - (299, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'xAYQZxGA', '7324078'), - (299, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xAYQZxGA', '7324082'), - (299, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xAYQZxGA', '7331457'), - (299, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xAYQZxGA', '7363643'), - (299, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xAYQZxGA', '7368606'), - (299, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xAYQZxGA', '7397462'), - (299, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xAYQZxGA', '7424275'), - (299, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xAYQZxGA', '7432751'), - (299, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xAYQZxGA', '7432752'), - (299, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xAYQZxGA', '7432753'), - (299, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xAYQZxGA', '7432754'), - (299, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xAYQZxGA', '7432755'), - (299, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xAYQZxGA', '7432756'), - (299, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xAYQZxGA', '7432758'), - (299, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xAYQZxGA', '7432759'), - (299, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xAYQZxGA', '7433834'), - (299, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'xAYQZxGA', '7470197'), - (299, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xAYQZxGA', '7685613'), - (299, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xAYQZxGA', '7688194'), - (299, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xAYQZxGA', '7688196'), - (299, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xAYQZxGA', '7688289'), - (299, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xAYQZxGA', '7692763'), - (299, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xAYQZxGA', '7697552'), - (299, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xAYQZxGA', '7699878'), - (299, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'xAYQZxGA', '7704043'), - (299, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'xAYQZxGA', '7712467'), - (299, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'xAYQZxGA', '7713585'), - (299, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'xAYQZxGA', '7713586'), - (299, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xAYQZxGA', '7738518'), - (299, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xAYQZxGA', '7750636'), - (299, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xAYQZxGA', '7796540'), - (299, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xAYQZxGA', '7796541'), - (299, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xAYQZxGA', '7796542'), - (299, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xAYQZxGA', '7825913'), - (299, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xAYQZxGA', '7826209'), - (299, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xAYQZxGA', '7834742'), - (299, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'xAYQZxGA', '7842108'), - (299, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xAYQZxGA', '7842902'), - (299, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xAYQZxGA', '7842903'), - (299, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xAYQZxGA', '7842904'), - (299, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xAYQZxGA', '7842905'), - (299, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xAYQZxGA', '7855719'), - (299, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xAYQZxGA', '7860683'), - (299, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xAYQZxGA', '7860684'), - (299, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xAYQZxGA', '7866095'), - (299, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xAYQZxGA', '7869170'), - (299, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xAYQZxGA', '7869188'), - (299, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xAYQZxGA', '7869201'), - (299, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xAYQZxGA', '7877465'), - (299, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xAYQZxGA', '7888250'), - (299, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xAYQZxGA', '7904777'), - (299, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xAYQZxGA', '8349164'), - (299, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xAYQZxGA', '8349545'), - (299, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xAYQZxGA', '8368028'), - (299, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'xAYQZxGA', '8368029'), - (299, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xAYQZxGA', '8388462'), - (299, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xAYQZxGA', '8400273'), - (299, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'xAYQZxGA', '8400275'), - (299, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'xAYQZxGA', '8400276'), - (299, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xAYQZxGA', '8404977'), - (299, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xAYQZxGA', '8430783'), - (299, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xAYQZxGA', '8430784'), - (299, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xAYQZxGA', '8430799'), - (299, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xAYQZxGA', '8430800'), - (299, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xAYQZxGA', '8430801'), - (299, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'xAYQZxGA', '8438709'), - (299, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xAYQZxGA', '8457738'), - (299, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xAYQZxGA', '8459566'), - (299, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xAYQZxGA', '8459567'), - (299, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xAYQZxGA', '8461032'), - (299, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xAYQZxGA', '8477877'), - (299, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xAYQZxGA', '8485688'), - (299, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xAYQZxGA', '8490587'), - (299, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xAYQZxGA', '8493552'), - (299, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xAYQZxGA', '8493553'), - (299, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xAYQZxGA', '8493554'), - (299, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xAYQZxGA', '8493555'), - (299, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xAYQZxGA', '8493556'), - (299, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xAYQZxGA', '8493557'), - (299, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xAYQZxGA', '8493558'), - (299, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xAYQZxGA', '8493559'), - (299, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xAYQZxGA', '8493560'), - (299, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'xAYQZxGA', '8493561'), - (299, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xAYQZxGA', '8493572'), - (299, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAYQZxGA', '8540725'), - (299, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAYQZxGA', '8555421'), - (300, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ndaxPMZ4', '5441131'), - (300, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ndaxPMZ4', '5441132'), - (300, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndaxPMZ4', '5505059'), - (300, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ndaxPMZ4', '5509055'), - (300, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndaxPMZ4', '5512862'), - (300, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndaxPMZ4', '5513985'), - (300, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ndaxPMZ4', '5519981'), - (300, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndaxPMZ4', '5522550'), - (300, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndaxPMZ4', '5534683'), - (300, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ndaxPMZ4', '5537735'), - (300, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndaxPMZ4', '5540859'), - (300, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndaxPMZ4', '5546619'), - (300, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndaxPMZ4', '5557747'), - (300, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndaxPMZ4', '5560255'), - (300, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndaxPMZ4', '5562906'), - (300, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndaxPMZ4', '5600604'), - (300, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndaxPMZ4', '5605544'), - (300, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ndaxPMZ4', '5630960'), - (300, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndaxPMZ4', '5630961'), - (300, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndaxPMZ4', '5630962'), - (300, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndaxPMZ4', '5630966'), - (300, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ndaxPMZ4', '5630967'), - (300, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndaxPMZ4', '5630968'), - (300, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndaxPMZ4', '5635406'), - (300, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndaxPMZ4', '5638765'), - (300, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndaxPMZ4', '5640097'), - (300, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ndaxPMZ4', '5640843'), - (300, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndaxPMZ4', '5641521'), - (300, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ndaxPMZ4', '5642818'), - (300, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndaxPMZ4', '5652395'), - (300, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ndaxPMZ4', '5670445'), - (300, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndaxPMZ4', '5671637'), - (300, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndaxPMZ4', '5672329'), - (300, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndaxPMZ4', '5674057'), - (300, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndaxPMZ4', '5674060'), - (300, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndaxPMZ4', '5677461'), - (300, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndaxPMZ4', '5698046'), - (300, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ndaxPMZ4', '5699760'), - (300, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndaxPMZ4', '5741601'), - (300, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndaxPMZ4', '5763458'), - (300, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndaxPMZ4', '5774172'), - (300, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ndaxPMZ4', '5818247'), - (300, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndaxPMZ4', '5819471'), - (300, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndaxPMZ4', '5827739'), - (300, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndaxPMZ4', '5844306'), - (300, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndaxPMZ4', '5850159'), - (300, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndaxPMZ4', '5858999'), - (300, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndaxPMZ4', '5871984'), - (300, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndaxPMZ4', '5876354'), - (300, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndaxPMZ4', '5880939'), - (300, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ndaxPMZ4', '5880940'), - (300, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndaxPMZ4', '5880942'), - (300, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndaxPMZ4', '5880943'), - (300, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndaxPMZ4', '5887890'), - (300, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndaxPMZ4', '5888598'), - (300, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndaxPMZ4', '5893260'), - (300, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndaxPMZ4', '5899826'), - (300, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndaxPMZ4', '5900199'), - (300, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ndaxPMZ4', '5900200'), - (300, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndaxPMZ4', '5900202'), - (300, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndaxPMZ4', '5900203'), - (300, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndaxPMZ4', '5901108'), - (300, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndaxPMZ4', '5901126'), - (300, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndaxPMZ4', '5909655'), - (300, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndaxPMZ4', '5910522'), - (300, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndaxPMZ4', '5910526'), - (300, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndaxPMZ4', '5910528'), - (300, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ndaxPMZ4', '5916219'), - (300, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndaxPMZ4', '5936234'), - (300, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndaxPMZ4', '5958351'), - (300, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndaxPMZ4', '5959751'), - (300, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndaxPMZ4', '5959755'), - (300, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndaxPMZ4', '5960055'), - (300, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndaxPMZ4', '5961684'), - (300, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndaxPMZ4', '5962132'), - (300, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ndaxPMZ4', '5962133'), - (300, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndaxPMZ4', '5962134'), - (300, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndaxPMZ4', '5962317'), - (300, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndaxPMZ4', '5962318'), - (300, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndaxPMZ4', '5965933'), - (300, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndaxPMZ4', '5967014'), - (300, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndaxPMZ4', '5972815'), - (300, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndaxPMZ4', '5974016'), - (300, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndaxPMZ4', '5981515'), - (300, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndaxPMZ4', '5993516'), - (300, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndaxPMZ4', '5998939'), - (300, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndaxPMZ4', '6028191'), - (300, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndaxPMZ4', '6040066'), - (300, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndaxPMZ4', '6042717'), - (300, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndaxPMZ4', '6044838'), - (300, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndaxPMZ4', '6044839'), - (300, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaxPMZ4', '6045684'), - (300, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndaxPMZ4', '6050104'), - (300, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndaxPMZ4', '6053195'), - (300, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndaxPMZ4', '6053198'), - (300, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndaxPMZ4', '6056085'), - (300, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndaxPMZ4', '6056916'), - (300, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndaxPMZ4', '6059290'), - (300, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndaxPMZ4', '6060328'), - (300, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndaxPMZ4', '6061037'), - (300, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndaxPMZ4', '6061039'), - (300, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndaxPMZ4', '6067245'), - (300, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndaxPMZ4', '6068094'), - (300, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndaxPMZ4', '6068252'), - (300, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndaxPMZ4', '6068253'), - (300, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndaxPMZ4', '6068254'), - (300, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndaxPMZ4', '6068280'), - (300, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndaxPMZ4', '6069093'), - (300, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndaxPMZ4', '6072528'), - (300, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndaxPMZ4', '6079840'), - (300, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndaxPMZ4', '6083398'), - (300, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndaxPMZ4', '6093504'), - (300, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndaxPMZ4', '6097414'), - (300, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndaxPMZ4', '6097442'), - (300, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndaxPMZ4', '6097684'), - (300, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndaxPMZ4', '6098762'), - (300, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ndaxPMZ4', '6101361'), - (300, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndaxPMZ4', '6101362'), - (300, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndaxPMZ4', '6107314'), - (300, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndaxPMZ4', '6120034'), - (300, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'ndaxPMZ4', '6136733'), - (300, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndaxPMZ4', '6137989'), - (300, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndaxPMZ4', '6150864'), - (300, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndaxPMZ4', '6155491'), - (300, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndaxPMZ4', '6164417'), - (300, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndaxPMZ4', '6166388'), - (300, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndaxPMZ4', '6176439'), - (300, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndaxPMZ4', '6182410'), - (300, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndaxPMZ4', '6185812'), - (300, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndaxPMZ4', '6187651'), - (300, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndaxPMZ4', '6187963'), - (300, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndaxPMZ4', '6187964'), - (300, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndaxPMZ4', '6187966'), - (300, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndaxPMZ4', '6187967'), - (300, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndaxPMZ4', '6187969'), - (300, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndaxPMZ4', '6334878'), - (300, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndaxPMZ4', '6337236'), - (300, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndaxPMZ4', '6337970'), - (300, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndaxPMZ4', '6338308'), - (300, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndaxPMZ4', '6341710'), - (300, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndaxPMZ4', '6342044'), - (300, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndaxPMZ4', '6342298'), - (300, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndaxPMZ4', '6343294'), - (300, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndaxPMZ4', '6347034'), - (300, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndaxPMZ4', '6347056'), - (300, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndaxPMZ4', '6353830'), - (300, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndaxPMZ4', '6353831'), - (300, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndaxPMZ4', '6357867'), - (300, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndaxPMZ4', '6358652'), - (300, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndaxPMZ4', '6361709'), - (300, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndaxPMZ4', '6361710'), - (300, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndaxPMZ4', '6361711'), - (300, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndaxPMZ4', '6361712'), - (300, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndaxPMZ4', '6361713'), - (300, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndaxPMZ4', '6382573'), - (300, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ndaxPMZ4', '6388604'), - (300, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndaxPMZ4', '6394629'), - (300, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndaxPMZ4', '6394631'), - (300, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndaxPMZ4', '6440863'), - (300, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndaxPMZ4', '6445440'), - (300, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndaxPMZ4', '6453951'), - (300, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndaxPMZ4', '6461696'), - (300, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndaxPMZ4', '6462129'), - (300, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndaxPMZ4', '6463218'), - (300, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ndaxPMZ4', '6472181'), - (300, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndaxPMZ4', '6482693'), - (300, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ndaxPMZ4', '6484200'), - (300, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndaxPMZ4', '6484680'), - (300, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndaxPMZ4', '6507741'), - (300, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndaxPMZ4', '6514659'), - (300, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndaxPMZ4', '6514660'), - (300, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndaxPMZ4', '6519103'), - (300, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndaxPMZ4', '6535681'), - (300, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndaxPMZ4', '6584747'), - (300, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndaxPMZ4', '6587097'), - (300, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndaxPMZ4', '6609022'), - (300, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndaxPMZ4', '6632757'), - (300, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndaxPMZ4', '6644187'), - (300, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndaxPMZ4', '6648951'), - (300, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndaxPMZ4', '6648952'), - (300, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndaxPMZ4', '6655401'), - (300, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndaxPMZ4', '6661585'), - (300, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndaxPMZ4', '6661588'), - (300, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndaxPMZ4', '6661589'), - (300, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndaxPMZ4', '6699906'), - (300, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ndaxPMZ4', '6699913'), - (300, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndaxPMZ4', '6701109'), - (300, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndaxPMZ4', '6705219'), - (300, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndaxPMZ4', '6710153'), - (300, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndaxPMZ4', '6711552'), - (300, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ndaxPMZ4', '6711553'), - (300, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ndaxPMZ4', '6722688'), - (300, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ndaxPMZ4', '6730620'), - (300, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ndaxPMZ4', '6740364'), - (300, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ndaxPMZ4', '6743829'), - (300, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ndaxPMZ4', '7030380'), - (300, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ndaxPMZ4', '7033677'), - (300, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ndaxPMZ4', '7044715'), - (300, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ndaxPMZ4', '7050318'), - (300, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ndaxPMZ4', '7050319'), - (300, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ndaxPMZ4', '7050322'), - (300, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ndaxPMZ4', '7057804'), - (300, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ndaxPMZ4', '7072824'), - (300, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ndaxPMZ4', '7074348'), - (300, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndaxPMZ4', '7074364'), - (300, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ndaxPMZ4', '7089267'), - (300, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ndaxPMZ4', '7098747'), - (300, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ndaxPMZ4', '7113468'), - (300, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ndaxPMZ4', '7114856'), - (300, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ndaxPMZ4', '7114951'), - (300, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ndaxPMZ4', '7114955'), - (300, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ndaxPMZ4', '7114956'), - (300, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndaxPMZ4', '7114957'), - (300, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndaxPMZ4', '7159484'), - (300, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndaxPMZ4', '7178446'), - (300, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ndaxPMZ4', '7220467'), - (300, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndaxPMZ4', '7240354'), - (300, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndaxPMZ4', '7251633'), - (300, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndaxPMZ4', '7324073'), - (300, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndaxPMZ4', '7324074'), - (300, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndaxPMZ4', '7324075'), - (300, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ndaxPMZ4', '7324078'), - (300, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ndaxPMZ4', '7324082'), - (300, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ndaxPMZ4', '7331457'), - (300, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ndaxPMZ4', '7363643'), - (300, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndaxPMZ4', '7368606'), - (300, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndaxPMZ4', '7397462'), - (300, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndaxPMZ4', '7424275'), - (300, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndaxPMZ4', '7432751'), - (300, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndaxPMZ4', '7432752'), - (300, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndaxPMZ4', '7432753'), - (300, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432754'), - (300, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432755'), - (300, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432756'), - (300, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432758'), - (300, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432759'), - (300, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndaxPMZ4', '7433834'), - (300, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndaxPMZ4', '7470197'), - (300, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndaxPMZ4', '7685613'), - (300, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndaxPMZ4', '7688194'), - (300, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndaxPMZ4', '7688196'), - (300, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndaxPMZ4', '7688289'), - (300, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ndaxPMZ4', '7692763'), - (300, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndaxPMZ4', '7697552'), - (300, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndaxPMZ4', '7699878'), - (300, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndaxPMZ4', '7704043'), - (300, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndaxPMZ4', '7712467'), - (300, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ndaxPMZ4', '7713585'), - (300, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ndaxPMZ4', '7713586'), - (300, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndaxPMZ4', '7738518'), - (300, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndaxPMZ4', '7750636'), - (300, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndaxPMZ4', '7796540'), - (300, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndaxPMZ4', '7796541'), - (300, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndaxPMZ4', '7796542'), - (300, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndaxPMZ4', '7825913'), - (300, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndaxPMZ4', '7826209'), - (300, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndaxPMZ4', '7834742'), - (300, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ndaxPMZ4', '7842108'), - (300, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndaxPMZ4', '7842902'), - (300, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndaxPMZ4', '7842903'), - (300, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndaxPMZ4', '7842904'), - (300, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndaxPMZ4', '7842905'), - (300, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndaxPMZ4', '7855719'), - (300, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndaxPMZ4', '7860683'), - (300, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndaxPMZ4', '7860684'), - (300, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndaxPMZ4', '7866095'), - (300, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndaxPMZ4', '7869170'), - (300, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ndaxPMZ4', '7869188'), - (300, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndaxPMZ4', '7869201'), - (300, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndaxPMZ4', '7877465'), - (300, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndaxPMZ4', '7888250'), - (300, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ndaxPMZ4', '7904777'), - (300, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndaxPMZ4', '8349164'), - (300, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndaxPMZ4', '8349545'), - (300, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndaxPMZ4', '8368028'), - (300, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndaxPMZ4', '8368029'), - (300, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndaxPMZ4', '8388462'), - (300, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndaxPMZ4', '8400273'), - (300, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndaxPMZ4', '8400275'), - (300, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ndaxPMZ4', '8400276'), - (300, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndaxPMZ4', '8404977'), - (300, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndaxPMZ4', '8430783'), - (300, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndaxPMZ4', '8430784'), - (300, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndaxPMZ4', '8430799'), - (300, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndaxPMZ4', '8430800'), - (300, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndaxPMZ4', '8430801'), - (300, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndaxPMZ4', '8438709'), - (300, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndaxPMZ4', '8457738'), - (300, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndaxPMZ4', '8459566'), - (300, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndaxPMZ4', '8459567'), - (300, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndaxPMZ4', '8461032'), - (300, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndaxPMZ4', '8477877'), - (300, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ndaxPMZ4', '8485688'), - (300, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ndaxPMZ4', '8490587'), - (300, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ndaxPMZ4', '8493552'), - (300, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ndaxPMZ4', '8493553'), - (300, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ndaxPMZ4', '8493554'), - (300, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ndaxPMZ4', '8493555'), - (300, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ndaxPMZ4', '8493556'), - (300, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ndaxPMZ4', '8493557'), - (300, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ndaxPMZ4', '8493558'), - (300, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ndaxPMZ4', '8493559'), - (300, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ndaxPMZ4', '8493560'), - (300, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ndaxPMZ4', '8493561'), - (300, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ndaxPMZ4', '8493572'), - (300, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ndaxPMZ4', '8540725'), - (300, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndaxPMZ4', '8555421'), - (301, 403, 'attending', '2021-02-25 02:10:40', '2025-12-17 19:47:51', '54koj9p4', '3236458'), - (301, 573, 'attending', '2021-02-26 23:03:34', '2025-12-17 19:47:50', '54koj9p4', '3435542'), - (301, 574, 'attending', '2021-03-06 00:34:26', '2025-12-17 19:47:51', '54koj9p4', '3435543'), - (301, 595, 'attending', '2021-03-08 21:57:10', '2025-12-17 19:47:51', '54koj9p4', '3467761'), - (301, 604, 'attending', '2021-02-27 03:52:51', '2025-12-17 19:47:50', '54koj9p4', '3470305'), - (301, 621, 'attending', '2021-03-03 07:14:01', '2025-12-17 19:47:51', '54koj9p4', '3517815'), - (301, 622, 'attending', '2021-03-08 21:39:05', '2025-12-17 19:47:51', '54koj9p4', '3517816'), - (301, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '54koj9p4', '3523941'), - (301, 630, 'attending', '2021-03-02 19:22:16', '2025-12-17 19:47:51', '54koj9p4', '3533425'), - (301, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54koj9p4', '3533850'), - (301, 633, 'attending', '2021-03-22 04:30:12', '2025-12-17 19:47:44', '54koj9p4', '3534717'), - (301, 634, 'maybe', '2021-04-02 04:24:53', '2025-12-17 19:47:44', '54koj9p4', '3534718'), - (301, 635, 'attending', '2021-04-09 20:19:07', '2025-12-17 19:47:44', '54koj9p4', '3534719'), - (301, 636, 'maybe', '2021-04-16 22:29:44', '2025-12-17 19:47:45', '54koj9p4', '3534720'), - (301, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '54koj9p4', '3536632'), - (301, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '54koj9p4', '3536656'), - (301, 641, 'attending', '2021-03-25 21:55:43', '2025-12-17 19:47:44', '54koj9p4', '3539916'), - (301, 642, 'attending', '2021-04-10 17:35:01', '2025-12-17 19:47:44', '54koj9p4', '3539917'), - (301, 643, 'attending', '2021-04-14 17:51:51', '2025-12-17 19:47:45', '54koj9p4', '3539918'), - (301, 644, 'not_attending', '2021-04-20 21:25:58', '2025-12-17 19:47:46', '54koj9p4', '3539919'), - (301, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54koj9p4', '3539920'), - (301, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54koj9p4', '3539921'), - (301, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54koj9p4', '3539922'), - (301, 648, 'attending', '2021-05-29 02:34:49', '2025-12-17 19:47:47', '54koj9p4', '3539923'), - (301, 649, 'attending', '2021-03-16 17:06:31', '2025-12-17 19:47:51', '54koj9p4', '3539927'), - (301, 650, 'attending', '2021-03-27 03:48:44', '2025-12-17 19:47:44', '54koj9p4', '3539928'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (301, 678, 'attending', '2021-03-11 08:24:24', '2025-12-17 19:47:51', '54koj9p4', '3547158'), - (301, 684, 'not_attending', '2021-03-11 08:24:50', '2025-12-17 19:47:51', '54koj9p4', '3549257'), - (301, 692, 'attending', '2021-03-13 18:59:47', '2025-12-17 19:47:51', '54koj9p4', '3561995'), - (301, 704, 'maybe', '2021-03-29 17:09:53', '2025-12-17 19:47:44', '54koj9p4', '3581429'), - (301, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54koj9p4', '3582734'), - (301, 707, 'maybe', '2021-04-11 06:04:03', '2025-12-17 19:47:46', '54koj9p4', '3583262'), - (301, 708, 'maybe', '2021-03-25 19:04:08', '2025-12-17 19:47:44', '54koj9p4', '3587850'), - (301, 709, 'maybe', '2021-04-04 23:46:43', '2025-12-17 19:47:44', '54koj9p4', '3587852'), - (301, 710, 'maybe', '2021-04-04 23:46:47', '2025-12-17 19:47:44', '54koj9p4', '3587853'), - (301, 712, 'attending', '2021-03-29 17:09:41', '2025-12-17 19:47:44', '54koj9p4', '3604056'), - (301, 713, 'attending', '2021-03-29 17:10:04', '2025-12-17 19:47:44', '54koj9p4', '3604061'), - (301, 714, 'attending', '2021-03-29 17:10:12', '2025-12-17 19:47:44', '54koj9p4', '3604063'), - (301, 717, 'maybe', '2021-03-25 18:22:46', '2025-12-17 19:47:44', '54koj9p4', '3619523'), - (301, 724, 'maybe', '2021-04-11 06:03:56', '2025-12-17 19:47:46', '54koj9p4', '3661369'), - (301, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54koj9p4', '3674262'), - (301, 734, 'maybe', '2021-04-04 23:45:38', '2025-12-17 19:47:44', '54koj9p4', '3676806'), - (301, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54koj9p4', '3677402'), - (301, 742, 'maybe', '2021-06-14 15:41:27', '2025-12-17 19:47:48', '54koj9p4', '3680622'), - (301, 748, 'maybe', '2021-04-07 21:45:47', '2025-12-17 19:47:44', '54koj9p4', '3685353'), - (301, 752, 'attending', '2021-04-15 23:09:20', '2025-12-17 19:47:44', '54koj9p4', '3699422'), - (301, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54koj9p4', '3730212'), - (301, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '54koj9p4', '3793156'), - (301, 823, 'not_attending', '2021-06-19 17:25:38', '2025-12-17 19:47:48', '54koj9p4', '3974109'), - (301, 827, 'attending', '2021-06-05 21:05:30', '2025-12-17 19:47:47', '54koj9p4', '3975311'), - (301, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '54koj9p4', '3975312'), - (301, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54koj9p4', '3994992'), - (301, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '54koj9p4', '4014338'), - (301, 867, 'not_attending', '2021-06-26 18:04:59', '2025-12-17 19:47:38', '54koj9p4', '4021848'), - (301, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '54koj9p4', '4136744'), - (301, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '54koj9p4', '4136937'), - (301, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '54koj9p4', '4136938'), - (301, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '54koj9p4', '4136947'), - (301, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54koj9p4', '4210314'), - (301, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54koj9p4', '4225444'), - (301, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54koj9p4', '4239259'), - (301, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '54koj9p4', '4240316'), - (301, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '54koj9p4', '4240317'), - (301, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '54koj9p4', '4240318'), - (301, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '54koj9p4', '4240320'), - (301, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '54koj9p4', '4250163'), - (301, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54koj9p4', '4275957'), - (301, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54koj9p4', '4277819'), - (301, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54koj9p4', '4301723'), - (301, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '54koj9p4', '4302093'), - (301, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '54koj9p4', '4304151'), - (301, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54koj9p4', '4356801'), - (301, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '54koj9p4', '4366186'), - (301, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '54koj9p4', '4366187'), - (301, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '54koj9p4', '4420735'), - (301, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '54koj9p4', '4420738'), - (301, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '54koj9p4', '4420739'), - (301, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '54koj9p4', '4420741'), - (301, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '54koj9p4', '4420744'), - (301, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '54koj9p4', '4420747'), - (301, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '54koj9p4', '4420748'), - (301, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '54koj9p4', '4420749'), - (301, 1017, 'attending', '2021-09-06 01:21:14', '2025-12-17 19:47:43', '54koj9p4', '4441822'), - (301, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '54koj9p4', '4461883'), - (301, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '54koj9p4', '4508342'), - (301, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '54koj9p4', '4568602'), - (301, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '54koj9p4', '4572153'), - (301, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', '54koj9p4', '4585962'), - (301, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '54koj9p4', '4596356'), - (301, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '54koj9p4', '4598860'), - (301, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '54koj9p4', '4598861'), - (301, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '54koj9p4', '4602797'), - (301, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '54koj9p4', '4637896'), - (301, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '54koj9p4', '4642994'), - (301, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '54koj9p4', '4642995'), - (301, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '54koj9p4', '4642996'), - (301, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '54koj9p4', '4642997'), - (301, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '54koj9p4', '4645687'), - (301, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '54koj9p4', '4645698'), - (301, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '54koj9p4', '4645704'), - (301, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '54koj9p4', '4645705'), - (301, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '54koj9p4', '4668385'), - (301, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '54koj9p4', '4694407'), - (301, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '54koj9p4', '4706262'), - (301, 1153, 'attending', '2022-01-20 00:16:49', '2025-12-17 19:47:32', '54koj9p4', '4708707'), - (301, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '54koj9p4', '4736497'), - (301, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '54koj9p4', '4736499'), - (301, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '54koj9p4', '4736500'), - (301, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '54koj9p4', '4736503'), - (301, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '54koj9p4', '4736504'), - (301, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '54koj9p4', '4746789'), - (301, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '54koj9p4', '4753929'), - (301, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '54koj9p4', '5038850'), - (301, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '54koj9p4', '5045826'), - (301, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '54koj9p4', '5132533'), - (301, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '54koj9p4', '5186582'), - (301, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '54koj9p4', '5186583'), - (301, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '54koj9p4', '5186585'), - (301, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '54koj9p4', '5190437'), - (301, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '54koj9p4', '5195095'), - (301, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '54koj9p4', '5215989'), - (301, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '54koj9p4', '5223686'), - (301, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '54koj9p4', '5227432'), - (301, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '54koj9p4', '5247467'), - (301, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '54koj9p4', '5260800'), - (301, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '54koj9p4', '5269930'), - (301, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '54koj9p4', '5271448'), - (301, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '54koj9p4', '5271449'), - (301, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '54koj9p4', '5276469'), - (301, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '54koj9p4', '5278159'), - (301, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '54koj9p4', '5363695'), - (301, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '54koj9p4', '5365960'), - (301, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '54koj9p4', '5368973'), - (301, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '54koj9p4', '5378247'), - (301, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', '54koj9p4', '5389605'), - (301, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '54koj9p4', '5397265'), - (301, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '54koj9p4', '5403967'), - (301, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '54koj9p4', '5404786'), - (301, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '54koj9p4', '5405203'), - (301, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '54koj9p4', '5411699'), - (301, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '54koj9p4', '5412550'), - (301, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '54koj9p4', '5415046'), - (301, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '54koj9p4', '5422086'), - (301, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '54koj9p4', '5422406'), - (301, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '54koj9p4', '5424565'), - (301, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '54koj9p4', '5426882'), - (301, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '54koj9p4', '5427083'), - (301, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '54koj9p4', '5441125'), - (301, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '54koj9p4', '5441126'), - (301, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '54koj9p4', '5441128'), - (301, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '54koj9p4', '5446643'), - (301, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '54koj9p4', '5453325'), - (301, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '54koj9p4', '5454516'), - (301, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '54koj9p4', '5454605'), - (301, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '54koj9p4', '5455037'), - (301, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '54koj9p4', '5461278'), - (301, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '54koj9p4', '5469480'), - (301, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '54koj9p4', '5471073'), - (301, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '54koj9p4', '5474663'), - (301, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '54koj9p4', '5482022'), - (301, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '54koj9p4', '5482793'), - (301, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '54koj9p4', '5488912'), - (301, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '54koj9p4', '5492192'), - (301, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '54koj9p4', '5493139'), - (301, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '54koj9p4', '5493200'), - (301, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '54koj9p4', '5502188'), - (301, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '54koj9p4', '5512862'), - (301, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '54koj9p4', '5513985'), - (301, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54koj9p4', '6045684'), - (302, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mR1ej6Ed', '7074364'), - (302, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mR1ej6Ed', '7324073'), - (302, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mR1ej6Ed', '7324074'), - (302, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mR1ej6Ed', '7324075'), - (302, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mR1ej6Ed', '7324078'), - (302, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mR1ej6Ed', '7324867'), - (302, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mR1ej6Ed', '7331457'), - (302, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'mR1ej6Ed', '7332564'), - (302, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'mR1ej6Ed', '7335193'), - (302, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mR1ej6Ed', '7359624'), - (302, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mR1ej6Ed', '7363643'), - (302, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mR1ej6Ed', '7368606'), - (303, 408, 'attending', '2021-02-19 00:06:55', '2025-12-17 19:47:50', 'Pm7ky95m', '3236466'), - (303, 599, 'attending', '2021-02-17 00:56:42', '2025-12-17 19:47:50', 'Pm7ky95m', '3468117'), - (303, 600, 'attending', '2021-02-22 00:25:27', '2025-12-17 19:47:50', 'Pm7ky95m', '3468125'), - (303, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'Pm7ky95m', '3470305'), - (303, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'Pm7ky95m', '3470991'), - (303, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'Pm7ky95m', '3517815'), - (303, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'Pm7ky95m', '3517816'), - (303, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'Pm7ky95m', '3523941'), - (303, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Pm7ky95m', '3533850'), - (303, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Pm7ky95m', '3536632'), - (303, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Pm7ky95m', '3536656'), - (303, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Pm7ky95m', '3539916'), - (303, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Pm7ky95m', '3539917'), - (303, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Pm7ky95m', '3539918'), - (303, 644, 'attending', '2021-04-24 22:53:26', '2025-12-17 19:47:45', 'Pm7ky95m', '3539919'), - (303, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Pm7ky95m', '3539920'), - (303, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Pm7ky95m', '3539921'), - (303, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Pm7ky95m', '3539922'), - (303, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Pm7ky95m', '3539923'), - (303, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Pm7ky95m', '3539927'), - (303, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Pm7ky95m', '3582734'), - (303, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm7ky95m', '3583262'), - (303, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Pm7ky95m', '3619523'), - (303, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7ky95m', '3661369'), - (303, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7ky95m', '3674262'), - (303, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm7ky95m', '3677402'), - (303, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7ky95m', '3730212'), - (303, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7ky95m', '3793156'), - (303, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Pm7ky95m', '3974109'), - (303, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7ky95m', '3975311'), - (303, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Pm7ky95m', '3975312'), - (303, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7ky95m', '3994992'), - (303, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Pm7ky95m', '4014338'), - (303, 867, 'attending', '2021-06-26 22:18:44', '2025-12-17 19:47:38', 'Pm7ky95m', '4021848'), - (303, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Pm7ky95m', '4136744'), - (303, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Pm7ky95m', '4136937'), - (303, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Pm7ky95m', '4136938'), - (303, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Pm7ky95m', '4136947'), - (303, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Pm7ky95m', '4210314'), - (303, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Pm7ky95m', '4225444'), - (303, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Pm7ky95m', '4239259'), - (303, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Pm7ky95m', '4240316'), - (303, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Pm7ky95m', '4240317'), - (303, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Pm7ky95m', '4240318'), - (303, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Pm7ky95m', '4240320'), - (303, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Pm7ky95m', '4250163'), - (303, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Pm7ky95m', '4275957'), - (303, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Pm7ky95m', '4277819'), - (303, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Pm7ky95m', '4301723'), - (303, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'Pm7ky95m', '4302093'), - (303, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Pm7ky95m', '4304151'), - (303, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'Pm7ky95m', '4345519'), - (303, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Pm7ky95m', '4356801'), - (303, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'Pm7ky95m', '4358025'), - (303, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Pm7ky95m', '4366186'), - (303, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Pm7ky95m', '4366187'), - (303, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'Pm7ky95m', '4402823'), - (303, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Pm7ky95m', '4420735'), - (303, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Pm7ky95m', '4420738'), - (303, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Pm7ky95m', '4420739'), - (303, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Pm7ky95m', '4420741'), - (303, 995, 'attending', '2021-10-09 15:47:28', '2025-12-17 19:47:34', 'Pm7ky95m', '4420744'), - (303, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Pm7ky95m', '4420747'), - (303, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Pm7ky95m', '4420748'), - (303, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Pm7ky95m', '4420749'), - (303, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Pm7ky95m', '4461883'), - (303, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Pm7ky95m', '4508342'), - (303, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Pm7ky95m', '4568602'), - (303, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Pm7ky95m', '4572153'), - (303, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'Pm7ky95m', '4585962'), - (303, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Pm7ky95m', '4596356'), - (303, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Pm7ky95m', '4598860'), - (303, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Pm7ky95m', '4598861'), - (303, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Pm7ky95m', '4602797'), - (303, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Pm7ky95m', '4637896'), - (303, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Pm7ky95m', '4642994'), - (303, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Pm7ky95m', '4642995'), - (303, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Pm7ky95m', '4642996'), - (303, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Pm7ky95m', '4642997'), - (303, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Pm7ky95m', '4645687'), - (303, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Pm7ky95m', '4645698'), - (303, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Pm7ky95m', '4645704'), - (303, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Pm7ky95m', '4645705'), - (303, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Pm7ky95m', '4668385'), - (303, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Pm7ky95m', '4694407'), - (303, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Pm7ky95m', '4736497'), - (303, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Pm7ky95m', '4736499'), - (303, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Pm7ky95m', '4736500'), - (303, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Pm7ky95m', '4736503'), - (303, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Pm7ky95m', '4736504'), - (303, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Pm7ky95m', '4746789'), - (303, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Pm7ky95m', '4753929'), - (303, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Pm7ky95m', '5038850'), - (303, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Pm7ky95m', '5045826'), - (303, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Pm7ky95m', '5132533'), - (303, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Pm7ky95m', '5186582'), - (303, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Pm7ky95m', '5186583'), - (303, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Pm7ky95m', '5186585'), - (303, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Pm7ky95m', '5190437'), - (303, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Pm7ky95m', '5195095'), - (303, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Pm7ky95m', '5215989'), - (303, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Pm7ky95m', '5223686'), - (303, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Pm7ky95m', '5247467'), - (303, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Pm7ky95m', '5260800'), - (303, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Pm7ky95m', '5269930'), - (303, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Pm7ky95m', '5271448'), - (303, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'Pm7ky95m', '5271449'), - (303, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Pm7ky95m', '5278159'), - (303, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Pm7ky95m', '5363695'), - (303, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Pm7ky95m', '5365960'), - (303, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Pm7ky95m', '5378247'), - (303, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'Pm7ky95m', '5389605'), - (303, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Pm7ky95m', '5397265'), - (303, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Pm7ky95m', '5404786'), - (303, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Pm7ky95m', '5405203'), - (303, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Pm7ky95m', '5412550'), - (303, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Pm7ky95m', '5415046'), - (303, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Pm7ky95m', '5422086'), - (303, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Pm7ky95m', '5422406'), - (303, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Pm7ky95m', '5424565'), - (303, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Pm7ky95m', '5426882'), - (303, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Pm7ky95m', '5441125'), - (303, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Pm7ky95m', '5441126'), - (303, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Pm7ky95m', '5441128'), - (303, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Pm7ky95m', '5441131'), - (303, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Pm7ky95m', '5441132'), - (303, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Pm7ky95m', '5453325'), - (303, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Pm7ky95m', '5454516'), - (303, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Pm7ky95m', '5454605'), - (303, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Pm7ky95m', '5455037'), - (303, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Pm7ky95m', '5461278'), - (303, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Pm7ky95m', '5469480'), - (303, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Pm7ky95m', '5474663'), - (303, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Pm7ky95m', '5482022'), - (303, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Pm7ky95m', '5488912'), - (303, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Pm7ky95m', '5492192'), - (303, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Pm7ky95m', '5493139'), - (303, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Pm7ky95m', '5493200'), - (303, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Pm7ky95m', '5502188'), - (303, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Pm7ky95m', '5505059'), - (303, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Pm7ky95m', '5509055'), - (303, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Pm7ky95m', '5512862'), - (303, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Pm7ky95m', '5513985'), - (303, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'Pm7ky95m', '5519981'), - (303, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Pm7ky95m', '5522550'), - (303, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Pm7ky95m', '5534683'), - (303, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Pm7ky95m', '5537735'), - (303, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Pm7ky95m', '5540859'), - (303, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Pm7ky95m', '5546619'), - (303, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Pm7ky95m', '5557747'), - (303, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Pm7ky95m', '5560255'), - (303, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Pm7ky95m', '5562906'), - (303, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Pm7ky95m', '5600604'), - (303, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Pm7ky95m', '5605544'), - (303, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Pm7ky95m', '5630960'), - (303, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Pm7ky95m', '5630961'), - (303, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Pm7ky95m', '5630962'), - (303, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Pm7ky95m', '5630966'), - (303, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Pm7ky95m', '5630967'), - (303, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Pm7ky95m', '5630968'), - (303, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Pm7ky95m', '5635406'), - (303, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Pm7ky95m', '5638765'), - (303, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Pm7ky95m', '5640097'), - (303, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Pm7ky95m', '5640843'), - (303, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Pm7ky95m', '5641521'), - (303, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Pm7ky95m', '5642818'), - (303, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Pm7ky95m', '5652395'), - (303, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Pm7ky95m', '5670445'), - (303, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Pm7ky95m', '5671637'), - (303, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Pm7ky95m', '5672329'), - (303, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Pm7ky95m', '5674057'), - (303, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Pm7ky95m', '5674060'), - (303, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Pm7ky95m', '5677461'), - (303, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Pm7ky95m', '5698046'), - (303, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Pm7ky95m', '5699760'), - (303, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Pm7ky95m', '5741601'), - (303, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Pm7ky95m', '5763458'), - (303, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Pm7ky95m', '5774172'), - (303, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'Pm7ky95m', '5818247'), - (303, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Pm7ky95m', '5819471'), - (303, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Pm7ky95m', '5827739'), - (303, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Pm7ky95m', '5844306'), - (303, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Pm7ky95m', '5850159'), - (303, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Pm7ky95m', '5858999'), - (303, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Pm7ky95m', '5871984'), - (303, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Pm7ky95m', '5876354'), - (303, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Pm7ky95m', '5880939'), - (303, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Pm7ky95m', '5880940'), - (303, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Pm7ky95m', '5880942'), - (303, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Pm7ky95m', '5880943'), - (303, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Pm7ky95m', '5887890'), - (303, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Pm7ky95m', '5888598'), - (303, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Pm7ky95m', '5893260'), - (303, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Pm7ky95m', '5899826'), - (303, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Pm7ky95m', '5900199'), - (303, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Pm7ky95m', '5900200'), - (303, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Pm7ky95m', '5900202'), - (303, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Pm7ky95m', '5900203'), - (303, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Pm7ky95m', '5901108'), - (303, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Pm7ky95m', '5901126'), - (303, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Pm7ky95m', '5909655'), - (303, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Pm7ky95m', '5910522'), - (303, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Pm7ky95m', '5910526'), - (303, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Pm7ky95m', '5910528'), - (303, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Pm7ky95m', '5916219'), - (303, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Pm7ky95m', '5936234'), - (303, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Pm7ky95m', '5958351'), - (303, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Pm7ky95m', '5959751'), - (303, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Pm7ky95m', '5959755'), - (303, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Pm7ky95m', '5960055'), - (303, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Pm7ky95m', '5961684'), - (303, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Pm7ky95m', '5962132'), - (303, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Pm7ky95m', '5962133'), - (303, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Pm7ky95m', '5962134'), - (303, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Pm7ky95m', '5962317'), - (303, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Pm7ky95m', '5962318'), - (303, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Pm7ky95m', '5965933'), - (303, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Pm7ky95m', '5967014'), - (303, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Pm7ky95m', '5972815'), - (303, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Pm7ky95m', '5974016'), - (303, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Pm7ky95m', '5981515'), - (303, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Pm7ky95m', '5993516'), - (303, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Pm7ky95m', '5998939'), - (303, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Pm7ky95m', '6028191'), - (303, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Pm7ky95m', '6040066'), - (303, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Pm7ky95m', '6042717'), - (303, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Pm7ky95m', '6044838'), - (303, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Pm7ky95m', '6044839'), - (303, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7ky95m', '6045684'), - (303, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Pm7ky95m', '6050104'), - (303, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Pm7ky95m', '6053195'), - (303, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Pm7ky95m', '6053198'), - (303, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Pm7ky95m', '6056085'), - (303, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Pm7ky95m', '6056916'), - (303, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Pm7ky95m', '6059290'), - (303, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Pm7ky95m', '6060328'), - (303, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Pm7ky95m', '6061037'), - (303, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Pm7ky95m', '6061039'), - (303, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Pm7ky95m', '6067245'), - (303, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Pm7ky95m', '6068094'), - (303, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Pm7ky95m', '6068252'), - (303, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Pm7ky95m', '6068253'), - (303, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Pm7ky95m', '6068254'), - (303, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Pm7ky95m', '6068280'), - (303, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Pm7ky95m', '6069093'), - (303, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Pm7ky95m', '6072528'), - (303, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Pm7ky95m', '6079840'), - (303, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Pm7ky95m', '6083398'), - (303, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Pm7ky95m', '6093504'), - (303, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Pm7ky95m', '6097414'), - (303, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Pm7ky95m', '6097442'), - (303, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Pm7ky95m', '6097684'), - (303, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Pm7ky95m', '6098762'), - (303, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Pm7ky95m', '6101361'), - (303, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Pm7ky95m', '6101362'), - (303, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Pm7ky95m', '6107314'), - (303, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Pm7ky95m', '6120034'), - (303, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'Pm7ky95m', '6136733'), - (303, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Pm7ky95m', '6137989'), - (303, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Pm7ky95m', '6150864'), - (303, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Pm7ky95m', '6155491'), - (303, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Pm7ky95m', '6164417'), - (303, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Pm7ky95m', '6166388'), - (303, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Pm7ky95m', '6176439'), - (303, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Pm7ky95m', '6182410'), - (303, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Pm7ky95m', '6185812'), - (303, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Pm7ky95m', '6187651'), - (303, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Pm7ky95m', '6187963'), - (303, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Pm7ky95m', '6187964'), - (303, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Pm7ky95m', '6187966'), - (303, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Pm7ky95m', '6187967'), - (303, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Pm7ky95m', '6187969'), - (303, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Pm7ky95m', '6334878'), - (303, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Pm7ky95m', '6337236'), - (303, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Pm7ky95m', '6337970'), - (303, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Pm7ky95m', '6338308'), - (303, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Pm7ky95m', '6341710'), - (303, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Pm7ky95m', '6342044'), - (303, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Pm7ky95m', '6342298'), - (303, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Pm7ky95m', '6343294'), - (303, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Pm7ky95m', '6347034'), - (303, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Pm7ky95m', '6347056'), - (303, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Pm7ky95m', '6353830'), - (303, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Pm7ky95m', '6353831'), - (303, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Pm7ky95m', '6357867'), - (303, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Pm7ky95m', '6358652'), - (303, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Pm7ky95m', '6361709'), - (303, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Pm7ky95m', '6361710'), - (303, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Pm7ky95m', '6361711'), - (303, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Pm7ky95m', '6361712'), - (303, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Pm7ky95m', '6361713'), - (303, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Pm7ky95m', '6382573'), - (303, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Pm7ky95m', '6388604'), - (303, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Pm7ky95m', '6394629'), - (303, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Pm7ky95m', '6394631'), - (303, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Pm7ky95m', '6440863'), - (303, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Pm7ky95m', '6445440'), - (303, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Pm7ky95m', '6453951'), - (303, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Pm7ky95m', '6461696'), - (303, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Pm7ky95m', '6462129'), - (303, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Pm7ky95m', '6463218'), - (303, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Pm7ky95m', '6472181'), - (303, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Pm7ky95m', '6482693'), - (303, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Pm7ky95m', '6484200'), - (303, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Pm7ky95m', '6484680'), - (303, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Pm7ky95m', '6507741'), - (303, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Pm7ky95m', '6514659'), - (303, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Pm7ky95m', '6514660'), - (303, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Pm7ky95m', '6519103'), - (303, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Pm7ky95m', '6535681'), - (303, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Pm7ky95m', '6584747'), - (303, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Pm7ky95m', '6587097'), - (303, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Pm7ky95m', '6609022'), - (303, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Pm7ky95m', '6632757'), - (303, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Pm7ky95m', '6644187'), - (303, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Pm7ky95m', '6648951'), - (303, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Pm7ky95m', '6648952'), - (303, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Pm7ky95m', '6655401'), - (303, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Pm7ky95m', '6661585'), - (303, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Pm7ky95m', '6661588'), - (303, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Pm7ky95m', '6661589'), - (303, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Pm7ky95m', '6699906'), - (303, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Pm7ky95m', '6699913'), - (303, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Pm7ky95m', '6701109'), - (303, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Pm7ky95m', '6705219'), - (303, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Pm7ky95m', '6710153'), - (303, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Pm7ky95m', '6711552'), - (303, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'Pm7ky95m', '6711553'), - (303, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Pm7ky95m', '6722688'), - (303, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Pm7ky95m', '6730620'), - (303, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Pm7ky95m', '6740364'), - (303, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Pm7ky95m', '6743829'), - (303, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Pm7ky95m', '7030380'), - (303, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Pm7ky95m', '7033677'), - (303, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Pm7ky95m', '7044715'), - (303, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Pm7ky95m', '7050318'), - (303, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Pm7ky95m', '7050319'), - (303, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Pm7ky95m', '7050322'), - (303, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Pm7ky95m', '7057804'), - (303, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Pm7ky95m', '7072824'), - (303, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Pm7ky95m', '7074348'), - (303, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Pm7ky95m', '7074364'), - (303, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Pm7ky95m', '7089267'), - (303, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Pm7ky95m', '7098747'), - (303, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Pm7ky95m', '7113468'), - (303, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Pm7ky95m', '7114856'), - (303, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Pm7ky95m', '7114951'), - (303, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Pm7ky95m', '7114955'), - (303, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Pm7ky95m', '7114956'), - (303, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Pm7ky95m', '7114957'), - (303, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Pm7ky95m', '7159484'), - (303, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Pm7ky95m', '7178446'), - (303, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Pm7ky95m', '7220467'), - (303, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Pm7ky95m', '7240354'), - (303, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Pm7ky95m', '7251633'), - (303, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Pm7ky95m', '7324073'), - (303, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Pm7ky95m', '7324074'), - (303, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Pm7ky95m', '7324075'), - (303, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Pm7ky95m', '7324078'), - (303, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Pm7ky95m', '7324082'), - (303, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Pm7ky95m', '7331457'), - (303, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Pm7ky95m', '7363643'), - (303, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Pm7ky95m', '7368606'), - (303, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Pm7ky95m', '7397462'), - (303, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Pm7ky95m', '7424275'), - (303, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Pm7ky95m', '7432751'), - (303, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Pm7ky95m', '7432752'), - (303, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Pm7ky95m', '7432753'), - (303, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Pm7ky95m', '7432754'), - (303, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Pm7ky95m', '7432755'), - (303, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Pm7ky95m', '7432756'), - (303, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Pm7ky95m', '7432758'), - (303, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Pm7ky95m', '7432759'), - (303, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Pm7ky95m', '7433834'), - (303, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Pm7ky95m', '7470197'), - (303, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Pm7ky95m', '7685613'), - (303, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Pm7ky95m', '7688194'), - (303, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Pm7ky95m', '7688196'), - (303, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Pm7ky95m', '7688289'), - (303, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Pm7ky95m', '7692763'), - (303, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Pm7ky95m', '7697552'), - (303, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Pm7ky95m', '7699878'), - (303, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Pm7ky95m', '7704043'), - (303, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Pm7ky95m', '7712467'), - (303, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Pm7ky95m', '7713585'), - (303, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Pm7ky95m', '7713586'), - (303, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Pm7ky95m', '7738518'), - (303, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Pm7ky95m', '7750636'), - (303, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Pm7ky95m', '7796540'), - (303, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Pm7ky95m', '7796541'), - (303, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Pm7ky95m', '7796542'), - (303, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Pm7ky95m', '7825913'), - (303, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Pm7ky95m', '7826209'), - (303, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Pm7ky95m', '7834742'), - (303, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Pm7ky95m', '7842108'), - (303, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Pm7ky95m', '7842902'), - (303, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Pm7ky95m', '7842903'), - (303, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Pm7ky95m', '7842904'), - (303, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Pm7ky95m', '7842905'), - (303, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Pm7ky95m', '7855719'), - (303, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Pm7ky95m', '7860683'), - (303, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Pm7ky95m', '7860684'), - (303, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Pm7ky95m', '7866095'), - (303, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Pm7ky95m', '7869170'), - (303, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Pm7ky95m', '7869188'), - (303, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Pm7ky95m', '7869201'), - (303, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Pm7ky95m', '7877465'), - (303, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Pm7ky95m', '7888250'), - (303, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Pm7ky95m', '7904777'), - (303, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Pm7ky95m', '8349164'), - (303, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Pm7ky95m', '8349545'), - (303, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Pm7ky95m', '8368028'), - (303, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Pm7ky95m', '8368029'), - (303, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Pm7ky95m', '8388462'), - (303, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Pm7ky95m', '8400273'), - (303, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Pm7ky95m', '8400275'), - (303, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Pm7ky95m', '8400276'), - (303, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Pm7ky95m', '8404977'), - (303, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Pm7ky95m', '8430783'), - (303, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Pm7ky95m', '8430784'), - (303, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Pm7ky95m', '8430799'), - (303, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Pm7ky95m', '8430800'), - (303, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Pm7ky95m', '8430801'), - (303, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Pm7ky95m', '8438709'), - (303, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Pm7ky95m', '8457738'), - (303, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Pm7ky95m', '8459566'), - (303, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Pm7ky95m', '8459567'), - (303, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Pm7ky95m', '8461032'), - (303, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Pm7ky95m', '8477877'), - (303, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Pm7ky95m', '8485688'), - (303, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Pm7ky95m', '8490587'), - (303, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Pm7ky95m', '8493552'), - (303, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Pm7ky95m', '8493553'), - (303, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Pm7ky95m', '8493554'), - (303, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Pm7ky95m', '8493555'), - (303, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Pm7ky95m', '8493556'), - (303, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Pm7ky95m', '8493557'), - (303, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Pm7ky95m', '8493558'), - (303, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Pm7ky95m', '8493559'), - (303, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Pm7ky95m', '8493560'), - (303, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Pm7ky95m', '8493561'), - (303, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Pm7ky95m', '8493572'), - (303, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Pm7ky95m', '8540725'), - (303, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Pm7ky95m', '8555421'), - (304, 2066, 'not_attending', '2023-06-09 18:33:39', '2025-12-17 19:47:04', 'dKZwYbN4', '6101361'), - (304, 2098, 'attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dKZwYbN4', '6139831'), - (304, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dKZwYbN4', '6150864'), - (304, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKZwYbN4', '6155491'), - (304, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKZwYbN4', '6164417'), - (304, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKZwYbN4', '6166388'), - (304, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKZwYbN4', '6176439'), - (304, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKZwYbN4', '6182410'), - (304, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKZwYbN4', '6185812'), - (304, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKZwYbN4', '6187651'), - (304, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKZwYbN4', '6187963'), - (304, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKZwYbN4', '6187964'), - (304, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKZwYbN4', '6187966'), - (304, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKZwYbN4', '6187967'), - (304, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKZwYbN4', '6187969'), - (304, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKZwYbN4', '6334878'), - (304, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dKZwYbN4', '6337236'), - (304, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKZwYbN4', '6337970'), - (304, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dKZwYbN4', '6338308'), - (304, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dKZwYbN4', '6340845'), - (304, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dKZwYbN4', '6341710'), - (304, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKZwYbN4', '6342044'), - (304, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKZwYbN4', '6342298'), - (304, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dKZwYbN4', '6343294'), - (304, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKZwYbN4', '6347034'), - (304, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKZwYbN4', '6347056'), - (304, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKZwYbN4', '6353830'), - (304, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKZwYbN4', '6353831'), - (304, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKZwYbN4', '6357867'), - (304, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKZwYbN4', '6358652'), - (304, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKZwYbN4', '6361709'), - (304, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKZwYbN4', '6361710'), - (304, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKZwYbN4', '6361711'), - (304, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dKZwYbN4', '6361712'), - (304, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKZwYbN4', '6361713'), - (304, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKZwYbN4', '6382573'), - (304, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dKZwYbN4', '6388604'), - (304, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKZwYbN4', '6394629'), - (304, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKZwYbN4', '6394631'), - (304, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKZwYbN4', '6440863'), - (304, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKZwYbN4', '6445440'), - (304, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKZwYbN4', '6453951'), - (304, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKZwYbN4', '6461696'), - (304, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKZwYbN4', '6462129'), - (304, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKZwYbN4', '6463218'), - (304, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dKZwYbN4', '6472181'), - (304, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZwYbN4', '6482693'), - (304, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZwYbN4', '6484200'), - (304, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKZwYbN4', '6484680'), - (304, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZwYbN4', '6507741'), - (304, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZwYbN4', '6514659'), - (304, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZwYbN4', '6514660'), - (304, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZwYbN4', '6519103'), - (304, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZwYbN4', '6535681'), - (304, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZwYbN4', '6584747'), - (304, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZwYbN4', '6587097'), - (304, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZwYbN4', '6609022'), - (304, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZwYbN4', '6632757'), - (304, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZwYbN4', '6644187'), - (304, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZwYbN4', '6648951'), - (304, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZwYbN4', '6648952'), - (304, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZwYbN4', '6655401'), - (304, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZwYbN4', '6661585'), - (304, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZwYbN4', '6661588'), - (304, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZwYbN4', '6661589'), - (304, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZwYbN4', '6699906'), - (304, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZwYbN4', '6701109'), - (304, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZwYbN4', '6705219'), - (304, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZwYbN4', '6710153'), - (304, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZwYbN4', '6711552'), - (304, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZwYbN4', '6711553'), - (305, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dwYPBJaA', '4356801'), - (305, 991, 'attending', '2021-09-11 19:18:30', '2025-12-17 19:47:43', 'dwYPBJaA', '4420738'), - (305, 992, 'not_attending', '2021-09-18 20:53:26', '2025-12-17 19:47:34', 'dwYPBJaA', '4420739'), - (305, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dwYPBJaA', '4420741'), - (305, 994, 'not_attending', '2021-10-01 20:54:46', '2025-12-17 19:47:34', 'dwYPBJaA', '4420742'), - (305, 995, 'maybe', '2021-10-01 20:55:08', '2025-12-17 19:47:34', 'dwYPBJaA', '4420744'), - (305, 996, 'not_attending', '2021-10-01 20:55:17', '2025-12-17 19:47:35', 'dwYPBJaA', '4420747'), - (305, 1003, 'attending', '2021-09-03 16:51:49', '2025-12-17 19:47:43', 'dwYPBJaA', '4438802'), - (305, 1019, 'not_attending', '2021-09-15 22:17:55', '2025-12-17 19:47:43', 'dwYPBJaA', '4450515'), - (305, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dwYPBJaA', '4461883'), - (305, 1066, 'not_attending', '2021-09-25 18:06:43', '2025-12-17 19:47:34', 'dwYPBJaA', '4506039'), - (305, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dwYPBJaA', '4508342'), - (305, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dwYPBJaA', '4568602'), - (305, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dwYPBJaA', '6045684'), - (306, 1242, 'not_attending', '2022-04-01 15:01:50', '2025-12-17 19:47:25', 'dx632oDA', '5052241'), - (306, 1274, 'maybe', '2022-03-31 22:50:02', '2025-12-17 19:47:26', 'dx632oDA', '5186585'), - (306, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dx632oDA', '5195095'), - (306, 1288, 'not_attending', '2022-04-01 15:01:36', '2025-12-17 19:47:25', 'dx632oDA', '5199460'), - (306, 1306, 'attending', '2022-04-04 17:53:14', '2025-12-17 19:47:26', 'dx632oDA', '5223682'), - (306, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dx632oDA', '5223686'), - (306, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dx632oDA', '5227432'), - (306, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dx632oDA', '5247467'), - (306, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dx632oDA', '5260800'), - (306, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dx632oDA', '5269930'), - (306, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dx632oDA', '5271448'), - (306, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dx632oDA', '5271449'), - (306, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dx632oDA', '5276469'), - (306, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx632oDA', '5278159'), - (306, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx632oDA', '6045684'), - (307, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '54ko9aX4', '3517815'), - (307, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '54ko9aX4', '3523941'), - (307, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54ko9aX4', '3533850'), - (307, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '54ko9aX4', '3536632'), - (307, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '54ko9aX4', '3536656'), - (307, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '54ko9aX4', '3539916'), - (307, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '54ko9aX4', '3539917'), - (307, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '54ko9aX4', '3539918'), - (307, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '54ko9aX4', '3539919'), - (307, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54ko9aX4', '3539920'), - (307, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54ko9aX4', '3539921'), - (307, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54ko9aX4', '3539922'), - (307, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '54ko9aX4', '3539923'), - (307, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54ko9aX4', '6045684'), - (308, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbqMKNPd', '6045684'), - (309, 69, 'attending', '2020-07-02 16:43:17', '2025-12-17 19:47:55', '6AXveo6d', '2977138'), - (309, 133, 'attending', '2020-06-24 20:19:57', '2025-12-17 19:47:58', '6AXveo6d', '3034321'), - (309, 139, 'attending', '2020-06-18 01:59:01', '2025-12-17 19:47:58', '6AXveo6d', '3046190'), - (309, 173, 'not_attending', '2020-06-19 15:59:39', '2025-12-17 19:47:58', '6AXveo6d', '3067093'), - (309, 179, 'maybe', '2020-06-18 02:00:00', '2025-12-17 19:47:58', '6AXveo6d', '3073687'), - (309, 181, 'attending', '2020-06-19 01:37:41', '2025-12-17 19:47:58', '6AXveo6d', '3074513'), - (309, 182, 'attending', '2020-06-24 14:27:11', '2025-12-17 19:47:55', '6AXveo6d', '3074514'), - (309, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '6AXveo6d', '3083791'), - (309, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '6AXveo6d', '3085151'), - (309, 190, 'attending', '2020-07-04 23:04:20', '2025-12-17 19:47:55', '6AXveo6d', '3087258'), - (309, 191, 'attending', '2020-07-03 02:44:26', '2025-12-17 19:47:55', '6AXveo6d', '3087259'), - (309, 192, 'attending', '2020-07-14 17:33:08', '2025-12-17 19:47:55', '6AXveo6d', '3087260'), - (309, 193, 'attending', '2020-07-24 12:53:47', '2025-12-17 19:47:55', '6AXveo6d', '3087261'), - (309, 194, 'attending', '2020-07-26 17:25:18', '2025-12-17 19:47:55', '6AXveo6d', '3087262'), - (309, 195, 'attending', '2020-08-02 23:31:54', '2025-12-17 19:47:56', '6AXveo6d', '3087264'), - (309, 196, 'attending', '2020-08-09 02:53:15', '2025-12-17 19:47:56', '6AXveo6d', '3087265'), - (309, 197, 'attending', '2020-08-16 17:29:41', '2025-12-17 19:47:56', '6AXveo6d', '3087266'), - (309, 198, 'attending', '2020-08-24 15:31:58', '2025-12-17 19:47:56', '6AXveo6d', '3087267'), - (309, 199, 'attending', '2020-09-01 15:07:52', '2025-12-17 19:47:56', '6AXveo6d', '3087268'), - (309, 201, 'attending', '2020-06-25 18:59:08', '2025-12-17 19:47:55', '6AXveo6d', '3088653'), - (309, 204, 'attending', '2020-06-26 16:05:54', '2025-12-17 19:47:55', '6AXveo6d', '3102758'), - (309, 205, 'maybe', '2020-07-08 12:28:52', '2025-12-17 19:47:55', '6AXveo6d', '3104804'), - (309, 209, 'maybe', '2020-06-29 12:18:55', '2025-12-17 19:47:55', '6AXveo6d', '3106813'), - (309, 210, 'maybe', '2020-07-02 16:54:48', '2025-12-17 19:47:55', '6AXveo6d', '3108972'), - (309, 214, 'not_attending', '2020-07-08 21:27:53', '2025-12-17 19:47:55', '6AXveo6d', '3124139'), - (309, 216, 'attending', '2020-07-09 19:49:57', '2025-12-17 19:47:55', '6AXveo6d', '3126500'), - (309, 217, 'maybe', '2020-07-08 17:37:11', '2025-12-17 19:47:55', '6AXveo6d', '3126684'), - (309, 223, 'attending', '2020-09-08 23:06:19', '2025-12-17 19:47:56', '6AXveo6d', '3129980'), - (309, 224, 'attending', '2020-07-19 18:25:30', '2025-12-17 19:47:55', '6AXveo6d', '3130712'), - (309, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '6AXveo6d', '3132817'), - (309, 227, 'maybe', '2020-07-15 20:17:49', '2025-12-17 19:47:55', '6AXveo6d', '3132820'), - (309, 229, 'attending', '2020-07-15 20:17:28', '2025-12-17 19:47:55', '6AXveo6d', '3134135'), - (309, 230, 'attending', '2020-07-26 21:12:36', '2025-12-17 19:47:55', '6AXveo6d', '3139232'), - (309, 231, 'maybe', '2020-07-19 20:28:29', '2025-12-17 19:47:55', '6AXveo6d', '3139762'), - (309, 232, 'not_attending', '2020-07-20 22:43:10', '2025-12-17 19:47:55', '6AXveo6d', '3139770'), - (309, 233, 'attending', '2020-07-22 12:21:17', '2025-12-17 19:47:55', '6AXveo6d', '3139773'), - (309, 265, 'attending', '2020-07-28 01:42:01', '2025-12-17 19:47:55', '6AXveo6d', '3150806'), - (309, 269, 'attending', '2020-07-29 00:37:59', '2025-12-17 19:47:55', '6AXveo6d', '3153076'), - (309, 270, 'maybe', '2020-08-11 17:04:20', '2025-12-17 19:47:56', '6AXveo6d', '3154457'), - (309, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '6AXveo6d', '3155321'), - (309, 273, 'attending', '2020-08-02 23:31:40', '2025-12-17 19:47:56', '6AXveo6d', '3162006'), - (309, 275, 'attending', '2020-08-03 20:04:55', '2025-12-17 19:47:56', '6AXveo6d', '3163405'), - (309, 277, 'not_attending', '2020-08-03 23:57:12', '2025-12-17 19:47:56', '6AXveo6d', '3163442'), - (309, 281, 'attending', '2020-08-09 20:06:42', '2025-12-17 19:47:56', '6AXveo6d', '3166945'), - (309, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '6AXveo6d', '3169555'), - (309, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', '6AXveo6d', '3169556'), - (309, 288, 'attending', '2020-08-28 17:54:42', '2025-12-17 19:47:56', '6AXveo6d', '3170249'), - (309, 293, 'attending', '2020-08-19 23:11:03', '2025-12-17 19:47:56', '6AXveo6d', '3172832'), - (309, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '6AXveo6d', '3172833'), - (309, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '6AXveo6d', '3172834'), - (309, 296, 'attending', '2020-09-08 23:06:08', '2025-12-17 19:47:56', '6AXveo6d', '3172876'), - (309, 297, 'attending', '2020-08-11 17:03:38', '2025-12-17 19:47:56', '6AXveo6d', '3173937'), - (309, 300, 'attending', '2020-08-12 22:42:33', '2025-12-17 19:47:56', '6AXveo6d', '3177986'), - (309, 301, 'attending', '2020-08-18 00:12:23', '2025-12-17 19:47:56', '6AXveo6d', '3178027'), - (309, 302, 'attending', '2020-08-18 00:12:18', '2025-12-17 19:47:56', '6AXveo6d', '3178028'), - (309, 304, 'maybe', '2020-09-07 19:36:19', '2025-12-17 19:47:56', '6AXveo6d', '3178916'), - (309, 306, 'attending', '2020-08-21 22:45:53', '2025-12-17 19:47:56', '6AXveo6d', '3179777'), - (309, 311, 'attending', '2020-09-11 01:07:58', '2025-12-17 19:47:56', '6AXveo6d', '3186057'), - (309, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '6AXveo6d', '3191735'), - (309, 318, 'attending', '2020-08-29 01:40:20', '2025-12-17 19:47:56', '6AXveo6d', '3193885'), - (309, 320, 'attending', '2020-08-30 02:59:50', '2025-12-17 19:47:56', '6AXveo6d', '3195552'), - (309, 331, 'attending', '2020-09-01 14:57:46', '2025-12-17 19:47:56', '6AXveo6d', '3198871'), - (309, 335, 'not_attending', '2020-09-05 00:16:36', '2025-12-17 19:47:56', '6AXveo6d', '3200209'), - (309, 336, 'attending', '2020-09-11 22:33:38', '2025-12-17 19:47:56', '6AXveo6d', '3200495'), - (309, 340, 'attending', '2020-09-18 23:12:34', '2025-12-17 19:47:56', '6AXveo6d', '3204470'), - (309, 343, 'maybe', '2020-09-22 22:45:57', '2025-12-17 19:47:56', '6AXveo6d', '3206759'), - (309, 346, 'not_attending', '2020-09-13 21:43:22', '2025-12-17 19:47:56', '6AXveo6d', '3207515'), - (309, 347, 'attending', '2020-09-24 12:58:33', '2025-12-17 19:47:51', '6AXveo6d', '3207930'), - (309, 358, 'attending', '2020-09-13 21:46:19', '2025-12-17 19:47:56', '6AXveo6d', '3212579'), - (309, 359, 'not_attending', '2020-09-20 19:51:49', '2025-12-17 19:47:56', '6AXveo6d', '3212624'), - (309, 362, 'attending', '2020-09-24 12:58:15', '2025-12-17 19:47:52', '6AXveo6d', '3214207'), - (309, 363, 'maybe', '2020-09-17 22:22:47', '2025-12-17 19:47:52', '6AXveo6d', '3217037'), - (309, 365, 'not_attending', '2020-09-18 17:37:24', '2025-12-17 19:47:51', '6AXveo6d', '3218510'), - (309, 368, 'attending', '2020-09-29 23:34:16', '2025-12-17 19:47:52', '6AXveo6d', '3221403'), - (309, 376, 'attending', '2020-10-12 23:22:24', '2025-12-17 19:47:52', '6AXveo6d', '3222827'), - (309, 385, 'attending', '2020-09-29 01:57:02', '2025-12-17 19:47:52', '6AXveo6d', '3228698'), - (309, 386, 'attending', '2020-09-29 01:56:58', '2025-12-17 19:47:52', '6AXveo6d', '3228699'), - (309, 387, 'attending', '2020-09-29 01:56:55', '2025-12-17 19:47:52', '6AXveo6d', '3228700'), - (309, 388, 'attending', '2020-09-29 01:56:47', '2025-12-17 19:47:52', '6AXveo6d', '3228701'), - (309, 424, 'maybe', '2020-10-12 01:10:08', '2025-12-17 19:47:52', '6AXveo6d', '3245751'), - (309, 426, 'not_attending', '2020-10-14 23:04:42', '2025-12-17 19:47:52', '6AXveo6d', '3250232'), - (309, 429, 'attending', '2020-12-06 19:41:55', '2025-12-17 19:47:54', '6AXveo6d', '3250523'), - (309, 436, 'maybe', '2020-10-18 18:45:24', '2025-12-17 19:47:52', '6AXveo6d', '3256119'), - (309, 438, 'not_attending', '2020-10-18 18:45:44', '2025-12-17 19:47:53', '6AXveo6d', '3256163'), - (309, 440, 'attending', '2020-10-18 18:45:11', '2025-12-17 19:47:53', '6AXveo6d', '3256168'), - (309, 441, 'attending', '2020-11-07 20:08:16', '2025-12-17 19:47:54', '6AXveo6d', '3256169'), - (309, 443, 'not_attending', '2020-10-24 00:23:01', '2025-12-17 19:47:53', '6AXveo6d', '3263578'), - (309, 456, 'maybe', '2020-11-06 00:51:00', '2025-12-17 19:47:54', '6AXveo6d', '3276428'), - (309, 459, 'maybe', '2020-11-08 21:04:43', '2025-12-17 19:47:54', '6AXveo6d', '3281467'), - (309, 462, 'not_attending', '2020-11-08 21:04:37', '2025-12-17 19:47:54', '6AXveo6d', '3281470'), - (309, 463, 'maybe', '2020-11-13 20:37:40', '2025-12-17 19:47:54', '6AXveo6d', '3281553'), - (309, 466, 'maybe', '2020-11-08 21:04:33', '2025-12-17 19:47:54', '6AXveo6d', '3281829'), - (309, 468, 'attending', '2020-11-21 18:46:01', '2025-12-17 19:47:54', '6AXveo6d', '3285413'), - (309, 469, 'attending', '2020-11-10 23:07:26', '2025-12-17 19:47:54', '6AXveo6d', '3285414'), - (309, 477, 'not_attending', '2020-12-04 23:47:47', '2025-12-17 19:47:54', '6AXveo6d', '3289559'), - (309, 479, 'attending', '2020-11-18 19:51:17', '2025-12-17 19:47:54', '6AXveo6d', '3295306'), - (309, 481, 'maybe', '2020-11-19 23:30:23', '2025-12-17 19:47:54', '6AXveo6d', '3297764'), - (309, 484, 'not_attending', '2020-11-21 00:49:16', '2025-12-17 19:47:54', '6AXveo6d', '3297792'), - (309, 493, 'attending', '2020-12-02 17:43:17', '2025-12-17 19:47:54', '6AXveo6d', '3313856'), - (309, 499, 'attending', '2020-12-12 00:30:56', '2025-12-17 19:47:55', '6AXveo6d', '3314909'), - (309, 500, 'maybe', '2020-12-11 16:50:02', '2025-12-17 19:47:55', '6AXveo6d', '3314964'), - (309, 502, 'attending', '2020-12-11 16:49:51', '2025-12-17 19:47:55', '6AXveo6d', '3323365'), - (309, 513, 'attending', '2020-12-12 00:34:20', '2025-12-17 19:47:55', '6AXveo6d', '3329383'), - (309, 517, 'maybe', '2020-12-15 01:34:41', '2025-12-17 19:47:48', '6AXveo6d', '3337137'), - (309, 526, 'attending', '2020-12-24 01:23:26', '2025-12-17 19:47:48', '6AXveo6d', '3351539'), - (309, 529, 'maybe', '2021-01-02 00:06:31', '2025-12-17 19:47:48', '6AXveo6d', '3364568'), - (309, 536, 'attending', '2021-01-07 16:52:10', '2025-12-17 19:47:48', '6AXveo6d', '3386848'), - (309, 540, 'attending', '2021-01-07 16:50:32', '2025-12-17 19:47:48', '6AXveo6d', '3389527'), - (309, 542, 'attending', '2021-01-12 00:54:01', '2025-12-17 19:47:48', '6AXveo6d', '3395013'), - (309, 543, 'attending', '2021-01-12 00:53:18', '2025-12-17 19:47:48', '6AXveo6d', '3396499'), - (309, 548, 'attending', '2021-01-12 00:52:49', '2025-12-17 19:47:48', '6AXveo6d', '3403650'), - (309, 549, 'maybe', '2021-01-16 20:51:59', '2025-12-17 19:47:49', '6AXveo6d', '3406988'), - (309, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', '6AXveo6d', '3408338'), - (309, 555, 'attending', '2021-01-19 19:53:14', '2025-12-17 19:47:49', '6AXveo6d', '3416576'), - (309, 568, 'attending', '2021-01-26 01:56:05', '2025-12-17 19:47:50', '6AXveo6d', '3430267'), - (309, 571, 'attending', '2021-02-10 00:34:35', '2025-12-17 19:47:50', '6AXveo6d', '3435539'), - (309, 579, 'attending', '2021-01-30 17:58:00', '2025-12-17 19:47:50', '6AXveo6d', '3440978'), - (309, 602, 'attending', '2021-02-10 00:33:48', '2025-12-17 19:47:50', '6AXveo6d', '3470303'), - (309, 603, 'attending', '2021-02-13 00:44:49', '2025-12-17 19:47:50', '6AXveo6d', '3470304'), - (309, 604, 'attending', '2021-02-27 23:03:54', '2025-12-17 19:47:50', '6AXveo6d', '3470305'), - (309, 605, 'maybe', '2021-02-07 21:57:40', '2025-12-17 19:47:50', '6AXveo6d', '3470991'), - (309, 612, 'attending', '2021-02-17 01:27:22', '2025-12-17 19:47:50', '6AXveo6d', '3490040'), - (309, 613, 'attending', '2021-02-18 19:52:43', '2025-12-17 19:47:50', '6AXveo6d', '3490041'), - (309, 614, 'attending', '2021-03-03 00:47:25', '2025-12-17 19:47:51', '6AXveo6d', '3490042'), - (309, 621, 'attending', '2021-03-03 00:47:18', '2025-12-17 19:47:51', '6AXveo6d', '3517815'), - (309, 622, 'attending', '2021-03-06 03:53:50', '2025-12-17 19:47:51', '6AXveo6d', '3517816'), - (309, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '6AXveo6d', '3523941'), - (309, 631, 'not_attending', '2021-03-03 00:46:40', '2025-12-17 19:47:51', '6AXveo6d', '3533850'), - (309, 634, 'attending', '2021-03-31 17:09:15', '2025-12-17 19:47:44', '6AXveo6d', '3534718'), - (309, 638, 'not_attending', '2021-03-03 00:45:43', '2025-12-17 19:47:44', '6AXveo6d', '3536632'), - (309, 639, 'not_attending', '2021-03-03 00:44:57', '2025-12-17 19:47:51', '6AXveo6d', '3536656'), - (309, 641, 'attending', '2021-03-31 17:09:08', '2025-12-17 19:47:44', '6AXveo6d', '3539916'), - (309, 642, 'attending', '2021-04-06 19:21:28', '2025-12-17 19:47:44', '6AXveo6d', '3539917'), - (309, 643, 'attending', '2021-04-13 23:28:40', '2025-12-17 19:47:45', '6AXveo6d', '3539918'), - (309, 644, 'attending', '2021-04-21 23:26:25', '2025-12-17 19:47:45', '6AXveo6d', '3539919'), - (309, 645, 'maybe', '2021-05-07 22:43:47', '2025-12-17 19:47:46', '6AXveo6d', '3539920'), - (309, 646, 'attending', '2021-05-11 13:17:31', '2025-12-17 19:47:46', '6AXveo6d', '3539921'), - (309, 647, 'attending', '2021-05-22 15:39:22', '2025-12-17 19:47:46', '6AXveo6d', '3539922'), - (309, 648, 'attending', '2021-05-29 19:20:41', '2025-12-17 19:47:47', '6AXveo6d', '3539923'), - (309, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '6AXveo6d', '3539927'), - (309, 650, 'attending', '2021-03-27 18:14:08', '2025-12-17 19:47:44', '6AXveo6d', '3539928'), - (309, 652, 'attending', '2021-03-07 21:12:39', '2025-12-17 19:47:51', '6AXveo6d', '3544466'), - (309, 680, 'attending', '2021-03-10 23:39:45', '2025-12-17 19:47:51', '6AXveo6d', '3547700'), - (309, 683, 'attending', '2021-03-10 01:38:54', '2025-12-17 19:47:51', '6AXveo6d', '3548818'), - (309, 684, 'maybe', '2021-03-12 23:18:14', '2025-12-17 19:47:51', '6AXveo6d', '3549257'), - (309, 705, 'attending', '2021-03-27 18:14:15', '2025-12-17 19:47:44', '6AXveo6d', '3581895'), - (309, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '6AXveo6d', '3582734'), - (309, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '6AXveo6d', '3583262'), - (309, 711, 'attending', '2021-03-31 17:09:34', '2025-12-17 19:47:44', '6AXveo6d', '3588075'), - (309, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXveo6d', '3619523'), - (309, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '6AXveo6d', '3661369'), - (309, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXveo6d', '3674262'), - (309, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXveo6d', '3677402'), - (309, 744, 'attending', '2021-06-04 21:05:16', '2025-12-17 19:47:47', '6AXveo6d', '3680624'), - (309, 752, 'attending', '2021-04-15 23:03:47', '2025-12-17 19:47:44', '6AXveo6d', '3699422'), - (309, 761, 'maybe', '2021-05-14 22:13:57', '2025-12-17 19:47:46', '6AXveo6d', '3716041'), - (309, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXveo6d', '3730212'), - (309, 788, 'attending', '2021-05-07 22:43:19', '2025-12-17 19:47:46', '6AXveo6d', '3781975'), - (309, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXveo6d', '3793156'), - (309, 822, 'not_attending', '2021-06-03 01:52:12', '2025-12-17 19:47:47', '6AXveo6d', '3969986'), - (309, 823, 'attending', '2021-06-19 14:45:05', '2025-12-17 19:47:48', '6AXveo6d', '3974109'), - (309, 827, 'attending', '2021-06-04 21:05:23', '2025-12-17 19:47:47', '6AXveo6d', '3975311'), - (309, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXveo6d', '3975312'), - (309, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXveo6d', '3994992'), - (309, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXveo6d', '4014338'), - (309, 867, 'attending', '2021-06-26 01:20:49', '2025-12-17 19:47:38', '6AXveo6d', '4021848'), - (309, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXveo6d', '4136744'), - (309, 870, 'attending', '2021-07-01 01:18:19', '2025-12-17 19:47:39', '6AXveo6d', '4136937'), - (309, 871, 'attending', '2021-07-03 00:09:14', '2025-12-17 19:47:39', '6AXveo6d', '4136938'), - (309, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXveo6d', '4136947'), - (309, 884, 'attending', '2021-07-21 20:37:46', '2025-12-17 19:47:42', '6AXveo6d', '4210314'), - (309, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXveo6d', '4225444'), - (309, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXveo6d', '4239259'), - (309, 900, 'attending', '2021-07-21 20:38:08', '2025-12-17 19:47:40', '6AXveo6d', '4240316'), - (309, 901, 'not_attending', '2021-07-21 20:38:16', '2025-12-17 19:47:40', '6AXveo6d', '4240317'), - (309, 902, 'attending', '2021-07-21 20:38:26', '2025-12-17 19:47:41', '6AXveo6d', '4240318'), - (309, 903, 'attending', '2021-08-03 22:41:42', '2025-12-17 19:47:42', '6AXveo6d', '4240320'), - (309, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXveo6d', '4250163'), - (309, 906, 'not_attending', '2021-07-05 05:49:09', '2025-12-17 19:47:39', '6AXveo6d', '4253431'), - (309, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXveo6d', '4275957'), - (309, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXveo6d', '4277819'), - (309, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXveo6d', '4301723'), - (309, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXveo6d', '4302093'), - (309, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXveo6d', '4304151'), - (309, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXveo6d', '4356801'), - (309, 973, 'attending', '2021-08-15 21:28:38', '2025-12-17 19:47:42', '6AXveo6d', '4366186'), - (309, 974, 'attending', '2021-08-15 21:27:59', '2025-12-17 19:47:42', '6AXveo6d', '4366187'), - (309, 979, 'attending', '2021-08-21 19:19:26', '2025-12-17 19:47:42', '6AXveo6d', '4379085'), - (309, 980, 'attending', '2021-08-18 22:30:57', '2025-12-17 19:47:42', '6AXveo6d', '4380358'), - (309, 990, 'attending', '2021-08-28 22:26:56', '2025-12-17 19:47:43', '6AXveo6d', '4420735'), - (309, 991, 'attending', '2021-08-28 22:27:12', '2025-12-17 19:47:43', '6AXveo6d', '4420738'), - (309, 992, 'attending', '2021-08-28 22:27:33', '2025-12-17 19:47:33', '6AXveo6d', '4420739'), - (309, 993, 'attending', '2021-08-28 22:27:44', '2025-12-17 19:47:34', '6AXveo6d', '4420741'), - (309, 995, 'attending', '2021-08-28 22:28:16', '2025-12-17 19:47:34', '6AXveo6d', '4420744'), - (309, 996, 'attending', '2021-08-28 22:28:20', '2025-12-17 19:47:35', '6AXveo6d', '4420747'), - (309, 997, 'maybe', '2021-10-19 23:50:34', '2025-12-17 19:47:35', '6AXveo6d', '4420748'), - (309, 998, 'attending', '2021-08-28 22:28:31', '2025-12-17 19:47:36', '6AXveo6d', '4420749'), - (309, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXveo6d', '4461883'), - (309, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXveo6d', '4508342'), - (309, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXveo6d', '4568602'), - (309, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AXveo6d', '4572153'), - (309, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AXveo6d', '4585962'), - (309, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '6AXveo6d', '4596356'), - (309, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AXveo6d', '4598860'), - (309, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AXveo6d', '4598861'), - (309, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '6AXveo6d', '4602797'), - (309, 1102, 'attending', '2021-11-07 23:01:10', '2025-12-17 19:47:37', '6AXveo6d', '4612098'), - (309, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '6AXveo6d', '4637896'), - (309, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AXveo6d', '4642994'), - (309, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AXveo6d', '4642995'), - (309, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AXveo6d', '4642996'), - (309, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AXveo6d', '4642997'), - (309, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '6AXveo6d', '4645687'), - (309, 1127, 'attending', '2021-11-20 18:27:31', '2025-12-17 19:47:38', '6AXveo6d', '4645698'), - (309, 1128, 'attending', '2021-11-20 18:26:54', '2025-12-17 19:47:37', '6AXveo6d', '4645704'), - (309, 1129, 'attending', '2021-11-20 18:27:01', '2025-12-17 19:47:37', '6AXveo6d', '4645705'), - (309, 1130, 'attending', '2021-11-20 18:27:06', '2025-12-17 19:47:37', '6AXveo6d', '4658824'), - (309, 1134, 'maybe', '2021-11-26 20:50:57', '2025-12-17 19:47:37', '6AXveo6d', '4668385'), - (309, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '6AXveo6d', '4694407'), - (309, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXveo6d', '6045684'), - (310, 993, 'attending', '2021-09-25 21:18:56', '2025-12-17 19:47:34', 'dlO8V9Y4', '4420741'), - (310, 995, 'maybe', '2021-10-04 00:20:03', '2025-12-17 19:47:34', 'dlO8V9Y4', '4420744'), - (310, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dlO8V9Y4', '4420747'), - (310, 1005, 'attending', '2021-09-23 21:52:32', '2025-12-17 19:47:34', 'dlO8V9Y4', '4438807'), - (310, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlO8V9Y4', '4508342'), - (310, 1072, 'maybe', '2021-10-04 00:19:35', '2025-12-17 19:47:34', 'dlO8V9Y4', '4516287'), - (310, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dlO8V9Y4', '4568602'), - (310, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dlO8V9Y4', '4572153'), - (310, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dlO8V9Y4', '4585962'), - (310, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dlO8V9Y4', '4596356'), - (310, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dlO8V9Y4', '4598860'), - (310, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dlO8V9Y4', '4598861'), - (310, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dlO8V9Y4', '4602797'), - (310, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dlO8V9Y4', '4637896'), - (310, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dlO8V9Y4', '4642994'), - (310, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dlO8V9Y4', '4642995'), - (310, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dlO8V9Y4', '4642996'), - (310, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dlO8V9Y4', '4642997'), - (310, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dlO8V9Y4', '4645687'), - (310, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dlO8V9Y4', '4645698'), - (310, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dlO8V9Y4', '4645704'), - (310, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dlO8V9Y4', '4645705'), - (310, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dlO8V9Y4', '4668385'), - (310, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dlO8V9Y4', '4694407'), - (310, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dlO8V9Y4', '4736497'), - (310, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dlO8V9Y4', '4736499'), - (310, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dlO8V9Y4', '4736500'), - (310, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dlO8V9Y4', '4736503'), - (310, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dlO8V9Y4', '4736504'), - (310, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dlO8V9Y4', '4746789'), - (310, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dlO8V9Y4', '4753929'), - (310, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dlO8V9Y4', '5038850'), - (310, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dlO8V9Y4', '5045826'), - (310, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dlO8V9Y4', '5132533'), - (310, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dlO8V9Y4', '5186582'), - (310, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dlO8V9Y4', '5186583'), - (310, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dlO8V9Y4', '5186585'), - (310, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dlO8V9Y4', '5190437'), - (310, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dlO8V9Y4', '5215989'), - (310, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlO8V9Y4', '6045684'), - (311, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', '8mRE5nEd', '3539920'), - (311, 790, 'attending', '2021-05-08 18:09:09', '2025-12-17 19:47:46', '8mRE5nEd', '3789923'), - (311, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8mRE5nEd', '3793156'), - (311, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRE5nEd', '6045684'), - (312, 2993, 'not_attending', '2025-03-15 21:19:36', '2025-12-17 19:46:19', 'bdz5OMl4', '7842904'), - (312, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'bdz5OMl4', '7869188'), - (312, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'bdz5OMl4', '7877465'), - (312, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'bdz5OMl4', '7880977'), - (312, 3038, 'attending', '2025-03-14 20:56:38', '2025-12-17 19:46:19', 'bdz5OMl4', '7881989'), - (312, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'bdz5OMl4', '7888250'), - (312, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'bdz5OMl4', '7904777'), - (312, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'bdz5OMl4', '8349164'), - (312, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'bdz5OMl4', '8349545'), - (312, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'bdz5OMl4', '8353584'), - (312, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'bdz5OMl4', '8368028'), - (312, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'bdz5OMl4', '8368029'), - (312, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'bdz5OMl4', '8388462'), - (312, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'bdz5OMl4', '8400273'), - (312, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'bdz5OMl4', '8400274'), - (312, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'bdz5OMl4', '8400275'), - (312, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'bdz5OMl4', '8400276'), - (312, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'bdz5OMl4', '8404977'), - (312, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'bdz5OMl4', '8430783'), - (312, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'bdz5OMl4', '8430784'), - (312, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'bdz5OMl4', '8430799'), - (312, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'bdz5OMl4', '8430800'), - (312, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'bdz5OMl4', '8430801'), - (312, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'bdz5OMl4', '8438709'), - (312, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'bdz5OMl4', '8457738'), - (312, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'bdz5OMl4', '8459566'), - (312, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'bdz5OMl4', '8459567'), - (312, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'bdz5OMl4', '8461032'), - (312, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'bdz5OMl4', '8477877'), - (312, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'bdz5OMl4', '8485688'), - (313, 1511, 'attending', '2023-07-07 03:14:19', '2025-12-17 19:47:19', 'dKbaEGZ4', '5437733'), - (313, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dKbaEGZ4', '6044839'), - (313, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dKbaEGZ4', '6053198'), - (313, 2011, 'not_attending', '2023-04-10 18:04:05', '2025-12-17 19:46:59', 'dKbaEGZ4', '6056916'), - (313, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dKbaEGZ4', '6059290'), - (313, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dKbaEGZ4', '6060328'), - (313, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dKbaEGZ4', '6061037'), - (313, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dKbaEGZ4', '6061039'), - (313, 2021, 'maybe', '2023-04-17 15:09:09', '2025-12-17 19:47:00', 'dKbaEGZ4', '6066316'), - (313, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dKbaEGZ4', '6067245'), - (313, 2025, 'not_attending', '2023-04-23 16:59:15', '2025-12-17 19:47:00', 'dKbaEGZ4', '6067457'), - (313, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dKbaEGZ4', '6068094'), - (313, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dKbaEGZ4', '6068252'), - (313, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dKbaEGZ4', '6068253'), - (313, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dKbaEGZ4', '6068254'), - (313, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dKbaEGZ4', '6068280'), - (313, 2032, 'attending', '2023-06-02 19:40:21', '2025-12-17 19:47:04', 'dKbaEGZ4', '6068281'), - (313, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dKbaEGZ4', '6069093'), - (313, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dKbaEGZ4', '6072528'), - (313, 2047, 'not_attending', '2023-05-07 17:46:30', '2025-12-17 19:47:02', 'dKbaEGZ4', '6076027'), - (313, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dKbaEGZ4', '6079840'), - (313, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dKbaEGZ4', '6083398'), - (313, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dKbaEGZ4', '6093504'), - (313, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dKbaEGZ4', '6097414'), - (313, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dKbaEGZ4', '6097442'), - (313, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dKbaEGZ4', '6097684'), - (313, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dKbaEGZ4', '6098762'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (313, 2064, 'attending', '2023-06-24 13:06:52', '2025-12-17 19:46:50', 'dKbaEGZ4', '6099988'), - (313, 2065, 'attending', '2023-06-17 00:14:40', '2025-12-17 19:46:49', 'dKbaEGZ4', '6101169'), - (313, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dKbaEGZ4', '6101361'), - (313, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dKbaEGZ4', '6101362'), - (313, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dKbaEGZ4', '6103752'), - (313, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dKbaEGZ4', '6107314'), - (313, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dKbaEGZ4', '6120034'), - (313, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dKbaEGZ4', '6136733'), - (313, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dKbaEGZ4', '6137989'), - (313, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dKbaEGZ4', '6150864'), - (313, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKbaEGZ4', '6155491'), - (313, 2111, 'attending', '2023-06-21 22:26:32', '2025-12-17 19:46:50', 'dKbaEGZ4', '6156121'), - (313, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKbaEGZ4', '6164417'), - (313, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKbaEGZ4', '6166388'), - (313, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKbaEGZ4', '6176439'), - (313, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKbaEGZ4', '6182410'), - (313, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKbaEGZ4', '6185812'), - (313, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKbaEGZ4', '6187651'), - (313, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKbaEGZ4', '6187963'), - (313, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKbaEGZ4', '6187964'), - (313, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKbaEGZ4', '6187966'), - (313, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKbaEGZ4', '6187967'), - (313, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKbaEGZ4', '6187969'), - (313, 2143, 'attending', '2023-08-02 15:57:46', '2025-12-17 19:46:51', 'dKbaEGZ4', '6334348'), - (313, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKbaEGZ4', '6334878'), - (313, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dKbaEGZ4', '6337236'), - (313, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKbaEGZ4', '6337970'), - (313, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dKbaEGZ4', '6338308'), - (313, 2159, 'attending', '2023-07-20 19:03:43', '2025-12-17 19:46:53', 'dKbaEGZ4', '6338355'), - (313, 2160, 'attending', '2023-07-27 13:12:01', '2025-12-17 19:46:54', 'dKbaEGZ4', '6338358'), - (313, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dKbaEGZ4', '6340845'), - (313, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dKbaEGZ4', '6341710'), - (313, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKbaEGZ4', '6342044'), - (313, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKbaEGZ4', '6342298'), - (313, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dKbaEGZ4', '6343294'), - (313, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKbaEGZ4', '6347034'), - (313, 2177, 'attending', '2023-08-02 15:57:56', '2025-12-17 19:46:55', 'dKbaEGZ4', '6347053'), - (313, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKbaEGZ4', '6347056'), - (313, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKbaEGZ4', '6353830'), - (313, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKbaEGZ4', '6353831'), - (313, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKbaEGZ4', '6357867'), - (313, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKbaEGZ4', '6358652'), - (313, 2200, 'not_attending', '2023-08-10 23:16:58', '2025-12-17 19:46:55', 'dKbaEGZ4', '6359850'), - (313, 2202, 'attending', '2023-08-06 20:48:37', '2025-12-17 19:46:54', 'dKbaEGZ4', '6360509'), - (313, 2204, 'attending', '2023-08-19 06:24:49', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361542'), - (313, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKbaEGZ4', '6361709'), - (313, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361710'), - (313, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361711'), - (313, 2211, 'attending', '2023-08-15 23:41:46', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361712'), - (313, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKbaEGZ4', '6361713'), - (313, 2228, 'attending', '2023-08-19 20:05:35', '2025-12-17 19:46:55', 'dKbaEGZ4', '6372777'), - (313, 2232, 'not_attending', '2023-08-22 13:24:25', '2025-12-17 19:46:55', 'dKbaEGZ4', '6374818'), - (313, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKbaEGZ4', '6382573'), - (313, 2239, 'attending', '2023-08-31 18:00:24', '2025-12-17 19:46:56', 'dKbaEGZ4', '6387592'), - (313, 2240, 'attending', '2023-09-09 16:38:40', '2025-12-17 19:46:56', 'dKbaEGZ4', '6388603'), - (313, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dKbaEGZ4', '6388604'), - (313, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKbaEGZ4', '6394629'), - (313, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKbaEGZ4', '6394631'), - (313, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKbaEGZ4', '6440863'), - (313, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKbaEGZ4', '6445440'), - (313, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKbaEGZ4', '6453951'), - (313, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKbaEGZ4', '6461696'), - (313, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKbaEGZ4', '6462129'), - (313, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKbaEGZ4', '6463218'), - (313, 2299, 'not_attending', '2023-10-21 00:40:33', '2025-12-17 19:46:46', 'dKbaEGZ4', '6472181'), - (313, 2303, 'attending', '2023-10-28 16:35:40', '2025-12-17 19:46:47', 'dKbaEGZ4', '6482691'), - (313, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKbaEGZ4', '6482693'), - (313, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dKbaEGZ4', '6484200'), - (313, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKbaEGZ4', '6484680'), - (313, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKbaEGZ4', '6507741'), - (313, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKbaEGZ4', '6514659'), - (313, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKbaEGZ4', '6514660'), - (313, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKbaEGZ4', '6519103'), - (313, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKbaEGZ4', '6535681'), - (313, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKbaEGZ4', '6584747'), - (313, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKbaEGZ4', '6587097'), - (313, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKbaEGZ4', '6609022'), - (313, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKbaEGZ4', '6632757'), - (313, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKbaEGZ4', '6644187'), - (313, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKbaEGZ4', '6648951'), - (313, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKbaEGZ4', '6648952'), - (313, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKbaEGZ4', '6655401'), - (313, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKbaEGZ4', '6661585'), - (313, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKbaEGZ4', '6661588'), - (313, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKbaEGZ4', '6661589'), - (313, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKbaEGZ4', '6699906'), - (313, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dKbaEGZ4', '6699913'), - (313, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKbaEGZ4', '6701109'), - (313, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKbaEGZ4', '6705219'), - (313, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKbaEGZ4', '6710153'), - (313, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKbaEGZ4', '6711552'), - (313, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKbaEGZ4', '6711553'), - (313, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKbaEGZ4', '6722688'), - (313, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKbaEGZ4', '6730620'), - (313, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKbaEGZ4', '6730642'), - (313, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKbaEGZ4', '6740364'), - (313, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKbaEGZ4', '6743829'), - (313, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKbaEGZ4', '7030380'), - (313, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKbaEGZ4', '7033677'), - (313, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKbaEGZ4', '7035415'), - (313, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKbaEGZ4', '7044715'), - (313, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKbaEGZ4', '7050318'), - (313, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKbaEGZ4', '7050319'), - (313, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKbaEGZ4', '7050322'), - (313, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKbaEGZ4', '7057804'), - (313, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dKbaEGZ4', '7059866'), - (313, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKbaEGZ4', '7072824'), - (313, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dKbaEGZ4', '7074348'), - (313, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKbaEGZ4', '7089267'), - (313, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKbaEGZ4', '7098747'), - (313, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dKbaEGZ4', '7113468'), - (313, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKbaEGZ4', '7114856'), - (313, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKbaEGZ4', '7114951'), - (313, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKbaEGZ4', '7114955'), - (313, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKbaEGZ4', '7114956'), - (313, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKbaEGZ4', '7153615'), - (313, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKbaEGZ4', '7159484'), - (313, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKbaEGZ4', '7178446'), - (314, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dJrj7qwd', '5630960'), - (314, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dJrj7qwd', '5630961'), - (314, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dJrj7qwd', '5630962'), - (314, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dJrj7qwd', '5630966'), - (314, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', 'dJrj7qwd', '5638765'), - (314, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dJrj7qwd', '5640097'), - (314, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dJrj7qwd', '5652395'), - (314, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dJrj7qwd', '5671637'), - (314, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dJrj7qwd', '5672329'), - (314, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dJrj7qwd', '5674057'), - (314, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dJrj7qwd', '5674060'), - (314, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dJrj7qwd', '5677461'), - (314, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dJrj7qwd', '5698046'), - (314, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dJrj7qwd', '5699760'), - (314, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJrj7qwd', '6045684'), - (315, 1863, 'attending', '2023-01-25 00:08:58', '2025-12-17 19:47:06', 'd31kM2OA', '5877255'), - (315, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'd31kM2OA', '5880940'), - (315, 1868, 'maybe', '2023-02-20 01:54:07', '2025-12-17 19:47:07', 'd31kM2OA', '5880942'), - (315, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd31kM2OA', '5880943'), - (315, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'd31kM2OA', '5899826'), - (315, 1885, 'not_attending', '2023-02-21 14:24:36', '2025-12-17 19:47:08', 'd31kM2OA', '5899928'), - (315, 1886, 'not_attending', '2023-03-08 20:15:43', '2025-12-17 19:47:09', 'd31kM2OA', '5899930'), - (315, 1888, 'maybe', '2023-02-16 04:19:00', '2025-12-17 19:47:07', 'd31kM2OA', '5900197'), - (315, 1889, 'attending', '2023-02-03 17:52:13', '2025-12-17 19:47:07', 'd31kM2OA', '5900199'), - (315, 1890, 'attending', '2023-02-18 15:12:39', '2025-12-17 19:47:08', 'd31kM2OA', '5900200'), - (315, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd31kM2OA', '5900202'), - (315, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd31kM2OA', '5900203'), - (315, 1895, 'attending', '2023-01-31 22:26:47', '2025-12-17 19:47:06', 'd31kM2OA', '5901108'), - (315, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd31kM2OA', '5901126'), - (315, 1897, 'attending', '2023-02-06 14:15:45', '2025-12-17 19:47:07', 'd31kM2OA', '5901128'), - (315, 1898, 'attending', '2023-02-01 00:28:17', '2025-12-17 19:47:06', 'd31kM2OA', '5901263'), - (315, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'd31kM2OA', '5909655'), - (315, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'd31kM2OA', '5910522'), - (315, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'd31kM2OA', '5910526'), - (315, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'd31kM2OA', '5910528'), - (315, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd31kM2OA', '5916219'), - (315, 1925, 'maybe', '2023-02-18 15:13:20', '2025-12-17 19:47:08', 'd31kM2OA', '5932619'), - (315, 1926, 'attending', '2023-02-20 01:54:51', '2025-12-17 19:47:08', 'd31kM2OA', '5932620'), - (315, 1928, 'attending', '2023-02-18 15:12:07', '2025-12-17 19:47:07', 'd31kM2OA', '5932627'), - (315, 1929, 'not_attending', '2023-02-18 15:11:30', '2025-12-17 19:47:07', 'd31kM2OA', '5932628'), - (315, 1933, 'attending', '2023-02-21 14:24:45', '2025-12-17 19:47:08', 'd31kM2OA', '5936234'), - (315, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd31kM2OA', '5958351'), - (315, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd31kM2OA', '5959751'), - (315, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd31kM2OA', '5959755'), - (315, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd31kM2OA', '5960055'), - (315, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd31kM2OA', '5961684'), - (315, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd31kM2OA', '5962132'), - (315, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'd31kM2OA', '5962133'), - (315, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd31kM2OA', '5962134'), - (315, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd31kM2OA', '5962317'), - (315, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd31kM2OA', '5962318'), - (315, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'd31kM2OA', '5965933'), - (315, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd31kM2OA', '5967014'), - (315, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd31kM2OA', '5972815'), - (315, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd31kM2OA', '5974016'), - (315, 1965, 'maybe', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd31kM2OA', '5981515'), - (315, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd31kM2OA', '5993516'), - (315, 1970, 'not_attending', '2023-03-22 23:47:22', '2025-12-17 19:46:56', 'd31kM2OA', '5993758'), - (315, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd31kM2OA', '5998939'), - (315, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd31kM2OA', '6028191'), - (315, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd31kM2OA', '6040066'), - (315, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd31kM2OA', '6042717'), - (315, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd31kM2OA', '6044838'), - (315, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd31kM2OA', '6044839'), - (315, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd31kM2OA', '6045684'), - (315, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd31kM2OA', '6050104'), - (315, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd31kM2OA', '6053195'), - (315, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd31kM2OA', '6053198'), - (315, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd31kM2OA', '6056085'), - (315, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd31kM2OA', '6056916'), - (315, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd31kM2OA', '6059290'), - (315, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd31kM2OA', '6060328'), - (315, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd31kM2OA', '6061037'), - (315, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd31kM2OA', '6061039'), - (315, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd31kM2OA', '6067245'), - (315, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd31kM2OA', '6068094'), - (315, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd31kM2OA', '6068252'), - (315, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd31kM2OA', '6068253'), - (315, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd31kM2OA', '6068254'), - (315, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd31kM2OA', '6068280'), - (315, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd31kM2OA', '6069093'), - (315, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd31kM2OA', '6072528'), - (315, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd31kM2OA', '6079840'), - (315, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd31kM2OA', '6083398'), - (315, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd31kM2OA', '6093504'), - (315, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd31kM2OA', '6097414'), - (315, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd31kM2OA', '6097442'), - (315, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd31kM2OA', '6097684'), - (315, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd31kM2OA', '6098762'), - (315, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd31kM2OA', '6101362'), - (315, 2070, 'maybe', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd31kM2OA', '6103752'), - (315, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd31kM2OA', '6107314'), - (316, 901, 'not_attending', '2021-07-31 17:55:48', '2025-12-17 19:47:40', 'd2pDMV5A', '4240317'), - (316, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'd2pDMV5A', '4240318'), - (316, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'd2pDMV5A', '4302093'), - (316, 947, 'attending', '2021-07-31 05:52:32', '2025-12-17 19:47:41', 'd2pDMV5A', '4315713'), - (316, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd2pDMV5A', '6045684'), - (317, 255, 'maybe', '2021-03-23 17:16:17', '2025-12-17 19:47:43', 'QdJ3Q7bm', '3149486'), - (317, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3236465'), - (317, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3539916'), - (317, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'QdJ3Q7bm', '3539918'), - (317, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3539919'), - (317, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3539920'), - (317, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3539921'), - (317, 689, 'maybe', '2021-03-25 17:03:19', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3555564'), - (317, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3583262'), - (317, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3619523'), - (317, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3661369'), - (317, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3674262'), - (317, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3677402'), - (317, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'QdJ3Q7bm', '3730212'), - (317, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3793156'), - (317, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3803310'), - (317, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3806392'), - (317, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ3Q7bm', '6045684'), - (318, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', 'x4oRgMXA', '4136938'), - (318, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'x4oRgMXA', '4136947'), - (318, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oRgMXA', '4210314'), - (318, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oRgMXA', '4225444'), - (318, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', 'x4oRgMXA', '4229418'), - (318, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'x4oRgMXA', '4229420'), - (318, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'x4oRgMXA', '4229423'), - (318, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'x4oRgMXA', '4240316'), - (318, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oRgMXA', '4240317'), - (318, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'x4oRgMXA', '4240318'), - (318, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oRgMXA', '4275957'), - (318, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oRgMXA', '4277819'), - (318, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'x4oRgMXA', '4292773'), - (318, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oRgMXA', '4301723'), - (318, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'x4oRgMXA', '4302093'), - (318, 940, 'not_attending', '2021-07-30 16:29:47', '2025-12-17 19:47:40', 'x4oRgMXA', '4309049'), - (318, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'x4oRgMXA', '4315713'), - (318, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oRgMXA', '6045684'), - (319, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'LmpJzb24', '3149489'), - (319, 395, 'not_attending', '2021-06-01 01:19:42', '2025-12-17 19:47:47', 'LmpJzb24', '3236450'), - (319, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'LmpJzb24', '3236452'), - (319, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'LmpJzb24', '3539923'), - (319, 743, 'not_attending', '2021-06-12 22:04:39', '2025-12-17 19:47:38', 'LmpJzb24', '3680623'), - (319, 744, 'not_attending', '2021-05-30 01:33:21', '2025-12-17 19:47:47', 'LmpJzb24', '3680624'), - (319, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'LmpJzb24', '3963335'), - (319, 823, 'not_attending', '2021-06-16 00:05:12', '2025-12-17 19:47:48', 'LmpJzb24', '3974109'), - (319, 824, 'not_attending', '2021-06-03 21:57:23', '2025-12-17 19:47:47', 'LmpJzb24', '3974112'), - (319, 825, 'attending', '2021-06-08 23:15:48', '2025-12-17 19:47:47', 'LmpJzb24', '3975283'), - (319, 827, 'attending', '2021-06-04 14:38:16', '2025-12-17 19:47:47', 'LmpJzb24', '3975311'), - (319, 828, 'not_attending', '2021-06-04 14:19:38', '2025-12-17 19:47:47', 'LmpJzb24', '3975312'), - (319, 829, 'attending', '2021-05-31 02:52:09', '2025-12-17 19:47:47', 'LmpJzb24', '3976202'), - (319, 834, 'maybe', '2021-06-07 14:53:14', '2025-12-17 19:47:47', 'LmpJzb24', '3990439'), - (319, 838, 'not_attending', '2021-06-07 23:01:20', '2025-12-17 19:47:47', 'LmpJzb24', '3994992'), - (319, 843, 'attending', '2021-06-09 22:28:45', '2025-12-17 19:47:47', 'LmpJzb24', '4011909'), - (319, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpJzb24', '4014338'), - (319, 867, 'attending', '2021-06-24 00:03:30', '2025-12-17 19:47:38', 'LmpJzb24', '4021848'), - (319, 869, 'not_attending', '2021-06-30 22:17:35', '2025-12-17 19:47:38', 'LmpJzb24', '4136744'), - (319, 870, 'attending', '2021-06-30 15:27:38', '2025-12-17 19:47:39', 'LmpJzb24', '4136937'), - (319, 871, 'not_attending', '2021-07-10 15:47:08', '2025-12-17 19:47:39', 'LmpJzb24', '4136938'), - (319, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJzb24', '4136947'), - (319, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpJzb24', '4210314'), - (319, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpJzb24', '4225444'), - (319, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpJzb24', '4239259'), - (319, 900, 'not_attending', '2021-07-21 16:38:34', '2025-12-17 19:47:40', 'LmpJzb24', '4240316'), - (319, 901, 'attending', '2021-07-31 13:56:55', '2025-12-17 19:47:40', 'LmpJzb24', '4240317'), - (319, 902, 'not_attending', '2021-08-07 19:04:32', '2025-12-17 19:47:41', 'LmpJzb24', '4240318'), - (319, 903, 'attending', '2021-08-12 15:30:23', '2025-12-17 19:47:42', 'LmpJzb24', '4240320'), - (319, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpJzb24', '4250163'), - (319, 916, 'maybe', '2021-07-17 15:20:45', '2025-12-17 19:47:40', 'LmpJzb24', '4273772'), - (319, 917, 'attending', '2021-07-14 14:00:27', '2025-12-17 19:47:39', 'LmpJzb24', '4274481'), - (319, 919, 'not_attending', '2021-07-16 18:43:00', '2025-12-17 19:47:39', 'LmpJzb24', '4275957'), - (319, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpJzb24', '4277819'), - (319, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpJzb24', '4301723'), - (319, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpJzb24', '4302093'), - (319, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpJzb24', '4304151'), - (319, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'LmpJzb24', '4345519'), - (319, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'LmpJzb24', '4356801'), - (319, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpJzb24', '4358025'), - (319, 973, 'not_attending', '2021-08-18 15:03:25', '2025-12-17 19:47:42', 'LmpJzb24', '4366186'), - (319, 974, 'not_attending', '2021-08-28 18:27:22', '2025-12-17 19:47:43', 'LmpJzb24', '4366187'), - (319, 988, 'not_attending', '2021-08-27 23:52:35', '2025-12-17 19:47:42', 'LmpJzb24', '4402823'), - (319, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'LmpJzb24', '4420735'), - (319, 991, 'not_attending', '2021-09-10 17:51:07', '2025-12-17 19:47:43', 'LmpJzb24', '4420738'), - (319, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'LmpJzb24', '4420739'), - (319, 993, 'not_attending', '2021-10-08 18:56:15', '2025-12-17 19:47:34', 'LmpJzb24', '4420741'), - (319, 995, 'not_attending', '2021-10-08 18:56:22', '2025-12-17 19:47:34', 'LmpJzb24', '4420744'), - (319, 996, 'attending', '2021-10-15 23:37:41', '2025-12-17 19:47:35', 'LmpJzb24', '4420747'), - (319, 997, 'not_attending', '2021-10-20 20:50:34', '2025-12-17 19:47:35', 'LmpJzb24', '4420748'), - (319, 998, 'not_attending', '2021-10-20 20:50:44', '2025-12-17 19:47:36', 'LmpJzb24', '4420749'), - (319, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'LmpJzb24', '4461883'), - (319, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpJzb24', '4508342'), - (319, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpJzb24', '4568602'), - (319, 1087, 'attending', '2021-10-15 23:37:37', '2025-12-17 19:47:35', 'LmpJzb24', '4572153'), - (319, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpJzb24', '4585962'), - (319, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'LmpJzb24', '4596356'), - (319, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpJzb24', '4598860'), - (319, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpJzb24', '4598861'), - (319, 1099, 'not_attending', '2021-11-06 02:00:57', '2025-12-17 19:47:36', 'LmpJzb24', '4602797'), - (319, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'LmpJzb24', '4637896'), - (319, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpJzb24', '4642994'), - (319, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'LmpJzb24', '4642995'), - (319, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpJzb24', '4642996'), - (319, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpJzb24', '4642997'), - (319, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'LmpJzb24', '4645687'), - (319, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpJzb24', '4645698'), - (319, 1128, 'not_attending', '2021-11-20 19:12:10', '2025-12-17 19:47:37', 'LmpJzb24', '4645704'), - (319, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'LmpJzb24', '4645705'), - (319, 1130, 'not_attending', '2021-12-04 23:52:07', '2025-12-17 19:47:37', 'LmpJzb24', '4658824'), - (319, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpJzb24', '4668385'), - (319, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpJzb24', '4694407'), - (319, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'LmpJzb24', '4736497'), - (319, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpJzb24', '4736499'), - (319, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'LmpJzb24', '4736500'), - (319, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'LmpJzb24', '4736503'), - (319, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpJzb24', '4736504'), - (319, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpJzb24', '4746789'), - (319, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'LmpJzb24', '4753929'), - (319, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpJzb24', '5038850'), - (319, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpJzb24', '5045826'), - (319, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpJzb24', '5132533'), - (319, 1272, 'not_attending', '2022-03-19 19:41:02', '2025-12-17 19:47:25', 'LmpJzb24', '5186582'), - (319, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpJzb24', '5186583'), - (319, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'LmpJzb24', '5186585'), - (319, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpJzb24', '5190437'), - (319, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'LmpJzb24', '5195095'), - (319, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpJzb24', '5215989'), - (319, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'LmpJzb24', '5223686'), - (319, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'LmpJzb24', '5227432'), - (319, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'LmpJzb24', '5247467'), - (319, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'LmpJzb24', '5260800'), - (319, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'LmpJzb24', '5269930'), - (319, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'LmpJzb24', '5271448'), - (319, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'LmpJzb24', '5271449'), - (319, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'LmpJzb24', '5276469'), - (319, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'LmpJzb24', '5278159'), - (319, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'LmpJzb24', '5363695'), - (319, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'LmpJzb24', '5365960'), - (319, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'LmpJzb24', '5368973'), - (319, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'LmpJzb24', '5378247'), - (319, 1431, 'not_attending', '2022-06-11 17:36:20', '2025-12-17 19:47:31', 'LmpJzb24', '5389605'), - (319, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'LmpJzb24', '5397265'), - (319, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'LmpJzb24', '5403967'), - (319, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'LmpJzb24', '5404786'), - (319, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'LmpJzb24', '5405203'), - (319, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'LmpJzb24', '5408794'), - (319, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'LmpJzb24', '5411699'), - (319, 1482, 'not_attending', '2022-06-24 19:41:44', '2025-12-17 19:47:19', 'LmpJzb24', '5412550'), - (319, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'LmpJzb24', '5415046'), - (319, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'LmpJzb24', '5422086'), - (319, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'LmpJzb24', '5422406'), - (319, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'LmpJzb24', '5424565'), - (319, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'LmpJzb24', '5426882'), - (319, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'LmpJzb24', '5427083'), - (319, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'LmpJzb24', '5441125'), - (319, 1514, 'attending', '2022-07-20 21:35:16', '2025-12-17 19:47:20', 'LmpJzb24', '5441126'), - (319, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'LmpJzb24', '5441128'), - (319, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'LmpJzb24', '5441131'), - (319, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'LmpJzb24', '5441132'), - (319, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'LmpJzb24', '5446643'), - (319, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'LmpJzb24', '5453325'), - (319, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'LmpJzb24', '5454516'), - (319, 1545, 'maybe', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'LmpJzb24', '5454605'), - (319, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'LmpJzb24', '5455037'), - (319, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'LmpJzb24', '5461278'), - (319, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'LmpJzb24', '5469480'), - (319, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'LmpJzb24', '5471073'), - (319, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'LmpJzb24', '5474663'), - (319, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'LmpJzb24', '5482022'), - (319, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'LmpJzb24', '5482793'), - (319, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'LmpJzb24', '5488912'), - (319, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'LmpJzb24', '5492192'), - (319, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'LmpJzb24', '5493139'), - (319, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'LmpJzb24', '5493200'), - (319, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'LmpJzb24', '5502188'), - (319, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'LmpJzb24', '5505059'), - (319, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'LmpJzb24', '5509055'), - (319, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'LmpJzb24', '5512862'), - (319, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'LmpJzb24', '5513985'), - (319, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'LmpJzb24', '5519981'), - (319, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'LmpJzb24', '5522550'), - (319, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'LmpJzb24', '5534683'), - (319, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'LmpJzb24', '5537735'), - (319, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'LmpJzb24', '5540859'), - (319, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'LmpJzb24', '5546619'), - (319, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'LmpJzb24', '5555245'), - (319, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'LmpJzb24', '5557747'), - (319, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'LmpJzb24', '5560255'), - (319, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'LmpJzb24', '5562906'), - (319, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'LmpJzb24', '5600604'), - (319, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'LmpJzb24', '5605544'), - (319, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'LmpJzb24', '5606737'), - (319, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'LmpJzb24', '5630960'), - (319, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'LmpJzb24', '5630961'), - (319, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'LmpJzb24', '5630962'), - (319, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'LmpJzb24', '5630966'), - (319, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'LmpJzb24', '5630967'), - (319, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'LmpJzb24', '5630968'), - (319, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'LmpJzb24', '5635406'), - (319, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'LmpJzb24', '5638765'), - (319, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'LmpJzb24', '5640097'), - (319, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'LmpJzb24', '5640843'), - (319, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'LmpJzb24', '5641521'), - (319, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'LmpJzb24', '5642818'), - (319, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'LmpJzb24', '5652395'), - (319, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'LmpJzb24', '5670445'), - (319, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'LmpJzb24', '5671637'), - (319, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'LmpJzb24', '5672329'), - (319, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'LmpJzb24', '5674057'), - (319, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'LmpJzb24', '5674060'), - (319, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'LmpJzb24', '5677461'), - (319, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'LmpJzb24', '5698046'), - (319, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'LmpJzb24', '5699760'), - (319, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'LmpJzb24', '5741601'), - (319, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'LmpJzb24', '5763458'), - (319, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'LmpJzb24', '5774172'), - (319, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'LmpJzb24', '5818247'), - (319, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'LmpJzb24', '5819471'), - (319, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'LmpJzb24', '5827739'), - (319, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'LmpJzb24', '5844306'), - (319, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'LmpJzb24', '5850159'), - (319, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'LmpJzb24', '5858999'), - (319, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'LmpJzb24', '5871984'), - (319, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'LmpJzb24', '5876354'), - (319, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'LmpJzb24', '5880939'), - (319, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'LmpJzb24', '5887890'), - (319, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'LmpJzb24', '5888598'), - (319, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'LmpJzb24', '5893260'), - (319, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'LmpJzb24', '5900202'), - (319, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'LmpJzb24', '5962317'), - (319, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'LmpJzb24', '5962318'), - (319, 1951, 'not_attending', '2023-03-21 00:52:15', '2025-12-17 19:46:57', 'LmpJzb24', '5965933'), - (319, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'LmpJzb24', '6028191'), - (319, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'LmpJzb24', '6040066'), - (319, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'LmpJzb24', '6042717'), - (319, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'LmpJzb24', '6044838'), - (319, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'LmpJzb24', '6044839'), - (319, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJzb24', '6045684'), - (319, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'LmpJzb24', '6050104'), - (319, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'LmpJzb24', '6053195'), - (319, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'LmpJzb24', '6053198'), - (319, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'LmpJzb24', '6056085'), - (319, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'LmpJzb24', '6056916'), - (319, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'LmpJzb24', '6059290'), - (319, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'LmpJzb24', '6060328'), - (319, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'LmpJzb24', '6061037'), - (319, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'LmpJzb24', '6061039'), - (319, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'LmpJzb24', '6067245'), - (319, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'LmpJzb24', '6068094'), - (319, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'LmpJzb24', '6068252'), - (319, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'LmpJzb24', '6068253'), - (319, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'LmpJzb24', '6068254'), - (319, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'LmpJzb24', '6068280'), - (319, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'LmpJzb24', '6069093'), - (319, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'LmpJzb24', '6072528'), - (319, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'LmpJzb24', '6079840'), - (319, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'LmpJzb24', '6083398'), - (319, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'LmpJzb24', '6093504'), - (319, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'LmpJzb24', '6097414'), - (319, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'LmpJzb24', '6097442'), - (319, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'LmpJzb24', '6097684'), - (319, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'LmpJzb24', '6098762'), - (319, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'LmpJzb24', '6101361'), - (319, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'LmpJzb24', '6101362'), - (319, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'LmpJzb24', '6103752'), - (319, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'LmpJzb24', '6107314'), - (319, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'LmpJzb24', '6120034'), - (319, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'LmpJzb24', '6136733'), - (319, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'LmpJzb24', '6137989'), - (319, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'LmpJzb24', '6150864'), - (319, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'LmpJzb24', '6155491'), - (319, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'LmpJzb24', '6164417'), - (319, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'LmpJzb24', '6166388'), - (319, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'LmpJzb24', '6176439'), - (319, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'LmpJzb24', '6182410'), - (319, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'LmpJzb24', '6185812'), - (319, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'LmpJzb24', '6187651'), - (319, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'LmpJzb24', '6187963'), - (319, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'LmpJzb24', '6187964'), - (319, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'LmpJzb24', '6187966'), - (319, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'LmpJzb24', '6187967'), - (319, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'LmpJzb24', '6187969'), - (319, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'LmpJzb24', '6334878'), - (319, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'LmpJzb24', '6337236'), - (319, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'LmpJzb24', '6337970'), - (319, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'LmpJzb24', '6338308'), - (319, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'LmpJzb24', '6340845'), - (319, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'LmpJzb24', '6341710'), - (319, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'LmpJzb24', '6342044'), - (319, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'LmpJzb24', '6342298'), - (319, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'LmpJzb24', '6343294'), - (319, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'LmpJzb24', '6347034'), - (319, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'LmpJzb24', '6347056'), - (319, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'LmpJzb24', '6353830'), - (319, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'LmpJzb24', '6353831'), - (319, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'LmpJzb24', '6357867'), - (319, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'LmpJzb24', '6358652'), - (319, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'LmpJzb24', '6361709'), - (319, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'LmpJzb24', '6361710'), - (319, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'LmpJzb24', '6361711'), - (319, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'LmpJzb24', '6361712'), - (319, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'LmpJzb24', '6361713'), - (319, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'LmpJzb24', '6382573'), - (319, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'LmpJzb24', '6388604'), - (319, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'LmpJzb24', '6394629'), - (319, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'LmpJzb24', '6394631'), - (319, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'LmpJzb24', '6440863'), - (319, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'LmpJzb24', '6445440'), - (319, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'LmpJzb24', '6453951'), - (319, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'LmpJzb24', '6461696'), - (319, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'LmpJzb24', '6462129'), - (319, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'LmpJzb24', '6463218'), - (319, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'LmpJzb24', '6472181'), - (319, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'LmpJzb24', '6482693'), - (319, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'LmpJzb24', '6484200'), - (319, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'LmpJzb24', '6484680'), - (319, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'LmpJzb24', '6507741'), - (319, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'LmpJzb24', '6514659'), - (319, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'LmpJzb24', '6514660'), - (319, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'LmpJzb24', '6519103'), - (319, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'LmpJzb24', '6535681'), - (319, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'LmpJzb24', '6584747'), - (319, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'LmpJzb24', '6587097'), - (319, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'LmpJzb24', '6609022'), - (319, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'LmpJzb24', '6632757'), - (319, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'LmpJzb24', '6644187'), - (319, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'LmpJzb24', '6648951'), - (319, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'LmpJzb24', '6648952'), - (319, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'LmpJzb24', '6655401'), - (319, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'LmpJzb24', '6661585'), - (319, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'LmpJzb24', '6661588'), - (319, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'LmpJzb24', '6661589'), - (319, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'LmpJzb24', '6699906'), - (319, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'LmpJzb24', '6701109'), - (319, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'LmpJzb24', '6705219'), - (319, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'LmpJzb24', '6710153'), - (319, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'LmpJzb24', '6711552'), - (319, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'LmpJzb24', '6711553'), - (320, 1626, 'not_attending', '2022-09-29 15:34:15', '2025-12-17 19:47:12', 'mjY2ggad', '5519981'), - (320, 1629, 'not_attending', '2022-09-16 07:38:52', '2025-12-17 19:47:11', 'mjY2ggad', '5522550'), - (320, 1635, 'not_attending', '2022-09-16 07:37:09', '2025-12-17 19:47:11', 'mjY2ggad', '5537735'), - (320, 1655, 'attending', '2022-09-17 11:55:17', '2025-12-17 19:47:11', 'mjY2ggad', '5554482'), - (320, 1669, 'maybe', '2022-09-16 03:14:04', '2025-12-17 19:47:10', 'mjY2ggad', '5564033'), - (320, 1676, 'attending', '2022-09-21 09:05:39', '2025-12-17 19:47:11', 'mjY2ggad', '5596181'), - (320, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mjY2ggad', '5600604'), - (320, 1679, 'attending', '2022-09-29 15:36:24', '2025-12-17 19:47:12', 'mjY2ggad', '5601099'), - (320, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mjY2ggad', '5605544'), - (320, 1698, 'attending', '2022-09-26 09:23:54', '2025-12-17 19:47:11', 'mjY2ggad', '5606366'), - (320, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mjY2ggad', '5630960'), - (320, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mjY2ggad', '5630961'), - (320, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mjY2ggad', '5630962'), - (320, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mjY2ggad', '5630966'), - (320, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mjY2ggad', '5630967'), - (320, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mjY2ggad', '5630968'), - (320, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mjY2ggad', '5635406'), - (320, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mjY2ggad', '5638765'), - (320, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mjY2ggad', '5640097'), - (320, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mjY2ggad', '5640843'), - (320, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mjY2ggad', '5641521'), - (320, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mjY2ggad', '5652395'), - (320, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mjY2ggad', '5671637'), - (320, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mjY2ggad', '5672329'), - (320, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mjY2ggad', '5674057'), - (320, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mjY2ggad', '5674060'), - (320, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mjY2ggad', '5677461'), - (320, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mjY2ggad', '5698046'), - (320, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mjY2ggad', '5699760'), - (320, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mjY2ggad', '5741601'), - (320, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mjY2ggad', '5763458'), - (320, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjY2ggad', '6045684'), - (321, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ArQLP9Xm', '5271448'), - (321, 1379, 'attending', '2022-05-06 20:08:23', '2025-12-17 19:47:29', 'ArQLP9Xm', '5271449'), - (321, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ArQLP9Xm', '5276469'), - (321, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ArQLP9Xm', '5278159'), - (321, 1388, 'not_attending', '2022-05-06 20:46:21', '2025-12-17 19:47:28', 'ArQLP9Xm', '5278201'), - (321, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ArQLP9Xm', '5363695'), - (321, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQLP9Xm', '5365960'), - (321, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQLP9Xm', '5368973'), - (321, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ArQLP9Xm', '5378247'), - (321, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ArQLP9Xm', '5389605'), - (321, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ArQLP9Xm', '5397265'), - (321, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQLP9Xm', '6045684'), - (322, 7, 'attending', '2020-03-22 16:57:51', '2025-12-17 19:47:58', 'Qd58nkE4', '2958049'), - (322, 8, 'attending', '2020-03-22 16:57:46', '2025-12-17 19:47:58', 'Qd58nkE4', '2958050'), - (322, 10, 'attending', '2020-03-28 18:27:31', '2025-12-17 19:47:56', 'Qd58nkE4', '2958053'), - (322, 11, 'attending', '2020-04-04 12:19:53', '2025-12-17 19:47:57', 'Qd58nkE4', '2958055'), - (322, 12, 'attending', '2020-03-22 17:11:12', '2025-12-17 19:47:56', 'Qd58nkE4', '2958056'), - (322, 13, 'not_attending', '2020-04-06 19:15:13', '2025-12-17 19:47:57', 'Qd58nkE4', '2958057'), - (322, 14, 'not_attending', '2020-04-06 19:15:16', '2025-12-17 19:47:57', 'Qd58nkE4', '2958058'), - (322, 15, 'not_attending', '2020-03-22 17:12:10', '2025-12-17 19:47:57', 'Qd58nkE4', '2958059'), - (322, 16, 'attending', '2020-03-24 21:50:20', '2025-12-17 19:47:56', 'Qd58nkE4', '2958060'), - (322, 18, 'not_attending', '2020-04-04 22:15:52', '2025-12-17 19:47:57', 'Qd58nkE4', '2958062'), - (322, 23, 'maybe', '2020-06-07 20:26:18', '2025-12-17 19:47:58', 'Qd58nkE4', '2958067'), - (322, 24, 'maybe', '2020-06-24 18:13:53', '2025-12-17 19:47:55', 'Qd58nkE4', '2958068'), - (322, 25, 'maybe', '2020-07-09 11:31:39', '2025-12-17 19:47:55', 'Qd58nkE4', '2958069'), - (322, 26, 'not_attending', '2020-04-01 22:50:13', '2025-12-17 19:47:57', 'Qd58nkE4', '2958082'), - (322, 28, 'attending', '2020-03-27 09:30:32', '2025-12-17 19:47:56', 'Qd58nkE4', '2960421'), - (322, 29, 'attending', '2020-03-25 15:04:39', '2025-12-17 19:47:56', 'Qd58nkE4', '2961309'), - (322, 30, 'attending', '2020-03-23 20:57:36', '2025-12-17 19:47:57', 'Qd58nkE4', '2961895'), - (322, 31, 'not_attending', '2020-03-24 21:51:10', '2025-12-17 19:47:58', 'Qd58nkE4', '2963118'), - (322, 32, 'attending', '2020-03-25 15:04:33', '2025-12-17 19:47:56', 'Qd58nkE4', '2963931'), - (322, 36, 'attending', '2020-03-29 01:56:20', '2025-12-17 19:47:57', 'Qd58nkE4', '2969208'), - (322, 37, 'attending', '2020-03-29 16:36:50', '2025-12-17 19:47:56', 'Qd58nkE4', '2969680'), - (322, 38, 'attending', '2020-03-30 13:58:45', '2025-12-17 19:47:56', 'Qd58nkE4', '2969751'), - (322, 39, 'attending', '2020-03-31 21:00:04', '2025-12-17 19:47:56', 'Qd58nkE4', '2970637'), - (322, 40, 'maybe', '2020-04-10 21:47:22', '2025-12-17 19:47:57', 'Qd58nkE4', '2970718'), - (322, 41, 'attending', '2020-04-13 01:01:39', '2025-12-17 19:47:57', 'Qd58nkE4', '2971546'), - (322, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'Qd58nkE4', '2974534'), - (322, 45, 'not_attending', '2020-04-06 19:15:19', '2025-12-17 19:47:57', 'Qd58nkE4', '2974760'), - (322, 46, 'attending', '2020-04-10 21:00:34', '2025-12-17 19:47:57', 'Qd58nkE4', '2974955'), - (322, 49, 'not_attending', '2020-06-02 19:43:36', '2025-12-17 19:47:58', 'Qd58nkE4', '2975274'), - (322, 50, 'maybe', '2020-07-25 22:26:57', '2025-12-17 19:47:55', 'Qd58nkE4', '2975275'), - (322, 55, 'attending', '2020-04-06 21:44:25', '2025-12-17 19:47:57', 'Qd58nkE4', '2975384'), - (322, 56, 'attending', '2020-04-12 21:58:19', '2025-12-17 19:47:57', 'Qd58nkE4', '2975385'), - (322, 57, 'attending', '2020-04-26 21:46:30', '2025-12-17 19:47:57', 'Qd58nkE4', '2976575'), - (322, 58, 'attending', '2020-04-14 01:30:06', '2025-12-17 19:47:57', 'Qd58nkE4', '2977127'), - (322, 59, 'attending', '2020-05-05 20:45:03', '2025-12-17 19:47:57', 'Qd58nkE4', '2977128'), - (322, 60, 'attending', '2020-04-26 21:52:20', '2025-12-17 19:47:57', 'Qd58nkE4', '2977129'), - (322, 61, 'attending', '2020-04-13 00:22:05', '2025-12-17 19:47:57', 'Qd58nkE4', '2977130'), - (322, 62, 'not_attending', '2020-05-12 22:50:24', '2025-12-17 19:47:57', 'Qd58nkE4', '2977131'), - (322, 63, 'attending', '2020-05-19 22:27:53', '2025-12-17 19:47:57', 'Qd58nkE4', '2977132'), - (322, 66, 'maybe', '2020-06-08 11:41:57', '2025-12-17 19:47:58', 'Qd58nkE4', '2977135'), - (322, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'Qd58nkE4', '2977343'), - (322, 71, 'attending', '2020-04-10 21:00:33', '2025-12-17 19:47:57', 'Qd58nkE4', '2977526'), - (322, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'Qd58nkE4', '2977812'), - (322, 73, 'attending', '2020-04-13 00:21:34', '2025-12-17 19:47:57', 'Qd58nkE4', '2977931'), - (322, 74, 'attending', '2020-04-16 16:11:17', '2025-12-17 19:47:57', 'Qd58nkE4', '2978244'), - (322, 75, 'attending', '2020-04-25 14:02:32', '2025-12-17 19:47:57', 'Qd58nkE4', '2978245'), - (322, 76, 'attending', '2020-04-26 21:52:44', '2025-12-17 19:47:57', 'Qd58nkE4', '2978246'), - (322, 77, 'attending', '2020-05-09 19:09:05', '2025-12-17 19:47:57', 'Qd58nkE4', '2978247'), - (322, 78, 'attending', '2020-05-22 03:12:31', '2025-12-17 19:47:57', 'Qd58nkE4', '2978249'), - (322, 79, 'maybe', '2020-05-30 16:31:50', '2025-12-17 19:47:57', 'Qd58nkE4', '2978250'), - (322, 80, 'attending', '2020-05-23 21:48:01', '2025-12-17 19:47:58', 'Qd58nkE4', '2978251'), - (322, 81, 'not_attending', '2020-06-13 19:12:25', '2025-12-17 19:47:58', 'Qd58nkE4', '2978252'), - (322, 82, 'maybe', '2020-04-24 22:56:39', '2025-12-17 19:47:57', 'Qd58nkE4', '2978433'), - (322, 83, 'maybe', '2020-05-07 22:58:45', '2025-12-17 19:47:57', 'Qd58nkE4', '2978438'), - (322, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'Qd58nkE4', '2980871'), - (322, 85, 'attending', '2020-04-13 00:20:14', '2025-12-17 19:47:57', 'Qd58nkE4', '2980872'), - (322, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'Qd58nkE4', '2981388'), - (322, 87, 'attending', '2020-04-22 11:12:04', '2025-12-17 19:47:57', 'Qd58nkE4', '2982602'), - (322, 88, 'attending', '2020-04-16 11:34:56', '2025-12-17 19:47:57', 'Qd58nkE4', '2982603'), - (322, 89, 'attending', '2020-04-26 21:52:41', '2025-12-17 19:47:57', 'Qd58nkE4', '2982604'), - (322, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'Qd58nkE4', '2986743'), - (322, 96, 'attending', '2020-04-21 23:28:33', '2025-12-17 19:47:57', 'Qd58nkE4', '2987453'), - (322, 97, 'attending', '2020-04-21 23:28:37', '2025-12-17 19:47:57', 'Qd58nkE4', '2987454'), - (322, 100, 'maybe', '2020-04-21 04:45:20', '2025-12-17 19:47:57', 'Qd58nkE4', '2989142'), - (322, 103, 'not_attending', '2020-05-04 11:47:37', '2025-12-17 19:47:57', 'Qd58nkE4', '2991407'), - (322, 104, 'attending', '2020-04-26 01:57:44', '2025-12-17 19:47:57', 'Qd58nkE4', '2991471'), - (322, 106, 'maybe', '2020-04-27 02:47:34', '2025-12-17 19:47:57', 'Qd58nkE4', '2993501'), - (322, 108, 'not_attending', '2020-05-17 16:48:44', '2025-12-17 19:47:57', 'Qd58nkE4', '2993504'), - (322, 109, 'maybe', '2020-05-12 23:08:38', '2025-12-17 19:47:57', 'Qd58nkE4', '2994480'), - (322, 110, 'attending', '2020-05-03 03:48:14', '2025-12-17 19:47:57', 'Qd58nkE4', '2994906'), - (322, 111, 'attending', '2020-06-07 11:28:02', '2025-12-17 19:47:58', 'Qd58nkE4', '2994907'), - (322, 112, 'attending', '2020-07-04 14:35:50', '2025-12-17 19:47:55', 'Qd58nkE4', '2994908'), - (322, 113, 'attending', '2020-08-01 03:13:34', '2025-12-17 19:47:56', 'Qd58nkE4', '2994909'), - (322, 114, 'not_attending', '2020-04-29 00:32:12', '2025-12-17 19:47:57', 'Qd58nkE4', '2994911'), - (322, 115, 'attending', '2020-05-16 22:23:26', '2025-12-17 19:47:57', 'Qd58nkE4', '3001217'), - (322, 119, 'attending', '2020-05-09 16:07:11', '2025-12-17 19:47:57', 'Qd58nkE4', '3015486'), - (322, 120, 'maybe', '2020-05-11 12:44:54', '2025-12-17 19:47:57', 'Qd58nkE4', '3018282'), - (322, 121, 'attending', '2020-05-16 11:59:06', '2025-12-17 19:47:57', 'Qd58nkE4', '3023063'), - (322, 122, 'attending', '2020-05-15 19:23:34', '2025-12-17 19:47:57', 'Qd58nkE4', '3023491'), - (322, 125, 'maybe', '2020-05-22 16:47:58', '2025-12-17 19:47:57', 'Qd58nkE4', '3023987'), - (322, 127, 'not_attending', '2020-05-19 17:50:50', '2025-12-17 19:47:57', 'Qd58nkE4', '3025623'), - (322, 129, 'attending', '2020-05-28 12:42:39', '2025-12-17 19:47:58', 'Qd58nkE4', '3028743'), - (322, 133, 'attending', '2020-06-19 12:42:57', '2025-12-17 19:47:58', 'Qd58nkE4', '3034321'), - (322, 135, 'maybe', '2020-05-24 21:19:06', '2025-12-17 19:47:57', 'Qd58nkE4', '3034368'), - (322, 136, 'attending', '2020-05-24 21:18:28', '2025-12-17 19:47:57', 'Qd58nkE4', '3035881'), - (322, 137, 'attending', '2020-05-28 01:19:03', '2025-12-17 19:47:58', 'Qd58nkE4', '3042188'), - (322, 138, 'attending', '2020-06-14 13:05:17', '2025-12-17 19:47:58', 'Qd58nkE4', '3042932'), - (322, 139, 'not_attending', '2020-06-16 11:57:44', '2025-12-17 19:47:58', 'Qd58nkE4', '3046190'), - (322, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'Qd58nkE4', '3049983'), - (322, 146, 'maybe', '2020-06-27 16:11:12', '2025-12-17 19:47:55', 'Qd58nkE4', '3058683'), - (322, 147, 'attending', '2020-08-17 03:48:59', '2025-12-17 19:47:56', 'Qd58nkE4', '3058684'), - (322, 148, 'attending', '2020-07-11 19:51:50', '2025-12-17 19:47:55', 'Qd58nkE4', '3058685'), - (322, 150, 'attending', '2020-07-25 20:32:59', '2025-12-17 19:47:55', 'Qd58nkE4', '3058687'), - (322, 151, 'attending', '2020-08-18 16:46:02', '2025-12-17 19:47:56', 'Qd58nkE4', '3058688'), - (322, 153, 'attending', '2020-07-29 18:13:30', '2025-12-17 19:47:55', 'Qd58nkE4', '3058690'), - (322, 166, 'not_attending', '2020-11-21 23:48:58', '2025-12-17 19:47:54', 'Qd58nkE4', '3058704'), - (322, 172, 'maybe', '2020-06-07 11:29:01', '2025-12-17 19:47:58', 'Qd58nkE4', '3058959'), - (322, 173, 'attending', '2020-06-19 12:42:37', '2025-12-17 19:47:58', 'Qd58nkE4', '3067093'), - (322, 181, 'not_attending', '2020-06-20 21:15:24', '2025-12-17 19:47:58', 'Qd58nkE4', '3074513'), - (322, 182, 'maybe', '2020-06-24 16:56:32', '2025-12-17 19:47:55', 'Qd58nkE4', '3074514'), - (322, 183, 'not_attending', '2020-06-22 17:14:34', '2025-12-17 19:47:58', 'Qd58nkE4', '3075228'), - (322, 185, 'attending', '2020-06-20 00:43:44', '2025-12-17 19:47:58', 'Qd58nkE4', '3075456'), - (322, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'Qd58nkE4', '3083791'), - (322, 187, 'attending', '2020-06-28 17:57:20', '2025-12-17 19:47:55', 'Qd58nkE4', '3085151'), - (322, 190, 'maybe', '2020-06-29 10:34:18', '2025-12-17 19:47:55', 'Qd58nkE4', '3087258'), - (322, 191, 'attending', '2020-07-07 17:13:57', '2025-12-17 19:47:55', 'Qd58nkE4', '3087259'), - (322, 192, 'not_attending', '2020-07-15 18:24:13', '2025-12-17 19:47:55', 'Qd58nkE4', '3087260'), - (322, 193, 'attending', '2020-07-25 20:32:57', '2025-12-17 19:47:55', 'Qd58nkE4', '3087261'), - (322, 194, 'attending', '2020-07-28 12:24:34', '2025-12-17 19:47:56', 'Qd58nkE4', '3087262'), - (322, 195, 'attending', '2020-08-04 22:39:24', '2025-12-17 19:47:56', 'Qd58nkE4', '3087264'), - (322, 196, 'not_attending', '2020-08-03 17:09:55', '2025-12-17 19:47:56', 'Qd58nkE4', '3087265'), - (322, 197, 'attending', '2020-08-20 21:33:30', '2025-12-17 19:47:56', 'Qd58nkE4', '3087266'), - (322, 198, 'not_attending', '2020-08-29 22:38:57', '2025-12-17 19:47:56', 'Qd58nkE4', '3087267'), - (322, 199, 'attending', '2020-09-04 03:53:26', '2025-12-17 19:47:56', 'Qd58nkE4', '3087268'), - (322, 200, 'attending', '2020-08-24 13:37:47', '2025-12-17 19:47:56', 'Qd58nkE4', '3087269'), - (322, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'Qd58nkE4', '3088653'), - (322, 202, 'attending', '2020-06-21 18:56:57', '2025-12-17 19:47:55', 'Qd58nkE4', '3090353'), - (322, 203, 'maybe', '2020-06-22 17:14:29', '2025-12-17 19:47:58', 'Qd58nkE4', '3091624'), - (322, 206, 'maybe', '2020-07-14 00:13:15', '2025-12-17 19:47:55', 'Qd58nkE4', '3104806'), - (322, 207, 'not_attending', '2020-07-24 13:52:17', '2025-12-17 19:47:55', 'Qd58nkE4', '3104807'), - (322, 208, 'maybe', '2020-08-07 00:00:54', '2025-12-17 19:47:56', 'Qd58nkE4', '3104808'), - (322, 209, 'not_attending', '2020-06-29 17:02:30', '2025-12-17 19:47:55', 'Qd58nkE4', '3106813'), - (322, 213, 'not_attending', '2020-07-07 17:14:05', '2025-12-17 19:47:55', 'Qd58nkE4', '3121083'), - (322, 216, 'maybe', '2020-07-09 11:31:31', '2025-12-17 19:47:55', 'Qd58nkE4', '3126500'), - (322, 217, 'maybe', '2020-07-08 00:55:48', '2025-12-17 19:47:55', 'Qd58nkE4', '3126684'), - (322, 223, 'attending', '2020-08-26 17:54:16', '2025-12-17 19:47:56', 'Qd58nkE4', '3129980'), - (322, 225, 'attending', '2020-07-13 18:41:17', '2025-12-17 19:47:55', 'Qd58nkE4', '3132378'), - (322, 226, 'maybe', '2020-07-14 11:08:47', '2025-12-17 19:47:55', 'Qd58nkE4', '3132817'), - (322, 227, 'maybe', '2020-07-16 15:44:16', '2025-12-17 19:47:55', 'Qd58nkE4', '3132820'), - (322, 229, 'attending', '2020-07-15 18:09:10', '2025-12-17 19:47:55', 'Qd58nkE4', '3134135'), - (322, 233, 'attending', '2020-07-19 21:34:37', '2025-12-17 19:47:55', 'Qd58nkE4', '3139773'), - (322, 234, 'not_attending', '2020-07-29 16:59:13', '2025-12-17 19:47:55', 'Qd58nkE4', '3140456'), - (322, 254, 'attending', '2021-03-08 18:33:49', '2025-12-17 19:47:51', 'Qd58nkE4', '3149485'), - (322, 255, 'not_attending', '2021-03-22 12:16:46', '2025-12-17 19:47:43', 'Qd58nkE4', '3149486'), - (322, 264, 'maybe', '2020-08-05 16:48:39', '2025-12-17 19:47:56', 'Qd58nkE4', '3150735'), - (322, 265, 'maybe', '2020-07-27 12:18:18', '2025-12-17 19:47:55', 'Qd58nkE4', '3150806'), - (322, 267, 'maybe', '2020-07-28 18:20:28', '2025-12-17 19:47:55', 'Qd58nkE4', '3152781'), - (322, 269, 'attending', '2020-07-29 10:59:25', '2025-12-17 19:47:55', 'Qd58nkE4', '3153076'), - (322, 270, 'attending', '2020-07-29 15:58:26', '2025-12-17 19:47:56', 'Qd58nkE4', '3154457'), - (322, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'Qd58nkE4', '3155321'), - (322, 273, 'not_attending', '2020-08-07 00:00:44', '2025-12-17 19:47:56', 'Qd58nkE4', '3162006'), - (322, 276, 'maybe', '2020-08-04 13:49:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3163408'), - (322, 277, 'not_attending', '2020-08-06 23:42:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3163442'), - (322, 278, 'maybe', '2020-08-06 12:25:19', '2025-12-17 19:47:56', 'Qd58nkE4', '3165192'), - (322, 279, 'not_attending', '2020-08-06 11:37:39', '2025-12-17 19:47:56', 'Qd58nkE4', '3165202'), - (322, 281, 'maybe', '2020-08-09 17:41:00', '2025-12-17 19:47:56', 'Qd58nkE4', '3166945'), - (322, 285, 'maybe', '2020-08-14 16:27:17', '2025-12-17 19:47:56', 'Qd58nkE4', '3170245'), - (322, 286, 'not_attending', '2020-08-26 13:00:20', '2025-12-17 19:47:56', 'Qd58nkE4', '3170246'), - (322, 288, 'not_attending', '2020-09-02 23:15:34', '2025-12-17 19:47:56', 'Qd58nkE4', '3170249'), - (322, 289, 'not_attending', '2020-09-02 23:15:50', '2025-12-17 19:47:56', 'Qd58nkE4', '3170250'), - (322, 293, 'not_attending', '2020-08-18 13:24:05', '2025-12-17 19:47:56', 'Qd58nkE4', '3172832'), - (322, 294, 'not_attending', '2020-08-18 13:23:51', '2025-12-17 19:47:56', 'Qd58nkE4', '3172833'), - (322, 295, 'not_attending', '2020-08-24 13:37:32', '2025-12-17 19:47:56', 'Qd58nkE4', '3172834'), - (322, 296, 'attending', '2020-09-11 23:10:30', '2025-12-17 19:47:56', 'Qd58nkE4', '3172876'), - (322, 298, 'maybe', '2020-08-27 14:01:25', '2025-12-17 19:47:56', 'Qd58nkE4', '3174556'), - (322, 299, 'maybe', '2020-08-17 16:24:24', '2025-12-17 19:47:56', 'Qd58nkE4', '3176591'), - (322, 301, 'not_attending', '2020-08-25 23:37:14', '2025-12-17 19:47:56', 'Qd58nkE4', '3178027'), - (322, 302, 'not_attending', '2020-08-25 23:37:09', '2025-12-17 19:47:56', 'Qd58nkE4', '3178028'), - (322, 304, 'attending', '2020-08-14 01:09:19', '2025-12-17 19:47:56', 'Qd58nkE4', '3178916'), - (322, 307, 'not_attending', '2020-08-20 09:41:40', '2025-12-17 19:47:56', 'Qd58nkE4', '3182590'), - (322, 308, 'maybe', '2020-09-01 11:34:20', '2025-12-17 19:47:56', 'Qd58nkE4', '3183341'), - (322, 311, 'maybe', '2020-09-19 21:32:07', '2025-12-17 19:47:56', 'Qd58nkE4', '3186057'), - (322, 315, 'maybe', '2020-09-04 03:56:21', '2025-12-17 19:47:56', 'Qd58nkE4', '3189085'), - (322, 317, 'maybe', '2020-08-27 14:01:28', '2025-12-17 19:47:56', 'Qd58nkE4', '3191735'), - (322, 318, 'attending', '2020-09-01 23:41:50', '2025-12-17 19:47:56', 'Qd58nkE4', '3193885'), - (322, 319, 'attending', '2020-08-31 22:19:17', '2025-12-17 19:47:56', 'Qd58nkE4', '3194179'), - (322, 320, 'attending', '2020-08-30 13:17:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3195552'), - (322, 321, 'not_attending', '2020-09-06 21:50:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3197077'), - (322, 322, 'not_attending', '2020-09-09 01:53:17', '2025-12-17 19:47:56', 'Qd58nkE4', '3197080'), - (322, 323, 'not_attending', '2020-09-09 01:53:21', '2025-12-17 19:47:56', 'Qd58nkE4', '3197081'), - (322, 324, 'maybe', '2020-09-02 00:06:02', '2025-12-17 19:47:56', 'Qd58nkE4', '3197082'), - (322, 325, 'maybe', '2020-09-02 00:06:05', '2025-12-17 19:47:51', 'Qd58nkE4', '3197083'), - (322, 326, 'maybe', '2020-09-02 00:06:09', '2025-12-17 19:47:52', 'Qd58nkE4', '3197084'), - (322, 328, 'maybe', '2020-09-02 15:38:15', '2025-12-17 19:47:52', 'Qd58nkE4', '3197086'), - (322, 330, 'attending', '2020-09-04 03:38:12', '2025-12-17 19:47:56', 'Qd58nkE4', '3197322'), - (322, 331, 'not_attending', '2020-09-03 16:09:20', '2025-12-17 19:47:56', 'Qd58nkE4', '3198871'), - (322, 332, 'not_attending', '2020-09-02 23:15:38', '2025-12-17 19:47:56', 'Qd58nkE4', '3198873'), - (322, 335, 'not_attending', '2020-09-02 23:15:56', '2025-12-17 19:47:56', 'Qd58nkE4', '3200209'), - (322, 344, 'not_attending', '2020-11-01 12:14:15', '2025-12-17 19:47:53', 'Qd58nkE4', '3206906'), - (322, 348, 'attending', '2020-09-12 11:00:33', '2025-12-17 19:47:52', 'Qd58nkE4', '3209159'), - (322, 353, 'attending', '2020-09-13 15:13:18', '2025-12-17 19:47:56', 'Qd58nkE4', '3210789'), - (322, 354, 'not_attending', '2020-09-20 18:54:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3212570'), - (322, 357, 'not_attending', '2020-09-30 10:32:30', '2025-12-17 19:47:52', 'Qd58nkE4', '3212573'), - (322, 359, 'attending', '2020-09-13 22:18:14', '2025-12-17 19:47:56', 'Qd58nkE4', '3212624'), - (322, 362, 'maybe', '2020-09-26 21:18:42', '2025-12-17 19:47:52', 'Qd58nkE4', '3214207'), - (322, 363, 'maybe', '2020-09-27 13:44:32', '2025-12-17 19:47:52', 'Qd58nkE4', '3217037'), - (322, 365, 'not_attending', '2020-09-23 22:27:24', '2025-12-17 19:47:52', 'Qd58nkE4', '3218510'), - (322, 379, 'attending', '2020-10-04 19:44:21', '2025-12-17 19:47:52', 'Qd58nkE4', '3226266'), - (322, 382, 'attending', '2020-09-28 03:26:44', '2025-12-17 19:47:52', 'Qd58nkE4', '3226873'), - (322, 385, 'maybe', '2020-09-29 01:58:01', '2025-12-17 19:47:52', 'Qd58nkE4', '3228698'), - (322, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'Qd58nkE4', '3228699'), - (322, 387, 'attending', '2020-10-16 20:42:03', '2025-12-17 19:47:52', 'Qd58nkE4', '3228700'), - (322, 388, 'attending', '2020-10-24 18:45:29', '2025-12-17 19:47:52', 'Qd58nkE4', '3228701'), - (322, 390, 'attending', '2020-10-01 18:07:52', '2025-12-17 19:47:52', 'Qd58nkE4', '3231510'), - (322, 404, 'not_attending', '2021-03-15 09:51:02', '2025-12-17 19:47:51', 'Qd58nkE4', '3236460'), - (322, 406, 'attending', '2021-03-29 16:10:13', '2025-12-17 19:47:44', 'Qd58nkE4', '3236464'), - (322, 414, 'not_attending', '2020-10-18 21:35:36', '2025-12-17 19:47:52', 'Qd58nkE4', '3237277'), - (322, 416, 'attending', '2020-10-06 23:36:14', '2025-12-17 19:47:52', 'Qd58nkE4', '3238073'), - (322, 424, 'maybe', '2020-10-19 21:21:21', '2025-12-17 19:47:52', 'Qd58nkE4', '3245751'), - (322, 426, 'attending', '2020-10-14 13:41:01', '2025-12-17 19:47:52', 'Qd58nkE4', '3250232'), - (322, 427, 'attending', '2020-11-01 12:14:03', '2025-12-17 19:47:53', 'Qd58nkE4', '3250233'), - (322, 429, 'attending', '2020-11-07 01:19:29', '2025-12-17 19:47:54', 'Qd58nkE4', '3250523'), - (322, 440, 'attending', '2020-11-07 23:53:19', '2025-12-17 19:47:53', 'Qd58nkE4', '3256168'), - (322, 441, 'attending', '2020-11-14 16:21:12', '2025-12-17 19:47:54', 'Qd58nkE4', '3256169'), - (322, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'Qd58nkE4', '3263578'), - (322, 445, 'attending', '2020-11-13 00:41:26', '2025-12-17 19:47:54', 'Qd58nkE4', '3266138'), - (322, 449, 'not_attending', '2020-11-08 18:06:45', '2025-12-17 19:47:53', 'Qd58nkE4', '3272055'), - (322, 452, 'attending', '2020-11-29 18:13:53', '2025-12-17 19:47:54', 'Qd58nkE4', '3272981'), - (322, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'Qd58nkE4', '3276428'), - (322, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'Qd58nkE4', '3281467'), - (322, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Qd58nkE4', '3281470'), - (322, 466, 'attending', '2020-11-23 15:01:31', '2025-12-17 19:47:54', 'Qd58nkE4', '3281829'), - (322, 467, 'not_attending', '2020-11-15 14:58:59', '2025-12-17 19:47:54', 'Qd58nkE4', '3282756'), - (322, 468, 'not_attending', '2020-11-21 23:49:05', '2025-12-17 19:47:54', 'Qd58nkE4', '3285413'), - (322, 469, 'attending', '2020-11-29 00:48:41', '2025-12-17 19:47:54', 'Qd58nkE4', '3285414'), - (322, 475, 'not_attending', '2020-11-21 18:47:54', '2025-12-17 19:47:54', 'Qd58nkE4', '3286760'), - (322, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Qd58nkE4', '3297764'), - (322, 485, 'attending', '2020-11-26 21:41:25', '2025-12-17 19:47:54', 'Qd58nkE4', '3299698'), - (322, 486, 'not_attending', '2020-11-25 00:34:28', '2025-12-17 19:47:54', 'Qd58nkE4', '3300281'), - (322, 489, 'attending', '2020-11-27 02:12:12', '2025-12-17 19:47:54', 'Qd58nkE4', '3313022'), - (322, 490, 'not_attending', '2020-12-08 23:15:38', '2025-12-17 19:47:54', 'Qd58nkE4', '3313532'), - (322, 491, 'not_attending', '2020-12-08 23:15:46', '2025-12-17 19:47:55', 'Qd58nkE4', '3313533'), - (322, 493, 'not_attending', '2020-12-05 22:23:33', '2025-12-17 19:47:54', 'Qd58nkE4', '3313856'), - (322, 498, 'attending', '2020-12-05 19:07:14', '2025-12-17 19:47:54', 'Qd58nkE4', '3314302'), - (322, 499, 'attending', '2020-11-30 04:45:36', '2025-12-17 19:47:55', 'Qd58nkE4', '3314909'), - (322, 500, 'not_attending', '2020-12-18 18:05:32', '2025-12-17 19:47:55', 'Qd58nkE4', '3314964'), - (322, 502, 'attending', '2020-12-12 19:50:02', '2025-12-17 19:47:55', 'Qd58nkE4', '3323365'), - (322, 503, 'not_attending', '2020-12-08 23:16:27', '2025-12-17 19:47:55', 'Qd58nkE4', '3323366'), - (322, 506, 'attending', '2020-12-06 21:07:55', '2025-12-17 19:47:55', 'Qd58nkE4', '3323375'), - (322, 512, 'maybe', '2020-12-08 19:21:06', '2025-12-17 19:47:55', 'Qd58nkE4', '3325336'), - (322, 513, 'attending', '2020-12-12 14:26:00', '2025-12-17 19:47:55', 'Qd58nkE4', '3329383'), - (322, 517, 'maybe', '2021-01-07 21:46:48', '2025-12-17 19:47:48', 'Qd58nkE4', '3337137'), - (322, 520, 'attending', '2020-12-19 20:15:39', '2025-12-17 19:47:55', 'Qd58nkE4', '3337453'), - (322, 521, 'not_attending', '2021-01-02 00:50:36', '2025-12-17 19:47:48', 'Qd58nkE4', '3337454'), - (322, 526, 'attending', '2020-12-21 03:18:39', '2025-12-17 19:47:48', 'Qd58nkE4', '3351539'), - (322, 528, 'attending', '2020-12-30 13:24:59', '2025-12-17 19:47:48', 'Qd58nkE4', '3363022'), - (322, 529, 'attending', '2020-12-29 20:36:22', '2025-12-17 19:47:48', 'Qd58nkE4', '3364568'), - (322, 536, 'attending', '2021-01-07 00:13:54', '2025-12-17 19:47:48', 'Qd58nkE4', '3386848'), - (322, 538, 'attending', '2021-01-06 15:30:03', '2025-12-17 19:47:48', 'Qd58nkE4', '3388151'), - (322, 540, 'attending', '2021-01-10 23:50:56', '2025-12-17 19:47:48', 'Qd58nkE4', '3389527'), - (322, 543, 'attending', '2021-01-10 23:48:25', '2025-12-17 19:47:48', 'Qd58nkE4', '3396499'), - (322, 548, 'attending', '2021-01-13 05:46:02', '2025-12-17 19:47:48', 'Qd58nkE4', '3403650'), - (322, 549, 'not_attending', '2021-01-19 01:57:09', '2025-12-17 19:47:49', 'Qd58nkE4', '3406988'), - (322, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Qd58nkE4', '3416576'), - (322, 556, 'not_attending', '2021-01-27 00:55:44', '2025-12-17 19:47:49', 'Qd58nkE4', '3417170'), - (322, 559, 'not_attending', '2021-01-27 12:44:58', '2025-12-17 19:47:49', 'Qd58nkE4', '3421439'), - (322, 568, 'not_attending', '2021-01-30 22:57:17', '2025-12-17 19:47:50', 'Qd58nkE4', '3430267'), - (322, 579, 'not_attending', '2021-02-02 17:39:13', '2025-12-17 19:47:50', 'Qd58nkE4', '3440978'), - (322, 583, 'maybe', '2021-02-07 01:25:30', '2025-12-17 19:47:50', 'Qd58nkE4', '3449144'), - (322, 595, 'attending', '2021-03-04 01:24:34', '2025-12-17 19:47:51', 'Qd58nkE4', '3467761'), - (322, 596, 'attending', '2021-03-04 01:24:40', '2025-12-17 19:47:51', 'Qd58nkE4', '3467762'), - (322, 597, 'attending', '2021-03-04 01:24:41', '2025-12-17 19:47:51', 'Qd58nkE4', '3467764'), - (322, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'Qd58nkE4', '3468125'), - (322, 602, 'not_attending', '2021-02-10 00:49:13', '2025-12-17 19:47:50', 'Qd58nkE4', '3470303'), - (322, 604, 'not_attending', '2021-02-23 03:14:09', '2025-12-17 19:47:50', 'Qd58nkE4', '3470305'), - (322, 605, 'attending', '2021-02-14 18:31:42', '2025-12-17 19:47:50', 'Qd58nkE4', '3470991'), - (322, 621, 'not_attending', '2021-03-01 00:59:11', '2025-12-17 19:47:51', 'Qd58nkE4', '3517815'), - (322, 622, 'attending', '2021-03-12 15:59:55', '2025-12-17 19:47:51', 'Qd58nkE4', '3517816'), - (322, 623, 'not_attending', '2021-02-27 21:45:25', '2025-12-17 19:47:51', 'Qd58nkE4', '3523941'), - (322, 631, 'attending', '2021-03-07 23:37:20', '2025-12-17 19:47:51', 'Qd58nkE4', '3533850'), - (322, 633, 'not_attending', '2021-03-26 21:41:22', '2025-12-17 19:47:44', 'Qd58nkE4', '3534717'), - (322, 637, 'attending', '2021-03-01 17:38:28', '2025-12-17 19:47:51', 'Qd58nkE4', '3536411'), - (322, 638, 'not_attending', '2021-04-04 13:42:27', '2025-12-17 19:47:44', 'Qd58nkE4', '3536632'), - (322, 639, 'attending', '2021-03-20 02:58:33', '2025-12-17 19:47:51', 'Qd58nkE4', '3536656'), - (322, 641, 'not_attending', '2021-04-03 23:25:42', '2025-12-17 19:47:44', 'Qd58nkE4', '3539916'), - (322, 642, 'attending', '2021-04-09 12:43:03', '2025-12-17 19:47:44', 'Qd58nkE4', '3539917'), - (322, 643, 'not_attending', '2021-04-16 15:56:32', '2025-12-17 19:47:45', 'Qd58nkE4', '3539918'), - (322, 644, 'attending', '2021-04-21 14:56:52', '2025-12-17 19:47:45', 'Qd58nkE4', '3539919'), - (322, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Qd58nkE4', '3539920'), - (322, 646, 'not_attending', '2021-05-06 17:39:50', '2025-12-17 19:47:46', 'Qd58nkE4', '3539921'), - (322, 647, 'attending', '2021-05-22 19:57:15', '2025-12-17 19:47:46', 'Qd58nkE4', '3539922'), - (322, 648, 'attending', '2021-05-24 17:30:31', '2025-12-17 19:47:47', 'Qd58nkE4', '3539923'), - (322, 649, 'attending', '2021-03-14 05:10:35', '2025-12-17 19:47:51', 'Qd58nkE4', '3539927'), - (322, 650, 'attending', '2021-03-08 13:33:39', '2025-12-17 19:47:44', 'Qd58nkE4', '3539928'), - (322, 652, 'not_attending', '2021-03-05 20:05:12', '2025-12-17 19:47:51', 'Qd58nkE4', '3544466'), - (322, 655, 'maybe', '2021-03-13 23:29:51', '2025-12-17 19:47:51', 'Qd58nkE4', '3547129'), - (322, 678, 'not_attending', '2021-03-11 13:41:38', '2025-12-17 19:47:51', 'Qd58nkE4', '3547158'), - (322, 679, 'attending', '2021-04-04 19:50:40', '2025-12-17 19:47:44', 'Qd58nkE4', '3547168'), - (322, 688, 'attending', '2021-03-14 05:37:49', '2025-12-17 19:47:51', 'Qd58nkE4', '3553729'), - (322, 689, 'not_attending', '2021-03-25 22:43:44', '2025-12-17 19:47:44', 'Qd58nkE4', '3555564'), - (322, 691, 'not_attending', '2021-04-16 15:56:37', '2025-12-17 19:47:45', 'Qd58nkE4', '3561928'), - (322, 695, 'not_attending', '2021-03-15 00:05:24', '2025-12-17 19:47:51', 'Qd58nkE4', '3567535'), - (322, 696, 'not_attending', '2021-03-15 00:05:29', '2025-12-17 19:47:51', 'Qd58nkE4', '3567536'), - (322, 697, 'not_attending', '2021-03-29 11:37:37', '2025-12-17 19:47:44', 'Qd58nkE4', '3567537'), - (322, 698, 'attending', '2021-03-15 18:27:39', '2025-12-17 19:47:44', 'Qd58nkE4', '3571867'), - (322, 699, 'attending', '2021-03-19 13:16:21', '2025-12-17 19:47:44', 'Qd58nkE4', '3572241'), - (322, 700, 'not_attending', '2021-03-29 16:10:09', '2025-12-17 19:47:44', 'Qd58nkE4', '3575725'), - (322, 701, 'attending', '2021-03-18 21:10:04', '2025-12-17 19:47:51', 'Qd58nkE4', '3577180'), - (322, 702, 'attending', '2021-03-19 00:07:33', '2025-12-17 19:47:51', 'Qd58nkE4', '3577181'), - (322, 703, 'attending', '2021-03-19 15:03:12', '2025-12-17 19:47:44', 'Qd58nkE4', '3578388'), - (322, 704, 'not_attending', '2021-03-29 21:49:40', '2025-12-17 19:47:44', 'Qd58nkE4', '3581429'), - (322, 705, 'attending', '2021-03-21 13:26:23', '2025-12-17 19:47:44', 'Qd58nkE4', '3581895'), - (322, 706, 'not_attending', '2021-03-22 10:40:39', '2025-12-17 19:47:45', 'Qd58nkE4', '3582734'), - (322, 707, 'attending', '2021-04-25 19:14:17', '2025-12-17 19:47:46', 'Qd58nkE4', '3583262'), - (322, 709, 'attending', '2021-03-22 10:40:11', '2025-12-17 19:47:44', 'Qd58nkE4', '3587852'), - (322, 710, 'attending', '2021-03-22 10:40:16', '2025-12-17 19:47:44', 'Qd58nkE4', '3587853'), - (322, 716, 'not_attending', '2021-04-02 20:52:49', '2025-12-17 19:47:44', 'Qd58nkE4', '3618353'), - (322, 717, 'not_attending', '2021-03-28 10:55:31', '2025-12-17 19:47:44', 'Qd58nkE4', '3619523'), - (322, 721, 'not_attending', '2021-04-03 17:49:02', '2025-12-17 19:47:44', 'Qd58nkE4', '3643622'), - (322, 723, 'not_attending', '2021-04-05 22:42:45', '2025-12-17 19:47:44', 'Qd58nkE4', '3649179'), - (322, 724, 'not_attending', '2021-05-09 21:07:20', '2025-12-17 19:47:46', 'Qd58nkE4', '3661369'), - (322, 731, 'not_attending', '2021-04-04 02:04:56', '2025-12-17 19:47:44', 'Qd58nkE4', '3674262'), - (322, 732, 'attending', '2021-04-04 02:08:47', '2025-12-17 19:47:45', 'Qd58nkE4', '3674268'), - (322, 735, 'attending', '2021-04-05 00:20:56', '2025-12-17 19:47:46', 'Qd58nkE4', '3677402'), - (322, 754, 'not_attending', '2021-04-21 16:20:32', '2025-12-17 19:47:45', 'Qd58nkE4', '3701863'), - (322, 761, 'not_attending', '2021-04-28 10:00:14', '2025-12-17 19:47:46', 'Qd58nkE4', '3716041'), - (322, 763, 'not_attending', '2021-04-26 00:19:27', '2025-12-17 19:47:46', 'Qd58nkE4', '3719122'), - (322, 774, 'not_attending', '2021-04-21 16:21:13', '2025-12-17 19:47:45', 'Qd58nkE4', '3730212'), - (322, 777, 'attending', '2021-05-01 19:08:00', '2025-12-17 19:47:46', 'Qd58nkE4', '3746248'), - (322, 780, 'not_attending', '2021-05-09 21:07:09', '2025-12-17 19:47:46', 'Qd58nkE4', '3757175'), - (322, 783, 'not_attending', '2021-05-03 17:19:01', '2025-12-17 19:47:46', 'Qd58nkE4', '3767471'), - (322, 784, 'attending', '2021-05-01 15:10:07', '2025-12-17 19:47:46', 'Qd58nkE4', '3768775'), - (322, 785, 'not_attending', '2021-05-16 12:20:59', '2025-12-17 19:47:46', 'Qd58nkE4', '3779779'), - (322, 786, 'not_attending', '2021-05-10 16:42:33', '2025-12-17 19:47:46', 'Qd58nkE4', '3780093'), - (322, 788, 'maybe', '2021-05-05 12:02:01', '2025-12-17 19:47:46', 'Qd58nkE4', '3781975'), - (322, 791, 'attending', '2021-05-07 15:41:15', '2025-12-17 19:47:46', 'Qd58nkE4', '3792735'), - (322, 792, 'attending', '2021-05-09 02:09:02', '2025-12-17 19:47:46', 'Qd58nkE4', '3793156'), - (322, 793, 'not_attending', '2021-05-29 11:25:50', '2025-12-17 19:47:47', 'Qd58nkE4', '3793537'), - (322, 794, 'attending', '2021-05-20 16:17:44', '2025-12-17 19:47:47', 'Qd58nkE4', '3793538'), - (322, 795, 'not_attending', '2021-05-29 11:25:56', '2025-12-17 19:47:47', 'Qd58nkE4', '3793539'), - (322, 797, 'not_attending', '2021-05-23 21:19:39', '2025-12-17 19:47:47', 'Qd58nkE4', '3796195'), - (322, 822, 'not_attending', '2021-06-04 00:29:10', '2025-12-17 19:47:47', 'Qd58nkE4', '3969986'), - (322, 823, 'attending', '2021-06-01 22:22:40', '2025-12-17 19:47:48', 'Qd58nkE4', '3974109'), - (322, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Qd58nkE4', '3975311'), - (322, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Qd58nkE4', '3975312'), - (322, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Qd58nkE4', '3994992'), - (322, 844, 'attending', '2021-06-23 19:32:23', '2025-12-17 19:47:38', 'Qd58nkE4', '4014338'), - (322, 867, 'attending', '2021-06-21 13:40:24', '2025-12-17 19:47:38', 'Qd58nkE4', '4021848'), - (322, 869, 'not_attending', '2021-06-30 12:23:22', '2025-12-17 19:47:38', 'Qd58nkE4', '4136744'), - (322, 870, 'not_attending', '2021-07-03 22:44:08', '2025-12-17 19:47:39', 'Qd58nkE4', '4136937'), - (322, 871, 'attending', '2021-07-05 14:16:55', '2025-12-17 19:47:39', 'Qd58nkE4', '4136938'), - (322, 872, 'attending', '2021-07-21 12:49:01', '2025-12-17 19:47:40', 'Qd58nkE4', '4136947'), - (322, 884, 'attending', '2021-08-15 19:00:11', '2025-12-17 19:47:42', 'Qd58nkE4', '4210314'), - (322, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Qd58nkE4', '4225444'), - (322, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Qd58nkE4', '4239259'), - (322, 900, 'attending', '2021-07-14 12:05:07', '2025-12-17 19:47:40', 'Qd58nkE4', '4240316'), - (322, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Qd58nkE4', '4240317'), - (322, 902, 'maybe', '2021-08-02 11:20:16', '2025-12-17 19:47:41', 'Qd58nkE4', '4240318'), - (322, 903, 'attending', '2021-08-07 11:53:37', '2025-12-17 19:47:42', 'Qd58nkE4', '4240320'), - (322, 905, 'maybe', '2021-07-07 18:01:50', '2025-12-17 19:47:39', 'Qd58nkE4', '4250163'), - (322, 906, 'attending', '2021-07-11 02:26:08', '2025-12-17 19:47:39', 'Qd58nkE4', '4253431'), - (322, 915, 'maybe', '2021-07-14 12:06:30', '2025-12-17 19:47:39', 'Qd58nkE4', '4273770'), - (322, 919, 'maybe', '2021-07-14 12:04:32', '2025-12-17 19:47:39', 'Qd58nkE4', '4275957'), - (322, 920, 'not_attending', '2021-07-25 21:38:25', '2025-12-17 19:47:40', 'Qd58nkE4', '4277819'), - (322, 932, 'not_attending', '2021-08-16 10:00:29', '2025-12-17 19:47:42', 'Qd58nkE4', '4301664'), - (322, 933, 'not_attending', '2021-07-28 22:53:31', '2025-12-17 19:47:40', 'Qd58nkE4', '4301723'), - (322, 934, 'not_attending', '2021-08-03 11:34:30', '2025-12-17 19:47:41', 'Qd58nkE4', '4302093'), - (322, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Qd58nkE4', '4304151'), - (322, 940, 'attending', '2021-07-30 17:09:55', '2025-12-17 19:47:40', 'Qd58nkE4', '4309049'), - (322, 962, 'attending', '2021-08-12 01:27:54', '2025-12-17 19:47:41', 'Qd58nkE4', '4346305'), - (322, 965, 'not_attending', '2021-08-19 14:00:46', '2025-12-17 19:47:42', 'Qd58nkE4', '4353703'), - (322, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Qd58nkE4', '4356801'), - (322, 973, 'not_attending', '2021-08-21 18:31:46', '2025-12-17 19:47:42', 'Qd58nkE4', '4366186'), - (322, 974, 'attending', '2021-08-27 21:08:52', '2025-12-17 19:47:42', 'Qd58nkE4', '4366187'), - (322, 987, 'attending', '2021-08-25 00:46:12', '2025-12-17 19:47:43', 'Qd58nkE4', '4402634'), - (322, 988, 'attending', '2021-08-24 09:12:05', '2025-12-17 19:47:42', 'Qd58nkE4', '4402823'), - (322, 990, 'not_attending', '2021-09-01 13:16:09', '2025-12-17 19:47:43', 'Qd58nkE4', '4420735'), - (322, 991, 'attending', '2021-09-10 13:40:18', '2025-12-17 19:47:43', 'Qd58nkE4', '4420738'), - (322, 992, 'not_attending', '2021-09-18 19:57:28', '2025-12-17 19:47:34', 'Qd58nkE4', '4420739'), - (322, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Qd58nkE4', '4420741'), - (322, 995, 'not_attending', '2021-10-09 22:06:37', '2025-12-17 19:47:34', 'Qd58nkE4', '4420744'), - (322, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Qd58nkE4', '4420747'), - (322, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Qd58nkE4', '4420748'), - (322, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Qd58nkE4', '4420749'), - (322, 1022, 'attending', '2021-09-10 11:46:32', '2025-12-17 19:47:43', 'Qd58nkE4', '4458628'), - (322, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Qd58nkE4', '4461883'), - (322, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Qd58nkE4', '4508342'), - (322, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Qd58nkE4', '4568602'), - (322, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Qd58nkE4', '4572153'), - (322, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Qd58nkE4', '4585962'), - (322, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Qd58nkE4', '4596356'), - (322, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Qd58nkE4', '4598860'), - (322, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Qd58nkE4', '4598861'), - (322, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Qd58nkE4', '4602797'), - (322, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Qd58nkE4', '4637896'), - (322, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Qd58nkE4', '4642994'), - (322, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Qd58nkE4', '4642995'), - (322, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Qd58nkE4', '4642996'), - (322, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Qd58nkE4', '4642997'), - (322, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Qd58nkE4', '4645687'), - (322, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Qd58nkE4', '4645698'), - (322, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Qd58nkE4', '4645704'), - (322, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Qd58nkE4', '4645705'), - (322, 1131, 'attending', '2021-12-18 21:14:29', '2025-12-17 19:47:31', 'Qd58nkE4', '4658825'), - (322, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Qd58nkE4', '4668385'), - (322, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Qd58nkE4', '4694407'), - (322, 1374, 'attending', '2022-05-02 16:07:39', '2025-12-17 19:47:28', 'Qd58nkE4', '5269930'), - (322, 1378, 'attending', '2022-05-14 22:31:54', '2025-12-17 19:47:29', 'Qd58nkE4', '5271448'), - (322, 1379, 'attending', '2022-05-06 20:54:53', '2025-12-17 19:47:29', 'Qd58nkE4', '5271449'), - (322, 1380, 'not_attending', '2022-05-24 23:10:48', '2025-12-17 19:47:30', 'Qd58nkE4', '5271450'), - (322, 1383, 'not_attending', '2022-05-12 23:07:42', '2025-12-17 19:47:28', 'Qd58nkE4', '5276469'), - (322, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Qd58nkE4', '5278159'), - (322, 1407, 'attending', '2022-05-15 21:16:53', '2025-12-17 19:47:30', 'Qd58nkE4', '5363695'), - (322, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Qd58nkE4', '5365960'), - (322, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'Qd58nkE4', '5368973'), - (322, 1419, 'attending', '2022-05-22 13:43:39', '2025-12-17 19:47:30', 'Qd58nkE4', '5373081'), - (322, 1427, 'not_attending', '2022-05-25 22:56:22', '2025-12-17 19:47:30', 'Qd58nkE4', '5376074'), - (322, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Qd58nkE4', '5378247'), - (322, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Qd58nkE4', '5389605'), - (322, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Qd58nkE4', '5397265'), - (322, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'Qd58nkE4', '5403967'), - (322, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Qd58nkE4', '5404786'), - (322, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Qd58nkE4', '5405203'), - (322, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'Qd58nkE4', '5408794'), - (322, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'Qd58nkE4', '5411699'), - (322, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Qd58nkE4', '5412550'), - (322, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Qd58nkE4', '5415046'), - (322, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Qd58nkE4', '5422086'), - (322, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Qd58nkE4', '5422406'), - (322, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Qd58nkE4', '5424565'), - (322, 1504, 'maybe', '2022-07-12 10:43:15', '2025-12-17 19:47:19', 'Qd58nkE4', '5426882'), - (322, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'Qd58nkE4', '5427083'), - (322, 1513, 'attending', '2022-07-12 10:43:05', '2025-12-17 19:47:19', 'Qd58nkE4', '5441125'), - (322, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Qd58nkE4', '5441126'), - (322, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Qd58nkE4', '5441128'), - (322, 1516, 'not_attending', '2022-08-12 02:32:35', '2025-12-17 19:47:23', 'Qd58nkE4', '5441129'), - (322, 1518, 'maybe', '2022-08-26 07:39:33', '2025-12-17 19:47:24', 'Qd58nkE4', '5441131'), - (322, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Qd58nkE4', '5441132'), - (322, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'Qd58nkE4', '5446643'), - (322, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Qd58nkE4', '5453325'), - (322, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Qd58nkE4', '5454516'), - (322, 1544, 'maybe', '2022-09-12 09:34:54', '2025-12-17 19:47:11', 'Qd58nkE4', '5454517'), - (322, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Qd58nkE4', '5454605'), - (322, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Qd58nkE4', '5455037'), - (322, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Qd58nkE4', '5461278'), - (322, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Qd58nkE4', '5469480'), - (322, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'Qd58nkE4', '5471073'), - (322, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Qd58nkE4', '5474663'), - (322, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Qd58nkE4', '5482022'), - (322, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'Qd58nkE4', '5482793'), - (322, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Qd58nkE4', '5488912'), - (322, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Qd58nkE4', '5492192'), - (322, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Qd58nkE4', '5493139'), - (322, 1589, 'maybe', '2022-08-18 19:12:51', '2025-12-17 19:47:23', 'Qd58nkE4', '5493159'), - (322, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Qd58nkE4', '5493200'), - (322, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Qd58nkE4', '5502188'), - (322, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Qd58nkE4', '5505059'), - (322, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Qd58nkE4', '5509055'), - (322, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Qd58nkE4', '5512862'), - (322, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Qd58nkE4', '5513985'), - (322, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'Qd58nkE4', '5519981'), - (322, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Qd58nkE4', '5522550'), - (322, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Qd58nkE4', '5534683'), - (322, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Qd58nkE4', '5537735'), - (322, 1636, 'attending', '2022-08-29 20:08:15', '2025-12-17 19:47:24', 'Qd58nkE4', '5538454'), - (322, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Qd58nkE4', '5540859'), - (322, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Qd58nkE4', '5546619'), - (322, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'Qd58nkE4', '5555245'), - (322, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Qd58nkE4', '5557747'), - (322, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Qd58nkE4', '5560255'), - (322, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Qd58nkE4', '5562906'), - (322, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Qd58nkE4', '5600604'), - (322, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Qd58nkE4', '5605544'), - (322, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'Qd58nkE4', '5606737'), - (322, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Qd58nkE4', '5630960'), - (322, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Qd58nkE4', '5630961'), - (322, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Qd58nkE4', '5630962'), - (322, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Qd58nkE4', '5630966'), - (322, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Qd58nkE4', '5630967'), - (322, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Qd58nkE4', '5630968'), - (322, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Qd58nkE4', '5635406'), - (322, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Qd58nkE4', '5638765'), - (322, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Qd58nkE4', '5640097'), - (322, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Qd58nkE4', '5640843'), - (322, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Qd58nkE4', '5641521'), - (322, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Qd58nkE4', '5642818'), - (322, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Qd58nkE4', '5652395'), - (322, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Qd58nkE4', '5670445'), - (322, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Qd58nkE4', '5671637'), - (322, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Qd58nkE4', '5672329'), - (322, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Qd58nkE4', '5674057'), - (322, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Qd58nkE4', '5674060'), - (322, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'Qd58nkE4', '5677461'), - (322, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Qd58nkE4', '5698046'), - (322, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Qd58nkE4', '5699760'), - (322, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Qd58nkE4', '5741601'), - (322, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Qd58nkE4', '5763458'), - (322, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Qd58nkE4', '5774172'), - (322, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'Qd58nkE4', '5818247'), - (322, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Qd58nkE4', '5819471'), - (322, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'Qd58nkE4', '5827739'), - (322, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Qd58nkE4', '5844306'), - (322, 1847, 'maybe', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Qd58nkE4', '5850159'), - (322, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Qd58nkE4', '5858999'), - (322, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Qd58nkE4', '5871984'), - (322, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Qd58nkE4', '5876354'), - (322, 1864, 'attending', '2023-01-21 06:19:59', '2025-12-17 19:47:05', 'Qd58nkE4', '5879675'), - (322, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Qd58nkE4', '5880939'), - (322, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Qd58nkE4', '5887890'), - (322, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Qd58nkE4', '5888598'), - (322, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Qd58nkE4', '5893260'), - (322, 1946, 'not_attending', '2023-03-12 18:35:36', '2025-12-17 19:46:56', 'Qd58nkE4', '5962134'), - (322, 1978, 'attending', '2023-04-01 22:15:45', '2025-12-17 19:46:58', 'Qd58nkE4', '6028191'), - (322, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd58nkE4', '6045684'), - (322, 2013, 'maybe', '2023-04-14 21:38:12', '2025-12-17 19:46:59', 'Qd58nkE4', '6060328'), - (322, 2031, 'attending', '2023-05-23 07:23:47', '2025-12-17 19:47:03', 'Qd58nkE4', '6068280'), - (322, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Qd58nkE4', '6164417'), - (322, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Qd58nkE4', '6166388'), - (322, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Qd58nkE4', '6176439'), - (322, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Qd58nkE4', '6182410'), - (322, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Qd58nkE4', '6185812'), - (322, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Qd58nkE4', '6187651'), - (322, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Qd58nkE4', '6187963'), - (322, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Qd58nkE4', '6187964'), - (322, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Qd58nkE4', '6187966'), - (322, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Qd58nkE4', '6187967'), - (322, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Qd58nkE4', '6187969'), - (322, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Qd58nkE4', '6334878'), - (322, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Qd58nkE4', '6337236'), - (322, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Qd58nkE4', '6337970'), - (322, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Qd58nkE4', '6338308'), - (322, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Qd58nkE4', '6341710'), - (322, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Qd58nkE4', '6342044'), - (322, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Qd58nkE4', '6342298'), - (322, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Qd58nkE4', '6343294'), - (322, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Qd58nkE4', '6347034'), - (322, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Qd58nkE4', '6347056'), - (322, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Qd58nkE4', '6353830'), - (322, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Qd58nkE4', '6353831'), - (322, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Qd58nkE4', '6357867'), - (322, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Qd58nkE4', '6358652'), - (322, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Qd58nkE4', '6361709'), - (322, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Qd58nkE4', '6361710'), - (322, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Qd58nkE4', '6361711'), - (322, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Qd58nkE4', '6361712'), - (322, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Qd58nkE4', '6361713'), - (322, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'Qd58nkE4', '6382573'), - (322, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Qd58nkE4', '6388604'), - (322, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Qd58nkE4', '6394629'), - (322, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Qd58nkE4', '6394631'), - (322, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Qd58nkE4', '6440863'), - (322, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Qd58nkE4', '6445440'), - (322, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Qd58nkE4', '6453951'), - (322, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Qd58nkE4', '6461696'), - (322, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Qd58nkE4', '6462129'), - (322, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Qd58nkE4', '6463218'), - (322, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Qd58nkE4', '6472181'), - (322, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Qd58nkE4', '6482693'), - (322, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Qd58nkE4', '6484200'), - (322, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Qd58nkE4', '6484680'), - (322, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Qd58nkE4', '6507741'), - (322, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Qd58nkE4', '6514659'), - (322, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Qd58nkE4', '6514660'), - (322, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Qd58nkE4', '6519103'), - (322, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Qd58nkE4', '6535681'), - (322, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Qd58nkE4', '6584747'), - (322, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Qd58nkE4', '6587097'), - (322, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Qd58nkE4', '6609022'), - (322, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'Qd58nkE4', '6632757'), - (322, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Qd58nkE4', '6644187'), - (322, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Qd58nkE4', '6648951'), - (322, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Qd58nkE4', '6648952'), - (322, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Qd58nkE4', '6655401'), - (322, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Qd58nkE4', '6661585'), - (322, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Qd58nkE4', '6661588'), - (322, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Qd58nkE4', '6661589'), - (322, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Qd58nkE4', '6699906'), - (322, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Qd58nkE4', '6699913'), - (322, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Qd58nkE4', '6701109'), - (322, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Qd58nkE4', '6705219'), - (322, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Qd58nkE4', '6710153'), - (322, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Qd58nkE4', '6711552'), - (322, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'Qd58nkE4', '6711553'), - (322, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Qd58nkE4', '6722688'), - (322, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Qd58nkE4', '6730620'), - (322, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Qd58nkE4', '6740364'), - (322, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Qd58nkE4', '6743829'), - (322, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Qd58nkE4', '7030380'), - (322, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'Qd58nkE4', '7033677'), - (322, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Qd58nkE4', '7044715'), - (322, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Qd58nkE4', '7050318'), - (322, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Qd58nkE4', '7050319'), - (322, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Qd58nkE4', '7050322'), - (322, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Qd58nkE4', '7057804'), - (322, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Qd58nkE4', '7072824'), - (322, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Qd58nkE4', '7074348'), - (322, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Qd58nkE4', '7074364'), - (322, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Qd58nkE4', '7089267'), - (322, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Qd58nkE4', '7098747'), - (322, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Qd58nkE4', '7113468'), - (322, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Qd58nkE4', '7114856'), - (322, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Qd58nkE4', '7114951'), - (322, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Qd58nkE4', '7114955'), - (322, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Qd58nkE4', '7114956'), - (322, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Qd58nkE4', '7114957'), - (322, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Qd58nkE4', '7159484'), - (322, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Qd58nkE4', '7178446'), - (322, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'Qd58nkE4', '7220467'), - (322, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Qd58nkE4', '7240354'), - (322, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Qd58nkE4', '7251633'), - (322, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Qd58nkE4', '7324073'), - (322, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Qd58nkE4', '7324074'), - (322, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Qd58nkE4', '7324075'), - (322, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Qd58nkE4', '7324078'), - (322, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Qd58nkE4', '7324082'), - (322, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Qd58nkE4', '7331457'), - (322, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Qd58nkE4', '7363643'), - (322, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Qd58nkE4', '7368606'), - (322, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Qd58nkE4', '7397462'), - (322, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Qd58nkE4', '7424275'), - (322, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Qd58nkE4', '7432751'), - (322, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Qd58nkE4', '7432752'), - (322, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Qd58nkE4', '7432753'), - (322, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Qd58nkE4', '7432754'), - (322, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Qd58nkE4', '7432755'), - (322, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Qd58nkE4', '7432756'), - (322, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Qd58nkE4', '7432758'), - (322, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Qd58nkE4', '7432759'), - (322, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Qd58nkE4', '7433834'), - (322, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'Qd58nkE4', '7470197'), - (322, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Qd58nkE4', '7685613'), - (322, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Qd58nkE4', '7688194'), - (322, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Qd58nkE4', '7688196'), - (322, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Qd58nkE4', '7688289'), - (322, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Qd58nkE4', '7692763'), - (322, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Qd58nkE4', '7697552'), - (322, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Qd58nkE4', '7699878'), - (322, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'Qd58nkE4', '7704043'), - (322, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Qd58nkE4', '7712467'), - (322, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Qd58nkE4', '7713585'), - (322, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Qd58nkE4', '7713586'), - (322, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Qd58nkE4', '7738518'), - (322, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Qd58nkE4', '7750636'), - (322, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Qd58nkE4', '7796540'), - (322, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Qd58nkE4', '7796541'), - (322, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Qd58nkE4', '7796542'), - (322, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Qd58nkE4', '7825913'), - (322, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Qd58nkE4', '7826209'), - (322, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Qd58nkE4', '7834742'), - (322, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Qd58nkE4', '7842108'), - (322, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Qd58nkE4', '7842902'), - (322, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Qd58nkE4', '7842903'), - (322, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Qd58nkE4', '7842904'), - (322, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Qd58nkE4', '7842905'), - (322, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Qd58nkE4', '7855719'), - (322, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Qd58nkE4', '7860683'), - (322, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Qd58nkE4', '7860684'), - (322, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Qd58nkE4', '7866095'), - (322, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Qd58nkE4', '7869170'), - (322, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Qd58nkE4', '7869188'), - (322, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Qd58nkE4', '7869201'), - (322, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Qd58nkE4', '7877465'), - (322, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Qd58nkE4', '7888250'), - (322, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Qd58nkE4', '7904777'), - (322, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Qd58nkE4', '8349164'), - (322, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Qd58nkE4', '8349545'), - (322, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Qd58nkE4', '8368028'), - (322, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Qd58nkE4', '8368029'), - (322, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Qd58nkE4', '8388462'), - (322, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Qd58nkE4', '8400273'), - (322, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Qd58nkE4', '8400275'), - (322, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'Qd58nkE4', '8400276'), - (322, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Qd58nkE4', '8404977'), - (322, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Qd58nkE4', '8430783'), - (322, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Qd58nkE4', '8430784'), - (322, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Qd58nkE4', '8430799'), - (322, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Qd58nkE4', '8430800'), - (322, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Qd58nkE4', '8430801'), - (322, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Qd58nkE4', '8438709'), - (322, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Qd58nkE4', '8457738'), - (322, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Qd58nkE4', '8459566'), - (322, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Qd58nkE4', '8459567'), - (322, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Qd58nkE4', '8461032'), - (322, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Qd58nkE4', '8477877'), - (322, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Qd58nkE4', '8485688'), - (322, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Qd58nkE4', '8490587'), - (322, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Qd58nkE4', '8493552'), - (322, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Qd58nkE4', '8493553'), - (322, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Qd58nkE4', '8493554'), - (322, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Qd58nkE4', '8493555'), - (322, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Qd58nkE4', '8493556'), - (322, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Qd58nkE4', '8493557'), - (322, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Qd58nkE4', '8493558'), - (322, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Qd58nkE4', '8493559'), - (322, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Qd58nkE4', '8493560'), - (322, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'Qd58nkE4', '8493561'), - (322, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Qd58nkE4', '8493572'), - (322, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Qd58nkE4', '8540725'), - (322, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Qd58nkE4', '8555421'), - (323, 1868, 'maybe', '2023-02-21 17:24:22', '2025-12-17 19:47:07', '0mqrMqXA', '5880942'), - (323, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '0mqrMqXA', '5880943'), - (323, 1885, 'attending', '2023-02-24 08:52:44', '2025-12-17 19:47:08', '0mqrMqXA', '5899928'), - (323, 1888, 'attending', '2023-02-17 04:51:18', '2025-12-17 19:47:07', '0mqrMqXA', '5900197'), - (323, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '0mqrMqXA', '5900200'), - (323, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '0mqrMqXA', '5900202'), - (323, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '0mqrMqXA', '5900203'), - (323, 1908, 'attending', '2023-02-16 04:15:28', '2025-12-17 19:47:07', '0mqrMqXA', '5905018'), - (323, 1912, 'not_attending', '2023-02-16 04:16:30', '2025-12-17 19:47:07', '0mqrMqXA', '5909808'), - (323, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '0mqrMqXA', '5910526'), - (323, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '0mqrMqXA', '5910528'), - (323, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '0mqrMqXA', '5916219'), - (323, 1924, 'maybe', '2023-02-18 00:22:29', '2025-12-17 19:47:07', '0mqrMqXA', '5931095'), - (323, 1925, 'attending', '2023-02-23 07:49:21', '2025-12-17 19:47:08', '0mqrMqXA', '5932619'), - (323, 1926, 'maybe', '2023-03-02 09:03:40', '2025-12-17 19:47:08', '0mqrMqXA', '5932620'), - (323, 1928, 'maybe', '2023-02-18 00:22:33', '2025-12-17 19:47:07', '0mqrMqXA', '5932627'), - (323, 1930, 'attending', '2023-02-22 07:02:40', '2025-12-17 19:47:08', '0mqrMqXA', '5933462'), - (323, 1931, 'attending', '2023-02-22 07:02:42', '2025-12-17 19:47:08', '0mqrMqXA', '5933464'), - (323, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '0mqrMqXA', '5936234'), - (323, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '0mqrMqXA', '5958351'), - (323, 1936, 'attending', '2023-02-23 18:10:03', '2025-12-17 19:47:08', '0mqrMqXA', '5959397'), - (323, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '0mqrMqXA', '5959751'), - (323, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '0mqrMqXA', '5959755'), - (323, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '0mqrMqXA', '5960055'), - (323, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '0mqrMqXA', '5961684'), - (323, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '0mqrMqXA', '5962132'), - (323, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '0mqrMqXA', '5962133'), - (323, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '0mqrMqXA', '5962134'), - (323, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '0mqrMqXA', '5962317'), - (323, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '0mqrMqXA', '5962318'), - (323, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '0mqrMqXA', '5965933'), - (323, 1952, 'maybe', '2023-03-02 09:03:35', '2025-12-17 19:47:08', '0mqrMqXA', '5965937'), - (323, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '0mqrMqXA', '5967014'), - (323, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '0mqrMqXA', '5972815'), - (323, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '0mqrMqXA', '5974016'), - (323, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '0mqrMqXA', '5981515'), - (323, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '0mqrMqXA', '5993516'), - (323, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '0mqrMqXA', '5998939'), - (323, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '0mqrMqXA', '6028191'), - (323, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '0mqrMqXA', '6040066'), - (323, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '0mqrMqXA', '6042717'), - (323, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '0mqrMqXA', '6044838'), - (323, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '0mqrMqXA', '6044839'), - (323, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqrMqXA', '6045684'), - (323, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '0mqrMqXA', '6050104'), - (323, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '0mqrMqXA', '6053195'), - (323, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '0mqrMqXA', '6053198'), - (323, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '0mqrMqXA', '6056085'), - (323, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '0mqrMqXA', '6056916'), - (323, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '0mqrMqXA', '6059290'), - (323, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '0mqrMqXA', '6060328'), - (323, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '0mqrMqXA', '6061037'), - (323, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '0mqrMqXA', '6061039'), - (323, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '0mqrMqXA', '6067245'), - (323, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '0mqrMqXA', '6068094'), - (323, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '0mqrMqXA', '6068252'), - (323, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '0mqrMqXA', '6068253'), - (323, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '0mqrMqXA', '6068254'), - (323, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '0mqrMqXA', '6068280'), - (323, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '0mqrMqXA', '6069093'), - (323, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '0mqrMqXA', '6072528'), - (323, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '0mqrMqXA', '6079840'), - (323, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '0mqrMqXA', '6083398'), - (323, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '0mqrMqXA', '6093504'), - (323, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '0mqrMqXA', '6097414'), - (323, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '0mqrMqXA', '6097442'), - (323, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '0mqrMqXA', '6097684'), - (323, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '0mqrMqXA', '6098762'), - (323, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '0mqrMqXA', '6101361'), - (323, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '0mqrMqXA', '6101362'), - (323, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '0mqrMqXA', '6103752'), - (323, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '0mqrMqXA', '6107314'), - (323, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '0mqrMqXA', '6120034'), - (323, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '0mqrMqXA', '6136733'), - (323, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '0mqrMqXA', '6137989'), - (323, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '0mqrMqXA', '6150864'), - (323, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '0mqrMqXA', '6155491'), - (323, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '0mqrMqXA', '6164417'), - (323, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '0mqrMqXA', '6166388'), - (323, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '0mqrMqXA', '6176439'), - (323, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '0mqrMqXA', '6182410'), - (323, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '0mqrMqXA', '6185812'), - (323, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '0mqrMqXA', '6187651'), - (323, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '0mqrMqXA', '6187963'), - (323, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '0mqrMqXA', '6187964'), - (323, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '0mqrMqXA', '6187966'), - (323, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '0mqrMqXA', '6187967'), - (323, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '0mqrMqXA', '6187969'), - (323, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '0mqrMqXA', '6334878'), - (323, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '0mqrMqXA', '6337236'), - (323, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '0mqrMqXA', '6337970'), - (323, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '0mqrMqXA', '6338308'), - (323, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '0mqrMqXA', '6340845'), - (323, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '0mqrMqXA', '6341710'), - (323, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '0mqrMqXA', '6342044'), - (323, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '0mqrMqXA', '6342298'), - (323, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '0mqrMqXA', '6343294'), - (323, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '0mqrMqXA', '6347034'), - (323, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '0mqrMqXA', '6347056'), - (323, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '0mqrMqXA', '6353830'), - (323, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '0mqrMqXA', '6353831'), - (323, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '0mqrMqXA', '6357867'), - (323, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '0mqrMqXA', '6358652'), - (323, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '0mqrMqXA', '6361709'), - (323, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '0mqrMqXA', '6361710'), - (323, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '0mqrMqXA', '6361711'), - (323, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '0mqrMqXA', '6361712'), - (323, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '0mqrMqXA', '6361713'), - (323, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '0mqrMqXA', '6382573'), - (323, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '0mqrMqXA', '6388604'), - (323, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '0mqrMqXA', '6394629'), - (323, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '0mqrMqXA', '6394631'), - (323, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '0mqrMqXA', '6440863'), - (323, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '0mqrMqXA', '6445440'), - (323, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '0mqrMqXA', '6453951'), - (323, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '0mqrMqXA', '6461696'), - (323, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '0mqrMqXA', '6462129'), - (323, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '0mqrMqXA', '6463218'), - (323, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '0mqrMqXA', '6472181'), - (323, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '0mqrMqXA', '6482693'), - (323, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '0mqrMqXA', '6484200'), - (323, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '0mqrMqXA', '6484680'), - (323, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '0mqrMqXA', '6507741'), - (323, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '0mqrMqXA', '6514659'), - (323, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '0mqrMqXA', '6514660'), - (323, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '0mqrMqXA', '6519103'), - (323, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '0mqrMqXA', '6535681'), - (323, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '0mqrMqXA', '6584747'), - (323, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '0mqrMqXA', '6587097'), - (323, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '0mqrMqXA', '6609022'), - (323, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '0mqrMqXA', '6632757'), - (323, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '0mqrMqXA', '6644187'), - (323, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '0mqrMqXA', '6648951'), - (323, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '0mqrMqXA', '6648952'), - (323, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '0mqrMqXA', '6655401'), - (323, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '0mqrMqXA', '6661585'), - (323, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '0mqrMqXA', '6661588'), - (323, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '0mqrMqXA', '6661589'), - (323, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '0mqrMqXA', '6699906'), - (323, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '0mqrMqXA', '6699913'), - (323, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '0mqrMqXA', '6701109'), - (323, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '0mqrMqXA', '6705219'), - (323, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '0mqrMqXA', '6710153'), - (323, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '0mqrMqXA', '6711552'), - (323, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '0mqrMqXA', '6711553'), - (323, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '0mqrMqXA', '6722688'), - (323, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '0mqrMqXA', '6730620'), - (323, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '0mqrMqXA', '6740364'), - (323, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '0mqrMqXA', '6743829'), - (323, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '0mqrMqXA', '7030380'), - (323, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '0mqrMqXA', '7033677'), - (323, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '0mqrMqXA', '7044715'), - (323, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '0mqrMqXA', '7050318'), - (323, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '0mqrMqXA', '7050319'), - (323, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '0mqrMqXA', '7050322'), - (323, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '0mqrMqXA', '7057804'), - (323, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '0mqrMqXA', '7072824'), - (323, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '0mqrMqXA', '7074348'), - (323, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '0mqrMqXA', '7074364'), - (323, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '0mqrMqXA', '7089267'), - (323, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '0mqrMqXA', '7098747'), - (323, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '0mqrMqXA', '7113468'), - (323, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '0mqrMqXA', '7114856'), - (323, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '0mqrMqXA', '7114951'), - (323, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '0mqrMqXA', '7114955'), - (323, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '0mqrMqXA', '7114956'), - (323, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '0mqrMqXA', '7114957'), - (323, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '0mqrMqXA', '7159484'), - (323, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '0mqrMqXA', '7178446'), - (323, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '0mqrMqXA', '7220467'), - (323, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '0mqrMqXA', '7240354'), - (323, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '0mqrMqXA', '7251633'), - (323, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '0mqrMqXA', '7324073'), - (323, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '0mqrMqXA', '7324074'), - (323, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '0mqrMqXA', '7324075'), - (323, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '0mqrMqXA', '7324078'), - (323, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '0mqrMqXA', '7324082'), - (323, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '0mqrMqXA', '7331457'), - (323, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '0mqrMqXA', '7363643'), - (323, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '0mqrMqXA', '7368606'), - (323, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '0mqrMqXA', '7397462'), - (323, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '0mqrMqXA', '7424275'), - (323, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '0mqrMqXA', '7432751'), - (323, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '0mqrMqXA', '7432752'), - (323, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '0mqrMqXA', '7432753'), - (323, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '0mqrMqXA', '7432754'), - (323, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '0mqrMqXA', '7432755'), - (323, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '0mqrMqXA', '7432756'), - (323, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '0mqrMqXA', '7432758'), - (323, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '0mqrMqXA', '7432759'), - (323, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '0mqrMqXA', '7433834'), - (323, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '0mqrMqXA', '7470197'), - (323, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '0mqrMqXA', '7685613'), - (323, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '0mqrMqXA', '7688194'), - (323, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '0mqrMqXA', '7688196'), - (323, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '0mqrMqXA', '7688289'), - (323, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '0mqrMqXA', '7692763'), - (323, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '0mqrMqXA', '7697552'), - (323, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '0mqrMqXA', '7699878'), - (323, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '0mqrMqXA', '7704043'), - (323, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '0mqrMqXA', '7712467'), - (323, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '0mqrMqXA', '7713585'), - (323, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '0mqrMqXA', '7713586'), - (323, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '0mqrMqXA', '7738518'), - (323, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '0mqrMqXA', '7750636'), - (323, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '0mqrMqXA', '7796540'), - (323, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '0mqrMqXA', '7796541'), - (323, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '0mqrMqXA', '7796542'), - (323, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '0mqrMqXA', '7825913'), - (323, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '0mqrMqXA', '7826209'), - (323, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '0mqrMqXA', '7834742'), - (323, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '0mqrMqXA', '7842108'), - (323, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '0mqrMqXA', '7842902'), - (323, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '0mqrMqXA', '7842903'), - (323, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '0mqrMqXA', '7842904'), - (323, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '0mqrMqXA', '7842905'), - (323, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '0mqrMqXA', '7855719'), - (323, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '0mqrMqXA', '7860683'), - (323, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '0mqrMqXA', '7860684'), - (323, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '0mqrMqXA', '7866095'), - (323, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '0mqrMqXA', '7869170'), - (323, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '0mqrMqXA', '7869188'), - (323, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '0mqrMqXA', '7869201'), - (323, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '0mqrMqXA', '7877465'), - (323, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '0mqrMqXA', '7888250'), - (323, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '0mqrMqXA', '7904777'), - (323, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '0mqrMqXA', '8349164'), - (323, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '0mqrMqXA', '8349545'), - (323, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '0mqrMqXA', '8368028'), - (323, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '0mqrMqXA', '8368029'), - (323, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '0mqrMqXA', '8388462'), - (323, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '0mqrMqXA', '8400273'), - (323, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '0mqrMqXA', '8400275'), - (323, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '0mqrMqXA', '8400276'), - (323, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '0mqrMqXA', '8404977'), - (323, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '0mqrMqXA', '8430783'), - (323, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '0mqrMqXA', '8430784'), - (323, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '0mqrMqXA', '8430799'), - (323, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '0mqrMqXA', '8430800'), - (323, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '0mqrMqXA', '8430801'), - (323, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '0mqrMqXA', '8438709'), - (323, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '0mqrMqXA', '8457738'), - (323, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '0mqrMqXA', '8459566'), - (323, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '0mqrMqXA', '8459567'), - (323, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '0mqrMqXA', '8461032'), - (323, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '0mqrMqXA', '8477877'), - (323, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '0mqrMqXA', '8485688'), - (323, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '0mqrMqXA', '8490587'), - (323, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '0mqrMqXA', '8493552'), - (323, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '0mqrMqXA', '8493553'), - (323, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '0mqrMqXA', '8493554'), - (323, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '0mqrMqXA', '8493555'), - (323, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '0mqrMqXA', '8493556'), - (323, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '0mqrMqXA', '8493557'), - (323, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '0mqrMqXA', '8493558'), - (323, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '0mqrMqXA', '8493559'), - (323, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '0mqrMqXA', '8493560'), - (323, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '0mqrMqXA', '8493561'), - (323, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '0mqrMqXA', '8493572'), - (323, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '0mqrMqXA', '8540725'), - (323, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '0mqrMqXA', '8555421'), - (324, 409, 'attending', '2020-12-10 00:40:35', '2025-12-17 19:47:54', 'v4DgwbLA', '3236467'), - (324, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'v4DgwbLA', '3314964'), - (324, 502, 'attending', '2020-12-13 00:55:54', '2025-12-17 19:47:55', 'v4DgwbLA', '3323365'), - (324, 503, 'attending', '2020-12-15 21:18:04', '2025-12-17 19:47:55', 'v4DgwbLA', '3323366'), - (324, 504, 'attending', '2020-12-15 21:18:36', '2025-12-17 19:47:55', 'v4DgwbLA', '3323368'), - (324, 505, 'attending', '2020-12-15 21:18:56', '2025-12-17 19:47:55', 'v4DgwbLA', '3323369'), - (324, 506, 'maybe', '2020-12-13 18:55:58', '2025-12-17 19:47:55', 'v4DgwbLA', '3323375'), - (324, 513, 'not_attending', '2020-12-19 23:26:35', '2025-12-17 19:47:55', 'v4DgwbLA', '3329383'), - (324, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'v4DgwbLA', '3351539'), - (324, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'v4DgwbLA', '3386848'), - (324, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'v4DgwbLA', '3389527'), - (324, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'v4DgwbLA', '3396499'), - (324, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'v4DgwbLA', '3403650'), - (324, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'v4DgwbLA', '3406988'), - (324, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'v4DgwbLA', '3416576'), - (324, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DgwbLA', '6045684'), - (325, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dN6vOP0d', '5900202'), - (325, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dN6vOP0d', '5962317'), - (325, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dN6vOP0d', '5962318'), - (325, 1951, 'not_attending', '2023-03-22 18:17:21', '2025-12-17 19:46:57', 'dN6vOP0d', '5965933'), - (325, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'dN6vOP0d', '6028191'), - (325, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dN6vOP0d', '6040066'), - (325, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dN6vOP0d', '6042717'), - (325, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dN6vOP0d', '6044838'), - (325, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dN6vOP0d', '6044839'), - (325, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN6vOP0d', '6045684'), - (325, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'dN6vOP0d', '6048955'), - (325, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dN6vOP0d', '6050104'), - (325, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dN6vOP0d', '6053195'), - (325, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dN6vOP0d', '6053198'), - (325, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dN6vOP0d', '6056085'), - (325, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dN6vOP0d', '6056916'), - (325, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dN6vOP0d', '6059290'), - (325, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dN6vOP0d', '6060328'), - (325, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dN6vOP0d', '6061037'), - (325, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dN6vOP0d', '6061039'), - (325, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dN6vOP0d', '6067245'), - (325, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dN6vOP0d', '6068094'), - (325, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dN6vOP0d', '6068252'), - (325, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dN6vOP0d', '6068253'), - (325, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dN6vOP0d', '6068254'), - (325, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dN6vOP0d', '6068280'), - (325, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dN6vOP0d', '6069093'), - (325, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dN6vOP0d', '6072528'), - (325, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dN6vOP0d', '6079840'), - (325, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dN6vOP0d', '6083398'), - (325, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dN6vOP0d', '6093504'), - (325, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dN6vOP0d', '6097414'), - (325, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dN6vOP0d', '6097442'), - (325, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dN6vOP0d', '6097684'), - (325, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dN6vOP0d', '6098762'), - (325, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dN6vOP0d', '6101362'), - (325, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dN6vOP0d', '6107314'), - (325, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dN6vOP0d', '6120034'), - (326, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'AgZWOzRm', '7281768'), - (326, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'AgZWOzRm', '7291219'), - (327, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndlRoKwA', '5900202'), - (327, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndlRoKwA', '5900203'), - (327, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'ndlRoKwA', '5910528'), - (327, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'ndlRoKwA', '5962317'), - (327, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'ndlRoKwA', '5962318'), - (327, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndlRoKwA', '5965933'), - (327, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndlRoKwA', '5972815'), - (327, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndlRoKwA', '5981515'), - (327, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndlRoKwA', '5993516'), - (327, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndlRoKwA', '5998939'), - (327, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndlRoKwA', '6028191'), - (327, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndlRoKwA', '6040066'), - (327, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndlRoKwA', '6042717'), - (327, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndlRoKwA', '6044838'), - (327, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndlRoKwA', '6044839'), - (327, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ndlRoKwA', '6045684'), - (327, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'ndlRoKwA', '6048955'), - (327, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndlRoKwA', '6050104'), - (327, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndlRoKwA', '6053195'), - (327, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndlRoKwA', '6053198'), - (327, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndlRoKwA', '6056085'), - (327, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndlRoKwA', '6056916'), - (327, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndlRoKwA', '6059290'), - (327, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndlRoKwA', '6060328'), - (327, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndlRoKwA', '6061037'), - (327, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndlRoKwA', '6061039'), - (327, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndlRoKwA', '6067245'), - (327, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndlRoKwA', '6068094'), - (327, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndlRoKwA', '6068252'), - (327, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndlRoKwA', '6068253'), - (327, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndlRoKwA', '6068254'), - (327, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndlRoKwA', '6068280'), - (327, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndlRoKwA', '6069093'), - (327, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'ndlRoKwA', '6072528'), - (327, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndlRoKwA', '6079840'), - (327, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndlRoKwA', '6083398'), - (327, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'ndlRoKwA', '6093504'), - (327, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndlRoKwA', '6097414'), - (327, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndlRoKwA', '6097442'), - (327, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndlRoKwA', '6097684'), - (327, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndlRoKwA', '6098762'), - (327, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndlRoKwA', '6101362'), - (327, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndlRoKwA', '6107314'), - (327, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndlRoKwA', '6120034'), - (328, 2285, 'attending', '2023-10-24 15:00:23', '2025-12-17 19:46:47', '4orR2VVA', '6460929'), - (328, 2296, 'attending', '2023-10-24 14:59:26', '2025-12-17 19:46:47', '4orR2VVA', '6468393'), - (328, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4orR2VVA', '6472181'), - (328, 2300, 'not_attending', '2023-10-24 15:00:55', '2025-12-17 19:46:47', '4orR2VVA', '6472185'), - (328, 2301, 'maybe', '2023-10-24 10:32:08', '2025-12-17 19:46:46', '4orR2VVA', '6474276'), - (328, 2303, 'attending', '2023-10-22 02:58:15', '2025-12-17 19:46:47', '4orR2VVA', '6482691'), - (328, 2304, 'maybe', '2023-10-22 02:56:27', '2025-12-17 19:46:47', '4orR2VVA', '6482693'), - (328, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4orR2VVA', '6484200'), - (328, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4orR2VVA', '6484680'), - (328, 2309, 'maybe', '2023-10-23 23:03:35', '2025-12-17 19:46:46', '4orR2VVA', '6486100'), - (328, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4orR2VVA', '6507741'), - (328, 2321, 'attending', '2023-10-30 21:42:31', '2025-12-17 19:46:47', '4orR2VVA', '6512075'), - (328, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4orR2VVA', '6514659'), - (328, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4orR2VVA', '6514660'), - (328, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4orR2VVA', '6519103'), - (328, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4orR2VVA', '6535681'), - (328, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4orR2VVA', '6584747'), - (328, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4orR2VVA', '6587097'), - (328, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4orR2VVA', '6609022'), - (328, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4orR2VVA', '6632757'), - (328, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4orR2VVA', '6644187'), - (328, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4orR2VVA', '6648951'), - (328, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4orR2VVA', '6648952'), - (328, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4orR2VVA', '6655401'), - (328, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4orR2VVA', '6661585'), - (328, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4orR2VVA', '6661588'), - (328, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4orR2VVA', '6661589'), - (328, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4orR2VVA', '6699906'), - (328, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4orR2VVA', '6699913'), - (328, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4orR2VVA', '6701109'), - (328, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '4orR2VVA', '6704561'), - (328, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4orR2VVA', '6705219'), - (328, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '4orR2VVA', '6708410'), - (328, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4orR2VVA', '6710153'), - (328, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4orR2VVA', '6711552'), - (328, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4orR2VVA', '6711553'), - (328, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4orR2VVA', '6722688'), - (328, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4orR2VVA', '6730620'), - (328, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4orR2VVA', '6730642'), - (328, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4orR2VVA', '6740364'), - (328, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4orR2VVA', '6743829'), - (328, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4orR2VVA', '7030380'), - (328, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4orR2VVA', '7033677'), - (328, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4orR2VVA', '7035415'), - (328, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4orR2VVA', '7044715'), - (328, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4orR2VVA', '7050318'), - (328, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4orR2VVA', '7050319'), - (328, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4orR2VVA', '7050322'), - (328, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4orR2VVA', '7057804'), - (328, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4orR2VVA', '7072824'), - (328, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4orR2VVA', '7074348'), - (328, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4orR2VVA', '7089267'), - (328, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4orR2VVA', '7098747'), - (328, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4orR2VVA', '7113468'), - (328, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4orR2VVA', '7114856'), - (328, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4orR2VVA', '7114951'), - (328, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4orR2VVA', '7114955'), - (328, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4orR2VVA', '7114956'), - (328, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4orR2VVA', '7153615'), - (328, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4orR2VVA', '7159484'), - (329, 254, 'attending', '2021-03-28 02:02:57', '2025-12-17 19:47:51', '6AXW3xRm', '3149485'), - (329, 638, 'maybe', '2021-04-02 16:45:35', '2025-12-17 19:47:44', '6AXW3xRm', '3536632'), - (329, 641, 'attending', '2021-03-31 14:29:50', '2025-12-17 19:47:44', '6AXW3xRm', '3539916'), - (329, 642, 'attending', '2021-04-05 15:37:11', '2025-12-17 19:47:44', '6AXW3xRm', '3539917'), - (329, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '6AXW3xRm', '3539918'), - (329, 644, 'attending', '2021-04-19 22:54:05', '2025-12-17 19:47:45', '6AXW3xRm', '3539919'), - (329, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '6AXW3xRm', '3539920'), - (329, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '6AXW3xRm', '3539921'), - (329, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '6AXW3xRm', '3539922'), - (329, 648, 'maybe', '2021-05-29 15:11:20', '2025-12-17 19:47:47', '6AXW3xRm', '3539923'), - (329, 700, 'attending', '2021-03-28 17:05:34', '2025-12-17 19:47:44', '6AXW3xRm', '3575725'), - (329, 704, 'attending', '2021-03-31 17:28:26', '2025-12-17 19:47:44', '6AXW3xRm', '3581429'), - (329, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '6AXW3xRm', '3583262'), - (329, 709, 'attending', '2021-04-06 15:25:18', '2025-12-17 19:47:44', '6AXW3xRm', '3587852'), - (329, 710, 'maybe', '2021-04-07 20:36:23', '2025-12-17 19:47:44', '6AXW3xRm', '3587853'), - (329, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '6AXW3xRm', '3661369'), - (329, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXW3xRm', '3674262'), - (329, 735, 'maybe', '2021-05-02 13:33:37', '2025-12-17 19:47:46', '6AXW3xRm', '3677402'), - (329, 748, 'attending', '2021-04-08 15:51:50', '2025-12-17 19:47:44', '6AXW3xRm', '3685353'), - (329, 750, 'attending', '2021-04-13 22:45:01', '2025-12-17 19:47:44', '6AXW3xRm', '3689962'), - (329, 768, 'attending', '2021-04-25 02:17:59', '2025-12-17 19:47:46', '6AXW3xRm', '3724124'), - (329, 769, 'attending', '2021-04-26 14:17:10', '2025-12-17 19:47:46', '6AXW3xRm', '3724127'), - (329, 770, 'attending', '2021-04-28 01:43:05', '2025-12-17 19:47:46', '6AXW3xRm', '3724559'), - (329, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXW3xRm', '3730212'), - (329, 777, 'attending', '2021-04-30 12:43:53', '2025-12-17 19:47:46', '6AXW3xRm', '3746248'), - (329, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXW3xRm', '3793156'), - (329, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXW3xRm', '3974109'), - (329, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXW3xRm', '3975311'), - (329, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXW3xRm', '3975312'), - (329, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXW3xRm', '3994992'), - (329, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXW3xRm', '4014338'), - (329, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXW3xRm', '4021848'), - (329, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXW3xRm', '4136744'), - (329, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXW3xRm', '4136937'), - (329, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXW3xRm', '4136938'), - (329, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXW3xRm', '4136947'), - (329, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXW3xRm', '4210314'), - (329, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXW3xRm', '4225444'), - (329, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXW3xRm', '4239259'), - (329, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXW3xRm', '4240316'), - (329, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXW3xRm', '4240317'), - (329, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXW3xRm', '4240318'), - (329, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXW3xRm', '4240320'), - (329, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXW3xRm', '4250163'), - (329, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXW3xRm', '4275957'), - (329, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXW3xRm', '4277819'), - (329, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXW3xRm', '4301723'), - (329, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '6AXW3xRm', '4302093'), - (329, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXW3xRm', '4304151'), - (329, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXW3xRm', '4356801'), - (329, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXW3xRm', '4366186'), - (329, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXW3xRm', '4366187'), - (329, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AXW3xRm', '4420735'), - (329, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AXW3xRm', '4420738'), - (329, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AXW3xRm', '4420739'), - (329, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AXW3xRm', '4420741'), - (329, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXW3xRm', '4420744'), - (329, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXW3xRm', '4420747'), - (329, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AXW3xRm', '4420748'), - (329, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXW3xRm', '4420749'), - (329, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXW3xRm', '4461883'), - (329, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXW3xRm', '4508342'), - (329, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXW3xRm', '6045684'), - (330, 1891, 'attending', '2023-03-21 20:04:22', '2025-12-17 19:46:56', 'AQ1VD73A', '5900202'), - (330, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AQ1VD73A', '5900203'), - (330, 1917, 'not_attending', '2023-03-13 15:07:54', '2025-12-17 19:47:10', 'AQ1VD73A', '5910528'), - (330, 1927, 'not_attending', '2023-03-14 13:12:50', '2025-12-17 19:47:10', 'AQ1VD73A', '5932621'), - (330, 1943, 'attending', '2023-03-14 00:48:46', '2025-12-17 19:47:10', 'AQ1VD73A', '5962091'), - (330, 1946, 'maybe', '2023-03-14 13:13:19', '2025-12-17 19:46:56', 'AQ1VD73A', '5962134'), - (330, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'AQ1VD73A', '5962317'), - (330, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'AQ1VD73A', '5962318'), - (330, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'AQ1VD73A', '5965933'), - (330, 1955, 'not_attending', '2023-03-28 14:04:21', '2025-12-17 19:46:57', 'AQ1VD73A', '5972529'), - (330, 1971, 'attending', '2023-03-15 15:11:19', '2025-12-17 19:46:56', 'AQ1VD73A', '5993765'), - (330, 1974, 'not_attending', '2023-03-25 04:57:45', '2025-12-17 19:46:57', 'AQ1VD73A', '5993778'), - (330, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AQ1VD73A', '5998939'), - (330, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AQ1VD73A', '6028191'), - (330, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AQ1VD73A', '6040066'), - (330, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AQ1VD73A', '6042717'), - (330, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AQ1VD73A', '6044838'), - (330, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AQ1VD73A', '6044839'), - (330, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ1VD73A', '6045684'), - (330, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'AQ1VD73A', '6050104'), - (330, 2002, 'not_attending', '2023-04-23 03:50:18', '2025-12-17 19:47:01', 'AQ1VD73A', '6052605'), - (330, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AQ1VD73A', '6053195'), - (330, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AQ1VD73A', '6053198'), - (330, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AQ1VD73A', '6056085'), - (330, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AQ1VD73A', '6056916'), - (330, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AQ1VD73A', '6059290'), - (330, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AQ1VD73A', '6060328'), - (330, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AQ1VD73A', '6061037'), - (330, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AQ1VD73A', '6061039'), - (330, 2019, 'attending', '2023-04-16 07:23:44', '2025-12-17 19:47:00', 'AQ1VD73A', '6062934'), - (330, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AQ1VD73A', '6067245'), - (330, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AQ1VD73A', '6068094'), - (330, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AQ1VD73A', '6068252'), - (330, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AQ1VD73A', '6068253'), - (330, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AQ1VD73A', '6068254'), - (330, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AQ1VD73A', '6068280'), - (330, 2032, 'attending', '2023-06-03 16:44:16', '2025-12-17 19:47:04', 'AQ1VD73A', '6068281'), - (330, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AQ1VD73A', '6069093'), - (330, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'AQ1VD73A', '6072528'), - (330, 2047, 'not_attending', '2023-05-02 12:42:42', '2025-12-17 19:47:02', 'AQ1VD73A', '6076027'), - (330, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AQ1VD73A', '6079840'), - (330, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AQ1VD73A', '6083398'), - (330, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AQ1VD73A', '6093504'), - (330, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AQ1VD73A', '6097414'), - (330, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AQ1VD73A', '6097442'), - (330, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AQ1VD73A', '6097684'), - (330, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AQ1VD73A', '6098762'), - (330, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AQ1VD73A', '6101361'), - (330, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AQ1VD73A', '6101362'), - (330, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AQ1VD73A', '6103752'), - (330, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AQ1VD73A', '6107314'), - (330, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'AQ1VD73A', '6120034'), - (330, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AQ1VD73A', '6136733'), - (330, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AQ1VD73A', '6137989'), - (330, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AQ1VD73A', '6150864'), - (330, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'AQ1VD73A', '6155491'), - (330, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AQ1VD73A', '6164417'), - (330, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AQ1VD73A', '6166388'), - (330, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'AQ1VD73A', '6176439'), - (330, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'AQ1VD73A', '6182410'), - (330, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AQ1VD73A', '6185812'), - (330, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AQ1VD73A', '6187651'), - (330, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AQ1VD73A', '6187963'), - (330, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AQ1VD73A', '6187964'), - (330, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AQ1VD73A', '6187966'), - (330, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AQ1VD73A', '6187967'), - (330, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AQ1VD73A', '6187969'), - (330, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AQ1VD73A', '6334878'), - (330, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AQ1VD73A', '6337236'), - (330, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AQ1VD73A', '6337970'), - (330, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AQ1VD73A', '6338308'), - (330, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'AQ1VD73A', '6340845'), - (330, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AQ1VD73A', '6341710'), - (330, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AQ1VD73A', '6342044'), - (330, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AQ1VD73A', '6342298'), - (330, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AQ1VD73A', '6343294'), - (330, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AQ1VD73A', '6347034'), - (330, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AQ1VD73A', '6347056'), - (330, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AQ1VD73A', '6353830'), - (330, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AQ1VD73A', '6353831'), - (330, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AQ1VD73A', '6357867'), - (330, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AQ1VD73A', '6358652'), - (330, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AQ1VD73A', '6361709'), - (330, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AQ1VD73A', '6361710'), - (330, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AQ1VD73A', '6361711'), - (330, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AQ1VD73A', '6361712'), - (330, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AQ1VD73A', '6361713'), - (330, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AQ1VD73A', '6382573'), - (330, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AQ1VD73A', '6388604'), - (330, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AQ1VD73A', '6394629'), - (330, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AQ1VD73A', '6394631'), - (330, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AQ1VD73A', '6440863'), - (330, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AQ1VD73A', '6445440'), - (330, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AQ1VD73A', '6453951'), - (330, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AQ1VD73A', '6461696'), - (330, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AQ1VD73A', '6462129'), - (330, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AQ1VD73A', '6463218'), - (330, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AQ1VD73A', '6472181'), - (330, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AQ1VD73A', '6482693'), - (330, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'AQ1VD73A', '6484200'), - (330, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AQ1VD73A', '6484680'), - (330, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AQ1VD73A', '6507741'), - (330, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AQ1VD73A', '6514659'), - (330, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AQ1VD73A', '6514660'), - (330, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AQ1VD73A', '6519103'), - (330, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AQ1VD73A', '6535681'), - (330, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AQ1VD73A', '6584747'), - (330, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AQ1VD73A', '6587097'), - (330, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AQ1VD73A', '6609022'), - (330, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AQ1VD73A', '6632757'), - (330, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AQ1VD73A', '6644187'), - (330, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AQ1VD73A', '6648951'), - (330, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AQ1VD73A', '6648952'), - (330, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AQ1VD73A', '6655401'), - (330, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AQ1VD73A', '6661585'), - (330, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AQ1VD73A', '6661588'), - (330, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AQ1VD73A', '6661589'), - (330, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AQ1VD73A', '6699906'), - (330, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AQ1VD73A', '6701109'), - (330, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AQ1VD73A', '6705219'), - (330, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AQ1VD73A', '6710153'), - (330, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AQ1VD73A', '6711552'), - (330, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AQ1VD73A', '6711553'), - (331, 311, 'not_attending', '2020-09-18 14:56:29', '2025-12-17 19:47:56', 'nm6LVPq4', '3186057'), - (331, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'nm6LVPq4', '3217037'), - (331, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'nm6LVPq4', '3218510'), - (331, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6LVPq4', '6045684'), - (332, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'mG2OY3Xd', '4210314'), - (332, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'mG2OY3Xd', '4240318'), - (332, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'mG2OY3Xd', '4240320'), - (332, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'mG2OY3Xd', '4304151'), - (332, 947, 'not_attending', '2021-08-04 05:12:06', '2025-12-17 19:47:41', 'mG2OY3Xd', '4315713'), - (332, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'mG2OY3Xd', '4315714'), - (332, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'mG2OY3Xd', '4315726'), - (332, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'mG2OY3Xd', '4356801'), - (332, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'mG2OY3Xd', '4366186'), - (332, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'mG2OY3Xd', '4366187'), - (332, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'mG2OY3Xd', '4420735'), - (332, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'mG2OY3Xd', '4420738'), - (332, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'mG2OY3Xd', '4420739'), - (332, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'mG2OY3Xd', '4420741'), - (332, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'mG2OY3Xd', '4420744'), - (332, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'mG2OY3Xd', '4420747'), - (332, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'mG2OY3Xd', '4420748'), - (332, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'mG2OY3Xd', '4420749'), - (332, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mG2OY3Xd', '6045684'), - (333, 993, 'attending', '2021-09-23 22:53:03', '2025-12-17 19:47:34', '41orQxRm', '4420741'), - (333, 994, 'attending', '2021-10-02 22:46:03', '2025-12-17 19:47:34', '41orQxRm', '4420742'), - (333, 995, 'attending', '2021-10-04 14:23:09', '2025-12-17 19:47:34', '41orQxRm', '4420744'), - (333, 996, 'attending', '2021-10-30 19:05:42', '2025-12-17 19:47:35', '41orQxRm', '4420747'), - (333, 997, 'attending', '2021-10-23 21:31:39', '2025-12-17 19:47:35', '41orQxRm', '4420748'), - (333, 998, 'attending', '2021-10-30 19:06:35', '2025-12-17 19:47:36', '41orQxRm', '4420749'), - (333, 1069, 'attending', '2021-09-24 15:43:33', '2025-12-17 19:47:34', '41orQxRm', '4512090'), - (333, 1070, 'attending', '2021-10-01 21:31:20', '2025-12-17 19:47:34', '41orQxRm', '4512562'), - (333, 1072, 'attending', '2021-10-09 21:04:19', '2025-12-17 19:47:34', '41orQxRm', '4516287'), - (333, 1074, 'attending', '2021-09-29 21:50:02', '2025-12-17 19:47:34', '41orQxRm', '4528953'), - (333, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '41orQxRm', '4568602'), - (333, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '41orQxRm', '4572153'), - (333, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '41orQxRm', '4585962'), - (333, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '41orQxRm', '4596356'), - (333, 1097, 'not_attending', '2021-11-03 22:52:31', '2025-12-17 19:47:36', '41orQxRm', '4598860'), - (333, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '41orQxRm', '4598861'), - (333, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '41orQxRm', '4602797'), - (333, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '41orQxRm', '4637896'), - (333, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '41orQxRm', '4642994'), - (333, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '41orQxRm', '4642995'), - (333, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '41orQxRm', '4642996'), - (333, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '41orQxRm', '4642997'), - (333, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '41orQxRm', '4645687'), - (333, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '41orQxRm', '4645698'), - (333, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '41orQxRm', '4645704'), - (333, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '41orQxRm', '4645705'), - (333, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '41orQxRm', '4668385'), - (333, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '41orQxRm', '4694407'), - (333, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '41orQxRm', '4736497'), - (333, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '41orQxRm', '4736499'), - (333, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '41orQxRm', '4736500'), - (333, 1181, 'attending', '2022-03-02 23:44:37', '2025-12-17 19:47:33', '41orQxRm', '4736503'), - (333, 1182, 'not_attending', '2022-03-12 23:57:10', '2025-12-17 19:47:33', '41orQxRm', '4736504'), - (333, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '41orQxRm', '4746789'), - (333, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '41orQxRm', '4753929'), - (333, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '41orQxRm', '5038850'), - (333, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '41orQxRm', '5045826'), - (333, 1249, 'not_attending', '2022-03-10 00:04:37', '2025-12-17 19:47:33', '41orQxRm', '5068530'), - (333, 1252, 'not_attending', '2022-03-03 18:08:19', '2025-12-17 19:47:33', '41orQxRm', '5129121'), - (333, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '41orQxRm', '5132533'), - (333, 1272, 'not_attending', '2022-03-19 22:08:12', '2025-12-17 19:47:25', '41orQxRm', '5186582'), - (333, 1273, 'attending', '2022-03-26 15:19:18', '2025-12-17 19:47:25', '41orQxRm', '5186583'), - (333, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '41orQxRm', '5186585'), - (333, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '41orQxRm', '5190437'), - (333, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '41orQxRm', '5195095'), - (333, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', '41orQxRm', '5215989'), - (333, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41orQxRm', '5223686'), - (333, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41orQxRm', '5227432'), - (333, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '41orQxRm', '5247467'), - (333, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '41orQxRm', '5260800'), - (333, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '41orQxRm', '5269930'), - (333, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41orQxRm', '5271448'), - (333, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '41orQxRm', '5271449'), - (333, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '41orQxRm', '5276469'), - (333, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41orQxRm', '5278159'), - (333, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41orQxRm', '5363695'), - (333, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41orQxRm', '5365960'), - (333, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '41orQxRm', '5368973'), - (333, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41orQxRm', '5378247'), - (333, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '41orQxRm', '5389605'), - (333, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41orQxRm', '5397265'), - (333, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41orQxRm', '5403967'), - (333, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41orQxRm', '5404786'), - (333, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41orQxRm', '5405203'), - (333, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '41orQxRm', '5408794'), - (333, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41orQxRm', '5411699'), - (333, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41orQxRm', '5412550'), - (333, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41orQxRm', '5415046'), - (333, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41orQxRm', '5422086'), - (333, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41orQxRm', '5422406'), - (333, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41orQxRm', '5424565'), - (333, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41orQxRm', '5426882'), - (333, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41orQxRm', '5427083'), - (333, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41orQxRm', '5441125'), - (333, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41orQxRm', '5441126'), - (333, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41orQxRm', '5441128'), - (333, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41orQxRm', '5446643'), - (333, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41orQxRm', '5453325'), - (333, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41orQxRm', '5454516'), - (333, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41orQxRm', '5454605'), - (333, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41orQxRm', '5455037'), - (333, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41orQxRm', '5461278'), - (333, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41orQxRm', '5469480'), - (333, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41orQxRm', '5471073'), - (333, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41orQxRm', '5474663'), - (333, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41orQxRm', '5482022'), - (333, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41orQxRm', '5482793'), - (333, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41orQxRm', '5488912'), - (333, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41orQxRm', '5492192'), - (333, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41orQxRm', '5493139'), - (333, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41orQxRm', '5493200'), - (333, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41orQxRm', '5502188'), - (333, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41orQxRm', '5512862'), - (333, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41orQxRm', '5513985'), - (333, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41orQxRm', '6045684'), - (334, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'amGzQpKd', '3149489'), - (334, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'amGzQpKd', '3236450'), - (334, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'amGzQpKd', '3236452'), - (334, 648, 'attending', '2021-05-28 22:24:26', '2025-12-17 19:47:47', 'amGzQpKd', '3539923'), - (334, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'amGzQpKd', '3963335'), - (334, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGzQpKd', '3975311'), - (334, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amGzQpKd', '3994992'), - (334, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGzQpKd', '4014338'), - (334, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGzQpKd', '6045684'), - (335, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6jpBVRm', '5630960'), - (335, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6jpBVRm', '5630961'), - (335, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6jpBVRm', '5630962'), - (335, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6jpBVRm', '5635406'), - (335, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6jpBVRm', '5638765'), - (335, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6jpBVRm', '5640097'), - (335, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm6jpBVRm', '5640843'), - (335, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6jpBVRm', '5641521'), - (335, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6jpBVRm', '5652395'), - (335, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6jpBVRm', '5671637'), - (335, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6jpBVRm', '5672329'), - (335, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6jpBVRm', '5674057'), - (335, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6jpBVRm', '5674060'), - (335, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6jpBVRm', '5677461'), - (335, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6jpBVRm', '6045684'), - (336, 951, 'attending', '2021-08-27 00:10:22', '2025-12-17 19:47:43', 'd9nXgXJm', '4315731'), - (336, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd9nXgXJm', '4356801'), - (336, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'd9nXgXJm', '4366187'), - (336, 990, 'attending', '2021-09-01 22:52:56', '2025-12-17 19:47:43', 'd9nXgXJm', '4420735'), - (336, 991, 'attending', '2021-09-11 20:05:35', '2025-12-17 19:47:43', 'd9nXgXJm', '4420738'), - (336, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'd9nXgXJm', '4420739'), - (336, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'd9nXgXJm', '4420741'), - (336, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'd9nXgXJm', '4420744'), - (336, 996, 'attending', '2021-10-11 19:26:22', '2025-12-17 19:47:35', 'd9nXgXJm', '4420747'), - (336, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'd9nXgXJm', '4420748'), - (336, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'd9nXgXJm', '4420749'), - (336, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'd9nXgXJm', '4461883'), - (336, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'd9nXgXJm', '4508342'), - (336, 1077, 'attending', '2021-10-11 19:26:36', '2025-12-17 19:47:34', 'd9nXgXJm', '4540903'), - (336, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd9nXgXJm', '4568602'), - (336, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd9nXgXJm', '6045684'), - (337, 1116, 'maybe', '2021-11-30 03:06:24', '2025-12-17 19:47:37', 'mjn99L0m', '4642994'), - (337, 1117, 'attending', '2021-12-09 00:36:14', '2025-12-17 19:47:37', 'mjn99L0m', '4642995'), - (337, 1118, 'attending', '2021-12-16 00:36:07', '2025-12-17 19:47:38', 'mjn99L0m', '4642996'), - (337, 1119, 'not_attending', '2021-12-23 00:54:56', '2025-12-17 19:47:31', 'mjn99L0m', '4642997'), - (337, 1122, 'not_attending', '2021-11-29 16:35:05', '2025-12-17 19:47:37', 'mjn99L0m', '4644023'), - (337, 1126, 'attending', '2021-12-11 21:39:53', '2025-12-17 19:47:38', 'mjn99L0m', '4645687'), - (337, 1130, 'attending', '2021-12-03 14:39:50', '2025-12-17 19:47:37', 'mjn99L0m', '4658824'), - (337, 1131, 'not_attending', '2021-12-23 00:53:49', '2025-12-17 19:47:31', 'mjn99L0m', '4658825'), - (337, 1138, 'attending', '2021-11-29 16:35:09', '2025-12-17 19:47:37', 'mjn99L0m', '4675407'), - (337, 1139, 'attending', '2021-11-30 15:44:28', '2025-12-17 19:47:37', 'mjn99L0m', '4675604'), - (337, 1140, 'attending', '2021-11-30 04:32:07', '2025-12-17 19:47:37', 'mjn99L0m', '4679701'), - (337, 1142, 'attending', '2021-12-05 04:30:37', '2025-12-17 19:47:37', 'mjn99L0m', '4681923'), - (337, 1143, 'attending', '2021-12-02 00:52:19', '2025-12-17 19:47:37', 'mjn99L0m', '4683667'), - (337, 1144, 'not_attending', '2021-12-07 23:13:29', '2025-12-17 19:47:37', 'mjn99L0m', '4687090'), - (337, 1145, 'attending', '2021-12-06 14:27:03', '2025-12-17 19:47:38', 'mjn99L0m', '4691157'), - (337, 1146, 'attending', '2021-12-07 03:01:09', '2025-12-17 19:47:38', 'mjn99L0m', '4692841'), - (337, 1147, 'attending', '2021-12-12 18:21:25', '2025-12-17 19:47:38', 'mjn99L0m', '4692842'), - (337, 1148, 'attending', '2021-12-09 04:11:36', '2025-12-17 19:47:31', 'mjn99L0m', '4692843'), - (337, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mjn99L0m', '4694407'), - (337, 1151, 'not_attending', '2022-01-05 22:12:19', '2025-12-17 19:47:31', 'mjn99L0m', '4708704'), - (337, 1152, 'maybe', '2022-01-02 13:13:26', '2025-12-17 19:47:31', 'mjn99L0m', '4708705'), - (337, 1153, 'attending', '2022-01-19 23:56:12', '2025-12-17 19:47:32', 'mjn99L0m', '4708707'), - (337, 1154, 'maybe', '2022-01-02 13:13:48', '2025-12-17 19:47:32', 'mjn99L0m', '4708708'), - (337, 1158, 'attending', '2021-12-20 03:17:07', '2025-12-17 19:47:31', 'mjn99L0m', '4715311'), - (337, 1159, 'not_attending', '2022-01-05 01:06:53', '2025-12-17 19:47:31', 'mjn99L0m', '4717532'), - (337, 1162, 'not_attending', '2022-01-07 01:38:27', '2025-12-17 19:47:31', 'mjn99L0m', '4718771'), - (337, 1164, 'attending', '2021-12-29 12:47:27', '2025-12-17 19:47:31', 'mjn99L0m', '4724208'), - (337, 1165, 'attending', '2021-12-29 12:47:29', '2025-12-17 19:47:31', 'mjn99L0m', '4724210'), - (337, 1166, 'not_attending', '2022-01-04 16:31:55', '2025-12-17 19:47:31', 'mjn99L0m', '4725109'), - (337, 1170, 'not_attending', '2022-01-10 00:37:56', '2025-12-17 19:47:31', 'mjn99L0m', '4731045'), - (337, 1172, 'maybe', '2022-01-04 16:32:01', '2025-12-17 19:47:32', 'mjn99L0m', '4735348'), - (337, 1173, 'not_attending', '2022-01-08 01:59:08', '2025-12-17 19:47:31', 'mjn99L0m', '4736495'), - (337, 1174, 'not_attending', '2022-01-16 01:25:04', '2025-12-17 19:47:31', 'mjn99L0m', '4736496'), - (337, 1175, 'maybe', '2022-01-04 16:32:08', '2025-12-17 19:47:32', 'mjn99L0m', '4736497'), - (337, 1176, 'maybe', '2022-01-04 16:32:22', '2025-12-17 19:47:32', 'mjn99L0m', '4736498'), - (337, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mjn99L0m', '4736499'), - (337, 1178, 'maybe', '2022-01-04 16:32:16', '2025-12-17 19:47:32', 'mjn99L0m', '4736500'), - (337, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mjn99L0m', '4736503'), - (337, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mjn99L0m', '4736504'), - (337, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mjn99L0m', '4746789'), - (337, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mjn99L0m', '4753929'), - (337, 1192, 'attending', '2022-01-20 04:56:04', '2025-12-17 19:47:32', 'mjn99L0m', '4758745'), - (337, 1193, 'attending', '2022-01-20 04:59:51', '2025-12-17 19:47:32', 'mjn99L0m', '4759563'), - (337, 1198, 'not_attending', '2022-01-25 00:02:15', '2025-12-17 19:47:32', 'mjn99L0m', '4766801'), - (337, 1199, 'not_attending', '2022-01-25 00:02:17', '2025-12-17 19:47:32', 'mjn99L0m', '4766802'), - (337, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mjn99L0m', '5038850'), - (337, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mjn99L0m', '5045826'), - (337, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mjn99L0m', '5132533'), - (337, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mjn99L0m', '5186582'), - (337, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mjn99L0m', '5186583'), - (337, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mjn99L0m', '5186585'), - (337, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mjn99L0m', '5190437'), - (337, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mjn99L0m', '5215989'), - (337, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjn99L0m', '6045684'), - (338, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Ar08bpXd', '5630960'), - (338, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Ar08bpXd', '5630961'), - (338, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Ar08bpXd', '5630962'), - (338, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Ar08bpXd', '5630966'), - (338, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Ar08bpXd', '5635406'), - (338, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Ar08bpXd', '5638765'), - (338, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Ar08bpXd', '5640097'), - (338, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'Ar08bpXd', '5640843'), - (338, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Ar08bpXd', '5641521'), - (338, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Ar08bpXd', '5652395'), - (338, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Ar08bpXd', '5671637'), - (338, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Ar08bpXd', '5672329'), - (338, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Ar08bpXd', '5674057'), - (338, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Ar08bpXd', '5674060'), - (338, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Ar08bpXd', '5677461'), - (338, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Ar08bpXd', '5698046'), - (338, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Ar08bpXd', '5699760'), - (338, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ar08bpXd', '6045684'), - (339, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'Md3M5qZA', '3034321'), - (339, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'Md3M5qZA', '3067093'), - (339, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'Md3M5qZA', '3075228'), - (339, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'Md3M5qZA', '3075456'), - (339, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'Md3M5qZA', '3083791'), - (339, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'Md3M5qZA', '3085151'), - (339, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'Md3M5qZA', '3087265'), - (339, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', 'Md3M5qZA', '3087266'), - (339, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'Md3M5qZA', '3087267'), - (339, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'Md3M5qZA', '3087268'), - (339, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'Md3M5qZA', '3088653'), - (339, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'Md3M5qZA', '3106813'), - (339, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'Md3M5qZA', '3129980'), - (339, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'Md3M5qZA', '3132817'), - (339, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'Md3M5qZA', '3132820'), - (339, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'Md3M5qZA', '3155321'), - (339, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'Md3M5qZA', '3162006'), - (339, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'Md3M5qZA', '3163442'), - (339, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'Md3M5qZA', '3172832'), - (339, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'Md3M5qZA', '3172833'), - (339, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'Md3M5qZA', '3172834'), - (339, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'Md3M5qZA', '3172876'), - (339, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'Md3M5qZA', '3186057'), - (339, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'Md3M5qZA', '3191735'), - (339, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'Md3M5qZA', '3200209'), - (339, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', 'Md3M5qZA', '3214207'), - (339, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'Md3M5qZA', '3217037'), - (339, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'Md3M5qZA', '3218510'), - (339, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'Md3M5qZA', '3228698'), - (339, 386, 'attending', '2020-10-10 22:35:12', '2025-12-17 19:47:52', 'Md3M5qZA', '3228699'), - (339, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'Md3M5qZA', '3228700'), - (339, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'Md3M5qZA', '3228701'), - (339, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'Md3M5qZA', '3245751'), - (339, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'Md3M5qZA', '3250232'), - (339, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'Md3M5qZA', '3256168'), - (339, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'Md3M5qZA', '3263578'), - (339, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'Md3M5qZA', '3276428'), - (339, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Md3M5qZA', '3281470'), - (339, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'Md3M5qZA', '3281829'), - (339, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'Md3M5qZA', '3285413'), - (339, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Md3M5qZA', '3285414'), - (339, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Md3M5qZA', '3297764'), - (339, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Md3M5qZA', '3313856'), - (339, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Md3M5qZA', '3314909'), - (339, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Md3M5qZA', '3314964'), - (339, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'Md3M5qZA', '3323365'), - (339, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Md3M5qZA', '3329383'), - (339, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Md3M5qZA', '3351539'), - (339, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Md3M5qZA', '3386848'), - (339, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Md3M5qZA', '3389527'), - (339, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Md3M5qZA', '3396499'), - (339, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Md3M5qZA', '3403650'), - (339, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Md3M5qZA', '3406988'), - (339, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Md3M5qZA', '3416576'), - (339, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'Md3M5qZA', '3430267'), - (339, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'Md3M5qZA', '3470305'), - (339, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Md3M5qZA', '3470991'), - (339, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'Md3M5qZA', '3517815'), - (339, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'Md3M5qZA', '3517816'), - (339, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'Md3M5qZA', '3523941'), - (339, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Md3M5qZA', '3533850'), - (339, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Md3M5qZA', '3536632'), - (339, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Md3M5qZA', '3536656'), - (339, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Md3M5qZA', '3539916'), - (339, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Md3M5qZA', '3539917'), - (339, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Md3M5qZA', '3539918'), - (339, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'Md3M5qZA', '3539919'), - (339, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Md3M5qZA', '3539920'), - (339, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Md3M5qZA', '3539921'), - (339, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Md3M5qZA', '3539922'), - (339, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Md3M5qZA', '3539923'), - (339, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Md3M5qZA', '3539927'), - (339, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Md3M5qZA', '3582734'), - (339, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Md3M5qZA', '3583262'), - (339, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Md3M5qZA', '3619523'), - (339, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Md3M5qZA', '3661369'), - (339, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Md3M5qZA', '3674262'), - (339, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Md3M5qZA', '3677402'), - (339, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Md3M5qZA', '3730212'), - (339, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Md3M5qZA', '3793156'), - (339, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Md3M5qZA', '3974109'), - (339, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Md3M5qZA', '3975311'), - (339, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Md3M5qZA', '3975312'), - (339, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Md3M5qZA', '3994992'), - (339, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Md3M5qZA', '4014338'), - (339, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'Md3M5qZA', '4021848'), - (339, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Md3M5qZA', '4136744'), - (339, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Md3M5qZA', '4136937'), - (339, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Md3M5qZA', '4136938'), - (339, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Md3M5qZA', '4136947'), - (339, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Md3M5qZA', '4210314'), - (339, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Md3M5qZA', '4225444'), - (339, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Md3M5qZA', '4239259'), - (339, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Md3M5qZA', '4240316'), - (339, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Md3M5qZA', '4240317'), - (339, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Md3M5qZA', '4240318'), - (339, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Md3M5qZA', '4240320'), - (339, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Md3M5qZA', '4250163'), - (339, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Md3M5qZA', '4275957'), - (339, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Md3M5qZA', '4277819'), - (339, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Md3M5qZA', '4301723'), - (339, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Md3M5qZA', '4302093'), - (339, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Md3M5qZA', '4304151'), - (339, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Md3M5qZA', '4356801'), - (339, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Md3M5qZA', '4366186'), - (339, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Md3M5qZA', '4366187'), - (339, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Md3M5qZA', '4420735'), - (339, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Md3M5qZA', '4420738'), - (339, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Md3M5qZA', '4420739'), - (339, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Md3M5qZA', '4420741'), - (339, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Md3M5qZA', '4420744'), - (339, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Md3M5qZA', '4420747'), - (339, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Md3M5qZA', '4420748'), - (339, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Md3M5qZA', '4420749'), - (339, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Md3M5qZA', '4461883'), - (339, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Md3M5qZA', '4508342'), - (339, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Md3M5qZA', '4568602'), - (339, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Md3M5qZA', '4572153'), - (339, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Md3M5qZA', '4585962'), - (339, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Md3M5qZA', '4596356'), - (339, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Md3M5qZA', '4598860'), - (339, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Md3M5qZA', '4598861'), - (339, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Md3M5qZA', '4602797'), - (339, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Md3M5qZA', '4637896'), - (339, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Md3M5qZA', '4642994'), - (339, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Md3M5qZA', '4642995'), - (339, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Md3M5qZA', '4642996'), - (339, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Md3M5qZA', '4642997'), - (339, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Md3M5qZA', '4645687'), - (339, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Md3M5qZA', '4645698'), - (339, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Md3M5qZA', '4645704'), - (339, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Md3M5qZA', '4645705'), - (339, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Md3M5qZA', '4668385'), - (339, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Md3M5qZA', '4694407'), - (339, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Md3M5qZA', '4736497'), - (339, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Md3M5qZA', '4736499'), - (339, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Md3M5qZA', '4736500'), - (339, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Md3M5qZA', '4736503'), - (339, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Md3M5qZA', '4736504'), - (339, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Md3M5qZA', '4746789'), - (339, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'Md3M5qZA', '4753929'), - (339, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Md3M5qZA', '5038850'), - (339, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Md3M5qZA', '5045826'), - (339, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Md3M5qZA', '5132533'), - (339, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Md3M5qZA', '5186582'), - (339, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Md3M5qZA', '5186583'), - (339, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Md3M5qZA', '5186585'), - (339, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Md3M5qZA', '5190437'), - (339, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Md3M5qZA', '5195095'), - (339, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Md3M5qZA', '5215989'), - (339, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Md3M5qZA', '5223686'), - (339, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Md3M5qZA', '5247467'), - (339, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Md3M5qZA', '5260800'), - (339, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Md3M5qZA', '5269930'), - (339, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Md3M5qZA', '5271448'), - (339, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'Md3M5qZA', '5271449'), - (339, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Md3M5qZA', '5278159'), - (339, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Md3M5qZA', '5363695'), - (339, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Md3M5qZA', '5365960'), - (339, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Md3M5qZA', '5378247'), - (339, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Md3M5qZA', '5389605'), - (339, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Md3M5qZA', '5397265'), - (339, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Md3M5qZA', '5404786'), - (339, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Md3M5qZA', '5405203'), - (339, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Md3M5qZA', '5412550'), - (339, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Md3M5qZA', '5415046'), - (339, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Md3M5qZA', '5422086'), - (339, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Md3M5qZA', '5422406'), - (339, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Md3M5qZA', '5424565'), - (339, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Md3M5qZA', '5426882'), - (339, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Md3M5qZA', '5441125'), - (339, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Md3M5qZA', '5441126'), - (339, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Md3M5qZA', '5441128'), - (339, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Md3M5qZA', '5441131'), - (339, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Md3M5qZA', '5441132'), - (339, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Md3M5qZA', '5453325'), - (339, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Md3M5qZA', '5454516'), - (339, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Md3M5qZA', '5454605'), - (339, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Md3M5qZA', '5455037'), - (339, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Md3M5qZA', '5461278'), - (339, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Md3M5qZA', '5469480'), - (339, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Md3M5qZA', '5474663'), - (339, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Md3M5qZA', '5482022'), - (339, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Md3M5qZA', '5488912'), - (339, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Md3M5qZA', '5492192'), - (339, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Md3M5qZA', '5493139'), - (339, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Md3M5qZA', '5493200'), - (339, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Md3M5qZA', '5502188'), - (339, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Md3M5qZA', '5505059'), - (339, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Md3M5qZA', '5509055'), - (339, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Md3M5qZA', '5512862'), - (339, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Md3M5qZA', '5513985'), - (339, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'Md3M5qZA', '5519981'), - (339, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Md3M5qZA', '5522550'), - (339, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Md3M5qZA', '5534683'), - (339, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Md3M5qZA', '5537735'), - (339, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Md3M5qZA', '5540859'), - (339, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Md3M5qZA', '5546619'), - (339, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Md3M5qZA', '5557747'), - (339, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Md3M5qZA', '5560255'), - (339, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Md3M5qZA', '5562906'), - (339, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Md3M5qZA', '5600604'), - (339, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Md3M5qZA', '5605544'), - (339, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Md3M5qZA', '5630960'), - (339, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Md3M5qZA', '5630961'), - (339, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Md3M5qZA', '5630962'), - (339, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Md3M5qZA', '5630966'), - (339, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Md3M5qZA', '5630967'), - (339, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Md3M5qZA', '5630968'), - (339, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Md3M5qZA', '5635406'), - (339, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Md3M5qZA', '5638765'), - (339, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Md3M5qZA', '5640097'), - (339, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Md3M5qZA', '5640843'), - (339, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Md3M5qZA', '5641521'), - (339, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Md3M5qZA', '5642818'), - (339, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Md3M5qZA', '5652395'), - (339, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Md3M5qZA', '5670445'), - (339, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Md3M5qZA', '5671637'), - (339, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Md3M5qZA', '5672329'), - (339, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Md3M5qZA', '5674057'), - (339, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Md3M5qZA', '5674060'), - (339, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Md3M5qZA', '5677461'), - (339, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Md3M5qZA', '5698046'), - (339, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Md3M5qZA', '5699760'), - (339, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Md3M5qZA', '5741601'), - (339, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Md3M5qZA', '5763458'), - (339, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Md3M5qZA', '5774172'), - (339, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'Md3M5qZA', '5818247'), - (339, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Md3M5qZA', '5819471'), - (339, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'Md3M5qZA', '5827739'), - (339, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Md3M5qZA', '5844306'), - (339, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Md3M5qZA', '5850159'), - (339, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Md3M5qZA', '5858999'), - (339, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Md3M5qZA', '5871984'), - (339, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Md3M5qZA', '5876354'), - (339, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Md3M5qZA', '5880939'), - (339, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Md3M5qZA', '5880940'), - (339, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Md3M5qZA', '5880942'), - (339, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Md3M5qZA', '5880943'), - (339, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Md3M5qZA', '5887890'), - (339, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Md3M5qZA', '5888598'), - (339, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Md3M5qZA', '5893260'), - (339, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Md3M5qZA', '5899826'), - (339, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Md3M5qZA', '5900199'), - (339, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Md3M5qZA', '5900200'), - (339, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Md3M5qZA', '5900202'), - (339, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Md3M5qZA', '5900203'), - (339, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Md3M5qZA', '5901108'), - (339, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Md3M5qZA', '5901126'), - (339, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Md3M5qZA', '5909655'), - (339, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Md3M5qZA', '5910522'), - (339, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Md3M5qZA', '5910526'), - (339, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Md3M5qZA', '5910528'), - (339, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Md3M5qZA', '5916219'), - (339, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Md3M5qZA', '5936234'), - (339, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Md3M5qZA', '5958351'), - (339, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Md3M5qZA', '5959751'), - (339, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Md3M5qZA', '5959755'), - (339, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Md3M5qZA', '5960055'), - (339, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Md3M5qZA', '5961684'), - (339, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Md3M5qZA', '5962132'), - (339, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Md3M5qZA', '5962133'), - (339, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Md3M5qZA', '5962134'), - (339, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Md3M5qZA', '5962317'), - (339, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Md3M5qZA', '5962318'), - (339, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Md3M5qZA', '5965933'), - (339, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Md3M5qZA', '5967014'), - (339, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Md3M5qZA', '5972815'), - (339, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Md3M5qZA', '5974016'), - (339, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Md3M5qZA', '5981515'), - (339, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Md3M5qZA', '5993516'), - (339, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Md3M5qZA', '5998939'), - (339, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Md3M5qZA', '6028191'), - (339, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Md3M5qZA', '6040066'), - (339, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Md3M5qZA', '6042717'), - (339, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Md3M5qZA', '6044838'), - (339, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Md3M5qZA', '6044839'), - (339, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Md3M5qZA', '6045684'), - (339, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Md3M5qZA', '6050104'), - (339, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Md3M5qZA', '6053195'), - (339, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Md3M5qZA', '6053198'), - (339, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Md3M5qZA', '6056085'), - (339, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Md3M5qZA', '6056916'), - (339, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Md3M5qZA', '6059290'), - (339, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Md3M5qZA', '6060328'), - (339, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Md3M5qZA', '6061037'), - (339, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Md3M5qZA', '6061039'), - (339, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Md3M5qZA', '6067245'), - (339, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Md3M5qZA', '6068094'), - (339, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Md3M5qZA', '6068252'), - (339, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Md3M5qZA', '6068253'), - (339, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Md3M5qZA', '6068254'), - (339, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Md3M5qZA', '6068280'), - (339, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Md3M5qZA', '6069093'), - (339, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Md3M5qZA', '6072528'), - (339, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Md3M5qZA', '6079840'), - (339, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Md3M5qZA', '6083398'), - (339, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Md3M5qZA', '6093504'), - (339, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Md3M5qZA', '6097414'), - (339, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Md3M5qZA', '6097442'), - (339, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Md3M5qZA', '6097684'), - (339, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Md3M5qZA', '6098762'), - (339, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Md3M5qZA', '6101361'), - (339, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Md3M5qZA', '6101362'), - (339, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Md3M5qZA', '6107314'), - (339, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Md3M5qZA', '6120034'), - (339, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'Md3M5qZA', '6136733'), - (339, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Md3M5qZA', '6137989'), - (339, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Md3M5qZA', '6150864'), - (339, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Md3M5qZA', '6155491'), - (339, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Md3M5qZA', '6164417'), - (339, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Md3M5qZA', '6166388'), - (339, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Md3M5qZA', '6176439'), - (339, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Md3M5qZA', '6182410'), - (339, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Md3M5qZA', '6185812'), - (339, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Md3M5qZA', '6187651'), - (339, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Md3M5qZA', '6187963'), - (339, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Md3M5qZA', '6187964'), - (339, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Md3M5qZA', '6187966'), - (339, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Md3M5qZA', '6187967'), - (339, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Md3M5qZA', '6187969'), - (339, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Md3M5qZA', '6334878'), - (339, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Md3M5qZA', '6337236'), - (339, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Md3M5qZA', '6337970'), - (339, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Md3M5qZA', '6338308'), - (339, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Md3M5qZA', '6341710'), - (339, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Md3M5qZA', '6342044'), - (339, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Md3M5qZA', '6342298'), - (339, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Md3M5qZA', '6343294'), - (339, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Md3M5qZA', '6347034'), - (339, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Md3M5qZA', '6347056'), - (339, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Md3M5qZA', '6353830'), - (339, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Md3M5qZA', '6353831'), - (339, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Md3M5qZA', '6357867'), - (339, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Md3M5qZA', '6358652'), - (339, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Md3M5qZA', '6361709'), - (339, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Md3M5qZA', '6361710'), - (339, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Md3M5qZA', '6361711'), - (339, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Md3M5qZA', '6361712'), - (339, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Md3M5qZA', '6361713'), - (339, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'Md3M5qZA', '6382573'), - (339, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Md3M5qZA', '6388604'), - (339, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Md3M5qZA', '6394629'), - (339, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Md3M5qZA', '6394631'), - (339, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Md3M5qZA', '6440863'), - (339, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Md3M5qZA', '6445440'), - (339, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Md3M5qZA', '6453951'), - (339, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Md3M5qZA', '6461696'), - (339, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Md3M5qZA', '6462129'), - (339, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Md3M5qZA', '6463218'), - (339, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Md3M5qZA', '6472181'), - (339, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Md3M5qZA', '6482693'), - (339, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Md3M5qZA', '6484200'), - (339, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Md3M5qZA', '6484680'), - (339, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Md3M5qZA', '6507741'), - (339, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Md3M5qZA', '6514659'), - (339, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Md3M5qZA', '6514660'), - (339, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Md3M5qZA', '6519103'), - (339, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Md3M5qZA', '6535681'), - (339, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Md3M5qZA', '6584747'), - (339, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Md3M5qZA', '6587097'), - (339, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Md3M5qZA', '6609022'), - (339, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'Md3M5qZA', '6632757'), - (339, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Md3M5qZA', '6644187'), - (339, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Md3M5qZA', '6648951'), - (339, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Md3M5qZA', '6648952'), - (339, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Md3M5qZA', '6655401'), - (339, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Md3M5qZA', '6661585'), - (339, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Md3M5qZA', '6661588'), - (339, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Md3M5qZA', '6661589'), - (339, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Md3M5qZA', '6699906'), - (339, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Md3M5qZA', '6699913'), - (339, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Md3M5qZA', '6701109'), - (339, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Md3M5qZA', '6705219'), - (339, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Md3M5qZA', '6710153'), - (339, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Md3M5qZA', '6711552'), - (339, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'Md3M5qZA', '6711553'), - (339, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Md3M5qZA', '6722688'), - (339, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Md3M5qZA', '6730620'), - (339, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Md3M5qZA', '6740364'), - (339, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Md3M5qZA', '6743829'), - (339, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Md3M5qZA', '7030380'), - (339, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'Md3M5qZA', '7033677'), - (339, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Md3M5qZA', '7044715'), - (339, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Md3M5qZA', '7050318'), - (339, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Md3M5qZA', '7050319'), - (339, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Md3M5qZA', '7050322'), - (339, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Md3M5qZA', '7057804'), - (339, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Md3M5qZA', '7072824'), - (339, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Md3M5qZA', '7074348'), - (339, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Md3M5qZA', '7074364'), - (339, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Md3M5qZA', '7089267'), - (339, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Md3M5qZA', '7098747'), - (339, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Md3M5qZA', '7113468'), - (339, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Md3M5qZA', '7114856'), - (339, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Md3M5qZA', '7114951'), - (339, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Md3M5qZA', '7114955'), - (339, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Md3M5qZA', '7114956'), - (339, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Md3M5qZA', '7114957'), - (339, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Md3M5qZA', '7159484'), - (339, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Md3M5qZA', '7178446'), - (339, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'Md3M5qZA', '7220467'), - (339, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Md3M5qZA', '7240354'), - (339, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Md3M5qZA', '7251633'), - (339, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Md3M5qZA', '7324073'), - (339, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Md3M5qZA', '7324074'), - (339, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Md3M5qZA', '7324075'), - (339, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Md3M5qZA', '7324078'), - (339, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Md3M5qZA', '7324082'), - (339, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Md3M5qZA', '7331457'), - (339, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Md3M5qZA', '7363643'), - (339, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Md3M5qZA', '7368606'), - (339, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Md3M5qZA', '7397462'), - (339, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Md3M5qZA', '7424275'), - (339, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Md3M5qZA', '7432751'), - (339, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Md3M5qZA', '7432752'), - (339, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Md3M5qZA', '7432753'), - (339, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Md3M5qZA', '7432754'), - (339, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Md3M5qZA', '7432755'), - (339, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Md3M5qZA', '7432756'), - (339, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Md3M5qZA', '7432758'), - (339, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Md3M5qZA', '7432759'), - (339, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Md3M5qZA', '7433834'), - (339, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'Md3M5qZA', '7470197'), - (339, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Md3M5qZA', '7685613'), - (339, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Md3M5qZA', '7688194'), - (339, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Md3M5qZA', '7688196'), - (339, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Md3M5qZA', '7688289'), - (339, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Md3M5qZA', '7692763'), - (339, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Md3M5qZA', '7697552'), - (339, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Md3M5qZA', '7699878'), - (339, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Md3M5qZA', '7704043'), - (339, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Md3M5qZA', '7712467'), - (339, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Md3M5qZA', '7713585'), - (339, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Md3M5qZA', '7713586'), - (339, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Md3M5qZA', '7738518'), - (339, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Md3M5qZA', '7750636'), - (339, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Md3M5qZA', '7796540'), - (339, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Md3M5qZA', '7796541'), - (339, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Md3M5qZA', '7796542'), - (339, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Md3M5qZA', '7825913'), - (339, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Md3M5qZA', '7826209'), - (339, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Md3M5qZA', '7834742'), - (339, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Md3M5qZA', '7842108'), - (339, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Md3M5qZA', '7842902'), - (339, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Md3M5qZA', '7842903'), - (339, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Md3M5qZA', '7842904'), - (339, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Md3M5qZA', '7842905'), - (339, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Md3M5qZA', '7855719'), - (339, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Md3M5qZA', '7860683'), - (339, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Md3M5qZA', '7860684'), - (339, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Md3M5qZA', '7866095'), - (339, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Md3M5qZA', '7869170'), - (339, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Md3M5qZA', '7869188'), - (339, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Md3M5qZA', '7869201'), - (339, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Md3M5qZA', '7877465'), - (339, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Md3M5qZA', '7888250'), - (339, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Md3M5qZA', '7904777'), - (339, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Md3M5qZA', '8349164'), - (339, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Md3M5qZA', '8349545'), - (339, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Md3M5qZA', '8368028'), - (339, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Md3M5qZA', '8368029'), - (339, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Md3M5qZA', '8388462'), - (339, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Md3M5qZA', '8400273'), - (339, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Md3M5qZA', '8400275'), - (339, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'Md3M5qZA', '8400276'), - (339, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Md3M5qZA', '8404977'), - (339, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Md3M5qZA', '8430783'), - (339, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Md3M5qZA', '8430784'), - (339, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Md3M5qZA', '8430799'), - (339, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Md3M5qZA', '8430800'), - (339, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Md3M5qZA', '8430801'), - (339, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Md3M5qZA', '8438709'), - (339, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Md3M5qZA', '8457738'), - (339, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Md3M5qZA', '8459566'), - (339, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Md3M5qZA', '8459567'), - (339, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Md3M5qZA', '8461032'), - (339, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Md3M5qZA', '8477877'), - (339, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Md3M5qZA', '8485688'), - (339, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Md3M5qZA', '8490587'), - (339, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Md3M5qZA', '8493552'), - (339, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Md3M5qZA', '8493553'), - (339, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Md3M5qZA', '8493554'), - (339, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Md3M5qZA', '8493555'), - (339, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Md3M5qZA', '8493556'), - (339, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Md3M5qZA', '8493557'), - (339, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Md3M5qZA', '8493558'), - (339, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Md3M5qZA', '8493559'), - (339, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Md3M5qZA', '8493560'), - (339, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Md3M5qZA', '8493561'), - (339, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Md3M5qZA', '8493572'), - (339, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Md3M5qZA', '8540725'), - (339, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Md3M5qZA', '8555421'), - (340, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dVZgwN5d', '8438709'), - (340, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVZgwN5d', '8457738'), - (340, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVZgwN5d', '8459566'), - (340, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVZgwN5d', '8459567'), - (340, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVZgwN5d', '8461032'), - (340, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVZgwN5d', '8477877'), - (340, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dVZgwN5d', '8485688'), - (340, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dVZgwN5d', '8490587'), - (340, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVZgwN5d', '8493552'), - (340, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dVZgwN5d', '8493553'), - (340, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVZgwN5d', '8493554'), - (340, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVZgwN5d', '8493555'), - (340, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVZgwN5d', '8493556'), - (340, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVZgwN5d', '8493557'), - (340, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVZgwN5d', '8493558'), - (340, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVZgwN5d', '8493559'), - (340, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVZgwN5d', '8493560'), - (340, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dVZgwN5d', '8493561'), - (340, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVZgwN5d', '8493572'), - (340, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'dVZgwN5d', '8529058'), - (341, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dxDpDg2d', '4210314'), - (341, 893, 'not_attending', '2021-07-25 03:12:15', '2025-12-17 19:47:40', 'dxDpDg2d', '4229420'), - (341, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'dxDpDg2d', '4240317'), - (341, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'dxDpDg2d', '4240318'), - (341, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'dxDpDg2d', '4240320'), - (341, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'dxDpDg2d', '4277819'), - (341, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'dxDpDg2d', '4301723'), - (341, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'dxDpDg2d', '4302093'), - (341, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dxDpDg2d', '4304151'), - (341, 940, 'not_attending', '2021-07-30 16:29:40', '2025-12-17 19:47:40', 'dxDpDg2d', '4309049'), - (341, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'dxDpDg2d', '4315713'), - (341, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'dxDpDg2d', '4315714'), - (341, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'dxDpDg2d', '4315726'), - (341, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dxDpDg2d', '4356801'), - (341, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dxDpDg2d', '4366186'), - (341, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dxDpDg2d', '4366187'), - (341, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dxDpDg2d', '4420735'), - (341, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dxDpDg2d', '4420738'), - (341, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dxDpDg2d', '4420739'), - (341, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dxDpDg2d', '4420741'), - (341, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dxDpDg2d', '4420744'), - (341, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dxDpDg2d', '4420747'), - (341, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dxDpDg2d', '4420748'), - (341, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dxDpDg2d', '4420749'), - (341, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dxDpDg2d', '4461883'), - (341, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dxDpDg2d', '4508342'), - (341, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dxDpDg2d', '4568602'), - (341, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dxDpDg2d', '4572153'), - (341, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dxDpDg2d', '4585962'), - (341, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dxDpDg2d', '4596356'), - (341, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dxDpDg2d', '4598860'), - (341, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dxDpDg2d', '4598861'), - (341, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dxDpDg2d', '4602797'), - (341, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dxDpDg2d', '4637896'), - (341, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dxDpDg2d', '4642994'), - (341, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dxDpDg2d', '4642995'), - (341, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dxDpDg2d', '4642996'), - (341, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dxDpDg2d', '4642997'), - (341, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dxDpDg2d', '4645687'), - (341, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dxDpDg2d', '4645698'), - (341, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dxDpDg2d', '4645704'), - (341, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dxDpDg2d', '4645705'), - (341, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dxDpDg2d', '4668385'), - (341, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dxDpDg2d', '6045684'), - (342, 2133, 'not_attending', '2023-07-08 22:22:33', '2025-12-17 19:46:51', '4olZMeZd', '6187651'), - (342, 2134, 'attending', '2023-07-07 22:58:05', '2025-12-17 19:46:52', '4olZMeZd', '6187963'), - (342, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4olZMeZd', '6334878'), - (342, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', '4olZMeZd', '6334903'), - (342, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4olZMeZd', '6337236'), - (342, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4olZMeZd', '6337970'), - (342, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4olZMeZd', '6338308'), - (342, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4olZMeZd', '6341710'), - (342, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4olZMeZd', '6342044'), - (342, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4olZMeZd', '6342298'), - (342, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', '4olZMeZd', '6342591'), - (342, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4olZMeZd', '6343294'), - (342, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4olZMeZd', '6347034'), - (342, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4olZMeZd', '6347056'), - (342, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4olZMeZd', '6353830'), - (342, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4olZMeZd', '6353831'), - (342, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4olZMeZd', '6357867'), - (342, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4olZMeZd', '6358652'), - (342, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4olZMeZd', '6361709'), - (342, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4olZMeZd', '6361710'), - (342, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4olZMeZd', '6361711'), - (342, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4olZMeZd', '6361712'), - (342, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4olZMeZd', '6361713'), - (342, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4olZMeZd', '6382573'), - (342, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4olZMeZd', '6388604'), - (342, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4olZMeZd', '6394629'), - (342, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4olZMeZd', '6394631'), - (342, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4olZMeZd', '6431478'), - (343, 1668, 'not_attending', '2022-10-01 18:02:02', '2025-12-17 19:47:12', 'dwpXRp0m', '5563222'), - (343, 1730, 'attending', '2022-10-07 15:33:12', '2025-12-17 19:47:12', 'dwpXRp0m', '5634666'), - (343, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dwpXRp0m', '5635406'), - (343, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dwpXRp0m', '5638765'), - (343, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dwpXRp0m', '5640843'), - (343, 1742, 'attending', '2022-10-12 21:00:22', '2025-12-17 19:47:13', 'dwpXRp0m', '5641245'), - (343, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dwpXRp0m', '5641521'), - (343, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dwpXRp0m', '5652395'), - (343, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dwpXRp0m', '6045684'), - (344, 1379, 'not_attending', '2022-05-19 23:42:22', '2025-12-17 19:47:30', 'dl3z7pl4', '5271449'), - (344, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dl3z7pl4', '5365960'), - (344, 1409, 'not_attending', '2022-05-21 22:24:17', '2025-12-17 19:47:30', 'dl3z7pl4', '5367032'), - (344, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dl3z7pl4', '5368973'), - (344, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dl3z7pl4', '5378247'), - (344, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dl3z7pl4', '5389605'), - (344, 1432, 'attending', '2022-05-30 22:32:23', '2025-12-17 19:47:30', 'dl3z7pl4', '5391566'), - (344, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dl3z7pl4', '5397265'), - (344, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dl3z7pl4', '5403967'), - (344, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dl3z7pl4', '5404786'), - (344, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dl3z7pl4', '5405203'), - (344, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dl3z7pl4', '5408794'), - (344, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dl3z7pl4', '5411699'), - (344, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dl3z7pl4', '5412550'), - (344, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dl3z7pl4', '5415046'), - (344, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dl3z7pl4', '5422086'), - (344, 1498, 'attending', '2022-07-02 21:45:31', '2025-12-17 19:47:19', 'dl3z7pl4', '5422406'), - (344, 1502, 'not_attending', '2022-07-01 21:04:57', '2025-12-17 19:47:19', 'dl3z7pl4', '5424565'), - (344, 1504, 'attending', '2022-07-10 05:27:44', '2025-12-17 19:47:19', 'dl3z7pl4', '5426882'), - (344, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dl3z7pl4', '5427083'), - (344, 1511, 'attending', '2022-07-09 21:14:34', '2025-12-17 19:47:19', 'dl3z7pl4', '5437733'), - (344, 1513, 'not_attending', '2022-07-13 07:27:49', '2025-12-17 19:47:20', 'dl3z7pl4', '5441125'), - (344, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dl3z7pl4', '5441126'), - (344, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dl3z7pl4', '5441128'), - (344, 1517, 'attending', '2022-08-26 21:38:01', '2025-12-17 19:47:23', 'dl3z7pl4', '5441130'), - (344, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dl3z7pl4', '5441131'), - (344, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dl3z7pl4', '5441132'), - (344, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dl3z7pl4', '5446643'), - (344, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dl3z7pl4', '5453325'), - (344, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dl3z7pl4', '5454516'), - (344, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dl3z7pl4', '5454605'), - (344, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dl3z7pl4', '5455037'), - (344, 1556, 'attending', '2022-07-22 00:38:56', '2025-12-17 19:47:20', 'dl3z7pl4', '5457734'), - (344, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dl3z7pl4', '5461278'), - (344, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dl3z7pl4', '5469480'), - (344, 1564, 'maybe', '2022-07-25 19:02:21', '2025-12-17 19:47:21', 'dl3z7pl4', '5469890'), - (344, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dl3z7pl4', '5471073'), - (344, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dl3z7pl4', '5474663'), - (344, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dl3z7pl4', '5482022'), - (344, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dl3z7pl4', '5482793'), - (344, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dl3z7pl4', '5488912'), - (344, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dl3z7pl4', '5492192'), - (344, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dl3z7pl4', '5493139'), - (344, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dl3z7pl4', '5493200'), - (344, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dl3z7pl4', '5502188'), - (344, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dl3z7pl4', '5505059'), - (344, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dl3z7pl4', '5509055'), - (344, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dl3z7pl4', '5512862'), - (344, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dl3z7pl4', '5513985'), - (344, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dl3z7pl4', '5519981'), - (344, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dl3z7pl4', '5522550'), - (344, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dl3z7pl4', '5534683'), - (344, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dl3z7pl4', '5537735'), - (344, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dl3z7pl4', '5540859'), - (344, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dl3z7pl4', '5546619'), - (344, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dl3z7pl4', '5555245'), - (344, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dl3z7pl4', '5557747'), - (344, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dl3z7pl4', '5560255'), - (344, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dl3z7pl4', '5562906'), - (344, 1667, 'attending', '2022-09-20 01:08:56', '2025-12-17 19:47:11', 'dl3z7pl4', '5563221'), - (344, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dl3z7pl4', '5600604'), - (344, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dl3z7pl4', '5605544'), - (344, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'dl3z7pl4', '5606737'), - (344, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dl3z7pl4', '5630960'), - (344, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dl3z7pl4', '5630961'), - (344, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dl3z7pl4', '5630962'), - (344, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dl3z7pl4', '5630966'), - (344, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dl3z7pl4', '5630967'), - (344, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dl3z7pl4', '5630968'), - (344, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dl3z7pl4', '5635406'), - (344, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dl3z7pl4', '5638765'), - (344, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dl3z7pl4', '5640097'), - (344, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dl3z7pl4', '5640843'), - (344, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dl3z7pl4', '5641521'), - (344, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dl3z7pl4', '5642818'), - (344, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dl3z7pl4', '5652395'), - (344, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dl3z7pl4', '5670445'), - (344, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dl3z7pl4', '5671637'), - (344, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dl3z7pl4', '5672329'), - (344, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dl3z7pl4', '5674057'), - (344, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dl3z7pl4', '5674060'), - (344, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dl3z7pl4', '5677461'), - (344, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dl3z7pl4', '5698046'), - (344, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dl3z7pl4', '5699760'), - (344, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dl3z7pl4', '5741601'), - (344, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dl3z7pl4', '5763458'), - (344, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dl3z7pl4', '5774172'), - (344, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dl3z7pl4', '5818247'), - (344, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dl3z7pl4', '5819471'), - (344, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dl3z7pl4', '5827739'), - (344, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dl3z7pl4', '5844306'), - (344, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dl3z7pl4', '5850159'), - (344, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dl3z7pl4', '5858999'), - (344, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dl3z7pl4', '5871984'), - (344, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dl3z7pl4', '5876354'), - (344, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dl3z7pl4', '5880939'), - (344, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dl3z7pl4', '5887890'), - (344, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dl3z7pl4', '5888598'), - (344, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dl3z7pl4', '5893260'), - (344, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dl3z7pl4', '6045684'), - (345, 258, 'not_attending', '2021-05-30 13:09:41', '2025-12-17 19:47:47', 'VdxEKg5m', '3149489'), - (345, 397, 'maybe', '2021-05-21 22:42:11', '2025-12-17 19:47:47', 'VdxEKg5m', '3236452'), - (345, 647, 'maybe', '2021-05-22 21:07:51', '2025-12-17 19:47:47', 'VdxEKg5m', '3539922'), - (345, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'VdxEKg5m', '3539923'), - (345, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'VdxEKg5m', '3963335'), - (345, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'VdxEKg5m', '3974109'), - (345, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VdxEKg5m', '3975311'), - (345, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VdxEKg5m', '3975312'), - (345, 829, 'attending', '2021-05-31 01:52:38', '2025-12-17 19:47:47', 'VdxEKg5m', '3976202'), - (345, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VdxEKg5m', '3994992'), - (345, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VdxEKg5m', '4014338'), - (345, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'VdxEKg5m', '4021848'), - (345, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VdxEKg5m', '4136744'), - (345, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'VdxEKg5m', '4136937'), - (345, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'VdxEKg5m', '4136938'), - (345, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VdxEKg5m', '4136947'), - (345, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'VdxEKg5m', '4210314'), - (345, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VdxEKg5m', '4225444'), - (345, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VdxEKg5m', '4239259'), - (345, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'VdxEKg5m', '4240316'), - (345, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'VdxEKg5m', '4240317'), - (345, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'VdxEKg5m', '4240318'), - (345, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'VdxEKg5m', '4240320'), - (345, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VdxEKg5m', '4250163'), - (345, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'VdxEKg5m', '4275957'), - (345, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'VdxEKg5m', '4277819'), - (345, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'VdxEKg5m', '4301723'), - (345, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VdxEKg5m', '4302093'), - (345, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VdxEKg5m', '4304151'), - (345, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'VdxEKg5m', '4345519'), - (345, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VdxEKg5m', '4356801'), - (345, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'VdxEKg5m', '4358025'), - (345, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'VdxEKg5m', '4366186'), - (345, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'VdxEKg5m', '4366187'), - (345, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'VdxEKg5m', '4402823'), - (345, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'VdxEKg5m', '4420735'), - (345, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'VdxEKg5m', '4420738'), - (345, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'VdxEKg5m', '4420739'), - (345, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'VdxEKg5m', '4420741'), - (345, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'VdxEKg5m', '4420744'), - (345, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'VdxEKg5m', '4420747'), - (345, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'VdxEKg5m', '4420748'), - (345, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'VdxEKg5m', '4420749'), - (345, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VdxEKg5m', '4461883'), - (345, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'VdxEKg5m', '4508342'), - (345, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'VdxEKg5m', '4568602'), - (345, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'VdxEKg5m', '4572153'), - (345, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VdxEKg5m', '4585962'), - (345, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VdxEKg5m', '4596356'), - (345, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VdxEKg5m', '4598860'), - (345, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'VdxEKg5m', '4598861'), - (345, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'VdxEKg5m', '4602797'), - (345, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'VdxEKg5m', '4637896'), - (345, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'VdxEKg5m', '4642994'), - (345, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'VdxEKg5m', '4642995'), - (345, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'VdxEKg5m', '4642996'), - (345, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'VdxEKg5m', '4642997'), - (345, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'VdxEKg5m', '4645687'), - (345, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'VdxEKg5m', '4645698'), - (345, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'VdxEKg5m', '4645704'), - (345, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'VdxEKg5m', '4645705'), - (345, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VdxEKg5m', '4668385'), - (345, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VdxEKg5m', '4694407'), - (345, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'VdxEKg5m', '4736497'), - (345, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'VdxEKg5m', '4736499'), - (345, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'VdxEKg5m', '4736500'), - (345, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'VdxEKg5m', '4736503'), - (345, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'VdxEKg5m', '4736504'), - (345, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VdxEKg5m', '4746789'), - (345, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'VdxEKg5m', '4753929'), - (345, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VdxEKg5m', '5038850'), - (345, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VdxEKg5m', '5045826'), - (345, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VdxEKg5m', '5132533'), - (345, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'VdxEKg5m', '5186582'), - (345, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'VdxEKg5m', '5186583'), - (345, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'VdxEKg5m', '5186585'), - (345, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'VdxEKg5m', '5190437'), - (345, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'VdxEKg5m', '5215989'), - (345, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxEKg5m', '6045684'), - (346, 258, 'attending', '2021-06-27 19:08:03', '2025-12-17 19:47:47', 'LmpkKKkd', '3149489'), - (346, 262, 'attending', '2021-06-27 22:27:27', '2025-12-17 19:47:38', 'LmpkKKkd', '3149493'), - (346, 869, 'maybe', '2021-06-30 09:56:05', '2025-12-17 19:47:38', 'LmpkKKkd', '4136744'), - (346, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'LmpkKKkd', '4136937'), - (346, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'LmpkKKkd', '4136938'), - (346, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'LmpkKKkd', '4136947'), - (346, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpkKKkd', '4210314'), - (346, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpkKKkd', '4225444'), - (346, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpkKKkd', '4239259'), - (346, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'LmpkKKkd', '4240316'), - (346, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpkKKkd', '4250163'), - (346, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'LmpkKKkd', '4275957'), - (346, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpkKKkd', '6045684'), - (347, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Md3Q1OLA', '7113468'), - (347, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Md3Q1OLA', '7114856'), - (347, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'Md3Q1OLA', '7114951'), - (347, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'Md3Q1OLA', '7153615'), - (347, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Md3Q1OLA', '7159484'), - (347, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Md3Q1OLA', '7178446'), - (348, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dNMo8z74', '4356801'), - (348, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'dNMo8z74', '4366187'), - (348, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dNMo8z74', '4420735'), - (348, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dNMo8z74', '4420738'), - (348, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dNMo8z74', '4420739'), - (348, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dNMo8z74', '4420741'), - (348, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dNMo8z74', '4420744'), - (348, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dNMo8z74', '4420747'), - (348, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dNMo8z74', '4420748'), - (348, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dNMo8z74', '4420749'), - (348, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dNMo8z74', '4461883'), - (348, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dNMo8z74', '4508342'), - (348, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dNMo8z74', '4568602'), - (348, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dNMo8z74', '4572153'), - (348, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dNMo8z74', '4585962'), - (348, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dNMo8z74', '4596356'), - (348, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dNMo8z74', '4598860'), - (348, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dNMo8z74', '4598861'), - (348, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dNMo8z74', '4602797'), - (348, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dNMo8z74', '4637896'), - (348, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dNMo8z74', '4642994'), - (348, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dNMo8z74', '4642995'), - (348, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dNMo8z74', '4642996'), - (348, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dNMo8z74', '4642997'), - (348, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dNMo8z74', '4645687'), - (348, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dNMo8z74', '4645698'), - (348, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dNMo8z74', '4645704'), - (348, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dNMo8z74', '4645705'), - (348, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dNMo8z74', '4668385'), - (348, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dNMo8z74', '6045684'), - (349, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4210314'), - (349, 902, 'maybe', '2021-08-04 23:06:48', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4240318'), - (349, 903, 'attending', '2021-08-14 01:09:50', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4240320'), - (349, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'm6Y3XJ5d', '4302093'), - (349, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4304151'), - (349, 947, 'attending', '2021-08-03 16:55:37', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4315713'), - (349, 958, 'maybe', '2021-08-11 02:13:16', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4342996'), - (349, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4345519'), - (349, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4356801'), - (349, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4358025'), - (349, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4366186'), - (349, 974, 'not_attending', '2021-08-28 23:09:11', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4366187'), - (349, 978, 'attending', '2021-08-18 16:25:51', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4378509'), - (349, 988, 'not_attending', '2021-08-27 20:31:37', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4402823'), - (349, 990, 'not_attending', '2021-09-03 20:27:05', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4420735'), - (349, 991, 'not_attending', '2021-09-09 00:05:21', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4420738'), - (349, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4420739'), - (349, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4420741'), - (349, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4420744'), - (349, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4420747'), - (349, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4420748'), - (349, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4420749'), - (349, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4461883'), - (349, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4508342'), - (349, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4568602'), - (349, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4572153'), - (349, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4585962'), - (349, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4596356'), - (349, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4598860'), - (349, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4598861'), - (349, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4602797'), - (349, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4637896'), - (349, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4642994'), - (349, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4642995'), - (349, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4642996'), - (349, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm6Y3XJ5d', '4642997'), - (349, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4645687'), - (349, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4645698'), - (349, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4645704'), - (349, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4645705'), - (349, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4668385'), - (349, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4694407'), - (349, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4736497'), - (349, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4736499'), - (349, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4736500'), - (349, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm6Y3XJ5d', '4736503'), - (349, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm6Y3XJ5d', '4736504'), - (349, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm6Y3XJ5d', '4746789'), - (349, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4753929'), - (349, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm6Y3XJ5d', '5038850'), - (349, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm6Y3XJ5d', '5045826'), - (349, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6Y3XJ5d', '5132533'), - (349, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm6Y3XJ5d', '5186582'), - (349, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6Y3XJ5d', '5186583'), - (349, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6Y3XJ5d', '5186585'), - (349, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6Y3XJ5d', '5190437'), - (349, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6Y3XJ5d', '5215989'), - (349, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6Y3XJ5d', '6045684'), - (350, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841kKg7m', '6045684'), - (351, 2135, 'attending', '2023-07-18 17:05:00', '2025-12-17 19:46:52', 'dVD3MvrA', '6187964'), - (351, 2145, 'attending', '2023-07-13 00:19:14', '2025-12-17 19:46:52', 'dVD3MvrA', '6334903'), - (351, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVD3MvrA', '6337236'), - (351, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVD3MvrA', '6337970'), - (351, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'dVD3MvrA', '6338308'), - (351, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVD3MvrA', '6340845'), - (351, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVD3MvrA', '6341710'), - (351, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVD3MvrA', '6342044'), - (351, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVD3MvrA', '6342298'), - (351, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dVD3MvrA', '6343294'), - (351, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVD3MvrA', '6347034'), - (351, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVD3MvrA', '6347056'), - (351, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVD3MvrA', '6353830'), - (351, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVD3MvrA', '6353831'), - (351, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVD3MvrA', '6357867'), - (351, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVD3MvrA', '6358652'), - (351, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVD3MvrA', '6361709'), - (351, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVD3MvrA', '6361710'), - (351, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVD3MvrA', '6361711'), - (351, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVD3MvrA', '6361712'), - (351, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVD3MvrA', '6361713'), - (351, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVD3MvrA', '6382573'), - (351, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dVD3MvrA', '6388604'), - (351, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVD3MvrA', '6394629'), - (351, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVD3MvrA', '6394631'), - (351, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVD3MvrA', '6440863'), - (351, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVD3MvrA', '6445440'), - (351, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVD3MvrA', '6453951'), - (351, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVD3MvrA', '6461696'), - (351, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVD3MvrA', '6462129'), - (351, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVD3MvrA', '6463218'), - (351, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVD3MvrA', '6472181'), - (351, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVD3MvrA', '6482693'), - (351, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVD3MvrA', '6484200'), - (351, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVD3MvrA', '6484680'), - (351, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVD3MvrA', '6507741'), - (351, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVD3MvrA', '6514659'), - (351, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVD3MvrA', '6514660'), - (351, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVD3MvrA', '6519103'), - (351, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVD3MvrA', '6535681'), - (351, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVD3MvrA', '6584747'), - (351, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVD3MvrA', '6587097'), - (351, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVD3MvrA', '6609022'), - (351, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVD3MvrA', '6632757'), - (351, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVD3MvrA', '6644187'), - (351, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVD3MvrA', '6648951'), - (351, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVD3MvrA', '6648952'), - (351, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVD3MvrA', '6655401'), - (351, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVD3MvrA', '6661585'), - (351, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVD3MvrA', '6661588'), - (351, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVD3MvrA', '6661589'), - (351, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVD3MvrA', '6699906'), - (351, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVD3MvrA', '6701109'), - (351, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVD3MvrA', '6705219'), - (351, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVD3MvrA', '6710153'), - (351, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVD3MvrA', '6711552'), - (351, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVD3MvrA', '6711553'), - (351, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVD3MvrA', '6722688'), - (351, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVD3MvrA', '6730620'), - (351, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVD3MvrA', '6730642'), - (352, 853, 'maybe', '2021-08-11 22:58:54', '2025-12-17 19:47:41', 'dlO2elB4', '4015725'), - (352, 884, 'maybe', '2021-08-15 03:33:50', '2025-12-17 19:47:42', 'dlO2elB4', '4210314'), - (352, 891, 'attending', '2021-07-30 14:25:47', '2025-12-17 19:47:38', 'dlO2elB4', '4229417'), - (352, 901, 'attending', '2021-07-30 23:16:46', '2025-12-17 19:47:40', 'dlO2elB4', '4240317'), - (352, 902, 'attending', '2021-08-02 03:13:34', '2025-12-17 19:47:41', 'dlO2elB4', '4240318'), - (352, 903, 'attending', '2021-08-08 03:15:33', '2025-12-17 19:47:42', 'dlO2elB4', '4240320'), - (352, 926, 'attending', '2021-08-17 22:35:35', '2025-12-17 19:47:42', 'dlO2elB4', '4297211'), - (352, 934, 'attending', '2021-08-04 01:53:32', '2025-12-17 19:47:40', 'dlO2elB4', '4302093'), - (352, 935, 'attending', '2021-08-11 22:29:50', '2025-12-17 19:47:41', 'dlO2elB4', '4304151'), - (352, 939, 'not_attending', '2021-08-01 04:42:28', '2025-12-17 19:47:40', 'dlO2elB4', '4308354'), - (352, 940, 'not_attending', '2021-07-30 16:28:50', '2025-12-17 19:47:40', 'dlO2elB4', '4309049'), - (352, 943, 'maybe', '2021-08-08 03:14:01', '2025-12-17 19:47:41', 'dlO2elB4', '4310979'), - (352, 944, 'attending', '2021-08-08 19:38:39', '2025-12-17 19:47:41', 'dlO2elB4', '4310980'), - (352, 946, 'attending', '2021-07-31 03:44:32', '2025-12-17 19:47:40', 'dlO2elB4', '4314835'), - (352, 947, 'maybe', '2021-08-02 03:13:12', '2025-12-17 19:47:41', 'dlO2elB4', '4315713'), - (352, 952, 'attending', '2021-07-31 03:45:18', '2025-12-17 19:47:41', 'dlO2elB4', '4318286'), - (352, 953, 'attending', '2021-07-30 20:34:30', '2025-12-17 19:47:40', 'dlO2elB4', '4324152'), - (352, 955, 'attending', '2021-08-08 03:14:23', '2025-12-17 19:47:41', 'dlO2elB4', '4331588'), - (352, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dlO2elB4', '4345519'), - (352, 963, 'maybe', '2021-08-22 22:51:55', '2025-12-17 19:47:42', 'dlO2elB4', '4353159'), - (352, 964, 'maybe', '2021-08-15 03:34:48', '2025-12-17 19:47:42', 'dlO2elB4', '4353160'), - (352, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dlO2elB4', '4356801'), - (352, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'dlO2elB4', '4358025'), - (352, 973, 'attending', '2021-08-16 22:59:29', '2025-12-17 19:47:42', 'dlO2elB4', '4366186'), - (352, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dlO2elB4', '4366187'), - (352, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'dlO2elB4', '4402823'), - (352, 990, 'not_attending', '2021-09-04 23:01:53', '2025-12-17 19:47:43', 'dlO2elB4', '4420735'), - (352, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dlO2elB4', '4420738'), - (352, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dlO2elB4', '4420739'), - (352, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dlO2elB4', '4420741'), - (352, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dlO2elB4', '4420744'), - (352, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dlO2elB4', '4420747'), - (352, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dlO2elB4', '4420748'), - (352, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dlO2elB4', '4420749'), - (352, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dlO2elB4', '4461883'), - (352, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlO2elB4', '4508342'), - (352, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dlO2elB4', '4568602'), - (352, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dlO2elB4', '6045684'), - (353, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'mpOg17ld', '5534683'), - (353, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'mpOg17ld', '5537735'), - (353, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mpOg17ld', '5540859'), - (353, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpOg17ld', '5560255'), - (353, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mpOg17ld', '5562906'), - (353, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mpOg17ld', '5600604'), - (353, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpOg17ld', '5605544'), - (353, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpOg17ld', '5635406'), - (353, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpOg17ld', '5638765'), - (353, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mpOg17ld', '5640843'), - (353, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpOg17ld', '6045684'), - (354, 1515, 'maybe', '2022-08-06 08:20:36', '2025-12-17 19:47:21', 'pmbOPkXA', '5441128'), - (354, 1516, 'not_attending', '2022-08-20 20:36:26', '2025-12-17 19:47:23', 'pmbOPkXA', '5441129'), - (354, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'pmbOPkXA', '5461278'), - (354, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'pmbOPkXA', '5469480'), - (354, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'pmbOPkXA', '5471073'), - (354, 1567, 'attending', '2022-07-31 20:25:22', '2025-12-17 19:47:21', 'pmbOPkXA', '5477629'), - (354, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'pmbOPkXA', '5482022'), - (354, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'pmbOPkXA', '5482793'), - (354, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'pmbOPkXA', '5488912'), - (354, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'pmbOPkXA', '5492192'), - (354, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'pmbOPkXA', '5493139'), - (354, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'pmbOPkXA', '5493200'), - (354, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'pmbOPkXA', '5502188'), - (354, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'pmbOPkXA', '5512862'), - (354, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'pmbOPkXA', '5513985'), - (354, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'pmbOPkXA', '6045684'), - (354, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'pmbOPkXA', '7904777'), - (354, 3133, 'attending', '2025-05-25 02:41:36', '2025-12-17 19:46:14', 'pmbOPkXA', '8368030'), - (354, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'pmbOPkXA', '8388462'), - (354, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'pmbOPkXA', '8400273'), - (354, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'pmbOPkXA', '8400275'), - (354, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'pmbOPkXA', '8400276'), - (354, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'pmbOPkXA', '8404977'), - (354, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'pmbOPkXA', '8430783'), - (354, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'pmbOPkXA', '8430784'), - (354, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'pmbOPkXA', '8430799'), - (354, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'pmbOPkXA', '8430800'), - (354, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'pmbOPkXA', '8430801'), - (354, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'pmbOPkXA', '8438709'), - (354, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'pmbOPkXA', '8457738'), - (354, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'pmbOPkXA', '8459566'), - (354, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'pmbOPkXA', '8459567'), - (354, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'pmbOPkXA', '8461032'), - (354, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'pmbOPkXA', '8477877'), - (354, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'pmbOPkXA', '8485688'), - (354, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'pmbOPkXA', '8490587'), - (354, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'pmbOPkXA', '8493552'), - (354, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'pmbOPkXA', '8493553'), - (354, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'pmbOPkXA', '8493554'), - (354, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'pmbOPkXA', '8493555'), - (354, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'pmbOPkXA', '8493556'), - (354, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'pmbOPkXA', '8493557'), - (354, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'pmbOPkXA', '8493558'), - (354, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'pmbOPkXA', '8493559'), - (354, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'pmbOPkXA', '8493560'), - (354, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'pmbOPkXA', '8493561'), - (354, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'pmbOPkXA', '8493572'), - (354, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'pmbOPkXA', '8540725'), - (354, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'pmbOPkXA', '8555421'), - (355, 2410, 'not_attending', '2024-02-09 16:18:07', '2025-12-17 19:46:41', 'd5j5YLqm', '6699911'), - (355, 2411, 'maybe', '2024-02-09 16:18:15', '2025-12-17 19:46:42', 'd5j5YLqm', '6699913'), - (355, 2413, 'maybe', '2024-02-09 16:18:24', '2025-12-17 19:46:42', 'd5j5YLqm', '6700719'), - (355, 2444, 'not_attending', '2024-02-09 16:17:52', '2025-12-17 19:46:41', 'd5j5YLqm', '6734367'), - (355, 2445, 'maybe', '2024-02-09 16:18:14', '2025-12-17 19:46:41', 'd5j5YLqm', '6734368'), - (355, 2450, 'not_attending', '2024-02-09 16:18:10', '2025-12-17 19:46:41', 'd5j5YLqm', '6738807'), - (355, 2452, 'not_attending', '2024-02-09 16:18:11', '2025-12-17 19:46:41', 'd5j5YLqm', '6740361'), - (355, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd5j5YLqm', '6740364'), - (355, 2456, 'not_attending', '2024-02-09 16:17:48', '2025-12-17 19:46:41', 'd5j5YLqm', '6742202'), - (355, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd5j5YLqm', '6743829'), - (355, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd5j5YLqm', '7030380'), - (355, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd5j5YLqm', '7033677'), - (355, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd5j5YLqm', '7035415'), - (355, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd5j5YLqm', '7044715'), - (355, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd5j5YLqm', '7050318'), - (355, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd5j5YLqm', '7050319'), - (355, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd5j5YLqm', '7050322'), - (355, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd5j5YLqm', '7057804'), - (355, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd5j5YLqm', '7072824'), - (355, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd5j5YLqm', '7074348'), - (355, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd5j5YLqm', '7089267'), - (355, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd5j5YLqm', '7098747'), - (355, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd5j5YLqm', '7113468'), - (355, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd5j5YLqm', '7114856'), - (355, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd5j5YLqm', '7114951'), - (355, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd5j5YLqm', '7114955'), - (355, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd5j5YLqm', '7114956'), - (355, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd5j5YLqm', '7153615'), - (355, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd5j5YLqm', '7159484'), - (355, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd5j5YLqm', '7178446'), - (356, 1274, 'not_attending', '2022-03-30 12:31:48', '2025-12-17 19:47:26', 'QdJXvVnA', '5186585'), - (356, 1281, 'not_attending', '2022-04-09 22:15:36', '2025-12-17 19:47:27', 'QdJXvVnA', '5190437'), - (356, 1284, 'not_attending', '2022-04-21 18:08:36', '2025-12-17 19:47:27', 'QdJXvVnA', '5195095'), - (356, 1289, 'attending', '2022-03-31 22:14:37', '2025-12-17 19:47:25', 'QdJXvVnA', '5200190'), - (356, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'QdJXvVnA', '5215989'), - (356, 1307, 'not_attending', '2022-04-05 16:11:33', '2025-12-17 19:47:27', 'QdJXvVnA', '5223686'), - (356, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'QdJXvVnA', '5227432'), - (356, 1346, 'not_attending', '2022-04-21 17:58:17', '2025-12-17 19:47:27', 'QdJXvVnA', '5247467'), - (356, 1354, 'not_attending', '2022-04-21 17:58:10', '2025-12-17 19:47:27', 'QdJXvVnA', '5252569'), - (356, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'QdJXvVnA', '5260800'), - (356, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'QdJXvVnA', '5269930'), - (356, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'QdJXvVnA', '5271448'), - (356, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'QdJXvVnA', '5271449'), - (356, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'QdJXvVnA', '5276469'), - (356, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'QdJXvVnA', '5277078'), - (356, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'QdJXvVnA', '5278159'), - (356, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'QdJXvVnA', '5363695'), - (356, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'QdJXvVnA', '5365960'), - (356, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'QdJXvVnA', '5368973'), - (356, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'QdJXvVnA', '5378247'), - (356, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'QdJXvVnA', '5389605'), - (356, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'QdJXvVnA', '5397265'), - (356, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'QdJXvVnA', '5403967'), - (356, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'QdJXvVnA', '5404786'), - (356, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'QdJXvVnA', '5405203'), - (356, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'QdJXvVnA', '5411699'), - (356, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'QdJXvVnA', '5412550'), - (356, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'QdJXvVnA', '5415046'), - (356, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'QdJXvVnA', '5422086'), - (356, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'QdJXvVnA', '5422406'), - (356, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'QdJXvVnA', '5424565'), - (356, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'QdJXvVnA', '5426882'), - (356, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'QdJXvVnA', '5427083'), - (356, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'QdJXvVnA', '5441125'), - (356, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'QdJXvVnA', '5441126'), - (356, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'QdJXvVnA', '5441128'), - (356, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'QdJXvVnA', '5441131'), - (356, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'QdJXvVnA', '5441132'), - (356, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'QdJXvVnA', '5446643'), - (356, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'QdJXvVnA', '5453325'), - (356, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'QdJXvVnA', '5454516'), - (356, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'QdJXvVnA', '5454605'), - (356, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'QdJXvVnA', '5455037'), - (356, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'QdJXvVnA', '5461278'), - (356, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'QdJXvVnA', '5469480'), - (356, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'QdJXvVnA', '5471073'), - (356, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'QdJXvVnA', '5474663'), - (356, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'QdJXvVnA', '5482022'), - (356, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'QdJXvVnA', '5482793'), - (356, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'QdJXvVnA', '5488912'), - (356, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'QdJXvVnA', '5492192'), - (356, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'QdJXvVnA', '5493139'), - (356, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'QdJXvVnA', '5493200'), - (356, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'QdJXvVnA', '5502188'), - (356, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'QdJXvVnA', '5505059'), - (356, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'QdJXvVnA', '5509055'), - (356, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'QdJXvVnA', '5512862'), - (356, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'QdJXvVnA', '5513985'), - (356, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'QdJXvVnA', '5519981'), - (356, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'QdJXvVnA', '5522550'), - (356, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'QdJXvVnA', '5534683'), - (356, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'QdJXvVnA', '5537735'), - (356, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'QdJXvVnA', '5540859'), - (356, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'QdJXvVnA', '5546619'), - (356, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'QdJXvVnA', '5555245'), - (356, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'QdJXvVnA', '5557747'), - (356, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'QdJXvVnA', '5560255'), - (356, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'QdJXvVnA', '5562906'), - (356, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'QdJXvVnA', '5600604'), - (356, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'QdJXvVnA', '5605544'), - (356, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'QdJXvVnA', '5606737'), - (356, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'QdJXvVnA', '5635406'), - (356, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'QdJXvVnA', '5638765'), - (356, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'QdJXvVnA', '5640843'), - (356, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'QdJXvVnA', '5641521'), - (356, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJXvVnA', '6045684'), - (357, 1086, 'not_attending', '2021-10-14 01:39:47', '2025-12-17 19:47:35', 'AXB8j9vd', '4568602'), - (357, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'AXB8j9vd', '4572153'), - (357, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'AXB8j9vd', '4585962'), - (357, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'AXB8j9vd', '4596356'), - (357, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AXB8j9vd', '4598860'), - (357, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AXB8j9vd', '4598861'), - (357, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'AXB8j9vd', '4602797'), - (357, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AXB8j9vd', '4637896'), - (357, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AXB8j9vd', '4642994'), - (357, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AXB8j9vd', '4642995'), - (357, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AXB8j9vd', '4642996'), - (357, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AXB8j9vd', '4642997'), - (357, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AXB8j9vd', '4645687'), - (357, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AXB8j9vd', '4645698'), - (357, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AXB8j9vd', '4645704'), - (357, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AXB8j9vd', '4645705'), - (357, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AXB8j9vd', '4668385'), - (357, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'AXB8j9vd', '4694407'), - (357, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'AXB8j9vd', '4736497'), - (357, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'AXB8j9vd', '4736499'), - (357, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'AXB8j9vd', '4736500'), - (357, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'AXB8j9vd', '4736503'), - (357, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'AXB8j9vd', '4736504'), - (357, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AXB8j9vd', '4746789'), - (357, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AXB8j9vd', '4753929'), - (357, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'AXB8j9vd', '5038850'), - (357, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AXB8j9vd', '5045826'), - (357, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'AXB8j9vd', '5132533'), - (357, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'AXB8j9vd', '5186582'), - (357, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'AXB8j9vd', '5186583'), - (357, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'AXB8j9vd', '5186585'), - (357, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'AXB8j9vd', '5190437'), - (357, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AXB8j9vd', '5195095'), - (357, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AXB8j9vd', '5215989'), - (357, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AXB8j9vd', '5223686'), - (357, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AXB8j9vd', '5247467'), - (357, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AXB8j9vd', '5260800'), - (357, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AXB8j9vd', '5269930'), - (357, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AXB8j9vd', '5271448'), - (357, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'AXB8j9vd', '5271449'), - (357, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AXB8j9vd', '5278159'), - (357, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AXB8j9vd', '5363695'), - (357, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AXB8j9vd', '5365960'), - (357, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AXB8j9vd', '5378247'), - (357, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AXB8j9vd', '5389605'), - (357, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AXB8j9vd', '5397265'), - (357, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AXB8j9vd', '5404786'), - (357, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AXB8j9vd', '5405203'), - (357, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AXB8j9vd', '5412550'), - (357, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AXB8j9vd', '5415046'), - (357, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AXB8j9vd', '5422086'), - (357, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AXB8j9vd', '5422406'), - (357, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AXB8j9vd', '5424565'), - (357, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AXB8j9vd', '5426882'), - (357, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AXB8j9vd', '5441125'), - (357, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AXB8j9vd', '5441126'), - (357, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AXB8j9vd', '5441128'), - (357, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AXB8j9vd', '5441131'), - (357, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AXB8j9vd', '5441132'), - (357, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AXB8j9vd', '5453325'), - (357, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AXB8j9vd', '5454516'), - (357, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AXB8j9vd', '5454605'), - (357, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AXB8j9vd', '5455037'), - (357, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AXB8j9vd', '5461278'), - (357, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AXB8j9vd', '5469480'), - (357, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AXB8j9vd', '5474663'), - (357, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AXB8j9vd', '5482022'), - (357, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AXB8j9vd', '5488912'), - (357, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AXB8j9vd', '5492192'), - (357, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AXB8j9vd', '5493139'), - (357, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AXB8j9vd', '5493200'), - (357, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AXB8j9vd', '5502188'), - (357, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AXB8j9vd', '5505059'), - (357, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AXB8j9vd', '5509055'), - (357, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AXB8j9vd', '5512862'), - (357, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AXB8j9vd', '5513985'), - (357, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'AXB8j9vd', '5519981'), - (357, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AXB8j9vd', '5522550'), - (357, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AXB8j9vd', '5534683'), - (357, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AXB8j9vd', '5537735'), - (357, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AXB8j9vd', '5540859'), - (357, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AXB8j9vd', '5546619'), - (357, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AXB8j9vd', '5557747'), - (357, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AXB8j9vd', '5560255'), - (357, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AXB8j9vd', '5562906'), - (357, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AXB8j9vd', '5600604'), - (357, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AXB8j9vd', '5605544'), - (357, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'AXB8j9vd', '5606737'), - (357, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AXB8j9vd', '5630960'), - (357, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AXB8j9vd', '5630961'), - (357, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AXB8j9vd', '5630962'), - (357, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AXB8j9vd', '5630966'), - (357, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AXB8j9vd', '5630967'), - (357, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AXB8j9vd', '5630968'), - (357, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AXB8j9vd', '5635406'), - (357, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AXB8j9vd', '5638765'), - (357, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AXB8j9vd', '5640097'), - (357, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AXB8j9vd', '5640843'), - (357, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AXB8j9vd', '5641521'), - (357, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AXB8j9vd', '5642818'), - (357, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AXB8j9vd', '5652395'), - (357, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AXB8j9vd', '5670445'), - (357, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AXB8j9vd', '5671637'), - (357, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AXB8j9vd', '5672329'), - (357, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AXB8j9vd', '5674057'), - (357, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AXB8j9vd', '5674060'), - (357, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AXB8j9vd', '5677461'), - (357, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AXB8j9vd', '5698046'), - (357, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AXB8j9vd', '5699760'), - (357, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AXB8j9vd', '5741601'), - (357, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AXB8j9vd', '5763458'), - (357, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AXB8j9vd', '5774172'), - (357, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'AXB8j9vd', '5818247'), - (357, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AXB8j9vd', '5819471'), - (357, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AXB8j9vd', '5827739'), - (357, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AXB8j9vd', '5844306'), - (357, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AXB8j9vd', '5850159'), - (357, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AXB8j9vd', '5858999'), - (357, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AXB8j9vd', '5871984'), - (357, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AXB8j9vd', '5876354'), - (357, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'AXB8j9vd', '5880939'), - (357, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AXB8j9vd', '5880940'), - (357, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AXB8j9vd', '5880942'), - (357, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AXB8j9vd', '5880943'), - (357, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AXB8j9vd', '5887890'), - (357, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AXB8j9vd', '5888598'), - (357, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AXB8j9vd', '5893260'), - (357, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AXB8j9vd', '5899826'), - (357, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AXB8j9vd', '5900199'), - (357, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AXB8j9vd', '5900200'), - (357, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AXB8j9vd', '5900202'), - (357, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AXB8j9vd', '5900203'), - (357, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AXB8j9vd', '5901108'), - (357, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AXB8j9vd', '5901126'), - (357, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AXB8j9vd', '5909655'), - (357, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AXB8j9vd', '5910522'), - (357, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AXB8j9vd', '5910526'), - (357, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AXB8j9vd', '5910528'), - (357, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AXB8j9vd', '5916219'), - (357, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AXB8j9vd', '5936234'), - (357, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AXB8j9vd', '5958351'), - (357, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AXB8j9vd', '5959751'), - (357, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AXB8j9vd', '5959755'), - (357, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AXB8j9vd', '5960055'), - (357, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AXB8j9vd', '5961684'), - (357, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'AXB8j9vd', '5962132'), - (357, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AXB8j9vd', '5962133'), - (357, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AXB8j9vd', '5962134'), - (357, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AXB8j9vd', '5962317'), - (357, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AXB8j9vd', '5962318'), - (357, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AXB8j9vd', '5965933'), - (357, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AXB8j9vd', '5967014'), - (357, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AXB8j9vd', '5972815'), - (357, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AXB8j9vd', '5974016'), - (357, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AXB8j9vd', '5981515'), - (357, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AXB8j9vd', '5993516'), - (357, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AXB8j9vd', '5998939'), - (357, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AXB8j9vd', '6028191'), - (357, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AXB8j9vd', '6040066'), - (357, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AXB8j9vd', '6042717'), - (357, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AXB8j9vd', '6044838'), - (357, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AXB8j9vd', '6044839'), - (357, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXB8j9vd', '6045684'), - (357, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AXB8j9vd', '6050104'), - (357, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AXB8j9vd', '6053195'), - (357, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AXB8j9vd', '6053198'), - (357, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AXB8j9vd', '6056085'), - (357, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AXB8j9vd', '6056916'), - (357, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AXB8j9vd', '6059290'), - (357, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AXB8j9vd', '6060328'), - (357, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AXB8j9vd', '6061037'), - (357, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AXB8j9vd', '6061039'), - (357, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AXB8j9vd', '6067245'), - (357, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AXB8j9vd', '6068094'), - (357, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AXB8j9vd', '6068252'), - (357, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AXB8j9vd', '6068253'), - (357, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AXB8j9vd', '6068254'), - (357, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'AXB8j9vd', '6068280'), - (357, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AXB8j9vd', '6069093'), - (357, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'AXB8j9vd', '6072528'), - (357, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AXB8j9vd', '6079840'), - (357, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AXB8j9vd', '6083398'), - (357, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'AXB8j9vd', '6093504'), - (357, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AXB8j9vd', '6097414'), - (357, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AXB8j9vd', '6097442'), - (357, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AXB8j9vd', '6097684'), - (357, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AXB8j9vd', '6098762'), - (357, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AXB8j9vd', '6101361'), - (357, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AXB8j9vd', '6101362'), - (357, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AXB8j9vd', '6107314'), - (357, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'AXB8j9vd', '6120034'), - (357, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AXB8j9vd', '6136733'), - (357, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AXB8j9vd', '6137989'), - (357, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AXB8j9vd', '6150864'), - (357, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'AXB8j9vd', '6155491'), - (357, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AXB8j9vd', '6164417'), - (357, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AXB8j9vd', '6166388'), - (357, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'AXB8j9vd', '6176439'), - (357, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AXB8j9vd', '6182410'), - (357, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AXB8j9vd', '6185812'), - (357, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AXB8j9vd', '6187651'), - (357, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AXB8j9vd', '6187963'), - (357, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AXB8j9vd', '6187964'), - (357, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AXB8j9vd', '6187966'), - (357, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AXB8j9vd', '6187967'), - (357, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AXB8j9vd', '6187969'), - (357, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AXB8j9vd', '6334878'), - (357, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AXB8j9vd', '6337236'), - (357, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AXB8j9vd', '6337970'), - (357, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AXB8j9vd', '6338308'), - (357, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AXB8j9vd', '6341710'), - (357, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AXB8j9vd', '6342044'), - (357, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AXB8j9vd', '6342298'), - (357, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AXB8j9vd', '6343294'), - (357, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AXB8j9vd', '6347034'), - (357, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AXB8j9vd', '6347056'), - (357, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AXB8j9vd', '6353830'), - (357, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AXB8j9vd', '6353831'), - (357, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AXB8j9vd', '6357867'), - (357, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AXB8j9vd', '6358652'), - (357, 2196, 'maybe', '2023-09-07 03:09:17', '2025-12-17 19:46:56', 'AXB8j9vd', '6359398'), - (357, 2197, 'attending', '2023-09-15 22:16:48', '2025-12-17 19:46:44', 'AXB8j9vd', '6359399'), - (357, 2198, 'attending', '2023-09-22 22:46:46', '2025-12-17 19:46:45', 'AXB8j9vd', '6359400'), - (357, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AXB8j9vd', '6361709'), - (357, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AXB8j9vd', '6361710'), - (357, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AXB8j9vd', '6361711'), - (357, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AXB8j9vd', '6361712'), - (357, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AXB8j9vd', '6361713'), - (357, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AXB8j9vd', '6382573'), - (357, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AXB8j9vd', '6388604'), - (357, 2247, 'attending', '2023-09-06 20:36:31', '2025-12-17 19:46:56', 'AXB8j9vd', '6394628'), - (357, 2248, 'attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AXB8j9vd', '6394629'), - (357, 2249, 'attending', '2023-09-20 21:51:25', '2025-12-17 19:46:45', 'AXB8j9vd', '6394630'), - (357, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AXB8j9vd', '6394631'), - (357, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AXB8j9vd', '6440863'), - (357, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AXB8j9vd', '6445440'), - (357, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AXB8j9vd', '6453951'), - (357, 2284, 'maybe', '2023-10-13 01:33:29', '2025-12-17 19:46:46', 'AXB8j9vd', '6460928'), - (357, 2285, 'attending', '2023-10-27 21:57:00', '2025-12-17 19:46:47', 'AXB8j9vd', '6460929'), - (357, 2286, 'attending', '2023-12-01 03:11:57', '2025-12-17 19:46:48', 'AXB8j9vd', '6460930'), - (357, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AXB8j9vd', '6461696'), - (357, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AXB8j9vd', '6462129'), - (357, 2290, 'maybe', '2023-10-18 22:37:44', '2025-12-17 19:46:46', 'AXB8j9vd', '6462214'), - (357, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AXB8j9vd', '6463218'), - (357, 2299, 'maybe', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AXB8j9vd', '6472181'), - (357, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AXB8j9vd', '6482693'), - (357, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'AXB8j9vd', '6484200'), - (357, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AXB8j9vd', '6484680'), - (357, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AXB8j9vd', '6507741'), - (357, 2322, 'not_attending', '2023-11-14 00:05:00', '2025-12-17 19:46:48', 'AXB8j9vd', '6514659'), - (357, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AXB8j9vd', '6514660'), - (357, 2324, 'attending', '2023-12-09 23:08:46', '2025-12-17 19:46:49', 'AXB8j9vd', '6514662'), - (357, 2327, 'maybe', '2023-11-02 23:27:38', '2025-12-17 19:46:47', 'AXB8j9vd', '6515494'), - (357, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AXB8j9vd', '6519103'), - (357, 2335, 'attending', '2023-11-10 23:38:00', '2025-12-17 19:46:47', 'AXB8j9vd', '6534890'), - (357, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AXB8j9vd', '6535681'), - (357, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AXB8j9vd', '6584747'), - (357, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AXB8j9vd', '6587097'), - (357, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AXB8j9vd', '6609022'), - (357, 2364, 'attending', '2023-12-08 23:21:05', '2025-12-17 19:46:49', 'AXB8j9vd', '6613011'), - (357, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AXB8j9vd', '6632757'), - (357, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AXB8j9vd', '6644187'), - (357, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AXB8j9vd', '6648951'), - (357, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AXB8j9vd', '6648952'), - (357, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AXB8j9vd', '6655401'), - (357, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AXB8j9vd', '6661585'), - (357, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AXB8j9vd', '6661588'), - (357, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AXB8j9vd', '6661589'), - (357, 2406, 'attending', '2024-01-19 23:24:10', '2025-12-17 19:46:40', 'AXB8j9vd', '6692344'), - (357, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AXB8j9vd', '6699906'), - (357, 2409, 'attending', '2024-02-04 00:50:11', '2025-12-17 19:46:41', 'AXB8j9vd', '6699909'), - (357, 2410, 'attending', '2024-02-11 00:48:42', '2025-12-17 19:46:41', 'AXB8j9vd', '6699911'), - (357, 2411, 'maybe', '2024-02-11 03:17:54', '2025-12-17 19:46:42', 'AXB8j9vd', '6699913'), - (357, 2412, 'not_attending', '2024-02-11 03:18:05', '2025-12-17 19:46:43', 'AXB8j9vd', '6700717'), - (357, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AXB8j9vd', '6701109'), - (357, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AXB8j9vd', '6705219'), - (357, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AXB8j9vd', '6710153'), - (357, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AXB8j9vd', '6711552'), - (357, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AXB8j9vd', '6711553'), - (357, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AXB8j9vd', '6722688'), - (357, 2438, 'attending', '2024-02-08 00:47:55', '2025-12-17 19:46:41', 'AXB8j9vd', '6730201'), - (357, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AXB8j9vd', '6730620'), - (357, 2444, 'attending', '2024-02-09 21:32:31', '2025-12-17 19:46:41', 'AXB8j9vd', '6734367'), - (357, 2446, 'maybe', '2024-03-02 00:05:10', '2025-12-17 19:46:43', 'AXB8j9vd', '6734369'), - (357, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AXB8j9vd', '6740364'), - (357, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AXB8j9vd', '6743829'), - (357, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AXB8j9vd', '7030380'), - (357, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AXB8j9vd', '7033677'), - (357, 2474, 'maybe', '2024-02-24 23:51:00', '2025-12-17 19:46:43', 'AXB8j9vd', '7035415'), - (357, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AXB8j9vd', '7044715'), - (357, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AXB8j9vd', '7050318'), - (357, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AXB8j9vd', '7050319'), - (357, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AXB8j9vd', '7050322'), - (357, 2498, 'maybe', '2024-03-20 22:00:15', '2025-12-17 19:46:33', 'AXB8j9vd', '7057662'), - (357, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AXB8j9vd', '7057804'), - (357, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AXB8j9vd', '7072824'), - (357, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AXB8j9vd', '7074348'), - (357, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AXB8j9vd', '7074364'), - (357, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AXB8j9vd', '7089267'), - (357, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AXB8j9vd', '7098747'), - (357, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AXB8j9vd', '7113468'), - (357, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AXB8j9vd', '7114856'), - (357, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AXB8j9vd', '7114951'), - (357, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AXB8j9vd', '7114955'), - (357, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AXB8j9vd', '7114956'), - (357, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AXB8j9vd', '7114957'), - (357, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AXB8j9vd', '7159484'), - (357, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AXB8j9vd', '7178446'), - (357, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AXB8j9vd', '7220467'), - (357, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AXB8j9vd', '7240354'), - (357, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AXB8j9vd', '7251633'), - (357, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AXB8j9vd', '7324073'), - (357, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AXB8j9vd', '7324074'), - (357, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AXB8j9vd', '7324075'), - (357, 2691, 'maybe', '2024-07-19 01:53:19', '2025-12-17 19:46:30', 'AXB8j9vd', '7324076'), - (357, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AXB8j9vd', '7324078'), - (357, 2696, 'attending', '2024-08-24 22:55:53', '2025-12-17 19:46:32', 'AXB8j9vd', '7324081'), - (357, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AXB8j9vd', '7324082'), - (357, 2700, 'maybe', '2024-06-14 22:00:08', '2025-12-17 19:46:28', 'AXB8j9vd', '7324388'), - (357, 2706, 'attending', '2024-06-19 22:53:28', '2025-12-17 19:46:28', 'AXB8j9vd', '7324947'), - (357, 2712, 'maybe', '2024-08-02 22:13:08', '2025-12-17 19:46:31', 'AXB8j9vd', '7326525'), - (357, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AXB8j9vd', '7331457'), - (357, 2724, 'attending', '2024-06-26 21:58:24', '2025-12-17 19:46:29', 'AXB8j9vd', '7332562'), - (357, 2737, 'maybe', '2024-07-02 22:06:09', '2025-12-17 19:46:29', 'AXB8j9vd', '7344070'), - (357, 2742, 'maybe', '2024-07-03 22:55:15', '2025-12-17 19:46:29', 'AXB8j9vd', '7345167'), - (357, 2747, 'attending', '2024-07-17 22:39:19', '2025-12-17 19:46:30', 'AXB8j9vd', '7353587'), - (357, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'AXB8j9vd', '7363643'), - (357, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AXB8j9vd', '7368606'), - (357, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AXB8j9vd', '7397462'), - (357, 2806, 'maybe', '2024-09-18 21:35:50', '2025-12-17 19:46:25', 'AXB8j9vd', '7404888'), - (357, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AXB8j9vd', '7424275'), - (357, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AXB8j9vd', '7432751'), - (357, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AXB8j9vd', '7432752'), - (357, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AXB8j9vd', '7432753'), - (357, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AXB8j9vd', '7432754'), - (357, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AXB8j9vd', '7432755'), - (357, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AXB8j9vd', '7432756'), - (357, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AXB8j9vd', '7432758'), - (357, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AXB8j9vd', '7432759'), - (357, 2832, 'maybe', '2024-09-09 21:59:56', '2025-12-17 19:46:24', 'AXB8j9vd', '7433324'), - (357, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AXB8j9vd', '7433834'), - (357, 2838, 'maybe', '2024-09-27 21:49:31', '2025-12-17 19:46:25', 'AXB8j9vd', '7439182'), - (357, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AXB8j9vd', '7470197'), - (357, 2865, 'maybe', '2024-11-01 21:57:33', '2025-12-17 19:46:26', 'AXB8j9vd', '7471200'), - (357, 2876, 'maybe', '2024-10-08 22:48:25', '2025-12-17 19:46:26', 'AXB8j9vd', '7490980'), - (357, 2881, 'maybe', '2024-11-06 23:24:56', '2025-12-17 19:46:26', 'AXB8j9vd', '7644047'), - (357, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AXB8j9vd', '7685613'), - (357, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AXB8j9vd', '7688194'), - (357, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AXB8j9vd', '7688196'), - (357, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AXB8j9vd', '7688289'), - (357, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AXB8j9vd', '7692763'), - (357, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AXB8j9vd', '7697552'), - (357, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AXB8j9vd', '7699878'), - (357, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AXB8j9vd', '7704043'), - (357, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AXB8j9vd', '7712467'), - (357, 2925, 'maybe', '2024-12-09 23:11:15', '2025-12-17 19:46:21', 'AXB8j9vd', '7713584'), - (357, 2926, 'maybe', '2024-12-05 23:55:00', '2025-12-17 19:46:21', 'AXB8j9vd', '7713585'), - (357, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AXB8j9vd', '7713586'), - (357, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AXB8j9vd', '7738518'), - (357, 2963, 'maybe', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AXB8j9vd', '7750636'), - (357, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AXB8j9vd', '7796540'), - (357, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AXB8j9vd', '7796541'), - (357, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AXB8j9vd', '7796542'), - (357, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AXB8j9vd', '7825913'), - (357, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AXB8j9vd', '7826209'), - (357, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AXB8j9vd', '7834742'), - (357, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AXB8j9vd', '7842108'), - (357, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AXB8j9vd', '7842902'), - (357, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AXB8j9vd', '7842903'), - (357, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AXB8j9vd', '7842904'), - (357, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AXB8j9vd', '7842905'), - (357, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AXB8j9vd', '7855719'), - (357, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AXB8j9vd', '7860683'), - (357, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AXB8j9vd', '7860684'), - (357, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AXB8j9vd', '7866095'), - (357, 3013, 'maybe', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AXB8j9vd', '7869170'), - (357, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AXB8j9vd', '7869188'), - (357, 3029, 'attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AXB8j9vd', '7869201'), - (357, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AXB8j9vd', '7877465'), - (357, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AXB8j9vd', '7888250'), - (357, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AXB8j9vd', '7904777'), - (357, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AXB8j9vd', '8349164'), - (357, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AXB8j9vd', '8349545'), - (357, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AXB8j9vd', '8368028'), - (357, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AXB8j9vd', '8368029'), - (357, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AXB8j9vd', '8388462'), - (357, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AXB8j9vd', '8400273'), - (357, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AXB8j9vd', '8400275'), - (357, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'AXB8j9vd', '8400276'), - (357, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AXB8j9vd', '8404977'), - (357, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AXB8j9vd', '8430783'), - (357, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AXB8j9vd', '8430784'), - (357, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AXB8j9vd', '8430799'), - (357, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AXB8j9vd', '8430800'), - (357, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AXB8j9vd', '8430801'), - (357, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AXB8j9vd', '8438709'), - (357, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AXB8j9vd', '8457738'), - (357, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AXB8j9vd', '8459566'), - (357, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AXB8j9vd', '8459567'), - (357, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AXB8j9vd', '8461032'), - (357, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AXB8j9vd', '8477877'), - (357, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AXB8j9vd', '8485688'), - (357, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AXB8j9vd', '8490587'), - (357, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AXB8j9vd', '8493552'), - (357, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AXB8j9vd', '8493553'), - (357, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AXB8j9vd', '8493554'), - (357, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AXB8j9vd', '8493555'), - (357, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AXB8j9vd', '8493556'), - (357, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AXB8j9vd', '8493557'), - (357, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AXB8j9vd', '8493558'), - (357, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AXB8j9vd', '8493559'), - (357, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AXB8j9vd', '8493560'), - (357, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AXB8j9vd', '8493561'), - (357, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AXB8j9vd', '8493572'), - (357, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AXB8j9vd', '8540725'), - (357, 3289, 'maybe', '2025-10-24 23:59:35', '2025-12-17 19:46:14', 'AXB8j9vd', '8542939'), - (357, 3307, 'attending', '2025-12-18 01:32:41', '2025-12-18 01:33:22', NULL, NULL), - (357, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AXB8j9vd', '8555421'), - (358, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxEB7wm', '6045684'), - (359, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'dKwqnXRd', '7114951'), - (359, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dKwqnXRd', '7114956'), - (359, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dKwqnXRd', '7114957'), - (359, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKwqnXRd', '7153615'), - (359, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKwqnXRd', '7159484'), - (359, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKwqnXRd', '7178446'), - (359, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dKwqnXRd', '7220467'), - (359, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dKwqnXRd', '7240354'), - (359, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dKwqnXRd', '7251633'), - (359, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'dKwqnXRd', '7265589'), - (360, 1353, 'attending', '2022-04-24 02:54:43', '2025-12-17 19:47:27', 'dVbMP86d', '5251777'), - (360, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dVbMP86d', '5260800'), - (360, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dVbMP86d', '5269930'), - (360, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dVbMP86d', '5271448'), - (360, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dVbMP86d', '5271449'), - (360, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dVbMP86d', '5276469'), - (360, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVbMP86d', '5278159'), - (360, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dVbMP86d', '5363695'), - (360, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVbMP86d', '5365960'), - (360, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dVbMP86d', '5368973'), - (360, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVbMP86d', '5378247'), - (360, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dVbMP86d', '5389605'), - (360, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dVbMP86d', '5397265'), - (360, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbMP86d', '6045684'), - (361, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mLLZ0VQm', '6164417'), - (361, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mLLZ0VQm', '6166388'), - (361, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mLLZ0VQm', '6176439'), - (361, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'mLLZ0VQm', '6177485'), - (361, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mLLZ0VQm', '6182410'), - (361, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mLLZ0VQm', '6185812'), - (361, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mLLZ0VQm', '6187651'), - (361, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mLLZ0VQm', '6187963'), - (361, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mLLZ0VQm', '6187964'), - (361, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mLLZ0VQm', '6187966'), - (361, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mLLZ0VQm', '6187967'), - (361, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mLLZ0VQm', '6187969'), - (361, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mLLZ0VQm', '6334878'), - (361, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', 'mLLZ0VQm', '6334903'), - (361, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mLLZ0VQm', '6337236'), - (361, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mLLZ0VQm', '6337970'), - (361, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mLLZ0VQm', '6338308'), - (361, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mLLZ0VQm', '6341710'), - (361, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mLLZ0VQm', '6342044'), - (361, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mLLZ0VQm', '6342298'), - (361, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'mLLZ0VQm', '6342591'), - (361, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mLLZ0VQm', '6343294'), - (361, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mLLZ0VQm', '6347034'), - (361, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mLLZ0VQm', '6347056'), - (361, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mLLZ0VQm', '6353830'), - (361, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mLLZ0VQm', '6353831'), - (361, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mLLZ0VQm', '6357867'), - (361, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mLLZ0VQm', '6358652'), - (361, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mLLZ0VQm', '6361709'), - (361, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mLLZ0VQm', '6361710'), - (361, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mLLZ0VQm', '6361711'), - (361, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mLLZ0VQm', '6361712'), - (361, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mLLZ0VQm', '6361713'), - (361, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mLLZ0VQm', '6382573'), - (361, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mLLZ0VQm', '6388604'), - (361, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mLLZ0VQm', '6394629'), - (361, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mLLZ0VQm', '6394631'), - (361, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mLLZ0VQm', '6431478'), - (362, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2VKpZod', '6045684'), - (363, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WPkqONd', '6045684'), - (364, 1117, 'attending', '2021-12-08 20:37:03', '2025-12-17 19:47:37', 'dxDx6GEd', '4642995'), - (364, 1122, 'maybe', '2021-12-03 00:25:43', '2025-12-17 19:47:37', 'dxDx6GEd', '4644023'), - (364, 1130, 'attending', '2021-12-04 20:38:14', '2025-12-17 19:47:37', 'dxDx6GEd', '4658824'), - (364, 1139, 'attending', '2021-12-03 06:42:28', '2025-12-17 19:47:37', 'dxDx6GEd', '4675604'), - (364, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dxDx6GEd', '4694407'), - (364, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dxDx6GEd', '4736497'), - (364, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dxDx6GEd', '4736499'), - (364, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dxDx6GEd', '4736500'), - (364, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dxDx6GEd', '4736503'), - (364, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dxDx6GEd', '4736504'), - (364, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dxDx6GEd', '4746789'), - (364, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dxDx6GEd', '4753929'), - (364, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dxDx6GEd', '5038850'), - (364, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dxDx6GEd', '5045826'), - (364, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dxDx6GEd', '5132533'), - (364, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dxDx6GEd', '5186582'), - (364, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dxDx6GEd', '5186583'), - (364, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dxDx6GEd', '5186585'), - (364, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dxDx6GEd', '5190437'), - (364, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dxDx6GEd', '5215989'), - (364, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dxDx6GEd', '6045684'), - (365, 2022, 'not_attending', '2023-05-26 12:22:04', '2025-12-17 19:47:03', 'dlkOgEY4', '6067245'), - (365, 2031, 'attending', '2023-05-27 15:15:43', '2025-12-17 19:47:03', 'dlkOgEY4', '6068280'), - (365, 2032, 'attending', '2023-06-03 12:41:08', '2025-12-17 19:47:04', 'dlkOgEY4', '6068281'), - (365, 2060, 'not_attending', '2023-05-20 16:25:56', '2025-12-17 19:47:03', 'dlkOgEY4', '6097414'), - (365, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dlkOgEY4', '6101361'), - (365, 2067, 'not_attending', '2023-05-16 00:10:01', '2025-12-17 19:47:03', 'dlkOgEY4', '6101362'), - (365, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dlkOgEY4', '6107314'), - (365, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dlkOgEY4', '6120034'), - (365, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dlkOgEY4', '6136733'), - (365, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dlkOgEY4', '6137989'), - (365, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dlkOgEY4', '6150864'), - (365, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dlkOgEY4', '6155491'), - (365, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dlkOgEY4', '6164417'), - (365, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dlkOgEY4', '6166388'), - (365, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dlkOgEY4', '6176439'), - (365, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dlkOgEY4', '6182410'), - (365, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dlkOgEY4', '6185812'), - (365, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dlkOgEY4', '6187651'), - (365, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dlkOgEY4', '6187963'), - (365, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dlkOgEY4', '6187964'), - (365, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dlkOgEY4', '6187966'), - (365, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dlkOgEY4', '6187967'), - (365, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dlkOgEY4', '6187969'), - (365, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dlkOgEY4', '6334878'), - (365, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dlkOgEY4', '6337236'), - (365, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dlkOgEY4', '6337970'), - (365, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dlkOgEY4', '6338308'), - (365, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dlkOgEY4', '6340845'), - (365, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dlkOgEY4', '6341710'), - (365, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dlkOgEY4', '6342044'), - (365, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dlkOgEY4', '6342298'), - (365, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dlkOgEY4', '6343294'), - (365, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dlkOgEY4', '6347034'), - (365, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dlkOgEY4', '6347056'), - (365, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dlkOgEY4', '6353830'), - (365, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dlkOgEY4', '6353831'), - (365, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dlkOgEY4', '6357867'), - (365, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dlkOgEY4', '6358652'), - (365, 2196, 'attending', '2023-09-05 18:25:06', '2025-12-17 19:46:56', 'dlkOgEY4', '6359398'), - (365, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dlkOgEY4', '6361709'), - (365, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dlkOgEY4', '6361710'), - (365, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dlkOgEY4', '6361711'), - (365, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dlkOgEY4', '6361712'), - (365, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dlkOgEY4', '6361713'), - (365, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dlkOgEY4', '6382573'), - (365, 2239, 'attending', '2023-09-01 15:23:39', '2025-12-17 19:46:56', 'dlkOgEY4', '6387592'), - (365, 2240, 'attending', '2023-09-09 19:07:55', '2025-12-17 19:46:56', 'dlkOgEY4', '6388603'), - (365, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dlkOgEY4', '6388604'), - (365, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dlkOgEY4', '6394629'), - (365, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dlkOgEY4', '6394631'), - (365, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dlkOgEY4', '6440863'), - (365, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dlkOgEY4', '6445440'), - (365, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dlkOgEY4', '6453951'), - (365, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dlkOgEY4', '6461696'), - (365, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dlkOgEY4', '6462129'), - (365, 2290, 'attending', '2023-10-16 14:57:18', '2025-12-17 19:46:46', 'dlkOgEY4', '6462214'), - (365, 2292, 'not_attending', '2023-10-23 17:18:00', '2025-12-17 19:46:47', 'dlkOgEY4', '6462216'), - (365, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dlkOgEY4', '6463218'), - (365, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dlkOgEY4', '6472181'), - (365, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dlkOgEY4', '6482693'), - (365, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dlkOgEY4', '6484200'), - (365, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dlkOgEY4', '6484680'), - (365, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dlkOgEY4', '6507741'), - (365, 2322, 'maybe', '2023-11-10 01:03:19', '2025-12-17 19:46:48', 'dlkOgEY4', '6514659'), - (365, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dlkOgEY4', '6514660'), - (365, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dlkOgEY4', '6519103'), - (365, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dlkOgEY4', '6535681'), - (365, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlkOgEY4', '6584747'), - (365, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlkOgEY4', '6587097'), - (365, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlkOgEY4', '6609022'), - (365, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlkOgEY4', '6632757'), - (365, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlkOgEY4', '6644187'), - (365, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlkOgEY4', '6648951'), - (365, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlkOgEY4', '6648952'), - (365, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dlkOgEY4', '6655401'), - (365, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlkOgEY4', '6661585'), - (365, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlkOgEY4', '6661588'), - (365, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlkOgEY4', '6661589'), - (365, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlkOgEY4', '6699906'), - (365, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dlkOgEY4', '6699913'), - (365, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlkOgEY4', '6701109'), - (365, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlkOgEY4', '6705219'), - (365, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlkOgEY4', '6710153'), - (365, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlkOgEY4', '6711552'), - (365, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dlkOgEY4', '6711553'), - (365, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlkOgEY4', '6722688'), - (365, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlkOgEY4', '6730620'), - (365, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlkOgEY4', '6730642'), - (365, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlkOgEY4', '6740364'), - (365, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlkOgEY4', '6743829'), - (365, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlkOgEY4', '7030380'), - (365, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlkOgEY4', '7033677'), - (365, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlkOgEY4', '7035415'), - (365, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlkOgEY4', '7044715'), - (365, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlkOgEY4', '7050318'), - (365, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlkOgEY4', '7050319'), - (365, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlkOgEY4', '7050322'), - (365, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlkOgEY4', '7057804'), - (365, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dlkOgEY4', '7059866'), - (365, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlkOgEY4', '7072824'), - (365, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlkOgEY4', '7074348'), - (365, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlkOgEY4', '7089267'), - (365, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlkOgEY4', '7098747'), - (365, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dlkOgEY4', '7113468'), - (365, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlkOgEY4', '7114856'), - (365, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlkOgEY4', '7114951'), - (365, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlkOgEY4', '7114955'), - (365, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlkOgEY4', '7114956'), - (365, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlkOgEY4', '7153615'), - (365, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dlkOgEY4', '7159484'), - (365, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dlkOgEY4', '7178446'), - (366, 2303, 'attending', '2023-10-28 21:32:34', '2025-12-17 19:46:47', '4kqBGbRm', '6482691'), - (366, 2304, 'attending', '2023-10-29 02:17:01', '2025-12-17 19:46:47', '4kqBGbRm', '6482693'), - (366, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4kqBGbRm', '6484200'), - (366, 2310, 'maybe', '2023-11-09 21:17:57', '2025-12-17 19:46:47', '4kqBGbRm', '6487709'), - (366, 2315, 'attending', '2023-10-30 22:17:21', '2025-12-17 19:46:47', '4kqBGbRm', '6493666'), - (366, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4kqBGbRm', '6507741'), - (366, 2321, 'not_attending', '2023-10-30 22:21:04', '2025-12-17 19:46:47', '4kqBGbRm', '6512075'), - (366, 2322, 'attending', '2023-11-15 02:53:38', '2025-12-17 19:46:48', '4kqBGbRm', '6514659'), - (366, 2323, 'maybe', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4kqBGbRm', '6514660'), - (366, 2324, 'attending', '2023-12-09 20:54:30', '2025-12-17 19:46:49', '4kqBGbRm', '6514662'), - (366, 2325, 'not_attending', '2023-12-15 20:53:10', '2025-12-17 19:46:36', '4kqBGbRm', '6514663'), - (366, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4kqBGbRm', '6519103'), - (366, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4kqBGbRm', '6535681'), - (366, 2338, 'attending', '2023-11-19 06:00:39', '2025-12-17 19:46:48', '4kqBGbRm', '6538868'), - (366, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4kqBGbRm', '6584747'), - (366, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4kqBGbRm', '6587097'), - (366, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4kqBGbRm', '6609022'), - (366, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4kqBGbRm', '6632757'), - (366, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4kqBGbRm', '6644187'), - (366, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4kqBGbRm', '6648951'), - (366, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4kqBGbRm', '6648952'), - (366, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4kqBGbRm', '6655401'), - (366, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4kqBGbRm', '6661585'), - (366, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4kqBGbRm', '6661588'), - (366, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4kqBGbRm', '6661589'), - (366, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4kqBGbRm', '6699906'), - (366, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4kqBGbRm', '6699913'), - (366, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4kqBGbRm', '6701109'), - (366, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4kqBGbRm', '6705219'), - (366, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4kqBGbRm', '6710153'), - (366, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4kqBGbRm', '6711552'), - (366, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4kqBGbRm', '6711553'), - (366, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4kqBGbRm', '6722688'), - (366, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4kqBGbRm', '6730620'), - (366, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4kqBGbRm', '6730642'), - (366, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4kqBGbRm', '6740364'), - (366, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4kqBGbRm', '6743829'), - (366, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4kqBGbRm', '7030380'), - (366, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4kqBGbRm', '7033677'), - (366, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4kqBGbRm', '7035415'), - (366, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4kqBGbRm', '7044715'), - (366, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4kqBGbRm', '7050318'), - (366, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4kqBGbRm', '7050319'), - (366, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4kqBGbRm', '7050322'), - (366, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4kqBGbRm', '7057804'), - (366, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', '4kqBGbRm', '7059866'), - (366, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4kqBGbRm', '7072824'), - (366, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4kqBGbRm', '7074348'), - (366, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4kqBGbRm', '7089267'), - (366, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4kqBGbRm', '7098747'), - (366, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4kqBGbRm', '7113468'), - (366, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4kqBGbRm', '7114856'), - (366, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4kqBGbRm', '7114951'), - (366, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4kqBGbRm', '7114955'), - (366, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4kqBGbRm', '7114956'), - (366, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4kqBGbRm', '7114957'), - (366, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4kqBGbRm', '7153615'), - (366, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4kqBGbRm', '7159484'), - (366, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4kqBGbRm', '7178446'), - (366, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4kqBGbRm', '7220467'), - (366, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4kqBGbRm', '7240354'), - (366, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4kqBGbRm', '7251633'), - (366, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4kqBGbRm', '7263048'), - (366, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4kqBGbRm', '7302674'), - (367, 872, 'not_attending', '2021-07-20 02:29:51', '2025-12-17 19:47:40', 'AXBNLjzd', '4136947'), - (367, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'AXBNLjzd', '4210314'), - (367, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'AXBNLjzd', '4229420'), - (367, 894, 'not_attending', '2021-07-20 22:49:03', '2025-12-17 19:47:40', 'AXBNLjzd', '4229423'), - (367, 900, 'not_attending', '2021-07-20 02:31:01', '2025-12-17 19:47:40', 'AXBNLjzd', '4240316'), - (367, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'AXBNLjzd', '4240317'), - (367, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'AXBNLjzd', '4240318'), - (367, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'AXBNLjzd', '4240320'), - (367, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'AXBNLjzd', '4277819'), - (367, 923, 'not_attending', '2021-07-20 02:30:14', '2025-12-17 19:47:40', 'AXBNLjzd', '4292773'), - (367, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'AXBNLjzd', '4301723'), - (367, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'AXBNLjzd', '4302093'), - (367, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'AXBNLjzd', '4304151'), - (367, 940, 'not_attending', '2021-07-30 16:29:42', '2025-12-17 19:47:40', 'AXBNLjzd', '4309049'), - (367, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'AXBNLjzd', '4315713'), - (367, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'AXBNLjzd', '4315714'), - (367, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'AXBNLjzd', '4315726'), - (367, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'AXBNLjzd', '4356801'), - (367, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'AXBNLjzd', '4366186'), - (367, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'AXBNLjzd', '4366187'), - (367, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'AXBNLjzd', '4420735'), - (367, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'AXBNLjzd', '4420738'), - (367, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'AXBNLjzd', '4420739'), - (367, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'AXBNLjzd', '4420741'), - (367, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'AXBNLjzd', '4420744'), - (367, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'AXBNLjzd', '4420747'), - (367, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'AXBNLjzd', '4420748'), - (367, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'AXBNLjzd', '4420749'), - (367, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AXBNLjzd', '4461883'), - (367, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AXBNLjzd', '4508342'), - (367, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AXBNLjzd', '4568602'), - (367, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'AXBNLjzd', '4572153'), - (367, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'AXBNLjzd', '4585962'), - (367, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'AXBNLjzd', '4596356'), - (367, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AXBNLjzd', '4598860'), - (367, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AXBNLjzd', '4598861'), - (367, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'AXBNLjzd', '4602797'), - (367, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AXBNLjzd', '4637896'), - (367, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AXBNLjzd', '4642994'), - (367, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AXBNLjzd', '4642995'), - (367, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AXBNLjzd', '4642996'), - (367, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AXBNLjzd', '4642997'), - (367, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AXBNLjzd', '4645687'), - (367, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AXBNLjzd', '4645698'), - (367, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AXBNLjzd', '4645704'), - (367, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AXBNLjzd', '4645705'), - (367, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AXBNLjzd', '4668385'), - (367, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AXBNLjzd', '6045684'), - (368, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mjEvk15d', '7074364'), - (368, 2689, 'attending', '2024-07-06 22:50:51', '2025-12-17 19:46:29', 'mjEvk15d', '7324074'), - (368, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mjEvk15d', '7324075'), - (368, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mjEvk15d', '7324078'), - (368, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mjEvk15d', '7324082'), - (368, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mjEvk15d', '7331457'), - (368, 2739, 'attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'mjEvk15d', '7344575'), - (368, 2744, 'not_attending', '2024-07-02 14:34:26', '2025-12-17 19:46:29', 'mjEvk15d', '7347764'), - (368, 2749, 'attending', '2024-07-07 18:42:30', '2025-12-17 19:46:29', 'mjEvk15d', '7355496'), - (368, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mjEvk15d', '7356752'), - (368, 2757, 'attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'mjEvk15d', '7358733'), - (368, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'mjEvk15d', '7363595'), - (368, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mjEvk15d', '7363643'), - (368, 2768, 'attending', '2024-07-18 00:38:14', '2025-12-17 19:46:30', 'mjEvk15d', '7366031'), - (368, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mjEvk15d', '7368606'), - (368, 2776, 'attending', '2024-07-24 19:06:24', '2025-12-17 19:46:30', 'mjEvk15d', '7370690'), - (368, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mjEvk15d', '7397462'), - (368, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mjEvk15d', '7424275'), - (368, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mjEvk15d', '7424276'), - (368, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mjEvk15d', '7432751'), - (368, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mjEvk15d', '7432752'), - (368, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mjEvk15d', '7432753'), - (368, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mjEvk15d', '7432754'), - (368, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mjEvk15d', '7432755'), - (368, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mjEvk15d', '7432756'), - (368, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mjEvk15d', '7432758'), - (368, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mjEvk15d', '7432759'), - (368, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mjEvk15d', '7433834'), - (368, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mjEvk15d', '7470197'), - (368, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mjEvk15d', '7685613'), - (368, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mjEvk15d', '7688194'), - (368, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mjEvk15d', '7688196'), - (368, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mjEvk15d', '7688289'), - (368, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mjEvk15d', '7692763'), - (368, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mjEvk15d', '7697552'), - (368, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mjEvk15d', '7699878'), - (368, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mjEvk15d', '7704043'), - (368, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mjEvk15d', '7712467'), - (368, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mjEvk15d', '7713585'), - (368, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mjEvk15d', '7713586'), - (368, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mjEvk15d', '7738518'), - (368, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mjEvk15d', '7750636'), - (368, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mjEvk15d', '7796540'), - (368, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mjEvk15d', '7796541'), - (368, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mjEvk15d', '7796542'), - (369, 2306, 'maybe', '2023-11-16 00:37:34', '2025-12-17 19:46:48', 'dlkgN5V4', '6484200'), - (369, 2322, 'attending', '2023-11-17 03:58:33', '2025-12-17 19:46:48', 'dlkgN5V4', '6514659'), - (369, 2323, 'attending', '2023-11-21 13:56:03', '2025-12-17 19:46:48', 'dlkgN5V4', '6514660'), - (369, 2324, 'attending', '2023-11-21 13:56:18', '2025-12-17 19:46:49', 'dlkgN5V4', '6514662'), - (369, 2325, 'attending', '2023-11-21 13:56:23', '2025-12-17 19:46:36', 'dlkgN5V4', '6514663'), - (369, 2337, 'attending', '2023-11-17 22:26:49', '2025-12-17 19:46:48', 'dlkgN5V4', '6535681'), - (369, 2338, 'attending', '2023-11-21 13:55:42', '2025-12-17 19:46:48', 'dlkgN5V4', '6538868'), - (369, 2340, 'attending', '2023-11-21 13:53:09', '2025-12-17 19:46:48', 'dlkgN5V4', '6540279'), - (369, 2341, 'not_attending', '2023-11-20 01:19:50', '2025-12-17 19:46:48', 'dlkgN5V4', '6543263'), - (369, 2343, 'attending', '2023-11-21 01:15:00', '2025-12-17 19:46:48', 'dlkgN5V4', '6574728'), - (369, 2344, 'attending', '2023-11-19 17:07:32', '2025-12-17 19:46:48', 'dlkgN5V4', '6581040'), - (369, 2348, 'attending', '2023-11-19 17:08:12', '2025-12-17 19:46:48', 'dlkgN5V4', '6583064'), - (369, 2349, 'not_attending', '2023-11-19 17:07:10', '2025-12-17 19:46:48', 'dlkgN5V4', '6583065'), - (369, 2350, 'not_attending', '2023-11-22 14:36:56', '2025-12-17 19:46:48', 'dlkgN5V4', '6584352'), - (369, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlkgN5V4', '6584747'), - (369, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlkgN5V4', '6587097'), - (369, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlkgN5V4', '6609022'), - (369, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlkgN5V4', '6632757'), - (369, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlkgN5V4', '6644187'), - (369, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlkgN5V4', '6648951'), - (369, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlkgN5V4', '6648952'), - (369, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dlkgN5V4', '6655401'), - (369, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlkgN5V4', '6661585'), - (369, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlkgN5V4', '6661588'), - (369, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlkgN5V4', '6661589'), - (369, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlkgN5V4', '6699906'), - (369, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dlkgN5V4', '6699913'), - (369, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlkgN5V4', '6701109'), - (369, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dlkgN5V4', '6704561'), - (369, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlkgN5V4', '6705219'), - (369, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dlkgN5V4', '6708410'), - (369, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlkgN5V4', '6710153'), - (369, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlkgN5V4', '6711552'), - (369, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dlkgN5V4', '6711553'), - (369, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlkgN5V4', '6722688'), - (369, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlkgN5V4', '6730620'), - (369, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlkgN5V4', '6730642'), - (369, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlkgN5V4', '6740364'), - (369, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlkgN5V4', '6743829'), - (369, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlkgN5V4', '7030380'), - (369, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlkgN5V4', '7033677'), - (369, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlkgN5V4', '7035415'), - (369, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlkgN5V4', '7044715'), - (369, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlkgN5V4', '7050318'), - (369, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlkgN5V4', '7050319'), - (369, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlkgN5V4', '7050322'), - (369, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlkgN5V4', '7057804'), - (369, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlkgN5V4', '7072824'), - (369, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlkgN5V4', '7074348'), - (369, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlkgN5V4', '7089267'), - (369, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlkgN5V4', '7098747'), - (369, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dlkgN5V4', '7113468'), - (369, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlkgN5V4', '7114856'), - (369, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlkgN5V4', '7114951'), - (369, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlkgN5V4', '7114955'), - (369, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlkgN5V4', '7114956'), - (369, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlkgN5V4', '7153615'), - (369, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dlkgN5V4', '7159484'), - (370, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Ar6VnZXA', '7324078'), - (370, 2722, 'not_attending', '2024-07-12 22:43:28', '2025-12-17 19:46:30', 'Ar6VnZXA', '7331457'), - (370, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Ar6VnZXA', '7363643'), - (370, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Ar6VnZXA', '7368606'), - (371, 1559, 'attending', '2022-09-28 22:59:39', '2025-12-17 19:47:11', 'd2VRGKJd', '5458731'), - (371, 1655, 'attending', '2022-09-19 02:26:13', '2025-12-17 19:47:11', 'd2VRGKJd', '5554482'), - (371, 1659, 'attending', '2022-09-23 00:44:31', '2025-12-17 19:47:11', 'd2VRGKJd', '5557747'), - (371, 1666, 'attending', '2022-09-27 21:40:18', '2025-12-17 19:47:11', 'd2VRGKJd', '5563208'), - (371, 1667, 'attending', '2022-09-24 19:18:36', '2025-12-17 19:47:11', 'd2VRGKJd', '5563221'), - (371, 1668, 'attending', '2022-10-01 22:48:26', '2025-12-17 19:47:12', 'd2VRGKJd', '5563222'), - (371, 1673, 'attending', '2022-09-29 22:29:28', '2025-12-17 19:47:11', 'd2VRGKJd', '5592454'), - (371, 1675, 'maybe', '2022-09-18 19:00:49', '2025-12-17 19:47:11', 'd2VRGKJd', '5593342'), - (371, 1676, 'attending', '2022-09-20 21:59:06', '2025-12-17 19:47:11', 'd2VRGKJd', '5596181'), - (371, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd2VRGKJd', '5600604'), - (371, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd2VRGKJd', '5605544'), - (371, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'd2VRGKJd', '5606737'), - (371, 1719, 'attending', '2022-10-08 18:14:33', '2025-12-17 19:47:12', 'd2VRGKJd', '5630958'), - (371, 1720, 'attending', '2022-10-15 22:52:16', '2025-12-17 19:47:12', 'd2VRGKJd', '5630959'), - (371, 1721, 'attending', '2022-10-20 00:06:36', '2025-12-17 19:47:13', 'd2VRGKJd', '5630960'), - (371, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd2VRGKJd', '5630961'), - (371, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd2VRGKJd', '5630962'), - (371, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd2VRGKJd', '5630966'), - (371, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd2VRGKJd', '5630967'), - (371, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd2VRGKJd', '5630968'), - (371, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd2VRGKJd', '5635406'), - (371, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd2VRGKJd', '5638765'), - (371, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd2VRGKJd', '5640097'), - (371, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'd2VRGKJd', '5640843'), - (371, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd2VRGKJd', '5641521'), - (371, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd2VRGKJd', '5642818'), - (371, 1746, 'maybe', '2022-10-14 23:00:08', '2025-12-17 19:47:12', 'd2VRGKJd', '5647518'), - (371, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd2VRGKJd', '5652395'), - (371, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd2VRGKJd', '5670445'), - (371, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd2VRGKJd', '5671637'), - (371, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd2VRGKJd', '5672329'), - (371, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd2VRGKJd', '5674057'), - (371, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd2VRGKJd', '5674060'), - (371, 1770, 'not_attending', '2022-10-28 18:57:57', '2025-12-17 19:47:14', 'd2VRGKJd', '5676936'), - (371, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd2VRGKJd', '5677461'), - (371, 1776, 'attending', '2022-11-10 00:51:36', '2025-12-17 19:47:15', 'd2VRGKJd', '5691067'), - (371, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd2VRGKJd', '5698046'), - (371, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd2VRGKJd', '5699760'), - (371, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd2VRGKJd', '5741601'), - (371, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd2VRGKJd', '5763458'), - (371, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd2VRGKJd', '5774172'), - (371, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd2VRGKJd', '5818247'), - (371, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd2VRGKJd', '5819471'), - (371, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd2VRGKJd', '5827739'), - (371, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd2VRGKJd', '5844306'), - (371, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd2VRGKJd', '5850159'), - (371, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd2VRGKJd', '5858999'), - (371, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd2VRGKJd', '5871984'), - (371, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd2VRGKJd', '5876354'), - (371, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd2VRGKJd', '5880939'), - (371, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd2VRGKJd', '5887890'), - (371, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd2VRGKJd', '5888598'), - (371, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd2VRGKJd', '5893260'), - (371, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2VRGKJd', '6045684'), - (372, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dODBVy3m', '6045684'), - (373, 6, 'not_attending', '2020-03-22 22:23:54', '2025-12-17 19:47:58', 'O4Z5J8lA', '2958048'), - (373, 8, 'attending', '2020-03-25 22:35:26', '2025-12-17 19:47:58', 'O4Z5J8lA', '2958050'), - (373, 10, 'attending', '2020-03-28 20:15:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '2958053'), - (373, 14, 'attending', '2020-04-09 23:08:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2958058'), - (373, 16, 'attending', '2020-03-27 06:43:07', '2025-12-17 19:47:56', 'O4Z5J8lA', '2958060'), - (373, 17, 'attending', '2020-03-22 17:41:49', '2025-12-17 19:47:58', 'O4Z5J8lA', '2958061'), - (373, 25, 'attending', '2020-07-09 21:56:30', '2025-12-17 19:47:55', 'O4Z5J8lA', '2958069'), - (373, 28, 'not_attending', '2020-04-02 20:44:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '2960421'), - (373, 29, 'attending', '2020-03-30 23:23:35', '2025-12-17 19:47:56', 'O4Z5J8lA', '2961309'), - (373, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'O4Z5J8lA', '2961895'), - (373, 31, 'not_attending', '2020-03-25 22:32:59', '2025-12-17 19:47:58', 'O4Z5J8lA', '2963118'), - (373, 32, 'attending', '2020-03-31 22:50:44', '2025-12-17 19:47:56', 'O4Z5J8lA', '2963931'), - (373, 35, 'not_attending', '2020-03-29 22:59:42', '2025-12-17 19:47:56', 'O4Z5J8lA', '2969206'), - (373, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'O4Z5J8lA', '2969208'), - (373, 37, 'attending', '2020-03-30 23:33:44', '2025-12-17 19:47:56', 'O4Z5J8lA', '2969680'), - (373, 38, 'attending', '2020-04-03 23:01:11', '2025-12-17 19:47:56', 'O4Z5J8lA', '2969751'), - (373, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'O4Z5J8lA', '2971546'), - (373, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'O4Z5J8lA', '2974534'), - (373, 46, 'attending', '2020-04-11 21:41:53', '2025-12-17 19:47:57', 'O4Z5J8lA', '2974955'), - (373, 51, 'maybe', '2020-06-30 16:41:07', '2025-12-17 19:47:55', 'O4Z5J8lA', '2975276'), - (373, 55, 'attending', '2020-04-06 21:55:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2975384'), - (373, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'O4Z5J8lA', '2975385'), - (373, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'O4Z5J8lA', '2976575'), - (373, 66, 'attending', '2020-06-09 19:08:06', '2025-12-17 19:47:58', 'O4Z5J8lA', '2977135'), - (373, 67, 'attending', '2020-06-16 02:24:51', '2025-12-17 19:47:58', 'O4Z5J8lA', '2977136'), - (373, 68, 'attending', '2020-06-23 03:04:57', '2025-12-17 19:47:58', 'O4Z5J8lA', '2977137'), - (373, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'O4Z5J8lA', '2977343'), - (373, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2977812'), - (373, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'O4Z5J8lA', '2977931'), - (373, 74, 'attending', '2020-04-18 19:23:30', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978244'), - (373, 75, 'attending', '2020-04-22 18:34:55', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978245'), - (373, 76, 'attending', '2020-05-02 20:05:10', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978246'), - (373, 77, 'attending', '2020-05-08 07:55:11', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978247'), - (373, 78, 'attending', '2020-05-23 20:33:41', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978249'), - (373, 79, 'attending', '2020-05-28 22:27:38', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978250'), - (373, 80, 'attending', '2020-06-04 17:01:14', '2025-12-17 19:47:58', 'O4Z5J8lA', '2978251'), - (373, 81, 'attending', '2020-06-11 17:47:07', '2025-12-17 19:47:58', 'O4Z5J8lA', '2978252'), - (373, 82, 'attending', '2020-04-22 18:34:18', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978433'), - (373, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978438'), - (373, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'O4Z5J8lA', '2980871'), - (373, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'O4Z5J8lA', '2981388'), - (373, 91, 'attending', '2020-05-01 20:50:28', '2025-12-17 19:47:57', 'O4Z5J8lA', '2985130'), - (373, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2986743'), - (373, 98, 'attending', '2020-05-21 19:55:06', '2025-12-17 19:47:57', 'O4Z5J8lA', '2987455'), - (373, 104, 'not_attending', '2020-04-24 14:20:07', '2025-12-17 19:47:57', 'O4Z5J8lA', '2991471'), - (373, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'O4Z5J8lA', '2993501'), - (373, 109, 'maybe', '2020-05-13 21:50:50', '2025-12-17 19:47:57', 'O4Z5J8lA', '2994480'), - (373, 115, 'attending', '2020-05-14 21:47:16', '2025-12-17 19:47:57', 'O4Z5J8lA', '3001217'), - (373, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'O4Z5J8lA', '3015486'), - (373, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'O4Z5J8lA', '3023063'), - (373, 124, 'maybe', '2020-05-28 16:43:05', '2025-12-17 19:47:57', 'O4Z5J8lA', '3023809'), - (373, 126, 'attending', '2020-05-24 16:34:28', '2025-12-17 19:47:57', 'O4Z5J8lA', '3024022'), - (373, 129, 'attending', '2020-06-05 20:04:39', '2025-12-17 19:47:58', 'O4Z5J8lA', '3028743'), - (373, 130, 'maybe', '2020-05-28 16:43:11', '2025-12-17 19:47:57', 'O4Z5J8lA', '3028781'), - (373, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'O4Z5J8lA', '3034321'), - (373, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'O4Z5J8lA', '3035881'), - (373, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'O4Z5J8lA', '3049983'), - (373, 146, 'attending', '2020-06-27 02:27:04', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058683'), - (373, 147, 'attending', '2020-08-19 03:47:08', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058684'), - (373, 148, 'attending', '2020-07-09 23:26:25', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058685'), - (373, 149, 'attending', '2020-07-18 19:58:00', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058686'), - (373, 150, 'attending', '2020-07-24 03:12:05', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058687'), - (373, 151, 'not_attending', '2020-08-27 16:33:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058688'), - (373, 152, 'attending', '2020-09-04 18:10:31', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058689'), - (373, 154, 'attending', '2020-08-08 18:20:49', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058691'), - (373, 155, 'attending', '2020-08-14 19:28:10', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058692'), - (373, 156, 'not_attending', '2020-09-12 19:32:17', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058693'), - (373, 157, 'not_attending', '2020-09-19 18:54:18', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058694'), - (373, 158, 'attending', '2020-09-26 18:33:51', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058695'), - (373, 159, 'not_attending', '2020-10-02 01:53:04', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058696'), - (373, 161, 'attending', '2020-10-07 21:42:22', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058698'), - (373, 162, 'attending', '2020-10-16 06:08:29', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058699'), - (373, 168, 'attending', '2020-06-17 21:31:11', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058740'), - (373, 170, 'attending', '2020-06-07 18:55:20', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058742'), - (373, 171, 'attending', '2020-06-11 17:47:28', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058743'), - (373, 172, 'not_attending', '2020-06-13 02:32:20', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058959'), - (373, 173, 'attending', '2020-06-16 04:06:50', '2025-12-17 19:47:58', 'O4Z5J8lA', '3067093'), - (373, 176, 'attending', '2020-06-18 15:53:00', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073192'), - (373, 177, 'attending', '2020-06-17 21:31:32', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073193'), - (373, 178, 'attending', '2020-06-16 00:37:45', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073195'), - (373, 179, 'not_attending', '2020-06-20 17:01:47', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073687'), - (373, 181, 'attending', '2020-06-20 20:14:30', '2025-12-17 19:47:58', 'O4Z5J8lA', '3074513'), - (373, 182, 'attending', '2020-06-27 04:26:45', '2025-12-17 19:47:55', 'O4Z5J8lA', '3074514'), - (373, 183, 'attending', '2020-06-22 21:05:36', '2025-12-17 19:47:58', 'O4Z5J8lA', '3075228'), - (373, 185, 'not_attending', '2020-06-21 20:27:39', '2025-12-17 19:47:58', 'O4Z5J8lA', '3075456'), - (373, 186, 'maybe', '2020-06-25 17:42:43', '2025-12-17 19:47:55', 'O4Z5J8lA', '3083791'), - (373, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'O4Z5J8lA', '3085151'), - (373, 191, 'attending', '2020-07-07 21:44:24', '2025-12-17 19:47:55', 'O4Z5J8lA', '3087259'), - (373, 192, 'attending', '2020-07-15 21:02:06', '2025-12-17 19:47:55', 'O4Z5J8lA', '3087260'), - (373, 193, 'attending', '2020-07-24 03:12:02', '2025-12-17 19:47:55', 'O4Z5J8lA', '3087261'), - (373, 195, 'attending', '2020-08-08 18:20:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087264'), - (373, 196, 'attending', '2020-08-14 19:28:12', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087265'), - (373, 197, 'attending', '2020-08-19 03:47:37', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087266'), - (373, 198, 'not_attending', '2020-08-27 16:33:12', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087267'), - (373, 199, 'attending', '2020-09-04 18:10:38', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087268'), - (373, 201, 'maybe', '2020-06-25 22:48:10', '2025-12-17 19:47:55', 'O4Z5J8lA', '3088653'), - (373, 202, 'attending', '2020-07-06 22:45:41', '2025-12-17 19:47:55', 'O4Z5J8lA', '3090353'), - (373, 203, 'attending', '2020-06-22 17:29:44', '2025-12-17 19:47:58', 'O4Z5J8lA', '3091624'), - (373, 204, 'attending', '2020-06-28 20:43:04', '2025-12-17 19:47:55', 'O4Z5J8lA', '3102758'), - (373, 206, 'attending', '2020-07-17 21:12:16', '2025-12-17 19:47:55', 'O4Z5J8lA', '3104806'), - (373, 207, 'attending', '2020-07-24 02:48:32', '2025-12-17 19:47:55', 'O4Z5J8lA', '3104807'), - (373, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'O4Z5J8lA', '3106813'), - (373, 218, 'attending', '2020-07-19 02:08:40', '2025-12-17 19:47:55', 'O4Z5J8lA', '3129262'), - (373, 221, 'not_attending', '2020-09-17 02:12:08', '2025-12-17 19:47:56', 'O4Z5J8lA', '3129265'), - (373, 223, 'not_attending', '2020-09-12 19:32:21', '2025-12-17 19:47:56', 'O4Z5J8lA', '3129980'), - (373, 224, 'attending', '2020-07-17 03:55:31', '2025-12-17 19:47:55', 'O4Z5J8lA', '3130712'), - (373, 226, 'attending', '2020-07-15 21:02:19', '2025-12-17 19:47:55', 'O4Z5J8lA', '3132817'), - (373, 227, 'not_attending', '2020-07-16 21:10:19', '2025-12-17 19:47:55', 'O4Z5J8lA', '3132820'), - (373, 228, 'attending', '2020-07-15 23:54:47', '2025-12-17 19:47:55', 'O4Z5J8lA', '3132821'), - (373, 232, 'attending', '2020-07-19 21:45:46', '2025-12-17 19:47:55', 'O4Z5J8lA', '3139770'), - (373, 233, 'attending', '2020-07-19 21:45:21', '2025-12-17 19:47:55', 'O4Z5J8lA', '3139773'), - (373, 236, 'attending', '2020-07-21 22:42:36', '2025-12-17 19:47:55', 'O4Z5J8lA', '3140873'), - (373, 239, 'attending', '2020-08-22 04:18:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '3149470'), - (373, 240, 'not_attending', '2020-09-07 18:40:56', '2025-12-17 19:47:56', 'O4Z5J8lA', '3149471'), - (373, 264, 'attending', '2020-08-05 20:54:37', '2025-12-17 19:47:56', 'O4Z5J8lA', '3150735'), - (373, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '3155321'), - (373, 273, 'attending', '2020-08-07 00:14:54', '2025-12-17 19:47:56', 'O4Z5J8lA', '3162006'), - (373, 274, 'not_attending', '2020-08-06 21:13:39', '2025-12-17 19:47:56', 'O4Z5J8lA', '3163404'), - (373, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'O4Z5J8lA', '3163442'), - (373, 280, 'attending', '2020-08-12 20:42:48', '2025-12-17 19:47:56', 'O4Z5J8lA', '3166942'), - (373, 293, 'attending', '2020-08-19 23:31:29', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172832'), - (373, 294, 'not_attending', '2020-08-26 22:26:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172833'), - (373, 295, 'maybe', '2020-08-19 23:30:16', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172834'), - (373, 296, 'not_attending', '2020-09-11 22:17:40', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172876'), - (373, 299, 'not_attending', '2020-08-17 21:36:09', '2025-12-17 19:47:56', 'O4Z5J8lA', '3176591'), - (373, 303, 'not_attending', '2020-08-16 16:26:27', '2025-12-17 19:47:56', 'O4Z5J8lA', '3178444'), - (373, 305, 'attending', '2020-08-17 21:35:59', '2025-12-17 19:47:56', 'O4Z5J8lA', '3179555'), - (373, 309, 'attending', '2020-08-21 02:41:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '3185332'), - (373, 310, 'attending', '2020-08-23 17:52:05', '2025-12-17 19:47:56', 'O4Z5J8lA', '3186005'), - (373, 311, 'maybe', '2020-09-07 18:41:19', '2025-12-17 19:47:56', 'O4Z5J8lA', '3186057'), - (373, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'O4Z5J8lA', '3191735'), - (373, 319, 'maybe', '2020-08-30 22:19:52', '2025-12-17 19:47:56', 'O4Z5J8lA', '3194179'), - (373, 324, 'maybe', '2020-09-23 23:49:46', '2025-12-17 19:47:56', 'O4Z5J8lA', '3197082'), - (373, 325, 'attending', '2020-09-23 19:30:48', '2025-12-17 19:47:51', 'O4Z5J8lA', '3197083'), - (373, 335, 'not_attending', '2020-09-04 21:52:09', '2025-12-17 19:47:56', 'O4Z5J8lA', '3200209'), - (373, 339, 'not_attending', '2020-09-07 18:40:14', '2025-12-17 19:47:56', 'O4Z5J8lA', '3204469'), - (373, 340, 'attending', '2020-09-17 02:12:42', '2025-12-17 19:47:56', 'O4Z5J8lA', '3204470'), - (373, 341, 'maybe', '2020-09-25 22:07:02', '2025-12-17 19:47:52', 'O4Z5J8lA', '3204471'), - (373, 342, 'maybe', '2020-10-02 01:52:47', '2025-12-17 19:47:52', 'O4Z5J8lA', '3204472'), - (373, 355, 'not_attending', '2020-09-17 02:11:38', '2025-12-17 19:47:56', 'O4Z5J8lA', '3212571'), - (373, 356, 'not_attending', '2020-09-23 23:50:06', '2025-12-17 19:47:51', 'O4Z5J8lA', '3212572'), - (373, 362, 'attending', '2020-09-26 18:33:58', '2025-12-17 19:47:52', 'O4Z5J8lA', '3214207'), - (373, 363, 'not_attending', '2020-09-27 18:35:44', '2025-12-17 19:47:52', 'O4Z5J8lA', '3217037'), - (373, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'O4Z5J8lA', '3218510'), - (373, 375, 'not_attending', '2020-10-08 21:53:10', '2025-12-17 19:47:52', 'O4Z5J8lA', '3222825'), - (373, 384, 'not_attending', '2020-09-29 23:25:16', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228696'), - (373, 385, 'not_attending', '2020-10-02 01:53:11', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228698'), - (373, 386, 'attending', '2020-10-07 21:42:26', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228699'), - (373, 387, 'attending', '2020-10-16 06:08:30', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228700'), - (373, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228701'), - (373, 416, 'not_attending', '2020-10-09 20:08:33', '2025-12-17 19:47:52', 'O4Z5J8lA', '3238073'), - (373, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'O4Z5J8lA', '3245751'), - (373, 425, 'not_attending', '2020-10-16 05:58:53', '2025-12-17 19:47:52', 'O4Z5J8lA', '3250097'), - (373, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'O4Z5J8lA', '3250232'), - (373, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'O4Z5J8lA', '3256168'), - (373, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'O4Z5J8lA', '3263578'), - (373, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'O4Z5J8lA', '3276428'), - (373, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'O4Z5J8lA', '3281467'), - (373, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'O4Z5J8lA', '3281470'), - (373, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'O4Z5J8lA', '3281829'), - (373, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'O4Z5J8lA', '3285413'), - (373, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'O4Z5J8lA', '3285414'), - (373, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'O4Z5J8lA', '3297764'), - (373, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'O4Z5J8lA', '3313856'), - (373, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'O4Z5J8lA', '3314909'), - (373, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'O4Z5J8lA', '3314964'), - (373, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'O4Z5J8lA', '3323365'), - (373, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'O4Z5J8lA', '3329383'), - (373, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'O4Z5J8lA', '3351539'), - (373, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'O4Z5J8lA', '3386848'), - (373, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'O4Z5J8lA', '3389527'), - (373, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'O4Z5J8lA', '3396499'), - (373, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'O4Z5J8lA', '3403650'), - (373, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'O4Z5J8lA', '3406988'), - (373, 555, 'not_attending', '2021-01-23 23:08:06', '2025-12-17 19:47:49', 'O4Z5J8lA', '3416576'), - (373, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'O4Z5J8lA', '3418925'), - (373, 568, 'not_attending', '2021-01-31 00:01:22', '2025-12-17 19:47:50', 'O4Z5J8lA', '3430267'), - (373, 569, 'not_attending', '2021-01-25 06:51:04', '2025-12-17 19:47:49', 'O4Z5J8lA', '3432673'), - (373, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'O4Z5J8lA', '3468125'), - (373, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'O4Z5J8lA', '3470303'), - (373, 604, 'not_attending', '2021-02-25 17:31:08', '2025-12-17 19:47:50', 'O4Z5J8lA', '3470305'), - (373, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'O4Z5J8lA', '3470991'), - (373, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'O4Z5J8lA', '3517815'), - (373, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'O4Z5J8lA', '3517816'), - (373, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'O4Z5J8lA', '3523941'), - (373, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'O4Z5J8lA', '3533850'), - (373, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'O4Z5J8lA', '3536632'), - (373, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'O4Z5J8lA', '3536656'), - (373, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'O4Z5J8lA', '3539916'), - (373, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'O4Z5J8lA', '3539917'), - (373, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'O4Z5J8lA', '3539918'), - (373, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539919'), - (373, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539920'), - (373, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539921'), - (373, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539922'), - (373, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'O4Z5J8lA', '3539923'), - (373, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'O4Z5J8lA', '3539927'), - (373, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'O4Z5J8lA', '3582734'), - (373, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'O4Z5J8lA', '3583262'), - (373, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'O4Z5J8lA', '3619523'), - (373, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'O4Z5J8lA', '3661369'), - (373, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'O4Z5J8lA', '3674262'), - (373, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'O4Z5J8lA', '3677402'), - (373, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'O4Z5J8lA', '3730212'), - (373, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'O4Z5J8lA', '3793156'), - (373, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'O4Z5J8lA', '3974109'), - (373, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'O4Z5J8lA', '3975311'), - (373, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'O4Z5J8lA', '3975312'), - (373, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'O4Z5J8lA', '3994992'), - (373, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'O4Z5J8lA', '4014338'), - (373, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'O4Z5J8lA', '4021848'), - (373, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'O4Z5J8lA', '4136744'), - (373, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'O4Z5J8lA', '4136937'), - (373, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'O4Z5J8lA', '4136938'), - (373, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'O4Z5J8lA', '4136947'), - (373, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'O4Z5J8lA', '4210314'), - (373, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'O4Z5J8lA', '4225444'), - (373, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'O4Z5J8lA', '4239259'), - (373, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'O4Z5J8lA', '4240316'), - (373, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'O4Z5J8lA', '4250163'), - (373, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'O4Z5J8lA', '4275957'), - (373, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4Z5J8lA', '6045684'), - (374, 871, 'not_attending', '2021-07-06 03:20:54', '2025-12-17 19:47:39', 'GmjzxPam', '4136938'), - (374, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'GmjzxPam', '4136947'), - (374, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjzxPam', '4210314'), - (374, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjzxPam', '4225444'), - (374, 892, 'maybe', '2021-07-06 00:41:35', '2025-12-17 19:47:39', 'GmjzxPam', '4229418'), - (374, 895, 'maybe', '2021-07-10 00:51:17', '2025-12-17 19:47:39', 'GmjzxPam', '4229424'), - (374, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GmjzxPam', '4240316'), - (374, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GmjzxPam', '4240317'), - (374, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GmjzxPam', '4240318'), - (374, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GmjzxPam', '4240320'), - (374, 916, 'maybe', '2021-07-12 02:53:39', '2025-12-17 19:47:40', 'GmjzxPam', '4273772'), - (374, 917, 'maybe', '2021-07-12 03:16:00', '2025-12-17 19:47:39', 'GmjzxPam', '4274481'), - (374, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjzxPam', '4275957'), - (374, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjzxPam', '4277819'), - (374, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjzxPam', '4301723'), - (374, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GmjzxPam', '4302093'), - (374, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjzxPam', '4304151'), - (374, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'GmjzxPam', '4345519'), - (374, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjzxPam', '4356801'), - (374, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'GmjzxPam', '4358025'), - (374, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GmjzxPam', '4366186'), - (374, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GmjzxPam', '4366187'), - (374, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'GmjzxPam', '4402823'), - (374, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GmjzxPam', '4420735'), - (374, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GmjzxPam', '4420738'), - (374, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GmjzxPam', '4420739'), - (374, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjzxPam', '4420741'), - (374, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GmjzxPam', '4420744'), - (374, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GmjzxPam', '4420747'), - (374, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GmjzxPam', '4420748'), - (374, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjzxPam', '4420749'), - (374, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GmjzxPam', '4461883'), - (374, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GmjzxPam', '4508342'), - (374, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GmjzxPam', '4568602'), - (374, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjzxPam', '6045684'), - (375, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxKz7n24', '6699913'), - (375, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxKz7n24', '7030380'), - (375, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxKz7n24', '7033677'), - (375, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxKz7n24', '7035415'), - (375, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxKz7n24', '7044715'), - (375, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxKz7n24', '7050318'), - (375, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxKz7n24', '7050319'), - (375, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxKz7n24', '7050322'), - (375, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxKz7n24', '7057804'), - (375, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxKz7n24', '7072824'), - (375, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxKz7n24', '7074348'), - (375, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxKz7n24', '7089267'), - (375, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxKz7n24', '7098747'), - (375, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxKz7n24', '7113468'), - (375, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxKz7n24', '7114856'), - (375, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxKz7n24', '7114951'), - (375, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxKz7n24', '7114955'), - (375, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxKz7n24', '7114956'), - (375, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxKz7n24', '7153615'), - (375, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxKz7n24', '7159484'), - (375, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxKz7n24', '7178446'), - (376, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dw8Wbv0m', '6514659'), - (376, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dw8Wbv0m', '6514660'), - (376, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dw8Wbv0m', '6584747'), - (376, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dw8Wbv0m', '6587097'), - (376, 2359, 'attending', '2023-11-30 05:14:09', '2025-12-17 19:46:48', 'dw8Wbv0m', '6596617'), - (376, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dw8Wbv0m', '6609022'), - (376, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dw8Wbv0m', '6632757'), - (376, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dw8Wbv0m', '6644187'), - (376, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dw8Wbv0m', '6648951'), - (376, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dw8Wbv0m', '6648952'), - (376, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dw8Wbv0m', '6651141'), - (376, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dw8Wbv0m', '6655401'), - (376, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dw8Wbv0m', '6661585'), - (376, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dw8Wbv0m', '6661588'), - (376, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dw8Wbv0m', '6661589'), - (376, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dw8Wbv0m', '6699906'), - (376, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dw8Wbv0m', '6699913'), - (376, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dw8Wbv0m', '6701109'), - (376, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dw8Wbv0m', '6705219'), - (376, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dw8Wbv0m', '6710153'), - (376, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dw8Wbv0m', '6711552'), - (376, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dw8Wbv0m', '6711553'), - (376, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dw8Wbv0m', '6722688'), - (376, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dw8Wbv0m', '6730620'), - (376, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dw8Wbv0m', '6730642'), - (376, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dw8Wbv0m', '6740364'), - (376, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dw8Wbv0m', '6743829'), - (376, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dw8Wbv0m', '7030380'), - (376, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dw8Wbv0m', '7033677'), - (376, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dw8Wbv0m', '7035415'), - (376, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dw8Wbv0m', '7044715'), - (376, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dw8Wbv0m', '7050318'), - (376, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dw8Wbv0m', '7050319'), - (376, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dw8Wbv0m', '7050322'), - (376, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dw8Wbv0m', '7057804'), - (376, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dw8Wbv0m', '7072824'), - (376, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dw8Wbv0m', '7074348'), - (376, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dw8Wbv0m', '7074364'), - (376, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dw8Wbv0m', '7089267'), - (376, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dw8Wbv0m', '7098747'), - (376, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dw8Wbv0m', '7113468'), - (376, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dw8Wbv0m', '7114856'), - (376, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dw8Wbv0m', '7114951'), - (376, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dw8Wbv0m', '7114955'), - (376, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dw8Wbv0m', '7114956'), - (376, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dw8Wbv0m', '7114957'), - (376, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dw8Wbv0m', '7153615'), - (376, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dw8Wbv0m', '7159484'), - (376, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dw8Wbv0m', '7178446'), - (376, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dw8Wbv0m', '7220467'), - (376, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dw8Wbv0m', '7240354'), - (376, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dw8Wbv0m', '7251633'), - (376, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dw8Wbv0m', '7324073'), - (376, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dw8Wbv0m', '7324074'), - (376, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dw8Wbv0m', '7324075'), - (376, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dw8Wbv0m', '7324078'), - (376, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dw8Wbv0m', '7324082'), - (376, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dw8Wbv0m', '7331457'), - (376, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dw8Wbv0m', '7363643'), - (376, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dw8Wbv0m', '7368606'), - (376, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dw8Wbv0m', '7397462'), - (376, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dw8Wbv0m', '7424275'), - (376, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dw8Wbv0m', '7432751'), - (376, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dw8Wbv0m', '7432752'), - (376, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dw8Wbv0m', '7432753'), - (376, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432754'), - (376, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432755'), - (376, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432756'), - (376, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432758'), - (376, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432759'), - (376, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dw8Wbv0m', '7433834'), - (376, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dw8Wbv0m', '7470197'), - (376, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dw8Wbv0m', '7685613'), - (376, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dw8Wbv0m', '7688194'), - (376, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dw8Wbv0m', '7688196'), - (376, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dw8Wbv0m', '7688289'), - (376, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dw8Wbv0m', '7692763'), - (376, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dw8Wbv0m', '7697552'), - (376, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dw8Wbv0m', '7699878'), - (376, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dw8Wbv0m', '7704043'), - (376, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dw8Wbv0m', '7712467'), - (376, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dw8Wbv0m', '7713585'), - (376, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dw8Wbv0m', '7713586'), - (376, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dw8Wbv0m', '7738518'), - (376, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dw8Wbv0m', '7750636'), - (376, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dw8Wbv0m', '7796540'), - (376, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dw8Wbv0m', '7796541'), - (376, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dw8Wbv0m', '7796542'), - (376, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dw8Wbv0m', '7825913'), - (376, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dw8Wbv0m', '7826209'), - (376, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dw8Wbv0m', '7834742'), - (376, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dw8Wbv0m', '7842108'), - (376, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dw8Wbv0m', '7842902'), - (376, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dw8Wbv0m', '7842903'), - (376, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dw8Wbv0m', '7842904'), - (376, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dw8Wbv0m', '7842905'), - (376, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dw8Wbv0m', '7855719'), - (376, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dw8Wbv0m', '7860683'), - (376, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dw8Wbv0m', '7860684'), - (376, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dw8Wbv0m', '7866095'), - (376, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dw8Wbv0m', '7869170'), - (376, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dw8Wbv0m', '7869188'), - (376, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dw8Wbv0m', '7869201'), - (376, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dw8Wbv0m', '7877465'), - (376, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dw8Wbv0m', '7888250'), - (376, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dw8Wbv0m', '7904777'), - (376, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dw8Wbv0m', '8349164'), - (376, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dw8Wbv0m', '8349545'), - (376, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dw8Wbv0m', '8368028'), - (376, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dw8Wbv0m', '8368029'), - (376, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dw8Wbv0m', '8388462'), - (376, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dw8Wbv0m', '8400273'), - (376, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dw8Wbv0m', '8400275'), - (376, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dw8Wbv0m', '8400276'), - (376, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dw8Wbv0m', '8404977'), - (376, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dw8Wbv0m', '8430783'), - (376, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dw8Wbv0m', '8430784'), - (376, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dw8Wbv0m', '8430799'), - (376, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dw8Wbv0m', '8430800'), - (376, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dw8Wbv0m', '8430801'), - (376, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dw8Wbv0m', '8438709'), - (376, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dw8Wbv0m', '8457738'), - (376, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dw8Wbv0m', '8459566'), - (376, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dw8Wbv0m', '8459567'), - (376, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dw8Wbv0m', '8461032'), - (376, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dw8Wbv0m', '8477877'), - (376, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dw8Wbv0m', '8485688'), - (376, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dw8Wbv0m', '8490587'), - (376, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dw8Wbv0m', '8493552'), - (376, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dw8Wbv0m', '8493553'), - (376, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dw8Wbv0m', '8493554'), - (376, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dw8Wbv0m', '8493555'), - (376, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dw8Wbv0m', '8493556'), - (376, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dw8Wbv0m', '8493557'), - (376, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dw8Wbv0m', '8493558'), - (376, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dw8Wbv0m', '8493559'), - (376, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dw8Wbv0m', '8493560'), - (376, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dw8Wbv0m', '8493561'), - (376, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dw8Wbv0m', '8493572'), - (376, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dw8Wbv0m', '8540725'), - (376, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dw8Wbv0m', '8555421'), - (377, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40kNGKEA', '6045684'), - (378, 1431, 'attending', '2022-06-11 00:16:07', '2025-12-17 19:47:30', '41WDLg7m', '5389605'), - (378, 1442, 'attending', '2022-06-18 22:02:14', '2025-12-17 19:47:17', '41WDLg7m', '5397265'), - (378, 1450, 'attending', '2022-06-10 20:03:41', '2025-12-17 19:47:30', '41WDLg7m', '5403421'), - (378, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WDLg7m', '5403967'), - (378, 1456, 'attending', '2022-06-16 22:16:45', '2025-12-17 19:47:17', '41WDLg7m', '5404779'), - (378, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WDLg7m', '5404786'), - (378, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WDLg7m', '5405203'), - (378, 1463, 'maybe', '2022-06-14 17:36:29', '2025-12-17 19:47:31', '41WDLg7m', '5405208'), - (378, 1466, 'not_attending', '2022-06-16 22:50:57', '2025-12-17 19:47:17', '41WDLg7m', '5406427'), - (378, 1473, 'attending', '2022-06-14 17:36:54', '2025-12-17 19:47:31', '41WDLg7m', '5407267'), - (378, 1476, 'not_attending', '2022-06-19 20:51:16', '2025-12-17 19:47:17', '41WDLg7m', '5408130'), - (378, 1478, 'not_attending', '2022-06-24 21:58:32', '2025-12-17 19:47:19', '41WDLg7m', '5408794'), - (378, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WDLg7m', '5411699'), - (378, 1481, 'not_attending', '2022-06-20 02:04:39', '2025-12-17 19:47:17', '41WDLg7m', '5412237'), - (378, 1482, 'attending', '2022-06-20 01:56:51', '2025-12-17 19:47:19', '41WDLg7m', '5412550'), - (378, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WDLg7m', '5415046'), - (378, 1488, 'attending', '2022-06-26 01:04:24', '2025-12-17 19:47:19', '41WDLg7m', '5420154'), - (378, 1490, 'not_attending', '2022-06-26 01:02:13', '2025-12-17 19:47:19', '41WDLg7m', '5420156'), - (378, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WDLg7m', '5422086'), - (378, 1496, 'attending', '2022-06-26 17:10:25', '2025-12-17 19:47:19', '41WDLg7m', '5422404'), - (378, 1497, 'attending', '2022-06-26 17:10:44', '2025-12-17 19:47:19', '41WDLg7m', '5422405'), - (378, 1498, 'maybe', '2022-07-01 19:26:33', '2025-12-17 19:47:19', '41WDLg7m', '5422406'), - (378, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WDLg7m', '5424565'), - (378, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WDLg7m', '5426882'), - (378, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WDLg7m', '5427083'), - (378, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41WDLg7m', '5441125'), - (378, 1514, 'not_attending', '2022-07-21 03:01:38', '2025-12-17 19:47:20', '41WDLg7m', '5441126'), - (378, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WDLg7m', '5441128'), - (378, 1516, 'not_attending', '2022-08-20 14:45:20', '2025-12-17 19:47:23', '41WDLg7m', '5441129'), - (378, 1517, 'attending', '2022-08-27 15:10:28', '2025-12-17 19:47:23', '41WDLg7m', '5441130'), - (378, 1518, 'attending', '2022-08-31 10:18:17', '2025-12-17 19:47:24', '41WDLg7m', '5441131'), - (378, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41WDLg7m', '5441132'), - (378, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WDLg7m', '5446643'), - (378, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WDLg7m', '5453325'), - (378, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WDLg7m', '5454516'), - (378, 1544, 'maybe', '2022-09-11 03:36:00', '2025-12-17 19:47:11', '41WDLg7m', '5454517'), - (378, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WDLg7m', '5454605'), - (378, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WDLg7m', '5455037'), - (378, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WDLg7m', '5461278'), - (378, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WDLg7m', '5469480'), - (378, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WDLg7m', '5471073'), - (378, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '41WDLg7m', '5474663'), - (378, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WDLg7m', '5482022'), - (378, 1575, 'attending', '2022-08-26 22:48:44', '2025-12-17 19:47:23', '41WDLg7m', '5482250'), - (378, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WDLg7m', '5482793'), - (378, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WDLg7m', '5488912'), - (378, 1584, 'maybe', '2022-08-27 15:00:13', '2025-12-17 19:47:23', '41WDLg7m', '5492004'), - (378, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WDLg7m', '5492192'), - (378, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WDLg7m', '5493139'), - (378, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WDLg7m', '5493200'), - (378, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WDLg7m', '5502188'), - (378, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41WDLg7m', '5505059'), - (378, 1609, 'maybe', '2022-08-28 15:54:05', '2025-12-17 19:47:23', '41WDLg7m', '5506590'), - (378, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41WDLg7m', '5509055'), - (378, 1618, 'maybe', '2022-08-28 18:46:04', '2025-12-17 19:47:23', '41WDLg7m', '5512005'), - (378, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WDLg7m', '5512862'), - (378, 1621, 'not_attending', '2022-08-23 00:12:56', '2025-12-17 19:47:23', '41WDLg7m', '5513531'), - (378, 1623, 'attending', '2022-08-23 14:41:35', '2025-12-17 19:47:23', '41WDLg7m', '5513678'), - (378, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WDLg7m', '5513985'), - (378, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '41WDLg7m', '5519981'), - (378, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41WDLg7m', '5522550'), - (378, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41WDLg7m', '5534683'), - (378, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '41WDLg7m', '5537735'), - (378, 1636, 'attending', '2022-09-04 18:38:53', '2025-12-17 19:47:24', '41WDLg7m', '5538454'), - (378, 1637, 'attending', '2022-08-30 22:20:23', '2025-12-17 19:47:24', '41WDLg7m', '5539591'), - (378, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41WDLg7m', '5540859'), - (378, 1641, 'attending', '2022-08-31 22:41:10', '2025-12-17 19:47:24', '41WDLg7m', '5544226'), - (378, 1642, 'attending', '2022-08-31 22:41:39', '2025-12-17 19:47:24', '41WDLg7m', '5544227'), - (378, 1644, 'maybe', '2022-09-11 03:36:15', '2025-12-17 19:47:11', '41WDLg7m', '5545857'), - (378, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41WDLg7m', '5546619'), - (378, 1653, 'maybe', '2022-09-05 23:27:52', '2025-12-17 19:47:11', '41WDLg7m', '5554400'), - (378, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41WDLg7m', '5555245'), - (378, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41WDLg7m', '5557747'), - (378, 1661, 'maybe', '2022-09-09 00:41:49', '2025-12-17 19:47:24', '41WDLg7m', '5560254'), - (378, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41WDLg7m', '5560255'), - (378, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41WDLg7m', '5562906'), - (378, 1668, 'maybe', '2022-09-13 20:47:03', '2025-12-17 19:47:12', '41WDLg7m', '5563222'), - (378, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41WDLg7m', '5600604'), - (378, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41WDLg7m', '5605544'), - (378, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', '41WDLg7m', '5606737'), - (378, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41WDLg7m', '5630960'), - (378, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41WDLg7m', '5630961'), - (378, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41WDLg7m', '5630962'), - (378, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41WDLg7m', '5630966'), - (378, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41WDLg7m', '5630967'), - (378, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41WDLg7m', '5630968'), - (378, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41WDLg7m', '5635406'), - (378, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41WDLg7m', '5638765'), - (378, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41WDLg7m', '5640097'), - (378, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41WDLg7m', '5640843'), - (378, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41WDLg7m', '5641521'), - (378, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41WDLg7m', '5642818'), - (378, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41WDLg7m', '5652395'), - (378, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41WDLg7m', '5670445'), - (378, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41WDLg7m', '5671637'), - (378, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41WDLg7m', '5672329'), - (378, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41WDLg7m', '5674057'), - (378, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41WDLg7m', '5674060'), - (378, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41WDLg7m', '5677461'), - (378, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41WDLg7m', '5698046'), - (378, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41WDLg7m', '5699760'), - (378, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41WDLg7m', '5741601'), - (378, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41WDLg7m', '5763458'), - (378, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41WDLg7m', '5774172'), - (378, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '41WDLg7m', '5818247'), - (378, 1835, 'maybe', '2023-01-05 01:57:12', '2025-12-17 19:47:05', '41WDLg7m', '5819471'), - (378, 1840, 'maybe', '2022-12-08 01:09:54', '2025-12-17 19:47:17', '41WDLg7m', '5822288'), - (378, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41WDLg7m', '5827739'), - (378, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41WDLg7m', '5844306'), - (378, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41WDLg7m', '5850159'), - (378, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41WDLg7m', '5858999'), - (378, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41WDLg7m', '5871984'), - (378, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41WDLg7m', '5876354'), - (378, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41WDLg7m', '5880939'), - (378, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '41WDLg7m', '5880942'), - (378, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '41WDLg7m', '5880943'), - (378, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41WDLg7m', '5887890'), - (378, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41WDLg7m', '5888598'), - (378, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41WDLg7m', '5893260'), - (378, 1888, 'maybe', '2023-02-17 21:46:33', '2025-12-17 19:47:07', '41WDLg7m', '5900197'), - (378, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '41WDLg7m', '5900200'), - (378, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '41WDLg7m', '5900202'), - (378, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '41WDLg7m', '5900203'), - (378, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '41WDLg7m', '5910526'), - (378, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '41WDLg7m', '5910528'), - (378, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '41WDLg7m', '5936234'), - (378, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '41WDLg7m', '5958351'), - (378, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '41WDLg7m', '5959751'), - (378, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '41WDLg7m', '5959755'), - (378, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '41WDLg7m', '5960055'), - (378, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '41WDLg7m', '5961684'), - (378, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '41WDLg7m', '5962132'), - (378, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '41WDLg7m', '5962133'), - (378, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '41WDLg7m', '5962134'), - (378, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '41WDLg7m', '5962317'), - (378, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '41WDLg7m', '5962318'), - (378, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '41WDLg7m', '5965933'), - (378, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '41WDLg7m', '5967014'), - (378, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '41WDLg7m', '5972815'), - (378, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '41WDLg7m', '5974016'), - (378, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '41WDLg7m', '5981515'), - (378, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '41WDLg7m', '5993516'), - (378, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '41WDLg7m', '5998939'), - (378, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '41WDLg7m', '6028191'), - (378, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '41WDLg7m', '6040066'), - (378, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '41WDLg7m', '6042717'), - (378, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '41WDLg7m', '6044838'), - (378, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '41WDLg7m', '6044839'), - (378, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WDLg7m', '6045684'), - (378, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '41WDLg7m', '6050104'), - (378, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '41WDLg7m', '6053195'), - (378, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '41WDLg7m', '6053198'), - (378, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '41WDLg7m', '6056085'), - (378, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '41WDLg7m', '6056916'), - (378, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '41WDLg7m', '6059290'), - (378, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '41WDLg7m', '6060328'), - (378, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '41WDLg7m', '6061037'), - (378, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '41WDLg7m', '6061039'), - (378, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '41WDLg7m', '6067245'), - (378, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '41WDLg7m', '6068094'), - (378, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '41WDLg7m', '6068252'), - (378, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '41WDLg7m', '6068253'), - (378, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '41WDLg7m', '6068254'), - (378, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '41WDLg7m', '6068280'), - (378, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '41WDLg7m', '6069093'), - (378, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '41WDLg7m', '6072528'), - (378, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '41WDLg7m', '6079840'), - (378, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '41WDLg7m', '6083398'), - (378, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '41WDLg7m', '6093504'), - (378, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '41WDLg7m', '6097414'), - (378, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '41WDLg7m', '6097442'), - (378, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '41WDLg7m', '6097684'), - (378, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '41WDLg7m', '6098762'), - (378, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '41WDLg7m', '6101361'), - (378, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '41WDLg7m', '6101362'), - (378, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '41WDLg7m', '6107314'), - (378, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '41WDLg7m', '6120034'), - (378, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '41WDLg7m', '6136733'), - (378, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '41WDLg7m', '6137989'), - (378, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '41WDLg7m', '6150864'), - (378, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '41WDLg7m', '6155491'), - (378, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '41WDLg7m', '6164417'), - (378, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '41WDLg7m', '6166388'), - (378, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '41WDLg7m', '6176439'), - (378, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '41WDLg7m', '6182410'), - (378, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '41WDLg7m', '6185812'), - (378, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '41WDLg7m', '6187651'), - (378, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '41WDLg7m', '6187963'), - (378, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '41WDLg7m', '6187964'), - (378, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '41WDLg7m', '6187966'), - (378, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '41WDLg7m', '6187967'), - (378, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '41WDLg7m', '6187969'), - (378, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '41WDLg7m', '6334878'), - (378, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '41WDLg7m', '6337236'), - (378, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '41WDLg7m', '6337970'), - (378, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '41WDLg7m', '6338308'), - (378, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '41WDLg7m', '6341710'), - (378, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '41WDLg7m', '6342044'), - (378, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '41WDLg7m', '6342298'), - (378, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '41WDLg7m', '6343294'), - (378, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '41WDLg7m', '6347034'), - (378, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '41WDLg7m', '6347056'), - (378, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '41WDLg7m', '6353830'), - (378, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '41WDLg7m', '6353831'), - (378, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '41WDLg7m', '6357867'), - (378, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '41WDLg7m', '6358652'), - (378, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '41WDLg7m', '6361709'), - (378, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '41WDLg7m', '6361710'), - (378, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '41WDLg7m', '6361711'), - (378, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '41WDLg7m', '6361712'), - (378, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '41WDLg7m', '6361713'), - (378, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '41WDLg7m', '6382573'), - (378, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '41WDLg7m', '6388604'), - (378, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '41WDLg7m', '6394629'), - (378, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '41WDLg7m', '6394631'), - (378, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '41WDLg7m', '6440863'), - (378, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '41WDLg7m', '6445440'), - (378, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '41WDLg7m', '6453951'), - (378, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '41WDLg7m', '6461696'), - (378, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '41WDLg7m', '6462129'), - (378, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '41WDLg7m', '6463218'), - (378, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '41WDLg7m', '6472181'), - (378, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41WDLg7m', '6482693'), - (378, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '41WDLg7m', '6484200'), - (378, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '41WDLg7m', '6484680'), - (378, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41WDLg7m', '6507741'), - (378, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41WDLg7m', '6514659'), - (378, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41WDLg7m', '6514660'), - (378, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41WDLg7m', '6519103'), - (378, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41WDLg7m', '6535681'), - (378, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41WDLg7m', '6584747'), - (378, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41WDLg7m', '6587097'), - (378, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41WDLg7m', '6609022'), - (378, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41WDLg7m', '6632757'), - (378, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41WDLg7m', '6644187'), - (378, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41WDLg7m', '6648951'), - (378, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41WDLg7m', '6648952'), - (378, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41WDLg7m', '6655401'), - (378, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41WDLg7m', '6661585'), - (378, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41WDLg7m', '6661588'), - (378, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41WDLg7m', '6661589'), - (378, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41WDLg7m', '6699906'), - (378, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41WDLg7m', '6699913'), - (378, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41WDLg7m', '6701109'), - (378, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41WDLg7m', '6705219'), - (378, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41WDLg7m', '6710153'), - (378, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41WDLg7m', '6711552'), - (378, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '41WDLg7m', '6711553'), - (378, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41WDLg7m', '6722688'), - (378, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41WDLg7m', '6730620'), - (378, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41WDLg7m', '6740364'), - (378, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41WDLg7m', '6743829'), - (378, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41WDLg7m', '7030380'), - (378, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41WDLg7m', '7033677'), - (378, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '41WDLg7m', '7044715'), - (378, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '41WDLg7m', '7050318'), - (378, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '41WDLg7m', '7050319'), - (378, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '41WDLg7m', '7050322'), - (378, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '41WDLg7m', '7057804'), - (378, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '41WDLg7m', '7072824'), - (378, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '41WDLg7m', '7074348'), - (378, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '41WDLg7m', '7074364'), - (378, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '41WDLg7m', '7089267'), - (378, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '41WDLg7m', '7098747'), - (378, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '41WDLg7m', '7113468'), - (378, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '41WDLg7m', '7114856'), - (378, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '41WDLg7m', '7114951'), - (378, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '41WDLg7m', '7114955'), - (378, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '41WDLg7m', '7114956'), - (378, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '41WDLg7m', '7114957'), - (378, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '41WDLg7m', '7159484'), - (378, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '41WDLg7m', '7178446'), - (378, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '41WDLg7m', '7220467'), - (378, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '41WDLg7m', '7240354'), - (378, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '41WDLg7m', '7251633'), - (378, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '41WDLg7m', '7324073'), - (378, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '41WDLg7m', '7324074'), - (378, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '41WDLg7m', '7324075'), - (378, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '41WDLg7m', '7324078'), - (378, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '41WDLg7m', '7324082'), - (378, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '41WDLg7m', '7331457'), - (378, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '41WDLg7m', '7363643'), - (378, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '41WDLg7m', '7368606'), - (378, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '41WDLg7m', '7397462'), - (378, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '41WDLg7m', '7424275'), - (378, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '41WDLg7m', '7432751'), - (378, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '41WDLg7m', '7432752'), - (378, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '41WDLg7m', '7432753'), - (378, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '41WDLg7m', '7432754'), - (378, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '41WDLg7m', '7432755'), - (378, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '41WDLg7m', '7432756'), - (378, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '41WDLg7m', '7432758'), - (378, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '41WDLg7m', '7432759'), - (378, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '41WDLg7m', '7433834'), - (378, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '41WDLg7m', '7470197'), - (378, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '41WDLg7m', '7685613'), - (378, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '41WDLg7m', '7688194'), - (378, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '41WDLg7m', '7688196'), - (378, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '41WDLg7m', '7688289'), - (378, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '41WDLg7m', '7692763'), - (378, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '41WDLg7m', '7697552'), - (378, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '41WDLg7m', '7699878'), - (378, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '41WDLg7m', '7704043'), - (378, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '41WDLg7m', '7712467'), - (378, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '41WDLg7m', '7713585'), - (378, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '41WDLg7m', '7713586'), - (378, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '41WDLg7m', '7738518'), - (378, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '41WDLg7m', '7750636'), - (378, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '41WDLg7m', '7796540'), - (378, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '41WDLg7m', '7796541'), - (378, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '41WDLg7m', '7796542'), - (378, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '41WDLg7m', '7825913'), - (378, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '41WDLg7m', '7826209'), - (378, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '41WDLg7m', '7834742'), - (378, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '41WDLg7m', '7842108'), - (378, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '41WDLg7m', '7842902'), - (378, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '41WDLg7m', '7842903'), - (378, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '41WDLg7m', '7842904'), - (378, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '41WDLg7m', '7842905'), - (378, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '41WDLg7m', '7855719'), - (378, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '41WDLg7m', '7860683'), - (378, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '41WDLg7m', '7860684'), - (378, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '41WDLg7m', '7866095'), - (378, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '41WDLg7m', '7869170'), - (378, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '41WDLg7m', '7869188'), - (378, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '41WDLg7m', '7869201'), - (378, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '41WDLg7m', '7877465'), - (378, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '41WDLg7m', '7888250'), - (378, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '41WDLg7m', '7904777'), - (378, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '41WDLg7m', '8349164'), - (378, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '41WDLg7m', '8349545'), - (378, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '41WDLg7m', '8368028'), - (378, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '41WDLg7m', '8368029'), - (378, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '41WDLg7m', '8388462'), - (378, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '41WDLg7m', '8400273'), - (378, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '41WDLg7m', '8400275'), - (378, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '41WDLg7m', '8400276'), - (378, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '41WDLg7m', '8404977'), - (378, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '41WDLg7m', '8430783'), - (378, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '41WDLg7m', '8430784'), - (378, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '41WDLg7m', '8430799'), - (378, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '41WDLg7m', '8430800'), - (378, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '41WDLg7m', '8430801'), - (378, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '41WDLg7m', '8438709'), - (378, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '41WDLg7m', '8457738'), - (378, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '41WDLg7m', '8459566'), - (378, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '41WDLg7m', '8459567'), - (378, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '41WDLg7m', '8461032'), - (378, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '41WDLg7m', '8477877'), - (378, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '41WDLg7m', '8485688'), - (378, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '41WDLg7m', '8490587'), - (378, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '41WDLg7m', '8493552'), - (378, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '41WDLg7m', '8493553'), - (378, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '41WDLg7m', '8493554'), - (378, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '41WDLg7m', '8493555'), - (378, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '41WDLg7m', '8493556'), - (378, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '41WDLg7m', '8493557'), - (378, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '41WDLg7m', '8493558'), - (378, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '41WDLg7m', '8493559'), - (378, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '41WDLg7m', '8493560'), - (378, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '41WDLg7m', '8493561'), - (378, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '41WDLg7m', '8493572'), - (378, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '41WDLg7m', '8540725'), - (378, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '41WDLg7m', '8555421'), - (379, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mj6QGq5m', '5195095'), - (379, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mj6QGq5m', '5247467'), - (379, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mj6QGq5m', '5260800'), - (379, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mj6QGq5m', '5269930'), - (379, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mj6QGq5m', '5271448'), - (379, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mj6QGq5m', '5271449'), - (379, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mj6QGq5m', '5276469'), - (379, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mj6QGq5m', '5278159'), - (379, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mj6QGq5m', '5363695'), - (379, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mj6QGq5m', '5365960'), - (379, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mj6QGq5m', '5368973'), - (379, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mj6QGq5m', '5378247'), - (379, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mj6QGq5m', '5389605'), - (379, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mj6QGq5m', '5397265'), - (379, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj6QGq5m', '6045684'), - (380, 823, 'attending', '2021-06-19 15:05:10', '2025-12-17 19:47:48', 'ZdNYvEy4', '3974109'), - (380, 824, 'attending', '2021-06-03 22:07:07', '2025-12-17 19:47:47', 'ZdNYvEy4', '3974112'), - (380, 827, 'attending', '2021-06-02 04:28:40', '2025-12-17 19:47:47', 'ZdNYvEy4', '3975311'), - (380, 828, 'attending', '2021-06-12 22:21:28', '2025-12-17 19:47:47', 'ZdNYvEy4', '3975312'), - (380, 833, 'attending', '2021-06-07 22:31:01', '2025-12-17 19:47:47', 'ZdNYvEy4', '3990438'), - (380, 838, 'maybe', '2021-06-06 21:06:38', '2025-12-17 19:47:47', 'ZdNYvEy4', '3994992'), - (380, 844, 'attending', '2021-06-10 12:30:06', '2025-12-17 19:47:38', 'ZdNYvEy4', '4014338'), - (380, 859, 'attending', '2021-06-10 20:21:52', '2025-12-17 19:47:48', 'ZdNYvEy4', '4015993'), - (380, 867, 'attending', '2021-06-26 17:03:02', '2025-12-17 19:47:38', 'ZdNYvEy4', '4021848'), - (380, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNYvEy4', '4136744'), - (380, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ZdNYvEy4', '4136937'), - (380, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ZdNYvEy4', '4136938'), - (380, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNYvEy4', '4136947'), - (380, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNYvEy4', '4210314'), - (380, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ZdNYvEy4', '4225444'), - (380, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNYvEy4', '4239259'), - (380, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ZdNYvEy4', '4240316'), - (380, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ZdNYvEy4', '4240317'), - (380, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNYvEy4', '4250163'), - (380, 917, 'not_attending', '2021-07-15 00:59:01', '2025-12-17 19:47:39', 'ZdNYvEy4', '4274481'), - (380, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ZdNYvEy4', '4275957'), - (380, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNYvEy4', '4277819'), - (380, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNYvEy4', '4301723'), - (380, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNYvEy4', '6045684'), - (381, 996, 'attending', '2021-10-15 22:17:45', '2025-12-17 19:47:35', 'dNMjqYW4', '4420747'), - (381, 997, 'attending', '2021-10-23 18:19:03', '2025-12-17 19:47:35', 'dNMjqYW4', '4420748'), - (381, 998, 'attending', '2021-10-29 21:21:40', '2025-12-17 19:47:36', 'dNMjqYW4', '4420749'), - (381, 1086, 'attending', '2021-10-13 09:15:57', '2025-12-17 19:47:34', 'dNMjqYW4', '4568602'), - (381, 1087, 'maybe', '2021-10-15 19:49:09', '2025-12-17 19:47:35', 'dNMjqYW4', '4572153'), - (381, 1089, 'not_attending', '2021-10-18 19:52:59', '2025-12-17 19:47:35', 'dNMjqYW4', '4574712'), - (381, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dNMjqYW4', '4585962'), - (381, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dNMjqYW4', '4596356'), - (381, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dNMjqYW4', '4598860'), - (381, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dNMjqYW4', '4598861'), - (381, 1099, 'attending', '2021-11-06 15:28:42', '2025-12-17 19:47:36', 'dNMjqYW4', '4602797'), - (381, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dNMjqYW4', '4637896'), - (381, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dNMjqYW4', '4642994'), - (381, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dNMjqYW4', '4642995'), - (381, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dNMjqYW4', '4642996'), - (381, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dNMjqYW4', '4642997'), - (381, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dNMjqYW4', '4645687'), - (381, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dNMjqYW4', '4645698'), - (381, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dNMjqYW4', '4645704'), - (381, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dNMjqYW4', '4645705'), - (381, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dNMjqYW4', '4668385'), - (381, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dNMjqYW4', '6045684'), - (382, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VmMzYEkA', '3517815'), - (382, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VmMzYEkA', '3517816'), - (382, 625, 'attending', '2021-03-02 21:06:04', '2025-12-17 19:47:51', 'VmMzYEkA', '3533296'), - (382, 630, 'attending', '2021-03-02 21:06:16', '2025-12-17 19:47:51', 'VmMzYEkA', '3533425'), - (382, 639, 'not_attending', '2021-03-07 04:16:32', '2025-12-17 19:47:51', 'VmMzYEkA', '3536656'), - (382, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VmMzYEkA', '3539916'), - (382, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VmMzYEkA', '3539917'), - (382, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VmMzYEkA', '3539918'), - (382, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VmMzYEkA', '3539919'), - (382, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VmMzYEkA', '3539920'), - (382, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VmMzYEkA', '3539921'), - (382, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VmMzYEkA', '3539922'), - (382, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VmMzYEkA', '3539923'), - (382, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VmMzYEkA', '3539927'), - (382, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VmMzYEkA', '3582734'), - (382, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VmMzYEkA', '3619523'), - (382, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VmMzYEkA', '3674262'), - (382, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VmMzYEkA', '3677402'), - (382, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMzYEkA', '6045684'), - (383, 2697, 'not_attending', '2024-08-31 19:03:16', '2025-12-17 19:46:32', '4E92NPn4', '7324082'), - (383, 2698, 'not_attending', '2024-08-31 19:05:13', '2025-12-17 19:46:24', '4E92NPn4', '7324083'), - (383, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4E92NPn4', '7424275'), - (383, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4E92NPn4', '7424276'), - (383, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4E92NPn4', '7432751'), - (383, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4E92NPn4', '7432752'), - (383, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4E92NPn4', '7432753'), - (383, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4E92NPn4', '7432754'), - (383, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4E92NPn4', '7432755'), - (383, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4E92NPn4', '7432756'), - (383, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4E92NPn4', '7432758'), - (383, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4E92NPn4', '7432759'), - (383, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4E92NPn4', '7433834'), - (383, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4E92NPn4', '7470197'), - (383, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', '4E92NPn4', '7682072'), - (383, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4E92NPn4', '7685613'), - (383, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4E92NPn4', '7688194'), - (383, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4E92NPn4', '7688196'), - (383, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4E92NPn4', '7688289'), - (383, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4E92NPn4', '7692763'), - (383, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4E92NPn4', '7697552'), - (383, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4E92NPn4', '7699878'), - (383, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4E92NPn4', '7704043'), - (383, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4E92NPn4', '7712467'), - (383, 2925, 'maybe', '2024-12-14 13:17:06', '2025-12-17 19:46:21', '4E92NPn4', '7713584'), - (383, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4E92NPn4', '7713585'), - (383, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4E92NPn4', '7713586'), - (383, 2947, 'attending', '2024-12-09 03:09:24', '2025-12-17 19:46:21', '4E92NPn4', '7727445'), - (383, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4E92NPn4', '7738518'), - (383, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4E92NPn4', '7750636'), - (383, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4E92NPn4', '7796540'), - (383, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4E92NPn4', '7796541'), - (383, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4E92NPn4', '7796542'), - (383, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4E92NPn4', '7825913'), - (383, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4E92NPn4', '7826209'), - (383, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4E92NPn4', '7834742'), - (383, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4E92NPn4', '7842108'), - (383, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4E92NPn4', '7842902'), - (383, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4E92NPn4', '7842903'), - (383, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4E92NPn4', '7842904'), - (383, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4E92NPn4', '7842905'), - (383, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4E92NPn4', '7855719'), - (383, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4E92NPn4', '7860683'), - (383, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4E92NPn4', '7860684'), - (383, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4E92NPn4', '7866095'), - (383, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4E92NPn4', '7869170'), - (383, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4E92NPn4', '7869188'), - (383, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4E92NPn4', '7869201'), - (383, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4E92NPn4', '7877465'), - (383, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4E92NPn4', '7878570'), - (383, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4E92NPn4', '7888250'), - (383, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4E92NPn4', '8349164'), - (383, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4E92NPn4', '8349545'), - (383, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4E92NPn4', '8353584'), - (384, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgLGQj4', '6045684'), - (385, 993, 'not_attending', '2021-09-24 16:12:14', '2025-12-17 19:47:34', '40k0QWYA', '4420741'), - (385, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', '40k0QWYA', '4420744'), - (385, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', '40k0QWYA', '4420747'), - (385, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '40k0QWYA', '4568602'), - (385, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '40k0QWYA', '4572153'), - (385, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '40k0QWYA', '4585962'), - (385, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '40k0QWYA', '4596356'), - (385, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '40k0QWYA', '4598860'), - (385, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '40k0QWYA', '4598861'), - (385, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '40k0QWYA', '4602797'), - (385, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '40k0QWYA', '4637896'), - (385, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '40k0QWYA', '4642994'), - (385, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '40k0QWYA', '4642995'), - (385, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '40k0QWYA', '4642996'), - (385, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '40k0QWYA', '4642997'), - (385, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '40k0QWYA', '4645687'), - (385, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '40k0QWYA', '4645698'), - (385, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '40k0QWYA', '4645704'), - (385, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '40k0QWYA', '4645705'), - (385, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '40k0QWYA', '4668385'), - (385, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '40k0QWYA', '4694407'), - (385, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '40k0QWYA', '4736497'), - (385, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '40k0QWYA', '4736499'), - (385, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '40k0QWYA', '4736500'), - (385, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '40k0QWYA', '4736503'), - (385, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '40k0QWYA', '4736504'), - (385, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '40k0QWYA', '4746789'), - (385, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '40k0QWYA', '4753929'), - (385, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '40k0QWYA', '5038850'), - (385, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '40k0QWYA', '5045826'), - (385, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '40k0QWYA', '5132533'), - (385, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '40k0QWYA', '5186582'), - (385, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '40k0QWYA', '5186583'), - (385, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '40k0QWYA', '5186585'), - (385, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '40k0QWYA', '5190437'), - (385, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '40k0QWYA', '5215989'), - (385, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40k0QWYA', '6045684'), - (386, 1486, 'attending', '2022-07-06 00:16:22', '2025-12-17 19:47:19', 'daJeNzlm', '5416339'), - (386, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'daJeNzlm', '5424565'), - (386, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'daJeNzlm', '5426882'), - (386, 1505, 'not_attending', '2022-07-06 01:20:19', '2025-12-17 19:47:19', 'daJeNzlm', '5427083'), - (386, 1507, 'maybe', '2022-07-06 20:27:54', '2025-12-17 19:47:19', 'daJeNzlm', '5433100'), - (386, 1511, 'maybe', '2022-07-09 01:01:55', '2025-12-17 19:47:19', 'daJeNzlm', '5437733'), - (386, 1512, 'attending', '2022-07-12 14:03:19', '2025-12-17 19:47:19', 'daJeNzlm', '5441112'), - (386, 1513, 'maybe', '2022-07-09 14:34:45', '2025-12-17 19:47:20', 'daJeNzlm', '5441125'), - (386, 1514, 'maybe', '2022-07-16 18:20:35', '2025-12-17 19:47:20', 'daJeNzlm', '5441126'), - (386, 1515, 'maybe', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'daJeNzlm', '5441128'), - (386, 1520, 'maybe', '2022-07-12 14:03:04', '2025-12-17 19:47:19', 'daJeNzlm', '5441645'), - (386, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'daJeNzlm', '5446643'), - (386, 1530, 'attending', '2022-07-16 18:21:01', '2025-12-17 19:47:20', 'daJeNzlm', '5448612'), - (386, 1536, 'maybe', '2022-07-16 18:20:11', '2025-12-17 19:47:20', 'daJeNzlm', '5449068'), - (386, 1539, 'maybe', '2022-07-28 11:36:26', '2025-12-17 19:47:21', 'daJeNzlm', '5449671'), - (386, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'daJeNzlm', '5453325'), - (386, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'daJeNzlm', '5454516'), - (386, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'daJeNzlm', '5454605'), - (386, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'daJeNzlm', '5455037'), - (386, 1552, 'attending', '2022-07-28 11:35:48', '2025-12-17 19:47:20', 'daJeNzlm', '5455149'), - (386, 1557, 'maybe', '2022-08-03 12:24:40', '2025-12-17 19:47:21', 'daJeNzlm', '5458729'), - (386, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'daJeNzlm', '5461278'), - (386, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'daJeNzlm', '5469480'), - (386, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'daJeNzlm', '5471073'), - (386, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'daJeNzlm', '5474663'), - (386, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'daJeNzlm', '5482022'), - (386, 1576, 'not_attending', '2022-08-02 12:09:02', '2025-12-17 19:47:21', 'daJeNzlm', '5482623'), - (386, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'daJeNzlm', '5482793'), - (386, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'daJeNzlm', '5488912'), - (386, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'daJeNzlm', '5492192'), - (386, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'daJeNzlm', '5493139'), - (386, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'daJeNzlm', '5493200'), - (386, 1591, 'maybe', '2022-08-09 18:32:01', '2025-12-17 19:47:22', 'daJeNzlm', '5493764'), - (386, 1592, 'maybe', '2022-08-09 18:31:16', '2025-12-17 19:47:22', 'daJeNzlm', '5494031'), - (386, 1595, 'maybe', '2022-08-09 18:31:48', '2025-12-17 19:47:22', 'daJeNzlm', '5495736'), - (386, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'daJeNzlm', '5502188'), - (386, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'daJeNzlm', '5512862'), - (386, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'daJeNzlm', '5513985'), - (386, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daJeNzlm', '6045684'), - (387, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '41qEGjR4', '7869188'), - (387, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', '41qEGjR4', '7880977'), - (387, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '41qEGjR4', '7888250'), - (387, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', '41qEGjR4', '7897784'), - (387, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', '41qEGjR4', '7903856'), - (387, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', '41qEGjR4', '8347770'), - (387, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '41qEGjR4', '8349164'), - (387, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '41qEGjR4', '8349545'), - (387, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '41qEGjR4', '8353584'), - (388, 254, 'attending', '2021-03-07 21:03:33', '2025-12-17 19:47:51', 'v4Dgx36A', '3149485'), - (388, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'v4Dgx36A', '3426074'), - (388, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'v4Dgx36A', '3430267'), - (388, 621, 'not_attending', '2021-03-06 08:08:40', '2025-12-17 19:47:51', 'v4Dgx36A', '3517815'), - (388, 622, 'maybe', '2021-03-16 22:50:56', '2025-12-17 19:47:51', 'v4Dgx36A', '3517816'), - (388, 639, 'attending', '2021-03-07 09:13:24', '2025-12-17 19:47:51', 'v4Dgx36A', '3536656'), - (388, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4Dgx36A', '3539927'), - (388, 688, 'attending', '2021-03-10 01:17:45', '2025-12-17 19:47:51', 'v4Dgx36A', '3553729'), - (388, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4Dgx36A', '3582734'), - (388, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4Dgx36A', '3619523'), - (388, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4Dgx36A', '6045684'), - (389, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'd8qWLL8m', '7903856'), - (389, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd8qWLL8m', '7904777'), - (389, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'd8qWLL8m', '8347770'), - (389, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd8qWLL8m', '8349164'), - (389, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd8qWLL8m', '8349545'), - (389, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd8qWLL8m', '8353584'), - (389, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd8qWLL8m', '8368028'), - (389, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd8qWLL8m', '8368029'), - (389, 3140, 'not_attending', '2025-05-21 04:07:31', '2025-12-17 19:46:21', 'd8qWLL8m', '8380399'), - (389, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', 'd8qWLL8m', '8387505'), - (389, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd8qWLL8m', '8388462'), - (389, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd8qWLL8m', '8400273'), - (389, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd8qWLL8m', '8400274'), - (389, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd8qWLL8m', '8400275'), - (389, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'd8qWLL8m', '8400276'), - (389, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd8qWLL8m', '8404977'), - (389, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'd8qWLL8m', '8430783'), - (389, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd8qWLL8m', '8430784'), - (389, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd8qWLL8m', '8430799'), - (389, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd8qWLL8m', '8430800'), - (389, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd8qWLL8m', '8430801'), - (389, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd8qWLL8m', '8438709'), - (389, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd8qWLL8m', '8457738'), - (389, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd8qWLL8m', '8459566'), - (389, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd8qWLL8m', '8459567'), - (389, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd8qWLL8m', '8461032'), - (389, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd8qWLL8m', '8477877'), - (389, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd8qWLL8m', '8485688'), - (389, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd8qWLL8m', '8490587'), - (389, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd8qWLL8m', '8493552'), - (389, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'd8qWLL8m', '8493553'), - (389, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd8qWLL8m', '8493554'), - (389, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd8qWLL8m', '8493555'), - (389, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd8qWLL8m', '8493556'), - (389, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd8qWLL8m', '8493557'), - (389, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd8qWLL8m', '8493558'), - (389, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd8qWLL8m', '8493559'), - (389, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd8qWLL8m', '8493560'), - (389, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'd8qWLL8m', '8493561'), - (389, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd8qWLL8m', '8493572'), - (389, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'd8qWLL8m', '8529058'), - (390, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXNVpNRd', '6045684'), - (391, 262, 'attending', '2021-06-25 04:41:03', '2025-12-17 19:47:38', '54kyQKzm', '3149493'), - (391, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '54kyQKzm', '4021848'), - (391, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '54kyQKzm', '4136937'), - (391, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '54kyQKzm', '4136938'), - (391, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', '54kyQKzm', '4136947'), - (391, 879, 'not_attending', '2021-06-25 04:41:07', '2025-12-17 19:47:38', '54kyQKzm', '4147806'), - (391, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54kyQKzm', '4210314'), - (391, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54kyQKzm', '4225444'), - (391, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '54kyQKzm', '4229417'), - (391, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '54kyQKzm', '4229418'), - (391, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', '54kyQKzm', '4229420'), - (391, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', '54kyQKzm', '4229423'), - (391, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54kyQKzm', '4239259'), - (391, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '54kyQKzm', '4240316'), - (391, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '54kyQKzm', '4240317'), - (391, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '54kyQKzm', '4240318'), - (391, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '54kyQKzm', '4240320'), - (391, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '54kyQKzm', '4250163'), - (391, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54kyQKzm', '4275957'), - (391, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54kyQKzm', '4277819'), - (391, 923, 'not_attending', '2021-07-20 02:30:40', '2025-12-17 19:47:40', '54kyQKzm', '4292773'), - (391, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54kyQKzm', '4301723'), - (391, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '54kyQKzm', '4302093'), - (391, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '54kyQKzm', '4304151'), - (391, 940, 'not_attending', '2021-07-30 16:29:32', '2025-12-17 19:47:40', '54kyQKzm', '4309049'), - (391, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', '54kyQKzm', '4315713'), - (391, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', '54kyQKzm', '4315714'), - (391, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', '54kyQKzm', '4315726'), - (391, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54kyQKzm', '4356801'), - (391, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '54kyQKzm', '4366186'), - (391, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '54kyQKzm', '4366187'), - (391, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '54kyQKzm', '4420735'), - (391, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '54kyQKzm', '4420738'), - (391, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '54kyQKzm', '4420739'), - (391, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '54kyQKzm', '4420741'), - (391, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '54kyQKzm', '4420744'), - (391, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '54kyQKzm', '4420747'), - (391, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '54kyQKzm', '4420748'), - (391, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '54kyQKzm', '4420749'), - (391, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kyQKzm', '6045684'), - (415, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4E2kMeXd', '5900202'), - (415, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '4E2kMeXd', '5962317'), - (415, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4E2kMeXd', '5962318'), - (415, 1951, 'not_attending', '2023-03-21 00:52:15', '2025-12-17 19:46:57', '4E2kMeXd', '5965933'), - (415, 1971, 'attending', '2023-03-20 19:42:34', '2025-12-17 19:46:56', '4E2kMeXd', '5993765'), - (415, 1973, 'not_attending', '2023-03-19 20:38:35', '2025-12-17 19:46:56', '4E2kMeXd', '5993777'), - (415, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', '4E2kMeXd', '6028191'), - (415, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4E2kMeXd', '6040066'), - (415, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4E2kMeXd', '6042717'), - (415, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4E2kMeXd', '6044838'), - (415, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4E2kMeXd', '6044839'), - (415, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E2kMeXd', '6045684'), - (415, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4E2kMeXd', '6050104'), - (415, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4E2kMeXd', '6053195'), - (415, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4E2kMeXd', '6053198'), - (415, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4E2kMeXd', '6056085'), - (415, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4E2kMeXd', '6056916'), - (415, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4E2kMeXd', '6059290'), - (415, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4E2kMeXd', '6060328'), - (415, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4E2kMeXd', '6061037'), - (415, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4E2kMeXd', '6061039'), - (415, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4E2kMeXd', '6067245'), - (415, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4E2kMeXd', '6068094'), - (415, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4E2kMeXd', '6068252'), - (415, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4E2kMeXd', '6068253'), - (415, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4E2kMeXd', '6068254'), - (415, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '4E2kMeXd', '6068280'), - (415, 2032, 'attending', '2023-06-02 18:51:43', '2025-12-17 19:47:04', '4E2kMeXd', '6068281'), - (415, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4E2kMeXd', '6069093'), - (415, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4E2kMeXd', '6072528'), - (415, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4E2kMeXd', '6079840'), - (415, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4E2kMeXd', '6083398'), - (415, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4E2kMeXd', '6093504'), - (415, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4E2kMeXd', '6097414'), - (415, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4E2kMeXd', '6097442'), - (415, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4E2kMeXd', '6097684'), - (415, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4E2kMeXd', '6098762'), - (415, 2064, 'not_attending', '2023-06-24 17:44:36', '2025-12-17 19:46:50', '4E2kMeXd', '6099988'), - (415, 2065, 'attending', '2023-06-15 21:04:37', '2025-12-17 19:46:49', '4E2kMeXd', '6101169'), - (415, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4E2kMeXd', '6101361'), - (415, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4E2kMeXd', '6101362'), - (415, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4E2kMeXd', '6103752'), - (415, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4E2kMeXd', '6107314'), - (415, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4E2kMeXd', '6120034'), - (415, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '4E2kMeXd', '6136733'), - (415, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4E2kMeXd', '6137989'), - (415, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4E2kMeXd', '6150864'), - (415, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4E2kMeXd', '6155491'), - (415, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4E2kMeXd', '6164417'), - (415, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4E2kMeXd', '6166388'), - (415, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4E2kMeXd', '6176439'), - (415, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4E2kMeXd', '6182410'), - (415, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4E2kMeXd', '6185812'), - (415, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4E2kMeXd', '6187651'), - (415, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4E2kMeXd', '6187963'), - (415, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4E2kMeXd', '6187964'), - (415, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4E2kMeXd', '6187966'), - (415, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4E2kMeXd', '6187967'), - (415, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4E2kMeXd', '6187969'), - (415, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4E2kMeXd', '6334878'), - (415, 2152, 'attending', '2023-07-14 22:32:24', '2025-12-17 19:46:52', '4E2kMeXd', '6337021'), - (415, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4E2kMeXd', '6337236'), - (415, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4E2kMeXd', '6337970'), - (415, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4E2kMeXd', '6338308'), - (415, 2160, 'attending', '2023-07-22 18:09:42', '2025-12-17 19:46:54', '4E2kMeXd', '6338358'), - (415, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4E2kMeXd', '6340845'), - (415, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4E2kMeXd', '6341710'), - (415, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4E2kMeXd', '6342044'), - (415, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4E2kMeXd', '6342298'), - (415, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4E2kMeXd', '6343294'), - (415, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4E2kMeXd', '6347034'), - (415, 2177, 'not_attending', '2023-08-12 17:53:35', '2025-12-17 19:46:55', '4E2kMeXd', '6347053'), - (415, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4E2kMeXd', '6347056'), - (415, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4E2kMeXd', '6353830'), - (415, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4E2kMeXd', '6353831'), - (415, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4E2kMeXd', '6357867'), - (415, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4E2kMeXd', '6358652'), - (415, 2202, 'not_attending', '2023-08-06 18:27:53', '2025-12-17 19:46:54', '4E2kMeXd', '6360509'), - (415, 2204, 'attending', '2023-08-18 11:12:26', '2025-12-17 19:46:55', '4E2kMeXd', '6361542'), - (415, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4E2kMeXd', '6361709'), - (415, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4E2kMeXd', '6361710'), - (415, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4E2kMeXd', '6361711'), - (415, 2211, 'maybe', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4E2kMeXd', '6361712'), - (415, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4E2kMeXd', '6361713'), - (415, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4E2kMeXd', '6382573'), - (415, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4E2kMeXd', '6388604'), - (415, 2242, 'not_attending', '2023-09-23 22:45:10', '2025-12-17 19:46:45', '4E2kMeXd', '6388606'), - (415, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4E2kMeXd', '6394629'), - (415, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4E2kMeXd', '6394631'), - (415, 2253, 'not_attending', '2023-09-30 19:53:55', '2025-12-17 19:46:45', '4E2kMeXd', '6401811'), - (415, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4E2kMeXd', '6440863'), - (415, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4E2kMeXd', '6445440'), - (415, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4E2kMeXd', '6453951'), - (415, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4E2kMeXd', '6461696'), - (415, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4E2kMeXd', '6462129'), - (415, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4E2kMeXd', '6463218'), - (415, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4E2kMeXd', '6472181'), - (415, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4E2kMeXd', '6482693'), - (415, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4E2kMeXd', '6484200'), - (415, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4E2kMeXd', '6484680'), - (415, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4E2kMeXd', '6507741'), - (415, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4E2kMeXd', '6514659'), - (415, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4E2kMeXd', '6514660'), - (415, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4E2kMeXd', '6519103'), - (415, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4E2kMeXd', '6535681'), - (415, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4E2kMeXd', '6584747'), - (415, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4E2kMeXd', '6587097'), - (415, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4E2kMeXd', '6609022'), - (415, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4E2kMeXd', '6632757'), - (415, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4E2kMeXd', '6644187'), - (415, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4E2kMeXd', '6648951'), - (415, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4E2kMeXd', '6648952'), - (415, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4E2kMeXd', '6655401'), - (415, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4E2kMeXd', '6661585'), - (415, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4E2kMeXd', '6661588'), - (415, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4E2kMeXd', '6661589'), - (415, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4E2kMeXd', '6699906'), - (415, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4E2kMeXd', '6701109'), - (415, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4E2kMeXd', '6705219'), - (415, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4E2kMeXd', '6710153'), - (415, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4E2kMeXd', '6711552'), - (415, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4E2kMeXd', '6711553'), - (416, 1819, 'not_attending', '2023-03-31 02:16:30', '2025-12-17 19:46:58', 'd8V6poOA', '5764689'), - (416, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd8V6poOA', '5900202'), - (416, 1948, 'attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'd8V6poOA', '5962317'), - (416, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'd8V6poOA', '5962318'), - (416, 1951, 'not_attending', '2023-03-21 00:52:15', '2025-12-17 19:46:57', 'd8V6poOA', '5965933'), - (416, 1955, 'attending', '2023-03-27 19:18:18', '2025-12-17 19:46:57', 'd8V6poOA', '5972529'), - (416, 1959, 'not_attending', '2023-03-31 02:16:29', '2025-12-17 19:46:57', 'd8V6poOA', '5972829'), - (416, 1971, 'attending', '2023-03-20 17:22:14', '2025-12-17 19:46:56', 'd8V6poOA', '5993765'), - (416, 1974, 'attending', '2023-03-27 19:18:25', '2025-12-17 19:46:57', 'd8V6poOA', '5993778'), - (416, 1978, 'attending', '2023-03-27 19:16:08', '2025-12-17 19:46:58', 'd8V6poOA', '6028191'), - (416, 1982, 'attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd8V6poOA', '6040066'), - (416, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd8V6poOA', '6042717'), - (416, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd8V6poOA', '6044838'), - (416, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd8V6poOA', '6044839'), - (416, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8V6poOA', '6045684'), - (416, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd8V6poOA', '6050104'), - (416, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd8V6poOA', '6053195'), - (416, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd8V6poOA', '6053198'), - (416, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd8V6poOA', '6056085'), - (416, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd8V6poOA', '6056916'), - (416, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd8V6poOA', '6059290'), - (416, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd8V6poOA', '6060328'), - (416, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd8V6poOA', '6061037'), - (416, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd8V6poOA', '6061039'), - (416, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd8V6poOA', '6067245'), - (416, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd8V6poOA', '6068094'), - (416, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd8V6poOA', '6068252'), - (416, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd8V6poOA', '6068253'), - (416, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd8V6poOA', '6068254'), - (416, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd8V6poOA', '6068280'), - (416, 2032, 'attending', '2023-06-02 23:05:15', '2025-12-17 19:47:04', 'd8V6poOA', '6068281'), - (416, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd8V6poOA', '6069093'), - (416, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd8V6poOA', '6072528'), - (416, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd8V6poOA', '6079840'), - (416, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd8V6poOA', '6083398'), - (416, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd8V6poOA', '6093504'), - (416, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd8V6poOA', '6097414'), - (416, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd8V6poOA', '6097442'), - (416, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd8V6poOA', '6097684'), - (416, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd8V6poOA', '6098762'), - (416, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'd8V6poOA', '6101361'), - (416, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd8V6poOA', '6101362'), - (416, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd8V6poOA', '6103752'), - (416, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd8V6poOA', '6107314'), - (416, 2078, 'attending', '2023-05-21 23:58:41', '2025-12-17 19:47:03', 'd8V6poOA', '6114163'), - (416, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd8V6poOA', '6120034'), - (416, 2090, 'not_attending', '2023-06-02 21:30:33', '2025-12-17 19:47:04', 'd8V6poOA', '6127961'), - (416, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'd8V6poOA', '6136733'), - (416, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'd8V6poOA', '6137989'), - (416, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'd8V6poOA', '6150864'), - (416, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'd8V6poOA', '6155491'), - (416, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd8V6poOA', '6164417'), - (416, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd8V6poOA', '6166388'), - (416, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd8V6poOA', '6176439'), - (416, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'd8V6poOA', '6182410'), - (416, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd8V6poOA', '6185812'), - (416, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd8V6poOA', '6187651'), - (416, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd8V6poOA', '6187963'), - (416, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd8V6poOA', '6187964'), - (416, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd8V6poOA', '6187966'), - (416, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd8V6poOA', '6187967'), - (416, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd8V6poOA', '6187969'), - (416, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd8V6poOA', '6334878'), - (416, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd8V6poOA', '6337236'), - (416, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd8V6poOA', '6337970'), - (416, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd8V6poOA', '6338308'), - (416, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'd8V6poOA', '6340845'), - (416, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd8V6poOA', '6341710'), - (416, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd8V6poOA', '6342044'), - (416, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd8V6poOA', '6342298'), - (416, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd8V6poOA', '6343294'), - (416, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd8V6poOA', '6347034'), - (416, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd8V6poOA', '6347056'), - (416, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd8V6poOA', '6353830'), - (416, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd8V6poOA', '6353831'), - (416, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd8V6poOA', '6357867'), - (416, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd8V6poOA', '6358652'), - (416, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd8V6poOA', '6361709'), - (416, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd8V6poOA', '6361710'), - (416, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd8V6poOA', '6361711'), - (416, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd8V6poOA', '6361712'), - (416, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd8V6poOA', '6361713'), - (416, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd8V6poOA', '6382573'), - (416, 2239, 'not_attending', '2023-08-31 18:01:25', '2025-12-17 19:46:56', 'd8V6poOA', '6387592'), - (416, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd8V6poOA', '6388604'), - (416, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd8V6poOA', '6394629'), - (416, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd8V6poOA', '6394631'), - (416, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd8V6poOA', '6440863'), - (416, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd8V6poOA', '6445440'), - (416, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd8V6poOA', '6453951'), - (416, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd8V6poOA', '6461696'), - (416, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd8V6poOA', '6462129'), - (416, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd8V6poOA', '6463218'), - (416, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd8V6poOA', '6472181'), - (416, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd8V6poOA', '6482693'), - (416, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd8V6poOA', '6484200'), - (416, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd8V6poOA', '6484680'), - (416, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd8V6poOA', '6507741'), - (416, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd8V6poOA', '6514659'), - (416, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd8V6poOA', '6514660'), - (416, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd8V6poOA', '6519103'), - (416, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd8V6poOA', '6535681'), - (416, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd8V6poOA', '6584747'), - (416, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd8V6poOA', '6587097'), - (416, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd8V6poOA', '6609022'), - (416, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd8V6poOA', '6632757'), - (416, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd8V6poOA', '6644187'), - (416, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd8V6poOA', '6648951'), - (416, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd8V6poOA', '6648952'), - (416, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd8V6poOA', '6655401'), - (416, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd8V6poOA', '6661585'), - (416, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd8V6poOA', '6661588'), - (416, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd8V6poOA', '6661589'), - (416, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd8V6poOA', '6699906'), - (416, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd8V6poOA', '6701109'), - (416, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd8V6poOA', '6705219'), - (416, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd8V6poOA', '6710153'), - (416, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd8V6poOA', '6711552'), - (416, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd8V6poOA', '6711553'), - (417, 2135, 'attending', '2023-07-14 16:48:14', '2025-12-17 19:46:52', 'd56Bq3Vm', '6187964'), - (417, 2136, 'maybe', '2023-07-24 12:56:42', '2025-12-17 19:46:53', 'd56Bq3Vm', '6187966'), - (417, 2145, 'attending', '2023-07-13 00:19:35', '2025-12-17 19:46:52', 'd56Bq3Vm', '6334903'), - (417, 2152, 'attending', '2023-07-14 17:12:00', '2025-12-17 19:46:52', 'd56Bq3Vm', '6337021'), - (417, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd56Bq3Vm', '6337236'), - (417, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd56Bq3Vm', '6337970'), - (417, 2156, 'attending', '2023-07-14 16:48:28', '2025-12-17 19:46:52', 'd56Bq3Vm', '6338308'), - (417, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'd56Bq3Vm', '6340845'), - (417, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd56Bq3Vm', '6341710'), - (417, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd56Bq3Vm', '6342044'), - (417, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd56Bq3Vm', '6342298'), - (417, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd56Bq3Vm', '6343294'), - (417, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd56Bq3Vm', '6347034'), - (417, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd56Bq3Vm', '6347056'), - (417, 2185, 'maybe', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd56Bq3Vm', '6353830'), - (417, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd56Bq3Vm', '6353831'), - (417, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd56Bq3Vm', '6357867'), - (417, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd56Bq3Vm', '6358652'), - (417, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd56Bq3Vm', '6361709'), - (417, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd56Bq3Vm', '6361710'), - (417, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd56Bq3Vm', '6361711'), - (417, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd56Bq3Vm', '6361712'), - (417, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd56Bq3Vm', '6361713'), - (417, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd56Bq3Vm', '6382573'), - (417, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd56Bq3Vm', '6388604'), - (417, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd56Bq3Vm', '6394629'), - (417, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd56Bq3Vm', '6394631'), - (417, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd56Bq3Vm', '6440863'), - (417, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd56Bq3Vm', '6445440'), - (417, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd56Bq3Vm', '6453951'), - (417, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd56Bq3Vm', '6461696'), - (417, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd56Bq3Vm', '6462129'), - (417, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd56Bq3Vm', '6463218'), - (417, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd56Bq3Vm', '6472181'), - (417, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd56Bq3Vm', '6482693'), - (417, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd56Bq3Vm', '6484200'), - (417, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd56Bq3Vm', '6484680'), - (417, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd56Bq3Vm', '6507741'), - (417, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd56Bq3Vm', '6514659'), - (417, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd56Bq3Vm', '6514660'), - (417, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd56Bq3Vm', '6519103'), - (417, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd56Bq3Vm', '6535681'), - (417, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd56Bq3Vm', '6584747'), - (417, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd56Bq3Vm', '6587097'), - (417, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd56Bq3Vm', '6609022'), - (417, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd56Bq3Vm', '6632757'), - (417, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd56Bq3Vm', '6644187'), - (417, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd56Bq3Vm', '6648951'), - (417, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd56Bq3Vm', '6648952'), - (417, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd56Bq3Vm', '6655401'), - (417, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd56Bq3Vm', '6661585'), - (417, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd56Bq3Vm', '6661588'), - (417, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd56Bq3Vm', '6661589'), - (417, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd56Bq3Vm', '6699906'), - (417, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd56Bq3Vm', '6701109'), - (417, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd56Bq3Vm', '6705219'), - (417, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd56Bq3Vm', '6710153'), - (417, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd56Bq3Vm', '6711552'), - (417, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd56Bq3Vm', '6711553'), - (418, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361709'), - (418, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361710'), - (418, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361711'), - (418, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361712'), - (418, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mM6Pq3EA', '6361713'), - (418, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mM6Pq3EA', '6382573'), - (418, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mM6Pq3EA', '6388604'), - (418, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mM6Pq3EA', '6394629'), - (418, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mM6Pq3EA', '6394631'), - (418, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mM6Pq3EA', '6431478'), - (419, 500, 'not_attending', '2020-12-17 22:13:39', '2025-12-17 19:47:55', 'kdKM7rYA', '3314964'), - (419, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'kdKM7rYA', '3351539'), - (419, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'kdKM7rYA', '3386848'), - (419, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdKM7rYA', '3389527'), - (419, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdKM7rYA', '3396499'), - (419, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'kdKM7rYA', '3403650'), - (419, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdKM7rYA', '3406988'), - (419, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'kdKM7rYA', '3416576'), - (419, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'kdKM7rYA', '3430267'), - (419, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKM7rYA', '6045684'), - (420, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dzk319ym', '5195095'), - (420, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dzk319ym', '5223686'), - (420, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dzk319ym', '5227432'), - (420, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dzk319ym', '5247467'), - (420, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dzk319ym', '5260800'), - (420, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dzk319ym', '5269930'), - (420, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dzk319ym', '5271448'), - (420, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dzk319ym', '5271449'), - (420, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dzk319ym', '5276469'), - (420, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dzk319ym', '5278159'), - (420, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dzk319ym', '5363695'), - (420, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dzk319ym', '5365960'), - (420, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dzk319ym', '5368973'), - (420, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dzk319ym', '5378247'), - (420, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dzk319ym', '5389605'), - (420, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dzk319ym', '5397265'), - (420, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzk319ym', '6045684'), - (421, 2966, 'maybe', '2025-01-25 02:52:02', '2025-12-17 19:46:22', 'dNrYQgkd', '7796542'), - (421, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dNrYQgkd', '7825913'), - (421, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dNrYQgkd', '7826209'), - (421, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dNrYQgkd', '7834742'), - (421, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dNrYQgkd', '7842108'), - (421, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dNrYQgkd', '7842902'), - (421, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dNrYQgkd', '7842903'), - (421, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dNrYQgkd', '7842904'), - (421, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dNrYQgkd', '7842905'), - (421, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dNrYQgkd', '7855719'), - (421, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dNrYQgkd', '7860683'), - (421, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dNrYQgkd', '7860684'), - (421, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dNrYQgkd', '7866095'), - (421, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dNrYQgkd', '7869170'), - (421, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dNrYQgkd', '7869188'), - (421, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dNrYQgkd', '7869201'), - (421, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dNrYQgkd', '7877465'), - (421, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dNrYQgkd', '7878570'), - (421, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dNrYQgkd', '7888250'), - (421, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dNrYQgkd', '8349164'), - (421, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dNrYQgkd', '8349545'), - (421, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dNrYQgkd', '8353584'), - (422, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4WB0aXNA', '5195095'), - (422, 1306, 'maybe', '2022-04-04 17:35:51', '2025-12-17 19:47:26', '4WB0aXNA', '5223682'), - (422, 1307, 'attending', '2022-04-04 17:34:30', '2025-12-17 19:47:26', '4WB0aXNA', '5223686'), - (422, 1309, 'attending', '2022-04-06 03:59:43', '2025-12-17 19:47:26', '4WB0aXNA', '5227432'), - (422, 1314, 'maybe', '2022-04-11 00:05:51', '2025-12-17 19:47:27', '4WB0aXNA', '5233137'), - (422, 1329, 'maybe', '2022-04-14 20:23:46', '2025-12-17 19:47:27', '4WB0aXNA', '5240135'), - (422, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4WB0aXNA', '5247467'), - (422, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WB0aXNA', '6045684'), - (423, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Md32Pb24', '3236465'), - (423, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Md32Pb24', '3539918'), - (423, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Md32Pb24', '3539919'), - (423, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Md32Pb24', '3539920'), - (423, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Md32Pb24', '3539921'), - (423, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Md32Pb24', '3583262'), - (423, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Md32Pb24', '3661369'), - (423, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Md32Pb24', '3730212'), - (423, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Md32Pb24', '3793156'), - (423, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Md32Pb24', '3803310'), - (423, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Md32Pb24', '3806392'), - (423, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Md32Pb24', '6045684'), - (424, 648, 'maybe', '2021-05-29 16:36:20', '2025-12-17 19:47:47', 'ndlVJqOA', '3539923'), - (424, 823, 'not_attending', '2021-06-17 03:37:39', '2025-12-17 19:47:48', 'ndlVJqOA', '3974109'), - (424, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ndlVJqOA', '3975311'), - (424, 828, 'not_attending', '2021-06-16 14:39:36', '2025-12-17 19:47:47', 'ndlVJqOA', '3975312'), - (424, 838, 'not_attending', '2021-06-07 17:29:16', '2025-12-17 19:47:47', 'ndlVJqOA', '3994992'), - (424, 844, 'maybe', '2021-06-16 14:39:29', '2025-12-17 19:47:38', 'ndlVJqOA', '4014338'), - (424, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ndlVJqOA', '4021848'), - (424, 868, 'maybe', '2021-06-16 14:46:47', '2025-12-17 19:47:48', 'ndlVJqOA', '4022012'), - (424, 869, 'maybe', '2021-06-16 14:38:58', '2025-12-17 19:47:38', 'ndlVJqOA', '4136744'), - (424, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ndlVJqOA', '4136937'), - (424, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ndlVJqOA', '4136938'), - (424, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndlVJqOA', '4136947'), - (424, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndlVJqOA', '4210314'), - (424, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndlVJqOA', '4225444'), - (424, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndlVJqOA', '4239259'), - (424, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ndlVJqOA', '4240316'), - (424, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ndlVJqOA', '4240317'), - (424, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndlVJqOA', '4240318'), - (424, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ndlVJqOA', '4240320'), - (424, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndlVJqOA', '4250163'), - (424, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndlVJqOA', '4275957'), - (424, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndlVJqOA', '4277819'), - (424, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndlVJqOA', '4301723'), - (424, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ndlVJqOA', '4302093'), - (424, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndlVJqOA', '4304151'), - (424, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndlVJqOA', '4345519'), - (424, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndlVJqOA', '4358025'), - (424, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ndlVJqOA', '4366186'), - (424, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndlVJqOA', '4366187'), - (424, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlVJqOA', '6045684'), - (425, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'x4oEO8Xm', '3236465'), - (425, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'x4oEO8Xm', '3539918'), - (425, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'x4oEO8Xm', '3539919'), - (425, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'x4oEO8Xm', '3539920'), - (425, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'x4oEO8Xm', '3539921'), - (425, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'x4oEO8Xm', '3583262'), - (425, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'x4oEO8Xm', '3661369'), - (425, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'x4oEO8Xm', '3730212'), - (425, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'x4oEO8Xm', '3793156'), - (425, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'x4oEO8Xm', '3803310'), - (425, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'x4oEO8Xm', '3806392'), - (425, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oEO8Xm', '6045684'), - (426, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dKOgPzNd', '7897784'), - (426, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dKOgPzNd', '7903856'), - (426, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dKOgPzNd', '8347770'), - (426, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dKOgPzNd', '8349164'), - (426, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dKOgPzNd', '8349545'), - (426, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dKOgPzNd', '8353584'), - (427, 2407, 'attending', '2024-01-20 19:12:17', '2025-12-17 19:46:40', 'bdzMnq14', '6699906'), - (427, 2408, 'attending', '2024-01-27 13:30:00', '2025-12-17 19:46:40', 'bdzMnq14', '6699907'), - (427, 2409, 'attending', '2024-02-03 17:15:14', '2025-12-17 19:46:41', 'bdzMnq14', '6699909'), - (427, 2410, 'not_attending', '2024-02-10 20:06:27', '2025-12-17 19:46:41', 'bdzMnq14', '6699911'), - (427, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'bdzMnq14', '6699913'), - (427, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'bdzMnq14', '6705219'), - (427, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'bdzMnq14', '6710153'), - (427, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'bdzMnq14', '6711552'), - (427, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'bdzMnq14', '6711553'), - (427, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'bdzMnq14', '6722688'), - (427, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'bdzMnq14', '6730620'), - (427, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'bdzMnq14', '6730642'), - (427, 2448, 'attending', '2024-03-18 23:02:50', '2025-12-17 19:46:33', 'bdzMnq14', '6734371'), - (427, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'bdzMnq14', '6740364'), - (427, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'bdzMnq14', '6743829'), - (427, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'bdzMnq14', '7030380'), - (427, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'bdzMnq14', '7033677'), - (427, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'bdzMnq14', '7035415'), - (427, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'bdzMnq14', '7044715'), - (427, 2487, 'not_attending', '2024-03-18 23:02:52', '2025-12-17 19:46:33', 'bdzMnq14', '7049279'), - (427, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'bdzMnq14', '7050318'), - (427, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'bdzMnq14', '7050319'), - (427, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'bdzMnq14', '7050322'), - (427, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'bdzMnq14', '7057804'), - (427, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'bdzMnq14', '7059866'), - (427, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'bdzMnq14', '7072824'), - (427, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'bdzMnq14', '7074348'), - (427, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'bdzMnq14', '7074364'), - (427, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'bdzMnq14', '7089267'), - (427, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'bdzMnq14', '7098747'), - (427, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'bdzMnq14', '7113468'), - (427, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'bdzMnq14', '7114856'), - (427, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'bdzMnq14', '7114951'), - (427, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'bdzMnq14', '7114955'), - (427, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'bdzMnq14', '7114956'), - (427, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'bdzMnq14', '7114957'), - (427, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'bdzMnq14', '7153615'), - (427, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'bdzMnq14', '7159484'), - (427, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'bdzMnq14', '7178446'), - (427, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'bdzMnq14', '7220467'), - (427, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'bdzMnq14', '7240354'), - (427, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'bdzMnq14', '7251633'), - (427, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'bdzMnq14', '7263048'), - (427, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'bdzMnq14', '7302674'), - (427, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'bdzMnq14', '7324073'), - (427, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'bdzMnq14', '7324074'), - (427, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'bdzMnq14', '7324075'), - (427, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'bdzMnq14', '7324078'), - (427, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'bdzMnq14', '7324082'), - (427, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'bdzMnq14', '7331457'), - (427, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'bdzMnq14', '7356752'), - (427, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'bdzMnq14', '7363643'), - (427, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'bdzMnq14', '7368606'), - (427, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'bdzMnq14', '7397462'), - (427, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'bdzMnq14', '7432751'), - (427, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'bdzMnq14', '7432752'), - (427, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'bdzMnq14', '7432753'), - (427, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'bdzMnq14', '7432754'), - (427, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'bdzMnq14', '7432755'), - (427, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'bdzMnq14', '7432756'), - (427, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'bdzMnq14', '7432758'), - (427, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'bdzMnq14', '7432759'), - (427, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'bdzMnq14', '7433834'), - (428, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4036lZVA', '6699913'), - (428, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4036lZVA', '6722688'), - (428, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4036lZVA', '6730620'), - (428, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4036lZVA', '6730642'), - (428, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4036lZVA', '6740364'), - (428, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4036lZVA', '6743829'), - (428, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4036lZVA', '7030380'), - (428, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4036lZVA', '7033677'), - (428, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4036lZVA', '7035415'), - (428, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4036lZVA', '7044715'), - (428, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4036lZVA', '7050318'), - (428, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4036lZVA', '7050319'), - (428, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4036lZVA', '7050322'), - (428, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4036lZVA', '7057804'), - (428, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4036lZVA', '7072824'), - (428, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4036lZVA', '7074348'), - (428, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4036lZVA', '7089267'), - (428, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4036lZVA', '7098747'), - (428, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4036lZVA', '7113468'), - (428, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4036lZVA', '7114856'), - (428, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4036lZVA', '7114951'), - (428, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4036lZVA', '7114955'), - (428, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4036lZVA', '7114956'), - (428, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4036lZVA', '7153615'), - (428, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4036lZVA', '7159484'), - (428, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4036lZVA', '7178446'), - (429, 258, 'attending', '2021-05-30 13:10:25', '2025-12-17 19:47:47', 'N4ErKoDd', '3149489'), - (429, 397, 'maybe', '2021-05-27 13:21:43', '2025-12-17 19:47:47', 'N4ErKoDd', '3236452'), - (429, 648, 'attending', '2021-05-29 21:37:24', '2025-12-17 19:47:47', 'N4ErKoDd', '3539923'), - (429, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'N4ErKoDd', '3963335'), - (429, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'N4ErKoDd', '3974109'), - (429, 827, 'attending', '2021-06-05 22:14:05', '2025-12-17 19:47:47', 'N4ErKoDd', '3975311'), - (429, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'N4ErKoDd', '3975312'), - (429, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'N4ErKoDd', '3994992'), - (429, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'N4ErKoDd', '4014338'), - (429, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'N4ErKoDd', '4021848'), - (429, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'N4ErKoDd', '4136744'), - (429, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'N4ErKoDd', '4136937'), - (429, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'N4ErKoDd', '4136938'), - (429, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'N4ErKoDd', '4136947'), - (429, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'N4ErKoDd', '4210314'), - (429, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'N4ErKoDd', '4225444'), - (429, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'N4ErKoDd', '4239259'), - (429, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'N4ErKoDd', '4240316'), - (429, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'N4ErKoDd', '4240317'), - (429, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'N4ErKoDd', '4240318'), - (429, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'N4ErKoDd', '4240320'), - (429, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'N4ErKoDd', '4250163'), - (429, 919, 'attending', '2021-07-17 22:51:27', '2025-12-17 19:47:39', 'N4ErKoDd', '4275957'), - (429, 920, 'attending', '2021-07-25 17:51:15', '2025-12-17 19:47:40', 'N4ErKoDd', '4277819'), - (429, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'N4ErKoDd', '4301723'), - (429, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'N4ErKoDd', '4302093'), - (429, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'N4ErKoDd', '4304151'), - (429, 937, 'attending', '2021-07-25 17:34:12', '2025-12-17 19:47:40', 'N4ErKoDd', '4306596'), - (429, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'N4ErKoDd', '4345519'), - (429, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'N4ErKoDd', '4356801'), - (429, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'N4ErKoDd', '4358025'), - (429, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'N4ErKoDd', '4366186'), - (429, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'N4ErKoDd', '4366187'), - (429, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'N4ErKoDd', '4402823'), - (429, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'N4ErKoDd', '4420735'), - (429, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'N4ErKoDd', '4420738'), - (429, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'N4ErKoDd', '4420739'), - (429, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'N4ErKoDd', '4420741'), - (429, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'N4ErKoDd', '4420744'), - (429, 996, 'attending', '2021-10-16 12:22:45', '2025-12-17 19:47:35', 'N4ErKoDd', '4420747'), - (429, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'N4ErKoDd', '4420748'), - (429, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'N4ErKoDd', '4420749'), - (429, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'N4ErKoDd', '4461883'), - (429, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'N4ErKoDd', '4508342'), - (429, 1079, 'attending', '2021-10-20 22:11:05', '2025-12-17 19:47:35', 'N4ErKoDd', '4563823'), - (429, 1082, 'attending', '2021-10-15 22:54:01', '2025-12-17 19:47:35', 'N4ErKoDd', '4566762'), - (429, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'N4ErKoDd', '4568602'), - (429, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'N4ErKoDd', '4572153'), - (429, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'N4ErKoDd', '4585962'), - (429, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'N4ErKoDd', '4596356'), - (429, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'N4ErKoDd', '4598860'), - (429, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'N4ErKoDd', '4598861'), - (429, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'N4ErKoDd', '4602797'), - (429, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'N4ErKoDd', '4637896'), - (429, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'N4ErKoDd', '4642994'), - (429, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'N4ErKoDd', '4642995'), - (429, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'N4ErKoDd', '4642996'), - (429, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'N4ErKoDd', '4642997'), - (429, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'N4ErKoDd', '4645687'), - (429, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'N4ErKoDd', '4645698'), - (429, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'N4ErKoDd', '4645704'), - (429, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'N4ErKoDd', '4645705'), - (429, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'N4ErKoDd', '4668385'), - (429, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'N4ErKoDd', '4694407'), - (429, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'N4ErKoDd', '4736497'), - (429, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'N4ErKoDd', '4736499'), - (429, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'N4ErKoDd', '4736500'), - (429, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'N4ErKoDd', '4736503'), - (429, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'N4ErKoDd', '4736504'), - (429, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'N4ErKoDd', '4746789'), - (429, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'N4ErKoDd', '4753929'), - (429, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'N4ErKoDd', '5038850'), - (429, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'N4ErKoDd', '5045826'), - (429, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'N4ErKoDd', '5132533'), - (429, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'N4ErKoDd', '5186582'), - (429, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'N4ErKoDd', '5186583'), - (429, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'N4ErKoDd', '5186585'), - (429, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'N4ErKoDd', '5190437'), - (429, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'N4ErKoDd', '5215989'), - (429, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4ErKoDd', '6045684'), - (430, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dzvMjKld', '5630968'), - (430, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dzvMjKld', '5642818'), - (430, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dzvMjKld', '5670445'), - (430, 1795, 'attending', '2022-11-18 01:07:45', '2025-12-17 19:47:16', 'dzvMjKld', '5754366'), - (430, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dzvMjKld', '5763458'), - (430, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dzvMjKld', '5774172'), - (430, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dzvMjKld', '5818247'), - (430, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dzvMjKld', '5819471'), - (430, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dzvMjKld', '5827739'), - (430, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dzvMjKld', '5844306'), - (430, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dzvMjKld', '5850159'), - (430, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dzvMjKld', '5858999'), - (430, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dzvMjKld', '5871984'), - (430, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dzvMjKld', '5876354'), - (430, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzvMjKld', '6045684'), - (431, 2304, 'not_attending', '2023-11-04 02:24:08', '2025-12-17 19:46:47', 'd2wE9B8m', '6482693'), - (431, 2306, 'maybe', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd2wE9B8m', '6484200'), - (431, 2310, 'attending', '2023-11-11 17:20:26', '2025-12-17 19:46:47', 'd2wE9B8m', '6487709'), - (431, 2322, 'attending', '2023-11-11 22:19:07', '2025-12-17 19:46:48', 'd2wE9B8m', '6514659'), - (431, 2323, 'attending', '2023-11-20 20:27:22', '2025-12-17 19:46:48', 'd2wE9B8m', '6514660'), - (431, 2324, 'attending', '2023-11-20 20:27:27', '2025-12-17 19:46:49', 'd2wE9B8m', '6514662'), - (431, 2325, 'attending', '2023-11-20 20:27:34', '2025-12-17 19:46:36', 'd2wE9B8m', '6514663'), - (431, 2328, 'attending', '2023-11-03 16:27:13', '2025-12-17 19:46:47', 'd2wE9B8m', '6515504'), - (431, 2332, 'attending', '2023-11-05 17:16:08', '2025-12-17 19:46:47', 'd2wE9B8m', '6518655'), - (431, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd2wE9B8m', '6519103'), - (431, 2336, 'maybe', '2023-11-08 00:08:28', '2025-12-17 19:46:47', 'd2wE9B8m', '6535500'), - (431, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd2wE9B8m', '6535681'), - (431, 2341, 'attending', '2023-11-21 01:19:25', '2025-12-17 19:46:48', 'd2wE9B8m', '6543263'), - (431, 2347, 'not_attending', '2023-11-19 16:43:52', '2025-12-17 19:46:48', 'd2wE9B8m', '6583053'), - (431, 2348, 'not_attending', '2023-11-19 17:06:13', '2025-12-17 19:46:48', 'd2wE9B8m', '6583064'), - (431, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd2wE9B8m', '6584747'), - (431, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd2wE9B8m', '6587097'), - (431, 2357, 'maybe', '2023-12-18 00:23:24', '2025-12-17 19:46:36', 'd2wE9B8m', '6593341'), - (431, 2358, 'attending', '2023-11-29 19:04:13', '2025-12-17 19:46:48', 'd2wE9B8m', '6595321'), - (431, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd2wE9B8m', '6609022'), - (431, 2368, 'attending', '2023-12-11 04:37:38', '2025-12-17 19:46:36', 'd2wE9B8m', '6621445'), - (431, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd2wE9B8m', '6632757'), - (431, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd2wE9B8m', '6644187'), - (431, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd2wE9B8m', '6648951'), - (431, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd2wE9B8m', '6648952'), - (431, 2388, 'attending', '2024-01-05 19:27:04', '2025-12-17 19:46:37', 'd2wE9B8m', '6649244'), - (431, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd2wE9B8m', '6655401'), - (431, 2399, 'attending', '2024-01-10 22:29:20', '2025-12-17 19:46:38', 'd2wE9B8m', '6657583'), - (431, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd2wE9B8m', '6661585'), - (431, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd2wE9B8m', '6661588'), - (431, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd2wE9B8m', '6661589'), - (431, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd2wE9B8m', '6699906'), - (431, 2408, 'attending', '2024-01-18 18:46:24', '2025-12-17 19:46:40', 'd2wE9B8m', '6699907'), - (431, 2409, 'not_attending', '2024-01-24 15:02:57', '2025-12-17 19:46:41', 'd2wE9B8m', '6699909'), - (431, 2410, 'not_attending', '2024-01-24 15:02:59', '2025-12-17 19:46:41', 'd2wE9B8m', '6699911'), - (431, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd2wE9B8m', '6699913'), - (431, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd2wE9B8m', '6701109'), - (431, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'd2wE9B8m', '6704561'), - (431, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd2wE9B8m', '6705219'), - (431, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'd2wE9B8m', '6708410'), - (431, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd2wE9B8m', '6710153'), - (431, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd2wE9B8m', '6711552'), - (431, 2430, 'maybe', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'd2wE9B8m', '6711553'), - (431, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd2wE9B8m', '6722688'), - (431, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd2wE9B8m', '6730620'), - (431, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd2wE9B8m', '6730642'), - (431, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd2wE9B8m', '6740364'), - (431, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd2wE9B8m', '6743829'), - (431, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd2wE9B8m', '7030380'), - (431, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd2wE9B8m', '7033677'), - (431, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd2wE9B8m', '7035415'), - (431, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd2wE9B8m', '7044715'), - (431, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd2wE9B8m', '7050318'), - (431, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd2wE9B8m', '7050319'), - (431, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd2wE9B8m', '7050322'), - (431, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd2wE9B8m', '7057804'), - (431, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd2wE9B8m', '7072824'), - (431, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd2wE9B8m', '7074348'), - (431, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd2wE9B8m', '7089267'), - (431, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd2wE9B8m', '7098747'), - (431, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd2wE9B8m', '7113468'), - (431, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd2wE9B8m', '7114856'), - (431, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd2wE9B8m', '7114951'), - (431, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd2wE9B8m', '7114955'), - (431, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd2wE9B8m', '7114956'), - (431, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd2wE9B8m', '7114957'), - (431, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd2wE9B8m', '7153615'), - (431, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd2wE9B8m', '7159484'), - (431, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd2wE9B8m', '7178446'), - (431, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd2wE9B8m', '7220467'), - (431, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd2wE9B8m', '7240354'), - (431, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd2wE9B8m', '7251633'), - (431, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd2wE9B8m', '7302674'), - (432, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '8d8lBL0d', '6061039'), - (432, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8d8lBL0d', '6067245'), - (432, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '8d8lBL0d', '6079840'), - (432, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '8d8lBL0d', '6083398'), - (432, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '8d8lBL0d', '6093504'), - (432, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '8d8lBL0d', '6097414'), - (432, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '8d8lBL0d', '6097442'), - (432, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '8d8lBL0d', '6097684'), - (432, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '8d8lBL0d', '6098762'), - (432, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8d8lBL0d', '6101362'), - (432, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8d8lBL0d', '6107314'), - (432, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '8d8lBL0d', '6120034'), - (433, 2145, 'not_attending', '2023-07-13 20:59:41', '2025-12-17 19:46:52', 'mpqn6vkA', '6334903'), - (433, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mpqn6vkA', '6337236'), - (433, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mpqn6vkA', '6337970'), - (433, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mpqn6vkA', '6338308'), - (433, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mpqn6vkA', '6341710'), - (433, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mpqn6vkA', '6342044'), - (433, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mpqn6vkA', '6342298'), - (433, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'mpqn6vkA', '6342591'), - (433, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mpqn6vkA', '6343294'), - (433, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mpqn6vkA', '6347034'), - (433, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mpqn6vkA', '6347056'), - (433, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mpqn6vkA', '6353830'), - (433, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mpqn6vkA', '6353831'), - (433, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mpqn6vkA', '6357867'), - (433, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mpqn6vkA', '6358652'), - (433, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mpqn6vkA', '6361709'), - (433, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mpqn6vkA', '6361710'), - (433, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mpqn6vkA', '6361711'), - (433, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mpqn6vkA', '6361712'), - (433, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mpqn6vkA', '6361713'), - (433, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mpqn6vkA', '6382573'), - (433, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mpqn6vkA', '6388604'), - (433, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mpqn6vkA', '6394629'), - (433, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mpqn6vkA', '6394631'), - (433, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mpqn6vkA', '6431478'), - (434, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4P107gwd', '6484200'), - (434, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4P107gwd', '6514659'), - (434, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4P107gwd', '6514660'), - (434, 2324, 'attending', '2023-12-08 07:27:17', '2025-12-17 19:46:49', '4P107gwd', '6514662'), - (434, 2325, 'attending', '2023-12-08 23:10:37', '2025-12-17 19:46:36', '4P107gwd', '6514663'), - (434, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4P107gwd', '6584747'), - (434, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4P107gwd', '6587097'), - (434, 2359, 'attending', '2023-11-30 22:52:20', '2025-12-17 19:46:48', '4P107gwd', '6596617'), - (434, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4P107gwd', '6609022'), - (434, 2371, 'attending', '2023-12-15 21:55:23', '2025-12-17 19:46:36', '4P107gwd', '6624495'), - (434, 2374, 'attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4P107gwd', '6632757'), - (434, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4P107gwd', '6644187'), - (434, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4P107gwd', '6648951'), - (434, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4P107gwd', '6648952'), - (434, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4P107gwd', '6655401'), - (434, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4P107gwd', '6661585'), - (434, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4P107gwd', '6661588'), - (434, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4P107gwd', '6661589'), - (434, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4P107gwd', '6699906'), - (434, 2409, 'attending', '2024-02-03 22:11:16', '2025-12-17 19:46:41', '4P107gwd', '6699909'), - (434, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4P107gwd', '6699913'), - (434, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4P107gwd', '6701109'), - (434, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4P107gwd', '6705219'), - (434, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4P107gwd', '6710153'), - (434, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4P107gwd', '6711552'), - (434, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4P107gwd', '6711553'), - (434, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4P107gwd', '6722688'), - (434, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4P107gwd', '6730620'), - (434, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4P107gwd', '6730642'), - (434, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4P107gwd', '6740364'), - (434, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4P107gwd', '6743829'), - (434, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4P107gwd', '7030380'), - (434, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4P107gwd', '7033677'), - (434, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4P107gwd', '7035415'), - (434, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4P107gwd', '7044715'), - (434, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4P107gwd', '7050318'), - (434, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4P107gwd', '7050319'), - (434, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4P107gwd', '7050322'), - (434, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4P107gwd', '7057804'), - (434, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '4P107gwd', '7059866'), - (434, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4P107gwd', '7072824'), - (434, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4P107gwd', '7074348'), - (434, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4P107gwd', '7089267'), - (434, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4P107gwd', '7098747'), - (434, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4P107gwd', '7113468'), - (434, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4P107gwd', '7114856'), - (434, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4P107gwd', '7114951'), - (434, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4P107gwd', '7114955'), - (434, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4P107gwd', '7114956'), - (434, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4P107gwd', '7114957'), - (434, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4P107gwd', '7153615'), - (434, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4P107gwd', '7159484'), - (434, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4P107gwd', '7178446'), - (434, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4P107gwd', '7220467'), - (434, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4P107gwd', '7240354'), - (434, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4P107gwd', '7251633'), - (434, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4P107gwd', '7263048'), - (434, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4P107gwd', '7302674'), - (435, 1515, 'attending', '2022-08-02 13:32:52', '2025-12-17 19:47:21', '40Da6Lx4', '5441128'), - (435, 1516, 'attending', '2022-08-19 22:57:53', '2025-12-17 19:47:23', '40Da6Lx4', '5441129'), - (435, 1517, 'attending', '2022-08-27 16:46:27', '2025-12-17 19:47:23', '40Da6Lx4', '5441130'), - (435, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '40Da6Lx4', '5441131'), - (435, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '40Da6Lx4', '5441132'), - (435, 1538, 'not_attending', '2022-08-21 22:27:24', '2025-12-17 19:47:21', '40Da6Lx4', '5449565'), - (435, 1557, 'maybe', '2022-08-03 16:49:01', '2025-12-17 19:47:21', '40Da6Lx4', '5458729'), - (435, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '40Da6Lx4', '5461278'), - (435, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '40Da6Lx4', '5469480'), - (435, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', '40Da6Lx4', '5471073'), - (435, 1567, 'attending', '2022-08-01 21:40:44', '2025-12-17 19:47:21', '40Da6Lx4', '5477629'), - (435, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '40Da6Lx4', '5482022'), - (435, 1576, 'attending', '2022-08-01 23:07:20', '2025-12-17 19:47:21', '40Da6Lx4', '5482623'), - (435, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '40Da6Lx4', '5482793'), - (435, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '40Da6Lx4', '5488912'), - (435, 1584, 'attending', '2022-08-26 16:44:06', '2025-12-17 19:47:23', '40Da6Lx4', '5492004'), - (435, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '40Da6Lx4', '5492192'), - (435, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '40Da6Lx4', '5493139'), - (435, 1589, 'attending', '2022-08-21 19:56:48', '2025-12-17 19:47:23', '40Da6Lx4', '5493159'), - (435, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '40Da6Lx4', '5493200'), - (435, 1603, 'attending', '2022-08-19 21:41:58', '2025-12-17 19:47:23', '40Da6Lx4', '5497895'), - (435, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '40Da6Lx4', '5502188'), - (435, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '40Da6Lx4', '5505059'), - (435, 1611, 'attending', '2022-09-05 18:28:56', '2025-12-17 19:47:24', '40Da6Lx4', '5507652'), - (435, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '40Da6Lx4', '5509055'), - (435, 1618, 'attending', '2022-08-26 16:45:55', '2025-12-17 19:47:23', '40Da6Lx4', '5512005'), - (435, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '40Da6Lx4', '5512862'), - (435, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '40Da6Lx4', '5513985'), - (435, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '40Da6Lx4', '5519981'), - (435, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '40Da6Lx4', '5522550'), - (435, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '40Da6Lx4', '5534683'), - (435, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '40Da6Lx4', '5537735'), - (435, 1636, 'attending', '2022-09-04 03:34:08', '2025-12-17 19:47:24', '40Da6Lx4', '5538454'), - (435, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '40Da6Lx4', '5540859'), - (435, 1641, 'not_attending', '2022-09-03 14:28:06', '2025-12-17 19:47:24', '40Da6Lx4', '5544226'), - (435, 1642, 'attending', '2022-09-03 07:38:40', '2025-12-17 19:47:24', '40Da6Lx4', '5544227'), - (435, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '40Da6Lx4', '5546619'), - (435, 1650, 'attending', '2022-09-04 04:18:30', '2025-12-17 19:47:24', '40Da6Lx4', '5549611'), - (435, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '40Da6Lx4', '5555245'), - (435, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '40Da6Lx4', '5557747'), - (435, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '40Da6Lx4', '5560255'), - (435, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '40Da6Lx4', '5562906'), - (435, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '40Da6Lx4', '5600604'), - (435, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '40Da6Lx4', '5605544'), - (435, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', '40Da6Lx4', '5606737'), - (435, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '40Da6Lx4', '5630960'), - (435, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '40Da6Lx4', '5630961'), - (435, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '40Da6Lx4', '5630962'), - (435, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '40Da6Lx4', '5630966'), - (435, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '40Da6Lx4', '5630967'), - (435, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '40Da6Lx4', '5630968'), - (435, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '40Da6Lx4', '5635406'), - (435, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '40Da6Lx4', '5638765'), - (435, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '40Da6Lx4', '5640097'), - (435, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '40Da6Lx4', '5640843'), - (435, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '40Da6Lx4', '5641521'), - (435, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '40Da6Lx4', '5642818'), - (435, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '40Da6Lx4', '5652395'), - (435, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '40Da6Lx4', '5670445'), - (435, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '40Da6Lx4', '5671637'), - (435, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '40Da6Lx4', '5672329'), - (435, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '40Da6Lx4', '5674057'), - (435, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '40Da6Lx4', '5674060'), - (435, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '40Da6Lx4', '5677461'), - (435, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '40Da6Lx4', '5698046'), - (435, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '40Da6Lx4', '5699760'), - (435, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '40Da6Lx4', '5741601'), - (435, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '40Da6Lx4', '5763458'), - (435, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '40Da6Lx4', '5774172'), - (435, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '40Da6Lx4', '5818247'), - (435, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '40Da6Lx4', '5819471'), - (435, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '40Da6Lx4', '5827739'), - (435, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '40Da6Lx4', '5844306'), - (435, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '40Da6Lx4', '5850159'), - (435, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '40Da6Lx4', '5858999'), - (435, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '40Da6Lx4', '5871984'), - (435, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '40Da6Lx4', '5876354'), - (435, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '40Da6Lx4', '5880939'), - (435, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '40Da6Lx4', '5880940'), - (435, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '40Da6Lx4', '5880942'), - (435, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '40Da6Lx4', '5880943'), - (435, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '40Da6Lx4', '5887890'), - (435, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '40Da6Lx4', '5888598'), - (435, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '40Da6Lx4', '5893260'), - (435, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '40Da6Lx4', '5899826'), - (435, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '40Da6Lx4', '5900199'), - (435, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '40Da6Lx4', '5900200'), - (435, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '40Da6Lx4', '5900202'), - (435, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '40Da6Lx4', '5900203'), - (435, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '40Da6Lx4', '5901108'), - (435, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '40Da6Lx4', '5901126'), - (435, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '40Da6Lx4', '5909655'), - (435, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '40Da6Lx4', '5910522'), - (435, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '40Da6Lx4', '5910526'), - (435, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '40Da6Lx4', '5910528'), - (435, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '40Da6Lx4', '5916219'), - (435, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '40Da6Lx4', '5936234'), - (435, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '40Da6Lx4', '5958351'), - (435, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '40Da6Lx4', '5959751'), - (435, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '40Da6Lx4', '5959755'), - (435, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '40Da6Lx4', '5960055'), - (435, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '40Da6Lx4', '5961684'), - (435, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '40Da6Lx4', '5962132'), - (435, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '40Da6Lx4', '5962133'), - (435, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '40Da6Lx4', '5962134'), - (435, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '40Da6Lx4', '5962317'), - (435, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '40Da6Lx4', '5962318'), - (435, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '40Da6Lx4', '5965933'), - (435, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '40Da6Lx4', '5967014'), - (435, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '40Da6Lx4', '5972815'), - (435, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '40Da6Lx4', '5974016'), - (435, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '40Da6Lx4', '5981515'), - (435, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '40Da6Lx4', '5993516'), - (435, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '40Da6Lx4', '5998939'), - (435, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '40Da6Lx4', '6028191'), - (435, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '40Da6Lx4', '6040066'), - (435, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '40Da6Lx4', '6042717'), - (435, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '40Da6Lx4', '6044838'), - (435, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '40Da6Lx4', '6044839'), - (435, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40Da6Lx4', '6045684'), - (435, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '40Da6Lx4', '6050104'), - (435, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '40Da6Lx4', '6053195'), - (435, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '40Da6Lx4', '6053198'), - (435, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '40Da6Lx4', '6056085'), - (435, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '40Da6Lx4', '6056916'), - (435, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '40Da6Lx4', '6059290'), - (435, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '40Da6Lx4', '6060328'), - (435, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '40Da6Lx4', '6061037'), - (435, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '40Da6Lx4', '6061039'), - (435, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '40Da6Lx4', '6067245'), - (435, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '40Da6Lx4', '6068094'), - (435, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '40Da6Lx4', '6068252'), - (435, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '40Da6Lx4', '6068253'), - (435, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '40Da6Lx4', '6068254'), - (435, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '40Da6Lx4', '6068280'), - (435, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '40Da6Lx4', '6069093'), - (435, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '40Da6Lx4', '6072528'), - (435, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '40Da6Lx4', '6079840'), - (435, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '40Da6Lx4', '6083398'), - (435, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '40Da6Lx4', '6093504'), - (435, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '40Da6Lx4', '6097414'), - (435, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '40Da6Lx4', '6097442'), - (435, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '40Da6Lx4', '6097684'), - (435, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '40Da6Lx4', '6098762'), - (435, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '40Da6Lx4', '6101362'), - (435, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '40Da6Lx4', '6103752'), - (435, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '40Da6Lx4', '6107314'), - (436, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8GMXNV4', '6045684'), - (437, 49, 'attending', '2020-06-01 23:39:26', '2025-12-17 19:47:58', 'v4DOV8qA', '2975274'), - (437, 66, 'attending', '2020-06-03 03:21:07', '2025-12-17 19:47:58', 'v4DOV8qA', '2977135'), - (437, 68, 'maybe', '2020-06-22 19:55:48', '2025-12-17 19:47:58', 'v4DOV8qA', '2977137'), - (437, 69, 'attending', '2020-06-29 17:16:29', '2025-12-17 19:47:55', 'v4DOV8qA', '2977138'), - (437, 80, 'attending', '2020-06-05 18:19:22', '2025-12-17 19:47:58', 'v4DOV8qA', '2978251'), - (437, 81, 'attending', '2020-06-07 18:15:32', '2025-12-17 19:47:58', 'v4DOV8qA', '2978252'), - (437, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'v4DOV8qA', '3034321'), - (437, 143, 'attending', '2020-06-03 03:29:27', '2025-12-17 19:47:58', 'v4DOV8qA', '3049983'), - (437, 169, 'attending', '2020-06-14 19:14:07', '2025-12-17 19:47:58', 'v4DOV8qA', '3058741'), - (437, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'v4DOV8qA', '3058959'), - (437, 173, 'not_attending', '2020-06-14 18:59:14', '2025-12-17 19:47:58', 'v4DOV8qA', '3067093'), - (437, 175, 'attending', '2020-06-16 02:51:50', '2025-12-17 19:47:58', 'v4DOV8qA', '3068305'), - (437, 180, 'maybe', '2020-06-15 21:00:29', '2025-12-17 19:47:58', 'v4DOV8qA', '3074048'), - (437, 182, 'attending', '2020-06-17 04:11:30', '2025-12-17 19:47:55', 'v4DOV8qA', '3074514'), - (437, 183, 'attending', '2020-06-16 00:28:15', '2025-12-17 19:47:58', 'v4DOV8qA', '3075228'), - (437, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'v4DOV8qA', '3075456'), - (437, 186, 'not_attending', '2020-06-23 00:43:11', '2025-12-17 19:47:55', 'v4DOV8qA', '3083791'), - (437, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'v4DOV8qA', '3085151'), - (437, 188, 'maybe', '2020-06-21 03:57:00', '2025-12-17 19:47:58', 'v4DOV8qA', '3086646'), - (437, 190, 'attending', '2020-06-30 02:19:54', '2025-12-17 19:47:55', 'v4DOV8qA', '3087258'), - (437, 191, 'maybe', '2020-07-07 19:05:53', '2025-12-17 19:47:55', 'v4DOV8qA', '3087259'), - (437, 192, 'maybe', '2020-07-15 13:32:48', '2025-12-17 19:47:55', 'v4DOV8qA', '3087260'), - (437, 193, 'not_attending', '2020-07-21 16:04:32', '2025-12-17 19:47:55', 'v4DOV8qA', '3087261'), - (437, 194, 'maybe', '2020-07-28 04:22:10', '2025-12-17 19:47:56', 'v4DOV8qA', '3087262'), - (437, 195, 'attending', '2020-07-21 21:09:21', '2025-12-17 19:47:56', 'v4DOV8qA', '3087264'), - (437, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'v4DOV8qA', '3087265'), - (437, 197, 'attending', '2020-08-22 01:07:44', '2025-12-17 19:47:56', 'v4DOV8qA', '3087266'), - (437, 198, 'attending', '2020-08-27 03:18:42', '2025-12-17 19:47:56', 'v4DOV8qA', '3087267'), - (437, 199, 'attending', '2020-09-01 03:32:13', '2025-12-17 19:47:56', 'v4DOV8qA', '3087268'), - (437, 201, 'attending', '2020-06-21 15:23:14', '2025-12-17 19:47:55', 'v4DOV8qA', '3088653'), - (437, 202, 'not_attending', '2020-06-28 03:21:30', '2025-12-17 19:47:55', 'v4DOV8qA', '3090353'), - (437, 203, 'attending', '2020-06-22 19:55:52', '2025-12-17 19:47:58', 'v4DOV8qA', '3091624'), - (437, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'v4DOV8qA', '3106813'), - (437, 212, 'attending', '2020-07-05 03:13:50', '2025-12-17 19:47:55', 'v4DOV8qA', '3118517'), - (437, 214, 'maybe', '2020-07-07 19:04:46', '2025-12-17 19:47:55', 'v4DOV8qA', '3124139'), - (437, 215, 'attending', '2020-07-07 01:23:54', '2025-12-17 19:47:55', 'v4DOV8qA', '3124987'), - (437, 217, 'maybe', '2020-07-12 03:47:30', '2025-12-17 19:47:55', 'v4DOV8qA', '3126684'), - (437, 223, 'attending', '2020-09-10 14:58:12', '2025-12-17 19:47:56', 'v4DOV8qA', '3129980'), - (437, 224, 'attending', '2020-07-12 03:47:57', '2025-12-17 19:47:55', 'v4DOV8qA', '3130712'), - (437, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'v4DOV8qA', '3132817'), - (437, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'v4DOV8qA', '3132820'), - (437, 230, 'maybe', '2020-07-21 21:07:26', '2025-12-17 19:47:55', 'v4DOV8qA', '3139232'), - (437, 232, 'attending', '2020-07-19 22:10:53', '2025-12-17 19:47:55', 'v4DOV8qA', '3139770'), - (437, 233, 'attending', '2020-07-20 04:41:31', '2025-12-17 19:47:55', 'v4DOV8qA', '3139773'), - (437, 269, 'maybe', '2020-07-29 05:10:08', '2025-12-17 19:47:55', 'v4DOV8qA', '3153076'), - (437, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'v4DOV8qA', '3155321'), - (437, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'v4DOV8qA', '3162006'), - (437, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'v4DOV8qA', '3163442'), - (437, 280, 'attending', '2020-08-06 05:15:09', '2025-12-17 19:47:56', 'v4DOV8qA', '3166942'), - (437, 281, 'attending', '2020-08-06 05:15:45', '2025-12-17 19:47:56', 'v4DOV8qA', '3166945'), - (437, 293, 'not_attending', '2020-08-19 23:16:28', '2025-12-17 19:47:56', 'v4DOV8qA', '3172832'), - (437, 294, 'maybe', '2020-08-21 05:12:02', '2025-12-17 19:47:56', 'v4DOV8qA', '3172833'), - (437, 295, 'attending', '2020-08-30 05:21:51', '2025-12-17 19:47:56', 'v4DOV8qA', '3172834'), - (437, 296, 'not_attending', '2020-08-23 04:49:48', '2025-12-17 19:47:56', 'v4DOV8qA', '3172876'), - (437, 297, 'maybe', '2020-08-11 00:16:37', '2025-12-17 19:47:56', 'v4DOV8qA', '3173937'), - (437, 298, 'maybe', '2020-08-28 02:50:59', '2025-12-17 19:47:56', 'v4DOV8qA', '3174556'), - (437, 299, 'not_attending', '2020-08-18 19:04:51', '2025-12-17 19:47:56', 'v4DOV8qA', '3176591'), - (437, 301, 'maybe', '2020-08-26 03:04:38', '2025-12-17 19:47:56', 'v4DOV8qA', '3178027'), - (437, 302, 'maybe', '2020-08-14 01:29:08', '2025-12-17 19:47:56', 'v4DOV8qA', '3178028'), - (437, 303, 'attending', '2020-08-14 01:21:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3178444'), - (437, 306, 'not_attending', '2020-08-16 03:51:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3179777'), - (437, 307, 'not_attending', '2020-08-18 04:17:10', '2025-12-17 19:47:56', 'v4DOV8qA', '3182590'), - (437, 310, 'not_attending', '2020-08-23 17:56:35', '2025-12-17 19:47:56', 'v4DOV8qA', '3186005'), - (437, 311, 'not_attending', '2020-08-29 17:54:40', '2025-12-17 19:47:56', 'v4DOV8qA', '3186057'), - (437, 312, 'attending', '2020-08-22 01:17:20', '2025-12-17 19:47:56', 'v4DOV8qA', '3187795'), - (437, 314, 'maybe', '2020-08-25 21:48:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3188480'), - (437, 315, 'maybe', '2020-08-26 03:09:37', '2025-12-17 19:47:56', 'v4DOV8qA', '3189085'), - (437, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'v4DOV8qA', '3191735'), - (437, 319, 'attending', '2020-08-30 05:21:44', '2025-12-17 19:47:56', 'v4DOV8qA', '3194179'), - (437, 330, 'maybe', '2020-09-01 03:29:35', '2025-12-17 19:47:56', 'v4DOV8qA', '3197322'), - (437, 333, 'maybe', '2020-10-06 19:26:47', '2025-12-17 19:47:52', 'v4DOV8qA', '3199782'), - (437, 334, 'not_attending', '2020-10-07 14:59:11', '2025-12-17 19:47:52', 'v4DOV8qA', '3199784'), - (437, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'v4DOV8qA', '3200209'), - (437, 339, 'attending', '2020-09-06 04:22:36', '2025-12-17 19:47:56', 'v4DOV8qA', '3204469'), - (437, 340, 'maybe', '2020-09-14 23:44:31', '2025-12-17 19:47:56', 'v4DOV8qA', '3204470'), - (437, 341, 'maybe', '2020-09-17 21:44:59', '2025-12-17 19:47:52', 'v4DOV8qA', '3204471'), - (437, 342, 'maybe', '2020-09-29 02:36:03', '2025-12-17 19:47:52', 'v4DOV8qA', '3204472'), - (437, 344, 'attending', '2020-10-13 04:16:38', '2025-12-17 19:47:53', 'v4DOV8qA', '3206906'), - (437, 348, 'not_attending', '2020-09-29 22:52:33', '2025-12-17 19:47:52', 'v4DOV8qA', '3209159'), - (437, 351, 'maybe', '2020-09-12 21:16:45', '2025-12-17 19:47:56', 'v4DOV8qA', '3209257'), - (437, 354, 'attending', '2020-09-13 21:51:49', '2025-12-17 19:47:56', 'v4DOV8qA', '3212570'), - (437, 355, 'attending', '2020-09-14 23:43:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3212571'), - (437, 356, 'maybe', '2020-09-23 22:29:37', '2025-12-17 19:47:51', 'v4DOV8qA', '3212572'), - (437, 357, 'maybe', '2020-09-30 23:27:33', '2025-12-17 19:47:52', 'v4DOV8qA', '3212573'), - (437, 359, 'maybe', '2020-09-14 13:22:30', '2025-12-17 19:47:56', 'v4DOV8qA', '3212624'), - (437, 362, 'maybe', '2020-09-16 19:44:53', '2025-12-17 19:47:52', 'v4DOV8qA', '3214207'), - (437, 363, 'not_attending', '2020-09-16 22:40:20', '2025-12-17 19:47:52', 'v4DOV8qA', '3217037'), - (437, 364, 'attending', '2020-09-19 00:36:53', '2025-12-17 19:47:56', 'v4DOV8qA', '3217106'), - (437, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'v4DOV8qA', '3218510'), - (437, 368, 'maybe', '2020-09-30 01:57:34', '2025-12-17 19:47:52', 'v4DOV8qA', '3221403'), - (437, 375, 'maybe', '2020-10-07 14:59:18', '2025-12-17 19:47:52', 'v4DOV8qA', '3222825'), - (437, 378, 'not_attending', '2020-09-26 03:38:28', '2025-12-17 19:47:52', 'v4DOV8qA', '3223725'), - (437, 382, 'maybe', '2020-09-29 06:57:25', '2025-12-17 19:47:52', 'v4DOV8qA', '3226873'), - (437, 384, 'attending', '2020-09-29 02:35:09', '2025-12-17 19:47:52', 'v4DOV8qA', '3228696'), - (437, 385, 'maybe', '2020-09-29 01:44:43', '2025-12-17 19:47:52', 'v4DOV8qA', '3228698'), - (437, 386, 'maybe', '2020-09-29 01:44:53', '2025-12-17 19:47:52', 'v4DOV8qA', '3228699'), - (437, 387, 'maybe', '2020-10-17 22:25:51', '2025-12-17 19:47:52', 'v4DOV8qA', '3228700'), - (437, 388, 'attending', '2020-10-19 17:34:58', '2025-12-17 19:47:52', 'v4DOV8qA', '3228701'), - (437, 389, 'maybe', '2020-10-01 13:46:56', '2025-12-17 19:47:52', 'v4DOV8qA', '3231284'), - (437, 390, 'not_attending', '2020-10-04 14:57:30', '2025-12-17 19:47:52', 'v4DOV8qA', '3231510'), - (437, 411, 'maybe', '2020-10-09 00:21:20', '2025-12-17 19:47:52', 'v4DOV8qA', '3236596'), - (437, 415, 'attending', '2020-10-09 00:21:05', '2025-12-17 19:47:52', 'v4DOV8qA', '3238044'), - (437, 420, 'not_attending', '2020-10-15 14:59:57', '2025-12-17 19:47:52', 'v4DOV8qA', '3245293'), - (437, 421, 'not_attending', '2020-10-20 20:46:41', '2025-12-17 19:47:52', 'v4DOV8qA', '3245294'), - (437, 422, 'maybe', '2020-10-19 17:34:00', '2025-12-17 19:47:53', 'v4DOV8qA', '3245295'), - (437, 424, 'maybe', '2020-10-12 19:44:19', '2025-12-17 19:47:52', 'v4DOV8qA', '3245751'), - (437, 425, 'maybe', '2020-10-15 15:00:09', '2025-12-17 19:47:52', 'v4DOV8qA', '3250097'), - (437, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'v4DOV8qA', '3250232'), - (437, 429, 'attending', '2020-11-25 20:33:04', '2025-12-17 19:47:54', 'v4DOV8qA', '3250523'), - (437, 435, 'not_attending', '2020-10-24 18:52:21', '2025-12-17 19:47:52', 'v4DOV8qA', '3254790'), - (437, 438, 'maybe', '2020-10-22 05:30:57', '2025-12-17 19:47:53', 'v4DOV8qA', '3256163'), - (437, 439, 'maybe', '2020-10-27 00:43:51', '2025-12-17 19:47:53', 'v4DOV8qA', '3256164'), - (437, 440, 'attending', '2020-11-05 05:50:24', '2025-12-17 19:47:53', 'v4DOV8qA', '3256168'), - (437, 441, 'attending', '2020-11-12 06:35:19', '2025-12-17 19:47:54', 'v4DOV8qA', '3256169'), - (437, 442, 'attending', '2020-10-20 23:16:30', '2025-12-17 19:47:52', 'v4DOV8qA', '3260345'), - (437, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'v4DOV8qA', '3263578'), - (437, 444, 'not_attending', '2020-10-27 19:58:13', '2025-12-17 19:47:53', 'v4DOV8qA', '3263745'), - (437, 445, 'attending', '2020-11-03 21:17:02', '2025-12-17 19:47:54', 'v4DOV8qA', '3266138'), - (437, 449, 'maybe', '2020-11-03 21:16:39', '2025-12-17 19:47:53', 'v4DOV8qA', '3272055'), - (437, 451, 'maybe', '2020-11-02 22:26:22', '2025-12-17 19:47:53', 'v4DOV8qA', '3272186'), - (437, 452, 'attending', '2020-11-07 19:50:22', '2025-12-17 19:47:54', 'v4DOV8qA', '3272981'), - (437, 456, 'attending', '2020-11-15 22:40:01', '2025-12-17 19:47:54', 'v4DOV8qA', '3276428'), - (437, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'v4DOV8qA', '3281467'), - (437, 460, 'not_attending', '2020-11-19 23:35:13', '2025-12-17 19:47:54', 'v4DOV8qA', '3281468'), - (437, 461, 'maybe', '2020-11-08 06:14:09', '2025-12-17 19:47:53', 'v4DOV8qA', '3281469'), - (437, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'v4DOV8qA', '3281470'), - (437, 464, 'not_attending', '2020-11-21 01:45:25', '2025-12-17 19:47:54', 'v4DOV8qA', '3281554'), - (437, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'v4DOV8qA', '3281829'), - (437, 468, 'attending', '2020-11-17 19:27:32', '2025-12-17 19:47:54', 'v4DOV8qA', '3285413'), - (437, 469, 'attending', '2020-11-22 04:54:31', '2025-12-17 19:47:54', 'v4DOV8qA', '3285414'), - (437, 472, 'attending', '2020-11-12 23:06:14', '2025-12-17 19:47:54', 'v4DOV8qA', '3286541'), - (437, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'v4DOV8qA', '3297764'), - (437, 484, 'attending', '2020-11-21 00:59:53', '2025-12-17 19:47:54', 'v4DOV8qA', '3297792'), - (437, 490, 'maybe', '2020-11-28 00:01:14', '2025-12-17 19:47:54', 'v4DOV8qA', '3313532'), - (437, 491, 'not_attending', '2020-12-09 21:12:09', '2025-12-17 19:47:55', 'v4DOV8qA', '3313533'), - (437, 492, 'maybe', '2020-12-04 00:59:52', '2025-12-17 19:47:54', 'v4DOV8qA', '3313731'), - (437, 493, 'maybe', '2020-11-29 05:28:02', '2025-12-17 19:47:54', 'v4DOV8qA', '3313856'), - (437, 496, 'maybe', '2020-12-09 21:12:15', '2025-12-17 19:47:54', 'v4DOV8qA', '3314269'), - (437, 497, 'maybe', '2020-12-14 01:38:54', '2025-12-17 19:47:55', 'v4DOV8qA', '3314270'), - (437, 499, 'maybe', '2020-11-30 05:50:12', '2025-12-17 19:47:55', 'v4DOV8qA', '3314909'), - (437, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'v4DOV8qA', '3314964'), - (437, 501, 'maybe', '2020-12-02 04:17:37', '2025-12-17 19:47:54', 'v4DOV8qA', '3317834'), - (437, 502, 'maybe', '2020-12-08 06:33:27', '2025-12-17 19:47:55', 'v4DOV8qA', '3323365'), - (437, 513, 'maybe', '2020-12-17 05:20:27', '2025-12-17 19:47:55', 'v4DOV8qA', '3329383'), - (437, 517, 'maybe', '2021-01-07 04:19:07', '2025-12-17 19:47:48', 'v4DOV8qA', '3337137'), - (437, 518, 'maybe', '2021-01-06 06:18:31', '2025-12-17 19:47:48', 'v4DOV8qA', '3337138'), - (437, 525, 'maybe', '2020-12-22 06:11:17', '2025-12-17 19:47:48', 'v4DOV8qA', '3350467'), - (437, 526, 'not_attending', '2020-12-27 23:27:51', '2025-12-17 19:47:48', 'v4DOV8qA', '3351539'), - (437, 532, 'not_attending', '2021-01-08 03:26:55', '2025-12-17 19:47:48', 'v4DOV8qA', '3381412'), - (437, 536, 'attending', '2021-01-06 02:22:03', '2025-12-17 19:47:48', 'v4DOV8qA', '3386848'), - (437, 539, 'maybe', '2021-01-08 03:26:41', '2025-12-17 19:47:48', 'v4DOV8qA', '3389158'), - (437, 540, 'maybe', '2021-01-07 01:27:04', '2025-12-17 19:47:48', 'v4DOV8qA', '3389527'), - (437, 542, 'maybe', '2021-01-11 03:26:13', '2025-12-17 19:47:48', 'v4DOV8qA', '3395013'), - (437, 543, 'maybe', '2021-01-12 01:33:50', '2025-12-17 19:47:48', 'v4DOV8qA', '3396499'), - (437, 544, 'maybe', '2021-01-11 02:19:53', '2025-12-17 19:47:48', 'v4DOV8qA', '3396500'), - (437, 548, 'attending', '2021-01-13 05:48:24', '2025-12-17 19:47:48', 'v4DOV8qA', '3403650'), - (437, 549, 'maybe', '2021-01-16 04:16:43', '2025-12-17 19:47:48', 'v4DOV8qA', '3406988'), - (437, 555, 'attending', '2021-01-18 03:29:50', '2025-12-17 19:47:49', 'v4DOV8qA', '3416576'), - (437, 556, 'maybe', '2021-01-19 04:55:39', '2025-12-17 19:47:49', 'v4DOV8qA', '3417170'), - (437, 557, 'attending', '2021-01-20 02:12:28', '2025-12-17 19:47:49', 'v4DOV8qA', '3418748'), - (437, 558, 'maybe', '2021-01-19 04:55:27', '2025-12-17 19:47:49', 'v4DOV8qA', '3418925'), - (437, 560, 'attending', '2021-01-20 02:11:37', '2025-12-17 19:47:49', 'v4DOV8qA', '3421715'), - (437, 563, 'maybe', '2021-01-25 18:49:11', '2025-12-17 19:47:49', 'v4DOV8qA', '3425913'), - (437, 567, 'attending', '2021-01-24 03:59:22', '2025-12-17 19:47:50', 'v4DOV8qA', '3428895'), - (437, 568, 'attending', '2021-01-25 18:50:34', '2025-12-17 19:47:50', 'v4DOV8qA', '3430267'), - (437, 569, 'maybe', '2021-01-25 18:47:27', '2025-12-17 19:47:49', 'v4DOV8qA', '3432673'), - (437, 570, 'maybe', '2021-01-29 23:03:35', '2025-12-17 19:47:50', 'v4DOV8qA', '3435538'), - (437, 571, 'attending', '2021-02-12 02:39:42', '2025-12-17 19:47:50', 'v4DOV8qA', '3435539'), - (437, 576, 'maybe', '2021-01-29 23:03:15', '2025-12-17 19:47:50', 'v4DOV8qA', '3438748'), - (437, 578, 'maybe', '2021-01-29 23:03:27', '2025-12-17 19:47:50', 'v4DOV8qA', '3440043'), - (437, 579, 'maybe', '2021-01-29 01:28:37', '2025-12-17 19:47:50', 'v4DOV8qA', '3440978'), - (437, 580, 'not_attending', '2021-01-31 05:29:35', '2025-12-17 19:47:50', 'v4DOV8qA', '3444240'), - (437, 582, 'maybe', '2021-01-30 18:47:17', '2025-12-17 19:47:50', 'v4DOV8qA', '3445769'), - (437, 583, 'maybe', '2021-02-05 22:34:16', '2025-12-17 19:47:50', 'v4DOV8qA', '3449144'), - (437, 585, 'maybe', '2021-02-01 01:15:22', '2025-12-17 19:47:50', 'v4DOV8qA', '3449468'), - (437, 591, 'maybe', '2021-02-05 06:55:01', '2025-12-17 19:47:50', 'v4DOV8qA', '3465880'), - (437, 594, 'maybe', '2021-03-01 03:52:11', '2025-12-17 19:47:51', 'v4DOV8qA', '3467759'), - (437, 598, 'maybe', '2021-02-07 18:08:25', '2025-12-17 19:47:50', 'v4DOV8qA', '3468003'), - (437, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'v4DOV8qA', '3468125'), - (437, 602, 'attending', '2021-02-07 07:06:34', '2025-12-17 19:47:50', 'v4DOV8qA', '3470303'), - (437, 603, 'attending', '2021-02-19 04:10:47', '2025-12-17 19:47:50', 'v4DOV8qA', '3470304'), - (437, 604, 'attending', '2021-02-23 21:19:35', '2025-12-17 19:47:50', 'v4DOV8qA', '3470305'), - (437, 605, 'attending', '2021-02-07 22:45:34', '2025-12-17 19:47:50', 'v4DOV8qA', '3470991'), - (437, 607, 'maybe', '2021-02-14 05:59:10', '2025-12-17 19:47:50', 'v4DOV8qA', '3471882'), - (437, 612, 'maybe', '2021-02-14 17:56:14', '2025-12-17 19:47:50', 'v4DOV8qA', '3490040'), - (437, 613, 'attending', '2021-02-17 06:03:31', '2025-12-17 19:47:50', 'v4DOV8qA', '3490041'), - (437, 614, 'maybe', '2021-02-28 18:11:13', '2025-12-17 19:47:51', 'v4DOV8qA', '3490042'), - (437, 621, 'attending', '2021-03-01 00:02:32', '2025-12-17 19:47:51', 'v4DOV8qA', '3517815'), - (437, 622, 'attending', '2021-03-01 00:04:32', '2025-12-17 19:47:51', 'v4DOV8qA', '3517816'), - (437, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'v4DOV8qA', '3523941'), - (437, 631, 'maybe', '2021-03-02 05:10:03', '2025-12-17 19:47:51', 'v4DOV8qA', '3533850'), - (437, 632, 'maybe', '2021-03-02 05:11:04', '2025-12-17 19:47:51', 'v4DOV8qA', '3533853'), - (437, 637, 'maybe', '2021-03-02 05:10:48', '2025-12-17 19:47:51', 'v4DOV8qA', '3536411'), - (437, 638, 'maybe', '2021-03-02 01:30:58', '2025-12-17 19:47:44', 'v4DOV8qA', '3536632'), - (437, 639, 'maybe', '2021-03-02 01:30:28', '2025-12-17 19:47:51', 'v4DOV8qA', '3536656'), - (437, 641, 'attending', '2021-04-03 04:37:29', '2025-12-17 19:47:44', 'v4DOV8qA', '3539916'), - (437, 642, 'attending', '2021-03-31 03:36:02', '2025-12-17 19:47:44', 'v4DOV8qA', '3539917'), - (437, 643, 'attending', '2021-04-15 05:35:29', '2025-12-17 19:47:45', 'v4DOV8qA', '3539918'), - (437, 644, 'attending', '2021-04-18 15:49:10', '2025-12-17 19:47:45', 'v4DOV8qA', '3539919'), - (437, 645, 'maybe', '2021-05-06 02:42:46', '2025-12-17 19:47:46', 'v4DOV8qA', '3539920'), - (437, 646, 'attending', '2021-05-12 03:46:50', '2025-12-17 19:47:46', 'v4DOV8qA', '3539921'), - (437, 647, 'not_attending', '2021-05-07 05:45:58', '2025-12-17 19:47:46', 'v4DOV8qA', '3539922'), - (437, 648, 'maybe', '2021-05-07 05:46:22', '2025-12-17 19:47:47', 'v4DOV8qA', '3539923'), - (437, 649, 'attending', '2021-03-09 06:43:43', '2025-12-17 19:47:51', 'v4DOV8qA', '3539927'), - (437, 650, 'maybe', '2021-03-03 17:39:29', '2025-12-17 19:47:44', 'v4DOV8qA', '3539928'), - (437, 652, 'maybe', '2021-03-07 05:54:14', '2025-12-17 19:47:51', 'v4DOV8qA', '3544466'), - (437, 679, 'attending', '2021-03-09 07:38:05', '2025-12-17 19:47:44', 'v4DOV8qA', '3547168'), - (437, 680, 'attending', '2021-03-07 05:08:06', '2025-12-17 19:47:51', 'v4DOV8qA', '3547700'), - (437, 684, 'maybe', '2021-03-10 00:53:09', '2025-12-17 19:47:51', 'v4DOV8qA', '3549257'), - (437, 687, 'maybe', '2021-03-11 15:57:55', '2025-12-17 19:47:51', 'v4DOV8qA', '3553405'), - (437, 696, 'maybe', '2021-03-17 01:31:22', '2025-12-17 19:47:51', 'v4DOV8qA', '3567536'), - (437, 697, 'maybe', '2021-03-18 05:19:36', '2025-12-17 19:47:44', 'v4DOV8qA', '3567537'), - (437, 701, 'maybe', '2021-03-18 04:32:20', '2025-12-17 19:47:51', 'v4DOV8qA', '3577180'), - (437, 705, 'maybe', '2021-03-27 07:01:36', '2025-12-17 19:47:44', 'v4DOV8qA', '3581895'), - (437, 706, 'maybe', '2021-03-19 18:37:24', '2025-12-17 19:47:45', 'v4DOV8qA', '3582734'), - (437, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'v4DOV8qA', '3583262'), - (437, 711, 'attending', '2021-03-22 16:21:29', '2025-12-17 19:47:44', 'v4DOV8qA', '3588075'), - (437, 712, 'maybe', '2021-03-27 07:02:11', '2025-12-17 19:47:44', 'v4DOV8qA', '3604056'), - (437, 715, 'maybe', '2021-03-31 18:56:06', '2025-12-17 19:47:44', 'v4DOV8qA', '3604146'), - (437, 717, 'not_attending', '2021-03-27 07:01:09', '2025-12-17 19:47:44', 'v4DOV8qA', '3619523'), - (437, 719, 'maybe', '2021-04-06 03:04:06', '2025-12-17 19:47:44', 'v4DOV8qA', '3635405'), - (437, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'v4DOV8qA', '3661369'), - (437, 731, 'maybe', '2021-04-05 04:25:00', '2025-12-17 19:47:44', 'v4DOV8qA', '3674262'), - (437, 734, 'attending', '2021-04-06 02:46:34', '2025-12-17 19:47:44', 'v4DOV8qA', '3676806'), - (437, 735, 'maybe', '2021-04-15 05:40:04', '2025-12-17 19:47:46', 'v4DOV8qA', '3677402'), - (437, 736, 'maybe', '2021-04-06 03:04:13', '2025-12-17 19:47:44', 'v4DOV8qA', '3677701'), - (437, 737, 'not_attending', '2021-04-06 04:01:47', '2025-12-17 19:47:44', 'v4DOV8qA', '3679349'), - (437, 747, 'maybe', '2021-04-07 00:28:45', '2025-12-17 19:47:45', 'v4DOV8qA', '3684754'), - (437, 751, 'maybe', '2021-04-15 05:38:40', '2025-12-17 19:47:45', 'v4DOV8qA', '3691364'), - (437, 752, 'maybe', '2021-04-15 05:37:35', '2025-12-17 19:47:44', 'v4DOV8qA', '3699422'), - (437, 758, 'maybe', '2021-04-17 17:40:05', '2025-12-17 19:47:45', 'v4DOV8qA', '3713700'), - (437, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'v4DOV8qA', '3730212'), - (437, 777, 'attending', '2021-04-27 03:05:09', '2025-12-17 19:47:46', 'v4DOV8qA', '3746248'), - (437, 783, 'attending', '2021-05-01 04:24:04', '2025-12-17 19:47:46', 'v4DOV8qA', '3767471'), - (437, 786, 'maybe', '2021-05-04 21:26:12', '2025-12-17 19:47:46', 'v4DOV8qA', '3780093'), - (437, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'v4DOV8qA', '3793156'), - (437, 800, 'maybe', '2021-05-11 02:56:33', '2025-12-17 19:47:46', 'v4DOV8qA', '3800908'), - (437, 808, 'maybe', '2021-05-13 13:12:52', '2025-12-17 19:47:46', 'v4DOV8qA', '3807358'), - (437, 816, 'maybe', '2021-05-20 12:54:06', '2025-12-17 19:47:46', 'v4DOV8qA', '3826524'), - (437, 821, 'maybe', '2021-05-30 06:00:23', '2025-12-17 19:47:47', 'v4DOV8qA', '3963965'), - (437, 822, 'maybe', '2021-06-03 01:50:41', '2025-12-17 19:47:47', 'v4DOV8qA', '3969986'), - (437, 823, 'attending', '2021-05-30 06:02:09', '2025-12-17 19:47:48', 'v4DOV8qA', '3974109'), - (437, 825, 'maybe', '2021-06-07 05:02:17', '2025-12-17 19:47:47', 'v4DOV8qA', '3975283'), - (437, 826, 'maybe', '2021-06-07 16:54:14', '2025-12-17 19:47:48', 'v4DOV8qA', '3975310'), - (437, 827, 'maybe', '2021-05-30 17:19:26', '2025-12-17 19:47:47', 'v4DOV8qA', '3975311'), - (437, 828, 'not_attending', '2021-06-12 14:37:59', '2025-12-17 19:47:47', 'v4DOV8qA', '3975312'), - (437, 833, 'not_attending', '2021-06-07 04:59:49', '2025-12-17 19:47:47', 'v4DOV8qA', '3990438'), - (437, 838, 'maybe', '2021-06-07 05:01:53', '2025-12-17 19:47:47', 'v4DOV8qA', '3994992'), - (437, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4DOV8qA', '4014338'), - (437, 867, 'maybe', '2021-06-22 06:15:29', '2025-12-17 19:47:38', 'v4DOV8qA', '4021848'), - (437, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4DOV8qA', '4136744'), - (437, 870, 'maybe', '2021-06-30 04:42:11', '2025-12-17 19:47:39', 'v4DOV8qA', '4136937'), - (437, 871, 'not_attending', '2021-07-07 03:39:58', '2025-12-17 19:47:39', 'v4DOV8qA', '4136938'), - (437, 872, 'not_attending', '2021-07-20 02:29:53', '2025-12-17 19:47:40', 'v4DOV8qA', '4136947'), - (437, 884, 'maybe', '2021-08-11 05:34:31', '2025-12-17 19:47:42', 'v4DOV8qA', '4210314'), - (437, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4DOV8qA', '4225444'), - (437, 897, 'not_attending', '2021-06-28 00:38:49', '2025-12-17 19:47:38', 'v4DOV8qA', '4232132'), - (437, 899, 'not_attending', '2021-07-03 22:40:34', '2025-12-17 19:47:39', 'v4DOV8qA', '4239259'), - (437, 900, 'maybe', '2021-07-19 02:17:11', '2025-12-17 19:47:40', 'v4DOV8qA', '4240316'), - (437, 901, 'not_attending', '2021-07-31 16:26:03', '2025-12-17 19:47:40', 'v4DOV8qA', '4240317'), - (437, 902, 'maybe', '2021-08-04 05:11:38', '2025-12-17 19:47:41', 'v4DOV8qA', '4240318'), - (437, 903, 'maybe', '2021-08-11 05:26:34', '2025-12-17 19:47:42', 'v4DOV8qA', '4240320'), - (437, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4DOV8qA', '4250163'), - (437, 906, 'maybe', '2021-07-05 05:47:45', '2025-12-17 19:47:39', 'v4DOV8qA', '4253431'), - (437, 919, 'not_attending', '2021-07-17 04:16:34', '2025-12-17 19:47:39', 'v4DOV8qA', '4275957'), - (437, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'v4DOV8qA', '4277819'), - (437, 933, 'not_attending', '2021-07-25 03:13:45', '2025-12-17 19:47:40', 'v4DOV8qA', '4301723'), - (437, 934, 'not_attending', '2021-08-04 05:11:26', '2025-12-17 19:47:41', 'v4DOV8qA', '4302093'), - (437, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'v4DOV8qA', '4304151'), - (437, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'v4DOV8qA', '4356801'), - (437, 973, 'attending', '2021-08-16 06:53:27', '2025-12-17 19:47:42', 'v4DOV8qA', '4366186'), - (437, 974, 'maybe', '2021-08-18 00:31:16', '2025-12-17 19:47:42', 'v4DOV8qA', '4366187'), - (437, 990, 'maybe', '2021-08-30 03:25:28', '2025-12-17 19:47:43', 'v4DOV8qA', '4420735'), - (437, 991, 'not_attending', '2021-09-07 17:07:30', '2025-12-17 19:47:43', 'v4DOV8qA', '4420738'), - (437, 992, 'maybe', '2021-09-13 06:11:59', '2025-12-17 19:47:34', 'v4DOV8qA', '4420739'), - (437, 993, 'maybe', '2021-09-20 15:17:00', '2025-12-17 19:47:34', 'v4DOV8qA', '4420741'), - (437, 995, 'not_attending', '2021-10-04 13:58:00', '2025-12-17 19:47:34', 'v4DOV8qA', '4420744'), - (437, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'v4DOV8qA', '4420747'), - (437, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'v4DOV8qA', '4420748'), - (437, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'v4DOV8qA', '4420749'), - (437, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'v4DOV8qA', '4461883'), - (437, 1064, 'not_attending', '2021-09-20 15:16:36', '2025-12-17 19:47:34', 'v4DOV8qA', '4499526'), - (437, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'v4DOV8qA', '4508342'), - (437, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'v4DOV8qA', '4568602'), - (437, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'v4DOV8qA', '4572153'), - (437, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'v4DOV8qA', '4585962'), - (437, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'v4DOV8qA', '4596356'), - (437, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'v4DOV8qA', '4598860'), - (437, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'v4DOV8qA', '4598861'), - (437, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'v4DOV8qA', '4602797'), - (437, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'v4DOV8qA', '4637896'), - (437, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'v4DOV8qA', '4642994'), - (437, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'v4DOV8qA', '4642995'), - (437, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'v4DOV8qA', '4642996'), - (437, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'v4DOV8qA', '4642997'), - (437, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'v4DOV8qA', '4645687'), - (437, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'v4DOV8qA', '4645698'), - (437, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'v4DOV8qA', '4645704'), - (437, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'v4DOV8qA', '4645705'), - (437, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'v4DOV8qA', '4668385'), - (437, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'v4DOV8qA', '4694407'), - (437, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'v4DOV8qA', '4736497'), - (437, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'v4DOV8qA', '4736499'), - (437, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'v4DOV8qA', '4736500'), - (437, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'v4DOV8qA', '4736503'), - (437, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'v4DOV8qA', '4736504'), - (437, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'v4DOV8qA', '4746789'), - (437, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'v4DOV8qA', '4753929'), - (437, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4DOV8qA', '5038850'), - (437, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4DOV8qA', '5045826'), - (437, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4DOV8qA', '5132533'), - (437, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'v4DOV8qA', '5186582'), - (437, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'v4DOV8qA', '5186583'), - (437, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'v4DOV8qA', '5186585'), - (437, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4DOV8qA', '5190437'), - (437, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4DOV8qA', '5215989'), - (437, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DOV8qA', '6045684'), - (438, 395, 'attending', '2021-06-09 12:36:36', '2025-12-17 19:47:47', 'LmpJ3j94', '3236450'), - (438, 823, 'attending', '2021-06-14 15:28:18', '2025-12-17 19:47:48', 'LmpJ3j94', '3974109'), - (438, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpJ3j94', '3975312'), - (438, 844, 'attending', '2021-06-10 18:43:58', '2025-12-17 19:47:38', 'LmpJ3j94', '4014338'), - (438, 846, 'not_attending', '2021-07-07 20:49:09', '2025-12-17 19:47:39', 'LmpJ3j94', '4015718'), - (438, 867, 'attending', '2021-06-15 11:47:33', '2025-12-17 19:47:38', 'LmpJ3j94', '4021848'), - (438, 869, 'attending', '2021-06-24 03:49:06', '2025-12-17 19:47:38', 'LmpJ3j94', '4136744'), - (438, 870, 'attending', '2021-06-27 08:18:11', '2025-12-17 19:47:38', 'LmpJ3j94', '4136937'), - (438, 871, 'maybe', '2021-07-10 20:49:10', '2025-12-17 19:47:39', 'LmpJ3j94', '4136938'), - (438, 872, 'not_attending', '2021-07-21 21:27:56', '2025-12-17 19:47:40', 'LmpJ3j94', '4136947'), - (438, 873, 'attending', '2021-06-19 14:11:40', '2025-12-17 19:47:48', 'LmpJ3j94', '4138297'), - (438, 876, 'attending', '2021-06-15 11:47:10', '2025-12-17 19:47:38', 'LmpJ3j94', '4139926'), - (438, 880, 'attending', '2021-06-19 21:44:54', '2025-12-17 19:47:48', 'LmpJ3j94', '4205383'), - (438, 884, 'attending', '2021-07-17 14:03:47', '2025-12-17 19:47:42', 'LmpJ3j94', '4210314'), - (438, 887, 'maybe', '2021-07-13 17:58:24', '2025-12-17 19:47:39', 'LmpJ3j94', '4225444'), - (438, 899, 'maybe', '2021-07-03 18:13:35', '2025-12-17 19:47:39', 'LmpJ3j94', '4239259'), - (438, 900, 'attending', '2021-07-17 14:12:10', '2025-12-17 19:47:40', 'LmpJ3j94', '4240316'), - (438, 901, 'attending', '2021-07-17 14:12:30', '2025-12-17 19:47:40', 'LmpJ3j94', '4240317'), - (438, 902, 'maybe', '2021-08-07 15:39:05', '2025-12-17 19:47:41', 'LmpJ3j94', '4240318'), - (438, 903, 'attending', '2021-08-04 22:34:37', '2025-12-17 19:47:42', 'LmpJ3j94', '4240320'), - (438, 905, 'not_attending', '2021-07-07 22:06:36', '2025-12-17 19:47:39', 'LmpJ3j94', '4250163'), - (438, 911, 'attending', '2021-07-13 17:51:03', '2025-12-17 19:47:39', 'LmpJ3j94', '4264465'), - (438, 916, 'maybe', '2021-07-17 14:11:55', '2025-12-17 19:47:40', 'LmpJ3j94', '4273772'), - (438, 917, 'attending', '2021-07-12 00:49:18', '2025-12-17 19:47:39', 'LmpJ3j94', '4274481'), - (438, 919, 'maybe', '2021-07-17 14:07:17', '2025-12-17 19:47:39', 'LmpJ3j94', '4275957'), - (438, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpJ3j94', '4277819'), - (438, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpJ3j94', '4301723'), - (438, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpJ3j94', '4302093'), - (438, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpJ3j94', '4304151'), - (438, 946, 'maybe', '2021-08-02 07:02:51', '2025-12-17 19:47:40', 'LmpJ3j94', '4314835'), - (438, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'LmpJ3j94', '4345519'), - (438, 971, 'not_attending', '2021-09-08 20:44:00', '2025-12-17 19:47:43', 'LmpJ3j94', '4356801'), - (438, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpJ3j94', '4358025'), - (438, 973, 'not_attending', '2021-08-21 21:22:03', '2025-12-17 19:47:42', 'LmpJ3j94', '4366186'), - (438, 974, 'attending', '2021-08-21 21:21:58', '2025-12-17 19:47:42', 'LmpJ3j94', '4366187'), - (438, 988, 'not_attending', '2021-08-27 20:59:30', '2025-12-17 19:47:42', 'LmpJ3j94', '4402823'), - (438, 989, 'attending', '2021-08-29 21:50:49', '2025-12-17 19:47:43', 'LmpJ3j94', '4414282'), - (438, 990, 'not_attending', '2021-09-04 16:09:39', '2025-12-17 19:47:43', 'LmpJ3j94', '4420735'), - (438, 991, 'attending', '2021-08-28 22:45:16', '2025-12-17 19:47:43', 'LmpJ3j94', '4420738'), - (438, 992, 'attending', '2021-08-28 22:45:01', '2025-12-17 19:47:33', 'LmpJ3j94', '4420739'), - (438, 993, 'not_attending', '2021-09-16 00:25:54', '2025-12-17 19:47:34', 'LmpJ3j94', '4420741'), - (438, 994, 'attending', '2021-09-29 19:27:00', '2025-12-17 19:47:34', 'LmpJ3j94', '4420742'), - (438, 995, 'attending', '2021-08-28 22:45:11', '2025-12-17 19:47:34', 'LmpJ3j94', '4420744'), - (438, 996, 'maybe', '2021-10-10 03:19:10', '2025-12-17 19:47:35', 'LmpJ3j94', '4420747'), - (438, 997, 'maybe', '2021-10-23 16:05:37', '2025-12-17 19:47:35', 'LmpJ3j94', '4420748'), - (438, 998, 'attending', '2021-10-30 21:55:49', '2025-12-17 19:47:36', 'LmpJ3j94', '4420749'), - (438, 1010, 'attending', '2021-10-31 01:50:48', '2025-12-17 19:47:36', 'LmpJ3j94', '4438812'), - (438, 1019, 'attending', '2021-09-06 15:51:23', '2025-12-17 19:47:43', 'LmpJ3j94', '4450515'), - (438, 1020, 'attending', '2021-09-06 15:51:13', '2025-12-17 19:47:43', 'LmpJ3j94', '4451787'), - (438, 1021, 'attending', '2021-09-06 15:52:06', '2025-12-17 19:47:34', 'LmpJ3j94', '4451803'), - (438, 1023, 'maybe', '2021-09-10 01:51:02', '2025-12-17 19:47:43', 'LmpJ3j94', '4461883'), - (438, 1031, 'not_attending', '2021-09-22 22:41:51', '2025-12-17 19:47:34', 'LmpJ3j94', '4473789'), - (438, 1033, 'attending', '2021-09-18 21:52:24', '2025-12-17 19:47:43', 'LmpJ3j94', '4486006'), - (438, 1036, 'not_attending', '2021-09-21 20:39:58', '2025-12-17 19:47:34', 'LmpJ3j94', '4493166'), - (438, 1037, 'maybe', '2021-09-23 21:09:28', '2025-12-17 19:47:34', 'LmpJ3j94', '4493233'), - (438, 1038, 'not_attending', '2021-09-22 20:13:06', '2025-12-17 19:47:34', 'LmpJ3j94', '4496603'), - (438, 1040, 'maybe', '2021-12-10 01:43:55', '2025-12-17 19:47:38', 'LmpJ3j94', '4496605'), - (438, 1042, 'not_attending', '2021-11-27 23:01:59', '2025-12-17 19:47:37', 'LmpJ3j94', '4496607'), - (438, 1043, 'maybe', '2021-10-23 16:05:39', '2025-12-17 19:47:35', 'LmpJ3j94', '4496608'), - (438, 1047, 'attending', '2021-10-09 16:44:58', '2025-12-17 19:47:34', 'LmpJ3j94', '4496612'), - (438, 1058, 'not_attending', '2022-02-26 23:00:46', '2025-12-17 19:47:33', 'LmpJ3j94', '4496625'), - (438, 1062, 'not_attending', '2022-03-05 23:01:23', '2025-12-17 19:47:33', 'LmpJ3j94', '4496629'), - (438, 1065, 'not_attending', '2021-09-21 20:52:44', '2025-12-17 19:47:34', 'LmpJ3j94', '4505800'), - (438, 1067, 'not_attending', '2021-09-23 03:35:53', '2025-12-17 19:47:34', 'LmpJ3j94', '4508342'), - (438, 1068, 'maybe', '2021-09-30 22:09:53', '2025-12-17 19:47:34', 'LmpJ3j94', '4511471'), - (438, 1070, 'maybe', '2021-09-30 18:07:21', '2025-12-17 19:47:34', 'LmpJ3j94', '4512562'), - (438, 1082, 'maybe', '2021-10-13 23:29:40', '2025-12-17 19:47:35', 'LmpJ3j94', '4566762'), - (438, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpJ3j94', '4568602'), - (438, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'LmpJ3j94', '4572153'), - (438, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpJ3j94', '4585962'), - (438, 1094, 'maybe', '2021-10-31 22:45:23', '2025-12-17 19:47:36', 'LmpJ3j94', '4587337'), - (438, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'LmpJ3j94', '4596356'), - (438, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpJ3j94', '4598860'), - (438, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpJ3j94', '4598861'), - (438, 1099, 'attending', '2021-10-31 01:49:49', '2025-12-17 19:47:36', 'LmpJ3j94', '4602797'), - (438, 1114, 'not_attending', '2021-11-13 23:26:37', '2025-12-17 19:47:36', 'LmpJ3j94', '4637896'), - (438, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpJ3j94', '4642994'), - (438, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'LmpJ3j94', '4642995'), - (438, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpJ3j94', '4642996'), - (438, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpJ3j94', '4642997'), - (438, 1126, 'maybe', '2021-12-10 01:43:43', '2025-12-17 19:47:38', 'LmpJ3j94', '4645687'), - (438, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpJ3j94', '4645698'), - (438, 1128, 'not_attending', '2021-11-20 21:40:06', '2025-12-17 19:47:37', 'LmpJ3j94', '4645704'), - (438, 1129, 'not_attending', '2021-11-27 23:01:43', '2025-12-17 19:47:37', 'LmpJ3j94', '4645705'), - (438, 1130, 'not_attending', '2021-12-05 00:40:54', '2025-12-17 19:47:37', 'LmpJ3j94', '4658824'), - (438, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpJ3j94', '4668385'), - (438, 1146, 'maybe', '2021-12-10 01:43:25', '2025-12-17 19:47:38', 'LmpJ3j94', '4692841'), - (438, 1147, 'attending', '2021-12-10 01:44:20', '2025-12-17 19:47:38', 'LmpJ3j94', '4692842'), - (438, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpJ3j94', '4694407'), - (438, 1174, 'not_attending', '2022-01-15 23:01:18', '2025-12-17 19:47:31', 'LmpJ3j94', '4736496'), - (438, 1175, 'not_attending', '2022-01-23 00:31:05', '2025-12-17 19:47:32', 'LmpJ3j94', '4736497'), - (438, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpJ3j94', '4736499'), - (438, 1178, 'maybe', '2022-01-29 17:05:37', '2025-12-17 19:47:32', 'LmpJ3j94', '4736500'), - (438, 1180, 'not_attending', '2022-02-26 23:00:42', '2025-12-17 19:47:33', 'LmpJ3j94', '4736502'), - (438, 1181, 'not_attending', '2022-03-05 23:01:27', '2025-12-17 19:47:33', 'LmpJ3j94', '4736503'), - (438, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpJ3j94', '4736504'), - (438, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpJ3j94', '4746789'), - (438, 1188, 'maybe', '2022-01-18 00:45:48', '2025-12-17 19:47:32', 'LmpJ3j94', '4753929'), - (438, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpJ3j94', '5038850'), - (438, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpJ3j94', '5045826'), - (438, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpJ3j94', '5132533'), - (438, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'LmpJ3j94', '5186582'), - (438, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpJ3j94', '5186583'), - (438, 1274, 'not_attending', '2022-04-02 22:30:21', '2025-12-17 19:47:26', 'LmpJ3j94', '5186585'), - (438, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpJ3j94', '5190437'), - (438, 1284, 'not_attending', '2022-04-13 19:48:54', '2025-12-17 19:47:27', 'LmpJ3j94', '5195095'), - (438, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpJ3j94', '5215989'), - (438, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'LmpJ3j94', '5223686'), - (438, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'LmpJ3j94', '5227432'), - (438, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'LmpJ3j94', '5231461'), - (438, 1315, 'maybe', '2022-04-22 18:10:45', '2025-12-17 19:47:27', 'LmpJ3j94', '5237522'), - (438, 1319, 'maybe', '2022-04-13 19:48:33', '2025-12-17 19:47:27', 'LmpJ3j94', '5238353'), - (438, 1330, 'maybe', '2022-04-18 23:47:35', '2025-12-17 19:47:27', 'LmpJ3j94', '5242155'), - (438, 1331, 'maybe', '2022-04-21 20:01:31', '2025-12-17 19:47:27', 'LmpJ3j94', '5242156'), - (438, 1344, 'maybe', '2022-04-30 21:26:59', '2025-12-17 19:47:28', 'LmpJ3j94', '5247465'), - (438, 1345, 'maybe', '2022-04-21 16:48:26', '2025-12-17 19:47:27', 'LmpJ3j94', '5247466'), - (438, 1346, 'maybe', '2022-04-20 15:22:00', '2025-12-17 19:47:27', 'LmpJ3j94', '5247467'), - (438, 1362, 'maybe', '2022-04-30 21:27:02', '2025-12-17 19:47:28', 'LmpJ3j94', '5260800'), - (438, 1374, 'not_attending', '2022-05-07 22:09:27', '2025-12-17 19:47:28', 'LmpJ3j94', '5269930'), - (438, 1378, 'not_attending', '2022-05-14 21:00:46', '2025-12-17 19:47:29', 'LmpJ3j94', '5271448'), - (438, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'LmpJ3j94', '5271449'), - (438, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'LmpJ3j94', '5276469'), - (438, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'LmpJ3j94', '5278159'), - (438, 1407, 'not_attending', '2022-06-04 20:52:57', '2025-12-17 19:47:30', 'LmpJ3j94', '5363695'), - (438, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'LmpJ3j94', '5365960'), - (438, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'LmpJ3j94', '5368973'), - (438, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'LmpJ3j94', '5378247'), - (438, 1431, 'not_attending', '2022-06-11 21:21:20', '2025-12-17 19:47:31', 'LmpJ3j94', '5389605'), - (438, 1442, 'attending', '2022-06-18 16:07:46', '2025-12-17 19:47:17', 'LmpJ3j94', '5397265'), - (438, 1444, 'not_attending', '2022-06-11 21:21:10', '2025-12-17 19:47:30', 'LmpJ3j94', '5397614'), - (438, 1445, 'attending', '2022-06-18 17:36:38', '2025-12-17 19:47:17', 'LmpJ3j94', '5397615'), - (438, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'LmpJ3j94', '5403967'), - (438, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'LmpJ3j94', '5404786'), - (438, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'LmpJ3j94', '5405203'), - (438, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'LmpJ3j94', '5408794'), - (438, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'LmpJ3j94', '5411699'), - (438, 1482, 'attending', '2022-06-21 18:01:31', '2025-12-17 19:47:19', 'LmpJ3j94', '5412550'), - (438, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'LmpJ3j94', '5415046'), - (438, 1495, 'maybe', '2022-06-26 13:49:25', '2025-12-17 19:47:19', 'LmpJ3j94', '5422086'), - (438, 1498, 'not_attending', '2022-07-02 15:24:57', '2025-12-17 19:47:19', 'LmpJ3j94', '5422406'), - (438, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'LmpJ3j94', '5424565'), - (438, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'LmpJ3j94', '5426882'), - (438, 1505, 'maybe', '2022-07-05 20:11:21', '2025-12-17 19:47:19', 'LmpJ3j94', '5427083'), - (438, 1511, 'not_attending', '2022-07-09 20:16:29', '2025-12-17 19:47:19', 'LmpJ3j94', '5437733'), - (438, 1513, 'not_attending', '2022-07-13 15:21:16', '2025-12-17 19:47:20', 'LmpJ3j94', '5441125'), - (438, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'LmpJ3j94', '5441126'), - (438, 1515, 'not_attending', '2022-08-06 19:42:50', '2025-12-17 19:47:21', 'LmpJ3j94', '5441128'), - (438, 1517, 'not_attending', '2022-08-27 21:00:19', '2025-12-17 19:47:23', 'LmpJ3j94', '5441130'), - (438, 1518, 'not_attending', '2022-09-01 16:48:09', '2025-12-17 19:47:24', 'LmpJ3j94', '5441131'), - (438, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'LmpJ3j94', '5441132'), - (438, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'LmpJ3j94', '5446643'), - (438, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'LmpJ3j94', '5453325'), - (438, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'LmpJ3j94', '5454516'), - (438, 1544, 'not_attending', '2022-09-17 22:30:20', '2025-12-17 19:47:11', 'LmpJ3j94', '5454517'), - (438, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'LmpJ3j94', '5454605'), - (438, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'LmpJ3j94', '5455037'), - (438, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'LmpJ3j94', '5461278'), - (438, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'LmpJ3j94', '5469480'), - (438, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'LmpJ3j94', '5471073'), - (438, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'LmpJ3j94', '5474663'), - (438, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'LmpJ3j94', '5482022'), - (438, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'LmpJ3j94', '5482793'), - (438, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'LmpJ3j94', '5488912'), - (438, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'LmpJ3j94', '5492192'), - (438, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'LmpJ3j94', '5493139'), - (438, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'LmpJ3j94', '5493200'), - (438, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'LmpJ3j94', '5502188'), - (438, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'LmpJ3j94', '5505059'), - (438, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'LmpJ3j94', '5509055'), - (438, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'LmpJ3j94', '5512862'), - (438, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'LmpJ3j94', '5513985'), - (438, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'LmpJ3j94', '5519981'), - (438, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'LmpJ3j94', '5522550'), - (438, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'LmpJ3j94', '5534683'), - (438, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'LmpJ3j94', '5537735'), - (438, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'LmpJ3j94', '5540859'), - (438, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'LmpJ3j94', '5546619'), - (438, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'LmpJ3j94', '5557747'), - (438, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'LmpJ3j94', '5560255'), - (438, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'LmpJ3j94', '5562906'), - (438, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'LmpJ3j94', '5600604'), - (438, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'LmpJ3j94', '5605544'), - (438, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'LmpJ3j94', '5630960'), - (438, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'LmpJ3j94', '5630961'), - (438, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'LmpJ3j94', '5630962'), - (438, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'LmpJ3j94', '5630966'), - (438, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'LmpJ3j94', '5630967'), - (438, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'LmpJ3j94', '5630968'), - (438, 1727, 'not_attending', '2022-12-03 23:05:21', '2025-12-17 19:47:16', 'LmpJ3j94', '5630969'), - (438, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'LmpJ3j94', '5635406'), - (438, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'LmpJ3j94', '5638765'), - (438, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'LmpJ3j94', '5640097'), - (438, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'LmpJ3j94', '5640843'), - (438, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'LmpJ3j94', '5641521'), - (438, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'LmpJ3j94', '5642818'), - (438, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'LmpJ3j94', '5652395'), - (438, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'LmpJ3j94', '5670445'), - (438, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'LmpJ3j94', '5671637'), - (438, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'LmpJ3j94', '5672329'), - (438, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'LmpJ3j94', '5674057'), - (438, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'LmpJ3j94', '5674060'), - (438, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'LmpJ3j94', '5677461'), - (438, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'LmpJ3j94', '5698046'), - (438, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'LmpJ3j94', '5699760'), - (438, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'LmpJ3j94', '5741601'), - (438, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'LmpJ3j94', '5763458'), - (438, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'LmpJ3j94', '5774172'), - (438, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'LmpJ3j94', '5818247'), - (438, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'LmpJ3j94', '5819471'), - (438, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'LmpJ3j94', '5827739'), - (438, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'LmpJ3j94', '5844306'), - (438, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'LmpJ3j94', '5850159'), - (438, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'LmpJ3j94', '5858999'), - (438, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'LmpJ3j94', '5871984'), - (438, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'LmpJ3j94', '5876354'), - (438, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'LmpJ3j94', '5880939'), - (438, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'LmpJ3j94', '5880940'), - (438, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'LmpJ3j94', '5880942'), - (438, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'LmpJ3j94', '5880943'), - (438, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'LmpJ3j94', '5887890'), - (438, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'LmpJ3j94', '5888598'), - (438, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'LmpJ3j94', '5893260'), - (438, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'LmpJ3j94', '5899826'), - (438, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'LmpJ3j94', '5900199'), - (438, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'LmpJ3j94', '5900200'), - (438, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'LmpJ3j94', '5900202'), - (438, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'LmpJ3j94', '5900203'), - (438, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'LmpJ3j94', '5901108'), - (438, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'LmpJ3j94', '5901126'), - (438, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'LmpJ3j94', '5909655'), - (438, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'LmpJ3j94', '5910522'), - (438, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'LmpJ3j94', '5910526'), - (438, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'LmpJ3j94', '5910528'), - (438, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'LmpJ3j94', '5916219'), - (438, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'LmpJ3j94', '5936234'), - (438, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'LmpJ3j94', '5958351'), - (438, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'LmpJ3j94', '5959751'), - (438, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'LmpJ3j94', '5959755'), - (438, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'LmpJ3j94', '5960055'), - (438, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'LmpJ3j94', '5961684'), - (438, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'LmpJ3j94', '5962132'), - (438, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'LmpJ3j94', '5962133'), - (438, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'LmpJ3j94', '5962134'), - (438, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'LmpJ3j94', '5962317'), - (438, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'LmpJ3j94', '5962318'), - (438, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'LmpJ3j94', '5965933'), - (438, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'LmpJ3j94', '5967014'), - (438, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'LmpJ3j94', '5972815'), - (438, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'LmpJ3j94', '5974016'), - (438, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'LmpJ3j94', '5981515'), - (438, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'LmpJ3j94', '5993516'), - (438, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'LmpJ3j94', '5998939'), - (438, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'LmpJ3j94', '6028191'), - (438, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'LmpJ3j94', '6040066'), - (438, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'LmpJ3j94', '6042717'), - (438, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'LmpJ3j94', '6044838'), - (438, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'LmpJ3j94', '6044839'), - (438, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJ3j94', '6045684'), - (438, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'LmpJ3j94', '6050104'), - (438, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'LmpJ3j94', '6053195'), - (438, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'LmpJ3j94', '6053198'), - (438, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'LmpJ3j94', '6056085'), - (438, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'LmpJ3j94', '6056916'), - (438, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'LmpJ3j94', '6059290'), - (438, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'LmpJ3j94', '6060328'), - (438, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'LmpJ3j94', '6061037'), - (438, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'LmpJ3j94', '6061039'), - (438, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'LmpJ3j94', '6067245'), - (438, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'LmpJ3j94', '6068094'), - (438, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'LmpJ3j94', '6068252'), - (438, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'LmpJ3j94', '6068253'), - (438, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'LmpJ3j94', '6068254'), - (438, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'LmpJ3j94', '6068280'), - (438, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'LmpJ3j94', '6069093'), - (438, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'LmpJ3j94', '6072528'), - (438, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'LmpJ3j94', '6079840'), - (438, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'LmpJ3j94', '6083398'), - (438, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'LmpJ3j94', '6093504'), - (438, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'LmpJ3j94', '6097414'), - (438, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'LmpJ3j94', '6097442'), - (438, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'LmpJ3j94', '6097684'), - (438, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'LmpJ3j94', '6098762'), - (438, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'LmpJ3j94', '6101361'), - (438, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'LmpJ3j94', '6101362'), - (438, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'LmpJ3j94', '6107314'), - (438, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'LmpJ3j94', '6120034'), - (438, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'LmpJ3j94', '6136733'), - (438, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'LmpJ3j94', '6137989'), - (438, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'LmpJ3j94', '6150864'), - (438, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'LmpJ3j94', '6155491'), - (438, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'LmpJ3j94', '6164417'), - (438, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'LmpJ3j94', '6166388'), - (438, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'LmpJ3j94', '6176439'), - (438, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'LmpJ3j94', '6182410'), - (438, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'LmpJ3j94', '6185812'), - (438, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'LmpJ3j94', '6187651'), - (438, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'LmpJ3j94', '6187963'), - (438, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'LmpJ3j94', '6187964'), - (438, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'LmpJ3j94', '6187966'), - (438, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'LmpJ3j94', '6187967'), - (438, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'LmpJ3j94', '6187969'), - (438, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'LmpJ3j94', '6334878'), - (438, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'LmpJ3j94', '6337236'), - (438, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'LmpJ3j94', '6337970'), - (438, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'LmpJ3j94', '6338308'), - (438, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'LmpJ3j94', '6341710'), - (438, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'LmpJ3j94', '6342044'), - (438, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'LmpJ3j94', '6342298'), - (438, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'LmpJ3j94', '6343294'), - (438, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'LmpJ3j94', '6347034'), - (438, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'LmpJ3j94', '6347056'), - (438, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'LmpJ3j94', '6353830'), - (438, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'LmpJ3j94', '6353831'), - (438, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'LmpJ3j94', '6357867'), - (438, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'LmpJ3j94', '6358652'), - (438, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'LmpJ3j94', '6361709'), - (438, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'LmpJ3j94', '6361710'), - (438, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'LmpJ3j94', '6361711'), - (438, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'LmpJ3j94', '6361712'), - (438, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'LmpJ3j94', '6361713'), - (438, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'LmpJ3j94', '6382573'), - (438, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'LmpJ3j94', '6388604'), - (438, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'LmpJ3j94', '6394629'), - (438, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'LmpJ3j94', '6394631'), - (438, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'LmpJ3j94', '6440863'), - (438, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'LmpJ3j94', '6445440'), - (438, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'LmpJ3j94', '6453951'), - (438, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'LmpJ3j94', '6461696'), - (438, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'LmpJ3j94', '6462129'), - (438, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'LmpJ3j94', '6463218'), - (438, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'LmpJ3j94', '6472181'), - (438, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'LmpJ3j94', '6482693'), - (438, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'LmpJ3j94', '6484200'), - (438, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'LmpJ3j94', '6484680'), - (438, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'LmpJ3j94', '6507741'), - (438, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'LmpJ3j94', '6514659'), - (438, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'LmpJ3j94', '6514660'), - (438, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'LmpJ3j94', '6519103'), - (438, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'LmpJ3j94', '6535681'), - (438, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'LmpJ3j94', '6584747'), - (438, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'LmpJ3j94', '6587097'), - (438, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'LmpJ3j94', '6609022'), - (438, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'LmpJ3j94', '6632757'), - (438, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'LmpJ3j94', '6644187'), - (438, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'LmpJ3j94', '6648951'), - (438, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'LmpJ3j94', '6648952'), - (438, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'LmpJ3j94', '6655401'), - (438, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'LmpJ3j94', '6661585'), - (438, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'LmpJ3j94', '6661588'), - (438, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'LmpJ3j94', '6661589'), - (438, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'LmpJ3j94', '6699906'), - (438, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'LmpJ3j94', '6699913'), - (438, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'LmpJ3j94', '6701109'), - (438, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'LmpJ3j94', '6705219'), - (438, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'LmpJ3j94', '6710153'), - (438, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'LmpJ3j94', '6711552'), - (438, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'LmpJ3j94', '6711553'), - (438, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'LmpJ3j94', '6722688'), - (438, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'LmpJ3j94', '6730620'), - (438, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'LmpJ3j94', '6740364'), - (438, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'LmpJ3j94', '6743829'), - (438, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'LmpJ3j94', '7030380'), - (438, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'LmpJ3j94', '7033677'), - (438, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'LmpJ3j94', '7044715'), - (438, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'LmpJ3j94', '7050318'), - (438, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'LmpJ3j94', '7050319'), - (438, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'LmpJ3j94', '7050322'), - (438, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'LmpJ3j94', '7057804'), - (438, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'LmpJ3j94', '7072824'), - (438, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'LmpJ3j94', '7074348'), - (438, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'LmpJ3j94', '7074364'), - (438, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'LmpJ3j94', '7089267'), - (438, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'LmpJ3j94', '7098747'), - (438, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'LmpJ3j94', '7113468'), - (438, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'LmpJ3j94', '7114856'), - (438, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'LmpJ3j94', '7114951'), - (438, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'LmpJ3j94', '7114955'), - (438, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'LmpJ3j94', '7114956'), - (438, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'LmpJ3j94', '7114957'), - (438, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'LmpJ3j94', '7159484'), - (438, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'LmpJ3j94', '7178446'), - (438, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'LmpJ3j94', '7220467'), - (438, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'LmpJ3j94', '7240354'), - (438, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'LmpJ3j94', '7251633'), - (438, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'LmpJ3j94', '7324073'), - (438, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'LmpJ3j94', '7324074'), - (438, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'LmpJ3j94', '7324075'), - (438, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'LmpJ3j94', '7324078'), - (438, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'LmpJ3j94', '7324082'), - (438, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'LmpJ3j94', '7331457'), - (438, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'LmpJ3j94', '7363643'), - (438, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'LmpJ3j94', '7368606'), - (438, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'LmpJ3j94', '7397462'), - (438, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'LmpJ3j94', '7424275'), - (438, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'LmpJ3j94', '7432751'), - (438, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'LmpJ3j94', '7432752'), - (438, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'LmpJ3j94', '7432753'), - (438, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'LmpJ3j94', '7432754'), - (438, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'LmpJ3j94', '7432755'), - (438, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'LmpJ3j94', '7432756'), - (438, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'LmpJ3j94', '7432758'), - (438, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'LmpJ3j94', '7432759'), - (438, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'LmpJ3j94', '7433834'), - (438, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'LmpJ3j94', '7470197'), - (438, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'LmpJ3j94', '7685613'), - (438, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'LmpJ3j94', '7688194'), - (438, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'LmpJ3j94', '7688196'), - (438, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'LmpJ3j94', '7688289'), - (438, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'LmpJ3j94', '7692763'), - (438, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'LmpJ3j94', '7697552'), - (438, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'LmpJ3j94', '7699878'), - (438, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'LmpJ3j94', '7704043'), - (438, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'LmpJ3j94', '7712467'), - (438, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'LmpJ3j94', '7713585'), - (438, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'LmpJ3j94', '7713586'), - (438, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'LmpJ3j94', '7738518'), - (438, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'LmpJ3j94', '7750636'), - (438, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'LmpJ3j94', '7796540'), - (438, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'LmpJ3j94', '7796541'), - (438, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'LmpJ3j94', '7796542'), - (438, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'LmpJ3j94', '7825913'), - (438, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'LmpJ3j94', '7826209'), - (438, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'LmpJ3j94', '7834742'), - (438, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'LmpJ3j94', '7842108'), - (438, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'LmpJ3j94', '7842902'), - (438, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'LmpJ3j94', '7842903'), - (438, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'LmpJ3j94', '7842904'), - (438, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'LmpJ3j94', '7842905'), - (438, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'LmpJ3j94', '7855719'), - (438, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'LmpJ3j94', '7860683'), - (438, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'LmpJ3j94', '7860684'), - (438, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'LmpJ3j94', '7866095'), - (438, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'LmpJ3j94', '7869170'), - (438, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'LmpJ3j94', '7869188'), - (438, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'LmpJ3j94', '7869201'), - (438, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'LmpJ3j94', '7877465'), - (438, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'LmpJ3j94', '7888250'), - (438, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'LmpJ3j94', '7904777'), - (438, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'LmpJ3j94', '8349164'), - (438, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'LmpJ3j94', '8349545'), - (438, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'LmpJ3j94', '8368028'), - (438, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'LmpJ3j94', '8368029'), - (438, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'LmpJ3j94', '8388462'), - (438, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'LmpJ3j94', '8400273'), - (438, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'LmpJ3j94', '8400275'), - (438, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'LmpJ3j94', '8400276'), - (438, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'LmpJ3j94', '8404977'), - (438, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'LmpJ3j94', '8430783'), - (438, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'LmpJ3j94', '8430784'), - (438, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'LmpJ3j94', '8430799'), - (438, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'LmpJ3j94', '8430800'), - (438, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'LmpJ3j94', '8430801'), - (438, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'LmpJ3j94', '8438709'), - (438, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'LmpJ3j94', '8457738'), - (438, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'LmpJ3j94', '8459566'), - (438, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'LmpJ3j94', '8459567'), - (438, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'LmpJ3j94', '8461032'), - (438, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'LmpJ3j94', '8477877'), - (438, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'LmpJ3j94', '8485688'), - (438, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'LmpJ3j94', '8490587'), - (438, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'LmpJ3j94', '8493552'), - (438, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'LmpJ3j94', '8493553'), - (438, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'LmpJ3j94', '8493554'), - (438, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'LmpJ3j94', '8493555'), - (438, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'LmpJ3j94', '8493556'), - (438, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'LmpJ3j94', '8493557'), - (438, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'LmpJ3j94', '8493558'), - (438, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'LmpJ3j94', '8493559'), - (438, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'LmpJ3j94', '8493560'), - (438, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'LmpJ3j94', '8493561'), - (438, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'LmpJ3j94', '8493572'), - (438, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'LmpJ3j94', '8540725'), - (438, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'LmpJ3j94', '8555421'), - (439, 1242, 'attending', '2022-03-30 22:45:22', '2025-12-17 19:47:25', 'd9ovY5pA', '5052241'), - (439, 1274, 'maybe', '2022-03-30 13:25:07', '2025-12-17 19:47:26', 'd9ovY5pA', '5186585'), - (439, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'd9ovY5pA', '5195095'), - (439, 1288, 'attending', '2022-03-23 23:37:11', '2025-12-17 19:47:25', 'd9ovY5pA', '5199460'), - (439, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9ovY5pA', '5215989'), - (439, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd9ovY5pA', '5223686'), - (439, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd9ovY5pA', '5227432'), - (439, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'd9ovY5pA', '5247467'), - (439, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd9ovY5pA', '5260800'), - (439, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd9ovY5pA', '5269930'), - (439, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd9ovY5pA', '5271448'), - (439, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'd9ovY5pA', '5271449'), - (439, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd9ovY5pA', '5276469'), - (439, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd9ovY5pA', '5278159'), - (439, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd9ovY5pA', '5363695'), - (439, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd9ovY5pA', '5365960'), - (439, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd9ovY5pA', '5368973'), - (439, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd9ovY5pA', '5378247'), - (439, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd9ovY5pA', '5389605'), - (439, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd9ovY5pA', '5397265'), - (439, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd9ovY5pA', '5403967'), - (439, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd9ovY5pA', '5404786'), - (439, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd9ovY5pA', '5405203'), - (439, 1478, 'not_attending', '2022-06-15 01:11:29', '2025-12-17 19:47:19', 'd9ovY5pA', '5408794'), - (439, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd9ovY5pA', '5411699'), - (439, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd9ovY5pA', '5412550'), - (439, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd9ovY5pA', '5415046'), - (439, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd9ovY5pA', '5422086'), - (439, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd9ovY5pA', '5422406'), - (439, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd9ovY5pA', '5424565'), - (439, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd9ovY5pA', '5426882'), - (439, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd9ovY5pA', '5427083'), - (439, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd9ovY5pA', '5441125'), - (439, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd9ovY5pA', '5441126'), - (439, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd9ovY5pA', '5441128'), - (439, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd9ovY5pA', '5446643'), - (439, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd9ovY5pA', '5453325'), - (439, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd9ovY5pA', '5454516'), - (439, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd9ovY5pA', '5454605'), - (439, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd9ovY5pA', '5455037'), - (439, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd9ovY5pA', '5461278'), - (439, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd9ovY5pA', '5469480'), - (439, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd9ovY5pA', '5471073'), - (439, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd9ovY5pA', '5474663'), - (439, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd9ovY5pA', '5482022'), - (439, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd9ovY5pA', '5482793'), - (439, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd9ovY5pA', '5488912'), - (439, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd9ovY5pA', '5492192'), - (439, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd9ovY5pA', '5493139'), - (439, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd9ovY5pA', '5493200'), - (439, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd9ovY5pA', '5502188'), - (439, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd9ovY5pA', '5512862'), - (439, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd9ovY5pA', '5513985'), - (439, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9ovY5pA', '6045684'), - (440, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzva1L9d', '6045684'), - (441, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4kqkE0Lm', '6342044'), - (441, 2172, 'attending', '2023-07-20 15:42:56', '2025-12-17 19:46:53', '4kqkE0Lm', '6342591'), - (441, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '4kqkE0Lm', '6343294'), - (441, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4kqkE0Lm', '6347034'), - (441, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4kqkE0Lm', '6347056'), - (441, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4kqkE0Lm', '6353830'), - (441, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4kqkE0Lm', '6353831'), - (441, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4kqkE0Lm', '6357867'), - (441, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4kqkE0Lm', '6358652'), - (441, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', '4kqkE0Lm', '6361709'), - (441, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4kqkE0Lm', '6361710'), - (441, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4kqkE0Lm', '6361711'), - (441, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4kqkE0Lm', '6361712'), - (441, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4kqkE0Lm', '6361713'), - (441, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4kqkE0Lm', '6382573'), - (441, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4kqkE0Lm', '6388604'), - (441, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4kqkE0Lm', '6394629'), - (441, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4kqkE0Lm', '6394631'), - (441, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4kqkE0Lm', '6431478'), - (442, 1856, 'not_attending', '2023-01-17 23:45:31', '2025-12-17 19:47:05', '41xa1GEA', '5873970'), - (442, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41xa1GEA', '5876354'), - (442, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '41xa1GEA', '5880939'), - (442, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '41xa1GEA', '5880940'), - (442, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '41xa1GEA', '5880942'), - (442, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41xa1GEA', '5887890'), - (442, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41xa1GEA', '5888598'), - (442, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41xa1GEA', '5893260'), - (442, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '41xa1GEA', '5899826'), - (442, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '41xa1GEA', '5900199'), - (442, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '41xa1GEA', '5900200'), - (442, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', '41xa1GEA', '5901055'), - (442, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '41xa1GEA', '5901108'), - (442, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '41xa1GEA', '5901126'), - (442, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '41xa1GEA', '5901606'), - (442, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '41xa1GEA', '5909655'), - (442, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '41xa1GEA', '5910522'), - (442, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '41xa1GEA', '5910526'), - (442, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '41xa1GEA', '5910528'), - (442, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '41xa1GEA', '5916219'), - (442, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '41xa1GEA', '5936234'), - (442, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '41xa1GEA', '5936691'), - (442, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '41xa1GEA', '5958351'), - (442, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '41xa1GEA', '5959751'), - (442, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '41xa1GEA', '5959755'), - (442, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '41xa1GEA', '5960055'), - (442, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '41xa1GEA', '5961684'), - (442, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '41xa1GEA', '5962132'), - (442, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '41xa1GEA', '5962133'), - (442, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '41xa1GEA', '5962134'), - (442, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '41xa1GEA', '5962317'), - (442, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '41xa1GEA', '5962318'), - (442, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41xa1GEA', '6045684'), - (443, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dK3lXY5d', '4645687'), - (443, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dK3lXY5d', '4645698'), - (443, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dK3lXY5d', '4645704'), - (443, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dK3lXY5d', '4645705'), - (443, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dK3lXY5d', '4668385'), - (443, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dK3lXY5d', '4694407'), - (443, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dK3lXY5d', '4746789'), - (443, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dK3lXY5d', '4753929'), - (443, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dK3lXY5d', '6045684'), - (444, 857, 'not_attending', '2021-11-22 22:31:16', '2025-12-17 19:47:37', 'ndlboPlA', '4015731'), - (444, 994, 'not_attending', '2021-09-30 22:26:06', '2025-12-17 19:47:34', 'ndlboPlA', '4420742'), - (444, 995, 'not_attending', '2021-10-04 16:17:47', '2025-12-17 19:47:34', 'ndlboPlA', '4420744'), - (444, 996, 'not_attending', '2021-10-11 05:23:06', '2025-12-17 19:47:35', 'ndlboPlA', '4420747'), - (444, 1006, 'not_attending', '2021-09-30 22:25:55', '2025-12-17 19:47:34', 'ndlboPlA', '4438808'), - (444, 1007, 'not_attending', '2021-09-30 22:26:10', '2025-12-17 19:47:34', 'ndlboPlA', '4438809'), - (444, 1009, 'attending', '2021-10-02 03:29:11', '2025-12-17 19:47:34', 'ndlboPlA', '4438811'), - (444, 1039, 'not_attending', '2021-09-30 22:26:06', '2025-12-17 19:47:34', 'ndlboPlA', '4496604'), - (444, 1049, 'attending', '2021-12-31 16:15:20', '2025-12-17 19:47:32', 'ndlboPlA', '4496614'), - (444, 1068, 'attending', '2021-09-30 22:43:47', '2025-12-17 19:47:34', 'ndlboPlA', '4511471'), - (444, 1070, 'not_attending', '2021-09-30 22:25:56', '2025-12-17 19:47:34', 'ndlboPlA', '4512562'), - (444, 1071, 'not_attending', '2021-09-30 22:38:19', '2025-12-17 19:47:34', 'ndlboPlA', '4516078'), - (444, 1072, 'attending', '2021-09-30 22:42:34', '2025-12-17 19:47:34', 'ndlboPlA', '4516287'), - (444, 1073, 'not_attending', '2021-09-30 22:25:50', '2025-12-17 19:47:34', 'ndlboPlA', '4518993'), - (444, 1077, 'attending', '2021-10-09 16:14:57', '2025-12-17 19:47:34', 'ndlboPlA', '4540903'), - (444, 1079, 'attending', '2021-10-11 05:23:14', '2025-12-17 19:47:35', 'ndlboPlA', '4563823'), - (444, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndlboPlA', '4568602'), - (444, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndlboPlA', '4572153'), - (444, 1092, 'attending', '2021-10-20 19:50:26', '2025-12-17 19:47:35', 'ndlboPlA', '4582837'), - (444, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'ndlboPlA', '4585962'), - (444, 1095, 'not_attending', '2021-10-27 22:22:54', '2025-12-17 19:47:36', 'ndlboPlA', '4596356'), - (444, 1097, 'attending', '2021-10-29 01:50:40', '2025-12-17 19:47:36', 'ndlboPlA', '4598860'), - (444, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ndlboPlA', '4598861'), - (444, 1099, 'not_attending', '2021-10-31 02:32:35', '2025-12-17 19:47:36', 'ndlboPlA', '4602797'), - (444, 1103, 'attending', '2021-11-07 04:02:39', '2025-12-17 19:47:36', 'ndlboPlA', '4616350'), - (444, 1107, 'attending', '2021-11-16 05:32:44', '2025-12-17 19:47:37', 'ndlboPlA', '4620697'), - (444, 1114, 'not_attending', '2021-11-12 03:36:25', '2025-12-17 19:47:36', 'ndlboPlA', '4637896'), - (444, 1115, 'not_attending', '2021-11-16 05:32:42', '2025-12-17 19:47:37', 'ndlboPlA', '4638673'), - (444, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndlboPlA', '4642994'), - (444, 1117, 'not_attending', '2021-12-09 14:35:23', '2025-12-17 19:47:38', 'ndlboPlA', '4642995'), - (444, 1118, 'attending', '2021-12-04 20:10:23', '2025-12-17 19:47:38', 'ndlboPlA', '4642996'), - (444, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ndlboPlA', '4642997'), - (444, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ndlboPlA', '4645687'), - (444, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ndlboPlA', '4645698'), - (444, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndlboPlA', '4645704'), - (444, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ndlboPlA', '4645705'), - (444, 1130, 'maybe', '2021-11-29 03:47:07', '2025-12-17 19:47:37', 'ndlboPlA', '4658824'), - (444, 1134, 'not_attending', '2021-11-24 18:15:37', '2025-12-17 19:47:37', 'ndlboPlA', '4668385'), - (444, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndlboPlA', '4694407'), - (444, 1153, 'attending', '2021-12-31 16:15:16', '2025-12-17 19:47:32', 'ndlboPlA', '4708707'), - (444, 1154, 'attending', '2022-01-23 16:54:54', '2025-12-17 19:47:32', 'ndlboPlA', '4708708'), - (444, 1167, 'not_attending', '2022-01-06 20:58:22', '2025-12-17 19:47:31', 'ndlboPlA', '4731015'), - (444, 1168, 'not_attending', '2022-01-06 20:58:25', '2025-12-17 19:47:31', 'ndlboPlA', '4731043'), - (444, 1175, 'attending', '2022-01-16 06:30:04', '2025-12-17 19:47:32', 'ndlboPlA', '4736497'), - (444, 1177, 'not_attending', '2022-02-07 16:53:40', '2025-12-17 19:47:32', 'ndlboPlA', '4736499'), - (444, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndlboPlA', '4736500'), - (444, 1181, 'attending', '2022-03-04 20:35:48', '2025-12-17 19:47:33', 'ndlboPlA', '4736503'), - (444, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ndlboPlA', '4736504'), - (444, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndlboPlA', '4746789'), - (444, 1188, 'not_attending', '2022-01-16 06:29:43', '2025-12-17 19:47:32', 'ndlboPlA', '4753929'), - (444, 1192, 'not_attending', '2022-01-19 22:22:39', '2025-12-17 19:47:32', 'ndlboPlA', '4758745'), - (444, 1193, 'attending', '2022-01-16 06:30:00', '2025-12-17 19:47:32', 'ndlboPlA', '4759563'), - (444, 1196, 'not_attending', '2022-01-19 22:22:28', '2025-12-17 19:47:32', 'ndlboPlA', '4765583'), - (444, 1202, 'not_attending', '2022-01-27 23:38:41', '2025-12-17 19:47:32', 'ndlboPlA', '4769423'), - (444, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndlboPlA', '5038850'), - (444, 1236, 'attending', '2022-02-14 19:04:01', '2025-12-17 19:47:32', 'ndlboPlA', '5045826'), - (444, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndlboPlA', '5132533'), - (444, 1265, 'not_attending', '2022-03-07 08:13:32', '2025-12-17 19:47:33', 'ndlboPlA', '5160862'), - (444, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ndlboPlA', '5186582'), - (444, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ndlboPlA', '5186583'), - (444, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ndlboPlA', '5186585'), - (444, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ndlboPlA', '5190437'), - (444, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ndlboPlA', '5195095'), - (444, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndlboPlA', '5215989'), - (444, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ndlboPlA', '5223686'), - (444, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ndlboPlA', '5227432'), - (444, 1322, 'attending', '2022-04-11 17:10:36', '2025-12-17 19:47:27', 'ndlboPlA', '5238356'), - (444, 1323, 'not_attending', '2022-04-27 00:15:45', '2025-12-17 19:47:27', 'ndlboPlA', '5238357'), - (444, 1330, 'not_attending', '2022-04-20 00:06:17', '2025-12-17 19:47:27', 'ndlboPlA', '5242155'), - (444, 1335, 'not_attending', '2022-04-15 18:28:33', '2025-12-17 19:47:27', 'ndlboPlA', '5244906'), - (444, 1336, 'not_attending', '2022-04-20 00:06:28', '2025-12-17 19:47:27', 'ndlboPlA', '5244915'), - (444, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ndlboPlA', '5247467'), - (444, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ndlboPlA', '5260800'), - (444, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ndlboPlA', '5269930'), - (444, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ndlboPlA', '5271448'), - (444, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'ndlboPlA', '5271449'), - (444, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ndlboPlA', '5276469'), - (444, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ndlboPlA', '5278159'), - (444, 1401, 'attending', '2022-05-15 15:32:14', '2025-12-17 19:47:29', 'ndlboPlA', '5286295'), - (444, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ndlboPlA', '5363695'), - (444, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ndlboPlA', '5365960'), - (444, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ndlboPlA', '5368973'), - (444, 1419, 'attending', '2022-06-06 16:41:48', '2025-12-17 19:47:30', 'ndlboPlA', '5373081'), - (444, 1423, 'maybe', '2022-06-10 14:45:36', '2025-12-17 19:47:17', 'ndlboPlA', '5375727'), - (444, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ndlboPlA', '5378247'), - (444, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ndlboPlA', '5389605'), - (444, 1438, 'not_attending', '2022-06-01 18:46:30', '2025-12-17 19:47:30', 'ndlboPlA', '5395032'), - (444, 1440, 'attending', '2022-06-06 16:41:33', '2025-12-17 19:47:30', 'ndlboPlA', '5396080'), - (444, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ndlboPlA', '5397265'), - (444, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ndlboPlA', '5403967'), - (444, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ndlboPlA', '5404786'), - (444, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ndlboPlA', '5405203'), - (444, 1463, 'attending', '2022-06-11 03:07:55', '2025-12-17 19:47:31', 'ndlboPlA', '5405208'), - (444, 1471, 'not_attending', '2022-06-21 19:23:54', '2025-12-17 19:47:17', 'ndlboPlA', '5407063'), - (444, 1473, 'attending', '2022-06-14 21:40:59', '2025-12-17 19:47:31', 'ndlboPlA', '5407267'), - (444, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'ndlboPlA', '5408794'), - (444, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ndlboPlA', '5411699'), - (444, 1481, 'attending', '2022-06-21 09:53:55', '2025-12-17 19:47:17', 'ndlboPlA', '5412237'), - (444, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ndlboPlA', '5412550'), - (444, 1484, 'attending', '2022-06-22 18:14:05', '2025-12-17 19:47:17', 'ndlboPlA', '5415046'), - (444, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ndlboPlA', '5422086'), - (444, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ndlboPlA', '5422406'), - (444, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ndlboPlA', '5424565'), - (444, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ndlboPlA', '5426882'), - (444, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ndlboPlA', '5427083'), - (444, 1508, 'attending', '2022-07-11 15:06:17', '2025-12-17 19:47:19', 'ndlboPlA', '5433453'), - (444, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ndlboPlA', '5441125'), - (444, 1514, 'attending', '2022-07-19 22:51:53', '2025-12-17 19:47:20', 'ndlboPlA', '5441126'), - (444, 1515, 'attending', '2022-08-02 05:18:05', '2025-12-17 19:47:21', 'ndlboPlA', '5441128'), - (444, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ndlboPlA', '5441131'), - (444, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'ndlboPlA', '5441132'), - (444, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ndlboPlA', '5446643'), - (444, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ndlboPlA', '5453325'), - (444, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ndlboPlA', '5454516'), - (444, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ndlboPlA', '5454605'), - (444, 1546, 'not_attending', '2022-07-24 03:24:40', '2025-12-17 19:47:20', 'ndlboPlA', '5454607'), - (444, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ndlboPlA', '5455037'), - (444, 1558, 'attending', '2022-09-01 16:58:25', '2025-12-17 19:47:10', 'ndlboPlA', '5458730'), - (444, 1559, 'not_attending', '2022-09-01 16:58:37', '2025-12-17 19:47:11', 'ndlboPlA', '5458731'), - (444, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ndlboPlA', '5461278'), - (444, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ndlboPlA', '5469480'), - (444, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ndlboPlA', '5471073'), - (444, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ndlboPlA', '5474663'), - (444, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ndlboPlA', '5482022'), - (444, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ndlboPlA', '5482793'), - (444, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ndlboPlA', '5488912'), - (444, 1582, 'attending', '2022-08-18 01:56:04', '2025-12-17 19:47:23', 'ndlboPlA', '5492001'), - (444, 1584, 'not_attending', '2022-08-18 01:56:14', '2025-12-17 19:47:23', 'ndlboPlA', '5492004'), - (444, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ndlboPlA', '5492192'), - (444, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ndlboPlA', '5493139'), - (444, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ndlboPlA', '5493200'), - (444, 1598, 'attending', '2022-08-14 22:29:37', '2025-12-17 19:47:22', 'ndlboPlA', '5496567'), - (444, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ndlboPlA', '5502188'), - (444, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndlboPlA', '5505059'), - (444, 1610, 'attending', '2022-08-24 21:40:20', '2025-12-17 19:47:23', 'ndlboPlA', '5506595'), - (444, 1611, 'attending', '2022-09-03 10:27:59', '2025-12-17 19:47:24', 'ndlboPlA', '5507652'), - (444, 1615, 'attending', '2022-08-24 21:40:14', '2025-12-17 19:47:23', 'ndlboPlA', '5509055'), - (444, 1617, 'not_attending', '2022-09-05 04:50:41', '2025-12-17 19:47:24', 'ndlboPlA', '5512003'), - (444, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndlboPlA', '5512862'), - (444, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndlboPlA', '5513985'), - (444, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'ndlboPlA', '5519981'), - (444, 1627, 'attending', '2022-09-01 16:56:22', '2025-12-17 19:47:24', 'ndlboPlA', '5521552'), - (444, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndlboPlA', '5522550'), - (444, 1630, 'attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndlboPlA', '5534683'), - (444, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'ndlboPlA', '5537735'), - (444, 1636, 'maybe', '2022-09-03 10:27:49', '2025-12-17 19:47:24', 'ndlboPlA', '5538454'), - (444, 1637, 'not_attending', '2022-09-05 04:50:31', '2025-12-17 19:47:24', 'ndlboPlA', '5539591'), - (444, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndlboPlA', '5540859'), - (444, 1642, 'attending', '2022-09-01 03:04:33', '2025-12-17 19:47:24', 'ndlboPlA', '5544227'), - (444, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndlboPlA', '5546619'), - (444, 1648, 'attending', '2022-09-05 04:50:34', '2025-12-17 19:47:24', 'ndlboPlA', '5548974'), - (444, 1650, 'attending', '2022-09-04 03:47:53', '2025-12-17 19:47:24', 'ndlboPlA', '5549611'), - (444, 1651, 'not_attending', '2022-09-05 04:50:23', '2025-12-17 19:47:24', 'ndlboPlA', '5551425'), - (444, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ndlboPlA', '5555245'), - (444, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndlboPlA', '5557747'), - (444, 1661, 'attending', '2022-09-09 18:49:50', '2025-12-17 19:47:24', 'ndlboPlA', '5560254'), - (444, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndlboPlA', '5560255'), - (444, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndlboPlA', '5562906'), - (444, 1667, 'attending', '2022-09-11 15:05:25', '2025-12-17 19:47:11', 'ndlboPlA', '5563221'), - (444, 1668, 'attending', '2022-09-21 15:15:41', '2025-12-17 19:47:12', 'ndlboPlA', '5563222'), - (444, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndlboPlA', '5600604'), - (444, 1679, 'attending', '2022-10-02 18:56:18', '2025-12-17 19:47:12', 'ndlboPlA', '5601099'), - (444, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndlboPlA', '5605544'), - (444, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'ndlboPlA', '5606737'), - (444, 1702, 'not_attending', '2022-10-07 15:17:03', '2025-12-17 19:47:12', 'ndlboPlA', '5609173'), - (444, 1708, 'attending', '2022-10-02 18:56:29', '2025-12-17 19:47:12', 'ndlboPlA', '5617648'), - (444, 1710, 'not_attending', '2022-10-02 18:56:14', '2025-12-17 19:47:12', 'ndlboPlA', '5621822'), - (444, 1716, 'not_attending', '2022-10-05 01:12:24', '2025-12-17 19:47:12', 'ndlboPlA', '5622429'), - (444, 1718, 'not_attending', '2022-10-05 01:12:39', '2025-12-17 19:47:12', 'ndlboPlA', '5630907'), - (444, 1721, 'attending', '2022-10-11 20:31:37', '2025-12-17 19:47:13', 'ndlboPlA', '5630960'), - (444, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndlboPlA', '5630961'), - (444, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndlboPlA', '5630962'), - (444, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndlboPlA', '5630966'), - (444, 1725, 'attending', '2022-11-13 04:36:39', '2025-12-17 19:47:16', 'ndlboPlA', '5630967'), - (444, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndlboPlA', '5630968'), - (444, 1727, 'not_attending', '2022-11-21 01:34:41', '2025-12-17 19:47:16', 'ndlboPlA', '5630969'), - (444, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndlboPlA', '5635406'), - (444, 1733, 'not_attending', '2022-10-07 15:17:19', '2025-12-17 19:47:12', 'ndlboPlA', '5635411'), - (444, 1736, 'attending', '2022-10-25 03:07:42', '2025-12-17 19:47:15', 'ndlboPlA', '5638456'), - (444, 1737, 'attending', '2022-11-07 03:23:26', '2025-12-17 19:47:16', 'ndlboPlA', '5638457'), - (444, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndlboPlA', '5638765'), - (444, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndlboPlA', '5640097'), - (444, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'ndlboPlA', '5640843'), - (444, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndlboPlA', '5641521'), - (444, 1744, 'not_attending', '2022-11-07 03:23:24', '2025-12-17 19:47:16', 'ndlboPlA', '5642818'), - (444, 1747, 'not_attending', '2022-10-15 21:17:29', '2025-12-17 19:47:14', 'ndlboPlA', '5648009'), - (444, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndlboPlA', '5652395'), - (444, 1757, 'not_attending', '2022-11-01 04:20:31', '2025-12-17 19:47:15', 'ndlboPlA', '5668974'), - (444, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ndlboPlA', '5670445'), - (444, 1764, 'attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndlboPlA', '5671637'), - (444, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndlboPlA', '5672329'), - (444, 1766, 'attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndlboPlA', '5674057'), - (444, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndlboPlA', '5674060'), - (444, 1768, 'not_attending', '2022-11-07 03:23:11', '2025-12-17 19:47:16', 'ndlboPlA', '5674062'), - (444, 1772, 'attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndlboPlA', '5677461'), - (444, 1774, 'not_attending', '2022-11-01 04:20:25', '2025-12-17 19:47:15', 'ndlboPlA', '5677843'), - (444, 1776, 'attending', '2022-11-02 01:28:01', '2025-12-17 19:47:15', 'ndlboPlA', '5691067'), - (444, 1777, 'attending', '2022-11-02 01:27:53', '2025-12-17 19:47:15', 'ndlboPlA', '5693021'), - (444, 1781, 'attending', '2022-11-02 01:44:26', '2025-12-17 19:47:15', 'ndlboPlA', '5696178'), - (444, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndlboPlA', '5698046'), - (444, 1784, 'not_attending', '2022-11-07 03:23:22', '2025-12-17 19:47:15', 'ndlboPlA', '5699760'), - (444, 1785, 'not_attending', '2022-11-07 03:23:18', '2025-12-17 19:47:15', 'ndlboPlA', '5702414'), - (444, 1791, 'attending', '2022-11-07 18:48:03', '2025-12-17 19:47:15', 'ndlboPlA', '5728511'), - (444, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndlboPlA', '5741601'), - (444, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndlboPlA', '5763458'), - (444, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndlboPlA', '5774172'), - (444, 1827, 'attending', '2022-11-29 17:49:59', '2025-12-17 19:47:16', 'ndlboPlA', '5776786'), - (444, 1831, 'not_attending', '2022-12-05 19:04:34', '2025-12-17 19:47:16', 'ndlboPlA', '5813239'), - (444, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'ndlboPlA', '5818247'), - (444, 1833, 'attending', '2022-12-05 19:04:17', '2025-12-17 19:47:16', 'ndlboPlA', '5819465'), - (444, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndlboPlA', '5819471'), - (444, 1837, 'attending', '2022-12-05 19:04:22', '2025-12-17 19:47:16', 'ndlboPlA', '5820146'), - (444, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndlboPlA', '5827739'), - (444, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndlboPlA', '5844306'), - (444, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndlboPlA', '5850159'), - (444, 1848, 'attending', '2022-12-30 17:23:40', '2025-12-17 19:47:05', 'ndlboPlA', '5852466'), - (444, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndlboPlA', '5858999'), - (444, 1852, 'attending', '2023-01-10 19:11:37', '2025-12-17 19:47:05', 'ndlboPlA', '5869898'), - (444, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndlboPlA', '5871984'), - (444, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndlboPlA', '5876354'), - (444, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndlboPlA', '5880939'), - (444, 1867, 'attending', '2023-01-27 05:19:56', '2025-12-17 19:47:07', 'ndlboPlA', '5880940'), - (444, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndlboPlA', '5880942'), - (444, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndlboPlA', '5880943'), - (444, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndlboPlA', '5887890'), - (444, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndlboPlA', '5888598'), - (444, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndlboPlA', '5893260'), - (444, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndlboPlA', '5899826'), - (444, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndlboPlA', '5900199'), - (444, 1890, 'attending', '2023-02-21 17:27:10', '2025-12-17 19:47:08', 'ndlboPlA', '5900200'), - (444, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndlboPlA', '5900202'), - (444, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndlboPlA', '5900203'), - (444, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndlboPlA', '5901108'), - (444, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndlboPlA', '5901126'), - (444, 1898, 'not_attending', '2023-02-01 19:31:20', '2025-12-17 19:47:06', 'ndlboPlA', '5901263'), - (444, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndlboPlA', '5909655'), - (444, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndlboPlA', '5910522'), - (444, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndlboPlA', '5910526'), - (444, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndlboPlA', '5910528'), - (444, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ndlboPlA', '5916219'), - (444, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndlboPlA', '5936234'), - (444, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndlboPlA', '5958351'), - (444, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndlboPlA', '5959751'), - (444, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndlboPlA', '5959755'), - (444, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndlboPlA', '5960055'), - (444, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndlboPlA', '5961684'), - (444, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndlboPlA', '5962132'), - (444, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ndlboPlA', '5962133'), - (444, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndlboPlA', '5962134'), - (444, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndlboPlA', '5962317'), - (444, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndlboPlA', '5962318'), - (444, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndlboPlA', '5965933'), - (444, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndlboPlA', '5967014'), - (444, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndlboPlA', '5972815'), - (444, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndlboPlA', '5974016'), - (444, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndlboPlA', '5981515'), - (444, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndlboPlA', '5993516'), - (444, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndlboPlA', '5998939'), - (444, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndlboPlA', '6028191'), - (444, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndlboPlA', '6040066'), - (444, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndlboPlA', '6042717'), - (444, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndlboPlA', '6044838'), - (444, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndlboPlA', '6044839'), - (444, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ndlboPlA', '6045684'), - (444, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndlboPlA', '6050104'), - (444, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndlboPlA', '6053195'), - (444, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndlboPlA', '6053198'), - (444, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndlboPlA', '6056085'), - (444, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndlboPlA', '6056916'), - (444, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndlboPlA', '6059290'), - (444, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndlboPlA', '6060328'), - (444, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndlboPlA', '6061037'), - (444, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndlboPlA', '6061039'), - (444, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndlboPlA', '6067245'), - (444, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndlboPlA', '6068094'), - (444, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndlboPlA', '6068252'), - (444, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndlboPlA', '6068253'), - (444, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndlboPlA', '6068254'), - (444, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndlboPlA', '6068280'), - (444, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndlboPlA', '6069093'), - (444, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndlboPlA', '6072528'), - (444, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndlboPlA', '6079840'), - (444, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndlboPlA', '6083398'), - (444, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndlboPlA', '6093504'), - (444, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndlboPlA', '6097414'), - (444, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndlboPlA', '6097442'), - (444, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndlboPlA', '6097684'), - (444, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndlboPlA', '6098762'), - (444, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ndlboPlA', '6101361'), - (444, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndlboPlA', '6101362'), - (444, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'ndlboPlA', '6103752'), - (444, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndlboPlA', '6107314'), - (444, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndlboPlA', '6120034'), - (444, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ndlboPlA', '6136733'), - (444, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndlboPlA', '6137989'), - (444, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndlboPlA', '6150864'), - (444, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndlboPlA', '6155491'), - (444, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndlboPlA', '6164417'), - (444, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndlboPlA', '6166388'), - (444, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndlboPlA', '6176439'), - (444, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndlboPlA', '6182410'), - (444, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndlboPlA', '6185812'), - (444, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndlboPlA', '6187651'), - (444, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndlboPlA', '6187963'), - (444, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndlboPlA', '6187964'), - (444, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndlboPlA', '6187966'), - (444, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndlboPlA', '6187967'), - (444, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndlboPlA', '6187969'), - (444, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndlboPlA', '6334878'), - (444, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndlboPlA', '6337236'), - (444, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndlboPlA', '6337970'), - (444, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndlboPlA', '6338308'), - (444, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'ndlboPlA', '6340845'), - (444, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndlboPlA', '6341710'), - (444, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndlboPlA', '6342044'), - (444, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndlboPlA', '6342298'), - (444, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndlboPlA', '6343294'), - (444, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndlboPlA', '6347034'), - (444, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndlboPlA', '6347056'), - (444, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndlboPlA', '6353830'), - (444, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndlboPlA', '6353831'), - (444, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndlboPlA', '6357867'), - (444, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndlboPlA', '6358652'), - (444, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndlboPlA', '6361709'), - (444, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndlboPlA', '6361710'), - (444, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndlboPlA', '6361711'), - (444, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndlboPlA', '6361712'), - (444, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndlboPlA', '6361713'), - (444, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndlboPlA', '6382573'), - (444, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'ndlboPlA', '6388604'), - (444, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndlboPlA', '6394629'), - (444, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndlboPlA', '6394631'), - (444, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndlboPlA', '6440863'), - (444, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndlboPlA', '6445440'), - (444, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndlboPlA', '6453951'), - (444, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndlboPlA', '6461696'), - (444, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndlboPlA', '6462129'), - (444, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndlboPlA', '6463218'), - (444, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ndlboPlA', '6472181'), - (444, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndlboPlA', '6482693'), - (444, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'ndlboPlA', '6484200'), - (444, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndlboPlA', '6484680'), - (444, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndlboPlA', '6507741'), - (444, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndlboPlA', '6514659'), - (444, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndlboPlA', '6514660'), - (444, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndlboPlA', '6519103'), - (444, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndlboPlA', '6535681'), - (444, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndlboPlA', '6584747'), - (444, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndlboPlA', '6587097'), - (444, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndlboPlA', '6609022'), - (444, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndlboPlA', '6632757'), - (444, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndlboPlA', '6644187'), - (444, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndlboPlA', '6648951'), - (444, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndlboPlA', '6648952'), - (444, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndlboPlA', '6655401'), - (444, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndlboPlA', '6661585'), - (444, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndlboPlA', '6661588'), - (444, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndlboPlA', '6661589'), - (444, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndlboPlA', '6699906'), - (444, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndlboPlA', '6701109'), - (444, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndlboPlA', '6705219'), - (444, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndlboPlA', '6710153'), - (444, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndlboPlA', '6711552'), - (444, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'ndlboPlA', '6711553'), - (445, 344, 'attending', '2020-11-02 00:46:01', '2025-12-17 19:47:53', 'ydw70y5d', '3206906'), - (445, 392, 'attending', '2020-10-29 23:51:25', '2025-12-17 19:47:53', 'ydw70y5d', '3236447'), - (445, 422, 'maybe', '2020-10-29 22:54:29', '2025-12-17 19:47:53', 'ydw70y5d', '3245295'), - (445, 423, 'maybe', '2020-11-03 23:17:30', '2025-12-17 19:47:53', 'ydw70y5d', '3245296'), - (445, 429, 'maybe', '2020-12-05 21:22:56', '2025-12-17 19:47:54', 'ydw70y5d', '3250523'), - (445, 438, 'attending', '2020-10-30 02:28:06', '2025-12-17 19:47:53', 'ydw70y5d', '3256163'), - (445, 440, 'not_attending', '2020-11-03 23:17:43', '2025-12-17 19:47:53', 'ydw70y5d', '3256168'), - (445, 441, 'attending', '2020-11-12 03:21:25', '2025-12-17 19:47:54', 'ydw70y5d', '3256169'), - (445, 444, 'attending', '2020-10-30 14:59:51', '2025-12-17 19:47:53', 'ydw70y5d', '3263745'), - (445, 445, 'attending', '2020-11-13 00:30:23', '2025-12-17 19:47:54', 'ydw70y5d', '3266138'), - (445, 448, 'not_attending', '2020-10-31 00:33:46', '2025-12-17 19:47:53', 'ydw70y5d', '3271831'), - (445, 452, 'maybe', '2020-11-29 21:43:02', '2025-12-17 19:47:54', 'ydw70y5d', '3272981'), - (445, 456, 'attending', '2020-11-15 23:22:41', '2025-12-17 19:47:54', 'ydw70y5d', '3276428'), - (445, 459, 'attending', '2020-11-15 23:22:53', '2025-12-17 19:47:54', 'ydw70y5d', '3281467'), - (445, 460, 'maybe', '2020-11-19 22:01:04', '2025-12-17 19:47:54', 'ydw70y5d', '3281468'), - (445, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:54', 'ydw70y5d', '3281470'), - (445, 466, 'attending', '2020-11-23 23:57:10', '2025-12-17 19:47:54', 'ydw70y5d', '3281829'), - (445, 467, 'attending', '2020-11-17 21:37:19', '2025-12-17 19:47:54', 'ydw70y5d', '3282756'), - (445, 468, 'attending', '2020-11-19 22:02:27', '2025-12-17 19:47:54', 'ydw70y5d', '3285413'), - (445, 469, 'attending', '2020-11-26 22:58:00', '2025-12-17 19:47:54', 'ydw70y5d', '3285414'), - (445, 475, 'maybe', '2020-11-24 19:45:02', '2025-12-17 19:47:54', 'ydw70y5d', '3286760'), - (445, 476, 'attending', '2020-11-18 04:33:10', '2025-12-17 19:47:54', 'ydw70y5d', '3286982'), - (445, 479, 'not_attending', '2020-11-19 22:02:12', '2025-12-17 19:47:54', 'ydw70y5d', '3295306'), - (445, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ydw70y5d', '3297764'), - (445, 482, 'not_attending', '2020-11-24 19:44:46', '2025-12-17 19:47:54', 'ydw70y5d', '3297769'), - (445, 486, 'attending', '2020-11-24 23:47:58', '2025-12-17 19:47:54', 'ydw70y5d', '3300281'), - (445, 487, 'not_attending', '2020-11-28 17:23:51', '2025-12-17 19:47:54', 'ydw70y5d', '3311122'), - (445, 488, 'maybe', '2020-11-30 18:33:40', '2025-12-17 19:47:54', 'ydw70y5d', '3312757'), - (445, 489, 'maybe', '2020-11-27 20:34:50', '2025-12-17 19:47:54', 'ydw70y5d', '3313022'), - (445, 493, 'attending', '2020-11-30 00:40:18', '2025-12-17 19:47:54', 'ydw70y5d', '3313856'), - (445, 494, 'attending', '2020-11-29 19:32:52', '2025-12-17 19:47:54', 'ydw70y5d', '3313866'), - (445, 496, 'maybe', '2020-12-07 17:29:54', '2025-12-17 19:47:54', 'ydw70y5d', '3314269'), - (445, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ydw70y5d', '3314909'), - (445, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ydw70y5d', '3314964'), - (445, 501, 'maybe', '2020-12-05 21:23:14', '2025-12-17 19:47:54', 'ydw70y5d', '3317834'), - (445, 502, 'not_attending', '2020-12-12 21:22:20', '2025-12-17 19:47:55', 'ydw70y5d', '3323365'), - (445, 513, 'attending', '2020-12-19 00:21:10', '2025-12-17 19:47:55', 'ydw70y5d', '3329383'), - (445, 526, 'not_attending', '2021-01-02 22:24:03', '2025-12-17 19:47:48', 'ydw70y5d', '3351539'), - (445, 536, 'not_attending', '2021-01-09 23:56:02', '2025-12-17 19:47:48', 'ydw70y5d', '3386848'), - (445, 540, 'attending', '2021-01-07 06:58:15', '2025-12-17 19:47:48', 'ydw70y5d', '3389527'), - (445, 543, 'attending', '2021-01-15 23:37:25', '2025-12-17 19:47:48', 'ydw70y5d', '3396499'), - (445, 548, 'attending', '2021-01-16 20:53:36', '2025-12-17 19:47:48', 'ydw70y5d', '3403650'), - (445, 549, 'maybe', '2021-01-18 18:27:43', '2025-12-17 19:47:49', 'ydw70y5d', '3406988'), - (445, 550, 'maybe', '2021-01-17 20:58:32', '2025-12-17 19:47:48', 'ydw70y5d', '3407018'), - (445, 555, 'attending', '2021-01-23 19:50:18', '2025-12-17 19:47:49', 'ydw70y5d', '3416576'), - (445, 556, 'attending', '2021-01-26 23:27:40', '2025-12-17 19:47:49', 'ydw70y5d', '3417170'), - (445, 557, 'attending', '2021-01-21 00:43:23', '2025-12-17 19:47:49', 'ydw70y5d', '3418748'), - (445, 558, 'attending', '2021-01-22 21:56:02', '2025-12-17 19:47:49', 'ydw70y5d', '3418925'), - (445, 559, 'not_attending', '2021-01-27 17:11:42', '2025-12-17 19:47:49', 'ydw70y5d', '3421439'), - (445, 560, 'not_attending', '2021-01-21 17:45:46', '2025-12-17 19:47:49', 'ydw70y5d', '3421715'), - (445, 567, 'attending', '2021-01-27 00:14:54', '2025-12-17 19:47:50', 'ydw70y5d', '3428895'), - (445, 568, 'attending', '2021-01-27 00:15:02', '2025-12-17 19:47:50', 'ydw70y5d', '3430267'), - (445, 569, 'attending', '2021-01-27 22:11:15', '2025-12-17 19:47:49', 'ydw70y5d', '3432673'), - (445, 570, 'attending', '2021-02-06 00:49:15', '2025-12-17 19:47:50', 'ydw70y5d', '3435538'), - (445, 571, 'maybe', '2021-02-09 21:23:00', '2025-12-17 19:47:50', 'ydw70y5d', '3435539'), - (445, 576, 'attending', '2021-02-02 21:26:26', '2025-12-17 19:47:50', 'ydw70y5d', '3438748'), - (445, 577, 'maybe', '2021-01-29 19:16:32', '2025-12-17 19:47:49', 'ydw70y5d', '3439167'), - (445, 579, 'attending', '2021-02-05 05:04:29', '2025-12-17 19:47:50', 'ydw70y5d', '3440978'), - (445, 598, 'maybe', '2021-02-09 21:21:56', '2025-12-17 19:47:50', 'ydw70y5d', '3468003'), - (445, 599, 'maybe', '2021-02-16 20:40:27', '2025-12-17 19:47:50', 'ydw70y5d', '3468117'), - (445, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'ydw70y5d', '3468125'), - (445, 602, 'attending', '2021-02-13 02:07:34', '2025-12-17 19:47:50', 'ydw70y5d', '3470303'), - (445, 603, 'attending', '2021-02-19 13:13:21', '2025-12-17 19:47:50', 'ydw70y5d', '3470304'), - (445, 604, 'attending', '2021-02-27 13:57:49', '2025-12-17 19:47:50', 'ydw70y5d', '3470305'), - (445, 605, 'attending', '2021-02-14 17:06:24', '2025-12-17 19:47:50', 'ydw70y5d', '3470991'), - (445, 606, 'maybe', '2021-02-11 17:11:41', '2025-12-17 19:47:50', 'ydw70y5d', '3470998'), - (445, 607, 'maybe', '2021-02-19 13:13:27', '2025-12-17 19:47:50', 'ydw70y5d', '3471882'), - (445, 621, 'attending', '2021-03-05 00:53:03', '2025-12-17 19:47:51', 'ydw70y5d', '3517815'), - (445, 622, 'not_attending', '2021-03-13 22:39:53', '2025-12-17 19:47:51', 'ydw70y5d', '3517816'), - (445, 623, 'attending', '2021-02-27 13:57:40', '2025-12-17 19:47:50', 'ydw70y5d', '3523941'), - (445, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ydw70y5d', '3533850'), - (445, 636, 'not_attending', '2021-04-16 02:43:33', '2025-12-17 19:47:45', 'ydw70y5d', '3534720'), - (445, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ydw70y5d', '3536632'), - (445, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ydw70y5d', '3536656'), - (445, 641, 'not_attending', '2021-03-31 22:41:19', '2025-12-17 19:47:44', 'ydw70y5d', '3539916'), - (445, 642, 'not_attending', '2021-04-09 14:34:39', '2025-12-17 19:47:44', 'ydw70y5d', '3539917'), - (445, 643, 'not_attending', '2021-04-16 02:43:41', '2025-12-17 19:47:45', 'ydw70y5d', '3539918'), - (445, 644, 'not_attending', '2021-04-16 02:44:08', '2025-12-17 19:47:46', 'ydw70y5d', '3539919'), - (445, 645, 'not_attending', '2021-05-04 00:19:40', '2025-12-17 19:47:46', 'ydw70y5d', '3539920'), - (445, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ydw70y5d', '3539921'), - (445, 647, 'not_attending', '2021-05-22 21:17:36', '2025-12-17 19:47:47', 'ydw70y5d', '3539922'), - (445, 648, 'not_attending', '2021-05-22 21:18:11', '2025-12-17 19:47:47', 'ydw70y5d', '3539923'), - (445, 649, 'not_attending', '2021-03-20 15:20:09', '2025-12-17 19:47:51', 'ydw70y5d', '3539927'), - (445, 650, 'not_attending', '2021-03-27 17:05:21', '2025-12-17 19:47:44', 'ydw70y5d', '3539928'), - (445, 684, 'not_attending', '2021-03-12 23:15:39', '2025-12-17 19:47:51', 'ydw70y5d', '3549257'), - (445, 687, 'not_attending', '2021-03-11 22:03:15', '2025-12-17 19:47:51', 'ydw70y5d', '3553405'), - (445, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ydw70y5d', '3582734'), - (445, 707, 'not_attending', '2021-04-22 19:03:26', '2025-12-17 19:47:46', 'ydw70y5d', '3583262'), - (445, 715, 'not_attending', '2021-03-31 22:40:52', '2025-12-17 19:47:44', 'ydw70y5d', '3604146'), - (445, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydw70y5d', '3619523'), - (445, 722, 'not_attending', '2021-03-31 22:41:10', '2025-12-17 19:47:44', 'ydw70y5d', '3646347'), - (445, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydw70y5d', '3661369'), - (445, 725, 'not_attending', '2021-05-22 21:17:44', '2025-12-17 19:47:47', 'ydw70y5d', '3661372'), - (445, 729, 'not_attending', '2021-04-22 19:03:46', '2025-12-17 19:47:46', 'ydw70y5d', '3668075'), - (445, 730, 'not_attending', '2021-05-04 00:19:21', '2025-12-17 19:47:46', 'ydw70y5d', '3668076'), - (445, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydw70y5d', '3674262'), - (445, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydw70y5d', '3677402'), - (445, 736, 'not_attending', '2021-04-09 14:34:33', '2025-12-17 19:47:44', 'ydw70y5d', '3677701'), - (445, 739, 'not_attending', '2021-05-04 00:19:34', '2025-12-17 19:47:46', 'ydw70y5d', '3680616'), - (445, 740, 'not_attending', '2021-04-22 19:03:53', '2025-12-17 19:47:46', 'ydw70y5d', '3680617'), - (445, 745, 'not_attending', '2021-06-26 22:39:47', '2025-12-17 19:47:38', 'ydw70y5d', '3680625'), - (445, 746, 'not_attending', '2021-07-03 20:23:58', '2025-12-17 19:47:39', 'ydw70y5d', '3680626'), - (445, 764, 'not_attending', '2021-04-22 19:03:14', '2025-12-17 19:47:45', 'ydw70y5d', '3720507'), - (445, 765, 'not_attending', '2021-04-22 19:03:20', '2025-12-17 19:47:45', 'ydw70y5d', '3720508'), - (445, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydw70y5d', '3730212'), - (445, 781, 'not_attending', '2021-05-04 00:19:26', '2025-12-17 19:47:46', 'ydw70y5d', '3760130'), - (445, 782, 'not_attending', '2021-05-04 00:19:15', '2025-12-17 19:47:46', 'ydw70y5d', '3761843'), - (445, 784, 'not_attending', '2021-05-04 00:19:30', '2025-12-17 19:47:46', 'ydw70y5d', '3768775'), - (445, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydw70y5d', '3793156'), - (445, 794, 'not_attending', '2021-05-22 21:17:58', '2025-12-17 19:47:47', 'ydw70y5d', '3793538'), - (445, 797, 'not_attending', '2021-05-22 21:17:53', '2025-12-17 19:47:47', 'ydw70y5d', '3796195'), - (445, 815, 'not_attending', '2021-05-22 21:18:06', '2025-12-17 19:47:47', 'ydw70y5d', '3818136'), - (445, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ydw70y5d', '3974109'), - (445, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydw70y5d', '3975311'), - (445, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydw70y5d', '3975312'), - (445, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydw70y5d', '3994992'), - (445, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ydw70y5d', '4014338'), - (445, 845, 'not_attending', '2021-06-26 22:39:32', '2025-12-17 19:47:38', 'ydw70y5d', '4015717'), - (445, 846, 'not_attending', '2021-07-03 20:23:48', '2025-12-17 19:47:39', 'ydw70y5d', '4015718'), - (445, 848, 'not_attending', '2021-07-17 19:52:06', '2025-12-17 19:47:40', 'ydw70y5d', '4015720'), - (445, 850, 'not_attending', '2021-08-21 17:28:48', '2025-12-17 19:47:42', 'ydw70y5d', '4015722'), - (445, 851, 'not_attending', '2021-08-14 19:44:37', '2025-12-17 19:47:42', 'ydw70y5d', '4015723'), - (445, 854, 'not_attending', '2021-09-03 20:31:01', '2025-12-17 19:47:43', 'ydw70y5d', '4015726'), - (445, 855, 'not_attending', '2021-07-31 13:57:59', '2025-12-17 19:47:41', 'ydw70y5d', '4015729'), - (445, 860, 'not_attending', '2021-07-17 19:51:53', '2025-12-17 19:47:40', 'ydw70y5d', '4015994'), - (445, 861, 'not_attending', '2021-08-14 19:44:15', '2025-12-17 19:47:42', 'ydw70y5d', '4015995'), - (445, 863, 'not_attending', '2021-10-08 21:28:22', '2025-12-17 19:47:35', 'ydw70y5d', '4015997'), - (445, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ydw70y5d', '4021848'), - (445, 869, 'not_attending', '2021-06-26 22:39:28', '2025-12-17 19:47:38', 'ydw70y5d', '4136744'), - (445, 870, 'not_attending', '2021-06-26 22:39:52', '2025-12-17 19:47:39', 'ydw70y5d', '4136937'), - (445, 871, 'not_attending', '2021-07-03 20:23:31', '2025-12-17 19:47:39', 'ydw70y5d', '4136938'), - (445, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydw70y5d', '4136947'), - (445, 875, 'not_attending', '2021-06-26 22:39:41', '2025-12-17 19:47:38', 'ydw70y5d', '4139816'), - (445, 879, 'not_attending', '2021-06-26 22:39:20', '2025-12-17 19:47:38', 'ydw70y5d', '4147806'), - (445, 884, 'not_attending', '2021-08-14 19:44:07', '2025-12-17 19:47:42', 'ydw70y5d', '4210314'), - (445, 885, 'not_attending', '2021-06-26 22:39:13', '2025-12-17 19:47:38', 'ydw70y5d', '4222370'), - (445, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydw70y5d', '4225444'), - (445, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydw70y5d', '4239259'), - (445, 900, 'not_attending', '2021-07-17 19:52:17', '2025-12-17 19:47:40', 'ydw70y5d', '4240316'), - (445, 901, 'not_attending', '2021-07-31 13:57:36', '2025-12-17 19:47:40', 'ydw70y5d', '4240317'), - (445, 902, 'not_attending', '2021-07-31 13:58:14', '2025-12-17 19:47:41', 'ydw70y5d', '4240318'), - (445, 903, 'not_attending', '2021-08-14 19:43:58', '2025-12-17 19:47:42', 'ydw70y5d', '4240320'), - (445, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ydw70y5d', '4250163'), - (445, 915, 'not_attending', '2021-07-17 19:51:46', '2025-12-17 19:47:39', 'ydw70y5d', '4273770'), - (445, 919, 'not_attending', '2021-07-17 19:51:36', '2025-12-17 19:47:39', 'ydw70y5d', '4275957'), - (445, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydw70y5d', '4277819'), - (445, 926, 'not_attending', '2021-08-14 19:44:44', '2025-12-17 19:47:42', 'ydw70y5d', '4297211'), - (445, 929, 'not_attending', '2021-07-31 13:58:07', '2025-12-17 19:47:41', 'ydw70y5d', '4297223'), - (445, 930, 'not_attending', '2021-07-31 13:57:44', '2025-12-17 19:47:41', 'ydw70y5d', '4300787'), - (445, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydw70y5d', '4301723'), - (445, 934, 'not_attending', '2021-07-31 13:57:56', '2025-12-17 19:47:40', 'ydw70y5d', '4302093'), - (445, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydw70y5d', '4304151'), - (445, 946, 'not_attending', '2021-07-31 13:57:49', '2025-12-17 19:47:40', 'ydw70y5d', '4314835'), - (445, 952, 'not_attending', '2021-07-31 13:58:04', '2025-12-17 19:47:41', 'ydw70y5d', '4318286'), - (445, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'ydw70y5d', '4345519'), - (445, 963, 'not_attending', '2021-08-14 19:44:26', '2025-12-17 19:47:42', 'ydw70y5d', '4353159'), - (445, 964, 'not_attending', '2021-08-14 19:45:17', '2025-12-17 19:47:42', 'ydw70y5d', '4353160'), - (445, 967, 'not_attending', '2021-08-14 19:44:51', '2025-12-17 19:47:42', 'ydw70y5d', '4356164'), - (445, 971, 'not_attending', '2021-09-03 20:31:04', '2025-12-17 19:47:43', 'ydw70y5d', '4356801'), - (445, 972, 'not_attending', '2021-08-14 19:45:01', '2025-12-17 19:47:42', 'ydw70y5d', '4358025'), - (445, 973, 'not_attending', '2021-08-21 17:28:22', '2025-12-17 19:47:42', 'ydw70y5d', '4366186'), - (445, 974, 'not_attending', '2021-08-21 17:28:58', '2025-12-17 19:47:42', 'ydw70y5d', '4366187'), - (445, 985, 'not_attending', '2021-08-21 17:28:31', '2025-12-17 19:47:42', 'ydw70y5d', '4391748'), - (445, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ydw70y5d', '4402823'), - (445, 989, 'not_attending', '2021-09-03 20:31:16', '2025-12-17 19:47:43', 'ydw70y5d', '4414282'), - (445, 990, 'not_attending', '2021-09-03 20:30:41', '2025-12-17 19:47:43', 'ydw70y5d', '4420735'), - (445, 991, 'not_attending', '2021-09-03 20:31:23', '2025-12-17 19:47:43', 'ydw70y5d', '4420738'), - (445, 992, 'not_attending', '2021-09-17 20:23:31', '2025-12-17 19:47:34', 'ydw70y5d', '4420739'), - (445, 993, 'not_attending', '2021-09-17 20:24:12', '2025-12-17 19:47:34', 'ydw70y5d', '4420741'), - (445, 995, 'not_attending', '2021-10-08 21:27:54', '2025-12-17 19:47:34', 'ydw70y5d', '4420744'), - (445, 996, 'not_attending', '2021-10-08 21:28:27', '2025-12-17 19:47:35', 'ydw70y5d', '4420747'), - (445, 997, 'not_attending', '2021-10-22 23:46:34', '2025-12-17 19:47:35', 'ydw70y5d', '4420748'), - (445, 998, 'not_attending', '2021-10-22 23:46:47', '2025-12-17 19:47:36', 'ydw70y5d', '4420749'), - (445, 1001, 'not_attending', '2021-09-03 20:30:25', '2025-12-17 19:47:43', 'ydw70y5d', '4424687'), - (445, 1013, 'not_attending', '2021-09-03 20:30:56', '2025-12-17 19:47:43', 'ydw70y5d', '4438817'), - (445, 1014, 'not_attending', '2021-09-03 20:30:48', '2025-12-17 19:47:43', 'ydw70y5d', '4439233'), - (445, 1016, 'not_attending', '2021-09-03 20:31:10', '2025-12-17 19:47:43', 'ydw70y5d', '4441271'), - (445, 1017, 'not_attending', '2021-09-03 20:30:51', '2025-12-17 19:47:43', 'ydw70y5d', '4441822'), - (445, 1021, 'not_attending', '2021-09-17 20:23:48', '2025-12-17 19:47:34', 'ydw70y5d', '4451803'), - (445, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ydw70y5d', '4461883'), - (445, 1029, 'not_attending', '2021-09-17 20:23:17', '2025-12-17 19:47:43', 'ydw70y5d', '4473063'), - (445, 1030, 'not_attending', '2021-09-17 20:23:42', '2025-12-17 19:47:34', 'ydw70y5d', '4473064'), - (445, 1031, 'not_attending', '2021-09-17 20:24:00', '2025-12-17 19:47:34', 'ydw70y5d', '4473789'), - (445, 1034, 'not_attending', '2021-09-17 20:23:24', '2025-12-17 19:47:43', 'ydw70y5d', '4486265'), - (445, 1063, 'not_attending', '2021-09-24 22:09:21', '2025-12-17 19:47:34', 'ydw70y5d', '4496630'), - (445, 1066, 'not_attending', '2021-09-24 22:09:16', '2025-12-17 19:47:34', 'ydw70y5d', '4506039'), - (445, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ydw70y5d', '4508342'), - (445, 1077, 'not_attending', '2021-10-08 21:28:14', '2025-12-17 19:47:34', 'ydw70y5d', '4540903'), - (445, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ydw70y5d', '4568602'), - (445, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ydw70y5d', '4572153'), - (445, 1093, 'not_attending', '2021-10-22 23:46:23', '2025-12-17 19:47:35', 'ydw70y5d', '4585962'), - (445, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'ydw70y5d', '4596356'), - (445, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ydw70y5d', '4598860'), - (445, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ydw70y5d', '4598861'), - (445, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ydw70y5d', '4602797'), - (445, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ydw70y5d', '4637896'), - (445, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ydw70y5d', '4642994'), - (445, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'ydw70y5d', '4642995'), - (445, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ydw70y5d', '4642996'), - (445, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ydw70y5d', '4642997'), - (445, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ydw70y5d', '4645687'), - (445, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ydw70y5d', '4645698'), - (445, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ydw70y5d', '4645704'), - (445, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ydw70y5d', '4645705'), - (445, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ydw70y5d', '4668385'), - (445, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ydw70y5d', '4694407'), - (445, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ydw70y5d', '4736497'), - (445, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ydw70y5d', '4736499'), - (445, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ydw70y5d', '4736500'), - (445, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ydw70y5d', '4736503'), - (445, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ydw70y5d', '4736504'), - (445, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ydw70y5d', '4746789'), - (445, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'ydw70y5d', '4753929'), - (445, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ydw70y5d', '5038850'), - (445, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ydw70y5d', '5045826'), - (445, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ydw70y5d', '5132533'), - (445, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ydw70y5d', '5186582'), - (445, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ydw70y5d', '5186583'), - (445, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ydw70y5d', '5186585'), - (445, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ydw70y5d', '5190437'), - (445, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ydw70y5d', '5215989'), - (445, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydw70y5d', '6045684'), - (446, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVkr9Epm', '5630960'), - (446, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVkr9Epm', '5630961'), - (446, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVkr9Epm', '5630962'), - (446, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVkr9Epm', '5630966'), - (446, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVkr9Epm', '5630967'), - (446, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVkr9Epm', '5630968'), - (446, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'dVkr9Epm', '5638765'), - (446, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVkr9Epm', '5640097'), - (446, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVkr9Epm', '5642818'), - (446, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVkr9Epm', '5671637'), - (446, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVkr9Epm', '5672329'), - (446, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVkr9Epm', '5674057'), - (446, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVkr9Epm', '5674060'), - (446, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVkr9Epm', '5677461'), - (446, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVkr9Epm', '5698046'), - (446, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dVkr9Epm', '5699760'), - (446, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVkr9Epm', '5741601'), - (446, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVkr9Epm', '5763458'), - (446, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVkr9Epm', '5774172'), - (446, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVkr9Epm', '6045684'), - (447, 403, 'attending', '2021-02-26 12:41:34', '2025-12-17 19:47:51', 'v4D3kbyA', '3236458'), - (447, 574, 'maybe', '2021-03-05 04:14:36', '2025-12-17 19:47:51', 'v4D3kbyA', '3435543'), - (447, 621, 'attending', '2021-03-03 11:04:21', '2025-12-17 19:47:51', 'v4D3kbyA', '3517815'), - (447, 622, 'attending', '2021-03-11 12:23:29', '2025-12-17 19:47:51', 'v4D3kbyA', '3517816'), - (447, 623, 'maybe', '2021-02-26 11:26:37', '2025-12-17 19:47:51', 'v4D3kbyA', '3523941'), - (447, 630, 'maybe', '2021-03-02 03:12:23', '2025-12-17 19:47:51', 'v4D3kbyA', '3533425'), - (447, 631, 'attending', '2021-03-03 11:04:13', '2025-12-17 19:47:51', 'v4D3kbyA', '3533850'), - (447, 638, 'maybe', '2021-03-03 11:08:14', '2025-12-17 19:47:44', 'v4D3kbyA', '3536632'), - (447, 639, 'attending', '2021-03-21 21:14:45', '2025-12-17 19:47:51', 'v4D3kbyA', '3536656'), - (447, 641, 'maybe', '2021-04-02 21:56:14', '2025-12-17 19:47:44', 'v4D3kbyA', '3539916'), - (447, 642, 'attending', '2021-04-10 22:27:28', '2025-12-17 19:47:44', 'v4D3kbyA', '3539917'), - (447, 643, 'maybe', '2021-04-17 20:51:29', '2025-12-17 19:47:45', 'v4D3kbyA', '3539918'), - (447, 644, 'maybe', '2021-04-24 19:30:17', '2025-12-17 19:47:46', 'v4D3kbyA', '3539919'), - (447, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'v4D3kbyA', '3539920'), - (447, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'v4D3kbyA', '3539921'), - (447, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'v4D3kbyA', '3539922'), - (447, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'v4D3kbyA', '3539923'), - (447, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4D3kbyA', '3539927'), - (447, 679, 'maybe', '2021-04-02 21:57:12', '2025-12-17 19:47:44', 'v4D3kbyA', '3547168'), - (447, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4D3kbyA', '3582734'), - (447, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'v4D3kbyA', '3583262'), - (447, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4D3kbyA', '3619523'), - (447, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'v4D3kbyA', '3661369'), - (447, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'v4D3kbyA', '3674262'), - (447, 735, 'maybe', '2021-04-10 19:17:06', '2025-12-17 19:47:46', 'v4D3kbyA', '3677402'), - (447, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'v4D3kbyA', '3730212'), - (447, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'v4D3kbyA', '3793156'), - (447, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'v4D3kbyA', '3974109'), - (447, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'v4D3kbyA', '3975311'), - (447, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'v4D3kbyA', '3975312'), - (447, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'v4D3kbyA', '3994992'), - (447, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4D3kbyA', '4014338'), - (447, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'v4D3kbyA', '4021848'), - (447, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4D3kbyA', '4136744'), - (447, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'v4D3kbyA', '4136937'), - (447, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'v4D3kbyA', '4136938'), - (447, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'v4D3kbyA', '4136947'), - (447, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'v4D3kbyA', '4210314'), - (447, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4D3kbyA', '4225444'), - (447, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'v4D3kbyA', '4239259'), - (447, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'v4D3kbyA', '4240316'), - (447, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'v4D3kbyA', '4240317'), - (447, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'v4D3kbyA', '4240318'), - (447, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'v4D3kbyA', '4240320'), - (447, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4D3kbyA', '4250163'), - (447, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'v4D3kbyA', '4275957'), - (447, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'v4D3kbyA', '4277819'), - (447, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'v4D3kbyA', '4301723'), - (447, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'v4D3kbyA', '4302093'), - (447, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'v4D3kbyA', '4304151'), - (447, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'v4D3kbyA', '4345519'), - (447, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'v4D3kbyA', '4356801'), - (447, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'v4D3kbyA', '4358025'), - (447, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'v4D3kbyA', '4366186'), - (447, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'v4D3kbyA', '4366187'), - (447, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'v4D3kbyA', '4402823'), - (447, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'v4D3kbyA', '4420735'), - (447, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'v4D3kbyA', '4420738'), - (447, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'v4D3kbyA', '4420739'), - (447, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'v4D3kbyA', '4420741'), - (447, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'v4D3kbyA', '4420744'), - (447, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'v4D3kbyA', '4420747'), - (447, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'v4D3kbyA', '4420748'), - (447, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'v4D3kbyA', '4420749'), - (447, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'v4D3kbyA', '4461883'), - (447, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'v4D3kbyA', '4508342'), - (447, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'v4D3kbyA', '4568602'), - (447, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'v4D3kbyA', '4572153'), - (447, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'v4D3kbyA', '4585962'), - (447, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'v4D3kbyA', '4596356'), - (447, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'v4D3kbyA', '4598860'), - (447, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'v4D3kbyA', '4598861'), - (447, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'v4D3kbyA', '4602797'), - (447, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'v4D3kbyA', '4637896'), - (447, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'v4D3kbyA', '4642994'), - (447, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'v4D3kbyA', '4642995'), - (447, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'v4D3kbyA', '4642996'), - (447, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'v4D3kbyA', '4642997'), - (447, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'v4D3kbyA', '4645687'), - (447, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'v4D3kbyA', '4645698'), - (447, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'v4D3kbyA', '4645704'), - (447, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'v4D3kbyA', '4645705'), - (447, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'v4D3kbyA', '4668385'), - (447, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'v4D3kbyA', '4694407'), - (447, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'v4D3kbyA', '4736497'), - (447, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'v4D3kbyA', '4736499'), - (447, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'v4D3kbyA', '4736500'), - (447, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'v4D3kbyA', '4736503'), - (447, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'v4D3kbyA', '4736504'), - (447, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'v4D3kbyA', '4746789'), - (447, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'v4D3kbyA', '4753929'), - (447, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4D3kbyA', '5038850'), - (447, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4D3kbyA', '5045826'), - (447, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4D3kbyA', '5132533'), - (447, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'v4D3kbyA', '5186582'), - (447, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'v4D3kbyA', '5186583'), - (447, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'v4D3kbyA', '5186585'), - (447, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4D3kbyA', '5190437'), - (447, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4D3kbyA', '5215989'), - (447, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4D3kbyA', '6045684'), - (448, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd8L1qKVd', '7074364'), - (448, 2604, 'maybe', '2024-05-29 03:15:47', '2025-12-17 19:46:36', 'd8L1qKVd', '7225670'), - (448, 2646, 'maybe', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'd8L1qKVd', '7281768'), - (448, 2654, 'attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'd8L1qKVd', '7291219'), - (448, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd8L1qKVd', '7302674'), - (448, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd8L1qKVd', '7324073'), - (448, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd8L1qKVd', '7324074'), - (448, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd8L1qKVd', '7324075'), - (448, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd8L1qKVd', '7324078'), - (448, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd8L1qKVd', '7324082'), - (448, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd8L1qKVd', '7331457'), - (448, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd8L1qKVd', '7363643'), - (448, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd8L1qKVd', '7368606'), - (448, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd8L1qKVd', '7397462'), - (448, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd8L1qKVd', '7424275'), - (448, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd8L1qKVd', '7424276'), - (448, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd8L1qKVd', '7432751'), - (448, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd8L1qKVd', '7432752'), - (448, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd8L1qKVd', '7432753'), - (448, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd8L1qKVd', '7432754'), - (448, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd8L1qKVd', '7432755'), - (448, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd8L1qKVd', '7432756'), - (448, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd8L1qKVd', '7432758'), - (448, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd8L1qKVd', '7432759'), - (448, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd8L1qKVd', '7433834'), - (448, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd8L1qKVd', '7470197'), - (448, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd8L1qKVd', '7685613'), - (448, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd8L1qKVd', '7688194'), - (448, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd8L1qKVd', '7688196'), - (448, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd8L1qKVd', '7688289'), - (449, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '40YY7OVd', '7424275'), - (449, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', '40YY7OVd', '7432753'), - (449, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', '40YY7OVd', '7432756'), - (449, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', '40YY7OVd', '7432758'), - (449, 2843, 'maybe', '2024-09-26 21:36:11', '2025-12-17 19:46:25', '40YY7OVd', '7450219'), - (449, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '40YY7OVd', '7470197'), - (449, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', '40YY7OVd', '7682072'), - (449, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '40YY7OVd', '7685613'), - (449, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '40YY7OVd', '7688194'), - (449, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '40YY7OVd', '7688196'), - (449, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '40YY7OVd', '7688289'), - (450, 258, 'maybe', '2021-06-01 22:09:23', '2025-12-17 19:47:47', 'Md3a2MGA', '3149489'), - (450, 260, 'not_attending', '2021-06-12 12:07:52', '2025-12-17 19:47:48', 'Md3a2MGA', '3149491'), - (450, 393, 'not_attending', '2021-06-24 14:35:24', '2025-12-17 19:47:38', 'Md3a2MGA', '3236448'), - (450, 395, 'not_attending', '2021-06-09 15:39:25', '2025-12-17 19:47:47', 'Md3a2MGA', '3236450'), - (450, 658, 'not_attending', '2021-06-09 15:40:02', '2025-12-17 19:47:47', 'Md3a2MGA', '3547134'), - (450, 670, 'not_attending', '2021-06-16 20:24:51', '2025-12-17 19:47:48', 'Md3a2MGA', '3547148'), - (450, 727, 'not_attending', '2021-06-20 21:10:06', '2025-12-17 19:47:38', 'Md3a2MGA', '3661377'), - (450, 742, 'not_attending', '2021-06-16 20:24:12', '2025-12-17 19:47:48', 'Md3a2MGA', '3680622'), - (450, 744, 'not_attending', '2021-06-09 15:40:09', '2025-12-17 19:47:47', 'Md3a2MGA', '3680624'), - (450, 793, 'attending', '2021-06-02 23:22:53', '2025-12-17 19:47:47', 'Md3a2MGA', '3793537'), - (450, 795, 'not_attending', '2021-06-06 19:13:28', '2025-12-17 19:47:47', 'Md3a2MGA', '3793539'), - (450, 805, 'not_attending', '2021-06-12 12:07:25', '2025-12-17 19:47:47', 'Md3a2MGA', '3804777'), - (450, 818, 'not_attending', '2021-06-01 22:09:27', '2025-12-17 19:47:47', 'Md3a2MGA', '3833015'), - (450, 822, 'not_attending', '2021-06-06 16:01:12', '2025-12-17 19:47:47', 'Md3a2MGA', '3969986'), - (450, 823, 'not_attending', '2021-06-18 16:10:04', '2025-12-17 19:47:48', 'Md3a2MGA', '3974109'), - (450, 824, 'attending', '2021-06-03 12:46:50', '2025-12-17 19:47:47', 'Md3a2MGA', '3974112'), - (450, 825, 'attending', '2021-06-08 20:33:18', '2025-12-17 19:47:47', 'Md3a2MGA', '3975283'), - (450, 826, 'maybe', '2021-06-12 12:08:21', '2025-12-17 19:47:48', 'Md3a2MGA', '3975310'), - (450, 827, 'attending', '2021-06-02 03:50:44', '2025-12-17 19:47:47', 'Md3a2MGA', '3975311'), - (450, 828, 'attending', '2021-06-12 22:36:25', '2025-12-17 19:47:47', 'Md3a2MGA', '3975312'), - (450, 830, 'not_attending', '2021-06-02 19:21:26', '2025-12-17 19:47:47', 'Md3a2MGA', '3976648'), - (450, 831, 'not_attending', '2021-06-02 19:21:40', '2025-12-17 19:47:47', 'Md3a2MGA', '3976649'), - (450, 832, 'not_attending', '2021-06-02 19:21:46', '2025-12-17 19:47:47', 'Md3a2MGA', '3976650'), - (450, 833, 'attending', '2021-06-07 21:34:56', '2025-12-17 19:47:47', 'Md3a2MGA', '3990438'), - (450, 834, 'maybe', '2021-06-07 15:32:56', '2025-12-17 19:47:47', 'Md3a2MGA', '3990439'), - (450, 835, 'not_attending', '2021-06-06 22:47:13', '2025-12-17 19:47:47', 'Md3a2MGA', '3992486'), - (450, 837, 'attending', '2021-06-04 16:11:07', '2025-12-17 19:47:48', 'Md3a2MGA', '3992545'), - (450, 838, 'maybe', '2021-06-06 18:47:14', '2025-12-17 19:47:47', 'Md3a2MGA', '3994992'), - (450, 839, 'not_attending', '2021-06-07 15:05:20', '2025-12-17 19:47:47', 'Md3a2MGA', '4002121'), - (450, 840, 'attending', '2021-06-08 00:57:12', '2025-12-17 19:47:47', 'Md3a2MGA', '4007283'), - (450, 841, 'maybe', '2021-06-12 12:07:38', '2025-12-17 19:47:48', 'Md3a2MGA', '4007434'), - (450, 843, 'not_attending', '2021-06-11 22:48:02', '2025-12-17 19:47:47', 'Md3a2MGA', '4011909'), - (450, 844, 'not_attending', '2021-06-23 21:20:29', '2025-12-17 19:47:38', 'Md3a2MGA', '4014338'), - (450, 866, 'not_attending', '2021-06-18 23:45:28', '2025-12-17 19:47:38', 'Md3a2MGA', '4020424'), - (450, 867, 'not_attending', '2021-06-26 01:52:55', '2025-12-17 19:47:38', 'Md3a2MGA', '4021848'), - (450, 868, 'not_attending', '2021-06-16 20:23:11', '2025-12-17 19:47:48', 'Md3a2MGA', '4022012'), - (450, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Md3a2MGA', '4136744'), - (450, 870, 'not_attending', '2021-06-30 15:26:25', '2025-12-17 19:47:39', 'Md3a2MGA', '4136937'), - (450, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Md3a2MGA', '4136938'), - (450, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Md3a2MGA', '4136947'), - (450, 873, 'not_attending', '2021-06-16 20:24:56', '2025-12-17 19:47:48', 'Md3a2MGA', '4138297'), - (450, 874, 'not_attending', '2021-06-24 14:35:29', '2025-12-17 19:47:38', 'Md3a2MGA', '4139815'), - (450, 876, 'not_attending', '2021-06-22 14:42:05', '2025-12-17 19:47:38', 'Md3a2MGA', '4139926'), - (450, 877, 'not_attending', '2021-06-16 20:22:31', '2025-12-17 19:47:48', 'Md3a2MGA', '4140575'), - (450, 878, 'not_attending', '2021-06-20 21:10:15', '2025-12-17 19:47:38', 'Md3a2MGA', '4143331'), - (450, 880, 'not_attending', '2021-06-18 16:09:58', '2025-12-17 19:47:48', 'Md3a2MGA', '4205383'), - (450, 881, 'not_attending', '2021-06-20 21:10:19', '2025-12-17 19:47:38', 'Md3a2MGA', '4205662'), - (450, 883, 'not_attending', '2021-06-22 14:42:08', '2025-12-17 19:47:38', 'Md3a2MGA', '4209121'), - (450, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Md3a2MGA', '4210314'), - (450, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Md3a2MGA', '4225444'), - (450, 899, 'not_attending', '2021-07-02 13:55:40', '2025-12-17 19:47:39', 'Md3a2MGA', '4239259'), - (450, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Md3a2MGA', '4240316'), - (450, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Md3a2MGA', '4240317'), - (450, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Md3a2MGA', '4240318'), - (450, 905, 'not_attending', '2021-07-04 16:02:09', '2025-12-17 19:47:39', 'Md3a2MGA', '4250163'), - (450, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Md3a2MGA', '4275957'), - (450, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Md3a2MGA', '4277819'), - (450, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Md3a2MGA', '4301723'), - (450, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Md3a2MGA', '4302093'), - (450, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Md3a2MGA', '6045684'), - (451, 2304, 'not_attending', '2023-11-04 02:24:08', '2025-12-17 19:46:47', 'mRrE1lom', '6482693'), - (451, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mRrE1lom', '6484200'), - (451, 2310, 'maybe', '2023-11-11 21:44:53', '2025-12-17 19:46:47', 'mRrE1lom', '6487709'), - (451, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mRrE1lom', '6514659'), - (451, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mRrE1lom', '6514660'), - (451, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mRrE1lom', '6519103'), - (451, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mRrE1lom', '6535681'), - (451, 2342, 'maybe', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mRrE1lom', '6545076'), - (451, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mRrE1lom', '6584747'), - (451, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mRrE1lom', '6587097'), - (451, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mRrE1lom', '6609022'), - (451, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mRrE1lom', '6632757'), - (451, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mRrE1lom', '6644187'), - (451, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mRrE1lom', '6648951'), - (451, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mRrE1lom', '6648952'), - (451, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mRrE1lom', '6655401'), - (451, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mRrE1lom', '6661585'), - (451, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mRrE1lom', '6661588'), - (451, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mRrE1lom', '6661589'), - (451, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mRrE1lom', '6699906'), - (451, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mRrE1lom', '6699913'), - (451, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mRrE1lom', '6701109'), - (451, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mRrE1lom', '6705219'), - (451, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mRrE1lom', '6710153'), - (451, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mRrE1lom', '6711552'), - (451, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mRrE1lom', '6711553'), - (451, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mRrE1lom', '6722688'), - (451, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mRrE1lom', '6730620'), - (451, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mRrE1lom', '6730642'), - (451, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mRrE1lom', '6740364'), - (451, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mRrE1lom', '6743829'), - (451, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mRrE1lom', '7030380'), - (451, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mRrE1lom', '7033677'), - (451, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mRrE1lom', '7035415'), - (451, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mRrE1lom', '7044715'), - (451, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mRrE1lom', '7050318'), - (451, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mRrE1lom', '7050319'), - (451, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mRrE1lom', '7050322'), - (451, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mRrE1lom', '7057804'), - (451, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'mRrE1lom', '7059866'), - (451, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mRrE1lom', '7072824'), - (451, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mRrE1lom', '7074348'), - (451, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mRrE1lom', '7089267'), - (451, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mRrE1lom', '7098747'), - (451, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mRrE1lom', '7113468'), - (451, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mRrE1lom', '7114856'), - (451, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mRrE1lom', '7114951'), - (451, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mRrE1lom', '7114955'), - (451, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mRrE1lom', '7114956'), - (451, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mRrE1lom', '7153615'), - (451, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mRrE1lom', '7159484'), - (451, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mRrE1lom', '7178446'), - (452, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mR1NrPYd', '7324078'), - (452, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mR1NrPYd', '7324082'), - (452, 2722, 'not_attending', '2024-07-12 22:43:28', '2025-12-17 19:46:30', 'mR1NrPYd', '7331457'), - (452, 2757, 'attending', '2024-07-14 01:57:01', '2025-12-17 19:46:30', 'mR1NrPYd', '7358733'), - (452, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mR1NrPYd', '7363643'), - (452, 2769, 'not_attending', '2024-07-19 20:02:06', '2025-12-17 19:46:30', 'mR1NrPYd', '7366803'), - (452, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mR1NrPYd', '7368606'), - (452, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mR1NrPYd', '7397462'), - (452, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mR1NrPYd', '7424275'), - (452, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mR1NrPYd', '7432751'), - (452, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mR1NrPYd', '7432752'), - (452, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mR1NrPYd', '7432753'), - (452, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mR1NrPYd', '7432754'), - (452, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mR1NrPYd', '7432755'), - (452, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mR1NrPYd', '7432756'), - (452, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mR1NrPYd', '7432758'), - (452, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mR1NrPYd', '7432759'), - (452, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mR1NrPYd', '7433834'), - (452, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mR1NrPYd', '7470197'), - (452, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mR1NrPYd', '7685613'), - (452, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mR1NrPYd', '7688194'), - (452, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mR1NrPYd', '7688196'), - (452, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mR1NrPYd', '7688289'), - (453, 250, 'attending', '2021-02-07 20:20:42', '2025-12-17 19:47:50', '54kMebXm', '3149481'), - (453, 251, 'maybe', '2021-01-23 22:53:45', '2025-12-17 19:47:49', '54kMebXm', '3149482'), - (453, 252, 'attending', '2021-02-07 20:23:02', '2025-12-17 19:47:50', '54kMebXm', '3149483'), - (453, 254, 'maybe', '2021-03-10 00:37:07', '2025-12-17 19:47:51', '54kMebXm', '3149485'), - (453, 400, 'attending', '2021-02-03 20:38:20', '2025-12-17 19:47:50', '54kMebXm', '3236455'), - (453, 403, 'attending', '2021-02-07 20:23:37', '2025-12-17 19:47:51', '54kMebXm', '3236458'), - (453, 408, 'attending', '2021-02-07 20:22:46', '2025-12-17 19:47:50', '54kMebXm', '3236466'), - (453, 509, 'maybe', '2021-01-16 04:25:16', '2025-12-17 19:47:49', '54kMebXm', '3324232'), - (453, 510, 'maybe', '2021-01-23 22:54:09', '2025-12-17 19:47:49', '54kMebXm', '3324233'), - (453, 536, 'attending', '2021-01-09 23:36:53', '2025-12-17 19:47:48', '54kMebXm', '3386848'), - (453, 540, 'maybe', '2021-01-10 16:36:51', '2025-12-17 19:47:48', '54kMebXm', '3389527'), - (453, 542, 'attending', '2021-01-11 21:25:48', '2025-12-17 19:47:48', '54kMebXm', '3395013'), - (453, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '54kMebXm', '3396499'), - (453, 545, 'maybe', '2021-01-16 04:24:50', '2025-12-17 19:47:49', '54kMebXm', '3396502'), - (453, 546, 'attending', '2021-01-22 01:20:20', '2025-12-17 19:47:49', '54kMebXm', '3396503'), - (453, 547, 'maybe', '2021-01-16 04:25:34', '2025-12-17 19:47:49', '54kMebXm', '3396504'), - (453, 548, 'attending', '2021-01-17 00:26:19', '2025-12-17 19:47:48', '54kMebXm', '3403650'), - (453, 549, 'maybe', '2021-01-16 04:24:38', '2025-12-17 19:47:49', '54kMebXm', '3406988'), - (453, 550, 'maybe', '2021-01-16 04:24:30', '2025-12-17 19:47:48', '54kMebXm', '3407018'), - (453, 551, 'attending', '2021-01-16 04:24:47', '2025-12-17 19:47:49', '54kMebXm', '3407219'), - (453, 555, 'attending', '2021-01-19 19:34:22', '2025-12-17 19:47:49', '54kMebXm', '3416576'), - (453, 556, 'attending', '2021-01-26 19:01:13', '2025-12-17 19:47:49', '54kMebXm', '3417170'), - (453, 558, 'not_attending', '2021-01-22 21:03:24', '2025-12-17 19:47:49', '54kMebXm', '3418925'), - (453, 559, 'not_attending', '2021-01-24 05:46:28', '2025-12-17 19:47:49', '54kMebXm', '3421439'), - (453, 561, 'not_attending', '2021-01-23 22:53:21', '2025-12-17 19:47:49', '54kMebXm', '3421916'), - (453, 562, 'not_attending', '2021-01-23 22:53:25', '2025-12-17 19:47:49', '54kMebXm', '3424911'), - (453, 563, 'attending', '2021-01-25 15:40:40', '2025-12-17 19:47:49', '54kMebXm', '3425913'), - (453, 564, 'maybe', '2021-01-23 22:36:43', '2025-12-17 19:47:49', '54kMebXm', '3426074'), - (453, 565, 'maybe', '2021-01-23 22:53:55', '2025-12-17 19:47:49', '54kMebXm', '3426083'), - (453, 566, 'maybe', '2021-01-23 22:53:59', '2025-12-17 19:47:49', '54kMebXm', '3427928'), - (453, 568, 'attending', '2021-01-28 03:30:44', '2025-12-17 19:47:50', '54kMebXm', '3430267'), - (453, 569, 'not_attending', '2021-01-26 19:01:20', '2025-12-17 19:47:49', '54kMebXm', '3432673'), - (453, 570, 'maybe', '2021-01-30 18:41:03', '2025-12-17 19:47:50', '54kMebXm', '3435538'), - (453, 571, 'not_attending', '2021-02-13 00:11:46', '2025-12-17 19:47:50', '54kMebXm', '3435539'), - (453, 572, 'maybe', '2021-01-30 18:41:06', '2025-12-17 19:47:50', '54kMebXm', '3435540'), - (453, 573, 'attending', '2021-02-07 20:23:25', '2025-12-17 19:47:50', '54kMebXm', '3435542'), - (453, 576, 'maybe', '2021-01-30 18:40:28', '2025-12-17 19:47:50', '54kMebXm', '3438748'), - (453, 577, 'attending', '2021-01-28 20:20:07', '2025-12-17 19:47:49', '54kMebXm', '3439167'), - (453, 578, 'maybe', '2021-02-03 22:17:08', '2025-12-17 19:47:50', '54kMebXm', '3440043'), - (453, 579, 'attending', '2021-01-30 18:41:09', '2025-12-17 19:47:50', '54kMebXm', '3440978'), - (453, 580, 'attending', '2021-01-31 19:14:16', '2025-12-17 19:47:50', '54kMebXm', '3444240'), - (453, 582, 'maybe', '2021-01-30 18:40:23', '2025-12-17 19:47:50', '54kMebXm', '3445769'), - (453, 583, 'attending', '2021-02-03 16:44:33', '2025-12-17 19:47:50', '54kMebXm', '3449144'), - (453, 585, 'attending', '2021-02-07 20:20:35', '2025-12-17 19:47:50', '54kMebXm', '3449468'), - (453, 586, 'maybe', '2021-02-07 20:20:54', '2025-12-17 19:47:50', '54kMebXm', '3449469'), - (453, 587, 'attending', '2021-02-07 20:22:25', '2025-12-17 19:47:50', '54kMebXm', '3449470'), - (453, 588, 'attending', '2021-02-07 20:22:37', '2025-12-17 19:47:50', '54kMebXm', '3449471'), - (453, 589, 'maybe', '2021-02-07 20:22:55', '2025-12-17 19:47:50', '54kMebXm', '3449473'), - (453, 590, 'maybe', '2021-02-11 21:28:48', '2025-12-17 19:47:50', '54kMebXm', '3459150'), - (453, 591, 'maybe', '2021-02-07 20:20:33', '2025-12-17 19:47:50', '54kMebXm', '3465880'), - (453, 592, 'maybe', '2021-02-07 20:23:16', '2025-12-17 19:47:50', '54kMebXm', '3467757'), - (453, 593, 'maybe', '2021-02-07 20:23:07', '2025-12-17 19:47:50', '54kMebXm', '3467758'), - (453, 594, 'not_attending', '2021-03-02 00:56:57', '2025-12-17 19:47:51', '54kMebXm', '3467759'), - (453, 598, 'maybe', '2021-02-07 20:20:47', '2025-12-17 19:47:50', '54kMebXm', '3468003'), - (453, 599, 'maybe', '2021-02-07 20:22:33', '2025-12-17 19:47:50', '54kMebXm', '3468117'), - (453, 600, 'maybe', '2021-02-07 20:22:59', '2025-12-17 19:47:50', '54kMebXm', '3468125'), - (453, 601, 'maybe', '2021-02-07 20:22:49', '2025-12-17 19:47:50', '54kMebXm', '3468131'), - (453, 602, 'attending', '2021-02-07 20:22:11', '2025-12-17 19:47:50', '54kMebXm', '3470303'), - (453, 603, 'not_attending', '2021-02-20 22:21:04', '2025-12-17 19:47:50', '54kMebXm', '3470304'), - (453, 604, 'attending', '2021-02-07 20:22:16', '2025-12-17 19:47:50', '54kMebXm', '3470305'), - (453, 605, 'maybe', '2021-02-07 20:19:59', '2025-12-17 19:47:50', '54kMebXm', '3470991'), - (453, 608, 'attending', '2021-02-10 21:45:13', '2025-12-17 19:47:50', '54kMebXm', '3475332'), - (453, 609, 'attending', '2021-02-13 23:06:47', '2025-12-17 19:47:50', '54kMebXm', '3480916'), - (453, 611, 'attending', '2021-02-22 21:27:08', '2025-12-17 19:47:50', '54kMebXm', '3482659'), - (453, 618, 'maybe', '2021-02-19 23:06:22', '2025-12-17 19:47:50', '54kMebXm', '3503991'), - (453, 621, 'not_attending', '2021-03-06 20:50:41', '2025-12-17 19:47:51', '54kMebXm', '3517815'), - (453, 622, 'attending', '2021-03-01 17:22:35', '2025-12-17 19:47:51', '54kMebXm', '3517816'), - (453, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '54kMebXm', '3523941'), - (453, 624, 'maybe', '2021-02-27 18:46:18', '2025-12-17 19:47:50', '54kMebXm', '3528556'), - (453, 627, 'attending', '2021-03-01 17:22:22', '2025-12-17 19:47:51', '54kMebXm', '3533303'), - (453, 628, 'attending', '2021-03-03 01:36:01', '2025-12-17 19:47:51', '54kMebXm', '3533305'), - (453, 630, 'maybe', '2021-03-02 19:46:45', '2025-12-17 19:47:51', '54kMebXm', '3533425'), - (453, 631, 'maybe', '2021-03-01 17:23:17', '2025-12-17 19:47:51', '54kMebXm', '3533850'), - (453, 632, 'maybe', '2021-03-09 01:25:03', '2025-12-17 19:47:51', '54kMebXm', '3533853'), - (453, 637, 'maybe', '2021-03-01 19:28:36', '2025-12-17 19:47:51', '54kMebXm', '3536411'), - (453, 638, 'maybe', '2021-03-01 19:28:27', '2025-12-17 19:47:44', '54kMebXm', '3536632'), - (453, 639, 'maybe', '2021-03-01 19:28:33', '2025-12-17 19:47:51', '54kMebXm', '3536656'), - (453, 640, 'maybe', '2021-03-03 16:10:40', '2025-12-17 19:47:51', '54kMebXm', '3538866'), - (453, 641, 'attending', '2021-03-03 15:24:23', '2025-12-17 19:47:44', '54kMebXm', '3539916'), - (453, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '54kMebXm', '3539917'), - (453, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '54kMebXm', '3539918'), - (453, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '54kMebXm', '3539919'), - (453, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54kMebXm', '3539920'), - (453, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54kMebXm', '3539921'), - (453, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54kMebXm', '3539922'), - (453, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '54kMebXm', '3539923'), - (453, 649, 'attending', '2021-03-03 15:24:16', '2025-12-17 19:47:51', '54kMebXm', '3539927'), - (453, 650, 'attending', '2021-03-03 15:24:18', '2025-12-17 19:47:44', '54kMebXm', '3539928'), - (453, 651, 'attending', '2021-03-10 23:27:16', '2025-12-17 19:47:51', '54kMebXm', '3541045'), - (453, 652, 'attending', '2021-03-07 14:01:39', '2025-12-17 19:47:51', '54kMebXm', '3544466'), - (453, 680, 'attending', '2021-03-10 04:14:48', '2025-12-17 19:47:51', '54kMebXm', '3547700'), - (453, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kMebXm', '6045684'), - (454, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', '0mqjLozA', '3149489'), - (454, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '0mqjLozA', '3149491'), - (454, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', '0mqjLozA', '3149493'), - (454, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', '0mqjLozA', '3236448'), - (454, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '0mqjLozA', '3236450'), - (454, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', '0mqjLozA', '3236452'), - (454, 648, 'not_attending', '2021-05-26 01:43:55', '2025-12-17 19:47:47', '0mqjLozA', '3539923'), - (454, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', '0mqjLozA', '3963335'), - (454, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '0mqjLozA', '3974109'), - (454, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '0mqjLozA', '3975311'), - (454, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '0mqjLozA', '3975312'), - (454, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '0mqjLozA', '3994992'), - (454, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '0mqjLozA', '4014338'), - (454, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '0mqjLozA', '4021848'), - (454, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '0mqjLozA', '4136744'), - (454, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '0mqjLozA', '4136937'), - (454, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '0mqjLozA', '4136938'), - (454, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '0mqjLozA', '4136947'), - (454, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '0mqjLozA', '4225444'), - (454, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '0mqjLozA', '4229417'), - (454, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '0mqjLozA', '4229418'), - (454, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '0mqjLozA', '4239259'), - (454, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '0mqjLozA', '4250163'), - (454, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqjLozA', '6045684'), - (455, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3Rl0OY4', '6045684'), - (456, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dlno03XA', '7869188'), - (456, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dlno03XA', '7877465'), - (456, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dlno03XA', '7878570'), - (456, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'dlno03XA', '7880977'), - (456, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dlno03XA', '7888250'), - (456, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dlno03XA', '7897784'), - (456, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dlno03XA', '7903856'), - (456, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dlno03XA', '8347770'), - (456, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dlno03XA', '8349164'), - (456, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dlno03XA', '8349545'), - (456, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dlno03XA', '8353584'), - (457, 857, 'not_attending', '2021-11-24 02:19:17', '2025-12-17 19:47:37', 'mjnDNL3m', '4015731'), - (457, 993, 'not_attending', '2021-09-24 16:12:14', '2025-12-17 19:47:34', 'mjnDNL3m', '4420741'), - (457, 994, 'maybe', '2021-10-02 03:28:17', '2025-12-17 19:47:34', 'mjnDNL3m', '4420742'), - (457, 995, 'attending', '2021-10-01 15:49:45', '2025-12-17 19:47:34', 'mjnDNL3m', '4420744'), - (457, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mjnDNL3m', '4420747'), - (457, 997, 'not_attending', '2021-10-12 22:18:20', '2025-12-17 19:47:35', 'mjnDNL3m', '4420748'), - (457, 1006, 'attending', '2021-09-22 12:30:45', '2025-12-17 19:47:34', 'mjnDNL3m', '4438808'), - (457, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'mjnDNL3m', '4508342'), - (457, 1071, 'not_attending', '2021-10-02 03:29:06', '2025-12-17 19:47:34', 'mjnDNL3m', '4516078'), - (457, 1072, 'attending', '2021-10-02 03:28:56', '2025-12-17 19:47:34', 'mjnDNL3m', '4516287'), - (457, 1077, 'attending', '2021-10-11 12:59:07', '2025-12-17 19:47:34', 'mjnDNL3m', '4540903'), - (457, 1078, 'attending', '2021-10-05 14:55:28', '2025-12-17 19:47:34', 'mjnDNL3m', '4541281'), - (457, 1079, 'not_attending', '2021-10-19 15:15:40', '2025-12-17 19:47:35', 'mjnDNL3m', '4563823'), - (457, 1082, 'attending', '2021-10-11 22:54:05', '2025-12-17 19:47:35', 'mjnDNL3m', '4566762'), - (457, 1083, 'not_attending', '2021-10-13 18:32:01', '2025-12-17 19:47:34', 'mjnDNL3m', '4566768'), - (457, 1084, 'not_attending', '2021-10-13 18:32:07', '2025-12-17 19:47:35', 'mjnDNL3m', '4566769'), - (457, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mjnDNL3m', '4568602'), - (457, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mjnDNL3m', '4572153'), - (457, 1089, 'not_attending', '2021-10-18 19:46:52', '2025-12-17 19:47:35', 'mjnDNL3m', '4574712'), - (457, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mjnDNL3m', '4585962'), - (457, 1094, 'maybe', '2021-10-31 20:42:23', '2025-12-17 19:47:36', 'mjnDNL3m', '4587337'), - (457, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mjnDNL3m', '4596356'), - (457, 1096, 'attending', '2021-10-28 14:22:38', '2025-12-17 19:47:36', 'mjnDNL3m', '4596453'), - (457, 1097, 'attending', '2021-10-28 14:22:30', '2025-12-17 19:47:36', 'mjnDNL3m', '4598860'), - (457, 1098, 'not_attending', '2021-11-07 21:07:33', '2025-12-17 19:47:36', 'mjnDNL3m', '4598861'), - (457, 1099, 'attending', '2021-10-31 17:14:12', '2025-12-17 19:47:36', 'mjnDNL3m', '4602797'), - (457, 1100, 'not_attending', '2021-11-09 00:18:03', '2025-12-17 19:47:36', 'mjnDNL3m', '4607305'), - (457, 1101, 'not_attending', '2021-11-11 15:53:25', '2025-12-17 19:47:36', 'mjnDNL3m', '4607339'), - (457, 1103, 'not_attending', '2021-11-12 23:38:01', '2025-12-17 19:47:36', 'mjnDNL3m', '4616350'), - (457, 1106, 'not_attending', '2021-11-12 21:05:45', '2025-12-17 19:47:36', 'mjnDNL3m', '4620452'), - (457, 1114, 'not_attending', '2021-11-12 02:52:44', '2025-12-17 19:47:36', 'mjnDNL3m', '4637896'), - (457, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mjnDNL3m', '4642994'), - (457, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mjnDNL3m', '4642995'), - (457, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mjnDNL3m', '4642996'), - (457, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mjnDNL3m', '4642997'), - (457, 1126, 'maybe', '2021-11-15 17:44:10', '2025-12-17 19:47:38', 'mjnDNL3m', '4645687'), - (457, 1127, 'maybe', '2021-11-15 17:44:06', '2025-12-17 19:47:38', 'mjnDNL3m', '4645698'), - (457, 1128, 'not_attending', '2021-11-15 17:44:00', '2025-12-17 19:47:37', 'mjnDNL3m', '4645704'), - (457, 1129, 'maybe', '2021-11-15 17:43:54', '2025-12-17 19:47:37', 'mjnDNL3m', '4645705'), - (457, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mjnDNL3m', '4668385'), - (457, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mjnDNL3m', '4694407'), - (457, 1151, 'not_attending', '2022-01-03 16:41:20', '2025-12-17 19:47:31', 'mjnDNL3m', '4708704'), - (457, 1165, 'not_attending', '2022-01-03 17:06:41', '2025-12-17 19:47:31', 'mjnDNL3m', '4724210'), - (457, 1173, 'attending', '2022-01-03 16:41:18', '2025-12-17 19:47:31', 'mjnDNL3m', '4736495'), - (457, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mjnDNL3m', '4736497'), - (457, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mjnDNL3m', '4736499'), - (457, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mjnDNL3m', '4736500'), - (457, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mjnDNL3m', '4736503'), - (457, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mjnDNL3m', '4736504'), - (457, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mjnDNL3m', '4746789'), - (457, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mjnDNL3m', '4753929'), - (457, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mjnDNL3m', '5038850'), - (457, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mjnDNL3m', '5045826'), - (457, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mjnDNL3m', '5132533'), - (457, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mjnDNL3m', '5186582'), - (457, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mjnDNL3m', '5186583'), - (457, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mjnDNL3m', '5186585'), - (457, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mjnDNL3m', '5190437'), - (457, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mjnDNL3m', '5195095'), - (457, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'mjnDNL3m', '5215989'), - (457, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mjnDNL3m', '5223686'), - (457, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mjnDNL3m', '5247467'), - (457, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mjnDNL3m', '5260800'), - (457, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mjnDNL3m', '5269930'), - (457, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mjnDNL3m', '5271448'), - (457, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'mjnDNL3m', '5271449'), - (457, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mjnDNL3m', '5278159'), - (457, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mjnDNL3m', '5363695'), - (457, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mjnDNL3m', '5365960'), - (457, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mjnDNL3m', '5378247'), - (457, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'mjnDNL3m', '5389605'), - (457, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mjnDNL3m', '5397265'), - (457, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mjnDNL3m', '5404786'), - (457, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mjnDNL3m', '5405203'), - (457, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mjnDNL3m', '5412550'), - (457, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mjnDNL3m', '5415046'), - (457, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mjnDNL3m', '5422086'), - (457, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mjnDNL3m', '5422406'), - (457, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mjnDNL3m', '5424565'), - (457, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mjnDNL3m', '5426882'), - (457, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mjnDNL3m', '5441125'), - (457, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mjnDNL3m', '5441126'), - (457, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mjnDNL3m', '5441128'), - (457, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mjnDNL3m', '5441131'), - (457, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mjnDNL3m', '5441132'), - (457, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mjnDNL3m', '5453325'), - (457, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mjnDNL3m', '5454516'), - (457, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mjnDNL3m', '5454605'), - (457, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mjnDNL3m', '5455037'), - (457, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mjnDNL3m', '5461278'), - (457, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mjnDNL3m', '5469480'), - (457, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mjnDNL3m', '5474663'), - (457, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mjnDNL3m', '5482022'), - (457, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mjnDNL3m', '5488912'), - (457, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mjnDNL3m', '5492192'), - (457, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mjnDNL3m', '5493139'), - (457, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mjnDNL3m', '5493200'), - (457, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mjnDNL3m', '5502188'), - (457, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mjnDNL3m', '5505059'), - (457, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mjnDNL3m', '5509055'), - (457, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mjnDNL3m', '5512862'), - (457, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mjnDNL3m', '5513985'), - (457, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'mjnDNL3m', '5519981'), - (457, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mjnDNL3m', '5522550'), - (457, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mjnDNL3m', '5534683'), - (457, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'mjnDNL3m', '5537735'), - (457, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mjnDNL3m', '5540859'), - (457, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mjnDNL3m', '5546619'), - (457, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mjnDNL3m', '5557747'), - (457, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mjnDNL3m', '5560255'), - (457, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mjnDNL3m', '5562906'), - (457, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mjnDNL3m', '5600604'), - (457, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mjnDNL3m', '5605544'), - (457, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'mjnDNL3m', '5606737'), - (457, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mjnDNL3m', '5630960'), - (457, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mjnDNL3m', '5630961'), - (457, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mjnDNL3m', '5630962'), - (457, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mjnDNL3m', '5630966'), - (457, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mjnDNL3m', '5630967'), - (457, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mjnDNL3m', '5630968'), - (457, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mjnDNL3m', '5635406'), - (457, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mjnDNL3m', '5638765'), - (457, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mjnDNL3m', '5640097'), - (457, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mjnDNL3m', '5640843'), - (457, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mjnDNL3m', '5641521'), - (457, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mjnDNL3m', '5642818'), - (457, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mjnDNL3m', '5652395'), - (457, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mjnDNL3m', '5670445'), - (457, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mjnDNL3m', '5671637'), - (457, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mjnDNL3m', '5672329'), - (457, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mjnDNL3m', '5674057'), - (457, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mjnDNL3m', '5674060'), - (457, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mjnDNL3m', '5677461'), - (457, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mjnDNL3m', '5698046'), - (457, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mjnDNL3m', '5699760'), - (457, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mjnDNL3m', '5741601'), - (457, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mjnDNL3m', '5763458'), - (457, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mjnDNL3m', '5774172'), - (457, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'mjnDNL3m', '5818247'), - (457, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mjnDNL3m', '5819471'), - (457, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mjnDNL3m', '5827739'), - (457, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mjnDNL3m', '5844306'), - (457, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mjnDNL3m', '5850159'), - (457, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mjnDNL3m', '5858999'), - (457, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mjnDNL3m', '5871984'), - (457, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mjnDNL3m', '5876354'), - (457, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mjnDNL3m', '5880939'), - (457, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mjnDNL3m', '5880940'), - (457, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mjnDNL3m', '5880942'), - (457, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mjnDNL3m', '5880943'), - (457, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mjnDNL3m', '5887890'), - (457, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mjnDNL3m', '5888598'), - (457, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mjnDNL3m', '5893260'), - (457, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mjnDNL3m', '5899826'), - (457, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mjnDNL3m', '5900199'), - (457, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mjnDNL3m', '5900200'), - (457, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mjnDNL3m', '5900202'), - (457, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mjnDNL3m', '5900203'), - (457, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mjnDNL3m', '5901108'), - (457, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mjnDNL3m', '5901126'), - (457, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'mjnDNL3m', '5901606'), - (457, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mjnDNL3m', '5909655'), - (457, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mjnDNL3m', '5910522'), - (457, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mjnDNL3m', '5910526'), - (457, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mjnDNL3m', '5910528'), - (457, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mjnDNL3m', '5916219'), - (457, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mjnDNL3m', '5936234'), - (457, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mjnDNL3m', '5958351'), - (457, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mjnDNL3m', '5959751'), - (457, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mjnDNL3m', '5959755'), - (457, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mjnDNL3m', '5960055'), - (457, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mjnDNL3m', '5961684'), - (457, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mjnDNL3m', '5962132'), - (457, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mjnDNL3m', '5962133'), - (457, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mjnDNL3m', '5962134'), - (457, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mjnDNL3m', '5962317'), - (457, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mjnDNL3m', '5962318'), - (457, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mjnDNL3m', '5965933'), - (457, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mjnDNL3m', '5967014'), - (457, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mjnDNL3m', '5972815'), - (457, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mjnDNL3m', '5974016'), - (457, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mjnDNL3m', '5981515'), - (457, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mjnDNL3m', '5993516'), - (457, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mjnDNL3m', '5998939'), - (457, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mjnDNL3m', '6028191'), - (457, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mjnDNL3m', '6040066'), - (457, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mjnDNL3m', '6042717'), - (457, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mjnDNL3m', '6044838'), - (457, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mjnDNL3m', '6044839'), - (457, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjnDNL3m', '6045684'), - (457, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mjnDNL3m', '6050104'), - (457, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mjnDNL3m', '6053195'), - (457, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mjnDNL3m', '6053198'), - (457, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mjnDNL3m', '6056085'), - (457, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mjnDNL3m', '6056916'), - (457, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mjnDNL3m', '6059290'), - (457, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mjnDNL3m', '6060328'), - (457, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mjnDNL3m', '6061037'), - (457, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mjnDNL3m', '6061039'), - (457, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mjnDNL3m', '6067245'), - (457, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mjnDNL3m', '6068094'), - (457, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mjnDNL3m', '6068252'), - (457, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mjnDNL3m', '6068253'), - (457, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mjnDNL3m', '6068254'), - (457, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mjnDNL3m', '6068280'), - (457, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mjnDNL3m', '6069093'), - (457, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mjnDNL3m', '6072528'), - (457, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mjnDNL3m', '6079840'), - (457, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mjnDNL3m', '6083398'), - (457, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mjnDNL3m', '6093504'), - (457, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mjnDNL3m', '6097414'), - (457, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mjnDNL3m', '6097442'), - (457, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mjnDNL3m', '6097684'), - (457, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mjnDNL3m', '6098762'), - (457, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mjnDNL3m', '6101361'), - (457, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mjnDNL3m', '6101362'), - (457, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mjnDNL3m', '6107314'), - (457, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mjnDNL3m', '6120034'), - (457, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mjnDNL3m', '6136733'), - (457, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mjnDNL3m', '6137989'), - (457, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mjnDNL3m', '6150864'), - (457, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mjnDNL3m', '6155491'), - (457, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mjnDNL3m', '6164417'), - (457, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mjnDNL3m', '6166388'), - (457, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mjnDNL3m', '6176439'), - (457, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mjnDNL3m', '6182410'), - (457, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mjnDNL3m', '6185812'), - (457, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mjnDNL3m', '6187651'), - (457, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mjnDNL3m', '6187963'), - (457, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mjnDNL3m', '6187964'), - (457, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mjnDNL3m', '6187966'), - (457, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mjnDNL3m', '6187967'), - (457, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mjnDNL3m', '6187969'), - (457, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mjnDNL3m', '6334878'), - (457, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mjnDNL3m', '6337236'), - (457, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mjnDNL3m', '6337970'), - (457, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mjnDNL3m', '6338308'), - (457, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mjnDNL3m', '6341710'), - (457, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mjnDNL3m', '6342044'), - (457, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mjnDNL3m', '6342298'), - (457, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mjnDNL3m', '6343294'), - (457, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mjnDNL3m', '6347034'), - (457, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mjnDNL3m', '6347056'), - (457, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mjnDNL3m', '6353830'), - (457, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mjnDNL3m', '6353831'), - (457, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mjnDNL3m', '6357867'), - (457, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mjnDNL3m', '6358652'), - (457, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mjnDNL3m', '6361709'), - (457, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mjnDNL3m', '6361710'), - (457, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mjnDNL3m', '6361711'), - (457, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mjnDNL3m', '6361712'), - (457, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mjnDNL3m', '6361713'), - (457, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mjnDNL3m', '6382573'), - (457, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mjnDNL3m', '6388604'), - (457, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mjnDNL3m', '6394629'), - (457, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mjnDNL3m', '6394631'), - (457, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mjnDNL3m', '6440863'), - (457, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mjnDNL3m', '6445440'), - (457, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mjnDNL3m', '6453951'), - (457, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mjnDNL3m', '6461696'), - (457, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mjnDNL3m', '6462129'), - (457, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mjnDNL3m', '6463218'), - (457, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mjnDNL3m', '6472181'), - (457, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mjnDNL3m', '6482693'), - (457, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mjnDNL3m', '6484200'), - (457, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mjnDNL3m', '6484680'), - (457, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mjnDNL3m', '6507741'), - (457, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mjnDNL3m', '6514659'), - (457, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mjnDNL3m', '6514660'), - (457, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mjnDNL3m', '6519103'), - (457, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mjnDNL3m', '6535681'), - (457, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mjnDNL3m', '6584747'), - (457, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mjnDNL3m', '6587097'), - (457, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mjnDNL3m', '6609022'), - (457, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mjnDNL3m', '6632757'), - (457, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mjnDNL3m', '6644187'), - (457, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mjnDNL3m', '6648951'), - (457, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mjnDNL3m', '6648952'), - (457, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mjnDNL3m', '6655401'), - (457, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mjnDNL3m', '6661585'), - (457, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mjnDNL3m', '6661588'), - (457, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mjnDNL3m', '6661589'), - (457, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mjnDNL3m', '6699906'), - (457, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mjnDNL3m', '6699913'), - (457, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mjnDNL3m', '6701109'), - (457, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mjnDNL3m', '6705219'), - (457, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mjnDNL3m', '6710153'), - (457, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mjnDNL3m', '6711552'), - (457, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mjnDNL3m', '6711553'), - (457, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mjnDNL3m', '6722688'), - (457, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mjnDNL3m', '6730620'), - (457, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mjnDNL3m', '6740364'), - (457, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mjnDNL3m', '6743829'), - (457, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mjnDNL3m', '7030380'), - (457, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mjnDNL3m', '7033677'), - (457, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mjnDNL3m', '7044715'), - (457, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mjnDNL3m', '7050318'), - (457, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mjnDNL3m', '7050319'), - (457, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mjnDNL3m', '7050322'), - (457, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mjnDNL3m', '7057804'), - (457, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mjnDNL3m', '7072824'), - (457, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mjnDNL3m', '7074348'), - (457, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mjnDNL3m', '7074364'), - (457, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mjnDNL3m', '7089267'), - (457, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mjnDNL3m', '7098747'), - (457, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mjnDNL3m', '7113468'), - (457, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mjnDNL3m', '7114856'), - (457, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mjnDNL3m', '7114951'), - (457, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mjnDNL3m', '7114955'), - (457, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mjnDNL3m', '7114956'), - (457, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mjnDNL3m', '7114957'), - (457, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mjnDNL3m', '7159484'), - (457, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mjnDNL3m', '7178446'), - (457, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mjnDNL3m', '7220467'), - (457, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mjnDNL3m', '7240354'), - (457, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mjnDNL3m', '7251633'), - (457, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mjnDNL3m', '7324073'), - (457, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mjnDNL3m', '7324074'), - (457, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mjnDNL3m', '7324075'), - (457, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mjnDNL3m', '7324078'), - (457, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mjnDNL3m', '7324082'), - (457, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mjnDNL3m', '7331457'), - (457, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mjnDNL3m', '7363643'), - (457, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mjnDNL3m', '7368606'), - (457, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mjnDNL3m', '7397462'), - (457, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mjnDNL3m', '7424275'), - (457, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mjnDNL3m', '7432751'), - (457, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mjnDNL3m', '7432752'), - (457, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mjnDNL3m', '7432753'), - (457, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mjnDNL3m', '7432754'), - (457, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mjnDNL3m', '7432755'), - (457, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mjnDNL3m', '7432756'), - (457, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mjnDNL3m', '7432758'), - (457, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mjnDNL3m', '7432759'), - (457, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mjnDNL3m', '7433834'), - (457, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mjnDNL3m', '7470197'), - (457, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mjnDNL3m', '7685613'), - (457, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mjnDNL3m', '7688194'), - (457, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mjnDNL3m', '7688196'), - (457, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mjnDNL3m', '7688289'), - (457, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mjnDNL3m', '7692763'), - (457, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mjnDNL3m', '7697552'), - (457, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mjnDNL3m', '7699878'), - (457, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mjnDNL3m', '7704043'), - (457, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mjnDNL3m', '7712467'), - (457, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mjnDNL3m', '7713585'), - (457, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mjnDNL3m', '7713586'), - (457, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mjnDNL3m', '7738518'), - (457, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mjnDNL3m', '7750636'), - (457, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mjnDNL3m', '7796540'), - (457, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mjnDNL3m', '7796541'), - (457, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mjnDNL3m', '7796542'), - (457, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mjnDNL3m', '7825913'), - (457, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mjnDNL3m', '7826209'), - (457, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mjnDNL3m', '7834742'), - (457, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mjnDNL3m', '7842108'), - (457, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mjnDNL3m', '7842902'), - (457, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mjnDNL3m', '7842903'), - (457, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mjnDNL3m', '7842904'), - (457, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mjnDNL3m', '7842905'), - (457, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mjnDNL3m', '7855719'), - (457, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mjnDNL3m', '7860683'), - (457, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mjnDNL3m', '7860684'), - (457, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mjnDNL3m', '7866095'), - (457, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mjnDNL3m', '7869170'), - (457, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mjnDNL3m', '7869188'), - (457, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mjnDNL3m', '7869201'), - (457, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mjnDNL3m', '7877465'), - (457, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mjnDNL3m', '7888250'), - (457, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mjnDNL3m', '7904777'), - (457, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjnDNL3m', '8349164'), - (457, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjnDNL3m', '8349545'), - (457, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjnDNL3m', '8368028'), - (457, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjnDNL3m', '8368029'), - (457, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjnDNL3m', '8388462'), - (457, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjnDNL3m', '8400273'), - (457, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjnDNL3m', '8400275'), - (457, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mjnDNL3m', '8400276'), - (457, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjnDNL3m', '8404977'), - (457, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mjnDNL3m', '8430783'), - (457, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjnDNL3m', '8430784'), - (457, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjnDNL3m', '8430799'), - (457, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjnDNL3m', '8430800'), - (457, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjnDNL3m', '8430801'), - (457, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mjnDNL3m', '8438709'), - (457, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjnDNL3m', '8457738'), - (457, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjnDNL3m', '8459566'), - (457, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjnDNL3m', '8459567'), - (457, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjnDNL3m', '8461032'), - (457, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjnDNL3m', '8477877'), - (457, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mjnDNL3m', '8485688'), - (457, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mjnDNL3m', '8490587'), - (457, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mjnDNL3m', '8493552'), - (457, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mjnDNL3m', '8493553'), - (457, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mjnDNL3m', '8493554'), - (457, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mjnDNL3m', '8493555'), - (457, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mjnDNL3m', '8493556'), - (457, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mjnDNL3m', '8493557'), - (457, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mjnDNL3m', '8493558'), - (457, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mjnDNL3m', '8493559'), - (457, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mjnDNL3m', '8493560'), - (457, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mjnDNL3m', '8493561'), - (457, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mjnDNL3m', '8493572'), - (457, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mjnDNL3m', '8540725'), - (457, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mjnDNL3m', '8555421'), - (458, 1727, 'attending', '2022-12-03 03:54:50', '2025-12-17 19:47:16', 'mGOpGLZm', '5630969'), - (458, 1737, 'attending', '2022-12-01 00:08:37', '2025-12-17 19:47:16', 'mGOpGLZm', '5638457'), - (458, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mGOpGLZm', '5670445'), - (458, 1796, 'attending', '2022-12-01 22:05:24', '2025-12-17 19:47:16', 'mGOpGLZm', '5756755'), - (458, 1824, 'not_attending', '2022-12-01 18:39:21', '2025-12-17 19:47:04', 'mGOpGLZm', '5774172'), - (458, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'mGOpGLZm', '5818247'), - (458, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mGOpGLZm', '5819471'), - (458, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'mGOpGLZm', '5827739'), - (458, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mGOpGLZm', '5844306'), - (458, 1846, 'not_attending', '2022-12-18 18:54:24', '2025-12-17 19:47:04', 'mGOpGLZm', '5845237'), - (458, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mGOpGLZm', '5850159'), - (458, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mGOpGLZm', '5858999'), - (458, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mGOpGLZm', '5871984'), - (458, 1856, 'attending', '2023-01-15 03:38:14', '2025-12-17 19:47:05', 'mGOpGLZm', '5873970'), - (458, 1859, 'attending', '2023-01-19 04:43:49', '2025-12-17 19:47:05', 'mGOpGLZm', '5876234'), - (458, 1861, 'attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mGOpGLZm', '5876354'), - (458, 1864, 'attending', '2023-01-19 04:36:58', '2025-12-17 19:47:05', 'mGOpGLZm', '5879675'), - (458, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mGOpGLZm', '5880939'), - (458, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mGOpGLZm', '5880940'), - (458, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mGOpGLZm', '5880942'), - (458, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mGOpGLZm', '5880943'), - (458, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mGOpGLZm', '5887890'), - (458, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mGOpGLZm', '5888598'), - (458, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mGOpGLZm', '5893260'), - (458, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mGOpGLZm', '5899826'), - (458, 1885, 'attending', '2023-02-24 23:25:33', '2025-12-17 19:47:08', 'mGOpGLZm', '5899928'), - (458, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mGOpGLZm', '5900199'), - (458, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mGOpGLZm', '5900200'), - (458, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mGOpGLZm', '5900202'), - (458, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mGOpGLZm', '5900203'), - (458, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mGOpGLZm', '5901108'), - (458, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mGOpGLZm', '5901126'), - (458, 1900, 'attending', '2023-02-03 21:29:29', '2025-12-17 19:47:06', 'mGOpGLZm', '5901331'), - (458, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mGOpGLZm', '5909655'), - (458, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mGOpGLZm', '5910522'), - (458, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mGOpGLZm', '5910526'), - (458, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mGOpGLZm', '5910528'), - (458, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mGOpGLZm', '5916219'), - (458, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mGOpGLZm', '5936234'), - (458, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mGOpGLZm', '5958351'), - (458, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mGOpGLZm', '5959751'), - (458, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mGOpGLZm', '5959755'), - (458, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mGOpGLZm', '5960055'), - (458, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mGOpGLZm', '5961684'), - (458, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mGOpGLZm', '5962132'), - (458, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mGOpGLZm', '5962133'), - (458, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mGOpGLZm', '5962134'), - (458, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mGOpGLZm', '5962317'), - (458, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mGOpGLZm', '5962318'), - (458, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mGOpGLZm', '5965933'), - (458, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mGOpGLZm', '5967014'), - (458, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mGOpGLZm', '5972815'), - (458, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mGOpGLZm', '5974016'), - (458, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mGOpGLZm', '5981515'), - (458, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mGOpGLZm', '5993516'), - (458, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mGOpGLZm', '5998939'), - (458, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mGOpGLZm', '6028191'), - (458, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mGOpGLZm', '6040066'), - (458, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mGOpGLZm', '6042717'), - (458, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mGOpGLZm', '6044838'), - (458, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mGOpGLZm', '6044839'), - (458, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mGOpGLZm', '6045684'), - (458, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mGOpGLZm', '6050104'), - (458, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mGOpGLZm', '6053195'), - (458, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mGOpGLZm', '6053198'), - (458, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mGOpGLZm', '6056085'), - (458, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mGOpGLZm', '6056916'), - (458, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mGOpGLZm', '6059290'), - (458, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mGOpGLZm', '6060328'), - (458, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mGOpGLZm', '6061037'), - (458, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mGOpGLZm', '6061039'), - (458, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mGOpGLZm', '6067245'), - (458, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mGOpGLZm', '6068094'), - (458, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mGOpGLZm', '6068252'), - (458, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mGOpGLZm', '6068253'), - (458, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mGOpGLZm', '6068254'), - (458, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mGOpGLZm', '6068280'), - (458, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mGOpGLZm', '6069093'), - (458, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mGOpGLZm', '6072528'), - (458, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mGOpGLZm', '6079840'), - (458, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mGOpGLZm', '6083398'), - (458, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mGOpGLZm', '6093504'), - (458, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mGOpGLZm', '6097414'), - (458, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mGOpGLZm', '6097442'), - (458, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mGOpGLZm', '6097684'), - (458, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mGOpGLZm', '6098762'), - (458, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mGOpGLZm', '6101361'), - (458, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mGOpGLZm', '6101362'), - (458, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mGOpGLZm', '6103752'), - (458, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mGOpGLZm', '6107314'), - (458, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mGOpGLZm', '6120034'), - (458, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mGOpGLZm', '6136733'), - (458, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mGOpGLZm', '6137989'), - (458, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mGOpGLZm', '6150864'), - (458, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mGOpGLZm', '6155491'), - (458, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mGOpGLZm', '6164417'), - (458, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mGOpGLZm', '6166388'), - (458, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mGOpGLZm', '6176439'), - (459, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AQ0675xm', '6342044'), - (459, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AQ0675xm', '6343294'), - (459, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AQ0675xm', '6347034'), - (459, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AQ0675xm', '6347056'), - (459, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AQ0675xm', '6353830'), - (459, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AQ0675xm', '6353831'), - (459, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AQ0675xm', '6357867'), - (459, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AQ0675xm', '6358652'), - (459, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'AQ0675xm', '6361709'), - (459, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AQ0675xm', '6361710'), - (459, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AQ0675xm', '6361711'), - (459, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AQ0675xm', '6361712'), - (459, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AQ0675xm', '6361713'), - (459, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AQ0675xm', '6382573'), - (459, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'AQ0675xm', '6388604'), - (459, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AQ0675xm', '6394629'), - (459, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AQ0675xm', '6394631'), - (459, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'AQ0675xm', '6431478'), - (460, 991, 'maybe', '2021-09-11 20:07:53', '2025-12-17 19:47:43', 'dwYlB71A', '4420738'), - (460, 992, 'not_attending', '2021-09-18 23:08:55', '2025-12-17 19:47:34', 'dwYlB71A', '4420739'), - (460, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dwYlB71A', '4420741'), - (460, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dwYlB71A', '4420744'), - (460, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dwYlB71A', '4420747'), - (460, 1015, 'attending', '2021-09-12 19:19:21', '2025-12-17 19:47:43', 'dwYlB71A', '4440800'), - (460, 1023, 'maybe', '2021-09-13 20:19:29', '2025-12-17 19:47:43', 'dwYlB71A', '4461883'), - (460, 1025, 'maybe', '2021-09-14 16:29:30', '2025-12-17 19:47:43', 'dwYlB71A', '4462052'), - (460, 1026, 'not_attending', '2021-09-30 02:53:42', '2025-12-17 19:47:43', 'dwYlB71A', '4472951'), - (460, 1027, 'attending', '2021-09-19 04:13:35', '2025-12-17 19:47:34', 'dwYlB71A', '4472982'), - (460, 1028, 'attending', '2021-09-19 04:13:39', '2025-12-17 19:47:34', 'dwYlB71A', '4472983'), - (460, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dwYlB71A', '4508342'), - (460, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dwYlB71A', '4568602'), - (460, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dwYlB71A', '6045684'), - (461, 1257, 'attending', '2022-03-13 16:27:57', '2025-12-17 19:47:33', 'mj68Y3bm', '5129274'), - (461, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'mj68Y3bm', '5132533'), - (461, 1265, 'maybe', '2022-03-12 00:33:42', '2025-12-17 19:47:33', 'mj68Y3bm', '5160862'), - (461, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj68Y3bm', '6045684'), - (462, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxMkLv1m', '6342044'), - (462, 2174, 'not_attending', '2023-07-26 20:15:40', '2025-12-17 19:46:54', 'dxMkLv1m', '6343294'), - (462, 2176, 'not_attending', '2023-07-27 17:23:49', '2025-12-17 19:46:54', 'dxMkLv1m', '6347034'), - (462, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxMkLv1m', '6353830'), - (462, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxMkLv1m', '6353831'), - (462, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxMkLv1m', '6357867'), - (462, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxMkLv1m', '6358652'), - (462, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'dxMkLv1m', '6361709'), - (462, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxMkLv1m', '6361710'), - (462, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxMkLv1m', '6361711'), - (462, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxMkLv1m', '6361712'), - (462, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxMkLv1m', '6361713'), - (462, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxMkLv1m', '6382573'), - (462, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dxMkLv1m', '6388604'), - (462, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxMkLv1m', '6394629'), - (462, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxMkLv1m', '6394631'), - (462, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxMkLv1m', '6431478'), - (463, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjYq0MVd', '6045684'), - (464, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dJrGrkbd', '5670445'), - (464, 1824, 'maybe', '2022-11-30 14:58:07', '2025-12-17 19:47:04', 'dJrGrkbd', '5774172'), - (464, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dJrGrkbd', '5818247'), - (464, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dJrGrkbd', '5819471'), - (464, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dJrGrkbd', '5827739'), - (464, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dJrGrkbd', '5844306'), - (464, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dJrGrkbd', '5850159'), - (464, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dJrGrkbd', '5858999'), - (464, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dJrGrkbd', '5871984'), - (464, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dJrGrkbd', '5876354'), - (464, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dJrGrkbd', '6045684'), - (465, 2075, 'maybe', '2023-06-30 10:59:50', '2025-12-17 19:46:50', 'mGGwaMrm', '6107314'), - (465, 2116, 'attending', '2023-07-07 11:09:05', '2025-12-17 19:46:51', 'mGGwaMrm', '6163389'), - (465, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mGGwaMrm', '6176439'), - (465, 2125, 'attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'mGGwaMrm', '6177485'), - (465, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mGGwaMrm', '6182410'), - (465, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mGGwaMrm', '6185812'), - (465, 2132, 'attending', '2023-07-09 11:47:57', '2025-12-17 19:46:52', 'mGGwaMrm', '6187015'), - (465, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mGGwaMrm', '6187651'), - (465, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mGGwaMrm', '6187963'), - (465, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mGGwaMrm', '6187964'), - (465, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mGGwaMrm', '6187966'), - (465, 2137, 'attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mGGwaMrm', '6187967'), - (465, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mGGwaMrm', '6187969'), - (465, 2139, 'not_attending', '2023-07-09 20:13:10', '2025-12-17 19:46:52', 'mGGwaMrm', '6188027'), - (465, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mGGwaMrm', '6334878'), - (465, 2148, 'attending', '2023-07-09 20:17:30', '2025-12-17 19:46:53', 'mGGwaMrm', '6335667'), - (465, 2149, 'attending', '2023-07-11 19:09:52', '2025-12-17 19:46:53', 'mGGwaMrm', '6335682'), - (465, 2152, 'attending', '2023-07-11 09:07:43', '2025-12-17 19:46:52', 'mGGwaMrm', '6337021'), - (465, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mGGwaMrm', '6337236'), - (465, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mGGwaMrm', '6337970'), - (465, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mGGwaMrm', '6338308'), - (465, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mGGwaMrm', '6340845'), - (465, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mGGwaMrm', '6341710'), - (465, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mGGwaMrm', '6342044'), - (465, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mGGwaMrm', '6342298'), - (465, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mGGwaMrm', '6343294'), - (465, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mGGwaMrm', '6347034'), - (465, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mGGwaMrm', '6347056'), - (465, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mGGwaMrm', '6353830'), - (465, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mGGwaMrm', '6353831'), - (465, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mGGwaMrm', '6357867'), - (465, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mGGwaMrm', '6358652'), - (465, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mGGwaMrm', '6361709'), - (465, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mGGwaMrm', '6361710'), - (465, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mGGwaMrm', '6361711'), - (465, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mGGwaMrm', '6361712'), - (465, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mGGwaMrm', '6361713'), - (465, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mGGwaMrm', '6382573'), - (465, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mGGwaMrm', '6388604'), - (465, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mGGwaMrm', '6394629'), - (465, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mGGwaMrm', '6394631'), - (465, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mGGwaMrm', '6440863'), - (465, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mGGwaMrm', '6445440'), - (465, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mGGwaMrm', '6453951'), - (465, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mGGwaMrm', '6461696'), - (465, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mGGwaMrm', '6462129'), - (465, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mGGwaMrm', '6463218'), - (465, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mGGwaMrm', '6472181'), - (465, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mGGwaMrm', '6482693'), - (465, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mGGwaMrm', '6484200'), - (465, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mGGwaMrm', '6484680'), - (465, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mGGwaMrm', '6507741'), - (465, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mGGwaMrm', '6514659'), - (465, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mGGwaMrm', '6514660'), - (465, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mGGwaMrm', '6519103'), - (465, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mGGwaMrm', '6535681'), - (465, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mGGwaMrm', '6584747'), - (465, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mGGwaMrm', '6587097'), - (465, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mGGwaMrm', '6609022'), - (465, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mGGwaMrm', '6632757'), - (465, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mGGwaMrm', '6644187'), - (465, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mGGwaMrm', '6648951'), - (465, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mGGwaMrm', '6648952'), - (465, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mGGwaMrm', '6655401'), - (465, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mGGwaMrm', '6661585'), - (465, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mGGwaMrm', '6661588'), - (465, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mGGwaMrm', '6661589'), - (465, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mGGwaMrm', '6699906'), - (465, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mGGwaMrm', '6701109'), - (465, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mGGwaMrm', '6705219'), - (465, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mGGwaMrm', '6710153'), - (465, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mGGwaMrm', '6711552'), - (465, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mGGwaMrm', '6711553'), - (466, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41YVG154', '5630960'), - (466, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41YVG154', '5630961'), - (466, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41YVG154', '5630962'), - (466, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41YVG154', '5630966'), - (466, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41YVG154', '5630967'), - (466, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41YVG154', '5630968'), - (466, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', '41YVG154', '5638765'), - (466, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41YVG154', '5640097'), - (466, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41YVG154', '5640843'), - (466, 1741, 'attending', '2022-10-10 13:15:27', '2025-12-17 19:47:12', '41YVG154', '5641132'), - (466, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41YVG154', '5641521'), - (466, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41YVG154', '5642818'), - (466, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41YVG154', '5652395'), - (466, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41YVG154', '5670445'), - (466, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41YVG154', '5671637'), - (466, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41YVG154', '5672329'), - (466, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41YVG154', '5674057'), - (466, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41YVG154', '5674060'), - (466, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41YVG154', '5677461'), - (466, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41YVG154', '5698046'), - (466, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', '41YVG154', '5699760'), - (466, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41YVG154', '5741601'), - (466, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41YVG154', '5763458'), - (466, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41YVG154', '5774172'), - (466, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '41YVG154', '5818247'), - (466, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41YVG154', '5819471'), - (466, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41YVG154', '5827739'), - (466, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41YVG154', '5844306'), - (466, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41YVG154', '5850159'), - (466, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41YVG154', '5858999'), - (466, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41YVG154', '5871984'), - (466, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41YVG154', '5876354'), - (466, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41YVG154', '5880939'), - (466, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41YVG154', '5887890'), - (466, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41YVG154', '5888598'), - (466, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41YVG154', '5893260'), - (466, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41YVG154', '6045684'), - (467, 707, 'not_attending', '2021-04-14 12:59:50', '2025-12-17 19:47:46', '0mq8bX5d', '3583262'), - (467, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mq8bX5d', '6045684'), - (468, 1, 'attending', '2020-03-19 03:08:17', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958042'), - (468, 2, 'attending', '2020-03-19 03:08:33', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958044'), - (468, 4, 'attending', '2020-03-19 03:08:35', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958046'), - (468, 5, 'attending', '2020-03-19 03:08:39', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958047'), - (468, 7, 'maybe', '2020-03-19 16:57:01', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958049'), - (468, 8, 'attending', '2020-03-19 03:08:47', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958050'), - (468, 10, 'attending', '2020-03-28 22:00:34', '2025-12-17 19:47:56', 'NmLXw9Nm', '2958053'), - (468, 11, 'attending', '2020-03-19 16:57:46', '2025-12-17 19:47:57', 'NmLXw9Nm', '2958055'), - (468, 12, 'attending', '2020-03-19 16:57:30', '2025-12-17 19:47:56', 'NmLXw9Nm', '2958056'), - (468, 13, 'attending', '2020-03-23 03:14:08', '2025-12-17 19:47:57', 'NmLXw9Nm', '2958057'), - (468, 15, 'attending', '2020-04-03 05:12:23', '2025-12-17 19:47:57', 'NmLXw9Nm', '2958059'), - (468, 16, 'not_attending', '2020-03-26 23:06:41', '2025-12-17 19:47:56', 'NmLXw9Nm', '2958060'), - (468, 17, 'attending', '2020-03-19 16:56:11', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958061'), - (468, 23, 'attending', '2020-06-11 23:41:41', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958067'), - (468, 28, 'attending', '2020-03-28 17:11:20', '2025-12-17 19:47:56', 'NmLXw9Nm', '2960421'), - (468, 29, 'attending', '2020-03-30 20:18:17', '2025-12-17 19:47:56', 'NmLXw9Nm', '2961309'), - (468, 30, 'not_attending', '2020-04-02 16:56:30', '2025-12-17 19:47:57', 'NmLXw9Nm', '2961895'), - (468, 32, 'attending', '2020-03-31 21:05:42', '2025-12-17 19:47:56', 'NmLXw9Nm', '2963931'), - (468, 33, 'attending', '2020-04-04 17:45:58', '2025-12-17 19:47:57', 'NmLXw9Nm', '2963932'), - (468, 34, 'not_attending', '2020-03-26 23:06:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '2966259'), - (468, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'NmLXw9Nm', '2969208'), - (468, 39, 'attending', '2020-04-04 17:44:43', '2025-12-17 19:47:57', 'NmLXw9Nm', '2970637'), - (468, 41, 'attending', '2020-04-03 05:12:26', '2025-12-17 19:47:57', 'NmLXw9Nm', '2971546'), - (468, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'NmLXw9Nm', '2974534'), - (468, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'NmLXw9Nm', '2974955'), - (468, 51, 'attending', '2020-06-30 01:58:35', '2025-12-17 19:47:55', 'NmLXw9Nm', '2975276'), - (468, 55, 'not_attending', '2020-04-06 16:10:23', '2025-12-17 19:47:57', 'NmLXw9Nm', '2975384'), - (468, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'NmLXw9Nm', '2975385'), - (468, 57, 'attending', '2020-04-27 22:38:47', '2025-12-17 19:47:57', 'NmLXw9Nm', '2976575'), - (468, 58, 'maybe', '2020-04-19 07:25:09', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977127'), - (468, 60, 'maybe', '2020-04-28 16:08:01', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977129'), - (468, 61, 'attending', '2020-04-14 16:31:14', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977130'), - (468, 62, 'not_attending', '2020-05-08 18:31:10', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977131'), - (468, 65, 'attending', '2020-05-24 17:54:38', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977134'), - (468, 66, 'attending', '2020-06-09 20:24:49', '2025-12-17 19:47:58', 'NmLXw9Nm', '2977135'), - (468, 68, 'attending', '2020-06-19 02:00:12', '2025-12-17 19:47:58', 'NmLXw9Nm', '2977137'), - (468, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977343'), - (468, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977812'), - (468, 73, 'attending', '2020-04-14 05:39:07', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977931'), - (468, 74, 'attending', '2020-04-10 19:42:54', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978244'), - (468, 75, 'attending', '2020-04-24 01:23:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978245'), - (468, 76, 'not_attending', '2020-05-02 20:07:21', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978246'), - (468, 77, 'not_attending', '2020-05-09 07:13:26', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978247'), - (468, 78, 'attending', '2020-05-23 21:50:30', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978249'), - (468, 79, 'attending', '2020-05-30 21:01:35', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978250'), - (468, 80, 'attending', '2020-06-06 02:50:27', '2025-12-17 19:47:58', 'NmLXw9Nm', '2978251'), - (468, 82, 'maybe', '2020-04-19 07:25:16', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978433'), - (468, 83, 'not_attending', '2020-05-08 22:49:39', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978438'), - (468, 84, 'maybe', '2020-04-19 07:25:04', '2025-12-17 19:47:57', 'NmLXw9Nm', '2980871'), - (468, 85, 'attending', '2020-04-22 22:18:28', '2025-12-17 19:47:57', 'NmLXw9Nm', '2980872'), - (468, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'NmLXw9Nm', '2981388'), - (468, 87, 'attending', '2020-04-24 01:23:38', '2025-12-17 19:47:57', 'NmLXw9Nm', '2982602'), - (468, 88, 'attending', '2020-04-14 18:04:00', '2025-12-17 19:47:57', 'NmLXw9Nm', '2982603'), - (468, 89, 'not_attending', '2020-05-02 20:07:18', '2025-12-17 19:47:57', 'NmLXw9Nm', '2982604'), - (468, 91, 'attending', '2020-04-17 20:03:40', '2025-12-17 19:47:57', 'NmLXw9Nm', '2985130'), - (468, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2986743'), - (468, 96, 'attending', '2020-04-19 23:53:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2987453'), - (468, 100, 'attending', '2020-04-24 00:45:20', '2025-12-17 19:47:57', 'NmLXw9Nm', '2989142'), - (468, 101, 'attending', '2020-04-21 21:44:21', '2025-12-17 19:47:57', 'NmLXw9Nm', '2989975'), - (468, 104, 'attending', '2020-04-24 15:50:55', '2025-12-17 19:47:57', 'NmLXw9Nm', '2991471'), - (468, 106, 'attending', '2020-04-26 22:34:22', '2025-12-17 19:47:57', 'NmLXw9Nm', '2993501'), - (468, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'NmLXw9Nm', '2994480'), - (468, 110, 'attending', '2020-05-03 18:39:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2994906'), - (468, 111, 'attending', '2020-06-06 02:50:21', '2025-12-17 19:47:58', 'NmLXw9Nm', '2994907'), - (468, 112, 'maybe', '2020-07-05 16:55:51', '2025-12-17 19:47:55', 'NmLXw9Nm', '2994908'), - (468, 113, 'attending', '2020-07-16 18:52:18', '2025-12-17 19:47:56', 'NmLXw9Nm', '2994909'), - (468, 115, 'not_attending', '2020-05-16 17:32:08', '2025-12-17 19:47:57', 'NmLXw9Nm', '3001217'), - (468, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'NmLXw9Nm', '3015486'), - (468, 121, 'not_attending', '2020-05-27 15:46:44', '2025-12-17 19:47:57', 'NmLXw9Nm', '3023063'), - (468, 123, 'attending', '2020-05-15 03:39:21', '2025-12-17 19:47:57', 'NmLXw9Nm', '3023729'), - (468, 124, 'attending', '2020-05-15 03:39:19', '2025-12-17 19:47:57', 'NmLXw9Nm', '3023809'), - (468, 128, 'attending', '2020-05-23 21:50:32', '2025-12-17 19:47:57', 'NmLXw9Nm', '3027185'), - (468, 133, 'attending', '2020-05-23 21:50:24', '2025-12-17 19:47:58', 'NmLXw9Nm', '3034321'), - (468, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'NmLXw9Nm', '3035881'), - (468, 139, 'not_attending', '2020-06-14 23:07:58', '2025-12-17 19:47:58', 'NmLXw9Nm', '3046190'), - (468, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'NmLXw9Nm', '3049983'), - (468, 146, 'attending', '2020-06-27 18:25:24', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058683'), - (468, 147, 'attending', '2020-08-05 18:44:19', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058684'), - (468, 148, 'attending', '2020-07-04 02:25:22', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058685'), - (468, 149, 'attending', '2020-07-06 00:45:03', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058686'), - (468, 150, 'attending', '2020-07-06 00:44:46', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058687'), - (468, 151, 'maybe', '2020-08-05 18:44:23', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058688'), - (468, 152, 'attending', '2020-08-31 00:05:00', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058689'), - (468, 153, 'not_attending', '2020-07-30 05:18:10', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058690'), - (468, 154, 'attending', '2020-07-06 00:44:56', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058691'), - (468, 155, 'attending', '2020-08-15 18:06:43', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058692'), - (468, 156, 'attending', '2020-09-11 17:20:31', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058693'), - (468, 157, 'attending', '2020-09-08 01:39:43', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058694'), - (468, 158, 'attending', '2020-09-23 22:04:19', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058695'), - (468, 159, 'attending', '2020-09-27 17:14:10', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058696'), - (468, 160, 'attending', '2020-10-24 15:07:49', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058697'), - (468, 161, 'attending', '2020-10-09 17:54:24', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058698'), - (468, 164, 'attending', '2020-11-13 21:04:30', '2025-12-17 19:47:54', 'NmLXw9Nm', '3058701'), - (468, 165, 'attending', '2020-11-07 23:48:11', '2025-12-17 19:47:53', 'NmLXw9Nm', '3058702'), - (468, 166, 'attending', '2020-11-14 23:23:23', '2025-12-17 19:47:54', 'NmLXw9Nm', '3058704'), - (468, 167, 'attending', '2020-11-14 23:23:24', '2025-12-17 19:47:54', 'NmLXw9Nm', '3058705'), - (468, 171, 'attending', '2020-06-11 20:54:40', '2025-12-17 19:47:58', 'NmLXw9Nm', '3058743'), - (468, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'NmLXw9Nm', '3058959'), - (468, 173, 'attending', '2020-06-19 22:39:31', '2025-12-17 19:47:58', 'NmLXw9Nm', '3067093'), - (468, 175, 'attending', '2020-06-08 22:27:19', '2025-12-17 19:47:58', 'NmLXw9Nm', '3068305'), - (468, 181, 'attending', '2020-06-18 19:19:48', '2025-12-17 19:47:58', 'NmLXw9Nm', '3074513'), - (468, 182, 'attending', '2020-06-27 18:25:37', '2025-12-17 19:47:55', 'NmLXw9Nm', '3074514'), - (468, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'NmLXw9Nm', '3075228'), - (468, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'NmLXw9Nm', '3075456'), - (468, 186, 'attending', '2020-06-18 19:20:12', '2025-12-17 19:47:55', 'NmLXw9Nm', '3083791'), - (468, 187, 'attending', '2020-06-18 22:37:32', '2025-12-17 19:47:55', 'NmLXw9Nm', '3085151'), - (468, 189, 'attending', '2020-06-20 02:18:34', '2025-12-17 19:47:58', 'NmLXw9Nm', '3087016'), - (468, 190, 'not_attending', '2020-07-04 02:25:05', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087258'), - (468, 191, 'attending', '2020-07-04 02:25:23', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087259'), - (468, 192, 'not_attending', '2020-07-18 20:56:53', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087260'), - (468, 193, 'attending', '2020-07-06 00:44:45', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087261'), - (468, 194, 'not_attending', '2020-07-30 05:18:05', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087262'), - (468, 195, 'attending', '2020-07-06 00:44:54', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087264'), - (468, 196, 'not_attending', '2020-08-15 18:06:38', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087265'), - (468, 197, 'attending', '2020-08-05 18:44:26', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087266'), - (468, 198, 'not_attending', '2020-08-27 18:53:39', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087267'), - (468, 199, 'attending', '2020-08-31 00:04:58', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087268'), - (468, 200, 'attending', '2020-09-01 17:34:54', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087269'), - (468, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'NmLXw9Nm', '3088653'), - (468, 203, 'attending', '2020-06-22 06:42:35', '2025-12-17 19:47:58', 'NmLXw9Nm', '3091624'), - (468, 207, 'maybe', '2020-07-24 18:56:45', '2025-12-17 19:47:55', 'NmLXw9Nm', '3104807'), - (468, 208, 'attending', '2020-08-07 20:28:06', '2025-12-17 19:47:56', 'NmLXw9Nm', '3104808'), - (468, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'NmLXw9Nm', '3106813'), - (468, 210, 'attending', '2020-06-30 01:58:01', '2025-12-17 19:47:55', 'NmLXw9Nm', '3108972'), - (468, 211, 'attending', '2020-07-01 21:53:48', '2025-12-17 19:47:55', 'NmLXw9Nm', '3113785'), - (468, 213, 'attending', '2020-07-05 16:55:07', '2025-12-17 19:47:55', 'NmLXw9Nm', '3121083'), - (468, 219, 'not_attending', '2020-08-18 15:14:58', '2025-12-17 19:47:56', 'NmLXw9Nm', '3129263'), - (468, 223, 'attending', '2020-09-11 17:20:33', '2025-12-17 19:47:56', 'NmLXw9Nm', '3129980'), - (468, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'NmLXw9Nm', '3132817'), - (468, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'NmLXw9Nm', '3132820'), - (468, 229, 'attending', '2020-07-15 18:05:58', '2025-12-17 19:47:55', 'NmLXw9Nm', '3134135'), - (468, 230, 'attending', '2020-07-19 02:43:46', '2025-12-17 19:47:55', 'NmLXw9Nm', '3139232'), - (468, 232, 'attending', '2020-07-19 20:39:32', '2025-12-17 19:47:55', 'NmLXw9Nm', '3139770'), - (468, 233, 'attending', '2020-07-19 21:06:19', '2025-12-17 19:47:55', 'NmLXw9Nm', '3139773'), - (468, 235, 'not_attending', '2020-07-24 18:56:38', '2025-12-17 19:47:55', 'NmLXw9Nm', '3140861'), - (468, 236, 'attending', '2020-07-20 20:32:54', '2025-12-17 19:47:55', 'NmLXw9Nm', '3140873'), - (468, 241, 'attending', '2020-10-06 20:51:38', '2025-12-17 19:47:52', 'NmLXw9Nm', '3149472'), - (468, 242, 'not_attending', '2020-09-22 01:57:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3149473'), - (468, 263, 'attending', '2020-07-26 22:31:04', '2025-12-17 19:47:55', 'NmLXw9Nm', '3149671'), - (468, 267, 'maybe', '2020-07-29 22:34:19', '2025-12-17 19:47:55', 'NmLXw9Nm', '3152781'), - (468, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3155321'), - (468, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'NmLXw9Nm', '3162006'), - (468, 274, 'attending', '2020-08-03 20:07:05', '2025-12-17 19:47:56', 'NmLXw9Nm', '3163404'), - (468, 276, 'attending', '2020-08-04 22:52:20', '2025-12-17 19:47:56', 'NmLXw9Nm', '3163408'), - (468, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3163442'), - (468, 278, 'not_attending', '2020-08-08 03:11:21', '2025-12-17 19:47:56', 'NmLXw9Nm', '3165192'), - (468, 279, 'not_attending', '2020-08-08 03:11:32', '2025-12-17 19:47:56', 'NmLXw9Nm', '3165202'), - (468, 281, 'attending', '2020-08-05 18:43:54', '2025-12-17 19:47:56', 'NmLXw9Nm', '3166945'), - (468, 282, 'attending', '2020-08-06 21:17:00', '2025-12-17 19:47:56', 'NmLXw9Nm', '3169070'), - (468, 283, 'attending', '2020-08-08 02:55:22', '2025-12-17 19:47:56', 'NmLXw9Nm', '3169555'), - (468, 286, 'not_attending', '2020-08-19 06:19:52', '2025-12-17 19:47:56', 'NmLXw9Nm', '3170246'), - (468, 288, 'not_attending', '2020-08-19 06:19:47', '2025-12-17 19:47:56', 'NmLXw9Nm', '3170249'), - (468, 289, 'not_attending', '2020-08-28 20:53:23', '2025-12-17 19:47:56', 'NmLXw9Nm', '3170250'), - (468, 293, 'not_attending', '2020-08-13 21:01:26', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172832'), - (468, 294, 'not_attending', '2020-08-14 18:07:12', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172833'), - (468, 295, 'not_attending', '2020-08-19 06:19:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172834'), - (468, 296, 'not_attending', '2020-09-11 19:34:50', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172876'), - (468, 299, 'not_attending', '2020-08-17 21:18:31', '2025-12-17 19:47:56', 'NmLXw9Nm', '3176591'), - (468, 303, 'not_attending', '2020-08-14 18:06:35', '2025-12-17 19:47:56', 'NmLXw9Nm', '3178444'), - (468, 305, 'attending', '2020-08-17 21:11:24', '2025-12-17 19:47:56', 'NmLXw9Nm', '3179555'), - (468, 306, 'not_attending', '2020-08-21 22:05:19', '2025-12-17 19:47:56', 'NmLXw9Nm', '3179777'), - (468, 307, 'attending', '2020-08-17 15:04:46', '2025-12-17 19:47:56', 'NmLXw9Nm', '3182590'), - (468, 309, 'not_attending', '2020-08-21 22:05:15', '2025-12-17 19:47:56', 'NmLXw9Nm', '3185332'), - (468, 311, 'attending', '2020-09-08 01:39:41', '2025-12-17 19:47:56', 'NmLXw9Nm', '3186057'), - (468, 314, 'not_attending', '2020-08-25 19:03:15', '2025-12-17 19:47:56', 'NmLXw9Nm', '3188480'), - (468, 315, 'attending', '2020-08-23 16:49:50', '2025-12-17 19:47:56', 'NmLXw9Nm', '3189085'), - (468, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'NmLXw9Nm', '3191735'), - (468, 318, 'attending', '2020-09-01 14:59:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3193885'), - (468, 322, 'not_attending', '2020-09-12 20:46:25', '2025-12-17 19:47:56', 'NmLXw9Nm', '3197080'), - (468, 323, 'not_attending', '2020-09-15 18:31:03', '2025-12-17 19:47:56', 'NmLXw9Nm', '3197081'), - (468, 325, 'not_attending', '2020-09-22 01:57:54', '2025-12-17 19:47:51', 'NmLXw9Nm', '3197083'), - (468, 326, 'not_attending', '2020-09-22 01:58:13', '2025-12-17 19:47:52', 'NmLXw9Nm', '3197084'), - (468, 330, 'attending', '2020-09-01 17:34:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3197322'), - (468, 333, 'not_attending', '2020-10-06 18:45:59', '2025-12-17 19:47:52', 'NmLXw9Nm', '3199782'), - (468, 334, 'not_attending', '2020-10-08 15:58:55', '2025-12-17 19:47:52', 'NmLXw9Nm', '3199784'), - (468, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'NmLXw9Nm', '3200209'), - (468, 336, 'not_attending', '2020-09-12 20:46:27', '2025-12-17 19:47:56', 'NmLXw9Nm', '3200495'), - (468, 338, 'attending', '2020-09-04 23:09:52', '2025-12-17 19:47:56', 'NmLXw9Nm', '3203106'), - (468, 339, 'not_attending', '2020-09-10 00:04:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3204469'), - (468, 340, 'not_attending', '2020-09-12 20:46:23', '2025-12-17 19:47:56', 'NmLXw9Nm', '3204470'), - (468, 341, 'not_attending', '2020-09-22 01:58:15', '2025-12-17 19:47:52', 'NmLXw9Nm', '3204471'), - (468, 342, 'attending', '2020-10-01 22:38:52', '2025-12-17 19:47:52', 'NmLXw9Nm', '3204472'), - (468, 343, 'not_attending', '2020-09-22 01:57:50', '2025-12-17 19:47:56', 'NmLXw9Nm', '3206759'), - (468, 346, 'attending', '2020-09-10 00:54:41', '2025-12-17 19:47:56', 'NmLXw9Nm', '3207515'), - (468, 347, 'not_attending', '2020-09-22 01:58:09', '2025-12-17 19:47:51', 'NmLXw9Nm', '3207930'), - (468, 349, 'attending', '2020-09-11 21:27:06', '2025-12-17 19:47:56', 'NmLXw9Nm', '3209194'), - (468, 352, 'not_attending', '2020-09-12 20:46:32', '2025-12-17 19:47:56', 'NmLXw9Nm', '3210514'), - (468, 353, 'attending', '2020-09-13 05:35:51', '2025-12-17 19:47:56', 'NmLXw9Nm', '3210789'), - (468, 354, 'attending', '2020-09-13 20:52:32', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212570'), - (468, 355, 'not_attending', '2020-09-15 18:30:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212571'), - (468, 356, 'not_attending', '2020-09-22 01:57:55', '2025-12-17 19:47:51', 'NmLXw9Nm', '3212572'), - (468, 358, 'not_attending', '2020-09-15 18:31:11', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212579'), - (468, 359, 'attending', '2020-09-13 21:48:17', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212624'), - (468, 360, 'attending', '2020-09-14 01:30:13', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212671'), - (468, 361, 'attending', '2020-09-14 18:41:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3213323'), - (468, 362, 'attending', '2020-09-26 02:25:39', '2025-12-17 19:47:52', 'NmLXw9Nm', '3214207'), - (468, 363, 'not_attending', '2020-09-16 22:05:30', '2025-12-17 19:47:52', 'NmLXw9Nm', '3217037'), - (468, 364, 'attending', '2020-09-21 22:19:00', '2025-12-17 19:47:56', 'NmLXw9Nm', '3217106'), - (468, 365, 'not_attending', '2020-09-22 01:58:01', '2025-12-17 19:47:52', 'NmLXw9Nm', '3218510'), - (468, 366, 'not_attending', '2020-09-22 01:57:46', '2025-12-17 19:47:56', 'NmLXw9Nm', '3219750'), - (468, 367, 'not_attending', '2020-09-22 01:58:04', '2025-12-17 19:47:51', 'NmLXw9Nm', '3219751'), - (468, 375, 'not_attending', '2020-10-06 18:45:52', '2025-12-17 19:47:52', 'NmLXw9Nm', '3222825'), - (468, 378, 'not_attending', '2020-09-23 22:04:05', '2025-12-17 19:47:52', 'NmLXw9Nm', '3223725'), - (468, 379, 'attending', '2020-09-28 23:11:58', '2025-12-17 19:47:52', 'NmLXw9Nm', '3226266'), - (468, 381, 'attending', '2020-09-26 18:51:03', '2025-12-17 19:47:52', 'NmLXw9Nm', '3226871'), - (468, 384, 'attending', '2020-09-28 23:11:23', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228696'), - (468, 385, 'attending', '2020-09-28 23:14:30', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228698'), - (468, 386, 'attending', '2020-10-09 23:59:25', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228699'), - (468, 387, 'attending', '2020-09-28 23:16:37', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228700'), - (468, 388, 'attending', '2020-10-19 19:42:15', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228701'), - (468, 389, 'attending', '2020-10-01 21:36:56', '2025-12-17 19:47:52', 'NmLXw9Nm', '3231284'), - (468, 394, 'not_attending', '2021-01-04 09:31:17', '2025-12-17 19:47:48', 'NmLXw9Nm', '3236449'), - (468, 397, 'not_attending', '2021-05-25 23:48:35', '2025-12-17 19:47:47', 'NmLXw9Nm', '3236452'), - (468, 399, 'attending', '2020-11-13 00:17:37', '2025-12-17 19:47:54', 'NmLXw9Nm', '3236454'), - (468, 400, 'not_attending', '2021-02-04 01:04:27', '2025-12-17 19:47:50', 'NmLXw9Nm', '3236455'), - (468, 408, 'not_attending', '2021-02-18 03:21:38', '2025-12-17 19:47:50', 'NmLXw9Nm', '3236466'), - (468, 412, 'not_attending', '2020-10-06 18:45:55', '2025-12-17 19:47:52', 'NmLXw9Nm', '3236636'), - (468, 415, 'attending', '2020-10-06 18:45:45', '2025-12-17 19:47:52', 'NmLXw9Nm', '3238044'), - (468, 416, 'not_attending', '2020-10-06 23:07:18', '2025-12-17 19:47:52', 'NmLXw9Nm', '3238073'), - (468, 420, 'attending', '2020-10-11 22:35:21', '2025-12-17 19:47:52', 'NmLXw9Nm', '3245293'), - (468, 421, 'attending', '2020-10-11 22:35:18', '2025-12-17 19:47:52', 'NmLXw9Nm', '3245294'), - (468, 422, 'attending', '2020-10-11 22:35:10', '2025-12-17 19:47:53', 'NmLXw9Nm', '3245295'), - (468, 423, 'attending', '2020-10-11 22:35:16', '2025-12-17 19:47:53', 'NmLXw9Nm', '3245296'), - (468, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLXw9Nm', '3245751'), - (468, 426, 'attending', '2020-10-17 04:45:50', '2025-12-17 19:47:52', 'NmLXw9Nm', '3250232'), - (468, 427, 'attending', '2020-10-14 14:37:36', '2025-12-17 19:47:53', 'NmLXw9Nm', '3250233'), - (468, 428, 'attending', '2020-10-16 20:05:29', '2025-12-17 19:47:53', 'NmLXw9Nm', '3250332'), - (468, 429, 'attending', '2020-11-02 01:49:21', '2025-12-17 19:47:54', 'NmLXw9Nm', '3250523'), - (468, 438, 'attending', '2020-10-28 22:58:15', '2025-12-17 19:47:53', 'NmLXw9Nm', '3256163'), - (468, 439, 'not_attending', '2020-10-28 21:05:39', '2025-12-17 19:47:53', 'NmLXw9Nm', '3256164'), - (468, 440, 'attending', '2020-10-18 16:07:14', '2025-12-17 19:47:53', 'NmLXw9Nm', '3256168'), - (468, 441, 'attending', '2020-10-18 16:11:00', '2025-12-17 19:47:54', 'NmLXw9Nm', '3256169'), - (468, 442, 'attending', '2020-10-22 00:40:01', '2025-12-17 19:47:52', 'NmLXw9Nm', '3260345'), - (468, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLXw9Nm', '3263578'), - (468, 444, 'attending', '2020-10-30 21:39:45', '2025-12-17 19:47:53', 'NmLXw9Nm', '3263745'), - (468, 445, 'not_attending', '2020-11-12 23:47:01', '2025-12-17 19:47:54', 'NmLXw9Nm', '3266138'), - (468, 446, 'attending', '2020-10-27 01:08:00', '2025-12-17 19:47:53', 'NmLXw9Nm', '3267163'), - (468, 451, 'not_attending', '2020-11-02 19:03:02', '2025-12-17 19:47:53', 'NmLXw9Nm', '3272186'), - (468, 455, 'not_attending', '2020-11-07 03:45:46', '2025-12-17 19:47:53', 'NmLXw9Nm', '3276391'), - (468, 456, 'attending', '2020-11-05 05:33:26', '2025-12-17 19:47:54', 'NmLXw9Nm', '3276428'), - (468, 458, 'not_attending', '2020-11-10 18:44:51', '2025-12-17 19:47:53', 'NmLXw9Nm', '3279233'), - (468, 459, 'attending', '2020-11-08 04:59:17', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281467'), - (468, 460, 'not_attending', '2020-11-19 22:33:30', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281468'), - (468, 461, 'attending', '2020-11-08 05:13:03', '2025-12-17 19:47:53', 'NmLXw9Nm', '3281469'), - (468, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'NmLXw9Nm', '3281470'), - (468, 464, 'not_attending', '2020-11-14 23:23:19', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281554'), - (468, 466, 'not_attending', '2020-11-14 23:23:08', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281829'), - (468, 467, 'attending', '2020-11-09 00:14:41', '2025-12-17 19:47:54', 'NmLXw9Nm', '3282756'), - (468, 468, 'attending', '2020-11-10 22:36:41', '2025-12-17 19:47:54', 'NmLXw9Nm', '3285413'), - (468, 469, 'attending', '2020-11-10 22:37:10', '2025-12-17 19:47:54', 'NmLXw9Nm', '3285414'), - (468, 471, 'not_attending', '2020-11-14 23:23:12', '2025-12-17 19:47:54', 'NmLXw9Nm', '3285445'), - (468, 474, 'attending', '2020-11-11 23:24:04', '2025-12-17 19:47:54', 'NmLXw9Nm', '3286570'), - (468, 476, 'not_attending', '2020-11-14 23:23:10', '2025-12-17 19:47:54', 'NmLXw9Nm', '3286982'), - (468, 477, 'maybe', '2020-12-04 23:46:19', '2025-12-17 19:47:54', 'NmLXw9Nm', '3289559'), - (468, 479, 'attending', '2020-11-18 21:19:25', '2025-12-17 19:47:54', 'NmLXw9Nm', '3295306'), - (468, 481, 'not_attending', '2020-11-19 23:03:00', '2025-12-17 19:47:54', 'NmLXw9Nm', '3297764'), - (468, 483, 'attending', '2020-11-20 00:05:40', '2025-12-17 19:47:54', 'NmLXw9Nm', '3297791'), - (468, 484, 'not_attending', '2020-11-20 23:32:15', '2025-12-17 19:47:54', 'NmLXw9Nm', '3297792'), - (468, 487, 'attending', '2020-11-27 21:14:34', '2025-12-17 19:47:54', 'NmLXw9Nm', '3311122'), - (468, 488, 'attending', '2020-11-26 18:06:01', '2025-12-17 19:47:54', 'NmLXw9Nm', '3312757'), - (468, 493, 'attending', '2020-11-29 04:42:28', '2025-12-17 19:47:54', 'NmLXw9Nm', '3313856'), - (468, 496, 'attending', '2020-11-29 21:44:27', '2025-12-17 19:47:54', 'NmLXw9Nm', '3314269'), - (468, 497, 'attending', '2020-11-29 21:44:28', '2025-12-17 19:47:55', 'NmLXw9Nm', '3314270'), - (468, 498, 'attending', '2020-11-29 22:08:39', '2025-12-17 19:47:54', 'NmLXw9Nm', '3314302'), - (468, 499, 'attending', '2020-11-30 05:05:07', '2025-12-17 19:47:55', 'NmLXw9Nm', '3314909'), - (468, 500, 'maybe', '2020-12-14 20:47:15', '2025-12-17 19:47:55', 'NmLXw9Nm', '3314964'), - (468, 501, 'attending', '2020-12-02 03:26:07', '2025-12-17 19:47:54', 'NmLXw9Nm', '3317834'), - (468, 502, 'not_attending', '2020-12-11 23:52:10', '2025-12-17 19:47:55', 'NmLXw9Nm', '3323365'), - (468, 507, 'attending', '2020-12-07 20:47:28', '2025-12-17 19:47:48', 'NmLXw9Nm', '3324148'), - (468, 510, 'not_attending', '2021-01-27 07:06:18', '2025-12-17 19:47:49', 'NmLXw9Nm', '3324233'), - (468, 513, 'not_attending', '2020-12-20 00:13:43', '2025-12-17 19:47:55', 'NmLXw9Nm', '3329383'), - (468, 514, 'attending', '2020-12-10 19:14:50', '2025-12-17 19:47:55', 'NmLXw9Nm', '3329400'), - (468, 517, 'attending', '2020-12-14 20:50:28', '2025-12-17 19:47:48', 'NmLXw9Nm', '3337137'), - (468, 518, 'attending', '2020-12-14 20:50:27', '2025-12-17 19:47:48', 'NmLXw9Nm', '3337138'), - (468, 526, 'maybe', '2020-12-29 20:38:29', '2025-12-17 19:47:48', 'NmLXw9Nm', '3351539'), - (468, 528, 'attending', '2021-01-03 06:15:39', '2025-12-17 19:47:48', 'NmLXw9Nm', '3363022'), - (468, 529, 'not_attending', '2021-01-04 09:31:05', '2025-12-17 19:47:48', 'NmLXw9Nm', '3364568'), - (468, 530, 'not_attending', '2021-01-04 09:31:02', '2025-12-17 19:47:48', 'NmLXw9Nm', '3373923'), - (468, 531, 'not_attending', '2021-01-02 05:22:13', '2025-12-17 19:47:48', 'NmLXw9Nm', '3378210'), - (468, 532, 'not_attending', '2021-01-04 07:06:44', '2025-12-17 19:47:48', 'NmLXw9Nm', '3381412'), - (468, 533, 'not_attending', '2021-01-04 09:31:12', '2025-12-17 19:47:48', 'NmLXw9Nm', '3382812'), - (468, 535, 'not_attending', '2021-01-07 03:25:23', '2025-12-17 19:47:48', 'NmLXw9Nm', '3384729'), - (468, 536, 'attending', '2021-01-06 02:20:41', '2025-12-17 19:47:48', 'NmLXw9Nm', '3386848'), - (468, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'NmLXw9Nm', '3389527'), - (468, 541, 'attending', '2021-01-09 08:42:05', '2025-12-17 19:47:48', 'NmLXw9Nm', '3391683'), - (468, 542, 'attending', '2021-01-10 07:38:15', '2025-12-17 19:47:48', 'NmLXw9Nm', '3395013'), - (468, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'NmLXw9Nm', '3396499'), - (468, 545, 'attending', '2021-01-19 03:30:00', '2025-12-17 19:47:49', 'NmLXw9Nm', '3396502'), - (468, 546, 'not_attending', '2021-01-20 02:00:10', '2025-12-17 19:47:49', 'NmLXw9Nm', '3396503'), - (468, 547, 'maybe', '2021-01-20 05:08:07', '2025-12-17 19:47:49', 'NmLXw9Nm', '3396504'), - (468, 548, 'maybe', '2021-01-14 22:43:19', '2025-12-17 19:47:48', 'NmLXw9Nm', '3403650'), - (468, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'NmLXw9Nm', '3406988'), - (468, 550, 'not_attending', '2021-01-17 05:46:41', '2025-12-17 19:47:48', 'NmLXw9Nm', '3407018'), - (468, 553, 'maybe', '2021-01-14 22:43:17', '2025-12-17 19:47:48', 'NmLXw9Nm', '3407248'), - (468, 555, 'not_attending', '2021-01-23 22:22:05', '2025-12-17 19:47:49', 'NmLXw9Nm', '3416576'), - (468, 557, 'attending', '2021-01-21 00:59:00', '2025-12-17 19:47:49', 'NmLXw9Nm', '3418748'), - (468, 558, 'not_attending', '2021-01-22 23:54:23', '2025-12-17 19:47:49', 'NmLXw9Nm', '3418925'), - (468, 559, 'not_attending', '2021-01-27 07:06:12', '2025-12-17 19:47:49', 'NmLXw9Nm', '3421439'), - (468, 560, 'attending', '2021-01-21 21:03:57', '2025-12-17 19:47:49', 'NmLXw9Nm', '3421715'), - (468, 561, 'not_attending', '2021-01-23 22:22:03', '2025-12-17 19:47:49', 'NmLXw9Nm', '3421916'), - (468, 565, 'not_attending', '2021-01-27 07:05:58', '2025-12-17 19:47:49', 'NmLXw9Nm', '3426083'), - (468, 567, 'maybe', '2021-01-30 21:25:29', '2025-12-17 19:47:50', 'NmLXw9Nm', '3428895'), - (468, 568, 'attending', '2021-01-28 05:40:12', '2025-12-17 19:47:50', 'NmLXw9Nm', '3430267'), - (468, 569, 'not_attending', '2021-01-27 07:06:01', '2025-12-17 19:47:49', 'NmLXw9Nm', '3432673'), - (468, 570, 'attending', '2021-01-26 04:25:13', '2025-12-17 19:47:50', 'NmLXw9Nm', '3435538'), - (468, 571, 'not_attending', '2021-02-11 20:36:37', '2025-12-17 19:47:50', 'NmLXw9Nm', '3435539'), - (468, 573, 'not_attending', '2021-02-26 16:26:36', '2025-12-17 19:47:50', 'NmLXw9Nm', '3435542'), - (468, 575, 'attending', '2021-01-28 05:40:11', '2025-12-17 19:47:50', 'NmLXw9Nm', '3437492'), - (468, 576, 'not_attending', '2021-01-28 05:38:51', '2025-12-17 19:47:50', 'NmLXw9Nm', '3438748'), - (468, 577, 'not_attending', '2021-01-28 21:28:55', '2025-12-17 19:47:49', 'NmLXw9Nm', '3439167'), - (468, 578, 'not_attending', '2021-01-28 19:59:04', '2025-12-17 19:47:50', 'NmLXw9Nm', '3440043'), - (468, 579, 'not_attending', '2021-02-04 01:04:44', '2025-12-17 19:47:50', 'NmLXw9Nm', '3440978'), - (468, 581, 'attending', '2021-01-30 03:48:17', '2025-12-17 19:47:50', 'NmLXw9Nm', '3445029'), - (468, 582, 'attending', '2021-02-02 01:04:59', '2025-12-17 19:47:50', 'NmLXw9Nm', '3445769'), - (468, 583, 'attending', '2021-02-01 21:50:03', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449144'), - (468, 584, 'not_attending', '2021-02-04 01:04:24', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449466'), - (468, 588, 'not_attending', '2021-02-12 21:36:07', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449471'), - (468, 589, 'attending', '2021-02-20 04:03:44', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449473'), - (468, 591, 'attending', '2021-02-04 19:45:01', '2025-12-17 19:47:50', 'NmLXw9Nm', '3465880'), - (468, 592, 'not_attending', '2021-02-23 03:46:29', '2025-12-17 19:47:50', 'NmLXw9Nm', '3467757'), - (468, 597, 'not_attending', '2021-03-11 20:06:58', '2025-12-17 19:47:51', 'NmLXw9Nm', '3467764'), - (468, 599, 'not_attending', '2021-02-15 23:35:56', '2025-12-17 19:47:50', 'NmLXw9Nm', '3468117'), - (468, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'NmLXw9Nm', '3468125'), - (468, 602, 'not_attending', '2021-02-11 04:05:06', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470303'), - (468, 603, 'attending', '2021-02-14 05:31:36', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470304'), - (468, 604, 'attending', '2021-02-27 21:22:56', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470305'), - (468, 605, 'attending', '2021-02-15 00:38:32', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470991'), - (468, 607, 'not_attending', '2021-02-17 22:39:40', '2025-12-17 19:47:50', 'NmLXw9Nm', '3471882'), - (468, 608, 'attending', '2021-02-09 03:27:01', '2025-12-17 19:47:50', 'NmLXw9Nm', '3475332'), - (468, 609, 'not_attending', '2021-02-11 20:36:23', '2025-12-17 19:47:50', 'NmLXw9Nm', '3480916'), - (468, 610, 'attending', '2021-02-11 04:11:36', '2025-12-17 19:47:50', 'NmLXw9Nm', '3482159'), - (468, 611, 'attending', '2021-02-11 04:01:14', '2025-12-17 19:47:50', 'NmLXw9Nm', '3482659'), - (468, 612, 'attending', '2021-02-14 04:31:33', '2025-12-17 19:47:50', 'NmLXw9Nm', '3490040'), - (468, 613, 'attending', '2021-02-14 04:31:35', '2025-12-17 19:47:50', 'NmLXw9Nm', '3490041'), - (468, 614, 'attending', '2021-02-14 04:34:08', '2025-12-17 19:47:51', 'NmLXw9Nm', '3490042'), - (468, 615, 'not_attending', '2021-02-20 22:32:35', '2025-12-17 19:47:50', 'NmLXw9Nm', '3490045'), - (468, 616, 'attending', '2021-02-21 20:01:12', '2025-12-17 19:47:50', 'NmLXw9Nm', '3493478'), - (468, 618, 'attending', '2021-02-19 20:19:08', '2025-12-17 19:47:50', 'NmLXw9Nm', '3503991'), - (468, 619, 'attending', '2021-02-20 22:53:43', '2025-12-17 19:47:50', 'NmLXw9Nm', '3506310'), - (468, 621, 'attending', '2021-03-01 20:30:21', '2025-12-17 19:47:51', 'NmLXw9Nm', '3517815'), - (468, 622, 'attending', '2021-03-10 20:38:59', '2025-12-17 19:47:51', 'NmLXw9Nm', '3517816'), - (468, 623, 'not_attending', '2021-02-28 21:45:43', '2025-12-17 19:47:51', 'NmLXw9Nm', '3523941'), - (468, 624, 'attending', '2021-02-27 21:22:52', '2025-12-17 19:47:50', 'NmLXw9Nm', '3528556'), - (468, 625, 'attending', '2021-02-28 21:05:50', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533296'), - (468, 626, 'attending', '2021-02-28 21:05:49', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533298'), - (468, 627, 'attending', '2021-02-28 21:16:03', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533303'), - (468, 628, 'attending', '2021-02-28 21:17:19', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533305'), - (468, 629, 'attending', '2021-02-28 22:42:48', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533307'), - (468, 631, 'maybe', '2021-03-06 22:46:36', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533850'), - (468, 637, 'attending', '2021-03-01 18:27:35', '2025-12-17 19:47:51', 'NmLXw9Nm', '3536411'), - (468, 638, 'attending', '2021-03-01 18:41:29', '2025-12-17 19:47:44', 'NmLXw9Nm', '3536632'), - (468, 639, 'maybe', '2021-03-21 06:03:30', '2025-12-17 19:47:51', 'NmLXw9Nm', '3536656'), - (468, 641, 'attending', '2021-03-21 22:58:08', '2025-12-17 19:47:44', 'NmLXw9Nm', '3539916'), - (468, 642, 'attending', '2021-04-09 20:10:06', '2025-12-17 19:47:44', 'NmLXw9Nm', '3539917'), - (468, 643, 'attending', '2021-04-15 23:09:26', '2025-12-17 19:47:45', 'NmLXw9Nm', '3539918'), - (468, 644, 'attending', '2021-04-21 21:59:32', '2025-12-17 19:47:45', 'NmLXw9Nm', '3539919'), - (468, 645, 'attending', '2021-05-06 20:44:31', '2025-12-17 19:47:46', 'NmLXw9Nm', '3539920'), - (468, 646, 'attending', '2021-05-06 20:44:39', '2025-12-17 19:47:46', 'NmLXw9Nm', '3539921'), - (468, 647, 'not_attending', '2021-05-20 21:34:35', '2025-12-17 19:47:46', 'NmLXw9Nm', '3539922'), - (468, 648, 'attending', '2021-05-29 16:06:58', '2025-12-17 19:47:47', 'NmLXw9Nm', '3539923'), - (468, 649, 'attending', '2021-03-11 20:07:04', '2025-12-17 19:47:51', 'NmLXw9Nm', '3539927'), - (468, 650, 'not_attending', '2021-03-27 21:32:12', '2025-12-17 19:47:44', 'NmLXw9Nm', '3539928'), - (468, 651, 'attending', '2021-03-10 20:39:29', '2025-12-17 19:47:51', 'NmLXw9Nm', '3541045'), - (468, 652, 'attending', '2021-03-05 20:05:26', '2025-12-17 19:47:51', 'NmLXw9Nm', '3544466'), - (468, 653, 'attending', '2021-03-06 23:38:13', '2025-12-17 19:47:51', 'NmLXw9Nm', '3546917'), - (468, 655, 'attending', '2021-03-11 20:07:08', '2025-12-17 19:47:51', 'NmLXw9Nm', '3547129'), - (468, 656, 'attending', '2021-03-11 20:07:06', '2025-12-17 19:47:51', 'NmLXw9Nm', '3547130'), - (468, 657, 'attending', '2021-04-17 18:16:04', '2025-12-17 19:47:45', 'NmLXw9Nm', '3547132'), - (468, 659, 'attending', '2021-04-10 21:41:30', '2025-12-17 19:47:44', 'NmLXw9Nm', '3547135'), - (468, 661, 'attending', '2021-03-21 22:58:17', '2025-12-17 19:47:44', 'NmLXw9Nm', '3547137'), - (468, 662, 'maybe', '2021-04-24 21:56:10', '2025-12-17 19:47:45', 'NmLXw9Nm', '3547138'), - (468, 664, 'attending', '2021-09-11 00:49:47', '2025-12-17 19:47:43', 'NmLXw9Nm', '3547142'), - (468, 665, 'attending', '2021-08-29 22:35:59', '2025-12-17 19:47:43', 'NmLXw9Nm', '3547143'), - (468, 667, 'maybe', '2021-08-27 17:24:30', '2025-12-17 19:47:42', 'NmLXw9Nm', '3547145'), - (468, 668, 'not_attending', '2021-05-15 18:02:24', '2025-12-17 19:47:46', 'NmLXw9Nm', '3547146'), - (468, 669, 'attending', '2021-06-26 18:01:04', '2025-12-17 19:47:38', 'NmLXw9Nm', '3547147'), - (468, 670, 'attending', '2021-06-15 20:10:11', '2025-12-17 19:47:48', 'NmLXw9Nm', '3547148'), - (468, 672, 'not_attending', '2021-05-21 02:06:28', '2025-12-17 19:47:46', 'NmLXw9Nm', '3547150'), - (468, 677, 'attending', '2021-05-29 21:19:28', '2025-12-17 19:47:47', 'NmLXw9Nm', '3547155'), - (468, 679, 'attending', '2021-03-12 02:14:41', '2025-12-17 19:47:44', 'NmLXw9Nm', '3547168'), - (468, 680, 'attending', '2021-03-07 05:19:04', '2025-12-17 19:47:51', 'NmLXw9Nm', '3547700'), - (468, 683, 'not_attending', '2021-03-11 07:37:23', '2025-12-17 19:47:51', 'NmLXw9Nm', '3548818'), - (468, 684, 'not_attending', '2021-03-11 20:06:56', '2025-12-17 19:47:51', 'NmLXw9Nm', '3549257'), - (468, 686, 'attending', '2021-03-09 19:54:24', '2025-12-17 19:47:51', 'NmLXw9Nm', '3553333'), - (468, 687, 'not_attending', '2021-03-09 21:52:26', '2025-12-17 19:47:51', 'NmLXw9Nm', '3553405'), - (468, 690, 'not_attending', '2021-03-15 18:04:09', '2025-12-17 19:47:44', 'NmLXw9Nm', '3559954'), - (468, 692, 'attending', '2021-03-13 22:34:22', '2025-12-17 19:47:51', 'NmLXw9Nm', '3561995'), - (468, 695, 'attending', '2021-03-14 05:34:10', '2025-12-17 19:47:51', 'NmLXw9Nm', '3567535'), - (468, 696, 'attending', '2021-03-14 05:37:37', '2025-12-17 19:47:51', 'NmLXw9Nm', '3567536'), - (468, 697, 'attending', '2021-03-14 05:48:48', '2025-12-17 19:47:44', 'NmLXw9Nm', '3567537'), - (468, 705, 'attending', '2021-03-19 17:01:14', '2025-12-17 19:47:44', 'NmLXw9Nm', '3581895'), - (468, 706, 'not_attending', '2021-04-18 16:38:44', '2025-12-17 19:47:45', 'NmLXw9Nm', '3582734'), - (468, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLXw9Nm', '3583262'), - (468, 711, 'attending', '2021-03-22 05:29:15', '2025-12-17 19:47:44', 'NmLXw9Nm', '3588075'), - (468, 716, 'attending', '2021-03-25 06:25:50', '2025-12-17 19:47:44', 'NmLXw9Nm', '3618353'), - (468, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLXw9Nm', '3619523'), - (468, 720, 'attending', '2021-03-29 01:26:44', '2025-12-17 19:47:44', 'NmLXw9Nm', '3643450'), - (468, 721, 'attending', '2021-03-29 03:56:15', '2025-12-17 19:47:44', 'NmLXw9Nm', '3643622'), - (468, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLXw9Nm', '3661369'), - (468, 728, 'not_attending', '2021-04-14 21:50:02', '2025-12-17 19:47:44', 'NmLXw9Nm', '3668073'), - (468, 730, 'not_attending', '2021-05-03 03:47:51', '2025-12-17 19:47:46', 'NmLXw9Nm', '3668076'), - (468, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLXw9Nm', '3674262'), - (468, 734, 'attending', '2021-04-04 20:34:44', '2025-12-17 19:47:44', 'NmLXw9Nm', '3676806'), - (468, 735, 'not_attending', '2021-05-02 18:36:10', '2025-12-17 19:47:46', 'NmLXw9Nm', '3677402'), - (468, 740, 'not_attending', '2021-04-13 18:40:01', '2025-12-17 19:47:46', 'NmLXw9Nm', '3680617'), - (468, 750, 'attending', '2021-04-09 20:32:25', '2025-12-17 19:47:44', 'NmLXw9Nm', '3689962'), - (468, 752, 'not_attending', '2021-04-15 23:09:07', '2025-12-17 19:47:44', 'NmLXw9Nm', '3699422'), - (468, 753, 'not_attending', '2021-04-17 17:09:25', '2025-12-17 19:47:45', 'NmLXw9Nm', '3701861'), - (468, 754, 'attending', '2021-04-12 04:39:41', '2025-12-17 19:47:45', 'NmLXw9Nm', '3701863'), - (468, 755, 'not_attending', '2021-04-17 18:24:26', '2025-12-17 19:47:45', 'NmLXw9Nm', '3701864'), - (468, 762, 'attending', '2021-04-17 18:23:40', '2025-12-17 19:47:45', 'NmLXw9Nm', '3719118'), - (468, 763, 'attending', '2021-04-17 18:25:07', '2025-12-17 19:47:46', 'NmLXw9Nm', '3719122'), - (468, 766, 'attending', '2021-05-12 21:53:31', '2025-12-17 19:47:46', 'NmLXw9Nm', '3721383'), - (468, 771, 'attending', '2021-04-19 21:21:53', '2025-12-17 19:47:46', 'NmLXw9Nm', '3726420'), - (468, 772, 'attending', '2021-04-19 21:23:12', '2025-12-17 19:47:46', 'NmLXw9Nm', '3726421'), - (468, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLXw9Nm', '3730212'), - (468, 777, 'attending', '2021-04-26 20:29:48', '2025-12-17 19:47:46', 'NmLXw9Nm', '3746248'), - (468, 779, 'attending', '2021-04-28 02:32:14', '2025-12-17 19:47:46', 'NmLXw9Nm', '3757118'), - (468, 780, 'attending', '2021-04-28 02:34:16', '2025-12-17 19:47:46', 'NmLXw9Nm', '3757175'), - (468, 783, 'attending', '2021-05-01 00:36:06', '2025-12-17 19:47:46', 'NmLXw9Nm', '3767471'), - (468, 785, 'attending', '2021-05-04 19:10:53', '2025-12-17 19:47:46', 'NmLXw9Nm', '3779779'), - (468, 786, 'attending', '2021-05-04 20:59:49', '2025-12-17 19:47:46', 'NmLXw9Nm', '3780093'), - (468, 788, 'maybe', '2021-05-05 20:22:19', '2025-12-17 19:47:46', 'NmLXw9Nm', '3781975'), - (468, 790, 'not_attending', '2021-05-07 21:40:56', '2025-12-17 19:47:46', 'NmLXw9Nm', '3789923'), - (468, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLXw9Nm', '3793156'), - (468, 794, 'not_attending', '2021-05-25 23:48:30', '2025-12-17 19:47:47', 'NmLXw9Nm', '3793538'), - (468, 797, 'not_attending', '2021-05-25 23:48:27', '2025-12-17 19:47:47', 'NmLXw9Nm', '3796195'), - (468, 813, 'not_attending', '2021-05-15 18:02:21', '2025-12-17 19:47:46', 'NmLXw9Nm', '3810231'), - (468, 815, 'not_attending', '2021-05-25 23:48:24', '2025-12-17 19:47:47', 'NmLXw9Nm', '3818136'), - (468, 816, 'not_attending', '2021-05-18 20:25:59', '2025-12-17 19:47:46', 'NmLXw9Nm', '3826524'), - (468, 818, 'attending', '2021-05-21 02:12:38', '2025-12-17 19:47:47', 'NmLXw9Nm', '3833015'), - (468, 819, 'attending', '2021-05-25 03:26:07', '2025-12-17 19:47:47', 'NmLXw9Nm', '3833017'), - (468, 822, 'attending', '2021-06-03 03:59:40', '2025-12-17 19:47:47', 'NmLXw9Nm', '3969986'), - (468, 823, 'attending', '2021-06-15 20:10:14', '2025-12-17 19:47:48', 'NmLXw9Nm', '3974109'), - (468, 826, 'attending', '2021-06-06 02:51:34', '2025-12-17 19:47:48', 'NmLXw9Nm', '3975310'), - (468, 827, 'attending', '2021-06-01 20:31:19', '2025-12-17 19:47:47', 'NmLXw9Nm', '3975311'), - (468, 828, 'maybe', '2021-06-12 18:53:03', '2025-12-17 19:47:47', 'NmLXw9Nm', '3975312'), - (468, 834, 'not_attending', '2021-06-09 18:02:51', '2025-12-17 19:47:47', 'NmLXw9Nm', '3990439'), - (468, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLXw9Nm', '3994992'), - (468, 839, 'attending', '2021-06-06 19:03:54', '2025-12-17 19:47:47', 'NmLXw9Nm', '4002121'), - (468, 841, 'attending', '2021-06-08 02:13:17', '2025-12-17 19:47:48', 'NmLXw9Nm', '4007434'), - (468, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLXw9Nm', '4014338'), - (468, 867, 'attending', '2021-06-21 18:48:10', '2025-12-17 19:47:38', 'NmLXw9Nm', '4021848'), - (468, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLXw9Nm', '4136744'), - (468, 870, 'attending', '2021-07-03 20:43:20', '2025-12-17 19:47:39', 'NmLXw9Nm', '4136937'), - (468, 871, 'attending', '2021-07-05 22:46:43', '2025-12-17 19:47:39', 'NmLXw9Nm', '4136938'), - (468, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'NmLXw9Nm', '4136947'), - (468, 879, 'not_attending', '2021-06-28 01:06:41', '2025-12-17 19:47:38', 'NmLXw9Nm', '4147806'), - (468, 880, 'not_attending', '2021-06-19 19:15:27', '2025-12-17 19:47:48', 'NmLXw9Nm', '4205383'), - (468, 881, 'attending', '2021-06-18 18:40:54', '2025-12-17 19:47:38', 'NmLXw9Nm', '4205662'), - (468, 882, 'attending', '2021-06-19 19:19:18', '2025-12-17 19:47:38', 'NmLXw9Nm', '4207630'), - (468, 884, 'attending', '2021-08-05 22:26:11', '2025-12-17 19:47:42', 'NmLXw9Nm', '4210314'), - (468, 885, 'attending', '2021-06-25 01:29:43', '2025-12-17 19:47:38', 'NmLXw9Nm', '4222370'), - (468, 886, 'attending', '2021-06-25 01:30:51', '2025-12-17 19:47:38', 'NmLXw9Nm', '4222371'), - (468, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLXw9Nm', '4225444'), - (468, 897, 'attending', '2021-06-28 01:06:00', '2025-12-17 19:47:38', 'NmLXw9Nm', '4232132'), - (468, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLXw9Nm', '4239259'), - (468, 900, 'attending', '2021-07-24 21:16:55', '2025-12-17 19:47:40', 'NmLXw9Nm', '4240316'), - (468, 901, 'attending', '2021-07-31 21:51:28', '2025-12-17 19:47:40', 'NmLXw9Nm', '4240317'), - (468, 902, 'attending', '2021-08-04 07:07:53', '2025-12-17 19:47:41', 'NmLXw9Nm', '4240318'), - (468, 903, 'attending', '2021-08-11 19:31:05', '2025-12-17 19:47:42', 'NmLXw9Nm', '4240320'), - (468, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmLXw9Nm', '4250163'), - (468, 906, 'attending', '2021-07-05 17:29:50', '2025-12-17 19:47:39', 'NmLXw9Nm', '4253431'), - (468, 913, 'attending', '2021-07-11 21:06:27', '2025-12-17 19:47:39', 'NmLXw9Nm', '4273765'), - (468, 914, 'attending', '2021-07-14 02:19:38', '2025-12-17 19:47:39', 'NmLXw9Nm', '4273767'), - (468, 915, 'attending', '2021-07-11 21:08:41', '2025-12-17 19:47:39', 'NmLXw9Nm', '4273770'), - (468, 916, 'attending', '2021-07-11 21:09:24', '2025-12-17 19:47:40', 'NmLXw9Nm', '4273772'), - (468, 917, 'attending', '2021-07-11 23:23:41', '2025-12-17 19:47:39', 'NmLXw9Nm', '4274481'), - (468, 919, 'attending', '2021-07-17 17:43:20', '2025-12-17 19:47:39', 'NmLXw9Nm', '4275957'), - (468, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'NmLXw9Nm', '4277819'), - (468, 927, 'attending', '2021-07-29 18:45:02', '2025-12-17 19:47:40', 'NmLXw9Nm', '4297216'), - (468, 929, 'attending', '2021-07-30 04:55:34', '2025-12-17 19:47:41', 'NmLXw9Nm', '4297223'), - (468, 932, 'attending', '2021-07-22 22:55:17', '2025-12-17 19:47:42', 'NmLXw9Nm', '4301664'), - (468, 933, 'maybe', '2021-07-27 03:53:43', '2025-12-17 19:47:40', 'NmLXw9Nm', '4301723'), - (468, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmLXw9Nm', '4302093'), - (468, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLXw9Nm', '4304151'), - (468, 936, 'attending', '2021-07-24 21:22:41', '2025-12-17 19:47:40', 'NmLXw9Nm', '4305951'), - (468, 937, 'attending', '2021-07-24 01:00:07', '2025-12-17 19:47:40', 'NmLXw9Nm', '4306596'), - (468, 938, 'attending', '2021-07-24 01:00:37', '2025-12-17 19:47:40', 'NmLXw9Nm', '4306597'), - (468, 940, 'not_attending', '2021-07-30 05:51:15', '2025-12-17 19:47:40', 'NmLXw9Nm', '4309049'), - (468, 942, 'attending', '2021-07-25 22:41:21', '2025-12-17 19:47:40', 'NmLXw9Nm', '4310297'), - (468, 957, 'attending', '2021-08-04 20:54:49', '2025-12-17 19:47:41', 'NmLXw9Nm', '4338834'), - (468, 961, 'attending', '2021-08-13 18:27:01', '2025-12-17 19:47:41', 'NmLXw9Nm', '4345519'), - (468, 962, 'attending', '2021-08-12 22:46:44', '2025-12-17 19:47:41', 'NmLXw9Nm', '4346305'), - (468, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLXw9Nm', '4356801'), - (468, 972, 'attending', '2021-08-12 17:10:36', '2025-12-17 19:47:42', 'NmLXw9Nm', '4358025'), - (468, 973, 'attending', '2021-08-16 20:41:46', '2025-12-17 19:47:42', 'NmLXw9Nm', '4366186'), - (468, 974, 'maybe', '2021-08-27 17:24:25', '2025-12-17 19:47:43', 'NmLXw9Nm', '4366187'), - (468, 976, 'not_attending', '2021-08-19 21:55:54', '2025-12-17 19:47:42', 'NmLXw9Nm', '4373933'), - (468, 979, 'attending', '2021-08-21 17:26:40', '2025-12-17 19:47:42', 'NmLXw9Nm', '4379085'), - (468, 982, 'not_attending', '2021-08-27 17:24:28', '2025-12-17 19:47:42', 'NmLXw9Nm', '4389739'), - (468, 986, 'attending', '2021-08-21 17:24:40', '2025-12-17 19:47:42', 'NmLXw9Nm', '4394209'), - (468, 988, 'not_attending', '2021-08-24 16:32:16', '2025-12-17 19:47:42', 'NmLXw9Nm', '4402823'), - (468, 990, 'attending', '2021-08-28 22:26:44', '2025-12-17 19:47:43', 'NmLXw9Nm', '4420735'), - (468, 991, 'attending', '2021-08-28 22:26:59', '2025-12-17 19:47:43', 'NmLXw9Nm', '4420738'), - (468, 992, 'attending', '2021-08-28 22:27:26', '2025-12-17 19:47:33', 'NmLXw9Nm', '4420739'), - (468, 993, 'maybe', '2021-09-22 23:14:29', '2025-12-17 19:47:34', 'NmLXw9Nm', '4420741'), - (468, 994, 'attending', '2021-10-02 02:30:03', '2025-12-17 19:47:34', 'NmLXw9Nm', '4420742'), - (468, 995, 'not_attending', '2021-10-09 16:56:06', '2025-12-17 19:47:34', 'NmLXw9Nm', '4420744'), - (468, 996, 'attending', '2021-08-28 22:27:56', '2025-12-17 19:47:35', 'NmLXw9Nm', '4420747'), - (468, 997, 'attending', '2021-08-28 22:28:03', '2025-12-17 19:47:35', 'NmLXw9Nm', '4420748'), - (468, 998, 'not_attending', '2021-10-30 20:05:49', '2025-12-17 19:47:36', 'NmLXw9Nm', '4420749'), - (468, 999, 'attending', '2021-08-31 19:44:32', '2025-12-17 19:47:43', 'NmLXw9Nm', '4421150'), - (468, 1009, 'attending', '2021-10-11 22:16:37', '2025-12-17 19:47:34', 'NmLXw9Nm', '4438811'), - (468, 1016, 'attending', '2021-09-03 15:11:38', '2025-12-17 19:47:43', 'NmLXw9Nm', '4441271'), - (468, 1020, 'not_attending', '2021-09-13 15:56:45', '2025-12-17 19:47:43', 'NmLXw9Nm', '4451787'), - (468, 1022, 'attending', '2021-09-15 22:59:36', '2025-12-17 19:47:43', 'NmLXw9Nm', '4458628'), - (468, 1023, 'not_attending', '2021-09-09 19:53:26', '2025-12-17 19:47:43', 'NmLXw9Nm', '4461883'), - (468, 1025, 'attending', '2021-09-10 04:40:29', '2025-12-17 19:47:43', 'NmLXw9Nm', '4462052'), - (468, 1029, 'attending', '2021-09-12 17:45:20', '2025-12-17 19:47:43', 'NmLXw9Nm', '4473063'), - (468, 1030, 'attending', '2021-09-12 17:45:57', '2025-12-17 19:47:34', 'NmLXw9Nm', '4473064'), - (468, 1035, 'attending', '2021-09-19 18:20:10', '2025-12-17 19:47:34', 'NmLXw9Nm', '4492184'), - (468, 1040, 'attending', '2021-12-08 07:16:38', '2025-12-17 19:47:38', 'NmLXw9Nm', '4496605'), - (468, 1041, 'maybe', '2021-12-04 03:56:18', '2025-12-17 19:47:37', 'NmLXw9Nm', '4496606'), - (468, 1043, 'attending', '2021-10-23 20:13:30', '2025-12-17 19:47:35', 'NmLXw9Nm', '4496608'), - (468, 1044, 'maybe', '2021-11-06 21:18:36', '2025-12-17 19:47:36', 'NmLXw9Nm', '4496609'), - (468, 1051, 'attending', '2022-02-02 20:19:53', '2025-12-17 19:47:32', 'NmLXw9Nm', '4496616'), - (468, 1052, 'attending', '2022-01-11 01:01:34', '2025-12-17 19:47:31', 'NmLXw9Nm', '4496617'), - (468, 1053, 'attending', '2022-02-19 19:22:07', '2025-12-17 19:47:32', 'NmLXw9Nm', '4496618'), - (468, 1054, 'not_attending', '2022-03-19 04:45:33', '2025-12-17 19:47:25', 'NmLXw9Nm', '4496619'), - (468, 1055, 'attending', '2021-12-18 21:32:44', '2025-12-17 19:47:31', 'NmLXw9Nm', '4496621'), - (468, 1056, 'attending', '2022-01-08 23:36:27', '2025-12-17 19:47:31', 'NmLXw9Nm', '4496622'), - (468, 1059, 'attending', '2022-03-12 00:26:23', '2025-12-17 19:47:33', 'NmLXw9Nm', '4496626'), - (468, 1061, 'attending', '2022-02-09 20:16:40', '2025-12-17 19:47:32', 'NmLXw9Nm', '4496628'), - (468, 1062, 'attending', '2022-03-05 21:07:25', '2025-12-17 19:47:33', 'NmLXw9Nm', '4496629'), - (468, 1063, 'maybe', '2021-09-20 17:26:59', '2025-12-17 19:47:34', 'NmLXw9Nm', '4496630'), - (468, 1064, 'attending', '2021-09-21 21:59:14', '2025-12-17 19:47:34', 'NmLXw9Nm', '4499526'), - (468, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLXw9Nm', '4508342'), - (468, 1070, 'attending', '2021-09-24 23:12:49', '2025-12-17 19:47:34', 'NmLXw9Nm', '4512562'), - (468, 1072, 'maybe', '2021-10-06 22:42:03', '2025-12-17 19:47:34', 'NmLXw9Nm', '4516287'), - (468, 1077, 'maybe', '2021-10-13 00:21:16', '2025-12-17 19:47:34', 'NmLXw9Nm', '4540903'), - (468, 1085, 'attending', '2021-12-23 21:37:38', '2025-12-17 19:47:31', 'NmLXw9Nm', '4568542'), - (468, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLXw9Nm', '4568602'), - (468, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLXw9Nm', '4572153'), - (468, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmLXw9Nm', '4585962'), - (468, 1094, 'maybe', '2021-10-28 22:26:09', '2025-12-17 19:47:36', 'NmLXw9Nm', '4587337'), - (468, 1095, 'maybe', '2021-10-27 21:58:37', '2025-12-17 19:47:36', 'NmLXw9Nm', '4596356'), - (468, 1097, 'attending', '2021-11-03 20:56:31', '2025-12-17 19:47:36', 'NmLXw9Nm', '4598860'), - (468, 1098, 'maybe', '2021-10-28 02:52:01', '2025-12-17 19:47:36', 'NmLXw9Nm', '4598861'), - (468, 1099, 'attending', '2021-11-01 19:08:19', '2025-12-17 19:47:36', 'NmLXw9Nm', '4602797'), - (468, 1102, 'attending', '2021-11-04 03:59:16', '2025-12-17 19:47:37', 'NmLXw9Nm', '4612098'), - (468, 1107, 'attending', '2021-11-09 22:37:12', '2025-12-17 19:47:37', 'NmLXw9Nm', '4620697'), - (468, 1114, 'maybe', '2021-11-13 09:24:06', '2025-12-17 19:47:36', 'NmLXw9Nm', '4637896'), - (468, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLXw9Nm', '4642994'), - (468, 1117, 'maybe', '2021-12-08 07:16:28', '2025-12-17 19:47:38', 'NmLXw9Nm', '4642995'), - (468, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLXw9Nm', '4642996'), - (468, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLXw9Nm', '4642997'), - (468, 1126, 'attending', '2021-12-11 23:55:34', '2025-12-17 19:47:38', 'NmLXw9Nm', '4645687'), - (468, 1127, 'not_attending', '2021-12-12 20:50:16', '2025-12-17 19:47:38', 'NmLXw9Nm', '4645698'), - (468, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLXw9Nm', '4645704'), - (468, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLXw9Nm', '4645705'), - (468, 1130, 'not_attending', '2021-12-04 20:23:44', '2025-12-17 19:47:37', 'NmLXw9Nm', '4658824'), - (468, 1131, 'maybe', '2021-12-18 21:32:47', '2025-12-17 19:47:31', 'NmLXw9Nm', '4658825'), - (468, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLXw9Nm', '4668385'), - (468, 1144, 'attending', '2021-12-05 02:36:19', '2025-12-17 19:47:37', 'NmLXw9Nm', '4687090'), - (468, 1145, 'not_attending', '2021-12-08 07:16:22', '2025-12-17 19:47:38', 'NmLXw9Nm', '4691157'), - (468, 1146, 'not_attending', '2021-12-08 07:16:34', '2025-12-17 19:47:38', 'NmLXw9Nm', '4692841'), - (468, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLXw9Nm', '4694407'), - (468, 1156, 'not_attending', '2021-12-21 23:38:38', '2025-12-17 19:47:31', 'NmLXw9Nm', '4715207'), - (468, 1167, 'attending', '2021-12-31 23:56:01', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731015'), - (468, 1168, 'attending', '2021-12-31 23:57:05', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731043'), - (468, 1169, 'attending', '2021-12-31 23:57:53', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731044'), - (468, 1170, 'attending', '2021-12-31 23:59:34', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731045'), - (468, 1173, 'attending', '2022-01-08 23:36:30', '2025-12-17 19:47:31', 'NmLXw9Nm', '4736495'), - (468, 1174, 'attending', '2022-01-11 01:01:33', '2025-12-17 19:47:31', 'NmLXw9Nm', '4736496'), - (468, 1175, 'attending', '2022-01-11 01:01:41', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736497'), - (468, 1176, 'attending', '2022-02-02 20:19:54', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736498'), - (468, 1177, 'attending', '2022-02-09 20:16:44', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736499'), - (468, 1178, 'attending', '2022-01-27 20:07:01', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736500'), - (468, 1179, 'attending', '2022-02-19 19:22:04', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736501'), - (468, 1181, 'attending', '2022-03-05 23:51:57', '2025-12-17 19:47:33', 'NmLXw9Nm', '4736503'), - (468, 1182, 'maybe', '2022-03-12 23:29:22', '2025-12-17 19:47:33', 'NmLXw9Nm', '4736504'), - (468, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLXw9Nm', '4746789'), - (468, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmLXw9Nm', '4753929'), - (468, 1193, 'attending', '2022-01-13 03:02:16', '2025-12-17 19:47:32', 'NmLXw9Nm', '4759563'), - (468, 1201, 'attending', '2022-01-19 00:46:21', '2025-12-17 19:47:32', 'NmLXw9Nm', '4766841'), - (468, 1203, 'attending', '2022-01-21 23:23:39', '2025-12-17 19:47:32', 'NmLXw9Nm', '4773535'), - (468, 1204, 'attending', '2022-02-07 03:38:25', '2025-12-17 19:47:32', 'NmLXw9Nm', '4773576'), - (468, 1205, 'attending', '2022-03-12 00:01:38', '2025-12-17 19:47:33', 'NmLXw9Nm', '4773577'), - (468, 1206, 'attending', '2022-03-27 22:32:18', '2025-12-17 19:47:27', 'NmLXw9Nm', '4773578'), - (468, 1207, 'attending', '2022-04-27 17:50:44', '2025-12-17 19:47:28', 'NmLXw9Nm', '4773579'), - (468, 1219, 'maybe', '2022-02-03 00:34:43', '2025-12-17 19:47:32', 'NmLXw9Nm', '4788466'), - (468, 1220, 'attending', '2022-01-27 23:48:08', '2025-12-17 19:47:32', 'NmLXw9Nm', '4790257'), - (468, 1222, 'maybe', '2022-02-16 20:09:59', '2025-12-17 19:47:32', 'NmLXw9Nm', '5015628'), - (468, 1229, 'attending', '2022-02-06 22:43:44', '2025-12-17 19:47:32', 'NmLXw9Nm', '5034963'), - (468, 1232, 'not_attending', '2022-02-09 20:16:20', '2025-12-17 19:47:32', 'NmLXw9Nm', '5038850'), - (468, 1236, 'not_attending', '2022-02-17 19:19:11', '2025-12-17 19:47:32', 'NmLXw9Nm', '5045826'), - (468, 1252, 'attending', '2022-02-27 20:15:38', '2025-12-17 19:47:33', 'NmLXw9Nm', '5129121'), - (468, 1253, 'attending', '2022-02-27 20:17:24', '2025-12-17 19:47:33', 'NmLXw9Nm', '5129122'), - (468, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLXw9Nm', '5132533'), - (468, 1265, 'attending', '2022-03-11 00:06:58', '2025-12-17 19:47:33', 'NmLXw9Nm', '5160862'), - (468, 1267, 'not_attending', '2022-03-14 01:39:18', '2025-12-17 19:47:25', 'NmLXw9Nm', '5169578'), - (468, 1268, 'not_attending', '2022-03-14 01:39:04', '2025-12-17 19:47:33', 'NmLXw9Nm', '5176296'), - (468, 1269, 'attending', '2022-03-13 21:41:44', '2025-12-17 19:47:25', 'NmLXw9Nm', '5179439'), - (468, 1272, 'maybe', '2022-03-19 21:09:45', '2025-12-17 19:47:25', 'NmLXw9Nm', '5186582'), - (468, 1273, 'attending', '2022-03-26 17:04:46', '2025-12-17 19:47:25', 'NmLXw9Nm', '5186583'), - (468, 1274, 'attending', '2022-03-30 06:25:21', '2025-12-17 19:47:26', 'NmLXw9Nm', '5186585'), - (468, 1275, 'attending', '2022-03-30 06:25:27', '2025-12-17 19:47:26', 'NmLXw9Nm', '5186587'), - (468, 1278, 'not_attending', '2022-03-16 02:33:49', '2025-12-17 19:47:33', 'NmLXw9Nm', '5186920'), - (468, 1279, 'not_attending', '2022-03-16 02:33:54', '2025-12-17 19:47:25', 'NmLXw9Nm', '5187212'), - (468, 1280, 'not_attending', '2022-03-17 19:21:52', '2025-12-17 19:47:25', 'NmLXw9Nm', '5189749'), - (468, 1281, 'attending', '2022-04-09 20:58:33', '2025-12-17 19:47:27', 'NmLXw9Nm', '5190437'), - (468, 1282, 'not_attending', '2022-03-20 20:13:58', '2025-12-17 19:47:25', 'NmLXw9Nm', '5191241'), - (468, 1284, 'attending', '2022-04-06 19:03:24', '2025-12-17 19:47:27', 'NmLXw9Nm', '5195095'), - (468, 1287, 'attending', '2022-03-23 00:42:27', '2025-12-17 19:47:25', 'NmLXw9Nm', '5199425'), - (468, 1291, 'not_attending', '2022-03-24 02:37:44', '2025-12-17 19:47:25', 'NmLXw9Nm', '5200458'), - (468, 1293, 'attending', '2022-03-27 22:32:24', '2025-12-17 19:47:27', 'NmLXw9Nm', '5214641'), - (468, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'NmLXw9Nm', '5215989'), - (468, 1298, 'attending', '2022-03-29 07:13:49', '2025-12-17 19:47:25', 'NmLXw9Nm', '5216645'), - (468, 1300, 'attending', '2022-03-30 06:27:06', '2025-12-17 19:47:25', 'NmLXw9Nm', '5217936'), - (468, 1301, 'attending', '2022-04-01 22:49:57', '2025-12-17 19:47:26', 'NmLXw9Nm', '5218175'), - (468, 1303, 'attending', '2022-04-08 19:55:34', '2025-12-17 19:47:27', 'NmLXw9Nm', '5222531'), - (468, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLXw9Nm', '5223686'), - (468, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLXw9Nm', '5227432'), - (468, 1312, 'maybe', '2022-04-15 18:44:40', '2025-12-17 19:47:27', 'NmLXw9Nm', '5231459'), - (468, 1313, 'not_attending', '2022-04-08 03:38:52', '2025-12-17 19:47:27', 'NmLXw9Nm', '5231461'), - (468, 1314, 'attending', '2022-04-11 18:38:17', '2025-12-17 19:47:27', 'NmLXw9Nm', '5233137'), - (468, 1316, 'attending', '2022-04-10 21:42:30', '2025-12-17 19:47:27', 'NmLXw9Nm', '5237536'), - (468, 1319, 'not_attending', '2022-04-22 19:39:49', '2025-12-17 19:47:27', 'NmLXw9Nm', '5238353'), - (468, 1322, 'not_attending', '2022-04-26 03:20:42', '2025-12-17 19:47:27', 'NmLXw9Nm', '5238356'), - (468, 1328, 'attending', '2022-04-12 16:38:34', '2025-12-17 19:47:27', 'NmLXw9Nm', '5238759'), - (468, 1329, 'attending', '2022-04-12 16:38:29', '2025-12-17 19:47:27', 'NmLXw9Nm', '5240135'), - (468, 1330, 'not_attending', '2022-04-18 19:02:44', '2025-12-17 19:47:27', 'NmLXw9Nm', '5242155'), - (468, 1332, 'not_attending', '2022-04-15 18:44:31', '2025-12-17 19:47:27', 'NmLXw9Nm', '5243274'), - (468, 1333, 'not_attending', '2022-04-13 22:48:39', '2025-12-17 19:47:27', 'NmLXw9Nm', '5243711'), - (468, 1335, 'not_attending', '2022-04-14 22:36:46', '2025-12-17 19:47:27', 'NmLXw9Nm', '5244906'), - (468, 1336, 'attending', '2022-04-14 22:59:21', '2025-12-17 19:47:27', 'NmLXw9Nm', '5244915'), - (468, 1337, 'attending', '2022-04-20 16:09:37', '2025-12-17 19:47:27', 'NmLXw9Nm', '5245036'), - (468, 1340, 'attending', '2022-04-15 18:47:54', '2025-12-17 19:47:27', 'NmLXw9Nm', '5245754'), - (468, 1341, 'attending', '2022-04-15 18:49:13', '2025-12-17 19:47:28', 'NmLXw9Nm', '5245755'), - (468, 1345, 'attending', '2022-04-18 00:58:25', '2025-12-17 19:47:27', 'NmLXw9Nm', '5247466'), - (468, 1346, 'attending', '2022-04-22 19:39:28', '2025-12-17 19:47:27', 'NmLXw9Nm', '5247467'), - (468, 1349, 'attending', '2022-04-20 16:10:27', '2025-12-17 19:47:27', 'NmLXw9Nm', '5249631'), - (468, 1351, 'not_attending', '2022-05-02 01:48:32', '2025-12-17 19:47:28', 'NmLXw9Nm', '5251561'), - (468, 1352, 'not_attending', '2022-05-02 01:48:37', '2025-12-17 19:47:28', 'NmLXw9Nm', '5251618'), - (468, 1354, 'not_attending', '2022-04-23 20:49:40', '2025-12-17 19:47:27', 'NmLXw9Nm', '5252569'), - (468, 1355, 'attending', '2022-04-21 18:02:51', '2025-12-17 19:47:27', 'NmLXw9Nm', '5252573'), - (468, 1358, 'not_attending', '2022-04-26 03:20:36', '2025-12-17 19:47:27', 'NmLXw9Nm', '5258022'), - (468, 1359, 'not_attending', '2022-05-02 01:48:41', '2025-12-17 19:47:28', 'NmLXw9Nm', '5258360'), - (468, 1360, 'not_attending', '2022-04-26 03:20:29', '2025-12-17 19:47:27', 'NmLXw9Nm', '5260197'), - (468, 1362, 'attending', '2022-04-26 03:49:49', '2025-12-17 19:47:28', 'NmLXw9Nm', '5260800'), - (468, 1364, 'attending', '2022-04-26 03:41:44', '2025-12-17 19:47:28', 'NmLXw9Nm', '5261598'), - (468, 1365, 'attending', '2022-04-26 03:45:33', '2025-12-17 19:47:28', 'NmLXw9Nm', '5261600'), - (468, 1366, 'not_attending', '2022-04-26 21:17:54', '2025-12-17 19:47:27', 'NmLXw9Nm', '5262344'), - (468, 1367, 'not_attending', '2022-04-27 17:09:36', '2025-12-17 19:47:28', 'NmLXw9Nm', '5262345'), - (468, 1368, 'attending', '2022-04-26 20:35:41', '2025-12-17 19:47:28', 'NmLXw9Nm', '5262783'), - (468, 1369, 'attending', '2022-04-26 21:06:40', '2025-12-17 19:47:28', 'NmLXw9Nm', '5262809'), - (468, 1370, 'attending', '2022-04-27 16:56:20', '2025-12-17 19:47:28', 'NmLXw9Nm', '5263775'), - (468, 1371, 'attending', '2022-04-27 17:23:29', '2025-12-17 19:47:27', 'NmLXw9Nm', '5263784'), - (468, 1372, 'not_attending', '2022-05-02 01:48:43', '2025-12-17 19:47:28', 'NmLXw9Nm', '5264352'), - (468, 1374, 'attending', '2022-05-05 21:50:23', '2025-12-17 19:47:28', 'NmLXw9Nm', '5269930'), - (468, 1376, 'attending', '2022-05-02 01:56:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271446'), - (468, 1377, 'attending', '2022-05-02 01:57:41', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271447'), - (468, 1378, 'attending', '2022-05-02 02:08:53', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271448'), - (468, 1379, 'attending', '2022-05-21 22:18:42', '2025-12-17 19:47:29', 'NmLXw9Nm', '5271449'), - (468, 1380, 'attending', '2022-05-02 02:08:42', '2025-12-17 19:47:30', 'NmLXw9Nm', '5271450'), - (468, 1381, 'not_attending', '2022-05-02 02:28:49', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271453'), - (468, 1382, 'not_attending', '2022-05-07 16:29:30', '2025-12-17 19:47:28', 'NmLXw9Nm', '5276350'), - (468, 1383, 'not_attending', '2022-05-06 22:42:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5276469'), - (468, 1385, 'not_attending', '2022-05-11 21:43:43', '2025-12-17 19:47:28', 'NmLXw9Nm', '5277822'), - (468, 1386, 'not_attending', '2022-05-06 20:39:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5278159'), - (468, 1387, 'not_attending', '2022-05-11 20:02:15', '2025-12-17 19:47:28', 'NmLXw9Nm', '5278173'), - (468, 1389, 'not_attending', '2022-05-07 16:29:25', '2025-12-17 19:47:28', 'NmLXw9Nm', '5278202'), - (468, 1391, 'not_attending', '2022-05-08 17:55:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5279531'), - (468, 1394, 'attending', '2022-05-07 01:44:29', '2025-12-17 19:47:30', 'NmLXw9Nm', '5280667'), - (468, 1395, 'attending', '2022-05-07 16:29:05', '2025-12-17 19:47:28', 'NmLXw9Nm', '5281102'), - (468, 1396, 'attending', '2022-05-14 17:36:28', '2025-12-17 19:47:28', 'NmLXw9Nm', '5281103'), - (468, 1397, 'attending', '2022-05-18 19:51:31', '2025-12-17 19:47:29', 'NmLXw9Nm', '5281104'), - (468, 1400, 'not_attending', '2022-05-14 06:22:35', '2025-12-17 19:47:29', 'NmLXw9Nm', '5284864'), - (468, 1401, 'not_attending', '2022-05-18 19:26:46', '2025-12-17 19:47:29', 'NmLXw9Nm', '5286295'), - (468, 1404, 'maybe', '2022-05-13 22:10:10', '2025-12-17 19:47:29', 'NmLXw9Nm', '5288114'), - (468, 1405, 'maybe', '2022-05-13 22:10:05', '2025-12-17 19:47:29', 'NmLXw9Nm', '5288115'), - (468, 1406, 'attending', '2022-05-13 22:10:19', '2025-12-17 19:47:29', 'NmLXw9Nm', '5288619'), - (468, 1407, 'attending', '2022-06-03 22:59:44', '2025-12-17 19:47:30', 'NmLXw9Nm', '5363695'), - (468, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLXw9Nm', '5365960'), - (468, 1414, 'not_attending', '2022-05-18 19:51:26', '2025-12-17 19:47:29', 'NmLXw9Nm', '5368445'), - (468, 1415, 'not_attending', '2022-05-19 16:17:09', '2025-12-17 19:47:30', 'NmLXw9Nm', '5368973'), - (468, 1416, 'attending', '2022-05-19 17:31:47', '2025-12-17 19:47:30', 'NmLXw9Nm', '5369628'), - (468, 1418, 'attending', '2022-05-23 01:51:52', '2025-12-17 19:47:30', 'NmLXw9Nm', '5372162'), - (468, 1419, 'maybe', '2022-06-08 03:48:40', '2025-12-17 19:47:30', 'NmLXw9Nm', '5373081'), - (468, 1424, 'not_attending', '2022-05-26 19:26:41', '2025-12-17 19:47:30', 'NmLXw9Nm', '5375772'), - (468, 1426, 'attending', '2022-05-24 04:57:58', '2025-12-17 19:47:30', 'NmLXw9Nm', '5375873'), - (468, 1427, 'maybe', '2022-05-25 18:32:04', '2025-12-17 19:47:30', 'NmLXw9Nm', '5376074'), - (468, 1428, 'attending', '2022-05-26 18:52:42', '2025-12-17 19:47:30', 'NmLXw9Nm', '5378247'), - (468, 1431, 'attending', '2022-05-30 04:55:29', '2025-12-17 19:47:30', 'NmLXw9Nm', '5389605'), - (468, 1437, 'attending', '2022-06-01 03:20:24', '2025-12-17 19:47:30', 'NmLXw9Nm', '5394493'), - (468, 1438, 'not_attending', '2022-06-01 18:38:53', '2025-12-17 19:47:30', 'NmLXw9Nm', '5395032'), - (468, 1439, 'attending', '2022-06-01 19:35:42', '2025-12-17 19:47:30', 'NmLXw9Nm', '5396072'), - (468, 1440, 'attending', '2022-06-01 20:19:01', '2025-12-17 19:47:30', 'NmLXw9Nm', '5396080'), - (468, 1442, 'maybe', '2022-06-12 16:53:49', '2025-12-17 19:47:17', 'NmLXw9Nm', '5397265'), - (468, 1444, 'attending', '2022-06-08 19:33:13', '2025-12-17 19:47:30', 'NmLXw9Nm', '5397614'), - (468, 1449, 'not_attending', '2022-06-14 21:50:27', '2025-12-17 19:47:31', 'NmLXw9Nm', '5403335'), - (468, 1451, 'not_attending', '2022-06-14 05:24:19', '2025-12-17 19:47:17', 'NmLXw9Nm', '5403967'), - (468, 1456, 'attending', '2022-06-09 23:00:08', '2025-12-17 19:47:17', 'NmLXw9Nm', '5404779'), - (468, 1457, 'attending', '2022-06-09 23:18:44', '2025-12-17 19:47:31', 'NmLXw9Nm', '5404780'), - (468, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLXw9Nm', '5404786'), - (468, 1460, 'not_attending', '2022-06-12 16:54:12', '2025-12-17 19:47:31', 'NmLXw9Nm', '5404817'), - (468, 1462, 'maybe', '2022-06-10 17:55:06', '2025-12-17 19:47:17', 'NmLXw9Nm', '5405203'), - (468, 1463, 'not_attending', '2022-06-14 21:50:30', '2025-12-17 19:47:31', 'NmLXw9Nm', '5405208'), - (468, 1465, 'maybe', '2022-06-12 03:50:30', '2025-12-17 19:47:31', 'NmLXw9Nm', '5406355'), - (468, 1466, 'not_attending', '2022-06-16 22:53:56', '2025-12-17 19:47:17', 'NmLXw9Nm', '5406427'), - (468, 1471, 'not_attending', '2022-06-21 17:38:09', '2025-12-17 19:47:17', 'NmLXw9Nm', '5407063'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (468, 1473, 'not_attending', '2022-06-14 21:50:22', '2025-12-17 19:47:31', 'NmLXw9Nm', '5407267'), - (468, 1475, 'not_attending', '2022-06-14 21:50:38', '2025-12-17 19:47:17', 'NmLXw9Nm', '5408108'), - (468, 1477, 'maybe', '2022-06-21 17:38:13', '2025-12-17 19:47:17', 'NmLXw9Nm', '5408766'), - (468, 1478, 'maybe', '2022-06-15 15:54:35', '2025-12-17 19:47:19', 'NmLXw9Nm', '5408794'), - (468, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLXw9Nm', '5411699'), - (468, 1482, 'attending', '2022-06-20 02:55:01', '2025-12-17 19:47:19', 'NmLXw9Nm', '5412550'), - (468, 1483, 'attending', '2022-06-20 02:28:55', '2025-12-17 19:47:17', 'NmLXw9Nm', '5414556'), - (468, 1484, 'attending', '2022-06-20 20:40:27', '2025-12-17 19:47:17', 'NmLXw9Nm', '5415046'), - (468, 1485, 'attending', '2022-06-24 03:45:01', '2025-12-17 19:47:17', 'NmLXw9Nm', '5416276'), - (468, 1486, 'attending', '2022-06-21 20:51:49', '2025-12-17 19:47:19', 'NmLXw9Nm', '5416339'), - (468, 1488, 'attending', '2022-06-24 17:56:31', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420154'), - (468, 1489, 'attending', '2022-06-24 17:56:29', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420155'), - (468, 1490, 'attending', '2022-06-24 17:57:13', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420156'), - (468, 1491, 'attending', '2022-06-24 17:59:52', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420158'), - (468, 1492, 'attending', '2022-06-24 18:07:34', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420175'), - (468, 1493, 'attending', '2022-06-25 21:28:18', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420218'), - (468, 1494, 'attending', '2022-06-25 19:48:12', '2025-12-17 19:47:19', 'NmLXw9Nm', '5421626'), - (468, 1495, 'maybe', '2022-06-26 04:06:43', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422086'), - (468, 1497, 'not_attending', '2022-06-30 00:57:12', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422405'), - (468, 1498, 'not_attending', '2022-06-26 16:59:22', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422406'), - (468, 1499, 'not_attending', '2022-06-27 20:23:06', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422407'), - (468, 1501, 'not_attending', '2022-06-29 22:49:28', '2025-12-17 19:47:19', 'NmLXw9Nm', '5424546'), - (468, 1502, 'not_attending', '2022-07-08 03:31:28', '2025-12-17 19:47:19', 'NmLXw9Nm', '5424565'), - (468, 1504, 'not_attending', '2022-07-13 15:45:17', '2025-12-17 19:47:19', 'NmLXw9Nm', '5426882'), - (468, 1505, 'not_attending', '2022-07-05 00:12:13', '2025-12-17 19:47:19', 'NmLXw9Nm', '5427083'), - (468, 1507, 'not_attending', '2022-07-08 04:51:34', '2025-12-17 19:47:19', 'NmLXw9Nm', '5433100'), - (468, 1508, 'attending', '2022-07-13 22:58:57', '2025-12-17 19:47:19', 'NmLXw9Nm', '5433453'), - (468, 1511, 'attending', '2022-07-07 01:55:50', '2025-12-17 19:47:19', 'NmLXw9Nm', '5437733'), - (468, 1513, 'attending', '2022-07-13 00:18:52', '2025-12-17 19:47:19', 'NmLXw9Nm', '5441125'), - (468, 1514, 'attending', '2022-07-09 17:51:19', '2025-12-17 19:47:20', 'NmLXw9Nm', '5441126'), - (468, 1515, 'attending', '2022-07-31 16:39:55', '2025-12-17 19:47:21', 'NmLXw9Nm', '5441128'), - (468, 1516, 'attending', '2022-08-08 18:42:41', '2025-12-17 19:47:23', 'NmLXw9Nm', '5441129'), - (468, 1517, 'attending', '2022-08-25 02:10:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5441130'), - (468, 1518, 'attending', '2022-09-01 15:27:36', '2025-12-17 19:47:24', 'NmLXw9Nm', '5441131'), - (468, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLXw9Nm', '5441132'), - (468, 1521, 'attending', '2022-07-10 04:04:06', '2025-12-17 19:47:19', 'NmLXw9Nm', '5442180'), - (468, 1526, 'attending', '2022-07-12 23:26:02', '2025-12-17 19:47:20', 'NmLXw9Nm', '5445059'), - (468, 1527, 'attending', '2022-07-13 13:18:44', '2025-12-17 19:47:20', 'NmLXw9Nm', '5446425'), - (468, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLXw9Nm', '5446643'), - (468, 1532, 'attending', '2022-07-23 21:33:51', '2025-12-17 19:47:20', 'NmLXw9Nm', '5448757'), - (468, 1535, 'attending', '2022-07-16 01:00:55', '2025-12-17 19:47:20', 'NmLXw9Nm', '5448830'), - (468, 1540, 'maybe', '2022-07-22 03:57:57', '2025-12-17 19:47:20', 'NmLXw9Nm', '5453325'), - (468, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLXw9Nm', '5454516'), - (468, 1544, 'attending', '2022-09-14 23:51:25', '2025-12-17 19:47:11', 'NmLXw9Nm', '5454517'), - (468, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLXw9Nm', '5454605'), - (468, 1546, 'maybe', '2022-07-25 02:30:31', '2025-12-17 19:47:20', 'NmLXw9Nm', '5454607'), - (468, 1549, 'attending', '2022-07-19 18:50:57', '2025-12-17 19:47:20', 'NmLXw9Nm', '5454789'), - (468, 1551, 'attending', '2022-07-19 22:22:42', '2025-12-17 19:47:20', 'NmLXw9Nm', '5455037'), - (468, 1554, 'not_attending', '2022-07-20 04:05:45', '2025-12-17 19:47:20', 'NmLXw9Nm', '5455230'), - (468, 1557, 'maybe', '2022-08-03 07:03:11', '2025-12-17 19:47:21', 'NmLXw9Nm', '5458729'), - (468, 1558, 'not_attending', '2022-09-14 16:39:37', '2025-12-17 19:47:10', 'NmLXw9Nm', '5458730'), - (468, 1559, 'not_attending', '2022-09-25 16:06:45', '2025-12-17 19:47:11', 'NmLXw9Nm', '5458731'), - (468, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLXw9Nm', '5461278'), - (468, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLXw9Nm', '5469480'), - (468, 1565, 'attending', '2022-07-26 01:48:06', '2025-12-17 19:47:21', 'NmLXw9Nm', '5471073'), - (468, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'NmLXw9Nm', '5474663'), - (468, 1571, 'attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLXw9Nm', '5482022'), - (468, 1573, 'not_attending', '2022-08-01 20:15:30', '2025-12-17 19:47:22', 'NmLXw9Nm', '5482152'), - (468, 1574, 'not_attending', '2022-08-01 20:17:36', '2025-12-17 19:47:22', 'NmLXw9Nm', '5482153'), - (468, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLXw9Nm', '5482793'), - (468, 1578, 'attending', '2022-08-03 01:27:46', '2025-12-17 19:47:21', 'NmLXw9Nm', '5483073'), - (468, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLXw9Nm', '5488912'), - (468, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLXw9Nm', '5492192'), - (468, 1588, 'not_attending', '2022-08-08 18:42:38', '2025-12-17 19:47:22', 'NmLXw9Nm', '5493139'), - (468, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLXw9Nm', '5493200'), - (468, 1593, 'attending', '2022-08-09 17:49:26', '2025-12-17 19:47:22', 'NmLXw9Nm', '5494043'), - (468, 1597, 'attending', '2022-08-12 22:12:12', '2025-12-17 19:47:22', 'NmLXw9Nm', '5496566'), - (468, 1598, 'attending', '2022-08-12 22:12:13', '2025-12-17 19:47:22', 'NmLXw9Nm', '5496567'), - (468, 1599, 'attending', '2022-08-10 20:36:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5496568'), - (468, 1600, 'not_attending', '2022-08-10 20:37:53', '2025-12-17 19:47:24', 'NmLXw9Nm', '5496569'), - (468, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLXw9Nm', '5502188'), - (468, 1606, 'attending', '2022-08-16 19:22:56', '2025-12-17 19:47:23', 'NmLXw9Nm', '5504585'), - (468, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLXw9Nm', '5505059'), - (468, 1610, 'not_attending', '2022-08-30 22:57:19', '2025-12-17 19:47:23', 'NmLXw9Nm', '5506595'), - (468, 1614, 'not_attending', '2022-08-22 16:02:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5508371'), - (468, 1615, 'maybe', '2022-08-31 04:06:21', '2025-12-17 19:47:23', 'NmLXw9Nm', '5509055'), - (468, 1619, 'not_attending', '2022-08-22 16:57:20', '2025-12-17 19:47:23', 'NmLXw9Nm', '5512862'), - (468, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLXw9Nm', '5513985'), - (468, 1626, 'attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'NmLXw9Nm', '5519981'), - (468, 1627, 'attending', '2022-08-26 20:23:43', '2025-12-17 19:47:24', 'NmLXw9Nm', '5521552'), - (468, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLXw9Nm', '5522550'), - (468, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLXw9Nm', '5534683'), - (468, 1631, 'attending', '2022-08-27 18:44:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5534684'), - (468, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLXw9Nm', '5537735'), - (468, 1636, 'maybe', '2022-09-04 23:23:03', '2025-12-17 19:47:24', 'NmLXw9Nm', '5538454'), - (468, 1638, 'attending', '2022-08-30 23:33:08', '2025-12-17 19:47:24', 'NmLXw9Nm', '5540402'), - (468, 1639, 'attending', '2022-08-30 23:33:04', '2025-12-17 19:47:24', 'NmLXw9Nm', '5540403'), - (468, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLXw9Nm', '5540859'), - (468, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLXw9Nm', '5546619'), - (468, 1653, 'not_attending', '2022-09-22 17:19:26', '2025-12-17 19:47:11', 'NmLXw9Nm', '5554400'), - (468, 1655, 'not_attending', '2022-09-24 05:37:24', '2025-12-17 19:47:11', 'NmLXw9Nm', '5554482'), - (468, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLXw9Nm', '5555245'), - (468, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLXw9Nm', '5557747'), - (468, 1661, 'attending', '2022-09-09 00:18:50', '2025-12-17 19:47:24', 'NmLXw9Nm', '5560254'), - (468, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLXw9Nm', '5560255'), - (468, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLXw9Nm', '5562906'), - (468, 1667, 'not_attending', '2022-09-24 16:55:20', '2025-12-17 19:47:11', 'NmLXw9Nm', '5563221'), - (468, 1668, 'attending', '2022-09-25 03:18:39', '2025-12-17 19:47:12', 'NmLXw9Nm', '5563222'), - (468, 1676, 'not_attending', '2022-09-20 23:20:28', '2025-12-17 19:47:11', 'NmLXw9Nm', '5596181'), - (468, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLXw9Nm', '5600604'), - (468, 1678, 'not_attending', '2022-09-21 20:35:39', '2025-12-17 19:47:11', 'NmLXw9Nm', '5600731'), - (468, 1680, 'attending', '2022-09-21 20:35:00', '2025-12-17 19:47:11', 'NmLXw9Nm', '5601577'), - (468, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLXw9Nm', '5605544'), - (468, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'NmLXw9Nm', '5606737'), - (468, 1702, 'not_attending', '2022-09-27 23:08:48', '2025-12-17 19:47:12', 'NmLXw9Nm', '5609173'), - (468, 1708, 'attending', '2022-10-05 22:42:03', '2025-12-17 19:47:12', 'NmLXw9Nm', '5617648'), - (468, 1711, 'not_attending', '2022-10-04 00:51:07', '2025-12-17 19:47:12', 'NmLXw9Nm', '5621883'), - (468, 1712, 'not_attending', '2022-10-12 22:29:37', '2025-12-17 19:47:12', 'NmLXw9Nm', '5622073'), - (468, 1719, 'attending', '2022-10-05 03:18:42', '2025-12-17 19:47:12', 'NmLXw9Nm', '5630958'), - (468, 1720, 'attending', '2022-10-09 16:36:45', '2025-12-17 19:47:12', 'NmLXw9Nm', '5630959'), - (468, 1721, 'attending', '2022-10-17 06:53:55', '2025-12-17 19:47:13', 'NmLXw9Nm', '5630960'), - (468, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLXw9Nm', '5630961'), - (468, 1723, 'not_attending', '2022-10-29 06:39:10', '2025-12-17 19:47:15', 'NmLXw9Nm', '5630962'), - (468, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLXw9Nm', '5630966'), - (468, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLXw9Nm', '5630967'), - (468, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLXw9Nm', '5630968'), - (468, 1727, 'attending', '2022-11-27 06:35:33', '2025-12-17 19:47:16', 'NmLXw9Nm', '5630969'), - (468, 1731, 'not_attending', '2022-10-07 23:42:56', '2025-12-17 19:47:12', 'NmLXw9Nm', '5635226'), - (468, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLXw9Nm', '5635406'), - (468, 1736, 'not_attending', '2022-10-29 19:59:33', '2025-12-17 19:47:15', 'NmLXw9Nm', '5638456'), - (468, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLXw9Nm', '5638765'), - (468, 1739, 'attending', '2022-10-09 18:26:35', '2025-12-17 19:47:14', 'NmLXw9Nm', '5640097'), - (468, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'NmLXw9Nm', '5640843'), - (468, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLXw9Nm', '5641521'), - (468, 1744, 'not_attending', '2022-11-23 06:08:02', '2025-12-17 19:47:16', 'NmLXw9Nm', '5642818'), - (468, 1746, 'attending', '2022-10-12 18:14:31', '2025-12-17 19:47:12', 'NmLXw9Nm', '5647518'), - (468, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLXw9Nm', '5652395'), - (468, 1752, 'not_attending', '2022-10-14 17:50:29', '2025-12-17 19:47:12', 'NmLXw9Nm', '5653503'), - (468, 1753, 'attending', '2022-10-22 19:28:26', '2025-12-17 19:47:13', 'NmLXw9Nm', '5656228'), - (468, 1757, 'not_attending', '2022-11-03 00:51:15', '2025-12-17 19:47:15', 'NmLXw9Nm', '5668974'), - (468, 1758, 'not_attending', '2022-10-22 01:26:40', '2025-12-17 19:47:13', 'NmLXw9Nm', '5668976'), - (468, 1759, 'attending', '2022-10-22 01:26:36', '2025-12-17 19:47:13', 'NmLXw9Nm', '5669097'), - (468, 1760, 'not_attending', '2022-10-22 01:26:33', '2025-12-17 19:47:13', 'NmLXw9Nm', '5669463'), - (468, 1762, 'maybe', '2022-11-24 22:06:47', '2025-12-17 19:47:16', 'NmLXw9Nm', '5670445'), - (468, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLXw9Nm', '5671637'), - (468, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLXw9Nm', '5672329'), - (468, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLXw9Nm', '5674057'), - (468, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLXw9Nm', '5674060'), - (468, 1769, 'not_attending', '2022-11-04 22:53:43', '2025-12-17 19:47:15', 'NmLXw9Nm', '5676351'), - (468, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'NmLXw9Nm', '5677461'), - (468, 1774, 'not_attending', '2022-10-31 22:26:39', '2025-12-17 19:47:15', 'NmLXw9Nm', '5677843'), - (468, 1779, 'attending', '2022-10-31 22:26:01', '2025-12-17 19:47:15', 'NmLXw9Nm', '5694252'), - (468, 1780, 'not_attending', '2022-11-10 18:51:09', '2025-12-17 19:47:15', 'NmLXw9Nm', '5696082'), - (468, 1782, 'attending', '2022-11-03 04:30:38', '2025-12-17 19:47:15', 'NmLXw9Nm', '5698046'), - (468, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLXw9Nm', '5699760'), - (468, 1790, 'attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'NmLXw9Nm', '5727424'), - (468, 1793, 'maybe', '2022-11-24 19:56:11', '2025-12-17 19:47:16', 'NmLXw9Nm', '5736365'), - (468, 1794, 'attending', '2022-11-14 18:55:48', '2025-12-17 19:47:16', 'NmLXw9Nm', '5741601'), - (468, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLXw9Nm', '5763458'), - (468, 1806, 'attending', '2023-01-16 22:51:46', '2025-12-17 19:47:05', 'NmLXw9Nm', '5764676'), - (468, 1820, 'maybe', '2023-04-05 04:13:19', '2025-12-17 19:46:58', 'NmLXw9Nm', '5764690'), - (468, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLXw9Nm', '5774172'), - (468, 1826, 'not_attending', '2022-12-06 03:38:59', '2025-12-17 19:47:04', 'NmLXw9Nm', '5776768'), - (468, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'NmLXw9Nm', '5818247'), - (468, 1835, 'maybe', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLXw9Nm', '5819471'), - (468, 1841, 'attending', '2023-01-04 07:39:07', '2025-12-17 19:47:05', 'NmLXw9Nm', '5827665'), - (468, 1842, 'attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLXw9Nm', '5827739'), - (468, 1843, 'attending', '2022-12-17 19:12:01', '2025-12-17 19:47:04', 'NmLXw9Nm', '5844304'), - (468, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLXw9Nm', '5844306'), - (468, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLXw9Nm', '5850159'), - (468, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLXw9Nm', '5858999'), - (468, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLXw9Nm', '5871984'), - (468, 1859, 'maybe', '2023-01-20 21:46:38', '2025-12-17 19:47:05', 'NmLXw9Nm', '5876234'), - (468, 1860, 'maybe', '2023-01-13 05:52:31', '2025-12-17 19:47:05', 'NmLXw9Nm', '5876309'), - (468, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLXw9Nm', '5876354'), - (468, 1864, 'attending', '2023-01-16 22:51:47', '2025-12-17 19:47:05', 'NmLXw9Nm', '5879675'), - (468, 1865, 'maybe', '2023-01-27 23:49:06', '2025-12-17 19:47:06', 'NmLXw9Nm', '5879676'), - (468, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLXw9Nm', '5880939'), - (468, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLXw9Nm', '5880940'), - (468, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLXw9Nm', '5880942'), - (468, 1869, 'not_attending', '2023-03-07 00:50:32', '2025-12-17 19:47:09', 'NmLXw9Nm', '5880943'), - (468, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLXw9Nm', '5887890'), - (468, 1875, 'not_attending', '2023-01-28 00:01:03', '2025-12-17 19:47:06', 'NmLXw9Nm', '5887908'), - (468, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLXw9Nm', '5888598'), - (468, 1880, 'attending', '2023-01-24 20:36:42', '2025-12-17 19:47:06', 'NmLXw9Nm', '5893260'), - (468, 1881, 'attending', '2023-02-03 21:36:05', '2025-12-17 19:47:07', 'NmLXw9Nm', '5894218'), - (468, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLXw9Nm', '5899826'), - (468, 1885, 'maybe', '2023-02-24 05:47:42', '2025-12-17 19:47:08', 'NmLXw9Nm', '5899928'), - (468, 1886, 'maybe', '2023-03-07 00:50:26', '2025-12-17 19:47:09', 'NmLXw9Nm', '5899930'), - (468, 1888, 'maybe', '2023-02-17 19:54:20', '2025-12-17 19:47:07', 'NmLXw9Nm', '5900197'), - (468, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLXw9Nm', '5900199'), - (468, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLXw9Nm', '5900200'), - (468, 1891, 'attending', '2023-03-20 03:13:00', '2025-12-17 19:46:56', 'NmLXw9Nm', '5900202'), - (468, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLXw9Nm', '5900203'), - (468, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLXw9Nm', '5901108'), - (468, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLXw9Nm', '5901126'), - (468, 1897, 'attending', '2023-02-06 00:47:17', '2025-12-17 19:47:07', 'NmLXw9Nm', '5901128'), - (468, 1898, 'maybe', '2023-02-02 00:02:59', '2025-12-17 19:47:06', 'NmLXw9Nm', '5901263'), - (468, 1902, 'attending', '2023-02-01 23:21:00', '2025-12-17 19:47:06', 'NmLXw9Nm', '5902254'), - (468, 1907, 'not_attending', '2023-02-03 21:36:42', '2025-12-17 19:47:07', 'NmLXw9Nm', '5904716'), - (468, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLXw9Nm', '5909655'), - (468, 1912, 'not_attending', '2023-02-17 20:35:57', '2025-12-17 19:47:07', 'NmLXw9Nm', '5909808'), - (468, 1913, 'attending', '2023-02-07 17:25:52', '2025-12-17 19:47:07', 'NmLXw9Nm', '5910300'), - (468, 1914, 'attending', '2023-02-07 19:40:41', '2025-12-17 19:47:07', 'NmLXw9Nm', '5910302'), - (468, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLXw9Nm', '5910522'), - (468, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLXw9Nm', '5910526'), - (468, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLXw9Nm', '5910528'), - (468, 1920, 'not_attending', '2023-02-14 00:26:13', '2025-12-17 19:47:07', 'NmLXw9Nm', '5914091'), - (468, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLXw9Nm', '5916219'), - (468, 1923, 'attending', '2023-02-17 20:44:40', '2025-12-17 19:47:07', 'NmLXw9Nm', '5930436'), - (468, 1925, 'attending', '2023-02-17 21:12:52', '2025-12-17 19:47:08', 'NmLXw9Nm', '5932619'), - (468, 1926, 'attending', '2023-02-17 21:12:49', '2025-12-17 19:47:08', 'NmLXw9Nm', '5932620'), - (468, 1927, 'not_attending', '2023-03-16 22:56:20', '2025-12-17 19:47:10', 'NmLXw9Nm', '5932621'), - (468, 1929, 'attending', '2023-02-17 21:55:49', '2025-12-17 19:47:07', 'NmLXw9Nm', '5932628'), - (468, 1933, 'attending', '2023-02-20 19:51:13', '2025-12-17 19:47:08', 'NmLXw9Nm', '5936234'), - (468, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLXw9Nm', '5958351'), - (468, 1938, 'attending', '2023-02-24 04:19:02', '2025-12-17 19:47:08', 'NmLXw9Nm', '5959751'), - (468, 1939, 'attending', '2023-02-24 04:29:24', '2025-12-17 19:47:08', 'NmLXw9Nm', '5959755'), - (468, 1940, 'not_attending', '2023-02-24 06:17:36', '2025-12-17 19:47:09', 'NmLXw9Nm', '5960055'), - (468, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLXw9Nm', '5961684'), - (468, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'NmLXw9Nm', '5962132'), - (468, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'NmLXw9Nm', '5962133'), - (468, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLXw9Nm', '5962134'), - (468, 1947, 'attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'NmLXw9Nm', '5962233'), - (468, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLXw9Nm', '5962317'), - (468, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLXw9Nm', '5962318'), - (468, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'NmLXw9Nm', '5965933'), - (468, 1953, 'attending', '2023-03-01 20:41:11', '2025-12-17 19:47:09', 'NmLXw9Nm', '5966307'), - (468, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLXw9Nm', '5967014'), - (468, 1955, 'not_attending', '2023-03-25 01:45:18', '2025-12-17 19:46:57', 'NmLXw9Nm', '5972529'), - (468, 1956, 'maybe', '2023-03-06 04:33:14', '2025-12-17 19:47:09', 'NmLXw9Nm', '5972763'), - (468, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLXw9Nm', '5972815'), - (468, 1959, 'not_attending', '2023-03-25 01:45:23', '2025-12-17 19:46:57', 'NmLXw9Nm', '5972829'), - (468, 1961, 'not_attending', '2023-03-07 00:55:23', '2025-12-17 19:47:10', 'NmLXw9Nm', '5974016'), - (468, 1963, 'not_attending', '2023-03-08 02:14:11', '2025-12-17 19:47:10', 'NmLXw9Nm', '5975054'), - (468, 1964, 'attending', '2023-03-08 23:50:12', '2025-12-17 19:47:09', 'NmLXw9Nm', '5977129'), - (468, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLXw9Nm', '5981515'), - (468, 1968, 'attending', '2023-03-12 23:05:42', '2025-12-17 19:47:10', 'NmLXw9Nm', '5993515'), - (468, 1969, 'attending', '2023-03-12 23:06:38', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993516'), - (468, 1970, 'attending', '2023-03-13 03:01:53', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993758'), - (468, 1972, 'maybe', '2023-03-13 04:56:46', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993776'), - (468, 1973, 'not_attending', '2023-03-13 04:56:28', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993777'), - (468, 1974, 'not_attending', '2023-03-21 01:30:48', '2025-12-17 19:46:57', 'NmLXw9Nm', '5993778'), - (468, 1977, 'not_attending', '2023-03-16 04:48:57', '2025-12-17 19:46:56', 'NmLXw9Nm', '5998939'), - (468, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLXw9Nm', '6028191'), - (468, 1980, 'attending', '2023-03-21 03:31:20', '2025-12-17 19:46:57', 'NmLXw9Nm', '6036032'), - (468, 1982, 'attending', '2023-03-23 23:33:52', '2025-12-17 19:46:57', 'NmLXw9Nm', '6040066'), - (468, 1984, 'attending', '2023-03-25 20:54:37', '2025-12-17 19:46:57', 'NmLXw9Nm', '6042717'), - (468, 1985, 'not_attending', '2023-03-26 20:03:22', '2025-12-17 19:46:57', 'NmLXw9Nm', '6043041'), - (468, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLXw9Nm', '6044838'), - (468, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLXw9Nm', '6044839'), - (468, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'NmLXw9Nm', '6045684'), - (468, 1991, 'attending', '2023-03-30 23:15:34', '2025-12-17 19:46:58', 'NmLXw9Nm', '6047354'), - (468, 1992, 'not_attending', '2023-04-01 06:46:39', '2025-12-17 19:46:58', 'NmLXw9Nm', '6048742'), - (468, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLXw9Nm', '6050104'), - (468, 1995, 'maybe', '2023-04-05 04:12:59', '2025-12-17 19:46:58', 'NmLXw9Nm', '6050663'), - (468, 1996, 'not_attending', '2023-04-03 16:34:12', '2025-12-17 19:46:58', 'NmLXw9Nm', '6050667'), - (468, 1997, 'not_attending', '2023-04-05 04:12:34', '2025-12-17 19:46:58', 'NmLXw9Nm', '6051604'), - (468, 1999, 'not_attending', '2023-04-06 21:21:45', '2025-12-17 19:47:00', 'NmLXw9Nm', '6052057'), - (468, 2000, 'attending', '2023-04-05 04:12:41', '2025-12-17 19:46:58', 'NmLXw9Nm', '6052107'), - (468, 2001, 'maybe', '2023-04-05 04:12:26', '2025-12-17 19:46:58', 'NmLXw9Nm', '6052569'), - (468, 2002, 'not_attending', '2023-04-24 21:28:29', '2025-12-17 19:47:01', 'NmLXw9Nm', '6052605'), - (468, 2003, 'not_attending', '2023-05-19 22:51:18', '2025-12-17 19:47:03', 'NmLXw9Nm', '6052606'), - (468, 2004, 'not_attending', '2023-05-29 06:18:29', '2025-12-17 19:47:04', 'NmLXw9Nm', '6052607'), - (468, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLXw9Nm', '6053195'), - (468, 2006, 'maybe', '2023-04-09 18:36:29', '2025-12-17 19:46:59', 'NmLXw9Nm', '6053198'), - (468, 2008, 'not_attending', '2023-04-07 17:07:48', '2025-12-17 19:46:58', 'NmLXw9Nm', '6055808'), - (468, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'NmLXw9Nm', '6056085'), - (468, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLXw9Nm', '6056916'), - (468, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLXw9Nm', '6059290'), - (468, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLXw9Nm', '6060328'), - (468, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLXw9Nm', '6061037'), - (468, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLXw9Nm', '6061039'), - (468, 2017, 'not_attending', '2023-04-11 23:36:28', '2025-12-17 19:46:59', 'NmLXw9Nm', '6061099'), - (468, 2019, 'attending', '2023-04-12 22:32:45', '2025-12-17 19:47:00', 'NmLXw9Nm', '6062934'), - (468, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLXw9Nm', '6067245'), - (468, 2025, 'not_attending', '2023-04-22 18:49:15', '2025-12-17 19:47:00', 'NmLXw9Nm', '6067457'), - (468, 2026, 'not_attending', '2023-04-19 00:46:32', '2025-12-17 19:47:01', 'NmLXw9Nm', '6068078'), - (468, 2027, 'maybe', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLXw9Nm', '6068094'), - (468, 2028, 'attending', '2023-04-18 00:48:03', '2025-12-17 19:47:00', 'NmLXw9Nm', '6068252'), - (468, 2029, 'attending', '2023-04-18 00:49:41', '2025-12-17 19:47:01', 'NmLXw9Nm', '6068253'), - (468, 2030, 'attending', '2023-04-18 00:49:45', '2025-12-17 19:47:02', 'NmLXw9Nm', '6068254'), - (468, 2031, 'attending', '2023-04-18 00:53:06', '2025-12-17 19:47:03', 'NmLXw9Nm', '6068280'), - (468, 2032, 'attending', '2023-04-18 00:53:29', '2025-12-17 19:47:04', 'NmLXw9Nm', '6068281'), - (468, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLXw9Nm', '6069093'), - (468, 2037, 'not_attending', '2023-04-24 21:28:14', '2025-12-17 19:47:01', 'NmLXw9Nm', '6071943'), - (468, 2038, 'not_attending', '2023-04-24 21:28:31', '2025-12-17 19:47:01', 'NmLXw9Nm', '6071944'), - (468, 2039, 'maybe', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072398'), - (468, 2040, 'not_attending', '2023-04-23 23:50:32', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072453'), - (468, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072528'), - (468, 2042, 'not_attending', '2023-04-24 21:28:19', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072941'), - (468, 2043, 'maybe', '2023-04-25 22:17:12', '2025-12-17 19:47:01', 'NmLXw9Nm', '6073023'), - (468, 2044, 'attending', '2023-04-26 00:29:17', '2025-12-17 19:47:03', 'NmLXw9Nm', '6073678'), - (468, 2045, 'maybe', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'NmLXw9Nm', '6075556'), - (468, 2046, 'maybe', '2023-04-28 17:42:17', '2025-12-17 19:47:02', 'NmLXw9Nm', '6076020'), - (468, 2047, 'not_attending', '2023-05-01 21:46:10', '2025-12-17 19:47:02', 'NmLXw9Nm', '6076027'), - (468, 2048, 'attending', '2023-05-05 20:24:13', '2025-12-17 19:47:03', 'NmLXw9Nm', '6076415'), - (468, 2049, 'attending', '2023-04-29 17:38:50', '2025-12-17 19:47:01', 'NmLXw9Nm', '6079840'), - (468, 2050, 'not_attending', '2023-05-01 21:46:14', '2025-12-17 19:47:02', 'NmLXw9Nm', '6080489'), - (468, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLXw9Nm', '6083398'), - (468, 2052, 'not_attending', '2023-05-04 22:41:58', '2025-12-17 19:47:02', 'NmLXw9Nm', '6088220'), - (468, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'NmLXw9Nm', '6093504'), - (468, 2059, 'not_attending', '2023-05-08 21:35:14', '2025-12-17 19:47:02', 'NmLXw9Nm', '6097361'), - (468, 2060, 'attending', '2023-05-13 23:02:47', '2025-12-17 19:47:03', 'NmLXw9Nm', '6097414'), - (468, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLXw9Nm', '6097442'), - (468, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLXw9Nm', '6097684'), - (468, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLXw9Nm', '6098762'), - (468, 2064, 'attending', '2023-06-08 04:18:04', '2025-12-17 19:46:50', 'NmLXw9Nm', '6099988'), - (468, 2065, 'not_attending', '2023-06-08 04:18:09', '2025-12-17 19:46:49', 'NmLXw9Nm', '6101169'), - (468, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'NmLXw9Nm', '6101361'), - (468, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLXw9Nm', '6101362'), - (468, 2068, 'attending', '2023-05-13 17:55:39', '2025-12-17 19:47:03', 'NmLXw9Nm', '6102837'), - (468, 2069, 'not_attending', '2023-05-17 23:08:29', '2025-12-17 19:47:03', 'NmLXw9Nm', '6103750'), - (468, 2070, 'attending', '2023-05-15 01:19:48', '2025-12-17 19:47:03', 'NmLXw9Nm', '6103752'), - (468, 2074, 'not_attending', '2023-05-17 22:37:45', '2025-12-17 19:47:03', 'NmLXw9Nm', '6107312'), - (468, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLXw9Nm', '6107314'), - (468, 2076, 'attending', '2023-05-19 06:40:13', '2025-12-17 19:47:03', 'NmLXw9Nm', '6108350'), - (468, 2078, 'not_attending', '2023-05-22 22:46:16', '2025-12-17 19:47:03', 'NmLXw9Nm', '6114163'), - (468, 2079, 'not_attending', '2023-05-25 17:01:42', '2025-12-17 19:47:03', 'NmLXw9Nm', '6114521'), - (468, 2080, 'attending', '2023-05-22 04:17:32', '2025-12-17 19:47:04', 'NmLXw9Nm', '6114677'), - (468, 2081, 'not_attending', '2023-05-22 22:45:33', '2025-12-17 19:47:03', 'NmLXw9Nm', '6115611'), - (468, 2083, 'not_attending', '2023-05-22 22:46:06', '2025-12-17 19:47:04', 'NmLXw9Nm', '6115629'), - (468, 2084, 'not_attending', '2023-05-27 16:35:41', '2025-12-17 19:47:04', 'NmLXw9Nm', '6117127'), - (468, 2086, 'not_attending', '2023-05-29 06:18:16', '2025-12-17 19:47:04', 'NmLXw9Nm', '6119877'), - (468, 2087, 'not_attending', '2023-05-28 03:11:16', '2025-12-17 19:47:04', 'NmLXw9Nm', '6120034'), - (468, 2089, 'not_attending', '2023-05-29 06:18:23', '2025-12-17 19:47:04', 'NmLXw9Nm', '6125227'), - (468, 2090, 'attending', '2023-05-31 18:54:53', '2025-12-17 19:47:04', 'NmLXw9Nm', '6127961'), - (468, 2093, 'not_attending', '2023-06-04 02:40:41', '2025-12-17 19:47:04', 'NmLXw9Nm', '6132598'), - (468, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'NmLXw9Nm', '6135924'), - (468, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'NmLXw9Nm', '6136733'), - (468, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'NmLXw9Nm', '6137989'), - (468, 2098, 'not_attending', '2023-06-09 06:40:59', '2025-12-17 19:47:04', 'NmLXw9Nm', '6139831'), - (468, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'NmLXw9Nm', '6150864'), - (468, 2109, 'not_attending', '2023-06-23 16:20:31', '2025-12-17 19:46:50', 'NmLXw9Nm', '6152821'), - (468, 2110, 'not_attending', '2023-06-19 19:24:50', '2025-12-17 19:46:50', 'NmLXw9Nm', '6155491'), - (468, 2111, 'attending', '2023-06-19 19:21:36', '2025-12-17 19:46:50', 'NmLXw9Nm', '6156121'), - (468, 2112, 'not_attending', '2023-06-21 15:55:22', '2025-12-17 19:46:50', 'NmLXw9Nm', '6156213'), - (468, 2113, 'attending', '2023-06-19 19:47:06', '2025-12-17 19:46:50', 'NmLXw9Nm', '6156215'), - (468, 2114, 'not_attending', '2023-06-23 16:20:33', '2025-12-17 19:46:50', 'NmLXw9Nm', '6158648'), - (468, 2115, 'not_attending', '2023-06-23 16:20:22', '2025-12-17 19:46:50', 'NmLXw9Nm', '6161437'), - (468, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'NmLXw9Nm', '6164417'), - (468, 2119, 'not_attending', '2023-06-27 17:55:50', '2025-12-17 19:46:50', 'NmLXw9Nm', '6165461'), - (468, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'NmLXw9Nm', '6166388'), - (468, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'NmLXw9Nm', '6176439'), - (468, 2122, 'not_attending', '2023-07-06 23:42:56', '2025-12-17 19:46:51', 'NmLXw9Nm', '6176476'), - (468, 2126, 'not_attending', '2023-06-29 23:46:26', '2025-12-17 19:46:51', 'NmLXw9Nm', '6177548'), - (468, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'NmLXw9Nm', '6182410'), - (468, 2130, 'not_attending', '2023-07-06 01:58:11', '2025-12-17 19:46:51', 'NmLXw9Nm', '6183891'), - (468, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'NmLXw9Nm', '6185812'), - (468, 2132, 'not_attending', '2023-07-07 00:26:30', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187015'), - (468, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'NmLXw9Nm', '6187651'), - (468, 2134, 'attending', '2023-07-06 21:11:05', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187963'), - (468, 2135, 'attending', '2023-07-06 21:12:14', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187964'), - (468, 2136, 'attending', '2023-07-06 21:12:34', '2025-12-17 19:46:53', 'NmLXw9Nm', '6187966'), - (468, 2137, 'not_attending', '2023-07-06 21:13:16', '2025-12-17 19:46:54', 'NmLXw9Nm', '6187967'), - (468, 2138, 'attending', '2023-07-06 21:20:54', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187969'), - (468, 2139, 'not_attending', '2023-07-07 00:01:10', '2025-12-17 19:46:52', 'NmLXw9Nm', '6188027'), - (468, 2140, 'not_attending', '2023-07-07 02:55:50', '2025-12-17 19:46:52', 'NmLXw9Nm', '6188074'), - (468, 2141, 'not_attending', '2023-07-11 21:15:40', '2025-12-17 19:46:52', 'NmLXw9Nm', '6188819'), - (468, 2142, 'attending', '2023-07-07 20:57:44', '2025-12-17 19:46:52', 'NmLXw9Nm', '6333850'), - (468, 2143, 'not_attending', '2023-07-08 19:55:18', '2025-12-17 19:46:51', 'NmLXw9Nm', '6334348'), - (468, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'NmLXw9Nm', '6334878'), - (468, 2145, 'not_attending', '2023-07-13 05:38:35', '2025-12-17 19:46:52', 'NmLXw9Nm', '6334903'), - (468, 2146, 'maybe', '2023-07-21 22:02:06', '2025-12-17 19:46:53', 'NmLXw9Nm', '6335638'), - (468, 2148, 'not_attending', '2023-07-21 22:24:31', '2025-12-17 19:46:53', 'NmLXw9Nm', '6335667'), - (468, 2149, 'not_attending', '2023-07-11 02:46:52', '2025-12-17 19:46:53', 'NmLXw9Nm', '6335682'), - (468, 2150, 'not_attending', '2023-07-09 21:55:38', '2025-12-17 19:46:52', 'NmLXw9Nm', '6335687'), - (468, 2153, 'attending', '2023-07-17 02:03:21', '2025-12-17 19:46:52', 'NmLXw9Nm', '6337236'), - (468, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'NmLXw9Nm', '6337970'), - (468, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'NmLXw9Nm', '6338308'), - (468, 2158, 'maybe', '2023-07-17 18:58:00', '2025-12-17 19:46:53', 'NmLXw9Nm', '6338353'), - (468, 2159, 'attending', '2023-07-17 18:49:25', '2025-12-17 19:46:53', 'NmLXw9Nm', '6338355'), - (468, 2160, 'attending', '2023-07-17 18:49:50', '2025-12-17 19:46:54', 'NmLXw9Nm', '6338358'), - (468, 2162, 'not_attending', '2023-07-20 20:45:39', '2025-12-17 19:46:53', 'NmLXw9Nm', '6340845'), - (468, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'NmLXw9Nm', '6341710'), - (468, 2165, 'not_attending', '2023-08-01 05:12:35', '2025-12-17 19:46:54', 'NmLXw9Nm', '6342044'), - (468, 2166, 'not_attending', '2023-07-21 05:56:44', '2025-12-17 19:46:54', 'NmLXw9Nm', '6342115'), - (468, 2167, 'attending', '2023-07-17 19:05:50', '2025-12-17 19:46:53', 'NmLXw9Nm', '6342298'), - (468, 2169, 'not_attending', '2023-07-21 22:24:33', '2025-12-17 19:46:53', 'NmLXw9Nm', '6342306'), - (468, 2173, 'not_attending', '2023-07-20 20:45:42', '2025-12-17 19:46:53', 'NmLXw9Nm', '6342769'), - (468, 2174, 'not_attending', '2023-07-21 05:56:06', '2025-12-17 19:46:53', 'NmLXw9Nm', '6343294'), - (468, 2175, 'maybe', '2023-07-22 21:08:05', '2025-12-17 19:46:53', 'NmLXw9Nm', '6346982'), - (468, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'NmLXw9Nm', '6347034'), - (468, 2177, 'maybe', '2023-08-10 01:09:55', '2025-12-17 19:46:55', 'NmLXw9Nm', '6347053'), - (468, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'NmLXw9Nm', '6347056'), - (468, 2179, 'not_attending', '2023-08-01 05:12:30', '2025-12-17 19:46:54', 'NmLXw9Nm', '6347591'), - (468, 2183, 'attending', '2023-07-29 05:05:33', '2025-12-17 19:46:54', 'NmLXw9Nm', '6353008'), - (468, 2185, 'attending', '2023-07-29 19:45:44', '2025-12-17 19:46:54', 'NmLXw9Nm', '6353830'), - (468, 2186, 'attending', '2023-07-29 19:46:48', '2025-12-17 19:46:54', 'NmLXw9Nm', '6353831'), - (468, 2188, 'attending', '2023-08-02 07:04:58', '2025-12-17 19:46:54', 'NmLXw9Nm', '6357710'), - (468, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'NmLXw9Nm', '6357867'), - (468, 2190, 'not_attending', '2023-08-02 17:11:25', '2025-12-17 19:46:55', 'NmLXw9Nm', '6357892'), - (468, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358652'), - (468, 2192, 'attending', '2023-08-03 21:45:27', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358666'), - (468, 2193, 'not_attending', '2023-08-03 22:05:49', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358668'), - (468, 2194, 'not_attending', '2023-08-03 22:05:53', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358669'), - (468, 2195, 'not_attending', '2023-08-07 03:50:12', '2025-12-17 19:46:55', 'NmLXw9Nm', '6359397'), - (468, 2196, 'not_attending', '2023-09-05 20:28:47', '2025-12-17 19:46:56', 'NmLXw9Nm', '6359398'), - (468, 2199, 'maybe', '2023-08-14 19:22:54', '2025-12-17 19:46:55', 'NmLXw9Nm', '6359849'), - (468, 2200, 'not_attending', '2023-08-10 01:09:42', '2025-12-17 19:46:55', 'NmLXw9Nm', '6359850'), - (468, 2202, 'not_attending', '2023-08-06 21:52:30', '2025-12-17 19:46:54', 'NmLXw9Nm', '6360509'), - (468, 2203, 'attending', '2023-08-07 20:53:17', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361524'), - (468, 2204, 'attending', '2023-08-19 20:41:30', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361542'), - (468, 2206, 'not_attending', '2023-08-08 04:33:50', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361659'), - (468, 2208, 'maybe', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'NmLXw9Nm', '6361709'), - (468, 2209, 'not_attending', '2023-08-20 21:55:08', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361710'), - (468, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361711'), - (468, 2211, 'maybe', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361712'), - (468, 2212, 'maybe', '2023-09-23 16:18:41', '2025-12-17 19:46:45', 'NmLXw9Nm', '6361713'), - (468, 2213, 'not_attending', '2023-08-14 19:13:57', '2025-12-17 19:46:55', 'NmLXw9Nm', '6362935'), - (468, 2215, 'not_attending', '2023-08-10 06:11:33', '2025-12-17 19:46:55', 'NmLXw9Nm', '6363479'), - (468, 2216, 'attending', '2023-08-14 19:23:06', '2025-12-17 19:46:55', 'NmLXw9Nm', '6364123'), - (468, 2217, 'maybe', '2023-08-14 19:14:09', '2025-12-17 19:46:55', 'NmLXw9Nm', '6364333'), - (468, 2218, 'not_attending', '2023-08-15 06:09:08', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367308'), - (468, 2221, 'not_attending', '2023-08-15 06:09:49', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367357'), - (468, 2222, 'not_attending', '2023-08-15 06:09:54', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367358'), - (468, 2223, 'attending', '2023-08-15 06:09:15', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367439'), - (468, 2224, 'attending', '2023-08-15 18:44:16', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367635'), - (468, 2225, 'not_attending', '2023-08-29 16:25:09', '2025-12-17 19:46:55', 'NmLXw9Nm', '6368434'), - (468, 2226, 'not_attending', '2023-08-17 21:36:47', '2025-12-17 19:46:55', 'NmLXw9Nm', '6370006'), - (468, 2227, 'not_attending', '2023-08-19 03:05:37', '2025-12-17 19:46:55', 'NmLXw9Nm', '6370581'), - (468, 2229, 'attending', '2023-08-20 20:52:14', '2025-12-17 19:46:55', 'NmLXw9Nm', '6373787'), - (468, 2232, 'maybe', '2023-08-23 00:14:27', '2025-12-17 19:46:55', 'NmLXw9Nm', '6374818'), - (468, 2233, 'attending', '2023-08-22 23:22:30', '2025-12-17 19:46:55', 'NmLXw9Nm', '6377590'), - (468, 2234, 'attending', '2023-08-27 04:18:41', '2025-12-17 19:46:56', 'NmLXw9Nm', '6382559'), - (468, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'NmLXw9Nm', '6382573'), - (468, 2238, 'not_attending', '2023-08-31 19:23:11', '2025-12-17 19:46:56', 'NmLXw9Nm', '6387266'), - (468, 2239, 'attending', '2023-09-02 18:22:59', '2025-12-17 19:46:56', 'NmLXw9Nm', '6387592'), - (468, 2240, 'attending', '2023-09-09 21:21:20', '2025-12-17 19:46:56', 'NmLXw9Nm', '6388603'), - (468, 2241, 'maybe', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'NmLXw9Nm', '6388604'), - (468, 2242, 'attending', '2023-09-23 16:18:08', '2025-12-17 19:46:45', 'NmLXw9Nm', '6388606'), - (468, 2243, 'maybe', '2023-09-07 03:09:32', '2025-12-17 19:46:56', 'NmLXw9Nm', '6393686'), - (468, 2244, 'not_attending', '2023-09-07 18:17:22', '2025-12-17 19:46:44', 'NmLXw9Nm', '6393700'), - (468, 2245, 'attending', '2023-09-18 02:09:42', '2025-12-17 19:46:45', 'NmLXw9Nm', '6393703'), - (468, 2247, 'maybe', '2023-09-05 20:28:56', '2025-12-17 19:46:56', 'NmLXw9Nm', '6394628'), - (468, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'NmLXw9Nm', '6394629'), - (468, 2249, 'maybe', '2023-09-20 21:53:32', '2025-12-17 19:46:45', 'NmLXw9Nm', '6394630'), - (468, 2250, 'maybe', '2023-09-23 16:18:38', '2025-12-17 19:46:45', 'NmLXw9Nm', '6394631'), - (468, 2251, 'not_attending', '2023-09-05 20:26:26', '2025-12-17 19:46:56', 'NmLXw9Nm', '6395182'), - (468, 2252, 'not_attending', '2023-09-18 02:09:46', '2025-12-17 19:46:45', 'NmLXw9Nm', '6396837'), - (468, 2253, 'maybe', '2023-09-23 16:18:44', '2025-12-17 19:46:45', 'NmLXw9Nm', '6401811'), - (468, 2254, 'attending', '2023-09-10 18:13:56', '2025-12-17 19:46:44', 'NmLXw9Nm', '6401889'), - (468, 2255, 'attending', '2023-09-12 20:46:16', '2025-12-17 19:46:45', 'NmLXw9Nm', '6403562'), - (468, 2258, 'not_attending', '2023-09-23 16:18:21', '2025-12-17 19:46:45', 'NmLXw9Nm', '6419492'), - (468, 2263, 'attending', '2023-09-25 22:16:04', '2025-12-17 19:46:45', 'NmLXw9Nm', '6429351'), - (468, 2265, 'maybe', '2023-09-29 16:23:57', '2025-12-17 19:46:45', 'NmLXw9Nm', '6439625'), - (468, 2266, 'attending', '2023-10-08 03:26:05', '2025-12-17 19:46:45', 'NmLXw9Nm', '6439635'), - (468, 2267, 'not_attending', '2023-10-06 01:52:51', '2025-12-17 19:46:45', 'NmLXw9Nm', '6440034'), - (468, 2268, 'attending', '2023-10-01 00:10:19', '2025-12-17 19:46:45', 'NmLXw9Nm', '6440863'), - (468, 2269, 'not_attending', '2023-10-03 01:35:16', '2025-12-17 19:46:45', 'NmLXw9Nm', '6442978'), - (468, 2270, 'attending', '2023-10-05 01:06:45', '2025-12-17 19:46:46', 'NmLXw9Nm', '6443067'), - (468, 2271, 'maybe', '2023-10-03 01:35:04', '2025-12-17 19:46:45', 'NmLXw9Nm', '6445375'), - (468, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLXw9Nm', '6445440'), - (468, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLXw9Nm', '6453951'), - (468, 2277, 'not_attending', '2023-10-08 19:53:42', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455211'), - (468, 2279, 'not_attending', '2023-10-11 23:22:03', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455460'), - (468, 2280, 'not_attending', '2023-10-08 19:53:18', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455470'), - (468, 2283, 'not_attending', '2023-10-08 21:20:39', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455503'), - (468, 2284, 'maybe', '2023-10-11 23:22:17', '2025-12-17 19:46:46', 'NmLXw9Nm', '6460928'), - (468, 2287, 'attending', '2023-10-10 23:21:49', '2025-12-17 19:46:46', 'NmLXw9Nm', '6461696'), - (468, 2289, 'attending', '2023-10-11 05:27:44', '2025-12-17 19:46:46', 'NmLXw9Nm', '6462129'), - (468, 2290, 'attending', '2023-10-14 04:16:35', '2025-12-17 19:46:46', 'NmLXw9Nm', '6462214'), - (468, 2291, 'maybe', '2023-10-15 20:51:23', '2025-12-17 19:46:46', 'NmLXw9Nm', '6462215'), - (468, 2292, 'maybe', '2023-10-29 18:16:43', '2025-12-17 19:46:47', 'NmLXw9Nm', '6462216'), - (468, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLXw9Nm', '6463218'), - (468, 2294, 'not_attending', '2023-10-15 20:50:46', '2025-12-17 19:46:46', 'NmLXw9Nm', '6465907'), - (468, 2295, 'not_attending', '2023-10-22 03:50:25', '2025-12-17 19:46:46', 'NmLXw9Nm', '6467832'), - (468, 2299, 'attending', '2023-10-20 17:14:29', '2025-12-17 19:46:46', 'NmLXw9Nm', '6472181'), - (468, 2300, 'not_attending', '2023-10-15 20:50:34', '2025-12-17 19:46:47', 'NmLXw9Nm', '6472185'), - (468, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', 'NmLXw9Nm', '6474276'), - (468, 2303, 'attending', '2023-10-25 00:38:01', '2025-12-17 19:46:47', 'NmLXw9Nm', '6482691'), - (468, 2304, 'attending', '2023-10-29 05:35:40', '2025-12-17 19:46:47', 'NmLXw9Nm', '6482693'), - (468, 2306, 'maybe', '2023-11-01 17:39:05', '2025-12-17 19:46:47', 'NmLXw9Nm', '6484200'), - (468, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'NmLXw9Nm', '6484680'), - (468, 2310, 'attending', '2023-11-01 17:38:00', '2025-12-17 19:46:47', 'NmLXw9Nm', '6487709'), - (468, 2311, 'not_attending', '2023-11-01 17:38:30', '2025-12-17 19:46:47', 'NmLXw9Nm', '6487725'), - (468, 2315, 'not_attending', '2023-10-29 20:24:20', '2025-12-17 19:46:47', 'NmLXw9Nm', '6493666'), - (468, 2316, 'not_attending', '2023-11-01 17:39:08', '2025-12-17 19:46:48', 'NmLXw9Nm', '6493668'), - (468, 2317, 'attending', '2023-10-29 20:18:28', '2025-12-17 19:46:47', 'NmLXw9Nm', '6507741'), - (468, 2320, 'maybe', '2023-11-01 17:38:33', '2025-12-17 19:46:47', 'NmLXw9Nm', '6508647'), - (468, 2321, 'not_attending', '2023-11-01 17:38:16', '2025-12-17 19:46:47', 'NmLXw9Nm', '6512075'), - (468, 2322, 'not_attending', '2023-11-01 17:37:57', '2025-12-17 19:46:48', 'NmLXw9Nm', '6514659'), - (468, 2323, 'not_attending', '2023-11-07 22:08:14', '2025-12-17 19:46:49', 'NmLXw9Nm', '6514660'), - (468, 2324, 'not_attending', '2023-11-07 22:08:19', '2025-12-17 19:46:49', 'NmLXw9Nm', '6514662'), - (468, 2325, 'not_attending', '2023-11-07 22:08:25', '2025-12-17 19:46:36', 'NmLXw9Nm', '6514663'), - (468, 2326, 'not_attending', '2023-11-12 20:47:19', '2025-12-17 19:46:48', 'NmLXw9Nm', '6514805'), - (468, 2328, 'attending', '2023-11-01 22:01:02', '2025-12-17 19:46:47', 'NmLXw9Nm', '6515504'), - (468, 2329, 'not_attending', '2023-11-02 19:02:05', '2025-12-17 19:46:47', 'NmLXw9Nm', '6517138'), - (468, 2331, 'attending', '2023-11-07 21:37:41', '2025-12-17 19:46:47', 'NmLXw9Nm', '6518640'), - (468, 2332, 'not_attending', '2023-11-03 21:01:19', '2025-12-17 19:46:47', 'NmLXw9Nm', '6518655'), - (468, 2333, 'maybe', '2023-11-07 21:59:13', '2025-12-17 19:46:47', 'NmLXw9Nm', '6519103'), - (468, 2334, 'not_attending', '2023-11-08 04:09:55', '2025-12-17 19:46:48', 'NmLXw9Nm', '6529252'), - (468, 2335, 'not_attending', '2023-11-10 20:45:46', '2025-12-17 19:46:47', 'NmLXw9Nm', '6534890'), - (468, 2336, 'attending', '2023-11-07 21:56:10', '2025-12-17 19:46:47', 'NmLXw9Nm', '6535500'), - (468, 2337, 'not_attending', '2023-11-08 01:07:54', '2025-12-17 19:46:48', 'NmLXw9Nm', '6535681'), - (468, 2338, 'maybe', '2023-11-25 21:09:10', '2025-12-17 19:46:48', 'NmLXw9Nm', '6538868'), - (468, 2339, 'not_attending', '2023-11-09 22:42:02', '2025-12-17 19:46:47', 'NmLXw9Nm', '6539128'), - (468, 2340, 'not_attending', '2023-11-16 21:51:58', '2025-12-17 19:46:48', 'NmLXw9Nm', '6540279'), - (468, 2341, 'attending', '2023-11-12 20:14:12', '2025-12-17 19:46:48', 'NmLXw9Nm', '6543263'), - (468, 2343, 'not_attending', '2023-11-15 02:33:53', '2025-12-17 19:46:48', 'NmLXw9Nm', '6574728'), - (468, 2345, 'maybe', '2023-11-24 22:22:30', '2025-12-17 19:46:48', 'NmLXw9Nm', '6582414'), - (468, 2347, 'not_attending', '2023-11-20 22:09:00', '2025-12-17 19:46:48', 'NmLXw9Nm', '6583053'), - (468, 2348, 'not_attending', '2023-11-20 22:09:08', '2025-12-17 19:46:48', 'NmLXw9Nm', '6583064'), - (468, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLXw9Nm', '6584747'), - (468, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLXw9Nm', '6587097'), - (468, 2353, 'not_attending', '2023-11-30 20:43:08', '2025-12-17 19:46:48', 'NmLXw9Nm', '6588894'), - (468, 2355, 'not_attending', '2023-11-30 20:43:22', '2025-12-17 19:46:49', 'NmLXw9Nm', '6593339'), - (468, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLXw9Nm', '6609022'), - (468, 2366, 'not_attending', '2023-12-08 04:31:32', '2025-12-17 19:46:36', 'NmLXw9Nm', '6615304'), - (468, 2373, 'attending', '2024-01-07 05:21:49', '2025-12-17 19:46:38', 'NmLXw9Nm', '6632678'), - (468, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'NmLXw9Nm', '6632757'), - (468, 2377, 'not_attending', '2024-01-07 05:19:41', '2025-12-17 19:46:37', 'NmLXw9Nm', '6643448'), - (468, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLXw9Nm', '6644187'), - (468, 2385, 'not_attending', '2024-01-07 05:19:44', '2025-12-17 19:46:37', 'NmLXw9Nm', '6648943'), - (468, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLXw9Nm', '6648951'), - (468, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'NmLXw9Nm', '6648952'), - (468, 2389, 'not_attending', '2024-01-07 05:21:45', '2025-12-17 19:46:40', 'NmLXw9Nm', '6651094'), - (468, 2391, 'maybe', '2024-01-07 05:21:10', '2025-12-17 19:46:37', 'NmLXw9Nm', '6654138'), - (468, 2392, 'attending', '2024-01-07 05:19:50', '2025-12-17 19:46:37', 'NmLXw9Nm', '6654412'), - (468, 2393, 'maybe', '2024-01-07 05:21:29', '2025-12-17 19:46:38', 'NmLXw9Nm', '6654468'), - (468, 2394, 'not_attending', '2024-01-07 05:21:40', '2025-12-17 19:46:38', 'NmLXw9Nm', '6654470'), - (468, 2395, 'not_attending', '2024-01-14 20:04:37', '2025-12-17 19:46:38', 'NmLXw9Nm', '6654471'), - (468, 2396, 'not_attending', '2024-01-14 20:04:42', '2025-12-17 19:46:38', 'NmLXw9Nm', '6655401'), - (468, 2397, 'not_attending', '2024-01-07 05:19:33', '2025-12-17 19:46:37', 'NmLXw9Nm', '6657379'), - (468, 2399, 'attending', '2024-01-12 21:15:08', '2025-12-17 19:46:38', 'NmLXw9Nm', '6657583'), - (468, 2401, 'attending', '2024-01-09 19:03:06', '2025-12-17 19:46:37', 'NmLXw9Nm', '6661585'), - (468, 2402, 'attending', '2024-01-09 19:05:04', '2025-12-17 19:46:38', 'NmLXw9Nm', '6661588'), - (468, 2403, 'attending', '2024-01-09 19:06:36', '2025-12-17 19:46:40', 'NmLXw9Nm', '6661589'), - (468, 2404, 'not_attending', '2024-01-14 20:04:29', '2025-12-17 19:46:38', 'NmLXw9Nm', '6666858'), - (468, 2405, 'not_attending', '2024-01-15 04:18:20', '2025-12-17 19:46:38', 'NmLXw9Nm', '6667332'), - (468, 2406, 'maybe', '2024-01-15 04:18:53', '2025-12-17 19:46:40', 'NmLXw9Nm', '6692344'), - (468, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLXw9Nm', '6699906'), - (468, 2408, 'attending', '2024-01-25 19:13:48', '2025-12-17 19:46:40', 'NmLXw9Nm', '6699907'), - (468, 2410, 'attending', '2024-02-10 23:29:09', '2025-12-17 19:46:41', 'NmLXw9Nm', '6699911'), - (468, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'NmLXw9Nm', '6699913'), - (468, 2413, 'maybe', '2024-02-10 23:29:20', '2025-12-17 19:46:42', 'NmLXw9Nm', '6700719'), - (468, 2416, 'attending', '2024-01-16 06:21:30', '2025-12-17 19:46:40', 'NmLXw9Nm', '6701109'), - (468, 2424, 'maybe', '2024-01-20 00:50:37', '2025-12-17 19:46:40', 'NmLXw9Nm', '6705143'), - (468, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLXw9Nm', '6705219'), - (468, 2426, 'not_attending', '2024-01-23 00:32:39', '2025-12-17 19:46:40', 'NmLXw9Nm', '6705569'), - (468, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLXw9Nm', '6710153'), - (468, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLXw9Nm', '6711552'), - (468, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'NmLXw9Nm', '6711553'), - (468, 2436, 'not_attending', '2024-01-27 21:30:21', '2025-12-17 19:46:40', 'NmLXw9Nm', '6722687'), - (468, 2437, 'attending', '2024-01-27 19:34:39', '2025-12-17 19:46:41', 'NmLXw9Nm', '6722688'), - (468, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'NmLXw9Nm', '6730620'), - (468, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'NmLXw9Nm', '6730642'), - (468, 2448, 'not_attending', '2024-03-29 18:31:10', '2025-12-17 19:46:33', 'NmLXw9Nm', '6734371'), - (468, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'NmLXw9Nm', '6740364'), - (468, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'NmLXw9Nm', '6743829'), - (468, 2462, 'not_attending', '2024-02-10 23:29:27', '2025-12-17 19:46:41', 'NmLXw9Nm', '6744701'), - (468, 2467, 'attending', '2024-02-24 20:53:28', '2025-12-17 19:46:43', 'NmLXw9Nm', '7029987'), - (468, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'NmLXw9Nm', '7030380'), - (468, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'NmLXw9Nm', '7033677'), - (468, 2473, 'not_attending', '2024-02-26 22:01:11', '2025-12-17 19:46:43', 'NmLXw9Nm', '7033724'), - (468, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'NmLXw9Nm', '7035415'), - (468, 2475, 'not_attending', '2024-02-27 23:12:06', '2025-12-17 19:46:43', 'NmLXw9Nm', '7035643'), - (468, 2476, 'not_attending', '2024-02-26 22:01:07', '2025-12-17 19:46:43', 'NmLXw9Nm', '7035691'), - (468, 2480, 'maybe', '2024-02-24 20:53:31', '2025-12-17 19:46:43', 'NmLXw9Nm', '7042160'), - (468, 2481, 'attending', '2024-02-24 21:02:21', '2025-12-17 19:46:43', 'NmLXw9Nm', '7044715'), - (468, 2482, 'attending', '2024-02-24 21:06:35', '2025-12-17 19:46:44', 'NmLXw9Nm', '7044719'), - (468, 2483, 'not_attending', '2024-02-24 21:09:04', '2025-12-17 19:46:32', 'NmLXw9Nm', '7044720'), - (468, 2484, 'not_attending', '2024-02-29 20:42:38', '2025-12-17 19:46:43', 'NmLXw9Nm', '7046836'), - (468, 2485, 'not_attending', '2024-02-29 20:40:39', '2025-12-17 19:46:43', 'NmLXw9Nm', '7048111'), - (468, 2486, 'not_attending', '2024-02-29 20:42:50', '2025-12-17 19:46:43', 'NmLXw9Nm', '7048277'), - (468, 2487, 'not_attending', '2024-03-17 18:36:01', '2025-12-17 19:46:33', 'NmLXw9Nm', '7049279'), - (468, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'NmLXw9Nm', '7050318'), - (468, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'NmLXw9Nm', '7050319'), - (468, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'NmLXw9Nm', '7050322'), - (468, 2493, 'not_attending', '2024-03-02 20:32:26', '2025-12-17 19:46:32', 'NmLXw9Nm', '7052471'), - (468, 2494, 'not_attending', '2024-03-02 20:32:29', '2025-12-17 19:46:32', 'NmLXw9Nm', '7052472'), - (468, 2495, 'not_attending', '2024-03-01 04:29:23', '2025-12-17 19:46:32', 'NmLXw9Nm', '7052982'), - (468, 2498, 'not_attending', '2024-03-17 18:35:38', '2025-12-17 19:46:33', 'NmLXw9Nm', '7057662'), - (468, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'NmLXw9Nm', '7057804'), - (468, 2502, 'not_attending', '2024-03-17 18:35:42', '2025-12-17 19:46:33', 'NmLXw9Nm', '7061202'), - (468, 2503, 'not_attending', '2024-03-09 16:51:36', '2025-12-17 19:46:32', 'NmLXw9Nm', '7062500'), - (468, 2504, 'not_attending', '2024-03-17 18:35:58', '2025-12-17 19:46:33', 'NmLXw9Nm', '7063296'), - (468, 2505, 'not_attending', '2024-03-17 18:35:53', '2025-12-17 19:46:33', 'NmLXw9Nm', '7069163'), - (468, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'NmLXw9Nm', '7072824'), - (468, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'NmLXw9Nm', '7074348'), - (468, 2510, 'not_attending', '2024-03-17 18:35:56', '2025-12-17 19:46:33', 'NmLXw9Nm', '7074350'), - (468, 2511, 'not_attending', '2024-04-07 07:30:37', '2025-12-17 19:46:33', 'NmLXw9Nm', '7074351'), - (468, 2512, 'not_attending', '2024-04-04 18:53:19', '2025-12-17 19:46:33', 'NmLXw9Nm', '7074352'), - (468, 2513, 'not_attending', '2024-04-15 18:05:49', '2025-12-17 19:46:34', 'NmLXw9Nm', '7074353'), - (468, 2518, 'not_attending', '2024-07-20 22:40:59', '2025-12-17 19:46:30', 'NmLXw9Nm', '7074358'), - (468, 2519, 'not_attending', '2024-05-24 23:40:45', '2025-12-17 19:46:36', 'NmLXw9Nm', '7074359'), - (468, 2520, 'not_attending', '2024-05-14 18:09:15', '2025-12-17 19:46:35', 'NmLXw9Nm', '7074360'), - (468, 2521, 'not_attending', '2024-06-19 20:29:06', '2025-12-17 19:46:29', 'NmLXw9Nm', '7074361'), - (468, 2522, 'not_attending', '2024-07-11 21:19:58', '2025-12-17 19:46:30', 'NmLXw9Nm', '7074362'), - (468, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'NmLXw9Nm', '7074364'), - (468, 2525, 'maybe', '2024-06-12 04:07:43', '2025-12-17 19:46:28', 'NmLXw9Nm', '7074365'), - (468, 2527, 'not_attending', '2024-06-23 21:45:13', '2025-12-17 19:46:29', 'NmLXw9Nm', '7074367'), - (468, 2528, 'maybe', '2024-08-07 17:05:17', '2025-12-17 19:46:31', 'NmLXw9Nm', '7074368'), - (468, 2530, 'maybe', '2024-08-15 21:55:14', '2025-12-17 19:46:31', 'NmLXw9Nm', '7074373'), - (468, 2532, 'not_attending', '2024-09-01 22:44:20', '2025-12-17 19:46:32', 'NmLXw9Nm', '7074383'), - (468, 2535, 'attending', '2024-03-13 19:11:02', '2025-12-17 19:46:32', 'NmLXw9Nm', '7076879'), - (468, 2536, 'not_attending', '2024-03-17 18:32:56', '2025-12-17 19:46:33', 'NmLXw9Nm', '7077689'), - (468, 2537, 'attending', '2024-03-22 19:40:43', '2025-12-17 19:46:33', 'NmLXw9Nm', '7085484'), - (468, 2539, 'not_attending', '2024-04-01 16:01:57', '2025-12-17 19:46:33', 'NmLXw9Nm', '7085486'), - (468, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'NmLXw9Nm', '7089267'), - (468, 2541, 'not_attending', '2024-03-17 18:35:45', '2025-12-17 19:46:33', 'NmLXw9Nm', '7089404'), - (468, 2542, 'not_attending', '2024-03-27 04:00:20', '2025-12-17 19:46:33', 'NmLXw9Nm', '7090025'), - (468, 2543, 'maybe', '2024-03-29 18:31:40', '2025-12-17 19:46:33', 'NmLXw9Nm', '7091456'), - (468, 2544, 'attending', '2024-03-21 21:22:34', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096941'), - (468, 2545, 'attending', '2024-03-21 21:26:30', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096942'), - (468, 2546, 'attending', '2024-03-21 21:28:16', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096944'), - (468, 2547, 'attending', '2024-03-21 21:38:35', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096945'), - (468, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'NmLXw9Nm', '7098747'), - (468, 2549, 'attending', '2024-03-24 20:20:34', '2025-12-17 19:46:33', 'NmLXw9Nm', '7099657'), - (468, 2551, 'not_attending', '2024-03-29 18:31:22', '2025-12-17 19:46:33', 'NmLXw9Nm', '7109912'), - (468, 2552, 'not_attending', '2024-03-27 22:18:12', '2025-12-17 19:46:33', 'NmLXw9Nm', '7111123'), - (468, 2553, 'maybe', '2024-03-29 18:31:29', '2025-12-17 19:46:33', 'NmLXw9Nm', '7113468'), - (468, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'NmLXw9Nm', '7114856'), - (468, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'NmLXw9Nm', '7114951'), - (468, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'NmLXw9Nm', '7114955'), - (468, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'NmLXw9Nm', '7114956'), - (468, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'NmLXw9Nm', '7114957'), - (468, 2560, 'not_attending', '2024-04-07 07:30:33', '2025-12-17 19:46:33', 'NmLXw9Nm', '7130086'), - (468, 2563, 'not_attending', '2024-04-07 07:30:41', '2025-12-17 19:46:33', 'NmLXw9Nm', '7134734'), - (468, 2564, 'not_attending', '2024-04-07 07:29:07', '2025-12-17 19:46:33', 'NmLXw9Nm', '7134735'), - (468, 2566, 'not_attending', '2024-04-07 07:29:02', '2025-12-17 19:46:34', 'NmLXw9Nm', '7140664'), - (468, 2567, 'not_attending', '2024-04-04 18:53:00', '2025-12-17 19:46:33', 'NmLXw9Nm', '7144962'), - (468, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'NmLXw9Nm', '7153615'), - (468, 2569, 'not_attending', '2024-04-07 19:06:10', '2025-12-17 19:46:33', 'NmLXw9Nm', '7154056'), - (468, 2570, 'not_attending', '2024-04-07 18:51:32', '2025-12-17 19:46:33', 'NmLXw9Nm', '7159187'), - (468, 2571, 'not_attending', '2024-04-08 01:53:12', '2025-12-17 19:46:33', 'NmLXw9Nm', '7159484'), - (468, 2572, 'not_attending', '2024-04-08 01:53:30', '2025-12-17 19:46:33', 'NmLXw9Nm', '7159522'), - (468, 2573, 'not_attending', '2024-04-09 06:19:12', '2025-12-17 19:46:34', 'NmLXw9Nm', '7160612'), - (468, 2574, 'not_attending', '2024-04-12 21:31:50', '2025-12-17 19:46:33', 'NmLXw9Nm', '7163825'), - (468, 2575, 'not_attending', '2024-04-10 19:44:18', '2025-12-17 19:46:33', 'NmLXw9Nm', '7164534'), - (468, 2576, 'not_attending', '2024-04-21 23:54:29', '2025-12-17 19:46:34', 'NmLXw9Nm', '7164538'), - (468, 2577, 'not_attending', '2024-04-11 06:04:09', '2025-12-17 19:46:33', 'NmLXw9Nm', '7166293'), - (468, 2578, 'not_attending', '2024-04-11 18:55:31', '2025-12-17 19:46:34', 'NmLXw9Nm', '7167016'), - (468, 2579, 'not_attending', '2024-04-11 19:36:27', '2025-12-17 19:46:33', 'NmLXw9Nm', '7167020'), - (468, 2580, 'attending', '2024-04-11 18:55:27', '2025-12-17 19:46:34', 'NmLXw9Nm', '7167272'), - (468, 2581, 'not_attending', '2024-04-21 23:56:47', '2025-12-17 19:46:34', 'NmLXw9Nm', '7169048'), - (468, 2582, 'not_attending', '2024-04-15 18:05:46', '2025-12-17 19:46:34', 'NmLXw9Nm', '7169765'), - (468, 2583, 'not_attending', '2024-04-15 18:05:39', '2025-12-17 19:46:34', 'NmLXw9Nm', '7172946'), - (468, 2584, 'not_attending', '2024-04-16 17:38:55', '2025-12-17 19:46:34', 'NmLXw9Nm', '7175057'), - (468, 2588, 'not_attending', '2024-04-16 17:38:51', '2025-12-17 19:46:34', 'NmLXw9Nm', '7177233'), - (468, 2589, 'not_attending', '2024-04-16 17:38:48', '2025-12-17 19:46:34', 'NmLXw9Nm', '7177235'), - (468, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'NmLXw9Nm', '7178446'), - (468, 2594, 'not_attending', '2024-04-21 23:56:43', '2025-12-17 19:46:34', 'NmLXw9Nm', '7182117'), - (468, 2595, 'not_attending', '2024-04-21 23:57:07', '2025-12-17 19:46:34', 'NmLXw9Nm', '7182252'), - (468, 2597, 'not_attending', '2024-04-21 23:54:24', '2025-12-17 19:46:34', 'NmLXw9Nm', '7186726'), - (468, 2598, 'not_attending', '2024-04-21 23:56:58', '2025-12-17 19:46:34', 'NmLXw9Nm', '7186731'), - (468, 2600, 'not_attending', '2024-04-30 17:37:45', '2025-12-17 19:46:35', 'NmLXw9Nm', '7196794'), - (468, 2602, 'attending', '2024-04-26 04:43:37', '2025-12-17 19:46:34', 'NmLXw9Nm', '7220467'), - (468, 2603, 'not_attending', '2024-05-14 18:08:59', '2025-12-17 19:46:35', 'NmLXw9Nm', '7225669'), - (468, 2604, 'not_attending', '2024-05-24 23:40:42', '2025-12-17 19:46:36', 'NmLXw9Nm', '7225670'), - (468, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'NmLXw9Nm', '7240354'), - (468, 2613, 'not_attending', '2024-05-09 16:56:02', '2025-12-17 19:46:35', 'NmLXw9Nm', '7247644'), - (468, 2614, 'not_attending', '2024-05-10 04:34:08', '2025-12-17 19:46:35', 'NmLXw9Nm', '7247645'), - (468, 2616, 'not_attending', '2024-05-09 16:55:58', '2025-12-17 19:46:35', 'NmLXw9Nm', '7250296'), - (468, 2617, 'attending', '2024-05-03 19:12:40', '2025-12-17 19:46:35', 'NmLXw9Nm', '7251633'), - (468, 2619, 'not_attending', '2024-05-10 04:34:05', '2025-12-17 19:46:35', 'NmLXw9Nm', '7252965'), - (468, 2620, 'not_attending', '2024-05-14 18:09:18', '2025-12-17 19:46:35', 'NmLXw9Nm', '7258097'), - (468, 2622, 'not_attending', '2024-05-10 04:34:00', '2025-12-17 19:46:35', 'NmLXw9Nm', '7262064'), - (468, 2623, 'maybe', '2024-05-10 21:25:28', '2025-12-17 19:46:35', 'NmLXw9Nm', '7263048'), - (468, 2624, 'attending', '2024-05-10 21:44:19', '2025-12-17 19:46:35', 'NmLXw9Nm', '7263301'), - (468, 2625, 'attending', '2024-05-10 21:46:14', '2025-12-17 19:46:35', 'NmLXw9Nm', '7263302'), - (468, 2626, 'attending', '2024-05-14 18:08:27', '2025-12-17 19:46:35', 'NmLXw9Nm', '7264723'), - (468, 2627, 'attending', '2024-05-24 23:40:17', '2025-12-17 19:46:35', 'NmLXw9Nm', '7264724'), - (468, 2628, 'maybe', '2024-05-24 23:40:57', '2025-12-17 19:46:36', 'NmLXw9Nm', '7264725'), - (468, 2629, 'attending', '2024-05-24 23:40:59', '2025-12-17 19:46:28', 'NmLXw9Nm', '7264726'), - (468, 2630, 'not_attending', '2024-05-14 18:09:05', '2025-12-17 19:46:35', 'NmLXw9Nm', '7264801'), - (468, 2632, 'not_attending', '2024-05-14 18:09:02', '2025-12-17 19:46:35', 'NmLXw9Nm', '7269123'), - (468, 2633, 'not_attending', '2024-05-14 18:09:21', '2025-12-17 19:46:35', 'NmLXw9Nm', '7270095'), - (468, 2636, 'not_attending', '2024-05-24 23:40:28', '2025-12-17 19:46:35', 'NmLXw9Nm', '7270323'), - (468, 2637, 'not_attending', '2024-05-24 23:40:32', '2025-12-17 19:46:35', 'NmLXw9Nm', '7270324'), - (468, 2641, 'not_attending', '2024-05-18 07:18:47', '2025-12-17 19:46:35', 'NmLXw9Nm', '7276107'), - (468, 2642, 'not_attending', '2024-05-18 07:18:54', '2025-12-17 19:46:35', 'NmLXw9Nm', '7276108'), - (468, 2643, 'attending', '2024-05-18 18:01:31', '2025-12-17 19:46:35', 'NmLXw9Nm', '7276587'), - (468, 2647, 'attending', '2024-06-09 19:02:37', '2025-12-17 19:46:28', 'NmLXw9Nm', '7282057'), - (468, 2649, 'not_attending', '2024-05-24 23:40:26', '2025-12-17 19:46:35', 'NmLXw9Nm', '7282950'), - (468, 2650, 'not_attending', '2024-05-24 23:40:38', '2025-12-17 19:46:36', 'NmLXw9Nm', '7288199'), - (468, 2651, 'maybe', '2024-05-24 22:04:56', '2025-12-17 19:46:35', 'NmLXw9Nm', '7288200'), - (468, 2652, 'not_attending', '2024-05-24 23:40:48', '2025-12-17 19:46:36', 'NmLXw9Nm', '7288339'), - (468, 2654, 'not_attending', '2024-05-26 21:19:46', '2025-12-17 19:46:36', 'NmLXw9Nm', '7291219'), - (468, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'NmLXw9Nm', '7302674'), - (468, 2671, 'attending', '2024-06-09 21:19:37', '2025-12-17 19:46:28', 'NmLXw9Nm', '7318256'), - (468, 2673, 'maybe', '2024-06-09 21:19:32', '2025-12-17 19:46:28', 'NmLXw9Nm', '7319473'), - (468, 2674, 'not_attending', '2024-06-30 23:55:41', '2025-12-17 19:46:29', 'NmLXw9Nm', '7319480'), - (468, 2675, 'maybe', '2024-08-04 01:49:27', '2025-12-17 19:46:31', 'NmLXw9Nm', '7319481'), - (468, 2678, 'maybe', '2024-06-12 04:07:52', '2025-12-17 19:46:28', 'NmLXw9Nm', '7319489'), - (468, 2679, 'maybe', '2024-06-12 04:07:49', '2025-12-17 19:46:29', 'NmLXw9Nm', '7319490'), - (468, 2683, 'not_attending', '2024-06-12 04:07:39', '2025-12-17 19:46:28', 'NmLXw9Nm', '7321978'), - (468, 2686, 'maybe', '2024-06-19 20:29:34', '2025-12-17 19:46:29', 'NmLXw9Nm', '7323802'), - (468, 2687, 'attending', '2024-06-11 19:38:46', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324019'), - (468, 2688, 'not_attending', '2024-06-20 22:43:08', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324073'), - (468, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324074'), - (468, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'NmLXw9Nm', '7324075'), - (468, 2691, 'attending', '2024-07-17 05:10:49', '2025-12-17 19:46:30', 'NmLXw9Nm', '7324076'), - (468, 2692, 'attending', '2024-07-27 04:14:14', '2025-12-17 19:46:30', 'NmLXw9Nm', '7324077'), - (468, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'NmLXw9Nm', '7324078'), - (468, 2694, 'attending', '2024-08-10 08:05:14', '2025-12-17 19:46:31', 'NmLXw9Nm', '7324079'), - (468, 2695, 'attending', '2024-08-16 03:14:05', '2025-12-17 19:46:31', 'NmLXw9Nm', '7324080'), - (468, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'NmLXw9Nm', '7324082'), - (468, 2698, 'not_attending', '2024-09-01 22:44:25', '2025-12-17 19:46:24', 'NmLXw9Nm', '7324083'), - (468, 2699, 'maybe', '2024-06-12 17:29:05', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324385'), - (468, 2700, 'not_attending', '2024-06-14 04:07:39', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324388'), - (468, 2701, 'not_attending', '2024-06-23 21:45:15', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324391'), - (468, 2705, 'maybe', '2024-06-23 21:45:22', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324944'), - (468, 2706, 'not_attending', '2024-06-17 07:29:15', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324947'), - (468, 2707, 'not_attending', '2024-06-17 07:29:11', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324952'), - (468, 2710, 'not_attending', '2024-06-19 20:29:19', '2025-12-17 19:46:29', 'NmLXw9Nm', '7325108'), - (468, 2711, 'not_attending', '2024-07-17 23:17:58', '2025-12-17 19:46:30', 'NmLXw9Nm', '7326524'), - (468, 2716, 'maybe', '2024-06-16 21:03:37', '2025-12-17 19:46:29', 'NmLXw9Nm', '7329096'), - (468, 2717, 'not_attending', '2024-06-23 21:45:09', '2025-12-17 19:46:29', 'NmLXw9Nm', '7329149'), - (468, 2720, 'not_attending', '2024-06-18 22:49:08', '2025-12-17 19:46:28', 'NmLXw9Nm', '7331436'), - (468, 2721, 'not_attending', '2024-06-23 21:45:00', '2025-12-17 19:46:29', 'NmLXw9Nm', '7331456'), - (468, 2722, 'not_attending', '2024-07-08 18:11:01', '2025-12-17 19:46:29', 'NmLXw9Nm', '7331457'), - (468, 2723, 'not_attending', '2024-06-19 20:29:37', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332389'), - (468, 2724, 'not_attending', '2024-06-23 21:45:05', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332562'), - (468, 2725, 'not_attending', '2024-06-19 20:29:11', '2025-12-17 19:46:28', 'NmLXw9Nm', '7332564'), - (468, 2726, 'maybe', '2024-06-19 20:29:23', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332853'), - (468, 2727, 'not_attending', '2024-06-20 22:41:46', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332865'), - (468, 2728, 'not_attending', '2024-06-20 22:42:03', '2025-12-17 19:46:29', 'NmLXw9Nm', '7334124'), - (468, 2729, 'attending', '2024-06-21 21:28:13', '2025-12-17 19:46:29', 'NmLXw9Nm', '7335092'), - (468, 2730, 'not_attending', '2024-06-22 06:29:46', '2025-12-17 19:46:29', 'NmLXw9Nm', '7335193'), - (468, 2731, 'not_attending', '2024-06-23 21:45:03', '2025-12-17 19:46:29', 'NmLXw9Nm', '7335303'), - (468, 2732, 'not_attending', '2024-06-24 02:07:23', '2025-12-17 19:46:29', 'NmLXw9Nm', '7337207'), - (468, 2734, 'not_attending', '2024-06-30 23:29:04', '2025-12-17 19:46:29', 'NmLXw9Nm', '7339440'), - (468, 2738, 'not_attending', '2024-06-30 23:54:48', '2025-12-17 19:46:29', 'NmLXw9Nm', '7344085'), - (468, 2740, 'not_attending', '2024-06-30 23:53:36', '2025-12-17 19:46:29', 'NmLXw9Nm', '7344576'), - (468, 2741, 'not_attending', '2024-06-30 23:33:33', '2025-12-17 19:46:30', 'NmLXw9Nm', '7344592'), - (468, 2742, 'not_attending', '2024-07-03 04:31:00', '2025-12-17 19:46:29', 'NmLXw9Nm', '7345167'), - (468, 2744, 'not_attending', '2024-07-03 15:22:09', '2025-12-17 19:46:29', 'NmLXw9Nm', '7347764'), - (468, 2746, 'not_attending', '2024-07-03 04:30:23', '2025-12-17 19:46:29', 'NmLXw9Nm', '7348713'), - (468, 2747, 'not_attending', '2024-07-17 01:16:17', '2025-12-17 19:46:30', 'NmLXw9Nm', '7353587'), - (468, 2751, 'not_attending', '2024-07-08 18:18:42', '2025-12-17 19:46:29', 'NmLXw9Nm', '7355530'), - (468, 2752, 'not_attending', '2024-07-08 18:18:47', '2025-12-17 19:46:29', 'NmLXw9Nm', '7355531'), - (468, 2756, 'not_attending', '2024-07-09 23:06:29', '2025-12-17 19:46:29', 'NmLXw9Nm', '7358329'), - (468, 2757, 'attending', '2024-07-11 21:08:03', '2025-12-17 19:46:30', 'NmLXw9Nm', '7358733'), - (468, 2758, 'attending', '2024-07-11 22:15:23', '2025-12-17 19:46:30', 'NmLXw9Nm', '7358837'), - (468, 2759, 'not_attending', '2024-07-12 18:49:36', '2025-12-17 19:46:30', 'NmLXw9Nm', '7359624'), - (468, 2760, 'not_attending', '2024-07-12 23:38:12', '2025-12-17 19:46:30', 'NmLXw9Nm', '7359871'), - (468, 2761, 'not_attending', '2024-07-17 23:17:51', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363412'), - (468, 2762, 'not_attending', '2024-07-14 17:55:39', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363413'), - (468, 2763, 'not_attending', '2024-07-17 23:18:02', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363594'), - (468, 2764, 'maybe', '2024-07-28 03:03:16', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363595'), - (468, 2765, 'not_attending', '2024-07-16 00:11:47', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363604'), - (468, 2766, 'maybe', '2024-07-27 02:52:55', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363643'), - (468, 2767, 'not_attending', '2024-07-17 23:18:06', '2025-12-17 19:46:30', 'NmLXw9Nm', '7364726'), - (468, 2768, 'maybe', '2024-07-18 00:48:06', '2025-12-17 19:46:30', 'NmLXw9Nm', '7366031'), - (468, 2769, 'not_attending', '2024-07-19 22:58:29', '2025-12-17 19:46:30', 'NmLXw9Nm', '7366803'), - (468, 2771, 'attending', '2024-07-20 22:40:48', '2025-12-17 19:46:30', 'NmLXw9Nm', '7368263'), - (468, 2772, 'attending', '2024-07-20 22:40:56', '2025-12-17 19:46:30', 'NmLXw9Nm', '7368267'), - (468, 2774, 'not_attending', '2024-07-21 18:46:16', '2025-12-17 19:46:30', 'NmLXw9Nm', '7368606'), - (468, 2781, 'attending', '2024-07-25 21:25:53', '2025-12-17 19:46:30', 'NmLXw9Nm', '7373194'), - (468, 2782, 'not_attending', '2024-07-27 02:52:51', '2025-12-17 19:46:30', 'NmLXw9Nm', '7376725'), - (468, 2784, 'maybe', '2024-07-31 00:40:40', '2025-12-17 19:46:31', 'NmLXw9Nm', '7380872'), - (468, 2785, 'maybe', '2024-08-02 02:14:35', '2025-12-17 19:46:31', 'NmLXw9Nm', '7380988'), - (468, 2786, 'not_attending', '2024-08-04 02:58:33', '2025-12-17 19:46:31', 'NmLXw9Nm', '7381403'), - (468, 2787, 'not_attending', '2024-08-02 02:14:47', '2025-12-17 19:46:32', 'NmLXw9Nm', '7381568'), - (468, 2788, 'maybe', '2024-08-04 22:22:39', '2025-12-17 19:46:31', 'NmLXw9Nm', '7384036'), - (468, 2789, 'not_attending', '2024-08-03 02:02:03', '2025-12-17 19:46:31', 'NmLXw9Nm', '7384047'), - (468, 2790, 'not_attending', '2024-08-04 22:22:49', '2025-12-17 19:46:31', 'NmLXw9Nm', '7384857'), - (468, 2791, 'attending', '2024-08-06 23:21:35', '2025-12-17 19:46:31', 'NmLXw9Nm', '7390760'), - (468, 2792, 'maybe', '2024-08-07 22:15:18', '2025-12-17 19:46:31', 'NmLXw9Nm', '7390763'), - (468, 2793, 'not_attending', '2024-08-07 22:18:40', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391135'), - (468, 2794, 'attending', '2024-08-08 01:50:51', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391173'), - (468, 2795, 'not_attending', '2024-08-08 17:24:27', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391265'), - (468, 2796, 'not_attending', '2024-08-15 22:05:47', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391451'), - (468, 2797, 'not_attending', '2024-08-12 22:21:29', '2025-12-17 19:46:31', 'NmLXw9Nm', '7392641'), - (468, 2799, 'attending', '2024-08-11 20:22:10', '2025-12-17 19:46:31', 'NmLXw9Nm', '7395922'), - (468, 2800, 'not_attending', '2024-08-15 22:05:45', '2025-12-17 19:46:31', 'NmLXw9Nm', '7397405'), - (468, 2801, 'maybe', '2024-08-14 18:01:09', '2025-12-17 19:46:32', 'NmLXw9Nm', '7397462'), - (468, 2802, 'not_attending', '2024-09-01 22:44:18', '2025-12-17 19:46:32', 'NmLXw9Nm', '7397463'), - (468, 2803, 'maybe', '2024-08-14 18:01:16', '2025-12-17 19:46:32', 'NmLXw9Nm', '7397869'), - (468, 2806, 'not_attending', '2024-09-18 17:49:01', '2025-12-17 19:46:25', 'NmLXw9Nm', '7404888'), - (468, 2814, 'attending', '2024-09-08 18:32:53', '2025-12-17 19:46:24', 'NmLXw9Nm', '7424267'), - (468, 2815, 'maybe', '2024-09-09 23:06:39', '2025-12-17 19:46:25', 'NmLXw9Nm', '7424268'), - (468, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'NmLXw9Nm', '7424275'), - (468, 2822, 'attending', '2024-11-02 02:27:55', '2025-12-17 19:46:26', 'NmLXw9Nm', '7424276'), - (468, 2824, 'attending', '2024-09-08 02:56:26', '2025-12-17 19:46:25', 'NmLXw9Nm', '7432751'), - (468, 2825, 'attending', '2024-09-08 02:56:56', '2025-12-17 19:46:25', 'NmLXw9Nm', '7432752'), - (468, 2826, 'attending', '2024-09-08 02:57:38', '2025-12-17 19:46:25', 'NmLXw9Nm', '7432753'), - (468, 2827, 'attending', '2024-09-08 02:57:59', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432754'), - (468, 2828, 'attending', '2024-09-08 02:58:31', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432755'), - (468, 2829, 'attending', '2024-09-08 02:58:58', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432756'), - (468, 2830, 'attending', '2024-09-08 02:59:30', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432758'), - (468, 2831, 'attending', '2024-09-08 02:59:55', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432759'), - (468, 2832, 'not_attending', '2024-09-09 23:06:27', '2025-12-17 19:46:24', 'NmLXw9Nm', '7433324'), - (468, 2833, 'attending', '2024-09-10 18:57:25', '2025-12-17 19:46:24', 'NmLXw9Nm', '7433834'), - (468, 2834, 'not_attending', '2024-09-13 19:12:33', '2025-12-17 19:46:25', 'NmLXw9Nm', '7433852'), - (468, 2835, 'not_attending', '2024-09-12 17:56:53', '2025-12-17 19:46:24', 'NmLXw9Nm', '7437354'), - (468, 2836, 'maybe', '2024-09-13 19:12:37', '2025-12-17 19:46:25', 'NmLXw9Nm', '7438708'), - (468, 2837, 'not_attending', '2024-09-12 18:57:43', '2025-12-17 19:46:25', 'NmLXw9Nm', '7438711'), - (468, 2838, 'not_attending', '2024-09-27 17:15:00', '2025-12-17 19:46:25', 'NmLXw9Nm', '7439182'), - (468, 2840, 'not_attending', '2024-09-15 21:46:47', '2025-12-17 19:46:25', 'NmLXw9Nm', '7444429'), - (468, 2841, 'not_attending', '2024-09-16 21:18:01', '2025-12-17 19:46:25', 'NmLXw9Nm', '7444444'), - (468, 2844, 'not_attending', '2024-09-19 22:55:59', '2025-12-17 19:46:25', 'NmLXw9Nm', '7450233'), - (468, 2845, 'maybe', '2024-09-21 19:15:10', '2025-12-17 19:46:25', 'NmLXw9Nm', '7452129'), - (468, 2847, 'not_attending', '2024-09-22 02:31:42', '2025-12-17 19:46:25', 'NmLXw9Nm', '7452299'), - (468, 2849, 'attending', '2024-09-28 06:05:24', '2025-12-17 19:46:25', 'NmLXw9Nm', '7457114'), - (468, 2850, 'not_attending', '2024-09-28 06:05:43', '2025-12-17 19:46:25', 'NmLXw9Nm', '7457153'), - (468, 2853, 'maybe', '2024-11-09 20:11:40', '2025-12-17 19:46:26', 'NmLXw9Nm', '7465683'), - (468, 2854, 'attending', '2024-10-02 00:27:58', '2025-12-17 19:46:26', 'NmLXw9Nm', '7465684'), - (468, 2861, 'maybe', '2024-10-01 16:31:29', '2025-12-17 19:46:26', 'NmLXw9Nm', '7469826'), - (468, 2862, 'maybe', '2024-10-01 16:31:44', '2025-12-17 19:46:25', 'NmLXw9Nm', '7470197'), - (468, 2863, 'not_attending', '2024-10-02 00:27:40', '2025-12-17 19:46:26', 'NmLXw9Nm', '7470275'), - (468, 2866, 'not_attending', '2024-11-18 04:40:57', '2025-12-17 19:46:27', 'NmLXw9Nm', '7471201'), - (468, 2870, 'attending', '2024-10-05 21:16:51', '2025-12-17 19:46:26', 'NmLXw9Nm', '7475068'), - (468, 2883, 'attending', '2024-10-23 17:32:03', '2025-12-17 19:46:26', 'NmLXw9Nm', '7649157'), - (468, 2892, 'maybe', '2024-10-28 03:44:31', '2025-12-17 19:46:26', 'NmLXw9Nm', '7672064'), - (468, 2896, 'not_attending', '2024-11-10 21:54:47', '2025-12-17 19:46:27', 'NmLXw9Nm', '7683647'), - (468, 2898, 'maybe', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'NmLXw9Nm', '7685613'), - (468, 2899, 'maybe', '2024-11-10 21:55:16', '2025-12-17 19:46:27', 'NmLXw9Nm', '7685616'), - (468, 2900, 'maybe', '2024-11-10 21:55:01', '2025-12-17 19:46:26', 'NmLXw9Nm', '7686090'), - (468, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'NmLXw9Nm', '7688194'), - (468, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'NmLXw9Nm', '7688196'), - (468, 2905, 'attending', '2024-11-09 04:30:14', '2025-12-17 19:46:27', 'NmLXw9Nm', '7688289'), - (468, 2909, 'attending', '2024-11-10 21:20:29', '2025-12-17 19:46:27', 'NmLXw9Nm', '7689771'), - (468, 2911, 'not_attending', '2024-11-11 05:28:33', '2025-12-17 19:46:27', 'NmLXw9Nm', '7689876'), - (468, 2912, 'maybe', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'NmLXw9Nm', '7692763'), - (468, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'NmLXw9Nm', '7697552'), - (468, 2915, 'not_attending', '2024-11-18 04:40:52', '2025-12-17 19:46:27', 'NmLXw9Nm', '7698151'), - (468, 2916, 'maybe', '2024-11-18 04:40:35', '2025-12-17 19:46:27', 'NmLXw9Nm', '7699006'), - (468, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'NmLXw9Nm', '7699878'), - (468, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'NmLXw9Nm', '7704043'), - (468, 2920, 'not_attending', '2024-11-24 19:35:31', '2025-12-17 19:46:28', 'NmLXw9Nm', '7708406'), - (468, 2921, 'attending', '2024-11-24 01:01:41', '2025-12-17 19:46:28', 'NmLXw9Nm', '7708460'), - (468, 2922, 'not_attending', '2024-11-25 22:53:16', '2025-12-17 19:46:21', 'NmLXw9Nm', '7710890'), - (468, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'NmLXw9Nm', '7712467'), - (468, 2925, 'not_attending', '2024-12-08 04:13:19', '2025-12-17 19:46:21', 'NmLXw9Nm', '7713584'), - (468, 2926, 'maybe', '2024-12-03 04:23:30', '2025-12-17 19:46:21', 'NmLXw9Nm', '7713585'), - (468, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'NmLXw9Nm', '7713586'), - (468, 2945, 'maybe', '2025-03-14 02:17:05', '2025-12-17 19:46:19', 'NmLXw9Nm', '7725964'), - (468, 2951, 'attending', '2024-12-11 01:08:52', '2025-12-17 19:46:21', 'NmLXw9Nm', '7729509'), - (468, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'NmLXw9Nm', '7738518'), - (468, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'NmLXw9Nm', '7750632'), - (468, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'NmLXw9Nm', '7750636'), - (468, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'NmLXw9Nm', '7796540'), - (468, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'NmLXw9Nm', '7796541'), - (468, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'NmLXw9Nm', '7796542'), - (468, 2968, 'not_attending', '2025-01-08 21:07:01', '2025-12-17 19:46:22', 'NmLXw9Nm', '7797967'), - (468, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'NmLXw9Nm', '7825913'), - (468, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', 'NmLXw9Nm', '7825920'), - (468, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'NmLXw9Nm', '7826209'), - (468, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'NmLXw9Nm', '7834742'), - (468, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'NmLXw9Nm', '7842108'), - (468, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'NmLXw9Nm', '7842902'), - (468, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'NmLXw9Nm', '7842903'), - (468, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'NmLXw9Nm', '7842904'), - (468, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'NmLXw9Nm', '7842905'), - (468, 3000, 'not_attending', '2025-02-18 02:47:19', '2025-12-17 19:46:24', 'NmLXw9Nm', '7852541'), - (468, 3003, 'not_attending', '2025-02-19 01:31:26', '2025-12-17 19:46:24', 'NmLXw9Nm', '7854589'), - (468, 3004, 'attending', '2025-02-19 00:06:30', '2025-12-17 19:46:24', 'NmLXw9Nm', '7854599'), - (468, 3005, 'not_attending', '2025-02-19 01:07:48', '2025-12-17 19:46:24', 'NmLXw9Nm', '7854604'), - (468, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'NmLXw9Nm', '7855719'), - (468, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'NmLXw9Nm', '7860683'), - (468, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'NmLXw9Nm', '7860684'), - (468, 3012, 'attending', '2025-03-02 04:04:39', '2025-12-17 19:46:19', 'NmLXw9Nm', '7866095'), - (468, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'NmLXw9Nm', '7869170'), - (468, 3014, 'maybe', '2025-04-05 05:49:29', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869185'), - (468, 3015, 'attending', '2025-04-24 01:05:21', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869186'), - (468, 3016, 'attending', '2025-04-19 22:49:34', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869187'), - (468, 3017, 'attending', '2025-03-25 01:01:00', '2025-12-17 19:46:19', 'NmLXw9Nm', '7869188'), - (468, 3018, 'attending', '2025-04-08 01:56:08', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869189'), - (468, 3019, 'attending', '2025-04-05 05:49:32', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869190'), - (468, 3020, 'attending', '2025-04-19 22:49:40', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869191'), - (468, 3022, 'attending', '2025-04-24 01:05:18', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869193'), - (468, 3028, 'attending', '2025-04-19 22:49:50', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869199'), - (468, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'NmLXw9Nm', '7869201'), - (468, 3033, 'maybe', '2025-03-11 02:34:22', '2025-12-17 19:46:19', 'NmLXw9Nm', '7877465'), - (468, 3034, 'maybe', '2025-03-11 22:38:12', '2025-12-17 19:46:19', 'NmLXw9Nm', '7878570'), - (468, 3037, 'not_attending', '2025-03-14 03:33:13', '2025-12-17 19:46:19', 'NmLXw9Nm', '7880977'), - (468, 3038, 'not_attending', '2025-03-14 03:32:59', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881989'), - (468, 3039, 'attending', '2025-03-14 03:00:20', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881992'), - (468, 3040, 'attending', '2025-03-14 03:05:41', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881994'), - (468, 3041, 'attending', '2025-03-14 03:08:18', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881995'), - (468, 3045, 'maybe', '2025-04-05 05:49:24', '2025-12-17 19:46:19', 'NmLXw9Nm', '7882691'), - (468, 3046, 'maybe', '2025-04-12 04:08:57', '2025-12-17 19:46:20', 'NmLXw9Nm', '7882692'), - (468, 3049, 'not_attending', '2025-03-17 00:15:29', '2025-12-17 19:46:19', 'NmLXw9Nm', '7883215'), - (468, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'NmLXw9Nm', '7888250'), - (468, 3058, 'not_attending', '2025-03-27 00:32:43', '2025-12-17 19:46:19', 'NmLXw9Nm', '7891460'), - (468, 3060, 'maybe', '2025-03-30 23:39:08', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892589'), - (468, 3061, 'not_attending', '2025-03-30 23:38:40', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892590'), - (468, 3062, 'not_attending', '2025-03-30 04:06:51', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892738'), - (468, 3063, 'maybe', '2025-03-27 22:00:24', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892801'), - (468, 3065, 'not_attending', '2025-04-03 22:07:42', '2025-12-17 19:46:19', 'NmLXw9Nm', '7893676'), - (468, 3066, 'attending', '2025-03-30 02:46:51', '2025-12-17 19:46:20', 'NmLXw9Nm', '7894207'), - (468, 3068, 'attending', '2025-03-30 22:46:54', '2025-12-17 19:46:19', 'NmLXw9Nm', '7894823'), - (468, 3069, 'attending', '2025-03-30 23:31:22', '2025-12-17 19:46:19', 'NmLXw9Nm', '7894828'), - (468, 3070, 'attending', '2025-03-30 23:33:31', '2025-12-17 19:46:20', 'NmLXw9Nm', '7894829'), - (468, 3071, 'attending', '2025-03-31 20:39:20', '2025-12-17 19:46:19', 'NmLXw9Nm', '7895429'), - (468, 3075, 'maybe', '2025-04-14 02:34:46', '2025-12-17 19:46:20', 'NmLXw9Nm', '7898896'), - (468, 3076, 'attending', '2025-04-05 05:50:42', '2025-12-17 19:46:20', 'NmLXw9Nm', '7899007'), - (468, 3081, 'not_attending', '2025-04-07 22:38:15', '2025-12-17 19:46:20', 'NmLXw9Nm', '7902801'), - (468, 3083, 'not_attending', '2025-04-09 19:23:23', '2025-12-17 19:46:20', 'NmLXw9Nm', '7903308'), - (468, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'NmLXw9Nm', '7903852'), - (468, 3088, 'attending', '2025-06-13 21:53:47', '2025-12-17 19:46:15', 'NmLXw9Nm', '7904777'), - (468, 3089, 'attending', '2025-04-13 17:13:49', '2025-12-17 19:46:20', 'NmLXw9Nm', '7911208'), - (468, 3093, 'not_attending', '2025-04-19 22:49:45', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342248'), - (468, 3094, 'maybe', '2025-05-02 04:20:52', '2025-12-17 19:46:21', 'NmLXw9Nm', '8342292'), - (468, 3095, 'attending', '2025-05-03 22:46:51', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342293'), - (468, 3096, 'not_attending', '2025-04-21 03:30:16', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342987'), - (468, 3097, 'attending', '2025-04-21 05:24:26', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342993'), - (468, 3098, 'not_attending', '2025-04-22 03:23:00', '2025-12-17 19:46:20', 'NmLXw9Nm', '8343504'), - (468, 3099, 'not_attending', '2025-04-21 23:07:17', '2025-12-17 19:46:20', 'NmLXw9Nm', '8343522'), - (468, 3100, 'not_attending', '2025-04-22 03:22:56', '2025-12-17 19:46:20', 'NmLXw9Nm', '8343977'), - (468, 3101, 'attending', '2025-04-24 00:08:24', '2025-12-17 19:46:20', 'NmLXw9Nm', '8345032'), - (468, 3102, 'not_attending', '2025-04-27 20:55:25', '2025-12-17 19:46:20', 'NmLXw9Nm', '8346008'), - (468, 3104, 'attending', '2025-04-26 23:29:49', '2025-12-17 19:46:15', 'NmLXw9Nm', '8349164'), - (468, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'NmLXw9Nm', '8349545'), - (468, 3107, 'maybe', '2025-04-27 22:47:23', '2025-12-17 19:46:20', 'NmLXw9Nm', '8350107'), - (468, 3109, 'attending', '2025-04-29 02:42:47', '2025-12-17 19:46:21', 'NmLXw9Nm', '8352001'), - (468, 3110, 'not_attending', '2025-05-02 04:20:35', '2025-12-17 19:46:20', 'NmLXw9Nm', '8353484'), - (468, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'NmLXw9Nm', '8353584'), - (468, 3114, 'not_attending', '2025-05-06 04:47:24', '2025-12-17 19:46:20', 'NmLXw9Nm', '8357180'), - (468, 3115, 'not_attending', '2025-05-03 05:49:20', '2025-12-17 19:46:20', 'NmLXw9Nm', '8357635'), - (468, 3119, 'not_attending', '2025-05-05 20:53:22', '2025-12-17 19:46:21', 'NmLXw9Nm', '8360035'), - (468, 3120, 'attending', '2025-05-06 00:47:39', '2025-12-17 19:46:21', 'NmLXw9Nm', '8360736'), - (468, 3121, 'maybe', '2025-05-11 02:41:23', '2025-12-17 19:46:21', 'NmLXw9Nm', '8362730'), - (468, 3122, 'not_attending', '2025-05-07 22:35:05', '2025-12-17 19:46:21', 'NmLXw9Nm', '8362978'), - (468, 3124, 'attending', '2025-05-11 02:39:30', '2025-12-17 19:46:21', 'NmLXw9Nm', '8363566'), - (468, 3125, 'attending', '2025-05-11 02:41:19', '2025-12-17 19:46:21', 'NmLXw9Nm', '8364293'), - (468, 3126, 'maybe', '2025-05-13 21:55:12', '2025-12-17 19:46:21', 'NmLXw9Nm', '8365614'), - (468, 3127, 'not_attending', '2025-05-11 03:58:21', '2025-12-17 19:46:21', 'NmLXw9Nm', '8365615'), - (468, 3128, 'maybe', '2025-05-11 18:33:51', '2025-12-17 19:46:21', 'NmLXw9Nm', '8366077'), - (468, 3129, 'not_attending', '2025-05-12 20:02:16', '2025-12-17 19:46:21', 'NmLXw9Nm', '8366441'), - (468, 3130, 'maybe', '2025-05-27 04:22:45', '2025-12-17 19:46:21', 'NmLXw9Nm', '8367403'), - (468, 3131, 'attending', '2025-05-13 00:28:23', '2025-12-17 19:46:21', 'NmLXw9Nm', '8368028'), - (468, 3132, 'not_attending', '2025-05-13 21:54:33', '2025-12-17 19:46:21', 'NmLXw9Nm', '8368029'), - (468, 3133, 'attending', '2025-05-16 19:09:20', '2025-12-17 19:46:14', 'NmLXw9Nm', '8368030'), - (468, 3134, 'maybe', '2025-05-13 00:28:29', '2025-12-17 19:46:21', 'NmLXw9Nm', '8368031'), - (468, 3135, 'attending', '2025-05-17 04:01:40', '2025-12-17 19:46:21', 'NmLXw9Nm', '8373126'), - (468, 3138, 'not_attending', '2025-05-27 04:22:34', '2025-12-17 19:46:21', 'NmLXw9Nm', '8376037'), - (468, 3142, 'not_attending', '2025-05-27 21:54:17', '2025-12-17 19:46:21', 'NmLXw9Nm', '8387505'), - (468, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'NmLXw9Nm', '8388462'), - (468, 3144, 'attending', '2025-05-30 20:24:52', '2025-12-17 19:46:14', 'NmLXw9Nm', '8393073'), - (468, 3145, 'attending', '2025-05-31 19:53:21', '2025-12-17 19:46:14', 'NmLXw9Nm', '8393168'), - (468, 3146, 'attending', '2025-06-04 04:51:47', '2025-12-17 19:46:15', 'NmLXw9Nm', '8393169'), - (468, 3150, 'maybe', '2025-06-04 04:51:49', '2025-12-17 19:46:15', 'NmLXw9Nm', '8393174'), - (468, 3153, 'maybe', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'NmLXw9Nm', '8400273'), - (468, 3154, 'attending', '2025-06-04 04:51:56', '2025-12-17 19:46:15', 'NmLXw9Nm', '8400274'), - (468, 3155, 'not_attending', '2025-06-04 04:51:57', '2025-12-17 19:46:16', 'NmLXw9Nm', '8400275'), - (468, 3156, 'not_attending', '2025-06-04 04:51:59', '2025-12-17 19:46:16', 'NmLXw9Nm', '8400276'), - (468, 3157, 'attending', '2025-06-04 04:28:53', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401407'), - (468, 3158, 'attending', '2025-06-04 04:30:10', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401408'), - (468, 3159, 'attending', '2025-06-04 04:32:58', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401410'), - (468, 3160, 'attending', '2025-06-04 04:36:10', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401411'), - (468, 3161, 'attending', '2025-06-04 04:38:06', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401412'), - (468, 3162, 'not_attending', '2025-06-05 19:30:15', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401599'), - (468, 3163, 'not_attending', '2025-06-06 23:08:00', '2025-12-17 19:46:15', 'NmLXw9Nm', '8402899'), - (468, 3164, 'attending', '2025-06-06 00:51:05', '2025-12-17 19:46:15', 'NmLXw9Nm', '8403121'), - (468, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'NmLXw9Nm', '8404977'), - (468, 3172, 'maybe', '2025-06-18 01:16:04', '2025-12-17 19:46:15', 'NmLXw9Nm', '8410181'), - (468, 3176, 'attending', '2025-06-20 01:01:56', '2025-12-17 19:46:15', 'NmLXw9Nm', '8416741'), - (468, 3179, 'attending', '2025-06-24 03:27:13', '2025-12-17 19:46:15', 'NmLXw9Nm', '8421850'), - (468, 3180, 'not_attending', '2025-06-25 20:52:03', '2025-12-17 19:46:15', 'NmLXw9Nm', '8422682'), - (468, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'NmLXw9Nm', '8430783'), - (468, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'NmLXw9Nm', '8430784'), - (468, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'NmLXw9Nm', '8430799'), - (468, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'NmLXw9Nm', '8430800'), - (468, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'NmLXw9Nm', '8430801'), - (468, 3186, 'not_attending', '2025-07-02 01:56:39', '2025-12-17 19:46:16', 'NmLXw9Nm', '8431527'), - (468, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'NmLXw9Nm', '8438709'), - (468, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'NmLXw9Nm', '8457738'), - (468, 3197, 'attending', '2025-07-18 02:28:13', '2025-12-17 19:46:17', 'NmLXw9Nm', '8458825'), - (468, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'NmLXw9Nm', '8459566'), - (468, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'NmLXw9Nm', '8459567'), - (468, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'NmLXw9Nm', '8459568'), - (468, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'NmLXw9Nm', '8461032'), - (468, 3213, 'attending', '2025-08-08 22:23:42', '2025-12-17 19:46:17', 'NmLXw9Nm', '8477876'), - (468, 3214, 'attending', '2025-08-05 06:25:51', '2025-12-17 19:46:17', 'NmLXw9Nm', '8477877'), - (468, 3215, 'attending', '2025-08-16 21:51:06', '2025-12-17 19:46:18', 'NmLXw9Nm', '8477880'), - (468, 3220, 'not_attending', '2025-08-16 21:50:29', '2025-12-17 19:46:18', 'NmLXw9Nm', '8485675'), - (468, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'NmLXw9Nm', '8485688'), - (468, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'NmLXw9Nm', '8490587'), - (468, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'NmLXw9Nm', '8493552'), - (468, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'NmLXw9Nm', '8493553'), - (468, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'NmLXw9Nm', '8493554'), - (468, 3239, 'maybe', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'NmLXw9Nm', '8493555'), - (468, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'NmLXw9Nm', '8493556'), - (468, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493557'), - (468, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493558'), - (468, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493559'), - (468, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493560'), - (468, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'NmLXw9Nm', '8493561'), - (468, 3246, 'maybe', '2025-09-24 20:50:59', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493562'), - (468, 3247, 'attending', '2025-10-04 05:54:24', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493563'), - (468, 3248, 'attending', '2025-10-04 05:54:15', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493564'), - (468, 3249, 'attending', '2025-10-04 05:54:19', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493565'), - (468, 3250, 'attending', '2025-10-04 05:54:28', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493566'), - (468, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493572'), - (468, 3271, 'not_attending', '2025-09-16 01:49:12', '2025-12-17 19:46:12', 'NmLXw9Nm', '8521430'), - (468, 3272, 'not_attending', '2025-09-22 01:55:04', '2025-12-17 19:46:12', 'NmLXw9Nm', '8524068'), - (468, 3274, 'not_attending', '2025-09-20 21:23:39', '2025-12-17 19:46:12', 'NmLXw9Nm', '8527784'), - (468, 3279, 'not_attending', '2025-10-02 22:48:24', '2025-12-17 19:46:13', 'NmLXw9Nm', '8535685'), - (468, 3281, 'not_attending', '2025-10-12 22:59:46', '2025-12-17 19:46:14', 'NmLXw9Nm', '8535687'), - (468, 3282, 'attending', '2025-10-04 20:21:37', '2025-12-17 19:46:13', 'NmLXw9Nm', '8537571'), - (468, 3283, 'not_attending', '2025-10-07 04:03:46', '2025-12-17 19:46:14', 'NmLXw9Nm', '8538077'), - (468, 3284, 'attending', '2025-10-08 18:55:04', '2025-12-17 19:46:13', 'NmLXw9Nm', '8540725'), - (468, 3285, 'attending', '2025-10-08 18:56:13', '2025-12-17 19:46:13', 'NmLXw9Nm', '8540726'), - (468, 3286, 'attending', '2025-10-08 18:58:12', '2025-12-17 19:46:14', 'NmLXw9Nm', '8540728'), - (468, 3287, 'attending', '2025-10-08 18:59:25', '2025-12-17 19:46:14', 'NmLXw9Nm', '8540729'), - (468, 3289, 'attending', '2025-10-20 18:07:43', '2025-12-17 19:46:14', 'NmLXw9Nm', '8542939'), - (468, 3290, 'not_attending', '2025-10-12 23:02:51', '2025-12-17 19:46:13', 'NmLXw9Nm', '8542943'), - (468, 3292, 'attending', '2025-10-15 05:53:16', '2025-12-17 19:46:14', 'NmLXw9Nm', '8543835'), - (468, 3293, 'attending', '2025-10-15 05:54:19', '2025-12-17 19:46:14', 'NmLXw9Nm', '8543836'), - (468, 3297, 'attending', '2025-10-21 03:10:20', '2025-12-17 19:46:14', 'NmLXw9Nm', '8548090'), - (468, 3313, 'not_attending', '2025-10-30 02:35:07', '2025-12-17 19:46:14', 'NmLXw9Nm', '8550896'), - (468, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'NmLXw9Nm', '8555421'), - (469, 1857, 'attending', '2023-01-24 00:28:09', '2025-12-17 19:47:05', 'dJ9OElB4', '5873973'), - (469, 1864, 'attending', '2023-01-21 19:52:38', '2025-12-17 19:47:05', 'dJ9OElB4', '5879675'), - (469, 1865, 'attending', '2023-01-29 00:28:55', '2025-12-17 19:47:06', 'dJ9OElB4', '5879676'), - (469, 1866, 'attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dJ9OElB4', '5880939'), - (469, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dJ9OElB4', '5880940'), - (469, 1868, 'attending', '2023-02-21 21:50:20', '2025-12-17 19:47:07', 'dJ9OElB4', '5880942'), - (469, 1869, 'attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dJ9OElB4', '5880943'), - (469, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dJ9OElB4', '5887890'), - (469, 1875, 'attending', '2023-01-28 00:01:45', '2025-12-17 19:47:06', 'dJ9OElB4', '5887908'), - (469, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dJ9OElB4', '5888598'), - (469, 1878, 'attending', '2023-01-29 00:29:22', '2025-12-17 19:47:07', 'dJ9OElB4', '5893000'), - (469, 1879, 'maybe', '2023-01-29 22:49:55', '2025-12-17 19:47:06', 'dJ9OElB4', '5893001'), - (469, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dJ9OElB4', '5893260'), - (469, 1882, 'attending', '2023-01-31 23:33:44', '2025-12-17 19:47:06', 'dJ9OElB4', '5898447'), - (469, 1883, 'maybe', '2023-01-29 19:34:31', '2025-12-17 19:47:06', 'dJ9OElB4', '5898762'), - (469, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dJ9OElB4', '5899826'), - (469, 1885, 'maybe', '2023-02-03 18:29:08', '2025-12-17 19:47:08', 'dJ9OElB4', '5899928'), - (469, 1886, 'attending', '2023-03-07 21:33:02', '2025-12-17 19:47:09', 'dJ9OElB4', '5899930'), - (469, 1888, 'attending', '2023-02-17 16:39:39', '2025-12-17 19:47:07', 'dJ9OElB4', '5900197'), - (469, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dJ9OElB4', '5900199'), - (469, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dJ9OElB4', '5900200'), - (469, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dJ9OElB4', '5900202'), - (469, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dJ9OElB4', '5900203'), - (469, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dJ9OElB4', '5901108'), - (469, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dJ9OElB4', '5901126'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (469, 1897, 'attending', '2023-02-11 23:52:14', '2025-12-17 19:47:07', 'dJ9OElB4', '5901128'), - (469, 1898, 'attending', '2023-02-01 23:57:10', '2025-12-17 19:47:06', 'dJ9OElB4', '5901263'), - (469, 1899, 'attending', '2023-02-11 00:23:07', '2025-12-17 19:47:07', 'dJ9OElB4', '5901323'), - (469, 1902, 'not_attending', '2023-02-04 20:57:08', '2025-12-17 19:47:06', 'dJ9OElB4', '5902254'), - (469, 1905, 'attending', '2023-02-05 20:47:30', '2025-12-17 19:47:06', 'dJ9OElB4', '5904479'), - (469, 1907, 'attending', '2023-02-05 21:03:39', '2025-12-17 19:47:07', 'dJ9OElB4', '5904716'), - (469, 1908, 'attending', '2023-02-07 01:41:00', '2025-12-17 19:47:07', 'dJ9OElB4', '5905018'), - (469, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dJ9OElB4', '5909655'), - (469, 1912, 'attending', '2023-02-17 16:45:45', '2025-12-17 19:47:07', 'dJ9OElB4', '5909808'), - (469, 1914, 'attending', '2023-02-12 07:02:02', '2025-12-17 19:47:07', 'dJ9OElB4', '5910302'), - (469, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dJ9OElB4', '5910522'), - (469, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dJ9OElB4', '5910526'), - (469, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dJ9OElB4', '5910528'), - (469, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dJ9OElB4', '5916219'), - (469, 1925, 'attending', '2023-02-23 19:07:17', '2025-12-17 19:47:08', 'dJ9OElB4', '5932619'), - (469, 1928, 'attending', '2023-02-18 05:46:25', '2025-12-17 19:47:07', 'dJ9OElB4', '5932627'), - (469, 1930, 'attending', '2023-02-26 22:02:23', '2025-12-17 19:47:08', 'dJ9OElB4', '5933462'), - (469, 1931, 'attending', '2023-02-26 23:28:28', '2025-12-17 19:47:08', 'dJ9OElB4', '5933464'), - (469, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dJ9OElB4', '5936234'), - (469, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dJ9OElB4', '5958351'), - (469, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dJ9OElB4', '5959751'), - (469, 1939, 'attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dJ9OElB4', '5959755'), - (469, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dJ9OElB4', '5960055'), - (469, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dJ9OElB4', '5961684'), - (469, 1942, 'attending', '2023-02-27 18:54:00', '2025-12-17 19:47:08', 'dJ9OElB4', '5962085'), - (469, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dJ9OElB4', '5962132'), - (469, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dJ9OElB4', '5962133'), - (469, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dJ9OElB4', '5962134'), - (469, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dJ9OElB4', '5962317'), - (469, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dJ9OElB4', '5962318'), - (469, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dJ9OElB4', '5965933'), - (469, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dJ9OElB4', '5967014'), - (469, 1955, 'attending', '2023-03-29 20:12:29', '2025-12-17 19:46:57', 'dJ9OElB4', '5972529'), - (469, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dJ9OElB4', '5972815'), - (469, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dJ9OElB4', '5974016'), - (469, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dJ9OElB4', '5981515'), - (469, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dJ9OElB4', '5993516'), - (469, 1970, 'attending', '2023-03-23 20:03:18', '2025-12-17 19:46:56', 'dJ9OElB4', '5993758'), - (469, 1974, 'maybe', '2023-03-30 21:42:52', '2025-12-17 19:46:57', 'dJ9OElB4', '5993778'), - (469, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dJ9OElB4', '5998939'), - (469, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dJ9OElB4', '6028191'), - (469, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dJ9OElB4', '6040066'), - (469, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dJ9OElB4', '6042717'), - (469, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dJ9OElB4', '6044838'), - (469, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dJ9OElB4', '6044839'), - (469, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJ9OElB4', '6045684'), - (469, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dJ9OElB4', '6050104'), - (469, 2002, 'attending', '2023-04-28 20:27:27', '2025-12-17 19:47:01', 'dJ9OElB4', '6052605'), - (469, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dJ9OElB4', '6053195'), - (469, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dJ9OElB4', '6053198'), - (469, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dJ9OElB4', '6056085'), - (469, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dJ9OElB4', '6056916'), - (469, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dJ9OElB4', '6059290'), - (469, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dJ9OElB4', '6060328'), - (469, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dJ9OElB4', '6061037'), - (469, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dJ9OElB4', '6061039'), - (469, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dJ9OElB4', '6067245'), - (469, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dJ9OElB4', '6068094'), - (469, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dJ9OElB4', '6068252'), - (469, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dJ9OElB4', '6068253'), - (469, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dJ9OElB4', '6068254'), - (469, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dJ9OElB4', '6068280'), - (469, 2032, 'attending', '2023-06-03 16:47:43', '2025-12-17 19:47:04', 'dJ9OElB4', '6068281'), - (469, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dJ9OElB4', '6069093'), - (469, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dJ9OElB4', '6072528'), - (469, 2043, 'attending', '2023-04-26 22:34:28', '2025-12-17 19:47:01', 'dJ9OElB4', '6073023'), - (469, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dJ9OElB4', '6079840'), - (469, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dJ9OElB4', '6083398'), - (469, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dJ9OElB4', '6093504'), - (469, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dJ9OElB4', '6097414'), - (469, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dJ9OElB4', '6097442'), - (469, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dJ9OElB4', '6097684'), - (469, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dJ9OElB4', '6098762'), - (469, 2065, 'attending', '2023-06-17 19:29:23', '2025-12-17 19:46:49', 'dJ9OElB4', '6101169'), - (469, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dJ9OElB4', '6101361'), - (469, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dJ9OElB4', '6101362'), - (469, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dJ9OElB4', '6103752'), - (469, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dJ9OElB4', '6107314'), - (469, 2083, 'attending', '2023-05-27 21:33:32', '2025-12-17 19:47:04', 'dJ9OElB4', '6115629'), - (469, 2086, 'attending', '2023-06-01 22:41:45', '2025-12-17 19:47:04', 'dJ9OElB4', '6119877'), - (469, 2087, 'attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dJ9OElB4', '6120034'), - (469, 2089, 'attending', '2023-06-03 16:48:34', '2025-12-17 19:47:04', 'dJ9OElB4', '6125227'), - (469, 2091, 'attending', '2023-06-03 16:48:05', '2025-12-17 19:47:04', 'dJ9OElB4', '6130657'), - (469, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dJ9OElB4', '6136733'), - (469, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dJ9OElB4', '6137989'), - (469, 2104, 'attending', '2023-06-22 20:08:41', '2025-12-17 19:46:50', 'dJ9OElB4', '6149499'), - (469, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dJ9OElB4', '6150864'), - (469, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dJ9OElB4', '6155491'), - (469, 2116, 'attending', '2023-07-03 23:12:42', '2025-12-17 19:46:51', 'dJ9OElB4', '6163389'), - (469, 2118, 'attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dJ9OElB4', '6164417'), - (469, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dJ9OElB4', '6166388'), - (469, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dJ9OElB4', '6176439'), - (469, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dJ9OElB4', '6182410'), - (469, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dJ9OElB4', '6185812'), - (469, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dJ9OElB4', '6187651'), - (469, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dJ9OElB4', '6187963'), - (469, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dJ9OElB4', '6187964'), - (469, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dJ9OElB4', '6187966'), - (469, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dJ9OElB4', '6187967'), - (469, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dJ9OElB4', '6187969'), - (469, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dJ9OElB4', '6334878'), - (469, 2152, 'attending', '2023-07-14 21:51:09', '2025-12-17 19:46:52', 'dJ9OElB4', '6337021'), - (469, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dJ9OElB4', '6337236'), - (469, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dJ9OElB4', '6337970'), - (469, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dJ9OElB4', '6338308'), - (469, 2159, 'attending', '2023-07-19 19:59:42', '2025-12-17 19:46:53', 'dJ9OElB4', '6338355'), - (469, 2160, 'attending', '2023-07-27 22:38:50', '2025-12-17 19:46:54', 'dJ9OElB4', '6338358'), - (469, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dJ9OElB4', '6340845'), - (469, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dJ9OElB4', '6341710'), - (469, 2165, 'attending', '2023-08-02 19:51:48', '2025-12-17 19:46:54', 'dJ9OElB4', '6342044'), - (469, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dJ9OElB4', '6342298'), - (469, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dJ9OElB4', '6343294'), - (469, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dJ9OElB4', '6347034'), - (469, 2177, 'attending', '2023-08-12 20:22:00', '2025-12-17 19:46:55', 'dJ9OElB4', '6347053'), - (469, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dJ9OElB4', '6347056'), - (469, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dJ9OElB4', '6353830'), - (469, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dJ9OElB4', '6353831'), - (469, 2189, 'maybe', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dJ9OElB4', '6357867'), - (469, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dJ9OElB4', '6358652'), - (469, 2195, 'attending', '2023-08-25 22:37:44', '2025-12-17 19:46:55', 'dJ9OElB4', '6359397'), - (469, 2196, 'attending', '2023-09-08 21:04:22', '2025-12-17 19:46:56', 'dJ9OElB4', '6359398'), - (469, 2199, 'attending', '2023-08-16 21:29:20', '2025-12-17 19:46:55', 'dJ9OElB4', '6359849'), - (469, 2200, 'attending', '2023-08-10 20:10:01', '2025-12-17 19:46:55', 'dJ9OElB4', '6359850'), - (469, 2202, 'attending', '2023-08-06 19:43:06', '2025-12-17 19:46:54', 'dJ9OElB4', '6360509'), - (469, 2204, 'attending', '2023-08-19 20:44:38', '2025-12-17 19:46:55', 'dJ9OElB4', '6361542'), - (469, 2208, 'attending', '2023-08-09 05:15:23', '2025-12-17 19:46:54', 'dJ9OElB4', '6361709'), - (469, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dJ9OElB4', '6361710'), - (469, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dJ9OElB4', '6361711'), - (469, 2211, 'attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dJ9OElB4', '6361712'), - (469, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dJ9OElB4', '6361713'), - (469, 2213, 'maybe', '2023-08-14 20:59:37', '2025-12-17 19:46:55', 'dJ9OElB4', '6362935'), - (469, 2217, 'maybe', '2023-08-14 21:00:12', '2025-12-17 19:46:55', 'dJ9OElB4', '6364333'), - (469, 2221, 'not_attending', '2023-08-16 21:29:52', '2025-12-17 19:46:55', 'dJ9OElB4', '6367357'), - (469, 2222, 'maybe', '2023-08-25 22:38:47', '2025-12-17 19:46:55', 'dJ9OElB4', '6367358'), - (469, 2232, 'maybe', '2023-08-26 22:09:05', '2025-12-17 19:46:55', 'dJ9OElB4', '6374818'), - (469, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dJ9OElB4', '6382573'), - (469, 2236, 'attending', '2023-08-31 21:58:11', '2025-12-17 19:46:55', 'dJ9OElB4', '6382618'), - (469, 2239, 'attending', '2023-09-02 20:48:48', '2025-12-17 19:46:56', 'dJ9OElB4', '6387592'), - (469, 2240, 'attending', '2023-09-09 19:26:57', '2025-12-17 19:46:56', 'dJ9OElB4', '6388603'), - (469, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dJ9OElB4', '6388604'), - (469, 2242, 'attending', '2023-09-23 19:08:21', '2025-12-17 19:46:45', 'dJ9OElB4', '6388606'), - (469, 2247, 'attending', '2023-09-06 16:32:25', '2025-12-17 19:46:56', 'dJ9OElB4', '6394628'), - (469, 2248, 'attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dJ9OElB4', '6394629'), - (469, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dJ9OElB4', '6394631'), - (469, 2253, 'attending', '2023-09-30 19:21:24', '2025-12-17 19:46:45', 'dJ9OElB4', '6401811'), - (469, 2258, 'maybe', '2023-09-23 19:08:55', '2025-12-17 19:46:45', 'dJ9OElB4', '6419492'), - (469, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dJ9OElB4', '6440863'), - (469, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dJ9OElB4', '6445440'), - (469, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dJ9OElB4', '6453951'), - (469, 2285, 'attending', '2023-10-25 22:36:21', '2025-12-17 19:46:47', 'dJ9OElB4', '6460929'), - (469, 2286, 'attending', '2023-12-02 00:23:00', '2025-12-17 19:46:48', 'dJ9OElB4', '6460930'), - (469, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dJ9OElB4', '6461696'), - (469, 2288, 'maybe', '2023-10-11 03:41:12', '2025-12-17 19:46:46', 'dJ9OElB4', '6462068'), - (469, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dJ9OElB4', '6462129'), - (469, 2290, 'attending', '2023-10-18 21:15:07', '2025-12-17 19:46:46', 'dJ9OElB4', '6462214'), - (469, 2291, 'attending', '2023-10-19 02:04:42', '2025-12-17 19:46:46', 'dJ9OElB4', '6462215'), - (469, 2293, 'attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dJ9OElB4', '6463218'), - (469, 2296, 'attending', '2023-10-25 22:36:04', '2025-12-17 19:46:47', 'dJ9OElB4', '6468393'), - (469, 2299, 'maybe', '2023-10-19 02:05:05', '2025-12-17 19:46:46', 'dJ9OElB4', '6472181'), - (469, 2303, 'attending', '2023-10-28 19:44:45', '2025-12-17 19:46:47', 'dJ9OElB4', '6482691'), - (469, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dJ9OElB4', '6482693'), - (469, 2306, 'attending', '2023-11-14 21:28:42', '2025-12-17 19:46:47', 'dJ9OElB4', '6484200'), - (469, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dJ9OElB4', '6484680'), - (469, 2310, 'attending', '2023-11-09 21:18:44', '2025-12-17 19:46:47', 'dJ9OElB4', '6487709'), - (469, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dJ9OElB4', '6507741'), - (469, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dJ9OElB4', '6514659'), - (469, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dJ9OElB4', '6514660'), - (469, 2324, 'attending', '2023-12-09 04:11:03', '2025-12-17 19:46:49', 'dJ9OElB4', '6514662'), - (469, 2325, 'attending', '2023-12-16 21:12:46', '2025-12-17 19:46:36', 'dJ9OElB4', '6514663'), - (469, 2328, 'maybe', '2023-11-03 18:50:11', '2025-12-17 19:46:47', 'dJ9OElB4', '6515504'), - (469, 2330, 'attending', '2023-11-11 00:40:54', '2025-12-17 19:46:47', 'dJ9OElB4', '6517941'), - (469, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dJ9OElB4', '6519103'), - (469, 2335, 'attending', '2023-11-09 21:19:01', '2025-12-17 19:46:47', 'dJ9OElB4', '6534890'), - (469, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dJ9OElB4', '6535681'), - (469, 2345, 'attending', '2023-11-29 20:22:15', '2025-12-17 19:46:48', 'dJ9OElB4', '6582414'), - (469, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dJ9OElB4', '6584747'), - (469, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dJ9OElB4', '6587097'), - (469, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dJ9OElB4', '6609022'), - (469, 2364, 'attending', '2023-12-09 00:10:03', '2025-12-17 19:46:49', 'dJ9OElB4', '6613011'), - (469, 2370, 'attending', '2023-12-13 21:36:20', '2025-12-17 19:46:36', 'dJ9OElB4', '6623765'), - (469, 2371, 'attending', '2023-12-15 02:11:51', '2025-12-17 19:46:36', 'dJ9OElB4', '6624495'), - (469, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dJ9OElB4', '6632757'), - (469, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dJ9OElB4', '6644187'), - (469, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dJ9OElB4', '6648951'), - (469, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dJ9OElB4', '6648952'), - (469, 2391, 'maybe', '2024-01-13 00:52:20', '2025-12-17 19:46:37', 'dJ9OElB4', '6654138'), - (469, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dJ9OElB4', '6655401'), - (469, 2399, 'attending', '2024-01-13 21:34:42', '2025-12-17 19:46:38', 'dJ9OElB4', '6657583'), - (469, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dJ9OElB4', '6661585'), - (469, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dJ9OElB4', '6661588'), - (469, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dJ9OElB4', '6661589'), - (469, 2406, 'attending', '2024-01-19 23:30:48', '2025-12-17 19:46:40', 'dJ9OElB4', '6692344'), - (469, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dJ9OElB4', '6699906'), - (469, 2408, 'attending', '2024-01-27 20:54:36', '2025-12-17 19:46:40', 'dJ9OElB4', '6699907'), - (469, 2409, 'attending', '2024-02-03 23:50:06', '2025-12-17 19:46:41', 'dJ9OElB4', '6699909'), - (469, 2410, 'attending', '2024-02-10 23:50:33', '2025-12-17 19:46:41', 'dJ9OElB4', '6699911'), - (469, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'dJ9OElB4', '6699913'), - (469, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dJ9OElB4', '6701109'), - (469, 2421, 'attending', '2024-01-26 23:29:38', '2025-12-17 19:46:40', 'dJ9OElB4', '6704598'), - (469, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dJ9OElB4', '6705219'), - (469, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dJ9OElB4', '6710153'), - (469, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dJ9OElB4', '6711552'), - (469, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dJ9OElB4', '6711553'), - (469, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dJ9OElB4', '6722688'), - (469, 2438, 'attending', '2024-02-08 00:47:45', '2025-12-17 19:46:41', 'dJ9OElB4', '6730201'), - (469, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dJ9OElB4', '6730620'), - (469, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dJ9OElB4', '6730642'), - (469, 2445, 'attending', '2024-02-16 23:47:22', '2025-12-17 19:46:41', 'dJ9OElB4', '6734368'), - (469, 2446, 'attending', '2024-03-01 19:14:44', '2025-12-17 19:46:43', 'dJ9OElB4', '6734369'), - (469, 2447, 'attending', '2024-03-15 21:43:13', '2025-12-17 19:46:32', 'dJ9OElB4', '6734370'), - (469, 2448, 'maybe', '2024-03-29 22:35:47', '2025-12-17 19:46:33', 'dJ9OElB4', '6734371'), - (469, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dJ9OElB4', '6740364'), - (469, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dJ9OElB4', '6743829'), - (469, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dJ9OElB4', '7030380'), - (469, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dJ9OElB4', '7033677'), - (469, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dJ9OElB4', '7035415'), - (469, 2476, 'attending', '2024-02-26 00:57:26', '2025-12-17 19:46:43', 'dJ9OElB4', '7035691'), - (469, 2480, 'maybe', '2024-02-24 23:42:39', '2025-12-17 19:46:43', 'dJ9OElB4', '7042160'), - (469, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dJ9OElB4', '7044715'), - (469, 2487, 'not_attending', '2024-03-22 22:25:33', '2025-12-17 19:46:33', 'dJ9OElB4', '7049279'), - (469, 2489, 'attending', '2024-02-28 23:17:22', '2025-12-17 19:46:43', 'dJ9OElB4', '7050161'), - (469, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dJ9OElB4', '7050318'), - (469, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dJ9OElB4', '7050319'), - (469, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dJ9OElB4', '7050322'), - (469, 2498, 'attending', '2024-03-20 20:24:41', '2025-12-17 19:46:33', 'dJ9OElB4', '7057662'), - (469, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dJ9OElB4', '7057804'), - (469, 2500, 'attending', '2024-03-07 00:16:09', '2025-12-17 19:46:43', 'dJ9OElB4', '7058603'), - (469, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dJ9OElB4', '7059866'), - (469, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dJ9OElB4', '7072824'), - (469, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dJ9OElB4', '7074348'), - (469, 2510, 'attending', '2024-03-21 21:37:36', '2025-12-17 19:46:33', 'dJ9OElB4', '7074350'), - (469, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJ9OElB4', '7074364'), - (469, 2534, 'attending', '2024-03-13 19:54:04', '2025-12-17 19:46:32', 'dJ9OElB4', '7076875'), - (469, 2539, 'attending', '2024-04-03 21:43:30', '2025-12-17 19:46:33', 'dJ9OElB4', '7085486'), - (469, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dJ9OElB4', '7089267'), - (469, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dJ9OElB4', '7098747'), - (469, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dJ9OElB4', '7113468'), - (469, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dJ9OElB4', '7114856'), - (469, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'dJ9OElB4', '7114951'), - (469, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dJ9OElB4', '7114955'), - (469, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dJ9OElB4', '7114956'), - (469, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dJ9OElB4', '7114957'), - (469, 2562, 'maybe', '2024-04-03 21:38:45', '2025-12-17 19:46:33', 'dJ9OElB4', '7134552'), - (469, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dJ9OElB4', '7153615'), - (469, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dJ9OElB4', '7159484'), - (469, 2575, 'attending', '2024-04-12 22:14:01', '2025-12-17 19:46:33', 'dJ9OElB4', '7164534'), - (469, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dJ9OElB4', '7178446'), - (469, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dJ9OElB4', '7220467'), - (469, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dJ9OElB4', '7240354'), - (469, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dJ9OElB4', '7251633'), - (469, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dJ9OElB4', '7263048'), - (469, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dJ9OElB4', '7302674'), - (469, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dJ9OElB4', '7324073'), - (469, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJ9OElB4', '7324074'), - (469, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJ9OElB4', '7324075'), - (469, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJ9OElB4', '7324078'), - (469, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dJ9OElB4', '7324082'), - (469, 2706, 'attending', '2024-06-18 00:01:10', '2025-12-17 19:46:28', 'dJ9OElB4', '7324947'), - (469, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dJ9OElB4', '7331457'), - (469, 2723, 'attending', '2024-06-19 17:35:42', '2025-12-17 19:46:29', 'dJ9OElB4', '7332389'), - (469, 2724, 'attending', '2024-06-26 22:13:03', '2025-12-17 19:46:29', 'dJ9OElB4', '7332562'), - (469, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJ9OElB4', '7356752'), - (469, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dJ9OElB4', '7363643'), - (469, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJ9OElB4', '7368606'), - (469, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJ9OElB4', '7397462'), - (469, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJ9OElB4', '7432751'), - (469, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJ9OElB4', '7432752'), - (469, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJ9OElB4', '7432753'), - (469, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJ9OElB4', '7432754'), - (469, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJ9OElB4', '7432755'), - (469, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJ9OElB4', '7432756'), - (469, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJ9OElB4', '7432758'), - (469, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJ9OElB4', '7432759'), - (469, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dJ9OElB4', '7433834'), - (469, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJ9OElB4', '7470197'), - (470, 2066, 'not_attending', '2023-06-09 18:33:39', '2025-12-17 19:47:04', 'Anal0wJm', '6101361'), - (470, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Anal0wJm', '6150864'), - (470, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Anal0wJm', '6155491'), - (470, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Anal0wJm', '6164417'), - (470, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Anal0wJm', '6166388'), - (470, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Anal0wJm', '6176439'), - (470, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'Anal0wJm', '6177485'), - (470, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'Anal0wJm', '6182410'), - (470, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Anal0wJm', '6185812'), - (470, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Anal0wJm', '6187651'), - (470, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Anal0wJm', '6187963'), - (470, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Anal0wJm', '6187964'), - (470, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Anal0wJm', '6187966'), - (470, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Anal0wJm', '6187967'), - (470, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Anal0wJm', '6187969'), - (470, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Anal0wJm', '6334878'), - (471, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'rdO7KaPd', '3149493'), - (471, 393, 'attending', '2021-06-18 13:59:05', '2025-12-17 19:47:38', 'rdO7KaPd', '3236448'), - (471, 823, 'maybe', '2021-06-19 01:17:55', '2025-12-17 19:47:48', 'rdO7KaPd', '3974109'), - (471, 844, 'not_attending', '2021-06-21 14:59:45', '2025-12-17 19:47:38', 'rdO7KaPd', '4014338'), - (471, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'rdO7KaPd', '4021848'), - (471, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'rdO7KaPd', '4136937'), - (471, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'rdO7KaPd', '4136938'), - (471, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'rdO7KaPd', '4136947'), - (471, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdO7KaPd', '4210314'), - (471, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'rdO7KaPd', '4225444'), - (471, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'rdO7KaPd', '4229417'), - (471, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'rdO7KaPd', '4229418'), - (471, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'rdO7KaPd', '4229420'), - (471, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'rdO7KaPd', '4229423'), - (471, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdO7KaPd', '4239259'), - (471, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'rdO7KaPd', '4240316'), - (471, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'rdO7KaPd', '4240317'), - (471, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdO7KaPd', '4240318'), - (471, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'rdO7KaPd', '4240320'), - (471, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdO7KaPd', '4250163'), - (471, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'rdO7KaPd', '4275957'), - (471, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdO7KaPd', '4277819'), - (471, 923, 'not_attending', '2021-07-20 02:30:40', '2025-12-17 19:47:40', 'rdO7KaPd', '4292773'), - (471, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdO7KaPd', '4301723'), - (471, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'rdO7KaPd', '4302093'), - (471, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdO7KaPd', '4304151'), - (471, 940, 'not_attending', '2021-07-30 16:29:34', '2025-12-17 19:47:40', 'rdO7KaPd', '4309049'), - (471, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'rdO7KaPd', '4315713'), - (471, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'rdO7KaPd', '4315714'), - (471, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'rdO7KaPd', '4315726'), - (471, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdO7KaPd', '4356801'), - (471, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'rdO7KaPd', '4366186'), - (471, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdO7KaPd', '4366187'), - (471, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'rdO7KaPd', '4420735'), - (471, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'rdO7KaPd', '4420738'), - (471, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'rdO7KaPd', '4420739'), - (471, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'rdO7KaPd', '4420741'), - (471, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'rdO7KaPd', '4420744'), - (471, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'rdO7KaPd', '4420747'), - (471, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'rdO7KaPd', '4420748'), - (471, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'rdO7KaPd', '4420749'), - (471, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdO7KaPd', '6045684'), - (472, 244, 'not_attending', '2020-10-19 18:13:55', '2025-12-17 19:47:52', '0mqqyG1m', '3149475'), - (472, 344, 'maybe', '2020-10-17 20:58:47', '2025-12-17 19:47:53', '0mqqyG1m', '3206906'), - (472, 370, 'not_attending', '2020-10-14 02:00:09', '2025-12-17 19:47:52', '0mqqyG1m', '3221405'), - (472, 371, 'not_attending', '2020-10-14 01:59:29', '2025-12-17 19:47:52', '0mqqyG1m', '3221406'), - (472, 372, 'not_attending', '2020-10-20 19:07:40', '2025-12-17 19:47:52', '0mqqyG1m', '3221407'), - (472, 373, 'not_attending', '2020-10-24 17:48:18', '2025-12-17 19:47:52', '0mqqyG1m', '3221413'), - (472, 376, 'not_attending', '2020-10-14 01:59:40', '2025-12-17 19:47:52', '0mqqyG1m', '3222827'), - (472, 382, 'not_attending', '2020-10-14 02:00:16', '2025-12-17 19:47:52', '0mqqyG1m', '3226873'), - (472, 387, 'attending', '2020-10-14 01:59:19', '2025-12-17 19:47:52', '0mqqyG1m', '3228700'), - (472, 388, 'attending', '2020-10-19 18:14:39', '2025-12-17 19:47:52', '0mqqyG1m', '3228701'), - (472, 391, 'not_attending', '2020-10-13 03:21:23', '2025-12-17 19:47:52', '0mqqyG1m', '3236446'), - (472, 414, 'not_attending', '2020-10-18 18:48:19', '2025-12-17 19:47:52', '0mqqyG1m', '3237277'), - (472, 415, 'not_attending', '2020-10-13 03:21:29', '2025-12-17 19:47:52', '0mqqyG1m', '3238044'), - (472, 417, 'not_attending', '2020-10-14 02:00:05', '2025-12-17 19:47:52', '0mqqyG1m', '3238779'), - (472, 418, 'attending', '2020-10-14 22:29:20', '2025-12-17 19:47:52', '0mqqyG1m', '3241728'), - (472, 419, 'not_attending', '2020-10-14 02:00:15', '2025-12-17 19:47:52', '0mqqyG1m', '3242234'), - (472, 420, 'attending', '2020-10-15 18:48:42', '2025-12-17 19:47:52', '0mqqyG1m', '3245293'), - (472, 421, 'attending', '2020-10-16 08:09:18', '2025-12-17 19:47:52', '0mqqyG1m', '3245294'), - (472, 422, 'maybe', '2020-10-28 21:06:03', '2025-12-17 19:47:53', '0mqqyG1m', '3245295'), - (472, 423, 'maybe', '2020-11-05 19:20:30', '2025-12-17 19:47:53', '0mqqyG1m', '3245296'), - (472, 424, 'attending', '2020-10-19 01:16:57', '2025-12-17 19:47:52', '0mqqyG1m', '3245751'), - (472, 426, 'not_attending', '2020-10-18 18:48:38', '2025-12-17 19:47:52', '0mqqyG1m', '3250232'), - (472, 428, 'attending', '2020-10-26 23:06:10', '2025-12-17 19:47:53', '0mqqyG1m', '3250332'), - (472, 430, 'attending', '2020-10-21 17:15:47', '2025-12-17 19:47:52', '0mqqyG1m', '3253094'), - (472, 431, 'maybe', '2020-10-27 22:33:29', '2025-12-17 19:47:53', '0mqqyG1m', '3253225'), - (472, 432, 'maybe', '2020-10-17 20:58:53', '2025-12-17 19:47:53', '0mqqyG1m', '3254416'), - (472, 433, 'maybe', '2020-10-17 20:58:57', '2025-12-17 19:47:53', '0mqqyG1m', '3254417'), - (472, 434, 'maybe', '2020-11-02 02:45:40', '2025-12-17 19:47:53', '0mqqyG1m', '3254418'), - (472, 435, 'attending', '2020-10-24 18:04:51', '2025-12-17 19:47:52', '0mqqyG1m', '3254790'), - (472, 437, 'not_attending', '2020-10-28 21:04:55', '2025-12-17 19:47:53', '0mqqyG1m', '3256160'), - (472, 438, 'not_attending', '2020-10-27 01:35:57', '2025-12-17 19:47:53', '0mqqyG1m', '3256163'), - (472, 439, 'not_attending', '2020-10-28 21:04:53', '2025-12-17 19:47:53', '0mqqyG1m', '3256164'), - (472, 440, 'maybe', '2020-11-07 23:55:04', '2025-12-17 19:47:53', '0mqqyG1m', '3256168'), - (472, 441, 'not_attending', '2020-11-15 00:46:49', '2025-12-17 19:47:54', '0mqqyG1m', '3256169'), - (472, 443, 'maybe', '2020-10-26 23:06:05', '2025-12-17 19:47:53', '0mqqyG1m', '3263578'), - (472, 444, 'not_attending', '2020-10-25 17:12:01', '2025-12-17 19:47:53', '0mqqyG1m', '3263745'), - (472, 445, 'maybe', '2020-11-02 02:45:50', '2025-12-17 19:47:54', '0mqqyG1m', '3266138'), - (472, 446, 'not_attending', '2020-10-27 22:33:20', '2025-12-17 19:47:53', '0mqqyG1m', '3267163'), - (472, 447, 'maybe', '2020-10-28 17:50:03', '2025-12-17 19:47:53', '0mqqyG1m', '3267895'), - (472, 449, 'maybe', '2020-11-02 02:45:34', '2025-12-17 19:47:53', '0mqqyG1m', '3272055'), - (472, 456, 'maybe', '2020-11-05 19:20:21', '2025-12-17 19:47:54', '0mqqyG1m', '3276428'), - (472, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '0mqqyG1m', '3281467'), - (472, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '0mqqyG1m', '3281470'), - (472, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '0mqqyG1m', '3281829'), - (472, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '0mqqyG1m', '3285413'), - (472, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '0mqqyG1m', '3285414'), - (472, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '0mqqyG1m', '3297764'), - (472, 483, 'maybe', '2020-11-21 00:02:58', '2025-12-17 19:47:54', '0mqqyG1m', '3297791'), - (472, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '0mqqyG1m', '3313856'), - (472, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '0mqqyG1m', '3314909'), - (472, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '0mqqyG1m', '3314964'), - (472, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '0mqqyG1m', '3323365'), - (472, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '0mqqyG1m', '3329383'), - (472, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '0mqqyG1m', '3351539'), - (472, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '0mqqyG1m', '3386848'), - (472, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '0mqqyG1m', '3389527'), - (472, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '0mqqyG1m', '3396499'), - (472, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '0mqqyG1m', '3403650'), - (472, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '0mqqyG1m', '3406988'), - (472, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '0mqqyG1m', '3416576'), - (472, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '0mqqyG1m', '3418925'), - (472, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqqyG1m', '6045684'), - (473, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6YMMDQd', '6045684'), - (474, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Agv90Kym', '6482693'), - (474, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Agv90Kym', '6484200'), - (474, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Agv90Kym', '6507741'), - (474, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Agv90Kym', '6514659'), - (474, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Agv90Kym', '6514660'), - (474, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Agv90Kym', '6519103'), - (474, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Agv90Kym', '6535681'), - (474, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Agv90Kym', '6584747'), - (474, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Agv90Kym', '6587097'), - (474, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Agv90Kym', '6609022'), - (474, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Agv90Kym', '6632757'), - (474, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Agv90Kym', '6644187'), - (474, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Agv90Kym', '6648951'), - (474, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Agv90Kym', '6648952'), - (474, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'Agv90Kym', '6651141'), - (474, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Agv90Kym', '6655401'), - (474, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Agv90Kym', '6661585'), - (474, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Agv90Kym', '6661588'), - (474, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Agv90Kym', '6661589'), - (474, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Agv90Kym', '6699906'), - (474, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Agv90Kym', '6699913'), - (474, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Agv90Kym', '6701109'), - (474, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Agv90Kym', '6705219'), - (474, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Agv90Kym', '6710153'), - (474, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Agv90Kym', '6711552'), - (474, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'Agv90Kym', '6711553'), - (474, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Agv90Kym', '6722688'), - (474, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Agv90Kym', '6730620'), - (474, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'Agv90Kym', '6730642'), - (474, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Agv90Kym', '6740364'), - (474, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Agv90Kym', '6743829'), - (474, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Agv90Kym', '7030380'), - (474, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Agv90Kym', '7033677'), - (474, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'Agv90Kym', '7035415'), - (474, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Agv90Kym', '7044715'), - (474, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Agv90Kym', '7050318'), - (474, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Agv90Kym', '7050319'), - (474, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Agv90Kym', '7050322'), - (474, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Agv90Kym', '7057804'), - (474, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Agv90Kym', '7072824'), - (474, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Agv90Kym', '7074348'), - (474, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'Agv90Kym', '7089267'), - (474, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Agv90Kym', '7098747'), - (474, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Agv90Kym', '7113468'), - (474, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Agv90Kym', '7114856'), - (474, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Agv90Kym', '7114951'), - (474, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Agv90Kym', '7114955'), - (474, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Agv90Kym', '7114956'), - (474, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'Agv90Kym', '7153615'), - (474, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Agv90Kym', '7159484'), - (474, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Agv90Kym', '7178446'), - (475, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgkMV1jA', '6045684'), - (476, 7, 'attending', '2020-03-23 23:47:28', '2025-12-17 19:47:58', 'kdKXWGNm', '2958049'), - (476, 8, 'attending', '2020-03-23 23:47:21', '2025-12-17 19:47:58', 'kdKXWGNm', '2958050'), - (476, 10, 'attending', '2020-03-23 23:47:44', '2025-12-17 19:47:56', 'kdKXWGNm', '2958053'), - (476, 13, 'attending', '2020-04-08 23:29:54', '2025-12-17 19:47:57', 'kdKXWGNm', '2958057'), - (476, 29, 'maybe', '2020-03-23 23:47:09', '2025-12-17 19:47:56', 'kdKXWGNm', '2961309'), - (476, 30, 'maybe', '2020-03-23 23:46:27', '2025-12-17 19:47:57', 'kdKXWGNm', '2961895'), - (476, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'kdKXWGNm', '2969208'), - (476, 37, 'maybe', '2020-03-31 00:24:17', '2025-12-17 19:47:56', 'kdKXWGNm', '2969680'), - (476, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'kdKXWGNm', '2971546'), - (476, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'kdKXWGNm', '2974534'), - (476, 46, 'maybe', '2020-04-11 11:40:49', '2025-12-17 19:47:57', 'kdKXWGNm', '2974955'), - (476, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'kdKXWGNm', '2975384'), - (476, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'kdKXWGNm', '2975385'), - (476, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'kdKXWGNm', '2976575'), - (476, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'kdKXWGNm', '2977343'), - (476, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'kdKXWGNm', '2977812'), - (476, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'kdKXWGNm', '2977931'), - (476, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', 'kdKXWGNm', '2978244'), - (476, 75, 'attending', '2020-04-25 11:49:13', '2025-12-17 19:47:57', 'kdKXWGNm', '2978245'), - (476, 76, 'attending', '2020-05-01 18:04:50', '2025-12-17 19:47:57', 'kdKXWGNm', '2978246'), - (476, 77, 'attending', '2020-05-05 22:50:39', '2025-12-17 19:47:57', 'kdKXWGNm', '2978247'), - (476, 78, 'attending', '2020-05-20 07:54:33', '2025-12-17 19:47:57', 'kdKXWGNm', '2978249'), - (476, 79, 'attending', '2020-05-28 22:24:47', '2025-12-17 19:47:57', 'kdKXWGNm', '2978250'), - (476, 81, 'attending', '2020-06-13 00:42:12', '2025-12-17 19:47:58', 'kdKXWGNm', '2978252'), - (476, 82, 'attending', '2020-04-24 03:53:31', '2025-12-17 19:47:57', 'kdKXWGNm', '2978433'), - (476, 83, 'attending', '2020-05-08 01:01:45', '2025-12-17 19:47:57', 'kdKXWGNm', '2978438'), - (476, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'kdKXWGNm', '2980871'), - (476, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'kdKXWGNm', '2981388'), - (476, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'kdKXWGNm', '2986743'), - (476, 101, 'attending', '2020-04-21 21:44:55', '2025-12-17 19:47:57', 'kdKXWGNm', '2989975'), - (476, 103, 'attending', '2020-05-04 23:11:02', '2025-12-17 19:47:57', 'kdKXWGNm', '2991407'), - (476, 104, 'attending', '2020-04-25 17:08:40', '2025-12-17 19:47:57', 'kdKXWGNm', '2991471'), - (476, 106, 'attending', '2020-04-28 13:10:21', '2025-12-17 19:47:57', 'kdKXWGNm', '2993501'), - (476, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'kdKXWGNm', '2994480'), - (476, 114, 'attending', '2020-04-28 16:30:08', '2025-12-17 19:47:57', 'kdKXWGNm', '2994911'), - (476, 115, 'attending', '2020-05-14 05:53:39', '2025-12-17 19:47:57', 'kdKXWGNm', '3001217'), - (476, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'kdKXWGNm', '3023063'), - (476, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'kdKXWGNm', '3034321'), - (476, 134, 'attending', '2020-05-25 01:05:21', '2025-12-17 19:47:57', 'kdKXWGNm', '3034367'), - (476, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'kdKXWGNm', '3035881'), - (476, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'kdKXWGNm', '3049983'), - (476, 147, 'attending', '2020-08-20 22:21:57', '2025-12-17 19:47:56', 'kdKXWGNm', '3058684'), - (476, 169, 'attending', '2020-06-15 18:41:00', '2025-12-17 19:47:58', 'kdKXWGNm', '3058741'), - (476, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'kdKXWGNm', '3058959'), - (476, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'kdKXWGNm', '3067093'), - (476, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'kdKXWGNm', '3075228'), - (476, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'kdKXWGNm', '3075456'), - (476, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'kdKXWGNm', '3083791'), - (476, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'kdKXWGNm', '3085151'), - (476, 191, 'attending', '2020-07-08 00:23:25', '2025-12-17 19:47:55', 'kdKXWGNm', '3087259'), - (476, 192, 'maybe', '2020-07-16 02:01:50', '2025-12-17 19:47:55', 'kdKXWGNm', '3087260'), - (476, 193, 'attending', '2020-07-24 14:16:33', '2025-12-17 19:47:55', 'kdKXWGNm', '3087261'), - (476, 194, 'attending', '2020-08-01 21:02:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3087262'), - (476, 195, 'attending', '2020-08-08 15:41:06', '2025-12-17 19:47:56', 'kdKXWGNm', '3087264'), - (476, 196, 'not_attending', '2020-08-15 18:52:39', '2025-12-17 19:47:56', 'kdKXWGNm', '3087265'), - (476, 197, 'attending', '2020-08-20 22:21:53', '2025-12-17 19:47:56', 'kdKXWGNm', '3087266'), - (476, 198, 'attending', '2020-08-29 16:41:09', '2025-12-17 19:47:56', 'kdKXWGNm', '3087267'), - (476, 199, 'attending', '2020-09-04 16:38:16', '2025-12-17 19:47:56', 'kdKXWGNm', '3087268'), - (476, 200, 'attending', '2020-09-06 16:58:54', '2025-12-17 19:47:56', 'kdKXWGNm', '3087269'), - (476, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'kdKXWGNm', '3088653'), - (476, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'kdKXWGNm', '3106813'), - (476, 223, 'attending', '2020-09-10 11:44:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3129980'), - (476, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'kdKXWGNm', '3132817'), - (476, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'kdKXWGNm', '3132820'), - (476, 231, 'attending', '2020-07-19 19:49:01', '2025-12-17 19:47:55', 'kdKXWGNm', '3139762'), - (476, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'kdKXWGNm', '3155321'), - (476, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'kdKXWGNm', '3162006'), - (476, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'kdKXWGNm', '3163442'), - (476, 281, 'attending', '2020-08-09 19:32:28', '2025-12-17 19:47:56', 'kdKXWGNm', '3166945'), - (476, 293, 'attending', '2020-08-19 23:59:23', '2025-12-17 19:47:56', 'kdKXWGNm', '3172832'), - (476, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3172833'), - (476, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'kdKXWGNm', '3172834'), - (476, 296, 'not_attending', '2020-09-11 01:23:45', '2025-12-17 19:47:56', 'kdKXWGNm', '3172876'), - (476, 301, 'not_attending', '2020-08-26 00:07:31', '2025-12-17 19:47:56', 'kdKXWGNm', '3178027'), - (476, 304, 'attending', '2020-09-07 14:25:42', '2025-12-17 19:47:56', 'kdKXWGNm', '3178916'), - (476, 307, 'attending', '2020-08-17 15:09:21', '2025-12-17 19:47:56', 'kdKXWGNm', '3182590'), - (476, 308, 'attending', '2020-09-04 01:10:00', '2025-12-17 19:47:56', 'kdKXWGNm', '3183341'), - (476, 311, 'attending', '2020-09-19 21:21:03', '2025-12-17 19:47:56', 'kdKXWGNm', '3186057'), - (476, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3191735'), - (476, 318, 'attending', '2020-09-01 21:07:08', '2025-12-17 19:47:56', 'kdKXWGNm', '3193885'), - (476, 319, 'attending', '2020-08-31 23:35:28', '2025-12-17 19:47:56', 'kdKXWGNm', '3194179'), - (476, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'kdKXWGNm', '3200209'), - (476, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', 'kdKXWGNm', '3200495'), - (476, 343, 'attending', '2020-09-22 22:54:04', '2025-12-17 19:47:56', 'kdKXWGNm', '3206759'), - (476, 360, 'attending', '2020-09-17 00:16:11', '2025-12-17 19:47:56', 'kdKXWGNm', '3212671'), - (476, 361, 'not_attending', '2020-09-14 18:42:39', '2025-12-17 19:47:56', 'kdKXWGNm', '3213323'), - (476, 362, 'not_attending', '2020-09-25 15:07:44', '2025-12-17 19:47:52', 'kdKXWGNm', '3214207'), - (476, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'kdKXWGNm', '3217037'), - (476, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'kdKXWGNm', '3218510'), - (476, 368, 'not_attending', '2020-10-01 23:56:52', '2025-12-17 19:47:52', 'kdKXWGNm', '3221403'), - (476, 385, 'attending', '2020-10-01 19:21:10', '2025-12-17 19:47:52', 'kdKXWGNm', '3228698'), - (476, 386, 'attending', '2020-10-10 14:30:07', '2025-12-17 19:47:52', 'kdKXWGNm', '3228699'), - (476, 387, 'attending', '2020-10-17 14:24:30', '2025-12-17 19:47:52', 'kdKXWGNm', '3228700'), - (476, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'kdKXWGNm', '3228701'), - (476, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'kdKXWGNm', '3245751'), - (476, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'kdKXWGNm', '3250232'), - (476, 429, 'attending', '2020-12-06 20:29:50', '2025-12-17 19:47:54', 'kdKXWGNm', '3250523'), - (476, 440, 'attending', '2020-11-07 15:17:19', '2025-12-17 19:47:53', 'kdKXWGNm', '3256168'), - (476, 441, 'attending', '2020-11-14 23:03:32', '2025-12-17 19:47:54', 'kdKXWGNm', '3256169'), - (476, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'kdKXWGNm', '3263578'), - (476, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'kdKXWGNm', '3276428'), - (476, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'kdKXWGNm', '3281467'), - (476, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'kdKXWGNm', '3281470'), - (476, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'kdKXWGNm', '3281829'), - (476, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'kdKXWGNm', '3285413'), - (476, 469, 'attending', '2020-11-28 02:20:50', '2025-12-17 19:47:54', 'kdKXWGNm', '3285414'), - (476, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'kdKXWGNm', '3297764'), - (476, 492, 'attending', '2020-12-01 01:33:37', '2025-12-17 19:47:54', 'kdKXWGNm', '3313731'), - (476, 493, 'attending', '2020-12-05 03:47:55', '2025-12-17 19:47:54', 'kdKXWGNm', '3313856'), - (476, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'kdKXWGNm', '3314909'), - (476, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'kdKXWGNm', '3314964'), - (476, 502, 'attending', '2020-12-13 00:52:57', '2025-12-17 19:47:55', 'kdKXWGNm', '3323365'), - (476, 513, 'attending', '2020-12-20 00:27:02', '2025-12-17 19:47:55', 'kdKXWGNm', '3329383'), - (476, 526, 'attending', '2020-12-30 03:17:10', '2025-12-17 19:47:48', 'kdKXWGNm', '3351539'), - (476, 528, 'attending', '2021-01-02 00:51:45', '2025-12-17 19:47:48', 'kdKXWGNm', '3363022'), - (476, 530, 'attending', '2021-01-04 16:20:17', '2025-12-17 19:47:48', 'kdKXWGNm', '3373923'), - (476, 532, 'attending', '2021-01-04 16:14:41', '2025-12-17 19:47:48', 'kdKXWGNm', '3381412'), - (476, 536, 'attending', '2021-01-06 17:04:57', '2025-12-17 19:47:48', 'kdKXWGNm', '3386848'), - (476, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdKXWGNm', '3389527'), - (476, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdKXWGNm', '3396499'), - (476, 548, 'attending', '2021-01-16 00:36:59', '2025-12-17 19:47:48', 'kdKXWGNm', '3403650'), - (476, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdKXWGNm', '3406988'), - (476, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'kdKXWGNm', '3408338'), - (476, 555, 'attending', '2021-01-19 05:47:53', '2025-12-17 19:47:49', 'kdKXWGNm', '3416576'), - (476, 568, 'attending', '2021-01-30 02:11:13', '2025-12-17 19:47:50', 'kdKXWGNm', '3430267'), - (476, 579, 'attending', '2021-02-06 18:08:52', '2025-12-17 19:47:50', 'kdKXWGNm', '3440978'), - (476, 602, 'attending', '2021-02-13 17:20:07', '2025-12-17 19:47:50', 'kdKXWGNm', '3470303'), - (476, 603, 'attending', '2021-02-20 04:21:08', '2025-12-17 19:47:50', 'kdKXWGNm', '3470304'), - (476, 604, 'attending', '2021-02-27 02:00:28', '2025-12-17 19:47:50', 'kdKXWGNm', '3470305'), - (476, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdKXWGNm', '3470991'), - (476, 621, 'attending', '2021-03-05 01:05:46', '2025-12-17 19:47:51', 'kdKXWGNm', '3517815'), - (476, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdKXWGNm', '3517816'), - (476, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKXWGNm', '3523941'), - (476, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKXWGNm', '3533850'), - (476, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKXWGNm', '3536632'), - (476, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKXWGNm', '3536656'), - (476, 641, 'not_attending', '2021-04-02 03:10:41', '2025-12-17 19:47:44', 'kdKXWGNm', '3539916'), - (476, 642, 'not_attending', '2021-04-09 19:05:18', '2025-12-17 19:47:44', 'kdKXWGNm', '3539917'), - (476, 643, 'attending', '2021-04-17 19:40:11', '2025-12-17 19:47:45', 'kdKXWGNm', '3539918'), - (476, 644, 'not_attending', '2021-04-24 21:36:07', '2025-12-17 19:47:46', 'kdKXWGNm', '3539919'), - (476, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKXWGNm', '3539920'), - (476, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKXWGNm', '3539921'), - (476, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKXWGNm', '3539922'), - (476, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKXWGNm', '3539923'), - (476, 649, 'not_attending', '2021-03-20 15:14:30', '2025-12-17 19:47:51', 'kdKXWGNm', '3539927'), - (476, 650, 'not_attending', '2021-03-27 17:13:50', '2025-12-17 19:47:44', 'kdKXWGNm', '3539928'), - (476, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKXWGNm', '3582734'), - (476, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKXWGNm', '3583262'), - (476, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKXWGNm', '3619523'), - (476, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKXWGNm', '3661369'), - (476, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKXWGNm', '3674262'), - (476, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKXWGNm', '3677402'), - (476, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdKXWGNm', '3730212'), - (476, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdKXWGNm', '3793156'), - (476, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'kdKXWGNm', '3974109'), - (476, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdKXWGNm', '3975311'), - (476, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKXWGNm', '3975312'), - (476, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKXWGNm', '3994992'), - (476, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKXWGNm', '4014338'), - (476, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdKXWGNm', '4021848'), - (476, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKXWGNm', '4136744'), - (476, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdKXWGNm', '4136937'), - (476, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdKXWGNm', '4136938'), - (476, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdKXWGNm', '4136947'), - (476, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdKXWGNm', '4210314'), - (476, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdKXWGNm', '4225444'), - (476, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdKXWGNm', '4239259'), - (476, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdKXWGNm', '4240316'), - (476, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdKXWGNm', '4240317'), - (476, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdKXWGNm', '4240318'), - (476, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdKXWGNm', '4240320'), - (476, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdKXWGNm', '4250163'), - (476, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdKXWGNm', '4275957'), - (476, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdKXWGNm', '4277819'), - (476, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdKXWGNm', '4301723'), - (476, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdKXWGNm', '4302093'), - (476, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdKXWGNm', '4304151'), - (476, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdKXWGNm', '4356801'), - (476, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdKXWGNm', '4366186'), - (476, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdKXWGNm', '4366187'), - (476, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdKXWGNm', '4420735'), - (476, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdKXWGNm', '4420738'), - (476, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdKXWGNm', '4420739'), - (476, 993, 'attending', '2021-09-25 21:15:53', '2025-12-17 19:47:34', 'kdKXWGNm', '4420741'), - (476, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdKXWGNm', '4420744'), - (476, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdKXWGNm', '4420747'), - (476, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdKXWGNm', '4420748'), - (476, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdKXWGNm', '4420749'), - (476, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKXWGNm', '4461883'), - (476, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKXWGNm', '4508342'), - (476, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKXWGNm', '4568602'), - (476, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKXWGNm', '4572153'), - (476, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdKXWGNm', '4585962'), - (476, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdKXWGNm', '4596356'), - (476, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKXWGNm', '4598860'), - (476, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKXWGNm', '4598861'), - (476, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKXWGNm', '4602797'), - (476, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKXWGNm', '4637896'), - (476, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKXWGNm', '4642994'), - (476, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdKXWGNm', '4642995'), - (476, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKXWGNm', '4642996'), - (476, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKXWGNm', '4642997'), - (476, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKXWGNm', '4645687'), - (476, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKXWGNm', '4645698'), - (476, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdKXWGNm', '4645704'), - (476, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKXWGNm', '4645705'), - (476, 1130, 'attending', '2021-12-04 23:58:07', '2025-12-17 19:47:37', 'kdKXWGNm', '4658824'), - (476, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKXWGNm', '4668385'), - (476, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKXWGNm', '4694407'), - (476, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKXWGNm', '4736497'), - (476, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKXWGNm', '4736499'), - (476, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKXWGNm', '4736500'), - (476, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKXWGNm', '4736503'), - (476, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKXWGNm', '4736504'), - (476, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKXWGNm', '4746789'), - (476, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdKXWGNm', '4753929'), - (476, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKXWGNm', '5038850'), - (476, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKXWGNm', '5045826'), - (476, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKXWGNm', '5132533'), - (476, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKXWGNm', '6045684'), - (477, 500, 'not_attending', '2020-12-17 22:13:39', '2025-12-17 19:47:55', 'rdOPZ8em', '3314964'), - (477, 507, 'attending', '2020-12-22 19:23:41', '2025-12-17 19:47:48', 'rdOPZ8em', '3324148'), - (477, 522, 'attending', '2020-12-16 23:28:10', '2025-12-17 19:47:55', 'rdOPZ8em', '3342836'), - (477, 526, 'attending', '2020-12-28 20:02:51', '2025-12-17 19:47:48', 'rdOPZ8em', '3351539'), - (477, 532, 'not_attending', '2021-01-09 00:04:44', '2025-12-17 19:47:48', 'rdOPZ8em', '3381412'), - (477, 534, 'attending', '2021-01-06 01:37:48', '2025-12-17 19:47:48', 'rdOPZ8em', '3384157'), - (477, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'rdOPZ8em', '3386848'), - (477, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'rdOPZ8em', '3389527'), - (477, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'rdOPZ8em', '3396499'), - (477, 548, 'maybe', '2021-01-16 23:54:04', '2025-12-17 19:47:48', 'rdOPZ8em', '3403650'), - (477, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'rdOPZ8em', '3406988'), - (477, 555, 'attending', '2021-01-22 00:04:06', '2025-12-17 19:47:49', 'rdOPZ8em', '3416576'), - (477, 558, 'attending', '2021-01-22 00:03:51', '2025-12-17 19:47:49', 'rdOPZ8em', '3418925'), - (477, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'rdOPZ8em', '3426074'), - (477, 568, 'attending', '2021-01-30 14:46:21', '2025-12-17 19:47:50', 'rdOPZ8em', '3430267'), - (477, 581, 'attending', '2021-02-01 03:32:46', '2025-12-17 19:47:50', 'rdOPZ8em', '3445029'), - (477, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'rdOPZ8em', '3468125'), - (477, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'rdOPZ8em', '3470303'), - (477, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'rdOPZ8em', '3470305'), - (477, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOPZ8em', '3470991'), - (477, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'rdOPZ8em', '3517815'), - (477, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'rdOPZ8em', '3517816'), - (477, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'rdOPZ8em', '3523941'), - (477, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOPZ8em', '3533850'), - (477, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOPZ8em', '3536632'), - (477, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'rdOPZ8em', '3536656'), - (477, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'rdOPZ8em', '3539916'), - (477, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'rdOPZ8em', '3539917'), - (477, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOPZ8em', '3539918'), - (477, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'rdOPZ8em', '3539919'), - (477, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'rdOPZ8em', '3539920'), - (477, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'rdOPZ8em', '3539921'), - (477, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'rdOPZ8em', '3539922'), - (477, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'rdOPZ8em', '3539923'), - (477, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOPZ8em', '3539927'), - (477, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOPZ8em', '3582734'), - (477, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'rdOPZ8em', '3583262'), - (477, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOPZ8em', '3619523'), - (477, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'rdOPZ8em', '3661369'), - (477, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'rdOPZ8em', '3674262'), - (477, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'rdOPZ8em', '3677402'), - (477, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOPZ8em', '3730212'), - (477, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOPZ8em', '6045684'), - (478, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dlj52DXA', '7074364'), - (478, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dlj52DXA', '7324073'), - (478, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dlj52DXA', '7324074'), - (478, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dlj52DXA', '7324075'), - (478, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dlj52DXA', '7324078'), - (478, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dlj52DXA', '7331457'), - (478, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'dlj52DXA', '7344575'), - (478, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'dlj52DXA', '7359624'), - (478, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dlj52DXA', '7363643'), - (478, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dlj52DXA', '7368606'), - (479, 408, 'attending', '2021-02-16 03:38:35', '2025-12-17 19:47:50', 'Pm7kELXm', '3236466'), - (479, 603, 'not_attending', '2021-02-21 00:42:59', '2025-12-17 19:47:50', 'Pm7kELXm', '3470304'), - (479, 604, 'attending', '2021-02-27 18:23:23', '2025-12-17 19:47:50', 'Pm7kELXm', '3470305'), - (479, 621, 'attending', '2021-03-05 19:50:44', '2025-12-17 19:47:51', 'Pm7kELXm', '3517815'), - (479, 622, 'not_attending', '2021-03-13 23:38:53', '2025-12-17 19:47:51', 'Pm7kELXm', '3517816'), - (479, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'Pm7kELXm', '3523941'), - (479, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Pm7kELXm', '3533850'), - (479, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Pm7kELXm', '3536632'), - (479, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Pm7kELXm', '3536656'), - (479, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Pm7kELXm', '3539916'), - (479, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Pm7kELXm', '3539917'), - (479, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Pm7kELXm', '3539918'), - (479, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'Pm7kELXm', '3539919'), - (479, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Pm7kELXm', '3539920'), - (479, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Pm7kELXm', '3539921'), - (479, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Pm7kELXm', '3539922'), - (479, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Pm7kELXm', '3539923'), - (479, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Pm7kELXm', '3539927'), - (479, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Pm7kELXm', '3582734'), - (479, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm7kELXm', '3583262'), - (479, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Pm7kELXm', '3619523'), - (479, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7kELXm', '3661369'), - (479, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7kELXm', '3674262'), - (479, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm7kELXm', '3677402'), - (479, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7kELXm', '6045684'), - (480, 1122, 'not_attending', '2021-11-29 16:57:08', '2025-12-17 19:47:37', 'mRB3oJYm', '4644023'), - (480, 1123, 'not_attending', '2021-12-10 23:19:35', '2025-12-17 19:47:38', 'mRB3oJYm', '4644024'), - (480, 1126, 'not_attending', '2021-12-11 07:50:21', '2025-12-17 19:47:38', 'mRB3oJYm', '4645687'), - (480, 1127, 'maybe', '2021-12-12 10:04:38', '2025-12-17 19:47:38', 'mRB3oJYm', '4645698'), - (480, 1130, 'attending', '2021-12-04 20:37:18', '2025-12-17 19:47:37', 'mRB3oJYm', '4658824'), - (480, 1131, 'attending', '2021-12-18 18:20:09', '2025-12-17 19:47:31', 'mRB3oJYm', '4658825'), - (480, 1138, 'attending', '2021-11-29 16:57:03', '2025-12-17 19:47:37', 'mRB3oJYm', '4675407'), - (480, 1139, 'not_attending', '2021-12-04 03:59:17', '2025-12-17 19:47:37', 'mRB3oJYm', '4675604'), - (480, 1140, 'not_attending', '2021-12-04 02:15:41', '2025-12-17 19:47:37', 'mRB3oJYm', '4679701'), - (480, 1142, 'attending', '2021-12-05 17:35:03', '2025-12-17 19:47:37', 'mRB3oJYm', '4681923'), - (480, 1146, 'not_attending', '2021-12-10 23:19:31', '2025-12-17 19:47:38', 'mRB3oJYm', '4692841'), - (480, 1149, 'not_attending', '2021-12-10 23:19:46', '2025-12-17 19:47:38', 'mRB3oJYm', '4694407'), - (480, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'mRB3oJYm', '4706262'), - (480, 1153, 'not_attending', '2022-01-20 00:59:15', '2025-12-17 19:47:32', 'mRB3oJYm', '4708707'), - (480, 1162, 'attending', '2021-12-29 17:41:24', '2025-12-17 19:47:31', 'mRB3oJYm', '4718771'), - (480, 1173, 'attending', '2022-01-06 22:21:12', '2025-12-17 19:47:31', 'mRB3oJYm', '4736495'), - (480, 1174, 'attending', '2022-01-14 05:30:37', '2025-12-17 19:47:31', 'mRB3oJYm', '4736496'), - (480, 1175, 'not_attending', '2022-01-21 17:29:53', '2025-12-17 19:47:32', 'mRB3oJYm', '4736497'), - (480, 1176, 'attending', '2022-02-05 14:45:05', '2025-12-17 19:47:32', 'mRB3oJYm', '4736498'), - (480, 1177, 'not_attending', '2022-02-13 00:08:49', '2025-12-17 19:47:32', 'mRB3oJYm', '4736499'), - (480, 1178, 'not_attending', '2022-01-30 01:15:40', '2025-12-17 19:47:32', 'mRB3oJYm', '4736500'), - (480, 1179, 'attending', '2022-02-14 23:51:18', '2025-12-17 19:47:32', 'mRB3oJYm', '4736501'), - (480, 1180, 'not_attending', '2022-02-26 23:17:44', '2025-12-17 19:47:33', 'mRB3oJYm', '4736502'), - (480, 1181, 'not_attending', '2022-03-06 00:24:08', '2025-12-17 19:47:33', 'mRB3oJYm', '4736503'), - (480, 1182, 'not_attending', '2022-03-12 23:50:50', '2025-12-17 19:47:33', 'mRB3oJYm', '4736504'), - (480, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mRB3oJYm', '4746789'), - (480, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mRB3oJYm', '4753929'), - (480, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mRB3oJYm', '5038850'), - (480, 1236, 'not_attending', '2022-02-18 04:16:11', '2025-12-17 19:47:32', 'mRB3oJYm', '5045826'), - (480, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mRB3oJYm', '5132533'), - (480, 1272, 'not_attending', '2022-03-19 15:47:32', '2025-12-17 19:47:25', 'mRB3oJYm', '5186582'), - (480, 1273, 'attending', '2022-03-23 15:41:43', '2025-12-17 19:47:25', 'mRB3oJYm', '5186583'), - (480, 1274, 'not_attending', '2022-04-03 02:46:11', '2025-12-17 19:47:26', 'mRB3oJYm', '5186585'), - (480, 1281, 'not_attending', '2022-04-09 22:54:51', '2025-12-17 19:47:27', 'mRB3oJYm', '5190437'), - (480, 1284, 'not_attending', '2022-04-30 19:56:31', '2025-12-17 19:47:27', 'mRB3oJYm', '5195095'), - (480, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mRB3oJYm', '5215989'), - (480, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mRB3oJYm', '5223686'), - (480, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mRB3oJYm', '5227432'), - (480, 1346, 'not_attending', '2022-04-30 19:56:27', '2025-12-17 19:47:27', 'mRB3oJYm', '5247467'), - (480, 1362, 'attending', '2022-04-30 19:56:18', '2025-12-17 19:47:28', 'mRB3oJYm', '5260800'), - (480, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mRB3oJYm', '5269930'), - (480, 1378, 'attending', '2022-05-14 13:51:08', '2025-12-17 19:47:29', 'mRB3oJYm', '5271448'), - (480, 1379, 'attending', '2022-05-21 22:50:27', '2025-12-17 19:47:29', 'mRB3oJYm', '5271449'), - (480, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mRB3oJYm', '5276469'), - (480, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mRB3oJYm', '5278159'), - (480, 1407, 'not_attending', '2022-06-04 21:56:33', '2025-12-17 19:47:30', 'mRB3oJYm', '5363695'), - (480, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mRB3oJYm', '5365960'), - (480, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mRB3oJYm', '5368973'), - (480, 1428, 'not_attending', '2022-05-28 23:20:17', '2025-12-17 19:47:30', 'mRB3oJYm', '5378247'), - (480, 1431, 'not_attending', '2022-06-12 00:05:08', '2025-12-17 19:47:31', 'mRB3oJYm', '5389605'), - (480, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mRB3oJYm', '5397265'), - (480, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mRB3oJYm', '5403967'), - (480, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mRB3oJYm', '5404786'), - (480, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mRB3oJYm', '5405203'), - (480, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mRB3oJYm', '5411699'), - (480, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mRB3oJYm', '5412550'), - (480, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mRB3oJYm', '5415046'), - (480, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mRB3oJYm', '5422086'), - (480, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mRB3oJYm', '5422406'), - (480, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mRB3oJYm', '5424565'), - (480, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mRB3oJYm', '5426882'), - (480, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mRB3oJYm', '5427083'), - (480, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mRB3oJYm', '5441125'), - (480, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mRB3oJYm', '5441126'), - (480, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mRB3oJYm', '5441128'), - (480, 1517, 'attending', '2022-08-27 15:44:45', '2025-12-17 19:47:23', 'mRB3oJYm', '5441130'), - (480, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mRB3oJYm', '5441131'), - (480, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mRB3oJYm', '5441132'), - (480, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mRB3oJYm', '5446643'), - (480, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mRB3oJYm', '5453325'), - (480, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mRB3oJYm', '5454516'), - (480, 1544, 'attending', '2022-09-17 15:58:19', '2025-12-17 19:47:11', 'mRB3oJYm', '5454517'), - (480, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mRB3oJYm', '5454605'), - (480, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mRB3oJYm', '5455037'), - (480, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mRB3oJYm', '5461278'), - (480, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mRB3oJYm', '5469480'), - (480, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mRB3oJYm', '5471073'), - (480, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mRB3oJYm', '5474663'), - (480, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mRB3oJYm', '5482022'), - (480, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mRB3oJYm', '5482793'), - (480, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mRB3oJYm', '5488912'), - (480, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mRB3oJYm', '5492192'), - (480, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mRB3oJYm', '5493139'), - (480, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mRB3oJYm', '5493200'), - (480, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mRB3oJYm', '5502188'), - (480, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mRB3oJYm', '5505059'), - (480, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mRB3oJYm', '5509055'), - (480, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mRB3oJYm', '5512862'), - (480, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mRB3oJYm', '5513985'), - (480, 1626, 'attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'mRB3oJYm', '5519981'), - (480, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mRB3oJYm', '5522550'), - (480, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mRB3oJYm', '5534683'), - (480, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mRB3oJYm', '5537735'), - (480, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mRB3oJYm', '5540859'), - (480, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mRB3oJYm', '5546619'), - (480, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mRB3oJYm', '5555245'), - (480, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mRB3oJYm', '5557747'), - (480, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mRB3oJYm', '5560255'), - (480, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mRB3oJYm', '5562906'), - (480, 1668, 'not_attending', '2022-10-01 15:11:47', '2025-12-17 19:47:12', 'mRB3oJYm', '5563222'), - (480, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mRB3oJYm', '5600604'), - (480, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mRB3oJYm', '5605544'), - (480, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'mRB3oJYm', '5606737'), - (480, 1719, 'attending', '2022-10-08 20:58:50', '2025-12-17 19:47:12', 'mRB3oJYm', '5630958'), - (480, 1720, 'not_attending', '2022-10-15 20:52:42', '2025-12-17 19:47:12', 'mRB3oJYm', '5630959'), - (480, 1721, 'maybe', '2022-10-21 16:17:27', '2025-12-17 19:47:13', 'mRB3oJYm', '5630960'), - (480, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mRB3oJYm', '5630961'), - (480, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mRB3oJYm', '5630962'), - (480, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mRB3oJYm', '5630966'), - (480, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mRB3oJYm', '5630967'), - (480, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mRB3oJYm', '5630968'), - (480, 1727, 'not_attending', '2022-12-04 01:14:46', '2025-12-17 19:47:16', 'mRB3oJYm', '5630969'), - (480, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mRB3oJYm', '5635406'), - (480, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mRB3oJYm', '5638765'), - (480, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mRB3oJYm', '5640097'), - (480, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mRB3oJYm', '5640843'), - (480, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mRB3oJYm', '5641521'), - (480, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mRB3oJYm', '5642818'), - (480, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mRB3oJYm', '5652395'), - (480, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mRB3oJYm', '5670445'), - (480, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mRB3oJYm', '5671637'), - (480, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mRB3oJYm', '5672329'), - (480, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mRB3oJYm', '5674057'), - (480, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mRB3oJYm', '5674060'), - (480, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mRB3oJYm', '5677461'), - (480, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mRB3oJYm', '5698046'), - (480, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mRB3oJYm', '5699760'), - (480, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mRB3oJYm', '5741601'), - (480, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mRB3oJYm', '5763458'), - (480, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mRB3oJYm', '5774172'), - (480, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mRB3oJYm', '5818247'), - (480, 1834, 'not_attending', '2022-12-09 22:38:19', '2025-12-17 19:47:17', 'mRB3oJYm', '5819470'), - (480, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mRB3oJYm', '5819471'), - (480, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mRB3oJYm', '5827739'), - (480, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mRB3oJYm', '5844306'), - (480, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mRB3oJYm', '5850159'), - (480, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mRB3oJYm', '5858999'), - (480, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mRB3oJYm', '5871984'), - (480, 1860, 'maybe', '2023-01-17 17:05:57', '2025-12-17 19:47:05', 'mRB3oJYm', '5876309'), - (480, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mRB3oJYm', '5876354'), - (480, 1864, 'attending', '2023-01-17 17:06:12', '2025-12-17 19:47:05', 'mRB3oJYm', '5879675'), - (480, 1865, 'attending', '2023-01-23 18:47:24', '2025-12-17 19:47:06', 'mRB3oJYm', '5879676'), - (480, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mRB3oJYm', '5880939'), - (480, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mRB3oJYm', '5880940'), - (480, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mRB3oJYm', '5880942'), - (480, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mRB3oJYm', '5880943'), - (480, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mRB3oJYm', '5887890'), - (480, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mRB3oJYm', '5888598'), - (480, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mRB3oJYm', '5893260'), - (480, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mRB3oJYm', '5899826'), - (480, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mRB3oJYm', '5900199'), - (480, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mRB3oJYm', '5900200'), - (480, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mRB3oJYm', '5900202'), - (480, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mRB3oJYm', '5900203'), - (480, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mRB3oJYm', '5901108'), - (480, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mRB3oJYm', '5901126'), - (480, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mRB3oJYm', '5909655'), - (480, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mRB3oJYm', '5910522'), - (480, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mRB3oJYm', '5910526'), - (480, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mRB3oJYm', '5910528'), - (480, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mRB3oJYm', '5916219'), - (480, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mRB3oJYm', '5936234'), - (480, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mRB3oJYm', '5958351'), - (480, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mRB3oJYm', '5959751'), - (480, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mRB3oJYm', '5959755'), - (480, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mRB3oJYm', '5960055'), - (480, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mRB3oJYm', '5961684'), - (480, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mRB3oJYm', '5962132'), - (480, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mRB3oJYm', '5962133'), - (480, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mRB3oJYm', '5962134'), - (480, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mRB3oJYm', '5962317'), - (480, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mRB3oJYm', '5962318'), - (480, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mRB3oJYm', '5965933'), - (480, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mRB3oJYm', '5967014'), - (480, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mRB3oJYm', '5972815'), - (480, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mRB3oJYm', '5974016'), - (480, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'mRB3oJYm', '5975052'), - (480, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'mRB3oJYm', '5975054'), - (480, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mRB3oJYm', '5981515'), - (480, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mRB3oJYm', '5993516'), - (480, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mRB3oJYm', '5998939'), - (480, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mRB3oJYm', '6028191'), - (480, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mRB3oJYm', '6040066'), - (480, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mRB3oJYm', '6042717'), - (480, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mRB3oJYm', '6044838'), - (480, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mRB3oJYm', '6044839'), - (480, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRB3oJYm', '6045684'), - (480, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mRB3oJYm', '6050104'), - (480, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mRB3oJYm', '6053195'), - (480, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mRB3oJYm', '6053198'), - (480, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mRB3oJYm', '6056085'), - (480, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mRB3oJYm', '6056916'), - (480, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mRB3oJYm', '6059290'), - (480, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mRB3oJYm', '6060328'), - (480, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mRB3oJYm', '6061037'), - (480, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mRB3oJYm', '6061039'), - (480, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mRB3oJYm', '6067245'), - (480, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mRB3oJYm', '6068094'), - (480, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mRB3oJYm', '6068252'), - (480, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mRB3oJYm', '6068253'), - (480, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mRB3oJYm', '6068254'), - (480, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mRB3oJYm', '6068280'), - (480, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mRB3oJYm', '6069093'), - (480, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mRB3oJYm', '6072528'), - (480, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'mRB3oJYm', '6075556'), - (480, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mRB3oJYm', '6079840'), - (480, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mRB3oJYm', '6083398'), - (480, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mRB3oJYm', '6093504'), - (480, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mRB3oJYm', '6097414'), - (480, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mRB3oJYm', '6097442'), - (480, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mRB3oJYm', '6097684'), - (480, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mRB3oJYm', '6098762'), - (480, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mRB3oJYm', '6101362'), - (480, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mRB3oJYm', '6107314'), - (481, 574, 'not_attending', '2021-03-01 02:34:59', '2025-12-17 19:47:51', 'o4PKBRlA', '3435543'), - (481, 592, 'maybe', '2021-02-21 07:49:29', '2025-12-17 19:47:50', 'o4PKBRlA', '3467757'), - (481, 596, 'not_attending', '2021-02-22 16:27:02', '2025-12-17 19:47:51', 'o4PKBRlA', '3467762'), - (481, 603, 'attending', '2021-02-16 05:53:42', '2025-12-17 19:47:50', 'o4PKBRlA', '3470304'), - (481, 604, 'attending', '2021-02-21 08:13:05', '2025-12-17 19:47:50', 'o4PKBRlA', '3470305'), - (481, 605, 'not_attending', '2021-02-14 08:39:07', '2025-12-17 19:47:50', 'o4PKBRlA', '3470991'), - (481, 610, 'attending', '2021-02-14 08:40:43', '2025-12-17 19:47:50', 'o4PKBRlA', '3482159'), - (481, 612, 'maybe', '2021-02-16 11:32:53', '2025-12-17 19:47:50', 'o4PKBRlA', '3490040'), - (481, 618, 'attending', '2021-02-19 21:04:37', '2025-12-17 19:47:50', 'o4PKBRlA', '3503991'), - (481, 621, 'attending', '2021-02-28 17:05:43', '2025-12-17 19:47:51', 'o4PKBRlA', '3517815'), - (481, 622, 'attending', '2021-02-25 17:05:06', '2025-12-17 19:47:51', 'o4PKBRlA', '3517816'), - (481, 623, 'not_attending', '2021-02-27 19:20:53', '2025-12-17 19:47:51', 'o4PKBRlA', '3523941'), - (481, 627, 'attending', '2021-03-07 20:26:19', '2025-12-17 19:47:51', 'o4PKBRlA', '3533303'), - (481, 628, 'attending', '2021-03-02 23:48:22', '2025-12-17 19:47:51', 'o4PKBRlA', '3533305'), - (481, 629, 'not_attending', '2021-03-17 20:58:03', '2025-12-17 19:47:51', 'o4PKBRlA', '3533307'), - (481, 631, 'not_attending', '2021-03-01 07:24:06', '2025-12-17 19:47:51', 'o4PKBRlA', '3533850'), - (481, 632, 'attending', '2021-03-01 02:35:31', '2025-12-17 19:47:51', 'o4PKBRlA', '3533853'), - (481, 638, 'not_attending', '2021-03-05 08:17:06', '2025-12-17 19:47:44', 'o4PKBRlA', '3536632'), - (481, 639, 'not_attending', '2021-03-19 20:16:05', '2025-12-17 19:47:51', 'o4PKBRlA', '3536656'), - (481, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'o4PKBRlA', '3539916'), - (481, 642, 'attending', '2021-04-10 20:59:08', '2025-12-17 19:47:44', 'o4PKBRlA', '3539917'), - (481, 643, 'not_attending', '2021-04-16 10:06:47', '2025-12-17 19:47:45', 'o4PKBRlA', '3539918'), - (481, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'o4PKBRlA', '3539919'), - (481, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'o4PKBRlA', '3539920'), - (481, 646, 'attending', '2021-05-15 21:32:50', '2025-12-17 19:47:46', 'o4PKBRlA', '3539921'), - (481, 647, 'attending', '2021-05-21 17:05:32', '2025-12-17 19:47:46', 'o4PKBRlA', '3539922'), - (481, 648, 'not_attending', '2021-05-29 16:05:27', '2025-12-17 19:47:47', 'o4PKBRlA', '3539923'), - (481, 649, 'attending', '2021-03-14 04:29:02', '2025-12-17 19:47:51', 'o4PKBRlA', '3539927'), - (481, 663, 'not_attending', '2021-05-02 05:48:21', '2025-12-17 19:47:46', 'o4PKBRlA', '3547140'), - (481, 685, 'not_attending', '2021-04-03 01:13:10', '2025-12-17 19:47:44', 'o4PKBRlA', '3551564'), - (481, 687, 'maybe', '2021-03-11 17:48:09', '2025-12-17 19:47:51', 'o4PKBRlA', '3553405'), - (481, 690, 'not_attending', '2021-03-23 22:50:18', '2025-12-17 19:47:44', 'o4PKBRlA', '3559954'), - (481, 695, 'not_attending', '2021-03-18 15:57:07', '2025-12-17 19:47:51', 'o4PKBRlA', '3567535'), - (481, 696, 'not_attending', '2021-03-17 07:57:40', '2025-12-17 19:47:51', 'o4PKBRlA', '3567536'), - (481, 697, 'maybe', '2021-03-26 15:47:52', '2025-12-17 19:47:44', 'o4PKBRlA', '3567537'), - (481, 705, 'not_attending', '2021-03-27 18:13:26', '2025-12-17 19:47:44', 'o4PKBRlA', '3581895'), - (481, 706, 'not_attending', '2021-04-14 16:14:20', '2025-12-17 19:47:45', 'o4PKBRlA', '3582734'), - (481, 707, 'attending', '2021-03-31 00:14:34', '2025-12-17 19:47:46', 'o4PKBRlA', '3583262'), - (481, 708, 'maybe', '2021-03-25 20:59:50', '2025-12-17 19:47:44', 'o4PKBRlA', '3587850'), - (481, 711, 'attending', '2021-03-22 21:18:47', '2025-12-17 19:47:44', 'o4PKBRlA', '3588075'), - (481, 714, 'not_attending', '2021-04-03 01:12:39', '2025-12-17 19:47:44', 'o4PKBRlA', '3604063'), - (481, 716, 'attending', '2021-03-25 15:12:48', '2025-12-17 19:47:44', 'o4PKBRlA', '3618353'), - (481, 717, 'not_attending', '2021-03-27 05:27:01', '2025-12-17 19:47:44', 'o4PKBRlA', '3619523'), - (481, 719, 'maybe', '2021-04-01 10:32:01', '2025-12-17 19:47:44', 'o4PKBRlA', '3635405'), - (481, 721, 'attending', '2021-03-29 08:24:38', '2025-12-17 19:47:44', 'o4PKBRlA', '3643622'), - (481, 722, 'maybe', '2021-03-31 00:12:27', '2025-12-17 19:47:44', 'o4PKBRlA', '3646347'), - (481, 724, 'attending', '2021-04-26 00:15:26', '2025-12-17 19:47:46', 'o4PKBRlA', '3661369'), - (481, 725, 'attending', '2021-05-22 21:16:24', '2025-12-17 19:47:47', 'o4PKBRlA', '3661372'), - (481, 727, 'not_attending', '2021-06-19 16:46:55', '2025-12-17 19:47:38', 'o4PKBRlA', '3661377'), - (481, 728, 'not_attending', '2021-04-14 16:14:11', '2025-12-17 19:47:44', 'o4PKBRlA', '3668073'), - (481, 730, 'attending', '2021-05-01 01:13:30', '2025-12-17 19:47:46', 'o4PKBRlA', '3668076'), - (481, 731, 'not_attending', '2021-04-06 02:46:29', '2025-12-17 19:47:44', 'o4PKBRlA', '3674262'), - (481, 735, 'not_attending', '2021-04-20 05:48:21', '2025-12-17 19:47:46', 'o4PKBRlA', '3677402'), - (481, 752, 'maybe', '2021-04-15 15:55:19', '2025-12-17 19:47:44', 'o4PKBRlA', '3699422'), - (481, 754, 'attending', '2021-04-20 02:42:16', '2025-12-17 19:47:45', 'o4PKBRlA', '3701863'), - (481, 763, 'attending', '2021-04-21 15:55:02', '2025-12-17 19:47:46', 'o4PKBRlA', '3719122'), - (481, 766, 'maybe', '2021-05-07 10:51:51', '2025-12-17 19:47:46', 'o4PKBRlA', '3721383'), - (481, 772, 'maybe', '2021-04-27 12:37:11', '2025-12-17 19:47:46', 'o4PKBRlA', '3726421'), - (481, 774, 'not_attending', '2021-04-21 06:49:55', '2025-12-17 19:47:45', 'o4PKBRlA', '3730212'), - (481, 777, 'attending', '2021-04-26 19:40:20', '2025-12-17 19:47:46', 'o4PKBRlA', '3746248'), - (481, 779, 'maybe', '2021-04-29 11:50:19', '2025-12-17 19:47:46', 'o4PKBRlA', '3757118'), - (481, 782, 'maybe', '2021-05-04 21:52:37', '2025-12-17 19:47:46', 'o4PKBRlA', '3761843'), - (481, 792, 'not_attending', '2021-05-17 18:36:00', '2025-12-17 19:47:46', 'o4PKBRlA', '3793156'), - (481, 796, 'maybe', '2021-05-17 18:36:28', '2025-12-17 19:47:46', 'o4PKBRlA', '3793862'), - (481, 803, 'not_attending', '2021-05-19 21:53:03', '2025-12-17 19:47:46', 'o4PKBRlA', '3804665'), - (481, 805, 'attending', '2021-06-12 16:23:13', '2025-12-17 19:47:47', 'o4PKBRlA', '3804777'), - (481, 809, 'maybe', '2021-05-18 06:48:47', '2025-12-17 19:47:46', 'o4PKBRlA', '3807964'), - (481, 823, 'attending', '2021-06-19 22:08:53', '2025-12-17 19:47:48', 'o4PKBRlA', '3974109'), - (481, 824, 'attending', '2021-06-01 15:21:30', '2025-12-17 19:47:47', 'o4PKBRlA', '3974112'), - (481, 827, 'attending', '2021-06-05 19:45:32', '2025-12-17 19:47:47', 'o4PKBRlA', '3975311'), - (481, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'o4PKBRlA', '3975312'), - (481, 832, 'not_attending', '2021-06-05 19:45:25', '2025-12-17 19:47:47', 'o4PKBRlA', '3976650'), - (481, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'o4PKBRlA', '3994992'), - (481, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'o4PKBRlA', '4014338'), - (481, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'o4PKBRlA', '4021848'), - (481, 869, 'not_attending', '2021-06-27 06:23:22', '2025-12-17 19:47:38', 'o4PKBRlA', '4136744'), - (481, 870, 'attending', '2021-07-03 19:05:10', '2025-12-17 19:47:39', 'o4PKBRlA', '4136937'), - (481, 871, 'not_attending', '2021-07-10 22:45:17', '2025-12-17 19:47:39', 'o4PKBRlA', '4136938'), - (481, 872, 'not_attending', '2021-07-03 19:04:37', '2025-12-17 19:47:40', 'o4PKBRlA', '4136947'), - (481, 874, 'not_attending', '2021-06-24 21:08:01', '2025-12-17 19:47:38', 'o4PKBRlA', '4139815'), - (481, 879, 'maybe', '2021-06-27 06:23:03', '2025-12-17 19:47:38', 'o4PKBRlA', '4147806'), - (481, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'o4PKBRlA', '4210314'), - (481, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'o4PKBRlA', '4225444'), - (481, 899, 'not_attending', '2021-07-03 19:04:23', '2025-12-17 19:47:39', 'o4PKBRlA', '4239259'), - (481, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'o4PKBRlA', '4240316'), - (481, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'o4PKBRlA', '4240317'), - (481, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'o4PKBRlA', '4240318'), - (481, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'o4PKBRlA', '4240320'), - (481, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'o4PKBRlA', '4250163'), - (481, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'o4PKBRlA', '4275957'), - (481, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'o4PKBRlA', '4277819'), - (481, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'o4PKBRlA', '4301723'), - (481, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'o4PKBRlA', '4302093'), - (481, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'o4PKBRlA', '4304151'), - (481, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'o4PKBRlA', '4345519'), - (481, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'o4PKBRlA', '4356801'), - (481, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'o4PKBRlA', '4358025'), - (481, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'o4PKBRlA', '4366186'), - (481, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'o4PKBRlA', '4366187'), - (481, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'o4PKBRlA', '4402823'), - (481, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'o4PKBRlA', '4420735'), - (481, 991, 'not_attending', '2021-09-11 22:40:20', '2025-12-17 19:47:43', 'o4PKBRlA', '4420738'), - (481, 992, 'attending', '2021-09-18 21:12:50', '2025-12-17 19:47:33', 'o4PKBRlA', '4420739'), - (481, 993, 'not_attending', '2021-09-25 18:11:16', '2025-12-17 19:47:34', 'o4PKBRlA', '4420741'), - (481, 994, 'attending', '2021-10-02 21:38:47', '2025-12-17 19:47:34', 'o4PKBRlA', '4420742'), - (481, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'o4PKBRlA', '4420744'), - (481, 996, 'not_attending', '2021-10-02 16:16:32', '2025-12-17 19:47:35', 'o4PKBRlA', '4420747'), - (481, 997, 'not_attending', '2021-10-02 16:16:37', '2025-12-17 19:47:35', 'o4PKBRlA', '4420748'), - (481, 998, 'not_attending', '2021-10-02 16:16:40', '2025-12-17 19:47:36', 'o4PKBRlA', '4420749'), - (481, 1016, 'maybe', '2021-09-05 22:37:17', '2025-12-17 19:47:43', 'o4PKBRlA', '4441271'), - (481, 1019, 'maybe', '2021-09-09 08:47:29', '2025-12-17 19:47:43', 'o4PKBRlA', '4450515'), - (481, 1023, 'not_attending', '2021-09-11 22:40:17', '2025-12-17 19:47:43', 'o4PKBRlA', '4461883'), - (481, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'o4PKBRlA', '4508342'), - (481, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'o4PKBRlA', '4568602'), - (481, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'o4PKBRlA', '4572153'), - (481, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'o4PKBRlA', '4585962'), - (481, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'o4PKBRlA', '4596356'), - (481, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'o4PKBRlA', '4598860'), - (481, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'o4PKBRlA', '4598861'), - (481, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'o4PKBRlA', '4602797'), - (481, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'o4PKBRlA', '4637896'), - (481, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'o4PKBRlA', '4642994'), - (481, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'o4PKBRlA', '4642995'), - (481, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'o4PKBRlA', '4642996'), - (481, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'o4PKBRlA', '4642997'), - (481, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'o4PKBRlA', '4645687'), - (481, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'o4PKBRlA', '4645698'), - (481, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'o4PKBRlA', '4645704'), - (481, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'o4PKBRlA', '4645705'), - (481, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'o4PKBRlA', '4668385'), - (481, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'o4PKBRlA', '4694407'), - (481, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'o4PKBRlA', '4736497'), - (481, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'o4PKBRlA', '4736499'), - (481, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'o4PKBRlA', '4736500'), - (481, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'o4PKBRlA', '4736503'), - (481, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'o4PKBRlA', '4736504'), - (481, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'o4PKBRlA', '4746789'), - (481, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'o4PKBRlA', '4753929'), - (481, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'o4PKBRlA', '5038850'), - (481, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'o4PKBRlA', '5045826'), - (481, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'o4PKBRlA', '5132533'), - (481, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'o4PKBRlA', '5186582'), - (481, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'o4PKBRlA', '5186583'), - (481, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'o4PKBRlA', '5186585'), - (481, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'o4PKBRlA', '5190437'), - (481, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'o4PKBRlA', '5215989'), - (481, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PKBRlA', '6045684'), - (482, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mb268pXm', '6045684'), - (483, 23, 'attending', '2020-06-08 01:16:42', '2025-12-17 19:47:58', 'NmLpqJam', '2958067'), - (483, 67, 'attending', '2020-06-13 23:06:40', '2025-12-17 19:47:58', 'NmLpqJam', '2977136'), - (483, 69, 'attending', '2020-07-02 22:40:43', '2025-12-17 19:47:55', 'NmLpqJam', '2977138'), - (483, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'NmLpqJam', '3034321'), - (483, 164, 'attending', '2020-11-14 23:43:34', '2025-12-17 19:47:54', 'NmLpqJam', '3058701'), - (483, 166, 'attending', '2020-11-21 16:16:43', '2025-12-17 19:47:54', 'NmLpqJam', '3058704'), - (483, 169, 'maybe', '2020-06-14 17:35:37', '2025-12-17 19:47:58', 'NmLpqJam', '3058741'), - (483, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'NmLpqJam', '3067093'), - (483, 179, 'attending', '2020-06-20 16:49:54', '2025-12-17 19:47:58', 'NmLpqJam', '3073687'), - (483, 180, 'maybe', '2020-06-18 12:05:59', '2025-12-17 19:47:58', 'NmLpqJam', '3074048'), - (483, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'NmLpqJam', '3075228'), - (483, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'NmLpqJam', '3075456'), - (483, 186, 'attending', '2020-06-26 22:37:33', '2025-12-17 19:47:55', 'NmLpqJam', '3083791'), - (483, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'NmLpqJam', '3085151'), - (483, 191, 'attending', '2020-07-11 18:28:48', '2025-12-17 19:47:55', 'NmLpqJam', '3087259'), - (483, 192, 'attending', '2020-07-18 19:47:56', '2025-12-17 19:47:55', 'NmLpqJam', '3087260'), - (483, 193, 'attending', '2020-07-19 02:12:53', '2025-12-17 19:47:55', 'NmLpqJam', '3087261'), - (483, 194, 'maybe', '2020-08-08 17:13:39', '2025-12-17 19:47:56', 'NmLpqJam', '3087262'), - (483, 195, 'attending', '2020-08-06 21:41:26', '2025-12-17 19:47:56', 'NmLpqJam', '3087264'), - (483, 196, 'attending', '2020-08-11 00:40:28', '2025-12-17 19:47:56', 'NmLpqJam', '3087265'), - (483, 197, 'attending', '2020-08-22 19:11:14', '2025-12-17 19:47:56', 'NmLpqJam', '3087266'), - (483, 198, 'not_attending', '2020-08-29 00:57:01', '2025-12-17 19:47:56', 'NmLpqJam', '3087267'), - (483, 199, 'attending', '2020-09-05 16:59:35', '2025-12-17 19:47:56', 'NmLpqJam', '3087268'), - (483, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'NmLpqJam', '3088653'), - (483, 205, 'attending', '2020-07-10 22:50:43', '2025-12-17 19:47:55', 'NmLpqJam', '3104804'), - (483, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'NmLpqJam', '3106813'), - (483, 212, 'attending', '2020-07-13 11:59:21', '2025-12-17 19:47:55', 'NmLpqJam', '3118517'), - (483, 215, 'attending', '2020-07-07 21:47:03', '2025-12-17 19:47:55', 'NmLpqJam', '3124987'), - (483, 223, 'attending', '2020-09-12 22:23:48', '2025-12-17 19:47:56', 'NmLpqJam', '3129980'), - (483, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'NmLpqJam', '3132817'), - (483, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'NmLpqJam', '3132820'), - (483, 229, 'attending', '2020-07-16 20:19:29', '2025-12-17 19:47:55', 'NmLpqJam', '3134135'), - (483, 233, 'attending', '2020-07-19 20:50:55', '2025-12-17 19:47:55', 'NmLpqJam', '3139773'), - (483, 237, 'attending', '2020-07-27 19:05:23', '2025-12-17 19:47:55', 'NmLpqJam', '3142085'), - (483, 260, 'attending', '2021-06-15 22:37:57', '2025-12-17 19:47:47', 'NmLpqJam', '3149491'), - (483, 264, 'attending', '2020-08-05 19:33:05', '2025-12-17 19:47:56', 'NmLpqJam', '3150735'), - (483, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'NmLpqJam', '3155321'), - (483, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'NmLpqJam', '3162006'), - (483, 276, 'attending', '2020-08-04 22:55:20', '2025-12-17 19:47:56', 'NmLpqJam', '3163408'), - (483, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'NmLpqJam', '3163442'), - (483, 280, 'attending', '2020-08-11 00:40:00', '2025-12-17 19:47:56', 'NmLpqJam', '3166942'), - (483, 292, 'attending', '2020-08-10 22:36:03', '2025-12-17 19:47:56', 'NmLpqJam', '3170480'), - (483, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'NmLpqJam', '3172832'), - (483, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'NmLpqJam', '3172833'), - (483, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'NmLpqJam', '3172834'), - (483, 296, 'attending', '2020-09-11 23:09:42', '2025-12-17 19:47:56', 'NmLpqJam', '3172876'), - (483, 297, 'attending', '2020-08-11 22:37:27', '2025-12-17 19:47:56', 'NmLpqJam', '3173937'), - (483, 304, 'attending', '2020-09-06 21:54:56', '2025-12-17 19:47:56', 'NmLpqJam', '3178916'), - (483, 308, 'attending', '2020-09-03 22:53:49', '2025-12-17 19:47:56', 'NmLpqJam', '3183341'), - (483, 311, 'not_attending', '2020-09-18 03:13:52', '2025-12-17 19:47:56', 'NmLpqJam', '3186057'), - (483, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'NmLpqJam', '3191735'), - (483, 319, 'attending', '2020-08-30 14:29:18', '2025-12-17 19:47:56', 'NmLpqJam', '3194179'), - (483, 333, 'attending', '2020-10-02 19:33:09', '2025-12-17 19:47:52', 'NmLpqJam', '3199782'), - (483, 334, 'attending', '2020-10-02 19:33:26', '2025-12-17 19:47:52', 'NmLpqJam', '3199784'), - (483, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'NmLpqJam', '3200209'), - (483, 339, 'attending', '2020-09-09 23:11:00', '2025-12-17 19:47:56', 'NmLpqJam', '3204469'), - (483, 340, 'attending', '2020-09-18 23:56:57', '2025-12-17 19:47:56', 'NmLpqJam', '3204470'), - (483, 341, 'attending', '2020-09-25 23:27:06', '2025-12-17 19:47:52', 'NmLpqJam', '3204471'), - (483, 342, 'not_attending', '2020-10-02 21:24:34', '2025-12-17 19:47:52', 'NmLpqJam', '3204472'), - (483, 345, 'attending', '2020-09-13 22:43:19', '2025-12-17 19:47:56', 'NmLpqJam', '3207423'), - (483, 346, 'attending', '2020-09-15 02:14:29', '2025-12-17 19:47:56', 'NmLpqJam', '3207515'), - (483, 347, 'attending', '2020-09-24 22:52:00', '2025-12-17 19:47:51', 'NmLpqJam', '3207930'), - (483, 348, 'attending', '2020-09-28 19:22:02', '2025-12-17 19:47:52', 'NmLpqJam', '3209159'), - (483, 351, 'maybe', '2020-09-17 16:12:21', '2025-12-17 19:47:56', 'NmLpqJam', '3209257'), - (483, 362, 'attending', '2020-09-26 15:53:21', '2025-12-17 19:47:52', 'NmLpqJam', '3214207'), - (483, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'NmLpqJam', '3217037'), - (483, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'NmLpqJam', '3218510'), - (483, 366, 'attending', '2020-09-22 21:26:25', '2025-12-17 19:47:56', 'NmLpqJam', '3219750'), - (483, 367, 'attending', '2020-09-24 21:13:30', '2025-12-17 19:47:51', 'NmLpqJam', '3219751'), - (483, 368, 'attending', '2020-10-01 19:10:03', '2025-12-17 19:47:52', 'NmLpqJam', '3221403'), - (483, 369, 'not_attending', '2020-10-12 23:18:07', '2025-12-17 19:47:52', 'NmLpqJam', '3221404'), - (483, 370, 'attending', '2020-10-02 19:40:54', '2025-12-17 19:47:52', 'NmLpqJam', '3221405'), - (483, 371, 'attending', '2020-10-02 19:40:57', '2025-12-17 19:47:52', 'NmLpqJam', '3221406'), - (483, 374, 'attending', '2020-10-22 14:06:02', '2025-12-17 19:47:53', 'NmLpqJam', '3221415'), - (483, 385, 'attending', '2020-10-03 21:18:16', '2025-12-17 19:47:52', 'NmLpqJam', '3228698'), - (483, 386, 'attending', '2020-10-06 16:20:13', '2025-12-17 19:47:52', 'NmLpqJam', '3228699'), - (483, 387, 'attending', '2020-10-17 14:31:47', '2025-12-17 19:47:52', 'NmLpqJam', '3228700'), - (483, 388, 'attending', '2020-10-24 00:23:57', '2025-12-17 19:47:52', 'NmLpqJam', '3228701'), - (483, 413, 'attending', '2020-10-21 13:36:07', '2025-12-17 19:47:52', 'NmLpqJam', '3236670'), - (483, 416, 'attending', '2020-10-09 22:27:30', '2025-12-17 19:47:52', 'NmLpqJam', '3238073'), - (483, 418, 'attending', '2020-10-12 18:58:57', '2025-12-17 19:47:52', 'NmLpqJam', '3241728'), - (483, 420, 'attending', '2020-10-15 22:40:48', '2025-12-17 19:47:52', 'NmLpqJam', '3245293'), - (483, 422, 'not_attending', '2020-10-29 22:42:42', '2025-12-17 19:47:53', 'NmLpqJam', '3245295'), - (483, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLpqJam', '3245751'), - (483, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'NmLpqJam', '3250232'), - (483, 427, 'attending', '2020-11-02 00:44:00', '2025-12-17 19:47:53', 'NmLpqJam', '3250233'), - (483, 431, 'attending', '2020-10-22 14:06:17', '2025-12-17 19:47:53', 'NmLpqJam', '3253225'), - (483, 435, 'attending', '2020-10-21 13:34:59', '2025-12-17 19:47:52', 'NmLpqJam', '3254790'), - (483, 438, 'not_attending', '2020-10-22 14:06:47', '2025-12-17 19:47:53', 'NmLpqJam', '3256163'), - (483, 440, 'attending', '2020-10-19 13:31:15', '2025-12-17 19:47:53', 'NmLpqJam', '3256168'), - (483, 441, 'attending', '2020-11-14 15:05:26', '2025-12-17 19:47:54', 'NmLpqJam', '3256169'), - (483, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLpqJam', '3263578'), - (483, 444, 'attending', '2020-10-30 02:31:33', '2025-12-17 19:47:53', 'NmLpqJam', '3263745'), - (483, 445, 'attending', '2020-11-13 00:54:32', '2025-12-17 19:47:54', 'NmLpqJam', '3266138'), - (483, 446, 'attending', '2020-10-27 22:41:29', '2025-12-17 19:47:53', 'NmLpqJam', '3267163'), - (483, 448, 'attending', '2020-10-30 23:46:06', '2025-12-17 19:47:53', 'NmLpqJam', '3271831'), - (483, 455, 'attending', '2020-11-05 13:07:01', '2025-12-17 19:47:53', 'NmLpqJam', '3276391'), - (483, 456, 'not_attending', '2020-11-17 00:03:11', '2025-12-17 19:47:54', 'NmLpqJam', '3276428'), - (483, 458, 'not_attending', '2020-11-09 23:24:49', '2025-12-17 19:47:53', 'NmLpqJam', '3279233'), - (483, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'NmLpqJam', '3281467'), - (483, 461, 'maybe', '2020-11-09 23:24:00', '2025-12-17 19:47:53', 'NmLpqJam', '3281469'), - (483, 462, 'attending', '2020-11-08 20:39:00', '2025-12-17 19:47:53', 'NmLpqJam', '3281470'), - (483, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'NmLpqJam', '3281829'), - (483, 468, 'attending', '2020-11-21 16:16:49', '2025-12-17 19:47:54', 'NmLpqJam', '3285413'), - (483, 469, 'not_attending', '2020-11-10 23:29:26', '2025-12-17 19:47:54', 'NmLpqJam', '3285414'), - (483, 476, 'attending', '2020-11-17 17:15:05', '2025-12-17 19:47:54', 'NmLpqJam', '3286982'), - (483, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'NmLpqJam', '3297764'), - (483, 484, 'attending', '2020-11-20 13:26:11', '2025-12-17 19:47:54', 'NmLpqJam', '3297792'), - (483, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'NmLpqJam', '3313856'), - (483, 496, 'maybe', '2020-12-10 19:45:48', '2025-12-17 19:47:54', 'NmLpqJam', '3314269'), - (483, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'NmLpqJam', '3314909'), - (483, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'NmLpqJam', '3314964'), - (483, 502, 'attending', '2020-12-10 03:28:18', '2025-12-17 19:47:55', 'NmLpqJam', '3323365'), - (483, 513, 'attending', '2020-12-19 21:05:48', '2025-12-17 19:47:55', 'NmLpqJam', '3329383'), - (483, 517, 'attending', '2021-01-04 00:48:58', '2025-12-17 19:47:48', 'NmLpqJam', '3337137'), - (483, 525, 'attending', '2020-12-20 03:21:49', '2025-12-17 19:47:48', 'NmLpqJam', '3350467'), - (483, 526, 'maybe', '2020-12-29 16:52:36', '2025-12-17 19:47:48', 'NmLpqJam', '3351539'), - (483, 529, 'attending', '2021-01-04 00:50:08', '2025-12-17 19:47:48', 'NmLpqJam', '3364568'), - (483, 530, 'attending', '2021-01-04 00:47:53', '2025-12-17 19:47:48', 'NmLpqJam', '3373923'), - (483, 531, 'not_attending', '2021-01-02 05:22:18', '2025-12-17 19:47:48', 'NmLpqJam', '3378210'), - (483, 532, 'attending', '2021-01-04 00:48:41', '2025-12-17 19:47:48', 'NmLpqJam', '3381412'), - (483, 535, 'attending', '2021-01-05 14:50:43', '2025-12-17 19:47:48', 'NmLpqJam', '3384729'), - (483, 536, 'attending', '2021-01-07 14:38:47', '2025-12-17 19:47:48', 'NmLpqJam', '3386848'), - (483, 539, 'attending', '2021-01-12 17:51:57', '2025-12-17 19:47:48', 'NmLpqJam', '3389158'), - (483, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'NmLpqJam', '3389527'), - (483, 541, 'attending', '2021-01-08 13:48:05', '2025-12-17 19:47:48', 'NmLpqJam', '3391683'), - (483, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'NmLpqJam', '3396499'), - (483, 548, 'attending', '2021-01-13 12:56:32', '2025-12-17 19:47:48', 'NmLpqJam', '3403650'), - (483, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'NmLpqJam', '3406988'), - (483, 553, 'attending', '2021-01-13 12:56:26', '2025-12-17 19:47:48', 'NmLpqJam', '3407248'), - (483, 555, 'attending', '2021-01-19 13:06:37', '2025-12-17 19:47:49', 'NmLpqJam', '3416576'), - (483, 557, 'attending', '2021-01-19 15:36:53', '2025-12-17 19:47:49', 'NmLpqJam', '3418748'), - (483, 558, 'attending', '2021-01-19 13:06:33', '2025-12-17 19:47:49', 'NmLpqJam', '3418925'), - (483, 560, 'attending', '2021-01-20 01:56:34', '2025-12-17 19:47:49', 'NmLpqJam', '3421715'), - (483, 561, 'attending', '2021-01-23 20:27:16', '2025-12-17 19:47:49', 'NmLpqJam', '3421916'), - (483, 568, 'attending', '2021-01-30 15:36:38', '2025-12-17 19:47:50', 'NmLpqJam', '3430267'), - (483, 569, 'attending', '2021-01-27 23:03:13', '2025-12-17 19:47:49', 'NmLpqJam', '3432673'), - (483, 571, 'attending', '2021-02-10 21:01:44', '2025-12-17 19:47:50', 'NmLpqJam', '3435539'), - (483, 575, 'attending', '2021-01-30 15:36:44', '2025-12-17 19:47:50', 'NmLpqJam', '3437492'), - (483, 576, 'not_attending', '2021-02-03 00:12:08', '2025-12-17 19:47:50', 'NmLpqJam', '3438748'), - (483, 578, 'attending', '2021-01-28 14:47:28', '2025-12-17 19:47:50', 'NmLpqJam', '3440043'), - (483, 579, 'attending', '2021-02-06 14:06:00', '2025-12-17 19:47:50', 'NmLpqJam', '3440978'), - (483, 598, 'attending', '2021-02-08 16:01:48', '2025-12-17 19:47:50', 'NmLpqJam', '3468003'), - (483, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'NmLpqJam', '3468125'), - (483, 602, 'attending', '2021-02-09 17:14:53', '2025-12-17 19:47:50', 'NmLpqJam', '3470303'), - (483, 603, 'attending', '2021-02-18 15:20:11', '2025-12-17 19:47:50', 'NmLpqJam', '3470304'), - (483, 604, 'attending', '2021-02-23 13:52:17', '2025-12-17 19:47:50', 'NmLpqJam', '3470305'), - (483, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'NmLpqJam', '3470991'), - (483, 607, 'attending', '2021-02-19 23:42:52', '2025-12-17 19:47:50', 'NmLpqJam', '3471882'), - (483, 609, 'attending', '2021-02-13 14:45:48', '2025-12-17 19:47:50', 'NmLpqJam', '3480916'), - (483, 612, 'attending', '2021-02-14 14:56:00', '2025-12-17 19:47:50', 'NmLpqJam', '3490040'), - (483, 613, 'not_attending', '2021-02-26 01:35:50', '2025-12-17 19:47:50', 'NmLpqJam', '3490041'), - (483, 614, 'not_attending', '2021-03-03 23:18:43', '2025-12-17 19:47:51', 'NmLpqJam', '3490042'), - (483, 616, 'attending', '2021-02-15 20:44:13', '2025-12-17 19:47:50', 'NmLpqJam', '3493478'), - (483, 618, 'attending', '2021-02-19 20:23:16', '2025-12-17 19:47:50', 'NmLpqJam', '3503991'), - (483, 619, 'attending', '2021-02-20 20:00:10', '2025-12-17 19:47:50', 'NmLpqJam', '3506310'), - (483, 621, 'not_attending', '2021-03-06 01:18:22', '2025-12-17 19:47:51', 'NmLpqJam', '3517815'), - (483, 622, 'maybe', '2021-03-13 23:02:59', '2025-12-17 19:47:51', 'NmLpqJam', '3517816'), - (483, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'NmLpqJam', '3523941'), - (483, 624, 'attending', '2021-02-27 01:21:07', '2025-12-17 19:47:50', 'NmLpqJam', '3528556'), - (483, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'NmLpqJam', '3533850'), - (483, 632, 'attending', '2021-03-09 00:57:21', '2025-12-17 19:47:51', 'NmLpqJam', '3533853'), - (483, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'NmLpqJam', '3536632'), - (483, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'NmLpqJam', '3536656'), - (483, 641, 'attending', '2021-04-02 14:55:56', '2025-12-17 19:47:44', 'NmLpqJam', '3539916'), - (483, 642, 'attending', '2021-04-06 02:45:46', '2025-12-17 19:47:44', 'NmLpqJam', '3539917'), - (483, 643, 'not_attending', '2021-04-16 12:33:17', '2025-12-17 19:47:45', 'NmLpqJam', '3539918'), - (483, 644, 'attending', '2021-04-24 12:21:29', '2025-12-17 19:47:45', 'NmLpqJam', '3539919'), - (483, 645, 'attending', '2021-05-06 22:37:18', '2025-12-17 19:47:46', 'NmLpqJam', '3539920'), - (483, 646, 'attending', '2021-05-12 14:47:19', '2025-12-17 19:47:46', 'NmLpqJam', '3539921'), - (483, 647, 'attending', '2021-05-22 17:03:16', '2025-12-17 19:47:46', 'NmLpqJam', '3539922'), - (483, 648, 'attending', '2021-05-28 15:50:24', '2025-12-17 19:47:47', 'NmLpqJam', '3539923'), - (483, 649, 'attending', '2021-03-18 21:35:45', '2025-12-17 19:47:51', 'NmLpqJam', '3539927'), - (483, 650, 'attending', '2021-03-26 12:30:51', '2025-12-17 19:47:44', 'NmLpqJam', '3539928'), - (483, 651, 'not_attending', '2021-03-10 22:56:21', '2025-12-17 19:47:51', 'NmLpqJam', '3541045'), - (483, 655, 'maybe', '2021-03-13 23:03:03', '2025-12-17 19:47:51', 'NmLpqJam', '3547129'), - (483, 656, 'attending', '2021-03-18 21:35:39', '2025-12-17 19:47:51', 'NmLpqJam', '3547130'), - (483, 657, 'not_attending', '2021-04-16 12:33:11', '2025-12-17 19:47:45', 'NmLpqJam', '3547132'), - (483, 658, 'attending', '2021-06-12 17:55:19', '2025-12-17 19:47:47', 'NmLpqJam', '3547134'), - (483, 659, 'attending', '2021-04-06 02:45:44', '2025-12-17 19:47:44', 'NmLpqJam', '3547135'), - (483, 660, 'attending', '2021-07-10 15:05:05', '2025-12-17 19:47:39', 'NmLpqJam', '3547136'), - (483, 661, 'attending', '2021-04-02 14:55:59', '2025-12-17 19:47:44', 'NmLpqJam', '3547137'), - (483, 662, 'attending', '2021-04-24 12:21:26', '2025-12-17 19:47:45', 'NmLpqJam', '3547138'), - (483, 663, 'attending', '2021-05-06 22:37:16', '2025-12-17 19:47:46', 'NmLpqJam', '3547140'), - (483, 664, 'attending', '2021-09-08 21:36:20', '2025-12-17 19:47:43', 'NmLpqJam', '3547142'), - (483, 665, 'attending', '2021-09-03 21:19:13', '2025-12-17 19:47:43', 'NmLpqJam', '3547143'), - (483, 666, 'attending', '2021-08-11 21:47:45', '2025-12-17 19:47:42', 'NmLpqJam', '3547144'), - (483, 667, 'attending', '2021-08-24 22:05:00', '2025-12-17 19:47:42', 'NmLpqJam', '3547145'), - (483, 668, 'attending', '2021-05-12 14:47:17', '2025-12-17 19:47:46', 'NmLpqJam', '3547146'), - (483, 669, 'attending', '2021-06-25 18:08:47', '2025-12-17 19:47:38', 'NmLpqJam', '3547147'), - (483, 670, 'attending', '2021-06-18 18:30:07', '2025-12-17 19:47:48', 'NmLpqJam', '3547148'), - (483, 672, 'attending', '2021-05-22 17:03:09', '2025-12-17 19:47:46', 'NmLpqJam', '3547150'), - (483, 673, 'attending', '2021-06-30 11:42:57', '2025-12-17 19:47:38', 'NmLpqJam', '3547151'), - (483, 674, 'attending', '2021-08-06 16:59:54', '2025-12-17 19:47:41', 'NmLpqJam', '3547152'), - (483, 675, 'attending', '2021-07-30 12:16:16', '2025-12-17 19:47:40', 'NmLpqJam', '3547153'), - (483, 676, 'attending', '2021-07-22 01:31:45', '2025-12-17 19:47:40', 'NmLpqJam', '3547154'), - (483, 677, 'attending', '2021-05-28 16:27:27', '2025-12-17 19:47:47', 'NmLpqJam', '3547155'), - (483, 684, 'not_attending', '2021-03-12 22:43:02', '2025-12-17 19:47:51', 'NmLpqJam', '3549257'), - (483, 685, 'attending', '2021-04-02 18:56:40', '2025-12-17 19:47:44', 'NmLpqJam', '3551564'), - (483, 686, 'attending', '2021-03-09 21:00:28', '2025-12-17 19:47:51', 'NmLpqJam', '3553333'), - (483, 687, 'attending', '2021-03-10 17:23:44', '2025-12-17 19:47:51', 'NmLpqJam', '3553405'), - (483, 698, 'attending', '2021-03-15 19:03:05', '2025-12-17 19:47:44', 'NmLpqJam', '3571867'), - (483, 699, 'attending', '2021-03-25 20:58:32', '2025-12-17 19:47:44', 'NmLpqJam', '3572241'), - (483, 705, 'attending', '2021-03-22 23:42:01', '2025-12-17 19:47:44', 'NmLpqJam', '3581895'), - (483, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'NmLpqJam', '3582734'), - (483, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLpqJam', '3583262'), - (483, 708, 'attending', '2021-03-25 02:51:28', '2025-12-17 19:47:44', 'NmLpqJam', '3587850'), - (483, 709, 'attending', '2021-03-30 12:01:29', '2025-12-17 19:47:44', 'NmLpqJam', '3587852'), - (483, 710, 'attending', '2021-03-30 12:01:38', '2025-12-17 19:47:44', 'NmLpqJam', '3587853'), - (483, 715, 'attending', '2021-03-26 12:36:57', '2025-12-17 19:47:44', 'NmLpqJam', '3604146'), - (483, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLpqJam', '3619523'), - (483, 718, 'attending', '2021-03-26 12:30:45', '2025-12-17 19:47:44', 'NmLpqJam', '3626844'), - (483, 719, 'attending', '2021-03-27 15:59:11', '2025-12-17 19:47:44', 'NmLpqJam', '3635405'), - (483, 720, 'attending', '2021-03-29 16:33:33', '2025-12-17 19:47:44', 'NmLpqJam', '3643450'), - (483, 722, 'attending', '2021-03-29 16:04:55', '2025-12-17 19:47:44', 'NmLpqJam', '3646347'), - (483, 723, 'maybe', '2021-04-05 20:08:53', '2025-12-17 19:47:44', 'NmLpqJam', '3649179'), - (483, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLpqJam', '3661369'), - (483, 728, 'attending', '2021-04-02 18:44:03', '2025-12-17 19:47:44', 'NmLpqJam', '3668073'), - (483, 729, 'attending', '2021-04-02 18:44:07', '2025-12-17 19:47:46', 'NmLpqJam', '3668075'), - (483, 730, 'attending', '2021-04-02 18:44:09', '2025-12-17 19:47:46', 'NmLpqJam', '3668076'), - (483, 731, 'maybe', '2021-04-04 13:09:15', '2025-12-17 19:47:44', 'NmLpqJam', '3674262'), - (483, 734, 'attending', '2021-04-06 02:44:24', '2025-12-17 19:47:44', 'NmLpqJam', '3676806'), - (483, 735, 'maybe', '2021-05-02 16:49:04', '2025-12-17 19:47:46', 'NmLpqJam', '3677402'), - (483, 736, 'not_attending', '2021-04-09 16:14:39', '2025-12-17 19:47:44', 'NmLpqJam', '3677701'), - (483, 737, 'attending', '2021-04-06 02:46:02', '2025-12-17 19:47:44', 'NmLpqJam', '3679349'), - (483, 761, 'attending', '2021-05-14 21:34:09', '2025-12-17 19:47:46', 'NmLpqJam', '3716041'), - (483, 764, 'attending', '2021-04-23 22:06:38', '2025-12-17 19:47:45', 'NmLpqJam', '3720507'), - (483, 766, 'attending', '2021-05-04 02:59:20', '2025-12-17 19:47:46', 'NmLpqJam', '3721383'), - (483, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLpqJam', '3730212'), - (483, 777, 'attending', '2021-04-29 02:14:18', '2025-12-17 19:47:46', 'NmLpqJam', '3746248'), - (483, 781, 'attending', '2021-04-29 02:16:18', '2025-12-17 19:47:46', 'NmLpqJam', '3760130'), - (483, 788, 'attending', '2021-05-07 22:17:10', '2025-12-17 19:47:46', 'NmLpqJam', '3781975'), - (483, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLpqJam', '3793156'), - (483, 815, 'attending', '2021-05-16 12:03:45', '2025-12-17 19:47:47', 'NmLpqJam', '3818136'), - (483, 816, 'attending', '2021-05-19 22:02:17', '2025-12-17 19:47:46', 'NmLpqJam', '3826524'), - (483, 823, 'attending', '2021-06-18 18:30:10', '2025-12-17 19:47:48', 'NmLpqJam', '3974109'), - (483, 824, 'attending', '2021-05-30 02:42:50', '2025-12-17 19:47:47', 'NmLpqJam', '3974112'), - (483, 825, 'attending', '2021-06-03 21:44:43', '2025-12-17 19:47:47', 'NmLpqJam', '3975283'), - (483, 827, 'attending', '2021-06-04 20:40:58', '2025-12-17 19:47:47', 'NmLpqJam', '3975311'), - (483, 828, 'attending', '2021-06-12 17:55:22', '2025-12-17 19:47:47', 'NmLpqJam', '3975312'), - (483, 837, 'attending', '2021-06-04 01:58:25', '2025-12-17 19:47:48', 'NmLpqJam', '3992545'), - (483, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLpqJam', '3994992'), - (483, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLpqJam', '4014338'), - (483, 846, 'not_attending', '2021-07-07 21:36:16', '2025-12-17 19:47:39', 'NmLpqJam', '4015718'), - (483, 857, 'not_attending', '2021-11-24 02:32:51', '2025-12-17 19:47:37', 'NmLpqJam', '4015731'), - (483, 867, 'attending', '2021-06-25 18:08:34', '2025-12-17 19:47:38', 'NmLpqJam', '4021848'), - (483, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLpqJam', '4136744'), - (483, 870, 'attending', '2021-06-30 11:42:51', '2025-12-17 19:47:39', 'NmLpqJam', '4136937'), - (483, 871, 'attending', '2021-07-10 15:05:08', '2025-12-17 19:47:39', 'NmLpqJam', '4136938'), - (483, 872, 'not_attending', '2021-07-22 01:31:30', '2025-12-17 19:47:40', 'NmLpqJam', '4136947'), - (483, 874, 'attending', '2021-06-23 19:58:55', '2025-12-17 19:47:38', 'NmLpqJam', '4139815'), - (483, 876, 'attending', '2021-06-18 18:29:16', '2025-12-17 19:47:38', 'NmLpqJam', '4139926'), - (483, 884, 'attending', '2021-07-17 12:16:47', '2025-12-17 19:47:42', 'NmLpqJam', '4210314'), - (483, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLpqJam', '4225444'), - (483, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLpqJam', '4239259'), - (483, 900, 'attending', '2021-07-22 01:31:43', '2025-12-17 19:47:40', 'NmLpqJam', '4240316'), - (483, 901, 'attending', '2021-07-30 12:16:19', '2025-12-17 19:47:40', 'NmLpqJam', '4240317'), - (483, 902, 'attending', '2021-08-06 16:59:57', '2025-12-17 19:47:41', 'NmLpqJam', '4240318'), - (483, 903, 'attending', '2021-08-11 21:47:32', '2025-12-17 19:47:42', 'NmLpqJam', '4240320'), - (483, 905, 'attending', '2021-07-07 21:36:07', '2025-12-17 19:47:39', 'NmLpqJam', '4250163'), - (483, 911, 'attending', '2021-07-09 12:37:35', '2025-12-17 19:47:39', 'NmLpqJam', '4264465'), - (483, 919, 'attending', '2021-07-16 17:33:20', '2025-12-17 19:47:39', 'NmLpqJam', '4275957'), - (483, 920, 'not_attending', '2021-07-25 12:57:59', '2025-12-17 19:47:40', 'NmLpqJam', '4277819'), - (483, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'NmLpqJam', '4301723'), - (483, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmLpqJam', '4302093'), - (483, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLpqJam', '4304151'), - (483, 940, 'not_attending', '2021-07-30 12:13:39', '2025-12-17 19:47:40', 'NmLpqJam', '4309049'), - (483, 946, 'attending', '2021-07-28 21:55:00', '2025-12-17 19:47:40', 'NmLpqJam', '4314835'), - (483, 952, 'not_attending', '2021-08-05 21:45:08', '2025-12-17 19:47:41', 'NmLpqJam', '4318286'), - (483, 955, 'attending', '2021-08-03 01:36:31', '2025-12-17 19:47:41', 'NmLpqJam', '4331588'), - (483, 960, 'attending', '2021-08-08 14:52:12', '2025-12-17 19:47:41', 'NmLpqJam', '4344519'), - (483, 961, 'attending', '2021-08-08 14:51:49', '2025-12-17 19:47:41', 'NmLpqJam', '4345519'), - (483, 963, 'attending', '2021-08-15 21:30:26', '2025-12-17 19:47:42', 'NmLpqJam', '4353159'), - (483, 964, 'attending', '2021-08-19 21:46:43', '2025-12-17 19:47:42', 'NmLpqJam', '4353160'), - (483, 970, 'attending', '2021-08-12 01:29:44', '2025-12-17 19:47:42', 'NmLpqJam', '4356798'), - (483, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLpqJam', '4356801'), - (483, 972, 'attending', '2021-08-20 17:50:24', '2025-12-17 19:47:42', 'NmLpqJam', '4358025'), - (483, 973, 'attending', '2021-08-15 21:28:11', '2025-12-17 19:47:42', 'NmLpqJam', '4366186'), - (483, 974, 'attending', '2021-08-15 21:28:39', '2025-12-17 19:47:42', 'NmLpqJam', '4366187'), - (483, 988, 'attending', '2021-08-24 02:56:10', '2025-12-17 19:47:42', 'NmLpqJam', '4402823'), - (483, 990, 'attending', '2021-09-03 21:19:02', '2025-12-17 19:47:43', 'NmLpqJam', '4420735'), - (483, 991, 'attending', '2021-09-08 21:36:22', '2025-12-17 19:47:43', 'NmLpqJam', '4420738'), - (483, 992, 'attending', '2021-09-18 13:14:25', '2025-12-17 19:47:33', 'NmLpqJam', '4420739'), - (483, 993, 'attending', '2021-09-24 13:03:55', '2025-12-17 19:47:34', 'NmLpqJam', '4420741'), - (483, 994, 'attending', '2021-10-02 12:59:57', '2025-12-17 19:47:34', 'NmLpqJam', '4420742'), - (483, 995, 'attending', '2021-10-08 23:57:17', '2025-12-17 19:47:34', 'NmLpqJam', '4420744'), - (483, 996, 'attending', '2021-10-16 18:54:41', '2025-12-17 19:47:35', 'NmLpqJam', '4420747'), - (483, 997, 'attending', '2021-10-23 19:57:19', '2025-12-17 19:47:35', 'NmLpqJam', '4420748'), - (483, 998, 'attending', '2021-10-29 12:06:50', '2025-12-17 19:47:36', 'NmLpqJam', '4420749'), - (483, 999, 'attending', '2021-08-29 15:05:16', '2025-12-17 19:47:43', 'NmLpqJam', '4421150'), - (483, 1018, 'attending', '2021-09-05 17:14:31', '2025-12-17 19:47:43', 'NmLpqJam', '4448883'), - (483, 1019, 'attending', '2021-09-06 02:44:37', '2025-12-17 19:47:43', 'NmLpqJam', '4450515'), - (483, 1020, 'attending', '2021-09-06 15:35:25', '2025-12-17 19:47:43', 'NmLpqJam', '4451787'), - (483, 1021, 'attending', '2021-09-06 15:26:55', '2025-12-17 19:47:34', 'NmLpqJam', '4451803'), - (483, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'NmLpqJam', '4461883'), - (483, 1033, 'attending', '2021-09-18 13:14:21', '2025-12-17 19:47:43', 'NmLpqJam', '4486006'), - (483, 1037, 'attending', '2021-09-18 18:49:03', '2025-12-17 19:47:34', 'NmLpqJam', '4493233'), - (483, 1038, 'attending', '2021-09-24 13:03:53', '2025-12-17 19:47:34', 'NmLpqJam', '4496603'), - (483, 1039, 'attending', '2021-10-02 13:00:28', '2025-12-17 19:47:34', 'NmLpqJam', '4496604'), - (483, 1041, 'attending', '2021-12-04 19:37:38', '2025-12-17 19:47:37', 'NmLpqJam', '4496606'), - (483, 1042, 'not_attending', '2021-11-24 02:32:19', '2025-12-17 19:47:37', 'NmLpqJam', '4496607'), - (483, 1043, 'attending', '2021-10-23 19:57:16', '2025-12-17 19:47:35', 'NmLpqJam', '4496608'), - (483, 1045, 'attending', '2021-10-29 12:06:44', '2025-12-17 19:47:36', 'NmLpqJam', '4496610'), - (483, 1046, 'attending', '2021-10-16 18:54:39', '2025-12-17 19:47:35', 'NmLpqJam', '4496611'), - (483, 1047, 'attending', '2021-10-08 23:57:15', '2025-12-17 19:47:34', 'NmLpqJam', '4496612'), - (483, 1048, 'attending', '2021-11-12 01:39:15', '2025-12-17 19:47:36', 'NmLpqJam', '4496613'), - (483, 1049, 'attending', '2022-01-22 19:39:49', '2025-12-17 19:47:32', 'NmLpqJam', '4496614'), - (483, 1050, 'attending', '2022-01-29 19:05:19', '2025-12-17 19:47:32', 'NmLpqJam', '4496615'), - (483, 1051, 'attending', '2022-02-05 18:13:47', '2025-12-17 19:47:32', 'NmLpqJam', '4496616'), - (483, 1052, 'attending', '2022-01-14 04:26:15', '2025-12-17 19:47:31', 'NmLpqJam', '4496617'), - (483, 1053, 'attending', '2022-02-19 19:50:22', '2025-12-17 19:47:32', 'NmLpqJam', '4496618'), - (483, 1054, 'attending', '2022-03-13 22:57:00', '2025-12-17 19:47:25', 'NmLpqJam', '4496619'), - (483, 1055, 'attending', '2021-12-18 18:12:41', '2025-12-17 19:47:31', 'NmLpqJam', '4496621'), - (483, 1056, 'attending', '2022-01-05 22:31:01', '2025-12-17 19:47:31', 'NmLpqJam', '4496622'), - (483, 1057, 'attending', '2021-11-20 17:04:59', '2025-12-17 19:47:37', 'NmLpqJam', '4496624'), - (483, 1058, 'attending', '2022-02-23 12:58:53', '2025-12-17 19:47:33', 'NmLpqJam', '4496625'), - (483, 1059, 'attending', '2022-03-12 22:23:30', '2025-12-17 19:47:33', 'NmLpqJam', '4496626'), - (483, 1060, 'attending', '2022-03-26 20:15:41', '2025-12-17 19:47:25', 'NmLpqJam', '4496627'), - (483, 1061, 'attending', '2022-02-11 16:47:39', '2025-12-17 19:47:32', 'NmLpqJam', '4496628'), - (483, 1062, 'attending', '2022-03-04 02:08:52', '2025-12-17 19:47:33', 'NmLpqJam', '4496629'), - (483, 1063, 'attending', '2021-09-20 16:50:24', '2025-12-17 19:47:34', 'NmLpqJam', '4496630'), - (483, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLpqJam', '4508342'), - (483, 1068, 'attending', '2021-09-24 20:50:41', '2025-12-17 19:47:34', 'NmLpqJam', '4511471'), - (483, 1078, 'attending', '2021-10-04 21:48:11', '2025-12-17 19:47:34', 'NmLpqJam', '4541281'), - (483, 1082, 'attending', '2021-10-11 22:45:13', '2025-12-17 19:47:35', 'NmLpqJam', '4566762'), - (483, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLpqJam', '4568602'), - (483, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLpqJam', '4572153'), - (483, 1092, 'attending', '2021-10-19 21:30:44', '2025-12-17 19:47:35', 'NmLpqJam', '4582837'), - (483, 1093, 'not_attending', '2021-10-22 13:10:46', '2025-12-17 19:47:35', 'NmLpqJam', '4585962'), - (483, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'NmLpqJam', '4596356'), - (483, 1096, 'attending', '2021-10-27 01:01:54', '2025-12-17 19:47:36', 'NmLpqJam', '4596453'), - (483, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLpqJam', '4598860'), - (483, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLpqJam', '4598861'), - (483, 1099, 'attending', '2021-11-02 18:03:11', '2025-12-17 19:47:36', 'NmLpqJam', '4602797'), - (483, 1104, 'attending', '2021-11-12 01:39:30', '2025-12-17 19:47:36', 'NmLpqJam', '4618310'), - (483, 1106, 'attending', '2021-11-09 03:27:12', '2025-12-17 19:47:36', 'NmLpqJam', '4620452'), - (483, 1114, 'attending', '2021-11-12 01:36:50', '2025-12-17 19:47:36', 'NmLpqJam', '4637896'), - (483, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLpqJam', '4642994'), - (483, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmLpqJam', '4642995'), - (483, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLpqJam', '4642996'), - (483, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLpqJam', '4642997'), - (483, 1126, 'attending', '2021-12-12 00:00:40', '2025-12-17 19:47:38', 'NmLpqJam', '4645687'), - (483, 1127, 'attending', '2021-12-11 20:40:23', '2025-12-17 19:47:38', 'NmLpqJam', '4645698'), - (483, 1128, 'attending', '2021-11-20 17:04:51', '2025-12-17 19:47:37', 'NmLpqJam', '4645704'), - (483, 1129, 'not_attending', '2021-11-24 02:32:25', '2025-12-17 19:47:37', 'NmLpqJam', '4645705'), - (483, 1130, 'attending', '2021-12-04 19:37:47', '2025-12-17 19:47:37', 'NmLpqJam', '4658824'), - (483, 1131, 'attending', '2021-12-18 18:12:44', '2025-12-17 19:47:31', 'NmLpqJam', '4658825'), - (483, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLpqJam', '4668385'), - (483, 1139, 'attending', '2021-11-29 00:05:16', '2025-12-17 19:47:37', 'NmLpqJam', '4675604'), - (483, 1145, 'attending', '2021-12-06 22:38:00', '2025-12-17 19:47:38', 'NmLpqJam', '4691157'), - (483, 1146, 'attending', '2021-12-07 00:03:22', '2025-12-17 19:47:38', 'NmLpqJam', '4692841'), - (483, 1147, 'attending', '2021-12-07 00:03:26', '2025-12-17 19:47:38', 'NmLpqJam', '4692842'), - (483, 1148, 'attending', '2021-12-07 00:03:28', '2025-12-17 19:47:31', 'NmLpqJam', '4692843'), - (483, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLpqJam', '4694407'), - (483, 1155, 'attending', '2021-12-18 16:56:57', '2025-12-17 19:47:31', 'NmLpqJam', '4715119'), - (483, 1163, 'attending', '2021-12-27 22:33:45', '2025-12-17 19:47:31', 'NmLpqJam', '4724206'), - (483, 1164, 'attending', '2021-12-27 23:04:54', '2025-12-17 19:47:31', 'NmLpqJam', '4724208'), - (483, 1165, 'not_attending', '2022-01-04 02:25:11', '2025-12-17 19:47:31', 'NmLpqJam', '4724210'), - (483, 1173, 'attending', '2022-01-05 22:31:04', '2025-12-17 19:47:31', 'NmLpqJam', '4736495'), - (483, 1174, 'attending', '2022-01-14 04:26:17', '2025-12-17 19:47:31', 'NmLpqJam', '4736496'), - (483, 1175, 'attending', '2022-01-22 19:39:53', '2025-12-17 19:47:32', 'NmLpqJam', '4736497'), - (483, 1176, 'attending', '2022-02-05 18:13:40', '2025-12-17 19:47:32', 'NmLpqJam', '4736498'), - (483, 1177, 'attending', '2022-02-11 16:47:42', '2025-12-17 19:47:32', 'NmLpqJam', '4736499'), - (483, 1178, 'attending', '2022-01-29 19:05:20', '2025-12-17 19:47:32', 'NmLpqJam', '4736500'), - (483, 1179, 'attending', '2022-02-19 19:50:25', '2025-12-17 19:47:32', 'NmLpqJam', '4736501'), - (483, 1180, 'attending', '2022-02-23 12:58:50', '2025-12-17 19:47:33', 'NmLpqJam', '4736502'), - (483, 1181, 'attending', '2022-03-04 02:08:54', '2025-12-17 19:47:33', 'NmLpqJam', '4736503'), - (483, 1182, 'attending', '2022-03-12 22:23:22', '2025-12-17 19:47:33', 'NmLpqJam', '4736504'), - (483, 1183, 'attending', '2022-01-05 23:38:27', '2025-12-17 19:47:31', 'NmLpqJam', '4742171'), - (483, 1185, 'not_attending', '2022-01-14 04:25:55', '2025-12-17 19:47:31', 'NmLpqJam', '4746789'), - (483, 1188, 'attending', '2022-01-11 22:42:26', '2025-12-17 19:47:31', 'NmLpqJam', '4753929'), - (483, 1190, 'attending', '2022-01-11 22:52:12', '2025-12-17 19:47:31', 'NmLpqJam', '4757377'), - (483, 1201, 'attending', '2022-01-17 22:38:02', '2025-12-17 19:47:32', 'NmLpqJam', '4766841'), - (483, 1202, 'attending', '2022-01-21 13:00:43', '2025-12-17 19:47:32', 'NmLpqJam', '4769423'), - (483, 1211, 'attending', '2022-01-24 23:25:58', '2025-12-17 19:47:32', 'NmLpqJam', '4780754'), - (483, 1212, 'attending', '2022-01-24 23:26:16', '2025-12-17 19:47:32', 'NmLpqJam', '4780759'), - (483, 1213, 'not_attending', '2022-02-08 23:23:36', '2025-12-17 19:47:32', 'NmLpqJam', '4780760'), - (483, 1214, 'attending', '2022-01-24 23:31:43', '2025-12-17 19:47:32', 'NmLpqJam', '4780761'), - (483, 1215, 'attending', '2022-01-24 23:31:45', '2025-12-17 19:47:33', 'NmLpqJam', '4780763'), - (483, 1217, 'not_attending', '2022-01-30 18:52:26', '2025-12-17 19:47:32', 'NmLpqJam', '4781139'), - (483, 1228, 'attending', '2022-02-05 18:16:36', '2025-12-17 19:47:32', 'NmLpqJam', '5028238'), - (483, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmLpqJam', '5038850'), - (483, 1234, 'attending', '2022-02-11 00:34:24', '2025-12-17 19:47:32', 'NmLpqJam', '5042197'), - (483, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmLpqJam', '5045826'), - (483, 1243, 'attending', '2022-02-23 13:13:14', '2025-12-17 19:47:33', 'NmLpqJam', '5058336'), - (483, 1245, 'attending', '2022-02-22 00:07:04', '2025-12-17 19:47:33', 'NmLpqJam', '5061301'), - (483, 1246, 'attending', '2022-02-23 12:49:44', '2025-12-17 19:47:33', 'NmLpqJam', '5064727'), - (483, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLpqJam', '5132533'), - (483, 1261, 'attending', '2022-03-03 23:10:36', '2025-12-17 19:47:33', 'NmLpqJam', '5154274'), - (483, 1267, 'attending', '2022-03-09 21:33:41', '2025-12-17 19:47:25', 'NmLpqJam', '5169578'), - (483, 1270, 'maybe', '2022-03-20 15:23:54', '2025-12-17 19:47:25', 'NmLpqJam', '5181277'), - (483, 1272, 'attending', '2022-03-19 20:15:21', '2025-12-17 19:47:25', 'NmLpqJam', '5186582'), - (483, 1273, 'attending', '2022-03-26 20:15:43', '2025-12-17 19:47:25', 'NmLpqJam', '5186583'), - (483, 1274, 'attending', '2022-04-02 13:09:53', '2025-12-17 19:47:26', 'NmLpqJam', '5186585'), - (483, 1275, 'attending', '2022-04-02 13:09:50', '2025-12-17 19:47:26', 'NmLpqJam', '5186587'), - (483, 1281, 'not_attending', '2022-04-05 23:18:44', '2025-12-17 19:47:27', 'NmLpqJam', '5190437'), - (483, 1284, 'not_attending', '2022-04-16 17:43:18', '2025-12-17 19:47:27', 'NmLpqJam', '5195095'), - (483, 1285, 'attending', '2022-03-21 14:38:51', '2025-12-17 19:47:25', 'NmLpqJam', '5196763'), - (483, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmLpqJam', '5215989'), - (483, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLpqJam', '5223686'), - (483, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLpqJam', '5227432'), - (483, 1313, 'not_attending', '2022-04-08 03:23:46', '2025-12-17 19:47:27', 'NmLpqJam', '5231461'), - (483, 1330, 'attending', '2022-04-12 23:39:19', '2025-12-17 19:47:27', 'NmLpqJam', '5242155'), - (483, 1331, 'attending', '2022-04-12 23:42:58', '2025-12-17 19:47:27', 'NmLpqJam', '5242156'), - (483, 1344, 'attending', '2022-04-29 15:29:36', '2025-12-17 19:47:28', 'NmLpqJam', '5247465'), - (483, 1345, 'attending', '2022-04-21 18:02:41', '2025-12-17 19:47:27', 'NmLpqJam', '5247466'), - (483, 1346, 'attending', '2022-04-21 18:02:39', '2025-12-17 19:47:27', 'NmLpqJam', '5247467'), - (483, 1362, 'attending', '2022-04-29 15:29:38', '2025-12-17 19:47:28', 'NmLpqJam', '5260800'), - (483, 1372, 'not_attending', '2022-05-04 22:37:10', '2025-12-17 19:47:28', 'NmLpqJam', '5264352'), - (483, 1374, 'attending', '2022-05-07 18:16:42', '2025-12-17 19:47:28', 'NmLpqJam', '5269930'), - (483, 1378, 'attending', '2022-05-14 17:57:35', '2025-12-17 19:47:29', 'NmLpqJam', '5271448'), - (483, 1379, 'attending', '2022-05-17 00:00:19', '2025-12-17 19:47:29', 'NmLpqJam', '5271449'), - (483, 1382, 'attending', '2022-05-03 22:44:13', '2025-12-17 19:47:28', 'NmLpqJam', '5276350'), - (483, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmLpqJam', '5276469'), - (483, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmLpqJam', '5278159'), - (483, 1395, 'attending', '2022-05-07 18:16:50', '2025-12-17 19:47:28', 'NmLpqJam', '5281102'), - (483, 1396, 'attending', '2022-05-14 17:57:31', '2025-12-17 19:47:28', 'NmLpqJam', '5281103'), - (483, 1397, 'attending', '2022-05-17 00:00:23', '2025-12-17 19:47:29', 'NmLpqJam', '5281104'), - (483, 1407, 'attending', '2022-06-04 02:22:41', '2025-12-17 19:47:30', 'NmLpqJam', '5363695'), - (483, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLpqJam', '5365960'), - (483, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmLpqJam', '5368973'), - (483, 1419, 'attending', '2022-06-08 22:28:20', '2025-12-17 19:47:30', 'NmLpqJam', '5373081'), - (483, 1427, 'attending', '2022-05-25 21:06:01', '2025-12-17 19:47:30', 'NmLpqJam', '5376074'), - (483, 1428, 'attending', '2022-06-09 22:20:08', '2025-12-17 19:47:30', 'NmLpqJam', '5378247'), - (483, 1431, 'attending', '2022-06-06 01:01:31', '2025-12-17 19:47:30', 'NmLpqJam', '5389605'), - (483, 1436, 'attending', '2022-06-01 02:43:53', '2025-12-17 19:47:30', 'NmLpqJam', '5394292'), - (483, 1442, 'attending', '2022-06-14 00:38:16', '2025-12-17 19:47:17', 'NmLpqJam', '5397265'), - (483, 1443, 'attending', '2022-06-04 02:22:39', '2025-12-17 19:47:30', 'NmLpqJam', '5397613'), - (483, 1444, 'attending', '2022-06-06 01:01:28', '2025-12-17 19:47:30', 'NmLpqJam', '5397614'), - (483, 1445, 'attending', '2022-06-14 00:38:14', '2025-12-17 19:47:17', 'NmLpqJam', '5397615'), - (483, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmLpqJam', '5403967'), - (483, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLpqJam', '5404786'), - (483, 1460, 'attending', '2022-06-10 12:05:41', '2025-12-17 19:47:31', 'NmLpqJam', '5404817'), - (483, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmLpqJam', '5405203'), - (483, 1477, 'attending', '2022-06-15 00:49:10', '2025-12-17 19:47:17', 'NmLpqJam', '5408766'), - (483, 1478, 'attending', '2022-06-15 01:08:31', '2025-12-17 19:47:17', 'NmLpqJam', '5408794'), - (483, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLpqJam', '5411699'), - (483, 1482, 'attending', '2022-06-21 22:19:41', '2025-12-17 19:47:19', 'NmLpqJam', '5412550'), - (483, 1483, 'attending', '2022-06-21 22:21:36', '2025-12-17 19:47:17', 'NmLpqJam', '5414556'), - (483, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmLpqJam', '5415046'), - (483, 1493, 'attending', '2022-06-25 17:34:00', '2025-12-17 19:47:19', 'NmLpqJam', '5420218'), - (483, 1495, 'attending', '2022-06-26 13:54:05', '2025-12-17 19:47:19', 'NmLpqJam', '5422086'), - (483, 1496, 'attending', '2022-06-26 13:58:40', '2025-12-17 19:47:19', 'NmLpqJam', '5422404'), - (483, 1497, 'attending', '2022-06-26 14:13:26', '2025-12-17 19:47:19', 'NmLpqJam', '5422405'), - (483, 1498, 'attending', '2022-06-26 14:16:11', '2025-12-17 19:47:19', 'NmLpqJam', '5422406'), - (483, 1499, 'attending', '2022-06-26 14:21:05', '2025-12-17 19:47:19', 'NmLpqJam', '5422407'), - (483, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLpqJam', '5424565'), - (483, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLpqJam', '5426882'), - (483, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmLpqJam', '5427083'), - (483, 1508, 'maybe', '2022-07-13 21:35:41', '2025-12-17 19:47:19', 'NmLpqJam', '5433453'), - (483, 1511, 'attending', '2022-07-08 01:15:49', '2025-12-17 19:47:19', 'NmLpqJam', '5437733'), - (483, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLpqJam', '5441125'), - (483, 1514, 'attending', '2022-07-19 22:52:15', '2025-12-17 19:47:20', 'NmLpqJam', '5441126'), - (483, 1515, 'attending', '2022-08-05 01:58:39', '2025-12-17 19:47:21', 'NmLpqJam', '5441128'), - (483, 1516, 'attending', '2022-08-17 22:54:13', '2025-12-17 19:47:23', 'NmLpqJam', '5441129'), - (483, 1517, 'attending', '2022-08-25 20:24:54', '2025-12-17 19:47:23', 'NmLpqJam', '5441130'), - (483, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'NmLpqJam', '5441131'), - (483, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLpqJam', '5441132'), - (483, 1524, 'attending', '2022-07-11 15:38:02', '2025-12-17 19:47:19', 'NmLpqJam', '5443300'), - (483, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLpqJam', '5446643'), - (483, 1532, 'attending', '2022-07-19 22:52:19', '2025-12-17 19:47:20', 'NmLpqJam', '5448757'), - (483, 1533, 'attending', '2022-07-19 22:52:17', '2025-12-17 19:47:21', 'NmLpqJam', '5448758'), - (483, 1534, 'attending', '2022-08-05 01:58:42', '2025-12-17 19:47:21', 'NmLpqJam', '5448759'), - (483, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLpqJam', '5453325'), - (483, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLpqJam', '5454516'), - (483, 1544, 'attending', '2022-09-17 20:44:16', '2025-12-17 19:47:11', 'NmLpqJam', '5454517'), - (483, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLpqJam', '5454605'), - (483, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLpqJam', '5455037'), - (483, 1553, 'attending', '2022-07-19 23:01:45', '2025-12-17 19:47:20', 'NmLpqJam', '5455164'), - (483, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLpqJam', '5461278'), - (483, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLpqJam', '5469480'), - (483, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLpqJam', '5471073'), - (483, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'NmLpqJam', '5474663'), - (483, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLpqJam', '5482022'), - (483, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLpqJam', '5482793'), - (483, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLpqJam', '5488912'), - (483, 1582, 'attending', '2022-08-07 21:12:22', '2025-12-17 19:47:23', 'NmLpqJam', '5492001'), - (483, 1583, 'attending', '2022-08-07 21:12:14', '2025-12-17 19:47:22', 'NmLpqJam', '5492002'), - (483, 1584, 'attending', '2022-08-07 21:12:20', '2025-12-17 19:47:23', 'NmLpqJam', '5492004'), - (483, 1585, 'attending', '2022-08-07 21:15:41', '2025-12-17 19:47:22', 'NmLpqJam', '5492013'), - (483, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLpqJam', '5492192'), - (483, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLpqJam', '5493139'), - (483, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLpqJam', '5493200'), - (483, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLpqJam', '5502188'), - (483, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLpqJam', '5505059'), - (483, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'NmLpqJam', '5509055'), - (483, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLpqJam', '5512862'), - (483, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLpqJam', '5513985'), - (483, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'NmLpqJam', '5519981'), - (483, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLpqJam', '5522550'), - (483, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLpqJam', '5534683'), - (483, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLpqJam', '5537735'), - (483, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLpqJam', '5540859'), - (483, 1641, 'attending', '2022-08-31 21:36:53', '2025-12-17 19:47:24', 'NmLpqJam', '5544226'), - (483, 1642, 'attending', '2022-08-31 21:36:51', '2025-12-17 19:47:24', 'NmLpqJam', '5544227'), - (483, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLpqJam', '5546619'), - (483, 1649, 'attending', '2022-09-03 15:16:42', '2025-12-17 19:47:24', 'NmLpqJam', '5549346'), - (483, 1652, 'attending', '2022-09-10 18:35:04', '2025-12-17 19:47:24', 'NmLpqJam', '5552671'), - (483, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLpqJam', '5555245'), - (483, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLpqJam', '5557747'), - (483, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLpqJam', '5560255'), - (483, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLpqJam', '5562906'), - (483, 1667, 'attending', '2022-09-24 21:51:56', '2025-12-17 19:47:11', 'NmLpqJam', '5563221'), - (483, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLpqJam', '5600604'), - (483, 1682, 'attending', '2022-09-24 21:51:51', '2025-12-17 19:47:11', 'NmLpqJam', '5605317'), - (483, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLpqJam', '5605544'), - (483, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'NmLpqJam', '5606737'), - (483, 1711, 'attending', '2022-10-02 19:06:27', '2025-12-17 19:47:12', 'NmLpqJam', '5621883'), - (483, 1712, 'attending', '2022-10-02 19:06:31', '2025-12-17 19:47:12', 'NmLpqJam', '5622073'), - (483, 1713, 'attending', '2022-10-02 19:06:33', '2025-12-17 19:47:13', 'NmLpqJam', '5622108'), - (483, 1714, 'attending', '2022-10-02 23:03:14', '2025-12-17 19:47:14', 'NmLpqJam', '5622347'), - (483, 1716, 'attending', '2022-10-02 23:03:01', '2025-12-17 19:47:12', 'NmLpqJam', '5622429'), - (483, 1719, 'attending', '2022-10-05 22:07:53', '2025-12-17 19:47:12', 'NmLpqJam', '5630958'), - (483, 1720, 'attending', '2022-10-13 22:21:02', '2025-12-17 19:47:12', 'NmLpqJam', '5630959'), - (483, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLpqJam', '5630960'), - (483, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLpqJam', '5630961'), - (483, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLpqJam', '5630962'), - (483, 1724, 'maybe', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLpqJam', '5630966'), - (483, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLpqJam', '5630967'), - (483, 1726, 'not_attending', '2022-11-14 21:35:03', '2025-12-17 19:47:16', 'NmLpqJam', '5630968'), - (483, 1727, 'attending', '2022-12-03 21:13:10', '2025-12-17 19:47:16', 'NmLpqJam', '5630969'), - (483, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLpqJam', '5635406'), - (483, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLpqJam', '5638765'), - (483, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLpqJam', '5640097'), - (483, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLpqJam', '5640843'), - (483, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLpqJam', '5641521'), - (483, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLpqJam', '5642818'), - (483, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLpqJam', '5652395'), - (483, 1753, 'attending', '2022-10-18 23:08:03', '2025-12-17 19:47:13', 'NmLpqJam', '5656228'), - (483, 1759, 'attending', '2022-10-22 16:36:59', '2025-12-17 19:47:13', 'NmLpqJam', '5669097'), - (483, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLpqJam', '5670445'), - (483, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLpqJam', '5671637'), - (483, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLpqJam', '5672329'), - (483, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLpqJam', '5674057'), - (483, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLpqJam', '5674060'), - (483, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLpqJam', '5677461'), - (483, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLpqJam', '5698046'), - (483, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLpqJam', '5699760'), - (483, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLpqJam', '5741601'), - (483, 1796, 'attending', '2022-11-17 22:07:09', '2025-12-17 19:47:16', 'NmLpqJam', '5756755'), - (483, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLpqJam', '5763458'), - (483, 1800, 'attending', '2022-11-19 23:59:07', '2025-12-17 19:47:16', 'NmLpqJam', '5764667'), - (483, 1801, 'attending', '2022-12-03 21:13:12', '2025-12-17 19:47:16', 'NmLpqJam', '5764668'), - (483, 1805, 'attending', '2023-02-03 19:17:14', '2025-12-17 19:47:06', 'NmLpqJam', '5764675'), - (483, 1806, 'attending', '2023-01-20 14:16:49', '2025-12-17 19:47:05', 'NmLpqJam', '5764676'), - (483, 1807, 'attending', '2023-01-12 22:03:49', '2025-12-17 19:47:05', 'NmLpqJam', '5764677'), - (483, 1808, 'attending', '2023-03-02 14:20:48', '2025-12-17 19:47:08', 'NmLpqJam', '5764678'), - (483, 1809, 'attending', '2023-04-13 21:58:59', '2025-12-17 19:46:59', 'NmLpqJam', '5764679'), - (483, 1811, 'attending', '2023-05-06 14:46:06', '2025-12-17 19:47:02', 'NmLpqJam', '5764681'), - (483, 1812, 'attending', '2023-03-09 23:40:35', '2025-12-17 19:47:09', 'NmLpqJam', '5764682'), - (483, 1814, 'attending', '2023-02-24 19:37:44', '2025-12-17 19:47:08', 'NmLpqJam', '5764684'), - (483, 1816, 'attending', '2023-05-20 02:25:00', '2025-12-17 19:47:03', 'NmLpqJam', '5764686'), - (483, 1818, 'attending', '2023-02-09 23:49:42', '2025-12-17 19:47:07', 'NmLpqJam', '5764688'), - (483, 1819, 'attending', '2023-03-31 22:56:18', '2025-12-17 19:46:58', 'NmLpqJam', '5764689'), - (483, 1820, 'attending', '2023-04-05 21:17:04', '2025-12-17 19:46:58', 'NmLpqJam', '5764690'), - (483, 1821, 'attending', '2023-03-18 13:25:39', '2025-12-17 19:46:56', 'NmLpqJam', '5764691'), - (483, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLpqJam', '5774172'), - (483, 1831, 'attending', '2022-12-02 03:15:06', '2025-12-17 19:47:16', 'NmLpqJam', '5813239'), - (483, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'NmLpqJam', '5818247'), - (483, 1834, 'attending', '2022-12-10 21:02:38', '2025-12-17 19:47:17', 'NmLpqJam', '5819470'), - (483, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLpqJam', '5819471'), - (483, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'NmLpqJam', '5827739'), - (483, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLpqJam', '5844306'), - (483, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLpqJam', '5850159'), - (483, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLpqJam', '5858999'), - (483, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLpqJam', '5871984'), - (483, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLpqJam', '5876354'), - (483, 1864, 'attending', '2023-01-20 14:16:45', '2025-12-17 19:47:05', 'NmLpqJam', '5879675'), - (483, 1865, 'attending', '2023-01-22 15:58:02', '2025-12-17 19:47:06', 'NmLpqJam', '5879676'), - (483, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLpqJam', '5880939'), - (483, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLpqJam', '5880940'), - (483, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLpqJam', '5880942'), - (483, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'NmLpqJam', '5880943'), - (483, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLpqJam', '5887890'), - (483, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLpqJam', '5888598'), - (483, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLpqJam', '5893260'), - (483, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLpqJam', '5899826'), - (483, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLpqJam', '5900199'), - (483, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLpqJam', '5900200'), - (483, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'NmLpqJam', '5900202'), - (483, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLpqJam', '5900203'), - (483, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLpqJam', '5901108'), - (483, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLpqJam', '5901126'), - (483, 1897, 'attending', '2023-02-09 23:49:40', '2025-12-17 19:47:07', 'NmLpqJam', '5901128'), - (483, 1902, 'attending', '2023-02-04 18:43:34', '2025-12-17 19:47:06', 'NmLpqJam', '5902254'), - (483, 1903, 'attending', '2023-02-02 02:02:19', '2025-12-17 19:47:06', 'NmLpqJam', '5902612'), - (483, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLpqJam', '5909655'), - (483, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLpqJam', '5910522'), - (483, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLpqJam', '5910526'), - (483, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLpqJam', '5910528'), - (483, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLpqJam', '5916219'), - (483, 1925, 'attending', '2023-02-17 21:03:04', '2025-12-17 19:47:08', 'NmLpqJam', '5932619'), - (483, 1926, 'attending', '2023-02-17 21:05:11', '2025-12-17 19:47:08', 'NmLpqJam', '5932620'), - (483, 1927, 'attending', '2023-02-18 00:54:04', '2025-12-17 19:47:10', 'NmLpqJam', '5932621'), - (483, 1928, 'attending', '2023-02-18 00:53:51', '2025-12-17 19:47:07', 'NmLpqJam', '5932627'), - (483, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'NmLpqJam', '5936234'), - (483, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLpqJam', '5958351'), - (483, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'NmLpqJam', '5959751'), - (483, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'NmLpqJam', '5959755'), - (483, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'NmLpqJam', '5960055'), - (483, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLpqJam', '5961684'), - (483, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'NmLpqJam', '5962132'), - (483, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'NmLpqJam', '5962133'), - (483, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLpqJam', '5962134'), - (483, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLpqJam', '5962317'), - (483, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLpqJam', '5962318'), - (483, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'NmLpqJam', '5965933'), - (483, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLpqJam', '5967014'), - (483, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'NmLpqJam', '5972763'), - (483, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLpqJam', '5972815'), - (483, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'NmLpqJam', '5974016'), - (483, 1964, 'attending', '2023-03-09 23:36:16', '2025-12-17 19:47:09', 'NmLpqJam', '5977129'), - (483, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLpqJam', '5981515'), - (483, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'NmLpqJam', '5993516'), - (483, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'NmLpqJam', '5998939'), - (483, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLpqJam', '6028191'), - (483, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'NmLpqJam', '6040066'), - (483, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'NmLpqJam', '6042717'), - (483, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLpqJam', '6044838'), - (483, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLpqJam', '6044839'), - (483, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLpqJam', '6045684'), - (483, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLpqJam', '6050104'), - (483, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLpqJam', '6053195'), - (483, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'NmLpqJam', '6053198'), - (483, 2008, 'maybe', '2023-04-07 22:00:31', '2025-12-17 19:46:58', 'NmLpqJam', '6055808'), - (483, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'NmLpqJam', '6056085'), - (483, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLpqJam', '6056916'), - (483, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLpqJam', '6059290'), - (483, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLpqJam', '6060328'), - (483, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLpqJam', '6061037'), - (483, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLpqJam', '6061039'), - (483, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'NmLpqJam', '6061099'), - (483, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLpqJam', '6067245'), - (483, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLpqJam', '6068094'), - (483, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'NmLpqJam', '6068252'), - (483, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'NmLpqJam', '6068253'), - (483, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'NmLpqJam', '6068254'), - (483, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'NmLpqJam', '6068280'), - (483, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLpqJam', '6069093'), - (483, 2035, 'attending', '2023-04-20 16:50:57', '2025-12-17 19:47:02', 'NmLpqJam', '6070142'), - (483, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'NmLpqJam', '6072528'), - (483, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'NmLpqJam', '6079840'), - (483, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLpqJam', '6083398'), - (483, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'NmLpqJam', '6093504'), - (483, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'NmLpqJam', '6097414'), - (483, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLpqJam', '6097442'), - (483, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLpqJam', '6097684'), - (483, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLpqJam', '6098762'), - (483, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLpqJam', '6101362'), - (483, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'NmLpqJam', '6103752'), - (483, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLpqJam', '6107314'), - (483, 2253, 'attending', '2023-09-30 15:10:15', '2025-12-17 19:46:45', 'NmLpqJam', '6401811'), - (483, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'NmLpqJam', '6440863'), - (483, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLpqJam', '6445440'), - (483, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLpqJam', '6453951'), - (483, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'NmLpqJam', '6461696'), - (483, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'NmLpqJam', '6462129'), - (483, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLpqJam', '6463218'), - (483, 2296, 'attending', '2023-10-13 16:06:01', '2025-12-17 19:46:47', 'NmLpqJam', '6468393'), - (483, 2299, 'not_attending', '2023-10-16 22:00:18', '2025-12-17 19:46:46', 'NmLpqJam', '6472181'), - (483, 2301, 'attending', '2023-10-16 13:29:36', '2025-12-17 19:46:46', 'NmLpqJam', '6474276'), - (483, 2303, 'not_attending', '2023-10-28 13:25:40', '2025-12-17 19:46:47', 'NmLpqJam', '6482691'), - (483, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'NmLpqJam', '6482693'), - (483, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'NmLpqJam', '6484200'), - (483, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'NmLpqJam', '6484680'), - (483, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'NmLpqJam', '6507741'), - (483, 2322, 'attending', '2023-11-17 20:44:45', '2025-12-17 19:46:48', 'NmLpqJam', '6514659'), - (483, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'NmLpqJam', '6514660'), - (483, 2324, 'attending', '2023-12-09 01:01:25', '2025-12-17 19:46:49', 'NmLpqJam', '6514662'), - (483, 2325, 'attending', '2023-12-14 14:42:02', '2025-12-17 19:46:36', 'NmLpqJam', '6514663'), - (483, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'NmLpqJam', '6519103'), - (483, 2337, 'attending', '2023-11-08 01:06:40', '2025-12-17 19:46:48', 'NmLpqJam', '6535681'), - (483, 2343, 'not_attending', '2023-11-15 22:54:47', '2025-12-17 19:46:48', 'NmLpqJam', '6574728'), - (483, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLpqJam', '6584747'), - (483, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLpqJam', '6587097'), - (483, 2362, 'attending', '2023-12-04 00:03:06', '2025-12-17 19:46:49', 'NmLpqJam', '6605708'), - (483, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLpqJam', '6609022'), - (483, 2373, 'attending', '2024-01-14 00:15:15', '2025-12-17 19:46:38', 'NmLpqJam', '6632678'), - (483, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'NmLpqJam', '6632757'), - (483, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLpqJam', '6644187'), - (483, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLpqJam', '6648951'), - (483, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'NmLpqJam', '6648952'), - (483, 2388, 'attending', '2024-01-07 00:16:08', '2025-12-17 19:46:37', 'NmLpqJam', '6649244'), - (483, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'NmLpqJam', '6655401'), - (483, 2399, 'attending', '2024-01-11 03:00:33', '2025-12-17 19:46:38', 'NmLpqJam', '6657583'), - (483, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'NmLpqJam', '6661585'), - (483, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'NmLpqJam', '6661588'), - (483, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'NmLpqJam', '6661589'), - (483, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLpqJam', '6699906'), - (483, 2408, 'attending', '2024-01-23 23:21:20', '2025-12-17 19:46:40', 'NmLpqJam', '6699907'), - (483, 2409, 'attending', '2024-02-02 15:20:41', '2025-12-17 19:46:41', 'NmLpqJam', '6699909'), - (483, 2410, 'attending', '2024-02-09 00:02:06', '2025-12-17 19:46:41', 'NmLpqJam', '6699911'), - (483, 2411, 'not_attending', '2024-02-09 00:02:49', '2025-12-17 19:46:42', 'NmLpqJam', '6699913'), - (483, 2414, 'attending', '2024-01-17 22:40:03', '2025-12-17 19:46:40', 'NmLpqJam', '6701000'), - (483, 2415, 'attending', '2024-01-17 22:40:10', '2025-12-17 19:46:40', 'NmLpqJam', '6701001'), - (483, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'NmLpqJam', '6701109'), - (483, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLpqJam', '6705219'), - (483, 2426, 'attending', '2024-01-19 20:03:59', '2025-12-17 19:46:40', 'NmLpqJam', '6705569'), - (483, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLpqJam', '6710153'), - (483, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLpqJam', '6711552'), - (483, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'NmLpqJam', '6711553'), - (483, 2431, 'attending', '2024-01-23 23:22:14', '2025-12-17 19:46:41', 'NmLpqJam', '6712394'), - (483, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'NmLpqJam', '6722688'), - (483, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'NmLpqJam', '6730620'), - (483, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'NmLpqJam', '6730642'), - (483, 2443, 'attending', '2024-02-03 18:31:38', '2025-12-17 19:46:41', 'NmLpqJam', '6733775'), - (483, 2450, 'not_attending', '2024-02-11 14:27:31', '2025-12-17 19:46:41', 'NmLpqJam', '6738807'), - (483, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'NmLpqJam', '6740364'), - (483, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'NmLpqJam', '6743829'), - (483, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'NmLpqJam', '7030380'), - (483, 2471, 'attending', '2024-02-21 02:12:11', '2025-12-17 19:46:42', 'NmLpqJam', '7032425'), - (483, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'NmLpqJam', '7033677'), - (483, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'NmLpqJam', '7035415'), - (483, 2477, 'attending', '2024-02-21 02:06:12', '2025-12-17 19:46:42', 'NmLpqJam', '7035692'), - (483, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'NmLpqJam', '7044715'), - (483, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'NmLpqJam', '7050318'), - (483, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'NmLpqJam', '7050319'), - (483, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'NmLpqJam', '7050322'), - (483, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'NmLpqJam', '7057804'), - (483, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'NmLpqJam', '7072824'), - (483, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'NmLpqJam', '7074348'), - (483, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'NmLpqJam', '7074364'), - (483, 2537, 'attending', '2024-03-23 00:03:52', '2025-12-17 19:46:33', 'NmLpqJam', '7085484'), - (483, 2539, 'not_attending', '2024-04-06 21:38:18', '2025-12-17 19:46:33', 'NmLpqJam', '7085486'), - (483, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'NmLpqJam', '7089267'), - (483, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'NmLpqJam', '7098747'), - (483, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'NmLpqJam', '7113468'), - (483, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'NmLpqJam', '7114856'), - (483, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'NmLpqJam', '7114951'), - (483, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'NmLpqJam', '7114955'), - (483, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'NmLpqJam', '7114956'), - (483, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'NmLpqJam', '7114957'), - (483, 2563, 'attending', '2024-04-11 19:35:55', '2025-12-17 19:46:33', 'NmLpqJam', '7134734'), - (483, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'NmLpqJam', '7153615'), - (483, 2569, 'attending', '2024-04-07 17:43:23', '2025-12-17 19:46:33', 'NmLpqJam', '7154056'), - (483, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'NmLpqJam', '7159484'), - (483, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'NmLpqJam', '7178446'), - (483, 2595, 'attending', '2024-04-19 22:59:01', '2025-12-17 19:46:34', 'NmLpqJam', '7182252'), - (483, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'NmLpqJam', '7220467'), - (483, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'NmLpqJam', '7240354'), - (483, 2611, 'attending', '2024-05-02 16:32:52', '2025-12-17 19:46:35', 'NmLpqJam', '7247642'), - (483, 2612, 'attending', '2024-05-02 16:32:55', '2025-12-17 19:46:35', 'NmLpqJam', '7247643'), - (483, 2613, 'attending', '2024-05-02 16:32:44', '2025-12-17 19:46:35', 'NmLpqJam', '7247644'), - (483, 2614, 'attending', '2024-05-02 16:32:15', '2025-12-17 19:46:35', 'NmLpqJam', '7247645'), - (483, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'NmLpqJam', '7251633'), - (483, 2626, 'attending', '2024-05-16 01:25:28', '2025-12-17 19:46:35', 'NmLpqJam', '7264723'), - (483, 2627, 'attending', '2024-05-22 21:47:03', '2025-12-17 19:46:35', 'NmLpqJam', '7264724'), - (483, 2628, 'attending', '2024-06-01 22:02:09', '2025-12-17 19:46:36', 'NmLpqJam', '7264725'), - (483, 2629, 'attending', '2024-06-08 13:20:10', '2025-12-17 19:46:28', 'NmLpqJam', '7264726'), - (483, 2647, 'attending', '2024-06-06 20:03:58', '2025-12-17 19:46:28', 'NmLpqJam', '7282057'), - (483, 2652, 'attending', '2024-05-24 20:50:53', '2025-12-17 19:46:36', 'NmLpqJam', '7288339'), - (483, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'NmLpqJam', '7302674'), - (483, 2673, 'attending', '2024-06-09 22:44:12', '2025-12-17 19:46:28', 'NmLpqJam', '7319473'), - (483, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'NmLpqJam', '7324073'), - (483, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'NmLpqJam', '7324074'), - (483, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'NmLpqJam', '7324075'), - (483, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'NmLpqJam', '7324078'), - (483, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'NmLpqJam', '7324082'), - (483, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'NmLpqJam', '7331457'), - (483, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'NmLpqJam', '7363643'), - (483, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'NmLpqJam', '7368606'), - (483, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'NmLpqJam', '7397462'), - (483, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'NmLpqJam', '7424275'), - (483, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'NmLpqJam', '7432751'), - (483, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'NmLpqJam', '7432752'), - (483, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'NmLpqJam', '7432753'), - (483, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'NmLpqJam', '7432754'), - (483, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'NmLpqJam', '7432755'), - (483, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'NmLpqJam', '7432756'), - (483, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'NmLpqJam', '7432758'), - (483, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'NmLpqJam', '7432759'), - (483, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'NmLpqJam', '7433834'), - (483, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'NmLpqJam', '7470197'), - (484, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'ZdNBGWwd', '3539922'), - (484, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'ZdNBGWwd', '3539923'), - (484, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNBGWwd', '6045684'), - (485, 10, 'attending', '2020-03-28 22:33:15', '2025-12-17 19:47:56', 'ZdNXQDGA', '2958053'), - (485, 30, 'not_attending', '2020-04-06 15:55:53', '2025-12-17 19:47:57', 'ZdNXQDGA', '2961895'), - (485, 36, 'not_attending', '2020-04-04 20:46:04', '2025-12-17 19:47:57', 'ZdNXQDGA', '2969208'), - (485, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'ZdNXQDGA', '2971546'), - (485, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'ZdNXQDGA', '2974534'), - (485, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'ZdNXQDGA', '2974955'), - (485, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'ZdNXQDGA', '2975384'), - (485, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'ZdNXQDGA', '2975385'), - (485, 57, 'attending', '2020-04-27 22:40:24', '2025-12-17 19:47:57', 'ZdNXQDGA', '2976575'), - (485, 66, 'maybe', '2020-06-09 20:21:10', '2025-12-17 19:47:58', 'ZdNXQDGA', '2977135'), - (485, 67, 'maybe', '2020-06-16 11:17:21', '2025-12-17 19:47:58', 'ZdNXQDGA', '2977136'), - (485, 69, 'attending', '2020-07-02 16:59:32', '2025-12-17 19:47:55', 'ZdNXQDGA', '2977138'), - (485, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'ZdNXQDGA', '2977343'), - (485, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'ZdNXQDGA', '2977812'), - (485, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'ZdNXQDGA', '2977931'), - (485, 74, 'attending', '2020-04-18 14:55:10', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978244'), - (485, 75, 'maybe', '2020-04-25 15:40:41', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978245'), - (485, 76, 'attending', '2020-05-02 22:00:54', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978246'), - (485, 77, 'attending', '2020-05-07 16:14:29', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978247'), - (485, 78, 'not_attending', '2020-05-23 03:09:15', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978249'), - (485, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978250'), - (485, 80, 'attending', '2020-06-06 13:28:36', '2025-12-17 19:47:58', 'ZdNXQDGA', '2978251'), - (485, 81, 'attending', '2020-06-13 12:19:41', '2025-12-17 19:47:58', 'ZdNXQDGA', '2978252'), - (485, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978433'), - (485, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978438'), - (485, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'ZdNXQDGA', '2980871'), - (485, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'ZdNXQDGA', '2981388'), - (485, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'ZdNXQDGA', '2986743'), - (485, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', 'ZdNXQDGA', '2991471'), - (485, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'ZdNXQDGA', '2993501'), - (485, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'ZdNXQDGA', '2994480'), - (485, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', 'ZdNXQDGA', '3001217'), - (485, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'ZdNXQDGA', '3023063'), - (485, 133, 'attending', '2020-06-24 23:13:47', '2025-12-17 19:47:58', 'ZdNXQDGA', '3034321'), - (485, 136, 'not_attending', '2020-05-26 21:18:05', '2025-12-17 19:47:57', 'ZdNXQDGA', '3035881'), - (485, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'ZdNXQDGA', '3049983'), - (485, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'ZdNXQDGA', '3058959'), - (485, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'ZdNXQDGA', '3067093'), - (485, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'ZdNXQDGA', '3075228'), - (485, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'ZdNXQDGA', '3075456'), - (485, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'ZdNXQDGA', '3083791'), - (485, 187, 'attending', '2020-06-28 18:33:54', '2025-12-17 19:47:55', 'ZdNXQDGA', '3085151'), - (485, 191, 'attending', '2020-07-08 16:25:35', '2025-12-17 19:47:55', 'ZdNXQDGA', '3087259'), - (485, 192, 'attending', '2020-07-17 22:29:11', '2025-12-17 19:47:55', 'ZdNXQDGA', '3087260'), - (485, 193, 'attending', '2020-07-19 19:05:40', '2025-12-17 19:47:55', 'ZdNXQDGA', '3087261'), - (485, 194, 'not_attending', '2020-07-31 12:19:21', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087262'), - (485, 195, 'attending', '2020-08-06 13:24:00', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087264'), - (485, 196, 'not_attending', '2020-08-10 11:20:52', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087265'), - (485, 197, 'maybe', '2020-08-19 19:17:17', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087266'), - (485, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087267'), - (485, 199, 'attending', '2020-09-05 12:18:29', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087268'), - (485, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'ZdNXQDGA', '3088653'), - (485, 202, 'attending', '2020-07-06 22:35:25', '2025-12-17 19:47:55', 'ZdNXQDGA', '3090353'), - (485, 206, 'attending', '2020-07-24 22:19:14', '2025-12-17 19:47:55', 'ZdNXQDGA', '3104806'), - (485, 208, 'maybe', '2020-08-07 11:48:00', '2025-12-17 19:47:56', 'ZdNXQDGA', '3104808'), - (485, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'ZdNXQDGA', '3106813'), - (485, 210, 'attending', '2020-07-03 18:33:39', '2025-12-17 19:47:55', 'ZdNXQDGA', '3108972'), - (485, 214, 'not_attending', '2020-07-08 20:41:31', '2025-12-17 19:47:55', 'ZdNXQDGA', '3124139'), - (485, 223, 'attending', '2020-09-12 21:49:01', '2025-12-17 19:47:56', 'ZdNXQDGA', '3129980'), - (485, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'ZdNXQDGA', '3132817'), - (485, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'ZdNXQDGA', '3132820'), - (485, 233, 'maybe', '2020-07-20 19:56:40', '2025-12-17 19:47:55', 'ZdNXQDGA', '3139773'), - (485, 253, 'not_attending', '2021-04-06 17:15:01', '2025-12-17 19:47:44', 'ZdNXQDGA', '3149484'), - (485, 264, 'attending', '2020-08-05 14:21:31', '2025-12-17 19:47:56', 'ZdNXQDGA', '3150735'), - (485, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'ZdNXQDGA', '3155321'), - (485, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'ZdNXQDGA', '3162006'), - (485, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'ZdNXQDGA', '3163442'), - (485, 281, 'maybe', '2020-08-08 17:30:52', '2025-12-17 19:47:56', 'ZdNXQDGA', '3166945'), - (485, 292, 'maybe', '2020-08-10 12:03:54', '2025-12-17 19:47:56', 'ZdNXQDGA', '3170480'), - (485, 293, 'maybe', '2020-08-10 11:22:51', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172832'), - (485, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172833'), - (485, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172834'), - (485, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172876'), - (485, 297, 'not_attending', '2020-08-11 12:49:45', '2025-12-17 19:47:56', 'ZdNXQDGA', '3173937'), - (485, 311, 'maybe', '2020-09-14 20:32:18', '2025-12-17 19:47:56', 'ZdNXQDGA', '3186057'), - (485, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'ZdNXQDGA', '3191735'), - (485, 322, 'maybe', '2020-09-16 20:25:23', '2025-12-17 19:47:56', 'ZdNXQDGA', '3197080'), - (485, 333, 'maybe', '2020-09-25 22:18:19', '2025-12-17 19:47:52', 'ZdNXQDGA', '3199782'), - (485, 334, 'maybe', '2020-09-25 22:18:23', '2025-12-17 19:47:52', 'ZdNXQDGA', '3199784'), - (485, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'ZdNXQDGA', '3200209'), - (485, 344, 'attending', '2020-11-01 03:38:24', '2025-12-17 19:47:53', 'ZdNXQDGA', '3206906'), - (485, 346, 'not_attending', '2020-09-15 22:32:44', '2025-12-17 19:47:56', 'ZdNXQDGA', '3207515'), - (485, 349, 'attending', '2020-09-16 20:51:39', '2025-12-17 19:47:56', 'ZdNXQDGA', '3209194'), - (485, 352, 'not_attending', '2020-09-14 19:20:30', '2025-12-17 19:47:56', 'ZdNXQDGA', '3210514'), - (485, 354, 'attending', '2020-09-16 20:55:48', '2025-12-17 19:47:56', 'ZdNXQDGA', '3212570'), - (485, 355, 'not_attending', '2020-09-16 23:37:29', '2025-12-17 19:47:56', 'ZdNXQDGA', '3212571'), - (485, 360, 'maybe', '2020-09-15 22:33:28', '2025-12-17 19:47:56', 'ZdNXQDGA', '3212671'), - (485, 362, 'maybe', '2020-09-25 22:18:30', '2025-12-17 19:47:52', 'ZdNXQDGA', '3214207'), - (485, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'ZdNXQDGA', '3217037'), - (485, 364, 'not_attending', '2020-09-21 21:47:43', '2025-12-17 19:47:56', 'ZdNXQDGA', '3217106'), - (485, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'ZdNXQDGA', '3218510'), - (485, 368, 'maybe', '2020-09-25 22:17:54', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221403'), - (485, 369, 'maybe', '2020-10-04 22:47:56', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221404'), - (485, 370, 'maybe', '2020-10-04 22:48:04', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221405'), - (485, 371, 'maybe', '2020-10-04 22:48:13', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221406'), - (485, 372, 'maybe', '2020-10-04 22:48:17', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221407'), - (485, 373, 'maybe', '2020-10-14 02:01:04', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221413'), - (485, 374, 'maybe', '2020-10-04 22:48:33', '2025-12-17 19:47:53', 'ZdNXQDGA', '3221415'), - (485, 376, 'maybe', '2020-10-04 22:48:09', '2025-12-17 19:47:52', 'ZdNXQDGA', '3222827'), - (485, 377, 'maybe', '2020-10-04 22:48:37', '2025-12-17 19:47:53', 'ZdNXQDGA', '3222828'), - (485, 384, 'maybe', '2020-09-29 21:18:20', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228696'), - (485, 385, 'attending', '2020-10-03 22:40:19', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228698'), - (485, 386, 'maybe', '2020-10-04 22:47:18', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228699'), - (485, 387, 'attending', '2020-10-17 13:23:33', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228700'), - (485, 388, 'maybe', '2020-10-04 22:48:30', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228701'), - (485, 389, 'attending', '2020-10-01 00:52:14', '2025-12-17 19:47:52', 'ZdNXQDGA', '3231284'), - (485, 390, 'attending', '2020-10-04 22:20:16', '2025-12-17 19:47:52', 'ZdNXQDGA', '3231510'), - (485, 398, 'not_attending', '2021-01-21 15:33:35', '2025-12-17 19:47:49', 'ZdNXQDGA', '3236453'), - (485, 409, 'not_attending', '2020-12-08 18:31:24', '2025-12-17 19:47:54', 'ZdNXQDGA', '3236467'), - (485, 412, 'maybe', '2020-10-06 23:36:30', '2025-12-17 19:47:52', 'ZdNXQDGA', '3236636'), - (485, 413, 'maybe', '2020-10-14 02:00:57', '2025-12-17 19:47:52', 'ZdNXQDGA', '3236670'), - (485, 414, 'attending', '2020-10-18 22:04:35', '2025-12-17 19:47:52', 'ZdNXQDGA', '3237277'), - (485, 424, 'attending', '2020-10-19 22:40:19', '2025-12-17 19:47:52', 'ZdNXQDGA', '3245751'), - (485, 426, 'maybe', '2020-10-14 16:06:46', '2025-12-17 19:47:52', 'ZdNXQDGA', '3250232'), - (485, 432, 'not_attending', '2020-11-06 02:56:48', '2025-12-17 19:47:53', 'ZdNXQDGA', '3254416'), - (485, 433, 'not_attending', '2020-11-06 02:56:16', '2025-12-17 19:47:53', 'ZdNXQDGA', '3254417'), - (485, 434, 'not_attending', '2020-11-06 02:56:24', '2025-12-17 19:47:53', 'ZdNXQDGA', '3254418'), - (485, 436, 'maybe', '2020-10-21 16:09:09', '2025-12-17 19:47:52', 'ZdNXQDGA', '3256119'), - (485, 438, 'attending', '2020-10-31 22:03:03', '2025-12-17 19:47:53', 'ZdNXQDGA', '3256163'), - (485, 440, 'maybe', '2020-11-06 02:56:11', '2025-12-17 19:47:53', 'ZdNXQDGA', '3256168'), - (485, 441, 'maybe', '2020-11-06 02:56:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3256169'), - (485, 442, 'attending', '2020-10-21 11:39:17', '2025-12-17 19:47:52', 'ZdNXQDGA', '3260345'), - (485, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'ZdNXQDGA', '3263578'), - (485, 451, 'maybe', '2020-11-02 18:29:40', '2025-12-17 19:47:53', 'ZdNXQDGA', '3272186'), - (485, 452, 'attending', '2020-11-30 00:41:55', '2025-12-17 19:47:54', 'ZdNXQDGA', '3272981'), - (485, 453, 'not_attending', '2020-11-06 02:56:20', '2025-12-17 19:47:54', 'ZdNXQDGA', '3274032'), - (485, 456, 'maybe', '2020-11-06 02:56:39', '2025-12-17 19:47:54', 'ZdNXQDGA', '3276428'), - (485, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281467'), - (485, 460, 'maybe', '2020-11-11 00:12:59', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281468'), - (485, 462, 'not_attending', '2020-11-11 22:51:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281470'), - (485, 463, 'maybe', '2020-11-11 00:12:49', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281553'), - (485, 464, 'maybe', '2020-11-11 00:13:06', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281554'), - (485, 465, 'maybe', '2020-11-18 03:49:57', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281555'), - (485, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281829'), - (485, 468, 'maybe', '2020-11-11 00:13:14', '2025-12-17 19:47:54', 'ZdNXQDGA', '3285413'), - (485, 469, 'attending', '2020-11-28 16:16:09', '2025-12-17 19:47:54', 'ZdNXQDGA', '3285414'), - (485, 471, 'maybe', '2020-11-18 03:49:46', '2025-12-17 19:47:54', 'ZdNXQDGA', '3285445'), - (485, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3297764'), - (485, 490, 'maybe', '2020-12-08 18:31:14', '2025-12-17 19:47:54', 'ZdNXQDGA', '3313532'), - (485, 491, 'maybe', '2020-12-08 18:31:31', '2025-12-17 19:47:55', 'ZdNXQDGA', '3313533'), - (485, 493, 'not_attending', '2020-12-05 22:48:35', '2025-12-17 19:47:54', 'ZdNXQDGA', '3313856'), - (485, 496, 'not_attending', '2020-12-08 18:31:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3314269'), - (485, 499, 'not_attending', '2020-12-08 18:30:51', '2025-12-17 19:47:55', 'ZdNXQDGA', '3314909'), - (485, 500, 'attending', '2020-12-08 18:30:56', '2025-12-17 19:47:55', 'ZdNXQDGA', '3314964'), - (485, 501, 'not_attending', '2020-12-08 18:31:09', '2025-12-17 19:47:54', 'ZdNXQDGA', '3317834'), - (485, 502, 'maybe', '2020-12-08 18:31:47', '2025-12-17 19:47:55', 'ZdNXQDGA', '3323365'), - (485, 513, 'not_attending', '2020-12-17 01:58:18', '2025-12-17 19:47:55', 'ZdNXQDGA', '3329383'), - (485, 517, 'not_attending', '2021-01-08 00:25:49', '2025-12-17 19:47:48', 'ZdNXQDGA', '3337137'), - (485, 526, 'attending', '2021-01-02 22:35:26', '2025-12-17 19:47:48', 'ZdNXQDGA', '3351539'), - (485, 529, 'attending', '2021-01-06 00:37:14', '2025-12-17 19:47:48', 'ZdNXQDGA', '3364568'), - (485, 531, 'attending', '2021-01-02 22:35:29', '2025-12-17 19:47:48', 'ZdNXQDGA', '3378210'), - (485, 536, 'attending', '2021-01-07 16:05:07', '2025-12-17 19:47:48', 'ZdNXQDGA', '3386848'), - (485, 538, 'not_attending', '2021-01-10 19:27:26', '2025-12-17 19:47:48', 'ZdNXQDGA', '3388151'), - (485, 539, 'not_attending', '2021-01-10 19:27:20', '2025-12-17 19:47:48', 'ZdNXQDGA', '3389158'), - (485, 540, 'attending', '2021-01-07 01:21:12', '2025-12-17 19:47:48', 'ZdNXQDGA', '3389527'), - (485, 542, 'maybe', '2021-01-10 19:26:41', '2025-12-17 19:47:48', 'ZdNXQDGA', '3395013'), - (485, 543, 'attending', '2021-01-13 01:58:25', '2025-12-17 19:47:48', 'ZdNXQDGA', '3396499'), - (485, 548, 'attending', '2021-01-16 03:18:00', '2025-12-17 19:47:48', 'ZdNXQDGA', '3403650'), - (485, 549, 'attending', '2021-01-16 16:27:36', '2025-12-17 19:47:48', 'ZdNXQDGA', '3406988'), - (485, 553, 'maybe', '2021-01-16 16:26:19', '2025-12-17 19:47:48', 'ZdNXQDGA', '3407248'), - (485, 555, 'not_attending', '2021-01-23 23:08:09', '2025-12-17 19:47:49', 'ZdNXQDGA', '3416576'), - (485, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'ZdNXQDGA', '3418925'), - (485, 560, 'maybe', '2021-01-28 12:53:53', '2025-12-17 19:47:49', 'ZdNXQDGA', '3421715'), - (485, 568, 'attending', '2021-01-30 20:53:54', '2025-12-17 19:47:50', 'ZdNXQDGA', '3430267'), - (485, 569, 'not_attending', '2021-01-25 06:51:06', '2025-12-17 19:47:49', 'ZdNXQDGA', '3432673'), - (485, 580, 'attending', '2021-01-31 17:11:02', '2025-12-17 19:47:50', 'ZdNXQDGA', '3444240'), - (485, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'ZdNXQDGA', '3468125'), - (485, 602, 'attending', '2021-02-13 21:14:38', '2025-12-17 19:47:50', 'ZdNXQDGA', '3470303'), - (485, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'ZdNXQDGA', '3470305'), - (485, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'ZdNXQDGA', '3470991'), - (485, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ZdNXQDGA', '3517815'), - (485, 622, 'attending', '2021-03-11 22:35:51', '2025-12-17 19:47:51', 'ZdNXQDGA', '3517816'), - (485, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ZdNXQDGA', '3523941'), - (485, 624, 'not_attending', '2021-02-27 01:06:20', '2025-12-17 19:47:50', 'ZdNXQDGA', '3528556'), - (485, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ZdNXQDGA', '3533850'), - (485, 638, 'maybe', '2021-04-04 01:52:00', '2025-12-17 19:47:44', 'ZdNXQDGA', '3536632'), - (485, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ZdNXQDGA', '3536656'), - (485, 641, 'attending', '2021-04-02 15:00:41', '2025-12-17 19:47:44', 'ZdNXQDGA', '3539916'), - (485, 642, 'not_attending', '2021-04-10 16:40:56', '2025-12-17 19:47:44', 'ZdNXQDGA', '3539917'), - (485, 643, 'not_attending', '2021-04-02 15:20:50', '2025-12-17 19:47:45', 'ZdNXQDGA', '3539918'), - (485, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539919'), - (485, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539920'), - (485, 646, 'attending', '2021-05-14 14:15:45', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539921'), - (485, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539922'), - (485, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ZdNXQDGA', '3539923'), - (485, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ZdNXQDGA', '3539927'), - (485, 657, 'not_attending', '2021-04-02 15:20:53', '2025-12-17 19:47:45', 'ZdNXQDGA', '3547132'), - (485, 679, 'maybe', '2021-04-04 19:06:32', '2025-12-17 19:47:44', 'ZdNXQDGA', '3547168'), - (485, 706, 'attending', '2021-04-18 18:59:11', '2025-12-17 19:47:45', 'ZdNXQDGA', '3582734'), - (485, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ZdNXQDGA', '3583262'), - (485, 709, 'not_attending', '2021-04-06 17:15:04', '2025-12-17 19:47:44', 'ZdNXQDGA', '3587852'), - (485, 711, 'attending', '2021-03-31 23:19:53', '2025-12-17 19:47:44', 'ZdNXQDGA', '3588075'), - (485, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ZdNXQDGA', '3619523'), - (485, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ZdNXQDGA', '3661369'), - (485, 731, 'attending', '2021-04-04 01:48:55', '2025-12-17 19:47:44', 'ZdNXQDGA', '3674262'), - (485, 734, 'attending', '2021-04-05 00:49:23', '2025-12-17 19:47:44', 'ZdNXQDGA', '3676806'), - (485, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ZdNXQDGA', '3677402'), - (485, 737, 'not_attending', '2021-04-06 17:14:58', '2025-12-17 19:47:44', 'ZdNXQDGA', '3679349'), - (485, 757, 'not_attending', '2021-04-14 15:27:59', '2025-12-17 19:47:45', 'ZdNXQDGA', '3708109'), - (485, 761, 'attending', '2021-05-14 21:00:20', '2025-12-17 19:47:46', 'ZdNXQDGA', '3716041'), - (485, 771, 'maybe', '2021-04-29 13:13:49', '2025-12-17 19:47:46', 'ZdNXQDGA', '3726420'), - (485, 774, 'attending', '2021-04-20 23:23:55', '2025-12-17 19:47:45', 'ZdNXQDGA', '3730212'), - (485, 792, 'maybe', '2021-05-19 21:21:29', '2025-12-17 19:47:46', 'ZdNXQDGA', '3793156'), - (485, 793, 'attending', '2021-06-02 22:41:50', '2025-12-17 19:47:47', 'ZdNXQDGA', '3793537'), - (485, 823, 'attending', '2021-06-19 12:58:22', '2025-12-17 19:47:48', 'ZdNXQDGA', '3974109'), - (485, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ZdNXQDGA', '3975311'), - (485, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ZdNXQDGA', '3975312'), - (485, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ZdNXQDGA', '3994992'), - (485, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ZdNXQDGA', '4014338'), - (485, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ZdNXQDGA', '4021848'), - (485, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNXQDGA', '4136744'), - (485, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ZdNXQDGA', '4136937'), - (485, 871, 'attending', '2021-07-10 14:18:00', '2025-12-17 19:47:39', 'ZdNXQDGA', '4136938'), - (485, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNXQDGA', '4136947'), - (485, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNXQDGA', '4210314'), - (485, 887, 'attending', '2021-07-14 22:45:36', '2025-12-17 19:47:39', 'ZdNXQDGA', '4225444'), - (485, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNXQDGA', '4239259'), - (485, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ZdNXQDGA', '4240316'), - (485, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ZdNXQDGA', '4240317'), - (485, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ZdNXQDGA', '4240318'), - (485, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ZdNXQDGA', '4240320'), - (485, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNXQDGA', '4250163'), - (485, 919, 'attending', '2021-07-17 22:19:18', '2025-12-17 19:47:39', 'ZdNXQDGA', '4275957'), - (485, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNXQDGA', '4277819'), - (485, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNXQDGA', '4301723'), - (485, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ZdNXQDGA', '4302093'), - (485, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ZdNXQDGA', '4304151'), - (485, 940, 'maybe', '2021-07-30 19:58:13', '2025-12-17 19:47:40', 'ZdNXQDGA', '4309049'), - (485, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ZdNXQDGA', '4345519'), - (485, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ZdNXQDGA', '4356801'), - (485, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ZdNXQDGA', '4358025'), - (485, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ZdNXQDGA', '4366186'), - (485, 974, 'not_attending', '2021-08-28 12:26:03', '2025-12-17 19:47:43', 'ZdNXQDGA', '4366187'), - (485, 988, 'not_attending', '2021-08-27 21:19:04', '2025-12-17 19:47:42', 'ZdNXQDGA', '4402823'), - (485, 990, 'attending', '2021-09-04 18:49:50', '2025-12-17 19:47:43', 'ZdNXQDGA', '4420735'), - (485, 991, 'attending', '2021-09-11 19:47:54', '2025-12-17 19:47:43', 'ZdNXQDGA', '4420738'), - (485, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ZdNXQDGA', '4420739'), - (485, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ZdNXQDGA', '4420741'), - (485, 995, 'attending', '2021-10-09 21:38:14', '2025-12-17 19:47:34', 'ZdNXQDGA', '4420744'), - (485, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ZdNXQDGA', '4420747'), - (485, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ZdNXQDGA', '4420748'), - (485, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ZdNXQDGA', '4420749'), - (485, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ZdNXQDGA', '4461883'), - (485, 1036, 'maybe', '2021-09-22 20:28:22', '2025-12-17 19:47:34', 'ZdNXQDGA', '4493166'), - (485, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ZdNXQDGA', '4508342'), - (485, 1079, 'maybe', '2021-10-20 18:40:45', '2025-12-17 19:47:35', 'ZdNXQDGA', '4563823'), - (485, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ZdNXQDGA', '4568602'), - (485, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ZdNXQDGA', '4572153'), - (485, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'ZdNXQDGA', '4585962'), - (485, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ZdNXQDGA', '4596356'), - (485, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ZdNXQDGA', '4598860'), - (485, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ZdNXQDGA', '4598861'), - (485, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ZdNXQDGA', '4602797'), - (485, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ZdNXQDGA', '4637896'), - (485, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ZdNXQDGA', '4642994'), - (485, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'ZdNXQDGA', '4642995'), - (485, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ZdNXQDGA', '4642996'), - (485, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ZdNXQDGA', '4642997'), - (485, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ZdNXQDGA', '4645687'), - (485, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ZdNXQDGA', '4645698'), - (485, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ZdNXQDGA', '4645704'), - (485, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ZdNXQDGA', '4645705'), - (485, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ZdNXQDGA', '4668385'), - (485, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ZdNXQDGA', '4694407'), - (485, 1151, 'attending', '2022-01-06 00:38:42', '2025-12-17 19:47:31', 'ZdNXQDGA', '4708704'), - (485, 1162, 'maybe', '2022-01-07 15:12:28', '2025-12-17 19:47:31', 'ZdNXQDGA', '4718771'), - (485, 1164, 'attending', '2022-01-04 00:32:52', '2025-12-17 19:47:31', 'ZdNXQDGA', '4724208'), - (485, 1165, 'attending', '2022-01-04 00:32:54', '2025-12-17 19:47:31', 'ZdNXQDGA', '4724210'), - (485, 1174, 'attending', '2022-01-15 23:14:08', '2025-12-17 19:47:31', 'ZdNXQDGA', '4736496'), - (485, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ZdNXQDGA', '4736497'), - (485, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ZdNXQDGA', '4736499'), - (485, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ZdNXQDGA', '4736500'), - (485, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ZdNXQDGA', '4736503'), - (485, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ZdNXQDGA', '4736504'), - (485, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ZdNXQDGA', '4746789'), - (485, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ZdNXQDGA', '4753929'), - (485, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ZdNXQDGA', '5038850'), - (485, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ZdNXQDGA', '5045826'), - (485, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ZdNXQDGA', '5132533'), - (485, 1260, 'attending', '2022-03-01 18:18:54', '2025-12-17 19:47:33', 'ZdNXQDGA', '5142082'), - (485, 1272, 'maybe', '2022-03-19 17:13:06', '2025-12-17 19:47:25', 'ZdNXQDGA', '5186582'), - (485, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ZdNXQDGA', '5186583'), - (485, 1274, 'attending', '2022-04-02 19:28:00', '2025-12-17 19:47:26', 'ZdNXQDGA', '5186585'), - (485, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ZdNXQDGA', '5190437'), - (485, 1284, 'attending', '2022-04-16 22:39:33', '2025-12-17 19:47:27', 'ZdNXQDGA', '5195095'), - (485, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ZdNXQDGA', '5215989'), - (485, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ZdNXQDGA', '5223686'), - (485, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ZdNXQDGA', '5227432'), - (485, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ZdNXQDGA', '5247467'), - (485, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ZdNXQDGA', '5260800'), - (485, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ZdNXQDGA', '5269930'), - (485, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ZdNXQDGA', '5271448'), - (485, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'ZdNXQDGA', '5271449'), - (485, 1381, 'not_attending', '2022-05-06 20:27:50', '2025-12-17 19:47:28', 'ZdNXQDGA', '5271453'), - (485, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ZdNXQDGA', '5276469'), - (485, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ZdNXQDGA', '5278159'), - (485, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ZdNXQDGA', '5363695'), - (485, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ZdNXQDGA', '5365960'), - (485, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ZdNXQDGA', '5368973'), - (485, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ZdNXQDGA', '5378247'), - (485, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ZdNXQDGA', '5389605'), - (485, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ZdNXQDGA', '5397265'), - (485, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ZdNXQDGA', '5403967'), - (485, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ZdNXQDGA', '5404786'), - (485, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ZdNXQDGA', '5405203'), - (485, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'ZdNXQDGA', '5408794'), - (485, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ZdNXQDGA', '5411699'), - (485, 1481, 'not_attending', '2022-06-21 21:36:57', '2025-12-17 19:47:17', 'ZdNXQDGA', '5412237'), - (485, 1482, 'attending', '2022-06-25 11:13:00', '2025-12-17 19:47:19', 'ZdNXQDGA', '5412550'), - (485, 1483, 'maybe', '2022-06-23 21:38:58', '2025-12-17 19:47:17', 'ZdNXQDGA', '5414556'), - (485, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ZdNXQDGA', '5415046'), - (485, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ZdNXQDGA', '5422086'), - (485, 1498, 'attending', '2022-07-02 01:33:16', '2025-12-17 19:47:19', 'ZdNXQDGA', '5422406'), - (485, 1499, 'attending', '2022-07-02 01:33:12', '2025-12-17 19:47:19', 'ZdNXQDGA', '5422407'), - (485, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ZdNXQDGA', '5424565'), - (485, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ZdNXQDGA', '5426882'), - (485, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ZdNXQDGA', '5427083'), - (485, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ZdNXQDGA', '5441125'), - (485, 1514, 'not_attending', '2022-07-21 19:43:01', '2025-12-17 19:47:20', 'ZdNXQDGA', '5441126'), - (485, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ZdNXQDGA', '5441128'), - (485, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ZdNXQDGA', '5441131'), - (485, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ZdNXQDGA', '5441132'), - (485, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ZdNXQDGA', '5446643'), - (485, 1531, 'attending', '2022-07-16 19:13:55', '2025-12-17 19:47:19', 'ZdNXQDGA', '5448756'), - (485, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ZdNXQDGA', '5453325'), - (485, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ZdNXQDGA', '5454516'), - (485, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ZdNXQDGA', '5454605'), - (485, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ZdNXQDGA', '5455037'), - (485, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ZdNXQDGA', '5461278'), - (485, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ZdNXQDGA', '5469480'), - (485, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ZdNXQDGA', '5471073'), - (485, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ZdNXQDGA', '5474663'), - (485, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ZdNXQDGA', '5482022'), - (485, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ZdNXQDGA', '5482793'), - (485, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ZdNXQDGA', '5488912'), - (485, 1581, 'maybe', '2022-08-12 00:02:36', '2025-12-17 19:47:22', 'ZdNXQDGA', '5490302'), - (485, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ZdNXQDGA', '5492192'), - (485, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ZdNXQDGA', '5493139'), - (485, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ZdNXQDGA', '5493200'), - (485, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ZdNXQDGA', '5502188'), - (485, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ZdNXQDGA', '5505059'), - (485, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ZdNXQDGA', '5509055'), - (485, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ZdNXQDGA', '5512862'), - (485, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ZdNXQDGA', '5513985'), - (485, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ZdNXQDGA', '5519981'), - (485, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ZdNXQDGA', '5522550'), - (485, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ZdNXQDGA', '5534683'), - (485, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ZdNXQDGA', '5537735'), - (485, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ZdNXQDGA', '5540859'), - (485, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ZdNXQDGA', '5546619'), - (485, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ZdNXQDGA', '5557747'), - (485, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ZdNXQDGA', '5560255'), - (485, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ZdNXQDGA', '5562906'), - (485, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ZdNXQDGA', '5600604'), - (485, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ZdNXQDGA', '5605544'), - (485, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ZdNXQDGA', '5630960'), - (485, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ZdNXQDGA', '5630961'), - (485, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ZdNXQDGA', '5630962'), - (485, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ZdNXQDGA', '5630966'), - (485, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ZdNXQDGA', '5630967'), - (485, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ZdNXQDGA', '5630968'), - (485, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ZdNXQDGA', '5635406'), - (485, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ZdNXQDGA', '5638765'), - (485, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ZdNXQDGA', '5640097'), - (485, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ZdNXQDGA', '5640843'), - (485, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ZdNXQDGA', '5641521'), - (485, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ZdNXQDGA', '5642818'), - (485, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ZdNXQDGA', '5652395'), - (485, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ZdNXQDGA', '5670445'), - (485, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ZdNXQDGA', '5671637'), - (485, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ZdNXQDGA', '5672329'), - (485, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ZdNXQDGA', '5674057'), - (485, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ZdNXQDGA', '5674060'), - (485, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ZdNXQDGA', '5677461'), - (485, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ZdNXQDGA', '5698046'), - (485, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ZdNXQDGA', '5699760'), - (485, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ZdNXQDGA', '5741601'), - (485, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ZdNXQDGA', '5763458'), - (485, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ZdNXQDGA', '5774172'), - (485, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ZdNXQDGA', '5818247'), - (485, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ZdNXQDGA', '5819471'), - (485, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'ZdNXQDGA', '5827739'), - (485, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ZdNXQDGA', '5844306'), - (485, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ZdNXQDGA', '5850159'), - (485, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ZdNXQDGA', '5858999'), - (485, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ZdNXQDGA', '5871984'), - (485, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ZdNXQDGA', '5876354'), - (485, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ZdNXQDGA', '5880939'), - (485, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ZdNXQDGA', '5880940'), - (485, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ZdNXQDGA', '5880942'), - (485, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ZdNXQDGA', '5880943'), - (485, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ZdNXQDGA', '5887890'), - (485, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ZdNXQDGA', '5888598'), - (485, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ZdNXQDGA', '5893260'), - (485, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ZdNXQDGA', '5899826'), - (485, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ZdNXQDGA', '5900199'), - (485, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ZdNXQDGA', '5900200'), - (485, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ZdNXQDGA', '5900202'), - (485, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ZdNXQDGA', '5900203'), - (485, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ZdNXQDGA', '5901108'), - (485, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ZdNXQDGA', '5901126'), - (485, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ZdNXQDGA', '5909655'), - (485, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ZdNXQDGA', '5910522'), - (485, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ZdNXQDGA', '5910526'), - (485, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ZdNXQDGA', '5910528'), - (485, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ZdNXQDGA', '5916219'), - (485, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ZdNXQDGA', '5936234'), - (485, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ZdNXQDGA', '5958351'), - (485, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ZdNXQDGA', '5959751'), - (485, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ZdNXQDGA', '5959755'), - (485, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ZdNXQDGA', '5960055'), - (485, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ZdNXQDGA', '5961684'), - (485, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ZdNXQDGA', '5962132'), - (485, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ZdNXQDGA', '5962133'), - (485, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ZdNXQDGA', '5962134'), - (485, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ZdNXQDGA', '5962317'), - (485, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ZdNXQDGA', '5962318'), - (485, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ZdNXQDGA', '5965933'), - (485, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ZdNXQDGA', '5967014'), - (485, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ZdNXQDGA', '5972815'), - (485, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ZdNXQDGA', '5974016'), - (485, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ZdNXQDGA', '5981515'), - (485, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ZdNXQDGA', '5993516'), - (485, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ZdNXQDGA', '5998939'), - (485, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ZdNXQDGA', '6028191'), - (485, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ZdNXQDGA', '6040066'), - (485, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ZdNXQDGA', '6042717'), - (485, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ZdNXQDGA', '6044838'), - (485, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ZdNXQDGA', '6044839'), - (485, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNXQDGA', '6045684'), - (485, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ZdNXQDGA', '6050104'), - (485, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ZdNXQDGA', '6053195'), - (485, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ZdNXQDGA', '6053198'), - (485, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ZdNXQDGA', '6056085'), - (485, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ZdNXQDGA', '6056916'), - (485, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ZdNXQDGA', '6059290'), - (485, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ZdNXQDGA', '6060328'), - (485, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ZdNXQDGA', '6061037'), - (485, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ZdNXQDGA', '6061039'), - (485, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ZdNXQDGA', '6067245'), - (485, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ZdNXQDGA', '6068094'), - (485, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ZdNXQDGA', '6068252'), - (485, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ZdNXQDGA', '6068253'), - (485, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ZdNXQDGA', '6068254'), - (485, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'ZdNXQDGA', '6068280'), - (485, 2032, 'attending', '2023-06-01 01:34:42', '2025-12-17 19:47:04', 'ZdNXQDGA', '6068281'), - (485, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ZdNXQDGA', '6069093'), - (485, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ZdNXQDGA', '6072528'), - (485, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ZdNXQDGA', '6079840'), - (485, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ZdNXQDGA', '6083398'), - (485, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ZdNXQDGA', '6093504'), - (485, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ZdNXQDGA', '6097414'), - (485, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ZdNXQDGA', '6097442'), - (485, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ZdNXQDGA', '6097684'), - (485, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ZdNXQDGA', '6098762'), - (485, 2064, 'attending', '2023-06-24 02:39:59', '2025-12-17 19:46:50', 'ZdNXQDGA', '6099988'), - (485, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ZdNXQDGA', '6101361'), - (485, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ZdNXQDGA', '6101362'), - (485, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'ZdNXQDGA', '6103752'), - (485, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ZdNXQDGA', '6107314'), - (485, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ZdNXQDGA', '6120034'), - (485, 2089, 'attending', '2023-06-04 21:23:09', '2025-12-17 19:47:04', 'ZdNXQDGA', '6125227'), - (485, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'ZdNXQDGA', '6136733'), - (485, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ZdNXQDGA', '6137989'), - (485, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ZdNXQDGA', '6150864'), - (485, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ZdNXQDGA', '6155491'), - (485, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ZdNXQDGA', '6164417'), - (485, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ZdNXQDGA', '6166388'), - (485, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ZdNXQDGA', '6176439'), - (485, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ZdNXQDGA', '6182410'), - (485, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ZdNXQDGA', '6185812'), - (485, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ZdNXQDGA', '6187651'), - (485, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ZdNXQDGA', '6187963'), - (485, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ZdNXQDGA', '6187964'), - (485, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ZdNXQDGA', '6187966'), - (485, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ZdNXQDGA', '6187967'), - (485, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ZdNXQDGA', '6187969'), - (485, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ZdNXQDGA', '6334878'), - (485, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ZdNXQDGA', '6337236'), - (485, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ZdNXQDGA', '6337970'), - (485, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ZdNXQDGA', '6338308'), - (485, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'ZdNXQDGA', '6338342'), - (485, 2159, 'maybe', '2023-07-18 18:34:51', '2025-12-17 19:46:53', 'ZdNXQDGA', '6338355'), - (485, 2160, 'not_attending', '2023-07-23 02:19:23', '2025-12-17 19:46:54', 'ZdNXQDGA', '6338358'), - (485, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ZdNXQDGA', '6341710'), - (485, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ZdNXQDGA', '6342044'), - (485, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ZdNXQDGA', '6342298'), - (485, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ZdNXQDGA', '6343294'), - (485, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ZdNXQDGA', '6347034'), - (485, 2177, 'not_attending', '2023-08-07 02:51:40', '2025-12-17 19:46:55', 'ZdNXQDGA', '6347053'), - (485, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ZdNXQDGA', '6347056'), - (485, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ZdNXQDGA', '6353830'), - (485, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ZdNXQDGA', '6353831'), - (485, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ZdNXQDGA', '6357867'), - (485, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ZdNXQDGA', '6358652'), - (485, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'ZdNXQDGA', '6358668'), - (485, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'ZdNXQDGA', '6358669'), - (485, 2204, 'maybe', '2023-08-16 02:43:26', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361542'), - (485, 2206, 'attending', '2023-08-10 01:58:20', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361659'), - (485, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ZdNXQDGA', '6361709'), - (485, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361710'), - (485, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361711'), - (485, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361712'), - (485, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ZdNXQDGA', '6361713'), - (485, 2219, 'maybe', '2023-08-28 18:40:50', '2025-12-17 19:46:55', 'ZdNXQDGA', '6367309'), - (485, 2232, 'not_attending', '2023-08-23 12:32:57', '2025-12-17 19:46:55', 'ZdNXQDGA', '6374818'), - (485, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ZdNXQDGA', '6382573'), - (485, 2239, 'maybe', '2023-09-01 13:37:52', '2025-12-17 19:46:56', 'ZdNXQDGA', '6387592'), - (485, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ZdNXQDGA', '6388604'), - (485, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ZdNXQDGA', '6394629'), - (485, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ZdNXQDGA', '6394631'), - (485, 2253, 'not_attending', '2023-09-30 03:09:50', '2025-12-17 19:46:45', 'ZdNXQDGA', '6401811'), - (485, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ZdNXQDGA', '6440863'), - (485, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ZdNXQDGA', '6445440'), - (485, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ZdNXQDGA', '6453951'), - (485, 2284, 'maybe', '2023-10-13 17:03:09', '2025-12-17 19:46:46', 'ZdNXQDGA', '6460928'), - (485, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ZdNXQDGA', '6461696'), - (485, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ZdNXQDGA', '6462129'), - (485, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ZdNXQDGA', '6463218'), - (485, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ZdNXQDGA', '6472181'), - (485, 2302, 'maybe', '2023-10-24 11:45:38', '2025-12-17 19:46:46', 'ZdNXQDGA', '6482535'), - (485, 2303, 'not_attending', '2023-10-27 11:58:53', '2025-12-17 19:46:47', 'ZdNXQDGA', '6482691'), - (485, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ZdNXQDGA', '6482693'), - (485, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ZdNXQDGA', '6484200'), - (485, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ZdNXQDGA', '6484680'), - (485, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ZdNXQDGA', '6507741'), - (485, 2322, 'attending', '2023-11-17 20:44:54', '2025-12-17 19:46:48', 'ZdNXQDGA', '6514659'), - (485, 2323, 'maybe', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ZdNXQDGA', '6514660'), - (485, 2324, 'attending', '2023-12-08 16:38:36', '2025-12-17 19:46:49', 'ZdNXQDGA', '6514662'), - (485, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ZdNXQDGA', '6519103'), - (485, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ZdNXQDGA', '6535681'), - (485, 2338, 'maybe', '2023-11-23 03:44:42', '2025-12-17 19:46:48', 'ZdNXQDGA', '6538868'), - (485, 2340, 'attending', '2023-11-21 03:42:43', '2025-12-17 19:46:48', 'ZdNXQDGA', '6540279'), - (485, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ZdNXQDGA', '6584747'), - (485, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ZdNXQDGA', '6587097'), - (485, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ZdNXQDGA', '6609022'), - (485, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'ZdNXQDGA', '6632757'), - (485, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ZdNXQDGA', '6644187'), - (485, 2385, 'maybe', '2024-01-08 06:22:44', '2025-12-17 19:46:37', 'ZdNXQDGA', '6648943'), - (485, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ZdNXQDGA', '6648951'), - (485, 2387, 'maybe', '2024-01-04 14:28:16', '2025-12-17 19:46:37', 'ZdNXQDGA', '6648952'), - (485, 2391, 'not_attending', '2024-01-08 06:22:31', '2025-12-17 19:46:37', 'ZdNXQDGA', '6654138'), - (485, 2394, 'maybe', '2024-01-10 14:10:12', '2025-12-17 19:46:38', 'ZdNXQDGA', '6654470'), - (485, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ZdNXQDGA', '6655401'), - (485, 2397, 'attending', '2024-01-08 06:22:48', '2025-12-17 19:46:37', 'ZdNXQDGA', '6657379'), - (485, 2399, 'attending', '2024-01-08 06:22:23', '2025-12-17 19:46:37', 'ZdNXQDGA', '6657583'), - (485, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ZdNXQDGA', '6661585'), - (485, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ZdNXQDGA', '6661588'), - (485, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ZdNXQDGA', '6661589'), - (485, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ZdNXQDGA', '6699906'), - (485, 2408, 'attending', '2024-01-26 03:41:14', '2025-12-17 19:46:40', 'ZdNXQDGA', '6699907'), - (485, 2409, 'not_attending', '2024-01-30 20:38:24', '2025-12-17 19:46:41', 'ZdNXQDGA', '6699909'), - (485, 2410, 'attending', '2024-02-03 16:13:32', '2025-12-17 19:46:41', 'ZdNXQDGA', '6699911'), - (485, 2411, 'attending', '2024-02-15 03:43:43', '2025-12-17 19:46:41', 'ZdNXQDGA', '6699913'), - (485, 2412, 'not_attending', '2024-02-17 21:53:23', '2025-12-17 19:46:43', 'ZdNXQDGA', '6700717'), - (485, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ZdNXQDGA', '6701109'), - (485, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ZdNXQDGA', '6705219'), - (485, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ZdNXQDGA', '6710153'), - (485, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ZdNXQDGA', '6711552'), - (485, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ZdNXQDGA', '6711553'), - (485, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ZdNXQDGA', '6722688'), - (485, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ZdNXQDGA', '6730620'), - (485, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'ZdNXQDGA', '6730642'), - (485, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ZdNXQDGA', '6740364'), - (485, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ZdNXQDGA', '6743829'), - (485, 2461, 'attending', '2024-02-10 22:22:43', '2025-12-17 19:46:41', 'ZdNXQDGA', '6744245'), - (485, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ZdNXQDGA', '7030380'), - (485, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'ZdNXQDGA', '7033677'), - (485, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ZdNXQDGA', '7044715'), - (485, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ZdNXQDGA', '7050318'), - (485, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ZdNXQDGA', '7050319'), - (485, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ZdNXQDGA', '7050322'), - (485, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ZdNXQDGA', '7057804'), - (485, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ZdNXQDGA', '7072824'), - (485, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ZdNXQDGA', '7074348'), - (485, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ZdNXQDGA', '7074364'), - (485, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ZdNXQDGA', '7089267'), - (485, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ZdNXQDGA', '7098747'), - (485, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ZdNXQDGA', '7113468'), - (485, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ZdNXQDGA', '7114856'), - (485, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ZdNXQDGA', '7114951'), - (485, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ZdNXQDGA', '7114955'), - (485, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ZdNXQDGA', '7114956'), - (485, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ZdNXQDGA', '7114957'), - (485, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ZdNXQDGA', '7159484'), - (485, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ZdNXQDGA', '7178446'), - (485, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ZdNXQDGA', '7220467'), - (485, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ZdNXQDGA', '7240354'), - (485, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ZdNXQDGA', '7251633'), - (485, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ZdNXQDGA', '7324073'), - (485, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ZdNXQDGA', '7324074'), - (485, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ZdNXQDGA', '7324075'), - (485, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ZdNXQDGA', '7324078'), - (485, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ZdNXQDGA', '7324082'), - (485, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ZdNXQDGA', '7331457'), - (485, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ZdNXQDGA', '7363643'), - (485, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ZdNXQDGA', '7368606'), - (485, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ZdNXQDGA', '7397462'), - (485, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ZdNXQDGA', '7424275'), - (485, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ZdNXQDGA', '7432751'), - (485, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ZdNXQDGA', '7432752'), - (485, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ZdNXQDGA', '7432753'), - (485, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432754'), - (485, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432755'), - (485, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432756'), - (485, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432758'), - (485, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432759'), - (485, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ZdNXQDGA', '7433834'), - (485, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'ZdNXQDGA', '7470197'), - (485, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ZdNXQDGA', '7685613'), - (485, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ZdNXQDGA', '7688194'), - (485, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ZdNXQDGA', '7688196'), - (485, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ZdNXQDGA', '7688289'), - (485, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ZdNXQDGA', '7692763'), - (485, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ZdNXQDGA', '7697552'), - (485, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ZdNXQDGA', '7699878'), - (485, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'ZdNXQDGA', '7704043'), - (485, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ZdNXQDGA', '7712467'), - (485, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ZdNXQDGA', '7713585'), - (485, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ZdNXQDGA', '7713586'), - (485, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ZdNXQDGA', '7738518'), - (485, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ZdNXQDGA', '7750636'), - (485, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ZdNXQDGA', '7796540'), - (485, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ZdNXQDGA', '7796541'), - (485, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ZdNXQDGA', '7796542'), - (485, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ZdNXQDGA', '7825913'), - (485, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ZdNXQDGA', '7826209'), - (485, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ZdNXQDGA', '7834742'), - (485, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ZdNXQDGA', '7842108'), - (485, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ZdNXQDGA', '7842902'), - (485, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ZdNXQDGA', '7842903'), - (485, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ZdNXQDGA', '7842904'), - (485, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ZdNXQDGA', '7842905'), - (485, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ZdNXQDGA', '7855719'), - (485, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ZdNXQDGA', '7860683'), - (485, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ZdNXQDGA', '7860684'), - (485, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ZdNXQDGA', '7866095'), - (485, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ZdNXQDGA', '7869170'), - (485, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ZdNXQDGA', '7869188'), - (485, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ZdNXQDGA', '7869201'), - (485, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ZdNXQDGA', '7877465'), - (485, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ZdNXQDGA', '7888250'), - (485, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ZdNXQDGA', '7904777'), - (485, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ZdNXQDGA', '8349164'), - (485, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ZdNXQDGA', '8349545'), - (485, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ZdNXQDGA', '8368028'), - (485, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ZdNXQDGA', '8368029'), - (485, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ZdNXQDGA', '8388462'), - (485, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ZdNXQDGA', '8400273'), - (485, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ZdNXQDGA', '8400275'), - (485, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ZdNXQDGA', '8400276'), - (485, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ZdNXQDGA', '8404977'), - (485, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ZdNXQDGA', '8430783'), - (485, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ZdNXQDGA', '8430784'), - (485, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ZdNXQDGA', '8430799'), - (485, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ZdNXQDGA', '8430800'), - (485, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ZdNXQDGA', '8430801'), - (485, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ZdNXQDGA', '8438709'), - (485, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ZdNXQDGA', '8457738'), - (485, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ZdNXQDGA', '8459566'), - (485, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ZdNXQDGA', '8459567'), - (485, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ZdNXQDGA', '8461032'), - (485, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ZdNXQDGA', '8477877'), - (485, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ZdNXQDGA', '8485688'), - (485, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ZdNXQDGA', '8490587'), - (485, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ZdNXQDGA', '8493552'), - (485, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ZdNXQDGA', '8493553'), - (485, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ZdNXQDGA', '8493554'), - (485, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ZdNXQDGA', '8493555'), - (485, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ZdNXQDGA', '8493556'), - (485, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ZdNXQDGA', '8493557'), - (485, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ZdNXQDGA', '8493558'), - (485, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ZdNXQDGA', '8493559'), - (485, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ZdNXQDGA', '8493560'), - (485, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'ZdNXQDGA', '8493561'), - (485, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ZdNXQDGA', '8493572'), - (485, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ZdNXQDGA', '8540725'), - (485, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ZdNXQDGA', '8555421'), - (486, 259, 'attending', '2021-05-18 21:55:30', '2025-12-17 19:47:46', 'x4oaR1Gm', '3149490'), - (486, 646, 'not_attending', '2021-05-14 05:34:22', '2025-12-17 19:47:46', 'x4oaR1Gm', '3539921'), - (486, 647, 'attending', '2021-05-22 21:42:01', '2025-12-17 19:47:46', 'x4oaR1Gm', '3539922'), - (486, 648, 'not_attending', '2021-05-29 16:15:50', '2025-12-17 19:47:47', 'x4oaR1Gm', '3539923'), - (486, 785, 'maybe', '2021-05-16 05:54:26', '2025-12-17 19:47:46', 'x4oaR1Gm', '3779779'), - (486, 792, 'maybe', '2021-05-16 03:08:24', '2025-12-17 19:47:46', 'x4oaR1Gm', '3793156'), - (486, 806, 'not_attending', '2021-05-14 05:31:46', '2025-12-17 19:47:46', 'x4oaR1Gm', '3806392'), - (486, 815, 'maybe', '2021-05-19 02:37:07', '2025-12-17 19:47:47', 'x4oaR1Gm', '3818136'), - (486, 823, 'maybe', '2021-06-12 17:26:49', '2025-12-17 19:47:48', 'x4oaR1Gm', '3974109'), - (486, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'x4oaR1Gm', '3975311'), - (486, 828, 'attending', '2021-06-12 22:38:30', '2025-12-17 19:47:47', 'x4oaR1Gm', '3975312'), - (486, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'x4oaR1Gm', '3994992'), - (486, 844, 'maybe', '2021-06-12 05:36:32', '2025-12-17 19:47:38', 'x4oaR1Gm', '4014338'), - (486, 857, 'maybe', '2021-11-24 06:18:14', '2025-12-17 19:47:37', 'x4oaR1Gm', '4015731'), - (486, 867, 'attending', '2021-06-26 21:41:40', '2025-12-17 19:47:38', 'x4oaR1Gm', '4021848'), - (486, 869, 'maybe', '2021-06-16 21:15:03', '2025-12-17 19:47:38', 'x4oaR1Gm', '4136744'), - (486, 870, 'attending', '2021-07-03 20:17:17', '2025-12-17 19:47:39', 'x4oaR1Gm', '4136937'), - (486, 871, 'attending', '2021-07-10 20:09:11', '2025-12-17 19:47:39', 'x4oaR1Gm', '4136938'), - (486, 872, 'maybe', '2021-06-29 02:03:21', '2025-12-17 19:47:40', 'x4oaR1Gm', '4136947'), - (486, 884, 'not_attending', '2021-08-15 01:55:40', '2025-12-17 19:47:42', 'x4oaR1Gm', '4210314'), - (486, 885, 'attending', '2021-06-27 22:48:03', '2025-12-17 19:47:38', 'x4oaR1Gm', '4222370'), - (486, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oaR1Gm', '4225444'), - (486, 898, 'attending', '2021-07-01 18:51:30', '2025-12-17 19:47:38', 'x4oaR1Gm', '4236746'), - (486, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'x4oaR1Gm', '4239259'), - (486, 900, 'not_attending', '2021-07-21 20:00:13', '2025-12-17 19:47:40', 'x4oaR1Gm', '4240316'), - (486, 901, 'maybe', '2021-07-27 00:55:58', '2025-12-17 19:47:40', 'x4oaR1Gm', '4240317'), - (486, 902, 'attending', '2021-08-07 20:56:42', '2025-12-17 19:47:41', 'x4oaR1Gm', '4240318'), - (486, 903, 'attending', '2021-08-14 13:34:48', '2025-12-17 19:47:42', 'x4oaR1Gm', '4240320'), - (486, 905, 'maybe', '2021-07-05 14:53:51', '2025-12-17 19:47:39', 'x4oaR1Gm', '4250163'), - (486, 908, 'not_attending', '2021-07-13 17:17:10', '2025-12-17 19:47:39', 'x4oaR1Gm', '4257613'), - (486, 911, 'maybe', '2021-07-11 03:20:16', '2025-12-17 19:47:39', 'x4oaR1Gm', '4264465'), - (486, 917, 'attending', '2021-07-14 03:26:36', '2025-12-17 19:47:39', 'x4oaR1Gm', '4274481'), - (486, 919, 'maybe', '2021-07-15 02:14:33', '2025-12-17 19:47:39', 'x4oaR1Gm', '4275957'), - (486, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oaR1Gm', '4277819'), - (486, 927, 'maybe', '2021-07-27 19:53:09', '2025-12-17 19:47:40', 'x4oaR1Gm', '4297216'), - (486, 931, 'maybe', '2021-07-27 19:51:10', '2025-12-17 19:47:40', 'x4oaR1Gm', '4301535'), - (486, 933, 'attending', '2021-07-28 21:49:21', '2025-12-17 19:47:40', 'x4oaR1Gm', '4301723'), - (486, 934, 'not_attending', '2021-08-04 22:45:32', '2025-12-17 19:47:41', 'x4oaR1Gm', '4302093'), - (486, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oaR1Gm', '4304151'), - (486, 946, 'maybe', '2021-08-02 05:16:47', '2025-12-17 19:47:40', 'x4oaR1Gm', '4314835'), - (486, 952, 'maybe', '2021-08-02 02:31:14', '2025-12-17 19:47:41', 'x4oaR1Gm', '4318286'), - (486, 961, 'not_attending', '2021-08-08 23:29:39', '2025-12-17 19:47:42', 'x4oaR1Gm', '4345519'), - (486, 964, 'maybe', '2021-08-23 20:29:23', '2025-12-17 19:47:42', 'x4oaR1Gm', '4353160'), - (486, 971, 'maybe', '2021-08-29 04:06:35', '2025-12-17 19:47:43', 'x4oaR1Gm', '4356801'), - (486, 972, 'maybe', '2021-08-14 14:10:39', '2025-12-17 19:47:42', 'x4oaR1Gm', '4358025'), - (486, 973, 'maybe', '2021-08-17 19:51:37', '2025-12-17 19:47:42', 'x4oaR1Gm', '4366186'), - (486, 974, 'not_attending', '2021-08-28 16:11:48', '2025-12-17 19:47:43', 'x4oaR1Gm', '4366187'), - (486, 987, 'maybe', '2021-09-01 14:17:01', '2025-12-17 19:47:43', 'x4oaR1Gm', '4402634'), - (486, 988, 'not_attending', '2021-08-27 20:10:50', '2025-12-17 19:47:42', 'x4oaR1Gm', '4402823'), - (486, 990, 'attending', '2021-08-29 04:04:12', '2025-12-17 19:47:43', 'x4oaR1Gm', '4420735'), - (486, 991, 'attending', '2021-09-11 17:48:29', '2025-12-17 19:47:43', 'x4oaR1Gm', '4420738'), - (486, 992, 'attending', '2021-09-18 18:13:20', '2025-12-17 19:47:33', 'x4oaR1Gm', '4420739'), - (486, 993, 'not_attending', '2021-09-25 17:52:25', '2025-12-17 19:47:34', 'x4oaR1Gm', '4420741'), - (486, 995, 'not_attending', '2021-10-09 05:34:46', '2025-12-17 19:47:34', 'x4oaR1Gm', '4420744'), - (486, 996, 'attending', '2021-10-16 20:28:31', '2025-12-17 19:47:35', 'x4oaR1Gm', '4420747'), - (486, 997, 'attending', '2021-10-23 21:03:32', '2025-12-17 19:47:35', 'x4oaR1Gm', '4420748'), - (486, 998, 'not_attending', '2021-10-25 07:21:51', '2025-12-17 19:47:36', 'x4oaR1Gm', '4420749'), - (486, 1016, 'maybe', '2021-09-08 04:05:58', '2025-12-17 19:47:43', 'x4oaR1Gm', '4441271'), - (486, 1019, 'maybe', '2021-09-06 15:35:07', '2025-12-17 19:47:43', 'x4oaR1Gm', '4450515'), - (486, 1020, 'attending', '2021-09-13 22:43:24', '2025-12-17 19:47:43', 'x4oaR1Gm', '4451787'), - (486, 1021, 'maybe', '2021-09-17 00:59:24', '2025-12-17 19:47:34', 'x4oaR1Gm', '4451803'), - (486, 1022, 'maybe', '2021-09-13 21:35:21', '2025-12-17 19:47:43', 'x4oaR1Gm', '4458628'), - (486, 1023, 'not_attending', '2021-09-11 17:48:50', '2025-12-17 19:47:43', 'x4oaR1Gm', '4461883'), - (486, 1025, 'attending', '2021-09-14 22:23:42', '2025-12-17 19:47:43', 'x4oaR1Gm', '4462052'), - (486, 1029, 'maybe', '2021-09-17 00:59:48', '2025-12-17 19:47:43', 'x4oaR1Gm', '4473063'), - (486, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'x4oaR1Gm', '4508342'), - (486, 1068, 'maybe', '2021-09-30 15:31:20', '2025-12-17 19:47:34', 'x4oaR1Gm', '4511471'), - (486, 1070, 'maybe', '2021-09-30 17:04:44', '2025-12-17 19:47:34', 'x4oaR1Gm', '4512562'), - (486, 1072, 'maybe', '2021-10-05 06:22:13', '2025-12-17 19:47:34', 'x4oaR1Gm', '4516287'), - (486, 1077, 'maybe', '2021-10-12 21:38:04', '2025-12-17 19:47:34', 'x4oaR1Gm', '4540903'), - (486, 1078, 'maybe', '2021-10-04 21:30:42', '2025-12-17 19:47:34', 'x4oaR1Gm', '4541281'), - (486, 1079, 'maybe', '2021-10-14 19:05:57', '2025-12-17 19:47:35', 'x4oaR1Gm', '4563823'), - (486, 1082, 'maybe', '2021-10-14 07:34:21', '2025-12-17 19:47:35', 'x4oaR1Gm', '4566762'), - (486, 1086, 'not_attending', '2021-10-13 06:27:44', '2025-12-17 19:47:35', 'x4oaR1Gm', '4568602'), - (486, 1087, 'not_attending', '2021-10-16 19:17:42', '2025-12-17 19:47:35', 'x4oaR1Gm', '4572153'), - (486, 1089, 'maybe', '2021-10-16 14:44:54', '2025-12-17 19:47:35', 'x4oaR1Gm', '4574712'), - (486, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'x4oaR1Gm', '4585962'), - (486, 1094, 'attending', '2021-10-31 20:56:30', '2025-12-17 19:47:36', 'x4oaR1Gm', '4587337'), - (486, 1095, 'maybe', '2021-10-27 05:56:52', '2025-12-17 19:47:35', 'x4oaR1Gm', '4596356'), - (486, 1097, 'maybe', '2021-10-28 14:01:28', '2025-12-17 19:47:36', 'x4oaR1Gm', '4598860'), - (486, 1098, 'maybe', '2021-10-28 14:12:08', '2025-12-17 19:47:36', 'x4oaR1Gm', '4598861'), - (486, 1099, 'maybe', '2021-10-31 14:14:56', '2025-12-17 19:47:36', 'x4oaR1Gm', '4602797'), - (486, 1108, 'maybe', '2021-11-12 01:19:23', '2025-12-17 19:47:37', 'x4oaR1Gm', '4632276'), - (486, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'x4oaR1Gm', '4637896'), - (486, 1116, 'maybe', '2021-11-14 02:21:37', '2025-12-17 19:47:37', 'x4oaR1Gm', '4642994'), - (486, 1117, 'not_attending', '2021-12-08 20:43:25', '2025-12-17 19:47:38', 'x4oaR1Gm', '4642995'), - (486, 1118, 'not_attending', '2021-12-15 05:46:53', '2025-12-17 19:47:38', 'x4oaR1Gm', '4642996'), - (486, 1119, 'not_attending', '2021-12-22 23:14:34', '2025-12-17 19:47:31', 'x4oaR1Gm', '4642997'), - (486, 1126, 'not_attending', '2021-12-11 23:21:09', '2025-12-17 19:47:38', 'x4oaR1Gm', '4645687'), - (486, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'x4oaR1Gm', '4645698'), - (486, 1128, 'maybe', '2021-11-14 22:31:38', '2025-12-17 19:47:37', 'x4oaR1Gm', '4645704'), - (486, 1129, 'attending', '2021-11-27 23:44:41', '2025-12-17 19:47:37', 'x4oaR1Gm', '4645705'), - (486, 1130, 'maybe', '2021-11-28 20:20:04', '2025-12-17 19:47:37', 'x4oaR1Gm', '4658824'), - (486, 1131, 'maybe', '2021-11-30 02:42:43', '2025-12-17 19:47:31', 'x4oaR1Gm', '4658825'), - (486, 1132, 'attending', '2021-11-21 08:53:38', '2025-12-17 19:47:37', 'x4oaR1Gm', '4660657'), - (486, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'x4oaR1Gm', '4668385'), - (486, 1143, 'maybe', '2021-12-01 21:48:37', '2025-12-17 19:47:37', 'x4oaR1Gm', '4683667'), - (486, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'x4oaR1Gm', '4694407'), - (486, 1152, 'not_attending', '2022-01-12 22:30:15', '2025-12-17 19:47:31', 'x4oaR1Gm', '4708705'), - (486, 1164, 'maybe', '2021-12-29 01:44:33', '2025-12-17 19:47:31', 'x4oaR1Gm', '4724208'), - (486, 1174, 'attending', '2022-01-16 00:01:01', '2025-12-17 19:47:31', 'x4oaR1Gm', '4736496'), - (486, 1175, 'attending', '2022-01-23 02:41:08', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736497'), - (486, 1176, 'not_attending', '2022-02-05 23:05:25', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736498'), - (486, 1177, 'not_attending', '2022-02-12 23:24:31', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736499'), - (486, 1178, 'attending', '2022-01-29 00:26:56', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736500'), - (486, 1179, 'attending', '2022-02-19 23:03:56', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736501'), - (486, 1181, 'attending', '2022-03-05 23:27:37', '2025-12-17 19:47:33', 'x4oaR1Gm', '4736503'), - (486, 1182, 'attending', '2022-03-12 23:00:21', '2025-12-17 19:47:33', 'x4oaR1Gm', '4736504'), - (486, 1185, 'not_attending', '2022-01-12 03:59:10', '2025-12-17 19:47:31', 'x4oaR1Gm', '4746789'), - (486, 1188, 'maybe', '2022-01-12 03:57:38', '2025-12-17 19:47:32', 'x4oaR1Gm', '4753929'), - (486, 1228, 'not_attending', '2022-02-11 22:06:15', '2025-12-17 19:47:32', 'x4oaR1Gm', '5028238'), - (486, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'x4oaR1Gm', '5038850'), - (486, 1236, 'maybe', '2022-02-15 05:13:02', '2025-12-17 19:47:32', 'x4oaR1Gm', '5045826'), - (486, 1238, 'maybe', '2022-03-03 00:25:07', '2025-12-17 19:47:33', 'x4oaR1Gm', '5052236'), - (486, 1239, 'attending', '2022-03-03 00:25:13', '2025-12-17 19:47:33', 'x4oaR1Gm', '5052238'), - (486, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'x4oaR1Gm', '5132533'), - (486, 1272, 'not_attending', '2022-03-19 15:50:45', '2025-12-17 19:47:25', 'x4oaR1Gm', '5186582'), - (486, 1273, 'attending', '2022-03-26 19:30:15', '2025-12-17 19:47:25', 'x4oaR1Gm', '5186583'), - (486, 1274, 'not_attending', '2022-03-16 07:53:32', '2025-12-17 19:47:26', 'x4oaR1Gm', '5186585'), - (486, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'x4oaR1Gm', '5190437'), - (486, 1284, 'maybe', '2022-04-16 01:54:07', '2025-12-17 19:47:27', 'x4oaR1Gm', '5195095'), - (486, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'x4oaR1Gm', '5215989'), - (486, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'x4oaR1Gm', '5223686'), - (486, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'x4oaR1Gm', '5227432'), - (486, 1319, 'maybe', '2022-04-14 04:30:38', '2025-12-17 19:47:27', 'x4oaR1Gm', '5238353'), - (486, 1332, 'maybe', '2022-04-15 03:22:22', '2025-12-17 19:47:27', 'x4oaR1Gm', '5243274'), - (486, 1346, 'not_attending', '2022-04-21 19:08:40', '2025-12-17 19:47:27', 'x4oaR1Gm', '5247467'), - (486, 1362, 'attending', '2022-04-30 21:28:33', '2025-12-17 19:47:28', 'x4oaR1Gm', '5260800'), - (486, 1374, 'maybe', '2022-05-01 17:47:20', '2025-12-17 19:47:28', 'x4oaR1Gm', '5269930'), - (486, 1378, 'maybe', '2022-05-06 17:52:57', '2025-12-17 19:47:29', 'x4oaR1Gm', '5271448'), - (486, 1379, 'attending', '2022-05-20 13:37:39', '2025-12-17 19:47:29', 'x4oaR1Gm', '5271449'), - (486, 1380, 'not_attending', '2022-05-26 21:45:27', '2025-12-17 19:47:30', 'x4oaR1Gm', '5271450'), - (486, 1383, 'not_attending', '2022-05-07 19:44:18', '2025-12-17 19:47:28', 'x4oaR1Gm', '5276469'), - (486, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'x4oaR1Gm', '5278159'), - (486, 1407, 'not_attending', '2022-05-30 02:53:26', '2025-12-17 19:47:30', 'x4oaR1Gm', '5363695'), - (486, 1408, 'not_attending', '2022-05-20 13:38:14', '2025-12-17 19:47:29', 'x4oaR1Gm', '5365960'), - (486, 1414, 'maybe', '2022-05-19 02:14:54', '2025-12-17 19:47:29', 'x4oaR1Gm', '5368445'), - (486, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'x4oaR1Gm', '5368973'), - (486, 1419, 'not_attending', '2022-06-07 23:34:25', '2025-12-17 19:47:30', 'x4oaR1Gm', '5373081'), - (486, 1427, 'not_attending', '2022-05-25 21:16:00', '2025-12-17 19:47:30', 'x4oaR1Gm', '5376074'), - (486, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'x4oaR1Gm', '5378247'), - (486, 1431, 'maybe', '2022-06-03 22:08:16', '2025-12-17 19:47:31', 'x4oaR1Gm', '5389605'), - (486, 1442, 'not_attending', '2022-06-03 22:08:03', '2025-12-17 19:47:17', 'x4oaR1Gm', '5397265'), - (486, 1451, 'maybe', '2022-06-14 23:06:31', '2025-12-17 19:47:17', 'x4oaR1Gm', '5403967'), - (486, 1456, 'maybe', '2022-06-15 15:08:02', '2025-12-17 19:47:17', 'x4oaR1Gm', '5404779'), - (486, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'x4oaR1Gm', '5404786'), - (486, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'x4oaR1Gm', '5405203'), - (486, 1478, 'not_attending', '2022-06-15 15:07:36', '2025-12-17 19:47:19', 'x4oaR1Gm', '5408794'), - (486, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'x4oaR1Gm', '5411699'), - (486, 1482, 'maybe', '2022-06-25 16:51:06', '2025-12-17 19:47:19', 'x4oaR1Gm', '5412550'), - (486, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'x4oaR1Gm', '5415046'), - (486, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'x4oaR1Gm', '5422086'), - (486, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'x4oaR1Gm', '5422406'), - (486, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'x4oaR1Gm', '5424565'), - (486, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'x4oaR1Gm', '5426882'), - (486, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'x4oaR1Gm', '5427083'), - (486, 1513, 'not_attending', '2022-07-11 05:01:28', '2025-12-17 19:47:20', 'x4oaR1Gm', '5441125'), - (486, 1514, 'not_attending', '2022-07-19 02:54:14', '2025-12-17 19:47:20', 'x4oaR1Gm', '5441126'), - (486, 1515, 'not_attending', '2022-08-06 20:34:44', '2025-12-17 19:47:21', 'x4oaR1Gm', '5441128'), - (486, 1516, 'maybe', '2022-08-20 16:55:17', '2025-12-17 19:47:23', 'x4oaR1Gm', '5441129'), - (486, 1517, 'not_attending', '2022-08-25 00:35:20', '2025-12-17 19:47:23', 'x4oaR1Gm', '5441130'), - (486, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'x4oaR1Gm', '5441131'), - (486, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'x4oaR1Gm', '5441132'), - (486, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'x4oaR1Gm', '5446643'), - (486, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'x4oaR1Gm', '5453325'), - (486, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'x4oaR1Gm', '5454516'), - (486, 1544, 'attending', '2022-09-15 20:14:37', '2025-12-17 19:47:11', 'x4oaR1Gm', '5454517'), - (486, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'x4oaR1Gm', '5454605'), - (486, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'x4oaR1Gm', '5455037'), - (486, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'x4oaR1Gm', '5461278'), - (486, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'x4oaR1Gm', '5469480'), - (486, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'x4oaR1Gm', '5471073'), - (486, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'x4oaR1Gm', '5474663'), - (486, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'x4oaR1Gm', '5482022'), - (486, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'x4oaR1Gm', '5482793'), - (486, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'x4oaR1Gm', '5488912'), - (486, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'x4oaR1Gm', '5492192'), - (486, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'x4oaR1Gm', '5493139'), - (486, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'x4oaR1Gm', '5493200'), - (486, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'x4oaR1Gm', '5502188'), - (486, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'x4oaR1Gm', '5505059'), - (486, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'x4oaR1Gm', '5509055'), - (486, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'x4oaR1Gm', '5512862'), - (486, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'x4oaR1Gm', '5513985'), - (486, 1626, 'attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'x4oaR1Gm', '5519981'), - (486, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'x4oaR1Gm', '5522550'), - (486, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'x4oaR1Gm', '5534683'), - (486, 1635, 'maybe', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'x4oaR1Gm', '5537735'), - (486, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'x4oaR1Gm', '5540859'), - (486, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'x4oaR1Gm', '5546619'), - (486, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'x4oaR1Gm', '5555245'), - (486, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'x4oaR1Gm', '5557747'), - (486, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'x4oaR1Gm', '5560255'), - (486, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'x4oaR1Gm', '5562906'), - (486, 1667, 'not_attending', '2022-09-24 21:44:41', '2025-12-17 19:47:11', 'x4oaR1Gm', '5563221'), - (486, 1668, 'not_attending', '2022-10-01 17:41:03', '2025-12-17 19:47:12', 'x4oaR1Gm', '5563222'), - (486, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'x4oaR1Gm', '5600604'), - (486, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'x4oaR1Gm', '5605544'), - (486, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'x4oaR1Gm', '5606737'), - (486, 1719, 'attending', '2022-10-06 00:04:16', '2025-12-17 19:47:12', 'x4oaR1Gm', '5630958'), - (486, 1720, 'not_attending', '2022-10-09 02:34:14', '2025-12-17 19:47:12', 'x4oaR1Gm', '5630959'), - (486, 1721, 'not_attending', '2022-10-21 17:48:48', '2025-12-17 19:47:13', 'x4oaR1Gm', '5630960'), - (486, 1722, 'not_attending', '2022-10-24 19:39:06', '2025-12-17 19:47:14', 'x4oaR1Gm', '5630961'), - (486, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'x4oaR1Gm', '5630962'), - (486, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'x4oaR1Gm', '5630966'), - (486, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'x4oaR1Gm', '5630967'), - (486, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'x4oaR1Gm', '5630968'), - (486, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'x4oaR1Gm', '5635406'), - (486, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'x4oaR1Gm', '5638765'), - (486, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'x4oaR1Gm', '5640097'), - (486, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'x4oaR1Gm', '5640843'), - (486, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'x4oaR1Gm', '5641521'), - (486, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'x4oaR1Gm', '5642818'), - (486, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'x4oaR1Gm', '5652395'), - (486, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'x4oaR1Gm', '5670445'), - (486, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'x4oaR1Gm', '5671637'), - (486, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'x4oaR1Gm', '5672329'), - (486, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'x4oaR1Gm', '5674057'), - (486, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'x4oaR1Gm', '5674060'), - (486, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'x4oaR1Gm', '5677461'), - (486, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'x4oaR1Gm', '5698046'), - (486, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'x4oaR1Gm', '5699760'), - (486, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'x4oaR1Gm', '5741601'), - (486, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'x4oaR1Gm', '5763458'), - (486, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'x4oaR1Gm', '5774172'), - (486, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'x4oaR1Gm', '5818247'), - (486, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'x4oaR1Gm', '5819471'), - (486, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'x4oaR1Gm', '5827739'), - (486, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'x4oaR1Gm', '5844306'), - (486, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'x4oaR1Gm', '5850159'), - (486, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'x4oaR1Gm', '5858999'), - (486, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'x4oaR1Gm', '5871984'), - (486, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'x4oaR1Gm', '5876354'), - (486, 1865, 'not_attending', '2023-01-23 23:17:13', '2025-12-17 19:47:06', 'x4oaR1Gm', '5879676'), - (486, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'x4oaR1Gm', '5880939'), - (486, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'x4oaR1Gm', '5880940'), - (486, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'x4oaR1Gm', '5880942'), - (486, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'x4oaR1Gm', '5880943'), - (486, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'x4oaR1Gm', '5887890'), - (486, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'x4oaR1Gm', '5888598'), - (486, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'x4oaR1Gm', '5893260'), - (486, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'x4oaR1Gm', '5899826'), - (486, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'x4oaR1Gm', '5900199'), - (486, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'x4oaR1Gm', '5900200'), - (486, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'x4oaR1Gm', '5900202'), - (486, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'x4oaR1Gm', '5900203'), - (486, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'x4oaR1Gm', '5901108'), - (486, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'x4oaR1Gm', '5901126'), - (486, 1897, 'not_attending', '2023-02-10 18:29:31', '2025-12-17 19:47:07', 'x4oaR1Gm', '5901128'), - (486, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'x4oaR1Gm', '5909655'), - (486, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'x4oaR1Gm', '5910522'), - (486, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'x4oaR1Gm', '5910526'), - (486, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'x4oaR1Gm', '5910528'), - (486, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'x4oaR1Gm', '5916219'), - (486, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'x4oaR1Gm', '5936234'), - (486, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'x4oaR1Gm', '5958351'), - (486, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'x4oaR1Gm', '5959751'), - (486, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'x4oaR1Gm', '5959755'), - (486, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'x4oaR1Gm', '5960055'), - (486, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'x4oaR1Gm', '5961684'), - (486, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'x4oaR1Gm', '5962132'), - (486, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'x4oaR1Gm', '5962133'), - (486, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'x4oaR1Gm', '5962134'), - (486, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'x4oaR1Gm', '5962317'), - (486, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'x4oaR1Gm', '5962318'), - (486, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'x4oaR1Gm', '5965933'), - (486, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'x4oaR1Gm', '5967014'), - (486, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'x4oaR1Gm', '5972815'), - (486, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'x4oaR1Gm', '5974016'), - (486, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'x4oaR1Gm', '5981515'), - (486, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'x4oaR1Gm', '5993516'), - (486, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'x4oaR1Gm', '5998939'), - (486, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'x4oaR1Gm', '6028191'), - (486, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'x4oaR1Gm', '6040066'), - (486, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'x4oaR1Gm', '6042717'), - (486, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'x4oaR1Gm', '6044838'), - (486, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'x4oaR1Gm', '6044839'), - (486, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oaR1Gm', '6045684'), - (486, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'x4oaR1Gm', '6050104'), - (486, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'x4oaR1Gm', '6053195'), - (486, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'x4oaR1Gm', '6053198'), - (486, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'x4oaR1Gm', '6056085'), - (486, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'x4oaR1Gm', '6056916'), - (486, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'x4oaR1Gm', '6059290'), - (486, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'x4oaR1Gm', '6060328'), - (486, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'x4oaR1Gm', '6061037'), - (486, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'x4oaR1Gm', '6061039'), - (486, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'x4oaR1Gm', '6067245'), - (486, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'x4oaR1Gm', '6068094'), - (486, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'x4oaR1Gm', '6068252'), - (486, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'x4oaR1Gm', '6068253'), - (486, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'x4oaR1Gm', '6068254'), - (486, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'x4oaR1Gm', '6068280'), - (486, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'x4oaR1Gm', '6069093'), - (486, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'x4oaR1Gm', '6072528'), - (486, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'x4oaR1Gm', '6079840'), - (486, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'x4oaR1Gm', '6083398'), - (486, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'x4oaR1Gm', '6093504'), - (486, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'x4oaR1Gm', '6097414'), - (486, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'x4oaR1Gm', '6097442'), - (486, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'x4oaR1Gm', '6097684'), - (486, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'x4oaR1Gm', '6098762'), - (486, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'x4oaR1Gm', '6101362'), - (486, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'x4oaR1Gm', '6103752'), - (486, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'x4oaR1Gm', '6107314'), - (487, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'mb1neeEd', '6632757'), - (487, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mb1neeEd', '6644187'), - (487, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mb1neeEd', '6648951'), - (487, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mb1neeEd', '6648952'), - (487, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mb1neeEd', '6651141'), - (487, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mb1neeEd', '6655401'), - (487, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mb1neeEd', '6661585'), - (487, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mb1neeEd', '6661588'), - (487, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mb1neeEd', '6661589'), - (487, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mb1neeEd', '6699906'), - (487, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mb1neeEd', '6699913'), - (487, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mb1neeEd', '6701109'), - (487, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mb1neeEd', '6705219'), - (487, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mb1neeEd', '6710153'), - (487, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mb1neeEd', '6711552'), - (487, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mb1neeEd', '6711553'), - (487, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mb1neeEd', '6722688'), - (487, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mb1neeEd', '6730620'), - (487, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mb1neeEd', '6730642'), - (487, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mb1neeEd', '6740364'), - (487, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mb1neeEd', '6743829'), - (487, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mb1neeEd', '7030380'), - (487, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mb1neeEd', '7033677'), - (487, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mb1neeEd', '7035415'), - (487, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mb1neeEd', '7044715'), - (487, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mb1neeEd', '7050318'), - (487, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mb1neeEd', '7050319'), - (487, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mb1neeEd', '7050322'), - (487, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mb1neeEd', '7057804'), - (487, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mb1neeEd', '7072824'), - (487, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mb1neeEd', '7074348'), - (487, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mb1neeEd', '7089267'), - (487, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mb1neeEd', '7098747'), - (487, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mb1neeEd', '7113468'), - (487, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mb1neeEd', '7114856'), - (487, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mb1neeEd', '7114951'), - (487, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mb1neeEd', '7114955'), - (487, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mb1neeEd', '7114956'), - (487, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mb1neeEd', '7153615'), - (487, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mb1neeEd', '7159484'), - (487, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mb1neeEd', '7178446'), - (488, 246, 'attending', '2020-12-14 22:28:44', '2025-12-17 19:47:55', 'ZdNRzxkd', '3149477'), - (488, 247, 'not_attending', '2020-12-21 04:00:20', '2025-12-17 19:47:48', 'ZdNRzxkd', '3149478'), - (488, 248, 'not_attending', '2021-01-08 06:22:31', '2025-12-17 19:47:48', 'ZdNRzxkd', '3149479'), - (488, 394, 'attending', '2021-01-08 00:27:15', '2025-12-17 19:47:48', 'ZdNRzxkd', '3236449'), - (488, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ZdNRzxkd', '3314964'), - (488, 502, 'not_attending', '2020-12-12 21:31:27', '2025-12-17 19:47:55', 'ZdNRzxkd', '3323365'), - (488, 513, 'not_attending', '2020-12-16 04:09:19', '2025-12-17 19:47:55', 'ZdNRzxkd', '3329383'), - (488, 519, 'not_attending', '2020-12-16 17:15:12', '2025-12-17 19:47:55', 'ZdNRzxkd', '3337448'), - (488, 526, 'not_attending', '2020-12-28 23:49:51', '2025-12-17 19:47:48', 'ZdNRzxkd', '3351539'), - (488, 532, 'not_attending', '2021-01-08 22:44:36', '2025-12-17 19:47:48', 'ZdNRzxkd', '3381412'), - (488, 534, 'not_attending', '2021-01-09 18:07:02', '2025-12-17 19:47:48', 'ZdNRzxkd', '3384157'), - (488, 535, 'not_attending', '2021-01-10 04:16:14', '2025-12-17 19:47:48', 'ZdNRzxkd', '3384729'), - (488, 536, 'not_attending', '2021-01-08 21:07:14', '2025-12-17 19:47:48', 'ZdNRzxkd', '3386848'), - (488, 538, 'not_attending', '2021-01-10 04:16:50', '2025-12-17 19:47:48', 'ZdNRzxkd', '3388151'), - (488, 539, 'not_attending', '2021-01-10 04:16:44', '2025-12-17 19:47:48', 'ZdNRzxkd', '3389158'), - (488, 540, 'not_attending', '2021-01-10 04:16:40', '2025-12-17 19:47:48', 'ZdNRzxkd', '3389527'), - (488, 542, 'attending', '2021-01-11 21:16:03', '2025-12-17 19:47:48', 'ZdNRzxkd', '3395013'), - (488, 543, 'not_attending', '2021-01-12 03:03:50', '2025-12-17 19:47:48', 'ZdNRzxkd', '3396499'), - (488, 548, 'not_attending', '2021-01-13 20:28:27', '2025-12-17 19:47:48', 'ZdNRzxkd', '3403650'), - (488, 549, 'attending', '2021-01-19 00:35:26', '2025-12-17 19:47:48', 'ZdNRzxkd', '3406988'), - (488, 550, 'attending', '2021-01-18 00:22:05', '2025-12-17 19:47:48', 'ZdNRzxkd', '3407018'), - (488, 551, 'attending', '2021-01-20 00:13:22', '2025-12-17 19:47:49', 'ZdNRzxkd', '3407219'), - (488, 555, 'not_attending', '2021-01-23 19:00:57', '2025-12-17 19:47:49', 'ZdNRzxkd', '3416576'), - (488, 556, 'not_attending', '2021-01-18 18:40:15', '2025-12-17 19:47:49', 'ZdNRzxkd', '3417170'), - (488, 558, 'attending', '2021-01-22 20:01:59', '2025-12-17 19:47:49', 'ZdNRzxkd', '3418925'), - (488, 562, 'attending', '2021-01-23 19:26:52', '2025-12-17 19:47:49', 'ZdNRzxkd', '3424911'), - (488, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'ZdNRzxkd', '3426074'), - (488, 567, 'not_attending', '2021-01-26 16:23:55', '2025-12-17 19:47:50', 'ZdNRzxkd', '3428895'), - (488, 568, 'not_attending', '2021-01-27 21:54:48', '2025-12-17 19:47:50', 'ZdNRzxkd', '3430267'), - (488, 569, 'attending', '2021-01-27 23:53:46', '2025-12-17 19:47:49', 'ZdNRzxkd', '3432673'), - (488, 570, 'not_attending', '2021-02-04 15:56:02', '2025-12-17 19:47:50', 'ZdNRzxkd', '3435538'), - (488, 576, 'attending', '2021-02-03 00:30:47', '2025-12-17 19:47:50', 'ZdNRzxkd', '3438748'), - (488, 577, 'attending', '2021-01-29 23:31:26', '2025-12-17 19:47:49', 'ZdNRzxkd', '3439167'), - (488, 578, 'not_attending', '2021-02-01 20:29:51', '2025-12-17 19:47:50', 'ZdNRzxkd', '3440043'), - (488, 579, 'not_attending', '2021-02-01 20:30:00', '2025-12-17 19:47:50', 'ZdNRzxkd', '3440978'), - (488, 580, 'not_attending', '2021-01-31 16:23:43', '2025-12-17 19:47:50', 'ZdNRzxkd', '3444240'), - (488, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'ZdNRzxkd', '3468125'), - (488, 602, 'not_attending', '2021-02-13 16:41:16', '2025-12-17 19:47:50', 'ZdNRzxkd', '3470303'), - (488, 604, 'maybe', '2021-02-15 00:24:33', '2025-12-17 19:47:50', 'ZdNRzxkd', '3470305'), - (488, 605, 'attending', '2021-02-14 23:00:00', '2025-12-17 19:47:50', 'ZdNRzxkd', '3470991'), - (488, 607, 'not_attending', '2021-02-15 00:24:19', '2025-12-17 19:47:50', 'ZdNRzxkd', '3471882'), - (488, 612, 'not_attending', '2021-02-17 04:56:39', '2025-12-17 19:47:50', 'ZdNRzxkd', '3490040'), - (488, 613, 'not_attending', '2021-02-26 02:21:59', '2025-12-17 19:47:50', 'ZdNRzxkd', '3490041'), - (488, 614, 'maybe', '2021-02-15 00:25:36', '2025-12-17 19:47:51', 'ZdNRzxkd', '3490042'), - (488, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ZdNRzxkd', '3517815'), - (488, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ZdNRzxkd', '3517816'), - (488, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ZdNRzxkd', '3523941'), - (488, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ZdNRzxkd', '3533850'), - (488, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ZdNRzxkd', '3536632'), - (488, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ZdNRzxkd', '3536656'), - (488, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ZdNRzxkd', '3539916'), - (488, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ZdNRzxkd', '3539917'), - (488, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ZdNRzxkd', '3539918'), - (488, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539919'), - (488, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539920'), - (488, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539921'), - (488, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539922'), - (488, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ZdNRzxkd', '3539923'), - (488, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ZdNRzxkd', '3539927'), - (488, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ZdNRzxkd', '3582734'), - (488, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ZdNRzxkd', '3583262'), - (488, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ZdNRzxkd', '3619523'), - (488, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ZdNRzxkd', '3661369'), - (488, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ZdNRzxkd', '3674262'), - (488, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ZdNRzxkd', '3677402'), - (488, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ZdNRzxkd', '3730212'), - (488, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ZdNRzxkd', '3793156'), - (488, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ZdNRzxkd', '3974109'), - (488, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ZdNRzxkd', '3975311'), - (488, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ZdNRzxkd', '3975312'), - (488, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ZdNRzxkd', '3994992'), - (488, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ZdNRzxkd', '4014338'), - (488, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ZdNRzxkd', '4021848'), - (488, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNRzxkd', '4136744'), - (488, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ZdNRzxkd', '4136937'), - (488, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ZdNRzxkd', '4136938'), - (488, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNRzxkd', '4136947'), - (488, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNRzxkd', '4210314'), - (488, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ZdNRzxkd', '4225444'), - (488, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNRzxkd', '4239259'), - (488, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ZdNRzxkd', '4240316'), - (488, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ZdNRzxkd', '4240317'), - (488, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ZdNRzxkd', '4240318'), - (488, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ZdNRzxkd', '4240320'), - (488, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNRzxkd', '4250163'), - (488, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ZdNRzxkd', '4275957'), - (488, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNRzxkd', '4277819'), - (488, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNRzxkd', '4301723'), - (488, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ZdNRzxkd', '4302093'), - (488, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ZdNRzxkd', '4304151'), - (488, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ZdNRzxkd', '4356801'), - (488, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ZdNRzxkd', '4366186'), - (488, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ZdNRzxkd', '4366187'), - (488, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ZdNRzxkd', '4420735'), - (488, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ZdNRzxkd', '4420738'), - (488, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ZdNRzxkd', '4420739'), - (488, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ZdNRzxkd', '4420741'), - (488, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ZdNRzxkd', '4420744'), - (488, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ZdNRzxkd', '4420747'), - (488, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ZdNRzxkd', '4420748'), - (488, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ZdNRzxkd', '4420749'), - (488, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ZdNRzxkd', '4461883'), - (488, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ZdNRzxkd', '4508342'), - (488, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ZdNRzxkd', '4568602'), - (488, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ZdNRzxkd', '4572153'), - (488, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ZdNRzxkd', '4585962'), - (488, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'ZdNRzxkd', '4596356'), - (488, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ZdNRzxkd', '4598860'), - (488, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ZdNRzxkd', '4598861'), - (488, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ZdNRzxkd', '4602797'), - (488, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ZdNRzxkd', '4637896'), - (488, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ZdNRzxkd', '4642994'), - (488, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ZdNRzxkd', '4642995'), - (488, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ZdNRzxkd', '4642996'), - (488, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ZdNRzxkd', '4642997'), - (488, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ZdNRzxkd', '4645687'), - (488, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ZdNRzxkd', '4645698'), - (488, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ZdNRzxkd', '4645704'), - (488, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ZdNRzxkd', '4645705'), - (488, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ZdNRzxkd', '4668385'), - (488, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ZdNRzxkd', '4694407'), - (488, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ZdNRzxkd', '4736497'), - (488, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ZdNRzxkd', '4736499'), - (488, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ZdNRzxkd', '4736500'), - (488, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ZdNRzxkd', '4736503'), - (488, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ZdNRzxkd', '4736504'), - (488, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ZdNRzxkd', '4746789'), - (488, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ZdNRzxkd', '4753929'), - (488, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ZdNRzxkd', '5038850'), - (488, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ZdNRzxkd', '5045826'), - (488, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ZdNRzxkd', '5132533'), - (488, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ZdNRzxkd', '5186582'), - (488, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ZdNRzxkd', '5186583'), - (488, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ZdNRzxkd', '5186585'), - (488, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ZdNRzxkd', '5190437'), - (488, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ZdNRzxkd', '5195095'), - (488, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ZdNRzxkd', '5215989'), - (488, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ZdNRzxkd', '5223686'), - (488, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ZdNRzxkd', '5247467'), - (488, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ZdNRzxkd', '5260800'), - (488, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ZdNRzxkd', '5269930'), - (488, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ZdNRzxkd', '5271448'), - (488, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'ZdNRzxkd', '5271449'), - (488, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ZdNRzxkd', '5278159'), - (488, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ZdNRzxkd', '5363695'), - (488, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ZdNRzxkd', '5365960'), - (488, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ZdNRzxkd', '5378247'), - (488, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'ZdNRzxkd', '5389605'), - (488, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ZdNRzxkd', '5397265'), - (488, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ZdNRzxkd', '5404786'), - (488, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ZdNRzxkd', '5405203'), - (488, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ZdNRzxkd', '5412550'), - (488, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ZdNRzxkd', '5415046'), - (488, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ZdNRzxkd', '5422086'), - (488, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ZdNRzxkd', '5422406'), - (488, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ZdNRzxkd', '5424565'), - (488, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ZdNRzxkd', '5426882'), - (488, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ZdNRzxkd', '5441125'), - (488, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ZdNRzxkd', '5441126'), - (488, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ZdNRzxkd', '5441128'), - (488, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ZdNRzxkd', '5441131'), - (488, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ZdNRzxkd', '5441132'), - (488, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ZdNRzxkd', '5453325'), - (488, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ZdNRzxkd', '5454516'), - (488, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ZdNRzxkd', '5454605'), - (488, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ZdNRzxkd', '5455037'), - (488, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ZdNRzxkd', '5461278'), - (488, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ZdNRzxkd', '5469480'), - (488, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ZdNRzxkd', '5474663'), - (488, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ZdNRzxkd', '5482022'), - (488, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ZdNRzxkd', '5488912'), - (488, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ZdNRzxkd', '5492192'), - (488, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ZdNRzxkd', '5493139'), - (488, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ZdNRzxkd', '5493200'), - (488, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ZdNRzxkd', '5502188'), - (488, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ZdNRzxkd', '5505059'), - (488, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ZdNRzxkd', '5509055'), - (488, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ZdNRzxkd', '5512862'), - (488, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ZdNRzxkd', '5513985'), - (488, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ZdNRzxkd', '5519981'), - (488, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ZdNRzxkd', '5522550'), - (488, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ZdNRzxkd', '5534683'), - (488, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ZdNRzxkd', '5537735'), - (488, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ZdNRzxkd', '5540859'), - (488, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ZdNRzxkd', '5546619'), - (488, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ZdNRzxkd', '5557747'), - (488, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ZdNRzxkd', '5560255'), - (488, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ZdNRzxkd', '5562906'), - (488, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ZdNRzxkd', '5600604'), - (488, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ZdNRzxkd', '5605544'), - (488, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ZdNRzxkd', '5630960'), - (488, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ZdNRzxkd', '5630961'), - (488, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ZdNRzxkd', '5630962'), - (488, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ZdNRzxkd', '5630966'), - (488, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ZdNRzxkd', '5630967'), - (488, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ZdNRzxkd', '5630968'), - (488, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ZdNRzxkd', '5635406'), - (488, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ZdNRzxkd', '5638765'), - (488, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ZdNRzxkd', '5640097'), - (488, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ZdNRzxkd', '5640843'), - (488, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ZdNRzxkd', '5641521'), - (488, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ZdNRzxkd', '5642818'), - (488, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ZdNRzxkd', '5652395'), - (488, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ZdNRzxkd', '5670445'), - (488, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ZdNRzxkd', '5671637'), - (488, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ZdNRzxkd', '5672329'), - (488, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ZdNRzxkd', '5674057'), - (488, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ZdNRzxkd', '5674060'), - (488, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ZdNRzxkd', '5677461'), - (488, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ZdNRzxkd', '5698046'), - (488, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ZdNRzxkd', '5699760'), - (488, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ZdNRzxkd', '5741601'), - (488, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ZdNRzxkd', '5763458'), - (488, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ZdNRzxkd', '5774172'), - (488, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'ZdNRzxkd', '5818247'), - (488, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ZdNRzxkd', '5819471'), - (488, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ZdNRzxkd', '5827739'), - (488, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ZdNRzxkd', '5844306'), - (488, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ZdNRzxkd', '5850159'), - (488, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ZdNRzxkd', '5858999'), - (488, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ZdNRzxkd', '5871984'), - (488, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ZdNRzxkd', '5876354'), - (488, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ZdNRzxkd', '5880939'), - (488, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ZdNRzxkd', '5880940'), - (488, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ZdNRzxkd', '5880942'), - (488, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ZdNRzxkd', '5880943'), - (488, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ZdNRzxkd', '5887890'), - (488, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ZdNRzxkd', '5888598'), - (488, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ZdNRzxkd', '5893260'), - (488, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ZdNRzxkd', '5899826'), - (488, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ZdNRzxkd', '5900199'), - (488, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ZdNRzxkd', '5900200'), - (488, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ZdNRzxkd', '5900202'), - (488, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ZdNRzxkd', '5900203'), - (488, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ZdNRzxkd', '5901108'), - (488, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ZdNRzxkd', '5901126'), - (488, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ZdNRzxkd', '5909655'), - (488, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ZdNRzxkd', '5910522'), - (488, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ZdNRzxkd', '5910526'), - (488, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ZdNRzxkd', '5910528'), - (488, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ZdNRzxkd', '5916219'), - (488, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ZdNRzxkd', '5936234'), - (488, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ZdNRzxkd', '5958351'), - (488, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ZdNRzxkd', '5959751'), - (488, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ZdNRzxkd', '5959755'), - (488, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ZdNRzxkd', '5960055'), - (488, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ZdNRzxkd', '5961684'), - (488, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ZdNRzxkd', '5962132'), - (488, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ZdNRzxkd', '5962133'), - (488, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ZdNRzxkd', '5962134'), - (488, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ZdNRzxkd', '5962317'), - (488, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ZdNRzxkd', '5962318'), - (488, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ZdNRzxkd', '5965933'), - (488, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ZdNRzxkd', '5967014'), - (488, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ZdNRzxkd', '5972815'), - (488, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ZdNRzxkd', '5974016'), - (488, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ZdNRzxkd', '5981515'), - (488, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ZdNRzxkd', '5993516'), - (488, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ZdNRzxkd', '5998939'), - (488, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ZdNRzxkd', '6028191'), - (488, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ZdNRzxkd', '6040066'), - (488, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ZdNRzxkd', '6042717'), - (488, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ZdNRzxkd', '6044838'), - (488, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ZdNRzxkd', '6044839'), - (488, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNRzxkd', '6045684'), - (488, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ZdNRzxkd', '6050104'), - (488, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ZdNRzxkd', '6053195'), - (488, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ZdNRzxkd', '6053198'), - (488, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ZdNRzxkd', '6056085'), - (488, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ZdNRzxkd', '6056916'), - (488, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ZdNRzxkd', '6059290'), - (488, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ZdNRzxkd', '6060328'), - (488, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ZdNRzxkd', '6061037'), - (488, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ZdNRzxkd', '6061039'), - (488, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ZdNRzxkd', '6067245'), - (488, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ZdNRzxkd', '6068094'), - (488, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ZdNRzxkd', '6068252'), - (488, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ZdNRzxkd', '6068253'), - (488, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ZdNRzxkd', '6068254'), - (488, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ZdNRzxkd', '6068280'), - (488, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ZdNRzxkd', '6069093'), - (488, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ZdNRzxkd', '6072528'), - (488, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ZdNRzxkd', '6079840'), - (488, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ZdNRzxkd', '6083398'), - (488, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ZdNRzxkd', '6093504'), - (488, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ZdNRzxkd', '6097414'), - (488, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ZdNRzxkd', '6097442'), - (488, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ZdNRzxkd', '6097684'), - (488, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ZdNRzxkd', '6098762'), - (488, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ZdNRzxkd', '6101361'), - (488, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ZdNRzxkd', '6101362'), - (488, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ZdNRzxkd', '6107314'), - (488, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ZdNRzxkd', '6120034'), - (488, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ZdNRzxkd', '6136733'), - (488, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ZdNRzxkd', '6137989'), - (488, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ZdNRzxkd', '6150864'), - (488, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ZdNRzxkd', '6155491'), - (488, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ZdNRzxkd', '6164417'), - (488, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ZdNRzxkd', '6166388'), - (488, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ZdNRzxkd', '6176439'), - (488, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ZdNRzxkd', '6182410'), - (488, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ZdNRzxkd', '6185812'), - (488, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ZdNRzxkd', '6187651'), - (488, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ZdNRzxkd', '6187963'), - (488, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ZdNRzxkd', '6187964'), - (488, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ZdNRzxkd', '6187966'), - (488, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ZdNRzxkd', '6187967'), - (488, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ZdNRzxkd', '6187969'), - (488, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ZdNRzxkd', '6334878'), - (488, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ZdNRzxkd', '6337236'), - (488, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ZdNRzxkd', '6337970'), - (488, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ZdNRzxkd', '6338308'), - (488, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ZdNRzxkd', '6341710'), - (488, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ZdNRzxkd', '6342044'), - (488, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ZdNRzxkd', '6342298'), - (488, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ZdNRzxkd', '6343294'), - (488, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ZdNRzxkd', '6347034'), - (488, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ZdNRzxkd', '6347056'), - (488, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ZdNRzxkd', '6353830'), - (488, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ZdNRzxkd', '6353831'), - (488, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ZdNRzxkd', '6357867'), - (488, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ZdNRzxkd', '6358652'), - (488, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ZdNRzxkd', '6361709'), - (488, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ZdNRzxkd', '6361710'), - (488, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ZdNRzxkd', '6361711'), - (488, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ZdNRzxkd', '6361712'), - (488, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ZdNRzxkd', '6361713'), - (488, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ZdNRzxkd', '6382573'), - (488, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ZdNRzxkd', '6388604'), - (488, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ZdNRzxkd', '6394629'), - (488, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ZdNRzxkd', '6394631'), - (488, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ZdNRzxkd', '6440863'), - (488, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ZdNRzxkd', '6445440'), - (488, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ZdNRzxkd', '6453951'), - (488, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ZdNRzxkd', '6461696'), - (488, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ZdNRzxkd', '6462129'), - (488, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ZdNRzxkd', '6463218'), - (488, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ZdNRzxkd', '6472181'), - (488, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ZdNRzxkd', '6482693'), - (488, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ZdNRzxkd', '6484200'), - (488, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ZdNRzxkd', '6484680'), - (488, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ZdNRzxkd', '6507741'), - (488, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ZdNRzxkd', '6514659'), - (488, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ZdNRzxkd', '6514660'), - (488, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ZdNRzxkd', '6519103'), - (488, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ZdNRzxkd', '6535681'), - (488, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ZdNRzxkd', '6584747'), - (488, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ZdNRzxkd', '6587097'), - (488, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ZdNRzxkd', '6609022'), - (488, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ZdNRzxkd', '6632757'), - (488, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ZdNRzxkd', '6644187'), - (488, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ZdNRzxkd', '6648951'), - (488, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ZdNRzxkd', '6648952'), - (488, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ZdNRzxkd', '6655401'), - (488, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ZdNRzxkd', '6661585'), - (488, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ZdNRzxkd', '6661588'), - (488, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ZdNRzxkd', '6661589'), - (488, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ZdNRzxkd', '6699906'), - (488, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ZdNRzxkd', '6699913'), - (488, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ZdNRzxkd', '6701109'), - (488, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ZdNRzxkd', '6705219'), - (488, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ZdNRzxkd', '6710153'), - (488, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ZdNRzxkd', '6711552'), - (488, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ZdNRzxkd', '6711553'), - (488, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ZdNRzxkd', '6722688'), - (488, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ZdNRzxkd', '6730620'), - (488, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ZdNRzxkd', '6740364'), - (488, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ZdNRzxkd', '6743829'), - (488, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ZdNRzxkd', '7030380'), - (488, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ZdNRzxkd', '7033677'), - (488, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ZdNRzxkd', '7044715'), - (488, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ZdNRzxkd', '7050318'), - (488, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ZdNRzxkd', '7050319'), - (488, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ZdNRzxkd', '7050322'), - (488, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ZdNRzxkd', '7057804'), - (488, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ZdNRzxkd', '7072824'), - (488, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ZdNRzxkd', '7074348'), - (488, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ZdNRzxkd', '7074364'), - (488, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ZdNRzxkd', '7089267'), - (488, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ZdNRzxkd', '7098747'), - (488, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ZdNRzxkd', '7113468'), - (488, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ZdNRzxkd', '7114856'), - (488, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ZdNRzxkd', '7114951'), - (488, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ZdNRzxkd', '7114955'), - (488, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ZdNRzxkd', '7114956'), - (488, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ZdNRzxkd', '7114957'), - (488, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ZdNRzxkd', '7159484'), - (488, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ZdNRzxkd', '7178446'), - (488, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ZdNRzxkd', '7220467'), - (488, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ZdNRzxkd', '7240354'), - (488, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ZdNRzxkd', '7251633'), - (488, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ZdNRzxkd', '7324073'), - (488, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ZdNRzxkd', '7324074'), - (488, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ZdNRzxkd', '7324075'), - (488, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ZdNRzxkd', '7324078'), - (488, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ZdNRzxkd', '7324082'), - (488, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ZdNRzxkd', '7331457'), - (488, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ZdNRzxkd', '7363643'), - (488, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ZdNRzxkd', '7368606'), - (488, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ZdNRzxkd', '7397462'), - (488, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ZdNRzxkd', '7424275'), - (488, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ZdNRzxkd', '7432751'), - (488, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ZdNRzxkd', '7432752'), - (488, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ZdNRzxkd', '7432753'), - (488, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432754'), - (488, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432755'), - (488, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432756'), - (488, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432758'), - (488, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432759'), - (488, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ZdNRzxkd', '7433834'), - (488, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ZdNRzxkd', '7470197'), - (488, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ZdNRzxkd', '7685613'), - (488, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ZdNRzxkd', '7688194'), - (488, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ZdNRzxkd', '7688196'), - (488, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ZdNRzxkd', '7688289'), - (488, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ZdNRzxkd', '7692763'), - (488, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ZdNRzxkd', '7697552'), - (488, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ZdNRzxkd', '7699878'), - (488, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ZdNRzxkd', '7704043'), - (488, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ZdNRzxkd', '7712467'), - (488, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ZdNRzxkd', '7713585'), - (488, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ZdNRzxkd', '7713586'), - (488, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ZdNRzxkd', '7738518'), - (488, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ZdNRzxkd', '7750636'), - (488, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ZdNRzxkd', '7796540'), - (488, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ZdNRzxkd', '7796541'), - (488, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ZdNRzxkd', '7796542'), - (488, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ZdNRzxkd', '7825913'), - (488, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ZdNRzxkd', '7826209'), - (488, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ZdNRzxkd', '7834742'), - (488, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ZdNRzxkd', '7842108'), - (488, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ZdNRzxkd', '7842902'), - (488, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ZdNRzxkd', '7842903'), - (488, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ZdNRzxkd', '7842904'), - (488, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ZdNRzxkd', '7842905'), - (488, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ZdNRzxkd', '7855719'), - (488, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ZdNRzxkd', '7860683'), - (488, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ZdNRzxkd', '7860684'), - (488, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ZdNRzxkd', '7866095'), - (488, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ZdNRzxkd', '7869170'), - (488, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ZdNRzxkd', '7869188'), - (488, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ZdNRzxkd', '7869201'), - (488, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ZdNRzxkd', '7877465'), - (488, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ZdNRzxkd', '7888250'), - (488, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ZdNRzxkd', '7904777'), - (488, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ZdNRzxkd', '8349164'), - (488, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ZdNRzxkd', '8349545'), - (488, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ZdNRzxkd', '8368028'), - (488, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ZdNRzxkd', '8368029'), - (488, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ZdNRzxkd', '8388462'), - (488, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ZdNRzxkd', '8400273'), - (488, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ZdNRzxkd', '8400275'), - (488, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ZdNRzxkd', '8400276'), - (488, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ZdNRzxkd', '8404977'), - (488, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ZdNRzxkd', '8430783'), - (488, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ZdNRzxkd', '8430784'), - (488, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ZdNRzxkd', '8430799'), - (488, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ZdNRzxkd', '8430800'), - (488, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ZdNRzxkd', '8430801'), - (488, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ZdNRzxkd', '8438709'), - (488, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ZdNRzxkd', '8457738'), - (488, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ZdNRzxkd', '8459566'), - (488, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ZdNRzxkd', '8459567'), - (488, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ZdNRzxkd', '8461032'), - (488, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ZdNRzxkd', '8477877'), - (488, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ZdNRzxkd', '8485688'), - (488, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ZdNRzxkd', '8490587'), - (488, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ZdNRzxkd', '8493552'), - (488, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ZdNRzxkd', '8493553'), - (488, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ZdNRzxkd', '8493554'), - (488, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ZdNRzxkd', '8493555'), - (488, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ZdNRzxkd', '8493556'), - (488, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ZdNRzxkd', '8493557'), - (488, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ZdNRzxkd', '8493558'), - (488, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ZdNRzxkd', '8493559'), - (488, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ZdNRzxkd', '8493560'), - (488, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ZdNRzxkd', '8493561'), - (488, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ZdNRzxkd', '8493572'), - (488, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ZdNRzxkd', '8540725'), - (488, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ZdNRzxkd', '8555421'), - (489, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4oj73eoA', '7074364'), - (489, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', '4oj73eoA', '7302674'), - (489, 2678, 'attending', '2024-06-15 14:49:27', '2025-12-17 19:46:28', '4oj73eoA', '7319489'), - (489, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4oj73eoA', '7324073'), - (489, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4oj73eoA', '7324074'), - (489, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4oj73eoA', '7324075'), - (489, 2713, 'attending', '2024-06-15 14:49:29', '2025-12-17 19:46:28', '4oj73eoA', '7326593'), - (489, 2714, 'attending', '2024-06-15 14:49:19', '2025-12-17 19:46:28', '4oj73eoA', '7326981'), - (489, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '4oj73eoA', '7331457'), - (490, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'w4WDkpjd', '3149489'), - (490, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'w4WDkpjd', '3149491'), - (490, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'w4WDkpjd', '3236450'), - (490, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'w4WDkpjd', '3236452'), - (490, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'w4WDkpjd', '3539920'), - (490, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'w4WDkpjd', '3539921'), - (490, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'w4WDkpjd', '3539922'), - (490, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'w4WDkpjd', '3539923'), - (490, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'w4WDkpjd', '3793156'), - (490, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'w4WDkpjd', '3806392'), - (490, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'w4WDkpjd', '3963335'), - (490, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'w4WDkpjd', '3975311'), - (490, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4WDkpjd', '3975312'), - (490, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4WDkpjd', '3994992'), - (490, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4WDkpjd', '4014338'), - (490, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4WDkpjd', '4136744'), - (490, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WDkpjd', '6045684'), - (491, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4EQ0NkD4', '6045684'), - (492, 2064, 'attending', '2023-06-12 20:49:52', '2025-12-17 19:46:50', 'dOOOlzWd', '6099988'), - (492, 2065, 'attending', '2023-06-12 20:49:47', '2025-12-17 19:46:49', 'dOOOlzWd', '6101169'), - (492, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOOOlzWd', '6101361'), - (492, 2075, 'attending', '2023-06-29 20:17:44', '2025-12-17 19:46:50', 'dOOOlzWd', '6107314'), - (492, 2093, 'attending', '2023-06-12 20:49:30', '2025-12-17 19:47:04', 'dOOOlzWd', '6132598'), - (492, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dOOOlzWd', '6136733'), - (492, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOOOlzWd', '6137989'), - (492, 2097, 'attending', '2023-06-12 00:43:58', '2025-12-17 19:47:04', 'dOOOlzWd', '6139059'), - (492, 2098, 'attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dOOOlzWd', '6139831'), - (492, 2099, 'maybe', '2023-06-12 20:49:39', '2025-12-17 19:46:49', 'dOOOlzWd', '6143012'), - (492, 2103, 'attending', '2023-06-18 13:44:10', '2025-12-17 19:46:50', 'dOOOlzWd', '6149451'), - (492, 2104, 'attending', '2023-06-18 13:44:29', '2025-12-17 19:46:50', 'dOOOlzWd', '6149499'), - (492, 2105, 'attending', '2023-06-18 16:43:25', '2025-12-17 19:46:50', 'dOOOlzWd', '6149551'), - (492, 2106, 'attending', '2023-06-18 13:44:14', '2025-12-17 19:46:50', 'dOOOlzWd', '6150479'), - (492, 2107, 'attending', '2023-06-18 13:44:19', '2025-12-17 19:46:50', 'dOOOlzWd', '6150480'), - (492, 2108, 'attending', '2023-06-18 16:43:33', '2025-12-17 19:46:50', 'dOOOlzWd', '6150864'), - (492, 2110, 'attending', '2023-06-19 23:13:41', '2025-12-17 19:46:50', 'dOOOlzWd', '6155491'), - (492, 2112, 'maybe', '2023-06-19 23:13:36', '2025-12-17 19:46:50', 'dOOOlzWd', '6156213'), - (492, 2113, 'attending', '2023-06-19 23:13:32', '2025-12-17 19:46:50', 'dOOOlzWd', '6156215'), - (492, 2114, 'attending', '2023-06-19 23:13:10', '2025-12-17 19:46:50', 'dOOOlzWd', '6158648'), - (492, 2115, 'maybe', '2023-06-30 16:51:12', '2025-12-17 19:46:50', 'dOOOlzWd', '6161437'), - (492, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOOOlzWd', '6164417'), - (492, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOOOlzWd', '6166388'), - (492, 2121, 'maybe', '2023-06-28 16:33:51', '2025-12-17 19:46:50', 'dOOOlzWd', '6176439'), - (492, 2122, 'attending', '2023-07-05 19:34:10', '2025-12-17 19:46:51', 'dOOOlzWd', '6176476'), - (492, 2123, 'attending', '2023-06-28 16:33:59', '2025-12-17 19:46:50', 'dOOOlzWd', '6176502'), - (492, 2124, 'attending', '2023-06-29 20:18:23', '2025-12-17 19:46:51', 'dOOOlzWd', '6176988'), - (492, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOOOlzWd', '6182410'), - (492, 2129, 'attending', '2023-07-05 19:33:04', '2025-12-17 19:46:51', 'dOOOlzWd', '6182825'), - (492, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOOOlzWd', '6185812'), - (492, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOOOlzWd', '6187651'), - (492, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOOOlzWd', '6187963'), - (492, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOOOlzWd', '6187964'), - (492, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOOOlzWd', '6187966'), - (492, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOOOlzWd', '6187967'), - (492, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOOOlzWd', '6187969'), - (492, 2141, 'attending', '2023-07-08 14:29:38', '2025-12-17 19:46:52', 'dOOOlzWd', '6188819'), - (492, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOOOlzWd', '6334878'), - (492, 2146, 'attending', '2023-07-16 22:32:43', '2025-12-17 19:46:53', 'dOOOlzWd', '6335638'), - (492, 2148, 'attending', '2023-07-16 22:34:05', '2025-12-17 19:46:53', 'dOOOlzWd', '6335667'), - (492, 2150, 'attending', '2023-07-10 00:09:57', '2025-12-17 19:46:52', 'dOOOlzWd', '6335687'), - (492, 2152, 'attending', '2023-07-13 19:15:15', '2025-12-17 19:46:52', 'dOOOlzWd', '6337021'), - (492, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOOOlzWd', '6337236'), - (492, 2155, 'attending', '2023-07-12 22:48:14', '2025-12-17 19:46:53', 'dOOOlzWd', '6337970'), - (492, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOOOlzWd', '6338308'), - (492, 2157, 'not_attending', '2023-07-12 21:54:01', '2025-12-17 19:46:52', 'dOOOlzWd', '6338342'), - (492, 2159, 'attending', '2023-07-14 13:41:27', '2025-12-17 19:46:53', 'dOOOlzWd', '6338355'), - (492, 2160, 'not_attending', '2023-07-14 13:41:29', '2025-12-17 19:46:54', 'dOOOlzWd', '6338358'), - (492, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOOOlzWd', '6341710'), - (492, 2164, 'maybe', '2023-07-17 20:52:04', '2025-12-17 19:46:54', 'dOOOlzWd', '6341797'), - (492, 2165, 'attending', '2023-07-31 18:30:40', '2025-12-17 19:46:54', 'dOOOlzWd', '6342044'), - (492, 2166, 'attending', '2023-07-17 20:52:11', '2025-12-17 19:46:54', 'dOOOlzWd', '6342115'), - (492, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOOOlzWd', '6342298'), - (492, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOOOlzWd', '6343294'), - (492, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOOOlzWd', '6347034'), - (492, 2177, 'attending', '2023-08-06 12:11:37', '2025-12-17 19:46:55', 'dOOOlzWd', '6347053'), - (492, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOOOlzWd', '6347056'), - (492, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOOOlzWd', '6353830'), - (492, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOOOlzWd', '6353831'), - (492, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOOOlzWd', '6357867'), - (492, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOOOlzWd', '6358652'), - (492, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dOOOlzWd', '6358668'), - (492, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dOOOlzWd', '6358669'), - (492, 2195, 'attending', '2023-08-21 14:52:00', '2025-12-17 19:46:55', 'dOOOlzWd', '6359397'), - (492, 2197, 'attending', '2023-09-15 22:41:18', '2025-12-17 19:46:44', 'dOOOlzWd', '6359399'), - (492, 2198, 'attending', '2023-09-17 19:11:59', '2025-12-17 19:46:45', 'dOOOlzWd', '6359400'), - (492, 2199, 'attending', '2023-08-16 14:41:03', '2025-12-17 19:46:55', 'dOOOlzWd', '6359849'), - (492, 2200, 'attending', '2023-08-09 13:02:30', '2025-12-17 19:46:55', 'dOOOlzWd', '6359850'), - (492, 2202, 'maybe', '2023-08-06 18:26:00', '2025-12-17 19:46:54', 'dOOOlzWd', '6360509'), - (492, 2204, 'attending', '2023-08-19 17:01:55', '2025-12-17 19:46:55', 'dOOOlzWd', '6361542'), - (492, 2208, 'attending', '2023-08-09 13:01:52', '2025-12-17 19:46:54', 'dOOOlzWd', '6361709'), - (492, 2209, 'maybe', '2023-08-23 13:58:05', '2025-12-17 19:46:55', 'dOOOlzWd', '6361710'), - (492, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOOOlzWd', '6361711'), - (492, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOOOlzWd', '6361712'), - (492, 2212, 'attending', '2023-09-27 12:05:15', '2025-12-17 19:46:45', 'dOOOlzWd', '6361713'), - (492, 2214, 'attending', '2023-08-13 12:59:12', '2025-12-17 19:46:55', 'dOOOlzWd', '6363218'), - (492, 2215, 'attending', '2023-08-11 19:44:10', '2025-12-17 19:46:55', 'dOOOlzWd', '6363479'), - (492, 2225, 'attending', '2023-08-29 18:06:56', '2025-12-17 19:46:55', 'dOOOlzWd', '6368434'), - (492, 2232, 'attending', '2023-08-21 14:51:44', '2025-12-17 19:46:55', 'dOOOlzWd', '6374818'), - (492, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOOOlzWd', '6382573'), - (492, 2239, 'attending', '2023-09-01 16:37:01', '2025-12-17 19:46:56', 'dOOOlzWd', '6387592'), - (492, 2240, 'attending', '2023-09-06 12:05:06', '2025-12-17 19:46:56', 'dOOOlzWd', '6388603'), - (492, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOOOlzWd', '6388604'), - (492, 2242, 'not_attending', '2023-09-17 19:11:52', '2025-12-17 19:46:45', 'dOOOlzWd', '6388606'), - (492, 2245, 'attending', '2023-09-22 20:45:11', '2025-12-17 19:46:45', 'dOOOlzWd', '6393703'), - (492, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOOOlzWd', '6394629'), - (492, 2249, 'attending', '2023-09-20 16:11:56', '2025-12-17 19:46:45', 'dOOOlzWd', '6394630'), - (492, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOOOlzWd', '6394631'), - (492, 2252, 'attending', '2023-09-22 20:45:18', '2025-12-17 19:46:45', 'dOOOlzWd', '6396837'), - (492, 2253, 'maybe', '2023-09-25 19:42:12', '2025-12-17 19:46:45', 'dOOOlzWd', '6401811'), - (492, 2258, 'attending', '2023-09-22 20:45:47', '2025-12-17 19:46:45', 'dOOOlzWd', '6419492'), - (492, 2259, 'not_attending', '2023-09-22 20:38:11', '2025-12-17 19:46:45', 'dOOOlzWd', '6421257'), - (492, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOOOlzWd', '6440863'), - (492, 2270, 'attending', '2023-10-04 22:18:19', '2025-12-17 19:46:46', 'dOOOlzWd', '6443067'), - (492, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOOOlzWd', '6445440'), - (492, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOOOlzWd', '6453951'), - (492, 2284, 'maybe', '2023-10-10 18:19:53', '2025-12-17 19:46:46', 'dOOOlzWd', '6460928'), - (492, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOOOlzWd', '6461696'), - (492, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOOOlzWd', '6462129'), - (492, 2290, 'attending', '2023-10-18 18:26:50', '2025-12-17 19:46:46', 'dOOOlzWd', '6462214'), - (492, 2291, 'attending', '2023-10-18 18:26:58', '2025-12-17 19:46:46', 'dOOOlzWd', '6462215'), - (492, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOOOlzWd', '6463218'), - (492, 2299, 'attending', '2023-10-18 18:27:04', '2025-12-17 19:46:46', 'dOOOlzWd', '6472181'), - (492, 2302, 'attending', '2023-10-23 21:26:01', '2025-12-17 19:46:46', 'dOOOlzWd', '6482535'), - (492, 2303, 'attending', '2023-10-25 16:16:37', '2025-12-17 19:46:47', 'dOOOlzWd', '6482691'), - (492, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOOOlzWd', '6482693'), - (492, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dOOOlzWd', '6484200'), - (492, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOOOlzWd', '6484680'), - (492, 2317, 'attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOOOlzWd', '6507741'), - (492, 2318, 'not_attending', '2023-10-30 23:06:29', '2025-12-17 19:46:47', 'dOOOlzWd', '6508566'), - (492, 2322, 'attending', '2023-11-14 20:27:05', '2025-12-17 19:46:48', 'dOOOlzWd', '6514659'), - (492, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOOOlzWd', '6514660'), - (492, 2324, 'attending', '2023-12-09 17:48:39', '2025-12-17 19:46:49', 'dOOOlzWd', '6514662'), - (492, 2325, 'not_attending', '2023-12-13 22:37:17', '2025-12-17 19:46:36', 'dOOOlzWd', '6514663'), - (492, 2327, 'maybe', '2023-11-02 19:42:41', '2025-12-17 19:46:47', 'dOOOlzWd', '6515494'), - (492, 2331, 'attending', '2023-11-14 20:26:12', '2025-12-17 19:46:47', 'dOOOlzWd', '6518640'), - (492, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOOOlzWd', '6519103'), - (492, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOOOlzWd', '6535681'), - (492, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOOOlzWd', '6584747'), - (492, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOOOlzWd', '6587097'), - (492, 2356, 'attending', '2023-12-10 19:12:59', '2025-12-17 19:46:36', 'dOOOlzWd', '6593340'), - (492, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOOOlzWd', '6609022'), - (492, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOOOlzWd', '6632757'), - (492, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOOOlzWd', '6644187'), - (492, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOOOlzWd', '6648951'), - (492, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOOOlzWd', '6648952'), - (492, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOOOlzWd', '6655401'), - (492, 2399, 'attending', '2024-01-07 18:51:02', '2025-12-17 19:46:37', 'dOOOlzWd', '6657583'), - (492, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOOOlzWd', '6661585'), - (492, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOOOlzWd', '6661588'), - (492, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOOOlzWd', '6661589'), - (492, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOOOlzWd', '6699906'), - (492, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOOOlzWd', '6699913'), - (492, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOOOlzWd', '6701109'), - (492, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOOOlzWd', '6705219'), - (492, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOOOlzWd', '6710153'), - (492, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOOOlzWd', '6711552'), - (492, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOOOlzWd', '6711553'), - (492, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOOOlzWd', '6722688'), - (492, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOOOlzWd', '6730620'), - (492, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOOOlzWd', '6730642'), - (492, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOOOlzWd', '6740364'), - (492, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOOOlzWd', '6743829'), - (492, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOOOlzWd', '7030380'), - (492, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOOOlzWd', '7033677'), - (492, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOOOlzWd', '7035415'), - (492, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOOOlzWd', '7044715'), - (492, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOOOlzWd', '7050318'), - (492, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOOOlzWd', '7050319'), - (492, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOOOlzWd', '7050322'), - (492, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOOOlzWd', '7057804'), - (492, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dOOOlzWd', '7059866'), - (492, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOOOlzWd', '7072824'), - (492, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOOOlzWd', '7074348'), - (492, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOOOlzWd', '7089267'), - (492, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOOOlzWd', '7098747'), - (492, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOOOlzWd', '7113468'), - (492, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOOOlzWd', '7114856'), - (492, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOOOlzWd', '7114951'), - (492, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOOOlzWd', '7114955'), - (492, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOOOlzWd', '7114956'), - (492, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dOOOlzWd', '7114957'), - (492, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOOOlzWd', '7153615'), - (492, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOOOlzWd', '7159484'), - (492, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOOOlzWd', '7178446'), - (492, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOOOlzWd', '7220467'), - (492, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dOOOlzWd', '7240354'), - (492, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOOOlzWd', '7251633'), - (492, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dOOOlzWd', '7263048'), - (492, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOOOlzWd', '7302674'), - (493, 1518, 'attending', '2022-09-01 17:26:52', '2025-12-17 19:47:24', 'dJPNk9nA', '5441131'), - (493, 1519, 'attending', '2022-08-29 20:13:18', '2025-12-17 19:47:24', 'dJPNk9nA', '5441132'), - (493, 1544, 'maybe', '2022-09-13 22:53:37', '2025-12-17 19:47:11', 'dJPNk9nA', '5454517'), - (493, 1558, 'attending', '2022-09-12 15:08:05', '2025-12-17 19:47:10', 'dJPNk9nA', '5458730'), - (493, 1559, 'attending', '2022-09-26 12:45:00', '2025-12-17 19:47:11', 'dJPNk9nA', '5458731'), - (493, 1584, 'not_attending', '2022-08-29 20:13:50', '2025-12-17 19:47:23', 'dJPNk9nA', '5492004'), - (493, 1600, 'not_attending', '2022-08-29 21:31:04', '2025-12-17 19:47:24', 'dJPNk9nA', '5496569'), - (493, 1606, 'maybe', '2022-08-29 21:29:39', '2025-12-17 19:47:23', 'dJPNk9nA', '5504585'), - (493, 1608, 'attending', '2022-08-29 20:13:38', '2025-12-17 19:47:24', 'dJPNk9nA', '5505059'), - (493, 1609, 'attending', '2022-08-29 20:09:08', '2025-12-17 19:47:23', 'dJPNk9nA', '5506590'), - (493, 1610, 'not_attending', '2022-08-29 21:29:36', '2025-12-17 19:47:23', 'dJPNk9nA', '5506595'), - (493, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dJPNk9nA', '5509055'), - (493, 1617, 'not_attending', '2022-08-29 20:12:44', '2025-12-17 19:47:24', 'dJPNk9nA', '5512003'), - (493, 1618, 'not_attending', '2022-08-29 20:13:55', '2025-12-17 19:47:23', 'dJPNk9nA', '5512005'), - (493, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'dJPNk9nA', '5513985'), - (493, 1626, 'attending', '2022-09-20 00:10:17', '2025-12-17 19:47:11', 'dJPNk9nA', '5519981'), - (493, 1629, 'attending', '2022-09-19 16:59:00', '2025-12-17 19:47:11', 'dJPNk9nA', '5522550'), - (493, 1630, 'attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'dJPNk9nA', '5534683'), - (493, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dJPNk9nA', '5537735'), - (493, 1636, 'attending', '2022-09-04 17:53:04', '2025-12-17 19:47:24', 'dJPNk9nA', '5538454'), - (493, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dJPNk9nA', '5540859'), - (493, 1641, 'attending', '2022-09-03 01:55:28', '2025-12-17 19:47:24', 'dJPNk9nA', '5544226'), - (493, 1643, 'maybe', '2022-09-26 16:03:11', '2025-12-17 19:47:11', 'dJPNk9nA', '5545856'), - (493, 1644, 'attending', '2022-09-20 00:09:51', '2025-12-17 19:47:11', 'dJPNk9nA', '5545857'), - (493, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dJPNk9nA', '5546619'), - (493, 1655, 'not_attending', '2022-09-26 16:03:13', '2025-12-17 19:47:11', 'dJPNk9nA', '5554482'), - (493, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dJPNk9nA', '5555245'), - (493, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dJPNk9nA', '5557747'), - (493, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dJPNk9nA', '5560255'), - (493, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dJPNk9nA', '5562906'), - (493, 1666, 'attending', '2022-09-26 16:02:16', '2025-12-17 19:47:11', 'dJPNk9nA', '5563208'), - (493, 1667, 'attending', '2022-09-23 19:15:45', '2025-12-17 19:47:11', 'dJPNk9nA', '5563221'), - (493, 1668, 'attending', '2022-09-20 00:10:21', '2025-12-17 19:47:12', 'dJPNk9nA', '5563222'), - (493, 1673, 'not_attending', '2022-09-26 16:04:53', '2025-12-17 19:47:11', 'dJPNk9nA', '5592454'), - (493, 1674, 'maybe', '2022-09-26 16:04:58', '2025-12-17 19:47:12', 'dJPNk9nA', '5593112'), - (493, 1677, 'attending', '2022-09-22 01:32:27', '2025-12-17 19:47:11', 'dJPNk9nA', '5600604'), - (493, 1680, 'not_attending', '2022-09-26 16:03:20', '2025-12-17 19:47:11', 'dJPNk9nA', '5601577'), - (493, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dJPNk9nA', '5605544'), - (493, 1698, 'attending', '2022-09-26 16:03:23', '2025-12-17 19:47:11', 'dJPNk9nA', '5606366'), - (493, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'dJPNk9nA', '5606737'), - (493, 1701, 'not_attending', '2022-09-27 17:46:08', '2025-12-17 19:47:11', 'dJPNk9nA', '5607857'), - (493, 1708, 'attending', '2022-10-05 20:02:35', '2025-12-17 19:47:12', 'dJPNk9nA', '5617648'), - (493, 1711, 'maybe', '2022-10-06 10:17:30', '2025-12-17 19:47:12', 'dJPNk9nA', '5621883'), - (493, 1712, 'attending', '2022-10-12 13:26:25', '2025-12-17 19:47:12', 'dJPNk9nA', '5622073'), - (493, 1713, 'maybe', '2022-10-18 18:30:52', '2025-12-17 19:47:13', 'dJPNk9nA', '5622108'), - (493, 1714, 'attending', '2022-10-16 02:36:58', '2025-12-17 19:47:14', 'dJPNk9nA', '5622347'), - (493, 1717, 'not_attending', '2022-10-17 13:49:53', '2025-12-17 19:47:13', 'dJPNk9nA', '5622842'), - (493, 1718, 'maybe', '2022-10-05 02:41:19', '2025-12-17 19:47:12', 'dJPNk9nA', '5630907'), - (493, 1719, 'not_attending', '2022-10-05 20:02:53', '2025-12-17 19:47:12', 'dJPNk9nA', '5630958'), - (493, 1720, 'attending', '2022-10-11 18:32:45', '2025-12-17 19:47:12', 'dJPNk9nA', '5630959'), - (493, 1721, 'attending', '2022-10-16 02:36:28', '2025-12-17 19:47:13', 'dJPNk9nA', '5630960'), - (493, 1722, 'attending', '2022-10-24 11:28:43', '2025-12-17 19:47:14', 'dJPNk9nA', '5630961'), - (493, 1723, 'attending', '2022-10-16 02:37:22', '2025-12-17 19:47:15', 'dJPNk9nA', '5630962'), - (493, 1724, 'attending', '2022-10-24 16:30:07', '2025-12-17 19:47:15', 'dJPNk9nA', '5630966'), - (493, 1725, 'maybe', '2022-10-24 16:30:18', '2025-12-17 19:47:16', 'dJPNk9nA', '5630967'), - (493, 1726, 'attending', '2022-10-24 16:30:32', '2025-12-17 19:47:16', 'dJPNk9nA', '5630968'), - (493, 1727, 'not_attending', '2022-10-24 16:30:37', '2025-12-17 19:47:16', 'dJPNk9nA', '5630969'), - (493, 1730, 'maybe', '2022-10-10 15:38:22', '2025-12-17 19:47:12', 'dJPNk9nA', '5634666'), - (493, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dJPNk9nA', '5635406'), - (493, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dJPNk9nA', '5638765'), - (493, 1739, 'attending', '2022-10-24 16:31:13', '2025-12-17 19:47:14', 'dJPNk9nA', '5640097'), - (493, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dJPNk9nA', '5640843'), - (493, 1741, 'maybe', '2022-10-10 15:38:31', '2025-12-17 19:47:12', 'dJPNk9nA', '5641132'), - (493, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dJPNk9nA', '5641521'), - (493, 1744, 'attending', '2022-11-23 13:08:39', '2025-12-17 19:47:16', 'dJPNk9nA', '5642818'), - (493, 1745, 'maybe', '2022-10-12 15:38:58', '2025-12-17 19:47:12', 'dJPNk9nA', '5643088'), - (493, 1747, 'maybe', '2022-10-24 16:29:20', '2025-12-17 19:47:14', 'dJPNk9nA', '5648009'), - (493, 1750, 'attending', '2022-11-01 21:34:46', '2025-12-17 19:47:15', 'dJPNk9nA', '5652365'), - (493, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dJPNk9nA', '5652395'), - (493, 1754, 'attending', '2022-10-18 10:56:56', '2025-12-17 19:47:12', 'dJPNk9nA', '5659773'), - (493, 1756, 'not_attending', '2022-10-24 16:31:09', '2025-12-17 19:47:13', 'dJPNk9nA', '5663338'), - (493, 1757, 'attending', '2022-10-31 16:44:08', '2025-12-17 19:47:15', 'dJPNk9nA', '5668974'), - (493, 1761, 'not_attending', '2022-10-31 11:00:03', '2025-12-17 19:47:16', 'dJPNk9nA', '5670434'), - (493, 1762, 'attending', '2022-11-28 14:00:14', '2025-12-17 19:47:16', 'dJPNk9nA', '5670445'), - (493, 1763, 'attending', '2022-11-11 12:47:04', '2025-12-17 19:47:15', 'dJPNk9nA', '5670803'), - (493, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dJPNk9nA', '5671637'), - (493, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dJPNk9nA', '5672329'), - (493, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dJPNk9nA', '5674057'), - (493, 1767, 'maybe', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dJPNk9nA', '5674060'), - (493, 1768, 'not_attending', '2022-11-07 13:28:40', '2025-12-17 19:47:16', 'dJPNk9nA', '5674062'), - (493, 1772, 'attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dJPNk9nA', '5677461'), - (493, 1773, 'attending', '2022-10-31 18:08:49', '2025-12-17 19:47:14', 'dJPNk9nA', '5677707'), - (493, 1776, 'attending', '2022-11-08 21:58:39', '2025-12-17 19:47:15', 'dJPNk9nA', '5691067'), - (493, 1777, 'attending', '2022-11-07 13:29:13', '2025-12-17 19:47:15', 'dJPNk9nA', '5693021'), - (493, 1780, 'attending', '2022-11-07 20:47:03', '2025-12-17 19:47:15', 'dJPNk9nA', '5696082'), - (493, 1781, 'attending', '2022-11-02 16:38:53', '2025-12-17 19:47:15', 'dJPNk9nA', '5696178'), - (493, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dJPNk9nA', '5698046'), - (493, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dJPNk9nA', '5699760'), - (493, 1789, 'not_attending', '2022-11-10 18:55:18', '2025-12-17 19:47:15', 'dJPNk9nA', '5727274'), - (493, 1792, 'not_attending', '2022-11-10 18:55:16', '2025-12-17 19:47:15', 'dJPNk9nA', '5728512'), - (493, 1793, 'attending', '2022-11-21 12:42:21', '2025-12-17 19:47:16', 'dJPNk9nA', '5736365'), - (493, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dJPNk9nA', '5741601'), - (493, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dJPNk9nA', '5763458'), - (493, 1799, 'attending', '2022-11-21 12:42:23', '2025-12-17 19:47:16', 'dJPNk9nA', '5764666'), - (493, 1803, 'attending', '2023-01-07 23:56:22', '2025-12-17 19:47:05', 'dJPNk9nA', '5764673'), - (493, 1804, 'attending', '2023-01-24 20:33:58', '2025-12-17 19:47:06', 'dJPNk9nA', '5764674'), - (493, 1805, 'attending', '2023-02-03 16:20:05', '2025-12-17 19:47:06', 'dJPNk9nA', '5764675'), - (493, 1806, 'attending', '2023-01-17 14:45:47', '2025-12-17 19:47:05', 'dJPNk9nA', '5764676'), - (493, 1808, 'not_attending', '2023-02-20 00:48:02', '2025-12-17 19:47:08', 'dJPNk9nA', '5764678'), - (493, 1809, 'not_attending', '2023-04-03 11:02:17', '2025-12-17 19:46:59', 'dJPNk9nA', '5764679'), - (493, 1810, 'attending', '2023-04-20 18:29:13', '2025-12-17 19:47:00', 'dJPNk9nA', '5764680'), - (493, 1811, 'attending', '2023-05-06 20:26:45', '2025-12-17 19:47:02', 'dJPNk9nA', '5764681'), - (493, 1812, 'attending', '2023-03-08 00:31:53', '2025-12-17 19:47:09', 'dJPNk9nA', '5764682'), - (493, 1814, 'not_attending', '2023-02-09 00:36:20', '2025-12-17 19:47:08', 'dJPNk9nA', '5764684'), - (493, 1816, 'attending', '2023-05-20 19:55:59', '2025-12-17 19:47:03', 'dJPNk9nA', '5764686'), - (493, 1817, 'attending', '2023-03-25 06:41:40', '2025-12-17 19:46:57', 'dJPNk9nA', '5764687'), - (493, 1818, 'maybe', '2023-02-11 23:42:35', '2025-12-17 19:47:07', 'dJPNk9nA', '5764688'), - (493, 1820, 'attending', '2023-03-25 06:43:45', '2025-12-17 19:46:58', 'dJPNk9nA', '5764690'), - (493, 1821, 'attending', '2023-03-17 11:28:38', '2025-12-17 19:46:56', 'dJPNk9nA', '5764691'), - (493, 1822, 'not_attending', '2023-04-19 09:36:09', '2025-12-17 19:47:02', 'dJPNk9nA', '5764692'), - (493, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dJPNk9nA', '5774172'), - (493, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dJPNk9nA', '5818247'), - (493, 1834, 'attending', '2022-12-10 14:44:09', '2025-12-17 19:47:17', 'dJPNk9nA', '5819470'), - (493, 1835, 'attending', '2022-12-28 01:46:37', '2025-12-17 19:47:05', 'dJPNk9nA', '5819471'), - (493, 1839, 'not_attending', '2022-12-20 20:32:16', '2025-12-17 19:47:04', 'dJPNk9nA', '5821920'), - (493, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dJPNk9nA', '5827739'), - (493, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dJPNk9nA', '5844306'), - (493, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dJPNk9nA', '5850159'), - (493, 1848, 'maybe', '2023-01-03 16:33:11', '2025-12-17 19:47:05', 'dJPNk9nA', '5852466'), - (493, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dJPNk9nA', '5858999'), - (493, 1851, 'not_attending', '2023-01-09 01:46:31', '2025-12-17 19:47:05', 'dJPNk9nA', '5869316'), - (493, 1852, 'attending', '2023-01-11 12:49:38', '2025-12-17 19:47:05', 'dJPNk9nA', '5869898'), - (493, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dJPNk9nA', '5871984'), - (493, 1856, 'not_attending', '2023-01-17 14:17:40', '2025-12-17 19:47:05', 'dJPNk9nA', '5873970'), - (493, 1857, 'not_attending', '2023-01-17 14:18:12', '2025-12-17 19:47:05', 'dJPNk9nA', '5873973'), - (493, 1859, 'maybe', '2023-01-17 14:18:03', '2025-12-17 19:47:05', 'dJPNk9nA', '5876234'), - (493, 1861, 'attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dJPNk9nA', '5876354'), - (493, 1863, 'maybe', '2023-01-17 14:18:24', '2025-12-17 19:47:06', 'dJPNk9nA', '5877255'), - (493, 1864, 'attending', '2023-01-17 14:18:06', '2025-12-17 19:47:05', 'dJPNk9nA', '5879675'), - (493, 1865, 'attending', '2023-01-17 14:18:18', '2025-12-17 19:47:06', 'dJPNk9nA', '5879676'), - (493, 1866, 'attending', '2023-01-17 14:18:15', '2025-12-17 19:47:05', 'dJPNk9nA', '5880939'), - (493, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dJPNk9nA', '5880940'), - (493, 1868, 'maybe', '2023-01-25 04:09:18', '2025-12-17 19:47:07', 'dJPNk9nA', '5880942'), - (493, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dJPNk9nA', '5880943'), - (493, 1870, 'not_attending', '2023-01-20 13:05:05', '2025-12-17 19:47:05', 'dJPNk9nA', '5881740'), - (493, 1873, 'attending', '2023-01-21 18:54:08', '2025-12-17 19:47:05', 'dJPNk9nA', '5885295'), - (493, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dJPNk9nA', '5887890'), - (493, 1875, 'not_attending', '2023-01-23 01:25:24', '2025-12-17 19:47:06', 'dJPNk9nA', '5887908'), - (493, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dJPNk9nA', '5888598'), - (493, 1880, 'attending', '2023-01-24 20:38:47', '2025-12-17 19:47:06', 'dJPNk9nA', '5893260'), - (493, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dJPNk9nA', '5899826'), - (493, 1885, 'not_attending', '2023-02-22 15:03:04', '2025-12-17 19:47:08', 'dJPNk9nA', '5899928'), - (493, 1886, 'not_attending', '2023-03-08 00:31:44', '2025-12-17 19:47:09', 'dJPNk9nA', '5899930'), - (493, 1888, 'not_attending', '2023-02-13 23:06:12', '2025-12-17 19:47:07', 'dJPNk9nA', '5900197'), - (493, 1889, 'attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dJPNk9nA', '5900199'), - (493, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dJPNk9nA', '5900200'), - (493, 1891, 'attending', '2023-03-21 00:46:42', '2025-12-17 19:46:56', 'dJPNk9nA', '5900202'), - (493, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dJPNk9nA', '5900203'), - (493, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dJPNk9nA', '5901108'), - (493, 1896, 'maybe', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dJPNk9nA', '5901126'), - (493, 1897, 'attending', '2023-02-05 19:07:10', '2025-12-17 19:47:07', 'dJPNk9nA', '5901128'), - (493, 1898, 'maybe', '2023-02-01 20:51:30', '2025-12-17 19:47:06', 'dJPNk9nA', '5901263'), - (493, 1899, 'attending', '2023-02-10 23:30:22', '2025-12-17 19:47:07', 'dJPNk9nA', '5901323'), - (493, 1906, 'not_attending', '2023-03-09 22:04:44', '2025-12-17 19:47:09', 'dJPNk9nA', '5904523'), - (493, 1908, 'not_attending', '2023-02-13 23:05:36', '2025-12-17 19:47:07', 'dJPNk9nA', '5905018'), - (493, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dJPNk9nA', '5909655'), - (493, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dJPNk9nA', '5910522'), - (493, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dJPNk9nA', '5910526'), - (493, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dJPNk9nA', '5910528'), - (493, 1920, 'maybe', '2023-02-13 15:55:03', '2025-12-17 19:47:07', 'dJPNk9nA', '5914091'), - (493, 1921, 'maybe', '2023-02-27 18:29:47', '2025-12-17 19:47:08', 'dJPNk9nA', '5914092'), - (493, 1922, 'not_attending', '2023-02-12 02:58:22', '2025-12-17 19:47:07', 'dJPNk9nA', '5916219'), - (493, 1926, 'maybe', '2023-03-02 13:49:08', '2025-12-17 19:47:08', 'dJPNk9nA', '5932620'), - (493, 1929, 'not_attending', '2023-02-20 12:10:21', '2025-12-17 19:47:07', 'dJPNk9nA', '5932628'), - (493, 1930, 'maybe', '2023-02-22 15:03:12', '2025-12-17 19:47:08', 'dJPNk9nA', '5933462'), - (493, 1931, 'maybe', '2023-02-22 15:03:17', '2025-12-17 19:47:08', 'dJPNk9nA', '5933464'), - (493, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dJPNk9nA', '5936234'), - (493, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dJPNk9nA', '5958351'), - (493, 1936, 'attending', '2023-02-27 17:04:28', '2025-12-17 19:47:08', 'dJPNk9nA', '5959397'), - (493, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dJPNk9nA', '5959751'), - (493, 1939, 'maybe', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dJPNk9nA', '5959755'), - (493, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dJPNk9nA', '5960055'), - (493, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dJPNk9nA', '5961684'), - (493, 1943, 'attending', '2023-03-14 16:44:49', '2025-12-17 19:47:10', 'dJPNk9nA', '5962091'), - (493, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dJPNk9nA', '5962132'), - (493, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dJPNk9nA', '5962133'), - (493, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dJPNk9nA', '5962134'), - (493, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dJPNk9nA', '5962317'), - (493, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dJPNk9nA', '5962318'), - (493, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dJPNk9nA', '5965933'), - (493, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dJPNk9nA', '5967014'), - (493, 1955, 'attending', '2023-03-29 21:54:21', '2025-12-17 19:46:57', 'dJPNk9nA', '5972529'), - (493, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dJPNk9nA', '5972763'), - (493, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dJPNk9nA', '5972815'), - (493, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dJPNk9nA', '5974016'), - (493, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dJPNk9nA', '5981515'), - (493, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dJPNk9nA', '5993516'), - (493, 1971, 'attending', '2023-03-20 21:29:33', '2025-12-17 19:46:56', 'dJPNk9nA', '5993765'), - (493, 1972, 'attending', '2023-03-19 02:31:08', '2025-12-17 19:46:56', 'dJPNk9nA', '5993776'), - (493, 1973, 'attending', '2023-03-17 11:28:07', '2025-12-17 19:46:56', 'dJPNk9nA', '5993777'), - (493, 1974, 'maybe', '2023-03-25 06:42:44', '2025-12-17 19:46:57', 'dJPNk9nA', '5993778'), - (493, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dJPNk9nA', '5998939'), - (493, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dJPNk9nA', '6028191'), - (493, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dJPNk9nA', '6040066'), - (493, 1983, 'not_attending', '2023-04-03 11:02:19', '2025-12-17 19:46:59', 'dJPNk9nA', '6040068'), - (493, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dJPNk9nA', '6042717'), - (493, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dJPNk9nA', '6044838'), - (493, 1987, 'not_attending', '2023-04-16 22:23:04', '2025-12-17 19:47:00', 'dJPNk9nA', '6044839'), - (493, 1988, 'attending', '2023-04-03 11:01:56', '2025-12-17 19:47:01', 'dJPNk9nA', '6044840'), - (493, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJPNk9nA', '6045684'), - (493, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dJPNk9nA', '6050104'), - (493, 1996, 'attending', '2023-04-03 22:54:37', '2025-12-17 19:46:58', 'dJPNk9nA', '6050667'), - (493, 1998, 'maybe', '2023-04-09 03:05:25', '2025-12-17 19:46:59', 'dJPNk9nA', '6052056'), - (493, 2002, 'not_attending', '2023-04-26 21:46:52', '2025-12-17 19:47:01', 'dJPNk9nA', '6052605'), - (493, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dJPNk9nA', '6053195'), - (493, 2006, 'not_attending', '2023-04-05 13:59:53', '2025-12-17 19:46:59', 'dJPNk9nA', '6053198'), - (493, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dJPNk9nA', '6056085'), - (493, 2011, 'maybe', '2023-04-09 03:05:29', '2025-12-17 19:46:59', 'dJPNk9nA', '6056916'), - (493, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dJPNk9nA', '6059290'), - (493, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dJPNk9nA', '6060328'), - (493, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dJPNk9nA', '6061037'), - (493, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dJPNk9nA', '6061039'), - (493, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dJPNk9nA', '6067245'), - (493, 2025, 'not_attending', '2023-04-20 18:29:30', '2025-12-17 19:47:00', 'dJPNk9nA', '6067457'), - (493, 2026, 'not_attending', '2023-04-26 21:46:39', '2025-12-17 19:47:01', 'dJPNk9nA', '6068078'), - (493, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dJPNk9nA', '6068094'), - (493, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dJPNk9nA', '6068252'), - (493, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dJPNk9nA', '6068253'), - (493, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dJPNk9nA', '6068254'), - (493, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dJPNk9nA', '6068280'), - (493, 2032, 'not_attending', '2023-05-31 20:29:13', '2025-12-17 19:47:04', 'dJPNk9nA', '6068281'), - (493, 2033, 'maybe', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dJPNk9nA', '6069093'), - (493, 2034, 'not_attending', '2023-04-20 18:29:32', '2025-12-17 19:47:00', 'dJPNk9nA', '6069372'), - (493, 2038, 'not_attending', '2023-04-26 21:46:46', '2025-12-17 19:47:01', 'dJPNk9nA', '6071944'), - (493, 2040, 'not_attending', '2023-04-26 21:46:42', '2025-12-17 19:47:01', 'dJPNk9nA', '6072453'), - (493, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dJPNk9nA', '6072528'), - (493, 2042, 'not_attending', '2023-04-26 21:46:33', '2025-12-17 19:47:01', 'dJPNk9nA', '6072941'), - (493, 2043, 'attending', '2023-04-26 21:46:28', '2025-12-17 19:47:01', 'dJPNk9nA', '6073023'), - (493, 2044, 'not_attending', '2023-05-23 11:34:17', '2025-12-17 19:47:03', 'dJPNk9nA', '6073678'), - (493, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dJPNk9nA', '6079840'), - (493, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dJPNk9nA', '6083398'), - (493, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dJPNk9nA', '6093504'), - (493, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dJPNk9nA', '6097414'), - (493, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dJPNk9nA', '6097442'), - (493, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dJPNk9nA', '6097684'), - (493, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dJPNk9nA', '6098762'), - (493, 2064, 'not_attending', '2023-06-03 20:07:32', '2025-12-17 19:46:50', 'dJPNk9nA', '6099988'), - (493, 2065, 'not_attending', '2023-06-03 20:07:28', '2025-12-17 19:46:49', 'dJPNk9nA', '6101169'), - (493, 2066, 'not_attending', '2023-06-03 20:07:25', '2025-12-17 19:47:04', 'dJPNk9nA', '6101361'), - (493, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dJPNk9nA', '6101362'), - (493, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dJPNk9nA', '6103752'), - (493, 2074, 'attending', '2023-05-24 14:38:24', '2025-12-17 19:47:03', 'dJPNk9nA', '6107312'), - (493, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dJPNk9nA', '6107314'), - (493, 2077, 'not_attending', '2023-06-03 20:07:29', '2025-12-17 19:46:49', 'dJPNk9nA', '6110217'), - (493, 2078, 'not_attending', '2023-05-23 11:34:19', '2025-12-17 19:47:03', 'dJPNk9nA', '6114163'), - (493, 2081, 'not_attending', '2023-05-23 11:34:20', '2025-12-17 19:47:03', 'dJPNk9nA', '6115611'), - (493, 2083, 'maybe', '2023-05-26 14:54:09', '2025-12-17 19:47:04', 'dJPNk9nA', '6115629'), - (493, 2085, 'not_attending', '2023-05-31 20:29:00', '2025-12-17 19:47:04', 'dJPNk9nA', '6118068'), - (493, 2086, 'not_attending', '2023-05-31 20:29:02', '2025-12-17 19:47:04', 'dJPNk9nA', '6119877'), - (493, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dJPNk9nA', '6120034'), - (493, 2089, 'not_attending', '2023-06-03 20:07:21', '2025-12-17 19:47:04', 'dJPNk9nA', '6125227'), - (493, 2090, 'not_attending', '2023-05-31 20:29:04', '2025-12-17 19:47:04', 'dJPNk9nA', '6127961'), - (493, 2091, 'not_attending', '2023-06-03 20:07:20', '2025-12-17 19:47:04', 'dJPNk9nA', '6130657'), - (493, 2093, 'not_attending', '2023-06-05 12:39:28', '2025-12-17 19:47:04', 'dJPNk9nA', '6132598'), - (493, 2094, 'maybe', '2023-06-09 02:30:43', '2025-12-17 19:47:04', 'dJPNk9nA', '6135924'), - (493, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dJPNk9nA', '6136733'), - (493, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dJPNk9nA', '6137989'), - (493, 2097, 'maybe', '2023-06-09 02:30:48', '2025-12-17 19:47:04', 'dJPNk9nA', '6139059'), - (493, 2098, 'maybe', '2023-06-09 02:30:42', '2025-12-17 19:47:04', 'dJPNk9nA', '6139831'), - (493, 2099, 'not_attending', '2023-06-14 22:38:17', '2025-12-17 19:46:49', 'dJPNk9nA', '6143012'), - (493, 2102, 'not_attending', '2023-06-14 22:38:19', '2025-12-17 19:46:50', 'dJPNk9nA', '6146559'), - (493, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dJPNk9nA', '6150864'), - (493, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dJPNk9nA', '6155491'), - (493, 2115, 'not_attending', '2023-06-30 10:28:55', '2025-12-17 19:46:50', 'dJPNk9nA', '6161437'), - (493, 2116, 'not_attending', '2023-06-30 10:29:12', '2025-12-17 19:46:51', 'dJPNk9nA', '6163389'), - (493, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dJPNk9nA', '6164417'), - (493, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dJPNk9nA', '6166388'), - (493, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dJPNk9nA', '6176439'), - (493, 2122, 'not_attending', '2023-06-30 10:28:59', '2025-12-17 19:46:51', 'dJPNk9nA', '6176476'), - (493, 2124, 'not_attending', '2023-06-30 10:29:08', '2025-12-17 19:46:51', 'dJPNk9nA', '6176988'), - (493, 2125, 'not_attending', '2023-06-30 10:29:01', '2025-12-17 19:46:51', 'dJPNk9nA', '6177485'), - (493, 2126, 'not_attending', '2023-06-30 10:28:57', '2025-12-17 19:46:51', 'dJPNk9nA', '6177548'), - (493, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dJPNk9nA', '6182410'), - (493, 2129, 'not_attending', '2023-07-04 20:44:33', '2025-12-17 19:46:51', 'dJPNk9nA', '6182825'), - (493, 2130, 'not_attending', '2023-07-04 20:49:43', '2025-12-17 19:46:51', 'dJPNk9nA', '6183891'), - (493, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dJPNk9nA', '6185812'), - (493, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dJPNk9nA', '6187651'), - (493, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dJPNk9nA', '6187963'), - (493, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dJPNk9nA', '6187964'), - (493, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dJPNk9nA', '6187966'), - (493, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dJPNk9nA', '6187967'), - (493, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dJPNk9nA', '6187969'), - (493, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dJPNk9nA', '6334878'), - (493, 2146, 'maybe', '2023-07-21 11:02:36', '2025-12-17 19:46:53', 'dJPNk9nA', '6335638'), - (493, 2148, 'attending', '2023-07-25 00:04:48', '2025-12-17 19:46:53', 'dJPNk9nA', '6335667'), - (493, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dJPNk9nA', '6337236'), - (493, 2155, 'attending', '2023-07-17 21:10:37', '2025-12-17 19:46:53', 'dJPNk9nA', '6337970'), - (493, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dJPNk9nA', '6338308'), - (493, 2159, 'maybe', '2023-07-16 21:29:27', '2025-12-17 19:46:53', 'dJPNk9nA', '6338355'), - (493, 2160, 'attending', '2023-07-24 01:36:44', '2025-12-17 19:46:54', 'dJPNk9nA', '6338358'), - (493, 2162, 'maybe', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dJPNk9nA', '6340845'), - (493, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dJPNk9nA', '6341710'), - (493, 2164, 'not_attending', '2023-07-24 01:36:46', '2025-12-17 19:46:54', 'dJPNk9nA', '6341797'), - (493, 2165, 'attending', '2023-07-27 15:35:29', '2025-12-17 19:46:54', 'dJPNk9nA', '6342044'), - (493, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dJPNk9nA', '6342298'), - (493, 2171, 'not_attending', '2023-07-24 01:36:59', '2025-12-17 19:46:54', 'dJPNk9nA', '6342328'), - (493, 2173, 'not_attending', '2023-07-20 21:23:43', '2025-12-17 19:46:53', 'dJPNk9nA', '6342769'), - (493, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dJPNk9nA', '6343294'), - (493, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dJPNk9nA', '6347034'), - (493, 2177, 'not_attending', '2023-07-27 15:35:48', '2025-12-17 19:46:55', 'dJPNk9nA', '6347053'), - (493, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dJPNk9nA', '6347056'), - (493, 2179, 'not_attending', '2023-07-30 20:57:02', '2025-12-17 19:46:54', 'dJPNk9nA', '6347591'), - (493, 2180, 'attending', '2023-07-26 20:03:56', '2025-12-17 19:46:54', 'dJPNk9nA', '6348788'), - (493, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dJPNk9nA', '6353830'), - (493, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dJPNk9nA', '6353831'), - (493, 2187, 'not_attending', '2023-08-02 01:36:22', '2025-12-17 19:46:55', 'dJPNk9nA', '6357559'), - (493, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dJPNk9nA', '6357867'), - (493, 2190, 'maybe', '2023-08-02 19:01:58', '2025-12-17 19:46:55', 'dJPNk9nA', '6357892'), - (493, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dJPNk9nA', '6358652'), - (493, 2192, 'not_attending', '2023-08-04 00:10:50', '2025-12-17 19:46:54', 'dJPNk9nA', '6358666'), - (493, 2195, 'not_attending', '2023-08-22 10:51:49', '2025-12-17 19:46:55', 'dJPNk9nA', '6359397'), - (493, 2196, 'maybe', '2023-09-05 18:46:08', '2025-12-17 19:46:56', 'dJPNk9nA', '6359398'), - (493, 2197, 'not_attending', '2023-09-11 15:13:50', '2025-12-17 19:46:44', 'dJPNk9nA', '6359399'), - (493, 2198, 'not_attending', '2023-09-21 11:19:11', '2025-12-17 19:46:45', 'dJPNk9nA', '6359400'), - (493, 2199, 'attending', '2023-08-16 23:03:26', '2025-12-17 19:46:55', 'dJPNk9nA', '6359849'), - (493, 2200, 'attending', '2023-08-10 15:42:02', '2025-12-17 19:46:55', 'dJPNk9nA', '6359850'), - (493, 2204, 'not_attending', '2023-08-19 20:59:10', '2025-12-17 19:46:55', 'dJPNk9nA', '6361542'), - (493, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dJPNk9nA', '6361709'), - (493, 2209, 'attending', '2023-08-20 22:18:43', '2025-12-17 19:46:55', 'dJPNk9nA', '6361710'), - (493, 2210, 'attending', '2023-08-24 17:56:02', '2025-12-17 19:46:55', 'dJPNk9nA', '6361711'), - (493, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dJPNk9nA', '6361712'), - (493, 2212, 'not_attending', '2023-09-22 21:12:34', '2025-12-17 19:46:45', 'dJPNk9nA', '6361713'), - (493, 2214, 'attending', '2023-08-13 16:07:50', '2025-12-17 19:46:55', 'dJPNk9nA', '6363218'), - (493, 2218, 'maybe', '2023-08-22 10:51:07', '2025-12-17 19:46:55', 'dJPNk9nA', '6367308'), - (493, 2222, 'not_attending', '2023-08-24 17:55:42', '2025-12-17 19:46:55', 'dJPNk9nA', '6367358'), - (493, 2225, 'not_attending', '2023-08-24 17:55:56', '2025-12-17 19:46:55', 'dJPNk9nA', '6368434'), - (493, 2231, 'not_attending', '2023-08-24 17:56:53', '2025-12-17 19:46:55', 'dJPNk9nA', '6374748'), - (493, 2232, 'not_attending', '2023-08-22 10:52:08', '2025-12-17 19:46:55', 'dJPNk9nA', '6374818'), - (493, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dJPNk9nA', '6382573'), - (493, 2239, 'maybe', '2023-09-02 19:27:44', '2025-12-17 19:46:56', 'dJPNk9nA', '6387592'), - (493, 2240, 'not_attending', '2023-09-06 15:55:08', '2025-12-17 19:46:56', 'dJPNk9nA', '6388603'), - (493, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dJPNk9nA', '6388604'), - (493, 2242, 'attending', '2023-09-21 11:19:14', '2025-12-17 19:46:45', 'dJPNk9nA', '6388606'), - (493, 2245, 'not_attending', '2023-09-24 12:24:49', '2025-12-17 19:46:45', 'dJPNk9nA', '6393703'), - (493, 2247, 'attending', '2023-09-05 23:13:41', '2025-12-17 19:46:56', 'dJPNk9nA', '6394628'), - (493, 2248, 'attending', '2023-09-05 23:15:54', '2025-12-17 19:46:44', 'dJPNk9nA', '6394629'), - (493, 2249, 'attending', '2023-09-05 23:15:55', '2025-12-17 19:46:45', 'dJPNk9nA', '6394630'), - (493, 2250, 'attending', '2023-09-05 23:15:57', '2025-12-17 19:46:45', 'dJPNk9nA', '6394631'), - (493, 2252, 'maybe', '2023-09-12 12:43:51', '2025-12-17 19:46:45', 'dJPNk9nA', '6396837'), - (493, 2253, 'attending', '2023-09-21 19:37:52', '2025-12-17 19:46:45', 'dJPNk9nA', '6401811'), - (493, 2254, 'not_attending', '2023-09-16 14:56:32', '2025-12-17 19:46:44', 'dJPNk9nA', '6401889'), - (493, 2263, 'maybe', '2023-09-27 11:12:46', '2025-12-17 19:46:45', 'dJPNk9nA', '6429351'), - (493, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dJPNk9nA', '6440863'), - (493, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dJPNk9nA', '6445440'), - (493, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dJPNk9nA', '6453951'), - (493, 2277, 'not_attending', '2023-10-09 21:27:23', '2025-12-17 19:46:46', 'dJPNk9nA', '6455211'), - (493, 2278, 'attending', '2023-10-08 16:37:19', '2025-12-17 19:46:45', 'dJPNk9nA', '6455213'), - (493, 2279, 'attending', '2023-10-09 21:27:18', '2025-12-17 19:46:46', 'dJPNk9nA', '6455460'), - (493, 2284, 'not_attending', '2023-10-12 21:13:11', '2025-12-17 19:46:46', 'dJPNk9nA', '6460928'), - (493, 2285, 'not_attending', '2023-10-16 20:45:50', '2025-12-17 19:46:47', 'dJPNk9nA', '6460929'), - (493, 2286, 'not_attending', '2023-11-20 14:00:45', '2025-12-17 19:46:48', 'dJPNk9nA', '6460930'), - (493, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dJPNk9nA', '6461696'), - (493, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dJPNk9nA', '6462129'), - (493, 2290, 'attending', '2023-10-18 16:30:58', '2025-12-17 19:46:46', 'dJPNk9nA', '6462214'), - (493, 2291, 'not_attending', '2023-10-15 20:33:30', '2025-12-17 19:46:46', 'dJPNk9nA', '6462215'), - (493, 2292, 'attending', '2023-10-31 13:35:46', '2025-12-17 19:46:47', 'dJPNk9nA', '6462216'), - (493, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dJPNk9nA', '6463218'), - (493, 2295, 'not_attending', '2023-10-16 14:16:32', '2025-12-17 19:46:46', 'dJPNk9nA', '6467832'), - (493, 2296, 'not_attending', '2023-10-26 10:59:33', '2025-12-17 19:46:47', 'dJPNk9nA', '6468393'), - (493, 2299, 'not_attending', '2023-10-15 20:33:36', '2025-12-17 19:46:46', 'dJPNk9nA', '6472181'), - (493, 2302, 'not_attending', '2023-10-23 21:57:24', '2025-12-17 19:46:46', 'dJPNk9nA', '6482535'), - (493, 2303, 'not_attending', '2023-10-22 22:47:21', '2025-12-17 19:46:47', 'dJPNk9nA', '6482691'), - (493, 2304, 'not_attending', '2023-10-30 20:03:30', '2025-12-17 19:46:47', 'dJPNk9nA', '6482693'), - (493, 2306, 'attending', '2023-11-13 01:11:38', '2025-12-17 19:46:47', 'dJPNk9nA', '6484200'), - (493, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dJPNk9nA', '6484680'), - (493, 2308, 'not_attending', '2023-10-26 10:59:31', '2025-12-17 19:46:47', 'dJPNk9nA', '6485393'), - (493, 2310, 'attending', '2023-10-30 20:03:52', '2025-12-17 19:46:47', 'dJPNk9nA', '6487709'), - (493, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dJPNk9nA', '6507741'), - (493, 2318, 'attending', '2023-10-30 20:01:40', '2025-12-17 19:46:47', 'dJPNk9nA', '6508566'), - (493, 2320, 'maybe', '2023-11-08 16:03:45', '2025-12-17 19:46:47', 'dJPNk9nA', '6508647'), - (493, 2322, 'attending', '2023-11-13 00:10:28', '2025-12-17 19:46:48', 'dJPNk9nA', '6514659'), - (493, 2323, 'not_attending', '2023-11-20 14:00:47', '2025-12-17 19:46:49', 'dJPNk9nA', '6514660'), - (493, 2324, 'attending', '2023-11-21 14:41:29', '2025-12-17 19:46:49', 'dJPNk9nA', '6514662'), - (493, 2325, 'not_attending', '2023-11-21 14:41:32', '2025-12-17 19:46:36', 'dJPNk9nA', '6514663'), - (493, 2327, 'not_attending', '2023-11-02 22:14:59', '2025-12-17 19:46:47', 'dJPNk9nA', '6515494'), - (493, 2329, 'not_attending', '2023-11-06 22:31:37', '2025-12-17 19:46:47', 'dJPNk9nA', '6517138'), - (493, 2330, 'maybe', '2023-11-13 02:01:41', '2025-12-17 19:46:47', 'dJPNk9nA', '6517941'), - (493, 2331, 'attending', '2023-11-15 01:28:00', '2025-12-17 19:46:47', 'dJPNk9nA', '6518640'), - (493, 2332, 'not_attending', '2023-11-08 16:03:55', '2025-12-17 19:46:47', 'dJPNk9nA', '6518655'), - (493, 2333, 'attending', '2023-11-06 22:31:51', '2025-12-17 19:46:47', 'dJPNk9nA', '6519103'), - (493, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dJPNk9nA', '6535681'), - (493, 2338, 'attending', '2023-11-13 00:10:52', '2025-12-17 19:46:48', 'dJPNk9nA', '6538868'), - (493, 2339, 'maybe', '2023-11-13 00:10:15', '2025-12-17 19:46:47', 'dJPNk9nA', '6539128'), - (493, 2345, 'attending', '2023-11-28 22:43:48', '2025-12-17 19:46:48', 'dJPNk9nA', '6582414'), - (493, 2350, 'attending', '2023-11-21 14:42:49', '2025-12-17 19:46:48', 'dJPNk9nA', '6584352'), - (493, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dJPNk9nA', '6584747'), - (493, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dJPNk9nA', '6587097'), - (493, 2353, 'not_attending', '2023-11-30 14:27:07', '2025-12-17 19:46:48', 'dJPNk9nA', '6588894'), - (493, 2354, 'not_attending', '2023-11-30 14:26:48', '2025-12-17 19:46:48', 'dJPNk9nA', '6591742'), - (493, 2355, 'not_attending', '2023-11-30 14:27:27', '2025-12-17 19:46:49', 'dJPNk9nA', '6593339'), - (493, 2358, 'not_attending', '2023-11-30 14:26:55', '2025-12-17 19:46:48', 'dJPNk9nA', '6595321'), - (493, 2359, 'not_attending', '2023-11-30 14:26:46', '2025-12-17 19:46:48', 'dJPNk9nA', '6596617'), - (493, 2360, 'not_attending', '2023-12-02 23:30:08', '2025-12-17 19:46:49', 'dJPNk9nA', '6599341'), - (493, 2362, 'maybe', '2023-12-07 21:02:35', '2025-12-17 19:46:49', 'dJPNk9nA', '6605708'), - (493, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dJPNk9nA', '6609022'), - (493, 2364, 'not_attending', '2023-12-07 21:24:35', '2025-12-17 19:46:49', 'dJPNk9nA', '6613011'), - (493, 2365, 'attending', '2023-12-10 18:00:29', '2025-12-17 19:46:37', 'dJPNk9nA', '6613093'), - (493, 2370, 'attending', '2023-12-14 00:30:56', '2025-12-17 19:46:36', 'dJPNk9nA', '6623765'), - (493, 2371, 'maybe', '2023-12-15 14:41:12', '2025-12-17 19:46:36', 'dJPNk9nA', '6624495'), - (493, 2373, 'attending', '2024-01-02 13:58:58', '2025-12-17 19:46:38', 'dJPNk9nA', '6632678'), - (493, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dJPNk9nA', '6632757'), - (493, 2375, 'attending', '2023-12-20 22:39:57', '2025-12-17 19:46:36', 'dJPNk9nA', '6634548'), - (493, 2376, 'maybe', '2024-01-15 14:15:59', '2025-12-17 19:46:40', 'dJPNk9nA', '6642900'), - (493, 2377, 'maybe', '2024-01-02 13:58:46', '2025-12-17 19:46:37', 'dJPNk9nA', '6643448'), - (493, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dJPNk9nA', '6644187'), - (493, 2381, 'maybe', '2024-01-02 21:51:19', '2025-12-17 19:46:37', 'dJPNk9nA', '6646398'), - (493, 2382, 'not_attending', '2024-01-02 21:51:43', '2025-12-17 19:46:37', 'dJPNk9nA', '6646401'), - (493, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dJPNk9nA', '6648951'), - (493, 2387, 'attending', '2024-01-03 03:27:53', '2025-12-17 19:46:37', 'dJPNk9nA', '6648952'), - (493, 2388, 'attending', '2024-01-03 03:27:19', '2025-12-17 19:46:37', 'dJPNk9nA', '6649244'), - (493, 2389, 'not_attending', '2024-01-04 23:00:57', '2025-12-17 19:46:40', 'dJPNk9nA', '6651094'), - (493, 2391, 'not_attending', '2024-01-04 23:00:49', '2025-12-17 19:46:37', 'dJPNk9nA', '6654138'), - (493, 2393, 'attending', '2024-01-14 20:46:32', '2025-12-17 19:46:38', 'dJPNk9nA', '6654468'), - (493, 2394, 'maybe', '2024-01-17 01:22:19', '2025-12-17 19:46:38', 'dJPNk9nA', '6654470'), - (493, 2395, 'attending', '2024-01-14 20:47:35', '2025-12-17 19:46:38', 'dJPNk9nA', '6654471'), - (493, 2396, 'maybe', '2024-01-14 20:47:37', '2025-12-17 19:46:38', 'dJPNk9nA', '6655401'), - (493, 2397, 'maybe', '2024-01-09 00:34:43', '2025-12-17 19:46:37', 'dJPNk9nA', '6657379'), - (493, 2399, 'attending', '2024-01-08 13:21:32', '2025-12-17 19:46:37', 'dJPNk9nA', '6657583'), - (493, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dJPNk9nA', '6661585'), - (493, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dJPNk9nA', '6661588'), - (493, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dJPNk9nA', '6661589'), - (493, 2405, 'not_attending', '2024-01-17 01:22:24', '2025-12-17 19:46:38', 'dJPNk9nA', '6667332'), - (493, 2406, 'not_attending', '2024-01-18 20:15:38', '2025-12-17 19:46:40', 'dJPNk9nA', '6692344'), - (493, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dJPNk9nA', '6699906'), - (493, 2408, 'not_attending', '2024-01-15 11:37:32', '2025-12-17 19:46:40', 'dJPNk9nA', '6699907'), - (493, 2409, 'attending', '2024-01-20 16:02:53', '2025-12-17 19:46:41', 'dJPNk9nA', '6699909'), - (493, 2410, 'attending', '2024-01-20 16:02:55', '2025-12-17 19:46:41', 'dJPNk9nA', '6699911'), - (493, 2411, 'attending', '2024-01-20 16:06:56', '2025-12-17 19:46:41', 'dJPNk9nA', '6699913'), - (493, 2412, 'not_attending', '2024-01-20 16:10:42', '2025-12-17 19:46:43', 'dJPNk9nA', '6700717'), - (493, 2414, 'attending', '2024-01-19 12:28:08', '2025-12-17 19:46:40', 'dJPNk9nA', '6701000'), - (493, 2415, 'attending', '2024-01-19 12:28:11', '2025-12-17 19:46:40', 'dJPNk9nA', '6701001'), - (493, 2416, 'maybe', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dJPNk9nA', '6701109'), - (493, 2419, 'not_attending', '2024-01-25 04:22:36', '2025-12-17 19:46:41', 'dJPNk9nA', '6704505'), - (493, 2421, 'maybe', '2024-01-21 15:40:15', '2025-12-17 19:46:40', 'dJPNk9nA', '6704598'), - (493, 2423, 'maybe', '2024-01-21 15:40:12', '2025-12-17 19:46:40', 'dJPNk9nA', '6705141'), - (493, 2424, 'not_attending', '2024-01-19 12:27:41', '2025-12-17 19:46:40', 'dJPNk9nA', '6705143'), - (493, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dJPNk9nA', '6705219'), - (493, 2426, 'maybe', '2024-01-21 15:40:53', '2025-12-17 19:46:40', 'dJPNk9nA', '6705569'), - (493, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dJPNk9nA', '6710153'), - (493, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dJPNk9nA', '6711552'), - (493, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dJPNk9nA', '6711553'), - (493, 2431, 'maybe', '2024-01-31 04:53:23', '2025-12-17 19:46:41', 'dJPNk9nA', '6712394'), - (493, 2433, 'not_attending', '2024-01-25 04:23:31', '2025-12-17 19:46:40', 'dJPNk9nA', '6715688'), - (493, 2435, 'maybe', '2024-01-29 15:14:00', '2025-12-17 19:46:41', 'dJPNk9nA', '6721547'), - (493, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dJPNk9nA', '6722688'), - (493, 2438, 'attending', '2024-02-02 16:56:13', '2025-12-17 19:46:41', 'dJPNk9nA', '6730201'), - (493, 2439, 'maybe', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dJPNk9nA', '6730620'), - (493, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dJPNk9nA', '6730642'), - (493, 2441, 'maybe', '2024-02-01 02:16:13', '2025-12-17 19:46:41', 'dJPNk9nA', '6731263'), - (493, 2443, 'attending', '2024-02-03 15:25:06', '2025-12-17 19:46:41', 'dJPNk9nA', '6733775'), - (493, 2445, 'maybe', '2024-02-11 16:58:57', '2025-12-17 19:46:41', 'dJPNk9nA', '6734368'), - (493, 2447, 'maybe', '2024-03-14 16:16:18', '2025-12-17 19:46:32', 'dJPNk9nA', '6734370'), - (493, 2448, 'not_attending', '2024-03-28 15:37:30', '2025-12-17 19:46:33', 'dJPNk9nA', '6734371'), - (493, 2450, 'not_attending', '2024-02-11 04:46:54', '2025-12-17 19:46:41', 'dJPNk9nA', '6738807'), - (493, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dJPNk9nA', '6740364'), - (493, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dJPNk9nA', '6743829'), - (493, 2461, 'attending', '2024-02-10 15:34:27', '2025-12-17 19:46:41', 'dJPNk9nA', '6744245'), - (493, 2462, 'maybe', '2024-02-13 00:48:08', '2025-12-17 19:46:41', 'dJPNk9nA', '6744701'), - (493, 2465, 'not_attending', '2024-02-22 17:28:42', '2025-12-17 19:46:42', 'dJPNk9nA', '7026725'), - (493, 2466, 'attending', '2024-02-14 01:23:39', '2025-12-17 19:46:41', 'dJPNk9nA', '7026777'), - (493, 2467, 'attending', '2024-02-22 17:29:12', '2025-12-17 19:46:43', 'dJPNk9nA', '7029987'), - (493, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dJPNk9nA', '7030380'), - (493, 2471, 'maybe', '2024-02-22 17:28:46', '2025-12-17 19:46:42', 'dJPNk9nA', '7032425'), - (493, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'dJPNk9nA', '7033677'), - (493, 2473, 'not_attending', '2024-02-22 17:28:37', '2025-12-17 19:46:43', 'dJPNk9nA', '7033724'), - (493, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dJPNk9nA', '7035415'), - (493, 2475, 'not_attending', '2024-02-22 17:28:32', '2025-12-17 19:46:43', 'dJPNk9nA', '7035643'), - (493, 2476, 'attending', '2024-02-22 17:28:35', '2025-12-17 19:46:43', 'dJPNk9nA', '7035691'), - (493, 2477, 'maybe', '2024-02-22 17:28:25', '2025-12-17 19:46:42', 'dJPNk9nA', '7035692'), - (493, 2478, 'attending', '2024-02-22 17:26:21', '2025-12-17 19:46:43', 'dJPNk9nA', '7036478'), - (493, 2479, 'not_attending', '2024-02-22 17:28:39', '2025-12-17 19:46:43', 'dJPNk9nA', '7037009'), - (493, 2480, 'attending', '2024-02-25 18:06:20', '2025-12-17 19:46:43', 'dJPNk9nA', '7042160'), - (493, 2481, 'maybe', '2024-02-26 00:38:39', '2025-12-17 19:46:43', 'dJPNk9nA', '7044715'), - (493, 2482, 'not_attending', '2024-02-26 03:11:31', '2025-12-17 19:46:44', 'dJPNk9nA', '7044719'), - (493, 2484, 'attending', '2024-02-26 03:09:56', '2025-12-17 19:46:43', 'dJPNk9nA', '7046836'), - (493, 2486, 'maybe', '2024-02-27 13:08:50', '2025-12-17 19:46:43', 'dJPNk9nA', '7048277'), - (493, 2487, 'not_attending', '2024-03-05 00:37:57', '2025-12-17 19:46:33', 'dJPNk9nA', '7049279'), - (493, 2489, 'attending', '2024-02-27 23:18:16', '2025-12-17 19:46:43', 'dJPNk9nA', '7050161'), - (493, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dJPNk9nA', '7050318'), - (493, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dJPNk9nA', '7050319'), - (493, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dJPNk9nA', '7050322'), - (493, 2493, 'maybe', '2024-03-05 00:38:20', '2025-12-17 19:46:32', 'dJPNk9nA', '7052471'), - (493, 2495, 'not_attending', '2024-03-05 17:48:03', '2025-12-17 19:46:32', 'dJPNk9nA', '7052982'), - (493, 2496, 'attending', '2024-03-02 21:41:48', '2025-12-17 19:46:43', 'dJPNk9nA', '7055967'), - (493, 2498, 'attending', '2024-03-20 01:30:24', '2025-12-17 19:46:33', 'dJPNk9nA', '7057662'), - (493, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dJPNk9nA', '7057804'), - (493, 2500, 'attending', '2024-03-06 19:50:27', '2025-12-17 19:46:43', 'dJPNk9nA', '7058603'), - (493, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dJPNk9nA', '7059866'), - (493, 2504, 'not_attending', '2024-03-10 17:37:49', '2025-12-17 19:46:33', 'dJPNk9nA', '7063296'), - (493, 2505, 'attending', '2024-03-12 15:15:32', '2025-12-17 19:46:33', 'dJPNk9nA', '7069163'), - (493, 2507, 'attending', '2024-03-12 15:20:25', '2025-12-17 19:46:33', 'dJPNk9nA', '7072824'), - (493, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dJPNk9nA', '7074348'), - (493, 2509, 'attending', '2024-03-28 15:34:53', '2025-12-17 19:46:33', 'dJPNk9nA', '7074349'), - (493, 2512, 'not_attending', '2024-04-04 20:03:58', '2025-12-17 19:46:33', 'dJPNk9nA', '7074352'), - (493, 2513, 'not_attending', '2024-03-31 19:09:41', '2025-12-17 19:46:34', 'dJPNk9nA', '7074353'), - (493, 2514, 'not_attending', '2024-03-31 19:09:45', '2025-12-17 19:46:34', 'dJPNk9nA', '7074354'), - (493, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJPNk9nA', '7074364'), - (493, 2525, 'attending', '2024-06-13 23:37:14', '2025-12-17 19:46:28', 'dJPNk9nA', '7074365'), - (493, 2526, 'not_attending', '2024-07-27 02:35:59', '2025-12-17 19:46:31', 'dJPNk9nA', '7074366'), - (493, 2527, 'not_attending', '2024-06-27 18:34:26', '2025-12-17 19:46:29', 'dJPNk9nA', '7074367'), - (493, 2528, 'not_attending', '2024-07-26 23:47:55', '2025-12-17 19:46:31', 'dJPNk9nA', '7074368'), - (493, 2529, 'maybe', '2024-05-23 21:05:21', '2025-12-17 19:46:35', 'dJPNk9nA', '7074369'), - (493, 2530, 'not_attending', '2024-06-10 11:06:23', '2025-12-17 19:46:31', 'dJPNk9nA', '7074373'), - (493, 2531, 'not_attending', '2024-06-10 11:06:19', '2025-12-17 19:46:32', 'dJPNk9nA', '7074378'), - (493, 2533, 'not_attending', '2024-06-10 11:06:21', '2025-12-17 19:46:32', 'dJPNk9nA', '7074384'), - (493, 2534, 'attending', '2024-03-13 17:45:38', '2025-12-17 19:46:32', 'dJPNk9nA', '7076875'), - (493, 2537, 'attending', '2024-03-17 02:14:27', '2025-12-17 19:46:33', 'dJPNk9nA', '7085484'), - (493, 2538, 'attending', '2024-03-17 02:14:21', '2025-12-17 19:46:33', 'dJPNk9nA', '7085485'), - (493, 2539, 'not_attending', '2024-03-17 02:20:25', '2025-12-17 19:46:33', 'dJPNk9nA', '7085486'), - (493, 2540, 'attending', '2024-03-16 21:39:45', '2025-12-17 19:46:32', 'dJPNk9nA', '7089267'), - (493, 2542, 'attending', '2024-03-26 01:22:24', '2025-12-17 19:46:33', 'dJPNk9nA', '7090025'), - (493, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dJPNk9nA', '7098747'), - (493, 2550, 'attending', '2024-03-26 20:11:38', '2025-12-17 19:46:33', 'dJPNk9nA', '7102333'), - (493, 2552, 'attending', '2024-03-28 01:12:43', '2025-12-17 19:46:33', 'dJPNk9nA', '7111123'), - (493, 2553, 'attending', '2024-03-29 12:41:50', '2025-12-17 19:46:33', 'dJPNk9nA', '7113468'), - (493, 2554, 'attending', '2024-03-30 21:43:25', '2025-12-17 19:46:33', 'dJPNk9nA', '7114856'), - (493, 2555, 'attending', '2024-03-31 19:09:30', '2025-12-17 19:46:33', 'dJPNk9nA', '7114951'), - (493, 2556, 'not_attending', '2024-03-31 19:09:22', '2025-12-17 19:46:34', 'dJPNk9nA', '7114955'), - (493, 2557, 'attending', '2024-03-31 19:08:55', '2025-12-17 19:46:34', 'dJPNk9nA', '7114956'), - (493, 2558, 'not_attending', '2024-04-05 21:29:05', '2025-12-17 19:46:35', 'dJPNk9nA', '7114957'), - (493, 2561, 'attending', '2024-04-01 22:18:29', '2025-12-17 19:46:33', 'dJPNk9nA', '7131267'), - (493, 2563, 'maybe', '2024-04-04 23:38:16', '2025-12-17 19:46:33', 'dJPNk9nA', '7134734'), - (493, 2564, 'attending', '2024-04-09 01:29:57', '2025-12-17 19:46:33', 'dJPNk9nA', '7134735'), - (493, 2566, 'not_attending', '2024-04-07 22:41:08', '2025-12-17 19:46:34', 'dJPNk9nA', '7140664'), - (493, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dJPNk9nA', '7153615'), - (493, 2571, 'attending', '2024-04-07 21:00:15', '2025-12-17 19:46:33', 'dJPNk9nA', '7159484'), - (493, 2572, 'attending', '2024-04-11 01:06:22', '2025-12-17 19:46:33', 'dJPNk9nA', '7159522'), - (493, 2573, 'not_attending', '2024-04-11 18:52:17', '2025-12-17 19:46:34', 'dJPNk9nA', '7160612'), - (493, 2575, 'attending', '2024-04-12 13:29:34', '2025-12-17 19:46:33', 'dJPNk9nA', '7164534'), - (493, 2576, 'not_attending', '2024-04-16 10:32:40', '2025-12-17 19:46:34', 'dJPNk9nA', '7164538'), - (493, 2578, 'not_attending', '2024-04-11 18:52:13', '2025-12-17 19:46:34', 'dJPNk9nA', '7167016'), - (493, 2581, 'not_attending', '2024-04-16 10:32:33', '2025-12-17 19:46:34', 'dJPNk9nA', '7169048'), - (493, 2584, 'not_attending', '2024-04-18 10:33:59', '2025-12-17 19:46:34', 'dJPNk9nA', '7175057'), - (493, 2585, 'not_attending', '2024-04-16 10:32:35', '2025-12-17 19:46:34', 'dJPNk9nA', '7175828'), - (493, 2589, 'not_attending', '2024-04-16 10:32:43', '2025-12-17 19:46:34', 'dJPNk9nA', '7177235'), - (493, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dJPNk9nA', '7178446'), - (493, 2596, 'attending', '2024-04-25 15:36:18', '2025-12-17 19:46:34', 'dJPNk9nA', '7183788'), - (493, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dJPNk9nA', '7220467'), - (493, 2603, 'attending', '2024-05-09 21:44:38', '2025-12-17 19:46:35', 'dJPNk9nA', '7225669'), - (493, 2604, 'attending', '2024-05-16 01:47:49', '2025-12-17 19:46:36', 'dJPNk9nA', '7225670'), - (493, 2605, 'not_attending', '2024-05-02 20:02:16', '2025-12-17 19:46:35', 'dJPNk9nA', '7229243'), - (493, 2609, 'attending', '2024-05-05 09:46:44', '2025-12-17 19:46:35', 'dJPNk9nA', '7240354'), - (493, 2611, 'maybe', '2024-05-06 12:48:20', '2025-12-17 19:46:35', 'dJPNk9nA', '7247642'), - (493, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dJPNk9nA', '7251633'), - (493, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dJPNk9nA', '7263048'), - (493, 2626, 'attending', '2024-05-12 03:39:06', '2025-12-17 19:46:35', 'dJPNk9nA', '7264723'), - (493, 2627, 'not_attending', '2024-05-12 03:39:12', '2025-12-17 19:46:35', 'dJPNk9nA', '7264724'), - (493, 2628, 'attending', '2024-05-12 03:39:13', '2025-12-17 19:46:36', 'dJPNk9nA', '7264725'), - (493, 2629, 'attending', '2024-05-12 03:39:14', '2025-12-17 19:46:28', 'dJPNk9nA', '7264726'), - (493, 2630, 'attending', '2024-05-16 10:52:58', '2025-12-17 19:46:35', 'dJPNk9nA', '7264801'), - (493, 2631, 'attending', '2024-05-12 15:50:03', '2025-12-17 19:46:35', 'dJPNk9nA', '7265589'), - (493, 2632, 'maybe', '2024-05-14 17:32:52', '2025-12-17 19:46:35', 'dJPNk9nA', '7269123'), - (493, 2641, 'maybe', '2024-05-19 23:33:39', '2025-12-17 19:46:35', 'dJPNk9nA', '7276107'), - (493, 2643, 'attending', '2024-05-18 14:52:41', '2025-12-17 19:46:35', 'dJPNk9nA', '7276587'), - (493, 2644, 'attending', '2024-05-19 19:56:44', '2025-12-17 19:46:35', 'dJPNk9nA', '7279039'), - (493, 2646, 'not_attending', '2024-05-20 21:57:41', '2025-12-17 19:46:35', 'dJPNk9nA', '7281768'), - (493, 2647, 'attending', '2024-05-26 12:59:00', '2025-12-17 19:46:28', 'dJPNk9nA', '7282057'), - (493, 2649, 'attending', '2024-05-22 16:09:20', '2025-12-17 19:46:35', 'dJPNk9nA', '7282950'), - (493, 2652, 'attending', '2024-05-26 12:58:32', '2025-12-17 19:46:36', 'dJPNk9nA', '7288339'), - (493, 2656, 'attending', '2024-05-30 22:27:25', '2025-12-17 19:46:36', 'dJPNk9nA', '7291301'), - (493, 2657, 'attending', '2024-05-29 15:55:21', '2025-12-17 19:46:36', 'dJPNk9nA', '7294438'), - (493, 2659, 'attending', '2024-06-01 21:55:01', '2025-12-17 19:46:36', 'dJPNk9nA', '7299599'), - (493, 2660, 'attending', '2024-06-02 06:17:44', '2025-12-17 19:46:36', 'dJPNk9nA', '7301638'), - (493, 2661, 'attending', '2024-06-02 14:03:30', '2025-12-17 19:46:28', 'dJPNk9nA', '7302674'), - (493, 2663, 'attending', '2024-06-03 04:15:27', '2025-12-17 19:46:36', 'dJPNk9nA', '7303913'), - (493, 2665, 'attending', '2024-06-07 20:40:29', '2025-12-17 19:46:36', 'dJPNk9nA', '7306370'), - (493, 2667, 'attending', '2024-06-05 13:18:08', '2025-12-17 19:46:36', 'dJPNk9nA', '7307776'), - (493, 2668, 'attending', '2024-06-05 19:37:57', '2025-12-17 19:46:36', 'dJPNk9nA', '7308821'), - (493, 2669, 'attending', '2024-06-08 14:29:29', '2025-12-17 19:46:36', 'dJPNk9nA', '7318057'), - (493, 2670, 'attending', '2024-06-08 17:56:21', '2025-12-17 19:46:36', 'dJPNk9nA', '7318188'), - (493, 2675, 'not_attending', '2024-07-26 23:48:09', '2025-12-17 19:46:31', 'dJPNk9nA', '7319481'), - (493, 2676, 'maybe', '2024-08-12 19:45:36', '2025-12-17 19:46:32', 'dJPNk9nA', '7319482'), - (493, 2677, 'attending', '2024-10-04 09:54:46', '2025-12-17 19:46:26', 'dJPNk9nA', '7319483'), - (493, 2678, 'attending', '2024-06-10 11:05:54', '2025-12-17 19:46:28', 'dJPNk9nA', '7319489'), - (493, 2679, 'not_attending', '2024-06-09 22:37:49', '2025-12-17 19:46:29', 'dJPNk9nA', '7319490'), - (493, 2682, 'attending', '2024-06-10 12:56:46', '2025-12-17 19:46:28', 'dJPNk9nA', '7321862'), - (493, 2684, 'attending', '2024-06-10 19:30:02', '2025-12-17 19:46:28', 'dJPNk9nA', '7322001'), - (493, 2687, 'attending', '2024-06-11 19:35:30', '2025-12-17 19:46:28', 'dJPNk9nA', '7324019'), - (493, 2688, 'attending', '2024-06-13 10:39:27', '2025-12-17 19:46:29', 'dJPNk9nA', '7324073'), - (493, 2689, 'attending', '2024-06-12 12:49:50', '2025-12-17 19:46:29', 'dJPNk9nA', '7324074'), - (493, 2690, 'attending', '2024-06-12 12:49:53', '2025-12-17 19:46:30', 'dJPNk9nA', '7324075'), - (493, 2691, 'attending', '2024-06-12 12:49:48', '2025-12-17 19:46:30', 'dJPNk9nA', '7324076'), - (493, 2692, 'not_attending', '2024-06-12 12:49:37', '2025-12-17 19:46:30', 'dJPNk9nA', '7324077'), - (493, 2693, 'not_attending', '2024-07-05 21:15:05', '2025-12-17 19:46:31', 'dJPNk9nA', '7324078'), - (493, 2694, 'not_attending', '2024-07-05 21:15:01', '2025-12-17 19:46:31', 'dJPNk9nA', '7324079'), - (493, 2695, 'not_attending', '2024-06-12 12:50:04', '2025-12-17 19:46:31', 'dJPNk9nA', '7324080'), - (493, 2696, 'not_attending', '2024-06-12 12:50:02', '2025-12-17 19:46:32', 'dJPNk9nA', '7324081'), - (493, 2697, 'not_attending', '2024-07-23 14:49:19', '2025-12-17 19:46:32', 'dJPNk9nA', '7324082'), - (493, 2698, 'attending', '2024-07-05 21:15:34', '2025-12-17 19:46:24', 'dJPNk9nA', '7324083'), - (493, 2699, 'attending', '2024-06-12 16:47:36', '2025-12-17 19:46:28', 'dJPNk9nA', '7324385'), - (493, 2700, 'attending', '2024-06-13 16:56:10', '2025-12-17 19:46:28', 'dJPNk9nA', '7324388'), - (493, 2701, 'maybe', '2024-06-28 02:12:33', '2025-12-17 19:46:29', 'dJPNk9nA', '7324391'), - (493, 2702, 'attending', '2024-06-13 10:32:35', '2025-12-17 19:46:28', 'dJPNk9nA', '7324867'), - (493, 2705, 'attending', '2024-06-13 13:16:55', '2025-12-17 19:46:29', 'dJPNk9nA', '7324944'), - (493, 2706, 'attending', '2024-06-16 22:43:58', '2025-12-17 19:46:28', 'dJPNk9nA', '7324947'), - (493, 2711, 'not_attending', '2024-07-15 04:03:52', '2025-12-17 19:46:30', 'dJPNk9nA', '7326524'), - (493, 2712, 'not_attending', '2024-07-27 02:35:48', '2025-12-17 19:46:31', 'dJPNk9nA', '7326525'), - (493, 2716, 'not_attending', '2024-06-16 22:44:14', '2025-12-17 19:46:29', 'dJPNk9nA', '7329096'), - (493, 2722, 'attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dJPNk9nA', '7331457'), - (493, 2724, 'attending', '2024-06-24 20:54:00', '2025-12-17 19:46:29', 'dJPNk9nA', '7332562'), - (493, 2729, 'not_attending', '2024-06-23 15:55:42', '2025-12-17 19:46:29', 'dJPNk9nA', '7335092'), - (493, 2731, 'maybe', '2024-06-24 23:56:53', '2025-12-17 19:46:29', 'dJPNk9nA', '7335303'), - (493, 2736, 'attending', '2024-06-29 19:15:15', '2025-12-17 19:46:29', 'dJPNk9nA', '7342038'), - (493, 2743, 'maybe', '2024-07-05 22:15:28', '2025-12-17 19:46:29', 'dJPNk9nA', '7345688'), - (493, 2745, 'maybe', '2024-07-24 18:26:49', '2025-12-17 19:46:30', 'dJPNk9nA', '7348712'), - (493, 2746, 'maybe', '2024-07-11 22:17:57', '2025-12-17 19:46:29', 'dJPNk9nA', '7348713'), - (493, 2747, 'attending', '2024-07-16 03:26:19', '2025-12-17 19:46:30', 'dJPNk9nA', '7353587'), - (493, 2748, 'attending', '2024-07-06 12:28:23', '2025-12-17 19:46:29', 'dJPNk9nA', '7353759'), - (493, 2749, 'maybe', '2024-07-07 18:42:30', '2025-12-17 19:46:29', 'dJPNk9nA', '7355496'), - (493, 2755, 'attending', '2024-07-09 20:07:19', '2025-12-17 19:46:29', 'dJPNk9nA', '7357808'), - (493, 2757, 'attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dJPNk9nA', '7358733'), - (493, 2758, 'maybe', '2024-07-16 03:26:15', '2025-12-17 19:46:30', 'dJPNk9nA', '7358837'), - (493, 2759, 'attending', '2024-07-12 18:10:59', '2025-12-17 19:46:30', 'dJPNk9nA', '7359624'), - (493, 2764, 'not_attending', '2024-07-14 23:08:11', '2025-12-17 19:46:30', 'dJPNk9nA', '7363595'), - (493, 2766, 'not_attending', '2024-07-23 14:49:02', '2025-12-17 19:46:30', 'dJPNk9nA', '7363643'), - (493, 2767, 'attending', '2024-07-22 21:50:00', '2025-12-17 19:46:30', 'dJPNk9nA', '7364726'), - (493, 2768, 'maybe', '2024-07-18 00:38:14', '2025-12-17 19:46:30', 'dJPNk9nA', '7366031'), - (493, 2769, 'attending', '2024-07-19 20:03:10', '2025-12-17 19:46:30', 'dJPNk9nA', '7366803'), - (493, 2770, 'attending', '2024-07-20 20:40:50', '2025-12-17 19:46:30', 'dJPNk9nA', '7368196'), - (493, 2773, 'not_attending', '2024-07-27 02:35:51', '2025-12-17 19:46:31', 'dJPNk9nA', '7368605'), - (493, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJPNk9nA', '7368606'), - (493, 2776, 'attending', '2024-07-23 13:25:20', '2025-12-17 19:46:30', 'dJPNk9nA', '7370690'), - (493, 2777, 'not_attending', '2024-07-23 21:37:12', '2025-12-17 19:46:30', 'dJPNk9nA', '7370870'), - (493, 2778, 'not_attending', '2024-07-24 12:41:02', '2025-12-17 19:46:31', 'dJPNk9nA', '7371793'), - (493, 2779, 'not_attending', '2024-07-24 15:07:16', '2025-12-17 19:46:30', 'dJPNk9nA', '7371818'), - (493, 2780, 'not_attending', '2024-07-24 20:03:35', '2025-12-17 19:46:30', 'dJPNk9nA', '7371849'), - (493, 2781, 'not_attending', '2024-07-25 21:16:33', '2025-12-17 19:46:30', 'dJPNk9nA', '7373194'), - (493, 2782, 'not_attending', '2024-07-27 02:36:10', '2025-12-17 19:46:30', 'dJPNk9nA', '7376725'), - (493, 2786, 'not_attending', '2024-08-03 13:20:35', '2025-12-17 19:46:31', 'dJPNk9nA', '7381403'), - (493, 2787, 'not_attending', '2024-08-21 02:10:26', '2025-12-17 19:46:32', 'dJPNk9nA', '7381568'), - (493, 2788, 'not_attending', '2024-08-03 13:20:45', '2025-12-17 19:46:31', 'dJPNk9nA', '7384036'), - (493, 2796, 'not_attending', '2024-08-12 19:45:28', '2025-12-17 19:46:31', 'dJPNk9nA', '7391451'), - (493, 2797, 'not_attending', '2024-08-12 19:45:25', '2025-12-17 19:46:31', 'dJPNk9nA', '7392641'), - (493, 2798, 'not_attending', '2024-08-12 19:45:21', '2025-12-17 19:46:31', 'dJPNk9nA', '7395910'), - (493, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJPNk9nA', '7397462'), - (493, 2802, 'attending', '2024-09-01 20:39:10', '2025-12-17 19:46:32', 'dJPNk9nA', '7397463'), - (493, 2806, 'attending', '2024-09-04 20:55:36', '2025-12-17 19:46:25', 'dJPNk9nA', '7404888'), - (493, 2808, 'attending', '2024-09-01 19:46:23', '2025-12-17 19:46:32', 'dJPNk9nA', '7412860'), - (493, 2814, 'attending', '2024-09-08 16:16:28', '2025-12-17 19:46:24', 'dJPNk9nA', '7424267'), - (493, 2815, 'not_attending', '2024-09-09 14:59:08', '2025-12-17 19:46:25', 'dJPNk9nA', '7424268'), - (493, 2816, 'not_attending', '2024-09-09 14:59:16', '2025-12-17 19:46:25', 'dJPNk9nA', '7424269'), - (493, 2817, 'attending', '2024-09-09 14:59:18', '2025-12-17 19:46:25', 'dJPNk9nA', '7424270'), - (493, 2821, 'attending', '2024-09-10 21:30:28', '2025-12-17 19:46:26', 'dJPNk9nA', '7424275'), - (493, 2822, 'attending', '2024-10-11 20:22:27', '2025-12-17 19:46:26', 'dJPNk9nA', '7424276'), - (493, 2823, 'attending', '2024-09-06 13:29:26', '2025-12-17 19:46:24', 'dJPNk9nA', '7430247'), - (493, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJPNk9nA', '7432751'), - (493, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJPNk9nA', '7432752'), - (493, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJPNk9nA', '7432753'), - (493, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJPNk9nA', '7432754'), - (493, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJPNk9nA', '7432755'), - (493, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJPNk9nA', '7432756'), - (493, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJPNk9nA', '7432758'), - (493, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJPNk9nA', '7432759'), - (493, 2832, 'attending', '2024-09-10 12:29:59', '2025-12-17 19:46:24', 'dJPNk9nA', '7433324'), - (493, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dJPNk9nA', '7433834'), - (493, 2834, 'not_attending', '2024-09-11 13:59:52', '2025-12-17 19:46:25', 'dJPNk9nA', '7433852'), - (493, 2835, 'attending', '2024-09-11 13:10:31', '2025-12-17 19:46:24', 'dJPNk9nA', '7437354'), - (493, 2836, 'not_attending', '2024-09-13 11:46:00', '2025-12-17 19:46:25', 'dJPNk9nA', '7438708'), - (493, 2837, 'not_attending', '2024-09-13 11:46:02', '2025-12-17 19:46:25', 'dJPNk9nA', '7438711'), - (493, 2839, 'attending', '2024-09-13 02:53:57', '2025-12-17 19:46:25', 'dJPNk9nA', '7439262'), - (493, 2840, 'attending', '2024-09-15 23:45:05', '2025-12-17 19:46:25', 'dJPNk9nA', '7444429'), - (493, 2844, 'attending', '2024-09-19 22:49:45', '2025-12-17 19:46:25', 'dJPNk9nA', '7450233'), - (493, 2845, 'attending', '2024-09-21 18:26:52', '2025-12-17 19:46:25', 'dJPNk9nA', '7452129'), - (493, 2846, 'attending', '2024-09-21 20:37:29', '2025-12-17 19:46:25', 'dJPNk9nA', '7452148'), - (493, 2847, 'not_attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', 'dJPNk9nA', '7452299'), - (493, 2848, 'attending', '2024-09-24 12:53:59', '2025-12-17 19:46:25', 'dJPNk9nA', '7456145'), - (493, 2849, 'maybe', '2024-09-30 10:47:52', '2025-12-17 19:46:25', 'dJPNk9nA', '7457114'), - (493, 2850, 'maybe', '2024-09-25 13:42:46', '2025-12-17 19:46:25', 'dJPNk9nA', '7457153'), - (493, 2851, 'attending', '2024-09-28 19:54:44', '2025-12-17 19:46:25', 'dJPNk9nA', '7461883'), - (493, 2854, 'not_attending', '2024-10-06 02:27:14', '2025-12-17 19:46:26', 'dJPNk9nA', '7465684'), - (493, 2859, 'not_attending', '2024-10-31 12:52:24', '2025-12-17 19:46:26', 'dJPNk9nA', '7469389'), - (493, 2861, 'not_attending', '2024-10-01 11:20:23', '2025-12-17 19:46:26', 'dJPNk9nA', '7469826'), - (493, 2862, 'maybe', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dJPNk9nA', '7470197'), - (493, 2869, 'not_attending', '2024-10-05 16:50:39', '2025-12-17 19:46:26', 'dJPNk9nA', '7474823'), - (493, 2870, 'attending', '2024-10-04 09:54:21', '2025-12-17 19:46:26', 'dJPNk9nA', '7475068'), - (493, 2871, 'attending', '2024-10-09 13:48:42', '2025-12-17 19:46:26', 'dJPNk9nA', '7480481'), - (493, 2878, 'maybe', '2024-10-15 15:28:31', '2025-12-17 19:46:26', 'dJPNk9nA', '7633857'), - (493, 2880, 'attending', '2024-10-11 12:23:47', '2025-12-17 19:46:26', 'dJPNk9nA', '7636316'), - (493, 2883, 'attending', '2024-10-17 01:11:31', '2025-12-17 19:46:26', 'dJPNk9nA', '7649157'), - (493, 2891, 'attending', '2024-10-25 14:16:15', '2025-12-17 19:46:26', 'dJPNk9nA', '7668163'), - (493, 2892, 'maybe', '2024-10-30 16:00:20', '2025-12-17 19:46:26', 'dJPNk9nA', '7672064'), - (493, 2894, 'attending', '2024-11-02 19:14:22', '2025-12-17 19:46:26', 'dJPNk9nA', '7680059'), - (493, 2895, 'maybe', '2024-11-07 12:35:03', '2025-12-17 19:46:26', 'dJPNk9nA', '7682072'), - (493, 2898, 'attending', '2024-11-07 16:31:30', '2025-12-17 19:46:26', 'dJPNk9nA', '7685613'), - (493, 2899, 'not_attending', '2024-11-11 12:43:09', '2025-12-17 19:46:27', 'dJPNk9nA', '7685616'), - (493, 2902, 'not_attending', '2024-11-11 12:43:26', '2025-12-17 19:46:27', 'dJPNk9nA', '7686381'), - (493, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJPNk9nA', '7688194'), - (493, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJPNk9nA', '7688196'), - (493, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJPNk9nA', '7688289'), - (493, 2906, 'attending', '2024-11-09 21:43:43', '2025-12-17 19:46:26', 'dJPNk9nA', '7689366'), - (493, 2909, 'not_attending', '2024-11-10 21:21:58', '2025-12-17 19:46:27', 'dJPNk9nA', '7689771'), - (493, 2911, 'maybe', '2024-11-12 13:02:10', '2025-12-17 19:46:27', 'dJPNk9nA', '7689876'), - (493, 2912, 'attending', '2024-11-13 19:49:20', '2025-12-17 19:46:27', 'dJPNk9nA', '7692763'), - (493, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dJPNk9nA', '7697552'), - (493, 2915, 'not_attending', '2024-11-21 04:33:40', '2025-12-17 19:46:27', 'dJPNk9nA', '7698151'), - (493, 2917, 'attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dJPNk9nA', '7699878'), - (493, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dJPNk9nA', '7704043'), - (493, 2920, 'attending', '2024-11-23 19:50:44', '2025-12-17 19:46:28', 'dJPNk9nA', '7708406'), - (493, 2921, 'not_attending', '2024-11-26 12:43:14', '2025-12-17 19:46:28', 'dJPNk9nA', '7708460'), - (493, 2924, 'attending', '2024-11-27 18:53:28', '2025-12-17 19:46:28', 'dJPNk9nA', '7712467'), - (493, 2925, 'attending', '2024-11-28 16:27:16', '2025-12-17 19:46:21', 'dJPNk9nA', '7713584'), - (493, 2926, 'not_attending', '2024-11-28 16:27:30', '2025-12-17 19:46:21', 'dJPNk9nA', '7713585'), - (493, 2927, 'attending', '2024-11-28 16:27:18', '2025-12-17 19:46:22', 'dJPNk9nA', '7713586'), - (493, 2934, 'attending', '2024-12-19 18:55:05', '2025-12-17 19:46:22', 'dJPNk9nA', '7725952'), - (493, 2936, 'not_attending', '2024-12-19 18:55:03', '2025-12-17 19:46:22', 'dJPNk9nA', '7725954'), - (493, 2937, 'attending', '2024-12-11 05:03:21', '2025-12-17 19:46:21', 'dJPNk9nA', '7725955'), - (493, 2938, 'attending', '2024-12-19 18:55:07', '2025-12-17 19:46:22', 'dJPNk9nA', '7725956'), - (493, 2939, 'not_attending', '2025-02-10 16:46:05', '2025-12-17 19:46:24', 'dJPNk9nA', '7725957'), - (493, 2940, 'attending', '2025-01-23 13:41:02', '2025-12-17 19:46:22', 'dJPNk9nA', '7725958'), - (493, 2942, 'not_attending', '2025-02-10 16:46:12', '2025-12-17 19:46:24', 'dJPNk9nA', '7725960'), - (493, 2943, 'not_attending', '2025-03-07 19:23:08', '2025-12-17 19:46:18', 'dJPNk9nA', '7725961'), - (493, 2944, 'attending', '2025-02-28 16:22:31', '2025-12-17 19:46:24', 'dJPNk9nA', '7725963'), - (493, 2945, 'not_attending', '2025-03-11 16:32:45', '2025-12-17 19:46:19', 'dJPNk9nA', '7725964'), - (493, 2947, 'maybe', '2024-12-11 05:03:16', '2025-12-17 19:46:21', 'dJPNk9nA', '7727445'), - (493, 2954, 'attending', '2024-12-14 18:07:52', '2025-12-17 19:46:21', 'dJPNk9nA', '7734260'), - (493, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dJPNk9nA', '7738518'), - (493, 2959, 'attending', '2024-12-20 21:04:48', '2025-12-17 19:46:22', 'dJPNk9nA', '7747388'), - (493, 2961, 'attending', '2024-12-21 22:36:35', '2025-12-17 19:46:22', 'dJPNk9nA', '7748626'), - (493, 2962, 'attending', '2024-12-25 04:08:01', '2025-12-17 19:46:22', 'dJPNk9nA', '7750632'), - (493, 2963, 'attending', '2024-12-25 04:08:29', '2025-12-17 19:46:22', 'dJPNk9nA', '7750636'), - (493, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dJPNk9nA', '7796540'), - (493, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dJPNk9nA', '7796541'), - (493, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dJPNk9nA', '7796542'), - (493, 2968, 'attending', '2025-01-08 20:15:51', '2025-12-17 19:46:22', 'dJPNk9nA', '7797967'), - (493, 2969, 'attending', '2025-01-11 21:15:50', '2025-12-17 19:46:22', 'dJPNk9nA', '7800474'), - (493, 2974, 'attending', '2025-01-18 18:30:07', '2025-12-17 19:46:22', 'dJPNk9nA', '7814958'), - (493, 2975, 'attending', '2025-01-25 20:26:15', '2025-12-17 19:46:22', 'dJPNk9nA', '7823615'), - (493, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dJPNk9nA', '7825913'), - (493, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dJPNk9nA', '7826209'), - (493, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dJPNk9nA', '7834742'), - (493, 2986, 'attending', '2025-02-04 18:19:31', '2025-12-17 19:46:23', 'dJPNk9nA', '7835405'), - (493, 2987, 'attending', '2025-02-07 14:30:16', '2025-12-17 19:46:23', 'dJPNk9nA', '7839568'), - (493, 2988, 'attending', '2025-02-07 14:33:50', '2025-12-17 19:46:23', 'dJPNk9nA', '7839569'), - (493, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dJPNk9nA', '7842108'), - (493, 2990, 'attending', '2025-02-15 17:08:21', '2025-12-17 19:46:23', 'dJPNk9nA', '7842898'), - (493, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dJPNk9nA', '7842902'), - (493, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dJPNk9nA', '7842903'), - (493, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dJPNk9nA', '7842904'), - (493, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dJPNk9nA', '7842905'), - (493, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'dJPNk9nA', '7842906'), - (493, 2996, 'attending', '2025-02-11 16:42:41', '2025-12-17 19:46:24', 'dJPNk9nA', '7842907'), - (493, 2997, 'maybe', '2025-02-11 16:42:33', '2025-12-17 19:46:18', 'dJPNk9nA', '7842908'), - (493, 2998, 'attending', '2025-02-11 16:42:35', '2025-12-17 19:46:18', 'dJPNk9nA', '7842909'), - (493, 3000, 'not_attending', '2025-02-21 23:36:19', '2025-12-17 19:46:24', 'dJPNk9nA', '7852541'), - (493, 3002, 'not_attending', '2025-02-21 23:36:16', '2025-12-17 19:46:24', 'dJPNk9nA', '7854212'), - (493, 3003, 'not_attending', '2025-02-20 22:26:28', '2025-12-17 19:46:24', 'dJPNk9nA', '7854589'), - (493, 3004, 'not_attending', '2025-02-20 22:26:25', '2025-12-17 19:46:24', 'dJPNk9nA', '7854599'), - (493, 3005, 'not_attending', '2025-02-19 12:46:47', '2025-12-17 19:46:24', 'dJPNk9nA', '7854604'), - (493, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dJPNk9nA', '7855719'), - (493, 3007, 'maybe', '2025-02-24 18:53:53', '2025-12-17 19:46:24', 'dJPNk9nA', '7860683'), - (493, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dJPNk9nA', '7860684'), - (493, 3010, 'not_attending', '2025-03-07 19:23:07', '2025-12-17 19:46:18', 'dJPNk9nA', '7864879'), - (493, 3011, 'attending', '2025-03-01 20:40:21', '2025-12-17 19:46:24', 'dJPNk9nA', '7865624'), - (493, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dJPNk9nA', '7866095'), - (493, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dJPNk9nA', '7869170'), - (493, 3014, 'attending', '2025-03-10 23:24:22', '2025-12-17 19:46:19', 'dJPNk9nA', '7869185'), - (493, 3015, 'not_attending', '2025-03-31 17:21:39', '2025-12-17 19:46:20', 'dJPNk9nA', '7869186'), - (493, 3016, 'attending', '2025-03-31 17:21:44', '2025-12-17 19:46:20', 'dJPNk9nA', '7869187'), - (493, 3017, 'attending', '2025-03-10 23:24:18', '2025-12-17 19:46:19', 'dJPNk9nA', '7869188'), - (493, 3018, 'not_attending', '2025-03-31 17:21:47', '2025-12-17 19:46:20', 'dJPNk9nA', '7869189'), - (493, 3019, 'attending', '2025-04-05 22:21:48', '2025-12-17 19:46:20', 'dJPNk9nA', '7869190'), - (493, 3021, 'not_attending', '2025-04-07 18:54:20', '2025-12-17 19:46:20', 'dJPNk9nA', '7869192'), - (493, 3022, 'not_attending', '2025-04-07 18:54:36', '2025-12-17 19:46:20', 'dJPNk9nA', '7869193'), - (493, 3023, 'maybe', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'dJPNk9nA', '7869194'), - (493, 3024, 'attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'dJPNk9nA', '7869195'), - (493, 3028, 'maybe', '2025-03-24 18:30:12', '2025-12-17 19:46:20', 'dJPNk9nA', '7869199'), - (493, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dJPNk9nA', '7869201'), - (493, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dJPNk9nA', '7877465'), - (493, 3034, 'attending', '2025-03-11 16:53:30', '2025-12-17 19:46:18', 'dJPNk9nA', '7878570'), - (493, 3036, 'attending', '2025-03-13 19:24:46', '2025-12-17 19:46:19', 'dJPNk9nA', '7880952'), - (493, 3039, 'not_attending', '2025-03-17 16:51:44', '2025-12-17 19:46:19', 'dJPNk9nA', '7881992'), - (493, 3040, 'maybe', '2025-03-17 16:52:29', '2025-12-17 19:46:19', 'dJPNk9nA', '7881994'), - (493, 3042, 'attending', '2025-03-15 12:30:21', '2025-12-17 19:46:19', 'dJPNk9nA', '7882467'), - (493, 3043, 'attending', '2025-03-15 19:10:08', '2025-12-17 19:46:19', 'dJPNk9nA', '7882587'), - (493, 3045, 'attending', '2025-04-01 13:12:46', '2025-12-17 19:46:19', 'dJPNk9nA', '7882691'), - (493, 3046, 'not_attending', '2025-04-01 13:12:50', '2025-12-17 19:46:20', 'dJPNk9nA', '7882692'), - (493, 3047, 'not_attending', '2025-04-01 13:12:54', '2025-12-17 19:46:20', 'dJPNk9nA', '7882693'), - (493, 3048, 'attending', '2025-04-01 13:12:58', '2025-12-17 19:46:20', 'dJPNk9nA', '7882694'), - (493, 3051, 'maybe', '2025-03-17 16:51:28', '2025-12-17 19:46:19', 'dJPNk9nA', '7884023'), - (493, 3052, 'maybe', '2025-03-17 16:51:29', '2025-12-17 19:46:19', 'dJPNk9nA', '7884024'), - (493, 3055, 'maybe', '2025-03-27 15:09:58', '2025-12-17 19:46:19', 'dJPNk9nA', '7888118'), - (493, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dJPNk9nA', '7888250'), - (493, 3068, 'not_attending', '2025-04-03 19:04:39', '2025-12-17 19:46:19', 'dJPNk9nA', '7894823'), - (493, 3072, 'attending', '2025-04-01 00:15:11', '2025-12-17 19:46:19', 'dJPNk9nA', '7895449'), - (493, 3085, 'not_attending', '2025-04-12 13:13:28', '2025-12-17 19:46:20', 'dJPNk9nA', '7903688'), - (493, 3090, 'not_attending', '2025-04-17 11:43:17', '2025-12-17 19:46:20', 'dJPNk9nA', '7914315'), - (493, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dJPNk9nA', '8349164'), - (493, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dJPNk9nA', '8349545'), - (493, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dJPNk9nA', '8353584'), - (494, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZDqkbem', '6045684'), - (495, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dNMllJo4', '6045684'), - (496, 2920, 'attending', '2024-11-24 07:25:27', '2025-12-17 19:46:28', '1ArKK6Y4', '7708406'), - (496, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1ArKK6Y4', '7712467'), - (496, 2926, 'attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1ArKK6Y4', '7713585'), - (496, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1ArKK6Y4', '7713586'), - (496, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', '1ArKK6Y4', '7738518'), - (496, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1ArKK6Y4', '7750636'), - (496, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1ArKK6Y4', '7796540'), - (496, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1ArKK6Y4', '7796541'), - (496, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1ArKK6Y4', '7796542'), - (496, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1ArKK6Y4', '7825913'), - (496, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1ArKK6Y4', '7826209'), - (496, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1ArKK6Y4', '7834742'), - (496, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1ArKK6Y4', '7842108'), - (496, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1ArKK6Y4', '7842902'), - (496, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1ArKK6Y4', '7842903'), - (496, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1ArKK6Y4', '7842904'), - (496, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1ArKK6Y4', '7842905'), - (496, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1ArKK6Y4', '7855719'), - (496, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1ArKK6Y4', '7860683'), - (496, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1ArKK6Y4', '7860684'), - (496, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1ArKK6Y4', '7866095'), - (496, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1ArKK6Y4', '7869170'), - (496, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArKK6Y4', '7869188'), - (496, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1ArKK6Y4', '7869201'), - (496, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1ArKK6Y4', '7877465'), - (496, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '1ArKK6Y4', '7878570'), - (496, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1ArKK6Y4', '7888250'), - (496, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArKK6Y4', '8349164'), - (496, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArKK6Y4', '8349545'), - (496, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '1ArKK6Y4', '8353584'), - (497, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybg6JJA', '7074364'), - (497, 2628, 'attending', '2024-06-01 21:46:02', '2025-12-17 19:46:36', 'mybg6JJA', '7264725'), - (497, 2629, 'attending', '2024-06-08 17:34:33', '2025-12-17 19:46:28', 'mybg6JJA', '7264726'), - (497, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'mybg6JJA', '7301638'), - (497, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'mybg6JJA', '7302674'), - (497, 2663, 'attending', '2024-06-02 23:38:36', '2025-12-17 19:46:36', 'mybg6JJA', '7303913'), - (497, 2678, 'attending', '2024-06-14 19:47:39', '2025-12-17 19:46:28', 'mybg6JJA', '7319489'), - (497, 2679, 'attending', '2024-06-22 18:39:33', '2025-12-17 19:46:29', 'mybg6JJA', '7319490'), - (497, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybg6JJA', '7324073'), - (497, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybg6JJA', '7324074'), - (497, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybg6JJA', '7324075'), - (497, 2691, 'not_attending', '2024-07-20 20:02:24', '2025-12-17 19:46:30', 'mybg6JJA', '7324076'), - (497, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybg6JJA', '7324078'), - (497, 2694, 'maybe', '2024-08-10 17:14:01', '2025-12-17 19:46:31', 'mybg6JJA', '7324079'), - (497, 2695, 'not_attending', '2024-08-17 14:12:55', '2025-12-17 19:46:32', 'mybg6JJA', '7324080'), - (497, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybg6JJA', '7324082'), - (497, 2700, 'attending', '2024-06-14 19:47:44', '2025-12-17 19:46:28', 'mybg6JJA', '7324388'), - (497, 2706, 'attending', '2024-06-19 21:16:35', '2025-12-17 19:46:28', 'mybg6JJA', '7324947'), - (497, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mybg6JJA', '7331457'), - (497, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mybg6JJA', '7356752'), - (497, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mybg6JJA', '7363643'), - (497, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybg6JJA', '7368606'), - (497, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybg6JJA', '7397462'), - (497, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybg6JJA', '7424275'), - (497, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mybg6JJA', '7424276'), - (497, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybg6JJA', '7432751'), - (497, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybg6JJA', '7432752'), - (497, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybg6JJA', '7432753'), - (497, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybg6JJA', '7432754'), - (497, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybg6JJA', '7432755'), - (497, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybg6JJA', '7432756'), - (497, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybg6JJA', '7432758'), - (497, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybg6JJA', '7432759'), - (497, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mybg6JJA', '7433834'), - (497, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybg6JJA', '7470197'), - (497, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybg6JJA', '7685613'), - (497, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybg6JJA', '7688194'), - (497, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybg6JJA', '7688196'), - (497, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybg6JJA', '7688289'), - (498, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', '4vExLzOA', '5186585'), - (498, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4vExLzOA', '5195095'), - (498, 1285, 'not_attending', '2022-03-21 15:41:48', '2025-12-17 19:47:25', '4vExLzOA', '5196763'), - (498, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '4vExLzOA', '5199460'), - (498, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4vExLzOA', '5215989'), - (498, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4vExLzOA', '5223686'), - (498, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4vExLzOA', '5227432'), - (498, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4vExLzOA', '5247467'), - (498, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4vExLzOA', '5260800'), - (498, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4vExLzOA', '5269930'), - (498, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4vExLzOA', '5271448'), - (498, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4vExLzOA', '5271449'), - (498, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4vExLzOA', '5276469'), - (498, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4vExLzOA', '5278159'), - (498, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4vExLzOA', '5363695'), - (498, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4vExLzOA', '5365960'), - (498, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4vExLzOA', '5368973'), - (498, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4vExLzOA', '5378247'), - (498, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4vExLzOA', '5389605'), - (498, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4vExLzOA', '5397265'), - (498, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4vExLzOA', '6045684'), - (499, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ9y71aA', '6045684'), - (500, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4DQBMX6d', '5630960'), - (500, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4DQBMX6d', '5630961'), - (500, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4DQBMX6d', '5630962'), - (500, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4DQBMX6d', '5635406'), - (500, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4DQBMX6d', '5638765'), - (500, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4DQBMX6d', '5640097'), - (500, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4DQBMX6d', '5640843'), - (500, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4DQBMX6d', '5641521'), - (500, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4DQBMX6d', '5652395'), - (500, 1752, 'attending', '2022-10-15 15:52:21', '2025-12-17 19:47:12', '4DQBMX6d', '5653503'), - (500, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4DQBMX6d', '5671637'), - (500, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4DQBMX6d', '5672329'), - (500, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4DQBMX6d', '5674057'), - (500, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4DQBMX6d', '5674060'), - (500, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4DQBMX6d', '5677461'), - (500, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DQBMX6d', '6045684'), - (501, 244, 'attending', '2020-10-16 03:08:02', '2025-12-17 19:47:52', 'xd9V7YEm', '3149475'), - (501, 344, 'attending', '2020-11-02 00:44:58', '2025-12-17 19:47:53', 'xd9V7YEm', '3206906'), - (501, 387, 'not_attending', '2020-10-17 22:36:17', '2025-12-17 19:47:52', 'xd9V7YEm', '3228700'), - (501, 388, 'attending', '2020-10-24 22:26:26', '2025-12-17 19:47:52', 'xd9V7YEm', '3228701'), - (501, 408, 'maybe', '2021-01-08 00:27:05', '2025-12-17 19:47:50', 'xd9V7YEm', '3236466'), - (501, 410, 'not_attending', '2020-11-27 23:49:34', '2025-12-17 19:47:54', 'xd9V7YEm', '3236469'), - (501, 414, 'maybe', '2020-10-18 14:18:57', '2025-12-17 19:47:52', 'xd9V7YEm', '3237277'), - (501, 422, 'maybe', '2020-10-30 03:31:32', '2025-12-17 19:47:53', 'xd9V7YEm', '3245295'), - (501, 423, 'maybe', '2020-11-06 00:08:27', '2025-12-17 19:47:53', 'xd9V7YEm', '3245296'), - (501, 430, 'attending', '2020-10-21 02:09:48', '2025-12-17 19:47:52', 'xd9V7YEm', '3253094'), - (501, 435, 'not_attending', '2020-10-24 19:19:27', '2025-12-17 19:47:52', 'xd9V7YEm', '3254790'), - (501, 440, 'attending', '2020-10-18 16:40:58', '2025-12-17 19:47:53', 'xd9V7YEm', '3256168'), - (501, 441, 'attending', '2020-11-14 17:20:41', '2025-12-17 19:47:54', 'xd9V7YEm', '3256169'), - (501, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'xd9V7YEm', '3263578'), - (501, 445, 'not_attending', '2020-11-13 01:15:54', '2025-12-17 19:47:54', 'xd9V7YEm', '3266138'), - (501, 446, 'attending', '2020-10-26 04:35:15', '2025-12-17 19:47:53', 'xd9V7YEm', '3267163'), - (501, 449, 'attending', '2020-11-08 23:50:26', '2025-12-17 19:47:53', 'xd9V7YEm', '3272055'), - (501, 452, 'maybe', '2020-11-22 17:13:34', '2025-12-17 19:47:54', 'xd9V7YEm', '3272981'), - (501, 454, 'not_attending', '2020-11-14 00:37:08', '2025-12-17 19:47:54', 'xd9V7YEm', '3275665'), - (501, 456, 'attending', '2020-11-17 00:47:58', '2025-12-17 19:47:54', 'xd9V7YEm', '3276428'), - (501, 459, 'attending', '2020-11-16 01:02:54', '2025-12-17 19:47:54', 'xd9V7YEm', '3281467'), - (501, 462, 'attending', '2020-11-12 00:06:15', '2025-12-17 19:47:53', 'xd9V7YEm', '3281470'), - (501, 466, 'maybe', '2020-11-08 16:04:14', '2025-12-17 19:47:54', 'xd9V7YEm', '3281829'), - (501, 467, 'attending', '2020-11-18 00:10:33', '2025-12-17 19:47:54', 'xd9V7YEm', '3282756'), - (501, 468, 'attending', '2020-11-21 23:54:47', '2025-12-17 19:47:54', 'xd9V7YEm', '3285413'), - (501, 469, 'attending', '2020-11-28 23:55:35', '2025-12-17 19:47:54', 'xd9V7YEm', '3285414'), - (501, 476, 'attending', '2020-11-18 00:10:23', '2025-12-17 19:47:54', 'xd9V7YEm', '3286982'), - (501, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'xd9V7YEm', '3297764'), - (501, 482, 'maybe', '2020-11-21 20:02:18', '2025-12-17 19:47:54', 'xd9V7YEm', '3297769'), - (501, 483, 'maybe', '2020-11-21 20:02:06', '2025-12-17 19:47:54', 'xd9V7YEm', '3297791'), - (501, 487, 'attending', '2020-11-26 23:35:23', '2025-12-17 19:47:54', 'xd9V7YEm', '3311122'), - (501, 493, 'attending', '2020-12-05 23:57:45', '2025-12-17 19:47:54', 'xd9V7YEm', '3313856'), - (501, 496, 'maybe', '2020-12-11 00:23:05', '2025-12-17 19:47:54', 'xd9V7YEm', '3314269'), - (501, 497, 'not_attending', '2020-12-18 00:16:17', '2025-12-17 19:47:55', 'xd9V7YEm', '3314270'), - (501, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'xd9V7YEm', '3314909'), - (501, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'xd9V7YEm', '3314964'), - (501, 501, 'attending', '2020-12-09 00:58:00', '2025-12-17 19:47:54', 'xd9V7YEm', '3317834'), - (501, 502, 'not_attending', '2020-12-12 21:44:06', '2025-12-17 19:47:55', 'xd9V7YEm', '3323365'), - (501, 506, 'attending', '2020-12-13 17:21:59', '2025-12-17 19:47:55', 'xd9V7YEm', '3323375'), - (501, 513, 'attending', '2020-12-16 03:24:41', '2025-12-17 19:47:55', 'xd9V7YEm', '3329383'), - (501, 516, 'attending', '2020-12-19 07:29:59', '2025-12-17 19:47:48', 'xd9V7YEm', '3334530'), - (501, 517, 'not_attending', '2021-01-08 00:25:23', '2025-12-17 19:47:48', 'xd9V7YEm', '3337137'), - (501, 518, 'attending', '2020-12-20 22:29:33', '2025-12-17 19:47:48', 'xd9V7YEm', '3337138'), - (501, 526, 'attending', '2020-12-29 20:38:53', '2025-12-17 19:47:48', 'xd9V7YEm', '3351539'), - (501, 530, 'attending', '2021-01-04 23:04:46', '2025-12-17 19:47:48', 'xd9V7YEm', '3373923'), - (501, 531, 'maybe', '2021-01-02 20:57:57', '2025-12-17 19:47:48', 'xd9V7YEm', '3378210'), - (501, 532, 'attending', '2021-01-03 22:18:48', '2025-12-17 19:47:48', 'xd9V7YEm', '3381412'), - (501, 534, 'maybe', '2021-01-09 17:15:54', '2025-12-17 19:47:48', 'xd9V7YEm', '3384157'), - (501, 536, 'attending', '2021-01-09 00:12:47', '2025-12-17 19:47:48', 'xd9V7YEm', '3386848'), - (501, 539, 'maybe', '2021-01-11 22:43:00', '2025-12-17 19:47:48', 'xd9V7YEm', '3389158'), - (501, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'xd9V7YEm', '3389527'), - (501, 541, 'maybe', '2021-01-09 17:15:47', '2025-12-17 19:47:48', 'xd9V7YEm', '3391683'), - (501, 542, 'not_attending', '2021-01-11 22:42:29', '2025-12-17 19:47:48', 'xd9V7YEm', '3395013'), - (501, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'xd9V7YEm', '3396499'), - (501, 548, 'attending', '2021-01-11 22:43:11', '2025-12-17 19:47:48', 'xd9V7YEm', '3403650'), - (501, 549, 'maybe', '2021-01-16 22:36:59', '2025-12-17 19:47:49', 'xd9V7YEm', '3406988'), - (501, 553, 'attending', '2021-01-13 23:10:51', '2025-12-17 19:47:48', 'xd9V7YEm', '3407248'), - (501, 555, 'attending', '2021-01-23 23:00:29', '2025-12-17 19:47:49', 'xd9V7YEm', '3416576'), - (501, 557, 'attending', '2021-01-21 00:00:53', '2025-12-17 19:47:49', 'xd9V7YEm', '3418748'), - (501, 558, 'maybe', '2021-01-19 05:27:55', '2025-12-17 19:47:49', 'xd9V7YEm', '3418925'), - (501, 559, 'not_attending', '2021-01-28 00:13:42', '2025-12-17 19:47:49', 'xd9V7YEm', '3421439'), - (501, 560, 'attending', '2021-01-21 20:33:21', '2025-12-17 19:47:49', 'xd9V7YEm', '3421715'), - (501, 567, 'attending', '2021-01-25 06:43:50', '2025-12-17 19:47:50', 'xd9V7YEm', '3428895'), - (501, 568, 'attending', '2021-01-28 00:12:43', '2025-12-17 19:47:50', 'xd9V7YEm', '3430267'), - (501, 569, 'maybe', '2021-01-27 14:55:54', '2025-12-17 19:47:49', 'xd9V7YEm', '3432673'), - (501, 570, 'attending', '2021-02-06 01:00:05', '2025-12-17 19:47:50', 'xd9V7YEm', '3435538'), - (501, 571, 'attending', '2021-02-13 16:19:44', '2025-12-17 19:47:50', 'xd9V7YEm', '3435539'), - (501, 575, 'attending', '2021-01-28 00:14:05', '2025-12-17 19:47:50', 'xd9V7YEm', '3437492'), - (501, 576, 'maybe', '2021-02-03 00:42:16', '2025-12-17 19:47:50', 'xd9V7YEm', '3438748'), - (501, 577, 'attending', '2021-01-29 18:30:09', '2025-12-17 19:47:49', 'xd9V7YEm', '3439167'), - (501, 578, 'maybe', '2021-02-02 01:45:49', '2025-12-17 19:47:50', 'xd9V7YEm', '3440043'), - (501, 579, 'attending', '2021-02-02 01:45:14', '2025-12-17 19:47:50', 'xd9V7YEm', '3440978'), - (501, 580, 'maybe', '2021-01-30 07:01:34', '2025-12-17 19:47:50', 'xd9V7YEm', '3444240'), - (501, 581, 'attending', '2021-02-02 00:21:32', '2025-12-17 19:47:50', 'xd9V7YEm', '3445029'), - (501, 587, 'maybe', '2021-02-16 00:45:58', '2025-12-17 19:47:50', 'xd9V7YEm', '3449470'), - (501, 588, 'attending', '2021-02-18 00:07:09', '2025-12-17 19:47:50', 'xd9V7YEm', '3449471'), - (501, 589, 'attending', '2021-02-20 00:06:53', '2025-12-17 19:47:50', 'xd9V7YEm', '3449473'), - (501, 592, 'attending', '2021-02-25 02:06:56', '2025-12-17 19:47:50', 'xd9V7YEm', '3467757'), - (501, 594, 'attending', '2021-02-20 18:22:32', '2025-12-17 19:47:51', 'xd9V7YEm', '3467759'), - (501, 598, 'maybe', '2021-02-06 06:37:03', '2025-12-17 19:47:50', 'xd9V7YEm', '3468003'), - (501, 599, 'attending', '2021-02-12 04:38:56', '2025-12-17 19:47:50', 'xd9V7YEm', '3468117'), - (501, 600, 'maybe', '2021-02-06 05:17:03', '2025-12-17 19:47:50', 'xd9V7YEm', '3468125'), - (501, 602, 'attending', '2021-02-09 21:49:26', '2025-12-17 19:47:50', 'xd9V7YEm', '3470303'), - (501, 603, 'attending', '2021-02-20 00:44:36', '2025-12-17 19:47:50', 'xd9V7YEm', '3470304'), - (501, 604, 'attending', '2021-02-24 03:47:50', '2025-12-17 19:47:50', 'xd9V7YEm', '3470305'), - (501, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'xd9V7YEm', '3470991'), - (501, 609, 'attending', '2021-02-13 20:52:45', '2025-12-17 19:47:50', 'xd9V7YEm', '3480916'), - (501, 618, 'attending', '2021-02-20 21:34:18', '2025-12-17 19:47:50', 'xd9V7YEm', '3503991'), - (501, 620, 'not_attending', '2021-02-26 01:10:18', '2025-12-17 19:47:50', 'xd9V7YEm', '3513703'), - (501, 621, 'attending', '2021-03-05 00:12:02', '2025-12-17 19:47:51', 'xd9V7YEm', '3517815'), - (501, 622, 'attending', '2021-03-12 00:54:18', '2025-12-17 19:47:51', 'xd9V7YEm', '3517816'), - (501, 623, 'maybe', '2021-02-25 20:48:29', '2025-12-17 19:47:51', 'xd9V7YEm', '3523941'), - (501, 624, 'attending', '2021-02-27 06:45:00', '2025-12-17 19:47:50', 'xd9V7YEm', '3528556'), - (501, 627, 'maybe', '2021-03-10 00:02:26', '2025-12-17 19:47:51', 'xd9V7YEm', '3533303'), - (501, 631, 'maybe', '2021-03-07 23:45:42', '2025-12-17 19:47:51', 'xd9V7YEm', '3533850'), - (501, 632, 'maybe', '2021-03-02 00:50:51', '2025-12-17 19:47:51', 'xd9V7YEm', '3533853'), - (501, 635, 'maybe', '2021-04-09 04:13:59', '2025-12-17 19:47:44', 'xd9V7YEm', '3534719'), - (501, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'xd9V7YEm', '3536632'), - (501, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'xd9V7YEm', '3536656'), - (501, 641, 'attending', '2021-04-03 22:32:51', '2025-12-17 19:47:44', 'xd9V7YEm', '3539916'), - (501, 642, 'attending', '2021-04-08 02:54:20', '2025-12-17 19:47:44', 'xd9V7YEm', '3539917'), - (501, 643, 'not_attending', '2021-04-12 04:06:10', '2025-12-17 19:47:45', 'xd9V7YEm', '3539918'), - (501, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'xd9V7YEm', '3539919'), - (501, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'xd9V7YEm', '3539920'), - (501, 646, 'maybe', '2021-05-13 02:54:55', '2025-12-17 19:47:46', 'xd9V7YEm', '3539921'), - (501, 647, 'attending', '2021-05-21 23:20:25', '2025-12-17 19:47:46', 'xd9V7YEm', '3539922'), - (501, 648, 'maybe', '2021-05-27 22:31:55', '2025-12-17 19:47:47', 'xd9V7YEm', '3539923'), - (501, 649, 'maybe', '2021-03-19 22:16:28', '2025-12-17 19:47:51', 'xd9V7YEm', '3539927'), - (501, 650, 'maybe', '2021-03-26 14:49:00', '2025-12-17 19:47:44', 'xd9V7YEm', '3539928'), - (501, 656, 'attending', '2021-03-15 22:05:28', '2025-12-17 19:47:51', 'xd9V7YEm', '3547130'), - (501, 659, 'attending', '2021-04-02 20:35:41', '2025-12-17 19:47:44', 'xd9V7YEm', '3547135'), - (501, 661, 'attending', '2021-04-02 20:35:48', '2025-12-17 19:47:44', 'xd9V7YEm', '3547137'), - (501, 665, 'maybe', '2021-09-04 18:57:38', '2025-12-17 19:47:43', 'xd9V7YEm', '3547143'), - (501, 670, 'attending', '2021-06-17 03:29:55', '2025-12-17 19:47:48', 'xd9V7YEm', '3547148'), - (501, 672, 'attending', '2021-05-21 23:20:22', '2025-12-17 19:47:46', 'xd9V7YEm', '3547150'), - (501, 673, 'maybe', '2021-07-03 16:07:53', '2025-12-17 19:47:38', 'xd9V7YEm', '3547151'), - (501, 674, 'attending', '2021-08-06 02:52:16', '2025-12-17 19:47:41', 'xd9V7YEm', '3547152'), - (501, 676, 'attending', '2021-07-23 01:15:40', '2025-12-17 19:47:40', 'xd9V7YEm', '3547154'), - (501, 680, 'attending', '2021-03-07 16:15:20', '2025-12-17 19:47:51', 'xd9V7YEm', '3547700'), - (501, 684, 'attending', '2021-03-10 00:07:00', '2025-12-17 19:47:51', 'xd9V7YEm', '3549257'), - (501, 685, 'maybe', '2021-04-12 04:05:28', '2025-12-17 19:47:44', 'xd9V7YEm', '3551564'), - (501, 687, 'maybe', '2021-03-10 00:07:34', '2025-12-17 19:47:51', 'xd9V7YEm', '3553405'), - (501, 690, 'not_attending', '2021-03-23 22:59:01', '2025-12-17 19:47:44', 'xd9V7YEm', '3559954'), - (501, 696, 'attending', '2021-03-15 22:05:22', '2025-12-17 19:47:51', 'xd9V7YEm', '3567536'), - (501, 699, 'maybe', '2021-03-29 21:48:39', '2025-12-17 19:47:44', 'xd9V7YEm', '3572241'), - (501, 702, 'attending', '2021-03-19 21:59:25', '2025-12-17 19:47:51', 'xd9V7YEm', '3577181'), - (501, 705, 'maybe', '2021-03-28 17:26:34', '2025-12-17 19:47:44', 'xd9V7YEm', '3581895'), - (501, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'xd9V7YEm', '3582734'), - (501, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'xd9V7YEm', '3583262'), - (501, 711, 'attending', '2021-04-01 21:43:20', '2025-12-17 19:47:44', 'xd9V7YEm', '3588075'), - (501, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'xd9V7YEm', '3619523'), - (501, 718, 'maybe', '2021-03-26 14:48:57', '2025-12-17 19:47:44', 'xd9V7YEm', '3626844'), - (501, 722, 'attending', '2021-04-02 20:35:32', '2025-12-17 19:47:44', 'xd9V7YEm', '3646347'), - (501, 723, 'attending', '2021-03-30 04:42:53', '2025-12-17 19:47:44', 'xd9V7YEm', '3649179'), - (501, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'xd9V7YEm', '3661369'), - (501, 730, 'maybe', '2021-05-05 22:09:59', '2025-12-17 19:47:46', 'xd9V7YEm', '3668076'), - (501, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'xd9V7YEm', '3674262'), - (501, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'xd9V7YEm', '3677402'), - (501, 736, 'not_attending', '2021-04-09 04:13:52', '2025-12-17 19:47:44', 'xd9V7YEm', '3677701'), - (501, 747, 'maybe', '2021-04-08 03:34:49', '2025-12-17 19:47:45', 'xd9V7YEm', '3684754'), - (501, 750, 'not_attending', '2021-04-13 22:56:13', '2025-12-17 19:47:44', 'xd9V7YEm', '3689962'), - (501, 752, 'attending', '2021-04-12 04:06:02', '2025-12-17 19:47:44', 'xd9V7YEm', '3699422'), - (501, 761, 'maybe', '2021-05-14 21:47:49', '2025-12-17 19:47:46', 'xd9V7YEm', '3716041'), - (501, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'xd9V7YEm', '3730212'), - (501, 782, 'maybe', '2021-05-04 12:55:24', '2025-12-17 19:47:46', 'xd9V7YEm', '3761843'), - (501, 785, 'maybe', '2021-05-16 21:23:39', '2025-12-17 19:47:46', 'xd9V7YEm', '3779779'), - (501, 788, 'attending', '2021-05-07 22:56:18', '2025-12-17 19:47:46', 'xd9V7YEm', '3781975'), - (501, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'xd9V7YEm', '3793156'), - (501, 808, 'attending', '2021-05-18 20:51:04', '2025-12-17 19:47:46', 'xd9V7YEm', '3807358'), - (501, 816, 'maybe', '2021-05-20 00:56:18', '2025-12-17 19:47:46', 'xd9V7YEm', '3826524'), - (501, 823, 'attending', '2021-06-17 03:29:54', '2025-12-17 19:47:48', 'xd9V7YEm', '3974109'), - (501, 825, 'attending', '2021-06-03 15:52:53', '2025-12-17 19:47:47', 'xd9V7YEm', '3975283'), - (501, 826, 'not_attending', '2021-06-16 22:45:30', '2025-12-17 19:47:48', 'xd9V7YEm', '3975310'), - (501, 827, 'maybe', '2021-06-04 23:21:21', '2025-12-17 19:47:47', 'xd9V7YEm', '3975311'), - (501, 828, 'not_attending', '2021-06-12 14:25:23', '2025-12-17 19:47:47', 'xd9V7YEm', '3975312'), - (501, 829, 'attending', '2021-05-30 20:54:53', '2025-12-17 19:47:47', 'xd9V7YEm', '3976202'), - (501, 838, 'maybe', '2021-06-06 19:09:07', '2025-12-17 19:47:47', 'xd9V7YEm', '3994992'), - (501, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd9V7YEm', '4014338'), - (501, 845, 'not_attending', '2021-06-26 16:10:34', '2025-12-17 19:47:38', 'xd9V7YEm', '4015717'), - (501, 867, 'attending', '2021-06-26 13:30:03', '2025-12-17 19:47:38', 'xd9V7YEm', '4021848'), - (501, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd9V7YEm', '4136744'), - (501, 870, 'attending', '2021-07-03 16:07:48', '2025-12-17 19:47:39', 'xd9V7YEm', '4136937'), - (501, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd9V7YEm', '4136938'), - (501, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd9V7YEm', '4136947'), - (501, 884, 'maybe', '2021-07-17 22:37:48', '2025-12-17 19:47:42', 'xd9V7YEm', '4210314'), - (501, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd9V7YEm', '4225444'), - (501, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd9V7YEm', '4239259'), - (501, 900, 'maybe', '2021-07-24 22:25:09', '2025-12-17 19:47:40', 'xd9V7YEm', '4240316'), - (501, 901, 'not_attending', '2021-07-31 03:58:21', '2025-12-17 19:47:40', 'xd9V7YEm', '4240317'), - (501, 902, 'attending', '2021-08-06 02:52:13', '2025-12-17 19:47:41', 'xd9V7YEm', '4240318'), - (501, 903, 'attending', '2021-08-14 13:31:33', '2025-12-17 19:47:42', 'xd9V7YEm', '4240320'), - (501, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd9V7YEm', '4250163'), - (501, 919, 'attending', '2021-07-16 20:43:32', '2025-12-17 19:47:39', 'xd9V7YEm', '4275957'), - (501, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xd9V7YEm', '4277819'), - (501, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xd9V7YEm', '4301723'), - (501, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xd9V7YEm', '4302093'), - (501, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xd9V7YEm', '4304151'), - (501, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'xd9V7YEm', '4345519'), - (501, 962, 'maybe', '2021-08-12 01:49:02', '2025-12-17 19:47:41', 'xd9V7YEm', '4346305'), - (501, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'xd9V7YEm', '4356801'), - (501, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xd9V7YEm', '4358025'), - (501, 973, 'maybe', '2021-08-21 20:41:14', '2025-12-17 19:47:42', 'xd9V7YEm', '4366186'), - (501, 974, 'attending', '2021-08-28 13:12:12', '2025-12-17 19:47:42', 'xd9V7YEm', '4366187'), - (501, 988, 'attending', '2021-08-24 19:52:45', '2025-12-17 19:47:42', 'xd9V7YEm', '4402823'), - (501, 990, 'attending', '2021-08-29 02:32:55', '2025-12-17 19:47:43', 'xd9V7YEm', '4420735'), - (501, 991, 'attending', '2021-09-11 19:57:51', '2025-12-17 19:47:43', 'xd9V7YEm', '4420738'), - (501, 992, 'not_attending', '2021-09-16 01:15:00', '2025-12-17 19:47:34', 'xd9V7YEm', '4420739'), - (501, 993, 'maybe', '2021-09-25 19:29:11', '2025-12-17 19:47:34', 'xd9V7YEm', '4420741'), - (501, 994, 'maybe', '2021-09-29 02:20:06', '2025-12-17 19:47:34', 'xd9V7YEm', '4420742'), - (501, 995, 'attending', '2021-10-09 22:23:39', '2025-12-17 19:47:34', 'xd9V7YEm', '4420744'), - (501, 996, 'attending', '2021-10-16 02:43:22', '2025-12-17 19:47:35', 'xd9V7YEm', '4420747'), - (501, 997, 'maybe', '2021-10-23 19:19:40', '2025-12-17 19:47:35', 'xd9V7YEm', '4420748'), - (501, 998, 'not_attending', '2021-10-30 20:43:33', '2025-12-17 19:47:36', 'xd9V7YEm', '4420749'), - (501, 999, 'maybe', '2021-08-31 20:26:07', '2025-12-17 19:47:43', 'xd9V7YEm', '4421150'), - (501, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'xd9V7YEm', '4461883'), - (501, 1038, 'maybe', '2021-09-25 19:29:24', '2025-12-17 19:47:34', 'xd9V7YEm', '4496603'), - (501, 1046, 'attending', '2021-10-16 02:43:26', '2025-12-17 19:47:35', 'xd9V7YEm', '4496611'), - (501, 1057, 'maybe', '2021-11-13 15:55:46', '2025-12-17 19:47:37', 'xd9V7YEm', '4496624'), - (501, 1063, 'maybe', '2021-09-25 02:45:31', '2025-12-17 19:47:34', 'xd9V7YEm', '4496630'), - (501, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'xd9V7YEm', '4508342'), - (501, 1086, 'attending', '2021-10-16 00:45:57', '2025-12-17 19:47:34', 'xd9V7YEm', '4568602'), - (501, 1087, 'maybe', '2021-10-16 02:43:51', '2025-12-17 19:47:35', 'xd9V7YEm', '4572153'), - (501, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xd9V7YEm', '4585962'), - (501, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'xd9V7YEm', '4596356'), - (501, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xd9V7YEm', '4598860'), - (501, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xd9V7YEm', '4598861'), - (501, 1099, 'maybe', '2021-11-05 23:42:37', '2025-12-17 19:47:36', 'xd9V7YEm', '4602797'), - (501, 1100, 'maybe', '2021-11-08 00:04:25', '2025-12-17 19:47:36', 'xd9V7YEm', '4607305'), - (501, 1114, 'maybe', '2021-11-13 21:16:59', '2025-12-17 19:47:36', 'xd9V7YEm', '4637896'), - (501, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xd9V7YEm', '4642994'), - (501, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'xd9V7YEm', '4642995'), - (501, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xd9V7YEm', '4642996'), - (501, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'xd9V7YEm', '4642997'), - (501, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'xd9V7YEm', '4645687'), - (501, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xd9V7YEm', '4645698'), - (501, 1128, 'not_attending', '2021-11-21 00:14:57', '2025-12-17 19:47:37', 'xd9V7YEm', '4645704'), - (501, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'xd9V7YEm', '4645705'), - (501, 1130, 'attending', '2021-12-05 00:02:26', '2025-12-17 19:47:37', 'xd9V7YEm', '4658824'), - (501, 1131, 'attending', '2021-12-18 23:24:43', '2025-12-17 19:47:31', 'xd9V7YEm', '4658825'), - (501, 1134, 'not_attending', '2021-12-04 03:34:39', '2025-12-17 19:47:37', 'xd9V7YEm', '4668385'), - (501, 1149, 'maybe', '2021-12-10 03:50:17', '2025-12-17 19:47:38', 'xd9V7YEm', '4694407'), - (501, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'xd9V7YEm', '4706262'), - (501, 1170, 'attending', '2022-01-10 00:07:35', '2025-12-17 19:47:31', 'xd9V7YEm', '4731045'), - (501, 1174, 'attending', '2022-01-15 17:01:27', '2025-12-17 19:47:31', 'xd9V7YEm', '4736496'), - (501, 1175, 'not_attending', '2022-01-17 05:24:04', '2025-12-17 19:47:32', 'xd9V7YEm', '4736497'), - (501, 1176, 'not_attending', '2022-02-05 20:45:26', '2025-12-17 19:47:32', 'xd9V7YEm', '4736498'), - (501, 1177, 'attending', '2022-02-11 05:34:02', '2025-12-17 19:47:32', 'xd9V7YEm', '4736499'), - (501, 1178, 'attending', '2022-01-27 00:02:06', '2025-12-17 19:47:32', 'xd9V7YEm', '4736500'), - (501, 1179, 'attending', '2022-02-19 16:46:20', '2025-12-17 19:47:32', 'xd9V7YEm', '4736501'), - (501, 1180, 'attending', '2022-02-26 01:31:37', '2025-12-17 19:47:33', 'xd9V7YEm', '4736502'), - (501, 1181, 'attending', '2022-03-05 03:43:58', '2025-12-17 19:47:33', 'xd9V7YEm', '4736503'), - (501, 1182, 'attending', '2022-03-12 22:26:54', '2025-12-17 19:47:33', 'xd9V7YEm', '4736504'), - (501, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xd9V7YEm', '4746789'), - (501, 1186, 'not_attending', '2022-01-09 08:31:10', '2025-12-17 19:47:31', 'xd9V7YEm', '4747800'), - (501, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'xd9V7YEm', '4753929'), - (501, 1196, 'not_attending', '2022-01-21 13:46:37', '2025-12-17 19:47:32', 'xd9V7YEm', '4765583'), - (501, 1231, 'maybe', '2022-02-25 01:03:37', '2025-12-17 19:47:33', 'xd9V7YEm', '5037637'), - (501, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xd9V7YEm', '5038850'), - (501, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xd9V7YEm', '5045826'), - (501, 1244, 'attending', '2022-02-21 03:53:09', '2025-12-17 19:47:33', 'xd9V7YEm', '5060490'), - (501, 1245, 'attending', '2022-02-27 19:28:49', '2025-12-17 19:47:33', 'xd9V7YEm', '5061301'), - (501, 1259, 'maybe', '2022-03-02 01:27:44', '2025-12-17 19:47:33', 'xd9V7YEm', '5132533'), - (501, 1272, 'attending', '2022-03-18 00:04:33', '2025-12-17 19:47:25', 'xd9V7YEm', '5186582'), - (501, 1273, 'attending', '2022-03-26 03:10:27', '2025-12-17 19:47:25', 'xd9V7YEm', '5186583'), - (501, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'xd9V7YEm', '5186585'), - (501, 1281, 'attending', '2022-04-09 03:52:27', '2025-12-17 19:47:27', 'xd9V7YEm', '5190437'), - (501, 1284, 'attending', '2022-04-16 22:09:09', '2025-12-17 19:47:27', 'xd9V7YEm', '5195095'), - (501, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xd9V7YEm', '5215989'), - (501, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'xd9V7YEm', '5223686'), - (501, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'xd9V7YEm', '5227432'), - (501, 1311, 'maybe', '2022-04-09 03:53:02', '2025-12-17 19:47:27', 'xd9V7YEm', '5231430'), - (501, 1316, 'not_attending', '2022-04-13 00:49:10', '2025-12-17 19:47:27', 'xd9V7YEm', '5237536'), - (501, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'xd9V7YEm', '5247467'), - (501, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', 'xd9V7YEm', '5249631'), - (501, 1354, 'not_attending', '2022-04-23 20:45:27', '2025-12-17 19:47:27', 'xd9V7YEm', '5252569'), - (501, 1362, 'not_attending', '2022-04-30 22:48:59', '2025-12-17 19:47:28', 'xd9V7YEm', '5260800'), - (501, 1366, 'not_attending', '2022-04-26 17:04:53', '2025-12-17 19:47:27', 'xd9V7YEm', '5262344'), - (501, 1367, 'maybe', '2022-05-01 17:03:21', '2025-12-17 19:47:28', 'xd9V7YEm', '5262345'), - (501, 1374, 'not_attending', '2022-05-06 23:43:40', '2025-12-17 19:47:28', 'xd9V7YEm', '5269930'), - (501, 1378, 'attending', '2022-05-14 15:51:20', '2025-12-17 19:47:29', 'xd9V7YEm', '5271448'), - (501, 1379, 'attending', '2022-05-20 13:49:14', '2025-12-17 19:47:29', 'xd9V7YEm', '5271449'), - (501, 1380, 'attending', '2022-05-27 11:30:29', '2025-12-17 19:47:30', 'xd9V7YEm', '5271450'), - (501, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'xd9V7YEm', '5276469'), - (501, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'xd9V7YEm', '5278159'), - (501, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'xd9V7YEm', '5363695'), - (501, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'xd9V7YEm', '5365960'), - (501, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'xd9V7YEm', '5368973'), - (501, 1422, 'not_attending', '2022-05-27 11:35:14', '2025-12-17 19:47:30', 'xd9V7YEm', '5375603'), - (501, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'xd9V7YEm', '5378247'), - (501, 1431, 'not_attending', '2022-06-11 18:24:34', '2025-12-17 19:47:31', 'xd9V7YEm', '5389605'), - (501, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'xd9V7YEm', '5397265'), - (501, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'xd9V7YEm', '5403967'), - (501, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'xd9V7YEm', '5404786'), - (501, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'xd9V7YEm', '5405203'), - (501, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'xd9V7YEm', '5411699'), - (501, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'xd9V7YEm', '5412550'), - (501, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'xd9V7YEm', '5415046'), - (501, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'xd9V7YEm', '5422086'), - (501, 1498, 'attending', '2022-07-02 16:32:39', '2025-12-17 19:47:19', 'xd9V7YEm', '5422406'), - (501, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'xd9V7YEm', '5424565'), - (501, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'xd9V7YEm', '5426882'), - (501, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'xd9V7YEm', '5427083'), - (501, 1511, 'maybe', '2022-07-09 18:32:51', '2025-12-17 19:47:19', 'xd9V7YEm', '5437733'), - (501, 1513, 'not_attending', '2022-07-14 00:45:02', '2025-12-17 19:47:20', 'xd9V7YEm', '5441125'), - (501, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'xd9V7YEm', '5441126'), - (501, 1515, 'attending', '2022-08-06 16:53:58', '2025-12-17 19:47:21', 'xd9V7YEm', '5441128'), - (501, 1516, 'attending', '2022-08-14 22:39:43', '2025-12-17 19:47:23', 'xd9V7YEm', '5441129'), - (501, 1517, 'attending', '2022-08-26 23:22:03', '2025-12-17 19:47:23', 'xd9V7YEm', '5441130'), - (501, 1518, 'maybe', '2022-08-30 02:05:27', '2025-12-17 19:47:24', 'xd9V7YEm', '5441131'), - (501, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'xd9V7YEm', '5441132'), - (501, 1527, 'not_attending', '2022-07-14 00:44:28', '2025-12-17 19:47:20', 'xd9V7YEm', '5446425'), - (501, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'xd9V7YEm', '5446643'), - (501, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'xd9V7YEm', '5453325'), - (501, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'xd9V7YEm', '5454516'), - (501, 1544, 'attending', '2022-09-15 00:02:38', '2025-12-17 19:47:11', 'xd9V7YEm', '5454517'), - (501, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'xd9V7YEm', '5454605'), - (501, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'xd9V7YEm', '5455037'), - (501, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'xd9V7YEm', '5461278'), - (501, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'xd9V7YEm', '5469480'), - (501, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'xd9V7YEm', '5471073'), - (501, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'xd9V7YEm', '5474663'), - (501, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'xd9V7YEm', '5482022'), - (501, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'xd9V7YEm', '5482793'), - (501, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'xd9V7YEm', '5488912'), - (501, 1582, 'maybe', '2022-08-14 22:39:37', '2025-12-17 19:47:23', 'xd9V7YEm', '5492001'), - (501, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'xd9V7YEm', '5492192'), - (501, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'xd9V7YEm', '5493139'), - (501, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'xd9V7YEm', '5493200'), - (501, 1603, 'maybe', '2022-08-14 22:39:21', '2025-12-17 19:47:23', 'xd9V7YEm', '5497895'), - (501, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'xd9V7YEm', '5502188'), - (501, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'xd9V7YEm', '5505059'), - (501, 1612, 'maybe', '2022-10-01 13:34:03', '2025-12-17 19:47:12', 'xd9V7YEm', '5507653'), - (501, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'xd9V7YEm', '5509055'), - (501, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'xd9V7YEm', '5512862'), - (501, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'xd9V7YEm', '5513985'), - (501, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'xd9V7YEm', '5519981'), - (501, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'xd9V7YEm', '5522550'), - (501, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'xd9V7YEm', '5534683'), - (501, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'xd9V7YEm', '5537735'), - (501, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'xd9V7YEm', '5540859'), - (501, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'xd9V7YEm', '5546619'), - (501, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'xd9V7YEm', '5555245'), - (501, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'xd9V7YEm', '5557747'), - (501, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'xd9V7YEm', '5560255'), - (501, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'xd9V7YEm', '5562906'), - (501, 1667, 'attending', '2022-09-23 23:39:58', '2025-12-17 19:47:11', 'xd9V7YEm', '5563221'), - (501, 1668, 'maybe', '2022-10-01 13:33:43', '2025-12-17 19:47:12', 'xd9V7YEm', '5563222'), - (501, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'xd9V7YEm', '5600604'), - (501, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'xd9V7YEm', '5605544'), - (501, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'xd9V7YEm', '5606737'), - (501, 1703, 'attending', '2022-10-05 16:57:30', '2025-12-17 19:47:12', 'xd9V7YEm', '5609176'), - (501, 1719, 'maybe', '2022-10-08 05:52:28', '2025-12-17 19:47:12', 'xd9V7YEm', '5630958'), - (501, 1720, 'attending', '2022-10-15 16:28:34', '2025-12-17 19:47:12', 'xd9V7YEm', '5630959'), - (501, 1721, 'not_attending', '2022-10-19 11:09:16', '2025-12-17 19:47:13', 'xd9V7YEm', '5630960'), - (501, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'xd9V7YEm', '5630961'), - (501, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'xd9V7YEm', '5630962'), - (501, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'xd9V7YEm', '5630966'), - (501, 1725, 'attending', '2022-11-14 04:02:34', '2025-12-17 19:47:16', 'xd9V7YEm', '5630967'), - (501, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'xd9V7YEm', '5630968'), - (501, 1727, 'attending', '2022-12-03 20:33:06', '2025-12-17 19:47:16', 'xd9V7YEm', '5630969'), - (501, 1728, 'attending', '2022-12-11 06:01:11', '2025-12-17 19:47:17', 'xd9V7YEm', '5630970'), - (501, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'xd9V7YEm', '5635406'), - (501, 1733, 'maybe', '2022-10-09 18:17:32', '2025-12-17 19:47:12', 'xd9V7YEm', '5635411'), - (501, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'xd9V7YEm', '5638765'), - (501, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'xd9V7YEm', '5640097'), - (501, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'xd9V7YEm', '5640843'), - (501, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'xd9V7YEm', '5641521'), - (501, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'xd9V7YEm', '5642818'), - (501, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'xd9V7YEm', '5652395'), - (501, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'xd9V7YEm', '5670445'), - (501, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'xd9V7YEm', '5671637'), - (501, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'xd9V7YEm', '5672329'), - (501, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'xd9V7YEm', '5674057'), - (501, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'xd9V7YEm', '5674060'), - (501, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'xd9V7YEm', '5677461'), - (501, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'xd9V7YEm', '5698046'), - (501, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'xd9V7YEm', '5699760'), - (501, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'xd9V7YEm', '5741601'), - (501, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'xd9V7YEm', '5763458'), - (501, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'xd9V7YEm', '5774172'), - (501, 1825, 'attending', '2022-11-27 04:24:18', '2025-12-17 19:47:16', 'xd9V7YEm', '5776760'), - (501, 1828, 'not_attending', '2022-11-28 21:34:38', '2025-12-17 19:47:16', 'xd9V7YEm', '5778865'), - (501, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'xd9V7YEm', '5818247'), - (501, 1834, 'attending', '2022-12-10 05:22:44', '2025-12-17 19:47:17', 'xd9V7YEm', '5819470'), - (501, 1835, 'maybe', '2022-12-31 18:02:09', '2025-12-17 19:47:05', 'xd9V7YEm', '5819471'), - (501, 1841, 'attending', '2023-01-05 04:42:18', '2025-12-17 19:47:05', 'xd9V7YEm', '5827665'), - (501, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'xd9V7YEm', '5827739'), - (501, 1843, 'attending', '2022-12-17 22:36:30', '2025-12-17 19:47:04', 'xd9V7YEm', '5844304'), - (501, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xd9V7YEm', '5844306'), - (501, 1847, 'attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xd9V7YEm', '5850159'), - (501, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xd9V7YEm', '5858999'), - (501, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xd9V7YEm', '5871984'), - (501, 1858, 'attending', '2023-01-15 23:47:48', '2025-12-17 19:47:05', 'xd9V7YEm', '5875044'), - (501, 1860, 'attending', '2023-01-13 11:41:14', '2025-12-17 19:47:05', 'xd9V7YEm', '5876309'), - (501, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xd9V7YEm', '5876354'), - (501, 1864, 'not_attending', '2023-01-19 01:54:04', '2025-12-17 19:47:05', 'xd9V7YEm', '5879675'), - (501, 1865, 'attending', '2023-01-27 00:02:03', '2025-12-17 19:47:06', 'xd9V7YEm', '5879676'), - (501, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xd9V7YEm', '5880939'), - (501, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xd9V7YEm', '5880940'), - (501, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xd9V7YEm', '5880942'), - (501, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xd9V7YEm', '5880943'), - (501, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xd9V7YEm', '5887890'), - (501, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xd9V7YEm', '5888598'), - (501, 1879, 'maybe', '2023-01-29 22:58:20', '2025-12-17 19:47:06', 'xd9V7YEm', '5893001'), - (501, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xd9V7YEm', '5893260'), - (501, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xd9V7YEm', '5899826'), - (501, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xd9V7YEm', '5900199'), - (501, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xd9V7YEm', '5900200'), - (501, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xd9V7YEm', '5900202'), - (501, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xd9V7YEm', '5900203'), - (501, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xd9V7YEm', '5901108'), - (501, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xd9V7YEm', '5901126'), - (501, 1897, 'maybe', '2023-02-11 01:31:40', '2025-12-17 19:47:07', 'xd9V7YEm', '5901128'), - (501, 1910, 'maybe', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xd9V7YEm', '5909655'), - (501, 1912, 'maybe', '2023-02-16 04:29:15', '2025-12-17 19:47:07', 'xd9V7YEm', '5909808'), - (501, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xd9V7YEm', '5910522'), - (501, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xd9V7YEm', '5910526'), - (501, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xd9V7YEm', '5910528'), - (501, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xd9V7YEm', '5916219'), - (501, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xd9V7YEm', '5936234'), - (501, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xd9V7YEm', '5958351'), - (501, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xd9V7YEm', '5959751'), - (501, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xd9V7YEm', '5959755'), - (501, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xd9V7YEm', '5960055'), - (501, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xd9V7YEm', '5961684'), - (501, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'xd9V7YEm', '5962132'), - (501, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'xd9V7YEm', '5962133'), - (501, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xd9V7YEm', '5962134'), - (501, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xd9V7YEm', '5962317'), - (501, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xd9V7YEm', '5962318'), - (501, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'xd9V7YEm', '5965933'), - (501, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xd9V7YEm', '5967014'), - (501, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xd9V7YEm', '5972815'), - (501, 1959, 'maybe', '2023-03-26 15:25:41', '2025-12-17 19:46:57', 'xd9V7YEm', '5972829'), - (501, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xd9V7YEm', '5974016'), - (501, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'xd9V7YEm', '5975052'), - (501, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'xd9V7YEm', '5975054'), - (501, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xd9V7YEm', '5981515'), - (501, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xd9V7YEm', '5993516'), - (501, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xd9V7YEm', '5998939'), - (501, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xd9V7YEm', '6028191'), - (501, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xd9V7YEm', '6040066'), - (501, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xd9V7YEm', '6042717'), - (501, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xd9V7YEm', '6044838'), - (501, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xd9V7YEm', '6044839'), - (501, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9V7YEm', '6045684'), - (501, 1991, 'attending', '2023-04-02 05:50:40', '2025-12-17 19:46:58', 'xd9V7YEm', '6047354'), - (501, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xd9V7YEm', '6050104'), - (501, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xd9V7YEm', '6053195'), - (501, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xd9V7YEm', '6053198'), - (501, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xd9V7YEm', '6056085'), - (501, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xd9V7YEm', '6056916'), - (501, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xd9V7YEm', '6059290'), - (501, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xd9V7YEm', '6060328'), - (501, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xd9V7YEm', '6061037'), - (501, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xd9V7YEm', '6061039'), - (501, 2019, 'maybe', '2023-04-15 19:57:43', '2025-12-17 19:47:00', 'xd9V7YEm', '6062934'), - (501, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'xd9V7YEm', '6065813'), - (501, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xd9V7YEm', '6067245'), - (501, 2024, 'attending', '2023-04-17 01:36:55', '2025-12-17 19:47:00', 'xd9V7YEm', '6067437'), - (501, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xd9V7YEm', '6068094'), - (501, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xd9V7YEm', '6068252'), - (501, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xd9V7YEm', '6068253'), - (501, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xd9V7YEm', '6068254'), - (501, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'xd9V7YEm', '6068280'), - (501, 2032, 'not_attending', '2023-06-03 14:03:12', '2025-12-17 19:47:04', 'xd9V7YEm', '6068281'), - (501, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xd9V7YEm', '6069093'), - (501, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xd9V7YEm', '6072528'), - (501, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'xd9V7YEm', '6075556'), - (501, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xd9V7YEm', '6079840'), - (501, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xd9V7YEm', '6083398'), - (501, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xd9V7YEm', '6093504'), - (501, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xd9V7YEm', '6097414'), - (501, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xd9V7YEm', '6097442'), - (501, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xd9V7YEm', '6097684'), - (501, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xd9V7YEm', '6098762'), - (501, 2064, 'attending', '2023-06-24 21:48:44', '2025-12-17 19:46:50', 'xd9V7YEm', '6099988'), - (501, 2065, 'not_attending', '2023-06-15 15:53:34', '2025-12-17 19:46:49', 'xd9V7YEm', '6101169'), - (501, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xd9V7YEm', '6101361'), - (501, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xd9V7YEm', '6101362'), - (501, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xd9V7YEm', '6107314'), - (501, 2076, 'attending', '2023-05-19 11:41:10', '2025-12-17 19:47:03', 'xd9V7YEm', '6108350'), - (501, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xd9V7YEm', '6120034'), - (501, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'xd9V7YEm', '6136733'), - (501, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xd9V7YEm', '6137989'), - (501, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xd9V7YEm', '6150864'), - (501, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xd9V7YEm', '6155491'), - (501, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xd9V7YEm', '6164417'), - (501, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xd9V7YEm', '6166388'), - (501, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xd9V7YEm', '6176439'), - (501, 2126, 'attending', '2023-06-29 23:45:48', '2025-12-17 19:46:51', 'xd9V7YEm', '6177548'), - (501, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xd9V7YEm', '6182410'), - (501, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xd9V7YEm', '6185812'), - (501, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xd9V7YEm', '6187651'), - (501, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xd9V7YEm', '6187963'), - (501, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xd9V7YEm', '6187964'), - (501, 2136, 'maybe', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xd9V7YEm', '6187966'), - (501, 2137, 'maybe', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xd9V7YEm', '6187967'), - (501, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xd9V7YEm', '6187969'), - (501, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xd9V7YEm', '6334878'), - (501, 2153, 'maybe', '2023-07-16 17:04:30', '2025-12-17 19:46:52', 'xd9V7YEm', '6337236'), - (501, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xd9V7YEm', '6337970'), - (501, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xd9V7YEm', '6338308'), - (501, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'xd9V7YEm', '6338342'), - (501, 2159, 'attending', '2023-07-17 23:41:24', '2025-12-17 19:46:53', 'xd9V7YEm', '6338355'), - (501, 2160, 'attending', '2023-07-17 23:41:27', '2025-12-17 19:46:54', 'xd9V7YEm', '6338358'), - (501, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xd9V7YEm', '6341710'), - (501, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xd9V7YEm', '6342044'), - (501, 2167, 'maybe', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xd9V7YEm', '6342298'), - (501, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xd9V7YEm', '6343294'), - (501, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xd9V7YEm', '6347034'), - (501, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xd9V7YEm', '6347056'), - (501, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xd9V7YEm', '6353830'), - (501, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xd9V7YEm', '6353831'), - (501, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xd9V7YEm', '6357867'), - (501, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xd9V7YEm', '6358652'), - (501, 2193, 'maybe', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'xd9V7YEm', '6358668'), - (501, 2194, 'maybe', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'xd9V7YEm', '6358669'), - (501, 2204, 'attending', '2023-08-18 10:21:09', '2025-12-17 19:46:55', 'xd9V7YEm', '6361542'), - (501, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xd9V7YEm', '6361709'), - (501, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xd9V7YEm', '6361710'), - (501, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xd9V7YEm', '6361711'), - (501, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xd9V7YEm', '6361712'), - (501, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xd9V7YEm', '6361713'), - (501, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'xd9V7YEm', '6382573'), - (501, 2239, 'attending', '2023-08-31 21:42:34', '2025-12-17 19:46:56', 'xd9V7YEm', '6387592'), - (501, 2240, 'attending', '2023-09-08 03:08:29', '2025-12-17 19:46:56', 'xd9V7YEm', '6388603'), - (501, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'xd9V7YEm', '6388604'), - (501, 2242, 'attending', '2023-09-21 22:13:02', '2025-12-17 19:46:45', 'xd9V7YEm', '6388606'), - (501, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xd9V7YEm', '6394629'), - (501, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xd9V7YEm', '6394631'), - (501, 2256, 'attending', '2023-09-21 22:13:09', '2025-12-17 19:46:45', 'xd9V7YEm', '6404369'), - (501, 2267, 'maybe', '2023-10-04 17:24:31', '2025-12-17 19:46:45', 'xd9V7YEm', '6440034'), - (501, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xd9V7YEm', '6440863'), - (501, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xd9V7YEm', '6445440'), - (501, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xd9V7YEm', '6453951'), - (501, 2277, 'maybe', '2023-10-08 22:57:14', '2025-12-17 19:46:46', 'xd9V7YEm', '6455211'), - (501, 2279, 'not_attending', '2023-10-08 22:57:20', '2025-12-17 19:46:46', 'xd9V7YEm', '6455460'), - (501, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xd9V7YEm', '6461696'), - (501, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xd9V7YEm', '6462129'), - (501, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xd9V7YEm', '6463218'), - (501, 2294, 'not_attending', '2023-10-13 16:18:18', '2025-12-17 19:46:46', 'xd9V7YEm', '6465907'), - (501, 2299, 'attending', '2023-10-19 22:24:07', '2025-12-17 19:46:46', 'xd9V7YEm', '6472181'), - (501, 2303, 'attending', '2023-10-26 01:29:26', '2025-12-17 19:46:47', 'xd9V7YEm', '6482691'), - (501, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'xd9V7YEm', '6482693'), - (501, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'xd9V7YEm', '6484200'), - (501, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xd9V7YEm', '6484680'), - (501, 2310, 'attending', '2023-11-12 00:55:56', '2025-12-17 19:46:47', 'xd9V7YEm', '6487709'), - (501, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xd9V7YEm', '6507741'), - (501, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'xd9V7YEm', '6514659'), - (501, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xd9V7YEm', '6514660'), - (501, 2324, 'attending', '2023-12-08 01:19:46', '2025-12-17 19:46:49', 'xd9V7YEm', '6514662'), - (501, 2325, 'attending', '2023-12-13 02:46:22', '2025-12-17 19:46:36', 'xd9V7YEm', '6514663'), - (501, 2332, 'attending', '2023-11-03 20:51:07', '2025-12-17 19:46:47', 'xd9V7YEm', '6518655'), - (501, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xd9V7YEm', '6519103'), - (501, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xd9V7YEm', '6535681'), - (501, 2338, 'attending', '2023-11-24 06:07:09', '2025-12-17 19:46:48', 'xd9V7YEm', '6538868'), - (501, 2341, 'attending', '2023-11-12 20:14:10', '2025-12-17 19:46:48', 'xd9V7YEm', '6543263'), - (501, 2349, 'not_attending', '2023-11-22 17:02:13', '2025-12-17 19:46:48', 'xd9V7YEm', '6583065'), - (501, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xd9V7YEm', '6584747'), - (501, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xd9V7YEm', '6587097'), - (501, 2358, 'attending', '2023-11-30 01:17:19', '2025-12-17 19:46:48', 'xd9V7YEm', '6595321'), - (501, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xd9V7YEm', '6609022'), - (501, 2373, 'attending', '2024-01-14 17:46:15', '2025-12-17 19:46:38', 'xd9V7YEm', '6632678'), - (501, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xd9V7YEm', '6632757'), - (501, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xd9V7YEm', '6644187'), - (501, 2380, 'attending', '2023-12-31 02:09:35', '2025-12-17 19:46:37', 'xd9V7YEm', '6645105'), - (501, 2384, 'attending', '2024-01-02 04:26:36', '2025-12-17 19:46:37', 'xd9V7YEm', '6648022'), - (501, 2385, 'maybe', '2024-01-03 03:02:39', '2025-12-17 19:46:37', 'xd9V7YEm', '6648943'), - (501, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xd9V7YEm', '6648951'), - (501, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xd9V7YEm', '6648952'), - (501, 2388, 'attending', '2024-01-03 03:05:34', '2025-12-17 19:46:37', 'xd9V7YEm', '6649244'), - (501, 2390, 'maybe', '2024-01-07 05:22:28', '2025-12-17 19:46:37', 'xd9V7YEm', '6651141'), - (501, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xd9V7YEm', '6655401'), - (501, 2399, 'attending', '2024-01-11 02:33:07', '2025-12-17 19:46:38', 'xd9V7YEm', '6657583'), - (501, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xd9V7YEm', '6661585'), - (501, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xd9V7YEm', '6661588'), - (501, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xd9V7YEm', '6661589'), - (501, 2404, 'maybe', '2024-01-13 19:02:03', '2025-12-17 19:46:38', 'xd9V7YEm', '6666858'), - (501, 2405, 'maybe', '2024-01-13 19:01:53', '2025-12-17 19:46:38', 'xd9V7YEm', '6667332'), - (501, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xd9V7YEm', '6699906'), - (501, 2408, 'attending', '2024-01-26 05:26:18', '2025-12-17 19:46:40', 'xd9V7YEm', '6699907'), - (501, 2409, 'attending', '2024-02-02 04:48:52', '2025-12-17 19:46:41', 'xd9V7YEm', '6699909'), - (501, 2410, 'attending', '2024-02-09 18:38:29', '2025-12-17 19:46:41', 'xd9V7YEm', '6699911'), - (501, 2411, 'not_attending', '2024-02-12 18:10:48', '2025-12-17 19:46:42', 'xd9V7YEm', '6699913'), - (501, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xd9V7YEm', '6701109'), - (501, 2419, 'maybe', '2024-02-03 00:32:02', '2025-12-17 19:46:41', 'xd9V7YEm', '6704505'), - (501, 2420, 'maybe', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'xd9V7YEm', '6704561'), - (501, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xd9V7YEm', '6705219'), - (501, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'xd9V7YEm', '6708410'), - (501, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xd9V7YEm', '6710153'), - (501, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xd9V7YEm', '6711552'), - (501, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'xd9V7YEm', '6711553'), - (501, 2431, 'maybe', '2024-01-23 05:26:25', '2025-12-17 19:46:41', 'xd9V7YEm', '6712394'), - (501, 2434, 'attending', '2024-01-27 04:10:39', '2025-12-17 19:46:40', 'xd9V7YEm', '6716605'), - (501, 2435, 'attending', '2024-01-27 02:47:26', '2025-12-17 19:46:41', 'xd9V7YEm', '6721547'), - (501, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xd9V7YEm', '6722688'), - (501, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xd9V7YEm', '6730620'), - (501, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xd9V7YEm', '6730642'), - (501, 2441, 'attending', '2024-02-02 04:50:51', '2025-12-17 19:46:41', 'xd9V7YEm', '6731263'), - (501, 2452, 'maybe', '2024-02-12 18:10:12', '2025-12-17 19:46:41', 'xd9V7YEm', '6740361'), - (501, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xd9V7YEm', '6740364'), - (501, 2456, 'maybe', '2024-02-08 16:40:01', '2025-12-17 19:46:41', 'xd9V7YEm', '6742202'), - (501, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xd9V7YEm', '6743829'), - (501, 2463, 'maybe', '2024-02-12 18:10:29', '2025-12-17 19:46:41', 'xd9V7YEm', '6746394'), - (501, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xd9V7YEm', '7030380'), - (501, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xd9V7YEm', '7033677'), - (501, 2473, 'attending', '2024-02-26 20:16:38', '2025-12-17 19:46:43', 'xd9V7YEm', '7033724'), - (501, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xd9V7YEm', '7035415'), - (501, 2477, 'attending', '2024-02-22 04:21:05', '2025-12-17 19:46:42', 'xd9V7YEm', '7035692'), - (501, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xd9V7YEm', '7044715'), - (501, 2487, 'maybe', '2024-03-22 16:22:13', '2025-12-17 19:46:33', 'xd9V7YEm', '7049279'), - (501, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xd9V7YEm', '7050318'), - (501, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xd9V7YEm', '7050319'), - (501, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xd9V7YEm', '7050322'), - (501, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xd9V7YEm', '7057804'), - (501, 2502, 'not_attending', '2024-03-06 02:24:18', '2025-12-17 19:46:33', 'xd9V7YEm', '7061202'), - (501, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xd9V7YEm', '7072824'), - (501, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xd9V7YEm', '7074348'), - (501, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xd9V7YEm', '7074364'), - (501, 2528, 'not_attending', '2024-08-03 01:28:18', '2025-12-17 19:46:31', 'xd9V7YEm', '7074368'), - (501, 2538, 'attending', '2024-03-24 23:05:47', '2025-12-17 19:46:33', 'xd9V7YEm', '7085485'), - (501, 2539, 'maybe', '2024-04-05 20:21:10', '2025-12-17 19:46:33', 'xd9V7YEm', '7085486'), - (501, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'xd9V7YEm', '7089267'), - (501, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xd9V7YEm', '7098747'), - (501, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xd9V7YEm', '7113468'), - (501, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xd9V7YEm', '7114856'), - (501, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xd9V7YEm', '7114951'), - (501, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xd9V7YEm', '7114955'), - (501, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xd9V7YEm', '7114956'), - (501, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xd9V7YEm', '7114957'), - (501, 2567, 'maybe', '2024-04-04 01:49:18', '2025-12-17 19:46:33', 'xd9V7YEm', '7144962'), - (501, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xd9V7YEm', '7153615'), - (501, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xd9V7YEm', '7159484'), - (501, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xd9V7YEm', '7178446'), - (501, 2594, 'attending', '2024-04-20 15:25:44', '2025-12-17 19:46:34', 'xd9V7YEm', '7182117'), - (501, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'xd9V7YEm', '7220467'), - (501, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xd9V7YEm', '7240354'), - (501, 2617, 'attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xd9V7YEm', '7251633'), - (501, 2623, 'maybe', '2024-05-10 14:21:06', '2025-12-17 19:46:35', 'xd9V7YEm', '7263048'), - (501, 2624, 'not_attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', 'xd9V7YEm', '7263301'), - (501, 2626, 'attending', '2024-05-16 23:24:03', '2025-12-17 19:46:35', 'xd9V7YEm', '7264723'), - (501, 2628, 'attending', '2024-05-31 02:32:14', '2025-12-17 19:46:36', 'xd9V7YEm', '7264725'), - (501, 2629, 'attending', '2024-06-07 22:39:51', '2025-12-17 19:46:28', 'xd9V7YEm', '7264726'), - (501, 2650, 'attending', '2024-05-24 16:28:16', '2025-12-17 19:46:35', 'xd9V7YEm', '7288199'), - (501, 2655, 'maybe', '2024-05-26 23:07:17', '2025-12-17 19:46:35', 'xd9V7YEm', '7291225'), - (501, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'xd9V7YEm', '7302674'), - (501, 2678, 'attending', '2024-06-11 11:17:17', '2025-12-17 19:46:28', 'xd9V7YEm', '7319489'), - (501, 2679, 'not_attending', '2024-06-20 15:22:59', '2025-12-17 19:46:29', 'xd9V7YEm', '7319490'), - (501, 2685, 'maybe', '2024-06-11 11:17:03', '2025-12-17 19:46:28', 'xd9V7YEm', '7322675'), - (501, 2686, 'not_attending', '2024-06-11 11:16:20', '2025-12-17 19:46:29', 'xd9V7YEm', '7323802'), - (501, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xd9V7YEm', '7324073'), - (501, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xd9V7YEm', '7324074'), - (501, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xd9V7YEm', '7324075'), - (501, 2691, 'not_attending', '2024-07-20 00:17:35', '2025-12-17 19:46:30', 'xd9V7YEm', '7324076'), - (501, 2692, 'not_attending', '2024-07-20 00:17:39', '2025-12-17 19:46:30', 'xd9V7YEm', '7324077'), - (501, 2693, 'maybe', '2024-07-31 23:48:50', '2025-12-17 19:46:31', 'xd9V7YEm', '7324078'), - (501, 2694, 'attending', '2024-08-10 22:12:47', '2025-12-17 19:46:31', 'xd9V7YEm', '7324079'), - (501, 2695, 'attending', '2024-08-17 22:18:16', '2025-12-17 19:46:31', 'xd9V7YEm', '7324080'), - (501, 2696, 'maybe', '2024-08-19 13:39:40', '2025-12-17 19:46:32', 'xd9V7YEm', '7324081'), - (501, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xd9V7YEm', '7324082'), - (501, 2709, 'maybe', '2024-06-20 15:23:22', '2025-12-17 19:46:29', 'xd9V7YEm', '7325107'), - (501, 2710, 'maybe', '2024-06-20 15:22:42', '2025-12-17 19:46:29', 'xd9V7YEm', '7325108'), - (501, 2721, 'attending', '2024-06-20 15:23:33', '2025-12-17 19:46:29', 'xd9V7YEm', '7331456'), - (501, 2722, 'attending', '2024-07-08 22:55:30', '2025-12-17 19:46:29', 'xd9V7YEm', '7331457'), - (501, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xd9V7YEm', '7363643'), - (501, 2773, 'attending', '2024-07-21 18:41:54', '2025-12-17 19:46:31', 'xd9V7YEm', '7368605'), - (501, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xd9V7YEm', '7368606'), - (501, 2792, 'maybe', '2024-08-08 14:06:09', '2025-12-17 19:46:31', 'xd9V7YEm', '7390763'), - (501, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xd9V7YEm', '7397462'), - (501, 2807, 'attending', '2024-08-22 22:30:46', '2025-12-17 19:46:32', 'xd9V7YEm', '7406485'), - (501, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xd9V7YEm', '7432751'), - (501, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xd9V7YEm', '7432752'), - (501, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xd9V7YEm', '7432753'), - (501, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xd9V7YEm', '7432754'), - (501, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xd9V7YEm', '7432755'), - (501, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xd9V7YEm', '7432756'), - (501, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xd9V7YEm', '7432758'), - (501, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xd9V7YEm', '7432759'), - (501, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xd9V7YEm', '7433834'), - (502, 245, 'attending', '2020-11-27 18:14:33', '2025-12-17 19:47:54', '64vvYGk4', '3149476'), - (502, 469, 'attending', '2020-11-27 18:10:55', '2025-12-17 19:47:54', '64vvYGk4', '3285414'), - (502, 493, 'not_attending', '2020-12-06 01:13:28', '2025-12-17 19:47:54', '64vvYGk4', '3313856'), - (502, 495, 'attending', '2020-12-02 08:15:16', '2025-12-17 19:47:54', '64vvYGk4', '3314009'), - (502, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '64vvYGk4', '3314909'), - (502, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '64vvYGk4', '3314964'), - (502, 502, 'not_attending', '2020-12-13 01:24:46', '2025-12-17 19:47:55', '64vvYGk4', '3323365'), - (502, 511, 'attending', '2020-12-15 03:37:36', '2025-12-17 19:47:55', '64vvYGk4', '3325335'), - (502, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '64vvYGk4', '3329383'), - (502, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '64vvYGk4', '3351539'), - (502, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '64vvYGk4', '3386848'), - (502, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '64vvYGk4', '3389527'), - (502, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '64vvYGk4', '3396499'), - (502, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '64vvYGk4', '3403650'), - (502, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '64vvYGk4', '3406988'), - (502, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', '64vvYGk4', '3408338'), - (502, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '64vvYGk4', '3416576'), - (502, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64vvYGk4', '6045684'), - (503, 252, 'attending', '2021-02-23 00:35:51', '2025-12-17 19:47:50', '54koopR4', '3149483'), - (503, 573, 'not_attending', '2021-02-25 21:18:14', '2025-12-17 19:47:50', '54koopR4', '3435542'), - (503, 574, 'not_attending', '2021-03-03 23:45:35', '2025-12-17 19:47:51', '54koopR4', '3435543'), - (503, 592, 'attending', '2021-02-24 04:43:39', '2025-12-17 19:47:50', '54koopR4', '3467757'), - (503, 594, 'not_attending', '2021-03-01 23:48:44', '2025-12-17 19:47:51', '54koopR4', '3467759'), - (503, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '54koopR4', '3470305'), - (503, 620, 'attending', '2021-02-24 04:43:44', '2025-12-17 19:47:50', '54koopR4', '3513703'), - (503, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '54koopR4', '3517815'), - (503, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '54koopR4', '3517816'), - (503, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '54koopR4', '3523941'), - (503, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54koopR4', '3533850'), - (503, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '54koopR4', '3536632'), - (503, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '54koopR4', '3536656'), - (503, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '54koopR4', '3539916'), - (503, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '54koopR4', '3539917'), - (503, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '54koopR4', '3539918'), - (503, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '54koopR4', '3539919'), - (503, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54koopR4', '3539920'), - (503, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54koopR4', '3539921'), - (503, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54koopR4', '3539922'), - (503, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '54koopR4', '3539923'), - (503, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '54koopR4', '3539927'), - (503, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54koopR4', '3582734'), - (503, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '54koopR4', '3583262'), - (503, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '54koopR4', '3619523'), - (503, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '54koopR4', '3661369'), - (503, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54koopR4', '3674262'), - (503, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54koopR4', '3677402'), - (503, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54koopR4', '3730212'), - (503, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54koopR4', '6045684'), - (504, 2522, 'not_attending', '2024-07-17 19:54:31', '2025-12-17 19:46:30', '4v0WwbOm', '7074362'), - (504, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4v0WwbOm', '7074364'), - (504, 2529, 'attending', '2024-05-19 02:50:58', '2025-12-17 19:46:35', '4v0WwbOm', '7074369'), - (504, 2626, 'attending', '2024-05-17 02:47:45', '2025-12-17 19:46:35', '4v0WwbOm', '7264723'), - (504, 2627, 'maybe', '2024-05-19 02:51:01', '2025-12-17 19:46:35', '4v0WwbOm', '7264724'), - (504, 2633, 'attending', '2024-05-17 02:43:06', '2025-12-17 19:46:35', '4v0WwbOm', '7270095'), - (504, 2634, 'attending', '2024-05-19 02:50:04', '2025-12-17 19:46:35', '4v0WwbOm', '7270321'), - (504, 2635, 'attending', '2024-05-19 02:50:09', '2025-12-17 19:46:35', '4v0WwbOm', '7270322'), - (504, 2636, 'attending', '2024-05-19 02:51:05', '2025-12-17 19:46:35', '4v0WwbOm', '7270323'), - (504, 2637, 'attending', '2024-05-19 02:51:08', '2025-12-17 19:46:35', '4v0WwbOm', '7270324'), - (504, 2638, 'attending', '2024-05-17 02:47:18', '2025-12-17 19:46:35', '4v0WwbOm', '7273117'), - (504, 2639, 'attending', '2024-05-16 17:02:04', '2025-12-17 19:46:35', '4v0WwbOm', '7273242'), - (504, 2640, 'attending', '2024-05-18 01:43:26', '2025-12-17 19:46:35', '4v0WwbOm', '7275331'), - (504, 2644, 'attending', '2024-05-22 03:19:07', '2025-12-17 19:46:35', '4v0WwbOm', '7279039'), - (504, 2645, 'attending', '2024-05-20 19:54:01', '2025-12-17 19:46:35', '4v0WwbOm', '7279964'), - (504, 2646, 'not_attending', '2024-05-22 03:18:11', '2025-12-17 19:46:35', '4v0WwbOm', '7281768'), - (504, 2648, 'attending', '2024-05-21 19:09:55', '2025-12-17 19:46:35', '4v0WwbOm', '7282283'), - (504, 2650, 'not_attending', '2024-05-24 16:29:06', '2025-12-17 19:46:35', '4v0WwbOm', '7288199'), - (504, 2652, 'attending', '2024-05-31 03:51:14', '2025-12-17 19:46:36', '4v0WwbOm', '7288339'), - (504, 2656, 'attending', '2024-05-30 21:06:15', '2025-12-17 19:46:36', '4v0WwbOm', '7291301'), - (504, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4v0WwbOm', '7302674'), - (504, 2662, 'attending', '2024-06-02 19:06:53', '2025-12-17 19:46:36', '4v0WwbOm', '7302815'), - (504, 2679, 'attending', '2024-06-16 01:46:31', '2025-12-17 19:46:29', '4v0WwbOm', '7319490'), - (504, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4v0WwbOm', '7324073'), - (504, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4v0WwbOm', '7324074'), - (504, 2690, 'attending', '2024-07-07 02:22:54', '2025-12-17 19:46:30', '4v0WwbOm', '7324075'), - (504, 2691, 'attending', '2024-07-20 19:00:12', '2025-12-17 19:46:30', '4v0WwbOm', '7324076'), - (504, 2692, 'attending', '2024-07-07 02:22:42', '2025-12-17 19:46:30', '4v0WwbOm', '7324077'), - (504, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4v0WwbOm', '7324078'), - (504, 2695, 'attending', '2024-08-17 20:53:38', '2025-12-17 19:46:31', '4v0WwbOm', '7324080'), - (504, 2697, 'attending', '2024-08-31 00:56:27', '2025-12-17 19:46:32', '4v0WwbOm', '7324082'), - (504, 2698, 'attending', '2024-09-05 23:38:18', '2025-12-17 19:46:24', '4v0WwbOm', '7324083'), - (504, 2706, 'attending', '2024-06-16 01:46:45', '2025-12-17 19:46:28', '4v0WwbOm', '7324947'), - (504, 2707, 'attending', '2024-06-16 01:45:57', '2025-12-17 19:46:28', '4v0WwbOm', '7324952'), - (504, 2711, 'not_attending', '2024-07-17 19:54:21', '2025-12-17 19:46:30', '4v0WwbOm', '7326524'), - (504, 2719, 'attending', '2024-06-18 18:13:12', '2025-12-17 19:46:29', '4v0WwbOm', '7331305'), - (504, 2720, 'attending', '2024-06-18 20:49:55', '2025-12-17 19:46:28', '4v0WwbOm', '7331436'), - (504, 2721, 'attending', '2024-06-18 22:40:56', '2025-12-17 19:46:29', '4v0WwbOm', '7331456'), - (504, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '4v0WwbOm', '7331457'), - (504, 2724, 'attending', '2024-06-26 17:29:11', '2025-12-17 19:46:29', '4v0WwbOm', '7332562'), - (504, 2729, 'attending', '2024-06-21 21:28:22', '2025-12-17 19:46:29', '4v0WwbOm', '7335092'), - (504, 2734, 'attending', '2024-06-30 01:54:53', '2025-12-17 19:46:29', '4v0WwbOm', '7339440'), - (504, 2741, 'attending', '2024-06-30 23:33:56', '2025-12-17 19:46:30', '4v0WwbOm', '7344592'), - (504, 2747, 'not_attending', '2024-07-17 19:54:02', '2025-12-17 19:46:30', '4v0WwbOm', '7353587'), - (504, 2751, 'attending', '2024-07-08 12:05:05', '2025-12-17 19:46:29', '4v0WwbOm', '7355530'), - (504, 2752, 'attending', '2024-07-08 12:05:16', '2025-12-17 19:46:29', '4v0WwbOm', '7355531'), - (504, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4v0WwbOm', '7356752'), - (504, 2764, 'maybe', '2024-07-17 01:31:10', '2025-12-17 19:46:30', '4v0WwbOm', '7363595'), - (504, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4v0WwbOm', '7363643'), - (504, 2773, 'attending', '2024-07-27 21:26:16', '2025-12-17 19:46:31', '4v0WwbOm', '7368605'), - (504, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4v0WwbOm', '7368606'), - (504, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4v0WwbOm', '7397462'), - (504, 2821, 'attending', '2024-10-12 01:36:44', '2025-12-17 19:46:26', '4v0WwbOm', '7424275'), - (504, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4v0WwbOm', '7424276'), - (504, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4v0WwbOm', '7432751'), - (504, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4v0WwbOm', '7432752'), - (504, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4v0WwbOm', '7432753'), - (504, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4v0WwbOm', '7432754'), - (504, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4v0WwbOm', '7432755'), - (504, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4v0WwbOm', '7432756'), - (504, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4v0WwbOm', '7432758'), - (504, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4v0WwbOm', '7432759'), - (504, 2832, 'attending', '2024-09-09 20:21:45', '2025-12-17 19:46:24', '4v0WwbOm', '7433324'), - (504, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '4v0WwbOm', '7433834'), - (504, 2850, 'maybe', '2024-09-30 17:48:41', '2025-12-17 19:46:25', '4v0WwbOm', '7457153'), - (504, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4v0WwbOm', '7470197'), - (504, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4v0WwbOm', '7685613'), - (504, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4v0WwbOm', '7688194'), - (504, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4v0WwbOm', '7688196'), - (504, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4v0WwbOm', '7688289'), - (504, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4v0WwbOm', '7692763'), - (504, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4v0WwbOm', '7697552'), - (504, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4v0WwbOm', '7699878'), - (504, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4v0WwbOm', '7704043'), - (504, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4v0WwbOm', '7712467'), - (504, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4v0WwbOm', '7713585'), - (504, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4v0WwbOm', '7713586'), - (504, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4v0WwbOm', '7738518'), - (504, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4v0WwbOm', '7750636'), - (504, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4v0WwbOm', '7796540'), - (504, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4v0WwbOm', '7796541'), - (504, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4v0WwbOm', '7796542'), - (504, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4v0WwbOm', '7825913'), - (504, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4v0WwbOm', '7826209'), - (504, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4v0WwbOm', '7834742'), - (504, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4v0WwbOm', '7842108'), - (504, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4v0WwbOm', '7842902'), - (504, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4v0WwbOm', '7842903'), - (504, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4v0WwbOm', '7842904'), - (504, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4v0WwbOm', '7842905'), - (504, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4v0WwbOm', '7855719'), - (504, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4v0WwbOm', '7860683'), - (504, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4v0WwbOm', '7860684'), - (504, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4v0WwbOm', '7866095'), - (504, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4v0WwbOm', '7869170'), - (504, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4v0WwbOm', '7869188'), - (504, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4v0WwbOm', '7869201'), - (504, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4v0WwbOm', '7877465'), - (504, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4v0WwbOm', '7878570'), - (504, 3051, 'attending', '2025-03-18 23:16:55', '2025-12-17 19:46:19', '4v0WwbOm', '7884023'), - (504, 3052, 'attending', '2025-03-18 23:16:56', '2025-12-17 19:46:19', '4v0WwbOm', '7884024'), - (504, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4v0WwbOm', '7888250'), - (504, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4v0WwbOm', '7904777'), - (504, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4v0WwbOm', '8349164'), - (504, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4v0WwbOm', '8349545'), - (504, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4v0WwbOm', '8353584'), - (504, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4v0WwbOm', '8368028'), - (504, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4v0WwbOm', '8368029'), - (504, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4v0WwbOm', '8388462'), - (504, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4v0WwbOm', '8400273'), - (504, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4v0WwbOm', '8400274'), - (504, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4v0WwbOm', '8400275'), - (504, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4v0WwbOm', '8400276'), - (504, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4v0WwbOm', '8404977'), - (504, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4v0WwbOm', '8430783'), - (504, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4v0WwbOm', '8430784'), - (504, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4v0WwbOm', '8430799'), - (504, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4v0WwbOm', '8430800'), - (504, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4v0WwbOm', '8430801'), - (504, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4v0WwbOm', '8438709'), - (504, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4v0WwbOm', '8457738'), - (504, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4v0WwbOm', '8459566'), - (504, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4v0WwbOm', '8459567'), - (504, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4v0WwbOm', '8461032'), - (504, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4v0WwbOm', '8477877'), - (504, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4v0WwbOm', '8485688'), - (505, 639, 'attending', '2021-03-22 00:34:39', '2025-12-17 19:47:51', 'O4Za9geA', '3536656'), - (505, 641, 'not_attending', '2021-03-31 03:35:31', '2025-12-17 19:47:44', 'O4Za9geA', '3539916'), - (505, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'O4Za9geA', '3539918'), - (505, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'O4Za9geA', '3539919'), - (505, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'O4Za9geA', '3539920'), - (505, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'O4Za9geA', '3539927'), - (505, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'O4Za9geA', '3582734'), - (505, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'O4Za9geA', '3583262'), - (505, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'O4Za9geA', '3619523'), - (505, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'O4Za9geA', '3661369'), - (505, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'O4Za9geA', '3674262'), - (505, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'O4Za9geA', '3677402'), - (505, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'O4Za9geA', '3730212'), - (505, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4Za9geA', '6045684'), - (506, 401, 'attending', '2021-05-13 15:36:33', '2025-12-17 19:47:46', 'GmjJa35m', '3236456'), - (506, 646, 'attending', '2021-05-14 14:57:17', '2025-12-17 19:47:46', 'GmjJa35m', '3539921'), - (506, 647, 'attending', '2021-05-19 15:18:12', '2025-12-17 19:47:46', 'GmjJa35m', '3539922'), - (506, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'GmjJa35m', '3539923'), - (506, 761, 'attending', '2021-05-13 15:14:32', '2025-12-17 19:47:46', 'GmjJa35m', '3716041'), - (506, 802, 'not_attending', '2021-05-13 15:36:28', '2025-12-17 19:47:46', 'GmjJa35m', '3803310'), - (506, 813, 'not_attending', '2021-05-15 22:42:42', '2025-12-17 19:47:46', 'GmjJa35m', '3810231'), - (506, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjJa35m', '3974109'), - (506, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjJa35m', '3975311'), - (506, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjJa35m', '3975312'), - (506, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjJa35m', '3994992'), - (506, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjJa35m', '4014338'), - (506, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GmjJa35m', '4021848'), - (506, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjJa35m', '4136744'), - (506, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GmjJa35m', '4136937'), - (506, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GmjJa35m', '4136938'), - (506, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjJa35m', '4136947'), - (506, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjJa35m', '4239259'), - (506, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GmjJa35m', '4250163'), - (506, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjJa35m', '6045684'), - (507, 1153, 'attending', '2022-01-19 21:48:32', '2025-12-17 19:47:32', 'm6YVxaRd', '4708707'), - (507, 1154, 'maybe', '2022-01-26 20:36:37', '2025-12-17 19:47:32', 'm6YVxaRd', '4708708'), - (507, 1175, 'attending', '2022-01-22 19:47:33', '2025-12-17 19:47:32', 'm6YVxaRd', '4736497'), - (507, 1176, 'attending', '2022-01-31 01:27:39', '2025-12-17 19:47:32', 'm6YVxaRd', '4736498'), - (507, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm6YVxaRd', '4736499'), - (507, 1178, 'attending', '2022-01-29 17:12:54', '2025-12-17 19:47:32', 'm6YVxaRd', '4736500'), - (507, 1179, 'attending', '2022-02-20 00:42:12', '2025-12-17 19:47:32', 'm6YVxaRd', '4736501'), - (507, 1180, 'attending', '2022-02-11 19:52:20', '2025-12-17 19:47:33', 'm6YVxaRd', '4736502'), - (507, 1181, 'attending', '2022-03-05 22:46:08', '2025-12-17 19:47:33', 'm6YVxaRd', '4736503'), - (507, 1182, 'maybe', '2022-03-12 23:56:51', '2025-12-17 19:47:33', 'm6YVxaRd', '4736504'), - (507, 1193, 'attending', '2022-01-21 21:50:43', '2025-12-17 19:47:32', 'm6YVxaRd', '4759563'), - (507, 1198, 'not_attending', '2022-01-24 23:34:38', '2025-12-17 19:47:32', 'm6YVxaRd', '4766801'), - (507, 1201, 'attending', '2022-01-18 01:02:38', '2025-12-17 19:47:32', 'm6YVxaRd', '4766841'), - (507, 1210, 'maybe', '2022-01-29 02:42:53', '2025-12-17 19:47:32', 'm6YVxaRd', '4776927'), - (507, 1216, 'attending', '2022-01-29 17:17:54', '2025-12-17 19:47:32', 'm6YVxaRd', '4781137'), - (507, 1217, 'not_attending', '2022-01-30 20:08:24', '2025-12-17 19:47:32', 'm6YVxaRd', '4781139'), - (507, 1218, 'maybe', '2022-01-31 01:25:06', '2025-12-17 19:47:32', 'm6YVxaRd', '4788464'), - (507, 1219, 'maybe', '2022-02-03 00:47:29', '2025-12-17 19:47:32', 'm6YVxaRd', '4788466'), - (507, 1220, 'attending', '2022-01-29 00:28:27', '2025-12-17 19:47:32', 'm6YVxaRd', '4790257'), - (507, 1223, 'attending', '2022-01-31 01:26:26', '2025-12-17 19:47:32', 'm6YVxaRd', '5015635'), - (507, 1224, 'maybe', '2022-01-31 01:27:11', '2025-12-17 19:47:32', 'm6YVxaRd', '5016682'), - (507, 1227, 'maybe', '2022-02-11 19:51:47', '2025-12-17 19:47:32', 'm6YVxaRd', '5027602'), - (507, 1228, 'maybe', '2022-02-11 19:53:03', '2025-12-17 19:47:32', 'm6YVxaRd', '5028238'), - (507, 1229, 'maybe', '2022-02-11 19:52:09', '2025-12-17 19:47:32', 'm6YVxaRd', '5034963'), - (507, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm6YVxaRd', '5038850'), - (507, 1233, 'maybe', '2022-02-10 22:24:11', '2025-12-17 19:47:32', 'm6YVxaRd', '5038910'), - (507, 1234, 'attending', '2022-02-11 19:51:34', '2025-12-17 19:47:32', 'm6YVxaRd', '5042197'), - (507, 1236, 'maybe', '2022-02-14 20:14:13', '2025-12-17 19:47:32', 'm6YVxaRd', '5045826'), - (507, 1247, 'maybe', '2022-02-25 21:48:12', '2025-12-17 19:47:33', 'm6YVxaRd', '5065027'), - (507, 1250, 'attending', '2022-03-04 00:14:01', '2025-12-17 19:47:33', 'm6YVxaRd', '5069735'), - (507, 1252, 'maybe', '2022-03-05 00:27:35', '2025-12-17 19:47:33', 'm6YVxaRd', '5129121'), - (507, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6YVxaRd', '5132533'), - (507, 1271, 'maybe', '2022-03-17 20:57:48', '2025-12-17 19:47:25', 'm6YVxaRd', '5181648'), - (507, 1272, 'maybe', '2022-03-17 20:57:31', '2025-12-17 19:47:25', 'm6YVxaRd', '5186582'), - (507, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6YVxaRd', '5186583'), - (507, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6YVxaRd', '5186585'), - (507, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6YVxaRd', '5190437'), - (507, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'm6YVxaRd', '5195095'), - (507, 1291, 'maybe', '2022-03-25 18:22:12', '2025-12-17 19:47:25', 'm6YVxaRd', '5200458'), - (507, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6YVxaRd', '5215989'), - (507, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'm6YVxaRd', '5223686'), - (507, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'm6YVxaRd', '5227432'), - (507, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'm6YVxaRd', '5247467'), - (507, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'm6YVxaRd', '5260800'), - (507, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6YVxaRd', '5269930'), - (507, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6YVxaRd', '5271448'), - (507, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'm6YVxaRd', '5271449'), - (507, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'm6YVxaRd', '5276469'), - (507, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6YVxaRd', '5278159'), - (507, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'm6YVxaRd', '5363695'), - (507, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'm6YVxaRd', '5365960'), - (507, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'm6YVxaRd', '5368973'), - (507, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'm6YVxaRd', '5378247'), - (507, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'm6YVxaRd', '5389605'), - (507, 1442, 'attending', '2022-06-18 16:38:43', '2025-12-17 19:47:17', 'm6YVxaRd', '5397265'), - (507, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'm6YVxaRd', '5403967'), - (507, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'm6YVxaRd', '5404786'), - (507, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'm6YVxaRd', '5405203'), - (507, 1470, 'maybe', '2022-06-18 16:44:46', '2025-12-17 19:47:17', 'm6YVxaRd', '5407053'), - (507, 1478, 'maybe', '2022-06-18 16:36:45', '2025-12-17 19:47:19', 'm6YVxaRd', '5408794'), - (507, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'm6YVxaRd', '5411699'), - (507, 1482, 'attending', '2022-06-25 19:19:48', '2025-12-17 19:47:19', 'm6YVxaRd', '5412550'), - (507, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6YVxaRd', '5415046'), - (507, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6YVxaRd', '5422086'), - (507, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6YVxaRd', '5422406'), - (507, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6YVxaRd', '5424565'), - (507, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6YVxaRd', '5426882'), - (507, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'm6YVxaRd', '5427083'), - (507, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'm6YVxaRd', '5441125'), - (507, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6YVxaRd', '5441126'), - (507, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'm6YVxaRd', '5441128'), - (507, 1517, 'attending', '2022-08-26 20:06:17', '2025-12-17 19:47:23', 'm6YVxaRd', '5441130'), - (507, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6YVxaRd', '5441131'), - (507, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'm6YVxaRd', '5441132'), - (507, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6YVxaRd', '5446643'), - (507, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6YVxaRd', '5453325'), - (507, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6YVxaRd', '5454516'), - (507, 1544, 'attending', '2022-09-17 16:46:21', '2025-12-17 19:47:11', 'm6YVxaRd', '5454517'), - (507, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6YVxaRd', '5454605'), - (507, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6YVxaRd', '5455037'), - (507, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6YVxaRd', '5461278'), - (507, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6YVxaRd', '5469480'), - (507, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6YVxaRd', '5471073'), - (507, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'm6YVxaRd', '5474663'), - (507, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6YVxaRd', '5482022'), - (507, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6YVxaRd', '5482793'), - (507, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6YVxaRd', '5488912'), - (507, 1584, 'maybe', '2022-08-26 20:06:04', '2025-12-17 19:47:23', 'm6YVxaRd', '5492004'), - (507, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6YVxaRd', '5492192'), - (507, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6YVxaRd', '5493139'), - (507, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6YVxaRd', '5493200'), - (507, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6YVxaRd', '5502188'), - (507, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6YVxaRd', '5505059'), - (507, 1612, 'maybe', '2022-10-03 22:38:05', '2025-12-17 19:47:12', 'm6YVxaRd', '5507653'), - (507, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6YVxaRd', '5509055'), - (507, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6YVxaRd', '5512862'), - (507, 1623, 'not_attending', '2022-08-26 20:07:23', '2025-12-17 19:47:23', 'm6YVxaRd', '5513678'), - (507, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6YVxaRd', '5513985'), - (507, 1626, 'maybe', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'm6YVxaRd', '5519981'), - (507, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6YVxaRd', '5522550'), - (507, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6YVxaRd', '5534683'), - (507, 1632, 'maybe', '2022-08-31 01:09:23', '2025-12-17 19:47:23', 'm6YVxaRd', '5534954'), - (507, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6YVxaRd', '5537735'), - (507, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6YVxaRd', '5540859'), - (507, 1644, 'maybe', '2022-09-19 22:23:56', '2025-12-17 19:47:11', 'm6YVxaRd', '5545857'), - (507, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6YVxaRd', '5546619'), - (507, 1648, 'maybe', '2022-09-09 15:47:10', '2025-12-17 19:47:24', 'm6YVxaRd', '5548974'), - (507, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6YVxaRd', '5555245'), - (507, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6YVxaRd', '5557747'), - (507, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6YVxaRd', '5560255'), - (507, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6YVxaRd', '5562906'), - (507, 1668, 'attending', '2022-10-01 22:23:45', '2025-12-17 19:47:12', 'm6YVxaRd', '5563222'), - (507, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6YVxaRd', '5600604'), - (507, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6YVxaRd', '5605544'), - (507, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'm6YVxaRd', '5606737'), - (507, 1713, 'maybe', '2022-10-19 15:40:22', '2025-12-17 19:47:13', 'm6YVxaRd', '5622108'), - (507, 1720, 'attending', '2022-10-12 18:01:16', '2025-12-17 19:47:12', 'm6YVxaRd', '5630959'), - (507, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6YVxaRd', '5630960'), - (507, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6YVxaRd', '5630961'), - (507, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6YVxaRd', '5630962'), - (507, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6YVxaRd', '5630966'), - (507, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6YVxaRd', '5630967'), - (507, 1726, 'maybe', '2022-11-20 16:08:14', '2025-12-17 19:47:16', 'm6YVxaRd', '5630968'), - (507, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6YVxaRd', '5635406'), - (507, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6YVxaRd', '5638765'), - (507, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6YVxaRd', '5640097'), - (507, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6YVxaRd', '5640843'), - (507, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6YVxaRd', '5641521'), - (507, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6YVxaRd', '5642818'), - (507, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6YVxaRd', '5652395'), - (507, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6YVxaRd', '5670445'), - (507, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6YVxaRd', '5671637'), - (507, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6YVxaRd', '5672329'), - (507, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6YVxaRd', '5674057'), - (507, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6YVxaRd', '5674060'), - (507, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6YVxaRd', '5677461'), - (507, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6YVxaRd', '5698046'), - (507, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6YVxaRd', '5699760'), - (507, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6YVxaRd', '5741601'), - (507, 1798, 'maybe', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6YVxaRd', '5763458'), - (507, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6YVxaRd', '5774172'), - (507, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'm6YVxaRd', '5818247'), - (507, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6YVxaRd', '5819471'), - (507, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6YVxaRd', '5827739'), - (507, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6YVxaRd', '5844306'), - (507, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6YVxaRd', '5850159'), - (507, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6YVxaRd', '5858999'), - (507, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6YVxaRd', '5871984'), - (507, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6YVxaRd', '5876354'), - (507, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm6YVxaRd', '5880939'), - (507, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm6YVxaRd', '5880940'), - (507, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm6YVxaRd', '5880942'), - (507, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm6YVxaRd', '5880943'), - (507, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6YVxaRd', '5887890'), - (507, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6YVxaRd', '5888598'), - (507, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6YVxaRd', '5893260'), - (507, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm6YVxaRd', '5899826'), - (507, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm6YVxaRd', '5900199'), - (507, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm6YVxaRd', '5900200'), - (507, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm6YVxaRd', '5900202'), - (507, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm6YVxaRd', '5900203'), - (507, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm6YVxaRd', '5901108'), - (507, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm6YVxaRd', '5901126'), - (507, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm6YVxaRd', '5909655'), - (507, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm6YVxaRd', '5910522'), - (507, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm6YVxaRd', '5910526'), - (507, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm6YVxaRd', '5910528'), - (507, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm6YVxaRd', '5916219'), - (507, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm6YVxaRd', '5936234'), - (507, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm6YVxaRd', '5958351'), - (507, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm6YVxaRd', '5959751'), - (507, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm6YVxaRd', '5959755'), - (507, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm6YVxaRd', '5960055'), - (507, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm6YVxaRd', '5961684'), - (507, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm6YVxaRd', '5962132'), - (507, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm6YVxaRd', '5962133'), - (507, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm6YVxaRd', '5962134'), - (507, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm6YVxaRd', '5962317'), - (507, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm6YVxaRd', '5962318'), - (507, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm6YVxaRd', '5965933'), - (507, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm6YVxaRd', '5967014'), - (507, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm6YVxaRd', '5972815'), - (507, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm6YVxaRd', '5974016'), - (507, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm6YVxaRd', '5981515'), - (507, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm6YVxaRd', '5993516'), - (507, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm6YVxaRd', '5998939'), - (507, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm6YVxaRd', '6028191'), - (507, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm6YVxaRd', '6040066'), - (507, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm6YVxaRd', '6042717'), - (507, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm6YVxaRd', '6044838'), - (507, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm6YVxaRd', '6044839'), - (507, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6YVxaRd', '6045684'), - (507, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm6YVxaRd', '6050104'), - (507, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm6YVxaRd', '6053195'), - (507, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm6YVxaRd', '6053198'), - (507, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm6YVxaRd', '6056085'), - (507, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm6YVxaRd', '6056916'), - (507, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm6YVxaRd', '6059290'), - (507, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm6YVxaRd', '6060328'), - (507, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm6YVxaRd', '6061037'), - (507, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm6YVxaRd', '6061039'), - (507, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm6YVxaRd', '6067245'), - (507, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm6YVxaRd', '6068094'), - (507, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm6YVxaRd', '6068252'), - (507, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm6YVxaRd', '6068253'), - (507, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm6YVxaRd', '6068254'), - (507, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm6YVxaRd', '6068280'), - (507, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm6YVxaRd', '6069093'), - (507, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'm6YVxaRd', '6072528'), - (507, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm6YVxaRd', '6079840'), - (507, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm6YVxaRd', '6083398'), - (507, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm6YVxaRd', '6093504'), - (507, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm6YVxaRd', '6097414'), - (507, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm6YVxaRd', '6097442'), - (507, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm6YVxaRd', '6097684'), - (507, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm6YVxaRd', '6098762'), - (507, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'm6YVxaRd', '6101361'), - (507, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm6YVxaRd', '6101362'), - (507, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'm6YVxaRd', '6103752'), - (507, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm6YVxaRd', '6107314'), - (507, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'm6YVxaRd', '6120034'), - (507, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'm6YVxaRd', '6136733'), - (507, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'm6YVxaRd', '6137989'), - (507, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'm6YVxaRd', '6150864'), - (507, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'm6YVxaRd', '6155491'), - (507, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'm6YVxaRd', '6164417'), - (507, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'm6YVxaRd', '6166388'), - (507, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'm6YVxaRd', '6176439'), - (507, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'm6YVxaRd', '6182410'), - (507, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'm6YVxaRd', '6185812'), - (507, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'm6YVxaRd', '6187651'), - (507, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'm6YVxaRd', '6187963'), - (507, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'm6YVxaRd', '6187964'), - (507, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'm6YVxaRd', '6187966'), - (507, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'm6YVxaRd', '6187967'), - (507, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'm6YVxaRd', '6187969'), - (507, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'm6YVxaRd', '6334878'), - (507, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'm6YVxaRd', '6337236'), - (507, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'm6YVxaRd', '6337970'), - (507, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'm6YVxaRd', '6338308'), - (507, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'm6YVxaRd', '6340845'), - (507, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'm6YVxaRd', '6341710'), - (507, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'm6YVxaRd', '6342044'), - (507, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'm6YVxaRd', '6342298'), - (507, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'm6YVxaRd', '6343294'), - (507, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'm6YVxaRd', '6347034'), - (507, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'm6YVxaRd', '6347056'), - (507, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'm6YVxaRd', '6353830'), - (507, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'm6YVxaRd', '6353831'), - (507, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'm6YVxaRd', '6357867'), - (507, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'm6YVxaRd', '6358652'), - (507, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'm6YVxaRd', '6361709'), - (507, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'm6YVxaRd', '6361710'), - (507, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'm6YVxaRd', '6361711'), - (507, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'm6YVxaRd', '6361712'), - (507, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm6YVxaRd', '6361713'), - (507, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'm6YVxaRd', '6382573'), - (507, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'm6YVxaRd', '6388604'), - (507, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm6YVxaRd', '6394629'), - (507, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm6YVxaRd', '6394631'), - (507, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'm6YVxaRd', '6440863'), - (507, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'm6YVxaRd', '6445440'), - (507, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'm6YVxaRd', '6453951'), - (507, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'm6YVxaRd', '6461696'), - (507, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'm6YVxaRd', '6462129'), - (507, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'm6YVxaRd', '6463218'), - (507, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'm6YVxaRd', '6472181'), - (507, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'm6YVxaRd', '6482693'), - (507, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'm6YVxaRd', '6484200'), - (507, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'm6YVxaRd', '6484680'), - (507, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'm6YVxaRd', '6507741'), - (507, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'm6YVxaRd', '6514659'), - (507, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'm6YVxaRd', '6514660'), - (507, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'm6YVxaRd', '6519103'), - (507, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'm6YVxaRd', '6535681'), - (507, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'm6YVxaRd', '6584747'), - (507, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'm6YVxaRd', '6587097'), - (507, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'm6YVxaRd', '6609022'), - (507, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'm6YVxaRd', '6632757'), - (507, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'm6YVxaRd', '6644187'), - (507, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'm6YVxaRd', '6648951'), - (507, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'm6YVxaRd', '6648952'), - (507, 2392, 'maybe', '2024-01-11 23:26:28', '2025-12-17 19:46:37', 'm6YVxaRd', '6654412'), - (507, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'm6YVxaRd', '6655401'), - (507, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'm6YVxaRd', '6661585'), - (507, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'm6YVxaRd', '6661588'), - (507, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'm6YVxaRd', '6661589'), - (507, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'm6YVxaRd', '6699906'), - (507, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'm6YVxaRd', '6699913'), - (507, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'm6YVxaRd', '6701109'), - (507, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'm6YVxaRd', '6705219'), - (507, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'm6YVxaRd', '6710153'), - (507, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'm6YVxaRd', '6711552'), - (507, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'm6YVxaRd', '6711553'), - (507, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'm6YVxaRd', '6722688'), - (507, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'm6YVxaRd', '6730620'), - (507, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'm6YVxaRd', '6730642'), - (507, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'm6YVxaRd', '6740364'), - (507, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'm6YVxaRd', '6743829'), - (507, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'm6YVxaRd', '7030380'), - (507, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'm6YVxaRd', '7033677'), - (507, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'm6YVxaRd', '7035415'), - (507, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'm6YVxaRd', '7044715'), - (507, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'm6YVxaRd', '7050318'), - (507, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'm6YVxaRd', '7050319'), - (507, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'm6YVxaRd', '7050322'), - (507, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'm6YVxaRd', '7057804'), - (507, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'm6YVxaRd', '7059866'), - (507, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'm6YVxaRd', '7072824'), - (507, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'm6YVxaRd', '7074348'), - (507, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'm6YVxaRd', '7074364'), - (507, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'm6YVxaRd', '7089267'), - (507, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'm6YVxaRd', '7098747'), - (507, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'm6YVxaRd', '7113468'), - (507, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'm6YVxaRd', '7114856'), - (507, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'm6YVxaRd', '7114951'), - (507, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'm6YVxaRd', '7114955'), - (507, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'm6YVxaRd', '7114956'), - (507, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'm6YVxaRd', '7114957'), - (507, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'm6YVxaRd', '7153615'), - (507, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'm6YVxaRd', '7159484'), - (507, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'm6YVxaRd', '7178446'), - (507, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'm6YVxaRd', '7220467'), - (507, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'm6YVxaRd', '7240354'), - (507, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'm6YVxaRd', '7251633'), - (507, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'm6YVxaRd', '7324073'), - (507, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'm6YVxaRd', '7324074'), - (507, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'm6YVxaRd', '7324075'), - (507, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'm6YVxaRd', '7324078'), - (507, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'm6YVxaRd', '7324082'), - (507, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'm6YVxaRd', '7331457'), - (507, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'm6YVxaRd', '7363643'), - (507, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'm6YVxaRd', '7368606'), - (507, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'm6YVxaRd', '7397462'), - (507, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'm6YVxaRd', '7424275'), - (507, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'm6YVxaRd', '7432751'), - (507, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'm6YVxaRd', '7432752'), - (507, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'm6YVxaRd', '7432753'), - (507, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'm6YVxaRd', '7432754'), - (507, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'm6YVxaRd', '7432755'), - (507, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'm6YVxaRd', '7432756'), - (507, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'm6YVxaRd', '7432758'), - (507, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'm6YVxaRd', '7432759'), - (507, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'm6YVxaRd', '7433834'), - (507, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'm6YVxaRd', '7470197'), - (507, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'm6YVxaRd', '7685613'), - (507, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6YVxaRd', '7688194'), - (507, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6YVxaRd', '7688196'), - (507, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6YVxaRd', '7688289'), - (507, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'm6YVxaRd', '7692763'), - (507, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'm6YVxaRd', '7697552'), - (507, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'm6YVxaRd', '7699878'), - (507, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'm6YVxaRd', '7704043'), - (507, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6YVxaRd', '7712467'), - (507, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6YVxaRd', '7713585'), - (507, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6YVxaRd', '7713586'), - (507, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'm6YVxaRd', '7738518'), - (507, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6YVxaRd', '7750636'), - (507, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6YVxaRd', '7796540'), - (507, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6YVxaRd', '7796541'), - (507, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6YVxaRd', '7796542'), - (507, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6YVxaRd', '7825913'), - (507, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6YVxaRd', '7826209'), - (507, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6YVxaRd', '7834742'), - (507, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6YVxaRd', '7842108'), - (507, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6YVxaRd', '7842902'), - (507, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6YVxaRd', '7842903'), - (507, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6YVxaRd', '7842904'), - (507, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6YVxaRd', '7842905'), - (507, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6YVxaRd', '7855719'), - (507, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6YVxaRd', '7860683'), - (507, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6YVxaRd', '7860684'), - (507, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6YVxaRd', '7866095'), - (507, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6YVxaRd', '7869170'), - (507, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'm6YVxaRd', '7869188'), - (507, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6YVxaRd', '7869201'), - (507, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'm6YVxaRd', '7877465'), - (507, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'm6YVxaRd', '7888250'), - (507, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'm6YVxaRd', '7904777'), - (507, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'm6YVxaRd', '8349164'), - (507, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'm6YVxaRd', '8349545'), - (507, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'm6YVxaRd', '8368028'), - (507, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'm6YVxaRd', '8368029'), - (507, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'm6YVxaRd', '8388462'), - (507, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'm6YVxaRd', '8400273'), - (507, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'm6YVxaRd', '8400275'), - (507, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'm6YVxaRd', '8400276'), - (507, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'm6YVxaRd', '8404977'), - (507, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'm6YVxaRd', '8430783'), - (507, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'm6YVxaRd', '8430784'), - (507, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'm6YVxaRd', '8430799'), - (507, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'm6YVxaRd', '8430800'), - (507, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'm6YVxaRd', '8430801'), - (507, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'm6YVxaRd', '8438709'), - (507, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'm6YVxaRd', '8457738'), - (507, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'm6YVxaRd', '8459566'), - (507, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'm6YVxaRd', '8459567'), - (507, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'm6YVxaRd', '8461032'), - (507, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'm6YVxaRd', '8477877'), - (507, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'm6YVxaRd', '8485688'), - (507, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'm6YVxaRd', '8490587'), - (507, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'm6YVxaRd', '8493552'), - (507, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'm6YVxaRd', '8493553'), - (507, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'm6YVxaRd', '8493554'), - (507, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'm6YVxaRd', '8493555'), - (507, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'm6YVxaRd', '8493556'), - (507, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'm6YVxaRd', '8493557'), - (507, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'm6YVxaRd', '8493558'), - (507, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'm6YVxaRd', '8493559'), - (507, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'm6YVxaRd', '8493560'), - (507, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'm6YVxaRd', '8493561'), - (507, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'm6YVxaRd', '8493572'), - (507, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'm6YVxaRd', '8540725'), - (507, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'm6YVxaRd', '8555421'), - (508, 4, 'attending', '2020-03-21 00:58:58', '2025-12-17 19:47:58', 'bdz9ePb4', '2958046'), - (508, 5, 'attending', '2020-03-21 00:58:59', '2025-12-17 19:47:58', 'bdz9ePb4', '2958047'), - (508, 6, 'not_attending', '2020-03-21 00:59:04', '2025-12-17 19:47:58', 'bdz9ePb4', '2958048'), - (508, 7, 'maybe', '2020-03-21 00:59:06', '2025-12-17 19:47:58', 'bdz9ePb4', '2958049'), - (508, 9, 'not_attending', '2020-03-28 02:15:09', '2025-12-17 19:47:56', 'bdz9ePb4', '2958052'), - (508, 10, 'not_attending', '2020-03-28 02:15:10', '2025-12-17 19:47:56', 'bdz9ePb4', '2958053'), - (508, 13, 'not_attending', '2020-04-05 21:42:25', '2025-12-17 19:47:57', 'bdz9ePb4', '2958057'), - (508, 15, 'not_attending', '2020-04-15 22:57:49', '2025-12-17 19:47:57', 'bdz9ePb4', '2958059'), - (508, 20, 'not_attending', '2020-05-07 00:05:54', '2025-12-17 19:47:57', 'bdz9ePb4', '2958064'), - (508, 21, 'not_attending', '2020-04-26 16:18:03', '2025-12-17 19:47:57', 'bdz9ePb4', '2958065'), - (508, 26, 'not_attending', '2020-04-05 21:42:17', '2025-12-17 19:47:57', 'bdz9ePb4', '2958082'), - (508, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'bdz9ePb4', '2961309'), - (508, 30, 'maybe', '2020-04-05 21:42:21', '2025-12-17 19:47:57', 'bdz9ePb4', '2961895'), - (508, 31, 'attending', '2020-03-23 22:35:15', '2025-12-17 19:47:58', 'bdz9ePb4', '2963118'), - (508, 33, 'maybe', '2020-04-05 21:42:23', '2025-12-17 19:47:57', 'bdz9ePb4', '2963932'), - (508, 36, 'attending', '2020-03-29 01:57:09', '2025-12-17 19:47:57', 'bdz9ePb4', '2969208'), - (508, 41, 'not_attending', '2020-04-16 22:44:12', '2025-12-17 19:47:57', 'bdz9ePb4', '2971546'), - (508, 42, 'not_attending', '2020-04-05 21:42:15', '2025-12-17 19:47:57', 'bdz9ePb4', '2973471'), - (508, 44, 'not_attending', '2020-04-11 22:25:09', '2025-12-17 19:47:57', 'bdz9ePb4', '2974534'), - (508, 46, 'attending', '2020-04-09 02:01:39', '2025-12-17 19:47:57', 'bdz9ePb4', '2974955'), - (508, 48, 'not_attending', '2020-05-13 01:07:22', '2025-12-17 19:47:57', 'bdz9ePb4', '2975273'), - (508, 55, 'not_attending', '2020-04-09 02:01:43', '2025-12-17 19:47:57', 'bdz9ePb4', '2975384'), - (508, 56, 'not_attending', '2020-04-13 04:29:35', '2025-12-17 19:47:57', 'bdz9ePb4', '2975385'), - (508, 57, 'not_attending', '2020-04-13 04:29:32', '2025-12-17 19:47:57', 'bdz9ePb4', '2976575'), - (508, 62, 'maybe', '2020-05-07 00:05:40', '2025-12-17 19:47:57', 'bdz9ePb4', '2977131'), - (508, 63, 'maybe', '2020-05-13 01:07:21', '2025-12-17 19:47:57', 'bdz9ePb4', '2977132'), - (508, 70, 'not_attending', '2020-04-13 04:29:24', '2025-12-17 19:47:57', 'bdz9ePb4', '2977343'), - (508, 71, 'attending', '2020-04-09 21:38:12', '2025-12-17 19:47:57', 'bdz9ePb4', '2977526'), - (508, 72, 'maybe', '2020-05-07 00:05:13', '2025-12-17 19:47:57', 'bdz9ePb4', '2977812'), - (508, 73, 'not_attending', '2020-04-18 21:57:17', '2025-12-17 19:47:57', 'bdz9ePb4', '2977931'), - (508, 74, 'attending', '2020-04-13 04:29:12', '2025-12-17 19:47:57', 'bdz9ePb4', '2978244'), - (508, 75, 'not_attending', '2020-04-19 19:31:11', '2025-12-17 19:47:57', 'bdz9ePb4', '2978245'), - (508, 76, 'attending', '2020-04-29 15:20:19', '2025-12-17 19:47:57', 'bdz9ePb4', '2978246'), - (508, 77, 'attending', '2020-05-07 00:05:25', '2025-12-17 19:47:57', 'bdz9ePb4', '2978247'), - (508, 78, 'maybe', '2020-05-13 01:07:27', '2025-12-17 19:47:57', 'bdz9ePb4', '2978249'), - (508, 79, 'attending', '2020-05-30 22:01:16', '2025-12-17 19:47:57', 'bdz9ePb4', '2978250'), - (508, 80, 'maybe', '2020-06-05 14:17:34', '2025-12-17 19:47:58', 'bdz9ePb4', '2978251'), - (508, 82, 'attending', '2020-04-21 02:16:49', '2025-12-17 19:47:57', 'bdz9ePb4', '2978433'), - (508, 83, 'maybe', '2020-05-07 00:05:22', '2025-12-17 19:47:57', 'bdz9ePb4', '2978438'), - (508, 84, 'not_attending', '2020-04-14 23:32:20', '2025-12-17 19:47:57', 'bdz9ePb4', '2980871'), - (508, 86, 'not_attending', '2020-04-14 23:32:14', '2025-12-17 19:47:57', 'bdz9ePb4', '2981388'), - (508, 88, 'attending', '2020-04-14 23:32:10', '2025-12-17 19:47:57', 'bdz9ePb4', '2982603'), - (508, 89, 'attending', '2020-04-29 15:20:30', '2025-12-17 19:47:57', 'bdz9ePb4', '2982604'), - (508, 91, 'not_attending', '2020-04-26 16:18:29', '2025-12-17 19:47:57', 'bdz9ePb4', '2985130'), - (508, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'bdz9ePb4', '2986743'), - (508, 95, 'not_attending', '2020-04-26 16:19:22', '2025-12-17 19:47:57', 'bdz9ePb4', '2987452'), - (508, 98, 'maybe', '2020-05-07 00:05:53', '2025-12-17 19:47:57', 'bdz9ePb4', '2987455'), - (508, 99, 'not_attending', '2020-04-26 16:18:09', '2025-12-17 19:47:57', 'bdz9ePb4', '2988545'), - (508, 101, 'attending', '2020-04-22 00:48:47', '2025-12-17 19:47:57', 'bdz9ePb4', '2989975'), - (508, 102, 'not_attending', '2020-04-26 16:19:41', '2025-12-17 19:47:57', 'bdz9ePb4', '2990784'), - (508, 104, 'maybe', '2020-04-26 16:17:52', '2025-12-17 19:47:57', 'bdz9ePb4', '2991471'), - (508, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'bdz9ePb4', '2993501'), - (508, 107, 'not_attending', '2020-05-13 01:07:28', '2025-12-17 19:47:57', 'bdz9ePb4', '2993502'), - (508, 108, 'not_attending', '2020-05-13 01:07:19', '2025-12-17 19:47:57', 'bdz9ePb4', '2993504'), - (508, 109, 'not_attending', '2020-05-13 01:07:17', '2025-12-17 19:47:57', 'bdz9ePb4', '2994480'), - (508, 115, 'maybe', '2020-05-13 00:41:08', '2025-12-17 19:47:57', 'bdz9ePb4', '3001217'), - (508, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'bdz9ePb4', '3015486'), - (508, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'bdz9ePb4', '3023063'), - (508, 128, 'attending', '2020-05-19 22:17:43', '2025-12-17 19:47:57', 'bdz9ePb4', '3027185'), - (508, 130, 'attending', '2020-05-19 17:50:31', '2025-12-17 19:47:57', 'bdz9ePb4', '3028781'), - (508, 133, 'not_attending', '2020-07-03 21:55:34', '2025-12-17 19:47:58', 'bdz9ePb4', '3034321'), - (508, 136, 'not_attending', '2020-05-31 08:19:55', '2025-12-17 19:47:57', 'bdz9ePb4', '3035881'), - (508, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'bdz9ePb4', '3049983'), - (508, 146, 'not_attending', '2020-06-27 17:51:08', '2025-12-17 19:47:55', 'bdz9ePb4', '3058683'), - (508, 147, 'attending', '2020-08-18 00:43:15', '2025-12-17 19:47:56', 'bdz9ePb4', '3058684'), - (508, 149, 'maybe', '2020-07-17 15:54:19', '2025-12-17 19:47:55', 'bdz9ePb4', '3058686'), - (508, 150, 'maybe', '2020-07-24 14:09:28', '2025-12-17 19:47:55', 'bdz9ePb4', '3058687'), - (508, 151, 'attending', '2020-08-18 00:43:22', '2025-12-17 19:47:56', 'bdz9ePb4', '3058688'), - (508, 152, 'maybe', '2020-08-18 00:43:31', '2025-12-17 19:47:56', 'bdz9ePb4', '3058689'), - (508, 153, 'attending', '2020-08-01 19:48:58', '2025-12-17 19:47:55', 'bdz9ePb4', '3058690'), - (508, 154, 'maybe', '2020-08-08 18:20:52', '2025-12-17 19:47:56', 'bdz9ePb4', '3058691'), - (508, 155, 'not_attending', '2020-08-12 19:38:28', '2025-12-17 19:47:56', 'bdz9ePb4', '3058692'), - (508, 156, 'attending', '2020-09-12 20:10:51', '2025-12-17 19:47:56', 'bdz9ePb4', '3058693'), - (508, 157, 'not_attending', '2020-09-19 21:04:18', '2025-12-17 19:47:56', 'bdz9ePb4', '3058694'), - (508, 158, 'not_attending', '2020-09-22 22:50:51', '2025-12-17 19:47:52', 'bdz9ePb4', '3058695'), - (508, 159, 'not_attending', '2020-10-03 21:44:35', '2025-12-17 19:47:52', 'bdz9ePb4', '3058696'), - (508, 160, 'attending', '2020-10-23 21:36:05', '2025-12-17 19:47:52', 'bdz9ePb4', '3058697'), - (508, 161, 'maybe', '2020-10-08 23:01:16', '2025-12-17 19:47:52', 'bdz9ePb4', '3058698'), - (508, 162, 'maybe', '2020-10-15 19:50:06', '2025-12-17 19:47:52', 'bdz9ePb4', '3058699'), - (508, 164, 'attending', '2020-11-08 22:29:34', '2025-12-17 19:47:54', 'bdz9ePb4', '3058701'), - (508, 166, 'maybe', '2020-11-21 22:52:17', '2025-12-17 19:47:54', 'bdz9ePb4', '3058704'), - (508, 167, 'attending', '2020-11-29 00:01:14', '2025-12-17 19:47:54', 'bdz9ePb4', '3058705'), - (508, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'bdz9ePb4', '3058959'), - (508, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'bdz9ePb4', '3067093'), - (508, 182, 'not_attending', '2020-06-27 17:50:59', '2025-12-17 19:47:55', 'bdz9ePb4', '3074514'), - (508, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'bdz9ePb4', '3075228'), - (508, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'bdz9ePb4', '3075456'), - (508, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'bdz9ePb4', '3083791'), - (508, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'bdz9ePb4', '3085151'), - (508, 189, 'attending', '2020-06-20 21:45:38', '2025-12-17 19:47:58', 'bdz9ePb4', '3087016'), - (508, 191, 'maybe', '2020-07-07 17:14:05', '2025-12-17 19:47:55', 'bdz9ePb4', '3087259'), - (508, 192, 'maybe', '2020-07-17 15:54:16', '2025-12-17 19:47:55', 'bdz9ePb4', '3087260'), - (508, 193, 'maybe', '2020-07-24 14:09:33', '2025-12-17 19:47:55', 'bdz9ePb4', '3087261'), - (508, 194, 'attending', '2020-08-01 19:48:59', '2025-12-17 19:47:56', 'bdz9ePb4', '3087262'), - (508, 195, 'maybe', '2020-08-06 14:26:25', '2025-12-17 19:47:56', 'bdz9ePb4', '3087264'), - (508, 196, 'not_attending', '2020-08-12 19:38:36', '2025-12-17 19:47:56', 'bdz9ePb4', '3087265'), - (508, 197, 'attending', '2020-08-18 00:43:17', '2025-12-17 19:47:56', 'bdz9ePb4', '3087266'), - (508, 198, 'attending', '2020-08-18 00:43:23', '2025-12-17 19:47:56', 'bdz9ePb4', '3087267'), - (508, 199, 'maybe', '2020-08-18 00:43:35', '2025-12-17 19:47:56', 'bdz9ePb4', '3087268'), - (508, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'bdz9ePb4', '3088653'), - (508, 203, 'attending', '2020-06-23 01:28:50', '2025-12-17 19:47:58', 'bdz9ePb4', '3091624'), - (508, 207, 'not_attending', '2020-07-24 14:09:20', '2025-12-17 19:47:55', 'bdz9ePb4', '3104807'), - (508, 208, 'not_attending', '2020-08-07 03:10:55', '2025-12-17 19:47:56', 'bdz9ePb4', '3104808'), - (508, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'bdz9ePb4', '3106813'), - (508, 223, 'attending', '2020-09-11 17:26:19', '2025-12-17 19:47:56', 'bdz9ePb4', '3129980'), - (508, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'bdz9ePb4', '3132817'), - (508, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'bdz9ePb4', '3132820'), - (508, 267, 'not_attending', '2020-07-31 23:33:50', '2025-12-17 19:47:55', 'bdz9ePb4', '3152781'), - (508, 269, 'attending', '2020-08-01 20:19:16', '2025-12-17 19:47:55', 'bdz9ePb4', '3153076'), - (508, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'bdz9ePb4', '3155321'), - (508, 273, 'not_attending', '2020-08-18 01:04:34', '2025-12-17 19:47:56', 'bdz9ePb4', '3162006'), - (508, 277, 'not_attending', '2020-08-18 01:04:30', '2025-12-17 19:47:56', 'bdz9ePb4', '3163442'), - (508, 280, 'not_attending', '2020-08-12 19:38:48', '2025-12-17 19:47:56', 'bdz9ePb4', '3166942'), - (508, 293, 'not_attending', '2020-08-18 00:42:25', '2025-12-17 19:47:56', 'bdz9ePb4', '3172832'), - (508, 294, 'not_attending', '2020-08-18 00:42:35', '2025-12-17 19:47:56', 'bdz9ePb4', '3172833'), - (508, 295, 'not_attending', '2020-08-18 00:42:48', '2025-12-17 19:47:56', 'bdz9ePb4', '3172834'), - (508, 296, 'not_attending', '2020-09-12 20:10:58', '2025-12-17 19:47:56', 'bdz9ePb4', '3172876'), - (508, 297, 'not_attending', '2020-08-12 19:38:58', '2025-12-17 19:47:56', 'bdz9ePb4', '3173937'), - (508, 298, 'maybe', '2020-08-25 20:59:47', '2025-12-17 19:47:56', 'bdz9ePb4', '3174556'), - (508, 299, 'not_attending', '2020-08-18 00:46:44', '2025-12-17 19:47:56', 'bdz9ePb4', '3176591'), - (508, 305, 'not_attending', '2020-08-18 00:46:50', '2025-12-17 19:47:56', 'bdz9ePb4', '3179555'), - (508, 306, 'attending', '2020-08-21 23:10:13', '2025-12-17 19:47:56', 'bdz9ePb4', '3179777'), - (508, 311, 'not_attending', '2020-09-11 17:26:03', '2025-12-17 19:47:56', 'bdz9ePb4', '3186057'), - (508, 314, 'not_attending', '2020-08-25 20:59:23', '2025-12-17 19:47:56', 'bdz9ePb4', '3188480'), - (508, 317, 'not_attending', '2020-08-31 19:07:32', '2025-12-17 19:47:56', 'bdz9ePb4', '3191735'), - (508, 319, 'maybe', '2020-08-31 19:08:00', '2025-12-17 19:47:56', 'bdz9ePb4', '3194179'), - (508, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'bdz9ePb4', '3200209'), - (508, 340, 'maybe', '2020-09-14 01:05:59', '2025-12-17 19:47:56', 'bdz9ePb4', '3204470'), - (508, 341, 'not_attending', '2020-09-22 22:50:42', '2025-12-17 19:47:52', 'bdz9ePb4', '3204471'), - (508, 342, 'not_attending', '2020-10-03 18:26:59', '2025-12-17 19:47:52', 'bdz9ePb4', '3204472'), - (508, 346, 'maybe', '2020-09-14 01:05:32', '2025-12-17 19:47:56', 'bdz9ePb4', '3207515'), - (508, 352, 'not_attending', '2020-09-14 01:05:27', '2025-12-17 19:47:56', 'bdz9ePb4', '3210514'), - (508, 354, 'maybe', '2020-09-15 23:00:32', '2025-12-17 19:47:56', 'bdz9ePb4', '3212570'), - (508, 355, 'not_attending', '2020-09-16 23:50:59', '2025-12-17 19:47:56', 'bdz9ePb4', '3212571'), - (508, 360, 'not_attending', '2020-09-14 01:04:53', '2025-12-17 19:47:56', 'bdz9ePb4', '3212671'), - (508, 362, 'not_attending', '2020-09-22 22:50:46', '2025-12-17 19:47:52', 'bdz9ePb4', '3214207'), - (508, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'bdz9ePb4', '3217037'), - (508, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'bdz9ePb4', '3218510'), - (508, 375, 'not_attending', '2020-10-08 23:01:03', '2025-12-17 19:47:52', 'bdz9ePb4', '3222825'), - (508, 385, 'maybe', '2020-10-03 21:44:36', '2025-12-17 19:47:52', 'bdz9ePb4', '3228698'), - (508, 386, 'attending', '2020-10-10 20:52:13', '2025-12-17 19:47:52', 'bdz9ePb4', '3228699'), - (508, 387, 'maybe', '2020-10-15 19:50:08', '2025-12-17 19:47:52', 'bdz9ePb4', '3228700'), - (508, 388, 'attending', '2020-10-23 21:36:12', '2025-12-17 19:47:52', 'bdz9ePb4', '3228701'), - (508, 391, 'not_attending', '2020-10-15 19:49:59', '2025-12-17 19:47:52', 'bdz9ePb4', '3236446'), - (508, 411, 'not_attending', '2020-10-08 23:01:31', '2025-12-17 19:47:52', 'bdz9ePb4', '3236596'), - (508, 415, 'not_attending', '2020-10-08 23:01:42', '2025-12-17 19:47:52', 'bdz9ePb4', '3238044'), - (508, 417, 'not_attending', '2020-10-08 23:01:51', '2025-12-17 19:47:52', 'bdz9ePb4', '3238779'), - (508, 420, 'not_attending', '2020-10-15 19:49:56', '2025-12-17 19:47:52', 'bdz9ePb4', '3245293'), - (508, 421, 'not_attending', '2020-10-15 19:50:35', '2025-12-17 19:47:52', 'bdz9ePb4', '3245294'), - (508, 423, 'not_attending', '2020-11-03 01:09:05', '2025-12-17 19:47:53', 'bdz9ePb4', '3245296'), - (508, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'bdz9ePb4', '3245751'), - (508, 425, 'not_attending', '2020-10-15 19:50:04', '2025-12-17 19:47:52', 'bdz9ePb4', '3250097'), - (508, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'bdz9ePb4', '3250232'), - (508, 435, 'not_attending', '2020-10-24 16:43:17', '2025-12-17 19:47:52', 'bdz9ePb4', '3254790'), - (508, 438, 'not_attending', '2020-10-31 22:05:54', '2025-12-17 19:47:53', 'bdz9ePb4', '3256163'), - (508, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'bdz9ePb4', '3256168'), - (508, 441, 'maybe', '2020-11-14 22:38:16', '2025-12-17 19:47:54', 'bdz9ePb4', '3256169'), - (508, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'bdz9ePb4', '3263578'), - (508, 445, 'not_attending', '2020-11-08 22:30:46', '2025-12-17 19:47:54', 'bdz9ePb4', '3266138'), - (508, 456, 'maybe', '2020-11-14 22:04:55', '2025-12-17 19:47:54', 'bdz9ePb4', '3276428'), - (508, 459, 'not_attending', '2020-11-14 22:04:49', '2025-12-17 19:47:54', 'bdz9ePb4', '3281467'), - (508, 462, 'not_attending', '2020-11-08 22:30:35', '2025-12-17 19:47:54', 'bdz9ePb4', '3281470'), - (508, 466, 'not_attending', '2020-11-14 22:04:41', '2025-12-17 19:47:54', 'bdz9ePb4', '3281829'), - (508, 468, 'maybe', '2020-11-14 22:04:37', '2025-12-17 19:47:54', 'bdz9ePb4', '3285413'), - (508, 469, 'attending', '2020-11-29 00:01:12', '2025-12-17 19:47:54', 'bdz9ePb4', '3285414'), - (508, 475, 'not_attending', '2020-11-21 22:52:27', '2025-12-17 19:47:54', 'bdz9ePb4', '3286760'), - (508, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'bdz9ePb4', '3297764'), - (508, 483, 'not_attending', '2020-11-21 22:52:21', '2025-12-17 19:47:54', 'bdz9ePb4', '3297791'), - (508, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'bdz9ePb4', '3313856'), - (508, 499, 'not_attending', '2020-12-12 02:19:49', '2025-12-17 19:47:55', 'bdz9ePb4', '3314909'), - (508, 500, 'maybe', '2020-12-16 02:54:33', '2025-12-17 19:47:55', 'bdz9ePb4', '3314964'), - (508, 502, 'not_attending', '2020-12-10 18:10:15', '2025-12-17 19:47:55', 'bdz9ePb4', '3323365'), - (508, 513, 'not_attending', '2020-12-19 18:13:07', '2025-12-17 19:47:55', 'bdz9ePb4', '3329383'), - (508, 514, 'not_attending', '2020-12-10 18:10:17', '2025-12-17 19:47:55', 'bdz9ePb4', '3329400'), - (508, 526, 'attending', '2021-01-03 00:49:47', '2025-12-17 19:47:48', 'bdz9ePb4', '3351539'), - (508, 530, 'attending', '2021-01-05 02:00:14', '2025-12-17 19:47:48', 'bdz9ePb4', '3373923'), - (508, 531, 'not_attending', '2021-01-02 05:22:13', '2025-12-17 19:47:48', 'bdz9ePb4', '3378210'), - (508, 536, 'attending', '2021-01-09 00:28:55', '2025-12-17 19:47:48', 'bdz9ePb4', '3386848'), - (508, 539, 'maybe', '2021-01-14 01:36:05', '2025-12-17 19:47:48', 'bdz9ePb4', '3389158'), - (508, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'bdz9ePb4', '3389527'), - (508, 541, 'attending', '2021-01-09 00:28:55', '2025-12-17 19:47:48', 'bdz9ePb4', '3391683'), - (508, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'bdz9ePb4', '3396499'), - (508, 548, 'not_attending', '2021-01-16 21:41:14', '2025-12-17 19:47:48', 'bdz9ePb4', '3403650'), - (508, 549, 'not_attending', '2021-01-22 06:06:25', '2025-12-17 19:47:49', 'bdz9ePb4', '3406988'), - (508, 553, 'not_attending', '2021-01-16 21:41:10', '2025-12-17 19:47:48', 'bdz9ePb4', '3407248'), - (508, 555, 'attending', '2021-01-22 06:06:22', '2025-12-17 19:47:49', 'bdz9ePb4', '3416576'), - (508, 558, 'maybe', '2021-01-22 06:06:13', '2025-12-17 19:47:49', 'bdz9ePb4', '3418925'), - (508, 561, 'attending', '2021-01-22 06:06:30', '2025-12-17 19:47:49', 'bdz9ePb4', '3421916'), - (508, 568, 'maybe', '2021-01-27 21:55:20', '2025-12-17 19:47:50', 'bdz9ePb4', '3430267'), - (508, 569, 'not_attending', '2021-01-27 21:55:12', '2025-12-17 19:47:49', 'bdz9ePb4', '3432673'), - (508, 579, 'not_attending', '2021-02-07 00:59:41', '2025-12-17 19:47:50', 'bdz9ePb4', '3440978'), - (508, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'bdz9ePb4', '3468125'), - (508, 602, 'attending', '2021-02-09 19:04:24', '2025-12-17 19:47:50', 'bdz9ePb4', '3470303'), - (508, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'bdz9ePb4', '3470305'), - (508, 605, 'not_attending', '2021-02-09 19:04:35', '2025-12-17 19:47:50', 'bdz9ePb4', '3470991'), - (508, 609, 'attending', '2021-02-14 02:08:09', '2025-12-17 19:47:50', 'bdz9ePb4', '3480916'), - (508, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'bdz9ePb4', '3517815'), - (508, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'bdz9ePb4', '3517816'), - (508, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'bdz9ePb4', '3523941'), - (508, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'bdz9ePb4', '3533850'), - (508, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'bdz9ePb4', '3536632'), - (508, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'bdz9ePb4', '3536656'), - (508, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'bdz9ePb4', '3539916'), - (508, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'bdz9ePb4', '3539917'), - (508, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'bdz9ePb4', '3539918'), - (508, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'bdz9ePb4', '3539919'), - (508, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'bdz9ePb4', '3539920'), - (508, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'bdz9ePb4', '3539921'), - (508, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'bdz9ePb4', '3539922'), - (508, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'bdz9ePb4', '3539923'), - (508, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'bdz9ePb4', '3539927'), - (508, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'bdz9ePb4', '3582734'), - (508, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdz9ePb4', '3583262'), - (508, 709, 'not_attending', '2021-04-06 01:40:07', '2025-12-17 19:47:44', 'bdz9ePb4', '3587852'), - (508, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'bdz9ePb4', '3619523'), - (508, 719, 'not_attending', '2021-04-06 01:40:16', '2025-12-17 19:47:44', 'bdz9ePb4', '3635405'), - (508, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdz9ePb4', '3661369'), - (508, 731, 'not_attending', '2021-04-06 01:40:09', '2025-12-17 19:47:44', 'bdz9ePb4', '3674262'), - (508, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdz9ePb4', '3677402'), - (508, 736, 'not_attending', '2021-04-06 01:40:18', '2025-12-17 19:47:44', 'bdz9ePb4', '3677701'), - (508, 737, 'not_attending', '2021-04-06 01:40:04', '2025-12-17 19:47:44', 'bdz9ePb4', '3679349'), - (508, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz9ePb4', '6045684'), - (509, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dxOW7r24', '6044839'), - (509, 1994, 'not_attending', '2023-04-08 19:25:16', '2025-12-17 19:46:59', 'dxOW7r24', '6050104'), - (509, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dxOW7r24', '6053198'), - (509, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dxOW7r24', '6056085'), - (509, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dxOW7r24', '6056916'), - (509, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dxOW7r24', '6059290'), - (509, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dxOW7r24', '6060328'), - (509, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dxOW7r24', '6061037'), - (509, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dxOW7r24', '6061039'), - (509, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dxOW7r24', '6067245'), - (509, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dxOW7r24', '6068094'), - (509, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dxOW7r24', '6068252'), - (509, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dxOW7r24', '6068253'), - (509, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dxOW7r24', '6068254'), - (509, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dxOW7r24', '6068280'), - (509, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dxOW7r24', '6069093'), - (509, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dxOW7r24', '6072528'), - (509, 2045, 'not_attending', '2023-04-28 22:45:08', '2025-12-17 19:47:01', 'dxOW7r24', '6075556'), - (509, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dxOW7r24', '6079840'), - (509, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dxOW7r24', '6083398'), - (509, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dxOW7r24', '6093504'), - (509, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dxOW7r24', '6097414'), - (509, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dxOW7r24', '6097442'), - (509, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dxOW7r24', '6097684'), - (509, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dxOW7r24', '6098762'), - (509, 2066, 'not_attending', '2023-06-09 18:33:39', '2025-12-17 19:47:04', 'dxOW7r24', '6101361'), - (509, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dxOW7r24', '6101362'), - (509, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dxOW7r24', '6103752'), - (509, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dxOW7r24', '6107314'), - (509, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dxOW7r24', '6136733'), - (509, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dxOW7r24', '6137989'), - (509, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dxOW7r24', '6150864'), - (509, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dxOW7r24', '6155491'), - (509, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dxOW7r24', '6164417'), - (509, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dxOW7r24', '6166388'), - (509, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dxOW7r24', '6176439'), - (509, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dxOW7r24', '6182410'), - (509, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dxOW7r24', '6185812'), - (509, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dxOW7r24', '6187651'), - (509, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dxOW7r24', '6187963'), - (509, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dxOW7r24', '6187964'), - (509, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dxOW7r24', '6187966'), - (509, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dxOW7r24', '6187967'), - (509, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dxOW7r24', '6187969'), - (509, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dxOW7r24', '6334878'), - (509, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxOW7r24', '6337236'), - (509, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxOW7r24', '6337970'), - (509, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dxOW7r24', '6338308'), - (509, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxOW7r24', '6341710'), - (509, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxOW7r24', '6342044'), - (509, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxOW7r24', '6342298'), - (509, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dxOW7r24', '6343294'), - (509, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxOW7r24', '6347034'), - (509, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxOW7r24', '6347056'), - (509, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxOW7r24', '6353830'), - (509, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxOW7r24', '6353831'), - (509, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxOW7r24', '6357867'), - (509, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxOW7r24', '6358652'), - (509, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxOW7r24', '6361709'), - (509, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxOW7r24', '6361710'), - (509, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxOW7r24', '6361711'), - (509, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxOW7r24', '6361712'), - (509, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxOW7r24', '6361713'), - (509, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxOW7r24', '6382573'), - (509, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxOW7r24', '6388604'), - (509, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxOW7r24', '6394629'), - (509, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxOW7r24', '6394631'), - (509, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxOW7r24', '6440863'), - (509, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dxOW7r24', '6445440'), - (509, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dxOW7r24', '6453951'), - (509, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dxOW7r24', '6461696'), - (509, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dxOW7r24', '6462129'), - (509, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dxOW7r24', '6463218'), - (509, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dxOW7r24', '6472181'), - (509, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxOW7r24', '6482693'), - (509, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dxOW7r24', '6484200'), - (509, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dxOW7r24', '6484680'), - (509, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxOW7r24', '6507741'), - (509, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxOW7r24', '6514659'), - (509, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxOW7r24', '6514660'), - (509, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxOW7r24', '6519103'), - (509, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dxOW7r24', '6535681'), - (509, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxOW7r24', '6584747'), - (509, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxOW7r24', '6587097'), - (509, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxOW7r24', '6609022'), - (509, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxOW7r24', '6632757'), - (509, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxOW7r24', '6644187'), - (509, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxOW7r24', '6648951'), - (509, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxOW7r24', '6648952'), - (509, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxOW7r24', '6655401'), - (509, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxOW7r24', '6661585'), - (509, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxOW7r24', '6661588'), - (509, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxOW7r24', '6661589'), - (509, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxOW7r24', '6699906'), - (509, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxOW7r24', '6699913'), - (509, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxOW7r24', '6701109'), - (509, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxOW7r24', '6705219'), - (509, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxOW7r24', '6710153'), - (509, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxOW7r24', '6711552'), - (509, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxOW7r24', '6711553'), - (509, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxOW7r24', '6722688'), - (509, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxOW7r24', '6730620'), - (509, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxOW7r24', '6740364'), - (509, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxOW7r24', '6743829'), - (509, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxOW7r24', '7030380'), - (509, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxOW7r24', '7033677'), - (509, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxOW7r24', '7044715'), - (509, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxOW7r24', '7050318'), - (509, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxOW7r24', '7050319'), - (509, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxOW7r24', '7050322'), - (509, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxOW7r24', '7057804'), - (509, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxOW7r24', '7072824'), - (509, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxOW7r24', '7074348'), - (509, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxOW7r24', '7074364'), - (509, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxOW7r24', '7089267'), - (509, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxOW7r24', '7098747'), - (509, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxOW7r24', '7113468'), - (509, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxOW7r24', '7114856'), - (509, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxOW7r24', '7114951'), - (509, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxOW7r24', '7114955'), - (509, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxOW7r24', '7114956'), - (509, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxOW7r24', '7114957'), - (509, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxOW7r24', '7159484'), - (509, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxOW7r24', '7178446'), - (509, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxOW7r24', '7220467'), - (509, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxOW7r24', '7240354'), - (509, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxOW7r24', '7251633'), - (509, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxOW7r24', '7324073'), - (509, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxOW7r24', '7324074'), - (509, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxOW7r24', '7324075'), - (509, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxOW7r24', '7324078'), - (509, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxOW7r24', '7324082'), - (509, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxOW7r24', '7331457'), - (509, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxOW7r24', '7363643'), - (509, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxOW7r24', '7368606'), - (509, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxOW7r24', '7397462'), - (509, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxOW7r24', '7424275'), - (509, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxOW7r24', '7432751'), - (509, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxOW7r24', '7432752'), - (509, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxOW7r24', '7432753'), - (509, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxOW7r24', '7432754'), - (509, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxOW7r24', '7432755'), - (509, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxOW7r24', '7432756'), - (509, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxOW7r24', '7432758'), - (509, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxOW7r24', '7432759'), - (509, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxOW7r24', '7433834'), - (509, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxOW7r24', '7470197'), - (509, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxOW7r24', '7685613'), - (509, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxOW7r24', '7688194'), - (509, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxOW7r24', '7688196'), - (509, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxOW7r24', '7688289'), - (509, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dxOW7r24', '7692763'), - (509, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxOW7r24', '7697552'), - (509, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxOW7r24', '7699878'), - (509, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxOW7r24', '7704043'), - (509, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxOW7r24', '7712467'), - (509, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxOW7r24', '7713585'), - (509, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxOW7r24', '7713586'), - (509, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxOW7r24', '7738518'), - (509, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxOW7r24', '7750636'), - (509, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxOW7r24', '7796540'), - (509, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxOW7r24', '7796541'), - (509, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxOW7r24', '7796542'), - (509, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxOW7r24', '7825913'), - (509, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxOW7r24', '7826209'), - (509, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxOW7r24', '7834742'), - (509, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dxOW7r24', '7842108'), - (509, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxOW7r24', '7842902'), - (509, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxOW7r24', '7842903'), - (509, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxOW7r24', '7842904'), - (509, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxOW7r24', '7842905'), - (509, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxOW7r24', '7855719'), - (509, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxOW7r24', '7860683'), - (509, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxOW7r24', '7860684'), - (509, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxOW7r24', '7866095'), - (509, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxOW7r24', '7869170'), - (509, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxOW7r24', '7869188'), - (509, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxOW7r24', '7869201'), - (509, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxOW7r24', '7877465'), - (509, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxOW7r24', '7888250'), - (509, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxOW7r24', '7904777'), - (509, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxOW7r24', '8349164'), - (509, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxOW7r24', '8349545'), - (509, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dxOW7r24', '8368028'), - (509, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxOW7r24', '8368029'), - (509, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxOW7r24', '8388462'), - (509, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxOW7r24', '8400273'), - (509, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxOW7r24', '8400275'), - (509, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dxOW7r24', '8400276'), - (509, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxOW7r24', '8404977'), - (509, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxOW7r24', '8430783'), - (509, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxOW7r24', '8430784'), - (509, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxOW7r24', '8430799'), - (509, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxOW7r24', '8430800'), - (509, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxOW7r24', '8430801'), - (509, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxOW7r24', '8438709'), - (509, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxOW7r24', '8457738'), - (509, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxOW7r24', '8459566'), - (509, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxOW7r24', '8459567'), - (509, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxOW7r24', '8461032'), - (509, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxOW7r24', '8477877'), - (509, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxOW7r24', '8485688'), - (509, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxOW7r24', '8490587'), - (509, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxOW7r24', '8493552'), - (509, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxOW7r24', '8493553'), - (509, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxOW7r24', '8493554'), - (509, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxOW7r24', '8493555'), - (509, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxOW7r24', '8493556'), - (509, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxOW7r24', '8493557'), - (509, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxOW7r24', '8493558'), - (509, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxOW7r24', '8493559'), - (509, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxOW7r24', '8493560'), - (509, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxOW7r24', '8493561'), - (509, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxOW7r24', '8493572'), - (509, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxOW7r24', '8540725'), - (509, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxOW7r24', '8555421'), - (510, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'x4o11yMm', '5195095'), - (510, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'x4o11yMm', '5223686'), - (510, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'x4o11yMm', '5227432'), - (510, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'x4o11yMm', '5247467'), - (510, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'x4o11yMm', '5260800'), - (510, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'x4o11yMm', '5269930'), - (510, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'x4o11yMm', '5271448'), - (510, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'x4o11yMm', '5271449'), - (510, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'x4o11yMm', '5276469'), - (510, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'x4o11yMm', '5278159'), - (510, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'x4o11yMm', '6045684'), - (511, 872, 'not_attending', '2021-07-20 02:29:51', '2025-12-17 19:47:40', 'd3RVlrO4', '4136947'), - (511, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'd3RVlrO4', '4210314'), - (511, 893, 'maybe', '2021-07-23 01:59:09', '2025-12-17 19:47:40', 'd3RVlrO4', '4229420'), - (511, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'd3RVlrO4', '4229423'), - (511, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'd3RVlrO4', '4240316'), - (511, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'd3RVlrO4', '4240317'), - (511, 902, 'attending', '2021-08-07 02:50:46', '2025-12-17 19:47:41', 'd3RVlrO4', '4240318'), - (511, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'd3RVlrO4', '4240320'), - (511, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'd3RVlrO4', '4277819'), - (511, 923, 'not_attending', '2021-07-23 01:57:44', '2025-12-17 19:47:40', 'd3RVlrO4', '4292773'), - (511, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'd3RVlrO4', '4301723'), - (511, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'd3RVlrO4', '4302093'), - (511, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'd3RVlrO4', '4304151'), - (511, 940, 'not_attending', '2021-07-30 16:29:25', '2025-12-17 19:47:40', 'd3RVlrO4', '4309049'), - (511, 947, 'attending', '2021-08-05 12:51:15', '2025-12-17 19:47:41', 'd3RVlrO4', '4315713'), - (511, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'd3RVlrO4', '4345519'), - (511, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd3RVlrO4', '4356801'), - (511, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'd3RVlrO4', '4358025'), - (511, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'd3RVlrO4', '4366186'), - (511, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'd3RVlrO4', '4366187'), - (511, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'd3RVlrO4', '4402823'), - (511, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'd3RVlrO4', '4420735'), - (511, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'd3RVlrO4', '4420738'), - (511, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'd3RVlrO4', '4420739'), - (511, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'd3RVlrO4', '4420741'), - (511, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'd3RVlrO4', '4420744'), - (511, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'd3RVlrO4', '4420747'), - (511, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'd3RVlrO4', '4420748'), - (511, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'd3RVlrO4', '4420749'), - (511, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'd3RVlrO4', '4461883'), - (511, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'd3RVlrO4', '4508342'), - (511, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd3RVlrO4', '4568602'), - (511, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3RVlrO4', '6045684'), - (512, 25, 'not_attending', '2020-07-08 05:17:28', '2025-12-17 19:47:55', '6AXMZBY4', '2958069'), - (512, 50, 'not_attending', '2020-07-13 23:21:43', '2025-12-17 19:47:55', '6AXMZBY4', '2975275'), - (512, 54, 'not_attending', '2020-07-13 23:22:37', '2025-12-17 19:47:56', '6AXMZBY4', '2975279'), - (512, 147, 'not_attending', '2020-08-15 13:02:30', '2025-12-17 19:47:56', '6AXMZBY4', '3058684'), - (512, 151, 'not_attending', '2020-08-17 02:42:00', '2025-12-17 19:47:56', '6AXMZBY4', '3058688'), - (512, 152, 'not_attending', '2020-08-17 02:42:25', '2025-12-17 19:47:56', '6AXMZBY4', '3058689'), - (512, 157, 'not_attending', '2020-08-17 02:43:55', '2025-12-17 19:47:56', '6AXMZBY4', '3058694'), - (512, 158, 'not_attending', '2020-08-17 02:44:01', '2025-12-17 19:47:52', '6AXMZBY4', '3058695'), - (512, 159, 'not_attending', '2020-08-17 02:44:08', '2025-12-17 19:47:52', '6AXMZBY4', '3058696'), - (512, 160, 'attending', '2020-10-24 15:18:42', '2025-12-17 19:47:52', '6AXMZBY4', '3058697'), - (512, 161, 'not_attending', '2020-08-17 02:44:15', '2025-12-17 19:47:52', '6AXMZBY4', '3058698'), - (512, 162, 'not_attending', '2020-09-17 02:03:28', '2025-12-17 19:47:52', '6AXMZBY4', '3058699'), - (512, 163, 'not_attending', '2020-10-27 14:04:09', '2025-12-17 19:47:53', '6AXMZBY4', '3058700'), - (512, 164, 'attending', '2020-10-20 21:09:47', '2025-12-17 19:47:54', '6AXMZBY4', '3058701'), - (512, 165, 'attending', '2020-10-20 21:09:38', '2025-12-17 19:47:53', '6AXMZBY4', '3058702'), - (512, 166, 'attending', '2020-11-07 06:48:12', '2025-12-17 19:47:54', '6AXMZBY4', '3058704'), - (512, 167, 'attending', '2020-11-07 06:48:15', '2025-12-17 19:47:54', '6AXMZBY4', '3058705'), - (512, 191, 'attending', '2020-07-08 01:56:06', '2025-12-17 19:47:55', '6AXMZBY4', '3087259'), - (512, 192, 'attending', '2020-07-08 05:18:05', '2025-12-17 19:47:55', '6AXMZBY4', '3087260'), - (512, 193, 'attending', '2020-07-08 05:18:13', '2025-12-17 19:47:55', '6AXMZBY4', '3087261'), - (512, 194, 'attending', '2020-07-13 23:20:38', '2025-12-17 19:47:55', '6AXMZBY4', '3087262'), - (512, 195, 'not_attending', '2020-08-08 12:31:08', '2025-12-17 19:47:56', '6AXMZBY4', '3087264'), - (512, 196, 'attending', '2020-07-13 23:22:42', '2025-12-17 19:47:56', '6AXMZBY4', '3087265'), - (512, 197, 'attending', '2020-07-13 23:22:51', '2025-12-17 19:47:56', '6AXMZBY4', '3087266'), - (512, 198, 'attending', '2020-07-13 23:22:53', '2025-12-17 19:47:56', '6AXMZBY4', '3087267'), - (512, 199, 'not_attending', '2020-09-05 03:39:42', '2025-12-17 19:47:56', '6AXMZBY4', '3087268'), - (512, 205, 'attending', '2020-07-08 02:00:48', '2025-12-17 19:47:55', '6AXMZBY4', '3104804'), - (512, 206, 'attending', '2020-07-13 23:20:29', '2025-12-17 19:47:55', '6AXMZBY4', '3104806'), - (512, 207, 'not_attending', '2020-07-13 23:21:33', '2025-12-17 19:47:55', '6AXMZBY4', '3104807'), - (512, 208, 'not_attending', '2020-07-13 23:21:57', '2025-12-17 19:47:56', '6AXMZBY4', '3104808'), - (512, 212, 'attending', '2020-07-13 23:19:32', '2025-12-17 19:47:55', '6AXMZBY4', '3118517'), - (512, 213, 'attending', '2020-07-07 20:05:47', '2025-12-17 19:47:55', '6AXMZBY4', '3121083'), - (512, 214, 'attending', '2020-07-08 01:59:55', '2025-12-17 19:47:55', '6AXMZBY4', '3124139'), - (512, 216, 'attending', '2020-07-08 05:17:13', '2025-12-17 19:47:55', '6AXMZBY4', '3126500'), - (512, 217, 'attending', '2020-07-13 17:13:09', '2025-12-17 19:47:55', '6AXMZBY4', '3126684'), - (512, 218, 'not_attending', '2020-07-13 23:21:27', '2025-12-17 19:47:55', '6AXMZBY4', '3129262'), - (512, 219, 'not_attending', '2020-07-13 23:22:45', '2025-12-17 19:47:56', '6AXMZBY4', '3129263'), - (512, 220, 'not_attending', '2020-07-13 23:23:23', '2025-12-17 19:47:56', '6AXMZBY4', '3129264'), - (512, 221, 'not_attending', '2020-07-13 23:23:29', '2025-12-17 19:47:56', '6AXMZBY4', '3129265'), - (512, 222, 'not_attending', '2020-07-13 23:22:10', '2025-12-17 19:47:56', '6AXMZBY4', '3129266'), - (512, 223, 'attending', '2020-07-13 23:23:51', '2025-12-17 19:47:56', '6AXMZBY4', '3129980'), - (512, 224, 'not_attending', '2020-07-13 23:20:47', '2025-12-17 19:47:55', '6AXMZBY4', '3130712'), - (512, 225, 'not_attending', '2020-07-13 23:21:12', '2025-12-17 19:47:55', '6AXMZBY4', '3132378'), - (512, 226, 'attending', '2020-07-13 23:19:10', '2025-12-17 19:47:55', '6AXMZBY4', '3132817'), - (512, 227, 'attending', '2020-07-13 23:19:19', '2025-12-17 19:47:55', '6AXMZBY4', '3132820'), - (512, 228, 'not_attending', '2020-07-13 23:20:11', '2025-12-17 19:47:55', '6AXMZBY4', '3132821'), - (512, 230, 'not_attending', '2020-07-19 02:46:32', '2025-12-17 19:47:55', '6AXMZBY4', '3139232'), - (512, 239, 'not_attending', '2020-08-17 02:41:45', '2025-12-17 19:47:56', '6AXMZBY4', '3149470'), - (512, 240, 'not_attending', '2020-08-17 02:42:55', '2025-12-17 19:47:56', '6AXMZBY4', '3149471'), - (512, 241, 'not_attending', '2020-08-17 02:43:44', '2025-12-17 19:47:52', '6AXMZBY4', '3149472'), - (512, 242, 'not_attending', '2020-08-17 02:43:31', '2025-12-17 19:47:56', '6AXMZBY4', '3149473'), - (512, 243, 'not_attending', '2020-09-29 04:42:59', '2025-12-17 19:47:53', '6AXMZBY4', '3149474'), - (512, 244, 'not_attending', '2020-09-17 02:03:01', '2025-12-17 19:47:52', '6AXMZBY4', '3149475'), - (512, 245, 'not_attending', '2020-10-14 14:18:38', '2025-12-17 19:47:54', '6AXMZBY4', '3149476'), - (512, 246, 'not_attending', '2020-11-07 06:48:58', '2025-12-17 19:47:55', '6AXMZBY4', '3149477'), - (512, 247, 'not_attending', '2020-11-07 06:49:06', '2025-12-17 19:47:48', '6AXMZBY4', '3149478'), - (512, 248, 'not_attending', '2021-01-08 18:28:50', '2025-12-17 19:47:48', '6AXMZBY4', '3149479'), - (512, 249, 'not_attending', '2020-10-14 14:18:26', '2025-12-17 19:47:54', '6AXMZBY4', '3149480'), - (512, 250, 'not_attending', '2021-02-01 22:40:16', '2025-12-17 19:47:50', '6AXMZBY4', '3149481'), - (512, 251, 'not_attending', '2021-01-08 18:29:22', '2025-12-17 19:47:49', '6AXMZBY4', '3149482'), - (512, 252, 'not_attending', '2021-02-01 22:41:00', '2025-12-17 19:47:50', '6AXMZBY4', '3149483'), - (512, 253, 'not_attending', '2021-03-01 18:40:41', '2025-12-17 19:47:44', '6AXMZBY4', '3149484'), - (512, 254, 'not_attending', '2021-02-01 22:41:16', '2025-12-17 19:47:51', '6AXMZBY4', '3149485'), - (512, 255, 'not_attending', '2021-03-01 18:40:23', '2025-12-17 19:47:43', '6AXMZBY4', '3149486'), - (512, 256, 'not_attending', '2021-04-05 11:23:03', '2025-12-17 19:47:46', '6AXMZBY4', '3149487'), - (512, 257, 'not_attending', '2021-04-05 11:22:37', '2025-12-17 19:47:45', '6AXMZBY4', '3149488'), - (512, 269, 'attending', '2020-08-01 00:53:33', '2025-12-17 19:47:55', '6AXMZBY4', '3153076'), - (512, 270, 'not_attending', '2020-08-14 13:43:10', '2025-12-17 19:47:56', '6AXMZBY4', '3154457'), - (512, 271, 'attending', '2020-08-02 23:20:33', '2025-12-17 19:47:56', '6AXMZBY4', '3155321'), - (512, 273, 'not_attending', '2020-08-06 17:48:14', '2025-12-17 19:47:56', '6AXMZBY4', '3162006'), - (512, 274, 'not_attending', '2020-08-06 17:48:58', '2025-12-17 19:47:56', '6AXMZBY4', '3163404'), - (512, 277, 'not_attending', '2020-08-06 17:49:11', '2025-12-17 19:47:56', '6AXMZBY4', '3163442'), - (512, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '6AXMZBY4', '3169555'), - (512, 285, 'not_attending', '2020-08-14 13:44:08', '2025-12-17 19:47:56', '6AXMZBY4', '3170245'), - (512, 286, 'not_attending', '2020-08-14 13:44:30', '2025-12-17 19:47:56', '6AXMZBY4', '3170246'), - (512, 287, 'not_attending', '2020-08-14 13:44:42', '2025-12-17 19:47:56', '6AXMZBY4', '3170247'), - (512, 288, 'not_attending', '2020-08-14 13:45:39', '2025-12-17 19:47:56', '6AXMZBY4', '3170249'), - (512, 289, 'not_attending', '2020-08-14 13:45:53', '2025-12-17 19:47:56', '6AXMZBY4', '3170250'), - (512, 290, 'not_attending', '2020-08-17 02:43:05', '2025-12-17 19:47:56', '6AXMZBY4', '3170251'), - (512, 291, 'not_attending', '2020-08-17 02:43:12', '2025-12-17 19:47:56', '6AXMZBY4', '3170252'), - (512, 293, 'not_attending', '2020-08-11 04:31:58', '2025-12-17 19:47:56', '6AXMZBY4', '3172832'), - (512, 294, 'not_attending', '2020-08-26 23:45:53', '2025-12-17 19:47:56', '6AXMZBY4', '3172833'), - (512, 295, 'not_attending', '2020-08-11 04:31:30', '2025-12-17 19:47:56', '6AXMZBY4', '3172834'), - (512, 296, 'attending', '2020-09-12 03:13:29', '2025-12-17 19:47:56', '6AXMZBY4', '3172876'), - (512, 297, 'not_attending', '2020-08-11 17:26:56', '2025-12-17 19:47:56', '6AXMZBY4', '3173937'), - (512, 298, 'not_attending', '2020-08-14 13:44:38', '2025-12-17 19:47:56', '6AXMZBY4', '3174556'), - (512, 299, 'not_attending', '2020-08-14 13:43:28', '2025-12-17 19:47:56', '6AXMZBY4', '3176591'), - (512, 301, 'not_attending', '2020-08-14 13:44:25', '2025-12-17 19:47:56', '6AXMZBY4', '3178027'), - (512, 302, 'not_attending', '2020-08-14 13:44:14', '2025-12-17 19:47:56', '6AXMZBY4', '3178028'), - (512, 303, 'maybe', '2020-08-14 13:44:02', '2025-12-17 19:47:56', '6AXMZBY4', '3178444'), - (512, 304, 'maybe', '2020-08-29 16:42:10', '2025-12-17 19:47:56', '6AXMZBY4', '3178916'), - (512, 305, 'not_attending', '2020-08-15 13:02:15', '2025-12-17 19:47:56', '6AXMZBY4', '3179555'), - (512, 306, 'not_attending', '2020-08-15 13:01:54', '2025-12-17 19:47:56', '6AXMZBY4', '3179777'), - (512, 307, 'not_attending', '2020-08-17 02:41:18', '2025-12-17 19:47:56', '6AXMZBY4', '3182590'), - (512, 308, 'not_attending', '2020-08-22 17:10:17', '2025-12-17 19:47:56', '6AXMZBY4', '3183341'), - (512, 309, 'not_attending', '2020-08-20 00:53:44', '2025-12-17 19:47:56', '6AXMZBY4', '3185332'), - (512, 310, 'maybe', '2020-08-22 15:36:33', '2025-12-17 19:47:56', '6AXMZBY4', '3186005'), - (512, 311, 'attending', '2020-08-23 14:59:20', '2025-12-17 19:47:56', '6AXMZBY4', '3186057'), - (512, 312, 'attending', '2020-09-10 22:43:37', '2025-12-17 19:47:56', '6AXMZBY4', '3187795'), - (512, 313, 'not_attending', '2020-08-23 05:10:25', '2025-12-17 19:47:56', '6AXMZBY4', '3188127'), - (512, 315, 'maybe', '2020-08-29 16:42:31', '2025-12-17 19:47:56', '6AXMZBY4', '3189085'), - (512, 317, 'not_attending', '2020-08-26 15:47:31', '2025-12-17 19:47:56', '6AXMZBY4', '3191735'), - (512, 318, 'not_attending', '2020-08-29 16:40:36', '2025-12-17 19:47:56', '6AXMZBY4', '3193885'), - (512, 319, 'maybe', '2020-08-29 16:43:00', '2025-12-17 19:47:56', '6AXMZBY4', '3194179'), - (512, 322, 'not_attending', '2020-09-16 23:15:25', '2025-12-17 19:47:56', '6AXMZBY4', '3197080'), - (512, 323, 'not_attending', '2020-09-05 03:41:35', '2025-12-17 19:47:56', '6AXMZBY4', '3197081'), - (512, 324, 'not_attending', '2020-09-05 03:41:50', '2025-12-17 19:47:56', '6AXMZBY4', '3197082'), - (512, 325, 'not_attending', '2020-09-05 03:41:55', '2025-12-17 19:47:51', '6AXMZBY4', '3197083'), - (512, 326, 'not_attending', '2020-09-05 03:41:59', '2025-12-17 19:47:52', '6AXMZBY4', '3197084'), - (512, 327, 'not_attending', '2020-09-05 03:42:14', '2025-12-17 19:47:52', '6AXMZBY4', '3197085'), - (512, 328, 'not_attending', '2020-09-05 03:42:18', '2025-12-17 19:47:52', '6AXMZBY4', '3197086'), - (512, 329, 'not_attending', '2020-09-05 03:42:23', '2025-12-17 19:47:52', '6AXMZBY4', '3197087'), - (512, 330, 'maybe', '2020-09-05 03:40:13', '2025-12-17 19:47:56', '6AXMZBY4', '3197322'), - (512, 333, 'not_attending', '2020-09-17 02:02:44', '2025-12-17 19:47:52', '6AXMZBY4', '3199782'), - (512, 334, 'not_attending', '2020-09-17 02:02:51', '2025-12-17 19:47:52', '6AXMZBY4', '3199784'), - (512, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '6AXMZBY4', '3200209'), - (512, 336, 'not_attending', '2020-09-05 03:41:42', '2025-12-17 19:47:56', '6AXMZBY4', '3200495'), - (512, 337, 'maybe', '2020-09-05 03:40:48', '2025-12-17 19:47:56', '6AXMZBY4', '3201771'), - (512, 338, 'maybe', '2020-09-05 03:40:01', '2025-12-17 19:47:56', '6AXMZBY4', '3203106'), - (512, 339, 'maybe', '2020-09-06 19:15:41', '2025-12-17 19:47:56', '6AXMZBY4', '3204469'), - (512, 340, 'attending', '2020-09-18 22:35:05', '2025-12-17 19:47:56', '6AXMZBY4', '3204470'), - (512, 341, 'not_attending', '2020-09-17 02:01:34', '2025-12-17 19:47:52', '6AXMZBY4', '3204471'), - (512, 342, 'not_attending', '2020-09-17 02:02:33', '2025-12-17 19:47:52', '6AXMZBY4', '3204472'), - (512, 343, 'not_attending', '2020-09-17 02:01:17', '2025-12-17 19:47:56', '6AXMZBY4', '3206759'), - (512, 344, 'not_attending', '2020-10-29 15:21:10', '2025-12-17 19:47:53', '6AXMZBY4', '3206906'), - (512, 345, 'maybe', '2020-09-11 18:24:50', '2025-12-17 19:47:56', '6AXMZBY4', '3207423'), - (512, 346, 'attending', '2020-09-15 22:14:51', '2025-12-17 19:47:56', '6AXMZBY4', '3207515'), - (512, 347, 'not_attending', '2020-09-17 02:01:27', '2025-12-17 19:47:51', '6AXMZBY4', '3207930'), - (512, 348, 'not_attending', '2020-09-17 02:02:12', '2025-12-17 19:47:52', '6AXMZBY4', '3209159'), - (512, 349, 'maybe', '2020-09-11 21:47:49', '2025-12-17 19:47:56', '6AXMZBY4', '3209194'), - (512, 352, 'maybe', '2020-09-12 21:22:50', '2025-12-17 19:47:56', '6AXMZBY4', '3210514'), - (512, 354, 'attending', '2020-09-20 22:57:23', '2025-12-17 19:47:56', '6AXMZBY4', '3212570'), - (512, 355, 'attending', '2020-09-15 00:30:29', '2025-12-17 19:47:56', '6AXMZBY4', '3212571'), - (512, 356, 'not_attending', '2020-09-17 02:01:23', '2025-12-17 19:47:51', '6AXMZBY4', '3212572'), - (512, 357, 'not_attending', '2020-09-17 02:02:25', '2025-12-17 19:47:52', '6AXMZBY4', '3212573'), - (512, 358, 'not_attending', '2020-09-17 18:01:48', '2025-12-17 19:47:56', '6AXMZBY4', '3212579'), - (512, 359, 'not_attending', '2020-09-17 18:02:03', '2025-12-17 19:47:56', '6AXMZBY4', '3212624'), - (512, 360, 'not_attending', '2020-09-17 18:00:27', '2025-12-17 19:47:56', '6AXMZBY4', '3212671'), - (512, 361, 'not_attending', '2020-09-17 18:01:35', '2025-12-17 19:47:56', '6AXMZBY4', '3213323'), - (512, 362, 'attending', '2020-09-17 02:01:45', '2025-12-17 19:47:52', '6AXMZBY4', '3214207'), - (512, 363, 'maybe', '2020-09-17 02:01:51', '2025-12-17 19:47:52', '6AXMZBY4', '3217037'), - (512, 364, 'attending', '2020-09-18 23:11:09', '2025-12-17 19:47:56', '6AXMZBY4', '3217106'), - (512, 365, 'not_attending', '2020-09-18 17:41:09', '2025-12-17 19:47:51', '6AXMZBY4', '3218510'), - (512, 366, 'not_attending', '2020-09-22 14:27:24', '2025-12-17 19:47:56', '6AXMZBY4', '3219750'), - (512, 367, 'not_attending', '2020-09-22 14:27:52', '2025-12-17 19:47:51', '6AXMZBY4', '3219751'), - (512, 368, 'not_attending', '2020-09-22 14:28:23', '2025-12-17 19:47:52', '6AXMZBY4', '3221403'), - (512, 369, 'not_attending', '2020-09-28 13:38:07', '2025-12-17 19:47:52', '6AXMZBY4', '3221404'), - (512, 370, 'not_attending', '2020-09-28 13:38:23', '2025-12-17 19:47:52', '6AXMZBY4', '3221405'), - (512, 371, 'not_attending', '2020-09-28 13:38:41', '2025-12-17 19:47:52', '6AXMZBY4', '3221406'), - (512, 372, 'not_attending', '2020-09-29 04:42:32', '2025-12-17 19:47:52', '6AXMZBY4', '3221407'), - (512, 373, 'not_attending', '2020-09-29 04:42:35', '2025-12-17 19:47:52', '6AXMZBY4', '3221413'), - (512, 374, 'not_attending', '2020-09-29 04:42:41', '2025-12-17 19:47:53', '6AXMZBY4', '3221415'), - (512, 375, 'not_attending', '2020-09-28 13:37:49', '2025-12-17 19:47:52', '6AXMZBY4', '3222825'), - (512, 376, 'not_attending', '2020-09-28 13:38:31', '2025-12-17 19:47:52', '6AXMZBY4', '3222827'), - (512, 377, 'not_attending', '2020-09-29 04:42:49', '2025-12-17 19:47:53', '6AXMZBY4', '3222828'), - (512, 378, 'attending', '2020-09-23 17:27:26', '2025-12-17 19:47:52', '6AXMZBY4', '3223725'), - (512, 379, 'not_attending', '2020-09-29 04:42:21', '2025-12-17 19:47:52', '6AXMZBY4', '3226266'), - (512, 380, 'not_attending', '2020-09-28 13:37:24', '2025-12-17 19:47:52', '6AXMZBY4', '3226281'), - (512, 382, 'not_attending', '2020-09-28 13:38:15', '2025-12-17 19:47:52', '6AXMZBY4', '3226873'), - (512, 383, 'not_attending', '2020-09-28 13:37:20', '2025-12-17 19:47:52', '6AXMZBY4', '3227946'), - (512, 384, 'attending', '2020-09-29 21:37:34', '2025-12-17 19:47:52', '6AXMZBY4', '3228696'), - (512, 385, 'attending', '2020-09-29 03:07:29', '2025-12-17 19:47:52', '6AXMZBY4', '3228698'), - (512, 386, 'attending', '2020-09-29 03:07:33', '2025-12-17 19:47:52', '6AXMZBY4', '3228699'), - (512, 387, 'attending', '2020-09-29 03:07:41', '2025-12-17 19:47:52', '6AXMZBY4', '3228700'), - (512, 388, 'attending', '2020-09-29 03:07:43', '2025-12-17 19:47:52', '6AXMZBY4', '3228701'), - (512, 389, 'not_attending', '2020-10-01 00:22:52', '2025-12-17 19:47:52', '6AXMZBY4', '3231284'), - (512, 390, 'attending', '2020-10-04 20:47:16', '2025-12-17 19:47:52', '6AXMZBY4', '3231510'), - (512, 391, 'not_attending', '2020-10-12 21:57:02', '2025-12-17 19:47:52', '6AXMZBY4', '3236446'), - (512, 392, 'not_attending', '2020-10-12 22:37:19', '2025-12-17 19:47:53', '6AXMZBY4', '3236447'), - (512, 394, 'not_attending', '2020-11-07 06:49:09', '2025-12-17 19:47:48', '6AXMZBY4', '3236449'), - (512, 396, 'not_attending', '2021-04-05 11:22:50', '2025-12-17 19:47:46', '6AXMZBY4', '3236451'), - (512, 398, 'not_attending', '2021-01-08 18:29:15', '2025-12-17 19:47:49', '6AXMZBY4', '3236453'), - (512, 399, 'not_attending', '2020-10-14 14:18:20', '2025-12-17 19:47:54', '6AXMZBY4', '3236454'), - (512, 400, 'not_attending', '2021-01-08 18:29:33', '2025-12-17 19:47:50', '6AXMZBY4', '3236455'), - (512, 403, 'not_attending', '2021-02-01 22:41:06', '2025-12-17 19:47:51', '6AXMZBY4', '3236458'), - (512, 404, 'not_attending', '2021-03-01 18:40:10', '2025-12-17 19:47:51', '6AXMZBY4', '3236460'), - (512, 406, 'not_attending', '2021-03-01 18:40:32', '2025-12-17 19:47:44', '6AXMZBY4', '3236464'), - (512, 407, 'not_attending', '2021-04-05 11:21:43', '2025-12-17 19:47:44', '6AXMZBY4', '3236465'), - (512, 408, 'not_attending', '2021-02-01 22:40:38', '2025-12-17 19:47:50', '6AXMZBY4', '3236466'), - (512, 409, 'not_attending', '2020-11-07 06:48:40', '2025-12-17 19:47:54', '6AXMZBY4', '3236467'), - (512, 410, 'not_attending', '2020-10-14 14:18:34', '2025-12-17 19:47:54', '6AXMZBY4', '3236469'), - (512, 411, 'maybe', '2020-10-09 03:41:41', '2025-12-17 19:47:52', '6AXMZBY4', '3236596'), - (512, 413, 'not_attending', '2020-10-12 22:36:43', '2025-12-17 19:47:52', '6AXMZBY4', '3236670'), - (512, 414, 'maybe', '2020-10-12 22:36:19', '2025-12-17 19:47:52', '6AXMZBY4', '3237277'), - (512, 415, 'maybe', '2020-10-12 21:56:00', '2025-12-17 19:47:52', '6AXMZBY4', '3238044'), - (512, 416, 'not_attending', '2020-10-09 03:41:33', '2025-12-17 19:47:52', '6AXMZBY4', '3238073'), - (512, 417, 'not_attending', '2020-10-09 03:41:55', '2025-12-17 19:47:52', '6AXMZBY4', '3238779'), - (512, 418, 'not_attending', '2020-10-12 21:56:45', '2025-12-17 19:47:52', '6AXMZBY4', '3241728'), - (512, 419, 'not_attending', '2020-10-12 21:56:37', '2025-12-17 19:47:52', '6AXMZBY4', '3242234'), - (512, 420, 'not_attending', '2020-10-12 21:56:56', '2025-12-17 19:47:52', '6AXMZBY4', '3245293'), - (512, 421, 'not_attending', '2020-10-12 22:36:49', '2025-12-17 19:47:52', '6AXMZBY4', '3245294'), - (512, 422, 'not_attending', '2020-10-12 22:37:14', '2025-12-17 19:47:53', '6AXMZBY4', '3245295'), - (512, 423, 'maybe', '2020-10-29 15:21:45', '2025-12-17 19:47:53', '6AXMZBY4', '3245296'), - (512, 424, 'not_attending', '2020-10-12 22:36:06', '2025-12-17 19:47:52', '6AXMZBY4', '3245751'), - (512, 425, 'not_attending', '2020-10-14 14:17:35', '2025-12-17 19:47:52', '6AXMZBY4', '3250097'), - (512, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '6AXMZBY4', '3250232'), - (512, 427, 'not_attending', '2020-10-29 15:21:07', '2025-12-17 19:47:53', '6AXMZBY4', '3250233'), - (512, 428, 'not_attending', '2020-10-20 21:08:55', '2025-12-17 19:47:53', '6AXMZBY4', '3250332'), - (512, 429, 'maybe', '2020-11-07 06:48:45', '2025-12-17 19:47:54', '6AXMZBY4', '3250523'), - (512, 430, 'not_attending', '2020-10-20 21:08:37', '2025-12-17 19:47:52', '6AXMZBY4', '3253094'), - (512, 431, 'not_attending', '2020-10-20 21:08:57', '2025-12-17 19:47:53', '6AXMZBY4', '3253225'), - (512, 432, 'not_attending', '2020-10-20 21:09:32', '2025-12-17 19:47:53', '6AXMZBY4', '3254416'), - (512, 433, 'not_attending', '2020-10-20 21:09:36', '2025-12-17 19:47:53', '6AXMZBY4', '3254417'), - (512, 434, 'not_attending', '2020-10-20 21:09:42', '2025-12-17 19:47:53', '6AXMZBY4', '3254418'), - (512, 435, 'not_attending', '2020-10-20 21:08:52', '2025-12-17 19:47:52', '6AXMZBY4', '3254790'), - (512, 436, 'not_attending', '2020-10-20 21:08:43', '2025-12-17 19:47:52', '6AXMZBY4', '3256119'), - (512, 437, 'not_attending', '2020-10-20 21:09:05', '2025-12-17 19:47:53', '6AXMZBY4', '3256160'), - (512, 438, 'not_attending', '2020-10-27 05:16:20', '2025-12-17 19:47:53', '6AXMZBY4', '3256163'), - (512, 439, 'not_attending', '2020-10-20 21:09:03', '2025-12-17 19:47:53', '6AXMZBY4', '3256164'), - (512, 440, 'attending', '2020-10-29 15:21:51', '2025-12-17 19:47:53', '6AXMZBY4', '3256168'), - (512, 441, 'attending', '2020-10-20 21:09:45', '2025-12-17 19:47:54', '6AXMZBY4', '3256169'), - (512, 443, 'attending', '2020-10-26 00:23:37', '2025-12-17 19:47:53', '6AXMZBY4', '3263578'), - (512, 444, 'maybe', '2020-10-30 19:00:13', '2025-12-17 19:47:53', '6AXMZBY4', '3263745'), - (512, 445, 'not_attending', '2020-11-07 06:47:51', '2025-12-17 19:47:54', '6AXMZBY4', '3266138'), - (512, 446, 'not_attending', '2020-10-27 05:15:49', '2025-12-17 19:47:53', '6AXMZBY4', '3267163'), - (512, 447, 'not_attending', '2020-10-27 05:16:01', '2025-12-17 19:47:53', '6AXMZBY4', '3267895'), - (512, 448, 'maybe', '2020-10-30 23:48:33', '2025-12-17 19:47:53', '6AXMZBY4', '3271831'), - (512, 449, 'maybe', '2020-11-02 01:18:06', '2025-12-17 19:47:53', '6AXMZBY4', '3272055'), - (512, 451, 'not_attending', '2020-11-02 01:17:48', '2025-12-17 19:47:53', '6AXMZBY4', '3272186'), - (512, 452, 'attending', '2020-11-30 00:56:25', '2025-12-17 19:47:54', '6AXMZBY4', '3272981'), - (512, 453, 'not_attending', '2020-11-07 06:47:41', '2025-12-17 19:47:54', '6AXMZBY4', '3274032'), - (512, 454, 'maybe', '2020-11-13 21:57:31', '2025-12-17 19:47:54', '6AXMZBY4', '3275665'), - (512, 456, 'not_attending', '2020-11-07 06:48:06', '2025-12-17 19:47:54', '6AXMZBY4', '3276428'), - (512, 457, 'not_attending', '2020-11-08 00:02:41', '2025-12-17 19:47:53', '6AXMZBY4', '3279087'), - (512, 458, 'not_attending', '2020-11-07 06:47:32', '2025-12-17 19:47:53', '6AXMZBY4', '3279233'), - (512, 460, 'not_attending', '2020-11-10 18:13:08', '2025-12-17 19:47:54', '6AXMZBY4', '3281468'), - (512, 461, 'not_attending', '2020-11-10 00:41:46', '2025-12-17 19:47:53', '6AXMZBY4', '3281469'), - (512, 462, 'not_attending', '2020-11-10 18:12:19', '2025-12-17 19:47:54', '6AXMZBY4', '3281470'), - (512, 463, 'not_attending', '2020-11-10 18:12:33', '2025-12-17 19:47:54', '6AXMZBY4', '3281553'), - (512, 464, 'not_attending', '2020-11-10 18:13:11', '2025-12-17 19:47:54', '6AXMZBY4', '3281554'), - (512, 465, 'not_attending', '2020-11-10 18:13:21', '2025-12-17 19:47:54', '6AXMZBY4', '3281555'), - (512, 466, 'not_attending', '2020-11-10 18:13:04', '2025-12-17 19:47:54', '6AXMZBY4', '3281829'), - (512, 467, 'not_attending', '2020-11-10 18:12:58', '2025-12-17 19:47:54', '6AXMZBY4', '3282756'), - (512, 468, 'attending', '2020-11-19 17:08:48', '2025-12-17 19:47:54', '6AXMZBY4', '3285413'), - (512, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '6AXMZBY4', '3285414'), - (512, 471, 'not_attending', '2020-11-17 21:05:15', '2025-12-17 19:47:54', '6AXMZBY4', '3285445'), - (512, 472, 'not_attending', '2020-11-11 23:51:19', '2025-12-17 19:47:54', '6AXMZBY4', '3286541'), - (512, 473, 'not_attending', '2020-11-11 23:51:29', '2025-12-17 19:47:54', '6AXMZBY4', '3286569'), - (512, 474, 'not_attending', '2020-11-11 23:51:12', '2025-12-17 19:47:54', '6AXMZBY4', '3286570'), - (512, 475, 'not_attending', '2020-11-17 21:05:31', '2025-12-17 19:47:54', '6AXMZBY4', '3286760'), - (512, 476, 'not_attending', '2020-11-17 21:05:12', '2025-12-17 19:47:54', '6AXMZBY4', '3286982'), - (512, 477, 'not_attending', '2020-11-26 06:38:34', '2025-12-17 19:47:54', '6AXMZBY4', '3289559'), - (512, 478, 'not_attending', '2020-11-17 21:05:01', '2025-12-17 19:47:54', '6AXMZBY4', '3290899'), - (512, 479, 'not_attending', '2020-11-19 17:09:02', '2025-12-17 19:47:54', '6AXMZBY4', '3295306'), - (512, 480, 'attending', '2020-11-19 17:08:43', '2025-12-17 19:47:54', '6AXMZBY4', '3295313'), - (512, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '6AXMZBY4', '3297764'), - (512, 482, 'not_attending', '2020-11-24 19:45:14', '2025-12-17 19:47:54', '6AXMZBY4', '3297769'), - (512, 484, 'not_attending', '2020-11-21 00:04:03', '2025-12-17 19:47:54', '6AXMZBY4', '3297792'), - (512, 486, 'not_attending', '2020-11-24 19:45:10', '2025-12-17 19:47:54', '6AXMZBY4', '3300281'), - (512, 487, 'not_attending', '2020-11-26 06:38:24', '2025-12-17 19:47:54', '6AXMZBY4', '3311122'), - (512, 488, 'not_attending', '2020-11-29 04:38:59', '2025-12-17 19:47:54', '6AXMZBY4', '3312757'), - (512, 489, 'maybe', '2020-11-27 00:39:52', '2025-12-17 19:47:54', '6AXMZBY4', '3313022'), - (512, 490, 'not_attending', '2020-11-29 04:39:20', '2025-12-17 19:47:54', '6AXMZBY4', '3313532'), - (512, 491, 'not_attending', '2020-11-29 04:39:28', '2025-12-17 19:47:55', '6AXMZBY4', '3313533'), - (512, 492, 'not_attending', '2020-11-29 04:39:07', '2025-12-17 19:47:54', '6AXMZBY4', '3313731'), - (512, 493, 'attending', '2020-11-29 04:10:20', '2025-12-17 19:47:54', '6AXMZBY4', '3313856'), - (512, 494, 'attending', '2020-11-29 17:02:33', '2025-12-17 19:47:54', '6AXMZBY4', '3313866'), - (512, 495, 'not_attending', '2020-12-08 00:58:14', '2025-12-17 19:47:54', '6AXMZBY4', '3314009'), - (512, 496, 'not_attending', '2020-11-29 22:14:23', '2025-12-17 19:47:54', '6AXMZBY4', '3314269'), - (512, 497, 'not_attending', '2020-11-29 22:14:43', '2025-12-17 19:47:55', '6AXMZBY4', '3314270'), - (512, 498, 'attending', '2020-12-08 00:58:16', '2025-12-17 19:47:54', '6AXMZBY4', '3314302'), - (512, 499, 'not_attending', '2020-12-08 16:12:11', '2025-12-17 19:47:55', '6AXMZBY4', '3314909'), - (512, 500, 'not_attending', '2020-12-08 16:13:07', '2025-12-17 19:47:55', '6AXMZBY4', '3314964'), - (512, 501, 'not_attending', '2020-12-08 16:11:51', '2025-12-17 19:47:54', '6AXMZBY4', '3317834'), - (512, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '6AXMZBY4', '3323365'), - (512, 503, 'not_attending', '2020-12-08 16:12:49', '2025-12-17 19:47:55', '6AXMZBY4', '3323366'), - (512, 504, 'not_attending', '2020-12-08 16:13:03', '2025-12-17 19:47:55', '6AXMZBY4', '3323368'), - (512, 505, 'not_attending', '2020-12-08 16:13:12', '2025-12-17 19:47:55', '6AXMZBY4', '3323369'), - (512, 506, 'maybe', '2020-12-08 16:12:26', '2025-12-17 19:47:55', '6AXMZBY4', '3323375'), - (512, 507, 'not_attending', '2020-12-08 16:13:17', '2025-12-17 19:47:48', '6AXMZBY4', '3324148'), - (512, 508, 'not_attending', '2021-01-08 18:29:08', '2025-12-17 19:47:48', '6AXMZBY4', '3324231'), - (512, 509, 'not_attending', '2021-01-08 18:29:19', '2025-12-17 19:47:49', '6AXMZBY4', '3324232'), - (512, 510, 'maybe', '2021-01-24 05:30:12', '2025-12-17 19:47:49', '6AXMZBY4', '3324233'), - (512, 511, 'not_attending', '2020-12-08 16:12:54', '2025-12-17 19:47:55', '6AXMZBY4', '3325335'), - (512, 512, 'not_attending', '2020-12-08 16:12:42', '2025-12-17 19:47:55', '6AXMZBY4', '3325336'), - (512, 513, 'attending', '2020-12-13 22:31:53', '2025-12-17 19:47:55', '6AXMZBY4', '3329383'), - (512, 519, 'not_attending', '2020-12-17 18:11:22', '2025-12-17 19:47:55', '6AXMZBY4', '3337448'), - (512, 522, 'not_attending', '2020-12-17 18:10:47', '2025-12-17 19:47:55', '6AXMZBY4', '3342836'), - (512, 525, 'not_attending', '2020-12-22 05:41:20', '2025-12-17 19:47:48', '6AXMZBY4', '3350467'), - (512, 526, 'attending', '2021-01-01 03:04:26', '2025-12-17 19:47:48', '6AXMZBY4', '3351539'), - (512, 531, 'attending', '2021-01-02 06:09:30', '2025-12-17 19:47:48', '6AXMZBY4', '3378210'), - (512, 535, 'not_attending', '2021-01-08 18:28:08', '2025-12-17 19:47:48', '6AXMZBY4', '3384729'), - (512, 536, 'attending', '2021-01-06 01:02:55', '2025-12-17 19:47:48', '6AXMZBY4', '3386848'), - (512, 537, 'not_attending', '2021-01-08 18:28:13', '2025-12-17 19:47:48', '6AXMZBY4', '3387153'), - (512, 538, 'not_attending', '2021-01-08 18:28:57', '2025-12-17 19:47:48', '6AXMZBY4', '3388151'), - (512, 539, 'attending', '2021-01-09 05:12:53', '2025-12-17 19:47:48', '6AXMZBY4', '3389158'), - (512, 540, 'attending', '2021-01-07 05:30:19', '2025-12-17 19:47:48', '6AXMZBY4', '3389527'), - (512, 541, 'not_attending', '2021-01-08 18:27:50', '2025-12-17 19:47:48', '6AXMZBY4', '3391683'), - (512, 543, 'not_attending', '2021-01-12 18:38:37', '2025-12-17 19:47:48', '6AXMZBY4', '3396499'), - (512, 545, 'not_attending', '2021-01-16 22:12:49', '2025-12-17 19:47:49', '6AXMZBY4', '3396502'), - (512, 546, 'not_attending', '2021-01-16 22:13:02', '2025-12-17 19:47:49', '6AXMZBY4', '3396503'), - (512, 547, 'not_attending', '2021-01-16 22:13:09', '2025-12-17 19:47:49', '6AXMZBY4', '3396504'), - (512, 548, 'attending', '2021-01-12 18:38:22', '2025-12-17 19:47:48', '6AXMZBY4', '3403650'), - (512, 549, 'not_attending', '2021-01-16 22:12:39', '2025-12-17 19:47:49', '6AXMZBY4', '3406988'), - (512, 550, 'maybe', '2021-01-16 22:13:17', '2025-12-17 19:47:48', '6AXMZBY4', '3407018'), - (512, 551, 'not_attending', '2021-01-16 22:12:44', '2025-12-17 19:47:49', '6AXMZBY4', '3407219'), - (512, 553, 'attending', '2021-01-13 05:32:22', '2025-12-17 19:47:48', '6AXMZBY4', '3407248'), - (512, 554, 'not_attending', '2021-01-16 22:12:52', '2025-12-17 19:47:49', '6AXMZBY4', '3408338'), - (512, 555, 'attending', '2021-01-23 18:45:02', '2025-12-17 19:47:49', '6AXMZBY4', '3416576'), - (512, 556, 'attending', '2021-01-25 19:49:35', '2025-12-17 19:47:49', '6AXMZBY4', '3417170'), - (512, 557, 'not_attending', '2021-01-19 17:00:55', '2025-12-17 19:47:49', '6AXMZBY4', '3418748'), - (512, 558, 'not_attending', '2021-01-22 23:25:47', '2025-12-17 19:47:49', '6AXMZBY4', '3418925'), - (512, 559, 'not_attending', '2021-01-21 16:44:17', '2025-12-17 19:47:49', '6AXMZBY4', '3421439'), - (512, 560, 'not_attending', '2021-01-21 16:43:41', '2025-12-17 19:47:49', '6AXMZBY4', '3421715'), - (512, 561, 'attending', '2021-01-23 18:44:58', '2025-12-17 19:47:49', '6AXMZBY4', '3421916'), - (512, 563, 'attending', '2021-01-25 19:23:31', '2025-12-17 19:47:49', '6AXMZBY4', '3425913'), - (512, 564, 'attending', '2021-01-25 01:41:11', '2025-12-17 19:47:49', '6AXMZBY4', '3426074'), - (512, 565, 'not_attending', '2021-01-24 05:29:50', '2025-12-17 19:47:49', '6AXMZBY4', '3426083'), - (512, 566, 'not_attending', '2021-01-24 05:30:17', '2025-12-17 19:47:49', '6AXMZBY4', '3427928'), - (512, 567, 'not_attending', '2021-01-27 23:46:57', '2025-12-17 19:47:50', '6AXMZBY4', '3428895'), - (512, 568, 'attending', '2021-01-24 22:39:18', '2025-12-17 19:47:50', '6AXMZBY4', '3430267'), - (512, 569, 'attending', '2021-01-25 19:49:29', '2025-12-17 19:47:49', '6AXMZBY4', '3432673'), - (512, 570, 'not_attending', '2021-01-27 21:11:36', '2025-12-17 19:47:50', '6AXMZBY4', '3435538'), - (512, 571, 'not_attending', '2021-02-01 22:40:24', '2025-12-17 19:47:50', '6AXMZBY4', '3435539'), - (512, 572, 'not_attending', '2021-01-26 05:23:15', '2025-12-17 19:47:50', '6AXMZBY4', '3435540'), - (512, 573, 'not_attending', '2021-02-01 22:41:03', '2025-12-17 19:47:50', '6AXMZBY4', '3435542'), - (512, 574, 'not_attending', '2021-02-01 22:41:09', '2025-12-17 19:47:51', '6AXMZBY4', '3435543'), - (512, 575, 'attending', '2021-01-27 23:45:28', '2025-12-17 19:47:50', '6AXMZBY4', '3437492'), - (512, 576, 'attending', '2021-01-27 22:34:39', '2025-12-17 19:47:50', '6AXMZBY4', '3438748'), - (512, 578, 'maybe', '2021-01-28 20:57:37', '2025-12-17 19:47:50', '6AXMZBY4', '3440043'), - (512, 579, 'attending', '2021-01-28 20:57:46', '2025-12-17 19:47:50', '6AXMZBY4', '3440978'), - (512, 580, 'maybe', '2021-01-30 21:12:14', '2025-12-17 19:47:50', '6AXMZBY4', '3444240'), - (512, 581, 'not_attending', '2021-02-01 00:01:13', '2025-12-17 19:47:50', '6AXMZBY4', '3445029'), - (512, 582, 'maybe', '2021-02-01 00:01:03', '2025-12-17 19:47:50', '6AXMZBY4', '3445769'), - (512, 583, 'not_attending', '2021-02-01 22:41:22', '2025-12-17 19:47:50', '6AXMZBY4', '3449144'), - (512, 584, 'not_attending', '2021-02-01 00:01:32', '2025-12-17 19:47:50', '6AXMZBY4', '3449466'), - (512, 585, 'not_attending', '2021-02-01 22:40:12', '2025-12-17 19:47:50', '6AXMZBY4', '3449468'), - (512, 586, 'not_attending', '2021-02-01 22:40:20', '2025-12-17 19:47:50', '6AXMZBY4', '3449469'), - (512, 587, 'not_attending', '2021-02-01 22:40:28', '2025-12-17 19:47:50', '6AXMZBY4', '3449470'), - (512, 588, 'not_attending', '2021-02-01 22:40:31', '2025-12-17 19:47:50', '6AXMZBY4', '3449471'), - (512, 589, 'not_attending', '2021-02-01 22:40:33', '2025-12-17 19:47:50', '6AXMZBY4', '3449473'), - (512, 590, 'not_attending', '2021-02-03 00:05:19', '2025-12-17 19:47:50', '6AXMZBY4', '3459150'), - (512, 591, 'not_attending', '2021-02-06 00:35:09', '2025-12-17 19:47:50', '6AXMZBY4', '3465880'), - (512, 592, 'not_attending', '2021-02-08 18:37:17', '2025-12-17 19:47:50', '6AXMZBY4', '3467757'), - (512, 593, 'not_attending', '2021-02-08 18:37:11', '2025-12-17 19:47:50', '6AXMZBY4', '3467758'), - (512, 594, 'not_attending', '2021-02-08 18:37:26', '2025-12-17 19:47:51', '6AXMZBY4', '3467759'), - (512, 595, 'not_attending', '2021-02-08 18:37:45', '2025-12-17 19:47:51', '6AXMZBY4', '3467761'), - (512, 596, 'not_attending', '2021-02-08 18:37:50', '2025-12-17 19:47:51', '6AXMZBY4', '3467762'), - (512, 597, 'not_attending', '2021-02-08 18:37:54', '2025-12-17 19:47:51', '6AXMZBY4', '3467764'), - (512, 598, 'not_attending', '2021-02-06 04:46:45', '2025-12-17 19:47:50', '6AXMZBY4', '3468003'), - (512, 599, 'not_attending', '2021-02-08 18:36:15', '2025-12-17 19:47:50', '6AXMZBY4', '3468117'), - (512, 600, 'not_attending', '2021-02-21 17:27:40', '2025-12-17 19:47:50', '6AXMZBY4', '3468125'), - (512, 601, 'not_attending', '2021-02-08 18:36:23', '2025-12-17 19:47:50', '6AXMZBY4', '3468131'), - (512, 602, 'attending', '2021-02-08 18:36:02', '2025-12-17 19:47:50', '6AXMZBY4', '3470303'), - (512, 603, 'attending', '2021-02-08 18:36:34', '2025-12-17 19:47:50', '6AXMZBY4', '3470304'), - (512, 604, 'attending', '2021-02-08 18:36:36', '2025-12-17 19:47:50', '6AXMZBY4', '3470305'), - (512, 605, 'attending', '2021-02-10 18:20:20', '2025-12-17 19:47:50', '6AXMZBY4', '3470991'), - (512, 606, 'not_attending', '2021-02-08 18:35:54', '2025-12-17 19:47:50', '6AXMZBY4', '3470998'), - (512, 607, 'maybe', '2021-02-20 00:41:21', '2025-12-17 19:47:50', '6AXMZBY4', '3471882'), - (512, 608, 'not_attending', '2021-02-10 05:33:36', '2025-12-17 19:47:50', '6AXMZBY4', '3475332'), - (512, 609, 'attending', '2021-02-10 18:20:10', '2025-12-17 19:47:50', '6AXMZBY4', '3480916'), - (512, 610, 'not_attending', '2021-02-11 05:30:48', '2025-12-17 19:47:50', '6AXMZBY4', '3482159'), - (512, 611, 'not_attending', '2021-02-13 02:41:09', '2025-12-17 19:47:50', '6AXMZBY4', '3482659'), - (512, 612, 'not_attending', '2021-02-15 05:27:56', '2025-12-17 19:47:50', '6AXMZBY4', '3490040'), - (512, 613, 'not_attending', '2021-02-15 05:28:39', '2025-12-17 19:47:50', '6AXMZBY4', '3490041'), - (512, 614, 'not_attending', '2021-02-15 05:28:50', '2025-12-17 19:47:51', '6AXMZBY4', '3490042'), - (512, 615, 'not_attending', '2021-02-15 05:28:06', '2025-12-17 19:47:50', '6AXMZBY4', '3490045'), - (512, 616, 'attending', '2021-02-18 05:15:34', '2025-12-17 19:47:50', '6AXMZBY4', '3493478'), - (512, 617, 'not_attending', '2021-02-21 17:28:28', '2025-12-17 19:47:50', '6AXMZBY4', '3499119'), - (512, 618, 'maybe', '2021-02-19 23:56:53', '2025-12-17 19:47:50', '6AXMZBY4', '3503991'), - (512, 620, 'not_attending', '2021-02-23 20:27:29', '2025-12-17 19:47:50', '6AXMZBY4', '3513703'), - (512, 621, 'attending', '2021-02-28 05:02:59', '2025-12-17 19:47:51', '6AXMZBY4', '3517815'), - (512, 622, 'attending', '2021-02-28 05:03:00', '2025-12-17 19:47:51', '6AXMZBY4', '3517816'), - (512, 623, 'not_attending', '2021-02-27 01:04:17', '2025-12-17 19:47:51', '6AXMZBY4', '3523941'), - (512, 624, 'not_attending', '2021-02-27 05:05:16', '2025-12-17 19:47:50', '6AXMZBY4', '3528556'), - (512, 625, 'not_attending', '2021-03-01 03:22:04', '2025-12-17 19:47:51', '6AXMZBY4', '3533296'), - (512, 626, 'not_attending', '2021-03-01 03:21:51', '2025-12-17 19:47:51', '6AXMZBY4', '3533298'), - (512, 627, 'not_attending', '2021-03-06 01:38:34', '2025-12-17 19:47:51', '6AXMZBY4', '3533303'), - (512, 628, 'not_attending', '2021-03-01 18:40:00', '2025-12-17 19:47:51', '6AXMZBY4', '3533305'), - (512, 629, 'maybe', '2021-03-06 01:38:58', '2025-12-17 19:47:51', '6AXMZBY4', '3533307'), - (512, 630, 'not_attending', '2021-03-01 03:22:06', '2025-12-17 19:47:51', '6AXMZBY4', '3533425'), - (512, 631, 'maybe', '2021-03-01 03:21:29', '2025-12-17 19:47:51', '6AXMZBY4', '3533850'), - (512, 632, 'not_attending', '2021-03-07 08:33:30', '2025-12-17 19:47:51', '6AXMZBY4', '3533853'), - (512, 633, 'not_attending', '2021-03-01 18:40:27', '2025-12-17 19:47:44', '6AXMZBY4', '3534717'), - (512, 634, 'not_attending', '2021-03-01 18:40:35', '2025-12-17 19:47:44', '6AXMZBY4', '3534718'), - (512, 635, 'not_attending', '2021-03-01 18:40:45', '2025-12-17 19:47:44', '6AXMZBY4', '3534719'), - (512, 636, 'not_attending', '2021-04-05 11:21:50', '2025-12-17 19:47:45', '6AXMZBY4', '3534720'), - (512, 637, 'not_attending', '2021-03-01 18:37:29', '2025-12-17 19:47:51', '6AXMZBY4', '3536411'), - (512, 638, 'maybe', '2021-03-03 04:18:20', '2025-12-17 19:47:44', '6AXMZBY4', '3536632'), - (512, 639, 'maybe', '2021-03-03 04:18:01', '2025-12-17 19:47:51', '6AXMZBY4', '3536656'), - (512, 640, 'not_attending', '2021-03-03 04:18:52', '2025-12-17 19:47:51', '6AXMZBY4', '3538866'), - (512, 641, 'attending', '2021-04-02 12:19:46', '2025-12-17 19:47:44', '6AXMZBY4', '3539916'), - (512, 642, 'attending', '2021-04-05 11:21:59', '2025-12-17 19:47:44', '6AXMZBY4', '3539917'), - (512, 643, 'attending', '2021-04-05 11:21:58', '2025-12-17 19:47:45', '6AXMZBY4', '3539918'), - (512, 644, 'attending', '2021-04-05 11:22:02', '2025-12-17 19:47:45', '6AXMZBY4', '3539919'), - (512, 645, 'attending', '2021-04-05 11:22:57', '2025-12-17 19:47:46', '6AXMZBY4', '3539920'), - (512, 646, 'attending', '2021-05-14 14:03:56', '2025-12-17 19:47:46', '6AXMZBY4', '3539921'), - (512, 647, 'maybe', '2021-05-21 12:35:10', '2025-12-17 19:47:46', '6AXMZBY4', '3539922'), - (512, 648, 'attending', '2021-05-29 16:14:37', '2025-12-17 19:47:47', '6AXMZBY4', '3539923'), - (512, 649, 'attending', '2021-03-03 16:32:52', '2025-12-17 19:47:51', '6AXMZBY4', '3539927'), - (512, 650, 'maybe', '2021-03-27 14:57:20', '2025-12-17 19:47:44', '6AXMZBY4', '3539928'), - (512, 651, 'not_attending', '2021-03-07 08:33:42', '2025-12-17 19:47:51', '6AXMZBY4', '3541045'), - (512, 652, 'not_attending', '2021-03-06 01:38:52', '2025-12-17 19:47:51', '6AXMZBY4', '3544466'), - (512, 654, 'not_attending', '2021-03-07 08:33:24', '2025-12-17 19:47:51', '6AXMZBY4', '3546990'), - (512, 655, 'attending', '2021-03-07 08:34:05', '2025-12-17 19:47:51', '6AXMZBY4', '3547129'), - (512, 656, 'not_attending', '2021-03-07 08:34:10', '2025-12-17 19:47:51', '6AXMZBY4', '3547130'), - (512, 657, 'attending', '2021-04-13 09:09:13', '2025-12-17 19:47:45', '6AXMZBY4', '3547132'), - (512, 658, 'attending', '2021-06-07 09:52:37', '2025-12-17 19:47:47', '6AXMZBY4', '3547134'), - (512, 659, 'attending', '2021-04-05 11:21:55', '2025-12-17 19:47:44', '6AXMZBY4', '3547135'), - (512, 661, 'attending', '2021-04-03 20:33:00', '2025-12-17 19:47:44', '6AXMZBY4', '3547137'), - (512, 662, 'attending', '2021-04-05 11:22:03', '2025-12-17 19:47:45', '6AXMZBY4', '3547138'), - (512, 663, 'attending', '2021-04-05 11:22:55', '2025-12-17 19:47:46', '6AXMZBY4', '3547140'), - (512, 668, 'attending', '2021-05-12 03:43:15', '2025-12-17 19:47:46', '6AXMZBY4', '3547146'), - (512, 669, 'attending', '2021-06-22 10:48:57', '2025-12-17 19:47:38', '6AXMZBY4', '3547147'), - (512, 670, 'attending', '2021-06-07 09:53:06', '2025-12-17 19:47:48', '6AXMZBY4', '3547148'), - (512, 672, 'not_attending', '2021-05-21 12:35:04', '2025-12-17 19:47:46', '6AXMZBY4', '3547150'), - (512, 673, 'attending', '2021-06-30 09:52:59', '2025-12-17 19:47:38', '6AXMZBY4', '3547151'), - (512, 676, 'maybe', '2021-07-24 15:01:06', '2025-12-17 19:47:40', '6AXMZBY4', '3547154'), - (512, 677, 'attending', '2021-05-12 03:44:28', '2025-12-17 19:47:47', '6AXMZBY4', '3547155'), - (512, 678, 'not_attending', '2021-03-07 08:33:51', '2025-12-17 19:47:51', '6AXMZBY4', '3547158'), - (512, 680, 'maybe', '2021-03-07 08:33:08', '2025-12-17 19:47:51', '6AXMZBY4', '3547700'), - (512, 683, 'not_attending', '2021-03-12 11:49:58', '2025-12-17 19:47:51', '6AXMZBY4', '3548818'), - (512, 684, 'maybe', '2021-03-08 13:45:21', '2025-12-17 19:47:51', '6AXMZBY4', '3549257'), - (512, 685, 'maybe', '2021-04-05 11:21:33', '2025-12-17 19:47:44', '6AXMZBY4', '3551564'), - (512, 686, 'maybe', '2021-03-12 13:39:57', '2025-12-17 19:47:51', '6AXMZBY4', '3553333'), - (512, 688, 'not_attending', '2021-03-15 05:24:09', '2025-12-17 19:47:51', '6AXMZBY4', '3553729'), - (512, 689, 'not_attending', '2021-03-15 05:25:38', '2025-12-17 19:47:44', '6AXMZBY4', '3555564'), - (512, 690, 'maybe', '2021-03-15 05:25:33', '2025-12-17 19:47:43', '6AXMZBY4', '3559954'), - (512, 691, 'maybe', '2021-03-20 00:11:20', '2025-12-17 19:47:45', '6AXMZBY4', '3561928'), - (512, 693, 'maybe', '2021-03-15 05:23:54', '2025-12-17 19:47:51', '6AXMZBY4', '3565907'), - (512, 695, 'maybe', '2021-03-18 09:56:31', '2025-12-17 19:47:51', '6AXMZBY4', '3567535'), - (512, 696, 'not_attending', '2021-03-15 05:24:46', '2025-12-17 19:47:51', '6AXMZBY4', '3567536'), - (512, 698, 'not_attending', '2021-03-15 15:37:41', '2025-12-17 19:47:44', '6AXMZBY4', '3571867'), - (512, 703, 'attending', '2021-04-11 22:24:44', '2025-12-17 19:47:44', '6AXMZBY4', '3578388'), - (512, 705, 'maybe', '2021-03-28 12:28:32', '2025-12-17 19:47:44', '6AXMZBY4', '3581895'), - (512, 706, 'maybe', '2021-03-20 00:11:05', '2025-12-17 19:47:45', '6AXMZBY4', '3582734'), - (512, 707, 'attending', '2021-03-30 09:59:19', '2025-12-17 19:47:46', '6AXMZBY4', '3583262'), - (512, 715, 'not_attending', '2021-03-31 21:50:50', '2025-12-17 19:47:44', '6AXMZBY4', '3604146'), - (512, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXMZBY4', '3619523'), - (512, 718, 'maybe', '2021-03-27 14:57:16', '2025-12-17 19:47:44', '6AXMZBY4', '3626844'), - (512, 719, 'maybe', '2021-04-08 10:03:26', '2025-12-17 19:47:44', '6AXMZBY4', '3635405'), - (512, 724, 'attending', '2021-05-09 03:54:29', '2025-12-17 19:47:46', '6AXMZBY4', '3661369'), - (512, 725, 'attending', '2021-05-23 01:02:28', '2025-12-17 19:47:47', '6AXMZBY4', '3661372'), - (512, 728, 'maybe', '2021-04-05 11:21:37', '2025-12-17 19:47:44', '6AXMZBY4', '3668073'), - (512, 729, 'maybe', '2021-04-05 11:22:46', '2025-12-17 19:47:46', '6AXMZBY4', '3668075'), - (512, 730, 'maybe', '2021-04-05 11:22:53', '2025-12-17 19:47:46', '6AXMZBY4', '3668076'), - (512, 731, 'maybe', '2021-04-05 11:20:47', '2025-12-17 19:47:44', '6AXMZBY4', '3674262'), - (512, 732, 'maybe', '2021-04-05 11:22:32', '2025-12-17 19:47:45', '6AXMZBY4', '3674268'), - (512, 734, 'maybe', '2021-04-04 20:35:10', '2025-12-17 19:47:44', '6AXMZBY4', '3676806'), - (512, 735, 'maybe', '2021-04-05 09:58:03', '2025-12-17 19:47:46', '6AXMZBY4', '3677402'), - (512, 736, 'maybe', '2021-04-08 10:03:57', '2025-12-17 19:47:44', '6AXMZBY4', '3677701'), - (512, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXMZBY4', '3730212'), - (512, 777, 'attending', '2021-04-29 10:18:35', '2025-12-17 19:47:46', '6AXMZBY4', '3746248'), - (512, 779, 'maybe', '2021-05-03 10:06:41', '2025-12-17 19:47:46', '6AXMZBY4', '3757118'), - (512, 790, 'not_attending', '2021-05-08 09:00:37', '2025-12-17 19:47:46', '6AXMZBY4', '3789923'), - (512, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXMZBY4', '3793156'), - (512, 800, 'not_attending', '2021-05-12 15:36:17', '2025-12-17 19:47:46', '6AXMZBY4', '3800908'), - (512, 805, 'attending', '2021-06-07 09:52:44', '2025-12-17 19:47:47', '6AXMZBY4', '3804777'), - (512, 816, 'maybe', '2021-05-19 00:31:01', '2025-12-17 19:47:46', '6AXMZBY4', '3826524'), - (512, 823, 'maybe', '2021-06-05 06:07:15', '2025-12-17 19:47:48', '6AXMZBY4', '3974109'), - (512, 826, 'maybe', '2021-06-05 06:06:55', '2025-12-17 19:47:48', '6AXMZBY4', '3975310'), - (512, 827, 'attending', '2021-06-05 06:05:34', '2025-12-17 19:47:47', '6AXMZBY4', '3975311'), - (512, 828, 'attending', '2021-06-07 09:52:40', '2025-12-17 19:47:47', '6AXMZBY4', '3975312'), - (512, 834, 'maybe', '2021-06-07 09:52:29', '2025-12-17 19:47:47', '6AXMZBY4', '3990439'), - (512, 837, 'maybe', '2021-06-07 09:53:01', '2025-12-17 19:47:48', '6AXMZBY4', '3992545'), - (512, 838, 'maybe', '2021-06-07 09:52:17', '2025-12-17 19:47:47', '6AXMZBY4', '3994992'), - (512, 844, 'maybe', '2021-06-22 10:48:44', '2025-12-17 19:47:38', '6AXMZBY4', '4014338'), - (512, 866, 'maybe', '2021-06-16 14:43:48', '2025-12-17 19:47:38', '6AXMZBY4', '4020424'), - (512, 867, 'attending', '2021-06-22 10:48:54', '2025-12-17 19:47:38', '6AXMZBY4', '4021848'), - (512, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXMZBY4', '4136744'), - (512, 870, 'attending', '2021-06-30 09:52:54', '2025-12-17 19:47:39', '6AXMZBY4', '4136937'), - (512, 871, 'attending', '2021-07-10 12:35:13', '2025-12-17 19:47:39', '6AXMZBY4', '4136938'), - (512, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXMZBY4', '4136947'), - (512, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXMZBY4', '4210314'), - (512, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXMZBY4', '4225444'), - (512, 890, 'not_attending', '2021-06-27 08:52:56', '2025-12-17 19:47:38', '6AXMZBY4', '4228666'), - (512, 897, 'not_attending', '2021-06-27 23:26:06', '2025-12-17 19:47:38', '6AXMZBY4', '4232132'), - (512, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXMZBY4', '4239259'), - (512, 900, 'attending', '2021-07-22 23:54:25', '2025-12-17 19:47:40', '6AXMZBY4', '4240316'), - (512, 901, 'maybe', '2021-07-31 18:21:05', '2025-12-17 19:47:40', '6AXMZBY4', '4240317'), - (512, 902, 'attending', '2021-08-07 11:16:37', '2025-12-17 19:47:41', '6AXMZBY4', '4240318'), - (512, 903, 'attending', '2021-08-14 18:22:42', '2025-12-17 19:47:42', '6AXMZBY4', '4240320'), - (512, 904, 'attending', '2021-07-12 23:07:05', '2025-12-17 19:47:39', '6AXMZBY4', '4241594'), - (512, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXMZBY4', '4250163'), - (512, 918, 'attending', '2021-07-12 23:07:02', '2025-12-17 19:47:39', '6AXMZBY4', '4274486'), - (512, 919, 'attending', '2021-07-14 09:51:25', '2025-12-17 19:47:39', '6AXMZBY4', '4275957'), - (512, 920, 'attending', '2021-07-16 13:14:55', '2025-12-17 19:47:40', '6AXMZBY4', '4277819'), - (512, 926, 'maybe', '2021-08-14 18:22:19', '2025-12-17 19:47:42', '6AXMZBY4', '4297211'), - (512, 927, 'maybe', '2021-07-29 07:04:17', '2025-12-17 19:47:40', '6AXMZBY4', '4297216'), - (512, 932, 'maybe', '2021-08-02 00:41:38', '2025-12-17 19:47:42', '6AXMZBY4', '4301664'), - (512, 933, 'attending', '2021-07-27 10:07:56', '2025-12-17 19:47:40', '6AXMZBY4', '4301723'), - (512, 934, 'maybe', '2021-08-02 00:41:23', '2025-12-17 19:47:40', '6AXMZBY4', '4302093'), - (512, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXMZBY4', '4304151'), - (512, 940, 'not_attending', '2021-07-27 06:54:31', '2025-12-17 19:47:40', '6AXMZBY4', '4309049'), - (512, 961, 'maybe', '2021-08-08 10:02:47', '2025-12-17 19:47:42', '6AXMZBY4', '4345519'), - (512, 962, 'attending', '2021-08-08 23:59:01', '2025-12-17 19:47:41', '6AXMZBY4', '4346305'), - (512, 971, 'not_attending', '2021-09-08 11:07:18', '2025-12-17 19:47:43', '6AXMZBY4', '4356801'), - (512, 972, 'maybe', '2021-08-14 18:21:53', '2025-12-17 19:47:42', '6AXMZBY4', '4358025'), - (512, 973, 'attending', '2021-08-16 01:01:32', '2025-12-17 19:47:42', '6AXMZBY4', '4366186'), - (512, 974, 'attending', '2021-08-28 22:42:02', '2025-12-17 19:47:42', '6AXMZBY4', '4366187'), - (512, 987, 'maybe', '2021-08-28 00:07:10', '2025-12-17 19:47:43', '6AXMZBY4', '4402634'), - (512, 988, 'not_attending', '2021-08-24 05:42:59', '2025-12-17 19:47:42', '6AXMZBY4', '4402823'), - (512, 990, 'attending', '2021-09-02 10:05:16', '2025-12-17 19:47:43', '6AXMZBY4', '4420735'), - (512, 991, 'attending', '2021-09-11 22:34:24', '2025-12-17 19:47:43', '6AXMZBY4', '4420738'), - (512, 992, 'not_attending', '2021-09-18 21:39:43', '2025-12-17 19:47:34', '6AXMZBY4', '4420739'), - (512, 993, 'attending', '2021-09-25 18:24:09', '2025-12-17 19:47:34', '6AXMZBY4', '4420741'), - (512, 994, 'attending', '2021-10-02 04:33:01', '2025-12-17 19:47:34', '6AXMZBY4', '4420742'), - (512, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXMZBY4', '4420744'), - (512, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXMZBY4', '4420747'), - (512, 997, 'attending', '2021-10-23 12:53:52', '2025-12-17 19:47:35', '6AXMZBY4', '4420748'), - (512, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXMZBY4', '4420749'), - (512, 999, 'not_attending', '2021-08-31 15:57:46', '2025-12-17 19:47:43', '6AXMZBY4', '4421150'), - (512, 1000, 'attending', '2021-08-29 23:02:26', '2025-12-17 19:47:43', '6AXMZBY4', '4424456'), - (512, 1023, 'not_attending', '2021-09-10 15:02:09', '2025-12-17 19:47:43', '6AXMZBY4', '4461883'), - (512, 1064, 'not_attending', '2021-09-21 15:31:04', '2025-12-17 19:47:34', '6AXMZBY4', '4499526'), - (512, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXMZBY4', '4508342'), - (512, 1074, 'maybe', '2021-09-29 01:31:01', '2025-12-17 19:47:34', '6AXMZBY4', '4528953'), - (512, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXMZBY4', '4568602'), - (512, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AXMZBY4', '4572153'), - (512, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AXMZBY4', '4585962'), - (512, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '6AXMZBY4', '4596356'), - (512, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AXMZBY4', '4598860'), - (512, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AXMZBY4', '4598861'), - (512, 1099, 'attending', '2021-10-31 08:45:30', '2025-12-17 19:47:36', '6AXMZBY4', '4602797'), - (512, 1114, 'not_attending', '2021-11-13 10:58:58', '2025-12-17 19:47:36', '6AXMZBY4', '4637896'), - (512, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AXMZBY4', '4642994'), - (512, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AXMZBY4', '4642995'), - (512, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AXMZBY4', '4642996'), - (512, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AXMZBY4', '4642997'), - (512, 1126, 'attending', '2021-12-08 11:13:30', '2025-12-17 19:47:38', '6AXMZBY4', '4645687'), - (512, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '6AXMZBY4', '4645698'), - (512, 1128, 'not_attending', '2021-11-21 00:13:03', '2025-12-17 19:47:37', '6AXMZBY4', '4645704'), - (512, 1129, 'attending', '2021-11-25 10:48:36', '2025-12-17 19:47:37', '6AXMZBY4', '4645705'), - (512, 1130, 'attending', '2021-12-04 21:00:18', '2025-12-17 19:47:37', '6AXMZBY4', '4658824'), - (512, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '6AXMZBY4', '4668385'), - (512, 1143, 'maybe', '2021-12-02 00:23:30', '2025-12-17 19:47:37', '6AXMZBY4', '4683667'), - (512, 1149, 'not_attending', '2021-12-08 11:13:12', '2025-12-17 19:47:38', '6AXMZBY4', '4694407'), - (512, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '6AXMZBY4', '4736497'), - (512, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '6AXMZBY4', '4736499'), - (512, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '6AXMZBY4', '4736500'), - (512, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '6AXMZBY4', '4736503'), - (512, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '6AXMZBY4', '4736504'), - (512, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '6AXMZBY4', '4746789'), - (512, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '6AXMZBY4', '4753929'), - (512, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '6AXMZBY4', '5038850'), - (512, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '6AXMZBY4', '5045826'), - (512, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '6AXMZBY4', '5132533'), - (512, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '6AXMZBY4', '5186582'), - (512, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '6AXMZBY4', '5186583'), - (512, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '6AXMZBY4', '5186585'), - (512, 1281, 'attending', '2022-04-07 14:31:16', '2025-12-17 19:47:27', '6AXMZBY4', '5190437'), - (512, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '6AXMZBY4', '5195095'), - (512, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '6AXMZBY4', '5215989'), - (512, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '6AXMZBY4', '5223686'), - (512, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '6AXMZBY4', '5227432'), - (512, 1319, 'attending', '2022-04-24 21:42:42', '2025-12-17 19:47:27', '6AXMZBY4', '5238353'), - (512, 1320, 'not_attending', '2022-04-24 23:09:43', '2025-12-17 19:47:27', '6AXMZBY4', '5238354'), - (512, 1337, 'maybe', '2022-04-19 22:58:30', '2025-12-17 19:47:27', '6AXMZBY4', '5245036'), - (512, 1346, 'attending', '2022-04-23 21:26:49', '2025-12-17 19:47:27', '6AXMZBY4', '5247467'), - (512, 1354, 'not_attending', '2022-04-23 21:25:40', '2025-12-17 19:47:27', '6AXMZBY4', '5252569'), - (512, 1362, 'attending', '2022-04-30 22:02:01', '2025-12-17 19:47:28', '6AXMZBY4', '5260800'), - (512, 1370, 'not_attending', '2022-04-29 21:41:14', '2025-12-17 19:47:28', '6AXMZBY4', '5263775'), - (512, 1374, 'attending', '2022-05-04 08:48:47', '2025-12-17 19:47:28', '6AXMZBY4', '5269930'), - (512, 1378, 'attending', '2022-05-10 08:57:06', '2025-12-17 19:47:28', '6AXMZBY4', '5271448'), - (512, 1379, 'attending', '2022-05-19 22:39:09', '2025-12-17 19:47:29', '6AXMZBY4', '5271449'), - (512, 1381, 'attending', '2022-05-02 02:31:07', '2025-12-17 19:47:28', '6AXMZBY4', '5271453'), - (512, 1383, 'maybe', '2022-05-04 08:48:03', '2025-12-17 19:47:28', '6AXMZBY4', '5276469'), - (512, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '6AXMZBY4', '5278159'), - (512, 1387, 'maybe', '2022-05-06 09:08:23', '2025-12-17 19:47:28', '6AXMZBY4', '5278173'), - (512, 1392, 'not_attending', '2022-05-10 21:55:49', '2025-12-17 19:47:28', '6AXMZBY4', '5279532'), - (512, 1407, 'attending', '2022-06-04 14:30:03', '2025-12-17 19:47:30', '6AXMZBY4', '5363695'), - (512, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '6AXMZBY4', '5365960'), - (512, 1415, 'maybe', '2022-06-01 19:21:32', '2025-12-17 19:47:30', '6AXMZBY4', '5368973'), - (512, 1419, 'maybe', '2022-06-08 08:53:13', '2025-12-17 19:47:30', '6AXMZBY4', '5373081'), - (512, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '6AXMZBY4', '5378247'), - (512, 1431, 'attending', '2022-06-09 08:50:46', '2025-12-17 19:47:30', '6AXMZBY4', '5389605'), - (512, 1442, 'attending', '2022-06-15 09:13:21', '2025-12-17 19:47:17', '6AXMZBY4', '5397265'), - (512, 1451, 'maybe', '2022-06-10 02:59:50', '2025-12-17 19:47:17', '6AXMZBY4', '5403967'), - (512, 1455, 'maybe', '2022-06-10 02:59:37', '2025-12-17 19:47:31', '6AXMZBY4', '5404772'), - (512, 1458, 'not_attending', '2022-06-14 08:12:45', '2025-12-17 19:47:17', '6AXMZBY4', '5404786'), - (512, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '6AXMZBY4', '5405203'), - (512, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '6AXMZBY4', '5411699'), - (512, 1481, 'attending', '2022-06-18 22:18:32', '2025-12-17 19:47:17', '6AXMZBY4', '5412237'), - (512, 1482, 'not_attending', '2022-06-25 18:36:36', '2025-12-17 19:47:19', '6AXMZBY4', '5412550'), - (512, 1483, 'maybe', '2022-06-23 10:31:11', '2025-12-17 19:47:17', '6AXMZBY4', '5414556'), - (512, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '6AXMZBY4', '5415046'), - (512, 1490, 'attending', '2022-07-01 23:12:19', '2025-12-17 19:47:19', '6AXMZBY4', '5420156'), - (512, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '6AXMZBY4', '5422086'), - (512, 1498, 'attending', '2022-06-28 08:50:56', '2025-12-17 19:47:19', '6AXMZBY4', '5422406'), - (512, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '6AXMZBY4', '5424565'), - (512, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '6AXMZBY4', '5426882'), - (512, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '6AXMZBY4', '5427083'), - (512, 1511, 'attending', '2022-07-07 01:50:28', '2025-12-17 19:47:19', '6AXMZBY4', '5437733'), - (512, 1513, 'attending', '2022-07-14 10:27:53', '2025-12-17 19:47:19', '6AXMZBY4', '5441125'), - (512, 1514, 'attending', '2022-07-14 10:27:48', '2025-12-17 19:47:20', '6AXMZBY4', '5441126'), - (512, 1515, 'attending', '2022-08-05 08:55:20', '2025-12-17 19:47:21', '6AXMZBY4', '5441128'), - (512, 1516, 'not_attending', '2022-08-19 03:17:41', '2025-12-17 19:47:23', '6AXMZBY4', '5441129'), - (512, 1517, 'attending', '2022-08-22 10:14:55', '2025-12-17 19:47:23', '6AXMZBY4', '5441130'), - (512, 1518, 'attending', '2022-08-22 10:14:52', '2025-12-17 19:47:24', '6AXMZBY4', '5441131'), - (512, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '6AXMZBY4', '5441132'), - (512, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '6AXMZBY4', '5446643'), - (512, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '6AXMZBY4', '5453325'), - (512, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '6AXMZBY4', '5454516'), - (512, 1544, 'attending', '2022-09-15 08:03:22', '2025-12-17 19:47:11', '6AXMZBY4', '5454517'), - (512, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '6AXMZBY4', '5454605'), - (512, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '6AXMZBY4', '5455037'), - (512, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '6AXMZBY4', '5461278'), - (512, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '6AXMZBY4', '5469480'), - (512, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '6AXMZBY4', '5471073'), - (512, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '6AXMZBY4', '5474663'), - (512, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '6AXMZBY4', '5482022'), - (512, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '6AXMZBY4', '5482793'), - (512, 1578, 'attending', '2022-08-02 03:17:53', '2025-12-17 19:47:21', '6AXMZBY4', '5483073'), - (512, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '6AXMZBY4', '5488912'), - (512, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '6AXMZBY4', '5492192'), - (512, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '6AXMZBY4', '5493139'), - (512, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '6AXMZBY4', '5493200'), - (512, 1600, 'maybe', '2022-08-22 10:14:37', '2025-12-17 19:47:24', '6AXMZBY4', '5496569'), - (512, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '6AXMZBY4', '5502188'), - (512, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '6AXMZBY4', '5505059'), - (512, 1609, 'not_attending', '2022-08-22 10:14:23', '2025-12-17 19:47:23', '6AXMZBY4', '5506590'), - (512, 1610, 'maybe', '2022-08-22 10:13:49', '2025-12-17 19:47:23', '6AXMZBY4', '5506595'), - (512, 1615, 'maybe', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '6AXMZBY4', '5509055'), - (512, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '6AXMZBY4', '5512862'), - (512, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '6AXMZBY4', '5513985'), - (512, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '6AXMZBY4', '5519981'), - (512, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '6AXMZBY4', '5522550'), - (512, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '6AXMZBY4', '5534683'), - (512, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '6AXMZBY4', '5537735'), - (512, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '6AXMZBY4', '5540859'), - (512, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '6AXMZBY4', '5546619'), - (512, 1647, 'maybe', '2022-09-15 08:03:30', '2025-12-17 19:47:11', '6AXMZBY4', '5548660'), - (512, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '6AXMZBY4', '5555245'), - (512, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '6AXMZBY4', '5557747'), - (512, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '6AXMZBY4', '5560255'), - (512, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '6AXMZBY4', '5562906'), - (512, 1667, 'attending', '2022-09-24 08:54:23', '2025-12-17 19:47:11', '6AXMZBY4', '5563221'), - (512, 1668, 'attending', '2022-10-01 17:39:23', '2025-12-17 19:47:12', '6AXMZBY4', '5563222'), - (512, 1673, 'attending', '2022-09-20 08:55:41', '2025-12-17 19:47:11', '6AXMZBY4', '5592454'), - (512, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '6AXMZBY4', '5600604'), - (512, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '6AXMZBY4', '5605544'), - (512, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '6AXMZBY4', '5606737'), - (512, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', '6AXMZBY4', '5630907'), - (512, 1719, 'attending', '2022-10-05 22:42:07', '2025-12-17 19:47:12', '6AXMZBY4', '5630958'), - (512, 1720, 'attending', '2022-10-12 14:31:21', '2025-12-17 19:47:12', '6AXMZBY4', '5630959'), - (512, 1721, 'not_attending', '2022-10-21 03:01:26', '2025-12-17 19:47:13', '6AXMZBY4', '5630960'), - (512, 1722, 'not_attending', '2022-10-24 09:04:28', '2025-12-17 19:47:14', '6AXMZBY4', '5630961'), - (512, 1723, 'attending', '2022-10-30 16:30:59', '2025-12-17 19:47:15', '6AXMZBY4', '5630962'), - (512, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '6AXMZBY4', '5630966'), - (512, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '6AXMZBY4', '5630967'), - (512, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '6AXMZBY4', '5630968'), - (512, 1727, 'maybe', '2022-12-02 02:42:07', '2025-12-17 19:47:16', '6AXMZBY4', '5630969'), - (512, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '6AXMZBY4', '5635406'), - (512, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '6AXMZBY4', '5638765'), - (512, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '6AXMZBY4', '5640097'), - (512, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '6AXMZBY4', '5640843'), - (512, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '6AXMZBY4', '5641521'), - (512, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '6AXMZBY4', '5642818'), - (512, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '6AXMZBY4', '5652395'), - (512, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '6AXMZBY4', '5670445'), - (512, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '6AXMZBY4', '5671637'), - (512, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '6AXMZBY4', '5672329'), - (512, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '6AXMZBY4', '5674057'), - (512, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '6AXMZBY4', '5674060'), - (512, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '6AXMZBY4', '5677461'), - (512, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '6AXMZBY4', '5698046'), - (512, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '6AXMZBY4', '5699760'), - (512, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '6AXMZBY4', '5741601'), - (512, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '6AXMZBY4', '5763458'), - (512, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '6AXMZBY4', '5774172'), - (512, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '6AXMZBY4', '5818247'), - (512, 1834, 'not_attending', '2022-12-07 11:10:50', '2025-12-17 19:47:17', '6AXMZBY4', '5819470'), - (512, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '6AXMZBY4', '5819471'), - (512, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '6AXMZBY4', '5827739'), - (512, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '6AXMZBY4', '5844306'), - (512, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '6AXMZBY4', '5850159'), - (512, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '6AXMZBY4', '5858999'), - (512, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '6AXMZBY4', '5871984'), - (512, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '6AXMZBY4', '5876354'), - (512, 1864, 'attending', '2023-01-21 19:56:37', '2025-12-17 19:47:05', '6AXMZBY4', '5879675'), - (512, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '6AXMZBY4', '5880939'), - (512, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '6AXMZBY4', '5880940'), - (512, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '6AXMZBY4', '5880942'), - (512, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '6AXMZBY4', '5880943'), - (512, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '6AXMZBY4', '5887890'), - (512, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '6AXMZBY4', '5888598'), - (512, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '6AXMZBY4', '5893260'), - (512, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '6AXMZBY4', '5899826'), - (512, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '6AXMZBY4', '5900199'), - (512, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '6AXMZBY4', '5900200'), - (512, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '6AXMZBY4', '5900202'), - (512, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '6AXMZBY4', '5900203'), - (512, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '6AXMZBY4', '5901108'), - (512, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '6AXMZBY4', '5901126'), - (512, 1897, 'not_attending', '2023-02-05 14:37:08', '2025-12-17 19:47:07', '6AXMZBY4', '5901128'), - (512, 1902, 'attending', '2023-02-01 19:48:44', '2025-12-17 19:47:06', '6AXMZBY4', '5902254'), - (512, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '6AXMZBY4', '5909655'), - (512, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '6AXMZBY4', '5910522'), - (512, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '6AXMZBY4', '5910526'), - (512, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '6AXMZBY4', '5910528'), - (512, 1922, 'maybe', '2023-02-16 23:45:17', '2025-12-17 19:47:07', '6AXMZBY4', '5916219'), - (512, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '6AXMZBY4', '5936234'), - (512, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '6AXMZBY4', '5958351'), - (512, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '6AXMZBY4', '5959751'), - (512, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '6AXMZBY4', '5959755'), - (512, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '6AXMZBY4', '5960055'), - (512, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '6AXMZBY4', '5961684'), - (512, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '6AXMZBY4', '5962132'), - (512, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '6AXMZBY4', '5962133'), - (512, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '6AXMZBY4', '5962134'), - (512, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '6AXMZBY4', '5962317'), - (512, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '6AXMZBY4', '5962318'), - (512, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '6AXMZBY4', '5965933'), - (512, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '6AXMZBY4', '5967014'), - (512, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '6AXMZBY4', '5972815'), - (512, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '6AXMZBY4', '5974016'), - (512, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '6AXMZBY4', '5975052'), - (512, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '6AXMZBY4', '5975054'), - (512, 1964, 'attending', '2023-03-08 23:51:20', '2025-12-17 19:47:09', '6AXMZBY4', '5977129'), - (512, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '6AXMZBY4', '5981515'), - (512, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '6AXMZBY4', '5993516'), - (512, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '6AXMZBY4', '5998939'), - (512, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '6AXMZBY4', '6028191'), - (512, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '6AXMZBY4', '6040066'), - (512, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '6AXMZBY4', '6042717'), - (512, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '6AXMZBY4', '6044838'), - (512, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '6AXMZBY4', '6044839'), - (512, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '6AXMZBY4', '6045684'), - (512, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '6AXMZBY4', '6050104'), - (512, 2002, 'attending', '2023-04-28 21:15:08', '2025-12-17 19:47:01', '6AXMZBY4', '6052605'), - (512, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '6AXMZBY4', '6053195'), - (512, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '6AXMZBY4', '6053198'), - (512, 2008, 'attending', '2023-04-07 21:52:31', '2025-12-17 19:46:58', '6AXMZBY4', '6055808'), - (512, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '6AXMZBY4', '6056085'), - (512, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '6AXMZBY4', '6056916'), - (512, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '6AXMZBY4', '6059290'), - (512, 2013, 'maybe', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '6AXMZBY4', '6060328'), - (512, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '6AXMZBY4', '6061037'), - (512, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '6AXMZBY4', '6061039'), - (512, 2019, 'attending', '2023-04-15 19:52:01', '2025-12-17 19:47:00', '6AXMZBY4', '6062934'), - (512, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', '6AXMZBY4', '6065813'), - (512, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '6AXMZBY4', '6067245'), - (512, 2027, 'maybe', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '6AXMZBY4', '6068094'), - (512, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '6AXMZBY4', '6068252'), - (512, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '6AXMZBY4', '6068253'), - (512, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '6AXMZBY4', '6068254'), - (512, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '6AXMZBY4', '6068280'), - (512, 2032, 'not_attending', '2023-06-02 21:10:25', '2025-12-17 19:47:04', '6AXMZBY4', '6068281'), - (512, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '6AXMZBY4', '6069093'), - (512, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '6AXMZBY4', '6072528'), - (512, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '6AXMZBY4', '6075556'), - (512, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '6AXMZBY4', '6079840'), - (512, 2050, 'maybe', '2023-05-08 20:07:13', '2025-12-17 19:47:02', '6AXMZBY4', '6080489'), - (512, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '6AXMZBY4', '6083398'), - (512, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '6AXMZBY4', '6093504'), - (512, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '6AXMZBY4', '6097414'), - (512, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '6AXMZBY4', '6097442'), - (512, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '6AXMZBY4', '6097684'), - (512, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '6AXMZBY4', '6098762'), - (512, 2064, 'maybe', '2023-06-22 01:04:01', '2025-12-17 19:46:50', '6AXMZBY4', '6099988'), - (512, 2065, 'attending', '2023-06-17 18:06:08', '2025-12-17 19:46:49', '6AXMZBY4', '6101169'), - (512, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '6AXMZBY4', '6101361'), - (512, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '6AXMZBY4', '6101362'), - (512, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '6AXMZBY4', '6107314'), - (512, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '6AXMZBY4', '6120034'), - (512, 2090, 'attending', '2023-06-02 20:09:36', '2025-12-17 19:47:04', '6AXMZBY4', '6127961'), - (512, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '6AXMZBY4', '6136733'), - (512, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '6AXMZBY4', '6137989'), - (512, 2104, 'maybe', '2023-06-22 01:03:54', '2025-12-17 19:46:50', '6AXMZBY4', '6149499'), - (512, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '6AXMZBY4', '6150864'), - (512, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '6AXMZBY4', '6155491'), - (512, 2116, 'attending', '2023-07-07 22:23:13', '2025-12-17 19:46:51', '6AXMZBY4', '6163389'), - (512, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '6AXMZBY4', '6164417'), - (512, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '6AXMZBY4', '6166388'), - (512, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '6AXMZBY4', '6176439'), - (512, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '6AXMZBY4', '6182410'), - (512, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '6AXMZBY4', '6185812'), - (512, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '6AXMZBY4', '6187651'), - (512, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '6AXMZBY4', '6187963'), - (512, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '6AXMZBY4', '6187964'), - (512, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '6AXMZBY4', '6187966'), - (512, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '6AXMZBY4', '6187967'), - (512, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '6AXMZBY4', '6187969'), - (512, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '6AXMZBY4', '6334878'), - (512, 2148, 'maybe', '2023-07-24 21:33:18', '2025-12-17 19:46:53', '6AXMZBY4', '6335667'), - (512, 2152, 'attending', '2023-07-14 20:30:43', '2025-12-17 19:46:52', '6AXMZBY4', '6337021'), - (512, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '6AXMZBY4', '6337236'), - (512, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '6AXMZBY4', '6337970'), - (512, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '6AXMZBY4', '6338308'), - (512, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', '6AXMZBY4', '6338342'), - (512, 2159, 'attending', '2023-07-17 18:51:25', '2025-12-17 19:46:53', '6AXMZBY4', '6338355'), - (512, 2160, 'attending', '2023-07-26 14:53:50', '2025-12-17 19:46:54', '6AXMZBY4', '6338358'), - (512, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '6AXMZBY4', '6341710'), - (512, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '6AXMZBY4', '6342044'), - (512, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '6AXMZBY4', '6342298'), - (512, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '6AXMZBY4', '6343294'), - (512, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '6AXMZBY4', '6347034'), - (512, 2177, 'attending', '2023-08-12 20:09:20', '2025-12-17 19:46:55', '6AXMZBY4', '6347053'), - (512, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '6AXMZBY4', '6347056'), - (512, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '6AXMZBY4', '6353830'), - (512, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '6AXMZBY4', '6353831'), - (512, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '6AXMZBY4', '6357867'), - (512, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '6AXMZBY4', '6358652'), - (512, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '6AXMZBY4', '6358668'), - (512, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '6AXMZBY4', '6358669'), - (512, 2196, 'maybe', '2023-09-08 17:55:41', '2025-12-17 19:46:56', '6AXMZBY4', '6359398'), - (512, 2197, 'maybe', '2023-09-15 19:09:29', '2025-12-17 19:46:44', '6AXMZBY4', '6359399'), - (512, 2204, 'maybe', '2023-08-16 03:36:40', '2025-12-17 19:46:55', '6AXMZBY4', '6361542'), - (512, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '6AXMZBY4', '6361709'), - (512, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '6AXMZBY4', '6361710'), - (512, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '6AXMZBY4', '6361711'), - (512, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '6AXMZBY4', '6361712'), - (512, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '6AXMZBY4', '6361713'), - (512, 2213, 'maybe', '2023-08-15 20:17:01', '2025-12-17 19:46:55', '6AXMZBY4', '6362935'), - (512, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '6AXMZBY4', '6382573'), - (512, 2239, 'attending', '2023-08-31 17:59:21', '2025-12-17 19:46:56', '6AXMZBY4', '6387592'), - (512, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '6AXMZBY4', '6388604'), - (512, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '6AXMZBY4', '6394629'), - (512, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '6AXMZBY4', '6394631'), - (512, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '6AXMZBY4', '6440863'), - (512, 2272, 'maybe', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '6AXMZBY4', '6445440'), - (512, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '6AXMZBY4', '6453951'), - (512, 2286, 'maybe', '2023-12-01 23:02:07', '2025-12-17 19:46:48', '6AXMZBY4', '6460930'), - (512, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '6AXMZBY4', '6461696'), - (512, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '6AXMZBY4', '6462129'), - (512, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '6AXMZBY4', '6463218'), - (512, 2299, 'attending', '2023-10-19 18:08:12', '2025-12-17 19:46:46', '6AXMZBY4', '6472181'), - (512, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '6AXMZBY4', '6482693'), - (512, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '6AXMZBY4', '6484200'), - (512, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '6AXMZBY4', '6484680'), - (512, 2310, 'maybe', '2023-11-10 00:06:20', '2025-12-17 19:46:47', '6AXMZBY4', '6487709'), - (512, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '6AXMZBY4', '6507741'), - (512, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '6AXMZBY4', '6514659'), - (512, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '6AXMZBY4', '6514660'), - (512, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '6AXMZBY4', '6519103'), - (512, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '6AXMZBY4', '6535681'), - (512, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '6AXMZBY4', '6584747'), - (512, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '6AXMZBY4', '6587097'), - (512, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '6AXMZBY4', '6609022'), - (512, 2364, 'maybe', '2023-12-08 23:54:36', '2025-12-17 19:46:49', '6AXMZBY4', '6613011'), - (512, 2371, 'attending', '2023-12-15 21:27:49', '2025-12-17 19:46:36', '6AXMZBY4', '6624495'), - (512, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '6AXMZBY4', '6632757'), - (512, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '6AXMZBY4', '6644187'), - (512, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '6AXMZBY4', '6648951'), - (512, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '6AXMZBY4', '6648952'), - (512, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '6AXMZBY4', '6655401'), - (512, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '6AXMZBY4', '6661585'), - (512, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '6AXMZBY4', '6661588'), - (512, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '6AXMZBY4', '6661589'), - (512, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '6AXMZBY4', '6699906'), - (512, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '6AXMZBY4', '6699913'), - (512, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '6AXMZBY4', '6701109'), - (512, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '6AXMZBY4', '6704561'), - (512, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '6AXMZBY4', '6705219'), - (512, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '6AXMZBY4', '6708410'), - (512, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '6AXMZBY4', '6710153'), - (512, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '6AXMZBY4', '6711552'), - (512, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '6AXMZBY4', '6711553'), - (512, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '6AXMZBY4', '6722688'), - (512, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '6AXMZBY4', '6730620'), - (512, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '6AXMZBY4', '6730642'), - (512, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '6AXMZBY4', '6740364'), - (512, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '6AXMZBY4', '6743829'), - (512, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '6AXMZBY4', '7030380'), - (512, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '6AXMZBY4', '7033677'), - (512, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '6AXMZBY4', '7035415'), - (512, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '6AXMZBY4', '7044715'), - (512, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '6AXMZBY4', '7050318'), - (512, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '6AXMZBY4', '7050319'), - (512, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '6AXMZBY4', '7050322'), - (512, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '6AXMZBY4', '7057804'), - (512, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '6AXMZBY4', '7072824'), - (512, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '6AXMZBY4', '7074348'), - (512, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '6AXMZBY4', '7089267'), - (512, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '6AXMZBY4', '7098747'), - (512, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '6AXMZBY4', '7113468'), - (512, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '6AXMZBY4', '7114856'), - (512, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '6AXMZBY4', '7114951'), - (512, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '6AXMZBY4', '7114955'), - (512, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '6AXMZBY4', '7114956'), - (512, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '6AXMZBY4', '7114957'), - (512, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '6AXMZBY4', '7153615'), - (512, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '6AXMZBY4', '7159484'), - (512, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '6AXMZBY4', '7178446'), - (512, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '6AXMZBY4', '7220467'), - (512, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '6AXMZBY4', '7240354'), - (512, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '6AXMZBY4', '7251633'), - (512, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '6AXMZBY4', '7302674'), - (513, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'm7OVvxMm', '6361709'), - (513, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'm7OVvxMm', '6361710'), - (513, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'm7OVvxMm', '6361711'), - (513, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'm7OVvxMm', '6361712'), - (513, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm7OVvxMm', '6361713'), - (513, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'm7OVvxMm', '6382573'), - (513, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'm7OVvxMm', '6388604'), - (513, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm7OVvxMm', '6394629'), - (513, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm7OVvxMm', '6394631'), - (513, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'm7OVvxMm', '6431478'), - (514, 249, 'attending', '2020-11-17 23:26:09', '2025-12-17 19:47:54', '8mRVk07m', '3149480'), - (514, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRVk07m', '6045684'), - (515, 247, 'attending', '2020-12-30 00:40:42', '2025-12-17 19:47:48', 'ndaRleZm', '3149478'), - (515, 517, 'not_attending', '2021-01-08 00:10:38', '2025-12-17 19:47:48', 'ndaRleZm', '3337137'), - (515, 518, 'attending', '2021-01-03 04:09:52', '2025-12-17 19:47:48', 'ndaRleZm', '3337138'), - (515, 521, 'not_attending', '2021-01-01 12:46:31', '2025-12-17 19:47:48', 'ndaRleZm', '3337454'), - (515, 526, 'attending', '2020-12-28 21:24:24', '2025-12-17 19:47:48', 'ndaRleZm', '3351539'), - (515, 529, 'not_attending', '2021-01-05 19:47:35', '2025-12-17 19:47:48', 'ndaRleZm', '3364568'), - (515, 532, 'attending', '2021-01-03 23:29:39', '2025-12-17 19:47:48', 'ndaRleZm', '3381412'), - (515, 534, 'attending', '2021-01-05 13:57:36', '2025-12-17 19:47:48', 'ndaRleZm', '3384157'), - (515, 535, 'not_attending', '2021-01-09 19:45:42', '2025-12-17 19:47:48', 'ndaRleZm', '3384729'), - (515, 536, 'attending', '2021-01-07 23:34:12', '2025-12-17 19:47:48', 'ndaRleZm', '3386848'), - (515, 540, 'attending', '2021-01-10 20:04:56', '2025-12-17 19:47:48', 'ndaRleZm', '3389527'), - (515, 543, 'not_attending', '2021-01-16 00:28:20', '2025-12-17 19:47:48', 'ndaRleZm', '3396499'), - (515, 548, 'not_attending', '2021-01-16 22:34:20', '2025-12-17 19:47:48', 'ndaRleZm', '3403650'), - (515, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaRleZm', '3406988'), - (515, 555, 'attending', '2021-01-19 15:48:02', '2025-12-17 19:47:49', 'ndaRleZm', '3416576'), - (515, 557, 'not_attending', '2021-01-21 00:46:39', '2025-12-17 19:47:49', 'ndaRleZm', '3418748'), - (515, 558, 'attending', '2021-01-19 15:47:57', '2025-12-17 19:47:49', 'ndaRleZm', '3418925'), - (515, 568, 'attending', '2021-01-29 22:01:44', '2025-12-17 19:47:50', 'ndaRleZm', '3430267'), - (515, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'ndaRleZm', '3432673'), - (515, 570, 'maybe', '2021-02-05 06:37:56', '2025-12-17 19:47:50', 'ndaRleZm', '3435538'), - (515, 593, 'attending', '2021-02-28 04:52:14', '2025-12-17 19:47:50', 'ndaRleZm', '3467758'), - (515, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'ndaRleZm', '3468125'), - (515, 602, 'maybe', '2021-02-10 22:45:01', '2025-12-17 19:47:50', 'ndaRleZm', '3470303'), - (515, 603, 'not_attending', '2021-02-19 20:08:22', '2025-12-17 19:47:50', 'ndaRleZm', '3470304'), - (515, 604, 'attending', '2021-02-19 20:08:53', '2025-12-17 19:47:50', 'ndaRleZm', '3470305'), - (515, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'ndaRleZm', '3470991'), - (515, 621, 'attending', '2021-03-03 07:18:48', '2025-12-17 19:47:51', 'ndaRleZm', '3517815'), - (515, 622, 'attending', '2021-03-14 00:22:56', '2025-12-17 19:47:51', 'ndaRleZm', '3517816'), - (515, 623, 'not_attending', '2021-03-13 23:54:13', '2025-12-17 19:47:51', 'ndaRleZm', '3523941'), - (515, 627, 'attending', '2021-03-03 07:19:32', '2025-12-17 19:47:51', 'ndaRleZm', '3533303'), - (515, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ndaRleZm', '3533850'), - (515, 632, 'attending', '2021-03-03 07:19:15', '2025-12-17 19:47:51', 'ndaRleZm', '3533853'), - (515, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ndaRleZm', '3536632'), - (515, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ndaRleZm', '3536656'), - (515, 641, 'attending', '2021-03-04 01:58:35', '2025-12-17 19:47:44', 'ndaRleZm', '3539916'), - (515, 642, 'attending', '2021-03-04 01:58:38', '2025-12-17 19:47:44', 'ndaRleZm', '3539917'), - (515, 643, 'attending', '2021-03-04 01:58:42', '2025-12-17 19:47:45', 'ndaRleZm', '3539918'), - (515, 644, 'attending', '2021-03-04 01:58:44', '2025-12-17 19:47:45', 'ndaRleZm', '3539919'), - (515, 645, 'attending', '2021-03-04 01:58:46', '2025-12-17 19:47:46', 'ndaRleZm', '3539920'), - (515, 646, 'attending', '2021-03-04 01:58:52', '2025-12-17 19:47:46', 'ndaRleZm', '3539921'), - (515, 647, 'attending', '2021-03-04 01:58:54', '2025-12-17 19:47:46', 'ndaRleZm', '3539922'), - (515, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndaRleZm', '3539923'), - (515, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndaRleZm', '3539927'), - (515, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndaRleZm', '3582734'), - (515, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ndaRleZm', '3583262'), - (515, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndaRleZm', '3619523'), - (515, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ndaRleZm', '3661369'), - (515, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ndaRleZm', '3674262'), - (515, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ndaRleZm', '3677402'), - (515, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndaRleZm', '3730212'), - (515, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ndaRleZm', '3793156'), - (515, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaRleZm', '6045684'), - (516, 50, 'attending', '2020-07-28 20:34:13', '2025-12-17 19:47:55', 'bdzYJ5y4', '2975275'), - (516, 194, 'attending', '2020-07-31 22:12:10', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087262'), - (516, 195, 'attending', '2020-08-07 18:17:11', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087264'), - (516, 196, 'maybe', '2020-08-15 21:29:33', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087265'), - (516, 197, 'attending', '2020-08-21 22:17:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087266'), - (516, 198, 'attending', '2020-08-25 20:21:44', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087267'), - (516, 199, 'attending', '2020-08-30 23:25:36', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087268'), - (516, 223, 'maybe', '2020-09-08 02:57:52', '2025-12-17 19:47:56', 'bdzYJ5y4', '3129980'), - (516, 230, 'maybe', '2020-07-29 21:36:57', '2025-12-17 19:47:55', 'bdzYJ5y4', '3139232'), - (516, 252, 'not_attending', '2021-02-23 05:23:44', '2025-12-17 19:47:50', 'bdzYJ5y4', '3149483'), - (516, 264, 'attending', '2020-08-03 21:44:53', '2025-12-17 19:47:56', 'bdzYJ5y4', '3150735'), - (516, 270, 'maybe', '2020-08-11 22:15:35', '2025-12-17 19:47:56', 'bdzYJ5y4', '3154457'), - (516, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'bdzYJ5y4', '3155321'), - (516, 273, 'maybe', '2020-08-03 18:24:37', '2025-12-17 19:47:56', 'bdzYJ5y4', '3162006'), - (516, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3163442'), - (516, 282, 'maybe', '2020-08-07 18:17:02', '2025-12-17 19:47:56', 'bdzYJ5y4', '3169070'), - (516, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'bdzYJ5y4', '3169555'), - (516, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', 'bdzYJ5y4', '3169556'), - (516, 290, 'not_attending', '2020-09-05 05:45:56', '2025-12-17 19:47:56', 'bdzYJ5y4', '3170251'), - (516, 291, 'not_attending', '2020-09-03 22:22:47', '2025-12-17 19:47:56', 'bdzYJ5y4', '3170252'), - (516, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172832'), - (516, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172833'), - (516, 295, 'maybe', '2020-08-30 23:24:19', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172834'), - (516, 296, 'maybe', '2020-09-03 22:22:54', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172876'), - (516, 297, 'attending', '2020-08-11 22:31:40', '2025-12-17 19:47:56', 'bdzYJ5y4', '3173937'), - (516, 298, 'maybe', '2020-08-25 20:21:27', '2025-12-17 19:47:56', 'bdzYJ5y4', '3174556'), - (516, 304, 'maybe', '2020-09-06 03:53:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3178916'), - (516, 306, 'maybe', '2020-08-19 02:44:25', '2025-12-17 19:47:56', 'bdzYJ5y4', '3179777'), - (516, 308, 'not_attending', '2020-09-03 04:14:11', '2025-12-17 19:47:56', 'bdzYJ5y4', '3183341'), - (516, 311, 'attending', '2020-09-10 19:17:29', '2025-12-17 19:47:56', 'bdzYJ5y4', '3186057'), - (516, 312, 'not_attending', '2020-09-03 22:22:42', '2025-12-17 19:47:56', 'bdzYJ5y4', '3187795'), - (516, 315, 'attending', '2020-09-08 06:52:03', '2025-12-17 19:47:56', 'bdzYJ5y4', '3189085'), - (516, 317, 'attending', '2020-08-26 04:26:01', '2025-12-17 19:47:56', 'bdzYJ5y4', '3191735'), - (516, 318, 'attending', '2020-09-01 23:36:13', '2025-12-17 19:47:56', 'bdzYJ5y4', '3193885'), - (516, 319, 'maybe', '2020-08-30 23:23:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3194179'), - (516, 320, 'attending', '2020-09-03 04:14:38', '2025-12-17 19:47:56', 'bdzYJ5y4', '3195552'), - (516, 322, 'not_attending', '2020-09-13 04:30:37', '2025-12-17 19:47:56', 'bdzYJ5y4', '3197080'), - (516, 323, 'not_attending', '2020-09-13 04:31:03', '2025-12-17 19:47:56', 'bdzYJ5y4', '3197081'), - (516, 328, 'not_attending', '2020-09-29 21:47:34', '2025-12-17 19:47:52', 'bdzYJ5y4', '3197086'), - (516, 330, 'maybe', '2020-09-06 20:54:01', '2025-12-17 19:47:56', 'bdzYJ5y4', '3197322'), - (516, 331, 'maybe', '2020-09-03 22:21:40', '2025-12-17 19:47:56', 'bdzYJ5y4', '3198871'), - (516, 332, 'not_attending', '2020-09-03 22:22:21', '2025-12-17 19:47:56', 'bdzYJ5y4', '3198873'), - (516, 335, 'attending', '2020-09-01 22:30:50', '2025-12-17 19:47:56', 'bdzYJ5y4', '3200209'), - (516, 336, 'not_attending', '2020-09-15 04:13:14', '2025-12-17 19:47:56', 'bdzYJ5y4', '3200495'), - (516, 337, 'maybe', '2020-09-06 08:06:22', '2025-12-17 19:47:56', 'bdzYJ5y4', '3201771'), - (516, 340, 'maybe', '2020-09-13 04:30:43', '2025-12-17 19:47:56', 'bdzYJ5y4', '3204470'), - (516, 341, 'attending', '2020-09-25 23:39:20', '2025-12-17 19:47:52', 'bdzYJ5y4', '3204471'), - (516, 343, 'maybe', '2020-09-21 05:11:41', '2025-12-17 19:47:56', 'bdzYJ5y4', '3206759'), - (516, 344, 'maybe', '2020-10-29 18:34:37', '2025-12-17 19:47:53', 'bdzYJ5y4', '3206906'), - (516, 346, 'not_attending', '2020-09-15 04:13:24', '2025-12-17 19:47:56', 'bdzYJ5y4', '3207515'), - (516, 347, 'not_attending', '2020-09-24 22:46:00', '2025-12-17 19:47:51', 'bdzYJ5y4', '3207930'), - (516, 348, 'maybe', '2020-09-28 23:28:34', '2025-12-17 19:47:52', 'bdzYJ5y4', '3209159'), - (516, 349, 'not_attending', '2020-09-13 04:30:33', '2025-12-17 19:47:56', 'bdzYJ5y4', '3209194'), - (516, 351, 'maybe', '2020-09-13 04:30:56', '2025-12-17 19:47:56', 'bdzYJ5y4', '3209257'), - (516, 352, 'maybe', '2020-09-13 04:30:08', '2025-12-17 19:47:56', 'bdzYJ5y4', '3210514'), - (516, 354, 'maybe', '2020-09-15 04:14:59', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212570'), - (516, 355, 'not_attending', '2020-09-15 04:13:34', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212571'), - (516, 356, 'maybe', '2020-09-23 23:58:08', '2025-12-17 19:47:51', 'bdzYJ5y4', '3212572'), - (516, 357, 'attending', '2020-09-29 21:47:36', '2025-12-17 19:47:52', 'bdzYJ5y4', '3212573'), - (516, 358, 'not_attending', '2020-09-19 08:33:21', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212579'), - (516, 359, 'not_attending', '2020-09-15 04:14:38', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212624'), - (516, 360, 'not_attending', '2020-09-15 04:14:04', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212671'), - (516, 362, 'attending', '2020-09-21 22:14:09', '2025-12-17 19:47:52', 'bdzYJ5y4', '3214207'), - (516, 363, 'attending', '2020-09-18 03:43:33', '2025-12-17 19:47:52', 'bdzYJ5y4', '3217037'), - (516, 364, 'maybe', '2020-09-18 03:37:50', '2025-12-17 19:47:56', 'bdzYJ5y4', '3217106'), - (516, 365, 'attending', '2020-09-18 03:43:07', '2025-12-17 19:47:51', 'bdzYJ5y4', '3218510'), - (516, 366, 'maybe', '2020-09-21 05:11:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3219750'), - (516, 367, 'maybe', '2020-09-21 05:12:00', '2025-12-17 19:47:51', 'bdzYJ5y4', '3219751'), - (516, 368, 'not_attending', '2020-09-30 18:09:28', '2025-12-17 19:47:52', 'bdzYJ5y4', '3221403'), - (516, 370, 'not_attending', '2020-10-13 20:57:48', '2025-12-17 19:47:52', 'bdzYJ5y4', '3221405'), - (516, 371, 'not_attending', '2020-10-13 20:57:51', '2025-12-17 19:47:52', 'bdzYJ5y4', '3221406'), - (516, 374, 'not_attending', '2020-10-26 20:56:59', '2025-12-17 19:47:53', 'bdzYJ5y4', '3221415'), - (516, 376, 'not_attending', '2020-10-13 20:57:42', '2025-12-17 19:47:52', 'bdzYJ5y4', '3222827'), - (516, 377, 'maybe', '2020-10-29 18:33:03', '2025-12-17 19:47:53', 'bdzYJ5y4', '3222828'), - (516, 382, 'not_attending', '2020-10-12 22:13:00', '2025-12-17 19:47:52', 'bdzYJ5y4', '3226873'), - (516, 384, 'not_attending', '2020-09-29 21:47:15', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228696'), - (516, 385, 'attending', '2020-09-29 20:30:21', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228698'), - (516, 386, 'not_attending', '2020-10-10 20:46:39', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228699'), - (516, 387, 'maybe', '2020-10-16 20:39:04', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228700'), - (516, 388, 'attending', '2020-10-24 20:42:52', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228701'), - (516, 390, 'not_attending', '2020-10-01 21:22:23', '2025-12-17 19:47:52', 'bdzYJ5y4', '3231510'), - (516, 404, 'not_attending', '2021-03-15 01:55:26', '2025-12-17 19:47:51', 'bdzYJ5y4', '3236460'), - (516, 412, 'not_attending', '2020-10-07 02:59:05', '2025-12-17 19:47:52', 'bdzYJ5y4', '3236636'), - (516, 414, 'not_attending', '2020-10-13 20:59:00', '2025-12-17 19:47:52', 'bdzYJ5y4', '3237277'), - (516, 415, 'not_attending', '2020-10-12 22:12:30', '2025-12-17 19:47:52', 'bdzYJ5y4', '3238044'), - (516, 416, 'maybe', '2020-10-07 02:59:13', '2025-12-17 19:47:52', 'bdzYJ5y4', '3238073'), - (516, 417, 'not_attending', '2020-10-13 20:57:26', '2025-12-17 19:47:52', 'bdzYJ5y4', '3238779'), - (516, 418, 'not_attending', '2020-10-13 20:57:22', '2025-12-17 19:47:52', 'bdzYJ5y4', '3241728'), - (516, 419, 'not_attending', '2020-10-13 20:57:07', '2025-12-17 19:47:52', 'bdzYJ5y4', '3242234'), - (516, 420, 'not_attending', '2020-10-13 20:57:37', '2025-12-17 19:47:52', 'bdzYJ5y4', '3245293'), - (516, 422, 'not_attending', '2020-10-29 18:32:41', '2025-12-17 19:47:53', 'bdzYJ5y4', '3245295'), - (516, 423, 'not_attending', '2020-11-02 02:00:50', '2025-12-17 19:47:53', 'bdzYJ5y4', '3245296'), - (516, 424, 'not_attending', '2020-10-19 05:04:35', '2025-12-17 19:47:52', 'bdzYJ5y4', '3245751'), - (516, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'bdzYJ5y4', '3250232'), - (516, 428, 'attending', '2020-10-26 20:56:49', '2025-12-17 19:47:53', 'bdzYJ5y4', '3250332'), - (516, 429, 'maybe', '2020-11-28 22:27:52', '2025-12-17 19:47:54', 'bdzYJ5y4', '3250523'), - (516, 431, 'maybe', '2020-10-26 20:57:50', '2025-12-17 19:47:53', 'bdzYJ5y4', '3253225'), - (516, 432, 'not_attending', '2020-11-02 02:00:36', '2025-12-17 19:47:53', 'bdzYJ5y4', '3254416'), - (516, 433, 'not_attending', '2020-11-02 02:00:55', '2025-12-17 19:47:53', 'bdzYJ5y4', '3254417'), - (516, 437, 'not_attending', '2020-10-28 22:10:18', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256160'), - (516, 438, 'not_attending', '2020-10-29 18:34:12', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256163'), - (516, 439, 'not_attending', '2020-10-28 22:10:15', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256164'), - (516, 440, 'not_attending', '2020-11-07 22:59:41', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256168'), - (516, 441, 'attending', '2020-11-11 23:07:31', '2025-12-17 19:47:54', 'bdzYJ5y4', '3256169'), - (516, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'bdzYJ5y4', '3263578'), - (516, 444, 'not_attending', '2020-10-30 21:40:37', '2025-12-17 19:47:53', 'bdzYJ5y4', '3263745'), - (516, 445, 'not_attending', '2020-11-13 00:32:32', '2025-12-17 19:47:54', 'bdzYJ5y4', '3266138'), - (516, 446, 'maybe', '2020-10-26 20:57:18', '2025-12-17 19:47:53', 'bdzYJ5y4', '3267163'), - (516, 447, 'not_attending', '2020-10-26 20:58:02', '2025-12-17 19:47:53', 'bdzYJ5y4', '3267895'), - (516, 449, 'maybe', '2020-11-07 17:27:36', '2025-12-17 19:47:53', 'bdzYJ5y4', '3272055'), - (516, 451, 'not_attending', '2020-11-02 02:00:28', '2025-12-17 19:47:53', 'bdzYJ5y4', '3272186'), - (516, 452, 'maybe', '2020-11-28 00:25:42', '2025-12-17 19:47:54', 'bdzYJ5y4', '3272981'), - (516, 454, 'not_attending', '2020-11-13 00:34:26', '2025-12-17 19:47:54', 'bdzYJ5y4', '3275665'), - (516, 456, 'not_attending', '2020-11-17 00:45:15', '2025-12-17 19:47:54', 'bdzYJ5y4', '3276428'), - (516, 457, 'not_attending', '2020-11-07 14:52:46', '2025-12-17 19:47:53', 'bdzYJ5y4', '3279087'), - (516, 458, 'maybe', '2020-11-09 20:58:36', '2025-12-17 19:47:53', 'bdzYJ5y4', '3279233'), - (516, 459, 'not_attending', '2020-11-15 21:51:24', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281467'), - (516, 460, 'maybe', '2020-11-14 22:01:17', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281468'), - (516, 461, 'not_attending', '2020-11-09 20:58:29', '2025-12-17 19:47:53', 'bdzYJ5y4', '3281469'), - (516, 462, 'not_attending', '2020-11-09 20:58:45', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281470'), - (516, 463, 'maybe', '2020-11-13 00:34:34', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281553'), - (516, 464, 'maybe', '2020-11-21 01:55:45', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281554'), - (516, 465, 'maybe', '2020-11-24 06:41:06', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281555'), - (516, 466, 'not_attending', '2020-11-23 03:25:24', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281829'), - (516, 467, 'not_attending', '2020-11-18 00:21:28', '2025-12-17 19:47:54', 'bdzYJ5y4', '3282756'), - (516, 468, 'attending', '2020-11-22 00:44:24', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285413'), - (516, 469, 'attending', '2020-11-28 00:25:34', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285414'), - (516, 470, 'not_attending', '2020-11-15 21:51:31', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285443'), - (516, 471, 'not_attending', '2020-11-14 22:00:59', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285445'), - (516, 472, 'not_attending', '2020-11-13 00:32:21', '2025-12-17 19:47:54', 'bdzYJ5y4', '3286541'), - (516, 475, 'not_attending', '2020-11-23 03:26:15', '2025-12-17 19:47:54', 'bdzYJ5y4', '3286760'), - (516, 476, 'not_attending', '2020-11-14 22:00:55', '2025-12-17 19:47:54', 'bdzYJ5y4', '3286982'), - (516, 477, 'maybe', '2020-11-28 22:27:31', '2025-12-17 19:47:54', 'bdzYJ5y4', '3289559'), - (516, 478, 'not_attending', '2020-11-16 20:49:28', '2025-12-17 19:47:54', 'bdzYJ5y4', '3290899'), - (516, 481, 'not_attending', '2020-11-23 03:25:33', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297764'), - (516, 482, 'not_attending', '2020-11-24 22:36:19', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297769'), - (516, 483, 'not_attending', '2020-11-23 03:25:29', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297791'), - (516, 484, 'not_attending', '2020-11-21 00:52:22', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297792'), - (516, 486, 'not_attending', '2020-11-23 03:25:59', '2025-12-17 19:47:54', 'bdzYJ5y4', '3300281'), - (516, 487, 'not_attending', '2020-11-28 00:25:47', '2025-12-17 19:47:54', 'bdzYJ5y4', '3311122'), - (516, 488, 'not_attending', '2020-11-28 00:26:07', '2025-12-17 19:47:54', 'bdzYJ5y4', '3312757'), - (516, 490, 'not_attending', '2020-12-07 21:06:30', '2025-12-17 19:47:54', 'bdzYJ5y4', '3313532'), - (516, 491, 'not_attending', '2020-12-10 20:59:18', '2025-12-17 19:47:55', 'bdzYJ5y4', '3313533'), - (516, 492, 'not_attending', '2020-11-28 22:27:38', '2025-12-17 19:47:54', 'bdzYJ5y4', '3313731'), - (516, 493, 'not_attending', '2020-12-05 03:13:59', '2025-12-17 19:47:54', 'bdzYJ5y4', '3313856'), - (516, 495, 'not_attending', '2020-12-07 21:06:13', '2025-12-17 19:47:54', 'bdzYJ5y4', '3314009'), - (516, 496, 'not_attending', '2020-12-10 20:59:15', '2025-12-17 19:47:54', 'bdzYJ5y4', '3314269'), - (516, 497, 'not_attending', '2020-12-16 22:23:16', '2025-12-17 19:47:55', 'bdzYJ5y4', '3314270'), - (516, 498, 'not_attending', '2020-12-07 21:06:04', '2025-12-17 19:47:54', 'bdzYJ5y4', '3314302'), - (516, 499, 'maybe', '2020-12-07 21:07:31', '2025-12-17 19:47:55', 'bdzYJ5y4', '3314909'), - (516, 500, 'maybe', '2020-12-16 22:23:33', '2025-12-17 19:47:55', 'bdzYJ5y4', '3314964'), - (516, 501, 'maybe', '2020-12-07 21:06:22', '2025-12-17 19:47:54', 'bdzYJ5y4', '3317834'), - (516, 502, 'attending', '2020-12-12 23:47:29', '2025-12-17 19:47:55', 'bdzYJ5y4', '3323365'), - (516, 504, 'not_attending', '2020-12-16 22:23:23', '2025-12-17 19:47:55', 'bdzYJ5y4', '3323368'), - (516, 506, 'maybe', '2020-12-07 21:07:51', '2025-12-17 19:47:55', 'bdzYJ5y4', '3323375'), - (516, 511, 'not_attending', '2020-12-10 20:59:37', '2025-12-17 19:47:55', 'bdzYJ5y4', '3325335'), - (516, 512, 'not_attending', '2020-12-10 20:59:31', '2025-12-17 19:47:55', 'bdzYJ5y4', '3325336'), - (516, 513, 'not_attending', '2020-12-16 22:23:40', '2025-12-17 19:47:55', 'bdzYJ5y4', '3329383'), - (516, 516, 'attending', '2020-12-16 23:04:55', '2025-12-17 19:47:48', 'bdzYJ5y4', '3334530'), - (516, 521, 'maybe', '2020-12-28 07:11:52', '2025-12-17 19:47:48', 'bdzYJ5y4', '3337454'), - (516, 525, 'not_attending', '2020-12-22 19:16:57', '2025-12-17 19:47:48', 'bdzYJ5y4', '3350467'), - (516, 526, 'attending', '2021-01-02 04:40:11', '2025-12-17 19:47:48', 'bdzYJ5y4', '3351539'), - (516, 528, 'not_attending', '2021-01-02 04:40:21', '2025-12-17 19:47:48', 'bdzYJ5y4', '3363022'), - (516, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'bdzYJ5y4', '3386848'), - (516, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'bdzYJ5y4', '3389527'), - (516, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'bdzYJ5y4', '3396499'), - (516, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'bdzYJ5y4', '3403650'), - (516, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'bdzYJ5y4', '3406988'), - (516, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'bdzYJ5y4', '3408338'), - (516, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'bdzYJ5y4', '3416576'), - (516, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'bdzYJ5y4', '3430267'), - (516, 573, 'maybe', '2021-02-21 23:39:07', '2025-12-17 19:47:50', 'bdzYJ5y4', '3435542'), - (516, 574, 'attending', '2021-03-06 01:28:01', '2025-12-17 19:47:51', 'bdzYJ5y4', '3435543'), - (516, 592, 'not_attending', '2021-02-21 23:38:52', '2025-12-17 19:47:50', 'bdzYJ5y4', '3467757'), - (516, 593, 'not_attending', '2021-02-21 23:38:17', '2025-12-17 19:47:50', 'bdzYJ5y4', '3467758'), - (516, 594, 'not_attending', '2021-03-01 23:33:13', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467759'), - (516, 595, 'not_attending', '2021-03-07 04:46:08', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467761'), - (516, 596, 'not_attending', '2021-03-07 04:46:04', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467762'), - (516, 597, 'not_attending', '2021-03-11 08:29:24', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467764'), - (516, 600, 'not_attending', '2021-02-20 23:13:26', '2025-12-17 19:47:50', 'bdzYJ5y4', '3468125'), - (516, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470303'), - (516, 603, 'attending', '2021-02-20 11:23:49', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470304'), - (516, 604, 'not_attending', '2021-02-27 05:55:53', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470305'), - (516, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470991'), - (516, 611, 'not_attending', '2021-02-21 23:38:11', '2025-12-17 19:47:50', 'bdzYJ5y4', '3482659'), - (516, 613, 'not_attending', '2021-02-21 23:38:58', '2025-12-17 19:47:50', 'bdzYJ5y4', '3490041'), - (516, 614, 'not_attending', '2021-03-01 23:28:10', '2025-12-17 19:47:51', 'bdzYJ5y4', '3490042'), - (516, 616, 'not_attending', '2021-02-20 23:13:22', '2025-12-17 19:47:50', 'bdzYJ5y4', '3493478'), - (516, 617, 'maybe', '2021-02-21 23:38:32', '2025-12-17 19:47:50', 'bdzYJ5y4', '3499119'), - (516, 621, 'attending', '2021-03-01 23:27:45', '2025-12-17 19:47:51', 'bdzYJ5y4', '3517815'), - (516, 622, 'attending', '2021-03-10 22:08:23', '2025-12-17 19:47:51', 'bdzYJ5y4', '3517816'), - (516, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'bdzYJ5y4', '3523941'), - (516, 625, 'not_attending', '2021-03-03 00:49:55', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533296'), - (516, 626, 'not_attending', '2021-03-03 03:38:11', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533298'), - (516, 627, 'not_attending', '2021-03-07 04:45:59', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533303'), - (516, 628, 'not_attending', '2021-03-11 21:55:20', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533305'), - (516, 629, 'maybe', '2021-03-11 21:55:33', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533307'), - (516, 631, 'maybe', '2021-03-01 23:33:54', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533850'), - (516, 632, 'attending', '2021-03-09 00:50:33', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533853'), - (516, 633, 'maybe', '2021-03-13 02:28:11', '2025-12-17 19:47:44', 'bdzYJ5y4', '3534717'), - (516, 634, 'maybe', '2021-03-30 22:38:53', '2025-12-17 19:47:44', 'bdzYJ5y4', '3534718'), - (516, 635, 'maybe', '2021-04-04 06:55:56', '2025-12-17 19:47:44', 'bdzYJ5y4', '3534719'), - (516, 636, 'not_attending', '2021-04-13 06:16:23', '2025-12-17 19:47:45', 'bdzYJ5y4', '3534720'), - (516, 637, 'not_attending', '2021-03-15 01:56:51', '2025-12-17 19:47:51', 'bdzYJ5y4', '3536411'), - (516, 638, 'not_attending', '2021-04-04 06:55:25', '2025-12-17 19:47:44', 'bdzYJ5y4', '3536632'), - (516, 639, 'maybe', '2021-03-13 02:27:42', '2025-12-17 19:47:51', 'bdzYJ5y4', '3536656'), - (516, 640, 'not_attending', '2021-03-03 19:00:23', '2025-12-17 19:47:51', 'bdzYJ5y4', '3538866'), - (516, 641, 'attending', '2021-03-28 02:11:49', '2025-12-17 19:47:44', 'bdzYJ5y4', '3539916'), - (516, 642, 'attending', '2021-04-10 02:48:13', '2025-12-17 19:47:44', 'bdzYJ5y4', '3539917'), - (516, 643, 'not_attending', '2021-04-13 06:16:29', '2025-12-17 19:47:45', 'bdzYJ5y4', '3539918'), - (516, 644, 'attending', '2021-04-19 05:53:21', '2025-12-17 19:47:45', 'bdzYJ5y4', '3539919'), - (516, 645, 'attending', '2021-05-03 04:04:37', '2025-12-17 19:47:46', 'bdzYJ5y4', '3539920'), - (516, 646, 'attending', '2021-05-10 00:37:27', '2025-12-17 19:47:46', 'bdzYJ5y4', '3539921'), - (516, 647, 'attending', '2021-05-16 07:58:15', '2025-12-17 19:47:46', 'bdzYJ5y4', '3539922'), - (516, 648, 'attending', '2021-05-26 04:37:47', '2025-12-17 19:47:47', 'bdzYJ5y4', '3539923'), - (516, 649, 'maybe', '2021-03-13 02:28:49', '2025-12-17 19:47:51', 'bdzYJ5y4', '3539927'), - (516, 650, 'maybe', '2021-03-23 23:40:33', '2025-12-17 19:47:44', 'bdzYJ5y4', '3539928'), - (516, 651, 'not_attending', '2021-03-10 22:08:00', '2025-12-17 19:47:51', 'bdzYJ5y4', '3541045'), - (516, 652, 'not_attending', '2021-03-07 04:45:34', '2025-12-17 19:47:51', 'bdzYJ5y4', '3544466'), - (516, 664, 'attending', '2021-09-06 23:30:47', '2025-12-17 19:47:43', 'bdzYJ5y4', '3547142'), - (516, 665, 'attending', '2021-08-30 01:15:44', '2025-12-17 19:47:43', 'bdzYJ5y4', '3547143'), - (516, 667, 'attending', '2021-08-27 00:16:51', '2025-12-17 19:47:42', 'bdzYJ5y4', '3547145'), - (516, 669, 'maybe', '2021-06-26 04:07:07', '2025-12-17 19:47:38', 'bdzYJ5y4', '3547147'), - (516, 670, 'not_attending', '2021-06-18 23:07:24', '2025-12-17 19:47:48', 'bdzYJ5y4', '3547148'), - (516, 674, 'not_attending', '2021-07-27 21:52:39', '2025-12-17 19:47:41', 'bdzYJ5y4', '3547152'), - (516, 675, 'not_attending', '2021-07-26 21:23:51', '2025-12-17 19:47:40', 'bdzYJ5y4', '3547153'), - (516, 676, 'maybe', '2021-07-20 00:03:15', '2025-12-17 19:47:40', 'bdzYJ5y4', '3547154'), - (516, 677, 'not_attending', '2021-05-26 04:37:54', '2025-12-17 19:47:47', 'bdzYJ5y4', '3547155'), - (516, 678, 'not_attending', '2021-03-11 08:28:01', '2025-12-17 19:47:51', 'bdzYJ5y4', '3547158'), - (516, 680, 'not_attending', '2021-03-10 22:08:04', '2025-12-17 19:47:51', 'bdzYJ5y4', '3547700'), - (516, 682, 'not_attending', '2021-03-15 01:57:13', '2025-12-17 19:47:51', 'bdzYJ5y4', '3548806'), - (516, 683, 'not_attending', '2021-03-11 08:29:28', '2025-12-17 19:47:51', 'bdzYJ5y4', '3548818'), - (516, 684, 'not_attending', '2021-03-12 21:53:02', '2025-12-17 19:47:51', 'bdzYJ5y4', '3549257'), - (516, 685, 'not_attending', '2021-04-12 05:06:04', '2025-12-17 19:47:44', 'bdzYJ5y4', '3551564'), - (516, 686, 'not_attending', '2021-03-11 21:55:27', '2025-12-17 19:47:51', 'bdzYJ5y4', '3553333'), - (516, 687, 'not_attending', '2021-03-11 08:28:54', '2025-12-17 19:47:51', 'bdzYJ5y4', '3553405'), - (516, 688, 'not_attending', '2021-03-15 01:55:16', '2025-12-17 19:47:51', 'bdzYJ5y4', '3553729'), - (516, 690, 'maybe', '2021-03-13 02:28:00', '2025-12-17 19:47:43', 'bdzYJ5y4', '3559954'), - (516, 692, 'not_attending', '2021-03-12 21:53:09', '2025-12-17 19:47:51', 'bdzYJ5y4', '3561995'), - (516, 693, 'attending', '2021-03-15 01:54:53', '2025-12-17 19:47:51', 'bdzYJ5y4', '3565907'), - (516, 695, 'maybe', '2021-03-15 01:54:40', '2025-12-17 19:47:51', 'bdzYJ5y4', '3567535'), - (516, 696, 'maybe', '2021-03-15 01:55:58', '2025-12-17 19:47:51', 'bdzYJ5y4', '3567536'), - (516, 697, 'not_attending', '2021-03-23 23:40:43', '2025-12-17 19:47:44', 'bdzYJ5y4', '3567537'), - (516, 699, 'maybe', '2021-03-29 21:21:33', '2025-12-17 19:47:44', 'bdzYJ5y4', '3572241'), - (516, 704, 'not_attending', '2021-03-30 22:38:34', '2025-12-17 19:47:44', 'bdzYJ5y4', '3581429'), - (516, 705, 'maybe', '2021-03-26 02:06:43', '2025-12-17 19:47:44', 'bdzYJ5y4', '3581895'), - (516, 706, 'not_attending', '2021-04-12 05:08:26', '2025-12-17 19:47:45', 'bdzYJ5y4', '3582734'), - (516, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdzYJ5y4', '3583262'), - (516, 708, 'maybe', '2021-03-22 01:30:05', '2025-12-17 19:47:44', 'bdzYJ5y4', '3587850'), - (516, 709, 'maybe', '2021-03-30 22:50:24', '2025-12-17 19:47:44', 'bdzYJ5y4', '3587852'), - (516, 710, 'maybe', '2021-04-04 06:55:37', '2025-12-17 19:47:44', 'bdzYJ5y4', '3587853'), - (516, 711, 'maybe', '2021-03-23 01:07:28', '2025-12-17 19:47:44', 'bdzYJ5y4', '3588075'), - (516, 716, 'not_attending', '2021-03-30 22:47:06', '2025-12-17 19:47:44', 'bdzYJ5y4', '3618353'), - (516, 717, 'maybe', '2021-03-26 02:07:29', '2025-12-17 19:47:44', 'bdzYJ5y4', '3619523'), - (516, 719, 'not_attending', '2021-04-04 06:55:44', '2025-12-17 19:47:44', 'bdzYJ5y4', '3635405'), - (516, 722, 'not_attending', '2021-04-01 00:58:20', '2025-12-17 19:47:44', 'bdzYJ5y4', '3646347'), - (516, 723, 'not_attending', '2021-04-05 22:25:25', '2025-12-17 19:47:44', 'bdzYJ5y4', '3649179'), - (516, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdzYJ5y4', '3661369'), - (516, 725, 'not_attending', '2021-05-16 07:58:21', '2025-12-17 19:47:47', 'bdzYJ5y4', '3661372'), - (516, 728, 'not_attending', '2021-04-13 06:16:13', '2025-12-17 19:47:44', 'bdzYJ5y4', '3668073'), - (516, 729, 'not_attending', '2021-04-28 16:08:47', '2025-12-17 19:47:46', 'bdzYJ5y4', '3668075'), - (516, 730, 'not_attending', '2021-05-03 04:04:14', '2025-12-17 19:47:46', 'bdzYJ5y4', '3668076'), - (516, 731, 'not_attending', '2021-04-04 06:55:18', '2025-12-17 19:47:44', 'bdzYJ5y4', '3674262'), - (516, 732, 'maybe', '2021-04-19 05:52:54', '2025-12-17 19:47:45', 'bdzYJ5y4', '3674268'), - (516, 733, 'not_attending', '2021-04-05 22:25:32', '2025-12-17 19:47:44', 'bdzYJ5y4', '3675473'), - (516, 734, 'not_attending', '2021-04-05 22:25:52', '2025-12-17 19:47:44', 'bdzYJ5y4', '3676806'), - (516, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdzYJ5y4', '3677402'), - (516, 737, 'maybe', '2021-04-05 22:25:37', '2025-12-17 19:47:44', 'bdzYJ5y4', '3679349'), - (516, 738, 'maybe', '2021-04-19 05:53:12', '2025-12-17 19:47:45', 'bdzYJ5y4', '3680615'), - (516, 739, 'not_attending', '2021-05-07 22:55:34', '2025-12-17 19:47:46', 'bdzYJ5y4', '3680616'), - (516, 740, 'maybe', '2021-04-28 16:09:04', '2025-12-17 19:47:46', 'bdzYJ5y4', '3680617'), - (516, 741, 'not_attending', '2021-05-21 22:49:45', '2025-12-17 19:47:46', 'bdzYJ5y4', '3680618'), - (516, 743, 'not_attending', '2021-06-25 20:52:43', '2025-12-17 19:47:38', 'bdzYJ5y4', '3680623'), - (516, 744, 'maybe', '2021-06-10 19:19:24', '2025-12-17 19:47:47', 'bdzYJ5y4', '3680624'), - (516, 745, 'not_attending', '2021-06-30 02:24:43', '2025-12-17 19:47:38', 'bdzYJ5y4', '3680625'), - (516, 746, 'not_attending', '2021-07-07 21:01:11', '2025-12-17 19:47:39', 'bdzYJ5y4', '3680626'), - (516, 747, 'maybe', '2021-04-07 01:18:21', '2025-12-17 19:47:45', 'bdzYJ5y4', '3684754'), - (516, 748, 'not_attending', '2021-04-08 22:03:09', '2025-12-17 19:47:44', 'bdzYJ5y4', '3685353'), - (516, 749, 'not_attending', '2021-04-12 05:06:08', '2025-12-17 19:47:44', 'bdzYJ5y4', '3689769'), - (516, 750, 'not_attending', '2021-04-12 05:06:13', '2025-12-17 19:47:44', 'bdzYJ5y4', '3689962'), - (516, 751, 'not_attending', '2021-04-19 05:52:09', '2025-12-17 19:47:45', 'bdzYJ5y4', '3691364'), - (516, 752, 'not_attending', '2021-04-13 06:16:20', '2025-12-17 19:47:44', 'bdzYJ5y4', '3699422'), - (516, 753, 'not_attending', '2021-04-12 05:08:14', '2025-12-17 19:47:45', 'bdzYJ5y4', '3701861'), - (516, 754, 'not_attending', '2021-04-19 05:52:48', '2025-12-17 19:47:45', 'bdzYJ5y4', '3701863'), - (516, 755, 'not_attending', '2021-04-19 05:53:00', '2025-12-17 19:47:45', 'bdzYJ5y4', '3701864'), - (516, 756, 'maybe', '2021-04-26 05:03:36', '2025-12-17 19:47:46', 'bdzYJ5y4', '3704795'), - (516, 758, 'not_attending', '2021-04-19 05:51:49', '2025-12-17 19:47:45', 'bdzYJ5y4', '3713700'), - (516, 760, 'maybe', '2021-05-07 21:45:26', '2025-12-17 19:47:46', 'bdzYJ5y4', '3716035'), - (516, 761, 'not_attending', '2021-05-14 22:37:48', '2025-12-17 19:47:46', 'bdzYJ5y4', '3716041'), - (516, 762, 'not_attending', '2021-04-19 05:51:43', '2025-12-17 19:47:45', 'bdzYJ5y4', '3719118'), - (516, 764, 'not_attending', '2021-04-23 21:16:50', '2025-12-17 19:47:45', 'bdzYJ5y4', '3720507'), - (516, 765, 'maybe', '2021-04-19 05:52:40', '2025-12-17 19:47:45', 'bdzYJ5y4', '3720508'), - (516, 766, 'not_attending', '2021-05-10 00:37:03', '2025-12-17 19:47:46', 'bdzYJ5y4', '3721383'), - (516, 770, 'not_attending', '2021-04-28 16:08:55', '2025-12-17 19:47:46', 'bdzYJ5y4', '3724559'), - (516, 771, 'not_attending', '2021-04-28 16:08:52', '2025-12-17 19:47:46', 'bdzYJ5y4', '3726420'), - (516, 772, 'not_attending', '2021-04-28 23:16:15', '2025-12-17 19:47:46', 'bdzYJ5y4', '3726421'), - (516, 774, 'maybe', '2021-04-21 21:34:14', '2025-12-17 19:47:45', 'bdzYJ5y4', '3730212'), - (516, 777, 'attending', '2021-05-01 21:41:59', '2025-12-17 19:47:46', 'bdzYJ5y4', '3746248'), - (516, 778, 'not_attending', '2021-04-28 23:15:33', '2025-12-17 19:47:46', 'bdzYJ5y4', '3751550'), - (516, 779, 'not_attending', '2021-05-03 04:03:56', '2025-12-17 19:47:46', 'bdzYJ5y4', '3757118'), - (516, 781, 'not_attending', '2021-05-06 22:55:44', '2025-12-17 19:47:46', 'bdzYJ5y4', '3760130'), - (516, 782, 'maybe', '2021-05-03 04:04:08', '2025-12-17 19:47:46', 'bdzYJ5y4', '3761843'), - (516, 783, 'not_attending', '2021-05-03 04:03:48', '2025-12-17 19:47:46', 'bdzYJ5y4', '3767471'), - (516, 784, 'not_attending', '2021-05-06 22:55:40', '2025-12-17 19:47:46', 'bdzYJ5y4', '3768775'), - (516, 785, 'not_attending', '2021-05-11 02:34:58', '2025-12-17 19:47:46', 'bdzYJ5y4', '3779779'), - (516, 787, 'not_attending', '2021-05-10 00:36:36', '2025-12-17 19:47:46', 'bdzYJ5y4', '3780558'), - (516, 789, 'not_attending', '2021-05-25 03:26:19', '2025-12-17 19:47:47', 'bdzYJ5y4', '3785818'), - (516, 791, 'maybe', '2021-05-10 00:36:45', '2025-12-17 19:47:46', 'bdzYJ5y4', '3792735'), - (516, 792, 'maybe', '2021-05-11 02:35:15', '2025-12-17 19:47:46', 'bdzYJ5y4', '3793156'), - (516, 793, 'attending', '2021-05-31 09:36:50', '2025-12-17 19:47:47', 'bdzYJ5y4', '3793537'), - (516, 794, 'maybe', '2021-05-20 22:28:37', '2025-12-17 19:47:47', 'bdzYJ5y4', '3793538'), - (516, 795, 'maybe', '2021-06-09 01:34:01', '2025-12-17 19:47:47', 'bdzYJ5y4', '3793539'), - (516, 796, 'maybe', '2021-05-11 02:35:06', '2025-12-17 19:47:46', 'bdzYJ5y4', '3793862'), - (516, 797, 'not_attending', '2021-05-25 03:25:56', '2025-12-17 19:47:47', 'bdzYJ5y4', '3796195'), - (516, 798, 'maybe', '2021-05-11 02:35:37', '2025-12-17 19:47:46', 'bdzYJ5y4', '3796262'), - (516, 799, 'maybe', '2021-05-10 00:36:55', '2025-12-17 19:47:46', 'bdzYJ5y4', '3797767'), - (516, 800, 'not_attending', '2021-05-11 21:41:56', '2025-12-17 19:47:46', 'bdzYJ5y4', '3800908'), - (516, 803, 'not_attending', '2021-05-16 07:57:20', '2025-12-17 19:47:46', 'bdzYJ5y4', '3804665'), - (516, 804, 'not_attending', '2021-05-20 22:28:04', '2025-12-17 19:47:47', 'bdzYJ5y4', '3804775'), - (516, 808, 'maybe', '2021-05-20 22:26:36', '2025-12-17 19:47:46', 'bdzYJ5y4', '3807358'), - (516, 809, 'not_attending', '2021-05-16 07:58:01', '2025-12-17 19:47:46', 'bdzYJ5y4', '3807964'), - (516, 811, 'not_attending', '2021-05-16 07:57:03', '2025-12-17 19:47:46', 'bdzYJ5y4', '3808030'), - (516, 812, 'not_attending', '2021-05-16 07:57:08', '2025-12-17 19:47:46', 'bdzYJ5y4', '3808031'), - (516, 815, 'maybe', '2021-05-20 22:28:52', '2025-12-17 19:47:47', 'bdzYJ5y4', '3818136'), - (516, 816, 'not_attending', '2021-05-18 23:22:39', '2025-12-17 19:47:46', 'bdzYJ5y4', '3826524'), - (516, 818, 'maybe', '2021-05-21 04:24:15', '2025-12-17 19:47:47', 'bdzYJ5y4', '3833015'), - (516, 819, 'not_attending', '2021-05-25 03:26:37', '2025-12-17 19:47:47', 'bdzYJ5y4', '3833017'), - (516, 821, 'not_attending', '2021-05-31 09:36:32', '2025-12-17 19:47:47', 'bdzYJ5y4', '3963965'), - (516, 823, 'attending', '2021-06-15 03:10:57', '2025-12-17 19:47:48', 'bdzYJ5y4', '3974109'), - (516, 824, 'not_attending', '2021-06-02 04:24:43', '2025-12-17 19:47:47', 'bdzYJ5y4', '3974112'), - (516, 825, 'maybe', '2021-06-01 03:43:55', '2025-12-17 19:47:47', 'bdzYJ5y4', '3975283'), - (516, 827, 'not_attending', '2021-06-05 20:52:47', '2025-12-17 19:47:47', 'bdzYJ5y4', '3975311'), - (516, 828, 'attending', '2021-06-12 22:53:51', '2025-12-17 19:47:47', 'bdzYJ5y4', '3975312'), - (516, 831, 'not_attending', '2021-06-02 04:24:48', '2025-12-17 19:47:47', 'bdzYJ5y4', '3976649'), - (516, 832, 'not_attending', '2021-06-02 04:24:53', '2025-12-17 19:47:47', 'bdzYJ5y4', '3976650'), - (516, 833, 'maybe', '2021-06-04 16:43:18', '2025-12-17 19:47:47', 'bdzYJ5y4', '3990438'), - (516, 834, 'maybe', '2021-06-04 16:43:04', '2025-12-17 19:47:47', 'bdzYJ5y4', '3990439'), - (516, 838, 'maybe', '2021-06-06 22:03:34', '2025-12-17 19:47:47', 'bdzYJ5y4', '3994992'), - (516, 839, 'not_attending', '2021-06-06 22:03:26', '2025-12-17 19:47:47', 'bdzYJ5y4', '4002121'), - (516, 841, 'maybe', '2021-06-15 00:18:02', '2025-12-17 19:47:48', 'bdzYJ5y4', '4007434'), - (516, 844, 'maybe', '2021-06-15 03:10:31', '2025-12-17 19:47:38', 'bdzYJ5y4', '4014338'), - (516, 845, 'maybe', '2021-06-24 03:25:31', '2025-12-17 19:47:38', 'bdzYJ5y4', '4015717'), - (516, 850, 'attending', '2021-08-25 20:45:10', '2025-12-17 19:47:42', 'bdzYJ5y4', '4015722'), - (516, 853, 'not_attending', '2021-08-03 21:26:53', '2025-12-17 19:47:41', 'bdzYJ5y4', '4015725'), - (516, 866, 'maybe', '2021-06-15 00:18:19', '2025-12-17 19:47:38', 'bdzYJ5y4', '4020424'), - (516, 867, 'attending', '2021-06-20 03:20:56', '2025-12-17 19:47:38', 'bdzYJ5y4', '4021848'), - (516, 869, 'maybe', '2021-06-28 06:09:36', '2025-12-17 19:47:38', 'bdzYJ5y4', '4136744'), - (516, 870, 'attending', '2021-07-03 00:29:55', '2025-12-17 19:47:39', 'bdzYJ5y4', '4136937'), - (516, 871, 'not_attending', '2021-07-07 21:01:04', '2025-12-17 19:47:39', 'bdzYJ5y4', '4136938'), - (516, 872, 'maybe', '2021-07-17 20:13:21', '2025-12-17 19:47:40', 'bdzYJ5y4', '4136947'), - (516, 873, 'not_attending', '2021-06-18 23:07:06', '2025-12-17 19:47:48', 'bdzYJ5y4', '4138297'), - (516, 875, 'not_attending', '2021-06-24 03:25:43', '2025-12-17 19:47:38', 'bdzYJ5y4', '4139816'), - (516, 879, 'maybe', '2021-06-24 03:25:13', '2025-12-17 19:47:38', 'bdzYJ5y4', '4147806'), - (516, 880, 'not_attending', '2021-06-18 23:07:14', '2025-12-17 19:47:48', 'bdzYJ5y4', '4205383'), - (516, 881, 'not_attending', '2021-06-20 03:19:51', '2025-12-17 19:47:38', 'bdzYJ5y4', '4205662'), - (516, 883, 'maybe', '2021-06-21 00:32:29', '2025-12-17 19:47:38', 'bdzYJ5y4', '4209121'), - (516, 884, 'not_attending', '2021-08-06 02:02:05', '2025-12-17 19:47:42', 'bdzYJ5y4', '4210314'), - (516, 885, 'attending', '2021-06-27 22:52:38', '2025-12-17 19:47:38', 'bdzYJ5y4', '4222370'), - (516, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'bdzYJ5y4', '4225444'), - (516, 888, 'not_attending', '2021-06-26 04:07:00', '2025-12-17 19:47:38', 'bdzYJ5y4', '4226312'), - (516, 889, 'not_attending', '2021-06-28 06:09:00', '2025-12-17 19:47:38', 'bdzYJ5y4', '4227492'), - (516, 890, 'attending', '2021-06-29 23:07:09', '2025-12-17 19:47:38', 'bdzYJ5y4', '4228666'), - (516, 894, 'maybe', '2021-07-18 23:23:50', '2025-12-17 19:47:39', 'bdzYJ5y4', '4229423'), - (516, 896, 'not_attending', '2021-06-28 06:09:07', '2025-12-17 19:47:38', 'bdzYJ5y4', '4231145'), - (516, 898, 'not_attending', '2021-06-30 02:24:27', '2025-12-17 19:47:38', 'bdzYJ5y4', '4236746'), - (516, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'bdzYJ5y4', '4239259'), - (516, 900, 'attending', '2021-07-18 23:24:35', '2025-12-17 19:47:40', 'bdzYJ5y4', '4240316'), - (516, 901, 'not_attending', '2021-07-26 21:23:46', '2025-12-17 19:47:40', 'bdzYJ5y4', '4240317'), - (516, 902, 'not_attending', '2021-07-27 21:52:21', '2025-12-17 19:47:41', 'bdzYJ5y4', '4240318'), - (516, 903, 'attending', '2021-08-07 02:16:20', '2025-12-17 19:47:42', 'bdzYJ5y4', '4240320'), - (516, 905, 'maybe', '2021-07-07 16:15:51', '2025-12-17 19:47:39', 'bdzYJ5y4', '4250163'), - (516, 914, 'not_attending', '2021-07-17 20:13:00', '2025-12-17 19:47:39', 'bdzYJ5y4', '4273767'), - (516, 915, 'maybe', '2021-07-17 20:13:12', '2025-12-17 19:47:39', 'bdzYJ5y4', '4273770'), - (516, 916, 'attending', '2021-07-22 21:27:50', '2025-12-17 19:47:40', 'bdzYJ5y4', '4273772'), - (516, 919, 'not_attending', '2021-07-17 20:08:34', '2025-12-17 19:47:39', 'bdzYJ5y4', '4275957'), - (516, 920, 'maybe', '2021-07-22 21:30:20', '2025-12-17 19:47:40', 'bdzYJ5y4', '4277819'), - (516, 922, 'not_attending', '2021-07-20 00:03:51', '2025-12-17 19:47:40', 'bdzYJ5y4', '4280811'), - (516, 923, 'not_attending', '2021-07-20 00:03:35', '2025-12-17 19:47:40', 'bdzYJ5y4', '4292773'), - (516, 927, 'maybe', '2021-07-22 21:30:31', '2025-12-17 19:47:40', 'bdzYJ5y4', '4297216'), - (516, 928, 'maybe', '2021-07-22 21:30:38', '2025-12-17 19:47:40', 'bdzYJ5y4', '4297218'), - (516, 929, 'not_attending', '2021-08-03 21:26:04', '2025-12-17 19:47:41', 'bdzYJ5y4', '4297223'), - (516, 931, 'attending', '2021-07-26 21:23:03', '2025-12-17 19:47:40', 'bdzYJ5y4', '4301535'), - (516, 933, 'attending', '2021-07-26 17:26:40', '2025-12-17 19:47:40', 'bdzYJ5y4', '4301723'), - (516, 934, 'maybe', '2021-08-03 21:25:40', '2025-12-17 19:47:41', 'bdzYJ5y4', '4302093'), - (516, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'bdzYJ5y4', '4304151'), - (516, 937, 'not_attending', '2021-07-27 21:48:53', '2025-12-17 19:47:40', 'bdzYJ5y4', '4306596'), - (516, 940, 'not_attending', '2021-07-27 21:51:49', '2025-12-17 19:47:40', 'bdzYJ5y4', '4309049'), - (516, 942, 'not_attending', '2021-07-26 21:23:56', '2025-12-17 19:47:40', 'bdzYJ5y4', '4310297'), - (516, 943, 'not_attending', '2021-07-27 21:52:30', '2025-12-17 19:47:41', 'bdzYJ5y4', '4310979'), - (516, 944, 'not_attending', '2021-08-01 23:50:18', '2025-12-17 19:47:41', 'bdzYJ5y4', '4310980'), - (516, 945, 'not_attending', '2021-08-01 23:50:23', '2025-12-17 19:47:42', 'bdzYJ5y4', '4310981'), - (516, 946, 'maybe', '2021-08-01 23:49:24', '2025-12-17 19:47:40', 'bdzYJ5y4', '4314835'), - (516, 947, 'attending', '2021-08-06 01:59:19', '2025-12-17 19:47:41', 'bdzYJ5y4', '4315713'), - (516, 952, 'attending', '2021-08-01 23:49:50', '2025-12-17 19:47:41', 'bdzYJ5y4', '4318286'), - (516, 954, 'maybe', '2021-08-06 02:01:49', '2025-12-17 19:47:41', 'bdzYJ5y4', '4331303'), - (516, 955, 'maybe', '2021-08-06 02:01:42', '2025-12-17 19:47:41', 'bdzYJ5y4', '4331588'), - (516, 956, 'not_attending', '2021-08-03 21:25:31', '2025-12-17 19:47:40', 'bdzYJ5y4', '4331968'), - (516, 957, 'not_attending', '2021-08-06 01:59:47', '2025-12-17 19:47:41', 'bdzYJ5y4', '4338834'), - (516, 958, 'not_attending', '2021-08-07 02:16:00', '2025-12-17 19:47:41', 'bdzYJ5y4', '4342996'), - (516, 960, 'not_attending', '2021-08-09 22:17:03', '2025-12-17 19:47:41', 'bdzYJ5y4', '4344519'), - (516, 961, 'not_attending', '2021-08-13 17:04:02', '2025-12-17 19:47:42', 'bdzYJ5y4', '4345519'), - (516, 962, 'not_attending', '2021-08-09 22:17:12', '2025-12-17 19:47:41', 'bdzYJ5y4', '4346305'), - (516, 969, 'not_attending', '2021-08-13 17:04:07', '2025-12-17 19:47:42', 'bdzYJ5y4', '4356699'), - (516, 970, 'not_attending', '2021-08-13 17:03:57', '2025-12-17 19:47:42', 'bdzYJ5y4', '4356798'), - (516, 971, 'maybe', '2021-09-05 20:51:31', '2025-12-17 19:47:43', 'bdzYJ5y4', '4356801'), - (516, 973, 'attending', '2021-08-21 18:36:39', '2025-12-17 19:47:42', 'bdzYJ5y4', '4366186'), - (516, 974, 'attending', '2021-08-22 20:20:14', '2025-12-17 19:47:42', 'bdzYJ5y4', '4366187'), - (516, 980, 'not_attending', '2021-08-21 18:36:30', '2025-12-17 19:47:42', 'bdzYJ5y4', '4380358'), - (516, 981, 'not_attending', '2021-08-25 20:48:12', '2025-12-17 19:47:42', 'bdzYJ5y4', '4387305'), - (516, 985, 'attending', '2021-08-21 18:36:22', '2025-12-17 19:47:42', 'bdzYJ5y4', '4391748'), - (516, 987, 'attending', '2021-09-01 18:49:12', '2025-12-17 19:47:43', 'bdzYJ5y4', '4402634'), - (516, 988, 'not_attending', '2021-08-25 20:48:17', '2025-12-17 19:47:42', 'bdzYJ5y4', '4402823'), - (516, 989, 'not_attending', '2021-09-05 20:52:07', '2025-12-17 19:47:43', 'bdzYJ5y4', '4414282'), - (516, 990, 'attending', '2021-08-29 22:25:39', '2025-12-17 19:47:43', 'bdzYJ5y4', '4420735'), - (516, 991, 'attending', '2021-09-06 23:31:04', '2025-12-17 19:47:43', 'bdzYJ5y4', '4420738'), - (516, 992, 'not_attending', '2021-09-14 01:04:28', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420739'), - (516, 993, 'attending', '2021-09-19 20:51:18', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420741'), - (516, 994, 'maybe', '2021-10-02 12:47:20', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420742'), - (516, 995, 'not_attending', '2021-10-08 20:46:58', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420744'), - (516, 996, 'attending', '2021-10-10 21:11:29', '2025-12-17 19:47:35', 'bdzYJ5y4', '4420747'), - (516, 997, 'attending', '2021-10-12 02:09:43', '2025-12-17 19:47:35', 'bdzYJ5y4', '4420748'), - (516, 998, 'not_attending', '2021-10-12 02:09:31', '2025-12-17 19:47:36', 'bdzYJ5y4', '4420749'), - (516, 999, 'not_attending', '2021-08-29 22:25:22', '2025-12-17 19:47:43', 'bdzYJ5y4', '4421150'), - (516, 1000, 'not_attending', '2021-08-30 01:15:27', '2025-12-17 19:47:43', 'bdzYJ5y4', '4424456'), - (516, 1001, 'maybe', '2021-08-30 01:15:32', '2025-12-17 19:47:43', 'bdzYJ5y4', '4424687'), - (516, 1002, 'not_attending', '2021-08-30 21:16:23', '2025-12-17 19:47:43', 'bdzYJ5y4', '4424932'), - (516, 1004, 'maybe', '2021-09-09 19:56:51', '2025-12-17 19:47:43', 'bdzYJ5y4', '4438804'), - (516, 1005, 'not_attending', '2021-09-22 18:23:02', '2025-12-17 19:47:34', 'bdzYJ5y4', '4438807'), - (516, 1013, 'attending', '2021-09-02 23:45:54', '2025-12-17 19:47:43', 'bdzYJ5y4', '4438817'), - (516, 1014, 'not_attending', '2021-09-05 20:51:06', '2025-12-17 19:47:43', 'bdzYJ5y4', '4439233'), - (516, 1015, 'not_attending', '2021-09-13 22:27:15', '2025-12-17 19:47:43', 'bdzYJ5y4', '4440800'), - (516, 1016, 'not_attending', '2021-09-05 20:51:53', '2025-12-17 19:47:43', 'bdzYJ5y4', '4441271'), - (516, 1017, 'maybe', '2021-09-05 20:51:19', '2025-12-17 19:47:43', 'bdzYJ5y4', '4441822'), - (516, 1018, 'maybe', '2021-09-05 20:51:00', '2025-12-17 19:47:43', 'bdzYJ5y4', '4448883'), - (516, 1019, 'maybe', '2021-09-09 19:55:15', '2025-12-17 19:47:43', 'bdzYJ5y4', '4450515'), - (516, 1020, 'maybe', '2021-09-13 22:38:51', '2025-12-17 19:47:43', 'bdzYJ5y4', '4451787'), - (516, 1021, 'maybe', '2021-09-17 13:53:37', '2025-12-17 19:47:34', 'bdzYJ5y4', '4451803'), - (516, 1022, 'not_attending', '2021-09-15 22:53:55', '2025-12-17 19:47:43', 'bdzYJ5y4', '4458628'), - (516, 1023, 'attending', '2021-09-09 19:52:18', '2025-12-17 19:47:43', 'bdzYJ5y4', '4461883'), - (516, 1024, 'not_attending', '2021-09-10 02:04:33', '2025-12-17 19:47:43', 'bdzYJ5y4', '4462044'), - (516, 1025, 'maybe', '2021-09-10 01:54:31', '2025-12-17 19:47:43', 'bdzYJ5y4', '4462052'), - (516, 1027, 'not_attending', '2021-09-22 18:23:10', '2025-12-17 19:47:34', 'bdzYJ5y4', '4472982'), - (516, 1028, 'not_attending', '2021-09-20 00:16:21', '2025-12-17 19:47:34', 'bdzYJ5y4', '4472983'), - (516, 1029, 'not_attending', '2021-09-13 22:27:08', '2025-12-17 19:47:43', 'bdzYJ5y4', '4473063'), - (516, 1030, 'not_attending', '2021-09-17 13:53:28', '2025-12-17 19:47:34', 'bdzYJ5y4', '4473064'), - (516, 1031, 'not_attending', '2021-09-22 18:22:44', '2025-12-17 19:47:34', 'bdzYJ5y4', '4473789'), - (516, 1034, 'not_attending', '2021-09-17 13:52:57', '2025-12-17 19:47:43', 'bdzYJ5y4', '4486265'), - (516, 1035, 'maybe', '2021-09-20 00:15:37', '2025-12-17 19:47:34', 'bdzYJ5y4', '4492184'), - (516, 1036, 'attending', '2021-09-22 18:22:16', '2025-12-17 19:47:34', 'bdzYJ5y4', '4493166'), - (516, 1037, 'not_attending', '2021-09-22 14:02:05', '2025-12-17 19:47:34', 'bdzYJ5y4', '4493233'), - (516, 1038, 'attending', '2021-09-20 00:16:24', '2025-12-17 19:47:34', 'bdzYJ5y4', '4496603'), - (516, 1042, 'attending', '2021-11-22 23:20:11', '2025-12-17 19:47:37', 'bdzYJ5y4', '4496607'), - (516, 1045, 'not_attending', '2021-10-13 02:11:18', '2025-12-17 19:47:36', 'bdzYJ5y4', '4496610'), - (516, 1046, 'attending', '2021-10-16 14:46:11', '2025-12-17 19:47:35', 'bdzYJ5y4', '4496611'), - (516, 1048, 'attending', '2021-11-11 18:18:31', '2025-12-17 19:47:36', 'bdzYJ5y4', '4496613'), - (516, 1049, 'attending', '2022-01-22 23:12:31', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496614'), - (516, 1050, 'attending', '2022-01-29 20:37:11', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496615'), - (516, 1051, 'attending', '2022-01-31 19:17:13', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496616'), - (516, 1053, 'attending', '2022-02-15 17:57:04', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496618'), - (516, 1054, 'attending', '2022-03-14 01:54:40', '2025-12-17 19:47:25', 'bdzYJ5y4', '4496619'), - (516, 1056, 'maybe', '2022-01-04 17:03:53', '2025-12-17 19:47:31', 'bdzYJ5y4', '4496622'), - (516, 1058, 'not_attending', '2022-02-15 17:57:13', '2025-12-17 19:47:33', 'bdzYJ5y4', '4496625'), - (516, 1059, 'not_attending', '2022-03-11 16:51:55', '2025-12-17 19:47:33', 'bdzYJ5y4', '4496626'), - (516, 1060, 'attending', '2022-03-21 13:51:30', '2025-12-17 19:47:25', 'bdzYJ5y4', '4496627'), - (516, 1061, 'not_attending', '2022-02-12 22:45:04', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496628'), - (516, 1062, 'attending', '2022-02-26 17:24:08', '2025-12-17 19:47:33', 'bdzYJ5y4', '4496629'), - (516, 1063, 'not_attending', '2021-09-22 18:23:20', '2025-12-17 19:47:34', 'bdzYJ5y4', '4496630'), - (516, 1066, 'not_attending', '2021-09-22 18:23:28', '2025-12-17 19:47:34', 'bdzYJ5y4', '4506039'), - (516, 1067, 'attending', '2021-09-23 02:08:27', '2025-12-17 19:47:34', 'bdzYJ5y4', '4508342'), - (516, 1068, 'maybe', '2021-09-28 01:28:04', '2025-12-17 19:47:34', 'bdzYJ5y4', '4511471'), - (516, 1070, 'not_attending', '2021-09-28 21:41:34', '2025-12-17 19:47:34', 'bdzYJ5y4', '4512562'), - (516, 1071, 'not_attending', '2021-10-04 19:42:57', '2025-12-17 19:47:34', 'bdzYJ5y4', '4516078'), - (516, 1072, 'maybe', '2021-10-02 21:43:32', '2025-12-17 19:47:34', 'bdzYJ5y4', '4516287'), - (516, 1074, 'not_attending', '2021-09-29 21:20:06', '2025-12-17 19:47:34', 'bdzYJ5y4', '4528953'), - (516, 1077, 'not_attending', '2021-10-13 02:10:43', '2025-12-17 19:47:34', 'bdzYJ5y4', '4540903'), - (516, 1079, 'not_attending', '2021-10-20 17:07:07', '2025-12-17 19:47:35', 'bdzYJ5y4', '4563823'), - (516, 1081, 'not_attending', '2021-10-12 01:47:50', '2025-12-17 19:47:34', 'bdzYJ5y4', '4564602'), - (516, 1082, 'not_attending', '2021-10-14 20:16:30', '2025-12-17 19:47:35', 'bdzYJ5y4', '4566762'), - (516, 1083, 'not_attending', '2021-10-12 02:08:27', '2025-12-17 19:47:34', 'bdzYJ5y4', '4566768'), - (516, 1084, 'not_attending', '2021-10-12 02:08:20', '2025-12-17 19:47:35', 'bdzYJ5y4', '4566769'), - (516, 1085, 'not_attending', '2021-12-21 02:20:21', '2025-12-17 19:47:31', 'bdzYJ5y4', '4568542'), - (516, 1086, 'attending', '2021-10-13 02:08:21', '2025-12-17 19:47:34', 'bdzYJ5y4', '4568602'), - (516, 1087, 'not_attending', '2021-10-16 14:45:55', '2025-12-17 19:47:35', 'bdzYJ5y4', '4572153'), - (516, 1090, 'maybe', '2021-10-17 19:18:43', '2025-12-17 19:47:35', 'bdzYJ5y4', '4574713'), - (516, 1093, 'attending', '2021-10-20 18:44:14', '2025-12-17 19:47:35', 'bdzYJ5y4', '4585962'), - (516, 1094, 'maybe', '2021-10-26 02:07:14', '2025-12-17 19:47:36', 'bdzYJ5y4', '4587337'), - (516, 1095, 'not_attending', '2021-10-27 20:29:54', '2025-12-17 19:47:36', 'bdzYJ5y4', '4596356'), - (516, 1097, 'not_attending', '2021-11-04 00:07:15', '2025-12-17 19:47:36', 'bdzYJ5y4', '4598860'), - (516, 1098, 'maybe', '2021-11-11 00:33:19', '2025-12-17 19:47:36', 'bdzYJ5y4', '4598861'), - (516, 1099, 'not_attending', '2021-10-31 22:59:23', '2025-12-17 19:47:36', 'bdzYJ5y4', '4602797'), - (516, 1100, 'not_attending', '2021-11-08 02:51:40', '2025-12-17 19:47:36', 'bdzYJ5y4', '4607305'), - (516, 1101, 'not_attending', '2021-11-11 15:10:56', '2025-12-17 19:47:36', 'bdzYJ5y4', '4607339'), - (516, 1102, 'maybe', '2021-11-08 02:52:39', '2025-12-17 19:47:37', 'bdzYJ5y4', '4612098'), - (516, 1103, 'not_attending', '2021-11-09 15:58:38', '2025-12-17 19:47:36', 'bdzYJ5y4', '4616350'), - (516, 1104, 'attending', '2021-11-11 18:18:29', '2025-12-17 19:47:36', 'bdzYJ5y4', '4618310'), - (516, 1105, 'not_attending', '2021-11-08 23:20:32', '2025-12-17 19:47:36', 'bdzYJ5y4', '4618567'), - (516, 1106, 'not_attending', '2021-11-12 23:48:50', '2025-12-17 19:47:36', 'bdzYJ5y4', '4620452'), - (516, 1107, 'not_attending', '2021-11-17 00:18:23', '2025-12-17 19:47:37', 'bdzYJ5y4', '4620697'), - (516, 1108, 'not_attending', '2021-11-17 23:22:47', '2025-12-17 19:47:37', 'bdzYJ5y4', '4632276'), - (516, 1114, 'attending', '2021-11-11 18:18:19', '2025-12-17 19:47:36', 'bdzYJ5y4', '4637896'), - (516, 1116, 'not_attending', '2021-11-29 00:47:40', '2025-12-17 19:47:37', 'bdzYJ5y4', '4642994'), - (516, 1117, 'not_attending', '2021-12-08 03:35:45', '2025-12-17 19:47:38', 'bdzYJ5y4', '4642995'), - (516, 1118, 'maybe', '2021-12-06 15:34:56', '2025-12-17 19:47:38', 'bdzYJ5y4', '4642996'), - (516, 1119, 'not_attending', '2021-12-21 02:20:11', '2025-12-17 19:47:31', 'bdzYJ5y4', '4642997'), - (516, 1124, 'not_attending', '2021-12-13 19:25:10', '2025-12-17 19:47:38', 'bdzYJ5y4', '4644025'), - (516, 1126, 'attending', '2021-12-12 00:27:04', '2025-12-17 19:47:38', 'bdzYJ5y4', '4645687'), - (516, 1127, 'attending', '2021-12-12 00:27:14', '2025-12-17 19:47:38', 'bdzYJ5y4', '4645698'), - (516, 1128, 'not_attending', '2021-11-17 00:18:43', '2025-12-17 19:47:37', 'bdzYJ5y4', '4645704'), - (516, 1129, 'attending', '2021-11-14 23:38:00', '2025-12-17 19:47:37', 'bdzYJ5y4', '4645705'), - (516, 1130, 'attending', '2021-11-29 00:48:06', '2025-12-17 19:47:37', 'bdzYJ5y4', '4658824'), - (516, 1131, 'not_attending', '2021-12-18 19:09:38', '2025-12-17 19:47:31', 'bdzYJ5y4', '4658825'), - (516, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'bdzYJ5y4', '4668385'), - (516, 1135, 'not_attending', '2021-11-27 00:51:27', '2025-12-17 19:47:37', 'bdzYJ5y4', '4670469'), - (516, 1139, 'maybe', '2021-11-29 00:47:55', '2025-12-17 19:47:37', 'bdzYJ5y4', '4675604'), - (516, 1140, 'attending', '2021-12-03 22:41:10', '2025-12-17 19:47:37', 'bdzYJ5y4', '4679701'), - (516, 1142, 'not_attending', '2021-12-06 15:33:09', '2025-12-17 19:47:37', 'bdzYJ5y4', '4681923'), - (516, 1144, 'not_attending', '2021-12-07 20:15:34', '2025-12-17 19:47:37', 'bdzYJ5y4', '4687090'), - (516, 1145, 'attending', '2021-12-06 15:33:37', '2025-12-17 19:47:38', 'bdzYJ5y4', '4691157'), - (516, 1146, 'maybe', '2021-12-09 19:35:25', '2025-12-17 19:47:38', 'bdzYJ5y4', '4692841'), - (516, 1149, 'attending', '2021-12-08 03:35:16', '2025-12-17 19:47:38', 'bdzYJ5y4', '4694407'), - (516, 1150, 'maybe', '2021-12-16 22:45:08', '2025-12-17 19:47:38', 'bdzYJ5y4', '4706262'), - (516, 1151, 'not_attending', '2022-01-05 04:38:20', '2025-12-17 19:47:31', 'bdzYJ5y4', '4708704'), - (516, 1152, 'not_attending', '2022-01-10 17:34:16', '2025-12-17 19:47:31', 'bdzYJ5y4', '4708705'), - (516, 1153, 'not_attending', '2022-01-18 13:42:21', '2025-12-17 19:47:32', 'bdzYJ5y4', '4708707'), - (516, 1154, 'not_attending', '2022-01-26 21:23:19', '2025-12-17 19:47:32', 'bdzYJ5y4', '4708708'), - (516, 1156, 'not_attending', '2021-12-21 02:20:00', '2025-12-17 19:47:31', 'bdzYJ5y4', '4715207'), - (516, 1159, 'not_attending', '2022-01-03 02:22:06', '2025-12-17 19:47:31', 'bdzYJ5y4', '4717532'), - (516, 1162, 'maybe', '2021-12-28 21:42:58', '2025-12-17 19:47:31', 'bdzYJ5y4', '4718771'), - (516, 1163, 'not_attending', '2022-01-03 02:23:11', '2025-12-17 19:47:31', 'bdzYJ5y4', '4724206'), - (516, 1164, 'not_attending', '2022-01-03 02:21:49', '2025-12-17 19:47:31', 'bdzYJ5y4', '4724208'), - (516, 1165, 'not_attending', '2022-01-03 02:22:00', '2025-12-17 19:47:31', 'bdzYJ5y4', '4724210'), - (516, 1167, 'not_attending', '2022-01-03 02:22:44', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731015'), - (516, 1168, 'not_attending', '2022-01-03 02:22:39', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731043'), - (516, 1169, 'not_attending', '2022-01-03 02:22:48', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731044'), - (516, 1170, 'not_attending', '2022-01-04 14:21:32', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731045'), - (516, 1173, 'attending', '2022-01-04 14:21:18', '2025-12-17 19:47:31', 'bdzYJ5y4', '4736495'), - (516, 1174, 'not_attending', '2022-01-15 06:05:31', '2025-12-17 19:47:31', 'bdzYJ5y4', '4736496'), - (516, 1175, 'attending', '2022-01-20 20:56:37', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736497'), - (516, 1176, 'attending', '2022-01-31 00:52:40', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736498'), - (516, 1177, 'not_attending', '2022-02-12 22:45:07', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736499'), - (516, 1178, 'attending', '2022-01-29 20:37:14', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736500'), - (516, 1179, 'attending', '2022-02-15 17:54:38', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736501'), - (516, 1180, 'not_attending', '2022-02-15 17:57:10', '2025-12-17 19:47:33', 'bdzYJ5y4', '4736502'), - (516, 1181, 'attending', '2022-02-26 17:24:05', '2025-12-17 19:47:33', 'bdzYJ5y4', '4736503'), - (516, 1182, 'not_attending', '2022-03-11 16:51:50', '2025-12-17 19:47:33', 'bdzYJ5y4', '4736504'), - (516, 1184, 'not_attending', '2022-01-12 14:42:07', '2025-12-17 19:47:31', 'bdzYJ5y4', '4742350'), - (516, 1185, 'attending', '2022-01-09 04:45:33', '2025-12-17 19:47:31', 'bdzYJ5y4', '4746789'), - (516, 1188, 'not_attending', '2022-01-11 04:04:42', '2025-12-17 19:47:32', 'bdzYJ5y4', '4753929'), - (516, 1193, 'not_attending', '2022-01-21 21:55:39', '2025-12-17 19:47:32', 'bdzYJ5y4', '4759563'), - (516, 1196, 'attending', '2022-01-19 20:01:46', '2025-12-17 19:47:32', 'bdzYJ5y4', '4765583'), - (516, 1200, 'not_attending', '2022-01-17 23:20:43', '2025-12-17 19:47:32', 'bdzYJ5y4', '4766830'), - (516, 1202, 'not_attending', '2022-01-26 21:23:24', '2025-12-17 19:47:32', 'bdzYJ5y4', '4769423'), - (516, 1203, 'maybe', '2022-01-22 23:09:40', '2025-12-17 19:47:32', 'bdzYJ5y4', '4773535'), - (516, 1204, 'not_attending', '2022-02-13 17:42:32', '2025-12-17 19:47:32', 'bdzYJ5y4', '4773576'), - (516, 1205, 'attending', '2022-03-13 21:40:23', '2025-12-17 19:47:33', 'bdzYJ5y4', '4773577'), - (516, 1206, 'attending', '2022-03-27 20:27:45', '2025-12-17 19:47:27', 'bdzYJ5y4', '4773578'), - (516, 1207, 'attending', '2022-05-06 21:01:00', '2025-12-17 19:47:28', 'bdzYJ5y4', '4773579'), - (516, 1214, 'not_attending', '2022-02-15 20:35:16', '2025-12-17 19:47:32', 'bdzYJ5y4', '4780761'), - (516, 1216, 'not_attending', '2022-01-27 20:30:33', '2025-12-17 19:47:32', 'bdzYJ5y4', '4781137'), - (516, 1222, 'not_attending', '2022-02-15 20:35:12', '2025-12-17 19:47:32', 'bdzYJ5y4', '5015628'), - (516, 1223, 'not_attending', '2022-02-01 20:35:17', '2025-12-17 19:47:32', 'bdzYJ5y4', '5015635'), - (516, 1224, 'not_attending', '2022-02-01 20:34:40', '2025-12-17 19:47:32', 'bdzYJ5y4', '5016682'), - (516, 1225, 'maybe', '2022-02-03 23:22:51', '2025-12-17 19:47:32', 'bdzYJ5y4', '5019063'), - (516, 1228, 'not_attending', '2022-02-10 14:40:05', '2025-12-17 19:47:32', 'bdzYJ5y4', '5028238'), - (516, 1229, 'not_attending', '2022-02-15 20:35:30', '2025-12-17 19:47:32', 'bdzYJ5y4', '5034963'), - (516, 1231, 'not_attending', '2022-02-21 03:50:34', '2025-12-17 19:47:33', 'bdzYJ5y4', '5037637'), - (516, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'bdzYJ5y4', '5038850'), - (516, 1234, 'not_attending', '2022-02-15 20:35:07', '2025-12-17 19:47:32', 'bdzYJ5y4', '5042197'), - (516, 1235, 'not_attending', '2022-02-15 20:35:05', '2025-12-17 19:47:32', 'bdzYJ5y4', '5044505'), - (516, 1236, 'not_attending', '2022-02-14 23:33:47', '2025-12-17 19:47:32', 'bdzYJ5y4', '5045826'), - (516, 1238, 'not_attending', '2022-02-21 03:50:26', '2025-12-17 19:47:32', 'bdzYJ5y4', '5052236'), - (516, 1239, 'not_attending', '2022-03-02 04:39:15', '2025-12-17 19:47:33', 'bdzYJ5y4', '5052238'), - (516, 1240, 'not_attending', '2022-03-11 23:17:23', '2025-12-17 19:47:33', 'bdzYJ5y4', '5052239'), - (516, 1241, 'not_attending', '2022-03-16 00:56:33', '2025-12-17 19:47:25', 'bdzYJ5y4', '5052240'), - (516, 1242, 'not_attending', '2022-03-24 14:34:35', '2025-12-17 19:47:25', 'bdzYJ5y4', '5052241'), - (516, 1243, 'not_attending', '2022-03-04 22:43:44', '2025-12-17 19:47:33', 'bdzYJ5y4', '5058336'), - (516, 1244, 'not_attending', '2022-02-21 20:41:01', '2025-12-17 19:47:33', 'bdzYJ5y4', '5060490'), - (516, 1245, 'maybe', '2022-02-23 05:26:34', '2025-12-17 19:47:33', 'bdzYJ5y4', '5061301'), - (516, 1246, 'not_attending', '2022-03-02 19:17:59', '2025-12-17 19:47:33', 'bdzYJ5y4', '5064727'), - (516, 1249, 'not_attending', '2022-03-04 22:44:08', '2025-12-17 19:47:33', 'bdzYJ5y4', '5068530'), - (516, 1250, 'not_attending', '2022-02-28 22:14:42', '2025-12-17 19:47:33', 'bdzYJ5y4', '5069735'), - (516, 1252, 'not_attending', '2022-02-28 22:14:38', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129121'), - (516, 1253, 'maybe', '2022-02-28 22:14:06', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129122'), - (516, 1254, 'not_attending', '2022-03-02 19:17:26', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129129'), - (516, 1255, 'not_attending', '2022-02-28 00:15:05', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129140'), - (516, 1258, 'not_attending', '2022-03-02 19:17:57', '2025-12-17 19:47:33', 'bdzYJ5y4', '5132531'), - (516, 1259, 'attending', '2022-02-28 22:20:57', '2025-12-17 19:47:33', 'bdzYJ5y4', '5132533'), - (516, 1261, 'not_attending', '2022-03-04 22:44:03', '2025-12-17 19:47:33', 'bdzYJ5y4', '5154274'), - (516, 1264, 'not_attending', '2022-03-21 13:51:58', '2025-12-17 19:47:25', 'bdzYJ5y4', '5160281'), - (516, 1265, 'not_attending', '2022-03-10 05:23:42', '2025-12-17 19:47:33', 'bdzYJ5y4', '5160862'), - (516, 1266, 'attending', '2022-03-14 23:46:27', '2025-12-17 19:47:33', 'bdzYJ5y4', '5166407'), - (516, 1267, 'not_attending', '2022-03-13 21:57:55', '2025-12-17 19:47:25', 'bdzYJ5y4', '5169578'), - (516, 1269, 'attending', '2022-03-13 21:57:33', '2025-12-17 19:47:25', 'bdzYJ5y4', '5179439'), - (516, 1270, 'not_attending', '2022-03-16 00:56:25', '2025-12-17 19:47:25', 'bdzYJ5y4', '5181277'), - (516, 1271, 'not_attending', '2022-03-15 13:59:47', '2025-12-17 19:47:25', 'bdzYJ5y4', '5181648'), - (516, 1272, 'attending', '2022-03-15 21:26:59', '2025-12-17 19:47:25', 'bdzYJ5y4', '5186582'), - (516, 1273, 'attending', '2022-03-26 01:10:48', '2025-12-17 19:47:25', 'bdzYJ5y4', '5186583'), - (516, 1274, 'attending', '2022-03-27 03:21:49', '2025-12-17 19:47:26', 'bdzYJ5y4', '5186585'), - (516, 1275, 'attending', '2022-03-27 03:21:58', '2025-12-17 19:47:26', 'bdzYJ5y4', '5186587'), - (516, 1276, 'not_attending', '2022-03-23 20:09:57', '2025-12-17 19:47:25', 'bdzYJ5y4', '5186820'), - (516, 1278, 'not_attending', '2022-03-17 11:18:37', '2025-12-17 19:47:33', 'bdzYJ5y4', '5186920'), - (516, 1279, 'maybe', '2022-03-20 17:18:06', '2025-12-17 19:47:25', 'bdzYJ5y4', '5187212'), - (516, 1280, 'not_attending', '2022-03-17 20:08:55', '2025-12-17 19:47:25', 'bdzYJ5y4', '5189749'), - (516, 1281, 'attending', '2022-04-08 01:09:41', '2025-12-17 19:47:27', 'bdzYJ5y4', '5190437'), - (516, 1282, 'not_attending', '2022-03-18 00:29:53', '2025-12-17 19:47:25', 'bdzYJ5y4', '5191241'), - (516, 1284, 'attending', '2022-04-13 18:30:20', '2025-12-17 19:47:27', 'bdzYJ5y4', '5195095'), - (516, 1285, 'not_attending', '2022-03-22 13:42:48', '2025-12-17 19:47:25', 'bdzYJ5y4', '5196763'), - (516, 1287, 'not_attending', '2022-03-23 20:10:02', '2025-12-17 19:47:25', 'bdzYJ5y4', '5199425'), - (516, 1288, 'not_attending', '2022-03-24 14:34:29', '2025-12-17 19:47:25', 'bdzYJ5y4', '5199460'), - (516, 1289, 'not_attending', '2022-03-24 14:34:21', '2025-12-17 19:47:25', 'bdzYJ5y4', '5200190'), - (516, 1290, 'not_attending', '2022-03-24 14:34:28', '2025-12-17 19:47:25', 'bdzYJ5y4', '5200196'), - (516, 1291, 'attending', '2022-03-24 02:22:36', '2025-12-17 19:47:25', 'bdzYJ5y4', '5200458'), - (516, 1292, 'not_attending', '2022-03-28 13:30:23', '2025-12-17 19:47:25', 'bdzYJ5y4', '5214043'), - (516, 1293, 'attending', '2022-03-27 20:27:42', '2025-12-17 19:47:27', 'bdzYJ5y4', '5214641'), - (516, 1294, 'not_attending', '2022-03-31 20:49:39', '2025-12-17 19:47:26', 'bdzYJ5y4', '5214686'), - (516, 1296, 'attending', '2022-04-02 17:48:40', '2025-12-17 19:47:26', 'bdzYJ5y4', '5215985'), - (516, 1297, 'attending', '2022-03-28 15:17:22', '2025-12-17 19:47:25', 'bdzYJ5y4', '5215989'), - (516, 1298, 'not_attending', '2022-03-31 02:43:36', '2025-12-17 19:47:25', 'bdzYJ5y4', '5216645'), - (516, 1301, 'not_attending', '2022-03-30 12:36:17', '2025-12-17 19:47:26', 'bdzYJ5y4', '5218175'), - (516, 1302, 'maybe', '2022-04-05 02:38:02', '2025-12-17 19:47:27', 'bdzYJ5y4', '5220867'), - (516, 1304, 'not_attending', '2022-04-05 02:37:51', '2025-12-17 19:47:26', 'bdzYJ5y4', '5223468'), - (516, 1305, 'not_attending', '2022-04-08 03:04:08', '2025-12-17 19:47:27', 'bdzYJ5y4', '5223673'), - (516, 1306, 'not_attending', '2022-04-05 02:37:48', '2025-12-17 19:47:26', 'bdzYJ5y4', '5223682'), - (516, 1307, 'not_attending', '2022-04-05 02:37:54', '2025-12-17 19:47:26', 'bdzYJ5y4', '5223686'), - (516, 1308, 'not_attending', '2022-04-08 12:02:26', '2025-12-17 19:47:27', 'bdzYJ5y4', '5226703'), - (516, 1309, 'not_attending', '2022-04-06 23:50:28', '2025-12-17 19:47:26', 'bdzYJ5y4', '5227432'), - (516, 1311, 'attending', '2022-04-08 12:01:51', '2025-12-17 19:47:27', 'bdzYJ5y4', '5231430'), - (516, 1312, 'attending', '2022-04-15 23:47:46', '2025-12-17 19:47:27', 'bdzYJ5y4', '5231459'), - (516, 1313, 'not_attending', '2022-04-12 00:53:17', '2025-12-17 19:47:27', 'bdzYJ5y4', '5231461'), - (516, 1314, 'not_attending', '2022-04-11 20:56:00', '2025-12-17 19:47:27', 'bdzYJ5y4', '5233137'), - (516, 1315, 'not_attending', '2022-04-15 21:39:04', '2025-12-17 19:47:27', 'bdzYJ5y4', '5237522'), - (516, 1316, 'not_attending', '2022-04-12 00:54:44', '2025-12-17 19:47:27', 'bdzYJ5y4', '5237536'), - (516, 1317, 'not_attending', '2022-04-11 20:55:58', '2025-12-17 19:47:27', 'bdzYJ5y4', '5237543'), - (516, 1318, 'not_attending', '2022-04-13 20:01:52', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238343'), - (516, 1319, 'maybe', '2022-04-15 14:08:06', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238353'), - (516, 1320, 'maybe', '2022-04-24 21:51:01', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238354'), - (516, 1321, 'not_attending', '2022-04-18 22:40:21', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238355'), - (516, 1322, 'not_attending', '2022-04-19 19:25:40', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238356'), - (516, 1323, 'not_attending', '2022-04-20 03:14:18', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238357'), - (516, 1325, 'not_attending', '2022-04-15 02:06:13', '2025-12-17 19:47:28', 'bdzYJ5y4', '5238361'), - (516, 1326, 'not_attending', '2022-04-26 19:55:46', '2025-12-17 19:47:28', 'bdzYJ5y4', '5238362'), - (516, 1327, 'not_attending', '2022-04-25 19:25:37', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238445'), - (516, 1328, 'not_attending', '2022-04-13 01:06:11', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238759'), - (516, 1330, 'not_attending', '2022-04-18 22:39:36', '2025-12-17 19:47:27', 'bdzYJ5y4', '5242155'), - (516, 1331, 'not_attending', '2022-04-18 22:40:17', '2025-12-17 19:47:27', 'bdzYJ5y4', '5242156'), - (516, 1332, 'not_attending', '2022-04-13 14:46:12', '2025-12-17 19:47:27', 'bdzYJ5y4', '5243274'), - (516, 1333, 'not_attending', '2022-04-15 14:07:52', '2025-12-17 19:47:27', 'bdzYJ5y4', '5243711'), - (516, 1336, 'not_attending', '2022-04-18 22:39:50', '2025-12-17 19:47:27', 'bdzYJ5y4', '5244915'), - (516, 1337, 'not_attending', '2022-04-20 16:13:55', '2025-12-17 19:47:27', 'bdzYJ5y4', '5245036'), - (516, 1340, 'not_attending', '2022-04-26 19:55:30', '2025-12-17 19:47:27', 'bdzYJ5y4', '5245754'), - (516, 1341, 'maybe', '2022-05-01 17:35:23', '2025-12-17 19:47:28', 'bdzYJ5y4', '5245755'), - (516, 1344, 'attending', '2022-04-25 19:26:07', '2025-12-17 19:47:28', 'bdzYJ5y4', '5247465'), - (516, 1345, 'attending', '2022-04-21 18:08:07', '2025-12-17 19:47:27', 'bdzYJ5y4', '5247466'), - (516, 1346, 'attending', '2022-04-21 18:08:05', '2025-12-17 19:47:27', 'bdzYJ5y4', '5247467'), - (516, 1349, 'not_attending', '2022-04-19 17:15:12', '2025-12-17 19:47:27', 'bdzYJ5y4', '5249631'), - (516, 1350, 'not_attending', '2022-04-19 19:25:20', '2025-12-17 19:47:27', 'bdzYJ5y4', '5249763'), - (516, 1351, 'not_attending', '2022-05-02 02:43:48', '2025-12-17 19:47:28', 'bdzYJ5y4', '5251561'), - (516, 1353, 'not_attending', '2022-04-22 13:24:53', '2025-12-17 19:47:27', 'bdzYJ5y4', '5251777'), - (516, 1354, 'not_attending', '2022-04-21 18:07:37', '2025-12-17 19:47:27', 'bdzYJ5y4', '5252569'), - (516, 1355, 'maybe', '2022-04-22 13:25:22', '2025-12-17 19:47:27', 'bdzYJ5y4', '5252573'), - (516, 1356, 'not_attending', '2022-04-22 13:24:32', '2025-12-17 19:47:27', 'bdzYJ5y4', '5252913'), - (516, 1357, 'not_attending', '2022-04-25 19:25:34', '2025-12-17 19:47:27', 'bdzYJ5y4', '5256017'), - (516, 1359, 'not_attending', '2022-05-03 23:37:50', '2025-12-17 19:47:28', 'bdzYJ5y4', '5258360'), - (516, 1360, 'not_attending', '2022-04-26 13:29:26', '2025-12-17 19:47:27', 'bdzYJ5y4', '5260197'), - (516, 1362, 'attending', '2022-04-25 19:25:11', '2025-12-17 19:47:28', 'bdzYJ5y4', '5260800'), - (516, 1366, 'not_attending', '2022-04-26 19:55:32', '2025-12-17 19:47:27', 'bdzYJ5y4', '5262344'), - (516, 1368, 'not_attending', '2022-05-04 18:01:29', '2025-12-17 19:47:28', 'bdzYJ5y4', '5262783'), - (516, 1369, 'maybe', '2022-05-04 20:27:52', '2025-12-17 19:47:28', 'bdzYJ5y4', '5262809'), - (516, 1372, 'not_attending', '2022-05-03 23:37:48', '2025-12-17 19:47:28', 'bdzYJ5y4', '5264352'), - (516, 1374, 'not_attending', '2022-05-01 16:22:37', '2025-12-17 19:47:28', 'bdzYJ5y4', '5269930'), - (516, 1375, 'not_attending', '2022-05-01 17:54:17', '2025-12-17 19:47:28', 'bdzYJ5y4', '5269932'), - (516, 1376, 'not_attending', '2022-05-07 17:50:59', '2025-12-17 19:47:28', 'bdzYJ5y4', '5271446'), - (516, 1377, 'not_attending', '2022-05-07 17:51:07', '2025-12-17 19:47:28', 'bdzYJ5y4', '5271447'), - (516, 1378, 'attending', '2022-05-14 17:19:28', '2025-12-17 19:47:29', 'bdzYJ5y4', '5271448'), - (516, 1379, 'attending', '2022-05-03 23:38:06', '2025-12-17 19:47:29', 'bdzYJ5y4', '5271449'), - (516, 1380, 'not_attending', '2022-05-27 20:15:31', '2025-12-17 19:47:30', 'bdzYJ5y4', '5271450'), - (516, 1381, 'not_attending', '2022-05-02 02:44:21', '2025-12-17 19:47:28', 'bdzYJ5y4', '5271453'), - (516, 1382, 'not_attending', '2022-05-04 20:27:45', '2025-12-17 19:47:28', 'bdzYJ5y4', '5276350'), - (516, 1383, 'not_attending', '2022-05-10 00:09:03', '2025-12-17 19:47:28', 'bdzYJ5y4', '5276469'), - (516, 1384, 'not_attending', '2022-05-04 18:21:52', '2025-12-17 19:47:28', 'bdzYJ5y4', '5277078'), - (516, 1385, 'not_attending', '2022-05-10 00:08:46', '2025-12-17 19:47:28', 'bdzYJ5y4', '5277822'), - (516, 1386, 'attending', '2022-05-05 13:12:07', '2025-12-17 19:47:28', 'bdzYJ5y4', '5278159'), - (516, 1391, 'not_attending', '2022-05-07 03:03:33', '2025-12-17 19:47:28', 'bdzYJ5y4', '5279531'), - (516, 1392, 'not_attending', '2022-05-10 22:39:51', '2025-12-17 19:47:28', 'bdzYJ5y4', '5279532'), - (516, 1393, 'not_attending', '2022-06-10 16:15:00', '2025-12-17 19:47:30', 'bdzYJ5y4', '5280603'), - (516, 1394, 'not_attending', '2022-05-25 21:35:27', '2025-12-17 19:47:30', 'bdzYJ5y4', '5280667'), - (516, 1396, 'maybe', '2022-05-13 12:28:04', '2025-12-17 19:47:28', 'bdzYJ5y4', '5281103'), - (516, 1397, 'attending', '2022-05-11 20:52:37', '2025-12-17 19:47:29', 'bdzYJ5y4', '5281104'), - (516, 1401, 'not_attending', '2022-05-17 08:49:54', '2025-12-17 19:47:29', 'bdzYJ5y4', '5286295'), - (516, 1402, 'not_attending', '2022-05-26 21:46:12', '2025-12-17 19:47:30', 'bdzYJ5y4', '5287977'), - (516, 1403, 'not_attending', '2022-05-17 08:50:08', '2025-12-17 19:47:29', 'bdzYJ5y4', '5288052'), - (516, 1405, 'not_attending', '2022-05-17 08:50:02', '2025-12-17 19:47:29', 'bdzYJ5y4', '5288115'), - (516, 1407, 'attending', '2022-05-23 00:07:23', '2025-12-17 19:47:30', 'bdzYJ5y4', '5363695'), - (516, 1408, 'attending', '2022-05-16 12:59:32', '2025-12-17 19:47:29', 'bdzYJ5y4', '5365960'), - (516, 1414, 'not_attending', '2022-05-21 01:20:33', '2025-12-17 19:47:29', 'bdzYJ5y4', '5368445'), - (516, 1415, 'not_attending', '2022-06-03 22:12:04', '2025-12-17 19:47:30', 'bdzYJ5y4', '5368973'), - (516, 1417, 'not_attending', '2022-05-22 04:55:58', '2025-12-17 19:47:30', 'bdzYJ5y4', '5370465'), - (516, 1420, 'maybe', '2022-05-24 02:03:08', '2025-12-17 19:47:30', 'bdzYJ5y4', '5374882'), - (516, 1422, 'not_attending', '2022-05-24 02:02:55', '2025-12-17 19:47:30', 'bdzYJ5y4', '5375603'), - (516, 1423, 'not_attending', '2022-06-14 00:58:50', '2025-12-17 19:47:17', 'bdzYJ5y4', '5375727'), - (516, 1427, 'maybe', '2022-05-25 21:35:16', '2025-12-17 19:47:30', 'bdzYJ5y4', '5376074'), - (516, 1428, 'not_attending', '2022-06-10 16:15:03', '2025-12-17 19:47:30', 'bdzYJ5y4', '5378247'), - (516, 1430, 'not_attending', '2022-06-07 22:11:09', '2025-12-17 19:47:30', 'bdzYJ5y4', '5389402'), - (516, 1431, 'not_attending', '2022-06-09 21:30:23', '2025-12-17 19:47:31', 'bdzYJ5y4', '5389605'), - (516, 1439, 'not_attending', '2022-06-02 00:36:44', '2025-12-17 19:47:30', 'bdzYJ5y4', '5396072'), - (516, 1442, 'attending', '2022-06-12 02:47:05', '2025-12-17 19:47:17', 'bdzYJ5y4', '5397265'), - (516, 1443, 'attending', '2022-06-03 20:11:24', '2025-12-17 19:47:30', 'bdzYJ5y4', '5397613'), - (516, 1444, 'not_attending', '2022-06-09 21:30:11', '2025-12-17 19:47:30', 'bdzYJ5y4', '5397614'), - (516, 1445, 'attending', '2022-06-12 20:02:52', '2025-12-17 19:47:17', 'bdzYJ5y4', '5397615'), - (516, 1449, 'not_attending', '2022-06-14 00:58:41', '2025-12-17 19:47:31', 'bdzYJ5y4', '5403335'), - (516, 1450, 'not_attending', '2022-06-10 16:15:20', '2025-12-17 19:47:30', 'bdzYJ5y4', '5403421'), - (516, 1451, 'maybe', '2022-06-14 00:59:22', '2025-12-17 19:47:17', 'bdzYJ5y4', '5403967'), - (516, 1452, 'not_attending', '2022-06-10 16:14:57', '2025-12-17 19:47:30', 'bdzYJ5y4', '5404197'), - (516, 1453, 'not_attending', '2022-06-10 16:15:32', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404745'), - (516, 1454, 'not_attending', '2022-06-10 16:15:30', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404771'), - (516, 1456, 'not_attending', '2022-06-14 00:58:53', '2025-12-17 19:47:17', 'bdzYJ5y4', '5404779'), - (516, 1457, 'not_attending', '2022-06-10 16:15:34', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404780'), - (516, 1458, 'maybe', '2022-06-12 20:02:59', '2025-12-17 19:47:17', 'bdzYJ5y4', '5404786'), - (516, 1459, 'maybe', '2022-06-12 20:03:04', '2025-12-17 19:47:17', 'bdzYJ5y4', '5404793'), - (516, 1460, 'not_attending', '2022-06-12 20:02:21', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404817'), - (516, 1461, 'not_attending', '2022-06-14 00:58:46', '2025-12-17 19:47:31', 'bdzYJ5y4', '5405149'), - (516, 1462, 'not_attending', '2022-06-11 01:05:19', '2025-12-17 19:47:17', 'bdzYJ5y4', '5405203'), - (516, 1463, 'not_attending', '2022-06-14 00:58:44', '2025-12-17 19:47:31', 'bdzYJ5y4', '5405208'), - (516, 1465, 'maybe', '2022-06-12 06:04:02', '2025-12-17 19:47:31', 'bdzYJ5y4', '5406355'), - (516, 1466, 'not_attending', '2022-06-14 00:58:54', '2025-12-17 19:47:17', 'bdzYJ5y4', '5406427'), - (516, 1468, 'not_attending', '2022-06-27 15:56:44', '2025-12-17 19:47:19', 'bdzYJ5y4', '5406832'), - (516, 1470, 'not_attending', '2022-06-13 15:08:34', '2025-12-17 19:47:17', 'bdzYJ5y4', '5407053'), - (516, 1471, 'not_attending', '2022-06-21 18:26:12', '2025-12-17 19:47:17', 'bdzYJ5y4', '5407063'), - (516, 1472, 'not_attending', '2022-06-22 03:17:52', '2025-12-17 19:47:17', 'bdzYJ5y4', '5407065'), - (516, 1473, 'not_attending', '2022-06-14 00:58:42', '2025-12-17 19:47:31', 'bdzYJ5y4', '5407267'), - (516, 1477, 'not_attending', '2022-06-21 18:26:14', '2025-12-17 19:47:17', 'bdzYJ5y4', '5408766'), - (516, 1478, 'not_attending', '2022-06-21 18:26:34', '2025-12-17 19:47:19', 'bdzYJ5y4', '5408794'), - (516, 1479, 'maybe', '2022-06-17 11:08:07', '2025-12-17 19:47:17', 'bdzYJ5y4', '5410322'), - (516, 1480, 'not_attending', '2022-06-26 18:33:42', '2025-12-17 19:47:19', 'bdzYJ5y4', '5411699'), - (516, 1482, 'attending', '2022-06-20 11:48:27', '2025-12-17 19:47:19', 'bdzYJ5y4', '5412550'), - (516, 1483, 'not_attending', '2022-06-22 03:17:49', '2025-12-17 19:47:17', 'bdzYJ5y4', '5414556'), - (516, 1484, 'not_attending', '2022-06-21 18:26:18', '2025-12-17 19:47:17', 'bdzYJ5y4', '5415046'), - (516, 1485, 'maybe', '2022-06-21 18:26:30', '2025-12-17 19:47:17', 'bdzYJ5y4', '5416276'), - (516, 1486, 'not_attending', '2022-06-26 19:16:37', '2025-12-17 19:47:19', 'bdzYJ5y4', '5416339'), - (516, 1488, 'not_attending', '2022-06-30 22:08:33', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420154'), - (516, 1489, 'not_attending', '2022-06-30 22:08:35', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420155'), - (516, 1490, 'not_attending', '2022-06-30 22:08:39', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420156'), - (516, 1491, 'not_attending', '2022-06-29 20:18:04', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420158'), - (516, 1492, 'not_attending', '2022-06-30 22:08:42', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420175'), - (516, 1494, 'not_attending', '2022-06-27 20:25:39', '2025-12-17 19:47:19', 'bdzYJ5y4', '5421626'), - (516, 1495, 'not_attending', '2022-06-27 20:25:58', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422086'), - (516, 1497, 'not_attending', '2022-06-26 19:16:35', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422405'), - (516, 1498, 'not_attending', '2022-06-27 15:56:37', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422406'), - (516, 1499, 'not_attending', '2022-06-27 15:56:39', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422407'), - (516, 1500, 'not_attending', '2022-06-30 22:08:46', '2025-12-17 19:47:19', 'bdzYJ5y4', '5423915'), - (516, 1502, 'attending', '2022-06-28 17:15:05', '2025-12-17 19:47:19', 'bdzYJ5y4', '5424565'), - (516, 1503, 'not_attending', '2022-06-30 22:08:28', '2025-12-17 19:47:19', 'bdzYJ5y4', '5426820'), - (516, 1504, 'not_attending', '2022-07-11 13:13:04', '2025-12-17 19:47:19', 'bdzYJ5y4', '5426882'), - (516, 1505, 'not_attending', '2022-07-02 20:54:13', '2025-12-17 19:47:19', 'bdzYJ5y4', '5427083'), - (516, 1507, 'attending', '2022-07-02 20:54:20', '2025-12-17 19:47:19', 'bdzYJ5y4', '5433100'), - (516, 1508, 'not_attending', '2022-07-11 13:12:59', '2025-12-17 19:47:19', 'bdzYJ5y4', '5433453'), - (516, 1509, 'not_attending', '2022-07-05 19:57:44', '2025-12-17 19:47:19', 'bdzYJ5y4', '5434019'), - (516, 1511, 'attending', '2022-07-07 16:09:28', '2025-12-17 19:47:19', 'bdzYJ5y4', '5437733'), - (516, 1512, 'not_attending', '2022-07-13 00:42:02', '2025-12-17 19:47:19', 'bdzYJ5y4', '5441112'), - (516, 1513, 'attending', '2022-07-09 12:13:47', '2025-12-17 19:47:19', 'bdzYJ5y4', '5441125'), - (516, 1514, 'attending', '2022-07-15 13:20:01', '2025-12-17 19:47:20', 'bdzYJ5y4', '5441126'), - (516, 1515, 'attending', '2022-07-31 15:10:30', '2025-12-17 19:47:21', 'bdzYJ5y4', '5441128'), - (516, 1516, 'attending', '2022-08-07 12:18:19', '2025-12-17 19:47:23', 'bdzYJ5y4', '5441129'), - (516, 1517, 'attending', '2022-08-19 14:21:19', '2025-12-17 19:47:23', 'bdzYJ5y4', '5441130'), - (516, 1518, 'not_attending', '2022-08-29 01:11:48', '2025-12-17 19:47:24', 'bdzYJ5y4', '5441131'), - (516, 1519, 'attending', '2022-08-29 01:11:55', '2025-12-17 19:47:24', 'bdzYJ5y4', '5441132'), - (516, 1520, 'not_attending', '2022-07-11 13:13:01', '2025-12-17 19:47:19', 'bdzYJ5y4', '5441645'), - (516, 1521, 'not_attending', '2022-07-11 13:12:53', '2025-12-17 19:47:19', 'bdzYJ5y4', '5442180'), - (516, 1522, 'not_attending', '2022-07-15 13:19:37', '2025-12-17 19:47:20', 'bdzYJ5y4', '5442832'), - (516, 1523, 'not_attending', '2022-07-11 13:12:44', '2025-12-17 19:47:19', 'bdzYJ5y4', '5442868'), - (516, 1524, 'not_attending', '2022-07-11 16:45:16', '2025-12-17 19:47:19', 'bdzYJ5y4', '5443300'), - (516, 1526, 'not_attending', '2022-07-15 13:19:44', '2025-12-17 19:47:20', 'bdzYJ5y4', '5445059'), - (516, 1528, 'maybe', '2022-07-14 16:55:41', '2025-12-17 19:47:20', 'bdzYJ5y4', '5446643'), - (516, 1531, 'attending', '2022-07-15 21:05:10', '2025-12-17 19:47:19', 'bdzYJ5y4', '5448756'), - (516, 1532, 'attending', '2022-07-18 19:11:59', '2025-12-17 19:47:20', 'bdzYJ5y4', '5448757'), - (516, 1533, 'maybe', '2022-07-25 00:53:52', '2025-12-17 19:47:21', 'bdzYJ5y4', '5448758'), - (516, 1534, 'attending', '2022-08-04 19:03:44', '2025-12-17 19:47:21', 'bdzYJ5y4', '5448759'), - (516, 1535, 'not_attending', '2022-07-18 10:52:32', '2025-12-17 19:47:20', 'bdzYJ5y4', '5448830'), - (516, 1536, 'not_attending', '2022-07-19 13:11:17', '2025-12-17 19:47:20', 'bdzYJ5y4', '5449068'), - (516, 1540, 'attending', '2022-07-18 12:53:00', '2025-12-17 19:47:20', 'bdzYJ5y4', '5453325'), - (516, 1541, 'not_attending', '2022-07-24 16:47:46', '2025-12-17 19:47:20', 'bdzYJ5y4', '5453542'), - (516, 1542, 'not_attending', '2022-07-25 11:28:10', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454064'), - (516, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'bdzYJ5y4', '5454516'), - (516, 1544, 'attending', '2022-08-29 01:11:58', '2025-12-17 19:47:11', 'bdzYJ5y4', '5454517'), - (516, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454605'), - (516, 1546, 'not_attending', '2022-07-25 11:28:27', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454607'), - (516, 1547, 'not_attending', '2022-07-24 16:48:00', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454608'), - (516, 1549, 'not_attending', '2022-07-24 15:38:38', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454789'), - (516, 1550, 'not_attending', '2022-07-24 16:48:30', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454803'), - (516, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'bdzYJ5y4', '5455037'), - (516, 1552, 'not_attending', '2022-07-29 12:01:13', '2025-12-17 19:47:20', 'bdzYJ5y4', '5455149'), - (516, 1553, 'not_attending', '2022-07-20 22:54:12', '2025-12-17 19:47:20', 'bdzYJ5y4', '5455164'), - (516, 1557, 'not_attending', '2022-08-03 10:27:34', '2025-12-17 19:47:21', 'bdzYJ5y4', '5458729'), - (516, 1560, 'not_attending', '2022-08-15 21:11:30', '2025-12-17 19:47:23', 'bdzYJ5y4', '5458768'), - (516, 1561, 'not_attending', '2022-08-08 11:39:45', '2025-12-17 19:47:22', 'bdzYJ5y4', '5461278'), - (516, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'bdzYJ5y4', '5469480'), - (516, 1563, 'not_attending', '2022-07-31 15:10:24', '2025-12-17 19:47:21', 'bdzYJ5y4', '5469889'), - (516, 1565, 'attending', '2022-07-25 22:37:25', '2025-12-17 19:47:21', 'bdzYJ5y4', '5471073'), - (516, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'bdzYJ5y4', '5474663'), - (516, 1567, 'not_attending', '2022-08-02 01:15:54', '2025-12-17 19:47:21', 'bdzYJ5y4', '5477629'), - (516, 1568, 'not_attending', '2022-08-01 14:11:35', '2025-12-17 19:47:21', 'bdzYJ5y4', '5480628'), - (516, 1569, 'not_attending', '2022-08-02 01:57:37', '2025-12-17 19:47:21', 'bdzYJ5y4', '5481507'), - (516, 1570, 'not_attending', '2022-08-01 21:33:31', '2025-12-17 19:47:21', 'bdzYJ5y4', '5481830'), - (516, 1571, 'attending', '2022-08-01 18:40:46', '2025-12-17 19:47:21', 'bdzYJ5y4', '5482022'), - (516, 1573, 'not_attending', '2022-08-07 12:18:01', '2025-12-17 19:47:22', 'bdzYJ5y4', '5482152'), - (516, 1574, 'not_attending', '2022-08-07 12:18:08', '2025-12-17 19:47:22', 'bdzYJ5y4', '5482153'), - (516, 1575, 'not_attending', '2022-08-22 18:23:36', '2025-12-17 19:47:23', 'bdzYJ5y4', '5482250'), - (516, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'bdzYJ5y4', '5482793'), - (516, 1578, 'not_attending', '2022-08-03 10:27:49', '2025-12-17 19:47:21', 'bdzYJ5y4', '5483073'), - (516, 1579, 'maybe', '2022-08-04 03:10:35', '2025-12-17 19:47:22', 'bdzYJ5y4', '5486019'), - (516, 1580, 'not_attending', '2022-08-07 12:17:41', '2025-12-17 19:47:22', 'bdzYJ5y4', '5488912'), - (516, 1581, 'not_attending', '2022-08-07 12:17:47', '2025-12-17 19:47:22', 'bdzYJ5y4', '5490302'), - (516, 1582, 'not_attending', '2022-08-15 18:19:16', '2025-12-17 19:47:23', 'bdzYJ5y4', '5492001'), - (516, 1584, 'not_attending', '2022-08-22 18:23:39', '2025-12-17 19:47:23', 'bdzYJ5y4', '5492004'), - (516, 1586, 'not_attending', '2022-08-15 21:11:12', '2025-12-17 19:47:23', 'bdzYJ5y4', '5492019'), - (516, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'bdzYJ5y4', '5492192'), - (516, 1588, 'not_attending', '2022-08-09 16:57:46', '2025-12-17 19:47:22', 'bdzYJ5y4', '5493139'), - (516, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'bdzYJ5y4', '5493200'), - (516, 1592, 'not_attending', '2022-08-09 16:59:18', '2025-12-17 19:47:22', 'bdzYJ5y4', '5494031'), - (516, 1593, 'maybe', '2022-08-09 16:58:35', '2025-12-17 19:47:22', 'bdzYJ5y4', '5494043'), - (516, 1595, 'not_attending', '2022-08-09 23:15:49', '2025-12-17 19:47:22', 'bdzYJ5y4', '5495736'), - (516, 1598, 'not_attending', '2022-08-15 18:17:27', '2025-12-17 19:47:22', 'bdzYJ5y4', '5496567'), - (516, 1600, 'not_attending', '2022-08-29 01:11:45', '2025-12-17 19:47:24', 'bdzYJ5y4', '5496569'), - (516, 1603, 'not_attending', '2022-08-15 21:11:28', '2025-12-17 19:47:23', 'bdzYJ5y4', '5497895'), - (516, 1604, 'attending', '2022-08-15 18:18:02', '2025-12-17 19:47:22', 'bdzYJ5y4', '5501504'), - (516, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'bdzYJ5y4', '5502188'), - (516, 1606, 'not_attending', '2022-08-29 23:34:04', '2025-12-17 19:47:23', 'bdzYJ5y4', '5504585'), - (516, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'bdzYJ5y4', '5505059'), - (516, 1610, 'not_attending', '2022-08-22 02:29:09', '2025-12-17 19:47:23', 'bdzYJ5y4', '5506595'), - (516, 1612, 'maybe', '2022-10-03 19:40:03', '2025-12-17 19:47:12', 'bdzYJ5y4', '5507653'), - (516, 1613, 'not_attending', '2022-10-21 19:42:35', '2025-12-17 19:47:14', 'bdzYJ5y4', '5507654'), - (516, 1614, 'maybe', '2022-08-22 18:23:20', '2025-12-17 19:47:23', 'bdzYJ5y4', '5508371'), - (516, 1615, 'not_attending', '2022-08-29 23:34:07', '2025-12-17 19:47:23', 'bdzYJ5y4', '5509055'), - (516, 1616, 'not_attending', '2022-08-22 18:23:14', '2025-12-17 19:47:23', 'bdzYJ5y4', '5509478'), - (516, 1619, 'attending', '2022-08-22 20:02:51', '2025-12-17 19:47:23', 'bdzYJ5y4', '5512862'), - (516, 1620, 'not_attending', '2022-08-22 18:23:32', '2025-12-17 19:47:23', 'bdzYJ5y4', '5513046'), - (516, 1623, 'not_attending', '2022-08-23 21:29:35', '2025-12-17 19:47:23', 'bdzYJ5y4', '5513678'), - (516, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'bdzYJ5y4', '5513985'), - (516, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'bdzYJ5y4', '5519981'), - (516, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'bdzYJ5y4', '5522550'), - (516, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'bdzYJ5y4', '5534683'), - (516, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'bdzYJ5y4', '5537735'), - (516, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'bdzYJ5y4', '5540859'), - (516, 1642, 'not_attending', '2022-09-08 12:45:14', '2025-12-17 19:47:24', 'bdzYJ5y4', '5544227'), - (516, 1644, 'not_attending', '2022-09-18 11:04:58', '2025-12-17 19:47:11', 'bdzYJ5y4', '5545857'), - (516, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'bdzYJ5y4', '5546619'), - (516, 1652, 'maybe', '2022-09-08 12:45:11', '2025-12-17 19:47:24', 'bdzYJ5y4', '5552671'), - (516, 1653, 'not_attending', '2022-09-18 11:04:49', '2025-12-17 19:47:11', 'bdzYJ5y4', '5554400'), - (516, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'bdzYJ5y4', '5555245'), - (516, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'bdzYJ5y4', '5557747'), - (516, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'bdzYJ5y4', '5560255'), - (516, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'bdzYJ5y4', '5562906'), - (516, 1667, 'attending', '2022-09-18 11:04:42', '2025-12-17 19:47:11', 'bdzYJ5y4', '5563221'), - (516, 1668, 'not_attending', '2022-09-21 02:20:21', '2025-12-17 19:47:12', 'bdzYJ5y4', '5563222'), - (516, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'bdzYJ5y4', '5600604'), - (516, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'bdzYJ5y4', '5605544'), - (516, 1699, 'maybe', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'bdzYJ5y4', '5606737'), - (516, 1705, 'not_attending', '2022-10-03 19:40:00', '2025-12-17 19:47:12', 'bdzYJ5y4', '5612209'), - (516, 1714, 'not_attending', '2022-10-21 19:42:19', '2025-12-17 19:47:14', 'bdzYJ5y4', '5622347'), - (516, 1716, 'maybe', '2022-10-03 19:39:38', '2025-12-17 19:47:12', 'bdzYJ5y4', '5622429'), - (516, 1717, 'not_attending', '2022-10-18 19:20:30', '2025-12-17 19:47:13', 'bdzYJ5y4', '5622842'), - (516, 1719, 'attending', '2022-10-05 23:21:31', '2025-12-17 19:47:12', 'bdzYJ5y4', '5630958'), - (516, 1720, 'not_attending', '2022-10-10 11:37:19', '2025-12-17 19:47:12', 'bdzYJ5y4', '5630959'), - (516, 1721, 'attending', '2022-10-10 11:37:23', '2025-12-17 19:47:13', 'bdzYJ5y4', '5630960'), - (516, 1722, 'not_attending', '2022-10-13 22:25:20', '2025-12-17 19:47:14', 'bdzYJ5y4', '5630961'), - (516, 1723, 'maybe', '2022-10-25 19:22:16', '2025-12-17 19:47:15', 'bdzYJ5y4', '5630962'), - (516, 1724, 'not_attending', '2022-10-25 19:21:11', '2025-12-17 19:47:15', 'bdzYJ5y4', '5630966'), - (516, 1725, 'attending', '2022-10-25 19:21:15', '2025-12-17 19:47:16', 'bdzYJ5y4', '5630967'), - (516, 1726, 'not_attending', '2022-10-25 19:21:19', '2025-12-17 19:47:16', 'bdzYJ5y4', '5630968'), - (516, 1727, 'attending', '2022-10-25 19:21:26', '2025-12-17 19:47:16', 'bdzYJ5y4', '5630969'), - (516, 1728, 'not_attending', '2022-12-01 23:06:32', '2025-12-17 19:47:17', 'bdzYJ5y4', '5630970'), - (516, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'bdzYJ5y4', '5635406'), - (516, 1736, 'not_attending', '2022-10-25 19:22:08', '2025-12-17 19:47:15', 'bdzYJ5y4', '5638456'), - (516, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'bdzYJ5y4', '5638765'), - (516, 1739, 'not_attending', '2022-10-21 19:42:24', '2025-12-17 19:47:14', 'bdzYJ5y4', '5640097'), - (516, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'bdzYJ5y4', '5640843'), - (516, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'bdzYJ5y4', '5641521'), - (516, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'bdzYJ5y4', '5642818'), - (516, 1745, 'not_attending', '2022-10-13 22:25:15', '2025-12-17 19:47:12', 'bdzYJ5y4', '5643088'), - (516, 1747, 'not_attending', '2022-10-21 19:42:14', '2025-12-17 19:47:14', 'bdzYJ5y4', '5648009'), - (516, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'bdzYJ5y4', '5652395'), - (516, 1753, 'not_attending', '2022-10-20 13:34:52', '2025-12-17 19:47:13', 'bdzYJ5y4', '5656228'), - (516, 1756, 'not_attending', '2022-10-25 19:21:39', '2025-12-17 19:47:13', 'bdzYJ5y4', '5663338'), - (516, 1757, 'not_attending', '2022-10-25 19:22:12', '2025-12-17 19:47:15', 'bdzYJ5y4', '5668974'), - (516, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'bdzYJ5y4', '5670445'), - (516, 1763, 'not_attending', '2022-10-25 19:22:29', '2025-12-17 19:47:15', 'bdzYJ5y4', '5670803'), - (516, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'bdzYJ5y4', '5671637'), - (516, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'bdzYJ5y4', '5672329'), - (516, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'bdzYJ5y4', '5674057'), - (516, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'bdzYJ5y4', '5674060'), - (516, 1768, 'not_attending', '2022-11-04 17:32:42', '2025-12-17 19:47:16', 'bdzYJ5y4', '5674062'), - (516, 1769, 'attending', '2022-10-25 19:20:47', '2025-12-17 19:47:15', 'bdzYJ5y4', '5676351'), - (516, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'bdzYJ5y4', '5677461'), - (516, 1776, 'not_attending', '2022-11-04 17:32:29', '2025-12-17 19:47:15', 'bdzYJ5y4', '5691067'), - (516, 1777, 'not_attending', '2022-11-04 17:32:26', '2025-12-17 19:47:15', 'bdzYJ5y4', '5693021'), - (516, 1779, 'not_attending', '2022-11-04 17:32:22', '2025-12-17 19:47:15', 'bdzYJ5y4', '5694252'), - (516, 1780, 'not_attending', '2022-11-04 17:32:32', '2025-12-17 19:47:15', 'bdzYJ5y4', '5696082'), - (516, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'bdzYJ5y4', '5698046'), - (516, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'bdzYJ5y4', '5699760'), - (516, 1790, 'not_attending', '2022-11-07 16:45:12', '2025-12-17 19:47:15', 'bdzYJ5y4', '5727424'), - (516, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'bdzYJ5y4', '5741601'), - (516, 1797, 'not_attending', '2022-12-01 23:06:25', '2025-12-17 19:47:17', 'bdzYJ5y4', '5757486'), - (516, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'bdzYJ5y4', '5763458'), - (516, 1804, 'not_attending', '2023-01-22 00:26:01', '2025-12-17 19:47:06', 'bdzYJ5y4', '5764674'), - (516, 1805, 'not_attending', '2023-02-02 11:53:54', '2025-12-17 19:47:06', 'bdzYJ5y4', '5764675'), - (516, 1807, 'not_attending', '2023-01-13 06:09:01', '2025-12-17 19:47:05', 'bdzYJ5y4', '5764677'), - (516, 1820, 'not_attending', '2023-03-30 21:13:37', '2025-12-17 19:46:58', 'bdzYJ5y4', '5764690'), - (516, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'bdzYJ5y4', '5774172'), - (516, 1825, 'attending', '2022-11-27 05:53:17', '2025-12-17 19:47:16', 'bdzYJ5y4', '5776760'), - (516, 1828, 'not_attending', '2022-11-28 23:04:11', '2025-12-17 19:47:16', 'bdzYJ5y4', '5778865'), - (516, 1829, 'not_attending', '2022-12-04 04:50:48', '2025-12-17 19:47:16', 'bdzYJ5y4', '5778867'), - (516, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'bdzYJ5y4', '5818247'), - (516, 1834, 'not_attending', '2022-12-07 16:29:40', '2025-12-17 19:47:17', 'bdzYJ5y4', '5819470'), - (516, 1835, 'not_attending', '2022-12-30 13:53:16', '2025-12-17 19:47:05', 'bdzYJ5y4', '5819471'), - (516, 1841, 'not_attending', '2022-12-30 13:53:24', '2025-12-17 19:47:05', 'bdzYJ5y4', '5827665'), - (516, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'bdzYJ5y4', '5827739'), - (516, 1843, 'not_attending', '2022-12-17 20:08:54', '2025-12-17 19:47:04', 'bdzYJ5y4', '5844304'), - (516, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'bdzYJ5y4', '5844306'), - (516, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'bdzYJ5y4', '5850159'), - (516, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'bdzYJ5y4', '5858999'), - (516, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'bdzYJ5y4', '5871984'), - (516, 1856, 'maybe', '2023-01-13 06:09:07', '2025-12-17 19:47:05', 'bdzYJ5y4', '5873970'), - (516, 1858, 'not_attending', '2023-01-13 06:09:04', '2025-12-17 19:47:05', 'bdzYJ5y4', '5875044'), - (516, 1860, 'not_attending', '2023-01-13 06:08:43', '2025-12-17 19:47:05', 'bdzYJ5y4', '5876309'), - (516, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'bdzYJ5y4', '5876354'), - (516, 1864, 'not_attending', '2023-01-22 00:24:35', '2025-12-17 19:47:05', 'bdzYJ5y4', '5879675'), - (516, 1865, 'attending', '2023-01-22 00:25:58', '2025-12-17 19:47:06', 'bdzYJ5y4', '5879676'), - (516, 1866, 'not_attending', '2023-01-22 19:58:51', '2025-12-17 19:47:05', 'bdzYJ5y4', '5880939'), - (516, 1867, 'not_attending', '2023-02-06 13:15:04', '2025-12-17 19:47:07', 'bdzYJ5y4', '5880940'), - (516, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'bdzYJ5y4', '5880942'), - (516, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'bdzYJ5y4', '5880943'), - (516, 1873, 'not_attending', '2023-01-22 00:25:26', '2025-12-17 19:47:05', 'bdzYJ5y4', '5885295'), - (516, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'bdzYJ5y4', '5887890'), - (516, 1875, 'not_attending', '2023-01-22 19:58:54', '2025-12-17 19:47:06', 'bdzYJ5y4', '5887908'), - (516, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'bdzYJ5y4', '5888598'), - (516, 1878, 'not_attending', '2023-02-06 13:15:01', '2025-12-17 19:47:07', 'bdzYJ5y4', '5893000'), - (516, 1879, 'maybe', '2023-01-29 04:25:24', '2025-12-17 19:47:06', 'bdzYJ5y4', '5893001'), - (516, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'bdzYJ5y4', '5893260'), - (516, 1881, 'not_attending', '2023-02-06 13:15:24', '2025-12-17 19:47:07', 'bdzYJ5y4', '5894218'), - (516, 1882, 'not_attending', '2023-01-29 04:25:31', '2025-12-17 19:47:06', 'bdzYJ5y4', '5898447'), - (516, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'bdzYJ5y4', '5899826'), - (516, 1885, 'not_attending', '2023-02-17 16:21:57', '2025-12-17 19:47:08', 'bdzYJ5y4', '5899928'), - (516, 1886, 'not_attending', '2023-03-04 09:19:31', '2025-12-17 19:47:09', 'bdzYJ5y4', '5899930'), - (516, 1889, 'not_attending', '2023-02-06 13:15:09', '2025-12-17 19:47:07', 'bdzYJ5y4', '5900199'), - (516, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'bdzYJ5y4', '5900200'), - (516, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'bdzYJ5y4', '5900202'), - (516, 1892, 'not_attending', '2023-03-13 18:07:56', '2025-12-17 19:46:56', 'bdzYJ5y4', '5900203'), - (516, 1894, 'not_attending', '2023-02-02 11:53:43', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901100'), - (516, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901108'), - (516, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901126'), - (516, 1897, 'attending', '2023-02-02 20:50:04', '2025-12-17 19:47:07', 'bdzYJ5y4', '5901128'), - (516, 1899, 'not_attending', '2023-02-06 13:15:18', '2025-12-17 19:47:07', 'bdzYJ5y4', '5901323'), - (516, 1900, 'not_attending', '2023-02-02 11:53:36', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901331'), - (516, 1902, 'not_attending', '2023-02-02 11:53:52', '2025-12-17 19:47:06', 'bdzYJ5y4', '5902254'), - (516, 1904, 'not_attending', '2023-02-06 13:15:12', '2025-12-17 19:47:07', 'bdzYJ5y4', '5903239'), - (516, 1908, 'not_attending', '2023-02-09 08:36:01', '2025-12-17 19:47:07', 'bdzYJ5y4', '5905018'), - (516, 1909, 'not_attending', '2023-02-06 13:15:21', '2025-12-17 19:47:07', 'bdzYJ5y4', '5906541'), - (516, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'bdzYJ5y4', '5909655'), - (516, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'bdzYJ5y4', '5910522'), - (516, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'bdzYJ5y4', '5910526'), - (516, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'bdzYJ5y4', '5910528'), - (516, 1922, 'not_attending', '2023-02-15 04:02:58', '2025-12-17 19:47:07', 'bdzYJ5y4', '5916219'), - (516, 1923, 'not_attending', '2023-02-17 16:21:44', '2025-12-17 19:47:07', 'bdzYJ5y4', '5930436'), - (516, 1924, 'not_attending', '2023-02-17 16:21:42', '2025-12-17 19:47:07', 'bdzYJ5y4', '5931095'), - (516, 1926, 'not_attending', '2023-02-26 00:49:43', '2025-12-17 19:47:08', 'bdzYJ5y4', '5932620'), - (516, 1927, 'maybe', '2023-03-12 23:42:50', '2025-12-17 19:47:10', 'bdzYJ5y4', '5932621'), - (516, 1930, 'not_attending', '2023-02-26 00:49:23', '2025-12-17 19:47:08', 'bdzYJ5y4', '5933462'), - (516, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'bdzYJ5y4', '5936234'), - (516, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'bdzYJ5y4', '5958351'), - (516, 1936, 'not_attending', '2023-02-26 00:49:34', '2025-12-17 19:47:08', 'bdzYJ5y4', '5959397'), - (516, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'bdzYJ5y4', '5959751'), - (516, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'bdzYJ5y4', '5959755'), - (516, 1940, 'maybe', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'bdzYJ5y4', '5960055'), - (516, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'bdzYJ5y4', '5961684'), - (516, 1942, 'not_attending', '2023-03-01 21:43:18', '2025-12-17 19:47:08', 'bdzYJ5y4', '5962085'), - (516, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'bdzYJ5y4', '5962132'), - (516, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'bdzYJ5y4', '5962133'), - (516, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'bdzYJ5y4', '5962134'), - (516, 1947, 'not_attending', '2023-03-01 21:43:51', '2025-12-17 19:47:09', 'bdzYJ5y4', '5962233'), - (516, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'bdzYJ5y4', '5962317'), - (516, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'bdzYJ5y4', '5962318'), - (516, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'bdzYJ5y4', '5965933'), - (516, 1952, 'maybe', '2023-03-01 21:43:22', '2025-12-17 19:47:08', 'bdzYJ5y4', '5965937'), - (516, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'bdzYJ5y4', '5967014'), - (516, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'bdzYJ5y4', '5972815'), - (516, 1959, 'not_attending', '2023-03-24 22:23:38', '2025-12-17 19:46:57', 'bdzYJ5y4', '5972829'), - (516, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'bdzYJ5y4', '5974016'), - (516, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'bdzYJ5y4', '5975052'), - (516, 1963, 'maybe', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'bdzYJ5y4', '5975054'), - (516, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'bdzYJ5y4', '5981515'), - (516, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'bdzYJ5y4', '5993516'), - (516, 1973, 'not_attending', '2023-03-13 18:08:03', '2025-12-17 19:46:56', 'bdzYJ5y4', '5993777'), - (516, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'bdzYJ5y4', '5998939'), - (516, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'bdzYJ5y4', '6028191'), - (516, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'bdzYJ5y4', '6040066'), - (516, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'bdzYJ5y4', '6042717'), - (516, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'bdzYJ5y4', '6044838'), - (516, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'bdzYJ5y4', '6044839'), - (516, 1989, 'not_attending', '2023-05-15 22:05:33', '2025-12-17 19:47:03', 'bdzYJ5y4', '6044842'), - (516, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'bdzYJ5y4', '6045684'), - (516, 1991, 'not_attending', '2023-03-30 21:13:42', '2025-12-17 19:46:58', 'bdzYJ5y4', '6047354'), - (516, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'bdzYJ5y4', '6050104'), - (516, 1999, 'not_attending', '2023-04-19 20:06:53', '2025-12-17 19:47:00', 'bdzYJ5y4', '6052057'), - (516, 2003, 'not_attending', '2023-05-11 01:43:09', '2025-12-17 19:47:03', 'bdzYJ5y4', '6052606'), - (516, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'bdzYJ5y4', '6053195'), - (516, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'bdzYJ5y4', '6053198'), - (516, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'bdzYJ5y4', '6056085'), - (516, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'bdzYJ5y4', '6056916'), - (516, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'bdzYJ5y4', '6059290'), - (516, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'bdzYJ5y4', '6060328'), - (516, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'bdzYJ5y4', '6061037'), - (516, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'bdzYJ5y4', '6061039'), - (516, 2019, 'not_attending', '2023-04-19 20:06:50', '2025-12-17 19:47:00', 'bdzYJ5y4', '6062934'), - (516, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'bdzYJ5y4', '6065813'), - (516, 2021, 'not_attending', '2023-04-17 21:22:53', '2025-12-17 19:47:00', 'bdzYJ5y4', '6066316'), - (516, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'bdzYJ5y4', '6067245'), - (516, 2024, 'not_attending', '2023-04-19 20:06:57', '2025-12-17 19:47:00', 'bdzYJ5y4', '6067437'), - (516, 2025, 'not_attending', '2023-04-19 20:07:04', '2025-12-17 19:47:00', 'bdzYJ5y4', '6067457'), - (516, 2027, 'attending', '2023-04-17 21:29:18', '2025-12-17 19:47:00', 'bdzYJ5y4', '6068094'), - (516, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'bdzYJ5y4', '6068252'), - (516, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'bdzYJ5y4', '6068253'), - (516, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'bdzYJ5y4', '6068254'), - (516, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'bdzYJ5y4', '6068280'), - (516, 2032, 'attending', '2023-05-22 02:50:16', '2025-12-17 19:47:04', 'bdzYJ5y4', '6068281'), - (516, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'bdzYJ5y4', '6069093'), - (516, 2035, 'not_attending', '2023-05-01 21:06:29', '2025-12-17 19:47:02', 'bdzYJ5y4', '6070142'), - (516, 2041, 'attending', '2023-04-24 02:33:53', '2025-12-17 19:47:01', 'bdzYJ5y4', '6072528'), - (516, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'bdzYJ5y4', '6075556'), - (516, 2046, 'not_attending', '2023-05-08 02:21:35', '2025-12-17 19:47:02', 'bdzYJ5y4', '6076020'), - (516, 2047, 'not_attending', '2023-05-01 21:06:43', '2025-12-17 19:47:02', 'bdzYJ5y4', '6076027'), - (516, 2048, 'not_attending', '2023-05-08 02:21:57', '2025-12-17 19:47:03', 'bdzYJ5y4', '6076415'), - (516, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'bdzYJ5y4', '6079840'), - (516, 2050, 'not_attending', '2023-05-01 21:06:47', '2025-12-17 19:47:02', 'bdzYJ5y4', '6080489'), - (516, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'bdzYJ5y4', '6083398'), - (516, 2053, 'not_attending', '2023-05-08 16:23:40', '2025-12-17 19:47:02', 'bdzYJ5y4', '6092644'), - (516, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'bdzYJ5y4', '6093504'), - (516, 2057, 'not_attending', '2023-05-08 02:21:29', '2025-12-17 19:47:02', 'bdzYJ5y4', '6093692'), - (516, 2058, 'maybe', '2023-05-08 16:23:47', '2025-12-17 19:47:02', 'bdzYJ5y4', '6096374'), - (516, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'bdzYJ5y4', '6097414'), - (516, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'bdzYJ5y4', '6097442'), - (516, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'bdzYJ5y4', '6097684'), - (516, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'bdzYJ5y4', '6098762'), - (516, 2064, 'maybe', '2023-06-04 12:56:56', '2025-12-17 19:46:50', 'bdzYJ5y4', '6099988'), - (516, 2065, 'attending', '2023-06-04 12:56:51', '2025-12-17 19:46:49', 'bdzYJ5y4', '6101169'), - (516, 2066, 'not_attending', '2023-06-04 12:56:36', '2025-12-17 19:47:04', 'bdzYJ5y4', '6101361'), - (516, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'bdzYJ5y4', '6101362'), - (516, 2069, 'not_attending', '2023-05-15 22:05:44', '2025-12-17 19:47:03', 'bdzYJ5y4', '6103750'), - (516, 2072, 'not_attending', '2023-05-15 22:05:31', '2025-12-17 19:47:03', 'bdzYJ5y4', '6105573'), - (516, 2074, 'maybe', '2023-05-24 17:30:10', '2025-12-17 19:47:03', 'bdzYJ5y4', '6107312'), - (516, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'bdzYJ5y4', '6107314'), - (516, 2080, 'maybe', '2023-05-29 20:45:17', '2025-12-17 19:47:04', 'bdzYJ5y4', '6114677'), - (516, 2086, 'not_attending', '2023-06-01 06:00:52', '2025-12-17 19:47:04', 'bdzYJ5y4', '6119877'), - (516, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'bdzYJ5y4', '6120034'), - (516, 2089, 'not_attending', '2023-06-04 12:57:07', '2025-12-17 19:47:04', 'bdzYJ5y4', '6125227'), - (516, 2090, 'not_attending', '2023-06-01 06:00:56', '2025-12-17 19:47:04', 'bdzYJ5y4', '6127961'), - (516, 2091, 'not_attending', '2023-06-04 12:57:01', '2025-12-17 19:47:04', 'bdzYJ5y4', '6130657'), - (516, 2093, 'not_attending', '2023-06-04 12:57:28', '2025-12-17 19:47:04', 'bdzYJ5y4', '6132598'), - (516, 2094, 'not_attending', '2023-06-06 05:12:58', '2025-12-17 19:47:04', 'bdzYJ5y4', '6135924'), - (516, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'bdzYJ5y4', '6136733'), - (516, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'bdzYJ5y4', '6137989'), - (516, 2103, 'not_attending', '2023-06-19 01:39:02', '2025-12-17 19:46:50', 'bdzYJ5y4', '6149451'), - (516, 2104, 'maybe', '2023-06-21 09:31:30', '2025-12-17 19:46:50', 'bdzYJ5y4', '6149499'), - (516, 2107, 'not_attending', '2023-06-21 09:31:23', '2025-12-17 19:46:50', 'bdzYJ5y4', '6150480'), - (516, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'bdzYJ5y4', '6150864'), - (516, 2109, 'not_attending', '2023-06-21 09:31:44', '2025-12-17 19:46:50', 'bdzYJ5y4', '6152821'), - (516, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'bdzYJ5y4', '6155491'), - (516, 2111, 'maybe', '2023-06-21 09:31:27', '2025-12-17 19:46:50', 'bdzYJ5y4', '6156121'), - (516, 2112, 'not_attending', '2023-06-21 09:31:22', '2025-12-17 19:46:50', 'bdzYJ5y4', '6156213'), - (516, 2113, 'not_attending', '2023-06-21 09:31:38', '2025-12-17 19:46:50', 'bdzYJ5y4', '6156215'), - (516, 2114, 'maybe', '2023-06-21 09:31:46', '2025-12-17 19:46:50', 'bdzYJ5y4', '6158648'), - (516, 2115, 'not_attending', '2023-06-26 19:20:26', '2025-12-17 19:46:50', 'bdzYJ5y4', '6161437'), - (516, 2116, 'not_attending', '2023-07-06 12:26:47', '2025-12-17 19:46:51', 'bdzYJ5y4', '6163389'), - (516, 2117, 'not_attending', '2023-06-26 19:19:51', '2025-12-17 19:46:50', 'bdzYJ5y4', '6163750'), - (516, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'bdzYJ5y4', '6164417'), - (516, 2119, 'maybe', '2023-06-26 19:20:19', '2025-12-17 19:46:50', 'bdzYJ5y4', '6165461'), - (516, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'bdzYJ5y4', '6166388'), - (516, 2121, 'not_attending', '2023-06-27 23:58:35', '2025-12-17 19:46:50', 'bdzYJ5y4', '6176439'), - (516, 2123, 'not_attending', '2023-06-27 23:58:31', '2025-12-17 19:46:50', 'bdzYJ5y4', '6176502'), - (516, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'bdzYJ5y4', '6182410'), - (516, 2130, 'maybe', '2023-07-06 12:26:40', '2025-12-17 19:46:51', 'bdzYJ5y4', '6183891'), - (516, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'bdzYJ5y4', '6185812'), - (516, 2132, 'not_attending', '2023-07-07 16:08:31', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187015'), - (516, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'bdzYJ5y4', '6187651'), - (516, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187963'), - (516, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187964'), - (516, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'bdzYJ5y4', '6187966'), - (516, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'bdzYJ5y4', '6187967'), - (516, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187969'), - (516, 2139, 'maybe', '2023-07-09 17:14:55', '2025-12-17 19:46:52', 'bdzYJ5y4', '6188027'), - (516, 2140, 'not_attending', '2023-07-07 16:08:43', '2025-12-17 19:46:52', 'bdzYJ5y4', '6188074'), - (516, 2141, 'not_attending', '2023-07-09 17:14:44', '2025-12-17 19:46:52', 'bdzYJ5y4', '6188819'), - (516, 2142, 'not_attending', '2023-07-17 17:44:33', '2025-12-17 19:46:52', 'bdzYJ5y4', '6333850'), - (516, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'bdzYJ5y4', '6334878'), - (516, 2145, 'not_attending', '2023-07-09 17:14:50', '2025-12-17 19:46:52', 'bdzYJ5y4', '6334903'), - (516, 2146, 'not_attending', '2023-07-17 22:31:46', '2025-12-17 19:46:53', 'bdzYJ5y4', '6335638'), - (516, 2147, 'not_attending', '2023-07-11 15:37:17', '2025-12-17 19:46:52', 'bdzYJ5y4', '6335666'), - (516, 2148, 'not_attending', '2023-07-21 22:34:02', '2025-12-17 19:46:53', 'bdzYJ5y4', '6335667'), - (516, 2149, 'maybe', '2023-07-10 11:05:06', '2025-12-17 19:46:53', 'bdzYJ5y4', '6335682'), - (516, 2150, 'not_attending', '2023-07-11 18:20:28', '2025-12-17 19:46:52', 'bdzYJ5y4', '6335687'), - (516, 2151, 'not_attending', '2023-07-11 15:37:13', '2025-12-17 19:46:52', 'bdzYJ5y4', '6335700'), - (516, 2152, 'maybe', '2023-07-11 15:37:09', '2025-12-17 19:46:52', 'bdzYJ5y4', '6337021'), - (516, 2153, 'not_attending', '2023-07-11 16:09:17', '2025-12-17 19:46:52', 'bdzYJ5y4', '6337236'), - (516, 2155, 'not_attending', '2023-07-13 05:22:07', '2025-12-17 19:46:53', 'bdzYJ5y4', '6337970'), - (516, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'bdzYJ5y4', '6338308'), - (516, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'bdzYJ5y4', '6338342'), - (516, 2158, 'not_attending', '2023-07-17 22:31:53', '2025-12-17 19:46:53', 'bdzYJ5y4', '6338353'), - (516, 2159, 'not_attending', '2023-07-13 05:22:42', '2025-12-17 19:46:53', 'bdzYJ5y4', '6338355'), - (516, 2160, 'attending', '2023-07-13 05:22:48', '2025-12-17 19:46:54', 'bdzYJ5y4', '6338358'), - (516, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'bdzYJ5y4', '6341710'), - (516, 2164, 'not_attending', '2023-07-27 00:23:56', '2025-12-17 19:46:54', 'bdzYJ5y4', '6341797'), - (516, 2165, 'maybe', '2023-07-31 23:36:29', '2025-12-17 19:46:54', 'bdzYJ5y4', '6342044'), - (516, 2166, 'not_attending', '2023-07-20 13:05:09', '2025-12-17 19:46:54', 'bdzYJ5y4', '6342115'), - (516, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342298'), - (516, 2169, 'not_attending', '2023-07-21 22:34:04', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342306'), - (516, 2171, 'maybe', '2023-07-20 13:05:12', '2025-12-17 19:46:54', 'bdzYJ5y4', '6342328'), - (516, 2172, 'not_attending', '2023-07-20 17:31:17', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342591'), - (516, 2173, 'not_attending', '2023-07-20 17:31:12', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342769'), - (516, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'bdzYJ5y4', '6343294'), - (516, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'bdzYJ5y4', '6347034'), - (516, 2177, 'not_attending', '2023-08-04 15:30:57', '2025-12-17 19:46:55', 'bdzYJ5y4', '6347053'), - (516, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'bdzYJ5y4', '6347056'), - (516, 2179, 'not_attending', '2023-08-01 11:48:39', '2025-12-17 19:46:54', 'bdzYJ5y4', '6347591'), - (516, 2180, 'not_attending', '2023-07-25 11:06:43', '2025-12-17 19:46:54', 'bdzYJ5y4', '6348788'), - (516, 2181, 'not_attending', '2023-07-27 00:23:50', '2025-12-17 19:46:54', 'bdzYJ5y4', '6349354'), - (516, 2182, 'not_attending', '2023-07-27 00:23:42', '2025-12-17 19:46:53', 'bdzYJ5y4', '6349618'), - (516, 2183, 'not_attending', '2023-07-28 14:08:30', '2025-12-17 19:46:54', 'bdzYJ5y4', '6353008'), - (516, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'bdzYJ5y4', '6353830'), - (516, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'bdzYJ5y4', '6353831'), - (516, 2187, 'not_attending', '2023-08-04 15:30:54', '2025-12-17 19:46:55', 'bdzYJ5y4', '6357559'), - (516, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'bdzYJ5y4', '6357867'), - (516, 2190, 'not_attending', '2023-08-04 15:30:43', '2025-12-17 19:46:55', 'bdzYJ5y4', '6357892'), - (516, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358652'), - (516, 2192, 'not_attending', '2023-08-04 18:44:17', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358666'), - (516, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358668'), - (516, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358669'), - (516, 2195, 'maybe', '2023-08-10 05:06:13', '2025-12-17 19:46:55', 'bdzYJ5y4', '6359397'), - (516, 2196, 'maybe', '2023-09-03 04:04:09', '2025-12-17 19:46:56', 'bdzYJ5y4', '6359398'), - (516, 2197, 'maybe', '2023-09-13 19:50:41', '2025-12-17 19:46:44', 'bdzYJ5y4', '6359399'), - (516, 2198, 'maybe', '2023-09-08 08:46:57', '2025-12-17 19:46:45', 'bdzYJ5y4', '6359400'), - (516, 2199, 'attending', '2023-08-10 05:06:07', '2025-12-17 19:46:55', 'bdzYJ5y4', '6359849'), - (516, 2200, 'not_attending', '2023-08-06 08:27:36', '2025-12-17 19:46:55', 'bdzYJ5y4', '6359850'), - (516, 2203, 'not_attending', '2023-08-10 05:05:45', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361524'), - (516, 2204, 'not_attending', '2023-08-10 05:05:50', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361542'), - (516, 2206, 'not_attending', '2023-08-08 16:27:24', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361659'), - (516, 2208, 'not_attending', '2023-08-08 16:27:28', '2025-12-17 19:46:54', 'bdzYJ5y4', '6361709'), - (516, 2209, 'not_attending', '2023-08-10 05:06:16', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361710'), - (516, 2210, 'maybe', '2023-08-28 10:40:13', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361711'), - (516, 2211, 'not_attending', '2023-08-10 05:06:10', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361712'), - (516, 2212, 'not_attending', '2023-09-24 11:52:18', '2025-12-17 19:46:45', 'bdzYJ5y4', '6361713'), - (516, 2213, 'not_attending', '2023-08-10 05:06:02', '2025-12-17 19:46:55', 'bdzYJ5y4', '6362935'), - (516, 2214, 'not_attending', '2023-08-10 05:05:57', '2025-12-17 19:46:55', 'bdzYJ5y4', '6363218'), - (516, 2215, 'not_attending', '2023-08-10 22:28:15', '2025-12-17 19:46:55', 'bdzYJ5y4', '6363479'), - (516, 2216, 'not_attending', '2023-08-16 15:13:59', '2025-12-17 19:46:55', 'bdzYJ5y4', '6364123'), - (516, 2218, 'not_attending', '2023-08-20 01:46:06', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367308'), - (516, 2220, 'not_attending', '2023-08-31 18:07:43', '2025-12-17 19:46:56', 'bdzYJ5y4', '6367310'), - (516, 2221, 'not_attending', '2023-08-16 15:13:57', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367357'), - (516, 2222, 'maybe', '2023-08-20 01:46:21', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367358'), - (516, 2223, 'not_attending', '2023-08-16 15:13:50', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367439'), - (516, 2224, 'not_attending', '2023-08-16 15:13:48', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367635'), - (516, 2225, 'not_attending', '2023-08-28 10:40:08', '2025-12-17 19:46:55', 'bdzYJ5y4', '6368434'), - (516, 2227, 'attending', '2023-08-20 01:46:00', '2025-12-17 19:46:55', 'bdzYJ5y4', '6370581'), - (516, 2229, 'not_attending', '2023-08-21 02:31:48', '2025-12-17 19:46:55', 'bdzYJ5y4', '6373787'), - (516, 2231, 'not_attending', '2023-08-23 22:39:23', '2025-12-17 19:46:55', 'bdzYJ5y4', '6374748'), - (516, 2232, 'attending', '2023-08-23 15:40:01', '2025-12-17 19:46:55', 'bdzYJ5y4', '6374818'), - (516, 2234, 'not_attending', '2023-08-31 18:07:36', '2025-12-17 19:46:56', 'bdzYJ5y4', '6382559'), - (516, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'bdzYJ5y4', '6382573'), - (516, 2236, 'not_attending', '2023-08-28 10:40:19', '2025-12-17 19:46:55', 'bdzYJ5y4', '6382618'), - (516, 2238, 'not_attending', '2023-08-31 18:07:37', '2025-12-17 19:46:56', 'bdzYJ5y4', '6387266'), - (516, 2239, 'not_attending', '2023-08-31 18:07:28', '2025-12-17 19:46:56', 'bdzYJ5y4', '6387592'), - (516, 2240, 'maybe', '2023-09-03 04:03:51', '2025-12-17 19:46:56', 'bdzYJ5y4', '6388603'), - (516, 2241, 'not_attending', '2023-09-03 04:03:55', '2025-12-17 19:46:44', 'bdzYJ5y4', '6388604'), - (516, 2242, 'maybe', '2023-09-08 08:46:54', '2025-12-17 19:46:45', 'bdzYJ5y4', '6388606'), - (516, 2243, 'not_attending', '2023-09-06 08:54:46', '2025-12-17 19:46:56', 'bdzYJ5y4', '6393686'), - (516, 2247, 'not_attending', '2023-09-06 08:54:43', '2025-12-17 19:46:56', 'bdzYJ5y4', '6394628'), - (516, 2248, 'not_attending', '2023-09-10 02:14:33', '2025-12-17 19:46:44', 'bdzYJ5y4', '6394629'), - (516, 2249, 'not_attending', '2023-09-17 08:10:56', '2025-12-17 19:46:45', 'bdzYJ5y4', '6394630'), - (516, 2250, 'not_attending', '2023-09-24 11:52:12', '2025-12-17 19:46:45', 'bdzYJ5y4', '6394631'), - (516, 2253, 'not_attending', '2023-09-17 08:11:06', '2025-12-17 19:46:45', 'bdzYJ5y4', '6401811'), - (516, 2255, 'not_attending', '2023-09-13 19:50:47', '2025-12-17 19:46:45', 'bdzYJ5y4', '6403562'), - (516, 2261, 'not_attending', '2023-09-27 20:40:24', '2025-12-17 19:46:45', 'bdzYJ5y4', '6427422'), - (516, 2262, 'not_attending', '2023-09-29 16:44:54', '2025-12-17 19:46:45', 'bdzYJ5y4', '6427423'), - (516, 2263, 'maybe', '2023-09-27 20:40:39', '2025-12-17 19:46:45', 'bdzYJ5y4', '6429351'), - (516, 2264, 'not_attending', '2023-09-27 20:40:21', '2025-12-17 19:46:45', 'bdzYJ5y4', '6431478'), - (516, 2265, 'not_attending', '2023-09-29 16:44:52', '2025-12-17 19:46:45', 'bdzYJ5y4', '6439625'), - (516, 2266, 'maybe', '2023-10-03 22:41:14', '2025-12-17 19:46:45', 'bdzYJ5y4', '6439635'), - (516, 2267, 'not_attending', '2023-10-02 02:50:35', '2025-12-17 19:46:45', 'bdzYJ5y4', '6440034'), - (516, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'bdzYJ5y4', '6440863'), - (516, 2269, 'not_attending', '2023-10-03 22:41:02', '2025-12-17 19:46:45', 'bdzYJ5y4', '6442978'), - (516, 2270, 'not_attending', '2023-10-03 22:41:18', '2025-12-17 19:46:46', 'bdzYJ5y4', '6443067'), - (516, 2271, 'maybe', '2023-10-03 22:41:07', '2025-12-17 19:46:45', 'bdzYJ5y4', '6445375'), - (516, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'bdzYJ5y4', '6445440'), - (516, 2273, 'not_attending', '2023-10-03 22:41:00', '2025-12-17 19:46:45', 'bdzYJ5y4', '6448282'), - (516, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'bdzYJ5y4', '6453951'), - (516, 2277, 'not_attending', '2023-10-09 09:26:58', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455211'), - (516, 2278, 'not_attending', '2023-10-09 09:26:42', '2025-12-17 19:46:45', 'bdzYJ5y4', '6455213'), - (516, 2279, 'not_attending', '2023-10-10 19:29:59', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455460'), - (516, 2280, 'not_attending', '2023-10-09 09:26:46', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455470'), - (516, 2283, 'not_attending', '2023-10-10 19:29:55', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455503'), - (516, 2284, 'not_attending', '2023-10-11 21:05:51', '2025-12-17 19:46:46', 'bdzYJ5y4', '6460928'), - (516, 2285, 'not_attending', '2023-10-21 13:24:22', '2025-12-17 19:46:47', 'bdzYJ5y4', '6460929'), - (516, 2286, 'not_attending', '2023-11-24 03:13:41', '2025-12-17 19:46:48', 'bdzYJ5y4', '6460930'), - (516, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'bdzYJ5y4', '6461696'), - (516, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'bdzYJ5y4', '6462129'), - (516, 2290, 'not_attending', '2023-10-11 21:05:59', '2025-12-17 19:46:46', 'bdzYJ5y4', '6462214'), - (516, 2291, 'not_attending', '2023-10-11 21:05:54', '2025-12-17 19:46:46', 'bdzYJ5y4', '6462215'), - (516, 2292, 'not_attending', '2023-10-28 01:25:29', '2025-12-17 19:46:47', 'bdzYJ5y4', '6462216'), - (516, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'bdzYJ5y4', '6463218'), - (516, 2294, 'not_attending', '2023-10-12 14:58:38', '2025-12-17 19:46:46', 'bdzYJ5y4', '6465907'), - (516, 2295, 'maybe', '2023-10-16 07:40:02', '2025-12-17 19:46:46', 'bdzYJ5y4', '6467832'), - (516, 2296, 'not_attending', '2023-10-21 13:24:14', '2025-12-17 19:46:47', 'bdzYJ5y4', '6468393'), - (516, 2297, 'not_attending', '2023-10-14 06:19:26', '2025-12-17 19:46:46', 'bdzYJ5y4', '6469583'), - (516, 2299, 'maybe', '2023-10-16 07:39:54', '2025-12-17 19:46:46', 'bdzYJ5y4', '6472181'), - (516, 2300, 'maybe', '2023-10-16 07:40:06', '2025-12-17 19:46:47', 'bdzYJ5y4', '6472185'), - (516, 2301, 'not_attending', '2023-10-22 17:54:54', '2025-12-17 19:46:46', 'bdzYJ5y4', '6474276'), - (516, 2303, 'not_attending', '2023-10-21 13:24:24', '2025-12-17 19:46:47', 'bdzYJ5y4', '6482691'), - (516, 2304, 'attending', '2023-10-25 21:56:27', '2025-12-17 19:46:47', 'bdzYJ5y4', '6482693'), - (516, 2306, 'not_attending', '2023-11-11 18:37:05', '2025-12-17 19:46:47', 'bdzYJ5y4', '6484200'), - (516, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'bdzYJ5y4', '6484680'), - (516, 2308, 'not_attending', '2023-10-25 21:56:08', '2025-12-17 19:46:47', 'bdzYJ5y4', '6485393'), - (516, 2310, 'not_attending', '2023-10-25 21:56:31', '2025-12-17 19:46:47', 'bdzYJ5y4', '6487709'), - (516, 2311, 'not_attending', '2023-10-30 05:21:14', '2025-12-17 19:46:47', 'bdzYJ5y4', '6487725'), - (516, 2314, 'not_attending', '2023-10-29 21:52:33', '2025-12-17 19:46:47', 'bdzYJ5y4', '6493665'), - (516, 2315, 'not_attending', '2023-10-30 05:21:11', '2025-12-17 19:46:47', 'bdzYJ5y4', '6493666'), - (516, 2316, 'not_attending', '2023-11-07 02:45:38', '2025-12-17 19:46:48', 'bdzYJ5y4', '6493668'), - (516, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'bdzYJ5y4', '6507741'), - (516, 2318, 'attending', '2023-10-30 20:42:25', '2025-12-17 19:46:47', 'bdzYJ5y4', '6508566'), - (516, 2319, 'not_attending', '2023-10-30 20:42:28', '2025-12-17 19:46:47', 'bdzYJ5y4', '6508567'), - (516, 2320, 'not_attending', '2023-11-07 02:45:17', '2025-12-17 19:46:47', 'bdzYJ5y4', '6508647'), - (516, 2321, 'not_attending', '2023-11-01 16:17:41', '2025-12-17 19:46:47', 'bdzYJ5y4', '6512075'), - (516, 2322, 'not_attending', '2023-11-01 16:17:49', '2025-12-17 19:46:48', 'bdzYJ5y4', '6514659'), - (516, 2323, 'not_attending', '2023-11-12 05:12:27', '2025-12-17 19:46:49', 'bdzYJ5y4', '6514660'), - (516, 2324, 'not_attending', '2023-11-12 05:21:05', '2025-12-17 19:46:49', 'bdzYJ5y4', '6514662'), - (516, 2325, 'attending', '2023-11-12 05:21:09', '2025-12-17 19:46:36', 'bdzYJ5y4', '6514663'), - (516, 2326, 'not_attending', '2023-11-16 22:15:39', '2025-12-17 19:46:48', 'bdzYJ5y4', '6514805'), - (516, 2327, 'not_attending', '2023-11-01 22:41:20', '2025-12-17 19:46:47', 'bdzYJ5y4', '6515494'), - (516, 2328, 'not_attending', '2023-11-01 22:41:17', '2025-12-17 19:46:47', 'bdzYJ5y4', '6515504'), - (516, 2329, 'not_attending', '2023-11-07 21:32:25', '2025-12-17 19:46:47', 'bdzYJ5y4', '6517138'), - (516, 2330, 'not_attending', '2023-11-07 02:45:27', '2025-12-17 19:46:47', 'bdzYJ5y4', '6517941'), - (516, 2331, 'not_attending', '2023-11-07 02:45:33', '2025-12-17 19:46:47', 'bdzYJ5y4', '6518640'), - (516, 2332, 'not_attending', '2023-11-09 18:31:52', '2025-12-17 19:46:47', 'bdzYJ5y4', '6518655'), - (516, 2333, 'not_attending', '2023-11-07 02:45:14', '2025-12-17 19:46:47', 'bdzYJ5y4', '6519103'), - (516, 2335, 'not_attending', '2023-11-09 04:23:22', '2025-12-17 19:46:47', 'bdzYJ5y4', '6534890'), - (516, 2337, 'attending', '2023-11-08 01:06:34', '2025-12-17 19:46:48', 'bdzYJ5y4', '6535681'), - (516, 2338, 'not_attending', '2023-11-12 05:12:19', '2025-12-17 19:46:48', 'bdzYJ5y4', '6538868'), - (516, 2339, 'not_attending', '2023-11-11 18:37:01', '2025-12-17 19:46:47', 'bdzYJ5y4', '6539128'), - (516, 2340, 'not_attending', '2023-11-15 19:05:01', '2025-12-17 19:46:48', 'bdzYJ5y4', '6540279'), - (516, 2341, 'not_attending', '2023-11-15 19:04:58', '2025-12-17 19:46:48', 'bdzYJ5y4', '6543263'), - (516, 2343, 'maybe', '2023-11-15 19:05:04', '2025-12-17 19:46:48', 'bdzYJ5y4', '6574728'), - (516, 2345, 'not_attending', '2023-11-27 06:43:24', '2025-12-17 19:46:48', 'bdzYJ5y4', '6582414'), - (516, 2347, 'not_attending', '2023-11-20 12:06:01', '2025-12-17 19:46:48', 'bdzYJ5y4', '6583053'), - (516, 2348, 'not_attending', '2023-11-20 12:05:59', '2025-12-17 19:46:48', 'bdzYJ5y4', '6583064'), - (516, 2350, 'not_attending', '2023-11-21 03:38:32', '2025-12-17 19:46:48', 'bdzYJ5y4', '6584352'), - (516, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'bdzYJ5y4', '6584747'), - (516, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'bdzYJ5y4', '6587097'), - (516, 2354, 'not_attending', '2023-11-29 23:47:06', '2025-12-17 19:46:48', 'bdzYJ5y4', '6591742'), - (516, 2355, 'not_attending', '2023-12-04 19:45:19', '2025-12-17 19:46:49', 'bdzYJ5y4', '6593339'), - (516, 2357, 'maybe', '2023-12-18 16:45:27', '2025-12-17 19:46:36', 'bdzYJ5y4', '6593341'), - (516, 2358, 'not_attending', '2023-11-29 19:13:47', '2025-12-17 19:46:48', 'bdzYJ5y4', '6595321'), - (516, 2362, 'not_attending', '2023-12-04 19:45:23', '2025-12-17 19:46:49', 'bdzYJ5y4', '6605708'), - (516, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'bdzYJ5y4', '6609022'), - (516, 2365, 'not_attending', '2023-12-18 16:45:35', '2025-12-17 19:46:37', 'bdzYJ5y4', '6613093'), - (516, 2370, 'not_attending', '2023-12-13 18:22:08', '2025-12-17 19:46:36', 'bdzYJ5y4', '6623765'), - (516, 2372, 'not_attending', '2023-12-18 16:45:30', '2025-12-17 19:46:36', 'bdzYJ5y4', '6628243'), - (516, 2373, 'not_attending', '2023-12-28 19:56:37', '2025-12-17 19:46:38', 'bdzYJ5y4', '6632678'), - (516, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'bdzYJ5y4', '6632757'), - (516, 2375, 'not_attending', '2023-12-20 22:38:51', '2025-12-17 19:46:36', 'bdzYJ5y4', '6634548'), - (516, 2377, 'not_attending', '2024-01-06 02:38:23', '2025-12-17 19:46:37', 'bdzYJ5y4', '6643448'), - (516, 2378, 'maybe', '2023-12-30 17:57:59', '2025-12-17 19:46:37', 'bdzYJ5y4', '6644006'), - (516, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'bdzYJ5y4', '6644187'), - (516, 2380, 'not_attending', '2023-12-31 15:50:36', '2025-12-17 19:46:37', 'bdzYJ5y4', '6645105'), - (516, 2381, 'maybe', '2024-01-02 04:53:12', '2025-12-17 19:46:37', 'bdzYJ5y4', '6646398'), - (516, 2382, 'maybe', '2024-01-02 04:52:55', '2025-12-17 19:46:37', 'bdzYJ5y4', '6646401'), - (516, 2384, 'maybe', '2024-01-02 04:53:07', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648022'), - (516, 2385, 'not_attending', '2024-01-08 20:21:19', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648943'), - (516, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648951'), - (516, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648952'), - (516, 2388, 'not_attending', '2024-01-03 03:20:46', '2025-12-17 19:46:37', 'bdzYJ5y4', '6649244'), - (516, 2389, 'not_attending', '2024-01-12 00:47:42', '2025-12-17 19:46:40', 'bdzYJ5y4', '6651094'), - (516, 2391, 'maybe', '2024-01-06 02:38:17', '2025-12-17 19:46:37', 'bdzYJ5y4', '6654138'), - (516, 2392, 'not_attending', '2024-01-06 02:38:38', '2025-12-17 19:46:37', 'bdzYJ5y4', '6654412'), - (516, 2394, 'not_attending', '2024-01-15 03:21:38', '2025-12-17 19:46:38', 'bdzYJ5y4', '6654470'), - (516, 2395, 'not_attending', '2024-01-16 07:05:26', '2025-12-17 19:46:38', 'bdzYJ5y4', '6654471'), - (516, 2396, 'not_attending', '2024-01-16 07:05:30', '2025-12-17 19:46:38', 'bdzYJ5y4', '6655401'), - (516, 2399, 'attending', '2024-01-10 05:08:38', '2025-12-17 19:46:38', 'bdzYJ5y4', '6657583'), - (516, 2400, 'not_attending', '2024-01-08 20:21:31', '2025-12-17 19:46:37', 'bdzYJ5y4', '6659378'), - (516, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'bdzYJ5y4', '6661585'), - (516, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'bdzYJ5y4', '6661588'), - (516, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'bdzYJ5y4', '6661589'), - (516, 2404, 'not_attending', '2024-01-12 00:47:27', '2025-12-17 19:46:38', 'bdzYJ5y4', '6666858'), - (516, 2405, 'not_attending', '2024-01-16 07:05:39', '2025-12-17 19:46:38', 'bdzYJ5y4', '6667332'), - (516, 2406, 'not_attending', '2024-01-18 22:40:49', '2025-12-17 19:46:40', 'bdzYJ5y4', '6692344'), - (516, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'bdzYJ5y4', '6699906'), - (516, 2408, 'maybe', '2024-01-15 04:20:55', '2025-12-17 19:46:40', 'bdzYJ5y4', '6699907'), - (516, 2409, 'not_attending', '2024-01-15 04:21:00', '2025-12-17 19:46:41', 'bdzYJ5y4', '6699909'), - (516, 2410, 'maybe', '2024-01-15 04:21:10', '2025-12-17 19:46:41', 'bdzYJ5y4', '6699911'), - (516, 2411, 'not_attending', '2024-01-28 14:37:01', '2025-12-17 19:46:41', 'bdzYJ5y4', '6699913'), - (516, 2412, 'not_attending', '2024-02-02 18:40:56', '2025-12-17 19:46:43', 'bdzYJ5y4', '6700717'), - (516, 2413, 'not_attending', '2024-02-16 16:05:40', '2025-12-17 19:46:42', 'bdzYJ5y4', '6700719'), - (516, 2414, 'not_attending', '2024-01-18 22:40:56', '2025-12-17 19:46:40', 'bdzYJ5y4', '6701000'), - (516, 2415, 'not_attending', '2024-01-18 22:40:54', '2025-12-17 19:46:40', 'bdzYJ5y4', '6701001'), - (516, 2416, 'attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'bdzYJ5y4', '6701109'), - (516, 2419, 'not_attending', '2024-01-29 19:32:52', '2025-12-17 19:46:41', 'bdzYJ5y4', '6704505'), - (516, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'bdzYJ5y4', '6705219'), - (516, 2426, 'maybe', '2024-01-23 12:49:17', '2025-12-17 19:46:40', 'bdzYJ5y4', '6705569'), - (516, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'bdzYJ5y4', '6710153'), - (516, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'bdzYJ5y4', '6711552'), - (516, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'bdzYJ5y4', '6711553'), - (516, 2431, 'not_attending', '2024-01-29 19:32:50', '2025-12-17 19:46:41', 'bdzYJ5y4', '6712394'), - (516, 2432, 'not_attending', '2024-01-29 19:32:56', '2025-12-17 19:46:41', 'bdzYJ5y4', '6712822'), - (516, 2435, 'not_attending', '2024-01-29 19:32:43', '2025-12-17 19:46:41', 'bdzYJ5y4', '6721547'), - (516, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'bdzYJ5y4', '6722688'), - (516, 2438, 'not_attending', '2024-02-02 18:40:48', '2025-12-17 19:46:41', 'bdzYJ5y4', '6730201'), - (516, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'bdzYJ5y4', '6730620'), - (516, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'bdzYJ5y4', '6730642'), - (516, 2441, 'not_attending', '2024-02-02 18:40:32', '2025-12-17 19:46:41', 'bdzYJ5y4', '6731263'), - (516, 2442, 'not_attending', '2024-02-02 18:40:36', '2025-12-17 19:46:41', 'bdzYJ5y4', '6732647'), - (516, 2443, 'not_attending', '2024-02-03 19:06:15', '2025-12-17 19:46:41', 'bdzYJ5y4', '6733775'), - (516, 2444, 'not_attending', '2024-02-05 06:06:12', '2025-12-17 19:46:41', 'bdzYJ5y4', '6734367'), - (516, 2446, 'not_attending', '2024-02-26 17:50:24', '2025-12-17 19:46:43', 'bdzYJ5y4', '6734369'), - (516, 2447, 'not_attending', '2024-03-10 21:34:38', '2025-12-17 19:46:32', 'bdzYJ5y4', '6734370'), - (516, 2448, 'not_attending', '2024-03-22 17:43:36', '2025-12-17 19:46:33', 'bdzYJ5y4', '6734371'), - (516, 2449, 'not_attending', '2024-02-13 20:23:03', '2025-12-17 19:46:42', 'bdzYJ5y4', '6735833'), - (516, 2451, 'not_attending', '2024-02-08 08:46:51', '2025-12-17 19:46:41', 'bdzYJ5y4', '6740333'), - (516, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'bdzYJ5y4', '6740364'), - (516, 2454, 'not_attending', '2024-02-16 16:05:47', '2025-12-17 19:46:42', 'bdzYJ5y4', '6740921'), - (516, 2455, 'not_attending', '2024-02-08 08:46:53', '2025-12-17 19:46:41', 'bdzYJ5y4', '6741034'), - (516, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'bdzYJ5y4', '6743829'), - (516, 2463, 'not_attending', '2024-02-13 20:22:44', '2025-12-17 19:46:41', 'bdzYJ5y4', '6746394'), - (516, 2465, 'not_attending', '2024-02-16 16:05:53', '2025-12-17 19:46:42', 'bdzYJ5y4', '7026725'), - (516, 2467, 'not_attending', '2024-02-21 19:51:28', '2025-12-17 19:46:43', 'bdzYJ5y4', '7029987'), - (516, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'bdzYJ5y4', '7030380'), - (516, 2469, 'maybe', '2024-02-19 07:18:48', '2025-12-17 19:46:42', 'bdzYJ5y4', '7030632'), - (516, 2471, 'not_attending', '2024-02-21 19:50:58', '2025-12-17 19:46:42', 'bdzYJ5y4', '7032425'), - (516, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'bdzYJ5y4', '7033677'), - (516, 2473, 'not_attending', '2024-02-21 19:51:35', '2025-12-17 19:46:43', 'bdzYJ5y4', '7033724'), - (516, 2474, 'attending', '2024-02-20 21:23:03', '2025-12-17 19:46:43', 'bdzYJ5y4', '7035415'), - (516, 2475, 'not_attending', '2024-02-21 19:51:40', '2025-12-17 19:46:43', 'bdzYJ5y4', '7035643'), - (516, 2476, 'not_attending', '2024-02-21 19:51:38', '2025-12-17 19:46:43', 'bdzYJ5y4', '7035691'), - (516, 2477, 'not_attending', '2024-02-21 19:50:52', '2025-12-17 19:46:42', 'bdzYJ5y4', '7035692'), - (516, 2478, 'not_attending', '2024-02-22 00:01:23', '2025-12-17 19:46:43', 'bdzYJ5y4', '7036478'), - (516, 2479, 'not_attending', '2024-02-21 19:51:33', '2025-12-17 19:46:43', 'bdzYJ5y4', '7037009'), - (516, 2481, 'not_attending', '2024-02-26 04:29:03', '2025-12-17 19:46:43', 'bdzYJ5y4', '7044715'), - (516, 2482, 'not_attending', '2024-02-29 20:49:39', '2025-12-17 19:46:44', 'bdzYJ5y4', '7044719'), - (516, 2483, 'not_attending', '2024-02-26 17:50:32', '2025-12-17 19:46:32', 'bdzYJ5y4', '7044720'), - (516, 2484, 'not_attending', '2024-02-29 20:49:33', '2025-12-17 19:46:43', 'bdzYJ5y4', '7046836'), - (516, 2485, 'not_attending', '2024-02-27 07:40:22', '2025-12-17 19:46:43', 'bdzYJ5y4', '7048111'), - (516, 2486, 'not_attending', '2024-02-29 20:49:26', '2025-12-17 19:46:43', 'bdzYJ5y4', '7048277'), - (516, 2487, 'maybe', '2024-03-17 19:56:59', '2025-12-17 19:46:33', 'bdzYJ5y4', '7049279'), - (516, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'bdzYJ5y4', '7050318'), - (516, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'bdzYJ5y4', '7050319'), - (516, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'bdzYJ5y4', '7050322'), - (516, 2493, 'not_attending', '2024-03-05 21:58:59', '2025-12-17 19:46:32', 'bdzYJ5y4', '7052471'), - (516, 2494, 'not_attending', '2024-03-05 21:58:56', '2025-12-17 19:46:32', 'bdzYJ5y4', '7052472'), - (516, 2495, 'attending', '2024-03-04 18:26:04', '2025-12-17 19:46:32', 'bdzYJ5y4', '7052982'), - (516, 2498, 'maybe', '2024-03-17 19:56:50', '2025-12-17 19:46:33', 'bdzYJ5y4', '7057662'), - (516, 2499, 'attending', '2024-03-04 19:39:36', '2025-12-17 19:46:43', 'bdzYJ5y4', '7057804'), - (516, 2504, 'not_attending', '2024-03-21 22:28:17', '2025-12-17 19:46:33', 'bdzYJ5y4', '7063296'), - (516, 2505, 'not_attending', '2024-03-21 21:22:42', '2025-12-17 19:46:33', 'bdzYJ5y4', '7069163'), - (516, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'bdzYJ5y4', '7072824'), - (516, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'bdzYJ5y4', '7074348'), - (516, 2509, 'not_attending', '2024-03-22 17:43:39', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074349'), - (516, 2510, 'maybe', '2024-03-18 02:18:48', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074350'), - (516, 2511, 'not_attending', '2024-04-04 23:55:12', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074351'), - (516, 2512, 'not_attending', '2024-04-01 19:11:54', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074352'), - (516, 2513, 'not_attending', '2024-04-15 11:35:07', '2025-12-17 19:46:34', 'bdzYJ5y4', '7074353'), - (516, 2517, 'not_attending', '2024-06-28 14:24:34', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074357'), - (516, 2519, 'not_attending', '2024-05-24 16:41:39', '2025-12-17 19:46:36', 'bdzYJ5y4', '7074359'), - (516, 2521, 'not_attending', '2024-06-13 17:16:39', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074361'), - (516, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074364'), - (516, 2525, 'not_attending', '2024-06-10 20:07:23', '2025-12-17 19:46:28', 'bdzYJ5y4', '7074365'), - (516, 2526, 'not_attending', '2024-07-27 14:02:14', '2025-12-17 19:46:31', 'bdzYJ5y4', '7074366'), - (516, 2527, 'not_attending', '2024-06-27 17:03:48', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074367'), - (516, 2536, 'not_attending', '2024-03-17 19:56:46', '2025-12-17 19:46:33', 'bdzYJ5y4', '7077689'), - (516, 2537, 'not_attending', '2024-03-17 19:57:02', '2025-12-17 19:46:33', 'bdzYJ5y4', '7085484'), - (516, 2538, 'not_attending', '2024-03-17 19:57:09', '2025-12-17 19:46:33', 'bdzYJ5y4', '7085485'), - (516, 2539, 'maybe', '2024-03-18 02:18:23', '2025-12-17 19:46:33', 'bdzYJ5y4', '7085486'), - (516, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'bdzYJ5y4', '7089267'), - (516, 2541, 'not_attending', '2024-03-17 19:56:40', '2025-12-17 19:46:33', 'bdzYJ5y4', '7089404'), - (516, 2542, 'not_attending', '2024-03-18 02:18:59', '2025-12-17 19:46:33', 'bdzYJ5y4', '7090025'), - (516, 2544, 'not_attending', '2024-03-22 17:44:14', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096941'), - (516, 2545, 'not_attending', '2024-03-22 17:43:51', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096942'), - (516, 2546, 'not_attending', '2024-03-22 17:43:54', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096944'), - (516, 2547, 'not_attending', '2024-03-22 17:43:40', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096945'), - (516, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'bdzYJ5y4', '7098747'), - (516, 2549, 'not_attending', '2024-03-24 20:13:18', '2025-12-17 19:46:33', 'bdzYJ5y4', '7099657'), - (516, 2551, 'not_attending', '2024-03-31 02:23:27', '2025-12-17 19:46:33', 'bdzYJ5y4', '7109912'), - (516, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'bdzYJ5y4', '7113468'), - (516, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'bdzYJ5y4', '7114856'), - (516, 2555, 'not_attending', '2024-04-01 19:12:06', '2025-12-17 19:46:34', 'bdzYJ5y4', '7114951'), - (516, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'bdzYJ5y4', '7114955'), - (516, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'bdzYJ5y4', '7114956'), - (516, 2558, 'attending', '2024-04-04 23:55:50', '2025-12-17 19:46:35', 'bdzYJ5y4', '7114957'), - (516, 2559, 'not_attending', '2024-04-01 19:11:52', '2025-12-17 19:46:33', 'bdzYJ5y4', '7115254'), - (516, 2563, 'not_attending', '2024-04-04 23:55:16', '2025-12-17 19:46:33', 'bdzYJ5y4', '7134734'), - (516, 2564, 'not_attending', '2024-04-04 23:55:09', '2025-12-17 19:46:33', 'bdzYJ5y4', '7134735'), - (516, 2566, 'not_attending', '2024-04-15 11:35:04', '2025-12-17 19:46:34', 'bdzYJ5y4', '7140664'), - (516, 2567, 'not_attending', '2024-04-04 23:55:04', '2025-12-17 19:46:33', 'bdzYJ5y4', '7144962'), - (516, 2568, 'maybe', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'bdzYJ5y4', '7153615'), - (516, 2571, 'not_attending', '2024-04-08 13:39:25', '2025-12-17 19:46:33', 'bdzYJ5y4', '7159484'), - (516, 2573, 'not_attending', '2024-04-15 11:35:01', '2025-12-17 19:46:34', 'bdzYJ5y4', '7160612'), - (516, 2576, 'not_attending', '2024-04-22 21:24:46', '2025-12-17 19:46:34', 'bdzYJ5y4', '7164538'), - (516, 2578, 'maybe', '2024-04-11 15:34:10', '2025-12-17 19:46:34', 'bdzYJ5y4', '7167016'), - (516, 2581, 'not_attending', '2024-04-22 21:24:33', '2025-12-17 19:46:34', 'bdzYJ5y4', '7169048'), - (516, 2582, 'maybe', '2024-04-15 11:35:08', '2025-12-17 19:46:34', 'bdzYJ5y4', '7169765'), - (516, 2583, 'not_attending', '2024-04-15 11:34:57', '2025-12-17 19:46:34', 'bdzYJ5y4', '7172946'), - (516, 2585, 'maybe', '2024-04-22 21:24:37', '2025-12-17 19:46:34', 'bdzYJ5y4', '7175828'), - (516, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'bdzYJ5y4', '7178446'), - (516, 2594, 'maybe', '2024-04-22 21:24:25', '2025-12-17 19:46:34', 'bdzYJ5y4', '7182117'), - (516, 2595, 'maybe', '2024-04-22 21:24:43', '2025-12-17 19:46:34', 'bdzYJ5y4', '7182252'), - (516, 2596, 'not_attending', '2024-04-22 21:24:49', '2025-12-17 19:46:34', 'bdzYJ5y4', '7183788'), - (516, 2597, 'not_attending', '2024-04-22 13:32:05', '2025-12-17 19:46:34', 'bdzYJ5y4', '7186726'), - (516, 2598, 'not_attending', '2024-04-22 21:24:27', '2025-12-17 19:46:34', 'bdzYJ5y4', '7186731'), - (516, 2599, 'not_attending', '2024-04-22 21:24:28', '2025-12-17 19:46:34', 'bdzYJ5y4', '7189372'), - (516, 2600, 'not_attending', '2024-04-30 02:59:31', '2025-12-17 19:46:35', 'bdzYJ5y4', '7196794'), - (516, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'bdzYJ5y4', '7220467'), - (516, 2604, 'not_attending', '2024-05-24 16:41:36', '2025-12-17 19:46:36', 'bdzYJ5y4', '7225670'), - (516, 2605, 'not_attending', '2024-05-02 15:23:03', '2025-12-17 19:46:35', 'bdzYJ5y4', '7229243'), - (516, 2607, 'not_attending', '2024-04-30 02:59:42', '2025-12-17 19:46:35', 'bdzYJ5y4', '7240136'), - (516, 2609, 'not_attending', '2024-04-30 02:59:18', '2025-12-17 19:46:35', 'bdzYJ5y4', '7240354'), - (516, 2610, 'not_attending', '2024-05-03 11:29:46', '2025-12-17 19:46:35', 'bdzYJ5y4', '7241797'), - (516, 2612, 'maybe', '2024-05-05 21:30:25', '2025-12-17 19:46:35', 'bdzYJ5y4', '7247643'), - (516, 2613, 'not_attending', '2024-05-05 21:30:32', '2025-12-17 19:46:35', 'bdzYJ5y4', '7247644'), - (516, 2614, 'not_attending', '2024-05-08 17:10:16', '2025-12-17 19:46:35', 'bdzYJ5y4', '7247645'), - (516, 2616, 'not_attending', '2024-05-05 21:30:02', '2025-12-17 19:46:35', 'bdzYJ5y4', '7250296'), - (516, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'bdzYJ5y4', '7251633'), - (516, 2618, 'not_attending', '2024-05-05 21:30:22', '2025-12-17 19:46:35', 'bdzYJ5y4', '7251685'), - (516, 2620, 'not_attending', '2024-05-11 00:57:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7258097'), - (516, 2622, 'not_attending', '2024-05-10 21:03:34', '2025-12-17 19:46:35', 'bdzYJ5y4', '7262064'), - (516, 2624, 'maybe', '2024-05-11 00:56:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7263301'), - (516, 2625, 'not_attending', '2024-05-11 00:57:32', '2025-12-17 19:46:35', 'bdzYJ5y4', '7263302'), - (516, 2626, 'attending', '2024-05-12 11:51:18', '2025-12-17 19:46:35', 'bdzYJ5y4', '7264723'), - (516, 2627, 'attending', '2024-05-12 11:51:21', '2025-12-17 19:46:35', 'bdzYJ5y4', '7264724'), - (516, 2628, 'attending', '2024-05-12 11:51:28', '2025-12-17 19:46:36', 'bdzYJ5y4', '7264725'), - (516, 2629, 'attending', '2024-05-12 11:51:30', '2025-12-17 19:46:28', 'bdzYJ5y4', '7264726'), - (516, 2636, 'maybe', '2024-05-21 21:35:57', '2025-12-17 19:46:35', 'bdzYJ5y4', '7270323'), - (516, 2637, 'maybe', '2024-05-21 21:35:59', '2025-12-17 19:46:35', 'bdzYJ5y4', '7270324'), - (516, 2640, 'not_attending', '2024-05-21 21:35:35', '2025-12-17 19:46:35', 'bdzYJ5y4', '7275331'), - (516, 2645, 'not_attending', '2024-05-21 21:35:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7279964'), - (516, 2646, 'not_attending', '2024-05-21 21:35:40', '2025-12-17 19:46:35', 'bdzYJ5y4', '7281768'), - (516, 2647, 'maybe', '2024-05-31 16:09:09', '2025-12-17 19:46:28', 'bdzYJ5y4', '7282057'), - (516, 2648, 'not_attending', '2024-05-21 21:35:36', '2025-12-17 19:46:35', 'bdzYJ5y4', '7282283'), - (516, 2650, 'not_attending', '2024-05-24 16:40:43', '2025-12-17 19:46:36', 'bdzYJ5y4', '7288199'), - (516, 2652, 'not_attending', '2024-06-01 00:09:58', '2025-12-17 19:46:36', 'bdzYJ5y4', '7288339'), - (516, 2655, 'not_attending', '2024-05-27 16:40:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7291225'), - (516, 2658, 'not_attending', '2024-06-01 21:32:57', '2025-12-17 19:46:36', 'bdzYJ5y4', '7298846'), - (516, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'bdzYJ5y4', '7302674'), - (516, 2671, 'not_attending', '2024-06-10 14:14:55', '2025-12-17 19:46:28', 'bdzYJ5y4', '7318256'), - (516, 2674, 'maybe', '2024-07-01 17:26:28', '2025-12-17 19:46:29', 'bdzYJ5y4', '7319480'), - (516, 2678, 'attending', '2024-06-10 10:40:48', '2025-12-17 19:46:28', 'bdzYJ5y4', '7319489'), - (516, 2679, 'not_attending', '2024-06-10 10:40:51', '2025-12-17 19:46:29', 'bdzYJ5y4', '7319490'), - (516, 2681, 'not_attending', '2024-06-10 14:14:51', '2025-12-17 19:46:28', 'bdzYJ5y4', '7320409'), - (516, 2682, 'not_attending', '2024-06-10 14:14:52', '2025-12-17 19:46:28', 'bdzYJ5y4', '7321862'), - (516, 2685, 'not_attending', '2024-06-12 08:35:06', '2025-12-17 19:46:28', 'bdzYJ5y4', '7322675'), - (516, 2686, 'not_attending', '2024-06-13 17:16:41', '2025-12-17 19:46:29', 'bdzYJ5y4', '7323802'), - (516, 2687, 'not_attending', '2024-06-12 08:35:04', '2025-12-17 19:46:28', 'bdzYJ5y4', '7324019'), - (516, 2688, 'attending', '2024-06-13 17:16:53', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324073'), - (516, 2689, 'not_attending', '2024-06-21 20:14:13', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324074'), - (516, 2690, 'attending', '2024-06-28 14:24:39', '2025-12-17 19:46:30', 'bdzYJ5y4', '7324075'), - (516, 2691, 'not_attending', '2024-06-28 14:24:42', '2025-12-17 19:46:30', 'bdzYJ5y4', '7324076'), - (516, 2692, 'maybe', '2024-06-29 13:49:14', '2025-12-17 19:46:30', 'bdzYJ5y4', '7324077'), - (516, 2693, 'not_attending', '2024-07-09 17:33:31', '2025-12-17 19:46:31', 'bdzYJ5y4', '7324078'), - (516, 2694, 'not_attending', '2024-07-09 17:33:34', '2025-12-17 19:46:31', 'bdzYJ5y4', '7324079'), - (516, 2695, 'attending', '2024-07-09 17:33:37', '2025-12-17 19:46:31', 'bdzYJ5y4', '7324080'), - (516, 2696, 'attending', '2024-07-09 17:33:39', '2025-12-17 19:46:32', 'bdzYJ5y4', '7324081'), - (516, 2697, 'not_attending', '2024-07-09 17:33:42', '2025-12-17 19:46:32', 'bdzYJ5y4', '7324082'), - (516, 2698, 'attending', '2024-08-13 17:33:19', '2025-12-17 19:46:24', 'bdzYJ5y4', '7324083'), - (516, 2701, 'not_attending', '2024-06-27 17:03:53', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324391'), - (516, 2705, 'not_attending', '2024-06-27 17:03:57', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324944'), - (516, 2706, 'not_attending', '2024-06-13 17:16:36', '2025-12-17 19:46:28', 'bdzYJ5y4', '7324947'), - (516, 2707, 'not_attending', '2024-06-13 17:16:30', '2025-12-17 19:46:28', 'bdzYJ5y4', '7324952'), - (516, 2708, 'not_attending', '2024-06-14 08:21:58', '2025-12-17 19:46:28', 'bdzYJ5y4', '7325048'), - (516, 2709, 'maybe', '2024-06-19 11:03:31', '2025-12-17 19:46:29', 'bdzYJ5y4', '7325107'), - (516, 2710, 'not_attending', '2024-06-19 11:02:52', '2025-12-17 19:46:29', 'bdzYJ5y4', '7325108'), - (516, 2712, 'not_attending', '2024-07-31 15:35:19', '2025-12-17 19:46:31', 'bdzYJ5y4', '7326525'), - (516, 2716, 'not_attending', '2024-06-21 20:13:14', '2025-12-17 19:46:29', 'bdzYJ5y4', '7329096'), - (516, 2717, 'maybe', '2024-06-27 17:03:50', '2025-12-17 19:46:29', 'bdzYJ5y4', '7329149'), - (516, 2718, 'not_attending', '2024-06-19 11:02:48', '2025-12-17 19:46:28', 'bdzYJ5y4', '7330458'), - (516, 2721, 'not_attending', '2024-06-24 21:01:37', '2025-12-17 19:46:29', 'bdzYJ5y4', '7331456'), - (516, 2722, 'not_attending', '2024-07-08 22:27:21', '2025-12-17 19:46:29', 'bdzYJ5y4', '7331457'), - (516, 2723, 'not_attending', '2024-06-21 20:13:05', '2025-12-17 19:46:29', 'bdzYJ5y4', '7332389'), - (516, 2728, 'not_attending', '2024-06-21 20:13:16', '2025-12-17 19:46:29', 'bdzYJ5y4', '7334124'), - (516, 2732, 'not_attending', '2024-06-24 20:00:42', '2025-12-17 19:46:29', 'bdzYJ5y4', '7337207'), - (516, 2734, 'not_attending', '2024-06-27 17:04:04', '2025-12-17 19:46:29', 'bdzYJ5y4', '7339440'), - (516, 2737, 'not_attending', '2024-07-01 17:25:45', '2025-12-17 19:46:29', 'bdzYJ5y4', '7344070'), - (516, 2738, 'not_attending', '2024-07-01 17:25:59', '2025-12-17 19:46:29', 'bdzYJ5y4', '7344085'), - (516, 2740, 'maybe', '2024-07-01 17:25:42', '2025-12-17 19:46:29', 'bdzYJ5y4', '7344576'), - (516, 2741, 'not_attending', '2024-07-01 17:26:23', '2025-12-17 19:46:30', 'bdzYJ5y4', '7344592'), - (516, 2742, 'not_attending', '2024-07-01 17:25:48', '2025-12-17 19:46:29', 'bdzYJ5y4', '7345167'), - (516, 2746, 'not_attending', '2024-07-08 22:27:18', '2025-12-17 19:46:29', 'bdzYJ5y4', '7348713'), - (516, 2749, 'not_attending', '2024-07-08 22:27:11', '2025-12-17 19:46:29', 'bdzYJ5y4', '7355496'), - (516, 2753, 'attending', '2024-07-08 22:26:49', '2025-12-17 19:46:30', 'bdzYJ5y4', '7355538'), - (516, 2758, 'not_attending', '2024-07-16 02:31:42', '2025-12-17 19:46:30', 'bdzYJ5y4', '7358837'), - (516, 2764, 'not_attending', '2024-07-26 12:20:16', '2025-12-17 19:46:30', 'bdzYJ5y4', '7363595'), - (516, 2766, 'not_attending', '2024-07-27 14:02:11', '2025-12-17 19:46:30', 'bdzYJ5y4', '7363643'), - (516, 2773, 'not_attending', '2024-07-26 12:21:10', '2025-12-17 19:46:31', 'bdzYJ5y4', '7368605'), - (516, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'bdzYJ5y4', '7368606'), - (516, 2780, 'not_attending', '2024-07-26 12:20:12', '2025-12-17 19:46:30', 'bdzYJ5y4', '7371849'), - (516, 2781, 'not_attending', '2024-07-26 12:20:24', '2025-12-17 19:46:30', 'bdzYJ5y4', '7373194'), - (516, 2782, 'maybe', '2024-07-27 14:02:05', '2025-12-17 19:46:30', 'bdzYJ5y4', '7376725'), - (516, 2784, 'not_attending', '2024-07-31 15:35:15', '2025-12-17 19:46:31', 'bdzYJ5y4', '7380872'), - (516, 2787, 'not_attending', '2024-08-26 12:26:53', '2025-12-17 19:46:32', 'bdzYJ5y4', '7381568'), - (516, 2789, 'not_attending', '2024-08-05 01:06:10', '2025-12-17 19:46:31', 'bdzYJ5y4', '7384047'), - (516, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'bdzYJ5y4', '7397462'), - (516, 2813, 'not_attending', '2024-09-05 16:30:00', '2025-12-17 19:46:24', 'bdzYJ5y4', '7424105'), - (516, 2818, 'not_attending', '2024-10-12 19:57:58', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424272'), - (516, 2819, 'not_attending', '2024-10-14 20:45:34', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424273'), - (516, 2821, 'maybe', '2024-09-14 00:31:29', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424275'), - (516, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424276'), - (516, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'bdzYJ5y4', '7432751'), - (516, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'bdzYJ5y4', '7432752'), - (516, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'bdzYJ5y4', '7432753'), - (516, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432754'), - (516, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432755'), - (516, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432756'), - (516, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432758'), - (516, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432759'), - (516, 2832, 'not_attending', '2024-09-10 11:48:27', '2025-12-17 19:46:24', 'bdzYJ5y4', '7433324'), - (516, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'bdzYJ5y4', '7433834'), - (516, 2834, 'not_attending', '2024-09-12 12:54:34', '2025-12-17 19:46:25', 'bdzYJ5y4', '7433852'), - (516, 2835, 'not_attending', '2024-09-12 12:54:27', '2025-12-17 19:46:24', 'bdzYJ5y4', '7437354'), - (516, 2853, 'not_attending', '2024-11-06 22:45:39', '2025-12-17 19:46:26', 'bdzYJ5y4', '7465683'), - (516, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'bdzYJ5y4', '7470197'), - (516, 2880, 'not_attending', '2024-10-12 19:58:00', '2025-12-17 19:46:26', 'bdzYJ5y4', '7636316'), - (516, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'bdzYJ5y4', '7685613'), - (516, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'bdzYJ5y4', '7688194'), - (516, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'bdzYJ5y4', '7688196'), - (516, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'bdzYJ5y4', '7688289'), - (516, 2917, 'not_attending', '2024-11-20 15:59:55', '2025-12-17 19:46:28', 'bdzYJ5y4', '7699878'), - (516, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'bdzYJ5y4', '7704043'), - (516, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'bdzYJ5y4', '7712467'), - (516, 2925, 'maybe', '2024-11-30 18:52:36', '2025-12-17 19:46:21', 'bdzYJ5y4', '7713584'), - (516, 2926, 'attending', '2024-11-30 18:52:51', '2025-12-17 19:46:21', 'bdzYJ5y4', '7713585'), - (516, 2927, 'not_attending', '2024-11-30 18:52:42', '2025-12-17 19:46:22', 'bdzYJ5y4', '7713586'), - (516, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'bdzYJ5y4', '7738518'), - (516, 2963, 'attending', '2024-12-27 17:32:28', '2025-12-17 19:46:22', 'bdzYJ5y4', '7750636'), - (516, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'bdzYJ5y4', '7796540'), - (516, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'bdzYJ5y4', '7796541'), - (516, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'bdzYJ5y4', '7796542'), - (516, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'bdzYJ5y4', '7825913'), - (516, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'bdzYJ5y4', '7826209'), - (516, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'bdzYJ5y4', '7834742'), - (516, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'bdzYJ5y4', '7842108'), - (516, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'bdzYJ5y4', '7842902'), - (516, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'bdzYJ5y4', '7842903'), - (516, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'bdzYJ5y4', '7842904'), - (516, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'bdzYJ5y4', '7842905'), - (516, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'bdzYJ5y4', '7855719'), - (516, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'bdzYJ5y4', '7860683'), - (516, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'bdzYJ5y4', '7860684'), - (516, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'bdzYJ5y4', '7866095'), - (516, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'bdzYJ5y4', '7869170'), - (516, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'bdzYJ5y4', '7869188'), - (516, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'bdzYJ5y4', '7869201'), - (516, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'bdzYJ5y4', '7877465'), - (516, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'bdzYJ5y4', '7888250'), - (516, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'bdzYJ5y4', '7904777'), - (516, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'bdzYJ5y4', '8349164'), - (516, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'bdzYJ5y4', '8349545'), - (516, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'bdzYJ5y4', '8368028'), - (516, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'bdzYJ5y4', '8368029'), - (516, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'bdzYJ5y4', '8388462'), - (516, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'bdzYJ5y4', '8400273'), - (516, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'bdzYJ5y4', '8400275'), - (516, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'bdzYJ5y4', '8400276'), - (516, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'bdzYJ5y4', '8404977'), - (516, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'bdzYJ5y4', '8430783'), - (516, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'bdzYJ5y4', '8430784'), - (516, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'bdzYJ5y4', '8430799'), - (516, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'bdzYJ5y4', '8430800'), - (516, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'bdzYJ5y4', '8430801'), - (516, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'bdzYJ5y4', '8438709'), - (516, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'bdzYJ5y4', '8457738'), - (516, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'bdzYJ5y4', '8459566'), - (516, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'bdzYJ5y4', '8459567'), - (516, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'bdzYJ5y4', '8461032'), - (516, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'bdzYJ5y4', '8477877'), - (516, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'bdzYJ5y4', '8485688'), - (516, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'bdzYJ5y4', '8490587'), - (516, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'bdzYJ5y4', '8493552'), - (516, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'bdzYJ5y4', '8493553'), - (516, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'bdzYJ5y4', '8493554'), - (516, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'bdzYJ5y4', '8493555'), - (516, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'bdzYJ5y4', '8493556'), - (516, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'bdzYJ5y4', '8493557'), - (516, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'bdzYJ5y4', '8493558'), - (516, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'bdzYJ5y4', '8493559'), - (516, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'bdzYJ5y4', '8493560'), - (516, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'bdzYJ5y4', '8493561'), - (516, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'bdzYJ5y4', '8493572'), - (516, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'bdzYJ5y4', '8540725'), - (516, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'bdzYJ5y4', '8555421'), - (517, 400, 'attending', '2021-02-05 00:03:15', '2025-12-17 19:47:50', 'QdJ60Jod', '3236455'), - (517, 579, 'attending', '2021-02-05 19:23:48', '2025-12-17 19:47:50', 'QdJ60Jod', '3440978'), - (517, 598, 'maybe', '2021-02-09 17:06:23', '2025-12-17 19:47:50', 'QdJ60Jod', '3468003'), - (517, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'QdJ60Jod', '3468125'), - (517, 602, 'maybe', '2021-02-14 00:05:49', '2025-12-17 19:47:50', 'QdJ60Jod', '3470303'), - (517, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'QdJ60Jod', '3470305'), - (517, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'QdJ60Jod', '3470991'), - (517, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'QdJ60Jod', '3517815'), - (517, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'QdJ60Jod', '3517816'), - (517, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'QdJ60Jod', '3523941'), - (517, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'QdJ60Jod', '3533850'), - (517, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'QdJ60Jod', '3536632'), - (517, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'QdJ60Jod', '3536656'), - (517, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'QdJ60Jod', '3539916'), - (517, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'QdJ60Jod', '3539917'), - (517, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'QdJ60Jod', '3539918'), - (517, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'QdJ60Jod', '3539919'), - (517, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'QdJ60Jod', '3539920'), - (517, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'QdJ60Jod', '3539921'), - (517, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'QdJ60Jod', '3539922'), - (517, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'QdJ60Jod', '3539923'), - (517, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'QdJ60Jod', '3539927'), - (517, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'QdJ60Jod', '3582734'), - (517, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'QdJ60Jod', '3583262'), - (517, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'QdJ60Jod', '3619523'), - (517, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'QdJ60Jod', '3661369'), - (517, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'QdJ60Jod', '3674262'), - (517, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'QdJ60Jod', '3677402'), - (517, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'QdJ60Jod', '3730212'), - (517, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ60Jod', '6045684'), - (518, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj58L1Vd', '6045684'), - (519, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Anaer1Jm', '6361710'), - (519, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Anaer1Jm', '6361711'), - (519, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Anaer1Jm', '6361713'), - (519, 2233, 'maybe', '2023-08-23 12:55:54', '2025-12-17 19:46:55', 'Anaer1Jm', '6377590'), - (519, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Anaer1Jm', '6382573'), - (519, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Anaer1Jm', '6388604'), - (519, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Anaer1Jm', '6394629'), - (519, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Anaer1Jm', '6394631'), - (519, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'Anaer1Jm', '6431478'), - (520, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQp7J8m', '5426882'), - (520, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ArQp7J8m', '5441125'), - (520, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ArQp7J8m', '5441126'), - (520, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ArQp7J8m', '5441128'), - (520, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQp7J8m', '5446643'), - (520, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'ArQp7J8m', '5449068'), - (520, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQp7J8m', '5453325'), - (520, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQp7J8m', '5454516'), - (520, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQp7J8m', '5454605'), - (520, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQp7J8m', '5455037'), - (520, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQp7J8m', '5461278'), - (520, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQp7J8m', '5469480'), - (520, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQp7J8m', '5471073'), - (520, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'ArQp7J8m', '5474663'), - (520, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQp7J8m', '5482022'), - (520, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQp7J8m', '5482793'), - (520, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQp7J8m', '5488912'), - (520, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQp7J8m', '5492192'), - (520, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQp7J8m', '5493139'), - (520, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQp7J8m', '5493200'), - (520, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQp7J8m', '5502188'), - (520, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQp7J8m', '6045684'), - (521, 406, 'attending', '2021-03-29 17:36:03', '2025-12-17 19:47:44', '6AXWk10m', '3236464'), - (521, 641, 'attending', '2021-04-02 02:51:09', '2025-12-17 19:47:44', '6AXWk10m', '3539916'), - (521, 642, 'attending', '2021-04-04 02:26:20', '2025-12-17 19:47:44', '6AXWk10m', '3539917'), - (521, 643, 'attending', '2021-04-15 16:05:25', '2025-12-17 19:47:45', '6AXWk10m', '3539918'), - (521, 644, 'attending', '2021-04-17 18:48:57', '2025-12-17 19:47:45', '6AXWk10m', '3539919'), - (521, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '6AXWk10m', '3539920'), - (521, 646, 'attending', '2021-05-14 18:19:06', '2025-12-17 19:47:46', '6AXWk10m', '3539921'), - (521, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '6AXWk10m', '3539922'), - (521, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '6AXWk10m', '3539923'), - (521, 685, 'attending', '2021-04-12 22:00:14', '2025-12-17 19:47:44', '6AXWk10m', '3551564'), - (521, 706, 'attending', '2021-04-18 17:45:11', '2025-12-17 19:47:45', '6AXWk10m', '3582734'), - (521, 707, 'attending', '2021-04-25 18:45:12', '2025-12-17 19:47:46', '6AXWk10m', '3583262'), - (521, 719, 'attending', '2021-04-08 18:38:20', '2025-12-17 19:47:44', '6AXWk10m', '3635405'), - (521, 724, 'attending', '2021-05-09 21:02:05', '2025-12-17 19:47:46', '6AXWk10m', '3661369'), - (521, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXWk10m', '3674262'), - (521, 734, 'not_attending', '2021-04-07 17:59:04', '2025-12-17 19:47:44', '6AXWk10m', '3676806'), - (521, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXWk10m', '3677402'), - (521, 736, 'attending', '2021-04-09 17:05:21', '2025-12-17 19:47:44', '6AXWk10m', '3677701'), - (521, 737, 'attending', '2021-04-06 17:41:36', '2025-12-17 19:47:44', '6AXWk10m', '3679349'), - (521, 752, 'attending', '2021-04-15 16:06:09', '2025-12-17 19:47:44', '6AXWk10m', '3699422'), - (521, 774, 'attending', '2021-04-21 17:13:53', '2025-12-17 19:47:45', '6AXWk10m', '3730212'), - (521, 792, 'maybe', '2021-05-10 18:40:30', '2025-12-17 19:47:46', '6AXWk10m', '3793156'), - (521, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXWk10m', '3974109'), - (521, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXWk10m', '3975311'), - (521, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXWk10m', '3975312'), - (521, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXWk10m', '3994992'), - (521, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXWk10m', '4014338'), - (521, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXWk10m', '4021848'), - (521, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXWk10m', '4136744'), - (521, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXWk10m', '4136937'), - (521, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXWk10m', '4136938'), - (521, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXWk10m', '4136947'), - (521, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXWk10m', '4210314'), - (521, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXWk10m', '4225444'), - (521, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXWk10m', '4239259'), - (521, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXWk10m', '4240316'), - (521, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXWk10m', '4240317'), - (521, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXWk10m', '4240318'), - (521, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXWk10m', '4250163'), - (521, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXWk10m', '4275957'), - (521, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXWk10m', '4277819'), - (521, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXWk10m', '4301723'), - (521, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '6AXWk10m', '4302093'), - (521, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '6AXWk10m', '4345519'), - (521, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXWk10m', '6045684'), - (522, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', 'ndae8EZd', '4136938'), - (522, 872, 'maybe', '2021-07-21 16:32:31', '2025-12-17 19:47:40', 'ndae8EZd', '4136947'), - (522, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndae8EZd', '4210314'), - (522, 887, 'not_attending', '2021-07-15 16:39:51', '2025-12-17 19:47:39', 'ndae8EZd', '4225444'), - (522, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', 'ndae8EZd', '4229418'), - (522, 894, 'attending', '2021-07-20 11:25:33', '2025-12-17 19:47:39', 'ndae8EZd', '4229423'), - (522, 900, 'attending', '2021-07-21 11:37:26', '2025-12-17 19:47:40', 'ndae8EZd', '4240316'), - (522, 901, 'attending', '2021-07-31 19:34:38', '2025-12-17 19:47:40', 'ndae8EZd', '4240317'), - (522, 902, 'attending', '2021-08-07 17:46:36', '2025-12-17 19:47:41', 'ndae8EZd', '4240318'), - (522, 903, 'attending', '2021-08-13 21:11:01', '2025-12-17 19:47:42', 'ndae8EZd', '4240320'), - (522, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndae8EZd', '4275957'), - (522, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndae8EZd', '4277819'), - (522, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'ndae8EZd', '4292773'), - (522, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndae8EZd', '4301723'), - (522, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ndae8EZd', '4302093'), - (522, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndae8EZd', '4304151'), - (522, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndae8EZd', '4345519'), - (522, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndae8EZd', '4356801'), - (522, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndae8EZd', '4358025'), - (522, 973, 'not_attending', '2021-08-21 22:14:53', '2025-12-17 19:47:42', 'ndae8EZd', '4366186'), - (522, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndae8EZd', '4366187'), - (522, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndae8EZd', '4402823'), - (522, 990, 'attending', '2021-08-31 13:55:07', '2025-12-17 19:47:43', 'ndae8EZd', '4420735'), - (522, 991, 'attending', '2021-09-07 23:01:43', '2025-12-17 19:47:43', 'ndae8EZd', '4420738'), - (522, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndae8EZd', '4420739'), - (522, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndae8EZd', '4420741'), - (522, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndae8EZd', '4420744'), - (522, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndae8EZd', '4420747'), - (522, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndae8EZd', '4420748'), - (522, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndae8EZd', '4420749'), - (522, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndae8EZd', '4461883'), - (522, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndae8EZd', '4508342'), - (522, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndae8EZd', '4568602'), - (522, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndae8EZd', '6045684'), - (523, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBnqEwvd', '6045684'), - (524, 1407, 'not_attending', '2022-06-03 10:41:39', '2025-12-17 19:47:30', 'dVbj3vZd', '5363695'), - (524, 1415, 'attending', '2022-05-31 04:54:33', '2025-12-17 19:47:30', 'dVbj3vZd', '5368973'), - (524, 1419, 'not_attending', '2022-06-08 21:50:53', '2025-12-17 19:47:30', 'dVbj3vZd', '5373081'), - (524, 1421, 'attending', '2022-05-30 21:52:07', '2025-12-17 19:47:30', 'dVbj3vZd', '5374885'), - (524, 1423, 'not_attending', '2022-06-03 10:42:40', '2025-12-17 19:47:17', 'dVbj3vZd', '5375727'), - (524, 1431, 'attending', '2022-05-31 00:26:05', '2025-12-17 19:47:30', 'dVbj3vZd', '5389605'), - (524, 1432, 'attending', '2022-05-30 21:34:41', '2025-12-17 19:47:30', 'dVbj3vZd', '5391566'), - (524, 1434, 'not_attending', '2022-06-01 10:53:33', '2025-12-17 19:47:30', 'dVbj3vZd', '5393861'), - (524, 1435, 'attending', '2022-06-01 10:53:18', '2025-12-17 19:47:30', 'dVbj3vZd', '5394015'), - (524, 1436, 'attending', '2022-06-01 05:35:31', '2025-12-17 19:47:30', 'dVbj3vZd', '5394292'), - (524, 1440, 'attending', '2022-06-06 17:22:57', '2025-12-17 19:47:30', 'dVbj3vZd', '5396080'), - (524, 1442, 'attending', '2022-06-03 02:48:19', '2025-12-17 19:47:17', 'dVbj3vZd', '5397265'), - (524, 1451, 'not_attending', '2022-06-17 22:46:23', '2025-12-17 19:47:17', 'dVbj3vZd', '5403967'), - (524, 1456, 'attending', '2022-06-10 06:04:02', '2025-12-17 19:47:17', 'dVbj3vZd', '5404779'), - (524, 1458, 'not_attending', '2022-06-15 22:30:07', '2025-12-17 19:47:17', 'dVbj3vZd', '5404786'), - (524, 1462, 'not_attending', '2022-06-10 18:03:05', '2025-12-17 19:47:17', 'dVbj3vZd', '5405203'), - (524, 1476, 'not_attending', '2022-06-19 17:13:52', '2025-12-17 19:47:17', 'dVbj3vZd', '5408130'), - (524, 1478, 'not_attending', '2022-06-25 06:27:20', '2025-12-17 19:47:19', 'dVbj3vZd', '5408794'), - (524, 1479, 'attending', '2022-06-17 02:04:50', '2025-12-17 19:47:17', 'dVbj3vZd', '5410322'), - (524, 1480, 'not_attending', '2022-06-23 17:07:05', '2025-12-17 19:47:19', 'dVbj3vZd', '5411699'), - (524, 1482, 'attending', '2022-06-19 10:38:57', '2025-12-17 19:47:19', 'dVbj3vZd', '5412550'), - (524, 1484, 'not_attending', '2022-06-23 06:23:52', '2025-12-17 19:47:17', 'dVbj3vZd', '5415046'), - (524, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVbj3vZd', '5422086'), - (524, 1498, 'not_attending', '2022-07-02 22:12:12', '2025-12-17 19:47:19', 'dVbj3vZd', '5422406'), - (524, 1502, 'not_attending', '2022-07-14 06:17:03', '2025-12-17 19:47:19', 'dVbj3vZd', '5424565'), - (524, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVbj3vZd', '5426882'), - (524, 1505, 'attending', '2022-07-06 16:02:01', '2025-12-17 19:47:19', 'dVbj3vZd', '5427083'), - (524, 1511, 'not_attending', '2022-07-09 16:36:42', '2025-12-17 19:47:19', 'dVbj3vZd', '5437733'), - (524, 1513, 'attending', '2022-07-14 06:15:56', '2025-12-17 19:47:19', 'dVbj3vZd', '5441125'), - (524, 1514, 'attending', '2022-07-18 14:18:26', '2025-12-17 19:47:20', 'dVbj3vZd', '5441126'), - (524, 1515, 'not_attending', '2022-08-06 16:30:18', '2025-12-17 19:47:21', 'dVbj3vZd', '5441128'), - (524, 1516, 'attending', '2022-08-20 10:50:16', '2025-12-17 19:47:23', 'dVbj3vZd', '5441129'), - (524, 1517, 'attending', '2022-08-15 17:56:42', '2025-12-17 19:47:23', 'dVbj3vZd', '5441130'), - (524, 1518, 'attending', '2022-08-22 11:51:51', '2025-12-17 19:47:24', 'dVbj3vZd', '5441131'), - (524, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVbj3vZd', '5441132'), - (524, 1528, 'maybe', '2022-07-14 06:15:44', '2025-12-17 19:47:20', 'dVbj3vZd', '5446643'), - (524, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVbj3vZd', '5453325'), - (524, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVbj3vZd', '5454516'), - (524, 1544, 'attending', '2022-09-13 15:14:51', '2025-12-17 19:47:11', 'dVbj3vZd', '5454517'), - (524, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVbj3vZd', '5454605'), - (524, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVbj3vZd', '5455037'), - (524, 1553, 'not_attending', '2022-07-21 20:31:48', '2025-12-17 19:47:20', 'dVbj3vZd', '5455164'), - (524, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVbj3vZd', '5461278'), - (524, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVbj3vZd', '5469480'), - (524, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVbj3vZd', '5471073'), - (524, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dVbj3vZd', '5474663'), - (524, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVbj3vZd', '5482022'), - (524, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVbj3vZd', '5482793'), - (524, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVbj3vZd', '5488912'), - (524, 1582, 'attending', '2022-08-10 05:32:52', '2025-12-17 19:47:23', 'dVbj3vZd', '5492001'), - (524, 1584, 'attending', '2022-08-10 05:32:56', '2025-12-17 19:47:23', 'dVbj3vZd', '5492004'), - (524, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVbj3vZd', '5492192'), - (524, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVbj3vZd', '5493139'), - (524, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVbj3vZd', '5493200'), - (524, 1593, 'attending', '2022-08-14 10:26:29', '2025-12-17 19:47:22', 'dVbj3vZd', '5494043'), - (524, 1595, 'not_attending', '2022-08-11 15:24:48', '2025-12-17 19:47:22', 'dVbj3vZd', '5495736'), - (524, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVbj3vZd', '5502188'), - (524, 1607, 'attending', '2022-08-20 18:42:53', '2025-12-17 19:47:23', 'dVbj3vZd', '5504589'), - (524, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVbj3vZd', '5505059'), - (524, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVbj3vZd', '5509055'), - (524, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVbj3vZd', '5512862'), - (524, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVbj3vZd', '5513985'), - (524, 1626, 'attending', '2022-08-26 18:44:43', '2025-12-17 19:47:11', 'dVbj3vZd', '5519981'), - (524, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVbj3vZd', '5522550'), - (524, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVbj3vZd', '5534683'), - (524, 1631, 'attending', '2022-08-27 06:52:16', '2025-12-17 19:47:23', 'dVbj3vZd', '5534684'), - (524, 1633, 'not_attending', '2022-08-28 18:44:09', '2025-12-17 19:47:24', 'dVbj3vZd', '5536575'), - (524, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVbj3vZd', '5537735'), - (524, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVbj3vZd', '5540859'), - (524, 1641, 'attending', '2022-09-01 06:24:29', '2025-12-17 19:47:24', 'dVbj3vZd', '5544226'), - (524, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVbj3vZd', '5546619'), - (524, 1649, 'attending', '2022-09-03 19:34:25', '2025-12-17 19:47:24', 'dVbj3vZd', '5549346'), - (524, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVbj3vZd', '5555245'), - (524, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVbj3vZd', '5557747'), - (524, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVbj3vZd', '5560255'), - (524, 1663, 'attending', '2022-09-10 13:40:07', '2025-12-17 19:47:24', 'dVbj3vZd', '5562345'), - (524, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVbj3vZd', '5562906'), - (524, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVbj3vZd', '5600604'), - (524, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVbj3vZd', '5605544'), - (524, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'dVbj3vZd', '5606737'), - (524, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVbj3vZd', '5630960'), - (524, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVbj3vZd', '5630961'), - (524, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVbj3vZd', '5630962'), - (524, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVbj3vZd', '5630966'), - (524, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVbj3vZd', '5630967'), - (524, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVbj3vZd', '5630968'), - (524, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVbj3vZd', '5635406'), - (524, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVbj3vZd', '5638765'), - (524, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVbj3vZd', '5640097'), - (524, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVbj3vZd', '5640843'), - (524, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVbj3vZd', '5641521'), - (524, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVbj3vZd', '5642818'), - (524, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVbj3vZd', '5652395'), - (524, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVbj3vZd', '5670445'), - (524, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVbj3vZd', '5671637'), - (524, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVbj3vZd', '5672329'), - (524, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVbj3vZd', '5674057'), - (524, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVbj3vZd', '5674060'), - (524, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVbj3vZd', '5677461'), - (524, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVbj3vZd', '5698046'), - (524, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVbj3vZd', '5699760'), - (524, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVbj3vZd', '5741601'), - (524, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVbj3vZd', '5763458'), - (524, 1808, 'not_attending', '2023-02-27 14:58:20', '2025-12-17 19:47:08', 'dVbj3vZd', '5764678'), - (524, 1813, 'attending', '2023-04-29 19:54:50', '2025-12-17 19:47:01', 'dVbj3vZd', '5764683'), - (524, 1817, 'maybe', '2023-03-19 02:23:02', '2025-12-17 19:46:57', 'dVbj3vZd', '5764687'), - (524, 1819, 'attending', '2023-04-01 07:28:46', '2025-12-17 19:46:58', 'dVbj3vZd', '5764689'), - (524, 1821, 'attending', '2023-03-13 08:02:45', '2025-12-17 19:46:56', 'dVbj3vZd', '5764691'), - (524, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVbj3vZd', '5774172'), - (524, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVbj3vZd', '5818247'), - (524, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVbj3vZd', '5819471'), - (524, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVbj3vZd', '5827739'), - (524, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVbj3vZd', '5844306'), - (524, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVbj3vZd', '5850159'), - (524, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVbj3vZd', '5858999'), - (524, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVbj3vZd', '5871984'), - (524, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVbj3vZd', '5876354'), - (524, 1864, 'attending', '2023-01-16 18:41:28', '2025-12-17 19:47:05', 'dVbj3vZd', '5879675'), - (524, 1865, 'attending', '2023-01-27 20:14:18', '2025-12-17 19:47:06', 'dVbj3vZd', '5879676'), - (524, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVbj3vZd', '5880939'), - (524, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dVbj3vZd', '5880940'), - (524, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVbj3vZd', '5880942'), - (524, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVbj3vZd', '5880943'), - (524, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVbj3vZd', '5887890'), - (524, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVbj3vZd', '5888598'), - (524, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVbj3vZd', '5893260'), - (524, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dVbj3vZd', '5899826'), - (524, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dVbj3vZd', '5900199'), - (524, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVbj3vZd', '5900200'), - (524, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVbj3vZd', '5900202'), - (524, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVbj3vZd', '5900203'), - (524, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dVbj3vZd', '5901108'), - (524, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dVbj3vZd', '5901126'), - (524, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dVbj3vZd', '5909655'), - (524, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dVbj3vZd', '5910522'), - (524, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dVbj3vZd', '5910526'), - (524, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dVbj3vZd', '5910528'), - (524, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dVbj3vZd', '5916219'), - (524, 1924, 'not_attending', '2023-02-16 17:39:24', '2025-12-17 19:47:07', 'dVbj3vZd', '5931095'), - (524, 1932, 'attending', '2023-02-20 15:57:39', '2025-12-17 19:47:07', 'dVbj3vZd', '5935303'), - (524, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVbj3vZd', '5936234'), - (524, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVbj3vZd', '5958351'), - (524, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVbj3vZd', '5959751'), - (524, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVbj3vZd', '5959755'), - (524, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVbj3vZd', '5960055'), - (524, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVbj3vZd', '5961684'), - (524, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVbj3vZd', '5962132'), - (524, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dVbj3vZd', '5962133'), - (524, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVbj3vZd', '5962134'), - (524, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVbj3vZd', '5962317'), - (524, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVbj3vZd', '5962318'), - (524, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVbj3vZd', '5965933'), - (524, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVbj3vZd', '5967014'), - (524, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dVbj3vZd', '5972763'), - (524, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVbj3vZd', '5972815'), - (524, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVbj3vZd', '5974016'), - (524, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVbj3vZd', '5981515'), - (524, 1967, 'attending', '2023-03-12 04:36:28', '2025-12-17 19:47:10', 'dVbj3vZd', '5985650'), - (524, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVbj3vZd', '5993516'), - (524, 1973, 'attending', '2023-03-13 08:02:15', '2025-12-17 19:46:56', 'dVbj3vZd', '5993777'), - (524, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVbj3vZd', '5998939'), - (524, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVbj3vZd', '6028191'), - (524, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVbj3vZd', '6040066'), - (524, 1983, 'attending', '2023-04-04 10:17:20', '2025-12-17 19:46:59', 'dVbj3vZd', '6040068'), - (524, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVbj3vZd', '6042717'), - (524, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVbj3vZd', '6044838'), - (524, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVbj3vZd', '6044839'), - (524, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbj3vZd', '6045684'), - (524, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVbj3vZd', '6050104'), - (524, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVbj3vZd', '6053195'), - (524, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVbj3vZd', '6053198'), - (524, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVbj3vZd', '6056085'), - (524, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVbj3vZd', '6056916'), - (524, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVbj3vZd', '6059290'), - (524, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVbj3vZd', '6060328'), - (524, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVbj3vZd', '6061037'), - (524, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVbj3vZd', '6061039'), - (524, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVbj3vZd', '6067245'), - (524, 2025, 'attending', '2023-04-19 14:19:15', '2025-12-17 19:47:00', 'dVbj3vZd', '6067457'), - (524, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVbj3vZd', '6068094'), - (524, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVbj3vZd', '6068252'), - (524, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVbj3vZd', '6068253'), - (524, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVbj3vZd', '6068254'), - (524, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVbj3vZd', '6068280'), - (524, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVbj3vZd', '6069093'), - (524, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVbj3vZd', '6072528'), - (524, 2042, 'attending', '2023-04-24 20:44:29', '2025-12-17 19:47:01', 'dVbj3vZd', '6072941'), - (524, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVbj3vZd', '6079840'), - (524, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVbj3vZd', '6083398'), - (524, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVbj3vZd', '6093504'), - (524, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVbj3vZd', '6097414'), - (524, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVbj3vZd', '6097442'), - (524, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVbj3vZd', '6097684'), - (524, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVbj3vZd', '6098762'), - (524, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dVbj3vZd', '6101361'), - (524, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVbj3vZd', '6101362'), - (524, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVbj3vZd', '6103752'), - (524, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVbj3vZd', '6107314'), - (524, 2085, 'attending', '2023-06-01 13:51:01', '2025-12-17 19:47:04', 'dVbj3vZd', '6118068'), - (524, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dVbj3vZd', '6120034'), - (524, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dVbj3vZd', '6136733'), - (524, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dVbj3vZd', '6137989'), - (524, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dVbj3vZd', '6150864'), - (524, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dVbj3vZd', '6155491'), - (524, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dVbj3vZd', '6164417'), - (524, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dVbj3vZd', '6166388'), - (524, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dVbj3vZd', '6176439'), - (524, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dVbj3vZd', '6182410'), - (524, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dVbj3vZd', '6185812'), - (524, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dVbj3vZd', '6187651'), - (524, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dVbj3vZd', '6187963'), - (524, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dVbj3vZd', '6187964'), - (524, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dVbj3vZd', '6187966'), - (524, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dVbj3vZd', '6187967'), - (524, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dVbj3vZd', '6187969'), - (524, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dVbj3vZd', '6334878'), - (524, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVbj3vZd', '6337236'), - (524, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVbj3vZd', '6337970'), - (524, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dVbj3vZd', '6338308'), - (524, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVbj3vZd', '6340845'), - (524, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVbj3vZd', '6341710'), - (524, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVbj3vZd', '6342044'), - (524, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVbj3vZd', '6342298'), - (524, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dVbj3vZd', '6343294'), - (524, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVbj3vZd', '6347034'), - (524, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVbj3vZd', '6347056'), - (524, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVbj3vZd', '6353830'), - (524, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVbj3vZd', '6353831'), - (524, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVbj3vZd', '6357867'), - (524, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVbj3vZd', '6358652'), - (524, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVbj3vZd', '6361709'), - (524, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVbj3vZd', '6361710'), - (524, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVbj3vZd', '6361711'), - (524, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVbj3vZd', '6361712'), - (524, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVbj3vZd', '6361713'), - (524, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVbj3vZd', '6382573'), - (524, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVbj3vZd', '6388604'), - (524, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVbj3vZd', '6394629'), - (524, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVbj3vZd', '6394631'), - (524, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVbj3vZd', '6440863'), - (524, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVbj3vZd', '6445440'), - (524, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVbj3vZd', '6453951'), - (524, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVbj3vZd', '6461696'), - (524, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVbj3vZd', '6462129'), - (524, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVbj3vZd', '6463218'), - (524, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVbj3vZd', '6472181'), - (524, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVbj3vZd', '6482693'), - (524, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dVbj3vZd', '6484200'), - (524, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dVbj3vZd', '6484680'), - (524, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVbj3vZd', '6507741'), - (524, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVbj3vZd', '6514659'), - (524, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVbj3vZd', '6514660'), - (524, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVbj3vZd', '6519103'), - (524, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVbj3vZd', '6535681'), - (524, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVbj3vZd', '6584747'), - (524, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVbj3vZd', '6587097'), - (524, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVbj3vZd', '6609022'), - (524, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVbj3vZd', '6632757'), - (524, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVbj3vZd', '6644187'), - (524, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVbj3vZd', '6648951'), - (524, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVbj3vZd', '6648952'), - (524, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVbj3vZd', '6655401'), - (524, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVbj3vZd', '6661585'), - (524, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVbj3vZd', '6661588'), - (524, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVbj3vZd', '6661589'), - (524, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVbj3vZd', '6699906'), - (524, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dVbj3vZd', '6699913'), - (524, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVbj3vZd', '6701109'), - (524, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVbj3vZd', '6705219'), - (524, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVbj3vZd', '6710153'), - (524, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVbj3vZd', '6711552'), - (524, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dVbj3vZd', '6711553'), - (524, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVbj3vZd', '6722688'), - (524, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVbj3vZd', '6730620'), - (524, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVbj3vZd', '6730642'), - (524, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dVbj3vZd', '6740364'), - (524, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVbj3vZd', '6743829'), - (524, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVbj3vZd', '7030380'), - (524, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dVbj3vZd', '7033677'), - (524, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dVbj3vZd', '7035415'), - (524, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dVbj3vZd', '7044715'), - (524, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVbj3vZd', '7050318'), - (524, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVbj3vZd', '7050319'), - (524, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVbj3vZd', '7050322'), - (524, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dVbj3vZd', '7057804'), - (524, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dVbj3vZd', '7059866'), - (524, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVbj3vZd', '7072824'), - (524, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVbj3vZd', '7074348'), - (524, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVbj3vZd', '7089267'), - (524, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dVbj3vZd', '7098747'), - (524, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dVbj3vZd', '7113468'), - (524, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVbj3vZd', '7114856'), - (524, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dVbj3vZd', '7114951'), - (524, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVbj3vZd', '7114955'), - (524, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVbj3vZd', '7114956'), - (524, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVbj3vZd', '7153615'), - (524, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVbj3vZd', '7159484'), - (524, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVbj3vZd', '7178446'), - (525, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AQOjJNLd', '7074364'), - (525, 2688, 'not_attending', '2024-06-24 20:09:56', '2025-12-17 19:46:29', 'AQOjJNLd', '7324073'), - (525, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AQOjJNLd', '7324074'), - (525, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AQOjJNLd', '7324075'), - (525, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AQOjJNLd', '7324078'), - (525, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AQOjJNLd', '7324082'), - (525, 2701, 'attending', '2024-06-28 20:23:44', '2025-12-17 19:46:29', 'AQOjJNLd', '7324391'), - (525, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AQOjJNLd', '7331457'), - (525, 2724, 'attending', '2024-06-26 20:19:26', '2025-12-17 19:46:29', 'AQOjJNLd', '7332562'), - (525, 2730, 'attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'AQOjJNLd', '7335193'), - (525, 2731, 'attending', '2024-06-24 06:04:26', '2025-12-17 19:46:29', 'AQOjJNLd', '7335303'), - (525, 2737, 'maybe', '2024-06-30 22:46:28', '2025-12-17 19:46:29', 'AQOjJNLd', '7344070'), - (525, 2740, 'attending', '2024-06-30 22:46:20', '2025-12-17 19:46:29', 'AQOjJNLd', '7344576'), - (525, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AQOjJNLd', '7356752'), - (525, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'AQOjJNLd', '7363643'), - (525, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AQOjJNLd', '7368606'), - (525, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AQOjJNLd', '7397462'), - (525, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AQOjJNLd', '7424275'), - (525, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AQOjJNLd', '7424276'), - (525, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AQOjJNLd', '7432751'), - (525, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AQOjJNLd', '7432752'), - (525, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AQOjJNLd', '7432753'), - (525, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AQOjJNLd', '7432754'), - (525, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AQOjJNLd', '7432755'), - (525, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AQOjJNLd', '7432756'), - (525, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AQOjJNLd', '7432758'), - (525, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AQOjJNLd', '7432759'), - (525, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AQOjJNLd', '7433834'), - (525, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AQOjJNLd', '7470197'), - (525, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AQOjJNLd', '7685613'), - (525, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AQOjJNLd', '7688194'), - (525, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AQOjJNLd', '7688196'), - (525, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AQOjJNLd', '7688289'), - (526, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'kdKjkM74', '3539920'), - (526, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdKjkM74', '3793156'), - (526, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKjkM74', '6045684'), - (527, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', '4oMeX9Gm', '4420744'), - (527, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', '4oMeX9Gm', '4420747'), - (527, 1003, 'attending', '2021-09-29 22:44:49', '2025-12-17 19:47:43', '4oMeX9Gm', '4438802'), - (527, 1006, 'attending', '2021-10-01 15:52:57', '2025-12-17 19:47:34', '4oMeX9Gm', '4438808'), - (527, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4oMeX9Gm', '4568602'), - (527, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4oMeX9Gm', '4572153'), - (527, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMeX9Gm', '4585962'), - (527, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4oMeX9Gm', '4596356'), - (527, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4oMeX9Gm', '4598860'), - (527, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4oMeX9Gm', '4598861'), - (527, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4oMeX9Gm', '4602797'), - (527, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4oMeX9Gm', '4637896'), - (527, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4oMeX9Gm', '4642994'), - (527, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4oMeX9Gm', '4642995'), - (527, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4oMeX9Gm', '4642996'), - (527, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4oMeX9Gm', '4642997'), - (527, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4oMeX9Gm', '4645687'), - (527, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4oMeX9Gm', '4645698'), - (527, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4oMeX9Gm', '4645704'), - (527, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4oMeX9Gm', '4645705'), - (527, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4oMeX9Gm', '4668385'), - (527, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4oMeX9Gm', '4694407'), - (527, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMeX9Gm', '4736497'), - (527, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMeX9Gm', '4736499'), - (527, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4oMeX9Gm', '4736500'), - (527, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMeX9Gm', '4736503'), - (527, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMeX9Gm', '4736504'), - (527, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4oMeX9Gm', '4746789'), - (527, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMeX9Gm', '4753929'), - (527, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMeX9Gm', '5038850'), - (527, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMeX9Gm', '5045826'), - (527, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMeX9Gm', '5132533'), - (527, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMeX9Gm', '5186582'), - (527, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMeX9Gm', '5186583'), - (527, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMeX9Gm', '5186585'), - (527, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMeX9Gm', '5190437'), - (527, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMeX9Gm', '5215989'), - (527, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMeX9Gm', '6045684'), - (528, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AQOjKlgd', '7074364'), - (528, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AQOjKlgd', '7324073'), - (528, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AQOjKlgd', '7324074'), - (528, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AQOjKlgd', '7324075'), - (528, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AQOjKlgd', '7324078'), - (528, 2702, 'not_attending', '2024-06-13 18:33:33', '2025-12-17 19:46:28', 'AQOjKlgd', '7324867'), - (528, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AQOjKlgd', '7331457'), - (528, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'AQOjKlgd', '7332564'), - (528, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'AQOjKlgd', '7344575'), - (528, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'AQOjKlgd', '7359624'), - (528, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AQOjKlgd', '7363643'), - (528, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AQOjKlgd', '7368606'), - (529, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'ydwvP3Q4', '3149489'), - (529, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'ydwvP3Q4', '3149491'), - (529, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'ydwvP3Q4', '3149493'), - (529, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'ydwvP3Q4', '3236448'), - (529, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'ydwvP3Q4', '3236450'), - (529, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'ydwvP3Q4', '3236452'), - (529, 648, 'not_attending', '2021-05-26 03:39:37', '2025-12-17 19:47:47', 'ydwvP3Q4', '3539923'), - (529, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'ydwvP3Q4', '3963335'), - (529, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ydwvP3Q4', '3974109'), - (529, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydwvP3Q4', '3975311'), - (529, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydwvP3Q4', '3975312'), - (529, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydwvP3Q4', '3994992'), - (529, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ydwvP3Q4', '4014338'), - (529, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ydwvP3Q4', '4021848'), - (529, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ydwvP3Q4', '4136744'), - (529, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ydwvP3Q4', '4136937'), - (529, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ydwvP3Q4', '4136938'), - (529, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwvP3Q4', '4136947'), - (529, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwvP3Q4', '4225444'), - (529, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'ydwvP3Q4', '4229417'), - (529, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'ydwvP3Q4', '4229418'), - (529, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydwvP3Q4', '4239259'), - (529, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ydwvP3Q4', '4250163'), - (529, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwvP3Q4', '6045684'), - (530, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'daBo50rm', '4694407'), - (530, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'daBo50rm', '4736497'), - (530, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'daBo50rm', '4736499'), - (530, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'daBo50rm', '4736500'), - (530, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'daBo50rm', '4736503'), - (530, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daBo50rm', '4736504'), - (530, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'daBo50rm', '4746789'), - (530, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'daBo50rm', '4753929'), - (530, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'daBo50rm', '5038850'), - (530, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'daBo50rm', '5045826'), - (530, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'daBo50rm', '5132533'), - (530, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daBo50rm', '6045684'), - (531, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '4oxybLYd', '5537735'), - (531, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4oxybLYd', '5540859'), - (531, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4oxybLYd', '5600604'), - (531, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4oxybLYd', '5605544'), - (531, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4oxybLYd', '5630960'), - (531, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4oxybLYd', '5630961'), - (531, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4oxybLYd', '5630962'), - (531, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4oxybLYd', '5630966'), - (531, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4oxybLYd', '5630967'), - (531, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4oxybLYd', '5630968'), - (531, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4oxybLYd', '5635406'), - (531, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4oxybLYd', '5638765'), - (531, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4oxybLYd', '5640097'), - (531, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4oxybLYd', '5640843'), - (531, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4oxybLYd', '5641521'), - (531, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4oxybLYd', '5642818'), - (531, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4oxybLYd', '5652395'), - (531, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4oxybLYd', '5670445'), - (531, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4oxybLYd', '5671637'), - (531, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4oxybLYd', '5672329'), - (531, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4oxybLYd', '5674057'), - (531, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4oxybLYd', '5674060'), - (531, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4oxybLYd', '5677461'), - (531, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4oxybLYd', '5698046'), - (531, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4oxybLYd', '5699760'), - (531, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4oxybLYd', '5741601'), - (531, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4oxybLYd', '5763458'), - (531, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4oxybLYd', '5774172'), - (531, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4oxybLYd', '5818247'), - (531, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4oxybLYd', '5819471'), - (531, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4oxybLYd', '5827739'), - (531, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4oxybLYd', '5844306'), - (531, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4oxybLYd', '5850159'), - (531, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4oxybLYd', '5858999'), - (531, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4oxybLYd', '5871984'), - (531, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4oxybLYd', '5876354'), - (531, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4oxybLYd', '5880939'), - (531, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4oxybLYd', '5887890'), - (531, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4oxybLYd', '5888598'), - (531, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4oxybLYd', '5893260'), - (531, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oxybLYd', '6045684'), - (532, 646, 'attending', '2021-05-15 21:35:20', '2025-12-17 19:47:46', 'kdKjj8M4', '3539921'), - (532, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'kdKjj8M4', '3539922'), - (532, 648, 'attending', '2021-05-28 15:42:16', '2025-12-17 19:47:47', 'kdKjj8M4', '3539923'), - (532, 741, 'not_attending', '2021-05-19 19:53:57', '2025-12-17 19:47:46', 'kdKjj8M4', '3680618'), - (532, 745, 'maybe', '2021-06-30 13:10:21', '2025-12-17 19:47:38', 'kdKjj8M4', '3680625'), - (532, 797, 'attending', '2021-05-25 21:15:08', '2025-12-17 19:47:47', 'kdKjj8M4', '3796195'), - (532, 803, 'attending', '2021-05-18 23:02:08', '2025-12-17 19:47:46', 'kdKjj8M4', '3804665'), - (532, 804, 'attending', '2021-05-24 20:17:53', '2025-12-17 19:47:47', 'kdKjj8M4', '3804775'), - (532, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'kdKjj8M4', '3806392'), - (532, 815, 'attending', '2021-05-28 20:41:28', '2025-12-17 19:47:47', 'kdKjj8M4', '3818136'), - (532, 823, 'attending', '2021-06-16 19:45:55', '2025-12-17 19:47:48', 'kdKjj8M4', '3974109'), - (532, 827, 'maybe', '2021-06-03 20:40:46', '2025-12-17 19:47:47', 'kdKjj8M4', '3975311'), - (532, 828, 'attending', '2021-06-12 18:41:49', '2025-12-17 19:47:47', 'kdKjj8M4', '3975312'), - (532, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKjj8M4', '3994992'), - (532, 841, 'maybe', '2021-06-13 22:26:50', '2025-12-17 19:47:48', 'kdKjj8M4', '4007434'), - (532, 844, 'maybe', '2021-06-20 23:22:01', '2025-12-17 19:47:38', 'kdKjj8M4', '4014338'), - (532, 866, 'maybe', '2021-06-20 23:20:49', '2025-12-17 19:47:38', 'kdKjj8M4', '4020424'), - (532, 867, 'attending', '2021-06-20 23:22:34', '2025-12-17 19:47:38', 'kdKjj8M4', '4021848'), - (532, 868, 'maybe', '2021-06-13 22:27:16', '2025-12-17 19:47:48', 'kdKjj8M4', '4022012'), - (532, 869, 'maybe', '2021-06-30 13:11:19', '2025-12-17 19:47:38', 'kdKjj8M4', '4136744'), - (532, 870, 'attending', '2021-06-30 13:05:26', '2025-12-17 19:47:39', 'kdKjj8M4', '4136937'), - (532, 871, 'attending', '2021-07-05 02:56:23', '2025-12-17 19:47:39', 'kdKjj8M4', '4136938'), - (532, 872, 'maybe', '2021-06-22 20:04:52', '2025-12-17 19:47:40', 'kdKjj8M4', '4136947'), - (532, 874, 'maybe', '2021-06-19 07:19:10', '2025-12-17 19:47:38', 'kdKjj8M4', '4139815'), - (532, 875, 'maybe', '2021-06-19 07:19:42', '2025-12-17 19:47:38', 'kdKjj8M4', '4139816'), - (532, 880, 'attending', '2021-06-18 17:39:12', '2025-12-17 19:47:48', 'kdKjj8M4', '4205383'), - (532, 884, 'attending', '2021-07-17 14:49:00', '2025-12-17 19:47:42', 'kdKjj8M4', '4210314'), - (532, 887, 'maybe', '2021-07-14 22:22:34', '2025-12-17 19:47:39', 'kdKjj8M4', '4225444'), - (532, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdKjj8M4', '4239259'), - (532, 900, 'attending', '2021-07-21 00:14:06', '2025-12-17 19:47:40', 'kdKjj8M4', '4240316'), - (532, 901, 'attending', '2021-07-26 20:24:58', '2025-12-17 19:47:40', 'kdKjj8M4', '4240317'), - (532, 902, 'attending', '2021-08-04 20:23:20', '2025-12-17 19:47:41', 'kdKjj8M4', '4240318'), - (532, 903, 'attending', '2021-08-11 09:44:26', '2025-12-17 19:47:42', 'kdKjj8M4', '4240320'), - (532, 904, 'maybe', '2021-07-01 18:51:48', '2025-12-17 19:47:39', 'kdKjj8M4', '4241594'), - (532, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdKjj8M4', '4250163'), - (532, 917, 'attending', '2021-07-12 01:47:08', '2025-12-17 19:47:39', 'kdKjj8M4', '4274481'), - (532, 919, 'attending', '2021-07-12 14:23:06', '2025-12-17 19:47:39', 'kdKjj8M4', '4275957'), - (532, 920, 'maybe', '2021-07-25 16:37:18', '2025-12-17 19:47:40', 'kdKjj8M4', '4277819'), - (532, 929, 'maybe', '2021-08-05 21:55:34', '2025-12-17 19:47:41', 'kdKjj8M4', '4297223'), - (532, 933, 'maybe', '2021-07-25 16:36:28', '2025-12-17 19:47:40', 'kdKjj8M4', '4301723'), - (532, 934, 'attending', '2021-08-04 22:45:50', '2025-12-17 19:47:40', 'kdKjj8M4', '4302093'), - (532, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdKjj8M4', '4304151'), - (532, 946, 'attending', '2021-08-02 01:49:08', '2025-12-17 19:47:40', 'kdKjj8M4', '4314835'), - (532, 971, 'maybe', '2021-09-01 04:30:02', '2025-12-17 19:47:43', 'kdKjj8M4', '4356801'), - (532, 973, 'maybe', '2021-08-21 12:59:17', '2025-12-17 19:47:42', 'kdKjj8M4', '4366186'), - (532, 974, 'maybe', '2021-08-16 05:06:11', '2025-12-17 19:47:42', 'kdKjj8M4', '4366187'), - (532, 987, 'maybe', '2021-09-01 04:29:24', '2025-12-17 19:47:43', 'kdKjj8M4', '4402634'), - (532, 989, 'attending', '2021-08-30 17:32:22', '2025-12-17 19:47:43', 'kdKjj8M4', '4414282'), - (532, 990, 'attending', '2021-08-28 22:47:56', '2025-12-17 19:47:43', 'kdKjj8M4', '4420735'), - (532, 991, 'attending', '2021-08-28 22:47:58', '2025-12-17 19:47:43', 'kdKjj8M4', '4420738'), - (532, 992, 'attending', '2021-08-28 22:48:00', '2025-12-17 19:47:33', 'kdKjj8M4', '4420739'), - (532, 993, 'attending', '2021-08-28 22:48:01', '2025-12-17 19:47:34', 'kdKjj8M4', '4420741'), - (532, 995, 'not_attending', '2021-10-09 20:20:14', '2025-12-17 19:47:34', 'kdKjj8M4', '4420744'), - (532, 996, 'not_attending', '2021-10-16 20:46:59', '2025-12-17 19:47:35', 'kdKjj8M4', '4420747'), - (532, 997, 'attending', '2021-08-28 22:48:06', '2025-12-17 19:47:35', 'kdKjj8M4', '4420748'), - (532, 998, 'not_attending', '2021-10-30 12:51:43', '2025-12-17 19:47:36', 'kdKjj8M4', '4420749'), - (532, 1016, 'attending', '2021-09-03 18:54:49', '2025-12-17 19:47:43', 'kdKjj8M4', '4441271'), - (532, 1017, 'attending', '2021-09-03 18:54:45', '2025-12-17 19:47:43', 'kdKjj8M4', '4441822'), - (532, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKjj8M4', '4461883'), - (532, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKjj8M4', '4508342'), - (532, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKjj8M4', '4568602'), - (532, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKjj8M4', '4572153'), - (532, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdKjj8M4', '4585962'), - (532, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'kdKjj8M4', '4596356'), - (532, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKjj8M4', '4598860'), - (532, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKjj8M4', '4598861'), - (532, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKjj8M4', '4602797'), - (532, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKjj8M4', '4637896'), - (532, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKjj8M4', '4642994'), - (532, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdKjj8M4', '4642995'), - (532, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKjj8M4', '4642996'), - (532, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKjj8M4', '4642997'), - (532, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKjj8M4', '4645687'), - (532, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKjj8M4', '4645698'), - (532, 1128, 'not_attending', '2021-11-20 23:47:39', '2025-12-17 19:47:37', 'kdKjj8M4', '4645704'), - (532, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKjj8M4', '4645705'), - (532, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKjj8M4', '4668385'), - (532, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKjj8M4', '4694407'), - (532, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKjj8M4', '4736497'), - (532, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKjj8M4', '4736499'), - (532, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKjj8M4', '4736500'), - (532, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKjj8M4', '4736503'), - (532, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKjj8M4', '4736504'), - (532, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKjj8M4', '4746789'), - (532, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdKjj8M4', '4753929'), - (532, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKjj8M4', '5038850'), - (532, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKjj8M4', '5045826'), - (532, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKjj8M4', '5132533'), - (532, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdKjj8M4', '5186582'), - (532, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdKjj8M4', '5186583'), - (532, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdKjj8M4', '5186585'), - (532, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdKjj8M4', '5190437'), - (532, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKjj8M4', '5215989'), - (532, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKjj8M4', '6045684'), - (533, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'm6qlzRzd', '7424276'), - (533, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'm6qlzRzd', '7682072'), - (533, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'm6qlzRzd', '7685613'), - (533, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6qlzRzd', '7688194'), - (533, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6qlzRzd', '7688196'), - (533, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6qlzRzd', '7688289'), - (533, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'm6qlzRzd', '7692763'), - (533, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'm6qlzRzd', '7697552'), - (533, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'm6qlzRzd', '7699878'), - (533, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'm6qlzRzd', '7704043'), - (533, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6qlzRzd', '7712467'), - (533, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6qlzRzd', '7713585'), - (533, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6qlzRzd', '7713586'), - (533, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'm6qlzRzd', '7738518'), - (533, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6qlzRzd', '7750636'), - (533, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6qlzRzd', '7796540'), - (533, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6qlzRzd', '7796541'), - (533, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6qlzRzd', '7796542'), - (533, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6qlzRzd', '7825913'), - (533, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6qlzRzd', '7826209'), - (533, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6qlzRzd', '7834742'), - (533, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6qlzRzd', '7842108'), - (533, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6qlzRzd', '7842902'), - (533, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6qlzRzd', '7842903'), - (533, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6qlzRzd', '7842904'), - (533, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6qlzRzd', '7842905'), - (533, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'm6qlzRzd', '7844784'), - (533, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6qlzRzd', '7855719'), - (533, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6qlzRzd', '7860683'), - (533, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6qlzRzd', '7860684'), - (533, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6qlzRzd', '7866095'), - (533, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6qlzRzd', '7869170'), - (533, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6qlzRzd', '7869201'), - (533, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'm6qlzRzd', '7872088'), - (534, 1869, 'not_attending', '2023-03-07 15:57:34', '2025-12-17 19:47:09', 'dKbl16R4', '5880943'), - (534, 1886, 'maybe', '2023-03-07 04:56:04', '2025-12-17 19:47:09', 'dKbl16R4', '5899930'), - (534, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dKbl16R4', '5900202'), - (534, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dKbl16R4', '5900203'), - (534, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dKbl16R4', '5910528'), - (534, 1941, 'maybe', '2023-03-07 00:48:52', '2025-12-17 19:47:09', 'dKbl16R4', '5961684'), - (534, 1943, 'attending', '2023-03-13 18:44:41', '2025-12-17 19:47:10', 'dKbl16R4', '5962091'), - (534, 1945, 'maybe', '2023-03-09 12:58:03', '2025-12-17 19:47:10', 'dKbl16R4', '5962133'), - (534, 1946, 'not_attending', '2023-03-16 21:07:35', '2025-12-17 19:46:56', 'dKbl16R4', '5962134'), - (534, 1948, 'attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dKbl16R4', '5962317'), - (534, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dKbl16R4', '5962318'), - (534, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dKbl16R4', '5965933'), - (534, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dKbl16R4', '5972815'), - (534, 1960, 'maybe', '2023-03-09 12:57:49', '2025-12-17 19:47:09', 'dKbl16R4', '5973267'), - (534, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dKbl16R4', '5974016'), - (534, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dKbl16R4', '5981515'), - (534, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dKbl16R4', '5993516'), - (534, 1974, 'attending', '2023-03-29 11:23:18', '2025-12-17 19:46:57', 'dKbl16R4', '5993778'), - (534, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dKbl16R4', '5998939'), - (534, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dKbl16R4', '6028191'), - (534, 1982, 'maybe', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dKbl16R4', '6040066'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (534, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dKbl16R4', '6042717'), - (534, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dKbl16R4', '6044838'), - (534, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dKbl16R4', '6044839'), - (534, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKbl16R4', '6045684'), - (534, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dKbl16R4', '6050104'), - (534, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dKbl16R4', '6053195'), - (534, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dKbl16R4', '6053198'), - (534, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dKbl16R4', '6056085'), - (534, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dKbl16R4', '6056916'), - (534, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dKbl16R4', '6059290'), - (534, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dKbl16R4', '6060328'), - (534, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dKbl16R4', '6061037'), - (534, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dKbl16R4', '6061039'), - (534, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dKbl16R4', '6067245'), - (534, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dKbl16R4', '6068094'), - (534, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dKbl16R4', '6068252'), - (534, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dKbl16R4', '6068253'), - (534, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dKbl16R4', '6068254'), - (534, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dKbl16R4', '6068280'), - (534, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dKbl16R4', '6069093'), - (534, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dKbl16R4', '6072528'), - (534, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dKbl16R4', '6079840'), - (534, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dKbl16R4', '6083398'), - (534, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dKbl16R4', '6093504'), - (534, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dKbl16R4', '6097414'), - (534, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dKbl16R4', '6097442'), - (534, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dKbl16R4', '6097684'), - (534, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dKbl16R4', '6098762'), - (534, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dKbl16R4', '6101362'), - (534, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dKbl16R4', '6103752'), - (534, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dKbl16R4', '6107314'), - (535, 855, 'attending', '2021-08-04 22:44:00', '2025-12-17 19:47:41', '4PPG8al4', '4015729'), - (535, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', '4PPG8al4', '4210314'), - (535, 902, 'attending', '2021-08-04 06:49:11', '2025-12-17 19:47:41', '4PPG8al4', '4240318'), - (535, 903, 'attending', '2021-08-14 07:46:50', '2025-12-17 19:47:42', '4PPG8al4', '4240320'), - (535, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4PPG8al4', '4304151'), - (535, 947, 'attending', '2021-08-04 00:22:03', '2025-12-17 19:47:41', '4PPG8al4', '4315713'), - (535, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '4PPG8al4', '4345519'), - (535, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4PPG8al4', '4356801'), - (535, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '4PPG8al4', '4358025'), - (535, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '4PPG8al4', '4366186'), - (535, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '4PPG8al4', '4366187'), - (535, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4PPG8al4', '4402823'), - (535, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4PPG8al4', '4420735'), - (535, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4PPG8al4', '4420738'), - (535, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', '4PPG8al4', '4420739'), - (535, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4PPG8al4', '4420741'), - (535, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4PPG8al4', '4420744'), - (535, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4PPG8al4', '4420747'), - (535, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4PPG8al4', '4420748'), - (535, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4PPG8al4', '4420749'), - (535, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4PPG8al4', '4461883'), - (535, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4PPG8al4', '4508342'), - (535, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4PPG8al4', '4568602'), - (535, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4PPG8al4', '6045684'), - (536, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqNlbkA', '6045684'), - (537, 252, 'maybe', '2021-02-15 05:01:03', '2025-12-17 19:47:50', 'ndalZan4', '3149483'), - (537, 403, 'not_attending', '2021-02-26 01:56:48', '2025-12-17 19:47:51', 'ndalZan4', '3236458'), - (537, 408, 'not_attending', '2021-02-13 16:37:33', '2025-12-17 19:47:50', 'ndalZan4', '3236466'), - (537, 590, 'attending', '2021-02-10 00:51:29', '2025-12-17 19:47:50', 'ndalZan4', '3459150'), - (537, 593, 'maybe', '2021-02-22 21:33:27', '2025-12-17 19:47:50', 'ndalZan4', '3467758'), - (537, 595, 'maybe', '2021-03-07 21:32:33', '2025-12-17 19:47:51', 'ndalZan4', '3467761'), - (537, 599, 'attending', '2021-02-12 02:19:16', '2025-12-17 19:47:50', 'ndalZan4', '3468117'), - (537, 600, 'attending', '2021-02-21 23:37:22', '2025-12-17 19:47:50', 'ndalZan4', '3468125'), - (537, 601, 'not_attending', '2021-02-15 05:00:17', '2025-12-17 19:47:50', 'ndalZan4', '3468131'), - (537, 603, 'not_attending', '2021-02-19 20:09:11', '2025-12-17 19:47:50', 'ndalZan4', '3470304'), - (537, 604, 'not_attending', '2021-02-26 01:53:24', '2025-12-17 19:47:50', 'ndalZan4', '3470305'), - (537, 605, 'maybe', '2021-02-11 00:16:14', '2025-12-17 19:47:50', 'ndalZan4', '3470991'), - (537, 608, 'maybe', '2021-02-10 23:07:57', '2025-12-17 19:47:50', 'ndalZan4', '3475332'), - (537, 610, 'not_attending', '2021-02-13 16:36:59', '2025-12-17 19:47:50', 'ndalZan4', '3482159'), - (537, 621, 'not_attending', '2021-03-04 23:26:59', '2025-12-17 19:47:51', 'ndalZan4', '3517815'), - (537, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ndalZan4', '3517816'), - (537, 623, 'attending', '2021-02-26 01:53:19', '2025-12-17 19:47:50', 'ndalZan4', '3523941'), - (537, 630, 'attending', '2021-03-01 05:25:07', '2025-12-17 19:47:51', 'ndalZan4', '3533425'), - (537, 631, 'attending', '2021-03-01 05:24:21', '2025-12-17 19:47:51', 'ndalZan4', '3533850'), - (537, 638, 'attending', '2021-03-04 23:28:46', '2025-12-17 19:47:44', 'ndalZan4', '3536632'), - (537, 639, 'attending', '2021-03-04 23:30:54', '2025-12-17 19:47:51', 'ndalZan4', '3536656'), - (537, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ndalZan4', '3539916'), - (537, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ndalZan4', '3539917'), - (537, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ndalZan4', '3539918'), - (537, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ndalZan4', '3539919'), - (537, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ndalZan4', '3539920'), - (537, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ndalZan4', '3539921'), - (537, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ndalZan4', '3539922'), - (537, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndalZan4', '3539923'), - (537, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndalZan4', '3539927'), - (537, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndalZan4', '3582734'), - (537, 707, 'attending', '2021-04-13 23:57:08', '2025-12-17 19:47:46', 'ndalZan4', '3583262'), - (537, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndalZan4', '3619523'), - (537, 724, 'attending', '2021-04-13 23:54:55', '2025-12-17 19:47:46', 'ndalZan4', '3661369'), - (537, 728, 'attending', '2021-04-13 23:54:12', '2025-12-17 19:47:44', 'ndalZan4', '3668073'), - (537, 729, 'attending', '2021-04-20 00:14:48', '2025-12-17 19:47:46', 'ndalZan4', '3668075'), - (537, 730, 'attending', '2021-04-20 00:14:57', '2025-12-17 19:47:46', 'ndalZan4', '3668076'), - (537, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ndalZan4', '3674262'), - (537, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ndalZan4', '3677402'), - (537, 752, 'not_attending', '2021-04-15 23:17:52', '2025-12-17 19:47:44', 'ndalZan4', '3699422'), - (537, 766, 'attending', '2021-04-20 00:15:03', '2025-12-17 19:47:46', 'ndalZan4', '3721383'), - (537, 768, 'maybe', '2021-04-20 00:14:44', '2025-12-17 19:47:46', 'ndalZan4', '3724124'), - (537, 769, 'attending', '2021-04-20 00:14:45', '2025-12-17 19:47:46', 'ndalZan4', '3724127'), - (537, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndalZan4', '3730212'), - (537, 792, 'attending', '2021-05-13 00:58:31', '2025-12-17 19:47:46', 'ndalZan4', '3793156'), - (537, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ndalZan4', '3974109'), - (537, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ndalZan4', '3975311'), - (537, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ndalZan4', '3975312'), - (537, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ndalZan4', '3994992'), - (537, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ndalZan4', '4014338'), - (537, 867, 'maybe', '2021-06-25 22:18:54', '2025-12-17 19:47:38', 'ndalZan4', '4021848'), - (537, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ndalZan4', '4136744'), - (537, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ndalZan4', '4136937'), - (537, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ndalZan4', '4136938'), - (537, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndalZan4', '4136947'), - (537, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndalZan4', '4210314'), - (537, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndalZan4', '4225444'), - (537, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndalZan4', '4239259'), - (537, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ndalZan4', '4240316'), - (537, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ndalZan4', '4240317'), - (537, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndalZan4', '4240318'), - (537, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ndalZan4', '4240320'), - (537, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndalZan4', '4250163'), - (537, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndalZan4', '4275957'), - (537, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndalZan4', '4277819'), - (537, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndalZan4', '4301723'), - (537, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ndalZan4', '4302093'), - (537, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndalZan4', '4304151'), - (537, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndalZan4', '4345519'), - (537, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndalZan4', '4356801'), - (537, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndalZan4', '4358025'), - (537, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ndalZan4', '4366186'), - (537, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndalZan4', '4366187'), - (537, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndalZan4', '4402823'), - (537, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ndalZan4', '4420735'), - (537, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ndalZan4', '4420738'), - (537, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndalZan4', '4420739'), - (537, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndalZan4', '4420741'), - (537, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndalZan4', '4420744'), - (537, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndalZan4', '4420747'), - (537, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndalZan4', '4420748'), - (537, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndalZan4', '4420749'), - (537, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndalZan4', '4461883'), - (537, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndalZan4', '4508342'), - (537, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndalZan4', '4568602'), - (537, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndalZan4', '4572153'), - (537, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ndalZan4', '4585962'), - (537, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ndalZan4', '4596356'), - (537, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ndalZan4', '4598860'), - (537, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ndalZan4', '4598861'), - (537, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ndalZan4', '4602797'), - (537, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ndalZan4', '4637896'), - (537, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndalZan4', '4642994'), - (537, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ndalZan4', '4642995'), - (537, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ndalZan4', '4642996'), - (537, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ndalZan4', '4642997'), - (537, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ndalZan4', '4645687'), - (537, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ndalZan4', '4645698'), - (537, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndalZan4', '4645704'), - (537, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ndalZan4', '4645705'), - (537, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ndalZan4', '4668385'), - (537, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndalZan4', '4694407'), - (537, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ndalZan4', '4736497'), - (537, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ndalZan4', '4736499'), - (537, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndalZan4', '4736500'), - (537, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ndalZan4', '4736503'), - (537, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ndalZan4', '4736504'), - (537, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndalZan4', '4746789'), - (537, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ndalZan4', '4753929'), - (537, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndalZan4', '5038850'), - (537, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ndalZan4', '5045826'), - (537, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndalZan4', '5132533'), - (537, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ndalZan4', '5186582'), - (537, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ndalZan4', '5186583'), - (537, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ndalZan4', '5186585'), - (537, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ndalZan4', '5190437'), - (537, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ndalZan4', '5195095'), - (537, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndalZan4', '5215989'), - (537, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ndalZan4', '5223686'), - (537, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ndalZan4', '5247467'), - (537, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ndalZan4', '5260800'), - (537, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ndalZan4', '5269930'), - (537, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ndalZan4', '5271448'), - (537, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'ndalZan4', '5271449'), - (537, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ndalZan4', '5278159'), - (537, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ndalZan4', '5363695'), - (537, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ndalZan4', '5365960'), - (537, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ndalZan4', '5378247'), - (537, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'ndalZan4', '5389605'), - (537, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ndalZan4', '5397265'), - (537, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ndalZan4', '5404786'), - (537, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ndalZan4', '5405203'), - (537, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ndalZan4', '5412550'), - (537, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ndalZan4', '5415046'), - (537, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ndalZan4', '5422086'), - (537, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ndalZan4', '5422406'), - (537, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ndalZan4', '5424565'), - (537, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ndalZan4', '5426882'), - (537, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ndalZan4', '5441125'), - (537, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ndalZan4', '5441126'), - (537, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ndalZan4', '5441128'), - (537, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ndalZan4', '5441131'), - (537, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ndalZan4', '5441132'), - (537, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ndalZan4', '5453325'), - (537, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ndalZan4', '5454516'), - (537, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ndalZan4', '5454605'), - (537, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ndalZan4', '5455037'), - (537, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ndalZan4', '5461278'), - (537, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ndalZan4', '5469480'), - (537, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ndalZan4', '5474663'), - (537, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ndalZan4', '5482022'), - (537, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ndalZan4', '5488912'), - (537, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ndalZan4', '5492192'), - (537, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ndalZan4', '5493139'), - (537, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ndalZan4', '5493200'), - (537, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ndalZan4', '5502188'), - (537, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndalZan4', '5505059'), - (537, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ndalZan4', '5509055'), - (537, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndalZan4', '5512862'), - (537, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndalZan4', '5513985'), - (537, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'ndalZan4', '5519981'), - (537, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndalZan4', '5522550'), - (537, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndalZan4', '5534683'), - (537, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ndalZan4', '5537735'), - (537, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndalZan4', '5540859'), - (537, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndalZan4', '5546619'), - (537, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndalZan4', '5557747'), - (537, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndalZan4', '5560255'), - (537, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndalZan4', '5562906'), - (537, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndalZan4', '5600604'), - (537, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndalZan4', '5605544'), - (537, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ndalZan4', '5630960'), - (537, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndalZan4', '5630961'), - (537, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndalZan4', '5630962'), - (537, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndalZan4', '5630966'), - (537, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ndalZan4', '5630967'), - (537, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndalZan4', '5630968'), - (537, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndalZan4', '5635406'), - (537, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndalZan4', '5638765'), - (537, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndalZan4', '5640097'), - (537, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ndalZan4', '5640843'), - (537, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndalZan4', '5641521'), - (537, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ndalZan4', '5642818'), - (537, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndalZan4', '5652395'), - (537, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ndalZan4', '5670445'), - (537, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndalZan4', '5671637'), - (537, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndalZan4', '5672329'), - (537, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndalZan4', '5674057'), - (537, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndalZan4', '5674060'), - (537, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndalZan4', '5677461'), - (537, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndalZan4', '5698046'), - (537, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ndalZan4', '5699760'), - (537, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndalZan4', '5741601'), - (537, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndalZan4', '5763458'), - (537, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndalZan4', '5774172'), - (537, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'ndalZan4', '5818247'), - (537, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndalZan4', '5819471'), - (537, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndalZan4', '5827739'), - (537, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndalZan4', '5844306'), - (537, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndalZan4', '5850159'), - (537, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndalZan4', '5858999'), - (537, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndalZan4', '5871984'), - (537, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndalZan4', '5876354'), - (537, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndalZan4', '5880939'), - (537, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ndalZan4', '5880940'), - (537, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndalZan4', '5880942'), - (537, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndalZan4', '5880943'), - (537, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndalZan4', '5887890'), - (537, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndalZan4', '5888598'), - (537, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndalZan4', '5893260'), - (537, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndalZan4', '5899826'), - (537, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndalZan4', '5900199'), - (537, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ndalZan4', '5900200'), - (537, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndalZan4', '5900202'), - (537, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndalZan4', '5900203'), - (537, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndalZan4', '5901108'), - (537, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndalZan4', '5901126'), - (537, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'ndalZan4', '5901606'), - (537, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndalZan4', '5909655'), - (537, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndalZan4', '5910522'), - (537, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndalZan4', '5910526'), - (537, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndalZan4', '5910528'), - (537, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ndalZan4', '5916219'), - (537, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndalZan4', '5936234'), - (537, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndalZan4', '5958351'), - (537, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndalZan4', '5959751'), - (537, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndalZan4', '5959755'), - (537, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndalZan4', '5960055'), - (537, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndalZan4', '5961684'), - (537, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndalZan4', '5962132'), - (537, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ndalZan4', '5962133'), - (537, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndalZan4', '5962134'), - (537, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndalZan4', '5962317'), - (537, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndalZan4', '5962318'), - (537, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndalZan4', '5965933'), - (537, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndalZan4', '5967014'), - (537, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndalZan4', '5972815'), - (537, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndalZan4', '5974016'), - (537, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndalZan4', '5981515'), - (537, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndalZan4', '5993516'), - (537, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndalZan4', '5998939'), - (537, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndalZan4', '6028191'), - (537, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndalZan4', '6040066'), - (537, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndalZan4', '6042717'), - (537, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndalZan4', '6044838'), - (537, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndalZan4', '6044839'), - (537, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndalZan4', '6045684'), - (537, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndalZan4', '6050104'), - (537, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndalZan4', '6053195'), - (537, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndalZan4', '6053198'), - (537, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndalZan4', '6056085'), - (537, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndalZan4', '6056916'), - (537, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndalZan4', '6059290'), - (537, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndalZan4', '6060328'), - (537, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndalZan4', '6061037'), - (537, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndalZan4', '6061039'), - (537, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndalZan4', '6067245'), - (537, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndalZan4', '6068094'), - (537, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndalZan4', '6068252'), - (537, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndalZan4', '6068253'), - (537, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndalZan4', '6068254'), - (537, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndalZan4', '6068280'), - (537, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndalZan4', '6069093'), - (537, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndalZan4', '6072528'), - (537, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndalZan4', '6079840'), - (537, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndalZan4', '6083398'), - (537, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndalZan4', '6093504'), - (537, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndalZan4', '6097414'), - (537, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndalZan4', '6097442'), - (537, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndalZan4', '6097684'), - (537, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndalZan4', '6098762'), - (537, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ndalZan4', '6101361'), - (537, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndalZan4', '6101362'), - (537, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndalZan4', '6107314'), - (537, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndalZan4', '6120034'), - (537, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ndalZan4', '6136733'), - (537, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndalZan4', '6137989'), - (537, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndalZan4', '6150864'), - (537, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndalZan4', '6155491'), - (537, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndalZan4', '6164417'), - (537, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndalZan4', '6166388'), - (537, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndalZan4', '6176439'), - (537, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndalZan4', '6182410'), - (537, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndalZan4', '6185812'), - (537, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndalZan4', '6187651'), - (537, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndalZan4', '6187963'), - (537, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndalZan4', '6187964'), - (537, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndalZan4', '6187966'), - (537, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndalZan4', '6187967'), - (537, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndalZan4', '6187969'), - (537, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndalZan4', '6334878'), - (537, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndalZan4', '6337236'), - (537, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndalZan4', '6337970'), - (537, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndalZan4', '6338308'), - (537, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndalZan4', '6341710'), - (537, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndalZan4', '6342044'), - (537, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndalZan4', '6342298'), - (537, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndalZan4', '6343294'), - (537, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndalZan4', '6347034'), - (537, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndalZan4', '6347056'), - (537, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndalZan4', '6353830'), - (537, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndalZan4', '6353831'), - (537, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndalZan4', '6357867'), - (537, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndalZan4', '6358652'), - (537, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndalZan4', '6361709'), - (537, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndalZan4', '6361710'), - (537, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndalZan4', '6361711'), - (537, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndalZan4', '6361712'), - (537, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndalZan4', '6361713'), - (537, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndalZan4', '6382573'), - (537, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ndalZan4', '6388604'), - (537, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndalZan4', '6394629'), - (537, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndalZan4', '6394631'), - (537, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndalZan4', '6440863'), - (537, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndalZan4', '6445440'), - (537, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndalZan4', '6453951'), - (537, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndalZan4', '6461696'), - (537, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndalZan4', '6462129'), - (537, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndalZan4', '6463218'), - (537, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ndalZan4', '6472181'), - (537, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndalZan4', '6482693'), - (537, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ndalZan4', '6484200'), - (537, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndalZan4', '6484680'), - (537, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndalZan4', '6507741'), - (537, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndalZan4', '6514659'), - (537, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndalZan4', '6514660'), - (537, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndalZan4', '6519103'), - (537, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndalZan4', '6535681'), - (537, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndalZan4', '6584747'), - (537, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndalZan4', '6587097'), - (537, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndalZan4', '6609022'), - (537, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndalZan4', '6632757'), - (537, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndalZan4', '6644187'), - (537, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndalZan4', '6648951'), - (537, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndalZan4', '6648952'), - (537, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndalZan4', '6655401'), - (537, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndalZan4', '6661585'), - (537, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndalZan4', '6661588'), - (537, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndalZan4', '6661589'), - (537, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndalZan4', '6699906'), - (537, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ndalZan4', '6699913'), - (537, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndalZan4', '6701109'), - (537, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndalZan4', '6705219'), - (537, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndalZan4', '6710153'), - (537, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndalZan4', '6711552'), - (537, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'ndalZan4', '6711553'), - (537, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ndalZan4', '6722688'), - (537, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ndalZan4', '6730620'), - (537, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ndalZan4', '6740364'), - (537, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ndalZan4', '6743829'), - (537, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ndalZan4', '7030380'), - (537, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ndalZan4', '7033677'), - (537, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ndalZan4', '7044715'), - (537, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ndalZan4', '7050318'), - (537, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ndalZan4', '7050319'), - (537, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ndalZan4', '7050322'), - (537, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ndalZan4', '7057804'), - (537, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ndalZan4', '7072824'), - (537, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ndalZan4', '7074348'), - (537, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndalZan4', '7074364'), - (537, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ndalZan4', '7089267'), - (537, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ndalZan4', '7098747'), - (537, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ndalZan4', '7113468'), - (537, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ndalZan4', '7114856'), - (537, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ndalZan4', '7114951'), - (537, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ndalZan4', '7114955'), - (537, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ndalZan4', '7114956'), - (537, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndalZan4', '7114957'), - (537, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndalZan4', '7159484'), - (537, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndalZan4', '7178446'), - (537, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'ndalZan4', '7220467'), - (537, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndalZan4', '7240354'), - (537, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndalZan4', '7251633'), - (537, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndalZan4', '7324073'), - (537, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndalZan4', '7324074'), - (537, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndalZan4', '7324075'), - (537, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ndalZan4', '7324078'), - (537, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ndalZan4', '7324082'), - (537, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ndalZan4', '7331457'), - (537, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ndalZan4', '7363643'), - (537, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndalZan4', '7368606'), - (537, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndalZan4', '7397462'), - (537, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndalZan4', '7424275'), - (537, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndalZan4', '7432751'), - (537, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndalZan4', '7432752'), - (537, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndalZan4', '7432753'), - (537, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndalZan4', '7432754'), - (537, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndalZan4', '7432755'), - (537, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndalZan4', '7432756'), - (537, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndalZan4', '7432758'), - (537, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndalZan4', '7432759'), - (537, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndalZan4', '7433834'), - (537, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndalZan4', '7470197'), - (537, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndalZan4', '7685613'), - (537, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndalZan4', '7688194'), - (537, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndalZan4', '7688196'), - (537, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndalZan4', '7688289'), - (537, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ndalZan4', '7692763'), - (537, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndalZan4', '7697552'), - (537, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndalZan4', '7699878'), - (537, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndalZan4', '7704043'), - (537, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndalZan4', '7712467'), - (537, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ndalZan4', '7713585'), - (537, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ndalZan4', '7713586'), - (537, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndalZan4', '7738518'), - (537, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndalZan4', '7750636'), - (537, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndalZan4', '7796540'), - (537, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndalZan4', '7796541'), - (537, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndalZan4', '7796542'), - (537, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndalZan4', '7825913'), - (537, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndalZan4', '7826209'), - (537, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndalZan4', '7834742'), - (537, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ndalZan4', '7842108'), - (537, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndalZan4', '7842902'), - (537, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndalZan4', '7842903'), - (537, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndalZan4', '7842904'), - (537, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndalZan4', '7842905'), - (537, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndalZan4', '7855719'), - (537, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndalZan4', '7860683'), - (537, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndalZan4', '7860684'), - (537, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndalZan4', '7866095'), - (537, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndalZan4', '7869170'), - (537, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ndalZan4', '7869188'), - (537, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndalZan4', '7869201'), - (537, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndalZan4', '7877465'), - (537, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndalZan4', '7888250'), - (537, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ndalZan4', '7904777'), - (537, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndalZan4', '8349164'), - (537, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndalZan4', '8349545'), - (537, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndalZan4', '8368028'), - (537, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndalZan4', '8368029'), - (537, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndalZan4', '8388462'), - (537, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndalZan4', '8400273'), - (537, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndalZan4', '8400275'), - (537, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ndalZan4', '8400276'), - (537, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndalZan4', '8404977'), - (537, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndalZan4', '8430783'), - (537, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndalZan4', '8430784'), - (537, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndalZan4', '8430799'), - (537, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndalZan4', '8430800'), - (537, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndalZan4', '8430801'), - (537, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndalZan4', '8438709'), - (537, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndalZan4', '8457738'), - (537, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndalZan4', '8459566'), - (537, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndalZan4', '8459567'), - (537, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndalZan4', '8461032'), - (537, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndalZan4', '8477877'), - (537, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ndalZan4', '8485688'), - (537, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ndalZan4', '8490587'), - (537, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ndalZan4', '8493552'), - (537, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ndalZan4', '8493553'), - (537, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ndalZan4', '8493554'), - (537, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ndalZan4', '8493555'), - (537, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ndalZan4', '8493556'), - (537, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ndalZan4', '8493557'), - (537, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ndalZan4', '8493558'), - (537, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ndalZan4', '8493559'), - (537, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ndalZan4', '8493560'), - (537, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ndalZan4', '8493561'), - (537, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ndalZan4', '8493572'), - (537, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ndalZan4', '8540725'), - (537, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndalZan4', '8555421'), - (538, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'm6o1vJzA', '5195095'), - (538, 1307, 'not_attending', '2022-04-05 18:41:01', '2025-12-17 19:47:27', 'm6o1vJzA', '5223686'), - (538, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'm6o1vJzA', '5227432'), - (538, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'm6o1vJzA', '5247467'), - (538, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'm6o1vJzA', '5260800'), - (538, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6o1vJzA', '5269930'), - (538, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6o1vJzA', '5271448'), - (538, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'm6o1vJzA', '5271449'), - (538, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'm6o1vJzA', '5276469'), - (538, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6o1vJzA', '5278159'), - (538, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6o1vJzA', '6045684'), - (539, 10, 'attending', '2020-03-28 19:03:32', '2025-12-17 19:47:56', '54k7DM54', '2958053'), - (539, 15, 'not_attending', '2020-04-15 20:16:19', '2025-12-17 19:47:57', '54k7DM54', '2958059'), - (539, 18, 'not_attending', '2020-04-15 20:16:27', '2025-12-17 19:47:57', '54k7DM54', '2958062'), - (539, 21, 'not_attending', '2020-05-01 22:28:09', '2025-12-17 19:47:57', '54k7DM54', '2958065'), - (539, 30, 'not_attending', '2020-04-06 20:40:00', '2025-12-17 19:47:57', '54k7DM54', '2961895'), - (539, 36, 'attending', '2020-04-04 23:06:14', '2025-12-17 19:47:57', '54k7DM54', '2969208'), - (539, 41, 'not_attending', '2020-04-15 20:16:24', '2025-12-17 19:47:57', '54k7DM54', '2971546'), - (539, 43, 'not_attending', '2020-04-15 20:16:37', '2025-12-17 19:47:57', '54k7DM54', '2974519'), - (539, 44, 'not_attending', '2020-04-11 22:46:19', '2025-12-17 19:47:57', '54k7DM54', '2974534'), - (539, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', '54k7DM54', '2974955'), - (539, 55, 'not_attending', '2020-04-06 20:39:56', '2025-12-17 19:47:57', '54k7DM54', '2975384'), - (539, 56, 'not_attending', '2020-04-12 03:32:06', '2025-12-17 19:47:57', '54k7DM54', '2975385'), - (539, 57, 'not_attending', '2020-04-10 21:25:15', '2025-12-17 19:47:57', '54k7DM54', '2976575'), - (539, 70, 'not_attending', '2020-04-10 18:54:55', '2025-12-17 19:47:57', '54k7DM54', '2977343'), - (539, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '54k7DM54', '2977812'), - (539, 73, 'not_attending', '2020-04-15 20:16:29', '2025-12-17 19:47:57', '54k7DM54', '2977931'), - (539, 74, 'attending', '2020-04-15 20:16:35', '2025-12-17 19:47:57', '54k7DM54', '2978244'), - (539, 75, 'attending', '2020-04-25 22:49:44', '2025-12-17 19:47:57', '54k7DM54', '2978245'), - (539, 76, 'attending', '2020-05-01 22:28:12', '2025-12-17 19:47:57', '54k7DM54', '2978246'), - (539, 77, 'not_attending', '2020-05-04 13:58:20', '2025-12-17 19:47:57', '54k7DM54', '2978247'), - (539, 78, 'attending', '2020-05-19 23:56:55', '2025-12-17 19:47:57', '54k7DM54', '2978249'), - (539, 79, 'attending', '2020-05-24 22:31:28', '2025-12-17 19:47:57', '54k7DM54', '2978250'), - (539, 80, 'attending', '2020-06-07 01:38:51', '2025-12-17 19:47:58', '54k7DM54', '2978251'), - (539, 81, 'attending', '2020-06-13 22:53:18', '2025-12-17 19:47:58', '54k7DM54', '2978252'), - (539, 82, 'not_attending', '2020-04-11 02:47:29', '2025-12-17 19:47:57', '54k7DM54', '2978433'), - (539, 83, 'not_attending', '2020-05-09 03:20:32', '2025-12-17 19:47:57', '54k7DM54', '2978438'), - (539, 84, 'not_attending', '2020-04-13 23:55:22', '2025-12-17 19:47:57', '54k7DM54', '2980871'), - (539, 86, 'not_attending', '2020-04-14 19:49:48', '2025-12-17 19:47:57', '54k7DM54', '2981388'), - (539, 88, 'not_attending', '2020-04-15 20:16:33', '2025-12-17 19:47:57', '54k7DM54', '2982603'), - (539, 89, 'not_attending', '2020-05-01 22:28:10', '2025-12-17 19:47:57', '54k7DM54', '2982604'), - (539, 91, 'not_attending', '2020-05-01 22:28:08', '2025-12-17 19:47:57', '54k7DM54', '2985130'), - (539, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '54k7DM54', '2986743'), - (539, 93, 'not_attending', '2020-04-19 17:31:44', '2025-12-17 19:47:57', '54k7DM54', '2987418'), - (539, 101, 'attending', '2020-04-22 00:28:05', '2025-12-17 19:47:57', '54k7DM54', '2989975'), - (539, 104, 'attending', '2020-04-24 19:00:45', '2025-12-17 19:47:57', '54k7DM54', '2991471'), - (539, 106, 'not_attending', '2020-05-01 22:28:13', '2025-12-17 19:47:57', '54k7DM54', '2993501'), - (539, 109, 'not_attending', '2020-05-11 22:48:50', '2025-12-17 19:47:57', '54k7DM54', '2994480'), - (539, 110, 'attending', '2020-05-03 19:53:03', '2025-12-17 19:47:57', '54k7DM54', '2994906'), - (539, 111, 'attending', '2020-06-07 19:54:50', '2025-12-17 19:47:58', '54k7DM54', '2994907'), - (539, 113, 'attending', '2020-08-02 17:24:28', '2025-12-17 19:47:56', '54k7DM54', '2994909'), - (539, 115, 'attending', '2020-05-16 20:03:21', '2025-12-17 19:47:57', '54k7DM54', '3001217'), - (539, 121, 'not_attending', '2020-05-26 22:32:15', '2025-12-17 19:47:57', '54k7DM54', '3023063'), - (539, 133, 'not_attending', '2020-06-24 23:59:27', '2025-12-17 19:47:58', '54k7DM54', '3034321'), - (539, 136, 'not_attending', '2020-05-24 22:31:23', '2025-12-17 19:47:57', '54k7DM54', '3035881'), - (539, 143, 'not_attending', '2020-06-07 21:49:09', '2025-12-17 19:47:58', '54k7DM54', '3049983'), - (539, 147, 'not_attending', '2020-08-22 22:09:28', '2025-12-17 19:47:56', '54k7DM54', '3058684'), - (539, 151, 'not_attending', '2020-08-22 22:10:13', '2025-12-17 19:47:56', '54k7DM54', '3058688'), - (539, 152, 'not_attending', '2020-09-02 20:34:30', '2025-12-17 19:47:56', '54k7DM54', '3058689'), - (539, 156, 'not_attending', '2020-09-05 23:15:52', '2025-12-17 19:47:56', '54k7DM54', '3058693'), - (539, 157, 'not_attending', '2020-09-19 22:17:09', '2025-12-17 19:47:56', '54k7DM54', '3058694'), - (539, 159, 'not_attending', '2020-10-03 22:28:53', '2025-12-17 19:47:52', '54k7DM54', '3058696'), - (539, 160, 'not_attending', '2020-10-03 22:29:39', '2025-12-17 19:47:52', '54k7DM54', '3058697'), - (539, 161, 'not_attending', '2020-10-03 22:29:06', '2025-12-17 19:47:52', '54k7DM54', '3058698'), - (539, 162, 'not_attending', '2020-10-03 22:29:20', '2025-12-17 19:47:52', '54k7DM54', '3058699'), - (539, 163, 'not_attending', '2020-10-03 22:29:47', '2025-12-17 19:47:53', '54k7DM54', '3058700'), - (539, 164, 'not_attending', '2020-10-19 22:32:56', '2025-12-17 19:47:54', '54k7DM54', '3058701'), - (539, 165, 'not_attending', '2020-10-19 22:32:48', '2025-12-17 19:47:53', '54k7DM54', '3058702'), - (539, 166, 'not_attending', '2020-10-19 22:33:03', '2025-12-17 19:47:54', '54k7DM54', '3058704'), - (539, 167, 'not_attending', '2020-10-19 22:33:07', '2025-12-17 19:47:54', '54k7DM54', '3058705'), - (539, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '54k7DM54', '3058959'), - (539, 173, 'not_attending', '2020-06-16 04:36:04', '2025-12-17 19:47:58', '54k7DM54', '3067093'), - (539, 181, 'maybe', '2020-06-20 20:41:56', '2025-12-17 19:47:58', '54k7DM54', '3074513'), - (539, 183, 'not_attending', '2020-06-16 04:35:50', '2025-12-17 19:47:58', '54k7DM54', '3075228'), - (539, 185, 'not_attending', '2020-06-16 04:35:55', '2025-12-17 19:47:58', '54k7DM54', '3075456'), - (539, 186, 'not_attending', '2020-06-19 01:58:10', '2025-12-17 19:47:55', '54k7DM54', '3083791'), - (539, 187, 'not_attending', '2020-06-19 20:31:33', '2025-12-17 19:47:55', '54k7DM54', '3085151'), - (539, 189, 'not_attending', '2020-06-20 18:18:51', '2025-12-17 19:47:58', '54k7DM54', '3087016'), - (539, 190, 'not_attending', '2020-07-04 22:35:49', '2025-12-17 19:47:55', '54k7DM54', '3087258'), - (539, 191, 'attending', '2020-07-11 22:30:33', '2025-12-17 19:47:55', '54k7DM54', '3087259'), - (539, 192, 'not_attending', '2020-07-18 19:54:08', '2025-12-17 19:47:55', '54k7DM54', '3087260'), - (539, 196, 'attending', '2020-08-15 20:38:36', '2025-12-17 19:47:56', '54k7DM54', '3087265'), - (539, 197, 'attending', '2020-08-22 22:09:34', '2025-12-17 19:47:56', '54k7DM54', '3087266'), - (539, 198, 'attending', '2020-08-29 22:37:30', '2025-12-17 19:47:56', '54k7DM54', '3087267'), - (539, 199, 'attending', '2020-09-05 23:15:10', '2025-12-17 19:47:56', '54k7DM54', '3087268'), - (539, 200, 'attending', '2020-09-05 23:15:21', '2025-12-17 19:47:56', '54k7DM54', '3087269'), - (539, 201, 'not_attending', '2020-06-21 02:50:20', '2025-12-17 19:47:55', '54k7DM54', '3088653'), - (539, 202, 'not_attending', '2020-07-06 23:46:44', '2025-12-17 19:47:55', '54k7DM54', '3090353'), - (539, 209, 'not_attending', '2020-06-30 01:52:01', '2025-12-17 19:47:55', '54k7DM54', '3106813'), - (539, 220, 'not_attending', '2020-09-02 20:34:21', '2025-12-17 19:47:56', '54k7DM54', '3129264'), - (539, 221, 'not_attending', '2020-09-05 23:16:07', '2025-12-17 19:47:56', '54k7DM54', '3129265'), - (539, 223, 'attending', '2020-09-12 23:02:18', '2025-12-17 19:47:56', '54k7DM54', '3129980'), - (539, 226, 'not_attending', '2020-07-14 03:09:28', '2025-12-17 19:47:55', '54k7DM54', '3132817'), - (539, 227, 'not_attending', '2020-07-14 03:09:32', '2025-12-17 19:47:55', '54k7DM54', '3132820'), - (539, 232, 'not_attending', '2020-07-20 22:41:38', '2025-12-17 19:47:55', '54k7DM54', '3139770'), - (539, 239, 'not_attending', '2020-08-22 22:09:57', '2025-12-17 19:47:56', '54k7DM54', '3149470'), - (539, 240, 'not_attending', '2020-09-05 23:15:33', '2025-12-17 19:47:56', '54k7DM54', '3149471'), - (539, 241, 'not_attending', '2020-10-03 22:29:00', '2025-12-17 19:47:52', '54k7DM54', '3149472'), - (539, 242, 'not_attending', '2020-09-12 00:07:47', '2025-12-17 19:47:56', '54k7DM54', '3149473'), - (539, 243, 'not_attending', '2020-10-03 22:29:52', '2025-12-17 19:47:53', '54k7DM54', '3149474'), - (539, 244, 'not_attending', '2020-10-03 22:29:25', '2025-12-17 19:47:52', '54k7DM54', '3149475'), - (539, 245, 'not_attending', '2020-11-08 19:30:30', '2025-12-17 19:47:54', '54k7DM54', '3149476'), - (539, 246, 'not_attending', '2020-11-11 04:10:39', '2025-12-17 19:47:55', '54k7DM54', '3149477'), - (539, 247, 'not_attending', '2020-12-06 21:30:21', '2025-12-17 19:47:48', '54k7DM54', '3149478'), - (539, 248, 'not_attending', '2020-12-06 21:30:35', '2025-12-17 19:47:48', '54k7DM54', '3149479'), - (539, 249, 'not_attending', '2020-10-19 22:33:00', '2025-12-17 19:47:54', '54k7DM54', '3149480'), - (539, 250, 'not_attending', '2020-12-06 21:31:01', '2025-12-17 19:47:50', '54k7DM54', '3149481'), - (539, 251, 'not_attending', '2020-12-06 21:30:39', '2025-12-17 19:47:49', '54k7DM54', '3149482'), - (539, 252, 'not_attending', '2020-12-06 21:31:05', '2025-12-17 19:47:50', '54k7DM54', '3149483'), - (539, 254, 'not_attending', '2020-12-06 21:31:09', '2025-12-17 19:47:51', '54k7DM54', '3149485'), - (539, 255, 'not_attending', '2021-03-24 00:04:19', '2025-12-17 19:47:43', '54k7DM54', '3149486'), - (539, 269, 'attending', '2020-07-28 22:17:32', '2025-12-17 19:47:55', '54k7DM54', '3153076'), - (539, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '54k7DM54', '3155321'), - (539, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '54k7DM54', '3162006'), - (539, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '54k7DM54', '3163442'), - (539, 280, 'not_attending', '2020-08-12 23:08:29', '2025-12-17 19:47:56', '54k7DM54', '3166942'), - (539, 285, 'not_attending', '2020-08-22 22:09:51', '2025-12-17 19:47:56', '54k7DM54', '3170245'), - (539, 286, 'not_attending', '2020-08-22 22:10:00', '2025-12-17 19:47:56', '54k7DM54', '3170246'), - (539, 287, 'not_attending', '2020-08-22 22:10:06', '2025-12-17 19:47:56', '54k7DM54', '3170247'), - (539, 288, 'not_attending', '2020-09-02 20:34:16', '2025-12-17 19:47:56', '54k7DM54', '3170249'), - (539, 289, 'not_attending', '2020-09-02 20:34:25', '2025-12-17 19:47:56', '54k7DM54', '3170250'), - (539, 290, 'not_attending', '2020-09-05 23:15:34', '2025-12-17 19:47:56', '54k7DM54', '3170251'), - (539, 291, 'not_attending', '2020-09-05 23:15:47', '2025-12-17 19:47:56', '54k7DM54', '3170252'), - (539, 293, 'not_attending', '2020-08-10 21:56:51', '2025-12-17 19:47:56', '54k7DM54', '3172832'), - (539, 294, 'not_attending', '2020-08-10 21:56:48', '2025-12-17 19:47:56', '54k7DM54', '3172833'), - (539, 295, 'not_attending', '2020-08-10 21:56:45', '2025-12-17 19:47:56', '54k7DM54', '3172834'), - (539, 296, 'not_attending', '2020-08-10 21:56:43', '2025-12-17 19:47:56', '54k7DM54', '3172876'), - (539, 298, 'not_attending', '2020-08-22 22:10:05', '2025-12-17 19:47:56', '54k7DM54', '3174556'), - (539, 301, 'not_attending', '2020-08-22 22:10:03', '2025-12-17 19:47:56', '54k7DM54', '3178027'), - (539, 302, 'not_attending', '2020-08-22 22:09:58', '2025-12-17 19:47:56', '54k7DM54', '3178028'), - (539, 304, 'not_attending', '2020-09-05 23:15:29', '2025-12-17 19:47:56', '54k7DM54', '3178916'), - (539, 306, 'not_attending', '2020-08-22 22:09:23', '2025-12-17 19:47:56', '54k7DM54', '3179777'), - (539, 308, 'not_attending', '2020-09-02 20:34:20', '2025-12-17 19:47:56', '54k7DM54', '3183341'), - (539, 310, 'not_attending', '2020-08-22 22:09:41', '2025-12-17 19:47:56', '54k7DM54', '3186005'), - (539, 311, 'not_attending', '2020-09-19 22:17:25', '2025-12-17 19:47:56', '54k7DM54', '3186057'), - (539, 312, 'not_attending', '2020-09-05 23:15:42', '2025-12-17 19:47:56', '54k7DM54', '3187795'), - (539, 313, 'not_attending', '2020-08-22 22:09:43', '2025-12-17 19:47:56', '54k7DM54', '3188127'), - (539, 314, 'not_attending', '2020-08-22 22:09:56', '2025-12-17 19:47:56', '54k7DM54', '3188480'), - (539, 315, 'not_attending', '2020-09-05 23:15:31', '2025-12-17 19:47:56', '54k7DM54', '3189085'), - (539, 316, 'not_attending', '2020-08-26 23:32:42', '2025-12-17 19:47:56', '54k7DM54', '3191519'), - (539, 317, 'not_attending', '2020-08-26 23:32:46', '2025-12-17 19:47:56', '54k7DM54', '3191735'), - (539, 320, 'not_attending', '2020-09-02 20:34:23', '2025-12-17 19:47:56', '54k7DM54', '3195552'), - (539, 321, 'not_attending', '2020-09-05 23:15:25', '2025-12-17 19:47:56', '54k7DM54', '3197077'), - (539, 322, 'not_attending', '2020-09-05 23:16:04', '2025-12-17 19:47:56', '54k7DM54', '3197080'), - (539, 323, 'not_attending', '2020-09-05 23:16:09', '2025-12-17 19:47:56', '54k7DM54', '3197081'), - (539, 324, 'not_attending', '2020-09-12 00:07:45', '2025-12-17 19:47:56', '54k7DM54', '3197082'), - (539, 325, 'not_attending', '2020-09-12 00:07:51', '2025-12-17 19:47:51', '54k7DM54', '3197083'), - (539, 326, 'not_attending', '2020-09-12 00:07:56', '2025-12-17 19:47:52', '54k7DM54', '3197084'), - (539, 330, 'not_attending', '2020-09-06 18:23:57', '2025-12-17 19:47:56', '54k7DM54', '3197322'), - (539, 331, 'not_attending', '2020-09-02 20:34:28', '2025-12-17 19:47:56', '54k7DM54', '3198871'), - (539, 332, 'not_attending', '2020-09-05 23:15:39', '2025-12-17 19:47:56', '54k7DM54', '3198873'), - (539, 333, 'not_attending', '2020-10-08 23:32:18', '2025-12-17 19:47:52', '54k7DM54', '3199782'), - (539, 334, 'not_attending', '2020-10-03 22:29:02', '2025-12-17 19:47:52', '54k7DM54', '3199784'), - (539, 335, 'not_attending', '2020-09-02 20:34:26', '2025-12-17 19:47:56', '54k7DM54', '3200209'), - (539, 336, 'not_attending', '2020-09-05 23:16:02', '2025-12-17 19:47:56', '54k7DM54', '3200495'), - (539, 337, 'not_attending', '2020-09-05 23:15:37', '2025-12-17 19:47:56', '54k7DM54', '3201771'), - (539, 338, 'not_attending', '2020-09-05 23:15:20', '2025-12-17 19:47:56', '54k7DM54', '3203106'), - (539, 339, 'not_attending', '2020-09-05 23:15:40', '2025-12-17 19:47:56', '54k7DM54', '3204469'), - (539, 340, 'not_attending', '2020-09-05 23:16:05', '2025-12-17 19:47:56', '54k7DM54', '3204470'), - (539, 341, 'not_attending', '2020-09-12 00:07:52', '2025-12-17 19:47:52', '54k7DM54', '3204471'), - (539, 343, 'not_attending', '2020-09-12 00:07:48', '2025-12-17 19:47:56', '54k7DM54', '3206759'), - (539, 344, 'not_attending', '2020-10-03 22:29:50', '2025-12-17 19:47:53', '54k7DM54', '3206906'), - (539, 345, 'not_attending', '2020-09-12 00:07:26', '2025-12-17 19:47:56', '54k7DM54', '3207423'), - (539, 346, 'not_attending', '2020-09-12 00:07:30', '2025-12-17 19:47:56', '54k7DM54', '3207515'), - (539, 347, 'not_attending', '2020-09-12 00:07:54', '2025-12-17 19:47:51', '54k7DM54', '3207930'), - (539, 349, 'not_attending', '2020-09-12 00:07:32', '2025-12-17 19:47:56', '54k7DM54', '3209194'), - (539, 350, 'not_attending', '2020-09-12 00:07:21', '2025-12-17 19:47:56', '54k7DM54', '3209255'), - (539, 351, 'not_attending', '2020-09-12 00:07:35', '2025-12-17 19:47:56', '54k7DM54', '3209257'), - (539, 362, 'attending', '2020-09-26 22:44:15', '2025-12-17 19:47:52', '54k7DM54', '3214207'), - (539, 363, 'not_attending', '2020-09-17 22:53:23', '2025-12-17 19:47:52', '54k7DM54', '3217037'), - (539, 365, 'not_attending', '2020-09-18 21:21:24', '2025-12-17 19:47:51', '54k7DM54', '3218510'), - (539, 369, 'not_attending', '2020-10-03 22:29:10', '2025-12-17 19:47:52', '54k7DM54', '3221404'), - (539, 370, 'not_attending', '2020-10-03 22:29:14', '2025-12-17 19:47:52', '54k7DM54', '3221405'), - (539, 371, 'not_attending', '2020-10-17 17:44:15', '2025-12-17 19:47:52', '54k7DM54', '3221406'), - (539, 372, 'not_attending', '2020-10-03 22:29:32', '2025-12-17 19:47:52', '54k7DM54', '3221407'), - (539, 373, 'not_attending', '2020-10-03 22:29:36', '2025-12-17 19:47:52', '54k7DM54', '3221413'), - (539, 374, 'not_attending', '2020-10-03 22:29:43', '2025-12-17 19:47:53', '54k7DM54', '3221415'), - (539, 375, 'not_attending', '2020-10-03 22:29:03', '2025-12-17 19:47:52', '54k7DM54', '3222825'), - (539, 376, 'not_attending', '2020-10-03 22:29:18', '2025-12-17 19:47:52', '54k7DM54', '3222827'), - (539, 377, 'not_attending', '2020-10-19 22:32:33', '2025-12-17 19:47:53', '54k7DM54', '3222828'), - (539, 379, 'attending', '2020-10-03 22:28:57', '2025-12-17 19:47:52', '54k7DM54', '3226266'), - (539, 382, 'not_attending', '2020-10-03 22:29:13', '2025-12-17 19:47:52', '54k7DM54', '3226873'), - (539, 385, 'attending', '2020-10-03 22:28:55', '2025-12-17 19:47:52', '54k7DM54', '3228698'), - (539, 386, 'attending', '2020-10-10 22:32:10', '2025-12-17 19:47:52', '54k7DM54', '3228699'), - (539, 387, 'attending', '2020-10-17 23:02:50', '2025-12-17 19:47:52', '54k7DM54', '3228700'), - (539, 388, 'maybe', '2020-10-03 22:29:40', '2025-12-17 19:47:52', '54k7DM54', '3228701'), - (539, 390, 'not_attending', '2020-10-03 22:28:58', '2025-12-17 19:47:52', '54k7DM54', '3231510'), - (539, 392, 'not_attending', '2020-10-19 22:32:29', '2025-12-17 19:47:53', '54k7DM54', '3236447'), - (539, 394, 'not_attending', '2020-12-06 21:30:28', '2025-12-17 19:47:48', '54k7DM54', '3236449'), - (539, 398, 'not_attending', '2020-12-06 21:30:37', '2025-12-17 19:47:49', '54k7DM54', '3236453'), - (539, 399, 'not_attending', '2020-10-19 22:32:55', '2025-12-17 19:47:54', '54k7DM54', '3236454'), - (539, 400, 'not_attending', '2020-12-06 21:30:42', '2025-12-17 19:47:50', '54k7DM54', '3236455'), - (539, 403, 'not_attending', '2020-12-06 21:31:07', '2025-12-17 19:47:51', '54k7DM54', '3236458'), - (539, 404, 'not_attending', '2020-12-06 21:31:11', '2025-12-17 19:47:51', '54k7DM54', '3236460'), - (539, 405, 'not_attending', '2021-07-22 18:36:03', '2025-12-17 19:47:40', '54k7DM54', '3236462'), - (539, 406, 'not_attending', '2020-12-06 21:31:17', '2025-12-17 19:47:44', '54k7DM54', '3236464'), - (539, 408, 'not_attending', '2020-12-06 21:31:03', '2025-12-17 19:47:50', '54k7DM54', '3236466'), - (539, 409, 'not_attending', '2020-11-11 04:10:36', '2025-12-17 19:47:54', '54k7DM54', '3236467'), - (539, 410, 'not_attending', '2020-10-19 22:33:05', '2025-12-17 19:47:54', '54k7DM54', '3236469'), - (539, 413, 'not_attending', '2020-10-17 17:44:36', '2025-12-17 19:47:52', '54k7DM54', '3236670'), - (539, 414, 'not_attending', '2020-10-17 17:44:32', '2025-12-17 19:47:52', '54k7DM54', '3237277'), - (539, 419, 'not_attending', '2020-10-13 21:34:37', '2025-12-17 19:47:52', '54k7DM54', '3242234'), - (539, 421, 'not_attending', '2020-10-17 17:44:38', '2025-12-17 19:47:52', '54k7DM54', '3245294'), - (539, 422, 'not_attending', '2020-10-19 22:32:30', '2025-12-17 19:47:53', '54k7DM54', '3245295'), - (539, 423, 'not_attending', '2020-10-19 22:32:45', '2025-12-17 19:47:53', '54k7DM54', '3245296'), - (539, 424, 'not_attending', '2020-10-13 21:34:13', '2025-12-17 19:47:52', '54k7DM54', '3245751'), - (539, 426, 'not_attending', '2020-10-14 20:45:51', '2025-12-17 19:47:52', '54k7DM54', '3250232'), - (539, 427, 'attending', '2020-11-01 22:52:25', '2025-12-17 19:47:53', '54k7DM54', '3250233'), - (539, 428, 'not_attending', '2020-10-19 22:32:21', '2025-12-17 19:47:53', '54k7DM54', '3250332'), - (539, 429, 'maybe', '2020-11-11 04:10:33', '2025-12-17 19:47:54', '54k7DM54', '3250523'), - (539, 430, 'not_attending', '2020-10-17 17:44:34', '2025-12-17 19:47:52', '54k7DM54', '3253094'), - (539, 431, 'not_attending', '2020-10-19 22:32:23', '2025-12-17 19:47:53', '54k7DM54', '3253225'), - (539, 432, 'not_attending', '2020-10-19 22:32:42', '2025-12-17 19:47:53', '54k7DM54', '3254416'), - (539, 433, 'not_attending', '2020-10-19 22:32:47', '2025-12-17 19:47:53', '54k7DM54', '3254417'), - (539, 434, 'not_attending', '2020-10-19 22:32:53', '2025-12-17 19:47:53', '54k7DM54', '3254418'), - (539, 435, 'attending', '2020-10-17 20:55:37', '2025-12-17 19:47:52', '54k7DM54', '3254790'), - (539, 436, 'not_attending', '2020-10-19 22:32:16', '2025-12-17 19:47:52', '54k7DM54', '3256119'), - (539, 437, 'not_attending', '2020-10-19 22:32:27', '2025-12-17 19:47:53', '54k7DM54', '3256160'), - (539, 438, 'attending', '2020-11-01 03:17:31', '2025-12-17 19:47:53', '54k7DM54', '3256163'), - (539, 439, 'not_attending', '2020-10-19 22:32:26', '2025-12-17 19:47:53', '54k7DM54', '3256164'), - (539, 440, 'attending', '2020-11-08 00:52:55', '2025-12-17 19:47:53', '54k7DM54', '3256168'), - (539, 441, 'maybe', '2020-10-19 22:32:58', '2025-12-17 19:47:54', '54k7DM54', '3256169'), - (539, 442, 'not_attending', '2020-10-20 23:20:15', '2025-12-17 19:47:52', '54k7DM54', '3260345'), - (539, 443, 'not_attending', '2020-10-23 23:02:54', '2025-12-17 19:47:53', '54k7DM54', '3263578'), - (539, 444, 'not_attending', '2020-10-30 01:25:31', '2025-12-17 19:47:53', '54k7DM54', '3263745'), - (539, 445, 'not_attending', '2020-11-01 04:22:56', '2025-12-17 19:47:54', '54k7DM54', '3266138'), - (539, 449, 'not_attending', '2020-11-01 04:23:04', '2025-12-17 19:47:53', '54k7DM54', '3272055'), - (539, 450, 'not_attending', '2020-11-01 03:17:28', '2025-12-17 19:47:53', '54k7DM54', '3272102'), - (539, 451, 'not_attending', '2020-11-03 03:08:36', '2025-12-17 19:47:53', '54k7DM54', '3272186'), - (539, 452, 'not_attending', '2020-11-08 19:30:29', '2025-12-17 19:47:54', '54k7DM54', '3272981'), - (539, 453, 'not_attending', '2020-11-08 00:53:07', '2025-12-17 19:47:54', '54k7DM54', '3274032'), - (539, 454, 'not_attending', '2020-11-08 00:53:13', '2025-12-17 19:47:54', '54k7DM54', '3275665'), - (539, 456, 'not_attending', '2020-11-08 00:52:51', '2025-12-17 19:47:54', '54k7DM54', '3276428'), - (539, 457, 'not_attending', '2020-11-08 00:53:03', '2025-12-17 19:47:53', '54k7DM54', '3279087'), - (539, 458, 'not_attending', '2020-11-08 00:53:06', '2025-12-17 19:47:53', '54k7DM54', '3279233'), - (539, 459, 'not_attending', '2020-11-08 19:30:16', '2025-12-17 19:47:54', '54k7DM54', '3281467'), - (539, 460, 'not_attending', '2020-11-08 19:30:21', '2025-12-17 19:47:54', '54k7DM54', '3281468'), - (539, 461, 'not_attending', '2020-11-08 19:29:58', '2025-12-17 19:47:53', '54k7DM54', '3281469'), - (539, 462, 'not_attending', '2020-11-08 19:30:02', '2025-12-17 19:47:54', '54k7DM54', '3281470'), - (539, 463, 'not_attending', '2020-11-08 19:30:13', '2025-12-17 19:47:54', '54k7DM54', '3281553'), - (539, 464, 'not_attending', '2020-11-08 19:30:23', '2025-12-17 19:47:54', '54k7DM54', '3281554'), - (539, 465, 'not_attending', '2020-11-08 19:30:27', '2025-12-17 19:47:54', '54k7DM54', '3281555'), - (539, 466, 'not_attending', '2020-11-08 19:30:19', '2025-12-17 19:47:54', '54k7DM54', '3281829'), - (539, 467, 'not_attending', '2020-11-11 04:10:06', '2025-12-17 19:47:54', '54k7DM54', '3282756'), - (539, 468, 'maybe', '2020-11-11 04:10:14', '2025-12-17 19:47:54', '54k7DM54', '3285413'), - (539, 469, 'attending', '2020-11-29 00:39:18', '2025-12-17 19:47:54', '54k7DM54', '3285414'), - (539, 470, 'not_attending', '2020-11-11 04:09:59', '2025-12-17 19:47:54', '54k7DM54', '3285443'), - (539, 471, 'not_attending', '2020-11-11 04:10:09', '2025-12-17 19:47:54', '54k7DM54', '3285445'), - (539, 472, 'not_attending', '2020-11-13 02:01:03', '2025-12-17 19:47:54', '54k7DM54', '3286541'), - (539, 473, 'not_attending', '2020-11-13 02:01:09', '2025-12-17 19:47:54', '54k7DM54', '3286569'), - (539, 474, 'not_attending', '2020-11-13 02:00:56', '2025-12-17 19:47:54', '54k7DM54', '3286570'), - (539, 475, 'not_attending', '2020-11-12 03:29:09', '2025-12-17 19:47:54', '54k7DM54', '3286760'), - (539, 476, 'not_attending', '2020-11-13 02:01:12', '2025-12-17 19:47:54', '54k7DM54', '3286982'), - (539, 477, 'not_attending', '2020-12-02 01:45:22', '2025-12-17 19:47:54', '54k7DM54', '3289559'), - (539, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '54k7DM54', '3297764'), - (539, 488, 'not_attending', '2020-12-02 01:45:19', '2025-12-17 19:47:54', '54k7DM54', '3312757'), - (539, 490, 'not_attending', '2020-12-02 01:45:32', '2025-12-17 19:47:54', '54k7DM54', '3313532'), - (539, 491, 'not_attending', '2020-12-06 21:29:36', '2025-12-17 19:47:55', '54k7DM54', '3313533'), - (539, 492, 'not_attending', '2020-12-02 01:45:21', '2025-12-17 19:47:54', '54k7DM54', '3313731'), - (539, 493, 'maybe', '2020-12-02 01:45:24', '2025-12-17 19:47:54', '54k7DM54', '3313856'), - (539, 495, 'not_attending', '2020-12-02 01:45:29', '2025-12-17 19:47:54', '54k7DM54', '3314009'), - (539, 496, 'not_attending', '2020-12-06 21:29:33', '2025-12-17 19:47:54', '54k7DM54', '3314269'), - (539, 497, 'not_attending', '2020-12-06 21:30:06', '2025-12-17 19:47:55', '54k7DM54', '3314270'), - (539, 498, 'not_attending', '2020-12-02 01:45:30', '2025-12-17 19:47:54', '54k7DM54', '3314302'), - (539, 499, 'not_attending', '2020-12-03 01:34:13', '2025-12-17 19:47:55', '54k7DM54', '3314909'), - (539, 500, 'not_attending', '2020-12-06 21:30:12', '2025-12-17 19:47:55', '54k7DM54', '3314964'), - (539, 501, 'not_attending', '2020-12-06 21:29:30', '2025-12-17 19:47:54', '54k7DM54', '3317834'), - (539, 502, 'maybe', '2020-12-06 21:29:47', '2025-12-17 19:47:55', '54k7DM54', '3323365'), - (539, 503, 'not_attending', '2020-12-06 21:29:56', '2025-12-17 19:47:55', '54k7DM54', '3323366'), - (539, 504, 'not_attending', '2020-12-18 01:15:21', '2025-12-17 19:47:55', '54k7DM54', '3323368'), - (539, 505, 'not_attending', '2020-12-06 21:30:16', '2025-12-17 19:47:55', '54k7DM54', '3323369'), - (539, 506, 'not_attending', '2020-12-06 21:29:50', '2025-12-17 19:47:55', '54k7DM54', '3323375'), - (539, 507, 'not_attending', '2020-12-18 01:15:33', '2025-12-17 19:47:48', '54k7DM54', '3324148'), - (539, 508, 'not_attending', '2020-12-18 01:16:05', '2025-12-17 19:47:48', '54k7DM54', '3324231'), - (539, 509, 'not_attending', '2020-12-18 01:16:08', '2025-12-17 19:47:49', '54k7DM54', '3324232'), - (539, 510, 'not_attending', '2020-12-18 01:16:09', '2025-12-17 19:47:49', '54k7DM54', '3324233'), - (539, 513, 'not_attending', '2020-12-19 04:19:18', '2025-12-17 19:47:55', '54k7DM54', '3329383'), - (539, 516, 'attending', '2020-12-18 01:15:47', '2025-12-17 19:47:48', '54k7DM54', '3334530'), - (539, 517, 'not_attending', '2020-12-18 01:16:02', '2025-12-17 19:47:48', '54k7DM54', '3337137'), - (539, 518, 'not_attending', '2020-12-18 01:15:58', '2025-12-17 19:47:48', '54k7DM54', '3337138'), - (539, 519, 'not_attending', '2020-12-18 01:15:31', '2025-12-17 19:47:55', '54k7DM54', '3337448'), - (539, 520, 'not_attending', '2020-12-18 01:15:30', '2025-12-17 19:47:55', '54k7DM54', '3337453'), - (539, 521, 'not_attending', '2020-12-18 01:15:55', '2025-12-17 19:47:48', '54k7DM54', '3337454'), - (539, 522, 'not_attending', '2020-12-18 01:15:23', '2025-12-17 19:47:55', '54k7DM54', '3342836'), - (539, 523, 'not_attending', '2020-12-18 01:15:38', '2025-12-17 19:47:48', '54k7DM54', '3342960'), - (539, 524, 'not_attending', '2020-12-20 01:13:53', '2025-12-17 19:47:55', '54k7DM54', '3350120'), - (539, 526, 'attending', '2021-01-03 00:17:04', '2025-12-17 19:47:48', '54k7DM54', '3351539'), - (539, 528, 'attending', '2021-01-03 22:03:01', '2025-12-17 19:47:48', '54k7DM54', '3363022'), - (539, 531, 'not_attending', '2021-01-02 05:36:53', '2025-12-17 19:47:48', '54k7DM54', '3378210'), - (539, 536, 'attending', '2021-01-10 00:05:03', '2025-12-17 19:47:48', '54k7DM54', '3386848'), - (539, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '54k7DM54', '3389527'), - (539, 543, 'not_attending', '2021-01-12 04:32:09', '2025-12-17 19:47:48', '54k7DM54', '3396499'), - (539, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '54k7DM54', '3403650'), - (539, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '54k7DM54', '3406988'), - (539, 553, 'not_attending', '2021-01-13 04:39:04', '2025-12-17 19:47:48', '54k7DM54', '3407248'), - (539, 555, 'attending', '2021-01-24 01:10:06', '2025-12-17 19:47:49', '54k7DM54', '3416576'), - (539, 558, 'not_attending', '2021-01-19 18:29:34', '2025-12-17 19:47:49', '54k7DM54', '3418925'), - (539, 567, 'attending', '2021-01-24 05:31:31', '2025-12-17 19:47:50', '54k7DM54', '3428895'), - (539, 568, 'attending', '2021-01-31 00:28:59', '2025-12-17 19:47:50', '54k7DM54', '3430267'), - (539, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', '54k7DM54', '3432673'), - (539, 600, 'not_attending', '2021-02-06 03:31:55', '2025-12-17 19:47:50', '54k7DM54', '3468125'), - (539, 602, 'attending', '2021-02-14 00:07:44', '2025-12-17 19:47:50', '54k7DM54', '3470303'), - (539, 603, 'attending', '2021-02-20 23:57:54', '2025-12-17 19:47:50', '54k7DM54', '3470304'), - (539, 604, 'attending', '2021-02-28 00:39:19', '2025-12-17 19:47:50', '54k7DM54', '3470305'), - (539, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '54k7DM54', '3470991'), - (539, 621, 'attending', '2021-03-07 01:04:21', '2025-12-17 19:47:51', '54k7DM54', '3517815'), - (539, 622, 'attending', '2021-03-14 00:29:33', '2025-12-17 19:47:51', '54k7DM54', '3517816'), - (539, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '54k7DM54', '3523941'), - (539, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54k7DM54', '3533850'), - (539, 633, 'not_attending', '2021-03-24 00:04:32', '2025-12-17 19:47:44', '54k7DM54', '3534717'), - (539, 634, 'not_attending', '2021-03-24 00:04:48', '2025-12-17 19:47:44', '54k7DM54', '3534718'), - (539, 638, 'not_attending', '2021-03-02 07:29:30', '2025-12-17 19:47:44', '54k7DM54', '3536632'), - (539, 639, 'not_attending', '2021-03-02 07:29:33', '2025-12-17 19:47:51', '54k7DM54', '3536656'), - (539, 641, 'attending', '2021-04-03 22:45:24', '2025-12-17 19:47:44', '54k7DM54', '3539916'), - (539, 642, 'attending', '2021-04-10 22:58:53', '2025-12-17 19:47:44', '54k7DM54', '3539917'), - (539, 643, 'attending', '2021-04-17 22:03:20', '2025-12-17 19:47:45', '54k7DM54', '3539918'), - (539, 644, 'attending', '2021-04-24 22:41:59', '2025-12-17 19:47:45', '54k7DM54', '3539919'), - (539, 645, 'attending', '2021-05-08 22:41:05', '2025-12-17 19:47:46', '54k7DM54', '3539920'), - (539, 646, 'not_attending', '2021-05-15 04:48:20', '2025-12-17 19:47:46', '54k7DM54', '3539921'), - (539, 647, 'attending', '2021-05-22 22:02:01', '2025-12-17 19:47:46', '54k7DM54', '3539922'), - (539, 648, 'attending', '2021-05-29 21:22:11', '2025-12-17 19:47:47', '54k7DM54', '3539923'), - (539, 649, 'attending', '2021-03-20 22:50:22', '2025-12-17 19:47:51', '54k7DM54', '3539927'), - (539, 650, 'not_attending', '2021-03-24 00:04:33', '2025-12-17 19:47:44', '54k7DM54', '3539928'), - (539, 661, 'not_attending', '2021-03-24 00:04:50', '2025-12-17 19:47:44', '54k7DM54', '3547137'), - (539, 676, 'not_attending', '2021-07-22 18:36:09', '2025-12-17 19:47:40', '54k7DM54', '3547154'), - (539, 689, 'not_attending', '2021-03-24 00:04:29', '2025-12-17 19:47:44', '54k7DM54', '3555564'), - (539, 690, 'not_attending', '2021-03-24 00:04:26', '2025-12-17 19:47:44', '54k7DM54', '3559954'), - (539, 697, 'not_attending', '2021-03-24 00:04:40', '2025-12-17 19:47:44', '54k7DM54', '3567537'), - (539, 698, 'not_attending', '2021-03-24 00:04:28', '2025-12-17 19:47:44', '54k7DM54', '3571867'), - (539, 699, 'not_attending', '2021-03-24 00:04:42', '2025-12-17 19:47:44', '54k7DM54', '3572241'), - (539, 700, 'not_attending', '2021-03-24 00:04:43', '2025-12-17 19:47:44', '54k7DM54', '3575725'), - (539, 704, 'not_attending', '2021-03-24 00:04:44', '2025-12-17 19:47:44', '54k7DM54', '3581429'), - (539, 705, 'maybe', '2021-03-24 00:04:38', '2025-12-17 19:47:44', '54k7DM54', '3581895'), - (539, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54k7DM54', '3582734'), - (539, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '54k7DM54', '3583262'), - (539, 708, 'not_attending', '2021-03-24 00:04:30', '2025-12-17 19:47:44', '54k7DM54', '3587850'), - (539, 709, 'not_attending', '2021-03-24 00:05:21', '2025-12-17 19:47:44', '54k7DM54', '3587852'), - (539, 711, 'not_attending', '2021-03-24 00:04:46', '2025-12-17 19:47:44', '54k7DM54', '3588075'), - (539, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '54k7DM54', '3619523'), - (539, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '54k7DM54', '3661369'), - (539, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54k7DM54', '3674262'), - (539, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54k7DM54', '3677402'), - (539, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54k7DM54', '3730212'), - (539, 777, 'not_attending', '2021-05-01 21:10:51', '2025-12-17 19:47:46', '54k7DM54', '3746248'), - (539, 790, 'attending', '2021-05-06 22:51:20', '2025-12-17 19:47:46', '54k7DM54', '3789923'), - (539, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '54k7DM54', '3793156'), - (539, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '54k7DM54', '3974109'), - (539, 827, 'not_attending', '2021-06-05 19:51:55', '2025-12-17 19:47:47', '54k7DM54', '3975311'), - (539, 828, 'attending', '2021-06-12 22:47:43', '2025-12-17 19:47:47', '54k7DM54', '3975312'), - (539, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54k7DM54', '3994992'), - (539, 844, 'not_attending', '2021-06-10 14:04:45', '2025-12-17 19:47:38', '54k7DM54', '4014338'), - (539, 863, 'not_attending', '2021-10-13 02:58:14', '2025-12-17 19:47:35', '54k7DM54', '4015997'), - (539, 864, 'not_attending', '2021-10-13 02:58:55', '2025-12-17 19:47:37', '54k7DM54', '4015998'), - (539, 867, 'attending', '2021-06-26 22:20:46', '2025-12-17 19:47:38', '54k7DM54', '4021848'), - (539, 869, 'not_attending', '2021-06-16 04:02:27', '2025-12-17 19:47:38', '54k7DM54', '4136744'), - (539, 870, 'not_attending', '2021-07-03 04:16:14', '2025-12-17 19:47:39', '54k7DM54', '4136937'), - (539, 871, 'attending', '2021-07-10 22:36:33', '2025-12-17 19:47:39', '54k7DM54', '4136938'), - (539, 872, 'not_attending', '2021-06-23 23:21:24', '2025-12-17 19:47:40', '54k7DM54', '4136947'), - (539, 880, 'attending', '2021-06-18 07:07:00', '2025-12-17 19:47:48', '54k7DM54', '4205383'), - (539, 884, 'maybe', '2021-07-17 08:01:31', '2025-12-17 19:47:42', '54k7DM54', '4210314'), - (539, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54k7DM54', '4225444'), - (539, 899, 'not_attending', '2021-07-03 04:16:36', '2025-12-17 19:47:39', '54k7DM54', '4239259'), - (539, 900, 'attending', '2021-07-24 20:48:04', '2025-12-17 19:47:40', '54k7DM54', '4240316'), - (539, 901, 'attending', '2021-07-31 22:22:26', '2025-12-17 19:47:40', '54k7DM54', '4240317'), - (539, 902, 'attending', '2021-08-07 22:17:24', '2025-12-17 19:47:41', '54k7DM54', '4240318'), - (539, 903, 'attending', '2021-08-14 22:28:01', '2025-12-17 19:47:42', '54k7DM54', '4240320'), - (539, 905, 'not_attending', '2021-07-07 23:32:48', '2025-12-17 19:47:39', '54k7DM54', '4250163'), - (539, 916, 'not_attending', '2021-07-22 18:36:02', '2025-12-17 19:47:40', '54k7DM54', '4273772'), - (539, 919, 'not_attending', '2021-07-17 22:06:34', '2025-12-17 19:47:39', '54k7DM54', '4275957'), - (539, 920, 'not_attending', '2021-07-25 21:43:32', '2025-12-17 19:47:40', '54k7DM54', '4277819'), - (539, 922, 'not_attending', '2021-07-22 18:36:06', '2025-12-17 19:47:40', '54k7DM54', '4280811'), - (539, 923, 'not_attending', '2021-07-22 18:36:05', '2025-12-17 19:47:40', '54k7DM54', '4292773'), - (539, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54k7DM54', '4301723'), - (539, 934, 'not_attending', '2021-08-03 06:09:15', '2025-12-17 19:47:41', '54k7DM54', '4302093'), - (539, 935, 'not_attending', '2021-08-13 04:06:31', '2025-12-17 19:47:41', '54k7DM54', '4304151'), - (539, 936, 'not_attending', '2021-07-25 21:43:39', '2025-12-17 19:47:40', '54k7DM54', '4305951'), - (539, 961, 'not_attending', '2021-08-08 16:27:05', '2025-12-17 19:47:42', '54k7DM54', '4345519'), - (539, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54k7DM54', '4356801'), - (539, 972, 'not_attending', '2021-08-13 23:31:17', '2025-12-17 19:47:42', '54k7DM54', '4358025'), - (539, 973, 'maybe', '2021-08-18 12:14:29', '2025-12-17 19:47:42', '54k7DM54', '4366186'), - (539, 974, 'not_attending', '2021-08-18 12:14:24', '2025-12-17 19:47:42', '54k7DM54', '4366187'), - (539, 988, 'not_attending', '2021-08-27 22:13:31', '2025-12-17 19:47:42', '54k7DM54', '4402823'), - (539, 990, 'attending', '2021-09-04 21:56:07', '2025-12-17 19:47:43', '54k7DM54', '4420735'), - (539, 991, 'attending', '2021-09-11 22:50:40', '2025-12-17 19:47:43', '54k7DM54', '4420738'), - (539, 992, 'attending', '2021-09-18 22:31:36', '2025-12-17 19:47:33', '54k7DM54', '4420739'), - (539, 993, 'attending', '2021-09-25 22:04:56', '2025-12-17 19:47:34', '54k7DM54', '4420741'), - (539, 994, 'not_attending', '2021-10-02 02:00:11', '2025-12-17 19:47:34', '54k7DM54', '4420742'), - (539, 995, 'attending', '2021-10-09 21:59:04', '2025-12-17 19:47:34', '54k7DM54', '4420744'), - (539, 996, 'attending', '2021-10-16 22:16:05', '2025-12-17 19:47:35', '54k7DM54', '4420747'), - (539, 997, 'not_attending', '2021-10-22 02:19:18', '2025-12-17 19:47:35', '54k7DM54', '4420748'), - (539, 998, 'attending', '2021-10-30 21:41:34', '2025-12-17 19:47:36', '54k7DM54', '4420749'), - (539, 1008, 'not_attending', '2021-10-13 02:58:25', '2025-12-17 19:47:35', '54k7DM54', '4438810'), - (539, 1010, 'not_attending', '2021-10-13 02:58:45', '2025-12-17 19:47:36', '54k7DM54', '4438812'), - (539, 1011, 'not_attending', '2021-10-13 02:58:39', '2025-12-17 19:47:36', '54k7DM54', '4438814'), - (539, 1012, 'not_attending', '2021-10-13 02:58:49', '2025-12-17 19:47:36', '54k7DM54', '4438816'), - (539, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '54k7DM54', '4461883'), - (539, 1044, 'not_attending', '2021-10-28 21:42:38', '2025-12-17 19:47:36', '54k7DM54', '4496609'), - (539, 1045, 'not_attending', '2021-10-28 21:42:16', '2025-12-17 19:47:36', '54k7DM54', '4496610'), - (539, 1046, 'not_attending', '2021-10-16 22:16:13', '2025-12-17 19:47:35', '54k7DM54', '4496611'), - (539, 1048, 'not_attending', '2021-10-28 21:42:42', '2025-12-17 19:47:36', '54k7DM54', '4496613'), - (539, 1067, 'not_attending', '2021-09-24 15:46:57', '2025-12-17 19:47:34', '54k7DM54', '4508342'), - (539, 1077, 'not_attending', '2021-10-13 02:58:03', '2025-12-17 19:47:34', '54k7DM54', '4540903'), - (539, 1079, 'not_attending', '2021-10-13 02:58:26', '2025-12-17 19:47:35', '54k7DM54', '4563823'), - (539, 1081, 'not_attending', '2021-10-13 02:57:59', '2025-12-17 19:47:34', '54k7DM54', '4564602'), - (539, 1082, 'not_attending', '2021-10-13 02:58:09', '2025-12-17 19:47:35', '54k7DM54', '4566762'), - (539, 1083, 'not_attending', '2021-10-13 02:58:05', '2025-12-17 19:47:34', '54k7DM54', '4566768'), - (539, 1084, 'not_attending', '2021-10-13 02:58:16', '2025-12-17 19:47:35', '54k7DM54', '4566769'), - (539, 1086, 'not_attending', '2021-10-13 02:57:44', '2025-12-17 19:47:35', '54k7DM54', '4568602'), - (539, 1087, 'not_attending', '2021-10-16 22:16:11', '2025-12-17 19:47:35', '54k7DM54', '4572153'), - (539, 1093, 'not_attending', '2021-10-23 20:57:27', '2025-12-17 19:47:35', '54k7DM54', '4585962'), - (539, 1094, 'not_attending', '2021-10-28 21:42:22', '2025-12-17 19:47:36', '54k7DM54', '4587337'), - (539, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '54k7DM54', '4596356'), - (539, 1096, 'not_attending', '2021-10-28 21:42:12', '2025-12-17 19:47:36', '54k7DM54', '4596453'), - (539, 1097, 'not_attending', '2021-10-28 21:42:25', '2025-12-17 19:47:36', '54k7DM54', '4598860'), - (539, 1098, 'not_attending', '2021-10-28 21:42:40', '2025-12-17 19:47:36', '54k7DM54', '4598861'), - (539, 1099, 'not_attending', '2021-11-06 21:08:59', '2025-12-17 19:47:36', '54k7DM54', '4602797'), - (539, 1103, 'not_attending', '2021-11-13 23:17:29', '2025-12-17 19:47:36', '54k7DM54', '4616350'), - (539, 1104, 'not_attending', '2021-11-13 23:17:34', '2025-12-17 19:47:36', '54k7DM54', '4618310'), - (539, 1107, 'not_attending', '2021-11-13 23:17:43', '2025-12-17 19:47:37', '54k7DM54', '4620697'), - (539, 1108, 'not_attending', '2021-11-13 23:17:52', '2025-12-17 19:47:37', '54k7DM54', '4632276'), - (539, 1114, 'not_attending', '2021-11-13 23:17:07', '2025-12-17 19:47:36', '54k7DM54', '4637896'), - (539, 1115, 'not_attending', '2021-11-13 23:17:47', '2025-12-17 19:47:37', '54k7DM54', '4638673'), - (539, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '54k7DM54', '4642994'), - (539, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '54k7DM54', '4642995'), - (539, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '54k7DM54', '4642996'), - (539, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '54k7DM54', '4642997'), - (539, 1126, 'not_attending', '2021-12-11 23:56:25', '2025-12-17 19:47:38', '54k7DM54', '4645687'), - (539, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '54k7DM54', '4645698'), - (539, 1128, 'attending', '2021-11-20 23:01:22', '2025-12-17 19:47:37', '54k7DM54', '4645704'), - (539, 1129, 'attending', '2021-11-28 00:01:30', '2025-12-17 19:47:37', '54k7DM54', '4645705'), - (539, 1130, 'not_attending', '2021-12-05 00:02:33', '2025-12-17 19:47:37', '54k7DM54', '4658824'), - (539, 1131, 'not_attending', '2021-12-18 22:55:11', '2025-12-17 19:47:31', '54k7DM54', '4658825'), - (539, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '54k7DM54', '4668385'), - (539, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '54k7DM54', '4694407'), - (539, 1173, 'not_attending', '2022-01-09 00:40:29', '2025-12-17 19:47:31', '54k7DM54', '4736495'), - (539, 1174, 'attending', '2022-01-13 00:40:46', '2025-12-17 19:47:31', '54k7DM54', '4736496'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (539, 1175, 'attending', '2022-01-22 23:22:17', '2025-12-17 19:47:32', '54k7DM54', '4736497'), - (539, 1176, 'attending', '2022-02-06 00:04:12', '2025-12-17 19:47:32', '54k7DM54', '4736498'), - (539, 1177, 'attending', '2022-02-12 23:06:16', '2025-12-17 19:47:32', '54k7DM54', '4736499'), - (539, 1178, 'attending', '2022-01-29 22:29:30', '2025-12-17 19:47:32', '54k7DM54', '4736500'), - (539, 1179, 'attending', '2022-02-20 00:01:38', '2025-12-17 19:47:32', '54k7DM54', '4736501'), - (539, 1180, 'not_attending', '2022-02-27 00:06:18', '2025-12-17 19:47:33', '54k7DM54', '4736502'), - (539, 1181, 'attending', '2022-03-05 22:00:18', '2025-12-17 19:47:33', '54k7DM54', '4736503'), - (539, 1182, 'attending', '2022-03-12 23:50:44', '2025-12-17 19:47:33', '54k7DM54', '4736504'), - (539, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '54k7DM54', '4746789'), - (539, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '54k7DM54', '4753929'), - (539, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '54k7DM54', '5038850'), - (539, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '54k7DM54', '5045826'), - (539, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '54k7DM54', '5132533'), - (539, 1272, 'attending', '2022-03-19 22:19:55', '2025-12-17 19:47:25', '54k7DM54', '5186582'), - (539, 1273, 'attending', '2022-03-26 21:52:47', '2025-12-17 19:47:25', '54k7DM54', '5186583'), - (539, 1274, 'attending', '2022-04-02 22:06:14', '2025-12-17 19:47:26', '54k7DM54', '5186585'), - (539, 1281, 'not_attending', '2022-04-09 20:31:04', '2025-12-17 19:47:27', '54k7DM54', '5190437'), - (539, 1284, 'not_attending', '2022-04-09 20:31:10', '2025-12-17 19:47:27', '54k7DM54', '5195095'), - (539, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '54k7DM54', '5215989'), - (539, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '54k7DM54', '5223686'), - (539, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '54k7DM54', '5227432'), - (539, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', '54k7DM54', '5231461'), - (539, 1346, 'not_attending', '2022-04-23 19:30:16', '2025-12-17 19:47:27', '54k7DM54', '5247467'), - (539, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '54k7DM54', '5260800'), - (539, 1374, 'attending', '2022-05-01 17:24:10', '2025-12-17 19:47:28', '54k7DM54', '5269930'), - (539, 1378, 'attending', '2022-05-14 03:53:22', '2025-12-17 19:47:29', '54k7DM54', '5271448'), - (539, 1379, 'attending', '2022-05-21 20:55:03', '2025-12-17 19:47:29', '54k7DM54', '5271449'), - (539, 1380, 'maybe', '2022-05-28 06:43:23', '2025-12-17 19:47:30', '54k7DM54', '5271450'), - (539, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '54k7DM54', '5276469'), - (539, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '54k7DM54', '5278159'), - (539, 1407, 'attending', '2022-06-04 08:10:53', '2025-12-17 19:47:30', '54k7DM54', '5363695'), - (539, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '54k7DM54', '5365960'), - (539, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '54k7DM54', '5368973'), - (539, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '54k7DM54', '5378247'), - (539, 1431, 'attending', '2022-06-11 21:35:03', '2025-12-17 19:47:30', '54k7DM54', '5389605'), - (539, 1442, 'attending', '2022-06-18 21:46:57', '2025-12-17 19:47:17', '54k7DM54', '5397265'), - (539, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '54k7DM54', '5403967'), - (539, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '54k7DM54', '5404786'), - (539, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '54k7DM54', '5405203'), - (539, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '54k7DM54', '5408794'), - (539, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '54k7DM54', '5411699'), - (539, 1482, 'attending', '2022-06-25 17:14:47', '2025-12-17 19:47:19', '54k7DM54', '5412550'), - (539, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '54k7DM54', '5415046'), - (539, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '54k7DM54', '5422086'), - (539, 1498, 'not_attending', '2022-07-02 20:28:58', '2025-12-17 19:47:19', '54k7DM54', '5422406'), - (539, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '54k7DM54', '5424565'), - (539, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '54k7DM54', '5426882'), - (539, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '54k7DM54', '5427083'), - (539, 1511, 'attending', '2022-07-09 21:59:17', '2025-12-17 19:47:19', '54k7DM54', '5437733'), - (539, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '54k7DM54', '5441125'), - (539, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '54k7DM54', '5441126'), - (539, 1515, 'attending', '2022-08-06 22:00:08', '2025-12-17 19:47:21', '54k7DM54', '5441128'), - (539, 1516, 'attending', '2022-08-20 22:42:30', '2025-12-17 19:47:23', '54k7DM54', '5441129'), - (539, 1517, 'attending', '2022-08-27 03:23:27', '2025-12-17 19:47:23', '54k7DM54', '5441130'), - (539, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '54k7DM54', '5441131'), - (539, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '54k7DM54', '5441132'), - (539, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '54k7DM54', '5446643'), - (539, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '54k7DM54', '5453325'), - (539, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '54k7DM54', '5454516'), - (539, 1544, 'not_attending', '2022-09-15 14:14:08', '2025-12-17 19:47:11', '54k7DM54', '5454517'), - (539, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '54k7DM54', '5454605'), - (539, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '54k7DM54', '5455037'), - (539, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '54k7DM54', '5461278'), - (539, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '54k7DM54', '5469480'), - (539, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '54k7DM54', '5471073'), - (539, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '54k7DM54', '5474663'), - (539, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '54k7DM54', '5482022'), - (539, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '54k7DM54', '5482793'), - (539, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '54k7DM54', '5488912'), - (539, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '54k7DM54', '5492192'), - (539, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '54k7DM54', '5493139'), - (539, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '54k7DM54', '5493200'), - (539, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '54k7DM54', '5502188'), - (539, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '54k7DM54', '5505059'), - (539, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '54k7DM54', '5509055'), - (539, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '54k7DM54', '5512862'), - (539, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '54k7DM54', '5513985'), - (539, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '54k7DM54', '5519981'), - (539, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '54k7DM54', '5522550'), - (539, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '54k7DM54', '5534683'), - (539, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '54k7DM54', '5537735'), - (539, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '54k7DM54', '5540859'), - (539, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '54k7DM54', '5546619'), - (539, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '54k7DM54', '5555245'), - (539, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '54k7DM54', '5557747'), - (539, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '54k7DM54', '5560255'), - (539, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '54k7DM54', '5562906'), - (539, 1667, 'attending', '2022-09-24 18:45:47', '2025-12-17 19:47:11', '54k7DM54', '5563221'), - (539, 1668, 'not_attending', '2022-10-01 22:11:18', '2025-12-17 19:47:12', '54k7DM54', '5563222'), - (539, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '54k7DM54', '5600604'), - (539, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '54k7DM54', '5605544'), - (539, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '54k7DM54', '5606737'), - (539, 1719, 'not_attending', '2022-10-07 15:01:19', '2025-12-17 19:47:12', '54k7DM54', '5630958'), - (539, 1720, 'attending', '2022-10-15 17:44:31', '2025-12-17 19:47:12', '54k7DM54', '5630959'), - (539, 1721, 'attending', '2022-10-22 02:37:28', '2025-12-17 19:47:13', '54k7DM54', '5630960'), - (539, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '54k7DM54', '5630961'), - (539, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '54k7DM54', '5630962'), - (539, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '54k7DM54', '5630966'), - (539, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '54k7DM54', '5630967'), - (539, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '54k7DM54', '5630968'), - (539, 1727, 'attending', '2022-12-03 08:16:11', '2025-12-17 19:47:16', '54k7DM54', '5630969'), - (539, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '54k7DM54', '5635406'), - (539, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '54k7DM54', '5638765'), - (539, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '54k7DM54', '5640097'), - (539, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '54k7DM54', '5640843'), - (539, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '54k7DM54', '5641521'), - (539, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '54k7DM54', '5642818'), - (539, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '54k7DM54', '5652395'), - (539, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '54k7DM54', '5670445'), - (539, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '54k7DM54', '5671637'), - (539, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '54k7DM54', '5672329'), - (539, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '54k7DM54', '5674057'), - (539, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '54k7DM54', '5674060'), - (539, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '54k7DM54', '5677461'), - (539, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '54k7DM54', '5698046'), - (539, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '54k7DM54', '5699760'), - (539, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '54k7DM54', '5741601'), - (539, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '54k7DM54', '5763458'), - (539, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '54k7DM54', '5774172'), - (539, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '54k7DM54', '5818247'), - (539, 1834, 'not_attending', '2022-12-10 22:51:11', '2025-12-17 19:47:17', '54k7DM54', '5819470'), - (539, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '54k7DM54', '5819471'), - (539, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '54k7DM54', '5827739'), - (539, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '54k7DM54', '5844306'), - (539, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '54k7DM54', '5850159'), - (539, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '54k7DM54', '5858999'), - (539, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '54k7DM54', '5871984'), - (539, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '54k7DM54', '5876354'), - (539, 1864, 'attending', '2023-01-18 19:00:34', '2025-12-17 19:47:05', '54k7DM54', '5879675'), - (539, 1865, 'attending', '2023-01-27 04:38:39', '2025-12-17 19:47:06', '54k7DM54', '5879676'), - (539, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '54k7DM54', '5880939'), - (539, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '54k7DM54', '5880940'), - (539, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '54k7DM54', '5880942'), - (539, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '54k7DM54', '5880943'), - (539, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '54k7DM54', '5887890'), - (539, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '54k7DM54', '5888598'), - (539, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '54k7DM54', '5893260'), - (539, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '54k7DM54', '5899826'), - (539, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '54k7DM54', '5900199'), - (539, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '54k7DM54', '5900200'), - (539, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '54k7DM54', '5900202'), - (539, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '54k7DM54', '5900203'), - (539, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '54k7DM54', '5901108'), - (539, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '54k7DM54', '5901126'), - (539, 1897, 'attending', '2023-02-11 16:28:37', '2025-12-17 19:47:07', '54k7DM54', '5901128'), - (539, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '54k7DM54', '5909655'), - (539, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '54k7DM54', '5910522'), - (539, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '54k7DM54', '5910526'), - (539, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '54k7DM54', '5910528'), - (539, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '54k7DM54', '5916219'), - (539, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '54k7DM54', '5936234'), - (539, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '54k7DM54', '5958351'), - (539, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '54k7DM54', '5959751'), - (539, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '54k7DM54', '5959755'), - (539, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '54k7DM54', '5960055'), - (539, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '54k7DM54', '5961684'), - (539, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '54k7DM54', '5962132'), - (539, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '54k7DM54', '5962133'), - (539, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '54k7DM54', '5962134'), - (539, 1947, 'not_attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', '54k7DM54', '5962233'), - (539, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '54k7DM54', '5962317'), - (539, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '54k7DM54', '5962318'), - (539, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '54k7DM54', '5965933'), - (539, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '54k7DM54', '5967014'), - (539, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '54k7DM54', '5972763'), - (539, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '54k7DM54', '5972815'), - (539, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '54k7DM54', '5974016'), - (539, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '54k7DM54', '5981515'), - (539, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '54k7DM54', '5993516'), - (539, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '54k7DM54', '5998939'), - (539, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '54k7DM54', '6028191'), - (539, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '54k7DM54', '6040066'), - (539, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '54k7DM54', '6042717'), - (539, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '54k7DM54', '6044838'), - (539, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '54k7DM54', '6044839'), - (539, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54k7DM54', '6045684'), - (539, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '54k7DM54', '6050104'), - (539, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '54k7DM54', '6053195'), - (539, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '54k7DM54', '6053198'), - (539, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '54k7DM54', '6056085'), - (539, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '54k7DM54', '6056916'), - (539, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '54k7DM54', '6059290'), - (539, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '54k7DM54', '6060328'), - (539, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '54k7DM54', '6061037'), - (539, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '54k7DM54', '6061039'), - (539, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '54k7DM54', '6067245'), - (539, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '54k7DM54', '6068094'), - (539, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '54k7DM54', '6068252'), - (539, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '54k7DM54', '6068253'), - (539, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '54k7DM54', '6068254'), - (539, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '54k7DM54', '6068280'), - (539, 2032, 'attending', '2023-06-03 03:12:37', '2025-12-17 19:47:04', '54k7DM54', '6068281'), - (539, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '54k7DM54', '6069093'), - (539, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '54k7DM54', '6072528'), - (539, 2048, 'attending', '2023-05-10 01:45:40', '2025-12-17 19:47:03', '54k7DM54', '6076415'), - (539, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '54k7DM54', '6079840'), - (539, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '54k7DM54', '6083398'), - (539, 2052, 'maybe', '2023-05-04 19:59:54', '2025-12-17 19:47:02', '54k7DM54', '6088220'), - (539, 2053, 'attending', '2023-05-09 01:53:07', '2025-12-17 19:47:02', '54k7DM54', '6092644'), - (539, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '54k7DM54', '6093504'), - (539, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '54k7DM54', '6097414'), - (539, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '54k7DM54', '6097442'), - (539, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '54k7DM54', '6097684'), - (539, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '54k7DM54', '6098762'), - (539, 2064, 'not_attending', '2023-06-25 01:49:06', '2025-12-17 19:46:50', '54k7DM54', '6099988'), - (539, 2065, 'attending', '2023-06-17 05:05:08', '2025-12-17 19:46:49', '54k7DM54', '6101169'), - (539, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '54k7DM54', '6101361'), - (539, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '54k7DM54', '6101362'), - (539, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '54k7DM54', '6103752'), - (539, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '54k7DM54', '6107314'), - (539, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', '54k7DM54', '6119877'), - (539, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '54k7DM54', '6120034'), - (539, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '54k7DM54', '6136733'), - (539, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '54k7DM54', '6137989'), - (539, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '54k7DM54', '6150864'), - (539, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '54k7DM54', '6155491'), - (539, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '54k7DM54', '6164417'), - (539, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '54k7DM54', '6166388'), - (539, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '54k7DM54', '6176439'), - (539, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '54k7DM54', '6182410'), - (539, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '54k7DM54', '6185812'), - (539, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '54k7DM54', '6187651'), - (539, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '54k7DM54', '6187963'), - (539, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '54k7DM54', '6187964'), - (539, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '54k7DM54', '6187966'), - (539, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '54k7DM54', '6187967'), - (539, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '54k7DM54', '6187969'), - (539, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '54k7DM54', '6334878'), - (539, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '54k7DM54', '6337236'), - (539, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '54k7DM54', '6337970'), - (539, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '54k7DM54', '6338308'), - (539, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '54k7DM54', '6340845'), - (539, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '54k7DM54', '6341710'), - (539, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '54k7DM54', '6342044'), - (539, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '54k7DM54', '6342298'), - (539, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '54k7DM54', '6343294'), - (539, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '54k7DM54', '6347034'), - (539, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '54k7DM54', '6347056'), - (539, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '54k7DM54', '6353830'), - (539, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '54k7DM54', '6353831'), - (539, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '54k7DM54', '6357867'), - (539, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '54k7DM54', '6358652'), - (539, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '54k7DM54', '6361709'), - (539, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '54k7DM54', '6361710'), - (539, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '54k7DM54', '6361711'), - (539, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '54k7DM54', '6361712'), - (539, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '54k7DM54', '6361713'), - (539, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '54k7DM54', '6382573'), - (539, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '54k7DM54', '6388604'), - (539, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '54k7DM54', '6394629'), - (539, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '54k7DM54', '6394631'), - (539, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '54k7DM54', '6440863'), - (539, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '54k7DM54', '6445440'), - (539, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '54k7DM54', '6453951'), - (539, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '54k7DM54', '6461696'), - (539, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '54k7DM54', '6462129'), - (539, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '54k7DM54', '6463218'), - (539, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '54k7DM54', '6472181'), - (539, 2303, 'attending', '2023-10-28 20:31:06', '2025-12-17 19:46:47', '54k7DM54', '6482691'), - (539, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '54k7DM54', '6482693'), - (539, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '54k7DM54', '6484200'), - (539, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '54k7DM54', '6484680'), - (539, 2310, 'not_attending', '2023-11-07 02:20:59', '2025-12-17 19:46:47', '54k7DM54', '6487709'), - (539, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '54k7DM54', '6507741'), - (539, 2322, 'attending', '2023-11-18 07:28:18', '2025-12-17 19:46:48', '54k7DM54', '6514659'), - (539, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '54k7DM54', '6514660'), - (539, 2324, 'attending', '2023-12-09 19:37:40', '2025-12-17 19:46:49', '54k7DM54', '6514662'), - (539, 2325, 'attending', '2023-12-16 20:49:34', '2025-12-17 19:46:36', '54k7DM54', '6514663'), - (539, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '54k7DM54', '6519103'), - (539, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '54k7DM54', '6535681'), - (539, 2338, 'not_attending', '2023-11-25 22:05:41', '2025-12-17 19:46:48', '54k7DM54', '6538868'), - (539, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '54k7DM54', '6584747'), - (539, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '54k7DM54', '6587097'), - (539, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '54k7DM54', '6609022'), - (539, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '54k7DM54', '6632757'), - (539, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '54k7DM54', '6644187'), - (539, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '54k7DM54', '6648951'), - (539, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '54k7DM54', '6648952'), - (539, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '54k7DM54', '6655401'), - (539, 2399, 'not_attending', '2024-01-14 00:19:33', '2025-12-17 19:46:38', '54k7DM54', '6657583'), - (539, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '54k7DM54', '6661585'), - (539, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '54k7DM54', '6661588'), - (539, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '54k7DM54', '6661589'), - (539, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '54k7DM54', '6699906'), - (539, 2408, 'not_attending', '2024-01-27 05:12:14', '2025-12-17 19:46:40', '54k7DM54', '6699907'), - (539, 2409, 'attending', '2024-02-03 19:31:25', '2025-12-17 19:46:41', '54k7DM54', '6699909'), - (539, 2410, 'attending', '2024-02-10 21:53:05', '2025-12-17 19:46:41', '54k7DM54', '6699911'), - (539, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '54k7DM54', '6699913'), - (539, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '54k7DM54', '6701109'), - (539, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '54k7DM54', '6705219'), - (539, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '54k7DM54', '6710153'), - (539, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '54k7DM54', '6711552'), - (539, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '54k7DM54', '6711553'), - (539, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '54k7DM54', '6722688'), - (539, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '54k7DM54', '6730620'), - (539, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '54k7DM54', '6730642'), - (539, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '54k7DM54', '6740364'), - (539, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '54k7DM54', '6743829'), - (539, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '54k7DM54', '7030380'), - (539, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '54k7DM54', '7033677'), - (539, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '54k7DM54', '7035415'), - (539, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '54k7DM54', '7044715'), - (539, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '54k7DM54', '7050318'), - (539, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '54k7DM54', '7050319'), - (539, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '54k7DM54', '7050322'), - (539, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '54k7DM54', '7057804'), - (539, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '54k7DM54', '7059866'), - (539, 2505, 'attending', '2024-03-21 19:50:38', '2025-12-17 19:46:33', '54k7DM54', '7069163'), - (539, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '54k7DM54', '7072824'), - (539, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '54k7DM54', '7074348'), - (539, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '54k7DM54', '7074364'), - (539, 2539, 'not_attending', '2024-04-05 21:29:43', '2025-12-17 19:46:33', '54k7DM54', '7085486'), - (539, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '54k7DM54', '7089267'), - (539, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '54k7DM54', '7098747'), - (539, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '54k7DM54', '7113468'), - (539, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '54k7DM54', '7114856'), - (539, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', '54k7DM54', '7114951'), - (539, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '54k7DM54', '7114955'), - (539, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '54k7DM54', '7114956'), - (539, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '54k7DM54', '7114957'), - (539, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '54k7DM54', '7153615'), - (539, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '54k7DM54', '7159484'), - (539, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '54k7DM54', '7178446'), - (539, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '54k7DM54', '7220467'), - (539, 2603, 'not_attending', '2024-05-15 23:43:13', '2025-12-17 19:46:35', '54k7DM54', '7225669'), - (539, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '54k7DM54', '7240354'), - (539, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '54k7DM54', '7251633'), - (539, 2623, 'maybe', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '54k7DM54', '7263048'), - (539, 2626, 'attending', '2024-05-18 20:40:12', '2025-12-17 19:46:35', '54k7DM54', '7264723'), - (539, 2627, 'attending', '2024-05-25 18:45:18', '2025-12-17 19:46:35', '54k7DM54', '7264724'), - (539, 2628, 'attending', '2024-06-01 20:34:04', '2025-12-17 19:46:36', '54k7DM54', '7264725'), - (539, 2629, 'attending', '2024-06-08 16:37:24', '2025-12-17 19:46:28', '54k7DM54', '7264726'), - (539, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '54k7DM54', '7302674'), - (539, 2676, 'attending', '2024-09-01 19:23:47', '2025-12-17 19:46:32', '54k7DM54', '7319482'), - (539, 2678, 'not_attending', '2024-06-15 15:15:09', '2025-12-17 19:46:28', '54k7DM54', '7319489'), - (539, 2679, 'not_attending', '2024-06-15 15:15:14', '2025-12-17 19:46:29', '54k7DM54', '7319490'), - (539, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', '54k7DM54', '7324019'), - (539, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '54k7DM54', '7324073'), - (539, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '54k7DM54', '7324074'), - (539, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '54k7DM54', '7324075'), - (539, 2691, 'attending', '2024-07-20 04:44:32', '2025-12-17 19:46:30', '54k7DM54', '7324076'), - (539, 2692, 'not_attending', '2024-07-27 22:42:59', '2025-12-17 19:46:30', '54k7DM54', '7324077'), - (539, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '54k7DM54', '7324078'), - (539, 2694, 'attending', '2024-08-10 11:36:06', '2025-12-17 19:46:31', '54k7DM54', '7324079'), - (539, 2695, 'attending', '2024-08-17 19:01:07', '2025-12-17 19:46:31', '54k7DM54', '7324080'), - (539, 2696, 'attending', '2024-08-24 20:31:48', '2025-12-17 19:46:32', '54k7DM54', '7324081'), - (539, 2697, 'not_attending', '2024-08-31 19:29:47', '2025-12-17 19:46:32', '54k7DM54', '7324082'), - (539, 2698, 'not_attending', '2024-09-07 00:35:10', '2025-12-17 19:46:24', '54k7DM54', '7324083'), - (539, 2705, 'maybe', '2024-06-29 11:47:27', '2025-12-17 19:46:29', '54k7DM54', '7324944'), - (539, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '54k7DM54', '7331457'), - (539, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '54k7DM54', '7356752'), - (539, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', '54k7DM54', '7363595'), - (539, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '54k7DM54', '7363643'), - (539, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '54k7DM54', '7368606'), - (539, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '54k7DM54', '7397462'), - (539, 2805, 'attending', '2024-08-20 22:36:11', '2025-12-17 19:46:32', '54k7DM54', '7403620'), - (539, 2808, 'attending', '2024-09-01 19:23:42', '2025-12-17 19:46:32', '54k7DM54', '7412860'), - (539, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '54k7DM54', '7424275'), - (539, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '54k7DM54', '7424276'), - (539, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '54k7DM54', '7432751'), - (539, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '54k7DM54', '7432752'), - (539, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '54k7DM54', '7432753'), - (539, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '54k7DM54', '7432754'), - (539, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '54k7DM54', '7432755'), - (539, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '54k7DM54', '7432756'), - (539, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '54k7DM54', '7432758'), - (539, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '54k7DM54', '7432759'), - (539, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '54k7DM54', '7433834'), - (539, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '54k7DM54', '7470197'), - (539, 2870, 'attending', '2024-10-05 19:41:32', '2025-12-17 19:46:26', '54k7DM54', '7475068'), - (539, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '54k7DM54', '7685613'), - (539, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '54k7DM54', '7688194'), - (539, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '54k7DM54', '7688196'), - (539, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '54k7DM54', '7688289'), - (539, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', '54k7DM54', '7692763'), - (539, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '54k7DM54', '7697552'), - (539, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '54k7DM54', '7699878'), - (539, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '54k7DM54', '7704043'), - (539, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '54k7DM54', '7712467'), - (539, 2925, 'not_attending', '2024-12-12 09:34:52', '2025-12-17 19:46:21', '54k7DM54', '7713584'), - (539, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '54k7DM54', '7713585'), - (539, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '54k7DM54', '7713586'), - (539, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', '54k7DM54', '7738518'), - (539, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '54k7DM54', '7750632'), - (539, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '54k7DM54', '7750636'), - (539, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '54k7DM54', '7796540'), - (539, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '54k7DM54', '7796541'), - (539, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '54k7DM54', '7796542'), - (539, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '54k7DM54', '7825913'), - (539, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', '54k7DM54', '7825920'), - (539, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '54k7DM54', '7826209'), - (539, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '54k7DM54', '7834742'), - (539, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '54k7DM54', '7842108'), - (539, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '54k7DM54', '7842902'), - (539, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '54k7DM54', '7842903'), - (539, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '54k7DM54', '7842904'), - (539, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '54k7DM54', '7842905'), - (539, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '54k7DM54', '7855719'), - (539, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '54k7DM54', '7860683'), - (539, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '54k7DM54', '7860684'), - (539, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '54k7DM54', '7866095'), - (539, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '54k7DM54', '7869170'), - (539, 3014, 'not_attending', '2025-04-05 03:47:56', '2025-12-17 19:46:20', '54k7DM54', '7869185'), - (539, 3015, 'not_attending', '2025-04-25 20:10:14', '2025-12-17 19:46:20', '54k7DM54', '7869186'), - (539, 3016, 'not_attending', '2025-04-16 19:28:55', '2025-12-17 19:46:20', '54k7DM54', '7869187'), - (539, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '54k7DM54', '7869188'), - (539, 3028, 'attending', '2025-04-25 20:10:20', '2025-12-17 19:46:20', '54k7DM54', '7869199'), - (539, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '54k7DM54', '7869201'), - (539, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '54k7DM54', '7877465'), - (539, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '54k7DM54', '7888250'), - (539, 3060, 'not_attending', '2025-03-27 14:16:18', '2025-12-17 19:46:19', '54k7DM54', '7892589'), - (539, 3088, 'not_attending', '2025-06-11 06:12:31', '2025-12-17 19:46:15', '54k7DM54', '7904777'), - (539, 3094, 'not_attending', '2025-05-03 05:08:15', '2025-12-17 19:46:21', '54k7DM54', '8342292'), - (539, 3095, 'not_attending', '2025-05-03 05:08:11', '2025-12-17 19:46:20', '54k7DM54', '8342293'), - (539, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '54k7DM54', '8349164'), - (539, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '54k7DM54', '8349545'), - (539, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '54k7DM54', '8353584'), - (539, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '54k7DM54', '8368028'), - (539, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '54k7DM54', '8368029'), - (539, 3133, 'attending', '2025-05-31 18:39:46', '2025-12-17 19:46:14', '54k7DM54', '8368030'), - (539, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '54k7DM54', '8388462'), - (539, 3150, 'not_attending', '2025-06-11 06:12:35', '2025-12-17 19:46:15', '54k7DM54', '8393174'), - (539, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '54k7DM54', '8400273'), - (539, 3154, 'not_attending', '2025-06-28 03:29:09', '2025-12-17 19:46:15', '54k7DM54', '8400274'), - (539, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '54k7DM54', '8400275'), - (539, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '54k7DM54', '8400276'), - (539, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '54k7DM54', '8404977'), - (539, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '54k7DM54', '8430783'), - (539, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '54k7DM54', '8430784'), - (539, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '54k7DM54', '8430799'), - (539, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '54k7DM54', '8430800'), - (539, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '54k7DM54', '8430801'), - (539, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '54k7DM54', '8438709'), - (539, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '54k7DM54', '8457738'), - (539, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '54k7DM54', '8459566'), - (539, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '54k7DM54', '8459567'), - (539, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '54k7DM54', '8461032'), - (539, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '54k7DM54', '8477877'), - (539, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '54k7DM54', '8485688'), - (539, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '54k7DM54', '8490587'), - (539, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '54k7DM54', '8493552'), - (539, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '54k7DM54', '8493553'), - (539, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '54k7DM54', '8493554'), - (539, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '54k7DM54', '8493555'), - (539, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '54k7DM54', '8493556'), - (539, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '54k7DM54', '8493557'), - (539, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '54k7DM54', '8493558'), - (539, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '54k7DM54', '8493559'), - (539, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '54k7DM54', '8493560'), - (539, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '54k7DM54', '8493561'), - (539, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '54k7DM54', '8493572'), - (539, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '54k7DM54', '8540725'), - (539, 3302, 'attending', '2025-11-13 20:22:12', '2025-12-17 19:46:14', '54k7DM54', '8550022'), - (539, 3304, 'attending', '2025-11-22 02:45:04', '2025-12-17 19:46:14', '54k7DM54', '8550024'), - (539, 3306, 'not_attending', '2025-12-13 23:49:01', '2025-12-17 19:46:11', '54k7DM54', '8550026'), - (539, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '54k7DM54', '8555421'), - (540, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'o4PyjPvd', '3149489'), - (540, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'o4PyjPvd', '3149491'), - (540, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'o4PyjPvd', '3236450'), - (540, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'o4PyjPvd', '3236452'), - (540, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'o4PyjPvd', '3539921'), - (540, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'o4PyjPvd', '3539922'), - (540, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'o4PyjPvd', '3539923'), - (540, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'o4PyjPvd', '3806392'), - (540, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'o4PyjPvd', '3963335'), - (540, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'o4PyjPvd', '3975311'), - (540, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'o4PyjPvd', '3975312'), - (540, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'o4PyjPvd', '3994992'), - (540, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'o4PyjPvd', '4014338'), - (540, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'o4PyjPvd', '4136744'), - (540, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PyjPvd', '6045684'), - (541, 1612, 'attending', '2022-10-02 11:58:25', '2025-12-17 19:47:12', '41w56QMm', '5507653'), - (541, 1653, 'attending', '2022-09-21 14:39:57', '2025-12-17 19:47:11', '41w56QMm', '5554400'), - (541, 1659, 'attending', '2022-09-23 22:56:11', '2025-12-17 19:47:11', '41w56QMm', '5557747'), - (541, 1668, 'attending', '2022-10-01 20:27:45', '2025-12-17 19:47:12', '41w56QMm', '5563222'), - (541, 1674, 'attending', '2022-10-02 11:57:28', '2025-12-17 19:47:12', '41w56QMm', '5593112'), - (541, 1676, 'attending', '2022-09-21 14:39:24', '2025-12-17 19:47:11', '41w56QMm', '5596181'), - (541, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41w56QMm', '5600604'), - (541, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41w56QMm', '5605544'), - (541, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', '41w56QMm', '5606737'), - (541, 1705, 'attending', '2022-10-02 11:59:01', '2025-12-17 19:47:12', '41w56QMm', '5612209'), - (541, 1710, 'maybe', '2022-10-02 19:57:24', '2025-12-17 19:47:12', '41w56QMm', '5621822'), - (541, 1719, 'not_attending', '2022-10-08 19:06:21', '2025-12-17 19:47:12', '41w56QMm', '5630958'), - (541, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41w56QMm', '5630960'), - (541, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41w56QMm', '5630961'), - (541, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41w56QMm', '5630962'), - (541, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41w56QMm', '5630966'), - (541, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41w56QMm', '5630967'), - (541, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41w56QMm', '5630968'), - (541, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41w56QMm', '5635406'), - (541, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41w56QMm', '5638765'), - (541, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41w56QMm', '5640097'), - (541, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '41w56QMm', '5640843'), - (541, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41w56QMm', '5641521'), - (541, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41w56QMm', '5642818'), - (541, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41w56QMm', '5652395'), - (541, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41w56QMm', '5670445'), - (541, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41w56QMm', '5671637'), - (541, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41w56QMm', '5672329'), - (541, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41w56QMm', '5674057'), - (541, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41w56QMm', '5674060'), - (541, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41w56QMm', '5677461'), - (541, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41w56QMm', '5698046'), - (541, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41w56QMm', '5699760'), - (541, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41w56QMm', '5741601'), - (541, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41w56QMm', '5763458'), - (541, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41w56QMm', '5774172'), - (541, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '41w56QMm', '5818247'), - (541, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41w56QMm', '5819471'), - (541, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41w56QMm', '5827739'), - (541, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41w56QMm', '5844306'), - (541, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41w56QMm', '5850159'), - (541, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41w56QMm', '5858999'), - (541, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41w56QMm', '5871984'), - (541, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41w56QMm', '5876354'), - (541, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41w56QMm', '5880939'), - (541, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41w56QMm', '5887890'), - (541, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41w56QMm', '5888598'), - (541, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41w56QMm', '5893260'), - (541, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41w56QMm', '6045684'), - (542, 1054, 'attending', '2022-03-19 22:34:47', '2025-12-17 19:47:25', 'dVbZqVld', '4496619'), - (542, 1177, 'attending', '2022-02-12 01:44:10', '2025-12-17 19:47:32', 'dVbZqVld', '4736499'), - (542, 1179, 'attending', '2022-02-13 06:43:20', '2025-12-17 19:47:32', 'dVbZqVld', '4736501'), - (542, 1180, 'not_attending', '2022-02-26 14:56:53', '2025-12-17 19:47:33', 'dVbZqVld', '4736502'), - (542, 1181, 'attending', '2022-03-02 21:12:12', '2025-12-17 19:47:33', 'dVbZqVld', '4736503'), - (542, 1182, 'not_attending', '2022-03-10 17:56:15', '2025-12-17 19:47:33', 'dVbZqVld', '4736504'), - (542, 1214, 'attending', '2022-02-17 22:14:55', '2025-12-17 19:47:32', 'dVbZqVld', '4780761'), - (542, 1222, 'not_attending', '2022-02-17 22:14:44', '2025-12-17 19:47:32', 'dVbZqVld', '5015628'), - (542, 1234, 'not_attending', '2022-02-16 00:48:34', '2025-12-17 19:47:32', 'dVbZqVld', '5042197'), - (542, 1236, 'not_attending', '2022-02-14 15:10:00', '2025-12-17 19:47:32', 'dVbZqVld', '5045826'), - (542, 1237, 'attending', '2022-02-19 00:16:13', '2025-12-17 19:47:32', 'dVbZqVld', '5050641'), - (542, 1243, 'attending', '2022-03-06 18:40:53', '2025-12-17 19:47:33', 'dVbZqVld', '5058336'), - (542, 1248, 'not_attending', '2022-02-25 00:45:18', '2025-12-17 19:47:33', 'dVbZqVld', '5065064'), - (542, 1250, 'not_attending', '2022-03-04 22:45:22', '2025-12-17 19:47:33', 'dVbZqVld', '5069735'), - (542, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVbZqVld', '5132533'), - (542, 1260, 'not_attending', '2022-03-01 22:32:25', '2025-12-17 19:47:33', 'dVbZqVld', '5142082'), - (542, 1262, 'not_attending', '2022-03-10 17:56:04', '2025-12-17 19:47:33', 'dVbZqVld', '5157773'), - (542, 1264, 'not_attending', '2022-03-22 22:55:17', '2025-12-17 19:47:25', 'dVbZqVld', '5160281'), - (542, 1270, 'attending', '2022-03-20 16:03:47', '2025-12-17 19:47:25', 'dVbZqVld', '5181277'), - (542, 1272, 'attending', '2022-03-19 18:11:25', '2025-12-17 19:47:25', 'dVbZqVld', '5186582'), - (542, 1273, 'attending', '2022-03-26 19:55:46', '2025-12-17 19:47:25', 'dVbZqVld', '5186583'), - (542, 1274, 'not_attending', '2022-03-29 10:32:52', '2025-12-17 19:47:26', 'dVbZqVld', '5186585'), - (542, 1276, 'attending', '2022-03-27 20:45:42', '2025-12-17 19:47:25', 'dVbZqVld', '5186820'), - (542, 1279, 'attending', '2022-03-20 16:03:43', '2025-12-17 19:47:25', 'dVbZqVld', '5187212'), - (542, 1281, 'not_attending', '2022-04-04 00:42:53', '2025-12-17 19:47:27', 'dVbZqVld', '5190437'), - (542, 1283, 'attending', '2022-03-19 18:56:26', '2025-12-17 19:47:25', 'dVbZqVld', '5193533'), - (542, 1284, 'not_attending', '2022-04-16 22:45:21', '2025-12-17 19:47:27', 'dVbZqVld', '5195095'), - (542, 1297, 'not_attending', '2022-04-01 21:45:22', '2025-12-17 19:47:26', 'dVbZqVld', '5215989'), - (542, 1301, 'maybe', '2022-03-31 14:58:10', '2025-12-17 19:47:26', 'dVbZqVld', '5218175'), - (542, 1302, 'not_attending', '2022-04-01 23:18:29', '2025-12-17 19:47:27', 'dVbZqVld', '5220867'), - (542, 1305, 'maybe', '2022-04-04 21:23:29', '2025-12-17 19:47:27', 'dVbZqVld', '5223673'), - (542, 1307, 'not_attending', '2022-04-04 21:22:47', '2025-12-17 19:47:26', 'dVbZqVld', '5223686'), - (542, 1309, 'not_attending', '2022-04-06 13:45:01', '2025-12-17 19:47:26', 'dVbZqVld', '5227432'), - (542, 1316, 'not_attending', '2022-04-14 22:24:00', '2025-12-17 19:47:27', 'dVbZqVld', '5237536'), - (542, 1319, 'not_attending', '2022-04-24 21:45:25', '2025-12-17 19:47:27', 'dVbZqVld', '5238353'), - (542, 1320, 'not_attending', '2022-04-24 21:45:32', '2025-12-17 19:47:27', 'dVbZqVld', '5238354'), - (542, 1322, 'not_attending', '2022-04-25 12:07:54', '2025-12-17 19:47:27', 'dVbZqVld', '5238356'), - (542, 1323, 'not_attending', '2022-04-25 12:07:59', '2025-12-17 19:47:27', 'dVbZqVld', '5238357'), - (542, 1325, 'not_attending', '2022-04-28 22:45:42', '2025-12-17 19:47:28', 'dVbZqVld', '5238361'), - (542, 1326, 'not_attending', '2022-04-28 22:45:46', '2025-12-17 19:47:28', 'dVbZqVld', '5238362'), - (542, 1330, 'not_attending', '2022-04-18 21:54:08', '2025-12-17 19:47:27', 'dVbZqVld', '5242155'), - (542, 1331, 'not_attending', '2022-04-21 23:45:19', '2025-12-17 19:47:27', 'dVbZqVld', '5242156'), - (542, 1332, 'not_attending', '2022-04-14 22:24:29', '2025-12-17 19:47:27', 'dVbZqVld', '5243274'), - (542, 1337, 'not_attending', '2022-04-20 21:35:35', '2025-12-17 19:47:27', 'dVbZqVld', '5245036'), - (542, 1340, 'not_attending', '2022-04-28 22:45:21', '2025-12-17 19:47:27', 'dVbZqVld', '5245754'), - (542, 1346, 'not_attending', '2022-04-22 19:35:34', '2025-12-17 19:47:27', 'dVbZqVld', '5247467'), - (542, 1362, 'not_attending', '2022-04-30 22:11:45', '2025-12-17 19:47:28', 'dVbZqVld', '5260800'), - (542, 1364, 'not_attending', '2022-05-03 14:39:00', '2025-12-17 19:47:28', 'dVbZqVld', '5261598'), - (542, 1368, 'not_attending', '2022-05-06 22:46:32', '2025-12-17 19:47:28', 'dVbZqVld', '5262783'), - (542, 1374, 'not_attending', '2022-05-07 15:34:53', '2025-12-17 19:47:28', 'dVbZqVld', '5269930'), - (542, 1376, 'not_attending', '2022-05-12 19:40:49', '2025-12-17 19:47:28', 'dVbZqVld', '5271446'), - (542, 1378, 'attending', '2022-05-13 20:58:49', '2025-12-17 19:47:28', 'dVbZqVld', '5271448'), - (542, 1379, 'attending', '2022-05-21 20:17:20', '2025-12-17 19:47:29', 'dVbZqVld', '5271449'), - (542, 1380, 'attending', '2022-05-28 18:24:47', '2025-12-17 19:47:30', 'dVbZqVld', '5271450'), - (542, 1383, 'attending', '2022-05-13 20:32:13', '2025-12-17 19:47:28', 'dVbZqVld', '5276469'), - (542, 1385, 'attending', '2022-05-11 22:20:46', '2025-12-17 19:47:28', 'dVbZqVld', '5277822'), - (542, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVbZqVld', '5278159'), - (542, 1390, 'not_attending', '2022-05-14 20:01:19', '2025-12-17 19:47:28', 'dVbZqVld', '5279509'), - (542, 1392, 'not_attending', '2022-05-09 01:51:04', '2025-12-17 19:47:28', 'dVbZqVld', '5279532'), - (542, 1394, 'not_attending', '2022-05-27 18:01:01', '2025-12-17 19:47:30', 'dVbZqVld', '5280667'), - (542, 1397, 'attending', '2022-05-21 21:51:09', '2025-12-17 19:47:29', 'dVbZqVld', '5281104'), - (542, 1401, 'not_attending', '2022-05-18 19:39:47', '2025-12-17 19:47:29', 'dVbZqVld', '5286295'), - (542, 1407, 'attending', '2022-06-04 21:42:58', '2025-12-17 19:47:30', 'dVbZqVld', '5363695'), - (542, 1408, 'not_attending', '2022-05-20 19:22:26', '2025-12-17 19:47:29', 'dVbZqVld', '5365960'), - (542, 1410, 'maybe', '2022-05-19 17:00:38', '2025-12-17 19:47:29', 'dVbZqVld', '5367530'), - (542, 1412, 'not_attending', '2022-05-19 21:32:04', '2025-12-17 19:47:29', 'dVbZqVld', '5367532'), - (542, 1415, 'not_attending', '2022-06-03 20:50:50', '2025-12-17 19:47:30', 'dVbZqVld', '5368973'), - (542, 1419, 'not_attending', '2022-06-08 21:26:21', '2025-12-17 19:47:30', 'dVbZqVld', '5373081'), - (542, 1420, 'not_attending', '2022-05-27 20:02:06', '2025-12-17 19:47:30', 'dVbZqVld', '5374882'), - (542, 1424, 'not_attending', '2022-05-26 22:10:51', '2025-12-17 19:47:30', 'dVbZqVld', '5375772'), - (542, 1427, 'not_attending', '2022-05-25 22:02:32', '2025-12-17 19:47:30', 'dVbZqVld', '5376074'), - (542, 1428, 'not_attending', '2022-06-10 20:51:28', '2025-12-17 19:47:30', 'dVbZqVld', '5378247'), - (542, 1429, 'not_attending', '2022-05-30 21:29:13', '2025-12-17 19:47:30', 'dVbZqVld', '5388761'), - (542, 1430, 'not_attending', '2022-06-09 21:05:52', '2025-12-17 19:47:30', 'dVbZqVld', '5389402'), - (542, 1431, 'attending', '2022-06-11 21:13:50', '2025-12-17 19:47:30', 'dVbZqVld', '5389605'), - (542, 1432, 'attending', '2022-06-03 15:53:18', '2025-12-17 19:47:30', 'dVbZqVld', '5391566'), - (542, 1433, 'attending', '2022-06-03 15:53:55', '2025-12-17 19:47:30', 'dVbZqVld', '5391667'), - (542, 1434, 'not_attending', '2022-06-01 21:12:24', '2025-12-17 19:47:30', 'dVbZqVld', '5393861'), - (542, 1435, 'attending', '2022-06-01 21:12:29', '2025-12-17 19:47:30', 'dVbZqVld', '5394015'), - (542, 1436, 'attending', '2022-06-02 19:09:46', '2025-12-17 19:47:30', 'dVbZqVld', '5394292'), - (542, 1438, 'attending', '2022-06-01 20:07:59', '2025-12-17 19:47:30', 'dVbZqVld', '5395032'), - (542, 1440, 'attending', '2022-06-07 13:32:34', '2025-12-17 19:47:30', 'dVbZqVld', '5396080'), - (542, 1441, 'attending', '2022-06-04 14:20:45', '2025-12-17 19:47:30', 'dVbZqVld', '5397171'), - (542, 1442, 'not_attending', '2022-06-18 20:53:11', '2025-12-17 19:47:17', 'dVbZqVld', '5397265'), - (542, 1446, 'not_attending', '2022-06-09 21:05:44', '2025-12-17 19:47:30', 'dVbZqVld', '5399721'), - (542, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dVbZqVld', '5403967'), - (542, 1454, 'attending', '2022-06-09 22:47:28', '2025-12-17 19:47:31', 'dVbZqVld', '5404771'), - (542, 1455, 'attending', '2022-06-09 22:47:22', '2025-12-17 19:47:31', 'dVbZqVld', '5404772'), - (542, 1456, 'not_attending', '2022-06-16 21:22:40', '2025-12-17 19:47:17', 'dVbZqVld', '5404779'), - (542, 1458, 'attending', '2022-06-19 19:45:48', '2025-12-17 19:47:17', 'dVbZqVld', '5404786'), - (542, 1459, 'not_attending', '2022-06-20 17:33:42', '2025-12-17 19:47:17', 'dVbZqVld', '5404793'), - (542, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVbZqVld', '5405203'), - (542, 1464, 'attending', '2022-06-10 22:38:51', '2025-12-17 19:47:30', 'dVbZqVld', '5405212'), - (542, 1469, 'attending', '2022-06-20 17:33:34', '2025-12-17 19:47:17', 'dVbZqVld', '5406838'), - (542, 1471, 'not_attending', '2022-06-21 14:46:33', '2025-12-17 19:47:17', 'dVbZqVld', '5407063'), - (542, 1473, 'not_attending', '2022-06-14 21:00:09', '2025-12-17 19:47:31', 'dVbZqVld', '5407267'), - (542, 1476, 'attending', '2022-06-19 20:07:46', '2025-12-17 19:47:17', 'dVbZqVld', '5408130'), - (542, 1478, 'not_attending', '2022-06-19 17:25:16', '2025-12-17 19:47:19', 'dVbZqVld', '5408794'), - (542, 1480, 'not_attending', '2022-06-26 22:45:31', '2025-12-17 19:47:19', 'dVbZqVld', '5411699'), - (542, 1482, 'not_attending', '2022-06-20 22:27:59', '2025-12-17 19:47:19', 'dVbZqVld', '5412550'), - (542, 1484, 'maybe', '2022-06-21 02:59:47', '2025-12-17 19:47:17', 'dVbZqVld', '5415046'), - (542, 1487, 'attending', '2022-06-27 10:44:32', '2025-12-17 19:47:19', 'dVbZqVld', '5419006'), - (542, 1490, 'not_attending', '2022-07-07 18:27:48', '2025-12-17 19:47:19', 'dVbZqVld', '5420156'), - (542, 1491, 'attending', '2022-06-26 21:20:26', '2025-12-17 19:47:19', 'dVbZqVld', '5420158'), - (542, 1495, 'not_attending', '2022-07-07 05:39:35', '2025-12-17 19:47:19', 'dVbZqVld', '5422086'), - (542, 1496, 'attending', '2022-06-26 22:45:49', '2025-12-17 19:47:19', 'dVbZqVld', '5422404'), - (542, 1497, 'not_attending', '2022-07-02 15:09:41', '2025-12-17 19:47:19', 'dVbZqVld', '5422405'), - (542, 1498, 'attending', '2022-07-02 18:44:24', '2025-12-17 19:47:19', 'dVbZqVld', '5422406'), - (542, 1501, 'attending', '2022-06-29 22:50:21', '2025-12-17 19:47:19', 'dVbZqVld', '5424546'), - (542, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVbZqVld', '5424565'), - (542, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVbZqVld', '5426882'), - (542, 1505, 'attending', '2022-07-04 22:54:06', '2025-12-17 19:47:19', 'dVbZqVld', '5427083'), - (542, 1508, 'not_attending', '2022-07-13 22:42:18', '2025-12-17 19:47:19', 'dVbZqVld', '5433453'), - (542, 1511, 'attending', '2022-07-07 05:40:00', '2025-12-17 19:47:19', 'dVbZqVld', '5437733'), - (542, 1513, 'not_attending', '2022-07-13 18:26:55', '2025-12-17 19:47:20', 'dVbZqVld', '5441125'), - (542, 1514, 'attending', '2022-07-21 11:48:41', '2025-12-17 19:47:20', 'dVbZqVld', '5441126'), - (542, 1515, 'attending', '2022-08-01 15:17:05', '2025-12-17 19:47:21', 'dVbZqVld', '5441128'), - (542, 1516, 'attending', '2022-08-19 01:58:27', '2025-12-17 19:47:23', 'dVbZqVld', '5441129'), - (542, 1517, 'attending', '2022-08-25 01:27:54', '2025-12-17 19:47:23', 'dVbZqVld', '5441130'), - (542, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVbZqVld', '5441131'), - (542, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVbZqVld', '5441132'), - (542, 1520, 'attending', '2022-07-10 03:23:53', '2025-12-17 19:47:19', 'dVbZqVld', '5441645'), - (542, 1524, 'not_attending', '2022-07-11 21:56:17', '2025-12-17 19:47:19', 'dVbZqVld', '5443300'), - (542, 1528, 'not_attending', '2022-07-14 03:36:44', '2025-12-17 19:47:20', 'dVbZqVld', '5446643'), - (542, 1529, 'attending', '2022-07-15 17:11:47', '2025-12-17 19:47:19', 'dVbZqVld', '5447079'), - (542, 1533, 'attending', '2022-07-26 14:30:22', '2025-12-17 19:47:21', 'dVbZqVld', '5448758'), - (542, 1534, 'attending', '2022-08-06 20:28:56', '2025-12-17 19:47:21', 'dVbZqVld', '5448759'), - (542, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVbZqVld', '5453325'), - (542, 1541, 'attending', '2022-07-21 11:49:02', '2025-12-17 19:47:20', 'dVbZqVld', '5453542'), - (542, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVbZqVld', '5454516'), - (542, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVbZqVld', '5454605'), - (542, 1550, 'not_attending', '2022-07-21 11:49:23', '2025-12-17 19:47:20', 'dVbZqVld', '5454803'), - (542, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVbZqVld', '5455037'), - (542, 1553, 'not_attending', '2022-07-20 10:36:43', '2025-12-17 19:47:20', 'dVbZqVld', '5455164'), - (542, 1557, 'attending', '2022-08-03 19:06:51', '2025-12-17 19:47:21', 'dVbZqVld', '5458729'), - (542, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVbZqVld', '5461278'), - (542, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVbZqVld', '5469480'), - (542, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVbZqVld', '5471073'), - (542, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dVbZqVld', '5474663'), - (542, 1568, 'not_attending', '2022-08-01 01:27:51', '2025-12-17 19:47:21', 'dVbZqVld', '5480628'), - (542, 1569, 'attending', '2022-08-01 15:09:43', '2025-12-17 19:47:21', 'dVbZqVld', '5481507'), - (542, 1570, 'attending', '2022-08-03 21:28:55', '2025-12-17 19:47:21', 'dVbZqVld', '5481830'), - (542, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVbZqVld', '5482022'), - (542, 1572, 'not_attending', '2022-08-01 19:58:47', '2025-12-17 19:47:22', 'dVbZqVld', '5482078'), - (542, 1574, 'not_attending', '2022-08-03 02:59:17', '2025-12-17 19:47:22', 'dVbZqVld', '5482153'), - (542, 1575, 'attending', '2022-08-13 03:51:37', '2025-12-17 19:47:23', 'dVbZqVld', '5482250'), - (542, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVbZqVld', '5482793'), - (542, 1579, 'not_attending', '2022-08-04 02:49:47', '2025-12-17 19:47:21', 'dVbZqVld', '5486019'), - (542, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVbZqVld', '5488912'), - (542, 1581, 'attending', '2022-08-07 02:33:28', '2025-12-17 19:47:22', 'dVbZqVld', '5490302'), - (542, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVbZqVld', '5492192'), - (542, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVbZqVld', '5493139'), - (542, 1589, 'attending', '2022-08-21 19:30:04', '2025-12-17 19:47:23', 'dVbZqVld', '5493159'), - (542, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVbZqVld', '5493200'), - (542, 1595, 'attending', '2022-08-12 20:34:42', '2025-12-17 19:47:22', 'dVbZqVld', '5495736'), - (542, 1599, 'not_attending', '2022-08-14 14:36:36', '2025-12-17 19:47:23', 'dVbZqVld', '5496568'), - (542, 1600, 'attending', '2022-08-14 14:36:43', '2025-12-17 19:47:24', 'dVbZqVld', '5496569'), - (542, 1604, 'attending', '2022-08-14 14:36:15', '2025-12-17 19:47:22', 'dVbZqVld', '5501504'), - (542, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVbZqVld', '5502188'), - (542, 1606, 'attending', '2022-08-21 21:57:16', '2025-12-17 19:47:23', 'dVbZqVld', '5504585'), - (542, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVbZqVld', '5505059'), - (542, 1611, 'attending', '2022-09-03 14:29:05', '2025-12-17 19:47:24', 'dVbZqVld', '5507652'), - (542, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVbZqVld', '5509055'), - (542, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVbZqVld', '5512862'), - (542, 1620, 'not_attending', '2022-08-23 15:26:55', '2025-12-17 19:47:23', 'dVbZqVld', '5513046'), - (542, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVbZqVld', '5513985'), - (542, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dVbZqVld', '5519981'), - (542, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVbZqVld', '5522550'), - (542, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVbZqVld', '5534683'), - (542, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVbZqVld', '5537735'), - (542, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVbZqVld', '5540859'), - (542, 1641, 'attending', '2022-09-03 14:28:52', '2025-12-17 19:47:24', 'dVbZqVld', '5544226'), - (542, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVbZqVld', '5546619'), - (542, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVbZqVld', '5555245'), - (542, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVbZqVld', '5557747'), - (542, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVbZqVld', '5560255'), - (542, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVbZqVld', '5562906'), - (542, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVbZqVld', '5600604'), - (542, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVbZqVld', '5605544'), - (542, 1698, 'not_attending', '2022-09-28 12:50:58', '2025-12-17 19:47:11', 'dVbZqVld', '5606366'), - (542, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'dVbZqVld', '5606737'), - (542, 1708, 'not_attending', '2022-10-05 12:43:26', '2025-12-17 19:47:12', 'dVbZqVld', '5617648'), - (542, 1719, 'not_attending', '2022-10-05 14:03:45', '2025-12-17 19:47:12', 'dVbZqVld', '5630958'), - (542, 1721, 'not_attending', '2022-10-17 20:00:02', '2025-12-17 19:47:13', 'dVbZqVld', '5630960'), - (542, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVbZqVld', '5630961'), - (542, 1723, 'not_attending', '2022-11-01 22:52:13', '2025-12-17 19:47:15', 'dVbZqVld', '5630962'), - (542, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVbZqVld', '5630966'), - (542, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVbZqVld', '5630967'), - (542, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVbZqVld', '5630968'), - (542, 1727, 'not_attending', '2022-11-28 14:11:42', '2025-12-17 19:47:16', 'dVbZqVld', '5630969'), - (542, 1728, 'not_attending', '2022-12-06 16:01:08', '2025-12-17 19:47:17', 'dVbZqVld', '5630970'), - (542, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVbZqVld', '5635406'), - (542, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVbZqVld', '5638765'), - (542, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVbZqVld', '5640097'), - (542, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVbZqVld', '5640843'), - (542, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVbZqVld', '5641521'), - (542, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVbZqVld', '5642818'), - (542, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVbZqVld', '5652395'), - (542, 1762, 'attending', '2022-11-28 14:11:36', '2025-12-17 19:47:16', 'dVbZqVld', '5670445'), - (542, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVbZqVld', '5671637'), - (542, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVbZqVld', '5672329'), - (542, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVbZqVld', '5674057'), - (542, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVbZqVld', '5674060'), - (542, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVbZqVld', '5677461'), - (542, 1780, 'not_attending', '2022-11-10 20:19:03', '2025-12-17 19:47:15', 'dVbZqVld', '5696082'), - (542, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVbZqVld', '5698046'), - (542, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVbZqVld', '5699760'), - (542, 1788, 'attending', '2022-11-21 21:23:37', '2025-12-17 19:47:16', 'dVbZqVld', '5727236'), - (542, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVbZqVld', '5741601'), - (542, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVbZqVld', '5763458'), - (542, 1800, 'attending', '2022-11-19 21:52:32', '2025-12-17 19:47:16', 'dVbZqVld', '5764667'), - (542, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVbZqVld', '5774172'), - (542, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVbZqVld', '5818247'), - (542, 1835, 'not_attending', '2022-12-28 17:32:40', '2025-12-17 19:47:05', 'dVbZqVld', '5819471'), - (542, 1841, 'attending', '2023-01-04 21:02:52', '2025-12-17 19:47:05', 'dVbZqVld', '5827665'), - (542, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVbZqVld', '5827739'), - (542, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVbZqVld', '5844306'), - (542, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVbZqVld', '5850159'), - (542, 1849, 'not_attending', '2023-01-04 21:02:29', '2025-12-17 19:47:05', 'dVbZqVld', '5852467'), - (542, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVbZqVld', '5858999'), - (542, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVbZqVld', '5871984'), - (542, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVbZqVld', '5876354'), - (542, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVbZqVld', '5880939'), - (542, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dVbZqVld', '5880940'), - (542, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVbZqVld', '5880942'), - (542, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVbZqVld', '5880943'), - (542, 1871, 'not_attending', '2023-01-19 14:23:49', '2025-12-17 19:47:05', 'dVbZqVld', '5883502'), - (542, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVbZqVld', '5887890'), - (542, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVbZqVld', '5888598'), - (542, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVbZqVld', '5893260'), - (542, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dVbZqVld', '5899826'), - (542, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dVbZqVld', '5900199'), - (542, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVbZqVld', '5900200'), - (542, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVbZqVld', '5900202'), - (542, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVbZqVld', '5900203'), - (542, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dVbZqVld', '5901108'), - (542, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dVbZqVld', '5901126'), - (542, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dVbZqVld', '5909655'), - (542, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dVbZqVld', '5910522'), - (542, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dVbZqVld', '5910526'), - (542, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dVbZqVld', '5910528'), - (542, 1920, 'attending', '2023-02-13 20:40:22', '2025-12-17 19:47:07', 'dVbZqVld', '5914091'), - (542, 1922, 'not_attending', '2023-02-16 15:53:22', '2025-12-17 19:47:07', 'dVbZqVld', '5916219'), - (542, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVbZqVld', '5936234'), - (542, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVbZqVld', '5958351'), - (542, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVbZqVld', '5959751'), - (542, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVbZqVld', '5959755'), - (542, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVbZqVld', '5960055'), - (542, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVbZqVld', '5961684'), - (542, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVbZqVld', '5962132'), - (542, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVbZqVld', '5962133'), - (542, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVbZqVld', '5962134'), - (542, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVbZqVld', '5962317'), - (542, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVbZqVld', '5962318'), - (542, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVbZqVld', '5965933'), - (542, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVbZqVld', '5967014'), - (542, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVbZqVld', '5972815'), - (542, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVbZqVld', '5974016'), - (542, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVbZqVld', '5981515'), - (542, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVbZqVld', '5993516'), - (542, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVbZqVld', '5998939'), - (542, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVbZqVld', '6028191'), - (542, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVbZqVld', '6040066'), - (542, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVbZqVld', '6042717'), - (542, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVbZqVld', '6044838'), - (542, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVbZqVld', '6044839'), - (542, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVbZqVld', '6045684'), - (542, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVbZqVld', '6050104'), - (542, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVbZqVld', '6053195'), - (542, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVbZqVld', '6053198'), - (542, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVbZqVld', '6056085'), - (542, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVbZqVld', '6056916'), - (542, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVbZqVld', '6059290'), - (542, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVbZqVld', '6060328'), - (542, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVbZqVld', '6061037'), - (542, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVbZqVld', '6061039'), - (542, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVbZqVld', '6067245'), - (542, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVbZqVld', '6068094'), - (542, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVbZqVld', '6068252'), - (542, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVbZqVld', '6068253'), - (542, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVbZqVld', '6068254'), - (542, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVbZqVld', '6068280'), - (542, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVbZqVld', '6069093'), - (542, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dVbZqVld', '6072528'), - (542, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVbZqVld', '6079840'), - (542, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVbZqVld', '6083398'), - (542, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVbZqVld', '6093504'), - (542, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVbZqVld', '6097414'), - (542, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVbZqVld', '6097442'), - (542, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVbZqVld', '6097684'), - (542, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVbZqVld', '6098762'), - (542, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dVbZqVld', '6101361'), - (542, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVbZqVld', '6101362'), - (542, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVbZqVld', '6103752'), - (542, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVbZqVld', '6107314'), - (542, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dVbZqVld', '6120034'), - (542, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dVbZqVld', '6136733'), - (542, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dVbZqVld', '6137989'), - (542, 2105, 'not_attending', '2023-06-19 21:33:24', '2025-12-17 19:46:50', 'dVbZqVld', '6149551'), - (542, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dVbZqVld', '6150864'), - (542, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dVbZqVld', '6155491'), - (542, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dVbZqVld', '6164417'), - (542, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dVbZqVld', '6166388'), - (542, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dVbZqVld', '6176439'), - (542, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dVbZqVld', '6182410'), - (542, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dVbZqVld', '6185812'), - (542, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dVbZqVld', '6187651'), - (542, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dVbZqVld', '6187963'), - (542, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dVbZqVld', '6187964'), - (542, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dVbZqVld', '6187966'), - (542, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dVbZqVld', '6187967'), - (542, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dVbZqVld', '6187969'), - (542, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dVbZqVld', '6334878'), - (542, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVbZqVld', '6337236'), - (542, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVbZqVld', '6337970'), - (542, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dVbZqVld', '6338308'), - (542, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVbZqVld', '6340845'), - (542, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVbZqVld', '6341710'), - (542, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVbZqVld', '6342044'), - (542, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVbZqVld', '6342298'), - (542, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dVbZqVld', '6343294'), - (542, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVbZqVld', '6347034'), - (542, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVbZqVld', '6347056'), - (542, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVbZqVld', '6353830'), - (542, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVbZqVld', '6353831'), - (542, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVbZqVld', '6357867'), - (542, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVbZqVld', '6358652'), - (542, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVbZqVld', '6361709'), - (542, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVbZqVld', '6361710'), - (542, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVbZqVld', '6361711'), - (542, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVbZqVld', '6361712'), - (542, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVbZqVld', '6361713'), - (542, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVbZqVld', '6382573'), - (542, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVbZqVld', '6388604'), - (542, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVbZqVld', '6394629'), - (542, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVbZqVld', '6394631'), - (542, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVbZqVld', '6440863'), - (542, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVbZqVld', '6445440'), - (542, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVbZqVld', '6453951'), - (542, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVbZqVld', '6461696'), - (542, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVbZqVld', '6462129'), - (542, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVbZqVld', '6463218'), - (542, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVbZqVld', '6472181'), - (542, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVbZqVld', '6482693'), - (542, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dVbZqVld', '6484200'), - (542, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dVbZqVld', '6484680'), - (542, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVbZqVld', '6507741'), - (542, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVbZqVld', '6514659'), - (542, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVbZqVld', '6514660'), - (542, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVbZqVld', '6519103'), - (542, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVbZqVld', '6535681'), - (542, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVbZqVld', '6584747'), - (542, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVbZqVld', '6587097'), - (542, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVbZqVld', '6609022'), - (542, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVbZqVld', '6632757'), - (542, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVbZqVld', '6644187'), - (542, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVbZqVld', '6648951'), - (542, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVbZqVld', '6648952'), - (542, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVbZqVld', '6655401'), - (542, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVbZqVld', '6661585'), - (542, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVbZqVld', '6661588'), - (542, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVbZqVld', '6661589'), - (542, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVbZqVld', '6699906'), - (542, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVbZqVld', '6701109'), - (542, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVbZqVld', '6705219'), - (542, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVbZqVld', '6710153'), - (542, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVbZqVld', '6711552'), - (542, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVbZqVld', '6711553'), - (543, 1724, 'attending', '2022-11-12 23:05:58', '2025-12-17 19:47:15', 'dOpPgrOm', '5630966'), - (543, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOpPgrOm', '5630967'), - (543, 1726, 'maybe', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOpPgrOm', '5630968'), - (543, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOpPgrOm', '5642818'), - (543, 1761, 'attending', '2022-11-18 19:25:27', '2025-12-17 19:47:16', 'dOpPgrOm', '5670434'), - (543, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOpPgrOm', '5670445'), - (543, 1784, 'attending', '2022-11-16 19:58:39', '2025-12-17 19:47:15', 'dOpPgrOm', '5699760'), - (543, 1786, 'not_attending', '2022-11-12 21:50:09', '2025-12-17 19:47:15', 'dOpPgrOm', '5727232'), - (543, 1787, 'not_attending', '2022-11-14 20:15:47', '2025-12-17 19:47:16', 'dOpPgrOm', '5727234'), - (543, 1788, 'attending', '2022-11-16 20:18:00', '2025-12-17 19:47:16', 'dOpPgrOm', '5727236'), - (543, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOpPgrOm', '5741601'), - (543, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOpPgrOm', '5763458'), - (543, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOpPgrOm', '5774172'), - (543, 1828, 'maybe', '2022-11-28 22:10:29', '2025-12-17 19:47:16', 'dOpPgrOm', '5778865'), - (543, 1829, 'maybe', '2022-11-28 22:14:10', '2025-12-17 19:47:16', 'dOpPgrOm', '5778867'), - (543, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOpPgrOm', '5818247'), - (543, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOpPgrOm', '5819471'), - (543, 1837, 'not_attending', '2022-12-07 21:42:44', '2025-12-17 19:47:16', 'dOpPgrOm', '5820146'), - (543, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOpPgrOm', '5827739'), - (543, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOpPgrOm', '5844306'), - (543, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOpPgrOm', '5850159'), - (543, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOpPgrOm', '5858999'), - (543, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOpPgrOm', '5871984'), - (543, 1859, 'attending', '2023-01-19 12:40:10', '2025-12-17 19:47:05', 'dOpPgrOm', '5876234'), - (543, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOpPgrOm', '5876354'), - (543, 1864, 'attending', '2023-01-21 19:54:39', '2025-12-17 19:47:05', 'dOpPgrOm', '5879675'), - (543, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOpPgrOm', '5880939'), - (543, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dOpPgrOm', '5880940'), - (543, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dOpPgrOm', '5880942'), - (543, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dOpPgrOm', '5880943'), - (543, 1871, 'attending', '2023-01-19 12:34:34', '2025-12-17 19:47:05', 'dOpPgrOm', '5883502'), - (543, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOpPgrOm', '5887890'), - (543, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOpPgrOm', '5888598'), - (543, 1879, 'attending', '2023-01-29 12:26:17', '2025-12-17 19:47:06', 'dOpPgrOm', '5893001'), - (543, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOpPgrOm', '5893260'), - (543, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dOpPgrOm', '5899826'), - (543, 1888, 'not_attending', '2023-02-17 22:38:17', '2025-12-17 19:47:07', 'dOpPgrOm', '5900197'), - (543, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dOpPgrOm', '5900199'), - (543, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dOpPgrOm', '5900200'), - (543, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOpPgrOm', '5900202'), - (543, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOpPgrOm', '5900203'), - (543, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dOpPgrOm', '5901108'), - (543, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dOpPgrOm', '5901126'), - (543, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dOpPgrOm', '5909655'), - (543, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dOpPgrOm', '5910522'), - (543, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dOpPgrOm', '5910526'), - (543, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dOpPgrOm', '5910528'), - (543, 1918, 'attending', '2023-02-08 10:18:48', '2025-12-17 19:47:07', 'dOpPgrOm', '5911180'), - (543, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dOpPgrOm', '5916219'), - (543, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dOpPgrOm', '5936234'), - (543, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dOpPgrOm', '5958351'), - (543, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dOpPgrOm', '5959751'), - (543, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dOpPgrOm', '5959755'), - (543, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dOpPgrOm', '5960055'), - (543, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dOpPgrOm', '5961684'), - (543, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dOpPgrOm', '5962132'), - (543, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dOpPgrOm', '5962133'), - (543, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dOpPgrOm', '5962134'), - (543, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dOpPgrOm', '5962317'), - (543, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dOpPgrOm', '5962318'), - (543, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dOpPgrOm', '5965933'), - (543, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dOpPgrOm', '5967014'), - (543, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dOpPgrOm', '5972815'), - (543, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dOpPgrOm', '5974016'), - (543, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dOpPgrOm', '5981515'), - (543, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOpPgrOm', '5993516'), - (543, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOpPgrOm', '5998939'), - (543, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOpPgrOm', '6028191'), - (543, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOpPgrOm', '6040066'), - (543, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOpPgrOm', '6042717'), - (543, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOpPgrOm', '6044838'), - (543, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOpPgrOm', '6044839'), - (543, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOpPgrOm', '6045684'), - (543, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dOpPgrOm', '6050104'), - (543, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOpPgrOm', '6053195'), - (543, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOpPgrOm', '6053198'), - (543, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOpPgrOm', '6056085'), - (543, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOpPgrOm', '6056916'), - (543, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOpPgrOm', '6059290'), - (543, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOpPgrOm', '6060328'), - (543, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOpPgrOm', '6061037'), - (543, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOpPgrOm', '6061039'), - (543, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOpPgrOm', '6067245'), - (543, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOpPgrOm', '6068094'), - (543, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOpPgrOm', '6068252'), - (543, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOpPgrOm', '6068253'), - (543, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOpPgrOm', '6068254'), - (543, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dOpPgrOm', '6068280'), - (543, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOpPgrOm', '6069093'), - (543, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOpPgrOm', '6072528'), - (543, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOpPgrOm', '6079840'), - (543, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOpPgrOm', '6083398'), - (543, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOpPgrOm', '6093504'), - (543, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOpPgrOm', '6097414'), - (543, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOpPgrOm', '6097442'), - (543, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOpPgrOm', '6097684'), - (543, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOpPgrOm', '6098762'), - (543, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOpPgrOm', '6101361'), - (543, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOpPgrOm', '6101362'), - (543, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dOpPgrOm', '6103752'), - (543, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOpPgrOm', '6107314'), - (543, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOpPgrOm', '6120034'), - (543, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dOpPgrOm', '6136733'), - (543, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOpPgrOm', '6137989'), - (543, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOpPgrOm', '6150864'), - (543, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOpPgrOm', '6155491'), - (543, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOpPgrOm', '6164417'), - (543, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOpPgrOm', '6166388'), - (543, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOpPgrOm', '6176439'), - (543, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOpPgrOm', '6182410'), - (543, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOpPgrOm', '6185812'), - (543, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOpPgrOm', '6187651'), - (543, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOpPgrOm', '6187963'), - (543, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOpPgrOm', '6187964'), - (543, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOpPgrOm', '6187966'), - (543, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOpPgrOm', '6187967'), - (543, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOpPgrOm', '6187969'), - (543, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOpPgrOm', '6334878'), - (543, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOpPgrOm', '6337236'), - (543, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOpPgrOm', '6337970'), - (543, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOpPgrOm', '6338308'), - (543, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dOpPgrOm', '6340845'), - (543, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOpPgrOm', '6341710'), - (543, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOpPgrOm', '6342044'), - (543, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOpPgrOm', '6342298'), - (543, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOpPgrOm', '6343294'), - (543, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOpPgrOm', '6347034'), - (543, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOpPgrOm', '6347056'), - (543, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOpPgrOm', '6353830'), - (543, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOpPgrOm', '6353831'), - (543, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOpPgrOm', '6357867'), - (543, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOpPgrOm', '6358652'), - (543, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOpPgrOm', '6361709'), - (543, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dOpPgrOm', '6361710'), - (543, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOpPgrOm', '6361711'), - (543, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOpPgrOm', '6361712'), - (543, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOpPgrOm', '6361713'), - (543, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOpPgrOm', '6382573'), - (543, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOpPgrOm', '6388604'), - (543, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOpPgrOm', '6394629'), - (543, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOpPgrOm', '6394631'), - (543, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOpPgrOm', '6440863'), - (543, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOpPgrOm', '6445440'), - (543, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOpPgrOm', '6453951'), - (543, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOpPgrOm', '6461696'), - (543, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOpPgrOm', '6462129'), - (543, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOpPgrOm', '6463218'), - (543, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dOpPgrOm', '6472181'), - (543, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOpPgrOm', '6482693'), - (543, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dOpPgrOm', '6484200'), - (543, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOpPgrOm', '6484680'), - (543, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOpPgrOm', '6507741'), - (543, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dOpPgrOm', '6514659'), - (543, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOpPgrOm', '6514660'), - (543, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOpPgrOm', '6519103'), - (543, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOpPgrOm', '6535681'), - (543, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOpPgrOm', '6584747'), - (543, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOpPgrOm', '6587097'), - (543, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOpPgrOm', '6609022'), - (543, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOpPgrOm', '6632757'), - (543, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOpPgrOm', '6644187'), - (543, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOpPgrOm', '6648951'), - (543, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOpPgrOm', '6648952'), - (543, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOpPgrOm', '6655401'), - (543, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOpPgrOm', '6661585'), - (543, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOpPgrOm', '6661588'), - (543, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOpPgrOm', '6661589'), - (543, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOpPgrOm', '6699906'), - (543, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOpPgrOm', '6701109'), - (543, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOpPgrOm', '6705219'), - (543, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOpPgrOm', '6710153'), - (543, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOpPgrOm', '6711552'), - (543, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dOpPgrOm', '6711553'), - (544, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E51DgD4', '6045684'), - (545, 401, 'not_attending', '2021-05-14 00:35:03', '2025-12-17 19:47:46', 'NmL2aZJ4', '3236456'), - (545, 646, 'attending', '2021-05-13 05:01:41', '2025-12-17 19:47:46', 'NmL2aZJ4', '3539921'), - (545, 647, 'not_attending', '2021-05-22 23:24:33', '2025-12-17 19:47:47', 'NmL2aZJ4', '3539922'), - (545, 648, 'attending', '2021-05-28 15:50:34', '2025-12-17 19:47:47', 'NmL2aZJ4', '3539923'), - (545, 666, 'attending', '2021-08-12 15:54:53', '2025-12-17 19:47:42', 'NmL2aZJ4', '3547144'), - (545, 674, 'attending', '2021-08-07 22:21:30', '2025-12-17 19:47:41', 'NmL2aZJ4', '3547152'), - (545, 744, 'not_attending', '2021-06-03 18:43:04', '2025-12-17 19:47:47', 'NmL2aZJ4', '3680624'), - (545, 797, 'attending', '2021-05-25 22:25:59', '2025-12-17 19:47:47', 'NmL2aZJ4', '3796195'), - (545, 800, 'attending', '2021-05-13 05:02:38', '2025-12-17 19:47:46', 'NmL2aZJ4', '3800908'), - (545, 801, 'attending', '2021-05-13 05:01:03', '2025-12-17 19:47:46', 'NmL2aZJ4', '3800910'), - (545, 804, 'attending', '2021-05-23 03:30:07', '2025-12-17 19:47:47', 'NmL2aZJ4', '3804775'), - (545, 807, 'attending', '2021-05-13 05:02:54', '2025-12-17 19:47:46', 'NmL2aZJ4', '3807154'), - (545, 815, 'not_attending', '2021-05-28 15:50:13', '2025-12-17 19:47:47', 'NmL2aZJ4', '3818136'), - (545, 817, 'attending', '2021-05-20 23:41:01', '2025-12-17 19:47:46', 'NmL2aZJ4', '3832498'), - (545, 823, 'attending', '2021-06-08 23:13:13', '2025-12-17 19:47:48', 'NmL2aZJ4', '3974109'), - (545, 825, 'not_attending', '2021-06-08 23:12:34', '2025-12-17 19:47:47', 'NmL2aZJ4', '3975283'), - (545, 827, 'attending', '2021-06-05 14:53:09', '2025-12-17 19:47:47', 'NmL2aZJ4', '3975311'), - (545, 828, 'attending', '2021-06-12 19:19:37', '2025-12-17 19:47:47', 'NmL2aZJ4', '3975312'), - (545, 830, 'maybe', '2021-06-03 18:38:07', '2025-12-17 19:47:47', 'NmL2aZJ4', '3976648'), - (545, 833, 'maybe', '2021-06-03 18:38:39', '2025-12-17 19:47:47', 'NmL2aZJ4', '3990438'), - (545, 834, 'maybe', '2021-06-03 18:42:39', '2025-12-17 19:47:47', 'NmL2aZJ4', '3990439'), - (545, 838, 'maybe', '2021-06-09 00:58:35', '2025-12-17 19:47:47', 'NmL2aZJ4', '3994992'), - (545, 840, 'attending', '2021-06-08 00:51:12', '2025-12-17 19:47:47', 'NmL2aZJ4', '4007283'), - (545, 844, 'not_attending', '2021-06-23 20:26:52', '2025-12-17 19:47:38', 'NmL2aZJ4', '4014338'), - (545, 857, 'attending', '2021-11-08 02:12:05', '2025-12-17 19:47:37', 'NmL2aZJ4', '4015731'), - (545, 866, 'maybe', '2021-06-12 14:51:57', '2025-12-17 19:47:38', 'NmL2aZJ4', '4020424'), - (545, 867, 'attending', '2021-06-26 21:06:42', '2025-12-17 19:47:38', 'NmL2aZJ4', '4021848'), - (545, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmL2aZJ4', '4136744'), - (545, 870, 'not_attending', '2021-06-30 19:54:08', '2025-12-17 19:47:39', 'NmL2aZJ4', '4136937'), - (545, 871, 'attending', '2021-07-08 02:57:02', '2025-12-17 19:47:39', 'NmL2aZJ4', '4136938'), - (545, 872, 'not_attending', '2021-07-21 15:03:02', '2025-12-17 19:47:40', 'NmL2aZJ4', '4136947'), - (545, 884, 'maybe', '2021-07-31 19:52:19', '2025-12-17 19:47:42', 'NmL2aZJ4', '4210314'), - (545, 887, 'attending', '2021-07-11 16:21:47', '2025-12-17 19:47:39', 'NmL2aZJ4', '4225444'), - (545, 898, 'attending', '2021-07-01 18:24:57', '2025-12-17 19:47:38', 'NmL2aZJ4', '4236746'), - (545, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmL2aZJ4', '4239259'), - (545, 900, 'attending', '2021-07-18 18:24:25', '2025-12-17 19:47:40', 'NmL2aZJ4', '4240316'), - (545, 901, 'attending', '2021-07-30 16:48:22', '2025-12-17 19:47:40', 'NmL2aZJ4', '4240317'), - (545, 902, 'attending', '2021-08-06 14:24:24', '2025-12-17 19:47:41', 'NmL2aZJ4', '4240318'), - (545, 903, 'attending', '2021-08-11 16:07:45', '2025-12-17 19:47:42', 'NmL2aZJ4', '4240320'), - (545, 904, 'not_attending', '2021-07-11 14:31:33', '2025-12-17 19:47:39', 'NmL2aZJ4', '4241594'), - (545, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmL2aZJ4', '4250163'), - (545, 909, 'maybe', '2021-07-06 19:47:47', '2025-12-17 19:47:39', 'NmL2aZJ4', '4258187'), - (545, 910, 'attending', '2021-07-09 00:57:14', '2025-12-17 19:47:39', 'NmL2aZJ4', '4258189'), - (545, 911, 'not_attending', '2021-07-11 23:05:55', '2025-12-17 19:47:39', 'NmL2aZJ4', '4264465'), - (545, 913, 'attending', '2021-07-11 22:42:53', '2025-12-17 19:47:39', 'NmL2aZJ4', '4273765'), - (545, 914, 'attending', '2021-07-15 01:47:54', '2025-12-17 19:47:39', 'NmL2aZJ4', '4273767'), - (545, 915, 'maybe', '2021-07-20 22:57:19', '2025-12-17 19:47:39', 'NmL2aZJ4', '4273770'), - (545, 917, 'attending', '2021-07-11 22:43:29', '2025-12-17 19:47:39', 'NmL2aZJ4', '4274481'), - (545, 919, 'not_attending', '2021-07-17 22:56:32', '2025-12-17 19:47:39', 'NmL2aZJ4', '4275957'), - (545, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'NmL2aZJ4', '4277819'), - (545, 921, 'not_attending', '2021-07-14 03:11:56', '2025-12-17 19:47:39', 'NmL2aZJ4', '4278368'), - (545, 922, 'attending', '2021-07-14 03:12:11', '2025-12-17 19:47:40', 'NmL2aZJ4', '4280811'), - (545, 924, 'attending', '2021-07-21 04:21:38', '2025-12-17 19:47:40', 'NmL2aZJ4', '4297137'), - (545, 926, 'maybe', '2021-08-18 23:20:38', '2025-12-17 19:47:42', 'NmL2aZJ4', '4297211'), - (545, 932, 'maybe', '2021-08-22 15:47:37', '2025-12-17 19:47:42', 'NmL2aZJ4', '4301664'), - (545, 933, 'maybe', '2021-07-28 02:45:15', '2025-12-17 19:47:40', 'NmL2aZJ4', '4301723'), - (545, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmL2aZJ4', '4302093'), - (545, 935, 'attending', '2021-07-23 13:22:06', '2025-12-17 19:47:41', 'NmL2aZJ4', '4304151'), - (545, 936, 'not_attending', '2021-07-25 22:35:29', '2025-12-17 19:47:40', 'NmL2aZJ4', '4305951'), - (545, 938, 'maybe', '2021-07-25 22:35:34', '2025-12-17 19:47:40', 'NmL2aZJ4', '4306597'), - (545, 939, 'attending', '2021-07-25 02:44:15', '2025-12-17 19:47:40', 'NmL2aZJ4', '4308354'), - (545, 941, 'not_attending', '2021-07-25 18:11:23', '2025-12-17 19:47:40', 'NmL2aZJ4', '4309464'), - (545, 942, 'attending', '2021-07-28 02:45:50', '2025-12-17 19:47:40', 'NmL2aZJ4', '4310297'), - (545, 943, 'attending', '2021-07-26 04:05:41', '2025-12-17 19:47:41', 'NmL2aZJ4', '4310979'), - (545, 944, 'attending', '2021-07-26 04:08:53', '2025-12-17 19:47:41', 'NmL2aZJ4', '4310980'), - (545, 945, 'attending', '2021-07-26 04:08:55', '2025-12-17 19:47:42', 'NmL2aZJ4', '4310981'), - (545, 956, 'attending', '2021-08-03 04:25:07', '2025-12-17 19:47:40', 'NmL2aZJ4', '4331968'), - (545, 957, 'attending', '2021-08-05 16:59:57', '2025-12-17 19:47:41', 'NmL2aZJ4', '4338834'), - (545, 961, 'maybe', '2021-08-13 20:46:25', '2025-12-17 19:47:42', 'NmL2aZJ4', '4345519'), - (545, 962, 'maybe', '2021-08-12 15:53:35', '2025-12-17 19:47:41', 'NmL2aZJ4', '4346305'), - (545, 966, 'maybe', '2021-08-21 15:23:38', '2025-12-17 19:47:42', 'NmL2aZJ4', '4356162'), - (545, 967, 'maybe', '2021-08-18 23:22:43', '2025-12-17 19:47:42', 'NmL2aZJ4', '4356164'), - (545, 971, 'attending', '2021-08-28 17:34:00', '2025-12-17 19:47:43', 'NmL2aZJ4', '4356801'), - (545, 972, 'maybe', '2021-08-19 16:52:23', '2025-12-17 19:47:42', 'NmL2aZJ4', '4358025'), - (545, 973, 'maybe', '2021-08-19 16:52:52', '2025-12-17 19:47:42', 'NmL2aZJ4', '4366186'), - (545, 974, 'attending', '2021-08-19 00:25:01', '2025-12-17 19:47:42', 'NmL2aZJ4', '4366187'), - (545, 976, 'attending', '2021-08-19 01:01:11', '2025-12-17 19:47:42', 'NmL2aZJ4', '4373933'), - (545, 979, 'not_attending', '2021-08-19 01:08:14', '2025-12-17 19:47:42', 'NmL2aZJ4', '4379085'), - (545, 981, 'not_attending', '2021-08-27 22:53:32', '2025-12-17 19:47:42', 'NmL2aZJ4', '4387305'), - (545, 982, 'not_attending', '2021-08-28 18:44:26', '2025-12-17 19:47:42', 'NmL2aZJ4', '4389739'), - (545, 988, 'not_attending', '2021-08-27 22:53:35', '2025-12-17 19:47:42', 'NmL2aZJ4', '4402823'), - (545, 990, 'attending', '2021-08-28 22:30:34', '2025-12-17 19:47:43', 'NmL2aZJ4', '4420735'), - (545, 991, 'not_attending', '2021-09-11 21:24:44', '2025-12-17 19:47:43', 'NmL2aZJ4', '4420738'), - (545, 992, 'not_attending', '2021-09-18 22:59:31', '2025-12-17 19:47:34', 'NmL2aZJ4', '4420739'), - (545, 993, 'attending', '2021-09-25 22:55:01', '2025-12-17 19:47:34', 'NmL2aZJ4', '4420741'), - (545, 995, 'maybe', '2021-10-05 19:26:23', '2025-12-17 19:47:34', 'NmL2aZJ4', '4420744'), - (545, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'NmL2aZJ4', '4420747'), - (545, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'NmL2aZJ4', '4420748'), - (545, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'NmL2aZJ4', '4420749'), - (545, 999, 'not_attending', '2021-08-29 03:08:45', '2025-12-17 19:47:43', 'NmL2aZJ4', '4421150'), - (545, 1000, 'attending', '2021-08-29 22:34:52', '2025-12-17 19:47:43', 'NmL2aZJ4', '4424456'), - (545, 1001, 'maybe', '2021-08-30 14:20:19', '2025-12-17 19:47:43', 'NmL2aZJ4', '4424687'), - (545, 1015, 'attending', '2021-09-03 13:40:57', '2025-12-17 19:47:43', 'NmL2aZJ4', '4440800'), - (545, 1017, 'attending', '2021-09-04 21:53:15', '2025-12-17 19:47:43', 'NmL2aZJ4', '4441822'), - (545, 1018, 'attending', '2021-09-05 17:13:14', '2025-12-17 19:47:43', 'NmL2aZJ4', '4448883'), - (545, 1020, 'attending', '2021-09-13 00:49:12', '2025-12-17 19:47:43', 'NmL2aZJ4', '4451787'), - (545, 1023, 'maybe', '2021-09-12 14:16:35', '2025-12-17 19:47:43', 'NmL2aZJ4', '4461883'), - (545, 1024, 'attending', '2021-09-10 00:54:48', '2025-12-17 19:47:43', 'NmL2aZJ4', '4462044'), - (545, 1026, 'attending', '2021-09-12 16:45:28', '2025-12-17 19:47:43', 'NmL2aZJ4', '4472951'), - (545, 1027, 'attending', '2021-09-12 16:46:01', '2025-12-17 19:47:34', 'NmL2aZJ4', '4472982'), - (545, 1028, 'attending', '2021-09-12 16:47:03', '2025-12-17 19:47:34', 'NmL2aZJ4', '4472983'), - (545, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmL2aZJ4', '4508342'), - (545, 1073, 'attending', '2021-09-28 02:19:03', '2025-12-17 19:47:34', 'NmL2aZJ4', '4518993'), - (545, 1076, 'attending', '2021-10-03 16:08:28', '2025-12-17 19:47:34', 'NmL2aZJ4', '4539147'), - (545, 1080, 'attending', '2021-10-10 20:35:49', '2025-12-17 19:47:34', 'NmL2aZJ4', '4564599'), - (545, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmL2aZJ4', '4568602'), - (545, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmL2aZJ4', '4572153'), - (545, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmL2aZJ4', '4585962'), - (545, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'NmL2aZJ4', '4596356'), - (545, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmL2aZJ4', '4598860'), - (545, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmL2aZJ4', '4598861'), - (545, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmL2aZJ4', '4602797'), - (545, 1109, 'attending', '2021-11-11 02:36:31', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635221'), - (545, 1110, 'attending', '2021-11-11 02:30:31', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635224'), - (545, 1111, 'attending', '2021-11-11 02:35:31', '2025-12-17 19:47:31', 'NmL2aZJ4', '4635279'), - (545, 1112, 'attending', '2021-11-11 02:35:30', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635420'), - (545, 1113, 'attending', '2021-11-11 02:36:22', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635421'), - (545, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmL2aZJ4', '4637896'), - (545, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmL2aZJ4', '4642994'), - (545, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmL2aZJ4', '4642995'), - (545, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmL2aZJ4', '4642996'), - (545, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmL2aZJ4', '4642997'), - (545, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmL2aZJ4', '4645687'), - (545, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmL2aZJ4', '4645698'), - (545, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmL2aZJ4', '4645704'), - (545, 1129, 'maybe', '2021-11-24 06:48:24', '2025-12-17 19:47:37', 'NmL2aZJ4', '4645705'), - (545, 1134, 'attending', '2021-11-24 06:58:30', '2025-12-17 19:47:37', 'NmL2aZJ4', '4668385'), - (545, 1136, 'not_attending', '2021-11-25 20:34:02', '2025-12-17 19:47:37', 'NmL2aZJ4', '4670473'), - (545, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmL2aZJ4', '4694407'), - (545, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmL2aZJ4', '4736497'), - (545, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'NmL2aZJ4', '4736499'), - (545, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmL2aZJ4', '4736500'), - (545, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'NmL2aZJ4', '4736503'), - (545, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'NmL2aZJ4', '4736504'), - (545, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmL2aZJ4', '4746789'), - (545, 1186, 'attending', '2022-01-09 08:30:57', '2025-12-17 19:47:31', 'NmL2aZJ4', '4747800'), - (545, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmL2aZJ4', '4753929'), - (545, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmL2aZJ4', '5038850'), - (545, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmL2aZJ4', '5045826'), - (545, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmL2aZJ4', '5132533'), - (545, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'NmL2aZJ4', '5186582'), - (545, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'NmL2aZJ4', '5186583'), - (545, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'NmL2aZJ4', '5186585'), - (545, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'NmL2aZJ4', '5190437'), - (545, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'NmL2aZJ4', '5195095'), - (545, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmL2aZJ4', '5215989'), - (545, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmL2aZJ4', '5223686'), - (545, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmL2aZJ4', '5227432'), - (545, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'NmL2aZJ4', '5231461'), - (545, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'NmL2aZJ4', '5247467'), - (545, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'NmL2aZJ4', '5260800'), - (545, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'NmL2aZJ4', '5269930'), - (545, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'NmL2aZJ4', '5271448'), - (545, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'NmL2aZJ4', '5271449'), - (545, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmL2aZJ4', '5276469'), - (545, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'NmL2aZJ4', '5277078'), - (545, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmL2aZJ4', '5278159'), - (545, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'NmL2aZJ4', '5363695'), - (545, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmL2aZJ4', '5365960'), - (545, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmL2aZJ4', '5368973'), - (545, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'NmL2aZJ4', '5378247'), - (545, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'NmL2aZJ4', '5389605'), - (545, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'NmL2aZJ4', '5397265'), - (545, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmL2aZJ4', '5403967'), - (545, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmL2aZJ4', '5404786'), - (545, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmL2aZJ4', '5405203'), - (545, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmL2aZJ4', '5411699'), - (545, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'NmL2aZJ4', '5412550'), - (545, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmL2aZJ4', '5415046'), - (545, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'NmL2aZJ4', '5422086'), - (545, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'NmL2aZJ4', '5422406'), - (545, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmL2aZJ4', '5424565'), - (545, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmL2aZJ4', '5426882'), - (545, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmL2aZJ4', '5427083'), - (545, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmL2aZJ4', '5441125'), - (545, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmL2aZJ4', '5441126'), - (545, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmL2aZJ4', '5441128'), - (545, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmL2aZJ4', '5446643'), - (545, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmL2aZJ4', '5453325'), - (545, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmL2aZJ4', '5454516'), - (545, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmL2aZJ4', '5454605'), - (545, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmL2aZJ4', '5455037'), - (545, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmL2aZJ4', '5461278'), - (545, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmL2aZJ4', '5469480'), - (545, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmL2aZJ4', '5471073'), - (545, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'NmL2aZJ4', '5474663'), - (545, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmL2aZJ4', '5482022'), - (545, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmL2aZJ4', '5482793'), - (545, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmL2aZJ4', '5488912'), - (545, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmL2aZJ4', '5492192'), - (545, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmL2aZJ4', '5493139'), - (545, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmL2aZJ4', '5493200'), - (545, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmL2aZJ4', '5502188'), - (545, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmL2aZJ4', '5512862'), - (545, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmL2aZJ4', '5513985'), - (545, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmL2aZJ4', '6045684'), - (546, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'm6ZnNjRm', '7074364'), - (546, 2627, 'attending', '2024-05-24 19:27:08', '2025-12-17 19:46:35', 'm6ZnNjRm', '7264724'), - (546, 2628, 'attending', '2024-06-01 01:28:05', '2025-12-17 19:46:36', 'm6ZnNjRm', '7264725'), - (546, 2642, 'attending', '2024-05-18 01:48:02', '2025-12-17 19:46:35', 'm6ZnNjRm', '7276108'), - (546, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'm6ZnNjRm', '7281768'), - (546, 2649, 'maybe', '2024-05-26 15:55:25', '2025-12-17 19:46:35', 'm6ZnNjRm', '7282950'), - (546, 2651, 'attending', '2024-05-24 19:28:19', '2025-12-17 19:46:35', 'm6ZnNjRm', '7288200'), - (546, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'm6ZnNjRm', '7302674'), - (546, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'm6ZnNjRm', '7324073'), - (546, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'm6ZnNjRm', '7324074'), - (546, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'm6ZnNjRm', '7324075'), - (546, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'm6ZnNjRm', '7324078'), - (546, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'm6ZnNjRm', '7324082'), - (546, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'm6ZnNjRm', '7331457'), - (546, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'm6ZnNjRm', '7356752'), - (546, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'm6ZnNjRm', '7363643'), - (546, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'm6ZnNjRm', '7368606'), - (546, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'm6ZnNjRm', '7397462'), - (546, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'm6ZnNjRm', '7424275'), - (546, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'm6ZnNjRm', '7424276'), - (546, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'm6ZnNjRm', '7432751'), - (546, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'm6ZnNjRm', '7432752'), - (546, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'm6ZnNjRm', '7432753'), - (546, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432754'), - (546, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432755'), - (546, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432756'), - (546, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432758'), - (546, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432759'), - (546, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'm6ZnNjRm', '7433834'), - (546, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'm6ZnNjRm', '7470197'), - (546, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'm6ZnNjRm', '7685613'), - (546, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6ZnNjRm', '7688194'), - (546, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6ZnNjRm', '7688196'), - (546, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6ZnNjRm', '7688289'), - (547, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dVBgEaqd', '4210314'), - (547, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'dVBgEaqd', '4240320'), - (547, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dVBgEaqd', '4304151'), - (547, 948, 'maybe', '2021-08-11 05:46:53', '2025-12-17 19:47:41', 'dVBgEaqd', '4315714'), - (547, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'dVBgEaqd', '4315726'), - (547, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dVBgEaqd', '4356801'), - (547, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dVBgEaqd', '4366186'), - (547, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dVBgEaqd', '4366187'), - (547, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dVBgEaqd', '4420735'), - (547, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dVBgEaqd', '4420738'), - (547, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dVBgEaqd', '4420739'), - (547, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dVBgEaqd', '4420741'), - (547, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dVBgEaqd', '4420744'), - (547, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dVBgEaqd', '4420747'), - (547, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dVBgEaqd', '4420748'), - (547, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dVBgEaqd', '4420749'), - (547, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dVBgEaqd', '4461883'), - (547, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dVBgEaqd', '4508342'), - (547, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dVBgEaqd', '4568602'), - (547, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVBgEaqd', '4572153'), - (547, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dVBgEaqd', '4585962'), - (547, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dVBgEaqd', '4596356'), - (547, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dVBgEaqd', '4598860'), - (547, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dVBgEaqd', '4598861'), - (547, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dVBgEaqd', '4602797'), - (547, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dVBgEaqd', '4637896'), - (547, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dVBgEaqd', '4642994'), - (547, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dVBgEaqd', '4642995'), - (547, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dVBgEaqd', '4642996'), - (547, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dVBgEaqd', '4642997'), - (547, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dVBgEaqd', '4645687'), - (547, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dVBgEaqd', '4645698'), - (547, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dVBgEaqd', '4645704'), - (547, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dVBgEaqd', '4645705'), - (547, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dVBgEaqd', '4668385'), - (547, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBgEaqd', '6045684'), - (548, 1989, 'attending', '2023-05-14 02:46:23', '2025-12-17 19:47:03', 'amGO55Zm', '6044842'), - (548, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'amGO55Zm', '6067245'), - (548, 2031, 'maybe', '2023-05-24 20:47:34', '2025-12-17 19:47:04', 'amGO55Zm', '6068280'), - (548, 2032, 'attending', '2023-06-01 02:26:29', '2025-12-17 19:47:04', 'amGO55Zm', '6068281'), - (548, 2056, 'attending', '2023-05-13 02:24:04', '2025-12-17 19:47:02', 'amGO55Zm', '6093504'), - (548, 2060, 'attending', '2023-05-15 00:10:33', '2025-12-17 19:47:03', 'amGO55Zm', '6097414'), - (548, 2064, 'attending', '2023-06-23 02:33:04', '2025-12-17 19:46:50', 'amGO55Zm', '6099988'), - (548, 2065, 'attending', '2023-06-12 01:45:29', '2025-12-17 19:46:49', 'amGO55Zm', '6101169'), - (548, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'amGO55Zm', '6101361'), - (548, 2067, 'maybe', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'amGO55Zm', '6101362'), - (548, 2068, 'maybe', '2023-05-14 02:45:18', '2025-12-17 19:47:03', 'amGO55Zm', '6102837'), - (548, 2069, 'attending', '2023-05-18 15:34:16', '2025-12-17 19:47:03', 'amGO55Zm', '6103750'), - (548, 2070, 'maybe', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'amGO55Zm', '6103752'), - (548, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'amGO55Zm', '6107314'), - (548, 2078, 'attending', '2023-05-21 03:39:15', '2025-12-17 19:47:03', 'amGO55Zm', '6114163'), - (548, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'amGO55Zm', '6120034'), - (548, 2090, 'not_attending', '2023-06-01 02:26:15', '2025-12-17 19:47:04', 'amGO55Zm', '6127961'), - (548, 2091, 'attending', '2023-06-04 21:04:21', '2025-12-17 19:47:04', 'amGO55Zm', '6130657'), - (548, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'amGO55Zm', '6136733'), - (548, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'amGO55Zm', '6137989'), - (548, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'amGO55Zm', '6150864'), - (548, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'amGO55Zm', '6155491'), - (548, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'amGO55Zm', '6164417'), - (548, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'amGO55Zm', '6166388'), - (548, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'amGO55Zm', '6176439'), - (548, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'amGO55Zm', '6182410'), - (548, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'amGO55Zm', '6185812'), - (548, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'amGO55Zm', '6187651'), - (548, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'amGO55Zm', '6187963'), - (548, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'amGO55Zm', '6187964'), - (548, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'amGO55Zm', '6187966'), - (548, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'amGO55Zm', '6187967'), - (548, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'amGO55Zm', '6187969'), - (548, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'amGO55Zm', '6334878'), - (548, 2146, 'attending', '2023-07-18 11:47:07', '2025-12-17 19:46:53', 'amGO55Zm', '6335638'), - (548, 2147, 'attending', '2023-07-09 21:35:25', '2025-12-17 19:46:52', 'amGO55Zm', '6335666'), - (548, 2149, 'not_attending', '2023-07-18 11:47:53', '2025-12-17 19:46:53', 'amGO55Zm', '6335682'), - (548, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'amGO55Zm', '6337236'), - (548, 2155, 'not_attending', '2023-07-18 11:48:10', '2025-12-17 19:46:53', 'amGO55Zm', '6337970'), - (548, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'amGO55Zm', '6338308'), - (548, 2159, 'attending', '2023-07-18 11:46:46', '2025-12-17 19:46:53', 'amGO55Zm', '6338355'), - (548, 2160, 'attending', '2023-07-29 22:12:22', '2025-12-17 19:46:54', 'amGO55Zm', '6338358'), - (548, 2162, 'maybe', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'amGO55Zm', '6340845'), - (548, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'amGO55Zm', '6341710'), - (548, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'amGO55Zm', '6342044'), - (548, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'amGO55Zm', '6342298'), - (548, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'amGO55Zm', '6343294'), - (548, 2175, 'not_attending', '2023-07-22 18:59:02', '2025-12-17 19:46:53', 'amGO55Zm', '6346982'), - (548, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'amGO55Zm', '6347034'), - (548, 2177, 'not_attending', '2023-08-05 16:51:57', '2025-12-17 19:46:55', 'amGO55Zm', '6347053'), - (548, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'amGO55Zm', '6347056'), - (548, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'amGO55Zm', '6353830'), - (548, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'amGO55Zm', '6353831'), - (548, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'amGO55Zm', '6357867'), - (548, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'amGO55Zm', '6358652'), - (548, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'amGO55Zm', '6361709'), - (548, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'amGO55Zm', '6361710'), - (548, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'amGO55Zm', '6361711'), - (548, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'amGO55Zm', '6361712'), - (548, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'amGO55Zm', '6361713'), - (548, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'amGO55Zm', '6382573'), - (548, 2241, 'maybe', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'amGO55Zm', '6388604'), - (548, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'amGO55Zm', '6394629'), - (548, 2249, 'maybe', '2023-09-20 17:37:19', '2025-12-17 19:46:45', 'amGO55Zm', '6394630'), - (548, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'amGO55Zm', '6394631'), - (548, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'amGO55Zm', '6440863'), - (548, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'amGO55Zm', '6445440'), - (548, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'amGO55Zm', '6453951'), - (548, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'amGO55Zm', '6461696'), - (548, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'amGO55Zm', '6462129'), - (548, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'amGO55Zm', '6463218'), - (548, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'amGO55Zm', '6472181'), - (548, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'amGO55Zm', '6482693'), - (548, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'amGO55Zm', '6484200'), - (548, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'amGO55Zm', '6484680'), - (548, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'amGO55Zm', '6507741'), - (548, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'amGO55Zm', '6514659'), - (548, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'amGO55Zm', '6514660'), - (548, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'amGO55Zm', '6519103'), - (548, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'amGO55Zm', '6535681'), - (548, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'amGO55Zm', '6584747'), - (548, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'amGO55Zm', '6587097'), - (548, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'amGO55Zm', '6609022'), - (548, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'amGO55Zm', '6632757'), - (548, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'amGO55Zm', '6644187'), - (548, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'amGO55Zm', '6648951'), - (548, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'amGO55Zm', '6648952'), - (548, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'amGO55Zm', '6655401'), - (548, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'amGO55Zm', '6661585'), - (548, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'amGO55Zm', '6661588'), - (548, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'amGO55Zm', '6661589'), - (548, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'amGO55Zm', '6699906'), - (548, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'amGO55Zm', '6701109'), - (548, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'amGO55Zm', '6705219'), - (548, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'amGO55Zm', '6710153'), - (548, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'amGO55Zm', '6711552'), - (548, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'amGO55Zm', '6711553'), - (549, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgxgKPj4', '5195095'), - (549, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgxgKPj4', '5223686'), - (549, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgxgKPj4', '5227432'), - (549, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgxgKPj4', '5247467'), - (549, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgxgKPj4', '5260800'), - (549, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgxgKPj4', '5269930'), - (549, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgxgKPj4', '5271448'), - (549, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AgxgKPj4', '5271449'), - (549, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgxgKPj4', '5276469'), - (549, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgxgKPj4', '5278159'), - (549, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxgKPj4', '6045684'), - (550, 644, 'not_attending', '2021-04-23 04:06:11', '2025-12-17 19:47:46', 'xd96pVzm', '3539919'), - (550, 645, 'maybe', '2021-04-28 16:25:21', '2025-12-17 19:47:46', 'xd96pVzm', '3539920'), - (550, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'xd96pVzm', '3539921'), - (550, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xd96pVzm', '3539922'), - (550, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'xd96pVzm', '3539923'), - (550, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'xd96pVzm', '3583262'), - (550, 729, 'maybe', '2021-04-28 16:24:42', '2025-12-17 19:47:46', 'xd96pVzm', '3668075'), - (550, 756, 'maybe', '2021-04-26 16:49:11', '2025-12-17 19:47:46', 'xd96pVzm', '3704795'), - (550, 764, 'maybe', '2021-04-23 20:40:23', '2025-12-17 19:47:45', 'xd96pVzm', '3720507'), - (550, 775, 'attending', '2021-04-22 12:05:24', '2025-12-17 19:47:45', 'xd96pVzm', '3731062'), - (550, 777, 'maybe', '2021-05-01 08:55:15', '2025-12-17 19:47:46', 'xd96pVzm', '3746248'), - (550, 792, 'maybe', '2021-05-16 22:33:08', '2025-12-17 19:47:46', 'xd96pVzm', '3793156'), - (550, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xd96pVzm', '3974109'), - (550, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xd96pVzm', '3975311'), - (550, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xd96pVzm', '3975312'), - (550, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xd96pVzm', '3994992'), - (550, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd96pVzm', '4014338'), - (550, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xd96pVzm', '4021848'), - (550, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd96pVzm', '4136744'), - (550, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'xd96pVzm', '4136937'), - (550, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd96pVzm', '4136938'), - (550, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd96pVzm', '4136947'), - (550, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd96pVzm', '4225444'), - (550, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd96pVzm', '4239259'), - (550, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd96pVzm', '4250163'), - (550, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd96pVzm', '6045684'), - (551, 2016, 'maybe', '2023-05-04 02:36:46', '2025-12-17 19:47:02', 'pmbMM9Xd', '6061039'), - (551, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'pmbMM9Xd', '6067245'), - (551, 2030, 'attending', '2023-05-04 02:36:34', '2025-12-17 19:47:02', 'pmbMM9Xd', '6068254'), - (551, 2031, 'not_attending', '2023-05-27 18:06:21', '2025-12-17 19:47:04', 'pmbMM9Xd', '6068280'), - (551, 2051, 'attending', '2023-05-03 22:08:20', '2025-12-17 19:47:02', 'pmbMM9Xd', '6083398'), - (551, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'pmbMM9Xd', '6093504'), - (551, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'pmbMM9Xd', '6097414'), - (551, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'pmbMM9Xd', '6097442'), - (551, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'pmbMM9Xd', '6097684'), - (551, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'pmbMM9Xd', '6098762'), - (551, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'pmbMM9Xd', '6101361'), - (551, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'pmbMM9Xd', '6101362'), - (551, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'pmbMM9Xd', '6103752'), - (551, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'pmbMM9Xd', '6107314'), - (551, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'pmbMM9Xd', '6120034'), - (551, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'pmbMM9Xd', '6136733'), - (551, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'pmbMM9Xd', '6137989'), - (551, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'pmbMM9Xd', '6150864'), - (551, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'pmbMM9Xd', '6155491'), - (551, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'pmbMM9Xd', '6164417'), - (551, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'pmbMM9Xd', '6166388'), - (551, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'pmbMM9Xd', '6176439'), - (551, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'pmbMM9Xd', '6182410'), - (551, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'pmbMM9Xd', '6185812'), - (551, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'pmbMM9Xd', '6187651'), - (551, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'pmbMM9Xd', '6187963'), - (551, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'pmbMM9Xd', '6187964'), - (551, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'pmbMM9Xd', '6187966'), - (551, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'pmbMM9Xd', '6187967'), - (551, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'pmbMM9Xd', '6187969'), - (551, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'pmbMM9Xd', '6334878'), - (551, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'pmbMM9Xd', '6337236'), - (551, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'pmbMM9Xd', '6337970'), - (551, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'pmbMM9Xd', '6338308'), - (551, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'pmbMM9Xd', '6341710'), - (551, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'pmbMM9Xd', '6342044'), - (551, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'pmbMM9Xd', '6342298'), - (551, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'pmbMM9Xd', '6343294'), - (551, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'pmbMM9Xd', '6347034'), - (551, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'pmbMM9Xd', '6347056'), - (551, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'pmbMM9Xd', '6353830'), - (551, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'pmbMM9Xd', '6353831'), - (551, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'pmbMM9Xd', '6357867'), - (551, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'pmbMM9Xd', '6358652'), - (551, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'pmbMM9Xd', '6361709'), - (551, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'pmbMM9Xd', '6361710'), - (551, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'pmbMM9Xd', '6361711'), - (551, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'pmbMM9Xd', '6361712'), - (551, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'pmbMM9Xd', '6361713'), - (551, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'pmbMM9Xd', '6382573'), - (551, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'pmbMM9Xd', '6388604'), - (551, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'pmbMM9Xd', '6394629'), - (551, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'pmbMM9Xd', '6394631'), - (551, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'pmbMM9Xd', '6440863'), - (551, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'pmbMM9Xd', '6445440'), - (551, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'pmbMM9Xd', '6453951'), - (551, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'pmbMM9Xd', '6461696'), - (551, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'pmbMM9Xd', '6462129'), - (551, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'pmbMM9Xd', '6463218'), - (551, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'pmbMM9Xd', '6472181'), - (551, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'pmbMM9Xd', '6482693'), - (551, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'pmbMM9Xd', '6484200'), - (551, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'pmbMM9Xd', '6484680'), - (551, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'pmbMM9Xd', '6507741'), - (551, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'pmbMM9Xd', '6514659'), - (551, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'pmbMM9Xd', '6514660'), - (551, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'pmbMM9Xd', '6519103'), - (551, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'pmbMM9Xd', '6535681'), - (551, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'pmbMM9Xd', '6584747'), - (551, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'pmbMM9Xd', '6587097'), - (551, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'pmbMM9Xd', '6609022'), - (551, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'pmbMM9Xd', '6632757'), - (551, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'pmbMM9Xd', '6644187'), - (551, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'pmbMM9Xd', '6648951'), - (551, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'pmbMM9Xd', '6648952'), - (551, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'pmbMM9Xd', '6655401'), - (551, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'pmbMM9Xd', '6661585'), - (551, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'pmbMM9Xd', '6661588'), - (551, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'pmbMM9Xd', '6661589'), - (551, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'pmbMM9Xd', '6699906'), - (551, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'pmbMM9Xd', '6699913'), - (551, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'pmbMM9Xd', '6701109'), - (551, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'pmbMM9Xd', '6705219'), - (551, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'pmbMM9Xd', '6710153'), - (551, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'pmbMM9Xd', '6711552'), - (551, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'pmbMM9Xd', '6711553'), - (551, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'pmbMM9Xd', '6722688'), - (551, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'pmbMM9Xd', '6730620'), - (551, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'pmbMM9Xd', '6740364'), - (551, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'pmbMM9Xd', '6743829'), - (551, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'pmbMM9Xd', '7030380'), - (551, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'pmbMM9Xd', '7033677'), - (551, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'pmbMM9Xd', '7044715'), - (551, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'pmbMM9Xd', '7050318'), - (551, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'pmbMM9Xd', '7050319'), - (551, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'pmbMM9Xd', '7050322'), - (551, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'pmbMM9Xd', '7057804'), - (551, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'pmbMM9Xd', '7072824'), - (551, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'pmbMM9Xd', '7074348'), - (551, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'pmbMM9Xd', '7074364'), - (551, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'pmbMM9Xd', '7089267'), - (551, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'pmbMM9Xd', '7098747'), - (551, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'pmbMM9Xd', '7113468'), - (551, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'pmbMM9Xd', '7114856'), - (551, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'pmbMM9Xd', '7114951'), - (551, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'pmbMM9Xd', '7114955'), - (551, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'pmbMM9Xd', '7114956'), - (551, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'pmbMM9Xd', '7114957'), - (551, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'pmbMM9Xd', '7159484'), - (551, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'pmbMM9Xd', '7178446'), - (551, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'pmbMM9Xd', '7220467'), - (551, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'pmbMM9Xd', '7240354'), - (551, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'pmbMM9Xd', '7251633'), - (551, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'pmbMM9Xd', '7324073'), - (551, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'pmbMM9Xd', '7324074'), - (551, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'pmbMM9Xd', '7324075'), - (551, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'pmbMM9Xd', '7324078'), - (551, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'pmbMM9Xd', '7324082'), - (551, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'pmbMM9Xd', '7331457'), - (551, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'pmbMM9Xd', '7363643'), - (551, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'pmbMM9Xd', '7368606'), - (551, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'pmbMM9Xd', '7397462'), - (551, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'pmbMM9Xd', '7424275'), - (551, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'pmbMM9Xd', '7432751'), - (551, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'pmbMM9Xd', '7432752'), - (551, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'pmbMM9Xd', '7432753'), - (551, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432754'), - (551, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432755'), - (551, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432756'), - (551, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432758'), - (551, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432759'), - (551, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'pmbMM9Xd', '7433834'), - (551, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'pmbMM9Xd', '7470197'), - (551, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'pmbMM9Xd', '7685613'), - (551, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'pmbMM9Xd', '7688194'), - (551, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'pmbMM9Xd', '7688196'), - (551, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'pmbMM9Xd', '7688289'), - (551, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'pmbMM9Xd', '7692763'), - (551, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'pmbMM9Xd', '7697552'), - (551, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'pmbMM9Xd', '7699878'), - (551, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'pmbMM9Xd', '7704043'), - (551, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'pmbMM9Xd', '7712467'), - (551, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'pmbMM9Xd', '7713585'), - (551, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'pmbMM9Xd', '7713586'), - (551, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'pmbMM9Xd', '7738518'), - (551, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'pmbMM9Xd', '7750636'), - (551, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'pmbMM9Xd', '7796540'), - (551, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'pmbMM9Xd', '7796541'), - (551, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'pmbMM9Xd', '7796542'), - (551, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'pmbMM9Xd', '7825913'), - (551, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'pmbMM9Xd', '7826209'), - (551, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'pmbMM9Xd', '7834742'), - (551, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'pmbMM9Xd', '7842108'), - (551, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'pmbMM9Xd', '7842902'), - (551, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'pmbMM9Xd', '7842903'), - (551, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'pmbMM9Xd', '7842904'), - (551, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'pmbMM9Xd', '7842905'), - (551, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'pmbMM9Xd', '7855719'), - (551, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'pmbMM9Xd', '7860683'), - (551, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'pmbMM9Xd', '7860684'), - (551, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'pmbMM9Xd', '7866095'), - (551, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'pmbMM9Xd', '7869170'), - (551, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'pmbMM9Xd', '7869188'), - (551, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'pmbMM9Xd', '7869201'), - (551, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'pmbMM9Xd', '7877465'), - (551, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'pmbMM9Xd', '7888250'), - (551, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'pmbMM9Xd', '7904777'), - (551, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'pmbMM9Xd', '8349164'), - (551, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'pmbMM9Xd', '8349545'), - (551, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'pmbMM9Xd', '8368028'), - (551, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'pmbMM9Xd', '8368029'), - (551, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'pmbMM9Xd', '8388462'), - (551, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'pmbMM9Xd', '8400273'), - (551, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'pmbMM9Xd', '8400275'), - (551, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'pmbMM9Xd', '8400276'), - (551, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'pmbMM9Xd', '8404977'), - (551, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'pmbMM9Xd', '8430783'), - (551, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'pmbMM9Xd', '8430784'), - (551, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'pmbMM9Xd', '8430799'), - (551, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'pmbMM9Xd', '8430800'), - (551, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'pmbMM9Xd', '8430801'), - (551, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'pmbMM9Xd', '8438709'), - (551, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'pmbMM9Xd', '8457738'), - (551, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'pmbMM9Xd', '8459566'), - (551, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'pmbMM9Xd', '8459567'), - (551, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'pmbMM9Xd', '8461032'), - (551, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'pmbMM9Xd', '8477877'), - (551, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'pmbMM9Xd', '8485688'), - (551, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'pmbMM9Xd', '8490587'), - (551, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'pmbMM9Xd', '8493552'), - (551, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'pmbMM9Xd', '8493553'), - (551, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'pmbMM9Xd', '8493554'), - (551, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'pmbMM9Xd', '8493555'), - (551, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'pmbMM9Xd', '8493556'), - (551, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'pmbMM9Xd', '8493557'), - (551, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'pmbMM9Xd', '8493558'), - (551, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'pmbMM9Xd', '8493559'), - (551, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'pmbMM9Xd', '8493560'), - (551, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'pmbMM9Xd', '8493561'), - (551, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'pmbMM9Xd', '8493572'), - (551, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'pmbMM9Xd', '8540725'), - (551, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'pmbMM9Xd', '8555421'), - (552, 2994, 'not_attending', '2025-03-05 05:48:24', '2025-12-17 19:46:18', 'd9XQBry4', '7842905'), - (552, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd9XQBry4', '7869170'), - (552, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd9XQBry4', '7869188'), - (552, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'd9XQBry4', '7872088'), - (552, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd9XQBry4', '7877465'), - (552, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'd9XQBry4', '7878570'), - (552, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'd9XQBry4', '7880977'), - (552, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd9XQBry4', '7888250'), - (552, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'd9XQBry4', '7903856'), - (552, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'd9XQBry4', '8347770'), - (552, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd9XQBry4', '8349164'), - (552, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd9XQBry4', '8349545'), - (552, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd9XQBry4', '8353584'), - (552, 3114, 'not_attending', '2025-05-02 21:35:08', '2025-12-17 19:46:20', 'd9XQBry4', '8357180'), - (553, 2285, 'attending', '2023-10-23 16:07:08', '2025-12-17 19:46:47', '41G2ZoEm', '6460929'), - (553, 2296, 'attending', '2023-10-23 16:06:55', '2025-12-17 19:46:47', '41G2ZoEm', '6468393'), - (553, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41G2ZoEm', '6482693'), - (553, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '41G2ZoEm', '6484200'), - (553, 2307, 'attending', '2023-10-24 19:24:11', '2025-12-17 19:46:46', '41G2ZoEm', '6484680'), - (553, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41G2ZoEm', '6507741'), - (553, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41G2ZoEm', '6514659'), - (553, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41G2ZoEm', '6514660'), - (553, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41G2ZoEm', '6519103'), - (553, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41G2ZoEm', '6535681'), - (553, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', '41G2ZoEm', '6545076'), - (553, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41G2ZoEm', '6584747'), - (553, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41G2ZoEm', '6587097'), - (553, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41G2ZoEm', '6609022'), - (553, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41G2ZoEm', '6632757'), - (553, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41G2ZoEm', '6644187'), - (553, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41G2ZoEm', '6648951'), - (553, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41G2ZoEm', '6648952'), - (553, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', '41G2ZoEm', '6651141'), - (553, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41G2ZoEm', '6655401'), - (553, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41G2ZoEm', '6661585'), - (553, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41G2ZoEm', '6661588'), - (553, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41G2ZoEm', '6661589'), - (553, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41G2ZoEm', '6699906'), - (553, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41G2ZoEm', '6699913'), - (553, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41G2ZoEm', '6701109'), - (553, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41G2ZoEm', '6705219'), - (553, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41G2ZoEm', '6710153'), - (553, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41G2ZoEm', '6711552'), - (553, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '41G2ZoEm', '6711553'), - (553, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41G2ZoEm', '6722688'), - (553, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41G2ZoEm', '6730620'), - (553, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '41G2ZoEm', '6730642'), - (553, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41G2ZoEm', '6740364'), - (553, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41G2ZoEm', '6743829'), - (553, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41G2ZoEm', '7030380'), - (553, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41G2ZoEm', '7033677'), - (553, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '41G2ZoEm', '7035415'), - (553, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '41G2ZoEm', '7044715'), - (553, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '41G2ZoEm', '7050318'), - (553, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '41G2ZoEm', '7050319'), - (553, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '41G2ZoEm', '7050322'), - (553, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '41G2ZoEm', '7057804'), - (553, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '41G2ZoEm', '7072824'), - (553, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '41G2ZoEm', '7074348'), - (553, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '41G2ZoEm', '7089267'), - (553, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '41G2ZoEm', '7098747'), - (553, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '41G2ZoEm', '7113468'), - (553, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '41G2ZoEm', '7114856'), - (553, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '41G2ZoEm', '7114951'), - (553, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '41G2ZoEm', '7114955'), - (553, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '41G2ZoEm', '7114956'), - (553, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '41G2ZoEm', '7153615'), - (553, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '41G2ZoEm', '7159484'), - (553, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '41G2ZoEm', '7178446'), - (554, 1274, 'attending', '2022-04-02 14:42:26', '2025-12-17 19:47:26', 'dVb1zMpd', '5186585'), - (554, 1281, 'attending', '2022-04-09 22:23:59', '2025-12-17 19:47:27', 'dVb1zMpd', '5190437'), - (554, 1284, 'attending', '2022-04-10 03:21:26', '2025-12-17 19:47:27', 'dVb1zMpd', '5195095'), - (554, 1302, 'maybe', '2022-04-09 09:29:21', '2025-12-17 19:47:27', 'dVb1zMpd', '5220867'), - (554, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVb1zMpd', '5223686'), - (554, 1308, 'maybe', '2022-04-13 11:06:14', '2025-12-17 19:47:27', 'dVb1zMpd', '5226703'), - (554, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVb1zMpd', '5227432'), - (554, 1315, 'maybe', '2022-04-11 03:20:30', '2025-12-17 19:47:27', 'dVb1zMpd', '5237522'), - (554, 1320, 'not_attending', '2022-04-24 02:38:22', '2025-12-17 19:47:27', 'dVb1zMpd', '5238354'), - (554, 1322, 'attending', '2022-04-11 13:26:37', '2025-12-17 19:47:27', 'dVb1zMpd', '5238356'), - (554, 1323, 'attending', '2022-04-27 00:16:01', '2025-12-17 19:47:27', 'dVb1zMpd', '5238357'), - (554, 1326, 'not_attending', '2022-04-25 02:47:15', '2025-12-17 19:47:28', 'dVb1zMpd', '5238362'), - (554, 1327, 'not_attending', '2022-04-25 22:42:16', '2025-12-17 19:47:27', 'dVb1zMpd', '5238445'), - (554, 1331, 'attending', '2022-04-20 13:09:16', '2025-12-17 19:47:27', 'dVb1zMpd', '5242156'), - (554, 1332, 'maybe', '2022-04-15 07:05:39', '2025-12-17 19:47:27', 'dVb1zMpd', '5243274'), - (554, 1340, 'attending', '2022-04-25 02:46:40', '2025-12-17 19:47:27', 'dVb1zMpd', '5245754'), - (554, 1341, 'not_attending', '2022-05-01 03:05:00', '2025-12-17 19:47:28', 'dVb1zMpd', '5245755'), - (554, 1346, 'attending', '2022-04-22 22:56:12', '2025-12-17 19:47:27', 'dVb1zMpd', '5247467'), - (554, 1348, 'maybe', '2022-05-01 03:05:27', '2025-12-17 19:47:28', 'dVb1zMpd', '5247605'), - (554, 1351, 'maybe', '2022-05-02 16:03:41', '2025-12-17 19:47:28', 'dVb1zMpd', '5251561'), - (554, 1360, 'maybe', '2022-04-27 00:15:47', '2025-12-17 19:47:27', 'dVb1zMpd', '5260197'), - (554, 1362, 'attending', '2022-04-25 23:03:49', '2025-12-17 19:47:28', 'dVb1zMpd', '5260800'), - (554, 1364, 'maybe', '2022-05-03 18:01:18', '2025-12-17 19:47:28', 'dVb1zMpd', '5261598'), - (554, 1368, 'attending', '2022-04-29 01:48:30', '2025-12-17 19:47:28', 'dVb1zMpd', '5262783'), - (554, 1372, 'attending', '2022-05-01 02:35:57', '2025-12-17 19:47:28', 'dVb1zMpd', '5264352'), - (554, 1374, 'attending', '2022-05-01 02:35:34', '2025-12-17 19:47:28', 'dVb1zMpd', '5269930'), - (554, 1375, 'attending', '2022-05-05 18:00:07', '2025-12-17 19:47:28', 'dVb1zMpd', '5269932'), - (554, 1378, 'attending', '2022-05-04 16:29:35', '2025-12-17 19:47:28', 'dVb1zMpd', '5271448'), - (554, 1379, 'attending', '2022-05-04 16:29:38', '2025-12-17 19:47:29', 'dVb1zMpd', '5271449'), - (554, 1380, 'attending', '2022-05-28 08:15:05', '2025-12-17 19:47:30', 'dVb1zMpd', '5271450'), - (554, 1382, 'attending', '2022-05-09 11:43:14', '2025-12-17 19:47:28', 'dVb1zMpd', '5276350'), - (554, 1383, 'attending', '2022-05-12 11:28:12', '2025-12-17 19:47:28', 'dVb1zMpd', '5276469'), - (554, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVb1zMpd', '5278159'), - (554, 1391, 'not_attending', '2022-05-08 06:20:12', '2025-12-17 19:47:28', 'dVb1zMpd', '5279531'), - (554, 1392, 'attending', '2022-05-10 22:39:51', '2025-12-17 19:47:28', 'dVb1zMpd', '5279532'), - (554, 1401, 'attending', '2022-05-18 16:37:18', '2025-12-17 19:47:29', 'dVb1zMpd', '5286295'), - (554, 1403, 'maybe', '2022-05-21 02:22:19', '2025-12-17 19:47:29', 'dVb1zMpd', '5288052'), - (554, 1406, 'attending', '2022-05-15 02:45:32', '2025-12-17 19:47:29', 'dVb1zMpd', '5288619'), - (554, 1407, 'attending', '2022-05-29 13:01:40', '2025-12-17 19:47:30', 'dVb1zMpd', '5363695'), - (554, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVb1zMpd', '5365960'), - (554, 1409, 'maybe', '2022-05-21 02:18:18', '2025-12-17 19:47:30', 'dVb1zMpd', '5367032'), - (554, 1412, 'not_attending', '2022-05-18 16:36:44', '2025-12-17 19:47:29', 'dVb1zMpd', '5367532'), - (554, 1414, 'attending', '2022-05-18 16:37:41', '2025-12-17 19:47:29', 'dVb1zMpd', '5368445'), - (554, 1415, 'attending', '2022-05-22 14:17:48', '2025-12-17 19:47:30', 'dVb1zMpd', '5368973'), - (554, 1419, 'attending', '2022-06-08 06:35:51', '2025-12-17 19:47:30', 'dVb1zMpd', '5373081'), - (554, 1423, 'maybe', '2022-06-13 01:30:05', '2025-12-17 19:47:17', 'dVb1zMpd', '5375727'), - (554, 1424, 'attending', '2022-05-24 02:51:13', '2025-12-17 19:47:30', 'dVb1zMpd', '5375772'), - (554, 1427, 'not_attending', '2022-05-25 16:59:04', '2025-12-17 19:47:30', 'dVb1zMpd', '5376074'), - (554, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVb1zMpd', '5378247'), - (554, 1431, 'attending', '2022-06-02 17:47:25', '2025-12-17 19:47:30', 'dVb1zMpd', '5389605'), - (554, 1436, 'attending', '2022-06-01 05:46:22', '2025-12-17 19:47:30', 'dVb1zMpd', '5394292'), - (554, 1438, 'maybe', '2022-06-01 16:46:29', '2025-12-17 19:47:30', 'dVb1zMpd', '5395032'), - (554, 1440, 'not_attending', '2022-06-08 02:40:59', '2025-12-17 19:47:30', 'dVb1zMpd', '5396080'), - (554, 1442, 'attending', '2022-06-12 05:44:25', '2025-12-17 19:47:17', 'dVb1zMpd', '5397265'), - (554, 1444, 'maybe', '2022-06-11 17:34:16', '2025-12-17 19:47:30', 'dVb1zMpd', '5397614'), - (554, 1451, 'attending', '2022-06-10 03:14:57', '2025-12-17 19:47:17', 'dVb1zMpd', '5403967'), - (554, 1454, 'attending', '2022-06-12 05:40:36', '2025-12-17 19:47:31', 'dVb1zMpd', '5404771'), - (554, 1455, 'attending', '2022-06-12 05:40:19', '2025-12-17 19:47:31', 'dVb1zMpd', '5404772'), - (554, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVb1zMpd', '5404786'), - (554, 1460, 'maybe', '2022-06-12 05:28:15', '2025-12-17 19:47:31', 'dVb1zMpd', '5404817'), - (554, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVb1zMpd', '5405203'), - (554, 1463, 'maybe', '2022-06-13 04:05:10', '2025-12-17 19:47:31', 'dVb1zMpd', '5405208'), - (554, 1466, 'maybe', '2022-06-16 05:10:16', '2025-12-17 19:47:17', 'dVb1zMpd', '5406427'), - (554, 1473, 'attending', '2022-06-13 03:51:02', '2025-12-17 19:47:31', 'dVb1zMpd', '5407267'), - (554, 1475, 'attending', '2022-06-14 05:24:05', '2025-12-17 19:47:17', 'dVb1zMpd', '5408108'), - (554, 1478, 'maybe', '2022-06-15 08:28:48', '2025-12-17 19:47:19', 'dVb1zMpd', '5408794'), - (554, 1480, 'attending', '2022-06-22 09:12:07', '2025-12-17 19:47:19', 'dVb1zMpd', '5411699'), - (554, 1482, 'not_attending', '2022-06-26 02:29:29', '2025-12-17 19:47:19', 'dVb1zMpd', '5412550'), - (554, 1484, 'attending', '2022-06-22 09:11:08', '2025-12-17 19:47:17', 'dVb1zMpd', '5415046'), - (554, 1485, 'not_attending', '2022-06-24 14:11:08', '2025-12-17 19:47:17', 'dVb1zMpd', '5416276'), - (554, 1488, 'maybe', '2022-07-04 17:59:32', '2025-12-17 19:47:19', 'dVb1zMpd', '5420154'), - (554, 1490, 'attending', '2022-06-28 15:48:43', '2025-12-17 19:47:19', 'dVb1zMpd', '5420156'), - (554, 1495, 'maybe', '2022-07-06 02:05:22', '2025-12-17 19:47:19', 'dVb1zMpd', '5422086'), - (554, 1496, 'attending', '2022-06-26 14:46:30', '2025-12-17 19:47:19', 'dVb1zMpd', '5422404'), - (554, 1498, 'maybe', '2022-07-02 14:47:41', '2025-12-17 19:47:19', 'dVb1zMpd', '5422406'), - (554, 1501, 'attending', '2022-06-28 15:47:11', '2025-12-17 19:47:19', 'dVb1zMpd', '5424546'), - (554, 1502, 'maybe', '2022-06-28 17:51:13', '2025-12-17 19:47:19', 'dVb1zMpd', '5424565'), - (554, 1504, 'attending', '2022-07-05 19:08:34', '2025-12-17 19:47:19', 'dVb1zMpd', '5426882'), - (554, 1505, 'attending', '2022-07-05 10:28:06', '2025-12-17 19:47:19', 'dVb1zMpd', '5427083'), - (554, 1508, 'attending', '2022-07-10 03:20:53', '2025-12-17 19:47:19', 'dVb1zMpd', '5433453'), - (554, 1509, 'maybe', '2022-07-06 02:02:37', '2025-12-17 19:47:19', 'dVb1zMpd', '5434019'), - (554, 1511, 'attending', '2022-07-08 15:28:40', '2025-12-17 19:47:19', 'dVb1zMpd', '5437733'), - (554, 1513, 'attending', '2022-07-09 06:09:15', '2025-12-17 19:47:19', 'dVb1zMpd', '5441125'), - (554, 1514, 'attending', '2022-07-09 06:10:32', '2025-12-17 19:47:20', 'dVb1zMpd', '5441126'), - (554, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVb1zMpd', '5441128'), - (554, 1516, 'attending', '2022-08-06 22:12:28', '2025-12-17 19:47:23', 'dVb1zMpd', '5441129'), - (554, 1517, 'attending', '2022-08-06 22:12:32', '2025-12-17 19:47:23', 'dVb1zMpd', '5441130'), - (554, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVb1zMpd', '5441131'), - (554, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dVb1zMpd', '5441132'), - (554, 1520, 'maybe', '2022-07-10 03:45:39', '2025-12-17 19:47:19', 'dVb1zMpd', '5441645'), - (554, 1528, 'attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVb1zMpd', '5446643'), - (554, 1531, 'maybe', '2022-07-16 16:20:06', '2025-12-17 19:47:19', 'dVb1zMpd', '5448756'), - (554, 1536, 'attending', '2022-07-16 16:30:20', '2025-12-17 19:47:20', 'dVb1zMpd', '5449068'), - (554, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVb1zMpd', '5453325'), - (554, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVb1zMpd', '5454516'), - (554, 1544, 'attending', '2022-09-03 18:04:54', '2025-12-17 19:47:11', 'dVb1zMpd', '5454517'), - (554, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVb1zMpd', '5454605'), - (554, 1546, 'maybe', '2022-07-20 17:22:47', '2025-12-17 19:47:20', 'dVb1zMpd', '5454607'), - (554, 1547, 'not_attending', '2022-07-23 00:22:18', '2025-12-17 19:47:20', 'dVb1zMpd', '5454608'), - (554, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVb1zMpd', '5455037'), - (554, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVb1zMpd', '5461278'), - (554, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVb1zMpd', '5469480'), - (554, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVb1zMpd', '5471073'), - (554, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVb1zMpd', '5474663'), - (554, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVb1zMpd', '5482022'), - (554, 1575, 'attending', '2022-08-23 09:47:14', '2025-12-17 19:47:23', 'dVb1zMpd', '5482250'), - (554, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVb1zMpd', '5482793'), - (554, 1580, 'attending', '2022-08-08 05:15:56', '2025-12-17 19:47:22', 'dVb1zMpd', '5488912'), - (554, 1584, 'maybe', '2022-08-27 15:43:30', '2025-12-17 19:47:23', 'dVb1zMpd', '5492004'), - (554, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVb1zMpd', '5492192'), - (554, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVb1zMpd', '5493139'), - (554, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVb1zMpd', '5493200'), - (554, 1603, 'maybe', '2022-08-12 03:28:56', '2025-12-17 19:47:23', 'dVb1zMpd', '5497895'), - (554, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVb1zMpd', '5502188'), - (554, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVb1zMpd', '5505059'), - (554, 1615, 'attending', '2022-08-31 05:28:18', '2025-12-17 19:47:23', 'dVb1zMpd', '5509055'), - (554, 1619, 'maybe', '2022-08-23 09:47:33', '2025-12-17 19:47:23', 'dVb1zMpd', '5512862'), - (554, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVb1zMpd', '5513985'), - (554, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dVb1zMpd', '5519981'), - (554, 1628, 'maybe', '2022-08-27 12:35:32', '2025-12-17 19:47:23', 'dVb1zMpd', '5522500'), - (554, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVb1zMpd', '5522550'), - (554, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVb1zMpd', '5534683'), - (554, 1631, 'attending', '2022-08-27 12:33:13', '2025-12-17 19:47:23', 'dVb1zMpd', '5534684'), - (554, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVb1zMpd', '5537735'), - (554, 1637, 'attending', '2022-08-30 17:18:04', '2025-12-17 19:47:24', 'dVb1zMpd', '5539591'), - (554, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVb1zMpd', '5540859'), - (554, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVb1zMpd', '5546619'), - (554, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVb1zMpd', '5555245'), - (554, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVb1zMpd', '5557747'), - (554, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVb1zMpd', '5560255'), - (554, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVb1zMpd', '5562906'), - (554, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVb1zMpd', '5600604'), - (554, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVb1zMpd', '5605544'), - (554, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'dVb1zMpd', '5606737'), - (554, 1719, 'maybe', '2022-10-07 08:22:40', '2025-12-17 19:47:12', 'dVb1zMpd', '5630958'), - (554, 1720, 'maybe', '2022-10-15 07:30:32', '2025-12-17 19:47:12', 'dVb1zMpd', '5630959'), - (554, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVb1zMpd', '5630960'), - (554, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVb1zMpd', '5630961'), - (554, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVb1zMpd', '5630962'), - (554, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVb1zMpd', '5630966'), - (554, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVb1zMpd', '5630967'), - (554, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVb1zMpd', '5630968'), - (554, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVb1zMpd', '5635406'), - (554, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVb1zMpd', '5638765'), - (554, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVb1zMpd', '5640097'), - (554, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVb1zMpd', '5640843'), - (554, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVb1zMpd', '5641521'), - (554, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVb1zMpd', '5642818'), - (554, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVb1zMpd', '5652395'), - (554, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVb1zMpd', '5670445'), - (554, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVb1zMpd', '5671637'), - (554, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVb1zMpd', '5672329'), - (554, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVb1zMpd', '5674057'), - (554, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVb1zMpd', '5674060'), - (554, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVb1zMpd', '5677461'), - (554, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVb1zMpd', '5698046'), - (554, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVb1zMpd', '5699760'), - (554, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVb1zMpd', '5741601'), - (554, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVb1zMpd', '5763458'), - (554, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVb1zMpd', '5774172'), - (554, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVb1zMpd', '5818247'), - (554, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVb1zMpd', '5819471'), - (554, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVb1zMpd', '5827739'), - (554, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVb1zMpd', '5844306'), - (554, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVb1zMpd', '5850159'), - (554, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVb1zMpd', '5858999'), - (554, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVb1zMpd', '5871984'), - (554, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVb1zMpd', '5876354'), - (554, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVb1zMpd', '5880939'), - (554, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVb1zMpd', '5887890'), - (554, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVb1zMpd', '5888598'), - (554, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVb1zMpd', '5893260'), - (554, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVb1zMpd', '6045684'), - (554, 2065, 'attending', '2023-06-15 02:26:56', '2025-12-17 19:46:49', 'dVb1zMpd', '6101169'), - (554, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dVb1zMpd', '6150864'), - (554, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dVb1zMpd', '6155491'), - (554, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dVb1zMpd', '6164417'), - (554, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dVb1zMpd', '6166388'), - (554, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dVb1zMpd', '6176439'), - (554, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dVb1zMpd', '6182410'), - (554, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dVb1zMpd', '6185812'), - (554, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dVb1zMpd', '6187651'), - (554, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dVb1zMpd', '6187963'), - (554, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dVb1zMpd', '6187964'), - (554, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dVb1zMpd', '6187966'), - (554, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dVb1zMpd', '6187967'), - (554, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dVb1zMpd', '6187969'), - (554, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dVb1zMpd', '6334878'), - (554, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVb1zMpd', '6337236'), - (554, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVb1zMpd', '6337970'), - (554, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dVb1zMpd', '6338308'), - (554, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVb1zMpd', '6340845'), - (554, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVb1zMpd', '6341710'), - (554, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVb1zMpd', '6342044'), - (554, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVb1zMpd', '6342298'), - (554, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dVb1zMpd', '6343294'), - (554, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVb1zMpd', '6347034'), - (554, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVb1zMpd', '6347056'), - (554, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVb1zMpd', '6353830'), - (554, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVb1zMpd', '6353831'), - (554, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVb1zMpd', '6357867'), - (554, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVb1zMpd', '6358652'), - (554, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVb1zMpd', '6361709'), - (554, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVb1zMpd', '6361710'), - (554, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVb1zMpd', '6361711'), - (554, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVb1zMpd', '6361712'), - (554, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVb1zMpd', '6361713'), - (554, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVb1zMpd', '6382573'), - (554, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVb1zMpd', '6388604'), - (554, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVb1zMpd', '6394629'), - (554, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVb1zMpd', '6394631'), - (554, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVb1zMpd', '6440863'), - (554, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVb1zMpd', '6445440'), - (554, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVb1zMpd', '6453951'), - (554, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVb1zMpd', '6461696'), - (554, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVb1zMpd', '6462129'), - (554, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVb1zMpd', '6463218'), - (554, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVb1zMpd', '6472181'), - (554, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVb1zMpd', '6482693'), - (554, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dVb1zMpd', '6484200'), - (554, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dVb1zMpd', '6484680'), - (554, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVb1zMpd', '6507741'), - (554, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVb1zMpd', '6514659'), - (554, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVb1zMpd', '6514660'), - (554, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVb1zMpd', '6519103'), - (554, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVb1zMpd', '6535681'), - (554, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVb1zMpd', '6584747'), - (554, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVb1zMpd', '6587097'), - (554, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVb1zMpd', '6609022'), - (554, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVb1zMpd', '6632757'), - (554, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVb1zMpd', '6644187'), - (554, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVb1zMpd', '6648951'), - (554, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVb1zMpd', '6648952'), - (554, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVb1zMpd', '6655401'), - (554, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVb1zMpd', '6661585'), - (554, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVb1zMpd', '6661588'), - (554, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVb1zMpd', '6661589'), - (554, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVb1zMpd', '6699906'), - (554, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVb1zMpd', '6701109'), - (554, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVb1zMpd', '6705219'), - (554, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVb1zMpd', '6710153'), - (554, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVb1zMpd', '6711552'), - (554, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVb1zMpd', '6711553'), - (556, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AnjKD2pA', '7074364'), - (556, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AnjKD2pA', '7324073'), - (556, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AnjKD2pA', '7324074'), - (556, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AnjKD2pA', '7324075'), - (556, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AnjKD2pA', '7324078'), - (556, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AnjKD2pA', '7324082'), - (556, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AnjKD2pA', '7331457'), - (556, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AnjKD2pA', '7363643'), - (556, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AnjKD2pA', '7368606'), - (556, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AnjKD2pA', '7397462'), - (556, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AnjKD2pA', '7424275'), - (556, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AnjKD2pA', '7424276'), - (556, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AnjKD2pA', '7432751'), - (556, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AnjKD2pA', '7432752'), - (556, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AnjKD2pA', '7432753'), - (556, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AnjKD2pA', '7432754'), - (556, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AnjKD2pA', '7432755'), - (556, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AnjKD2pA', '7432756'), - (556, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AnjKD2pA', '7432758'), - (556, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AnjKD2pA', '7432759'), - (556, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AnjKD2pA', '7433834'), - (556, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AnjKD2pA', '7470197'), - (556, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AnjKD2pA', '7685613'), - (556, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AnjKD2pA', '7688194'), - (556, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AnjKD2pA', '7688196'), - (556, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AnjKD2pA', '7688289'), - (556, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AnjKD2pA', '7692763'), - (556, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AnjKD2pA', '7697552'), - (556, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AnjKD2pA', '7699878'), - (556, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AnjKD2pA', '7704043'), - (556, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AnjKD2pA', '7712467'), - (556, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'AnjKD2pA', '7713585'), - (556, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AnjKD2pA', '7713586'), - (556, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AnjKD2pA', '7738518'), - (556, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AnjKD2pA', '7750636'), - (556, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AnjKD2pA', '7796540'), - (556, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AnjKD2pA', '7796541'), - (556, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AnjKD2pA', '7796542'), - (556, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AnjKD2pA', '7825913'), - (556, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AnjKD2pA', '7826209'), - (556, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AnjKD2pA', '7834742'), - (556, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AnjKD2pA', '7842108'), - (556, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AnjKD2pA', '7842902'), - (556, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AnjKD2pA', '7842903'), - (556, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AnjKD2pA', '7842904'), - (556, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AnjKD2pA', '7842905'), - (556, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AnjKD2pA', '7855719'), - (556, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AnjKD2pA', '7860683'), - (556, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AnjKD2pA', '7860684'), - (556, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AnjKD2pA', '7866095'), - (556, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AnjKD2pA', '7869170'), - (556, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AnjKD2pA', '7869188'), - (556, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AnjKD2pA', '7869201'), - (556, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AnjKD2pA', '7877465'), - (556, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AnjKD2pA', '7888250'), - (556, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AnjKD2pA', '7904777'), - (556, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AnjKD2pA', '8349164'), - (556, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AnjKD2pA', '8349545'), - (556, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AnjKD2pA', '8353584'), - (556, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AnjKD2pA', '8368028'), - (556, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AnjKD2pA', '8368029'), - (556, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AnjKD2pA', '8388462'), - (556, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AnjKD2pA', '8400273'), - (556, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AnjKD2pA', '8400274'), - (556, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AnjKD2pA', '8400275'), - (556, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AnjKD2pA', '8400276'), - (556, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AnjKD2pA', '8404977'), - (556, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AnjKD2pA', '8430783'), - (556, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AnjKD2pA', '8430784'), - (556, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AnjKD2pA', '8430799'), - (556, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AnjKD2pA', '8430800'), - (556, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AnjKD2pA', '8430801'), - (556, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AnjKD2pA', '8438709'), - (556, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AnjKD2pA', '8457738'), - (556, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AnjKD2pA', '8459566'), - (556, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AnjKD2pA', '8459567'), - (556, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AnjKD2pA', '8461032'), - (556, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnjKD2pA', '8477877'), - (556, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnjKD2pA', '8485688'), - (556, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnjKD2pA', '8490587'), - (556, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnjKD2pA', '8493552'), - (556, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnjKD2pA', '8493553'), - (556, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnjKD2pA', '8493554'), - (556, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnjKD2pA', '8493555'), - (556, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnjKD2pA', '8493556'), - (556, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnjKD2pA', '8493557'), - (556, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnjKD2pA', '8493558'), - (556, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnjKD2pA', '8493559'), - (556, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnjKD2pA', '8493560'), - (556, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnjKD2pA', '8493561'), - (556, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnjKD2pA', '8493572'), - (556, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnjKD2pA', '8540725'), - (556, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnjKD2pA', '8555421'), - (557, 791, 'maybe', '2021-05-10 22:10:00', '2025-12-17 19:47:46', '8d8PrVvd', '3792735'), - (557, 792, 'maybe', '2021-05-07 17:57:03', '2025-12-17 19:47:46', '8d8PrVvd', '3793156'), - (557, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '8d8PrVvd', '5630966'), - (557, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '8d8PrVvd', '5630967'), - (557, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '8d8PrVvd', '5630968'), - (557, 1727, 'maybe', '2022-12-01 22:57:37', '2025-12-17 19:47:16', '8d8PrVvd', '5630969'), - (557, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '8d8PrVvd', '5642818'), - (557, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '8d8PrVvd', '5670445'), - (557, 1777, 'maybe', '2022-11-07 04:56:28', '2025-12-17 19:47:15', '8d8PrVvd', '5693021'), - (557, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '8d8PrVvd', '5699760'), - (557, 1785, 'attending', '2022-11-15 23:10:33', '2025-12-17 19:47:15', '8d8PrVvd', '5702414'), - (557, 1786, 'not_attending', '2022-11-08 23:40:43', '2025-12-17 19:47:15', '8d8PrVvd', '5727232'), - (557, 1789, 'attending', '2022-11-07 04:47:34', '2025-12-17 19:47:15', '8d8PrVvd', '5727274'), - (557, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '8d8PrVvd', '5741601'), - (557, 1795, 'maybe', '2022-11-17 10:53:21', '2025-12-17 19:47:16', '8d8PrVvd', '5754366'), - (557, 1798, 'maybe', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '8d8PrVvd', '5763458'), - (557, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '8d8PrVvd', '5774172'), - (557, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '8d8PrVvd', '5818247'), - (557, 1834, 'not_attending', '2022-12-07 22:18:27', '2025-12-17 19:47:17', '8d8PrVvd', '5819470'), - (557, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '8d8PrVvd', '5819471'), - (557, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '8d8PrVvd', '5827739'), - (557, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '8d8PrVvd', '5844306'), - (557, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '8d8PrVvd', '5850159'), - (557, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '8d8PrVvd', '5858999'), - (557, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '8d8PrVvd', '5871984'), - (557, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '8d8PrVvd', '5876354'), - (557, 1864, 'attending', '2023-01-21 20:02:49', '2025-12-17 19:47:05', '8d8PrVvd', '5879675'), - (557, 1865, 'maybe', '2023-01-27 23:54:18', '2025-12-17 19:47:06', '8d8PrVvd', '5879676'), - (557, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '8d8PrVvd', '5880939'), - (557, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '8d8PrVvd', '5880940'), - (557, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '8d8PrVvd', '5880942'), - (557, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '8d8PrVvd', '5880943'), - (557, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '8d8PrVvd', '5887890'), - (557, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '8d8PrVvd', '5888598'), - (557, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '8d8PrVvd', '5893260'), - (557, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '8d8PrVvd', '5899826'), - (557, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '8d8PrVvd', '5900199'), - (557, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '8d8PrVvd', '5900200'), - (557, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '8d8PrVvd', '5900202'), - (557, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '8d8PrVvd', '5900203'), - (557, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '8d8PrVvd', '5901108'), - (557, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '8d8PrVvd', '5901126'), - (557, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '8d8PrVvd', '5909655'), - (557, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '8d8PrVvd', '5910522'), - (557, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '8d8PrVvd', '5910526'), - (557, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '8d8PrVvd', '5910528'), - (557, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '8d8PrVvd', '5916219'), - (557, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '8d8PrVvd', '5936234'), - (557, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '8d8PrVvd', '5958351'), - (557, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '8d8PrVvd', '5959751'), - (557, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '8d8PrVvd', '5959755'), - (557, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '8d8PrVvd', '5960055'), - (557, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '8d8PrVvd', '5961684'), - (557, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '8d8PrVvd', '5962132'), - (557, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '8d8PrVvd', '5962133'), - (557, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '8d8PrVvd', '5962134'), - (557, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '8d8PrVvd', '5962317'), - (557, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '8d8PrVvd', '5962318'), - (557, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '8d8PrVvd', '5965933'), - (557, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '8d8PrVvd', '5967014'), - (557, 1955, 'maybe', '2023-03-28 22:40:38', '2025-12-17 19:46:57', '8d8PrVvd', '5972529'), - (557, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '8d8PrVvd', '5972815'), - (557, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '8d8PrVvd', '5974016'), - (557, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '8d8PrVvd', '5975052'), - (557, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '8d8PrVvd', '5975054'), - (557, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '8d8PrVvd', '5981515'), - (557, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '8d8PrVvd', '5993516'), - (557, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '8d8PrVvd', '5998939'), - (557, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '8d8PrVvd', '6028191'), - (557, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '8d8PrVvd', '6040066'), - (557, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '8d8PrVvd', '6042717'), - (557, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '8d8PrVvd', '6044838'), - (557, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '8d8PrVvd', '6044839'), - (557, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8d8PrVvd', '6045684'), - (557, 1991, 'attending', '2023-04-02 05:19:11', '2025-12-17 19:46:58', '8d8PrVvd', '6047354'), - (557, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '8d8PrVvd', '6050104'), - (557, 1995, 'attending', '2023-04-02 20:15:38', '2025-12-17 19:46:58', '8d8PrVvd', '6050663'), - (557, 1996, 'attending', '2023-04-03 21:36:20', '2025-12-17 19:46:58', '8d8PrVvd', '6050667'), - (557, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '8d8PrVvd', '6053195'), - (557, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '8d8PrVvd', '6053198'), - (557, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '8d8PrVvd', '6056085'), - (557, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '8d8PrVvd', '6056916'), - (557, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '8d8PrVvd', '6059290'), - (557, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '8d8PrVvd', '6060328'), - (557, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '8d8PrVvd', '6061037'), - (557, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '8d8PrVvd', '6061039'), - (557, 2020, 'not_attending', '2023-04-14 17:15:22', '2025-12-17 19:46:59', '8d8PrVvd', '6065813'), - (557, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8d8PrVvd', '6067245'), - (557, 2024, 'attending', '2023-04-17 01:37:12', '2025-12-17 19:47:00', '8d8PrVvd', '6067437'), - (557, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '8d8PrVvd', '6068094'), - (557, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '8d8PrVvd', '6068252'), - (557, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '8d8PrVvd', '6068253'), - (557, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '8d8PrVvd', '6068254'), - (557, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '8d8PrVvd', '6068280'), - (557, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '8d8PrVvd', '6069093'), - (557, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '8d8PrVvd', '6072528'), - (557, 2043, 'attending', '2023-04-26 17:16:18', '2025-12-17 19:47:01', '8d8PrVvd', '6073023'), - (557, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '8d8PrVvd', '6075556'), - (557, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '8d8PrVvd', '6079840'), - (557, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '8d8PrVvd', '6083398'), - (557, 2052, 'maybe', '2023-05-06 01:54:18', '2025-12-17 19:47:02', '8d8PrVvd', '6088220'), - (557, 2053, 'attending', '2023-05-08 21:39:52', '2025-12-17 19:47:02', '8d8PrVvd', '6092644'), - (557, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '8d8PrVvd', '6093504'), - (557, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '8d8PrVvd', '6097414'), - (557, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '8d8PrVvd', '6097442'), - (557, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '8d8PrVvd', '6097684'), - (557, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '8d8PrVvd', '6098762'), - (557, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '8d8PrVvd', '6101361'), - (557, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8d8PrVvd', '6101362'), - (557, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8d8PrVvd', '6107314'), - (557, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '8d8PrVvd', '6120034'), - (557, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '8d8PrVvd', '6136733'), - (557, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '8d8PrVvd', '6137989'), - (557, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '8d8PrVvd', '6150864'), - (557, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '8d8PrVvd', '6155491'), - (557, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '8d8PrVvd', '6164417'), - (557, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '8d8PrVvd', '6166388'), - (557, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '8d8PrVvd', '6176439'), - (557, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '8d8PrVvd', '6182410'), - (557, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '8d8PrVvd', '6185812'), - (557, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '8d8PrVvd', '6187651'), - (557, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '8d8PrVvd', '6187963'), - (557, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '8d8PrVvd', '6187964'), - (557, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '8d8PrVvd', '6187966'), - (557, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '8d8PrVvd', '6187967'), - (557, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '8d8PrVvd', '6187969'), - (557, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '8d8PrVvd', '6334878'), - (557, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '8d8PrVvd', '6337236'), - (557, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '8d8PrVvd', '6337970'), - (557, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '8d8PrVvd', '6338308'), - (557, 2157, 'not_attending', '2023-07-12 21:53:33', '2025-12-17 19:46:52', '8d8PrVvd', '6338342'), - (557, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '8d8PrVvd', '6341710'), - (557, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '8d8PrVvd', '6342044'), - (557, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '8d8PrVvd', '6342298'), - (557, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '8d8PrVvd', '6343294'), - (557, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '8d8PrVvd', '6347034'), - (557, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '8d8PrVvd', '6347056'), - (557, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '8d8PrVvd', '6353830'), - (557, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '8d8PrVvd', '6353831'), - (557, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '8d8PrVvd', '6357867'), - (557, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '8d8PrVvd', '6358652'), - (557, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '8d8PrVvd', '6358668'), - (557, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '8d8PrVvd', '6358669'), - (557, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '8d8PrVvd', '6361709'), - (557, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '8d8PrVvd', '6361710'), - (557, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '8d8PrVvd', '6361711'), - (557, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '8d8PrVvd', '6361712'), - (557, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '8d8PrVvd', '6361713'), - (557, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '8d8PrVvd', '6382573'), - (557, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '8d8PrVvd', '6388604'), - (557, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '8d8PrVvd', '6394629'), - (557, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '8d8PrVvd', '6394631'), - (557, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '8d8PrVvd', '6440863'), - (557, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '8d8PrVvd', '6445440'), - (557, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '8d8PrVvd', '6453951'), - (557, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '8d8PrVvd', '6461696'), - (557, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '8d8PrVvd', '6462129'), - (557, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '8d8PrVvd', '6463218'), - (557, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '8d8PrVvd', '6472181'), - (557, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '8d8PrVvd', '6482693'), - (557, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '8d8PrVvd', '6484200'), - (557, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '8d8PrVvd', '6484680'), - (557, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '8d8PrVvd', '6507741'), - (557, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '8d8PrVvd', '6514659'), - (557, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '8d8PrVvd', '6514660'), - (557, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '8d8PrVvd', '6519103'), - (557, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '8d8PrVvd', '6535681'), - (557, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '8d8PrVvd', '6584747'), - (557, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '8d8PrVvd', '6587097'), - (557, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '8d8PrVvd', '6609022'), - (557, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '8d8PrVvd', '6632757'), - (557, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '8d8PrVvd', '6644187'), - (557, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '8d8PrVvd', '6648951'), - (557, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '8d8PrVvd', '6648952'), - (557, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '8d8PrVvd', '6655401'), - (557, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '8d8PrVvd', '6661585'), - (557, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '8d8PrVvd', '6661588'), - (557, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '8d8PrVvd', '6661589'), - (557, 2404, 'attending', '2024-01-15 23:39:14', '2025-12-17 19:46:38', '8d8PrVvd', '6666858'), - (557, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '8d8PrVvd', '6699906'), - (557, 2408, 'attending', '2024-01-27 17:45:33', '2025-12-17 19:46:40', '8d8PrVvd', '6699907'), - (557, 2409, 'attending', '2024-02-03 02:57:18', '2025-12-17 19:46:41', '8d8PrVvd', '6699909'), - (557, 2410, 'attending', '2024-02-07 23:52:26', '2025-12-17 19:46:41', '8d8PrVvd', '6699911'), - (557, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '8d8PrVvd', '6699913'), - (557, 2413, 'attending', '2024-02-16 00:01:25', '2025-12-17 19:46:42', '8d8PrVvd', '6700719'), - (557, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '8d8PrVvd', '6701109'), - (557, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '8d8PrVvd', '6705219'), - (557, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '8d8PrVvd', '6710153'), - (557, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '8d8PrVvd', '6711552'), - (557, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '8d8PrVvd', '6711553'), - (557, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '8d8PrVvd', '6722688'), - (557, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '8d8PrVvd', '6730620'), - (557, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '8d8PrVvd', '6730642'), - (557, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '8d8PrVvd', '6740364'), - (557, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '8d8PrVvd', '6743829'), - (557, 2467, 'attending', '2024-02-16 19:13:22', '2025-12-17 19:46:43', '8d8PrVvd', '7029987'), - (557, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '8d8PrVvd', '7030380'), - (557, 2471, 'attending', '2024-02-18 20:10:22', '2025-12-17 19:46:42', '8d8PrVvd', '7032425'), - (557, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '8d8PrVvd', '7033677'), - (557, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '8d8PrVvd', '7035415'), - (557, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '8d8PrVvd', '7044715'), - (557, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '8d8PrVvd', '7050318'), - (557, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '8d8PrVvd', '7050319'), - (557, 2492, 'maybe', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '8d8PrVvd', '7050322'), - (557, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '8d8PrVvd', '7057804'), - (557, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '8d8PrVvd', '7072824'), - (557, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '8d8PrVvd', '7074348'), - (557, 2537, 'maybe', '2024-03-16 16:37:35', '2025-12-17 19:46:33', '8d8PrVvd', '7085484'), - (557, 2539, 'attending', '2024-04-01 15:56:33', '2025-12-17 19:46:33', '8d8PrVvd', '7085486'), - (557, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '8d8PrVvd', '7089267'), - (557, 2543, 'maybe', '2024-04-05 16:17:18', '2025-12-17 19:46:33', '8d8PrVvd', '7091456'), - (557, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '8d8PrVvd', '7098747'), - (557, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '8d8PrVvd', '7113468'), - (557, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '8d8PrVvd', '7114856'), - (557, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', '8d8PrVvd', '7114951'), - (557, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '8d8PrVvd', '7114955'), - (557, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '8d8PrVvd', '7114956'), - (557, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '8d8PrVvd', '7114957'), - (557, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '8d8PrVvd', '7153615'), - (557, 2569, 'attending', '2024-04-07 16:42:48', '2025-12-17 19:46:33', '8d8PrVvd', '7154056'), - (557, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '8d8PrVvd', '7159484'), - (557, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '8d8PrVvd', '7178446'), - (557, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '8d8PrVvd', '7220467'), - (557, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '8d8PrVvd', '7240354'), - (557, 2611, 'attending', '2024-05-06 22:30:38', '2025-12-17 19:46:35', '8d8PrVvd', '7247642'), - (557, 2612, 'attending', '2024-05-08 21:21:42', '2025-12-17 19:46:35', '8d8PrVvd', '7247643'), - (557, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '8d8PrVvd', '7251633'), - (557, 2628, 'maybe', '2024-06-01 20:27:18', '2025-12-17 19:46:36', '8d8PrVvd', '7264725'), - (557, 2656, 'maybe', '2024-05-30 20:22:51', '2025-12-17 19:46:36', '8d8PrVvd', '7291301'), - (557, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '8d8PrVvd', '7302674'), - (557, 2688, 'attending', '2024-06-28 04:38:36', '2025-12-17 19:46:29', '8d8PrVvd', '7324073'), - (557, 2965, 'attending', '2025-01-18 21:50:10', '2025-12-17 19:46:22', '8d8PrVvd', '7796541'), - (557, 2966, 'attending', '2025-01-26 00:14:33', '2025-12-17 19:46:22', '8d8PrVvd', '7796542'), - (557, 3193, 'attending', '2025-07-18 02:31:23', '2025-12-17 19:46:17', '8d8PrVvd', '8457738'), - (557, 3307, 'attending', '2025-12-18 01:13:32', '2025-12-18 01:13:32', NULL, NULL), - (558, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WP8xObd', '6045684'), - (559, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dzON9nLm', '4736497'), - (559, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dzON9nLm', '4736499'), - (559, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dzON9nLm', '4736500'), - (559, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dzON9nLm', '4736503'), - (559, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dzON9nLm', '4736504'), - (559, 1185, 'not_attending', '2022-01-12 23:28:47', '2025-12-17 19:47:31', 'dzON9nLm', '4746789'), - (559, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dzON9nLm', '5038850'), - (559, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dzON9nLm', '5045826'), - (559, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dzON9nLm', '5132533'), - (559, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dzON9nLm', '6045684'), - (560, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4ZVRlM74', '5441128'), - (560, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4ZVRlM74', '5441131'), - (560, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4ZVRlM74', '5441132'), - (560, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4ZVRlM74', '5461278'), - (560, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4ZVRlM74', '5469480'), - (560, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4ZVRlM74', '5488912'), - (560, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4ZVRlM74', '5492192'), - (560, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4ZVRlM74', '5493139'), - (560, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4ZVRlM74', '5493200'), - (560, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4ZVRlM74', '5502188'), - (560, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4ZVRlM74', '5505059'), - (560, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', '4ZVRlM74', '5509055'), - (560, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4ZVRlM74', '5512862'), - (560, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4ZVRlM74', '5513985'), - (560, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '4ZVRlM74', '5519981'), - (560, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4ZVRlM74', '5522550'), - (560, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4ZVRlM74', '5534683'), - (560, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4ZVRlM74', '5537735'), - (560, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4ZVRlM74', '5540859'), - (560, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4ZVRlM74', '5546619'), - (560, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4ZVRlM74', '5555245'), - (560, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4ZVRlM74', '5557747'), - (560, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4ZVRlM74', '5560255'), - (560, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4ZVRlM74', '5562906'), - (560, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4ZVRlM74', '5600604'), - (560, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4ZVRlM74', '5605544'), - (560, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', '4ZVRlM74', '5606737'), - (560, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4ZVRlM74', '5635406'), - (560, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4ZVRlM74', '5638765'), - (560, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4ZVRlM74', '5640843'), - (560, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZVRlM74', '6045684'), - (561, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dankzXDm', '8555421'), - (561, 3324, 'not_attending', '2025-11-18 00:11:15', '2025-12-17 19:46:14', 'dankzXDm', '8556406'), - (561, 3330, 'not_attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', 'dankzXDm', '8561720'), - (562, 1721, 'attending', '2022-10-21 17:52:00', '2025-12-17 19:47:13', 'o4P6bvmR', '5630960'), - (562, 1722, 'attending', '2022-10-25 00:35:10', '2025-12-17 19:47:14', 'o4P6bvmR', '5630961'), - (562, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'o4P6bvmR', '5630962'), - (562, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'o4P6bvmR', '5630966'), - (562, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'o4P6bvmR', '5630967'), - (562, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'o4P6bvmR', '5630968'), - (562, 1738, 'maybe', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'o4P6bvmR', '5638765'), - (562, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'o4P6bvmR', '5640097'), - (562, 1742, 'attending', '2022-10-16 18:07:36', '2025-12-17 19:47:13', 'o4P6bvmR', '5641245'), - (562, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'o4P6bvmR', '5642818'), - (562, 1747, 'attending', '2022-10-21 01:07:56', '2025-12-17 19:47:13', 'o4P6bvmR', '5648009'), - (562, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'o4P6bvmR', '5652395'), - (562, 1757, 'attending', '2022-10-25 23:05:14', '2025-12-17 19:47:15', 'o4P6bvmR', '5668974'), - (562, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'o4P6bvmR', '5670445'), - (562, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'o4P6bvmR', '5671637'), - (562, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'o4P6bvmR', '5672329'), - (562, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'o4P6bvmR', '5674057'), - (562, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'o4P6bvmR', '5674060'), - (562, 1772, 'attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'o4P6bvmR', '5677461'), - (562, 1777, 'maybe', '2022-11-02 01:05:50', '2025-12-17 19:47:15', 'o4P6bvmR', '5693021'), - (562, 1780, 'attending', '2022-11-02 01:05:31', '2025-12-17 19:47:15', 'o4P6bvmR', '5696082'), - (562, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'o4P6bvmR', '5698046'), - (562, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'o4P6bvmR', '5699760'), - (562, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'o4P6bvmR', '5741601'), - (562, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'o4P6bvmR', '5763458'), - (562, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'o4P6bvmR', '5774172'), - (562, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'o4P6bvmR', '5818247'), - (562, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'o4P6bvmR', '5819471'), - (562, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'o4P6bvmR', '5827739'), - (562, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'o4P6bvmR', '5844306'), - (562, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'o4P6bvmR', '5850159'), - (562, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'o4P6bvmR', '5858999'), - (562, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'o4P6bvmR', '5871984'), - (562, 1860, 'attending', '2023-01-18 18:51:36', '2025-12-17 19:47:05', 'o4P6bvmR', '5876309'), - (562, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'o4P6bvmR', '5876354'), - (562, 1864, 'attending', '2023-01-18 18:52:01', '2025-12-17 19:47:05', 'o4P6bvmR', '5879675'), - (562, 1865, 'attending', '2023-01-29 01:00:18', '2025-12-17 19:47:06', 'o4P6bvmR', '5879676'), - (562, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'o4P6bvmR', '5880939'), - (562, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'o4P6bvmR', '5880940'), - (562, 1868, 'attending', '2023-02-19 05:33:42', '2025-12-17 19:47:07', 'o4P6bvmR', '5880942'), - (562, 1869, 'attending', '2023-02-20 04:21:07', '2025-12-17 19:47:09', 'o4P6bvmR', '5880943'), - (562, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'o4P6bvmR', '5887890'), - (562, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'o4P6bvmR', '5888598'), - (562, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'o4P6bvmR', '5893260'), - (562, 1881, 'maybe', '2023-02-12 06:04:19', '2025-12-17 19:47:07', 'o4P6bvmR', '5894218'), - (562, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'o4P6bvmR', '5899826'), - (562, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'o4P6bvmR', '5900199'), - (562, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'o4P6bvmR', '5900200'), - (562, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'o4P6bvmR', '5900202'), - (562, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'o4P6bvmR', '5900203'), - (562, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'o4P6bvmR', '5901108'), - (562, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'o4P6bvmR', '5901126'), - (562, 1897, 'attending', '2023-02-10 18:36:07', '2025-12-17 19:47:07', 'o4P6bvmR', '5901128'), - (562, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'o4P6bvmR', '5909655'), - (562, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'o4P6bvmR', '5910522'), - (562, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'o4P6bvmR', '5910526'), - (562, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'o4P6bvmR', '5910528'), - (562, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'o4P6bvmR', '5916219'), - (562, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'o4P6bvmR', '5936234'), - (562, 1935, 'maybe', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'o4P6bvmR', '5958351'), - (562, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'o4P6bvmR', '5959751'), - (562, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'o4P6bvmR', '5959755'), - (562, 1940, 'maybe', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'o4P6bvmR', '5960055'), - (562, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'o4P6bvmR', '5961684'), - (562, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'o4P6bvmR', '5962132'), - (562, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'o4P6bvmR', '5962133'), - (562, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'o4P6bvmR', '5962134'), - (562, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'o4P6bvmR', '5962317'), - (562, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'o4P6bvmR', '5962318'), - (562, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'o4P6bvmR', '5965933'), - (562, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'o4P6bvmR', '5967014'), - (562, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'o4P6bvmR', '5972815'), - (562, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'o4P6bvmR', '5974016'), - (562, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'o4P6bvmR', '5981515'), - (562, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'o4P6bvmR', '5993516'), - (562, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'o4P6bvmR', '5998939'), - (562, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'o4P6bvmR', '6028191'), - (562, 1979, 'attending', '2023-03-17 22:18:59', '2025-12-17 19:46:56', 'o4P6bvmR', '6030009'), - (562, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'o4P6bvmR', '6040066'), - (562, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'o4P6bvmR', '6042717'), - (562, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'o4P6bvmR', '6044838'), - (562, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'o4P6bvmR', '6044839'), - (562, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'o4P6bvmR', '6045684'), - (562, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'o4P6bvmR', '6050104'), - (562, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'o4P6bvmR', '6053195'), - (562, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'o4P6bvmR', '6053198'), - (562, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'o4P6bvmR', '6056085'), - (562, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'o4P6bvmR', '6056916'), - (562, 2012, 'attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'o4P6bvmR', '6059290'), - (562, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'o4P6bvmR', '6060328'), - (562, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'o4P6bvmR', '6061037'), - (562, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'o4P6bvmR', '6061039'), - (562, 2020, 'attending', '2023-04-14 17:29:45', '2025-12-17 19:46:59', 'o4P6bvmR', '6065813'), - (562, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'o4P6bvmR', '6067245'), - (562, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'o4P6bvmR', '6068094'), - (562, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'o4P6bvmR', '6068252'), - (562, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'o4P6bvmR', '6068253'), - (562, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'o4P6bvmR', '6068254'), - (562, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'o4P6bvmR', '6068280'), - (562, 2032, 'not_attending', '2023-06-03 07:40:04', '2025-12-17 19:47:04', 'o4P6bvmR', '6068281'), - (562, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'o4P6bvmR', '6069093'), - (562, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'o4P6bvmR', '6072528'), - (562, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'o4P6bvmR', '6079840'), - (562, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'o4P6bvmR', '6083398'), - (562, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'o4P6bvmR', '6093504'), - (562, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'o4P6bvmR', '6097414'), - (562, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'o4P6bvmR', '6097442'), - (562, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'o4P6bvmR', '6097684'), - (562, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'o4P6bvmR', '6098762'), - (562, 2064, 'not_attending', '2023-06-21 20:12:34', '2025-12-17 19:46:50', 'o4P6bvmR', '6099988'), - (562, 2065, 'attending', '2023-06-17 22:18:39', '2025-12-17 19:46:49', 'o4P6bvmR', '6101169'), - (562, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'o4P6bvmR', '6101361'), - (562, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'o4P6bvmR', '6101362'), - (562, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'o4P6bvmR', '6107314'), - (562, 2082, 'attending', '2023-05-22 19:27:36', '2025-12-17 19:47:03', 'o4P6bvmR', '6115612'), - (562, 2083, 'maybe', '2023-05-28 20:27:00', '2025-12-17 19:47:04', 'o4P6bvmR', '6115629'), - (562, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'o4P6bvmR', '6120034'), - (562, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'o4P6bvmR', '6136733'), - (562, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'o4P6bvmR', '6137989'), - (562, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'o4P6bvmR', '6150864'), - (562, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'o4P6bvmR', '6155491'), - (562, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'o4P6bvmR', '6164417'), - (562, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'o4P6bvmR', '6166388'), - (562, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'o4P6bvmR', '6176439'), - (562, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'o4P6bvmR', '6182410'), - (562, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'o4P6bvmR', '6185812'), - (562, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'o4P6bvmR', '6187651'), - (562, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'o4P6bvmR', '6187963'), - (562, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'o4P6bvmR', '6187964'), - (562, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'o4P6bvmR', '6187966'), - (562, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'o4P6bvmR', '6187967'), - (562, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'o4P6bvmR', '6187969'), - (562, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'o4P6bvmR', '6334878'), - (562, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'o4P6bvmR', '6337236'), - (562, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'o4P6bvmR', '6337970'), - (562, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'o4P6bvmR', '6338308'), - (562, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'o4P6bvmR', '6341710'), - (562, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'o4P6bvmR', '6342044'), - (562, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'o4P6bvmR', '6342298'), - (562, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'o4P6bvmR', '6343294'), - (562, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'o4P6bvmR', '6347034'), - (562, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'o4P6bvmR', '6347056'), - (562, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'o4P6bvmR', '6353830'), - (562, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'o4P6bvmR', '6353831'), - (562, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'o4P6bvmR', '6357867'), - (562, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'o4P6bvmR', '6358652'), - (562, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'o4P6bvmR', '6358668'), - (562, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'o4P6bvmR', '6358669'), - (562, 2204, 'attending', '2023-08-19 22:40:42', '2025-12-17 19:46:55', 'o4P6bvmR', '6361542'), - (562, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'o4P6bvmR', '6361709'), - (562, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'o4P6bvmR', '6361710'), - (562, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'o4P6bvmR', '6361711'), - (562, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'o4P6bvmR', '6361712'), - (562, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'o4P6bvmR', '6361713'), - (562, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'o4P6bvmR', '6382573'), - (562, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'o4P6bvmR', '6388604'), - (562, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'o4P6bvmR', '6394629'), - (562, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'o4P6bvmR', '6394631'), - (562, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'o4P6bvmR', '6440863'), - (562, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'o4P6bvmR', '6445440'), - (562, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'o4P6bvmR', '6453951'), - (562, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'o4P6bvmR', '6461696'), - (562, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'o4P6bvmR', '6462129'), - (562, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'o4P6bvmR', '6463218'), - (562, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'o4P6bvmR', '6472181'), - (562, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'o4P6bvmR', '6482693'), - (562, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'o4P6bvmR', '6484200'), - (562, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'o4P6bvmR', '6484680'), - (562, 2310, 'attending', '2023-11-12 00:33:09', '2025-12-17 19:46:47', 'o4P6bvmR', '6487709'), - (562, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'o4P6bvmR', '6507741'), - (562, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'o4P6bvmR', '6514659'), - (562, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'o4P6bvmR', '6514660'), - (562, 2324, 'attending', '2023-12-09 06:39:46', '2025-12-17 19:46:49', 'o4P6bvmR', '6514662'), - (562, 2325, 'attending', '2023-12-15 21:01:47', '2025-12-17 19:46:36', 'o4P6bvmR', '6514663'), - (562, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'o4P6bvmR', '6519103'), - (562, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'o4P6bvmR', '6535681'), - (562, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'o4P6bvmR', '6584747'), - (562, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'o4P6bvmR', '6587097'), - (562, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'o4P6bvmR', '6609022'), - (562, 2371, 'attending', '2023-12-15 21:37:07', '2025-12-17 19:46:36', 'o4P6bvmR', '6624495'), - (562, 2373, 'attending', '2023-12-31 00:36:54', '2025-12-17 19:46:38', 'o4P6bvmR', '6632678'), - (562, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'o4P6bvmR', '6632757'), - (562, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'o4P6bvmR', '6644187'), - (562, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'o4P6bvmR', '6648951'), - (562, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'o4P6bvmR', '6648952'), - (562, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'o4P6bvmR', '6655401'), - (562, 2399, 'attending', '2024-01-14 01:06:02', '2025-12-17 19:46:38', 'o4P6bvmR', '6657583'), - (562, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'o4P6bvmR', '6661585'), - (562, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'o4P6bvmR', '6661588'), - (562, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'o4P6bvmR', '6661589'), - (562, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'o4P6bvmR', '6699906'), - (562, 2408, 'attending', '2024-01-26 08:21:24', '2025-12-17 19:46:40', 'o4P6bvmR', '6699907'), - (562, 2409, 'attending', '2024-01-29 22:23:39', '2025-12-17 19:46:41', 'o4P6bvmR', '6699909'), - (562, 2410, 'attending', '2024-02-11 00:04:54', '2025-12-17 19:46:41', 'o4P6bvmR', '6699911'), - (562, 2411, 'attending', '2024-02-16 23:57:57', '2025-12-17 19:46:41', 'o4P6bvmR', '6699913'), - (562, 2414, 'maybe', '2024-01-19 00:49:28', '2025-12-17 19:46:40', 'o4P6bvmR', '6701000'), - (562, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'o4P6bvmR', '6701109'), - (562, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'o4P6bvmR', '6705219'), - (562, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'o4P6bvmR', '6710153'), - (562, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'o4P6bvmR', '6711552'), - (562, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'o4P6bvmR', '6711553'), - (562, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'o4P6bvmR', '6722688'), - (562, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'o4P6bvmR', '6730620'), - (562, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'o4P6bvmR', '6730642'), - (562, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'o4P6bvmR', '6740364'), - (562, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'o4P6bvmR', '6743829'), - (562, 2467, 'maybe', '2024-02-25 03:42:37', '2025-12-17 19:46:43', 'o4P6bvmR', '7029987'), - (562, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'o4P6bvmR', '7030380'), - (562, 2471, 'attending', '2024-02-18 21:14:43', '2025-12-17 19:46:42', 'o4P6bvmR', '7032425'), - (562, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'o4P6bvmR', '7033677'), - (562, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'o4P6bvmR', '7035415'), - (562, 2478, 'attending', '2024-02-22 18:07:29', '2025-12-17 19:46:43', 'o4P6bvmR', '7036478'), - (562, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'o4P6bvmR', '7044715'), - (562, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'o4P6bvmR', '7050318'), - (562, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'o4P6bvmR', '7050319'), - (562, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'o4P6bvmR', '7050322'), - (562, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'o4P6bvmR', '7057804'), - (562, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'o4P6bvmR', '7059866'), - (562, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'o4P6bvmR', '7072824'), - (562, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'o4P6bvmR', '7074348'), - (562, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'o4P6bvmR', '7074364'), - (562, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'o4P6bvmR', '7089267'), - (562, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'o4P6bvmR', '7098747'), - (562, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'o4P6bvmR', '7113468'), - (562, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'o4P6bvmR', '7114856'), - (562, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'o4P6bvmR', '7114951'), - (562, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'o4P6bvmR', '7114955'), - (562, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'o4P6bvmR', '7114956'), - (562, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'o4P6bvmR', '7114957'), - (562, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'o4P6bvmR', '7153615'), - (562, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'o4P6bvmR', '7159484'), - (562, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'o4P6bvmR', '7178446'), - (562, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'o4P6bvmR', '7220467'), - (562, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'o4P6bvmR', '7240354'), - (562, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'o4P6bvmR', '7251633'), - (562, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'o4P6bvmR', '7263048'), - (562, 2626, 'attending', '2024-05-18 21:21:09', '2025-12-17 19:46:35', 'o4P6bvmR', '7264723'), - (562, 2627, 'attending', '2024-05-25 22:03:47', '2025-12-17 19:46:35', 'o4P6bvmR', '7264724'), - (562, 2628, 'attending', '2024-06-01 20:56:49', '2025-12-17 19:46:36', 'o4P6bvmR', '7264725'), - (562, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'o4P6bvmR', '7302674'), - (562, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'o4P6bvmR', '7324073'), - (562, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'o4P6bvmR', '7324074'), - (562, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'o4P6bvmR', '7324075'), - (562, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'o4P6bvmR', '7324078'), - (562, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'o4P6bvmR', '7324082'), - (562, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'o4P6bvmR', '7331457'), - (562, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'o4P6bvmR', '7356752'), - (562, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'o4P6bvmR', '7363643'), - (562, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'o4P6bvmR', '7368606'), - (562, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'o4P6bvmR', '7397462'), - (562, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'o4P6bvmR', '7424275'), - (562, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'o4P6bvmR', '7424276'), - (562, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'o4P6bvmR', '7432751'), - (562, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'o4P6bvmR', '7432752'), - (562, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'o4P6bvmR', '7432753'), - (562, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'o4P6bvmR', '7432754'), - (562, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'o4P6bvmR', '7432755'), - (562, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'o4P6bvmR', '7432756'), - (562, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'o4P6bvmR', '7432758'), - (562, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'o4P6bvmR', '7432759'), - (562, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'o4P6bvmR', '7433834'), - (562, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'o4P6bvmR', '7470197'), - (562, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'o4P6bvmR', '7685613'), - (562, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'o4P6bvmR', '7688194'), - (562, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'o4P6bvmR', '7688196'), - (562, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'o4P6bvmR', '7688289'), - (563, 393, 'not_attending', '2021-06-24 21:55:57', '2025-12-17 19:47:38', 'pmbGG2VA', '3236448'), - (563, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbGG2VA', '3974109'), - (563, 844, 'not_attending', '2021-06-17 15:28:12', '2025-12-17 19:47:38', 'pmbGG2VA', '4014338'), - (563, 867, 'attending', '2021-06-23 15:27:41', '2025-12-17 19:47:38', 'pmbGG2VA', '4021848'), - (563, 870, 'attending', '2021-07-03 21:42:02', '2025-12-17 19:47:39', 'pmbGG2VA', '4136937'), - (563, 871, 'maybe', '2021-07-10 21:38:44', '2025-12-17 19:47:39', 'pmbGG2VA', '4136938'), - (563, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbGG2VA', '4136947'), - (563, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbGG2VA', '4210314'), - (563, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbGG2VA', '4225444'), - (563, 896, 'attending', '2021-06-29 20:03:54', '2025-12-17 19:47:38', 'pmbGG2VA', '4231145'), - (563, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbGG2VA', '4239259'), - (563, 900, 'attending', '2021-07-24 20:49:05', '2025-12-17 19:47:40', 'pmbGG2VA', '4240316'), - (563, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbGG2VA', '4240317'), - (563, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbGG2VA', '4240318'), - (563, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbGG2VA', '4240320'), - (563, 904, 'attending', '2021-07-03 23:12:15', '2025-12-17 19:47:39', 'pmbGG2VA', '4241594'), - (563, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbGG2VA', '4250163'), - (563, 917, 'maybe', '2021-07-14 01:02:46', '2025-12-17 19:47:39', 'pmbGG2VA', '4274481'), - (563, 919, 'not_attending', '2021-07-17 21:26:54', '2025-12-17 19:47:39', 'pmbGG2VA', '4275957'), - (563, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbGG2VA', '4277819'), - (563, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbGG2VA', '4301723'), - (563, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbGG2VA', '4302093'), - (563, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbGG2VA', '4304151'), - (563, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbGG2VA', '4356801'), - (563, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbGG2VA', '4366186'), - (563, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbGG2VA', '4366187'), - (563, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbGG2VA', '4420735'), - (563, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbGG2VA', '4420738'), - (563, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbGG2VA', '4420739'), - (563, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbGG2VA', '4420741'), - (563, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbGG2VA', '4420744'), - (563, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbGG2VA', '4420747'), - (563, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbGG2VA', '4420748'), - (563, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbGG2VA', '4420749'), - (563, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbGG2VA', '4461883'), - (563, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbGG2VA', '4508342'), - (563, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbGG2VA', '4568602'), - (563, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbGG2VA', '4572153'), - (563, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'pmbGG2VA', '4585962'), - (563, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'pmbGG2VA', '4596356'), - (563, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbGG2VA', '4598860'), - (563, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbGG2VA', '4598861'), - (563, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbGG2VA', '4602797'), - (563, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbGG2VA', '4637896'), - (563, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbGG2VA', '4642994'), - (563, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'pmbGG2VA', '4642995'), - (563, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbGG2VA', '4642996'), - (563, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbGG2VA', '4642997'), - (563, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbGG2VA', '4645687'), - (563, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbGG2VA', '4645698'), - (563, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbGG2VA', '4645704'), - (563, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbGG2VA', '4645705'), - (563, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbGG2VA', '4668385'), - (563, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbGG2VA', '4694407'), - (563, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'pmbGG2VA', '4706262'), - (563, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbGG2VA', '4736497'), - (563, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbGG2VA', '4736499'), - (563, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbGG2VA', '4736500'), - (563, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbGG2VA', '4736503'), - (563, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbGG2VA', '4736504'), - (563, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbGG2VA', '4746789'), - (563, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbGG2VA', '4753929'), - (563, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbGG2VA', '5038850'), - (563, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbGG2VA', '5045826'), - (563, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbGG2VA', '5132533'), - (563, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbGG2VA', '5186582'), - (563, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbGG2VA', '5186583'), - (563, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbGG2VA', '5186585'), - (563, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbGG2VA', '5190437'), - (563, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbGG2VA', '5215989'), - (563, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbGG2VA', '6045684'), - (564, 884, 'not_attending', '2021-08-13 22:24:14', '2025-12-17 19:47:42', 'ArgB5Kw4', '4210314'), - (564, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ArgB5Kw4', '4304151'), - (564, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'ArgB5Kw4', '4315726'), - (564, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ArgB5Kw4', '4366186'), - (564, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ArgB5Kw4', '4366187'), - (564, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArgB5Kw4', '6045684'), - (565, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVDa6EzA', '6361713'), - (565, 2249, 'attending', '2023-09-20 03:04:57', '2025-12-17 19:46:45', 'dVDa6EzA', '6394630'), - (565, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVDa6EzA', '6394631'), - (565, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dVDa6EzA', '6431478'), - (565, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVDa6EzA', '6440863'), - (565, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVDa6EzA', '6445440'), - (565, 2274, 'not_attending', '2023-10-04 19:10:55', '2025-12-17 19:46:45', 'dVDa6EzA', '6448287'), - (565, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVDa6EzA', '6453951'), - (565, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVDa6EzA', '6461696'), - (565, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVDa6EzA', '6462129'), - (565, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVDa6EzA', '6463218'), - (565, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVDa6EzA', '6472181'), - (565, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVDa6EzA', '6482693'), - (565, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVDa6EzA', '6484200'), - (565, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVDa6EzA', '6484680'), - (565, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVDa6EzA', '6507741'), - (565, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVDa6EzA', '6514659'), - (565, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVDa6EzA', '6514660'), - (565, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVDa6EzA', '6519103'), - (565, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVDa6EzA', '6535681'), - (565, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'dVDa6EzA', '6545076'), - (565, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVDa6EzA', '6584747'), - (565, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVDa6EzA', '6587097'), - (565, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVDa6EzA', '6609022'), - (565, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVDa6EzA', '6632757'), - (565, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVDa6EzA', '6644187'), - (565, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVDa6EzA', '6648951'), - (565, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVDa6EzA', '6648952'), - (565, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dVDa6EzA', '6651141'), - (565, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVDa6EzA', '6655401'), - (565, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVDa6EzA', '6661585'), - (565, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVDa6EzA', '6661588'), - (565, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVDa6EzA', '6661589'), - (565, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVDa6EzA', '6699906'), - (565, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dVDa6EzA', '6699913'), - (565, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVDa6EzA', '6701109'), - (565, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVDa6EzA', '6705219'), - (565, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVDa6EzA', '6710153'), - (565, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVDa6EzA', '6711552'), - (565, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVDa6EzA', '6711553'), - (565, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVDa6EzA', '6722688'), - (565, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVDa6EzA', '6730620'), - (565, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVDa6EzA', '6730642'), - (565, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dVDa6EzA', '6740364'), - (565, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVDa6EzA', '6743829'), - (565, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVDa6EzA', '7030380'), - (565, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dVDa6EzA', '7033677'), - (565, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dVDa6EzA', '7035415'), - (565, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dVDa6EzA', '7044715'), - (565, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVDa6EzA', '7050318'), - (565, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVDa6EzA', '7050319'), - (565, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVDa6EzA', '7050322'), - (565, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dVDa6EzA', '7057804'), - (565, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVDa6EzA', '7072824'), - (565, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVDa6EzA', '7074348'), - (565, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVDa6EzA', '7089267'), - (565, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dVDa6EzA', '7098747'), - (565, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dVDa6EzA', '7113468'), - (565, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVDa6EzA', '7114856'), - (565, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dVDa6EzA', '7114951'), - (565, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVDa6EzA', '7114955'), - (565, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVDa6EzA', '7114956'), - (565, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVDa6EzA', '7153615'), - (565, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVDa6EzA', '7159484'), - (565, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVDa6EzA', '7178446'), - (566, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41oMNaEm', '6045684'), - (567, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd8VzLnvA', '5880942'), - (567, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd8VzLnvA', '5880943'), - (567, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd8VzLnvA', '5900200'), - (567, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd8VzLnvA', '5900202'), - (567, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd8VzLnvA', '5900203'), - (567, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', 'd8VzLnvA', '5910522'), - (567, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'd8VzLnvA', '5910526'), - (567, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'd8VzLnvA', '5910528'), - (567, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd8VzLnvA', '5916219'), - (567, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd8VzLnvA', '5936234'), - (567, 1934, 'attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'd8VzLnvA', '5936691'), - (567, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd8VzLnvA', '5958351'), - (567, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd8VzLnvA', '5959751'), - (567, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd8VzLnvA', '5959755'), - (567, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd8VzLnvA', '5960055'), - (567, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd8VzLnvA', '5961684'), - (567, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd8VzLnvA', '5962132'), - (567, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd8VzLnvA', '5962133'), - (567, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd8VzLnvA', '5962134'), - (567, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd8VzLnvA', '5962317'), - (567, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd8VzLnvA', '5962318'), - (567, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd8VzLnvA', '5965933'), - (567, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd8VzLnvA', '5967014'), - (567, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd8VzLnvA', '5972815'), - (567, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd8VzLnvA', '5974016'), - (567, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd8VzLnvA', '5981515'), - (567, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd8VzLnvA', '5993516'), - (567, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd8VzLnvA', '5998939'), - (567, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd8VzLnvA', '6028191'), - (567, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd8VzLnvA', '6040066'), - (567, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd8VzLnvA', '6042717'), - (567, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd8VzLnvA', '6044838'), - (567, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd8VzLnvA', '6044839'), - (567, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8VzLnvA', '6045684'), - (567, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd8VzLnvA', '6050104'), - (567, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd8VzLnvA', '6053195'), - (567, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd8VzLnvA', '6053198'), - (567, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd8VzLnvA', '6056085'), - (567, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd8VzLnvA', '6056916'), - (567, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd8VzLnvA', '6059290'), - (567, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd8VzLnvA', '6060328'), - (567, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd8VzLnvA', '6061037'), - (567, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd8VzLnvA', '6061039'), - (567, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd8VzLnvA', '6067245'), - (567, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd8VzLnvA', '6068094'), - (567, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd8VzLnvA', '6068252'), - (567, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd8VzLnvA', '6068253'), - (567, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd8VzLnvA', '6068254'), - (567, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd8VzLnvA', '6068280'), - (567, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd8VzLnvA', '6069093'), - (567, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd8VzLnvA', '6072528'), - (567, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd8VzLnvA', '6079840'), - (567, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd8VzLnvA', '6083398'), - (567, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'd8VzLnvA', '6093504'), - (567, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd8VzLnvA', '6097414'), - (567, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd8VzLnvA', '6097442'), - (567, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd8VzLnvA', '6097684'), - (567, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd8VzLnvA', '6098762'), - (567, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd8VzLnvA', '6101362'), - (567, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd8VzLnvA', '6103752'), - (567, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd8VzLnvA', '6107314'), - (568, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYznBMa4', '6045684'), - (569, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v81QGBm', '6045684'), - (570, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd90KjvE4', '7074364'), - (570, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd90KjvE4', '7324073'), - (570, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd90KjvE4', '7324074'), - (570, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd90KjvE4', '7324075'), - (570, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd90KjvE4', '7324078'), - (570, 2702, 'not_attending', '2024-06-13 18:33:33', '2025-12-17 19:46:28', 'd90KjvE4', '7324867'), - (570, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd90KjvE4', '7331457'), - (570, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'd90KjvE4', '7332564'), - (570, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'd90KjvE4', '7344575'), - (570, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'd90KjvE4', '7359624'), - (570, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd90KjvE4', '7363643'), - (570, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd90KjvE4', '7368606'), - (571, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4kRwppEA', '4668385'), - (571, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4kRwppEA', '4694407'), - (571, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4kRwppEA', '4746789'), - (571, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4kRwppEA', '4753929'), - (571, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kRwppEA', '6045684'), - (572, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlRWWYA', '6045684'), - (573, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'd8DzyGpd', '5195095'), - (573, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'd8DzyGpd', '5247467'), - (573, 1362, 'not_attending', '2022-04-30 19:14:25', '2025-12-17 19:47:28', 'd8DzyGpd', '5260800'), - (573, 1374, 'not_attending', '2022-05-07 20:20:54', '2025-12-17 19:47:28', 'd8DzyGpd', '5269930'), - (573, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd8DzyGpd', '5271448'), - (573, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'd8DzyGpd', '5271449'), - (573, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd8DzyGpd', '5276469'), - (573, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd8DzyGpd', '5278159'), - (573, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd8DzyGpd', '5363695'), - (573, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd8DzyGpd', '5365960'), - (573, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd8DzyGpd', '5368973'), - (573, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd8DzyGpd', '5378247'), - (573, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd8DzyGpd', '5389605'), - (573, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd8DzyGpd', '5397265'), - (573, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd8DzyGpd', '5403967'), - (573, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd8DzyGpd', '5404786'), - (573, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd8DzyGpd', '5405203'), - (573, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'd8DzyGpd', '5408794'), - (573, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd8DzyGpd', '5411699'), - (573, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd8DzyGpd', '5412550'), - (573, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd8DzyGpd', '5415046'), - (573, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd8DzyGpd', '5422086'), - (573, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd8DzyGpd', '5422406'), - (573, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd8DzyGpd', '5424565'), - (573, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd8DzyGpd', '5426882'), - (573, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd8DzyGpd', '5427083'), - (573, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'd8DzyGpd', '5441125'), - (573, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd8DzyGpd', '5441126'), - (573, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd8DzyGpd', '5441128'), - (573, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd8DzyGpd', '5441131'), - (573, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd8DzyGpd', '5441132'), - (573, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd8DzyGpd', '5446643'), - (573, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd8DzyGpd', '5453325'), - (573, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd8DzyGpd', '5454516'), - (573, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd8DzyGpd', '5454605'), - (573, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd8DzyGpd', '5455037'), - (573, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd8DzyGpd', '5461278'), - (573, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd8DzyGpd', '5469480'), - (573, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd8DzyGpd', '5471073'), - (573, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd8DzyGpd', '5474663'), - (573, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd8DzyGpd', '5482022'), - (573, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd8DzyGpd', '5482793'), - (573, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd8DzyGpd', '5488912'), - (573, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd8DzyGpd', '5492192'), - (573, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd8DzyGpd', '5493139'), - (573, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd8DzyGpd', '5493200'), - (573, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd8DzyGpd', '5502188'), - (573, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd8DzyGpd', '5505059'), - (573, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd8DzyGpd', '5509055'), - (573, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd8DzyGpd', '5512862'), - (573, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd8DzyGpd', '5513985'), - (573, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd8DzyGpd', '5519981'), - (573, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd8DzyGpd', '5522550'), - (573, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd8DzyGpd', '5534683'), - (573, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd8DzyGpd', '5546619'), - (573, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd8DzyGpd', '5555245'), - (573, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd8DzyGpd', '5557747'), - (573, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8DzyGpd', '6045684'), - (574, 1684, 'attending', '2022-10-11 22:29:00', '2025-12-17 19:47:12', 'Md3MjvgA', '5605544'), - (574, 1712, 'not_attending', '2022-10-13 22:25:14', '2025-12-17 19:47:12', 'Md3MjvgA', '5622073'), - (574, 1720, 'attending', '2022-10-15 09:16:49', '2025-12-17 19:47:12', 'Md3MjvgA', '5630959'), - (574, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Md3MjvgA', '5630960'), - (574, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Md3MjvgA', '5630961'), - (574, 1723, 'attending', '2022-10-30 23:02:22', '2025-12-17 19:47:15', 'Md3MjvgA', '5630962'), - (574, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Md3MjvgA', '5630966'), - (574, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Md3MjvgA', '5630967'), - (574, 1726, 'attending', '2022-11-19 12:47:22', '2025-12-17 19:47:16', 'Md3MjvgA', '5630968'), - (574, 1727, 'attending', '2022-11-19 12:47:26', '2025-12-17 19:47:16', 'Md3MjvgA', '5630969'), - (574, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', 'Md3MjvgA', '5638765'), - (574, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Md3MjvgA', '5640097'), - (574, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'Md3MjvgA', '5640843'), - (574, 1741, 'attending', '2022-10-09 23:42:34', '2025-12-17 19:47:12', 'Md3MjvgA', '5641132'), - (574, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Md3MjvgA', '5641521'), - (574, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Md3MjvgA', '5642818'), - (574, 1745, 'maybe', '2022-10-15 09:16:59', '2025-12-17 19:47:12', 'Md3MjvgA', '5643088'), - (574, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Md3MjvgA', '5652395'), - (574, 1757, 'not_attending', '2022-11-03 17:24:25', '2025-12-17 19:47:15', 'Md3MjvgA', '5668974'), - (574, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Md3MjvgA', '5670445'), - (574, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Md3MjvgA', '5671637'), - (574, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Md3MjvgA', '5672329'), - (574, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Md3MjvgA', '5674057'), - (574, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Md3MjvgA', '5674060'), - (574, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Md3MjvgA', '5677461'), - (574, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Md3MjvgA', '5698046'), - (574, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'Md3MjvgA', '5699760'), - (574, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Md3MjvgA', '5741601'), - (574, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Md3MjvgA', '5763458'), - (574, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Md3MjvgA', '5774172'), - (574, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'Md3MjvgA', '5818247'), - (574, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Md3MjvgA', '5819471'), - (574, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Md3MjvgA', '5827739'), - (574, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Md3MjvgA', '5844306'), - (574, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Md3MjvgA', '5850159'), - (574, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Md3MjvgA', '5858999'), - (574, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Md3MjvgA', '5871984'), - (574, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Md3MjvgA', '5876354'), - (574, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'Md3MjvgA', '5880939'), - (574, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Md3MjvgA', '5880940'), - (574, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Md3MjvgA', '5880942'), - (574, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Md3MjvgA', '5880943'), - (574, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Md3MjvgA', '5887890'), - (574, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Md3MjvgA', '5888598'), - (574, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Md3MjvgA', '5893260'), - (574, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Md3MjvgA', '5899826'), - (574, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Md3MjvgA', '5900199'), - (574, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Md3MjvgA', '5900200'), - (574, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Md3MjvgA', '5900202'), - (574, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Md3MjvgA', '5900203'), - (574, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Md3MjvgA', '5901108'), - (574, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Md3MjvgA', '5901126'), - (574, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Md3MjvgA', '5909655'), - (574, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Md3MjvgA', '5910522'), - (574, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Md3MjvgA', '5910526'), - (574, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Md3MjvgA', '5910528'), - (574, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Md3MjvgA', '5916219'), - (574, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Md3MjvgA', '5936234'), - (574, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Md3MjvgA', '5958351'), - (574, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Md3MjvgA', '5959751'), - (574, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Md3MjvgA', '5959755'), - (574, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Md3MjvgA', '5960055'), - (574, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Md3MjvgA', '5961684'), - (574, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Md3MjvgA', '5962132'), - (574, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Md3MjvgA', '5962133'), - (574, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Md3MjvgA', '5962134'), - (574, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Md3MjvgA', '5962317'), - (574, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Md3MjvgA', '5962318'), - (574, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Md3MjvgA', '5965933'), - (574, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Md3MjvgA', '5967014'), - (574, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Md3MjvgA', '5972815'), - (574, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Md3MjvgA', '5974016'), - (574, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Md3MjvgA', '5981515'), - (574, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Md3MjvgA', '5993516'), - (574, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Md3MjvgA', '5998939'), - (574, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Md3MjvgA', '6028191'), - (574, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Md3MjvgA', '6040066'), - (574, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Md3MjvgA', '6042717'), - (574, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Md3MjvgA', '6044838'), - (574, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Md3MjvgA', '6044839'), - (574, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Md3MjvgA', '6045684'), - (574, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Md3MjvgA', '6050104'), - (574, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Md3MjvgA', '6053195'), - (574, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Md3MjvgA', '6053198'), - (574, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Md3MjvgA', '6056085'), - (574, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Md3MjvgA', '6056916'), - (574, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Md3MjvgA', '6059290'), - (574, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Md3MjvgA', '6060328'), - (574, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Md3MjvgA', '6061037'), - (574, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Md3MjvgA', '6061039'), - (574, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Md3MjvgA', '6067245'), - (574, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Md3MjvgA', '6068094'), - (574, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Md3MjvgA', '6068252'), - (574, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Md3MjvgA', '6068253'), - (574, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Md3MjvgA', '6068254'), - (574, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Md3MjvgA', '6068280'), - (574, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Md3MjvgA', '6069093'), - (574, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'Md3MjvgA', '6072528'), - (574, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Md3MjvgA', '6079840'), - (574, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Md3MjvgA', '6083398'), - (574, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Md3MjvgA', '6093504'), - (574, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Md3MjvgA', '6097414'), - (574, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Md3MjvgA', '6097442'), - (574, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Md3MjvgA', '6097684'), - (574, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Md3MjvgA', '6098762'), - (574, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Md3MjvgA', '6101362'), - (574, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'Md3MjvgA', '6103752'), - (574, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Md3MjvgA', '6107314'), - (575, 259, 'attending', '2021-05-18 21:53:00', '2025-12-17 19:47:46', '6AX5PQ64', '3149490'), - (575, 397, 'not_attending', '2021-05-27 20:06:41', '2025-12-17 19:47:47', '6AX5PQ64', '3236452'), - (575, 647, 'not_attending', '2021-05-18 04:06:23', '2025-12-17 19:47:46', '6AX5PQ64', '3539922'), - (575, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '6AX5PQ64', '3539923'), - (575, 725, 'not_attending', '2021-05-23 20:30:43', '2025-12-17 19:47:47', '6AX5PQ64', '3661372'), - (575, 793, 'not_attending', '2021-06-02 00:22:12', '2025-12-17 19:47:47', '6AX5PQ64', '3793537'), - (575, 797, 'not_attending', '2021-05-23 19:47:44', '2025-12-17 19:47:47', '6AX5PQ64', '3796195'), - (575, 803, 'attending', '2021-05-19 22:54:25', '2025-12-17 19:47:46', '6AX5PQ64', '3804665'), - (575, 804, 'not_attending', '2021-05-23 19:47:38', '2025-12-17 19:47:47', '6AX5PQ64', '3804775'), - (575, 808, 'not_attending', '2021-05-20 22:36:38', '2025-12-17 19:47:46', '6AX5PQ64', '3807358'), - (575, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AX5PQ64', '3974109'), - (575, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AX5PQ64', '3975311'), - (575, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AX5PQ64', '3975312'), - (575, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AX5PQ64', '3994992'), - (575, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AX5PQ64', '4014338'), - (575, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AX5PQ64', '4021848'), - (575, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AX5PQ64', '4136744'), - (575, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AX5PQ64', '4136937'), - (575, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AX5PQ64', '4136938'), - (575, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AX5PQ64', '4136947'), - (575, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AX5PQ64', '4210314'), - (575, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AX5PQ64', '4225444'), - (575, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AX5PQ64', '4239259'), - (575, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AX5PQ64', '4240316'), - (575, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AX5PQ64', '4240317'), - (575, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AX5PQ64', '4240318'), - (575, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AX5PQ64', '4240320'), - (575, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AX5PQ64', '4250163'), - (575, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AX5PQ64', '4275957'), - (575, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AX5PQ64', '4277819'), - (575, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AX5PQ64', '4301723'), - (575, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AX5PQ64', '4302093'), - (575, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AX5PQ64', '4304151'), - (575, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', '6AX5PQ64', '4345519'), - (575, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AX5PQ64', '4356801'), - (575, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '6AX5PQ64', '4358025'), - (575, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AX5PQ64', '4366186'), - (575, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AX5PQ64', '4366187'), - (575, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '6AX5PQ64', '4402823'), - (575, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AX5PQ64', '4420735'), - (575, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AX5PQ64', '4420738'), - (575, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AX5PQ64', '4420739'), - (575, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AX5PQ64', '4420741'), - (575, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AX5PQ64', '4420744'), - (575, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AX5PQ64', '4420747'), - (575, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AX5PQ64', '4420748'), - (575, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AX5PQ64', '4420749'), - (575, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AX5PQ64', '4461883'), - (575, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AX5PQ64', '4508342'), - (575, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AX5PQ64', '4568602'), - (575, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AX5PQ64', '4572153'), - (575, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AX5PQ64', '4585962'), - (575, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '6AX5PQ64', '4596356'), - (575, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AX5PQ64', '4598860'), - (575, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AX5PQ64', '4598861'), - (575, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '6AX5PQ64', '4602797'), - (575, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '6AX5PQ64', '4637896'), - (575, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AX5PQ64', '4642994'), - (575, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AX5PQ64', '4642995'), - (575, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AX5PQ64', '4642996'), - (575, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AX5PQ64', '4642997'), - (575, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '6AX5PQ64', '4645687'), - (575, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '6AX5PQ64', '4645698'), - (575, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '6AX5PQ64', '4645704'), - (575, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '6AX5PQ64', '4645705'), - (575, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '6AX5PQ64', '4668385'), - (575, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '6AX5PQ64', '4694407'), - (575, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '6AX5PQ64', '4736497'), - (575, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '6AX5PQ64', '4736499'), - (575, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '6AX5PQ64', '4736500'), - (575, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '6AX5PQ64', '4736503'), - (575, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '6AX5PQ64', '4736504'), - (575, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '6AX5PQ64', '4746789'), - (575, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '6AX5PQ64', '4753929'), - (575, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '6AX5PQ64', '5038850'), - (575, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '6AX5PQ64', '5045826'), - (575, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '6AX5PQ64', '5132533'), - (575, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '6AX5PQ64', '5186582'), - (575, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '6AX5PQ64', '5186583'), - (575, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '6AX5PQ64', '5186585'), - (575, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '6AX5PQ64', '5190437'), - (575, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '6AX5PQ64', '5215989'), - (575, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AX5PQ64', '6045684'), - (576, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'An28Z32A', '5880943'), - (576, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'An28Z32A', '5900202'), - (576, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'An28Z32A', '5900203'), - (576, 1916, 'not_attending', '2023-03-01 16:36:14', '2025-12-17 19:47:08', 'An28Z32A', '5910526'), - (576, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'An28Z32A', '5910528'), - (576, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'An28Z32A', '5962317'), - (576, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'An28Z32A', '5962318'), - (576, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'An28Z32A', '5965933'), - (576, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'An28Z32A', '5967014'), - (576, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'An28Z32A', '5972815'), - (576, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'An28Z32A', '5974016'), - (576, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'An28Z32A', '5981515'), - (576, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'An28Z32A', '5993516'), - (576, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'An28Z32A', '5998939'), - (576, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'An28Z32A', '6028191'), - (576, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'An28Z32A', '6040066'), - (576, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'An28Z32A', '6042717'), - (576, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'An28Z32A', '6044838'), - (576, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'An28Z32A', '6044839'), - (576, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'An28Z32A', '6045684'), - (576, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'An28Z32A', '6048955'), - (576, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'An28Z32A', '6050104'), - (576, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'An28Z32A', '6053195'), - (576, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'An28Z32A', '6053198'), - (576, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'An28Z32A', '6056085'), - (576, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'An28Z32A', '6056916'), - (576, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'An28Z32A', '6059290'), - (576, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'An28Z32A', '6060328'), - (576, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'An28Z32A', '6061037'), - (576, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'An28Z32A', '6061039'), - (576, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'An28Z32A', '6067245'), - (576, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'An28Z32A', '6068094'), - (576, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'An28Z32A', '6068252'), - (576, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'An28Z32A', '6068253'), - (576, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'An28Z32A', '6068254'), - (576, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'An28Z32A', '6068280'), - (576, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'An28Z32A', '6069093'), - (576, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'An28Z32A', '6072528'), - (576, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'An28Z32A', '6079840'), - (576, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'An28Z32A', '6083398'), - (576, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'An28Z32A', '6093504'), - (576, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'An28Z32A', '6097414'), - (576, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'An28Z32A', '6097442'), - (576, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'An28Z32A', '6097684'), - (576, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'An28Z32A', '6098762'), - (576, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'An28Z32A', '6101362'), - (576, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'An28Z32A', '6107314'), - (576, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'An28Z32A', '6120034'), - (577, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dl3J95l4', '5195095'), - (577, 1333, 'not_attending', '2022-04-13 18:37:37', '2025-12-17 19:47:27', 'dl3J95l4', '5243711'), - (577, 1339, 'not_attending', '2022-04-16 00:17:07', '2025-12-17 19:47:27', 'dl3J95l4', '5245284'), - (577, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dl3J95l4', '5247467'), - (577, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dl3J95l4', '5260800'), - (577, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dl3J95l4', '5269930'), - (577, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dl3J95l4', '5271448'), - (577, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dl3J95l4', '5271449'), - (577, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dl3J95l4', '5276469'), - (577, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dl3J95l4', '5278159'), - (577, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dl3J95l4', '5363695'), - (577, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dl3J95l4', '5365960'), - (577, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dl3J95l4', '5368973'), - (577, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dl3J95l4', '5378247'), - (577, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dl3J95l4', '5389605'), - (577, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dl3J95l4', '5397265'), - (577, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dl3J95l4', '6045684'), - (578, 646, 'attending', '2021-05-14 21:05:54', '2025-12-17 19:47:46', '8d8l0Kgd', '3539921'), - (578, 647, 'attending', '2021-05-16 15:24:25', '2025-12-17 19:47:46', '8d8l0Kgd', '3539922'), - (578, 648, 'attending', '2021-05-22 04:29:49', '2025-12-17 19:47:47', '8d8l0Kgd', '3539923'), - (578, 798, 'maybe', '2021-05-14 21:07:41', '2025-12-17 19:47:46', '8d8l0Kgd', '3796262'), - (578, 803, 'maybe', '2021-05-14 21:07:32', '2025-12-17 19:47:46', '8d8l0Kgd', '3804665'), - (578, 809, 'maybe', '2021-05-16 15:24:15', '2025-12-17 19:47:46', '8d8l0Kgd', '3807964'), - (578, 810, 'attending', '2021-05-16 15:20:05', '2025-12-17 19:47:46', '8d8l0Kgd', '3808029'), - (578, 811, 'attending', '2021-05-16 15:20:13', '2025-12-17 19:47:46', '8d8l0Kgd', '3808030'), - (578, 812, 'not_attending', '2021-05-19 20:36:51', '2025-12-17 19:47:46', '8d8l0Kgd', '3808031'), - (578, 815, 'attending', '2021-05-28 21:35:51', '2025-12-17 19:47:47', '8d8l0Kgd', '3818136'), - (578, 821, 'attending', '2021-05-31 13:17:54', '2025-12-17 19:47:47', '8d8l0Kgd', '3963965'), - (578, 823, 'attending', '2021-06-19 15:52:36', '2025-12-17 19:47:48', '8d8l0Kgd', '3974109'), - (578, 827, 'attending', '2021-06-05 22:41:36', '2025-12-17 19:47:47', '8d8l0Kgd', '3975311'), - (578, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '8d8l0Kgd', '3975312'), - (578, 830, 'attending', '2021-06-03 16:35:44', '2025-12-17 19:47:47', '8d8l0Kgd', '3976648'), - (578, 831, 'maybe', '2021-06-02 18:31:21', '2025-12-17 19:47:47', '8d8l0Kgd', '3976649'), - (578, 832, 'attending', '2021-06-05 19:32:14', '2025-12-17 19:47:47', '8d8l0Kgd', '3976650'), - (578, 834, 'attending', '2021-06-09 16:42:03', '2025-12-17 19:47:47', '8d8l0Kgd', '3990439'), - (578, 837, 'attending', '2021-06-17 22:45:26', '2025-12-17 19:47:48', '8d8l0Kgd', '3992545'), - (578, 838, 'maybe', '2021-06-08 17:17:12', '2025-12-17 19:47:47', '8d8l0Kgd', '3994992'), - (578, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '8d8l0Kgd', '4014338'), - (578, 866, 'attending', '2021-06-19 00:35:30', '2025-12-17 19:47:38', '8d8l0Kgd', '4020424'), - (578, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '8d8l0Kgd', '4021848'), - (578, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '8d8l0Kgd', '4136744'), - (578, 870, 'not_attending', '2021-07-02 19:14:16', '2025-12-17 19:47:39', '8d8l0Kgd', '4136937'), - (578, 871, 'not_attending', '2021-07-10 22:21:09', '2025-12-17 19:47:39', '8d8l0Kgd', '4136938'), - (578, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '8d8l0Kgd', '4136947'), - (578, 880, 'maybe', '2021-06-18 14:07:53', '2025-12-17 19:47:48', '8d8l0Kgd', '4205383'), - (578, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '8d8l0Kgd', '4210314'), - (578, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8d8l0Kgd', '4225444'), - (578, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '8d8l0Kgd', '4239259'), - (578, 900, 'attending', '2021-07-24 21:33:19', '2025-12-17 19:47:40', '8d8l0Kgd', '4240316'), - (578, 901, 'attending', '2021-07-31 21:13:28', '2025-12-17 19:47:40', '8d8l0Kgd', '4240317'), - (578, 902, 'not_attending', '2021-08-07 23:08:33', '2025-12-17 19:47:41', '8d8l0Kgd', '4240318'), - (578, 903, 'not_attending', '2021-08-14 21:47:29', '2025-12-17 19:47:42', '8d8l0Kgd', '4240320'), - (578, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8d8l0Kgd', '4250163'), - (578, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '8d8l0Kgd', '4275957'), - (578, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '8d8l0Kgd', '4277819'), - (578, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '8d8l0Kgd', '4301723'), - (578, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '8d8l0Kgd', '4302093'), - (578, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '8d8l0Kgd', '4304151'), - (578, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '8d8l0Kgd', '4356801'), - (578, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '8d8l0Kgd', '4366186'), - (578, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '8d8l0Kgd', '4366187'), - (578, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '8d8l0Kgd', '4420735'), - (578, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '8d8l0Kgd', '4420738'), - (578, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '8d8l0Kgd', '4420739'), - (578, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '8d8l0Kgd', '4420741'), - (578, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '8d8l0Kgd', '4420744'), - (578, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '8d8l0Kgd', '4420747'), - (578, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '8d8l0Kgd', '4420748'), - (578, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '8d8l0Kgd', '4420749'), - (578, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '8d8l0Kgd', '4461883'), - (578, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '8d8l0Kgd', '4508342'), - (578, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '8d8l0Kgd', '4568602'), - (578, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8d8l0Kgd', '6045684'), - (579, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Vdxw5kO4', '3236465'), - (579, 622, 'attending', '2021-03-14 00:00:02', '2025-12-17 19:47:51', 'Vdxw5kO4', '3517816'), - (579, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'Vdxw5kO4', '3539916'), - (579, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Vdxw5kO4', '3539918'), - (579, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Vdxw5kO4', '3539919'), - (579, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Vdxw5kO4', '3539920'), - (579, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Vdxw5kO4', '3539921'), - (579, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Vdxw5kO4', '3539927'), - (579, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Vdxw5kO4', '3582734'), - (579, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Vdxw5kO4', '3583262'), - (579, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Vdxw5kO4', '3619523'), - (579, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Vdxw5kO4', '3661369'), - (579, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Vdxw5kO4', '3674262'), - (579, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Vdxw5kO4', '3677402'), - (579, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Vdxw5kO4', '3730212'), - (579, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Vdxw5kO4', '3793156'), - (579, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Vdxw5kO4', '3803310'), - (579, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Vdxw5kO4', '3806392'), - (579, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Vdxw5kO4', '6045684'), - (580, 47, 'attending', '2020-05-03 23:33:14', '2025-12-17 19:47:57', 'ydwen00A', '2975272'), - (580, 62, 'attending', '2020-05-12 23:27:37', '2025-12-17 19:47:57', 'ydwen00A', '2977131'), - (580, 63, 'maybe', '2020-05-19 22:37:27', '2025-12-17 19:47:57', 'ydwen00A', '2977132'), - (580, 66, 'attending', '2020-06-09 01:17:53', '2025-12-17 19:47:58', 'ydwen00A', '2977135'), - (580, 68, 'attending', '2020-06-23 22:49:48', '2025-12-17 19:47:58', 'ydwen00A', '2977137'), - (580, 72, 'attending', '2020-05-07 18:35:47', '2025-12-17 19:47:57', 'ydwen00A', '2977812'), - (580, 77, 'attending', '2020-05-04 17:00:37', '2025-12-17 19:47:57', 'ydwen00A', '2978247'), - (580, 78, 'attending', '2020-05-07 22:00:55', '2025-12-17 19:47:57', 'ydwen00A', '2978249'), - (580, 79, 'attending', '2020-05-07 22:01:00', '2025-12-17 19:47:57', 'ydwen00A', '2978250'), - (580, 80, 'attending', '2020-05-07 22:01:04', '2025-12-17 19:47:58', 'ydwen00A', '2978251'), - (580, 81, 'attending', '2020-05-07 22:00:12', '2025-12-17 19:47:58', 'ydwen00A', '2978252'), - (580, 83, 'attending', '2020-05-07 20:06:33', '2025-12-17 19:47:57', 'ydwen00A', '2978438'), - (580, 96, 'attending', '2020-05-06 20:52:26', '2025-12-17 19:47:57', 'ydwen00A', '2987453'), - (580, 97, 'attending', '2020-05-06 18:52:12', '2025-12-17 19:47:57', 'ydwen00A', '2987454'), - (580, 98, 'maybe', '2020-05-21 23:32:05', '2025-12-17 19:47:57', 'ydwen00A', '2987455'), - (580, 99, 'maybe', '2020-05-03 23:47:34', '2025-12-17 19:47:57', 'ydwen00A', '2988545'), - (580, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'ydwen00A', '2994480'), - (580, 115, 'maybe', '2020-05-16 22:31:58', '2025-12-17 19:47:57', 'ydwen00A', '3001217'), - (580, 116, 'attending', '2020-05-04 17:00:21', '2025-12-17 19:47:57', 'ydwen00A', '3006242'), - (580, 120, 'attending', '2020-05-10 23:04:29', '2025-12-17 19:47:57', 'ydwen00A', '3018282'), - (580, 121, 'attending', '2020-05-18 05:15:51', '2025-12-17 19:47:57', 'ydwen00A', '3023063'), - (580, 122, 'maybe', '2020-05-18 23:10:35', '2025-12-17 19:47:57', 'ydwen00A', '3023491'), - (580, 123, 'attending', '2020-05-19 22:23:15', '2025-12-17 19:47:57', 'ydwen00A', '3023729'), - (580, 124, 'maybe', '2020-05-25 22:15:50', '2025-12-17 19:47:57', 'ydwen00A', '3023809'), - (580, 125, 'attending', '2020-05-17 03:30:10', '2025-12-17 19:47:57', 'ydwen00A', '3023987'), - (580, 126, 'attending', '2020-05-22 18:52:28', '2025-12-17 19:47:57', 'ydwen00A', '3024022'), - (580, 127, 'attending', '2020-05-17 03:30:14', '2025-12-17 19:47:57', 'ydwen00A', '3025623'), - (580, 130, 'attending', '2020-05-22 18:34:35', '2025-12-17 19:47:57', 'ydwen00A', '3028781'), - (580, 133, 'maybe', '2020-06-19 18:22:33', '2025-12-17 19:47:58', 'ydwen00A', '3034321'), - (580, 134, 'attending', '2020-05-24 22:04:04', '2025-12-17 19:47:57', 'ydwen00A', '3034367'), - (580, 135, 'attending', '2020-05-25 00:23:43', '2025-12-17 19:47:57', 'ydwen00A', '3034368'), - (580, 136, 'attending', '2020-05-24 22:41:03', '2025-12-17 19:47:57', 'ydwen00A', '3035881'), - (580, 139, 'maybe', '2020-06-18 22:50:30', '2025-12-17 19:47:58', 'ydwen00A', '3046190'), - (580, 140, 'attending', '2020-06-01 02:26:48', '2025-12-17 19:47:57', 'ydwen00A', '3046980'), - (580, 142, 'attending', '2020-06-01 02:26:46', '2025-12-17 19:47:57', 'ydwen00A', '3049860'), - (580, 143, 'attending', '2020-06-07 22:18:23', '2025-12-17 19:47:58', 'ydwen00A', '3049983'), - (580, 168, 'attending', '2020-06-06 22:45:00', '2025-12-17 19:47:58', 'ydwen00A', '3058740'), - (580, 169, 'attending', '2020-06-15 22:45:00', '2025-12-17 19:47:58', 'ydwen00A', '3058741'), - (580, 170, 'attending', '2020-06-07 22:42:57', '2025-12-17 19:47:58', 'ydwen00A', '3058742'), - (580, 171, 'attending', '2020-06-06 22:45:34', '2025-12-17 19:47:58', 'ydwen00A', '3058743'), - (580, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'ydwen00A', '3058959'), - (580, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'ydwen00A', '3067093'), - (580, 174, 'attending', '2020-06-09 01:18:02', '2025-12-17 19:47:58', 'ydwen00A', '3067927'), - (580, 175, 'attending', '2020-06-17 22:14:19', '2025-12-17 19:47:58', 'ydwen00A', '3068305'), - (580, 176, 'attending', '2020-06-19 18:22:13', '2025-12-17 19:47:58', 'ydwen00A', '3073192'), - (580, 177, 'attending', '2020-06-17 22:14:15', '2025-12-17 19:47:58', 'ydwen00A', '3073193'), - (580, 179, 'attending', '2020-06-20 16:29:19', '2025-12-17 19:47:58', 'ydwen00A', '3073687'), - (580, 180, 'attending', '2020-06-18 22:58:29', '2025-12-17 19:47:58', 'ydwen00A', '3074048'), - (580, 181, 'maybe', '2020-06-19 18:21:55', '2025-12-17 19:47:58', 'ydwen00A', '3074513'), - (580, 182, 'attending', '2020-06-27 22:48:34', '2025-12-17 19:47:55', 'ydwen00A', '3074514'), - (580, 183, 'maybe', '2020-06-19 18:22:10', '2025-12-17 19:47:58', 'ydwen00A', '3075228'), - (580, 185, 'maybe', '2020-06-19 18:22:00', '2025-12-17 19:47:58', 'ydwen00A', '3075456'), - (580, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'ydwen00A', '3083791'), - (580, 187, 'maybe', '2020-06-19 18:22:44', '2025-12-17 19:47:55', 'ydwen00A', '3085151'), - (580, 190, 'attending', '2020-07-04 22:40:34', '2025-12-17 19:47:55', 'ydwen00A', '3087258'), - (580, 191, 'attending', '2020-07-05 04:39:21', '2025-12-17 19:47:55', 'ydwen00A', '3087259'), - (580, 192, 'attending', '2020-07-18 06:49:28', '2025-12-17 19:47:55', 'ydwen00A', '3087260'), - (580, 193, 'attending', '2020-07-25 06:37:25', '2025-12-17 19:47:55', 'ydwen00A', '3087261'), - (580, 194, 'attending', '2020-07-29 23:03:50', '2025-12-17 19:47:56', 'ydwen00A', '3087262'), - (580, 195, 'attending', '2020-08-02 22:13:49', '2025-12-17 19:47:56', 'ydwen00A', '3087264'), - (580, 196, 'attending', '2020-08-10 19:42:45', '2025-12-17 19:47:56', 'ydwen00A', '3087265'), - (580, 197, 'attending', '2020-08-15 22:33:56', '2025-12-17 19:47:56', 'ydwen00A', '3087266'), - (580, 198, 'attending', '2020-08-29 22:48:31', '2025-12-17 19:47:56', 'ydwen00A', '3087267'), - (580, 199, 'attending', '2020-08-29 22:55:14', '2025-12-17 19:47:56', 'ydwen00A', '3087268'), - (580, 201, 'attending', '2020-06-25 20:40:49', '2025-12-17 19:47:55', 'ydwen00A', '3088653'), - (580, 204, 'attending', '2020-06-29 03:57:48', '2025-12-17 19:47:55', 'ydwen00A', '3102758'), - (580, 205, 'attending', '2020-07-10 21:17:56', '2025-12-17 19:47:55', 'ydwen00A', '3104804'), - (580, 209, 'attending', '2020-07-01 18:52:33', '2025-12-17 19:47:55', 'ydwen00A', '3106813'), - (580, 212, 'attending', '2020-07-14 22:23:27', '2025-12-17 19:47:55', 'ydwen00A', '3118517'), - (580, 214, 'attending', '2020-07-08 21:59:47', '2025-12-17 19:47:55', 'ydwen00A', '3124139'), - (580, 216, 'attending', '2020-07-09 23:54:08', '2025-12-17 19:47:55', 'ydwen00A', '3126500'), - (580, 217, 'maybe', '2020-07-13 22:17:17', '2025-12-17 19:47:55', 'ydwen00A', '3126684'), - (580, 223, 'attending', '2020-09-05 17:34:33', '2025-12-17 19:47:56', 'ydwen00A', '3129980'), - (580, 225, 'attending', '2020-07-21 14:03:40', '2025-12-17 19:47:55', 'ydwen00A', '3132378'), - (580, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'ydwen00A', '3132817'), - (580, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'ydwen00A', '3132820'), - (580, 228, 'attending', '2020-07-13 20:24:55', '2025-12-17 19:47:55', 'ydwen00A', '3132821'), - (580, 231, 'attending', '2020-07-19 22:02:18', '2025-12-17 19:47:55', 'ydwen00A', '3139762'), - (580, 265, 'attending', '2020-07-28 00:09:38', '2025-12-17 19:47:55', 'ydwen00A', '3150806'), - (580, 269, 'attending', '2020-07-28 23:58:56', '2025-12-17 19:47:55', 'ydwen00A', '3153076'), - (580, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'ydwen00A', '3155321'), - (580, 272, 'attending', '2020-08-03 19:43:29', '2025-12-17 19:47:56', 'ydwen00A', '3161472'), - (580, 273, 'attending', '2020-08-04 04:48:10', '2025-12-17 19:47:56', 'ydwen00A', '3162006'), - (580, 277, 'attending', '2020-08-03 21:10:40', '2025-12-17 19:47:56', 'ydwen00A', '3163442'), - (580, 278, 'attending', '2020-08-10 19:43:15', '2025-12-17 19:47:56', 'ydwen00A', '3165192'), - (580, 281, 'attending', '2020-08-07 19:45:34', '2025-12-17 19:47:56', 'ydwen00A', '3166945'), - (580, 283, 'attending', '2020-08-06 22:26:44', '2025-12-17 19:47:56', 'ydwen00A', '3169555'), - (580, 284, 'attending', '2020-08-06 22:26:42', '2025-12-17 19:47:56', 'ydwen00A', '3169556'), - (580, 287, 'attending', '2020-08-28 21:10:03', '2025-12-17 19:47:56', 'ydwen00A', '3170247'), - (580, 291, 'maybe', '2020-09-09 15:06:10', '2025-12-17 19:47:56', 'ydwen00A', '3170252'), - (580, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'ydwen00A', '3172832'), - (580, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'ydwen00A', '3172833'), - (580, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'ydwen00A', '3172834'), - (580, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'ydwen00A', '3172876'), - (580, 301, 'maybe', '2020-08-27 15:55:19', '2025-12-17 19:47:56', 'ydwen00A', '3178027'), - (580, 307, 'attending', '2020-08-20 09:41:40', '2025-12-17 19:47:56', 'ydwen00A', '3182590'), - (580, 311, 'attending', '2020-09-12 01:05:56', '2025-12-17 19:47:56', 'ydwen00A', '3186057'), - (580, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'ydwen00A', '3191735'), - (580, 318, 'attending', '2020-08-30 03:16:21', '2025-12-17 19:47:56', 'ydwen00A', '3193885'), - (580, 319, 'attending', '2020-08-31 22:24:21', '2025-12-17 19:47:56', 'ydwen00A', '3194179'), - (580, 322, 'not_attending', '2020-09-13 23:33:13', '2025-12-17 19:47:56', 'ydwen00A', '3197080'), - (580, 323, 'not_attending', '2020-09-13 23:33:23', '2025-12-17 19:47:56', 'ydwen00A', '3197081'), - (580, 325, 'attending', '2020-09-23 23:34:52', '2025-12-17 19:47:51', 'ydwen00A', '3197083'), - (580, 326, 'attending', '2020-09-25 22:50:41', '2025-12-17 19:47:52', 'ydwen00A', '3197084'), - (580, 327, 'maybe', '2020-09-21 05:21:26', '2025-12-17 19:47:52', 'ydwen00A', '3197085'), - (580, 328, 'maybe', '2020-09-21 05:21:34', '2025-12-17 19:47:52', 'ydwen00A', '3197086'), - (580, 329, 'maybe', '2020-09-25 23:18:49', '2025-12-17 19:47:52', 'ydwen00A', '3197087'), - (580, 332, 'not_attending', '2020-09-09 15:05:43', '2025-12-17 19:47:56', 'ydwen00A', '3198873'), - (580, 333, 'attending', '2020-10-06 22:50:15', '2025-12-17 19:47:52', 'ydwen00A', '3199782'), - (580, 334, 'maybe', '2020-10-02 02:13:59', '2025-12-17 19:47:52', 'ydwen00A', '3199784'), - (580, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'ydwen00A', '3200209'), - (580, 336, 'not_attending', '2020-09-13 23:33:07', '2025-12-17 19:47:56', 'ydwen00A', '3200495'), - (580, 337, 'maybe', '2020-09-09 15:05:51', '2025-12-17 19:47:56', 'ydwen00A', '3201771'), - (580, 343, 'maybe', '2020-09-21 05:20:50', '2025-12-17 19:47:56', 'ydwen00A', '3206759'), - (580, 344, 'attending', '2020-10-02 02:14:29', '2025-12-17 19:47:53', 'ydwen00A', '3206906'), - (580, 347, 'maybe', '2020-09-21 05:20:59', '2025-12-17 19:47:51', 'ydwen00A', '3207930'), - (580, 350, 'attending', '2020-09-12 19:53:09', '2025-12-17 19:47:56', 'ydwen00A', '3209255'), - (580, 351, 'not_attending', '2020-09-13 23:33:17', '2025-12-17 19:47:56', 'ydwen00A', '3209257'), - (580, 358, 'attending', '2020-09-19 16:28:15', '2025-12-17 19:47:56', 'ydwen00A', '3212579'), - (580, 362, 'attending', '2020-09-25 23:18:21', '2025-12-17 19:47:52', 'ydwen00A', '3214207'), - (580, 363, 'maybe', '2020-09-21 05:21:23', '2025-12-17 19:47:52', 'ydwen00A', '3217037'), - (580, 364, 'attending', '2020-09-21 21:47:43', '2025-12-17 19:47:56', 'ydwen00A', '3217106'), - (580, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'ydwen00A', '3218510'), - (580, 368, 'maybe', '2020-09-25 23:18:40', '2025-12-17 19:47:52', 'ydwen00A', '3221403'), - (580, 369, 'maybe', '2020-10-02 02:13:45', '2025-12-17 19:47:52', 'ydwen00A', '3221404'), - (580, 370, 'maybe', '2020-10-02 02:13:48', '2025-12-17 19:47:52', 'ydwen00A', '3221405'), - (580, 371, 'maybe', '2020-10-02 02:13:56', '2025-12-17 19:47:52', 'ydwen00A', '3221406'), - (580, 372, 'maybe', '2020-10-02 02:13:41', '2025-12-17 19:47:52', 'ydwen00A', '3221407'), - (580, 373, 'maybe', '2020-10-02 02:14:23', '2025-12-17 19:47:52', 'ydwen00A', '3221413'), - (580, 374, 'maybe', '2020-10-02 02:14:13', '2025-12-17 19:47:53', 'ydwen00A', '3221415'), - (580, 376, 'maybe', '2020-10-02 02:13:53', '2025-12-17 19:47:52', 'ydwen00A', '3222827'), - (580, 377, 'maybe', '2020-10-02 02:14:15', '2025-12-17 19:47:53', 'ydwen00A', '3222828'), - (580, 382, 'attending', '2020-10-02 02:12:10', '2025-12-17 19:47:52', 'ydwen00A', '3226873'), - (580, 385, 'attending', '2020-10-02 02:11:31', '2025-12-17 19:47:52', 'ydwen00A', '3228698'), - (580, 386, 'attending', '2020-10-10 17:09:32', '2025-12-17 19:47:52', 'ydwen00A', '3228699'), - (580, 387, 'attending', '2020-10-16 18:36:37', '2025-12-17 19:47:52', 'ydwen00A', '3228700'), - (580, 388, 'attending', '2020-10-02 02:11:47', '2025-12-17 19:47:52', 'ydwen00A', '3228701'), - (580, 390, 'attending', '2020-10-02 02:12:22', '2025-12-17 19:47:52', 'ydwen00A', '3231510'), - (580, 413, 'maybe', '2020-10-12 17:25:49', '2025-12-17 19:47:52', 'ydwen00A', '3236670'), - (580, 414, 'attending', '2020-10-16 18:39:53', '2025-12-17 19:47:52', 'ydwen00A', '3237277'), - (580, 416, 'attending', '2020-10-09 21:22:31', '2025-12-17 19:47:52', 'ydwen00A', '3238073'), - (580, 419, 'maybe', '2020-10-12 17:25:29', '2025-12-17 19:47:52', 'ydwen00A', '3242234'), - (580, 424, 'maybe', '2020-10-12 17:25:13', '2025-12-17 19:47:52', 'ydwen00A', '3245751'), - (580, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'ydwen00A', '3250232'), - (580, 427, 'attending', '2020-10-28 20:08:18', '2025-12-17 19:47:53', 'ydwen00A', '3250233'), - (580, 432, 'maybe', '2020-11-03 16:18:19', '2025-12-17 19:47:53', 'ydwen00A', '3254416'), - (580, 433, 'maybe', '2020-11-03 16:18:23', '2025-12-17 19:47:53', 'ydwen00A', '3254417'), - (580, 434, 'maybe', '2020-11-03 16:18:35', '2025-12-17 19:47:53', 'ydwen00A', '3254418'), - (580, 437, 'attending', '2020-10-28 20:07:45', '2025-12-17 19:47:53', 'ydwen00A', '3256160'), - (580, 438, 'not_attending', '2020-11-01 02:03:01', '2025-12-17 19:47:53', 'ydwen00A', '3256163'), - (580, 440, 'maybe', '2020-11-03 16:18:10', '2025-12-17 19:47:53', 'ydwen00A', '3256168'), - (580, 441, 'maybe', '2020-11-03 16:18:14', '2025-12-17 19:47:54', 'ydwen00A', '3256169'), - (580, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'ydwen00A', '3263578'), - (580, 452, 'attending', '2020-11-03 16:18:42', '2025-12-17 19:47:54', 'ydwen00A', '3272981'), - (580, 453, 'maybe', '2020-11-03 16:18:31', '2025-12-17 19:47:54', 'ydwen00A', '3274032'), - (580, 456, 'attending', '2020-11-05 18:30:47', '2025-12-17 19:47:54', 'ydwen00A', '3276428'), - (580, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ydwen00A', '3281467'), - (580, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'ydwen00A', '3281470'), - (580, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'ydwen00A', '3281829'), - (580, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'ydwen00A', '3285413'), - (580, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'ydwen00A', '3285414'), - (580, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ydwen00A', '3297764'), - (580, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'ydwen00A', '3313856'), - (580, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ydwen00A', '3314909'), - (580, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ydwen00A', '3314964'), - (580, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ydwen00A', '3323365'), - (580, 508, 'attending', '2021-01-12 00:03:43', '2025-12-17 19:47:48', 'ydwen00A', '3324231'), - (580, 509, 'not_attending', '2021-01-18 23:14:30', '2025-12-17 19:47:49', 'ydwen00A', '3324232'), - (580, 510, 'attending', '2021-01-29 23:42:27', '2025-12-17 19:47:49', 'ydwen00A', '3324233'), - (580, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'ydwen00A', '3329383'), - (580, 516, 'attending', '2020-12-25 07:14:39', '2025-12-17 19:47:48', 'ydwen00A', '3334530'), - (580, 521, 'attending', '2020-12-25 07:14:52', '2025-12-17 19:47:48', 'ydwen00A', '3337454'), - (580, 523, 'attending', '2020-12-25 07:43:51', '2025-12-17 19:47:48', 'ydwen00A', '3342960'), - (580, 526, 'attending', '2020-12-25 07:14:43', '2025-12-17 19:47:48', 'ydwen00A', '3351539'), - (580, 532, 'not_attending', '2021-01-08 00:18:45', '2025-12-17 19:47:48', 'ydwen00A', '3381412'), - (580, 536, 'attending', '2021-01-10 00:34:46', '2025-12-17 19:47:48', 'ydwen00A', '3386848'), - (580, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ydwen00A', '3389527'), - (580, 542, 'attending', '2021-01-12 00:04:13', '2025-12-17 19:47:48', 'ydwen00A', '3395013'), - (580, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ydwen00A', '3396499'), - (580, 544, 'not_attending', '2021-01-12 00:03:41', '2025-12-17 19:47:48', 'ydwen00A', '3396500'), - (580, 545, 'not_attending', '2021-01-12 00:04:16', '2025-12-17 19:47:49', 'ydwen00A', '3396502'), - (580, 546, 'not_attending', '2021-01-12 00:04:27', '2025-12-17 19:47:49', 'ydwen00A', '3396503'), - (580, 548, 'attending', '2021-01-12 00:04:04', '2025-12-17 19:47:48', 'ydwen00A', '3403650'), - (580, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ydwen00A', '3406988'), - (580, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'ydwen00A', '3408338'), - (580, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ydwen00A', '3416576'), - (580, 559, 'not_attending', '2021-01-28 05:10:15', '2025-12-17 19:47:49', 'ydwen00A', '3421439'), - (580, 565, 'attending', '2021-01-27 21:43:44', '2025-12-17 19:47:49', 'ydwen00A', '3426083'), - (580, 566, 'not_attending', '2021-01-29 00:43:17', '2025-12-17 19:47:50', 'ydwen00A', '3427928'), - (580, 568, 'attending', '2021-01-30 19:21:44', '2025-12-17 19:47:50', 'ydwen00A', '3430267'), - (580, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ydwen00A', '3517816'), - (580, 639, 'not_attending', '2021-03-07 04:16:32', '2025-12-17 19:47:51', 'ydwen00A', '3536656'), - (580, 644, 'attending', '2021-04-22 00:06:31', '2025-12-17 19:47:45', 'ydwen00A', '3539919'), - (580, 645, 'attending', '2021-05-08 17:48:57', '2025-12-17 19:47:46', 'ydwen00A', '3539920'), - (580, 646, 'attending', '2021-05-14 20:21:24', '2025-12-17 19:47:46', 'ydwen00A', '3539921'), - (580, 647, 'attending', '2021-05-22 20:39:10', '2025-12-17 19:47:46', 'ydwen00A', '3539922'), - (580, 648, 'attending', '2021-05-29 20:42:52', '2025-12-17 19:47:47', 'ydwen00A', '3539923'), - (580, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ydwen00A', '3539927'), - (580, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ydwen00A', '3582734'), - (580, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ydwen00A', '3583262'), - (580, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydwen00A', '3619523'), - (580, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydwen00A', '3661369'), - (580, 725, 'maybe', '2021-05-23 19:58:08', '2025-12-17 19:47:47', 'ydwen00A', '3661372'), - (580, 729, 'attending', '2021-04-28 22:53:57', '2025-12-17 19:47:46', 'ydwen00A', '3668075'), - (580, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydwen00A', '3674262'), - (580, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydwen00A', '3677402'), - (580, 761, 'attending', '2021-05-14 20:21:47', '2025-12-17 19:47:46', 'ydwen00A', '3716041'), - (580, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydwen00A', '3730212'), - (580, 789, 'attending', '2021-05-30 06:35:26', '2025-12-17 19:47:47', 'ydwen00A', '3785818'), - (580, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydwen00A', '3793156'), - (580, 823, 'attending', '2021-06-13 21:45:30', '2025-12-17 19:47:48', 'ydwen00A', '3974109'), - (580, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydwen00A', '3975311'), - (580, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydwen00A', '3975312'), - (580, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydwen00A', '3994992'), - (580, 844, 'attending', '2021-06-23 21:53:43', '2025-12-17 19:47:38', 'ydwen00A', '4014338'), - (580, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ydwen00A', '4021848'), - (580, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ydwen00A', '4136744'), - (580, 870, 'attending', '2021-07-03 22:14:16', '2025-12-17 19:47:39', 'ydwen00A', '4136937'), - (580, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ydwen00A', '4136938'), - (580, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwen00A', '4136947'), - (580, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ydwen00A', '4210314'), - (580, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwen00A', '4225444'), - (580, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydwen00A', '4239259'), - (580, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ydwen00A', '4240316'), - (580, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ydwen00A', '4240317'), - (580, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ydwen00A', '4240318'), - (580, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ydwen00A', '4240320'), - (580, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ydwen00A', '4250163'), - (580, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ydwen00A', '4275957'), - (580, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydwen00A', '4277819'), - (580, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydwen00A', '4301723'), - (580, 934, 'attending', '2021-08-04 16:42:35', '2025-12-17 19:47:40', 'ydwen00A', '4302093'), - (580, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydwen00A', '4304151'), - (580, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ydwen00A', '4356801'), - (580, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ydwen00A', '4366186'), - (580, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ydwen00A', '4366187'), - (580, 976, 'attending', '2021-08-19 21:35:17', '2025-12-17 19:47:42', 'ydwen00A', '4373933'), - (580, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ydwen00A', '4420735'), - (580, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ydwen00A', '4420738'), - (580, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ydwen00A', '4420739'), - (580, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ydwen00A', '4420741'), - (580, 994, 'attending', '2021-10-02 22:26:00', '2025-12-17 19:47:34', 'ydwen00A', '4420742'), - (580, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ydwen00A', '4420744'), - (580, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ydwen00A', '4420747'), - (580, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ydwen00A', '4420748'), - (580, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ydwen00A', '4420749'), - (580, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ydwen00A', '4461883'), - (580, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ydwen00A', '4508342'), - (580, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ydwen00A', '4568602'), - (580, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ydwen00A', '4572153'), - (580, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'ydwen00A', '4585962'), - (580, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ydwen00A', '4596356'), - (580, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ydwen00A', '4598860'), - (580, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ydwen00A', '4598861'), - (580, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ydwen00A', '4602797'), - (580, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ydwen00A', '4637896'), - (580, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ydwen00A', '4642994'), - (580, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'ydwen00A', '4642995'), - (580, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ydwen00A', '4642996'), - (580, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ydwen00A', '4642997'), - (580, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ydwen00A', '4645687'), - (580, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ydwen00A', '4645698'), - (580, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ydwen00A', '4645704'), - (580, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ydwen00A', '4645705'), - (580, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ydwen00A', '4668385'), - (580, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ydwen00A', '4694407'), - (580, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ydwen00A', '4736497'), - (580, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ydwen00A', '4736499'), - (580, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ydwen00A', '4736500'), - (580, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ydwen00A', '4736503'), - (580, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ydwen00A', '4736504'), - (580, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ydwen00A', '4746789'), - (580, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'ydwen00A', '4753929'), - (580, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ydwen00A', '5038850'), - (580, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ydwen00A', '5045826'), - (580, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ydwen00A', '5132533'), - (580, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ydwen00A', '5186582'), - (580, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ydwen00A', '5186583'), - (580, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ydwen00A', '5186585'), - (580, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ydwen00A', '5190437'), - (580, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ydwen00A', '5195095'), - (580, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ydwen00A', '5215989'), - (580, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ydwen00A', '5223686'), - (580, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ydwen00A', '5247467'), - (580, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ydwen00A', '5260800'), - (580, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ydwen00A', '5269930'), - (580, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ydwen00A', '5271448'), - (580, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'ydwen00A', '5271449'), - (580, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ydwen00A', '5278159'), - (580, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ydwen00A', '5363695'), - (580, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ydwen00A', '5365960'), - (580, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ydwen00A', '5378247'), - (580, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ydwen00A', '5389605'), - (580, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ydwen00A', '5397265'), - (580, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ydwen00A', '5404786'), - (580, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ydwen00A', '5405203'), - (580, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ydwen00A', '5412550'), - (580, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ydwen00A', '5415046'), - (580, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ydwen00A', '5422086'), - (580, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ydwen00A', '5422406'), - (580, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ydwen00A', '5424565'), - (580, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ydwen00A', '5426882'), - (580, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ydwen00A', '5441125'), - (580, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ydwen00A', '5441126'), - (580, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ydwen00A', '5441128'), - (580, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ydwen00A', '5441131'), - (580, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ydwen00A', '5441132'), - (580, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ydwen00A', '5453325'), - (580, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ydwen00A', '5454516'), - (580, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ydwen00A', '5454605'), - (580, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ydwen00A', '5455037'), - (580, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ydwen00A', '5461278'), - (580, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ydwen00A', '5469480'), - (580, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ydwen00A', '5474663'), - (580, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ydwen00A', '5482022'), - (580, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ydwen00A', '5488912'), - (580, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ydwen00A', '5492192'), - (580, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ydwen00A', '5493139'), - (580, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ydwen00A', '5493200'), - (580, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ydwen00A', '5502188'), - (580, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ydwen00A', '5505059'), - (580, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ydwen00A', '5509055'), - (580, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ydwen00A', '5512862'), - (580, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ydwen00A', '5513985'), - (580, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ydwen00A', '5519981'), - (580, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ydwen00A', '5522550'), - (580, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ydwen00A', '5534683'), - (580, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ydwen00A', '5537735'), - (580, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ydwen00A', '5540859'), - (580, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ydwen00A', '5546619'), - (580, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ydwen00A', '5557747'), - (580, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ydwen00A', '5560255'), - (580, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ydwen00A', '5562906'), - (580, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ydwen00A', '5600604'), - (580, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ydwen00A', '5605544'), - (580, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ydwen00A', '5630960'), - (580, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ydwen00A', '5630961'), - (580, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ydwen00A', '5630962'), - (580, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ydwen00A', '5630966'), - (580, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ydwen00A', '5630967'), - (580, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ydwen00A', '5630968'), - (580, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ydwen00A', '5635406'), - (580, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ydwen00A', '5638765'), - (580, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ydwen00A', '5640097'), - (580, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ydwen00A', '5640843'), - (580, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ydwen00A', '5641521'), - (580, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ydwen00A', '5642818'), - (580, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ydwen00A', '5652395'), - (580, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ydwen00A', '5670445'), - (580, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ydwen00A', '5671637'), - (580, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ydwen00A', '5672329'), - (580, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ydwen00A', '5674057'), - (580, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ydwen00A', '5674060'), - (580, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ydwen00A', '5677461'), - (580, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ydwen00A', '5698046'), - (580, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ydwen00A', '5699760'), - (580, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ydwen00A', '5741601'), - (580, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ydwen00A', '5763458'), - (580, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ydwen00A', '5774172'), - (580, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ydwen00A', '5818247'), - (580, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ydwen00A', '5819471'), - (580, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'ydwen00A', '5827739'), - (580, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ydwen00A', '5844306'), - (580, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ydwen00A', '5850159'), - (580, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ydwen00A', '5858999'), - (580, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ydwen00A', '5871984'), - (580, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ydwen00A', '5876354'), - (580, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ydwen00A', '5880939'), - (580, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ydwen00A', '5880940'), - (580, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ydwen00A', '5880942'), - (580, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ydwen00A', '5880943'), - (580, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ydwen00A', '5887890'), - (580, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ydwen00A', '5888598'), - (580, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ydwen00A', '5893260'), - (580, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ydwen00A', '5899826'), - (580, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ydwen00A', '5900199'), - (580, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ydwen00A', '5900200'), - (580, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ydwen00A', '5900202'), - (580, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ydwen00A', '5900203'), - (580, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ydwen00A', '5901108'), - (580, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ydwen00A', '5901126'), - (580, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'ydwen00A', '5901606'), - (580, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ydwen00A', '5909655'), - (580, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ydwen00A', '5910522'), - (580, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ydwen00A', '5910526'), - (580, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ydwen00A', '5910528'), - (580, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ydwen00A', '5916219'), - (580, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ydwen00A', '5936234'), - (580, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ydwen00A', '5958351'), - (580, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ydwen00A', '5959751'), - (580, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ydwen00A', '5959755'), - (580, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ydwen00A', '5960055'), - (580, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ydwen00A', '5961684'), - (580, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ydwen00A', '5962132'), - (580, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ydwen00A', '5962133'), - (580, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ydwen00A', '5962134'), - (580, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ydwen00A', '5962317'), - (580, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ydwen00A', '5962318'), - (580, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ydwen00A', '5965933'), - (580, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ydwen00A', '5967014'), - (580, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ydwen00A', '5972815'), - (580, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ydwen00A', '5974016'), - (580, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ydwen00A', '5981515'), - (580, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ydwen00A', '5993516'), - (580, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ydwen00A', '5998939'), - (580, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ydwen00A', '6028191'), - (580, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ydwen00A', '6040066'), - (580, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ydwen00A', '6042717'), - (580, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ydwen00A', '6044838'), - (580, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ydwen00A', '6044839'), - (580, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwen00A', '6045684'), - (580, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ydwen00A', '6050104'), - (580, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ydwen00A', '6053195'), - (580, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ydwen00A', '6053198'), - (580, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ydwen00A', '6056085'), - (580, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ydwen00A', '6056916'), - (580, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ydwen00A', '6059290'), - (580, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ydwen00A', '6060328'), - (580, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ydwen00A', '6061037'), - (580, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ydwen00A', '6061039'), - (580, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ydwen00A', '6067245'), - (580, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ydwen00A', '6068094'), - (580, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ydwen00A', '6068252'), - (580, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ydwen00A', '6068253'), - (580, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ydwen00A', '6068254'), - (580, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ydwen00A', '6068280'), - (580, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ydwen00A', '6069093'), - (580, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ydwen00A', '6072528'), - (580, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ydwen00A', '6079840'), - (580, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ydwen00A', '6083398'), - (580, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ydwen00A', '6093504'), - (580, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ydwen00A', '6097414'), - (580, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ydwen00A', '6097442'), - (580, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ydwen00A', '6097684'), - (580, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ydwen00A', '6098762'), - (580, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ydwen00A', '6101361'), - (580, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ydwen00A', '6101362'), - (580, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ydwen00A', '6107314'), - (580, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ydwen00A', '6120034'), - (580, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'ydwen00A', '6136733'), - (580, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ydwen00A', '6137989'), - (580, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ydwen00A', '6150864'), - (580, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ydwen00A', '6155491'), - (580, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ydwen00A', '6164417'), - (580, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ydwen00A', '6166388'), - (580, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ydwen00A', '6176439'), - (580, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ydwen00A', '6182410'), - (580, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ydwen00A', '6185812'), - (580, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ydwen00A', '6187651'), - (580, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ydwen00A', '6187963'), - (580, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ydwen00A', '6187964'), - (580, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ydwen00A', '6187966'), - (580, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ydwen00A', '6187967'), - (580, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ydwen00A', '6187969'), - (580, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ydwen00A', '6334878'), - (580, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ydwen00A', '6337236'), - (580, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ydwen00A', '6337970'), - (580, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ydwen00A', '6338308'), - (580, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ydwen00A', '6341710'), - (580, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ydwen00A', '6342044'), - (580, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ydwen00A', '6342298'), - (580, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ydwen00A', '6343294'), - (580, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ydwen00A', '6347034'), - (580, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ydwen00A', '6347056'), - (580, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ydwen00A', '6353830'), - (580, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ydwen00A', '6353831'), - (580, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ydwen00A', '6357867'), - (580, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ydwen00A', '6358652'), - (580, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ydwen00A', '6361709'), - (580, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ydwen00A', '6361710'), - (580, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ydwen00A', '6361711'), - (580, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ydwen00A', '6361712'), - (580, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ydwen00A', '6361713'), - (580, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'ydwen00A', '6382573'), - (580, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ydwen00A', '6388604'), - (580, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ydwen00A', '6394629'), - (580, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ydwen00A', '6394631'), - (580, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ydwen00A', '6440863'), - (580, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ydwen00A', '6445440'), - (580, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ydwen00A', '6453951'), - (580, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ydwen00A', '6461696'), - (580, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ydwen00A', '6462129'), - (580, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ydwen00A', '6463218'), - (580, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ydwen00A', '6472181'), - (580, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ydwen00A', '6482693'), - (580, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ydwen00A', '6484200'), - (580, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ydwen00A', '6484680'), - (580, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ydwen00A', '6507741'), - (580, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ydwen00A', '6514659'), - (580, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ydwen00A', '6514660'), - (580, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ydwen00A', '6519103'), - (580, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ydwen00A', '6535681'), - (580, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ydwen00A', '6584747'), - (580, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ydwen00A', '6587097'), - (580, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ydwen00A', '6609022'), - (580, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'ydwen00A', '6632757'), - (580, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ydwen00A', '6644187'), - (580, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ydwen00A', '6648951'), - (580, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ydwen00A', '6648952'), - (580, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ydwen00A', '6655401'), - (580, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ydwen00A', '6661585'), - (580, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ydwen00A', '6661588'), - (580, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ydwen00A', '6661589'), - (580, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ydwen00A', '6699906'), - (580, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ydwen00A', '6699913'), - (580, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ydwen00A', '6701109'), - (580, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ydwen00A', '6705219'), - (580, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ydwen00A', '6710153'), - (580, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ydwen00A', '6711552'), - (580, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ydwen00A', '6711553'), - (580, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ydwen00A', '6722688'), - (580, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ydwen00A', '6730620'), - (580, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ydwen00A', '6740364'), - (580, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ydwen00A', '6743829'), - (580, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ydwen00A', '7030380'), - (580, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'ydwen00A', '7033677'), - (580, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ydwen00A', '7044715'), - (580, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ydwen00A', '7050318'), - (580, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ydwen00A', '7050319'), - (580, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ydwen00A', '7050322'), - (580, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ydwen00A', '7057804'), - (580, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ydwen00A', '7072824'), - (580, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ydwen00A', '7074348'), - (580, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ydwen00A', '7074364'), - (580, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ydwen00A', '7089267'), - (580, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ydwen00A', '7098747'), - (580, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ydwen00A', '7113468'), - (580, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ydwen00A', '7114856'), - (580, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ydwen00A', '7114951'), - (580, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ydwen00A', '7114955'), - (580, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ydwen00A', '7114956'), - (580, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ydwen00A', '7114957'), - (580, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ydwen00A', '7159484'), - (580, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ydwen00A', '7178446'), - (580, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ydwen00A', '7220467'), - (580, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ydwen00A', '7240354'), - (580, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ydwen00A', '7251633'), - (580, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ydwen00A', '7324073'), - (580, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ydwen00A', '7324074'), - (580, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ydwen00A', '7324075'), - (580, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ydwen00A', '7324078'), - (580, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ydwen00A', '7324082'), - (580, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ydwen00A', '7331457'), - (580, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ydwen00A', '7363643'), - (580, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ydwen00A', '7368606'), - (580, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ydwen00A', '7397462'), - (580, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ydwen00A', '7424275'), - (580, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ydwen00A', '7432751'), - (580, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ydwen00A', '7432752'), - (580, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ydwen00A', '7432753'), - (580, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ydwen00A', '7432754'), - (580, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ydwen00A', '7432755'), - (580, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ydwen00A', '7432756'), - (580, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ydwen00A', '7432758'), - (580, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ydwen00A', '7432759'), - (580, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ydwen00A', '7433834'), - (580, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'ydwen00A', '7470197'), - (580, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ydwen00A', '7685613'), - (580, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ydwen00A', '7688194'), - (580, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ydwen00A', '7688196'), - (580, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ydwen00A', '7688289'), - (580, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ydwen00A', '7692763'), - (580, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ydwen00A', '7697552'), - (580, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ydwen00A', '7699878'), - (580, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ydwen00A', '7704043'), - (580, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ydwen00A', '7712467'), - (580, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ydwen00A', '7713585'), - (580, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ydwen00A', '7713586'), - (580, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ydwen00A', '7738518'), - (580, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ydwen00A', '7750636'), - (580, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ydwen00A', '7796540'), - (580, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ydwen00A', '7796541'), - (580, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ydwen00A', '7796542'), - (580, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ydwen00A', '7825913'), - (580, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ydwen00A', '7826209'), - (580, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ydwen00A', '7834742'), - (580, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ydwen00A', '7842108'), - (580, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ydwen00A', '7842902'), - (580, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ydwen00A', '7842903'), - (580, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ydwen00A', '7842904'), - (580, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ydwen00A', '7842905'), - (580, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ydwen00A', '7855719'), - (580, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ydwen00A', '7860683'), - (580, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ydwen00A', '7860684'), - (580, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ydwen00A', '7866095'), - (580, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ydwen00A', '7869170'), - (580, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ydwen00A', '7869188'), - (580, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ydwen00A', '7869201'), - (580, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ydwen00A', '7877465'), - (580, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ydwen00A', '7888250'), - (580, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ydwen00A', '7904777'), - (580, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ydwen00A', '8349164'), - (580, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ydwen00A', '8349545'), - (580, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ydwen00A', '8368028'), - (580, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ydwen00A', '8368029'), - (580, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ydwen00A', '8388462'), - (580, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ydwen00A', '8400273'), - (580, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ydwen00A', '8400275'), - (580, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ydwen00A', '8400276'), - (580, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ydwen00A', '8404977'), - (580, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ydwen00A', '8430783'), - (580, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ydwen00A', '8430784'), - (580, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ydwen00A', '8430799'), - (580, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ydwen00A', '8430800'), - (580, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ydwen00A', '8430801'), - (580, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ydwen00A', '8438709'), - (580, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ydwen00A', '8457738'), - (580, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ydwen00A', '8459566'), - (580, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ydwen00A', '8459567'), - (580, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ydwen00A', '8461032'), - (580, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ydwen00A', '8477877'), - (580, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ydwen00A', '8485688'), - (580, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ydwen00A', '8490587'), - (580, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ydwen00A', '8493552'), - (580, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ydwen00A', '8493553'), - (580, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ydwen00A', '8493554'), - (580, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ydwen00A', '8493555'), - (580, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ydwen00A', '8493556'), - (580, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ydwen00A', '8493557'), - (580, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ydwen00A', '8493558'), - (580, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ydwen00A', '8493559'), - (580, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ydwen00A', '8493560'), - (580, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ydwen00A', '8493561'), - (580, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ydwen00A', '8493572'), - (580, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ydwen00A', '8540725'), - (580, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ydwen00A', '8555421'), - (581, 410, 'attending', '2020-11-22 23:55:50', '2025-12-17 19:47:54', 'lAerOQ34', '3236469'), - (581, 429, 'not_attending', '2020-12-06 21:54:31', '2025-12-17 19:47:54', 'lAerOQ34', '3250523'), - (581, 469, 'attending', '2020-11-28 02:10:58', '2025-12-17 19:47:54', 'lAerOQ34', '3285414'), - (581, 477, 'attending', '2020-11-29 04:49:51', '2025-12-17 19:47:54', 'lAerOQ34', '3289559'), - (581, 490, 'attending', '2020-11-29 04:49:03', '2025-12-17 19:47:54', 'lAerOQ34', '3313532'), - (581, 491, 'attending', '2020-11-29 04:49:05', '2025-12-17 19:47:55', 'lAerOQ34', '3313533'), - (581, 492, 'attending', '2020-11-30 16:51:13', '2025-12-17 19:47:54', 'lAerOQ34', '3313731'), - (581, 493, 'not_attending', '2020-12-05 04:50:21', '2025-12-17 19:47:54', 'lAerOQ34', '3313856'), - (581, 495, 'not_attending', '2020-12-06 21:38:59', '2025-12-17 19:47:54', 'lAerOQ34', '3314009'), - (581, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'lAerOQ34', '3314909'), - (581, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'lAerOQ34', '3314964'), - (581, 502, 'attending', '2020-12-12 20:29:06', '2025-12-17 19:47:55', 'lAerOQ34', '3323365'), - (581, 503, 'attending', '2020-12-06 21:38:40', '2025-12-17 19:47:55', 'lAerOQ34', '3323366'), - (581, 504, 'attending', '2020-12-06 21:38:45', '2025-12-17 19:47:55', 'lAerOQ34', '3323368'), - (581, 505, 'attending', '2020-12-06 21:38:23', '2025-12-17 19:47:55', 'lAerOQ34', '3323369'), - (581, 506, 'maybe', '2020-12-13 04:32:52', '2025-12-17 19:47:55', 'lAerOQ34', '3323375'), - (581, 513, 'not_attending', '2020-12-19 17:30:40', '2025-12-17 19:47:55', 'lAerOQ34', '3329383'), - (581, 519, 'attending', '2020-12-14 23:48:29', '2025-12-17 19:47:55', 'lAerOQ34', '3337448'), - (581, 520, 'not_attending', '2020-12-20 19:10:29', '2025-12-17 19:47:55', 'lAerOQ34', '3337453'), - (581, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'lAerOQ34', '3351539'), - (581, 536, 'not_attending', '2021-01-09 21:30:53', '2025-12-17 19:47:48', 'lAerOQ34', '3386848'), - (581, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'lAerOQ34', '3389527'), - (581, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'lAerOQ34', '3396499'), - (581, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'lAerOQ34', '3403650'), - (581, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'lAerOQ34', '3406988'), - (581, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'lAerOQ34', '3408338'), - (581, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'lAerOQ34', '3416576'), - (581, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAerOQ34', '6045684'), - (582, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AnbvzkLA', '5195095'), - (582, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AnbvzkLA', '5223686'), - (582, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AnbvzkLA', '5227432'), - (582, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AnbvzkLA', '5247467'), - (582, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AnbvzkLA', '5260800'), - (582, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AnbvzkLA', '5269930'), - (582, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AnbvzkLA', '5271448'), - (582, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AnbvzkLA', '5271449'), - (582, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AnbvzkLA', '5276469'), - (582, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AnbvzkLA', '5278159'), - (582, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AnbvzkLA', '6045684'), - (583, 884, 'not_attending', '2021-08-13 22:24:14', '2025-12-17 19:47:42', 'Ae725qOd', '4210314'), - (583, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'Ae725qOd', '4315726'), - (583, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Ae725qOd', '4356801'), - (583, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Ae725qOd', '4366186'), - (583, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Ae725qOd', '4366187'), - (583, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Ae725qOd', '4420735'), - (583, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Ae725qOd', '4420738'), - (583, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'Ae725qOd', '4420739'), - (583, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Ae725qOd', '4420741'), - (583, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Ae725qOd', '4420744'), - (583, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Ae725qOd', '4420747'), - (583, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Ae725qOd', '4420748'), - (583, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Ae725qOd', '4420749'), - (583, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Ae725qOd', '4461883'), - (583, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Ae725qOd', '4508342'), - (583, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Ae725qOd', '6045684'), - (584, 410, 'attending', '2020-11-25 23:05:07', '2025-12-17 19:47:54', 'EdVaR3p4', '3236469'), - (584, 452, 'attending', '2020-11-27 18:09:52', '2025-12-17 19:47:54', 'EdVaR3p4', '3272981'), - (584, 465, 'not_attending', '2020-11-27 16:20:25', '2025-12-17 19:47:54', 'EdVaR3p4', '3281555'), - (584, 469, 'attending', '2020-11-25 23:05:20', '2025-12-17 19:47:54', 'EdVaR3p4', '3285414'), - (584, 475, 'attending', '2020-11-26 01:12:01', '2025-12-17 19:47:54', 'EdVaR3p4', '3286760'), - (584, 488, 'maybe', '2020-12-02 04:52:08', '2025-12-17 19:47:54', 'EdVaR3p4', '3312757'), - (584, 489, 'not_attending', '2020-11-28 02:27:34', '2025-12-17 19:47:54', 'EdVaR3p4', '3313022'), - (584, 493, 'attending', '2020-11-29 04:19:34', '2025-12-17 19:47:54', 'EdVaR3p4', '3313856'), - (584, 496, 'maybe', '2020-12-07 23:20:19', '2025-12-17 19:47:54', 'EdVaR3p4', '3314269'), - (584, 497, 'attending', '2020-12-02 04:52:54', '2025-12-17 19:47:55', 'EdVaR3p4', '3314270'), - (584, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'EdVaR3p4', '3314909'), - (584, 500, 'attending', '2020-12-17 22:45:58', '2025-12-17 19:47:55', 'EdVaR3p4', '3314964'), - (584, 501, 'maybe', '2020-12-07 23:20:12', '2025-12-17 19:47:54', 'EdVaR3p4', '3317834'), - (584, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'EdVaR3p4', '3323365'), - (584, 513, 'attending', '2020-12-17 22:46:07', '2025-12-17 19:47:55', 'EdVaR3p4', '3329383'), - (584, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'EdVaR3p4', '3351539'), - (584, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'EdVaR3p4', '3386848'), - (584, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'EdVaR3p4', '3389527'), - (584, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'EdVaR3p4', '3396499'), - (584, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'EdVaR3p4', '3403650'), - (584, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'EdVaR3p4', '3406988'), - (584, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'EdVaR3p4', '3416576'), - (584, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'EdVaR3p4', '3418925'), - (584, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'EdVaR3p4', '3426074'), - (584, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'EdVaR3p4', '3430267'), - (584, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'EdVaR3p4', '3470305'), - (584, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'EdVaR3p4', '3470991'), - (584, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'EdVaR3p4', '3517815'), - (584, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'EdVaR3p4', '3517816'), - (584, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'EdVaR3p4', '3523941'), - (584, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'EdVaR3p4', '3533850'), - (584, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'EdVaR3p4', '3536632'), - (584, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'EdVaR3p4', '3536656'), - (584, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'EdVaR3p4', '3539916'), - (584, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'EdVaR3p4', '3539917'), - (584, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'EdVaR3p4', '3539918'), - (584, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'EdVaR3p4', '3539919'), - (584, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'EdVaR3p4', '3539920'), - (584, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'EdVaR3p4', '3539921'), - (584, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'EdVaR3p4', '3539922'), - (584, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'EdVaR3p4', '3539923'), - (584, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'EdVaR3p4', '3539927'), - (584, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'EdVaR3p4', '3582734'), - (584, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'EdVaR3p4', '3583262'), - (584, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'EdVaR3p4', '3619523'), - (584, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'EdVaR3p4', '3661369'), - (584, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'EdVaR3p4', '3674262'), - (584, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'EdVaR3p4', '3677402'), - (584, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'EdVaR3p4', '3730212'), - (584, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'EdVaR3p4', '3793156'), - (584, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'EdVaR3p4', '3974109'), - (584, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'EdVaR3p4', '3975311'), - (584, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'EdVaR3p4', '3975312'), - (584, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'EdVaR3p4', '3994992'), - (584, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'EdVaR3p4', '4014338'), - (584, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'EdVaR3p4', '4021848'), - (584, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'EdVaR3p4', '4136744'), - (584, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'EdVaR3p4', '4136937'), - (584, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'EdVaR3p4', '4136938'), - (584, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'EdVaR3p4', '4136947'), - (584, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'EdVaR3p4', '4210314'), - (584, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'EdVaR3p4', '4225444'), - (584, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'EdVaR3p4', '4239259'), - (584, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'EdVaR3p4', '4240316'), - (584, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'EdVaR3p4', '4240317'), - (584, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'EdVaR3p4', '4240318'), - (584, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'EdVaR3p4', '4240320'), - (584, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'EdVaR3p4', '4250163'), - (584, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'EdVaR3p4', '4275957'), - (584, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'EdVaR3p4', '4277819'), - (584, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'EdVaR3p4', '4301723'), - (584, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'EdVaR3p4', '4302093'), - (584, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'EdVaR3p4', '4304151'), - (584, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'EdVaR3p4', '4356801'), - (584, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'EdVaR3p4', '4366186'), - (584, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'EdVaR3p4', '4366187'), - (584, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'EdVaR3p4', '4420735'), - (584, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'EdVaR3p4', '4420738'), - (584, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'EdVaR3p4', '4420739'), - (584, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'EdVaR3p4', '4420741'), - (584, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'EdVaR3p4', '4420744'), - (584, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'EdVaR3p4', '4420747'), - (584, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'EdVaR3p4', '4420748'), - (584, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'EdVaR3p4', '4420749'), - (584, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'EdVaR3p4', '4461883'), - (584, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'EdVaR3p4', '4508342'), - (584, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'EdVaR3p4', '4568602'), - (584, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'EdVaR3p4', '4572153'), - (584, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'EdVaR3p4', '4585962'), - (584, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'EdVaR3p4', '4596356'), - (584, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'EdVaR3p4', '4598860'), - (584, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'EdVaR3p4', '4598861'), - (584, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'EdVaR3p4', '4602797'), - (584, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'EdVaR3p4', '4637896'), - (584, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'EdVaR3p4', '4642994'), - (584, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'EdVaR3p4', '4642995'), - (584, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'EdVaR3p4', '4642996'), - (584, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'EdVaR3p4', '4642997'), - (584, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'EdVaR3p4', '4645687'), - (584, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'EdVaR3p4', '4645698'), - (584, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'EdVaR3p4', '4645704'), - (584, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'EdVaR3p4', '4645705'), - (584, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'EdVaR3p4', '4668385'), - (584, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'EdVaR3p4', '4694407'), - (584, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'EdVaR3p4', '4736497'), - (584, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'EdVaR3p4', '4736499'), - (584, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'EdVaR3p4', '4736500'), - (584, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'EdVaR3p4', '4736503'), - (584, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'EdVaR3p4', '4736504'), - (584, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'EdVaR3p4', '4746789'), - (584, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'EdVaR3p4', '4753929'), - (584, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'EdVaR3p4', '5038850'), - (584, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'EdVaR3p4', '5045826'), - (584, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'EdVaR3p4', '5132533'), - (584, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'EdVaR3p4', '5186582'), - (584, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'EdVaR3p4', '5186583'), - (584, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'EdVaR3p4', '5186585'), - (584, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'EdVaR3p4', '5190437'), - (584, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'EdVaR3p4', '5195095'), - (584, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'EdVaR3p4', '5215989'), - (584, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'EdVaR3p4', '5223686'), - (584, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'EdVaR3p4', '5247467'), - (584, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'EdVaR3p4', '5260800'), - (584, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'EdVaR3p4', '5269930'), - (584, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'EdVaR3p4', '5271448'), - (584, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'EdVaR3p4', '5271449'), - (584, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'EdVaR3p4', '5278159'), - (584, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'EdVaR3p4', '5363695'), - (584, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'EdVaR3p4', '5365960'), - (584, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'EdVaR3p4', '5378247'), - (584, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'EdVaR3p4', '5389605'), - (584, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'EdVaR3p4', '5397265'), - (584, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'EdVaR3p4', '5404786'), - (584, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'EdVaR3p4', '5405203'), - (584, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'EdVaR3p4', '5412550'), - (584, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'EdVaR3p4', '5415046'), - (584, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'EdVaR3p4', '5422086'), - (584, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'EdVaR3p4', '5422406'), - (584, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'EdVaR3p4', '5424565'), - (584, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'EdVaR3p4', '5426882'), - (584, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'EdVaR3p4', '5441125'), - (584, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'EdVaR3p4', '5441126'), - (584, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'EdVaR3p4', '5441128'), - (584, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'EdVaR3p4', '5441131'), - (584, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'EdVaR3p4', '5441132'), - (584, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'EdVaR3p4', '5453325'), - (584, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'EdVaR3p4', '5454516'), - (584, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'EdVaR3p4', '5454605'), - (584, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'EdVaR3p4', '5455037'), - (584, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'EdVaR3p4', '5461278'), - (584, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'EdVaR3p4', '5469480'), - (584, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'EdVaR3p4', '5474663'), - (584, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'EdVaR3p4', '5482022'), - (584, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'EdVaR3p4', '5488912'), - (584, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'EdVaR3p4', '5492192'), - (584, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'EdVaR3p4', '5493139'), - (584, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'EdVaR3p4', '5493200'), - (584, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'EdVaR3p4', '5502188'), - (584, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'EdVaR3p4', '5505059'), - (584, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'EdVaR3p4', '5509055'), - (584, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'EdVaR3p4', '5512862'), - (584, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'EdVaR3p4', '5513985'), - (584, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'EdVaR3p4', '5519981'), - (584, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'EdVaR3p4', '5522550'), - (584, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'EdVaR3p4', '5534683'), - (584, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'EdVaR3p4', '5537735'), - (584, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'EdVaR3p4', '5540859'), - (584, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'EdVaR3p4', '5546619'), - (584, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'EdVaR3p4', '5557747'), - (584, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'EdVaR3p4', '5560255'), - (584, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'EdVaR3p4', '5562906'), - (584, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'EdVaR3p4', '5600604'), - (584, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'EdVaR3p4', '5605544'), - (584, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'EdVaR3p4', '5630960'), - (584, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'EdVaR3p4', '5630961'), - (584, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'EdVaR3p4', '5630962'), - (584, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'EdVaR3p4', '5630966'), - (584, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'EdVaR3p4', '5630967'), - (584, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'EdVaR3p4', '5630968'), - (584, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'EdVaR3p4', '5635406'), - (584, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'EdVaR3p4', '5638765'), - (584, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'EdVaR3p4', '5640097'), - (584, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'EdVaR3p4', '5640843'), - (584, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'EdVaR3p4', '5641521'), - (584, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'EdVaR3p4', '5642818'), - (584, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'EdVaR3p4', '5652395'), - (584, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'EdVaR3p4', '5670445'), - (584, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'EdVaR3p4', '5671637'), - (584, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'EdVaR3p4', '5672329'), - (584, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'EdVaR3p4', '5674057'), - (584, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'EdVaR3p4', '5674060'), - (584, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'EdVaR3p4', '5677461'), - (584, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'EdVaR3p4', '5698046'), - (584, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'EdVaR3p4', '5699760'), - (584, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'EdVaR3p4', '5741601'), - (584, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'EdVaR3p4', '5763458'), - (584, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'EdVaR3p4', '5774172'), - (584, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'EdVaR3p4', '5818247'), - (584, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'EdVaR3p4', '5819471'), - (584, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'EdVaR3p4', '5827739'), - (584, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'EdVaR3p4', '5844306'), - (584, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'EdVaR3p4', '5850159'), - (584, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'EdVaR3p4', '5858999'), - (584, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'EdVaR3p4', '5871984'), - (584, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'EdVaR3p4', '5876354'), - (584, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'EdVaR3p4', '5880939'), - (584, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'EdVaR3p4', '5880940'), - (584, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'EdVaR3p4', '5880942'), - (584, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'EdVaR3p4', '5880943'), - (584, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'EdVaR3p4', '5887890'), - (584, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'EdVaR3p4', '5888598'), - (584, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'EdVaR3p4', '5893260'), - (584, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'EdVaR3p4', '5899826'), - (584, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'EdVaR3p4', '5900199'), - (584, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'EdVaR3p4', '5900200'), - (584, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'EdVaR3p4', '5900202'), - (584, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'EdVaR3p4', '5900203'), - (584, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'EdVaR3p4', '5901108'), - (584, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'EdVaR3p4', '5901126'), - (584, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'EdVaR3p4', '5901606'), - (584, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'EdVaR3p4', '5909655'), - (584, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'EdVaR3p4', '5910522'), - (584, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'EdVaR3p4', '5910526'), - (584, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'EdVaR3p4', '5910528'), - (584, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'EdVaR3p4', '5916219'), - (584, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'EdVaR3p4', '5936234'), - (584, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'EdVaR3p4', '5958351'), - (584, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'EdVaR3p4', '5959751'), - (584, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'EdVaR3p4', '5959755'), - (584, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'EdVaR3p4', '5960055'), - (584, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'EdVaR3p4', '5961684'), - (584, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'EdVaR3p4', '5962132'), - (584, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'EdVaR3p4', '5962133'), - (584, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'EdVaR3p4', '5962134'), - (584, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'EdVaR3p4', '5962317'), - (584, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'EdVaR3p4', '5962318'), - (584, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'EdVaR3p4', '5965933'), - (584, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'EdVaR3p4', '5967014'), - (584, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'EdVaR3p4', '5972815'), - (584, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'EdVaR3p4', '5974016'), - (584, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'EdVaR3p4', '5981515'), - (584, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'EdVaR3p4', '5993516'), - (584, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'EdVaR3p4', '5998939'), - (584, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'EdVaR3p4', '6028191'), - (584, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'EdVaR3p4', '6040066'), - (584, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'EdVaR3p4', '6042717'), - (584, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'EdVaR3p4', '6044838'), - (584, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'EdVaR3p4', '6044839'), - (584, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVaR3p4', '6045684'), - (584, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'EdVaR3p4', '6050104'), - (584, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'EdVaR3p4', '6053195'), - (584, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'EdVaR3p4', '6053198'), - (584, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'EdVaR3p4', '6056085'), - (584, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'EdVaR3p4', '6056916'), - (584, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'EdVaR3p4', '6059290'), - (584, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'EdVaR3p4', '6060328'), - (584, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'EdVaR3p4', '6061037'), - (584, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'EdVaR3p4', '6061039'), - (584, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'EdVaR3p4', '6067245'), - (584, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'EdVaR3p4', '6068094'), - (584, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'EdVaR3p4', '6068252'), - (584, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'EdVaR3p4', '6068253'), - (584, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'EdVaR3p4', '6068254'), - (584, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'EdVaR3p4', '6068280'), - (584, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'EdVaR3p4', '6069093'), - (584, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'EdVaR3p4', '6072528'), - (584, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'EdVaR3p4', '6079840'), - (584, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'EdVaR3p4', '6083398'), - (584, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'EdVaR3p4', '6093504'), - (584, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'EdVaR3p4', '6097414'), - (584, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'EdVaR3p4', '6097442'), - (584, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'EdVaR3p4', '6097684'), - (584, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'EdVaR3p4', '6098762'), - (584, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'EdVaR3p4', '6101361'), - (584, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'EdVaR3p4', '6101362'), - (584, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'EdVaR3p4', '6107314'), - (584, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'EdVaR3p4', '6120034'), - (584, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'EdVaR3p4', '6136733'), - (584, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'EdVaR3p4', '6137989'), - (584, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'EdVaR3p4', '6150864'), - (584, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'EdVaR3p4', '6155491'), - (584, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'EdVaR3p4', '6164417'), - (584, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'EdVaR3p4', '6166388'), - (584, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'EdVaR3p4', '6176439'), - (584, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'EdVaR3p4', '6182410'), - (584, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'EdVaR3p4', '6185812'), - (584, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'EdVaR3p4', '6187651'), - (584, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'EdVaR3p4', '6187963'), - (584, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'EdVaR3p4', '6187964'), - (584, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'EdVaR3p4', '6187966'), - (584, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'EdVaR3p4', '6187967'), - (584, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'EdVaR3p4', '6187969'), - (584, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'EdVaR3p4', '6334878'), - (584, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'EdVaR3p4', '6337236'), - (584, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'EdVaR3p4', '6337970'), - (584, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'EdVaR3p4', '6338308'), - (584, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'EdVaR3p4', '6341710'), - (584, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'EdVaR3p4', '6342044'), - (584, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'EdVaR3p4', '6342298'), - (584, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'EdVaR3p4', '6343294'), - (584, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'EdVaR3p4', '6347034'), - (584, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'EdVaR3p4', '6347056'), - (584, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'EdVaR3p4', '6353830'), - (584, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'EdVaR3p4', '6353831'), - (584, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'EdVaR3p4', '6357867'), - (584, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'EdVaR3p4', '6358652'), - (584, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'EdVaR3p4', '6361709'), - (584, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'EdVaR3p4', '6361710'), - (584, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'EdVaR3p4', '6361711'), - (584, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'EdVaR3p4', '6361712'), - (584, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'EdVaR3p4', '6361713'), - (584, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'EdVaR3p4', '6382573'), - (584, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'EdVaR3p4', '6388604'), - (584, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'EdVaR3p4', '6394629'), - (584, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'EdVaR3p4', '6394631'), - (584, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'EdVaR3p4', '6440863'), - (584, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'EdVaR3p4', '6445440'), - (584, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'EdVaR3p4', '6453951'), - (584, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'EdVaR3p4', '6461696'), - (584, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'EdVaR3p4', '6462129'), - (584, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'EdVaR3p4', '6463218'), - (584, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'EdVaR3p4', '6472181'), - (584, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'EdVaR3p4', '6482693'), - (584, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'EdVaR3p4', '6484200'), - (584, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'EdVaR3p4', '6484680'), - (584, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'EdVaR3p4', '6507741'), - (584, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'EdVaR3p4', '6514659'), - (584, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'EdVaR3p4', '6514660'), - (584, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'EdVaR3p4', '6519103'), - (584, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'EdVaR3p4', '6535681'), - (584, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'EdVaR3p4', '6584747'), - (584, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'EdVaR3p4', '6587097'), - (584, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'EdVaR3p4', '6609022'), - (584, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'EdVaR3p4', '6632757'), - (584, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'EdVaR3p4', '6644187'), - (584, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'EdVaR3p4', '6648951'), - (584, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'EdVaR3p4', '6648952'), - (584, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'EdVaR3p4', '6655401'), - (584, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'EdVaR3p4', '6661585'), - (584, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'EdVaR3p4', '6661588'), - (584, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'EdVaR3p4', '6661589'), - (584, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'EdVaR3p4', '6699906'), - (584, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'EdVaR3p4', '6699913'), - (584, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'EdVaR3p4', '6701109'), - (584, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'EdVaR3p4', '6705219'), - (584, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'EdVaR3p4', '6710153'), - (584, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'EdVaR3p4', '6711552'), - (584, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'EdVaR3p4', '6711553'), - (584, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'EdVaR3p4', '6722688'), - (584, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'EdVaR3p4', '6730620'), - (584, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'EdVaR3p4', '6740364'), - (584, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'EdVaR3p4', '6743829'), - (584, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'EdVaR3p4', '7030380'), - (584, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'EdVaR3p4', '7033677'), - (584, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'EdVaR3p4', '7044715'), - (584, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'EdVaR3p4', '7050318'), - (584, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'EdVaR3p4', '7050319'), - (584, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'EdVaR3p4', '7050322'), - (584, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'EdVaR3p4', '7057804'), - (584, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'EdVaR3p4', '7072824'), - (584, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'EdVaR3p4', '7074348'), - (584, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'EdVaR3p4', '7074364'), - (584, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'EdVaR3p4', '7089267'), - (584, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'EdVaR3p4', '7098747'), - (584, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'EdVaR3p4', '7113468'), - (584, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'EdVaR3p4', '7114856'), - (584, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'EdVaR3p4', '7114951'), - (584, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'EdVaR3p4', '7114955'), - (584, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'EdVaR3p4', '7114956'), - (584, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'EdVaR3p4', '7114957'), - (584, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'EdVaR3p4', '7159484'), - (584, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'EdVaR3p4', '7178446'), - (584, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'EdVaR3p4', '7220467'), - (584, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'EdVaR3p4', '7240354'), - (584, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'EdVaR3p4', '7251633'), - (584, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'EdVaR3p4', '7324073'), - (584, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'EdVaR3p4', '7324074'), - (584, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'EdVaR3p4', '7324075'), - (584, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'EdVaR3p4', '7324078'), - (584, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'EdVaR3p4', '7324082'), - (584, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'EdVaR3p4', '7331457'), - (584, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'EdVaR3p4', '7363643'), - (584, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'EdVaR3p4', '7368606'), - (584, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'EdVaR3p4', '7397462'), - (584, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'EdVaR3p4', '7424275'), - (584, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'EdVaR3p4', '7432751'), - (584, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'EdVaR3p4', '7432752'), - (584, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'EdVaR3p4', '7432753'), - (584, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'EdVaR3p4', '7432754'), - (584, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'EdVaR3p4', '7432755'), - (584, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'EdVaR3p4', '7432756'), - (584, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'EdVaR3p4', '7432758'), - (584, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'EdVaR3p4', '7432759'), - (584, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'EdVaR3p4', '7433834'), - (584, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'EdVaR3p4', '7470197'), - (584, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'EdVaR3p4', '7685613'), - (584, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'EdVaR3p4', '7688194'), - (584, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'EdVaR3p4', '7688196'), - (584, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'EdVaR3p4', '7688289'), - (584, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'EdVaR3p4', '7692763'), - (584, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'EdVaR3p4', '7697552'), - (584, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'EdVaR3p4', '7699878'), - (584, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'EdVaR3p4', '7704043'), - (584, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'EdVaR3p4', '7712467'), - (584, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'EdVaR3p4', '7713585'), - (584, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'EdVaR3p4', '7713586'), - (584, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'EdVaR3p4', '7738518'), - (584, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'EdVaR3p4', '7750636'), - (584, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'EdVaR3p4', '7796540'), - (584, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'EdVaR3p4', '7796541'), - (584, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'EdVaR3p4', '7796542'), - (584, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'EdVaR3p4', '7825913'), - (584, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'EdVaR3p4', '7826209'), - (584, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'EdVaR3p4', '7834742'), - (584, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'EdVaR3p4', '7842108'), - (584, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'EdVaR3p4', '7842902'), - (584, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'EdVaR3p4', '7842903'), - (584, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'EdVaR3p4', '7842904'), - (584, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'EdVaR3p4', '7842905'), - (584, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'EdVaR3p4', '7855719'), - (584, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'EdVaR3p4', '7860683'), - (584, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'EdVaR3p4', '7860684'), - (584, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'EdVaR3p4', '7866095'), - (584, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'EdVaR3p4', '7869170'), - (584, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'EdVaR3p4', '7869188'), - (584, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'EdVaR3p4', '7869201'), - (584, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'EdVaR3p4', '7877465'), - (584, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'EdVaR3p4', '7888250'), - (584, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'EdVaR3p4', '7904777'), - (584, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'EdVaR3p4', '8349164'), - (584, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'EdVaR3p4', '8349545'), - (584, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'EdVaR3p4', '8368028'), - (584, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'EdVaR3p4', '8368029'), - (584, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'EdVaR3p4', '8388462'), - (584, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'EdVaR3p4', '8400273'), - (584, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'EdVaR3p4', '8400275'), - (584, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'EdVaR3p4', '8400276'), - (584, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'EdVaR3p4', '8404977'), - (584, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'EdVaR3p4', '8430783'), - (584, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'EdVaR3p4', '8430784'), - (584, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'EdVaR3p4', '8430799'), - (584, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'EdVaR3p4', '8430800'), - (584, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'EdVaR3p4', '8430801'), - (584, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'EdVaR3p4', '8438709'), - (584, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'EdVaR3p4', '8457738'), - (584, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'EdVaR3p4', '8459566'), - (584, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'EdVaR3p4', '8459567'), - (584, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'EdVaR3p4', '8461032'), - (584, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'EdVaR3p4', '8477877'), - (584, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'EdVaR3p4', '8485688'), - (584, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'EdVaR3p4', '8490587'), - (584, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'EdVaR3p4', '8493552'), - (584, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'EdVaR3p4', '8493553'), - (584, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'EdVaR3p4', '8493554'), - (584, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'EdVaR3p4', '8493555'), - (584, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'EdVaR3p4', '8493556'), - (584, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'EdVaR3p4', '8493557'), - (584, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'EdVaR3p4', '8493558'), - (584, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'EdVaR3p4', '8493559'), - (584, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'EdVaR3p4', '8493560'), - (584, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'EdVaR3p4', '8493561'), - (584, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'EdVaR3p4', '8493572'), - (584, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'EdVaR3p4', '8540725'), - (584, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'EdVaR3p4', '8555421'), - (585, 394, 'maybe', '2021-01-05 13:51:55', '2025-12-17 19:47:48', 'VdxNEKGA', '3236449'), - (585, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'VdxNEKGA', '3386848'), - (585, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'VdxNEKGA', '3389527'), - (585, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'VdxNEKGA', '3396499'), - (585, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'VdxNEKGA', '3403650'), - (585, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'VdxNEKGA', '3406988'), - (585, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'VdxNEKGA', '3416576'), - (585, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'VdxNEKGA', '3426074'), - (585, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'VdxNEKGA', '3430267'), - (585, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'VdxNEKGA', '3468125'), - (585, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VdxNEKGA', '3470303'), - (585, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VdxNEKGA', '3470991'), - (585, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxNEKGA', '6045684'), - (586, 2125, 'not_attending', '2023-07-04 23:56:05', '2025-12-17 19:46:51', '4E2y78Xd', '6177485'), - (586, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4E2y78Xd', '6185812'), - (586, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4E2y78Xd', '6187651'), - (586, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4E2y78Xd', '6187963'), - (586, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4E2y78Xd', '6187964'), - (586, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4E2y78Xd', '6187966'), - (586, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4E2y78Xd', '6187967'), - (586, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4E2y78Xd', '6187969'), - (586, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4E2y78Xd', '6334878'), - (586, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', '4E2y78Xd', '6334903'), - (586, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4E2y78Xd', '6337236'), - (586, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4E2y78Xd', '6337970'), - (586, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4E2y78Xd', '6338308'), - (586, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4E2y78Xd', '6341710'), - (586, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4E2y78Xd', '6342044'), - (586, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4E2y78Xd', '6342298'), - (586, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', '4E2y78Xd', '6342591'), - (586, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4E2y78Xd', '6343294'), - (586, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4E2y78Xd', '6347034'), - (586, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4E2y78Xd', '6347056'), - (586, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4E2y78Xd', '6353830'), - (586, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4E2y78Xd', '6353831'), - (586, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4E2y78Xd', '6357867'), - (586, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4E2y78Xd', '6358652'), - (586, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4E2y78Xd', '6361709'), - (586, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4E2y78Xd', '6361710'), - (586, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4E2y78Xd', '6361711'), - (586, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4E2y78Xd', '6361712'), - (586, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4E2y78Xd', '6361713'), - (586, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4E2y78Xd', '6382573'), - (586, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4E2y78Xd', '6388604'), - (586, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4E2y78Xd', '6394629'), - (586, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4E2y78Xd', '6394631'), - (586, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4E2y78Xd', '6431478'), - (587, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dx6roa9A', '5195095'), - (587, 1329, 'maybe', '2022-04-14 17:17:52', '2025-12-17 19:47:27', 'dx6roa9A', '5240135'), - (587, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dx6roa9A', '5247467'), - (587, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dx6roa9A', '5260800'), - (587, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dx6roa9A', '5269930'), - (587, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dx6roa9A', '5271448'), - (587, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dx6roa9A', '5271449'), - (587, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dx6roa9A', '5276469'), - (587, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx6roa9A', '5278159'), - (587, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx6roa9A', '6045684'), - (588, 1721, 'attending', '2022-10-18 17:24:32', '2025-12-17 19:47:13', 'mp1RZo9A', '5630960'), - (588, 1722, 'attending', '2022-10-24 17:44:49', '2025-12-17 19:47:14', 'mp1RZo9A', '5630961'), - (588, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mp1RZo9A', '5630962'), - (588, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mp1RZo9A', '5630966'), - (588, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mp1RZo9A', '5630967'), - (588, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mp1RZo9A', '5630968'), - (588, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'mp1RZo9A', '5638765'), - (588, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mp1RZo9A', '5640097'), - (588, 1742, 'attending', '2022-10-18 22:45:18', '2025-12-17 19:47:13', 'mp1RZo9A', '5641245'), - (588, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mp1RZo9A', '5642818'), - (588, 1747, 'attending', '2022-10-24 17:44:14', '2025-12-17 19:47:13', 'mp1RZo9A', '5648009'), - (588, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mp1RZo9A', '5671637'), - (588, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mp1RZo9A', '5672329'), - (588, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mp1RZo9A', '5674057'), - (588, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mp1RZo9A', '5674060'), - (588, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mp1RZo9A', '5677461'), - (588, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mp1RZo9A', '5698046'), - (588, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'mp1RZo9A', '5699760'), - (588, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mp1RZo9A', '5741601'), - (588, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mp1RZo9A', '5763458'), - (588, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mp1RZo9A', '5774172'), - (588, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mp1RZo9A', '6045684'), - (589, 243, 'attending', '2020-11-02 04:28:54', '2025-12-17 19:47:53', 'pmbOM2KA', '3149474'), - (589, 423, 'attending', '2020-11-05 00:49:20', '2025-12-17 19:47:53', 'pmbOM2KA', '3245296'), - (589, 438, 'attending', '2020-10-31 01:42:38', '2025-12-17 19:47:53', 'pmbOM2KA', '3256163'), - (589, 440, 'attending', '2020-11-03 03:54:09', '2025-12-17 19:47:53', 'pmbOM2KA', '3256168'), - (589, 441, 'attending', '2020-11-14 00:47:08', '2025-12-17 19:47:54', 'pmbOM2KA', '3256169'), - (589, 445, 'attending', '2020-11-12 23:39:28', '2025-12-17 19:47:54', 'pmbOM2KA', '3266138'), - (589, 448, 'attending', '2020-10-31 01:41:56', '2025-12-17 19:47:53', 'pmbOM2KA', '3271831'), - (589, 449, 'attending', '2020-11-08 04:51:26', '2025-12-17 19:47:53', 'pmbOM2KA', '3272055'), - (589, 450, 'not_attending', '2020-10-31 20:27:08', '2025-12-17 19:47:53', 'pmbOM2KA', '3272102'), - (589, 456, 'attending', '2020-11-16 23:38:54', '2025-12-17 19:47:54', 'pmbOM2KA', '3276428'), - (589, 459, 'not_attending', '2020-11-15 17:05:00', '2025-12-17 19:47:54', 'pmbOM2KA', '3281467'), - (589, 462, 'attending', '2020-11-12 00:14:44', '2025-12-17 19:47:53', 'pmbOM2KA', '3281470'), - (589, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'pmbOM2KA', '3281829'), - (589, 467, 'not_attending', '2020-11-18 00:42:35', '2025-12-17 19:47:54', 'pmbOM2KA', '3282756'), - (589, 468, 'attending', '2020-11-21 07:15:56', '2025-12-17 19:47:54', 'pmbOM2KA', '3285413'), - (589, 469, 'not_attending', '2020-11-28 20:18:33', '2025-12-17 19:47:54', 'pmbOM2KA', '3285414'), - (589, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'pmbOM2KA', '3297764'), - (589, 493, 'attending', '2020-12-05 01:49:40', '2025-12-17 19:47:54', 'pmbOM2KA', '3313856'), - (589, 496, 'attending', '2020-12-09 04:53:30', '2025-12-17 19:47:54', 'pmbOM2KA', '3314269'), - (589, 497, 'not_attending', '2020-12-18 00:08:01', '2025-12-17 19:47:55', 'pmbOM2KA', '3314270'), - (589, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'pmbOM2KA', '3314909'), - (589, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'pmbOM2KA', '3314964'), - (589, 502, 'attending', '2020-12-13 04:13:56', '2025-12-17 19:47:55', 'pmbOM2KA', '3323365'), - (589, 506, 'maybe', '2020-12-12 06:04:35', '2025-12-17 19:47:55', 'pmbOM2KA', '3323375'), - (589, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'pmbOM2KA', '3329383'), - (589, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'pmbOM2KA', '3351539'), - (589, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'pmbOM2KA', '3386848'), - (589, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'pmbOM2KA', '3389527'), - (589, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'pmbOM2KA', '3396499'), - (589, 548, 'not_attending', '2021-01-16 20:00:51', '2025-12-17 19:47:48', 'pmbOM2KA', '3403650'), - (589, 549, 'maybe', '2021-01-18 23:54:03', '2025-12-17 19:47:49', 'pmbOM2KA', '3406988'), - (589, 550, 'attending', '2021-01-16 17:52:27', '2025-12-17 19:47:48', 'pmbOM2KA', '3407018'), - (589, 555, 'not_attending', '2021-01-24 00:21:53', '2025-12-17 19:47:49', 'pmbOM2KA', '3416576'), - (589, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'pmbOM2KA', '3418925'), - (589, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'pmbOM2KA', '3430267'), - (589, 569, 'maybe', '2021-01-28 01:09:41', '2025-12-17 19:47:49', 'pmbOM2KA', '3432673'), - (589, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'pmbOM2KA', '3468125'), - (589, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'pmbOM2KA', '3470303'), - (589, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'pmbOM2KA', '3470305'), - (589, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'pmbOM2KA', '3470991'), - (589, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'pmbOM2KA', '3517815'), - (589, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'pmbOM2KA', '3517816'), - (589, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'pmbOM2KA', '3523941'), - (589, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmbOM2KA', '3533850'), - (589, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmbOM2KA', '3536632'), - (589, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmbOM2KA', '3536656'), - (589, 641, 'attending', '2021-04-01 00:24:05', '2025-12-17 19:47:44', 'pmbOM2KA', '3539916'), - (589, 642, 'maybe', '2021-04-04 01:35:25', '2025-12-17 19:47:44', 'pmbOM2KA', '3539917'), - (589, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmbOM2KA', '3539918'), - (589, 644, 'not_attending', '2021-04-24 17:24:47', '2025-12-17 19:47:46', 'pmbOM2KA', '3539919'), - (589, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmbOM2KA', '3539920'), - (589, 646, 'attending', '2021-05-15 21:35:41', '2025-12-17 19:47:46', 'pmbOM2KA', '3539921'), - (589, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmbOM2KA', '3539922'), - (589, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmbOM2KA', '3539923'), - (589, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmbOM2KA', '3539927'), - (589, 689, 'not_attending', '2021-03-25 23:00:13', '2025-12-17 19:47:44', 'pmbOM2KA', '3555564'), - (589, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmbOM2KA', '3582734'), - (589, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmbOM2KA', '3583262'), - (589, 709, 'attending', '2021-04-06 21:08:11', '2025-12-17 19:47:44', 'pmbOM2KA', '3587852'), - (589, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmbOM2KA', '3619523'), - (589, 722, 'attending', '2021-04-01 00:23:47', '2025-12-17 19:47:44', 'pmbOM2KA', '3646347'), - (589, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmbOM2KA', '3661369'), - (589, 730, 'attending', '2021-05-02 03:43:46', '2025-12-17 19:47:46', 'pmbOM2KA', '3668076'), - (589, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmbOM2KA', '3674262'), - (589, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmbOM2KA', '3677402'), - (589, 761, 'not_attending', '2021-05-14 23:09:26', '2025-12-17 19:47:46', 'pmbOM2KA', '3716041'), - (589, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmbOM2KA', '3730212'), - (589, 777, 'attending', '2021-04-30 20:26:46', '2025-12-17 19:47:46', 'pmbOM2KA', '3746248'), - (589, 781, 'maybe', '2021-05-06 00:48:41', '2025-12-17 19:47:46', 'pmbOM2KA', '3760130'), - (589, 782, 'attending', '2021-05-02 03:44:37', '2025-12-17 19:47:46', 'pmbOM2KA', '3761843'), - (589, 792, 'attending', '2021-05-19 00:40:20', '2025-12-17 19:47:46', 'pmbOM2KA', '3793156'), - (589, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbOM2KA', '3974109'), - (589, 827, 'not_attending', '2021-06-05 22:45:45', '2025-12-17 19:47:47', 'pmbOM2KA', '3975311'), - (589, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmbOM2KA', '3975312'), - (589, 837, 'not_attending', '2021-06-17 22:58:55', '2025-12-17 19:47:48', 'pmbOM2KA', '3992545'), - (589, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbOM2KA', '3994992'), - (589, 841, 'not_attending', '2021-06-15 23:09:31', '2025-12-17 19:47:48', 'pmbOM2KA', '4007434'), - (589, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmbOM2KA', '4014338'), - (589, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmbOM2KA', '4021848'), - (589, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmbOM2KA', '4136744'), - (589, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'pmbOM2KA', '4136937'), - (589, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmbOM2KA', '4136938'), - (589, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbOM2KA', '4136947'), - (589, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbOM2KA', '4210314'), - (589, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbOM2KA', '4225444'), - (589, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbOM2KA', '4239259'), - (589, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmbOM2KA', '4240316'), - (589, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbOM2KA', '4240317'), - (589, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbOM2KA', '4240318'), - (589, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbOM2KA', '4240320'), - (589, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbOM2KA', '4250163'), - (589, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmbOM2KA', '4275957'), - (589, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbOM2KA', '4277819'), - (589, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbOM2KA', '4301723'), - (589, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbOM2KA', '4302093'), - (589, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbOM2KA', '4304151'), - (589, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'pmbOM2KA', '4345519'), - (589, 964, 'not_attending', '2021-08-23 22:45:45', '2025-12-17 19:47:42', 'pmbOM2KA', '4353160'), - (589, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbOM2KA', '4356801'), - (589, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'pmbOM2KA', '4358025'), - (589, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbOM2KA', '4366186'), - (589, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbOM2KA', '4366187'), - (589, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'pmbOM2KA', '4402823'), - (589, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbOM2KA', '4420735'), - (589, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbOM2KA', '4420738'), - (589, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbOM2KA', '4420739'), - (589, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbOM2KA', '4420741'), - (589, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbOM2KA', '4420744'), - (589, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbOM2KA', '4420747'), - (589, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbOM2KA', '4420748'), - (589, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbOM2KA', '4420749'), - (589, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbOM2KA', '4461883'), - (589, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbOM2KA', '4508342'), - (589, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbOM2KA', '4568602'), - (589, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbOM2KA', '4572153'), - (589, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'pmbOM2KA', '4585962'), - (589, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'pmbOM2KA', '4596356'), - (589, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbOM2KA', '4598860'), - (589, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbOM2KA', '4598861'), - (589, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbOM2KA', '4602797'), - (589, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbOM2KA', '4637896'), - (589, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbOM2KA', '4642994'), - (589, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'pmbOM2KA', '4642995'), - (589, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbOM2KA', '4642996'), - (589, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbOM2KA', '4642997'), - (589, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbOM2KA', '4645687'), - (589, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbOM2KA', '4645698'), - (589, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbOM2KA', '4645704'), - (589, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbOM2KA', '4645705'), - (589, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbOM2KA', '4668385'), - (589, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbOM2KA', '4694407'), - (589, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbOM2KA', '4736497'), - (589, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbOM2KA', '4736499'), - (589, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbOM2KA', '4736500'), - (589, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbOM2KA', '4736503'), - (589, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbOM2KA', '4736504'), - (589, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbOM2KA', '4746789'), - (589, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbOM2KA', '4753929'), - (589, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbOM2KA', '5038850'), - (589, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbOM2KA', '5045826'), - (589, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbOM2KA', '5132533'), - (589, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbOM2KA', '5186582'), - (589, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbOM2KA', '5186583'), - (589, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbOM2KA', '5186585'), - (589, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbOM2KA', '5190437'), - (589, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbOM2KA', '5215989'), - (589, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbOM2KA', '6045684'), - (590, 198, 'not_attending', '2020-08-28 10:45:50', '2025-12-17 19:47:56', 'EdVMllz4', '3087267'), - (590, 199, 'maybe', '2020-09-05 04:21:47', '2025-12-17 19:47:56', 'EdVMllz4', '3087268'), - (590, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'EdVMllz4', '3129980'), - (590, 317, 'not_attending', '2020-08-28 01:05:26', '2025-12-17 19:47:56', 'EdVMllz4', '3191735'), - (590, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'EdVMllz4', '3200209'), - (590, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVMllz4', '6045684'), - (591, 1379, 'not_attending', '2022-05-21 17:10:57', '2025-12-17 19:47:30', '4PNgvaym', '5271449'), - (591, 1380, 'attending', '2022-05-19 22:36:49', '2025-12-17 19:47:30', '4PNgvaym', '5271450'), - (591, 1393, 'not_attending', '2022-06-09 21:46:14', '2025-12-17 19:47:30', '4PNgvaym', '5280603'), - (591, 1394, 'not_attending', '2022-05-27 16:16:13', '2025-12-17 19:47:30', '4PNgvaym', '5280667'), - (591, 1400, 'attending', '2022-05-11 23:49:06', '2025-12-17 19:47:29', '4PNgvaym', '5284864'), - (591, 1402, 'not_attending', '2022-05-27 15:54:36', '2025-12-17 19:47:30', '4PNgvaym', '5287977'), - (591, 1405, 'not_attending', '2022-05-19 22:35:47', '2025-12-17 19:47:29', '4PNgvaym', '5288115'), - (591, 1407, 'attending', '2022-05-19 22:36:34', '2025-12-17 19:47:30', '4PNgvaym', '5363695'), - (591, 1408, 'not_attending', '2022-05-20 21:29:22', '2025-12-17 19:47:29', '4PNgvaym', '5365960'), - (591, 1409, 'not_attending', '2022-05-22 08:57:56', '2025-12-17 19:47:30', '4PNgvaym', '5367032'), - (591, 1410, 'attending', '2022-05-19 18:04:41', '2025-12-17 19:47:29', '4PNgvaym', '5367530'), - (591, 1411, 'not_attending', '2022-05-17 05:40:35', '2025-12-17 19:47:29', '4PNgvaym', '5367531'), - (591, 1413, 'not_attending', '2022-05-20 20:49:54', '2025-12-17 19:47:29', '4PNgvaym', '5367533'), - (591, 1414, 'not_attending', '2022-05-20 23:10:21', '2025-12-17 19:47:29', '4PNgvaym', '5368445'), - (591, 1415, 'not_attending', '2022-06-03 19:55:09', '2025-12-17 19:47:30', '4PNgvaym', '5368973'), - (591, 1418, 'not_attending', '2022-05-26 19:35:22', '2025-12-17 19:47:30', '4PNgvaym', '5372162'), - (591, 1419, 'attending', '2022-06-08 22:33:55', '2025-12-17 19:47:30', '4PNgvaym', '5373081'), - (591, 1420, 'not_attending', '2022-05-27 15:54:53', '2025-12-17 19:47:30', '4PNgvaym', '5374882'), - (591, 1422, 'attending', '2022-05-28 20:11:24', '2025-12-17 19:47:30', '4PNgvaym', '5375603'), - (591, 1423, 'not_attending', '2022-06-15 05:39:01', '2025-12-17 19:47:17', '4PNgvaym', '5375727'), - (591, 1424, 'not_attending', '2022-05-26 18:57:11', '2025-12-17 19:47:30', '4PNgvaym', '5375772'), - (591, 1427, 'attending', '2022-05-25 03:26:55', '2025-12-17 19:47:30', '4PNgvaym', '5376074'), - (591, 1428, 'not_attending', '2022-06-09 21:38:12', '2025-12-17 19:47:30', '4PNgvaym', '5378247'), - (591, 1429, 'not_attending', '2022-05-29 11:47:30', '2025-12-17 19:47:30', '4PNgvaym', '5388761'), - (591, 1430, 'attending', '2022-06-09 22:12:10', '2025-12-17 19:47:30', '4PNgvaym', '5389402'), - (591, 1431, 'not_attending', '2022-06-09 21:46:22', '2025-12-17 19:47:31', '4PNgvaym', '5389605'), - (591, 1434, 'not_attending', '2022-06-01 21:29:30', '2025-12-17 19:47:30', '4PNgvaym', '5393861'), - (591, 1435, 'not_attending', '2022-06-02 22:34:52', '2025-12-17 19:47:30', '4PNgvaym', '5394015'), - (591, 1436, 'attending', '2022-06-02 20:42:17', '2025-12-17 19:47:30', '4PNgvaym', '5394292'), - (591, 1439, 'not_attending', '2022-06-05 13:44:38', '2025-12-17 19:47:30', '4PNgvaym', '5396072'), - (591, 1440, 'attending', '2022-06-06 18:59:37', '2025-12-17 19:47:30', '4PNgvaym', '5396080'), - (591, 1441, 'attending', '2022-06-03 05:55:41', '2025-12-17 19:47:30', '4PNgvaym', '5397171'), - (591, 1442, 'not_attending', '2022-06-18 12:48:22', '2025-12-17 19:47:17', '4PNgvaym', '5397265'), - (591, 1447, 'not_attending', '2022-06-09 22:00:31', '2025-12-17 19:47:30', '4PNgvaym', '5401089'), - (591, 1449, 'not_attending', '2022-06-08 21:06:55', '2025-12-17 19:47:31', '4PNgvaym', '5403335'), - (591, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4PNgvaym', '5403967'), - (591, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4PNgvaym', '5404786'), - (591, 1461, 'attending', '2022-06-11 19:56:22', '2025-12-17 19:47:31', '4PNgvaym', '5405149'), - (591, 1462, 'not_attending', '2022-06-14 12:30:38', '2025-12-17 19:47:17', '4PNgvaym', '5405203'), - (591, 1478, 'not_attending', '2022-06-23 09:17:44', '2025-12-17 19:47:19', '4PNgvaym', '5408794'), - (591, 1480, 'not_attending', '2022-06-23 09:17:48', '2025-12-17 19:47:19', '4PNgvaym', '5411699'), - (591, 1482, 'not_attending', '2022-06-23 09:17:45', '2025-12-17 19:47:19', '4PNgvaym', '5412550'), - (591, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4PNgvaym', '5415046'), - (591, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4PNgvaym', '5422086'), - (591, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4PNgvaym', '5422406'), - (591, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4PNgvaym', '5424565'), - (591, 1503, 'not_attending', '2022-06-30 05:15:08', '2025-12-17 19:47:19', '4PNgvaym', '5426820'), - (591, 1504, 'not_attending', '2022-07-05 20:36:20', '2025-12-17 19:47:19', '4PNgvaym', '5426882'), - (591, 1505, 'not_attending', '2022-07-07 05:55:56', '2025-12-17 19:47:19', '4PNgvaym', '5427083'), - (591, 1513, 'not_attending', '2022-07-09 22:06:45', '2025-12-17 19:47:20', '4PNgvaym', '5441125'), - (591, 1514, 'not_attending', '2022-07-09 22:06:56', '2025-12-17 19:47:20', '4PNgvaym', '5441126'), - (591, 1515, 'not_attending', '2022-07-09 22:07:00', '2025-12-17 19:47:21', '4PNgvaym', '5441128'), - (591, 1516, 'not_attending', '2022-07-09 22:07:01', '2025-12-17 19:47:23', '4PNgvaym', '5441129'), - (591, 1517, 'not_attending', '2022-07-09 22:07:02', '2025-12-17 19:47:23', '4PNgvaym', '5441130'), - (591, 1518, 'not_attending', '2022-07-09 22:07:02', '2025-12-17 19:47:24', '4PNgvaym', '5441131'), - (591, 1519, 'maybe', '2022-07-09 22:07:03', '2025-12-17 19:47:24', '4PNgvaym', '5441132'), - (591, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4PNgvaym', '5446643'), - (591, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4PNgvaym', '5453325'), - (591, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4PNgvaym', '5454516'), - (591, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4PNgvaym', '5454605'), - (591, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4PNgvaym', '5455037'), - (591, 1558, 'attending', '2022-08-16 01:33:13', '2025-12-17 19:47:10', '4PNgvaym', '5458730'), - (591, 1559, 'maybe', '2022-09-23 01:37:55', '2025-12-17 19:47:11', '4PNgvaym', '5458731'), - (591, 1561, 'not_attending', '2022-08-04 11:30:54', '2025-12-17 19:47:22', '4PNgvaym', '5461278'), - (591, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4PNgvaym', '5469480'), - (591, 1563, 'not_attending', '2022-07-28 20:02:37', '2025-12-17 19:47:21', '4PNgvaym', '5469889'), - (591, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4PNgvaym', '5471073'), - (591, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4PNgvaym', '5474663'), - (591, 1570, 'not_attending', '2022-08-01 18:54:12', '2025-12-17 19:47:21', '4PNgvaym', '5481830'), - (591, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4PNgvaym', '5482022'), - (591, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4PNgvaym', '5482793'), - (591, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4PNgvaym', '5488912'), - (591, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4PNgvaym', '5492192'), - (591, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4PNgvaym', '5493139'), - (591, 1589, 'maybe', '2022-08-21 15:43:19', '2025-12-17 19:47:23', '4PNgvaym', '5493159'), - (591, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4PNgvaym', '5493200'), - (591, 1599, 'not_attending', '2022-08-16 01:32:55', '2025-12-17 19:47:23', '4PNgvaym', '5496568'), - (591, 1600, 'not_attending', '2022-08-16 01:32:54', '2025-12-17 19:47:24', '4PNgvaym', '5496569'), - (591, 1601, 'attending', '2022-08-11 19:39:59', '2025-12-17 19:47:22', '4PNgvaym', '5496589'), - (591, 1604, 'not_attending', '2022-08-17 04:59:41', '2025-12-17 19:47:22', '4PNgvaym', '5501504'), - (591, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4PNgvaym', '5502188'), - (591, 1606, 'maybe', '2022-08-17 04:58:56', '2025-12-17 19:47:23', '4PNgvaym', '5504585'), - (591, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4PNgvaym', '5505059'), - (591, 1612, 'not_attending', '2022-09-23 01:38:22', '2025-12-17 19:47:12', '4PNgvaym', '5507653'), - (591, 1613, 'attending', '2022-10-10 02:29:36', '2025-12-17 19:47:14', '4PNgvaym', '5507654'), - (591, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4PNgvaym', '5509055'), - (591, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4PNgvaym', '5512862'), - (591, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4PNgvaym', '5513985'), - (591, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '4PNgvaym', '5519981'), - (591, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4PNgvaym', '5522550'), - (591, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4PNgvaym', '5534683'), - (591, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4PNgvaym', '5537735'), - (591, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4PNgvaym', '5540859'), - (591, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4PNgvaym', '5546619'), - (591, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4PNgvaym', '5555245'), - (591, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4PNgvaym', '5557747'), - (591, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4PNgvaym', '5560255'), - (591, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4PNgvaym', '5562906'), - (591, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4PNgvaym', '5600604'), - (591, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4PNgvaym', '5605544'), - (591, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', '4PNgvaym', '5606737'), - (591, 1720, 'attending', '2022-10-10 16:13:59', '2025-12-17 19:47:12', '4PNgvaym', '5630959'), - (591, 1721, 'attending', '2022-10-16 15:16:16', '2025-12-17 19:47:13', '4PNgvaym', '5630960'), - (591, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4PNgvaym', '5630961'), - (591, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4PNgvaym', '5630962'), - (591, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4PNgvaym', '5630966'), - (591, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4PNgvaym', '5630967'), - (591, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4PNgvaym', '5630968'), - (591, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4PNgvaym', '5635406'), - (591, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4PNgvaym', '5638765'), - (591, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4PNgvaym', '5640097'), - (591, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '4PNgvaym', '5640843'), - (591, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4PNgvaym', '5641521'), - (591, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4PNgvaym', '5642818'), - (591, 1745, 'not_attending', '2022-10-14 10:15:45', '2025-12-17 19:47:12', '4PNgvaym', '5643088'), - (591, 1751, 'maybe', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4PNgvaym', '5652395'), - (591, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4PNgvaym', '5670445'), - (591, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4PNgvaym', '5671637'), - (591, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4PNgvaym', '5672329'), - (591, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4PNgvaym', '5674057'), - (591, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4PNgvaym', '5674060'), - (591, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4PNgvaym', '5677461'), - (591, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4PNgvaym', '5698046'), - (591, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4PNgvaym', '5699760'), - (591, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4PNgvaym', '5741601'), - (591, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4PNgvaym', '5763458'), - (591, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4PNgvaym', '5774172'), - (591, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '4PNgvaym', '5818247'), - (591, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4PNgvaym', '5819471'), - (591, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4PNgvaym', '5827739'), - (591, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4PNgvaym', '5844306'), - (591, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4PNgvaym', '5850159'), - (591, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4PNgvaym', '5858999'), - (591, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4PNgvaym', '5871984'), - (591, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4PNgvaym', '5876354'), - (591, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4PNgvaym', '5880939'), - (591, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4PNgvaym', '5880940'), - (591, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4PNgvaym', '5880942'), - (591, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4PNgvaym', '5880943'), - (591, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4PNgvaym', '5887890'), - (591, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4PNgvaym', '5888598'), - (591, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4PNgvaym', '5893260'), - (591, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4PNgvaym', '5899826'), - (591, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4PNgvaym', '5900199'), - (591, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4PNgvaym', '5900200'), - (591, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4PNgvaym', '5900202'), - (591, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4PNgvaym', '5900203'), - (591, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4PNgvaym', '5901108'), - (591, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4PNgvaym', '5901126'), - (591, 1897, 'maybe', '2023-02-11 01:02:47', '2025-12-17 19:47:07', '4PNgvaym', '5901128'), - (591, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4PNgvaym', '5909655'), - (591, 1912, 'not_attending', '2023-02-12 22:51:56', '2025-12-17 19:47:07', '4PNgvaym', '5909808'), - (591, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4PNgvaym', '5910522'), - (591, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4PNgvaym', '5910526'), - (591, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4PNgvaym', '5910528'), - (591, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4PNgvaym', '5916219'), - (591, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4PNgvaym', '5936234'), - (591, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4PNgvaym', '5958351'), - (591, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4PNgvaym', '5959751'), - (591, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4PNgvaym', '5959755'), - (591, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4PNgvaym', '5960055'), - (591, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4PNgvaym', '5961684'), - (591, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4PNgvaym', '5962132'), - (591, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4PNgvaym', '5962133'), - (591, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4PNgvaym', '5962134'), - (591, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4PNgvaym', '5962317'), - (591, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4PNgvaym', '5962318'), - (591, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4PNgvaym', '5965933'), - (591, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4PNgvaym', '5967014'), - (591, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4PNgvaym', '5972815'), - (591, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4PNgvaym', '5974016'), - (591, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '4PNgvaym', '5975052'), - (591, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '4PNgvaym', '5975054'), - (591, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4PNgvaym', '5981515'), - (591, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4PNgvaym', '5993516'), - (591, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4PNgvaym', '5998939'), - (591, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4PNgvaym', '6028191'), - (591, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4PNgvaym', '6040066'), - (591, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4PNgvaym', '6042717'), - (591, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4PNgvaym', '6044838'), - (591, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4PNgvaym', '6044839'), - (591, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNgvaym', '6045684'), - (591, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4PNgvaym', '6050104'), - (591, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4PNgvaym', '6053195'), - (591, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4PNgvaym', '6053198'), - (591, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4PNgvaym', '6056085'), - (591, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4PNgvaym', '6056916'), - (591, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4PNgvaym', '6059290'), - (591, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4PNgvaym', '6060328'), - (591, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4PNgvaym', '6061037'), - (591, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4PNgvaym', '6061039'), - (591, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4PNgvaym', '6067245'), - (591, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4PNgvaym', '6068094'), - (591, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4PNgvaym', '6068252'), - (591, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4PNgvaym', '6068253'), - (591, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4PNgvaym', '6068254'), - (591, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4PNgvaym', '6068280'), - (591, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4PNgvaym', '6069093'), - (591, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4PNgvaym', '6072528'), - (591, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4PNgvaym', '6075556'), - (591, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4PNgvaym', '6079840'), - (591, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4PNgvaym', '6083398'), - (591, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4PNgvaym', '6093504'), - (591, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4PNgvaym', '6097414'), - (591, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4PNgvaym', '6097442'), - (591, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4PNgvaym', '6097684'), - (591, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4PNgvaym', '6098762'), - (591, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4PNgvaym', '6101361'), - (591, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4PNgvaym', '6101362'), - (591, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4PNgvaym', '6107314'), - (591, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4PNgvaym', '6120034'), - (591, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4PNgvaym', '6136733'), - (591, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4PNgvaym', '6137989'), - (591, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4PNgvaym', '6150864'), - (591, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4PNgvaym', '6155491'), - (591, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4PNgvaym', '6164417'), - (591, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4PNgvaym', '6166388'), - (591, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4PNgvaym', '6176439'), - (591, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4PNgvaym', '6182410'), - (591, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4PNgvaym', '6185812'), - (591, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4PNgvaym', '6187651'), - (591, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4PNgvaym', '6187963'), - (591, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4PNgvaym', '6187964'), - (591, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4PNgvaym', '6187966'), - (591, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4PNgvaym', '6187967'), - (591, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4PNgvaym', '6187969'), - (591, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4PNgvaym', '6334878'), - (591, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4PNgvaym', '6337236'), - (591, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4PNgvaym', '6337970'), - (591, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4PNgvaym', '6338308'), - (591, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4PNgvaym', '6341710'), - (591, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4PNgvaym', '6342044'), - (591, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4PNgvaym', '6342298'), - (591, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4PNgvaym', '6343294'), - (591, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4PNgvaym', '6347034'), - (591, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4PNgvaym', '6347056'), - (591, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4PNgvaym', '6353830'), - (591, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4PNgvaym', '6353831'), - (591, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4PNgvaym', '6357867'), - (591, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4PNgvaym', '6358652'), - (591, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4PNgvaym', '6361709'), - (591, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4PNgvaym', '6361710'), - (591, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4PNgvaym', '6361711'), - (591, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4PNgvaym', '6361712'), - (591, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4PNgvaym', '6361713'), - (591, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4PNgvaym', '6382573'), - (591, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4PNgvaym', '6388604'), - (591, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4PNgvaym', '6394629'), - (591, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4PNgvaym', '6394631'), - (591, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4PNgvaym', '6440863'), - (591, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4PNgvaym', '6445440'), - (591, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4PNgvaym', '6453951'), - (591, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4PNgvaym', '6461696'), - (591, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4PNgvaym', '6462129'), - (591, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4PNgvaym', '6463218'), - (591, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4PNgvaym', '6472181'), - (591, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4PNgvaym', '6482693'), - (591, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4PNgvaym', '6484200'), - (591, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '4PNgvaym', '6484680'), - (591, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4PNgvaym', '6507741'), - (591, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4PNgvaym', '6514659'), - (591, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4PNgvaym', '6514660'), - (591, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4PNgvaym', '6519103'), - (591, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4PNgvaym', '6535681'), - (591, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4PNgvaym', '6584747'), - (591, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4PNgvaym', '6587097'), - (591, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4PNgvaym', '6609022'), - (591, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4PNgvaym', '6632757'), - (591, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4PNgvaym', '6644187'), - (591, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4PNgvaym', '6648951'), - (591, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4PNgvaym', '6648952'), - (591, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4PNgvaym', '6655401'), - (591, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4PNgvaym', '6661585'), - (591, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4PNgvaym', '6661588'), - (591, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4PNgvaym', '6661589'), - (591, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4PNgvaym', '6699906'), - (591, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4PNgvaym', '6699913'), - (591, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4PNgvaym', '6701109'), - (591, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4PNgvaym', '6705219'), - (591, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4PNgvaym', '6710153'), - (591, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4PNgvaym', '6711552'), - (591, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '4PNgvaym', '6711553'), - (591, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4PNgvaym', '6722688'), - (591, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4PNgvaym', '6730620'), - (591, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4PNgvaym', '6740364'), - (591, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4PNgvaym', '6743829'), - (591, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4PNgvaym', '7030380'), - (591, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4PNgvaym', '7033677'), - (591, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4PNgvaym', '7044715'), - (591, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4PNgvaym', '7050318'), - (591, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4PNgvaym', '7050319'), - (591, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4PNgvaym', '7050322'), - (591, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4PNgvaym', '7057804'), - (591, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4PNgvaym', '7072824'), - (591, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4PNgvaym', '7074348'), - (591, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4PNgvaym', '7074364'), - (591, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4PNgvaym', '7089267'), - (591, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4PNgvaym', '7098747'), - (591, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4PNgvaym', '7113468'), - (591, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4PNgvaym', '7114856'), - (591, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4PNgvaym', '7114951'), - (591, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4PNgvaym', '7114955'), - (591, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4PNgvaym', '7114956'), - (591, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4PNgvaym', '7114957'), - (591, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4PNgvaym', '7159484'), - (591, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4PNgvaym', '7178446'), - (591, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4PNgvaym', '7220467'), - (591, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4PNgvaym', '7240354'), - (591, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4PNgvaym', '7251633'), - (591, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4PNgvaym', '7324073'), - (591, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4PNgvaym', '7324074'), - (591, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4PNgvaym', '7324075'), - (591, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4PNgvaym', '7324078'), - (591, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4PNgvaym', '7324082'), - (591, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4PNgvaym', '7331457'), - (591, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4PNgvaym', '7363643'), - (591, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4PNgvaym', '7368606'), - (591, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4PNgvaym', '7397462'), - (591, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4PNgvaym', '7424275'), - (591, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4PNgvaym', '7432751'), - (591, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4PNgvaym', '7432752'), - (591, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4PNgvaym', '7432753'), - (591, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4PNgvaym', '7432754'), - (591, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4PNgvaym', '7432755'), - (591, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4PNgvaym', '7432756'), - (591, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4PNgvaym', '7432758'), - (591, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4PNgvaym', '7432759'), - (591, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4PNgvaym', '7433834'), - (591, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4PNgvaym', '7470197'), - (591, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4PNgvaym', '7685613'), - (591, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4PNgvaym', '7688194'), - (591, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4PNgvaym', '7688196'), - (591, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4PNgvaym', '7688289'), - (591, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4PNgvaym', '7692763'), - (591, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4PNgvaym', '7697552'), - (591, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4PNgvaym', '7699878'), - (591, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4PNgvaym', '7704043'), - (591, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4PNgvaym', '7712467'), - (591, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4PNgvaym', '7713585'), - (591, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4PNgvaym', '7713586'), - (591, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4PNgvaym', '7738518'), - (591, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4PNgvaym', '7750636'), - (591, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4PNgvaym', '7796540'), - (591, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4PNgvaym', '7796541'), - (591, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4PNgvaym', '7796542'), - (591, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4PNgvaym', '7825913'), - (591, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4PNgvaym', '7826209'), - (591, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4PNgvaym', '7834742'), - (591, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4PNgvaym', '7842108'), - (591, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4PNgvaym', '7842902'), - (591, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4PNgvaym', '7842903'), - (591, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4PNgvaym', '7842904'), - (591, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4PNgvaym', '7842905'), - (591, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4PNgvaym', '7855719'), - (591, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4PNgvaym', '7860683'), - (591, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4PNgvaym', '7860684'), - (591, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4PNgvaym', '7866095'), - (591, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4PNgvaym', '7869170'), - (591, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4PNgvaym', '7869188'), - (591, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4PNgvaym', '7869201'), - (591, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4PNgvaym', '7877465'), - (591, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4PNgvaym', '7888250'), - (591, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4PNgvaym', '7904777'), - (591, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4PNgvaym', '8349164'), - (591, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4PNgvaym', '8349545'), - (591, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4PNgvaym', '8368028'), - (591, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4PNgvaym', '8368029'), - (591, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4PNgvaym', '8388462'), - (591, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4PNgvaym', '8400273'), - (591, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4PNgvaym', '8400275'), - (591, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '4PNgvaym', '8400276'), - (591, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4PNgvaym', '8404977'), - (591, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4PNgvaym', '8430783'), - (591, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4PNgvaym', '8430784'), - (591, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4PNgvaym', '8430799'), - (591, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4PNgvaym', '8430800'), - (591, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4PNgvaym', '8430801'), - (591, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4PNgvaym', '8438709'), - (591, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4PNgvaym', '8457738'), - (591, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4PNgvaym', '8459566'), - (591, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4PNgvaym', '8459567'), - (591, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4PNgvaym', '8461032'), - (591, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4PNgvaym', '8477877'), - (591, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4PNgvaym', '8485688'), - (591, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4PNgvaym', '8490587'), - (591, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4PNgvaym', '8493552'), - (591, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4PNgvaym', '8493553'), - (591, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4PNgvaym', '8493554'), - (591, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4PNgvaym', '8493555'), - (591, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4PNgvaym', '8493556'), - (591, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4PNgvaym', '8493557'), - (591, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4PNgvaym', '8493558'), - (591, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4PNgvaym', '8493559'), - (591, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4PNgvaym', '8493560'), - (591, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4PNgvaym', '8493561'), - (591, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4PNgvaym', '8493572'), - (591, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '4PNgvaym', '8540725'), - (591, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4PNgvaym', '8555421'), - (592, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd9qJlyZd', '5630967'), - (592, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd9qJlyZd', '5630968'), - (592, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd9qJlyZd', '5642818'), - (592, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd9qJlyZd', '5670445'), - (592, 1784, 'not_attending', '2022-11-16 19:58:39', '2025-12-17 19:47:16', 'd9qJlyZd', '5699760'), - (592, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd9qJlyZd', '5741601'), - (592, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd9qJlyZd', '5763458'), - (592, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd9qJlyZd', '5774172'), - (592, 1826, 'attending', '2022-12-20 00:31:05', '2025-12-17 19:47:04', 'd9qJlyZd', '5776768'), - (592, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd9qJlyZd', '5818247'), - (592, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd9qJlyZd', '5819471'), - (592, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'd9qJlyZd', '5827739'), - (592, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd9qJlyZd', '5844306'), - (592, 1846, 'attending', '2022-12-18 04:06:05', '2025-12-17 19:47:04', 'd9qJlyZd', '5845237'), - (592, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd9qJlyZd', '5850159'), - (592, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd9qJlyZd', '5858999'), - (592, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd9qJlyZd', '5871984'), - (592, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd9qJlyZd', '5876354'), - (592, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'd9qJlyZd', '5880939'), - (592, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd9qJlyZd', '5887890'), - (592, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd9qJlyZd', '5888598'), - (592, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd9qJlyZd', '5893260'), - (592, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9qJlyZd', '6045684'), - (593, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dannVXDm', '7424275'), - (593, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'dannVXDm', '7432756'), - (593, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'dannVXDm', '7432758'), - (593, 2856, 'maybe', '2024-10-08 21:54:04', '2025-12-17 19:46:26', 'dannVXDm', '7469386'), - (593, 2858, 'maybe', '2024-10-11 02:57:06', '2025-12-17 19:46:26', 'dannVXDm', '7469388'), - (593, 2860, 'not_attending', '2024-10-08 21:53:11', '2025-12-17 19:46:26', 'dannVXDm', '7469393'), - (593, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dannVXDm', '7470197'), - (593, 2869, 'maybe', '2024-10-05 15:56:22', '2025-12-17 19:46:26', 'dannVXDm', '7474823'), - (593, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'dannVXDm', '7682072'), - (593, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dannVXDm', '7685613'), - (593, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dannVXDm', '7688194'), - (593, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dannVXDm', '7688196'), - (593, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dannVXDm', '7688289'), - (594, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WPyy60d', '6045684'), - (595, 1817, 'not_attending', '2023-03-25 05:48:25', '2025-12-17 19:46:57', '4E2kB81d', '5764687'), - (595, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4E2kB81d', '5900202'), - (595, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '4E2kB81d', '5962317'), - (595, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4E2kB81d', '5962318'), - (595, 1951, 'attending', '2023-03-22 18:17:21', '2025-12-17 19:46:56', '4E2kB81d', '5965933'), - (595, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', '4E2kB81d', '6028191'), - (595, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4E2kB81d', '6040066'), - (595, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4E2kB81d', '6042717'), - (595, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4E2kB81d', '6044838'), - (595, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4E2kB81d', '6044839'), - (595, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E2kB81d', '6045684'), - (595, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', '4E2kB81d', '6048955'), - (595, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4E2kB81d', '6050104'), - (595, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4E2kB81d', '6053195'), - (595, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4E2kB81d', '6053198'), - (595, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4E2kB81d', '6056085'), - (595, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4E2kB81d', '6056916'), - (595, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4E2kB81d', '6059290'), - (595, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4E2kB81d', '6060328'), - (595, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4E2kB81d', '6061037'), - (595, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4E2kB81d', '6061039'), - (595, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4E2kB81d', '6067245'), - (595, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4E2kB81d', '6068094'), - (595, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4E2kB81d', '6068252'), - (595, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4E2kB81d', '6068253'), - (595, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4E2kB81d', '6068254'), - (595, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4E2kB81d', '6068280'), - (595, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4E2kB81d', '6069093'), - (595, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4E2kB81d', '6072528'), - (595, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4E2kB81d', '6079840'), - (595, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4E2kB81d', '6083398'), - (595, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4E2kB81d', '6093504'), - (595, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4E2kB81d', '6097414'), - (595, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4E2kB81d', '6097442'), - (595, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4E2kB81d', '6097684'), - (595, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4E2kB81d', '6098762'), - (595, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4E2kB81d', '6101362'), - (595, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4E2kB81d', '6107314'), - (595, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4E2kB81d', '6120034'), - (596, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'daPJkNp4', '5441128'), - (596, 1517, 'attending', '2022-08-27 23:29:55', '2025-12-17 19:47:23', 'daPJkNp4', '5441130'), - (596, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'daPJkNp4', '5441131'), - (596, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'daPJkNp4', '5441132'), - (596, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'daPJkNp4', '5461278'), - (596, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'daPJkNp4', '5469480'), - (596, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'daPJkNp4', '5488912'), - (596, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'daPJkNp4', '5492192'), - (596, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'daPJkNp4', '5493139'), - (596, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'daPJkNp4', '5493200'), - (596, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'daPJkNp4', '5502188'), - (596, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'daPJkNp4', '5505059'), - (596, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', 'daPJkNp4', '5509055'), - (596, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'daPJkNp4', '5512862'), - (596, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'daPJkNp4', '5513985'), - (596, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'daPJkNp4', '5522550'), - (596, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'daPJkNp4', '5534683'), - (596, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'daPJkNp4', '5537735'), - (596, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'daPJkNp4', '5540859'), - (596, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'daPJkNp4', '5546619'), - (596, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'daPJkNp4', '5555245'), - (596, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'daPJkNp4', '5557747'), - (596, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'daPJkNp4', '5560255'), - (596, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'daPJkNp4', '5562906'), - (596, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'daPJkNp4', '5600604'), - (596, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'daPJkNp4', '5605544'), - (596, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'daPJkNp4', '5606737'), - (596, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'daPJkNp4', '5635406'), - (596, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'daPJkNp4', '5638765'), - (596, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'daPJkNp4', '5640843'), - (596, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daPJkNp4', '6045684'), - (597, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'QdJJEjBd', '3149489'), - (597, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'QdJJEjBd', '3149491'), - (597, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'QdJJEjBd', '3236450'), - (597, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'QdJJEjBd', '3236452'), - (597, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'QdJJEjBd', '3539920'), - (597, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'QdJJEjBd', '3539921'), - (597, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'QdJJEjBd', '3539922'), - (597, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'QdJJEjBd', '3539923'), - (597, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'QdJJEjBd', '3793156'), - (597, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'QdJJEjBd', '3806392'), - (597, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'QdJJEjBd', '3963335'), - (597, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'QdJJEjBd', '3975311'), - (597, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'QdJJEjBd', '3975312'), - (597, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'QdJJEjBd', '3994992'), - (597, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'QdJJEjBd', '4014338'), - (597, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'QdJJEjBd', '4136744'), - (597, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJJEjBd', '6045684'), - (598, 2133, 'not_attending', '2023-07-08 22:22:33', '2025-12-17 19:46:51', 'dxML9MXm', '6187651'), - (598, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dxML9MXm', '6334878'), - (598, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', 'dxML9MXm', '6334903'), - (598, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxML9MXm', '6337236'), - (598, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxML9MXm', '6337970'), - (598, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dxML9MXm', '6338308'), - (598, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxML9MXm', '6341710'), - (598, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxML9MXm', '6342044'), - (598, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxML9MXm', '6342298'), - (598, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxML9MXm', '6342591'), - (598, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dxML9MXm', '6343294'), - (598, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxML9MXm', '6347034'), - (598, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxML9MXm', '6347056'), - (598, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxML9MXm', '6353830'), - (598, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxML9MXm', '6353831'), - (598, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxML9MXm', '6357867'), - (598, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxML9MXm', '6358652'), - (598, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxML9MXm', '6361709'), - (598, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxML9MXm', '6361710'), - (598, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxML9MXm', '6361711'), - (598, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxML9MXm', '6361712'), - (598, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxML9MXm', '6361713'), - (598, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxML9MXm', '6382573'), - (598, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxML9MXm', '6388604'), - (598, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxML9MXm', '6394629'), - (598, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxML9MXm', '6394631'), - (598, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxML9MXm', '6431478'), - (598, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxML9MXm', '6440863'), - (599, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dN9LBYR4', '5269930'), - (599, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dN9LBYR4', '5271448'), - (599, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dN9LBYR4', '5271449'), - (599, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dN9LBYR4', '5276469'), - (599, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dN9LBYR4', '5278159'), - (599, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dN9LBYR4', '5363695'), - (599, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dN9LBYR4', '5365960'), - (599, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dN9LBYR4', '5368973'), - (599, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dN9LBYR4', '5378247'), - (599, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dN9LBYR4', '5389605'), - (599, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dN9LBYR4', '5397265'), - (599, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9LBYR4', '6045684'), - (600, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40q3XVd', '6045684'), - (601, 327, 'maybe', '2020-09-28 21:58:35', '2025-12-17 19:47:52', '8dBaDw84', '3197085'), - (601, 328, 'maybe', '2020-09-28 21:59:42', '2025-12-17 19:47:52', '8dBaDw84', '3197086'), - (601, 329, 'maybe', '2020-09-28 22:01:18', '2025-12-17 19:47:52', '8dBaDw84', '3197087'), - (601, 342, 'attending', '2020-10-01 01:13:23', '2025-12-17 19:47:52', '8dBaDw84', '3204472'), - (601, 344, 'maybe', '2020-10-27 01:08:34', '2025-12-17 19:47:53', '8dBaDw84', '3206906'), - (601, 348, 'maybe', '2020-09-28 21:58:47', '2025-12-17 19:47:52', '8dBaDw84', '3209159'), - (601, 357, 'maybe', '2020-09-28 21:59:54', '2025-12-17 19:47:52', '8dBaDw84', '3212573'), - (601, 363, 'not_attending', '2020-09-27 21:34:32', '2025-12-17 19:47:52', '8dBaDw84', '3217037'), - (601, 368, 'maybe', '2020-09-28 22:01:30', '2025-12-17 19:47:52', '8dBaDw84', '3221403'), - (601, 375, 'attending', '2020-10-07 01:04:43', '2025-12-17 19:47:52', '8dBaDw84', '3222825'), - (601, 385, 'attending', '2020-10-02 01:18:12', '2025-12-17 19:47:52', '8dBaDw84', '3228698'), - (601, 386, 'maybe', '2020-10-10 19:15:31', '2025-12-17 19:47:52', '8dBaDw84', '3228699'), - (601, 387, 'attending', '2020-10-17 17:07:45', '2025-12-17 19:47:52', '8dBaDw84', '3228700'), - (601, 388, 'attending', '2020-10-24 01:22:58', '2025-12-17 19:47:52', '8dBaDw84', '3228701'), - (601, 390, 'attending', '2020-10-04 21:09:54', '2025-12-17 19:47:52', '8dBaDw84', '3231510'), - (601, 411, 'attending', '2020-10-07 01:04:28', '2025-12-17 19:47:52', '8dBaDw84', '3236596'), - (601, 414, 'maybe', '2020-10-18 20:11:21', '2025-12-17 19:47:52', '8dBaDw84', '3237277'), - (601, 422, 'maybe', '2020-10-27 01:07:53', '2025-12-17 19:47:53', '8dBaDw84', '3245295'), - (601, 423, 'maybe', '2020-10-27 01:08:54', '2025-12-17 19:47:53', '8dBaDw84', '3245296'), - (601, 424, 'maybe', '2020-10-19 17:44:30', '2025-12-17 19:47:52', '8dBaDw84', '3245751'), - (601, 426, 'not_attending', '2020-10-18 18:00:18', '2025-12-17 19:47:52', '8dBaDw84', '3250232'), - (601, 428, 'attending', '2020-10-27 00:56:58', '2025-12-17 19:47:53', '8dBaDw84', '3250332'), - (601, 438, 'maybe', '2020-10-27 01:08:22', '2025-12-17 19:47:53', '8dBaDw84', '3256163'), - (601, 439, 'maybe', '2020-10-27 01:07:43', '2025-12-17 19:47:53', '8dBaDw84', '3256164'), - (601, 440, 'attending', '2020-10-27 01:09:05', '2025-12-17 19:47:53', '8dBaDw84', '3256168'), - (601, 441, 'maybe', '2020-11-14 21:54:54', '2025-12-17 19:47:54', '8dBaDw84', '3256169'), - (601, 443, 'attending', '2020-10-24 01:23:31', '2025-12-17 19:47:53', '8dBaDw84', '3263578'), - (601, 445, 'maybe', '2020-10-27 01:08:49', '2025-12-17 19:47:54', '8dBaDw84', '3266138'), - (601, 446, 'maybe', '2020-10-27 01:07:28', '2025-12-17 19:47:53', '8dBaDw84', '3267163'), - (601, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '8dBaDw84', '3276428'), - (601, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '8dBaDw84', '3281467'), - (601, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '8dBaDw84', '3281470'), - (601, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '8dBaDw84', '3281829'), - (601, 468, 'maybe', '2020-11-21 19:37:35', '2025-12-17 19:47:54', '8dBaDw84', '3285413'), - (601, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '8dBaDw84', '3285414'), - (601, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '8dBaDw84', '3297764'), - (601, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '8dBaDw84', '3313856'), - (601, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '8dBaDw84', '3314909'), - (601, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '8dBaDw84', '3314964'), - (601, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '8dBaDw84', '3323365'), - (601, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '8dBaDw84', '3329383'), - (601, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '8dBaDw84', '3351539'), - (601, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '8dBaDw84', '3386848'), - (601, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '8dBaDw84', '3389527'), - (601, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '8dBaDw84', '3396499'), - (601, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '8dBaDw84', '3403650'), - (601, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '8dBaDw84', '3406988'), - (601, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '8dBaDw84', '3416576'), - (601, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '8dBaDw84', '3418925'), - (601, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dBaDw84', '6045684'), - (602, 1010, 'attending', '2021-11-28 23:43:16', '2025-12-17 19:47:36', 'myDrr50d', '4438812'), - (602, 1094, 'maybe', '2021-11-28 23:43:04', '2025-12-17 19:47:36', 'myDrr50d', '4587337'), - (602, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'myDrr50d', '4694407'), - (602, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'myDrr50d', '4736497'), - (602, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'myDrr50d', '4736500'), - (602, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'myDrr50d', '4746789'), - (602, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'myDrr50d', '4753929'), - (602, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myDrr50d', '6045684'), - (603, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4onn90oA', '8438709'), - (603, 3191, 'attending', '2025-07-15 03:22:39', '2025-12-17 19:46:17', '4onn90oA', '8444983'), - (603, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4onn90oA', '8457738'), - (603, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4onn90oA', '8459566'), - (603, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4onn90oA', '8459567'), - (603, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4onn90oA', '8461032'), - (603, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4onn90oA', '8477877'), - (603, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4onn90oA', '8485688'), - (604, 1176, 'attending', '2022-01-31 09:43:26', '2025-12-17 19:47:32', '4v8yPnkm', '4736498'), - (604, 1177, 'attending', '2022-02-06 22:33:06', '2025-12-17 19:47:32', '4v8yPnkm', '4736499'), - (604, 1178, 'attending', '2022-01-29 03:23:02', '2025-12-17 19:47:32', '4v8yPnkm', '4736500'), - (604, 1179, 'attending', '2022-02-19 04:55:55', '2025-12-17 19:47:32', '4v8yPnkm', '4736501'), - (604, 1181, 'not_attending', '2022-03-06 01:00:30', '2025-12-17 19:47:33', '4v8yPnkm', '4736503'), - (604, 1182, 'not_attending', '2022-03-11 23:52:58', '2025-12-17 19:47:33', '4v8yPnkm', '4736504'), - (604, 1211, 'attending', '2022-01-28 23:30:34', '2025-12-17 19:47:32', '4v8yPnkm', '4780754'), - (604, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4v8yPnkm', '5038850'), - (604, 1236, 'not_attending', '2022-02-16 09:12:51', '2025-12-17 19:47:32', '4v8yPnkm', '5045826'), - (604, 1259, 'not_attending', '2022-03-11 23:52:47', '2025-12-17 19:47:33', '4v8yPnkm', '5132533'), - (604, 1272, 'attending', '2022-03-18 07:53:26', '2025-12-17 19:47:25', '4v8yPnkm', '5186582'), - (604, 1273, 'attending', '2022-03-23 05:42:22', '2025-12-17 19:47:25', '4v8yPnkm', '5186583'), - (604, 1274, 'attending', '2022-03-30 09:29:20', '2025-12-17 19:47:26', '4v8yPnkm', '5186585'), - (604, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4v8yPnkm', '5190437'), - (604, 1284, 'not_attending', '2022-04-16 17:13:06', '2025-12-17 19:47:27', '4v8yPnkm', '5195095'), - (604, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4v8yPnkm', '5215989'), - (604, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4v8yPnkm', '5223686'), - (604, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4v8yPnkm', '5227432'), - (604, 1346, 'attending', '2022-04-21 08:49:31', '2025-12-17 19:47:27', '4v8yPnkm', '5247467'), - (604, 1362, 'not_attending', '2022-05-01 01:58:53', '2025-12-17 19:47:28', '4v8yPnkm', '5260800'), - (604, 1374, 'attending', '2022-05-03 12:09:22', '2025-12-17 19:47:28', '4v8yPnkm', '5269930'), - (604, 1378, 'attending', '2022-05-09 11:41:51', '2025-12-17 19:47:28', '4v8yPnkm', '5271448'), - (604, 1379, 'not_attending', '2022-05-22 05:25:02', '2025-12-17 19:47:30', '4v8yPnkm', '5271449'), - (604, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4v8yPnkm', '5276469'), - (604, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4v8yPnkm', '5278159'), - (604, 1407, 'not_attending', '2022-06-02 08:18:49', '2025-12-17 19:47:30', '4v8yPnkm', '5363695'), - (604, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4v8yPnkm', '5365960'), - (604, 1415, 'not_attending', '2022-06-02 08:18:47', '2025-12-17 19:47:30', '4v8yPnkm', '5368973'), - (604, 1428, 'not_attending', '2022-06-11 11:46:25', '2025-12-17 19:47:30', '4v8yPnkm', '5378247'), - (604, 1431, 'not_attending', '2022-06-11 11:46:30', '2025-12-17 19:47:31', '4v8yPnkm', '5389605'), - (604, 1442, 'attending', '2022-06-13 23:03:07', '2025-12-17 19:47:17', '4v8yPnkm', '5397265'), - (604, 1451, 'not_attending', '2022-06-18 05:08:41', '2025-12-17 19:47:17', '4v8yPnkm', '5403967'), - (604, 1458, 'not_attending', '2022-06-11 11:46:55', '2025-12-17 19:47:17', '4v8yPnkm', '5404786'), - (604, 1462, 'not_attending', '2022-06-11 11:46:49', '2025-12-17 19:47:17', '4v8yPnkm', '5405203'), - (604, 1478, 'not_attending', '2022-06-18 05:08:58', '2025-12-17 19:47:19', '4v8yPnkm', '5408794'), - (604, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4v8yPnkm', '5411699'), - (604, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4v8yPnkm', '5412550'), - (604, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4v8yPnkm', '5415046'), - (604, 1495, 'not_attending', '2022-07-05 22:27:49', '2025-12-17 19:47:19', '4v8yPnkm', '5422086'), - (604, 1498, 'not_attending', '2022-06-29 00:15:06', '2025-12-17 19:47:19', '4v8yPnkm', '5422406'), - (604, 1502, 'not_attending', '2022-07-08 23:29:08', '2025-12-17 19:47:19', '4v8yPnkm', '5424565'), - (604, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4v8yPnkm', '5426882'), - (604, 1505, 'not_attending', '2022-07-05 22:30:12', '2025-12-17 19:47:19', '4v8yPnkm', '5427083'), - (604, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4v8yPnkm', '5441125'), - (604, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4v8yPnkm', '5441126'), - (604, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4v8yPnkm', '5441128'), - (604, 1518, 'attending', '2022-08-23 00:57:05', '2025-12-17 19:47:24', '4v8yPnkm', '5441131'), - (604, 1519, 'attending', '2022-08-23 00:57:24', '2025-12-17 19:47:24', '4v8yPnkm', '5441132'), - (604, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4v8yPnkm', '5446643'), - (604, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4v8yPnkm', '5453325'), - (604, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4v8yPnkm', '5454516'), - (604, 1544, 'attending', '2022-09-17 04:56:32', '2025-12-17 19:47:11', '4v8yPnkm', '5454517'), - (604, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4v8yPnkm', '5454605'), - (604, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4v8yPnkm', '5455037'), - (604, 1559, 'not_attending', '2022-09-27 13:05:32', '2025-12-17 19:47:11', '4v8yPnkm', '5458731'), - (604, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4v8yPnkm', '5461278'), - (604, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4v8yPnkm', '5469480'), - (604, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4v8yPnkm', '5471073'), - (604, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4v8yPnkm', '5474663'), - (604, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4v8yPnkm', '5482022'), - (604, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4v8yPnkm', '5482793'), - (604, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4v8yPnkm', '5488912'), - (604, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4v8yPnkm', '5492192'), - (604, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4v8yPnkm', '5493139'), - (604, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4v8yPnkm', '5493200'), - (604, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4v8yPnkm', '5502188'), - (604, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4v8yPnkm', '5505059'), - (604, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4v8yPnkm', '5509055'), - (604, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4v8yPnkm', '5512862'), - (604, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4v8yPnkm', '5513985'), - (604, 1626, 'attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', '4v8yPnkm', '5519981'), - (604, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4v8yPnkm', '5522550'), - (604, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4v8yPnkm', '5534683'), - (604, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '4v8yPnkm', '5537735'), - (604, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4v8yPnkm', '5540859'), - (604, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4v8yPnkm', '5546619'), - (604, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4v8yPnkm', '5555245'), - (604, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4v8yPnkm', '5557747'), - (604, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4v8yPnkm', '5560255'), - (604, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4v8yPnkm', '5562906'), - (604, 1666, 'attending', '2022-09-27 22:27:58', '2025-12-17 19:47:11', '4v8yPnkm', '5563208'), - (604, 1668, 'not_attending', '2022-10-01 13:01:27', '2025-12-17 19:47:12', '4v8yPnkm', '5563222'), - (604, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4v8yPnkm', '5600604'), - (604, 1679, 'attending', '2022-10-02 15:58:21', '2025-12-17 19:47:12', '4v8yPnkm', '5601099'), - (604, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4v8yPnkm', '5605544'), - (604, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', '4v8yPnkm', '5606737'), - (604, 1708, 'attending', '2022-10-05 15:59:02', '2025-12-17 19:47:12', '4v8yPnkm', '5617648'), - (604, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', '4v8yPnkm', '5630907'), - (604, 1720, 'not_attending', '2022-10-15 09:54:42', '2025-12-17 19:47:12', '4v8yPnkm', '5630959'), - (604, 1721, 'not_attending', '2022-10-14 19:01:47', '2025-12-17 19:47:13', '4v8yPnkm', '5630960'), - (604, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4v8yPnkm', '5630961'), - (604, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4v8yPnkm', '5630962'), - (604, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4v8yPnkm', '5630966'), - (604, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4v8yPnkm', '5630967'), - (604, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4v8yPnkm', '5630968'), - (604, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4v8yPnkm', '5635406'), - (604, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4v8yPnkm', '5638765'), - (604, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4v8yPnkm', '5640097'), - (604, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4v8yPnkm', '5640843'), - (604, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4v8yPnkm', '5641521'), - (604, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4v8yPnkm', '5642818'), - (604, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4v8yPnkm', '5652395'), - (604, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4v8yPnkm', '5670445'), - (604, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4v8yPnkm', '5671637'), - (604, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4v8yPnkm', '5672329'), - (604, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4v8yPnkm', '5674057'), - (604, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4v8yPnkm', '5674060'), - (604, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4v8yPnkm', '5677461'), - (604, 1776, 'attending', '2022-11-09 04:04:04', '2025-12-17 19:47:15', '4v8yPnkm', '5691067'), - (604, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4v8yPnkm', '5698046'), - (604, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4v8yPnkm', '5699760'), - (604, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4v8yPnkm', '5741601'), - (604, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4v8yPnkm', '5763458'), - (604, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4v8yPnkm', '5774172'), - (604, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '4v8yPnkm', '5818247'), - (604, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4v8yPnkm', '5819471'), - (604, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4v8yPnkm', '5827739'), - (604, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4v8yPnkm', '5844306'), - (604, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4v8yPnkm', '5850159'), - (604, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4v8yPnkm', '5858999'), - (604, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4v8yPnkm', '5871984'), - (604, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4v8yPnkm', '5876354'), - (604, 1864, 'not_attending', '2023-01-22 02:46:53', '2025-12-17 19:47:05', '4v8yPnkm', '5879675'), - (604, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4v8yPnkm', '5880939'), - (604, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4v8yPnkm', '5880940'), - (604, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4v8yPnkm', '5880942'), - (604, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4v8yPnkm', '5880943'), - (604, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4v8yPnkm', '5887890'), - (604, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4v8yPnkm', '5888598'), - (604, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4v8yPnkm', '5893260'), - (604, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4v8yPnkm', '5899826'), - (604, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4v8yPnkm', '5900199'), - (604, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4v8yPnkm', '5900200'), - (604, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4v8yPnkm', '5900202'), - (604, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4v8yPnkm', '5900203'), - (604, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4v8yPnkm', '5901108'), - (604, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4v8yPnkm', '5901126'), - (604, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4v8yPnkm', '5909655'), - (604, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4v8yPnkm', '5910522'), - (604, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4v8yPnkm', '5910526'), - (604, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4v8yPnkm', '5910528'), - (604, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4v8yPnkm', '5916219'), - (604, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4v8yPnkm', '5936234'), - (604, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4v8yPnkm', '5958351'), - (604, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4v8yPnkm', '5959751'), - (604, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4v8yPnkm', '5959755'), - (604, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4v8yPnkm', '5960055'), - (604, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4v8yPnkm', '5961684'), - (604, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4v8yPnkm', '5962132'), - (604, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4v8yPnkm', '5962133'), - (604, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4v8yPnkm', '5962134'), - (604, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4v8yPnkm', '5962317'), - (604, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4v8yPnkm', '5962318'), - (604, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4v8yPnkm', '5965933'), - (604, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4v8yPnkm', '5967014'), - (604, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4v8yPnkm', '5972815'), - (604, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4v8yPnkm', '5974016'), - (604, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4v8yPnkm', '5981515'), - (604, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4v8yPnkm', '5993516'), - (604, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4v8yPnkm', '5998939'), - (604, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4v8yPnkm', '6028191'), - (604, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4v8yPnkm', '6040066'), - (604, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4v8yPnkm', '6042717'), - (604, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4v8yPnkm', '6044838'), - (604, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4v8yPnkm', '6044839'), - (604, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4v8yPnkm', '6045684'), - (604, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4v8yPnkm', '6050104'), - (604, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4v8yPnkm', '6053195'), - (604, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4v8yPnkm', '6053198'), - (604, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4v8yPnkm', '6056085'), - (604, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4v8yPnkm', '6056916'), - (604, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4v8yPnkm', '6059290'), - (604, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4v8yPnkm', '6060328'), - (604, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4v8yPnkm', '6061037'), - (604, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4v8yPnkm', '6061039'), - (604, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4v8yPnkm', '6067245'), - (604, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4v8yPnkm', '6068094'), - (604, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4v8yPnkm', '6068252'), - (604, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4v8yPnkm', '6068253'), - (604, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4v8yPnkm', '6068254'), - (604, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4v8yPnkm', '6068280'), - (604, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4v8yPnkm', '6069093'), - (604, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4v8yPnkm', '6072528'), - (604, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4v8yPnkm', '6079840'), - (604, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4v8yPnkm', '6083398'), - (604, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4v8yPnkm', '6093504'), - (604, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4v8yPnkm', '6097414'), - (604, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4v8yPnkm', '6097442'), - (604, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4v8yPnkm', '6097684'), - (604, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4v8yPnkm', '6098762'), - (604, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4v8yPnkm', '6101362'), - (604, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4v8yPnkm', '6103752'), - (604, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4v8yPnkm', '6107314'), - (605, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'LmpJ6PQ4', '3149489'), - (605, 648, 'not_attending', '2021-05-29 02:26:15', '2025-12-17 19:47:47', 'LmpJ6PQ4', '3539923'), - (605, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJ6PQ4', '6045684'), - (606, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4ol7aOVd', '6655401'), - (606, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4ol7aOVd', '6699906'), - (606, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4ol7aOVd', '6699913'), - (606, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4ol7aOVd', '6701109'), - (606, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4ol7aOVd', '6705219'), - (606, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4ol7aOVd', '6710153'), - (606, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4ol7aOVd', '6711552'), - (606, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4ol7aOVd', '6711553'), - (606, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4ol7aOVd', '6722688'), - (606, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4ol7aOVd', '6730620'), - (606, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4ol7aOVd', '6730642'), - (606, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4ol7aOVd', '6740364'), - (606, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4ol7aOVd', '6743829'), - (606, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4ol7aOVd', '7030380'), - (606, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4ol7aOVd', '7033677'), - (606, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4ol7aOVd', '7035415'), - (606, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4ol7aOVd', '7044715'), - (606, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4ol7aOVd', '7050318'), - (606, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4ol7aOVd', '7050319'), - (606, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4ol7aOVd', '7050322'), - (606, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4ol7aOVd', '7057804'), - (606, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4ol7aOVd', '7072824'), - (606, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4ol7aOVd', '7074348'), - (606, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4ol7aOVd', '7089267'), - (606, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4ol7aOVd', '7098747'), - (606, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4ol7aOVd', '7113468'), - (606, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4ol7aOVd', '7114856'), - (606, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4ol7aOVd', '7114951'), - (606, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4ol7aOVd', '7114955'), - (606, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4ol7aOVd', '7114956'), - (606, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4ol7aOVd', '7153615'), - (606, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4ol7aOVd', '7159484'), - (606, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4ol7aOVd', '7178446'), - (607, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mq1a80qm', '6045684'), - (608, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxDRpJ1d', '6045684'), - (609, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'daJnKRDm', '4736503'), - (609, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daJnKRDm', '4736504'), - (609, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'daJnKRDm', '5132533'), - (609, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'daJnKRDm', '5186582'), - (609, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'daJnKRDm', '5186583'), - (609, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'daJnKRDm', '5186585'), - (609, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'daJnKRDm', '5190437'), - (609, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'daJnKRDm', '5196763'), - (609, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'daJnKRDm', '5199460'), - (609, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'daJnKRDm', '5215989'), - (609, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daJnKRDm', '6045684'), - (610, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dVbq39Zd', '4736504'), - (610, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'dVbq39Zd', '5132533'), - (610, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dVbq39Zd', '5186582'), - (610, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dVbq39Zd', '5186583'), - (610, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dVbq39Zd', '5186585'), - (610, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVbq39Zd', '5190437'), - (610, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'dVbq39Zd', '5196763'), - (610, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'dVbq39Zd', '5199460'), - (610, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVbq39Zd', '5215989'), - (610, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVbq39Zd', '5223686'), - (610, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVbq39Zd', '5227432'), - (610, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbq39Zd', '6045684'), - (611, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'daBenyDm', '4736497'), - (611, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'daBenyDm', '4736499'), - (611, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'daBenyDm', '4736500'), - (611, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'daBenyDm', '4736503'), - (611, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daBenyDm', '4736504'), - (611, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'daBenyDm', '4746789'), - (611, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'daBenyDm', '4753929'), - (611, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'daBenyDm', '5038850'), - (611, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'daBenyDm', '5045826'), - (611, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'daBenyDm', '5132533'), - (611, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daBenyDm', '6045684'), - (612, 10, 'attending', '2020-03-28 11:51:19', '2025-12-17 19:47:56', 'NmLXxVam', '2958053'), - (612, 12, 'not_attending', '2020-03-31 12:11:41', '2025-12-17 19:47:56', 'NmLXxVam', '2958056'), - (612, 17, 'attending', '2020-03-22 10:29:55', '2025-12-17 19:47:58', 'NmLXxVam', '2958061'), - (612, 22, 'not_attending', '2020-05-24 12:21:29', '2025-12-17 19:47:57', 'NmLXxVam', '2958066'), - (612, 23, 'not_attending', '2020-06-02 08:11:35', '2025-12-17 19:47:58', 'NmLXxVam', '2958067'), - (612, 24, 'not_attending', '2020-06-02 08:11:37', '2025-12-17 19:47:55', 'NmLXxVam', '2958068'), - (612, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'NmLXxVam', '2961309'), - (612, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'NmLXxVam', '2961895'), - (612, 36, 'maybe', '2020-03-29 11:40:24', '2025-12-17 19:47:57', 'NmLXxVam', '2969208'), - (612, 38, 'maybe', '2020-03-30 14:27:35', '2025-12-17 19:47:56', 'NmLXxVam', '2969751'), - (612, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'NmLXxVam', '2971546'), - (612, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'NmLXxVam', '2974534'), - (612, 46, 'attending', '2020-04-06 18:43:18', '2025-12-17 19:47:57', 'NmLXxVam', '2974955'), - (612, 49, 'not_attending', '2020-05-24 12:21:52', '2025-12-17 19:47:58', 'NmLXxVam', '2975274'), - (612, 50, 'not_attending', '2020-07-26 03:02:14', '2025-12-17 19:47:55', 'NmLXxVam', '2975275'), - (612, 51, 'not_attending', '2020-06-02 08:11:51', '2025-12-17 19:47:55', 'NmLXxVam', '2975276'), - (612, 52, 'not_attending', '2020-06-02 08:11:42', '2025-12-17 19:47:58', 'NmLXxVam', '2975277'), - (612, 54, 'not_attending', '2020-08-11 01:00:06', '2025-12-17 19:47:56', 'NmLXxVam', '2975279'), - (612, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'NmLXxVam', '2975384'), - (612, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'NmLXxVam', '2975385'), - (612, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'NmLXxVam', '2976575'), - (612, 59, 'maybe', '2020-05-05 22:14:15', '2025-12-17 19:47:57', 'NmLXxVam', '2977128'), - (612, 62, 'maybe', '2020-05-12 19:45:38', '2025-12-17 19:47:57', 'NmLXxVam', '2977131'), - (612, 63, 'attending', '2020-05-05 22:15:52', '2025-12-17 19:47:57', 'NmLXxVam', '2977132'), - (612, 64, 'not_attending', '2020-06-02 08:10:22', '2025-12-17 19:47:58', 'NmLXxVam', '2977133'), - (612, 65, 'attending', '2020-05-05 22:15:54', '2025-12-17 19:47:57', 'NmLXxVam', '2977134'), - (612, 66, 'attending', '2020-06-02 08:11:15', '2025-12-17 19:47:58', 'NmLXxVam', '2977135'), - (612, 67, 'maybe', '2020-06-16 22:31:04', '2025-12-17 19:47:58', 'NmLXxVam', '2977136'), - (612, 68, 'maybe', '2020-06-23 21:32:59', '2025-12-17 19:47:58', 'NmLXxVam', '2977137'), - (612, 69, 'maybe', '2020-07-02 22:31:04', '2025-12-17 19:47:55', 'NmLXxVam', '2977138'), - (612, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'NmLXxVam', '2977343'), - (612, 72, 'maybe', '2020-05-05 22:16:13', '2025-12-17 19:47:57', 'NmLXxVam', '2977812'), - (612, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'NmLXxVam', '2977931'), - (612, 74, 'attending', '2020-04-16 16:24:32', '2025-12-17 19:47:57', 'NmLXxVam', '2978244'), - (612, 75, 'maybe', '2020-04-25 19:35:09', '2025-12-17 19:47:57', 'NmLXxVam', '2978245'), - (612, 76, 'attending', '2020-04-16 16:24:36', '2025-12-17 19:47:57', 'NmLXxVam', '2978246'), - (612, 77, 'maybe', '2020-05-09 20:44:27', '2025-12-17 19:47:57', 'NmLXxVam', '2978247'), - (612, 78, 'attending', '2020-05-04 21:37:28', '2025-12-17 19:47:57', 'NmLXxVam', '2978249'), - (612, 79, 'attending', '2020-05-04 21:37:30', '2025-12-17 19:47:57', 'NmLXxVam', '2978250'), - (612, 80, 'maybe', '2020-06-06 21:22:38', '2025-12-17 19:47:58', 'NmLXxVam', '2978251'), - (612, 81, 'attending', '2020-06-02 08:10:59', '2025-12-17 19:47:58', 'NmLXxVam', '2978252'), - (612, 82, 'maybe', '2020-04-11 01:51:43', '2025-12-17 19:47:57', 'NmLXxVam', '2978433'), - (612, 83, 'maybe', '2020-05-05 22:16:23', '2025-12-17 19:47:57', 'NmLXxVam', '2978438'), - (612, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'NmLXxVam', '2980871'), - (612, 86, 'not_attending', '2020-04-14 18:59:27', '2025-12-17 19:47:57', 'NmLXxVam', '2981388'), - (612, 92, 'maybe', '2020-04-19 11:31:16', '2025-12-17 19:47:57', 'NmLXxVam', '2986743'), - (612, 96, 'not_attending', '2020-05-05 22:16:07', '2025-12-17 19:47:57', 'NmLXxVam', '2987453'), - (612, 97, 'not_attending', '2020-05-05 22:16:10', '2025-12-17 19:47:57', 'NmLXxVam', '2987454'), - (612, 98, 'not_attending', '2020-05-05 22:16:00', '2025-12-17 19:47:57', 'NmLXxVam', '2987455'), - (612, 100, 'attending', '2020-04-24 19:46:51', '2025-12-17 19:47:57', 'NmLXxVam', '2989142'), - (612, 104, 'maybe', '2020-04-24 14:49:28', '2025-12-17 19:47:57', 'NmLXxVam', '2991471'), - (612, 105, 'maybe', '2020-05-05 22:16:29', '2025-12-17 19:47:57', 'NmLXxVam', '2993500'), - (612, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'NmLXxVam', '2993501'), - (612, 107, 'maybe', '2020-05-05 22:16:35', '2025-12-17 19:47:57', 'NmLXxVam', '2993502'), - (612, 108, 'maybe', '2020-05-05 22:16:32', '2025-12-17 19:47:57', 'NmLXxVam', '2993504'), - (612, 109, 'maybe', '2020-05-05 22:16:04', '2025-12-17 19:47:57', 'NmLXxVam', '2994480'), - (612, 111, 'not_attending', '2020-06-02 08:11:06', '2025-12-17 19:47:58', 'NmLXxVam', '2994907'), - (612, 115, 'not_attending', '2020-05-16 13:27:55', '2025-12-17 19:47:57', 'NmLXxVam', '3001217'), - (612, 121, 'maybe', '2020-05-24 12:21:08', '2025-12-17 19:47:57', 'NmLXxVam', '3023063'), - (612, 123, 'not_attending', '2020-05-24 12:21:02', '2025-12-17 19:47:57', 'NmLXxVam', '3023729'), - (612, 124, 'maybe', '2020-05-24 12:21:26', '2025-12-17 19:47:57', 'NmLXxVam', '3023809'), - (612, 125, 'maybe', '2020-05-19 13:18:11', '2025-12-17 19:47:57', 'NmLXxVam', '3023987'), - (612, 126, 'maybe', '2020-05-24 12:20:48', '2025-12-17 19:47:57', 'NmLXxVam', '3024022'), - (612, 129, 'maybe', '2020-05-24 12:21:47', '2025-12-17 19:47:58', 'NmLXxVam', '3028743'), - (612, 130, 'maybe', '2020-05-28 22:30:32', '2025-12-17 19:47:57', 'NmLXxVam', '3028781'), - (612, 132, 'not_attending', '2020-05-24 12:21:55', '2025-12-17 19:47:58', 'NmLXxVam', '3033648'), - (612, 133, 'maybe', '2020-06-02 08:11:24', '2025-12-17 19:47:58', 'NmLXxVam', '3034321'), - (612, 134, 'not_attending', '2020-05-24 12:21:05', '2025-12-17 19:47:57', 'NmLXxVam', '3034367'), - (612, 135, 'maybe', '2020-05-24 12:21:15', '2025-12-17 19:47:57', 'NmLXxVam', '3034368'), - (612, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'NmLXxVam', '3035881'), - (612, 137, 'maybe', '2020-06-02 08:10:49', '2025-12-17 19:47:58', 'NmLXxVam', '3042188'), - (612, 138, 'maybe', '2020-06-02 08:11:30', '2025-12-17 19:47:58', 'NmLXxVam', '3042932'), - (612, 139, 'not_attending', '2020-06-02 08:11:10', '2025-12-17 19:47:58', 'NmLXxVam', '3046190'), - (612, 141, 'not_attending', '2020-06-02 08:10:30', '2025-12-17 19:47:58', 'NmLXxVam', '3049830'), - (612, 143, 'not_attending', '2020-06-02 08:11:13', '2025-12-17 19:47:58', 'NmLXxVam', '3049983'), - (612, 147, 'not_attending', '2020-08-11 01:00:56', '2025-12-17 19:47:56', 'NmLXxVam', '3058684'), - (612, 151, 'not_attending', '2020-08-11 01:01:50', '2025-12-17 19:47:56', 'NmLXxVam', '3058688'), - (612, 152, 'not_attending', '2020-08-11 01:01:56', '2025-12-17 19:47:56', 'NmLXxVam', '3058689'), - (612, 155, 'not_attending', '2020-08-11 01:00:28', '2025-12-17 19:47:56', 'NmLXxVam', '3058692'), - (612, 156, 'not_attending', '2020-08-31 23:25:54', '2025-12-17 19:47:56', 'NmLXxVam', '3058693'), - (612, 157, 'not_attending', '2020-08-31 23:25:51', '2025-12-17 19:47:56', 'NmLXxVam', '3058694'), - (612, 158, 'not_attending', '2020-08-31 23:26:01', '2025-12-17 19:47:52', 'NmLXxVam', '3058695'), - (612, 159, 'not_attending', '2020-08-31 23:26:30', '2025-12-17 19:47:52', 'NmLXxVam', '3058696'), - (612, 160, 'not_attending', '2020-09-28 23:43:37', '2025-12-17 19:47:52', 'NmLXxVam', '3058697'), - (612, 161, 'not_attending', '2020-09-28 23:45:30', '2025-12-17 19:47:52', 'NmLXxVam', '3058698'), - (612, 162, 'not_attending', '2020-09-28 23:45:33', '2025-12-17 19:47:52', 'NmLXxVam', '3058699'), - (612, 163, 'not_attending', '2020-09-28 23:43:31', '2025-12-17 19:47:53', 'NmLXxVam', '3058700'), - (612, 164, 'not_attending', '2020-11-02 01:11:13', '2025-12-17 19:47:54', 'NmLXxVam', '3058701'), - (612, 165, 'not_attending', '2020-11-08 00:32:55', '2025-12-17 19:47:53', 'NmLXxVam', '3058702'), - (612, 166, 'not_attending', '2020-11-02 01:10:45', '2025-12-17 19:47:54', 'NmLXxVam', '3058704'), - (612, 167, 'not_attending', '2020-11-02 01:10:41', '2025-12-17 19:47:54', 'NmLXxVam', '3058705'), - (612, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'NmLXxVam', '3058959'), - (612, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'NmLXxVam', '3067093'), - (612, 181, 'not_attending', '2020-06-20 01:52:26', '2025-12-17 19:47:58', 'NmLXxVam', '3074513'), - (612, 182, 'not_attending', '2020-06-27 17:32:35', '2025-12-17 19:47:55', 'NmLXxVam', '3074514'), - (612, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'NmLXxVam', '3075228'), - (612, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'NmLXxVam', '3075456'), - (612, 186, 'not_attending', '2020-06-18 20:23:22', '2025-12-17 19:47:55', 'NmLXxVam', '3083791'), - (612, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'NmLXxVam', '3085151'), - (612, 191, 'attending', '2020-07-07 22:22:42', '2025-12-17 19:47:55', 'NmLXxVam', '3087259'), - (612, 193, 'attending', '2020-07-07 22:22:44', '2025-12-17 19:47:55', 'NmLXxVam', '3087261'), - (612, 194, 'attending', '2020-07-07 22:22:46', '2025-12-17 19:47:55', 'NmLXxVam', '3087262'), - (612, 196, 'maybe', '2020-08-10 09:58:14', '2025-12-17 19:47:56', 'NmLXxVam', '3087265'), - (612, 197, 'maybe', '2020-08-22 22:04:48', '2025-12-17 19:47:56', 'NmLXxVam', '3087266'), - (612, 198, 'maybe', '2020-08-29 11:16:38', '2025-12-17 19:47:56', 'NmLXxVam', '3087267'), - (612, 199, 'attending', '2020-08-11 01:01:54', '2025-12-17 19:47:56', 'NmLXxVam', '3087268'), - (612, 200, 'maybe', '2020-08-31 23:24:43', '2025-12-17 19:47:56', 'NmLXxVam', '3087269'), - (612, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'NmLXxVam', '3088653'), - (612, 203, 'attending', '2020-06-22 09:52:25', '2025-12-17 19:47:58', 'NmLXxVam', '3091624'), - (612, 205, 'maybe', '2020-07-08 09:39:54', '2025-12-17 19:47:55', 'NmLXxVam', '3104804'), - (612, 207, 'maybe', '2020-07-24 22:10:32', '2025-12-17 19:47:55', 'NmLXxVam', '3104807'), - (612, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'NmLXxVam', '3106813'), - (612, 214, 'maybe', '2020-07-08 09:39:40', '2025-12-17 19:47:55', 'NmLXxVam', '3124139'), - (612, 219, 'not_attending', '2020-08-11 01:00:44', '2025-12-17 19:47:56', 'NmLXxVam', '3129263'), - (612, 220, 'not_attending', '2020-08-11 01:02:04', '2025-12-17 19:47:56', 'NmLXxVam', '3129264'), - (612, 221, 'not_attending', '2020-08-31 23:27:39', '2025-12-17 19:47:56', 'NmLXxVam', '3129265'), - (612, 223, 'attending', '2020-08-31 23:25:39', '2025-12-17 19:47:56', 'NmLXxVam', '3129980'), - (612, 224, 'maybe', '2020-07-26 03:02:00', '2025-12-17 19:47:55', 'NmLXxVam', '3130712'), - (612, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'NmLXxVam', '3132817'), - (612, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'NmLXxVam', '3132820'), - (612, 230, 'maybe', '2020-07-26 03:02:09', '2025-12-17 19:47:55', 'NmLXxVam', '3139232'), - (612, 233, 'attending', '2020-07-20 09:43:12', '2025-12-17 19:47:55', 'NmLXxVam', '3139773'), - (612, 237, 'not_attending', '2020-07-26 03:02:12', '2025-12-17 19:47:55', 'NmLXxVam', '3142085'), - (612, 238, 'maybe', '2020-07-26 03:02:20', '2025-12-17 19:47:55', 'NmLXxVam', '3145669'), - (612, 239, 'not_attending', '2020-08-11 01:01:14', '2025-12-17 19:47:56', 'NmLXxVam', '3149470'), - (612, 240, 'not_attending', '2020-08-31 23:25:03', '2025-12-17 19:47:56', 'NmLXxVam', '3149471'), - (612, 241, 'not_attending', '2020-08-31 23:27:02', '2025-12-17 19:47:52', 'NmLXxVam', '3149472'), - (612, 242, 'not_attending', '2020-08-31 23:26:39', '2025-12-17 19:47:56', 'NmLXxVam', '3149473'), - (612, 243, 'not_attending', '2020-11-04 00:47:00', '2025-12-17 19:47:53', 'NmLXxVam', '3149474'), - (612, 244, 'not_attending', '2020-09-28 23:45:10', '2025-12-17 19:47:52', 'NmLXxVam', '3149475'), - (612, 245, 'not_attending', '2020-11-02 01:11:22', '2025-12-17 19:47:54', 'NmLXxVam', '3149476'), - (612, 246, 'not_attending', '2020-12-15 02:37:08', '2025-12-17 19:47:55', 'NmLXxVam', '3149477'), - (612, 248, 'not_attending', '2021-01-02 13:45:03', '2025-12-17 19:47:48', 'NmLXxVam', '3149479'), - (612, 249, 'not_attending', '2020-11-02 01:11:18', '2025-12-17 19:47:54', 'NmLXxVam', '3149480'), - (612, 250, 'not_attending', '2021-02-03 00:03:42', '2025-12-17 19:47:50', 'NmLXxVam', '3149481'), - (612, 251, 'not_attending', '2021-01-02 13:45:05', '2025-12-17 19:47:49', 'NmLXxVam', '3149482'), - (612, 252, 'not_attending', '2021-02-03 00:04:55', '2025-12-17 19:47:50', 'NmLXxVam', '3149483'), - (612, 253, 'not_attending', '2021-03-01 13:42:42', '2025-12-17 19:47:44', 'NmLXxVam', '3149484'), - (612, 254, 'not_attending', '2021-03-01 04:08:22', '2025-12-17 19:47:51', 'NmLXxVam', '3149485'), - (612, 255, 'not_attending', '2021-03-01 13:42:39', '2025-12-17 19:47:43', 'NmLXxVam', '3149486'), - (612, 256, 'not_attending', '2021-05-03 18:28:49', '2025-12-17 19:47:46', 'NmLXxVam', '3149487'), - (612, 257, 'maybe', '2021-04-09 00:11:05', '2025-12-17 19:47:45', 'NmLXxVam', '3149488'), - (612, 258, 'not_attending', '2021-05-13 00:12:53', '2025-12-17 19:47:47', 'NmLXxVam', '3149489'), - (612, 259, 'not_attending', '2021-05-13 00:12:24', '2025-12-17 19:47:46', 'NmLXxVam', '3149490'), - (612, 260, 'not_attending', '2021-06-13 19:57:39', '2025-12-17 19:47:48', 'NmLXxVam', '3149491'), - (612, 262, 'not_attending', '2021-06-13 19:58:09', '2025-12-17 19:47:38', 'NmLXxVam', '3149493'), - (612, 263, 'maybe', '2020-07-26 03:01:30', '2025-12-17 19:47:55', 'NmLXxVam', '3149671'), - (612, 270, 'maybe', '2020-08-11 00:59:40', '2025-12-17 19:47:56', 'NmLXxVam', '3154457'), - (612, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'NmLXxVam', '3155321'), - (612, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'NmLXxVam', '3162006'), - (612, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'NmLXxVam', '3163442'), - (612, 279, 'maybe', '2020-08-11 01:00:22', '2025-12-17 19:47:56', 'NmLXxVam', '3165202'), - (612, 280, 'not_attending', '2020-08-11 00:59:51', '2025-12-17 19:47:56', 'NmLXxVam', '3166942'), - (612, 284, 'maybe', '2020-08-11 01:00:12', '2025-12-17 19:47:56', 'NmLXxVam', '3169556'), - (612, 285, 'maybe', '2020-08-11 01:01:06', '2025-12-17 19:47:56', 'NmLXxVam', '3170245'), - (612, 286, 'maybe', '2020-08-11 01:01:31', '2025-12-17 19:47:56', 'NmLXxVam', '3170246'), - (612, 287, 'maybe', '2020-08-11 01:01:42', '2025-12-17 19:47:56', 'NmLXxVam', '3170247'), - (612, 288, 'maybe', '2020-08-11 01:02:11', '2025-12-17 19:47:56', 'NmLXxVam', '3170249'), - (612, 289, 'maybe', '2020-08-11 01:01:59', '2025-12-17 19:47:56', 'NmLXxVam', '3170250'), - (612, 290, 'maybe', '2020-08-31 23:25:08', '2025-12-17 19:47:56', 'NmLXxVam', '3170251'), - (612, 291, 'maybe', '2020-08-31 23:25:15', '2025-12-17 19:47:56', 'NmLXxVam', '3170252'), - (612, 293, 'maybe', '2020-08-11 01:00:40', '2025-12-17 19:47:56', 'NmLXxVam', '3172832'), - (612, 294, 'maybe', '2020-08-11 01:01:23', '2025-12-17 19:47:56', 'NmLXxVam', '3172833'), - (612, 295, 'maybe', '2020-08-11 01:02:08', '2025-12-17 19:47:56', 'NmLXxVam', '3172834'), - (612, 296, 'maybe', '2020-08-31 23:25:29', '2025-12-17 19:47:56', 'NmLXxVam', '3172876'), - (612, 297, 'attending', '2020-08-11 00:59:35', '2025-12-17 19:47:56', 'NmLXxVam', '3173937'), - (612, 298, 'maybe', '2020-08-11 01:01:36', '2025-12-17 19:47:56', 'NmLXxVam', '3174556'), - (612, 300, 'maybe', '2020-08-31 23:26:20', '2025-12-17 19:47:56', 'NmLXxVam', '3177986'), - (612, 302, 'maybe', '2020-08-16 01:19:55', '2025-12-17 19:47:56', 'NmLXxVam', '3178028'), - (612, 304, 'maybe', '2020-08-31 23:24:54', '2025-12-17 19:47:56', 'NmLXxVam', '3178916'), - (612, 305, 'attending', '2020-08-18 10:09:51', '2025-12-17 19:47:56', 'NmLXxVam', '3179555'), - (612, 308, 'attending', '2020-08-17 22:56:40', '2025-12-17 19:47:56', 'NmLXxVam', '3183341'), - (612, 310, 'maybe', '2020-08-22 22:41:11', '2025-12-17 19:47:56', 'NmLXxVam', '3186005'), - (612, 311, 'not_attending', '2020-09-12 22:46:14', '2025-12-17 19:47:56', 'NmLXxVam', '3186057'), - (612, 312, 'maybe', '2020-08-31 23:25:12', '2025-12-17 19:47:56', 'NmLXxVam', '3187795'), - (612, 313, 'maybe', '2020-08-22 22:41:16', '2025-12-17 19:47:56', 'NmLXxVam', '3188127'), - (612, 315, 'maybe', '2020-08-31 23:25:00', '2025-12-17 19:47:56', 'NmLXxVam', '3189085'), - (612, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'NmLXxVam', '3191735'), - (612, 319, 'attending', '2020-08-31 23:11:21', '2025-12-17 19:47:56', 'NmLXxVam', '3194179'), - (612, 320, 'not_attending', '2020-08-31 23:27:19', '2025-12-17 19:47:56', 'NmLXxVam', '3195552'), - (612, 321, 'maybe', '2020-08-31 23:24:46', '2025-12-17 19:47:56', 'NmLXxVam', '3197077'), - (612, 322, 'maybe', '2020-08-31 23:27:33', '2025-12-17 19:47:56', 'NmLXxVam', '3197080'), - (612, 323, 'maybe', '2020-08-31 23:27:36', '2025-12-17 19:47:56', 'NmLXxVam', '3197081'), - (612, 324, 'maybe', '2020-08-31 23:28:05', '2025-12-17 19:47:56', 'NmLXxVam', '3197082'), - (612, 325, 'maybe', '2020-08-31 23:27:51', '2025-12-17 19:47:51', 'NmLXxVam', '3197083'), - (612, 326, 'maybe', '2020-09-13 03:31:05', '2025-12-17 19:47:52', 'NmLXxVam', '3197084'), - (612, 327, 'maybe', '2020-08-31 23:27:08', '2025-12-17 19:47:52', 'NmLXxVam', '3197085'), - (612, 328, 'maybe', '2020-08-31 23:26:52', '2025-12-17 19:47:52', 'NmLXxVam', '3197086'), - (612, 329, 'maybe', '2020-08-31 23:28:16', '2025-12-17 19:47:52', 'NmLXxVam', '3197087'), - (612, 330, 'maybe', '2020-08-31 23:24:49', '2025-12-17 19:47:56', 'NmLXxVam', '3197322'), - (612, 333, 'maybe', '2020-09-28 23:44:17', '2025-12-17 19:47:52', 'NmLXxVam', '3199782'), - (612, 334, 'maybe', '2020-10-09 00:52:58', '2025-12-17 19:47:52', 'NmLXxVam', '3199784'), - (612, 335, 'maybe', '2020-09-01 22:32:11', '2025-12-17 19:47:56', 'NmLXxVam', '3200209'), - (612, 338, 'not_attending', '2020-09-06 02:22:52', '2025-12-17 19:47:56', 'NmLXxVam', '3203106'), - (612, 339, 'maybe', '2020-09-09 23:25:35', '2025-12-17 19:47:56', 'NmLXxVam', '3204469'), - (612, 341, 'attending', '2020-09-13 03:31:10', '2025-12-17 19:47:52', 'NmLXxVam', '3204471'), - (612, 342, 'not_attending', '2020-09-28 23:44:05', '2025-12-17 19:47:52', 'NmLXxVam', '3204472'), - (612, 343, 'maybe', '2020-09-13 03:31:14', '2025-12-17 19:47:56', 'NmLXxVam', '3206759'), - (612, 344, 'maybe', '2020-10-14 12:36:24', '2025-12-17 19:47:53', 'NmLXxVam', '3206906'), - (612, 346, 'maybe', '2020-09-13 21:43:36', '2025-12-17 19:47:56', 'NmLXxVam', '3207515'), - (612, 347, 'maybe', '2020-09-13 03:30:57', '2025-12-17 19:47:51', 'NmLXxVam', '3207930'), - (612, 348, 'maybe', '2020-09-13 03:30:34', '2025-12-17 19:47:52', 'NmLXxVam', '3209159'), - (612, 354, 'not_attending', '2020-09-13 21:43:47', '2025-12-17 19:47:56', 'NmLXxVam', '3212570'), - (612, 359, 'not_attending', '2020-09-13 21:50:36', '2025-12-17 19:47:56', 'NmLXxVam', '3212624'), - (612, 362, 'maybe', '2020-09-22 23:33:38', '2025-12-17 19:47:52', 'NmLXxVam', '3214207'), - (612, 363, 'not_attending', '2020-09-21 09:59:45', '2025-12-17 19:47:52', 'NmLXxVam', '3217037'), - (612, 365, 'not_attending', '2020-09-21 09:59:48', '2025-12-17 19:47:52', 'NmLXxVam', '3218510'), - (612, 368, 'maybe', '2020-09-28 23:44:00', '2025-12-17 19:47:52', 'NmLXxVam', '3221403'), - (612, 369, 'maybe', '2020-09-28 23:44:28', '2025-12-17 19:47:52', 'NmLXxVam', '3221404'), - (612, 370, 'maybe', '2020-09-28 23:44:31', '2025-12-17 19:47:52', 'NmLXxVam', '3221405'), - (612, 371, 'not_attending', '2020-10-09 00:53:36', '2025-12-17 19:47:52', 'NmLXxVam', '3221406'), - (612, 372, 'maybe', '2020-09-28 23:45:00', '2025-12-17 19:47:52', 'NmLXxVam', '3221407'), - (612, 373, 'maybe', '2020-09-28 23:45:41', '2025-12-17 19:47:52', 'NmLXxVam', '3221413'), - (612, 374, 'maybe', '2020-09-28 23:44:45', '2025-12-17 19:47:53', 'NmLXxVam', '3221415'), - (612, 375, 'attending', '2020-09-28 23:45:23', '2025-12-17 19:47:52', 'NmLXxVam', '3222825'), - (612, 376, 'maybe', '2020-10-09 00:53:29', '2025-12-17 19:47:52', 'NmLXxVam', '3222827'), - (612, 377, 'maybe', '2020-09-28 23:44:51', '2025-12-17 19:47:53', 'NmLXxVam', '3222828'), - (612, 379, 'attending', '2020-09-28 23:44:13', '2025-12-17 19:47:52', 'NmLXxVam', '3226266'), - (612, 382, 'maybe', '2020-09-28 23:44:24', '2025-12-17 19:47:52', 'NmLXxVam', '3226873'), - (612, 383, 'not_attending', '2020-09-28 23:43:49', '2025-12-17 19:47:52', 'NmLXxVam', '3227946'), - (612, 384, 'attending', '2020-09-29 00:34:47', '2025-12-17 19:47:52', 'NmLXxVam', '3228696'), - (612, 385, 'attending', '2020-09-28 23:43:19', '2025-12-17 19:47:52', 'NmLXxVam', '3228698'), - (612, 386, 'attending', '2020-10-10 21:42:06', '2025-12-17 19:47:52', 'NmLXxVam', '3228699'), - (612, 387, 'attending', '2020-09-28 23:43:27', '2025-12-17 19:47:52', 'NmLXxVam', '3228700'), - (612, 388, 'attending', '2020-09-28 23:43:28', '2025-12-17 19:47:52', 'NmLXxVam', '3228701'), - (612, 390, 'attending', '2020-10-04 23:16:20', '2025-12-17 19:47:52', 'NmLXxVam', '3231510'), - (612, 391, 'not_attending', '2020-10-09 00:53:31', '2025-12-17 19:47:52', 'NmLXxVam', '3236446'), - (612, 392, 'not_attending', '2020-10-09 00:54:04', '2025-12-17 19:47:53', 'NmLXxVam', '3236447'), - (612, 393, 'not_attending', '2021-06-13 19:58:41', '2025-12-17 19:47:38', 'NmLXxVam', '3236448'), - (612, 394, 'not_attending', '2021-01-02 13:44:49', '2025-12-17 19:47:48', 'NmLXxVam', '3236449'), - (612, 396, 'not_attending', '2021-04-22 21:15:27', '2025-12-17 19:47:46', 'NmLXxVam', '3236451'), - (612, 397, 'not_attending', '2021-05-13 00:13:00', '2025-12-17 19:47:47', 'NmLXxVam', '3236452'), - (612, 398, 'not_attending', '2021-01-02 13:45:08', '2025-12-17 19:47:49', 'NmLXxVam', '3236453'), - (612, 399, 'not_attending', '2020-11-02 01:11:39', '2025-12-17 19:47:54', 'NmLXxVam', '3236454'), - (612, 400, 'not_attending', '2021-01-02 13:45:23', '2025-12-17 19:47:50', 'NmLXxVam', '3236455'), - (612, 401, 'not_attending', '2021-05-13 00:11:51', '2025-12-17 19:47:46', 'NmLXxVam', '3236456'), - (612, 402, 'not_attending', '2021-06-13 19:58:16', '2025-12-17 19:47:39', 'NmLXxVam', '3236457'), - (612, 403, 'not_attending', '2021-03-01 04:08:08', '2025-12-17 19:47:51', 'NmLXxVam', '3236458'), - (612, 404, 'not_attending', '2021-03-01 13:42:29', '2025-12-17 19:47:51', 'NmLXxVam', '3236460'), - (612, 405, 'not_attending', '2021-07-20 15:03:58', '2025-12-17 19:47:40', 'NmLXxVam', '3236462'), - (612, 406, 'not_attending', '2021-03-15 11:29:29', '2025-12-17 19:47:44', 'NmLXxVam', '3236464'), - (612, 407, 'not_attending', '2021-04-09 00:10:38', '2025-12-17 19:47:44', 'NmLXxVam', '3236465'), - (612, 408, 'not_attending', '2021-02-03 00:04:44', '2025-12-17 19:47:50', 'NmLXxVam', '3236466'), - (612, 409, 'not_attending', '2020-11-22 04:41:06', '2025-12-17 19:47:54', 'NmLXxVam', '3236467'), - (612, 410, 'not_attending', '2020-11-02 01:11:26', '2025-12-17 19:47:54', 'NmLXxVam', '3236469'), - (612, 411, 'maybe', '2020-10-09 00:53:13', '2025-12-17 19:47:52', 'NmLXxVam', '3236596'), - (612, 413, 'maybe', '2020-10-09 00:53:48', '2025-12-17 19:47:52', 'NmLXxVam', '3236670'), - (612, 414, 'maybe', '2020-10-09 00:53:40', '2025-12-17 19:47:52', 'NmLXxVam', '3237277'), - (612, 415, 'maybe', '2020-10-09 00:53:18', '2025-12-17 19:47:52', 'NmLXxVam', '3238044'), - (612, 416, 'maybe', '2020-10-09 00:53:02', '2025-12-17 19:47:52', 'NmLXxVam', '3238073'), - (612, 417, 'maybe', '2020-10-09 00:53:22', '2025-12-17 19:47:52', 'NmLXxVam', '3238779'), - (612, 418, 'maybe', '2020-10-14 10:30:01', '2025-12-17 19:47:52', 'NmLXxVam', '3241728'), - (612, 419, 'maybe', '2020-10-13 22:54:08', '2025-12-17 19:47:52', 'NmLXxVam', '3242234'), - (612, 420, 'not_attending', '2020-10-14 10:29:50', '2025-12-17 19:47:52', 'NmLXxVam', '3245293'), - (612, 422, 'not_attending', '2020-10-25 16:52:05', '2025-12-17 19:47:53', 'NmLXxVam', '3245295'), - (612, 423, 'not_attending', '2020-10-25 16:51:51', '2025-12-17 19:47:53', 'NmLXxVam', '3245296'), - (612, 424, 'maybe', '2020-10-12 00:56:35', '2025-12-17 19:47:52', 'NmLXxVam', '3245751'), - (612, 426, 'maybe', '2020-10-14 12:16:11', '2025-12-17 19:47:52', 'NmLXxVam', '3250232'), - (612, 427, 'attending', '2020-10-14 12:36:21', '2025-12-17 19:47:53', 'NmLXxVam', '3250233'), - (612, 428, 'maybe', '2020-10-25 16:52:31', '2025-12-17 19:47:53', 'NmLXxVam', '3250332'), - (612, 429, 'attending', '2020-11-22 04:41:01', '2025-12-17 19:47:54', 'NmLXxVam', '3250523'), - (612, 431, 'not_attending', '2020-10-25 16:52:38', '2025-12-17 19:47:53', 'NmLXxVam', '3253225'), - (612, 432, 'maybe', '2020-10-25 16:51:54', '2025-12-17 19:47:53', 'NmLXxVam', '3254416'), - (612, 433, 'maybe', '2020-10-25 16:51:56', '2025-12-17 19:47:53', 'NmLXxVam', '3254417'), - (612, 434, 'maybe', '2020-11-02 01:11:29', '2025-12-17 19:47:53', 'NmLXxVam', '3254418'), - (612, 437, 'maybe', '2020-10-25 16:52:09', '2025-12-17 19:47:53', 'NmLXxVam', '3256160'), - (612, 438, 'not_attending', '2020-10-25 16:51:39', '2025-12-17 19:47:53', 'NmLXxVam', '3256163'), - (612, 439, 'not_attending', '2020-10-25 16:52:23', '2025-12-17 19:47:53', 'NmLXxVam', '3256164'), - (612, 440, 'attending', '2020-10-18 16:46:19', '2025-12-17 19:47:53', 'NmLXxVam', '3256168'), - (612, 441, 'attending', '2020-11-02 01:10:49', '2025-12-17 19:47:54', 'NmLXxVam', '3256169'), - (612, 442, 'attending', '2020-10-22 23:38:54', '2025-12-17 19:47:52', 'NmLXxVam', '3260345'), - (612, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLXxVam', '3263578'), - (612, 444, 'maybe', '2020-10-25 16:52:01', '2025-12-17 19:47:53', 'NmLXxVam', '3263745'), - (612, 445, 'maybe', '2020-11-02 01:11:35', '2025-12-17 19:47:54', 'NmLXxVam', '3266138'), - (612, 446, 'maybe', '2020-10-27 22:58:35', '2025-12-17 19:47:53', 'NmLXxVam', '3267163'), - (612, 448, 'attending', '2020-10-31 00:32:57', '2025-12-17 19:47:53', 'NmLXxVam', '3271831'), - (612, 449, 'maybe', '2020-11-02 01:11:32', '2025-12-17 19:47:53', 'NmLXxVam', '3272055'), - (612, 451, 'maybe', '2020-11-02 01:11:58', '2025-12-17 19:47:53', 'NmLXxVam', '3272186'), - (612, 452, 'maybe', '2020-11-22 04:41:17', '2025-12-17 19:47:54', 'NmLXxVam', '3272981'), - (612, 455, 'attending', '2020-11-06 01:06:44', '2025-12-17 19:47:53', 'NmLXxVam', '3276391'), - (612, 456, 'maybe', '2020-11-05 12:06:32', '2025-12-17 19:47:54', 'NmLXxVam', '3276428'), - (612, 457, 'maybe', '2020-11-06 01:06:48', '2025-12-17 19:47:53', 'NmLXxVam', '3279087'), - (612, 459, 'not_attending', '2020-11-08 12:27:04', '2025-12-17 19:47:54', 'NmLXxVam', '3281467'), - (612, 462, 'maybe', '2020-11-11 22:50:48', '2025-12-17 19:47:54', 'NmLXxVam', '3281470'), - (612, 464, 'maybe', '2020-11-21 02:06:52', '2025-12-17 19:47:54', 'NmLXxVam', '3281554'), - (612, 465, 'maybe', '2020-11-22 16:52:15', '2025-12-17 19:47:54', 'NmLXxVam', '3281555'), - (612, 466, 'attending', '2020-11-08 12:31:47', '2025-12-17 19:47:54', 'NmLXxVam', '3281829'), - (612, 468, 'attending', '2020-11-11 00:54:12', '2025-12-17 19:47:54', 'NmLXxVam', '3285413'), - (612, 469, 'attending', '2020-11-11 00:54:10', '2025-12-17 19:47:54', 'NmLXxVam', '3285414'), - (612, 470, 'not_attending', '2020-11-15 12:41:58', '2025-12-17 19:47:54', 'NmLXxVam', '3285443'), - (612, 475, 'maybe', '2020-11-22 16:52:05', '2025-12-17 19:47:54', 'NmLXxVam', '3286760'), - (612, 477, 'maybe', '2020-11-22 04:41:10', '2025-12-17 19:47:54', 'NmLXxVam', '3289559'), - (612, 480, 'not_attending', '2020-11-21 02:07:02', '2025-12-17 19:47:54', 'NmLXxVam', '3295313'), - (612, 481, 'maybe', '2020-11-21 02:06:41', '2025-12-17 19:47:54', 'NmLXxVam', '3297764'), - (612, 482, 'maybe', '2020-11-22 16:52:00', '2025-12-17 19:47:54', 'NmLXxVam', '3297769'), - (612, 483, 'not_attending', '2020-11-21 02:06:47', '2025-12-17 19:47:54', 'NmLXxVam', '3297791'), - (612, 484, 'not_attending', '2020-11-21 02:06:56', '2025-12-17 19:47:54', 'NmLXxVam', '3297792'), - (612, 486, 'maybe', '2020-11-23 15:34:18', '2025-12-17 19:47:54', 'NmLXxVam', '3300281'), - (612, 491, 'maybe', '2020-12-11 00:03:08', '2025-12-17 19:47:55', 'NmLXxVam', '3313533'), - (612, 493, 'not_attending', '2020-11-29 04:12:28', '2025-12-17 19:47:54', 'NmLXxVam', '3313856'), - (612, 495, 'attending', '2020-12-08 01:09:35', '2025-12-17 19:47:54', 'NmLXxVam', '3314009'), - (612, 496, 'maybe', '2020-12-11 00:03:12', '2025-12-17 19:47:54', 'NmLXxVam', '3314269'), - (612, 497, 'not_attending', '2020-12-15 02:37:14', '2025-12-17 19:47:55', 'NmLXxVam', '3314270'), - (612, 499, 'maybe', '2020-12-01 00:54:09', '2025-12-17 19:47:55', 'NmLXxVam', '3314909'), - (612, 500, 'maybe', '2020-12-14 04:18:35', '2025-12-17 19:47:55', 'NmLXxVam', '3314964'), - (612, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'NmLXxVam', '3323365'), - (612, 503, 'maybe', '2020-12-15 02:37:05', '2025-12-17 19:47:55', 'NmLXxVam', '3323366'), - (612, 504, 'maybe', '2020-12-15 02:37:11', '2025-12-17 19:47:55', 'NmLXxVam', '3323368'), - (612, 508, 'maybe', '2021-01-13 00:53:50', '2025-12-17 19:47:48', 'NmLXxVam', '3324231'), - (612, 509, 'maybe', '2021-01-02 13:45:16', '2025-12-17 19:47:49', 'NmLXxVam', '3324232'), - (612, 510, 'maybe', '2021-01-02 13:45:11', '2025-12-17 19:47:49', 'NmLXxVam', '3324233'), - (612, 511, 'maybe', '2020-12-15 02:37:16', '2025-12-17 19:47:55', 'NmLXxVam', '3325335'), - (612, 512, 'not_attending', '2020-12-15 02:37:01', '2025-12-17 19:47:55', 'NmLXxVam', '3325336'), - (612, 513, 'maybe', '2020-12-19 23:58:48', '2025-12-17 19:47:55', 'NmLXxVam', '3329383'), - (612, 516, 'attending', '2020-12-15 02:37:21', '2025-12-17 19:47:48', 'NmLXxVam', '3334530'), - (612, 517, 'maybe', '2021-01-02 13:44:46', '2025-12-17 19:47:48', 'NmLXxVam', '3337137'), - (612, 518, 'maybe', '2021-01-02 13:44:52', '2025-12-17 19:47:48', 'NmLXxVam', '3337138'), - (612, 526, 'attending', '2021-01-03 00:20:45', '2025-12-17 19:47:48', 'NmLXxVam', '3351539'), - (612, 528, 'maybe', '2021-01-02 13:45:00', '2025-12-17 19:47:48', 'NmLXxVam', '3363022'), - (612, 529, 'maybe', '2021-01-02 13:44:33', '2025-12-17 19:47:48', 'NmLXxVam', '3364568'), - (612, 530, 'not_attending', '2021-01-02 13:44:57', '2025-12-17 19:47:48', 'NmLXxVam', '3373923'), - (612, 531, 'not_attending', '2021-01-02 13:45:31', '2025-12-17 19:47:48', 'NmLXxVam', '3378210'), - (612, 532, 'maybe', '2021-01-09 00:54:21', '2025-12-17 19:47:48', 'NmLXxVam', '3381412'), - (612, 534, 'not_attending', '2021-01-09 00:54:37', '2025-12-17 19:47:48', 'NmLXxVam', '3384157'), - (612, 535, 'not_attending', '2021-01-09 00:54:40', '2025-12-17 19:47:48', 'NmLXxVam', '3384729'), - (612, 536, 'maybe', '2021-01-30 11:54:33', '2025-12-17 19:47:48', 'NmLXxVam', '3386848'), - (612, 537, 'maybe', '2021-01-09 00:54:34', '2025-12-17 19:47:48', 'NmLXxVam', '3387153'), - (612, 538, 'maybe', '2021-01-13 00:53:57', '2025-12-17 19:47:48', 'NmLXxVam', '3388151'), - (612, 539, 'maybe', '2021-01-13 00:54:00', '2025-12-17 19:47:48', 'NmLXxVam', '3389158'), - (612, 540, 'attending', '2021-01-07 01:23:13', '2025-12-17 19:47:48', 'NmLXxVam', '3389527'), - (612, 541, 'not_attending', '2021-01-09 00:54:25', '2025-12-17 19:47:48', 'NmLXxVam', '3391683'), - (612, 543, 'attending', '2021-01-12 02:00:13', '2025-12-17 19:47:48', 'NmLXxVam', '3396499'), - (612, 544, 'maybe', '2021-01-13 00:53:47', '2025-12-17 19:47:48', 'NmLXxVam', '3396500'), - (612, 545, 'maybe', '2021-01-19 16:02:51', '2025-12-17 19:47:49', 'NmLXxVam', '3396502'), - (612, 546, 'not_attending', '2021-01-20 02:16:12', '2025-12-17 19:47:49', 'NmLXxVam', '3396503'), - (612, 547, 'maybe', '2021-01-19 16:03:10', '2025-12-17 19:47:49', 'NmLXxVam', '3396504'), - (612, 548, 'attending', '2021-01-13 13:35:42', '2025-12-17 19:47:48', 'NmLXxVam', '3403650'), - (612, 549, 'maybe', '2021-01-16 19:18:49', '2025-12-17 19:47:49', 'NmLXxVam', '3406988'), - (612, 551, 'not_attending', '2021-01-20 01:13:21', '2025-12-17 19:47:49', 'NmLXxVam', '3407219'), - (612, 554, 'not_attending', '2021-01-20 02:16:19', '2025-12-17 19:47:49', 'NmLXxVam', '3408338'), - (612, 555, 'attending', '2021-01-19 04:12:41', '2025-12-17 19:47:49', 'NmLXxVam', '3416576'), - (612, 556, 'maybe', '2021-01-19 16:03:16', '2025-12-17 19:47:49', 'NmLXxVam', '3417170'), - (612, 557, 'attending', '2021-01-19 16:02:55', '2025-12-17 19:47:49', 'NmLXxVam', '3418748'), - (612, 558, 'not_attending', '2021-01-19 16:03:07', '2025-12-17 19:47:49', 'NmLXxVam', '3418925'), - (612, 559, 'maybe', '2021-01-28 02:40:19', '2025-12-17 19:47:49', 'NmLXxVam', '3421439'), - (612, 560, 'attending', '2021-01-20 02:16:09', '2025-12-17 19:47:49', 'NmLXxVam', '3421715'), - (612, 561, 'not_attending', '2021-01-23 20:09:21', '2025-12-17 19:47:49', 'NmLXxVam', '3421916'), - (612, 562, 'not_attending', '2021-01-23 20:09:23', '2025-12-17 19:47:49', 'NmLXxVam', '3424911'), - (612, 563, 'not_attending', '2021-01-26 00:04:45', '2025-12-17 19:47:49', 'NmLXxVam', '3425913'), - (612, 565, 'maybe', '2021-01-28 02:40:09', '2025-12-17 19:47:49', 'NmLXxVam', '3426083'), - (612, 566, 'maybe', '2021-01-28 02:40:04', '2025-12-17 19:47:49', 'NmLXxVam', '3427928'), - (612, 567, 'not_attending', '2021-01-28 02:40:01', '2025-12-17 19:47:50', 'NmLXxVam', '3428895'), - (612, 568, 'attending', '2021-01-28 02:39:53', '2025-12-17 19:47:50', 'NmLXxVam', '3430267'), - (612, 569, 'not_attending', '2021-01-28 02:40:11', '2025-12-17 19:47:49', 'NmLXxVam', '3432673'), - (612, 570, 'maybe', '2021-01-28 02:40:32', '2025-12-17 19:47:50', 'NmLXxVam', '3435538'), - (612, 571, 'maybe', '2021-02-03 00:03:31', '2025-12-17 19:47:50', 'NmLXxVam', '3435539'), - (612, 572, 'maybe', '2021-01-28 02:40:28', '2025-12-17 19:47:50', 'NmLXxVam', '3435540'), - (612, 573, 'maybe', '2021-02-03 00:04:52', '2025-12-17 19:47:50', 'NmLXxVam', '3435542'), - (612, 575, 'not_attending', '2021-01-28 02:39:59', '2025-12-17 19:47:50', 'NmLXxVam', '3437492'), - (612, 576, 'not_attending', '2021-01-28 02:40:23', '2025-12-17 19:47:50', 'NmLXxVam', '3438748'), - (612, 578, 'maybe', '2021-02-03 00:03:01', '2025-12-17 19:47:50', 'NmLXxVam', '3440043'), - (612, 579, 'not_attending', '2021-02-03 00:03:13', '2025-12-17 19:47:50', 'NmLXxVam', '3440978'), - (612, 583, 'attending', '2021-02-03 00:03:53', '2025-12-17 19:47:50', 'NmLXxVam', '3449144'), - (612, 584, 'maybe', '2021-02-03 00:03:06', '2025-12-17 19:47:50', 'NmLXxVam', '3449466'), - (612, 585, 'maybe', '2021-02-03 00:03:45', '2025-12-17 19:47:50', 'NmLXxVam', '3449468'), - (612, 586, 'not_attending', '2021-02-03 00:03:39', '2025-12-17 19:47:50', 'NmLXxVam', '3449469'), - (612, 587, 'maybe', '2021-02-03 00:04:00', '2025-12-17 19:47:50', 'NmLXxVam', '3449470'), - (612, 588, 'maybe', '2021-02-03 00:04:41', '2025-12-17 19:47:50', 'NmLXxVam', '3449471'), - (612, 589, 'maybe', '2021-02-03 00:04:48', '2025-12-17 19:47:50', 'NmLXxVam', '3449473'), - (612, 590, 'not_attending', '2021-02-11 23:46:07', '2025-12-17 19:47:50', 'NmLXxVam', '3459150'), - (612, 594, 'maybe', '2021-03-01 04:07:52', '2025-12-17 19:47:51', 'NmLXxVam', '3467759'), - (612, 595, 'maybe', '2021-03-01 04:08:26', '2025-12-17 19:47:51', 'NmLXxVam', '3467761'), - (612, 596, 'maybe', '2021-03-01 04:08:17', '2025-12-17 19:47:51', 'NmLXxVam', '3467762'), - (612, 597, 'not_attending', '2021-03-12 14:41:40', '2025-12-17 19:47:51', 'NmLXxVam', '3467764'), - (612, 602, 'attending', '2021-02-10 00:50:51', '2025-12-17 19:47:50', 'NmLXxVam', '3470303'), - (612, 603, 'attending', '2021-02-13 02:11:36', '2025-12-17 19:47:50', 'NmLXxVam', '3470304'), - (612, 604, 'attending', '2021-02-13 02:11:40', '2025-12-17 19:47:50', 'NmLXxVam', '3470305'), - (612, 605, 'maybe', '2021-02-14 22:41:36', '2025-12-17 19:47:50', 'NmLXxVam', '3470991'), - (612, 614, 'maybe', '2021-03-01 04:08:10', '2025-12-17 19:47:51', 'NmLXxVam', '3490042'), - (612, 621, 'attending', '2021-03-01 04:08:00', '2025-12-17 19:47:51', 'NmLXxVam', '3517815'), - (612, 622, 'attending', '2021-03-01 04:08:01', '2025-12-17 19:47:51', 'NmLXxVam', '3517816'), - (612, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'NmLXxVam', '3523941'), - (612, 625, 'not_attending', '2021-03-01 04:08:12', '2025-12-17 19:47:51', 'NmLXxVam', '3533296'), - (612, 626, 'not_attending', '2021-03-01 04:08:15', '2025-12-17 19:47:51', 'NmLXxVam', '3533298'), - (612, 627, 'not_attending', '2021-03-01 04:08:24', '2025-12-17 19:47:51', 'NmLXxVam', '3533303'), - (612, 628, 'maybe', '2021-03-01 13:42:35', '2025-12-17 19:47:51', 'NmLXxVam', '3533305'), - (612, 629, 'maybe', '2021-03-01 13:42:33', '2025-12-17 19:47:51', 'NmLXxVam', '3533307'), - (612, 630, 'maybe', '2021-03-01 04:07:47', '2025-12-17 19:47:51', 'NmLXxVam', '3533425'), - (612, 631, 'maybe', '2021-03-01 04:07:30', '2025-12-17 19:47:51', 'NmLXxVam', '3533850'), - (612, 632, 'not_attending', '2021-03-01 04:08:28', '2025-12-17 19:47:51', 'NmLXxVam', '3533853'), - (612, 633, 'maybe', '2021-03-01 13:42:25', '2025-12-17 19:47:44', 'NmLXxVam', '3534717'), - (612, 634, 'maybe', '2021-03-01 13:42:15', '2025-12-17 19:47:44', 'NmLXxVam', '3534718'), - (612, 635, 'maybe', '2021-03-03 12:45:54', '2025-12-17 19:47:44', 'NmLXxVam', '3534719'), - (612, 636, 'maybe', '2021-03-03 12:45:57', '2025-12-17 19:47:45', 'NmLXxVam', '3534720'), - (612, 637, 'attending', '2021-03-01 23:26:44', '2025-12-17 19:47:51', 'NmLXxVam', '3536411'), - (612, 638, 'maybe', '2021-03-02 01:40:51', '2025-12-17 19:47:44', 'NmLXxVam', '3536632'), - (612, 639, 'maybe', '2021-03-02 01:40:43', '2025-12-17 19:47:51', 'NmLXxVam', '3536656'), - (612, 641, 'attending', '2021-03-03 12:45:25', '2025-12-17 19:47:44', 'NmLXxVam', '3539916'), - (612, 642, 'attending', '2021-03-03 12:45:27', '2025-12-17 19:47:44', 'NmLXxVam', '3539917'), - (612, 643, 'attending', '2021-03-03 12:45:21', '2025-12-17 19:47:45', 'NmLXxVam', '3539918'), - (612, 644, 'attending', '2021-03-03 12:45:30', '2025-12-17 19:47:45', 'NmLXxVam', '3539919'), - (612, 645, 'attending', '2021-03-03 12:48:07', '2025-12-17 19:47:46', 'NmLXxVam', '3539920'), - (612, 646, 'attending', '2021-03-03 12:48:16', '2025-12-17 19:47:46', 'NmLXxVam', '3539921'), - (612, 647, 'attending', '2021-03-03 12:48:25', '2025-12-17 19:47:46', 'NmLXxVam', '3539922'), - (612, 648, 'attending', '2021-03-03 12:48:31', '2025-12-17 19:47:47', 'NmLXxVam', '3539923'), - (612, 649, 'not_attending', '2021-03-12 13:08:38', '2025-12-17 19:47:51', 'NmLXxVam', '3539927'), - (612, 650, 'maybe', '2021-03-15 11:29:24', '2025-12-17 19:47:44', 'NmLXxVam', '3539928'), - (612, 651, 'maybe', '2021-03-08 23:39:38', '2025-12-17 19:47:51', 'NmLXxVam', '3541045'), - (612, 652, 'attending', '2021-03-07 18:39:06', '2025-12-17 19:47:51', 'NmLXxVam', '3544466'), - (612, 653, 'not_attending', '2021-03-12 13:08:45', '2025-12-17 19:47:51', 'NmLXxVam', '3546917'), - (612, 654, 'not_attending', '2021-03-12 13:09:01', '2025-12-17 19:47:51', 'NmLXxVam', '3546990'), - (612, 655, 'not_attending', '2021-03-12 13:08:42', '2025-12-17 19:47:51', 'NmLXxVam', '3547129'), - (612, 656, 'not_attending', '2021-03-12 13:08:35', '2025-12-17 19:47:51', 'NmLXxVam', '3547130'), - (612, 657, 'not_attending', '2021-04-09 00:10:45', '2025-12-17 19:47:45', 'NmLXxVam', '3547132'), - (612, 659, 'not_attending', '2021-03-15 11:29:46', '2025-12-17 19:47:44', 'NmLXxVam', '3547135'), - (612, 660, 'not_attending', '2021-06-13 19:57:59', '2025-12-17 19:47:39', 'NmLXxVam', '3547136'), - (612, 661, 'not_attending', '2021-03-15 11:29:49', '2025-12-17 19:47:44', 'NmLXxVam', '3547137'), - (612, 662, 'not_attending', '2021-04-22 21:14:52', '2025-12-17 19:47:45', 'NmLXxVam', '3547138'), - (612, 663, 'not_attending', '2021-05-03 18:29:05', '2025-12-17 19:47:46', 'NmLXxVam', '3547140'), - (612, 664, 'not_attending', '2021-08-27 20:48:52', '2025-12-17 19:47:43', 'NmLXxVam', '3547142'), - (612, 665, 'not_attending', '2021-08-27 20:48:48', '2025-12-17 19:47:43', 'NmLXxVam', '3547143'), - (612, 667, 'not_attending', '2021-08-24 08:45:20', '2025-12-17 19:47:42', 'NmLXxVam', '3547145'), - (612, 668, 'not_attending', '2021-05-13 00:11:56', '2025-12-17 19:47:46', 'NmLXxVam', '3547146'), - (612, 669, 'not_attending', '2021-06-13 19:58:47', '2025-12-17 19:47:38', 'NmLXxVam', '3547147'), - (612, 670, 'not_attending', '2021-06-13 19:57:52', '2025-12-17 19:47:48', 'NmLXxVam', '3547148'), - (612, 672, 'not_attending', '2021-05-13 00:12:38', '2025-12-17 19:47:46', 'NmLXxVam', '3547150'), - (612, 673, 'not_attending', '2021-06-13 19:58:01', '2025-12-17 19:47:38', 'NmLXxVam', '3547151'), - (612, 674, 'not_attending', '2021-07-30 11:17:12', '2025-12-17 19:47:41', 'NmLXxVam', '3547152'), - (612, 675, 'not_attending', '2021-07-20 15:04:20', '2025-12-17 19:47:40', 'NmLXxVam', '3547153'), - (612, 676, 'not_attending', '2021-07-20 15:04:05', '2025-12-17 19:47:40', 'NmLXxVam', '3547154'), - (612, 678, 'not_attending', '2021-03-12 13:08:53', '2025-12-17 19:47:51', 'NmLXxVam', '3547158'), - (612, 679, 'attending', '2021-03-14 21:04:31', '2025-12-17 19:47:44', 'NmLXxVam', '3547168'), - (612, 680, 'maybe', '2021-03-08 23:39:44', '2025-12-17 19:47:51', 'NmLXxVam', '3547700'), - (612, 682, 'not_attending', '2021-03-15 11:28:55', '2025-12-17 19:47:51', 'NmLXxVam', '3548806'), - (612, 683, 'attending', '2021-03-12 14:41:36', '2025-12-17 19:47:51', 'NmLXxVam', '3548818'), - (612, 684, 'not_attending', '2021-03-12 14:41:38', '2025-12-17 19:47:51', 'NmLXxVam', '3549257'), - (612, 685, 'not_attending', '2021-04-09 00:10:18', '2025-12-17 19:47:44', 'NmLXxVam', '3551564'), - (612, 686, 'not_attending', '2021-03-12 13:08:25', '2025-12-17 19:47:51', 'NmLXxVam', '3553333'), - (612, 687, 'not_attending', '2021-03-12 13:08:54', '2025-12-17 19:47:51', 'NmLXxVam', '3553405'), - (612, 688, 'not_attending', '2021-03-12 13:08:26', '2025-12-17 19:47:51', 'NmLXxVam', '3553729'), - (612, 689, 'not_attending', '2021-03-15 11:29:20', '2025-12-17 19:47:44', 'NmLXxVam', '3555564'), - (612, 690, 'maybe', '2021-03-15 11:29:12', '2025-12-17 19:47:43', 'NmLXxVam', '3559954'), - (612, 695, 'maybe', '2021-03-18 11:35:56', '2025-12-17 19:47:51', 'NmLXxVam', '3567535'), - (612, 696, 'maybe', '2021-03-18 11:35:54', '2025-12-17 19:47:51', 'NmLXxVam', '3567536'), - (612, 697, 'maybe', '2021-03-19 11:08:43', '2025-12-17 19:47:44', 'NmLXxVam', '3567537'), - (612, 699, 'maybe', '2021-03-25 13:30:42', '2025-12-17 19:47:44', 'NmLXxVam', '3572241'), - (612, 700, 'not_attending', '2021-03-19 11:08:50', '2025-12-17 19:47:44', 'NmLXxVam', '3575725'), - (612, 702, 'maybe', '2021-03-18 11:35:51', '2025-12-17 19:47:51', 'NmLXxVam', '3577181'), - (612, 703, 'maybe', '2021-04-09 00:10:09', '2025-12-17 19:47:44', 'NmLXxVam', '3578388'), - (612, 704, 'maybe', '2021-03-19 11:08:47', '2025-12-17 19:47:44', 'NmLXxVam', '3581429'), - (612, 705, 'attending', '2021-03-19 11:08:34', '2025-12-17 19:47:44', 'NmLXxVam', '3581895'), - (612, 706, 'maybe', '2021-04-09 00:10:53', '2025-12-17 19:47:45', 'NmLXxVam', '3582734'), - (612, 707, 'maybe', '2021-04-09 00:09:52', '2025-12-17 19:47:46', 'NmLXxVam', '3583262'), - (612, 708, 'not_attending', '2021-03-25 13:30:31', '2025-12-17 19:47:44', 'NmLXxVam', '3587850'), - (612, 712, 'maybe', '2021-03-25 13:30:39', '2025-12-17 19:47:44', 'NmLXxVam', '3604056'), - (612, 715, 'not_attending', '2021-03-25 13:30:36', '2025-12-17 19:47:44', 'NmLXxVam', '3604146'), - (612, 717, 'maybe', '2021-03-25 13:30:25', '2025-12-17 19:47:44', 'NmLXxVam', '3619523'), - (612, 718, 'not_attending', '2021-03-26 11:50:47', '2025-12-17 19:47:44', 'NmLXxVam', '3626844'), - (612, 720, 'not_attending', '2021-03-30 14:32:41', '2025-12-17 19:47:44', 'NmLXxVam', '3643450'), - (612, 724, 'maybe', '2021-04-11 13:27:18', '2025-12-17 19:47:46', 'NmLXxVam', '3661369'), - (612, 725, 'maybe', '2021-05-13 00:13:14', '2025-12-17 19:47:47', 'NmLXxVam', '3661372'), - (612, 727, 'not_attending', '2021-06-13 19:57:30', '2025-12-17 19:47:38', 'NmLXxVam', '3661377'), - (612, 728, 'not_attending', '2021-04-09 00:10:21', '2025-12-17 19:47:44', 'NmLXxVam', '3668073'), - (612, 729, 'not_attending', '2021-04-22 21:15:21', '2025-12-17 19:47:46', 'NmLXxVam', '3668075'), - (612, 730, 'not_attending', '2021-05-03 18:28:52', '2025-12-17 19:47:46', 'NmLXxVam', '3668076'), - (612, 731, 'not_attending', '2021-04-04 15:10:52', '2025-12-17 19:47:44', 'NmLXxVam', '3674262'), - (612, 732, 'maybe', '2021-04-09 00:11:22', '2025-12-17 19:47:45', 'NmLXxVam', '3674268'), - (612, 735, 'attending', '2021-04-05 00:16:50', '2025-12-17 19:47:46', 'NmLXxVam', '3677402'), - (612, 738, 'not_attending', '2021-04-09 00:11:15', '2025-12-17 19:47:45', 'NmLXxVam', '3680615'), - (612, 739, 'maybe', '2021-05-03 18:29:01', '2025-12-17 19:47:46', 'NmLXxVam', '3680616'), - (612, 740, 'not_attending', '2021-04-22 21:15:33', '2025-12-17 19:47:46', 'NmLXxVam', '3680617'), - (612, 741, 'not_attending', '2021-05-13 00:12:45', '2025-12-17 19:47:46', 'NmLXxVam', '3680618'), - (612, 742, 'not_attending', '2021-06-13 19:57:48', '2025-12-17 19:47:48', 'NmLXxVam', '3680622'), - (612, 743, 'not_attending', '2021-06-13 19:58:38', '2025-12-17 19:47:38', 'NmLXxVam', '3680623'), - (612, 745, 'not_attending', '2021-06-13 19:58:24', '2025-12-17 19:47:38', 'NmLXxVam', '3680625'), - (612, 746, 'not_attending', '2021-06-13 19:58:21', '2025-12-17 19:47:39', 'NmLXxVam', '3680626'), - (612, 747, 'maybe', '2021-04-09 00:11:08', '2025-12-17 19:47:45', 'NmLXxVam', '3684754'), - (612, 749, 'not_attending', '2021-04-09 00:10:30', '2025-12-17 19:47:44', 'NmLXxVam', '3689769'), - (612, 750, 'maybe', '2021-04-09 00:10:35', '2025-12-17 19:47:44', 'NmLXxVam', '3689962'), - (612, 751, 'maybe', '2021-04-09 00:11:02', '2025-12-17 19:47:45', 'NmLXxVam', '3691364'), - (612, 752, 'maybe', '2021-04-14 02:04:26', '2025-12-17 19:47:44', 'NmLXxVam', '3699422'), - (612, 753, 'not_attending', '2021-04-14 02:04:31', '2025-12-17 19:47:45', 'NmLXxVam', '3701861'), - (612, 754, 'not_attending', '2021-04-22 21:14:39', '2025-12-17 19:47:45', 'NmLXxVam', '3701863'), - (612, 755, 'not_attending', '2021-04-22 21:14:47', '2025-12-17 19:47:45', 'NmLXxVam', '3701864'), - (612, 756, 'not_attending', '2021-04-22 21:15:02', '2025-12-17 19:47:46', 'NmLXxVam', '3704795'), - (612, 759, 'not_attending', '2021-04-22 21:14:40', '2025-12-17 19:47:45', 'NmLXxVam', '3713701'), - (612, 760, 'not_attending', '2021-05-14 12:16:01', '2025-12-17 19:47:46', 'NmLXxVam', '3716035'), - (612, 761, 'maybe', '2021-05-13 00:11:59', '2025-12-17 19:47:46', 'NmLXxVam', '3716041'), - (612, 763, 'not_attending', '2021-04-22 21:14:58', '2025-12-17 19:47:46', 'NmLXxVam', '3719122'), - (612, 764, 'not_attending', '2021-04-22 21:14:49', '2025-12-17 19:47:45', 'NmLXxVam', '3720507'), - (612, 765, 'not_attending', '2021-04-22 21:14:36', '2025-12-17 19:47:45', 'NmLXxVam', '3720508'), - (612, 766, 'maybe', '2021-05-13 00:11:33', '2025-12-17 19:47:46', 'NmLXxVam', '3721383'), - (612, 767, 'maybe', '2021-05-02 22:03:18', '2025-12-17 19:47:46', 'NmLXxVam', '3722476'), - (612, 768, 'not_attending', '2021-04-22 21:15:00', '2025-12-17 19:47:46', 'NmLXxVam', '3724124'), - (612, 769, 'not_attending', '2021-04-22 21:15:07', '2025-12-17 19:47:46', 'NmLXxVam', '3724127'), - (612, 770, 'not_attending', '2021-04-22 21:15:26', '2025-12-17 19:47:46', 'NmLXxVam', '3724559'), - (612, 771, 'not_attending', '2021-04-22 21:15:24', '2025-12-17 19:47:46', 'NmLXxVam', '3726420'), - (612, 772, 'not_attending', '2021-04-22 21:15:31', '2025-12-17 19:47:46', 'NmLXxVam', '3726421'), - (612, 773, 'not_attending', '2021-04-22 21:15:18', '2025-12-17 19:47:46', 'NmLXxVam', '3729399'), - (612, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLXxVam', '3730212'), - (612, 775, 'not_attending', '2021-04-22 21:14:34', '2025-12-17 19:47:45', 'NmLXxVam', '3731062'), - (612, 776, 'not_attending', '2021-04-22 21:15:04', '2025-12-17 19:47:46', 'NmLXxVam', '3733455'), - (612, 777, 'maybe', '2021-04-30 19:15:28', '2025-12-17 19:47:46', 'NmLXxVam', '3746248'), - (612, 779, 'not_attending', '2021-05-03 18:28:40', '2025-12-17 19:47:46', 'NmLXxVam', '3757118'), - (612, 781, 'not_attending', '2021-05-03 18:28:54', '2025-12-17 19:47:46', 'NmLXxVam', '3760130'), - (612, 782, 'not_attending', '2021-05-03 18:28:46', '2025-12-17 19:47:46', 'NmLXxVam', '3761843'), - (612, 783, 'maybe', '2021-05-02 15:12:52', '2025-12-17 19:47:46', 'NmLXxVam', '3767471'), - (612, 784, 'maybe', '2021-05-03 18:28:56', '2025-12-17 19:47:46', 'NmLXxVam', '3768775'), - (612, 785, 'maybe', '2021-05-16 01:45:11', '2025-12-17 19:47:46', 'NmLXxVam', '3779779'), - (612, 788, 'maybe', '2021-05-07 17:39:55', '2025-12-17 19:47:46', 'NmLXxVam', '3781975'), - (612, 789, 'maybe', '2021-05-13 00:12:56', '2025-12-17 19:47:47', 'NmLXxVam', '3785818'), - (612, 792, 'attending', '2021-05-07 21:07:46', '2025-12-17 19:47:46', 'NmLXxVam', '3793156'), - (612, 793, 'attending', '2021-05-13 00:12:48', '2025-12-17 19:47:47', 'NmLXxVam', '3793537'), - (612, 794, 'attending', '2021-05-13 00:12:46', '2025-12-17 19:47:47', 'NmLXxVam', '3793538'), - (612, 796, 'maybe', '2021-05-13 00:12:19', '2025-12-17 19:47:46', 'NmLXxVam', '3793862'), - (612, 797, 'maybe', '2021-05-13 00:13:06', '2025-12-17 19:47:47', 'NmLXxVam', '3796195'), - (612, 798, 'not_attending', '2021-05-13 00:12:27', '2025-12-17 19:47:46', 'NmLXxVam', '3796262'), - (612, 801, 'maybe', '2021-05-13 00:11:41', '2025-12-17 19:47:46', 'NmLXxVam', '3800910'), - (612, 802, 'maybe', '2021-05-13 00:11:37', '2025-12-17 19:47:46', 'NmLXxVam', '3803310'), - (612, 803, 'not_attending', '2021-05-13 00:12:30', '2025-12-17 19:47:46', 'NmLXxVam', '3804665'), - (612, 804, 'not_attending', '2021-05-13 00:13:11', '2025-12-17 19:47:47', 'NmLXxVam', '3804775'), - (612, 805, 'not_attending', '2021-06-13 19:57:28', '2025-12-17 19:47:47', 'NmLXxVam', '3804777'), - (612, 806, 'not_attending', '2021-05-13 00:11:53', '2025-12-17 19:47:46', 'NmLXxVam', '3806392'), - (612, 809, 'maybe', '2021-05-21 21:38:06', '2025-12-17 19:47:46', 'NmLXxVam', '3807964'), - (612, 817, 'not_attending', '2021-05-21 21:38:00', '2025-12-17 19:47:46', 'NmLXxVam', '3832498'), - (612, 822, 'attending', '2021-06-06 02:51:13', '2025-12-17 19:47:47', 'NmLXxVam', '3969986'), - (612, 823, 'not_attending', '2021-06-12 10:22:19', '2025-12-17 19:47:48', 'NmLXxVam', '3974109'), - (612, 826, 'maybe', '2021-06-16 14:54:36', '2025-12-17 19:47:48', 'NmLXxVam', '3975310'), - (612, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLXxVam', '3975311'), - (612, 828, 'attending', '2021-06-12 22:30:47', '2025-12-17 19:47:47', 'NmLXxVam', '3975312'), - (612, 837, 'attending', '2021-06-13 19:57:42', '2025-12-17 19:47:48', 'NmLXxVam', '3992545'), - (612, 838, 'maybe', '2021-06-06 17:32:40', '2025-12-17 19:47:47', 'NmLXxVam', '3994992'), - (612, 841, 'not_attending', '2021-06-13 19:57:35', '2025-12-17 19:47:48', 'NmLXxVam', '4007434'), - (612, 844, 'not_attending', '2021-06-13 19:58:34', '2025-12-17 19:47:38', 'NmLXxVam', '4014338'), - (612, 845, 'not_attending', '2021-06-13 19:58:29', '2025-12-17 19:47:38', 'NmLXxVam', '4015717'), - (612, 846, 'not_attending', '2021-06-13 19:58:12', '2025-12-17 19:47:39', 'NmLXxVam', '4015718'), - (612, 848, 'not_attending', '2021-07-20 15:03:53', '2025-12-17 19:47:40', 'NmLXxVam', '4015720'), - (612, 849, 'not_attending', '2021-07-20 15:04:16', '2025-12-17 19:47:40', 'NmLXxVam', '4015721'), - (612, 850, 'maybe', '2021-08-24 08:44:57', '2025-12-17 19:47:42', 'NmLXxVam', '4015722'), - (612, 852, 'not_attending', '2021-08-27 20:48:45', '2025-12-17 19:47:43', 'NmLXxVam', '4015724'), - (612, 854, 'not_attending', '2021-08-27 20:48:59', '2025-12-17 19:47:43', 'NmLXxVam', '4015726'), - (612, 855, 'not_attending', '2021-07-30 11:17:29', '2025-12-17 19:47:41', 'NmLXxVam', '4015729'), - (612, 856, 'not_attending', '2021-08-27 20:49:21', '2025-12-17 19:47:43', 'NmLXxVam', '4015730'), - (612, 859, 'not_attending', '2021-06-16 14:43:50', '2025-12-17 19:47:48', 'NmLXxVam', '4015993'), - (612, 860, 'not_attending', '2021-07-20 15:03:51', '2025-12-17 19:47:40', 'NmLXxVam', '4015994'), - (612, 862, 'not_attending', '2021-09-03 20:26:52', '2025-12-17 19:47:43', 'NmLXxVam', '4015996'), - (612, 866, 'not_attending', '2021-06-13 19:57:57', '2025-12-17 19:47:38', 'NmLXxVam', '4020424'), - (612, 867, 'attending', '2021-06-17 15:44:45', '2025-12-17 19:47:38', 'NmLXxVam', '4021848'), - (612, 868, 'not_attending', '2021-06-13 19:57:49', '2025-12-17 19:47:48', 'NmLXxVam', '4022012'), - (612, 869, 'maybe', '2021-06-17 15:44:58', '2025-12-17 19:47:38', 'NmLXxVam', '4136744'), - (612, 870, 'maybe', '2021-07-03 18:28:11', '2025-12-17 19:47:39', 'NmLXxVam', '4136937'), - (612, 871, 'attending', '2021-07-10 22:24:40', '2025-12-17 19:47:39', 'NmLXxVam', '4136938'), - (612, 872, 'maybe', '2021-06-21 21:55:05', '2025-12-17 19:47:40', 'NmLXxVam', '4136947'), - (612, 873, 'not_attending', '2021-06-17 15:44:22', '2025-12-17 19:47:48', 'NmLXxVam', '4138297'), - (612, 874, 'not_attending', '2021-06-17 15:44:39', '2025-12-17 19:47:38', 'NmLXxVam', '4139815'), - (612, 876, 'not_attending', '2021-06-17 15:44:34', '2025-12-17 19:47:38', 'NmLXxVam', '4139926'), - (612, 877, 'not_attending', '2021-06-16 14:43:47', '2025-12-17 19:47:48', 'NmLXxVam', '4140575'), - (612, 878, 'not_attending', '2021-06-17 15:44:27', '2025-12-17 19:47:38', 'NmLXxVam', '4143331'), - (612, 879, 'not_attending', '2021-06-17 15:44:50', '2025-12-17 19:47:38', 'NmLXxVam', '4147806'), - (612, 884, 'attending', '2021-07-17 10:07:51', '2025-12-17 19:47:42', 'NmLXxVam', '4210314'), - (612, 887, 'maybe', '2021-07-11 18:06:22', '2025-12-17 19:47:39', 'NmLXxVam', '4225444'), - (612, 893, 'not_attending', '2021-07-20 15:04:14', '2025-12-17 19:47:40', 'NmLXxVam', '4229420'), - (612, 894, 'not_attending', '2021-07-20 15:03:47', '2025-12-17 19:47:40', 'NmLXxVam', '4229423'), - (612, 897, 'maybe', '2021-06-27 23:25:57', '2025-12-17 19:47:38', 'NmLXxVam', '4232132'), - (612, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLXxVam', '4239259'), - (612, 900, 'not_attending', '2021-07-10 22:24:49', '2025-12-17 19:47:40', 'NmLXxVam', '4240316'), - (612, 901, 'attending', '2021-07-10 22:24:46', '2025-12-17 19:47:40', 'NmLXxVam', '4240317'), - (612, 902, 'not_attending', '2021-07-30 11:17:14', '2025-12-17 19:47:41', 'NmLXxVam', '4240318'), - (612, 903, 'attending', '2021-08-14 12:19:28', '2025-12-17 19:47:42', 'NmLXxVam', '4240320'), - (612, 905, 'maybe', '2021-07-10 20:09:10', '2025-12-17 19:47:39', 'NmLXxVam', '4250163'), - (612, 914, 'not_attending', '2021-07-20 15:03:42', '2025-12-17 19:47:39', 'NmLXxVam', '4273767'), - (612, 915, 'not_attending', '2021-07-20 15:03:45', '2025-12-17 19:47:39', 'NmLXxVam', '4273770'), - (612, 916, 'not_attending', '2021-07-20 15:03:56', '2025-12-17 19:47:40', 'NmLXxVam', '4273772'), - (612, 919, 'not_attending', '2021-07-14 10:37:12', '2025-12-17 19:47:39', 'NmLXxVam', '4275957'), - (612, 920, 'not_attending', '2021-07-20 15:04:10', '2025-12-17 19:47:40', 'NmLXxVam', '4277819'), - (612, 922, 'not_attending', '2021-07-20 15:04:04', '2025-12-17 19:47:40', 'NmLXxVam', '4280811'), - (612, 923, 'not_attending', '2021-07-20 15:04:02', '2025-12-17 19:47:40', 'NmLXxVam', '4292773'), - (612, 929, 'not_attending', '2021-07-30 11:17:21', '2025-12-17 19:47:41', 'NmLXxVam', '4297223'), - (612, 930, 'not_attending', '2021-07-30 11:17:37', '2025-12-17 19:47:41', 'NmLXxVam', '4300787'), - (612, 932, 'attending', '2021-08-22 18:30:23', '2025-12-17 19:47:42', 'NmLXxVam', '4301664'), - (612, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'NmLXxVam', '4301723'), - (612, 934, 'not_attending', '2021-07-30 11:17:28', '2025-12-17 19:47:40', 'NmLXxVam', '4302093'), - (612, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLXxVam', '4304151'), - (612, 939, 'not_attending', '2021-07-30 11:17:35', '2025-12-17 19:47:40', 'NmLXxVam', '4308354'), - (612, 940, 'maybe', '2021-07-30 11:16:56', '2025-12-17 19:47:40', 'NmLXxVam', '4309049'), - (612, 942, 'not_attending', '2021-07-30 11:17:03', '2025-12-17 19:47:40', 'NmLXxVam', '4310297'), - (612, 943, 'not_attending', '2021-07-30 11:17:09', '2025-12-17 19:47:41', 'NmLXxVam', '4310979'), - (612, 946, 'not_attending', '2021-07-30 11:17:32', '2025-12-17 19:47:40', 'NmLXxVam', '4314835'), - (612, 947, 'not_attending', '2021-07-30 11:17:17', '2025-12-17 19:47:41', 'NmLXxVam', '4315713'), - (612, 951, 'not_attending', '2021-08-24 08:45:29', '2025-12-17 19:47:43', 'NmLXxVam', '4315731'), - (612, 952, 'not_attending', '2021-07-30 11:17:20', '2025-12-17 19:47:41', 'NmLXxVam', '4318286'), - (612, 961, 'not_attending', '2021-08-14 12:19:18', '2025-12-17 19:47:42', 'NmLXxVam', '4345519'), - (612, 971, 'maybe', '2021-08-27 20:49:02', '2025-12-17 19:47:43', 'NmLXxVam', '4356801'), - (612, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'NmLXxVam', '4358025'), - (612, 973, 'not_attending', '2021-08-15 21:36:25', '2025-12-17 19:47:42', 'NmLXxVam', '4366186'), - (612, 974, 'maybe', '2021-08-24 08:45:17', '2025-12-17 19:47:42', 'NmLXxVam', '4366187'), - (612, 981, 'not_attending', '2021-08-27 20:48:24', '2025-12-17 19:47:42', 'NmLXxVam', '4387305'), - (612, 982, 'not_attending', '2021-08-24 08:45:22', '2025-12-17 19:47:42', 'NmLXxVam', '4389739'), - (612, 987, 'maybe', '2021-08-27 20:48:42', '2025-12-17 19:47:43', 'NmLXxVam', '4402634'), - (612, 988, 'not_attending', '2021-08-24 08:45:09', '2025-12-17 19:47:42', 'NmLXxVam', '4402823'), - (612, 989, 'not_attending', '2021-08-27 20:48:55', '2025-12-17 19:47:43', 'NmLXxVam', '4414282'), - (612, 990, 'attending', '2021-09-03 20:26:16', '2025-12-17 19:47:43', 'NmLXxVam', '4420735'), - (612, 991, 'attending', '2021-09-11 22:35:29', '2025-12-17 19:47:43', 'NmLXxVam', '4420738'), - (612, 992, 'attending', '2021-09-11 22:42:09', '2025-12-17 19:47:33', 'NmLXxVam', '4420739'), - (612, 993, 'attending', '2021-09-11 22:42:03', '2025-12-17 19:47:34', 'NmLXxVam', '4420741'), - (612, 994, 'not_attending', '2021-09-11 22:42:21', '2025-12-17 19:47:34', 'NmLXxVam', '4420742'), - (612, 995, 'maybe', '2021-10-09 19:50:08', '2025-12-17 19:47:34', 'NmLXxVam', '4420744'), - (612, 996, 'maybe', '2021-09-11 22:43:12', '2025-12-17 19:47:35', 'NmLXxVam', '4420747'), - (612, 997, 'attending', '2021-09-11 22:42:34', '2025-12-17 19:47:35', 'NmLXxVam', '4420748'), - (612, 998, 'maybe', '2021-10-30 20:48:36', '2025-12-17 19:47:36', 'NmLXxVam', '4420749'), - (612, 1003, 'not_attending', '2021-09-03 20:26:30', '2025-12-17 19:47:43', 'NmLXxVam', '4438802'), - (612, 1004, 'not_attending', '2021-09-03 20:26:48', '2025-12-17 19:47:43', 'NmLXxVam', '4438804'), - (612, 1005, 'not_attending', '2021-09-03 20:27:01', '2025-12-17 19:47:34', 'NmLXxVam', '4438807'), - (612, 1008, 'not_attending', '2021-10-09 19:50:23', '2025-12-17 19:47:35', 'NmLXxVam', '4438810'), - (612, 1009, 'not_attending', '2021-10-09 19:50:35', '2025-12-17 19:47:34', 'NmLXxVam', '4438811'), - (612, 1011, 'not_attending', '2021-10-09 19:50:18', '2025-12-17 19:47:36', 'NmLXxVam', '4438814'), - (612, 1013, 'not_attending', '2021-09-03 20:26:35', '2025-12-17 19:47:43', 'NmLXxVam', '4438817'), - (612, 1014, 'not_attending', '2021-09-03 20:26:32', '2025-12-17 19:47:43', 'NmLXxVam', '4439233'), - (612, 1015, 'not_attending', '2021-09-03 20:26:56', '2025-12-17 19:47:43', 'NmLXxVam', '4440800'), - (612, 1016, 'not_attending', '2021-09-03 20:26:39', '2025-12-17 19:47:43', 'NmLXxVam', '4441271'), - (612, 1017, 'not_attending', '2021-09-03 20:26:28', '2025-12-17 19:47:43', 'NmLXxVam', '4441822'), - (612, 1021, 'not_attending', '2021-09-11 10:22:49', '2025-12-17 19:47:34', 'NmLXxVam', '4451803'), - (612, 1023, 'not_attending', '2021-09-11 10:22:32', '2025-12-17 19:47:43', 'NmLXxVam', '4461883'), - (612, 1027, 'not_attending', '2021-09-24 22:55:27', '2025-12-17 19:47:34', 'NmLXxVam', '4472982'), - (612, 1067, 'not_attending', '2021-09-24 22:55:30', '2025-12-17 19:47:34', 'NmLXxVam', '4508342'), - (612, 1077, 'maybe', '2021-10-09 19:50:30', '2025-12-17 19:47:34', 'NmLXxVam', '4540903'), - (612, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLXxVam', '4568602'), - (612, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLXxVam', '4572153'), - (612, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmLXxVam', '4585962'), - (612, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'NmLXxVam', '4596356'), - (612, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLXxVam', '4598860'), - (612, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLXxVam', '4598861'), - (612, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmLXxVam', '4602797'), - (612, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmLXxVam', '4637896'), - (612, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLXxVam', '4642994'), - (612, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmLXxVam', '4642995'), - (612, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLXxVam', '4642996'), - (612, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLXxVam', '4642997'), - (612, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmLXxVam', '4645687'), - (612, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmLXxVam', '4645698'), - (612, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLXxVam', '4645704'), - (612, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLXxVam', '4645705'), - (612, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLXxVam', '6045684'), - (612, 3307, 'maybe', '2025-12-18 01:12:22', '2025-12-18 01:12:22', NULL, NULL), - (614, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYznaq04', '6045684'), - (615, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm6o67OgA', '4736503'), - (615, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm6o67OgA', '4736504'), - (615, 1212, 'not_attending', '2022-03-02 03:45:16', '2025-12-17 19:47:32', 'm6o67OgA', '4780759'), - (615, 1213, 'not_attending', '2022-03-02 03:46:08', '2025-12-17 19:47:32', 'm6o67OgA', '4780760'), - (615, 1251, 'not_attending', '2022-03-12 02:09:07', '2025-12-17 19:47:33', 'm6o67OgA', '5128466'), - (615, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6o67OgA', '5132533'), - (615, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm6o67OgA', '5186582'), - (615, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6o67OgA', '5186583'), - (615, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6o67OgA', '5186585'), - (615, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6o67OgA', '5190437'), - (615, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'm6o67OgA', '5196763'), - (615, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'm6o67OgA', '5199460'), - (615, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6o67OgA', '5215989'), - (615, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6o67OgA', '6045684'), - (616, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '2d2PNVYA', '3468125'), - (616, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '2d2PNVYA', '3470303'), - (616, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '2d2PNVYA', '3470305'), - (616, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '2d2PNVYA', '3470991'), - (616, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '2d2PNVYA', '3517815'), - (616, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '2d2PNVYA', '3517816'), - (616, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '2d2PNVYA', '3523941'), - (616, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '2d2PNVYA', '3533850'), - (616, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '2d2PNVYA', '3536632'), - (616, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '2d2PNVYA', '3536656'), - (616, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '2d2PNVYA', '3539916'), - (616, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '2d2PNVYA', '3539917'), - (616, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '2d2PNVYA', '3539918'), - (616, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '2d2PNVYA', '3539919'), - (616, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '2d2PNVYA', '3539920'), - (616, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '2d2PNVYA', '3539921'), - (616, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '2d2PNVYA', '3539922'), - (616, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '2d2PNVYA', '3539923'), - (616, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '2d2PNVYA', '3539927'), - (616, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '2d2PNVYA', '3582734'), - (616, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '2d2PNVYA', '3619523'), - (616, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2PNVYA', '6045684'), - (617, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd8DaZ3gd', '5269930'), - (617, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd8DaZ3gd', '5271448'), - (617, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'd8DaZ3gd', '5271449'), - (617, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd8DaZ3gd', '5276469'), - (617, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd8DaZ3gd', '5278159'), - (617, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd8DaZ3gd', '5363695'), - (617, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd8DaZ3gd', '5365960'), - (617, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd8DaZ3gd', '5368973'), - (617, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd8DaZ3gd', '5378247'), - (617, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd8DaZ3gd', '5389605'), - (617, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd8DaZ3gd', '5397265'), - (617, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8DaZ3gd', '6045684'), - (618, 1515, 'maybe', '2022-08-29 05:39:33', '2025-12-17 19:47:21', 'dN7oeeXm', '5441128'), - (618, 1518, 'not_attending', '2022-08-31 16:27:27', '2025-12-17 19:47:24', 'dN7oeeXm', '5441131'), - (618, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dN7oeeXm', '5441132'), - (618, 1558, 'attending', '2022-09-14 22:52:49', '2025-12-17 19:47:10', 'dN7oeeXm', '5458730'), - (618, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dN7oeeXm', '5505059'), - (618, 1614, 'maybe', '2022-08-29 05:39:21', '2025-12-17 19:47:23', 'dN7oeeXm', '5508371'), - (618, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dN7oeeXm', '5509055'), - (618, 1624, 'attending', '2022-08-26 01:17:35', '2025-12-17 19:47:24', 'dN7oeeXm', '5513985'), - (618, 1629, 'maybe', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dN7oeeXm', '5522550'), - (618, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dN7oeeXm', '5534683'), - (618, 1634, 'attending', '2022-08-30 00:56:27', '2025-12-17 19:47:23', 'dN7oeeXm', '5536950'), - (618, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dN7oeeXm', '5537735'), - (618, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dN7oeeXm', '5540859'), - (618, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dN7oeeXm', '5546619'), - (618, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dN7oeeXm', '5555245'), - (618, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dN7oeeXm', '5557747'), - (618, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dN7oeeXm', '5560255'), - (618, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dN7oeeXm', '5562906'), - (618, 1668, 'attending', '2022-09-30 21:06:58', '2025-12-17 19:47:12', 'dN7oeeXm', '5563222'), - (618, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dN7oeeXm', '5600604'), - (618, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dN7oeeXm', '5605544'), - (618, 1699, 'not_attending', '2022-09-26 12:18:55', '2025-12-17 19:47:12', 'dN7oeeXm', '5606737'), - (618, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dN7oeeXm', '5630960'), - (618, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dN7oeeXm', '5630961'), - (618, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dN7oeeXm', '5630962'), - (618, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dN7oeeXm', '5630966'), - (618, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dN7oeeXm', '5630967'), - (618, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dN7oeeXm', '5630968'), - (618, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dN7oeeXm', '5635406'), - (618, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dN7oeeXm', '5638765'), - (618, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dN7oeeXm', '5640097'), - (618, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dN7oeeXm', '5640843'), - (618, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dN7oeeXm', '5641521'), - (618, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dN7oeeXm', '5642818'), - (618, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dN7oeeXm', '5652395'), - (618, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dN7oeeXm', '5670445'), - (618, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dN7oeeXm', '5671637'), - (618, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dN7oeeXm', '5672329'), - (618, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dN7oeeXm', '5674057'), - (618, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dN7oeeXm', '5674060'), - (618, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dN7oeeXm', '5677461'), - (618, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dN7oeeXm', '5698046'), - (618, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dN7oeeXm', '5699760'), - (618, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dN7oeeXm', '5741601'), - (618, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dN7oeeXm', '5763458'), - (618, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dN7oeeXm', '5774172'), - (618, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dN7oeeXm', '5818247'), - (618, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dN7oeeXm', '5819471'), - (618, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dN7oeeXm', '5827739'), - (618, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dN7oeeXm', '5844306'), - (618, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dN7oeeXm', '5850159'), - (618, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dN7oeeXm', '5858999'), - (618, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dN7oeeXm', '5871984'), - (618, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dN7oeeXm', '5876354'), - (618, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dN7oeeXm', '5880939'), - (618, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dN7oeeXm', '5887890'), - (618, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dN7oeeXm', '5888598'), - (618, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dN7oeeXm', '5893260'), - (618, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN7oeeXm', '6045684'), - (619, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Argl5r84', '4356801'), - (619, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'Argl5r84', '4420738'), - (619, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'Argl5r84', '4420739'), - (619, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'Argl5r84', '4420741'), - (619, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'Argl5r84', '4420744'), - (619, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'Argl5r84', '4420747'), - (619, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Argl5r84', '4461883'), - (619, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Argl5r84', '4508342'), - (619, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Argl5r84', '4568602'), - (619, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Argl5r84', '4572153'), - (619, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'Argl5r84', '4585962'), - (619, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Argl5r84', '4596356'), - (619, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Argl5r84', '4598860'), - (619, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Argl5r84', '4598861'), - (619, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Argl5r84', '4602797'), - (619, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Argl5r84', '4637896'), - (619, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Argl5r84', '4642994'), - (619, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Argl5r84', '4642995'), - (619, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Argl5r84', '4642996'), - (619, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Argl5r84', '4642997'), - (619, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Argl5r84', '4645687'), - (619, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Argl5r84', '4645698'), - (619, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Argl5r84', '4645704'), - (619, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Argl5r84', '4645705'), - (619, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Argl5r84', '4668385'), - (619, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Argl5r84', '6045684'), - (620, 1723, 'maybe', '2022-11-05 20:58:16', '2025-12-17 19:47:15', '4voNO8Od', '5630962'), - (620, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4voNO8Od', '5630966'), - (620, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4voNO8Od', '5630967'), - (620, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4voNO8Od', '5630968'), - (620, 1727, 'attending', '2022-12-03 19:21:11', '2025-12-17 19:47:16', '4voNO8Od', '5630969'), - (620, 1744, 'maybe', '2022-11-22 22:48:38', '2025-12-17 19:47:16', '4voNO8Od', '5642818'), - (620, 1761, 'attending', '2022-11-18 21:37:58', '2025-12-17 19:47:16', '4voNO8Od', '5670434'), - (620, 1762, 'maybe', '2022-12-02 02:58:23', '2025-12-17 19:47:16', '4voNO8Od', '5670445'), - (620, 1767, 'attending', '2022-11-09 00:36:18', '2025-12-17 19:47:15', '4voNO8Od', '5674060'), - (620, 1768, 'maybe', '2022-11-17 04:18:49', '2025-12-17 19:47:16', '4voNO8Od', '5674062'), - (620, 1783, 'not_attending', '2022-11-14 21:39:18', '2025-12-17 19:47:16', '4voNO8Od', '5698621'), - (620, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', '4voNO8Od', '5699760'), - (620, 1785, 'attending', '2022-11-14 21:39:01', '2025-12-17 19:47:15', '4voNO8Od', '5702414'), - (620, 1786, 'not_attending', '2022-11-08 23:40:43', '2025-12-17 19:47:15', '4voNO8Od', '5727232'), - (620, 1789, 'attending', '2022-11-09 00:36:11', '2025-12-17 19:47:15', '4voNO8Od', '5727274'), - (620, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4voNO8Od', '5741601'), - (620, 1797, 'maybe', '2022-12-09 22:33:54', '2025-12-17 19:47:17', '4voNO8Od', '5757486'), - (620, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4voNO8Od', '5763458'), - (620, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4voNO8Od', '5774172'), - (620, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4voNO8Od', '5818247'), - (620, 1834, 'attending', '2022-12-10 05:12:44', '2025-12-17 19:47:17', '4voNO8Od', '5819470'), - (620, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4voNO8Od', '5819471'), - (620, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4voNO8Od', '5827739'), - (620, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4voNO8Od', '5844306'), - (620, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4voNO8Od', '5850159'), - (620, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4voNO8Od', '5858999'), - (620, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4voNO8Od', '5871984'), - (620, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4voNO8Od', '5876354'), - (620, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4voNO8Od', '5880939'), - (620, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4voNO8Od', '5880940'), - (620, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4voNO8Od', '5880942'), - (620, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4voNO8Od', '5880943'), - (620, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4voNO8Od', '5887890'), - (620, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4voNO8Od', '5888598'), - (620, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4voNO8Od', '5893260'), - (620, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4voNO8Od', '5899826'), - (620, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4voNO8Od', '5900199'), - (620, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4voNO8Od', '5900200'), - (620, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4voNO8Od', '5900202'), - (620, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4voNO8Od', '5900203'), - (620, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4voNO8Od', '5901108'), - (620, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4voNO8Od', '5901126'), - (620, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4voNO8Od', '5909655'), - (620, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4voNO8Od', '5910522'), - (620, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4voNO8Od', '5910526'), - (620, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4voNO8Od', '5910528'), - (620, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4voNO8Od', '5916219'), - (620, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4voNO8Od', '5936234'), - (620, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4voNO8Od', '5958351'), - (620, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4voNO8Od', '5959751'), - (620, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4voNO8Od', '5959755'), - (620, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4voNO8Od', '5960055'), - (620, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4voNO8Od', '5961684'), - (620, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4voNO8Od', '5962132'), - (620, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '4voNO8Od', '5962133'), - (620, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4voNO8Od', '5962134'), - (620, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4voNO8Od', '5962317'), - (620, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4voNO8Od', '5962318'), - (620, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', '4voNO8Od', '5965933'), - (620, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4voNO8Od', '5967014'), - (620, 1957, 'attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4voNO8Od', '5972815'), - (620, 1960, 'attending', '2023-03-11 04:50:48', '2025-12-17 19:47:09', '4voNO8Od', '5973267'), - (620, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4voNO8Od', '5974016'), - (620, 1962, 'attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '4voNO8Od', '5975052'), - (620, 1963, 'attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '4voNO8Od', '5975054'), - (620, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4voNO8Od', '5981515'), - (620, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4voNO8Od', '5993516'), - (620, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4voNO8Od', '5998939'), - (620, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4voNO8Od', '6028191'), - (620, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4voNO8Od', '6040066'), - (620, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4voNO8Od', '6042717'), - (620, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4voNO8Od', '6044838'), - (620, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4voNO8Od', '6044839'), - (620, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4voNO8Od', '6045684'), - (620, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4voNO8Od', '6050104'), - (620, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4voNO8Od', '6053195'), - (620, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4voNO8Od', '6053198'), - (620, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4voNO8Od', '6056085'), - (620, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4voNO8Od', '6056916'), - (620, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4voNO8Od', '6059290'), - (620, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4voNO8Od', '6060328'), - (620, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4voNO8Od', '6061037'), - (620, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4voNO8Od', '6061039'), - (620, 2020, 'not_attending', '2023-04-14 17:17:55', '2025-12-17 19:46:59', '4voNO8Od', '6065813'), - (620, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4voNO8Od', '6067245'), - (620, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4voNO8Od', '6068094'), - (620, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4voNO8Od', '6068252'), - (620, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4voNO8Od', '6068253'), - (620, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4voNO8Od', '6068254'), - (620, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4voNO8Od', '6068280'), - (620, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4voNO8Od', '6069093'), - (620, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4voNO8Od', '6072528'), - (620, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4voNO8Od', '6075556'), - (620, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4voNO8Od', '6079840'), - (620, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4voNO8Od', '6083398'), - (620, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4voNO8Od', '6093504'), - (620, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4voNO8Od', '6097414'), - (620, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4voNO8Od', '6097442'), - (620, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4voNO8Od', '6097684'), - (620, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4voNO8Od', '6098762'), - (620, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4voNO8Od', '6101361'), - (620, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4voNO8Od', '6101362'), - (620, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4voNO8Od', '6107314'), - (620, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4voNO8Od', '6120034'), - (620, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4voNO8Od', '6136733'), - (620, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4voNO8Od', '6137989'), - (620, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4voNO8Od', '6150864'), - (620, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4voNO8Od', '6155491'), - (620, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4voNO8Od', '6164417'), - (620, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4voNO8Od', '6166388'), - (620, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4voNO8Od', '6176439'), - (620, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4voNO8Od', '6182410'), - (620, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4voNO8Od', '6185812'), - (620, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4voNO8Od', '6187651'), - (620, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4voNO8Od', '6187963'), - (620, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4voNO8Od', '6187964'), - (620, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4voNO8Od', '6187966'), - (620, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4voNO8Od', '6187967'), - (620, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4voNO8Od', '6187969'), - (620, 2140, 'maybe', '2023-07-12 09:30:02', '2025-12-17 19:46:52', '4voNO8Od', '6188074'), - (620, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4voNO8Od', '6334878'), - (620, 2147, 'maybe', '2023-07-12 09:27:31', '2025-12-17 19:46:52', '4voNO8Od', '6335666'), - (620, 2152, 'attending', '2023-07-12 09:30:17', '2025-12-17 19:46:52', '4voNO8Od', '6337021'), - (620, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4voNO8Od', '6337236'), - (620, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4voNO8Od', '6337970'), - (620, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4voNO8Od', '6338308'), - (620, 2157, 'not_attending', '2023-07-12 21:55:11', '2025-12-17 19:46:52', '4voNO8Od', '6338342'), - (620, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4voNO8Od', '6341710'), - (620, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4voNO8Od', '6342044'), - (620, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4voNO8Od', '6342298'), - (620, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4voNO8Od', '6343294'), - (620, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4voNO8Od', '6347034'), - (620, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4voNO8Od', '6347056'), - (620, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4voNO8Od', '6353830'), - (620, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4voNO8Od', '6353831'), - (620, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4voNO8Od', '6357867'), - (620, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4voNO8Od', '6358652'), - (620, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '4voNO8Od', '6358668'), - (620, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '4voNO8Od', '6358669'), - (620, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4voNO8Od', '6361709'), - (620, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4voNO8Od', '6361710'), - (620, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4voNO8Od', '6361711'), - (620, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4voNO8Od', '6361712'), - (620, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4voNO8Od', '6361713'), - (620, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4voNO8Od', '6382573'), - (620, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4voNO8Od', '6388604'), - (620, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4voNO8Od', '6394629'), - (620, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4voNO8Od', '6394631'), - (620, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4voNO8Od', '6440863'), - (620, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4voNO8Od', '6445440'), - (620, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4voNO8Od', '6453951'), - (620, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4voNO8Od', '6461696'), - (620, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4voNO8Od', '6462129'), - (620, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4voNO8Od', '6463218'), - (620, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4voNO8Od', '6472181'), - (620, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4voNO8Od', '6482693'), - (620, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4voNO8Od', '6484200'), - (620, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4voNO8Od', '6484680'), - (620, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4voNO8Od', '6507741'), - (620, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4voNO8Od', '6514659'), - (620, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4voNO8Od', '6514660'), - (620, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4voNO8Od', '6519103'), - (620, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4voNO8Od', '6535681'), - (620, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4voNO8Od', '6584747'), - (620, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4voNO8Od', '6587097'), - (620, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4voNO8Od', '6609022'), - (620, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4voNO8Od', '6632757'), - (620, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4voNO8Od', '6644187'), - (620, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4voNO8Od', '6648951'), - (620, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4voNO8Od', '6648952'), - (620, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4voNO8Od', '6655401'), - (620, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4voNO8Od', '6661585'), - (620, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4voNO8Od', '6661588'), - (620, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4voNO8Od', '6661589'), - (620, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4voNO8Od', '6699906'), - (620, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4voNO8Od', '6701109'), - (620, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '4voNO8Od', '6704561'), - (620, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4voNO8Od', '6705219'), - (620, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '4voNO8Od', '6708410'), - (620, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4voNO8Od', '6710153'), - (620, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4voNO8Od', '6711552'), - (620, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '4voNO8Od', '6711553'), - (621, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd3RkK1e4', '4356801'), - (621, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3RkK1e4', '6045684'), - (622, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', 'AYzbJjw4', '4420739'), - (622, 1005, 'attending', '2021-09-15 23:23:56', '2025-12-17 19:47:34', 'AYzbJjw4', '4438807'), - (622, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYzbJjw4', '6045684'), - (623, 2286, 'maybe', '2023-12-01 21:53:00', '2025-12-17 19:46:48', '409Nn7yd', '6460930'), - (623, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '409Nn7yd', '6472181'), - (623, 2303, 'attending', '2023-10-28 03:11:39', '2025-12-17 19:46:47', '409Nn7yd', '6482691'), - (623, 2304, 'attending', '2023-10-31 23:03:12', '2025-12-17 19:46:47', '409Nn7yd', '6482693'), - (623, 2306, 'attending', '2023-11-14 18:44:10', '2025-12-17 19:46:47', '409Nn7yd', '6484200'), - (623, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '409Nn7yd', '6484680'), - (623, 2310, 'attending', '2023-11-11 18:16:11', '2025-12-17 19:46:47', '409Nn7yd', '6487709'), - (623, 2311, 'attending', '2023-10-30 23:16:20', '2025-12-17 19:46:47', '409Nn7yd', '6487725'), - (623, 2315, 'attending', '2023-10-29 20:24:25', '2025-12-17 19:46:47', '409Nn7yd', '6493666'), - (623, 2316, 'maybe', '2023-10-29 20:33:51', '2025-12-17 19:46:48', '409Nn7yd', '6493668'), - (623, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '409Nn7yd', '6507741'), - (623, 2320, 'attending', '2023-10-31 03:31:29', '2025-12-17 19:46:47', '409Nn7yd', '6508647'), - (623, 2321, 'attending', '2023-10-30 21:42:12', '2025-12-17 19:46:47', '409Nn7yd', '6512075'), - (623, 2322, 'attending', '2023-11-14 18:44:27', '2025-12-17 19:46:48', '409Nn7yd', '6514659'), - (623, 2323, 'attending', '2023-11-19 18:01:53', '2025-12-17 19:46:48', '409Nn7yd', '6514660'), - (623, 2324, 'attending', '2023-12-09 16:34:31', '2025-12-17 19:46:49', '409Nn7yd', '6514662'), - (623, 2325, 'attending', '2023-12-16 22:41:57', '2025-12-17 19:46:36', '409Nn7yd', '6514663'), - (623, 2330, 'attending', '2023-11-12 21:04:12', '2025-12-17 19:46:47', '409Nn7yd', '6517941'), - (623, 2331, 'attending', '2023-11-12 16:28:07', '2025-12-17 19:46:47', '409Nn7yd', '6518640'), - (623, 2332, 'attending', '2023-11-03 20:51:27', '2025-12-17 19:46:47', '409Nn7yd', '6518655'), - (623, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '409Nn7yd', '6519103'), - (623, 2337, 'maybe', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '409Nn7yd', '6535681'), - (623, 2338, 'maybe', '2023-11-21 02:45:09', '2025-12-17 19:46:48', '409Nn7yd', '6538868'), - (623, 2339, 'attending', '2023-11-09 20:15:00', '2025-12-17 19:46:47', '409Nn7yd', '6539128'), - (623, 2340, 'maybe', '2023-11-10 16:27:53', '2025-12-17 19:46:48', '409Nn7yd', '6540279'), - (623, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '409Nn7yd', '6584747'), - (623, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '409Nn7yd', '6587097'), - (623, 2354, 'attending', '2023-11-28 01:30:32', '2025-12-17 19:46:48', '409Nn7yd', '6591742'), - (623, 2358, 'maybe', '2023-11-30 08:57:55', '2025-12-17 19:46:48', '409Nn7yd', '6595321'), - (623, 2360, 'attending', '2023-12-01 21:05:12', '2025-12-17 19:46:49', '409Nn7yd', '6599341'), - (623, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '409Nn7yd', '6609022'), - (623, 2364, 'maybe', '2023-12-08 07:18:30', '2025-12-17 19:46:49', '409Nn7yd', '6613011'), - (623, 2365, 'attending', '2023-12-17 09:09:35', '2025-12-17 19:46:37', '409Nn7yd', '6613093'), - (623, 2372, 'attending', '2023-12-17 09:09:08', '2025-12-17 19:46:36', '409Nn7yd', '6628243'), - (623, 2373, 'attending', '2023-12-28 16:45:39', '2025-12-17 19:46:38', '409Nn7yd', '6632678'), - (623, 2374, 'maybe', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '409Nn7yd', '6632757'), - (623, 2375, 'attending', '2023-12-20 06:06:14', '2025-12-17 19:46:36', '409Nn7yd', '6634548'), - (623, 2378, 'attending', '2023-12-30 16:38:24', '2025-12-17 19:46:37', '409Nn7yd', '6644006'), - (623, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '409Nn7yd', '6644187'), - (623, 2380, 'attending', '2023-12-31 16:31:47', '2025-12-17 19:46:37', '409Nn7yd', '6645105'), - (623, 2381, 'attending', '2024-01-01 06:21:37', '2025-12-17 19:46:37', '409Nn7yd', '6646398'), - (623, 2385, 'attending', '2024-01-07 07:57:43', '2025-12-17 19:46:37', '409Nn7yd', '6648943'), - (623, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '409Nn7yd', '6648951'), - (623, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '409Nn7yd', '6648952'), - (623, 2388, 'maybe', '2024-01-07 00:44:10', '2025-12-17 19:46:37', '409Nn7yd', '6649244'), - (623, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '409Nn7yd', '6655401'), - (623, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '409Nn7yd', '6661585'), - (623, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '409Nn7yd', '6661588'), - (623, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '409Nn7yd', '6661589'), - (623, 2405, 'maybe', '2024-01-18 16:05:07', '2025-12-17 19:46:38', '409Nn7yd', '6667332'), - (623, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '409Nn7yd', '6699906'), - (623, 2408, 'attending', '2024-01-24 04:08:53', '2025-12-17 19:46:40', '409Nn7yd', '6699907'), - (623, 2409, 'attending', '2024-02-04 00:00:48', '2025-12-17 19:46:41', '409Nn7yd', '6699909'), - (623, 2410, 'attending', '2024-02-05 19:50:15', '2025-12-17 19:46:41', '409Nn7yd', '6699911'), - (623, 2411, 'attending', '2024-02-12 17:15:59', '2025-12-17 19:46:41', '409Nn7yd', '6699913'), - (623, 2415, 'maybe', '2024-01-18 19:26:00', '2025-12-17 19:46:40', '409Nn7yd', '6701001'), - (623, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '409Nn7yd', '6701109'), - (623, 2420, 'attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '409Nn7yd', '6704561'), - (623, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '409Nn7yd', '6705219'), - (623, 2426, 'not_attending', '2024-01-24 00:30:45', '2025-12-17 19:46:40', '409Nn7yd', '6705569'), - (623, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '409Nn7yd', '6708410'), - (623, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '409Nn7yd', '6710153'), - (623, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '409Nn7yd', '6711552'), - (623, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '409Nn7yd', '6711553'), - (623, 2431, 'attending', '2024-02-01 16:23:40', '2025-12-17 19:46:41', '409Nn7yd', '6712394'), - (623, 2435, 'maybe', '2024-01-28 16:34:07', '2025-12-17 19:46:41', '409Nn7yd', '6721547'), - (623, 2436, 'maybe', '2024-01-27 21:44:04', '2025-12-17 19:46:40', '409Nn7yd', '6722687'), - (623, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '409Nn7yd', '6722688'), - (623, 2438, 'maybe', '2024-02-05 19:50:30', '2025-12-17 19:46:41', '409Nn7yd', '6730201'), - (623, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '409Nn7yd', '6730620'), - (623, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '409Nn7yd', '6730642'), - (623, 2441, 'not_attending', '2024-02-01 02:16:09', '2025-12-17 19:46:41', '409Nn7yd', '6731263'), - (623, 2442, 'maybe', '2024-02-02 16:07:39', '2025-12-17 19:46:41', '409Nn7yd', '6732647'), - (623, 2444, 'maybe', '2024-02-09 20:51:25', '2025-12-17 19:46:41', '409Nn7yd', '6734367'), - (623, 2446, 'maybe', '2024-03-01 16:32:47', '2025-12-17 19:46:43', '409Nn7yd', '6734369'), - (623, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '409Nn7yd', '6740364'), - (623, 2456, 'maybe', '2024-02-09 20:51:11', '2025-12-17 19:46:41', '409Nn7yd', '6742202'), - (623, 2457, 'maybe', '2024-02-08 18:26:27', '2025-12-17 19:46:41', '409Nn7yd', '6742221'), - (623, 2458, 'maybe', '2024-02-09 20:51:31', '2025-12-17 19:46:41', '409Nn7yd', '6743731'), - (623, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '409Nn7yd', '6743829'), - (623, 2462, 'not_attending', '2024-02-13 01:09:33', '2025-12-17 19:46:41', '409Nn7yd', '6744701'), - (623, 2463, 'attending', '2024-02-11 06:09:28', '2025-12-17 19:46:41', '409Nn7yd', '6746394'), - (623, 2466, 'not_attending', '2024-02-14 22:12:21', '2025-12-17 19:46:41', '409Nn7yd', '7026777'), - (623, 2467, 'attending', '2024-02-20 07:00:56', '2025-12-17 19:46:43', '409Nn7yd', '7029987'), - (623, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '409Nn7yd', '7030380'), - (623, 2469, 'attending', '2024-02-17 04:19:13', '2025-12-17 19:46:42', '409Nn7yd', '7030632'), - (623, 2471, 'maybe', '2024-02-18 21:30:13', '2025-12-17 19:46:42', '409Nn7yd', '7032425'), - (623, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '409Nn7yd', '7033677'), - (623, 2473, 'not_attending', '2024-02-20 07:01:38', '2025-12-17 19:46:43', '409Nn7yd', '7033724'), - (623, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '409Nn7yd', '7035415'), - (623, 2476, 'not_attending', '2024-02-27 05:20:16', '2025-12-17 19:46:43', '409Nn7yd', '7035691'), - (623, 2479, 'maybe', '2024-02-21 04:22:53', '2025-12-17 19:46:43', '409Nn7yd', '7037009'), - (623, 2481, 'maybe', '2024-02-25 05:48:13', '2025-12-17 19:46:43', '409Nn7yd', '7044715'), - (623, 2485, 'maybe', '2024-02-27 00:54:20', '2025-12-17 19:46:43', '409Nn7yd', '7048111'), - (623, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '409Nn7yd', '7050318'), - (623, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '409Nn7yd', '7050319'), - (623, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '409Nn7yd', '7050322'), - (623, 2495, 'maybe', '2024-03-04 20:38:17', '2025-12-17 19:46:32', '409Nn7yd', '7052982'), - (623, 2499, 'maybe', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '409Nn7yd', '7057804'), - (623, 2502, 'maybe', '2024-03-18 15:34:07', '2025-12-17 19:46:33', '409Nn7yd', '7061202'), - (623, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '409Nn7yd', '7072824'), - (623, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '409Nn7yd', '7074348'), - (623, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '409Nn7yd', '7074364'), - (623, 2538, 'attending', '2024-03-23 08:04:53', '2025-12-17 19:46:33', '409Nn7yd', '7085485'), - (623, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '409Nn7yd', '7089267'), - (623, 2545, 'maybe', '2024-03-23 08:03:41', '2025-12-17 19:46:33', '409Nn7yd', '7096942'), - (623, 2546, 'maybe', '2024-03-23 08:04:22', '2025-12-17 19:46:33', '409Nn7yd', '7096944'), - (623, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '409Nn7yd', '7098747'), - (623, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '409Nn7yd', '7113468'), - (623, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '409Nn7yd', '7114856'), - (623, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '409Nn7yd', '7114951'), - (623, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '409Nn7yd', '7114955'), - (623, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '409Nn7yd', '7114956'), - (623, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '409Nn7yd', '7114957'), - (623, 2560, 'maybe', '2024-04-09 15:16:02', '2025-12-17 19:46:33', '409Nn7yd', '7130086'), - (623, 2566, 'maybe', '2024-04-15 23:54:26', '2025-12-17 19:46:34', '409Nn7yd', '7140664'), - (623, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '409Nn7yd', '7153615'), - (623, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '409Nn7yd', '7159484'), - (623, 2585, 'maybe', '2024-04-21 15:19:33', '2025-12-17 19:46:34', '409Nn7yd', '7175828'), - (623, 2590, 'maybe', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '409Nn7yd', '7178446'), - (623, 2591, 'maybe', '2024-04-19 14:27:53', '2025-12-17 19:46:34', '409Nn7yd', '7180957'), - (623, 2593, 'maybe', '2024-04-19 15:10:32', '2025-12-17 19:46:34', '409Nn7yd', '7181003'), - (623, 2594, 'not_attending', '2024-04-20 04:25:37', '2025-12-17 19:46:34', '409Nn7yd', '7182117'), - (623, 2598, 'maybe', '2024-04-22 23:47:38', '2025-12-17 19:46:34', '409Nn7yd', '7186731'), - (623, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '409Nn7yd', '7220467'), - (623, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '409Nn7yd', '7240354'), - (623, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '409Nn7yd', '7251633'), - (623, 2618, 'maybe', '2024-05-05 16:31:11', '2025-12-17 19:46:35', '409Nn7yd', '7251685'), - (623, 2619, 'maybe', '2024-05-05 16:31:28', '2025-12-17 19:46:35', '409Nn7yd', '7252965'), - (623, 2627, 'attending', '2024-05-25 20:44:19', '2025-12-17 19:46:35', '409Nn7yd', '7264724'), - (623, 2628, 'attending', '2024-06-01 17:19:22', '2025-12-17 19:46:36', '409Nn7yd', '7264725'), - (623, 2629, 'attending', '2024-06-03 00:54:56', '2025-12-17 19:46:28', '409Nn7yd', '7264726'), - (623, 2637, 'maybe', '2024-05-26 06:26:53', '2025-12-17 19:46:35', '409Nn7yd', '7270324'), - (623, 2638, 'attending', '2024-05-15 21:42:13', '2025-12-17 19:46:35', '409Nn7yd', '7273117'), - (623, 2647, 'attending', '2024-06-03 00:55:06', '2025-12-17 19:46:28', '409Nn7yd', '7282057'), - (623, 2655, 'maybe', '2024-05-26 22:13:02', '2025-12-17 19:46:35', '409Nn7yd', '7291225'), - (623, 2658, 'maybe', '2024-06-02 16:42:59', '2025-12-17 19:46:36', '409Nn7yd', '7298846'), - (623, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '409Nn7yd', '7302674'), - (623, 2668, 'maybe', '2024-06-07 19:33:55', '2025-12-17 19:46:36', '409Nn7yd', '7308821'), - (623, 2674, 'maybe', '2024-07-07 06:30:16', '2025-12-17 19:46:29', '409Nn7yd', '7319480'), - (623, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '409Nn7yd', '7324073'), - (623, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '409Nn7yd', '7324074'), - (623, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '409Nn7yd', '7324075'), - (623, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '409Nn7yd', '7324078'), - (623, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '409Nn7yd', '7324082'), - (623, 2709, 'attending', '2024-06-14 01:15:11', '2025-12-17 19:46:29', '409Nn7yd', '7325107'), - (623, 2710, 'attending', '2024-06-14 00:48:21', '2025-12-17 19:46:28', '409Nn7yd', '7325108'), - (623, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '409Nn7yd', '7331457'), - (623, 2738, 'maybe', '2024-06-30 17:09:31', '2025-12-17 19:46:29', '409Nn7yd', '7344085'), - (623, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '409Nn7yd', '7363643'), - (623, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '409Nn7yd', '7368606'), - (623, 2781, 'maybe', '2024-07-26 00:18:55', '2025-12-17 19:46:30', '409Nn7yd', '7373194'), - (623, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '409Nn7yd', '7397462'), - (623, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '409Nn7yd', '7424275'), - (623, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '409Nn7yd', '7424276'), - (623, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '409Nn7yd', '7432751'), - (623, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '409Nn7yd', '7432752'), - (623, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '409Nn7yd', '7432753'), - (623, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '409Nn7yd', '7432754'), - (623, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '409Nn7yd', '7432755'), - (623, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '409Nn7yd', '7432756'), - (623, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '409Nn7yd', '7432758'), - (623, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '409Nn7yd', '7432759'), - (623, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '409Nn7yd', '7433834'), - (623, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '409Nn7yd', '7470197'), - (623, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '409Nn7yd', '7685613'), - (623, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '409Nn7yd', '7688194'), - (623, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '409Nn7yd', '7688196'), - (623, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '409Nn7yd', '7688289'), - (623, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '409Nn7yd', '7692763'), - (623, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '409Nn7yd', '7697552'), - (623, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '409Nn7yd', '7699878'), - (623, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '409Nn7yd', '7704043'), - (623, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '409Nn7yd', '7712467'), - (623, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '409Nn7yd', '7713585'), - (623, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '409Nn7yd', '7713586'), - (623, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '409Nn7yd', '7738518'), - (623, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '409Nn7yd', '7750636'), - (623, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '409Nn7yd', '7796540'), - (623, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '409Nn7yd', '7796541'), - (623, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '409Nn7yd', '7796542'), - (624, 54, 'attending', '2020-08-09 00:17:08', '2025-12-17 19:47:56', 'oAQJrkN4', '2975279'), - (624, 196, 'attending', '2020-08-12 21:05:06', '2025-12-17 19:47:56', 'oAQJrkN4', '3087265'), - (624, 197, 'attending', '2020-08-22 22:41:27', '2025-12-17 19:47:56', 'oAQJrkN4', '3087266'), - (624, 198, 'attending', '2020-08-27 02:42:13', '2025-12-17 19:47:56', 'oAQJrkN4', '3087267'), - (624, 199, 'attending', '2020-09-05 19:09:24', '2025-12-17 19:47:56', 'oAQJrkN4', '3087268'), - (624, 223, 'attending', '2020-09-08 23:00:36', '2025-12-17 19:47:56', 'oAQJrkN4', '3129980'), - (624, 255, 'attending', '2021-03-16 02:43:55', '2025-12-17 19:47:43', 'oAQJrkN4', '3149486'), - (624, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'oAQJrkN4', '3162006'), - (624, 277, 'not_attending', '2020-08-06 21:32:06', '2025-12-17 19:47:56', 'oAQJrkN4', '3163442'), - (624, 293, 'attending', '2020-08-20 00:05:36', '2025-12-17 19:47:56', 'oAQJrkN4', '3172832'), - (624, 294, 'attending', '2020-08-23 02:18:48', '2025-12-17 19:47:56', 'oAQJrkN4', '3172833'), - (624, 295, 'not_attending', '2020-09-02 23:22:15', '2025-12-17 19:47:56', 'oAQJrkN4', '3172834'), - (624, 296, 'not_attending', '2020-09-10 02:34:14', '2025-12-17 19:47:56', 'oAQJrkN4', '3172876'), - (624, 308, 'not_attending', '2020-09-03 23:00:43', '2025-12-17 19:47:56', 'oAQJrkN4', '3183341'), - (624, 311, 'attending', '2020-09-13 16:41:16', '2025-12-17 19:47:56', 'oAQJrkN4', '3186057'), - (624, 312, 'maybe', '2020-09-02 03:16:24', '2025-12-17 19:47:56', 'oAQJrkN4', '3187795'), - (624, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'oAQJrkN4', '3191735'), - (624, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'oAQJrkN4', '3200209'), - (624, 339, 'attending', '2020-09-08 22:56:02', '2025-12-17 19:47:56', 'oAQJrkN4', '3204469'), - (624, 340, 'attending', '2020-09-18 22:52:45', '2025-12-17 19:47:56', 'oAQJrkN4', '3204470'), - (624, 342, 'not_attending', '2020-10-01 02:11:37', '2025-12-17 19:47:52', 'oAQJrkN4', '3204472'), - (624, 344, 'attending', '2020-11-02 00:16:06', '2025-12-17 19:47:53', 'oAQJrkN4', '3206906'), - (624, 352, 'not_attending', '2020-09-14 13:19:52', '2025-12-17 19:47:56', 'oAQJrkN4', '3210514'), - (624, 355, 'attending', '2020-09-15 02:49:53', '2025-12-17 19:47:56', 'oAQJrkN4', '3212571'), - (624, 356, 'attending', '2020-09-15 02:50:04', '2025-12-17 19:47:51', 'oAQJrkN4', '3212572'), - (624, 357, 'attending', '2020-09-15 02:50:10', '2025-12-17 19:47:52', 'oAQJrkN4', '3212573'), - (624, 362, 'not_attending', '2020-09-26 15:56:31', '2025-12-17 19:47:52', 'oAQJrkN4', '3214207'), - (624, 363, 'not_attending', '2020-09-27 19:57:26', '2025-12-17 19:47:52', 'oAQJrkN4', '3217037'), - (624, 365, 'not_attending', '2020-09-20 15:50:39', '2025-12-17 19:47:52', 'oAQJrkN4', '3218510'), - (624, 385, 'attending', '2020-10-03 22:05:39', '2025-12-17 19:47:52', 'oAQJrkN4', '3228698'), - (624, 386, 'attending', '2020-10-09 01:53:12', '2025-12-17 19:47:52', 'oAQJrkN4', '3228699'), - (624, 387, 'not_attending', '2020-10-17 14:30:42', '2025-12-17 19:47:52', 'oAQJrkN4', '3228700'), - (624, 388, 'maybe', '2020-10-24 19:07:22', '2025-12-17 19:47:52', 'oAQJrkN4', '3228701'), - (624, 420, 'attending', '2020-10-15 20:26:17', '2025-12-17 19:47:52', 'oAQJrkN4', '3245293'), - (624, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'oAQJrkN4', '3245751'), - (624, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'oAQJrkN4', '3250232'), - (624, 432, 'not_attending', '2020-11-03 03:10:30', '2025-12-17 19:47:53', 'oAQJrkN4', '3254416'), - (624, 438, 'attending', '2020-10-28 13:46:45', '2025-12-17 19:47:53', 'oAQJrkN4', '3256163'), - (624, 440, 'not_attending', '2020-11-07 23:20:48', '2025-12-17 19:47:53', 'oAQJrkN4', '3256168'), - (624, 441, 'attending', '2020-11-14 22:13:30', '2025-12-17 19:47:54', 'oAQJrkN4', '3256169'), - (624, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'oAQJrkN4', '3263578'), - (624, 445, 'not_attending', '2020-11-01 16:47:13', '2025-12-17 19:47:54', 'oAQJrkN4', '3266138'), - (624, 452, 'attending', '2020-11-29 00:17:29', '2025-12-17 19:47:54', 'oAQJrkN4', '3272981'), - (624, 456, 'not_attending', '2020-11-07 17:01:22', '2025-12-17 19:47:54', 'oAQJrkN4', '3276428'), - (624, 459, 'not_attending', '2020-11-15 20:50:50', '2025-12-17 19:47:54', 'oAQJrkN4', '3281467'), - (624, 462, 'not_attending', '2020-11-11 00:30:47', '2025-12-17 19:47:54', 'oAQJrkN4', '3281470'), - (624, 466, 'not_attending', '2020-11-11 00:30:51', '2025-12-17 19:47:54', 'oAQJrkN4', '3281829'), - (624, 468, 'not_attending', '2020-11-21 22:54:17', '2025-12-17 19:47:54', 'oAQJrkN4', '3285413'), - (624, 469, 'not_attending', '2020-11-29 00:15:13', '2025-12-17 19:47:54', 'oAQJrkN4', '3285414'), - (624, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'oAQJrkN4', '3297764'), - (624, 488, 'not_attending', '2020-12-01 23:56:31', '2025-12-17 19:47:54', 'oAQJrkN4', '3312757'), - (624, 493, 'not_attending', '2020-12-05 19:03:24', '2025-12-17 19:47:54', 'oAQJrkN4', '3313856'), - (624, 499, 'not_attending', '2020-12-11 23:37:27', '2025-12-17 19:47:55', 'oAQJrkN4', '3314909'), - (624, 500, 'not_attending', '2020-12-19 00:34:20', '2025-12-17 19:47:55', 'oAQJrkN4', '3314964'), - (624, 502, 'not_attending', '2020-12-12 20:09:53', '2025-12-17 19:47:55', 'oAQJrkN4', '3323365'), - (624, 513, 'not_attending', '2020-12-19 16:09:33', '2025-12-17 19:47:55', 'oAQJrkN4', '3329383'), - (624, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'oAQJrkN4', '3351539'), - (624, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'oAQJrkN4', '3386848'), - (624, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'oAQJrkN4', '3389527'), - (624, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'oAQJrkN4', '3396499'), - (624, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'oAQJrkN4', '3403650'), - (624, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'oAQJrkN4', '3406988'), - (624, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'oAQJrkN4', '3416576'), - (624, 558, 'not_attending', '2021-01-19 05:20:52', '2025-12-17 19:47:49', 'oAQJrkN4', '3418925'), - (624, 622, 'not_attending', '2021-03-10 05:00:46', '2025-12-17 19:47:51', 'oAQJrkN4', '3517816'), - (624, 641, 'not_attending', '2021-04-03 19:01:42', '2025-12-17 19:47:44', 'oAQJrkN4', '3539916'), - (624, 642, 'not_attending', '2021-04-10 22:45:57', '2025-12-17 19:47:44', 'oAQJrkN4', '3539917'), - (624, 643, 'attending', '2021-04-14 13:43:33', '2025-12-17 19:47:45', 'oAQJrkN4', '3539918'), - (624, 644, 'attending', '2021-04-24 22:18:45', '2025-12-17 19:47:45', 'oAQJrkN4', '3539919'), - (624, 645, 'not_attending', '2021-05-08 18:58:59', '2025-12-17 19:47:46', 'oAQJrkN4', '3539920'), - (624, 646, 'attending', '2021-05-14 15:12:57', '2025-12-17 19:47:46', 'oAQJrkN4', '3539921'), - (624, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'oAQJrkN4', '3539922'), - (624, 648, 'not_attending', '2021-05-27 00:34:38', '2025-12-17 19:47:47', 'oAQJrkN4', '3539923'), - (624, 649, 'not_attending', '2021-03-19 13:23:36', '2025-12-17 19:47:51', 'oAQJrkN4', '3539927'), - (624, 650, 'not_attending', '2021-03-27 15:30:52', '2025-12-17 19:47:44', 'oAQJrkN4', '3539928'), - (624, 700, 'not_attending', '2021-03-30 18:20:38', '2025-12-17 19:47:44', 'oAQJrkN4', '3575725'), - (624, 706, 'not_attending', '2021-03-23 05:48:25', '2025-12-17 19:47:45', 'oAQJrkN4', '3582734'), - (624, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'oAQJrkN4', '3583262'), - (624, 711, 'attending', '2021-04-01 15:11:58', '2025-12-17 19:47:44', 'oAQJrkN4', '3588075'), - (624, 717, 'not_attending', '2021-03-28 21:39:29', '2025-12-17 19:47:44', 'oAQJrkN4', '3619523'), - (624, 719, 'maybe', '2021-04-03 19:02:14', '2025-12-17 19:47:44', 'oAQJrkN4', '3635405'), - (624, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'oAQJrkN4', '3661369'), - (624, 728, 'not_attending', '2021-04-14 13:43:24', '2025-12-17 19:47:44', 'oAQJrkN4', '3668073'), - (624, 731, 'not_attending', '2021-04-06 04:28:43', '2025-12-17 19:47:44', 'oAQJrkN4', '3674262'), - (624, 735, 'not_attending', '2021-05-02 15:58:42', '2025-12-17 19:47:46', 'oAQJrkN4', '3677402'), - (624, 736, 'not_attending', '2021-04-09 20:03:41', '2025-12-17 19:47:44', 'oAQJrkN4', '3677701'), - (624, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'oAQJrkN4', '3730212'), - (624, 777, 'not_attending', '2021-04-30 19:22:01', '2025-12-17 19:47:46', 'oAQJrkN4', '3746248'), - (624, 792, 'not_attending', '2021-05-19 13:21:42', '2025-12-17 19:47:46', 'oAQJrkN4', '3793156'), - (624, 823, 'attending', '2021-06-16 01:30:07', '2025-12-17 19:47:48', 'oAQJrkN4', '3974109'), - (624, 827, 'not_attending', '2021-06-05 02:41:31', '2025-12-17 19:47:47', 'oAQJrkN4', '3975311'), - (624, 828, 'not_attending', '2021-06-10 13:32:26', '2025-12-17 19:47:47', 'oAQJrkN4', '3975312'), - (624, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQJrkN4', '3994992'), - (624, 844, 'attending', '2021-06-23 17:41:09', '2025-12-17 19:47:38', 'oAQJrkN4', '4014338'), - (624, 857, 'not_attending', '2021-11-20 05:39:15', '2025-12-17 19:47:37', 'oAQJrkN4', '4015731'), - (624, 867, 'not_attending', '2021-06-26 21:00:37', '2025-12-17 19:47:38', 'oAQJrkN4', '4021848'), - (624, 869, 'not_attending', '2021-06-30 00:58:31', '2025-12-17 19:47:38', 'oAQJrkN4', '4136744'), - (624, 870, 'not_attending', '2021-06-30 05:16:05', '2025-12-17 19:47:39', 'oAQJrkN4', '4136937'), - (624, 871, 'attending', '2021-07-05 16:04:28', '2025-12-17 19:47:39', 'oAQJrkN4', '4136938'), - (624, 872, 'maybe', '2021-07-18 17:54:21', '2025-12-17 19:47:40', 'oAQJrkN4', '4136947'), - (624, 874, 'attending', '2021-06-16 01:30:23', '2025-12-17 19:47:38', 'oAQJrkN4', '4139815'), - (624, 878, 'not_attending', '2021-06-21 20:25:29', '2025-12-17 19:47:38', 'oAQJrkN4', '4143331'), - (624, 879, 'maybe', '2021-06-23 17:53:29', '2025-12-17 19:47:38', 'oAQJrkN4', '4147806'), - (624, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAQJrkN4', '4210314'), - (624, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAQJrkN4', '4225444'), - (624, 898, 'not_attending', '2021-06-30 05:14:35', '2025-12-17 19:47:38', 'oAQJrkN4', '4236746'), - (624, 899, 'not_attending', '2021-07-03 17:03:39', '2025-12-17 19:47:39', 'oAQJrkN4', '4239259'), - (624, 900, 'not_attending', '2021-07-24 18:23:38', '2025-12-17 19:47:40', 'oAQJrkN4', '4240316'), - (624, 901, 'not_attending', '2021-07-31 19:06:55', '2025-12-17 19:47:40', 'oAQJrkN4', '4240317'), - (624, 902, 'not_attending', '2021-08-07 20:27:36', '2025-12-17 19:47:41', 'oAQJrkN4', '4240318'), - (624, 903, 'attending', '2021-08-14 18:53:15', '2025-12-17 19:47:42', 'oAQJrkN4', '4240320'), - (624, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQJrkN4', '4250163'), - (624, 919, 'attending', '2021-07-16 17:38:53', '2025-12-17 19:47:39', 'oAQJrkN4', '4275957'), - (624, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAQJrkN4', '4277819'), - (624, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAQJrkN4', '4301723'), - (624, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAQJrkN4', '4302093'), - (624, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAQJrkN4', '4304151'), - (624, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'oAQJrkN4', '4345519'), - (624, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAQJrkN4', '4356801'), - (624, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'oAQJrkN4', '4358025'), - (624, 973, 'not_attending', '2021-08-21 17:19:15', '2025-12-17 19:47:42', 'oAQJrkN4', '4366186'), - (624, 974, 'not_attending', '2021-08-28 21:19:13', '2025-12-17 19:47:43', 'oAQJrkN4', '4366187'), - (624, 985, 'not_attending', '2021-08-21 17:19:06', '2025-12-17 19:47:42', 'oAQJrkN4', '4391748'), - (624, 988, 'not_attending', '2021-08-27 20:50:58', '2025-12-17 19:47:42', 'oAQJrkN4', '4402823'), - (624, 990, 'not_attending', '2021-09-04 22:28:11', '2025-12-17 19:47:43', 'oAQJrkN4', '4420735'), - (624, 991, 'not_attending', '2021-09-11 19:09:21', '2025-12-17 19:47:43', 'oAQJrkN4', '4420738'), - (624, 992, 'attending', '2021-09-17 22:50:39', '2025-12-17 19:47:33', 'oAQJrkN4', '4420739'), - (624, 993, 'not_attending', '2021-09-25 22:03:24', '2025-12-17 19:47:34', 'oAQJrkN4', '4420741'), - (624, 994, 'not_attending', '2021-10-02 19:12:38', '2025-12-17 19:47:34', 'oAQJrkN4', '4420742'), - (624, 995, 'not_attending', '2021-10-09 16:52:33', '2025-12-17 19:47:34', 'oAQJrkN4', '4420744'), - (624, 996, 'not_attending', '2021-10-16 19:37:19', '2025-12-17 19:47:35', 'oAQJrkN4', '4420747'), - (624, 997, 'not_attending', '2021-10-23 17:25:32', '2025-12-17 19:47:35', 'oAQJrkN4', '4420748'), - (624, 998, 'not_attending', '2021-10-30 05:11:16', '2025-12-17 19:47:36', 'oAQJrkN4', '4420749'), - (624, 1023, 'not_attending', '2021-09-11 22:23:37', '2025-12-17 19:47:43', 'oAQJrkN4', '4461883'), - (624, 1032, 'attending', '2021-09-26 16:30:23', '2025-12-17 19:47:34', 'oAQJrkN4', '4473825'), - (624, 1036, 'not_attending', '2021-09-22 20:41:12', '2025-12-17 19:47:34', 'oAQJrkN4', '4493166'), - (624, 1067, 'not_attending', '2021-09-24 20:58:18', '2025-12-17 19:47:34', 'oAQJrkN4', '4508342'), - (624, 1070, 'attending', '2021-09-27 23:23:03', '2025-12-17 19:47:34', 'oAQJrkN4', '4512562'), - (624, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAQJrkN4', '4568602'), - (624, 1087, 'not_attending', '2021-10-16 19:37:13', '2025-12-17 19:47:35', 'oAQJrkN4', '4572153'), - (624, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'oAQJrkN4', '4585962'), - (624, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'oAQJrkN4', '4596356'), - (624, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'oAQJrkN4', '4598860'), - (624, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'oAQJrkN4', '4598861'), - (624, 1099, 'not_attending', '2021-11-05 17:20:27', '2025-12-17 19:47:36', 'oAQJrkN4', '4602797'), - (624, 1103, 'not_attending', '2021-11-13 18:34:53', '2025-12-17 19:47:36', 'oAQJrkN4', '4616350'), - (624, 1114, 'attending', '2021-11-13 18:35:22', '2025-12-17 19:47:36', 'oAQJrkN4', '4637896'), - (624, 1116, 'not_attending', '2021-11-20 05:38:42', '2025-12-17 19:47:37', 'oAQJrkN4', '4642994'), - (624, 1117, 'not_attending', '2021-11-20 05:38:46', '2025-12-17 19:47:38', 'oAQJrkN4', '4642995'), - (624, 1118, 'not_attending', '2021-11-20 05:38:54', '2025-12-17 19:47:38', 'oAQJrkN4', '4642996'), - (624, 1119, 'attending', '2021-12-22 23:12:40', '2025-12-17 19:47:31', 'oAQJrkN4', '4642997'), - (624, 1126, 'attending', '2021-12-18 23:19:09', '2025-12-17 19:47:38', 'oAQJrkN4', '4645687'), - (624, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'oAQJrkN4', '4645698'), - (624, 1128, 'attending', '2021-11-20 23:13:52', '2025-12-17 19:47:37', 'oAQJrkN4', '4645704'), - (624, 1129, 'attending', '2021-11-27 06:17:05', '2025-12-17 19:47:37', 'oAQJrkN4', '4645705'), - (624, 1130, 'not_attending', '2021-12-03 22:26:08', '2025-12-17 19:47:37', 'oAQJrkN4', '4658824'), - (624, 1131, 'not_attending', '2021-12-18 23:19:17', '2025-12-17 19:47:31', 'oAQJrkN4', '4658825'), - (624, 1132, 'not_attending', '2021-11-22 14:47:31', '2025-12-17 19:47:37', 'oAQJrkN4', '4660657'), - (624, 1134, 'not_attending', '2021-11-27 06:18:52', '2025-12-17 19:47:37', 'oAQJrkN4', '4668385'), - (624, 1140, 'attending', '2021-12-01 14:40:30', '2025-12-17 19:47:37', 'oAQJrkN4', '4679701'), - (624, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAQJrkN4', '4694407'), - (624, 1156, 'attending', '2021-12-18 22:12:42', '2025-12-17 19:47:31', 'oAQJrkN4', '4715207'), - (624, 1164, 'attending', '2022-01-03 23:41:30', '2025-12-17 19:47:31', 'oAQJrkN4', '4724208'), - (624, 1165, 'not_attending', '2022-01-03 23:41:34', '2025-12-17 19:47:31', 'oAQJrkN4', '4724210'), - (624, 1173, 'not_attending', '2022-01-08 22:21:21', '2025-12-17 19:47:31', 'oAQJrkN4', '4736495'), - (624, 1174, 'attending', '2022-01-15 22:58:02', '2025-12-17 19:47:31', 'oAQJrkN4', '4736496'), - (624, 1175, 'not_attending', '2022-01-22 22:41:11', '2025-12-17 19:47:32', 'oAQJrkN4', '4736497'), - (624, 1176, 'not_attending', '2022-02-05 21:00:48', '2025-12-17 19:47:32', 'oAQJrkN4', '4736498'), - (624, 1177, 'not_attending', '2022-02-12 19:56:45', '2025-12-17 19:47:32', 'oAQJrkN4', '4736499'), - (624, 1178, 'not_attending', '2022-01-29 20:22:17', '2025-12-17 19:47:32', 'oAQJrkN4', '4736500'), - (624, 1179, 'not_attending', '2022-02-19 23:03:43', '2025-12-17 19:47:32', 'oAQJrkN4', '4736501'), - (624, 1180, 'not_attending', '2022-02-26 21:01:54', '2025-12-17 19:47:33', 'oAQJrkN4', '4736502'), - (624, 1181, 'not_attending', '2022-03-05 21:26:26', '2025-12-17 19:47:33', 'oAQJrkN4', '4736503'), - (624, 1182, 'attending', '2022-03-11 15:09:03', '2025-12-17 19:47:33', 'oAQJrkN4', '4736504'), - (624, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'oAQJrkN4', '4746789'), - (624, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'oAQJrkN4', '4753929'), - (624, 1200, 'not_attending', '2022-01-18 22:13:11', '2025-12-17 19:47:32', 'oAQJrkN4', '4766830'), - (624, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'oAQJrkN4', '5038850'), - (624, 1236, 'attending', '2022-02-18 00:13:06', '2025-12-17 19:47:32', 'oAQJrkN4', '5045826'), - (624, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'oAQJrkN4', '5132533'), - (624, 1272, 'not_attending', '2022-03-19 19:27:19', '2025-12-17 19:47:25', 'oAQJrkN4', '5186582'), - (624, 1273, 'not_attending', '2022-03-26 21:51:43', '2025-12-17 19:47:25', 'oAQJrkN4', '5186583'), - (624, 1274, 'attending', '2022-04-02 21:45:43', '2025-12-17 19:47:26', 'oAQJrkN4', '5186585'), - (624, 1281, 'maybe', '2022-04-09 20:42:10', '2025-12-17 19:47:27', 'oAQJrkN4', '5190437'), - (624, 1284, 'not_attending', '2022-04-12 13:45:17', '2025-12-17 19:47:27', 'oAQJrkN4', '5195095'), - (624, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'oAQJrkN4', '5215989'), - (624, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'oAQJrkN4', '5223686'), - (624, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'oAQJrkN4', '5227432'), - (624, 1320, 'not_attending', '2022-04-18 18:13:37', '2025-12-17 19:47:27', 'oAQJrkN4', '5238354'), - (624, 1337, 'not_attending', '2022-04-20 22:39:41', '2025-12-17 19:47:27', 'oAQJrkN4', '5245036'), - (624, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'oAQJrkN4', '5247467'), - (624, 1348, 'not_attending', '2022-05-01 22:27:42', '2025-12-17 19:47:28', 'oAQJrkN4', '5247605'), - (624, 1362, 'not_attending', '2022-05-01 00:25:13', '2025-12-17 19:47:28', 'oAQJrkN4', '5260800'), - (624, 1374, 'attending', '2022-05-07 05:15:53', '2025-12-17 19:47:28', 'oAQJrkN4', '5269930'), - (624, 1378, 'not_attending', '2022-05-14 21:46:22', '2025-12-17 19:47:29', 'oAQJrkN4', '5271448'), - (624, 1379, 'not_attending', '2022-05-21 23:10:19', '2025-12-17 19:47:30', 'oAQJrkN4', '5271449'), - (624, 1380, 'not_attending', '2022-05-23 16:22:29', '2025-12-17 19:47:30', 'oAQJrkN4', '5271450'), - (624, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'oAQJrkN4', '5276469'), - (624, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'oAQJrkN4', '5278159'), - (624, 1407, 'not_attending', '2022-06-04 22:38:28', '2025-12-17 19:47:30', 'oAQJrkN4', '5363695'), - (624, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'oAQJrkN4', '5365960'), - (624, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'oAQJrkN4', '5368973'), - (624, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'oAQJrkN4', '5378247'), - (624, 1431, 'not_attending', '2022-06-11 19:31:23', '2025-12-17 19:47:31', 'oAQJrkN4', '5389605'), - (624, 1442, 'attending', '2022-06-11 19:31:46', '2025-12-17 19:47:17', 'oAQJrkN4', '5397265'), - (624, 1451, 'attending', '2022-06-17 17:55:30', '2025-12-17 19:47:17', 'oAQJrkN4', '5403967'), - (624, 1458, 'not_attending', '2022-06-18 20:47:48', '2025-12-17 19:47:17', 'oAQJrkN4', '5404786'), - (624, 1462, 'not_attending', '2022-06-16 13:32:41', '2025-12-17 19:47:17', 'oAQJrkN4', '5405203'), - (624, 1476, 'attending', '2022-06-16 18:29:22', '2025-12-17 19:47:17', 'oAQJrkN4', '5408130'), - (624, 1478, 'not_attending', '2022-06-24 20:25:00', '2025-12-17 19:47:19', 'oAQJrkN4', '5408794'), - (624, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'oAQJrkN4', '5411699'), - (624, 1482, 'maybe', '2022-06-25 19:38:01', '2025-12-17 19:47:19', 'oAQJrkN4', '5412550'), - (624, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'oAQJrkN4', '5415046'), - (624, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'oAQJrkN4', '5422086'), - (624, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'oAQJrkN4', '5422406'), - (624, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'oAQJrkN4', '5424565'), - (624, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'oAQJrkN4', '5426882'), - (624, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'oAQJrkN4', '5427083'), - (624, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'oAQJrkN4', '5441125'), - (624, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'oAQJrkN4', '5441126'), - (624, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'oAQJrkN4', '5441128'), - (624, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'oAQJrkN4', '5441131'), - (624, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'oAQJrkN4', '5441132'), - (624, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'oAQJrkN4', '5446643'), - (624, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'oAQJrkN4', '5453325'), - (624, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'oAQJrkN4', '5454516'), - (624, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'oAQJrkN4', '5454605'), - (624, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'oAQJrkN4', '5455037'), - (624, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'oAQJrkN4', '5461278'), - (624, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'oAQJrkN4', '5469480'), - (624, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'oAQJrkN4', '5471073'), - (624, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'oAQJrkN4', '5474663'), - (624, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'oAQJrkN4', '5482022'), - (624, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'oAQJrkN4', '5482793'), - (624, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'oAQJrkN4', '5488912'), - (624, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'oAQJrkN4', '5492192'), - (624, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'oAQJrkN4', '5493139'), - (624, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'oAQJrkN4', '5493200'), - (624, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'oAQJrkN4', '5502188'), - (624, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'oAQJrkN4', '5505059'), - (624, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'oAQJrkN4', '5509055'), - (624, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'oAQJrkN4', '5512862'), - (624, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'oAQJrkN4', '5513985'), - (624, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'oAQJrkN4', '5519981'), - (624, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'oAQJrkN4', '5522550'), - (624, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'oAQJrkN4', '5534683'), - (624, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'oAQJrkN4', '5537735'), - (624, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'oAQJrkN4', '5540859'), - (624, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'oAQJrkN4', '5546619'), - (624, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'oAQJrkN4', '5555245'), - (624, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'oAQJrkN4', '5557747'), - (624, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'oAQJrkN4', '5560255'), - (624, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'oAQJrkN4', '5562906'), - (624, 1667, 'attending', '2022-09-23 23:34:45', '2025-12-17 19:47:11', 'oAQJrkN4', '5563221'), - (624, 1668, 'not_attending', '2022-10-01 17:39:21', '2025-12-17 19:47:12', 'oAQJrkN4', '5563222'), - (624, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'oAQJrkN4', '5600604'), - (624, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'oAQJrkN4', '5605544'), - (624, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'oAQJrkN4', '5606737'), - (624, 1719, 'not_attending', '2022-10-08 20:19:58', '2025-12-17 19:47:12', 'oAQJrkN4', '5630958'), - (624, 1720, 'not_attending', '2022-10-15 21:35:29', '2025-12-17 19:47:12', 'oAQJrkN4', '5630959'), - (624, 1721, 'not_attending', '2022-10-21 03:36:45', '2025-12-17 19:47:13', 'oAQJrkN4', '5630960'), - (624, 1722, 'attending', '2022-10-19 14:02:50', '2025-12-17 19:47:14', 'oAQJrkN4', '5630961'), - (624, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'oAQJrkN4', '5630962'), - (624, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'oAQJrkN4', '5630966'), - (624, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'oAQJrkN4', '5630967'), - (624, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'oAQJrkN4', '5630968'), - (624, 1727, 'attending', '2022-12-03 23:20:02', '2025-12-17 19:47:16', 'oAQJrkN4', '5630969'), - (624, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'oAQJrkN4', '5635406'), - (624, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'oAQJrkN4', '5638765'), - (624, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'oAQJrkN4', '5640097'), - (624, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'oAQJrkN4', '5640843'), - (624, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'oAQJrkN4', '5641521'), - (624, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'oAQJrkN4', '5642818'), - (624, 1747, 'maybe', '2022-10-14 21:15:35', '2025-12-17 19:47:13', 'oAQJrkN4', '5648009'), - (624, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'oAQJrkN4', '5652395'), - (624, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'oAQJrkN4', '5670445'), - (624, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'oAQJrkN4', '5671637'), - (624, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'oAQJrkN4', '5672329'), - (624, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'oAQJrkN4', '5674057'), - (624, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'oAQJrkN4', '5674060'), - (624, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'oAQJrkN4', '5677461'), - (624, 1776, 'not_attending', '2022-11-09 18:45:16', '2025-12-17 19:47:15', 'oAQJrkN4', '5691067'), - (624, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'oAQJrkN4', '5698046'), - (624, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'oAQJrkN4', '5699760'), - (624, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'oAQJrkN4', '5741601'), - (624, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'oAQJrkN4', '5763458'), - (624, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'oAQJrkN4', '5774172'), - (624, 1826, 'not_attending', '2022-12-20 00:19:26', '2025-12-17 19:47:04', 'oAQJrkN4', '5776768'), - (624, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'oAQJrkN4', '5818247'), - (624, 1834, 'not_attending', '2022-12-10 19:30:23', '2025-12-17 19:47:17', 'oAQJrkN4', '5819470'), - (624, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'oAQJrkN4', '5819471'), - (624, 1839, 'not_attending', '2022-12-20 00:19:31', '2025-12-17 19:47:04', 'oAQJrkN4', '5821920'), - (624, 1842, 'maybe', '2022-12-20 00:19:38', '2025-12-17 19:47:04', 'oAQJrkN4', '5827739'), - (624, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'oAQJrkN4', '5844306'), - (624, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'oAQJrkN4', '5850159'), - (624, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'oAQJrkN4', '5858999'), - (624, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'oAQJrkN4', '5871984'), - (624, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'oAQJrkN4', '5876354'), - (624, 1864, 'attending', '2023-01-21 20:49:47', '2025-12-17 19:47:05', 'oAQJrkN4', '5879675'), - (624, 1865, 'attending', '2023-01-28 19:37:24', '2025-12-17 19:47:06', 'oAQJrkN4', '5879676'), - (624, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'oAQJrkN4', '5880939'), - (624, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'oAQJrkN4', '5880940'), - (624, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'oAQJrkN4', '5880942'), - (624, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'oAQJrkN4', '5880943'), - (624, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'oAQJrkN4', '5887890'), - (624, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'oAQJrkN4', '5888598'), - (624, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'oAQJrkN4', '5893260'), - (624, 1882, 'maybe', '2023-01-30 03:40:52', '2025-12-17 19:47:06', 'oAQJrkN4', '5898447'), - (624, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'oAQJrkN4', '5899826'), - (624, 1885, 'not_attending', '2023-02-24 19:29:22', '2025-12-17 19:47:08', 'oAQJrkN4', '5899928'), - (624, 1888, 'attending', '2023-02-17 16:09:21', '2025-12-17 19:47:07', 'oAQJrkN4', '5900197'), - (624, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'oAQJrkN4', '5900199'), - (624, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'oAQJrkN4', '5900200'), - (624, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'oAQJrkN4', '5900202'), - (624, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'oAQJrkN4', '5900203'), - (624, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'oAQJrkN4', '5901108'), - (624, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'oAQJrkN4', '5901126'), - (624, 1897, 'not_attending', '2023-02-10 16:52:29', '2025-12-17 19:47:07', 'oAQJrkN4', '5901128'), - (624, 1900, 'not_attending', '2023-02-01 06:22:39', '2025-12-17 19:47:06', 'oAQJrkN4', '5901331'), - (624, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'oAQJrkN4', '5909655'), - (624, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'oAQJrkN4', '5910522'), - (624, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'oAQJrkN4', '5910526'), - (624, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'oAQJrkN4', '5910528'), - (624, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'oAQJrkN4', '5916219'), - (624, 1925, 'attending', '2023-02-18 19:16:56', '2025-12-17 19:47:08', 'oAQJrkN4', '5932619'), - (624, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'oAQJrkN4', '5936234'), - (624, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'oAQJrkN4', '5958351'), - (624, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'oAQJrkN4', '5959751'), - (624, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'oAQJrkN4', '5959755'), - (624, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'oAQJrkN4', '5960055'), - (624, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'oAQJrkN4', '5961684'), - (624, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'oAQJrkN4', '5962132'), - (624, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'oAQJrkN4', '5962133'), - (624, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'oAQJrkN4', '5962134'), - (624, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'oAQJrkN4', '5962317'), - (624, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'oAQJrkN4', '5962318'), - (624, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'oAQJrkN4', '5965933'), - (624, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'oAQJrkN4', '5967014'), - (624, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'oAQJrkN4', '5972815'), - (624, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'oAQJrkN4', '5974016'), - (624, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'oAQJrkN4', '5981515'), - (624, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'oAQJrkN4', '5993516'), - (624, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'oAQJrkN4', '5998939'), - (624, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'oAQJrkN4', '6028191'), - (624, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'oAQJrkN4', '6040066'), - (624, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'oAQJrkN4', '6042717'), - (624, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'oAQJrkN4', '6044838'), - (624, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'oAQJrkN4', '6044839'), - (624, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQJrkN4', '6045684'), - (624, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'oAQJrkN4', '6050104'), - (624, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'oAQJrkN4', '6053195'), - (624, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'oAQJrkN4', '6053198'), - (624, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'oAQJrkN4', '6056085'), - (624, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'oAQJrkN4', '6056916'), - (624, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'oAQJrkN4', '6059290'), - (624, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'oAQJrkN4', '6060328'), - (624, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'oAQJrkN4', '6061037'), - (624, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'oAQJrkN4', '6061039'), - (624, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'oAQJrkN4', '6067245'), - (624, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'oAQJrkN4', '6068094'), - (624, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'oAQJrkN4', '6068252'), - (624, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'oAQJrkN4', '6068253'), - (624, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'oAQJrkN4', '6068254'), - (624, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'oAQJrkN4', '6068280'), - (624, 2032, 'not_attending', '2023-06-03 22:43:59', '2025-12-17 19:47:04', 'oAQJrkN4', '6068281'), - (624, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'oAQJrkN4', '6069093'), - (624, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'oAQJrkN4', '6072528'), - (624, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'oAQJrkN4', '6079840'), - (624, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'oAQJrkN4', '6083398'), - (624, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'oAQJrkN4', '6093504'), - (624, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'oAQJrkN4', '6097414'), - (624, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'oAQJrkN4', '6097442'), - (624, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'oAQJrkN4', '6097684'), - (624, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'oAQJrkN4', '6098762'), - (624, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'oAQJrkN4', '6101361'), - (624, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'oAQJrkN4', '6101362'), - (624, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'oAQJrkN4', '6103752'), - (624, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'oAQJrkN4', '6107314'), - (624, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'oAQJrkN4', '6120034'), - (624, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'oAQJrkN4', '6136733'), - (624, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'oAQJrkN4', '6137989'), - (624, 2104, 'attending', '2023-06-22 19:01:33', '2025-12-17 19:46:50', 'oAQJrkN4', '6149499'), - (624, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'oAQJrkN4', '6150864'), - (624, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'oAQJrkN4', '6155491'), - (624, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'oAQJrkN4', '6164417'), - (624, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'oAQJrkN4', '6166388'), - (624, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'oAQJrkN4', '6176439'), - (624, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'oAQJrkN4', '6182410'), - (624, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'oAQJrkN4', '6185812'), - (624, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'oAQJrkN4', '6187651'), - (624, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'oAQJrkN4', '6187963'), - (624, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'oAQJrkN4', '6187964'), - (624, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'oAQJrkN4', '6187966'), - (624, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'oAQJrkN4', '6187967'), - (624, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'oAQJrkN4', '6187969'), - (624, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'oAQJrkN4', '6334878'), - (624, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'oAQJrkN4', '6337236'), - (624, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'oAQJrkN4', '6337970'), - (624, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'oAQJrkN4', '6338308'), - (624, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'oAQJrkN4', '6340845'), - (624, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'oAQJrkN4', '6341710'), - (624, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'oAQJrkN4', '6342044'), - (624, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'oAQJrkN4', '6342298'), - (624, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'oAQJrkN4', '6343294'), - (624, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'oAQJrkN4', '6347034'), - (624, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'oAQJrkN4', '6347056'), - (624, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'oAQJrkN4', '6353830'), - (624, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'oAQJrkN4', '6353831'), - (624, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'oAQJrkN4', '6357867'), - (624, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'oAQJrkN4', '6358652'), - (624, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'oAQJrkN4', '6361709'), - (624, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'oAQJrkN4', '6361710'), - (624, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'oAQJrkN4', '6361711'), - (624, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'oAQJrkN4', '6361712'), - (624, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'oAQJrkN4', '6361713'), - (624, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'oAQJrkN4', '6382573'), - (624, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'oAQJrkN4', '6388604'), - (624, 2242, 'not_attending', '2023-09-23 23:20:51', '2025-12-17 19:46:45', 'oAQJrkN4', '6388606'), - (624, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'oAQJrkN4', '6394629'), - (624, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'oAQJrkN4', '6394631'), - (624, 2253, 'not_attending', '2023-09-23 23:21:02', '2025-12-17 19:46:45', 'oAQJrkN4', '6401811'), - (624, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'oAQJrkN4', '6440863'), - (624, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'oAQJrkN4', '6445440'), - (624, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'oAQJrkN4', '6453951'), - (624, 2286, 'not_attending', '2023-11-30 19:34:00', '2025-12-17 19:46:48', 'oAQJrkN4', '6460930'), - (624, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'oAQJrkN4', '6461696'), - (624, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'oAQJrkN4', '6462129'), - (624, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'oAQJrkN4', '6463218'), - (624, 2299, 'not_attending', '2023-10-16 14:29:23', '2025-12-17 19:46:46', 'oAQJrkN4', '6472181'), - (624, 2303, 'not_attending', '2023-10-25 16:06:34', '2025-12-17 19:46:47', 'oAQJrkN4', '6482691'), - (624, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'oAQJrkN4', '6482693'), - (624, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'oAQJrkN4', '6484200'), - (624, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'oAQJrkN4', '6484680'), - (624, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'oAQJrkN4', '6507741'), - (624, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'oAQJrkN4', '6514659'), - (624, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'oAQJrkN4', '6514660'), - (624, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'oAQJrkN4', '6519103'), - (624, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'oAQJrkN4', '6535681'), - (624, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'oAQJrkN4', '6584747'), - (624, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'oAQJrkN4', '6587097'), - (624, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'oAQJrkN4', '6609022'), - (624, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'oAQJrkN4', '6632757'), - (624, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAQJrkN4', '6644187'), - (624, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAQJrkN4', '6648951'), - (624, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAQJrkN4', '6648952'), - (624, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAQJrkN4', '6655401'), - (624, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAQJrkN4', '6661585'), - (624, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAQJrkN4', '6661588'), - (624, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAQJrkN4', '6661589'), - (624, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAQJrkN4', '6699906'), - (624, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'oAQJrkN4', '6699913'), - (624, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAQJrkN4', '6701109'), - (624, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAQJrkN4', '6705219'), - (624, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAQJrkN4', '6710153'), - (624, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAQJrkN4', '6711552'), - (624, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'oAQJrkN4', '6711553'), - (624, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAQJrkN4', '6722688'), - (624, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAQJrkN4', '6730620'), - (624, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'oAQJrkN4', '6730642'), - (624, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAQJrkN4', '6740364'), - (624, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAQJrkN4', '6743829'), - (624, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAQJrkN4', '7030380'), - (624, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'oAQJrkN4', '7033677'), - (624, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'oAQJrkN4', '7035415'), - (624, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAQJrkN4', '7044715'), - (624, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAQJrkN4', '7050318'), - (624, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAQJrkN4', '7050319'), - (624, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAQJrkN4', '7050322'), - (624, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAQJrkN4', '7057804'), - (624, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'oAQJrkN4', '7059866'), - (624, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAQJrkN4', '7072824'), - (624, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAQJrkN4', '7074348'), - (624, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAQJrkN4', '7089267'), - (624, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAQJrkN4', '7098747'), - (624, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'oAQJrkN4', '7113468'), - (624, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAQJrkN4', '7114856'), - (624, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAQJrkN4', '7114951'), - (624, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAQJrkN4', '7114955'), - (624, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAQJrkN4', '7114956'), - (624, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'oAQJrkN4', '7153615'), - (624, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAQJrkN4', '7159484'), - (624, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAQJrkN4', '7178446'), - (625, 1415, 'not_attending', '2022-06-03 05:39:34', '2025-12-17 19:47:30', 'dN9EV6G4', '5368973'), - (625, 1442, 'attending', '2022-06-18 21:28:30', '2025-12-17 19:47:17', 'dN9EV6G4', '5397265'), - (625, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dN9EV6G4', '5403967'), - (625, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dN9EV6G4', '5404786'), - (625, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dN9EV6G4', '5405203'), - (625, 1466, 'attending', '2022-06-16 21:23:51', '2025-12-17 19:47:17', 'dN9EV6G4', '5406427'), - (625, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dN9EV6G4', '5411699'), - (625, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dN9EV6G4', '5412550'), - (625, 1484, 'not_attending', '2022-06-22 22:51:48', '2025-12-17 19:47:17', 'dN9EV6G4', '5415046'), - (625, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dN9EV6G4', '5422086'), - (625, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dN9EV6G4', '5422406'), - (625, 1501, 'maybe', '2022-06-29 21:43:39', '2025-12-17 19:47:19', 'dN9EV6G4', '5424546'), - (625, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dN9EV6G4', '5424565'), - (625, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dN9EV6G4', '5426882'), - (625, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dN9EV6G4', '5427083'), - (625, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'dN9EV6G4', '5441125'), - (625, 1514, 'maybe', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dN9EV6G4', '5441126'), - (625, 1515, 'attending', '2022-08-06 17:47:19', '2025-12-17 19:47:21', 'dN9EV6G4', '5441128'), - (625, 1516, 'attending', '2022-08-20 07:13:31', '2025-12-17 19:47:23', 'dN9EV6G4', '5441129'), - (625, 1517, 'attending', '2022-08-21 09:02:19', '2025-12-17 19:47:23', 'dN9EV6G4', '5441130'), - (625, 1518, 'maybe', '2022-09-01 16:45:55', '2025-12-17 19:47:24', 'dN9EV6G4', '5441131'), - (625, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dN9EV6G4', '5441132'), - (625, 1522, 'maybe', '2022-07-19 22:38:06', '2025-12-17 19:47:20', 'dN9EV6G4', '5442832'), - (625, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dN9EV6G4', '5446643'), - (625, 1539, 'maybe', '2022-07-29 16:15:22', '2025-12-17 19:47:21', 'dN9EV6G4', '5449671'), - (625, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dN9EV6G4', '5453325'), - (625, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dN9EV6G4', '5454516'), - (625, 1544, 'maybe', '2022-09-14 21:58:08', '2025-12-17 19:47:11', 'dN9EV6G4', '5454517'), - (625, 1545, 'maybe', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dN9EV6G4', '5454605'), - (625, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dN9EV6G4', '5455037'), - (625, 1553, 'maybe', '2022-07-20 21:13:43', '2025-12-17 19:47:20', 'dN9EV6G4', '5455164'), - (625, 1558, 'maybe', '2022-09-13 23:51:53', '2025-12-17 19:47:10', 'dN9EV6G4', '5458730'), - (625, 1561, 'maybe', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dN9EV6G4', '5461278'), - (625, 1562, 'maybe', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dN9EV6G4', '5469480'), - (625, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dN9EV6G4', '5471073'), - (625, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dN9EV6G4', '5474663'), - (625, 1569, 'maybe', '2022-08-02 23:00:07', '2025-12-17 19:47:21', 'dN9EV6G4', '5481507'), - (625, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dN9EV6G4', '5482022'), - (625, 1575, 'maybe', '2022-08-21 09:02:01', '2025-12-17 19:47:23', 'dN9EV6G4', '5482250'), - (625, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dN9EV6G4', '5482793'), - (625, 1580, 'maybe', '2022-08-10 07:32:53', '2025-12-17 19:47:22', 'dN9EV6G4', '5488912'), - (625, 1586, 'maybe', '2022-08-16 05:13:33', '2025-12-17 19:47:23', 'dN9EV6G4', '5492019'), - (625, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dN9EV6G4', '5492192'), - (625, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dN9EV6G4', '5493139'), - (625, 1589, 'attending', '2022-08-21 09:01:19', '2025-12-17 19:47:23', 'dN9EV6G4', '5493159'), - (625, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dN9EV6G4', '5493200'), - (625, 1597, 'maybe', '2022-08-15 20:31:33', '2025-12-17 19:47:22', 'dN9EV6G4', '5496566'), - (625, 1598, 'maybe', '2022-08-16 22:13:52', '2025-12-17 19:47:22', 'dN9EV6G4', '5496567'), - (625, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dN9EV6G4', '5502188'), - (625, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dN9EV6G4', '5505059'), - (625, 1609, 'not_attending', '2022-08-21 09:02:47', '2025-12-17 19:47:23', 'dN9EV6G4', '5506590'), - (625, 1610, 'not_attending', '2022-08-21 09:02:58', '2025-12-17 19:47:23', 'dN9EV6G4', '5506595'), - (625, 1615, 'maybe', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dN9EV6G4', '5509055'), - (625, 1618, 'maybe', '2022-08-24 05:04:36', '2025-12-17 19:47:23', 'dN9EV6G4', '5512005'), - (625, 1619, 'not_attending', '2022-08-23 08:40:16', '2025-12-17 19:47:23', 'dN9EV6G4', '5512862'), - (625, 1620, 'maybe', '2022-08-25 17:08:54', '2025-12-17 19:47:23', 'dN9EV6G4', '5513046'), - (625, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dN9EV6G4', '5513985'), - (625, 1626, 'maybe', '2022-08-26 00:38:59', '2025-12-17 19:47:11', 'dN9EV6G4', '5519981'), - (625, 1629, 'maybe', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dN9EV6G4', '5522550'), - (625, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dN9EV6G4', '5534683'), - (625, 1635, 'maybe', '2022-09-13 23:06:32', '2025-12-17 19:47:10', 'dN9EV6G4', '5537735'), - (625, 1637, 'attending', '2022-09-04 14:33:29', '2025-12-17 19:47:24', 'dN9EV6G4', '5539591'), - (625, 1640, 'maybe', '2022-09-13 23:06:27', '2025-12-17 19:47:10', 'dN9EV6G4', '5540859'), - (625, 1643, 'maybe', '2022-09-23 19:07:33', '2025-12-17 19:47:11', 'dN9EV6G4', '5545856'), - (625, 1644, 'maybe', '2022-09-19 18:46:16', '2025-12-17 19:47:11', 'dN9EV6G4', '5545857'), - (625, 1645, 'maybe', '2022-09-11 20:41:34', '2025-12-17 19:47:25', 'dN9EV6G4', '5546559'), - (625, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dN9EV6G4', '5546619'), - (625, 1653, 'attending', '2022-09-10 18:35:32', '2025-12-17 19:47:11', 'dN9EV6G4', '5554400'), - (625, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dN9EV6G4', '5555245'), - (625, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dN9EV6G4', '5557747'), - (625, 1661, 'maybe', '2022-09-09 00:19:23', '2025-12-17 19:47:24', 'dN9EV6G4', '5560254'), - (625, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dN9EV6G4', '5560255'), - (625, 1664, 'maybe', '2022-09-10 18:34:57', '2025-12-17 19:47:25', 'dN9EV6G4', '5562906'), - (625, 1665, 'maybe', '2022-09-12 16:43:43', '2025-12-17 19:47:25', 'dN9EV6G4', '5563133'), - (625, 1666, 'maybe', '2022-09-26 08:04:15', '2025-12-17 19:47:11', 'dN9EV6G4', '5563208'), - (625, 1667, 'maybe', '2022-09-20 01:39:01', '2025-12-17 19:47:11', 'dN9EV6G4', '5563221'), - (625, 1668, 'maybe', '2022-09-15 01:56:30', '2025-12-17 19:47:12', 'dN9EV6G4', '5563222'), - (625, 1674, 'maybe', '2022-09-20 07:53:44', '2025-12-17 19:47:12', 'dN9EV6G4', '5593112'), - (625, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dN9EV6G4', '5600604'), - (625, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dN9EV6G4', '5605544'), - (625, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'dN9EV6G4', '5606737'), - (625, 1704, 'maybe', '2022-10-04 23:41:50', '2025-12-17 19:47:12', 'dN9EV6G4', '5610508'), - (625, 1705, 'maybe', '2022-09-29 21:24:54', '2025-12-17 19:47:12', 'dN9EV6G4', '5612209'), - (625, 1708, 'not_attending', '2022-10-04 23:41:57', '2025-12-17 19:47:12', 'dN9EV6G4', '5617648'), - (625, 1716, 'not_attending', '2022-10-02 21:34:47', '2025-12-17 19:47:12', 'dN9EV6G4', '5622429'), - (625, 1719, 'not_attending', '2022-10-07 08:19:39', '2025-12-17 19:47:12', 'dN9EV6G4', '5630958'), - (625, 1720, 'not_attending', '2022-10-14 20:16:31', '2025-12-17 19:47:12', 'dN9EV6G4', '5630959'), - (625, 1721, 'not_attending', '2022-10-21 18:39:46', '2025-12-17 19:47:13', 'dN9EV6G4', '5630960'), - (625, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dN9EV6G4', '5630961'), - (625, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dN9EV6G4', '5630962'), - (625, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dN9EV6G4', '5630966'), - (625, 1725, 'not_attending', '2022-11-14 23:53:01', '2025-12-17 19:47:16', 'dN9EV6G4', '5630967'), - (625, 1726, 'not_attending', '2022-11-16 16:36:04', '2025-12-17 19:47:16', 'dN9EV6G4', '5630968'), - (625, 1727, 'attending', '2022-12-01 23:18:52', '2025-12-17 19:47:16', 'dN9EV6G4', '5630969'), - (625, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dN9EV6G4', '5635406'), - (625, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dN9EV6G4', '5638765'), - (625, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dN9EV6G4', '5640097'), - (625, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dN9EV6G4', '5640843'), - (625, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dN9EV6G4', '5641521'), - (625, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dN9EV6G4', '5642818'), - (625, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dN9EV6G4', '5652395'), - (625, 1757, 'not_attending', '2022-11-03 11:52:40', '2025-12-17 19:47:15', 'dN9EV6G4', '5668974'), - (625, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dN9EV6G4', '5670445'), - (625, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dN9EV6G4', '5671637'), - (625, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dN9EV6G4', '5672329'), - (625, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dN9EV6G4', '5674057'), - (625, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dN9EV6G4', '5674060'), - (625, 1769, 'maybe', '2022-11-04 02:49:35', '2025-12-17 19:47:15', 'dN9EV6G4', '5676351'), - (625, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dN9EV6G4', '5677461'), - (625, 1773, 'attending', '2022-10-31 15:02:44', '2025-12-17 19:47:14', 'dN9EV6G4', '5677707'), - (625, 1776, 'maybe', '2022-11-07 23:38:32', '2025-12-17 19:47:15', 'dN9EV6G4', '5691067'), - (625, 1779, 'attending', '2022-11-03 02:11:50', '2025-12-17 19:47:15', 'dN9EV6G4', '5694252'), - (625, 1781, 'maybe', '2022-11-02 12:53:39', '2025-12-17 19:47:15', 'dN9EV6G4', '5696178'), - (625, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dN9EV6G4', '5698046'), - (625, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dN9EV6G4', '5699760'), - (625, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dN9EV6G4', '5741601'), - (625, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dN9EV6G4', '5763458'), - (625, 1808, 'not_attending', '2023-03-02 13:56:53', '2025-12-17 19:47:08', 'dN9EV6G4', '5764678'), - (625, 1814, 'maybe', '2023-02-21 06:51:38', '2025-12-17 19:47:08', 'dN9EV6G4', '5764684'), - (625, 1820, 'not_attending', '2023-04-02 23:51:10', '2025-12-17 19:46:58', 'dN9EV6G4', '5764690'), - (625, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dN9EV6G4', '5774172'), - (625, 1829, 'not_attending', '2022-12-04 08:09:11', '2025-12-17 19:47:16', 'dN9EV6G4', '5778867'), - (625, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dN9EV6G4', '5818247'), - (625, 1834, 'not_attending', '2022-12-06 13:03:41', '2025-12-17 19:47:17', 'dN9EV6G4', '5819470'), - (625, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dN9EV6G4', '5819471'), - (625, 1838, 'attending', '2022-12-06 19:00:33', '2025-12-17 19:47:16', 'dN9EV6G4', '5821722'), - (625, 1839, 'attending', '2022-12-19 01:38:14', '2025-12-17 19:47:04', 'dN9EV6G4', '5821920'), - (625, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'dN9EV6G4', '5827739'), - (625, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dN9EV6G4', '5844306'), - (625, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dN9EV6G4', '5850159'), - (625, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dN9EV6G4', '5858999'), - (625, 1852, 'maybe', '2023-01-09 21:24:04', '2025-12-17 19:47:05', 'dN9EV6G4', '5869898'), - (625, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dN9EV6G4', '5871984'), - (625, 1861, 'maybe', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dN9EV6G4', '5876354'), - (625, 1863, 'not_attending', '2023-01-25 09:09:14', '2025-12-17 19:47:06', 'dN9EV6G4', '5877255'), - (625, 1865, 'not_attending', '2023-01-25 09:10:35', '2025-12-17 19:47:06', 'dN9EV6G4', '5879676'), - (625, 1866, 'maybe', '2023-01-24 04:17:55', '2025-12-17 19:47:05', 'dN9EV6G4', '5880939'), - (625, 1867, 'maybe', '2023-02-04 21:07:18', '2025-12-17 19:47:07', 'dN9EV6G4', '5880940'), - (625, 1868, 'not_attending', '2023-02-21 03:14:00', '2025-12-17 19:47:07', 'dN9EV6G4', '5880942'), - (625, 1869, 'maybe', '2023-03-07 15:04:40', '2025-12-17 19:47:09', 'dN9EV6G4', '5880943'), - (625, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dN9EV6G4', '5887890'), - (625, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dN9EV6G4', '5888598'), - (625, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dN9EV6G4', '5893260'), - (625, 1882, 'maybe', '2023-01-30 09:09:50', '2025-12-17 19:47:06', 'dN9EV6G4', '5898447'), - (625, 1884, 'maybe', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dN9EV6G4', '5899826'), - (625, 1885, 'not_attending', '2023-02-21 06:51:32', '2025-12-17 19:47:08', 'dN9EV6G4', '5899928'), - (625, 1886, 'maybe', '2023-03-07 15:04:45', '2025-12-17 19:47:09', 'dN9EV6G4', '5899930'), - (625, 1888, 'not_attending', '2023-02-17 09:20:01', '2025-12-17 19:47:07', 'dN9EV6G4', '5900197'), - (625, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dN9EV6G4', '5900199'), - (625, 1890, 'attending', '2023-02-18 10:07:54', '2025-12-17 19:47:08', 'dN9EV6G4', '5900200'), - (625, 1891, 'attending', '2023-03-17 00:05:41', '2025-12-17 19:46:56', 'dN9EV6G4', '5900202'), - (625, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dN9EV6G4', '5900203'), - (625, 1893, 'maybe', '2023-01-31 23:32:22', '2025-12-17 19:47:06', 'dN9EV6G4', '5901055'), - (625, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dN9EV6G4', '5901108'), - (625, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dN9EV6G4', '5901126'), - (625, 1897, 'not_attending', '2023-02-09 10:18:01', '2025-12-17 19:47:07', 'dN9EV6G4', '5901128'), - (625, 1898, 'maybe', '2023-02-01 03:54:23', '2025-12-17 19:47:06', 'dN9EV6G4', '5901263'), - (625, 1899, 'not_attending', '2023-02-09 10:19:06', '2025-12-17 19:47:07', 'dN9EV6G4', '5901323'), - (625, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dN9EV6G4', '5909655'), - (625, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dN9EV6G4', '5910522'), - (625, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dN9EV6G4', '5910526'), - (625, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dN9EV6G4', '5910528'), - (625, 1920, 'not_attending', '2023-02-13 03:55:29', '2025-12-17 19:47:07', 'dN9EV6G4', '5914091'), - (625, 1922, 'not_attending', '2023-02-13 06:31:46', '2025-12-17 19:47:07', 'dN9EV6G4', '5916219'), - (625, 1928, 'maybe', '2023-02-18 10:07:04', '2025-12-17 19:47:07', 'dN9EV6G4', '5932627'), - (625, 1933, 'attending', '2023-02-21 00:36:46', '2025-12-17 19:47:08', 'dN9EV6G4', '5936234'), - (625, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dN9EV6G4', '5958351'), - (625, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dN9EV6G4', '5959751'), - (625, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dN9EV6G4', '5959755'), - (625, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dN9EV6G4', '5960055'), - (625, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dN9EV6G4', '5961684'), - (625, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dN9EV6G4', '5962132'), - (625, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dN9EV6G4', '5962133'), - (625, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dN9EV6G4', '5962134'), - (625, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dN9EV6G4', '5962317'), - (625, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dN9EV6G4', '5962318'), - (625, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dN9EV6G4', '5965933'), - (625, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dN9EV6G4', '5967014'), - (625, 1955, 'maybe', '2023-03-27 01:18:51', '2025-12-17 19:46:57', 'dN9EV6G4', '5972529'), - (625, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dN9EV6G4', '5972815'), - (625, 1959, 'not_attending', '2023-03-27 01:19:08', '2025-12-17 19:46:57', 'dN9EV6G4', '5972829'), - (625, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dN9EV6G4', '5974016'), - (625, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dN9EV6G4', '5981515'), - (625, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dN9EV6G4', '5993516'), - (625, 1973, 'not_attending', '2023-03-19 19:16:24', '2025-12-17 19:46:56', 'dN9EV6G4', '5993777'), - (625, 1974, 'not_attending', '2023-03-27 01:19:02', '2025-12-17 19:46:57', 'dN9EV6G4', '5993778'), - (625, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dN9EV6G4', '5998939'), - (625, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dN9EV6G4', '6028191'), - (625, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dN9EV6G4', '6040066'), - (625, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dN9EV6G4', '6042717'), - (625, 1985, 'attending', '2023-03-27 01:17:11', '2025-12-17 19:46:57', 'dN9EV6G4', '6043041'), - (625, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dN9EV6G4', '6044838'), - (625, 1987, 'maybe', '2023-04-07 16:01:39', '2025-12-17 19:47:00', 'dN9EV6G4', '6044839'), - (625, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9EV6G4', '6045684'), - (625, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dN9EV6G4', '6050104'), - (625, 1995, 'not_attending', '2023-04-02 23:51:04', '2025-12-17 19:46:58', 'dN9EV6G4', '6050663'), - (625, 1996, 'maybe', '2023-04-02 22:37:48', '2025-12-17 19:46:58', 'dN9EV6G4', '6050667'), - (625, 1998, 'maybe', '2023-04-07 19:54:48', '2025-12-17 19:46:59', 'dN9EV6G4', '6052056'), - (625, 2001, 'maybe', '2023-04-04 23:37:24', '2025-12-17 19:46:58', 'dN9EV6G4', '6052569'), - (625, 2002, 'not_attending', '2023-04-25 23:27:44', '2025-12-17 19:47:01', 'dN9EV6G4', '6052605'), - (625, 2003, 'not_attending', '2023-05-18 13:16:17', '2025-12-17 19:47:03', 'dN9EV6G4', '6052606'), - (625, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dN9EV6G4', '6053195'), - (625, 2006, 'not_attending', '2023-04-07 19:55:10', '2025-12-17 19:46:59', 'dN9EV6G4', '6053198'), - (625, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dN9EV6G4', '6056085'), - (625, 2011, 'attending', '2023-04-08 19:35:04', '2025-12-17 19:46:59', 'dN9EV6G4', '6056916'), - (625, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dN9EV6G4', '6059290'), - (625, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dN9EV6G4', '6060328'), - (625, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dN9EV6G4', '6061037'), - (625, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dN9EV6G4', '6061039'), - (625, 2021, 'maybe', '2023-04-15 22:13:37', '2025-12-17 19:47:00', 'dN9EV6G4', '6066316'), - (625, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dN9EV6G4', '6067245'), - (625, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dN9EV6G4', '6068094'), - (625, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dN9EV6G4', '6068252'), - (625, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dN9EV6G4', '6068253'), - (625, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dN9EV6G4', '6068254'), - (625, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dN9EV6G4', '6068280'), - (625, 2032, 'attending', '2023-06-02 18:28:24', '2025-12-17 19:47:04', 'dN9EV6G4', '6068281'), - (625, 2033, 'maybe', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dN9EV6G4', '6069093'), - (625, 2035, 'not_attending', '2023-05-01 07:08:34', '2025-12-17 19:47:02', 'dN9EV6G4', '6070142'), - (625, 2038, 'not_attending', '2023-04-25 23:27:53', '2025-12-17 19:47:01', 'dN9EV6G4', '6071944'), - (625, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dN9EV6G4', '6072528'), - (625, 2043, 'maybe', '2023-04-25 23:27:16', '2025-12-17 19:47:01', 'dN9EV6G4', '6073023'), - (625, 2047, 'maybe', '2023-05-02 23:51:45', '2025-12-17 19:47:02', 'dN9EV6G4', '6076027'), - (625, 2049, 'maybe', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dN9EV6G4', '6079840'), - (625, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dN9EV6G4', '6083398'), - (625, 2052, 'maybe', '2023-05-04 21:51:37', '2025-12-17 19:47:02', 'dN9EV6G4', '6088220'), - (625, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dN9EV6G4', '6093504'), - (625, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dN9EV6G4', '6097414'), - (625, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dN9EV6G4', '6097442'), - (625, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dN9EV6G4', '6097684'), - (625, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dN9EV6G4', '6098762'), - (625, 2064, 'attending', '2023-06-22 21:15:19', '2025-12-17 19:46:50', 'dN9EV6G4', '6099988'), - (625, 2065, 'not_attending', '2023-06-16 20:38:22', '2025-12-17 19:46:49', 'dN9EV6G4', '6101169'), - (625, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dN9EV6G4', '6101361'), - (625, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dN9EV6G4', '6101362'), - (625, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dN9EV6G4', '6103752'), - (625, 2074, 'not_attending', '2023-05-21 11:18:22', '2025-12-17 19:47:03', 'dN9EV6G4', '6107312'), - (625, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dN9EV6G4', '6107314'), - (625, 2077, 'not_attending', '2023-06-17 21:15:26', '2025-12-17 19:46:49', 'dN9EV6G4', '6110217'), - (625, 2080, 'maybe', '2023-05-26 20:39:23', '2025-12-17 19:47:04', 'dN9EV6G4', '6114677'), - (625, 2083, 'not_attending', '2023-05-26 20:39:17', '2025-12-17 19:47:04', 'dN9EV6G4', '6115629'), - (625, 2084, 'maybe', '2023-05-26 20:39:10', '2025-12-17 19:47:04', 'dN9EV6G4', '6117127'), - (625, 2086, 'maybe', '2023-05-26 19:07:35', '2025-12-17 19:47:04', 'dN9EV6G4', '6119877'), - (625, 2087, 'maybe', '2023-05-28 23:17:04', '2025-12-17 19:47:04', 'dN9EV6G4', '6120034'), - (625, 2091, 'maybe', '2023-06-04 05:14:36', '2025-12-17 19:47:04', 'dN9EV6G4', '6130657'), - (625, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dN9EV6G4', '6136733'), - (625, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dN9EV6G4', '6137989'), - (625, 2099, 'not_attending', '2023-06-15 14:19:47', '2025-12-17 19:46:49', 'dN9EV6G4', '6143012'), - (625, 2105, 'maybe', '2023-06-17 08:31:52', '2025-12-17 19:46:50', 'dN9EV6G4', '6149551'), - (625, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dN9EV6G4', '6150864'), - (625, 2109, 'maybe', '2023-06-23 19:01:08', '2025-12-17 19:46:50', 'dN9EV6G4', '6152821'), - (625, 2110, 'maybe', '2023-06-21 03:08:28', '2025-12-17 19:46:50', 'dN9EV6G4', '6155491'), - (625, 2114, 'not_attending', '2023-06-25 07:59:13', '2025-12-17 19:46:50', 'dN9EV6G4', '6158648'), - (625, 2115, 'not_attending', '2023-06-25 21:21:45', '2025-12-17 19:46:50', 'dN9EV6G4', '6161437'), - (625, 2116, 'maybe', '2023-07-06 08:04:06', '2025-12-17 19:46:51', 'dN9EV6G4', '6163389'), - (625, 2117, 'not_attending', '2023-06-25 07:59:15', '2025-12-17 19:46:50', 'dN9EV6G4', '6163750'), - (625, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dN9EV6G4', '6164417'), - (625, 2119, 'maybe', '2023-06-26 02:49:36', '2025-12-17 19:46:50', 'dN9EV6G4', '6165461'), - (625, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dN9EV6G4', '6166388'), - (625, 2121, 'not_attending', '2023-06-28 12:51:50', '2025-12-17 19:46:50', 'dN9EV6G4', '6176439'), - (625, 2123, 'not_attending', '2023-06-28 12:51:52', '2025-12-17 19:46:50', 'dN9EV6G4', '6176502'), - (625, 2128, 'maybe', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dN9EV6G4', '6182410'), - (625, 2131, 'maybe', '2023-07-05 08:47:14', '2025-12-17 19:46:51', 'dN9EV6G4', '6185812'), - (625, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dN9EV6G4', '6187651'), - (625, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dN9EV6G4', '6187963'), - (625, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dN9EV6G4', '6187964'), - (625, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dN9EV6G4', '6187966'), - (625, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dN9EV6G4', '6187967'), - (625, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dN9EV6G4', '6187969'), - (625, 2142, 'maybe', '2023-07-16 01:00:28', '2025-12-17 19:46:52', 'dN9EV6G4', '6333850'), - (625, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dN9EV6G4', '6334878'), - (625, 2146, 'not_attending', '2023-07-16 07:55:09', '2025-12-17 19:46:53', 'dN9EV6G4', '6335638'), - (625, 2149, 'not_attending', '2023-07-10 14:08:32', '2025-12-17 19:46:53', 'dN9EV6G4', '6335682'), - (625, 2152, 'maybe', '2023-07-14 18:33:42', '2025-12-17 19:46:52', 'dN9EV6G4', '6337021'), - (625, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dN9EV6G4', '6337236'), - (625, 2155, 'attending', '2023-07-16 01:00:40', '2025-12-17 19:46:53', 'dN9EV6G4', '6337970'), - (625, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dN9EV6G4', '6338308'), - (625, 2157, 'maybe', '2023-07-14 09:03:37', '2025-12-17 19:46:52', 'dN9EV6G4', '6338342'), - (625, 2158, 'maybe', '2023-07-21 19:29:36', '2025-12-17 19:46:53', 'dN9EV6G4', '6338353'), - (625, 2159, 'attending', '2023-07-16 07:55:38', '2025-12-17 19:46:53', 'dN9EV6G4', '6338355'), - (625, 2160, 'not_attending', '2023-07-16 07:55:35', '2025-12-17 19:46:54', 'dN9EV6G4', '6338358'), - (625, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dN9EV6G4', '6340845'), - (625, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dN9EV6G4', '6341710'), - (625, 2164, 'not_attending', '2023-07-27 19:22:07', '2025-12-17 19:46:54', 'dN9EV6G4', '6341797'), - (625, 2165, 'maybe', '2023-07-25 08:41:35', '2025-12-17 19:46:54', 'dN9EV6G4', '6342044'), - (625, 2166, 'not_attending', '2023-07-23 06:53:42', '2025-12-17 19:46:54', 'dN9EV6G4', '6342115'), - (625, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dN9EV6G4', '6342298'), - (625, 2170, 'not_attending', '2023-07-23 06:53:48', '2025-12-17 19:46:53', 'dN9EV6G4', '6342307'), - (625, 2171, 'not_attending', '2023-07-23 06:53:58', '2025-12-17 19:46:54', 'dN9EV6G4', '6342328'), - (625, 2174, 'not_attending', '2023-07-23 06:53:32', '2025-12-17 19:46:53', 'dN9EV6G4', '6343294'), - (625, 2176, 'not_attending', '2023-07-23 06:53:38', '2025-12-17 19:46:54', 'dN9EV6G4', '6347034'), - (625, 2177, 'not_attending', '2023-08-07 04:00:24', '2025-12-17 19:46:55', 'dN9EV6G4', '6347053'), - (625, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dN9EV6G4', '6347056'), - (625, 2179, 'not_attending', '2023-08-01 08:26:12', '2025-12-17 19:46:54', 'dN9EV6G4', '6347591'), - (625, 2181, 'not_attending', '2023-07-27 19:22:02', '2025-12-17 19:46:54', 'dN9EV6G4', '6349354'), - (625, 2183, 'not_attending', '2023-07-28 19:04:53', '2025-12-17 19:46:54', 'dN9EV6G4', '6353008'), - (625, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dN9EV6G4', '6353830'), - (625, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dN9EV6G4', '6353831'), - (625, 2187, 'not_attending', '2023-08-07 03:59:36', '2025-12-17 19:46:55', 'dN9EV6G4', '6357559'), - (625, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dN9EV6G4', '6357867'), - (625, 2190, 'not_attending', '2023-08-07 03:59:59', '2025-12-17 19:46:55', 'dN9EV6G4', '6357892'), - (625, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dN9EV6G4', '6358652'), - (625, 2194, 'not_attending', '2023-08-07 03:59:55', '2025-12-17 19:46:54', 'dN9EV6G4', '6358669'), - (625, 2195, 'not_attending', '2023-08-18 17:14:16', '2025-12-17 19:46:55', 'dN9EV6G4', '6359397'), - (625, 2196, 'maybe', '2023-08-20 10:50:33', '2025-12-17 19:46:56', 'dN9EV6G4', '6359398'), - (625, 2197, 'not_attending', '2023-08-20 10:50:35', '2025-12-17 19:46:44', 'dN9EV6G4', '6359399'), - (625, 2198, 'not_attending', '2023-08-20 10:50:38', '2025-12-17 19:46:45', 'dN9EV6G4', '6359400'), - (625, 2199, 'attending', '2023-08-08 09:53:00', '2025-12-17 19:46:55', 'dN9EV6G4', '6359849'), - (625, 2200, 'not_attending', '2023-08-07 04:00:06', '2025-12-17 19:46:55', 'dN9EV6G4', '6359850'), - (625, 2202, 'maybe', '2023-08-06 21:29:43', '2025-12-17 19:46:54', 'dN9EV6G4', '6360509'), - (625, 2204, 'attending', '2023-08-08 09:52:49', '2025-12-17 19:46:55', 'dN9EV6G4', '6361542'), - (625, 2206, 'maybe', '2023-08-08 09:51:49', '2025-12-17 19:46:55', 'dN9EV6G4', '6361659'), - (625, 2208, 'maybe', '2023-08-08 09:17:46', '2025-12-17 19:46:54', 'dN9EV6G4', '6361709'), - (625, 2209, 'attending', '2023-08-08 09:52:55', '2025-12-17 19:46:55', 'dN9EV6G4', '6361710'), - (625, 2210, 'not_attending', '2023-08-08 09:52:58', '2025-12-17 19:46:55', 'dN9EV6G4', '6361711'), - (625, 2211, 'not_attending', '2023-08-11 19:34:44', '2025-12-17 19:46:55', 'dN9EV6G4', '6361712'), - (625, 2212, 'not_attending', '2023-08-20 10:50:40', '2025-12-17 19:46:45', 'dN9EV6G4', '6361713'), - (625, 2213, 'not_attending', '2023-08-09 18:32:09', '2025-12-17 19:46:55', 'dN9EV6G4', '6362935'), - (625, 2214, 'not_attending', '2023-08-11 19:34:50', '2025-12-17 19:46:55', 'dN9EV6G4', '6363218'), - (625, 2217, 'maybe', '2023-08-12 01:55:40', '2025-12-17 19:46:55', 'dN9EV6G4', '6364333'), - (625, 2218, 'not_attending', '2023-08-20 08:21:35', '2025-12-17 19:46:55', 'dN9EV6G4', '6367308'), - (625, 2219, 'not_attending', '2023-08-25 19:06:18', '2025-12-17 19:46:55', 'dN9EV6G4', '6367309'), - (625, 2220, 'not_attending', '2023-08-20 10:50:45', '2025-12-17 19:46:56', 'dN9EV6G4', '6367310'), - (625, 2221, 'not_attending', '2023-08-14 22:42:48', '2025-12-17 19:46:55', 'dN9EV6G4', '6367357'), - (625, 2224, 'not_attending', '2023-08-16 00:27:34', '2025-12-17 19:46:55', 'dN9EV6G4', '6367635'), - (625, 2225, 'maybe', '2023-08-17 22:12:52', '2025-12-17 19:46:55', 'dN9EV6G4', '6368434'), - (625, 2227, 'not_attending', '2023-08-20 08:21:31', '2025-12-17 19:46:55', 'dN9EV6G4', '6370581'), - (625, 2229, 'not_attending', '2023-08-20 20:58:40', '2025-12-17 19:46:55', 'dN9EV6G4', '6373787'), - (625, 2231, 'not_attending', '2023-08-21 18:01:56', '2025-12-17 19:46:55', 'dN9EV6G4', '6374748'), - (625, 2232, 'attending', '2023-08-21 18:24:00', '2025-12-17 19:46:55', 'dN9EV6G4', '6374818'), - (625, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dN9EV6G4', '6382573'), - (625, 2236, 'not_attending', '2023-08-25 19:06:22', '2025-12-17 19:46:55', 'dN9EV6G4', '6382618'), - (625, 2237, 'attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'dN9EV6G4', '6383149'), - (625, 2239, 'attending', '2023-08-31 18:01:20', '2025-12-17 19:46:56', 'dN9EV6G4', '6387592'), - (625, 2240, 'attending', '2023-09-02 00:21:00', '2025-12-17 19:46:56', 'dN9EV6G4', '6388603'), - (625, 2241, 'attending', '2023-09-02 00:21:05', '2025-12-17 19:46:44', 'dN9EV6G4', '6388604'), - (625, 2242, 'maybe', '2023-09-02 00:21:11', '2025-12-17 19:46:45', 'dN9EV6G4', '6388606'), - (625, 2243, 'not_attending', '2023-09-04 23:34:06', '2025-12-17 19:46:56', 'dN9EV6G4', '6393686'), - (625, 2244, 'attending', '2023-09-04 23:34:10', '2025-12-17 19:46:44', 'dN9EV6G4', '6393700'), - (625, 2245, 'maybe', '2023-09-05 09:28:28', '2025-12-17 19:46:45', 'dN9EV6G4', '6393703'), - (625, 2247, 'not_attending', '2023-09-05 19:53:22', '2025-12-17 19:46:56', 'dN9EV6G4', '6394628'), - (625, 2248, 'not_attending', '2023-09-05 19:53:27', '2025-12-17 19:46:44', 'dN9EV6G4', '6394629'), - (625, 2249, 'not_attending', '2023-09-05 19:53:29', '2025-12-17 19:46:45', 'dN9EV6G4', '6394630'), - (625, 2250, 'not_attending', '2023-09-05 19:53:33', '2025-12-17 19:46:45', 'dN9EV6G4', '6394631'), - (625, 2252, 'not_attending', '2023-09-18 14:44:55', '2025-12-17 19:46:45', 'dN9EV6G4', '6396837'), - (625, 2253, 'maybe', '2023-09-11 18:00:25', '2025-12-17 19:46:45', 'dN9EV6G4', '6401811'), - (625, 2255, 'maybe', '2023-09-13 18:23:38', '2025-12-17 19:46:45', 'dN9EV6G4', '6403562'), - (625, 2256, 'not_attending', '2023-09-13 18:23:30', '2025-12-17 19:46:45', 'dN9EV6G4', '6404369'), - (625, 2257, 'maybe', '2023-09-16 18:20:32', '2025-12-17 19:46:44', 'dN9EV6G4', '6408068'), - (625, 2258, 'not_attending', '2023-09-21 16:31:33', '2025-12-17 19:46:45', 'dN9EV6G4', '6419492'), - (625, 2259, 'maybe', '2023-09-22 20:14:56', '2025-12-17 19:46:45', 'dN9EV6G4', '6421257'), - (625, 2261, 'not_attending', '2023-09-25 11:49:15', '2025-12-17 19:46:45', 'dN9EV6G4', '6427422'), - (625, 2263, 'maybe', '2023-09-26 22:44:01', '2025-12-17 19:46:45', 'dN9EV6G4', '6429351'), - (625, 2265, 'attending', '2023-09-30 20:29:35', '2025-12-17 19:46:45', 'dN9EV6G4', '6439625'), - (625, 2266, 'maybe', '2023-10-04 00:21:55', '2025-12-17 19:46:45', 'dN9EV6G4', '6439635'), - (625, 2267, 'not_attending', '2023-10-04 16:15:07', '2025-12-17 19:46:45', 'dN9EV6G4', '6440034'), - (625, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dN9EV6G4', '6440863'), - (625, 2269, 'not_attending', '2023-10-02 18:40:03', '2025-12-17 19:46:45', 'dN9EV6G4', '6442978'), - (625, 2271, 'not_attending', '2023-10-04 16:15:24', '2025-12-17 19:46:45', 'dN9EV6G4', '6445375'), - (625, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dN9EV6G4', '6445440'), - (625, 2273, 'not_attending', '2023-10-04 14:05:32', '2025-12-17 19:46:45', 'dN9EV6G4', '6448282'), - (625, 2274, 'maybe', '2023-10-06 05:57:51', '2025-12-17 19:46:45', 'dN9EV6G4', '6448287'), - (625, 2275, 'maybe', '2023-10-07 20:42:33', '2025-12-17 19:46:45', 'dN9EV6G4', '6453777'), - (625, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dN9EV6G4', '6453951'), - (625, 2277, 'not_attending', '2023-10-08 22:21:08', '2025-12-17 19:46:46', 'dN9EV6G4', '6455211'), - (625, 2278, 'not_attending', '2023-10-08 22:21:35', '2025-12-17 19:46:45', 'dN9EV6G4', '6455213'), - (625, 2279, 'maybe', '2023-10-08 21:20:50', '2025-12-17 19:46:46', 'dN9EV6G4', '6455460'), - (625, 2280, 'not_attending', '2023-10-08 20:38:14', '2025-12-17 19:46:46', 'dN9EV6G4', '6455470'), - (625, 2283, 'not_attending', '2023-10-08 22:21:21', '2025-12-17 19:46:46', 'dN9EV6G4', '6455503'), - (625, 2284, 'not_attending', '2023-10-11 02:51:42', '2025-12-17 19:46:46', 'dN9EV6G4', '6460928'), - (625, 2285, 'not_attending', '2023-10-21 00:55:45', '2025-12-17 19:46:47', 'dN9EV6G4', '6460929'), - (625, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dN9EV6G4', '6461696'), - (625, 2288, 'not_attending', '2023-10-11 02:51:34', '2025-12-17 19:46:46', 'dN9EV6G4', '6462068'), - (625, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dN9EV6G4', '6462129'), - (625, 2290, 'not_attending', '2023-10-11 23:01:11', '2025-12-17 19:46:46', 'dN9EV6G4', '6462214'), - (625, 2292, 'maybe', '2023-10-30 02:18:29', '2025-12-17 19:46:47', 'dN9EV6G4', '6462216'), - (625, 2293, 'not_attending', '2023-10-11 21:28:07', '2025-12-17 19:46:46', 'dN9EV6G4', '6463218'), - (625, 2294, 'not_attending', '2023-10-12 16:08:32', '2025-12-17 19:46:46', 'dN9EV6G4', '6465907'), - (625, 2295, 'maybe', '2023-10-14 19:15:27', '2025-12-17 19:46:46', 'dN9EV6G4', '6467832'), - (625, 2296, 'not_attending', '2023-10-13 18:01:21', '2025-12-17 19:46:47', 'dN9EV6G4', '6468393'), - (625, 2299, 'maybe', '2023-10-15 20:42:11', '2025-12-17 19:46:46', 'dN9EV6G4', '6472181'), - (625, 2300, 'maybe', '2023-10-18 15:12:54', '2025-12-17 19:46:47', 'dN9EV6G4', '6472185'), - (625, 2301, 'not_attending', '2023-10-16 13:33:36', '2025-12-17 19:46:46', 'dN9EV6G4', '6474276'), - (625, 2302, 'not_attending', '2023-10-21 00:55:31', '2025-12-17 19:46:46', 'dN9EV6G4', '6482535'), - (625, 2303, 'attending', '2023-10-22 03:59:44', '2025-12-17 19:46:47', 'dN9EV6G4', '6482691'), - (625, 2304, 'attending', '2023-10-27 20:39:20', '2025-12-17 19:46:47', 'dN9EV6G4', '6482693'), - (625, 2306, 'maybe', '2023-11-13 03:08:14', '2025-12-17 19:46:47', 'dN9EV6G4', '6484200'), - (625, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dN9EV6G4', '6484680'), - (625, 2308, 'not_attending', '2023-10-25 05:54:29', '2025-12-17 19:46:47', 'dN9EV6G4', '6485393'), - (625, 2310, 'attending', '2023-10-28 21:42:40', '2025-12-17 19:46:47', 'dN9EV6G4', '6487709'), - (625, 2311, 'not_attending', '2023-10-30 02:18:48', '2025-12-17 19:46:47', 'dN9EV6G4', '6487725'), - (625, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dN9EV6G4', '6507741'), - (625, 2318, 'not_attending', '2023-10-30 16:07:40', '2025-12-17 19:46:47', 'dN9EV6G4', '6508566'), - (625, 2319, 'not_attending', '2023-10-30 16:07:35', '2025-12-17 19:46:47', 'dN9EV6G4', '6508567'), - (625, 2320, 'not_attending', '2023-11-04 03:07:50', '2025-12-17 19:46:47', 'dN9EV6G4', '6508647'), - (625, 2322, 'attending', '2023-11-09 20:41:32', '2025-12-17 19:46:48', 'dN9EV6G4', '6514659'), - (625, 2323, 'not_attending', '2023-11-24 21:31:46', '2025-12-17 19:46:49', 'dN9EV6G4', '6514660'), - (625, 2324, 'attending', '2023-11-29 19:26:28', '2025-12-17 19:46:49', 'dN9EV6G4', '6514662'), - (625, 2325, 'not_attending', '2023-11-29 19:26:31', '2025-12-17 19:46:36', 'dN9EV6G4', '6514663'), - (625, 2326, 'not_attending', '2023-11-09 20:41:38', '2025-12-17 19:46:48', 'dN9EV6G4', '6514805'), - (625, 2327, 'not_attending', '2023-11-02 00:11:07', '2025-12-17 19:46:47', 'dN9EV6G4', '6515494'), - (625, 2328, 'not_attending', '2023-11-02 00:11:04', '2025-12-17 19:46:47', 'dN9EV6G4', '6515504'), - (625, 2329, 'not_attending', '2023-11-03 20:17:10', '2025-12-17 19:46:47', 'dN9EV6G4', '6517138'), - (625, 2331, 'not_attending', '2023-11-14 04:38:06', '2025-12-17 19:46:47', 'dN9EV6G4', '6518640'), - (625, 2332, 'not_attending', '2023-11-04 03:07:44', '2025-12-17 19:46:47', 'dN9EV6G4', '6518655'), - (625, 2333, 'maybe', '2023-11-04 03:08:02', '2025-12-17 19:46:47', 'dN9EV6G4', '6519103'), - (625, 2335, 'not_attending', '2023-11-08 00:00:23', '2025-12-17 19:46:47', 'dN9EV6G4', '6534890'), - (625, 2337, 'maybe', '2023-11-08 01:12:45', '2025-12-17 19:46:48', 'dN9EV6G4', '6535681'), - (625, 2338, 'not_attending', '2023-11-13 01:05:47', '2025-12-17 19:46:48', 'dN9EV6G4', '6538868'), - (625, 2339, 'maybe', '2023-11-09 20:41:09', '2025-12-17 19:46:47', 'dN9EV6G4', '6539128'), - (625, 2342, 'not_attending', '2023-11-14 04:38:02', '2025-12-17 19:46:47', 'dN9EV6G4', '6545076'), - (625, 2346, 'attending', '2023-11-18 22:38:49', '2025-12-17 19:46:48', 'dN9EV6G4', '6582418'), - (625, 2350, 'attending', '2023-11-20 22:39:04', '2025-12-17 19:46:48', 'dN9EV6G4', '6584352'), - (625, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dN9EV6G4', '6584747'), - (625, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dN9EV6G4', '6587097'), - (625, 2361, 'attending', '2023-12-02 21:51:25', '2025-12-17 19:46:48', 'dN9EV6G4', '6602009'), - (625, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dN9EV6G4', '6609022'), - (625, 2366, 'not_attending', '2023-12-12 16:50:54', '2025-12-17 19:46:36', 'dN9EV6G4', '6615304'), - (625, 2370, 'maybe', '2023-12-12 16:51:14', '2025-12-17 19:46:36', 'dN9EV6G4', '6623765'), - (625, 2373, 'attending', '2023-12-20 01:30:16', '2025-12-17 19:46:38', 'dN9EV6G4', '6632678'), - (625, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dN9EV6G4', '6632757'), - (625, 2377, 'not_attending', '2024-01-08 23:52:30', '2025-12-17 19:46:37', 'dN9EV6G4', '6643448'), - (625, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dN9EV6G4', '6644187'), - (625, 2380, 'attending', '2023-12-30 23:47:27', '2025-12-17 19:46:37', 'dN9EV6G4', '6645105'), - (625, 2384, 'not_attending', '2024-01-04 21:32:41', '2025-12-17 19:46:37', 'dN9EV6G4', '6648022'), - (625, 2385, 'maybe', '2024-01-08 07:59:58', '2025-12-17 19:46:37', 'dN9EV6G4', '6648943'), - (625, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dN9EV6G4', '6648951'), - (625, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dN9EV6G4', '6648952'), - (625, 2388, 'not_attending', '2024-01-03 17:17:00', '2025-12-17 19:46:37', 'dN9EV6G4', '6649244'), - (625, 2389, 'not_attending', '2024-01-13 01:01:57', '2025-12-17 19:46:40', 'dN9EV6G4', '6651094'), - (625, 2390, 'maybe', '2024-01-05 19:56:26', '2025-12-17 19:46:37', 'dN9EV6G4', '6651141'), - (625, 2392, 'not_attending', '2024-01-11 06:37:59', '2025-12-17 19:46:37', 'dN9EV6G4', '6654412'), - (625, 2394, 'not_attending', '2024-01-13 01:01:54', '2025-12-17 19:46:38', 'dN9EV6G4', '6654470'), - (625, 2395, 'maybe', '2024-01-16 23:38:37', '2025-12-17 19:46:38', 'dN9EV6G4', '6654471'), - (625, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dN9EV6G4', '6655401'), - (625, 2397, 'maybe', '2024-01-08 23:52:45', '2025-12-17 19:46:37', 'dN9EV6G4', '6657379'), - (625, 2399, 'maybe', '2024-01-08 23:52:53', '2025-12-17 19:46:38', 'dN9EV6G4', '6657583'), - (625, 2400, 'not_attending', '2024-01-11 06:37:56', '2025-12-17 19:46:37', 'dN9EV6G4', '6659378'), - (625, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dN9EV6G4', '6661585'), - (625, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dN9EV6G4', '6661588'), - (625, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dN9EV6G4', '6661589'), - (625, 2405, 'not_attending', '2024-01-13 01:01:51', '2025-12-17 19:46:38', 'dN9EV6G4', '6667332'), - (625, 2406, 'not_attending', '2024-01-16 23:53:28', '2025-12-17 19:46:40', 'dN9EV6G4', '6692344'), - (625, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dN9EV6G4', '6699906'), - (625, 2408, 'attending', '2024-01-15 07:19:58', '2025-12-17 19:46:40', 'dN9EV6G4', '6699907'), - (625, 2409, 'not_attending', '2024-01-15 07:20:09', '2025-12-17 19:46:41', 'dN9EV6G4', '6699909'), - (625, 2410, 'not_attending', '2024-01-15 07:20:14', '2025-12-17 19:46:41', 'dN9EV6G4', '6699911'), - (625, 2411, 'attending', '2024-01-15 07:20:18', '2025-12-17 19:46:41', 'dN9EV6G4', '6699913'), - (625, 2412, 'maybe', '2024-02-20 03:29:26', '2025-12-17 19:46:43', 'dN9EV6G4', '6700717'), - (625, 2414, 'attending', '2024-01-16 01:39:53', '2025-12-17 19:46:40', 'dN9EV6G4', '6701000'), - (625, 2415, 'attending', '2024-01-16 23:53:54', '2025-12-17 19:46:40', 'dN9EV6G4', '6701001'), - (625, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dN9EV6G4', '6701109'), - (625, 2417, 'not_attending', '2024-01-17 04:17:20', '2025-12-17 19:46:40', 'dN9EV6G4', '6701905'), - (625, 2419, 'not_attending', '2024-02-01 18:52:22', '2025-12-17 19:46:41', 'dN9EV6G4', '6704505'), - (625, 2421, 'not_attending', '2024-01-26 00:43:39', '2025-12-17 19:46:40', 'dN9EV6G4', '6704598'), - (625, 2422, 'not_attending', '2024-01-18 23:44:43', '2025-12-17 19:46:40', 'dN9EV6G4', '6704650'), - (625, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dN9EV6G4', '6705219'), - (625, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dN9EV6G4', '6710153'), - (625, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dN9EV6G4', '6711552'), - (625, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dN9EV6G4', '6711553'), - (625, 2431, 'not_attending', '2024-02-01 14:40:58', '2025-12-17 19:46:41', 'dN9EV6G4', '6712394'), - (625, 2434, 'not_attending', '2024-01-26 00:43:42', '2025-12-17 19:46:40', 'dN9EV6G4', '6716605'), - (625, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dN9EV6G4', '6722688'), - (625, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dN9EV6G4', '6730620'), - (625, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dN9EV6G4', '6730642'), - (625, 2441, 'not_attending', '2024-02-01 18:52:28', '2025-12-17 19:46:41', 'dN9EV6G4', '6731263'), - (625, 2442, 'not_attending', '2024-02-02 20:39:13', '2025-12-17 19:46:41', 'dN9EV6G4', '6732647'), - (625, 2443, 'not_attending', '2024-02-03 20:29:45', '2025-12-17 19:46:41', 'dN9EV6G4', '6733775'), - (625, 2444, 'not_attending', '2024-02-05 03:19:12', '2025-12-17 19:46:41', 'dN9EV6G4', '6734367'), - (625, 2450, 'maybe', '2024-02-05 18:58:52', '2025-12-17 19:46:41', 'dN9EV6G4', '6738807'), - (625, 2451, 'not_attending', '2024-02-07 07:36:26', '2025-12-17 19:46:41', 'dN9EV6G4', '6740333'), - (625, 2452, 'not_attending', '2024-02-08 15:46:11', '2025-12-17 19:46:41', 'dN9EV6G4', '6740361'), - (625, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dN9EV6G4', '6740364'), - (625, 2455, 'not_attending', '2024-02-08 06:16:48', '2025-12-17 19:46:41', 'dN9EV6G4', '6741034'), - (625, 2456, 'not_attending', '2024-02-08 15:46:03', '2025-12-17 19:46:41', 'dN9EV6G4', '6742202'), - (625, 2457, 'not_attending', '2024-02-08 22:08:05', '2025-12-17 19:46:41', 'dN9EV6G4', '6742221'), - (625, 2458, 'not_attending', '2024-02-10 03:00:21', '2025-12-17 19:46:41', 'dN9EV6G4', '6743731'), - (625, 2459, 'not_attending', '2024-02-09 21:09:36', '2025-12-17 19:46:41', 'dN9EV6G4', '6743828'), - (625, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dN9EV6G4', '6743829'), - (625, 2465, 'not_attending', '2024-02-20 03:29:41', '2025-12-17 19:46:42', 'dN9EV6G4', '7026725'), - (625, 2467, 'attending', '2024-02-25 06:04:35', '2025-12-17 19:46:43', 'dN9EV6G4', '7029987'), - (625, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dN9EV6G4', '7030380'), - (625, 2471, 'not_attending', '2024-02-20 02:58:21', '2025-12-17 19:46:42', 'dN9EV6G4', '7032425'), - (625, 2472, 'not_attending', '2024-02-20 02:58:26', '2025-12-17 19:46:42', 'dN9EV6G4', '7033677'), - (625, 2473, 'not_attending', '2024-02-26 08:24:14', '2025-12-17 19:46:43', 'dN9EV6G4', '7033724'), - (625, 2474, 'attending', '2024-02-21 00:26:25', '2025-12-17 19:46:43', 'dN9EV6G4', '7035415'), - (625, 2476, 'not_attending', '2024-02-26 08:24:18', '2025-12-17 19:46:43', 'dN9EV6G4', '7035691'), - (625, 2477, 'not_attending', '2024-02-21 05:26:26', '2025-12-17 19:46:42', 'dN9EV6G4', '7035692'), - (625, 2478, 'attending', '2024-02-21 00:51:26', '2025-12-17 19:46:43', 'dN9EV6G4', '7036478'), - (625, 2480, 'attending', '2024-02-25 06:04:33', '2025-12-17 19:46:43', 'dN9EV6G4', '7042160'), - (625, 2481, 'maybe', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dN9EV6G4', '7044715'), - (625, 2485, 'not_attending', '2024-02-27 21:45:33', '2025-12-17 19:46:43', 'dN9EV6G4', '7048111'), - (625, 2487, 'not_attending', '2024-03-17 20:27:40', '2025-12-17 19:46:33', 'dN9EV6G4', '7049279'), - (625, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dN9EV6G4', '7050318'), - (625, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dN9EV6G4', '7050319'), - (625, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dN9EV6G4', '7050322'), - (625, 2496, 'not_attending', '2024-03-02 22:20:13', '2025-12-17 19:46:43', 'dN9EV6G4', '7055967'), - (625, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dN9EV6G4', '7057804'), - (625, 2500, 'maybe', '2024-03-06 16:37:47', '2025-12-17 19:46:43', 'dN9EV6G4', '7058603'), - (625, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dN9EV6G4', '7059866'), - (625, 2504, 'not_attending', '2024-03-17 20:27:43', '2025-12-17 19:46:33', 'dN9EV6G4', '7063296'), - (625, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dN9EV6G4', '7072824'), - (625, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dN9EV6G4', '7074348'), - (625, 2509, 'not_attending', '2024-03-28 22:37:33', '2025-12-17 19:46:33', 'dN9EV6G4', '7074349'), - (625, 2514, 'not_attending', '2024-04-24 13:13:09', '2025-12-17 19:46:34', 'dN9EV6G4', '7074354'), - (625, 2518, 'not_attending', '2024-07-23 01:35:16', '2025-12-17 19:46:30', 'dN9EV6G4', '7074358'), - (625, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dN9EV6G4', '7074364'), - (625, 2537, 'not_attending', '2024-03-17 20:27:35', '2025-12-17 19:46:33', 'dN9EV6G4', '7085484'), - (625, 2538, 'not_attending', '2024-03-25 01:54:50', '2025-12-17 19:46:33', 'dN9EV6G4', '7085485'), - (625, 2539, 'maybe', '2024-03-28 15:40:28', '2025-12-17 19:46:33', 'dN9EV6G4', '7085486'), - (625, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dN9EV6G4', '7089267'), - (625, 2547, 'not_attending', '2024-03-28 22:37:29', '2025-12-17 19:46:33', 'dN9EV6G4', '7096945'), - (625, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dN9EV6G4', '7098747'), - (625, 2549, 'maybe', '2024-03-27 21:31:46', '2025-12-17 19:46:33', 'dN9EV6G4', '7099657'), - (625, 2553, 'not_attending', '2024-03-30 02:27:06', '2025-12-17 19:46:33', 'dN9EV6G4', '7113468'), - (625, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dN9EV6G4', '7114856'), - (625, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dN9EV6G4', '7114951'), - (625, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dN9EV6G4', '7114955'), - (625, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dN9EV6G4', '7114956'), - (625, 2558, 'attending', '2024-04-30 01:12:50', '2025-12-17 19:46:35', 'dN9EV6G4', '7114957'), - (625, 2559, 'maybe', '2024-04-02 15:38:01', '2025-12-17 19:46:33', 'dN9EV6G4', '7115254'), - (625, 2563, 'not_attending', '2024-04-07 21:03:40', '2025-12-17 19:46:33', 'dN9EV6G4', '7134734'), - (625, 2564, 'maybe', '2024-04-08 04:23:14', '2025-12-17 19:46:33', 'dN9EV6G4', '7134735'), - (625, 2566, 'maybe', '2024-04-03 04:21:54', '2025-12-17 19:46:34', 'dN9EV6G4', '7140664'), - (625, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dN9EV6G4', '7153615'), - (625, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dN9EV6G4', '7159484'), - (625, 2573, 'maybe', '2024-04-14 02:09:04', '2025-12-17 19:46:34', 'dN9EV6G4', '7160612'), - (625, 2580, 'not_attending', '2024-04-14 18:28:23', '2025-12-17 19:46:34', 'dN9EV6G4', '7167272'), - (625, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dN9EV6G4', '7178446'), - (625, 2595, 'not_attending', '2024-04-24 18:09:35', '2025-12-17 19:46:34', 'dN9EV6G4', '7182252'), - (625, 2597, 'not_attending', '2024-04-21 22:41:50', '2025-12-17 19:46:34', 'dN9EV6G4', '7186726'), - (625, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dN9EV6G4', '7220467'), - (625, 2609, 'not_attending', '2024-04-30 01:42:54', '2025-12-17 19:46:35', 'dN9EV6G4', '7240354'), - (625, 2612, 'not_attending', '2024-05-08 14:39:59', '2025-12-17 19:46:35', 'dN9EV6G4', '7247643'), - (625, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dN9EV6G4', '7251633'), - (625, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dN9EV6G4', '7263048'), - (625, 2626, 'attending', '2024-05-14 10:31:45', '2025-12-17 19:46:35', 'dN9EV6G4', '7264723'), - (625, 2627, 'not_attending', '2024-05-22 10:20:26', '2025-12-17 19:46:35', 'dN9EV6G4', '7264724'), - (625, 2628, 'not_attending', '2024-05-28 02:51:45', '2025-12-17 19:46:36', 'dN9EV6G4', '7264725'), - (625, 2629, 'not_attending', '2024-06-03 12:18:53', '2025-12-17 19:46:28', 'dN9EV6G4', '7264726'), - (625, 2645, 'attending', '2024-05-20 22:12:25', '2025-12-17 19:46:35', 'dN9EV6G4', '7279964'), - (625, 2647, 'attending', '2024-05-20 20:44:40', '2025-12-17 19:46:28', 'dN9EV6G4', '7282057'), - (625, 2653, 'not_attending', '2024-05-25 20:13:36', '2025-12-17 19:46:35', 'dN9EV6G4', '7289186'), - (625, 2656, 'not_attending', '2024-05-30 19:03:09', '2025-12-17 19:46:36', 'dN9EV6G4', '7291301'), - (625, 2659, 'not_attending', '2024-06-01 19:55:24', '2025-12-17 19:46:36', 'dN9EV6G4', '7299599'), - (625, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dN9EV6G4', '7302674'), - (625, 2671, 'maybe', '2024-06-09 20:51:22', '2025-12-17 19:46:28', 'dN9EV6G4', '7318256'), - (625, 2678, 'not_attending', '2024-06-10 12:15:07', '2025-12-17 19:46:28', 'dN9EV6G4', '7319489'), - (625, 2679, 'not_attending', '2024-06-10 12:15:19', '2025-12-17 19:46:29', 'dN9EV6G4', '7319490'), - (625, 2684, 'not_attending', '2024-06-11 19:53:55', '2025-12-17 19:46:28', 'dN9EV6G4', '7322001'), - (625, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dN9EV6G4', '7324073'), - (625, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dN9EV6G4', '7324074'), - (625, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dN9EV6G4', '7324075'), - (625, 2691, 'not_attending', '2024-07-20 20:54:41', '2025-12-17 19:46:30', 'dN9EV6G4', '7324076'), - (625, 2692, 'not_attending', '2024-07-23 01:35:07', '2025-12-17 19:46:30', 'dN9EV6G4', '7324077'), - (625, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dN9EV6G4', '7324078'), - (625, 2695, 'not_attending', '2024-08-17 21:27:08', '2025-12-17 19:46:32', 'dN9EV6G4', '7324080'), - (625, 2696, 'not_attending', '2024-08-17 21:27:14', '2025-12-17 19:46:32', 'dN9EV6G4', '7324081'), - (625, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dN9EV6G4', '7324082'), - (625, 2698, 'not_attending', '2024-09-07 03:18:52', '2025-12-17 19:46:24', 'dN9EV6G4', '7324083'), - (625, 2699, 'maybe', '2024-06-12 21:10:36', '2025-12-17 19:46:28', 'dN9EV6G4', '7324385'), - (625, 2701, 'maybe', '2024-06-20 02:19:08', '2025-12-17 19:46:29', 'dN9EV6G4', '7324391'), - (625, 2706, 'maybe', '2024-06-18 15:37:11', '2025-12-17 19:46:28', 'dN9EV6G4', '7324947'), - (625, 2707, 'not_attending', '2024-06-13 20:17:21', '2025-12-17 19:46:28', 'dN9EV6G4', '7324952'), - (625, 2719, 'not_attending', '2024-06-18 20:47:19', '2025-12-17 19:46:29', 'dN9EV6G4', '7331305'), - (625, 2722, 'not_attending', '2024-07-05 20:25:00', '2025-12-17 19:46:29', 'dN9EV6G4', '7331457'), - (625, 2726, 'attending', '2024-06-19 19:18:18', '2025-12-17 19:46:29', 'dN9EV6G4', '7332853'), - (625, 2738, 'not_attending', '2024-07-04 11:58:58', '2025-12-17 19:46:29', 'dN9EV6G4', '7344085'), - (625, 2743, 'not_attending', '2024-07-04 11:58:54', '2025-12-17 19:46:29', 'dN9EV6G4', '7345688'), - (625, 2745, 'not_attending', '2024-07-23 01:35:23', '2025-12-17 19:46:30', 'dN9EV6G4', '7348712'), - (625, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dN9EV6G4', '7356752'), - (625, 2764, 'not_attending', '2024-07-23 01:35:28', '2025-12-17 19:46:30', 'dN9EV6G4', '7363595'), - (625, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dN9EV6G4', '7363643'), - (625, 2772, 'not_attending', '2024-07-23 01:35:12', '2025-12-17 19:46:30', 'dN9EV6G4', '7368267'), - (625, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dN9EV6G4', '7368606'), - (625, 2781, 'not_attending', '2024-07-25 21:16:33', '2025-12-17 19:46:30', 'dN9EV6G4', '7373194'), - (625, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dN9EV6G4', '7397462'), - (625, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dN9EV6G4', '7424275'), - (625, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dN9EV6G4', '7424276'), - (625, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dN9EV6G4', '7432751'), - (625, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dN9EV6G4', '7432752'), - (625, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dN9EV6G4', '7432753'), - (625, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dN9EV6G4', '7432754'), - (625, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dN9EV6G4', '7432755'), - (625, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dN9EV6G4', '7432756'), - (625, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dN9EV6G4', '7432758'), - (625, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dN9EV6G4', '7432759'), - (625, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dN9EV6G4', '7433834'), - (625, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dN9EV6G4', '7470197'), - (625, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dN9EV6G4', '7685613'), - (625, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dN9EV6G4', '7688194'), - (625, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dN9EV6G4', '7688196'), - (625, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dN9EV6G4', '7688289'), - (625, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dN9EV6G4', '7825913'), - (625, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dN9EV6G4', '7826209'), - (625, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dN9EV6G4', '7834742'), - (625, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dN9EV6G4', '7842108'), - (625, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dN9EV6G4', '7842902'), - (625, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dN9EV6G4', '7842903'), - (625, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dN9EV6G4', '7842904'), - (625, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dN9EV6G4', '7842905'), - (625, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dN9EV6G4', '7855719'), - (625, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dN9EV6G4', '7860683'), - (625, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dN9EV6G4', '7860684'), - (625, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dN9EV6G4', '7866095'), - (625, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dN9EV6G4', '7869170'), - (625, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dN9EV6G4', '7869188'), - (625, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dN9EV6G4', '7869201'), - (625, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dN9EV6G4', '7877465'), - (625, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dN9EV6G4', '7888250'), - (625, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dN9EV6G4', '7904777'), - (625, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dN9EV6G4', '8349164'), - (625, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dN9EV6G4', '8349545'), - (625, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dN9EV6G4', '8368028'), - (625, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dN9EV6G4', '8368029'), - (625, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dN9EV6G4', '8388462'), - (625, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dN9EV6G4', '8400273'), - (625, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dN9EV6G4', '8400275'), - (625, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dN9EV6G4', '8400276'), - (625, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dN9EV6G4', '8404977'), - (625, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dN9EV6G4', '8430783'), - (625, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dN9EV6G4', '8430784'), - (625, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dN9EV6G4', '8430799'), - (625, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dN9EV6G4', '8430800'), - (625, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dN9EV6G4', '8430801'), - (625, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dN9EV6G4', '8438709'), - (625, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dN9EV6G4', '8457738'), - (625, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dN9EV6G4', '8459566'), - (625, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dN9EV6G4', '8459567'), - (625, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dN9EV6G4', '8461032'), - (625, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dN9EV6G4', '8477877'), - (625, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dN9EV6G4', '8485688'), - (625, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dN9EV6G4', '8490587'), - (625, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dN9EV6G4', '8493552'), - (625, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dN9EV6G4', '8493553'), - (625, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dN9EV6G4', '8493554'), - (625, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dN9EV6G4', '8493555'), - (625, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dN9EV6G4', '8493556'), - (625, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dN9EV6G4', '8493557'), - (625, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dN9EV6G4', '8493558'), - (625, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dN9EV6G4', '8493559'), - (625, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dN9EV6G4', '8493560'), - (625, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dN9EV6G4', '8493561'), - (625, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dN9EV6G4', '8493572'), - (625, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dN9EV6G4', '8540725'), - (625, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dN9EV6G4', '8555421'), - (626, 2806, 'attending', '2024-09-18 13:57:39', '2025-12-17 19:46:25', '4oql9XXm', '7404888'), - (626, 2821, 'attending', '2024-10-07 20:11:00', '2025-12-17 19:46:26', '4oql9XXm', '7424275'), - (626, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4oql9XXm', '7424276'), - (626, 2824, 'attending', '2024-09-13 02:41:57', '2025-12-17 19:46:25', '4oql9XXm', '7432751'), - (626, 2825, 'attending', '2024-09-19 14:52:17', '2025-12-17 19:46:25', '4oql9XXm', '7432752'), - (626, 2826, 'attending', '2024-09-27 21:58:45', '2025-12-17 19:46:25', '4oql9XXm', '7432753'), - (626, 2827, 'attending', '2024-10-05 16:24:08', '2025-12-17 19:46:26', '4oql9XXm', '7432754'), - (626, 2828, 'not_attending', '2024-10-15 17:59:11', '2025-12-17 19:46:26', '4oql9XXm', '7432755'), - (626, 2829, 'attending', '2024-10-24 03:51:34', '2025-12-17 19:46:26', '4oql9XXm', '7432756'), - (626, 2830, 'attending', '2024-11-02 15:19:59', '2025-12-17 19:46:26', '4oql9XXm', '7432758'), - (626, 2831, 'attending', '2024-11-09 20:05:16', '2025-12-17 19:46:26', '4oql9XXm', '7432759'), - (626, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '4oql9XXm', '7433834'), - (626, 2834, 'attending', '2024-09-13 14:22:45', '2025-12-17 19:46:25', '4oql9XXm', '7433852'), - (626, 2835, 'attending', '2024-09-11 15:09:49', '2025-12-17 19:46:24', '4oql9XXm', '7437354'), - (626, 2838, 'attending', '2024-09-26 01:52:24', '2025-12-17 19:46:25', '4oql9XXm', '7439182'), - (626, 2839, 'attending', '2024-09-25 16:02:19', '2025-12-17 19:46:25', '4oql9XXm', '7439262'), - (626, 2844, 'attending', '2024-09-20 01:50:41', '2025-12-17 19:46:25', '4oql9XXm', '7450233'), - (626, 2847, 'attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', '4oql9XXm', '7452299'), - (626, 2849, 'attending', '2024-09-29 15:04:33', '2025-12-17 19:46:25', '4oql9XXm', '7457114'), - (626, 2850, 'attending', '2024-09-29 15:05:03', '2025-12-17 19:46:25', '4oql9XXm', '7457153'), - (626, 2855, 'attending', '2024-10-03 22:42:13', '2025-12-17 19:46:26', '4oql9XXm', '7469385'), - (626, 2856, 'attending', '2024-10-07 20:09:25', '2025-12-17 19:46:26', '4oql9XXm', '7469386'), - (626, 2858, 'attending', '2024-10-17 21:59:59', '2025-12-17 19:46:26', '4oql9XXm', '7469388'), - (626, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4oql9XXm', '7470197'), - (626, 2863, 'maybe', '2024-10-04 15:59:03', '2025-12-17 19:46:26', '4oql9XXm', '7470275'), - (626, 2868, 'maybe', '2024-10-04 15:59:19', '2025-12-17 19:46:26', '4oql9XXm', '7474506'), - (626, 2870, 'attending', '2024-10-05 16:23:16', '2025-12-17 19:46:26', '4oql9XXm', '7475068'), - (626, 2878, 'attending', '2024-10-15 17:58:56', '2025-12-17 19:46:26', '4oql9XXm', '7633857'), - (626, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4oql9XXm', '7685613'), - (626, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4oql9XXm', '7688194'), - (626, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4oql9XXm', '7688196'), - (626, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4oql9XXm', '7688289'), - (626, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4oql9XXm', '7692763'), - (626, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4oql9XXm', '7697552'), - (626, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4oql9XXm', '7699878'), - (626, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4oql9XXm', '7704043'), - (626, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4oql9XXm', '7712467'), - (626, 2925, 'attending', '2024-12-14 18:07:52', '2025-12-17 19:46:21', '4oql9XXm', '7713584'), - (626, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4oql9XXm', '7713585'), - (626, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4oql9XXm', '7713586'), - (626, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4oql9XXm', '7738518'), - (626, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4oql9XXm', '7750636'), - (626, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4oql9XXm', '7796540'), - (626, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4oql9XXm', '7796541'), - (626, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4oql9XXm', '7796542'), - (626, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4oql9XXm', '7825913'), - (626, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4oql9XXm', '7826209'), - (626, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4oql9XXm', '7834742'), - (626, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '4oql9XXm', '7842108'), - (626, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4oql9XXm', '7842902'), - (626, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4oql9XXm', '7842903'), - (626, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4oql9XXm', '7842904'), - (626, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4oql9XXm', '7842905'), - (626, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4oql9XXm', '7855719'), - (626, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4oql9XXm', '7860683'), - (626, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4oql9XXm', '7860684'), - (626, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4oql9XXm', '7866095'), - (626, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4oql9XXm', '7869170'), - (626, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4oql9XXm', '7869188'), - (626, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4oql9XXm', '7869201'), - (626, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4oql9XXm', '7877465'), - (626, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4oql9XXm', '7878570'), - (626, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4oql9XXm', '7888250'), - (626, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4oql9XXm', '7904777'), - (626, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4oql9XXm', '8349164'), - (626, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4oql9XXm', '8349545'), - (626, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4oql9XXm', '8353584'), - (626, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4oql9XXm', '8368028'), - (626, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4oql9XXm', '8368029'), - (626, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4oql9XXm', '8388462'), - (626, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4oql9XXm', '8400273'), - (626, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4oql9XXm', '8400274'), - (626, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4oql9XXm', '8400275'), - (626, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4oql9XXm', '8400276'), - (626, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4oql9XXm', '8404977'), - (626, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '4oql9XXm', '8430783'), - (626, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4oql9XXm', '8430784'), - (626, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4oql9XXm', '8430799'), - (626, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4oql9XXm', '8430800'), - (626, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4oql9XXm', '8430801'), - (626, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4oql9XXm', '8438709'), - (626, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4oql9XXm', '8457738'), - (626, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4oql9XXm', '8459566'), - (626, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4oql9XXm', '8459567'), - (626, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4oql9XXm', '8461032'), - (626, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4oql9XXm', '8477877'), - (626, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4oql9XXm', '8485688'), - (627, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVgwNzrm', '5880942'), - (627, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVgwNzrm', '5880943'), - (627, 1885, 'attending', '2023-02-24 05:38:11', '2025-12-17 19:47:08', 'dVgwNzrm', '5899928'), - (627, 1888, 'attending', '2023-02-16 04:21:17', '2025-12-17 19:47:07', 'dVgwNzrm', '5900197'), - (627, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVgwNzrm', '5900200'), - (627, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVgwNzrm', '5900202'), - (627, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVgwNzrm', '5900203'), - (627, 1908, 'attending', '2023-02-16 04:20:27', '2025-12-17 19:47:07', 'dVgwNzrm', '5905018'), - (627, 1912, 'attending', '2023-02-16 04:21:26', '2025-12-17 19:47:07', 'dVgwNzrm', '5909808'), - (627, 1915, 'attending', '2023-02-15 03:44:16', '2025-12-17 19:47:07', 'dVgwNzrm', '5910522'), - (627, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'dVgwNzrm', '5910526'), - (627, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dVgwNzrm', '5910528'), - (627, 1922, 'attending', '2023-02-16 23:30:40', '2025-12-17 19:47:07', 'dVgwNzrm', '5916219'), - (627, 1924, 'attending', '2023-02-16 23:31:03', '2025-12-17 19:47:07', 'dVgwNzrm', '5931095'), - (627, 1928, 'not_attending', '2023-02-18 04:50:34', '2025-12-17 19:47:07', 'dVgwNzrm', '5932627'), - (627, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVgwNzrm', '5936234'), - (627, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVgwNzrm', '5958351'), - (627, 1936, 'not_attending', '2023-02-27 04:40:11', '2025-12-17 19:47:08', 'dVgwNzrm', '5959397'), - (627, 1938, 'attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVgwNzrm', '5959751'), - (627, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVgwNzrm', '5959755'), - (627, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVgwNzrm', '5960055'), - (627, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVgwNzrm', '5961684'), - (627, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVgwNzrm', '5962132'), - (627, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVgwNzrm', '5962133'), - (627, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVgwNzrm', '5962134'), - (627, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVgwNzrm', '5962317'), - (627, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVgwNzrm', '5962318'), - (627, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVgwNzrm', '5965933'), - (627, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVgwNzrm', '5967014'), - (627, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVgwNzrm', '5972815'), - (627, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVgwNzrm', '5974016'), - (627, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVgwNzrm', '5981515'), - (627, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVgwNzrm', '5993516'), - (627, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVgwNzrm', '5998939'), - (627, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVgwNzrm', '6028191'), - (627, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVgwNzrm', '6040066'), - (627, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVgwNzrm', '6042717'), - (627, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVgwNzrm', '6044838'), - (627, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVgwNzrm', '6044839'), - (627, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVgwNzrm', '6045684'), - (627, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVgwNzrm', '6050104'), - (627, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVgwNzrm', '6053195'), - (627, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVgwNzrm', '6053198'), - (627, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVgwNzrm', '6056085'), - (627, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVgwNzrm', '6056916'), - (627, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVgwNzrm', '6059290'), - (627, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVgwNzrm', '6060328'), - (627, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVgwNzrm', '6061037'), - (627, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVgwNzrm', '6061039'), - (627, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVgwNzrm', '6067245'), - (627, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVgwNzrm', '6068094'), - (627, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVgwNzrm', '6068252'), - (627, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVgwNzrm', '6068253'), - (627, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVgwNzrm', '6068254'), - (627, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVgwNzrm', '6068280'), - (627, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVgwNzrm', '6069093'), - (627, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVgwNzrm', '6072528'), - (627, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVgwNzrm', '6079840'), - (627, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVgwNzrm', '6083398'), - (627, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVgwNzrm', '6093504'), - (627, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVgwNzrm', '6097414'), - (627, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVgwNzrm', '6097442'), - (627, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVgwNzrm', '6097684'), - (627, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVgwNzrm', '6098762'), - (627, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVgwNzrm', '6101362'), - (627, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVgwNzrm', '6103752'), - (627, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVgwNzrm', '6107314'), - (628, 10, 'not_attending', '2020-03-28 21:45:08', '2025-12-17 19:47:56', 'nm687ZR4', '2958053'), - (628, 27, 'not_attending', '2020-04-21 21:38:51', '2025-12-17 19:47:57', 'nm687ZR4', '2958083'), - (628, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'nm687ZR4', '2961309'), - (628, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'nm687ZR4', '2961895'), - (628, 32, 'attending', '2020-03-31 22:32:00', '2025-12-17 19:47:56', 'nm687ZR4', '2963931'), - (628, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'nm687ZR4', '2969208'), - (628, 40, 'attending', '2020-04-10 22:03:08', '2025-12-17 19:47:57', 'nm687ZR4', '2970718'), - (628, 41, 'attending', '2020-04-10 22:02:42', '2025-12-17 19:47:57', 'nm687ZR4', '2971546'), - (628, 43, 'attending', '2020-04-20 00:21:09', '2025-12-17 19:47:57', 'nm687ZR4', '2974519'), - (628, 44, 'attending', '2020-04-13 22:56:30', '2025-12-17 19:47:57', 'nm687ZR4', '2974534'), - (628, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'nm687ZR4', '2974955'), - (628, 51, 'not_attending', '2020-06-29 21:56:59', '2025-12-17 19:47:55', 'nm687ZR4', '2975276'), - (628, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'nm687ZR4', '2975384'), - (628, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'nm687ZR4', '2975385'), - (628, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'nm687ZR4', '2976575'), - (628, 58, 'not_attending', '2020-04-21 21:38:49', '2025-12-17 19:47:57', 'nm687ZR4', '2977127'), - (628, 59, 'attending', '2020-05-05 22:58:03', '2025-12-17 19:47:57', 'nm687ZR4', '2977128'), - (628, 61, 'not_attending', '2020-04-10 22:03:25', '2025-12-17 19:47:57', 'nm687ZR4', '2977130'), - (628, 69, 'not_attending', '2020-06-29 21:57:02', '2025-12-17 19:47:55', 'nm687ZR4', '2977138'), - (628, 70, 'attending', '2020-04-10 20:53:48', '2025-12-17 19:47:57', 'nm687ZR4', '2977343'), - (628, 71, 'not_attending', '2020-04-10 22:03:28', '2025-12-17 19:47:57', 'nm687ZR4', '2977526'), - (628, 72, 'maybe', '2020-05-07 00:10:35', '2025-12-17 19:47:57', 'nm687ZR4', '2977812'), - (628, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'nm687ZR4', '2977931'), - (628, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', 'nm687ZR4', '2978244'), - (628, 75, 'not_attending', '2020-04-19 19:31:11', '2025-12-17 19:47:57', 'nm687ZR4', '2978245'), - (628, 76, 'attending', '2020-05-02 21:17:40', '2025-12-17 19:47:57', 'nm687ZR4', '2978246'), - (628, 77, 'attending', '2020-05-04 22:52:51', '2025-12-17 19:47:57', 'nm687ZR4', '2978247'), - (628, 78, 'attending', '2020-05-17 19:33:55', '2025-12-17 19:47:57', 'nm687ZR4', '2978249'), - (628, 79, 'attending', '2020-05-26 22:52:13', '2025-12-17 19:47:57', 'nm687ZR4', '2978250'), - (628, 81, 'attending', '2020-06-07 05:03:10', '2025-12-17 19:47:58', 'nm687ZR4', '2978252'), - (628, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'nm687ZR4', '2978433'), - (628, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'nm687ZR4', '2978438'), - (628, 84, 'not_attending', '2020-04-21 21:39:17', '2025-12-17 19:47:57', 'nm687ZR4', '2980871'), - (628, 85, 'not_attending', '2020-04-22 23:51:27', '2025-12-17 19:47:57', 'nm687ZR4', '2980872'), - (628, 86, 'attending', '2020-04-15 22:18:11', '2025-12-17 19:47:57', 'nm687ZR4', '2981388'), - (628, 89, 'not_attending', '2020-05-02 21:17:42', '2025-12-17 19:47:57', 'nm687ZR4', '2982604'), - (628, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'nm687ZR4', '2986743'), - (628, 95, 'attending', '2020-04-23 00:47:02', '2025-12-17 19:47:57', 'nm687ZR4', '2987452'), - (628, 98, 'attending', '2020-05-17 19:33:49', '2025-12-17 19:47:57', 'nm687ZR4', '2987455'), - (628, 99, 'attending', '2020-05-02 21:17:48', '2025-12-17 19:47:57', 'nm687ZR4', '2988545'), - (628, 101, 'not_attending', '2020-04-23 00:46:35', '2025-12-17 19:47:57', 'nm687ZR4', '2989975'), - (628, 102, 'not_attending', '2020-04-29 02:25:42', '2025-12-17 19:47:57', 'nm687ZR4', '2990784'), - (628, 104, 'maybe', '2020-04-25 01:42:54', '2025-12-17 19:47:57', 'nm687ZR4', '2991471'), - (628, 106, 'attending', '2020-04-28 00:38:09', '2025-12-17 19:47:57', 'nm687ZR4', '2993501'), - (628, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'nm687ZR4', '2994480'), - (628, 114, 'attending', '2020-04-29 02:24:56', '2025-12-17 19:47:57', 'nm687ZR4', '2994911'), - (628, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', 'nm687ZR4', '3001217'), - (628, 116, 'not_attending', '2020-05-04 23:17:29', '2025-12-17 19:47:57', 'nm687ZR4', '3006242'), - (628, 121, 'attending', '2020-05-26 22:52:11', '2025-12-17 19:47:57', 'nm687ZR4', '3023063'), - (628, 130, 'attending', '2020-05-28 23:29:21', '2025-12-17 19:47:57', 'nm687ZR4', '3028781'), - (628, 132, 'attending', '2020-06-03 22:27:27', '2025-12-17 19:47:58', 'nm687ZR4', '3033648'), - (628, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'nm687ZR4', '3034321'), - (628, 136, 'attending', '2020-05-24 20:11:46', '2025-12-17 19:47:57', 'nm687ZR4', '3035881'), - (628, 139, 'attending', '2020-05-31 03:56:06', '2025-12-17 19:47:58', 'nm687ZR4', '3046190'), - (628, 140, 'maybe', '2020-05-31 03:57:21', '2025-12-17 19:47:57', 'nm687ZR4', '3046980'), - (628, 142, 'attending', '2020-06-01 23:22:44', '2025-12-17 19:47:58', 'nm687ZR4', '3049860'), - (628, 143, 'maybe', '2020-06-07 05:02:51', '2025-12-17 19:47:58', 'nm687ZR4', '3049983'), - (628, 161, 'not_attending', '2020-10-10 08:04:57', '2025-12-17 19:47:52', 'nm687ZR4', '3058698'), - (628, 168, 'attending', '2020-06-07 05:03:21', '2025-12-17 19:47:58', 'nm687ZR4', '3058740'), - (628, 170, 'attending', '2020-06-07 05:02:40', '2025-12-17 19:47:58', 'nm687ZR4', '3058742'), - (628, 172, 'not_attending', '2020-06-14 04:51:25', '2025-12-17 19:47:58', 'nm687ZR4', '3058959'), - (628, 173, 'maybe', '2020-06-19 00:10:00', '2025-12-17 19:47:58', 'nm687ZR4', '3067093'), - (628, 174, 'attending', '2020-06-08 22:41:13', '2025-12-17 19:47:58', 'nm687ZR4', '3067927'), - (628, 175, 'maybe', '2020-06-17 18:49:33', '2025-12-17 19:47:58', 'nm687ZR4', '3068305'), - (628, 177, 'attending', '2020-06-15 00:48:34', '2025-12-17 19:47:58', 'nm687ZR4', '3073193'), - (628, 178, 'maybe', '2020-06-15 00:48:16', '2025-12-17 19:47:58', 'nm687ZR4', '3073195'), - (628, 179, 'maybe', '2020-06-15 00:49:00', '2025-12-17 19:47:58', 'nm687ZR4', '3073687'), - (628, 181, 'attending', '2020-06-19 21:16:05', '2025-12-17 19:47:58', 'nm687ZR4', '3074513'), - (628, 183, 'maybe', '2020-06-19 21:16:26', '2025-12-17 19:47:58', 'nm687ZR4', '3075228'), - (628, 185, 'maybe', '2020-06-19 21:16:20', '2025-12-17 19:47:58', 'nm687ZR4', '3075456'), - (628, 186, 'maybe', '2020-06-18 20:53:03', '2025-12-17 19:47:55', 'nm687ZR4', '3083791'), - (628, 187, 'maybe', '2020-06-18 20:52:48', '2025-12-17 19:47:55', 'nm687ZR4', '3085151'), - (628, 188, 'attending', '2020-06-21 18:38:09', '2025-12-17 19:47:58', 'nm687ZR4', '3086646'), - (628, 190, 'maybe', '2020-06-29 21:57:05', '2025-12-17 19:47:55', 'nm687ZR4', '3087258'), - (628, 191, 'attending', '2020-07-02 03:56:50', '2025-12-17 19:47:55', 'nm687ZR4', '3087259'), - (628, 192, 'attending', '2020-07-15 18:26:20', '2025-12-17 19:47:55', 'nm687ZR4', '3087260'), - (628, 193, 'not_attending', '2020-07-23 00:21:33', '2025-12-17 19:47:55', 'nm687ZR4', '3087261'), - (628, 194, 'attending', '2020-07-23 00:21:42', '2025-12-17 19:47:55', 'nm687ZR4', '3087262'), - (628, 196, 'attending', '2020-08-13 02:51:29', '2025-12-17 19:47:56', 'nm687ZR4', '3087265'), - (628, 197, 'attending', '2020-08-13 02:53:10', '2025-12-17 19:47:56', 'nm687ZR4', '3087266'), - (628, 198, 'attending', '2020-08-13 02:52:59', '2025-12-17 19:47:56', 'nm687ZR4', '3087267'), - (628, 199, 'attending', '2020-09-05 21:07:38', '2025-12-17 19:47:56', 'nm687ZR4', '3087268'), - (628, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'nm687ZR4', '3088653'), - (628, 202, 'maybe', '2020-06-29 21:57:04', '2025-12-17 19:47:55', 'nm687ZR4', '3090353'), - (628, 204, 'attending', '2020-06-29 20:48:27', '2025-12-17 19:47:55', 'nm687ZR4', '3102758'), - (628, 209, 'not_attending', '2020-06-29 21:56:58', '2025-12-17 19:47:55', 'nm687ZR4', '3106813'), - (628, 212, 'attending', '2020-07-08 00:59:45', '2025-12-17 19:47:55', 'nm687ZR4', '3118517'), - (628, 217, 'attending', '2020-07-14 01:00:19', '2025-12-17 19:47:55', 'nm687ZR4', '3126684'), - (628, 219, 'attending', '2020-08-20 22:56:46', '2025-12-17 19:47:56', 'nm687ZR4', '3129263'), - (628, 223, 'attending', '2020-09-05 21:07:45', '2025-12-17 19:47:56', 'nm687ZR4', '3129980'), - (628, 226, 'maybe', '2020-07-13 21:42:35', '2025-12-17 19:47:55', 'nm687ZR4', '3132817'), - (628, 227, 'maybe', '2020-07-13 21:42:28', '2025-12-17 19:47:55', 'nm687ZR4', '3132820'), - (628, 228, 'attending', '2020-07-13 21:42:48', '2025-12-17 19:47:55', 'nm687ZR4', '3132821'), - (628, 233, 'attending', '2020-07-21 23:45:25', '2025-12-17 19:47:55', 'nm687ZR4', '3139773'), - (628, 269, 'attending', '2020-07-29 03:34:43', '2025-12-17 19:47:55', 'nm687ZR4', '3153076'), - (628, 271, 'maybe', '2020-07-31 04:33:34', '2025-12-17 19:47:56', 'nm687ZR4', '3155321'), - (628, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'nm687ZR4', '3162006'), - (628, 275, 'attending', '2020-08-03 20:18:05', '2025-12-17 19:47:56', 'nm687ZR4', '3163405'), - (628, 277, 'not_attending', '2020-08-03 21:16:28', '2025-12-17 19:47:56', 'nm687ZR4', '3163442'), - (628, 279, 'not_attending', '2020-08-14 18:52:58', '2025-12-17 19:47:56', 'nm687ZR4', '3165202'), - (628, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'nm687ZR4', '3169555'), - (628, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', 'nm687ZR4', '3169556'), - (628, 288, 'not_attending', '2020-09-01 22:35:42', '2025-12-17 19:47:56', 'nm687ZR4', '3170249'), - (628, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'nm687ZR4', '3172832'), - (628, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'nm687ZR4', '3172833'), - (628, 295, 'not_attending', '2020-09-01 22:35:37', '2025-12-17 19:47:56', 'nm687ZR4', '3172834'), - (628, 296, 'maybe', '2020-08-13 02:51:53', '2025-12-17 19:47:56', 'nm687ZR4', '3172876'), - (628, 302, 'attending', '2020-08-16 04:04:52', '2025-12-17 19:47:56', 'nm687ZR4', '3178028'), - (628, 308, 'maybe', '2020-09-01 22:35:56', '2025-12-17 19:47:56', 'nm687ZR4', '3183341'), - (628, 311, 'attending', '2020-09-05 21:07:55', '2025-12-17 19:47:56', 'nm687ZR4', '3186057'), - (628, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'nm687ZR4', '3191735'), - (628, 318, 'maybe', '2020-08-29 22:58:03', '2025-12-17 19:47:56', 'nm687ZR4', '3193885'), - (628, 319, 'maybe', '2020-08-31 22:18:52', '2025-12-17 19:47:56', 'nm687ZR4', '3194179'), - (628, 320, 'maybe', '2020-09-01 22:35:52', '2025-12-17 19:47:56', 'nm687ZR4', '3195552'), - (628, 325, 'not_attending', '2020-09-22 02:59:07', '2025-12-17 19:47:51', 'nm687ZR4', '3197083'), - (628, 335, 'not_attending', '2020-09-01 22:35:21', '2025-12-17 19:47:56', 'nm687ZR4', '3200209'), - (628, 336, 'maybe', '2020-09-15 23:31:22', '2025-12-17 19:47:56', 'nm687ZR4', '3200495'), - (628, 343, 'not_attending', '2020-09-22 02:59:01', '2025-12-17 19:47:56', 'nm687ZR4', '3206759'), - (628, 352, 'not_attending', '2020-09-13 21:05:53', '2025-12-17 19:47:56', 'nm687ZR4', '3210514'), - (628, 354, 'attending', '2020-09-18 03:58:27', '2025-12-17 19:47:56', 'nm687ZR4', '3212570'), - (628, 355, 'attending', '2020-09-16 23:53:42', '2025-12-17 19:47:56', 'nm687ZR4', '3212571'), - (628, 356, 'attending', '2020-09-18 03:58:32', '2025-12-17 19:47:51', 'nm687ZR4', '3212572'), - (628, 357, 'maybe', '2020-09-29 22:07:17', '2025-12-17 19:47:52', 'nm687ZR4', '3212573'), - (628, 360, 'attending', '2020-09-14 13:52:09', '2025-12-17 19:47:56', 'nm687ZR4', '3212671'), - (628, 362, 'attending', '2020-09-26 21:54:25', '2025-12-17 19:47:52', 'nm687ZR4', '3214207'), - (628, 363, 'not_attending', '2020-09-16 23:53:57', '2025-12-17 19:47:52', 'nm687ZR4', '3217037'), - (628, 364, 'attending', '2020-09-18 23:11:39', '2025-12-17 19:47:56', 'nm687ZR4', '3217106'), - (628, 365, 'not_attending', '2020-09-18 03:56:22', '2025-12-17 19:47:51', 'nm687ZR4', '3218510'), - (628, 368, 'not_attending', '2020-10-02 01:16:25', '2025-12-17 19:47:52', 'nm687ZR4', '3221403'), - (628, 376, 'maybe', '2020-09-29 22:08:09', '2025-12-17 19:47:52', 'nm687ZR4', '3222827'), - (628, 377, 'not_attending', '2020-10-29 23:46:29', '2025-12-17 19:47:53', 'nm687ZR4', '3222828'), - (628, 378, 'attending', '2020-09-23 17:41:28', '2025-12-17 19:47:52', 'nm687ZR4', '3223725'), - (628, 385, 'maybe', '2020-10-03 22:50:15', '2025-12-17 19:47:52', 'nm687ZR4', '3228698'), - (628, 386, 'maybe', '2020-10-10 21:50:22', '2025-12-17 19:47:52', 'nm687ZR4', '3228699'), - (628, 387, 'maybe', '2020-10-17 21:46:04', '2025-12-17 19:47:52', 'nm687ZR4', '3228700'), - (628, 388, 'not_attending', '2020-10-24 02:10:41', '2025-12-17 19:47:52', 'nm687ZR4', '3228701'), - (628, 424, 'maybe', '2020-10-12 00:57:14', '2025-12-17 19:47:52', 'nm687ZR4', '3245751'), - (628, 426, 'maybe', '2020-10-16 20:05:33', '2025-12-17 19:47:52', 'nm687ZR4', '3250232'), - (628, 432, 'not_attending', '2020-11-04 14:50:10', '2025-12-17 19:47:53', 'nm687ZR4', '3254416'), - (628, 433, 'not_attending', '2020-11-04 14:50:15', '2025-12-17 19:47:53', 'nm687ZR4', '3254417'), - (628, 438, 'not_attending', '2020-10-31 04:55:51', '2025-12-17 19:47:53', 'nm687ZR4', '3256163'), - (628, 440, 'not_attending', '2020-10-24 01:34:13', '2025-12-17 19:47:53', 'nm687ZR4', '3256168'), - (628, 441, 'not_attending', '2020-12-06 22:28:59', '2025-12-17 19:47:54', 'nm687ZR4', '3256169'), - (628, 443, 'not_attending', '2020-10-24 01:34:11', '2025-12-17 19:47:53', 'nm687ZR4', '3263578'), - (628, 445, 'not_attending', '2020-11-04 14:50:32', '2025-12-17 19:47:54', 'nm687ZR4', '3266138'), - (628, 456, 'not_attending', '2020-11-08 23:40:13', '2025-12-17 19:47:54', 'nm687ZR4', '3276428'), - (628, 457, 'not_attending', '2020-11-07 16:51:42', '2025-12-17 19:47:53', 'nm687ZR4', '3279087'), - (628, 459, 'not_attending', '2020-11-08 23:40:11', '2025-12-17 19:47:54', 'nm687ZR4', '3281467'), - (628, 462, 'not_attending', '2020-11-08 23:40:09', '2025-12-17 19:47:54', 'nm687ZR4', '3281470'), - (628, 463, 'not_attending', '2020-11-14 00:23:35', '2025-12-17 19:47:54', 'nm687ZR4', '3281553'), - (628, 466, 'not_attending', '2020-11-08 23:40:07', '2025-12-17 19:47:54', 'nm687ZR4', '3281829'), - (628, 468, 'maybe', '2020-11-14 00:24:26', '2025-12-17 19:47:54', 'nm687ZR4', '3285413'), - (628, 469, 'not_attending', '2020-12-06 22:28:54', '2025-12-17 19:47:54', 'nm687ZR4', '3285414'), - (628, 470, 'not_attending', '2020-11-14 00:24:11', '2025-12-17 19:47:54', 'nm687ZR4', '3285443'), - (628, 473, 'not_attending', '2020-11-14 00:24:01', '2025-12-17 19:47:54', 'nm687ZR4', '3286569'), - (628, 481, 'not_attending', '2020-12-06 22:28:47', '2025-12-17 19:47:54', 'nm687ZR4', '3297764'), - (628, 493, 'not_attending', '2020-12-06 22:28:41', '2025-12-17 19:47:54', 'nm687ZR4', '3313856'), - (628, 499, 'not_attending', '2020-12-06 22:28:35', '2025-12-17 19:47:55', 'nm687ZR4', '3314909'), - (628, 500, 'not_attending', '2021-01-02 21:55:34', '2025-12-17 19:47:55', 'nm687ZR4', '3314964'), - (628, 502, 'not_attending', '2021-01-02 21:55:27', '2025-12-17 19:47:55', 'nm687ZR4', '3323365'), - (628, 513, 'not_attending', '2021-01-02 21:55:18', '2025-12-17 19:47:55', 'nm687ZR4', '3329383'), - (628, 526, 'not_attending', '2021-01-02 21:55:10', '2025-12-17 19:47:48', 'nm687ZR4', '3351539'), - (628, 530, 'not_attending', '2021-01-02 21:55:45', '2025-12-17 19:47:48', 'nm687ZR4', '3373923'), - (628, 536, 'not_attending', '2021-01-09 03:53:51', '2025-12-17 19:47:48', 'nm687ZR4', '3386848'), - (628, 540, 'not_attending', '2021-01-09 03:53:49', '2025-12-17 19:47:48', 'nm687ZR4', '3389527'), - (628, 543, 'not_attending', '2021-01-21 23:55:43', '2025-12-17 19:47:48', 'nm687ZR4', '3396499'), - (628, 548, 'not_attending', '2021-01-16 21:27:17', '2025-12-17 19:47:48', 'nm687ZR4', '3403650'), - (628, 549, 'not_attending', '2021-01-21 23:55:22', '2025-12-17 19:47:49', 'nm687ZR4', '3406988'), - (628, 554, 'not_attending', '2021-01-21 23:55:19', '2025-12-17 19:47:49', 'nm687ZR4', '3408338'), - (628, 555, 'not_attending', '2021-01-21 23:55:26', '2025-12-17 19:47:49', 'nm687ZR4', '3416576'), - (628, 568, 'not_attending', '2021-02-07 01:42:07', '2025-12-17 19:47:50', 'nm687ZR4', '3430267'), - (628, 579, 'not_attending', '2021-02-07 01:42:20', '2025-12-17 19:47:50', 'nm687ZR4', '3440978'), - (628, 602, 'not_attending', '2021-03-27 22:40:09', '2025-12-17 19:47:50', 'nm687ZR4', '3470303'), - (628, 604, 'not_attending', '2021-03-27 22:40:16', '2025-12-17 19:47:50', 'nm687ZR4', '3470305'), - (628, 605, 'not_attending', '2021-02-08 20:28:13', '2025-12-17 19:47:50', 'nm687ZR4', '3470991'), - (628, 621, 'not_attending', '2021-03-27 22:40:21', '2025-12-17 19:47:51', 'nm687ZR4', '3517815'), - (628, 622, 'not_attending', '2021-03-27 22:40:39', '2025-12-17 19:47:51', 'nm687ZR4', '3517816'), - (628, 623, 'not_attending', '2021-03-27 22:40:47', '2025-12-17 19:47:51', 'nm687ZR4', '3523941'), - (628, 631, 'not_attending', '2021-03-27 22:40:54', '2025-12-17 19:47:51', 'nm687ZR4', '3533850'), - (628, 638, 'not_attending', '2021-03-27 22:41:10', '2025-12-17 19:47:44', 'nm687ZR4', '3536632'), - (628, 639, 'not_attending', '2021-03-27 22:41:17', '2025-12-17 19:47:51', 'nm687ZR4', '3536656'), - (628, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'nm687ZR4', '3539916'), - (628, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'nm687ZR4', '3539917'), - (628, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'nm687ZR4', '3539918'), - (628, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'nm687ZR4', '3539919'), - (628, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'nm687ZR4', '3539920'), - (628, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'nm687ZR4', '3539921'), - (628, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'nm687ZR4', '3539922'), - (628, 648, 'not_attending', '2021-03-27 22:39:54', '2025-12-17 19:47:47', 'nm687ZR4', '3539923'), - (628, 649, 'not_attending', '2021-03-27 22:39:45', '2025-12-17 19:47:51', 'nm687ZR4', '3539927'), - (628, 650, 'not_attending', '2021-03-27 22:39:14', '2025-12-17 19:47:44', 'nm687ZR4', '3539928'), - (628, 706, 'not_attending', '2021-03-27 22:39:27', '2025-12-17 19:47:45', 'nm687ZR4', '3582734'), - (628, 717, 'not_attending', '2021-03-27 22:39:08', '2025-12-17 19:47:44', 'nm687ZR4', '3619523'), - (628, 718, 'not_attending', '2021-03-27 22:39:21', '2025-12-17 19:47:44', 'nm687ZR4', '3626844'), - (628, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nm687ZR4', '4356801'), - (628, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'nm687ZR4', '4366187'), - (628, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'nm687ZR4', '4420735'), - (628, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nm687ZR4', '4420738'), - (628, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nm687ZR4', '4420739'), - (628, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm687ZR4', '4420741'), - (628, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nm687ZR4', '4420744'), - (628, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nm687ZR4', '4420747'), - (628, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nm687ZR4', '4420748'), - (628, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nm687ZR4', '4420749'), - (628, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nm687ZR4', '4461883'), - (628, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nm687ZR4', '4508342'), - (628, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:34', 'nm687ZR4', '4568602'), - (628, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nm687ZR4', '4572153'), - (628, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'nm687ZR4', '4585962'), - (628, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'nm687ZR4', '4596356'), - (628, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nm687ZR4', '4598860'), - (628, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'nm687ZR4', '4598861'), - (628, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'nm687ZR4', '4602797'), - (628, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'nm687ZR4', '4637896'), - (628, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nm687ZR4', '4642994'), - (628, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'nm687ZR4', '4642995'), - (628, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'nm687ZR4', '4642996'), - (628, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'nm687ZR4', '4642997'), - (628, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'nm687ZR4', '4645687'), - (628, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nm687ZR4', '4645698'), - (628, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'nm687ZR4', '4645704'), - (628, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'nm687ZR4', '4645705'), - (628, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nm687ZR4', '4668385'), - (628, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nm687ZR4', '4694407'), - (628, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm687ZR4', '4736497'), - (628, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nm687ZR4', '4736499'), - (628, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm687ZR4', '4736500'), - (628, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nm687ZR4', '4736503'), - (628, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nm687ZR4', '4736504'), - (628, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nm687ZR4', '4746789'), - (628, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'nm687ZR4', '4753929'), - (628, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nm687ZR4', '5038850'), - (628, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nm687ZR4', '5045826'), - (628, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm687ZR4', '5132533'), - (628, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'nm687ZR4', '5186582'), - (628, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nm687ZR4', '5186583'), - (628, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nm687ZR4', '5186585'), - (628, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'nm687ZR4', '5190437'), - (628, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nm687ZR4', '5195095'), - (628, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm687ZR4', '5215989'), - (628, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm687ZR4', '5223686'), - (628, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nm687ZR4', '5247467'), - (628, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nm687ZR4', '5260800'), - (628, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nm687ZR4', '5269930'), - (628, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nm687ZR4', '5271448'), - (628, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'nm687ZR4', '5271449'), - (628, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm687ZR4', '5278159'), - (628, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'nm687ZR4', '5363695'), - (628, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm687ZR4', '5365960'), - (628, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm687ZR4', '5378247'), - (628, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'nm687ZR4', '5389605'), - (628, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nm687ZR4', '5397265'), - (628, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm687ZR4', '5404786'), - (628, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm687ZR4', '5405203'), - (628, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm687ZR4', '5412550'), - (628, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm687ZR4', '5415046'), - (628, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm687ZR4', '5422086'), - (628, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nm687ZR4', '5422406'), - (628, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm687ZR4', '5424565'), - (628, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm687ZR4', '5426882'), - (628, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm687ZR4', '5441125'), - (628, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm687ZR4', '5441126'), - (628, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nm687ZR4', '5441128'), - (628, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm687ZR4', '5441131'), - (628, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm687ZR4', '5441132'), - (628, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm687ZR4', '5453325'), - (628, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm687ZR4', '5454516'), - (628, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm687ZR4', '5454605'), - (628, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm687ZR4', '5455037'), - (628, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm687ZR4', '5461278'), - (628, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm687ZR4', '5469480'), - (628, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm687ZR4', '5474663'), - (628, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm687ZR4', '5482022'), - (628, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm687ZR4', '5488912'), - (628, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm687ZR4', '5492192'), - (628, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm687ZR4', '5493139'), - (628, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm687ZR4', '5493200'), - (628, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm687ZR4', '5502188'), - (628, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm687ZR4', '5505059'), - (628, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm687ZR4', '5509055'), - (628, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm687ZR4', '5512862'), - (628, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm687ZR4', '5513985'), - (628, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'nm687ZR4', '5519981'), - (628, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm687ZR4', '5522550'), - (628, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm687ZR4', '5534683'), - (628, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm687ZR4', '5537735'), - (628, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm687ZR4', '5540859'), - (628, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm687ZR4', '5546619'), - (628, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm687ZR4', '5557747'), - (628, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm687ZR4', '5560255'), - (628, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm687ZR4', '5562906'), - (628, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm687ZR4', '5600604'), - (628, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm687ZR4', '5605544'), - (628, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm687ZR4', '5630960'), - (628, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm687ZR4', '5630961'), - (628, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm687ZR4', '5630962'), - (628, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm687ZR4', '5630966'), - (628, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm687ZR4', '5630967'), - (628, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm687ZR4', '5630968'), - (628, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm687ZR4', '5635406'), - (628, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm687ZR4', '5638765'), - (628, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm687ZR4', '5640097'), - (628, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm687ZR4', '5640843'), - (628, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm687ZR4', '5641521'), - (628, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm687ZR4', '5642818'), - (628, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm687ZR4', '5652395'), - (628, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm687ZR4', '5670445'), - (628, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm687ZR4', '5671637'), - (628, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm687ZR4', '5672329'), - (628, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm687ZR4', '5674057'), - (628, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm687ZR4', '5674060'), - (628, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm687ZR4', '5677461'), - (628, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm687ZR4', '5698046'), - (628, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm687ZR4', '5699760'), - (628, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm687ZR4', '5741601'), - (628, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm687ZR4', '5763458'), - (628, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm687ZR4', '5774172'), - (628, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'nm687ZR4', '5818247'), - (628, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm687ZR4', '5819471'), - (628, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'nm687ZR4', '5827739'), - (628, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm687ZR4', '5844306'), - (628, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm687ZR4', '5850159'), - (628, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm687ZR4', '5858999'), - (628, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm687ZR4', '5871984'), - (628, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm687ZR4', '5876354'), - (628, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm687ZR4', '5880939'), - (628, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm687ZR4', '5880940'), - (628, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm687ZR4', '5880942'), - (628, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm687ZR4', '5880943'), - (628, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm687ZR4', '5887890'), - (628, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm687ZR4', '5888598'), - (628, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm687ZR4', '5893260'), - (628, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm687ZR4', '5899826'), - (628, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm687ZR4', '5900199'), - (628, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm687ZR4', '5900200'), - (628, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm687ZR4', '5900202'), - (628, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm687ZR4', '5900203'), - (628, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm687ZR4', '5901108'), - (628, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm687ZR4', '5901126'), - (628, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm687ZR4', '5909655'), - (628, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm687ZR4', '5910522'), - (628, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm687ZR4', '5910526'), - (628, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm687ZR4', '5910528'), - (628, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm687ZR4', '5916219'), - (628, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm687ZR4', '5936234'), - (628, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm687ZR4', '5958351'), - (628, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm687ZR4', '5959751'), - (628, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm687ZR4', '5959755'), - (628, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm687ZR4', '5960055'), - (628, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm687ZR4', '5961684'), - (628, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm687ZR4', '5962132'), - (628, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nm687ZR4', '5962133'), - (628, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm687ZR4', '5962134'), - (628, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm687ZR4', '5962317'), - (628, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm687ZR4', '5962318'), - (628, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nm687ZR4', '5965933'), - (628, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm687ZR4', '5967014'), - (628, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm687ZR4', '5972815'), - (628, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm687ZR4', '5974016'), - (628, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm687ZR4', '5981515'), - (628, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm687ZR4', '5993516'), - (628, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm687ZR4', '5998939'), - (628, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm687ZR4', '6028191'), - (628, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm687ZR4', '6040066'), - (628, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm687ZR4', '6042717'), - (628, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm687ZR4', '6044838'), - (628, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm687ZR4', '6044839'), - (628, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm687ZR4', '6045684'), - (628, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm687ZR4', '6050104'), - (628, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm687ZR4', '6053195'), - (628, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm687ZR4', '6053198'), - (628, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm687ZR4', '6056085'), - (628, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm687ZR4', '6056916'), - (628, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm687ZR4', '6059290'), - (628, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm687ZR4', '6060328'), - (628, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm687ZR4', '6061037'), - (628, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm687ZR4', '6061039'), - (628, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm687ZR4', '6067245'), - (628, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm687ZR4', '6068094'), - (628, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm687ZR4', '6068252'), - (628, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm687ZR4', '6068253'), - (628, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm687ZR4', '6068254'), - (628, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm687ZR4', '6068280'), - (628, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm687ZR4', '6069093'), - (628, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm687ZR4', '6072528'), - (628, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm687ZR4', '6079840'), - (628, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm687ZR4', '6083398'), - (628, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm687ZR4', '6093504'), - (628, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm687ZR4', '6097414'), - (628, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm687ZR4', '6097442'), - (628, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm687ZR4', '6097684'), - (628, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm687ZR4', '6098762'), - (628, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm687ZR4', '6101361'), - (628, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm687ZR4', '6101362'), - (628, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm687ZR4', '6107314'), - (628, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm687ZR4', '6120034'), - (628, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'nm687ZR4', '6136733'), - (628, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm687ZR4', '6137989'), - (628, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm687ZR4', '6150864'), - (628, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm687ZR4', '6155491'), - (628, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm687ZR4', '6164417'), - (628, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm687ZR4', '6166388'), - (628, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm687ZR4', '6176439'), - (628, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm687ZR4', '6182410'), - (628, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm687ZR4', '6185812'), - (628, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm687ZR4', '6187651'), - (628, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm687ZR4', '6187963'), - (628, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm687ZR4', '6187964'), - (628, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm687ZR4', '6187966'), - (628, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm687ZR4', '6187967'), - (628, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm687ZR4', '6187969'), - (628, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm687ZR4', '6334878'), - (628, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm687ZR4', '6337236'), - (628, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm687ZR4', '6337970'), - (628, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm687ZR4', '6338308'), - (628, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm687ZR4', '6341710'), - (628, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm687ZR4', '6342044'), - (628, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm687ZR4', '6342298'), - (628, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm687ZR4', '6343294'), - (628, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm687ZR4', '6347034'), - (628, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm687ZR4', '6347056'), - (628, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm687ZR4', '6353830'), - (628, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm687ZR4', '6353831'), - (628, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm687ZR4', '6357867'), - (628, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm687ZR4', '6358652'), - (628, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm687ZR4', '6361709'), - (628, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm687ZR4', '6361710'), - (628, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm687ZR4', '6361711'), - (628, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm687ZR4', '6361712'), - (628, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm687ZR4', '6361713'), - (628, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'nm687ZR4', '6382573'), - (628, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm687ZR4', '6388604'), - (628, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm687ZR4', '6394629'), - (628, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm687ZR4', '6394631'), - (628, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm687ZR4', '6440863'), - (628, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm687ZR4', '6445440'), - (628, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm687ZR4', '6453951'), - (628, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm687ZR4', '6461696'), - (628, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm687ZR4', '6462129'), - (628, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm687ZR4', '6463218'), - (628, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm687ZR4', '6472181'), - (628, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm687ZR4', '6482693'), - (628, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'nm687ZR4', '6484200'), - (628, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm687ZR4', '6484680'), - (628, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm687ZR4', '6507741'), - (628, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm687ZR4', '6514659'), - (628, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm687ZR4', '6514660'), - (628, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm687ZR4', '6519103'), - (628, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm687ZR4', '6535681'), - (628, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm687ZR4', '6584747'), - (628, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm687ZR4', '6587097'), - (628, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm687ZR4', '6609022'), - (628, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'nm687ZR4', '6632757'), - (628, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm687ZR4', '6644187'), - (628, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm687ZR4', '6648951'), - (628, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm687ZR4', '6648952'), - (628, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm687ZR4', '6655401'), - (628, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm687ZR4', '6661585'), - (628, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm687ZR4', '6661588'), - (628, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm687ZR4', '6661589'), - (628, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm687ZR4', '6699906'), - (628, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm687ZR4', '6699913'), - (628, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm687ZR4', '6701109'), - (628, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm687ZR4', '6705219'), - (628, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm687ZR4', '6710153'), - (628, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm687ZR4', '6711552'), - (628, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'nm687ZR4', '6711553'), - (628, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm687ZR4', '6722688'), - (628, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm687ZR4', '6730620'), - (628, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm687ZR4', '6740364'), - (628, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm687ZR4', '6743829'), - (628, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm687ZR4', '7030380'), - (628, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'nm687ZR4', '7033677'), - (628, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm687ZR4', '7044715'), - (628, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm687ZR4', '7050318'), - (628, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm687ZR4', '7050319'), - (628, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm687ZR4', '7050322'), - (628, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm687ZR4', '7057804'), - (628, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm687ZR4', '7072824'), - (628, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm687ZR4', '7074348'), - (628, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm687ZR4', '7074364'), - (628, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'nm687ZR4', '7089267'), - (628, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm687ZR4', '7098747'), - (628, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm687ZR4', '7113468'), - (628, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm687ZR4', '7114856'), - (628, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm687ZR4', '7114951'), - (628, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm687ZR4', '7114955'), - (628, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm687ZR4', '7114956'), - (628, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm687ZR4', '7114957'), - (628, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm687ZR4', '7159484'), - (628, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm687ZR4', '7178446'), - (628, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'nm687ZR4', '7220467'), - (628, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm687ZR4', '7240354'), - (628, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm687ZR4', '7251633'), - (628, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm687ZR4', '7324073'), - (628, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm687ZR4', '7324074'), - (628, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm687ZR4', '7324075'), - (628, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm687ZR4', '7324078'), - (628, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm687ZR4', '7324082'), - (628, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm687ZR4', '7331457'), - (628, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm687ZR4', '7363643'), - (628, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm687ZR4', '7368606'), - (628, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm687ZR4', '7397462'), - (628, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm687ZR4', '7424275'), - (628, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm687ZR4', '7432751'), - (628, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm687ZR4', '7432752'), - (628, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm687ZR4', '7432753'), - (628, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm687ZR4', '7432754'), - (628, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm687ZR4', '7432755'), - (628, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm687ZR4', '7432756'), - (628, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm687ZR4', '7432758'), - (628, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm687ZR4', '7432759'), - (628, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm687ZR4', '7433834'), - (628, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'nm687ZR4', '7470197'), - (628, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm687ZR4', '7685613'), - (628, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm687ZR4', '7688194'), - (628, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm687ZR4', '7688196'), - (628, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm687ZR4', '7688289'), - (628, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm687ZR4', '7692763'), - (628, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm687ZR4', '7697552'), - (628, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm687ZR4', '7699878'), - (628, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'nm687ZR4', '7704043'), - (628, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm687ZR4', '7712467'), - (628, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm687ZR4', '7713585'), - (628, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm687ZR4', '7713586'), - (628, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm687ZR4', '7738518'), - (628, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm687ZR4', '7750636'), - (628, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm687ZR4', '7796540'), - (628, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm687ZR4', '7796541'), - (628, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm687ZR4', '7796542'), - (628, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm687ZR4', '7825913'), - (628, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm687ZR4', '7826209'), - (628, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm687ZR4', '7834742'), - (628, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm687ZR4', '7842108'), - (628, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm687ZR4', '7842902'), - (628, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm687ZR4', '7842903'), - (628, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm687ZR4', '7842904'), - (628, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm687ZR4', '7842905'), - (628, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm687ZR4', '7855719'), - (628, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm687ZR4', '7860683'), - (628, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm687ZR4', '7860684'), - (628, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm687ZR4', '7866095'), - (628, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm687ZR4', '7869170'), - (628, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm687ZR4', '7869188'), - (628, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm687ZR4', '7869201'), - (628, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm687ZR4', '7877465'), - (628, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm687ZR4', '7888250'), - (628, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm687ZR4', '7904777'), - (628, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm687ZR4', '8349164'), - (628, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm687ZR4', '8349545'), - (628, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm687ZR4', '8368028'), - (628, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm687ZR4', '8368029'), - (628, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm687ZR4', '8388462'), - (628, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm687ZR4', '8400273'), - (628, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm687ZR4', '8400275'), - (628, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'nm687ZR4', '8400276'), - (628, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm687ZR4', '8404977'), - (628, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm687ZR4', '8430783'), - (628, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm687ZR4', '8430784'), - (628, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm687ZR4', '8430799'), - (628, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm687ZR4', '8430800'), - (628, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm687ZR4', '8430801'), - (628, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm687ZR4', '8438709'), - (628, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm687ZR4', '8457738'), - (628, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm687ZR4', '8459566'), - (628, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm687ZR4', '8459567'), - (628, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm687ZR4', '8461032'), - (628, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm687ZR4', '8477877'), - (628, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm687ZR4', '8485688'), - (628, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm687ZR4', '8490587'), - (628, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm687ZR4', '8493552'), - (628, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm687ZR4', '8493553'), - (628, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm687ZR4', '8493554'), - (628, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm687ZR4', '8493555'), - (628, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm687ZR4', '8493556'), - (628, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm687ZR4', '8493557'), - (628, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm687ZR4', '8493558'), - (628, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm687ZR4', '8493559'), - (628, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm687ZR4', '8493560'), - (628, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'nm687ZR4', '8493561'), - (628, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm687ZR4', '8493572'), - (628, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm687ZR4', '8540725'), - (628, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm687ZR4', '8555421'), - (629, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4D9EVr9d', '5630960'), - (629, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4D9EVr9d', '5630961'), - (629, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4D9EVr9d', '5630962'), - (629, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4D9EVr9d', '5630966'), - (629, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4D9EVr9d', '5630967'), - (629, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4D9EVr9d', '5630968'), - (629, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', '4D9EVr9d', '5638765'), - (629, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4D9EVr9d', '5640097'), - (629, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4D9EVr9d', '5642818'), - (629, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4D9EVr9d', '5670445'), - (629, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4D9EVr9d', '5671637'), - (629, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4D9EVr9d', '5672329'), - (629, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4D9EVr9d', '5674057'), - (629, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4D9EVr9d', '5674060'), - (629, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4D9EVr9d', '5677461'), - (629, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4D9EVr9d', '5698046'), - (629, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', '4D9EVr9d', '5699760'), - (629, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4D9EVr9d', '5741601'), - (629, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4D9EVr9d', '5763458'), - (629, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4D9EVr9d', '5774172'), - (629, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4D9EVr9d', '5818247'), - (629, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4D9EVr9d', '5819471'), - (629, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4D9EVr9d', '5827739'), - (629, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4D9EVr9d', '5844306'), - (629, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4D9EVr9d', '5850159'), - (629, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4D9EVr9d', '5858999'), - (629, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4D9EVr9d', '5871984'), - (629, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4D9EVr9d', '5876354'), - (629, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4D9EVr9d', '6045684'), - (630, 950, 'attending', '2021-08-17 17:21:24', '2025-12-17 19:47:42', 'd5DwZKq4', '4315730'), - (630, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd5DwZKq4', '4356801'), - (630, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'd5DwZKq4', '4366186'), - (630, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'd5DwZKq4', '4366187'), - (630, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'd5DwZKq4', '4420735'), - (630, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'd5DwZKq4', '4420738'), - (630, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'd5DwZKq4', '4420739'), - (630, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'd5DwZKq4', '4420741'), - (630, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'd5DwZKq4', '4420744'), - (630, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'd5DwZKq4', '4420747'), - (630, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'd5DwZKq4', '4420748'), - (630, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'd5DwZKq4', '4420749'), - (630, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'd5DwZKq4', '4461883'), - (630, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'd5DwZKq4', '4508342'), - (630, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd5DwZKq4', '4568602'), - (630, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'd5DwZKq4', '4572153'), - (630, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'd5DwZKq4', '4585962'), - (630, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'd5DwZKq4', '4596356'), - (630, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'd5DwZKq4', '4598860'), - (630, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'd5DwZKq4', '4598861'), - (630, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'd5DwZKq4', '4602797'), - (630, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'd5DwZKq4', '4637896'), - (630, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'd5DwZKq4', '4642994'), - (630, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'd5DwZKq4', '4642995'), - (630, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'd5DwZKq4', '4642996'), - (630, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'd5DwZKq4', '4642997'), - (630, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd5DwZKq4', '4645687'), - (630, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd5DwZKq4', '4645698'), - (630, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd5DwZKq4', '4645704'), - (630, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd5DwZKq4', '4645705'), - (630, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'd5DwZKq4', '4668385'), - (630, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd5DwZKq4', '6045684'), - (631, 3238, 'maybe', '2025-08-27 05:41:22', '2025-12-17 19:46:11', 'dwqlLk8A', '8493554'), - (631, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'dwqlLk8A', '8529058'), - (632, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'myxyao5d', '4736503'), - (632, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'myxyao5d', '4736504'), - (632, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'myxyao5d', '5132533'), - (632, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'myxyao5d', '5186582'), - (632, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'myxyao5d', '5186583'), - (632, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'myxyao5d', '5186585'), - (632, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'myxyao5d', '5190437'), - (632, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'myxyao5d', '5196763'), - (632, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'myxyao5d', '5199460'), - (632, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'myxyao5d', '5215989'), - (632, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'myxyao5d', '5223686'), - (632, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'myxyao5d', '5227432'), - (632, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myxyao5d', '6045684'), - (633, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'v4DNqB9m', '3517816'), - (633, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'v4DNqB9m', '3539916'), - (633, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4DNqB9m', '3539927'), - (633, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4DNqB9m', '3582734'), - (633, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4DNqB9m', '3619523'), - (633, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'v4DNqB9m', '3674262'), - (633, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'v4DNqB9m', '3677402'), - (633, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DNqB9m', '6045684'), - (634, 2986, 'not_attending', '2025-02-07 15:01:13', '2025-12-17 19:46:23', 'Arx1nGgd', '7835405'), - (634, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Arx1nGgd', '7842108'), - (634, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Arx1nGgd', '7842902'), - (634, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Arx1nGgd', '7842903'), - (634, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Arx1nGgd', '7842904'), - (634, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Arx1nGgd', '7842905'), - (634, 2999, 'not_attending', '2025-02-13 02:18:05', '2025-12-17 19:46:23', 'Arx1nGgd', '7844784'), - (634, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Arx1nGgd', '7855719'), - (634, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Arx1nGgd', '7860683'), - (634, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Arx1nGgd', '7860684'), - (634, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Arx1nGgd', '7866095'), - (634, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Arx1nGgd', '7869170'), - (634, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Arx1nGgd', '7869201'), - (634, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'Arx1nGgd', '7872088'), - (635, 1153, 'not_attending', '2022-01-22 20:21:28', '2025-12-17 19:47:32', '4WPeaW0d', '4708707'), - (635, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4WPeaW0d', '4736497'), - (635, 1176, 'not_attending', '2022-02-05 15:12:28', '2025-12-17 19:47:32', '4WPeaW0d', '4736498'), - (635, 1177, 'not_attending', '2022-02-12 18:58:33', '2025-12-17 19:47:32', '4WPeaW0d', '4736499'), - (635, 1178, 'attending', '2022-01-29 22:14:15', '2025-12-17 19:47:32', '4WPeaW0d', '4736500'), - (635, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4WPeaW0d', '4736503'), - (635, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4WPeaW0d', '4736504'), - (635, 1183, 'attending', '2022-01-09 04:00:57', '2025-12-17 19:47:31', '4WPeaW0d', '4742171'), - (635, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4WPeaW0d', '4746789'), - (635, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4WPeaW0d', '4753929'), - (635, 1193, 'attending', '2022-01-21 12:57:21', '2025-12-17 19:47:32', '4WPeaW0d', '4759563'), - (635, 1198, 'attending', '2022-01-20 21:11:19', '2025-12-17 19:47:32', '4WPeaW0d', '4766801'), - (635, 1199, 'attending', '2022-01-21 04:49:09', '2025-12-17 19:47:32', '4WPeaW0d', '4766802'), - (635, 1201, 'attending', '2022-01-19 00:31:18', '2025-12-17 19:47:32', '4WPeaW0d', '4766841'), - (635, 1202, 'not_attending', '2022-01-27 23:54:29', '2025-12-17 19:47:32', '4WPeaW0d', '4769423'), - (635, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4WPeaW0d', '5038850'), - (635, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4WPeaW0d', '5045826'), - (635, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4WPeaW0d', '5132533'), - (635, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4WPeaW0d', '5186582'), - (635, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4WPeaW0d', '5186583'), - (635, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4WPeaW0d', '5186585'), - (635, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4WPeaW0d', '5190437'), - (635, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', '4WPeaW0d', '5215989'), - (635, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WPeaW0d', '6045684'), - (636, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dx656kEA', '5269930'), - (636, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dx656kEA', '5271448'), - (636, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dx656kEA', '5271449'), - (636, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dx656kEA', '5276469'), - (636, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx656kEA', '5278159'), - (636, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dx656kEA', '5363695'), - (636, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dx656kEA', '5365960'), - (636, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dx656kEA', '5368973'), - (636, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dx656kEA', '5378247'), - (636, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dx656kEA', '5389605'), - (636, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dx656kEA', '5397265'), - (636, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dx656kEA', '5403967'), - (636, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dx656kEA', '5404786'), - (636, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dx656kEA', '5405203'), - (636, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dx656kEA', '5411699'), - (636, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dx656kEA', '5412550'), - (636, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dx656kEA', '5415046'), - (636, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dx656kEA', '5422086'), - (636, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dx656kEA', '5422406'), - (636, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dx656kEA', '5424565'), - (636, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dx656kEA', '5426882'), - (636, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dx656kEA', '5427083'), - (636, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'dx656kEA', '5441125'), - (636, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dx656kEA', '5441126'), - (636, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dx656kEA', '5441128'), - (636, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dx656kEA', '5441131'), - (636, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dx656kEA', '5441132'), - (636, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dx656kEA', '5446643'), - (636, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dx656kEA', '5453325'), - (636, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dx656kEA', '5454516'), - (636, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dx656kEA', '5454605'), - (636, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dx656kEA', '5455037'), - (636, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dx656kEA', '5461278'), - (636, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dx656kEA', '5469480'), - (636, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dx656kEA', '5471073'), - (636, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dx656kEA', '5474663'), - (636, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dx656kEA', '5482022'), - (636, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dx656kEA', '5482793'), - (636, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dx656kEA', '5488912'), - (636, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dx656kEA', '5492192'), - (636, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dx656kEA', '5493139'), - (636, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dx656kEA', '5493200'), - (636, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dx656kEA', '5502188'), - (636, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dx656kEA', '5505059'), - (636, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dx656kEA', '5509055'), - (636, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dx656kEA', '5512862'), - (636, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dx656kEA', '5513985'), - (636, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dx656kEA', '5519981'), - (636, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dx656kEA', '5522550'), - (636, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dx656kEA', '5534683'), - (636, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dx656kEA', '5546619'), - (636, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dx656kEA', '5555245'), - (636, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dx656kEA', '5557747'), - (636, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx656kEA', '6045684'), - (637, 2210, 'not_attending', '2023-08-30 19:15:02', '2025-12-17 19:46:55', 'm6xlG204', '6361711'), - (637, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm6xlG204', '6361713'), - (637, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'm6xlG204', '6388604'), - (637, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm6xlG204', '6394629'), - (637, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm6xlG204', '6394631'), - (637, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'm6xlG204', '6431478'), - (638, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4k3aBJR4', '5670445'), - (638, 1824, 'not_attending', '2022-11-30 14:58:07', '2025-12-17 19:47:04', '4k3aBJR4', '5774172'), - (638, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4k3aBJR4', '5818247'), - (638, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4k3aBJR4', '5819471'), - (638, 1837, 'attending', '2022-12-07 03:07:56', '2025-12-17 19:47:16', '4k3aBJR4', '5820146'), - (638, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4k3aBJR4', '5827739'), - (638, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4k3aBJR4', '5844306'), - (638, 1846, 'not_attending', '2022-12-18 18:54:20', '2025-12-17 19:47:04', '4k3aBJR4', '5845237'), - (638, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4k3aBJR4', '5850159'), - (638, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4k3aBJR4', '5858999'), - (638, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4k3aBJR4', '5871984'), - (638, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4k3aBJR4', '5876354'), - (638, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4k3aBJR4', '6045684'), - (638, 2146, 'maybe', '2023-07-21 23:20:57', '2025-12-17 19:46:53', '4k3aBJR4', '6335638'), - (638, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4k3aBJR4', '6337236'), - (638, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4k3aBJR4', '6337970'), - (638, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', '4k3aBJR4', '6338308'), - (638, 2159, 'attending', '2023-07-22 22:18:47', '2025-12-17 19:46:53', '4k3aBJR4', '6338355'), - (638, 2160, 'attending', '2023-07-24 21:06:34', '2025-12-17 19:46:54', '4k3aBJR4', '6338358'), - (638, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4k3aBJR4', '6341710'), - (638, 2165, 'attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4k3aBJR4', '6342044'), - (638, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4k3aBJR4', '6342298'), - (638, 2171, 'maybe', '2023-07-24 21:06:12', '2025-12-17 19:46:54', '4k3aBJR4', '6342328'), - (638, 2172, 'attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', '4k3aBJR4', '6342591'), - (638, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4k3aBJR4', '6343294'), - (638, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4k3aBJR4', '6347034'), - (638, 2177, 'maybe', '2023-08-07 18:31:55', '2025-12-17 19:46:55', '4k3aBJR4', '6347053'), - (638, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4k3aBJR4', '6347056'), - (638, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4k3aBJR4', '6353830'), - (638, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4k3aBJR4', '6353831'), - (638, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4k3aBJR4', '6357867'), - (638, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4k3aBJR4', '6358652'), - (638, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4k3aBJR4', '6361709'), - (638, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4k3aBJR4', '6361710'), - (638, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4k3aBJR4', '6361711'), - (638, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4k3aBJR4', '6361712'), - (638, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4k3aBJR4', '6361713'), - (638, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4k3aBJR4', '6382573'), - (638, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4k3aBJR4', '6388604'), - (638, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4k3aBJR4', '6394629'), - (638, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4k3aBJR4', '6394631'), - (638, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4k3aBJR4', '6440863'), - (638, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4k3aBJR4', '6445440'), - (638, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4k3aBJR4', '6453951'), - (638, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4k3aBJR4', '6461696'), - (638, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4k3aBJR4', '6462129'), - (638, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4k3aBJR4', '6463218'), - (638, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4k3aBJR4', '6472181'), - (638, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4k3aBJR4', '6482693'), - (638, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4k3aBJR4', '6484200'), - (638, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4k3aBJR4', '6484680'), - (638, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4k3aBJR4', '6507741'), - (638, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4k3aBJR4', '6514659'), - (638, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4k3aBJR4', '6514660'), - (638, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4k3aBJR4', '6519103'), - (638, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4k3aBJR4', '6535681'), - (638, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4k3aBJR4', '6584747'), - (638, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4k3aBJR4', '6587097'), - (638, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4k3aBJR4', '6609022'), - (638, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4k3aBJR4', '6632757'), - (638, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4k3aBJR4', '6644187'), - (638, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4k3aBJR4', '6648951'), - (638, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4k3aBJR4', '6648952'), - (638, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4k3aBJR4', '6655401'), - (638, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4k3aBJR4', '6661585'), - (638, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4k3aBJR4', '6661588'), - (638, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4k3aBJR4', '6661589'), - (638, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4k3aBJR4', '6699906'), - (638, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4k3aBJR4', '6699913'), - (638, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4k3aBJR4', '6701109'), - (638, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4k3aBJR4', '6705219'), - (638, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4k3aBJR4', '6710153'), - (638, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4k3aBJR4', '6711552'), - (638, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4k3aBJR4', '6711553'), - (638, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4k3aBJR4', '6722688'), - (638, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4k3aBJR4', '6730620'), - (638, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4k3aBJR4', '6740364'), - (638, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4k3aBJR4', '6743829'), - (638, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4k3aBJR4', '7030380'), - (638, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4k3aBJR4', '7033677'), - (638, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4k3aBJR4', '7044715'), - (638, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4k3aBJR4', '7050318'), - (638, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4k3aBJR4', '7050319'), - (638, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4k3aBJR4', '7050322'), - (638, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4k3aBJR4', '7057804'), - (638, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4k3aBJR4', '7072824'), - (638, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4k3aBJR4', '7074348'), - (638, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4k3aBJR4', '7074364'), - (638, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4k3aBJR4', '7089267'), - (638, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4k3aBJR4', '7098747'), - (638, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4k3aBJR4', '7113468'), - (638, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4k3aBJR4', '7114856'), - (638, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4k3aBJR4', '7114951'), - (638, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4k3aBJR4', '7114955'), - (638, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4k3aBJR4', '7114956'), - (638, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4k3aBJR4', '7114957'), - (638, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4k3aBJR4', '7159484'), - (638, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4k3aBJR4', '7178446'), - (638, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4k3aBJR4', '7220467'), - (638, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4k3aBJR4', '7240354'), - (638, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4k3aBJR4', '7251633'), - (638, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4k3aBJR4', '7324073'), - (638, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4k3aBJR4', '7324074'), - (638, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4k3aBJR4', '7324075'), - (638, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4k3aBJR4', '7324078'), - (638, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4k3aBJR4', '7324082'), - (638, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4k3aBJR4', '7331457'), - (638, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4k3aBJR4', '7363643'), - (638, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4k3aBJR4', '7368606'), - (638, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4k3aBJR4', '7397462'), - (638, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4k3aBJR4', '7424275'), - (638, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4k3aBJR4', '7432751'), - (638, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4k3aBJR4', '7432752'), - (638, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4k3aBJR4', '7432753'), - (638, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4k3aBJR4', '7432754'), - (638, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4k3aBJR4', '7432755'), - (638, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4k3aBJR4', '7432756'), - (638, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4k3aBJR4', '7432758'), - (638, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4k3aBJR4', '7432759'), - (638, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4k3aBJR4', '7433834'), - (638, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4k3aBJR4', '7470197'), - (638, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4k3aBJR4', '7685613'), - (638, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4k3aBJR4', '7688194'), - (638, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4k3aBJR4', '7688196'), - (638, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4k3aBJR4', '7688289'), - (638, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4k3aBJR4', '7692763'), - (638, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4k3aBJR4', '7697552'), - (638, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4k3aBJR4', '7699878'), - (638, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4k3aBJR4', '7704043'), - (638, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4k3aBJR4', '7712467'), - (638, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4k3aBJR4', '7713585'), - (638, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4k3aBJR4', '7713586'), - (638, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4k3aBJR4', '7738518'), - (638, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4k3aBJR4', '7750636'), - (638, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4k3aBJR4', '7796540'), - (638, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4k3aBJR4', '7796541'), - (638, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4k3aBJR4', '7796542'), - (638, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4k3aBJR4', '7825913'), - (638, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4k3aBJR4', '7826209'), - (638, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4k3aBJR4', '7834742'), - (638, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4k3aBJR4', '7842108'), - (638, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4k3aBJR4', '7842902'), - (638, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4k3aBJR4', '7842903'), - (638, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4k3aBJR4', '7842904'), - (638, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4k3aBJR4', '7842905'), - (638, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4k3aBJR4', '7855719'), - (638, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4k3aBJR4', '7860683'), - (638, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4k3aBJR4', '7860684'), - (638, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4k3aBJR4', '7866095'), - (638, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4k3aBJR4', '7869170'), - (638, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4k3aBJR4', '7869188'), - (638, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4k3aBJR4', '7869201'), - (638, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4k3aBJR4', '7877465'), - (638, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4k3aBJR4', '7888250'), - (638, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4k3aBJR4', '7904777'), - (638, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4k3aBJR4', '8349164'), - (638, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4k3aBJR4', '8349545'), - (638, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4k3aBJR4', '8368028'), - (638, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4k3aBJR4', '8368029'), - (638, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4k3aBJR4', '8388462'), - (638, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4k3aBJR4', '8400273'), - (638, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4k3aBJR4', '8400275'), - (638, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '4k3aBJR4', '8400276'), - (638, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4k3aBJR4', '8404977'), - (638, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4k3aBJR4', '8430783'), - (638, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4k3aBJR4', '8430784'), - (638, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4k3aBJR4', '8430799'), - (638, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4k3aBJR4', '8430800'), - (638, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4k3aBJR4', '8430801'), - (638, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4k3aBJR4', '8438709'), - (638, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4k3aBJR4', '8457738'), - (638, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4k3aBJR4', '8459566'), - (638, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4k3aBJR4', '8459567'), - (638, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4k3aBJR4', '8461032'), - (638, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4k3aBJR4', '8477877'), - (638, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4k3aBJR4', '8485688'), - (638, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4k3aBJR4', '8490587'), - (638, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4k3aBJR4', '8493552'), - (638, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4k3aBJR4', '8493553'), - (638, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4k3aBJR4', '8493554'), - (638, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4k3aBJR4', '8493555'), - (638, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4k3aBJR4', '8493556'), - (638, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4k3aBJR4', '8493557'), - (638, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4k3aBJR4', '8493558'), - (638, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4k3aBJR4', '8493559'), - (638, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4k3aBJR4', '8493560'), - (638, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4k3aBJR4', '8493561'), - (638, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4k3aBJR4', '8493572'), - (638, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '4k3aBJR4', '8540725'), - (638, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4k3aBJR4', '8555421'), - (639, 253, 'attending', '2021-04-04 21:32:52', '2025-12-17 19:47:44', '2d20EjoA', '3149484'), - (639, 254, 'attending', '2021-03-07 21:04:12', '2025-12-17 19:47:51', '2d20EjoA', '3149485'), - (639, 255, 'not_attending', '2021-03-19 04:18:49', '2025-12-17 19:47:43', '2d20EjoA', '3149486'), - (639, 256, 'attending', '2021-05-04 19:54:27', '2025-12-17 19:47:46', '2d20EjoA', '3149487'), - (639, 257, 'attending', '2021-04-18 13:53:18', '2025-12-17 19:47:45', '2d20EjoA', '3149488'), - (639, 396, 'attending', '2021-04-28 15:15:17', '2025-12-17 19:47:46', '2d20EjoA', '3236451'), - (639, 401, 'attending', '2021-05-09 20:47:53', '2025-12-17 19:47:46', '2d20EjoA', '3236456'), - (639, 403, 'attending', '2021-02-28 04:33:38', '2025-12-17 19:47:51', '2d20EjoA', '3236458'), - (639, 404, 'attending', '2021-03-16 20:47:37', '2025-12-17 19:47:51', '2d20EjoA', '3236460'), - (639, 406, 'not_attending', '2021-03-29 17:22:02', '2025-12-17 19:47:44', '2d20EjoA', '3236464'), - (639, 407, 'attending', '2021-04-14 14:57:34', '2025-12-17 19:47:44', '2d20EjoA', '3236465'), - (639, 429, 'attending', '2020-11-25 15:07:54', '2025-12-17 19:47:54', '2d20EjoA', '3250523'), - (639, 441, 'attending', '2020-11-13 05:01:38', '2025-12-17 19:47:54', '2d20EjoA', '3256169'), - (639, 452, 'attending', '2020-11-23 16:58:05', '2025-12-17 19:47:54', '2d20EjoA', '3272981'), - (639, 459, 'maybe', '2020-11-14 20:54:13', '2025-12-17 19:47:54', '2d20EjoA', '3281467'), - (639, 460, 'attending', '2020-11-18 03:01:53', '2025-12-17 19:47:54', '2d20EjoA', '3281468'), - (639, 463, 'attending', '2020-11-13 05:00:28', '2025-12-17 19:47:54', '2d20EjoA', '3281553'), - (639, 464, 'attending', '2020-11-19 23:35:56', '2025-12-17 19:47:54', '2d20EjoA', '3281554'), - (639, 465, 'attending', '2020-11-19 23:36:06', '2025-12-17 19:47:54', '2d20EjoA', '3281555'), - (639, 467, 'attending', '2020-11-15 04:49:08', '2025-12-17 19:47:54', '2d20EjoA', '3282756'), - (639, 468, 'attending', '2020-11-14 20:53:26', '2025-12-17 19:47:54', '2d20EjoA', '3285413'), - (639, 469, 'attending', '2020-11-19 23:35:37', '2025-12-17 19:47:54', '2d20EjoA', '3285414'), - (639, 477, 'attending', '2020-11-23 16:58:27', '2025-12-17 19:47:54', '2d20EjoA', '3289559'), - (639, 481, 'attending', '2020-11-23 16:46:42', '2025-12-17 19:47:54', '2d20EjoA', '3297764'), - (639, 482, 'attending', '2020-11-19 23:35:02', '2025-12-17 19:47:54', '2d20EjoA', '3297769'), - (639, 487, 'maybe', '2020-11-30 05:27:18', '2025-12-17 19:47:54', '2d20EjoA', '3311122'), - (639, 488, 'attending', '2020-11-29 14:01:36', '2025-12-17 19:47:54', '2d20EjoA', '3312757'), - (639, 489, 'maybe', '2020-11-27 17:46:45', '2025-12-17 19:47:54', '2d20EjoA', '3313022'), - (639, 490, 'attending', '2020-12-09 01:19:03', '2025-12-17 19:47:54', '2d20EjoA', '3313532'), - (639, 491, 'attending', '2020-12-09 03:28:56', '2025-12-17 19:47:55', '2d20EjoA', '3313533'), - (639, 492, 'attending', '2020-11-29 14:02:08', '2025-12-17 19:47:54', '2d20EjoA', '3313731'), - (639, 493, 'attending', '2020-11-29 14:00:33', '2025-12-17 19:47:54', '2d20EjoA', '3313856'), - (639, 495, 'attending', '2020-11-30 04:39:55', '2025-12-17 19:47:54', '2d20EjoA', '3314009'), - (639, 496, 'not_attending', '2020-12-10 21:43:55', '2025-12-17 19:47:54', '2d20EjoA', '3314269'), - (639, 497, 'attending', '2020-12-11 03:53:46', '2025-12-17 19:47:55', '2d20EjoA', '3314270'), - (639, 498, 'not_attending', '2020-12-02 11:01:32', '2025-12-17 19:47:54', '2d20EjoA', '3314302'), - (639, 499, 'attending', '2020-11-30 04:40:30', '2025-12-17 19:47:55', '2d20EjoA', '3314909'), - (639, 500, 'not_attending', '2020-12-11 03:53:54', '2025-12-17 19:47:55', '2d20EjoA', '3314964'), - (639, 502, 'attending', '2020-12-08 01:08:23', '2025-12-17 19:47:55', '2d20EjoA', '3323365'), - (639, 503, 'maybe', '2020-12-15 13:39:15', '2025-12-17 19:47:55', '2d20EjoA', '3323366'), - (639, 506, 'attending', '2020-12-08 19:26:58', '2025-12-17 19:47:55', '2d20EjoA', '3323375'), - (639, 508, 'attending', '2021-01-03 23:24:13', '2025-12-17 19:47:48', '2d20EjoA', '3324231'), - (639, 509, 'attending', '2021-01-03 23:24:28', '2025-12-17 19:47:49', '2d20EjoA', '3324232'), - (639, 510, 'attending', '2021-01-03 23:24:32', '2025-12-17 19:47:49', '2d20EjoA', '3324233'), - (639, 511, 'attending', '2020-12-08 19:29:55', '2025-12-17 19:47:55', '2d20EjoA', '3325335'), - (639, 512, 'attending', '2020-12-08 19:29:23', '2025-12-17 19:47:55', '2d20EjoA', '3325336'), - (639, 513, 'maybe', '2020-12-17 03:14:25', '2025-12-17 19:47:55', '2d20EjoA', '3329383'), - (639, 516, 'attending', '2020-12-17 00:46:43', '2025-12-17 19:47:48', '2d20EjoA', '3334530'), - (639, 517, 'attending', '2020-12-15 01:35:15', '2025-12-17 19:47:48', '2d20EjoA', '3337137'), - (639, 518, 'attending', '2020-12-15 01:35:10', '2025-12-17 19:47:48', '2d20EjoA', '3337138'), - (639, 526, 'attending', '2020-12-25 12:21:36', '2025-12-17 19:47:48', '2d20EjoA', '3351539'), - (639, 529, 'attending', '2021-01-03 23:23:13', '2025-12-17 19:47:48', '2d20EjoA', '3364568'), - (639, 532, 'attending', '2021-01-03 23:23:36', '2025-12-17 19:47:48', '2d20EjoA', '3381412'), - (639, 536, 'attending', '2021-01-06 03:08:14', '2025-12-17 19:47:48', '2d20EjoA', '3386848'), - (639, 537, 'attending', '2021-01-09 03:30:33', '2025-12-17 19:47:48', '2d20EjoA', '3387153'), - (639, 538, 'attending', '2021-01-10 04:06:16', '2025-12-17 19:47:48', '2d20EjoA', '3388151'), - (639, 540, 'attending', '2021-01-07 02:40:32', '2025-12-17 19:47:48', '2d20EjoA', '3389527'), - (639, 542, 'attending', '2021-01-11 20:52:46', '2025-12-17 19:47:48', '2d20EjoA', '3395013'), - (639, 543, 'maybe', '2021-01-11 20:54:28', '2025-12-17 19:47:48', '2d20EjoA', '3396499'), - (639, 544, 'maybe', '2021-01-12 20:26:14', '2025-12-17 19:47:48', '2d20EjoA', '3396500'), - (639, 545, 'attending', '2021-01-20 01:24:23', '2025-12-17 19:47:49', '2d20EjoA', '3396502'), - (639, 546, 'attending', '2021-01-11 20:55:29', '2025-12-17 19:47:49', '2d20EjoA', '3396503'), - (639, 547, 'attending', '2021-01-11 20:55:37', '2025-12-17 19:47:49', '2d20EjoA', '3396504'), - (639, 548, 'attending', '2021-01-11 20:54:44', '2025-12-17 19:47:48', '2d20EjoA', '3403650'), - (639, 549, 'attending', '2021-01-13 21:43:31', '2025-12-17 19:47:48', '2d20EjoA', '3406988'), - (639, 550, 'attending', '2021-01-13 21:43:27', '2025-12-17 19:47:48', '2d20EjoA', '3407018'), - (639, 554, 'attending', '2021-01-13 21:44:37', '2025-12-17 19:47:49', '2d20EjoA', '3408338'), - (639, 555, 'attending', '2021-01-20 05:17:18', '2025-12-17 19:47:49', '2d20EjoA', '3416576'), - (639, 556, 'attending', '2021-01-20 01:27:15', '2025-12-17 19:47:49', '2d20EjoA', '3417170'), - (639, 559, 'attending', '2021-01-27 22:14:20', '2025-12-17 19:47:49', '2d20EjoA', '3421439'), - (639, 564, 'maybe', '2021-01-24 08:56:39', '2025-12-17 19:47:49', '2d20EjoA', '3426074'), - (639, 565, 'attending', '2021-01-26 22:29:24', '2025-12-17 19:47:49', '2d20EjoA', '3426083'), - (639, 566, 'not_attending', '2021-01-30 05:42:37', '2025-12-17 19:47:50', '2d20EjoA', '3427928'), - (639, 567, 'attending', '2021-01-29 06:57:55', '2025-12-17 19:47:50', '2d20EjoA', '3428895'), - (639, 568, 'attending', '2021-01-27 22:14:41', '2025-12-17 19:47:50', '2d20EjoA', '3430267'), - (639, 570, 'attending', '2021-02-05 09:19:16', '2025-12-17 19:47:50', '2d20EjoA', '3435538'), - (639, 571, 'attending', '2021-02-10 22:28:31', '2025-12-17 19:47:50', '2d20EjoA', '3435539'), - (639, 572, 'attending', '2021-01-27 00:49:36', '2025-12-17 19:47:50', '2d20EjoA', '3435540'), - (639, 573, 'attending', '2021-02-26 22:35:17', '2025-12-17 19:47:50', '2d20EjoA', '3435542'), - (639, 574, 'attending', '2021-01-29 04:00:27', '2025-12-17 19:47:51', '2d20EjoA', '3435543'), - (639, 576, 'attending', '2021-01-29 03:58:56', '2025-12-17 19:47:50', '2d20EjoA', '3438748'), - (639, 577, 'attending', '2021-01-29 22:57:57', '2025-12-17 19:47:49', '2d20EjoA', '3439167'), - (639, 578, 'attending', '2021-01-29 03:59:22', '2025-12-17 19:47:50', '2d20EjoA', '3440043'), - (639, 579, 'attending', '2021-01-29 03:59:59', '2025-12-17 19:47:50', '2d20EjoA', '3440978'), - (639, 580, 'attending', '2021-01-31 03:57:57', '2025-12-17 19:47:50', '2d20EjoA', '3444240'), - (639, 582, 'attending', '2021-01-31 03:58:23', '2025-12-17 19:47:50', '2d20EjoA', '3445769'), - (639, 591, 'attending', '2021-02-06 15:56:12', '2025-12-17 19:47:50', '2d20EjoA', '3465880'), - (639, 592, 'maybe', '2021-02-23 23:53:30', '2025-12-17 19:47:50', '2d20EjoA', '3467757'), - (639, 598, 'attending', '2021-02-06 15:55:57', '2025-12-17 19:47:50', '2d20EjoA', '3468003'), - (639, 599, 'maybe', '2021-02-17 00:42:43', '2025-12-17 19:47:50', '2d20EjoA', '3468117'), - (639, 600, 'attending', '2021-02-06 15:55:06', '2025-12-17 19:47:50', '2d20EjoA', '3468125'), - (639, 602, 'attending', '2021-02-07 18:03:18', '2025-12-17 19:47:50', '2d20EjoA', '3470303'), - (639, 603, 'attending', '2021-02-07 18:03:26', '2025-12-17 19:47:50', '2d20EjoA', '3470304'), - (639, 604, 'attending', '2021-02-07 18:03:28', '2025-12-17 19:47:50', '2d20EjoA', '3470305'), - (639, 605, 'attending', '2021-02-07 18:03:49', '2025-12-17 19:47:50', '2d20EjoA', '3470991'), - (639, 606, 'attending', '2021-02-07 18:02:10', '2025-12-17 19:47:50', '2d20EjoA', '3470998'), - (639, 607, 'attending', '2021-02-09 00:48:47', '2025-12-17 19:47:50', '2d20EjoA', '3471882'), - (639, 608, 'attending', '2021-02-09 18:55:42', '2025-12-17 19:47:50', '2d20EjoA', '3475332'), - (639, 611, 'attending', '2021-02-15 21:23:47', '2025-12-17 19:47:50', '2d20EjoA', '3482659'), - (639, 612, 'attending', '2021-02-15 21:22:03', '2025-12-17 19:47:50', '2d20EjoA', '3490040'), - (639, 613, 'attending', '2021-02-15 21:23:55', '2025-12-17 19:47:50', '2d20EjoA', '3490041'), - (639, 614, 'attending', '2021-02-15 21:24:23', '2025-12-17 19:47:51', '2d20EjoA', '3490042'), - (639, 615, 'maybe', '2021-02-20 19:58:50', '2025-12-17 19:47:50', '2d20EjoA', '3490045'), - (639, 616, 'attending', '2021-02-15 21:23:14', '2025-12-17 19:47:50', '2d20EjoA', '3493478'), - (639, 617, 'attending', '2021-02-18 22:16:02', '2025-12-17 19:47:50', '2d20EjoA', '3499119'), - (639, 618, 'attending', '2021-02-19 22:32:07', '2025-12-17 19:47:50', '2d20EjoA', '3503991'), - (639, 621, 'attending', '2021-02-23 23:53:56', '2025-12-17 19:47:51', '2d20EjoA', '3517815'), - (639, 622, 'attending', '2021-02-23 23:54:04', '2025-12-17 19:47:51', '2d20EjoA', '3517816'), - (639, 623, 'attending', '2021-02-25 17:12:00', '2025-12-17 19:47:50', '2d20EjoA', '3523941'), - (639, 625, 'not_attending', '2021-03-02 16:22:18', '2025-12-17 19:47:51', '2d20EjoA', '3533296'), - (639, 627, 'attending', '2021-03-10 01:42:09', '2025-12-17 19:47:51', '2d20EjoA', '3533303'), - (639, 628, 'maybe', '2021-03-02 01:19:14', '2025-12-17 19:47:51', '2d20EjoA', '3533305'), - (639, 630, 'maybe', '2021-03-03 00:48:05', '2025-12-17 19:47:51', '2d20EjoA', '3533425'), - (639, 631, 'attending', '2021-03-01 00:53:36', '2025-12-17 19:47:51', '2d20EjoA', '3533850'), - (639, 632, 'attending', '2021-03-01 01:27:51', '2025-12-17 19:47:51', '2d20EjoA', '3533853'), - (639, 634, 'attending', '2021-03-29 17:22:34', '2025-12-17 19:47:44', '2d20EjoA', '3534718'), - (639, 637, 'attending', '2021-03-01 18:51:32', '2025-12-17 19:47:51', '2d20EjoA', '3536411'), - (639, 638, 'attending', '2021-03-01 18:50:32', '2025-12-17 19:47:44', '2d20EjoA', '3536632'), - (639, 639, 'attending', '2021-03-09 05:42:51', '2025-12-17 19:47:51', '2d20EjoA', '3536656'), - (639, 641, 'attending', '2021-03-03 15:12:00', '2025-12-17 19:47:44', '2d20EjoA', '3539916'), - (639, 642, 'attending', '2021-03-03 15:12:09', '2025-12-17 19:47:44', '2d20EjoA', '3539917'), - (639, 643, 'attending', '2021-03-03 15:12:15', '2025-12-17 19:47:45', '2d20EjoA', '3539918'), - (639, 644, 'attending', '2021-03-03 15:12:18', '2025-12-17 19:47:45', '2d20EjoA', '3539919'), - (639, 645, 'attending', '2021-03-03 15:12:23', '2025-12-17 19:47:46', '2d20EjoA', '3539920'), - (639, 646, 'attending', '2021-05-15 14:49:58', '2025-12-17 19:47:46', '2d20EjoA', '3539921'), - (639, 647, 'not_attending', '2021-05-22 19:39:11', '2025-12-17 19:47:46', '2d20EjoA', '3539922'), - (639, 648, 'attending', '2021-05-29 04:25:40', '2025-12-17 19:47:47', '2d20EjoA', '3539923'), - (639, 649, 'not_attending', '2021-03-20 22:43:43', '2025-12-17 19:47:51', '2d20EjoA', '3539927'), - (639, 650, 'attending', '2021-03-09 09:03:00', '2025-12-17 19:47:44', '2d20EjoA', '3539928'), - (639, 651, 'attending', '2021-03-07 03:39:46', '2025-12-17 19:47:51', '2d20EjoA', '3541045'), - (639, 653, 'attending', '2021-03-06 18:31:53', '2025-12-17 19:47:51', '2d20EjoA', '3546917'), - (639, 654, 'attending', '2021-03-07 04:16:51', '2025-12-17 19:47:51', '2d20EjoA', '3546990'), - (639, 662, 'attending', '2021-04-24 18:33:18', '2025-12-17 19:47:45', '2d20EjoA', '3547138'), - (639, 664, 'attending', '2021-08-29 19:58:34', '2025-12-17 19:47:43', '2d20EjoA', '3547142'), - (639, 665, 'attending', '2021-08-29 19:58:30', '2025-12-17 19:47:43', '2d20EjoA', '3547143'), - (639, 666, 'attending', '2021-08-10 15:21:03', '2025-12-17 19:47:42', '2d20EjoA', '3547144'), - (639, 667, 'maybe', '2021-08-28 20:51:48', '2025-12-17 19:47:42', '2d20EjoA', '3547145'), - (639, 668, 'attending', '2021-05-15 15:02:11', '2025-12-17 19:47:46', '2d20EjoA', '3547146'), - (639, 671, 'maybe', '2021-07-14 21:00:02', '2025-12-17 19:47:39', '2d20EjoA', '3547149'), - (639, 672, 'not_attending', '2021-05-22 19:40:17', '2025-12-17 19:47:46', '2d20EjoA', '3547150'), - (639, 674, 'attending', '2021-08-06 14:00:07', '2025-12-17 19:47:41', '2d20EjoA', '3547152'), - (639, 675, 'maybe', '2021-07-29 18:38:39', '2025-12-17 19:47:40', '2d20EjoA', '3547153'), - (639, 676, 'attending', '2021-07-19 22:38:58', '2025-12-17 19:47:40', '2d20EjoA', '3547154'), - (639, 678, 'attending', '2021-03-08 20:40:22', '2025-12-17 19:47:51', '2d20EjoA', '3547158'), - (639, 680, 'attending', '2021-03-10 04:16:08', '2025-12-17 19:47:51', '2d20EjoA', '3547700'), - (639, 684, 'attending', '2021-03-08 20:40:40', '2025-12-17 19:47:51', '2d20EjoA', '3549257'), - (639, 687, 'not_attending', '2021-03-12 01:55:00', '2025-12-17 19:47:51', '2d20EjoA', '3553405'), - (639, 688, 'attending', '2021-03-10 01:59:06', '2025-12-17 19:47:51', '2d20EjoA', '3553729'), - (639, 689, 'attending', '2021-03-19 04:18:34', '2025-12-17 19:47:44', '2d20EjoA', '3555564'), - (639, 690, 'attending', '2021-03-19 04:18:56', '2025-12-17 19:47:43', '2d20EjoA', '3559954'), - (639, 691, 'attending', '2021-03-19 22:56:32', '2025-12-17 19:47:45', '2d20EjoA', '3561928'), - (639, 698, 'attending', '2021-03-16 20:46:51', '2025-12-17 19:47:44', '2d20EjoA', '3571867'), - (639, 700, 'attending', '2021-03-19 04:29:57', '2025-12-17 19:47:44', '2d20EjoA', '3575725'), - (639, 702, 'maybe', '2021-03-19 22:53:29', '2025-12-17 19:47:51', '2d20EjoA', '3577181'), - (639, 703, 'attending', '2021-03-19 22:54:35', '2025-12-17 19:47:44', '2d20EjoA', '3578388'), - (639, 704, 'attending', '2021-03-28 19:12:08', '2025-12-17 19:47:44', '2d20EjoA', '3581429'), - (639, 705, 'attending', '2021-03-19 22:46:39', '2025-12-17 19:47:44', '2d20EjoA', '3581895'), - (639, 706, 'attending', '2021-04-15 17:59:20', '2025-12-17 19:47:45', '2d20EjoA', '3582734'), - (639, 707, 'attending', '2021-04-01 04:31:11', '2025-12-17 19:47:46', '2d20EjoA', '3583262'), - (639, 711, 'attending', '2021-03-29 17:22:06', '2025-12-17 19:47:44', '2d20EjoA', '3588075'), - (639, 714, 'attending', '2021-03-30 07:17:01', '2025-12-17 19:47:44', '2d20EjoA', '3604063'), - (639, 716, 'not_attending', '2021-04-02 14:54:18', '2025-12-17 19:47:44', '2d20EjoA', '3618353'), - (639, 717, 'attending', '2021-03-25 20:43:31', '2025-12-17 19:47:44', '2d20EjoA', '3619523'), - (639, 719, 'maybe', '2021-04-11 04:46:00', '2025-12-17 19:47:44', '2d20EjoA', '3635405'), - (639, 721, 'attending', '2021-04-03 17:30:09', '2025-12-17 19:47:44', '2d20EjoA', '3643622'), - (639, 723, 'maybe', '2021-04-05 21:44:46', '2025-12-17 19:47:44', '2d20EjoA', '3649179'), - (639, 728, 'maybe', '2021-04-14 14:57:29', '2025-12-17 19:47:44', '2d20EjoA', '3668073'), - (639, 729, 'attending', '2021-04-28 15:14:52', '2025-12-17 19:47:46', '2d20EjoA', '3668075'), - (639, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '2d20EjoA', '3674262'), - (639, 732, 'attending', '2021-04-14 15:32:06', '2025-12-17 19:47:45', '2d20EjoA', '3674268'), - (639, 734, 'maybe', '2021-04-05 01:23:05', '2025-12-17 19:47:44', '2d20EjoA', '3676806'), - (639, 735, 'attending', '2021-04-05 00:59:34', '2025-12-17 19:47:46', '2d20EjoA', '3677402'), - (639, 739, 'attending', '2021-05-04 20:09:20', '2025-12-17 19:47:46', '2d20EjoA', '3680616'), - (639, 740, 'attending', '2021-04-28 15:15:56', '2025-12-17 19:47:46', '2d20EjoA', '3680617'), - (639, 744, 'maybe', '2021-06-11 21:43:32', '2025-12-17 19:47:47', '2d20EjoA', '3680624'), - (639, 746, 'maybe', '2021-07-07 19:57:07', '2025-12-17 19:47:39', '2d20EjoA', '3680626'), - (639, 748, 'attending', '2021-04-11 04:46:35', '2025-12-17 19:47:44', '2d20EjoA', '3685353'), - (639, 752, 'not_attending', '2021-04-14 14:57:17', '2025-12-17 19:47:44', '2d20EjoA', '3699422'), - (639, 757, 'attending', '2021-04-20 19:45:41', '2025-12-17 19:47:45', '2d20EjoA', '3708109'), - (639, 761, 'attending', '2021-05-09 20:55:11', '2025-12-17 19:47:46', '2d20EjoA', '3716041'), - (639, 772, 'maybe', '2021-04-30 22:38:37', '2025-12-17 19:47:46', '2d20EjoA', '3726421'), - (639, 773, 'attending', '2021-04-20 21:28:40', '2025-12-17 19:47:46', '2d20EjoA', '3729399'), - (639, 774, 'attending', '2021-04-21 02:29:08', '2025-12-17 19:47:45', '2d20EjoA', '3730212'), - (639, 775, 'attending', '2021-04-21 11:46:14', '2025-12-17 19:47:45', '2d20EjoA', '3731062'), - (639, 777, 'maybe', '2021-05-01 19:56:20', '2025-12-17 19:47:46', '2d20EjoA', '3746248'), - (639, 778, 'attending', '2021-04-28 15:15:41', '2025-12-17 19:47:46', '2d20EjoA', '3751550'), - (639, 784, 'attending', '2021-05-04 20:09:16', '2025-12-17 19:47:46', '2d20EjoA', '3768775'), - (639, 786, 'attending', '2021-05-04 21:10:12', '2025-12-17 19:47:46', '2d20EjoA', '3780093'), - (639, 791, 'maybe', '2021-05-10 22:15:25', '2025-12-17 19:47:46', '2d20EjoA', '3792735'), - (639, 792, 'attending', '2021-05-19 23:19:59', '2025-12-17 19:47:46', '2d20EjoA', '3793156'), - (639, 793, 'attending', '2021-06-01 20:20:21', '2025-12-17 19:47:47', '2d20EjoA', '3793537'), - (639, 806, 'attending', '2021-05-15 14:42:44', '2025-12-17 19:47:46', '2d20EjoA', '3806392'), - (639, 810, 'maybe', '2021-05-17 17:12:09', '2025-12-17 19:47:46', '2d20EjoA', '3808029'), - (639, 820, 'attending', '2021-05-28 02:57:01', '2025-12-17 19:47:47', '2d20EjoA', '3963335'), - (639, 822, 'attending', '2021-06-06 15:33:50', '2025-12-17 19:47:47', '2d20EjoA', '3969986'), - (639, 823, 'attending', '2021-06-17 20:03:40', '2025-12-17 19:47:48', '2d20EjoA', '3974109'), - (639, 826, 'attending', '2021-06-14 15:43:15', '2025-12-17 19:47:48', '2d20EjoA', '3975310'), - (639, 827, 'attending', '2021-06-03 21:26:16', '2025-12-17 19:47:47', '2d20EjoA', '3975311'), - (639, 828, 'maybe', '2021-06-12 21:28:44', '2025-12-17 19:47:47', '2d20EjoA', '3975312'), - (639, 833, 'attending', '2021-06-07 22:34:41', '2025-12-17 19:47:47', '2d20EjoA', '3990438'), - (639, 834, 'attending', '2021-06-08 15:42:35', '2025-12-17 19:47:47', '2d20EjoA', '3990439'), - (639, 838, 'attending', '2021-06-06 18:31:53', '2025-12-17 19:47:47', '2d20EjoA', '3994992'), - (639, 840, 'attending', '2021-06-08 01:31:53', '2025-12-17 19:47:47', '2d20EjoA', '4007283'), - (639, 844, 'attending', '2021-06-10 21:44:47', '2025-12-17 19:47:38', '2d20EjoA', '4014338'), - (639, 846, 'attending', '2021-07-04 05:55:34', '2025-12-17 19:47:39', '2d20EjoA', '4015718'), - (639, 867, 'attending', '2021-06-21 17:29:52', '2025-12-17 19:47:38', '2d20EjoA', '4021848'), - (639, 868, 'maybe', '2021-06-17 20:03:50', '2025-12-17 19:47:48', '2d20EjoA', '4022012'), - (639, 869, 'attending', '2021-06-21 17:34:23', '2025-12-17 19:47:38', '2d20EjoA', '4136744'), - (639, 870, 'attending', '2021-06-21 17:33:32', '2025-12-17 19:47:38', '2d20EjoA', '4136937'), - (639, 871, 'attending', '2021-07-05 11:25:33', '2025-12-17 19:47:39', '2d20EjoA', '4136938'), - (639, 872, 'attending', '2021-07-19 22:38:29', '2025-12-17 19:47:40', '2d20EjoA', '4136947'), - (639, 880, 'attending', '2021-06-18 20:06:09', '2025-12-17 19:47:48', '2d20EjoA', '4205383'), - (639, 884, 'attending', '2021-08-10 15:21:13', '2025-12-17 19:47:42', '2d20EjoA', '4210314'), - (639, 887, 'attending', '2021-07-11 15:59:21', '2025-12-17 19:47:39', '2d20EjoA', '4225444'), - (639, 895, 'attending', '2021-06-27 04:18:00', '2025-12-17 19:47:39', '2d20EjoA', '4229424'), - (639, 897, 'attending', '2021-06-27 23:39:34', '2025-12-17 19:47:38', '2d20EjoA', '4232132'), - (639, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '2d20EjoA', '4239259'), - (639, 900, 'attending', '2021-07-19 22:39:01', '2025-12-17 19:47:40', '2d20EjoA', '4240316'), - (639, 901, 'attending', '2021-07-31 01:21:52', '2025-12-17 19:47:40', '2d20EjoA', '4240317'), - (639, 902, 'attending', '2021-08-06 14:01:00', '2025-12-17 19:47:41', '2d20EjoA', '4240318'), - (639, 903, 'attending', '2021-08-10 15:21:04', '2025-12-17 19:47:42', '2d20EjoA', '4240320'), - (639, 905, 'attending', '2021-07-05 11:25:57', '2025-12-17 19:47:39', '2d20EjoA', '4250163'), - (639, 906, 'maybe', '2021-07-11 18:59:08', '2025-12-17 19:47:39', '2d20EjoA', '4253431'), - (639, 907, 'attending', '2021-07-05 11:25:43', '2025-12-17 19:47:39', '2d20EjoA', '4254036'), - (639, 917, 'not_attending', '2021-07-14 20:59:51', '2025-12-17 19:47:39', '2d20EjoA', '4274481'), - (639, 919, 'maybe', '2021-07-17 20:31:50', '2025-12-17 19:47:39', '2d20EjoA', '4275957'), - (639, 920, 'attending', '2021-07-19 22:39:05', '2025-12-17 19:47:40', '2d20EjoA', '4277819'), - (639, 921, 'not_attending', '2021-07-14 20:59:52', '2025-12-17 19:47:39', '2d20EjoA', '4278368'), - (639, 926, 'attending', '2021-08-17 14:58:17', '2025-12-17 19:47:42', '2d20EjoA', '4297211'), - (639, 928, 'attending', '2021-07-30 15:11:37', '2025-12-17 19:47:40', '2d20EjoA', '4297218'), - (639, 929, 'attending', '2021-08-03 21:43:04', '2025-12-17 19:47:41', '2d20EjoA', '4297223'), - (639, 932, 'maybe', '2021-08-22 17:26:33', '2025-12-17 19:47:42', '2d20EjoA', '4301664'), - (639, 933, 'attending', '2021-07-25 08:45:28', '2025-12-17 19:47:40', '2d20EjoA', '4301723'), - (639, 934, 'attending', '2021-08-03 21:47:54', '2025-12-17 19:47:40', '2d20EjoA', '4302093'), - (639, 935, 'attending', '2021-08-11 21:17:33', '2025-12-17 19:47:41', '2d20EjoA', '4304151'), - (639, 940, 'maybe', '2021-07-29 18:38:14', '2025-12-17 19:47:40', '2d20EjoA', '4309049'), - (639, 947, 'attending', '2021-08-03 00:35:50', '2025-12-17 19:47:41', '2d20EjoA', '4315713'), - (639, 948, 'attending', '2021-08-11 09:35:03', '2025-12-17 19:47:41', '2d20EjoA', '4315714'), - (639, 951, 'attending', '2021-07-28 02:53:57', '2025-12-17 19:47:43', '2d20EjoA', '4315731'), - (639, 952, 'maybe', '2021-08-05 20:25:35', '2025-12-17 19:47:41', '2d20EjoA', '4318286'), - (639, 959, 'attending', '2021-08-07 16:24:50', '2025-12-17 19:47:41', '2d20EjoA', '4344515'), - (639, 961, 'maybe', '2021-08-10 15:20:55', '2025-12-17 19:47:42', '2d20EjoA', '4345519'), - (639, 971, 'attending', '2021-09-03 20:05:20', '2025-12-17 19:47:43', '2d20EjoA', '4356801'), - (639, 973, 'attending', '2021-08-16 21:17:37', '2025-12-17 19:47:42', '2d20EjoA', '4366186'), - (639, 974, 'attending', '2021-08-24 02:37:47', '2025-12-17 19:47:42', '2d20EjoA', '4366187'), - (639, 979, 'attending', '2021-08-19 11:59:23', '2025-12-17 19:47:42', '2d20EjoA', '4379085'), - (639, 980, 'attending', '2021-08-20 05:03:24', '2025-12-17 19:47:42', '2d20EjoA', '4380358'), - (639, 981, 'attending', '2021-08-27 17:58:55', '2025-12-17 19:47:42', '2d20EjoA', '4387305'), - (639, 987, 'attending', '2021-09-01 16:06:41', '2025-12-17 19:47:43', '2d20EjoA', '4402634'), - (639, 990, 'attending', '2021-09-04 21:53:14', '2025-12-17 19:47:43', '2d20EjoA', '4420735'), - (639, 991, 'attending', '2021-08-29 19:58:38', '2025-12-17 19:47:43', '2d20EjoA', '4420738'), - (639, 992, 'attending', '2021-08-29 19:58:41', '2025-12-17 19:47:33', '2d20EjoA', '4420739'), - (639, 993, 'attending', '2021-08-29 19:58:44', '2025-12-17 19:47:34', '2d20EjoA', '4420741'), - (639, 994, 'not_attending', '2021-10-02 14:56:14', '2025-12-17 19:47:34', '2d20EjoA', '4420742'), - (639, 995, 'attending', '2021-10-09 17:52:29', '2025-12-17 19:47:34', '2d20EjoA', '4420744'), - (639, 996, 'attending', '2021-10-12 04:30:03', '2025-12-17 19:47:35', '2d20EjoA', '4420747'), - (639, 997, 'attending', '2021-10-20 21:00:29', '2025-12-17 19:47:35', '2d20EjoA', '4420748'), - (639, 998, 'maybe', '2021-10-30 20:46:50', '2025-12-17 19:47:36', '2d20EjoA', '4420749'), - (639, 999, 'attending', '2021-08-31 17:39:20', '2025-12-17 19:47:43', '2d20EjoA', '4421150'), - (639, 1003, 'attending', '2021-09-06 17:42:03', '2025-12-17 19:47:43', '2d20EjoA', '4438802'), - (639, 1005, 'maybe', '2021-09-21 10:45:49', '2025-12-17 19:47:34', '2d20EjoA', '4438807'), - (639, 1006, 'attending', '2021-10-01 21:44:21', '2025-12-17 19:47:34', '2d20EjoA', '4438808'), - (639, 1007, 'attending', '2021-09-02 17:20:27', '2025-12-17 19:47:34', '2d20EjoA', '4438809'), - (639, 1012, 'not_attending', '2021-10-28 21:46:57', '2025-12-17 19:47:36', '2d20EjoA', '4438816'), - (639, 1013, 'attending', '2021-09-02 17:22:54', '2025-12-17 19:47:43', '2d20EjoA', '4438817'), - (639, 1018, 'attending', '2021-09-06 17:41:37', '2025-12-17 19:47:43', '2d20EjoA', '4448883'), - (639, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '2d20EjoA', '4461883'), - (639, 1036, 'maybe', '2021-09-21 16:07:14', '2025-12-17 19:47:34', '2d20EjoA', '4493166'), - (639, 1043, 'attending', '2021-10-20 21:00:28', '2025-12-17 19:47:35', '2d20EjoA', '4496608'), - (639, 1045, 'maybe', '2021-10-30 20:46:46', '2025-12-17 19:47:36', '2d20EjoA', '4496610'), - (639, 1046, 'attending', '2021-10-12 04:30:00', '2025-12-17 19:47:35', '2d20EjoA', '4496611'), - (639, 1047, 'attending', '2021-10-09 17:52:19', '2025-12-17 19:47:34', '2d20EjoA', '4496612'), - (639, 1048, 'attending', '2021-11-12 23:59:47', '2025-12-17 19:47:36', '2d20EjoA', '4496613'), - (639, 1051, 'maybe', '2022-01-30 06:57:37', '2025-12-17 19:47:32', '2d20EjoA', '4496616'), - (639, 1065, 'attending', '2021-09-21 15:03:16', '2025-12-17 19:47:34', '2d20EjoA', '4505800'), - (639, 1066, 'maybe', '2021-09-21 17:39:08', '2025-12-17 19:47:34', '2d20EjoA', '4506039'), - (639, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '2d20EjoA', '4508342'), - (639, 1072, 'attending', '2021-10-06 20:52:56', '2025-12-17 19:47:34', '2d20EjoA', '4516287'), - (639, 1077, 'attending', '2021-10-12 04:29:53', '2025-12-17 19:47:34', '2d20EjoA', '4540903'), - (639, 1079, 'attending', '2021-10-10 06:04:43', '2025-12-17 19:47:35', '2d20EjoA', '4563823'), - (639, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '2d20EjoA', '4568602'), - (639, 1087, 'attending', '2021-10-15 06:22:00', '2025-12-17 19:47:35', '2d20EjoA', '4572153'), - (639, 1092, 'not_attending', '2021-10-20 12:14:39', '2025-12-17 19:47:35', '2d20EjoA', '4582837'), - (639, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '2d20EjoA', '4585962'), - (639, 1094, 'attending', '2021-10-25 06:57:35', '2025-12-17 19:47:36', '2d20EjoA', '4587337'), - (639, 1095, 'maybe', '2021-10-27 20:15:40', '2025-12-17 19:47:36', '2d20EjoA', '4596356'), - (639, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '2d20EjoA', '4598860'), - (639, 1098, 'attending', '2021-11-08 04:15:54', '2025-12-17 19:47:36', '2d20EjoA', '4598861'), - (639, 1099, 'attending', '2021-11-06 19:28:47', '2025-12-17 19:47:36', '2d20EjoA', '4602797'), - (639, 1102, 'attending', '2021-11-13 00:01:56', '2025-12-17 19:47:37', '2d20EjoA', '4612098'), - (639, 1104, 'attending', '2021-11-08 04:06:25', '2025-12-17 19:47:36', '2d20EjoA', '4618310'), - (639, 1105, 'attending', '2021-11-08 04:06:32', '2025-12-17 19:47:36', '2d20EjoA', '4618567'), - (639, 1114, 'attending', '2021-11-12 23:59:31', '2025-12-17 19:47:36', '2d20EjoA', '4637896'), - (639, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '2d20EjoA', '4642994'), - (639, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '2d20EjoA', '4642995'), - (639, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '2d20EjoA', '4642996'), - (639, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '2d20EjoA', '4642997'), - (639, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '2d20EjoA', '4645687'), - (639, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '2d20EjoA', '4645698'), - (639, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '2d20EjoA', '4645704'), - (639, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '2d20EjoA', '4645705'), - (639, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '2d20EjoA', '4668385'), - (639, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '2d20EjoA', '4694407'), - (639, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '2d20EjoA', '4736497'), - (639, 1176, 'attending', '2022-01-30 09:08:21', '2025-12-17 19:47:32', '2d20EjoA', '4736498'), - (639, 1177, 'attending', '2022-02-13 00:04:23', '2025-12-17 19:47:32', '2d20EjoA', '4736499'), - (639, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '2d20EjoA', '4736500'), - (639, 1179, 'attending', '2022-02-19 15:30:34', '2025-12-17 19:47:32', '2d20EjoA', '4736501'), - (639, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '2d20EjoA', '4736503'), - (639, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '2d20EjoA', '4736504'), - (639, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '2d20EjoA', '4746789'), - (639, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '2d20EjoA', '4753929'), - (639, 1219, 'maybe', '2022-01-30 18:00:44', '2025-12-17 19:47:32', '2d20EjoA', '4788466'), - (639, 1222, 'attending', '2022-02-14 08:43:47', '2025-12-17 19:47:32', '2d20EjoA', '5015628'), - (639, 1228, 'attending', '2022-02-11 22:52:14', '2025-12-17 19:47:32', '2d20EjoA', '5028238'), - (639, 1229, 'attending', '2022-02-18 19:58:01', '2025-12-17 19:47:32', '2d20EjoA', '5034963'), - (639, 1232, 'attending', '2022-02-09 23:07:20', '2025-12-17 19:47:32', '2d20EjoA', '5038850'), - (639, 1236, 'attending', '2022-02-14 08:46:12', '2025-12-17 19:47:32', '2d20EjoA', '5045826'), - (639, 1237, 'maybe', '2022-02-18 19:58:40', '2025-12-17 19:47:32', '2d20EjoA', '5050641'), - (639, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '2d20EjoA', '5132533'), - (639, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '2d20EjoA', '5186582'), - (639, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '2d20EjoA', '5186583'), - (639, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '2d20EjoA', '5186585'), - (639, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '2d20EjoA', '5190437'), - (639, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '2d20EjoA', '5195095'), - (639, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '2d20EjoA', '5215989'), - (639, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '2d20EjoA', '5223686'), - (639, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '2d20EjoA', '5227432'), - (639, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '2d20EjoA', '5247467'), - (639, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '2d20EjoA', '5260800'), - (639, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '2d20EjoA', '5269930'), - (639, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '2d20EjoA', '5271448'), - (639, 1379, 'attending', '2022-05-21 03:44:00', '2025-12-17 19:47:29', '2d20EjoA', '5271449'), - (639, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '2d20EjoA', '5276469'), - (639, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '2d20EjoA', '5278159'), - (639, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '2d20EjoA', '5363695'), - (639, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '2d20EjoA', '5365960'), - (639, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '2d20EjoA', '5368973'), - (639, 1427, 'attending', '2022-05-25 22:32:18', '2025-12-17 19:47:30', '2d20EjoA', '5376074'), - (639, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '2d20EjoA', '5378247'), - (639, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '2d20EjoA', '5389605'), - (639, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '2d20EjoA', '5397265'), - (639, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '2d20EjoA', '5403967'), - (639, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '2d20EjoA', '5404786'), - (639, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '2d20EjoA', '5405203'), - (639, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '2d20EjoA', '5408794'), - (639, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '2d20EjoA', '5411699'), - (639, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '2d20EjoA', '5412550'), - (639, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '2d20EjoA', '5415046'), - (639, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '2d20EjoA', '5422086'), - (639, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '2d20EjoA', '5422406'), - (639, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '2d20EjoA', '5424565'), - (639, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '2d20EjoA', '5426882'), - (639, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '2d20EjoA', '5427083'), - (639, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '2d20EjoA', '5441125'), - (639, 1514, 'maybe', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '2d20EjoA', '5441126'), - (639, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '2d20EjoA', '5441128'), - (639, 1516, 'attending', '2022-08-20 10:18:26', '2025-12-17 19:47:23', '2d20EjoA', '5441129'), - (639, 1517, 'not_attending', '2022-08-23 04:25:14', '2025-12-17 19:47:23', '2d20EjoA', '5441130'), - (639, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '2d20EjoA', '5441131'), - (639, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '2d20EjoA', '5441132'), - (639, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '2d20EjoA', '5446643'), - (639, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '2d20EjoA', '5453325'), - (639, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '2d20EjoA', '5454516'), - (639, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '2d20EjoA', '5454605'), - (639, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '2d20EjoA', '5455037'), - (639, 1561, 'maybe', '2022-08-03 10:14:22', '2025-12-17 19:47:22', '2d20EjoA', '5461278'), - (639, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '2d20EjoA', '5469480'), - (639, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '2d20EjoA', '5471073'), - (639, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '2d20EjoA', '5474663'), - (639, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '2d20EjoA', '5482022'), - (639, 1575, 'attending', '2022-08-25 10:04:11', '2025-12-17 19:47:23', '2d20EjoA', '5482250'), - (639, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '2d20EjoA', '5482793'), - (639, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '2d20EjoA', '5488912'), - (639, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '2d20EjoA', '5492192'), - (639, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '2d20EjoA', '5493139'), - (639, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '2d20EjoA', '5493200'), - (639, 1602, 'attending', '2022-08-13 17:27:47', '2025-12-17 19:47:22', '2d20EjoA', '5497383'), - (639, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '2d20EjoA', '5502188'), - (639, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '2d20EjoA', '5505059'), - (639, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '2d20EjoA', '5509055'), - (639, 1618, 'attending', '2022-08-25 10:04:16', '2025-12-17 19:47:23', '2d20EjoA', '5512005'), - (639, 1619, 'maybe', '2022-08-23 04:25:03', '2025-12-17 19:47:23', '2d20EjoA', '5512862'), - (639, 1623, 'attending', '2022-08-25 10:07:30', '2025-12-17 19:47:23', '2d20EjoA', '5513678'), - (639, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '2d20EjoA', '5513985'), - (639, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '2d20EjoA', '5519981'), - (639, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '2d20EjoA', '5522550'), - (639, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '2d20EjoA', '5534683'), - (639, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '2d20EjoA', '5537735'), - (639, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '2d20EjoA', '5540859'), - (639, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '2d20EjoA', '5546619'), - (639, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '2d20EjoA', '5555245'), - (639, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '2d20EjoA', '5557747'), - (639, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '2d20EjoA', '5560255'), - (639, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '2d20EjoA', '5562906'), - (639, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '2d20EjoA', '5600604'), - (639, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '2d20EjoA', '5605544'), - (639, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '2d20EjoA', '5606737'), - (639, 1719, 'not_attending', '2022-10-07 12:35:12', '2025-12-17 19:47:12', '2d20EjoA', '5630958'), - (639, 1720, 'attending', '2022-10-14 10:58:15', '2025-12-17 19:47:12', '2d20EjoA', '5630959'), - (639, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '2d20EjoA', '5630960'), - (639, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '2d20EjoA', '5630961'), - (639, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '2d20EjoA', '5630962'), - (639, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '2d20EjoA', '5630966'), - (639, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '2d20EjoA', '5630967'), - (639, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '2d20EjoA', '5630968'), - (639, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '2d20EjoA', '5635406'), - (639, 1735, 'not_attending', '2022-10-08 19:07:42', '2025-12-17 19:47:12', '2d20EjoA', '5637484'), - (639, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '2d20EjoA', '5638765'), - (639, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '2d20EjoA', '5640097'), - (639, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '2d20EjoA', '5640843'), - (639, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '2d20EjoA', '5641521'), - (639, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '2d20EjoA', '5642818'), - (639, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '2d20EjoA', '5652395'), - (639, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '2d20EjoA', '5670445'), - (639, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '2d20EjoA', '5671637'), - (639, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '2d20EjoA', '5672329'), - (639, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '2d20EjoA', '5674057'), - (639, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '2d20EjoA', '5674060'), - (639, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '2d20EjoA', '5677461'), - (639, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '2d20EjoA', '5698046'), - (639, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '2d20EjoA', '5699760'), - (639, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '2d20EjoA', '5741601'), - (639, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '2d20EjoA', '5763458'), - (639, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '2d20EjoA', '5774172'), - (639, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '2d20EjoA', '5818247'), - (639, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '2d20EjoA', '5819471'), - (639, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '2d20EjoA', '5827739'), - (639, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '2d20EjoA', '5844306'), - (639, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '2d20EjoA', '5850159'), - (639, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '2d20EjoA', '5858999'), - (639, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '2d20EjoA', '5871984'), - (639, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '2d20EjoA', '5876354'), - (639, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '2d20EjoA', '5880939'), - (639, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '2d20EjoA', '5880940'), - (639, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '2d20EjoA', '5880942'), - (639, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '2d20EjoA', '5880943'), - (639, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '2d20EjoA', '5887890'), - (639, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '2d20EjoA', '5888598'), - (639, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '2d20EjoA', '5893260'), - (639, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '2d20EjoA', '5899826'), - (639, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '2d20EjoA', '5900199'), - (639, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '2d20EjoA', '5900200'), - (639, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '2d20EjoA', '5900202'), - (639, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '2d20EjoA', '5900203'), - (639, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '2d20EjoA', '5901108'), - (639, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '2d20EjoA', '5901126'), - (639, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '2d20EjoA', '5909655'), - (639, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '2d20EjoA', '5910522'), - (639, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '2d20EjoA', '5910526'), - (639, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '2d20EjoA', '5910528'), - (639, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '2d20EjoA', '5916219'), - (639, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '2d20EjoA', '5936234'), - (639, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '2d20EjoA', '5958351'), - (639, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '2d20EjoA', '5959751'), - (639, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '2d20EjoA', '5959755'), - (639, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '2d20EjoA', '5960055'), - (639, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '2d20EjoA', '5961684'), - (639, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '2d20EjoA', '5962132'), - (639, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '2d20EjoA', '5962133'), - (639, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '2d20EjoA', '5962134'), - (639, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '2d20EjoA', '5962317'), - (639, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '2d20EjoA', '5962318'), - (639, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '2d20EjoA', '5965933'), - (639, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '2d20EjoA', '5967014'), - (639, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '2d20EjoA', '5972763'), - (639, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '2d20EjoA', '5972815'), - (639, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '2d20EjoA', '5974016'), - (639, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '2d20EjoA', '5981515'), - (639, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '2d20EjoA', '5993516'), - (639, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '2d20EjoA', '5998939'), - (639, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '2d20EjoA', '6028191'), - (639, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '2d20EjoA', '6040066'), - (639, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '2d20EjoA', '6042717'), - (639, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '2d20EjoA', '6044838'), - (639, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '2d20EjoA', '6044839'), - (639, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d20EjoA', '6045684'), - (639, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '2d20EjoA', '6050104'), - (639, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '2d20EjoA', '6053195'), - (639, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '2d20EjoA', '6053198'), - (639, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '2d20EjoA', '6056085'), - (639, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '2d20EjoA', '6056916'), - (639, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '2d20EjoA', '6059290'), - (639, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '2d20EjoA', '6060328'), - (639, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '2d20EjoA', '6061037'), - (639, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '2d20EjoA', '6061039'), - (639, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '2d20EjoA', '6067245'), - (639, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '2d20EjoA', '6068094'), - (639, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '2d20EjoA', '6068252'), - (639, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '2d20EjoA', '6068253'), - (639, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '2d20EjoA', '6068254'), - (639, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '2d20EjoA', '6068280'), - (639, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '2d20EjoA', '6069093'), - (639, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '2d20EjoA', '6072528'), - (639, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '2d20EjoA', '6079840'), - (639, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '2d20EjoA', '6083398'), - (639, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '2d20EjoA', '6093504'), - (639, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '2d20EjoA', '6097414'), - (639, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '2d20EjoA', '6097442'), - (639, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '2d20EjoA', '6097684'), - (639, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '2d20EjoA', '6098762'), - (639, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '2d20EjoA', '6101362'), - (639, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '2d20EjoA', '6103752'), - (639, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '2d20EjoA', '6107314'), - (640, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'mq1nab1m', '4356801'), - (640, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'mq1nab1m', '4366187'), - (640, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'mq1nab1m', '4420735'), - (640, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'mq1nab1m', '4420738'), - (640, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'mq1nab1m', '4420739'), - (640, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'mq1nab1m', '4420741'), - (640, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'mq1nab1m', '4420744'), - (640, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'mq1nab1m', '4420747'), - (640, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'mq1nab1m', '4420748'), - (640, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'mq1nab1m', '4420749'), - (640, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'mq1nab1m', '4461883'), - (640, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mq1nab1m', '6045684'), - (641, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AXoMKVQm', '7704043'), - (641, 2920, 'not_attending', '2024-11-23 23:13:01', '2025-12-17 19:46:28', 'AXoMKVQm', '7708406'), - (641, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AXoMKVQm', '7712467'), - (641, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'AXoMKVQm', '7713585'), - (641, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AXoMKVQm', '7713586'), - (641, 2947, 'attending', '2024-12-09 03:10:46', '2025-12-17 19:46:21', 'AXoMKVQm', '7727445'), - (641, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'AXoMKVQm', '7738518'), - (641, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AXoMKVQm', '7750636'), - (641, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AXoMKVQm', '7796540'), - (641, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AXoMKVQm', '7796541'), - (641, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AXoMKVQm', '7796542'), - (641, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AXoMKVQm', '7825913'), - (641, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AXoMKVQm', '7826209'), - (641, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AXoMKVQm', '7834742'), - (641, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AXoMKVQm', '7842108'), - (641, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AXoMKVQm', '7842902'), - (641, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AXoMKVQm', '7842903'), - (641, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AXoMKVQm', '7842904'), - (641, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AXoMKVQm', '7842905'), - (641, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AXoMKVQm', '7855719'), - (641, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AXoMKVQm', '7860683'), - (641, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AXoMKVQm', '7860684'), - (641, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AXoMKVQm', '7866095'), - (641, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AXoMKVQm', '7869170'), - (641, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AXoMKVQm', '7869188'), - (641, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AXoMKVQm', '7869201'), - (641, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AXoMKVQm', '7877465'), - (641, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AXoMKVQm', '7878570'), - (641, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AXoMKVQm', '7888250'), - (641, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AXoMKVQm', '8349164'), - (641, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AXoMKVQm', '8349545'), - (641, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AXoMKVQm', '8353584'), - (642, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6jjvn3m', '5441131'), - (642, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6jjvn3m', '5441132'), - (642, 1561, 'not_attending', '2022-08-11 04:53:05', '2025-12-17 19:47:22', 'm6jjvn3m', '5461278'), - (642, 1588, 'attending', '2022-08-13 22:37:37', '2025-12-17 19:47:22', 'm6jjvn3m', '5493139'), - (642, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6jjvn3m', '5502188'), - (642, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6jjvn3m', '5505059'), - (642, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6jjvn3m', '5509055'), - (642, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6jjvn3m', '5512862'), - (642, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6jjvn3m', '5513985'), - (642, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6jjvn3m', '5522550'), - (642, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6jjvn3m', '5534683'), - (642, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6jjvn3m', '5537735'), - (642, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6jjvn3m', '5540859'), - (642, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6jjvn3m', '5546619'), - (642, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6jjvn3m', '5555245'), - (642, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6jjvn3m', '5557747'), - (642, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6jjvn3m', '5560255'), - (642, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6jjvn3m', '5562906'), - (642, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6jjvn3m', '5600604'), - (642, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6jjvn3m', '5605544'), - (642, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'm6jjvn3m', '5606737'), - (642, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6jjvn3m', '5635406'), - (642, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6jjvn3m', '5638765'), - (642, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm6jjvn3m', '5640843'), - (642, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6jjvn3m', '6045684'), - (643, 2276, 'not_attending', '2023-10-12 21:50:13', '2025-12-17 19:46:46', '2d2B7PJd', '6453951'), - (643, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '2d2B7PJd', '6461696'), - (643, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '2d2B7PJd', '6462129'), - (643, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '2d2B7PJd', '6463218'), - (643, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '2d2B7PJd', '6472181'), - (643, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '2d2B7PJd', '6482693'), - (643, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '2d2B7PJd', '6484200'), - (643, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '2d2B7PJd', '6484680'), - (643, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '2d2B7PJd', '6507741'), - (643, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '2d2B7PJd', '6514659'), - (643, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '2d2B7PJd', '6514660'), - (643, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '2d2B7PJd', '6519103'), - (643, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '2d2B7PJd', '6535681'), - (643, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '2d2B7PJd', '6584747'), - (643, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '2d2B7PJd', '6587097'), - (643, 2359, 'attending', '2023-12-01 22:13:07', '2025-12-17 19:46:48', '2d2B7PJd', '6596617'), - (643, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '2d2B7PJd', '6609022'), - (643, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '2d2B7PJd', '6632757'), - (643, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '2d2B7PJd', '6644187'), - (643, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '2d2B7PJd', '6648951'), - (643, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '2d2B7PJd', '6648952'), - (643, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '2d2B7PJd', '6655401'), - (643, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '2d2B7PJd', '6661585'), - (643, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '2d2B7PJd', '6661588'), - (643, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '2d2B7PJd', '6661589'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (643, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '2d2B7PJd', '6699906'), - (643, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '2d2B7PJd', '6699913'), - (643, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '2d2B7PJd', '6701109'), - (643, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '2d2B7PJd', '6704561'), - (643, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '2d2B7PJd', '6705219'), - (643, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '2d2B7PJd', '6708410'), - (643, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '2d2B7PJd', '6710153'), - (643, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '2d2B7PJd', '6711552'), - (643, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '2d2B7PJd', '6711553'), - (643, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '2d2B7PJd', '6722688'), - (643, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '2d2B7PJd', '6730620'), - (643, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '2d2B7PJd', '6730642'), - (643, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '2d2B7PJd', '6740364'), - (643, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '2d2B7PJd', '6743829'), - (643, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '2d2B7PJd', '7030380'), - (643, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '2d2B7PJd', '7033677'), - (643, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '2d2B7PJd', '7035415'), - (643, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '2d2B7PJd', '7044715'), - (643, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '2d2B7PJd', '7050318'), - (643, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '2d2B7PJd', '7050319'), - (643, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '2d2B7PJd', '7050322'), - (643, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '2d2B7PJd', '7057804'), - (643, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '2d2B7PJd', '7072824'), - (643, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '2d2B7PJd', '7074348'), - (643, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '2d2B7PJd', '7089267'), - (643, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '2d2B7PJd', '7098747'), - (643, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '2d2B7PJd', '7113468'), - (643, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '2d2B7PJd', '7114856'), - (643, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '2d2B7PJd', '7114951'), - (643, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '2d2B7PJd', '7114955'), - (643, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '2d2B7PJd', '7114956'), - (643, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '2d2B7PJd', '7153615'), - (643, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '2d2B7PJd', '7159484'), - (644, 1824, 'not_attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'xd98Epq4', '5774172'), - (644, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'xd98Epq4', '5819471'), - (644, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'xd98Epq4', '5827739'), - (644, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xd98Epq4', '5844306'), - (644, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xd98Epq4', '5850159'), - (644, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xd98Epq4', '5858999'), - (644, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xd98Epq4', '5871984'), - (644, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xd98Epq4', '5876354'), - (644, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xd98Epq4', '5880939'), - (644, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xd98Epq4', '5880940'), - (644, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xd98Epq4', '5880942'), - (644, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xd98Epq4', '5880943'), - (644, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xd98Epq4', '5887890'), - (644, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xd98Epq4', '5888598'), - (644, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xd98Epq4', '5893260'), - (644, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xd98Epq4', '5899826'), - (644, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xd98Epq4', '5900199'), - (644, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xd98Epq4', '5900200'), - (644, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xd98Epq4', '5900202'), - (644, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xd98Epq4', '5900203'), - (644, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xd98Epq4', '5901108'), - (644, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xd98Epq4', '5901126'), - (644, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xd98Epq4', '5909655'), - (644, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xd98Epq4', '5910522'), - (644, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xd98Epq4', '5910526'), - (644, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xd98Epq4', '5910528'), - (644, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xd98Epq4', '5916219'), - (644, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xd98Epq4', '5936234'), - (644, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xd98Epq4', '5958351'), - (644, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xd98Epq4', '5959751'), - (644, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xd98Epq4', '5959755'), - (644, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xd98Epq4', '5960055'), - (644, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xd98Epq4', '5961684'), - (644, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'xd98Epq4', '5962132'), - (644, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'xd98Epq4', '5962133'), - (644, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xd98Epq4', '5962134'), - (644, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xd98Epq4', '5962317'), - (644, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xd98Epq4', '5962318'), - (644, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'xd98Epq4', '5965933'), - (644, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xd98Epq4', '5967014'), - (644, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xd98Epq4', '5972815'), - (644, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xd98Epq4', '5974016'), - (644, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xd98Epq4', '5981515'), - (644, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xd98Epq4', '5993516'), - (644, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xd98Epq4', '5998939'), - (644, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xd98Epq4', '6028191'), - (644, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xd98Epq4', '6040066'), - (644, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xd98Epq4', '6042717'), - (644, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xd98Epq4', '6044838'), - (644, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xd98Epq4', '6044839'), - (644, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd98Epq4', '6045684'), - (644, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xd98Epq4', '6050104'), - (644, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xd98Epq4', '6053195'), - (644, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xd98Epq4', '6053198'), - (644, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xd98Epq4', '6056085'), - (644, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xd98Epq4', '6056916'), - (644, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xd98Epq4', '6059290'), - (644, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xd98Epq4', '6060328'), - (644, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xd98Epq4', '6061037'), - (644, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xd98Epq4', '6061039'), - (644, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xd98Epq4', '6067245'), - (644, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xd98Epq4', '6068094'), - (644, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xd98Epq4', '6068252'), - (644, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xd98Epq4', '6068253'), - (644, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xd98Epq4', '6068254'), - (644, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'xd98Epq4', '6068280'), - (644, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xd98Epq4', '6069093'), - (644, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xd98Epq4', '6072528'), - (644, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xd98Epq4', '6079840'), - (644, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xd98Epq4', '6083398'), - (644, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xd98Epq4', '6093504'), - (644, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xd98Epq4', '6097414'), - (644, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xd98Epq4', '6097442'), - (644, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xd98Epq4', '6097684'), - (644, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xd98Epq4', '6098762'), - (644, 2064, 'attending', '2023-06-23 18:02:34', '2025-12-17 19:46:50', 'xd98Epq4', '6099988'), - (644, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xd98Epq4', '6101361'), - (644, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xd98Epq4', '6101362'), - (644, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'xd98Epq4', '6103752'), - (644, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xd98Epq4', '6107314'), - (644, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xd98Epq4', '6120034'), - (644, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'xd98Epq4', '6136733'), - (644, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xd98Epq4', '6137989'), - (644, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xd98Epq4', '6150864'), - (644, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xd98Epq4', '6155491'), - (644, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xd98Epq4', '6164417'), - (644, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xd98Epq4', '6166388'), - (644, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xd98Epq4', '6176439'), - (644, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xd98Epq4', '6182410'), - (644, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xd98Epq4', '6185812'), - (644, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xd98Epq4', '6187651'), - (644, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xd98Epq4', '6187963'), - (644, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xd98Epq4', '6187964'), - (644, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xd98Epq4', '6187966'), - (644, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xd98Epq4', '6187967'), - (644, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xd98Epq4', '6187969'), - (644, 2139, 'attending', '2023-07-07 01:54:27', '2025-12-17 19:46:52', 'xd98Epq4', '6188027'), - (644, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xd98Epq4', '6334878'), - (644, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xd98Epq4', '6337236'), - (644, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xd98Epq4', '6337970'), - (644, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xd98Epq4', '6338308'), - (644, 2159, 'attending', '2023-07-17 19:56:18', '2025-12-17 19:46:53', 'xd98Epq4', '6338355'), - (644, 2160, 'attending', '2023-07-23 13:22:46', '2025-12-17 19:46:54', 'xd98Epq4', '6338358'), - (644, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'xd98Epq4', '6340845'), - (644, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xd98Epq4', '6341710'), - (644, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xd98Epq4', '6342044'), - (644, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xd98Epq4', '6342298'), - (644, 2173, 'attending', '2023-07-18 15:51:51', '2025-12-17 19:46:53', 'xd98Epq4', '6342769'), - (644, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xd98Epq4', '6343294'), - (644, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xd98Epq4', '6347034'), - (644, 2177, 'not_attending', '2023-08-07 19:40:42', '2025-12-17 19:46:55', 'xd98Epq4', '6347053'), - (644, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xd98Epq4', '6347056'), - (644, 2182, 'attending', '2023-07-25 21:25:28', '2025-12-17 19:46:53', 'xd98Epq4', '6349618'), - (644, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xd98Epq4', '6353830'), - (644, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xd98Epq4', '6353831'), - (644, 2187, 'not_attending', '2023-08-01 21:38:04', '2025-12-17 19:46:55', 'xd98Epq4', '6357559'), - (644, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xd98Epq4', '6357867'), - (644, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xd98Epq4', '6358652'), - (644, 2204, 'attending', '2023-08-14 23:01:35', '2025-12-17 19:46:55', 'xd98Epq4', '6361542'), - (644, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'xd98Epq4', '6361709'), - (644, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xd98Epq4', '6361710'), - (644, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xd98Epq4', '6361711'), - (644, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xd98Epq4', '6361712'), - (644, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xd98Epq4', '6361713'), - (644, 2231, 'not_attending', '2023-08-21 12:38:22', '2025-12-17 19:46:55', 'xd98Epq4', '6374748'), - (644, 2232, 'maybe', '2023-08-25 15:19:59', '2025-12-17 19:46:55', 'xd98Epq4', '6374818'), - (644, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'xd98Epq4', '6382573'), - (644, 2239, 'attending', '2023-09-02 20:39:11', '2025-12-17 19:46:56', 'xd98Epq4', '6387592'), - (644, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'xd98Epq4', '6388604'), - (644, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xd98Epq4', '6394629'), - (644, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xd98Epq4', '6394631'), - (644, 2253, 'not_attending', '2023-09-30 13:00:54', '2025-12-17 19:46:45', 'xd98Epq4', '6401811'), - (644, 2265, 'attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', 'xd98Epq4', '6439625'), - (644, 2266, 'maybe', '2023-10-06 14:39:00', '2025-12-17 19:46:45', 'xd98Epq4', '6439635'), - (644, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xd98Epq4', '6440863'), - (644, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xd98Epq4', '6445440'), - (644, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xd98Epq4', '6453951'), - (644, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xd98Epq4', '6461696'), - (644, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xd98Epq4', '6462129'), - (644, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xd98Epq4', '6463218'), - (644, 2299, 'attending', '2023-10-16 13:26:31', '2025-12-17 19:46:46', 'xd98Epq4', '6472181'), - (644, 2301, 'attending', '2023-10-16 13:29:56', '2025-12-17 19:46:46', 'xd98Epq4', '6474276'), - (644, 2303, 'attending', '2023-10-23 18:10:53', '2025-12-17 19:46:47', 'xd98Epq4', '6482691'), - (644, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'xd98Epq4', '6482693'), - (644, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'xd98Epq4', '6484200'), - (644, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xd98Epq4', '6484680'), - (644, 2310, 'not_attending', '2023-10-29 13:04:45', '2025-12-17 19:46:47', 'xd98Epq4', '6487709'), - (644, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xd98Epq4', '6507741'), - (644, 2318, 'maybe', '2023-10-30 14:38:22', '2025-12-17 19:46:47', 'xd98Epq4', '6508566'), - (644, 2322, 'attending', '2023-11-15 16:35:23', '2025-12-17 19:46:48', 'xd98Epq4', '6514659'), - (644, 2323, 'not_attending', '2023-11-27 22:57:38', '2025-12-17 19:46:49', 'xd98Epq4', '6514660'), - (644, 2324, 'attending', '2023-12-09 23:38:24', '2025-12-17 19:46:49', 'xd98Epq4', '6514662'), - (644, 2325, 'attending', '2023-12-15 02:30:08', '2025-12-17 19:46:36', 'xd98Epq4', '6514663'), - (644, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xd98Epq4', '6519103'), - (644, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xd98Epq4', '6535681'), - (644, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xd98Epq4', '6584747'), - (644, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xd98Epq4', '6587097'), - (644, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xd98Epq4', '6609022'), - (644, 2373, 'attending', '2023-12-26 17:21:14', '2025-12-17 19:46:38', 'xd98Epq4', '6632678'), - (644, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'xd98Epq4', '6632757'), - (644, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xd98Epq4', '6644187'), - (644, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xd98Epq4', '6648951'), - (644, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xd98Epq4', '6648952'), - (644, 2388, 'attending', '2024-01-05 00:14:46', '2025-12-17 19:46:37', 'xd98Epq4', '6649244'), - (644, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xd98Epq4', '6655401'), - (644, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xd98Epq4', '6661585'), - (644, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xd98Epq4', '6661588'), - (644, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xd98Epq4', '6661589'), - (644, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xd98Epq4', '6699906'), - (644, 2408, 'not_attending', '2024-01-23 15:13:50', '2025-12-17 19:46:40', 'xd98Epq4', '6699907'), - (644, 2409, 'attending', '2024-01-30 11:10:31', '2025-12-17 19:46:41', 'xd98Epq4', '6699909'), - (644, 2411, 'not_attending', '2024-02-15 23:28:36', '2025-12-17 19:46:42', 'xd98Epq4', '6699913'), - (644, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xd98Epq4', '6701109'), - (644, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xd98Epq4', '6705219'), - (644, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xd98Epq4', '6710153'), - (644, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xd98Epq4', '6711552'), - (644, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xd98Epq4', '6711553'), - (644, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xd98Epq4', '6722688'), - (644, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xd98Epq4', '6730620'), - (644, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xd98Epq4', '6730642'), - (644, 2449, 'not_attending', '2024-02-18 23:59:55', '2025-12-17 19:46:42', 'xd98Epq4', '6735833'), - (644, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xd98Epq4', '6740364'), - (644, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xd98Epq4', '6743829'), - (644, 2467, 'attending', '2024-02-21 02:16:04', '2025-12-17 19:46:43', 'xd98Epq4', '7029987'), - (644, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xd98Epq4', '7030380'), - (644, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xd98Epq4', '7033677'), - (644, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xd98Epq4', '7035415'), - (644, 2477, 'maybe', '2024-02-21 19:51:01', '2025-12-17 19:46:42', 'xd98Epq4', '7035692'), - (644, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xd98Epq4', '7044715'), - (644, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xd98Epq4', '7050318'), - (644, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xd98Epq4', '7050319'), - (644, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xd98Epq4', '7050322'), - (644, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xd98Epq4', '7057804'), - (644, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xd98Epq4', '7072824'), - (644, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xd98Epq4', '7074348'), - (644, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xd98Epq4', '7074364'), - (644, 2539, 'attending', '2024-04-01 20:06:00', '2025-12-17 19:46:33', 'xd98Epq4', '7085486'), - (644, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'xd98Epq4', '7089267'), - (644, 2543, 'attending', '2024-03-18 14:36:34', '2025-12-17 19:46:33', 'xd98Epq4', '7091456'), - (644, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xd98Epq4', '7098747'), - (644, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xd98Epq4', '7113468'), - (644, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xd98Epq4', '7114856'), - (644, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xd98Epq4', '7114951'), - (644, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xd98Epq4', '7114955'), - (644, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xd98Epq4', '7114956'), - (644, 2558, 'maybe', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xd98Epq4', '7114957'), - (644, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xd98Epq4', '7153615'), - (644, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xd98Epq4', '7159484'), - (644, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xd98Epq4', '7178446'), - (644, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'xd98Epq4', '7220467'), - (644, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xd98Epq4', '7240354'), - (644, 2616, 'attending', '2024-05-05 20:44:23', '2025-12-17 19:46:35', 'xd98Epq4', '7250296'), - (644, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xd98Epq4', '7251633'), - (644, 2622, 'attending', '2024-05-09 05:24:11', '2025-12-17 19:46:35', 'xd98Epq4', '7262064'), - (644, 2627, 'attending', '2024-05-24 15:10:27', '2025-12-17 19:46:35', 'xd98Epq4', '7264724'), - (644, 2628, 'attending', '2024-05-29 12:36:10', '2025-12-17 19:46:36', 'xd98Epq4', '7264725'), - (644, 2629, 'attending', '2024-06-05 16:43:57', '2025-12-17 19:46:28', 'xd98Epq4', '7264726'), - (644, 2645, 'attending', '2024-05-19 19:41:28', '2025-12-17 19:46:35', 'xd98Epq4', '7279964'), - (644, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'xd98Epq4', '7302674'), - (644, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xd98Epq4', '7324073'), - (644, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xd98Epq4', '7324074'), - (644, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xd98Epq4', '7324075'), - (644, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'xd98Epq4', '7324078'), - (644, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xd98Epq4', '7324082'), - (644, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xd98Epq4', '7331457'), - (644, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'xd98Epq4', '7356752'), - (644, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xd98Epq4', '7363643'), - (644, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xd98Epq4', '7368606'), - (644, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xd98Epq4', '7397462'), - (644, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xd98Epq4', '7424275'), - (644, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xd98Epq4', '7432751'), - (644, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xd98Epq4', '7432752'), - (644, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xd98Epq4', '7432753'), - (644, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xd98Epq4', '7432754'), - (644, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xd98Epq4', '7432755'), - (644, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xd98Epq4', '7432756'), - (644, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xd98Epq4', '7432758'), - (644, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xd98Epq4', '7432759'), - (644, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xd98Epq4', '7433834'), - (644, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'xd98Epq4', '7470197'), - (644, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xd98Epq4', '7685613'), - (644, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xd98Epq4', '7688194'), - (644, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xd98Epq4', '7688196'), - (644, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xd98Epq4', '7688289'), - (644, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xd98Epq4', '7692763'), - (644, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xd98Epq4', '7697552'), - (644, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xd98Epq4', '7699878'), - (644, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'xd98Epq4', '7704043'), - (644, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'xd98Epq4', '7712467'), - (644, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'xd98Epq4', '7713585'), - (644, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'xd98Epq4', '7713586'), - (644, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xd98Epq4', '7738518'), - (644, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xd98Epq4', '7750636'), - (644, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xd98Epq4', '7796540'), - (644, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xd98Epq4', '7796541'), - (644, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xd98Epq4', '7796542'), - (644, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xd98Epq4', '7825913'), - (644, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xd98Epq4', '7826209'), - (644, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xd98Epq4', '7834742'), - (644, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'xd98Epq4', '7842108'), - (644, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xd98Epq4', '7842902'), - (644, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xd98Epq4', '7842903'), - (644, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xd98Epq4', '7842904'), - (644, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xd98Epq4', '7842905'), - (644, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xd98Epq4', '7855719'), - (644, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xd98Epq4', '7860683'), - (644, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xd98Epq4', '7860684'), - (644, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xd98Epq4', '7866095'), - (644, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xd98Epq4', '7869170'), - (644, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xd98Epq4', '7869188'), - (644, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xd98Epq4', '7869201'), - (644, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xd98Epq4', '7877465'), - (644, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xd98Epq4', '7888250'), - (644, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xd98Epq4', '7904777'), - (644, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xd98Epq4', '8349164'), - (644, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xd98Epq4', '8349545'), - (644, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xd98Epq4', '8368028'), - (644, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'xd98Epq4', '8368029'), - (644, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xd98Epq4', '8388462'), - (644, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xd98Epq4', '8400273'), - (644, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'xd98Epq4', '8400275'), - (644, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'xd98Epq4', '8400276'), - (644, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xd98Epq4', '8404977'), - (644, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xd98Epq4', '8430783'), - (644, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xd98Epq4', '8430784'), - (644, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xd98Epq4', '8430799'), - (644, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xd98Epq4', '8430800'), - (644, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xd98Epq4', '8430801'), - (644, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'xd98Epq4', '8438709'), - (644, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xd98Epq4', '8457738'), - (644, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xd98Epq4', '8459566'), - (644, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xd98Epq4', '8459567'), - (644, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xd98Epq4', '8461032'), - (644, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xd98Epq4', '8477877'), - (644, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xd98Epq4', '8485688'), - (644, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xd98Epq4', '8490587'), - (644, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xd98Epq4', '8493552'), - (644, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xd98Epq4', '8493553'), - (644, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xd98Epq4', '8493554'), - (644, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xd98Epq4', '8493555'), - (644, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xd98Epq4', '8493556'), - (644, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xd98Epq4', '8493557'), - (644, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xd98Epq4', '8493558'), - (644, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xd98Epq4', '8493559'), - (644, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xd98Epq4', '8493560'), - (644, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'xd98Epq4', '8493561'), - (644, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xd98Epq4', '8493572'), - (644, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xd98Epq4', '8540725'), - (644, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xd98Epq4', '8555421'), - (645, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mpOqPe9d', '5441131'), - (645, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mpOqPe9d', '5441132'), - (645, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mpOqPe9d', '5505059'), - (645, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mpOqPe9d', '5509055'), - (645, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mpOqPe9d', '5512862'), - (645, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mpOqPe9d', '5513985'), - (645, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mpOqPe9d', '5522550'), - (645, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mpOqPe9d', '5534683'), - (645, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mpOqPe9d', '5537735'), - (645, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mpOqPe9d', '5540859'), - (645, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mpOqPe9d', '5546619'), - (645, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mpOqPe9d', '5555245'), - (645, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mpOqPe9d', '5557747'), - (645, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpOqPe9d', '5560255'), - (645, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mpOqPe9d', '5562906'), - (645, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mpOqPe9d', '5600604'), - (645, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpOqPe9d', '5605544'), - (645, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'mpOqPe9d', '5606737'), - (645, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpOqPe9d', '5635406'), - (645, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpOqPe9d', '5638765'), - (645, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mpOqPe9d', '5640843'), - (645, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpOqPe9d', '6045684'), - (646, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOx5BLLm', '6044839'), - (646, 1989, 'not_attending', '2023-05-10 19:47:39', '2025-12-17 19:47:03', 'dOx5BLLm', '6044842'), - (646, 1994, 'not_attending', '2023-04-08 19:25:16', '2025-12-17 19:46:59', 'dOx5BLLm', '6050104'), - (646, 1998, 'attending', '2023-04-10 22:21:12', '2025-12-17 19:46:59', 'dOx5BLLm', '6052056'), - (646, 2002, 'maybe', '2023-04-23 15:43:59', '2025-12-17 19:47:01', 'dOx5BLLm', '6052605'), - (646, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOx5BLLm', '6053198'), - (646, 2007, 'attending', '2023-04-08 01:44:48', '2025-12-17 19:46:58', 'dOx5BLLm', '6055291'), - (646, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOx5BLLm', '6056916'), - (646, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOx5BLLm', '6059290'), - (646, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOx5BLLm', '6060328'), - (646, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOx5BLLm', '6061037'), - (646, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOx5BLLm', '6061039'), - (646, 2021, 'maybe', '2023-04-17 14:39:53', '2025-12-17 19:47:00', 'dOx5BLLm', '6066316'), - (646, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOx5BLLm', '6067245'), - (646, 2026, 'attending', '2023-04-26 00:47:58', '2025-12-17 19:47:01', 'dOx5BLLm', '6068078'), - (646, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOx5BLLm', '6068094'), - (646, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOx5BLLm', '6068252'), - (646, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOx5BLLm', '6068253'), - (646, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOx5BLLm', '6068254'), - (646, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dOx5BLLm', '6068280'), - (646, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOx5BLLm', '6069093'), - (646, 2036, 'attending', '2023-04-30 16:24:02', '2025-12-17 19:47:01', 'dOx5BLLm', '6070780'), - (646, 2037, 'attending', '2023-04-23 15:43:32', '2025-12-17 19:47:00', 'dOx5BLLm', '6071943'), - (646, 2038, 'attending', '2023-04-23 15:43:46', '2025-12-17 19:47:01', 'dOx5BLLm', '6071944'), - (646, 2041, 'attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOx5BLLm', '6072528'), - (646, 2046, 'not_attending', '2023-05-10 19:47:29', '2025-12-17 19:47:02', 'dOx5BLLm', '6076020'), - (646, 2047, 'attending', '2023-04-30 16:24:42', '2025-12-17 19:47:02', 'dOx5BLLm', '6076027'), - (646, 2049, 'maybe', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOx5BLLm', '6079840'), - (646, 2050, 'attending', '2023-04-30 16:25:47', '2025-12-17 19:47:02', 'dOx5BLLm', '6080489'), - (646, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOx5BLLm', '6083398'), - (646, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOx5BLLm', '6093504'), - (646, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOx5BLLm', '6097414'), - (646, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOx5BLLm', '6097442'), - (646, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOx5BLLm', '6097684'), - (646, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOx5BLLm', '6098762'), - (646, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOx5BLLm', '6101361'), - (646, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOx5BLLm', '6101362'), - (646, 2068, 'not_attending', '2023-05-15 15:24:52', '2025-12-17 19:47:03', 'dOx5BLLm', '6102837'), - (646, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dOx5BLLm', '6103752'), - (646, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOx5BLLm', '6107314'), - (646, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOx5BLLm', '6120034'), - (646, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dOx5BLLm', '6136733'), - (646, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOx5BLLm', '6137989'), - (646, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOx5BLLm', '6150864'), - (646, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOx5BLLm', '6155491'), - (646, 2116, 'not_attending', '2023-07-07 01:51:56', '2025-12-17 19:46:51', 'dOx5BLLm', '6163389'), - (646, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOx5BLLm', '6164417'), - (646, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOx5BLLm', '6166388'), - (646, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOx5BLLm', '6176439'), - (646, 2122, 'attending', '2023-07-02 17:47:07', '2025-12-17 19:46:51', 'dOx5BLLm', '6176476'), - (646, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOx5BLLm', '6182410'), - (646, 2129, 'not_attending', '2023-07-03 15:26:16', '2025-12-17 19:46:51', 'dOx5BLLm', '6182825'), - (646, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOx5BLLm', '6185812'), - (646, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOx5BLLm', '6187651'), - (646, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOx5BLLm', '6187963'), - (646, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOx5BLLm', '6187964'), - (646, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOx5BLLm', '6187966'), - (646, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOx5BLLm', '6187967'), - (646, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOx5BLLm', '6187969'), - (646, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOx5BLLm', '6334878'), - (646, 2146, 'attending', '2023-07-21 17:22:16', '2025-12-17 19:46:53', 'dOx5BLLm', '6335638'), - (646, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOx5BLLm', '6337236'), - (646, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOx5BLLm', '6337970'), - (646, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOx5BLLm', '6338308'), - (646, 2159, 'attending', '2023-07-22 02:32:17', '2025-12-17 19:46:53', 'dOx5BLLm', '6338355'), - (646, 2160, 'attending', '2023-07-29 18:14:51', '2025-12-17 19:46:54', 'dOx5BLLm', '6338358'), - (646, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dOx5BLLm', '6340845'), - (646, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOx5BLLm', '6341710'), - (646, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOx5BLLm', '6342044'), - (646, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOx5BLLm', '6342298'), - (646, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dOx5BLLm', '6343294'), - (646, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOx5BLLm', '6347034'), - (646, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOx5BLLm', '6347056'), - (646, 2180, 'maybe', '2023-07-26 01:39:08', '2025-12-17 19:46:54', 'dOx5BLLm', '6348788'), - (646, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOx5BLLm', '6353830'), - (646, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOx5BLLm', '6353831'), - (646, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOx5BLLm', '6357867'), - (646, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOx5BLLm', '6358652'), - (646, 2199, 'attending', '2023-08-15 16:21:12', '2025-12-17 19:46:55', 'dOx5BLLm', '6359849'), - (646, 2200, 'attending', '2023-08-10 23:04:59', '2025-12-17 19:46:55', 'dOx5BLLm', '6359850'), - (646, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOx5BLLm', '6361709'), - (646, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dOx5BLLm', '6361710'), - (646, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOx5BLLm', '6361711'), - (646, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOx5BLLm', '6361712'), - (646, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOx5BLLm', '6361713'), - (646, 2232, 'not_attending', '2023-08-25 19:29:35', '2025-12-17 19:46:55', 'dOx5BLLm', '6374818'), - (646, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOx5BLLm', '6382573'), - (646, 2239, 'not_attending', '2023-09-01 02:16:48', '2025-12-17 19:46:56', 'dOx5BLLm', '6387592'), - (646, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOx5BLLm', '6388604'), - (646, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOx5BLLm', '6394629'), - (646, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOx5BLLm', '6394631'), - (646, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOx5BLLm', '6440863'), - (646, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOx5BLLm', '6445440'), - (646, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOx5BLLm', '6453951'), - (646, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOx5BLLm', '6461696'), - (646, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOx5BLLm', '6462129'), - (646, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOx5BLLm', '6463218'), - (646, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dOx5BLLm', '6472181'), - (646, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOx5BLLm', '6482693'), - (646, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dOx5BLLm', '6484200'), - (646, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOx5BLLm', '6484680'), - (646, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOx5BLLm', '6507741'), - (646, 2322, 'attending', '2023-11-17 21:51:09', '2025-12-17 19:46:48', 'dOx5BLLm', '6514659'), - (646, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOx5BLLm', '6514660'), - (646, 2325, 'attending', '2023-12-15 04:07:00', '2025-12-17 19:46:36', 'dOx5BLLm', '6514663'), - (646, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOx5BLLm', '6519103'), - (646, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOx5BLLm', '6535681'), - (646, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOx5BLLm', '6584747'), - (646, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOx5BLLm', '6587097'), - (646, 2357, 'not_attending', '2023-12-17 04:14:48', '2025-12-17 19:46:36', 'dOx5BLLm', '6593341'), - (646, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOx5BLLm', '6609022'), - (646, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOx5BLLm', '6632757'), - (646, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOx5BLLm', '6644187'), - (646, 2382, 'attending', '2024-01-02 23:28:49', '2025-12-17 19:46:37', 'dOx5BLLm', '6646401'), - (646, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOx5BLLm', '6648951'), - (646, 2387, 'attending', '2024-01-04 20:05:18', '2025-12-17 19:46:37', 'dOx5BLLm', '6648952'), - (646, 2394, 'not_attending', '2024-01-05 00:05:07', '2025-12-17 19:46:38', 'dOx5BLLm', '6654470'), - (646, 2395, 'attending', '2024-01-05 00:05:02', '2025-12-17 19:46:38', 'dOx5BLLm', '6654471'), - (646, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOx5BLLm', '6655401'), - (646, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOx5BLLm', '6661585'), - (646, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOx5BLLm', '6661588'), - (646, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOx5BLLm', '6661589'), - (646, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOx5BLLm', '6699906'), - (646, 2408, 'not_attending', '2024-01-17 01:29:32', '2025-12-17 19:46:40', 'dOx5BLLm', '6699907'), - (646, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOx5BLLm', '6699913'), - (646, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOx5BLLm', '6701109'), - (646, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOx5BLLm', '6705219'), - (646, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOx5BLLm', '6710153'), - (646, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOx5BLLm', '6711552'), - (646, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOx5BLLm', '6711553'), - (646, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOx5BLLm', '6722688'), - (646, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOx5BLLm', '6730620'), - (646, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOx5BLLm', '6730642'), - (646, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOx5BLLm', '6740364'), - (646, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOx5BLLm', '6743829'), - (646, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOx5BLLm', '7030380'), - (646, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOx5BLLm', '7033677'), - (646, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOx5BLLm', '7035415'), - (646, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOx5BLLm', '7044715'), - (646, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOx5BLLm', '7050318'), - (646, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOx5BLLm', '7050319'), - (646, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOx5BLLm', '7050322'), - (646, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOx5BLLm', '7057804'), - (646, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dOx5BLLm', '7059866'), - (646, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOx5BLLm', '7072824'), - (646, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOx5BLLm', '7074348'), - (646, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dOx5BLLm', '7074364'), - (646, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOx5BLLm', '7089267'), - (646, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOx5BLLm', '7098747'), - (646, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOx5BLLm', '7113468'), - (646, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOx5BLLm', '7114856'), - (646, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOx5BLLm', '7114951'), - (646, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOx5BLLm', '7114955'), - (646, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOx5BLLm', '7114956'), - (646, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dOx5BLLm', '7114957'), - (646, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOx5BLLm', '7153615'), - (646, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOx5BLLm', '7159484'), - (646, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOx5BLLm', '7178446'), - (646, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOx5BLLm', '7220467'), - (646, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dOx5BLLm', '7240354'), - (646, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOx5BLLm', '7251633'), - (646, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dOx5BLLm', '7263048'), - (646, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOx5BLLm', '7302674'), - (646, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dOx5BLLm', '7324073'), - (646, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dOx5BLLm', '7324074'), - (646, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dOx5BLLm', '7324075'), - (646, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dOx5BLLm', '7324078'), - (646, 2695, 'attending', '2024-08-16 03:13:11', '2025-12-17 19:46:31', 'dOx5BLLm', '7324080'), - (646, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dOx5BLLm', '7324082'), - (646, 2701, 'maybe', '2024-06-26 00:05:02', '2025-12-17 19:46:29', 'dOx5BLLm', '7324391'), - (646, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dOx5BLLm', '7331457'), - (646, 2724, 'attending', '2024-06-26 17:28:54', '2025-12-17 19:46:29', 'dOx5BLLm', '7332562'), - (646, 2731, 'attending', '2024-06-25 14:39:58', '2025-12-17 19:46:29', 'dOx5BLLm', '7335303'), - (646, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dOx5BLLm', '7356752'), - (646, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dOx5BLLm', '7363643'), - (646, 2767, 'attending', '2024-07-21 23:48:18', '2025-12-17 19:46:30', 'dOx5BLLm', '7364726'), - (646, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dOx5BLLm', '7368606'), - (646, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dOx5BLLm', '7397462'), - (646, 2806, 'maybe', '2024-09-16 02:13:07', '2025-12-17 19:46:25', 'dOx5BLLm', '7404888'), - (646, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dOx5BLLm', '7424275'), - (646, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dOx5BLLm', '7432751'), - (646, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dOx5BLLm', '7432752'), - (646, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dOx5BLLm', '7432753'), - (646, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dOx5BLLm', '7432754'), - (646, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dOx5BLLm', '7432755'), - (646, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dOx5BLLm', '7432756'), - (646, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOx5BLLm', '7432758'), - (646, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dOx5BLLm', '7432759'), - (646, 2832, 'maybe', '2024-09-11 02:52:40', '2025-12-17 19:46:24', 'dOx5BLLm', '7433324'), - (646, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dOx5BLLm', '7433834'), - (646, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dOx5BLLm', '7470197'), - (647, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dl2p7PVA', '6045684'), - (648, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'myDGDeWd', '4736499'), - (648, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'myDGDeWd', '4736503'), - (648, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'myDGDeWd', '4736504'), - (648, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'myDGDeWd', '5038850'), - (648, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'myDGDeWd', '5045826'), - (648, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'myDGDeWd', '5132533'), - (648, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'myDGDeWd', '6045684'), - (665, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mR02wvQ4', '5880942'), - (665, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mR02wvQ4', '5880943'), - (665, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mR02wvQ4', '5900200'), - (665, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mR02wvQ4', '5900202'), - (665, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mR02wvQ4', '5900203'), - (665, 1916, 'attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'mR02wvQ4', '5910526'), - (665, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'mR02wvQ4', '5910528'), - (665, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mR02wvQ4', '5916219'), - (665, 1930, 'attending', '2023-02-26 23:30:51', '2025-12-17 19:47:08', 'mR02wvQ4', '5933462'), - (665, 1931, 'attending', '2023-02-26 23:29:42', '2025-12-17 19:47:08', 'mR02wvQ4', '5933464'), - (665, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mR02wvQ4', '5936234'), - (665, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'mR02wvQ4', '5936691'), - (665, 1935, 'attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mR02wvQ4', '5958351'), - (665, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mR02wvQ4', '5959751'), - (665, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mR02wvQ4', '5959755'), - (665, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mR02wvQ4', '5960055'), - (665, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mR02wvQ4', '5961684'), - (665, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mR02wvQ4', '5962132'), - (665, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mR02wvQ4', '5962133'), - (665, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mR02wvQ4', '5962134'), - (665, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mR02wvQ4', '5962317'), - (665, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mR02wvQ4', '5962318'), - (665, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mR02wvQ4', '5965933'), - (665, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mR02wvQ4', '5967014'), - (665, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mR02wvQ4', '5972815'), - (665, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mR02wvQ4', '5974016'), - (665, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mR02wvQ4', '5981515'), - (665, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mR02wvQ4', '5993516'), - (665, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mR02wvQ4', '5998939'), - (665, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mR02wvQ4', '6028191'), - (665, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mR02wvQ4', '6040066'), - (665, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mR02wvQ4', '6042717'), - (665, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mR02wvQ4', '6044838'), - (665, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mR02wvQ4', '6044839'), - (665, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR02wvQ4', '6045684'), - (665, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mR02wvQ4', '6050104'), - (665, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mR02wvQ4', '6053195'), - (665, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mR02wvQ4', '6053198'), - (665, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mR02wvQ4', '6056085'), - (665, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mR02wvQ4', '6056916'), - (665, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mR02wvQ4', '6059290'), - (665, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mR02wvQ4', '6060328'), - (665, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mR02wvQ4', '6061037'), - (665, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mR02wvQ4', '6061039'), - (665, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mR02wvQ4', '6067245'), - (665, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mR02wvQ4', '6068094'), - (665, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mR02wvQ4', '6068252'), - (665, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mR02wvQ4', '6068253'), - (665, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mR02wvQ4', '6068254'), - (665, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mR02wvQ4', '6068280'), - (665, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mR02wvQ4', '6069093'), - (665, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mR02wvQ4', '6072528'), - (665, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mR02wvQ4', '6079840'), - (665, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mR02wvQ4', '6083398'), - (665, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mR02wvQ4', '6093504'), - (665, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mR02wvQ4', '6097414'), - (665, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mR02wvQ4', '6097442'), - (665, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mR02wvQ4', '6097684'), - (665, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mR02wvQ4', '6098762'), - (665, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mR02wvQ4', '6101362'), - (665, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mR02wvQ4', '6103752'), - (665, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mR02wvQ4', '6107314'), - (666, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dBb0rbbd', '7074364'), - (666, 2556, 'attending', '2024-04-20 17:47:12', '2025-12-17 19:46:34', 'dBb0rbbd', '7114955'), - (666, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dBb0rbbd', '7114956'), - (666, 2558, 'attending', '2024-04-30 02:32:44', '2025-12-17 19:46:35', 'dBb0rbbd', '7114957'), - (666, 2585, 'attending', '2024-04-23 14:21:26', '2025-12-17 19:46:34', 'dBb0rbbd', '7175828'), - (666, 2599, 'attending', '2024-04-22 13:04:25', '2025-12-17 19:46:34', 'dBb0rbbd', '7189372'), - (666, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dBb0rbbd', '7220467'), - (666, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBb0rbbd', '7240354'), - (666, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBb0rbbd', '7251633'), - (666, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBb0rbbd', '7263048'), - (666, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dBb0rbbd', '7302674'), - (666, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dBb0rbbd', '7324073'), - (666, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dBb0rbbd', '7324074'), - (666, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dBb0rbbd', '7324075'), - (666, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dBb0rbbd', '7324078'), - (666, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dBb0rbbd', '7324082'), - (666, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dBb0rbbd', '7331457'), - (666, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dBb0rbbd', '7356752'), - (666, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dBb0rbbd', '7363643'), - (666, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dBb0rbbd', '7368606'), - (666, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dBb0rbbd', '7397462'), - (666, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dBb0rbbd', '7424275'), - (666, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dBb0rbbd', '7424276'), - (666, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dBb0rbbd', '7432751'), - (666, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dBb0rbbd', '7432752'), - (666, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dBb0rbbd', '7432753'), - (666, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dBb0rbbd', '7432754'), - (666, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dBb0rbbd', '7432755'), - (666, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dBb0rbbd', '7432756'), - (666, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dBb0rbbd', '7432758'), - (666, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dBb0rbbd', '7432759'), - (666, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dBb0rbbd', '7433834'), - (666, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dBb0rbbd', '7470197'), - (666, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dBb0rbbd', '7685613'), - (666, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dBb0rbbd', '7688194'), - (666, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dBb0rbbd', '7688196'), - (666, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dBb0rbbd', '7688289'), - (666, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dBb0rbbd', '7692763'), - (666, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dBb0rbbd', '7697552'), - (666, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dBb0rbbd', '7699878'), - (666, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dBb0rbbd', '7704043'), - (666, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dBb0rbbd', '7712467'), - (666, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dBb0rbbd', '7713585'), - (666, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dBb0rbbd', '7713586'), - (666, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dBb0rbbd', '7738518'), - (666, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBb0rbbd', '7750636'), - (666, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBb0rbbd', '7796540'), - (666, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBb0rbbd', '7796541'), - (666, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBb0rbbd', '7796542'), - (667, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mLoVwz8d', '7074364'), - (667, 2525, 'attending', '2024-06-13 18:43:30', '2025-12-17 19:46:28', 'mLoVwz8d', '7074365'), - (667, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mLoVwz8d', '7324073'), - (667, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mLoVwz8d', '7324074'), - (667, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mLoVwz8d', '7324075'), - (667, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mLoVwz8d', '7324078'), - (667, 2702, 'attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mLoVwz8d', '7324867'), - (667, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mLoVwz8d', '7331457'), - (667, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'mLoVwz8d', '7332564'), - (667, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'mLoVwz8d', '7335193'), - (667, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mLoVwz8d', '7359624'), - (667, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mLoVwz8d', '7363643'), - (667, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mLoVwz8d', '7368606'), - (668, 2196, 'attending', '2023-08-31 02:45:51', '2025-12-17 19:46:56', 'dVD1xlrA', '6359398'), - (668, 2197, 'not_attending', '2023-08-31 02:47:19', '2025-12-17 19:46:44', 'dVD1xlrA', '6359399'), - (668, 2198, 'maybe', '2023-08-31 02:47:37', '2025-12-17 19:46:45', 'dVD1xlrA', '6359400'), - (668, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVD1xlrA', '6361711'), - (668, 2212, 'maybe', '2023-09-11 18:13:23', '2025-12-17 19:46:45', 'dVD1xlrA', '6361713'), - (668, 2235, 'maybe', '2023-08-31 02:45:05', '2025-12-17 19:46:56', 'dVD1xlrA', '6382573'), - (668, 2239, 'attending', '2023-09-01 04:38:39', '2025-12-17 19:46:56', 'dVD1xlrA', '6387592'), - (668, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVD1xlrA', '6388604'), - (668, 2242, 'maybe', '2023-09-11 18:12:43', '2025-12-17 19:46:45', 'dVD1xlrA', '6388606'), - (668, 2244, 'maybe', '2023-09-11 18:09:03', '2025-12-17 19:46:44', 'dVD1xlrA', '6393700'), - (668, 2248, 'maybe', '2023-09-11 18:09:24', '2025-12-17 19:46:44', 'dVD1xlrA', '6394629'), - (668, 2249, 'maybe', '2023-09-11 18:11:58', '2025-12-17 19:46:45', 'dVD1xlrA', '6394630'), - (668, 2250, 'maybe', '2023-09-11 18:13:15', '2025-12-17 19:46:45', 'dVD1xlrA', '6394631'), - (668, 2252, 'attending', '2023-09-11 18:12:56', '2025-12-17 19:46:45', 'dVD1xlrA', '6396837'), - (668, 2253, 'maybe', '2023-09-11 18:13:38', '2025-12-17 19:46:45', 'dVD1xlrA', '6401811'), - (668, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVD1xlrA', '6440863'), - (668, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVD1xlrA', '6445440'), - (668, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVD1xlrA', '6453951'), - (668, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVD1xlrA', '6461696'), - (668, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVD1xlrA', '6462129'), - (668, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVD1xlrA', '6463218'), - (668, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVD1xlrA', '6472181'), - (668, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVD1xlrA', '6482693'), - (668, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVD1xlrA', '6484200'), - (668, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVD1xlrA', '6484680'), - (668, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVD1xlrA', '6507741'), - (668, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVD1xlrA', '6514659'), - (668, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVD1xlrA', '6514660'), - (668, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVD1xlrA', '6519103'), - (668, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVD1xlrA', '6535681'), - (668, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVD1xlrA', '6584747'), - (668, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVD1xlrA', '6587097'), - (668, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVD1xlrA', '6609022'), - (668, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVD1xlrA', '6632757'), - (668, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVD1xlrA', '6644187'), - (668, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVD1xlrA', '6648951'), - (668, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVD1xlrA', '6648952'), - (668, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVD1xlrA', '6655401'), - (668, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVD1xlrA', '6661585'), - (668, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVD1xlrA', '6661588'), - (668, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVD1xlrA', '6661589'), - (668, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVD1xlrA', '6699906'), - (668, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVD1xlrA', '6701109'), - (668, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVD1xlrA', '6705219'), - (668, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVD1xlrA', '6710153'), - (668, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVD1xlrA', '6711552'), - (668, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVD1xlrA', '6711553'), - (669, 397, 'attending', '2021-05-23 00:31:40', '2025-12-17 19:47:47', 'oAQqO2gA', '3236452'), - (669, 648, 'maybe', '2021-05-29 21:11:01', '2025-12-17 19:47:47', 'oAQqO2gA', '3539923'), - (669, 743, 'maybe', '2021-06-23 03:01:02', '2025-12-17 19:47:38', 'oAQqO2gA', '3680623'), - (669, 744, 'maybe', '2021-06-10 15:02:02', '2025-12-17 19:47:47', 'oAQqO2gA', '3680624'), - (669, 746, 'maybe', '2021-07-08 14:05:41', '2025-12-17 19:47:39', 'oAQqO2gA', '3680626'), - (669, 815, 'not_attending', '2021-05-28 22:08:49', '2025-12-17 19:47:47', 'oAQqO2gA', '3818136'), - (669, 820, 'attending', '2021-05-28 16:54:15', '2025-12-17 19:47:47', 'oAQqO2gA', '3963335'), - (669, 821, 'not_attending', '2021-05-31 20:46:34', '2025-12-17 19:47:47', 'oAQqO2gA', '3963965'), - (669, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'oAQqO2gA', '3974109'), - (669, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAQqO2gA', '3975311'), - (669, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'oAQqO2gA', '3975312'), - (669, 830, 'attending', '2021-06-03 22:06:14', '2025-12-17 19:47:47', 'oAQqO2gA', '3976648'), - (669, 834, 'maybe', '2021-06-10 17:01:28', '2025-12-17 19:47:47', 'oAQqO2gA', '3990439'), - (669, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQqO2gA', '3994992'), - (669, 844, 'maybe', '2021-06-10 15:02:54', '2025-12-17 19:47:38', 'oAQqO2gA', '4014338'), - (669, 866, 'maybe', '2021-06-21 16:16:43', '2025-12-17 19:47:38', 'oAQqO2gA', '4020424'), - (669, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'oAQqO2gA', '4021848'), - (669, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAQqO2gA', '4136744'), - (669, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAQqO2gA', '4136937'), - (669, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAQqO2gA', '4136938'), - (669, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAQqO2gA', '4136947'), - (669, 879, 'maybe', '2021-06-23 09:27:41', '2025-12-17 19:47:38', 'oAQqO2gA', '4147806'), - (669, 882, 'maybe', '2021-06-24 08:53:36', '2025-12-17 19:47:38', 'oAQqO2gA', '4207630'), - (669, 883, 'maybe', '2021-06-22 20:59:36', '2025-12-17 19:47:38', 'oAQqO2gA', '4209121'), - (669, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAQqO2gA', '4210314'), - (669, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAQqO2gA', '4225444'), - (669, 889, 'maybe', '2021-06-28 11:42:01', '2025-12-17 19:47:38', 'oAQqO2gA', '4227492'), - (669, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAQqO2gA', '4239259'), - (669, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAQqO2gA', '4240316'), - (669, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAQqO2gA', '4240317'), - (669, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAQqO2gA', '4240318'), - (669, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'oAQqO2gA', '4240320'), - (669, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQqO2gA', '4250163'), - (669, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAQqO2gA', '4275957'), - (669, 920, 'maybe', '2021-07-25 11:59:49', '2025-12-17 19:47:40', 'oAQqO2gA', '4277819'), - (669, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAQqO2gA', '4301723'), - (669, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAQqO2gA', '4302093'), - (669, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAQqO2gA', '4304151'), - (669, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAQqO2gA', '4356801'), - (669, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAQqO2gA', '4366186'), - (669, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAQqO2gA', '4366187'), - (669, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'oAQqO2gA', '4420735'), - (669, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'oAQqO2gA', '4420738'), - (669, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAQqO2gA', '4420739'), - (669, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAQqO2gA', '4420741'), - (669, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAQqO2gA', '4420744'), - (669, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAQqO2gA', '4420747'), - (669, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAQqO2gA', '4420748'), - (669, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAQqO2gA', '4420749'), - (669, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAQqO2gA', '4461883'), - (669, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAQqO2gA', '4508342'), - (669, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQqO2gA', '6045684'), - (670, 423, 'attending', '2020-11-05 21:58:04', '2025-12-17 19:47:53', 'Vmy6a8yA', '3245296'), - (670, 440, 'attending', '2020-11-07 21:54:07', '2025-12-17 19:47:53', 'Vmy6a8yA', '3256168'), - (670, 441, 'attending', '2020-11-14 16:21:01', '2025-12-17 19:47:54', 'Vmy6a8yA', '3256169'), - (670, 445, 'not_attending', '2020-11-12 19:50:26', '2025-12-17 19:47:54', 'Vmy6a8yA', '3266138'), - (670, 456, 'maybe', '2020-11-16 17:01:41', '2025-12-17 19:47:54', 'Vmy6a8yA', '3276428'), - (670, 459, 'attending', '2020-11-16 00:21:30', '2025-12-17 19:47:54', 'Vmy6a8yA', '3281467'), - (670, 468, 'attending', '2020-11-19 13:32:01', '2025-12-17 19:47:54', 'Vmy6a8yA', '3285413'), - (670, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Vmy6a8yA', '3285414'), - (670, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Vmy6a8yA', '3297764'), - (670, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Vmy6a8yA', '3313856'), - (670, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Vmy6a8yA', '3314909'), - (670, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Vmy6a8yA', '3314964'), - (670, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'Vmy6a8yA', '3323365'), - (670, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Vmy6a8yA', '3329383'), - (670, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Vmy6a8yA', '3351539'), - (670, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Vmy6a8yA', '3386848'), - (670, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Vmy6a8yA', '3389527'), - (670, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Vmy6a8yA', '3396499'), - (670, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Vmy6a8yA', '3403650'), - (670, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Vmy6a8yA', '3406988'), - (670, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Vmy6a8yA', '3416576'), - (670, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'Vmy6a8yA', '3418925'), - (670, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Vmy6a8yA', '3426074'), - (670, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'Vmy6a8yA', '3430267'), - (670, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'Vmy6a8yA', '3470305'), - (670, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Vmy6a8yA', '3470991'), - (670, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'Vmy6a8yA', '3517815'), - (670, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'Vmy6a8yA', '3517816'), - (670, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'Vmy6a8yA', '3523941'), - (670, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Vmy6a8yA', '3533850'), - (670, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Vmy6a8yA', '3536632'), - (670, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Vmy6a8yA', '3536656'), - (670, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Vmy6a8yA', '3539916'), - (670, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Vmy6a8yA', '3539917'), - (670, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Vmy6a8yA', '3539918'), - (670, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539919'), - (670, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539920'), - (670, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539921'), - (670, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539922'), - (670, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Vmy6a8yA', '3539923'), - (670, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Vmy6a8yA', '3539927'), - (670, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Vmy6a8yA', '3582734'), - (670, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Vmy6a8yA', '3583262'), - (670, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Vmy6a8yA', '3619523'), - (670, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Vmy6a8yA', '3661369'), - (670, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Vmy6a8yA', '3674262'), - (670, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Vmy6a8yA', '3677402'), - (670, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Vmy6a8yA', '3730212'), - (670, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Vmy6a8yA', '3793156'), - (670, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Vmy6a8yA', '3974109'), - (670, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Vmy6a8yA', '3975311'), - (670, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Vmy6a8yA', '3975312'), - (670, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Vmy6a8yA', '3994992'), - (670, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Vmy6a8yA', '4014338'), - (670, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'Vmy6a8yA', '4021848'), - (670, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Vmy6a8yA', '4136744'), - (670, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Vmy6a8yA', '4136937'), - (670, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Vmy6a8yA', '4136938'), - (670, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Vmy6a8yA', '4136947'), - (670, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Vmy6a8yA', '4210314'), - (670, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Vmy6a8yA', '4225444'), - (670, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Vmy6a8yA', '4239259'), - (670, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Vmy6a8yA', '4240316'), - (670, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Vmy6a8yA', '4240317'), - (670, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Vmy6a8yA', '4240318'), - (670, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Vmy6a8yA', '4240320'), - (670, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Vmy6a8yA', '4250163'), - (670, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Vmy6a8yA', '4275957'), - (670, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Vmy6a8yA', '4277819'), - (670, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Vmy6a8yA', '4301723'), - (670, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Vmy6a8yA', '4302093'), - (670, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Vmy6a8yA', '4304151'), - (670, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Vmy6a8yA', '4356801'), - (670, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Vmy6a8yA', '4366186'), - (670, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Vmy6a8yA', '4366187'), - (670, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Vmy6a8yA', '4420735'), - (670, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Vmy6a8yA', '4420738'), - (670, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Vmy6a8yA', '4420739'), - (670, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Vmy6a8yA', '4420741'), - (670, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Vmy6a8yA', '4420744'), - (670, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Vmy6a8yA', '4420747'), - (670, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Vmy6a8yA', '4420748'), - (670, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Vmy6a8yA', '4420749'), - (670, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Vmy6a8yA', '4461883'), - (670, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Vmy6a8yA', '4508342'), - (670, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Vmy6a8yA', '4568602'), - (670, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Vmy6a8yA', '4572153'), - (670, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Vmy6a8yA', '4585962'), - (670, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'Vmy6a8yA', '4596356'), - (670, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Vmy6a8yA', '4598860'), - (670, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Vmy6a8yA', '4598861'), - (670, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Vmy6a8yA', '4602797'), - (670, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Vmy6a8yA', '4637896'), - (670, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Vmy6a8yA', '4642994'), - (670, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Vmy6a8yA', '4642995'), - (670, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Vmy6a8yA', '4642996'), - (670, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Vmy6a8yA', '4642997'), - (670, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Vmy6a8yA', '4645687'), - (670, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Vmy6a8yA', '4645698'), - (670, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Vmy6a8yA', '4645704'), - (670, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Vmy6a8yA', '4645705'), - (670, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Vmy6a8yA', '4668385'), - (670, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Vmy6a8yA', '4694407'), - (670, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Vmy6a8yA', '4736497'), - (670, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Vmy6a8yA', '4736499'), - (670, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Vmy6a8yA', '4736500'), - (670, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Vmy6a8yA', '4736503'), - (670, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Vmy6a8yA', '4736504'), - (670, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Vmy6a8yA', '4746789'), - (670, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Vmy6a8yA', '4753929'), - (670, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Vmy6a8yA', '5038850'), - (670, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Vmy6a8yA', '5045826'), - (670, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Vmy6a8yA', '5132533'), - (670, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Vmy6a8yA', '5186582'), - (670, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Vmy6a8yA', '5186583'), - (670, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Vmy6a8yA', '5186585'), - (670, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Vmy6a8yA', '5190437'), - (670, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Vmy6a8yA', '5195095'), - (670, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Vmy6a8yA', '5215989'), - (670, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Vmy6a8yA', '5223686'), - (670, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Vmy6a8yA', '5247467'), - (670, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Vmy6a8yA', '5260800'), - (670, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Vmy6a8yA', '5269930'), - (670, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Vmy6a8yA', '5271448'), - (670, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'Vmy6a8yA', '5271449'), - (670, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Vmy6a8yA', '5278159'), - (670, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Vmy6a8yA', '5363695'), - (670, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Vmy6a8yA', '5365960'), - (670, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Vmy6a8yA', '5378247'), - (670, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Vmy6a8yA', '5389605'), - (670, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Vmy6a8yA', '5397265'), - (670, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Vmy6a8yA', '5404786'), - (670, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Vmy6a8yA', '5405203'), - (670, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Vmy6a8yA', '5412550'), - (670, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Vmy6a8yA', '5415046'), - (670, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Vmy6a8yA', '5422086'), - (670, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Vmy6a8yA', '5422406'), - (670, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Vmy6a8yA', '5424565'), - (670, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Vmy6a8yA', '5426882'), - (670, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Vmy6a8yA', '5441125'), - (670, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Vmy6a8yA', '5441126'), - (670, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Vmy6a8yA', '5441128'), - (670, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Vmy6a8yA', '5441131'), - (670, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Vmy6a8yA', '5441132'), - (670, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Vmy6a8yA', '5453325'), - (670, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Vmy6a8yA', '5454516'), - (670, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Vmy6a8yA', '5454605'), - (670, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Vmy6a8yA', '5455037'), - (670, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Vmy6a8yA', '5461278'), - (670, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Vmy6a8yA', '5469480'), - (670, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Vmy6a8yA', '5474663'), - (670, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Vmy6a8yA', '5482022'), - (670, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Vmy6a8yA', '5488912'), - (670, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Vmy6a8yA', '5492192'), - (670, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Vmy6a8yA', '5493139'), - (670, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Vmy6a8yA', '5493200'), - (670, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Vmy6a8yA', '5502188'), - (670, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Vmy6a8yA', '5505059'), - (670, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Vmy6a8yA', '5509055'), - (670, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Vmy6a8yA', '5512862'), - (670, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Vmy6a8yA', '5513985'), - (670, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'Vmy6a8yA', '5519981'), - (670, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Vmy6a8yA', '5522550'), - (670, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Vmy6a8yA', '5534683'), - (670, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Vmy6a8yA', '5537735'), - (670, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Vmy6a8yA', '5540859'), - (670, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Vmy6a8yA', '5546619'), - (670, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Vmy6a8yA', '5557747'), - (670, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Vmy6a8yA', '5560255'), - (670, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Vmy6a8yA', '5562906'), - (670, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Vmy6a8yA', '5600604'), - (670, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Vmy6a8yA', '5605544'), - (670, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Vmy6a8yA', '5630960'), - (670, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Vmy6a8yA', '5630961'), - (670, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Vmy6a8yA', '5630962'), - (670, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Vmy6a8yA', '5630966'), - (670, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Vmy6a8yA', '5630967'), - (670, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Vmy6a8yA', '5630968'), - (670, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Vmy6a8yA', '5635406'), - (670, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Vmy6a8yA', '5638765'), - (670, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Vmy6a8yA', '5640097'), - (670, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Vmy6a8yA', '5640843'), - (670, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Vmy6a8yA', '5641521'), - (670, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Vmy6a8yA', '5642818'), - (670, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Vmy6a8yA', '5652395'), - (670, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Vmy6a8yA', '5670445'), - (670, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Vmy6a8yA', '5671637'), - (670, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Vmy6a8yA', '5672329'), - (670, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Vmy6a8yA', '5674057'), - (670, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Vmy6a8yA', '5674060'), - (670, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Vmy6a8yA', '5677461'), - (670, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Vmy6a8yA', '5698046'), - (670, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Vmy6a8yA', '5699760'), - (670, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Vmy6a8yA', '5741601'), - (670, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Vmy6a8yA', '5763458'), - (670, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Vmy6a8yA', '5774172'), - (670, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'Vmy6a8yA', '5818247'), - (670, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Vmy6a8yA', '5819471'), - (670, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Vmy6a8yA', '5827739'), - (670, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Vmy6a8yA', '5844306'), - (670, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Vmy6a8yA', '5850159'), - (670, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Vmy6a8yA', '5858999'), - (670, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Vmy6a8yA', '5871984'), - (670, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Vmy6a8yA', '5876354'), - (670, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Vmy6a8yA', '5880939'), - (670, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Vmy6a8yA', '5880940'), - (670, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Vmy6a8yA', '5880942'), - (670, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Vmy6a8yA', '5880943'), - (670, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Vmy6a8yA', '5887890'), - (670, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Vmy6a8yA', '5888598'), - (670, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Vmy6a8yA', '5893260'), - (670, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Vmy6a8yA', '5899826'), - (670, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Vmy6a8yA', '5900199'), - (670, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Vmy6a8yA', '5900200'), - (670, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Vmy6a8yA', '5900202'), - (670, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Vmy6a8yA', '5900203'), - (670, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Vmy6a8yA', '5901108'), - (670, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Vmy6a8yA', '5901126'), - (670, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'Vmy6a8yA', '5901606'), - (670, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Vmy6a8yA', '5909655'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (670, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Vmy6a8yA', '5910522'), - (670, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Vmy6a8yA', '5910526'), - (670, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Vmy6a8yA', '5910528'), - (670, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Vmy6a8yA', '5916219'), - (670, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Vmy6a8yA', '5936234'), - (670, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Vmy6a8yA', '5958351'), - (670, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Vmy6a8yA', '5959751'), - (670, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Vmy6a8yA', '5959755'), - (670, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Vmy6a8yA', '5960055'), - (670, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Vmy6a8yA', '5961684'), - (670, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Vmy6a8yA', '5962132'), - (670, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Vmy6a8yA', '5962133'), - (670, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Vmy6a8yA', '5962134'), - (670, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Vmy6a8yA', '5962317'), - (670, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Vmy6a8yA', '5962318'), - (670, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Vmy6a8yA', '5965933'), - (670, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Vmy6a8yA', '5967014'), - (670, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Vmy6a8yA', '5972815'), - (670, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Vmy6a8yA', '5974016'), - (670, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Vmy6a8yA', '5981515'), - (670, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Vmy6a8yA', '5993516'), - (670, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Vmy6a8yA', '5998939'), - (670, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Vmy6a8yA', '6028191'), - (670, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Vmy6a8yA', '6040066'), - (670, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Vmy6a8yA', '6042717'), - (670, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Vmy6a8yA', '6044838'), - (670, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Vmy6a8yA', '6044839'), - (670, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Vmy6a8yA', '6045684'), - (670, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Vmy6a8yA', '6050104'), - (670, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Vmy6a8yA', '6053195'), - (670, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Vmy6a8yA', '6053198'), - (670, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Vmy6a8yA', '6056085'), - (670, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Vmy6a8yA', '6056916'), - (670, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Vmy6a8yA', '6059290'), - (670, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Vmy6a8yA', '6060328'), - (670, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Vmy6a8yA', '6061037'), - (670, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Vmy6a8yA', '6061039'), - (670, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Vmy6a8yA', '6067245'), - (670, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Vmy6a8yA', '6068094'), - (670, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Vmy6a8yA', '6068252'), - (670, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Vmy6a8yA', '6068253'), - (670, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Vmy6a8yA', '6068254'), - (670, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Vmy6a8yA', '6068280'), - (670, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Vmy6a8yA', '6069093'), - (670, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Vmy6a8yA', '6072528'), - (670, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Vmy6a8yA', '6079840'), - (670, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Vmy6a8yA', '6083398'), - (670, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Vmy6a8yA', '6093504'), - (670, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Vmy6a8yA', '6097414'), - (670, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Vmy6a8yA', '6097442'), - (670, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Vmy6a8yA', '6097684'), - (670, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Vmy6a8yA', '6098762'), - (670, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Vmy6a8yA', '6101361'), - (670, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Vmy6a8yA', '6101362'), - (670, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Vmy6a8yA', '6107314'), - (670, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Vmy6a8yA', '6120034'), - (670, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'Vmy6a8yA', '6136733'), - (670, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Vmy6a8yA', '6137989'), - (670, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Vmy6a8yA', '6150864'), - (670, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Vmy6a8yA', '6155491'), - (670, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Vmy6a8yA', '6164417'), - (670, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Vmy6a8yA', '6166388'), - (670, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Vmy6a8yA', '6176439'), - (670, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Vmy6a8yA', '6182410'), - (670, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Vmy6a8yA', '6185812'), - (670, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Vmy6a8yA', '6187651'), - (670, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Vmy6a8yA', '6187963'), - (670, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Vmy6a8yA', '6187964'), - (670, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Vmy6a8yA', '6187966'), - (670, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Vmy6a8yA', '6187967'), - (670, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Vmy6a8yA', '6187969'), - (670, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Vmy6a8yA', '6334878'), - (670, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Vmy6a8yA', '6337236'), - (670, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Vmy6a8yA', '6337970'), - (670, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Vmy6a8yA', '6338308'), - (670, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Vmy6a8yA', '6341710'), - (670, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Vmy6a8yA', '6342044'), - (670, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Vmy6a8yA', '6342298'), - (670, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Vmy6a8yA', '6343294'), - (670, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Vmy6a8yA', '6347034'), - (670, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Vmy6a8yA', '6347056'), - (670, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Vmy6a8yA', '6353830'), - (670, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Vmy6a8yA', '6353831'), - (670, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Vmy6a8yA', '6357867'), - (670, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Vmy6a8yA', '6358652'), - (670, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Vmy6a8yA', '6361709'), - (670, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Vmy6a8yA', '6361710'), - (670, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Vmy6a8yA', '6361711'), - (670, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Vmy6a8yA', '6361712'), - (670, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Vmy6a8yA', '6361713'), - (670, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Vmy6a8yA', '6382573'), - (670, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Vmy6a8yA', '6388604'), - (670, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Vmy6a8yA', '6394629'), - (670, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Vmy6a8yA', '6394631'), - (670, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Vmy6a8yA', '6440863'), - (670, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Vmy6a8yA', '6445440'), - (670, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Vmy6a8yA', '6453951'), - (670, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Vmy6a8yA', '6461696'), - (670, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Vmy6a8yA', '6462129'), - (670, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Vmy6a8yA', '6463218'), - (670, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Vmy6a8yA', '6472181'), - (670, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Vmy6a8yA', '6482693'), - (670, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Vmy6a8yA', '6484200'), - (670, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Vmy6a8yA', '6484680'), - (670, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Vmy6a8yA', '6507741'), - (670, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Vmy6a8yA', '6514659'), - (670, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Vmy6a8yA', '6514660'), - (670, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Vmy6a8yA', '6519103'), - (670, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Vmy6a8yA', '6535681'), - (670, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Vmy6a8yA', '6584747'), - (670, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Vmy6a8yA', '6587097'), - (670, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Vmy6a8yA', '6609022'), - (670, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Vmy6a8yA', '6632757'), - (670, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Vmy6a8yA', '6644187'), - (670, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Vmy6a8yA', '6648951'), - (670, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Vmy6a8yA', '6648952'), - (670, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Vmy6a8yA', '6655401'), - (670, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Vmy6a8yA', '6661585'), - (670, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Vmy6a8yA', '6661588'), - (670, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Vmy6a8yA', '6661589'), - (670, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Vmy6a8yA', '6699906'), - (670, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Vmy6a8yA', '6699913'), - (670, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Vmy6a8yA', '6701109'), - (670, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Vmy6a8yA', '6705219'), - (670, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Vmy6a8yA', '6710153'), - (670, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Vmy6a8yA', '6711552'), - (670, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'Vmy6a8yA', '6711553'), - (670, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Vmy6a8yA', '6722688'), - (670, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Vmy6a8yA', '6730620'), - (670, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Vmy6a8yA', '6740364'), - (670, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Vmy6a8yA', '6743829'), - (670, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Vmy6a8yA', '7030380'), - (670, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Vmy6a8yA', '7033677'), - (670, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Vmy6a8yA', '7044715'), - (670, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Vmy6a8yA', '7050318'), - (670, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Vmy6a8yA', '7050319'), - (670, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Vmy6a8yA', '7050322'), - (670, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Vmy6a8yA', '7057804'), - (670, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Vmy6a8yA', '7072824'), - (670, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Vmy6a8yA', '7074348'), - (670, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Vmy6a8yA', '7074364'), - (670, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Vmy6a8yA', '7089267'), - (670, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Vmy6a8yA', '7098747'), - (670, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Vmy6a8yA', '7113468'), - (670, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Vmy6a8yA', '7114856'), - (670, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Vmy6a8yA', '7114951'), - (670, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Vmy6a8yA', '7114955'), - (670, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Vmy6a8yA', '7114956'), - (670, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Vmy6a8yA', '7114957'), - (670, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Vmy6a8yA', '7159484'), - (670, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Vmy6a8yA', '7178446'), - (670, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'Vmy6a8yA', '7220467'), - (670, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Vmy6a8yA', '7240354'), - (670, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Vmy6a8yA', '7251633'), - (670, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Vmy6a8yA', '7324073'), - (670, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Vmy6a8yA', '7324074'), - (670, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Vmy6a8yA', '7324075'), - (670, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Vmy6a8yA', '7324078'), - (670, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Vmy6a8yA', '7324082'), - (670, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Vmy6a8yA', '7331457'), - (670, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Vmy6a8yA', '7363643'), - (670, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Vmy6a8yA', '7368606'), - (670, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Vmy6a8yA', '7397462'), - (670, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Vmy6a8yA', '7424275'), - (670, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Vmy6a8yA', '7432751'), - (670, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Vmy6a8yA', '7432752'), - (670, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Vmy6a8yA', '7432753'), - (670, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432754'), - (670, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432755'), - (670, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432756'), - (670, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432758'), - (670, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432759'), - (670, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Vmy6a8yA', '7433834'), - (670, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Vmy6a8yA', '7470197'), - (670, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Vmy6a8yA', '7685613'), - (670, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Vmy6a8yA', '7688194'), - (670, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Vmy6a8yA', '7688196'), - (670, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Vmy6a8yA', '7688289'), - (670, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Vmy6a8yA', '7692763'), - (670, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Vmy6a8yA', '7697552'), - (670, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Vmy6a8yA', '7699878'), - (670, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Vmy6a8yA', '7704043'), - (670, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Vmy6a8yA', '7712467'), - (670, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Vmy6a8yA', '7713585'), - (670, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Vmy6a8yA', '7713586'), - (670, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Vmy6a8yA', '7738518'), - (670, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Vmy6a8yA', '7750636'), - (670, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Vmy6a8yA', '7796540'), - (670, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Vmy6a8yA', '7796541'), - (670, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Vmy6a8yA', '7796542'), - (670, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Vmy6a8yA', '7825913'), - (670, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Vmy6a8yA', '7826209'), - (670, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Vmy6a8yA', '7834742'), - (670, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Vmy6a8yA', '7842108'), - (670, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Vmy6a8yA', '7842902'), - (670, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Vmy6a8yA', '7842903'), - (670, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Vmy6a8yA', '7842904'), - (670, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Vmy6a8yA', '7842905'), - (670, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Vmy6a8yA', '7855719'), - (670, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Vmy6a8yA', '7860683'), - (670, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Vmy6a8yA', '7860684'), - (670, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Vmy6a8yA', '7866095'), - (670, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Vmy6a8yA', '7869170'), - (670, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Vmy6a8yA', '7869188'), - (670, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Vmy6a8yA', '7869201'), - (670, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Vmy6a8yA', '7877465'), - (670, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Vmy6a8yA', '7888250'), - (670, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Vmy6a8yA', '7904777'), - (670, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Vmy6a8yA', '8349164'), - (670, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Vmy6a8yA', '8349545'), - (670, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Vmy6a8yA', '8368028'), - (670, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Vmy6a8yA', '8368029'), - (670, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Vmy6a8yA', '8388462'), - (670, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Vmy6a8yA', '8400273'), - (670, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Vmy6a8yA', '8400275'), - (670, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Vmy6a8yA', '8400276'), - (670, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Vmy6a8yA', '8404977'), - (670, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Vmy6a8yA', '8430783'), - (670, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Vmy6a8yA', '8430784'), - (670, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Vmy6a8yA', '8430799'), - (670, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Vmy6a8yA', '8430800'), - (670, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Vmy6a8yA', '8430801'), - (670, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Vmy6a8yA', '8438709'), - (670, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Vmy6a8yA', '8457738'), - (670, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Vmy6a8yA', '8459566'), - (670, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Vmy6a8yA', '8459567'), - (670, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Vmy6a8yA', '8461032'), - (670, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Vmy6a8yA', '8477877'), - (670, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Vmy6a8yA', '8485688'), - (670, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Vmy6a8yA', '8490587'), - (670, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Vmy6a8yA', '8493552'), - (670, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Vmy6a8yA', '8493553'), - (670, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Vmy6a8yA', '8493554'), - (670, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Vmy6a8yA', '8493555'), - (670, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Vmy6a8yA', '8493556'), - (670, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Vmy6a8yA', '8493557'), - (670, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Vmy6a8yA', '8493558'), - (670, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Vmy6a8yA', '8493559'), - (670, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Vmy6a8yA', '8493560'), - (670, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Vmy6a8yA', '8493561'), - (670, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Vmy6a8yA', '8493572'), - (670, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Vmy6a8yA', '8540725'), - (670, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Vmy6a8yA', '8555421'), - (671, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'AnneYvYA', '5186585'), - (671, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AnneYvYA', '5195095'), - (671, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AnneYvYA', '5215989'), - (671, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AnneYvYA', '5223686'), - (671, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AnneYvYA', '5227432'), - (671, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AnneYvYA', '5247467'), - (671, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AnneYvYA', '5260800'), - (671, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AnneYvYA', '5269930'), - (671, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AnneYvYA', '5271448'), - (671, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AnneYvYA', '5271449'), - (671, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AnneYvYA', '5276469'), - (671, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AnneYvYA', '5278159'), - (671, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AnneYvYA', '6045684'), - (672, 18, 'not_attending', '2020-04-17 20:22:40', '2025-12-17 19:47:57', 'w4W50Mqm', '2958062'), - (672, 21, 'not_attending', '2020-05-01 17:18:07', '2025-12-17 19:47:57', 'w4W50Mqm', '2958065'), - (672, 40, 'not_attending', '2020-04-09 04:16:23', '2025-12-17 19:47:57', 'w4W50Mqm', '2970718'), - (672, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'w4W50Mqm', '2971546'), - (672, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'w4W50Mqm', '2974534'), - (672, 46, 'not_attending', '2020-04-11 15:16:38', '2025-12-17 19:47:57', 'w4W50Mqm', '2974955'), - (672, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'w4W50Mqm', '2975385'), - (672, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'w4W50Mqm', '2976575'), - (672, 67, 'not_attending', '2020-06-16 21:53:27', '2025-12-17 19:47:58', 'w4W50Mqm', '2977136'), - (672, 69, 'maybe', '2020-07-02 23:32:53', '2025-12-17 19:47:55', 'w4W50Mqm', '2977138'), - (672, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'w4W50Mqm', '2977343'), - (672, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'w4W50Mqm', '2977812'), - (672, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'w4W50Mqm', '2977931'), - (672, 74, 'attending', '2020-04-12 04:01:00', '2025-12-17 19:47:57', 'w4W50Mqm', '2978244'), - (672, 75, 'attending', '2020-04-19 19:40:05', '2025-12-17 19:47:57', 'w4W50Mqm', '2978245'), - (672, 76, 'attending', '2020-05-01 21:11:43', '2025-12-17 19:47:57', 'w4W50Mqm', '2978246'), - (672, 77, 'not_attending', '2020-05-04 13:58:20', '2025-12-17 19:47:57', 'w4W50Mqm', '2978247'), - (672, 78, 'attending', '2020-05-19 22:58:02', '2025-12-17 19:47:57', 'w4W50Mqm', '2978249'), - (672, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'w4W50Mqm', '2978250'), - (672, 80, 'attending', '2020-06-06 01:02:10', '2025-12-17 19:47:58', 'w4W50Mqm', '2978251'), - (672, 81, 'attending', '2020-06-13 23:05:40', '2025-12-17 19:47:58', 'w4W50Mqm', '2978252'), - (672, 82, 'attending', '2020-04-12 04:00:53', '2025-12-17 19:47:57', 'w4W50Mqm', '2978433'), - (672, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'w4W50Mqm', '2978438'), - (672, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'w4W50Mqm', '2980871'), - (672, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'w4W50Mqm', '2981388'), - (672, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'w4W50Mqm', '2986743'), - (672, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', 'w4W50Mqm', '2990784'), - (672, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', 'w4W50Mqm', '2991471'), - (672, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'w4W50Mqm', '2993501'), - (672, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'w4W50Mqm', '2994480'), - (672, 115, 'attending', '2020-05-16 00:41:17', '2025-12-17 19:47:57', 'w4W50Mqm', '3001217'), - (672, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'w4W50Mqm', '3023063'), - (672, 123, 'attending', '2020-05-25 22:58:29', '2025-12-17 19:47:57', 'w4W50Mqm', '3023729'), - (672, 125, 'attending', '2020-05-22 23:00:38', '2025-12-17 19:47:57', 'w4W50Mqm', '3023987'), - (672, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'w4W50Mqm', '3034321'), - (672, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'w4W50Mqm', '3035881'), - (672, 137, 'maybe', '2020-06-04 22:57:02', '2025-12-17 19:47:58', 'w4W50Mqm', '3042188'), - (672, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'w4W50Mqm', '3049983'), - (672, 171, 'attending', '2020-06-13 00:19:38', '2025-12-17 19:47:58', 'w4W50Mqm', '3058743'), - (672, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'w4W50Mqm', '3058959'), - (672, 173, 'attending', '2020-06-19 17:06:25', '2025-12-17 19:47:58', 'w4W50Mqm', '3067093'), - (672, 182, 'attending', '2020-06-27 17:42:07', '2025-12-17 19:47:55', 'w4W50Mqm', '3074514'), - (672, 183, 'not_attending', '2020-06-22 21:27:25', '2025-12-17 19:47:58', 'w4W50Mqm', '3075228'), - (672, 185, 'not_attending', '2020-06-16 18:22:06', '2025-12-17 19:47:58', 'w4W50Mqm', '3075456'), - (672, 186, 'maybe', '2020-06-18 23:16:19', '2025-12-17 19:47:55', 'w4W50Mqm', '3083791'), - (672, 187, 'maybe', '2020-06-18 23:16:24', '2025-12-17 19:47:55', 'w4W50Mqm', '3085151'), - (672, 190, 'attending', '2020-07-03 22:50:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3087258'), - (672, 191, 'attending', '2020-07-07 17:05:14', '2025-12-17 19:47:55', 'w4W50Mqm', '3087259'), - (672, 192, 'attending', '2020-07-15 18:59:27', '2025-12-17 19:47:55', 'w4W50Mqm', '3087260'), - (672, 193, 'attending', '2020-07-26 03:05:08', '2025-12-17 19:47:55', 'w4W50Mqm', '3087261'), - (672, 194, 'attending', '2020-07-28 02:39:24', '2025-12-17 19:47:55', 'w4W50Mqm', '3087262'), - (672, 195, 'attending', '2020-08-04 22:29:00', '2025-12-17 19:47:56', 'w4W50Mqm', '3087264'), - (672, 196, 'attending', '2020-08-11 00:31:41', '2025-12-17 19:47:56', 'w4W50Mqm', '3087265'), - (672, 197, 'attending', '2020-08-19 19:37:22', '2025-12-17 19:47:56', 'w4W50Mqm', '3087266'), - (672, 198, 'not_attending', '2020-08-29 02:24:16', '2025-12-17 19:47:56', 'w4W50Mqm', '3087267'), - (672, 199, 'attending', '2020-09-12 22:46:30', '2025-12-17 19:47:56', 'w4W50Mqm', '3087268'), - (672, 201, 'maybe', '2020-06-25 21:21:10', '2025-12-17 19:47:55', 'w4W50Mqm', '3088653'), - (672, 202, 'attending', '2020-07-06 22:20:48', '2025-12-17 19:47:55', 'w4W50Mqm', '3090353'), - (672, 203, 'maybe', '2020-06-22 10:04:12', '2025-12-17 19:47:58', 'w4W50Mqm', '3091624'), - (672, 205, 'attending', '2020-07-10 21:44:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3104804'), - (672, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'w4W50Mqm', '3106813'), - (672, 214, 'attending', '2020-07-08 21:58:47', '2025-12-17 19:47:55', 'w4W50Mqm', '3124139'), - (672, 217, 'attending', '2020-07-13 23:58:12', '2025-12-17 19:47:55', 'w4W50Mqm', '3126684'), - (672, 223, 'attending', '2020-09-12 22:46:45', '2025-12-17 19:47:56', 'w4W50Mqm', '3129980'), - (672, 225, 'attending', '2020-07-21 16:11:22', '2025-12-17 19:47:55', 'w4W50Mqm', '3132378'), - (672, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'w4W50Mqm', '3132817'), - (672, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'w4W50Mqm', '3132820'), - (672, 267, 'attending', '2020-08-01 01:37:59', '2025-12-17 19:47:55', 'w4W50Mqm', '3152781'), - (672, 271, 'maybe', '2020-08-01 01:38:14', '2025-12-17 19:47:56', 'w4W50Mqm', '3155321'), - (672, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'w4W50Mqm', '3162006'), - (672, 274, 'maybe', '2020-08-06 15:10:21', '2025-12-17 19:47:56', 'w4W50Mqm', '3163404'), - (672, 276, 'attending', '2020-08-04 22:59:18', '2025-12-17 19:47:56', 'w4W50Mqm', '3163408'), - (672, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'w4W50Mqm', '3163442'), - (672, 281, 'attending', '2020-08-09 16:20:11', '2025-12-17 19:47:56', 'w4W50Mqm', '3166945'), - (672, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'w4W50Mqm', '3169555'), - (672, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'w4W50Mqm', '3172832'), - (672, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'w4W50Mqm', '3172833'), - (672, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'w4W50Mqm', '3172834'), - (672, 296, 'not_attending', '2020-09-11 23:33:38', '2025-12-17 19:47:56', 'w4W50Mqm', '3172876'), - (672, 297, 'attending', '2020-08-12 00:42:58', '2025-12-17 19:47:56', 'w4W50Mqm', '3173937'), - (672, 311, 'maybe', '2020-09-11 22:33:50', '2025-12-17 19:47:56', 'w4W50Mqm', '3186057'), - (672, 317, 'maybe', '2020-08-27 01:35:33', '2025-12-17 19:47:56', 'w4W50Mqm', '3191735'), - (672, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'w4W50Mqm', '3200209'), - (672, 342, 'attending', '2020-10-03 00:11:14', '2025-12-17 19:47:52', 'w4W50Mqm', '3204472'), - (672, 344, 'attending', '2020-11-01 20:06:04', '2025-12-17 19:47:53', 'w4W50Mqm', '3206906'), - (672, 362, 'not_attending', '2020-09-26 15:34:36', '2025-12-17 19:47:52', 'w4W50Mqm', '3214207'), - (672, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'w4W50Mqm', '3217037'), - (672, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'w4W50Mqm', '3218510'), - (672, 382, 'attending', '2020-10-13 23:06:46', '2025-12-17 19:47:52', 'w4W50Mqm', '3226873'), - (672, 385, 'attending', '2020-10-03 20:19:23', '2025-12-17 19:47:52', 'w4W50Mqm', '3228698'), - (672, 386, 'attending', '2020-10-10 18:43:19', '2025-12-17 19:47:52', 'w4W50Mqm', '3228699'), - (672, 387, 'attending', '2020-10-17 16:57:26', '2025-12-17 19:47:52', 'w4W50Mqm', '3228700'), - (672, 388, 'attending', '2020-10-24 22:49:53', '2025-12-17 19:47:52', 'w4W50Mqm', '3228701'), - (672, 414, 'attending', '2020-10-18 22:03:38', '2025-12-17 19:47:52', 'w4W50Mqm', '3237277'), - (672, 424, 'attending', '2020-10-19 23:34:06', '2025-12-17 19:47:52', 'w4W50Mqm', '3245751'), - (672, 426, 'attending', '2020-10-18 19:24:37', '2025-12-17 19:47:52', 'w4W50Mqm', '3250232'), - (672, 438, 'attending', '2020-10-31 23:10:49', '2025-12-17 19:47:53', 'w4W50Mqm', '3256163'), - (672, 440, 'attending', '2020-10-18 19:24:50', '2025-12-17 19:47:53', 'w4W50Mqm', '3256168'), - (672, 441, 'attending', '2020-11-11 01:59:14', '2025-12-17 19:47:54', 'w4W50Mqm', '3256169'), - (672, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'w4W50Mqm', '3263578'), - (672, 445, 'maybe', '2020-11-13 01:15:00', '2025-12-17 19:47:54', 'w4W50Mqm', '3266138'), - (672, 448, 'attending', '2020-10-30 23:54:41', '2025-12-17 19:47:53', 'w4W50Mqm', '3271831'), - (672, 449, 'attending', '2020-11-08 23:40:32', '2025-12-17 19:47:53', 'w4W50Mqm', '3272055'), - (672, 452, 'attending', '2020-11-06 01:23:56', '2025-12-17 19:47:54', 'w4W50Mqm', '3272981'), - (672, 456, 'maybe', '2020-11-17 01:05:39', '2025-12-17 19:47:54', 'w4W50Mqm', '3276428'), - (672, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'w4W50Mqm', '3281467'), - (672, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'w4W50Mqm', '3281470'), - (672, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'w4W50Mqm', '3281829'), - (672, 468, 'attending', '2020-11-17 22:26:57', '2025-12-17 19:47:54', 'w4W50Mqm', '3285413'), - (672, 469, 'attending', '2020-11-26 01:34:35', '2025-12-17 19:47:54', 'w4W50Mqm', '3285414'), - (672, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'w4W50Mqm', '3297764'), - (672, 493, 'maybe', '2020-11-29 21:31:33', '2025-12-17 19:47:54', 'w4W50Mqm', '3313856'), - (672, 499, 'maybe', '2020-12-01 01:40:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3314909'), - (672, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3314964'), - (672, 502, 'maybe', '2020-12-13 00:37:24', '2025-12-17 19:47:55', 'w4W50Mqm', '3323365'), - (672, 513, 'maybe', '2020-12-20 02:55:56', '2025-12-17 19:47:55', 'w4W50Mqm', '3329383'), - (672, 516, 'maybe', '2020-12-27 01:00:13', '2025-12-17 19:47:48', 'w4W50Mqm', '3334530'), - (672, 526, 'not_attending', '2020-12-31 05:20:58', '2025-12-17 19:47:48', 'w4W50Mqm', '3351539'), - (672, 536, 'not_attending', '2021-01-09 23:21:09', '2025-12-17 19:47:48', 'w4W50Mqm', '3386848'), - (672, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'w4W50Mqm', '3389527'), - (672, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'w4W50Mqm', '3396499'), - (672, 548, 'not_attending', '2021-01-17 00:30:02', '2025-12-17 19:47:48', 'w4W50Mqm', '3403650'), - (672, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'w4W50Mqm', '3406988'), - (672, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'w4W50Mqm', '3416576'), - (672, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'w4W50Mqm', '3418925'), - (672, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'w4W50Mqm', '3539920'), - (672, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'w4W50Mqm', '3539921'), - (672, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'w4W50Mqm', '3539922'), - (672, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'w4W50Mqm', '3539923'), - (672, 792, 'attending', '2021-05-19 22:31:56', '2025-12-17 19:47:46', 'w4W50Mqm', '3793156'), - (672, 794, 'attending', '2021-05-26 20:11:57', '2025-12-17 19:47:47', 'w4W50Mqm', '3793538'), - (672, 805, 'attending', '2021-06-13 21:23:56', '2025-12-17 19:47:47', 'w4W50Mqm', '3804777'), - (672, 823, 'attending', '2021-06-19 13:57:25', '2025-12-17 19:47:48', 'w4W50Mqm', '3974109'), - (672, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'w4W50Mqm', '3975311'), - (672, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4W50Mqm', '3975312'), - (672, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4W50Mqm', '3994992'), - (672, 844, 'attending', '2021-06-23 22:42:32', '2025-12-17 19:47:38', 'w4W50Mqm', '4014338'), - (672, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'w4W50Mqm', '4021848'), - (672, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4W50Mqm', '4136744'), - (672, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4W50Mqm', '4136937'), - (672, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4W50Mqm', '4136938'), - (672, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4W50Mqm', '4136947'), - (672, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4W50Mqm', '4210314'), - (672, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4W50Mqm', '4225444'), - (672, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4W50Mqm', '4239259'), - (672, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4W50Mqm', '4240316'), - (672, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4W50Mqm', '4240317'), - (672, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4W50Mqm', '4240318'), - (672, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4W50Mqm', '4240320'), - (672, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4W50Mqm', '4250163'), - (672, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4W50Mqm', '4275957'), - (672, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4W50Mqm', '4277819'), - (672, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4W50Mqm', '4301723'), - (672, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'w4W50Mqm', '4302093'), - (672, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4W50Mqm', '4304151'), - (672, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'w4W50Mqm', '4356801'), - (672, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4W50Mqm', '4366186'), - (672, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'w4W50Mqm', '4366187'), - (672, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'w4W50Mqm', '4420735'), - (672, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'w4W50Mqm', '4420738'), - (672, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'w4W50Mqm', '4420739'), - (672, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'w4W50Mqm', '4420741'), - (672, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'w4W50Mqm', '4420744'), - (672, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'w4W50Mqm', '4420747'), - (672, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'w4W50Mqm', '4420748'), - (672, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4W50Mqm', '4420749'), - (672, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4W50Mqm', '4461883'), - (672, 1036, 'maybe', '2021-09-22 22:51:34', '2025-12-17 19:47:34', 'w4W50Mqm', '4493166'), - (672, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4W50Mqm', '4508342'), - (672, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4W50Mqm', '4568602'), - (672, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'w4W50Mqm', '4572153'), - (672, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4W50Mqm', '4585962'), - (672, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'w4W50Mqm', '4596356'), - (672, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4W50Mqm', '4598860'), - (672, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4W50Mqm', '4598861'), - (672, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'w4W50Mqm', '4602797'), - (672, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'w4W50Mqm', '4637896'), - (672, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'w4W50Mqm', '4642994'), - (672, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'w4W50Mqm', '4642995'), - (672, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'w4W50Mqm', '4642996'), - (672, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'w4W50Mqm', '4642997'), - (672, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'w4W50Mqm', '4645687'), - (672, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'w4W50Mqm', '4645698'), - (672, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'w4W50Mqm', '4645704'), - (672, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'w4W50Mqm', '4645705'), - (672, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'w4W50Mqm', '4668385'), - (672, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'w4W50Mqm', '4694407'), - (672, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4W50Mqm', '4736497'), - (672, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4W50Mqm', '4736499'), - (672, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4W50Mqm', '4736500'), - (672, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4W50Mqm', '4736503'), - (672, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4W50Mqm', '4736504'), - (672, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'w4W50Mqm', '4746789'), - (672, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'w4W50Mqm', '4753929'), - (672, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4W50Mqm', '5038850'), - (672, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4W50Mqm', '5045826'), - (672, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4W50Mqm', '5132533'), - (672, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4W50Mqm', '5186582'), - (672, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4W50Mqm', '5186583'), - (672, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4W50Mqm', '5186585'), - (672, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4W50Mqm', '5190437'), - (672, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'w4W50Mqm', '5195095'), - (672, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4W50Mqm', '5215989'), - (672, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'w4W50Mqm', '5223686'), - (672, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'w4W50Mqm', '5247467'), - (672, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'w4W50Mqm', '5260800'), - (672, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'w4W50Mqm', '5269930'), - (672, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'w4W50Mqm', '5271448'), - (672, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'w4W50Mqm', '5271449'), - (672, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'w4W50Mqm', '5278159'), - (672, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'w4W50Mqm', '5363695'), - (672, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'w4W50Mqm', '5365960'), - (672, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'w4W50Mqm', '5378247'), - (672, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'w4W50Mqm', '5389605'), - (672, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'w4W50Mqm', '5397265'), - (672, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'w4W50Mqm', '5404786'), - (672, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'w4W50Mqm', '5405203'), - (672, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'w4W50Mqm', '5412550'), - (672, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'w4W50Mqm', '5415046'), - (672, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'w4W50Mqm', '5422086'), - (672, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'w4W50Mqm', '5422406'), - (672, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'w4W50Mqm', '5424565'), - (672, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'w4W50Mqm', '5426882'), - (672, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'w4W50Mqm', '5441125'), - (672, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'w4W50Mqm', '5441126'), - (672, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'w4W50Mqm', '5441128'), - (672, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'w4W50Mqm', '5441131'), - (672, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'w4W50Mqm', '5441132'), - (672, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'w4W50Mqm', '5453325'), - (672, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'w4W50Mqm', '5454516'), - (672, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'w4W50Mqm', '5454605'), - (672, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'w4W50Mqm', '5455037'), - (672, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'w4W50Mqm', '5461278'), - (672, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'w4W50Mqm', '5469480'), - (672, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'w4W50Mqm', '5474663'), - (672, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'w4W50Mqm', '5482022'), - (672, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'w4W50Mqm', '5488912'), - (672, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'w4W50Mqm', '5492192'), - (672, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'w4W50Mqm', '5493139'), - (672, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'w4W50Mqm', '5493200'), - (672, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'w4W50Mqm', '5502188'), - (672, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'w4W50Mqm', '5505059'), - (672, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'w4W50Mqm', '5509055'), - (672, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'w4W50Mqm', '5512862'), - (672, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'w4W50Mqm', '5513985'), - (672, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'w4W50Mqm', '5519981'), - (672, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'w4W50Mqm', '5522550'), - (672, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'w4W50Mqm', '5534683'), - (672, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'w4W50Mqm', '5537735'), - (672, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'w4W50Mqm', '5540859'), - (672, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'w4W50Mqm', '5546619'), - (672, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'w4W50Mqm', '5557747'), - (672, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'w4W50Mqm', '5560255'), - (672, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'w4W50Mqm', '5562906'), - (672, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'w4W50Mqm', '5600604'), - (672, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'w4W50Mqm', '5605544'), - (672, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'w4W50Mqm', '5606737'), - (672, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'w4W50Mqm', '5630960'), - (672, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'w4W50Mqm', '5630961'), - (672, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'w4W50Mqm', '5630962'), - (672, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'w4W50Mqm', '5630966'), - (672, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'w4W50Mqm', '5630967'), - (672, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'w4W50Mqm', '5630968'), - (672, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'w4W50Mqm', '5635406'), - (672, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'w4W50Mqm', '5638765'), - (672, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'w4W50Mqm', '5640097'), - (672, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'w4W50Mqm', '5640843'), - (672, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'w4W50Mqm', '5641521'), - (672, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'w4W50Mqm', '5642818'), - (672, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'w4W50Mqm', '5652395'), - (672, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'w4W50Mqm', '5670445'), - (672, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'w4W50Mqm', '5671637'), - (672, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'w4W50Mqm', '5672329'), - (672, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'w4W50Mqm', '5674057'), - (672, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'w4W50Mqm', '5674060'), - (672, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'w4W50Mqm', '5677461'), - (672, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'w4W50Mqm', '5698046'), - (672, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'w4W50Mqm', '5699760'), - (672, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'w4W50Mqm', '5741601'), - (672, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'w4W50Mqm', '5763458'), - (672, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'w4W50Mqm', '5774172'), - (672, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'w4W50Mqm', '5818247'), - (672, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'w4W50Mqm', '5819471'), - (672, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'w4W50Mqm', '5827739'), - (672, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'w4W50Mqm', '5844306'), - (672, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'w4W50Mqm', '5850159'), - (672, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'w4W50Mqm', '5858999'), - (672, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'w4W50Mqm', '5871984'), - (672, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'w4W50Mqm', '5876354'), - (672, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'w4W50Mqm', '5880939'), - (672, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'w4W50Mqm', '5880940'), - (672, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'w4W50Mqm', '5880942'), - (672, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'w4W50Mqm', '5880943'), - (672, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'w4W50Mqm', '5887890'), - (672, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'w4W50Mqm', '5888598'), - (672, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'w4W50Mqm', '5893260'), - (672, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'w4W50Mqm', '5899826'), - (672, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'w4W50Mqm', '5900199'), - (672, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'w4W50Mqm', '5900200'), - (672, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'w4W50Mqm', '5900202'), - (672, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'w4W50Mqm', '5900203'), - (672, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'w4W50Mqm', '5901108'), - (672, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'w4W50Mqm', '5901126'), - (672, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'w4W50Mqm', '5909655'), - (672, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'w4W50Mqm', '5910522'), - (672, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'w4W50Mqm', '5910526'), - (672, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'w4W50Mqm', '5910528'), - (672, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'w4W50Mqm', '5916219'), - (672, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'w4W50Mqm', '5936234'), - (672, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'w4W50Mqm', '5958351'), - (672, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'w4W50Mqm', '5959751'), - (672, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'w4W50Mqm', '5959755'), - (672, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'w4W50Mqm', '5960055'), - (672, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'w4W50Mqm', '5961684'), - (672, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'w4W50Mqm', '5962132'), - (672, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'w4W50Mqm', '5962133'), - (672, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'w4W50Mqm', '5962134'), - (672, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'w4W50Mqm', '5962317'), - (672, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'w4W50Mqm', '5962318'), - (672, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'w4W50Mqm', '5965933'), - (672, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'w4W50Mqm', '5967014'), - (672, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'w4W50Mqm', '5972815'), - (672, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'w4W50Mqm', '5974016'), - (672, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'w4W50Mqm', '5981515'), - (672, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'w4W50Mqm', '5993516'), - (672, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'w4W50Mqm', '5998939'), - (672, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'w4W50Mqm', '6028191'), - (672, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'w4W50Mqm', '6040066'), - (672, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'w4W50Mqm', '6042717'), - (672, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'w4W50Mqm', '6044838'), - (672, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'w4W50Mqm', '6044839'), - (672, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4W50Mqm', '6045684'), - (672, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'w4W50Mqm', '6050104'), - (672, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'w4W50Mqm', '6053195'), - (672, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'w4W50Mqm', '6053198'), - (672, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'w4W50Mqm', '6056085'), - (672, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'w4W50Mqm', '6056916'), - (672, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'w4W50Mqm', '6059290'), - (672, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'w4W50Mqm', '6060328'), - (672, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'w4W50Mqm', '6061037'), - (672, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'w4W50Mqm', '6061039'), - (672, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'w4W50Mqm', '6067245'), - (672, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'w4W50Mqm', '6068094'), - (672, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'w4W50Mqm', '6068252'), - (672, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'w4W50Mqm', '6068253'), - (672, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'w4W50Mqm', '6068254'), - (672, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'w4W50Mqm', '6068280'), - (672, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'w4W50Mqm', '6069093'), - (672, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'w4W50Mqm', '6072528'), - (672, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'w4W50Mqm', '6079840'), - (672, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'w4W50Mqm', '6083398'), - (672, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'w4W50Mqm', '6093504'), - (672, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'w4W50Mqm', '6097414'), - (672, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'w4W50Mqm', '6097442'), - (672, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'w4W50Mqm', '6097684'), - (672, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'w4W50Mqm', '6098762'), - (672, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'w4W50Mqm', '6101361'), - (672, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'w4W50Mqm', '6101362'), - (672, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'w4W50Mqm', '6107314'), - (672, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'w4W50Mqm', '6120034'), - (672, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'w4W50Mqm', '6136733'), - (672, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'w4W50Mqm', '6137989'), - (672, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'w4W50Mqm', '6150864'), - (672, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'w4W50Mqm', '6155491'), - (672, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'w4W50Mqm', '6164417'), - (672, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'w4W50Mqm', '6166388'), - (672, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'w4W50Mqm', '6176439'), - (672, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'w4W50Mqm', '6182410'), - (672, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'w4W50Mqm', '6185812'), - (672, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'w4W50Mqm', '6187651'), - (672, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'w4W50Mqm', '6187963'), - (672, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'w4W50Mqm', '6187964'), - (672, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'w4W50Mqm', '6187966'), - (672, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'w4W50Mqm', '6187967'), - (672, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'w4W50Mqm', '6187969'), - (672, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'w4W50Mqm', '6334878'), - (672, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'w4W50Mqm', '6337236'), - (672, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'w4W50Mqm', '6337970'), - (672, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'w4W50Mqm', '6338308'), - (672, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'w4W50Mqm', '6341710'), - (672, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'w4W50Mqm', '6342044'), - (672, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'w4W50Mqm', '6342298'), - (672, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'w4W50Mqm', '6343294'), - (672, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'w4W50Mqm', '6347034'), - (672, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'w4W50Mqm', '6347056'), - (672, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'w4W50Mqm', '6353830'), - (672, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'w4W50Mqm', '6353831'), - (672, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'w4W50Mqm', '6357867'), - (672, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'w4W50Mqm', '6358652'), - (672, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'w4W50Mqm', '6361709'), - (672, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'w4W50Mqm', '6361710'), - (672, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'w4W50Mqm', '6361711'), - (672, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'w4W50Mqm', '6361712'), - (672, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'w4W50Mqm', '6361713'), - (672, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'w4W50Mqm', '6382573'), - (672, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'w4W50Mqm', '6388604'), - (672, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'w4W50Mqm', '6394629'), - (672, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'w4W50Mqm', '6394631'), - (672, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'w4W50Mqm', '6440863'), - (672, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'w4W50Mqm', '6445440'), - (672, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'w4W50Mqm', '6453951'), - (672, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'w4W50Mqm', '6461696'), - (672, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'w4W50Mqm', '6462129'), - (672, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'w4W50Mqm', '6463218'), - (672, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'w4W50Mqm', '6472181'), - (672, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'w4W50Mqm', '6482693'), - (672, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'w4W50Mqm', '6484200'), - (672, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'w4W50Mqm', '6484680'), - (672, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'w4W50Mqm', '6507741'), - (672, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'w4W50Mqm', '6514659'), - (672, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'w4W50Mqm', '6514660'), - (672, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'w4W50Mqm', '6519103'), - (672, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'w4W50Mqm', '6535681'), - (672, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'w4W50Mqm', '6584747'), - (672, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'w4W50Mqm', '6587097'), - (672, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'w4W50Mqm', '6609022'), - (672, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'w4W50Mqm', '6632757'), - (672, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'w4W50Mqm', '6644187'), - (672, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'w4W50Mqm', '6648951'), - (672, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'w4W50Mqm', '6648952'), - (672, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'w4W50Mqm', '6655401'), - (672, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'w4W50Mqm', '6661585'), - (672, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'w4W50Mqm', '6661588'), - (672, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'w4W50Mqm', '6661589'), - (672, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'w4W50Mqm', '6699906'), - (672, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'w4W50Mqm', '6699913'), - (672, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'w4W50Mqm', '6701109'), - (672, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'w4W50Mqm', '6705219'), - (672, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'w4W50Mqm', '6710153'), - (672, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'w4W50Mqm', '6711552'), - (672, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'w4W50Mqm', '6711553'), - (672, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'w4W50Mqm', '6722688'), - (672, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'w4W50Mqm', '6730620'), - (672, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'w4W50Mqm', '6740364'), - (672, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'w4W50Mqm', '6743829'), - (672, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'w4W50Mqm', '7030380'), - (672, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'w4W50Mqm', '7033677'), - (672, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'w4W50Mqm', '7044715'), - (672, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'w4W50Mqm', '7050318'), - (672, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'w4W50Mqm', '7050319'), - (672, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'w4W50Mqm', '7050322'), - (672, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'w4W50Mqm', '7057804'), - (672, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'w4W50Mqm', '7072824'), - (672, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'w4W50Mqm', '7074348'), - (672, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'w4W50Mqm', '7074364'), - (672, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'w4W50Mqm', '7089267'), - (672, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'w4W50Mqm', '7098747'), - (672, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'w4W50Mqm', '7113468'), - (672, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'w4W50Mqm', '7114856'), - (672, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'w4W50Mqm', '7114951'), - (672, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'w4W50Mqm', '7114955'), - (672, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'w4W50Mqm', '7114956'), - (672, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'w4W50Mqm', '7114957'), - (672, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'w4W50Mqm', '7159484'), - (672, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'w4W50Mqm', '7178446'), - (672, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'w4W50Mqm', '7220467'), - (672, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'w4W50Mqm', '7240354'), - (672, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'w4W50Mqm', '7251633'), - (672, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'w4W50Mqm', '7324073'), - (672, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'w4W50Mqm', '7324074'), - (672, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'w4W50Mqm', '7324075'), - (672, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'w4W50Mqm', '7324078'), - (672, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'w4W50Mqm', '7324082'), - (672, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'w4W50Mqm', '7331457'), - (672, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'w4W50Mqm', '7363643'), - (672, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'w4W50Mqm', '7368606'), - (672, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'w4W50Mqm', '7397462'), - (672, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'w4W50Mqm', '7424275'), - (672, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'w4W50Mqm', '7432751'), - (672, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'w4W50Mqm', '7432752'), - (672, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'w4W50Mqm', '7432753'), - (672, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'w4W50Mqm', '7432754'), - (672, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'w4W50Mqm', '7432755'), - (672, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'w4W50Mqm', '7432756'), - (672, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'w4W50Mqm', '7432758'), - (672, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'w4W50Mqm', '7432759'), - (672, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'w4W50Mqm', '7433834'), - (672, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'w4W50Mqm', '7470197'), - (672, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'w4W50Mqm', '7685613'), - (672, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'w4W50Mqm', '7688194'), - (672, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'w4W50Mqm', '7688196'), - (672, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'w4W50Mqm', '7688289'), - (672, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'w4W50Mqm', '7692763'), - (672, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'w4W50Mqm', '7697552'), - (672, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'w4W50Mqm', '7699878'), - (672, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'w4W50Mqm', '7704043'), - (672, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'w4W50Mqm', '7712467'), - (672, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'w4W50Mqm', '7713585'), - (672, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'w4W50Mqm', '7713586'), - (672, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'w4W50Mqm', '7738518'), - (672, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'w4W50Mqm', '7750636'), - (672, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'w4W50Mqm', '7796540'), - (672, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'w4W50Mqm', '7796541'), - (672, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'w4W50Mqm', '7796542'), - (672, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'w4W50Mqm', '7825913'), - (672, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'w4W50Mqm', '7826209'), - (672, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'w4W50Mqm', '7834742'), - (672, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'w4W50Mqm', '7842108'), - (672, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'w4W50Mqm', '7842902'), - (672, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'w4W50Mqm', '7842903'), - (672, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'w4W50Mqm', '7842904'), - (672, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'w4W50Mqm', '7842905'), - (672, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'w4W50Mqm', '7855719'), - (672, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'w4W50Mqm', '7860683'), - (672, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'w4W50Mqm', '7860684'), - (672, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'w4W50Mqm', '7866095'), - (672, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'w4W50Mqm', '7869170'), - (672, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'w4W50Mqm', '7869188'), - (672, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'w4W50Mqm', '7869201'), - (672, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'w4W50Mqm', '7877465'), - (672, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'w4W50Mqm', '7888250'), - (672, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'w4W50Mqm', '7904777'), - (672, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'w4W50Mqm', '8349164'), - (672, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'w4W50Mqm', '8349545'), - (672, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'w4W50Mqm', '8368028'), - (672, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'w4W50Mqm', '8368029'), - (672, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'w4W50Mqm', '8388462'), - (672, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'w4W50Mqm', '8400273'), - (672, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'w4W50Mqm', '8400275'), - (672, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'w4W50Mqm', '8400276'), - (672, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'w4W50Mqm', '8404977'), - (672, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'w4W50Mqm', '8430783'), - (672, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'w4W50Mqm', '8430784'), - (672, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'w4W50Mqm', '8430799'), - (672, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'w4W50Mqm', '8430800'), - (672, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'w4W50Mqm', '8430801'), - (672, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'w4W50Mqm', '8438709'), - (672, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'w4W50Mqm', '8457738'), - (672, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'w4W50Mqm', '8459566'), - (672, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'w4W50Mqm', '8459567'), - (672, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'w4W50Mqm', '8461032'), - (672, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'w4W50Mqm', '8477877'), - (672, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'w4W50Mqm', '8485688'), - (672, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'w4W50Mqm', '8490587'), - (672, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'w4W50Mqm', '8493552'), - (672, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'w4W50Mqm', '8493553'), - (672, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'w4W50Mqm', '8493554'), - (672, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'w4W50Mqm', '8493555'), - (672, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'w4W50Mqm', '8493556'), - (672, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'w4W50Mqm', '8493557'), - (672, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'w4W50Mqm', '8493558'), - (672, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'w4W50Mqm', '8493559'), - (672, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'w4W50Mqm', '8493560'), - (672, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'w4W50Mqm', '8493561'), - (672, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'w4W50Mqm', '8493572'), - (672, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'w4W50Mqm', '8540725'), - (672, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'w4W50Mqm', '8555421'), - (673, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd3GJVGGd', '6361713'), - (673, 2245, 'attending', '2023-09-26 19:44:09', '2025-12-17 19:46:45', 'd3GJVGGd', '6393703'), - (673, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd3GJVGGd', '6394631'), - (673, 2253, 'attending', '2023-09-28 16:06:03', '2025-12-17 19:46:45', 'd3GJVGGd', '6401811'), - (673, 2256, 'maybe', '2023-09-21 19:15:32', '2025-12-17 19:46:45', 'd3GJVGGd', '6404369'), - (673, 2263, 'maybe', '2023-10-02 01:42:52', '2025-12-17 19:46:45', 'd3GJVGGd', '6429351'), - (673, 2264, 'attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd3GJVGGd', '6431478'), - (673, 2267, 'maybe', '2023-10-02 01:42:32', '2025-12-17 19:46:45', 'd3GJVGGd', '6440034'), - (673, 2268, 'maybe', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd3GJVGGd', '6440863'), - (673, 2270, 'maybe', '2023-10-03 00:16:59', '2025-12-17 19:46:46', 'd3GJVGGd', '6443067'), - (673, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd3GJVGGd', '6445440'), - (673, 2273, 'attending', '2023-10-04 01:19:39', '2025-12-17 19:46:45', 'd3GJVGGd', '6448282'), - (673, 2274, 'attending', '2023-10-03 22:52:13', '2025-12-17 19:46:45', 'd3GJVGGd', '6448287'), - (673, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd3GJVGGd', '6453951'), - (673, 2277, 'not_attending', '2023-10-09 00:55:37', '2025-12-17 19:46:46', 'd3GJVGGd', '6455211'), - (673, 2279, 'attending', '2023-10-09 00:55:25', '2025-12-17 19:46:46', 'd3GJVGGd', '6455460'), - (673, 2280, 'maybe', '2023-10-09 00:54:44', '2025-12-17 19:46:46', 'd3GJVGGd', '6455470'), - (673, 2283, 'maybe', '2023-10-09 00:55:01', '2025-12-17 19:46:46', 'd3GJVGGd', '6455503'), - (673, 2284, 'not_attending', '2023-10-10 17:12:28', '2025-12-17 19:46:46', 'd3GJVGGd', '6460928'), - (673, 2285, 'attending', '2023-10-18 01:40:56', '2025-12-17 19:46:47', 'd3GJVGGd', '6460929'), - (673, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd3GJVGGd', '6461696'), - (673, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd3GJVGGd', '6462129'), - (673, 2290, 'attending', '2023-10-18 01:40:17', '2025-12-17 19:46:46', 'd3GJVGGd', '6462214'), - (673, 2291, 'not_attending', '2023-10-18 01:40:22', '2025-12-17 19:46:46', 'd3GJVGGd', '6462215'), - (673, 2292, 'maybe', '2023-10-23 02:01:24', '2025-12-17 19:46:47', 'd3GJVGGd', '6462216'), - (673, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd3GJVGGd', '6463218'), - (673, 2294, 'maybe', '2023-10-18 01:41:12', '2025-12-17 19:46:46', 'd3GJVGGd', '6465907'), - (673, 2296, 'maybe', '2023-10-18 01:40:49', '2025-12-17 19:46:47', 'd3GJVGGd', '6468393'), - (673, 2299, 'not_attending', '2023-10-18 01:40:27', '2025-12-17 19:46:46', 'd3GJVGGd', '6472181'), - (673, 2303, 'attending', '2023-10-23 02:01:04', '2025-12-17 19:46:47', 'd3GJVGGd', '6482691'), - (673, 2304, 'maybe', '2023-10-23 02:01:30', '2025-12-17 19:46:47', 'd3GJVGGd', '6482693'), - (673, 2306, 'attending', '2023-11-15 17:57:02', '2025-12-17 19:46:47', 'd3GJVGGd', '6484200'), - (673, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd3GJVGGd', '6484680'), - (673, 2310, 'not_attending', '2023-11-01 23:51:21', '2025-12-17 19:46:47', 'd3GJVGGd', '6487709'), - (673, 2311, 'not_attending', '2023-11-01 23:51:06', '2025-12-17 19:46:47', 'd3GJVGGd', '6487725'), - (673, 2316, 'maybe', '2023-11-01 23:51:33', '2025-12-17 19:46:48', 'd3GJVGGd', '6493668'), - (673, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd3GJVGGd', '6507741'), - (673, 2320, 'maybe', '2023-11-01 23:50:39', '2025-12-17 19:46:47', 'd3GJVGGd', '6508647'), - (673, 2322, 'attending', '2023-11-01 23:51:38', '2025-12-17 19:46:48', 'd3GJVGGd', '6514659'), - (673, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd3GJVGGd', '6514660'), - (673, 2324, 'not_attending', '2023-12-07 18:45:57', '2025-12-17 19:46:49', 'd3GJVGGd', '6514662'), - (673, 2325, 'attending', '2023-12-11 02:15:38', '2025-12-17 19:46:36', 'd3GJVGGd', '6514663'), - (673, 2327, 'maybe', '2023-11-01 23:50:50', '2025-12-17 19:46:47', 'd3GJVGGd', '6515494'), - (673, 2331, 'attending', '2023-11-05 15:49:43', '2025-12-17 19:46:47', 'd3GJVGGd', '6518640'), - (673, 2333, 'attending', '2023-11-05 15:49:26', '2025-12-17 19:46:47', 'd3GJVGGd', '6519103'), - (673, 2335, 'attending', '2023-11-11 00:04:13', '2025-12-17 19:46:47', 'd3GJVGGd', '6534890'), - (673, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd3GJVGGd', '6535681'), - (673, 2338, 'attending', '2023-11-21 21:07:34', '2025-12-17 19:46:48', 'd3GJVGGd', '6538868'), - (673, 2345, 'attending', '2023-11-27 17:43:21', '2025-12-17 19:46:48', 'd3GJVGGd', '6582414'), - (673, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd3GJVGGd', '6584747'), - (673, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd3GJVGGd', '6587097'), - (673, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd3GJVGGd', '6609022'), - (673, 2364, 'maybe', '2023-12-07 18:45:53', '2025-12-17 19:46:49', 'd3GJVGGd', '6613011'), - (673, 2368, 'attending', '2023-12-11 02:15:43', '2025-12-17 19:46:36', 'd3GJVGGd', '6621445'), - (673, 2370, 'attending', '2023-12-14 00:18:20', '2025-12-17 19:46:36', 'd3GJVGGd', '6623765'), - (673, 2372, 'maybe', '2023-12-17 17:41:58', '2025-12-17 19:46:36', 'd3GJVGGd', '6628243'), - (673, 2373, 'not_attending', '2024-01-01 17:05:02', '2025-12-17 19:46:38', 'd3GJVGGd', '6632678'), - (673, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd3GJVGGd', '6632757'), - (673, 2377, 'not_attending', '2024-01-01 17:04:47', '2025-12-17 19:46:37', 'd3GJVGGd', '6643448'), - (673, 2378, 'maybe', '2024-01-01 17:04:09', '2025-12-17 19:46:37', 'd3GJVGGd', '6644006'), - (673, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd3GJVGGd', '6644187'), - (673, 2381, 'maybe', '2024-01-01 17:04:40', '2025-12-17 19:46:37', 'd3GJVGGd', '6646398'), - (673, 2382, 'maybe', '2024-01-01 17:04:03', '2025-12-17 19:46:37', 'd3GJVGGd', '6646401'), - (673, 2384, 'maybe', '2024-01-02 15:39:09', '2025-12-17 19:46:37', 'd3GJVGGd', '6648022'), - (673, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd3GJVGGd', '6648951'), - (673, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd3GJVGGd', '6648952'), - (673, 2388, 'maybe', '2024-01-03 13:57:19', '2025-12-17 19:46:37', 'd3GJVGGd', '6649244'), - (673, 2389, 'not_attending', '2024-01-12 16:11:06', '2025-12-17 19:46:40', 'd3GJVGGd', '6651094'), - (673, 2391, 'attending', '2024-01-08 18:33:09', '2025-12-17 19:46:37', 'd3GJVGGd', '6654138'), - (673, 2396, 'maybe', '2024-01-12 16:07:43', '2025-12-17 19:46:38', 'd3GJVGGd', '6655401'), - (673, 2397, 'attending', '2024-01-08 18:32:49', '2025-12-17 19:46:37', 'd3GJVGGd', '6657379'), - (673, 2398, 'maybe', '2024-01-08 18:32:59', '2025-12-17 19:46:37', 'd3GJVGGd', '6657381'), - (673, 2399, 'maybe', '2024-01-12 16:11:30', '2025-12-17 19:46:38', 'd3GJVGGd', '6657583'), - (673, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd3GJVGGd', '6661585'), - (673, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd3GJVGGd', '6661588'), - (673, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd3GJVGGd', '6661589'), - (673, 2404, 'maybe', '2024-01-12 16:07:32', '2025-12-17 19:46:38', 'd3GJVGGd', '6666858'), - (673, 2405, 'attending', '2024-01-12 16:08:23', '2025-12-17 19:46:38', 'd3GJVGGd', '6667332'), - (673, 2406, 'attending', '2024-01-15 16:35:03', '2025-12-17 19:46:40', 'd3GJVGGd', '6692344'), - (673, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd3GJVGGd', '6699906'), - (673, 2408, 'attending', '2024-01-22 16:47:25', '2025-12-17 19:46:40', 'd3GJVGGd', '6699907'), - (673, 2409, 'not_attending', '2024-01-22 16:47:09', '2025-12-17 19:46:41', 'd3GJVGGd', '6699909'), - (673, 2410, 'not_attending', '2024-02-07 17:52:14', '2025-12-17 19:46:41', 'd3GJVGGd', '6699911'), - (673, 2411, 'attending', '2024-02-07 17:52:41', '2025-12-17 19:46:41', 'd3GJVGGd', '6699913'), - (673, 2412, 'maybe', '2024-02-19 21:05:55', '2025-12-17 19:46:43', 'd3GJVGGd', '6700717'), - (673, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd3GJVGGd', '6701109'), - (673, 2417, 'maybe', '2024-01-21 21:50:55', '2025-12-17 19:46:40', 'd3GJVGGd', '6701905'), - (673, 2420, 'maybe', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'd3GJVGGd', '6704561'), - (673, 2421, 'attending', '2024-01-22 16:47:33', '2025-12-17 19:46:40', 'd3GJVGGd', '6704598'), - (673, 2422, 'maybe', '2024-01-22 16:47:39', '2025-12-17 19:46:40', 'd3GJVGGd', '6704650'), - (673, 2423, 'maybe', '2024-01-22 16:47:57', '2025-12-17 19:46:40', 'd3GJVGGd', '6705141'), - (673, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd3GJVGGd', '6705219'), - (673, 2426, 'maybe', '2024-01-22 16:48:12', '2025-12-17 19:46:40', 'd3GJVGGd', '6705569'), - (673, 2427, 'maybe', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'd3GJVGGd', '6708410'), - (673, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd3GJVGGd', '6710153'), - (673, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd3GJVGGd', '6711552'), - (673, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd3GJVGGd', '6711553'), - (673, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd3GJVGGd', '6722688'), - (673, 2438, 'attending', '2024-02-07 17:52:00', '2025-12-17 19:46:41', 'd3GJVGGd', '6730201'), - (673, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd3GJVGGd', '6730620'), - (673, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd3GJVGGd', '6730642'), - (673, 2444, 'not_attending', '2024-02-07 17:52:10', '2025-12-17 19:46:41', 'd3GJVGGd', '6734367'), - (673, 2445, 'attending', '2024-02-10 17:38:15', '2025-12-17 19:46:41', 'd3GJVGGd', '6734368'), - (673, 2447, 'maybe', '2024-03-11 20:38:25', '2025-12-17 19:46:32', 'd3GJVGGd', '6734370'), - (673, 2452, 'attending', '2024-02-07 17:52:22', '2025-12-17 19:46:41', 'd3GJVGGd', '6740361'), - (673, 2453, 'attending', '2024-02-07 17:52:30', '2025-12-17 19:46:42', 'd3GJVGGd', '6740364'), - (673, 2456, 'not_attending', '2024-02-08 16:20:40', '2025-12-17 19:46:41', 'd3GJVGGd', '6742202'), - (673, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd3GJVGGd', '6743829'), - (673, 2468, 'maybe', '2024-02-25 16:00:31', '2025-12-17 19:46:43', 'd3GJVGGd', '7030380'), - (673, 2469, 'maybe', '2024-02-19 21:08:01', '2025-12-17 19:46:42', 'd3GJVGGd', '7030632'), - (673, 2471, 'attending', '2024-02-19 21:05:48', '2025-12-17 19:46:42', 'd3GJVGGd', '7032425'), - (673, 2472, 'attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd3GJVGGd', '7033677'), - (673, 2473, 'attending', '2024-02-25 16:00:23', '2025-12-17 19:46:43', 'd3GJVGGd', '7033724'), - (673, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd3GJVGGd', '7035415'), - (673, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd3GJVGGd', '7044715'), - (673, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd3GJVGGd', '7050318'), - (673, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd3GJVGGd', '7050319'), - (673, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd3GJVGGd', '7050322'), - (673, 2498, 'maybe', '2024-03-11 20:38:44', '2025-12-17 19:46:33', 'd3GJVGGd', '7057662'), - (673, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd3GJVGGd', '7057804'), - (673, 2500, 'attending', '2024-03-07 00:21:16', '2025-12-17 19:46:43', 'd3GJVGGd', '7058603'), - (673, 2502, 'not_attending', '2024-03-06 02:24:22', '2025-12-17 19:46:33', 'd3GJVGGd', '7061202'), - (673, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd3GJVGGd', '7072824'), - (673, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd3GJVGGd', '7074348'), - (673, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd3GJVGGd', '7074364'), - (673, 2534, 'attending', '2024-03-13 21:17:58', '2025-12-17 19:46:32', 'd3GJVGGd', '7076875'), - (673, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd3GJVGGd', '7089267'), - (673, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd3GJVGGd', '7098747'), - (673, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd3GJVGGd', '7113468'), - (673, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd3GJVGGd', '7114856'), - (673, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd3GJVGGd', '7114951'), - (673, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd3GJVGGd', '7114955'), - (673, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd3GJVGGd', '7114956'), - (673, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd3GJVGGd', '7114957'), - (673, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd3GJVGGd', '7153615'), - (673, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd3GJVGGd', '7159484'), - (673, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd3GJVGGd', '7178446'), - (673, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd3GJVGGd', '7220467'), - (673, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd3GJVGGd', '7240354'), - (673, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd3GJVGGd', '7251633'), - (673, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd3GJVGGd', '7302674'), - (673, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd3GJVGGd', '7324073'), - (673, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd3GJVGGd', '7324074'), - (673, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd3GJVGGd', '7324075'), - (673, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd3GJVGGd', '7324078'), - (673, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd3GJVGGd', '7324082'), - (673, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd3GJVGGd', '7331457'), - (673, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd3GJVGGd', '7363643'), - (673, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd3GJVGGd', '7368606'), - (673, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd3GJVGGd', '7397462'), - (673, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd3GJVGGd', '7424275'), - (673, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd3GJVGGd', '7424276'), - (673, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd3GJVGGd', '7432751'), - (673, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd3GJVGGd', '7432752'), - (673, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd3GJVGGd', '7432753'), - (673, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd3GJVGGd', '7432754'), - (673, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd3GJVGGd', '7432755'), - (673, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd3GJVGGd', '7432756'), - (673, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd3GJVGGd', '7432758'), - (673, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd3GJVGGd', '7432759'), - (673, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd3GJVGGd', '7433834'), - (673, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd3GJVGGd', '7470197'), - (673, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd3GJVGGd', '7685613'), - (673, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd3GJVGGd', '7688194'), - (673, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd3GJVGGd', '7688196'), - (673, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd3GJVGGd', '7688289'), - (674, 333, 'not_attending', '2020-10-06 18:42:20', '2025-12-17 19:47:52', 'NmLrDoZ4', '3199782'), - (674, 342, 'attending', '2020-09-29 13:15:40', '2025-12-17 19:47:52', 'NmLrDoZ4', '3204472'), - (674, 363, 'not_attending', '2020-09-27 21:34:32', '2025-12-17 19:47:52', 'NmLrDoZ4', '3217037'), - (674, 375, 'attending', '2020-10-02 14:18:58', '2025-12-17 19:47:52', 'NmLrDoZ4', '3222825'), - (674, 383, 'attending', '2020-09-28 00:01:56', '2025-12-17 19:47:52', 'NmLrDoZ4', '3227946'), - (674, 385, 'attending', '2020-09-29 13:16:00', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228698'), - (674, 386, 'attending', '2020-10-02 14:19:05', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228699'), - (674, 387, 'not_attending', '2020-10-17 17:41:46', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228700'), - (674, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228701'), - (674, 390, 'not_attending', '2020-10-04 15:39:55', '2025-12-17 19:47:52', 'NmLrDoZ4', '3231510'), - (674, 411, 'not_attending', '2020-10-11 14:58:35', '2025-12-17 19:47:52', 'NmLrDoZ4', '3236596'), - (674, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLrDoZ4', '3245751'), - (674, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'NmLrDoZ4', '3250232'), - (674, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'NmLrDoZ4', '3256168'), - (674, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLrDoZ4', '3263578'), - (674, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'NmLrDoZ4', '3266138'), - (674, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'NmLrDoZ4', '3276428'), - (674, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'NmLrDoZ4', '3281467'), - (674, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'NmLrDoZ4', '3281470'), - (674, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'NmLrDoZ4', '3281829'), - (674, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'NmLrDoZ4', '3285413'), - (674, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'NmLrDoZ4', '3285414'), - (674, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'NmLrDoZ4', '3297764'), - (674, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'NmLrDoZ4', '3313856'), - (674, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'NmLrDoZ4', '3314909'), - (674, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLrDoZ4', '6045684'), - (675, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOOeV88d', '6632757'), - (675, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOOeV88d', '6644187'), - (675, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOOeV88d', '6648951'), - (675, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOOeV88d', '6648952'), - (675, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dOOeV88d', '6651141'), - (675, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOOeV88d', '6655401'), - (675, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOOeV88d', '6661585'), - (675, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOOeV88d', '6661588'), - (675, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOOeV88d', '6661589'), - (675, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOOeV88d', '6699906'), - (675, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOOeV88d', '6699913'), - (675, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOOeV88d', '6701109'), - (675, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOOeV88d', '6705219'), - (675, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOOeV88d', '6710153'), - (675, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOOeV88d', '6711552'), - (675, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOOeV88d', '6711553'), - (675, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOOeV88d', '6722688'), - (675, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOOeV88d', '6730620'), - (675, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOOeV88d', '6730642'), - (675, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOOeV88d', '6740364'), - (675, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOOeV88d', '6743829'), - (675, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOOeV88d', '7030380'), - (675, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOOeV88d', '7033677'), - (675, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOOeV88d', '7035415'), - (675, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOOeV88d', '7044715'), - (675, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOOeV88d', '7050318'), - (675, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOOeV88d', '7050319'), - (675, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOOeV88d', '7050322'), - (675, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOOeV88d', '7057804'), - (675, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOOeV88d', '7072824'), - (675, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOOeV88d', '7074348'), - (675, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOOeV88d', '7089267'), - (675, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOOeV88d', '7098747'), - (675, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOOeV88d', '7113468'), - (675, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOOeV88d', '7114856'), - (675, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOOeV88d', '7114951'), - (675, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOOeV88d', '7114955'), - (675, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOOeV88d', '7114956'), - (675, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOOeV88d', '7153615'), - (675, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOOeV88d', '7159484'), - (675, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOOeV88d', '7178446'), - (676, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'mqEkvrjm', '5186585'), - (676, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mqEkvrjm', '5195095'), - (676, 1285, 'not_attending', '2022-03-21 15:41:48', '2025-12-17 19:47:25', 'mqEkvrjm', '5196763'), - (676, 1288, 'attending', '2022-04-21 16:52:22', '2025-12-17 19:47:25', 'mqEkvrjm', '5199460'), - (676, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mqEkvrjm', '5215989'), - (676, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mqEkvrjm', '5223686'), - (676, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mqEkvrjm', '5227432'), - (676, 1322, 'maybe', '2022-04-25 14:57:04', '2025-12-17 19:47:27', 'mqEkvrjm', '5238356'), - (676, 1327, 'not_attending', '2022-04-25 14:56:30', '2025-12-17 19:47:27', 'mqEkvrjm', '5238445'), - (676, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mqEkvrjm', '5247467'), - (676, 1350, 'not_attending', '2022-04-21 18:37:17', '2025-12-17 19:47:27', 'mqEkvrjm', '5249763'), - (676, 1351, 'not_attending', '2022-05-02 22:45:20', '2025-12-17 19:47:28', 'mqEkvrjm', '5251561'), - (676, 1352, 'not_attending', '2022-05-03 15:46:34', '2025-12-17 19:47:28', 'mqEkvrjm', '5251618'), - (676, 1353, 'attending', '2022-04-21 18:37:25', '2025-12-17 19:47:27', 'mqEkvrjm', '5251777'), - (676, 1362, 'attending', '2022-04-28 01:53:26', '2025-12-17 19:47:28', 'mqEkvrjm', '5260800'), - (676, 1364, 'not_attending', '2022-05-03 19:29:38', '2025-12-17 19:47:28', 'mqEkvrjm', '5261598'), - (676, 1368, 'not_attending', '2022-05-06 22:45:23', '2025-12-17 19:47:28', 'mqEkvrjm', '5262783'), - (676, 1371, 'attending', '2022-04-27 21:20:10', '2025-12-17 19:47:27', 'mqEkvrjm', '5263784'), - (676, 1372, 'attending', '2022-05-02 02:34:30', '2025-12-17 19:47:28', 'mqEkvrjm', '5264352'), - (676, 1374, 'maybe', '2022-05-03 15:46:51', '2025-12-17 19:47:28', 'mqEkvrjm', '5269930'), - (676, 1375, 'not_attending', '2022-05-03 15:46:19', '2025-12-17 19:47:28', 'mqEkvrjm', '5269932'), - (676, 1377, 'attending', '2022-05-13 22:05:04', '2025-12-17 19:47:28', 'mqEkvrjm', '5271447'), - (676, 1378, 'not_attending', '2022-05-14 20:46:27', '2025-12-17 19:47:29', 'mqEkvrjm', '5271448'), - (676, 1379, 'not_attending', '2022-05-21 19:58:51', '2025-12-17 19:47:30', 'mqEkvrjm', '5271449'), - (676, 1380, 'attending', '2022-05-28 21:16:53', '2025-12-17 19:47:30', 'mqEkvrjm', '5271450'), - (676, 1382, 'not_attending', '2022-05-09 21:53:41', '2025-12-17 19:47:28', 'mqEkvrjm', '5276350'), - (676, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mqEkvrjm', '5276469'), - (676, 1385, 'not_attending', '2022-05-11 22:41:33', '2025-12-17 19:47:28', 'mqEkvrjm', '5277822'), - (676, 1386, 'not_attending', '2022-05-06 22:45:29', '2025-12-17 19:47:28', 'mqEkvrjm', '5278159'), - (676, 1390, 'not_attending', '2022-05-09 11:55:51', '2025-12-17 19:47:28', 'mqEkvrjm', '5279509'), - (676, 1394, 'not_attending', '2022-05-27 11:19:35', '2025-12-17 19:47:30', 'mqEkvrjm', '5280667'), - (676, 1401, 'attending', '2022-05-15 19:13:52', '2025-12-17 19:47:29', 'mqEkvrjm', '5286295'), - (676, 1402, 'not_attending', '2022-05-23 14:47:28', '2025-12-17 19:47:30', 'mqEkvrjm', '5287977'), - (676, 1403, 'not_attending', '2022-05-20 13:48:02', '2025-12-17 19:47:29', 'mqEkvrjm', '5288052'), - (676, 1407, 'attending', '2022-05-31 12:37:33', '2025-12-17 19:47:30', 'mqEkvrjm', '5363695'), - (676, 1408, 'not_attending', '2022-05-20 13:47:55', '2025-12-17 19:47:29', 'mqEkvrjm', '5365960'), - (676, 1410, 'not_attending', '2022-05-19 18:04:41', '2025-12-17 19:47:29', 'mqEkvrjm', '5367530'), - (676, 1411, 'not_attending', '2022-05-19 22:15:27', '2025-12-17 19:47:29', 'mqEkvrjm', '5367531'), - (676, 1415, 'attending', '2022-06-03 19:27:10', '2025-12-17 19:47:30', 'mqEkvrjm', '5368973'), - (676, 1416, 'not_attending', '2022-05-28 14:47:41', '2025-12-17 19:47:30', 'mqEkvrjm', '5369628'), - (676, 1417, 'not_attending', '2022-05-23 14:47:32', '2025-12-17 19:47:30', 'mqEkvrjm', '5370465'), - (676, 1419, 'attending', '2022-06-04 13:42:46', '2025-12-17 19:47:30', 'mqEkvrjm', '5373081'), - (676, 1420, 'not_attending', '2022-05-27 20:45:17', '2025-12-17 19:47:30', 'mqEkvrjm', '5374882'), - (676, 1421, 'not_attending', '2022-05-30 14:14:52', '2025-12-17 19:47:30', 'mqEkvrjm', '5374885'), - (676, 1423, 'not_attending', '2022-06-15 15:46:17', '2025-12-17 19:47:17', 'mqEkvrjm', '5375727'), - (676, 1424, 'not_attending', '2022-05-26 16:32:29', '2025-12-17 19:47:30', 'mqEkvrjm', '5375772'), - (676, 1425, 'not_attending', '2022-05-26 16:32:26', '2025-12-17 19:47:30', 'mqEkvrjm', '5375861'), - (676, 1427, 'attending', '2022-05-24 12:32:51', '2025-12-17 19:47:30', 'mqEkvrjm', '5376074'), - (676, 1428, 'not_attending', '2022-06-10 23:13:05', '2025-12-17 19:47:30', 'mqEkvrjm', '5378247'), - (676, 1429, 'attending', '2022-05-30 14:14:50', '2025-12-17 19:47:30', 'mqEkvrjm', '5388761'), - (676, 1431, 'attending', '2022-06-11 21:45:41', '2025-12-17 19:47:30', 'mqEkvrjm', '5389605'), - (676, 1433, 'attending', '2022-06-03 14:40:10', '2025-12-17 19:47:30', 'mqEkvrjm', '5391667'), - (676, 1434, 'not_attending', '2022-05-31 21:53:43', '2025-12-17 19:47:30', 'mqEkvrjm', '5393861'), - (676, 1435, 'not_attending', '2022-06-01 21:16:08', '2025-12-17 19:47:30', 'mqEkvrjm', '5394015'), - (676, 1436, 'not_attending', '2022-06-01 21:16:12', '2025-12-17 19:47:30', 'mqEkvrjm', '5394292'), - (676, 1437, 'attending', '2022-06-01 17:38:17', '2025-12-17 19:47:30', 'mqEkvrjm', '5394493'), - (676, 1438, 'attending', '2022-06-01 21:16:03', '2025-12-17 19:47:30', 'mqEkvrjm', '5395032'), - (676, 1441, 'not_attending', '2022-06-05 22:45:20', '2025-12-17 19:47:30', 'mqEkvrjm', '5397171'), - (676, 1442, 'not_attending', '2022-06-18 17:44:51', '2025-12-17 19:47:17', 'mqEkvrjm', '5397265'), - (676, 1447, 'not_attending', '2022-06-08 22:17:03', '2025-12-17 19:47:30', 'mqEkvrjm', '5401089'), - (676, 1451, 'not_attending', '2022-06-17 17:42:49', '2025-12-17 19:47:17', 'mqEkvrjm', '5403967'), - (676, 1454, 'not_attending', '2022-06-13 01:15:29', '2025-12-17 19:47:31', 'mqEkvrjm', '5404771'), - (676, 1455, 'not_attending', '2022-06-13 17:29:45', '2025-12-17 19:47:31', 'mqEkvrjm', '5404772'), - (676, 1458, 'not_attending', '2022-06-19 22:50:49', '2025-12-17 19:47:17', 'mqEkvrjm', '5404786'), - (676, 1461, 'maybe', '2022-06-14 12:27:39', '2025-12-17 19:47:31', 'mqEkvrjm', '5405149'), - (676, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mqEkvrjm', '5405203'), - (676, 1469, 'not_attending', '2022-06-20 22:45:31', '2025-12-17 19:47:17', 'mqEkvrjm', '5406838'), - (676, 1470, 'not_attending', '2022-06-18 17:45:01', '2025-12-17 19:47:17', 'mqEkvrjm', '5407053'), - (676, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mqEkvrjm', '5408794'), - (676, 1480, 'not_attending', '2022-06-25 21:13:28', '2025-12-17 19:47:19', 'mqEkvrjm', '5411699'), - (676, 1482, 'attending', '2022-06-23 18:18:57', '2025-12-17 19:47:19', 'mqEkvrjm', '5412550'), - (676, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mqEkvrjm', '5415046'), - (676, 1489, 'not_attending', '2022-07-04 14:17:11', '2025-12-17 19:47:19', 'mqEkvrjm', '5420155'), - (676, 1491, 'not_attending', '2022-07-02 01:21:11', '2025-12-17 19:47:19', 'mqEkvrjm', '5420158'), - (676, 1492, 'not_attending', '2022-07-04 14:17:24', '2025-12-17 19:47:19', 'mqEkvrjm', '5420175'), - (676, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mqEkvrjm', '5422086'), - (676, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mqEkvrjm', '5422406'), - (676, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mqEkvrjm', '5424565'), - (676, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mqEkvrjm', '5426882'), - (676, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mqEkvrjm', '5427083'), - (676, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mqEkvrjm', '5441125'), - (676, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mqEkvrjm', '5441126'), - (676, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mqEkvrjm', '5441128'), - (676, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mqEkvrjm', '5441131'), - (676, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mqEkvrjm', '5441132'), - (676, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mqEkvrjm', '5446643'), - (676, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mqEkvrjm', '5453325'), - (676, 1541, 'maybe', '2022-07-24 03:57:46', '2025-12-17 19:47:20', 'mqEkvrjm', '5453542'), - (676, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mqEkvrjm', '5454516'), - (676, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mqEkvrjm', '5454605'), - (676, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mqEkvrjm', '5455037'), - (676, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mqEkvrjm', '5461278'), - (676, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mqEkvrjm', '5469480'), - (676, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mqEkvrjm', '5471073'), - (676, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mqEkvrjm', '5474663'), - (676, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mqEkvrjm', '5482022'), - (676, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mqEkvrjm', '5482793'), - (676, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mqEkvrjm', '5488912'), - (676, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mqEkvrjm', '5492192'), - (676, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mqEkvrjm', '5493139'), - (676, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mqEkvrjm', '5493200'), - (676, 1595, 'maybe', '2022-08-12 03:33:17', '2025-12-17 19:47:22', 'mqEkvrjm', '5495736'), - (676, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mqEkvrjm', '5502188'), - (676, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mqEkvrjm', '5505059'), - (676, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mqEkvrjm', '5509055'), - (676, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mqEkvrjm', '5512862'), - (676, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mqEkvrjm', '5513985'), - (676, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mqEkvrjm', '5519981'), - (676, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mqEkvrjm', '5522550'), - (676, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mqEkvrjm', '5534683'), - (676, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mqEkvrjm', '5537735'), - (676, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mqEkvrjm', '5540859'), - (676, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mqEkvrjm', '5546619'), - (676, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mqEkvrjm', '5555245'), - (676, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mqEkvrjm', '5557747'), - (676, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mqEkvrjm', '5560255'), - (676, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mqEkvrjm', '5562906'), - (676, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mqEkvrjm', '5600604'), - (676, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mqEkvrjm', '5605544'), - (676, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'mqEkvrjm', '5606737'), - (676, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mqEkvrjm', '5630960'), - (676, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mqEkvrjm', '5630961'), - (676, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mqEkvrjm', '5630962'), - (676, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mqEkvrjm', '5630966'), - (676, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mqEkvrjm', '5630967'), - (676, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mqEkvrjm', '5630968'), - (676, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mqEkvrjm', '5635406'), - (676, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mqEkvrjm', '5638765'), - (676, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mqEkvrjm', '5640097'), - (676, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mqEkvrjm', '5640843'), - (676, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mqEkvrjm', '5641521'), - (676, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mqEkvrjm', '5642818'), - (676, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mqEkvrjm', '5652395'), - (676, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mqEkvrjm', '5670445'), - (676, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mqEkvrjm', '5671637'), - (676, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mqEkvrjm', '5672329'), - (676, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mqEkvrjm', '5674057'), - (676, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mqEkvrjm', '5674060'), - (676, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mqEkvrjm', '5677461'), - (676, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mqEkvrjm', '5698046'), - (676, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mqEkvrjm', '5699760'), - (676, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mqEkvrjm', '5741601'), - (676, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mqEkvrjm', '5763458'), - (676, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mqEkvrjm', '5774172'), - (676, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mqEkvrjm', '5818247'), - (676, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mqEkvrjm', '5819471'), - (676, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mqEkvrjm', '5827739'), - (676, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mqEkvrjm', '5844306'), - (676, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mqEkvrjm', '5850159'), - (676, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mqEkvrjm', '5858999'), - (676, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mqEkvrjm', '5871984'), - (676, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mqEkvrjm', '5876354'), - (676, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mqEkvrjm', '5880939'), - (676, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mqEkvrjm', '5880940'), - (676, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mqEkvrjm', '5880942'), - (676, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mqEkvrjm', '5880943'), - (676, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mqEkvrjm', '5887890'), - (676, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mqEkvrjm', '5888598'), - (676, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mqEkvrjm', '5893260'), - (676, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mqEkvrjm', '5899826'), - (676, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mqEkvrjm', '5900199'), - (676, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mqEkvrjm', '5900200'), - (676, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mqEkvrjm', '5900202'), - (676, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mqEkvrjm', '5900203'), - (676, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mqEkvrjm', '5901108'), - (676, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mqEkvrjm', '5901126'), - (676, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mqEkvrjm', '5909655'), - (676, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mqEkvrjm', '5910522'), - (676, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mqEkvrjm', '5910526'), - (676, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mqEkvrjm', '5910528'), - (676, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mqEkvrjm', '5916219'), - (676, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mqEkvrjm', '5936234'), - (676, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mqEkvrjm', '5958351'), - (676, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mqEkvrjm', '5959751'), - (676, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mqEkvrjm', '5959755'), - (676, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mqEkvrjm', '5960055'), - (676, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mqEkvrjm', '5961684'), - (676, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mqEkvrjm', '5962132'), - (676, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mqEkvrjm', '5962133'), - (676, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mqEkvrjm', '5962134'), - (676, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mqEkvrjm', '5962317'), - (676, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mqEkvrjm', '5962318'), - (676, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mqEkvrjm', '5965933'), - (676, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mqEkvrjm', '5967014'), - (676, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mqEkvrjm', '5972815'), - (676, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mqEkvrjm', '5974016'), - (676, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mqEkvrjm', '5981515'), - (676, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mqEkvrjm', '5993516'), - (676, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mqEkvrjm', '5998939'), - (676, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mqEkvrjm', '6028191'), - (676, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mqEkvrjm', '6040066'), - (676, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mqEkvrjm', '6042717'), - (676, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mqEkvrjm', '6044838'), - (676, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mqEkvrjm', '6044839'), - (676, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mqEkvrjm', '6045684'), - (676, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mqEkvrjm', '6050104'), - (676, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mqEkvrjm', '6053195'), - (676, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mqEkvrjm', '6053198'), - (676, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mqEkvrjm', '6056085'), - (676, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mqEkvrjm', '6056916'), - (676, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mqEkvrjm', '6059290'), - (676, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mqEkvrjm', '6060328'), - (676, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mqEkvrjm', '6061037'), - (676, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mqEkvrjm', '6061039'), - (676, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mqEkvrjm', '6067245'), - (676, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mqEkvrjm', '6068094'), - (676, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mqEkvrjm', '6068252'), - (676, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mqEkvrjm', '6068253'), - (676, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mqEkvrjm', '6068254'), - (676, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mqEkvrjm', '6068280'), - (676, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mqEkvrjm', '6069093'), - (676, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mqEkvrjm', '6072528'), - (676, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mqEkvrjm', '6079840'), - (676, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mqEkvrjm', '6083398'), - (676, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mqEkvrjm', '6093504'), - (676, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mqEkvrjm', '6097414'), - (676, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mqEkvrjm', '6097442'), - (676, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mqEkvrjm', '6097684'), - (676, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mqEkvrjm', '6098762'), - (676, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mqEkvrjm', '6101362'), - (676, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mqEkvrjm', '6103752'), - (676, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mqEkvrjm', '6107314'), - (677, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'lAepJYPm', '4210314'), - (677, 901, 'not_attending', '2021-07-31 16:26:33', '2025-12-17 19:47:40', 'lAepJYPm', '4240317'), - (677, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'lAepJYPm', '4240318'), - (677, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'lAepJYPm', '4240320'), - (677, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'lAepJYPm', '4302093'), - (677, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'lAepJYPm', '4304151'), - (677, 947, 'not_attending', '2021-08-04 05:12:06', '2025-12-17 19:47:41', 'lAepJYPm', '4315713'), - (677, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'lAepJYPm', '4315714'), - (677, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'lAepJYPm', '4315726'), - (677, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'lAepJYPm', '4356801'), - (677, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'lAepJYPm', '4366186'), - (677, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'lAepJYPm', '4366187'), - (677, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'lAepJYPm', '4420735'), - (677, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'lAepJYPm', '4420738'), - (677, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'lAepJYPm', '4420739'), - (677, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'lAepJYPm', '4420741'), - (677, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'lAepJYPm', '4420744'), - (677, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'lAepJYPm', '4420747'), - (677, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'lAepJYPm', '4420748'), - (677, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'lAepJYPm', '4420749'), - (677, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'lAepJYPm', '4461883'), - (677, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'lAepJYPm', '4508342'), - (677, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'lAepJYPm', '4568602'), - (677, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'lAepJYPm', '4572153'), - (677, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'lAepJYPm', '4585962'), - (677, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'lAepJYPm', '4596356'), - (677, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'lAepJYPm', '4598860'), - (677, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'lAepJYPm', '4598861'), - (677, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'lAepJYPm', '4602797'), - (677, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'lAepJYPm', '4637896'), - (677, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'lAepJYPm', '4642994'), - (677, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'lAepJYPm', '4642995'), - (677, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'lAepJYPm', '4642996'), - (677, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'lAepJYPm', '4642997'), - (677, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'lAepJYPm', '4645687'), - (677, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'lAepJYPm', '4645698'), - (677, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'lAepJYPm', '4645704'), - (677, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'lAepJYPm', '4645705'), - (677, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'lAepJYPm', '4668385'), - (677, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAepJYPm', '6045684'), - (678, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'dBGPpv1m', '7738518'), - (678, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBGPpv1m', '7750636'), - (678, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBGPpv1m', '7796540'), - (678, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBGPpv1m', '7796541'), - (678, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBGPpv1m', '7796542'), - (678, 2967, 'not_attending', '2025-01-07 14:57:05', '2025-12-17 19:46:22', 'dBGPpv1m', '7797181'), - (678, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dBGPpv1m', '7825913'), - (678, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dBGPpv1m', '7826209'), - (678, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dBGPpv1m', '7834742'), - (678, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dBGPpv1m', '7842108'), - (678, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dBGPpv1m', '7842902'), - (678, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dBGPpv1m', '7842903'), - (678, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dBGPpv1m', '7842904'), - (678, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dBGPpv1m', '7842905'), - (678, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'dBGPpv1m', '7844784'), - (678, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dBGPpv1m', '7855719'), - (678, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dBGPpv1m', '7860683'), - (678, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dBGPpv1m', '7860684'), - (678, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dBGPpv1m', '7866095'), - (678, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dBGPpv1m', '7869170'), - (678, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dBGPpv1m', '7869201'), - (678, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'dBGPpv1m', '7872088'), - (679, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', '4WPbQKpd', '4210314'), - (679, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '4WPbQKpd', '4240320'), - (679, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4WPbQKpd', '4304151'), - (679, 948, 'attending', '2021-08-10 23:16:19', '2025-12-17 19:47:41', '4WPbQKpd', '4315714'), - (679, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', '4WPbQKpd', '4315726'), - (679, 951, 'attending', '2021-08-19 21:47:57', '2025-12-17 19:47:43', '4WPbQKpd', '4315731'), - (679, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4WPbQKpd', '4356801'), - (679, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '4WPbQKpd', '4366186'), - (679, 974, 'attending', '2021-08-28 20:56:17', '2025-12-17 19:47:42', '4WPbQKpd', '4366187'), - (679, 983, 'attending', '2021-08-20 20:10:56', '2025-12-17 19:47:42', '4WPbQKpd', '4390051'), - (679, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4WPbQKpd', '4402823'), - (679, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4WPbQKpd', '4420735'), - (679, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4WPbQKpd', '4420738'), - (679, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4WPbQKpd', '4420739'), - (679, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4WPbQKpd', '4420741'), - (679, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4WPbQKpd', '4420744'), - (679, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4WPbQKpd', '4420747'), - (679, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4WPbQKpd', '4420748'), - (679, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4WPbQKpd', '4420749'), - (679, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4WPbQKpd', '4461883'), - (679, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WPbQKpd', '6045684'), - (680, 604, 'attending', '2021-02-27 18:27:35', '2025-12-17 19:47:50', 'o4PKzewA', '3470305'), - (680, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'o4PKzewA', '3517815'), - (680, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'o4PKzewA', '3517816'), - (680, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'o4PKzewA', '3523941'), - (680, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'o4PKzewA', '3533850'), - (680, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'o4PKzewA', '3536632'), - (680, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'o4PKzewA', '3536656'), - (680, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'o4PKzewA', '3539916'), - (680, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'o4PKzewA', '3539917'), - (680, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'o4PKzewA', '3539918'), - (680, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'o4PKzewA', '3539919'), - (680, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'o4PKzewA', '3539920'), - (680, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'o4PKzewA', '3539921'), - (680, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'o4PKzewA', '3539922'), - (680, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'o4PKzewA', '3539923'), - (680, 649, 'maybe', '2021-03-19 13:28:46', '2025-12-17 19:47:51', 'o4PKzewA', '3539927'), - (680, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'o4PKzewA', '3582734'), - (680, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'o4PKzewA', '3583262'), - (680, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'o4PKzewA', '3619523'), - (680, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'o4PKzewA', '3661369'), - (680, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'o4PKzewA', '3674262'), - (680, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'o4PKzewA', '3677402'), - (680, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PKzewA', '6045684'), - (681, 1281, 'maybe', '2022-04-09 19:07:13', '2025-12-17 19:47:27', 'd3Yly1gA', '5190437'), - (681, 1284, 'not_attending', '2022-04-16 19:38:38', '2025-12-17 19:47:27', 'd3Yly1gA', '5195095'), - (681, 1306, 'attending', '2022-04-04 03:35:18', '2025-12-17 19:47:26', 'd3Yly1gA', '5223682'), - (681, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd3Yly1gA', '5223686'), - (681, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd3Yly1gA', '5227432'), - (681, 1316, 'attending', '2022-04-11 22:01:56', '2025-12-17 19:47:27', 'd3Yly1gA', '5237536'), - (681, 1318, 'attending', '2022-04-11 18:20:17', '2025-12-17 19:47:27', 'd3Yly1gA', '5238343'), - (681, 1319, 'not_attending', '2022-04-24 20:48:07', '2025-12-17 19:47:27', 'd3Yly1gA', '5238353'), - (681, 1321, 'attending', '2022-04-11 21:53:46', '2025-12-17 19:47:27', 'd3Yly1gA', '5238355'), - (681, 1322, 'not_attending', '2022-04-26 20:44:01', '2025-12-17 19:47:27', 'd3Yly1gA', '5238356'), - (681, 1324, 'not_attending', '2022-04-27 07:35:47', '2025-12-17 19:47:27', 'd3Yly1gA', '5238360'), - (681, 1327, 'not_attending', '2022-04-25 07:37:25', '2025-12-17 19:47:27', 'd3Yly1gA', '5238445'), - (681, 1346, 'attending', '2022-04-22 07:37:07', '2025-12-17 19:47:27', 'd3Yly1gA', '5247467'), - (681, 1351, 'not_attending', '2022-05-03 00:14:11', '2025-12-17 19:47:28', 'd3Yly1gA', '5251561'), - (681, 1359, 'not_attending', '2022-05-03 09:17:23', '2025-12-17 19:47:28', 'd3Yly1gA', '5258360'), - (681, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd3Yly1gA', '5260800'), - (681, 1364, 'attending', '2022-04-26 09:07:07', '2025-12-17 19:47:28', 'd3Yly1gA', '5261598'), - (681, 1369, 'not_attending', '2022-05-10 16:45:17', '2025-12-17 19:47:28', 'd3Yly1gA', '5262809'), - (681, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd3Yly1gA', '5269930'), - (681, 1378, 'not_attending', '2022-05-24 23:57:25', '2025-12-17 19:47:29', 'd3Yly1gA', '5271448'), - (681, 1379, 'maybe', '2022-05-20 20:48:00', '2025-12-17 19:47:30', 'd3Yly1gA', '5271449'), - (681, 1380, 'maybe', '2022-05-28 20:06:44', '2025-12-17 19:47:30', 'd3Yly1gA', '5271450'), - (681, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd3Yly1gA', '5276469'), - (681, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd3Yly1gA', '5278159'), - (681, 1399, 'not_attending', '2022-05-08 20:02:15', '2025-12-17 19:47:28', 'd3Yly1gA', '5281796'), - (681, 1404, 'not_attending', '2022-05-17 09:06:14', '2025-12-17 19:47:29', 'd3Yly1gA', '5288114'), - (681, 1405, 'attending', '2022-05-12 21:39:29', '2025-12-17 19:47:29', 'd3Yly1gA', '5288115'), - (681, 1407, 'attending', '2022-05-16 20:51:13', '2025-12-17 19:47:30', 'd3Yly1gA', '5363695'), - (681, 1408, 'not_attending', '2022-05-19 07:48:36', '2025-12-17 19:47:29', 'd3Yly1gA', '5365960'), - (681, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd3Yly1gA', '5368973'), - (681, 1420, 'attending', '2022-05-24 05:58:53', '2025-12-17 19:47:30', 'd3Yly1gA', '5374882'), - (681, 1422, 'attending', '2022-05-24 05:59:01', '2025-12-17 19:47:30', 'd3Yly1gA', '5375603'), - (681, 1426, 'attending', '2022-05-24 05:58:32', '2025-12-17 19:47:30', 'd3Yly1gA', '5375873'), - (681, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd3Yly1gA', '5378247'), - (681, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd3Yly1gA', '5389605'), - (681, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd3Yly1gA', '5397265'), - (681, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd3Yly1gA', '5403967'), - (681, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd3Yly1gA', '5404786'), - (681, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd3Yly1gA', '5405203'), - (681, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd3Yly1gA', '5411699'), - (681, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd3Yly1gA', '5412550'), - (681, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd3Yly1gA', '5415046'), - (681, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd3Yly1gA', '5422086'), - (681, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd3Yly1gA', '5422406'), - (681, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd3Yly1gA', '5424565'), - (681, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd3Yly1gA', '5426882'), - (681, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd3Yly1gA', '5427083'), - (681, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd3Yly1gA', '5441125'), - (681, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd3Yly1gA', '5441126'), - (681, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd3Yly1gA', '5441128'), - (681, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd3Yly1gA', '5441131'), - (681, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd3Yly1gA', '5441132'), - (681, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd3Yly1gA', '5446643'), - (681, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd3Yly1gA', '5453325'), - (681, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd3Yly1gA', '5454516'), - (681, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd3Yly1gA', '5454605'), - (681, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd3Yly1gA', '5455037'), - (681, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd3Yly1gA', '5461278'), - (681, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd3Yly1gA', '5469480'), - (681, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd3Yly1gA', '5471073'), - (681, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd3Yly1gA', '5474663'), - (681, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd3Yly1gA', '5482022'), - (681, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd3Yly1gA', '5482793'), - (681, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd3Yly1gA', '5488912'), - (681, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd3Yly1gA', '5492192'), - (681, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd3Yly1gA', '5493139'), - (681, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd3Yly1gA', '5493200'), - (681, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd3Yly1gA', '5502188'), - (681, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd3Yly1gA', '5505059'), - (681, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd3Yly1gA', '5509055'), - (681, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd3Yly1gA', '5512862'), - (681, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd3Yly1gA', '5513985'), - (681, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd3Yly1gA', '5519981'), - (681, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd3Yly1gA', '5522550'), - (681, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd3Yly1gA', '5534683'), - (681, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd3Yly1gA', '5546619'), - (681, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd3Yly1gA', '5555245'), - (681, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd3Yly1gA', '5557747'), - (681, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3Yly1gA', '6045684'), - (682, 1118, 'attending', '2021-12-14 08:26:07', '2025-12-17 19:47:38', '40kyrOyA', '4642996'), - (682, 1124, 'attending', '2021-12-12 20:25:49', '2025-12-17 19:47:38', '40kyrOyA', '4644025'), - (682, 1131, 'attending', '2021-12-17 12:47:58', '2025-12-17 19:47:31', '40kyrOyA', '4658825'), - (682, 1156, 'not_attending', '2021-12-22 00:26:01', '2025-12-17 19:47:31', '40kyrOyA', '4715207'), - (682, 1157, 'attending', '2021-12-18 21:35:43', '2025-12-17 19:47:31', '40kyrOyA', '4715208'), - (682, 1174, 'attending', '2022-01-15 02:12:13', '2025-12-17 19:47:31', '40kyrOyA', '4736496'), - (682, 1175, 'not_attending', '2022-01-20 02:30:28', '2025-12-17 19:47:32', '40kyrOyA', '4736497'), - (682, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '40kyrOyA', '4736499'), - (682, 1178, 'not_attending', '2022-01-29 22:25:33', '2025-12-17 19:47:32', '40kyrOyA', '4736500'), - (682, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '40kyrOyA', '4736503'), - (682, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '40kyrOyA', '4736504'), - (682, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '40kyrOyA', '4746789'), - (682, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '40kyrOyA', '4753929'), - (682, 1198, 'not_attending', '2022-01-24 14:36:27', '2025-12-17 19:47:32', '40kyrOyA', '4766801'), - (682, 1199, 'not_attending', '2022-01-24 14:36:29', '2025-12-17 19:47:32', '40kyrOyA', '4766802'), - (682, 1208, 'attending', '2022-01-24 14:36:36', '2025-12-17 19:47:32', '40kyrOyA', '4774419'), - (682, 1220, 'not_attending', '2022-01-28 21:35:17', '2025-12-17 19:47:32', '40kyrOyA', '4790257'), - (682, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '40kyrOyA', '5038850'), - (682, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '40kyrOyA', '5045826'), - (682, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '40kyrOyA', '5132533'), - (682, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '40kyrOyA', '5186582'), - (682, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '40kyrOyA', '5186583'), - (682, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '40kyrOyA', '5186585'), - (682, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '40kyrOyA', '5190437'), - (682, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '40kyrOyA', '5195095'), - (682, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '40kyrOyA', '5215989'), - (682, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '40kyrOyA', '5223686'), - (682, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '40kyrOyA', '5227432'), - (682, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '40kyrOyA', '5247467'), - (682, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '40kyrOyA', '5260800'), - (682, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '40kyrOyA', '5269930'), - (682, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '40kyrOyA', '5271448'), - (682, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '40kyrOyA', '5271449'), - (682, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '40kyrOyA', '5276469'), - (682, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '40kyrOyA', '5278159'), - (682, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '40kyrOyA', '5363695'), - (682, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '40kyrOyA', '5365960'), - (682, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '40kyrOyA', '5368973'), - (682, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '40kyrOyA', '5378247'), - (682, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '40kyrOyA', '5389605'), - (682, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '40kyrOyA', '5397265'), - (682, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '40kyrOyA', '5403967'), - (682, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '40kyrOyA', '5404786'), - (682, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '40kyrOyA', '5405203'), - (682, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '40kyrOyA', '5408794'), - (682, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '40kyrOyA', '5411699'), - (682, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '40kyrOyA', '5412550'), - (682, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '40kyrOyA', '5415046'), - (682, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '40kyrOyA', '5422086'), - (682, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '40kyrOyA', '5422406'), - (682, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '40kyrOyA', '5424565'), - (682, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '40kyrOyA', '5426882'), - (682, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '40kyrOyA', '5427083'), - (682, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '40kyrOyA', '5441125'), - (682, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '40kyrOyA', '5441126'), - (682, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '40kyrOyA', '5441128'), - (682, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '40kyrOyA', '5446643'), - (682, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '40kyrOyA', '5453325'), - (682, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '40kyrOyA', '5454516'), - (682, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '40kyrOyA', '5454605'), - (682, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '40kyrOyA', '5455037'), - (682, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '40kyrOyA', '5461278'), - (682, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '40kyrOyA', '5469480'), - (682, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '40kyrOyA', '5471073'), - (682, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '40kyrOyA', '5474663'), - (682, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '40kyrOyA', '5482022'), - (682, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '40kyrOyA', '5482793'), - (682, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '40kyrOyA', '5488912'), - (682, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '40kyrOyA', '5492192'), - (682, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '40kyrOyA', '5493139'), - (682, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '40kyrOyA', '5493200'), - (682, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '40kyrOyA', '5502188'), - (682, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '40kyrOyA', '5512862'), - (682, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '40kyrOyA', '5513985'), - (682, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', '40kyrOyA', '5519981'), - (682, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '40kyrOyA', '5522550'), - (682, 1679, 'maybe', '2022-10-02 16:03:07', '2025-12-17 19:47:12', '40kyrOyA', '5601099'), - (682, 1707, 'attending', '2022-10-02 16:26:02', '2025-12-17 19:47:12', '40kyrOyA', '5613104'), - (682, 1719, 'attending', '2022-10-08 16:07:43', '2025-12-17 19:47:12', '40kyrOyA', '5630958'), - (682, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '40kyrOyA', '5630960'), - (682, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '40kyrOyA', '5630961'), - (682, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '40kyrOyA', '5630962'), - (682, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '40kyrOyA', '5630966'), - (682, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '40kyrOyA', '5630967'), - (682, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '40kyrOyA', '5630968'), - (682, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '40kyrOyA', '5635406'), - (682, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '40kyrOyA', '5638765'), - (682, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '40kyrOyA', '5640097'), - (682, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '40kyrOyA', '5640843'), - (682, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '40kyrOyA', '5641521'), - (682, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '40kyrOyA', '5642818'), - (682, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '40kyrOyA', '5652395'), - (682, 1761, 'not_attending', '2022-11-17 17:24:16', '2025-12-17 19:47:16', '40kyrOyA', '5670434'), - (682, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '40kyrOyA', '5670445'), - (682, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '40kyrOyA', '5671637'), - (682, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '40kyrOyA', '5672329'), - (682, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '40kyrOyA', '5674057'), - (682, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '40kyrOyA', '5674060'), - (682, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '40kyrOyA', '5677461'), - (682, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '40kyrOyA', '5698046'), - (682, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '40kyrOyA', '5699760'), - (682, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '40kyrOyA', '5741601'), - (682, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '40kyrOyA', '5763458'), - (682, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '40kyrOyA', '5774172'), - (682, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '40kyrOyA', '5818247'), - (682, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '40kyrOyA', '5819471'), - (682, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '40kyrOyA', '5827739'), - (682, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '40kyrOyA', '5844306'), - (682, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '40kyrOyA', '5850159'), - (682, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '40kyrOyA', '5858999'), - (682, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '40kyrOyA', '5871984'), - (682, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '40kyrOyA', '5876354'), - (682, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '40kyrOyA', '5880939'), - (682, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '40kyrOyA', '5880940'), - (682, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '40kyrOyA', '5880942'), - (682, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '40kyrOyA', '5880943'), - (682, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '40kyrOyA', '5887890'), - (682, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '40kyrOyA', '5888598'), - (682, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '40kyrOyA', '5893260'), - (682, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '40kyrOyA', '5899826'), - (682, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '40kyrOyA', '5900199'), - (682, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '40kyrOyA', '5900200'), - (682, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '40kyrOyA', '5900202'), - (682, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '40kyrOyA', '5900203'), - (682, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '40kyrOyA', '5901108'), - (682, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '40kyrOyA', '5901126'), - (682, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '40kyrOyA', '5909655'), - (682, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '40kyrOyA', '5910522'), - (682, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '40kyrOyA', '5910526'), - (682, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '40kyrOyA', '5910528'), - (682, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '40kyrOyA', '5916219'), - (682, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '40kyrOyA', '5936234'), - (682, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '40kyrOyA', '5958351'), - (682, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '40kyrOyA', '5959751'), - (682, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '40kyrOyA', '5959755'), - (682, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '40kyrOyA', '5960055'), - (682, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '40kyrOyA', '5961684'), - (682, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '40kyrOyA', '5962132'), - (682, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '40kyrOyA', '5962133'), - (682, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '40kyrOyA', '5962134'), - (682, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '40kyrOyA', '5962317'), - (682, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '40kyrOyA', '5962318'), - (682, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '40kyrOyA', '5965933'), - (682, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '40kyrOyA', '5967014'), - (682, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '40kyrOyA', '5972815'), - (682, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '40kyrOyA', '5974016'), - (682, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '40kyrOyA', '5981515'), - (682, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '40kyrOyA', '5993516'), - (682, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '40kyrOyA', '5998939'), - (682, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '40kyrOyA', '6028191'), - (682, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '40kyrOyA', '6040066'), - (682, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '40kyrOyA', '6042717'), - (682, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '40kyrOyA', '6044838'), - (682, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '40kyrOyA', '6044839'), - (682, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '40kyrOyA', '6045684'), - (682, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '40kyrOyA', '6050104'), - (682, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '40kyrOyA', '6053195'), - (682, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '40kyrOyA', '6053198'), - (682, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '40kyrOyA', '6056085'), - (682, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '40kyrOyA', '6056916'), - (682, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '40kyrOyA', '6059290'), - (682, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '40kyrOyA', '6060328'), - (682, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '40kyrOyA', '6061037'), - (682, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '40kyrOyA', '6061039'), - (682, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '40kyrOyA', '6067245'), - (682, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '40kyrOyA', '6068094'), - (682, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '40kyrOyA', '6068252'), - (682, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '40kyrOyA', '6068253'), - (682, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '40kyrOyA', '6068254'), - (682, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '40kyrOyA', '6068280'), - (682, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '40kyrOyA', '6069093'), - (682, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '40kyrOyA', '6072528'), - (682, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '40kyrOyA', '6079840'), - (682, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '40kyrOyA', '6083398'), - (682, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '40kyrOyA', '6093504'), - (682, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '40kyrOyA', '6097414'), - (682, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '40kyrOyA', '6097442'), - (682, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '40kyrOyA', '6097684'), - (682, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '40kyrOyA', '6098762'), - (682, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '40kyrOyA', '6101361'), - (682, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '40kyrOyA', '6101362'), - (682, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '40kyrOyA', '6107314'), - (682, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '40kyrOyA', '6120034'), - (682, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '40kyrOyA', '6136733'), - (682, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '40kyrOyA', '6137989'), - (682, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '40kyrOyA', '6150864'), - (682, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '40kyrOyA', '6155491'), - (682, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '40kyrOyA', '6164417'), - (682, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '40kyrOyA', '6166388'), - (682, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '40kyrOyA', '6176439'), - (682, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '40kyrOyA', '6182410'), - (682, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '40kyrOyA', '6185812'), - (682, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '40kyrOyA', '6187651'), - (682, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '40kyrOyA', '6187963'), - (682, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '40kyrOyA', '6187964'), - (682, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '40kyrOyA', '6187966'), - (682, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '40kyrOyA', '6187967'), - (682, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '40kyrOyA', '6187969'), - (682, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '40kyrOyA', '6334878'), - (682, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '40kyrOyA', '6337236'), - (682, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '40kyrOyA', '6337970'), - (682, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '40kyrOyA', '6338308'), - (682, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '40kyrOyA', '6341710'), - (682, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '40kyrOyA', '6342044'), - (682, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '40kyrOyA', '6342298'), - (682, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '40kyrOyA', '6343294'), - (682, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '40kyrOyA', '6347034'), - (682, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '40kyrOyA', '6347056'), - (682, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '40kyrOyA', '6353830'), - (682, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '40kyrOyA', '6353831'), - (682, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '40kyrOyA', '6357867'), - (682, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '40kyrOyA', '6358652'), - (682, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '40kyrOyA', '6361709'), - (682, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '40kyrOyA', '6361710'), - (682, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '40kyrOyA', '6361711'), - (682, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '40kyrOyA', '6361712'), - (682, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '40kyrOyA', '6361713'), - (682, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '40kyrOyA', '6382573'), - (682, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '40kyrOyA', '6388604'), - (682, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '40kyrOyA', '6394629'), - (682, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '40kyrOyA', '6394631'), - (682, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '40kyrOyA', '6440863'), - (682, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '40kyrOyA', '6445440'), - (682, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '40kyrOyA', '6453951'), - (682, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '40kyrOyA', '6461696'), - (682, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '40kyrOyA', '6462129'), - (682, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '40kyrOyA', '6463218'), - (682, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '40kyrOyA', '6472181'), - (682, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '40kyrOyA', '6482693'), - (682, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '40kyrOyA', '6484200'), - (682, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '40kyrOyA', '6484680'), - (682, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '40kyrOyA', '6507741'), - (682, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '40kyrOyA', '6514659'), - (682, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '40kyrOyA', '6514660'), - (682, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '40kyrOyA', '6519103'), - (682, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '40kyrOyA', '6535681'), - (682, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '40kyrOyA', '6584747'), - (682, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '40kyrOyA', '6587097'), - (682, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '40kyrOyA', '6609022'), - (682, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '40kyrOyA', '6632757'), - (682, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '40kyrOyA', '6644187'), - (682, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '40kyrOyA', '6648951'), - (682, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '40kyrOyA', '6648952'), - (682, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '40kyrOyA', '6655401'), - (682, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '40kyrOyA', '6661585'), - (682, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '40kyrOyA', '6661588'), - (682, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '40kyrOyA', '6661589'), - (682, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '40kyrOyA', '6699906'), - (682, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '40kyrOyA', '6699913'), - (682, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '40kyrOyA', '6701109'), - (682, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '40kyrOyA', '6705219'), - (682, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '40kyrOyA', '6710153'), - (682, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '40kyrOyA', '6711552'), - (682, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '40kyrOyA', '6711553'), - (682, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '40kyrOyA', '6722688'), - (682, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '40kyrOyA', '6730620'), - (682, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '40kyrOyA', '6740364'), - (682, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '40kyrOyA', '6743829'), - (682, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '40kyrOyA', '7030380'), - (682, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '40kyrOyA', '7033677'), - (682, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '40kyrOyA', '7044715'), - (682, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '40kyrOyA', '7050318'), - (682, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '40kyrOyA', '7050319'), - (682, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '40kyrOyA', '7050322'), - (682, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '40kyrOyA', '7057804'), - (682, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '40kyrOyA', '7072824'), - (682, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '40kyrOyA', '7074348'), - (682, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '40kyrOyA', '7074364'), - (682, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '40kyrOyA', '7089267'), - (682, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '40kyrOyA', '7098747'), - (682, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '40kyrOyA', '7113468'), - (682, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '40kyrOyA', '7114856'), - (682, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '40kyrOyA', '7114951'), - (682, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '40kyrOyA', '7114955'), - (682, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '40kyrOyA', '7114956'), - (682, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '40kyrOyA', '7114957'), - (682, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '40kyrOyA', '7159484'), - (682, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '40kyrOyA', '7178446'), - (682, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '40kyrOyA', '7220467'), - (682, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '40kyrOyA', '7240354'), - (682, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '40kyrOyA', '7251633'), - (682, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '40kyrOyA', '7324073'), - (682, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '40kyrOyA', '7324074'), - (682, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '40kyrOyA', '7324075'), - (682, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '40kyrOyA', '7324078'), - (682, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '40kyrOyA', '7324082'), - (682, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '40kyrOyA', '7331457'), - (682, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '40kyrOyA', '7363643'), - (682, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '40kyrOyA', '7368606'), - (682, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '40kyrOyA', '7397462'), - (682, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '40kyrOyA', '7424275'), - (682, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '40kyrOyA', '7432751'), - (682, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '40kyrOyA', '7432752'), - (682, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '40kyrOyA', '7432753'), - (682, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '40kyrOyA', '7432754'), - (682, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '40kyrOyA', '7432755'), - (682, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '40kyrOyA', '7432756'), - (682, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '40kyrOyA', '7432758'), - (682, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '40kyrOyA', '7432759'), - (682, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '40kyrOyA', '7433834'), - (682, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '40kyrOyA', '7470197'), - (682, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '40kyrOyA', '7685613'), - (682, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '40kyrOyA', '7688194'), - (682, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '40kyrOyA', '7688196'), - (682, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '40kyrOyA', '7688289'), - (682, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '40kyrOyA', '7692763'), - (682, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '40kyrOyA', '7697552'), - (682, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '40kyrOyA', '7699878'), - (682, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '40kyrOyA', '7704043'), - (682, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '40kyrOyA', '7712467'), - (682, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '40kyrOyA', '7713585'), - (682, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '40kyrOyA', '7713586'), - (682, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '40kyrOyA', '7738518'), - (682, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '40kyrOyA', '7750636'), - (682, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '40kyrOyA', '7796540'), - (682, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '40kyrOyA', '7796541'), - (682, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '40kyrOyA', '7796542'), - (682, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '40kyrOyA', '7825913'), - (682, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '40kyrOyA', '7826209'), - (682, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '40kyrOyA', '7834742'), - (682, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '40kyrOyA', '7842108'), - (682, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '40kyrOyA', '7842902'), - (682, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '40kyrOyA', '7842903'), - (682, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '40kyrOyA', '7842904'), - (682, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '40kyrOyA', '7842905'), - (682, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '40kyrOyA', '7855719'), - (682, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '40kyrOyA', '7860683'), - (682, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '40kyrOyA', '7860684'), - (682, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '40kyrOyA', '7866095'), - (682, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '40kyrOyA', '7869170'), - (682, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '40kyrOyA', '7869188'), - (682, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '40kyrOyA', '7869201'), - (682, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '40kyrOyA', '7877465'), - (682, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '40kyrOyA', '7888250'), - (682, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '40kyrOyA', '7904777'), - (682, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '40kyrOyA', '8349164'), - (682, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '40kyrOyA', '8349545'), - (682, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '40kyrOyA', '8368028'), - (682, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '40kyrOyA', '8368029'), - (682, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '40kyrOyA', '8388462'), - (682, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '40kyrOyA', '8400273'), - (682, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '40kyrOyA', '8400275'), - (682, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '40kyrOyA', '8400276'), - (682, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '40kyrOyA', '8404977'), - (682, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '40kyrOyA', '8430783'), - (682, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '40kyrOyA', '8430784'), - (682, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '40kyrOyA', '8430799'), - (682, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '40kyrOyA', '8430800'), - (682, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '40kyrOyA', '8430801'), - (682, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '40kyrOyA', '8438709'), - (682, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '40kyrOyA', '8457738'), - (682, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '40kyrOyA', '8459566'), - (682, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '40kyrOyA', '8459567'), - (682, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '40kyrOyA', '8461032'), - (682, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '40kyrOyA', '8477877'), - (682, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '40kyrOyA', '8485688'), - (682, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '40kyrOyA', '8490587'), - (682, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '40kyrOyA', '8493552'), - (682, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '40kyrOyA', '8493553'), - (682, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '40kyrOyA', '8493554'), - (682, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '40kyrOyA', '8493555'), - (682, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '40kyrOyA', '8493556'), - (682, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '40kyrOyA', '8493557'), - (682, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '40kyrOyA', '8493558'), - (682, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '40kyrOyA', '8493559'), - (682, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '40kyrOyA', '8493560'), - (682, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '40kyrOyA', '8493561'), - (682, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '40kyrOyA', '8493572'), - (682, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '40kyrOyA', '8540725'), - (682, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '40kyrOyA', '8555421'), - (683, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mGGlGakm', '6472181'), - (683, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mGGlGakm', '6482693'), - (683, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mGGlGakm', '6484200'), - (683, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mGGlGakm', '6484680'), - (683, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mGGlGakm', '6507741'), - (683, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mGGlGakm', '6514659'), - (683, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mGGlGakm', '6514660'), - (683, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mGGlGakm', '6519103'), - (683, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mGGlGakm', '6535681'), - (683, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mGGlGakm', '6545076'), - (683, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mGGlGakm', '6584747'), - (683, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mGGlGakm', '6587097'), - (683, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mGGlGakm', '6609022'), - (683, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mGGlGakm', '6632757'), - (683, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mGGlGakm', '6644187'), - (683, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mGGlGakm', '6648951'), - (683, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mGGlGakm', '6648952'), - (683, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mGGlGakm', '6651141'), - (683, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mGGlGakm', '6655401'), - (683, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mGGlGakm', '6661585'), - (683, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mGGlGakm', '6661588'), - (683, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mGGlGakm', '6661589'), - (683, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mGGlGakm', '6699906'), - (683, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mGGlGakm', '6699913'), - (683, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mGGlGakm', '6701109'), - (683, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mGGlGakm', '6705219'), - (683, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mGGlGakm', '6710153'), - (683, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mGGlGakm', '6711552'), - (683, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mGGlGakm', '6711553'), - (683, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mGGlGakm', '6722688'), - (683, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mGGlGakm', '6730620'), - (683, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mGGlGakm', '6730642'), - (683, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mGGlGakm', '6740364'), - (683, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mGGlGakm', '6743829'), - (683, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mGGlGakm', '7030380'), - (683, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mGGlGakm', '7033677'), - (683, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mGGlGakm', '7035415'), - (683, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mGGlGakm', '7044715'), - (683, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mGGlGakm', '7050318'), - (683, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mGGlGakm', '7050319'), - (683, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mGGlGakm', '7050322'), - (683, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mGGlGakm', '7057804'), - (683, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mGGlGakm', '7072824'), - (683, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mGGlGakm', '7074348'), - (683, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mGGlGakm', '7089267'), - (683, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mGGlGakm', '7098747'), - (683, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mGGlGakm', '7113468'), - (683, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mGGlGakm', '7114856'), - (683, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mGGlGakm', '7114951'), - (683, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mGGlGakm', '7114955'), - (683, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mGGlGakm', '7114956'), - (683, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mGGlGakm', '7153615'), - (683, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mGGlGakm', '7159484'), - (683, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mGGlGakm', '7178446'), - (684, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '2d27Z2Pm', '3087265'), - (684, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', '2d27Z2Pm', '3087266'), - (684, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', '2d27Z2Pm', '3087267'), - (684, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', '2d27Z2Pm', '3087268'), - (684, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', '2d27Z2Pm', '3129980'), - (684, 273, 'not_attending', '2020-08-03 17:20:14', '2025-12-17 19:47:56', '2d27Z2Pm', '3162006'), - (684, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '2d27Z2Pm', '3163442'), - (684, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '2d27Z2Pm', '3169555'), - (684, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', '2d27Z2Pm', '3169556'), - (684, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '2d27Z2Pm', '3172832'), - (684, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '2d27Z2Pm', '3172833'), - (684, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '2d27Z2Pm', '3172834'), - (684, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '2d27Z2Pm', '3172876'), - (684, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', '2d27Z2Pm', '3186057'), - (684, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '2d27Z2Pm', '3191735'), - (684, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', '2d27Z2Pm', '3193885'), - (684, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '2d27Z2Pm', '3200209'), - (684, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', '2d27Z2Pm', '3200495'), - (684, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '2d27Z2Pm', '3217037'), - (684, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '2d27Z2Pm', '3218510'), - (684, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d27Z2Pm', '6045684'), - (685, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'QdJ6n0wd', '3468125'), - (685, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'QdJ6n0wd', '3470303'), - (685, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'QdJ6n0wd', '3470305'), - (685, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'QdJ6n0wd', '3470991'), - (685, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'QdJ6n0wd', '3517815'), - (685, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'QdJ6n0wd', '3517816'), - (685, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'QdJ6n0wd', '3523941'), - (685, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'QdJ6n0wd', '3533850'), - (685, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'QdJ6n0wd', '3536632'), - (685, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'QdJ6n0wd', '3536656'), - (685, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'QdJ6n0wd', '3539916'), - (685, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'QdJ6n0wd', '3539917'), - (685, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'QdJ6n0wd', '3539918'), - (685, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539919'), - (685, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539920'), - (685, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539921'), - (685, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539922'), - (685, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'QdJ6n0wd', '3539923'), - (685, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'QdJ6n0wd', '3539927'), - (685, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'QdJ6n0wd', '3582734'), - (685, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'QdJ6n0wd', '3619523'), - (685, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ6n0wd', '6045684'), - (686, 1182, 'attending', '2022-03-11 03:54:18', '2025-12-17 19:47:33', 'dJZMZVod', '4736504'), - (686, 1251, 'maybe', '2022-03-11 00:47:25', '2025-12-17 19:47:33', 'dJZMZVod', '5128466'), - (686, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'dJZMZVod', '5132533'), - (686, 1271, 'attending', '2022-03-18 14:23:12', '2025-12-17 19:47:25', 'dJZMZVod', '5181648'), - (686, 1272, 'attending', '2022-03-17 15:08:47', '2025-12-17 19:47:25', 'dJZMZVod', '5186582'), - (686, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dJZMZVod', '5186583'), - (686, 1274, 'attending', '2022-04-02 14:49:52', '2025-12-17 19:47:26', 'dJZMZVod', '5186585'), - (686, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dJZMZVod', '5190437'), - (686, 1284, 'attending', '2022-04-16 17:17:12', '2025-12-17 19:47:27', 'dJZMZVod', '5195095'), - (686, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dJZMZVod', '5215989'), - (686, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dJZMZVod', '5223686'), - (686, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dJZMZVod', '5227432'), - (686, 1346, 'attending', '2022-04-22 20:24:25', '2025-12-17 19:47:27', 'dJZMZVod', '5247467'), - (686, 1362, 'not_attending', '2022-04-30 19:45:58', '2025-12-17 19:47:28', 'dJZMZVod', '5260800'), - (686, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dJZMZVod', '5269930'), - (686, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dJZMZVod', '5271448'), - (686, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dJZMZVod', '5271449'), - (686, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dJZMZVod', '5276469'), - (686, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dJZMZVod', '5278159'), - (686, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dJZMZVod', '5363695'), - (686, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dJZMZVod', '5365960'), - (686, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dJZMZVod', '5368973'), - (686, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dJZMZVod', '5378247'), - (686, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dJZMZVod', '5389605'), - (686, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dJZMZVod', '5397265'), - (686, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dJZMZVod', '5403967'), - (686, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dJZMZVod', '5404786'), - (686, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dJZMZVod', '5405203'), - (686, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dJZMZVod', '5408794'), - (686, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dJZMZVod', '5411699'), - (686, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dJZMZVod', '5412550'), - (686, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dJZMZVod', '5415046'), - (686, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dJZMZVod', '5422086'), - (686, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dJZMZVod', '5422406'), - (686, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dJZMZVod', '5424565'), - (686, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dJZMZVod', '5426882'), - (686, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dJZMZVod', '5427083'), - (686, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dJZMZVod', '5441125'), - (686, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dJZMZVod', '5441126'), - (686, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dJZMZVod', '5441128'), - (686, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dJZMZVod', '5446643'), - (686, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dJZMZVod', '5453325'), - (686, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dJZMZVod', '5454516'), - (686, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dJZMZVod', '5454605'), - (686, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dJZMZVod', '5455037'), - (686, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dJZMZVod', '5461278'), - (686, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dJZMZVod', '5469480'), - (686, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dJZMZVod', '5471073'), - (686, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dJZMZVod', '5474663'), - (686, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dJZMZVod', '5482022'), - (686, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dJZMZVod', '5482793'), - (686, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dJZMZVod', '5488912'), - (686, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dJZMZVod', '5492192'), - (686, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dJZMZVod', '5493139'), - (686, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dJZMZVod', '5493200'), - (686, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dJZMZVod', '5502188'), - (686, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dJZMZVod', '5512862'), - (686, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dJZMZVod', '5513985'), - (686, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJZMZVod', '6045684'), - (687, 401, 'not_attending', '2021-05-12 00:49:50', '2025-12-17 19:47:46', 'EdVGlG6m', '3236456'), - (687, 646, 'not_attending', '2021-05-15 16:16:07', '2025-12-17 19:47:46', 'EdVGlG6m', '3539921'), - (687, 647, 'not_attending', '2021-05-21 15:13:04', '2025-12-17 19:47:46', 'EdVGlG6m', '3539922'), - (687, 648, 'not_attending', '2021-05-29 18:32:51', '2025-12-17 19:47:47', 'EdVGlG6m', '3539923'), - (687, 743, 'attending', '2021-06-25 21:34:01', '2025-12-17 19:47:38', 'EdVGlG6m', '3680623'), - (687, 760, 'not_attending', '2021-05-14 16:56:38', '2025-12-17 19:47:46', 'EdVGlG6m', '3716035'), - (687, 785, 'not_attending', '2021-05-15 16:16:23', '2025-12-17 19:47:46', 'EdVGlG6m', '3779779'), - (687, 792, 'attending', '2021-05-16 03:44:52', '2025-12-17 19:47:46', 'EdVGlG6m', '3793156'), - (687, 798, 'not_attending', '2021-05-20 13:16:20', '2025-12-17 19:47:46', 'EdVGlG6m', '3796262'), - (687, 801, 'attending', '2021-05-13 22:54:56', '2025-12-17 19:47:46', 'EdVGlG6m', '3800910'), - (687, 802, 'attending', '2021-05-12 00:49:44', '2025-12-17 19:47:46', 'EdVGlG6m', '3803310'), - (687, 803, 'not_attending', '2021-05-19 22:52:54', '2025-12-17 19:47:46', 'EdVGlG6m', '3804665'), - (687, 819, 'not_attending', '2021-05-30 22:26:56', '2025-12-17 19:47:47', 'EdVGlG6m', '3833017'), - (687, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'EdVGlG6m', '3974109'), - (687, 827, 'attending', '2021-06-05 19:28:37', '2025-12-17 19:47:47', 'EdVGlG6m', '3975311'), - (687, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'EdVGlG6m', '3975312'), - (687, 833, 'not_attending', '2021-06-11 18:31:54', '2025-12-17 19:47:47', 'EdVGlG6m', '3990438'), - (687, 838, 'maybe', '2021-06-09 02:10:16', '2025-12-17 19:47:47', 'EdVGlG6m', '3994992'), - (687, 840, 'not_attending', '2021-06-14 01:37:42', '2025-12-17 19:47:47', 'EdVGlG6m', '4007283'), - (687, 841, 'maybe', '2021-06-15 18:33:35', '2025-12-17 19:47:48', 'EdVGlG6m', '4007434'), - (687, 844, 'attending', '2021-06-21 22:21:29', '2025-12-17 19:47:38', 'EdVGlG6m', '4014338'), - (687, 845, 'not_attending', '2021-06-27 04:05:17', '2025-12-17 19:47:38', 'EdVGlG6m', '4015717'), - (687, 846, 'attending', '2021-07-07 19:25:35', '2025-12-17 19:47:39', 'EdVGlG6m', '4015718'), - (687, 850, 'maybe', '2021-08-25 17:56:16', '2025-12-17 19:47:42', 'EdVGlG6m', '4015722'), - (687, 866, 'attending', '2021-06-20 19:05:37', '2025-12-17 19:47:38', 'EdVGlG6m', '4020424'), - (687, 867, 'not_attending', '2021-06-25 18:41:37', '2025-12-17 19:47:38', 'EdVGlG6m', '4021848'), - (687, 868, 'not_attending', '2021-06-18 14:07:34', '2025-12-17 19:47:48', 'EdVGlG6m', '4022012'), - (687, 869, 'attending', '2021-06-27 04:05:15', '2025-12-17 19:47:38', 'EdVGlG6m', '4136744'), - (687, 870, 'not_attending', '2021-06-30 07:22:31', '2025-12-17 19:47:39', 'EdVGlG6m', '4136937'), - (687, 871, 'not_attending', '2021-07-10 13:12:04', '2025-12-17 19:47:39', 'EdVGlG6m', '4136938'), - (687, 872, 'maybe', '2021-06-21 22:07:31', '2025-12-17 19:47:40', 'EdVGlG6m', '4136947'), - (687, 874, 'attending', '2021-06-24 21:53:14', '2025-12-17 19:47:38', 'EdVGlG6m', '4139815'), - (687, 879, 'maybe', '2021-06-28 20:16:37', '2025-12-17 19:47:38', 'EdVGlG6m', '4147806'), - (687, 882, 'attending', '2021-06-25 21:34:15', '2025-12-17 19:47:38', 'EdVGlG6m', '4207630'), - (687, 883, 'attending', '2021-06-23 02:48:10', '2025-12-17 19:47:38', 'EdVGlG6m', '4209121'), - (687, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'EdVGlG6m', '4210314'), - (687, 885, 'attending', '2021-06-27 22:09:53', '2025-12-17 19:47:38', 'EdVGlG6m', '4222370'), - (687, 887, 'not_attending', '2021-07-17 22:47:34', '2025-12-17 19:47:39', 'EdVGlG6m', '4225444'), - (687, 897, 'not_attending', '2021-06-28 17:11:47', '2025-12-17 19:47:38', 'EdVGlG6m', '4232132'), - (687, 899, 'not_attending', '2021-07-05 21:23:36', '2025-12-17 19:47:39', 'EdVGlG6m', '4239259'), - (687, 900, 'not_attending', '2021-07-24 19:35:36', '2025-12-17 19:47:40', 'EdVGlG6m', '4240316'), - (687, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'EdVGlG6m', '4240317'), - (687, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'EdVGlG6m', '4240318'), - (687, 903, 'attending', '2021-08-13 20:57:23', '2025-12-17 19:47:42', 'EdVGlG6m', '4240320'), - (687, 905, 'attending', '2021-07-07 22:07:42', '2025-12-17 19:47:39', 'EdVGlG6m', '4250163'), - (687, 919, 'not_attending', '2021-07-17 22:46:27', '2025-12-17 19:47:39', 'EdVGlG6m', '4275957'), - (687, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'EdVGlG6m', '4277819'), - (687, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'EdVGlG6m', '4301723'), - (687, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'EdVGlG6m', '4302093'), - (687, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'EdVGlG6m', '4304151'), - (687, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'EdVGlG6m', '4356801'), - (687, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'EdVGlG6m', '4366186'), - (687, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'EdVGlG6m', '4366187'), - (687, 986, 'not_attending', '2021-08-22 23:08:16', '2025-12-17 19:47:42', 'EdVGlG6m', '4394209'), - (687, 987, 'not_attending', '2021-09-01 22:45:50', '2025-12-17 19:47:43', 'EdVGlG6m', '4402634'), - (687, 990, 'attending', '2021-09-02 23:48:05', '2025-12-17 19:47:43', 'EdVGlG6m', '4420735'), - (687, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'EdVGlG6m', '4420738'), - (687, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'EdVGlG6m', '4420739'), - (687, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'EdVGlG6m', '4420741'), - (687, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'EdVGlG6m', '4420744'), - (687, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'EdVGlG6m', '4420747'), - (687, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'EdVGlG6m', '4420748'), - (687, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'EdVGlG6m', '4420749'), - (687, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'EdVGlG6m', '4461883'), - (687, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVGlG6m', '6045684'), - (688, 406, 'not_attending', '2021-04-21 02:39:31', '2025-12-17 19:47:44', 'ndaobMlA', '3236464'), - (688, 644, 'attending', '2021-04-22 07:04:59', '2025-12-17 19:47:45', 'ndaobMlA', '3539919'), - (688, 645, 'attending', '2021-04-21 02:43:15', '2025-12-17 19:47:46', 'ndaobMlA', '3539920'), - (688, 646, 'not_attending', '2021-05-15 19:12:48', '2025-12-17 19:47:46', 'ndaobMlA', '3539921'), - (688, 647, 'attending', '2021-04-23 15:45:14', '2025-12-17 19:47:46', 'ndaobMlA', '3539922'), - (688, 648, 'attending', '2021-04-23 15:45:18', '2025-12-17 19:47:47', 'ndaobMlA', '3539923'), - (688, 700, 'not_attending', '2021-04-21 02:39:23', '2025-12-17 19:47:44', 'ndaobMlA', '3575725'), - (688, 707, 'attending', '2021-04-22 21:09:55', '2025-12-17 19:47:46', 'ndaobMlA', '3583262'), - (688, 724, 'attending', '2021-04-23 15:44:09', '2025-12-17 19:47:46', 'ndaobMlA', '3661369'), - (688, 725, 'not_attending', '2021-05-23 20:19:39', '2025-12-17 19:47:47', 'ndaobMlA', '3661372'), - (688, 756, 'not_attending', '2021-04-26 15:45:10', '2025-12-17 19:47:46', 'ndaobMlA', '3704795'), - (688, 761, 'not_attending', '2021-05-14 23:04:02', '2025-12-17 19:47:46', 'ndaobMlA', '3716041'), - (688, 767, 'not_attending', '2021-05-02 18:32:39', '2025-12-17 19:47:46', 'ndaobMlA', '3722476'), - (688, 771, 'not_attending', '2021-04-29 23:14:08', '2025-12-17 19:47:46', 'ndaobMlA', '3726420'), - (688, 773, 'not_attending', '2021-04-23 15:42:10', '2025-12-17 19:47:46', 'ndaobMlA', '3729399'), - (688, 774, 'not_attending', '2021-04-21 13:08:03', '2025-12-17 19:47:45', 'ndaobMlA', '3730212'), - (688, 775, 'attending', '2021-04-22 06:56:23', '2025-12-17 19:47:45', 'ndaobMlA', '3731062'), - (688, 776, 'not_attending', '2021-04-25 14:38:50', '2025-12-17 19:47:46', 'ndaobMlA', '3733455'), - (688, 779, 'attending', '2021-05-03 15:25:42', '2025-12-17 19:47:46', 'ndaobMlA', '3757118'), - (688, 781, 'attending', '2021-04-29 01:46:04', '2025-12-17 19:47:46', 'ndaobMlA', '3760130'), - (688, 782, 'maybe', '2021-05-03 15:25:38', '2025-12-17 19:47:46', 'ndaobMlA', '3761843'), - (688, 788, 'attending', '2021-05-07 16:54:24', '2025-12-17 19:47:46', 'ndaobMlA', '3781975'), - (688, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ndaobMlA', '3793156'), - (688, 805, 'maybe', '2021-06-13 20:44:57', '2025-12-17 19:47:47', 'ndaobMlA', '3804777'), - (688, 815, 'maybe', '2021-05-28 22:45:33', '2025-12-17 19:47:47', 'ndaobMlA', '3818136'), - (688, 823, 'attending', '2021-06-18 20:23:01', '2025-12-17 19:47:48', 'ndaobMlA', '3974109'), - (688, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ndaobMlA', '3975311'), - (688, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ndaobMlA', '3975312'), - (688, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ndaobMlA', '3994992'), - (688, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ndaobMlA', '4014338'), - (688, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ndaobMlA', '4021848'), - (688, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ndaobMlA', '4136744'), - (688, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ndaobMlA', '4136937'), - (688, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ndaobMlA', '4136938'), - (688, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndaobMlA', '4136947'), - (688, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndaobMlA', '4210314'), - (688, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndaobMlA', '4225444'), - (688, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndaobMlA', '4239259'), - (688, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ndaobMlA', '4240316'), - (688, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ndaobMlA', '4240317'), - (688, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndaobMlA', '4240318'), - (688, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ndaobMlA', '4240320'), - (688, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndaobMlA', '4250163'), - (688, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndaobMlA', '4275957'), - (688, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndaobMlA', '4277819'), - (688, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndaobMlA', '4301723'), - (688, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ndaobMlA', '4302093'), - (688, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndaobMlA', '4304151'), - (688, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndaobMlA', '4345519'), - (688, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndaobMlA', '4356801'), - (688, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndaobMlA', '4358025'), - (688, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ndaobMlA', '4366186'), - (688, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndaobMlA', '4366187'), - (688, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndaobMlA', '4402823'), - (688, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ndaobMlA', '4420735'), - (688, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ndaobMlA', '4420738'), - (688, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndaobMlA', '4420739'), - (688, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndaobMlA', '4420741'), - (688, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndaobMlA', '4420744'), - (688, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndaobMlA', '4420747'), - (688, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndaobMlA', '4420748'), - (688, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndaobMlA', '4420749'), - (688, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndaobMlA', '4461883'), - (688, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndaobMlA', '4508342'), - (688, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndaobMlA', '4568602'), - (688, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndaobMlA', '4572153'), - (688, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ndaobMlA', '4585962'), - (688, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'ndaobMlA', '4596356'), - (688, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ndaobMlA', '4598860'), - (688, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ndaobMlA', '4598861'), - (688, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ndaobMlA', '4602797'), - (688, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ndaobMlA', '4637896'), - (688, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndaobMlA', '4642994'), - (688, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ndaobMlA', '4642995'), - (688, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ndaobMlA', '4642996'), - (688, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ndaobMlA', '4642997'), - (688, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ndaobMlA', '4645687'), - (688, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ndaobMlA', '4645698'), - (688, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndaobMlA', '4645704'), - (688, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ndaobMlA', '4645705'), - (688, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ndaobMlA', '4668385'), - (688, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndaobMlA', '4694407'), - (688, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ndaobMlA', '4736497'), - (688, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ndaobMlA', '4736499'), - (688, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndaobMlA', '4736500'), - (688, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ndaobMlA', '4736503'), - (688, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ndaobMlA', '4736504'), - (688, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndaobMlA', '4746789'), - (688, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ndaobMlA', '4753929'), - (688, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndaobMlA', '5038850'), - (688, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ndaobMlA', '5045826'), - (688, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndaobMlA', '5132533'), - (688, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ndaobMlA', '5186582'), - (688, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ndaobMlA', '5186583'), - (688, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ndaobMlA', '5186585'), - (688, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ndaobMlA', '5190437'), - (688, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndaobMlA', '5215989'), - (688, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaobMlA', '6045684'), - (689, 258, 'not_attending', '2021-06-01 01:29:28', '2025-12-17 19:47:47', 'x4oYk6Ym', '3149489'), - (689, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'x4oYk6Ym', '3149491'), - (689, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'x4oYk6Ym', '3236450'), - (689, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'x4oYk6Ym', '3975311'), - (689, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'x4oYk6Ym', '3994992'), - (689, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'x4oYk6Ym', '4014338'), - (689, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oYk6Ym', '6045684'), - (690, 568, 'attending', '2021-01-30 23:04:27', '2025-12-17 19:47:50', 'kdKoePBd', '3430267'), - (690, 574, 'attending', '2021-02-28 04:17:41', '2025-12-17 19:47:51', 'kdKoePBd', '3435543'), - (690, 579, 'attending', '2021-01-31 04:11:32', '2025-12-17 19:47:50', 'kdKoePBd', '3440978'), - (690, 594, 'not_attending', '2021-03-02 01:33:23', '2025-12-17 19:47:51', 'kdKoePBd', '3467759'), - (690, 597, 'maybe', '2021-03-14 04:28:34', '2025-12-17 19:47:51', 'kdKoePBd', '3467764'), - (690, 602, 'not_attending', '2021-02-20 21:46:20', '2025-12-17 19:47:50', 'kdKoePBd', '3470303'), - (690, 603, 'attending', '2021-02-20 23:56:52', '2025-12-17 19:47:50', 'kdKoePBd', '3470304'), - (690, 604, 'maybe', '2021-02-27 23:54:00', '2025-12-17 19:47:50', 'kdKoePBd', '3470305'), - (690, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdKoePBd', '3470991'), - (690, 620, 'attending', '2021-02-23 19:03:41', '2025-12-17 19:47:50', 'kdKoePBd', '3513703'), - (690, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdKoePBd', '3517815'), - (690, 622, 'attending', '2021-03-14 00:26:05', '2025-12-17 19:47:51', 'kdKoePBd', '3517816'), - (690, 623, 'attending', '2021-02-26 04:32:55', '2025-12-17 19:47:50', 'kdKoePBd', '3523941'), - (690, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKoePBd', '3533850'), - (690, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKoePBd', '3536632'), - (690, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKoePBd', '3536656'), - (690, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdKoePBd', '3539916'), - (690, 642, 'attending', '2021-04-09 12:05:39', '2025-12-17 19:47:44', 'kdKoePBd', '3539917'), - (690, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKoePBd', '3539918'), - (690, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKoePBd', '3539919'), - (690, 645, 'attending', '2021-05-07 18:06:40', '2025-12-17 19:47:46', 'kdKoePBd', '3539920'), - (690, 646, 'not_attending', '2021-05-14 20:16:20', '2025-12-17 19:47:46', 'kdKoePBd', '3539921'), - (690, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKoePBd', '3539922'), - (690, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKoePBd', '3539923'), - (690, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdKoePBd', '3539927'), - (690, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKoePBd', '3582734'), - (690, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKoePBd', '3583262'), - (690, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKoePBd', '3619523'), - (690, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKoePBd', '3661369'), - (690, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKoePBd', '3674262'), - (690, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKoePBd', '3677402'), - (690, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdKoePBd', '3730212'), - (690, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdKoePBd', '3793156'), - (690, 823, 'attending', '2021-06-19 20:28:49', '2025-12-17 19:47:48', 'kdKoePBd', '3974109'), - (690, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdKoePBd', '3975311'), - (690, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKoePBd', '3975312'), - (690, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKoePBd', '3994992'), - (690, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKoePBd', '4014338'), - (690, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdKoePBd', '4021848'), - (690, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKoePBd', '4136744'), - (690, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdKoePBd', '4136937'), - (690, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdKoePBd', '4136938'), - (690, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdKoePBd', '4136947'), - (690, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdKoePBd', '4210314'), - (690, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdKoePBd', '4225444'), - (690, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdKoePBd', '4239259'), - (690, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdKoePBd', '4240316'), - (690, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdKoePBd', '4240317'), - (690, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdKoePBd', '4240318'), - (690, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdKoePBd', '4240320'), - (690, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdKoePBd', '4250163'), - (690, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdKoePBd', '4275957'), - (690, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdKoePBd', '4277819'), - (690, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdKoePBd', '4301723'), - (690, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'kdKoePBd', '4302093'), - (690, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdKoePBd', '4304151'), - (690, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdKoePBd', '4356801'), - (690, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdKoePBd', '4366186'), - (690, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdKoePBd', '4366187'), - (690, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdKoePBd', '4420735'), - (690, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdKoePBd', '4420738'), - (690, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdKoePBd', '4420739'), - (690, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'kdKoePBd', '4420741'), - (690, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdKoePBd', '4420744'), - (690, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdKoePBd', '4420747'), - (690, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdKoePBd', '4420748'), - (690, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdKoePBd', '4420749'), - (690, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKoePBd', '4461883'), - (690, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKoePBd', '4508342'), - (690, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKoePBd', '4568602'), - (690, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKoePBd', '4572153'), - (690, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'kdKoePBd', '4585962'), - (690, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdKoePBd', '4596356'), - (690, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKoePBd', '4598860'), - (690, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKoePBd', '4598861'), - (690, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKoePBd', '4602797'), - (690, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKoePBd', '4637896'), - (690, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKoePBd', '4642994'), - (690, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'kdKoePBd', '4642995'), - (690, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKoePBd', '4642996'), - (690, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKoePBd', '4642997'), - (690, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKoePBd', '4645687'), - (690, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKoePBd', '4645698'), - (690, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdKoePBd', '4645704'), - (690, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKoePBd', '4645705'), - (690, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKoePBd', '4668385'), - (690, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKoePBd', '4694407'), - (690, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKoePBd', '4736497'), - (690, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKoePBd', '4736499'), - (690, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKoePBd', '4736500'), - (690, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKoePBd', '4736503'), - (690, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKoePBd', '4736504'), - (690, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKoePBd', '4746789'), - (690, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdKoePBd', '4753929'), - (690, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKoePBd', '5038850'), - (690, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKoePBd', '5045826'), - (690, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKoePBd', '5132533'), - (690, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdKoePBd', '5186582'), - (690, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdKoePBd', '5186583'), - (690, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdKoePBd', '5186585'), - (690, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdKoePBd', '5190437'), - (690, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdKoePBd', '5195095'), - (690, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKoePBd', '5215989'), - (690, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdKoePBd', '5223686'), - (690, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdKoePBd', '5247467'), - (690, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdKoePBd', '5260800'), - (690, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdKoePBd', '5269930'), - (690, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdKoePBd', '5271448'), - (690, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'kdKoePBd', '5271449'), - (690, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdKoePBd', '5278159'), - (690, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdKoePBd', '5363695'), - (690, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdKoePBd', '5365960'), - (690, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdKoePBd', '5378247'), - (690, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'kdKoePBd', '5389605'), - (690, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdKoePBd', '5397265'), - (690, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdKoePBd', '5404786'), - (690, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdKoePBd', '5405203'), - (690, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdKoePBd', '5412550'), - (690, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdKoePBd', '5415046'), - (690, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdKoePBd', '5422086'), - (690, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdKoePBd', '5422406'), - (690, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdKoePBd', '5424565'), - (690, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdKoePBd', '5426882'), - (690, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdKoePBd', '5441125'), - (690, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdKoePBd', '5441126'), - (690, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdKoePBd', '5441128'), - (690, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdKoePBd', '5441131'), - (690, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdKoePBd', '5441132'), - (690, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdKoePBd', '5453325'), - (690, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdKoePBd', '5454516'), - (690, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdKoePBd', '5454605'), - (690, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdKoePBd', '5455037'), - (690, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdKoePBd', '5461278'), - (690, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdKoePBd', '5469480'), - (690, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdKoePBd', '5474663'), - (690, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdKoePBd', '5482022'), - (690, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdKoePBd', '5488912'), - (690, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdKoePBd', '5492192'), - (690, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdKoePBd', '5493139'), - (690, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdKoePBd', '5493200'), - (690, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdKoePBd', '5502188'), - (690, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdKoePBd', '5505059'), - (690, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdKoePBd', '5509055'), - (690, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdKoePBd', '5512862'), - (690, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdKoePBd', '5513985'), - (690, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdKoePBd', '5519981'), - (690, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdKoePBd', '5522550'), - (690, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdKoePBd', '5534683'), - (690, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdKoePBd', '5537735'), - (690, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdKoePBd', '5540859'), - (690, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdKoePBd', '5546619'), - (690, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdKoePBd', '5557747'), - (690, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdKoePBd', '5560255'), - (690, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdKoePBd', '5562906'), - (690, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdKoePBd', '5600604'), - (690, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdKoePBd', '5605544'), - (690, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdKoePBd', '5630960'), - (690, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdKoePBd', '5630961'), - (690, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdKoePBd', '5630962'), - (690, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdKoePBd', '5630966'), - (690, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdKoePBd', '5630967'), - (690, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdKoePBd', '5630968'), - (690, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdKoePBd', '5635406'), - (690, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdKoePBd', '5638765'), - (690, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdKoePBd', '5640097'), - (690, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdKoePBd', '5640843'), - (690, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdKoePBd', '5641521'), - (690, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdKoePBd', '5642818'), - (690, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdKoePBd', '5652395'), - (690, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdKoePBd', '5670445'), - (690, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdKoePBd', '5671637'), - (690, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdKoePBd', '5672329'), - (690, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdKoePBd', '5674057'), - (690, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdKoePBd', '5674060'), - (690, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdKoePBd', '5677461'), - (690, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdKoePBd', '5698046'), - (690, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdKoePBd', '5699760'), - (690, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdKoePBd', '5741601'), - (690, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdKoePBd', '5763458'), - (690, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdKoePBd', '5774172'), - (690, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdKoePBd', '5818247'), - (690, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdKoePBd', '5819471'), - (690, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'kdKoePBd', '5827739'), - (690, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdKoePBd', '5844306'), - (690, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdKoePBd', '5850159'), - (690, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdKoePBd', '5858999'), - (690, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdKoePBd', '5871984'), - (690, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdKoePBd', '5876354'), - (690, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdKoePBd', '5880939'), - (690, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdKoePBd', '5880940'), - (690, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdKoePBd', '5880942'), - (690, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdKoePBd', '5880943'), - (690, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdKoePBd', '5887890'), - (690, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdKoePBd', '5888598'), - (690, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdKoePBd', '5893260'), - (690, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdKoePBd', '5899826'), - (690, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdKoePBd', '5900199'), - (690, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdKoePBd', '5900200'), - (690, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdKoePBd', '5900202'), - (690, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdKoePBd', '5900203'), - (690, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdKoePBd', '5901108'), - (690, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdKoePBd', '5901126'), - (690, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'kdKoePBd', '5901606'), - (690, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdKoePBd', '5909655'), - (690, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdKoePBd', '5910522'), - (690, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdKoePBd', '5910526'), - (690, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdKoePBd', '5910528'), - (690, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdKoePBd', '5916219'), - (690, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdKoePBd', '5936234'), - (690, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdKoePBd', '5958351'), - (690, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdKoePBd', '5959751'), - (690, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdKoePBd', '5959755'), - (690, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdKoePBd', '5960055'), - (690, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdKoePBd', '5961684'), - (690, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdKoePBd', '5962132'), - (690, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdKoePBd', '5962133'), - (690, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdKoePBd', '5962134'), - (690, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdKoePBd', '5962317'), - (690, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdKoePBd', '5962318'), - (690, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'kdKoePBd', '5965933'), - (690, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdKoePBd', '5967014'), - (690, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdKoePBd', '5972815'), - (690, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdKoePBd', '5974016'), - (690, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdKoePBd', '5981515'), - (690, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdKoePBd', '5993516'), - (690, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdKoePBd', '5998939'), - (690, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdKoePBd', '6028191'), - (690, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdKoePBd', '6040066'), - (690, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdKoePBd', '6042717'), - (690, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdKoePBd', '6044838'), - (690, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdKoePBd', '6044839'), - (690, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKoePBd', '6045684'), - (690, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdKoePBd', '6050104'), - (690, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdKoePBd', '6053195'), - (690, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdKoePBd', '6053198'), - (690, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdKoePBd', '6056085'), - (690, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdKoePBd', '6056916'), - (690, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdKoePBd', '6059290'), - (690, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdKoePBd', '6060328'), - (690, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdKoePBd', '6061037'), - (690, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdKoePBd', '6061039'), - (690, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdKoePBd', '6067245'), - (690, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdKoePBd', '6068094'), - (690, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdKoePBd', '6068252'), - (690, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdKoePBd', '6068253'), - (690, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdKoePBd', '6068254'), - (690, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdKoePBd', '6068280'), - (690, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdKoePBd', '6069093'), - (690, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdKoePBd', '6072528'), - (690, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdKoePBd', '6079840'), - (690, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdKoePBd', '6083398'), - (690, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdKoePBd', '6093504'), - (690, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdKoePBd', '6097414'), - (690, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdKoePBd', '6097442'), - (690, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdKoePBd', '6097684'), - (690, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdKoePBd', '6098762'), - (690, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdKoePBd', '6101361'), - (690, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdKoePBd', '6101362'), - (690, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdKoePBd', '6107314'), - (690, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdKoePBd', '6120034'), - (690, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'kdKoePBd', '6136733'), - (690, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdKoePBd', '6137989'), - (690, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdKoePBd', '6150864'), - (690, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdKoePBd', '6155491'), - (690, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdKoePBd', '6164417'), - (690, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdKoePBd', '6166388'), - (690, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdKoePBd', '6176439'), - (690, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdKoePBd', '6182410'), - (690, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdKoePBd', '6185812'), - (690, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdKoePBd', '6187651'), - (690, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdKoePBd', '6187963'), - (690, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdKoePBd', '6187964'), - (690, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdKoePBd', '6187966'), - (690, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdKoePBd', '6187967'), - (690, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdKoePBd', '6187969'), - (690, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdKoePBd', '6334878'), - (690, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdKoePBd', '6337236'), - (690, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdKoePBd', '6337970'), - (690, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdKoePBd', '6338308'), - (690, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdKoePBd', '6341710'), - (690, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdKoePBd', '6342044'), - (690, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdKoePBd', '6342298'), - (690, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdKoePBd', '6343294'), - (690, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdKoePBd', '6347034'), - (690, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdKoePBd', '6347056'), - (690, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdKoePBd', '6353830'), - (690, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdKoePBd', '6353831'), - (690, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdKoePBd', '6357867'), - (690, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdKoePBd', '6358652'), - (690, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdKoePBd', '6361709'), - (690, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdKoePBd', '6361710'), - (690, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdKoePBd', '6361711'), - (690, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdKoePBd', '6361712'), - (690, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdKoePBd', '6361713'), - (690, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdKoePBd', '6382573'), - (690, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdKoePBd', '6388604'), - (690, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdKoePBd', '6394629'), - (690, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdKoePBd', '6394631'), - (690, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdKoePBd', '6440863'), - (690, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdKoePBd', '6445440'), - (690, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdKoePBd', '6453951'), - (690, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdKoePBd', '6461696'), - (690, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdKoePBd', '6462129'), - (690, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdKoePBd', '6463218'), - (690, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdKoePBd', '6472181'), - (690, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdKoePBd', '6482693'), - (690, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdKoePBd', '6484200'), - (690, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdKoePBd', '6484680'), - (690, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdKoePBd', '6507741'), - (690, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdKoePBd', '6514659'), - (690, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdKoePBd', '6514660'), - (690, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdKoePBd', '6519103'), - (690, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdKoePBd', '6535681'), - (690, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdKoePBd', '6584747'), - (690, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdKoePBd', '6587097'), - (690, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdKoePBd', '6609022'), - (690, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'kdKoePBd', '6632757'), - (690, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdKoePBd', '6644187'), - (690, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdKoePBd', '6648951'), - (690, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdKoePBd', '6648952'), - (690, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdKoePBd', '6655401'), - (690, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdKoePBd', '6661585'), - (690, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdKoePBd', '6661588'), - (690, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdKoePBd', '6661589'), - (690, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdKoePBd', '6699906'), - (690, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdKoePBd', '6699913'), - (690, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdKoePBd', '6701109'), - (690, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdKoePBd', '6705219'), - (690, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdKoePBd', '6710153'), - (690, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdKoePBd', '6711552'), - (690, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdKoePBd', '6711553'), - (690, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdKoePBd', '6722688'), - (690, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdKoePBd', '6730620'), - (690, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdKoePBd', '6740364'), - (690, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdKoePBd', '6743829'), - (690, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdKoePBd', '7030380'), - (690, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'kdKoePBd', '7033677'), - (690, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdKoePBd', '7044715'), - (690, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdKoePBd', '7050318'), - (690, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdKoePBd', '7050319'), - (690, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdKoePBd', '7050322'), - (690, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdKoePBd', '7057804'), - (690, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdKoePBd', '7072824'), - (690, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdKoePBd', '7074348'), - (690, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdKoePBd', '7074364'), - (690, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdKoePBd', '7089267'), - (690, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdKoePBd', '7098747'), - (690, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdKoePBd', '7113468'), - (690, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdKoePBd', '7114856'), - (690, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdKoePBd', '7114951'), - (690, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdKoePBd', '7114955'), - (690, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdKoePBd', '7114956'), - (690, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdKoePBd', '7114957'), - (690, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdKoePBd', '7159484'), - (690, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdKoePBd', '7178446'), - (690, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdKoePBd', '7220467'), - (690, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdKoePBd', '7240354'), - (690, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdKoePBd', '7251633'), - (690, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdKoePBd', '7324073'), - (690, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdKoePBd', '7324074'), - (690, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdKoePBd', '7324075'), - (690, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdKoePBd', '7324078'), - (690, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdKoePBd', '7324082'), - (690, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdKoePBd', '7331457'), - (690, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdKoePBd', '7363643'), - (690, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdKoePBd', '7368606'), - (690, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdKoePBd', '7397462'), - (690, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdKoePBd', '7424275'), - (690, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdKoePBd', '7432751'), - (690, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdKoePBd', '7432752'), - (690, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdKoePBd', '7432753'), - (690, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdKoePBd', '7432754'), - (690, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdKoePBd', '7432755'), - (690, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdKoePBd', '7432756'), - (690, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdKoePBd', '7432758'), - (690, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdKoePBd', '7432759'), - (690, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdKoePBd', '7433834'), - (690, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'kdKoePBd', '7470197'), - (690, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdKoePBd', '7685613'), - (690, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdKoePBd', '7688194'), - (690, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdKoePBd', '7688196'), - (690, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdKoePBd', '7688289'), - (690, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdKoePBd', '7692763'), - (690, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdKoePBd', '7697552'), - (690, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdKoePBd', '7699878'), - (690, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdKoePBd', '7704043'), - (690, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdKoePBd', '7712467'), - (690, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdKoePBd', '7713585'), - (690, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdKoePBd', '7713586'), - (690, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdKoePBd', '7738518'), - (690, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdKoePBd', '7750636'), - (690, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdKoePBd', '7796540'), - (690, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdKoePBd', '7796541'), - (690, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdKoePBd', '7796542'), - (690, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdKoePBd', '7825913'), - (690, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdKoePBd', '7826209'), - (690, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdKoePBd', '7834742'), - (690, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'kdKoePBd', '7842108'), - (690, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdKoePBd', '7842902'), - (690, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdKoePBd', '7842903'), - (690, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdKoePBd', '7842904'), - (690, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdKoePBd', '7842905'), - (690, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdKoePBd', '7855719'), - (690, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdKoePBd', '7860683'), - (690, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdKoePBd', '7860684'), - (690, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdKoePBd', '7866095'), - (690, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdKoePBd', '7869170'), - (690, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdKoePBd', '7869188'), - (690, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdKoePBd', '7869201'), - (690, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdKoePBd', '7877465'), - (690, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdKoePBd', '7888250'), - (690, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdKoePBd', '7904777'), - (690, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdKoePBd', '8349164'), - (690, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdKoePBd', '8349545'), - (690, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdKoePBd', '8368028'), - (690, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdKoePBd', '8368029'), - (690, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdKoePBd', '8388462'), - (690, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdKoePBd', '8400273'), - (690, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdKoePBd', '8400275'), - (690, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'kdKoePBd', '8400276'), - (690, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdKoePBd', '8404977'), - (690, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdKoePBd', '8430783'), - (690, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdKoePBd', '8430784'), - (690, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdKoePBd', '8430799'), - (690, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdKoePBd', '8430800'), - (690, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdKoePBd', '8430801'), - (690, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdKoePBd', '8438709'), - (690, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdKoePBd', '8457738'), - (690, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdKoePBd', '8459566'), - (690, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdKoePBd', '8459567'), - (690, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdKoePBd', '8461032'), - (690, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdKoePBd', '8477877'), - (690, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdKoePBd', '8485688'), - (690, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdKoePBd', '8490587'), - (690, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdKoePBd', '8493552'), - (690, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdKoePBd', '8493553'), - (690, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdKoePBd', '8493554'), - (690, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdKoePBd', '8493555'), - (690, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdKoePBd', '8493556'), - (690, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdKoePBd', '8493557'), - (690, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdKoePBd', '8493558'), - (690, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdKoePBd', '8493559'), - (690, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdKoePBd', '8493560'), - (690, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdKoePBd', '8493561'), - (690, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdKoePBd', '8493572'), - (690, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdKoePBd', '8540725'), - (690, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdKoePBd', '8555421'), - (691, 853, 'attending', '2021-08-11 22:30:45', '2025-12-17 19:47:41', 'Agk5xMRA', '4015725'), - (691, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'Agk5xMRA', '4210314'), - (691, 902, 'attending', '2021-08-07 17:07:32', '2025-12-17 19:47:41', 'Agk5xMRA', '4240318'), - (691, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Agk5xMRA', '4240320'), - (691, 935, 'attending', '2021-08-11 22:04:25', '2025-12-17 19:47:41', 'Agk5xMRA', '4304151'), - (691, 960, 'not_attending', '2021-08-11 19:37:22', '2025-12-17 19:47:41', 'Agk5xMRA', '4344519'), - (691, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'Agk5xMRA', '4345519'), - (691, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Agk5xMRA', '4356801'), - (691, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'Agk5xMRA', '4358025'), - (691, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Agk5xMRA', '4366186'), - (691, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Agk5xMRA', '4366187'), - (691, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'Agk5xMRA', '4402823'), - (691, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Agk5xMRA', '4420735'), - (691, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Agk5xMRA', '4420738'), - (691, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'Agk5xMRA', '4420739'), - (691, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Agk5xMRA', '4420741'), - (691, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Agk5xMRA', '4420744'), - (691, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Agk5xMRA', '4420747'), - (691, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Agk5xMRA', '4420748'), - (691, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Agk5xMRA', '4420749'), - (691, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Agk5xMRA', '4461883'), - (691, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Agk5xMRA', '4508342'), - (691, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Agk5xMRA', '6045684'), - (692, 404, 'attending', '2021-03-17 13:48:15', '2025-12-17 19:47:51', 'GmjwwOgA', '3236460'), - (692, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'GmjwwOgA', '3236465'), - (692, 629, 'attending', '2021-03-17 13:52:38', '2025-12-17 19:47:51', 'GmjwwOgA', '3533307'), - (692, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'GmjwwOgA', '3539916'), - (692, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'GmjwwOgA', '3539918'), - (692, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'GmjwwOgA', '3539919'), - (692, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'GmjwwOgA', '3539920'), - (692, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GmjwwOgA', '3539927'), - (692, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GmjwwOgA', '3582734'), - (692, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GmjwwOgA', '3583262'), - (692, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GmjwwOgA', '3619523'), - (692, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GmjwwOgA', '3661369'), - (692, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GmjwwOgA', '3674262'), - (692, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GmjwwOgA', '3677402'), - (692, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GmjwwOgA', '3730212'), - (692, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjwwOgA', '6045684'), - (693, 1611, 'attending', '2022-09-05 03:57:32', '2025-12-17 19:47:24', '4PRkellm', '5507652'), - (693, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', '4PRkellm', '5513985'), - (693, 1628, 'not_attending', '2022-09-05 03:55:50', '2025-12-17 19:47:23', '4PRkellm', '5522500'), - (693, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', '4PRkellm', '5534683'), - (693, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '4PRkellm', '5537735'), - (693, 1637, 'attending', '2022-09-05 03:58:51', '2025-12-17 19:47:24', '4PRkellm', '5539591'), - (693, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4PRkellm', '5540859'), - (693, 1648, 'attending', '2022-09-05 03:59:06', '2025-12-17 19:47:24', '4PRkellm', '5548974'), - (693, 1651, 'attending', '2022-09-05 03:57:58', '2025-12-17 19:47:24', '4PRkellm', '5551425'), - (693, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4PRkellm', '5555245'), - (693, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4PRkellm', '5557747'), - (693, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4PRkellm', '5560255'), - (693, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4PRkellm', '5562906'), - (693, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4PRkellm', '5600604'), - (693, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4PRkellm', '5605544'), - (693, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4PRkellm', '5635406'), - (693, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4PRkellm', '5638765'), - (693, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4PRkellm', '5640843'), - (693, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PRkellm', '6045684'), - (694, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAY1YN0A', '6045684'), - (695, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4v0pOYBm', '7114957'), - (695, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4v0pOYBm', '7240354'), - (695, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4v0pOYBm', '7251633'), - (695, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', '4v0pOYBm', '7265589'), - (695, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', '4v0pOYBm', '7291219'), - (695, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', '4v0pOYBm', '7301638'), - (696, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'mbZ0PJam', '5132533'), - (696, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mbZ0PJam', '5186582'), - (696, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mbZ0PJam', '5186583'), - (696, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mbZ0PJam', '5186585'), - (696, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mbZ0PJam', '5190437'), - (696, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'mbZ0PJam', '5196763'), - (696, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'mbZ0PJam', '5199460'), - (696, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mbZ0PJam', '5215989'), - (696, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mbZ0PJam', '5223686'), - (696, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mbZ0PJam', '5227432'), - (696, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZ0PJam', '6045684'), - (697, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'ndla2kbm', '3236465'), - (697, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'ndla2kbm', '3539918'), - (697, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'ndla2kbm', '3539919'), - (697, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'ndla2kbm', '3539920'), - (697, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'ndla2kbm', '3539921'), - (697, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ndla2kbm', '3583262'), - (697, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ndla2kbm', '3661369'), - (697, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndla2kbm', '3730212'), - (697, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ndla2kbm', '3793156'), - (697, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'ndla2kbm', '3803310'), - (697, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'ndla2kbm', '3806392'), - (697, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndla2kbm', '6045684'), - (698, 1442, 'not_attending', '2022-06-12 02:47:11', '2025-12-17 19:47:17', '4DnkGqym', '5397265'), - (698, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4DnkGqym', '5403967'), - (698, 1458, 'attending', '2022-06-19 23:10:34', '2025-12-17 19:47:17', '4DnkGqym', '5404786'), - (698, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4DnkGqym', '5405203'), - (698, 1466, 'attending', '2022-06-13 21:40:53', '2025-12-17 19:47:17', '4DnkGqym', '5406427'), - (698, 1476, 'attending', '2022-06-19 16:32:57', '2025-12-17 19:47:17', '4DnkGqym', '5408130'), - (698, 1478, 'not_attending', '2022-06-24 20:57:53', '2025-12-17 19:47:19', '4DnkGqym', '5408794'), - (698, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4DnkGqym', '5411699'), - (698, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4DnkGqym', '5412550'), - (698, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4DnkGqym', '5415046'), - (698, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4DnkGqym', '5422086'), - (698, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4DnkGqym', '5422406'), - (698, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4DnkGqym', '5424565'), - (698, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4DnkGqym', '5426882'), - (698, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4DnkGqym', '5427083'), - (698, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4DnkGqym', '5441125'), - (698, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4DnkGqym', '5441126'), - (698, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4DnkGqym', '5441128'), - (698, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4DnkGqym', '5446643'), - (698, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4DnkGqym', '5453325'), - (698, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4DnkGqym', '5454516'), - (698, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4DnkGqym', '5454605'), - (698, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4DnkGqym', '5455037'), - (698, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4DnkGqym', '5461278'), - (698, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4DnkGqym', '5469480'), - (698, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4DnkGqym', '5471073'), - (698, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '4DnkGqym', '5474663'), - (698, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4DnkGqym', '5482022'), - (698, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4DnkGqym', '5482793'), - (698, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4DnkGqym', '5488912'), - (698, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4DnkGqym', '5492192'), - (698, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4DnkGqym', '5493139'), - (698, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4DnkGqym', '5493200'), - (698, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4DnkGqym', '5502188'), - (698, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4DnkGqym', '5512862'), - (698, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4DnkGqym', '5513985'), - (698, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DnkGqym', '6045684'), - (699, 398, 'attending', '2021-01-18 21:46:27', '2025-12-17 19:47:49', 'LmpVLZk4', '3236453'), - (699, 548, 'attending', '2021-01-17 01:10:12', '2025-12-17 19:47:48', 'LmpVLZk4', '3403650'), - (699, 555, 'attending', '2021-01-23 04:01:32', '2025-12-17 19:47:49', 'LmpVLZk4', '3416576'), - (699, 558, 'attending', '2021-01-22 02:56:21', '2025-12-17 19:47:49', 'LmpVLZk4', '3418925'), - (699, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'LmpVLZk4', '3426074'), - (699, 568, 'attending', '2021-01-26 20:14:10', '2025-12-17 19:47:50', 'LmpVLZk4', '3430267'), - (699, 569, 'maybe', '2021-01-26 20:14:05', '2025-12-17 19:47:49', 'LmpVLZk4', '3432673'), - (699, 576, 'attending', '2021-02-01 21:15:20', '2025-12-17 19:47:50', 'LmpVLZk4', '3438748'), - (699, 579, 'attending', '2021-02-02 04:59:23', '2025-12-17 19:47:50', 'LmpVLZk4', '3440978'), - (699, 580, 'maybe', '2021-01-30 00:40:02', '2025-12-17 19:47:50', 'LmpVLZk4', '3444240'), - (699, 591, 'attending', '2021-02-07 00:46:03', '2025-12-17 19:47:50', 'LmpVLZk4', '3465880'), - (699, 598, 'attending', '2021-02-09 23:32:16', '2025-12-17 19:47:50', 'LmpVLZk4', '3468003'), - (699, 600, 'attending', '2021-02-21 18:31:49', '2025-12-17 19:47:50', 'LmpVLZk4', '3468125'), - (699, 602, 'attending', '2021-02-12 04:58:11', '2025-12-17 19:47:50', 'LmpVLZk4', '3470303'), - (699, 603, 'attending', '2021-02-19 01:35:11', '2025-12-17 19:47:50', 'LmpVLZk4', '3470304'), - (699, 604, 'attending', '2021-02-27 07:52:06', '2025-12-17 19:47:50', 'LmpVLZk4', '3470305'), - (699, 605, 'maybe', '2021-02-14 16:51:57', '2025-12-17 19:47:50', 'LmpVLZk4', '3470991'), - (699, 607, 'attending', '2021-02-19 01:34:54', '2025-12-17 19:47:50', 'LmpVLZk4', '3471882'), - (699, 615, 'attending', '2021-02-20 22:12:02', '2025-12-17 19:47:50', 'LmpVLZk4', '3490045'), - (699, 621, 'attending', '2021-03-06 15:41:06', '2025-12-17 19:47:51', 'LmpVLZk4', '3517815'), - (699, 622, 'not_attending', '2021-03-09 18:58:35', '2025-12-17 19:47:51', 'LmpVLZk4', '3517816'), - (699, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'LmpVLZk4', '3523941'), - (699, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'LmpVLZk4', '3533850'), - (699, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'LmpVLZk4', '3536632'), - (699, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'LmpVLZk4', '3536656'), - (699, 641, 'attending', '2021-04-03 21:53:55', '2025-12-17 19:47:44', 'LmpVLZk4', '3539916'), - (699, 642, 'attending', '2021-04-10 16:34:23', '2025-12-17 19:47:44', 'LmpVLZk4', '3539917'), - (699, 643, 'attending', '2021-04-16 01:56:21', '2025-12-17 19:47:45', 'LmpVLZk4', '3539918'), - (699, 644, 'not_attending', '2021-04-20 10:39:05', '2025-12-17 19:47:46', 'LmpVLZk4', '3539919'), - (699, 645, 'attending', '2021-05-08 18:46:16', '2025-12-17 19:47:46', 'LmpVLZk4', '3539920'), - (699, 646, 'not_attending', '2021-05-15 18:57:50', '2025-12-17 19:47:46', 'LmpVLZk4', '3539921'), - (699, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'LmpVLZk4', '3539922'), - (699, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'LmpVLZk4', '3539923'), - (699, 649, 'not_attending', '2021-03-18 21:09:12', '2025-12-17 19:47:51', 'LmpVLZk4', '3539927'), - (699, 650, 'not_attending', '2021-03-24 11:30:24', '2025-12-17 19:47:44', 'LmpVLZk4', '3539928'), - (699, 687, 'attending', '2021-03-10 21:29:44', '2025-12-17 19:47:51', 'LmpVLZk4', '3553405'), - (699, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'LmpVLZk4', '3582734'), - (699, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'LmpVLZk4', '3583262'), - (699, 708, 'attending', '2021-03-25 23:27:56', '2025-12-17 19:47:44', 'LmpVLZk4', '3587850'), - (699, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'LmpVLZk4', '3619523'), - (699, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'LmpVLZk4', '3661369'), - (699, 729, 'not_attending', '2021-04-28 17:33:55', '2025-12-17 19:47:46', 'LmpVLZk4', '3668075'), - (699, 730, 'not_attending', '2021-04-28 17:34:03', '2025-12-17 19:47:46', 'LmpVLZk4', '3668076'), - (699, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'LmpVLZk4', '3674262'), - (699, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'LmpVLZk4', '3677402'), - (699, 766, 'not_attending', '2021-05-12 22:26:07', '2025-12-17 19:47:46', 'LmpVLZk4', '3721383'), - (699, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'LmpVLZk4', '3730212'), - (699, 777, 'attending', '2021-04-28 17:34:46', '2025-12-17 19:47:46', 'LmpVLZk4', '3746248'), - (699, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'LmpVLZk4', '3793156'), - (699, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'LmpVLZk4', '3974109'), - (699, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'LmpVLZk4', '3975311'), - (699, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpVLZk4', '3975312'), - (699, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpVLZk4', '3994992'), - (699, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpVLZk4', '4014338'), - (699, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'LmpVLZk4', '4021848'), - (699, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpVLZk4', '4136744'), - (699, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'LmpVLZk4', '4136937'), - (699, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'LmpVLZk4', '4136938'), - (699, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpVLZk4', '4136947'), - (699, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpVLZk4', '4210314'), - (699, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpVLZk4', '4225444'), - (699, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpVLZk4', '4239259'), - (699, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'LmpVLZk4', '4240316'), - (699, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'LmpVLZk4', '4240317'), - (699, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'LmpVLZk4', '4240318'), - (699, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'LmpVLZk4', '4240320'), - (699, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpVLZk4', '4250163'), - (699, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'LmpVLZk4', '4275957'), - (699, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpVLZk4', '4277819'), - (699, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpVLZk4', '4301723'), - (699, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'LmpVLZk4', '4302093'), - (699, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpVLZk4', '4304151'), - (699, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'LmpVLZk4', '4345519'), - (699, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'LmpVLZk4', '4356801'), - (699, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpVLZk4', '4358025'), - (699, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'LmpVLZk4', '4366186'), - (699, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'LmpVLZk4', '4366187'), - (699, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'LmpVLZk4', '4402823'), - (699, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'LmpVLZk4', '4420735'), - (699, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'LmpVLZk4', '4420738'), - (699, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'LmpVLZk4', '4420739'), - (699, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'LmpVLZk4', '4420741'), - (699, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'LmpVLZk4', '4420744'), - (699, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'LmpVLZk4', '4420747'), - (699, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'LmpVLZk4', '4420748'), - (699, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'LmpVLZk4', '4420749'), - (699, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'LmpVLZk4', '4461883'), - (699, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpVLZk4', '4508342'), - (699, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpVLZk4', '4568602'), - (699, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'LmpVLZk4', '4572153'), - (699, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'LmpVLZk4', '4585962'), - (699, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'LmpVLZk4', '4596356'), - (699, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpVLZk4', '4598860'), - (699, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpVLZk4', '4598861'), - (699, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'LmpVLZk4', '4602797'), - (699, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'LmpVLZk4', '4637896'), - (699, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpVLZk4', '4642994'), - (699, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'LmpVLZk4', '4642995'), - (699, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpVLZk4', '4642996'), - (699, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpVLZk4', '4642997'), - (699, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'LmpVLZk4', '4645687'), - (699, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpVLZk4', '4645698'), - (699, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'LmpVLZk4', '4645704'), - (699, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'LmpVLZk4', '4645705'), - (699, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpVLZk4', '4668385'), - (699, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpVLZk4', '4694407'), - (699, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpVLZk4', '6045684'), - (700, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VmMzM3rA', '3517816'), - (700, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'VmMzM3rA', '3539916'), - (700, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VmMzM3rA', '3539927'), - (700, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VmMzM3rA', '3582734'), - (700, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VmMzM3rA', '3619523'), - (700, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VmMzM3rA', '3674262'), - (700, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VmMzM3rA', '3677402'), - (700, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMzM3rA', '6045684'), - (701, 1138, 'not_attending', '2021-11-29 22:40:59', '2025-12-17 19:47:37', '4PP5yPl4', '4675407'), - (701, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4PP5yPl4', '4694407'), - (701, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4PP5yPl4', '4736497'), - (701, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4PP5yPl4', '4736500'), - (701, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4PP5yPl4', '4746789'), - (701, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4PP5yPl4', '4753929'), - (701, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PP5yPl4', '6045684'), - (702, 2276, 'maybe', '2023-10-12 01:05:18', '2025-12-17 19:46:46', 'mM6lNBkA', '6453951'), - (702, 2299, 'not_attending', '2023-10-16 20:09:03', '2025-12-17 19:46:46', 'mM6lNBkA', '6472181'), - (702, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mM6lNBkA', '6482693'), - (702, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mM6lNBkA', '6484200'), - (702, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mM6lNBkA', '6484680'), - (702, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mM6lNBkA', '6507741'), - (702, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mM6lNBkA', '6514659'), - (702, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mM6lNBkA', '6514660'), - (702, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mM6lNBkA', '6519103'), - (702, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mM6lNBkA', '6535681'), - (702, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mM6lNBkA', '6584747'), - (702, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mM6lNBkA', '6587097'), - (702, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mM6lNBkA', '6609022'), - (702, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mM6lNBkA', '6632757'), - (702, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mM6lNBkA', '6644187'), - (702, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mM6lNBkA', '6648951'), - (702, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mM6lNBkA', '6648952'), - (702, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mM6lNBkA', '6655401'), - (702, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mM6lNBkA', '6661585'), - (702, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mM6lNBkA', '6661588'), - (702, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mM6lNBkA', '6661589'), - (702, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mM6lNBkA', '6699906'), - (702, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mM6lNBkA', '6701109'), - (702, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mM6lNBkA', '6705219'), - (702, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mM6lNBkA', '6710153'), - (702, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mM6lNBkA', '6711552'), - (702, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mM6lNBkA', '6711553'), - (703, 1857, 'not_attending', '2023-01-22 14:10:10', '2025-12-17 19:47:05', 'AQ1oVjNA', '5873973'), - (703, 1863, 'attending', '2023-01-23 20:13:56', '2025-12-17 19:47:06', 'AQ1oVjNA', '5877255'), - (703, 1865, 'attending', '2023-01-22 14:10:37', '2025-12-17 19:47:06', 'AQ1oVjNA', '5879676'), - (703, 1866, 'not_attending', '2023-01-22 14:10:17', '2025-12-17 19:47:05', 'AQ1oVjNA', '5880939'), - (703, 1873, 'not_attending', '2023-01-22 14:09:56', '2025-12-17 19:47:05', 'AQ1oVjNA', '5885295'), - (703, 1874, 'not_attending', '2023-01-21 23:59:46', '2025-12-17 19:47:05', 'AQ1oVjNA', '5887890'), - (703, 1875, 'attending', '2023-01-22 14:10:29', '2025-12-17 19:47:06', 'AQ1oVjNA', '5887908'), - (703, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AQ1oVjNA', '5888598'), - (703, 1877, 'not_attending', '2023-01-22 14:10:04', '2025-12-17 19:47:05', 'AQ1oVjNA', '5888693'), - (703, 1879, 'not_attending', '2023-01-28 22:29:38', '2025-12-17 19:47:06', 'AQ1oVjNA', '5893001'), - (703, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AQ1oVjNA', '5893260'), - (703, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AQ1oVjNA', '5899826'), - (703, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901055'), - (703, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901108'), - (703, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901126'), - (703, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901606'), - (703, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ1oVjNA', '6045684'), - (704, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ArrpbPqA', '5630968'), - (704, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArrpbPqA', '6045684'), - (705, 646, 'not_attending', '2021-05-13 00:01:49', '2025-12-17 19:47:46', '1ArED5Bm', '3539921'), - (705, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArED5Bm', '6045684'), - (706, 1362, 'attending', '2022-04-30 22:42:28', '2025-12-17 19:47:28', 'ArQKkjYm', '5260800'), - (706, 1369, 'attending', '2022-05-09 03:09:28', '2025-12-17 19:47:28', 'ArQKkjYm', '5262809'), - (706, 1374, 'attending', '2022-05-02 02:06:49', '2025-12-17 19:47:28', 'ArQKkjYm', '5269930'), - (706, 1378, 'attending', '2022-05-13 22:47:01', '2025-12-17 19:47:29', 'ArQKkjYm', '5271448'), - (706, 1379, 'attending', '2022-05-19 23:18:42', '2025-12-17 19:47:29', 'ArQKkjYm', '5271449'), - (706, 1380, 'not_attending', '2022-05-28 19:28:32', '2025-12-17 19:47:30', 'ArQKkjYm', '5271450'), - (706, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ArQKkjYm', '5276469'), - (706, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ArQKkjYm', '5278159'), - (706, 1389, 'attending', '2022-05-08 07:37:15', '2025-12-17 19:47:28', 'ArQKkjYm', '5278202'), - (706, 1407, 'attending', '2022-06-03 02:46:51', '2025-12-17 19:47:30', 'ArQKkjYm', '5363695'), - (706, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQKkjYm', '5365960'), - (706, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQKkjYm', '5368973'), - (706, 1422, 'attending', '2022-05-26 23:58:42', '2025-12-17 19:47:30', 'ArQKkjYm', '5375603'), - (706, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ArQKkjYm', '5378247'), - (706, 1430, 'attending', '2022-06-07 22:16:50', '2025-12-17 19:47:30', 'ArQKkjYm', '5389402'), - (706, 1431, 'attending', '2022-06-10 23:17:08', '2025-12-17 19:47:30', 'ArQKkjYm', '5389605'), - (706, 1442, 'attending', '2022-06-17 18:56:38', '2025-12-17 19:47:17', 'ArQKkjYm', '5397265'), - (706, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ArQKkjYm', '5403967'), - (706, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ArQKkjYm', '5404786'), - (706, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ArQKkjYm', '5405203'), - (706, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ArQKkjYm', '5411699'), - (706, 1482, 'attending', '2022-06-23 11:16:30', '2025-12-17 19:47:19', 'ArQKkjYm', '5412550'), - (706, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ArQKkjYm', '5415046'), - (706, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ArQKkjYm', '5422086'), - (706, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ArQKkjYm', '5422406'), - (706, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ArQKkjYm', '5424565'), - (706, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQKkjYm', '5426882'), - (706, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ArQKkjYm', '5427083'), - (706, 1511, 'not_attending', '2022-07-09 20:58:31', '2025-12-17 19:47:19', 'ArQKkjYm', '5437733'), - (706, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ArQKkjYm', '5441125'), - (706, 1514, 'attending', '2022-07-21 21:13:49', '2025-12-17 19:47:20', 'ArQKkjYm', '5441126'), - (706, 1515, 'attending', '2022-08-05 19:31:08', '2025-12-17 19:47:21', 'ArQKkjYm', '5441128'), - (706, 1516, 'attending', '2022-08-19 17:41:43', '2025-12-17 19:47:23', 'ArQKkjYm', '5441129'), - (706, 1517, 'attending', '2022-08-27 01:12:35', '2025-12-17 19:47:23', 'ArQKkjYm', '5441130'), - (706, 1518, 'maybe', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ArQKkjYm', '5441131'), - (706, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'ArQKkjYm', '5441132'), - (706, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQKkjYm', '5446643'), - (706, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQKkjYm', '5453325'), - (706, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQKkjYm', '5454516'), - (706, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQKkjYm', '5454605'), - (706, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQKkjYm', '5455037'), - (706, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQKkjYm', '5461278'), - (706, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQKkjYm', '5469480'), - (706, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQKkjYm', '5471073'), - (706, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ArQKkjYm', '5474663'), - (706, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQKkjYm', '5482022'), - (706, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQKkjYm', '5482793'), - (706, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQKkjYm', '5488912'), - (706, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQKkjYm', '5492192'), - (706, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQKkjYm', '5493139'), - (706, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQKkjYm', '5493200'), - (706, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQKkjYm', '5502188'), - (706, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ArQKkjYm', '5505059'), - (706, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ArQKkjYm', '5509055'), - (706, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ArQKkjYm', '5512862'), - (706, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ArQKkjYm', '5513985'), - (706, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ArQKkjYm', '5519981'), - (706, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ArQKkjYm', '5522550'), - (706, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ArQKkjYm', '5534683'), - (706, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'ArQKkjYm', '5537735'), - (706, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ArQKkjYm', '5540859'), - (706, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ArQKkjYm', '5546619'), - (706, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ArQKkjYm', '5555245'), - (706, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ArQKkjYm', '5557747'), - (706, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ArQKkjYm', '5560255'), - (706, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ArQKkjYm', '5562906'), - (706, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ArQKkjYm', '5600604'), - (706, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ArQKkjYm', '5605544'), - (706, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'ArQKkjYm', '5606737'), - (706, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ArQKkjYm', '5630960'), - (706, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ArQKkjYm', '5630961'), - (706, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ArQKkjYm', '5630962'), - (706, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ArQKkjYm', '5630966'), - (706, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ArQKkjYm', '5630967'), - (706, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ArQKkjYm', '5630968'), - (706, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ArQKkjYm', '5635406'), - (706, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ArQKkjYm', '5638765'), - (706, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ArQKkjYm', '5640097'), - (706, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ArQKkjYm', '5640843'), - (706, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ArQKkjYm', '5641521'), - (706, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ArQKkjYm', '5642818'), - (706, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ArQKkjYm', '5652395'), - (706, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ArQKkjYm', '5670445'), - (706, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ArQKkjYm', '5671637'), - (706, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ArQKkjYm', '5672329'), - (706, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ArQKkjYm', '5674057'), - (706, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ArQKkjYm', '5674060'), - (706, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ArQKkjYm', '5677461'), - (706, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ArQKkjYm', '5698046'), - (706, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ArQKkjYm', '5699760'), - (706, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ArQKkjYm', '5741601'), - (706, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ArQKkjYm', '5763458'), - (706, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ArQKkjYm', '5774172'), - (706, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'ArQKkjYm', '5818247'), - (706, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ArQKkjYm', '5819471'), - (706, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ArQKkjYm', '5827739'), - (706, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ArQKkjYm', '5844306'), - (706, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ArQKkjYm', '5850159'), - (706, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ArQKkjYm', '5858999'), - (706, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ArQKkjYm', '5871984'), - (706, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ArQKkjYm', '5876354'), - (706, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'ArQKkjYm', '5880939'), - (706, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ArQKkjYm', '5887890'), - (706, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ArQKkjYm', '5888598'), - (706, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ArQKkjYm', '5893260'), - (706, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQKkjYm', '6045684'), - (707, 1722, 'attending', '2022-10-28 19:12:43', '2025-12-17 19:47:14', 'daDMjbK4', '5630961'), - (707, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'daDMjbK4', '5630962'), - (707, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'daDMjbK4', '5630966'), - (707, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'daDMjbK4', '5630967'), - (707, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'daDMjbK4', '5630968'), - (707, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'daDMjbK4', '5642818'), - (707, 1765, 'maybe', '2022-10-30 16:31:58', '2025-12-17 19:47:14', 'daDMjbK4', '5672329'), - (707, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'daDMjbK4', '5698046'), - (707, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'daDMjbK4', '5699760'), - (707, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'daDMjbK4', '5741601'), - (707, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'daDMjbK4', '5763458'), - (707, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'daDMjbK4', '5774172'), - (707, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daDMjbK4', '6045684'), - (708, 406, 'attending', '2021-04-01 18:35:57', '2025-12-17 19:47:44', 'lAeXawzm', '3236464'), - (708, 641, 'attending', '2021-04-02 16:39:24', '2025-12-17 19:47:44', 'lAeXawzm', '3539916'), - (708, 642, 'attending', '2021-04-09 20:10:31', '2025-12-17 19:47:44', 'lAeXawzm', '3539917'), - (708, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'lAeXawzm', '3539918'), - (708, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'lAeXawzm', '3539919'), - (708, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'lAeXawzm', '3539920'), - (708, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'lAeXawzm', '3539921'), - (708, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'lAeXawzm', '3539922'), - (708, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'lAeXawzm', '3539923'), - (708, 700, 'attending', '2021-03-28 20:41:11', '2025-12-17 19:47:44', 'lAeXawzm', '3575725'), - (708, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'lAeXawzm', '3583262'), - (708, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'lAeXawzm', '3661369'), - (708, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'lAeXawzm', '3674262'), - (708, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'lAeXawzm', '3677402'), - (708, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'lAeXawzm', '3730212'), - (708, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'lAeXawzm', '3793156'), - (708, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAeXawzm', '6045684'), - (709, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mjjMya5m', '6361713'), - (709, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mjjMya5m', '6394631'), - (709, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mjjMya5m', '6431478'), - (709, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mjjMya5m', '6440863'), - (709, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mjjMya5m', '6445440'), - (709, 2274, 'not_attending', '2023-10-04 19:10:55', '2025-12-17 19:46:45', 'mjjMya5m', '6448287'), - (709, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mjjMya5m', '6453951'), - (709, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mjjMya5m', '6461696'), - (709, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mjjMya5m', '6462129'), - (709, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mjjMya5m', '6463218'), - (709, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mjjMya5m', '6472181'), - (709, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mjjMya5m', '6482693'), - (709, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mjjMya5m', '6484200'), - (709, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mjjMya5m', '6484680'), - (709, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mjjMya5m', '6507741'), - (709, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mjjMya5m', '6514659'), - (709, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mjjMya5m', '6514660'), - (709, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mjjMya5m', '6519103'), - (709, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mjjMya5m', '6535681'), - (709, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mjjMya5m', '6545076'), - (709, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mjjMya5m', '6584747'), - (709, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mjjMya5m', '6587097'), - (709, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mjjMya5m', '6609022'), - (709, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mjjMya5m', '6632757'), - (709, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mjjMya5m', '6644187'), - (709, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mjjMya5m', '6648951'), - (709, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mjjMya5m', '6648952'), - (709, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mjjMya5m', '6651141'), - (709, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mjjMya5m', '6655401'), - (709, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mjjMya5m', '6661585'), - (709, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mjjMya5m', '6661588'), - (709, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mjjMya5m', '6661589'), - (709, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mjjMya5m', '6699906'), - (709, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mjjMya5m', '6699913'), - (709, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mjjMya5m', '6701109'), - (709, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mjjMya5m', '6705219'), - (709, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mjjMya5m', '6710153'), - (709, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mjjMya5m', '6711552'), - (709, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mjjMya5m', '6711553'), - (709, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mjjMya5m', '6722688'), - (709, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mjjMya5m', '6730620'), - (709, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mjjMya5m', '6730642'), - (709, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mjjMya5m', '6740364'), - (709, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mjjMya5m', '6743829'), - (709, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mjjMya5m', '7030380'), - (709, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mjjMya5m', '7033677'), - (709, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mjjMya5m', '7035415'), - (709, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mjjMya5m', '7044715'), - (709, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mjjMya5m', '7050318'), - (709, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mjjMya5m', '7050319'), - (709, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mjjMya5m', '7050322'), - (709, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mjjMya5m', '7057804'), - (709, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mjjMya5m', '7072824'), - (709, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mjjMya5m', '7074348'), - (709, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mjjMya5m', '7089267'), - (709, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mjjMya5m', '7098747'), - (709, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mjjMya5m', '7113468'), - (709, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mjjMya5m', '7114856'), - (709, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mjjMya5m', '7114951'), - (709, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mjjMya5m', '7114955'), - (709, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mjjMya5m', '7114956'), - (709, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mjjMya5m', '7153615'), - (709, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mjjMya5m', '7159484'), - (709, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mjjMya5m', '7178446'), - (710, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Arb2RR8A', '6361710'), - (710, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Arb2RR8A', '6361711'), - (710, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Arb2RR8A', '6361713'), - (710, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Arb2RR8A', '6382573'), - (710, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Arb2RR8A', '6388604'), - (710, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Arb2RR8A', '6394629'), - (710, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Arb2RR8A', '6394631'), - (710, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'Arb2RR8A', '6431478'), - (711, 262, 'maybe', '2021-06-29 16:20:10', '2025-12-17 19:47:38', '8dBeWjv4', '3149493'), - (711, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '8dBeWjv4', '4136937'), - (711, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '8dBeWjv4', '4136938'), - (711, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8dBeWjv4', '4225444'), - (711, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '8dBeWjv4', '4229417'), - (711, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '8dBeWjv4', '4229418'), - (711, 895, 'maybe', '2021-07-01 01:08:07', '2025-12-17 19:47:39', '8dBeWjv4', '4229424'), - (711, 899, 'maybe', '2021-07-03 03:27:11', '2025-12-17 19:47:39', '8dBeWjv4', '4239259'), - (711, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8dBeWjv4', '4250163'), - (711, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dBeWjv4', '6045684'), - (712, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dxO05ND4', '5900202'), - (712, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dxO05ND4', '5962317'), - (712, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dxO05ND4', '5962318'), - (712, 1951, 'maybe', '2023-03-21 00:52:15', '2025-12-17 19:46:57', 'dxO05ND4', '5965933'), - (712, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'dxO05ND4', '6028191'), - (712, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dxO05ND4', '6040066'), - (712, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dxO05ND4', '6042717'), - (712, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dxO05ND4', '6044838'), - (712, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dxO05ND4', '6044839'), - (712, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxO05ND4', '6045684'), - (712, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'dxO05ND4', '6048955'), - (712, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dxO05ND4', '6050104'), - (712, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dxO05ND4', '6053195'), - (712, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dxO05ND4', '6053198'), - (712, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dxO05ND4', '6056085'), - (712, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dxO05ND4', '6056916'), - (712, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dxO05ND4', '6059290'), - (712, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dxO05ND4', '6060328'), - (712, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dxO05ND4', '6061037'), - (712, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dxO05ND4', '6061039'), - (712, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dxO05ND4', '6067245'), - (712, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dxO05ND4', '6068094'), - (712, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dxO05ND4', '6068252'), - (712, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dxO05ND4', '6068253'), - (712, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dxO05ND4', '6068254'), - (712, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dxO05ND4', '6068280'), - (712, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dxO05ND4', '6069093'), - (712, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dxO05ND4', '6072528'), - (712, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dxO05ND4', '6079840'), - (712, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dxO05ND4', '6083398'), - (712, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dxO05ND4', '6093504'), - (712, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dxO05ND4', '6097414'), - (712, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dxO05ND4', '6097442'), - (712, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dxO05ND4', '6097684'), - (712, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dxO05ND4', '6098762'), - (712, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dxO05ND4', '6101362'), - (712, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dxO05ND4', '6107314'), - (712, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dxO05ND4', '6120034'), - (712, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxO05ND4', '6337236'), - (712, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxO05ND4', '6337970'), - (712, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'dxO05ND4', '6338308'), - (712, 2160, 'attending', '2023-07-27 22:31:24', '2025-12-17 19:46:54', 'dxO05ND4', '6338358'), - (712, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxO05ND4', '6341710'), - (712, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxO05ND4', '6342044'), - (712, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxO05ND4', '6342298'), - (712, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxO05ND4', '6342591'), - (712, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dxO05ND4', '6343294'), - (712, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxO05ND4', '6347034'), - (712, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxO05ND4', '6347056'), - (712, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxO05ND4', '6353830'), - (712, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxO05ND4', '6353831'), - (712, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxO05ND4', '6357867'), - (712, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxO05ND4', '6358652'), - (712, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxO05ND4', '6361709'), - (712, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxO05ND4', '6361710'), - (712, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxO05ND4', '6361711'), - (712, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxO05ND4', '6361712'), - (712, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxO05ND4', '6361713'), - (712, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxO05ND4', '6382573'), - (712, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxO05ND4', '6388604'), - (712, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxO05ND4', '6394629'), - (712, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxO05ND4', '6394631'), - (712, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxO05ND4', '6431478'), - (713, 2306, 'maybe', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dNxOQMoA', '6484200'), - (713, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dNxOQMoA', '6514659'), - (713, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dNxOQMoA', '6514660'), - (713, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dNxOQMoA', '6584747'), - (713, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dNxOQMoA', '6587097'), - (713, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', 'dNxOQMoA', '6596617'), - (713, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dNxOQMoA', '6609022'), - (713, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dNxOQMoA', '6632757'), - (713, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dNxOQMoA', '6644187'), - (713, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dNxOQMoA', '6648951'), - (713, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dNxOQMoA', '6648952'), - (713, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dNxOQMoA', '6651141'), - (713, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dNxOQMoA', '6655401'), - (713, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dNxOQMoA', '6661585'), - (713, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dNxOQMoA', '6661588'), - (713, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dNxOQMoA', '6661589'), - (713, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dNxOQMoA', '6699906'), - (713, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dNxOQMoA', '6699913'), - (713, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dNxOQMoA', '6701109'), - (713, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dNxOQMoA', '6705219'), - (713, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dNxOQMoA', '6710153'), - (713, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dNxOQMoA', '6711552'), - (713, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dNxOQMoA', '6711553'), - (713, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dNxOQMoA', '6722688'), - (713, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dNxOQMoA', '6730620'), - (713, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dNxOQMoA', '6730642'), - (713, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dNxOQMoA', '6740364'), - (713, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dNxOQMoA', '6743829'), - (713, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dNxOQMoA', '7030380'), - (713, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dNxOQMoA', '7033677'), - (713, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dNxOQMoA', '7035415'), - (713, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dNxOQMoA', '7044715'), - (713, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dNxOQMoA', '7050318'), - (713, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dNxOQMoA', '7050319'), - (713, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dNxOQMoA', '7050322'), - (713, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dNxOQMoA', '7057804'), - (713, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dNxOQMoA', '7072824'), - (713, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dNxOQMoA', '7074348'), - (713, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dNxOQMoA', '7089267'), - (713, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dNxOQMoA', '7098747'), - (713, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dNxOQMoA', '7113468'), - (713, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dNxOQMoA', '7114856'), - (713, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dNxOQMoA', '7114951'), - (713, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dNxOQMoA', '7114955'), - (713, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dNxOQMoA', '7114956'), - (713, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dNxOQMoA', '7153615'), - (713, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dNxOQMoA', '7159484'), - (713, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dNxOQMoA', '7178446'), - (714, 850, 'attending', '2021-08-21 12:28:57', '2025-12-17 19:47:42', 'AgkZVxrA', '4015722'), - (714, 852, 'attending', '2021-09-01 17:29:35', '2025-12-17 19:47:43', 'AgkZVxrA', '4015724'), - (714, 854, 'not_attending', '2021-09-08 22:25:20', '2025-12-17 19:47:43', 'AgkZVxrA', '4015726'), - (714, 964, 'not_attending', '2021-08-23 22:49:14', '2025-12-17 19:47:42', 'AgkZVxrA', '4353160'), - (714, 971, 'not_attending', '2021-09-08 22:25:10', '2025-12-17 19:47:43', 'AgkZVxrA', '4356801'), - (714, 972, 'not_attending', '2021-08-20 19:50:55', '2025-12-17 19:47:42', 'AgkZVxrA', '4358025'), - (714, 973, 'attending', '2021-08-20 03:13:06', '2025-12-17 19:47:42', 'AgkZVxrA', '4366186'), - (714, 974, 'attending', '2021-08-24 12:23:34', '2025-12-17 19:47:42', 'AgkZVxrA', '4366187'), - (714, 976, 'attending', '2021-08-19 21:48:26', '2025-12-17 19:47:42', 'AgkZVxrA', '4373933'), - (714, 981, 'attending', '2021-08-24 12:24:03', '2025-12-17 19:47:42', 'AgkZVxrA', '4387305'), - (714, 983, 'attending', '2021-08-20 19:51:19', '2025-12-17 19:47:42', 'AgkZVxrA', '4390051'), - (714, 985, 'attending', '2021-08-21 18:33:37', '2025-12-17 19:47:42', 'AgkZVxrA', '4391748'), - (714, 987, 'attending', '2021-09-01 17:29:32', '2025-12-17 19:47:43', 'AgkZVxrA', '4402634'), - (714, 989, 'not_attending', '2021-09-09 19:54:46', '2025-12-17 19:47:43', 'AgkZVxrA', '4414282'), - (714, 990, 'attending', '2021-08-28 22:23:10', '2025-12-17 19:47:43', 'AgkZVxrA', '4420735'), - (714, 991, 'attending', '2021-08-28 22:23:20', '2025-12-17 19:47:43', 'AgkZVxrA', '4420738'), - (714, 992, 'attending', '2021-09-18 18:13:28', '2025-12-17 19:47:33', 'AgkZVxrA', '4420739'), - (714, 993, 'attending', '2021-09-23 18:37:25', '2025-12-17 19:47:34', 'AgkZVxrA', '4420741'), - (714, 994, 'attending', '2021-10-02 02:30:34', '2025-12-17 19:47:34', 'AgkZVxrA', '4420742'), - (714, 995, 'attending', '2021-10-09 16:13:40', '2025-12-17 19:47:34', 'AgkZVxrA', '4420744'), - (714, 996, 'attending', '2021-10-15 15:40:50', '2025-12-17 19:47:35', 'AgkZVxrA', '4420747'), - (714, 997, 'attending', '2021-10-23 15:19:37', '2025-12-17 19:47:35', 'AgkZVxrA', '4420748'), - (714, 998, 'attending', '2021-10-28 16:26:40', '2025-12-17 19:47:36', 'AgkZVxrA', '4420749'), - (714, 1000, 'attending', '2021-09-01 17:31:49', '2025-12-17 19:47:43', 'AgkZVxrA', '4424456'), - (714, 1001, 'not_attending', '2021-09-03 12:17:20', '2025-12-17 19:47:43', 'AgkZVxrA', '4424687'), - (714, 1014, 'attending', '2021-09-06 20:51:17', '2025-12-17 19:47:43', 'AgkZVxrA', '4439233'), - (714, 1015, 'attending', '2021-09-03 14:29:40', '2025-12-17 19:47:43', 'AgkZVxrA', '4440800'), - (714, 1016, 'attending', '2021-09-07 02:22:36', '2025-12-17 19:47:43', 'AgkZVxrA', '4441271'), - (714, 1017, 'attending', '2021-09-03 18:19:36', '2025-12-17 19:47:43', 'AgkZVxrA', '4441822'), - (714, 1019, 'attending', '2021-09-15 00:59:41', '2025-12-17 19:47:43', 'AgkZVxrA', '4450515'), - (714, 1020, 'not_attending', '2021-09-13 21:58:51', '2025-12-17 19:47:43', 'AgkZVxrA', '4451787'), - (714, 1021, 'attending', '2021-09-07 16:06:22', '2025-12-17 19:47:34', 'AgkZVxrA', '4451803'), - (714, 1022, 'attending', '2021-09-15 00:59:47', '2025-12-17 19:47:43', 'AgkZVxrA', '4458628'), - (714, 1023, 'not_attending', '2021-09-13 20:35:05', '2025-12-17 19:47:43', 'AgkZVxrA', '4461883'), - (714, 1024, 'attending', '2021-09-10 02:16:09', '2025-12-17 19:47:43', 'AgkZVxrA', '4462044'), - (714, 1025, 'attending', '2021-09-12 16:48:45', '2025-12-17 19:47:43', 'AgkZVxrA', '4462052'), - (714, 1026, 'attending', '2021-09-12 16:46:36', '2025-12-17 19:47:43', 'AgkZVxrA', '4472951'), - (714, 1028, 'attending', '2021-09-25 14:35:50', '2025-12-17 19:47:34', 'AgkZVxrA', '4472983'), - (714, 1029, 'attending', '2021-09-15 00:59:29', '2025-12-17 19:47:43', 'AgkZVxrA', '4473063'), - (714, 1030, 'attending', '2021-09-14 23:34:24', '2025-12-17 19:47:34', 'AgkZVxrA', '4473064'), - (714, 1034, 'not_attending', '2021-09-16 12:11:50', '2025-12-17 19:47:43', 'AgkZVxrA', '4486265'), - (714, 1049, 'attending', '2022-01-22 22:12:22', '2025-12-17 19:47:32', 'AgkZVxrA', '4496614'), - (714, 1052, 'attending', '2022-01-13 14:48:20', '2025-12-17 19:47:31', 'AgkZVxrA', '4496617'), - (714, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AgkZVxrA', '4508342'), - (714, 1072, 'not_attending', '2021-10-06 22:48:22', '2025-12-17 19:47:34', 'AgkZVxrA', '4516287'), - (714, 1073, 'attending', '2021-09-28 03:44:21', '2025-12-17 19:47:34', 'AgkZVxrA', '4518993'), - (714, 1074, 'attending', '2021-09-29 21:14:53', '2025-12-17 19:47:34', 'AgkZVxrA', '4528953'), - (714, 1076, 'attending', '2021-10-08 23:02:21', '2025-12-17 19:47:34', 'AgkZVxrA', '4539147'), - (714, 1077, 'not_attending', '2021-10-13 14:15:00', '2025-12-17 19:47:34', 'AgkZVxrA', '4540903'), - (714, 1078, 'attending', '2021-10-06 01:21:40', '2025-12-17 19:47:34', 'AgkZVxrA', '4541281'), - (714, 1079, 'not_attending', '2021-10-20 20:14:57', '2025-12-17 19:47:35', 'AgkZVxrA', '4563823'), - (714, 1081, 'not_attending', '2021-10-12 19:58:21', '2025-12-17 19:47:34', 'AgkZVxrA', '4564602'), - (714, 1082, 'not_attending', '2021-10-15 15:39:56', '2025-12-17 19:47:35', 'AgkZVxrA', '4566762'), - (714, 1086, 'not_attending', '2021-10-15 15:39:54', '2025-12-17 19:47:35', 'AgkZVxrA', '4568602'), - (714, 1087, 'not_attending', '2021-10-15 15:40:43', '2025-12-17 19:47:35', 'AgkZVxrA', '4572153'), - (714, 1089, 'not_attending', '2021-10-18 21:03:17', '2025-12-17 19:47:35', 'AgkZVxrA', '4574712'), - (714, 1090, 'maybe', '2021-10-16 16:19:53', '2025-12-17 19:47:35', 'AgkZVxrA', '4574713'), - (714, 1091, 'not_attending', '2021-10-18 21:03:15', '2025-12-17 19:47:35', 'AgkZVxrA', '4575829'), - (714, 1092, 'attending', '2021-10-21 13:12:09', '2025-12-17 19:47:35', 'AgkZVxrA', '4582837'), - (714, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'AgkZVxrA', '4585962'), - (714, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'AgkZVxrA', '4596356'), - (714, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AgkZVxrA', '4598860'), - (714, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AgkZVxrA', '4598861'), - (714, 1099, 'not_attending', '2021-11-06 15:06:33', '2025-12-17 19:47:36', 'AgkZVxrA', '4602797'), - (714, 1105, 'attending', '2021-11-10 23:36:32', '2025-12-17 19:47:36', 'AgkZVxrA', '4618567'), - (714, 1109, 'attending', '2021-11-13 20:14:16', '2025-12-17 19:47:37', 'AgkZVxrA', '4635221'), - (714, 1111, 'attending', '2021-11-21 00:25:12', '2025-12-17 19:47:31', 'AgkZVxrA', '4635279'), - (714, 1112, 'attending', '2021-11-24 15:04:17', '2025-12-17 19:47:37', 'AgkZVxrA', '4635420'), - (714, 1114, 'not_attending', '2021-11-13 21:21:39', '2025-12-17 19:47:36', 'AgkZVxrA', '4637896'), - (714, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AgkZVxrA', '4642994'), - (714, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AgkZVxrA', '4642995'), - (714, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AgkZVxrA', '4642996'), - (714, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AgkZVxrA', '4642997'), - (714, 1126, 'attending', '2021-12-08 14:56:26', '2025-12-17 19:47:38', 'AgkZVxrA', '4645687'), - (714, 1127, 'attending', '2021-11-30 16:03:22', '2025-12-17 19:47:38', 'AgkZVxrA', '4645698'), - (714, 1128, 'attending', '2021-11-20 18:47:10', '2025-12-17 19:47:37', 'AgkZVxrA', '4645704'), - (714, 1129, 'attending', '2021-11-27 23:29:37', '2025-12-17 19:47:37', 'AgkZVxrA', '4645705'), - (714, 1130, 'attending', '2021-12-04 17:12:41', '2025-12-17 19:47:37', 'AgkZVxrA', '4658824'), - (714, 1131, 'attending', '2021-12-16 18:45:22', '2025-12-17 19:47:31', 'AgkZVxrA', '4658825'), - (714, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AgkZVxrA', '4668385'), - (714, 1136, 'attending', '2021-11-26 01:17:42', '2025-12-17 19:47:37', 'AgkZVxrA', '4670473'), - (714, 1145, 'not_attending', '2021-12-10 01:05:55', '2025-12-17 19:47:38', 'AgkZVxrA', '4691157'), - (714, 1146, 'not_attending', '2021-12-10 22:57:25', '2025-12-17 19:47:38', 'AgkZVxrA', '4692841'), - (714, 1149, 'attending', '2021-12-08 14:53:53', '2025-12-17 19:47:38', 'AgkZVxrA', '4694407'), - (714, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'AgkZVxrA', '4706262'), - (714, 1153, 'not_attending', '2022-01-19 23:14:46', '2025-12-17 19:47:32', 'AgkZVxrA', '4708707'), - (714, 1163, 'maybe', '2022-01-02 07:08:36', '2025-12-17 19:47:31', 'AgkZVxrA', '4724206'), - (714, 1166, 'attending', '2022-01-11 01:12:48', '2025-12-17 19:47:31', 'AgkZVxrA', '4725109'), - (714, 1172, 'attending', '2022-01-11 01:18:27', '2025-12-17 19:47:32', 'AgkZVxrA', '4735348'), - (714, 1173, 'attending', '2022-01-04 19:09:22', '2025-12-17 19:47:31', 'AgkZVxrA', '4736495'), - (714, 1174, 'attending', '2022-01-13 14:48:25', '2025-12-17 19:47:31', 'AgkZVxrA', '4736496'), - (714, 1175, 'attending', '2022-01-11 01:18:35', '2025-12-17 19:47:32', 'AgkZVxrA', '4736497'), - (714, 1176, 'attending', '2022-02-03 02:41:19', '2025-12-17 19:47:32', 'AgkZVxrA', '4736498'), - (714, 1177, 'attending', '2022-02-11 19:49:08', '2025-12-17 19:47:32', 'AgkZVxrA', '4736499'), - (714, 1178, 'attending', '2022-01-27 01:01:30', '2025-12-17 19:47:32', 'AgkZVxrA', '4736500'), - (714, 1179, 'not_attending', '2022-02-19 17:54:05', '2025-12-17 19:47:32', 'AgkZVxrA', '4736501'), - (714, 1180, 'attending', '2022-02-26 23:29:50', '2025-12-17 19:47:33', 'AgkZVxrA', '4736502'), - (714, 1181, 'attending', '2022-03-05 22:49:03', '2025-12-17 19:47:33', 'AgkZVxrA', '4736503'), - (714, 1182, 'not_attending', '2022-03-11 20:32:00', '2025-12-17 19:47:33', 'AgkZVxrA', '4736504'), - (714, 1185, 'attending', '2022-01-15 02:25:24', '2025-12-17 19:47:31', 'AgkZVxrA', '4746789'), - (714, 1186, 'attending', '2022-01-13 14:48:15', '2025-12-17 19:47:31', 'AgkZVxrA', '4747800'), - (714, 1187, 'attending', '2022-01-11 22:56:22', '2025-12-17 19:47:31', 'AgkZVxrA', '4753907'), - (714, 1188, 'attending', '2022-01-11 22:56:00', '2025-12-17 19:47:31', 'AgkZVxrA', '4753929'), - (714, 1190, 'not_attending', '2022-01-13 14:47:09', '2025-12-17 19:47:31', 'AgkZVxrA', '4757377'), - (714, 1196, 'attending', '2022-01-21 15:08:56', '2025-12-17 19:47:32', 'AgkZVxrA', '4765583'), - (714, 1210, 'attending', '2022-01-24 00:26:22', '2025-12-17 19:47:32', 'AgkZVxrA', '4776927'), - (714, 1211, 'not_attending', '2022-01-28 23:08:09', '2025-12-17 19:47:32', 'AgkZVxrA', '4780754'), - (714, 1213, 'attending', '2022-02-08 18:52:26', '2025-12-17 19:47:32', 'AgkZVxrA', '4780760'), - (714, 1222, 'attending', '2022-02-17 00:28:55', '2025-12-17 19:47:32', 'AgkZVxrA', '5015628'), - (714, 1225, 'attending', '2022-02-03 02:41:14', '2025-12-17 19:47:32', 'AgkZVxrA', '5019063'), - (714, 1229, 'attending', '2022-02-19 00:38:17', '2025-12-17 19:47:32', 'AgkZVxrA', '5034963'), - (714, 1232, 'attending', '2022-02-09 14:43:25', '2025-12-17 19:47:32', 'AgkZVxrA', '5038850'), - (714, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AgkZVxrA', '5045826'), - (714, 1239, 'attending', '2022-03-02 19:08:01', '2025-12-17 19:47:33', 'AgkZVxrA', '5052238'), - (714, 1244, 'attending', '2022-02-25 23:20:31', '2025-12-17 19:47:33', 'AgkZVxrA', '5060490'), - (714, 1245, 'maybe', '2022-03-02 19:08:17', '2025-12-17 19:47:33', 'AgkZVxrA', '5061301'), - (714, 1259, 'attending', '2022-03-11 20:32:39', '2025-12-17 19:47:33', 'AgkZVxrA', '5132533'), - (714, 1272, 'attending', '2022-03-17 00:12:08', '2025-12-17 19:47:25', 'AgkZVxrA', '5186582'), - (714, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'AgkZVxrA', '5186583'), - (714, 1274, 'attending', '2022-04-02 14:13:04', '2025-12-17 19:47:26', 'AgkZVxrA', '5186585'), - (714, 1277, 'not_attending', '2022-03-17 00:11:47', '2025-12-17 19:47:25', 'AgkZVxrA', '5186865'), - (714, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'AgkZVxrA', '5190437'), - (714, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgkZVxrA', '5195095'), - (714, 1297, 'attending', '2022-04-02 14:13:17', '2025-12-17 19:47:25', 'AgkZVxrA', '5215989'), - (714, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgkZVxrA', '5223686'), - (714, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgkZVxrA', '5227432'), - (714, 1311, 'not_attending', '2022-04-08 02:44:27', '2025-12-17 19:47:27', 'AgkZVxrA', '5231430'), - (714, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'AgkZVxrA', '5231461'), - (714, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgkZVxrA', '5247467'), - (714, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', 'AgkZVxrA', '5249631'), - (714, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgkZVxrA', '5260800'), - (714, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgkZVxrA', '5269930'), - (714, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgkZVxrA', '5271448'), - (714, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'AgkZVxrA', '5271449'), - (714, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgkZVxrA', '5276469'), - (714, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgkZVxrA', '5278159'), - (714, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AgkZVxrA', '5363695'), - (714, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AgkZVxrA', '5365960'), - (714, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AgkZVxrA', '5368973'), - (714, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AgkZVxrA', '5378247'), - (714, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'AgkZVxrA', '5389605'), - (714, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AgkZVxrA', '5397265'), - (714, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AgkZVxrA', '5403967'), - (714, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgkZVxrA', '5404786'), - (714, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgkZVxrA', '5405203'), - (714, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AgkZVxrA', '5411699'), - (714, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AgkZVxrA', '5412550'), - (714, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AgkZVxrA', '5415046'), - (714, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgkZVxrA', '5422086'), - (714, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgkZVxrA', '5422406'), - (714, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgkZVxrA', '5424565'), - (714, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgkZVxrA', '5426882'), - (714, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgkZVxrA', '5427083'), - (714, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AgkZVxrA', '5441125'), - (714, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AgkZVxrA', '5441126'), - (714, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AgkZVxrA', '5441128'), - (714, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AgkZVxrA', '5441131'), - (714, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AgkZVxrA', '5441132'), - (714, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgkZVxrA', '5446643'), - (714, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgkZVxrA', '5453325'), - (714, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgkZVxrA', '5454516'), - (714, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgkZVxrA', '5454605'), - (714, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgkZVxrA', '5455037'), - (714, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgkZVxrA', '5461278'), - (714, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgkZVxrA', '5469480'), - (714, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgkZVxrA', '5471073'), - (714, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AgkZVxrA', '5474663'), - (714, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgkZVxrA', '5482022'), - (714, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgkZVxrA', '5482793'), - (714, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgkZVxrA', '5488912'), - (714, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgkZVxrA', '5492192'), - (714, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgkZVxrA', '5493139'), - (714, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgkZVxrA', '5493200'), - (714, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgkZVxrA', '5502188'), - (714, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AgkZVxrA', '5505059'), - (714, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AgkZVxrA', '5509055'), - (714, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgkZVxrA', '5512862'), - (714, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgkZVxrA', '5513985'), - (714, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'AgkZVxrA', '5519981'), - (714, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AgkZVxrA', '5522550'), - (714, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AgkZVxrA', '5534683'), - (714, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'AgkZVxrA', '5537735'), - (714, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AgkZVxrA', '5540859'), - (714, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AgkZVxrA', '5546619'), - (714, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AgkZVxrA', '5555245'), - (714, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AgkZVxrA', '5557747'), - (714, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AgkZVxrA', '5560255'), - (714, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AgkZVxrA', '5562906'), - (714, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AgkZVxrA', '5600604'), - (714, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AgkZVxrA', '5605544'), - (714, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'AgkZVxrA', '5606737'), - (714, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AgkZVxrA', '5635406'), - (714, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AgkZVxrA', '5638765'), - (714, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AgkZVxrA', '5640843'), - (714, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AgkZVxrA', '5641521'), - (714, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AgkZVxrA', '5652395'), - (714, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AgkZVxrA', '6045684'), - (715, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mR09Xw54', '5880943'), - (715, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mR09Xw54', '5900202'), - (715, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mR09Xw54', '5900203'), - (715, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'mR09Xw54', '5910528'), - (715, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'mR09Xw54', '5962317'), - (715, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'mR09Xw54', '5962318'), - (715, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mR09Xw54', '5965933'), - (715, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mR09Xw54', '5972815'), - (715, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mR09Xw54', '5974016'), - (715, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mR09Xw54', '5981515'), - (715, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mR09Xw54', '5993516'), - (715, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mR09Xw54', '5998939'), - (715, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mR09Xw54', '6028191'), - (715, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mR09Xw54', '6040066'), - (715, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mR09Xw54', '6042717'), - (715, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mR09Xw54', '6044838'), - (715, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mR09Xw54', '6044839'), - (715, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR09Xw54', '6045684'), - (715, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'mR09Xw54', '6048955'), - (715, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mR09Xw54', '6050104'), - (715, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mR09Xw54', '6053195'), - (715, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mR09Xw54', '6053198'), - (715, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mR09Xw54', '6056085'), - (715, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mR09Xw54', '6056916'), - (715, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mR09Xw54', '6059290'), - (715, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mR09Xw54', '6060328'), - (715, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mR09Xw54', '6061037'), - (715, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mR09Xw54', '6061039'), - (715, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mR09Xw54', '6067245'), - (715, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mR09Xw54', '6068094'), - (715, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mR09Xw54', '6068252'), - (715, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mR09Xw54', '6068253'), - (715, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mR09Xw54', '6068254'), - (715, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mR09Xw54', '6068280'), - (715, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mR09Xw54', '6069093'), - (715, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mR09Xw54', '6072528'), - (715, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mR09Xw54', '6079840'), - (715, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mR09Xw54', '6083398'), - (715, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mR09Xw54', '6093504'), - (715, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mR09Xw54', '6097414'), - (715, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mR09Xw54', '6097442'), - (715, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mR09Xw54', '6097684'), - (715, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mR09Xw54', '6098762'), - (715, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mR09Xw54', '6101362'), - (715, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mR09Xw54', '6107314'), - (715, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mR09Xw54', '6120034'), - (716, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd2jYaY9d', '5441128'), - (716, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd2jYaY9d', '5441131'), - (716, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd2jYaY9d', '5441132'), - (716, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd2jYaY9d', '5461278'), - (716, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd2jYaY9d', '5469480'), - (716, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd2jYaY9d', '5471073'), - (716, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'd2jYaY9d', '5474663'), - (716, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd2jYaY9d', '5482022'), - (716, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd2jYaY9d', '5482793'), - (716, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd2jYaY9d', '5488912'), - (716, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd2jYaY9d', '5492192'), - (716, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd2jYaY9d', '5493139'), - (716, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd2jYaY9d', '5493200'), - (716, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd2jYaY9d', '5502188'), - (716, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd2jYaY9d', '5505059'), - (716, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd2jYaY9d', '5509055'), - (716, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd2jYaY9d', '5512862'), - (716, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd2jYaY9d', '5513985'), - (716, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd2jYaY9d', '5519981'), - (716, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd2jYaY9d', '5522550'), - (716, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd2jYaY9d', '5534683'), - (716, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd2jYaY9d', '5537735'), - (716, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd2jYaY9d', '5540859'), - (716, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd2jYaY9d', '5546619'), - (716, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd2jYaY9d', '5555245'), - (716, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd2jYaY9d', '5557747'), - (716, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd2jYaY9d', '5560255'), - (716, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd2jYaY9d', '5562906'), - (716, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd2jYaY9d', '5600604'), - (716, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd2jYaY9d', '5605544'), - (716, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'd2jYaY9d', '5606737'), - (716, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd2jYaY9d', '5635406'), - (716, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd2jYaY9d', '5638765'), - (716, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd2jYaY9d', '5640843'), - (716, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2jYaY9d', '6045684'), - (717, 857, 'maybe', '2021-11-24 04:52:28', '2025-12-17 19:47:37', '4E5P7kX4', '4015731'), - (717, 1056, 'maybe', '2022-01-08 15:19:35', '2025-12-17 19:47:31', '4E5P7kX4', '4496622'), - (717, 1099, 'attending', '2021-11-06 15:39:02', '2025-12-17 19:47:36', '4E5P7kX4', '4602797'), - (717, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4E5P7kX4', '4637896'), - (717, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4E5P7kX4', '4642994'), - (717, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4E5P7kX4', '4642995'), - (717, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4E5P7kX4', '4642996'), - (717, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4E5P7kX4', '4642997'), - (717, 1122, 'maybe', '2021-11-24 04:53:30', '2025-12-17 19:47:37', '4E5P7kX4', '4644023'), - (717, 1126, 'attending', '2021-12-11 17:13:31', '2025-12-17 19:47:38', '4E5P7kX4', '4645687'), - (717, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4E5P7kX4', '4645698'), - (717, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4E5P7kX4', '4645704'), - (717, 1129, 'maybe', '2021-11-27 17:39:36', '2025-12-17 19:47:37', '4E5P7kX4', '4645705'), - (717, 1130, 'attending', '2021-12-04 22:36:20', '2025-12-17 19:47:37', '4E5P7kX4', '4658824'), - (717, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4E5P7kX4', '4668385'), - (717, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4E5P7kX4', '4694407'), - (717, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '4E5P7kX4', '4706262'), - (717, 1163, 'attending', '2022-01-08 15:19:41', '2025-12-17 19:47:31', '4E5P7kX4', '4724206'), - (717, 1165, 'attending', '2022-01-04 02:30:17', '2025-12-17 19:47:31', '4E5P7kX4', '4724210'), - (717, 1174, 'attending', '2022-01-15 19:45:21', '2025-12-17 19:47:31', '4E5P7kX4', '4736496'), - (717, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4E5P7kX4', '4736497'), - (717, 1177, 'attending', '2022-02-12 23:03:00', '2025-12-17 19:47:32', '4E5P7kX4', '4736499'), - (717, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4E5P7kX4', '4736500'), - (717, 1179, 'attending', '2022-02-19 20:04:42', '2025-12-17 19:47:32', '4E5P7kX4', '4736501'), - (717, 1180, 'attending', '2022-02-26 22:38:41', '2025-12-17 19:47:33', '4E5P7kX4', '4736502'), - (717, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4E5P7kX4', '4736503'), - (717, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4E5P7kX4', '4736504'), - (717, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4E5P7kX4', '4746789'), - (717, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4E5P7kX4', '4753929'), - (717, 1222, 'attending', '2022-02-16 21:51:55', '2025-12-17 19:47:32', '4E5P7kX4', '5015628'), - (717, 1232, 'attending', '2022-02-09 03:50:23', '2025-12-17 19:47:32', '4E5P7kX4', '5038850'), - (717, 1236, 'attending', '2022-02-17 22:14:02', '2025-12-17 19:47:32', '4E5P7kX4', '5045826'), - (717, 1238, 'attending', '2022-02-24 00:28:39', '2025-12-17 19:47:32', '4E5P7kX4', '5052236'), - (717, 1240, 'attending', '2022-03-16 21:10:03', '2025-12-17 19:47:33', '4E5P7kX4', '5052239'), - (717, 1242, 'attending', '2022-03-30 22:14:42', '2025-12-17 19:47:25', '4E5P7kX4', '5052241'), - (717, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4E5P7kX4', '5132533'), - (717, 1272, 'attending', '2022-03-26 20:53:25', '2025-12-17 19:47:25', '4E5P7kX4', '5186582'), - (717, 1273, 'attending', '2022-03-26 22:02:05', '2025-12-17 19:47:25', '4E5P7kX4', '5186583'), - (717, 1274, 'attending', '2022-04-02 15:33:31', '2025-12-17 19:47:26', '4E5P7kX4', '5186585'), - (717, 1276, 'attending', '2022-03-27 22:45:37', '2025-12-17 19:47:25', '4E5P7kX4', '5186820'), - (717, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4E5P7kX4', '5190437'), - (717, 1284, 'attending', '2022-04-16 15:24:55', '2025-12-17 19:47:27', '4E5P7kX4', '5195095'), - (717, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4E5P7kX4', '5215989'), - (717, 1304, 'maybe', '2022-04-06 21:49:39', '2025-12-17 19:47:26', '4E5P7kX4', '5223468'), - (717, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4E5P7kX4', '5223686'), - (717, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4E5P7kX4', '5227432'), - (717, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4E5P7kX4', '5247467'), - (717, 1360, 'attending', '2022-04-26 23:24:40', '2025-12-17 19:47:27', '4E5P7kX4', '5260197'), - (717, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4E5P7kX4', '5260800'), - (717, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4E5P7kX4', '5269930'), - (717, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4E5P7kX4', '5271448'), - (717, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4E5P7kX4', '5271449'), - (717, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4E5P7kX4', '5276469'), - (717, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', '4E5P7kX4', '5277078'), - (717, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4E5P7kX4', '5278159'), - (717, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4E5P7kX4', '5363695'), - (717, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4E5P7kX4', '5365960'), - (717, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4E5P7kX4', '5368973'), - (717, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4E5P7kX4', '5378247'), - (717, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4E5P7kX4', '5389605'), - (717, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4E5P7kX4', '5397265'), - (717, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4E5P7kX4', '5403967'), - (717, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4E5P7kX4', '5404786'), - (717, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4E5P7kX4', '5405203'), - (717, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4E5P7kX4', '5411699'), - (717, 1482, 'attending', '2022-06-25 22:25:04', '2025-12-17 19:47:19', '4E5P7kX4', '5412550'), - (717, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4E5P7kX4', '5415046'), - (717, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4E5P7kX4', '5422086'), - (717, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4E5P7kX4', '5422406'), - (717, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4E5P7kX4', '5424565'), - (717, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4E5P7kX4', '5426882'), - (717, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4E5P7kX4', '5427083'), - (717, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4E5P7kX4', '5441125'), - (717, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4E5P7kX4', '5441126'), - (717, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4E5P7kX4', '5441128'), - (717, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4E5P7kX4', '5446643'), - (717, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4E5P7kX4', '5453325'), - (717, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4E5P7kX4', '5454516'), - (717, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4E5P7kX4', '5454605'), - (717, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4E5P7kX4', '5455037'), - (717, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4E5P7kX4', '5461278'), - (717, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4E5P7kX4', '5469480'), - (717, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4E5P7kX4', '5471073'), - (717, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4E5P7kX4', '5474663'), - (717, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4E5P7kX4', '5482022'), - (717, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4E5P7kX4', '5482793'), - (717, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4E5P7kX4', '5488912'), - (717, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4E5P7kX4', '5492192'), - (717, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4E5P7kX4', '5493139'), - (717, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4E5P7kX4', '5493200'), - (717, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4E5P7kX4', '5502188'), - (717, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4E5P7kX4', '5512862'), - (717, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4E5P7kX4', '5513985'), - (717, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E5P7kX4', '6045684'), - (718, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'myx78L1d', '5186582'), - (718, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'myx78L1d', '5186583'), - (718, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'myx78L1d', '5186585'), - (718, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'myx78L1d', '5190437'), - (718, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'myx78L1d', '5195095'), - (718, 1285, 'not_attending', '2022-03-21 15:41:48', '2025-12-17 19:47:25', 'myx78L1d', '5196763'), - (718, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'myx78L1d', '5199460'), - (718, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'myx78L1d', '5215989'), - (718, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'myx78L1d', '5223686'), - (718, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'myx78L1d', '5227432'), - (718, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'myx78L1d', '5247467'), - (718, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'myx78L1d', '5260800'), - (718, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'myx78L1d', '5269930'), - (718, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'myx78L1d', '5271448'), - (718, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'myx78L1d', '5271449'), - (718, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'myx78L1d', '5276469'), - (718, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'myx78L1d', '5278159'), - (718, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'myx78L1d', '5363695'), - (718, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'myx78L1d', '5365960'), - (718, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'myx78L1d', '5368973'), - (718, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'myx78L1d', '5378247'), - (718, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'myx78L1d', '5389605'), - (718, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'myx78L1d', '5397265'), - (718, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myx78L1d', '6045684'), - (719, 507, 'attending', '2020-12-20 21:39:01', '2025-12-17 19:47:48', 'O4ZrXoe4', '3324148'), - (719, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'O4ZrXoe4', '3351539'), - (719, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'O4ZrXoe4', '3386848'), - (719, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'O4ZrXoe4', '3389527'), - (719, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'O4ZrXoe4', '3396499'), - (719, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'O4ZrXoe4', '3403650'), - (719, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'O4ZrXoe4', '3406988'), - (719, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'O4ZrXoe4', '3416576'), - (719, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'O4ZrXoe4', '3430267'), - (719, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4ZrXoe4', '6045684'), - (720, 3014, 'attending', '2025-04-05 03:45:47', '2025-12-17 19:46:20', '41qKwzE4', '7869185'), - (720, 3016, 'attending', '2025-04-18 14:21:31', '2025-12-17 19:46:20', '41qKwzE4', '7869187'), - (720, 3067, 'attending', '2025-03-31 00:17:04', '2025-12-17 19:46:19', '41qKwzE4', '7894745'), - (720, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', '41qKwzE4', '7897784'), - (720, 3075, 'attending', '2025-04-11 15:07:52', '2025-12-17 19:46:20', '41qKwzE4', '7898896'), - (720, 3076, 'attending', '2025-04-06 16:40:53', '2025-12-17 19:46:20', '41qKwzE4', '7899007'), - (720, 3078, 'attending', '2025-04-06 02:48:45', '2025-12-17 19:46:20', '41qKwzE4', '7901213'), - (720, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '41qKwzE4', '7904777'), - (720, 3090, 'attending', '2025-04-17 19:37:58', '2025-12-17 19:46:20', '41qKwzE4', '7914315'), - (720, 3094, 'attending', '2025-04-26 03:36:31', '2025-12-17 19:46:21', '41qKwzE4', '8342292'), - (720, 3095, 'attending', '2025-05-03 17:38:13', '2025-12-17 19:46:20', '41qKwzE4', '8342293'), - (720, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '41qKwzE4', '8349164'), - (720, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '41qKwzE4', '8349545'), - (720, 3106, 'maybe', '2025-04-29 01:06:01', '2025-12-17 19:46:20', '41qKwzE4', '8349552'), - (720, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '41qKwzE4', '8353584'), - (720, 3121, 'maybe', '2025-05-10 14:44:56', '2025-12-17 19:46:21', '41qKwzE4', '8362730'), - (720, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '41qKwzE4', '8368028'), - (720, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '41qKwzE4', '8368029'), - (720, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '41qKwzE4', '8388462'), - (720, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '41qKwzE4', '8400273'), - (720, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '41qKwzE4', '8400274'), - (720, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '41qKwzE4', '8400275'), - (720, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '41qKwzE4', '8400276'), - (720, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '41qKwzE4', '8404977'), - (720, 3175, 'not_attending', '2025-06-14 21:06:28', '2025-12-17 19:46:15', '41qKwzE4', '8410815'), - (720, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '41qKwzE4', '8430783'), - (720, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '41qKwzE4', '8430784'), - (720, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '41qKwzE4', '8430799'), - (720, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '41qKwzE4', '8430800'), - (720, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '41qKwzE4', '8430801'), - (720, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '41qKwzE4', '8438709'), - (720, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '41qKwzE4', '8457738'), - (720, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '41qKwzE4', '8459566'), - (720, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '41qKwzE4', '8459567'), - (720, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '41qKwzE4', '8461032'), - (720, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '41qKwzE4', '8477877'), - (720, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '41qKwzE4', '8485688'), - (721, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd3R9xke4', '4736497'), - (721, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd3R9xke4', '4736499'), - (721, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'd3R9xke4', '4736500'), - (721, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd3R9xke4', '4736503'), - (721, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd3R9xke4', '4736504'), - (721, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'd3R9xke4', '4746789'), - (721, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'd3R9xke4', '4753929'), - (721, 1213, 'attending', '2022-02-06 22:59:56', '2025-12-17 19:47:32', 'd3R9xke4', '4780760'), - (721, 1214, 'attending', '2022-02-09 13:37:00', '2025-12-17 19:47:32', 'd3R9xke4', '4780761'), - (721, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd3R9xke4', '5038850'), - (721, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd3R9xke4', '5045826'), - (721, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd3R9xke4', '5132533'), - (721, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3R9xke4', '6045684'), - (722, 2491, 'attending', '2024-03-07 05:49:17', '2025-12-17 19:46:44', 'myxqLX0d', '7050319'), - (722, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'myxqLX0d', '7057804'), - (722, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'myxqLX0d', '7072824'), - (722, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'myxqLX0d', '7074348'), - (722, 2536, 'attending', '2024-03-14 02:13:06', '2025-12-17 19:46:33', 'myxqLX0d', '7077689'), - (722, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'myxqLX0d', '7089267'), - (722, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'myxqLX0d', '7098747'), - (722, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'myxqLX0d', '7113468'), - (722, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'myxqLX0d', '7114856'), - (722, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'myxqLX0d', '7114951'), - (722, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'myxqLX0d', '7114955'), - (722, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'myxqLX0d', '7114956'), - (722, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'myxqLX0d', '7114957'), - (722, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'myxqLX0d', '7153615'), - (722, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'myxqLX0d', '7159484'), - (722, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'myxqLX0d', '7178446'), - (722, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'myxqLX0d', '7220467'), - (722, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'myxqLX0d', '7240354'), - (722, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'myxqLX0d', '7251633'), - (722, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'myxqLX0d', '7302674'), - (723, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'ydwwL1kd', '3236465'), - (723, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'ydwwL1kd', '3539916'), - (723, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'ydwwL1kd', '3539918'), - (723, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'ydwwL1kd', '3539919'), - (723, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'ydwwL1kd', '3539920'), - (723, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'ydwwL1kd', '3539921'), - (723, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ydwwL1kd', '3539927'), - (723, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ydwwL1kd', '3582734'), - (723, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ydwwL1kd', '3583262'), - (723, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydwwL1kd', '3619523'), - (723, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydwwL1kd', '3661369'), - (723, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydwwL1kd', '3674262'), - (723, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydwwL1kd', '3677402'), - (723, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydwwL1kd', '3730212'), - (723, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydwwL1kd', '3793156'), - (723, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'ydwwL1kd', '3803310'), - (723, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'ydwwL1kd', '3806392'), - (723, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwwL1kd', '6045684'), - (724, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mR6oaVgm', '4736503'), - (724, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mR6oaVgm', '4736504'), - (724, 1241, 'maybe', '2022-03-19 00:15:45', '2025-12-17 19:47:25', 'mR6oaVgm', '5052240'), - (724, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mR6oaVgm', '5132533'), - (724, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mR6oaVgm', '5186582'), - (724, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mR6oaVgm', '5186583'), - (724, 1274, 'maybe', '2022-03-19 00:14:49', '2025-12-17 19:47:26', 'mR6oaVgm', '5186585'), - (724, 1281, 'not_attending', '2022-03-19 00:14:38', '2025-12-17 19:47:27', 'mR6oaVgm', '5190437'), - (724, 1285, 'maybe', '2022-03-23 05:00:53', '2025-12-17 19:47:25', 'mR6oaVgm', '5196763'), - (724, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'mR6oaVgm', '5199460'), - (724, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mR6oaVgm', '5215989'), - (724, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mR6oaVgm', '6045684'), - (725, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4kRjJORA', '4694407'), - (725, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4kRjJORA', '4736497'), - (725, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4kRjJORA', '4736499'), - (725, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4kRjJORA', '4736500'), - (725, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kRjJORA', '4736503'), - (725, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kRjJORA', '4736504'), - (725, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4kRjJORA', '4746789'), - (725, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4kRjJORA', '4753929'), - (725, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4kRjJORA', '5038850'), - (725, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4kRjJORA', '5045826'), - (725, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kRjJORA', '5132533'), - (725, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4kRjJORA', '6045684'), - (726, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mb29oVXm', '6045684'), - (727, 1274, 'maybe', '2022-04-02 13:59:15', '2025-12-17 19:47:26', '4orXBxXA', '5186585'), - (727, 1281, 'attending', '2022-04-06 04:03:35', '2025-12-17 19:47:27', '4orXBxXA', '5190437'), - (727, 1284, 'attending', '2022-04-11 04:19:26', '2025-12-17 19:47:27', '4orXBxXA', '5195095'), - (727, 1302, 'attending', '2022-04-08 19:12:54', '2025-12-17 19:47:27', '4orXBxXA', '5220867'), - (727, 1304, 'maybe', '2022-04-06 04:03:02', '2025-12-17 19:47:26', '4orXBxXA', '5223468'), - (727, 1305, 'attending', '2022-04-10 21:47:16', '2025-12-17 19:47:27', '4orXBxXA', '5223673'), - (727, 1306, 'attending', '2022-04-04 00:23:50', '2025-12-17 19:47:26', '4orXBxXA', '5223682'), - (727, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4orXBxXA', '5223686'), - (727, 1308, 'attending', '2022-04-13 23:30:44', '2025-12-17 19:47:27', '4orXBxXA', '5226703'), - (727, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4orXBxXA', '5227432'), - (727, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4orXBxXA', '5247467'), - (727, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4orXBxXA', '5260800'), - (727, 1370, 'attending', '2022-04-29 17:54:19', '2025-12-17 19:47:28', '4orXBxXA', '5263775'), - (727, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4orXBxXA', '5269930'), - (727, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4orXBxXA', '5271448'), - (727, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4orXBxXA', '5271449'), - (727, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4orXBxXA', '5276469'), - (727, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4orXBxXA', '5278159'), - (727, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4orXBxXA', '5363695'), - (727, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4orXBxXA', '5365960'), - (727, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4orXBxXA', '5368973'), - (727, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4orXBxXA', '5378247'), - (727, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4orXBxXA', '5389605'), - (727, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4orXBxXA', '5397265'), - (727, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4orXBxXA', '5403967'), - (727, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4orXBxXA', '5404786'), - (727, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4orXBxXA', '5405203'), - (727, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '4orXBxXA', '5408794'), - (727, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4orXBxXA', '5411699'), - (727, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4orXBxXA', '5412550'), - (727, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4orXBxXA', '5415046'), - (727, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4orXBxXA', '5422086'), - (727, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4orXBxXA', '5422406'), - (727, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4orXBxXA', '5424565'), - (727, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4orXBxXA', '5426882'), - (727, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4orXBxXA', '5427083'), - (727, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4orXBxXA', '5441125'), - (727, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4orXBxXA', '5441126'), - (727, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4orXBxXA', '5441128'), - (727, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4orXBxXA', '5446643'), - (727, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4orXBxXA', '5453325'), - (727, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4orXBxXA', '5454516'), - (727, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4orXBxXA', '5454605'), - (727, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4orXBxXA', '5455037'), - (727, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4orXBxXA', '5461278'), - (727, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4orXBxXA', '5469480'), - (727, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4orXBxXA', '5471073'), - (727, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4orXBxXA', '5474663'), - (727, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4orXBxXA', '5482022'), - (727, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4orXBxXA', '5482793'), - (727, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4orXBxXA', '5488912'), - (727, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4orXBxXA', '5492192'), - (727, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4orXBxXA', '5493139'), - (727, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4orXBxXA', '5493200'), - (727, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4orXBxXA', '5502188'), - (727, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4orXBxXA', '5512862'), - (727, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4orXBxXA', '5513985'), - (727, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4orXBxXA', '6045684'), - (728, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mpGO9Nld', '7324082'), - (728, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mpGO9Nld', '7397462'), - (728, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mpGO9Nld', '7424275'), - (728, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mpGO9Nld', '7432751'), - (728, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mpGO9Nld', '7432752'), - (728, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mpGO9Nld', '7432753'), - (728, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mpGO9Nld', '7432754'), - (728, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mpGO9Nld', '7432755'), - (728, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mpGO9Nld', '7432756'), - (728, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mpGO9Nld', '7432758'), - (728, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mpGO9Nld', '7432759'), - (728, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mpGO9Nld', '7433834'), - (728, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mpGO9Nld', '7470197'), - (728, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mpGO9Nld', '7685613'), - (728, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mpGO9Nld', '7688194'), - (728, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mpGO9Nld', '7688196'), - (728, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mpGO9Nld', '7688289'), - (729, 191, 'attending', '2020-07-11 21:47:51', '2025-12-17 19:47:55', 'w4WM2Jqm', '3087259'), - (729, 193, 'attending', '2020-07-21 17:41:15', '2025-12-17 19:47:55', 'w4WM2Jqm', '3087261'), - (729, 194, 'not_attending', '2020-08-01 19:51:25', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087262'), - (729, 195, 'attending', '2020-08-03 17:35:24', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087264'), - (729, 196, 'attending', '2020-08-10 15:52:05', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087265'), - (729, 197, 'attending', '2020-08-10 15:52:10', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087266'), - (729, 198, 'not_attending', '2020-08-27 16:25:02', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087267'), - (729, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087268'), - (729, 207, 'attending', '2020-07-20 02:39:14', '2025-12-17 19:47:55', 'w4WM2Jqm', '3104807'), - (729, 212, 'not_attending', '2020-07-14 22:50:23', '2025-12-17 19:47:55', 'w4WM2Jqm', '3118517'), - (729, 217, 'attending', '2020-07-11 06:30:06', '2025-12-17 19:47:55', 'w4WM2Jqm', '3126684'), - (729, 223, 'attending', '2020-09-09 17:21:41', '2025-12-17 19:47:56', 'w4WM2Jqm', '3129980'), - (729, 224, 'attending', '2020-07-25 22:53:44', '2025-12-17 19:47:55', 'w4WM2Jqm', '3130712'), - (729, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'w4WM2Jqm', '3132817'), - (729, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'w4WM2Jqm', '3132820'), - (729, 228, 'attending', '2020-07-14 20:27:42', '2025-12-17 19:47:55', 'w4WM2Jqm', '3132821'), - (729, 230, 'attending', '2020-07-26 03:12:47', '2025-12-17 19:47:55', 'w4WM2Jqm', '3139232'), - (729, 231, 'attending', '2020-07-20 22:46:55', '2025-12-17 19:47:55', 'w4WM2Jqm', '3139762'), - (729, 233, 'attending', '2020-07-22 19:47:37', '2025-12-17 19:47:55', 'w4WM2Jqm', '3139773'), - (729, 235, 'not_attending', '2020-07-24 19:25:21', '2025-12-17 19:47:55', 'w4WM2Jqm', '3140861'), - (729, 236, 'attending', '2020-07-20 22:47:10', '2025-12-17 19:47:55', 'w4WM2Jqm', '3140873'), - (729, 238, 'attending', '2020-07-25 22:53:30', '2025-12-17 19:47:55', 'w4WM2Jqm', '3145669'), - (729, 243, 'not_attending', '2020-11-02 20:02:41', '2025-12-17 19:47:53', 'w4WM2Jqm', '3149474'), - (729, 245, 'not_attending', '2020-11-02 20:04:18', '2025-12-17 19:47:54', 'w4WM2Jqm', '3149476'), - (729, 249, 'not_attending', '2020-11-02 20:04:11', '2025-12-17 19:47:54', 'w4WM2Jqm', '3149480'), - (729, 264, 'attending', '2020-08-03 17:35:15', '2025-12-17 19:47:56', 'w4WM2Jqm', '3150735'), - (729, 269, 'attending', '2020-07-29 18:36:50', '2025-12-17 19:47:55', 'w4WM2Jqm', '3153076'), - (729, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'w4WM2Jqm', '3155321'), - (729, 272, 'attending', '2020-08-03 17:35:18', '2025-12-17 19:47:56', 'w4WM2Jqm', '3161472'), - (729, 273, 'not_attending', '2020-08-06 16:54:24', '2025-12-17 19:47:56', 'w4WM2Jqm', '3162006'), - (729, 275, 'not_attending', '2020-08-03 23:17:37', '2025-12-17 19:47:56', 'w4WM2Jqm', '3163405'), - (729, 276, 'attending', '2020-08-03 20:22:08', '2025-12-17 19:47:56', 'w4WM2Jqm', '3163408'), - (729, 277, 'attending', '2020-08-04 01:06:40', '2025-12-17 19:47:56', 'w4WM2Jqm', '3163442'), - (729, 283, 'attending', '2020-08-07 16:01:57', '2025-12-17 19:47:56', 'w4WM2Jqm', '3169555'), - (729, 284, 'attending', '2020-08-07 16:01:59', '2025-12-17 19:47:56', 'w4WM2Jqm', '3169556'), - (729, 286, 'not_attending', '2020-08-26 22:07:52', '2025-12-17 19:47:56', 'w4WM2Jqm', '3170246'), - (729, 291, 'not_attending', '2020-09-09 17:21:25', '2025-12-17 19:47:56', 'w4WM2Jqm', '3170252'), - (729, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172832'), - (729, 294, 'not_attending', '2020-08-26 22:07:56', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172833'), - (729, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172834'), - (729, 296, 'not_attending', '2020-09-09 17:21:35', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172876'), - (729, 298, 'attending', '2020-08-24 14:41:51', '2025-12-17 19:47:56', 'w4WM2Jqm', '3174556'), - (729, 301, 'attending', '2020-08-24 14:41:44', '2025-12-17 19:47:56', 'w4WM2Jqm', '3178027'), - (729, 302, 'attending', '2020-08-24 14:41:28', '2025-12-17 19:47:56', 'w4WM2Jqm', '3178028'), - (729, 311, 'attending', '2020-09-10 21:25:22', '2025-12-17 19:47:56', 'w4WM2Jqm', '3186057'), - (729, 312, 'not_attending', '2020-09-09 17:21:18', '2025-12-17 19:47:56', 'w4WM2Jqm', '3187795'), - (729, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'w4WM2Jqm', '3191735'), - (729, 318, 'not_attending', '2020-09-09 17:20:35', '2025-12-17 19:47:56', 'w4WM2Jqm', '3193885'), - (729, 321, 'attending', '2020-09-06 22:02:30', '2025-12-17 19:47:56', 'w4WM2Jqm', '3197077'), - (729, 332, 'not_attending', '2020-09-09 17:21:07', '2025-12-17 19:47:56', 'w4WM2Jqm', '3198873'), - (729, 333, 'attending', '2020-10-06 22:26:05', '2025-12-17 19:47:52', 'w4WM2Jqm', '3199782'), - (729, 334, 'attending', '2020-10-11 03:47:18', '2025-12-17 19:47:52', 'w4WM2Jqm', '3199784'), - (729, 335, 'not_attending', '2020-09-09 17:20:33', '2025-12-17 19:47:56', 'w4WM2Jqm', '3200209'), - (729, 336, 'attending', '2020-09-13 03:57:59', '2025-12-17 19:47:56', 'w4WM2Jqm', '3200495'), - (729, 337, 'not_attending', '2020-09-09 17:21:02', '2025-12-17 19:47:56', 'w4WM2Jqm', '3201771'), - (729, 339, 'not_attending', '2020-09-09 17:21:12', '2025-12-17 19:47:56', 'w4WM2Jqm', '3204469'), - (729, 340, 'attending', '2020-09-12 15:27:36', '2025-12-17 19:47:56', 'w4WM2Jqm', '3204470'), - (729, 343, 'attending', '2020-09-20 16:42:30', '2025-12-17 19:47:56', 'w4WM2Jqm', '3206759'), - (729, 345, 'attending', '2020-09-13 17:47:46', '2025-12-17 19:47:56', 'w4WM2Jqm', '3207423'), - (729, 346, 'attending', '2020-09-12 15:27:20', '2025-12-17 19:47:56', 'w4WM2Jqm', '3207515'), - (729, 347, 'attending', '2020-09-23 01:27:17', '2025-12-17 19:47:51', 'w4WM2Jqm', '3207930'), - (729, 351, 'attending', '2020-09-12 15:27:43', '2025-12-17 19:47:56', 'w4WM2Jqm', '3209257'), - (729, 352, 'attending', '2020-09-14 05:37:30', '2025-12-17 19:47:56', 'w4WM2Jqm', '3210514'), - (729, 355, 'attending', '2020-09-15 22:46:29', '2025-12-17 19:47:56', 'w4WM2Jqm', '3212571'), - (729, 356, 'attending', '2020-09-21 03:00:42', '2025-12-17 19:47:51', 'w4WM2Jqm', '3212572'), - (729, 358, 'attending', '2020-09-15 22:47:15', '2025-12-17 19:47:56', 'w4WM2Jqm', '3212579'), - (729, 362, 'attending', '2020-09-25 19:23:17', '2025-12-17 19:47:52', 'w4WM2Jqm', '3214207'), - (729, 363, 'maybe', '2020-09-16 22:39:57', '2025-12-17 19:47:52', 'w4WM2Jqm', '3217037'), - (729, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'w4WM2Jqm', '3218510'), - (729, 368, 'attending', '2020-10-01 16:25:36', '2025-12-17 19:47:52', 'w4WM2Jqm', '3221403'), - (729, 376, 'attending', '2020-10-11 03:47:55', '2025-12-17 19:47:52', 'w4WM2Jqm', '3222827'), - (729, 385, 'attending', '2020-10-01 18:00:15', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228698'), - (729, 386, 'attending', '2020-10-10 17:52:52', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228699'), - (729, 387, 'attending', '2020-10-15 22:45:42', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228700'), - (729, 388, 'not_attending', '2020-10-20 10:00:42', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228701'), - (729, 390, 'attending', '2020-10-04 22:13:42', '2025-12-17 19:47:52', 'w4WM2Jqm', '3231510'), - (729, 399, 'not_attending', '2020-11-02 20:03:45', '2025-12-17 19:47:54', 'w4WM2Jqm', '3236454'), - (729, 409, 'not_attending', '2020-11-02 20:04:35', '2025-12-17 19:47:54', 'w4WM2Jqm', '3236467'), - (729, 410, 'not_attending', '2020-11-02 20:04:14', '2025-12-17 19:47:54', 'w4WM2Jqm', '3236469'), - (729, 411, 'attending', '2020-10-11 03:50:04', '2025-12-17 19:47:52', 'w4WM2Jqm', '3236596'), - (729, 413, 'not_attending', '2020-10-20 10:00:37', '2025-12-17 19:47:52', 'w4WM2Jqm', '3236670'), - (729, 414, 'attending', '2020-10-18 22:54:44', '2025-12-17 19:47:52', 'w4WM2Jqm', '3237277'), - (729, 416, 'not_attending', '2020-10-09 23:03:22', '2025-12-17 19:47:52', 'w4WM2Jqm', '3238073'), - (729, 419, 'attending', '2020-10-11 03:49:24', '2025-12-17 19:47:52', 'w4WM2Jqm', '3242234'), - (729, 420, 'attending', '2020-10-12 23:11:39', '2025-12-17 19:47:52', 'w4WM2Jqm', '3245293'), - (729, 423, 'maybe', '2020-11-02 20:03:34', '2025-12-17 19:47:53', 'w4WM2Jqm', '3245296'), - (729, 424, 'not_attending', '2020-10-16 01:15:26', '2025-12-17 19:47:52', 'w4WM2Jqm', '3245751'), - (729, 426, 'attending', '2020-10-14 16:12:59', '2025-12-17 19:47:52', 'w4WM2Jqm', '3250232'), - (729, 432, 'not_attending', '2020-11-02 20:02:52', '2025-12-17 19:47:53', 'w4WM2Jqm', '3254416'), - (729, 433, 'not_attending', '2020-11-02 20:03:38', '2025-12-17 19:47:53', 'w4WM2Jqm', '3254417'), - (729, 434, 'not_attending', '2020-11-02 20:04:01', '2025-12-17 19:47:53', 'w4WM2Jqm', '3254418'), - (729, 438, 'attending', '2020-10-31 22:23:27', '2025-12-17 19:47:53', 'w4WM2Jqm', '3256163'), - (729, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'w4WM2Jqm', '3256168'), - (729, 441, 'attending', '2020-11-13 21:29:42', '2025-12-17 19:47:54', 'w4WM2Jqm', '3256169'), - (729, 443, 'not_attending', '2020-10-27 01:29:33', '2025-12-17 19:47:53', 'w4WM2Jqm', '3263578'), - (729, 445, 'not_attending', '2020-11-02 20:02:55', '2025-12-17 19:47:54', 'w4WM2Jqm', '3266138'), - (729, 449, 'not_attending', '2020-11-02 20:04:04', '2025-12-17 19:47:53', 'w4WM2Jqm', '3272055'), - (729, 451, 'not_attending', '2020-11-02 20:02:37', '2025-12-17 19:47:53', 'w4WM2Jqm', '3272186'), - (729, 452, 'not_attending', '2020-11-02 20:04:07', '2025-12-17 19:47:54', 'w4WM2Jqm', '3272981'), - (729, 454, 'not_attending', '2020-11-13 02:29:17', '2025-12-17 19:47:54', 'w4WM2Jqm', '3275665'), - (729, 456, 'attending', '2020-11-14 20:47:09', '2025-12-17 19:47:54', 'w4WM2Jqm', '3276428'), - (729, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'w4WM2Jqm', '3281467'), - (729, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'w4WM2Jqm', '3281470'), - (729, 463, 'attending', '2020-11-13 02:29:27', '2025-12-17 19:47:54', 'w4WM2Jqm', '3281553'), - (729, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'w4WM2Jqm', '3281829'), - (729, 467, 'attending', '2020-11-17 21:40:05', '2025-12-17 19:47:54', 'w4WM2Jqm', '3282756'), - (729, 468, 'maybe', '2020-11-21 03:48:53', '2025-12-17 19:47:54', 'w4WM2Jqm', '3285413'), - (729, 469, 'attending', '2020-11-28 00:08:42', '2025-12-17 19:47:54', 'w4WM2Jqm', '3285414'), - (729, 476, 'attending', '2020-11-18 23:49:32', '2025-12-17 19:47:54', 'w4WM2Jqm', '3286982'), - (729, 477, 'attending', '2020-12-05 01:55:18', '2025-12-17 19:47:54', 'w4WM2Jqm', '3289559'), - (729, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'w4WM2Jqm', '3297764'), - (729, 482, 'attending', '2020-11-25 00:59:28', '2025-12-17 19:47:54', 'w4WM2Jqm', '3297769'), - (729, 484, 'maybe', '2020-11-21 00:00:33', '2025-12-17 19:47:54', 'w4WM2Jqm', '3297792'), - (729, 491, 'attending', '2020-12-09 03:37:11', '2025-12-17 19:47:55', 'w4WM2Jqm', '3313533'), - (729, 492, 'attending', '2020-12-03 19:15:26', '2025-12-17 19:47:54', 'w4WM2Jqm', '3313731'), - (729, 493, 'not_attending', '2020-12-01 00:07:36', '2025-12-17 19:47:54', 'w4WM2Jqm', '3313856'), - (729, 496, 'attending', '2020-12-09 01:39:07', '2025-12-17 19:47:54', 'w4WM2Jqm', '3314269'), - (729, 497, 'attending', '2020-12-09 01:39:16', '2025-12-17 19:47:55', 'w4WM2Jqm', '3314270'), - (729, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'w4WM2Jqm', '3314909'), - (729, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'w4WM2Jqm', '3314964'), - (729, 501, 'attending', '2020-12-09 01:14:31', '2025-12-17 19:47:54', 'w4WM2Jqm', '3317834'), - (729, 502, 'attending', '2020-12-11 04:19:25', '2025-12-17 19:47:55', 'w4WM2Jqm', '3323365'), - (729, 509, 'attending', '2021-01-22 21:16:01', '2025-12-17 19:47:49', 'w4WM2Jqm', '3324232'), - (729, 513, 'not_attending', '2020-12-19 05:54:45', '2025-12-17 19:47:55', 'w4WM2Jqm', '3329383'), - (729, 526, 'attending', '2021-01-02 22:33:55', '2025-12-17 19:47:48', 'w4WM2Jqm', '3351539'), - (729, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'w4WM2Jqm', '3386848'), - (729, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'w4WM2Jqm', '3389527'), - (729, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'w4WM2Jqm', '3396499'), - (729, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'w4WM2Jqm', '3403650'), - (729, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'w4WM2Jqm', '3406988'), - (729, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'w4WM2Jqm', '3408338'), - (729, 555, 'attending', '2021-01-22 18:37:11', '2025-12-17 19:47:49', 'w4WM2Jqm', '3416576'), - (729, 568, 'attending', '2021-01-28 19:57:14', '2025-12-17 19:47:50', 'w4WM2Jqm', '3430267'), - (729, 572, 'maybe', '2021-02-06 02:11:50', '2025-12-17 19:47:50', 'w4WM2Jqm', '3435540'), - (729, 574, 'attending', '2021-02-28 04:37:06', '2025-12-17 19:47:51', 'w4WM2Jqm', '3435543'), - (729, 576, 'attending', '2021-02-02 23:37:24', '2025-12-17 19:47:50', 'w4WM2Jqm', '3438748'), - (729, 578, 'attending', '2021-02-02 20:40:19', '2025-12-17 19:47:50', 'w4WM2Jqm', '3440043'), - (729, 579, 'attending', '2021-02-03 21:21:36', '2025-12-17 19:47:50', 'w4WM2Jqm', '3440978'), - (729, 584, 'attending', '2021-02-03 21:21:34', '2025-12-17 19:47:50', 'w4WM2Jqm', '3449466'), - (729, 587, 'not_attending', '2021-02-15 21:38:31', '2025-12-17 19:47:50', 'w4WM2Jqm', '3449470'), - (729, 592, 'attending', '2021-02-22 08:58:23', '2025-12-17 19:47:50', 'w4WM2Jqm', '3467757'), - (729, 593, 'attending', '2021-02-22 08:57:55', '2025-12-17 19:47:50', 'w4WM2Jqm', '3467758'), - (729, 594, 'attending', '2021-02-28 04:36:46', '2025-12-17 19:47:51', 'w4WM2Jqm', '3467759'), - (729, 596, 'attending', '2021-03-11 01:33:20', '2025-12-17 19:47:51', 'w4WM2Jqm', '3467762'), - (729, 602, 'attending', '2021-02-13 03:49:58', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470303'), - (729, 603, 'attending', '2021-02-17 01:18:43', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470304'), - (729, 604, 'attending', '2021-02-25 08:16:05', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470305'), - (729, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470991'), - (729, 606, 'attending', '2021-02-12 00:49:13', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470998'), - (729, 614, 'attending', '2021-03-04 00:16:14', '2025-12-17 19:47:51', 'w4WM2Jqm', '3490042'), - (729, 616, 'attending', '2021-02-21 16:34:38', '2025-12-17 19:47:50', 'w4WM2Jqm', '3493478'), - (729, 617, 'attending', '2021-02-22 22:38:52', '2025-12-17 19:47:50', 'w4WM2Jqm', '3499119'), - (729, 621, 'attending', '2021-03-06 02:10:17', '2025-12-17 19:47:51', 'w4WM2Jqm', '3517815'), - (729, 622, 'not_attending', '2021-03-12 07:54:46', '2025-12-17 19:47:51', 'w4WM2Jqm', '3517816'), - (729, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'w4WM2Jqm', '3523941'), - (729, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4WM2Jqm', '3533850'), - (729, 636, 'attending', '2021-04-16 23:04:15', '2025-12-17 19:47:45', 'w4WM2Jqm', '3534720'), - (729, 637, 'attending', '2021-03-09 11:15:22', '2025-12-17 19:47:51', 'w4WM2Jqm', '3536411'), - (729, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4WM2Jqm', '3536632'), - (729, 639, 'attending', '2021-03-09 11:15:17', '2025-12-17 19:47:51', 'w4WM2Jqm', '3536656'), - (729, 640, 'attending', '2021-03-04 23:34:21', '2025-12-17 19:47:51', 'w4WM2Jqm', '3538866'), - (729, 641, 'attending', '2021-04-02 20:18:07', '2025-12-17 19:47:44', 'w4WM2Jqm', '3539916'), - (729, 642, 'attending', '2021-04-10 19:55:46', '2025-12-17 19:47:44', 'w4WM2Jqm', '3539917'), - (729, 643, 'attending', '2021-04-16 16:49:34', '2025-12-17 19:47:45', 'w4WM2Jqm', '3539918'), - (729, 644, 'not_attending', '2021-04-24 20:02:03', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539919'), - (729, 645, 'attending', '2021-05-07 11:08:38', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539920'), - (729, 646, 'attending', '2021-05-15 22:36:11', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539921'), - (729, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539922'), - (729, 648, 'attending', '2021-05-29 21:26:20', '2025-12-17 19:47:47', 'w4WM2Jqm', '3539923'), - (729, 649, 'attending', '2021-03-19 00:08:35', '2025-12-17 19:47:51', 'w4WM2Jqm', '3539927'), - (729, 663, 'attending', '2021-05-07 11:08:49', '2025-12-17 19:47:46', 'w4WM2Jqm', '3547140'), - (729, 699, 'maybe', '2021-03-29 23:02:11', '2025-12-17 19:47:44', 'w4WM2Jqm', '3572241'), - (729, 703, 'attending', '2021-04-11 22:46:46', '2025-12-17 19:47:44', 'w4WM2Jqm', '3578388'), - (729, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'w4WM2Jqm', '3582734'), - (729, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'w4WM2Jqm', '3583262'), - (729, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'w4WM2Jqm', '3619523'), - (729, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'w4WM2Jqm', '3661369'), - (729, 729, 'attending', '2021-04-28 23:15:50', '2025-12-17 19:47:46', 'w4WM2Jqm', '3668075'), - (729, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'w4WM2Jqm', '3674262'), - (729, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'w4WM2Jqm', '3677402'), - (729, 738, 'attending', '2021-04-19 17:39:58', '2025-12-17 19:47:45', 'w4WM2Jqm', '3680615'), - (729, 739, 'attending', '2021-05-07 11:08:30', '2025-12-17 19:47:46', 'w4WM2Jqm', '3680616'), - (729, 750, 'attending', '2021-04-13 21:06:16', '2025-12-17 19:47:44', 'w4WM2Jqm', '3689962'), - (729, 758, 'attending', '2021-04-19 17:40:06', '2025-12-17 19:47:45', 'w4WM2Jqm', '3713700'), - (729, 759, 'attending', '2021-04-19 17:40:04', '2025-12-17 19:47:45', 'w4WM2Jqm', '3713701'), - (729, 765, 'attending', '2021-04-22 20:10:28', '2025-12-17 19:47:45', 'w4WM2Jqm', '3720508'), - (729, 768, 'attending', '2021-04-19 22:26:18', '2025-12-17 19:47:46', 'w4WM2Jqm', '3724124'), - (729, 769, 'attending', '2021-04-19 22:26:21', '2025-12-17 19:47:46', 'w4WM2Jqm', '3724127'), - (729, 770, 'attending', '2021-04-19 22:26:23', '2025-12-17 19:47:46', 'w4WM2Jqm', '3724559'), - (729, 774, 'attending', '2021-04-20 23:36:01', '2025-12-17 19:47:45', 'w4WM2Jqm', '3730212'), - (729, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'w4WM2Jqm', '3793156'), - (729, 822, 'not_attending', '2021-06-03 01:51:55', '2025-12-17 19:47:47', 'w4WM2Jqm', '3969986'), - (729, 823, 'attending', '2021-06-19 21:20:36', '2025-12-17 19:47:48', 'w4WM2Jqm', '3974109'), - (729, 827, 'attending', '2021-06-05 21:37:51', '2025-12-17 19:47:47', 'w4WM2Jqm', '3975311'), - (729, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4WM2Jqm', '3975312'), - (729, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4WM2Jqm', '3994992'), - (729, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4WM2Jqm', '4014338'), - (729, 867, 'not_attending', '2021-06-26 22:14:33', '2025-12-17 19:47:38', 'w4WM2Jqm', '4021848'), - (729, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4WM2Jqm', '4136744'), - (729, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4WM2Jqm', '4136937'), - (729, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4WM2Jqm', '4136938'), - (729, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4WM2Jqm', '4136947'), - (729, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4WM2Jqm', '4210314'), - (729, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4WM2Jqm', '4225444'), - (729, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4WM2Jqm', '4239259'), - (729, 900, 'attending', '2021-07-24 21:35:56', '2025-12-17 19:47:40', 'w4WM2Jqm', '4240316'), - (729, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4WM2Jqm', '4240317'), - (729, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4WM2Jqm', '4240318'), - (729, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4WM2Jqm', '4240320'), - (729, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4WM2Jqm', '4250163'), - (729, 906, 'not_attending', '2021-07-05 05:49:09', '2025-12-17 19:47:39', 'w4WM2Jqm', '4253431'), - (729, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4WM2Jqm', '4275957'), - (729, 920, 'attending', '2021-07-25 21:21:56', '2025-12-17 19:47:40', 'w4WM2Jqm', '4277819'), - (729, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4WM2Jqm', '4301723'), - (729, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'w4WM2Jqm', '4302093'), - (729, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4WM2Jqm', '4304151'), - (729, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'w4WM2Jqm', '4356801'), - (729, 973, 'attending', '2021-08-18 22:02:02', '2025-12-17 19:47:42', 'w4WM2Jqm', '4366186'), - (729, 974, 'attending', '2021-08-18 22:02:12', '2025-12-17 19:47:42', 'w4WM2Jqm', '4366187'), - (729, 990, 'attending', '2021-09-01 23:50:25', '2025-12-17 19:47:43', 'w4WM2Jqm', '4420735'), - (729, 991, 'attending', '2021-09-10 22:06:38', '2025-12-17 19:47:43', 'w4WM2Jqm', '4420738'), - (729, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'w4WM2Jqm', '4420739'), - (729, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'w4WM2Jqm', '4420741'), - (729, 994, 'not_attending', '2021-10-02 13:28:34', '2025-12-17 19:47:34', 'w4WM2Jqm', '4420742'), - (729, 995, 'attending', '2021-10-09 21:40:04', '2025-12-17 19:47:34', 'w4WM2Jqm', '4420744'), - (729, 996, 'attending', '2021-10-16 19:11:10', '2025-12-17 19:47:35', 'w4WM2Jqm', '4420747'), - (729, 997, 'attending', '2021-10-23 21:16:32', '2025-12-17 19:47:35', 'w4WM2Jqm', '4420748'), - (729, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4WM2Jqm', '4420749'), - (729, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4WM2Jqm', '4461883'), - (729, 1046, 'attending', '2021-10-16 19:11:26', '2025-12-17 19:47:35', 'w4WM2Jqm', '4496611'), - (729, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4WM2Jqm', '4508342'), - (729, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4WM2Jqm', '4568602'), - (729, 1087, 'attending', '2021-10-16 19:11:22', '2025-12-17 19:47:35', 'w4WM2Jqm', '4572153'), - (729, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4WM2Jqm', '4585962'), - (729, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'w4WM2Jqm', '4596356'), - (729, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4WM2Jqm', '4598860'), - (729, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4WM2Jqm', '4598861'), - (729, 1099, 'not_attending', '2021-11-06 20:43:57', '2025-12-17 19:47:36', 'w4WM2Jqm', '4602797'), - (729, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4WM2Jqm', '4736497'), - (729, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4WM2Jqm', '4736499'), - (729, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4WM2Jqm', '4736500'), - (729, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4WM2Jqm', '4736503'), - (729, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4WM2Jqm', '4736504'), - (729, 1185, 'attending', '2022-01-09 04:56:54', '2025-12-17 19:47:31', 'w4WM2Jqm', '4746789'), - (729, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'w4WM2Jqm', '4753929'), - (729, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4WM2Jqm', '5038850'), - (729, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4WM2Jqm', '5045826'), - (729, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4WM2Jqm', '5132533'), - (729, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4WM2Jqm', '5186582'), - (729, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4WM2Jqm', '5186583'), - (729, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4WM2Jqm', '5186585'), - (729, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4WM2Jqm', '5190437'), - (729, 1284, 'attending', '2022-04-16 22:30:49', '2025-12-17 19:47:27', 'w4WM2Jqm', '5195095'), - (729, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4WM2Jqm', '5215989'), - (729, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'w4WM2Jqm', '5223686'), - (729, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'w4WM2Jqm', '5247467'), - (729, 1354, 'not_attending', '2022-04-21 18:07:01', '2025-12-17 19:47:27', 'w4WM2Jqm', '5252569'), - (729, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'w4WM2Jqm', '5260800'), - (729, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'w4WM2Jqm', '5269930'), - (729, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'w4WM2Jqm', '5271448'), - (729, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'w4WM2Jqm', '5271449'), - (729, 1380, 'attending', '2022-05-28 22:51:33', '2025-12-17 19:47:30', 'w4WM2Jqm', '5271450'), - (729, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'w4WM2Jqm', '5276469'), - (729, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'w4WM2Jqm', '5278159'), - (729, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'w4WM2Jqm', '5363695'), - (729, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'w4WM2Jqm', '5365960'), - (729, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'w4WM2Jqm', '5368973'), - (729, 1423, 'attending', '2022-06-15 19:26:24', '2025-12-17 19:47:17', 'w4WM2Jqm', '5375727'), - (729, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'w4WM2Jqm', '5378247'), - (729, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'w4WM2Jqm', '5389605'), - (729, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'w4WM2Jqm', '5397265'), - (729, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'w4WM2Jqm', '5403967'), - (729, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'w4WM2Jqm', '5404786'), - (729, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'w4WM2Jqm', '5405203'), - (729, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'w4WM2Jqm', '5411699'), - (729, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'w4WM2Jqm', '5412550'), - (729, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'w4WM2Jqm', '5415046'), - (729, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'w4WM2Jqm', '5422086'), - (729, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'w4WM2Jqm', '5422406'), - (729, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'w4WM2Jqm', '5424565'), - (729, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'w4WM2Jqm', '5426882'), - (729, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'w4WM2Jqm', '5427083'), - (729, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'w4WM2Jqm', '5441125'), - (729, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'w4WM2Jqm', '5441126'), - (729, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'w4WM2Jqm', '5441128'), - (729, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'w4WM2Jqm', '5441131'), - (729, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'w4WM2Jqm', '5441132'), - (729, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'w4WM2Jqm', '5446643'), - (729, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'w4WM2Jqm', '5453325'), - (729, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'w4WM2Jqm', '5454516'), - (729, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'w4WM2Jqm', '5454605'), - (729, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'w4WM2Jqm', '5455037'), - (729, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'w4WM2Jqm', '5461278'), - (729, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'w4WM2Jqm', '5469480'), - (729, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'w4WM2Jqm', '5471073'), - (729, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'w4WM2Jqm', '5474663'), - (729, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'w4WM2Jqm', '5482022'), - (729, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'w4WM2Jqm', '5482793'), - (729, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'w4WM2Jqm', '5488912'), - (729, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'w4WM2Jqm', '5492192'), - (729, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'w4WM2Jqm', '5493139'), - (729, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'w4WM2Jqm', '5493200'), - (729, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'w4WM2Jqm', '5502188'), - (729, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'w4WM2Jqm', '5505059'), - (729, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'w4WM2Jqm', '5509055'), - (729, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'w4WM2Jqm', '5512862'), - (729, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'w4WM2Jqm', '5513985'), - (729, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'w4WM2Jqm', '5519981'), - (729, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'w4WM2Jqm', '5522550'), - (729, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'w4WM2Jqm', '5534683'), - (729, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'w4WM2Jqm', '5537735'), - (729, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'w4WM2Jqm', '5540859'), - (729, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'w4WM2Jqm', '5546619'), - (729, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'w4WM2Jqm', '5555245'), - (729, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'w4WM2Jqm', '5557747'), - (729, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'w4WM2Jqm', '5560255'), - (729, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'w4WM2Jqm', '5562906'), - (729, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'w4WM2Jqm', '5600604'), - (729, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'w4WM2Jqm', '5605544'), - (729, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'w4WM2Jqm', '5606737'), - (729, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'w4WM2Jqm', '5630960'), - (729, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'w4WM2Jqm', '5630961'), - (729, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'w4WM2Jqm', '5630962'), - (729, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'w4WM2Jqm', '5630966'), - (729, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'w4WM2Jqm', '5630967'), - (729, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'w4WM2Jqm', '5630968'), - (729, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'w4WM2Jqm', '5635406'), - (729, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'w4WM2Jqm', '5638765'), - (729, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'w4WM2Jqm', '5640097'), - (729, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'w4WM2Jqm', '5640843'), - (729, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'w4WM2Jqm', '5641521'), - (729, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'w4WM2Jqm', '5642818'), - (729, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'w4WM2Jqm', '5652395'), - (729, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'w4WM2Jqm', '5670445'), - (729, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'w4WM2Jqm', '5671637'), - (729, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'w4WM2Jqm', '5672329'), - (729, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'w4WM2Jqm', '5674057'), - (729, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'w4WM2Jqm', '5674060'), - (729, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'w4WM2Jqm', '5677461'), - (729, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'w4WM2Jqm', '5698046'), - (729, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'w4WM2Jqm', '5699760'), - (729, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'w4WM2Jqm', '5741601'), - (729, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'w4WM2Jqm', '5763458'), - (729, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'w4WM2Jqm', '5774172'), - (729, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'w4WM2Jqm', '5818247'), - (729, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'w4WM2Jqm', '5819471'), - (729, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'w4WM2Jqm', '5827739'), - (729, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'w4WM2Jqm', '5844306'), - (729, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'w4WM2Jqm', '5850159'), - (729, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'w4WM2Jqm', '5858999'), - (729, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'w4WM2Jqm', '5871984'), - (729, 1858, 'attending', '2023-01-15 00:42:42', '2025-12-17 19:47:05', 'w4WM2Jqm', '5875044'), - (729, 1860, 'attending', '2023-01-15 00:42:57', '2025-12-17 19:47:05', 'w4WM2Jqm', '5876309'), - (729, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'w4WM2Jqm', '5876354'), - (729, 1864, 'attending', '2023-01-19 17:03:28', '2025-12-17 19:47:05', 'w4WM2Jqm', '5879675'), - (729, 1865, 'attending', '2023-01-23 21:10:59', '2025-12-17 19:47:06', 'w4WM2Jqm', '5879676'), - (729, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'w4WM2Jqm', '5880939'), - (729, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'w4WM2Jqm', '5880940'), - (729, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'w4WM2Jqm', '5880942'), - (729, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'w4WM2Jqm', '5880943'), - (729, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'w4WM2Jqm', '5887890'), - (729, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'w4WM2Jqm', '5888598'), - (729, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'w4WM2Jqm', '5893260'), - (729, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'w4WM2Jqm', '5899826'), - (729, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'w4WM2Jqm', '5900199'), - (729, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'w4WM2Jqm', '5900200'), - (729, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'w4WM2Jqm', '5900202'), - (729, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'w4WM2Jqm', '5900203'), - (729, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'w4WM2Jqm', '5901108'), - (729, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'w4WM2Jqm', '5901126'), - (729, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'w4WM2Jqm', '5909655'), - (729, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'w4WM2Jqm', '5910522'), - (729, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'w4WM2Jqm', '5910526'), - (729, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'w4WM2Jqm', '5910528'), - (729, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'w4WM2Jqm', '5916219'), - (729, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'w4WM2Jqm', '5936234'), - (729, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'w4WM2Jqm', '5958351'), - (729, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'w4WM2Jqm', '5959751'), - (729, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'w4WM2Jqm', '5959755'), - (729, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'w4WM2Jqm', '5960055'), - (729, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'w4WM2Jqm', '5961684'), - (729, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'w4WM2Jqm', '5962132'), - (729, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'w4WM2Jqm', '5962133'), - (729, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'w4WM2Jqm', '5962134'), - (729, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'w4WM2Jqm', '5962317'), - (729, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'w4WM2Jqm', '5962318'), - (729, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'w4WM2Jqm', '5965933'), - (729, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'w4WM2Jqm', '5967014'), - (729, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'w4WM2Jqm', '5972815'), - (729, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'w4WM2Jqm', '5974016'), - (729, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'w4WM2Jqm', '5975052'), - (729, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'w4WM2Jqm', '5975054'), - (729, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'w4WM2Jqm', '5981515'), - (729, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'w4WM2Jqm', '5993516'), - (729, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'w4WM2Jqm', '5998939'), - (729, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'w4WM2Jqm', '6028191'), - (729, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'w4WM2Jqm', '6040066'), - (729, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'w4WM2Jqm', '6042717'), - (729, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'w4WM2Jqm', '6044838'), - (729, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'w4WM2Jqm', '6044839'), - (729, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WM2Jqm', '6045684'), - (729, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'w4WM2Jqm', '6050104'), - (729, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'w4WM2Jqm', '6053195'), - (729, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'w4WM2Jqm', '6053198'), - (729, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'w4WM2Jqm', '6056085'), - (729, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'w4WM2Jqm', '6056916'), - (729, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'w4WM2Jqm', '6059290'), - (729, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'w4WM2Jqm', '6060328'), - (729, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'w4WM2Jqm', '6061037'), - (729, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'w4WM2Jqm', '6061039'), - (729, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'w4WM2Jqm', '6065813'), - (729, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'w4WM2Jqm', '6067245'), - (729, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'w4WM2Jqm', '6068094'), - (729, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'w4WM2Jqm', '6068252'), - (729, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'w4WM2Jqm', '6068253'), - (729, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'w4WM2Jqm', '6068254'), - (729, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'w4WM2Jqm', '6068280'), - (729, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'w4WM2Jqm', '6069093'), - (729, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'w4WM2Jqm', '6072528'), - (729, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'w4WM2Jqm', '6075556'), - (729, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'w4WM2Jqm', '6079840'), - (729, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'w4WM2Jqm', '6083398'), - (729, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'w4WM2Jqm', '6093504'), - (729, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'w4WM2Jqm', '6097414'), - (729, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'w4WM2Jqm', '6097442'), - (729, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'w4WM2Jqm', '6097684'), - (729, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'w4WM2Jqm', '6098762'), - (729, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'w4WM2Jqm', '6101361'), - (729, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'w4WM2Jqm', '6101362'), - (729, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'w4WM2Jqm', '6107314'), - (729, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'w4WM2Jqm', '6120034'), - (729, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'w4WM2Jqm', '6136733'), - (729, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'w4WM2Jqm', '6137989'), - (729, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'w4WM2Jqm', '6150864'), - (729, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'w4WM2Jqm', '6155491'), - (729, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'w4WM2Jqm', '6164417'), - (729, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'w4WM2Jqm', '6166388'), - (729, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'w4WM2Jqm', '6176439'), - (729, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'w4WM2Jqm', '6182410'), - (729, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'w4WM2Jqm', '6185812'), - (729, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'w4WM2Jqm', '6187651'), - (729, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'w4WM2Jqm', '6187963'), - (729, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'w4WM2Jqm', '6187964'), - (729, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'w4WM2Jqm', '6187966'), - (729, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'w4WM2Jqm', '6187967'), - (729, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'w4WM2Jqm', '6187969'), - (729, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'w4WM2Jqm', '6334878'), - (729, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'w4WM2Jqm', '6337236'), - (729, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'w4WM2Jqm', '6337970'), - (729, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'w4WM2Jqm', '6338308'), - (729, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'w4WM2Jqm', '6341710'), - (729, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'w4WM2Jqm', '6342044'), - (729, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'w4WM2Jqm', '6342298'), - (729, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'w4WM2Jqm', '6343294'), - (729, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'w4WM2Jqm', '6347034'), - (729, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'w4WM2Jqm', '6347056'), - (729, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'w4WM2Jqm', '6353830'), - (729, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'w4WM2Jqm', '6353831'), - (729, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'w4WM2Jqm', '6357867'), - (729, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'w4WM2Jqm', '6358652'), - (729, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'w4WM2Jqm', '6361709'), - (729, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'w4WM2Jqm', '6361710'), - (729, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'w4WM2Jqm', '6361711'), - (729, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'w4WM2Jqm', '6361712'), - (729, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'w4WM2Jqm', '6361713'), - (729, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'w4WM2Jqm', '6382573'), - (729, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'w4WM2Jqm', '6388604'), - (729, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'w4WM2Jqm', '6394629'), - (729, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'w4WM2Jqm', '6394631'), - (729, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'w4WM2Jqm', '6440863'), - (729, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'w4WM2Jqm', '6445440'), - (729, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'w4WM2Jqm', '6453951'), - (729, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'w4WM2Jqm', '6461696'), - (729, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'w4WM2Jqm', '6462129'), - (729, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'w4WM2Jqm', '6463218'), - (729, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'w4WM2Jqm', '6472181'), - (729, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'w4WM2Jqm', '6482693'), - (729, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'w4WM2Jqm', '6484200'), - (729, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'w4WM2Jqm', '6484680'), - (729, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'w4WM2Jqm', '6507741'), - (729, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'w4WM2Jqm', '6514659'), - (729, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'w4WM2Jqm', '6514660'), - (729, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'w4WM2Jqm', '6519103'), - (729, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'w4WM2Jqm', '6535681'), - (729, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'w4WM2Jqm', '6584747'), - (729, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'w4WM2Jqm', '6587097'), - (729, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'w4WM2Jqm', '6609022'), - (729, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'w4WM2Jqm', '6632757'), - (729, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'w4WM2Jqm', '6644187'), - (729, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'w4WM2Jqm', '6648951'), - (729, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'w4WM2Jqm', '6648952'), - (729, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'w4WM2Jqm', '6655401'), - (729, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'w4WM2Jqm', '6661585'), - (729, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'w4WM2Jqm', '6661588'), - (729, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'w4WM2Jqm', '6661589'), - (729, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'w4WM2Jqm', '6699906'), - (729, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'w4WM2Jqm', '6699913'), - (729, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'w4WM2Jqm', '6701109'), - (729, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'w4WM2Jqm', '6705219'), - (729, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'w4WM2Jqm', '6710153'), - (729, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'w4WM2Jqm', '6711552'), - (729, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'w4WM2Jqm', '6711553'), - (729, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'w4WM2Jqm', '6722688'), - (729, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'w4WM2Jqm', '6730620'), - (729, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'w4WM2Jqm', '6740364'), - (729, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'w4WM2Jqm', '6743829'), - (729, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'w4WM2Jqm', '7030380'), - (729, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'w4WM2Jqm', '7033677'), - (729, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'w4WM2Jqm', '7044715'), - (729, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'w4WM2Jqm', '7050318'), - (729, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'w4WM2Jqm', '7050319'), - (729, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'w4WM2Jqm', '7050322'), - (729, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'w4WM2Jqm', '7057804'), - (729, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'w4WM2Jqm', '7072824'), - (729, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'w4WM2Jqm', '7074348'), - (729, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'w4WM2Jqm', '7074364'), - (729, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'w4WM2Jqm', '7089267'), - (729, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'w4WM2Jqm', '7098747'), - (729, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'w4WM2Jqm', '7113468'), - (729, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'w4WM2Jqm', '7114856'), - (729, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'w4WM2Jqm', '7114951'), - (729, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'w4WM2Jqm', '7114955'), - (729, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'w4WM2Jqm', '7114956'), - (729, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'w4WM2Jqm', '7114957'), - (729, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'w4WM2Jqm', '7159484'), - (729, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'w4WM2Jqm', '7178446'), - (729, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'w4WM2Jqm', '7220467'), - (729, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'w4WM2Jqm', '7240354'), - (729, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'w4WM2Jqm', '7251633'), - (729, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'w4WM2Jqm', '7324073'), - (729, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'w4WM2Jqm', '7324074'), - (729, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'w4WM2Jqm', '7324075'), - (729, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'w4WM2Jqm', '7324078'), - (729, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'w4WM2Jqm', '7324082'), - (729, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'w4WM2Jqm', '7331457'), - (729, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'w4WM2Jqm', '7363643'), - (729, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'w4WM2Jqm', '7368606'), - (729, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'w4WM2Jqm', '7397462'), - (729, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'w4WM2Jqm', '7424275'), - (729, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'w4WM2Jqm', '7432751'), - (729, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'w4WM2Jqm', '7432752'), - (729, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'w4WM2Jqm', '7432753'), - (729, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432754'), - (729, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432755'), - (729, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432756'), - (729, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432758'), - (729, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432759'), - (729, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'w4WM2Jqm', '7433834'), - (729, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'w4WM2Jqm', '7470197'), - (729, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'w4WM2Jqm', '7685613'), - (729, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'w4WM2Jqm', '7688194'), - (729, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'w4WM2Jqm', '7688196'), - (729, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'w4WM2Jqm', '7688289'), - (729, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'w4WM2Jqm', '7692763'), - (729, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'w4WM2Jqm', '7697552'), - (729, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'w4WM2Jqm', '7699878'), - (729, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'w4WM2Jqm', '7704043'), - (729, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'w4WM2Jqm', '7712467'), - (729, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'w4WM2Jqm', '7713585'), - (729, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'w4WM2Jqm', '7713586'), - (729, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'w4WM2Jqm', '7738518'), - (729, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'w4WM2Jqm', '7750636'), - (729, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'w4WM2Jqm', '7796540'), - (729, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'w4WM2Jqm', '7796541'), - (729, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'w4WM2Jqm', '7796542'), - (729, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'w4WM2Jqm', '7825913'), - (729, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'w4WM2Jqm', '7826209'), - (729, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'w4WM2Jqm', '7834742'), - (729, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'w4WM2Jqm', '7842108'), - (729, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'w4WM2Jqm', '7842902'), - (729, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'w4WM2Jqm', '7842903'), - (729, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'w4WM2Jqm', '7842904'), - (729, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'w4WM2Jqm', '7842905'), - (729, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'w4WM2Jqm', '7855719'), - (729, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'w4WM2Jqm', '7860683'), - (729, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'w4WM2Jqm', '7860684'), - (729, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'w4WM2Jqm', '7866095'), - (729, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'w4WM2Jqm', '7869170'), - (729, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'w4WM2Jqm', '7869188'), - (729, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'w4WM2Jqm', '7869201'), - (729, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'w4WM2Jqm', '7877465'), - (729, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'w4WM2Jqm', '7888250'), - (729, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'w4WM2Jqm', '7904777'), - (729, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'w4WM2Jqm', '8349164'), - (729, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'w4WM2Jqm', '8349545'), - (729, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'w4WM2Jqm', '8368028'), - (729, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'w4WM2Jqm', '8368029'), - (729, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'w4WM2Jqm', '8388462'), - (729, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'w4WM2Jqm', '8400273'), - (729, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'w4WM2Jqm', '8400275'), - (729, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'w4WM2Jqm', '8400276'), - (729, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'w4WM2Jqm', '8404977'), - (729, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'w4WM2Jqm', '8430783'), - (729, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'w4WM2Jqm', '8430784'), - (729, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'w4WM2Jqm', '8430799'), - (729, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'w4WM2Jqm', '8430800'), - (729, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'w4WM2Jqm', '8430801'), - (729, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'w4WM2Jqm', '8438709'), - (729, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'w4WM2Jqm', '8457738'), - (729, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'w4WM2Jqm', '8459566'), - (729, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'w4WM2Jqm', '8459567'), - (729, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'w4WM2Jqm', '8461032'), - (729, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'w4WM2Jqm', '8477877'), - (729, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'w4WM2Jqm', '8485688'), - (729, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'w4WM2Jqm', '8490587'), - (729, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'w4WM2Jqm', '8493552'), - (729, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'w4WM2Jqm', '8493553'), - (729, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'w4WM2Jqm', '8493554'), - (729, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'w4WM2Jqm', '8493555'), - (729, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'w4WM2Jqm', '8493556'), - (729, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'w4WM2Jqm', '8493557'), - (729, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'w4WM2Jqm', '8493558'), - (729, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'w4WM2Jqm', '8493559'), - (729, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'w4WM2Jqm', '8493560'), - (729, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'w4WM2Jqm', '8493561'), - (729, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'w4WM2Jqm', '8493572'), - (729, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'w4WM2Jqm', '8540725'), - (729, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'w4WM2Jqm', '8555421'), - (730, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oeVrMm', '6045684'), - (731, 3278, 'attending', '2025-09-30 15:00:37', '2025-12-17 19:46:13', 'Arneo6wA', '8535533'), - (731, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'Arneo6wA', '8540725'), - (731, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Arneo6wA', '8555421'), - (733, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kxlDVzd', '4736503'), - (733, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kxlDVzd', '4736504'), - (733, 1212, 'not_attending', '2022-03-01 05:06:31', '2025-12-17 19:47:32', '4kxlDVzd', '4780759'), - (733, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kxlDVzd', '5132533'), - (733, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4kxlDVzd', '5186582'), - (733, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4kxlDVzd', '5186583'), - (733, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4kxlDVzd', '5186585'), - (733, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4kxlDVzd', '5190437'), - (733, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', '4kxlDVzd', '5196763'), - (733, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '4kxlDVzd', '5199460'), - (733, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4kxlDVzd', '5215989'), - (733, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4kxlDVzd', '5223686'), - (733, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4kxlDVzd', '5227432'), - (733, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kxlDVzd', '6045684'), - (734, 991, 'not_attending', '2021-09-11 21:32:48', '2025-12-17 19:47:43', 'mRBnX7Qm', '4420738'), - (734, 992, 'not_attending', '2021-09-13 06:12:01', '2025-12-17 19:47:34', 'mRBnX7Qm', '4420739'), - (734, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'mRBnX7Qm', '4420741'), - (734, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'mRBnX7Qm', '4420744'), - (734, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mRBnX7Qm', '4420747'), - (734, 1023, 'not_attending', '2021-09-10 01:51:52', '2025-12-17 19:47:43', 'mRBnX7Qm', '4461883'), - (734, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'mRBnX7Qm', '4508342'), - (734, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mRBnX7Qm', '4568602'), - (734, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mRBnX7Qm', '4572153'), - (734, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mRBnX7Qm', '4585962'), - (734, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mRBnX7Qm', '4596356'), - (734, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'mRBnX7Qm', '4598860'), - (734, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'mRBnX7Qm', '4598861'), - (734, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'mRBnX7Qm', '4602797'), - (734, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'mRBnX7Qm', '4637896'), - (734, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mRBnX7Qm', '4642994'), - (734, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mRBnX7Qm', '4642995'), - (734, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mRBnX7Qm', '4642996'), - (734, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mRBnX7Qm', '4642997'), - (734, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mRBnX7Qm', '4645687'), - (734, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mRBnX7Qm', '4645698'), - (734, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mRBnX7Qm', '4645704'), - (734, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mRBnX7Qm', '4645705'), - (734, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mRBnX7Qm', '4668385'), - (734, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mRBnX7Qm', '6045684'), - (735, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXBv5Bvd', '6045684'), - (736, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'LmpVXGB4', '3470305'), - (736, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'LmpVXGB4', '3470991'), - (736, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'LmpVXGB4', '3517815'), - (736, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'LmpVXGB4', '3523941'), - (736, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'LmpVXGB4', '3533850'), - (736, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'LmpVXGB4', '3536632'), - (736, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'LmpVXGB4', '3536656'), - (736, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'LmpVXGB4', '3539916'), - (736, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'LmpVXGB4', '3539917'), - (736, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'LmpVXGB4', '3539918'), - (736, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'LmpVXGB4', '3539919'), - (736, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'LmpVXGB4', '3539920'), - (736, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'LmpVXGB4', '3539921'), - (736, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'LmpVXGB4', '3539922'), - (736, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'LmpVXGB4', '3539923'), - (736, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpVXGB4', '6045684'), - (737, 441, 'not_attending', '2020-11-08 05:29:16', '2025-12-17 19:47:54', 'Qd5zVgOm', '3256169'), - (737, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'Qd5zVgOm', '3266138'), - (737, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'Qd5zVgOm', '3281467'), - (737, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Qd5zVgOm', '3281470'), - (737, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'Qd5zVgOm', '3281829'), - (737, 468, 'attending', '2020-11-13 23:02:34', '2025-12-17 19:47:54', 'Qd5zVgOm', '3285413'), - (737, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Qd5zVgOm', '3285414'), - (737, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Qd5zVgOm', '3297764'), - (737, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Qd5zVgOm', '3313856'), - (737, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Qd5zVgOm', '3314909'), - (737, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Qd5zVgOm', '3314964'), - (737, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'Qd5zVgOm', '3323365'), - (737, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Qd5zVgOm', '3329383'), - (737, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Qd5zVgOm', '3351539'), - (737, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Qd5zVgOm', '3386848'), - (737, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Qd5zVgOm', '3389527'), - (737, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Qd5zVgOm', '3396499'), - (737, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Qd5zVgOm', '3403650'), - (737, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Qd5zVgOm', '3406988'), - (737, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Qd5zVgOm', '3416576'), - (737, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Qd5zVgOm', '3426074'), - (737, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd5zVgOm', '6045684'), - (738, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dw83JB0m', '5195095'), - (738, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dw83JB0m', '5223686'), - (738, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dw83JB0m', '5227432'), - (738, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dw83JB0m', '5247467'), - (738, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dw83JB0m', '5260800'), - (738, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dw83JB0m', '5269930'), - (738, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dw83JB0m', '5271448'), - (738, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dw83JB0m', '5271449'), - (738, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dw83JB0m', '5276469'), - (738, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dw83JB0m', '5278159'), - (738, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dw83JB0m', '6045684'), - (739, 919, 'not_attending', '2021-07-15 00:59:54', '2025-12-17 19:47:39', 'AnbbDwwA', '4275957'), - (739, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AnbbDwwA', '6045684'), - (740, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Pm7X27pA', '3539919'), - (740, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm7X27pA', '3539920'), - (740, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm7X27pA', '3539921'), - (740, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Pm7X27pA', '3539922'), - (740, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Pm7X27pA', '3539923'), - (740, 671, 'not_attending', '2021-07-17 19:52:36', '2025-12-17 19:47:39', 'Pm7X27pA', '3547149'), - (740, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'Pm7X27pA', '3583262'), - (740, 744, 'not_attending', '2021-06-12 20:33:00', '2025-12-17 19:47:47', 'Pm7X27pA', '3680624'), - (740, 746, 'attending', '2021-06-30 17:39:26', '2025-12-17 19:47:39', 'Pm7X27pA', '3680626'), - (740, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7X27pA', '3730212'), - (740, 775, 'attending', '2021-04-21 08:25:59', '2025-12-17 19:47:45', 'Pm7X27pA', '3731062'), - (740, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7X27pA', '3793156'), - (740, 805, 'not_attending', '2021-06-14 18:15:47', '2025-12-17 19:47:47', 'Pm7X27pA', '3804777'), - (740, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Pm7X27pA', '3974109'), - (740, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7X27pA', '3975311'), - (740, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Pm7X27pA', '3975312'), - (740, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7X27pA', '3994992'), - (740, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Pm7X27pA', '4014338'), - (740, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'Pm7X27pA', '4021848'), - (740, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Pm7X27pA', '4136744'), - (740, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Pm7X27pA', '4136937'), - (740, 871, 'attending', '2021-07-07 13:07:31', '2025-12-17 19:47:39', 'Pm7X27pA', '4136938'), - (740, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Pm7X27pA', '4136947'), - (740, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Pm7X27pA', '4210314'), - (740, 887, 'attending', '2021-07-14 20:35:40', '2025-12-17 19:47:39', 'Pm7X27pA', '4225444'), - (740, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Pm7X27pA', '4239259'), - (740, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Pm7X27pA', '4240316'), - (740, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Pm7X27pA', '4240317'), - (740, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Pm7X27pA', '4240318'), - (740, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Pm7X27pA', '4240320'), - (740, 904, 'maybe', '2021-07-06 08:50:06', '2025-12-17 19:47:39', 'Pm7X27pA', '4241594'), - (740, 905, 'attending', '2021-07-06 08:49:05', '2025-12-17 19:47:39', 'Pm7X27pA', '4250163'), - (740, 909, 'maybe', '2021-07-10 18:29:14', '2025-12-17 19:47:39', 'Pm7X27pA', '4258187'), - (740, 910, 'maybe', '2021-07-13 20:40:42', '2025-12-17 19:47:39', 'Pm7X27pA', '4258189'), - (740, 919, 'not_attending', '2021-07-17 19:52:32', '2025-12-17 19:47:39', 'Pm7X27pA', '4275957'), - (740, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Pm7X27pA', '4277819'), - (740, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Pm7X27pA', '4301723'), - (740, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'Pm7X27pA', '4302093'), - (740, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Pm7X27pA', '4304151'), - (740, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Pm7X27pA', '4356801'), - (740, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Pm7X27pA', '4366186'), - (740, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Pm7X27pA', '4366187'), - (740, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Pm7X27pA', '4420735'), - (740, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Pm7X27pA', '4420738'), - (740, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Pm7X27pA', '4420739'), - (740, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Pm7X27pA', '4420741'), - (740, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Pm7X27pA', '4420744'), - (740, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Pm7X27pA', '4420747'), - (740, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Pm7X27pA', '4420748'), - (740, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Pm7X27pA', '4420749'), - (740, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Pm7X27pA', '4461883'), - (740, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Pm7X27pA', '4508342'), - (740, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7X27pA', '6045684'), - (741, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4736497'), - (741, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4736499'), - (741, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4736500'), - (741, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm7Q1o9Y4', '4736503'), - (741, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm7Q1o9Y4', '4736504'), - (741, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm7Q1o9Y4', '4746789'), - (741, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4753929'), - (741, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm7Q1o9Y4', '5038850'), - (741, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm7Q1o9Y4', '5045826'), - (741, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm7Q1o9Y4', '5132533'), - (741, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm7Q1o9Y4', '6045684'), - (742, 975, 'maybe', '2021-08-16 17:44:22', '2025-12-17 19:47:42', 'QdJbkbPd', '4367341'), - (742, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJbkbPd', '6045684'), - (743, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', 'AYwOGa9d', '5426882'), - (743, 1513, 'attending', '2022-07-16 01:15:13', '2025-12-17 19:47:19', 'AYwOGa9d', '5441125'), - (743, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AYwOGa9d', '5441126'), - (743, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AYwOGa9d', '5441128'), - (743, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AYwOGa9d', '5446643'), - (743, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'AYwOGa9d', '5449068'), - (743, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AYwOGa9d', '5453325'), - (743, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AYwOGa9d', '5454516'), - (743, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AYwOGa9d', '5454605'), - (743, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AYwOGa9d', '5455037'), - (743, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AYwOGa9d', '5461278'), - (743, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AYwOGa9d', '5469480'), - (743, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AYwOGa9d', '5471073'), - (743, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AYwOGa9d', '5474663'), - (743, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AYwOGa9d', '5482022'), - (743, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AYwOGa9d', '5482793'), - (743, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AYwOGa9d', '5488912'), - (743, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AYwOGa9d', '5492192'), - (743, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AYwOGa9d', '5493139'), - (743, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AYwOGa9d', '5493200'), - (743, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AYwOGa9d', '5502188'), - (743, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYwOGa9d', '6045684'), - (744, 398, 'attending', '2021-01-20 17:38:30', '2025-12-17 19:47:49', 'rdOrzKW4', '3236453'), - (744, 555, 'not_attending', '2021-01-22 16:37:59', '2025-12-17 19:47:49', 'rdOrzKW4', '3416576'), - (744, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'rdOrzKW4', '3426074'), - (744, 565, 'attending', '2021-01-27 16:58:05', '2025-12-17 19:47:49', 'rdOrzKW4', '3426083'), - (744, 566, 'attending', '2021-01-30 17:35:35', '2025-12-17 19:47:49', 'rdOrzKW4', '3427928'), - (744, 568, 'attending', '2021-01-27 22:40:22', '2025-12-17 19:47:50', 'rdOrzKW4', '3430267'), - (744, 569, 'not_attending', '2021-01-25 07:02:07', '2025-12-17 19:47:49', 'rdOrzKW4', '3432673'), - (744, 571, 'attending', '2021-02-12 21:48:48', '2025-12-17 19:47:50', 'rdOrzKW4', '3435539'), - (744, 578, 'attending', '2021-02-03 18:55:57', '2025-12-17 19:47:50', 'rdOrzKW4', '3440043'), - (744, 579, 'attending', '2021-02-06 23:56:21', '2025-12-17 19:47:50', 'rdOrzKW4', '3440978'), - (744, 581, 'attending', '2021-02-01 23:59:23', '2025-12-17 19:47:50', 'rdOrzKW4', '3445029'), - (744, 585, 'attending', '2021-02-08 20:28:20', '2025-12-17 19:47:50', 'rdOrzKW4', '3449468'), - (744, 586, 'attending', '2021-02-10 22:59:27', '2025-12-17 19:47:50', 'rdOrzKW4', '3449469'), - (744, 587, 'attending', '2021-02-15 19:46:25', '2025-12-17 19:47:50', 'rdOrzKW4', '3449470'), - (744, 588, 'attending', '2021-02-14 21:01:44', '2025-12-17 19:47:50', 'rdOrzKW4', '3449471'), - (744, 590, 'attending', '2021-02-11 21:54:30', '2025-12-17 19:47:50', 'rdOrzKW4', '3459150'), - (744, 592, 'attending', '2021-02-24 22:12:06', '2025-12-17 19:47:50', 'rdOrzKW4', '3467757'), - (744, 598, 'attending', '2021-02-09 22:24:25', '2025-12-17 19:47:50', 'rdOrzKW4', '3468003'), - (744, 602, 'attending', '2021-02-12 21:47:01', '2025-12-17 19:47:50', 'rdOrzKW4', '3470303'), - (744, 603, 'attending', '2021-02-21 00:52:38', '2025-12-17 19:47:50', 'rdOrzKW4', '3470304'), - (744, 604, 'attending', '2021-02-24 22:12:58', '2025-12-17 19:47:50', 'rdOrzKW4', '3470305'), - (744, 605, 'attending', '2021-02-15 00:40:56', '2025-12-17 19:47:50', 'rdOrzKW4', '3470991'), - (744, 621, 'not_attending', '2021-03-07 00:08:40', '2025-12-17 19:47:51', 'rdOrzKW4', '3517815'), - (744, 622, 'attending', '2021-03-13 06:40:12', '2025-12-17 19:47:51', 'rdOrzKW4', '3517816'), - (744, 623, 'attending', '2021-02-25 18:09:53', '2025-12-17 19:47:50', 'rdOrzKW4', '3523941'), - (744, 628, 'not_attending', '2021-03-15 21:46:02', '2025-12-17 19:47:51', 'rdOrzKW4', '3533305'), - (744, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOrzKW4', '3533850'), - (744, 635, 'not_attending', '2021-04-06 18:15:29', '2025-12-17 19:47:44', 'rdOrzKW4', '3534719'), - (744, 637, 'attending', '2021-03-01 17:33:22', '2025-12-17 19:47:51', 'rdOrzKW4', '3536411'), - (744, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOrzKW4', '3536632'), - (744, 639, 'attending', '2021-03-01 19:41:07', '2025-12-17 19:47:51', 'rdOrzKW4', '3536656'), - (744, 641, 'not_attending', '2021-03-31 23:07:26', '2025-12-17 19:47:44', 'rdOrzKW4', '3539916'), - (744, 642, 'attending', '2021-04-08 16:46:39', '2025-12-17 19:47:44', 'rdOrzKW4', '3539917'), - (744, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOrzKW4', '3539918'), - (744, 644, 'not_attending', '2021-04-24 01:18:20', '2025-12-17 19:47:46', 'rdOrzKW4', '3539919'), - (744, 645, 'not_attending', '2021-05-04 21:36:08', '2025-12-17 19:47:46', 'rdOrzKW4', '3539920'), - (744, 646, 'not_attending', '2021-05-13 22:41:24', '2025-12-17 19:47:46', 'rdOrzKW4', '3539921'), - (744, 647, 'not_attending', '2021-05-29 19:27:51', '2025-12-17 19:47:47', 'rdOrzKW4', '3539922'), - (744, 648, 'not_attending', '2021-05-29 22:49:36', '2025-12-17 19:47:47', 'rdOrzKW4', '3539923'), - (744, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOrzKW4', '3539927'), - (744, 682, 'not_attending', '2021-03-20 21:12:08', '2025-12-17 19:47:51', 'rdOrzKW4', '3548806'), - (744, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOrzKW4', '3582734'), - (744, 707, 'attending', '2021-04-25 19:48:56', '2025-12-17 19:47:46', 'rdOrzKW4', '3583262'), - (744, 713, 'attending', '2021-04-01 22:51:22', '2025-12-17 19:47:44', 'rdOrzKW4', '3604061'), - (744, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOrzKW4', '3619523'), - (744, 724, 'attending', '2021-05-04 21:36:21', '2025-12-17 19:47:46', 'rdOrzKW4', '3661369'), - (744, 731, 'not_attending', '2021-04-06 18:15:12', '2025-12-17 19:47:44', 'rdOrzKW4', '3674262'), - (744, 735, 'maybe', '2021-04-06 18:15:06', '2025-12-17 19:47:46', 'rdOrzKW4', '3677402'), - (744, 759, 'attending', '2021-04-22 20:24:38', '2025-12-17 19:47:45', 'rdOrzKW4', '3713701'), - (744, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOrzKW4', '3730212'), - (744, 777, 'not_attending', '2021-05-01 18:01:06', '2025-12-17 19:47:46', 'rdOrzKW4', '3746248'), - (744, 788, 'attending', '2021-05-07 22:30:20', '2025-12-17 19:47:46', 'rdOrzKW4', '3781975'), - (744, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'rdOrzKW4', '3793156'), - (744, 805, 'attending', '2021-06-13 17:35:56', '2025-12-17 19:47:47', 'rdOrzKW4', '3804777'), - (744, 823, 'not_attending', '2021-06-19 18:32:25', '2025-12-17 19:47:48', 'rdOrzKW4', '3974109'), - (744, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'rdOrzKW4', '3975311'), - (744, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'rdOrzKW4', '3975312'), - (744, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOrzKW4', '3994992'), - (744, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'rdOrzKW4', '4014338'), - (744, 867, 'not_attending', '2021-06-26 21:22:46', '2025-12-17 19:47:38', 'rdOrzKW4', '4021848'), - (744, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'rdOrzKW4', '4136744'), - (744, 870, 'not_attending', '2021-07-03 18:17:28', '2025-12-17 19:47:39', 'rdOrzKW4', '4136937'), - (744, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'rdOrzKW4', '4136938'), - (744, 872, 'attending', '2021-07-19 22:58:34', '2025-12-17 19:47:40', 'rdOrzKW4', '4136947'), - (744, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOrzKW4', '4210314'), - (744, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'rdOrzKW4', '4225444'), - (744, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdOrzKW4', '4239259'), - (744, 900, 'attending', '2021-07-24 16:11:44', '2025-12-17 19:47:40', 'rdOrzKW4', '4240316'), - (744, 901, 'not_attending', '2021-07-31 02:00:36', '2025-12-17 19:47:40', 'rdOrzKW4', '4240317'), - (744, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdOrzKW4', '4240318'), - (744, 903, 'attending', '2021-08-14 00:23:17', '2025-12-17 19:47:42', 'rdOrzKW4', '4240320'), - (744, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdOrzKW4', '4250163'), - (744, 919, 'attending', '2021-07-16 15:57:18', '2025-12-17 19:47:39', 'rdOrzKW4', '4275957'), - (744, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdOrzKW4', '4277819'), - (744, 924, 'not_attending', '2021-07-22 02:21:38', '2025-12-17 19:47:40', 'rdOrzKW4', '4297137'), - (744, 926, 'attending', '2021-08-18 22:49:27', '2025-12-17 19:47:42', 'rdOrzKW4', '4297211'), - (744, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdOrzKW4', '4301723'), - (744, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'rdOrzKW4', '4302093'), - (744, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOrzKW4', '4304151'), - (744, 967, 'attending', '2021-08-19 19:12:36', '2025-12-17 19:47:42', 'rdOrzKW4', '4356164'), - (744, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOrzKW4', '4356801'), - (744, 973, 'attending', '2021-08-15 21:33:26', '2025-12-17 19:47:42', 'rdOrzKW4', '4366186'), - (744, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdOrzKW4', '4366187'), - (744, 976, 'attending', '2021-08-19 15:41:24', '2025-12-17 19:47:42', 'rdOrzKW4', '4373933'), - (744, 990, 'attending', '2021-09-01 18:19:04', '2025-12-17 19:47:43', 'rdOrzKW4', '4420735'), - (744, 991, 'attending', '2021-09-11 17:31:24', '2025-12-17 19:47:43', 'rdOrzKW4', '4420738'), - (744, 992, 'not_attending', '2021-09-18 07:00:08', '2025-12-17 19:47:34', 'rdOrzKW4', '4420739'), - (744, 993, 'attending', '2021-09-22 00:56:56', '2025-12-17 19:47:34', 'rdOrzKW4', '4420741'), - (744, 994, 'attending', '2021-10-02 02:31:48', '2025-12-17 19:47:34', 'rdOrzKW4', '4420742'), - (744, 995, 'not_attending', '2021-10-09 16:47:52', '2025-12-17 19:47:34', 'rdOrzKW4', '4420744'), - (744, 996, 'attending', '2021-10-16 18:02:32', '2025-12-17 19:47:35', 'rdOrzKW4', '4420747'), - (744, 997, 'attending', '2021-10-22 20:48:10', '2025-12-17 19:47:35', 'rdOrzKW4', '4420748'), - (744, 998, 'attending', '2021-10-30 20:52:53', '2025-12-17 19:47:36', 'rdOrzKW4', '4420749'), - (744, 1020, 'attending', '2021-09-13 21:55:51', '2025-12-17 19:47:43', 'rdOrzKW4', '4451787'), - (744, 1022, 'attending', '2021-09-15 17:59:07', '2025-12-17 19:47:43', 'rdOrzKW4', '4458628'), - (744, 1023, 'not_attending', '2021-09-13 20:45:43', '2025-12-17 19:47:43', 'rdOrzKW4', '4461883'), - (744, 1032, 'not_attending', '2021-09-26 16:40:24', '2025-12-17 19:47:34', 'rdOrzKW4', '4473825'), - (744, 1036, 'attending', '2021-09-22 20:42:29', '2025-12-17 19:47:34', 'rdOrzKW4', '4493166'), - (744, 1064, 'not_attending', '2021-09-21 23:30:25', '2025-12-17 19:47:34', 'rdOrzKW4', '4499526'), - (744, 1065, 'attending', '2021-09-21 23:30:29', '2025-12-17 19:47:34', 'rdOrzKW4', '4505800'), - (744, 1067, 'attending', '2021-09-24 15:30:12', '2025-12-17 19:47:34', 'rdOrzKW4', '4508342'), - (744, 1072, 'attending', '2021-10-03 06:12:33', '2025-12-17 19:47:34', 'rdOrzKW4', '4516287'), - (744, 1074, 'attending', '2021-09-29 19:41:54', '2025-12-17 19:47:34', 'rdOrzKW4', '4528953'), - (744, 1080, 'attending', '2021-10-11 00:09:12', '2025-12-17 19:47:34', 'rdOrzKW4', '4564599'), - (744, 1081, 'attending', '2021-10-11 00:09:55', '2025-12-17 19:47:34', 'rdOrzKW4', '4564602'), - (744, 1086, 'attending', '2021-10-14 20:16:55', '2025-12-17 19:47:34', 'rdOrzKW4', '4568602'), - (744, 1087, 'not_attending', '2021-10-16 18:02:24', '2025-12-17 19:47:35', 'rdOrzKW4', '4572153'), - (744, 1088, 'attending', '2021-10-16 04:22:19', '2025-12-17 19:47:35', 'rdOrzKW4', '4574382'), - (744, 1091, 'attending', '2021-10-17 02:16:51', '2025-12-17 19:47:35', 'rdOrzKW4', '4575829'), - (744, 1093, 'attending', '2021-10-22 18:43:17', '2025-12-17 19:47:35', 'rdOrzKW4', '4585962'), - (744, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'rdOrzKW4', '4596356'), - (744, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'rdOrzKW4', '4598860'), - (744, 1098, 'not_attending', '2021-11-10 20:26:48', '2025-12-17 19:47:36', 'rdOrzKW4', '4598861'), - (744, 1099, 'not_attending', '2021-11-06 14:58:39', '2025-12-17 19:47:36', 'rdOrzKW4', '4602797'), - (744, 1105, 'attending', '2021-11-10 20:26:33', '2025-12-17 19:47:36', 'rdOrzKW4', '4618567'), - (744, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'rdOrzKW4', '4637896'), - (744, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'rdOrzKW4', '4642994'), - (744, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'rdOrzKW4', '4642995'), - (744, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'rdOrzKW4', '4642996'), - (744, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'rdOrzKW4', '4642997'), - (744, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'rdOrzKW4', '4645687'), - (744, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'rdOrzKW4', '4645698'), - (744, 1128, 'not_attending', '2021-11-19 18:58:48', '2025-12-17 19:47:37', 'rdOrzKW4', '4645704'), - (744, 1129, 'not_attending', '2021-11-27 22:37:31', '2025-12-17 19:47:37', 'rdOrzKW4', '4645705'), - (744, 1130, 'not_attending', '2021-12-01 02:39:55', '2025-12-17 19:47:37', 'rdOrzKW4', '4658824'), - (744, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'rdOrzKW4', '4668385'), - (744, 1149, 'not_attending', '2021-12-09 04:32:30', '2025-12-17 19:47:38', 'rdOrzKW4', '4694407'), - (744, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'rdOrzKW4', '4706262'), - (744, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'rdOrzKW4', '4736497'), - (744, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'rdOrzKW4', '4736499'), - (744, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'rdOrzKW4', '4736500'), - (744, 1181, 'attending', '2022-03-05 02:55:52', '2025-12-17 19:47:33', 'rdOrzKW4', '4736503'), - (744, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'rdOrzKW4', '4736504'), - (744, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'rdOrzKW4', '4746789'), - (744, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'rdOrzKW4', '4753929'), - (744, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'rdOrzKW4', '5038850'), - (744, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'rdOrzKW4', '5045826'), - (744, 1259, 'maybe', '2022-03-01 19:53:17', '2025-12-17 19:47:33', 'rdOrzKW4', '5132533'), - (744, 1272, 'not_attending', '2022-03-19 18:06:05', '2025-12-17 19:47:25', 'rdOrzKW4', '5186582'), - (744, 1273, 'not_attending', '2022-03-26 21:34:14', '2025-12-17 19:47:25', 'rdOrzKW4', '5186583'), - (744, 1274, 'attending', '2022-04-02 17:46:08', '2025-12-17 19:47:26', 'rdOrzKW4', '5186585'), - (744, 1281, 'not_attending', '2022-04-09 20:31:08', '2025-12-17 19:47:27', 'rdOrzKW4', '5190437'), - (744, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'rdOrzKW4', '5195095'), - (744, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'rdOrzKW4', '5215989'), - (744, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'rdOrzKW4', '5223686'), - (744, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'rdOrzKW4', '5227432'), - (744, 1311, 'not_attending', '2022-04-08 02:44:27', '2025-12-17 19:47:27', 'rdOrzKW4', '5231430'), - (744, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'rdOrzKW4', '5231461'), - (744, 1346, 'not_attending', '2022-04-23 15:05:08', '2025-12-17 19:47:27', 'rdOrzKW4', '5247467'), - (744, 1362, 'not_attending', '2022-04-30 22:23:51', '2025-12-17 19:47:28', 'rdOrzKW4', '5260800'), - (744, 1374, 'not_attending', '2022-05-07 15:33:10', '2025-12-17 19:47:28', 'rdOrzKW4', '5269930'), - (744, 1378, 'not_attending', '2022-05-14 22:23:06', '2025-12-17 19:47:29', 'rdOrzKW4', '5271448'), - (744, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'rdOrzKW4', '5271449'), - (744, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'rdOrzKW4', '5276469'), - (744, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'rdOrzKW4', '5278159'), - (744, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'rdOrzKW4', '5363695'), - (744, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'rdOrzKW4', '5365960'), - (744, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'rdOrzKW4', '5368973'), - (744, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'rdOrzKW4', '5378247'), - (744, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'rdOrzKW4', '5389605'), - (744, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'rdOrzKW4', '5397265'), - (744, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'rdOrzKW4', '5403967'), - (744, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'rdOrzKW4', '5404786'), - (744, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'rdOrzKW4', '5405203'), - (744, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'rdOrzKW4', '5411699'), - (744, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'rdOrzKW4', '5412550'), - (744, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'rdOrzKW4', '5415046'), - (744, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'rdOrzKW4', '5422086'), - (744, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'rdOrzKW4', '5422406'), - (744, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'rdOrzKW4', '5424565'), - (744, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'rdOrzKW4', '5426882'), - (744, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'rdOrzKW4', '5427083'), - (744, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'rdOrzKW4', '5441125'), - (744, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'rdOrzKW4', '5441126'), - (744, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'rdOrzKW4', '5441128'), - (744, 1517, 'attending', '2022-08-27 17:39:16', '2025-12-17 19:47:23', 'rdOrzKW4', '5441130'), - (744, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'rdOrzKW4', '5441131'), - (744, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'rdOrzKW4', '5441132'), - (744, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'rdOrzKW4', '5446643'), - (744, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'rdOrzKW4', '5453325'), - (744, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'rdOrzKW4', '5454516'), - (744, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'rdOrzKW4', '5454605'), - (744, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'rdOrzKW4', '5455037'), - (744, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'rdOrzKW4', '5461278'), - (744, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'rdOrzKW4', '5469480'), - (744, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'rdOrzKW4', '5471073'), - (744, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'rdOrzKW4', '5474663'), - (744, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'rdOrzKW4', '5482022'), - (744, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'rdOrzKW4', '5482793'), - (744, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'rdOrzKW4', '5488912'), - (744, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'rdOrzKW4', '5492192'), - (744, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'rdOrzKW4', '5493139'), - (744, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'rdOrzKW4', '5493200'), - (744, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'rdOrzKW4', '5502188'), - (744, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'rdOrzKW4', '5505059'), - (744, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'rdOrzKW4', '5509055'), - (744, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'rdOrzKW4', '5512862'), - (744, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'rdOrzKW4', '5513985'), - (744, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'rdOrzKW4', '5519981'), - (744, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'rdOrzKW4', '5522550'), - (744, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'rdOrzKW4', '5534683'), - (744, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'rdOrzKW4', '5537735'), - (744, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'rdOrzKW4', '5540859'), - (744, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'rdOrzKW4', '5546619'), - (744, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'rdOrzKW4', '5555245'), - (744, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'rdOrzKW4', '5557747'), - (744, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'rdOrzKW4', '5560255'), - (744, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'rdOrzKW4', '5562906'), - (744, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'rdOrzKW4', '5600604'), - (744, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'rdOrzKW4', '5605544'), - (744, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'rdOrzKW4', '5606737'), - (744, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'rdOrzKW4', '5630960'), - (744, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'rdOrzKW4', '5630961'), - (744, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'rdOrzKW4', '5630962'), - (744, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'rdOrzKW4', '5630966'), - (744, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'rdOrzKW4', '5630967'), - (744, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'rdOrzKW4', '5630968'), - (744, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'rdOrzKW4', '5635406'), - (744, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'rdOrzKW4', '5638765'), - (744, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'rdOrzKW4', '5640097'), - (744, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'rdOrzKW4', '5640843'), - (744, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'rdOrzKW4', '5641521'), - (744, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'rdOrzKW4', '5642818'), - (744, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'rdOrzKW4', '5652395'), - (744, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'rdOrzKW4', '5670445'), - (744, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'rdOrzKW4', '5671637'), - (744, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'rdOrzKW4', '5672329'), - (744, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'rdOrzKW4', '5674057'), - (744, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'rdOrzKW4', '5674060'), - (744, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'rdOrzKW4', '5677461'), - (744, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'rdOrzKW4', '5698046'), - (744, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'rdOrzKW4', '5699760'), - (744, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'rdOrzKW4', '5741601'), - (744, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'rdOrzKW4', '5763458'), - (744, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'rdOrzKW4', '5774172'), - (744, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'rdOrzKW4', '5818247'), - (744, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'rdOrzKW4', '5819471'), - (744, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'rdOrzKW4', '5827739'), - (744, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'rdOrzKW4', '5844306'), - (744, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'rdOrzKW4', '5850159'), - (744, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'rdOrzKW4', '5858999'), - (744, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'rdOrzKW4', '5871984'), - (744, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'rdOrzKW4', '5876354'), - (744, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'rdOrzKW4', '5880939'), - (744, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'rdOrzKW4', '5880940'), - (744, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'rdOrzKW4', '5880942'), - (744, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'rdOrzKW4', '5880943'), - (744, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'rdOrzKW4', '5887890'), - (744, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'rdOrzKW4', '5888598'), - (744, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'rdOrzKW4', '5893260'), - (744, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'rdOrzKW4', '5899826'), - (744, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'rdOrzKW4', '5900199'), - (744, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'rdOrzKW4', '5900200'), - (744, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'rdOrzKW4', '5900202'), - (744, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'rdOrzKW4', '5900203'), - (744, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'rdOrzKW4', '5901108'), - (744, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'rdOrzKW4', '5901126'), - (744, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'rdOrzKW4', '5909655'), - (744, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'rdOrzKW4', '5910522'), - (744, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'rdOrzKW4', '5910526'), - (744, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'rdOrzKW4', '5910528'), - (744, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'rdOrzKW4', '5916219'), - (744, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'rdOrzKW4', '5936234'), - (744, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'rdOrzKW4', '5958351'), - (744, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'rdOrzKW4', '5959751'), - (744, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'rdOrzKW4', '5959755'), - (744, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'rdOrzKW4', '5960055'), - (744, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'rdOrzKW4', '5961684'), - (744, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'rdOrzKW4', '5962132'), - (744, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'rdOrzKW4', '5962133'), - (744, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'rdOrzKW4', '5962134'), - (744, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'rdOrzKW4', '5962317'), - (744, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'rdOrzKW4', '5962318'), - (744, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'rdOrzKW4', '5965933'), - (744, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'rdOrzKW4', '5967014'), - (744, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'rdOrzKW4', '5972763'), - (744, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'rdOrzKW4', '5972815'), - (744, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'rdOrzKW4', '5974016'), - (744, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'rdOrzKW4', '5975052'), - (744, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'rdOrzKW4', '5975054'), - (744, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'rdOrzKW4', '5981515'), - (744, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'rdOrzKW4', '5993516'), - (744, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'rdOrzKW4', '5998939'), - (744, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'rdOrzKW4', '6028191'), - (744, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'rdOrzKW4', '6040066'), - (744, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'rdOrzKW4', '6042717'), - (744, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'rdOrzKW4', '6044838'), - (744, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'rdOrzKW4', '6044839'), - (744, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOrzKW4', '6045684'), - (744, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'rdOrzKW4', '6050104'), - (744, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'rdOrzKW4', '6053195'), - (744, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'rdOrzKW4', '6053198'), - (744, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'rdOrzKW4', '6056085'), - (744, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'rdOrzKW4', '6056916'), - (744, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'rdOrzKW4', '6059290'), - (744, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'rdOrzKW4', '6060328'), - (744, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'rdOrzKW4', '6061037'), - (744, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'rdOrzKW4', '6061039'), - (744, 2020, 'not_attending', '2023-04-14 17:15:22', '2025-12-17 19:46:59', 'rdOrzKW4', '6065813'), - (744, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'rdOrzKW4', '6067245'), - (744, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'rdOrzKW4', '6068094'), - (744, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'rdOrzKW4', '6068252'), - (744, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'rdOrzKW4', '6068253'), - (744, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'rdOrzKW4', '6068254'), - (744, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'rdOrzKW4', '6068280'), - (744, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'rdOrzKW4', '6069093'), - (744, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'rdOrzKW4', '6072528'), - (744, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'rdOrzKW4', '6075556'), - (744, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'rdOrzKW4', '6079840'), - (744, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'rdOrzKW4', '6083398'), - (744, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'rdOrzKW4', '6093504'), - (744, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'rdOrzKW4', '6097414'), - (744, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'rdOrzKW4', '6097442'), - (744, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'rdOrzKW4', '6097684'), - (744, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'rdOrzKW4', '6098762'), - (744, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'rdOrzKW4', '6101362'), - (744, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'rdOrzKW4', '6107314'), - (745, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AnbXzrLA', '6045684'), - (746, 245, 'not_attending', '2020-12-01 21:33:56', '2025-12-17 19:47:54', 'oAQp8RZm', '3149476'), - (746, 247, 'not_attending', '2020-12-15 01:40:46', '2025-12-17 19:47:48', 'oAQp8RZm', '3149478'), - (746, 251, 'not_attending', '2021-01-26 18:53:29', '2025-12-17 19:47:49', 'oAQp8RZm', '3149482'), - (746, 398, 'not_attending', '2021-01-19 13:40:02', '2025-12-17 19:47:49', 'oAQp8RZm', '3236453'), - (746, 399, 'attending', '2020-11-12 00:48:46', '2025-12-17 19:47:54', 'oAQp8RZm', '3236454'), - (746, 409, 'not_attending', '2020-12-08 23:30:02', '2025-12-17 19:47:54', 'oAQp8RZm', '3236467'), - (746, 460, 'not_attending', '2020-11-19 23:35:23', '2025-12-17 19:47:54', 'oAQp8RZm', '3281468'), - (746, 464, 'attending', '2020-11-20 00:09:43', '2025-12-17 19:47:54', 'oAQp8RZm', '3281554'), - (746, 465, 'not_attending', '2020-11-27 04:32:55', '2025-12-17 19:47:54', 'oAQp8RZm', '3281555'), - (746, 468, 'attending', '2020-11-19 23:43:23', '2025-12-17 19:47:54', 'oAQp8RZm', '3285413'), - (746, 469, 'not_attending', '2020-11-27 04:32:38', '2025-12-17 19:47:54', 'oAQp8RZm', '3285414'), - (746, 477, 'attending', '2020-12-01 21:33:41', '2025-12-17 19:47:54', 'oAQp8RZm', '3289559'), - (746, 481, 'not_attending', '2020-11-23 17:45:24', '2025-12-17 19:47:54', 'oAQp8RZm', '3297764'), - (746, 482, 'attending', '2020-11-23 17:45:36', '2025-12-17 19:47:54', 'oAQp8RZm', '3297769'), - (746, 488, 'not_attending', '2020-12-01 21:34:06', '2025-12-17 19:47:54', 'oAQp8RZm', '3312757'), - (746, 490, 'not_attending', '2020-12-08 23:30:08', '2025-12-17 19:47:54', 'oAQp8RZm', '3313532'), - (746, 492, 'not_attending', '2020-12-03 20:38:37', '2025-12-17 19:47:54', 'oAQp8RZm', '3313731'), - (746, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'oAQp8RZm', '3313856'), - (746, 495, 'not_attending', '2020-12-07 21:39:40', '2025-12-17 19:47:54', 'oAQp8RZm', '3314009'), - (746, 499, 'not_attending', '2020-12-08 23:30:40', '2025-12-17 19:47:55', 'oAQp8RZm', '3314909'), - (746, 500, 'not_attending', '2020-12-17 02:47:39', '2025-12-17 19:47:55', 'oAQp8RZm', '3314964'), - (746, 502, 'not_attending', '2020-12-08 23:30:43', '2025-12-17 19:47:55', 'oAQp8RZm', '3323365'), - (746, 503, 'not_attending', '2020-12-15 01:40:16', '2025-12-17 19:47:55', 'oAQp8RZm', '3323366'), - (746, 504, 'not_attending', '2020-12-15 01:40:24', '2025-12-17 19:47:55', 'oAQp8RZm', '3323368'), - (746, 505, 'not_attending', '2020-12-20 15:45:30', '2025-12-17 19:47:55', 'oAQp8RZm', '3323369'), - (746, 506, 'attending', '2020-12-13 15:59:19', '2025-12-17 19:47:55', 'oAQp8RZm', '3323375'), - (746, 507, 'not_attending', '2020-12-15 01:40:56', '2025-12-17 19:47:48', 'oAQp8RZm', '3324148'), - (746, 508, 'attending', '2021-01-13 14:36:10', '2025-12-17 19:47:48', 'oAQp8RZm', '3324231'), - (746, 509, 'not_attending', '2021-01-13 18:25:31', '2025-12-17 19:47:49', 'oAQp8RZm', '3324232'), - (746, 510, 'not_attending', '2021-01-29 06:06:16', '2025-12-17 19:47:49', 'oAQp8RZm', '3324233'), - (746, 511, 'not_attending', '2020-12-13 16:07:06', '2025-12-17 19:47:55', 'oAQp8RZm', '3325335'), - (746, 512, 'maybe', '2020-12-13 16:06:57', '2025-12-17 19:47:55', 'oAQp8RZm', '3325336'), - (746, 513, 'attending', '2020-12-13 16:07:35', '2025-12-17 19:47:55', 'oAQp8RZm', '3329383'), - (746, 517, 'attending', '2020-12-28 23:46:12', '2025-12-17 19:47:48', 'oAQp8RZm', '3337137'), - (746, 518, 'not_attending', '2021-01-05 21:02:27', '2025-12-17 19:47:48', 'oAQp8RZm', '3337138'), - (746, 519, 'not_attending', '2020-12-15 01:40:59', '2025-12-17 19:47:55', 'oAQp8RZm', '3337448'), - (746, 520, 'not_attending', '2020-12-20 15:45:34', '2025-12-17 19:47:55', 'oAQp8RZm', '3337453'), - (746, 521, 'not_attending', '2020-12-28 23:42:45', '2025-12-17 19:47:48', 'oAQp8RZm', '3337454'), - (746, 525, 'not_attending', '2020-12-20 15:45:50', '2025-12-17 19:47:48', 'oAQp8RZm', '3350467'), - (746, 526, 'attending', '2020-12-28 23:45:43', '2025-12-17 19:47:48', 'oAQp8RZm', '3351539'), - (746, 529, 'attending', '2021-01-05 21:02:12', '2025-12-17 19:47:48', 'oAQp8RZm', '3364568'), - (746, 532, 'not_attending', '2021-01-08 05:28:50', '2025-12-17 19:47:48', 'oAQp8RZm', '3381412'), - (746, 534, 'not_attending', '2021-01-08 05:29:08', '2025-12-17 19:47:48', 'oAQp8RZm', '3384157'), - (746, 535, 'not_attending', '2021-01-08 05:29:00', '2025-12-17 19:47:48', 'oAQp8RZm', '3384729'), - (746, 536, 'not_attending', '2021-01-08 05:29:13', '2025-12-17 19:47:48', 'oAQp8RZm', '3386848'), - (746, 537, 'not_attending', '2021-01-08 05:29:04', '2025-12-17 19:47:48', 'oAQp8RZm', '3387153'), - (746, 538, 'attending', '2021-01-13 18:24:49', '2025-12-17 19:47:48', 'oAQp8RZm', '3388151'), - (746, 539, 'not_attending', '2021-01-13 18:24:39', '2025-12-17 19:47:48', 'oAQp8RZm', '3389158'), - (746, 540, 'not_attending', '2021-01-08 23:51:55', '2025-12-17 19:47:48', 'oAQp8RZm', '3389527'), - (746, 541, 'not_attending', '2021-01-08 23:51:51', '2025-12-17 19:47:48', 'oAQp8RZm', '3391683'), - (746, 542, 'not_attending', '2021-01-10 22:21:16', '2025-12-17 19:47:48', 'oAQp8RZm', '3395013'), - (746, 543, 'not_attending', '2021-01-13 14:36:12', '2025-12-17 19:47:48', 'oAQp8RZm', '3396499'), - (746, 544, 'attending', '2021-01-12 18:17:32', '2025-12-17 19:47:48', 'oAQp8RZm', '3396500'), - (746, 545, 'not_attending', '2021-01-20 01:13:21', '2025-12-17 19:47:49', 'oAQp8RZm', '3396502'), - (746, 546, 'not_attending', '2021-01-21 06:07:00', '2025-12-17 19:47:49', 'oAQp8RZm', '3396503'), - (746, 547, 'attending', '2021-01-13 18:25:24', '2025-12-17 19:47:49', 'oAQp8RZm', '3396504'), - (746, 548, 'not_attending', '2021-01-13 14:36:23', '2025-12-17 19:47:48', 'oAQp8RZm', '3403650'), - (746, 549, 'not_attending', '2021-01-13 14:37:03', '2025-12-17 19:47:48', 'oAQp8RZm', '3406988'), - (746, 550, 'attending', '2021-01-13 14:36:36', '2025-12-17 19:47:48', 'oAQp8RZm', '3407018'), - (746, 551, 'not_attending', '2021-01-13 18:25:12', '2025-12-17 19:47:49', 'oAQp8RZm', '3407219'), - (746, 552, 'not_attending', '2021-01-13 18:24:42', '2025-12-17 19:47:48', 'oAQp8RZm', '3407225'), - (746, 554, 'not_attending', '2021-01-14 00:37:06', '2025-12-17 19:47:49', 'oAQp8RZm', '3408338'), - (746, 555, 'not_attending', '2021-01-19 13:39:33', '2025-12-17 19:47:49', 'oAQp8RZm', '3416576'), - (746, 556, 'not_attending', '2021-01-26 18:53:31', '2025-12-17 19:47:49', 'oAQp8RZm', '3417170'), - (746, 557, 'not_attending', '2021-01-19 13:39:56', '2025-12-17 19:47:49', 'oAQp8RZm', '3418748'), - (746, 558, 'not_attending', '2021-01-19 13:40:10', '2025-12-17 19:47:49', 'oAQp8RZm', '3418925'), - (746, 559, 'not_attending', '2021-01-26 18:53:42', '2025-12-17 19:47:49', 'oAQp8RZm', '3421439'), - (746, 560, 'not_attending', '2021-01-21 06:07:04', '2025-12-17 19:47:49', 'oAQp8RZm', '3421715'), - (746, 563, 'not_attending', '2021-01-24 16:04:02', '2025-12-17 19:47:49', 'oAQp8RZm', '3425913'), - (746, 564, 'not_attending', '2021-01-24 16:03:58', '2025-12-17 19:47:49', 'oAQp8RZm', '3426074'), - (746, 565, 'not_attending', '2021-01-26 18:53:35', '2025-12-17 19:47:49', 'oAQp8RZm', '3426083'), - (746, 566, 'not_attending', '2021-01-26 18:53:51', '2025-12-17 19:47:49', 'oAQp8RZm', '3427928'), - (746, 567, 'not_attending', '2021-01-26 18:53:55', '2025-12-17 19:47:50', 'oAQp8RZm', '3428895'), - (746, 568, 'not_attending', '2021-01-29 06:06:22', '2025-12-17 19:47:50', 'oAQp8RZm', '3430267'), - (746, 569, 'not_attending', '2021-01-26 18:53:38', '2025-12-17 19:47:49', 'oAQp8RZm', '3432673'), - (746, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'oAQp8RZm', '3470303'), - (746, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'oAQp8RZm', '3470305'), - (746, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'oAQp8RZm', '3470991'), - (746, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'oAQp8RZm', '3517815'), - (746, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'oAQp8RZm', '3517816'), - (746, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'oAQp8RZm', '3523941'), - (746, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'oAQp8RZm', '3533850'), - (746, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'oAQp8RZm', '3536632'), - (746, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'oAQp8RZm', '3536656'), - (746, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'oAQp8RZm', '3539916'), - (746, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'oAQp8RZm', '3539917'), - (746, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'oAQp8RZm', '3539918'), - (746, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'oAQp8RZm', '3539919'), - (746, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'oAQp8RZm', '3539920'), - (746, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'oAQp8RZm', '3539921'), - (746, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'oAQp8RZm', '3539922'), - (746, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'oAQp8RZm', '3539923'), - (746, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'oAQp8RZm', '3539927'), - (746, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'oAQp8RZm', '3582734'), - (746, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'oAQp8RZm', '3583262'), - (746, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'oAQp8RZm', '3619523'), - (746, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'oAQp8RZm', '3661369'), - (746, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'oAQp8RZm', '3674262'), - (746, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'oAQp8RZm', '3677402'), - (746, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'oAQp8RZm', '3730212'), - (746, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAQp8RZm', '3793156'), - (746, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'oAQp8RZm', '3974109'), - (746, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAQp8RZm', '3975311'), - (746, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'oAQp8RZm', '3975312'), - (746, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQp8RZm', '3994992'), - (746, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'oAQp8RZm', '4014338'), - (746, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'oAQp8RZm', '4021848'), - (746, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAQp8RZm', '4136744'), - (746, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAQp8RZm', '4136937'), - (746, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAQp8RZm', '4136938'), - (746, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAQp8RZm', '4136947'), - (746, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAQp8RZm', '4210314'), - (746, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAQp8RZm', '4225444'), - (746, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAQp8RZm', '4239259'), - (746, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAQp8RZm', '4240316'), - (746, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAQp8RZm', '4240317'), - (746, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAQp8RZm', '4240318'), - (746, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'oAQp8RZm', '4240320'), - (746, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQp8RZm', '4250163'), - (746, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAQp8RZm', '4275957'), - (746, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAQp8RZm', '4277819'), - (746, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAQp8RZm', '4301723'), - (746, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAQp8RZm', '4302093'), - (746, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAQp8RZm', '4304151'), - (746, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAQp8RZm', '4356801'), - (746, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAQp8RZm', '4366186'), - (746, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAQp8RZm', '4366187'), - (746, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'oAQp8RZm', '4420735'), - (746, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'oAQp8RZm', '4420738'), - (746, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAQp8RZm', '4420739'), - (746, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAQp8RZm', '4420741'), - (746, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAQp8RZm', '4420744'), - (746, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAQp8RZm', '4420747'), - (746, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAQp8RZm', '4420748'), - (746, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAQp8RZm', '4420749'), - (746, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAQp8RZm', '4461883'), - (746, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAQp8RZm', '4508342'), - (746, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAQp8RZm', '4568602'), - (746, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'oAQp8RZm', '4572153'), - (746, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'oAQp8RZm', '4585962'), - (746, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'oAQp8RZm', '4596356'), - (746, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'oAQp8RZm', '4598860'), - (746, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'oAQp8RZm', '4598861'), - (746, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'oAQp8RZm', '4602797'), - (746, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'oAQp8RZm', '4637896'), - (746, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'oAQp8RZm', '4642994'), - (746, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'oAQp8RZm', '4642995'), - (746, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'oAQp8RZm', '4642996'), - (746, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'oAQp8RZm', '4642997'), - (746, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'oAQp8RZm', '4645687'), - (746, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'oAQp8RZm', '4645698'), - (746, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'oAQp8RZm', '4645704'), - (746, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'oAQp8RZm', '4645705'), - (746, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'oAQp8RZm', '4668385'), - (746, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAQp8RZm', '4694407'), - (746, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'oAQp8RZm', '4706262'), - (746, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'oAQp8RZm', '4736497'), - (746, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'oAQp8RZm', '4736500'), - (746, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'oAQp8RZm', '4746789'), - (746, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'oAQp8RZm', '4753929'), - (746, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'oAQp8RZm', '5038850'), - (746, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQp8RZm', '6045684'), - (747, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'myDBjDwd', '4356801'), - (747, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'myDBjDwd', '4420738'), - (747, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'myDBjDwd', '4420739'), - (747, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'myDBjDwd', '4420741'), - (747, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'myDBjDwd', '4420744'), - (747, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'myDBjDwd', '4420747'), - (747, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'myDBjDwd', '4461883'), - (747, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'myDBjDwd', '4508342'), - (747, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'myDBjDwd', '4568602'), - (747, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'myDBjDwd', '4572153'), - (747, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'myDBjDwd', '4585962'), - (747, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'myDBjDwd', '4596356'), - (747, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'myDBjDwd', '4598860'), - (747, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'myDBjDwd', '4598861'), - (747, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'myDBjDwd', '4602797'), - (747, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'myDBjDwd', '4637896'), - (747, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'myDBjDwd', '4642994'), - (747, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'myDBjDwd', '4642995'), - (747, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'myDBjDwd', '4642996'), - (747, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'myDBjDwd', '4642997'), - (747, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'myDBjDwd', '4645687'), - (747, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'myDBjDwd', '4645698'), - (747, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'myDBjDwd', '4645704'), - (747, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'myDBjDwd', '4645705'), - (747, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'myDBjDwd', '4668385'), - (747, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'myDBjDwd', '6045684'), - (748, 1181, 'attending', '2022-03-06 00:53:08', '2025-12-17 19:47:33', '4DnM363m', '4736503'), - (748, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4DnM363m', '4736504'), - (748, 1215, 'attending', '2022-02-25 23:59:34', '2025-12-17 19:47:33', '4DnM363m', '4780763'), - (748, 1239, 'attending', '2022-03-02 19:03:40', '2025-12-17 19:47:33', '4DnM363m', '5052238'), - (748, 1240, 'attending', '2022-03-15 19:32:21', '2025-12-17 19:47:33', '4DnM363m', '5052239'), - (748, 1249, 'maybe', '2022-03-09 23:02:02', '2025-12-17 19:47:33', '4DnM363m', '5068530'), - (748, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4DnM363m', '5132533'), - (748, 1260, 'attending', '2022-03-01 18:46:13', '2025-12-17 19:47:33', '4DnM363m', '5142082'), - (748, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4DnM363m', '5186582'), - (748, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4DnM363m', '5186583'), - (748, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4DnM363m', '5186585'), - (748, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4DnM363m', '5190437'), - (748, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4DnM363m', '5195095'), - (748, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4DnM363m', '5215989'), - (748, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4DnM363m', '5223686'), - (748, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4DnM363m', '5227432'), - (748, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4DnM363m', '5247467'), - (748, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4DnM363m', '5260800'), - (748, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4DnM363m', '5269930'), - (748, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4DnM363m', '5271448'), - (748, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4DnM363m', '5271449'), - (748, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4DnM363m', '5276469'), - (748, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4DnM363m', '5278159'), - (748, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4DnM363m', '5363695'), - (748, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4DnM363m', '5365960'), - (748, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4DnM363m', '5368973'), - (748, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4DnM363m', '5378247'), - (748, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4DnM363m', '6045684'), - (749, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJQGxOb4', '7074364'), - (749, 2688, 'not_attending', '2024-06-25 12:50:21', '2025-12-17 19:46:29', 'dJQGxOb4', '7324073'), - (749, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJQGxOb4', '7324074'), - (749, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJQGxOb4', '7324075'), - (749, 2691, 'attending', '2024-07-19 22:42:10', '2025-12-17 19:46:30', 'dJQGxOb4', '7324076'), - (749, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJQGxOb4', '7324078'), - (749, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dJQGxOb4', '7324082'), - (749, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dJQGxOb4', '7331457'), - (749, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'dJQGxOb4', '7332564'), - (749, 2727, 'attending', '2024-06-19 21:45:03', '2025-12-17 19:46:29', 'dJQGxOb4', '7332865'), - (749, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJQGxOb4', '7356752'), - (749, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dJQGxOb4', '7363643'), - (749, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJQGxOb4', '7368606'), - (749, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJQGxOb4', '7397462'), - (749, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dJQGxOb4', '7424275'), - (749, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJQGxOb4', '7424276'), - (749, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJQGxOb4', '7432751'), - (749, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJQGxOb4', '7432752'), - (749, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJQGxOb4', '7432753'), - (749, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJQGxOb4', '7432754'), - (749, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJQGxOb4', '7432755'), - (749, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJQGxOb4', '7432756'), - (749, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJQGxOb4', '7432758'), - (749, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJQGxOb4', '7432759'), - (749, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dJQGxOb4', '7433834'), - (749, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJQGxOb4', '7470197'), - (749, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dJQGxOb4', '7685613'), - (749, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJQGxOb4', '7688194'), - (749, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJQGxOb4', '7688196'), - (749, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJQGxOb4', '7688289'), - (750, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndlEEEYm', '3351539'), - (750, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndlEEEYm', '3386848'), - (750, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndlEEEYm', '3389527'), - (750, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndlEEEYm', '3396499'), - (750, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndlEEEYm', '3403650'), - (750, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndlEEEYm', '3406988'), - (750, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndlEEEYm', '3416576'), - (750, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'ndlEEEYm', '3430267'), - (750, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlEEEYm', '6045684'), - (751, 158, 'not_attending', '2020-09-26 15:50:29', '2025-12-17 19:47:52', 'NmLj55J4', '3058695'), - (751, 221, 'attending', '2020-09-11 00:13:38', '2025-12-17 19:47:56', 'NmLj55J4', '3129265'), - (751, 223, 'not_attending', '2020-09-11 00:13:15', '2025-12-17 19:47:56', 'NmLj55J4', '3129980'), - (751, 296, 'maybe', '2020-09-11 00:13:03', '2025-12-17 19:47:56', 'NmLj55J4', '3172876'), - (751, 311, 'attending', '2020-09-14 00:29:28', '2025-12-17 19:47:56', 'NmLj55J4', '3186057'), - (751, 324, 'not_attending', '2020-09-20 04:32:31', '2025-12-17 19:47:56', 'NmLj55J4', '3197082'), - (751, 341, 'attending', '2020-09-19 18:46:12', '2025-12-17 19:47:52', 'NmLj55J4', '3204471'), - (751, 342, 'not_attending', '2020-10-02 23:30:22', '2025-12-17 19:47:52', 'NmLj55J4', '3204472'), - (751, 348, 'attending', '2020-09-29 21:31:47', '2025-12-17 19:47:52', 'NmLj55J4', '3209159'), - (751, 349, 'attending', '2020-09-11 21:33:04', '2025-12-17 19:47:56', 'NmLj55J4', '3209194'), - (751, 354, 'not_attending', '2020-09-20 04:28:57', '2025-12-17 19:47:56', 'NmLj55J4', '3212570'), - (751, 359, 'not_attending', '2020-09-20 04:29:59', '2025-12-17 19:47:56', 'NmLj55J4', '3212624'), - (751, 362, 'attending', '2020-09-22 18:02:32', '2025-12-17 19:47:52', 'NmLj55J4', '3214207'), - (751, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'NmLj55J4', '3217037'), - (751, 364, 'attending', '2020-09-20 04:29:33', '2025-12-17 19:47:56', 'NmLj55J4', '3217106'), - (751, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'NmLj55J4', '3218510'), - (751, 375, 'attending', '2020-10-08 22:43:47', '2025-12-17 19:47:52', 'NmLj55J4', '3222825'), - (751, 385, 'attending', '2020-09-29 04:22:04', '2025-12-17 19:47:52', 'NmLj55J4', '3228698'), - (751, 386, 'attending', '2020-10-10 01:31:11', '2025-12-17 19:47:52', 'NmLj55J4', '3228699'), - (751, 387, 'attending', '2020-10-16 15:52:57', '2025-12-17 19:47:52', 'NmLj55J4', '3228700'), - (751, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'NmLj55J4', '3228701'), - (751, 412, 'not_attending', '2020-10-07 22:56:39', '2025-12-17 19:47:52', 'NmLj55J4', '3236636'), - (751, 415, 'maybe', '2020-10-12 19:35:52', '2025-12-17 19:47:52', 'NmLj55J4', '3238044'), - (751, 416, 'attending', '2020-10-09 14:56:55', '2025-12-17 19:47:52', 'NmLj55J4', '3238073'), - (751, 418, 'attending', '2020-10-14 22:25:40', '2025-12-17 19:47:52', 'NmLj55J4', '3241728'), - (751, 420, 'attending', '2020-10-15 22:37:22', '2025-12-17 19:47:52', 'NmLj55J4', '3245293'), - (751, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLj55J4', '3245751'), - (751, 425, 'maybe', '2020-10-16 20:46:14', '2025-12-17 19:47:52', 'NmLj55J4', '3250097'), - (751, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'NmLj55J4', '3250232'), - (751, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'NmLj55J4', '3256168'), - (751, 441, 'attending', '2020-11-13 19:10:28', '2025-12-17 19:47:54', 'NmLj55J4', '3256169'), - (751, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLj55J4', '3263578'), - (751, 445, 'attending', '2020-11-13 00:01:50', '2025-12-17 19:47:54', 'NmLj55J4', '3266138'), - (751, 452, 'attending', '2020-11-28 04:34:43', '2025-12-17 19:47:54', 'NmLj55J4', '3272981'), - (751, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'NmLj55J4', '3276428'), - (751, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'NmLj55J4', '3281467'), - (751, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'NmLj55J4', '3281470'), - (751, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'NmLj55J4', '3281829'), - (751, 467, 'attending', '2020-11-13 00:04:42', '2025-12-17 19:47:54', 'NmLj55J4', '3282756'), - (751, 468, 'attending', '2020-11-19 18:10:53', '2025-12-17 19:47:54', 'NmLj55J4', '3285413'), - (751, 469, 'attending', '2020-11-27 05:56:03', '2025-12-17 19:47:54', 'NmLj55J4', '3285414'), - (751, 476, 'attending', '2020-11-18 03:38:21', '2025-12-17 19:47:54', 'NmLj55J4', '3286982'), - (751, 480, 'attending', '2020-11-19 18:10:42', '2025-12-17 19:47:54', 'NmLj55J4', '3295313'), - (751, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'NmLj55J4', '3297764'), - (751, 488, 'attending', '2020-12-02 00:15:16', '2025-12-17 19:47:54', 'NmLj55J4', '3312757'), - (751, 493, 'not_attending', '2020-12-03 19:27:56', '2025-12-17 19:47:54', 'NmLj55J4', '3313856'), - (751, 496, 'not_attending', '2020-12-09 17:02:19', '2025-12-17 19:47:54', 'NmLj55J4', '3314269'), - (751, 497, 'attending', '2020-12-15 21:54:13', '2025-12-17 19:47:55', 'NmLj55J4', '3314270'), - (751, 499, 'not_attending', '2020-12-09 17:02:32', '2025-12-17 19:47:55', 'NmLj55J4', '3314909'), - (751, 500, 'attending', '2020-12-18 22:41:01', '2025-12-17 19:47:55', 'NmLj55J4', '3314964'), - (751, 501, 'maybe', '2020-12-03 19:28:16', '2025-12-17 19:47:54', 'NmLj55J4', '3317834'), - (751, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'NmLj55J4', '3323365'), - (751, 513, 'attending', '2020-12-20 00:23:59', '2025-12-17 19:47:55', 'NmLj55J4', '3329383'), - (751, 517, 'not_attending', '2021-01-04 16:53:00', '2025-12-17 19:47:48', 'NmLj55J4', '3337137'), - (751, 520, 'maybe', '2020-12-20 05:29:26', '2025-12-17 19:47:55', 'NmLj55J4', '3337453'), - (751, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'NmLj55J4', '3351539'), - (751, 530, 'attending', '2021-01-03 18:16:55', '2025-12-17 19:47:48', 'NmLj55J4', '3373923'), - (751, 532, 'not_attending', '2021-01-04 16:52:53', '2025-12-17 19:47:48', 'NmLj55J4', '3381412'), - (751, 536, 'not_attending', '2021-01-06 17:21:40', '2025-12-17 19:47:48', 'NmLj55J4', '3386848'), - (751, 539, 'maybe', '2021-01-14 00:50:04', '2025-12-17 19:47:48', 'NmLj55J4', '3389158'), - (751, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'NmLj55J4', '3389527'), - (751, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'NmLj55J4', '3396499'), - (751, 548, 'attending', '2021-01-16 01:17:51', '2025-12-17 19:47:48', 'NmLj55J4', '3403650'), - (751, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'NmLj55J4', '3406988'), - (751, 555, 'attending', '2021-01-20 02:27:31', '2025-12-17 19:47:49', 'NmLj55J4', '3416576'), - (751, 557, 'attending', '2021-01-20 02:27:21', '2025-12-17 19:47:49', 'NmLj55J4', '3418748'), - (751, 558, 'maybe', '2021-01-21 18:04:12', '2025-12-17 19:47:49', 'NmLj55J4', '3418925'), - (751, 560, 'attending', '2021-01-20 02:27:25', '2025-12-17 19:47:49', 'NmLj55J4', '3421715'), - (751, 568, 'attending', '2021-01-29 18:09:29', '2025-12-17 19:47:50', 'NmLj55J4', '3430267'), - (751, 569, 'not_attending', '2021-01-27 22:52:47', '2025-12-17 19:47:49', 'NmLj55J4', '3432673'), - (751, 579, 'attending', '2021-02-02 06:55:18', '2025-12-17 19:47:50', 'NmLj55J4', '3440978'), - (751, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'NmLj55J4', '3468125'), - (751, 602, 'attending', '2021-02-07 17:44:50', '2025-12-17 19:47:50', 'NmLj55J4', '3470303'), - (751, 603, 'not_attending', '2021-02-12 23:28:40', '2025-12-17 19:47:50', 'NmLj55J4', '3470304'), - (751, 604, 'not_attending', '2021-02-27 18:39:10', '2025-12-17 19:47:50', 'NmLj55J4', '3470305'), - (751, 605, 'attending', '2021-02-07 17:44:33', '2025-12-17 19:47:50', 'NmLj55J4', '3470991'), - (751, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'NmLj55J4', '3517815'), - (751, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'NmLj55J4', '3517816'), - (751, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'NmLj55J4', '3523941'), - (751, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'NmLj55J4', '3533850'), - (751, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'NmLj55J4', '3536632'), - (751, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'NmLj55J4', '3536656'), - (751, 641, 'not_attending', '2021-04-02 15:00:31', '2025-12-17 19:47:44', 'NmLj55J4', '3539916'), - (751, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'NmLj55J4', '3539917'), - (751, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'NmLj55J4', '3539918'), - (751, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'NmLj55J4', '3539919'), - (751, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'NmLj55J4', '3539920'), - (751, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'NmLj55J4', '3539921'), - (751, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'NmLj55J4', '3539922'), - (751, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'NmLj55J4', '3539923'), - (751, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'NmLj55J4', '3539927'), - (751, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'NmLj55J4', '3582734'), - (751, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLj55J4', '3583262'), - (751, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLj55J4', '3619523'), - (751, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLj55J4', '3661369'), - (751, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLj55J4', '3674262'), - (751, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'NmLj55J4', '3677402'), - (751, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLj55J4', '3730212'), - (751, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLj55J4', '3793156'), - (751, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'NmLj55J4', '3974109'), - (751, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLj55J4', '3975311'), - (751, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'NmLj55J4', '3975312'), - (751, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLj55J4', '3994992'), - (751, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLj55J4', '4014338'), - (751, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'NmLj55J4', '4021848'), - (751, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLj55J4', '4136744'), - (751, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'NmLj55J4', '4136937'), - (751, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'NmLj55J4', '4136938'), - (751, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'NmLj55J4', '4136947'), - (751, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'NmLj55J4', '4210314'), - (751, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLj55J4', '4225444'), - (751, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLj55J4', '4239259'), - (751, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'NmLj55J4', '4240316'), - (751, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'NmLj55J4', '4240317'), - (751, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'NmLj55J4', '4240318'), - (751, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'NmLj55J4', '4240320'), - (751, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmLj55J4', '4250163'), - (751, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'NmLj55J4', '4275957'), - (751, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'NmLj55J4', '4277819'), - (751, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'NmLj55J4', '4301723'), - (751, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmLj55J4', '4302093'), - (751, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLj55J4', '4304151'), - (751, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'NmLj55J4', '4345519'), - (751, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLj55J4', '4356801'), - (751, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'NmLj55J4', '4358025'), - (751, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'NmLj55J4', '4366186'), - (751, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'NmLj55J4', '4366187'), - (751, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'NmLj55J4', '4402823'), - (751, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'NmLj55J4', '4420735'), - (751, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'NmLj55J4', '4420738'), - (751, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'NmLj55J4', '4420739'), - (751, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'NmLj55J4', '4420741'), - (751, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'NmLj55J4', '4420744'), - (751, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'NmLj55J4', '4420747'), - (751, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'NmLj55J4', '4420748'), - (751, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'NmLj55J4', '4420749'), - (751, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'NmLj55J4', '4461883'), - (751, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLj55J4', '4508342'), - (751, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLj55J4', '4568602'), - (751, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLj55J4', '4572153'), - (751, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmLj55J4', '4585962'), - (751, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'NmLj55J4', '4596356'), - (751, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLj55J4', '4598860'), - (751, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLj55J4', '4598861'), - (751, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmLj55J4', '4602797'), - (751, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmLj55J4', '4637896'), - (751, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLj55J4', '4642994'), - (751, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmLj55J4', '4642995'), - (751, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLj55J4', '4642996'), - (751, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLj55J4', '4642997'), - (751, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmLj55J4', '4645687'), - (751, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmLj55J4', '4645698'), - (751, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLj55J4', '4645704'), - (751, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLj55J4', '4645705'), - (751, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLj55J4', '4668385'), - (751, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLj55J4', '4694407'), - (751, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmLj55J4', '4736497'), - (751, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'NmLj55J4', '4736499'), - (751, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmLj55J4', '4736500'), - (751, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'NmLj55J4', '4736503'), - (751, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'NmLj55J4', '4736504'), - (751, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLj55J4', '4746789'), - (751, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'NmLj55J4', '4753929'), - (751, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmLj55J4', '5038850'), - (751, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmLj55J4', '5045826'), - (751, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLj55J4', '5132533'), - (751, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'NmLj55J4', '5186582'), - (751, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'NmLj55J4', '5186583'), - (751, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'NmLj55J4', '5186585'), - (751, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'NmLj55J4', '5190437'), - (751, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'NmLj55J4', '5195095'), - (751, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmLj55J4', '5215989'), - (751, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLj55J4', '5223686'), - (751, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLj55J4', '5227432'), - (751, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'NmLj55J4', '5247467'), - (751, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'NmLj55J4', '5260800'), - (751, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'NmLj55J4', '5269930'), - (751, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'NmLj55J4', '5271448'), - (751, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'NmLj55J4', '5271449'), - (751, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmLj55J4', '5276469'), - (751, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmLj55J4', '5278159'), - (751, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'NmLj55J4', '5363695'), - (751, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLj55J4', '5365960'), - (751, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmLj55J4', '5368973'), - (751, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'NmLj55J4', '5378247'), - (751, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'NmLj55J4', '5389605'), - (751, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'NmLj55J4', '5397265'), - (751, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmLj55J4', '5403967'), - (751, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLj55J4', '5404786'), - (751, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmLj55J4', '5405203'), - (751, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'NmLj55J4', '5408794'), - (751, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLj55J4', '5411699'), - (751, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'NmLj55J4', '5412550'), - (751, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmLj55J4', '5415046'), - (751, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'NmLj55J4', '5422086'), - (751, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'NmLj55J4', '5422406'), - (751, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLj55J4', '5424565'), - (751, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLj55J4', '5426882'), - (751, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmLj55J4', '5427083'), - (751, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLj55J4', '5441125'), - (751, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmLj55J4', '5441126'), - (751, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmLj55J4', '5441128'), - (751, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'NmLj55J4', '5441131'), - (751, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLj55J4', '5441132'), - (751, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLj55J4', '5446643'), - (751, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLj55J4', '5453325'), - (751, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLj55J4', '5454516'), - (751, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLj55J4', '5454605'), - (751, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLj55J4', '5455037'), - (751, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLj55J4', '5461278'), - (751, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLj55J4', '5469480'), - (751, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLj55J4', '5471073'), - (751, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'NmLj55J4', '5474663'), - (751, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLj55J4', '5482022'), - (751, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLj55J4', '5482793'), - (751, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLj55J4', '5488912'), - (751, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLj55J4', '5492192'), - (751, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLj55J4', '5493139'), - (751, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLj55J4', '5493200'), - (751, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLj55J4', '5502188'), - (751, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLj55J4', '5505059'), - (751, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'NmLj55J4', '5509055'), - (751, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLj55J4', '5512862'), - (751, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLj55J4', '5513985'), - (751, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'NmLj55J4', '5519981'), - (751, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLj55J4', '5522550'), - (751, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLj55J4', '5534683'), - (751, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLj55J4', '5537735'), - (751, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLj55J4', '5540859'), - (751, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLj55J4', '5546619'), - (751, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLj55J4', '5555245'), - (751, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLj55J4', '5557747'), - (751, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLj55J4', '5560255'), - (751, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLj55J4', '5562906'), - (751, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLj55J4', '5600604'), - (751, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLj55J4', '5605544'), - (751, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLj55J4', '5630960'), - (751, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLj55J4', '5630961'), - (751, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLj55J4', '5630962'), - (751, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLj55J4', '5630966'), - (751, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLj55J4', '5630967'), - (751, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLj55J4', '5630968'), - (751, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLj55J4', '5635406'), - (751, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLj55J4', '5638765'), - (751, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLj55J4', '5640097'), - (751, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLj55J4', '5640843'), - (751, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLj55J4', '5641521'), - (751, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLj55J4', '5642818'), - (751, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLj55J4', '5652395'), - (751, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLj55J4', '5670445'), - (751, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLj55J4', '5671637'), - (751, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLj55J4', '5672329'), - (751, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLj55J4', '5674057'), - (751, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLj55J4', '5674060'), - (751, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLj55J4', '5677461'), - (751, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLj55J4', '5698046'), - (751, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLj55J4', '5699760'), - (751, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLj55J4', '5741601'), - (751, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLj55J4', '5763458'), - (751, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLj55J4', '5774172'), - (751, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'NmLj55J4', '5818247'), - (751, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLj55J4', '5819471'), - (751, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLj55J4', '5827739'), - (751, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLj55J4', '5844306'), - (751, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLj55J4', '5850159'), - (751, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLj55J4', '5858999'), - (751, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLj55J4', '5871984'), - (751, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLj55J4', '5876354'), - (751, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLj55J4', '5880939'), - (751, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLj55J4', '5887890'), - (751, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLj55J4', '5888598'), - (751, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLj55J4', '5893260'), - (751, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLj55J4', '6045684'), - (752, 1116, 'not_attending', '2021-12-01 21:48:23', '2025-12-17 19:47:37', 'mRB33Eom', '4642994'), - (752, 1130, 'attending', '2021-12-04 12:49:18', '2025-12-17 19:47:37', 'mRB33Eom', '4658824'), - (752, 1138, 'attending', '2021-11-30 00:21:04', '2025-12-17 19:47:37', 'mRB33Eom', '4675407'), - (752, 1140, 'attending', '2021-12-04 02:15:32', '2025-12-17 19:47:37', 'mRB33Eom', '4679701'), - (752, 1143, 'attending', '2021-12-01 21:48:28', '2025-12-17 19:47:37', 'mRB33Eom', '4683667'), - (752, 1144, 'maybe', '2021-12-08 00:52:02', '2025-12-17 19:47:37', 'mRB33Eom', '4687090'), - (752, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mRB33Eom', '4694407'), - (752, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mRB33Eom', '4736497'), - (752, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mRB33Eom', '4736499'), - (752, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mRB33Eom', '4736500'), - (752, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mRB33Eom', '4736503'), - (752, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mRB33Eom', '4736504'), - (752, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mRB33Eom', '4746789'), - (752, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mRB33Eom', '4753929'), - (752, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mRB33Eom', '5038850'), - (752, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mRB33Eom', '5045826'), - (752, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mRB33Eom', '5132533'), - (752, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mRB33Eom', '5186582'), - (752, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mRB33Eom', '5186583'), - (752, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mRB33Eom', '5186585'), - (752, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mRB33Eom', '5190437'), - (752, 1284, 'attending', '2022-04-16 20:19:05', '2025-12-17 19:47:27', 'mRB33Eom', '5195095'), - (752, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mRB33Eom', '5215989'), - (752, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mRB33Eom', '5223686'), - (752, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mRB33Eom', '5227432'), - (752, 1346, 'attending', '2022-04-20 20:58:20', '2025-12-17 19:47:27', 'mRB33Eom', '5247467'), - (752, 1362, 'attending', '2022-04-25 21:01:10', '2025-12-17 19:47:28', 'mRB33Eom', '5260800'), - (752, 1368, 'attending', '2022-05-05 21:14:29', '2025-12-17 19:47:28', 'mRB33Eom', '5262783'), - (752, 1374, 'attending', '2022-05-02 19:16:43', '2025-12-17 19:47:28', 'mRB33Eom', '5269930'), - (752, 1378, 'attending', '2022-05-06 22:00:48', '2025-12-17 19:47:28', 'mRB33Eom', '5271448'), - (752, 1379, 'attending', '2022-05-06 22:00:50', '2025-12-17 19:47:29', 'mRB33Eom', '5271449'), - (752, 1383, 'not_attending', '2022-05-14 15:18:22', '2025-12-17 19:47:28', 'mRB33Eom', '5276469'), - (752, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mRB33Eom', '5278159'), - (752, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mRB33Eom', '5363695'), - (752, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mRB33Eom', '5365960'), - (752, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mRB33Eom', '5368973'), - (752, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mRB33Eom', '5378247'), - (752, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mRB33Eom', '5389605'), - (752, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mRB33Eom', '5397265'), - (752, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mRB33Eom', '5403967'), - (752, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mRB33Eom', '5404786'), - (752, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mRB33Eom', '5405203'), - (752, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mRB33Eom', '5408794'), - (752, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mRB33Eom', '5411699'), - (752, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mRB33Eom', '5412550'), - (752, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mRB33Eom', '5415046'), - (752, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mRB33Eom', '5422086'), - (752, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mRB33Eom', '5422406'), - (752, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mRB33Eom', '5424565'), - (752, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mRB33Eom', '5426882'), - (752, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mRB33Eom', '5427083'), - (752, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mRB33Eom', '5441125'), - (752, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mRB33Eom', '5446643'), - (752, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mRB33Eom', '5454516'), - (752, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mRB33Eom', '5454605'), - (752, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRB33Eom', '6045684'), - (753, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', '2d2GZj9m', '4136938'), - (753, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', '2d2GZj9m', '4229418'), - (753, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2GZj9m', '6045684'), - (754, 1948, 'attending', '2023-03-23 18:19:12', '2025-12-17 19:46:57', '4v6OQZN4', '5962317'), - (754, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4v6OQZN4', '5962318'), - (754, 1951, 'not_attending', '2023-03-23 15:39:37', '2025-12-17 19:46:57', '4v6OQZN4', '5965933'), - (754, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', '4v6OQZN4', '6028191'), - (754, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4v6OQZN4', '6040066'), - (754, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4v6OQZN4', '6042717'), - (754, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4v6OQZN4', '6044838'), - (754, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4v6OQZN4', '6044839'), - (754, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v6OQZN4', '6045684'), - (754, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', '4v6OQZN4', '6048955'), - (754, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4v6OQZN4', '6050104'), - (754, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4v6OQZN4', '6053195'), - (754, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4v6OQZN4', '6053198'), - (754, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4v6OQZN4', '6056085'), - (754, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4v6OQZN4', '6056916'), - (754, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4v6OQZN4', '6059290'), - (754, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4v6OQZN4', '6060328'), - (754, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4v6OQZN4', '6061037'), - (754, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4v6OQZN4', '6061039'), - (754, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4v6OQZN4', '6067245'), - (754, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4v6OQZN4', '6068094'), - (754, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4v6OQZN4', '6068252'), - (754, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4v6OQZN4', '6068253'), - (754, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4v6OQZN4', '6068254'), - (754, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4v6OQZN4', '6068280'), - (754, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4v6OQZN4', '6069093'), - (754, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4v6OQZN4', '6072528'), - (754, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4v6OQZN4', '6079840'), - (754, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4v6OQZN4', '6083398'), - (754, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4v6OQZN4', '6093504'), - (754, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4v6OQZN4', '6097414'), - (754, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4v6OQZN4', '6097442'), - (754, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4v6OQZN4', '6097684'), - (754, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4v6OQZN4', '6098762'), - (754, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4v6OQZN4', '6101362'), - (754, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4v6OQZN4', '6107314'), - (754, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4v6OQZN4', '6120034'), - (755, 1240, 'attending', '2022-03-17 02:17:42', '2025-12-17 19:47:33', 'mj62BqVm', '5052239'), - (755, 1241, 'maybe', '2022-03-22 23:40:41', '2025-12-17 19:47:25', 'mj62BqVm', '5052240'), - (755, 1242, 'not_attending', '2022-03-30 22:45:54', '2025-12-17 19:47:25', 'mj62BqVm', '5052241'), - (755, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'mj62BqVm', '5132533'), - (755, 1268, 'attending', '2022-03-13 03:09:11', '2025-12-17 19:47:33', 'mj62BqVm', '5176296'), - (755, 1272, 'not_attending', '2022-03-17 11:30:55', '2025-12-17 19:47:25', 'mj62BqVm', '5186582'), - (755, 1273, 'attending', '2022-03-26 08:53:54', '2025-12-17 19:47:25', 'mj62BqVm', '5186583'), - (755, 1274, 'not_attending', '2022-04-02 05:50:19', '2025-12-17 19:47:26', 'mj62BqVm', '5186585'), - (755, 1280, 'not_attending', '2022-03-17 11:29:54', '2025-12-17 19:47:25', 'mj62BqVm', '5189749'), - (755, 1281, 'not_attending', '2022-03-18 01:19:06', '2025-12-17 19:47:27', 'mj62BqVm', '5190437'), - (755, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mj62BqVm', '5195095'), - (755, 1293, 'maybe', '2022-04-07 09:24:26', '2025-12-17 19:47:27', 'mj62BqVm', '5214641'), - (755, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mj62BqVm', '5215989'), - (755, 1304, 'not_attending', '2022-04-05 01:36:54', '2025-12-17 19:47:26', 'mj62BqVm', '5223468'), - (755, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mj62BqVm', '5223686'), - (755, 1308, 'not_attending', '2022-04-13 20:45:34', '2025-12-17 19:47:27', 'mj62BqVm', '5226703'), - (755, 1309, 'not_attending', '2022-04-07 09:06:44', '2025-12-17 19:47:26', 'mj62BqVm', '5227432'), - (755, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mj62BqVm', '5247467'), - (755, 1362, 'not_attending', '2022-04-26 10:41:19', '2025-12-17 19:47:28', 'mj62BqVm', '5260800'), - (755, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mj62BqVm', '5269930'), - (755, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mj62BqVm', '5271448'), - (755, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mj62BqVm', '5271449'), - (755, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mj62BqVm', '5276469'), - (755, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mj62BqVm', '5278159'), - (755, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mj62BqVm', '5363695'), - (755, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mj62BqVm', '5365960'), - (755, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mj62BqVm', '5368973'), - (755, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mj62BqVm', '5378247'), - (755, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mj62BqVm', '5389605'), - (755, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mj62BqVm', '5397265'), - (755, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mj62BqVm', '5403967'), - (755, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mj62BqVm', '5404786'), - (755, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mj62BqVm', '5405203'), - (755, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mj62BqVm', '5408794'), - (755, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mj62BqVm', '5411699'), - (755, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mj62BqVm', '5412550'), - (755, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mj62BqVm', '5415046'), - (755, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mj62BqVm', '5422086'), - (755, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mj62BqVm', '5422406'), - (755, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mj62BqVm', '5424565'), - (755, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mj62BqVm', '5426882'), - (755, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mj62BqVm', '5427083'), - (755, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mj62BqVm', '5441125'), - (755, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mj62BqVm', '5441126'), - (755, 1515, 'not_attending', '2022-08-05 03:30:05', '2025-12-17 19:47:21', 'mj62BqVm', '5441128'), - (755, 1516, 'attending', '2022-08-20 21:18:03', '2025-12-17 19:47:23', 'mj62BqVm', '5441129'), - (755, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mj62BqVm', '5441131'), - (755, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mj62BqVm', '5441132'), - (755, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mj62BqVm', '5446643'), - (755, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mj62BqVm', '5453325'), - (755, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mj62BqVm', '5454516'), - (755, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mj62BqVm', '5454605'), - (755, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mj62BqVm', '5455037'), - (755, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mj62BqVm', '5461278'), - (755, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mj62BqVm', '5469480'), - (755, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mj62BqVm', '5471073'), - (755, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mj62BqVm', '5474663'), - (755, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mj62BqVm', '5482022'), - (755, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mj62BqVm', '5482793'), - (755, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mj62BqVm', '5488912'), - (755, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mj62BqVm', '5492192'), - (755, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mj62BqVm', '5493139'), - (755, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mj62BqVm', '5493200'), - (755, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mj62BqVm', '5502188'), - (755, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mj62BqVm', '5505059'), - (755, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mj62BqVm', '5509055'), - (755, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mj62BqVm', '5512862'), - (755, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mj62BqVm', '5513985'), - (755, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mj62BqVm', '5519981'), - (755, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mj62BqVm', '5522550'), - (755, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mj62BqVm', '5534683'), - (755, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mj62BqVm', '5537735'), - (755, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mj62BqVm', '5540859'), - (755, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mj62BqVm', '5546619'), - (755, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mj62BqVm', '5555245'), - (755, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mj62BqVm', '5557747'), - (755, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mj62BqVm', '5560255'), - (755, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mj62BqVm', '5562906'), - (755, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mj62BqVm', '5600604'), - (755, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mj62BqVm', '5605544'), - (755, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'mj62BqVm', '5606737'), - (755, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mj62BqVm', '5630960'), - (755, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mj62BqVm', '5630961'), - (755, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mj62BqVm', '5630962'), - (755, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mj62BqVm', '5630966'), - (755, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mj62BqVm', '5630967'), - (755, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mj62BqVm', '5630968'), - (755, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mj62BqVm', '5635406'), - (755, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mj62BqVm', '5638765'), - (755, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mj62BqVm', '5640097'), - (755, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mj62BqVm', '5640843'), - (755, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mj62BqVm', '5641521'), - (755, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mj62BqVm', '5642818'), - (755, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mj62BqVm', '5652395'), - (755, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mj62BqVm', '5670445'), - (755, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mj62BqVm', '5671637'), - (755, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mj62BqVm', '5672329'), - (755, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mj62BqVm', '5674057'), - (755, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mj62BqVm', '5674060'), - (755, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mj62BqVm', '5677461'), - (755, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mj62BqVm', '5698046'), - (755, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mj62BqVm', '5699760'), - (755, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mj62BqVm', '5741601'), - (755, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mj62BqVm', '5763458'), - (755, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mj62BqVm', '5774172'), - (755, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mj62BqVm', '5818247'), - (755, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mj62BqVm', '5819471'), - (755, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mj62BqVm', '5827739'), - (755, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mj62BqVm', '5844306'), - (755, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mj62BqVm', '5850159'), - (755, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mj62BqVm', '5858999'), - (755, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mj62BqVm', '5871984'), - (755, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mj62BqVm', '5876354'), - (755, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mj62BqVm', '5880939'), - (755, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mj62BqVm', '5887890'), - (755, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mj62BqVm', '5888598'), - (755, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mj62BqVm', '5893260'), - (755, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj62BqVm', '6045684'), - (756, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'm7zeYEed', '5513985'), - (756, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'm7zeYEed', '5534683'), - (756, 1633, 'attending', '2022-09-04 19:48:02', '2025-12-17 19:47:24', 'm7zeYEed', '5536575'), - (756, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm7zeYEed', '5537735'), - (756, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm7zeYEed', '5540859'), - (756, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm7zeYEed', '5555245'), - (756, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm7zeYEed', '5557747'), - (756, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm7zeYEed', '5560255'), - (756, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm7zeYEed', '5562906'), - (756, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm7zeYEed', '5600604'), - (756, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm7zeYEed', '5605544'), - (756, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'm7zeYEed', '5606737'), - (756, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm7zeYEed', '5630960'), - (756, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm7zeYEed', '5630961'), - (756, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm7zeYEed', '5630962'), - (756, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm7zeYEed', '5630966'), - (756, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm7zeYEed', '5630967'), - (756, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm7zeYEed', '5630968'), - (756, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm7zeYEed', '5635406'), - (756, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm7zeYEed', '5638765'), - (756, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm7zeYEed', '5640097'), - (756, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm7zeYEed', '5640843'), - (756, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm7zeYEed', '5641521'), - (756, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm7zeYEed', '5642818'), - (756, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm7zeYEed', '5652395'), - (756, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm7zeYEed', '5670445'), - (756, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm7zeYEed', '5671637'), - (756, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm7zeYEed', '5672329'), - (756, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm7zeYEed', '5674057'), - (756, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm7zeYEed', '5674060'), - (756, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm7zeYEed', '5677461'), - (756, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm7zeYEed', '5698046'), - (756, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm7zeYEed', '5699760'), - (756, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm7zeYEed', '5741601'), - (756, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm7zeYEed', '5763458'), - (756, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm7zeYEed', '5774172'), - (756, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'm7zeYEed', '5818247'), - (756, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm7zeYEed', '5819471'), - (756, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm7zeYEed', '5827739'), - (756, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm7zeYEed', '5844306'), - (756, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm7zeYEed', '5850159'), - (756, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm7zeYEed', '5858999'), - (756, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm7zeYEed', '5871984'), - (756, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm7zeYEed', '5876354'), - (756, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm7zeYEed', '5880939'), - (756, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm7zeYEed', '5887890'), - (756, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm7zeYEed', '5888598'), - (756, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm7zeYEed', '5893260'), - (756, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7zeYEed', '6045684'), - (757, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'R40Q9Ybd', '3236448'), - (757, 823, 'maybe', '2021-06-19 21:20:31', '2025-12-17 19:47:48', 'R40Q9Ybd', '3974109'), - (757, 844, 'attending', '2021-06-22 03:24:37', '2025-12-17 19:47:38', 'R40Q9Ybd', '4014338'), - (757, 867, 'not_attending', '2021-06-26 13:43:43', '2025-12-17 19:47:38', 'R40Q9Ybd', '4021848'), - (757, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40Q9Ybd', '4136937'), - (757, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40Q9Ybd', '4136938'), - (757, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40Q9Ybd', '4136947'), - (757, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'R40Q9Ybd', '4210314'), - (757, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40Q9Ybd', '4225444'), - (757, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40Q9Ybd', '4239259'), - (757, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'R40Q9Ybd', '4240316'), - (757, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'R40Q9Ybd', '4240317'), - (757, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'R40Q9Ybd', '4240318'), - (757, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'R40Q9Ybd', '4240320'), - (757, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40Q9Ybd', '4250163'), - (757, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'R40Q9Ybd', '4275957'), - (757, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'R40Q9Ybd', '4277819'), - (757, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'R40Q9Ybd', '4301723'), - (757, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'R40Q9Ybd', '4302093'), - (757, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'R40Q9Ybd', '4304151'), - (757, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'R40Q9Ybd', '4356801'), - (757, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'R40Q9Ybd', '4366186'), - (757, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'R40Q9Ybd', '4366187'), - (757, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'R40Q9Ybd', '4420735'), - (757, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'R40Q9Ybd', '4420738'), - (757, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'R40Q9Ybd', '4420739'), - (757, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'R40Q9Ybd', '4420741'), - (757, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'R40Q9Ybd', '4420744'), - (757, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'R40Q9Ybd', '4420747'), - (757, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'R40Q9Ybd', '4420748'), - (757, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'R40Q9Ybd', '4420749'), - (757, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'R40Q9Ybd', '4461883'), - (757, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'R40Q9Ybd', '4508342'), - (757, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'R40Q9Ybd', '4568602'), - (757, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'R40Q9Ybd', '4572153'), - (757, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'R40Q9Ybd', '4585962'), - (757, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'R40Q9Ybd', '4596356'), - (757, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'R40Q9Ybd', '4598860'), - (757, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'R40Q9Ybd', '4598861'), - (757, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'R40Q9Ybd', '4602797'), - (757, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'R40Q9Ybd', '4637896'), - (757, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'R40Q9Ybd', '4642994'), - (757, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'R40Q9Ybd', '4642995'), - (757, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'R40Q9Ybd', '4642996'), - (757, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'R40Q9Ybd', '4642997'), - (757, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'R40Q9Ybd', '4645687'), - (757, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'R40Q9Ybd', '4645698'), - (757, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'R40Q9Ybd', '4645704'), - (757, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'R40Q9Ybd', '4645705'), - (757, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'R40Q9Ybd', '4668385'), - (757, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'R40Q9Ybd', '4694407'), - (757, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'R40Q9Ybd', '4706262'), - (757, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'R40Q9Ybd', '4736497'), - (757, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'R40Q9Ybd', '4736499'), - (757, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'R40Q9Ybd', '4736500'), - (757, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'R40Q9Ybd', '4736503'), - (757, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'R40Q9Ybd', '4736504'), - (757, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'R40Q9Ybd', '4746789'), - (757, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'R40Q9Ybd', '4753929'), - (757, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'R40Q9Ybd', '5038850'), - (757, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'R40Q9Ybd', '5045826'), - (757, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'R40Q9Ybd', '5132533'), - (757, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'R40Q9Ybd', '5186582'), - (757, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'R40Q9Ybd', '5186583'), - (757, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'R40Q9Ybd', '5186585'), - (757, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'R40Q9Ybd', '5190437'), - (757, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40Q9Ybd', '6045684'), - (758, 1131, 'maybe', '2021-12-18 22:34:04', '2025-12-17 19:47:31', '4oMYJDvm', '4658825'), - (758, 1151, 'maybe', '2022-01-05 20:35:29', '2025-12-17 19:47:31', '4oMYJDvm', '4708704'), - (758, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMYJDvm', '4736497'), - (758, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMYJDvm', '4736499'), - (758, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4oMYJDvm', '4736500'), - (758, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMYJDvm', '4736503'), - (758, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMYJDvm', '4736504'), - (758, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4oMYJDvm', '4746789'), - (758, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMYJDvm', '4753929'), - (758, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMYJDvm', '5038850'), - (758, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMYJDvm', '5045826'), - (758, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMYJDvm', '5132533'), - (758, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMYJDvm', '5186582'), - (758, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMYJDvm', '5186583'), - (758, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMYJDvm', '5186585'), - (758, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMYJDvm', '5190437'), - (758, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4oMYJDvm', '5195095'), - (758, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMYJDvm', '5215989'), - (758, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4oMYJDvm', '5223686'), - (758, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4oMYJDvm', '5227432'), - (758, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4oMYJDvm', '5247467'), - (758, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4oMYJDvm', '5260800'), - (758, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4oMYJDvm', '5269930'), - (758, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4oMYJDvm', '5271448'), - (758, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4oMYJDvm', '5271449'), - (758, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4oMYJDvm', '5276469'), - (758, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4oMYJDvm', '5278159'), - (758, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4oMYJDvm', '5363695'), - (758, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMYJDvm', '5365960'), - (758, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMYJDvm', '5368973'), - (758, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMYJDvm', '5378247'), - (758, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4oMYJDvm', '5389605'), - (758, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4oMYJDvm', '5397265'), - (758, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMYJDvm', '5403967'), - (758, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMYJDvm', '5404786'), - (758, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMYJDvm', '5405203'), - (758, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '4oMYJDvm', '5408794'), - (758, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMYJDvm', '5411699'), - (758, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4oMYJDvm', '5412550'), - (758, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMYJDvm', '5415046'), - (758, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4oMYJDvm', '5422086'), - (758, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4oMYJDvm', '5422406'), - (758, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMYJDvm', '5424565'), - (758, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMYJDvm', '5426882'), - (758, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMYJDvm', '5427083'), - (758, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4oMYJDvm', '5441125'), - (758, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4oMYJDvm', '5441126'), - (758, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMYJDvm', '5441128'), - (758, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMYJDvm', '5446643'), - (758, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMYJDvm', '5453325'), - (758, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMYJDvm', '5454516'), - (758, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMYJDvm', '5454605'), - (758, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMYJDvm', '5455037'), - (758, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4oMYJDvm', '5461278'), - (758, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMYJDvm', '5469480'), - (758, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4oMYJDvm', '5471073'), - (758, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMYJDvm', '5474663'), - (758, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMYJDvm', '5482022'), - (758, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMYJDvm', '5482793'), - (758, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4oMYJDvm', '5488912'), - (758, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4oMYJDvm', '5492192'), - (758, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4oMYJDvm', '5493139'), - (758, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4oMYJDvm', '5493200'), - (758, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4oMYJDvm', '5502188'), - (758, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4oMYJDvm', '5512862'), - (758, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4oMYJDvm', '5513985'), - (758, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4oMYJDvm', '6045684'), - (759, 166, 'attending', '2020-11-21 01:51:00', '2025-12-17 19:47:54', 'kdK0aaBm', '3058704'), - (759, 245, 'not_attending', '2020-11-30 16:15:05', '2025-12-17 19:47:54', 'kdK0aaBm', '3149476'), - (759, 246, 'attending', '2020-12-15 22:10:26', '2025-12-17 19:47:55', 'kdK0aaBm', '3149477'), - (759, 249, 'not_attending', '2020-11-17 03:55:40', '2025-12-17 19:47:54', 'kdK0aaBm', '3149480'), - (759, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'kdK0aaBm', '3236467'), - (759, 468, 'attending', '2020-11-21 01:50:54', '2025-12-17 19:47:54', 'kdK0aaBm', '3285413'), - (759, 469, 'attending', '2020-11-28 20:05:20', '2025-12-17 19:47:54', 'kdK0aaBm', '3285414'), - (759, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'kdK0aaBm', '3297764'), - (759, 493, 'attending', '2020-12-05 23:52:43', '2025-12-17 19:47:54', 'kdK0aaBm', '3313856'), - (759, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'kdK0aaBm', '3314909'), - (759, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'kdK0aaBm', '3314964'), - (759, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'kdK0aaBm', '3323365'), - (759, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'kdK0aaBm', '3324148'), - (759, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'kdK0aaBm', '3329383'), - (759, 526, 'attending', '2021-01-02 20:53:21', '2025-12-17 19:47:48', 'kdK0aaBm', '3351539'), - (759, 536, 'attending', '2021-01-07 20:40:30', '2025-12-17 19:47:48', 'kdK0aaBm', '3386848'), - (759, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdK0aaBm', '3389527'), - (759, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdK0aaBm', '3396499'), - (759, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'kdK0aaBm', '3403650'), - (759, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdK0aaBm', '3406988'), - (759, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'kdK0aaBm', '3416576'), - (759, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'kdK0aaBm', '3418925'), - (759, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'kdK0aaBm', '3426074'), - (759, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'kdK0aaBm', '3430267'), - (759, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'kdK0aaBm', '3432673'), - (759, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'kdK0aaBm', '3468125'), - (759, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'kdK0aaBm', '3470303'), - (759, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdK0aaBm', '3470305'), - (759, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdK0aaBm', '3470991'), - (759, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdK0aaBm', '3517815'), - (759, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdK0aaBm', '3517816'), - (759, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdK0aaBm', '3523941'), - (759, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdK0aaBm', '3533850'), - (759, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdK0aaBm', '3536632'), - (759, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdK0aaBm', '3536656'), - (759, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdK0aaBm', '3539916'), - (759, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdK0aaBm', '3539917'), - (759, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdK0aaBm', '3539918'), - (759, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdK0aaBm', '3539919'), - (759, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdK0aaBm', '3539920'), - (759, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdK0aaBm', '3539921'), - (759, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdK0aaBm', '3539922'), - (759, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdK0aaBm', '3539923'), - (759, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdK0aaBm', '3539927'), - (759, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdK0aaBm', '3582734'), - (759, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdK0aaBm', '3583262'), - (759, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdK0aaBm', '3619523'), - (759, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdK0aaBm', '3661369'), - (759, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdK0aaBm', '3674262'), - (759, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdK0aaBm', '3677402'), - (759, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdK0aaBm', '3730212'), - (759, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0aaBm', '6045684'), - (760, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd3YjJxzA', '5441128'), - (760, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd3YjJxzA', '5441131'), - (760, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd3YjJxzA', '5441132'), - (760, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd3YjJxzA', '5461278'), - (760, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd3YjJxzA', '5469480'), - (760, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'd3YjJxzA', '5471073'), - (760, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'd3YjJxzA', '5474663'), - (760, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd3YjJxzA', '5482022'), - (760, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd3YjJxzA', '5482793'), - (760, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd3YjJxzA', '5488912'), - (760, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd3YjJxzA', '5492192'), - (760, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd3YjJxzA', '5493139'), - (760, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd3YjJxzA', '5493200'), - (760, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd3YjJxzA', '5502188'), - (760, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd3YjJxzA', '5505059'), - (760, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd3YjJxzA', '5509055'), - (760, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd3YjJxzA', '5512862'), - (760, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd3YjJxzA', '5513985'), - (760, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd3YjJxzA', '5519981'), - (760, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd3YjJxzA', '5522550'), - (760, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd3YjJxzA', '5534683'), - (760, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd3YjJxzA', '5537735'), - (760, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd3YjJxzA', '5540859'), - (760, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd3YjJxzA', '5546619'), - (760, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd3YjJxzA', '5555245'), - (760, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd3YjJxzA', '5557747'), - (760, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd3YjJxzA', '5560255'), - (760, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd3YjJxzA', '5562906'), - (760, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd3YjJxzA', '5600604'), - (760, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd3YjJxzA', '5605544'), - (760, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'd3YjJxzA', '5606737'), - (760, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd3YjJxzA', '5635406'), - (760, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd3YjJxzA', '5638765'), - (760, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd3YjJxzA', '5640843'), - (760, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3YjJxzA', '6045684'), - (761, 2448, 'attending', '2024-03-28 21:33:32', '2025-12-17 19:46:33', 'Md3N3XD4', '6734371'), - (761, 2509, 'attending', '2024-03-28 21:27:31', '2025-12-17 19:46:33', 'Md3N3XD4', '7074349'), - (761, 2511, 'attending', '2024-04-02 18:34:03', '2025-12-17 19:46:33', 'Md3N3XD4', '7074351'), - (761, 2512, 'attending', '2024-04-02 19:14:17', '2025-12-17 19:46:33', 'Md3N3XD4', '7074352'), - (761, 2521, 'not_attending', '2024-06-03 21:59:53', '2025-12-17 19:46:29', 'Md3N3XD4', '7074361'), - (761, 2522, 'attending', '2024-07-17 14:48:29', '2025-12-17 19:46:30', 'Md3N3XD4', '7074362'), - (761, 2523, 'not_attending', '2024-06-03 22:01:20', '2025-12-17 19:46:36', 'Md3N3XD4', '7074363'), - (761, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Md3N3XD4', '7074364'), - (761, 2529, 'maybe', '2024-05-23 13:39:52', '2025-12-17 19:46:35', 'Md3N3XD4', '7074369'), - (761, 2537, 'attending', '2024-03-22 23:49:40', '2025-12-17 19:46:33', 'Md3N3XD4', '7085484'), - (761, 2539, 'attending', '2024-04-02 19:14:34', '2025-12-17 19:46:33', 'Md3N3XD4', '7085486'), - (761, 2547, 'attending', '2024-03-28 21:33:45', '2025-12-17 19:46:33', 'Md3N3XD4', '7096945'), - (761, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Md3N3XD4', '7098747'), - (761, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Md3N3XD4', '7113468'), - (761, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Md3N3XD4', '7114856'), - (761, 2555, 'attending', '2024-04-02 19:58:57', '2025-12-17 19:46:33', 'Md3N3XD4', '7114951'), - (761, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Md3N3XD4', '7114955'), - (761, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Md3N3XD4', '7114956'), - (761, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Md3N3XD4', '7114957'), - (761, 2562, 'attending', '2024-04-02 18:34:34', '2025-12-17 19:46:33', 'Md3N3XD4', '7134552'), - (761, 2563, 'not_attending', '2024-04-02 19:59:03', '2025-12-17 19:46:33', 'Md3N3XD4', '7134734'), - (761, 2564, 'attending', '2024-04-02 19:58:46', '2025-12-17 19:46:33', 'Md3N3XD4', '7134735'), - (761, 2566, 'maybe', '2024-04-09 00:00:18', '2025-12-17 19:46:34', 'Md3N3XD4', '7140664'), - (761, 2568, 'attending', '2024-04-05 18:45:50', '2025-12-17 19:46:33', 'Md3N3XD4', '7153615'), - (761, 2569, 'maybe', '2024-04-05 20:35:32', '2025-12-17 19:46:33', 'Md3N3XD4', '7154056'), - (761, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Md3N3XD4', '7159484'), - (761, 2572, 'attending', '2024-04-11 10:58:42', '2025-12-17 19:46:33', 'Md3N3XD4', '7159522'), - (761, 2573, 'maybe', '2024-04-08 23:53:23', '2025-12-17 19:46:34', 'Md3N3XD4', '7160612'), - (761, 2574, 'attending', '2024-04-11 10:58:27', '2025-12-17 19:46:33', 'Md3N3XD4', '7163825'), - (761, 2575, 'maybe', '2024-04-12 22:07:50', '2025-12-17 19:46:33', 'Md3N3XD4', '7164534'), - (761, 2579, 'attending', '2024-04-11 11:50:31', '2025-12-17 19:46:33', 'Md3N3XD4', '7167020'), - (761, 2581, 'attending', '2024-04-23 12:14:36', '2025-12-17 19:46:34', 'Md3N3XD4', '7169048'), - (761, 2585, 'attending', '2024-04-23 12:14:43', '2025-12-17 19:46:34', 'Md3N3XD4', '7175828'), - (761, 2590, 'maybe', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Md3N3XD4', '7178446'), - (761, 2601, 'attending', '2024-04-24 03:28:54', '2025-12-17 19:46:34', 'Md3N3XD4', '7197023'), - (761, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Md3N3XD4', '7220467'), - (761, 2603, 'attending', '2024-05-15 19:51:37', '2025-12-17 19:46:35', 'Md3N3XD4', '7225669'), - (761, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Md3N3XD4', '7240354'), - (761, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Md3N3XD4', '7251633'), - (761, 2622, 'attending', '2024-05-09 05:24:44', '2025-12-17 19:46:35', 'Md3N3XD4', '7262064'), - (761, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'Md3N3XD4', '7263048'), - (761, 2625, 'maybe', '2024-05-12 15:52:15', '2025-12-17 19:46:35', 'Md3N3XD4', '7263302'), - (761, 2627, 'attending', '2024-05-23 13:39:49', '2025-12-17 19:46:35', 'Md3N3XD4', '7264724'), - (761, 2629, 'maybe', '2024-06-03 22:01:23', '2025-12-17 19:46:28', 'Md3N3XD4', '7264726'), - (761, 2630, 'attending', '2024-05-16 22:51:42', '2025-12-17 19:46:35', 'Md3N3XD4', '7264801'), - (761, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'Md3N3XD4', '7302674'), - (761, 2666, 'attending', '2024-06-06 18:28:16', '2025-12-17 19:46:36', 'Md3N3XD4', '7307775'), - (761, 2672, 'attending', '2024-06-09 17:11:46', '2025-12-17 19:46:28', 'Md3N3XD4', '7318459'), - (761, 2673, 'not_attending', '2024-06-09 20:30:18', '2025-12-17 19:46:28', 'Md3N3XD4', '7319473'), - (761, 2679, 'attending', '2024-06-16 18:23:06', '2025-12-17 19:46:29', 'Md3N3XD4', '7319490'), - (761, 2681, 'attending', '2024-06-10 01:51:30', '2025-12-17 19:46:28', 'Md3N3XD4', '7320409'), - (761, 2684, 'maybe', '2024-06-11 10:34:44', '2025-12-17 19:46:28', 'Md3N3XD4', '7322001'), - (761, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Md3N3XD4', '7324073'), - (761, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Md3N3XD4', '7324074'), - (761, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Md3N3XD4', '7324075'), - (761, 2691, 'attending', '2024-07-17 14:48:34', '2025-12-17 19:46:30', 'Md3N3XD4', '7324076'), - (761, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Md3N3XD4', '7324078'), - (761, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Md3N3XD4', '7324082'), - (761, 2706, 'maybe', '2024-06-18 19:41:55', '2025-12-17 19:46:28', 'Md3N3XD4', '7324947'), - (761, 2716, 'attending', '2024-06-16 18:23:04', '2025-12-17 19:46:29', 'Md3N3XD4', '7329096'), - (761, 2718, 'maybe', '2024-06-18 19:41:46', '2025-12-17 19:46:28', 'Md3N3XD4', '7330458'), - (761, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Md3N3XD4', '7331457'), - (761, 2728, 'maybe', '2024-06-21 19:03:33', '2025-12-17 19:46:29', 'Md3N3XD4', '7334124'), - (761, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'Md3N3XD4', '7356752'), - (761, 2760, 'attending', '2024-07-17 14:48:23', '2025-12-17 19:46:30', 'Md3N3XD4', '7359871'), - (761, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Md3N3XD4', '7363643'), - (761, 2770, 'attending', '2024-07-20 20:02:37', '2025-12-17 19:46:30', 'Md3N3XD4', '7368196'), - (761, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Md3N3XD4', '7368606'), - (761, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Md3N3XD4', '7397462'), - (761, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Md3N3XD4', '7424275'), - (761, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Md3N3XD4', '7424276'), - (761, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Md3N3XD4', '7432751'), - (761, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Md3N3XD4', '7432752'), - (761, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Md3N3XD4', '7432753'), - (761, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Md3N3XD4', '7432754'), - (761, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Md3N3XD4', '7432755'), - (761, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Md3N3XD4', '7432756'), - (761, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Md3N3XD4', '7432758'), - (761, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Md3N3XD4', '7432759'), - (761, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Md3N3XD4', '7433834'), - (761, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Md3N3XD4', '7470197'), - (761, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Md3N3XD4', '7685613'), - (761, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Md3N3XD4', '7688194'), - (761, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Md3N3XD4', '7688196'), - (761, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Md3N3XD4', '7688289'), - (761, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Md3N3XD4', '7692763'), - (761, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Md3N3XD4', '7697552'), - (761, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Md3N3XD4', '7699878'), - (761, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Md3N3XD4', '7704043'), - (761, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Md3N3XD4', '7712467'), - (761, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Md3N3XD4', '7713585'), - (761, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Md3N3XD4', '7713586'), - (761, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Md3N3XD4', '7738518'), - (761, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Md3N3XD4', '7750636'), - (761, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Md3N3XD4', '7796540'), - (761, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Md3N3XD4', '7796541'), - (761, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Md3N3XD4', '7796542'), - (761, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Md3N3XD4', '7825913'), - (761, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Md3N3XD4', '7826209'), - (761, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Md3N3XD4', '7834742'), - (761, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Md3N3XD4', '7842108'), - (761, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Md3N3XD4', '7842902'), - (761, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Md3N3XD4', '7842903'), - (761, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Md3N3XD4', '7842904'), - (761, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Md3N3XD4', '7842905'), - (761, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Md3N3XD4', '7855719'), - (761, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Md3N3XD4', '7860683'), - (761, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Md3N3XD4', '7860684'), - (761, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Md3N3XD4', '7866095'), - (761, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Md3N3XD4', '7869170'), - (761, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Md3N3XD4', '7869188'), - (761, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Md3N3XD4', '7869201'), - (761, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Md3N3XD4', '7877465'), - (761, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Md3N3XD4', '7888250'), - (761, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Md3N3XD4', '7904777'), - (761, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Md3N3XD4', '8349164'), - (761, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Md3N3XD4', '8349545'), - (761, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Md3N3XD4', '8368028'), - (761, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Md3N3XD4', '8368029'), - (761, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Md3N3XD4', '8388462'), - (761, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Md3N3XD4', '8400273'), - (761, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Md3N3XD4', '8400275'), - (761, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Md3N3XD4', '8400276'), - (761, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Md3N3XD4', '8404977'), - (761, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Md3N3XD4', '8430783'), - (761, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Md3N3XD4', '8430784'), - (761, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Md3N3XD4', '8430799'), - (761, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Md3N3XD4', '8430800'), - (761, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Md3N3XD4', '8430801'), - (761, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Md3N3XD4', '8438709'), - (761, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Md3N3XD4', '8457738'), - (761, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Md3N3XD4', '8459566'), - (761, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Md3N3XD4', '8459567'), - (761, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Md3N3XD4', '8461032'), - (761, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Md3N3XD4', '8477877'), - (761, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Md3N3XD4', '8485688'), - (761, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Md3N3XD4', '8490587'), - (761, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Md3N3XD4', '8493552'), - (761, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Md3N3XD4', '8493553'), - (761, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Md3N3XD4', '8493554'), - (761, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Md3N3XD4', '8493555'), - (761, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Md3N3XD4', '8493556'), - (761, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Md3N3XD4', '8493557'), - (761, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Md3N3XD4', '8493558'), - (761, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Md3N3XD4', '8493559'), - (761, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Md3N3XD4', '8493560'), - (761, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Md3N3XD4', '8493561'), - (761, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Md3N3XD4', '8493572'), - (761, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Md3N3XD4', '8540725'), - (761, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Md3N3XD4', '8555421'), - (762, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaRrKpm', '3314964'), - (762, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ndaRrKpm', '3323365'), - (762, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'ndaRrKpm', '3329383'), - (762, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndaRrKpm', '3351539'), - (762, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndaRrKpm', '3386848'), - (762, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndaRrKpm', '3389527'), - (762, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndaRrKpm', '3396499'), - (762, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndaRrKpm', '3403650'), - (762, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaRrKpm', '3406988'), - (762, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndaRrKpm', '3416576'), - (762, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'ndaRrKpm', '3430267'), - (762, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaRrKpm', '6045684'), - (763, 793, 'not_attending', '2021-06-02 23:17:49', '2025-12-17 19:47:47', '6AX5WDz4', '3793537'), - (763, 824, 'not_attending', '2021-06-03 18:13:20', '2025-12-17 19:47:47', '6AX5WDz4', '3974112'), - (763, 827, 'not_attending', '2021-06-02 20:04:51', '2025-12-17 19:47:47', '6AX5WDz4', '3975311'), - (763, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AX5WDz4', '6045684'), - (764, 2197, 'not_attending', '2023-09-15 13:36:01', '2025-12-17 19:46:44', '4olXe3od', '6359399'), - (764, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4olXe3od', '6361711'), - (764, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4olXe3od', '6361713'), - (764, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4olXe3od', '6388604'), - (764, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4olXe3od', '6394629'), - (764, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4olXe3od', '6394631'), - (764, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4olXe3od', '6431478'), - (765, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndlkJ8b4', '7074364'), - (765, 2555, 'attending', '2024-04-13 21:48:38', '2025-12-17 19:46:34', 'ndlkJ8b4', '7114951'), - (765, 2556, 'attending', '2024-04-20 22:30:57', '2025-12-17 19:46:34', 'ndlkJ8b4', '7114955'), - (765, 2557, 'attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'ndlkJ8b4', '7114956'), - (765, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndlkJ8b4', '7114957'), - (765, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'ndlkJ8b4', '7153615'), - (765, 2570, 'not_attending', '2024-04-07 22:52:26', '2025-12-17 19:46:33', 'ndlkJ8b4', '7159187'), - (765, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndlkJ8b4', '7159484'), - (765, 2577, 'attending', '2024-04-10 20:46:42', '2025-12-17 19:46:33', 'ndlkJ8b4', '7166293'), - (765, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndlkJ8b4', '7178446'), - (765, 2597, 'attending', '2024-04-22 15:27:07', '2025-12-17 19:46:34', 'ndlkJ8b4', '7186726'), - (765, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ndlkJ8b4', '7220467'), - (765, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndlkJ8b4', '7240354'), - (765, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndlkJ8b4', '7251633'), - (765, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'ndlkJ8b4', '7263048'), - (765, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'ndlkJ8b4', '7302674'), - (765, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndlkJ8b4', '7324073'), - (765, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndlkJ8b4', '7324074'), - (765, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndlkJ8b4', '7324075'), - (765, 2693, 'attending', '2024-07-27 04:21:04', '2025-12-17 19:46:31', 'ndlkJ8b4', '7324078'), - (765, 2694, 'attending', '2024-08-05 22:41:47', '2025-12-17 19:46:31', 'ndlkJ8b4', '7324079'), - (765, 2695, 'attending', '2024-08-17 21:59:43', '2025-12-17 19:46:31', 'ndlkJ8b4', '7324080'), - (765, 2696, 'attending', '2024-08-18 20:14:48', '2025-12-17 19:46:32', 'ndlkJ8b4', '7324081'), - (765, 2697, 'attending', '2024-08-30 14:34:12', '2025-12-17 19:46:32', 'ndlkJ8b4', '7324082'), - (765, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'ndlkJ8b4', '7331457'), - (765, 2737, 'attending', '2024-07-02 22:35:06', '2025-12-17 19:46:29', 'ndlkJ8b4', '7344070'), - (765, 2738, 'attending', '2024-07-01 23:33:36', '2025-12-17 19:46:29', 'ndlkJ8b4', '7344085'), - (765, 2739, 'attending', '2024-07-01 20:01:46', '2025-12-17 19:46:29', 'ndlkJ8b4', '7344575'), - (765, 2742, 'attending', '2024-07-03 22:52:42', '2025-12-17 19:46:29', 'ndlkJ8b4', '7345167'), - (765, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'ndlkJ8b4', '7356752'), - (765, 2766, 'attending', '2024-07-27 04:21:12', '2025-12-17 19:46:30', 'ndlkJ8b4', '7363643'), - (765, 2773, 'not_attending', '2024-07-21 18:44:45', '2025-12-17 19:46:31', 'ndlkJ8b4', '7368605'), - (765, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndlkJ8b4', '7368606'), - (765, 2789, 'attending', '2024-08-06 00:08:08', '2025-12-17 19:46:31', 'ndlkJ8b4', '7384047'), - (765, 2790, 'attending', '2024-08-04 03:49:55', '2025-12-17 19:46:31', 'ndlkJ8b4', '7384857'), - (765, 2795, 'attending', '2024-08-09 18:57:17', '2025-12-17 19:46:31', 'ndlkJ8b4', '7391265'), - (765, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndlkJ8b4', '7397462'), - (765, 2804, 'attending', '2024-08-18 20:14:42', '2025-12-17 19:46:32', 'ndlkJ8b4', '7399270'), - (765, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndlkJ8b4', '7424275'), - (765, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'ndlkJ8b4', '7424276'), - (765, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndlkJ8b4', '7432751'), - (765, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndlkJ8b4', '7432752'), - (765, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndlkJ8b4', '7432753'), - (765, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432754'), - (765, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432755'), - (765, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432756'), - (765, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432758'), - (765, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432759'), - (765, 2832, 'attending', '2024-09-11 22:09:15', '2025-12-17 19:46:24', 'ndlkJ8b4', '7433324'), - (765, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndlkJ8b4', '7433834'), - (765, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndlkJ8b4', '7470197'), - (765, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndlkJ8b4', '7685613'), - (765, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndlkJ8b4', '7688194'), - (765, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndlkJ8b4', '7688196'), - (765, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndlkJ8b4', '7688289'), - (765, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ndlkJ8b4', '7692763'), - (765, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndlkJ8b4', '7697552'), - (765, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndlkJ8b4', '7699878'), - (765, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndlkJ8b4', '7704043'), - (765, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndlkJ8b4', '7712467'), - (765, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ndlkJ8b4', '7713585'), - (765, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ndlkJ8b4', '7713586'), - (765, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndlkJ8b4', '7738518'), - (765, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndlkJ8b4', '7750636'), - (765, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndlkJ8b4', '7796540'), - (765, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndlkJ8b4', '7796541'), - (765, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndlkJ8b4', '7796542'), - (765, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndlkJ8b4', '7825913'), - (765, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndlkJ8b4', '7826209'), - (765, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndlkJ8b4', '7834742'), - (765, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ndlkJ8b4', '7842108'), - (765, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndlkJ8b4', '7842902'), - (765, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndlkJ8b4', '7842903'), - (765, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndlkJ8b4', '7842904'), - (765, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndlkJ8b4', '7842905'), - (765, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndlkJ8b4', '7855719'), - (765, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndlkJ8b4', '7860683'), - (765, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndlkJ8b4', '7860684'), - (765, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndlkJ8b4', '7866095'), - (765, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndlkJ8b4', '7869170'), - (765, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ndlkJ8b4', '7869188'), - (765, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndlkJ8b4', '7869201'), - (765, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndlkJ8b4', '7877465'), - (765, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndlkJ8b4', '7888250'), - (765, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ndlkJ8b4', '7904777'), - (765, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndlkJ8b4', '8349164'), - (765, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndlkJ8b4', '8349545'), - (765, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ndlkJ8b4', '8353584'), - (765, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndlkJ8b4', '8368028'), - (765, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndlkJ8b4', '8368029'), - (765, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndlkJ8b4', '8388462'), - (765, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndlkJ8b4', '8400273'), - (765, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ndlkJ8b4', '8400274'), - (765, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndlkJ8b4', '8400275'), - (765, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ndlkJ8b4', '8400276'), - (765, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndlkJ8b4', '8404977'), - (765, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndlkJ8b4', '8430783'), - (765, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndlkJ8b4', '8430784'), - (765, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndlkJ8b4', '8430799'), - (765, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndlkJ8b4', '8430800'), - (765, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndlkJ8b4', '8430801'), - (765, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndlkJ8b4', '8438709'), - (765, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndlkJ8b4', '8457738'), - (765, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndlkJ8b4', '8459566'), - (765, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndlkJ8b4', '8459567'), - (765, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndlkJ8b4', '8461032'), - (765, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndlkJ8b4', '8477877'), - (765, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ndlkJ8b4', '8485688'), - (766, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dN9zVk74', '5271448'), - (766, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dN9zVk74', '5271449'), - (766, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dN9zVk74', '5276469'), - (766, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dN9zVk74', '5278159'), - (766, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dN9zVk74', '5363695'), - (766, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dN9zVk74', '5365960'), - (766, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dN9zVk74', '5368973'), - (766, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dN9zVk74', '5378247'), - (766, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dN9zVk74', '5389605'), - (766, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dN9zVk74', '5397265'), - (766, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9zVk74', '6045684'), - (767, 258, 'maybe', '2021-06-10 05:18:40', '2025-12-17 19:47:47', 'bdzxzqbA', '3149489'), - (767, 395, 'attending', '2021-06-10 05:19:54', '2025-12-17 19:47:47', 'bdzxzqbA', '3236450'), - (767, 744, 'attending', '2021-06-11 01:57:54', '2025-12-17 19:47:47', 'bdzxzqbA', '3680624'), - (767, 745, 'attending', '2021-06-30 17:17:32', '2025-12-17 19:47:38', 'bdzxzqbA', '3680625'), - (767, 805, 'attending', '2021-06-13 19:00:53', '2025-12-17 19:47:47', 'bdzxzqbA', '3804777'), - (767, 823, 'attending', '2021-06-12 17:14:35', '2025-12-17 19:47:48', 'bdzxzqbA', '3974109'), - (767, 828, 'attending', '2021-06-12 22:15:33', '2025-12-17 19:47:47', 'bdzxzqbA', '3975312'), - (767, 829, 'attending', '2021-06-10 05:18:43', '2025-12-17 19:47:47', 'bdzxzqbA', '3976202'), - (767, 841, 'attending', '2021-06-15 23:13:40', '2025-12-17 19:47:48', 'bdzxzqbA', '4007434'), - (767, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'bdzxzqbA', '4014338'), - (767, 867, 'attending', '2021-06-26 21:41:16', '2025-12-17 19:47:38', 'bdzxzqbA', '4021848'), - (767, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'bdzxzqbA', '4136744'), - (767, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'bdzxzqbA', '4136937'), - (767, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'bdzxzqbA', '4136938'), - (767, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'bdzxzqbA', '4136947'), - (767, 877, 'maybe', '2021-06-17 04:18:29', '2025-12-17 19:47:48', 'bdzxzqbA', '4140575'), - (767, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'bdzxzqbA', '4210314'), - (767, 886, 'not_attending', '2021-06-27 19:56:42', '2025-12-17 19:47:38', 'bdzxzqbA', '4222371'), - (767, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'bdzxzqbA', '4225444'), - (767, 896, 'attending', '2021-06-29 21:18:42', '2025-12-17 19:47:38', 'bdzxzqbA', '4231145'), - (767, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'bdzxzqbA', '4239259'), - (767, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'bdzxzqbA', '4240316'), - (767, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'bdzxzqbA', '4240317'), - (767, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'bdzxzqbA', '4240318'), - (767, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'bdzxzqbA', '4240320'), - (767, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'bdzxzqbA', '4250163'), - (767, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'bdzxzqbA', '4275957'), - (767, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'bdzxzqbA', '4277819'), - (767, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'bdzxzqbA', '4301723'), - (767, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'bdzxzqbA', '4302093'), - (767, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'bdzxzqbA', '4304151'), - (767, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'bdzxzqbA', '4345519'), - (767, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'bdzxzqbA', '4356801'), - (767, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'bdzxzqbA', '4358025'), - (767, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'bdzxzqbA', '4366186'), - (767, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'bdzxzqbA', '4366187'), - (767, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'bdzxzqbA', '4402823'), - (767, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'bdzxzqbA', '4420735'), - (767, 991, 'attending', '2021-09-09 22:17:23', '2025-12-17 19:47:43', 'bdzxzqbA', '4420738'), - (767, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'bdzxzqbA', '4420739'), - (767, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'bdzxzqbA', '4420741'), - (767, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'bdzxzqbA', '4420744'), - (767, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'bdzxzqbA', '4420747'), - (767, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'bdzxzqbA', '4420748'), - (767, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'bdzxzqbA', '4420749'), - (767, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'bdzxzqbA', '4461883'), - (767, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'bdzxzqbA', '4508342'), - (767, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'bdzxzqbA', '4568602'), - (767, 1415, 'not_attending', '2022-05-29 07:06:03', '2025-12-17 19:47:30', 'bdzxzqbA', '5368973'), - (767, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'bdzxzqbA', '5389605'), - (767, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'bdzxzqbA', '5397265'), - (767, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzxzqbA', '6045684'), - (768, 4, 'attending', '2020-03-19 13:05:29', '2025-12-17 19:47:58', '1Are5NBm', '2958046'), - (768, 5, 'attending', '2020-03-19 13:05:30', '2025-12-17 19:47:58', '1Are5NBm', '2958047'), - (768, 7, 'attending', '2020-03-19 12:59:34', '2025-12-17 19:47:58', '1Are5NBm', '2958049'), - (768, 9, 'attending', '2020-03-27 16:24:02', '2025-12-17 19:47:56', '1Are5NBm', '2958052'), - (768, 10, 'attending', '2020-03-27 16:24:04', '2025-12-17 19:47:56', '1Are5NBm', '2958053'), - (768, 11, 'attending', '2020-04-03 02:01:24', '2025-12-17 19:47:57', '1Are5NBm', '2958055'), - (768, 29, 'maybe', '2020-03-30 20:16:22', '2025-12-17 19:47:56', '1Are5NBm', '2961309'), - (768, 30, 'maybe', '2020-04-06 23:47:19', '2025-12-17 19:47:57', '1Are5NBm', '2961895'), - (768, 32, 'attending', '2020-03-31 20:45:02', '2025-12-17 19:47:56', '1Are5NBm', '2963931'), - (768, 33, 'attending', '2020-04-07 18:33:46', '2025-12-17 19:47:57', '1Are5NBm', '2963932'), - (768, 36, 'not_attending', '2020-04-03 02:01:20', '2025-12-17 19:47:57', '1Are5NBm', '2969208'), - (768, 39, 'not_attending', '2020-04-03 02:01:19', '2025-12-17 19:47:57', '1Are5NBm', '2970637'), - (768, 41, 'attending', '2020-04-07 18:33:36', '2025-12-17 19:47:57', '1Are5NBm', '2971546'), - (768, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '1Are5NBm', '2974534'), - (768, 46, 'attending', '2020-04-06 12:31:31', '2025-12-17 19:47:57', '1Are5NBm', '2974955'), - (768, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', '1Are5NBm', '2975384'), - (768, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', '1Are5NBm', '2975385'), - (768, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', '1Are5NBm', '2976575'), - (768, 58, 'attending', '2020-04-18 00:12:38', '2025-12-17 19:47:57', '1Are5NBm', '2977127'), - (768, 61, 'attending', '2020-04-07 18:33:58', '2025-12-17 19:47:57', '1Are5NBm', '2977130'), - (768, 62, 'attending', '2020-05-12 17:02:20', '2025-12-17 19:47:57', '1Are5NBm', '2977131'), - (768, 63, 'attending', '2020-05-19 21:27:29', '2025-12-17 19:47:57', '1Are5NBm', '2977132'), - (768, 65, 'attending', '2020-05-25 18:07:31', '2025-12-17 19:47:57', '1Are5NBm', '2977134'), - (768, 66, 'attending', '2020-06-09 14:32:23', '2025-12-17 19:47:58', '1Are5NBm', '2977135'), - (768, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '1Are5NBm', '2977343'), - (768, 71, 'attending', '2020-04-09 11:59:37', '2025-12-17 19:47:57', '1Are5NBm', '2977526'), - (768, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '1Are5NBm', '2977812'), - (768, 73, 'attending', '2020-04-10 16:31:41', '2025-12-17 19:47:57', '1Are5NBm', '2977931'), - (768, 74, 'attending', '2020-04-18 00:12:25', '2025-12-17 19:47:57', '1Are5NBm', '2978244'), - (768, 75, 'attending', '2020-04-19 17:47:24', '2025-12-17 19:47:57', '1Are5NBm', '2978245'), - (768, 76, 'attending', '2020-04-29 14:48:06', '2025-12-17 19:47:57', '1Are5NBm', '2978246'), - (768, 77, 'attending', '2020-05-01 11:41:11', '2025-12-17 19:47:57', '1Are5NBm', '2978247'), - (768, 78, 'attending', '2020-05-01 11:41:19', '2025-12-17 19:47:57', '1Are5NBm', '2978249'), - (768, 79, 'attending', '2020-05-01 11:41:22', '2025-12-17 19:47:57', '1Are5NBm', '2978250'), - (768, 80, 'attending', '2020-06-06 03:51:38', '2025-12-17 19:47:58', '1Are5NBm', '2978251'), - (768, 81, 'attending', '2020-06-13 02:20:34', '2025-12-17 19:47:58', '1Are5NBm', '2978252'), - (768, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', '1Are5NBm', '2978433'), - (768, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '1Are5NBm', '2978438'), - (768, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '1Are5NBm', '2980871'), - (768, 85, 'maybe', '2020-04-22 21:49:12', '2025-12-17 19:47:57', '1Are5NBm', '2980872'), - (768, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '1Are5NBm', '2981388'), - (768, 87, 'attending', '2020-04-19 17:47:25', '2025-12-17 19:47:57', '1Are5NBm', '2982602'), - (768, 88, 'attending', '2020-04-14 18:50:23', '2025-12-17 19:47:57', '1Are5NBm', '2982603'), - (768, 89, 'attending', '2020-04-29 14:47:58', '2025-12-17 19:47:57', '1Are5NBm', '2982604'), - (768, 91, 'maybe', '2020-05-01 21:10:24', '2025-12-17 19:47:57', '1Are5NBm', '2985130'), - (768, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '1Are5NBm', '2986743'), - (768, 93, 'attending', '2020-04-19 17:47:08', '2025-12-17 19:47:57', '1Are5NBm', '2987418'), - (768, 94, 'attending', '2020-04-19 17:47:21', '2025-12-17 19:47:57', '1Are5NBm', '2987421'), - (768, 100, 'attending', '2020-04-21 18:05:17', '2025-12-17 19:47:57', '1Are5NBm', '2989142'), - (768, 104, 'maybe', '2020-04-26 16:30:39', '2025-12-17 19:47:57', '1Are5NBm', '2991471'), - (768, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', '1Are5NBm', '2993501'), - (768, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '1Are5NBm', '2994480'), - (768, 112, 'attending', '2020-07-05 14:19:58', '2025-12-17 19:47:55', '1Are5NBm', '2994908'), - (768, 113, 'attending', '2020-08-02 02:17:34', '2025-12-17 19:47:56', '1Are5NBm', '2994909'), - (768, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', '1Are5NBm', '3001217'), - (768, 119, 'attending', '2020-05-09 14:45:40', '2025-12-17 19:47:57', '1Are5NBm', '3015486'), - (768, 121, 'attending', '2020-05-18 19:34:57', '2025-12-17 19:47:57', '1Are5NBm', '3023063'), - (768, 126, 'attending', '2020-05-24 22:00:39', '2025-12-17 19:47:57', '1Are5NBm', '3024022'), - (768, 128, 'attending', '2020-05-21 14:59:54', '2025-12-17 19:47:57', '1Are5NBm', '3027185'), - (768, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '1Are5NBm', '3034321'), - (768, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '1Are5NBm', '3035881'), - (768, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '1Are5NBm', '3049983'), - (768, 147, 'attending', '2020-08-14 15:31:44', '2025-12-17 19:47:56', '1Are5NBm', '3058684'), - (768, 148, 'attending', '2020-07-05 14:14:02', '2025-12-17 19:47:55', '1Are5NBm', '3058685'), - (768, 151, 'not_attending', '2020-08-24 19:59:48', '2025-12-17 19:47:56', '1Are5NBm', '3058688'), - (768, 154, 'attending', '2020-08-02 14:03:28', '2025-12-17 19:47:56', '1Are5NBm', '3058691'), - (768, 155, 'attending', '2020-08-14 15:31:45', '2025-12-17 19:47:56', '1Are5NBm', '3058692'), - (768, 157, 'not_attending', '2020-09-19 18:58:54', '2025-12-17 19:47:56', '1Are5NBm', '3058694'), - (768, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '1Are5NBm', '3058959'), - (768, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', '1Are5NBm', '3067093'), - (768, 183, 'attending', '2020-06-15 17:43:20', '2025-12-17 19:47:58', '1Are5NBm', '3075228'), - (768, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '1Are5NBm', '3075456'), - (768, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '1Are5NBm', '3083791'), - (768, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '1Are5NBm', '3085151'), - (768, 190, 'attending', '2020-07-02 17:03:45', '2025-12-17 19:47:55', '1Are5NBm', '3087258'), - (768, 191, 'attending', '2020-07-05 14:14:00', '2025-12-17 19:47:55', '1Are5NBm', '3087259'), - (768, 192, 'not_attending', '2020-07-05 14:27:36', '2025-12-17 19:47:55', '1Are5NBm', '3087260'), - (768, 193, 'attending', '2020-07-20 21:08:35', '2025-12-17 19:47:55', '1Are5NBm', '3087261'), - (768, 194, 'attending', '2020-07-20 21:08:38', '2025-12-17 19:47:55', '1Are5NBm', '3087262'), - (768, 195, 'attending', '2020-07-21 00:50:59', '2025-12-17 19:47:56', '1Are5NBm', '3087264'), - (768, 196, 'attending', '2020-07-21 00:51:00', '2025-12-17 19:47:56', '1Are5NBm', '3087265'), - (768, 197, 'attending', '2020-07-21 00:51:12', '2025-12-17 19:47:56', '1Are5NBm', '3087266'), - (768, 198, 'not_attending', '2020-08-24 20:00:01', '2025-12-17 19:47:56', '1Are5NBm', '3087267'), - (768, 199, 'attending', '2020-09-05 12:18:23', '2025-12-17 19:47:56', '1Are5NBm', '3087268'), - (768, 201, 'not_attending', '2020-06-20 22:37:43', '2025-12-17 19:47:55', '1Are5NBm', '3088653'), - (768, 202, 'attending', '2020-06-21 18:27:35', '2025-12-17 19:47:55', '1Are5NBm', '3090353'), - (768, 207, 'attending', '2020-07-24 22:48:35', '2025-12-17 19:47:55', '1Are5NBm', '3104807'), - (768, 208, 'attending', '2020-08-02 14:03:36', '2025-12-17 19:47:56', '1Are5NBm', '3104808'), - (768, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '1Are5NBm', '3106813'), - (768, 214, 'maybe', '2020-07-08 21:37:52', '2025-12-17 19:47:55', '1Are5NBm', '3124139'), - (768, 219, 'attending', '2020-08-06 21:11:14', '2025-12-17 19:47:56', '1Are5NBm', '3129263'), - (768, 223, 'attending', '2020-09-05 04:05:37', '2025-12-17 19:47:56', '1Are5NBm', '3129980'), - (768, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '1Are5NBm', '3132817'), - (768, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '1Are5NBm', '3132820'), - (768, 233, 'not_attending', '2020-07-22 19:59:27', '2025-12-17 19:47:55', '1Are5NBm', '3139773'), - (768, 267, 'attending', '2020-07-28 22:20:02', '2025-12-17 19:47:55', '1Are5NBm', '3152781'), - (768, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '1Are5NBm', '3155321'), - (768, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '1Are5NBm', '3162006'), - (768, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '1Are5NBm', '3163442'), - (768, 281, 'attending', '2020-08-06 13:20:47', '2025-12-17 19:47:56', '1Are5NBm', '3166945'), - (768, 293, 'maybe', '2020-08-14 15:31:24', '2025-12-17 19:47:56', '1Are5NBm', '3172832'), - (768, 294, 'maybe', '2020-08-14 15:31:54', '2025-12-17 19:47:56', '1Are5NBm', '3172833'), - (768, 295, 'maybe', '2020-08-14 15:32:23', '2025-12-17 19:47:56', '1Are5NBm', '3172834'), - (768, 296, 'attending', '2020-09-09 12:18:32', '2025-12-17 19:47:56', '1Are5NBm', '3172876'), - (768, 298, 'maybe', '2020-08-14 15:32:06', '2025-12-17 19:47:56', '1Are5NBm', '3174556'), - (768, 299, 'not_attending', '2020-08-14 15:31:32', '2025-12-17 19:47:56', '1Are5NBm', '3176591'), - (768, 306, 'attending', '2020-08-14 22:35:31', '2025-12-17 19:47:56', '1Are5NBm', '3179777'), - (768, 307, 'not_attending', '2020-08-17 15:06:26', '2025-12-17 19:47:56', '1Are5NBm', '3182590'), - (768, 311, 'not_attending', '2020-09-18 21:12:49', '2025-12-17 19:47:56', '1Are5NBm', '3186057'), - (768, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '1Are5NBm', '3191735'), - (768, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '1Are5NBm', '3200209'), - (768, 339, 'not_attending', '2020-09-10 00:01:17', '2025-12-17 19:47:56', '1Are5NBm', '3204469'), - (768, 340, 'maybe', '2020-09-13 20:16:33', '2025-12-17 19:47:56', '1Are5NBm', '3204470'), - (768, 341, 'attending', '2020-09-18 21:12:41', '2025-12-17 19:47:52', '1Are5NBm', '3204471'), - (768, 342, 'maybe', '2020-09-13 20:16:27', '2025-12-17 19:47:52', '1Are5NBm', '3204472'), - (768, 361, 'attending', '2020-09-16 14:17:34', '2025-12-17 19:47:56', '1Are5NBm', '3213323'), - (768, 362, 'maybe', '2020-09-26 19:14:34', '2025-12-17 19:47:52', '1Are5NBm', '3214207'), - (768, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '1Are5NBm', '3217037'), - (768, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '1Are5NBm', '3218510'), - (768, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', '1Are5NBm', '3228698'), - (768, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', '1Are5NBm', '3228699'), - (768, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', '1Are5NBm', '3228700'), - (768, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', '1Are5NBm', '3228701'), - (768, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', '1Are5NBm', '3245751'), - (768, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '1Are5NBm', '3250232'), - (768, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', '1Are5NBm', '3256168'), - (768, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', '1Are5NBm', '3263578'), - (768, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '1Are5NBm', '3276428'), - (768, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '1Are5NBm', '3281467'), - (768, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '1Are5NBm', '3281470'), - (768, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '1Are5NBm', '3281829'), - (768, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '1Are5NBm', '3285413'), - (768, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '1Are5NBm', '3285414'), - (768, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '1Are5NBm', '4736497'), - (768, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '1Are5NBm', '4736499'), - (768, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '1Are5NBm', '4736500'), - (768, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '1Are5NBm', '4736503'), - (768, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '1Are5NBm', '4736504'), - (768, 1185, 'not_attending', '2022-01-12 23:28:47', '2025-12-17 19:47:31', '1Are5NBm', '4746789'), - (768, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '1Are5NBm', '5038850'), - (768, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '1Are5NBm', '5045826'), - (768, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '1Are5NBm', '5132533'), - (768, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '1Are5NBm', '5186582'), - (768, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '1Are5NBm', '5186583'), - (768, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '1Are5NBm', '5186585'), - (768, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '1Are5NBm', '5190437'), - (768, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '1Are5NBm', '5195095'), - (768, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '1Are5NBm', '5215989'), - (768, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '1Are5NBm', '5223686'), - (768, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '1Are5NBm', '5247467'), - (768, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '1Are5NBm', '5260800'), - (768, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '1Are5NBm', '5269930'), - (768, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '1Are5NBm', '5271448'), - (768, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '1Are5NBm', '5271449'), - (768, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '1Are5NBm', '5278159'), - (768, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '1Are5NBm', '5363695'), - (768, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '1Are5NBm', '5365960'), - (768, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '1Are5NBm', '5378247'), - (768, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '1Are5NBm', '5389605'), - (768, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '1Are5NBm', '5397265'), - (768, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '1Are5NBm', '5404786'), - (768, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '1Are5NBm', '5405203'), - (768, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '1Are5NBm', '5412550'), - (768, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '1Are5NBm', '5415046'), - (768, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '1Are5NBm', '5422086'), - (768, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '1Are5NBm', '5422406'), - (768, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '1Are5NBm', '5424565'), - (768, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '1Are5NBm', '5426882'), - (768, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '1Are5NBm', '5441125'), - (768, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '1Are5NBm', '5441126'), - (768, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '1Are5NBm', '5441128'), - (768, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '1Are5NBm', '5441131'), - (768, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '1Are5NBm', '5441132'), - (768, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '1Are5NBm', '5453325'), - (768, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '1Are5NBm', '5454516'), - (768, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '1Are5NBm', '5454605'), - (768, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '1Are5NBm', '5455037'), - (768, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '1Are5NBm', '5461278'), - (768, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '1Are5NBm', '5469480'), - (768, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '1Are5NBm', '5474663'), - (768, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '1Are5NBm', '5482022'), - (768, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '1Are5NBm', '5488912'), - (768, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '1Are5NBm', '5492192'), - (768, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '1Are5NBm', '5493139'), - (768, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '1Are5NBm', '5493200'), - (768, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '1Are5NBm', '5502188'), - (768, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '1Are5NBm', '5505059'), - (768, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '1Are5NBm', '5509055'), - (768, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '1Are5NBm', '5512862'), - (768, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '1Are5NBm', '5513985'), - (768, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '1Are5NBm', '5519981'), - (768, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '1Are5NBm', '5522550'), - (768, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '1Are5NBm', '5534683'), - (768, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '1Are5NBm', '5537735'), - (768, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '1Are5NBm', '5540859'), - (768, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '1Are5NBm', '5546619'), - (768, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '1Are5NBm', '5557747'), - (768, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '1Are5NBm', '5560255'), - (768, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '1Are5NBm', '5562906'), - (768, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '1Are5NBm', '5600604'), - (768, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '1Are5NBm', '5605544'), - (768, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '1Are5NBm', '5630960'), - (768, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '1Are5NBm', '5630961'), - (768, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '1Are5NBm', '5630962'), - (768, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '1Are5NBm', '5630966'), - (768, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '1Are5NBm', '5630967'), - (768, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '1Are5NBm', '5630968'), - (768, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '1Are5NBm', '5635406'), - (768, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '1Are5NBm', '5638765'), - (768, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '1Are5NBm', '5640097'), - (768, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '1Are5NBm', '5640843'), - (768, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '1Are5NBm', '5641521'), - (768, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '1Are5NBm', '5642818'), - (768, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '1Are5NBm', '5652395'), - (768, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '1Are5NBm', '5670445'), - (768, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '1Are5NBm', '5671637'), - (768, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '1Are5NBm', '5672329'), - (768, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '1Are5NBm', '5674057'), - (768, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '1Are5NBm', '5674060'), - (768, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', '1Are5NBm', '5677461'), - (768, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '1Are5NBm', '5698046'), - (768, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '1Are5NBm', '5699760'), - (768, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '1Are5NBm', '5741601'), - (768, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '1Are5NBm', '5763458'), - (768, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '1Are5NBm', '5774172'), - (768, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '1Are5NBm', '5818247'), - (768, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '1Are5NBm', '5819471'), - (768, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '1Are5NBm', '5827739'), - (768, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '1Are5NBm', '5844306'), - (768, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '1Are5NBm', '5850159'), - (768, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '1Are5NBm', '5858999'), - (768, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '1Are5NBm', '5871984'), - (768, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '1Are5NBm', '5876354'), - (768, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '1Are5NBm', '5880939'), - (768, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '1Are5NBm', '5880940'), - (768, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '1Are5NBm', '5880942'), - (768, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '1Are5NBm', '5880943'), - (768, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '1Are5NBm', '5887890'), - (768, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '1Are5NBm', '5888598'), - (768, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '1Are5NBm', '5893260'), - (768, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '1Are5NBm', '5899826'), - (768, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '1Are5NBm', '5900199'), - (768, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '1Are5NBm', '5900200'), - (768, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '1Are5NBm', '5900202'), - (768, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '1Are5NBm', '5900203'), - (768, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '1Are5NBm', '5901108'), - (768, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '1Are5NBm', '5901126'), - (768, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '1Are5NBm', '5909655'), - (768, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '1Are5NBm', '5910522'), - (768, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '1Are5NBm', '5910526'), - (768, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '1Are5NBm', '5910528'), - (768, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '1Are5NBm', '5916219'), - (768, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '1Are5NBm', '5936234'), - (768, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '1Are5NBm', '5958351'), - (768, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '1Are5NBm', '5959751'), - (768, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '1Are5NBm', '5959755'), - (768, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '1Are5NBm', '5960055'), - (768, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '1Are5NBm', '5961684'), - (768, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '1Are5NBm', '5962132'), - (768, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '1Are5NBm', '5962133'), - (768, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '1Are5NBm', '5962134'), - (768, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '1Are5NBm', '5962317'), - (768, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '1Are5NBm', '5962318'), - (768, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '1Are5NBm', '5965933'), - (768, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '1Are5NBm', '5967014'), - (768, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '1Are5NBm', '5972815'), - (768, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '1Are5NBm', '5974016'), - (768, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '1Are5NBm', '5981515'), - (768, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '1Are5NBm', '5993516'), - (768, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '1Are5NBm', '5998939'), - (768, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '1Are5NBm', '6028191'), - (768, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '1Are5NBm', '6040066'), - (768, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '1Are5NBm', '6042717'), - (768, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '1Are5NBm', '6044838'), - (768, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '1Are5NBm', '6044839'), - (768, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1Are5NBm', '6045684'), - (768, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '1Are5NBm', '6050104'), - (768, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '1Are5NBm', '6053195'), - (768, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '1Are5NBm', '6053198'), - (768, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '1Are5NBm', '6056085'), - (768, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '1Are5NBm', '6056916'), - (768, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '1Are5NBm', '6059290'), - (768, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '1Are5NBm', '6060328'), - (768, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '1Are5NBm', '6061037'), - (768, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '1Are5NBm', '6061039'), - (768, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '1Are5NBm', '6067245'), - (768, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '1Are5NBm', '6068094'), - (768, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '1Are5NBm', '6068252'), - (768, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '1Are5NBm', '6068253'), - (768, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '1Are5NBm', '6068254'), - (768, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '1Are5NBm', '6068280'), - (768, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '1Are5NBm', '6069093'), - (768, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '1Are5NBm', '6072528'), - (768, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '1Are5NBm', '6079840'), - (768, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '1Are5NBm', '6083398'), - (768, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '1Are5NBm', '6093504'), - (768, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '1Are5NBm', '6097414'), - (768, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '1Are5NBm', '6097442'), - (768, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '1Are5NBm', '6097684'), - (768, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '1Are5NBm', '6098762'), - (768, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '1Are5NBm', '6101361'), - (768, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '1Are5NBm', '6101362'), - (768, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '1Are5NBm', '6107314'), - (768, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '1Are5NBm', '6120034'), - (768, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '1Are5NBm', '6136733'), - (768, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '1Are5NBm', '6137989'), - (768, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '1Are5NBm', '6150864'), - (768, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '1Are5NBm', '6155491'), - (768, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '1Are5NBm', '6164417'), - (768, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '1Are5NBm', '6166388'), - (768, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '1Are5NBm', '6176439'), - (768, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '1Are5NBm', '6182410'), - (768, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '1Are5NBm', '6185812'), - (768, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '1Are5NBm', '6187651'), - (768, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '1Are5NBm', '6187963'), - (768, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '1Are5NBm', '6187964'), - (768, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '1Are5NBm', '6187966'), - (768, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '1Are5NBm', '6187967'), - (768, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '1Are5NBm', '6187969'), - (768, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '1Are5NBm', '6334878'), - (768, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '1Are5NBm', '6337236'), - (768, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '1Are5NBm', '6337970'), - (768, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '1Are5NBm', '6338308'), - (768, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '1Are5NBm', '6341710'), - (768, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '1Are5NBm', '6342044'), - (768, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '1Are5NBm', '6342298'), - (768, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '1Are5NBm', '6343294'), - (768, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '1Are5NBm', '6347034'), - (768, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '1Are5NBm', '6347056'), - (768, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '1Are5NBm', '6353830'), - (768, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '1Are5NBm', '6353831'), - (768, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '1Are5NBm', '6357867'), - (768, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '1Are5NBm', '6358652'), - (768, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '1Are5NBm', '6361709'), - (768, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '1Are5NBm', '6361710'), - (768, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '1Are5NBm', '6361711'), - (768, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '1Are5NBm', '6361712'), - (768, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '1Are5NBm', '6361713'), - (768, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', '1Are5NBm', '6382573'), - (768, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '1Are5NBm', '6388604'), - (768, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '1Are5NBm', '6394629'), - (768, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '1Are5NBm', '6394631'), - (768, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '1Are5NBm', '6440863'), - (768, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '1Are5NBm', '6445440'), - (768, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '1Are5NBm', '6453951'), - (768, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '1Are5NBm', '6461696'), - (768, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '1Are5NBm', '6462129'), - (768, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '1Are5NBm', '6463218'), - (768, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '1Are5NBm', '6472181'), - (768, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '1Are5NBm', '6482693'), - (768, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '1Are5NBm', '6484200'), - (768, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '1Are5NBm', '6484680'), - (768, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '1Are5NBm', '6507741'), - (768, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '1Are5NBm', '6514659'), - (768, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '1Are5NBm', '6514660'), - (768, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '1Are5NBm', '6519103'), - (768, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '1Are5NBm', '6535681'), - (768, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '1Are5NBm', '6584747'), - (768, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '1Are5NBm', '6587097'), - (768, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '1Are5NBm', '6609022'), - (768, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '1Are5NBm', '6632757'), - (768, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '1Are5NBm', '6644187'), - (768, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '1Are5NBm', '6648951'), - (768, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '1Are5NBm', '6648952'), - (768, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '1Are5NBm', '6655401'), - (768, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '1Are5NBm', '6661585'), - (768, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '1Are5NBm', '6661588'), - (768, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '1Are5NBm', '6661589'), - (768, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '1Are5NBm', '6699906'), - (768, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '1Are5NBm', '6699913'), - (768, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '1Are5NBm', '6701109'), - (768, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '1Are5NBm', '6705219'), - (768, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '1Are5NBm', '6710153'), - (768, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '1Are5NBm', '6711552'), - (768, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '1Are5NBm', '6711553'), - (768, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '1Are5NBm', '6722688'), - (768, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '1Are5NBm', '6730620'), - (768, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '1Are5NBm', '6740364'), - (768, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '1Are5NBm', '6743829'), - (768, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '1Are5NBm', '7030380'), - (768, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '1Are5NBm', '7033677'), - (768, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '1Are5NBm', '7044715'), - (768, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '1Are5NBm', '7050318'), - (768, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '1Are5NBm', '7050319'), - (768, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '1Are5NBm', '7050322'), - (768, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '1Are5NBm', '7057804'), - (768, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '1Are5NBm', '7072824'), - (768, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '1Are5NBm', '7074348'), - (768, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '1Are5NBm', '7074364'), - (768, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '1Are5NBm', '7089267'), - (768, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '1Are5NBm', '7098747'), - (768, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '1Are5NBm', '7113468'), - (768, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '1Are5NBm', '7114856'), - (768, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '1Are5NBm', '7114951'), - (768, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '1Are5NBm', '7114955'), - (768, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '1Are5NBm', '7114956'), - (768, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '1Are5NBm', '7114957'), - (768, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '1Are5NBm', '7159484'), - (768, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '1Are5NBm', '7178446'), - (768, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '1Are5NBm', '7220467'), - (768, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '1Are5NBm', '7240354'), - (768, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '1Are5NBm', '7251633'), - (768, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '1Are5NBm', '7324073'), - (768, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '1Are5NBm', '7324074'), - (768, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '1Are5NBm', '7324075'), - (768, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '1Are5NBm', '7324078'), - (768, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '1Are5NBm', '7324082'), - (768, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '1Are5NBm', '7331457'), - (768, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '1Are5NBm', '7363643'), - (768, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '1Are5NBm', '7368606'), - (768, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '1Are5NBm', '7397462'), - (768, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '1Are5NBm', '7424275'), - (768, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '1Are5NBm', '7432751'), - (768, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '1Are5NBm', '7432752'), - (768, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '1Are5NBm', '7432753'), - (768, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '1Are5NBm', '7432754'), - (768, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '1Are5NBm', '7432755'), - (768, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '1Are5NBm', '7432756'), - (768, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '1Are5NBm', '7432758'), - (768, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '1Are5NBm', '7432759'), - (768, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '1Are5NBm', '7433834'), - (768, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '1Are5NBm', '7470197'), - (768, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '1Are5NBm', '7685613'), - (768, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '1Are5NBm', '7688194'), - (768, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '1Are5NBm', '7688196'), - (768, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '1Are5NBm', '7688289'), - (768, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '1Are5NBm', '7692763'), - (768, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '1Are5NBm', '7697552'), - (768, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '1Are5NBm', '7699878'), - (768, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '1Are5NBm', '7704043'), - (768, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1Are5NBm', '7712467'), - (768, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1Are5NBm', '7713585'), - (768, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1Are5NBm', '7713586'), - (768, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '1Are5NBm', '7738518'), - (768, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1Are5NBm', '7750636'), - (768, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1Are5NBm', '7796540'), - (768, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1Are5NBm', '7796541'), - (768, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1Are5NBm', '7796542'), - (768, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1Are5NBm', '7825913'), - (768, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1Are5NBm', '7826209'), - (768, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1Are5NBm', '7834742'), - (768, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1Are5NBm', '7842108'), - (768, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1Are5NBm', '7842902'), - (768, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1Are5NBm', '7842903'), - (768, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1Are5NBm', '7842904'), - (768, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1Are5NBm', '7842905'), - (768, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1Are5NBm', '7855719'), - (768, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1Are5NBm', '7860683'), - (768, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1Are5NBm', '7860684'), - (768, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1Are5NBm', '7866095'), - (768, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1Are5NBm', '7869170'), - (768, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1Are5NBm', '7869188'), - (768, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1Are5NBm', '7869201'), - (768, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1Are5NBm', '7877465'), - (768, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1Are5NBm', '7888250'), - (768, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1Are5NBm', '7904777'), - (768, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1Are5NBm', '8349164'), - (768, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1Are5NBm', '8349545'), - (768, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1Are5NBm', '8368028'), - (768, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1Are5NBm', '8368029'), - (768, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1Are5NBm', '8388462'), - (768, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1Are5NBm', '8400273'), - (768, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1Are5NBm', '8400275'), - (768, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '1Are5NBm', '8400276'), - (768, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1Are5NBm', '8404977'), - (768, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1Are5NBm', '8430783'), - (768, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1Are5NBm', '8430784'), - (768, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1Are5NBm', '8430799'), - (768, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1Are5NBm', '8430800'), - (768, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1Are5NBm', '8430801'), - (768, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1Are5NBm', '8438709'), - (768, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1Are5NBm', '8457738'), - (768, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1Are5NBm', '8459566'), - (768, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1Are5NBm', '8459567'), - (768, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1Are5NBm', '8461032'), - (768, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1Are5NBm', '8477877'), - (768, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1Are5NBm', '8485688'), - (768, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '1Are5NBm', '8490587'), - (768, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '1Are5NBm', '8493552'), - (768, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '1Are5NBm', '8493553'), - (768, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '1Are5NBm', '8493554'), - (768, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '1Are5NBm', '8493555'), - (768, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '1Are5NBm', '8493556'), - (768, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '1Are5NBm', '8493557'), - (768, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '1Are5NBm', '8493558'), - (768, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '1Are5NBm', '8493559'), - (768, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '1Are5NBm', '8493560'), - (768, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '1Are5NBm', '8493561'), - (768, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '1Are5NBm', '8493572'), - (768, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '1Are5NBm', '8540725'), - (768, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '1Are5NBm', '8555421'), - (769, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ArBjWNBA', '5900202'), - (769, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ArBjWNBA', '5900203'), - (769, 1917, 'not_attending', '2023-03-12 16:07:19', '2025-12-17 19:47:10', 'ArBjWNBA', '5910528'), - (769, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'ArBjWNBA', '5962317'), - (769, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'ArBjWNBA', '5962318'), - (769, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ArBjWNBA', '5965933'), - (769, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ArBjWNBA', '5981515'), - (769, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ArBjWNBA', '5993516'), - (769, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ArBjWNBA', '5998939'), - (769, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ArBjWNBA', '6028191'), - (769, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ArBjWNBA', '6040066'), - (769, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ArBjWNBA', '6042717'), - (769, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ArBjWNBA', '6044838'), - (769, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ArBjWNBA', '6044839'), - (769, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArBjWNBA', '6045684'), - (769, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'ArBjWNBA', '6048955'), - (769, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ArBjWNBA', '6050104'), - (769, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ArBjWNBA', '6053195'), - (769, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ArBjWNBA', '6053198'), - (769, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ArBjWNBA', '6056085'), - (769, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ArBjWNBA', '6056916'), - (769, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ArBjWNBA', '6059290'), - (769, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ArBjWNBA', '6060328'), - (769, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ArBjWNBA', '6061037'), - (769, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ArBjWNBA', '6061039'), - (769, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ArBjWNBA', '6067245'), - (769, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ArBjWNBA', '6068094'), - (769, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ArBjWNBA', '6068252'), - (769, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ArBjWNBA', '6068253'), - (769, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ArBjWNBA', '6068254'), - (769, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ArBjWNBA', '6068280'), - (769, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ArBjWNBA', '6069093'), - (769, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'ArBjWNBA', '6072528'), - (769, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ArBjWNBA', '6079840'), - (769, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ArBjWNBA', '6083398'), - (769, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'ArBjWNBA', '6093504'), - (769, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ArBjWNBA', '6097414'), - (769, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ArBjWNBA', '6097442'), - (769, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ArBjWNBA', '6097684'), - (769, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ArBjWNBA', '6098762'), - (769, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ArBjWNBA', '6101362'), - (769, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ArBjWNBA', '6107314'), - (769, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ArBjWNBA', '6120034'), - (770, 221, 'attending', '2020-09-17 19:45:46', '2025-12-17 19:47:56', 'Lmp0DO9m', '3129265'), - (770, 311, 'not_attending', '2020-09-14 14:45:56', '2025-12-17 19:47:56', 'Lmp0DO9m', '3186057'), - (770, 362, 'not_attending', '2020-09-25 19:23:20', '2025-12-17 19:47:52', 'Lmp0DO9m', '3214207'), - (770, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'Lmp0DO9m', '3217037'), - (770, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'Lmp0DO9m', '3218510'), - (770, 367, 'attending', '2020-09-23 01:53:27', '2025-12-17 19:47:51', 'Lmp0DO9m', '3219751'), - (770, 385, 'not_attending', '2020-09-29 10:45:47', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228698'), - (770, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228699'), - (770, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228700'), - (770, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228701'), - (770, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'Lmp0DO9m', '3245751'), - (770, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'Lmp0DO9m', '3250232'), - (770, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'Lmp0DO9m', '3256168'), - (770, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'Lmp0DO9m', '3263578'), - (770, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'Lmp0DO9m', '3276428'), - (770, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'Lmp0DO9m', '3281467'), - (770, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Lmp0DO9m', '3281470'), - (770, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'Lmp0DO9m', '3281829'), - (770, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'Lmp0DO9m', '3285413'), - (770, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Lmp0DO9m', '3285414'), - (770, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Lmp0DO9m', '3297764'), - (770, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Lmp0DO9m', '3313856'), - (770, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Lmp0DO9m', '3314909'), - (770, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Lmp0DO9m', '6045684'), - (771, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjnM7DJm', '6045684'), - (772, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dOWbaDnd', '5271448'), - (772, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dOWbaDnd', '5271449'), - (772, 1383, 'not_attending', '2022-05-05 20:53:38', '2025-12-17 19:47:28', 'dOWbaDnd', '5276469'), - (772, 1384, 'attending', '2022-05-06 04:48:31', '2025-12-17 19:47:28', 'dOWbaDnd', '5277078'), - (772, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dOWbaDnd', '5278159'), - (772, 1388, 'attending', '2022-05-05 20:04:49', '2025-12-17 19:47:28', 'dOWbaDnd', '5278201'), - (772, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dOWbaDnd', '5363695'), - (772, 1408, 'maybe', '2022-05-20 18:28:53', '2025-12-17 19:47:29', 'dOWbaDnd', '5365960'), - (772, 1414, 'maybe', '2022-05-20 18:29:12', '2025-12-17 19:47:29', 'dOWbaDnd', '5368445'), - (772, 1415, 'not_attending', '2022-06-03 19:09:12', '2025-12-17 19:47:30', 'dOWbaDnd', '5368973'), - (772, 1419, 'attending', '2022-06-07 14:07:59', '2025-12-17 19:47:30', 'dOWbaDnd', '5373081'), - (772, 1423, 'attending', '2022-06-15 17:48:29', '2025-12-17 19:47:17', 'dOWbaDnd', '5375727'), - (772, 1425, 'attending', '2022-05-26 21:58:52', '2025-12-17 19:47:30', 'dOWbaDnd', '5375861'), - (772, 1428, 'not_attending', '2022-06-10 16:07:16', '2025-12-17 19:47:30', 'dOWbaDnd', '5378247'), - (772, 1430, 'attending', '2022-06-09 22:59:05', '2025-12-17 19:47:30', 'dOWbaDnd', '5389402'), - (772, 1431, 'attending', '2022-06-09 15:25:50', '2025-12-17 19:47:30', 'dOWbaDnd', '5389605'), - (772, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dOWbaDnd', '5397265'), - (772, 1449, 'attending', '2022-06-14 00:17:57', '2025-12-17 19:47:31', 'dOWbaDnd', '5403335'), - (772, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dOWbaDnd', '5403967'), - (772, 1452, 'attending', '2022-06-10 16:07:21', '2025-12-17 19:47:30', 'dOWbaDnd', '5404197'), - (772, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dOWbaDnd', '5404786'), - (772, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dOWbaDnd', '5405203'), - (772, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dOWbaDnd', '5411699'), - (772, 1482, 'not_attending', '2022-06-24 19:53:42', '2025-12-17 19:47:19', 'dOWbaDnd', '5412550'), - (772, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dOWbaDnd', '5415046'), - (772, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dOWbaDnd', '5422086'), - (772, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dOWbaDnd', '5422406'), - (772, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dOWbaDnd', '5424565'), - (772, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dOWbaDnd', '5426882'), - (772, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dOWbaDnd', '5427083'), - (772, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'dOWbaDnd', '5441125'), - (772, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dOWbaDnd', '5441126'), - (772, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dOWbaDnd', '5446643'), - (772, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dOWbaDnd', '5453325'), - (772, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dOWbaDnd', '5454516'), - (772, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dOWbaDnd', '5454605'), - (772, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dOWbaDnd', '5455037'), - (772, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dOWbaDnd', '5471073'), - (772, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dOWbaDnd', '5474663'), - (772, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dOWbaDnd', '5482022'), - (772, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dOWbaDnd', '5482793'), - (772, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOWbaDnd', '6045684'), - (773, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AXjwyzQd', '5630960'), - (773, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AXjwyzQd', '5630961'), - (773, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AXjwyzQd', '5630962'), - (773, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AXjwyzQd', '5630966'), - (773, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AXjwyzQd', '5630967'), - (773, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AXjwyzQd', '5630968'), - (773, 1730, 'maybe', '2022-10-08 02:13:24', '2025-12-17 19:47:12', 'AXjwyzQd', '5634666'), - (773, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AXjwyzQd', '5638765'), - (773, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AXjwyzQd', '5640097'), - (773, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'AXjwyzQd', '5640843'), - (773, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AXjwyzQd', '5641521'), - (773, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AXjwyzQd', '5642818'), - (773, 1745, 'attending', '2022-10-13 18:21:47', '2025-12-17 19:47:12', 'AXjwyzQd', '5643088'), - (773, 1750, 'attending', '2022-11-04 14:53:57', '2025-12-17 19:47:15', 'AXjwyzQd', '5652365'), - (773, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AXjwyzQd', '5652395'), - (773, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AXjwyzQd', '5670445'), - (773, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AXjwyzQd', '5671637'), - (773, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AXjwyzQd', '5672329'), - (773, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AXjwyzQd', '5674057'), - (773, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AXjwyzQd', '5674060'), - (773, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AXjwyzQd', '5677461'), - (773, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AXjwyzQd', '5698046'), - (773, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AXjwyzQd', '5699760'), - (773, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AXjwyzQd', '5741601'), - (773, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AXjwyzQd', '5763458'), - (773, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AXjwyzQd', '5774172'), - (773, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AXjwyzQd', '5818247'), - (773, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AXjwyzQd', '5819471'), - (773, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AXjwyzQd', '5827739'), - (773, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AXjwyzQd', '5844306'), - (773, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AXjwyzQd', '5850159'), - (773, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AXjwyzQd', '5858999'), - (773, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AXjwyzQd', '5871984'), - (773, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AXjwyzQd', '5876354'), - (773, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AXjwyzQd', '5880939'), - (773, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AXjwyzQd', '5880940'), - (773, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AXjwyzQd', '5880942'), - (773, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AXjwyzQd', '5880943'), - (773, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AXjwyzQd', '5887890'), - (773, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AXjwyzQd', '5888598'), - (773, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AXjwyzQd', '5893260'), - (773, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AXjwyzQd', '5899826'), - (773, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AXjwyzQd', '5900199'), - (773, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AXjwyzQd', '5900200'), - (773, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AXjwyzQd', '5900202'), - (773, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AXjwyzQd', '5900203'), - (773, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AXjwyzQd', '5901108'), - (773, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AXjwyzQd', '5901126'), - (773, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AXjwyzQd', '5909655'), - (773, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AXjwyzQd', '5910522'), - (773, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AXjwyzQd', '5910526'), - (773, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AXjwyzQd', '5910528'), - (773, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AXjwyzQd', '5916219'), - (773, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AXjwyzQd', '5936234'), - (773, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AXjwyzQd', '5958351'), - (773, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AXjwyzQd', '5959751'), - (773, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AXjwyzQd', '5959755'), - (773, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AXjwyzQd', '5960055'), - (773, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AXjwyzQd', '5961684'), - (773, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'AXjwyzQd', '5962132'), - (773, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AXjwyzQd', '5962133'), - (773, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AXjwyzQd', '5962134'), - (773, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AXjwyzQd', '5962317'), - (773, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AXjwyzQd', '5962318'), - (773, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AXjwyzQd', '5965933'), - (773, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AXjwyzQd', '5967014'), - (773, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AXjwyzQd', '5972815'), - (773, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AXjwyzQd', '5974016'), - (773, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AXjwyzQd', '5981515'), - (773, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AXjwyzQd', '5993516'), - (773, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AXjwyzQd', '5998939'), - (773, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AXjwyzQd', '6028191'), - (773, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AXjwyzQd', '6040066'), - (773, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AXjwyzQd', '6042717'), - (773, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AXjwyzQd', '6044838'), - (773, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AXjwyzQd', '6044839'), - (773, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXjwyzQd', '6045684'), - (773, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AXjwyzQd', '6050104'), - (773, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AXjwyzQd', '6053195'), - (773, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AXjwyzQd', '6053198'), - (773, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AXjwyzQd', '6056085'), - (773, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AXjwyzQd', '6056916'), - (773, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AXjwyzQd', '6059290'), - (773, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AXjwyzQd', '6060328'), - (773, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AXjwyzQd', '6061037'), - (773, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AXjwyzQd', '6061039'), - (773, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AXjwyzQd', '6067245'), - (773, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AXjwyzQd', '6068094'), - (773, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AXjwyzQd', '6068252'), - (773, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AXjwyzQd', '6068253'), - (773, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AXjwyzQd', '6068254'), - (773, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'AXjwyzQd', '6068280'), - (773, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AXjwyzQd', '6069093'), - (773, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'AXjwyzQd', '6072528'), - (773, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AXjwyzQd', '6079840'), - (773, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AXjwyzQd', '6083398'), - (773, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'AXjwyzQd', '6093504'), - (773, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AXjwyzQd', '6097414'), - (773, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AXjwyzQd', '6097442'), - (773, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AXjwyzQd', '6097684'), - (773, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AXjwyzQd', '6098762'), - (773, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AXjwyzQd', '6101362'), - (773, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AXjwyzQd', '6103752'), - (773, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AXjwyzQd', '6107314'), - (774, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'ArgX9Rn4', '4420747'), - (774, 997, 'attending', '2021-10-23 21:20:24', '2025-12-17 19:47:35', 'ArgX9Rn4', '4420748'), - (774, 998, 'not_attending', '2021-10-30 21:40:41', '2025-12-17 19:47:36', 'ArgX9Rn4', '4420749'), - (774, 1008, 'attending', '2021-10-16 14:28:23', '2025-12-17 19:47:35', 'ArgX9Rn4', '4438810'), - (774, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ArgX9Rn4', '4568602'), - (774, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ArgX9Rn4', '4572153'), - (774, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'ArgX9Rn4', '4585962'), - (774, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ArgX9Rn4', '4596356'), - (774, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ArgX9Rn4', '4598860'), - (774, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ArgX9Rn4', '4598861'), - (774, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ArgX9Rn4', '4602797'), - (774, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ArgX9Rn4', '4637896'), - (774, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ArgX9Rn4', '4642994'), - (774, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ArgX9Rn4', '4642995'), - (774, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ArgX9Rn4', '4642996'), - (774, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ArgX9Rn4', '4642997'), - (774, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ArgX9Rn4', '4645687'), - (774, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ArgX9Rn4', '4645698'), - (774, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ArgX9Rn4', '4645704'), - (774, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ArgX9Rn4', '4645705'), - (774, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ArgX9Rn4', '4668385'), - (774, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ArgX9Rn4', '4694407'), - (774, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'ArgX9Rn4', '4706262'), - (774, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ArgX9Rn4', '4736497'), - (774, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ArgX9Rn4', '4736499'), - (774, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ArgX9Rn4', '4736500'), - (774, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ArgX9Rn4', '4736503'), - (774, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ArgX9Rn4', '4736504'), - (774, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ArgX9Rn4', '4746789'), - (774, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ArgX9Rn4', '4753929'), - (774, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ArgX9Rn4', '5038850'), - (774, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ArgX9Rn4', '5045826'), - (774, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ArgX9Rn4', '5132533'), - (774, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ArgX9Rn4', '5186582'), - (774, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ArgX9Rn4', '5186583'), - (774, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ArgX9Rn4', '5186585'), - (774, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ArgX9Rn4', '5190437'), - (774, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ArgX9Rn4', '5215989'), - (774, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArgX9Rn4', '6045684'), - (775, 646, 'maybe', '2021-05-13 19:07:57', '2025-12-17 19:47:46', '54kjyNlA', '3539921'), - (775, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '54kjyNlA', '3539922'), - (775, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '54kjyNlA', '3539923'), - (775, 802, 'not_attending', '2021-05-12 22:58:29', '2025-12-17 19:47:46', '54kjyNlA', '3803310'), - (775, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '54kjyNlA', '3974109'), - (775, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '54kjyNlA', '3975311'), - (775, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '54kjyNlA', '3975312'), - (775, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54kjyNlA', '3994992'), - (775, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '54kjyNlA', '4014338'), - (775, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '54kjyNlA', '4021848'), - (775, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '54kjyNlA', '4136744'), - (775, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '54kjyNlA', '4136937'), - (775, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '54kjyNlA', '4136938'), - (775, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '54kjyNlA', '4136947'), - (775, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54kjyNlA', '4210314'), - (775, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54kjyNlA', '4225444'), - (775, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54kjyNlA', '4239259'), - (775, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '54kjyNlA', '4240316'), - (775, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '54kjyNlA', '4250163'), - (775, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54kjyNlA', '4275957'), - (775, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54kjyNlA', '4277819'), - (775, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54kjyNlA', '4301723'), - (775, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kjyNlA', '6045684'), - (776, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dODVOKym', '4356801'), - (776, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'dODVOKym', '4420738'), - (776, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'dODVOKym', '4420739'), - (776, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dODVOKym', '4420741'), - (776, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dODVOKym', '4420744'), - (776, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dODVOKym', '4420747'), - (776, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODVOKym', '4461883'), - (776, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODVOKym', '4508342'), - (776, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODVOKym', '4568602'), - (776, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dODVOKym', '4572153'), - (776, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dODVOKym', '4585962'), - (776, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dODVOKym', '4596356'), - (776, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dODVOKym', '4598860'), - (776, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dODVOKym', '4598861'), - (776, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dODVOKym', '4602797'), - (776, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dODVOKym', '4637896'), - (776, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dODVOKym', '4642994'), - (776, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dODVOKym', '4642995'), - (776, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dODVOKym', '4642996'), - (776, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dODVOKym', '4642997'), - (776, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dODVOKym', '4645687'), - (776, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dODVOKym', '4645698'), - (776, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dODVOKym', '4645704'), - (776, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dODVOKym', '4645705'), - (776, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dODVOKym', '4668385'), - (776, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODVOKym', '6045684'), - (777, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'AnaKYpkm', '6632757'), - (777, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AnaKYpkm', '6644187'), - (777, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AnaKYpkm', '6648951'), - (777, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AnaKYpkm', '6648952'), - (777, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'AnaKYpkm', '6651141'), - (777, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AnaKYpkm', '6655401'), - (777, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AnaKYpkm', '6661585'), - (777, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AnaKYpkm', '6661588'), - (777, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AnaKYpkm', '6661589'), - (777, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AnaKYpkm', '6699906'), - (777, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'AnaKYpkm', '6699913'), - (777, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AnaKYpkm', '6701109'), - (777, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AnaKYpkm', '6705219'), - (777, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AnaKYpkm', '6710153'), - (777, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AnaKYpkm', '6711552'), - (777, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AnaKYpkm', '6711553'), - (777, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AnaKYpkm', '6722688'), - (777, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AnaKYpkm', '6730620'), - (777, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AnaKYpkm', '6730642'), - (777, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AnaKYpkm', '6740364'), - (777, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AnaKYpkm', '6743829'), - (777, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AnaKYpkm', '7030380'), - (777, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AnaKYpkm', '7033677'), - (777, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'AnaKYpkm', '7035415'), - (777, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AnaKYpkm', '7044715'), - (777, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AnaKYpkm', '7050318'), - (777, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AnaKYpkm', '7050319'), - (777, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AnaKYpkm', '7050322'), - (777, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AnaKYpkm', '7057804'), - (777, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AnaKYpkm', '7072824'), - (777, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AnaKYpkm', '7074348'), - (777, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AnaKYpkm', '7089267'), - (777, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AnaKYpkm', '7098747'), - (777, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AnaKYpkm', '7113468'), - (777, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AnaKYpkm', '7114856'), - (777, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AnaKYpkm', '7114951'), - (777, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AnaKYpkm', '7114955'), - (777, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AnaKYpkm', '7114956'), - (777, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AnaKYpkm', '7153615'), - (777, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AnaKYpkm', '7159484'), - (777, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AnaKYpkm', '7178446'), - (778, 258, 'not_attending', '2021-06-01 01:29:28', '2025-12-17 19:47:47', '54kpKPNd', '3149489'), - (778, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '54kpKPNd', '3149491'), - (778, 393, 'attending', '2021-06-22 00:33:46', '2025-12-17 19:47:38', '54kpKPNd', '3236448'), - (778, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '54kpKPNd', '3236450'), - (778, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '54kpKPNd', '3974109'), - (778, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '54kpKPNd', '3975311'), - (778, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '54kpKPNd', '3975312'), - (778, 829, 'attending', '2021-05-31 15:46:51', '2025-12-17 19:47:47', '54kpKPNd', '3976202'), - (778, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54kpKPNd', '3994992'), - (778, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '54kpKPNd', '4014338'), - (778, 848, 'not_attending', '2021-08-22 23:17:00', '2025-12-17 19:47:40', '54kpKPNd', '4015720'), - (778, 867, 'attending', '2021-06-26 06:38:26', '2025-12-17 19:47:38', '54kpKPNd', '4021848'), - (778, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '54kpKPNd', '4136744'), - (778, 870, 'attending', '2021-06-30 10:51:48', '2025-12-17 19:47:39', '54kpKPNd', '4136937'), - (778, 871, 'attending', '2021-07-05 18:56:09', '2025-12-17 19:47:39', '54kpKPNd', '4136938'), - (778, 872, 'attending', '2021-07-21 22:03:03', '2025-12-17 19:47:40', '54kpKPNd', '4136947'), - (778, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54kpKPNd', '4210314'), - (778, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54kpKPNd', '4225444'), - (778, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54kpKPNd', '4239259'), - (778, 900, 'attending', '2021-07-24 22:40:38', '2025-12-17 19:47:40', '54kpKPNd', '4240316'), - (778, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '54kpKPNd', '4240317'), - (778, 902, 'attending', '2021-08-06 15:47:31', '2025-12-17 19:47:41', '54kpKPNd', '4240318'), - (778, 903, 'attending', '2021-08-14 21:21:17', '2025-12-17 19:47:42', '54kpKPNd', '4240320'), - (778, 905, 'attending', '2021-07-05 18:55:52', '2025-12-17 19:47:39', '54kpKPNd', '4250163'), - (778, 911, 'attending', '2021-07-13 21:51:40', '2025-12-17 19:47:39', '54kpKPNd', '4264465'), - (778, 918, 'attending', '2021-07-12 23:07:42', '2025-12-17 19:47:39', '54kpKPNd', '4274486'), - (778, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54kpKPNd', '4275957'), - (778, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54kpKPNd', '4277819'), - (778, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54kpKPNd', '4301723'), - (778, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '54kpKPNd', '4302093'), - (778, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '54kpKPNd', '4304151'), - (778, 965, 'not_attending', '2021-08-19 21:51:35', '2025-12-17 19:47:42', '54kpKPNd', '4353703'), - (778, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54kpKPNd', '4356801'), - (778, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '54kpKPNd', '4366186'), - (778, 974, 'attending', '2021-08-22 23:17:09', '2025-12-17 19:47:42', '54kpKPNd', '4366187'), - (778, 981, 'attending', '2021-08-22 21:43:36', '2025-12-17 19:47:42', '54kpKPNd', '4387305'), - (778, 987, 'maybe', '2021-09-29 19:10:11', '2025-12-17 19:47:43', '54kpKPNd', '4402634'), - (778, 988, 'not_attending', '2021-08-27 21:26:46', '2025-12-17 19:47:42', '54kpKPNd', '4402823'), - (778, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '54kpKPNd', '4420735'), - (778, 991, 'attending', '2021-09-11 22:35:19', '2025-12-17 19:47:43', '54kpKPNd', '4420738'), - (778, 992, 'maybe', '2021-09-18 21:37:31', '2025-12-17 19:47:34', '54kpKPNd', '4420739'), - (778, 993, 'attending', '2021-09-25 19:02:21', '2025-12-17 19:47:34', '54kpKPNd', '4420741'), - (778, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '54kpKPNd', '4420744'), - (778, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '54kpKPNd', '4420747'), - (778, 997, 'attending', '2021-10-23 16:41:11', '2025-12-17 19:47:35', '54kpKPNd', '4420748'), - (778, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '54kpKPNd', '4420749'), - (778, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '54kpKPNd', '4461883'), - (778, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '54kpKPNd', '4508342'), - (778, 1074, 'not_attending', '2021-09-29 22:16:09', '2025-12-17 19:47:34', '54kpKPNd', '4528953'), - (778, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '54kpKPNd', '4568602'), - (778, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '54kpKPNd', '4572153'), - (778, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '54kpKPNd', '4585962'), - (778, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '54kpKPNd', '4596356'), - (778, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '54kpKPNd', '4598860'), - (778, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '54kpKPNd', '4598861'), - (778, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '54kpKPNd', '4602797'), - (778, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '54kpKPNd', '4637896'), - (778, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '54kpKPNd', '4642994'), - (778, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '54kpKPNd', '4642995'), - (778, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '54kpKPNd', '4642996'), - (778, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '54kpKPNd', '4642997'), - (778, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '54kpKPNd', '4645687'), - (778, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '54kpKPNd', '4645698'), - (778, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '54kpKPNd', '4645704'), - (778, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '54kpKPNd', '4645705'), - (778, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '54kpKPNd', '4668385'), - (778, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '54kpKPNd', '4694407'), - (778, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '54kpKPNd', '4706262'), - (778, 1174, 'attending', '2022-01-15 19:42:57', '2025-12-17 19:47:31', '54kpKPNd', '4736496'), - (778, 1175, 'attending', '2022-01-22 22:50:10', '2025-12-17 19:47:32', '54kpKPNd', '4736497'), - (778, 1176, 'attending', '2022-02-05 23:45:24', '2025-12-17 19:47:32', '54kpKPNd', '4736498'), - (778, 1177, 'attending', '2022-02-12 22:18:08', '2025-12-17 19:47:32', '54kpKPNd', '4736499'), - (778, 1178, 'attending', '2022-01-27 19:25:46', '2025-12-17 19:47:32', '54kpKPNd', '4736500'), - (778, 1179, 'attending', '2022-02-18 00:11:16', '2025-12-17 19:47:32', '54kpKPNd', '4736501'), - (778, 1180, 'attending', '2022-02-27 00:39:55', '2025-12-17 19:47:33', '54kpKPNd', '4736502'), - (778, 1181, 'attending', '2022-03-02 20:33:54', '2025-12-17 19:47:33', '54kpKPNd', '4736503'), - (778, 1182, 'attending', '2022-03-13 00:11:07', '2025-12-17 19:47:33', '54kpKPNd', '4736504'), - (778, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '54kpKPNd', '4746789'), - (778, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '54kpKPNd', '4753929'), - (778, 1222, 'attending', '2022-02-14 15:03:38', '2025-12-17 19:47:32', '54kpKPNd', '5015628'), - (778, 1223, 'not_attending', '2022-01-30 04:52:48', '2025-12-17 19:47:32', '54kpKPNd', '5015635'), - (778, 1232, 'maybe', '2022-02-09 19:31:45', '2025-12-17 19:47:32', '54kpKPNd', '5038850'), - (778, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '54kpKPNd', '5045826'), - (778, 1238, 'maybe', '2022-02-23 05:42:44', '2025-12-17 19:47:32', '54kpKPNd', '5052236'), - (778, 1239, 'not_attending', '2022-03-03 00:29:12', '2025-12-17 19:47:33', '54kpKPNd', '5052238'), - (778, 1240, 'attending', '2022-03-16 22:29:27', '2025-12-17 19:47:33', '54kpKPNd', '5052239'), - (778, 1241, 'attending', '2022-03-23 22:37:59', '2025-12-17 19:47:25', '54kpKPNd', '5052240'), - (778, 1242, 'attending', '2022-03-30 21:00:43', '2025-12-17 19:47:25', '54kpKPNd', '5052241'), - (778, 1249, 'attending', '2022-03-09 22:44:52', '2025-12-17 19:47:33', '54kpKPNd', '5068530'), - (778, 1254, 'attending', '2022-02-28 21:17:44', '2025-12-17 19:47:33', '54kpKPNd', '5129129'), - (778, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '54kpKPNd', '5132533'), - (778, 1272, 'attending', '2022-03-19 05:41:24', '2025-12-17 19:47:25', '54kpKPNd', '5186582'), - (778, 1273, 'attending', '2022-03-25 23:00:13', '2025-12-17 19:47:25', '54kpKPNd', '5186583'), - (778, 1274, 'attending', '2022-04-02 15:46:37', '2025-12-17 19:47:26', '54kpKPNd', '5186585'), - (778, 1281, 'attending', '2022-04-09 20:53:38', '2025-12-17 19:47:27', '54kpKPNd', '5190437'), - (778, 1284, 'attending', '2022-04-16 21:45:04', '2025-12-17 19:47:27', '54kpKPNd', '5195095'), - (778, 1291, 'attending', '2022-03-25 20:53:26', '2025-12-17 19:47:25', '54kpKPNd', '5200458'), - (778, 1296, 'attending', '2022-03-28 15:08:56', '2025-12-17 19:47:26', '54kpKPNd', '5215985'), - (778, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '54kpKPNd', '5215989'), - (778, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '54kpKPNd', '5223686'), - (778, 1308, 'attending', '2022-04-13 18:43:36', '2025-12-17 19:47:27', '54kpKPNd', '5226703'), - (778, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '54kpKPNd', '5227432'), - (778, 1319, 'attending', '2022-04-24 21:33:31', '2025-12-17 19:47:27', '54kpKPNd', '5238353'), - (778, 1320, 'not_attending', '2022-04-24 21:33:40', '2025-12-17 19:47:27', '54kpKPNd', '5238354'), - (778, 1323, 'not_attending', '2022-04-25 04:11:06', '2025-12-17 19:47:27', '54kpKPNd', '5238357'), - (778, 1326, 'not_attending', '2022-04-25 04:11:00', '2025-12-17 19:47:28', '54kpKPNd', '5238362'), - (778, 1327, 'not_attending', '2022-04-25 04:11:39', '2025-12-17 19:47:27', '54kpKPNd', '5238445'), - (778, 1330, 'attending', '2022-04-18 20:47:04', '2025-12-17 19:47:27', '54kpKPNd', '5242155'), - (778, 1336, 'attending', '2022-04-19 16:05:14', '2025-12-17 19:47:27', '54kpKPNd', '5244915'), - (778, 1340, 'attending', '2022-04-28 22:14:41', '2025-12-17 19:47:27', '54kpKPNd', '5245754'), - (778, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '54kpKPNd', '5247467'), - (778, 1348, 'attending', '2022-04-25 04:12:26', '2025-12-17 19:47:28', '54kpKPNd', '5247605'), - (778, 1356, 'attending', '2022-04-22 01:30:14', '2025-12-17 19:47:27', '54kpKPNd', '5252913'), - (778, 1357, 'attending', '2022-04-25 04:11:33', '2025-12-17 19:47:27', '54kpKPNd', '5256017'), - (778, 1362, 'attending', '2022-04-25 18:19:25', '2025-12-17 19:47:28', '54kpKPNd', '5260800'), - (778, 1371, 'attending', '2022-04-27 22:24:32', '2025-12-17 19:47:27', '54kpKPNd', '5263784'), - (778, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '54kpKPNd', '5269930'), - (778, 1377, 'not_attending', '2022-05-11 14:47:56', '2025-12-17 19:47:28', '54kpKPNd', '5271447'), - (778, 1378, 'attending', '2022-05-11 14:47:41', '2025-12-17 19:47:28', '54kpKPNd', '5271448'), - (778, 1379, 'attending', '2022-05-21 19:52:19', '2025-12-17 19:47:29', '54kpKPNd', '5271449'), - (778, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '54kpKPNd', '5276469'), - (778, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', '54kpKPNd', '5277078'), - (778, 1385, 'attending', '2022-05-11 14:47:36', '2025-12-17 19:47:28', '54kpKPNd', '5277822'), - (778, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '54kpKPNd', '5278159'), - (778, 1407, 'attending', '2022-06-03 22:17:50', '2025-12-17 19:47:30', '54kpKPNd', '5363695'), - (778, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '54kpKPNd', '5365960'), - (778, 1415, 'attending', '2022-06-03 22:17:46', '2025-12-17 19:47:30', '54kpKPNd', '5368973'), - (778, 1422, 'attending', '2022-05-25 18:32:26', '2025-12-17 19:47:30', '54kpKPNd', '5375603'), - (778, 1427, 'attending', '2022-05-25 18:31:01', '2025-12-17 19:47:30', '54kpKPNd', '5376074'), - (778, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '54kpKPNd', '5378247'), - (778, 1431, 'attending', '2022-06-11 20:17:53', '2025-12-17 19:47:30', '54kpKPNd', '5389605'), - (778, 1438, 'attending', '2022-06-01 20:56:44', '2025-12-17 19:47:30', '54kpKPNd', '5395032'), - (778, 1442, 'attending', '2022-06-11 18:50:26', '2025-12-17 19:47:17', '54kpKPNd', '5397265'), - (778, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '54kpKPNd', '5403967'), - (778, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '54kpKPNd', '5404786'), - (778, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '54kpKPNd', '5405203'), - (778, 1476, 'maybe', '2022-06-19 02:13:12', '2025-12-17 19:47:17', '54kpKPNd', '5408130'), - (778, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '54kpKPNd', '5412550'), - (778, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '54kpKPNd', '5415046'), - (778, 1824, 'maybe', '2022-12-21 23:22:23', '2025-12-17 19:47:04', '54kpKPNd', '5774172'), - (778, 1826, 'attending', '2022-12-20 00:33:47', '2025-12-17 19:47:04', '54kpKPNd', '5776768'), - (778, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '54kpKPNd', '5819471'), - (778, 1842, 'attending', '2022-12-23 00:24:31', '2025-12-17 19:47:04', '54kpKPNd', '5827739'), - (778, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '54kpKPNd', '5850159'), - (778, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '54kpKPNd', '5858999'), - (778, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '54kpKPNd', '5871984'), - (778, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '54kpKPNd', '5876354'), - (778, 1865, 'attending', '2023-01-28 20:36:06', '2025-12-17 19:47:06', '54kpKPNd', '5879676'), - (778, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '54kpKPNd', '5880939'), - (778, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '54kpKPNd', '5880940'), - (778, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '54kpKPNd', '5880942'), - (778, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '54kpKPNd', '5880943'), - (778, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '54kpKPNd', '5887890'), - (778, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '54kpKPNd', '5888598'), - (778, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '54kpKPNd', '5893260'), - (778, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '54kpKPNd', '5899826'), - (778, 1886, 'attending', '2023-03-07 23:46:35', '2025-12-17 19:47:09', '54kpKPNd', '5899930'), - (778, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '54kpKPNd', '5900199'), - (778, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '54kpKPNd', '5900200'), - (778, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '54kpKPNd', '5900202'), - (778, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '54kpKPNd', '5900203'), - (778, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '54kpKPNd', '5901108'), - (778, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '54kpKPNd', '5901126'), - (778, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '54kpKPNd', '5909655'), - (778, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '54kpKPNd', '5910522'), - (778, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '54kpKPNd', '5910526'), - (778, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '54kpKPNd', '5910528'), - (778, 1918, 'not_attending', '2023-02-09 18:38:02', '2025-12-17 19:47:07', '54kpKPNd', '5911180'), - (778, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '54kpKPNd', '5916219'), - (778, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '54kpKPNd', '5936234'), - (778, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '54kpKPNd', '5958351'), - (778, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '54kpKPNd', '5959751'), - (778, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '54kpKPNd', '5959755'), - (778, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '54kpKPNd', '5960055'), - (778, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '54kpKPNd', '5961684'), - (778, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '54kpKPNd', '5962132'), - (778, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '54kpKPNd', '5962133'), - (778, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '54kpKPNd', '5962134'), - (778, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '54kpKPNd', '5962317'), - (778, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '54kpKPNd', '5962318'), - (778, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '54kpKPNd', '5965933'), - (778, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '54kpKPNd', '5967014'), - (778, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '54kpKPNd', '5972815'), - (778, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '54kpKPNd', '5974016'), - (778, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '54kpKPNd', '5975052'), - (778, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '54kpKPNd', '5975054'), - (778, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '54kpKPNd', '5981515'), - (778, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '54kpKPNd', '5993516'), - (778, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '54kpKPNd', '5998939'), - (778, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '54kpKPNd', '6028191'), - (778, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '54kpKPNd', '6040066'), - (778, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '54kpKPNd', '6042717'), - (778, 1986, 'attending', '2023-04-03 01:49:35', '2025-12-17 19:46:58', '54kpKPNd', '6044838'), - (778, 1987, 'attending', '2023-04-03 01:49:48', '2025-12-17 19:47:00', '54kpKPNd', '6044839'), - (778, 1988, 'attending', '2023-04-03 01:49:53', '2025-12-17 19:47:01', '54kpKPNd', '6044840'), - (778, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kpKPNd', '6045684'), - (778, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '54kpKPNd', '6050104'), - (778, 1996, 'attending', '2023-04-03 01:49:26', '2025-12-17 19:46:58', '54kpKPNd', '6050667'), - (778, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '54kpKPNd', '6053195'), - (778, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '54kpKPNd', '6053198'), - (778, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '54kpKPNd', '6056085'), - (778, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '54kpKPNd', '6056916'), - (778, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '54kpKPNd', '6059290'), - (778, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '54kpKPNd', '6060328'), - (778, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '54kpKPNd', '6061037'), - (778, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '54kpKPNd', '6061039'), - (778, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '54kpKPNd', '6067245'), - (778, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '54kpKPNd', '6068094'), - (778, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '54kpKPNd', '6068252'), - (778, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '54kpKPNd', '6068253'), - (778, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '54kpKPNd', '6068254'), - (778, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '54kpKPNd', '6068280'), - (778, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '54kpKPNd', '6069093'), - (778, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '54kpKPNd', '6072528'), - (778, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '54kpKPNd', '6079840'), - (778, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '54kpKPNd', '6083398'), - (778, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '54kpKPNd', '6093504'), - (778, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '54kpKPNd', '6097414'), - (778, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '54kpKPNd', '6097442'), - (778, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '54kpKPNd', '6097684'), - (778, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '54kpKPNd', '6098762'), - (778, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '54kpKPNd', '6101361'), - (778, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '54kpKPNd', '6101362'), - (778, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '54kpKPNd', '6103752'), - (778, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '54kpKPNd', '6107314'), - (778, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '54kpKPNd', '6120034'), - (778, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '54kpKPNd', '6136733'), - (778, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '54kpKPNd', '6137989'), - (778, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '54kpKPNd', '6150864'), - (778, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '54kpKPNd', '6155491'), - (778, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '54kpKPNd', '6164417'), - (778, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '54kpKPNd', '6166388'), - (778, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '54kpKPNd', '6176439'), - (778, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '54kpKPNd', '6182410'), - (778, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '54kpKPNd', '6185812'), - (778, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '54kpKPNd', '6187651'), - (778, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '54kpKPNd', '6187963'), - (778, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '54kpKPNd', '6187964'), - (778, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '54kpKPNd', '6187966'), - (778, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '54kpKPNd', '6187967'), - (778, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '54kpKPNd', '6187969'), - (778, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '54kpKPNd', '6334878'), - (778, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '54kpKPNd', '6337236'), - (778, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '54kpKPNd', '6337970'), - (778, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '54kpKPNd', '6338308'), - (778, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '54kpKPNd', '6341710'), - (778, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '54kpKPNd', '6342044'), - (778, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '54kpKPNd', '6342298'), - (778, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '54kpKPNd', '6343294'), - (778, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '54kpKPNd', '6347034'), - (778, 2177, 'attending', '2023-08-12 20:25:32', '2025-12-17 19:46:55', '54kpKPNd', '6347053'), - (778, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '54kpKPNd', '6347056'), - (778, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '54kpKPNd', '6353830'), - (778, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '54kpKPNd', '6353831'), - (778, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '54kpKPNd', '6357867'), - (778, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '54kpKPNd', '6358652'), - (778, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '54kpKPNd', '6358668'), - (778, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '54kpKPNd', '6358669'), - (778, 2204, 'attending', '2023-08-19 19:21:13', '2025-12-17 19:46:55', '54kpKPNd', '6361542'), - (778, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '54kpKPNd', '6361709'), - (778, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '54kpKPNd', '6361710'), - (778, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '54kpKPNd', '6361711'), - (778, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '54kpKPNd', '6361712'), - (778, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '54kpKPNd', '6361713'), - (778, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '54kpKPNd', '6382573'), - (778, 2239, 'attending', '2023-09-02 20:04:54', '2025-12-17 19:46:56', '54kpKPNd', '6387592'), - (778, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '54kpKPNd', '6388604'), - (778, 2242, 'attending', '2023-09-23 21:57:04', '2025-12-17 19:46:45', '54kpKPNd', '6388606'), - (778, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '54kpKPNd', '6394629'), - (778, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '54kpKPNd', '6394631'), - (778, 2253, 'attending', '2023-09-30 21:06:10', '2025-12-17 19:46:45', '54kpKPNd', '6401811'), - (778, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '54kpKPNd', '6440863'), - (778, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '54kpKPNd', '6445440'), - (778, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '54kpKPNd', '6453951'), - (778, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '54kpKPNd', '6461696'), - (778, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '54kpKPNd', '6462129'), - (778, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '54kpKPNd', '6463218'), - (778, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '54kpKPNd', '6472181'), - (778, 2303, 'attending', '2023-10-28 20:12:28', '2025-12-17 19:46:47', '54kpKPNd', '6482691'), - (778, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '54kpKPNd', '6482693'), - (778, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '54kpKPNd', '6484200'), - (778, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '54kpKPNd', '6484680'), - (778, 2310, 'attending', '2023-11-11 23:12:25', '2025-12-17 19:46:47', '54kpKPNd', '6487709'), - (778, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '54kpKPNd', '6507741'), - (778, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '54kpKPNd', '6514659'), - (778, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '54kpKPNd', '6514660'), - (778, 2324, 'attending', '2023-12-09 19:55:03', '2025-12-17 19:46:49', '54kpKPNd', '6514662'), - (778, 2332, 'not_attending', '2023-11-03 20:58:05', '2025-12-17 19:46:47', '54kpKPNd', '6518655'), - (778, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '54kpKPNd', '6519103'), - (778, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '54kpKPNd', '6535681'), - (778, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '54kpKPNd', '6584747'), - (778, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '54kpKPNd', '6587097'), - (778, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '54kpKPNd', '6609022'), - (778, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '54kpKPNd', '6632757'), - (778, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '54kpKPNd', '6644187'), - (778, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '54kpKPNd', '6648951'), - (778, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '54kpKPNd', '6648952'), - (778, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '54kpKPNd', '6655401'), - (778, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '54kpKPNd', '6661585'), - (778, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '54kpKPNd', '6661588'), - (778, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '54kpKPNd', '6661589'), - (778, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '54kpKPNd', '6699906'), - (778, 2408, 'attending', '2024-01-20 02:28:08', '2025-12-17 19:46:40', '54kpKPNd', '6699907'), - (778, 2410, 'attending', '2024-02-11 00:18:10', '2025-12-17 19:46:41', '54kpKPNd', '6699911'), - (778, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '54kpKPNd', '6699913'), - (778, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '54kpKPNd', '6701109'), - (778, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '54kpKPNd', '6704561'), - (778, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '54kpKPNd', '6705219'), - (778, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '54kpKPNd', '6708410'), - (778, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '54kpKPNd', '6710153'), - (778, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '54kpKPNd', '6711552'), - (778, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '54kpKPNd', '6711553'), - (778, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '54kpKPNd', '6722688'), - (778, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '54kpKPNd', '6730620'), - (778, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '54kpKPNd', '6730642'), - (778, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '54kpKPNd', '6740364'), - (778, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '54kpKPNd', '6743829'), - (778, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '54kpKPNd', '7030380'), - (778, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '54kpKPNd', '7033677'), - (778, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '54kpKPNd', '7035415'), - (778, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '54kpKPNd', '7044715'), - (778, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '54kpKPNd', '7050318'), - (778, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '54kpKPNd', '7050319'), - (778, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '54kpKPNd', '7050322'), - (778, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '54kpKPNd', '7057804'), - (778, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '54kpKPNd', '7072824'), - (778, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '54kpKPNd', '7074348'), - (778, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '54kpKPNd', '7074364'), - (778, 2525, 'not_attending', '2024-06-13 02:22:47', '2025-12-17 19:46:28', '54kpKPNd', '7074365'), - (778, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '54kpKPNd', '7089267'), - (778, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '54kpKPNd', '7098747'), - (778, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '54kpKPNd', '7113468'), - (778, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '54kpKPNd', '7114856'), - (778, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '54kpKPNd', '7114951'), - (778, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '54kpKPNd', '7114955'), - (778, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '54kpKPNd', '7114956'), - (778, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '54kpKPNd', '7114957'), - (778, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '54kpKPNd', '7153615'), - (778, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '54kpKPNd', '7159484'), - (778, 2582, 'attending', '2024-04-17 05:43:46', '2025-12-17 19:46:34', '54kpKPNd', '7169765'), - (778, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '54kpKPNd', '7178446'), - (778, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '54kpKPNd', '7220467'), - (778, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '54kpKPNd', '7240354'), - (778, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '54kpKPNd', '7251633'), - (778, 2628, 'attending', '2024-06-01 15:57:43', '2025-12-17 19:46:36', '54kpKPNd', '7264725'), - (778, 2629, 'attending', '2024-06-08 20:00:33', '2025-12-17 19:46:28', '54kpKPNd', '7264726'), - (778, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '54kpKPNd', '7302674'), - (778, 2667, 'attending', '2024-06-05 22:46:32', '2025-12-17 19:46:36', '54kpKPNd', '7307776'), - (778, 2678, 'attending', '2024-06-15 20:10:00', '2025-12-17 19:46:28', '54kpKPNd', '7319489'), - (778, 2687, 'maybe', '2024-06-12 22:09:21', '2025-12-17 19:46:28', '54kpKPNd', '7324019'), - (778, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '54kpKPNd', '7324073'), - (778, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '54kpKPNd', '7324074'), - (778, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '54kpKPNd', '7324075'), - (778, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '54kpKPNd', '7324078'), - (778, 2696, 'attending', '2024-08-24 22:14:42', '2025-12-17 19:46:32', '54kpKPNd', '7324081'), - (778, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '54kpKPNd', '7324082'), - (778, 2703, 'maybe', '2024-06-13 02:23:17', '2025-12-17 19:46:28', '54kpKPNd', '7324873'), - (778, 2713, 'attending', '2024-06-16 18:53:18', '2025-12-17 19:46:28', '54kpKPNd', '7326593'), - (778, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '54kpKPNd', '7331457'), - (778, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '54kpKPNd', '7363643'), - (778, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '54kpKPNd', '7368606'), - (778, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '54kpKPNd', '7397462'), - (778, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '54kpKPNd', '7424275'), - (778, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '54kpKPNd', '7424276'), - (778, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '54kpKPNd', '7432751'), - (778, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '54kpKPNd', '7432752'), - (778, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '54kpKPNd', '7432753'), - (778, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '54kpKPNd', '7432754'), - (778, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '54kpKPNd', '7432755'), - (778, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '54kpKPNd', '7432756'), - (778, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '54kpKPNd', '7432758'), - (778, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '54kpKPNd', '7432759'), - (778, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '54kpKPNd', '7433834'), - (778, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '54kpKPNd', '7470197'), - (778, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '54kpKPNd', '7685613'), - (778, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '54kpKPNd', '7688194'), - (778, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '54kpKPNd', '7688196'), - (778, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '54kpKPNd', '7688289'), - (778, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '54kpKPNd', '7692763'), - (778, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '54kpKPNd', '7697552'), - (778, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '54kpKPNd', '7699878'), - (778, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '54kpKPNd', '7704043'), - (778, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '54kpKPNd', '7712467'), - (778, 2925, 'attending', '2024-12-15 00:07:05', '2025-12-17 19:46:21', '54kpKPNd', '7713584'), - (778, 2926, 'attending', '2024-12-03 04:55:51', '2025-12-17 19:46:21', '54kpKPNd', '7713585'), - (778, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '54kpKPNd', '7713586'), - (778, 2954, 'attending', '2024-12-14 22:16:27', '2025-12-17 19:46:21', '54kpKPNd', '7734260'), - (778, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '54kpKPNd', '7738518'), - (778, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', '54kpKPNd', '7750632'), - (778, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '54kpKPNd', '7750636'), - (778, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '54kpKPNd', '7796540'), - (778, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '54kpKPNd', '7796541'), - (778, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '54kpKPNd', '7796542'), - (778, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '54kpKPNd', '7825913'), - (778, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', '54kpKPNd', '7825920'), - (778, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '54kpKPNd', '7826209'), - (778, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '54kpKPNd', '7834742'), - (778, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '54kpKPNd', '7842108'), - (778, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '54kpKPNd', '7842902'), - (778, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '54kpKPNd', '7842903'), - (778, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '54kpKPNd', '7842904'), - (778, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '54kpKPNd', '7842905'), - (778, 3001, 'attending', '2025-02-21 23:48:06', '2025-12-17 19:46:24', '54kpKPNd', '7854184'), - (778, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '54kpKPNd', '7855719'), - (778, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '54kpKPNd', '7860683'), - (778, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '54kpKPNd', '7860684'), - (778, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '54kpKPNd', '7866095'), - (778, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '54kpKPNd', '7869170'), - (778, 3014, 'attending', '2025-04-05 13:42:25', '2025-12-17 19:46:20', '54kpKPNd', '7869185'), - (778, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '54kpKPNd', '7869188'), - (778, 3018, 'attending', '2025-04-12 15:04:17', '2025-12-17 19:46:20', '54kpKPNd', '7869189'), - (778, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '54kpKPNd', '7869201'), - (778, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '54kpKPNd', '7877465'), - (778, 3053, 'not_attending', '2025-03-17 00:15:05', '2025-12-17 19:46:19', '54kpKPNd', '7884030'), - (778, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '54kpKPNd', '7888250'), - (778, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '54kpKPNd', '7904777'), - (778, 3094, 'attending', '2025-05-10 22:29:47', '2025-12-17 19:46:21', '54kpKPNd', '8342292'), - (778, 3095, 'attending', '2025-05-03 16:36:20', '2025-12-17 19:46:20', '54kpKPNd', '8342293'), - (778, 3099, 'attending', '2025-04-21 17:07:53', '2025-12-17 19:46:20', '54kpKPNd', '8343522'), - (778, 3102, 'attending', '2025-04-29 19:47:14', '2025-12-17 19:46:20', '54kpKPNd', '8346008'), - (778, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '54kpKPNd', '8349164'), - (778, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '54kpKPNd', '8349545'), - (778, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '54kpKPNd', '8353584'), - (778, 3115, 'attending', '2025-05-03 04:16:14', '2025-12-17 19:46:20', '54kpKPNd', '8357635'), - (778, 3126, 'maybe', '2025-05-14 17:02:17', '2025-12-17 19:46:21', '54kpKPNd', '8365614'), - (778, 3130, 'maybe', '2025-05-27 23:40:03', '2025-12-17 19:46:21', '54kpKPNd', '8367403'), - (778, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '54kpKPNd', '8368028'), - (778, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '54kpKPNd', '8368029'), - (778, 3133, 'attending', '2025-05-31 15:42:07', '2025-12-17 19:46:14', '54kpKPNd', '8368030'), - (778, 3141, 'attending', '2025-05-23 15:12:23', '2025-12-17 19:46:21', '54kpKPNd', '8383440'), - (778, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '54kpKPNd', '8388462'), - (778, 3152, 'attending', '2025-06-05 02:08:38', '2025-12-17 19:46:14', '54kpKPNd', '8393582'), - (778, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '54kpKPNd', '8400273'), - (778, 3154, 'attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '54kpKPNd', '8400274'), - (778, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '54kpKPNd', '8400275'), - (778, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '54kpKPNd', '8400276'), - (778, 3159, 'attending', '2025-06-04 04:33:31', '2025-12-17 19:46:15', '54kpKPNd', '8401410'), - (778, 3163, 'not_attending', '2025-06-08 21:32:46', '2025-12-17 19:46:15', '54kpKPNd', '8402899'), - (778, 3165, 'attending', '2025-06-07 22:02:09', '2025-12-17 19:46:14', '54kpKPNd', '8404220'), - (778, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '54kpKPNd', '8404977'), - (778, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '54kpKPNd', '8430783'), - (778, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '54kpKPNd', '8430784'), - (778, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '54kpKPNd', '8430799'), - (778, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '54kpKPNd', '8430800'), - (778, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '54kpKPNd', '8430801'), - (778, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '54kpKPNd', '8438709'), - (778, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '54kpKPNd', '8457738'), - (778, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '54kpKPNd', '8459566'), - (778, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '54kpKPNd', '8459567'), - (778, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '54kpKPNd', '8461032'), - (778, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '54kpKPNd', '8477877'), - (778, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '54kpKPNd', '8485688'), - (778, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '54kpKPNd', '8490587'), - (778, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '54kpKPNd', '8493552'), - (778, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '54kpKPNd', '8493553'), - (778, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '54kpKPNd', '8493554'), - (778, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '54kpKPNd', '8493555'), - (778, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '54kpKPNd', '8493556'), - (778, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '54kpKPNd', '8493557'), - (778, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '54kpKPNd', '8493558'), - (778, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '54kpKPNd', '8493559'), - (778, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '54kpKPNd', '8493560'), - (778, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '54kpKPNd', '8493561'), - (778, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '54kpKPNd', '8493572'), - (779, 1, 'not_attending', '2020-03-19 16:00:29', '2025-12-17 19:47:58', 'w4W5L2qm', '2958042'), - (779, 2, 'attending', '2020-03-21 03:34:59', '2025-12-17 19:47:58', 'w4W5L2qm', '2958044'), - (779, 3, 'not_attending', '2020-03-19 16:01:08', '2025-12-17 19:47:58', 'w4W5L2qm', '2958045'), - (779, 4, 'attending', '2020-03-19 05:29:25', '2025-12-17 19:47:58', 'w4W5L2qm', '2958046'), - (779, 5, 'attending', '2020-03-19 05:29:27', '2025-12-17 19:47:58', 'w4W5L2qm', '2958047'), - (779, 6, 'not_attending', '2020-03-23 18:55:53', '2025-12-17 19:47:58', 'w4W5L2qm', '2958048'), - (779, 7, 'maybe', '2020-03-24 16:02:09', '2025-12-17 19:47:58', 'w4W5L2qm', '2958049'), - (779, 8, 'attending', '2020-03-23 18:55:37', '2025-12-17 19:47:58', 'w4W5L2qm', '2958050'), - (779, 9, 'attending', '2020-03-25 00:06:20', '2025-12-17 19:47:56', 'w4W5L2qm', '2958052'), - (779, 10, 'attending', '2020-03-25 00:06:23', '2025-12-17 19:47:56', 'w4W5L2qm', '2958053'), - (779, 11, 'attending', '2020-03-25 00:07:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2958055'), - (779, 13, 'attending', '2020-03-25 00:07:34', '2025-12-17 19:47:57', 'w4W5L2qm', '2958057'), - (779, 15, 'not_attending', '2020-04-10 16:53:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2958059'), - (779, 16, 'attending', '2020-03-23 18:55:49', '2025-12-17 19:47:56', 'w4W5L2qm', '2958060'), - (779, 17, 'maybe', '2020-03-19 05:29:34', '2025-12-17 19:47:58', 'w4W5L2qm', '2958061'), - (779, 19, 'maybe', '2020-03-31 22:12:02', '2025-12-17 19:47:56', 'w4W5L2qm', '2958063'), - (779, 26, 'maybe', '2020-04-03 00:09:36', '2025-12-17 19:47:57', 'w4W5L2qm', '2958082'), - (779, 28, 'not_attending', '2020-03-29 01:45:50', '2025-12-17 19:47:56', 'w4W5L2qm', '2960421'), - (779, 29, 'maybe', '2020-03-23 18:55:31', '2025-12-17 19:47:56', 'w4W5L2qm', '2961309'), - (779, 30, 'attending', '2020-03-23 20:41:13', '2025-12-17 19:47:57', 'w4W5L2qm', '2961895'), - (779, 36, 'not_attending', '2020-03-31 22:12:06', '2025-12-17 19:47:57', 'w4W5L2qm', '2969208'), - (779, 38, 'maybe', '2020-03-31 22:11:59', '2025-12-17 19:47:56', 'w4W5L2qm', '2969751'), - (779, 39, 'not_attending', '2020-04-01 19:21:40', '2025-12-17 19:47:57', 'w4W5L2qm', '2970637'), - (779, 40, 'attending', '2020-03-30 21:51:30', '2025-12-17 19:47:57', 'w4W5L2qm', '2970718'), - (779, 41, 'maybe', '2020-04-10 16:53:27', '2025-12-17 19:47:57', 'w4W5L2qm', '2971546'), - (779, 44, 'not_attending', '2020-04-10 16:53:22', '2025-12-17 19:47:57', 'w4W5L2qm', '2974534'), - (779, 46, 'not_attending', '2020-04-11 21:31:07', '2025-12-17 19:47:57', 'w4W5L2qm', '2974955'), - (779, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'w4W5L2qm', '2975384'), - (779, 56, 'maybe', '2020-04-10 16:53:16', '2025-12-17 19:47:57', 'w4W5L2qm', '2975385'), - (779, 57, 'attending', '2020-04-22 17:15:00', '2025-12-17 19:47:57', 'w4W5L2qm', '2976575'), - (779, 58, 'attending', '2020-04-18 18:52:03', '2025-12-17 19:47:57', 'w4W5L2qm', '2977127'), - (779, 59, 'maybe', '2020-05-05 20:52:19', '2025-12-17 19:47:57', 'w4W5L2qm', '2977128'), - (779, 60, 'attending', '2020-04-18 18:53:31', '2025-12-17 19:47:57', 'w4W5L2qm', '2977129'), - (779, 61, 'attending', '2020-04-10 16:53:23', '2025-12-17 19:47:57', 'w4W5L2qm', '2977130'), - (779, 62, 'attending', '2020-05-09 19:52:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2977131'), - (779, 63, 'attending', '2020-05-17 18:09:34', '2025-12-17 19:47:57', 'w4W5L2qm', '2977132'), - (779, 64, 'not_attending', '2020-06-02 02:01:43', '2025-12-17 19:47:58', 'w4W5L2qm', '2977133'), - (779, 65, 'not_attending', '2020-05-17 18:09:21', '2025-12-17 19:47:57', 'w4W5L2qm', '2977134'), - (779, 66, 'maybe', '2020-06-02 02:02:24', '2025-12-17 19:47:58', 'w4W5L2qm', '2977135'), - (779, 70, 'not_attending', '2020-04-10 16:53:10', '2025-12-17 19:47:57', 'w4W5L2qm', '2977343'), - (779, 71, 'not_attending', '2020-04-11 21:31:05', '2025-12-17 19:47:57', 'w4W5L2qm', '2977526'), - (779, 72, 'maybe', '2020-05-05 02:45:10', '2025-12-17 19:47:57', 'w4W5L2qm', '2977812'), - (779, 73, 'maybe', '2020-04-11 03:56:28', '2025-12-17 19:47:57', 'w4W5L2qm', '2977931'), - (779, 74, 'attending', '2020-04-11 03:56:34', '2025-12-17 19:47:57', 'w4W5L2qm', '2978244'), - (779, 75, 'attending', '2020-04-18 18:53:26', '2025-12-17 19:47:57', 'w4W5L2qm', '2978245'), - (779, 76, 'attending', '2020-04-29 15:46:17', '2025-12-17 19:47:57', 'w4W5L2qm', '2978246'), - (779, 77, 'attending', '2020-05-05 02:45:21', '2025-12-17 19:47:57', 'w4W5L2qm', '2978247'), - (779, 78, 'not_attending', '2020-05-14 03:30:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2978249'), - (779, 79, 'not_attending', '2020-05-17 18:08:55', '2025-12-17 19:47:57', 'w4W5L2qm', '2978250'), - (779, 80, 'not_attending', '2020-06-06 18:44:15', '2025-12-17 19:47:58', 'w4W5L2qm', '2978251'), - (779, 81, 'attending', '2020-06-13 03:32:28', '2025-12-17 19:47:58', 'w4W5L2qm', '2978252'), - (779, 82, 'attending', '2020-04-22 17:14:39', '2025-12-17 19:47:57', 'w4W5L2qm', '2978433'), - (779, 83, 'not_attending', '2020-05-05 17:10:42', '2025-12-17 19:47:57', 'w4W5L2qm', '2978438'), - (779, 84, 'maybe', '2020-04-18 18:51:56', '2025-12-17 19:47:57', 'w4W5L2qm', '2980871'), - (779, 85, 'not_attending', '2020-04-22 22:03:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2980872'), - (779, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'w4W5L2qm', '2981388'), - (779, 87, 'attending', '2020-04-18 18:53:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2982602'), - (779, 88, 'attending', '2020-04-14 19:04:58', '2025-12-17 19:47:57', 'w4W5L2qm', '2982603'), - (779, 89, 'not_attending', '2020-05-02 15:49:18', '2025-12-17 19:47:57', 'w4W5L2qm', '2982604'), - (779, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'w4W5L2qm', '2986743'), - (779, 94, 'maybe', '2020-04-24 21:24:12', '2025-12-17 19:47:57', 'w4W5L2qm', '2987421'), - (779, 96, 'maybe', '2020-05-01 18:28:35', '2025-12-17 19:47:57', 'w4W5L2qm', '2987453'), - (779, 102, 'attending', '2020-04-23 23:34:36', '2025-12-17 19:47:57', 'w4W5L2qm', '2990784'), - (779, 103, 'maybe', '2020-05-04 23:48:29', '2025-12-17 19:47:57', 'w4W5L2qm', '2991407'), - (779, 104, 'attending', '2020-04-25 02:35:39', '2025-12-17 19:47:57', 'w4W5L2qm', '2991471'), - (779, 106, 'maybe', '2020-05-02 15:49:23', '2025-12-17 19:47:57', 'w4W5L2qm', '2993501'), - (779, 109, 'maybe', '2020-05-12 00:21:21', '2025-12-17 19:47:57', 'w4W5L2qm', '2994480'), - (779, 111, 'attending', '2020-06-05 12:44:48', '2025-12-17 19:47:58', 'w4W5L2qm', '2994907'), - (779, 115, 'attending', '2020-05-05 02:45:24', '2025-12-17 19:47:57', 'w4W5L2qm', '3001217'), - (779, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'w4W5L2qm', '3015486'), - (779, 121, 'not_attending', '2020-05-19 18:42:40', '2025-12-17 19:47:57', 'w4W5L2qm', '3023063'), - (779, 122, 'maybe', '2020-05-17 18:08:29', '2025-12-17 19:47:57', 'w4W5L2qm', '3023491'), - (779, 123, 'not_attending', '2020-05-19 18:42:35', '2025-12-17 19:47:57', 'w4W5L2qm', '3023729'), - (779, 124, 'not_attending', '2020-05-19 18:42:45', '2025-12-17 19:47:57', 'w4W5L2qm', '3023809'), - (779, 125, 'not_attending', '2020-05-19 18:42:22', '2025-12-17 19:47:57', 'w4W5L2qm', '3023987'), - (779, 126, 'not_attending', '2020-05-19 18:42:30', '2025-12-17 19:47:57', 'w4W5L2qm', '3024022'), - (779, 128, 'not_attending', '2020-05-18 17:57:21', '2025-12-17 19:47:57', 'w4W5L2qm', '3027185'), - (779, 130, 'not_attending', '2020-05-25 00:05:58', '2025-12-17 19:47:57', 'w4W5L2qm', '3028781'), - (779, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'w4W5L2qm', '3034321'), - (779, 135, 'not_attending', '2020-05-25 00:05:49', '2025-12-17 19:47:57', 'w4W5L2qm', '3034368'), - (779, 136, 'not_attending', '2020-05-25 00:05:38', '2025-12-17 19:47:57', 'w4W5L2qm', '3035881'), - (779, 143, 'not_attending', '2020-06-07 23:01:26', '2025-12-17 19:47:58', 'w4W5L2qm', '3049983'), - (779, 145, 'attending', '2020-06-13 03:32:25', '2025-12-17 19:47:58', 'w4W5L2qm', '3058680'), - (779, 146, 'not_attending', '2020-06-27 22:51:24', '2025-12-17 19:47:55', 'w4W5L2qm', '3058683'), - (779, 150, 'attending', '2020-07-25 22:02:36', '2025-12-17 19:47:55', 'w4W5L2qm', '3058687'), - (779, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'w4W5L2qm', '3058959'), - (779, 173, 'maybe', '2020-06-16 19:00:01', '2025-12-17 19:47:58', 'w4W5L2qm', '3067093'), - (779, 182, 'not_attending', '2020-06-27 22:51:22', '2025-12-17 19:47:55', 'w4W5L2qm', '3074514'), - (779, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'w4W5L2qm', '3075228'), - (779, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'w4W5L2qm', '3075456'), - (779, 186, 'not_attending', '2020-06-18 21:16:29', '2025-12-17 19:47:55', 'w4W5L2qm', '3083791'), - (779, 187, 'not_attending', '2020-06-18 21:16:20', '2025-12-17 19:47:55', 'w4W5L2qm', '3085151'), - (779, 189, 'maybe', '2020-06-20 02:55:04', '2025-12-17 19:47:58', 'w4W5L2qm', '3087016'), - (779, 191, 'not_attending', '2020-07-09 17:46:12', '2025-12-17 19:47:55', 'w4W5L2qm', '3087259'), - (779, 192, 'not_attending', '2020-07-18 22:13:14', '2025-12-17 19:47:55', 'w4W5L2qm', '3087260'), - (779, 193, 'attending', '2020-07-25 22:02:59', '2025-12-17 19:47:55', 'w4W5L2qm', '3087261'), - (779, 195, 'maybe', '2020-08-08 12:02:33', '2025-12-17 19:47:56', 'w4W5L2qm', '3087264'), - (779, 196, 'maybe', '2020-08-14 14:07:44', '2025-12-17 19:47:56', 'w4W5L2qm', '3087265'), - (779, 197, 'not_attending', '2020-08-14 14:07:49', '2025-12-17 19:47:56', 'w4W5L2qm', '3087266'), - (779, 198, 'not_attending', '2020-08-14 14:07:52', '2025-12-17 19:47:56', 'w4W5L2qm', '3087267'), - (779, 199, 'not_attending', '2020-08-14 14:07:59', '2025-12-17 19:47:56', 'w4W5L2qm', '3087268'), - (779, 201, 'not_attending', '2020-06-20 22:39:49', '2025-12-17 19:47:55', 'w4W5L2qm', '3088653'), - (779, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'w4W5L2qm', '3106813'), - (779, 223, 'not_attending', '2020-08-14 14:08:02', '2025-12-17 19:47:56', 'w4W5L2qm', '3129980'), - (779, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'w4W5L2qm', '3132817'), - (779, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'w4W5L2qm', '3132820'), - (779, 232, 'maybe', '2020-07-20 00:05:02', '2025-12-17 19:47:55', 'w4W5L2qm', '3139770'), - (779, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'w4W5L2qm', '3155321'), - (779, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'w4W5L2qm', '3162006'), - (779, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'w4W5L2qm', '3163442'), - (779, 293, 'not_attending', '2020-08-14 19:29:11', '2025-12-17 19:47:56', 'w4W5L2qm', '3172832'), - (779, 294, 'not_attending', '2020-08-14 19:29:28', '2025-12-17 19:47:56', 'w4W5L2qm', '3172833'), - (779, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'w4W5L2qm', '3172834'), - (779, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'w4W5L2qm', '3172876'), - (779, 298, 'not_attending', '2020-08-14 19:29:39', '2025-12-17 19:47:56', 'w4W5L2qm', '3174556'), - (779, 299, 'not_attending', '2020-08-14 19:28:52', '2025-12-17 19:47:56', 'w4W5L2qm', '3176591'), - (779, 311, 'maybe', '2020-09-19 12:19:56', '2025-12-17 19:47:56', 'w4W5L2qm', '3186057'), - (779, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'w4W5L2qm', '3191735'), - (779, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'w4W5L2qm', '3200209'), - (779, 362, 'maybe', '2020-09-25 21:14:47', '2025-12-17 19:47:52', 'w4W5L2qm', '3214207'), - (779, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'w4W5L2qm', '3217037'), - (779, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'w4W5L2qm', '3218510'), - (779, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'w4W5L2qm', '3228698'), - (779, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'w4W5L2qm', '3228699'), - (779, 387, 'maybe', '2020-10-14 01:00:09', '2025-12-17 19:47:52', 'w4W5L2qm', '3228700'), - (779, 388, 'maybe', '2020-10-14 01:00:15', '2025-12-17 19:47:52', 'w4W5L2qm', '3228701'), - (779, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'w4W5L2qm', '3245751'), - (779, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'w4W5L2qm', '3250232'), - (779, 438, 'not_attending', '2020-10-31 19:00:13', '2025-12-17 19:47:53', 'w4W5L2qm', '3256163'), - (779, 440, 'not_attending', '2020-11-07 18:49:40', '2025-12-17 19:47:53', 'w4W5L2qm', '3256168'), - (779, 441, 'not_attending', '2020-11-07 18:49:42', '2025-12-17 19:47:54', 'w4W5L2qm', '3256169'), - (779, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'w4W5L2qm', '3263578'), - (779, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'w4W5L2qm', '3266138'), - (779, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'w4W5L2qm', '3276428'), - (779, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'w4W5L2qm', '3281467'), - (779, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'w4W5L2qm', '3281470'), - (779, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'w4W5L2qm', '3281829'), - (779, 468, 'not_attending', '2020-11-19 20:00:16', '2025-12-17 19:47:54', 'w4W5L2qm', '3285413'), - (779, 469, 'not_attending', '2020-11-19 20:00:19', '2025-12-17 19:47:54', 'w4W5L2qm', '3285414'), - (779, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'w4W5L2qm', '3297764'), - (779, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'w4W5L2qm', '3313856'), - (779, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'w4W5L2qm', '3314909'), - (779, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'w4W5L2qm', '3314964'), - (779, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'w4W5L2qm', '3323365'), - (779, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'w4W5L2qm', '3329383'), - (779, 526, 'not_attending', '2021-01-03 00:24:45', '2025-12-17 19:47:48', 'w4W5L2qm', '3351539'), - (779, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'w4W5L2qm', '3386848'), - (779, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'w4W5L2qm', '3389527'), - (779, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'w4W5L2qm', '3396499'), - (779, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'w4W5L2qm', '3403650'), - (779, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'w4W5L2qm', '3406988'), - (779, 555, 'not_attending', '2021-01-23 23:08:05', '2025-12-17 19:47:49', 'w4W5L2qm', '3416576'), - (779, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'w4W5L2qm', '3418925'), - (779, 568, 'not_attending', '2021-01-31 00:01:18', '2025-12-17 19:47:50', 'w4W5L2qm', '3430267'), - (779, 569, 'not_attending', '2021-01-25 06:51:07', '2025-12-17 19:47:49', 'w4W5L2qm', '3432673'), - (779, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'w4W5L2qm', '3468125'), - (779, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'w4W5L2qm', '3470303'), - (779, 604, 'not_attending', '2021-02-25 17:31:05', '2025-12-17 19:47:50', 'w4W5L2qm', '3470305'), - (779, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'w4W5L2qm', '3470991'), - (779, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'w4W5L2qm', '3517815'), - (779, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'w4W5L2qm', '3517816'), - (779, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'w4W5L2qm', '3523941'), - (779, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4W5L2qm', '3533850'), - (779, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4W5L2qm', '3536632'), - (779, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'w4W5L2qm', '3536656'), - (779, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'w4W5L2qm', '3539916'), - (779, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'w4W5L2qm', '3539917'), - (779, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'w4W5L2qm', '3539918'), - (779, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'w4W5L2qm', '3539919'), - (779, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'w4W5L2qm', '3539920'), - (779, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'w4W5L2qm', '3539921'), - (779, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4W5L2qm', '3539922'), - (779, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'w4W5L2qm', '3539923'), - (779, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'w4W5L2qm', '3539927'), - (779, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'w4W5L2qm', '3582734'), - (779, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'w4W5L2qm', '3583262'), - (779, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'w4W5L2qm', '3619523'), - (779, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'w4W5L2qm', '3661369'), - (779, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'w4W5L2qm', '3674262'), - (779, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'w4W5L2qm', '3677402'), - (779, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'w4W5L2qm', '3730212'), - (779, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'w4W5L2qm', '3793156'), - (779, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'w4W5L2qm', '3974109'), - (779, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'w4W5L2qm', '3975311'), - (779, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4W5L2qm', '3975312'), - (779, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4W5L2qm', '3994992'), - (779, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4W5L2qm', '4014338'), - (779, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'w4W5L2qm', '4021848'), - (779, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4W5L2qm', '4136744'), - (779, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4W5L2qm', '4136937'), - (779, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4W5L2qm', '4136938'), - (779, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4W5L2qm', '4136947'), - (779, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4W5L2qm', '4210314'), - (779, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4W5L2qm', '4225444'), - (779, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4W5L2qm', '4239259'), - (779, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4W5L2qm', '4240316'), - (779, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4W5L2qm', '4240317'), - (779, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4W5L2qm', '4240318'), - (779, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4W5L2qm', '4240320'), - (779, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4W5L2qm', '4250163'), - (779, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4W5L2qm', '4275957'), - (779, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4W5L2qm', '4277819'), - (779, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4W5L2qm', '4301723'), - (779, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'w4W5L2qm', '4302093'), - (779, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4W5L2qm', '4304151'), - (779, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'w4W5L2qm', '4345519'), - (779, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'w4W5L2qm', '4356801'), - (779, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'w4W5L2qm', '4358025'), - (779, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4W5L2qm', '4366186'), - (779, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'w4W5L2qm', '4366187'), - (779, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'w4W5L2qm', '4402823'), - (779, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'w4W5L2qm', '4420735'), - (779, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'w4W5L2qm', '4420738'), - (779, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'w4W5L2qm', '4420739'), - (779, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'w4W5L2qm', '4420741'), - (779, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'w4W5L2qm', '4420744'), - (779, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'w4W5L2qm', '4420747'), - (779, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'w4W5L2qm', '4420748'), - (779, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4W5L2qm', '4420749'), - (779, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4W5L2qm', '4461883'), - (779, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4W5L2qm', '4508342'), - (779, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4W5L2qm', '4568602'), - (779, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'w4W5L2qm', '4572153'), - (779, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4W5L2qm', '4585962'), - (779, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'w4W5L2qm', '4596356'), - (779, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4W5L2qm', '4598860'), - (779, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4W5L2qm', '4598861'), - (779, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'w4W5L2qm', '4602797'), - (779, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'w4W5L2qm', '4637896'), - (779, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'w4W5L2qm', '4642994'), - (779, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'w4W5L2qm', '4642995'), - (779, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'w4W5L2qm', '4642996'), - (779, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'w4W5L2qm', '4642997'), - (779, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'w4W5L2qm', '4645687'), - (779, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'w4W5L2qm', '4645698'), - (779, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'w4W5L2qm', '4645704'), - (779, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'w4W5L2qm', '4645705'), - (779, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'w4W5L2qm', '4668385'), - (779, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'w4W5L2qm', '4694407'), - (779, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4W5L2qm', '4736497'), - (779, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4W5L2qm', '4736499'), - (779, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4W5L2qm', '4736500'), - (779, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4W5L2qm', '4736503'), - (779, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4W5L2qm', '4736504'), - (779, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'w4W5L2qm', '4746789'), - (779, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'w4W5L2qm', '4753929'), - (779, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4W5L2qm', '5038850'), - (779, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4W5L2qm', '5045826'), - (779, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4W5L2qm', '5132533'), - (779, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4W5L2qm', '5186582'), - (779, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4W5L2qm', '5186583'), - (779, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4W5L2qm', '5186585'), - (779, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4W5L2qm', '5190437'), - (779, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4W5L2qm', '5215989'), - (779, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4W5L2qm', '6045684'), - (781, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd8bw0GBA', '5630961'), - (781, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd8bw0GBA', '5630962'), - (781, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd8bw0GBA', '5630966'), - (781, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd8bw0GBA', '5630967'), - (781, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd8bw0GBA', '5630968'), - (781, 1738, 'not_attending', '2022-10-25 17:37:20', '2025-12-17 19:47:14', 'd8bw0GBA', '5638765'), - (781, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd8bw0GBA', '5640097'), - (781, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd8bw0GBA', '5642818'), - (781, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd8bw0GBA', '5671637'), - (781, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd8bw0GBA', '5672329'), - (781, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd8bw0GBA', '5674057'), - (781, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd8bw0GBA', '5674060'), - (781, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd8bw0GBA', '5677461'), - (781, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd8bw0GBA', '5698046'), - (781, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'd8bw0GBA', '5699760'), - (781, 1786, 'not_attending', '2022-11-08 23:41:29', '2025-12-17 19:47:15', 'd8bw0GBA', '5727232'), - (781, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd8bw0GBA', '5741601'), - (781, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd8bw0GBA', '5763458'), - (781, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd8bw0GBA', '5774172'), - (781, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8bw0GBA', '6045684'), - (782, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dOO121nd', '6514659'), - (782, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOO121nd', '6514660'), - (782, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOO121nd', '6584747'), - (782, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOO121nd', '6587097'), - (782, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', 'dOO121nd', '6596617'), - (782, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOO121nd', '6609022'), - (782, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOO121nd', '6632757'), - (782, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOO121nd', '6644187'), - (782, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOO121nd', '6648951'), - (782, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOO121nd', '6648952'), - (782, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dOO121nd', '6651141'), - (782, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOO121nd', '6655401'), - (782, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOO121nd', '6661585'), - (782, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOO121nd', '6661588'), - (782, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOO121nd', '6661589'), - (782, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOO121nd', '6699906'), - (782, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOO121nd', '6699913'), - (782, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOO121nd', '6701109'), - (782, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOO121nd', '6705219'), - (782, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOO121nd', '6710153'), - (782, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOO121nd', '6711552'), - (782, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOO121nd', '6711553'), - (782, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOO121nd', '6722688'), - (782, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOO121nd', '6730620'), - (782, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOO121nd', '6730642'), - (782, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOO121nd', '6740364'), - (782, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOO121nd', '6743829'), - (782, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOO121nd', '7030380'), - (782, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOO121nd', '7033677'), - (782, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOO121nd', '7035415'), - (782, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOO121nd', '7044715'), - (782, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOO121nd', '7050318'), - (782, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOO121nd', '7050319'), - (782, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOO121nd', '7050322'), - (782, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOO121nd', '7057804'), - (782, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOO121nd', '7072824'), - (782, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOO121nd', '7074348'), - (782, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOO121nd', '7089267'), - (782, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOO121nd', '7098747'), - (782, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOO121nd', '7113468'), - (782, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOO121nd', '7114856'), - (782, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOO121nd', '7114951'), - (782, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOO121nd', '7114955'), - (782, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOO121nd', '7114956'), - (782, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOO121nd', '7153615'), - (782, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOO121nd', '7159484'), - (782, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOO121nd', '7178446'), - (783, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mjnw1xJm', '4694407'), - (783, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mjnw1xJm', '4736497'), - (783, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mjnw1xJm', '4736499'), - (783, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mjnw1xJm', '4736500'), - (783, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mjnw1xJm', '4736503'), - (783, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mjnw1xJm', '4736504'), - (783, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mjnw1xJm', '4746789'), - (783, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mjnw1xJm', '4753929'), - (783, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mjnw1xJm', '5038850'), - (783, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mjnw1xJm', '5045826'), - (783, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mjnw1xJm', '5132533'), - (783, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mjnw1xJm', '5186582'), - (783, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mjnw1xJm', '5186583'), - (783, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mjnw1xJm', '5186585'), - (783, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mjnw1xJm', '5190437'), - (783, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mjnw1xJm', '5215989'), - (783, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mjnw1xJm', '6045684'), - (784, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7114951'), - (784, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7114956'), - (784, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7114957'), - (784, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AYgYJ9Rd', '7153615'), - (784, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AYgYJ9Rd', '7159484'), - (784, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7178446'), - (784, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7220467'), - (784, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7240354'), - (784, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7251633'), - (784, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7265589'), - (784, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7281768'), - (785, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dKPMLzem', '5630966'), - (785, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dKPMLzem', '5630967'), - (785, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dKPMLzem', '5630968'), - (785, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dKPMLzem', '5642818'), - (785, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dKPMLzem', '5670445'), - (785, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dKPMLzem', '5699760'), - (785, 1786, 'not_attending', '2022-11-08 23:41:08', '2025-12-17 19:47:15', 'dKPMLzem', '5727232'), - (785, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dKPMLzem', '5741601'), - (785, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dKPMLzem', '5763458'), - (785, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dKPMLzem', '5774172'), - (785, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dKPMLzem', '5818247'), - (785, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dKPMLzem', '5819471'), - (785, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dKPMLzem', '5827739'), - (785, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dKPMLzem', '5844306'), - (785, 1846, 'not_attending', '2022-12-18 18:53:23', '2025-12-17 19:47:04', 'dKPMLzem', '5845237'), - (785, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dKPMLzem', '5850159'), - (785, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dKPMLzem', '5858999'), - (785, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dKPMLzem', '5871984'), - (785, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dKPMLzem', '5876354'), - (785, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKPMLzem', '6045684'), - (786, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dVBkwjqd', '4210314'), - (786, 901, 'attending', '2021-07-31 17:53:58', '2025-12-17 19:47:40', 'dVBkwjqd', '4240317'), - (786, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'dVBkwjqd', '4240318'), - (786, 903, 'maybe', '2021-08-14 18:13:58', '2025-12-17 19:47:42', 'dVBkwjqd', '4240320'), - (786, 929, 'maybe', '2021-08-05 19:49:21', '2025-12-17 19:47:41', 'dVBkwjqd', '4297223'), - (786, 934, 'attending', '2021-08-04 20:55:27', '2025-12-17 19:47:40', 'dVBkwjqd', '4302093'), - (786, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dVBkwjqd', '4304151'), - (786, 939, 'maybe', '2021-08-01 02:30:25', '2025-12-17 19:47:40', 'dVBkwjqd', '4308354'), - (786, 944, 'attending', '2021-08-08 19:40:02', '2025-12-17 19:47:41', 'dVBkwjqd', '4310980'), - (786, 945, 'maybe', '2021-08-15 19:21:03', '2025-12-17 19:47:42', 'dVBkwjqd', '4310981'), - (786, 947, 'maybe', '2021-08-06 14:31:33', '2025-12-17 19:47:41', 'dVBkwjqd', '4315713'), - (786, 948, 'attending', '2021-08-11 18:14:40', '2025-12-17 19:47:41', 'dVBkwjqd', '4315714'), - (786, 956, 'attending', '2021-08-03 19:50:55', '2025-12-17 19:47:40', 'dVBkwjqd', '4331968'), - (786, 960, 'attending', '2021-08-11 23:14:03', '2025-12-17 19:47:41', 'dVBkwjqd', '4344519'), - (786, 969, 'maybe', '2021-08-11 23:34:29', '2025-12-17 19:47:42', 'dVBkwjqd', '4356699'), - (786, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dVBkwjqd', '4356801'), - (786, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dVBkwjqd', '4366186'), - (786, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dVBkwjqd', '4366187'), - (786, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dVBkwjqd', '4420735'), - (786, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dVBkwjqd', '4420738'), - (786, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dVBkwjqd', '4420739'), - (786, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dVBkwjqd', '4420741'), - (786, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dVBkwjqd', '4420744'), - (786, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dVBkwjqd', '4420747'), - (786, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dVBkwjqd', '4420748'), - (786, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dVBkwjqd', '4420749'), - (786, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dVBkwjqd', '4461883'), - (786, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dVBkwjqd', '4508342'), - (786, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBkwjqd', '6045684'), - (787, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4vrBGVb4', '7869188'), - (787, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4vrBGVb4', '7877465'), - (787, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4vrBGVb4', '7878570'), - (787, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', '4vrBGVb4', '7880977'), - (787, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4vrBGVb4', '7888250'), - (787, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', '4vrBGVb4', '7897784'), - (787, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', '4vrBGVb4', '7903856'), - (787, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', '4vrBGVb4', '8347770'), - (787, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4vrBGVb4', '8349164'), - (787, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4vrBGVb4', '8349545'), - (787, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4vrBGVb4', '8353584'), - (788, 2125, 'attending', '2023-07-04 23:56:05', '2025-12-17 19:46:51', 'daOLN7ZA', '6177485'), - (788, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'daOLN7ZA', '6182410'), - (788, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'daOLN7ZA', '6185812'), - (788, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'daOLN7ZA', '6187651'), - (788, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'daOLN7ZA', '6187963'), - (788, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'daOLN7ZA', '6187964'), - (788, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'daOLN7ZA', '6187966'), - (788, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'daOLN7ZA', '6187967'), - (788, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'daOLN7ZA', '6187969'), - (788, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'daOLN7ZA', '6334878'), - (788, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'daOLN7ZA', '6337236'), - (788, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'daOLN7ZA', '6337970'), - (788, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'daOLN7ZA', '6338308'), - (788, 2157, 'not_attending', '2023-07-12 21:55:24', '2025-12-17 19:46:52', 'daOLN7ZA', '6338342'), - (788, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'daOLN7ZA', '6341710'), - (788, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'daOLN7ZA', '6342044'), - (788, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'daOLN7ZA', '6342298'), - (788, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'daOLN7ZA', '6343294'), - (788, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'daOLN7ZA', '6347034'), - (788, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'daOLN7ZA', '6347056'), - (788, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'daOLN7ZA', '6353830'), - (788, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'daOLN7ZA', '6353831'), - (788, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'daOLN7ZA', '6357867'), - (788, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'daOLN7ZA', '6358652'), - (788, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'daOLN7ZA', '6358668'), - (788, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'daOLN7ZA', '6358669'), - (788, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'daOLN7ZA', '6361709'), - (788, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'daOLN7ZA', '6361710'), - (788, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'daOLN7ZA', '6361711'), - (788, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'daOLN7ZA', '6361712'), - (788, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'daOLN7ZA', '6361713'), - (788, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'daOLN7ZA', '6382573'), - (788, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'daOLN7ZA', '6388604'), - (788, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'daOLN7ZA', '6394629'), - (788, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'daOLN7ZA', '6394631'), - (788, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'daOLN7ZA', '6440863'), - (788, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'daOLN7ZA', '6445440'), - (788, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'daOLN7ZA', '6453951'), - (788, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'daOLN7ZA', '6461696'), - (788, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'daOLN7ZA', '6462129'), - (788, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'daOLN7ZA', '6463218'), - (788, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'daOLN7ZA', '6472181'), - (788, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'daOLN7ZA', '6482693'), - (788, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'daOLN7ZA', '6484200'), - (788, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'daOLN7ZA', '6484680'), - (788, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'daOLN7ZA', '6507741'), - (788, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'daOLN7ZA', '6514659'), - (788, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'daOLN7ZA', '6514660'), - (788, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'daOLN7ZA', '6519103'), - (788, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'daOLN7ZA', '6535681'), - (788, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'daOLN7ZA', '6584747'), - (788, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'daOLN7ZA', '6587097'), - (788, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'daOLN7ZA', '6609022'), - (788, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'daOLN7ZA', '6632757'), - (788, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'daOLN7ZA', '6644187'), - (788, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'daOLN7ZA', '6648951'), - (788, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'daOLN7ZA', '6648952'), - (788, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'daOLN7ZA', '6655401'), - (788, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'daOLN7ZA', '6661585'), - (788, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'daOLN7ZA', '6661588'), - (788, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'daOLN7ZA', '6661589'), - (788, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'daOLN7ZA', '6699906'), - (788, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'daOLN7ZA', '6701109'), - (788, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'daOLN7ZA', '6704561'), - (788, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'daOLN7ZA', '6705219'), - (788, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'daOLN7ZA', '6708410'), - (788, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'daOLN7ZA', '6710153'), - (788, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'daOLN7ZA', '6711552'), - (788, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'daOLN7ZA', '6711553'), - (789, 24, 'attending', '2020-06-21 20:15:26', '2025-12-17 19:47:55', 'bdzpw7VA', '2958068'), - (789, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'bdzpw7VA', '3034321'), - (789, 201, 'not_attending', '2020-06-22 21:19:36', '2025-12-17 19:47:55', 'bdzpw7VA', '3088653'), - (789, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'bdzpw7VA', '3106813'), - (789, 223, 'attending', '2020-09-12 04:27:08', '2025-12-17 19:47:56', 'bdzpw7VA', '3129980'), - (789, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'bdzpw7VA', '3132817'), - (789, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'bdzpw7VA', '3132820'), - (789, 240, 'attending', '2020-09-07 04:15:11', '2025-12-17 19:47:56', 'bdzpw7VA', '3149471'), - (789, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'bdzpw7VA', '3155321'), - (789, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'bdzpw7VA', '3162006'), - (789, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'bdzpw7VA', '3163442'), - (789, 311, 'attending', '2020-09-18 20:09:15', '2025-12-17 19:47:56', 'bdzpw7VA', '3186057'), - (789, 339, 'not_attending', '2020-09-09 19:11:01', '2025-12-17 19:47:56', 'bdzpw7VA', '3204469'), - (789, 347, 'attending', '2020-09-24 22:46:22', '2025-12-17 19:47:51', 'bdzpw7VA', '3207930'), - (789, 348, 'attending', '2020-09-13 03:15:57', '2025-12-17 19:47:52', 'bdzpw7VA', '3209159'), - (789, 350, 'attending', '2020-09-12 04:26:56', '2025-12-17 19:47:56', 'bdzpw7VA', '3209255'), - (789, 362, 'attending', '2020-09-26 02:24:34', '2025-12-17 19:47:52', 'bdzpw7VA', '3214207'), - (789, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'bdzpw7VA', '3217037'), - (789, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'bdzpw7VA', '3218510'), - (789, 366, 'attending', '2020-09-22 20:50:57', '2025-12-17 19:47:56', 'bdzpw7VA', '3219750'), - (789, 373, 'not_attending', '2020-10-22 18:41:08', '2025-12-17 19:47:52', 'bdzpw7VA', '3221413'), - (789, 375, 'attending', '2020-10-08 16:56:27', '2025-12-17 19:47:52', 'bdzpw7VA', '3222825'), - (789, 385, 'attending', '2020-10-03 23:09:20', '2025-12-17 19:47:52', 'bdzpw7VA', '3228698'), - (789, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'bdzpw7VA', '3228699'), - (789, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'bdzpw7VA', '3228700'), - (789, 388, 'attending', '2020-10-24 15:59:55', '2025-12-17 19:47:52', 'bdzpw7VA', '3228701'), - (789, 412, 'attending', '2020-10-05 11:58:38', '2025-12-17 19:47:52', 'bdzpw7VA', '3236636'), - (789, 415, 'attending', '2020-10-12 23:08:24', '2025-12-17 19:47:52', 'bdzpw7VA', '3238044'), - (789, 418, 'attending', '2020-10-12 23:16:36', '2025-12-17 19:47:52', 'bdzpw7VA', '3241728'), - (789, 419, 'attending', '2020-10-12 23:16:49', '2025-12-17 19:47:52', 'bdzpw7VA', '3242234'), - (789, 424, 'attending', '2020-10-14 17:17:50', '2025-12-17 19:47:52', 'bdzpw7VA', '3245751'), - (789, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'bdzpw7VA', '3250232'), - (789, 435, 'attending', '2020-10-20 21:44:45', '2025-12-17 19:47:52', 'bdzpw7VA', '3254790'), - (789, 439, 'attending', '2020-10-28 17:01:44', '2025-12-17 19:47:53', 'bdzpw7VA', '3256164'), - (789, 440, 'attending', '2020-11-07 16:11:48', '2025-12-17 19:47:53', 'bdzpw7VA', '3256168'), - (789, 441, 'attending', '2020-11-14 18:29:07', '2025-12-17 19:47:54', 'bdzpw7VA', '3256169'), - (789, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'bdzpw7VA', '3263578'), - (789, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'bdzpw7VA', '3266138'), - (789, 449, 'attending', '2020-11-04 17:54:23', '2025-12-17 19:47:53', 'bdzpw7VA', '3272055'), - (789, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'bdzpw7VA', '3276428'), - (789, 457, 'not_attending', '2020-11-07 23:11:27', '2025-12-17 19:47:53', 'bdzpw7VA', '3279087'), - (789, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'bdzpw7VA', '3281467'), - (789, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'bdzpw7VA', '3281470'), - (789, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'bdzpw7VA', '3281829'), - (789, 468, 'not_attending', '2020-11-21 23:37:31', '2025-12-17 19:47:54', 'bdzpw7VA', '3285413'), - (789, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'bdzpw7VA', '3285414'), - (789, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'bdzpw7VA', '3297764'), - (789, 493, 'not_attending', '2020-12-06 00:03:45', '2025-12-17 19:47:54', 'bdzpw7VA', '3313856'), - (789, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'bdzpw7VA', '3314909'), - (789, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'bdzpw7VA', '3314964'), - (789, 502, 'attending', '2020-12-13 00:00:39', '2025-12-17 19:47:55', 'bdzpw7VA', '3323365'), - (789, 513, 'not_attending', '2020-12-20 00:52:14', '2025-12-17 19:47:55', 'bdzpw7VA', '3329383'), - (789, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'bdzpw7VA', '3351539'), - (789, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'bdzpw7VA', '3386848'), - (789, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'bdzpw7VA', '3389527'), - (789, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'bdzpw7VA', '3396499'), - (789, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'bdzpw7VA', '3403650'), - (789, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'bdzpw7VA', '3406988'), - (789, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'bdzpw7VA', '3416576'), - (789, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'bdzpw7VA', '3418925'), - (789, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzpw7VA', '6045684'), - (790, 901, 'attending', '2021-07-27 22:19:17', '2025-12-17 19:47:40', 'd3R7WbD4', '4240317'), - (790, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'd3R7WbD4', '4240318'), - (790, 933, 'attending', '2021-07-27 22:20:34', '2025-12-17 19:47:40', 'd3R7WbD4', '4301723'), - (790, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'd3R7WbD4', '4302093'), - (790, 940, 'not_attending', '2021-07-30 16:29:52', '2025-12-17 19:47:40', 'd3R7WbD4', '4309049'), - (790, 947, 'attending', '2021-07-28 04:31:26', '2025-12-17 19:47:41', 'd3R7WbD4', '4315713'), - (790, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3R7WbD4', '6045684'), - (791, 2448, 'attending', '2024-03-29 22:59:36', '2025-12-17 19:46:33', 'dljLEeBA', '6734371'), - (791, 2498, 'attending', '2024-03-20 21:15:20', '2025-12-17 19:46:33', 'dljLEeBA', '7057662'), - (791, 2507, 'not_attending', '2024-03-18 21:23:07', '2025-12-17 19:46:33', 'dljLEeBA', '7072824'), - (791, 2509, 'not_attending', '2024-03-25 02:26:23', '2025-12-17 19:46:33', 'dljLEeBA', '7074349'), - (791, 2512, 'attending', '2024-03-31 02:22:54', '2025-12-17 19:46:33', 'dljLEeBA', '7074352'), - (791, 2513, 'attending', '2024-04-18 04:16:16', '2025-12-17 19:46:34', 'dljLEeBA', '7074353'), - (791, 2516, 'not_attending', '2024-04-29 20:43:43', '2025-12-17 19:46:35', 'dljLEeBA', '7074356'), - (791, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dljLEeBA', '7074364'), - (791, 2528, 'not_attending', '2024-08-04 02:04:59', '2025-12-17 19:46:31', 'dljLEeBA', '7074368'), - (791, 2529, 'maybe', '2024-05-23 20:11:27', '2025-12-17 19:46:35', 'dljLEeBA', '7074369'), - (791, 2536, 'attending', '2024-03-18 02:02:47', '2025-12-17 19:46:33', 'dljLEeBA', '7077689'), - (791, 2538, 'attending', '2024-03-25 02:25:59', '2025-12-17 19:46:33', 'dljLEeBA', '7085485'), - (791, 2539, 'attending', '2024-03-31 02:23:14', '2025-12-17 19:46:33', 'dljLEeBA', '7085486'), - (791, 2542, 'attending', '2024-03-23 22:46:38', '2025-12-17 19:46:33', 'dljLEeBA', '7090025'), - (791, 2547, 'maybe', '2024-03-25 02:24:42', '2025-12-17 19:46:33', 'dljLEeBA', '7096945'), - (791, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dljLEeBA', '7098747'), - (791, 2551, 'attending', '2024-03-28 23:58:15', '2025-12-17 19:46:33', 'dljLEeBA', '7109912'), - (791, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dljLEeBA', '7113468'), - (791, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dljLEeBA', '7114856'), - (791, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dljLEeBA', '7114951'), - (791, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dljLEeBA', '7114955'), - (791, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dljLEeBA', '7114956'), - (791, 2558, 'attending', '2024-04-29 20:43:52', '2025-12-17 19:46:35', 'dljLEeBA', '7114957'), - (791, 2562, 'attending', '2024-04-02 23:23:28', '2025-12-17 19:46:33', 'dljLEeBA', '7134552'), - (791, 2563, 'attending', '2024-04-05 23:15:16', '2025-12-17 19:46:33', 'dljLEeBA', '7134734'), - (791, 2568, 'attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dljLEeBA', '7153615'), - (791, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dljLEeBA', '7159484'), - (791, 2575, 'maybe', '2024-04-12 22:39:09', '2025-12-17 19:46:33', 'dljLEeBA', '7164534'), - (791, 2580, 'maybe', '2024-04-14 01:59:53', '2025-12-17 19:46:34', 'dljLEeBA', '7167272'), - (791, 2584, 'attending', '2024-04-21 01:30:10', '2025-12-17 19:46:34', 'dljLEeBA', '7175057'), - (791, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dljLEeBA', '7178446'), - (791, 2600, 'not_attending', '2024-04-29 20:43:05', '2025-12-17 19:46:35', 'dljLEeBA', '7196794'), - (791, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dljLEeBA', '7220467'), - (791, 2605, 'attending', '2024-04-28 17:40:46', '2025-12-17 19:46:35', 'dljLEeBA', '7229243'), - (791, 2609, 'maybe', '2024-05-06 20:55:01', '2025-12-17 19:46:35', 'dljLEeBA', '7240354'), - (791, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dljLEeBA', '7251633'), - (791, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dljLEeBA', '7263048'), - (791, 2626, 'attending', '2024-05-15 03:10:25', '2025-12-17 19:46:35', 'dljLEeBA', '7264723'), - (791, 2627, 'attending', '2024-05-23 20:11:15', '2025-12-17 19:46:35', 'dljLEeBA', '7264724'), - (791, 2628, 'attending', '2024-05-27 17:05:01', '2025-12-17 19:46:36', 'dljLEeBA', '7264725'), - (791, 2644, 'attending', '2024-05-21 23:19:16', '2025-12-17 19:46:35', 'dljLEeBA', '7279039'), - (791, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dljLEeBA', '7302674'), - (791, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dljLEeBA', '7324073'), - (791, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dljLEeBA', '7324074'), - (791, 2690, 'attending', '2024-07-06 23:54:17', '2025-12-17 19:46:30', 'dljLEeBA', '7324075'), - (791, 2691, 'attending', '2024-07-14 02:00:01', '2025-12-17 19:46:30', 'dljLEeBA', '7324076'), - (791, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dljLEeBA', '7324078'), - (791, 2694, 'attending', '2024-08-04 02:05:09', '2025-12-17 19:46:31', 'dljLEeBA', '7324079'), - (791, 2695, 'not_attending', '2024-08-16 04:38:45', '2025-12-17 19:46:31', 'dljLEeBA', '7324080'), - (791, 2696, 'attending', '2024-08-17 19:03:07', '2025-12-17 19:46:32', 'dljLEeBA', '7324081'), - (791, 2697, 'not_attending', '2024-08-31 03:05:06', '2025-12-17 19:46:32', 'dljLEeBA', '7324082'), - (791, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dljLEeBA', '7331457'), - (791, 2747, 'attending', '2024-07-16 20:42:42', '2025-12-17 19:46:30', 'dljLEeBA', '7353587'), - (791, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dljLEeBA', '7356752'), - (791, 2758, 'attending', '2024-07-14 01:59:44', '2025-12-17 19:46:30', 'dljLEeBA', '7358837'), - (791, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dljLEeBA', '7363595'), - (791, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dljLEeBA', '7363643'), - (791, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dljLEeBA', '7368606'), - (791, 2788, 'maybe', '2024-08-04 02:04:16', '2025-12-17 19:46:31', 'dljLEeBA', '7384036'), - (791, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dljLEeBA', '7397462'), - (791, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dljLEeBA', '7424275'), - (791, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dljLEeBA', '7424276'), - (791, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dljLEeBA', '7432751'), - (791, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dljLEeBA', '7432752'), - (791, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dljLEeBA', '7432753'), - (791, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dljLEeBA', '7432754'), - (791, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dljLEeBA', '7432755'), - (791, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dljLEeBA', '7432756'), - (791, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dljLEeBA', '7432758'), - (791, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dljLEeBA', '7432759'), - (791, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dljLEeBA', '7433834'), - (791, 2856, 'attending', '2024-10-08 18:14:11', '2025-12-17 19:46:26', 'dljLEeBA', '7469386'), - (791, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dljLEeBA', '7470197'), - (791, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dljLEeBA', '7685613'), - (791, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dljLEeBA', '7688194'), - (791, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dljLEeBA', '7688196'), - (791, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dljLEeBA', '7688289'), - (791, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dljLEeBA', '7692763'), - (791, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dljLEeBA', '7697552'), - (791, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dljLEeBA', '7699878'), - (791, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dljLEeBA', '7704043'), - (791, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dljLEeBA', '7712467'), - (791, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dljLEeBA', '7713585'), - (791, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dljLEeBA', '7713586'), - (791, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dljLEeBA', '7738518'), - (791, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dljLEeBA', '7750636'), - (791, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dljLEeBA', '7796540'), - (791, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dljLEeBA', '7796541'), - (791, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dljLEeBA', '7796542'), - (792, 256, 'attending', '2021-05-02 16:54:21', '2025-12-17 19:47:46', 'VmMVyWbA', '3149487'), - (792, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'VmMVyWbA', '3149489'), - (792, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'VmMVyWbA', '3149491'), - (792, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'VmMVyWbA', '3236450'), - (792, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'VmMVyWbA', '3236452'), - (792, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'VmMVyWbA', '3539920'), - (792, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'VmMVyWbA', '3539921'), - (792, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'VmMVyWbA', '3539922'), - (792, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'VmMVyWbA', '3539923'), - (792, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'VmMVyWbA', '3793156'), - (792, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'VmMVyWbA', '3806392'), - (792, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'VmMVyWbA', '3963335'), - (792, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'VmMVyWbA', '3974109'), - (792, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VmMVyWbA', '3975311'), - (792, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VmMVyWbA', '3975312'), - (792, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VmMVyWbA', '3994992'), - (792, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VmMVyWbA', '4014338'), - (792, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmMVyWbA', '4136744'), - (792, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMVyWbA', '6045684'), - (793, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mb1JLe6d', '6361711'), - (793, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mb1JLe6d', '6361713'), - (793, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mb1JLe6d', '6388604'), - (793, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mb1JLe6d', '6394629'), - (793, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mb1JLe6d', '6394631'), - (793, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mb1JLe6d', '6431478'), - (794, 2189, 'maybe', '2023-08-05 03:37:48', '2025-12-17 19:46:54', '4090MrKd', '6357867'), - (794, 2191, 'attending', '2023-08-05 00:08:53', '2025-12-17 19:46:54', '4090MrKd', '6358652'), - (794, 2200, 'attending', '2023-08-10 20:13:20', '2025-12-17 19:46:55', '4090MrKd', '6359850'), - (794, 2203, 'attending', '2023-08-10 20:15:19', '2025-12-17 19:46:55', '4090MrKd', '6361524'), - (794, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', '4090MrKd', '6361709'), - (794, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4090MrKd', '6361710'), - (794, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4090MrKd', '6361711'), - (794, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4090MrKd', '6361712'), - (794, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4090MrKd', '6361713'), - (794, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4090MrKd', '6382573'), - (794, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4090MrKd', '6388604'), - (794, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4090MrKd', '6394629'), - (794, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4090MrKd', '6394631'), - (794, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4090MrKd', '6440863'), - (794, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4090MrKd', '6445440'), - (794, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4090MrKd', '6453951'), - (794, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4090MrKd', '6461696'), - (794, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4090MrKd', '6462129'), - (794, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4090MrKd', '6463218'), - (794, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4090MrKd', '6472181'), - (794, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4090MrKd', '6482693'), - (794, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4090MrKd', '6484200'), - (794, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4090MrKd', '6484680'), - (794, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4090MrKd', '6507741'), - (794, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4090MrKd', '6514659'), - (794, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4090MrKd', '6514660'), - (794, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4090MrKd', '6519103'), - (794, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4090MrKd', '6535681'), - (794, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4090MrKd', '6584747'), - (794, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4090MrKd', '6587097'), - (794, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4090MrKd', '6609022'), - (794, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4090MrKd', '6632757'), - (794, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4090MrKd', '6644187'), - (794, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4090MrKd', '6648951'), - (794, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4090MrKd', '6648952'), - (794, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4090MrKd', '6655401'), - (794, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4090MrKd', '6661585'), - (794, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4090MrKd', '6661588'), - (794, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4090MrKd', '6661589'), - (794, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4090MrKd', '6699906'), - (794, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4090MrKd', '6701109'), - (794, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4090MrKd', '6705219'), - (794, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4090MrKd', '6710153'), - (794, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4090MrKd', '6711552'), - (794, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4090MrKd', '6711553'), - (795, 665, 'not_attending', '2021-09-01 00:30:26', '2025-12-17 19:47:43', 'nda9aXVd', '3547143'), - (795, 667, 'not_attending', '2021-08-28 14:11:27', '2025-12-17 19:47:42', 'nda9aXVd', '3547145'), - (795, 850, 'maybe', '2021-08-22 17:33:27', '2025-12-17 19:47:42', 'nda9aXVd', '4015722'), - (795, 854, 'maybe', '2021-09-03 21:06:26', '2025-12-17 19:47:43', 'nda9aXVd', '4015726'), - (795, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'nda9aXVd', '4136947'), - (795, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nda9aXVd', '4210314'), - (795, 900, 'attending', '2021-07-24 16:57:35', '2025-12-17 19:47:40', 'nda9aXVd', '4240316'), - (795, 901, 'attending', '2021-07-28 01:59:06', '2025-12-17 19:47:40', 'nda9aXVd', '4240317'), - (795, 902, 'attending', '2021-08-02 14:32:50', '2025-12-17 19:47:41', 'nda9aXVd', '4240318'), - (795, 903, 'attending', '2021-08-12 14:39:32', '2025-12-17 19:47:42', 'nda9aXVd', '4240320'), - (795, 916, 'attending', '2021-07-22 22:29:41', '2025-12-17 19:47:40', 'nda9aXVd', '4273772'), - (795, 917, 'attending', '2021-07-16 19:03:11', '2025-12-17 19:47:39', 'nda9aXVd', '4274481'), - (795, 919, 'attending', '2021-07-16 16:29:41', '2025-12-17 19:47:39', 'nda9aXVd', '4275957'), - (795, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nda9aXVd', '4277819'), - (795, 921, 'maybe', '2021-07-16 16:29:34', '2025-12-17 19:47:39', 'nda9aXVd', '4278368'), - (795, 933, 'not_attending', '2021-07-28 22:51:44', '2025-12-17 19:47:40', 'nda9aXVd', '4301723'), - (795, 934, 'not_attending', '2021-08-04 22:01:46', '2025-12-17 19:47:41', 'nda9aXVd', '4302093'), - (795, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nda9aXVd', '4304151'), - (795, 946, 'attending', '2021-08-02 03:00:25', '2025-12-17 19:47:40', 'nda9aXVd', '4314835'), - (795, 951, 'not_attending', '2021-08-28 14:11:32', '2025-12-17 19:47:43', 'nda9aXVd', '4315731'), - (795, 952, 'not_attending', '2021-08-05 21:16:32', '2025-12-17 19:47:41', 'nda9aXVd', '4318286'), - (795, 955, 'attending', '2021-08-06 01:18:21', '2025-12-17 19:47:41', 'nda9aXVd', '4331588'), - (795, 958, 'attending', '2021-08-07 01:12:51', '2025-12-17 19:47:41', 'nda9aXVd', '4342996'), - (795, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'nda9aXVd', '4345519'), - (795, 963, 'attending', '2021-08-12 14:41:39', '2025-12-17 19:47:42', 'nda9aXVd', '4353159'), - (795, 964, 'attending', '2021-08-23 22:57:09', '2025-12-17 19:47:42', 'nda9aXVd', '4353160'), - (795, 965, 'maybe', '2021-08-19 02:55:28', '2025-12-17 19:47:42', 'nda9aXVd', '4353703'), - (795, 971, 'maybe', '2021-09-08 22:57:37', '2025-12-17 19:47:43', 'nda9aXVd', '4356801'), - (795, 972, 'attending', '2021-08-19 02:53:21', '2025-12-17 19:47:42', 'nda9aXVd', '4358025'), - (795, 973, 'maybe', '2021-08-21 22:25:06', '2025-12-17 19:47:42', 'nda9aXVd', '4366186'), - (795, 974, 'attending', '2021-08-24 02:16:25', '2025-12-17 19:47:42', 'nda9aXVd', '4366187'), - (795, 977, 'attending', '2021-08-19 02:53:17', '2025-12-17 19:47:42', 'nda9aXVd', '4378479'), - (795, 980, 'attending', '2021-08-21 18:44:07', '2025-12-17 19:47:42', 'nda9aXVd', '4380358'), - (795, 982, 'not_attending', '2021-08-28 14:11:17', '2025-12-17 19:47:42', 'nda9aXVd', '4389739'), - (795, 987, 'not_attending', '2021-09-01 22:53:11', '2025-12-17 19:47:43', 'nda9aXVd', '4402634'), - (795, 988, 'not_attending', '2021-08-26 15:49:27', '2025-12-17 19:47:42', 'nda9aXVd', '4402823'), - (795, 989, 'not_attending', '2021-09-05 15:08:43', '2025-12-17 19:47:43', 'nda9aXVd', '4414282'), - (795, 990, 'attending', '2021-09-01 00:30:23', '2025-12-17 19:47:43', 'nda9aXVd', '4420735'), - (795, 991, 'not_attending', '2021-09-11 22:48:32', '2025-12-17 19:47:43', 'nda9aXVd', '4420738'), - (795, 992, 'attending', '2021-09-12 14:31:12', '2025-12-17 19:47:33', 'nda9aXVd', '4420739'), - (795, 993, 'not_attending', '2021-09-20 16:14:36', '2025-12-17 19:47:34', 'nda9aXVd', '4420741'), - (795, 994, 'not_attending', '2021-10-02 23:31:18', '2025-12-17 19:47:34', 'nda9aXVd', '4420742'), - (795, 995, 'not_attending', '2021-10-07 10:42:29', '2025-12-17 19:47:34', 'nda9aXVd', '4420744'), - (795, 996, 'not_attending', '2021-10-16 21:51:09', '2025-12-17 19:47:35', 'nda9aXVd', '4420747'), - (795, 997, 'attending', '2021-10-23 21:09:34', '2025-12-17 19:47:35', 'nda9aXVd', '4420748'), - (795, 998, 'attending', '2021-10-30 21:54:59', '2025-12-17 19:47:36', 'nda9aXVd', '4420749'), - (795, 999, 'not_attending', '2021-09-01 00:28:53', '2025-12-17 19:47:43', 'nda9aXVd', '4421150'), - (795, 1000, 'not_attending', '2021-09-01 00:29:44', '2025-12-17 19:47:43', 'nda9aXVd', '4424456'), - (795, 1001, 'maybe', '2021-09-01 00:29:53', '2025-12-17 19:47:43', 'nda9aXVd', '4424687'), - (795, 1003, 'not_attending', '2021-09-05 15:07:39', '2025-12-17 19:47:43', 'nda9aXVd', '4438802'), - (795, 1004, 'not_attending', '2021-09-06 17:30:17', '2025-12-17 19:47:43', 'nda9aXVd', '4438804'), - (795, 1006, 'not_attending', '2021-09-26 18:29:09', '2025-12-17 19:47:34', 'nda9aXVd', '4438808'), - (795, 1013, 'not_attending', '2021-09-07 21:56:29', '2025-12-17 19:47:43', 'nda9aXVd', '4438817'), - (795, 1014, 'not_attending', '2021-09-03 21:06:51', '2025-12-17 19:47:43', 'nda9aXVd', '4439233'), - (795, 1015, 'not_attending', '2021-09-18 21:06:32', '2025-12-17 19:47:43', 'nda9aXVd', '4440800'), - (795, 1016, 'not_attending', '2021-09-09 22:16:02', '2025-12-17 19:47:43', 'nda9aXVd', '4441271'), - (795, 1017, 'attending', '2021-09-03 21:07:03', '2025-12-17 19:47:43', 'nda9aXVd', '4441822'), - (795, 1019, 'not_attending', '2021-09-16 23:04:27', '2025-12-17 19:47:43', 'nda9aXVd', '4450515'), - (795, 1020, 'not_attending', '2021-09-13 23:01:02', '2025-12-17 19:47:43', 'nda9aXVd', '4451787'), - (795, 1021, 'not_attending', '2021-09-20 22:04:32', '2025-12-17 19:47:34', 'nda9aXVd', '4451803'), - (795, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nda9aXVd', '4461883'), - (795, 1032, 'not_attending', '2021-09-26 20:56:45', '2025-12-17 19:47:34', 'nda9aXVd', '4473825'), - (795, 1034, 'maybe', '2021-09-18 18:48:35', '2025-12-17 19:47:43', 'nda9aXVd', '4486265'), - (795, 1036, 'attending', '2021-09-20 16:15:46', '2025-12-17 19:47:34', 'nda9aXVd', '4493166'), - (795, 1050, 'not_attending', '2022-01-26 23:17:06', '2025-12-17 19:47:32', 'nda9aXVd', '4496615'), - (795, 1051, 'not_attending', '2022-01-31 04:52:12', '2025-12-17 19:47:32', 'nda9aXVd', '4496616'), - (795, 1053, 'not_attending', '2022-02-09 13:49:43', '2025-12-17 19:47:32', 'nda9aXVd', '4496618'), - (795, 1058, 'maybe', '2022-02-09 13:51:43', '2025-12-17 19:47:33', 'nda9aXVd', '4496625'), - (795, 1059, 'not_attending', '2022-03-07 21:06:35', '2025-12-17 19:47:33', 'nda9aXVd', '4496626'), - (795, 1060, 'maybe', '2022-03-25 13:07:33', '2025-12-17 19:47:25', 'nda9aXVd', '4496627'), - (795, 1061, 'not_attending', '2022-02-09 13:48:55', '2025-12-17 19:47:32', 'nda9aXVd', '4496628'), - (795, 1062, 'not_attending', '2022-02-27 05:52:25', '2025-12-17 19:47:33', 'nda9aXVd', '4496629'), - (795, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nda9aXVd', '4508342'), - (795, 1068, 'maybe', '2021-09-26 18:28:51', '2025-12-17 19:47:34', 'nda9aXVd', '4511471'), - (795, 1070, 'not_attending', '2021-09-26 18:29:04', '2025-12-17 19:47:34', 'nda9aXVd', '4512562'), - (795, 1071, 'not_attending', '2021-10-04 22:57:39', '2025-12-17 19:47:34', 'nda9aXVd', '4516078'), - (795, 1072, 'not_attending', '2021-10-06 22:12:15', '2025-12-17 19:47:34', 'nda9aXVd', '4516287'), - (795, 1074, 'attending', '2021-09-29 22:07:14', '2025-12-17 19:47:34', 'nda9aXVd', '4528953'), - (795, 1077, 'not_attending', '2021-10-13 22:48:39', '2025-12-17 19:47:34', 'nda9aXVd', '4540903'), - (795, 1079, 'maybe', '2021-10-20 12:46:09', '2025-12-17 19:47:35', 'nda9aXVd', '4563823'), - (795, 1085, 'attending', '2021-12-27 19:16:10', '2025-12-17 19:47:31', 'nda9aXVd', '4568542'), - (795, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nda9aXVd', '4568602'), - (795, 1087, 'not_attending', '2021-10-16 19:45:16', '2025-12-17 19:47:35', 'nda9aXVd', '4572153'), - (795, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'nda9aXVd', '4585962'), - (795, 1094, 'maybe', '2021-10-25 19:33:11', '2025-12-17 19:47:36', 'nda9aXVd', '4587337'), - (795, 1095, 'not_attending', '2021-10-27 22:45:39', '2025-12-17 19:47:36', 'nda9aXVd', '4596356'), - (795, 1097, 'maybe', '2021-11-01 21:52:19', '2025-12-17 19:47:36', 'nda9aXVd', '4598860'), - (795, 1098, 'maybe', '2021-11-10 23:20:18', '2025-12-17 19:47:36', 'nda9aXVd', '4598861'), - (795, 1099, 'maybe', '2021-10-31 01:25:48', '2025-12-17 19:47:36', 'nda9aXVd', '4602797'), - (795, 1100, 'maybe', '2021-11-06 22:49:51', '2025-12-17 19:47:36', 'nda9aXVd', '4607305'), - (795, 1101, 'not_attending', '2021-11-11 23:17:21', '2025-12-17 19:47:36', 'nda9aXVd', '4607339'), - (795, 1106, 'maybe', '2021-11-11 23:17:56', '2025-12-17 19:47:36', 'nda9aXVd', '4620452'), - (795, 1107, 'maybe', '2021-11-14 00:34:33', '2025-12-17 19:47:37', 'nda9aXVd', '4620697'), - (795, 1108, 'maybe', '2021-11-14 00:34:10', '2025-12-17 19:47:37', 'nda9aXVd', '4632276'), - (795, 1110, 'not_attending', '2021-11-20 20:40:34', '2025-12-17 19:47:37', 'nda9aXVd', '4635224'), - (795, 1114, 'maybe', '2021-11-11 23:18:14', '2025-12-17 19:47:36', 'nda9aXVd', '4637896'), - (795, 1116, 'maybe', '2021-11-30 17:35:00', '2025-12-17 19:47:37', 'nda9aXVd', '4642994'), - (795, 1117, 'not_attending', '2021-12-09 00:45:26', '2025-12-17 19:47:38', 'nda9aXVd', '4642995'), - (795, 1118, 'not_attending', '2021-12-16 01:37:59', '2025-12-17 19:47:38', 'nda9aXVd', '4642996'), - (795, 1119, 'maybe', '2021-12-20 18:48:50', '2025-12-17 19:47:31', 'nda9aXVd', '4642997'), - (795, 1126, 'not_attending', '2021-12-10 23:56:17', '2025-12-17 19:47:38', 'nda9aXVd', '4645687'), - (795, 1127, 'maybe', '2021-12-06 19:16:29', '2025-12-17 19:47:38', 'nda9aXVd', '4645698'), - (795, 1128, 'not_attending', '2021-11-21 00:24:24', '2025-12-17 19:47:37', 'nda9aXVd', '4645704'), - (795, 1129, 'not_attending', '2021-11-21 13:18:11', '2025-12-17 19:47:37', 'nda9aXVd', '4645705'), - (795, 1130, 'attending', '2021-12-04 22:17:26', '2025-12-17 19:47:37', 'nda9aXVd', '4658824'), - (795, 1131, 'attending', '2021-12-18 19:13:23', '2025-12-17 19:47:31', 'nda9aXVd', '4658825'), - (795, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nda9aXVd', '4668385'), - (795, 1139, 'maybe', '2021-11-30 17:45:40', '2025-12-17 19:47:37', 'nda9aXVd', '4675604'), - (795, 1140, 'attending', '2021-11-30 17:45:35', '2025-12-17 19:47:37', 'nda9aXVd', '4679701'), - (795, 1142, 'maybe', '2021-12-04 03:46:00', '2025-12-17 19:47:37', 'nda9aXVd', '4681923'), - (795, 1146, 'not_attending', '2021-12-10 23:56:02', '2025-12-17 19:47:38', 'nda9aXVd', '4692841'), - (795, 1147, 'maybe', '2021-12-08 18:29:08', '2025-12-17 19:47:38', 'nda9aXVd', '4692842'), - (795, 1148, 'not_attending', '2021-12-17 22:47:33', '2025-12-17 19:47:31', 'nda9aXVd', '4692843'), - (795, 1149, 'not_attending', '2021-12-08 18:28:45', '2025-12-17 19:47:38', 'nda9aXVd', '4694407'), - (795, 1154, 'maybe', '2022-01-26 20:40:07', '2025-12-17 19:47:32', 'nda9aXVd', '4708708'), - (795, 1155, 'attending', '2021-12-20 05:03:47', '2025-12-17 19:47:31', 'nda9aXVd', '4715119'), - (795, 1163, 'not_attending', '2022-01-08 18:05:26', '2025-12-17 19:47:31', 'nda9aXVd', '4724206'), - (795, 1164, 'attending', '2022-01-03 04:32:05', '2025-12-17 19:47:31', 'nda9aXVd', '4724208'), - (795, 1165, 'attending', '2022-01-03 04:32:09', '2025-12-17 19:47:31', 'nda9aXVd', '4724210'), - (795, 1170, 'not_attending', '2022-01-10 01:27:57', '2025-12-17 19:47:31', 'nda9aXVd', '4731045'), - (795, 1172, 'not_attending', '2022-01-17 22:39:27', '2025-12-17 19:47:32', 'nda9aXVd', '4735348'), - (795, 1173, 'not_attending', '2022-01-08 18:05:22', '2025-12-17 19:47:31', 'nda9aXVd', '4736495'), - (795, 1174, 'attending', '2022-01-15 22:48:09', '2025-12-17 19:47:31', 'nda9aXVd', '4736496'), - (795, 1175, 'attending', '2022-01-21 03:04:44', '2025-12-17 19:47:32', 'nda9aXVd', '4736497'), - (795, 1176, 'attending', '2022-01-31 04:52:15', '2025-12-17 19:47:32', 'nda9aXVd', '4736498'), - (795, 1177, 'attending', '2022-02-06 03:59:01', '2025-12-17 19:47:32', 'nda9aXVd', '4736499'), - (795, 1178, 'not_attending', '2022-01-26 20:40:22', '2025-12-17 19:47:32', 'nda9aXVd', '4736500'), - (795, 1179, 'not_attending', '2022-02-18 00:22:16', '2025-12-17 19:47:32', 'nda9aXVd', '4736501'), - (795, 1180, 'attending', '2022-02-23 21:09:38', '2025-12-17 19:47:33', 'nda9aXVd', '4736502'), - (795, 1181, 'not_attending', '2022-03-04 21:09:57', '2025-12-17 19:47:33', 'nda9aXVd', '4736503'), - (795, 1182, 'not_attending', '2022-03-07 21:06:42', '2025-12-17 19:47:33', 'nda9aXVd', '4736504'), - (795, 1184, 'maybe', '2022-01-09 15:28:13', '2025-12-17 19:47:31', 'nda9aXVd', '4742350'), - (795, 1185, 'not_attending', '2022-01-09 15:28:24', '2025-12-17 19:47:31', 'nda9aXVd', '4746789'), - (795, 1188, 'not_attending', '2022-01-17 22:39:21', '2025-12-17 19:47:32', 'nda9aXVd', '4753929'), - (795, 1189, 'not_attending', '2022-01-17 18:45:52', '2025-12-17 19:47:31', 'nda9aXVd', '4753938'), - (795, 1192, 'not_attending', '2022-01-19 13:40:23', '2025-12-17 19:47:32', 'nda9aXVd', '4758745'), - (795, 1193, 'maybe', '2022-01-19 13:40:32', '2025-12-17 19:47:32', 'nda9aXVd', '4759563'), - (795, 1196, 'not_attending', '2022-01-21 03:04:13', '2025-12-17 19:47:32', 'nda9aXVd', '4765583'), - (795, 1200, 'not_attending', '2022-01-17 22:39:25', '2025-12-17 19:47:32', 'nda9aXVd', '4766830'), - (795, 1202, 'maybe', '2022-01-26 23:16:56', '2025-12-17 19:47:32', 'nda9aXVd', '4769423'), - (795, 1204, 'not_attending', '2022-02-09 13:49:05', '2025-12-17 19:47:32', 'nda9aXVd', '4773576'), - (795, 1205, 'attending', '2022-03-13 21:55:40', '2025-12-17 19:47:33', 'nda9aXVd', '4773577'), - (795, 1207, 'not_attending', '2022-05-01 22:24:32', '2025-12-17 19:47:28', 'nda9aXVd', '4773579'), - (795, 1210, 'not_attending', '2022-01-26 23:17:02', '2025-12-17 19:47:32', 'nda9aXVd', '4776927'), - (795, 1211, 'not_attending', '2022-01-26 23:17:01', '2025-12-17 19:47:32', 'nda9aXVd', '4780754'), - (795, 1212, 'not_attending', '2022-02-02 23:51:57', '2025-12-17 19:47:32', 'nda9aXVd', '4780759'), - (795, 1213, 'not_attending', '2022-01-31 04:52:19', '2025-12-17 19:47:32', 'nda9aXVd', '4780760'), - (795, 1214, 'not_attending', '2022-02-09 13:49:12', '2025-12-17 19:47:32', 'nda9aXVd', '4780761'), - (795, 1216, 'not_attending', '2022-01-26 23:17:08', '2025-12-17 19:47:32', 'nda9aXVd', '4781137'), - (795, 1217, 'not_attending', '2022-01-31 04:52:39', '2025-12-17 19:47:32', 'nda9aXVd', '4781139'), - (795, 1218, 'attending', '2022-01-31 04:49:32', '2025-12-17 19:47:32', 'nda9aXVd', '4788464'), - (795, 1219, 'attending', '2022-01-31 21:29:14', '2025-12-17 19:47:32', 'nda9aXVd', '4788466'), - (795, 1221, 'not_attending', '2022-01-28 15:21:26', '2025-12-17 19:47:32', 'nda9aXVd', '4790261'), - (795, 1222, 'maybe', '2022-02-09 13:49:08', '2025-12-17 19:47:32', 'nda9aXVd', '5015628'), - (795, 1223, 'not_attending', '2022-01-31 04:52:10', '2025-12-17 19:47:32', 'nda9aXVd', '5015635'), - (795, 1224, 'not_attending', '2022-01-31 04:51:59', '2025-12-17 19:47:32', 'nda9aXVd', '5016682'), - (795, 1226, 'not_attending', '2022-02-02 23:51:27', '2025-12-17 19:47:32', 'nda9aXVd', '5019064'), - (795, 1227, 'not_attending', '2022-02-15 00:45:25', '2025-12-17 19:47:32', 'nda9aXVd', '5027602'), - (795, 1228, 'maybe', '2022-02-11 13:00:21', '2025-12-17 19:47:32', 'nda9aXVd', '5028238'), - (795, 1229, 'not_attending', '2022-02-09 13:49:54', '2025-12-17 19:47:32', 'nda9aXVd', '5034963'), - (795, 1231, 'not_attending', '2022-02-09 13:50:37', '2025-12-17 19:47:33', 'nda9aXVd', '5037637'), - (795, 1232, 'maybe', '2022-02-09 13:39:58', '2025-12-17 19:47:32', 'nda9aXVd', '5038850'), - (795, 1233, 'not_attending', '2022-02-09 13:48:49', '2025-12-17 19:47:32', 'nda9aXVd', '5038910'), - (795, 1234, 'not_attending', '2022-02-14 15:45:13', '2025-12-17 19:47:32', 'nda9aXVd', '5042197'), - (795, 1235, 'not_attending', '2022-02-14 15:45:11', '2025-12-17 19:47:32', 'nda9aXVd', '5044505'), - (795, 1236, 'not_attending', '2022-02-14 15:45:51', '2025-12-17 19:47:32', 'nda9aXVd', '5045826'), - (795, 1237, 'not_attending', '2022-02-19 01:43:20', '2025-12-17 19:47:32', 'nda9aXVd', '5050641'), - (795, 1238, 'not_attending', '2022-02-24 00:45:02', '2025-12-17 19:47:32', 'nda9aXVd', '5052236'), - (795, 1239, 'maybe', '2022-02-28 01:59:34', '2025-12-17 19:47:33', 'nda9aXVd', '5052238'), - (795, 1240, 'maybe', '2022-03-11 04:49:49', '2025-12-17 19:47:33', 'nda9aXVd', '5052239'), - (795, 1241, 'maybe', '2022-03-23 11:49:14', '2025-12-17 19:47:25', 'nda9aXVd', '5052240'), - (795, 1242, 'maybe', '2022-03-25 12:45:29', '2025-12-17 19:47:25', 'nda9aXVd', '5052241'), - (795, 1243, 'not_attending', '2022-03-06 20:01:40', '2025-12-17 19:47:33', 'nda9aXVd', '5058336'), - (795, 1245, 'not_attending', '2022-02-28 01:59:35', '2025-12-17 19:47:33', 'nda9aXVd', '5061301'), - (795, 1246, 'not_attending', '2022-02-28 01:59:53', '2025-12-17 19:47:33', 'nda9aXVd', '5064727'), - (795, 1248, 'not_attending', '2022-02-23 21:08:50', '2025-12-17 19:47:33', 'nda9aXVd', '5065064'), - (795, 1249, 'not_attending', '2022-03-11 04:49:29', '2025-12-17 19:47:33', 'nda9aXVd', '5068530'), - (795, 1250, 'not_attending', '2022-02-28 01:59:56', '2025-12-17 19:47:33', 'nda9aXVd', '5069735'), - (795, 1251, 'not_attending', '2022-03-07 21:06:17', '2025-12-17 19:47:33', 'nda9aXVd', '5128466'), - (795, 1252, 'not_attending', '2022-02-28 23:55:10', '2025-12-17 19:47:33', 'nda9aXVd', '5129121'), - (795, 1253, 'maybe', '2022-02-28 02:02:50', '2025-12-17 19:47:33', 'nda9aXVd', '5129122'), - (795, 1254, 'not_attending', '2022-02-28 01:58:56', '2025-12-17 19:47:33', 'nda9aXVd', '5129129'), - (795, 1255, 'maybe', '2022-02-28 01:59:49', '2025-12-17 19:47:33', 'nda9aXVd', '5129140'), - (795, 1256, 'not_attending', '2022-02-28 01:59:38', '2025-12-17 19:47:33', 'nda9aXVd', '5129142'), - (795, 1257, 'not_attending', '2022-02-28 01:59:43', '2025-12-17 19:47:33', 'nda9aXVd', '5129274'), - (795, 1259, 'not_attending', '2022-03-09 14:46:01', '2025-12-17 19:47:33', 'nda9aXVd', '5132533'), - (795, 1262, 'not_attending', '2022-03-09 14:45:18', '2025-12-17 19:47:33', 'nda9aXVd', '5157773'), - (795, 1263, 'not_attending', '2022-03-07 21:05:44', '2025-12-17 19:47:33', 'nda9aXVd', '5158145'), - (795, 1264, 'attending', '2022-03-22 16:58:47', '2025-12-17 19:47:25', 'nda9aXVd', '5160281'), - (795, 1265, 'not_attending', '2022-03-07 21:06:30', '2025-12-17 19:47:33', 'nda9aXVd', '5160862'), - (795, 1266, 'maybe', '2022-03-14 20:54:25', '2025-12-17 19:47:33', 'nda9aXVd', '5166407'), - (795, 1267, 'maybe', '2022-03-16 02:02:49', '2025-12-17 19:47:25', 'nda9aXVd', '5169578'), - (795, 1269, 'maybe', '2022-03-16 02:03:10', '2025-12-17 19:47:25', 'nda9aXVd', '5179439'), - (795, 1270, 'attending', '2022-03-15 02:35:34', '2025-12-17 19:47:25', 'nda9aXVd', '5181277'), - (795, 1271, 'maybe', '2022-03-16 02:03:01', '2025-12-17 19:47:25', 'nda9aXVd', '5181648'), - (795, 1272, 'attending', '2022-03-16 02:03:18', '2025-12-17 19:47:25', 'nda9aXVd', '5186582'), - (795, 1273, 'attending', '2022-03-25 13:06:12', '2025-12-17 19:47:25', 'nda9aXVd', '5186583'), - (795, 1274, 'attending', '2022-04-02 19:26:25', '2025-12-17 19:47:26', 'nda9aXVd', '5186585'), - (795, 1275, 'not_attending', '2022-03-28 11:27:51', '2025-12-17 19:47:26', 'nda9aXVd', '5186587'), - (795, 1276, 'maybe', '2022-03-25 13:07:38', '2025-12-17 19:47:25', 'nda9aXVd', '5186820'), - (795, 1277, 'not_attending', '2022-03-18 16:34:43', '2025-12-17 19:47:25', 'nda9aXVd', '5186865'), - (795, 1278, 'not_attending', '2022-03-17 03:36:55', '2025-12-17 19:47:33', 'nda9aXVd', '5186920'), - (795, 1279, 'attending', '2022-03-16 13:39:25', '2025-12-17 19:47:25', 'nda9aXVd', '5187212'), - (795, 1280, 'not_attending', '2022-03-18 16:34:52', '2025-12-17 19:47:25', 'nda9aXVd', '5189749'), - (795, 1281, 'attending', '2022-04-08 21:32:37', '2025-12-17 19:47:27', 'nda9aXVd', '5190437'), - (795, 1282, 'attending', '2022-03-21 23:42:59', '2025-12-17 19:47:25', 'nda9aXVd', '5191241'), - (795, 1284, 'attending', '2022-04-16 22:57:03', '2025-12-17 19:47:27', 'nda9aXVd', '5195095'), - (795, 1285, 'not_attending', '2022-03-25 13:07:45', '2025-12-17 19:47:25', 'nda9aXVd', '5196763'), - (795, 1287, 'attending', '2022-03-28 22:37:01', '2025-12-17 19:47:25', 'nda9aXVd', '5199425'), - (795, 1288, 'not_attending', '2022-03-25 13:07:52', '2025-12-17 19:47:25', 'nda9aXVd', '5199460'), - (795, 1289, 'not_attending', '2022-03-25 13:07:40', '2025-12-17 19:47:25', 'nda9aXVd', '5200190'), - (795, 1290, 'maybe', '2022-03-25 12:45:22', '2025-12-17 19:47:25', 'nda9aXVd', '5200196'), - (795, 1291, 'not_attending', '2022-03-25 13:07:44', '2025-12-17 19:47:25', 'nda9aXVd', '5200458'), - (795, 1292, 'not_attending', '2022-03-28 11:27:45', '2025-12-17 19:47:25', 'nda9aXVd', '5214043'), - (795, 1293, 'maybe', '2022-04-08 21:33:45', '2025-12-17 19:47:27', 'nda9aXVd', '5214641'), - (795, 1294, 'not_attending', '2022-04-01 18:07:03', '2025-12-17 19:47:26', 'nda9aXVd', '5214686'), - (795, 1296, 'not_attending', '2022-04-01 18:06:36', '2025-12-17 19:47:26', 'nda9aXVd', '5215985'), - (795, 1297, 'not_attending', '2022-03-29 21:44:19', '2025-12-17 19:47:26', 'nda9aXVd', '5215989'), - (795, 1298, 'not_attending', '2022-04-01 19:24:27', '2025-12-17 19:47:25', 'nda9aXVd', '5216645'), - (795, 1299, 'not_attending', '2022-03-31 16:19:51', '2025-12-17 19:47:25', 'nda9aXVd', '5217660'), - (795, 1300, 'not_attending', '2022-03-31 16:20:10', '2025-12-17 19:47:25', 'nda9aXVd', '5217936'), - (795, 1302, 'maybe', '2022-04-08 23:02:28', '2025-12-17 19:47:27', 'nda9aXVd', '5220867'), - (795, 1305, 'maybe', '2022-04-10 23:41:11', '2025-12-17 19:47:27', 'nda9aXVd', '5223673'), - (795, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nda9aXVd', '5223686'), - (795, 1308, 'not_attending', '2022-04-13 23:16:14', '2025-12-17 19:47:27', 'nda9aXVd', '5226703'), - (795, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'nda9aXVd', '5227432'), - (795, 1312, 'not_attending', '2022-04-11 14:33:40', '2025-12-17 19:47:27', 'nda9aXVd', '5231459'), - (795, 1313, 'not_attending', '2022-04-11 14:34:05', '2025-12-17 19:47:27', 'nda9aXVd', '5231461'), - (795, 1314, 'not_attending', '2022-04-11 16:44:26', '2025-12-17 19:47:27', 'nda9aXVd', '5233137'), - (795, 1315, 'maybe', '2022-04-22 19:20:20', '2025-12-17 19:47:27', 'nda9aXVd', '5237522'), - (795, 1316, 'attending', '2022-04-11 14:33:45', '2025-12-17 19:47:27', 'nda9aXVd', '5237536'), - (795, 1317, 'maybe', '2022-04-11 16:45:48', '2025-12-17 19:47:27', 'nda9aXVd', '5237543'), - (795, 1318, 'not_attending', '2022-04-11 14:33:43', '2025-12-17 19:47:27', 'nda9aXVd', '5238343'), - (795, 1319, 'not_attending', '2022-04-11 14:32:57', '2025-12-17 19:47:27', 'nda9aXVd', '5238353'), - (795, 1320, 'not_attending', '2022-04-11 14:33:11', '2025-12-17 19:47:27', 'nda9aXVd', '5238354'), - (795, 1321, 'maybe', '2022-04-22 19:20:16', '2025-12-17 19:47:27', 'nda9aXVd', '5238355'), - (795, 1322, 'attending', '2022-04-14 16:19:20', '2025-12-17 19:47:27', 'nda9aXVd', '5238356'), - (795, 1323, 'not_attending', '2022-04-11 14:32:45', '2025-12-17 19:47:27', 'nda9aXVd', '5238357'), - (795, 1324, 'not_attending', '2022-04-11 14:32:50', '2025-12-17 19:47:27', 'nda9aXVd', '5238360'), - (795, 1325, 'not_attending', '2022-04-21 01:44:42', '2025-12-17 19:47:28', 'nda9aXVd', '5238361'), - (795, 1326, 'not_attending', '2022-04-21 01:44:44', '2025-12-17 19:47:28', 'nda9aXVd', '5238362'), - (795, 1327, 'attending', '2022-04-11 14:31:24', '2025-12-17 19:47:27', 'nda9aXVd', '5238445'), - (795, 1328, 'attending', '2022-04-11 22:11:57', '2025-12-17 19:47:27', 'nda9aXVd', '5238759'), - (795, 1329, 'not_attending', '2022-04-13 18:08:42', '2025-12-17 19:47:27', 'nda9aXVd', '5240135'), - (795, 1330, 'maybe', '2022-04-14 23:04:23', '2025-12-17 19:47:27', 'nda9aXVd', '5242155'), - (795, 1331, 'maybe', '2022-04-14 23:04:28', '2025-12-17 19:47:27', 'nda9aXVd', '5242156'), - (795, 1332, 'maybe', '2022-04-14 23:01:17', '2025-12-17 19:47:27', 'nda9aXVd', '5243274'), - (795, 1333, 'not_attending', '2022-04-14 23:01:13', '2025-12-17 19:47:27', 'nda9aXVd', '5243711'), - (795, 1334, 'attending', '2022-04-14 23:03:50', '2025-12-17 19:47:27', 'nda9aXVd', '5244797'), - (795, 1335, 'not_attending', '2022-04-14 23:03:22', '2025-12-17 19:47:27', 'nda9aXVd', '5244906'), - (795, 1336, 'attending', '2022-04-14 23:00:44', '2025-12-17 19:47:27', 'nda9aXVd', '5244915'), - (795, 1340, 'maybe', '2022-04-25 11:50:31', '2025-12-17 19:47:27', 'nda9aXVd', '5245754'), - (795, 1341, 'attending', '2022-05-01 23:00:34', '2025-12-17 19:47:28', 'nda9aXVd', '5245755'), - (795, 1343, 'not_attending', '2022-05-01 22:24:26', '2025-12-17 19:47:28', 'nda9aXVd', '5247200'), - (795, 1344, 'not_attending', '2022-04-21 01:45:00', '2025-12-17 19:47:28', 'nda9aXVd', '5247465'), - (795, 1345, 'not_attending', '2022-04-21 01:43:21', '2025-12-17 19:47:27', 'nda9aXVd', '5247466'), - (795, 1346, 'not_attending', '2022-04-21 01:43:24', '2025-12-17 19:47:27', 'nda9aXVd', '5247467'), - (795, 1348, 'maybe', '2022-04-21 01:42:20', '2025-12-17 19:47:28', 'nda9aXVd', '5247605'), - (795, 1349, 'not_attending', '2022-04-21 01:42:56', '2025-12-17 19:47:27', 'nda9aXVd', '5249631'), - (795, 1350, 'not_attending', '2022-04-21 01:42:58', '2025-12-17 19:47:27', 'nda9aXVd', '5249763'), - (795, 1351, 'not_attending', '2022-05-02 12:55:32', '2025-12-17 19:47:28', 'nda9aXVd', '5251561'), - (795, 1353, 'not_attending', '2022-04-21 01:43:42', '2025-12-17 19:47:27', 'nda9aXVd', '5251777'), - (795, 1354, 'not_attending', '2022-04-21 22:35:12', '2025-12-17 19:47:27', 'nda9aXVd', '5252569'), - (795, 1355, 'not_attending', '2022-04-27 16:41:23', '2025-12-17 19:47:28', 'nda9aXVd', '5252573'), - (795, 1357, 'maybe', '2022-04-25 16:19:59', '2025-12-17 19:47:27', 'nda9aXVd', '5256017'), - (795, 1359, 'not_attending', '2022-04-27 16:43:13', '2025-12-17 19:47:28', 'nda9aXVd', '5258360'), - (795, 1360, 'maybe', '2022-04-25 11:50:09', '2025-12-17 19:47:27', 'nda9aXVd', '5260197'), - (795, 1361, 'not_attending', '2022-04-27 16:43:00', '2025-12-17 19:47:28', 'nda9aXVd', '5260491'), - (795, 1362, 'not_attending', '2022-04-25 20:28:57', '2025-12-17 19:47:28', 'nda9aXVd', '5260800'), - (795, 1363, 'not_attending', '2022-04-27 16:41:36', '2025-12-17 19:47:28', 'nda9aXVd', '5261577'), - (795, 1364, 'attending', '2022-04-27 16:42:44', '2025-12-17 19:47:28', 'nda9aXVd', '5261598'), - (795, 1365, 'not_attending', '2022-05-01 16:22:55', '2025-12-17 19:47:28', 'nda9aXVd', '5261600'), - (795, 1366, 'not_attending', '2022-04-27 16:41:15', '2025-12-17 19:47:27', 'nda9aXVd', '5262344'), - (795, 1367, 'not_attending', '2022-05-01 16:23:00', '2025-12-17 19:47:28', 'nda9aXVd', '5262345'), - (795, 1368, 'attending', '2022-05-06 01:10:15', '2025-12-17 19:47:28', 'nda9aXVd', '5262783'), - (795, 1369, 'maybe', '2022-04-27 16:43:51', '2025-12-17 19:47:28', 'nda9aXVd', '5262809'), - (795, 1370, 'not_attending', '2022-04-29 16:24:04', '2025-12-17 19:47:28', 'nda9aXVd', '5263775'), - (795, 1372, 'not_attending', '2022-05-03 21:55:15', '2025-12-17 19:47:28', 'nda9aXVd', '5264352'), - (795, 1374, 'attending', '2022-05-01 22:24:28', '2025-12-17 19:47:28', 'nda9aXVd', '5269930'), - (795, 1375, 'attending', '2022-05-05 17:44:34', '2025-12-17 19:47:28', 'nda9aXVd', '5269932'), - (795, 1376, 'maybe', '2022-05-08 02:05:23', '2025-12-17 19:47:28', 'nda9aXVd', '5271446'), - (795, 1377, 'not_attending', '2022-05-08 02:05:35', '2025-12-17 19:47:28', 'nda9aXVd', '5271447'), - (795, 1378, 'not_attending', '2022-05-13 15:50:24', '2025-12-17 19:47:29', 'nda9aXVd', '5271448'), - (795, 1379, 'attending', '2022-05-21 15:30:18', '2025-12-17 19:47:29', 'nda9aXVd', '5271449'), - (795, 1380, 'maybe', '2022-05-13 15:51:04', '2025-12-17 19:47:30', 'nda9aXVd', '5271450'), - (795, 1381, 'not_attending', '2022-05-05 17:45:17', '2025-12-17 19:47:28', 'nda9aXVd', '5271453'), - (795, 1382, 'maybe', '2022-05-05 17:45:55', '2025-12-17 19:47:28', 'nda9aXVd', '5276350'), - (795, 1383, 'maybe', '2022-05-13 21:56:11', '2025-12-17 19:47:28', 'nda9aXVd', '5276469'), - (795, 1384, 'maybe', '2022-05-05 17:45:20', '2025-12-17 19:47:28', 'nda9aXVd', '5277078'), - (795, 1385, 'maybe', '2022-05-08 02:05:16', '2025-12-17 19:47:28', 'nda9aXVd', '5277822'), - (795, 1386, 'not_attending', '2022-05-05 17:45:13', '2025-12-17 19:47:28', 'nda9aXVd', '5278159'), - (795, 1388, 'not_attending', '2022-05-05 17:45:15', '2025-12-17 19:47:28', 'nda9aXVd', '5278201'), - (795, 1389, 'not_attending', '2022-05-05 17:45:34', '2025-12-17 19:47:28', 'nda9aXVd', '5278202'), - (795, 1393, 'not_attending', '2022-06-10 18:34:10', '2025-12-17 19:47:30', 'nda9aXVd', '5280603'), - (795, 1394, 'not_attending', '2022-05-27 11:07:23', '2025-12-17 19:47:30', 'nda9aXVd', '5280667'), - (795, 1396, 'not_attending', '2022-05-13 15:50:31', '2025-12-17 19:47:28', 'nda9aXVd', '5281103'), - (795, 1397, 'maybe', '2022-05-13 15:50:56', '2025-12-17 19:47:29', 'nda9aXVd', '5281104'), - (795, 1399, 'not_attending', '2022-05-08 02:05:20', '2025-12-17 19:47:28', 'nda9aXVd', '5281796'), - (795, 1400, 'not_attending', '2022-05-13 15:50:48', '2025-12-17 19:47:29', 'nda9aXVd', '5284864'), - (795, 1401, 'maybe', '2022-05-13 15:11:37', '2025-12-17 19:47:29', 'nda9aXVd', '5286295'), - (795, 1402, 'not_attending', '2022-05-27 16:48:38', '2025-12-17 19:47:30', 'nda9aXVd', '5287977'), - (795, 1403, 'attending', '2022-05-19 21:44:21', '2025-12-17 19:47:29', 'nda9aXVd', '5288052'), - (795, 1404, 'not_attending', '2022-05-13 15:11:45', '2025-12-17 19:47:29', 'nda9aXVd', '5288114'), - (795, 1405, 'not_attending', '2022-05-13 15:11:49', '2025-12-17 19:47:29', 'nda9aXVd', '5288115'), - (795, 1406, 'maybe', '2022-05-15 18:17:13', '2025-12-17 19:47:29', 'nda9aXVd', '5288619'), - (795, 1407, 'attending', '2022-05-21 22:28:01', '2025-12-17 19:47:30', 'nda9aXVd', '5363695'), - (795, 1408, 'maybe', '2022-05-16 14:24:34', '2025-12-17 19:47:29', 'nda9aXVd', '5365960'), - (795, 1413, 'maybe', '2022-05-19 21:45:17', '2025-12-17 19:47:29', 'nda9aXVd', '5367533'), - (795, 1414, 'maybe', '2022-05-20 22:52:27', '2025-12-17 19:47:29', 'nda9aXVd', '5368445'), - (795, 1415, 'attending', '2022-05-31 01:32:58', '2025-12-17 19:47:30', 'nda9aXVd', '5368973'), - (795, 1416, 'not_attending', '2022-05-28 12:09:09', '2025-12-17 19:47:30', 'nda9aXVd', '5369628'), - (795, 1419, 'maybe', '2022-06-03 00:26:13', '2025-12-17 19:47:30', 'nda9aXVd', '5373081'), - (795, 1420, 'not_attending', '2022-05-27 16:49:02', '2025-12-17 19:47:30', 'nda9aXVd', '5374882'), - (795, 1421, 'not_attending', '2022-05-29 04:14:23', '2025-12-17 19:47:30', 'nda9aXVd', '5374885'), - (795, 1422, 'not_attending', '2022-05-28 19:48:21', '2025-12-17 19:47:30', 'nda9aXVd', '5375603'), - (795, 1423, 'not_attending', '2022-06-15 19:29:47', '2025-12-17 19:47:17', 'nda9aXVd', '5375727'), - (795, 1424, 'maybe', '2022-05-25 15:39:02', '2025-12-17 19:47:30', 'nda9aXVd', '5375772'), - (795, 1427, 'not_attending', '2022-05-25 22:54:13', '2025-12-17 19:47:30', 'nda9aXVd', '5376074'), - (795, 1428, 'not_attending', '2022-06-10 18:19:05', '2025-12-17 19:47:30', 'nda9aXVd', '5378247'), - (795, 1429, 'attending', '2022-05-30 20:28:22', '2025-12-17 19:47:30', 'nda9aXVd', '5388761'), - (795, 1430, 'not_attending', '2022-06-05 02:59:14', '2025-12-17 19:47:30', 'nda9aXVd', '5389402'), - (795, 1431, 'attending', '2022-06-07 23:20:23', '2025-12-17 19:47:30', 'nda9aXVd', '5389605'), - (795, 1432, 'attending', '2022-05-31 19:30:30', '2025-12-17 19:47:30', 'nda9aXVd', '5391566'), - (795, 1433, 'attending', '2022-05-31 19:31:07', '2025-12-17 19:47:30', 'nda9aXVd', '5391667'), - (795, 1434, 'not_attending', '2022-06-01 02:53:30', '2025-12-17 19:47:30', 'nda9aXVd', '5393861'), - (795, 1435, 'attending', '2022-05-31 21:51:44', '2025-12-17 19:47:30', 'nda9aXVd', '5394015'), - (795, 1437, 'not_attending', '2022-06-03 00:56:47', '2025-12-17 19:47:30', 'nda9aXVd', '5394493'), - (795, 1438, 'maybe', '2022-06-01 17:37:51', '2025-12-17 19:47:30', 'nda9aXVd', '5395032'), - (795, 1439, 'maybe', '2022-06-06 17:10:37', '2025-12-17 19:47:30', 'nda9aXVd', '5396072'), - (795, 1440, 'not_attending', '2022-06-03 00:26:26', '2025-12-17 19:47:30', 'nda9aXVd', '5396080'), - (795, 1441, 'not_attending', '2022-06-04 20:46:25', '2025-12-17 19:47:30', 'nda9aXVd', '5397171'), - (795, 1442, 'attending', '2022-06-10 18:35:43', '2025-12-17 19:47:17', 'nda9aXVd', '5397265'), - (795, 1444, 'maybe', '2022-06-07 04:14:08', '2025-12-17 19:47:30', 'nda9aXVd', '5397614'), - (795, 1445, 'maybe', '2022-06-10 18:35:49', '2025-12-17 19:47:17', 'nda9aXVd', '5397615'), - (795, 1446, 'not_attending', '2022-06-09 20:45:46', '2025-12-17 19:47:30', 'nda9aXVd', '5399721'), - (795, 1447, 'not_attending', '2022-06-07 13:46:31', '2025-12-17 19:47:30', 'nda9aXVd', '5401089'), - (795, 1448, 'attending', '2022-06-08 00:03:14', '2025-12-17 19:47:30', 'nda9aXVd', '5401479'), - (795, 1449, 'not_attending', '2022-06-10 18:35:19', '2025-12-17 19:47:31', 'nda9aXVd', '5403335'), - (795, 1450, 'not_attending', '2022-06-10 18:34:07', '2025-12-17 19:47:30', 'nda9aXVd', '5403421'), - (795, 1451, 'attending', '2022-06-10 00:42:24', '2025-12-17 19:47:17', 'nda9aXVd', '5403967'), - (795, 1452, 'not_attending', '2022-06-10 18:34:04', '2025-12-17 19:47:30', 'nda9aXVd', '5404197'), - (795, 1453, 'not_attending', '2022-06-10 18:20:28', '2025-12-17 19:47:31', 'nda9aXVd', '5404745'), - (795, 1454, 'not_attending', '2022-06-10 18:35:09', '2025-12-17 19:47:31', 'nda9aXVd', '5404771'), - (795, 1455, 'not_attending', '2022-06-10 18:35:12', '2025-12-17 19:47:31', 'nda9aXVd', '5404772'), - (795, 1456, 'not_attending', '2022-06-10 18:35:27', '2025-12-17 19:47:17', 'nda9aXVd', '5404779'), - (795, 1457, 'not_attending', '2022-06-10 18:23:16', '2025-12-17 19:47:31', 'nda9aXVd', '5404780'), - (795, 1458, 'attending', '2022-06-19 22:28:57', '2025-12-17 19:47:17', 'nda9aXVd', '5404786'), - (795, 1459, 'attending', '2022-06-10 01:17:41', '2025-12-17 19:47:17', 'nda9aXVd', '5404793'), - (795, 1460, 'attending', '2022-06-13 23:01:46', '2025-12-17 19:47:31', 'nda9aXVd', '5404817'), - (795, 1461, 'not_attending', '2022-06-10 18:35:23', '2025-12-17 19:47:31', 'nda9aXVd', '5405149'), - (795, 1462, 'not_attending', '2022-06-13 16:25:53', '2025-12-17 19:47:17', 'nda9aXVd', '5405203'), - (795, 1463, 'attending', '2022-06-10 18:35:20', '2025-12-17 19:47:31', 'nda9aXVd', '5405208'), - (795, 1464, 'maybe', '2022-06-10 22:11:24', '2025-12-17 19:47:30', 'nda9aXVd', '5405212'), - (795, 1466, 'not_attending', '2022-06-13 16:25:48', '2025-12-17 19:47:17', 'nda9aXVd', '5406427'), - (795, 1468, 'attending', '2022-06-16 01:13:42', '2025-12-17 19:47:19', 'nda9aXVd', '5406832'), - (795, 1469, 'not_attending', '2022-06-13 16:26:08', '2025-12-17 19:47:17', 'nda9aXVd', '5406838'), - (795, 1470, 'not_attending', '2022-06-18 18:57:51', '2025-12-17 19:47:17', 'nda9aXVd', '5407053'), - (795, 1471, 'not_attending', '2022-06-16 01:13:13', '2025-12-17 19:47:17', 'nda9aXVd', '5407063'), - (795, 1472, 'not_attending', '2022-06-16 01:13:23', '2025-12-17 19:47:17', 'nda9aXVd', '5407065'), - (795, 1473, 'maybe', '2022-06-13 16:23:25', '2025-12-17 19:47:31', 'nda9aXVd', '5407267'), - (795, 1474, 'not_attending', '2022-06-16 01:13:32', '2025-12-17 19:47:19', 'nda9aXVd', '5408029'), - (795, 1475, 'attending', '2022-06-16 22:59:38', '2025-12-17 19:47:17', 'nda9aXVd', '5408108'), - (795, 1476, 'maybe', '2022-06-16 01:12:32', '2025-12-17 19:47:17', 'nda9aXVd', '5408130'), - (795, 1477, 'attending', '2022-06-22 00:11:36', '2025-12-17 19:47:17', 'nda9aXVd', '5408766'), - (795, 1478, 'attending', '2022-06-24 03:11:21', '2025-12-17 19:47:17', 'nda9aXVd', '5408794'), - (795, 1479, 'not_attending', '2022-06-17 16:45:05', '2025-12-17 19:47:17', 'nda9aXVd', '5410322'), - (795, 1480, 'not_attending', '2022-06-26 22:45:43', '2025-12-17 19:47:19', 'nda9aXVd', '5411699'), - (795, 1481, 'not_attending', '2022-06-20 17:39:19', '2025-12-17 19:47:17', 'nda9aXVd', '5412237'), - (795, 1482, 'attending', '2022-06-23 18:18:49', '2025-12-17 19:47:19', 'nda9aXVd', '5412550'), - (795, 1483, 'not_attending', '2022-06-20 17:40:12', '2025-12-17 19:47:17', 'nda9aXVd', '5414556'), - (795, 1484, 'not_attending', '2022-06-22 23:44:49', '2025-12-17 19:47:17', 'nda9aXVd', '5415046'), - (795, 1485, 'not_attending', '2022-06-23 17:29:17', '2025-12-17 19:47:17', 'nda9aXVd', '5416276'), - (795, 1486, 'not_attending', '2022-06-26 18:51:21', '2025-12-17 19:47:19', 'nda9aXVd', '5416339'), - (795, 1487, 'not_attending', '2022-06-26 18:51:16', '2025-12-17 19:47:19', 'nda9aXVd', '5419006'), - (795, 1488, 'not_attending', '2022-06-26 18:51:51', '2025-12-17 19:47:19', 'nda9aXVd', '5420154'), - (795, 1489, 'not_attending', '2022-06-26 18:51:53', '2025-12-17 19:47:19', 'nda9aXVd', '5420155'), - (795, 1490, 'not_attending', '2022-06-26 18:52:04', '2025-12-17 19:47:19', 'nda9aXVd', '5420156'), - (795, 1491, 'not_attending', '2022-06-26 18:52:09', '2025-12-17 19:47:19', 'nda9aXVd', '5420158'), - (795, 1492, 'not_attending', '2022-06-26 18:52:06', '2025-12-17 19:47:19', 'nda9aXVd', '5420175'), - (795, 1493, 'attending', '2022-06-25 15:59:15', '2025-12-17 19:47:19', 'nda9aXVd', '5420218'), - (795, 1494, 'not_attending', '2022-06-26 18:52:12', '2025-12-17 19:47:19', 'nda9aXVd', '5421626'), - (795, 1495, 'not_attending', '2022-06-26 18:50:11', '2025-12-17 19:47:19', 'nda9aXVd', '5422086'), - (795, 1496, 'not_attending', '2022-06-26 18:51:18', '2025-12-17 19:47:19', 'nda9aXVd', '5422404'), - (795, 1497, 'not_attending', '2022-06-26 18:51:22', '2025-12-17 19:47:19', 'nda9aXVd', '5422405'), - (795, 1498, 'not_attending', '2022-06-28 15:24:55', '2025-12-17 19:47:19', 'nda9aXVd', '5422406'), - (795, 1499, 'not_attending', '2022-06-26 18:51:31', '2025-12-17 19:47:19', 'nda9aXVd', '5422407'), - (795, 1501, 'not_attending', '2022-06-28 15:24:28', '2025-12-17 19:47:19', 'nda9aXVd', '5424546'), - (795, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nda9aXVd', '5424565'), - (795, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nda9aXVd', '5426882'), - (795, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'nda9aXVd', '5427083'), - (795, 1513, 'not_attending', '2022-07-10 14:43:29', '2025-12-17 19:47:20', 'nda9aXVd', '5441125'), - (795, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nda9aXVd', '5441126'), - (795, 1515, 'attending', '2022-08-03 03:01:45', '2025-12-17 19:47:21', 'nda9aXVd', '5441128'), - (795, 1516, 'attending', '2022-08-11 00:46:10', '2025-12-17 19:47:23', 'nda9aXVd', '5441129'), - (795, 1517, 'attending', '2022-08-26 04:10:52', '2025-12-17 19:47:23', 'nda9aXVd', '5441130'), - (795, 1518, 'attending', '2022-08-22 15:14:43', '2025-12-17 19:47:24', 'nda9aXVd', '5441131'), - (795, 1519, 'attending', '2022-08-22 15:15:04', '2025-12-17 19:47:24', 'nda9aXVd', '5441132'), - (795, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'nda9aXVd', '5446643'), - (795, 1530, 'not_attending', '2022-07-23 19:22:54', '2025-12-17 19:47:20', 'nda9aXVd', '5448612'), - (795, 1532, 'maybe', '2022-07-23 19:23:29', '2025-12-17 19:47:20', 'nda9aXVd', '5448757'), - (795, 1533, 'attending', '2022-07-23 19:23:24', '2025-12-17 19:47:21', 'nda9aXVd', '5448758'), - (795, 1534, 'not_attending', '2022-08-03 03:01:43', '2025-12-17 19:47:21', 'nda9aXVd', '5448759'), - (795, 1538, 'maybe', '2022-07-29 22:04:18', '2025-12-17 19:47:21', 'nda9aXVd', '5449565'), - (795, 1539, 'not_attending', '2022-07-23 19:23:10', '2025-12-17 19:47:21', 'nda9aXVd', '5449671'), - (795, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nda9aXVd', '5453325'), - (795, 1541, 'not_attending', '2022-07-23 19:22:46', '2025-12-17 19:47:20', 'nda9aXVd', '5453542'), - (795, 1542, 'not_attending', '2022-07-23 19:22:44', '2025-12-17 19:47:20', 'nda9aXVd', '5454064'), - (795, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nda9aXVd', '5454516'), - (795, 1544, 'attending', '2022-09-06 00:37:06', '2025-12-17 19:47:11', 'nda9aXVd', '5454517'), - (795, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nda9aXVd', '5454605'), - (795, 1546, 'maybe', '2022-07-23 19:22:52', '2025-12-17 19:47:20', 'nda9aXVd', '5454607'), - (795, 1547, 'not_attending', '2022-07-23 19:22:50', '2025-12-17 19:47:20', 'nda9aXVd', '5454608'), - (795, 1549, 'not_attending', '2022-07-23 19:22:40', '2025-12-17 19:47:20', 'nda9aXVd', '5454789'), - (795, 1550, 'attending', '2022-07-23 19:23:00', '2025-12-17 19:47:20', 'nda9aXVd', '5454803'), - (795, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nda9aXVd', '5455037'), - (795, 1552, 'not_attending', '2022-07-23 19:23:08', '2025-12-17 19:47:20', 'nda9aXVd', '5455149'), - (795, 1556, 'not_attending', '2022-07-23 19:23:30', '2025-12-17 19:47:20', 'nda9aXVd', '5457734'), - (795, 1557, 'not_attending', '2022-07-29 22:04:21', '2025-12-17 19:47:21', 'nda9aXVd', '5458729'), - (795, 1558, 'maybe', '2022-08-22 15:15:09', '2025-12-17 19:47:10', 'nda9aXVd', '5458730'), - (795, 1559, 'maybe', '2022-09-06 00:37:27', '2025-12-17 19:47:11', 'nda9aXVd', '5458731'), - (795, 1560, 'maybe', '2022-08-07 02:46:39', '2025-12-17 19:47:23', 'nda9aXVd', '5458768'), - (795, 1561, 'maybe', '2022-08-07 02:46:31', '2025-12-17 19:47:22', 'nda9aXVd', '5461278'), - (795, 1562, 'not_attending', '2022-08-07 02:46:41', '2025-12-17 19:47:22', 'nda9aXVd', '5469480'), - (795, 1563, 'not_attending', '2022-07-29 22:04:14', '2025-12-17 19:47:21', 'nda9aXVd', '5469889'), - (795, 1564, 'not_attending', '2022-07-29 22:04:16', '2025-12-17 19:47:21', 'nda9aXVd', '5469890'), - (795, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'nda9aXVd', '5471073'), - (795, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nda9aXVd', '5474663'), - (795, 1567, 'not_attending', '2022-08-03 03:09:26', '2025-12-17 19:47:21', 'nda9aXVd', '5477629'), - (795, 1568, 'not_attending', '2022-08-01 16:01:57', '2025-12-17 19:47:21', 'nda9aXVd', '5480628'), - (795, 1569, 'maybe', '2022-08-01 16:02:04', '2025-12-17 19:47:21', 'nda9aXVd', '5481507'), - (795, 1570, 'not_attending', '2022-08-03 03:09:18', '2025-12-17 19:47:21', 'nda9aXVd', '5481830'), - (795, 1571, 'attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nda9aXVd', '5482022'), - (795, 1572, 'not_attending', '2022-08-03 03:10:37', '2025-12-17 19:47:22', 'nda9aXVd', '5482078'), - (795, 1573, 'not_attending', '2022-08-07 02:45:34', '2025-12-17 19:47:22', 'nda9aXVd', '5482152'), - (795, 1574, 'not_attending', '2022-08-07 02:45:42', '2025-12-17 19:47:22', 'nda9aXVd', '5482153'), - (795, 1575, 'maybe', '2022-08-07 02:46:46', '2025-12-17 19:47:23', 'nda9aXVd', '5482250'), - (795, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'nda9aXVd', '5482793'), - (795, 1578, 'not_attending', '2022-08-03 03:09:06', '2025-12-17 19:47:21', 'nda9aXVd', '5483073'), - (795, 1579, 'not_attending', '2022-08-04 03:08:59', '2025-12-17 19:47:22', 'nda9aXVd', '5486019'), - (795, 1580, 'maybe', '2022-08-07 02:45:45', '2025-12-17 19:47:22', 'nda9aXVd', '5488912'), - (795, 1581, 'attending', '2022-08-07 02:45:48', '2025-12-17 19:47:22', 'nda9aXVd', '5490302'), - (795, 1582, 'maybe', '2022-08-11 00:46:08', '2025-12-17 19:47:23', 'nda9aXVd', '5492001'), - (795, 1583, 'not_attending', '2022-08-07 23:00:04', '2025-12-17 19:47:22', 'nda9aXVd', '5492002'), - (795, 1584, 'maybe', '2022-08-26 04:10:54', '2025-12-17 19:47:23', 'nda9aXVd', '5492004'), - (795, 1586, 'not_attending', '2022-08-09 06:39:58', '2025-12-17 19:47:23', 'nda9aXVd', '5492019'), - (795, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nda9aXVd', '5492192'), - (795, 1588, 'maybe', '2022-08-09 06:38:59', '2025-12-17 19:47:22', 'nda9aXVd', '5493139'), - (795, 1589, 'not_attending', '2022-08-17 17:00:14', '2025-12-17 19:47:23', 'nda9aXVd', '5493159'), - (795, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nda9aXVd', '5493200'), - (795, 1591, 'not_attending', '2022-08-14 00:35:48', '2025-12-17 19:47:22', 'nda9aXVd', '5493764'), - (795, 1592, 'not_attending', '2022-08-09 06:38:20', '2025-12-17 19:47:22', 'nda9aXVd', '5494031'), - (795, 1593, 'maybe', '2022-08-11 00:46:26', '2025-12-17 19:47:22', 'nda9aXVd', '5494043'), - (795, 1594, 'attending', '2022-08-09 17:08:45', '2025-12-17 19:47:22', 'nda9aXVd', '5495523'), - (795, 1595, 'not_attending', '2022-08-10 15:55:10', '2025-12-17 19:47:22', 'nda9aXVd', '5495736'), - (795, 1597, 'not_attending', '2022-08-14 00:35:51', '2025-12-17 19:47:22', 'nda9aXVd', '5496566'), - (795, 1598, 'not_attending', '2022-08-14 00:35:56', '2025-12-17 19:47:22', 'nda9aXVd', '5496567'), - (795, 1599, 'maybe', '2022-08-22 15:13:49', '2025-12-17 19:47:23', 'nda9aXVd', '5496568'), - (795, 1600, 'not_attending', '2022-08-22 15:14:27', '2025-12-17 19:47:24', 'nda9aXVd', '5496569'), - (795, 1601, 'not_attending', '2022-08-14 00:35:53', '2025-12-17 19:47:22', 'nda9aXVd', '5496589'), - (795, 1602, 'not_attending', '2022-08-11 16:40:52', '2025-12-17 19:47:22', 'nda9aXVd', '5497383'), - (795, 1603, 'maybe', '2022-08-12 03:12:43', '2025-12-17 19:47:23', 'nda9aXVd', '5497895'), - (795, 1604, 'not_attending', '2022-08-17 16:59:10', '2025-12-17 19:47:22', 'nda9aXVd', '5501504'), - (795, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nda9aXVd', '5502188'), - (795, 1606, 'not_attending', '2022-08-22 15:14:17', '2025-12-17 19:47:23', 'nda9aXVd', '5504585'), - (795, 1607, 'not_attending', '2022-08-17 17:00:16', '2025-12-17 19:47:23', 'nda9aXVd', '5504589'), - (795, 1608, 'maybe', '2022-08-22 15:14:34', '2025-12-17 19:47:24', 'nda9aXVd', '5505059'), - (795, 1609, 'attending', '2022-08-22 15:13:36', '2025-12-17 19:47:23', 'nda9aXVd', '5506590'), - (795, 1610, 'not_attending', '2022-08-22 15:13:53', '2025-12-17 19:47:23', 'nda9aXVd', '5506595'), - (795, 1611, 'maybe', '2022-08-22 15:14:55', '2025-12-17 19:47:24', 'nda9aXVd', '5507652'), - (795, 1612, 'not_attending', '2022-09-06 00:37:42', '2025-12-17 19:47:12', 'nda9aXVd', '5507653'), - (795, 1613, 'not_attending', '2022-10-10 00:52:57', '2025-12-17 19:47:14', 'nda9aXVd', '5507654'), - (795, 1614, 'maybe', '2022-08-22 15:13:18', '2025-12-17 19:47:23', 'nda9aXVd', '5508371'), - (795, 1615, 'maybe', '2022-08-22 15:14:20', '2025-12-17 19:47:23', 'nda9aXVd', '5509055'), - (795, 1616, 'not_attending', '2022-08-22 15:13:02', '2025-12-17 19:47:23', 'nda9aXVd', '5509478'), - (795, 1617, 'not_attending', '2022-08-22 15:14:59', '2025-12-17 19:47:24', 'nda9aXVd', '5512003'), - (795, 1618, 'maybe', '2022-08-26 04:11:06', '2025-12-17 19:47:23', 'nda9aXVd', '5512005'), - (795, 1619, 'attending', '2022-08-23 16:02:40', '2025-12-17 19:47:23', 'nda9aXVd', '5512862'), - (795, 1620, 'not_attending', '2022-08-23 16:02:52', '2025-12-17 19:47:23', 'nda9aXVd', '5513046'), - (795, 1621, 'not_attending', '2022-08-23 16:02:16', '2025-12-17 19:47:23', 'nda9aXVd', '5513531'), - (795, 1622, 'not_attending', '2022-08-23 16:02:46', '2025-12-17 19:47:23', 'nda9aXVd', '5513677'), - (795, 1623, 'attending', '2022-08-23 16:03:03', '2025-12-17 19:47:23', 'nda9aXVd', '5513678'), - (795, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nda9aXVd', '5513985'), - (795, 1625, 'not_attending', '2022-08-26 15:17:42', '2025-12-17 19:47:23', 'nda9aXVd', '5519736'), - (795, 1626, 'not_attending', '2022-08-26 04:10:24', '2025-12-17 19:47:11', 'nda9aXVd', '5519981'), - (795, 1627, 'not_attending', '2022-09-01 15:02:35', '2025-12-17 19:47:24', 'nda9aXVd', '5521552'), - (795, 1628, 'attending', '2022-08-28 18:12:16', '2025-12-17 19:47:23', 'nda9aXVd', '5522500'), - (795, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nda9aXVd', '5522550'), - (795, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nda9aXVd', '5534683'), - (795, 1631, 'attending', '2022-08-27 22:08:18', '2025-12-17 19:47:23', 'nda9aXVd', '5534684'), - (795, 1633, 'not_attending', '2022-09-04 15:48:28', '2025-12-17 19:47:24', 'nda9aXVd', '5536575'), - (795, 1634, 'not_attending', '2022-08-29 15:21:07', '2025-12-17 19:47:23', 'nda9aXVd', '5536950'), - (795, 1635, 'not_attending', '2022-09-06 00:36:34', '2025-12-17 19:47:10', 'nda9aXVd', '5537735'), - (795, 1636, 'attending', '2022-09-04 15:28:33', '2025-12-17 19:47:24', 'nda9aXVd', '5538454'), - (795, 1637, 'not_attending', '2022-09-04 15:29:00', '2025-12-17 19:47:24', 'nda9aXVd', '5539591'), - (795, 1638, 'not_attending', '2022-09-01 15:02:33', '2025-12-17 19:47:24', 'nda9aXVd', '5540402'), - (795, 1639, 'not_attending', '2022-09-01 15:02:44', '2025-12-17 19:47:24', 'nda9aXVd', '5540403'), - (795, 1640, 'not_attending', '2022-09-06 00:36:28', '2025-12-17 19:47:10', 'nda9aXVd', '5540859'), - (795, 1641, 'maybe', '2022-09-01 15:02:04', '2025-12-17 19:47:24', 'nda9aXVd', '5544226'), - (795, 1642, 'maybe', '2022-09-04 15:49:12', '2025-12-17 19:47:24', 'nda9aXVd', '5544227'), - (795, 1643, 'attending', '2022-09-05 15:07:23', '2025-12-17 19:47:11', 'nda9aXVd', '5545856'), - (795, 1644, 'not_attending', '2022-09-06 00:36:48', '2025-12-17 19:47:11', 'nda9aXVd', '5545857'), - (795, 1645, 'maybe', '2022-09-04 15:49:23', '2025-12-17 19:47:25', 'nda9aXVd', '5546559'), - (795, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nda9aXVd', '5546619'), - (795, 1647, 'not_attending', '2022-09-06 00:36:42', '2025-12-17 19:47:11', 'nda9aXVd', '5548660'), - (795, 1648, 'not_attending', '2022-09-04 15:29:04', '2025-12-17 19:47:24', 'nda9aXVd', '5548974'), - (795, 1650, 'not_attending', '2022-09-04 15:48:15', '2025-12-17 19:47:24', 'nda9aXVd', '5549611'), - (795, 1651, 'not_attending', '2022-09-04 15:28:48', '2025-12-17 19:47:24', 'nda9aXVd', '5551425'), - (795, 1652, 'not_attending', '2022-09-06 00:35:50', '2025-12-17 19:47:24', 'nda9aXVd', '5552671'), - (795, 1653, 'not_attending', '2022-09-06 00:37:00', '2025-12-17 19:47:11', 'nda9aXVd', '5554400'), - (795, 1654, 'not_attending', '2022-09-06 00:36:08', '2025-12-17 19:47:25', 'nda9aXVd', '5554471'), - (795, 1655, 'not_attending', '2022-09-05 18:15:44', '2025-12-17 19:47:11', 'nda9aXVd', '5554482'), - (795, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'nda9aXVd', '5555245'), - (795, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nda9aXVd', '5557747'), - (795, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nda9aXVd', '5560255'), - (795, 1663, 'not_attending', '2022-09-10 16:01:15', '2025-12-17 19:47:24', 'nda9aXVd', '5562345'), - (795, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nda9aXVd', '5562906'), - (795, 1665, 'maybe', '2022-09-11 15:41:45', '2025-12-17 19:47:25', 'nda9aXVd', '5563133'), - (795, 1666, 'not_attending', '2022-09-26 19:39:49', '2025-12-17 19:47:11', 'nda9aXVd', '5563208'), - (795, 1667, 'not_attending', '2022-09-18 17:34:58', '2025-12-17 19:47:11', 'nda9aXVd', '5563221'), - (795, 1668, 'not_attending', '2022-09-26 19:40:01', '2025-12-17 19:47:12', 'nda9aXVd', '5563222'), - (795, 1669, 'not_attending', '2022-09-13 11:00:11', '2025-12-17 19:47:10', 'nda9aXVd', '5564033'), - (795, 1670, 'maybe', '2022-09-17 16:50:46', '2025-12-17 19:47:11', 'nda9aXVd', '5575076'), - (795, 1672, 'maybe', '2022-09-17 16:49:32', '2025-12-17 19:47:11', 'nda9aXVd', '5586237'), - (795, 1673, 'not_attending', '2022-09-26 19:39:54', '2025-12-17 19:47:11', 'nda9aXVd', '5592454'), - (795, 1674, 'not_attending', '2022-09-26 19:40:03', '2025-12-17 19:47:12', 'nda9aXVd', '5593112'), - (795, 1675, 'attending', '2022-09-18 21:42:58', '2025-12-17 19:47:11', 'nda9aXVd', '5593342'), - (795, 1676, 'not_attending', '2022-09-22 21:18:49', '2025-12-17 19:47:11', 'nda9aXVd', '5596181'), - (795, 1677, 'not_attending', '2022-09-21 22:52:12', '2025-12-17 19:47:11', 'nda9aXVd', '5600604'), - (795, 1679, 'not_attending', '2022-10-01 16:16:37', '2025-12-17 19:47:12', 'nda9aXVd', '5601099'), - (795, 1680, 'not_attending', '2022-09-26 19:39:47', '2025-12-17 19:47:11', 'nda9aXVd', '5601577'), - (795, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nda9aXVd', '5605544'), - (795, 1698, 'attending', '2022-09-26 19:39:30', '2025-12-17 19:47:11', 'nda9aXVd', '5606366'), - (795, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'nda9aXVd', '5606737'), - (795, 1700, 'not_attending', '2022-09-26 19:39:58', '2025-12-17 19:47:12', 'nda9aXVd', '5606814'), - (795, 1701, 'not_attending', '2022-09-28 11:39:04', '2025-12-17 19:47:11', 'nda9aXVd', '5607857'), - (795, 1702, 'not_attending', '2022-10-01 16:17:06', '2025-12-17 19:47:12', 'nda9aXVd', '5609173'), - (795, 1704, 'not_attending', '2022-10-03 02:45:46', '2025-12-17 19:47:12', 'nda9aXVd', '5610508'), - (795, 1705, 'not_attending', '2022-10-01 16:16:25', '2025-12-17 19:47:12', 'nda9aXVd', '5612209'), - (795, 1707, 'not_attending', '2022-10-01 16:17:16', '2025-12-17 19:47:12', 'nda9aXVd', '5613104'), - (795, 1708, 'maybe', '2022-10-01 16:17:00', '2025-12-17 19:47:12', 'nda9aXVd', '5617648'), - (795, 1709, 'not_attending', '2022-10-10 00:52:27', '2025-12-17 19:47:13', 'nda9aXVd', '5619533'), - (795, 1710, 'not_attending', '2022-10-03 02:45:36', '2025-12-17 19:47:12', 'nda9aXVd', '5621822'), - (795, 1711, 'not_attending', '2022-10-03 02:45:44', '2025-12-17 19:47:12', 'nda9aXVd', '5621883'), - (795, 1712, 'not_attending', '2022-10-03 02:46:18', '2025-12-17 19:47:12', 'nda9aXVd', '5622073'), - (795, 1713, 'not_attending', '2022-10-03 02:46:26', '2025-12-17 19:47:13', 'nda9aXVd', '5622108'), - (795, 1714, 'not_attending', '2022-10-10 00:52:39', '2025-12-17 19:47:14', 'nda9aXVd', '5622347'), - (795, 1715, 'not_attending', '2022-10-03 02:45:56', '2025-12-17 19:47:12', 'nda9aXVd', '5622411'), - (795, 1716, 'maybe', '2022-10-03 02:46:01', '2025-12-17 19:47:12', 'nda9aXVd', '5622429'), - (795, 1717, 'not_attending', '2022-10-03 02:46:30', '2025-12-17 19:47:13', 'nda9aXVd', '5622842'), - (795, 1718, 'not_attending', '2022-10-10 00:51:56', '2025-12-17 19:47:12', 'nda9aXVd', '5630907'), - (795, 1719, 'not_attending', '2022-10-08 22:20:51', '2025-12-17 19:47:12', 'nda9aXVd', '5630958'), - (795, 1720, 'attending', '2022-10-10 00:50:52', '2025-12-17 19:47:12', 'nda9aXVd', '5630959'), - (795, 1721, 'not_attending', '2022-10-10 00:52:22', '2025-12-17 19:47:13', 'nda9aXVd', '5630960'), - (795, 1722, 'not_attending', '2022-10-10 00:52:48', '2025-12-17 19:47:14', 'nda9aXVd', '5630961'), - (795, 1723, 'maybe', '2022-10-10 00:53:05', '2025-12-17 19:47:15', 'nda9aXVd', '5630962'), - (795, 1724, 'attending', '2022-10-31 22:52:10', '2025-12-17 19:47:15', 'nda9aXVd', '5630966'), - (795, 1725, 'not_attending', '2022-11-12 19:21:45', '2025-12-17 19:47:16', 'nda9aXVd', '5630967'), - (795, 1726, 'not_attending', '2022-11-20 22:16:22', '2025-12-17 19:47:16', 'nda9aXVd', '5630968'), - (795, 1727, 'attending', '2022-11-12 19:23:35', '2025-12-17 19:47:16', 'nda9aXVd', '5630969'), - (795, 1728, 'not_attending', '2022-12-06 15:00:38', '2025-12-17 19:47:17', 'nda9aXVd', '5630970'), - (795, 1730, 'not_attending', '2022-10-10 00:50:23', '2025-12-17 19:47:12', 'nda9aXVd', '5634666'), - (795, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nda9aXVd', '5635406'), - (795, 1733, 'not_attending', '2022-10-10 00:50:38', '2025-12-17 19:47:12', 'nda9aXVd', '5635411'), - (795, 1736, 'not_attending', '2022-10-10 00:53:01', '2025-12-17 19:47:15', 'nda9aXVd', '5638456'), - (795, 1737, 'maybe', '2022-11-29 00:47:53', '2025-12-17 19:47:16', 'nda9aXVd', '5638457'), - (795, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nda9aXVd', '5638765'), - (795, 1739, 'maybe', '2022-10-10 00:52:43', '2025-12-17 19:47:14', 'nda9aXVd', '5640097'), - (795, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'nda9aXVd', '5640843'), - (795, 1741, 'not_attending', '2022-10-10 00:50:31', '2025-12-17 19:47:12', 'nda9aXVd', '5641132'), - (795, 1742, 'not_attending', '2022-10-10 00:52:16', '2025-12-17 19:47:13', 'nda9aXVd', '5641245'), - (795, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nda9aXVd', '5641521'), - (795, 1744, 'not_attending', '2022-11-21 16:34:38', '2025-12-17 19:47:16', 'nda9aXVd', '5642818'), - (795, 1745, 'not_attending', '2022-10-15 18:29:12', '2025-12-17 19:47:12', 'nda9aXVd', '5643088'), - (795, 1747, 'not_attending', '2022-10-21 15:23:12', '2025-12-17 19:47:14', 'nda9aXVd', '5648009'), - (795, 1750, 'maybe', '2022-10-25 01:59:53', '2025-12-17 19:47:15', 'nda9aXVd', '5652365'), - (795, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nda9aXVd', '5652395'), - (795, 1752, 'not_attending', '2022-10-15 18:29:18', '2025-12-17 19:47:12', 'nda9aXVd', '5653503'), - (795, 1753, 'not_attending', '2022-10-21 15:22:53', '2025-12-17 19:47:13', 'nda9aXVd', '5656228'), - (795, 1756, 'not_attending', '2022-10-21 15:23:08', '2025-12-17 19:47:13', 'nda9aXVd', '5663338'), - (795, 1757, 'not_attending', '2022-10-25 01:59:49', '2025-12-17 19:47:15', 'nda9aXVd', '5668974'), - (795, 1758, 'not_attending', '2022-10-21 15:22:55', '2025-12-17 19:47:13', 'nda9aXVd', '5668976'), - (795, 1759, 'not_attending', '2022-10-21 15:23:02', '2025-12-17 19:47:13', 'nda9aXVd', '5669097'), - (795, 1761, 'maybe', '2022-11-12 19:21:17', '2025-12-17 19:47:16', 'nda9aXVd', '5670434'), - (795, 1762, 'not_attending', '2022-11-12 19:23:22', '2025-12-17 19:47:16', 'nda9aXVd', '5670445'), - (795, 1763, 'attending', '2022-10-31 22:51:57', '2025-12-17 19:47:15', 'nda9aXVd', '5670803'), - (795, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nda9aXVd', '5671637'), - (795, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nda9aXVd', '5672329'), - (795, 1766, 'maybe', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nda9aXVd', '5674057'), - (795, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nda9aXVd', '5674060'), - (795, 1768, 'maybe', '2022-11-12 19:21:47', '2025-12-17 19:47:16', 'nda9aXVd', '5674062'), - (795, 1769, 'not_attending', '2022-10-31 22:51:19', '2025-12-17 19:47:15', 'nda9aXVd', '5676351'), - (795, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nda9aXVd', '5677461'), - (795, 1773, 'not_attending', '2022-10-30 00:18:13', '2025-12-17 19:47:14', 'nda9aXVd', '5677707'), - (795, 1774, 'not_attending', '2022-10-31 22:51:13', '2025-12-17 19:47:15', 'nda9aXVd', '5677843'), - (795, 1776, 'maybe', '2022-10-31 22:51:53', '2025-12-17 19:47:15', 'nda9aXVd', '5691067'), - (795, 1777, 'not_attending', '2022-10-31 22:51:47', '2025-12-17 19:47:15', 'nda9aXVd', '5693021'), - (795, 1778, 'not_attending', '2022-10-31 22:51:04', '2025-12-17 19:47:15', 'nda9aXVd', '5694251'), - (795, 1779, 'maybe', '2022-10-31 22:51:40', '2025-12-17 19:47:15', 'nda9aXVd', '5694252'), - (795, 1780, 'not_attending', '2022-11-07 13:15:53', '2025-12-17 19:47:15', 'nda9aXVd', '5696082'), - (795, 1781, 'not_attending', '2022-11-02 23:00:21', '2025-12-17 19:47:15', 'nda9aXVd', '5696178'), - (795, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nda9aXVd', '5698046'), - (795, 1783, 'not_attending', '2022-11-12 19:21:13', '2025-12-17 19:47:16', 'nda9aXVd', '5698621'), - (795, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'nda9aXVd', '5699760'), - (795, 1785, 'not_attending', '2022-11-12 19:20:53', '2025-12-17 19:47:15', 'nda9aXVd', '5702414'), - (795, 1786, 'not_attending', '2022-11-07 13:16:16', '2025-12-17 19:47:15', 'nda9aXVd', '5727232'), - (795, 1787, 'not_attending', '2022-11-12 19:21:02', '2025-12-17 19:47:16', 'nda9aXVd', '5727234'), - (795, 1788, 'attending', '2022-11-06 23:51:12', '2025-12-17 19:47:16', 'nda9aXVd', '5727236'), - (795, 1789, 'attending', '2022-11-07 00:35:05', '2025-12-17 19:47:15', 'nda9aXVd', '5727274'), - (795, 1790, 'not_attending', '2022-11-07 13:16:18', '2025-12-17 19:47:15', 'nda9aXVd', '5727424'), - (795, 1792, 'not_attending', '2022-11-12 01:37:40', '2025-12-17 19:47:15', 'nda9aXVd', '5728512'), - (795, 1793, 'not_attending', '2022-11-12 19:22:02', '2025-12-17 19:47:16', 'nda9aXVd', '5736365'), - (795, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nda9aXVd', '5741601'), - (795, 1795, 'not_attending', '2022-11-17 01:04:09', '2025-12-17 19:47:16', 'nda9aXVd', '5754366'), - (795, 1796, 'not_attending', '2022-11-21 16:34:14', '2025-12-17 19:47:16', 'nda9aXVd', '5756755'), - (795, 1797, 'not_attending', '2022-11-29 00:48:36', '2025-12-17 19:47:17', 'nda9aXVd', '5757486'), - (795, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nda9aXVd', '5763458'), - (795, 1799, 'not_attending', '2022-11-20 22:16:25', '2025-12-17 19:47:16', 'nda9aXVd', '5764666'), - (795, 1801, 'maybe', '2022-11-29 00:48:17', '2025-12-17 19:47:16', 'nda9aXVd', '5764668'), - (795, 1802, 'not_attending', '2022-12-06 15:00:33', '2025-12-17 19:47:17', 'nda9aXVd', '5764669'), - (795, 1803, 'maybe', '2022-12-28 01:02:03', '2025-12-17 19:47:05', 'nda9aXVd', '5764673'), - (795, 1804, 'maybe', '2023-01-21 18:04:23', '2025-12-17 19:47:06', 'nda9aXVd', '5764674'), - (795, 1805, 'not_attending', '2023-02-03 20:06:04', '2025-12-17 19:47:06', 'nda9aXVd', '5764675'), - (795, 1806, 'maybe', '2023-01-08 22:19:27', '2025-12-17 19:47:05', 'nda9aXVd', '5764676'), - (795, 1807, 'maybe', '2023-01-08 22:19:25', '2025-12-17 19:47:05', 'nda9aXVd', '5764677'), - (795, 1808, 'not_attending', '2023-02-26 02:54:35', '2025-12-17 19:47:08', 'nda9aXVd', '5764678'), - (795, 1809, 'not_attending', '2023-04-15 11:41:22', '2025-12-17 19:46:59', 'nda9aXVd', '5764679'), - (795, 1810, 'not_attending', '2023-04-18 17:22:35', '2025-12-17 19:47:00', 'nda9aXVd', '5764680'), - (795, 1811, 'not_attending', '2023-05-04 10:47:26', '2025-12-17 19:47:02', 'nda9aXVd', '5764681'), - (795, 1812, 'not_attending', '2023-02-26 03:02:21', '2025-12-17 19:47:09', 'nda9aXVd', '5764682'), - (795, 1813, 'not_attending', '2023-04-18 17:41:38', '2025-12-17 19:47:01', 'nda9aXVd', '5764683'), - (795, 1814, 'not_attending', '2023-02-17 08:18:14', '2025-12-17 19:47:08', 'nda9aXVd', '5764684'), - (795, 1815, 'not_attending', '2023-02-17 08:17:16', '2025-12-17 19:47:07', 'nda9aXVd', '5764685'), - (795, 1816, 'maybe', '2023-05-05 11:23:12', '2025-12-17 19:47:03', 'nda9aXVd', '5764686'), - (795, 1817, 'maybe', '2023-02-26 03:02:28', '2025-12-17 19:46:57', 'nda9aXVd', '5764687'), - (795, 1818, 'maybe', '2023-02-06 16:38:51', '2025-12-17 19:47:07', 'nda9aXVd', '5764688'), - (795, 1819, 'not_attending', '2023-04-05 16:23:43', '2025-12-17 19:46:58', 'nda9aXVd', '5764689'), - (795, 1820, 'maybe', '2023-04-05 16:25:49', '2025-12-17 19:46:58', 'nda9aXVd', '5764690'), - (795, 1821, 'not_attending', '2023-02-26 02:55:18', '2025-12-17 19:46:56', 'nda9aXVd', '5764691'), - (795, 1822, 'not_attending', '2023-05-05 11:22:53', '2025-12-17 19:47:02', 'nda9aXVd', '5764692'), - (795, 1823, 'not_attending', '2022-11-29 00:48:31', '2025-12-17 19:47:16', 'nda9aXVd', '5768880'), - (795, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nda9aXVd', '5774172'), - (795, 1825, 'not_attending', '2022-11-29 00:48:33', '2025-12-17 19:47:16', 'nda9aXVd', '5776760'), - (795, 1826, 'maybe', '2022-12-08 06:54:22', '2025-12-17 19:47:04', 'nda9aXVd', '5776768'), - (795, 1827, 'not_attending', '2022-11-29 00:47:44', '2025-12-17 19:47:16', 'nda9aXVd', '5776786'), - (795, 1828, 'maybe', '2022-11-29 00:47:55', '2025-12-17 19:47:16', 'nda9aXVd', '5778865'), - (795, 1829, 'maybe', '2022-11-29 00:48:25', '2025-12-17 19:47:16', 'nda9aXVd', '5778867'), - (795, 1830, 'not_attending', '2022-11-29 00:47:45', '2025-12-17 19:47:16', 'nda9aXVd', '5778871'), - (795, 1831, 'not_attending', '2022-12-06 15:00:25', '2025-12-17 19:47:16', 'nda9aXVd', '5813239'), - (795, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nda9aXVd', '5818247'), - (795, 1833, 'not_attending', '2022-12-05 04:49:51', '2025-12-17 19:47:16', 'nda9aXVd', '5819465'), - (795, 1834, 'not_attending', '2022-12-06 15:00:35', '2025-12-17 19:47:17', 'nda9aXVd', '5819470'), - (795, 1835, 'maybe', '2022-12-08 06:54:00', '2025-12-17 19:47:05', 'nda9aXVd', '5819471'), - (795, 1836, 'not_attending', '2022-12-05 16:51:03', '2025-12-17 19:47:16', 'nda9aXVd', '5819484'), - (795, 1837, 'not_attending', '2022-12-06 21:40:03', '2025-12-17 19:47:16', 'nda9aXVd', '5820146'), - (795, 1838, 'not_attending', '2022-12-06 15:00:08', '2025-12-17 19:47:16', 'nda9aXVd', '5821722'), - (795, 1839, 'not_attending', '2022-12-08 06:54:17', '2025-12-17 19:47:04', 'nda9aXVd', '5821920'), - (795, 1840, 'not_attending', '2022-12-06 15:00:29', '2025-12-17 19:47:16', 'nda9aXVd', '5822288'), - (795, 1841, 'maybe', '2022-12-09 04:01:31', '2025-12-17 19:47:05', 'nda9aXVd', '5827665'), - (795, 1842, 'not_attending', '2022-12-09 04:01:11', '2025-12-17 19:47:04', 'nda9aXVd', '5827739'), - (795, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nda9aXVd', '5844306'), - (795, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nda9aXVd', '5850159'), - (795, 1848, 'not_attending', '2022-12-28 01:02:00', '2025-12-17 19:47:05', 'nda9aXVd', '5852466'), - (795, 1849, 'maybe', '2022-12-28 01:01:57', '2025-12-17 19:47:05', 'nda9aXVd', '5852467'), - (795, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nda9aXVd', '5858999'), - (795, 1851, 'not_attending', '2023-01-08 22:19:20', '2025-12-17 19:47:05', 'nda9aXVd', '5869316'), - (795, 1852, 'maybe', '2023-01-09 17:39:00', '2025-12-17 19:47:05', 'nda9aXVd', '5869898'), - (795, 1853, 'maybe', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nda9aXVd', '5871984'), - (795, 1855, 'attending', '2023-01-13 13:37:26', '2025-12-17 19:47:05', 'nda9aXVd', '5873968'), - (795, 1856, 'not_attending', '2023-01-14 21:30:13', '2025-12-17 19:47:05', 'nda9aXVd', '5873970'), - (795, 1857, 'attending', '2023-01-21 18:04:13', '2025-12-17 19:47:05', 'nda9aXVd', '5873973'), - (795, 1858, 'not_attending', '2023-01-14 21:30:11', '2025-12-17 19:47:05', 'nda9aXVd', '5875044'), - (795, 1859, 'maybe', '2023-01-14 21:30:44', '2025-12-17 19:47:05', 'nda9aXVd', '5876234'), - (795, 1860, 'not_attending', '2023-01-14 21:30:30', '2025-12-17 19:47:05', 'nda9aXVd', '5876309'), - (795, 1861, 'not_attending', '2023-01-14 21:30:23', '2025-12-17 19:47:05', 'nda9aXVd', '5876354'), - (795, 1862, 'not_attending', '2023-02-03 20:06:09', '2025-12-17 19:47:06', 'nda9aXVd', '5877254'), - (795, 1863, 'maybe', '2023-01-21 18:04:29', '2025-12-17 19:47:06', 'nda9aXVd', '5877255'), - (795, 1865, 'attending', '2023-01-21 18:04:26', '2025-12-17 19:47:06', 'nda9aXVd', '5879676'), - (795, 1866, 'not_attending', '2023-01-21 18:04:17', '2025-12-17 19:47:05', 'nda9aXVd', '5880939'), - (795, 1867, 'not_attending', '2023-02-03 20:06:16', '2025-12-17 19:47:07', 'nda9aXVd', '5880940'), - (795, 1868, 'not_attending', '2023-02-17 08:18:05', '2025-12-17 19:47:07', 'nda9aXVd', '5880942'), - (795, 1869, 'not_attending', '2023-02-26 02:54:49', '2025-12-17 19:47:09', 'nda9aXVd', '5880943'), - (795, 1873, 'not_attending', '2023-01-21 18:04:05', '2025-12-17 19:47:05', 'nda9aXVd', '5885295'), - (795, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nda9aXVd', '5887890'), - (795, 1875, 'not_attending', '2023-01-24 05:04:00', '2025-12-17 19:47:06', 'nda9aXVd', '5887908'), - (795, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nda9aXVd', '5888598'), - (795, 1877, 'not_attending', '2023-01-23 02:40:19', '2025-12-17 19:47:05', 'nda9aXVd', '5888693'), - (795, 1878, 'not_attending', '2023-02-03 20:06:13', '2025-12-17 19:47:07', 'nda9aXVd', '5893000'), - (795, 1879, 'maybe', '2023-01-24 20:52:56', '2025-12-17 19:47:06', 'nda9aXVd', '5893001'), - (795, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nda9aXVd', '5893260'), - (795, 1881, 'not_attending', '2023-02-05 15:40:09', '2025-12-17 19:47:07', 'nda9aXVd', '5894218'), - (795, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nda9aXVd', '5899826'), - (795, 1885, 'not_attending', '2023-02-17 08:18:12', '2025-12-17 19:47:08', 'nda9aXVd', '5899928'), - (795, 1886, 'maybe', '2023-02-26 02:54:51', '2025-12-17 19:47:09', 'nda9aXVd', '5899930'), - (795, 1889, 'maybe', '2023-02-03 20:06:19', '2025-12-17 19:47:07', 'nda9aXVd', '5900199'), - (795, 1890, 'not_attending', '2023-02-17 08:18:08', '2025-12-17 19:47:08', 'nda9aXVd', '5900200'), - (795, 1891, 'maybe', '2023-03-19 21:12:55', '2025-12-17 19:46:56', 'nda9aXVd', '5900202'), - (795, 1892, 'not_attending', '2023-02-26 03:02:32', '2025-12-17 19:46:56', 'nda9aXVd', '5900203'), - (795, 1894, 'not_attending', '2023-02-03 20:05:49', '2025-12-17 19:47:06', 'nda9aXVd', '5901100'), - (795, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nda9aXVd', '5901108'), - (795, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nda9aXVd', '5901126'), - (795, 1897, 'attending', '2023-02-06 16:38:54', '2025-12-17 19:47:07', 'nda9aXVd', '5901128'), - (795, 1899, 'not_attending', '2023-02-03 20:06:23', '2025-12-17 19:47:07', 'nda9aXVd', '5901323'), - (795, 1900, 'not_attending', '2023-02-03 20:05:54', '2025-12-17 19:47:06', 'nda9aXVd', '5901331'), - (795, 1901, 'not_attending', '2023-02-03 20:06:11', '2025-12-17 19:47:07', 'nda9aXVd', '5901606'), - (795, 1902, 'not_attending', '2023-02-03 20:06:03', '2025-12-17 19:47:06', 'nda9aXVd', '5902254'), - (795, 1904, 'not_attending', '2023-02-03 20:06:21', '2025-12-17 19:47:07', 'nda9aXVd', '5903239'), - (795, 1905, 'not_attending', '2023-02-03 20:06:08', '2025-12-17 19:47:06', 'nda9aXVd', '5904479'), - (795, 1906, 'not_attending', '2023-02-26 02:54:56', '2025-12-17 19:47:09', 'nda9aXVd', '5904523'), - (795, 1909, 'not_attending', '2023-02-06 16:38:21', '2025-12-17 19:47:07', 'nda9aXVd', '5906541'), - (795, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nda9aXVd', '5909655'), - (795, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nda9aXVd', '5910522'), - (795, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nda9aXVd', '5910526'), - (795, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nda9aXVd', '5910528'), - (795, 1920, 'attending', '2023-02-09 21:08:06', '2025-12-17 19:47:07', 'nda9aXVd', '5914091'), - (795, 1921, 'attending', '2023-02-09 21:08:04', '2025-12-17 19:47:08', 'nda9aXVd', '5914092'), - (795, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nda9aXVd', '5916219'), - (795, 1923, 'not_attending', '2023-02-16 22:29:20', '2025-12-17 19:47:07', 'nda9aXVd', '5930436'), - (795, 1924, 'not_attending', '2023-02-17 08:18:01', '2025-12-17 19:47:07', 'nda9aXVd', '5931095'), - (795, 1926, 'not_attending', '2023-02-26 02:54:23', '2025-12-17 19:47:08', 'nda9aXVd', '5932620'), - (795, 1927, 'not_attending', '2023-02-26 03:02:38', '2025-12-17 19:47:10', 'nda9aXVd', '5932621'), - (795, 1930, 'not_attending', '2023-02-25 01:56:45', '2025-12-17 19:47:08', 'nda9aXVd', '5933462'), - (795, 1931, 'not_attending', '2023-02-25 01:56:46', '2025-12-17 19:47:08', 'nda9aXVd', '5933464'), - (795, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nda9aXVd', '5936234'), - (795, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nda9aXVd', '5958351'), - (795, 1936, 'not_attending', '2023-02-26 02:53:23', '2025-12-17 19:47:08', 'nda9aXVd', '5959397'), - (795, 1937, 'not_attending', '2023-02-25 01:56:43', '2025-12-17 19:47:08', 'nda9aXVd', '5959584'), - (795, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nda9aXVd', '5959751'), - (795, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nda9aXVd', '5959755'), - (795, 1940, 'maybe', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nda9aXVd', '5960055'), - (795, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nda9aXVd', '5961684'), - (795, 1942, 'maybe', '2023-02-26 02:54:20', '2025-12-17 19:47:08', 'nda9aXVd', '5962085'), - (795, 1943, 'not_attending', '2023-02-26 03:02:46', '2025-12-17 19:47:10', 'nda9aXVd', '5962091'), - (795, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nda9aXVd', '5962132'), - (795, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nda9aXVd', '5962133'), - (795, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nda9aXVd', '5962134'), - (795, 1947, 'not_attending', '2023-02-26 02:54:39', '2025-12-17 19:47:09', 'nda9aXVd', '5962233'), - (795, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nda9aXVd', '5962317'), - (795, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nda9aXVd', '5962318'), - (795, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nda9aXVd', '5965933'), - (795, 1952, 'not_attending', '2023-03-01 18:25:08', '2025-12-17 19:47:08', 'nda9aXVd', '5965937'), - (795, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nda9aXVd', '5967014'), - (795, 1955, 'maybe', '2023-03-25 13:33:30', '2025-12-17 19:46:57', 'nda9aXVd', '5972529'), - (795, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'nda9aXVd', '5972763'), - (795, 1957, 'maybe', '2023-03-06 06:10:48', '2025-12-17 19:47:10', 'nda9aXVd', '5972815'), - (795, 1958, 'not_attending', '2023-03-06 16:54:05', '2025-12-17 19:47:09', 'nda9aXVd', '5972821'), - (795, 1959, 'maybe', '2023-03-13 04:01:28', '2025-12-17 19:46:57', 'nda9aXVd', '5972829'), - (795, 1960, 'maybe', '2023-03-11 02:42:48', '2025-12-17 19:47:09', 'nda9aXVd', '5973267'), - (795, 1961, 'maybe', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nda9aXVd', '5974016'), - (795, 1963, 'not_attending', '2023-03-11 02:43:03', '2025-12-17 19:47:10', 'nda9aXVd', '5975054'), - (795, 1964, 'not_attending', '2023-03-11 02:42:44', '2025-12-17 19:47:09', 'nda9aXVd', '5977129'), - (795, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nda9aXVd', '5981515'), - (795, 1967, 'not_attending', '2023-03-13 04:00:23', '2025-12-17 19:47:10', 'nda9aXVd', '5985650'), - (795, 1968, 'not_attending', '2023-03-13 04:00:36', '2025-12-17 19:47:10', 'nda9aXVd', '5993515'), - (795, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nda9aXVd', '5993516'), - (795, 1970, 'maybe', '2023-03-19 21:12:36', '2025-12-17 19:46:56', 'nda9aXVd', '5993758'), - (795, 1971, 'attending', '2023-03-13 03:53:06', '2025-12-17 19:46:56', 'nda9aXVd', '5993765'), - (795, 1972, 'maybe', '2023-03-17 01:00:37', '2025-12-17 19:46:56', 'nda9aXVd', '5993776'), - (795, 1973, 'maybe', '2023-03-17 01:02:09', '2025-12-17 19:46:56', 'nda9aXVd', '5993777'), - (795, 1974, 'maybe', '2023-03-25 13:33:32', '2025-12-17 19:46:57', 'nda9aXVd', '5993778'), - (795, 1975, 'not_attending', '2023-03-13 23:08:23', '2025-12-17 19:46:57', 'nda9aXVd', '5995351'), - (795, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nda9aXVd', '5998939'), - (795, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nda9aXVd', '6028191'), - (795, 1980, 'not_attending', '2023-03-25 13:33:25', '2025-12-17 19:46:57', 'nda9aXVd', '6036032'), - (795, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nda9aXVd', '6040066'), - (795, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nda9aXVd', '6042717'), - (795, 1985, 'not_attending', '2023-03-27 11:42:33', '2025-12-17 19:46:57', 'nda9aXVd', '6043041'), - (795, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nda9aXVd', '6044838'), - (795, 1987, 'not_attending', '2023-04-15 11:41:35', '2025-12-17 19:47:00', 'nda9aXVd', '6044839'), - (795, 1989, 'maybe', '2023-05-05 11:23:01', '2025-12-17 19:47:03', 'nda9aXVd', '6044842'), - (795, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'nda9aXVd', '6045684'), - (795, 1991, 'not_attending', '2023-04-05 16:23:46', '2025-12-17 19:46:58', 'nda9aXVd', '6047354'), - (795, 1992, 'not_attending', '2023-04-05 16:23:48', '2025-12-17 19:46:58', 'nda9aXVd', '6048742'), - (795, 1993, 'not_attending', '2023-04-05 16:24:01', '2025-12-17 19:46:58', 'nda9aXVd', '6048955'), - (795, 1994, 'maybe', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nda9aXVd', '6050104'), - (795, 1995, 'not_attending', '2023-04-05 16:24:34', '2025-12-17 19:46:58', 'nda9aXVd', '6050663'), - (795, 1996, 'not_attending', '2023-04-05 16:23:50', '2025-12-17 19:46:58', 'nda9aXVd', '6050667'), - (795, 1997, 'not_attending', '2023-04-05 16:24:38', '2025-12-17 19:46:58', 'nda9aXVd', '6051604'), - (795, 1999, 'maybe', '2023-04-15 11:41:50', '2025-12-17 19:47:00', 'nda9aXVd', '6052057'), - (795, 2000, 'not_attending', '2023-04-05 16:24:40', '2025-12-17 19:46:58', 'nda9aXVd', '6052107'), - (795, 2001, 'not_attending', '2023-04-05 16:24:32', '2025-12-17 19:46:58', 'nda9aXVd', '6052569'), - (795, 2002, 'not_attending', '2023-04-18 17:22:04', '2025-12-17 19:47:01', 'nda9aXVd', '6052605'), - (795, 2003, 'not_attending', '2023-05-05 11:23:08', '2025-12-17 19:47:03', 'nda9aXVd', '6052606'), - (795, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nda9aXVd', '6053195'), - (795, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nda9aXVd', '6053198'), - (795, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nda9aXVd', '6056085'), - (795, 2011, 'attending', '2023-04-08 21:15:45', '2025-12-17 19:46:59', 'nda9aXVd', '6056916'), - (795, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nda9aXVd', '6059290'), - (795, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nda9aXVd', '6060328'), - (795, 2014, 'not_attending', '2023-04-15 11:41:17', '2025-12-17 19:46:59', 'nda9aXVd', '6060337'), - (795, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nda9aXVd', '6061037'), - (795, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nda9aXVd', '6061039'), - (795, 2018, 'not_attending', '2023-04-15 11:41:15', '2025-12-17 19:46:59', 'nda9aXVd', '6061171'), - (795, 2019, 'not_attending', '2023-04-15 11:41:49', '2025-12-17 19:47:00', 'nda9aXVd', '6062934'), - (795, 2021, 'maybe', '2023-04-16 14:33:45', '2025-12-17 19:47:00', 'nda9aXVd', '6066316'), - (795, 2022, 'not_attending', '2023-05-05 11:23:32', '2025-12-17 19:47:03', 'nda9aXVd', '6067245'), - (795, 2023, 'maybe', '2023-04-17 13:12:08', '2025-12-17 19:47:00', 'nda9aXVd', '6067396'), - (795, 2024, 'not_attending', '2023-04-17 13:12:28', '2025-12-17 19:47:00', 'nda9aXVd', '6067437'), - (795, 2025, 'maybe', '2023-04-17 13:12:53', '2025-12-17 19:47:00', 'nda9aXVd', '6067457'), - (795, 2026, 'maybe', '2023-04-18 17:21:59', '2025-12-17 19:47:01', 'nda9aXVd', '6068078'), - (795, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nda9aXVd', '6068094'), - (795, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nda9aXVd', '6068252'), - (795, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nda9aXVd', '6068253'), - (795, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nda9aXVd', '6068254'), - (795, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'nda9aXVd', '6068280'), - (795, 2032, 'not_attending', '2023-05-25 23:05:03', '2025-12-17 19:47:04', 'nda9aXVd', '6068281'), - (795, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nda9aXVd', '6069093'), - (795, 2035, 'not_attending', '2023-05-03 20:00:45', '2025-12-17 19:47:02', 'nda9aXVd', '6070142'), - (795, 2038, 'not_attending', '2023-04-27 16:44:11', '2025-12-17 19:47:01', 'nda9aXVd', '6071944'), - (795, 2040, 'not_attending', '2023-04-27 16:44:16', '2025-12-17 19:47:01', 'nda9aXVd', '6072453'), - (795, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nda9aXVd', '6072528'), - (795, 2042, 'not_attending', '2023-04-27 16:43:55', '2025-12-17 19:47:01', 'nda9aXVd', '6072941'), - (795, 2044, 'maybe', '2023-04-27 16:44:54', '2025-12-17 19:47:03', 'nda9aXVd', '6073678'), - (795, 2045, 'not_attending', '2023-04-27 16:44:00', '2025-12-17 19:47:01', 'nda9aXVd', '6075556'), - (795, 2046, 'maybe', '2023-05-05 11:22:48', '2025-12-17 19:47:02', 'nda9aXVd', '6076020'), - (795, 2047, 'not_attending', '2023-05-05 11:22:35', '2025-12-17 19:47:02', 'nda9aXVd', '6076027'), - (795, 2048, 'not_attending', '2023-05-05 11:22:57', '2025-12-17 19:47:03', 'nda9aXVd', '6076415'), - (795, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nda9aXVd', '6079840'), - (795, 2050, 'maybe', '2023-05-05 11:22:38', '2025-12-17 19:47:02', 'nda9aXVd', '6080489'), - (795, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nda9aXVd', '6083398'), - (795, 2052, 'not_attending', '2023-05-05 11:22:32', '2025-12-17 19:47:02', 'nda9aXVd', '6088220'), - (795, 2054, 'not_attending', '2023-05-10 22:01:36', '2025-12-17 19:47:03', 'nda9aXVd', '6093445'), - (795, 2055, 'not_attending', '2023-05-10 22:01:39', '2025-12-17 19:47:03', 'nda9aXVd', '6093473'), - (795, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nda9aXVd', '6093504'), - (795, 2057, 'not_attending', '2023-05-09 11:34:02', '2025-12-17 19:47:02', 'nda9aXVd', '6093692'), - (795, 2058, 'maybe', '2023-05-09 11:34:06', '2025-12-17 19:47:02', 'nda9aXVd', '6096374'), - (795, 2059, 'maybe', '2023-05-10 22:01:11', '2025-12-17 19:47:02', 'nda9aXVd', '6097361'), - (795, 2060, 'maybe', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nda9aXVd', '6097414'), - (795, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nda9aXVd', '6097442'), - (795, 2062, 'maybe', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nda9aXVd', '6097684'), - (795, 2063, 'maybe', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nda9aXVd', '6098762'), - (795, 2064, 'maybe', '2023-06-24 20:22:32', '2025-12-17 19:46:50', 'nda9aXVd', '6099988'), - (795, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nda9aXVd', '6101361'), - (795, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nda9aXVd', '6101362'), - (795, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'nda9aXVd', '6103752'), - (795, 2072, 'attending', '2023-05-15 11:16:27', '2025-12-17 19:47:03', 'nda9aXVd', '6105573'), - (795, 2073, 'maybe', '2023-05-19 18:43:23', '2025-12-17 19:47:03', 'nda9aXVd', '6106002'), - (795, 2074, 'not_attending', '2023-05-22 18:55:52', '2025-12-17 19:47:03', 'nda9aXVd', '6107312'), - (795, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nda9aXVd', '6107314'), - (795, 2076, 'not_attending', '2023-05-19 18:42:58', '2025-12-17 19:47:03', 'nda9aXVd', '6108350'), - (795, 2078, 'not_attending', '2023-05-22 18:56:03', '2025-12-17 19:47:03', 'nda9aXVd', '6114163'), - (795, 2079, 'maybe', '2023-05-22 18:56:14', '2025-12-17 19:47:03', 'nda9aXVd', '6114521'), - (795, 2080, 'not_attending', '2023-05-22 18:56:24', '2025-12-17 19:47:04', 'nda9aXVd', '6114677'), - (795, 2081, 'not_attending', '2023-05-22 18:56:05', '2025-12-17 19:47:03', 'nda9aXVd', '6115611'), - (795, 2083, 'attending', '2023-05-24 18:37:19', '2025-12-17 19:47:04', 'nda9aXVd', '6115629'), - (795, 2084, 'maybe', '2023-05-25 23:04:37', '2025-12-17 19:47:04', 'nda9aXVd', '6117127'), - (795, 2085, 'maybe', '2023-05-25 23:05:05', '2025-12-17 19:47:04', 'nda9aXVd', '6118068'), - (795, 2086, 'maybe', '2023-05-28 14:26:54', '2025-12-17 19:47:04', 'nda9aXVd', '6119877'), - (795, 2087, 'maybe', '2023-05-28 14:26:47', '2025-12-17 19:47:04', 'nda9aXVd', '6120034'), - (795, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nda9aXVd', '6136733'), - (795, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nda9aXVd', '6137989'), - (795, 2103, 'not_attending', '2023-06-19 20:41:07', '2025-12-17 19:46:50', 'nda9aXVd', '6149451'), - (795, 2105, 'attending', '2023-06-18 22:58:24', '2025-12-17 19:46:50', 'nda9aXVd', '6149551'), - (795, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nda9aXVd', '6150864'), - (795, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nda9aXVd', '6155491'), - (795, 2115, 'not_attending', '2023-06-30 16:33:58', '2025-12-17 19:46:50', 'nda9aXVd', '6161437'), - (795, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nda9aXVd', '6164417'), - (795, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nda9aXVd', '6166388'), - (795, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nda9aXVd', '6176439'), - (795, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nda9aXVd', '6182410'), - (795, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nda9aXVd', '6185812'), - (795, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nda9aXVd', '6187651'), - (795, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nda9aXVd', '6187963'), - (795, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nda9aXVd', '6187964'), - (795, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nda9aXVd', '6187966'), - (795, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nda9aXVd', '6187967'), - (795, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nda9aXVd', '6187969'), - (795, 2139, 'maybe', '2023-07-11 20:33:32', '2025-12-17 19:46:52', 'nda9aXVd', '6188027'), - (795, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nda9aXVd', '6334878'), - (795, 2147, 'maybe', '2023-07-11 20:33:42', '2025-12-17 19:46:52', 'nda9aXVd', '6335666'), - (795, 2150, 'not_attending', '2023-07-11 20:33:19', '2025-12-17 19:46:52', 'nda9aXVd', '6335687'), - (795, 2151, 'not_attending', '2023-07-11 20:33:36', '2025-12-17 19:46:52', 'nda9aXVd', '6335700'), - (795, 2152, 'maybe', '2023-07-11 20:33:30', '2025-12-17 19:46:52', 'nda9aXVd', '6337021'), - (795, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nda9aXVd', '6337236'), - (795, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nda9aXVd', '6337970'), - (795, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nda9aXVd', '6338308'), - (795, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'nda9aXVd', '6340845'), - (795, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nda9aXVd', '6341710'), - (795, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nda9aXVd', '6342044'), - (795, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nda9aXVd', '6342298'), - (795, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nda9aXVd', '6343294'), - (795, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nda9aXVd', '6347034'), - (795, 2177, 'maybe', '2023-08-07 20:58:20', '2025-12-17 19:46:55', 'nda9aXVd', '6347053'), - (795, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nda9aXVd', '6347056'), - (795, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nda9aXVd', '6353830'), - (795, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nda9aXVd', '6353831'), - (795, 2187, 'not_attending', '2023-08-07 20:58:12', '2025-12-17 19:46:55', 'nda9aXVd', '6357559'), - (795, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nda9aXVd', '6357867'), - (795, 2190, 'not_attending', '2023-08-07 20:58:05', '2025-12-17 19:46:55', 'nda9aXVd', '6357892'), - (795, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nda9aXVd', '6358652'), - (795, 2193, 'not_attending', '2023-08-07 20:57:53', '2025-12-17 19:46:54', 'nda9aXVd', '6358668'), - (795, 2194, 'not_attending', '2023-08-07 20:58:02', '2025-12-17 19:46:54', 'nda9aXVd', '6358669'), - (795, 2195, 'maybe', '2023-08-07 20:58:27', '2025-12-17 19:46:55', 'nda9aXVd', '6359397'), - (795, 2199, 'maybe', '2023-08-07 20:58:25', '2025-12-17 19:46:55', 'nda9aXVd', '6359849'), - (795, 2200, 'not_attending', '2023-08-07 20:58:09', '2025-12-17 19:46:55', 'nda9aXVd', '6359850'), - (795, 2203, 'not_attending', '2023-08-07 20:58:07', '2025-12-17 19:46:55', 'nda9aXVd', '6361524'), - (795, 2204, 'maybe', '2023-08-15 15:56:06', '2025-12-17 19:46:55', 'nda9aXVd', '6361542'), - (795, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nda9aXVd', '6361709'), - (795, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nda9aXVd', '6361710'), - (795, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nda9aXVd', '6361711'), - (795, 2211, 'maybe', '2023-08-15 15:56:03', '2025-12-17 19:46:55', 'nda9aXVd', '6361712'), - (795, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nda9aXVd', '6361713'), - (795, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nda9aXVd', '6382573'), - (795, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nda9aXVd', '6388604'), - (795, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nda9aXVd', '6394629'), - (795, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nda9aXVd', '6394631'), - (795, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nda9aXVd', '6440863'), - (795, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nda9aXVd', '6445440'), - (795, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nda9aXVd', '6453951'), - (795, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nda9aXVd', '6461696'), - (795, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nda9aXVd', '6462129'), - (795, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nda9aXVd', '6463218'), - (795, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nda9aXVd', '6472181'), - (795, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nda9aXVd', '6482693'), - (795, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nda9aXVd', '6484200'), - (795, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nda9aXVd', '6484680'), - (795, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nda9aXVd', '6507741'), - (795, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nda9aXVd', '6514659'), - (795, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nda9aXVd', '6514660'), - (795, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nda9aXVd', '6519103'), - (795, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nda9aXVd', '6535681'), - (795, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nda9aXVd', '6584747'), - (795, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nda9aXVd', '6587097'), - (795, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nda9aXVd', '6609022'), - (795, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nda9aXVd', '6632757'), - (795, 2376, 'maybe', '2024-01-19 20:06:40', '2025-12-17 19:46:40', 'nda9aXVd', '6642900'), - (795, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nda9aXVd', '6644187'), - (795, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nda9aXVd', '6648951'), - (795, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nda9aXVd', '6648952'), - (795, 2389, 'maybe', '2024-01-19 20:05:50', '2025-12-17 19:46:40', 'nda9aXVd', '6651094'), - (795, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nda9aXVd', '6655401'), - (795, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nda9aXVd', '6661585'), - (795, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nda9aXVd', '6661588'), - (795, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nda9aXVd', '6661589'), - (795, 2406, 'maybe', '2024-01-19 20:06:17', '2025-12-17 19:46:40', 'nda9aXVd', '6692344'), - (795, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nda9aXVd', '6699906'), - (795, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'nda9aXVd', '6699913'), - (795, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nda9aXVd', '6701109'), - (795, 2421, 'maybe', '2024-01-19 20:05:05', '2025-12-17 19:46:40', 'nda9aXVd', '6704598'), - (795, 2423, 'maybe', '2024-01-19 20:05:01', '2025-12-17 19:46:40', 'nda9aXVd', '6705141'), - (795, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nda9aXVd', '6705219'), - (795, 2426, 'maybe', '2024-01-19 20:04:29', '2025-12-17 19:46:40', 'nda9aXVd', '6705569'), - (795, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nda9aXVd', '6710153'), - (795, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nda9aXVd', '6711552'), - (795, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nda9aXVd', '6711553'), - (795, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nda9aXVd', '6722688'), - (795, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nda9aXVd', '6730620'), - (795, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'nda9aXVd', '6730642'), - (795, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nda9aXVd', '6740364'), - (795, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nda9aXVd', '6743829'), - (795, 2462, 'attending', '2024-02-12 20:56:26', '2025-12-17 19:46:41', 'nda9aXVd', '6744701'), - (795, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nda9aXVd', '7030380'), - (795, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nda9aXVd', '7033677'), - (795, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'nda9aXVd', '7035415'), - (795, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nda9aXVd', '7044715'), - (795, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nda9aXVd', '7050318'), - (795, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nda9aXVd', '7050319'), - (795, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nda9aXVd', '7050322'), - (795, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nda9aXVd', '7057804'), - (795, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'nda9aXVd', '7059866'), - (795, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nda9aXVd', '7072824'), - (795, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nda9aXVd', '7074348'), - (795, 2518, 'maybe', '2024-07-23 03:55:37', '2025-12-17 19:46:30', 'nda9aXVd', '7074358'), - (795, 2522, 'maybe', '2024-07-17 01:23:16', '2025-12-17 19:46:30', 'nda9aXVd', '7074362'), - (795, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nda9aXVd', '7074364'), - (795, 2527, 'maybe', '2024-06-27 00:59:25', '2025-12-17 19:46:29', 'nda9aXVd', '7074367'), - (795, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nda9aXVd', '7089267'), - (795, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nda9aXVd', '7098747'), - (795, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nda9aXVd', '7113468'), - (795, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nda9aXVd', '7114856'), - (795, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nda9aXVd', '7114951'), - (795, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nda9aXVd', '7114955'), - (795, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nda9aXVd', '7114956'), - (795, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nda9aXVd', '7114957'), - (795, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'nda9aXVd', '7153615'), - (795, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nda9aXVd', '7159484'), - (795, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nda9aXVd', '7178446'), - (795, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nda9aXVd', '7220467'), - (795, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nda9aXVd', '7240354'), - (795, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nda9aXVd', '7251633'), - (795, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'nda9aXVd', '7263048'), - (795, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'nda9aXVd', '7302674'), - (795, 2688, 'maybe', '2024-06-27 00:59:52', '2025-12-17 19:46:29', 'nda9aXVd', '7324073'), - (795, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nda9aXVd', '7324074'), - (795, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nda9aXVd', '7324075'), - (795, 2691, 'not_attending', '2024-07-13 22:36:26', '2025-12-17 19:46:30', 'nda9aXVd', '7324076'), - (795, 2692, 'maybe', '2024-07-17 01:23:50', '2025-12-17 19:46:30', 'nda9aXVd', '7324077'), - (795, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nda9aXVd', '7324078'), - (795, 2696, 'attending', '2024-08-24 22:08:54', '2025-12-17 19:46:32', 'nda9aXVd', '7324081'), - (795, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nda9aXVd', '7324082'), - (795, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nda9aXVd', '7331457'), - (795, 2745, 'maybe', '2024-07-17 01:23:52', '2025-12-17 19:46:30', 'nda9aXVd', '7348712'), - (795, 2747, 'attending', '2024-07-17 01:23:10', '2025-12-17 19:46:30', 'nda9aXVd', '7353587'), - (795, 2753, 'maybe', '2024-07-08 21:00:58', '2025-12-17 19:46:30', 'nda9aXVd', '7355538'), - (795, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'nda9aXVd', '7356752'), - (795, 2766, 'maybe', '2024-07-23 03:56:05', '2025-12-17 19:46:30', 'nda9aXVd', '7363643'), - (795, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nda9aXVd', '7368606'), - (795, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nda9aXVd', '7397462'), - (795, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nda9aXVd', '7424275'), - (795, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'nda9aXVd', '7424276'), - (795, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nda9aXVd', '7432751'), - (795, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nda9aXVd', '7432752'), - (795, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nda9aXVd', '7432753'), - (795, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nda9aXVd', '7432754'), - (795, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nda9aXVd', '7432755'), - (795, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nda9aXVd', '7432756'), - (795, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nda9aXVd', '7432758'), - (795, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nda9aXVd', '7432759'), - (795, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nda9aXVd', '7433834'), - (795, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nda9aXVd', '7470197'), - (795, 2866, 'maybe', '2024-11-15 23:42:27', '2025-12-17 19:46:27', 'nda9aXVd', '7471201'), - (795, 2867, 'maybe', '2024-11-15 23:42:06', '2025-12-17 19:46:21', 'nda9aXVd', '7471202'), - (795, 2897, 'not_attending', '2024-11-15 23:41:35', '2025-12-17 19:46:27', 'nda9aXVd', '7683650'), - (795, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nda9aXVd', '7685613'), - (795, 2902, 'not_attending', '2024-11-15 23:41:29', '2025-12-17 19:46:27', 'nda9aXVd', '7686381'), - (795, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nda9aXVd', '7688194'), - (795, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nda9aXVd', '7688196'), - (795, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nda9aXVd', '7688289'), - (795, 2909, 'not_attending', '2024-11-15 23:41:27', '2025-12-17 19:46:27', 'nda9aXVd', '7689771'), - (795, 2910, 'not_attending', '2024-11-15 23:41:37', '2025-12-17 19:46:27', 'nda9aXVd', '7689867'), - (795, 2912, 'maybe', '2024-11-15 23:41:50', '2025-12-17 19:46:27', 'nda9aXVd', '7692763'), - (795, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nda9aXVd', '7697552'), - (795, 2915, 'not_attending', '2024-11-21 01:23:35', '2025-12-17 19:46:27', 'nda9aXVd', '7698151'), - (795, 2916, 'not_attending', '2024-11-21 01:23:12', '2025-12-17 19:46:27', 'nda9aXVd', '7699006'), - (795, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nda9aXVd', '7699878'), - (795, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nda9aXVd', '7704043'), - (795, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nda9aXVd', '7712467'), - (795, 2925, 'maybe', '2024-12-07 23:56:15', '2025-12-17 19:46:21', 'nda9aXVd', '7713584'), - (795, 2926, 'maybe', '2024-12-07 03:07:16', '2025-12-17 19:46:21', 'nda9aXVd', '7713585'), - (795, 2927, 'not_attending', '2024-12-07 23:56:21', '2025-12-17 19:46:22', 'nda9aXVd', '7713586'), - (795, 2929, 'maybe', '2024-12-07 23:56:07', '2025-12-17 19:46:21', 'nda9aXVd', '7723465'), - (795, 2930, 'maybe', '2024-12-07 23:56:11', '2025-12-17 19:46:21', 'nda9aXVd', '7724554'), - (795, 2931, 'not_attending', '2024-12-07 23:55:57', '2025-12-17 19:46:21', 'nda9aXVd', '7725490'), - (795, 2932, 'not_attending', '2024-12-07 23:56:00', '2025-12-17 19:46:21', 'nda9aXVd', '7725949'), - (795, 2933, 'not_attending', '2024-12-07 23:56:23', '2025-12-17 19:46:22', 'nda9aXVd', '7725950'), - (795, 2934, 'not_attending', '2025-01-10 04:00:38', '2025-12-17 19:46:22', 'nda9aXVd', '7725952'), - (795, 2937, 'not_attending', '2024-12-07 23:56:16', '2025-12-17 19:46:21', 'nda9aXVd', '7725955'), - (795, 2942, 'maybe', '2025-02-11 07:17:13', '2025-12-17 19:46:24', 'nda9aXVd', '7725960'), - (795, 2944, 'maybe', '2025-02-11 07:17:15', '2025-12-17 19:46:24', 'nda9aXVd', '7725963'), - (795, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nda9aXVd', '7738518'), - (795, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', 'nda9aXVd', '7750632'), - (795, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nda9aXVd', '7750636'), - (795, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nda9aXVd', '7796540'), - (795, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nda9aXVd', '7796541'), - (795, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nda9aXVd', '7796542'), - (795, 2968, 'not_attending', '2025-01-10 04:00:40', '2025-12-17 19:46:22', 'nda9aXVd', '7797967'), - (795, 2971, 'not_attending', '2025-01-18 20:07:19', '2025-12-17 19:46:22', 'nda9aXVd', '7812230'), - (795, 2972, 'maybe', '2025-01-18 20:07:16', '2025-12-17 19:46:22', 'nda9aXVd', '7812563'), - (795, 2989, 'maybe', '2025-02-11 07:17:04', '2025-12-17 19:46:24', 'nda9aXVd', '7842108'), - (795, 2994, 'maybe', '2025-02-11 07:17:19', '2025-12-17 19:46:18', 'nda9aXVd', '7842905'), - (796, 1152, 'not_attending', '2022-01-12 23:01:31', '2025-12-17 19:47:31', 'AXBe2ZZd', '4708705'), - (796, 1173, 'attending', '2022-01-07 17:58:46', '2025-12-17 19:47:31', 'AXBe2ZZd', '4736495'), - (796, 1175, 'attending', '2022-01-22 22:59:42', '2025-12-17 19:47:32', 'AXBe2ZZd', '4736497'), - (796, 1177, 'maybe', '2022-02-12 18:08:02', '2025-12-17 19:47:32', 'AXBe2ZZd', '4736499'), - (796, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'AXBe2ZZd', '4736500'), - (796, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'AXBe2ZZd', '4736503'), - (796, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'AXBe2ZZd', '4736504'), - (796, 1183, 'attending', '2022-01-12 00:06:43', '2025-12-17 19:47:31', 'AXBe2ZZd', '4742171'), - (796, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AXBe2ZZd', '4746789'), - (796, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AXBe2ZZd', '4753929'), - (796, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'AXBe2ZZd', '5038850'), - (796, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AXBe2ZZd', '5045826'), - (796, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'AXBe2ZZd', '5132533'), - (796, 1272, 'not_attending', '2022-03-19 23:02:26', '2025-12-17 19:47:25', 'AXBe2ZZd', '5186582'), - (796, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'AXBe2ZZd', '5186583'), - (796, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'AXBe2ZZd', '5186585'), - (796, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'AXBe2ZZd', '5190437'), - (796, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AXBe2ZZd', '5195095'), - (796, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'AXBe2ZZd', '5215989'), - (796, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AXBe2ZZd', '5223686'), - (796, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AXBe2ZZd', '5227432'), - (796, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AXBe2ZZd', '5247467'), - (796, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AXBe2ZZd', '5260800'), - (796, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AXBe2ZZd', '5269930'), - (796, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AXBe2ZZd', '5271448'), - (796, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'AXBe2ZZd', '5271449'), - (796, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AXBe2ZZd', '5276469'), - (796, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AXBe2ZZd', '5278159'), - (796, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AXBe2ZZd', '5363695'), - (796, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AXBe2ZZd', '5365960'), - (796, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AXBe2ZZd', '5368973'), - (796, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AXBe2ZZd', '5378247'), - (796, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AXBe2ZZd', '5389605'), - (796, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AXBe2ZZd', '5397265'), - (796, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AXBe2ZZd', '5403967'), - (796, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AXBe2ZZd', '5404786'), - (796, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AXBe2ZZd', '5405203'), - (796, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'AXBe2ZZd', '5408794'), - (796, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AXBe2ZZd', '5411699'), - (796, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AXBe2ZZd', '5412550'), - (796, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AXBe2ZZd', '5415046'), - (796, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AXBe2ZZd', '5422086'), - (796, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AXBe2ZZd', '5422406'), - (796, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AXBe2ZZd', '5424565'), - (796, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AXBe2ZZd', '5426882'), - (796, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AXBe2ZZd', '5427083'), - (796, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AXBe2ZZd', '5441125'), - (796, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AXBe2ZZd', '5441126'), - (796, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AXBe2ZZd', '5441128'), - (796, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AXBe2ZZd', '5441131'), - (796, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AXBe2ZZd', '5441132'), - (796, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AXBe2ZZd', '5446643'), - (796, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AXBe2ZZd', '5453325'), - (796, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AXBe2ZZd', '5454516'), - (796, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AXBe2ZZd', '5454605'), - (796, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AXBe2ZZd', '5455037'), - (796, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AXBe2ZZd', '5461278'), - (796, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AXBe2ZZd', '5469480'), - (796, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AXBe2ZZd', '5471073'), - (796, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AXBe2ZZd', '5474663'), - (796, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AXBe2ZZd', '5482022'), - (796, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AXBe2ZZd', '5482793'), - (796, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AXBe2ZZd', '5488912'), - (796, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AXBe2ZZd', '5492192'), - (796, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AXBe2ZZd', '5493139'), - (796, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AXBe2ZZd', '5493200'), - (796, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AXBe2ZZd', '5502188'), - (796, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AXBe2ZZd', '5505059'), - (796, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AXBe2ZZd', '5509055'), - (796, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AXBe2ZZd', '5512862'), - (796, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AXBe2ZZd', '5513985'), - (796, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'AXBe2ZZd', '5519981'), - (796, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AXBe2ZZd', '5522550'), - (796, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AXBe2ZZd', '5534683'), - (796, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AXBe2ZZd', '5546619'), - (796, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AXBe2ZZd', '5555245'), - (796, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AXBe2ZZd', '5557747'), - (796, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AXBe2ZZd', '6045684'), - (797, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMQYVOm', '6514660'), - (797, 2325, 'attending', '2023-12-17 00:40:25', '2025-12-17 19:46:36', 'dxMQYVOm', '6514663'), - (797, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMQYVOm', '6587097'), - (797, 2356, 'attending', '2023-12-07 07:46:45', '2025-12-17 19:46:36', 'dxMQYVOm', '6593340'), - (797, 2357, 'attending', '2023-12-07 07:47:40', '2025-12-17 19:46:36', 'dxMQYVOm', '6593341'), - (797, 2359, 'attending', '2023-12-01 21:53:16', '2025-12-17 19:46:48', 'dxMQYVOm', '6596617'), - (797, 2361, 'not_attending', '2023-12-02 23:55:33', '2025-12-17 19:46:48', 'dxMQYVOm', '6602009'), - (797, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMQYVOm', '6609022'), - (797, 2366, 'not_attending', '2023-12-07 22:53:14', '2025-12-17 19:46:36', 'dxMQYVOm', '6615304'), - (797, 2368, 'attending', '2023-12-10 23:00:12', '2025-12-17 19:46:36', 'dxMQYVOm', '6621445'), - (797, 2370, 'attending', '2023-12-13 15:00:25', '2025-12-17 19:46:36', 'dxMQYVOm', '6623765'), - (797, 2374, 'attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMQYVOm', '6632757'), - (797, 2375, 'attending', '2023-12-20 18:28:15', '2025-12-17 19:46:36', 'dxMQYVOm', '6634548'), - (797, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMQYVOm', '6644187'), - (797, 2382, 'attending', '2024-01-02 22:18:52', '2025-12-17 19:46:37', 'dxMQYVOm', '6646401'), - (797, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMQYVOm', '6648951'), - (797, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMQYVOm', '6648952'), - (797, 2388, 'attending', '2024-01-06 08:09:57', '2025-12-17 19:46:37', 'dxMQYVOm', '6649244'), - (797, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMQYVOm', '6655401'), - (797, 2399, 'attending', '2024-01-13 23:04:31', '2025-12-17 19:46:38', 'dxMQYVOm', '6657583'), - (797, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMQYVOm', '6661585'), - (797, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMQYVOm', '6661588'), - (797, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMQYVOm', '6661589'), - (797, 2405, 'attending', '2024-01-18 17:43:44', '2025-12-17 19:46:38', 'dxMQYVOm', '6667332'), - (797, 2406, 'not_attending', '2024-01-18 17:28:31', '2025-12-17 19:46:40', 'dxMQYVOm', '6692344'), - (797, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMQYVOm', '6699906'), - (797, 2408, 'attending', '2024-01-23 15:53:51', '2025-12-17 19:46:40', 'dxMQYVOm', '6699907'), - (797, 2410, 'attending', '2024-02-10 23:30:13', '2025-12-17 19:46:41', 'dxMQYVOm', '6699911'), - (797, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxMQYVOm', '6699913'), - (797, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMQYVOm', '6701109'), - (797, 2417, 'attending', '2024-01-18 17:28:08', '2025-12-17 19:46:40', 'dxMQYVOm', '6701905'), - (797, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMQYVOm', '6705219'), - (797, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMQYVOm', '6710153'), - (797, 2429, 'attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMQYVOm', '6711552'), - (797, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMQYVOm', '6711553'), - (797, 2431, 'attending', '2024-02-02 00:48:23', '2025-12-17 19:46:41', 'dxMQYVOm', '6712394'), - (797, 2435, 'attending', '2024-01-28 04:47:25', '2025-12-17 19:46:41', 'dxMQYVOm', '6721547'), - (797, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMQYVOm', '6722688'), - (797, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMQYVOm', '6730620'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (797, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMQYVOm', '6730642'), - (797, 2441, 'not_attending', '2024-02-01 02:15:38', '2025-12-17 19:46:41', 'dxMQYVOm', '6731263'), - (797, 2446, 'attending', '2024-03-01 18:09:30', '2025-12-17 19:46:43', 'dxMQYVOm', '6734369'), - (797, 2449, 'attending', '2024-02-05 12:26:31', '2025-12-17 19:46:42', 'dxMQYVOm', '6735833'), - (797, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMQYVOm', '6740364'), - (797, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMQYVOm', '6743829'), - (797, 2461, 'attending', '2024-02-10 23:30:16', '2025-12-17 19:46:41', 'dxMQYVOm', '6744245'), - (797, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMQYVOm', '7030380'), - (797, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMQYVOm', '7033677'), - (797, 2473, 'attending', '2024-02-24 02:55:31', '2025-12-17 19:46:43', 'dxMQYVOm', '7033724'), - (797, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMQYVOm', '7035415'), - (797, 2475, 'attending', '2024-02-24 02:55:35', '2025-12-17 19:46:43', 'dxMQYVOm', '7035643'), - (797, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMQYVOm', '7044715'), - (797, 2482, 'attending', '2024-03-05 20:33:47', '2025-12-17 19:46:44', 'dxMQYVOm', '7044719'), - (797, 2485, 'attending', '2024-02-27 20:15:42', '2025-12-17 19:46:43', 'dxMQYVOm', '7048111'), - (797, 2486, 'attending', '2024-03-01 18:08:26', '2025-12-17 19:46:43', 'dxMQYVOm', '7048277'), - (797, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMQYVOm', '7050318'), - (797, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMQYVOm', '7050319'), - (797, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMQYVOm', '7050322'), - (797, 2495, 'not_attending', '2024-03-04 01:04:52', '2025-12-17 19:46:32', 'dxMQYVOm', '7052982'), - (797, 2498, 'attending', '2024-03-20 22:31:00', '2025-12-17 19:46:33', 'dxMQYVOm', '7057662'), - (797, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMQYVOm', '7057804'), - (797, 2500, 'attending', '2024-03-06 19:14:09', '2025-12-17 19:46:43', 'dxMQYVOm', '7058603'), - (797, 2501, 'attending', '2024-03-05 20:09:41', '2025-12-17 19:46:43', 'dxMQYVOm', '7059866'), - (797, 2502, 'not_attending', '2024-03-06 02:24:43', '2025-12-17 19:46:33', 'dxMQYVOm', '7061202'), - (797, 2504, 'attending', '2024-03-22 16:39:05', '2025-12-17 19:46:33', 'dxMQYVOm', '7063296'), - (797, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMQYVOm', '7072824'), - (797, 2508, 'attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMQYVOm', '7074348'), - (797, 2510, 'attending', '2024-03-21 23:57:44', '2025-12-17 19:46:33', 'dxMQYVOm', '7074350'), - (797, 2512, 'attending', '2024-04-02 22:01:44', '2025-12-17 19:46:33', 'dxMQYVOm', '7074352'), - (797, 2516, 'attending', '2024-05-02 22:55:26', '2025-12-17 19:46:35', 'dxMQYVOm', '7074356'), - (797, 2521, 'attending', '2024-06-21 00:03:38', '2025-12-17 19:46:29', 'dxMQYVOm', '7074361'), - (797, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxMQYVOm', '7074364'), - (797, 2537, 'attending', '2024-03-22 03:26:30', '2025-12-17 19:46:33', 'dxMQYVOm', '7085484'), - (797, 2538, 'attending', '2024-03-27 13:57:35', '2025-12-17 19:46:33', 'dxMQYVOm', '7085485'), - (797, 2539, 'attending', '2024-04-06 15:34:18', '2025-12-17 19:46:33', 'dxMQYVOm', '7085486'), - (797, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMQYVOm', '7089267'), - (797, 2541, 'attending', '2024-03-17 02:27:21', '2025-12-17 19:46:33', 'dxMQYVOm', '7089404'), - (797, 2542, 'not_attending', '2024-03-25 12:38:04', '2025-12-17 19:46:33', 'dxMQYVOm', '7090025'), - (797, 2544, 'attending', '2024-03-22 14:23:49', '2025-12-17 19:46:33', 'dxMQYVOm', '7096941'), - (797, 2545, 'attending', '2024-03-22 14:24:20', '2025-12-17 19:46:33', 'dxMQYVOm', '7096942'), - (797, 2546, 'not_attending', '2024-03-22 14:23:22', '2025-12-17 19:46:33', 'dxMQYVOm', '7096944'), - (797, 2547, 'attending', '2024-03-25 12:38:01', '2025-12-17 19:46:33', 'dxMQYVOm', '7096945'), - (797, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMQYVOm', '7098747'), - (797, 2551, 'attending', '2024-03-27 13:57:15', '2025-12-17 19:46:33', 'dxMQYVOm', '7109912'), - (797, 2552, 'attending', '2024-03-27 21:22:38', '2025-12-17 19:46:33', 'dxMQYVOm', '7111123'), - (797, 2553, 'attending', '2024-03-29 12:05:54', '2025-12-17 19:46:33', 'dxMQYVOm', '7113468'), - (797, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMQYVOm', '7114856'), - (797, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMQYVOm', '7114951'), - (797, 2556, 'attending', '2024-04-02 22:02:28', '2025-12-17 19:46:34', 'dxMQYVOm', '7114955'), - (797, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMQYVOm', '7114956'), - (797, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMQYVOm', '7114957'), - (797, 2560, 'attending', '2024-04-09 15:33:29', '2025-12-17 19:46:33', 'dxMQYVOm', '7130086'), - (797, 2563, 'not_attending', '2024-04-02 21:59:45', '2025-12-17 19:46:33', 'dxMQYVOm', '7134734'), - (797, 2564, 'attending', '2024-04-02 21:59:52', '2025-12-17 19:46:33', 'dxMQYVOm', '7134735'), - (797, 2567, 'attending', '2024-04-04 10:32:29', '2025-12-17 19:46:33', 'dxMQYVOm', '7144962'), - (797, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMQYVOm', '7153615'), - (797, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMQYVOm', '7159484'), - (797, 2573, 'attending', '2024-04-08 22:59:13', '2025-12-17 19:46:34', 'dxMQYVOm', '7160612'), - (797, 2575, 'attending', '2024-04-11 18:36:56', '2025-12-17 19:46:33', 'dxMQYVOm', '7164534'), - (797, 2578, 'attending', '2024-04-11 18:55:36', '2025-12-17 19:46:34', 'dxMQYVOm', '7167016'), - (797, 2580, 'attending', '2024-04-11 18:56:04', '2025-12-17 19:46:34', 'dxMQYVOm', '7167272'), - (797, 2581, 'attending', '2024-04-23 17:19:12', '2025-12-17 19:46:34', 'dxMQYVOm', '7169048'), - (797, 2583, 'attending', '2024-04-14 14:53:08', '2025-12-17 19:46:34', 'dxMQYVOm', '7172946'), - (797, 2584, 'attending', '2024-04-20 03:10:27', '2025-12-17 19:46:34', 'dxMQYVOm', '7175057'), - (797, 2585, 'attending', '2024-04-20 03:10:10', '2025-12-17 19:46:34', 'dxMQYVOm', '7175828'), - (797, 2588, 'attending', '2024-04-17 21:16:06', '2025-12-17 19:46:34', 'dxMQYVOm', '7177233'), - (797, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMQYVOm', '7178446'), - (797, 2594, 'attending', '2024-04-20 04:25:37', '2025-12-17 19:46:34', 'dxMQYVOm', '7182117'), - (797, 2600, 'attending', '2024-04-30 21:11:09', '2025-12-17 19:46:35', 'dxMQYVOm', '7196794'), - (797, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMQYVOm', '7220467'), - (797, 2603, 'attending', '2024-05-15 13:15:29', '2025-12-17 19:46:35', 'dxMQYVOm', '7225669'), - (797, 2607, 'attending', '2024-04-29 21:57:17', '2025-12-17 19:46:35', 'dxMQYVOm', '7240136'), - (797, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMQYVOm', '7240354'), - (797, 2616, 'attending', '2024-05-07 17:16:03', '2025-12-17 19:46:35', 'dxMQYVOm', '7250296'), - (797, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMQYVOm', '7251633'), - (797, 2626, 'attending', '2024-05-18 21:42:48', '2025-12-17 19:46:35', 'dxMQYVOm', '7264723'), - (797, 2628, 'attending', '2024-06-01 23:07:39', '2025-12-17 19:46:36', 'dxMQYVOm', '7264725'), - (797, 2632, 'attending', '2024-05-14 21:12:13', '2025-12-17 19:46:35', 'dxMQYVOm', '7269123'), - (797, 2650, 'attending', '2024-05-24 16:28:50', '2025-12-17 19:46:35', 'dxMQYVOm', '7288199'), - (797, 2652, 'attending', '2024-05-31 16:04:17', '2025-12-17 19:46:36', 'dxMQYVOm', '7288339'), - (797, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMQYVOm', '7302674'), - (797, 2664, 'attending', '2024-06-04 22:05:13', '2025-12-17 19:46:36', 'dxMQYVOm', '7306358'), - (797, 2678, 'attending', '2024-06-12 15:06:03', '2025-12-17 19:46:28', 'dxMQYVOm', '7319489'), - (797, 2679, 'attending', '2024-06-21 00:15:03', '2025-12-17 19:46:29', 'dxMQYVOm', '7319490'), - (797, 2684, 'attending', '2024-06-11 19:41:32', '2025-12-17 19:46:28', 'dxMQYVOm', '7322001'), - (797, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxMQYVOm', '7324073'), - (797, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxMQYVOm', '7324074'), - (797, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxMQYVOm', '7324075'), - (797, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxMQYVOm', '7324078'), - (797, 2695, 'attending', '2024-08-17 21:58:54', '2025-12-17 19:46:31', 'dxMQYVOm', '7324080'), - (797, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxMQYVOm', '7324082'), - (797, 2706, 'attending', '2024-06-19 16:06:09', '2025-12-17 19:46:28', 'dxMQYVOm', '7324947'), - (797, 2708, 'attending', '2024-06-15 15:22:38', '2025-12-17 19:46:28', 'dxMQYVOm', '7325048'), - (797, 2720, 'attending', '2024-06-18 21:13:57', '2025-12-17 19:46:28', 'dxMQYVOm', '7331436'), - (797, 2721, 'attending', '2024-06-18 22:32:13', '2025-12-17 19:46:29', 'dxMQYVOm', '7331456'), - (797, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxMQYVOm', '7331457'), - (797, 2724, 'attending', '2024-06-22 22:02:48', '2025-12-17 19:46:29', 'dxMQYVOm', '7332562'), - (797, 2727, 'attending', '2024-06-21 00:03:28', '2025-12-17 19:46:29', 'dxMQYVOm', '7332865'), - (797, 2729, 'attending', '2024-06-21 22:28:46', '2025-12-17 19:46:29', 'dxMQYVOm', '7335092'), - (797, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxMQYVOm', '7356752'), - (797, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxMQYVOm', '7363643'), - (797, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxMQYVOm', '7368606'), - (797, 2787, 'attending', '2024-08-07 00:09:01', '2025-12-17 19:46:32', 'dxMQYVOm', '7381568'), - (797, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxMQYVOm', '7397462'), - (797, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxMQYVOm', '7424275'), - (797, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxMQYVOm', '7424276'), - (797, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxMQYVOm', '7432751'), - (797, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxMQYVOm', '7432752'), - (797, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxMQYVOm', '7432753'), - (797, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxMQYVOm', '7432754'), - (797, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxMQYVOm', '7432755'), - (797, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxMQYVOm', '7432756'), - (797, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxMQYVOm', '7432758'), - (797, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxMQYVOm', '7432759'), - (797, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxMQYVOm', '7433834'), - (797, 2845, 'attending', '2024-09-21 21:34:39', '2025-12-17 19:46:25', 'dxMQYVOm', '7452129'), - (797, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxMQYVOm', '7470197'), - (797, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxMQYVOm', '7685613'), - (797, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxMQYVOm', '7688194'), - (797, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxMQYVOm', '7688196'), - (797, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxMQYVOm', '7688289'), - (797, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dxMQYVOm', '7692763'), - (797, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxMQYVOm', '7697552'), - (797, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxMQYVOm', '7699878'), - (797, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxMQYVOm', '7704043'), - (797, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxMQYVOm', '7712467'), - (797, 2925, 'attending', '2024-12-14 02:37:56', '2025-12-17 19:46:21', 'dxMQYVOm', '7713584'), - (797, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxMQYVOm', '7713585'), - (797, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxMQYVOm', '7713586'), - (797, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMQYVOm', '7738518'), - (797, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMQYVOm', '7750636'), - (797, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMQYVOm', '7796540'), - (797, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMQYVOm', '7796541'), - (797, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMQYVOm', '7796542'), - (797, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxMQYVOm', '7825913'), - (797, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dxMQYVOm', '7825920'), - (797, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxMQYVOm', '7826209'), - (797, 2984, 'attending', '2025-02-02 04:41:54', '2025-12-17 19:46:23', 'dxMQYVOm', '7830134'), - (797, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxMQYVOm', '7834742'), - (797, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dxMQYVOm', '7842108'), - (797, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxMQYVOm', '7842902'), - (797, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxMQYVOm', '7842903'), - (797, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxMQYVOm', '7842904'), - (797, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxMQYVOm', '7842905'), - (797, 3005, 'attending', '2025-02-19 23:12:45', '2025-12-17 19:46:24', 'dxMQYVOm', '7854604'), - (797, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxMQYVOm', '7855719'), - (797, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxMQYVOm', '7860683'), - (797, 3008, 'attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxMQYVOm', '7860684'), - (797, 3009, 'attending', '2025-03-04 23:51:33', '2025-12-17 19:46:18', 'dxMQYVOm', '7864019'), - (797, 3010, 'attending', '2025-03-05 15:32:50', '2025-12-17 19:46:18', 'dxMQYVOm', '7864879'), - (797, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxMQYVOm', '7866095'), - (797, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxMQYVOm', '7869170'), - (797, 3014, 'attending', '2025-04-05 13:42:00', '2025-12-17 19:46:20', 'dxMQYVOm', '7869185'), - (797, 3016, 'attending', '2025-04-19 22:02:02', '2025-12-17 19:46:20', 'dxMQYVOm', '7869187'), - (797, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxMQYVOm', '7869188'), - (797, 3018, 'attending', '2025-04-08 23:33:55', '2025-12-17 19:46:20', 'dxMQYVOm', '7869189'), - (797, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxMQYVOm', '7869201'), - (797, 3033, 'attending', '2025-03-11 02:32:42', '2025-12-17 19:46:19', 'dxMQYVOm', '7877465'), - (797, 3036, 'attending', '2025-03-13 15:38:41', '2025-12-17 19:46:19', 'dxMQYVOm', '7880952'), - (797, 3041, 'attending', '2025-03-14 14:20:51', '2025-12-17 19:46:19', 'dxMQYVOm', '7881995'), - (797, 3042, 'attending', '2025-03-15 04:44:21', '2025-12-17 19:46:19', 'dxMQYVOm', '7882467'), - (797, 3043, 'attending', '2025-03-15 19:15:31', '2025-12-17 19:46:19', 'dxMQYVOm', '7882587'), - (797, 3044, 'attending', '2025-03-29 20:52:28', '2025-12-17 19:46:19', 'dxMQYVOm', '7882690'), - (797, 3045, 'attending', '2025-04-05 21:02:38', '2025-12-17 19:46:19', 'dxMQYVOm', '7882691'), - (797, 3046, 'attending', '2025-04-08 23:33:57', '2025-12-17 19:46:20', 'dxMQYVOm', '7882692'), - (797, 3053, 'maybe', '2025-03-16 23:27:32', '2025-12-17 19:46:19', 'dxMQYVOm', '7884030'), - (797, 3054, 'maybe', '2025-03-17 03:21:22', '2025-12-17 19:46:19', 'dxMQYVOm', '7884168'), - (797, 3055, 'attending', '2025-03-21 11:36:20', '2025-12-17 19:46:19', 'dxMQYVOm', '7888118'), - (797, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxMQYVOm', '7888250'), - (797, 3058, 'attending', '2025-03-27 15:49:22', '2025-12-17 19:46:19', 'dxMQYVOm', '7891460'), - (797, 3062, 'attending', '2025-03-30 13:23:58', '2025-12-17 19:46:19', 'dxMQYVOm', '7892738'), - (797, 3069, 'attending', '2025-03-30 23:31:27', '2025-12-17 19:46:19', 'dxMQYVOm', '7894828'), - (797, 3072, 'attending', '2025-04-03 21:52:34', '2025-12-17 19:46:19', 'dxMQYVOm', '7895449'), - (797, 3073, 'attending', '2025-04-03 21:52:32', '2025-12-17 19:46:19', 'dxMQYVOm', '7897303'), - (797, 3079, 'attending', '2025-04-06 15:58:14', '2025-12-17 19:46:20', 'dxMQYVOm', '7901439'), - (797, 3082, 'attending', '2025-04-07 19:43:12', '2025-12-17 19:46:20', 'dxMQYVOm', '7902819'), - (797, 3084, 'attending', '2025-04-08 23:32:33', '2025-12-17 19:46:20', 'dxMQYVOm', '7903687'), - (797, 3086, 'attending', '2025-04-09 22:00:38', '2025-12-17 19:46:20', 'dxMQYVOm', '7903852'), - (797, 3090, 'attending', '2025-04-16 17:13:44', '2025-12-17 19:46:20', 'dxMQYVOm', '7914315'), - (797, 3094, 'attending', '2025-04-30 22:03:06', '2025-12-17 19:46:21', 'dxMQYVOm', '8342292'), - (797, 3095, 'attending', '2025-04-30 22:03:04', '2025-12-17 19:46:20', 'dxMQYVOm', '8342293'), - (797, 3097, 'not_attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dxMQYVOm', '8342993'), - (797, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxMQYVOm', '8349164'), - (797, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxMQYVOm', '8349545'), - (797, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxMQYVOm', '8353584'), - (797, 3128, 'attending', '2025-05-11 18:17:21', '2025-12-17 19:46:21', 'dxMQYVOm', '8366077'), - (797, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dxMQYVOm', '8368028'), - (797, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxMQYVOm', '8368029'), - (798, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', '41o5LVRm', '5132533'), - (798, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '41o5LVRm', '5186582'), - (798, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '41o5LVRm', '5186583'), - (798, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '41o5LVRm', '5186585'), - (798, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '41o5LVRm', '5190437'), - (798, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', '41o5LVRm', '5196763'), - (798, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '41o5LVRm', '5199460'), - (798, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41o5LVRm', '5215989'), - (798, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41o5LVRm', '5223686'), - (798, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41o5LVRm', '5227432'), - (798, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41o5LVRm', '6045684'), - (799, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mb2lygEm', '5630960'), - (799, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mb2lygEm', '5630961'), - (799, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mb2lygEm', '5630962'), - (799, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mb2lygEm', '5635406'), - (799, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mb2lygEm', '5638765'), - (799, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mb2lygEm', '5640097'), - (799, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mb2lygEm', '5640843'), - (799, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mb2lygEm', '5641521'), - (799, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mb2lygEm', '5652395'), - (799, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mb2lygEm', '5671637'), - (799, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mb2lygEm', '5672329'), - (799, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mb2lygEm', '5674057'), - (799, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mb2lygEm', '5674060'), - (799, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mb2lygEm', '5677461'), - (799, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mb2lygEm', '6045684'), - (800, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dxK3Op24', '7114956'), - (800, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxK3Op24', '7114957'), - (800, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxK3Op24', '7178446'), - (800, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dxK3Op24', '7220467'), - (800, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxK3Op24', '7240354'), - (800, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxK3Op24', '7251633'), - (800, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'dxK3Op24', '7265589'), - (801, 4, 'attending', '2020-03-21 22:09:07', '2025-12-17 19:47:58', 'oAgeoZMd', '2958046'), - (801, 7, 'not_attending', '2020-03-24 16:06:32', '2025-12-17 19:47:58', 'oAgeoZMd', '2958049'), - (801, 9, 'attending', '2020-03-28 14:00:59', '2025-12-17 19:47:56', 'oAgeoZMd', '2958052'), - (801, 10, 'attending', '2020-03-28 14:01:01', '2025-12-17 19:47:56', 'oAgeoZMd', '2958053'), - (801, 11, 'attending', '2020-03-29 15:24:19', '2025-12-17 19:47:57', 'oAgeoZMd', '2958055'), - (801, 12, 'attending', '2020-04-01 22:22:25', '2025-12-17 19:47:56', 'oAgeoZMd', '2958056'), - (801, 14, 'attending', '2020-04-07 18:47:35', '2025-12-17 19:47:57', 'oAgeoZMd', '2958058'), - (801, 15, 'attending', '2020-04-10 15:04:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2958059'), - (801, 16, 'attending', '2020-03-27 22:26:31', '2025-12-17 19:47:56', 'oAgeoZMd', '2958060'), - (801, 21, 'attending', '2020-04-20 19:54:27', '2025-12-17 19:47:57', 'oAgeoZMd', '2958065'), - (801, 24, 'not_attending', '2020-06-26 20:38:09', '2025-12-17 19:47:55', 'oAgeoZMd', '2958068'), - (801, 28, 'attending', '2020-04-02 22:55:54', '2025-12-17 19:47:56', 'oAgeoZMd', '2960421'), - (801, 29, 'maybe', '2020-03-30 18:34:57', '2025-12-17 19:47:56', 'oAgeoZMd', '2961309'), - (801, 30, 'attending', '2020-03-23 16:40:54', '2025-12-17 19:47:57', 'oAgeoZMd', '2961895'), - (801, 36, 'attending', '2020-03-29 01:48:56', '2025-12-17 19:47:57', 'oAgeoZMd', '2969208'), - (801, 37, 'maybe', '2020-03-30 18:35:06', '2025-12-17 19:47:56', 'oAgeoZMd', '2969680'), - (801, 39, 'attending', '2020-03-30 16:38:05', '2025-12-17 19:47:56', 'oAgeoZMd', '2970637'), - (801, 41, 'attending', '2020-04-03 14:06:09', '2025-12-17 19:47:57', 'oAgeoZMd', '2971546'), - (801, 44, 'not_attending', '2020-04-11 22:17:49', '2025-12-17 19:47:57', 'oAgeoZMd', '2974534'), - (801, 46, 'attending', '2020-04-06 01:37:48', '2025-12-17 19:47:57', 'oAgeoZMd', '2974955'), - (801, 48, 'attending', '2020-05-18 17:14:51', '2025-12-17 19:47:57', 'oAgeoZMd', '2975273'), - (801, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'oAgeoZMd', '2975384'), - (801, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'oAgeoZMd', '2975385'), - (801, 57, 'attending', '2020-04-07 02:39:43', '2025-12-17 19:47:57', 'oAgeoZMd', '2976575'), - (801, 58, 'not_attending', '2020-04-21 21:43:38', '2025-12-17 19:47:57', 'oAgeoZMd', '2977127'), - (801, 59, 'maybe', '2020-05-05 21:47:17', '2025-12-17 19:47:57', 'oAgeoZMd', '2977128'), - (801, 67, 'maybe', '2020-06-15 18:57:01', '2025-12-17 19:47:58', 'oAgeoZMd', '2977136'), - (801, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'oAgeoZMd', '2977343'), - (801, 71, 'attending', '2020-04-09 03:01:38', '2025-12-17 19:47:57', 'oAgeoZMd', '2977526'), - (801, 72, 'attending', '2020-05-01 17:27:14', '2025-12-17 19:47:57', 'oAgeoZMd', '2977812'), - (801, 73, 'attending', '2020-04-16 13:02:18', '2025-12-17 19:47:57', 'oAgeoZMd', '2977931'), - (801, 74, 'attending', '2020-04-11 15:13:30', '2025-12-17 19:47:57', 'oAgeoZMd', '2978244'), - (801, 75, 'attending', '2020-04-19 19:39:53', '2025-12-17 19:47:57', 'oAgeoZMd', '2978245'), - (801, 77, 'attending', '2020-05-02 22:36:58', '2025-12-17 19:47:57', 'oAgeoZMd', '2978247'), - (801, 78, 'attending', '2020-05-19 18:50:04', '2025-12-17 19:47:57', 'oAgeoZMd', '2978249'), - (801, 79, 'attending', '2020-05-24 20:04:34', '2025-12-17 19:47:57', 'oAgeoZMd', '2978250'), - (801, 80, 'attending', '2020-05-31 18:27:09', '2025-12-17 19:47:58', 'oAgeoZMd', '2978251'), - (801, 81, 'attending', '2020-06-13 21:27:42', '2025-12-17 19:47:58', 'oAgeoZMd', '2978252'), - (801, 82, 'attending', '2020-04-10 22:34:46', '2025-12-17 19:47:57', 'oAgeoZMd', '2978433'), - (801, 83, 'attending', '2020-05-08 22:05:03', '2025-12-17 19:47:57', 'oAgeoZMd', '2978438'), - (801, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2980871'), - (801, 85, 'not_attending', '2020-04-22 16:27:25', '2025-12-17 19:47:57', 'oAgeoZMd', '2980872'), - (801, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'oAgeoZMd', '2981388'), - (801, 87, 'attending', '2020-04-19 19:40:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2982602'), - (801, 88, 'attending', '2020-04-14 17:51:06', '2025-12-17 19:47:57', 'oAgeoZMd', '2982603'), - (801, 89, 'attending', '2020-05-01 17:17:37', '2025-12-17 19:47:57', 'oAgeoZMd', '2982604'), - (801, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'oAgeoZMd', '2986743'), - (801, 93, 'not_attending', '2020-04-19 23:36:39', '2025-12-17 19:47:57', 'oAgeoZMd', '2987418'), - (801, 94, 'not_attending', '2020-04-24 19:17:17', '2025-12-17 19:47:57', 'oAgeoZMd', '2987421'), - (801, 96, 'maybe', '2020-05-05 21:47:25', '2025-12-17 19:47:57', 'oAgeoZMd', '2987453'), - (801, 100, 'attending', '2020-04-21 21:45:52', '2025-12-17 19:47:57', 'oAgeoZMd', '2989142'), - (801, 101, 'not_attending', '2020-04-21 22:00:10', '2025-12-17 19:47:57', 'oAgeoZMd', '2989975'), - (801, 103, 'maybe', '2020-05-04 17:15:27', '2025-12-17 19:47:57', 'oAgeoZMd', '2991407'), - (801, 104, 'attending', '2020-04-24 14:20:00', '2025-12-17 19:47:57', 'oAgeoZMd', '2991471'), - (801, 106, 'attending', '2020-05-01 17:15:10', '2025-12-17 19:47:57', 'oAgeoZMd', '2993501'), - (801, 109, 'attending', '2020-04-28 02:11:02', '2025-12-17 19:47:57', 'oAgeoZMd', '2994480'), - (801, 110, 'attending', '2020-05-03 18:49:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2994906'), - (801, 115, 'attending', '2020-05-02 22:36:59', '2025-12-17 19:47:57', 'oAgeoZMd', '3001217'), - (801, 121, 'attending', '2020-05-26 17:02:17', '2025-12-17 19:47:57', 'oAgeoZMd', '3023063'), - (801, 122, 'attending', '2020-05-18 13:25:34', '2025-12-17 19:47:57', 'oAgeoZMd', '3023491'), - (801, 125, 'attending', '2020-05-22 16:53:26', '2025-12-17 19:47:57', 'oAgeoZMd', '3023987'), - (801, 133, 'attending', '2020-06-24 17:02:14', '2025-12-17 19:47:58', 'oAgeoZMd', '3034321'), - (801, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'oAgeoZMd', '3049983'), - (801, 144, 'attending', '2020-06-06 21:42:54', '2025-12-17 19:47:58', 'oAgeoZMd', '3058679'), - (801, 145, 'attending', '2020-06-13 21:27:48', '2025-12-17 19:47:58', 'oAgeoZMd', '3058680'), - (801, 147, 'attending', '2020-08-22 15:03:27', '2025-12-17 19:47:56', 'oAgeoZMd', '3058684'), - (801, 148, 'attending', '2020-07-11 17:25:44', '2025-12-17 19:47:55', 'oAgeoZMd', '3058685'), - (801, 149, 'attending', '2020-07-18 18:36:25', '2025-12-17 19:47:55', 'oAgeoZMd', '3058686'), - (801, 150, 'maybe', '2020-07-23 21:46:49', '2025-12-17 19:47:55', 'oAgeoZMd', '3058687'), - (801, 151, 'attending', '2020-08-29 22:06:30', '2025-12-17 19:47:56', 'oAgeoZMd', '3058688'), - (801, 152, 'not_attending', '2020-09-03 14:33:09', '2025-12-17 19:47:56', 'oAgeoZMd', '3058689'), - (801, 155, 'attending', '2020-08-15 15:50:36', '2025-12-17 19:47:56', 'oAgeoZMd', '3058692'), - (801, 156, 'attending', '2020-09-12 22:04:19', '2025-12-17 19:47:56', 'oAgeoZMd', '3058693'), - (801, 160, 'attending', '2020-10-14 00:43:14', '2025-12-17 19:47:52', 'oAgeoZMd', '3058697'), - (801, 161, 'attending', '2020-10-10 18:31:26', '2025-12-17 19:47:52', 'oAgeoZMd', '3058698'), - (801, 162, 'attending', '2020-10-14 00:43:05', '2025-12-17 19:47:52', 'oAgeoZMd', '3058699'), - (801, 164, 'attending', '2020-11-14 23:21:58', '2025-12-17 19:47:54', 'oAgeoZMd', '3058701'), - (801, 165, 'attending', '2020-11-04 23:19:24', '2025-12-17 19:47:53', 'oAgeoZMd', '3058702'), - (801, 166, 'attending', '2020-11-19 03:36:21', '2025-12-17 19:47:54', 'oAgeoZMd', '3058704'), - (801, 167, 'attending', '2020-11-27 16:33:28', '2025-12-17 19:47:54', 'oAgeoZMd', '3058705'), - (801, 168, 'attending', '2020-06-15 18:57:14', '2025-12-17 19:47:58', 'oAgeoZMd', '3058740'), - (801, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'oAgeoZMd', '3058959'), - (801, 173, 'attending', '2020-06-14 17:27:24', '2025-12-17 19:47:58', 'oAgeoZMd', '3067093'), - (801, 175, 'maybe', '2020-06-15 18:57:16', '2025-12-17 19:47:58', 'oAgeoZMd', '3068305'), - (801, 181, 'maybe', '2020-06-20 00:46:08', '2025-12-17 19:47:58', 'oAgeoZMd', '3074513'), - (801, 182, 'attending', '2020-06-26 19:14:06', '2025-12-17 19:47:55', 'oAgeoZMd', '3074514'), - (801, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'oAgeoZMd', '3075228'), - (801, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'oAgeoZMd', '3075456'), - (801, 186, 'not_attending', '2020-06-24 23:16:57', '2025-12-17 19:47:55', 'oAgeoZMd', '3083791'), - (801, 187, 'attending', '2020-06-18 20:11:42', '2025-12-17 19:47:55', 'oAgeoZMd', '3085151'), - (801, 189, 'attending', '2020-06-20 14:52:07', '2025-12-17 19:47:58', 'oAgeoZMd', '3087016'), - (801, 190, 'not_attending', '2020-07-03 22:02:10', '2025-12-17 19:47:55', 'oAgeoZMd', '3087258'), - (801, 191, 'attending', '2020-07-03 22:02:06', '2025-12-17 19:47:55', 'oAgeoZMd', '3087259'), - (801, 192, 'attending', '2020-07-18 18:36:23', '2025-12-17 19:47:55', 'oAgeoZMd', '3087260'), - (801, 193, 'maybe', '2020-07-23 21:46:56', '2025-12-17 19:47:55', 'oAgeoZMd', '3087261'), - (801, 194, 'not_attending', '2020-08-01 18:34:36', '2025-12-17 19:47:56', 'oAgeoZMd', '3087262'), - (801, 196, 'attending', '2020-08-10 13:50:31', '2025-12-17 19:47:56', 'oAgeoZMd', '3087265'), - (801, 197, 'attending', '2020-08-22 15:03:25', '2025-12-17 19:47:56', 'oAgeoZMd', '3087266'), - (801, 198, 'attending', '2020-08-29 22:06:34', '2025-12-17 19:47:56', 'oAgeoZMd', '3087267'), - (801, 199, 'not_attending', '2020-09-05 21:51:27', '2025-12-17 19:47:56', 'oAgeoZMd', '3087268'), - (801, 201, 'attending', '2020-06-20 22:34:57', '2025-12-17 19:47:55', 'oAgeoZMd', '3088653'), - (801, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'oAgeoZMd', '3106813'), - (801, 210, 'maybe', '2020-06-30 02:49:35', '2025-12-17 19:47:55', 'oAgeoZMd', '3108972'), - (801, 223, 'attending', '2020-09-03 14:44:37', '2025-12-17 19:47:56', 'oAgeoZMd', '3129980'), - (801, 225, 'not_attending', '2020-07-13 21:09:13', '2025-12-17 19:47:55', 'oAgeoZMd', '3132378'), - (801, 226, 'attending', '2020-07-13 19:51:14', '2025-12-17 19:47:55', 'oAgeoZMd', '3132817'), - (801, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'oAgeoZMd', '3132820'), - (801, 228, 'not_attending', '2020-07-15 17:56:39', '2025-12-17 19:47:55', 'oAgeoZMd', '3132821'), - (801, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'oAgeoZMd', '3155321'), - (801, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'oAgeoZMd', '3162006'), - (801, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'oAgeoZMd', '3163442'), - (801, 281, 'attending', '2020-08-08 17:39:56', '2025-12-17 19:47:56', 'oAgeoZMd', '3166945'), - (801, 293, 'not_attending', '2020-08-19 14:20:57', '2025-12-17 19:47:56', 'oAgeoZMd', '3172832'), - (801, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'oAgeoZMd', '3172833'), - (801, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'oAgeoZMd', '3172834'), - (801, 296, 'not_attending', '2020-09-12 02:16:18', '2025-12-17 19:47:56', 'oAgeoZMd', '3172876'), - (801, 298, 'attending', '2020-08-27 21:38:14', '2025-12-17 19:47:56', 'oAgeoZMd', '3174556'), - (801, 306, 'attending', '2020-08-14 20:27:42', '2025-12-17 19:47:56', 'oAgeoZMd', '3179777'), - (801, 311, 'attending', '2020-09-02 16:58:05', '2025-12-17 19:47:56', 'oAgeoZMd', '3186057'), - (801, 312, 'attending', '2020-08-22 00:07:35', '2025-12-17 19:47:56', 'oAgeoZMd', '3187795'), - (801, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'oAgeoZMd', '3191735'), - (801, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'oAgeoZMd', '3200209'), - (801, 344, 'attending', '2020-10-05 21:14:43', '2025-12-17 19:47:53', 'oAgeoZMd', '3206906'), - (801, 359, 'attending', '2020-09-13 23:12:56', '2025-12-17 19:47:56', 'oAgeoZMd', '3212624'), - (801, 361, 'attending', '2020-09-14 19:12:09', '2025-12-17 19:47:56', 'oAgeoZMd', '3213323'), - (801, 362, 'not_attending', '2020-09-25 19:22:09', '2025-12-17 19:47:52', 'oAgeoZMd', '3214207'), - (801, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'oAgeoZMd', '3217037'), - (801, 365, 'not_attending', '2020-09-18 14:55:46', '2025-12-17 19:47:51', 'oAgeoZMd', '3218510'), - (801, 375, 'attending', '2020-10-08 14:55:57', '2025-12-17 19:47:52', 'oAgeoZMd', '3222825'), - (801, 380, 'not_attending', '2020-09-28 02:13:50', '2025-12-17 19:47:52', 'oAgeoZMd', '3226281'), - (801, 385, 'attending', '2020-10-03 22:05:25', '2025-12-17 19:47:52', 'oAgeoZMd', '3228698'), - (801, 386, 'attending', '2020-10-10 18:31:28', '2025-12-17 19:47:52', 'oAgeoZMd', '3228699'), - (801, 387, 'attending', '2020-10-14 00:43:07', '2025-12-17 19:47:52', 'oAgeoZMd', '3228700'), - (801, 388, 'attending', '2020-10-24 03:36:31', '2025-12-17 19:47:52', 'oAgeoZMd', '3228701'), - (801, 411, 'not_attending', '2020-10-11 22:04:58', '2025-12-17 19:47:52', 'oAgeoZMd', '3236596'), - (801, 416, 'not_attending', '2020-10-07 01:26:59', '2025-12-17 19:47:52', 'oAgeoZMd', '3238073'), - (801, 418, 'not_attending', '2020-10-14 18:09:16', '2025-12-17 19:47:52', 'oAgeoZMd', '3241728'), - (801, 420, 'attending', '2020-10-15 15:05:52', '2025-12-17 19:47:52', 'oAgeoZMd', '3245293'), - (801, 421, 'attending', '2020-10-23 16:32:51', '2025-12-17 19:47:52', 'oAgeoZMd', '3245294'), - (801, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'oAgeoZMd', '3245751'), - (801, 425, 'maybe', '2020-10-14 02:05:07', '2025-12-17 19:47:52', 'oAgeoZMd', '3250097'), - (801, 426, 'attending', '2020-10-14 14:18:44', '2025-12-17 19:47:52', 'oAgeoZMd', '3250232'), - (801, 427, 'attending', '2020-10-14 14:18:45', '2025-12-17 19:47:53', 'oAgeoZMd', '3250233'), - (801, 429, 'attending', '2020-11-30 06:24:35', '2025-12-17 19:47:54', 'oAgeoZMd', '3250523'), - (801, 435, 'not_attending', '2020-10-20 17:21:20', '2025-12-17 19:47:52', 'oAgeoZMd', '3254790'), - (801, 438, 'not_attending', '2020-10-29 20:10:12', '2025-12-17 19:47:53', 'oAgeoZMd', '3256163'), - (801, 439, 'attending', '2020-10-28 21:59:32', '2025-12-17 19:47:53', 'oAgeoZMd', '3256164'), - (801, 440, 'attending', '2020-11-04 23:19:26', '2025-12-17 19:47:53', 'oAgeoZMd', '3256168'), - (801, 441, 'attending', '2020-11-11 02:20:59', '2025-12-17 19:47:54', 'oAgeoZMd', '3256169'), - (801, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'oAgeoZMd', '3263578'), - (801, 445, 'attending', '2020-10-25 02:34:17', '2025-12-17 19:47:54', 'oAgeoZMd', '3266138'), - (801, 452, 'attending', '2020-11-16 20:24:13', '2025-12-17 19:47:54', 'oAgeoZMd', '3272981'), - (801, 456, 'not_attending', '2020-11-05 06:07:40', '2025-12-17 19:47:54', 'oAgeoZMd', '3276428'), - (801, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'oAgeoZMd', '3281467'), - (801, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'oAgeoZMd', '3281470'), - (801, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'oAgeoZMd', '3281829'), - (801, 468, 'attending', '2020-11-21 16:15:26', '2025-12-17 19:47:54', 'oAgeoZMd', '3285413'), - (801, 469, 'attending', '2020-11-26 04:03:06', '2025-12-17 19:47:54', 'oAgeoZMd', '3285414'), - (801, 476, 'not_attending', '2020-11-19 03:36:13', '2025-12-17 19:47:54', 'oAgeoZMd', '3286982'), - (801, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'oAgeoZMd', '3297764'), - (801, 493, 'not_attending', '2020-12-04 15:43:38', '2025-12-17 19:47:54', 'oAgeoZMd', '3313856'), - (801, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'oAgeoZMd', '3314909'), - (801, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'oAgeoZMd', '3314964'), - (801, 502, 'not_attending', '2020-12-09 06:28:56', '2025-12-17 19:47:55', 'oAgeoZMd', '3323365'), - (801, 513, 'not_attending', '2020-12-10 21:07:32', '2025-12-17 19:47:55', 'oAgeoZMd', '3329383'), - (801, 526, 'maybe', '2021-01-01 19:30:55', '2025-12-17 19:47:48', 'oAgeoZMd', '3351539'), - (801, 536, 'maybe', '2021-01-07 15:19:16', '2025-12-17 19:47:48', 'oAgeoZMd', '3386848'), - (801, 540, 'not_attending', '2021-01-07 15:18:57', '2025-12-17 19:47:48', 'oAgeoZMd', '3389527'), - (801, 543, 'not_attending', '2021-01-12 23:14:51', '2025-12-17 19:47:48', 'oAgeoZMd', '3396499'), - (801, 548, 'not_attending', '2021-01-12 23:14:49', '2025-12-17 19:47:48', 'oAgeoZMd', '3403650'), - (801, 549, 'not_attending', '2021-01-22 21:53:10', '2025-12-17 19:47:49', 'oAgeoZMd', '3406988'), - (801, 555, 'not_attending', '2021-01-22 21:53:07', '2025-12-17 19:47:49', 'oAgeoZMd', '3416576'), - (801, 558, 'not_attending', '2021-01-22 21:53:06', '2025-12-17 19:47:49', 'oAgeoZMd', '3418925'), - (801, 568, 'maybe', '2021-01-31 00:01:03', '2025-12-17 19:47:50', 'oAgeoZMd', '3430267'), - (801, 569, 'not_attending', '2021-01-27 16:59:57', '2025-12-17 19:47:49', 'oAgeoZMd', '3432673'), - (801, 579, 'attending', '2021-02-01 22:37:18', '2025-12-17 19:47:50', 'oAgeoZMd', '3440978'), - (801, 602, 'not_attending', '2021-02-10 21:43:42', '2025-12-17 19:47:50', 'oAgeoZMd', '3470303'), - (801, 603, 'attending', '2021-02-19 02:45:02', '2025-12-17 19:47:50', 'oAgeoZMd', '3470304'), - (801, 604, 'not_attending', '2021-02-25 18:40:10', '2025-12-17 19:47:50', 'oAgeoZMd', '3470305'), - (801, 605, 'attending', '2021-02-07 17:15:40', '2025-12-17 19:47:50', 'oAgeoZMd', '3470991'), - (801, 621, 'maybe', '2021-03-04 20:04:26', '2025-12-17 19:47:51', 'oAgeoZMd', '3517815'), - (801, 622, 'maybe', '2021-03-12 15:18:48', '2025-12-17 19:47:51', 'oAgeoZMd', '3517816'), - (801, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'oAgeoZMd', '3523941'), - (801, 627, 'not_attending', '2021-03-01 00:03:24', '2025-12-17 19:47:51', 'oAgeoZMd', '3533303'), - (801, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'oAgeoZMd', '3533850'), - (801, 637, 'attending', '2021-03-01 19:03:28', '2025-12-17 19:47:51', 'oAgeoZMd', '3536411'), - (801, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'oAgeoZMd', '3536632'), - (801, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'oAgeoZMd', '3536656'), - (801, 641, 'maybe', '2021-03-28 19:38:52', '2025-12-17 19:47:44', 'oAgeoZMd', '3539916'), - (801, 642, 'attending', '2021-04-09 22:34:49', '2025-12-17 19:47:44', 'oAgeoZMd', '3539917'), - (801, 643, 'not_attending', '2021-04-17 21:29:01', '2025-12-17 19:47:45', 'oAgeoZMd', '3539918'), - (801, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'oAgeoZMd', '3539919'), - (801, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'oAgeoZMd', '3539920'), - (801, 646, 'attending', '2021-05-15 21:37:28', '2025-12-17 19:47:46', 'oAgeoZMd', '3539921'), - (801, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'oAgeoZMd', '3539922'), - (801, 648, 'maybe', '2021-05-27 22:27:42', '2025-12-17 19:47:47', 'oAgeoZMd', '3539923'), - (801, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'oAgeoZMd', '3539927'), - (801, 679, 'attending', '2021-03-14 21:11:31', '2025-12-17 19:47:44', 'oAgeoZMd', '3547168'), - (801, 698, 'not_attending', '2021-03-21 20:14:20', '2025-12-17 19:47:44', 'oAgeoZMd', '3571867'), - (801, 705, 'attending', '2021-03-28 17:47:05', '2025-12-17 19:47:44', 'oAgeoZMd', '3581895'), - (801, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'oAgeoZMd', '3582734'), - (801, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'oAgeoZMd', '3583262'), - (801, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'oAgeoZMd', '3619523'), - (801, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'oAgeoZMd', '3661369'), - (801, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'oAgeoZMd', '3674262'), - (801, 735, 'maybe', '2021-04-06 19:43:31', '2025-12-17 19:47:46', 'oAgeoZMd', '3677402'), - (801, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'oAgeoZMd', '3730212'), - (801, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAgeoZMd', '3793156'), - (801, 823, 'maybe', '2021-06-12 22:07:43', '2025-12-17 19:47:48', 'oAgeoZMd', '3974109'), - (801, 827, 'attending', '2021-06-05 17:03:20', '2025-12-17 19:47:47', 'oAgeoZMd', '3975311'), - (801, 828, 'maybe', '2021-06-10 17:01:38', '2025-12-17 19:47:47', 'oAgeoZMd', '3975312'), - (801, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAgeoZMd', '3994992'), - (801, 844, 'attending', '2021-06-09 23:34:19', '2025-12-17 19:47:38', 'oAgeoZMd', '4014338'), - (801, 867, 'attending', '2021-06-26 16:11:33', '2025-12-17 19:47:38', 'oAgeoZMd', '4021848'), - (801, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAgeoZMd', '4136744'), - (801, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAgeoZMd', '4136937'), - (801, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAgeoZMd', '4136938'), - (801, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAgeoZMd', '4136947'), - (801, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAgeoZMd', '4210314'), - (801, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAgeoZMd', '4225444'), - (801, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAgeoZMd', '4239259'), - (801, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAgeoZMd', '4240316'), - (801, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAgeoZMd', '4240317'), - (801, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAgeoZMd', '4240318'), - (801, 903, 'maybe', '2021-08-14 20:41:35', '2025-12-17 19:47:42', 'oAgeoZMd', '4240320'), - (801, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAgeoZMd', '4250163'), - (801, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAgeoZMd', '4275957'), - (801, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAgeoZMd', '4277819'), - (801, 932, 'attending', '2021-08-22 15:47:00', '2025-12-17 19:47:42', 'oAgeoZMd', '4301664'), - (801, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAgeoZMd', '4301723'), - (801, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAgeoZMd', '4302093'), - (801, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAgeoZMd', '4304151'), - (801, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'oAgeoZMd', '4345519'), - (801, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAgeoZMd', '4356801'), - (801, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'oAgeoZMd', '4358025'), - (801, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAgeoZMd', '4366186'), - (801, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAgeoZMd', '4366187'), - (801, 990, 'attending', '2021-09-05 01:11:14', '2025-12-17 19:47:43', 'oAgeoZMd', '4420735'), - (801, 991, 'maybe', '2021-09-05 01:32:36', '2025-12-17 19:47:43', 'oAgeoZMd', '4420738'), - (801, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAgeoZMd', '4420739'), - (801, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAgeoZMd', '4420741'), - (801, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAgeoZMd', '4420744'), - (801, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAgeoZMd', '4420747'), - (801, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAgeoZMd', '4420748'), - (801, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAgeoZMd', '4420749'), - (801, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAgeoZMd', '4461883'), - (801, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAgeoZMd', '4508342'), - (801, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAgeoZMd', '4568602'), - (801, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'oAgeoZMd', '4572153'), - (801, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'oAgeoZMd', '4585962'), - (801, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'oAgeoZMd', '4596356'), - (801, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'oAgeoZMd', '4598860'), - (801, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'oAgeoZMd', '4598861'), - (801, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'oAgeoZMd', '4602797'), - (801, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'oAgeoZMd', '4637896'), - (801, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'oAgeoZMd', '4642994'), - (801, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'oAgeoZMd', '4642995'), - (801, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'oAgeoZMd', '4642996'), - (801, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'oAgeoZMd', '4642997'), - (801, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'oAgeoZMd', '4645687'), - (801, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'oAgeoZMd', '4645698'), - (801, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'oAgeoZMd', '4645704'), - (801, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'oAgeoZMd', '4645705'), - (801, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'oAgeoZMd', '4668385'), - (801, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAgeoZMd', '4694407'), - (801, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'oAgeoZMd', '4736497'), - (801, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'oAgeoZMd', '4736499'), - (801, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'oAgeoZMd', '4736500'), - (801, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'oAgeoZMd', '4736503'), - (801, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'oAgeoZMd', '4736504'), - (801, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'oAgeoZMd', '4746789'), - (801, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'oAgeoZMd', '4753929'), - (801, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'oAgeoZMd', '5038850'), - (801, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'oAgeoZMd', '5045826'), - (801, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'oAgeoZMd', '5132533'), - (801, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'oAgeoZMd', '5186582'), - (801, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'oAgeoZMd', '5186583'), - (801, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'oAgeoZMd', '5186585'), - (801, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'oAgeoZMd', '5190437'), - (801, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'oAgeoZMd', '5195095'), - (801, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'oAgeoZMd', '5215989'), - (801, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'oAgeoZMd', '5223686'), - (801, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'oAgeoZMd', '5247467'), - (801, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'oAgeoZMd', '5260800'), - (801, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'oAgeoZMd', '5269930'), - (801, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'oAgeoZMd', '5271448'), - (801, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'oAgeoZMd', '5271449'), - (801, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'oAgeoZMd', '5278159'), - (801, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'oAgeoZMd', '5363695'), - (801, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'oAgeoZMd', '5365960'), - (801, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'oAgeoZMd', '5378247'), - (801, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'oAgeoZMd', '5389605'), - (801, 1442, 'attending', '2022-06-13 15:33:55', '2025-12-17 19:47:17', 'oAgeoZMd', '5397265'), - (801, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'oAgeoZMd', '5404786'), - (801, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'oAgeoZMd', '5405203'), - (801, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'oAgeoZMd', '5412550'), - (801, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'oAgeoZMd', '5415046'), - (801, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'oAgeoZMd', '5422086'), - (801, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'oAgeoZMd', '5422406'), - (801, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'oAgeoZMd', '5424565'), - (801, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'oAgeoZMd', '5426882'), - (801, 1511, 'attending', '2022-07-09 13:05:30', '2025-12-17 19:47:19', 'oAgeoZMd', '5437733'), - (801, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'oAgeoZMd', '5441125'), - (801, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'oAgeoZMd', '5441126'), - (801, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'oAgeoZMd', '5441128'), - (801, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'oAgeoZMd', '5441131'), - (801, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'oAgeoZMd', '5441132'), - (801, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'oAgeoZMd', '5453325'), - (801, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'oAgeoZMd', '5454516'), - (801, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'oAgeoZMd', '5454605'), - (801, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'oAgeoZMd', '5455037'), - (801, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'oAgeoZMd', '5461278'), - (801, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'oAgeoZMd', '5469480'), - (801, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'oAgeoZMd', '5474663'), - (801, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'oAgeoZMd', '5482022'), - (801, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'oAgeoZMd', '5488912'), - (801, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'oAgeoZMd', '5492192'), - (801, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'oAgeoZMd', '5493139'), - (801, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'oAgeoZMd', '5493200'), - (801, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'oAgeoZMd', '5502188'), - (801, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'oAgeoZMd', '5505059'), - (801, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'oAgeoZMd', '5509055'), - (801, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'oAgeoZMd', '5512862'), - (801, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'oAgeoZMd', '5513985'), - (801, 1626, 'maybe', '2022-08-26 01:10:26', '2025-12-17 19:47:11', 'oAgeoZMd', '5519981'), - (801, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'oAgeoZMd', '5522550'), - (801, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'oAgeoZMd', '5534683'), - (801, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'oAgeoZMd', '5537735'), - (801, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'oAgeoZMd', '5540859'), - (801, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'oAgeoZMd', '5546619'), - (801, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'oAgeoZMd', '5557747'), - (801, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'oAgeoZMd', '5560255'), - (801, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'oAgeoZMd', '5562906'), - (801, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'oAgeoZMd', '5600604'), - (801, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'oAgeoZMd', '5605544'), - (801, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'oAgeoZMd', '5630960'), - (801, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'oAgeoZMd', '5630961'), - (801, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'oAgeoZMd', '5630962'), - (801, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'oAgeoZMd', '5630966'), - (801, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'oAgeoZMd', '5630967'), - (801, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'oAgeoZMd', '5630968'), - (801, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'oAgeoZMd', '5635406'), - (801, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'oAgeoZMd', '5638765'), - (801, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'oAgeoZMd', '5640097'), - (801, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'oAgeoZMd', '5640843'), - (801, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'oAgeoZMd', '5641521'), - (801, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'oAgeoZMd', '5642818'), - (801, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'oAgeoZMd', '5652395'), - (801, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'oAgeoZMd', '5670445'), - (801, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'oAgeoZMd', '5671637'), - (801, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'oAgeoZMd', '5672329'), - (801, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'oAgeoZMd', '5674057'), - (801, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'oAgeoZMd', '5674060'), - (801, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'oAgeoZMd', '5677461'), - (801, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'oAgeoZMd', '5698046'), - (801, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'oAgeoZMd', '5699760'), - (801, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'oAgeoZMd', '5741601'), - (801, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'oAgeoZMd', '5763458'), - (801, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'oAgeoZMd', '5774172'), - (801, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'oAgeoZMd', '5818247'), - (801, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'oAgeoZMd', '5819471'), - (801, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'oAgeoZMd', '5827739'), - (801, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'oAgeoZMd', '5844306'), - (801, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'oAgeoZMd', '5850159'), - (801, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'oAgeoZMd', '5858999'), - (801, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'oAgeoZMd', '5871984'), - (801, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'oAgeoZMd', '5876354'), - (801, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'oAgeoZMd', '5880939'), - (801, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'oAgeoZMd', '5880940'), - (801, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'oAgeoZMd', '5880942'), - (801, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'oAgeoZMd', '5880943'), - (801, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'oAgeoZMd', '5887890'), - (801, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'oAgeoZMd', '5888598'), - (801, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'oAgeoZMd', '5893260'), - (801, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'oAgeoZMd', '5899826'), - (801, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'oAgeoZMd', '5900199'), - (801, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'oAgeoZMd', '5900200'), - (801, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'oAgeoZMd', '5900202'), - (801, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'oAgeoZMd', '5900203'), - (801, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'oAgeoZMd', '5901108'), - (801, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'oAgeoZMd', '5901126'), - (801, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'oAgeoZMd', '5909655'), - (801, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'oAgeoZMd', '5910522'), - (801, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'oAgeoZMd', '5910526'), - (801, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'oAgeoZMd', '5910528'), - (801, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'oAgeoZMd', '5916219'), - (801, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'oAgeoZMd', '5936234'), - (801, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'oAgeoZMd', '5958351'), - (801, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'oAgeoZMd', '5959751'), - (801, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'oAgeoZMd', '5959755'), - (801, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'oAgeoZMd', '5960055'), - (801, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'oAgeoZMd', '5961684'), - (801, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'oAgeoZMd', '5962132'), - (801, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'oAgeoZMd', '5962133'), - (801, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'oAgeoZMd', '5962134'), - (801, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'oAgeoZMd', '5962317'), - (801, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'oAgeoZMd', '5962318'), - (801, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'oAgeoZMd', '5965933'), - (801, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'oAgeoZMd', '5967014'), - (801, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'oAgeoZMd', '5972815'), - (801, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'oAgeoZMd', '5974016'), - (801, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'oAgeoZMd', '5981515'), - (801, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'oAgeoZMd', '5993516'), - (801, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'oAgeoZMd', '5998939'), - (801, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'oAgeoZMd', '6028191'), - (801, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'oAgeoZMd', '6040066'), - (801, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'oAgeoZMd', '6042717'), - (801, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'oAgeoZMd', '6044838'), - (801, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'oAgeoZMd', '6044839'), - (801, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgeoZMd', '6045684'), - (801, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'oAgeoZMd', '6050104'), - (801, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'oAgeoZMd', '6053195'), - (801, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'oAgeoZMd', '6053198'), - (801, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'oAgeoZMd', '6056085'), - (801, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'oAgeoZMd', '6056916'), - (801, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'oAgeoZMd', '6059290'), - (801, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'oAgeoZMd', '6060328'), - (801, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'oAgeoZMd', '6061037'), - (801, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'oAgeoZMd', '6061039'), - (801, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'oAgeoZMd', '6067245'), - (801, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'oAgeoZMd', '6068094'), - (801, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'oAgeoZMd', '6068252'), - (801, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'oAgeoZMd', '6068253'), - (801, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'oAgeoZMd', '6068254'), - (801, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'oAgeoZMd', '6068280'), - (801, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'oAgeoZMd', '6069093'), - (801, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'oAgeoZMd', '6072528'), - (801, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'oAgeoZMd', '6079840'), - (801, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'oAgeoZMd', '6083398'), - (801, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'oAgeoZMd', '6093504'), - (801, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'oAgeoZMd', '6097414'), - (801, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'oAgeoZMd', '6097442'), - (801, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'oAgeoZMd', '6097684'), - (801, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'oAgeoZMd', '6098762'), - (801, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'oAgeoZMd', '6101361'), - (801, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'oAgeoZMd', '6101362'), - (801, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'oAgeoZMd', '6107314'), - (801, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'oAgeoZMd', '6120034'), - (801, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'oAgeoZMd', '6136733'), - (801, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'oAgeoZMd', '6137989'), - (801, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'oAgeoZMd', '6150864'), - (801, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'oAgeoZMd', '6155491'), - (801, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'oAgeoZMd', '6164417'), - (801, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'oAgeoZMd', '6166388'), - (801, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'oAgeoZMd', '6176439'), - (801, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'oAgeoZMd', '6182410'), - (801, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'oAgeoZMd', '6185812'), - (801, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'oAgeoZMd', '6187651'), - (801, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'oAgeoZMd', '6187963'), - (801, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'oAgeoZMd', '6187964'), - (801, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'oAgeoZMd', '6187966'), - (801, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'oAgeoZMd', '6187967'), - (801, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'oAgeoZMd', '6187969'), - (801, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'oAgeoZMd', '6334878'), - (801, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'oAgeoZMd', '6337236'), - (801, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'oAgeoZMd', '6337970'), - (801, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'oAgeoZMd', '6338308'), - (801, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'oAgeoZMd', '6341710'), - (801, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'oAgeoZMd', '6342044'), - (801, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'oAgeoZMd', '6342298'), - (801, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'oAgeoZMd', '6343294'), - (801, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'oAgeoZMd', '6347034'), - (801, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'oAgeoZMd', '6347056'), - (801, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'oAgeoZMd', '6353830'), - (801, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'oAgeoZMd', '6353831'), - (801, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'oAgeoZMd', '6357867'), - (801, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'oAgeoZMd', '6358652'), - (801, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'oAgeoZMd', '6361709'), - (801, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'oAgeoZMd', '6361710'), - (801, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'oAgeoZMd', '6361711'), - (801, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'oAgeoZMd', '6361712'), - (801, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'oAgeoZMd', '6361713'), - (801, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'oAgeoZMd', '6382573'), - (801, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'oAgeoZMd', '6388604'), - (801, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'oAgeoZMd', '6394629'), - (801, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'oAgeoZMd', '6394631'), - (801, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'oAgeoZMd', '6440863'), - (801, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'oAgeoZMd', '6445440'), - (801, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'oAgeoZMd', '6453951'), - (801, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'oAgeoZMd', '6461696'), - (801, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'oAgeoZMd', '6462129'), - (801, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'oAgeoZMd', '6463218'), - (801, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'oAgeoZMd', '6472181'), - (801, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'oAgeoZMd', '6482693'), - (801, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'oAgeoZMd', '6484200'), - (801, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'oAgeoZMd', '6484680'), - (801, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'oAgeoZMd', '6507741'), - (801, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'oAgeoZMd', '6514659'), - (801, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'oAgeoZMd', '6514660'), - (801, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'oAgeoZMd', '6519103'), - (801, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'oAgeoZMd', '6535681'), - (801, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'oAgeoZMd', '6584747'), - (801, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'oAgeoZMd', '6587097'), - (801, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'oAgeoZMd', '6609022'), - (801, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'oAgeoZMd', '6632757'), - (801, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAgeoZMd', '6644187'), - (801, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAgeoZMd', '6648951'), - (801, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAgeoZMd', '6648952'), - (801, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAgeoZMd', '6655401'), - (801, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAgeoZMd', '6661585'), - (801, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAgeoZMd', '6661588'), - (801, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAgeoZMd', '6661589'), - (801, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAgeoZMd', '6699906'), - (801, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'oAgeoZMd', '6699913'), - (801, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAgeoZMd', '6701109'), - (801, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAgeoZMd', '6705219'), - (801, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAgeoZMd', '6710153'), - (801, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAgeoZMd', '6711552'), - (801, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'oAgeoZMd', '6711553'), - (801, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAgeoZMd', '6722688'), - (801, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAgeoZMd', '6730620'), - (801, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAgeoZMd', '6740364'), - (801, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAgeoZMd', '6743829'), - (801, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAgeoZMd', '7030380'), - (801, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'oAgeoZMd', '7033677'), - (801, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAgeoZMd', '7044715'), - (801, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAgeoZMd', '7050318'), - (801, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAgeoZMd', '7050319'), - (801, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAgeoZMd', '7050322'), - (801, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAgeoZMd', '7057804'), - (801, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAgeoZMd', '7072824'), - (801, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAgeoZMd', '7074348'), - (801, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'oAgeoZMd', '7074364'), - (801, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAgeoZMd', '7089267'), - (801, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAgeoZMd', '7098747'), - (801, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'oAgeoZMd', '7113468'), - (801, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAgeoZMd', '7114856'), - (801, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAgeoZMd', '7114951'), - (801, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAgeoZMd', '7114955'), - (801, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAgeoZMd', '7114956'), - (801, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'oAgeoZMd', '7114957'), - (801, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAgeoZMd', '7159484'), - (801, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAgeoZMd', '7178446'), - (801, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'oAgeoZMd', '7220467'), - (801, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'oAgeoZMd', '7240354'), - (801, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'oAgeoZMd', '7251633'), - (801, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'oAgeoZMd', '7324073'), - (801, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'oAgeoZMd', '7324074'), - (801, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'oAgeoZMd', '7324075'), - (801, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'oAgeoZMd', '7324078'), - (801, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'oAgeoZMd', '7324082'), - (801, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'oAgeoZMd', '7331457'), - (801, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'oAgeoZMd', '7363643'), - (801, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'oAgeoZMd', '7368606'), - (801, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'oAgeoZMd', '7397462'), - (801, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'oAgeoZMd', '7424275'), - (801, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'oAgeoZMd', '7432751'), - (801, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'oAgeoZMd', '7432752'), - (801, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'oAgeoZMd', '7432753'), - (801, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'oAgeoZMd', '7432754'), - (801, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'oAgeoZMd', '7432755'), - (801, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'oAgeoZMd', '7432756'), - (801, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'oAgeoZMd', '7432758'), - (801, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'oAgeoZMd', '7432759'), - (801, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'oAgeoZMd', '7433834'), - (801, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'oAgeoZMd', '7470197'), - (801, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'oAgeoZMd', '7685613'), - (801, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'oAgeoZMd', '7688194'), - (801, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'oAgeoZMd', '7688196'), - (801, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'oAgeoZMd', '7688289'), - (801, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'oAgeoZMd', '7692763'), - (801, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'oAgeoZMd', '7697552'), - (801, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'oAgeoZMd', '7699878'), - (801, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'oAgeoZMd', '7704043'), - (801, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'oAgeoZMd', '7712467'), - (801, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'oAgeoZMd', '7713585'), - (801, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'oAgeoZMd', '7713586'), - (801, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'oAgeoZMd', '7738518'), - (801, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'oAgeoZMd', '7750636'), - (801, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'oAgeoZMd', '7796540'), - (801, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'oAgeoZMd', '7796541'), - (801, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'oAgeoZMd', '7796542'), - (801, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'oAgeoZMd', '7825913'), - (801, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'oAgeoZMd', '7826209'), - (801, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'oAgeoZMd', '7834742'), - (801, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'oAgeoZMd', '7842108'), - (801, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'oAgeoZMd', '7842902'), - (801, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'oAgeoZMd', '7842903'), - (801, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'oAgeoZMd', '7842904'), - (801, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'oAgeoZMd', '7842905'), - (801, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'oAgeoZMd', '7855719'), - (801, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'oAgeoZMd', '7860683'), - (801, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'oAgeoZMd', '7860684'), - (801, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'oAgeoZMd', '7866095'), - (801, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'oAgeoZMd', '7869170'), - (801, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'oAgeoZMd', '7869188'), - (801, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'oAgeoZMd', '7869201'), - (801, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'oAgeoZMd', '7877465'), - (801, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'oAgeoZMd', '7888250'), - (801, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'oAgeoZMd', '7904777'), - (801, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'oAgeoZMd', '8349164'), - (801, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'oAgeoZMd', '8349545'), - (801, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'oAgeoZMd', '8368028'), - (801, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'oAgeoZMd', '8368029'), - (801, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'oAgeoZMd', '8388462'), - (801, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'oAgeoZMd', '8400273'), - (801, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'oAgeoZMd', '8400275'), - (801, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'oAgeoZMd', '8400276'), - (801, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'oAgeoZMd', '8404977'), - (801, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'oAgeoZMd', '8430783'), - (801, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'oAgeoZMd', '8430784'), - (801, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'oAgeoZMd', '8430799'), - (801, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'oAgeoZMd', '8430800'), - (801, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'oAgeoZMd', '8430801'), - (801, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'oAgeoZMd', '8438709'), - (801, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'oAgeoZMd', '8457738'), - (801, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'oAgeoZMd', '8459566'), - (801, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'oAgeoZMd', '8459567'), - (801, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'oAgeoZMd', '8461032'), - (801, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'oAgeoZMd', '8477877'), - (801, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'oAgeoZMd', '8485688'), - (801, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'oAgeoZMd', '8490587'), - (801, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'oAgeoZMd', '8493552'), - (801, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'oAgeoZMd', '8493553'), - (801, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'oAgeoZMd', '8493554'), - (801, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'oAgeoZMd', '8493555'), - (801, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'oAgeoZMd', '8493556'), - (801, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'oAgeoZMd', '8493557'), - (801, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'oAgeoZMd', '8493558'), - (801, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'oAgeoZMd', '8493559'), - (801, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'oAgeoZMd', '8493560'), - (801, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'oAgeoZMd', '8493561'), - (801, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'oAgeoZMd', '8493572'), - (801, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'oAgeoZMd', '8540725'), - (801, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'oAgeoZMd', '8555421'), - (802, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mMp5NZYd', '5630960'), - (802, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mMp5NZYd', '5630961'), - (802, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mMp5NZYd', '5630962'), - (802, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mMp5NZYd', '5630966'), - (802, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', 'mMp5NZYd', '5638765'), - (802, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mMp5NZYd', '5640097'), - (802, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mMp5NZYd', '5652395'), - (802, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mMp5NZYd', '5671637'), - (802, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mMp5NZYd', '5672329'), - (802, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mMp5NZYd', '5674057'), - (802, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mMp5NZYd', '5674060'), - (802, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mMp5NZYd', '5677461'), - (802, 1775, 'attending', '2022-10-28 11:16:49', '2025-12-17 19:47:14', 'mMp5NZYd', '5679063'), - (802, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mMp5NZYd', '5698046'), - (802, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'mMp5NZYd', '5699760'), - (802, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mMp5NZYd', '6045684'), - (803, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxDr08wd', '6045684'), - (804, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'o4PyBMnd', '3149489'), - (804, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'o4PyBMnd', '3149491'), - (804, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'o4PyBMnd', '3236450'), - (804, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'o4PyBMnd', '3236452'), - (804, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'o4PyBMnd', '3539922'), - (804, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'o4PyBMnd', '3539923'), - (804, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'o4PyBMnd', '3963335'), - (804, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'o4PyBMnd', '3975311'), - (804, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'o4PyBMnd', '3975312'), - (804, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'o4PyBMnd', '3994992'), - (804, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'o4PyBMnd', '4014338'), - (804, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'o4PyBMnd', '4136744'), - (804, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PyBMnd', '6045684'), - (805, 2515, 'maybe', '2024-05-02 16:52:25', '2025-12-17 19:46:35', '841XajMA', '7074355'), - (805, 2520, 'attending', '2024-05-14 23:35:38', '2025-12-17 19:46:35', '841XajMA', '7074360'), - (805, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '841XajMA', '7074364'), - (805, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '841XajMA', '7114957'), - (805, 2602, 'attending', '2024-04-28 16:17:23', '2025-12-17 19:46:34', '841XajMA', '7220467'), - (805, 2604, 'maybe', '2024-05-26 20:12:25', '2025-12-17 19:46:36', '841XajMA', '7225670'), - (805, 2605, 'attending', '2024-05-03 16:44:40', '2025-12-17 19:46:35', '841XajMA', '7229243'), - (805, 2606, 'attending', '2024-04-28 15:47:51', '2025-12-17 19:46:35', '841XajMA', '7230496'), - (805, 2608, 'attending', '2024-05-01 13:43:54', '2025-12-17 19:46:35', '841XajMA', '7240272'), - (805, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '841XajMA', '7240354'), - (805, 2613, 'attending', '2024-05-02 16:52:19', '2025-12-17 19:46:35', '841XajMA', '7247644'), - (805, 2614, 'maybe', '2024-05-02 16:52:36', '2025-12-17 19:46:35', '841XajMA', '7247645'), - (805, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '841XajMA', '7251633'), - (805, 2618, 'attending', '2024-05-05 03:10:07', '2025-12-17 19:46:35', '841XajMA', '7251685'), - (805, 2620, 'maybe', '2024-05-15 13:58:34', '2025-12-17 19:46:35', '841XajMA', '7258097'), - (805, 2625, 'not_attending', '2024-05-12 03:05:57', '2025-12-17 19:46:35', '841XajMA', '7263302'), - (805, 2626, 'attending', '2024-05-15 13:59:06', '2025-12-17 19:46:35', '841XajMA', '7264723'), - (805, 2628, 'maybe', '2024-05-26 20:12:48', '2025-12-17 19:46:36', '841XajMA', '7264725'), - (805, 2629, 'attending', '2024-06-08 02:20:13', '2025-12-17 19:46:28', '841XajMA', '7264726'), - (805, 2630, 'attending', '2024-05-14 23:35:24', '2025-12-17 19:46:35', '841XajMA', '7264801'), - (805, 2632, 'not_attending', '2024-05-14 12:44:20', '2025-12-17 19:46:35', '841XajMA', '7269123'), - (805, 2633, 'attending', '2024-05-15 13:58:55', '2025-12-17 19:46:35', '841XajMA', '7270095'), - (805, 2644, 'attending', '2024-05-23 21:21:16', '2025-12-17 19:46:35', '841XajMA', '7279039'), - (805, 2651, 'maybe', '2024-05-24 21:26:58', '2025-12-17 19:46:35', '841XajMA', '7288200'), - (805, 2652, 'maybe', '2024-05-26 20:12:43', '2025-12-17 19:46:36', '841XajMA', '7288339'), - (805, 2655, 'maybe', '2024-05-27 23:43:57', '2025-12-17 19:46:35', '841XajMA', '7291225'), - (805, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '841XajMA', '7302674'), - (805, 2666, 'maybe', '2024-06-06 23:51:16', '2025-12-17 19:46:36', '841XajMA', '7307775'), - (805, 2667, 'maybe', '2024-06-05 12:22:48', '2025-12-17 19:46:36', '841XajMA', '7307776'), - (805, 2668, 'attending', '2024-06-06 02:09:56', '2025-12-17 19:46:36', '841XajMA', '7308821'), - (805, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '841XajMA', '7324073'), - (805, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '841XajMA', '7324074'), - (805, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '841XajMA', '7324075'), - (805, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '841XajMA', '7324078'), - (805, 2696, 'attending', '2024-08-24 11:04:45', '2025-12-17 19:46:32', '841XajMA', '7324081'), - (805, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '841XajMA', '7324082'), - (805, 2699, 'maybe', '2024-06-12 16:47:43', '2025-12-17 19:46:28', '841XajMA', '7324385'), - (805, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '841XajMA', '7331457'), - (805, 2723, 'maybe', '2024-06-20 19:06:43', '2025-12-17 19:46:29', '841XajMA', '7332389'), - (805, 2724, 'attending', '2024-06-26 00:38:49', '2025-12-17 19:46:29', '841XajMA', '7332562'), - (805, 2729, 'maybe', '2024-06-23 16:47:52', '2025-12-17 19:46:29', '841XajMA', '7335092'), - (805, 2763, 'maybe', '2024-07-21 13:23:01', '2025-12-17 19:46:30', '841XajMA', '7363594'), - (805, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '841XajMA', '7363643'), - (805, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '841XajMA', '7368606'), - (805, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '841XajMA', '7397462'), - (805, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '841XajMA', '7424275'), - (805, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '841XajMA', '7424276'), - (805, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '841XajMA', '7432751'), - (805, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '841XajMA', '7432752'), - (805, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '841XajMA', '7432753'), - (805, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '841XajMA', '7432754'), - (805, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '841XajMA', '7432755'), - (805, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '841XajMA', '7432756'), - (805, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '841XajMA', '7432758'), - (805, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '841XajMA', '7432759'), - (805, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '841XajMA', '7433834'), - (805, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '841XajMA', '7470197'), - (805, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '841XajMA', '7685613'), - (805, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '841XajMA', '7688194'), - (805, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '841XajMA', '7688196'), - (805, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '841XajMA', '7688289'), - (805, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '841XajMA', '7692763'), - (805, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '841XajMA', '7697552'), - (805, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '841XajMA', '7699878'), - (806, 258, 'not_attending', '2021-05-29 17:28:18', '2025-12-17 19:47:47', 'rdOJWoP4', '3149489'), - (806, 397, 'not_attending', '2021-05-27 22:05:46', '2025-12-17 19:47:47', 'rdOJWoP4', '3236452'), - (806, 647, 'maybe', '2021-05-22 00:07:46', '2025-12-17 19:47:46', 'rdOJWoP4', '3539922'), - (806, 648, 'maybe', '2021-05-24 22:13:03', '2025-12-17 19:47:47', 'rdOJWoP4', '3539923'), - (806, 725, 'maybe', '2021-05-23 21:39:10', '2025-12-17 19:47:47', 'rdOJWoP4', '3661372'), - (806, 773, 'not_attending', '2021-05-27 18:32:57', '2025-12-17 19:47:46', 'rdOJWoP4', '3729399'), - (806, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'rdOJWoP4', '3963335'), - (806, 821, 'maybe', '2021-05-31 18:22:32', '2025-12-17 19:47:47', 'rdOJWoP4', '3963965'), - (806, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'rdOJWoP4', '3974109'), - (806, 824, 'maybe', '2021-06-03 22:48:05', '2025-12-17 19:47:47', 'rdOJWoP4', '3974112'), - (806, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'rdOJWoP4', '3975311'), - (806, 828, 'not_attending', '2021-06-12 22:59:34', '2025-12-17 19:47:47', 'rdOJWoP4', '3975312'), - (806, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOJWoP4', '3994992'), - (806, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'rdOJWoP4', '4014338'), - (806, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'rdOJWoP4', '4021848'), - (806, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'rdOJWoP4', '4136744'), - (806, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'rdOJWoP4', '4136937'), - (806, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'rdOJWoP4', '4136938'), - (806, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'rdOJWoP4', '4136947'), - (806, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOJWoP4', '4210314'), - (806, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'rdOJWoP4', '4225444'), - (806, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdOJWoP4', '4239259'), - (806, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'rdOJWoP4', '4240316'), - (806, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'rdOJWoP4', '4240317'), - (806, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdOJWoP4', '4240318'), - (806, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'rdOJWoP4', '4240320'), - (806, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdOJWoP4', '4250163'), - (806, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'rdOJWoP4', '4275957'), - (806, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdOJWoP4', '4277819'), - (806, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdOJWoP4', '4301723'), - (806, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'rdOJWoP4', '4302093'), - (806, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOJWoP4', '4304151'), - (806, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'rdOJWoP4', '4345519'), - (806, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOJWoP4', '4356801'), - (806, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'rdOJWoP4', '4358025'), - (806, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'rdOJWoP4', '4366186'), - (806, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdOJWoP4', '4366187'), - (806, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'rdOJWoP4', '4402823'), - (806, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'rdOJWoP4', '4420735'), - (806, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'rdOJWoP4', '4420738'), - (806, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'rdOJWoP4', '4420739'), - (806, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'rdOJWoP4', '4420741'), - (806, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'rdOJWoP4', '4420744'), - (806, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'rdOJWoP4', '4420747'), - (806, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'rdOJWoP4', '4420748'), - (806, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'rdOJWoP4', '4420749'), - (806, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'rdOJWoP4', '4461883'), - (806, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOJWoP4', '6045684'), - (807, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd9oGkMpA', '4736503'), - (807, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd9oGkMpA', '4736504'), - (807, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd9oGkMpA', '5045826'), - (807, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd9oGkMpA', '5132533'), - (807, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd9oGkMpA', '5186582'), - (807, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd9oGkMpA', '5186583'), - (807, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd9oGkMpA', '5186585'), - (807, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9oGkMpA', '5190437'), - (807, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'd9oGkMpA', '5196763'), - (807, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'd9oGkMpA', '5199460'), - (807, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9oGkMpA', '5215989'), - (807, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd9oGkMpA', '6045684'), - (808, 2104, 'attending', '2023-06-19 03:13:45', '2025-12-17 19:46:50', 'dKZnkrY4', '6149499'), - (808, 2108, 'attending', '2023-06-18 17:37:22', '2025-12-17 19:46:50', 'dKZnkrY4', '6150864'), - (808, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKZnkrY4', '6155491'), - (808, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKZnkrY4', '6164417'), - (808, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKZnkrY4', '6166388'), - (808, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKZnkrY4', '6176439'), - (808, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKZnkrY4', '6182410'), - (808, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKZnkrY4', '6185812'), - (808, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKZnkrY4', '6187651'), - (808, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKZnkrY4', '6187963'), - (808, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKZnkrY4', '6187964'), - (808, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKZnkrY4', '6187966'), - (808, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKZnkrY4', '6187967'), - (808, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKZnkrY4', '6187969'), - (808, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKZnkrY4', '6334878'), - (808, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dKZnkrY4', '6337236'), - (808, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKZnkrY4', '6337970'), - (808, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dKZnkrY4', '6338308'), - (808, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dKZnkrY4', '6340845'), - (808, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dKZnkrY4', '6341710'), - (808, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKZnkrY4', '6342044'), - (808, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKZnkrY4', '6342298'), - (808, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dKZnkrY4', '6343294'), - (808, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKZnkrY4', '6347034'), - (808, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKZnkrY4', '6347056'), - (808, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKZnkrY4', '6353830'), - (808, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKZnkrY4', '6353831'), - (808, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKZnkrY4', '6357867'), - (808, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKZnkrY4', '6358652'), - (808, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKZnkrY4', '6361709'), - (808, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKZnkrY4', '6361710'), - (808, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKZnkrY4', '6361711'), - (808, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dKZnkrY4', '6361712'), - (808, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKZnkrY4', '6361713'), - (808, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKZnkrY4', '6382573'), - (808, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dKZnkrY4', '6388604'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (808, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKZnkrY4', '6394629'), - (808, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKZnkrY4', '6394631'), - (808, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKZnkrY4', '6440863'), - (808, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKZnkrY4', '6445440'), - (808, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKZnkrY4', '6453951'), - (808, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKZnkrY4', '6461696'), - (808, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKZnkrY4', '6462129'), - (808, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKZnkrY4', '6463218'), - (808, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dKZnkrY4', '6472181'), - (808, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZnkrY4', '6482693'), - (808, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZnkrY4', '6484200'), - (808, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKZnkrY4', '6484680'), - (808, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZnkrY4', '6507741'), - (808, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZnkrY4', '6514659'), - (808, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZnkrY4', '6514660'), - (808, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZnkrY4', '6519103'), - (808, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZnkrY4', '6535681'), - (808, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZnkrY4', '6584747'), - (808, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZnkrY4', '6587097'), - (808, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZnkrY4', '6609022'), - (808, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZnkrY4', '6632757'), - (808, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZnkrY4', '6644187'), - (808, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZnkrY4', '6648951'), - (808, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZnkrY4', '6648952'), - (808, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZnkrY4', '6655401'), - (808, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZnkrY4', '6661585'), - (808, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZnkrY4', '6661588'), - (808, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZnkrY4', '6661589'), - (808, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZnkrY4', '6699906'), - (808, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZnkrY4', '6701109'), - (808, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZnkrY4', '6705219'), - (808, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZnkrY4', '6710153'), - (808, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZnkrY4', '6711552'), - (808, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZnkrY4', '6711553'), - (809, 252, 'attending', '2021-02-23 22:27:34', '2025-12-17 19:47:50', '1ArjK9lA', '3149483'), - (809, 574, 'not_attending', '2021-03-05 05:02:37', '2025-12-17 19:47:51', '1ArjK9lA', '3435543'), - (809, 604, 'attending', '2021-02-23 22:28:04', '2025-12-17 19:47:50', '1ArjK9lA', '3470305'), - (809, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '1ArjK9lA', '3517815'), - (809, 622, 'attending', '2021-03-14 00:06:45', '2025-12-17 19:47:51', '1ArjK9lA', '3517816'), - (809, 623, 'attending', '2021-02-26 00:25:39', '2025-12-17 19:47:50', '1ArjK9lA', '3523941'), - (809, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '1ArjK9lA', '3533850'), - (809, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '1ArjK9lA', '3536632'), - (809, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '1ArjK9lA', '3536656'), - (809, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '1ArjK9lA', '3539916'), - (809, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '1ArjK9lA', '3539917'), - (809, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '1ArjK9lA', '3539918'), - (809, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '1ArjK9lA', '3539919'), - (809, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '1ArjK9lA', '3539920'), - (809, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '1ArjK9lA', '3539921'), - (809, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '1ArjK9lA', '3539922'), - (809, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '1ArjK9lA', '3539923'), - (809, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '1ArjK9lA', '3539927'), - (809, 705, 'not_attending', '2021-03-28 18:10:07', '2025-12-17 19:47:44', '1ArjK9lA', '3581895'), - (809, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '1ArjK9lA', '3582734'), - (809, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '1ArjK9lA', '3583262'), - (809, 717, 'attending', '2021-03-28 18:10:09', '2025-12-17 19:47:44', '1ArjK9lA', '3619523'), - (809, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '1ArjK9lA', '3661369'), - (809, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '1ArjK9lA', '3674262'), - (809, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '1ArjK9lA', '3677402'), - (809, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '1ArjK9lA', '3730212'), - (809, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArjK9lA', '6045684'), - (810, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dx6OrX1A', '4736499'), - (810, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dx6OrX1A', '4736503'), - (810, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dx6OrX1A', '4736504'), - (810, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dx6OrX1A', '5038850'), - (810, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dx6OrX1A', '5045826'), - (810, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dx6OrX1A', '5132533'), - (810, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dx6OrX1A', '6045684'), - (811, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'nda5rLnd', '3314964'), - (811, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'nda5rLnd', '3323365'), - (811, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'nda5rLnd', '3329383'), - (811, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'nda5rLnd', '3351539'), - (811, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'nda5rLnd', '3386848'), - (811, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'nda5rLnd', '3389527'), - (811, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'nda5rLnd', '3396499'), - (811, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'nda5rLnd', '3403650'), - (811, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nda5rLnd', '3406988'), - (811, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'nda5rLnd', '3416576'), - (811, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'nda5rLnd', '3430267'), - (811, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'nda5rLnd', '3470305'), - (811, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'nda5rLnd', '3470991'), - (811, 621, 'attending', '2021-03-05 15:32:05', '2025-12-17 19:47:51', 'nda5rLnd', '3517815'), - (811, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'nda5rLnd', '3517816'), - (811, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'nda5rLnd', '3523941'), - (811, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'nda5rLnd', '3533850'), - (811, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'nda5rLnd', '3536632'), - (811, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'nda5rLnd', '3536656'), - (811, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'nda5rLnd', '3539916'), - (811, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'nda5rLnd', '3539917'), - (811, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'nda5rLnd', '3539918'), - (811, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'nda5rLnd', '3539919'), - (811, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'nda5rLnd', '3539920'), - (811, 646, 'attending', '2021-05-14 14:10:11', '2025-12-17 19:47:46', 'nda5rLnd', '3539921'), - (811, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'nda5rLnd', '3539922'), - (811, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'nda5rLnd', '3539923'), - (811, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'nda5rLnd', '3539927'), - (811, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'nda5rLnd', '3582734'), - (811, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'nda5rLnd', '3583262'), - (811, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'nda5rLnd', '3619523'), - (811, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'nda5rLnd', '3661369'), - (811, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'nda5rLnd', '3674262'), - (811, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'nda5rLnd', '3677402'), - (811, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'nda5rLnd', '3730212'), - (811, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'nda5rLnd', '3793156'), - (811, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'nda5rLnd', '3974109'), - (811, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'nda5rLnd', '3975311'), - (811, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'nda5rLnd', '3975312'), - (811, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'nda5rLnd', '3994992'), - (811, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'nda5rLnd', '4014338'), - (811, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'nda5rLnd', '4021848'), - (811, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'nda5rLnd', '4136744'), - (811, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'nda5rLnd', '4136937'), - (811, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'nda5rLnd', '4136938'), - (811, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'nda5rLnd', '4136947'), - (811, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nda5rLnd', '4210314'), - (811, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'nda5rLnd', '4225444'), - (811, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'nda5rLnd', '4239259'), - (811, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'nda5rLnd', '4240316'), - (811, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'nda5rLnd', '4240317'), - (811, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'nda5rLnd', '4240318'), - (811, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'nda5rLnd', '4240320'), - (811, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'nda5rLnd', '4250163'), - (811, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'nda5rLnd', '4275957'), - (811, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nda5rLnd', '4277819'), - (811, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'nda5rLnd', '4301723'), - (811, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'nda5rLnd', '4302093'), - (811, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nda5rLnd', '4304151'), - (811, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nda5rLnd', '4356801'), - (811, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'nda5rLnd', '4366186'), - (811, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'nda5rLnd', '4366187'), - (811, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'nda5rLnd', '4420735'), - (811, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nda5rLnd', '4420738'), - (811, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nda5rLnd', '4420739'), - (811, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nda5rLnd', '4420741'), - (811, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nda5rLnd', '4420744'), - (811, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nda5rLnd', '4420747'), - (811, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nda5rLnd', '4420748'), - (811, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nda5rLnd', '4420749'), - (811, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nda5rLnd', '4461883'), - (811, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nda5rLnd', '4508342'), - (811, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nda5rLnd', '4568602'), - (811, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nda5rLnd', '4572153'), - (811, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'nda5rLnd', '4585962'), - (811, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'nda5rLnd', '4596356'), - (811, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nda5rLnd', '4598860'), - (811, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'nda5rLnd', '4598861'), - (811, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'nda5rLnd', '4602797'), - (811, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'nda5rLnd', '4637896'), - (811, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nda5rLnd', '4642994'), - (811, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'nda5rLnd', '4642995'), - (811, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'nda5rLnd', '4642996'), - (811, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'nda5rLnd', '4642997'), - (811, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'nda5rLnd', '4645687'), - (811, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nda5rLnd', '4645698'), - (811, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'nda5rLnd', '4645704'), - (811, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'nda5rLnd', '4645705'), - (811, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nda5rLnd', '4668385'), - (811, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nda5rLnd', '4694407'), - (811, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nda5rLnd', '4736497'), - (811, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nda5rLnd', '4736499'), - (811, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nda5rLnd', '4736500'), - (811, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nda5rLnd', '4736503'), - (811, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nda5rLnd', '4736504'), - (811, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nda5rLnd', '4746789'), - (811, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'nda5rLnd', '4753929'), - (811, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nda5rLnd', '5038850'), - (811, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nda5rLnd', '5045826'), - (811, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nda5rLnd', '5132533'), - (811, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'nda5rLnd', '5186582'), - (811, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nda5rLnd', '5186583'), - (811, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nda5rLnd', '5186585'), - (811, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'nda5rLnd', '5190437'), - (811, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nda5rLnd', '5195095'), - (811, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nda5rLnd', '5215989'), - (811, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nda5rLnd', '5223686'), - (811, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nda5rLnd', '5247467'), - (811, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nda5rLnd', '5260800'), - (811, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nda5rLnd', '5269930'), - (811, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nda5rLnd', '5271448'), - (811, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'nda5rLnd', '5271449'), - (811, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nda5rLnd', '5278159'), - (811, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'nda5rLnd', '5363695'), - (811, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nda5rLnd', '5365960'), - (811, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nda5rLnd', '5378247'), - (811, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'nda5rLnd', '5389605'), - (811, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nda5rLnd', '5397265'), - (811, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nda5rLnd', '5404786'), - (811, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nda5rLnd', '5405203'), - (811, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nda5rLnd', '5412550'), - (811, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nda5rLnd', '5415046'), - (811, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nda5rLnd', '5422086'), - (811, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nda5rLnd', '5422406'), - (811, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nda5rLnd', '5424565'), - (811, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nda5rLnd', '5426882'), - (811, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nda5rLnd', '5441125'), - (811, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nda5rLnd', '5441126'), - (811, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nda5rLnd', '5441128'), - (811, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nda5rLnd', '5441131'), - (811, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nda5rLnd', '5441132'), - (811, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nda5rLnd', '5453325'), - (811, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nda5rLnd', '5454516'), - (811, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nda5rLnd', '5454605'), - (811, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nda5rLnd', '5455037'), - (811, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nda5rLnd', '5461278'), - (811, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nda5rLnd', '5469480'), - (811, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nda5rLnd', '5474663'), - (811, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nda5rLnd', '5482022'), - (811, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nda5rLnd', '5488912'), - (811, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nda5rLnd', '5492192'), - (811, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nda5rLnd', '5493139'), - (811, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nda5rLnd', '5493200'), - (811, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nda5rLnd', '5502188'), - (811, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nda5rLnd', '5505059'), - (811, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nda5rLnd', '5509055'), - (811, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nda5rLnd', '5512862'), - (811, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nda5rLnd', '5513985'), - (811, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nda5rLnd', '5519981'), - (811, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nda5rLnd', '5522550'), - (811, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nda5rLnd', '5534683'), - (811, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nda5rLnd', '5537735'), - (811, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nda5rLnd', '5540859'), - (811, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nda5rLnd', '5546619'), - (811, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nda5rLnd', '5557747'), - (811, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nda5rLnd', '5560255'), - (811, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nda5rLnd', '5562906'), - (811, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nda5rLnd', '5600604'), - (811, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nda5rLnd', '5605544'), - (811, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nda5rLnd', '5630960'), - (811, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nda5rLnd', '5630961'), - (811, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nda5rLnd', '5630962'), - (811, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nda5rLnd', '5630966'), - (811, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nda5rLnd', '5630967'), - (811, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nda5rLnd', '5630968'), - (811, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nda5rLnd', '5635406'), - (811, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nda5rLnd', '5638765'), - (811, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nda5rLnd', '5640097'), - (811, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nda5rLnd', '5640843'), - (811, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nda5rLnd', '5641521'), - (811, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nda5rLnd', '5642818'), - (811, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nda5rLnd', '5652395'), - (811, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nda5rLnd', '5670445'), - (811, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nda5rLnd', '5671637'), - (811, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nda5rLnd', '5672329'), - (811, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nda5rLnd', '5674057'), - (811, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nda5rLnd', '5674060'), - (811, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nda5rLnd', '5677461'), - (811, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nda5rLnd', '5698046'), - (811, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nda5rLnd', '5699760'), - (811, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nda5rLnd', '5741601'), - (811, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nda5rLnd', '5763458'), - (811, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nda5rLnd', '5774172'), - (811, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nda5rLnd', '5818247'), - (811, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nda5rLnd', '5819471'), - (811, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'nda5rLnd', '5827739'), - (811, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nda5rLnd', '5844306'), - (811, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nda5rLnd', '5850159'), - (811, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nda5rLnd', '5858999'), - (811, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nda5rLnd', '5871984'), - (811, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nda5rLnd', '5876354'), - (811, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nda5rLnd', '5880939'), - (811, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nda5rLnd', '5880940'), - (811, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nda5rLnd', '5880942'), - (811, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nda5rLnd', '5880943'), - (811, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nda5rLnd', '5887890'), - (811, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nda5rLnd', '5888598'), - (811, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nda5rLnd', '5893260'), - (811, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nda5rLnd', '5899826'), - (811, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nda5rLnd', '5900199'), - (811, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nda5rLnd', '5900200'), - (811, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nda5rLnd', '5900202'), - (811, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nda5rLnd', '5900203'), - (811, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nda5rLnd', '5901108'), - (811, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nda5rLnd', '5901126'), - (811, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'nda5rLnd', '5901606'), - (811, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nda5rLnd', '5909655'), - (811, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nda5rLnd', '5910522'), - (811, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nda5rLnd', '5910526'), - (811, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nda5rLnd', '5910528'), - (811, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nda5rLnd', '5916219'), - (811, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nda5rLnd', '5936234'), - (811, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nda5rLnd', '5958351'), - (811, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nda5rLnd', '5959751'), - (811, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nda5rLnd', '5959755'), - (811, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nda5rLnd', '5960055'), - (811, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nda5rLnd', '5961684'), - (811, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nda5rLnd', '5962132'), - (811, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nda5rLnd', '5962133'), - (811, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nda5rLnd', '5962134'), - (811, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nda5rLnd', '5962317'), - (811, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nda5rLnd', '5962318'), - (811, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nda5rLnd', '5965933'), - (811, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nda5rLnd', '5967014'), - (811, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nda5rLnd', '5972815'), - (811, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nda5rLnd', '5974016'), - (811, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nda5rLnd', '5981515'), - (811, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nda5rLnd', '5993516'), - (811, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nda5rLnd', '5998939'), - (811, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nda5rLnd', '6028191'), - (811, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nda5rLnd', '6040066'), - (811, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nda5rLnd', '6042717'), - (811, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nda5rLnd', '6044838'), - (811, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nda5rLnd', '6044839'), - (811, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nda5rLnd', '6045684'), - (811, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nda5rLnd', '6050104'), - (811, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nda5rLnd', '6053195'), - (811, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nda5rLnd', '6053198'), - (811, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nda5rLnd', '6056085'), - (811, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nda5rLnd', '6056916'), - (811, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nda5rLnd', '6059290'), - (811, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nda5rLnd', '6060328'), - (811, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nda5rLnd', '6061037'), - (811, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nda5rLnd', '6061039'), - (811, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nda5rLnd', '6067245'), - (811, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nda5rLnd', '6068094'), - (811, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nda5rLnd', '6068252'), - (811, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nda5rLnd', '6068253'), - (811, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nda5rLnd', '6068254'), - (811, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nda5rLnd', '6068280'), - (811, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nda5rLnd', '6069093'), - (811, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nda5rLnd', '6072528'), - (811, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nda5rLnd', '6079840'), - (811, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nda5rLnd', '6083398'), - (811, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nda5rLnd', '6093504'), - (811, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nda5rLnd', '6097414'), - (811, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nda5rLnd', '6097442'), - (811, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nda5rLnd', '6097684'), - (811, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nda5rLnd', '6098762'), - (811, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nda5rLnd', '6101361'), - (811, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nda5rLnd', '6101362'), - (811, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nda5rLnd', '6107314'), - (811, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nda5rLnd', '6120034'), - (811, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nda5rLnd', '6136733'), - (811, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nda5rLnd', '6137989'), - (811, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nda5rLnd', '6150864'), - (811, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nda5rLnd', '6155491'), - (811, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nda5rLnd', '6164417'), - (811, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nda5rLnd', '6166388'), - (811, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nda5rLnd', '6176439'), - (811, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nda5rLnd', '6182410'), - (811, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nda5rLnd', '6185812'), - (811, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nda5rLnd', '6187651'), - (811, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nda5rLnd', '6187963'), - (811, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nda5rLnd', '6187964'), - (811, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nda5rLnd', '6187966'), - (811, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nda5rLnd', '6187967'), - (811, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nda5rLnd', '6187969'), - (811, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nda5rLnd', '6334878'), - (811, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nda5rLnd', '6337236'), - (811, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nda5rLnd', '6337970'), - (811, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nda5rLnd', '6338308'), - (811, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nda5rLnd', '6341710'), - (811, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nda5rLnd', '6342044'), - (811, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nda5rLnd', '6342298'), - (811, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nda5rLnd', '6343294'), - (811, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nda5rLnd', '6347034'), - (811, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nda5rLnd', '6347056'), - (811, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nda5rLnd', '6353830'), - (811, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nda5rLnd', '6353831'), - (811, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nda5rLnd', '6357867'), - (811, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nda5rLnd', '6358652'), - (811, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nda5rLnd', '6361709'), - (811, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nda5rLnd', '6361710'), - (811, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nda5rLnd', '6361711'), - (811, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nda5rLnd', '6361712'), - (811, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nda5rLnd', '6361713'), - (811, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nda5rLnd', '6382573'), - (811, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nda5rLnd', '6388604'), - (811, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nda5rLnd', '6394629'), - (811, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nda5rLnd', '6394631'), - (811, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nda5rLnd', '6440863'), - (811, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nda5rLnd', '6445440'), - (811, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nda5rLnd', '6453951'), - (811, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nda5rLnd', '6461696'), - (811, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nda5rLnd', '6462129'), - (811, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nda5rLnd', '6463218'), - (811, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nda5rLnd', '6472181'), - (811, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nda5rLnd', '6482693'), - (811, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'nda5rLnd', '6484200'), - (811, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nda5rLnd', '6484680'), - (811, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nda5rLnd', '6507741'), - (811, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nda5rLnd', '6514659'), - (811, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nda5rLnd', '6514660'), - (811, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nda5rLnd', '6519103'), - (811, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nda5rLnd', '6535681'), - (811, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nda5rLnd', '6584747'), - (811, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nda5rLnd', '6587097'), - (811, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nda5rLnd', '6609022'), - (811, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nda5rLnd', '6632757'), - (811, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nda5rLnd', '6644187'), - (811, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nda5rLnd', '6648951'), - (811, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nda5rLnd', '6648952'), - (811, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nda5rLnd', '6655401'), - (811, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nda5rLnd', '6661585'), - (811, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nda5rLnd', '6661588'), - (811, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nda5rLnd', '6661589'), - (811, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nda5rLnd', '6699906'), - (811, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nda5rLnd', '6699913'), - (811, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nda5rLnd', '6701109'), - (811, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nda5rLnd', '6705219'), - (811, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nda5rLnd', '6710153'), - (811, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nda5rLnd', '6711552'), - (811, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'nda5rLnd', '6711553'), - (811, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nda5rLnd', '6722688'), - (811, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nda5rLnd', '6730620'), - (811, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nda5rLnd', '6740364'), - (811, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nda5rLnd', '6743829'), - (811, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nda5rLnd', '7030380'), - (811, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nda5rLnd', '7033677'), - (811, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nda5rLnd', '7044715'), - (811, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nda5rLnd', '7050318'), - (811, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nda5rLnd', '7050319'), - (811, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nda5rLnd', '7050322'), - (811, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nda5rLnd', '7057804'), - (811, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nda5rLnd', '7072824'), - (811, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nda5rLnd', '7074348'), - (811, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nda5rLnd', '7074364'), - (811, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'nda5rLnd', '7089267'), - (811, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nda5rLnd', '7098747'), - (811, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nda5rLnd', '7113468'), - (811, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nda5rLnd', '7114856'), - (811, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nda5rLnd', '7114951'), - (811, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nda5rLnd', '7114955'), - (811, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nda5rLnd', '7114956'), - (811, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nda5rLnd', '7114957'), - (811, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nda5rLnd', '7159484'), - (811, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nda5rLnd', '7178446'), - (811, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nda5rLnd', '7220467'), - (811, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nda5rLnd', '7240354'), - (811, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nda5rLnd', '7251633'), - (811, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nda5rLnd', '7324073'), - (811, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nda5rLnd', '7324074'), - (811, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nda5rLnd', '7324075'), - (811, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nda5rLnd', '7324078'), - (811, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nda5rLnd', '7324082'), - (811, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nda5rLnd', '7331457'), - (811, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nda5rLnd', '7363643'), - (811, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nda5rLnd', '7368606'), - (811, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nda5rLnd', '7397462'), - (811, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nda5rLnd', '7424275'), - (811, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nda5rLnd', '7432751'), - (811, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nda5rLnd', '7432752'), - (811, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nda5rLnd', '7432753'), - (811, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nda5rLnd', '7432754'), - (811, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nda5rLnd', '7432755'), - (811, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nda5rLnd', '7432756'), - (811, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nda5rLnd', '7432758'), - (811, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nda5rLnd', '7432759'), - (811, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nda5rLnd', '7433834'), - (811, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nda5rLnd', '7470197'), - (811, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nda5rLnd', '7685613'), - (811, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nda5rLnd', '7688194'), - (811, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nda5rLnd', '7688196'), - (811, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nda5rLnd', '7688289'), - (811, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nda5rLnd', '7692763'), - (811, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nda5rLnd', '7697552'), - (811, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nda5rLnd', '7699878'), - (811, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nda5rLnd', '7704043'), - (811, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nda5rLnd', '7712467'), - (811, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nda5rLnd', '7713585'), - (811, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nda5rLnd', '7713586'), - (811, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nda5rLnd', '7738518'), - (811, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nda5rLnd', '7750636'), - (811, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nda5rLnd', '7796540'), - (811, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nda5rLnd', '7796541'), - (811, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nda5rLnd', '7796542'), - (811, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nda5rLnd', '7825913'), - (811, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nda5rLnd', '7826209'), - (811, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nda5rLnd', '7834742'), - (811, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nda5rLnd', '7842108'), - (811, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nda5rLnd', '7842902'), - (811, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nda5rLnd', '7842903'), - (811, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nda5rLnd', '7842904'), - (811, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nda5rLnd', '7842905'), - (811, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nda5rLnd', '7855719'), - (811, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nda5rLnd', '7860683'), - (811, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nda5rLnd', '7860684'), - (811, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nda5rLnd', '7866095'), - (811, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nda5rLnd', '7869170'), - (811, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nda5rLnd', '7869188'), - (811, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nda5rLnd', '7869201'), - (811, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nda5rLnd', '7877465'), - (811, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nda5rLnd', '7888250'), - (811, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nda5rLnd', '7904777'), - (811, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nda5rLnd', '8349164'), - (811, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nda5rLnd', '8349545'), - (811, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nda5rLnd', '8368028'), - (811, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nda5rLnd', '8368029'), - (811, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nda5rLnd', '8388462'), - (811, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nda5rLnd', '8400273'), - (811, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nda5rLnd', '8400275'), - (811, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nda5rLnd', '8400276'), - (811, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nda5rLnd', '8404977'), - (811, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nda5rLnd', '8430783'), - (811, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nda5rLnd', '8430784'), - (811, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nda5rLnd', '8430799'), - (811, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nda5rLnd', '8430800'), - (811, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nda5rLnd', '8430801'), - (811, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nda5rLnd', '8438709'), - (811, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nda5rLnd', '8457738'), - (811, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nda5rLnd', '8459566'), - (811, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nda5rLnd', '8459567'), - (811, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nda5rLnd', '8461032'), - (811, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nda5rLnd', '8477877'), - (811, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nda5rLnd', '8485688'), - (811, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nda5rLnd', '8490587'), - (811, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nda5rLnd', '8493552'), - (811, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nda5rLnd', '8493553'), - (811, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nda5rLnd', '8493554'), - (811, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nda5rLnd', '8493555'), - (811, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nda5rLnd', '8493556'), - (811, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nda5rLnd', '8493557'), - (811, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nda5rLnd', '8493558'), - (811, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nda5rLnd', '8493559'), - (811, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nda5rLnd', '8493560'), - (811, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nda5rLnd', '8493561'), - (811, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nda5rLnd', '8493572'), - (811, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nda5rLnd', '8540725'), - (811, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nda5rLnd', '8555421'), - (812, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'w4WkZoP4', '3468125'), - (812, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'w4WkZoP4', '3470303'), - (812, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'w4WkZoP4', '3470305'), - (812, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'w4WkZoP4', '3470991'), - (812, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'w4WkZoP4', '3517815'), - (812, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'w4WkZoP4', '3517816'), - (812, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'w4WkZoP4', '3523941'), - (812, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4WkZoP4', '3533850'), - (812, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4WkZoP4', '3536632'), - (812, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'w4WkZoP4', '3536656'), - (812, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'w4WkZoP4', '3539916'), - (812, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'w4WkZoP4', '3539917'), - (812, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'w4WkZoP4', '3539918'), - (812, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'w4WkZoP4', '3539919'), - (812, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'w4WkZoP4', '3539920'), - (812, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'w4WkZoP4', '3539921'), - (812, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4WkZoP4', '3539922'), - (812, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'w4WkZoP4', '3539923'), - (812, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'w4WkZoP4', '3539927'), - (812, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'w4WkZoP4', '3582734'), - (812, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'w4WkZoP4', '3619523'), - (812, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WkZoP4', '6045684'), - (813, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'lAe9LlzA', '4225444'), - (813, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'lAe9LlzA', '4275957'), - (813, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAe9LlzA', '6045684'), - (814, 409, 'maybe', '2020-12-10 21:40:39', '2025-12-17 19:47:54', 'oAQyv3LA', '3236467'), - (814, 493, 'not_attending', '2020-12-04 15:43:42', '2025-12-17 19:47:54', 'oAQyv3LA', '3313856'), - (814, 499, 'attending', '2020-12-11 21:51:12', '2025-12-17 19:47:55', 'oAQyv3LA', '3314909'), - (814, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'oAQyv3LA', '3314964'), - (814, 502, 'maybe', '2020-12-12 05:04:10', '2025-12-17 19:47:55', 'oAQyv3LA', '3323365'), - (814, 503, 'maybe', '2020-12-09 21:55:55', '2025-12-17 19:47:55', 'oAQyv3LA', '3323366'), - (814, 504, 'maybe', '2020-12-09 21:55:46', '2025-12-17 19:47:55', 'oAQyv3LA', '3323368'), - (814, 506, 'maybe', '2020-12-13 22:31:18', '2025-12-17 19:47:55', 'oAQyv3LA', '3323375'), - (814, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'oAQyv3LA', '3324148'), - (814, 511, 'maybe', '2020-12-15 18:42:04', '2025-12-17 19:47:55', 'oAQyv3LA', '3325335'), - (814, 513, 'maybe', '2020-12-15 18:42:14', '2025-12-17 19:47:55', 'oAQyv3LA', '3329383'), - (814, 520, 'maybe', '2020-12-15 18:41:46', '2025-12-17 19:47:55', 'oAQyv3LA', '3337453'), - (814, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'oAQyv3LA', '3351539'), - (814, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'oAQyv3LA', '3386848'), - (814, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'oAQyv3LA', '3389527'), - (814, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'oAQyv3LA', '3396499'), - (814, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'oAQyv3LA', '3403650'), - (814, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'oAQyv3LA', '3406988'), - (814, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'oAQyv3LA', '3408338'), - (814, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'oAQyv3LA', '3416576'), - (814, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQyv3LA', '6045684'), - (815, 2303, 'attending', '2023-10-28 02:43:44', '2025-12-17 19:46:47', 'dVD9ygpA', '6482691'), - (815, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVD9ygpA', '6482693'), - (815, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVD9ygpA', '6484200'), - (815, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'dVD9ygpA', '6484680'), - (815, 2310, 'maybe', '2023-11-11 23:31:04', '2025-12-17 19:46:47', 'dVD9ygpA', '6487709'), - (815, 2315, 'maybe', '2023-11-01 19:27:25', '2025-12-17 19:46:47', 'dVD9ygpA', '6493666'), - (815, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVD9ygpA', '6507741'), - (815, 2321, 'attending', '2023-10-30 21:42:31', '2025-12-17 19:46:47', 'dVD9ygpA', '6512075'), - (815, 2322, 'attending', '2023-11-12 06:46:20', '2025-12-17 19:46:48', 'dVD9ygpA', '6514659'), - (815, 2323, 'attending', '2023-11-28 03:37:47', '2025-12-17 19:46:48', 'dVD9ygpA', '6514660'), - (815, 2324, 'attending', '2023-12-06 23:48:09', '2025-12-17 19:46:49', 'dVD9ygpA', '6514662'), - (815, 2325, 'attending', '2023-12-11 17:26:45', '2025-12-17 19:46:36', 'dVD9ygpA', '6514663'), - (815, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVD9ygpA', '6519103'), - (815, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVD9ygpA', '6535681'), - (815, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVD9ygpA', '6584747'), - (815, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVD9ygpA', '6587097'), - (815, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVD9ygpA', '6609022'), - (815, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVD9ygpA', '6632757'), - (815, 2378, 'maybe', '2023-12-31 03:40:05', '2025-12-17 19:46:37', 'dVD9ygpA', '6644006'), - (815, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVD9ygpA', '6644187'), - (815, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVD9ygpA', '6648951'), - (815, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVD9ygpA', '6648952'), - (815, 2392, 'maybe', '2024-01-06 02:04:34', '2025-12-17 19:46:37', 'dVD9ygpA', '6654412'), - (815, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVD9ygpA', '6655401'), - (815, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVD9ygpA', '6661585'), - (815, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVD9ygpA', '6661588'), - (815, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVD9ygpA', '6661589'), - (815, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVD9ygpA', '6699906'), - (815, 2408, 'attending', '2024-01-22 03:07:51', '2025-12-17 19:46:40', 'dVD9ygpA', '6699907'), - (815, 2409, 'attending', '2024-01-31 15:35:04', '2025-12-17 19:46:41', 'dVD9ygpA', '6699909'), - (815, 2410, 'attending', '2024-02-07 03:12:26', '2025-12-17 19:46:41', 'dVD9ygpA', '6699911'), - (815, 2411, 'attending', '2024-02-14 15:36:02', '2025-12-17 19:46:41', 'dVD9ygpA', '6699913'), - (815, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVD9ygpA', '6701109'), - (815, 2417, 'maybe', '2024-01-18 15:54:37', '2025-12-17 19:46:40', 'dVD9ygpA', '6701905'), - (815, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dVD9ygpA', '6704561'), - (815, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVD9ygpA', '6705219'), - (815, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dVD9ygpA', '6708410'), - (815, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVD9ygpA', '6710153'), - (815, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVD9ygpA', '6711552'), - (815, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVD9ygpA', '6711553'), - (815, 2431, 'attending', '2024-01-23 23:29:33', '2025-12-17 19:46:41', 'dVD9ygpA', '6712394'), - (815, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVD9ygpA', '6722688'), - (815, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVD9ygpA', '6730620'), - (815, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVD9ygpA', '6730642'), - (815, 2451, 'maybe', '2024-02-08 17:13:24', '2025-12-17 19:46:41', 'dVD9ygpA', '6740333'), - (815, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dVD9ygpA', '6740364'), - (815, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVD9ygpA', '6743829'), - (815, 2463, 'attending', '2024-02-11 07:09:50', '2025-12-17 19:46:41', 'dVD9ygpA', '6746394'), - (815, 2464, 'maybe', '2024-02-11 21:26:48', '2025-12-17 19:46:41', 'dVD9ygpA', '6746982'), - (815, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVD9ygpA', '7030380'), - (815, 2469, 'attending', '2024-02-16 23:52:09', '2025-12-17 19:46:42', 'dVD9ygpA', '7030632'), - (815, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dVD9ygpA', '7033677'), - (815, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dVD9ygpA', '7035415'), - (815, 2481, 'attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dVD9ygpA', '7044715'), - (815, 2486, 'attending', '2024-02-28 04:11:06', '2025-12-17 19:46:43', 'dVD9ygpA', '7048277'), - (815, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVD9ygpA', '7050318'), - (815, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVD9ygpA', '7050319'), - (815, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVD9ygpA', '7050322'), - (815, 2499, 'attending', '2024-03-04 19:52:30', '2025-12-17 19:46:43', 'dVD9ygpA', '7057804'), - (815, 2503, 'attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'dVD9ygpA', '7062500'), - (815, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVD9ygpA', '7072824'), - (815, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVD9ygpA', '7074348'), - (815, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dVD9ygpA', '7074364'), - (815, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVD9ygpA', '7089267'), - (815, 2547, 'attending', '2024-03-22 01:47:48', '2025-12-17 19:46:33', 'dVD9ygpA', '7096945'), - (815, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dVD9ygpA', '7098747'), - (815, 2551, 'not_attending', '2024-03-28 16:11:38', '2025-12-17 19:46:33', 'dVD9ygpA', '7109912'), - (815, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dVD9ygpA', '7113468'), - (815, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVD9ygpA', '7114856'), - (815, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dVD9ygpA', '7114951'), - (815, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVD9ygpA', '7114955'), - (815, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVD9ygpA', '7114956'), - (815, 2558, 'attending', '2024-04-29 22:44:12', '2025-12-17 19:46:35', 'dVD9ygpA', '7114957'), - (815, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVD9ygpA', '7153615'), - (815, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVD9ygpA', '7159484'), - (815, 2585, 'attending', '2024-04-24 21:08:31', '2025-12-17 19:46:34', 'dVD9ygpA', '7175828'), - (815, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVD9ygpA', '7178446'), - (815, 2594, 'attending', '2024-04-20 18:43:11', '2025-12-17 19:46:34', 'dVD9ygpA', '7182117'), - (815, 2597, 'attending', '2024-04-21 22:46:10', '2025-12-17 19:46:34', 'dVD9ygpA', '7186726'), - (815, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dVD9ygpA', '7220467'), - (815, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dVD9ygpA', '7240354'), - (815, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dVD9ygpA', '7251633'), - (815, 2626, 'attending', '2024-05-15 17:49:26', '2025-12-17 19:46:35', 'dVD9ygpA', '7264723'), - (815, 2627, 'attending', '2024-05-23 14:06:43', '2025-12-17 19:46:35', 'dVD9ygpA', '7264724'), - (815, 2628, 'attending', '2024-05-30 18:45:07', '2025-12-17 19:46:36', 'dVD9ygpA', '7264725'), - (815, 2629, 'attending', '2024-06-07 00:40:23', '2025-12-17 19:46:28', 'dVD9ygpA', '7264726'), - (815, 2633, 'maybe', '2024-05-15 17:49:07', '2025-12-17 19:46:35', 'dVD9ygpA', '7270095'), - (815, 2655, 'maybe', '2024-05-27 01:49:00', '2025-12-17 19:46:35', 'dVD9ygpA', '7291225'), - (815, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dVD9ygpA', '7302674'), - (815, 2678, 'maybe', '2024-06-15 22:31:04', '2025-12-17 19:46:28', 'dVD9ygpA', '7319489'), - (815, 2686, 'maybe', '2024-06-11 19:28:24', '2025-12-17 19:46:29', 'dVD9ygpA', '7323802'), - (815, 2688, 'attending', '2024-06-25 00:21:42', '2025-12-17 19:46:29', 'dVD9ygpA', '7324073'), - (815, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dVD9ygpA', '7324074'), - (815, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dVD9ygpA', '7324075'), - (815, 2691, 'attending', '2024-07-19 04:07:09', '2025-12-17 19:46:30', 'dVD9ygpA', '7324076'), - (815, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dVD9ygpA', '7324078'), - (815, 2694, 'not_attending', '2024-08-10 13:24:25', '2025-12-17 19:46:31', 'dVD9ygpA', '7324079'), - (815, 2695, 'maybe', '2024-08-17 07:53:22', '2025-12-17 19:46:32', 'dVD9ygpA', '7324080'), - (815, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dVD9ygpA', '7324082'), - (815, 2698, 'not_attending', '2024-09-04 15:49:19', '2025-12-17 19:46:24', 'dVD9ygpA', '7324083'), - (815, 2710, 'maybe', '2024-06-19 19:31:57', '2025-12-17 19:46:29', 'dVD9ygpA', '7325108'), - (815, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dVD9ygpA', '7331457'), - (815, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dVD9ygpA', '7363643'), - (815, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dVD9ygpA', '7368606'), - (815, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dVD9ygpA', '7397462'), - (815, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dVD9ygpA', '7424275'), - (815, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dVD9ygpA', '7424276'), - (815, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dVD9ygpA', '7432751'), - (815, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dVD9ygpA', '7432752'), - (815, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dVD9ygpA', '7432753'), - (815, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dVD9ygpA', '7432754'), - (815, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dVD9ygpA', '7432755'), - (815, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dVD9ygpA', '7432756'), - (815, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dVD9ygpA', '7432758'), - (815, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dVD9ygpA', '7432759'), - (815, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dVD9ygpA', '7433834'), - (815, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dVD9ygpA', '7470197'), - (815, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dVD9ygpA', '7685613'), - (815, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dVD9ygpA', '7688194'), - (815, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dVD9ygpA', '7688196'), - (815, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dVD9ygpA', '7688289'), - (815, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dVD9ygpA', '7692763'), - (815, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dVD9ygpA', '7697552'), - (815, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dVD9ygpA', '7699878'), - (815, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dVD9ygpA', '7704043'), - (815, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dVD9ygpA', '7712467'), - (815, 2925, 'maybe', '2024-12-12 08:05:08', '2025-12-17 19:46:21', 'dVD9ygpA', '7713584'), - (815, 2926, 'maybe', '2024-12-06 07:06:13', '2025-12-17 19:46:21', 'dVD9ygpA', '7713585'), - (815, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dVD9ygpA', '7713586'), - (815, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dVD9ygpA', '7738518'), - (815, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dVD9ygpA', '7750636'), - (815, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dVD9ygpA', '7796540'), - (815, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dVD9ygpA', '7796541'), - (815, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dVD9ygpA', '7796542'), - (815, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dVD9ygpA', '7825913'), - (815, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dVD9ygpA', '7826209'), - (815, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dVD9ygpA', '7834742'), - (815, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dVD9ygpA', '7842108'), - (815, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dVD9ygpA', '7842902'), - (815, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dVD9ygpA', '7842903'), - (815, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dVD9ygpA', '7842904'), - (815, 2994, 'maybe', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dVD9ygpA', '7842905'), - (815, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dVD9ygpA', '7855719'), - (815, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dVD9ygpA', '7860683'), - (815, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dVD9ygpA', '7860684'), - (815, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dVD9ygpA', '7866095'), - (815, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dVD9ygpA', '7869170'), - (815, 3016, 'maybe', '2025-04-19 21:31:55', '2025-12-17 19:46:20', 'dVD9ygpA', '7869187'), - (815, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dVD9ygpA', '7869188'), - (815, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dVD9ygpA', '7869201'), - (815, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dVD9ygpA', '7877465'), - (815, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dVD9ygpA', '7888250'), - (815, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVD9ygpA', '8349164'), - (815, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVD9ygpA', '8349545'), - (815, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVD9ygpA', '8353584'), - (816, 599, 'attending', '2021-02-17 01:06:18', '2025-12-17 19:47:50', 'pmb61Q6m', '3468117'), - (816, 603, 'attending', '2021-02-16 07:02:01', '2025-12-17 19:47:50', 'pmb61Q6m', '3470304'), - (816, 604, 'not_attending', '2021-02-27 18:29:38', '2025-12-17 19:47:50', 'pmb61Q6m', '3470305'), - (816, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'pmb61Q6m', '3470991'), - (816, 610, 'attending', '2021-02-15 23:15:49', '2025-12-17 19:47:50', 'pmb61Q6m', '3482159'), - (816, 618, 'attending', '2021-02-19 21:23:23', '2025-12-17 19:47:50', 'pmb61Q6m', '3503991'), - (816, 621, 'not_attending', '2021-03-05 09:47:32', '2025-12-17 19:47:51', 'pmb61Q6m', '3517815'), - (816, 622, 'attending', '2021-03-09 20:47:59', '2025-12-17 19:47:51', 'pmb61Q6m', '3517816'), - (816, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'pmb61Q6m', '3523941'), - (816, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmb61Q6m', '3533850'), - (816, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmb61Q6m', '3536632'), - (816, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmb61Q6m', '3536656'), - (816, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'pmb61Q6m', '3539916'), - (816, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'pmb61Q6m', '3539917'), - (816, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmb61Q6m', '3539918'), - (816, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'pmb61Q6m', '3539919'), - (816, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmb61Q6m', '3539920'), - (816, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'pmb61Q6m', '3539921'), - (816, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmb61Q6m', '3539922'), - (816, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmb61Q6m', '3539923'), - (816, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmb61Q6m', '3539927'), - (816, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmb61Q6m', '3582734'), - (816, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmb61Q6m', '3583262'), - (816, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmb61Q6m', '3619523'), - (816, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmb61Q6m', '3661369'), - (816, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmb61Q6m', '3674262'), - (816, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmb61Q6m', '3677402'), - (816, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmb61Q6m', '3730212'), - (816, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'pmb61Q6m', '3793156'), - (816, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmb61Q6m', '3974109'), - (816, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmb61Q6m', '3975311'), - (816, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmb61Q6m', '3975312'), - (816, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmb61Q6m', '3994992'), - (816, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmb61Q6m', '4014338'), - (816, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmb61Q6m', '4021848'), - (816, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmb61Q6m', '4136744'), - (816, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'pmb61Q6m', '4136937'), - (816, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmb61Q6m', '4136938'), - (816, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmb61Q6m', '4136947'), - (816, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmb61Q6m', '4210314'), - (816, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmb61Q6m', '4225444'), - (816, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmb61Q6m', '4239259'), - (816, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmb61Q6m', '4240316'), - (816, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmb61Q6m', '4240317'), - (816, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmb61Q6m', '4240318'), - (816, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmb61Q6m', '4240320'), - (816, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmb61Q6m', '4250163'), - (816, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmb61Q6m', '4275957'), - (816, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmb61Q6m', '4277819'), - (816, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmb61Q6m', '4301723'), - (816, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'pmb61Q6m', '4302093'), - (816, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmb61Q6m', '4304151'), - (816, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'pmb61Q6m', '4345519'), - (816, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'pmb61Q6m', '4358025'), - (816, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmb61Q6m', '4366186'), - (816, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmb61Q6m', '4366187'), - (816, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmb61Q6m', '6045684'), - (817, 1119, 'attending', '2021-12-22 02:54:38', '2025-12-17 19:47:31', '4oMY95Mm', '4642997'), - (817, 1125, 'attending', '2021-12-20 20:50:35', '2025-12-17 19:47:31', '4oMY95Mm', '4644027'), - (817, 1131, 'attending', '2021-12-18 05:01:54', '2025-12-17 19:47:31', '4oMY95Mm', '4658825'), - (817, 1148, 'attending', '2021-12-17 23:48:32', '2025-12-17 19:47:31', '4oMY95Mm', '4692843'), - (817, 1151, 'maybe', '2021-12-20 23:51:32', '2025-12-17 19:47:31', '4oMY95Mm', '4708704'), - (817, 1152, 'attending', '2022-01-13 00:50:55', '2025-12-17 19:47:31', '4oMY95Mm', '4708705'), - (817, 1155, 'attending', '2021-12-20 23:49:36', '2025-12-17 19:47:31', '4oMY95Mm', '4715119'), - (817, 1158, 'not_attending', '2021-12-21 05:16:10', '2025-12-17 19:47:31', '4oMY95Mm', '4715311'), - (817, 1162, 'attending', '2021-12-30 18:17:54', '2025-12-17 19:47:31', '4oMY95Mm', '4718771'), - (817, 1164, 'attending', '2021-12-30 03:14:07', '2025-12-17 19:47:31', '4oMY95Mm', '4724208'), - (817, 1165, 'attending', '2021-12-30 03:14:09', '2025-12-17 19:47:31', '4oMY95Mm', '4724210'), - (817, 1172, 'not_attending', '2022-01-19 01:02:06', '2025-12-17 19:47:32', '4oMY95Mm', '4735348'), - (817, 1173, 'attending', '2022-01-08 23:00:36', '2025-12-17 19:47:31', '4oMY95Mm', '4736495'), - (817, 1174, 'attending', '2022-01-15 20:03:12', '2025-12-17 19:47:31', '4oMY95Mm', '4736496'), - (817, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMY95Mm', '4736497'), - (817, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMY95Mm', '4736499'), - (817, 1178, 'attending', '2022-01-29 23:51:03', '2025-12-17 19:47:32', '4oMY95Mm', '4736500'), - (817, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMY95Mm', '4736503'), - (817, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMY95Mm', '4736504'), - (817, 1185, 'maybe', '2022-01-09 08:03:58', '2025-12-17 19:47:31', '4oMY95Mm', '4746789'), - (817, 1186, 'attending', '2022-01-09 08:33:04', '2025-12-17 19:47:31', '4oMY95Mm', '4747800'), - (817, 1187, 'maybe', '2022-01-11 01:40:54', '2025-12-17 19:47:31', '4oMY95Mm', '4753907'), - (817, 1188, 'maybe', '2022-01-13 19:13:35', '2025-12-17 19:47:32', '4oMY95Mm', '4753929'), - (817, 1189, 'maybe', '2022-01-13 19:13:11', '2025-12-17 19:47:31', '4oMY95Mm', '4753938'), - (817, 1198, 'maybe', '2022-01-19 20:50:13', '2025-12-17 19:47:32', '4oMY95Mm', '4766801'), - (817, 1199, 'maybe', '2022-01-19 20:50:15', '2025-12-17 19:47:32', '4oMY95Mm', '4766802'), - (817, 1200, 'not_attending', '2022-01-18 23:13:08', '2025-12-17 19:47:32', '4oMY95Mm', '4766830'), - (817, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMY95Mm', '5038850'), - (817, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMY95Mm', '5045826'), - (817, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMY95Mm', '5132533'), - (817, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMY95Mm', '5186582'), - (817, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMY95Mm', '5186583'), - (817, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMY95Mm', '5186585'), - (817, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMY95Mm', '5190437'), - (817, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4oMY95Mm', '5195095'), - (817, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMY95Mm', '5215989'), - (817, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4oMY95Mm', '5223686'), - (817, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4oMY95Mm', '5227432'), - (817, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4oMY95Mm', '5247467'), - (817, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4oMY95Mm', '5260800'), - (817, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4oMY95Mm', '5269930'), - (817, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4oMY95Mm', '5271448'), - (817, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4oMY95Mm', '5271449'), - (817, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4oMY95Mm', '5276469'), - (817, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', '4oMY95Mm', '5277078'), - (817, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4oMY95Mm', '5278159'), - (817, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4oMY95Mm', '5363695'), - (817, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMY95Mm', '5365960'), - (817, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMY95Mm', '5368973'), - (817, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMY95Mm', '5378247'), - (817, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4oMY95Mm', '5389605'), - (817, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4oMY95Mm', '5397265'), - (817, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMY95Mm', '5403967'), - (817, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMY95Mm', '5404786'), - (817, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMY95Mm', '5405203'), - (817, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMY95Mm', '5411699'), - (817, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4oMY95Mm', '5412550'), - (817, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMY95Mm', '5415046'), - (817, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4oMY95Mm', '5422086'), - (817, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4oMY95Mm', '5422406'), - (817, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMY95Mm', '5424565'), - (817, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMY95Mm', '5426882'), - (817, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMY95Mm', '5427083'), - (817, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4oMY95Mm', '5441125'), - (817, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4oMY95Mm', '5441126'), - (817, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMY95Mm', '5441128'), - (817, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMY95Mm', '5446643'), - (817, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMY95Mm', '5453325'), - (817, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMY95Mm', '5454516'), - (817, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMY95Mm', '5454605'), - (817, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMY95Mm', '5455037'), - (817, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4oMY95Mm', '5461278'), - (817, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMY95Mm', '5469480'), - (817, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4oMY95Mm', '5471073'), - (817, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMY95Mm', '5474663'), - (817, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMY95Mm', '5482022'), - (817, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMY95Mm', '5482793'), - (817, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4oMY95Mm', '5488912'), - (817, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4oMY95Mm', '5492192'), - (817, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4oMY95Mm', '5493139'), - (817, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4oMY95Mm', '5493200'), - (817, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4oMY95Mm', '5502188'), - (817, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4oMY95Mm', '5512862'), - (817, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4oMY95Mm', '5513985'), - (817, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4oMY95Mm', '6045684'), - (818, 221, 'attending', '2020-09-16 21:06:18', '2025-12-17 19:47:56', 'GmjMOQbd', '3129265'), - (818, 223, 'attending', '2020-09-12 18:40:16', '2025-12-17 19:47:56', 'GmjMOQbd', '3129980'), - (818, 311, 'not_attending', '2020-09-18 04:11:09', '2025-12-17 19:47:56', 'GmjMOQbd', '3186057'), - (818, 340, 'not_attending', '2020-09-18 04:10:20', '2025-12-17 19:47:56', 'GmjMOQbd', '3204470'), - (818, 341, 'attending', '2020-09-25 23:55:21', '2025-12-17 19:47:52', 'GmjMOQbd', '3204471'), - (818, 342, 'not_attending', '2020-10-02 20:06:24', '2025-12-17 19:47:52', 'GmjMOQbd', '3204472'), - (818, 346, 'attending', '2020-09-15 22:38:57', '2025-12-17 19:47:56', 'GmjMOQbd', '3207515'), - (818, 348, 'not_attending', '2020-09-29 22:25:06', '2025-12-17 19:47:52', 'GmjMOQbd', '3209159'), - (818, 350, 'attending', '2020-09-11 23:59:13', '2025-12-17 19:47:56', 'GmjMOQbd', '3209255'), - (818, 362, 'not_attending', '2020-09-26 22:46:19', '2025-12-17 19:47:52', 'GmjMOQbd', '3214207'), - (818, 363, 'not_attending', '2020-09-18 18:47:24', '2025-12-17 19:47:52', 'GmjMOQbd', '3217037'), - (818, 365, 'maybe', '2020-09-18 18:48:23', '2025-12-17 19:47:51', 'GmjMOQbd', '3218510'), - (818, 375, 'attending', '2020-10-08 22:54:09', '2025-12-17 19:47:52', 'GmjMOQbd', '3222825'), - (818, 382, 'not_attending', '2020-10-14 00:19:59', '2025-12-17 19:47:52', 'GmjMOQbd', '3226873'), - (818, 385, 'not_attending', '2020-10-03 19:57:11', '2025-12-17 19:47:52', 'GmjMOQbd', '3228698'), - (818, 386, 'attending', '2020-10-10 19:53:12', '2025-12-17 19:47:52', 'GmjMOQbd', '3228699'), - (818, 387, 'not_attending', '2020-10-17 20:19:45', '2025-12-17 19:47:52', 'GmjMOQbd', '3228700'), - (818, 388, 'not_attending', '2020-10-25 03:56:44', '2025-12-17 19:47:52', 'GmjMOQbd', '3228701'), - (818, 414, 'not_attending', '2020-10-18 22:04:10', '2025-12-17 19:47:52', 'GmjMOQbd', '3237277'), - (818, 416, 'not_attending', '2020-10-08 21:17:13', '2025-12-17 19:47:52', 'GmjMOQbd', '3238073'), - (818, 424, 'maybe', '2020-10-12 02:25:18', '2025-12-17 19:47:52', 'GmjMOQbd', '3245751'), - (818, 426, 'maybe', '2020-10-15 14:16:44', '2025-12-17 19:47:52', 'GmjMOQbd', '3250232'), - (818, 438, 'not_attending', '2020-10-31 22:21:42', '2025-12-17 19:47:53', 'GmjMOQbd', '3256163'), - (818, 440, 'attending', '2020-11-07 22:03:48', '2025-12-17 19:47:53', 'GmjMOQbd', '3256168'), - (818, 441, 'not_attending', '2020-11-14 23:22:39', '2025-12-17 19:47:54', 'GmjMOQbd', '3256169'), - (818, 443, 'not_attending', '2020-10-25 03:57:12', '2025-12-17 19:47:53', 'GmjMOQbd', '3263578'), - (818, 445, 'not_attending', '2020-11-12 20:16:17', '2025-12-17 19:47:54', 'GmjMOQbd', '3266138'), - (818, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GmjMOQbd', '3276428'), - (818, 459, 'not_attending', '2020-11-08 05:46:40', '2025-12-17 19:47:54', 'GmjMOQbd', '3281467'), - (818, 462, 'not_attending', '2020-11-11 22:16:27', '2025-12-17 19:47:54', 'GmjMOQbd', '3281470'), - (818, 466, 'not_attending', '2020-11-08 21:37:08', '2025-12-17 19:47:54', 'GmjMOQbd', '3281829'), - (818, 468, 'not_attending', '2020-11-21 22:59:57', '2025-12-17 19:47:54', 'GmjMOQbd', '3285413'), - (818, 469, 'not_attending', '2020-11-29 00:20:35', '2025-12-17 19:47:54', 'GmjMOQbd', '3285414'), - (818, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GmjMOQbd', '3297764'), - (818, 493, 'not_attending', '2020-12-06 01:13:41', '2025-12-17 19:47:54', 'GmjMOQbd', '3313856'), - (818, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GmjMOQbd', '3314909'), - (818, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GmjMOQbd', '3314964'), - (818, 502, 'not_attending', '2020-12-12 23:44:25', '2025-12-17 19:47:55', 'GmjMOQbd', '3323365'), - (818, 513, 'not_attending', '2020-12-19 23:16:06', '2025-12-17 19:47:55', 'GmjMOQbd', '3329383'), - (818, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GmjMOQbd', '3351539'), - (818, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GmjMOQbd', '3386848'), - (818, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GmjMOQbd', '3389527'), - (818, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GmjMOQbd', '3396499'), - (818, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GmjMOQbd', '3403650'), - (818, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GmjMOQbd', '3406988'), - (818, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GmjMOQbd', '3416576'), - (818, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'GmjMOQbd', '3418925'), - (818, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjMOQbd', '6045684'), - (819, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'daPe9lp4', '5630960'), - (819, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'daPe9lp4', '5630961'), - (819, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'daPe9lp4', '5630962'), - (819, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'daPe9lp4', '5630966'), - (819, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'daPe9lp4', '5638765'), - (819, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'daPe9lp4', '5640097'), - (819, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'daPe9lp4', '5640843'), - (819, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'daPe9lp4', '5641521'), - (819, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'daPe9lp4', '5652395'), - (819, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'daPe9lp4', '5671637'), - (819, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'daPe9lp4', '5672329'), - (819, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'daPe9lp4', '5674057'), - (819, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'daPe9lp4', '5674060'), - (819, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'daPe9lp4', '5677461'), - (819, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'daPe9lp4', '5698046'), - (819, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'daPe9lp4', '5699760'), - (819, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daPe9lp4', '6045684'), - (820, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Arxk10Xd', '7904777'), - (820, 3096, 'maybe', '2025-04-24 19:53:04', '2025-12-17 19:46:20', 'Arxk10Xd', '8342987'), - (820, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'Arxk10Xd', '8347770'), - (820, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Arxk10Xd', '8349164'), - (820, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Arxk10Xd', '8349545'), - (820, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'Arxk10Xd', '8353584'), - (820, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Arxk10Xd', '8368028'), - (820, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Arxk10Xd', '8368029'), - (820, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Arxk10Xd', '8388462'), - (820, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Arxk10Xd', '8400273'), - (820, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'Arxk10Xd', '8400274'), - (820, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Arxk10Xd', '8400275'), - (820, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'Arxk10Xd', '8400276'), - (820, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Arxk10Xd', '8404977'), - (820, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'Arxk10Xd', '8430783'), - (820, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Arxk10Xd', '8430784'), - (820, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Arxk10Xd', '8430799'), - (820, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Arxk10Xd', '8430800'), - (820, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Arxk10Xd', '8430801'), - (820, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Arxk10Xd', '8438709'), - (820, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Arxk10Xd', '8457738'), - (820, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Arxk10Xd', '8459566'), - (820, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Arxk10Xd', '8459567'), - (820, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Arxk10Xd', '8461032'), - (820, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Arxk10Xd', '8477877'), - (820, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Arxk10Xd', '8485688'), - (821, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'rdOKrVEd', '6155491'), - (821, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'rdOKrVEd', '6164417'), - (821, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'rdOKrVEd', '6166388'), - (821, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'rdOKrVEd', '6176439'), - (821, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'rdOKrVEd', '6177485'), - (821, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'rdOKrVEd', '6182410'), - (821, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'rdOKrVEd', '6185812'), - (821, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'rdOKrVEd', '6187651'), - (821, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'rdOKrVEd', '6187963'), - (821, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'rdOKrVEd', '6187964'), - (821, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'rdOKrVEd', '6187966'), - (821, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'rdOKrVEd', '6187967'), - (821, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'rdOKrVEd', '6187969'), - (821, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'rdOKrVEd', '6334878'), - (821, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', 'rdOKrVEd', '6334903'), - (821, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'rdOKrVEd', '6337236'), - (821, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'rdOKrVEd', '6337970'), - (821, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'rdOKrVEd', '6338308'), - (821, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'rdOKrVEd', '6341710'), - (821, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'rdOKrVEd', '6342044'), - (821, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'rdOKrVEd', '6342298'), - (821, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'rdOKrVEd', '6342591'), - (821, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'rdOKrVEd', '6343294'), - (821, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'rdOKrVEd', '6347034'), - (821, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'rdOKrVEd', '6347056'), - (821, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'rdOKrVEd', '6353830'), - (821, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'rdOKrVEd', '6353831'), - (821, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'rdOKrVEd', '6357867'), - (821, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'rdOKrVEd', '6358652'), - (821, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'rdOKrVEd', '6361709'), - (821, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'rdOKrVEd', '6361710'), - (821, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'rdOKrVEd', '6361711'), - (821, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'rdOKrVEd', '6361712'), - (821, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'rdOKrVEd', '6361713'), - (821, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'rdOKrVEd', '6382573'), - (821, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'rdOKrVEd', '6388604'), - (821, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'rdOKrVEd', '6394629'), - (821, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'rdOKrVEd', '6394631'), - (821, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'rdOKrVEd', '6431478'), - (822, 1242, 'attending', '2022-03-30 22:27:15', '2025-12-17 19:47:25', 'AgxeLXR4', '5052241'), - (822, 1274, 'attending', '2022-04-02 20:12:28', '2025-12-17 19:47:26', 'AgxeLXR4', '5186585'), - (822, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgxeLXR4', '5195095'), - (822, 1288, 'attending', '2022-03-27 16:57:21', '2025-12-17 19:47:25', 'AgxeLXR4', '5199460'), - (822, 1294, 'maybe', '2022-04-03 15:44:50', '2025-12-17 19:47:26', 'AgxeLXR4', '5214686'), - (822, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AgxeLXR4', '5215989'), - (822, 1300, 'maybe', '2022-03-31 20:09:28', '2025-12-17 19:47:25', 'AgxeLXR4', '5217936'), - (822, 1302, 'maybe', '2022-04-03 15:43:52', '2025-12-17 19:47:27', 'AgxeLXR4', '5220867'), - (822, 1305, 'maybe', '2022-04-10 03:43:27', '2025-12-17 19:47:27', 'AgxeLXR4', '5223673'), - (822, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgxeLXR4', '5223686'), - (822, 1308, 'maybe', '2022-04-11 17:55:45', '2025-12-17 19:47:27', 'AgxeLXR4', '5226703'), - (822, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgxeLXR4', '5227432'), - (822, 1316, 'maybe', '2022-04-11 17:56:26', '2025-12-17 19:47:27', 'AgxeLXR4', '5237536'), - (822, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgxeLXR4', '5247467'), - (822, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgxeLXR4', '5260800'), - (822, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgxeLXR4', '5269930'), - (822, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgxeLXR4', '5271448'), - (822, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AgxeLXR4', '5271449'), - (822, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgxeLXR4', '5276469'), - (822, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgxeLXR4', '5278159'), - (822, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AgxeLXR4', '5363695'), - (822, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AgxeLXR4', '5365960'), - (822, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AgxeLXR4', '5368973'), - (822, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AgxeLXR4', '5378247'), - (822, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AgxeLXR4', '5389605'), - (822, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AgxeLXR4', '5397265'), - (822, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AgxeLXR4', '5403967'), - (822, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgxeLXR4', '5404786'), - (822, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgxeLXR4', '5405203'), - (822, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'AgxeLXR4', '5408794'), - (822, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AgxeLXR4', '5411699'), - (822, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AgxeLXR4', '5412550'), - (822, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AgxeLXR4', '5415046'), - (822, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgxeLXR4', '5422086'), - (822, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgxeLXR4', '5422406'), - (822, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgxeLXR4', '5424565'), - (822, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgxeLXR4', '5426882'), - (822, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgxeLXR4', '5427083'), - (822, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AgxeLXR4', '5441125'), - (822, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AgxeLXR4', '5441126'), - (822, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AgxeLXR4', '5441128'), - (822, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgxeLXR4', '5446643'), - (822, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgxeLXR4', '5453325'), - (822, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgxeLXR4', '5454516'), - (822, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgxeLXR4', '5454605'), - (822, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgxeLXR4', '5455037'), - (822, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgxeLXR4', '5461278'), - (822, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgxeLXR4', '5469480'), - (822, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgxeLXR4', '5471073'), - (822, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AgxeLXR4', '5474663'), - (822, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgxeLXR4', '5482022'), - (822, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgxeLXR4', '5482793'), - (822, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgxeLXR4', '5488912'), - (822, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgxeLXR4', '5492192'), - (822, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgxeLXR4', '5493139'), - (822, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgxeLXR4', '5493200'), - (822, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgxeLXR4', '5502188'), - (822, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgxeLXR4', '5512862'), - (822, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgxeLXR4', '5513985'), - (822, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxeLXR4', '6045684'), - (823, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mRQYOzYd', '5630960'), - (823, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mRQYOzYd', '5630961'), - (823, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mRQYOzYd', '5630962'), - (823, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mRQYOzYd', '5630966'), - (823, 1730, 'not_attending', '2022-10-08 07:04:45', '2025-12-17 19:47:12', 'mRQYOzYd', '5634666'), - (823, 1731, 'not_attending', '2022-10-07 22:40:32', '2025-12-17 19:47:12', 'mRQYOzYd', '5635226'), - (823, 1732, 'not_attending', '2022-10-07 20:13:50', '2025-12-17 19:47:12', 'mRQYOzYd', '5635406'), - (823, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mRQYOzYd', '5638765'), - (823, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mRQYOzYd', '5640097'), - (823, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mRQYOzYd', '5640843'), - (823, 1741, 'not_attending', '2022-10-10 04:46:14', '2025-12-17 19:47:12', 'mRQYOzYd', '5641132'), - (823, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mRQYOzYd', '5641521'), - (823, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mRQYOzYd', '5652395'), - (823, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mRQYOzYd', '5671637'), - (823, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mRQYOzYd', '5672329'), - (823, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mRQYOzYd', '5674057'), - (823, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mRQYOzYd', '5674060'), - (823, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mRQYOzYd', '5677461'), - (823, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mRQYOzYd', '5698046'), - (823, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mRQYOzYd', '5699760'), - (823, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRQYOzYd', '6045684'), - (824, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '2d28Q65A', '5195095'), - (824, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '2d28Q65A', '5247467'), - (824, 1362, 'attending', '2022-04-29 18:54:14', '2025-12-17 19:47:28', '2d28Q65A', '5260800'), - (824, 1374, 'not_attending', '2022-05-28 03:05:34', '2025-12-17 19:47:28', '2d28Q65A', '5269930'), - (824, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '2d28Q65A', '5271448'), - (824, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '2d28Q65A', '5271449'), - (824, 1380, 'attending', '2022-05-28 03:05:45', '2025-12-17 19:47:30', '2d28Q65A', '5271450'), - (824, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '2d28Q65A', '5276469'), - (824, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '2d28Q65A', '5278159'), - (824, 1407, 'not_attending', '2022-06-04 10:06:58', '2025-12-17 19:47:30', '2d28Q65A', '5363695'), - (824, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '2d28Q65A', '5365960'), - (824, 1415, 'maybe', '2022-05-31 21:42:45', '2025-12-17 19:47:30', '2d28Q65A', '5368973'), - (824, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '2d28Q65A', '5378247'), - (824, 1431, 'attending', '2022-06-11 00:29:13', '2025-12-17 19:47:30', '2d28Q65A', '5389605'), - (824, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '2d28Q65A', '5397265'), - (824, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '2d28Q65A', '5403967'), - (824, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '2d28Q65A', '5404786'), - (824, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '2d28Q65A', '5405203'), - (824, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '2d28Q65A', '5408794'), - (824, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '2d28Q65A', '5411699'), - (824, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '2d28Q65A', '5412550'), - (824, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '2d28Q65A', '5415046'), - (824, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '2d28Q65A', '5422086'), - (824, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '2d28Q65A', '5422406'), - (824, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '2d28Q65A', '5424565'), - (824, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '2d28Q65A', '5426882'), - (824, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '2d28Q65A', '5427083'), - (824, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '2d28Q65A', '5441125'), - (824, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '2d28Q65A', '5441126'), - (824, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '2d28Q65A', '5441128'), - (824, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '2d28Q65A', '5446643'), - (824, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '2d28Q65A', '5453325'), - (824, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '2d28Q65A', '5454516'), - (824, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '2d28Q65A', '5454605'), - (824, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '2d28Q65A', '5455037'), - (824, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '2d28Q65A', '5461278'), - (824, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '2d28Q65A', '5469480'), - (824, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '2d28Q65A', '5471073'), - (824, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '2d28Q65A', '5474663'), - (824, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '2d28Q65A', '5482022'), - (824, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '2d28Q65A', '5482793'), - (824, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '2d28Q65A', '5488912'), - (824, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '2d28Q65A', '5492192'), - (824, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '2d28Q65A', '5493139'), - (824, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '2d28Q65A', '5493200'), - (824, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '2d28Q65A', '5502188'), - (824, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '2d28Q65A', '5512862'), - (824, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '2d28Q65A', '5513985'), - (824, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d28Q65A', '6045684'), - (825, 3234, 'not_attending', '2025-08-15 02:56:47', '2025-12-17 19:46:17', 'Arnl9YnA', '8488773'), - (825, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Arnl9YnA', '8490587'), - (825, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Arnl9YnA', '8493552'), - (825, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Arnl9YnA', '8493553'), - (825, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Arnl9YnA', '8493554'), - (825, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Arnl9YnA', '8493555'), - (825, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Arnl9YnA', '8493556'), - (825, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Arnl9YnA', '8493557'), - (825, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Arnl9YnA', '8493558'), - (825, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Arnl9YnA', '8493559'), - (825, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Arnl9YnA', '8493560'), - (825, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'Arnl9YnA', '8493561'), - (825, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Arnl9YnA', '8493572'), - (825, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'Arnl9YnA', '8529058'), - (826, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dxPJ3y1d', '5600604'), - (826, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dxPJ3y1d', '5605544'), - (826, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dxPJ3y1d', '5630960'), - (826, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dxPJ3y1d', '5635406'), - (826, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dxPJ3y1d', '5638765'), - (826, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dxPJ3y1d', '5640843'), - (826, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dxPJ3y1d', '5641521'), - (826, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dxPJ3y1d', '5652395'), - (826, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxPJ3y1d', '6045684'), - (827, 1518, 'attending', '2022-08-29 00:08:44', '2025-12-17 19:47:24', 'dBLQEWPA', '5441131'), - (827, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dBLQEWPA', '5441132'), - (827, 1544, 'attending', '2022-09-17 21:55:43', '2025-12-17 19:47:11', 'dBLQEWPA', '5454517'), - (827, 1558, 'attending', '2022-09-11 02:42:10', '2025-12-17 19:47:10', 'dBLQEWPA', '5458730'), - (827, 1559, 'attending', '2022-09-28 22:00:15', '2025-12-17 19:47:11', 'dBLQEWPA', '5458731'), - (827, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dBLQEWPA', '5505059'), - (827, 1610, 'maybe', '2022-08-30 19:14:10', '2025-12-17 19:47:23', 'dBLQEWPA', '5506595'), - (827, 1615, 'attending', '2022-08-30 19:12:05', '2025-12-17 19:47:23', 'dBLQEWPA', '5509055'), - (827, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'dBLQEWPA', '5513985'), - (827, 1626, 'attending', '2022-09-30 17:31:54', '2025-12-17 19:47:11', 'dBLQEWPA', '5519981'), - (827, 1629, 'attending', '2022-09-19 04:20:03', '2025-12-17 19:47:11', 'dBLQEWPA', '5522550'), - (827, 1630, 'attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'dBLQEWPA', '5534683'), - (827, 1634, 'attending', '2022-08-29 00:10:35', '2025-12-17 19:47:23', 'dBLQEWPA', '5536950'), - (827, 1635, 'attending', '2022-09-11 02:42:03', '2025-12-17 19:47:10', 'dBLQEWPA', '5537735'), - (827, 1636, 'attending', '2022-09-04 03:20:25', '2025-12-17 19:47:24', 'dBLQEWPA', '5538454'), - (827, 1640, 'attending', '2022-09-11 02:42:06', '2025-12-17 19:47:10', 'dBLQEWPA', '5540859'), - (827, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dBLQEWPA', '5546619'), - (827, 1647, 'attending', '2022-09-13 21:15:56', '2025-12-17 19:47:11', 'dBLQEWPA', '5548660'), - (827, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dBLQEWPA', '5555245'), - (827, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dBLQEWPA', '5557747'), - (827, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dBLQEWPA', '5560255'), - (827, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dBLQEWPA', '5562906'), - (827, 1666, 'attending', '2022-09-15 20:55:22', '2025-12-17 19:47:11', 'dBLQEWPA', '5563208'), - (827, 1668, 'attending', '2022-09-17 21:55:54', '2025-12-17 19:47:12', 'dBLQEWPA', '5563222'), - (827, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dBLQEWPA', '5600604'), - (827, 1679, 'attending', '2022-10-01 15:28:23', '2025-12-17 19:47:12', 'dBLQEWPA', '5601099'), - (827, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dBLQEWPA', '5605544'), - (827, 1699, 'not_attending', '2022-09-26 12:19:02', '2025-12-17 19:47:12', 'dBLQEWPA', '5606737'), - (827, 1708, 'maybe', '2022-10-05 02:37:28', '2025-12-17 19:47:12', 'dBLQEWPA', '5617648'), - (827, 1711, 'maybe', '2022-10-02 21:11:33', '2025-12-17 19:47:12', 'dBLQEWPA', '5621883'), - (827, 1712, 'attending', '2022-10-02 21:11:35', '2025-12-17 19:47:12', 'dBLQEWPA', '5622073'), - (827, 1713, 'attending', '2022-10-02 21:11:36', '2025-12-17 19:47:13', 'dBLQEWPA', '5622108'), - (827, 1714, 'maybe', '2022-10-02 21:11:39', '2025-12-17 19:47:14', 'dBLQEWPA', '5622347'), - (827, 1717, 'attending', '2022-10-21 10:43:16', '2025-12-17 19:47:13', 'dBLQEWPA', '5622842'), - (827, 1718, 'attending', '2022-10-05 01:07:48', '2025-12-17 19:47:12', 'dBLQEWPA', '5630907'), - (827, 1719, 'maybe', '2022-10-08 15:54:21', '2025-12-17 19:47:12', 'dBLQEWPA', '5630958'), - (827, 1721, 'attending', '2022-10-22 13:59:14', '2025-12-17 19:47:13', 'dBLQEWPA', '5630960'), - (827, 1722, 'attending', '2022-10-23 03:04:49', '2025-12-17 19:47:14', 'dBLQEWPA', '5630961'), - (827, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dBLQEWPA', '5630962'), - (827, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dBLQEWPA', '5630966'), - (827, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dBLQEWPA', '5630967'), - (827, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dBLQEWPA', '5630968'), - (827, 1727, 'attending', '2022-12-04 00:41:54', '2025-12-17 19:47:16', 'dBLQEWPA', '5630969'), - (827, 1728, 'attending', '2022-12-11 20:39:49', '2025-12-17 19:47:17', 'dBLQEWPA', '5630970'), - (827, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dBLQEWPA', '5635406'), - (827, 1737, 'attending', '2022-11-30 22:52:07', '2025-12-17 19:47:16', 'dBLQEWPA', '5638457'), - (827, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dBLQEWPA', '5638765'), - (827, 1739, 'not_attending', '2022-10-23 03:04:41', '2025-12-17 19:47:14', 'dBLQEWPA', '5640097'), - (827, 1740, 'not_attending', '2022-10-09 21:07:09', '2025-12-17 19:47:13', 'dBLQEWPA', '5640843'), - (827, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dBLQEWPA', '5641521'), - (827, 1744, 'attending', '2022-11-21 20:35:50', '2025-12-17 19:47:16', 'dBLQEWPA', '5642818'), - (827, 1747, 'not_attending', '2022-10-25 16:14:59', '2025-12-17 19:47:14', 'dBLQEWPA', '5648009'), - (827, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dBLQEWPA', '5652395'), - (827, 1753, 'attending', '2022-10-22 13:59:08', '2025-12-17 19:47:13', 'dBLQEWPA', '5656228'), - (827, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dBLQEWPA', '5670445'), - (827, 1763, 'attending', '2022-11-11 05:17:58', '2025-12-17 19:47:15', 'dBLQEWPA', '5670803'), - (827, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dBLQEWPA', '5671637'), - (827, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dBLQEWPA', '5672329'), - (827, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dBLQEWPA', '5674057'), - (827, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dBLQEWPA', '5674060'), - (827, 1770, 'not_attending', '2022-10-28 20:32:49', '2025-12-17 19:47:14', 'dBLQEWPA', '5676936'), - (827, 1772, 'maybe', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'dBLQEWPA', '5677461'), - (827, 1776, 'attending', '2022-11-09 23:48:31', '2025-12-17 19:47:15', 'dBLQEWPA', '5691067'), - (827, 1781, 'attending', '2022-11-02 17:16:59', '2025-12-17 19:47:15', 'dBLQEWPA', '5696178'), - (827, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dBLQEWPA', '5698046'), - (827, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dBLQEWPA', '5699760'), - (827, 1791, 'not_attending', '2022-11-08 05:22:20', '2025-12-17 19:47:15', 'dBLQEWPA', '5728511'), - (827, 1793, 'maybe', '2022-11-21 20:35:57', '2025-12-17 19:47:16', 'dBLQEWPA', '5736365'), - (827, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dBLQEWPA', '5741601'), - (827, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dBLQEWPA', '5763458'), - (827, 1806, 'not_attending', '2023-01-21 04:14:14', '2025-12-17 19:47:05', 'dBLQEWPA', '5764676'), - (827, 1807, 'attending', '2023-01-14 23:31:17', '2025-12-17 19:47:05', 'dBLQEWPA', '5764677'), - (827, 1808, 'attending', '2023-03-04 11:14:42', '2025-12-17 19:47:08', 'dBLQEWPA', '5764678'), - (827, 1810, 'attending', '2023-04-22 21:09:51', '2025-12-17 19:47:00', 'dBLQEWPA', '5764680'), - (827, 1812, 'attending', '2023-03-11 18:27:32', '2025-12-17 19:47:09', 'dBLQEWPA', '5764682'), - (827, 1813, 'attending', '2023-04-29 16:49:21', '2025-12-17 19:47:01', 'dBLQEWPA', '5764683'), - (827, 1814, 'attending', '2023-02-24 21:33:33', '2025-12-17 19:47:08', 'dBLQEWPA', '5764684'), - (827, 1816, 'attending', '2023-05-20 02:36:22', '2025-12-17 19:47:03', 'dBLQEWPA', '5764686'), - (827, 1821, 'maybe', '2023-03-17 00:11:58', '2025-12-17 19:46:56', 'dBLQEWPA', '5764691'), - (827, 1822, 'attending', '2023-05-13 02:19:13', '2025-12-17 19:47:02', 'dBLQEWPA', '5764692'), - (827, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dBLQEWPA', '5774172'), - (827, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dBLQEWPA', '5818247'), - (827, 1834, 'attending', '2022-12-10 17:52:35', '2025-12-17 19:47:17', 'dBLQEWPA', '5819470'), - (827, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dBLQEWPA', '5819471'), - (827, 1837, 'attending', '2022-12-05 20:05:49', '2025-12-17 19:47:16', 'dBLQEWPA', '5820146'), - (827, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dBLQEWPA', '5827739'), - (827, 1843, 'maybe', '2022-12-17 22:03:14', '2025-12-17 19:47:04', 'dBLQEWPA', '5844304'), - (827, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dBLQEWPA', '5844306'), - (827, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dBLQEWPA', '5850159'), - (827, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dBLQEWPA', '5858999'), - (827, 1852, 'attending', '2023-01-09 07:01:13', '2025-12-17 19:47:05', 'dBLQEWPA', '5869898'), - (827, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dBLQEWPA', '5871984'), - (827, 1859, 'attending', '2023-01-20 17:14:56', '2025-12-17 19:47:05', 'dBLQEWPA', '5876234'), - (827, 1861, 'attending', '2023-01-17 05:11:00', '2025-12-17 19:47:05', 'dBLQEWPA', '5876354'), - (827, 1864, 'not_attending', '2023-01-21 04:14:15', '2025-12-17 19:47:05', 'dBLQEWPA', '5879675'), - (827, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dBLQEWPA', '5880939'), - (827, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dBLQEWPA', '5880940'), - (827, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dBLQEWPA', '5880942'), - (827, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dBLQEWPA', '5880943'), - (827, 1872, 'maybe', '2023-01-19 04:49:59', '2025-12-17 19:47:05', 'dBLQEWPA', '5883546'), - (827, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dBLQEWPA', '5887890'), - (827, 1875, 'maybe', '2023-01-26 01:40:50', '2025-12-17 19:47:06', 'dBLQEWPA', '5887908'), - (827, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dBLQEWPA', '5888598'), - (827, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dBLQEWPA', '5893260'), - (827, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dBLQEWPA', '5899826'), - (827, 1885, 'attending', '2023-02-24 21:33:23', '2025-12-17 19:47:08', 'dBLQEWPA', '5899928'), - (827, 1886, 'attending', '2023-03-08 19:18:49', '2025-12-17 19:47:09', 'dBLQEWPA', '5899930'), - (827, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dBLQEWPA', '5900199'), - (827, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dBLQEWPA', '5900200'), - (827, 1891, 'attending', '2023-03-20 19:38:43', '2025-12-17 19:46:56', 'dBLQEWPA', '5900202'), - (827, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dBLQEWPA', '5900203'), - (827, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dBLQEWPA', '5901108'), - (827, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dBLQEWPA', '5901126'), - (827, 1898, 'not_attending', '2023-02-01 23:52:29', '2025-12-17 19:47:06', 'dBLQEWPA', '5901263'), - (827, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dBLQEWPA', '5909655'), - (827, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dBLQEWPA', '5910522'), - (827, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dBLQEWPA', '5910526'), - (827, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dBLQEWPA', '5910528'), - (827, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dBLQEWPA', '5916219'), - (827, 1923, 'attending', '2023-02-16 19:40:45', '2025-12-17 19:47:07', 'dBLQEWPA', '5930436'), - (827, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dBLQEWPA', '5936234'), - (827, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dBLQEWPA', '5958351'), - (827, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dBLQEWPA', '5959751'), - (827, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dBLQEWPA', '5959755'), - (827, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dBLQEWPA', '5960055'), - (827, 1941, 'maybe', '2023-02-25 03:31:22', '2025-12-17 19:47:09', 'dBLQEWPA', '5961684'), - (827, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dBLQEWPA', '5962132'), - (827, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dBLQEWPA', '5962133'), - (827, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dBLQEWPA', '5962134'), - (827, 1947, 'attending', '2023-03-05 22:43:30', '2025-12-17 19:47:09', 'dBLQEWPA', '5962233'), - (827, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dBLQEWPA', '5962317'), - (827, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dBLQEWPA', '5962318'), - (827, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dBLQEWPA', '5965933'), - (827, 1953, 'maybe', '2023-03-05 20:34:38', '2025-12-17 19:47:09', 'dBLQEWPA', '5966307'), - (827, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dBLQEWPA', '5967014'), - (827, 1955, 'maybe', '2023-03-29 18:56:59', '2025-12-17 19:46:57', 'dBLQEWPA', '5972529'), - (827, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dBLQEWPA', '5972763'), - (827, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dBLQEWPA', '5972815'), - (827, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dBLQEWPA', '5974016'), - (827, 1965, 'attending', '2023-03-10 22:07:13', '2025-12-17 19:47:09', 'dBLQEWPA', '5981515'), - (827, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dBLQEWPA', '5993516'), - (827, 1970, 'attending', '2023-03-20 19:38:24', '2025-12-17 19:46:56', 'dBLQEWPA', '5993758'), - (827, 1972, 'attending', '2023-03-19 02:55:05', '2025-12-17 19:46:56', 'dBLQEWPA', '5993776'), - (827, 1974, 'not_attending', '2023-03-20 19:38:14', '2025-12-17 19:46:57', 'dBLQEWPA', '5993778'), - (827, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dBLQEWPA', '5998939'), - (827, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dBLQEWPA', '6028191'), - (827, 1979, 'attending', '2023-03-18 01:07:49', '2025-12-17 19:46:56', 'dBLQEWPA', '6030009'), - (827, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dBLQEWPA', '6040066'), - (827, 1984, 'attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dBLQEWPA', '6042717'), - (827, 1986, 'maybe', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dBLQEWPA', '6044838'), - (827, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dBLQEWPA', '6044839'), - (827, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBLQEWPA', '6045684'), - (827, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dBLQEWPA', '6050104'), - (827, 2002, 'maybe', '2023-04-28 19:53:15', '2025-12-17 19:47:01', 'dBLQEWPA', '6052605'), - (827, 2005, 'attending', '2023-04-04 22:14:57', '2025-12-17 19:46:58', 'dBLQEWPA', '6053195'), - (827, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dBLQEWPA', '6053198'), - (827, 2008, 'attending', '2023-04-07 20:07:56', '2025-12-17 19:46:58', 'dBLQEWPA', '6055808'), - (827, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dBLQEWPA', '6056085'), - (827, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dBLQEWPA', '6056916'), - (827, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dBLQEWPA', '6059290'), - (827, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dBLQEWPA', '6060328'), - (827, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dBLQEWPA', '6061037'), - (827, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dBLQEWPA', '6061039'), - (827, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'dBLQEWPA', '6061099'), - (827, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dBLQEWPA', '6067245'), - (827, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dBLQEWPA', '6068094'), - (827, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dBLQEWPA', '6068252'), - (827, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dBLQEWPA', '6068253'), - (827, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dBLQEWPA', '6068254'), - (827, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dBLQEWPA', '6068280'), - (827, 2032, 'attending', '2023-05-20 16:34:22', '2025-12-17 19:47:04', 'dBLQEWPA', '6068281'), - (827, 2033, 'attending', '2023-04-19 00:09:08', '2025-12-17 19:47:00', 'dBLQEWPA', '6069093'), - (827, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dBLQEWPA', '6072528'), - (827, 2043, 'attending', '2023-04-26 18:49:13', '2025-12-17 19:47:01', 'dBLQEWPA', '6073023'), - (827, 2044, 'maybe', '2023-05-23 22:33:51', '2025-12-17 19:47:03', 'dBLQEWPA', '6073678'), - (827, 2048, 'attending', '2023-04-28 13:39:46', '2025-12-17 19:47:03', 'dBLQEWPA', '6076415'), - (827, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dBLQEWPA', '6079840'), - (827, 2051, 'attending', '2023-05-01 04:19:32', '2025-12-17 19:47:02', 'dBLQEWPA', '6083398'), - (827, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dBLQEWPA', '6093504'), - (827, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dBLQEWPA', '6097414'), - (827, 2061, 'attending', '2023-05-09 00:06:35', '2025-12-17 19:47:02', 'dBLQEWPA', '6097442'), - (827, 2062, 'attending', '2023-05-09 01:04:07', '2025-12-17 19:47:02', 'dBLQEWPA', '6097684'), - (827, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dBLQEWPA', '6098762'), - (827, 2064, 'attending', '2023-05-27 19:35:33', '2025-12-17 19:46:50', 'dBLQEWPA', '6099988'), - (827, 2065, 'attending', '2023-05-27 19:35:31', '2025-12-17 19:46:49', 'dBLQEWPA', '6101169'), - (827, 2066, 'attending', '2023-05-11 22:23:31', '2025-12-17 19:47:04', 'dBLQEWPA', '6101361'), - (827, 2067, 'attending', '2023-05-11 22:28:47', '2025-12-17 19:47:03', 'dBLQEWPA', '6101362'), - (827, 2074, 'attending', '2023-05-19 00:24:02', '2025-12-17 19:47:03', 'dBLQEWPA', '6107312'), - (827, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dBLQEWPA', '6107314'), - (827, 2076, 'not_attending', '2023-05-20 02:36:20', '2025-12-17 19:47:03', 'dBLQEWPA', '6108350'), - (827, 2081, 'attending', '2023-05-23 22:30:29', '2025-12-17 19:47:03', 'dBLQEWPA', '6115611'), - (827, 2083, 'maybe', '2023-05-23 22:30:30', '2025-12-17 19:47:04', 'dBLQEWPA', '6115629'), - (827, 2087, 'attending', '2023-05-26 21:01:47', '2025-12-17 19:47:04', 'dBLQEWPA', '6120034'), - (827, 2091, 'attending', '2023-06-04 17:41:14', '2025-12-17 19:47:04', 'dBLQEWPA', '6130657'), - (827, 2092, 'attending', '2023-06-03 20:51:20', '2025-12-17 19:47:04', 'dBLQEWPA', '6132543'), - (827, 2094, 'maybe', '2023-06-09 16:07:55', '2025-12-17 19:47:04', 'dBLQEWPA', '6135924'), - (827, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dBLQEWPA', '6136733'), - (827, 2096, 'attending', '2023-06-06 18:53:25', '2025-12-17 19:47:04', 'dBLQEWPA', '6137989'), - (827, 2108, 'attending', '2023-06-18 16:30:53', '2025-12-17 19:46:50', 'dBLQEWPA', '6150864'), - (827, 2109, 'attending', '2023-06-19 19:28:10', '2025-12-17 19:46:50', 'dBLQEWPA', '6152821'), - (827, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dBLQEWPA', '6155491'), - (827, 2116, 'maybe', '2023-07-06 20:35:36', '2025-12-17 19:46:51', 'dBLQEWPA', '6163389'), - (827, 2118, 'attending', '2023-06-25 16:16:43', '2025-12-17 19:46:50', 'dBLQEWPA', '6164417'), - (827, 2120, 'attending', '2023-06-26 21:35:50', '2025-12-17 19:46:50', 'dBLQEWPA', '6166388'), - (827, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dBLQEWPA', '6176439'), - (827, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dBLQEWPA', '6180853'), - (827, 2128, 'attending', '2023-07-02 18:16:50', '2025-12-17 19:46:50', 'dBLQEWPA', '6182410'), - (827, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dBLQEWPA', '6185812'), - (827, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dBLQEWPA', '6187651'), - (827, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dBLQEWPA', '6187963'), - (827, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dBLQEWPA', '6187964'), - (827, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dBLQEWPA', '6187966'), - (827, 2137, 'maybe', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dBLQEWPA', '6187967'), - (827, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dBLQEWPA', '6187969'), - (827, 2143, 'attending', '2023-07-08 18:41:33', '2025-12-17 19:46:51', 'dBLQEWPA', '6334348'), - (827, 2144, 'attending', '2023-07-08 22:23:33', '2025-12-17 19:46:52', 'dBLQEWPA', '6334878'), - (827, 2146, 'maybe', '2023-07-18 16:19:29', '2025-12-17 19:46:53', 'dBLQEWPA', '6335638'), - (827, 2147, 'maybe', '2023-07-09 20:53:18', '2025-12-17 19:46:52', 'dBLQEWPA', '6335666'), - (827, 2149, 'attending', '2023-07-19 05:10:38', '2025-12-17 19:46:53', 'dBLQEWPA', '6335682'), - (827, 2152, 'maybe', '2023-07-13 23:25:32', '2025-12-17 19:46:52', 'dBLQEWPA', '6337021'), - (827, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dBLQEWPA', '6337236'), - (827, 2155, 'attending', '2023-07-18 16:16:57', '2025-12-17 19:46:53', 'dBLQEWPA', '6337970'), - (827, 2156, 'attending', '2023-07-12 21:16:26', '2025-12-17 19:46:52', 'dBLQEWPA', '6338308'), - (827, 2158, 'attending', '2023-07-23 07:21:36', '2025-12-17 19:46:53', 'dBLQEWPA', '6338353'), - (827, 2159, 'attending', '2023-07-18 16:19:34', '2025-12-17 19:46:53', 'dBLQEWPA', '6338355'), - (827, 2160, 'attending', '2023-07-17 18:49:27', '2025-12-17 19:46:54', 'dBLQEWPA', '6338358'), - (827, 2161, 'attending', '2023-07-15 19:31:05', '2025-12-17 19:46:52', 'dBLQEWPA', '6340748'), - (827, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dBLQEWPA', '6340845'), - (827, 2163, 'attending', '2023-07-16 20:05:15', '2025-12-17 19:46:52', 'dBLQEWPA', '6341710'), - (827, 2165, 'attending', '2023-08-02 05:17:03', '2025-12-17 19:46:54', 'dBLQEWPA', '6342044'), - (827, 2166, 'not_attending', '2023-07-23 07:09:59', '2025-12-17 19:46:54', 'dBLQEWPA', '6342115'), - (827, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dBLQEWPA', '6342298'), - (827, 2172, 'attending', '2023-07-18 16:19:16', '2025-12-17 19:46:53', 'dBLQEWPA', '6342591'), - (827, 2174, 'attending', '2023-07-19 05:14:37', '2025-12-17 19:46:53', 'dBLQEWPA', '6343294'), - (827, 2175, 'attending', '2023-07-22 18:59:10', '2025-12-17 19:46:53', 'dBLQEWPA', '6346982'), - (827, 2176, 'attending', '2023-07-23 07:36:49', '2025-12-17 19:46:54', 'dBLQEWPA', '6347034'), - (827, 2177, 'attending', '2023-08-07 03:56:23', '2025-12-17 19:46:55', 'dBLQEWPA', '6347053'), - (827, 2178, 'attending', '2023-07-23 07:34:05', '2025-12-17 19:46:53', 'dBLQEWPA', '6347056'), - (827, 2182, 'not_attending', '2023-07-26 20:15:58', '2025-12-17 19:46:53', 'dBLQEWPA', '6349618'), - (827, 2183, 'not_attending', '2023-07-29 17:42:20', '2025-12-17 19:46:54', 'dBLQEWPA', '6353008'), - (827, 2184, 'attending', '2023-07-29 20:37:46', '2025-12-17 19:46:54', 'dBLQEWPA', '6353825'), - (827, 2185, 'maybe', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dBLQEWPA', '6353830'), - (827, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dBLQEWPA', '6353831'), - (827, 2187, 'not_attending', '2023-08-02 05:17:20', '2025-12-17 19:46:55', 'dBLQEWPA', '6357559'), - (827, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dBLQEWPA', '6357867'), - (827, 2191, 'attending', '2023-08-03 20:26:42', '2025-12-17 19:46:54', 'dBLQEWPA', '6358652'), - (827, 2196, 'attending', '2023-09-08 23:31:01', '2025-12-17 19:46:56', 'dBLQEWPA', '6359398'), - (827, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'dBLQEWPA', '6359940'), - (827, 2202, 'not_attending', '2023-08-06 18:29:36', '2025-12-17 19:46:54', 'dBLQEWPA', '6360509'), - (827, 2204, 'attending', '2023-08-19 13:59:52', '2025-12-17 19:46:55', 'dBLQEWPA', '6361542'), - (827, 2208, 'attending', '2023-08-09 00:58:17', '2025-12-17 19:46:54', 'dBLQEWPA', '6361709'), - (827, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dBLQEWPA', '6361710'), - (827, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dBLQEWPA', '6361711'), - (827, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dBLQEWPA', '6361712'), - (827, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dBLQEWPA', '6361713'), - (827, 2216, 'not_attending', '2023-08-14 17:00:48', '2025-12-17 19:46:55', 'dBLQEWPA', '6364123'), - (827, 2217, 'attending', '2023-08-14 19:05:08', '2025-12-17 19:46:55', 'dBLQEWPA', '6364333'), - (827, 2219, 'maybe', '2023-08-14 22:42:38', '2025-12-17 19:46:55', 'dBLQEWPA', '6367309'), - (827, 2226, 'not_attending', '2023-08-17 16:37:51', '2025-12-17 19:46:55', 'dBLQEWPA', '6370006'), - (827, 2227, 'maybe', '2023-08-20 22:57:43', '2025-12-17 19:46:55', 'dBLQEWPA', '6370581'), - (827, 2228, 'not_attending', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'dBLQEWPA', '6372777'), - (827, 2232, 'attending', '2023-08-23 20:26:46', '2025-12-17 19:46:55', 'dBLQEWPA', '6374818'), - (827, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dBLQEWPA', '6382573'), - (827, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'dBLQEWPA', '6383149'), - (827, 2239, 'attending', '2023-09-02 04:12:37', '2025-12-17 19:46:56', 'dBLQEWPA', '6387592'), - (827, 2240, 'attending', '2023-09-02 04:12:40', '2025-12-17 19:46:56', 'dBLQEWPA', '6388603'), - (827, 2241, 'attending', '2023-09-02 04:12:42', '2025-12-17 19:46:44', 'dBLQEWPA', '6388604'), - (827, 2242, 'not_attending', '2023-09-02 04:13:05', '2025-12-17 19:46:45', 'dBLQEWPA', '6388606'), - (827, 2247, 'attending', '2023-09-06 16:48:44', '2025-12-17 19:46:56', 'dBLQEWPA', '6394628'), - (827, 2248, 'attending', '2023-09-09 21:46:04', '2025-12-17 19:46:44', 'dBLQEWPA', '6394629'), - (827, 2249, 'attending', '2023-09-09 21:46:10', '2025-12-17 19:46:45', 'dBLQEWPA', '6394630'), - (827, 2250, 'attending', '2023-09-09 21:46:14', '2025-12-17 19:46:45', 'dBLQEWPA', '6394631'), - (827, 2253, 'not_attending', '2023-09-11 05:54:47', '2025-12-17 19:46:45', 'dBLQEWPA', '6401811'), - (827, 2257, 'attending', '2023-09-16 17:15:39', '2025-12-17 19:46:44', 'dBLQEWPA', '6408068'), - (827, 2265, 'attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', 'dBLQEWPA', '6439625'), - (827, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dBLQEWPA', '6440863'), - (827, 2272, 'attending', '2023-10-03 01:31:41', '2025-12-17 19:46:45', 'dBLQEWPA', '6445440'), - (827, 2276, 'attending', '2023-10-08 04:06:43', '2025-12-17 19:46:46', 'dBLQEWPA', '6453951'), - (827, 2279, 'maybe', '2023-10-12 20:33:45', '2025-12-17 19:46:46', 'dBLQEWPA', '6455460'), - (827, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dBLQEWPA', '6461696'), - (827, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dBLQEWPA', '6462129'), - (827, 2290, 'attending', '2023-10-18 03:53:16', '2025-12-17 19:46:46', 'dBLQEWPA', '6462214'), - (827, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dBLQEWPA', '6463218'), - (827, 2299, 'attending', '2023-10-21 02:10:35', '2025-12-17 19:46:46', 'dBLQEWPA', '6472181'), - (827, 2304, 'attending', '2023-10-29 02:17:22', '2025-12-17 19:46:47', 'dBLQEWPA', '6482693'), - (827, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dBLQEWPA', '6484200'), - (827, 2307, 'attending', '2023-10-22 18:40:44', '2025-12-17 19:46:46', 'dBLQEWPA', '6484680'), - (827, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dBLQEWPA', '6507741'), - (827, 2322, 'attending', '2023-11-01 04:45:49', '2025-12-17 19:46:48', 'dBLQEWPA', '6514659'), - (827, 2323, 'attending', '2023-11-01 04:45:45', '2025-12-17 19:46:48', 'dBLQEWPA', '6514660'), - (827, 2324, 'attending', '2023-11-01 04:45:43', '2025-12-17 19:46:49', 'dBLQEWPA', '6514662'), - (827, 2325, 'attending', '2023-11-01 04:45:42', '2025-12-17 19:46:36', 'dBLQEWPA', '6514663'), - (827, 2333, 'attending', '2023-11-05 03:00:45', '2025-12-17 19:46:47', 'dBLQEWPA', '6519103'), - (827, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dBLQEWPA', '6535681'), - (827, 2345, 'maybe', '2023-11-29 21:02:18', '2025-12-17 19:46:48', 'dBLQEWPA', '6582414'), - (827, 2350, 'attending', '2023-11-22 19:12:05', '2025-12-17 19:46:48', 'dBLQEWPA', '6584352'), - (827, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dBLQEWPA', '6584747'), - (827, 2352, 'attending', '2023-11-21 09:50:58', '2025-12-17 19:46:48', 'dBLQEWPA', '6587097'), - (827, 2363, 'attending', '2023-12-04 23:38:16', '2025-12-17 19:46:49', 'dBLQEWPA', '6609022'), - (827, 2370, 'attending', '2023-12-12 05:32:50', '2025-12-17 19:46:36', 'dBLQEWPA', '6623765'), - (827, 2373, 'attending', '2023-12-22 01:59:34', '2025-12-17 19:46:38', 'dBLQEWPA', '6632678'), - (827, 2374, 'attending', '2023-12-18 22:28:35', '2025-12-17 19:46:36', 'dBLQEWPA', '6632757'), - (827, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dBLQEWPA', '6644187'), - (827, 2386, 'attending', '2024-01-02 23:53:39', '2025-12-17 19:46:37', 'dBLQEWPA', '6648951'), - (827, 2387, 'attending', '2024-01-04 03:39:49', '2025-12-17 19:46:37', 'dBLQEWPA', '6648952'), - (827, 2388, 'attending', '2024-01-03 02:35:05', '2025-12-17 19:46:37', 'dBLQEWPA', '6649244'), - (827, 2393, 'not_attending', '2024-01-10 23:19:04', '2025-12-17 19:46:38', 'dBLQEWPA', '6654468'), - (827, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dBLQEWPA', '6655401'), - (827, 2399, 'attending', '2024-01-10 23:38:52', '2025-12-17 19:46:38', 'dBLQEWPA', '6657583'), - (827, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dBLQEWPA', '6661585'), - (827, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dBLQEWPA', '6661588'), - (827, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dBLQEWPA', '6661589'), - (827, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dBLQEWPA', '6699906'), - (827, 2408, 'attending', '2024-01-15 03:42:02', '2025-12-17 19:46:40', 'dBLQEWPA', '6699907'), - (827, 2409, 'attending', '2024-01-15 03:52:26', '2025-12-17 19:46:41', 'dBLQEWPA', '6699909'), - (827, 2410, 'attending', '2024-01-15 03:52:28', '2025-12-17 19:46:41', 'dBLQEWPA', '6699911'), - (827, 2411, 'attending', '2024-01-15 04:03:05', '2025-12-17 19:46:41', 'dBLQEWPA', '6699913'), - (827, 2413, 'maybe', '2024-02-18 18:34:20', '2025-12-17 19:46:42', 'dBLQEWPA', '6700719'), - (827, 2414, 'attending', '2024-01-16 01:26:44', '2025-12-17 19:46:40', 'dBLQEWPA', '6701000'), - (827, 2415, 'attending', '2024-01-20 17:45:21', '2025-12-17 19:46:40', 'dBLQEWPA', '6701001'), - (827, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dBLQEWPA', '6701109'), - (827, 2419, 'maybe', '2024-01-24 20:49:06', '2025-12-17 19:46:41', 'dBLQEWPA', '6704505'), - (827, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dBLQEWPA', '6705219'), - (827, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dBLQEWPA', '6710153'), - (827, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dBLQEWPA', '6711552'), - (827, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dBLQEWPA', '6711553'), - (827, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dBLQEWPA', '6722688'), - (827, 2438, 'attending', '2024-02-08 00:34:34', '2025-12-17 19:46:41', 'dBLQEWPA', '6730201'), - (827, 2439, 'attending', '2024-01-31 02:58:26', '2025-12-17 19:46:41', 'dBLQEWPA', '6730620'), - (827, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dBLQEWPA', '6730642'), - (827, 2450, 'attending', '2024-02-05 17:50:23', '2025-12-17 19:46:41', 'dBLQEWPA', '6738807'), - (827, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dBLQEWPA', '6740364'), - (827, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dBLQEWPA', '6743829'), - (827, 2461, 'attending', '2024-02-10 05:06:11', '2025-12-17 19:46:41', 'dBLQEWPA', '6744245'), - (827, 2466, 'attending', '2024-02-14 23:58:57', '2025-12-17 19:46:41', 'dBLQEWPA', '7026777'), - (827, 2467, 'attending', '2024-02-22 00:44:55', '2025-12-17 19:46:43', 'dBLQEWPA', '7029987'), - (827, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dBLQEWPA', '7030380'), - (827, 2471, 'attending', '2024-02-23 07:11:08', '2025-12-17 19:46:42', 'dBLQEWPA', '7032425'), - (827, 2472, 'attending', '2024-02-19 22:45:48', '2025-12-17 19:46:42', 'dBLQEWPA', '7033677'), - (827, 2474, 'attending', '2024-02-20 23:54:27', '2025-12-17 19:46:43', 'dBLQEWPA', '7035415'), - (827, 2475, 'not_attending', '2024-02-20 23:58:54', '2025-12-17 19:46:43', 'dBLQEWPA', '7035643'), - (827, 2476, 'maybe', '2024-02-20 23:58:51', '2025-12-17 19:46:43', 'dBLQEWPA', '7035691'), - (827, 2478, 'attending', '2024-02-20 23:53:29', '2025-12-17 19:46:43', 'dBLQEWPA', '7036478'), - (827, 2480, 'attending', '2024-02-24 08:26:58', '2025-12-17 19:46:43', 'dBLQEWPA', '7042160'), - (827, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dBLQEWPA', '7044715'), - (827, 2486, 'not_attending', '2024-02-27 06:26:10', '2025-12-17 19:46:43', 'dBLQEWPA', '7048277'), - (827, 2489, 'attending', '2024-02-27 23:01:34', '2025-12-17 19:46:43', 'dBLQEWPA', '7050161'), - (827, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dBLQEWPA', '7050318'), - (827, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dBLQEWPA', '7050319'), - (827, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dBLQEWPA', '7050322'), - (827, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dBLQEWPA', '7057804'), - (827, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dBLQEWPA', '7059866'), - (827, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dBLQEWPA', '7072824'), - (827, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dBLQEWPA', '7074348'), - (827, 2512, 'not_attending', '2024-04-01 18:57:10', '2025-12-17 19:46:33', 'dBLQEWPA', '7074352'), - (827, 2513, 'maybe', '2024-04-11 22:53:38', '2025-12-17 19:46:34', 'dBLQEWPA', '7074353'), - (827, 2539, 'maybe', '2024-04-01 18:56:51', '2025-12-17 19:46:33', 'dBLQEWPA', '7085486'), - (827, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dBLQEWPA', '7089267'), - (827, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dBLQEWPA', '7098747'), - (827, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dBLQEWPA', '7113468'), - (827, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dBLQEWPA', '7114856'), - (827, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'dBLQEWPA', '7114951'), - (827, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dBLQEWPA', '7114955'), - (827, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dBLQEWPA', '7114956'), - (827, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dBLQEWPA', '7114957'), - (827, 2563, 'not_attending', '2024-04-11 22:53:10', '2025-12-17 19:46:33', 'dBLQEWPA', '7134734'), - (827, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dBLQEWPA', '7153615'), - (827, 2571, 'maybe', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dBLQEWPA', '7159484'), - (827, 2590, 'attending', '2024-04-16 19:59:28', '2025-12-17 19:46:34', 'dBLQEWPA', '7178446'), - (827, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dBLQEWPA', '7220467'), - (827, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBLQEWPA', '7240354'), - (827, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBLQEWPA', '7251633'), - (827, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBLQEWPA', '7263048'), - (828, 1824, 'attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'mLDJpvJm', '5774172'), - (828, 1825, 'attending', '2022-12-07 16:45:17', '2025-12-17 19:47:16', 'mLDJpvJm', '5776760'), - (828, 1829, 'attending', '2022-12-03 22:14:24', '2025-12-17 19:47:16', 'mLDJpvJm', '5778867'), - (828, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'mLDJpvJm', '5818247'), - (828, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mLDJpvJm', '5819471'), - (828, 1836, 'maybe', '2022-12-07 16:44:44', '2025-12-17 19:47:16', 'mLDJpvJm', '5819484'), - (828, 1842, 'maybe', '2022-12-17 20:16:14', '2025-12-17 19:47:04', 'mLDJpvJm', '5827739'), - (828, 1843, 'attending', '2022-12-17 20:14:54', '2025-12-17 19:47:04', 'mLDJpvJm', '5844304'), - (828, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mLDJpvJm', '5844306'), - (828, 1845, 'attending', '2022-12-17 21:27:26', '2025-12-17 19:47:05', 'mLDJpvJm', '5844406'), - (828, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mLDJpvJm', '5850159'), - (828, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mLDJpvJm', '5858999'), - (828, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mLDJpvJm', '5871984'), - (828, 1860, 'maybe', '2023-01-13 17:05:03', '2025-12-17 19:47:05', 'mLDJpvJm', '5876309'), - (828, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mLDJpvJm', '5876354'), - (828, 1864, 'attending', '2023-01-18 23:59:55', '2025-12-17 19:47:05', 'mLDJpvJm', '5879675'), - (828, 1865, 'attending', '2023-01-26 20:50:31', '2025-12-17 19:47:06', 'mLDJpvJm', '5879676'), - (828, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mLDJpvJm', '5880939'), - (828, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mLDJpvJm', '5880940'), - (828, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mLDJpvJm', '5880942'), - (828, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mLDJpvJm', '5880943'), - (828, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mLDJpvJm', '5887890'), - (828, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mLDJpvJm', '5888598'), - (828, 1879, 'maybe', '2023-01-29 20:12:12', '2025-12-17 19:47:06', 'mLDJpvJm', '5893001'), - (828, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mLDJpvJm', '5893260'), - (828, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mLDJpvJm', '5899826'), - (828, 1888, 'maybe', '2023-02-13 23:18:49', '2025-12-17 19:47:07', 'mLDJpvJm', '5900197'), - (828, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mLDJpvJm', '5900199'), - (828, 1890, 'maybe', '2023-02-20 15:05:02', '2025-12-17 19:47:08', 'mLDJpvJm', '5900200'), - (828, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mLDJpvJm', '5900202'), - (828, 1892, 'maybe', '2023-03-09 19:40:23', '2025-12-17 19:46:56', 'mLDJpvJm', '5900203'), - (828, 1895, 'maybe', '2023-01-31 22:15:47', '2025-12-17 19:47:06', 'mLDJpvJm', '5901108'), - (828, 1896, 'maybe', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mLDJpvJm', '5901126'), - (828, 1898, 'maybe', '2023-01-31 23:58:18', '2025-12-17 19:47:06', 'mLDJpvJm', '5901263'), - (828, 1899, 'attending', '2023-02-09 16:05:46', '2025-12-17 19:47:07', 'mLDJpvJm', '5901323'), - (828, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mLDJpvJm', '5909655'), - (828, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mLDJpvJm', '5910522'), - (828, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mLDJpvJm', '5910526'), - (828, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mLDJpvJm', '5910528'), - (828, 1922, 'maybe', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mLDJpvJm', '5916219'), - (828, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mLDJpvJm', '5936234'), - (828, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mLDJpvJm', '5958351'), - (828, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mLDJpvJm', '5959751'), - (828, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mLDJpvJm', '5959755'), - (828, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mLDJpvJm', '5960055'), - (828, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mLDJpvJm', '5961684'), - (828, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mLDJpvJm', '5962132'), - (828, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mLDJpvJm', '5962133'), - (828, 1946, 'maybe', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mLDJpvJm', '5962134'), - (828, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mLDJpvJm', '5962317'), - (828, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mLDJpvJm', '5962318'), - (828, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'mLDJpvJm', '5965933'), - (828, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mLDJpvJm', '5967014'), - (828, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mLDJpvJm', '5972815'), - (828, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mLDJpvJm', '5974016'), - (828, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'mLDJpvJm', '5975052'), - (828, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'mLDJpvJm', '5975054'), - (828, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mLDJpvJm', '5981515'), - (828, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mLDJpvJm', '5993516'), - (828, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mLDJpvJm', '5998939'), - (828, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mLDJpvJm', '6028191'), - (828, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mLDJpvJm', '6040066'), - (828, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mLDJpvJm', '6042717'), - (828, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mLDJpvJm', '6044838'), - (828, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mLDJpvJm', '6044839'), - (828, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mLDJpvJm', '6045684'), - (828, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mLDJpvJm', '6050104'), - (828, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mLDJpvJm', '6053195'), - (828, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mLDJpvJm', '6053198'), - (828, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mLDJpvJm', '6056085'), - (828, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mLDJpvJm', '6056916'), - (828, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mLDJpvJm', '6059290'), - (828, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mLDJpvJm', '6060328'), - (828, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mLDJpvJm', '6061037'), - (828, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mLDJpvJm', '6061039'), - (828, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mLDJpvJm', '6067245'), - (828, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mLDJpvJm', '6068094'), - (828, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mLDJpvJm', '6068252'), - (828, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mLDJpvJm', '6068253'), - (828, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mLDJpvJm', '6068254'), - (828, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mLDJpvJm', '6068280'), - (828, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mLDJpvJm', '6069093'), - (828, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mLDJpvJm', '6072528'), - (828, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'mLDJpvJm', '6075556'), - (828, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mLDJpvJm', '6079840'), - (828, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mLDJpvJm', '6083398'), - (828, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mLDJpvJm', '6093504'), - (828, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mLDJpvJm', '6097414'), - (828, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mLDJpvJm', '6097442'), - (828, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mLDJpvJm', '6097684'), - (828, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mLDJpvJm', '6098762'), - (828, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mLDJpvJm', '6101361'), - (828, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mLDJpvJm', '6101362'), - (828, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mLDJpvJm', '6107314'), - (828, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mLDJpvJm', '6120034'), - (828, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mLDJpvJm', '6136733'), - (828, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mLDJpvJm', '6137989'), - (828, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mLDJpvJm', '6150864'), - (828, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mLDJpvJm', '6155491'), - (828, 2116, 'maybe', '2023-07-04 18:28:40', '2025-12-17 19:46:51', 'mLDJpvJm', '6163389'), - (828, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mLDJpvJm', '6164417'), - (828, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mLDJpvJm', '6166388'), - (828, 2121, 'maybe', '2023-06-28 18:49:32', '2025-12-17 19:46:50', 'mLDJpvJm', '6176439'), - (828, 2126, 'maybe', '2023-07-02 12:40:56', '2025-12-17 19:46:51', 'mLDJpvJm', '6177548'), - (828, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'mLDJpvJm', '6182410'), - (828, 2130, 'attending', '2023-07-04 18:28:32', '2025-12-17 19:46:51', 'mLDJpvJm', '6183891'), - (828, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mLDJpvJm', '6185812'), - (828, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mLDJpvJm', '6187651'), - (828, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mLDJpvJm', '6187963'), - (828, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mLDJpvJm', '6187964'), - (828, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mLDJpvJm', '6187966'), - (828, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mLDJpvJm', '6187967'), - (828, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mLDJpvJm', '6187969'), - (828, 2142, 'maybe', '2023-07-17 18:49:08', '2025-12-17 19:46:52', 'mLDJpvJm', '6333850'), - (828, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mLDJpvJm', '6334878'), - (828, 2152, 'maybe', '2023-07-14 15:54:45', '2025-12-17 19:46:52', 'mLDJpvJm', '6337021'), - (828, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mLDJpvJm', '6337236'), - (828, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mLDJpvJm', '6337970'), - (828, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mLDJpvJm', '6338308'), - (828, 2157, 'not_attending', '2023-07-12 21:56:12', '2025-12-17 19:46:52', 'mLDJpvJm', '6338342'), - (828, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mLDJpvJm', '6341710'), - (828, 2165, 'attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mLDJpvJm', '6342044'), - (828, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mLDJpvJm', '6342298'), - (828, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mLDJpvJm', '6343294'), - (828, 2176, 'maybe', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mLDJpvJm', '6347034'), - (828, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mLDJpvJm', '6347056'), - (828, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mLDJpvJm', '6353830'), - (828, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mLDJpvJm', '6353831'), - (828, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mLDJpvJm', '6357867'), - (828, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mLDJpvJm', '6358652'), - (828, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'mLDJpvJm', '6358668'), - (828, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'mLDJpvJm', '6358669'), - (828, 2195, 'attending', '2023-08-24 22:14:36', '2025-12-17 19:46:55', 'mLDJpvJm', '6359397'), - (828, 2198, 'attending', '2023-09-22 15:24:15', '2025-12-17 19:46:45', 'mLDJpvJm', '6359400'), - (828, 2200, 'attending', '2023-08-09 23:20:00', '2025-12-17 19:46:55', 'mLDJpvJm', '6359850'), - (828, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mLDJpvJm', '6361709'), - (828, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mLDJpvJm', '6361710'), - (828, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mLDJpvJm', '6361711'), - (828, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mLDJpvJm', '6361712'), - (828, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mLDJpvJm', '6361713'), - (828, 2213, 'attending', '2023-08-15 22:00:34', '2025-12-17 19:46:55', 'mLDJpvJm', '6362935'), - (828, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mLDJpvJm', '6382573'), - (828, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mLDJpvJm', '6388604'), - (828, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mLDJpvJm', '6394629'), - (828, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mLDJpvJm', '6394631'), - (828, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mLDJpvJm', '6440863'), - (828, 2272, 'maybe', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mLDJpvJm', '6445440'), - (828, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mLDJpvJm', '6453951'), - (828, 2284, 'maybe', '2023-10-13 20:32:18', '2025-12-17 19:46:46', 'mLDJpvJm', '6460928'), - (828, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mLDJpvJm', '6461696'), - (828, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mLDJpvJm', '6462129'), - (828, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mLDJpvJm', '6463218'), - (828, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mLDJpvJm', '6472181'), - (828, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mLDJpvJm', '6482693'), - (828, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mLDJpvJm', '6484200'), - (828, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mLDJpvJm', '6484680'), - (828, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mLDJpvJm', '6507741'), - (828, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mLDJpvJm', '6514659'), - (828, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mLDJpvJm', '6514660'), - (828, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mLDJpvJm', '6519103'), - (828, 2337, 'attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mLDJpvJm', '6535681'), - (828, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mLDJpvJm', '6584747'), - (828, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mLDJpvJm', '6587097'), - (828, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mLDJpvJm', '6609022'), - (828, 2371, 'maybe', '2023-12-15 03:22:24', '2025-12-17 19:46:36', 'mLDJpvJm', '6624495'), - (828, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mLDJpvJm', '6632757'), - (828, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mLDJpvJm', '6644187'), - (828, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mLDJpvJm', '6648951'), - (828, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mLDJpvJm', '6648952'), - (828, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mLDJpvJm', '6655401'), - (828, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mLDJpvJm', '6661585'), - (828, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mLDJpvJm', '6661588'), - (828, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mLDJpvJm', '6661589'), - (828, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mLDJpvJm', '6699906'), - (828, 2409, 'attending', '2024-02-03 01:57:48', '2025-12-17 19:46:41', 'mLDJpvJm', '6699909'), - (828, 2411, 'maybe', '2024-02-16 00:53:21', '2025-12-17 19:46:42', 'mLDJpvJm', '6699913'), - (828, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mLDJpvJm', '6701109'), - (828, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'mLDJpvJm', '6704561'), - (828, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mLDJpvJm', '6705219'), - (828, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'mLDJpvJm', '6708410'), - (828, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mLDJpvJm', '6710153'), - (828, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mLDJpvJm', '6711552'), - (828, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mLDJpvJm', '6711553'), - (828, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mLDJpvJm', '6722688'), - (828, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mLDJpvJm', '6730620'), - (828, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mLDJpvJm', '6730642'), - (828, 2445, 'maybe', '2024-02-16 00:53:08', '2025-12-17 19:46:41', 'mLDJpvJm', '6734368'), - (828, 2446, 'maybe', '2024-02-29 14:36:18', '2025-12-17 19:46:43', 'mLDJpvJm', '6734369'), - (828, 2447, 'maybe', '2024-03-15 00:22:34', '2025-12-17 19:46:32', 'mLDJpvJm', '6734370'), - (828, 2448, 'attending', '2024-03-27 18:12:28', '2025-12-17 19:46:33', 'mLDJpvJm', '6734371'), - (828, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mLDJpvJm', '6740364'), - (828, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mLDJpvJm', '6743829'), - (828, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mLDJpvJm', '7030380'), - (828, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mLDJpvJm', '7033677'), - (828, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mLDJpvJm', '7035415'), - (828, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mLDJpvJm', '7044715'), - (828, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mLDJpvJm', '7050318'), - (828, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mLDJpvJm', '7050319'), - (828, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mLDJpvJm', '7050322'), - (828, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mLDJpvJm', '7057804'), - (828, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mLDJpvJm', '7072824'), - (828, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mLDJpvJm', '7074348'), - (828, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mLDJpvJm', '7074364'), - (828, 2527, 'not_attending', '2024-06-24 15:17:28', '2025-12-17 19:46:29', 'mLDJpvJm', '7074367'), - (828, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mLDJpvJm', '7089267'), - (828, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mLDJpvJm', '7098747'), - (828, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mLDJpvJm', '7113468'), - (828, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mLDJpvJm', '7114856'), - (828, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mLDJpvJm', '7114951'), - (828, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mLDJpvJm', '7114955'), - (828, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mLDJpvJm', '7114956'), - (828, 2558, 'maybe', '2024-04-30 19:15:13', '2025-12-17 19:46:35', 'mLDJpvJm', '7114957'), - (828, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mLDJpvJm', '7153615'), - (828, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mLDJpvJm', '7159484'), - (828, 2575, 'maybe', '2024-04-12 01:09:30', '2025-12-17 19:46:33', 'mLDJpvJm', '7164534'), - (828, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mLDJpvJm', '7178446'), - (828, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mLDJpvJm', '7220467'), - (828, 2603, 'maybe', '2024-05-14 22:51:06', '2025-12-17 19:46:35', 'mLDJpvJm', '7225669'), - (828, 2604, 'attending', '2024-05-25 15:45:45', '2025-12-17 19:46:36', 'mLDJpvJm', '7225670'), - (828, 2607, 'attending', '2024-04-30 19:14:48', '2025-12-17 19:46:35', 'mLDJpvJm', '7240136'), - (828, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mLDJpvJm', '7240354'), - (828, 2616, 'attending', '2024-05-06 15:23:15', '2025-12-17 19:46:35', 'mLDJpvJm', '7250296'), - (828, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mLDJpvJm', '7251633'), - (828, 2626, 'not_attending', '2024-05-17 22:40:45', '2025-12-17 19:46:35', 'mLDJpvJm', '7264723'), - (828, 2627, 'attending', '2024-05-21 19:09:18', '2025-12-17 19:46:35', 'mLDJpvJm', '7264724'), - (828, 2628, 'attending', '2024-05-30 21:05:09', '2025-12-17 19:46:36', 'mLDJpvJm', '7264725'), - (828, 2650, 'attending', '2024-05-24 17:29:03', '2025-12-17 19:46:35', 'mLDJpvJm', '7288199'), - (828, 2651, 'maybe', '2024-05-24 17:28:41', '2025-12-17 19:46:35', 'mLDJpvJm', '7288200'), - (828, 2652, 'not_attending', '2024-05-30 21:04:57', '2025-12-17 19:46:36', 'mLDJpvJm', '7288339'), - (828, 2655, 'attending', '2024-05-26 22:55:02', '2025-12-17 19:46:35', 'mLDJpvJm', '7291225'), - (828, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mLDJpvJm', '7302674'), - (828, 2668, 'attending', '2024-06-05 18:48:40', '2025-12-17 19:46:36', 'mLDJpvJm', '7308821'), - (828, 2678, 'maybe', '2024-06-11 13:31:25', '2025-12-17 19:46:28', 'mLDJpvJm', '7319489'), - (828, 2686, 'attending', '2024-06-20 16:30:42', '2025-12-17 19:46:29', 'mLDJpvJm', '7323802'), - (828, 2688, 'attending', '2024-06-24 15:17:48', '2025-12-17 19:46:29', 'mLDJpvJm', '7324073'), - (828, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mLDJpvJm', '7324074'), - (828, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mLDJpvJm', '7324075'), - (828, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mLDJpvJm', '7324078'), - (828, 2695, 'not_attending', '2024-08-15 23:40:37', '2025-12-17 19:46:31', 'mLDJpvJm', '7324080'), - (828, 2696, 'attending', '2024-08-20 02:49:50', '2025-12-17 19:46:32', 'mLDJpvJm', '7324081'), - (828, 2697, 'attending', '2024-08-26 12:28:05', '2025-12-17 19:46:32', 'mLDJpvJm', '7324082'), - (828, 2700, 'attending', '2024-06-13 16:52:45', '2025-12-17 19:46:28', 'mLDJpvJm', '7324388'), - (828, 2706, 'maybe', '2024-06-19 17:17:18', '2025-12-17 19:46:28', 'mLDJpvJm', '7324947'), - (828, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mLDJpvJm', '7331457'), - (828, 2724, 'attending', '2024-06-21 16:36:30', '2025-12-17 19:46:29', 'mLDJpvJm', '7332562'), - (828, 2726, 'attending', '2024-06-19 19:17:45', '2025-12-17 19:46:29', 'mLDJpvJm', '7332853'), - (828, 2742, 'maybe', '2024-07-01 23:31:47', '2025-12-17 19:46:29', 'mLDJpvJm', '7345167'), - (828, 2745, 'maybe', '2024-07-24 22:43:23', '2025-12-17 19:46:30', 'mLDJpvJm', '7348712'), - (828, 2746, 'maybe', '2024-07-08 02:04:59', '2025-12-17 19:46:29', 'mLDJpvJm', '7348713'), - (828, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mLDJpvJm', '7356752'), - (828, 2766, 'attending', '2024-07-26 11:17:56', '2025-12-17 19:46:30', 'mLDJpvJm', '7363643'), - (828, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mLDJpvJm', '7368606'), - (828, 2800, 'maybe', '2024-08-15 23:40:23', '2025-12-17 19:46:31', 'mLDJpvJm', '7397405'), - (828, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mLDJpvJm', '7397462'), - (828, 2806, 'attending', '2024-09-16 23:46:13', '2025-12-17 19:46:25', 'mLDJpvJm', '7404888'), - (828, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mLDJpvJm', '7424275'), - (828, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mLDJpvJm', '7424276'), - (828, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mLDJpvJm', '7432751'), - (828, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mLDJpvJm', '7432752'), - (828, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mLDJpvJm', '7432753'), - (828, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mLDJpvJm', '7432754'), - (828, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mLDJpvJm', '7432755'), - (828, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mLDJpvJm', '7432756'), - (828, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mLDJpvJm', '7432758'), - (828, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mLDJpvJm', '7432759'), - (828, 2832, 'attending', '2024-09-09 23:36:36', '2025-12-17 19:46:24', 'mLDJpvJm', '7433324'), - (828, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mLDJpvJm', '7433834'), - (828, 2838, 'maybe', '2024-09-26 14:09:32', '2025-12-17 19:46:25', 'mLDJpvJm', '7439182'), - (828, 2839, 'attending', '2024-09-23 19:18:45', '2025-12-17 19:46:25', 'mLDJpvJm', '7439262'), - (828, 2858, 'not_attending', '2024-10-15 22:00:20', '2025-12-17 19:46:26', 'mLDJpvJm', '7469388'), - (828, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mLDJpvJm', '7470197'), - (828, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mLDJpvJm', '7685613'), - (828, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mLDJpvJm', '7688194'), - (828, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mLDJpvJm', '7688196'), - (828, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mLDJpvJm', '7688289'), - (828, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mLDJpvJm', '7692763'), - (828, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mLDJpvJm', '7697552'), - (828, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mLDJpvJm', '7699878'), - (828, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mLDJpvJm', '7704043'), - (828, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mLDJpvJm', '7712467'), - (828, 2926, 'attending', '2024-12-05 07:30:24', '2025-12-17 19:46:21', 'mLDJpvJm', '7713585'), - (828, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mLDJpvJm', '7713586'), - (828, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mLDJpvJm', '7738518'), - (828, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mLDJpvJm', '7750636'), - (828, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mLDJpvJm', '7796540'), - (828, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mLDJpvJm', '7796541'), - (828, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mLDJpvJm', '7796542'), - (829, 2518, 'attending', '2024-07-25 20:48:03', '2025-12-17 19:46:30', 'Vmyl5z1d', '7074358'), - (829, 2691, 'not_attending', '2024-07-20 01:54:43', '2025-12-17 19:46:30', 'Vmyl5z1d', '7324076'), - (829, 2692, 'not_attending', '2024-07-27 21:57:02', '2025-12-17 19:46:30', 'Vmyl5z1d', '7324077'), - (829, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Vmyl5z1d', '7324078'), - (829, 2694, 'not_attending', '2024-08-09 23:44:47', '2025-12-17 19:46:31', 'Vmyl5z1d', '7324079'), - (829, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Vmyl5z1d', '7324082'), - (829, 2711, 'attending', '2024-07-19 23:18:22', '2025-12-17 19:46:30', 'Vmyl5z1d', '7326524'), - (829, 2763, 'not_attending', '2024-07-20 01:55:15', '2025-12-17 19:46:30', 'Vmyl5z1d', '7363594'), - (829, 2764, 'not_attending', '2024-07-27 21:58:10', '2025-12-17 19:46:30', 'Vmyl5z1d', '7363595'), - (829, 2766, 'not_attending', '2024-07-27 21:59:00', '2025-12-17 19:46:30', 'Vmyl5z1d', '7363643'), - (829, 2767, 'not_attending', '2024-07-20 01:55:23', '2025-12-17 19:46:30', 'Vmyl5z1d', '7364726'), - (829, 2768, 'not_attending', '2024-07-20 01:55:01', '2025-12-17 19:46:30', 'Vmyl5z1d', '7366031'), - (829, 2769, 'attending', '2024-07-19 21:03:36', '2025-12-17 19:46:30', 'Vmyl5z1d', '7366803'), - (829, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Vmyl5z1d', '7368606'), - (829, 2776, 'attending', '2024-07-25 20:47:03', '2025-12-17 19:46:30', 'Vmyl5z1d', '7370690'), - (829, 2781, 'not_attending', '2024-07-27 21:58:48', '2025-12-17 19:46:30', 'Vmyl5z1d', '7373194'), - (829, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Vmyl5z1d', '7397462'), - (829, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Vmyl5z1d', '7424275'), - (829, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Vmyl5z1d', '7424276'), - (829, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Vmyl5z1d', '7432751'), - (829, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Vmyl5z1d', '7432752'), - (829, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Vmyl5z1d', '7432753'), - (829, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432754'), - (829, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432755'), - (829, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432756'), - (829, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432758'), - (829, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432759'), - (829, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'Vmyl5z1d', '7433834'), - (829, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Vmyl5z1d', '7470197'), - (829, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Vmyl5z1d', '7685613'), - (829, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Vmyl5z1d', '7688194'), - (829, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Vmyl5z1d', '7688196'), - (829, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Vmyl5z1d', '7688289'), - (830, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AXZDx1Zd', '7113468'), - (830, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AXZDx1Zd', '7114856'), - (830, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'AXZDx1Zd', '7114951'), - (830, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'AXZDx1Zd', '7114956'), - (830, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AXZDx1Zd', '7114957'), - (830, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AXZDx1Zd', '7153615'), - (830, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AXZDx1Zd', '7159484'), - (830, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AXZDx1Zd', '7178446'), - (830, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AXZDx1Zd', '7220467'), - (830, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AXZDx1Zd', '7240354'), - (830, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AXZDx1Zd', '7251633'), - (830, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'AXZDx1Zd', '7265589'), - (831, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '54kwV8z4', '3236465'), - (831, 622, 'attending', '2021-03-14 00:00:00', '2025-12-17 19:47:51', '54kwV8z4', '3517816'), - (831, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '54kwV8z4', '3539916'), - (831, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '54kwV8z4', '3539918'), - (831, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '54kwV8z4', '3539919'), - (831, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '54kwV8z4', '3539920'), - (831, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '54kwV8z4', '3539921'), - (831, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '54kwV8z4', '3539927'), - (831, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54kwV8z4', '3582734'), - (831, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '54kwV8z4', '3583262'), - (831, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '54kwV8z4', '3619523'), - (831, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '54kwV8z4', '3661369'), - (831, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54kwV8z4', '3674262'), - (831, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54kwV8z4', '3677402'), - (831, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54kwV8z4', '3730212'), - (831, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '54kwV8z4', '3793156'), - (831, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '54kwV8z4', '3803310'), - (831, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '54kwV8z4', '3806392'), - (831, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kwV8z4', '6045684'), - (832, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '8mRbE7Em', '3468125'), - (832, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '8mRbE7Em', '3470303'), - (832, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '8mRbE7Em', '3470305'), - (832, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '8mRbE7Em', '3470991'), - (832, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '8mRbE7Em', '3517815'), - (832, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '8mRbE7Em', '3517816'), - (832, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '8mRbE7Em', '3523941'), - (832, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '8mRbE7Em', '3533850'), - (832, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8mRbE7Em', '3536632'), - (832, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8mRbE7Em', '3536656'), - (832, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '8mRbE7Em', '3539916'), - (832, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '8mRbE7Em', '3539917'), - (832, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '8mRbE7Em', '3539918'), - (832, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '8mRbE7Em', '3539919'), - (832, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '8mRbE7Em', '3539920'), - (832, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '8mRbE7Em', '3539921'), - (832, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '8mRbE7Em', '3539922'), - (832, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8mRbE7Em', '3539923'), - (832, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8mRbE7Em', '3539927'), - (832, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8mRbE7Em', '3582734'), - (832, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8mRbE7Em', '3619523'), - (832, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRbE7Em', '6045684'), - (833, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dKRoqz54', '5247467'), - (833, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dKRoqz54', '5260800'), - (833, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dKRoqz54', '5269930'), - (833, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dKRoqz54', '5271448'), - (833, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dKRoqz54', '5271449'), - (833, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dKRoqz54', '5276469'), - (833, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dKRoqz54', '5278159'), - (833, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dKRoqz54', '5363695'), - (833, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dKRoqz54', '5365960'), - (833, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dKRoqz54', '5368973'), - (833, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dKRoqz54', '5378247'), - (833, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dKRoqz54', '5389605'), - (833, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dKRoqz54', '5397265'), - (833, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKRoqz54', '6045684'), - (834, 1504, 'attending', '2022-07-13 02:00:39', '2025-12-17 19:47:19', 'd8DojRNd', '5426882'), - (834, 1513, 'attending', '2022-07-14 00:00:27', '2025-12-17 19:47:19', 'd8DojRNd', '5441125'), - (834, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd8DojRNd', '5441126'), - (834, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd8DojRNd', '5441128'), - (834, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd8DojRNd', '5446643'), - (834, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'd8DojRNd', '5449068'), - (834, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd8DojRNd', '5453325'), - (834, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd8DojRNd', '5454516'), - (834, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd8DojRNd', '5454605'), - (834, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd8DojRNd', '5455037'), - (834, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd8DojRNd', '5461278'), - (834, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd8DojRNd', '5469480'), - (834, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd8DojRNd', '5471073'), - (834, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'd8DojRNd', '5474663'), - (834, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd8DojRNd', '5482022'), - (834, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd8DojRNd', '5482793'), - (834, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd8DojRNd', '5488912'), - (834, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd8DojRNd', '5492192'), - (834, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd8DojRNd', '5493139'), - (834, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd8DojRNd', '5493200'), - (834, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd8DojRNd', '5502188'), - (834, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd8DojRNd', '5512862'), - (834, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd8DojRNd', '5513985'), - (834, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8DojRNd', '6045684'), - (835, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'xAY89qnm', '3149491'), - (835, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'xAY89qnm', '3149493'), - (835, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'xAY89qnm', '3236448'), - (835, 395, 'maybe', '2021-06-07 13:34:58', '2025-12-17 19:47:47', 'xAY89qnm', '3236450'), - (835, 793, 'attending', '2021-06-02 14:10:06', '2025-12-17 19:47:47', 'xAY89qnm', '3793537'), - (835, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xAY89qnm', '3974109'), - (835, 827, 'not_attending', '2021-06-06 14:57:23', '2025-12-17 19:47:47', 'xAY89qnm', '3975311'), - (835, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xAY89qnm', '3975312'), - (835, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xAY89qnm', '3994992'), - (835, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xAY89qnm', '4014338'), - (835, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xAY89qnm', '4021848'), - (835, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xAY89qnm', '4136744'), - (835, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'xAY89qnm', '4136937'), - (835, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xAY89qnm', '4136938'), - (835, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xAY89qnm', '4136947'), - (835, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xAY89qnm', '4225444'), - (835, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'xAY89qnm', '4229417'), - (835, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'xAY89qnm', '4229418'), - (835, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xAY89qnm', '4239259'), - (835, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xAY89qnm', '4250163'), - (835, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'xAY89qnm', '4420744'), - (835, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'xAY89qnm', '4420747'), - (835, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'xAY89qnm', '4568602'), - (835, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'xAY89qnm', '4572153'), - (835, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xAY89qnm', '4585962'), - (835, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'xAY89qnm', '4596356'), - (835, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xAY89qnm', '4598860'), - (835, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xAY89qnm', '4598861'), - (835, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'xAY89qnm', '4602797'), - (835, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'xAY89qnm', '4637896'), - (835, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xAY89qnm', '4642994'), - (835, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'xAY89qnm', '4642995'), - (835, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xAY89qnm', '4642996'), - (835, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'xAY89qnm', '4642997'), - (835, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'xAY89qnm', '4645687'), - (835, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xAY89qnm', '4645698'), - (835, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'xAY89qnm', '4645704'), - (835, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'xAY89qnm', '4645705'), - (835, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'xAY89qnm', '4668385'), - (835, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'xAY89qnm', '4694407'), - (835, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'xAY89qnm', '4736497'), - (835, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'xAY89qnm', '4736499'), - (835, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'xAY89qnm', '4736500'), - (835, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'xAY89qnm', '4736503'), - (835, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'xAY89qnm', '4736504'), - (835, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xAY89qnm', '4746789'), - (835, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xAY89qnm', '4753929'), - (835, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xAY89qnm', '5038850'), - (835, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xAY89qnm', '5045826'), - (835, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xAY89qnm', '5132533'), - (835, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'xAY89qnm', '5186582'), - (835, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'xAY89qnm', '5186583'), - (835, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'xAY89qnm', '5186585'), - (835, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'xAY89qnm', '5190437'), - (835, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'xAY89qnm', '5195095'), - (835, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xAY89qnm', '5215989'), - (835, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'xAY89qnm', '5223686'), - (835, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'xAY89qnm', '5247467'), - (835, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'xAY89qnm', '5260800'), - (835, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'xAY89qnm', '5269930'), - (835, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'xAY89qnm', '5271448'), - (835, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'xAY89qnm', '5271449'), - (835, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'xAY89qnm', '5278159'), - (835, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'xAY89qnm', '5363695'), - (835, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'xAY89qnm', '5365960'), - (835, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'xAY89qnm', '5378247'), - (835, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'xAY89qnm', '5389605'), - (835, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'xAY89qnm', '5397265'), - (835, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'xAY89qnm', '5404786'), - (835, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'xAY89qnm', '5405203'), - (835, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'xAY89qnm', '5412550'), - (835, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'xAY89qnm', '5415046'), - (835, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'xAY89qnm', '5422086'), - (835, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'xAY89qnm', '5422406'), - (835, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'xAY89qnm', '5424565'), - (835, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'xAY89qnm', '5426882'), - (835, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'xAY89qnm', '5441125'), - (835, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'xAY89qnm', '5441126'), - (835, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'xAY89qnm', '5441128'), - (835, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'xAY89qnm', '5441131'), - (835, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'xAY89qnm', '5441132'), - (835, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'xAY89qnm', '5453325'), - (835, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'xAY89qnm', '5454516'), - (835, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'xAY89qnm', '5454605'), - (835, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'xAY89qnm', '5455037'), - (835, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'xAY89qnm', '5461278'), - (835, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'xAY89qnm', '5469480'), - (835, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'xAY89qnm', '5474663'), - (835, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'xAY89qnm', '5482022'), - (835, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'xAY89qnm', '5488912'), - (835, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'xAY89qnm', '5492192'), - (835, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'xAY89qnm', '5493139'), - (835, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'xAY89qnm', '5493200'), - (835, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'xAY89qnm', '5502188'), - (835, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'xAY89qnm', '5505059'), - (835, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'xAY89qnm', '5509055'), - (835, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'xAY89qnm', '5512862'), - (835, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'xAY89qnm', '5513985'), - (835, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'xAY89qnm', '5519981'), - (835, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'xAY89qnm', '5522550'), - (835, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'xAY89qnm', '5534683'), - (835, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'xAY89qnm', '5537735'), - (835, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'xAY89qnm', '5540859'), - (835, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'xAY89qnm', '5546619'), - (835, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'xAY89qnm', '5557747'), - (835, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'xAY89qnm', '5560255'), - (835, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'xAY89qnm', '5562906'), - (835, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'xAY89qnm', '5600604'), - (835, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'xAY89qnm', '5605544'), - (835, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'xAY89qnm', '5630960'), - (835, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'xAY89qnm', '5630961'), - (835, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'xAY89qnm', '5630962'), - (835, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'xAY89qnm', '5630966'), - (835, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'xAY89qnm', '5630967'), - (835, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'xAY89qnm', '5630968'), - (835, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'xAY89qnm', '5635406'), - (835, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'xAY89qnm', '5638765'), - (835, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'xAY89qnm', '5640097'), - (835, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'xAY89qnm', '5640843'), - (835, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'xAY89qnm', '5641521'), - (835, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'xAY89qnm', '5642818'), - (835, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'xAY89qnm', '5652395'), - (835, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'xAY89qnm', '5670445'), - (835, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'xAY89qnm', '5671637'), - (835, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'xAY89qnm', '5672329'), - (835, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'xAY89qnm', '5674057'), - (835, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'xAY89qnm', '5674060'), - (835, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'xAY89qnm', '5677461'), - (835, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'xAY89qnm', '5698046'), - (835, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'xAY89qnm', '5699760'), - (835, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'xAY89qnm', '5741601'), - (835, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'xAY89qnm', '5763458'), - (835, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'xAY89qnm', '5774172'), - (835, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'xAY89qnm', '5818247'), - (835, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'xAY89qnm', '5819471'), - (835, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'xAY89qnm', '5827739'), - (835, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xAY89qnm', '5844306'), - (835, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xAY89qnm', '5850159'), - (835, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xAY89qnm', '5858999'), - (835, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xAY89qnm', '5871984'), - (835, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xAY89qnm', '5876354'), - (835, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xAY89qnm', '5880939'), - (835, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xAY89qnm', '5880940'), - (835, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xAY89qnm', '5880942'), - (835, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xAY89qnm', '5880943'), - (835, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xAY89qnm', '5887890'), - (835, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xAY89qnm', '5888598'), - (835, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xAY89qnm', '5893260'), - (835, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xAY89qnm', '5899826'), - (835, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xAY89qnm', '5900199'), - (835, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xAY89qnm', '5900200'), - (835, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xAY89qnm', '5900202'), - (835, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xAY89qnm', '5900203'), - (835, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xAY89qnm', '5901108'), - (835, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xAY89qnm', '5901126'), - (835, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'xAY89qnm', '5901606'), - (835, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xAY89qnm', '5909655'), - (835, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xAY89qnm', '5910522'), - (835, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xAY89qnm', '5910526'), - (835, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xAY89qnm', '5910528'), - (835, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xAY89qnm', '5916219'), - (835, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xAY89qnm', '5936234'), - (835, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xAY89qnm', '5958351'), - (835, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xAY89qnm', '5959751'), - (835, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xAY89qnm', '5959755'), - (835, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xAY89qnm', '5960055'), - (835, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xAY89qnm', '5961684'), - (835, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'xAY89qnm', '5962132'), - (835, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'xAY89qnm', '5962133'), - (835, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xAY89qnm', '5962134'), - (835, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xAY89qnm', '5962317'), - (835, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xAY89qnm', '5962318'), - (835, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'xAY89qnm', '5965933'), - (835, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xAY89qnm', '5967014'), - (835, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xAY89qnm', '5972815'), - (835, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xAY89qnm', '5974016'), - (835, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xAY89qnm', '5981515'), - (835, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xAY89qnm', '5993516'), - (835, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xAY89qnm', '5998939'), - (835, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xAY89qnm', '6028191'), - (835, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xAY89qnm', '6040066'), - (835, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xAY89qnm', '6042717'), - (835, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xAY89qnm', '6044838'), - (835, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xAY89qnm', '6044839'), - (835, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAY89qnm', '6045684'), - (835, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xAY89qnm', '6050104'), - (835, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xAY89qnm', '6053195'), - (835, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xAY89qnm', '6053198'), - (835, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xAY89qnm', '6056085'), - (835, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xAY89qnm', '6056916'), - (835, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xAY89qnm', '6059290'), - (835, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xAY89qnm', '6060328'), - (835, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xAY89qnm', '6061037'), - (835, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xAY89qnm', '6061039'), - (835, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xAY89qnm', '6067245'), - (835, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xAY89qnm', '6068094'), - (835, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xAY89qnm', '6068252'), - (835, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xAY89qnm', '6068253'), - (835, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xAY89qnm', '6068254'), - (835, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'xAY89qnm', '6068280'), - (835, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xAY89qnm', '6069093'), - (835, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xAY89qnm', '6072528'), - (835, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xAY89qnm', '6079840'), - (835, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xAY89qnm', '6083398'), - (835, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xAY89qnm', '6093504'), - (835, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xAY89qnm', '6097414'), - (835, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xAY89qnm', '6097442'), - (835, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xAY89qnm', '6097684'), - (835, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xAY89qnm', '6098762'), - (835, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xAY89qnm', '6101361'), - (835, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xAY89qnm', '6101362'), - (835, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xAY89qnm', '6107314'), - (835, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xAY89qnm', '6120034'), - (835, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'xAY89qnm', '6136733'), - (835, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xAY89qnm', '6137989'), - (835, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xAY89qnm', '6150864'), - (835, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xAY89qnm', '6155491'), - (835, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xAY89qnm', '6164417'), - (835, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xAY89qnm', '6166388'), - (835, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xAY89qnm', '6176439'), - (835, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xAY89qnm', '6182410'), - (835, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xAY89qnm', '6185812'), - (835, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xAY89qnm', '6187651'), - (835, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xAY89qnm', '6187963'), - (835, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xAY89qnm', '6187964'), - (835, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xAY89qnm', '6187966'), - (835, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xAY89qnm', '6187967'), - (835, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xAY89qnm', '6187969'), - (835, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xAY89qnm', '6334878'), - (835, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xAY89qnm', '6337236'), - (835, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xAY89qnm', '6337970'), - (835, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xAY89qnm', '6338308'), - (835, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xAY89qnm', '6341710'), - (835, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xAY89qnm', '6342044'), - (835, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xAY89qnm', '6342298'), - (835, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xAY89qnm', '6343294'), - (835, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xAY89qnm', '6347034'), - (835, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xAY89qnm', '6347056'), - (835, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xAY89qnm', '6353830'), - (835, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xAY89qnm', '6353831'), - (835, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xAY89qnm', '6357867'), - (835, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xAY89qnm', '6358652'), - (835, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xAY89qnm', '6361709'), - (835, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xAY89qnm', '6361710'), - (835, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xAY89qnm', '6361711'), - (835, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xAY89qnm', '6361712'), - (835, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xAY89qnm', '6361713'), - (835, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'xAY89qnm', '6382573'), - (835, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'xAY89qnm', '6388604'), - (835, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xAY89qnm', '6394629'), - (835, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xAY89qnm', '6394631'), - (835, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xAY89qnm', '6440863'), - (835, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xAY89qnm', '6445440'), - (835, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xAY89qnm', '6453951'), - (835, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xAY89qnm', '6461696'), - (835, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xAY89qnm', '6462129'), - (835, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xAY89qnm', '6463218'), - (835, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'xAY89qnm', '6472181'), - (835, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'xAY89qnm', '6482693'), - (835, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'xAY89qnm', '6484200'), - (835, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xAY89qnm', '6484680'), - (835, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xAY89qnm', '6507741'), - (835, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'xAY89qnm', '6514659'), - (835, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xAY89qnm', '6514660'), - (835, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xAY89qnm', '6519103'), - (835, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xAY89qnm', '6535681'), - (835, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xAY89qnm', '6584747'), - (835, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xAY89qnm', '6587097'), - (835, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xAY89qnm', '6609022'), - (835, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xAY89qnm', '6632757'), - (835, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xAY89qnm', '6644187'), - (835, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xAY89qnm', '6648951'), - (835, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xAY89qnm', '6648952'), - (835, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xAY89qnm', '6655401'), - (835, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xAY89qnm', '6661585'), - (835, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xAY89qnm', '6661588'), - (835, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xAY89qnm', '6661589'), - (835, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xAY89qnm', '6699906'), - (835, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'xAY89qnm', '6699913'), - (835, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xAY89qnm', '6701109'), - (835, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xAY89qnm', '6705219'), - (835, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xAY89qnm', '6710153'), - (835, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xAY89qnm', '6711552'), - (835, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xAY89qnm', '6711553'), - (835, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xAY89qnm', '6722688'), - (835, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xAY89qnm', '6730620'), - (835, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xAY89qnm', '6740364'), - (835, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xAY89qnm', '6743829'), - (835, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xAY89qnm', '7030380'), - (835, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xAY89qnm', '7033677'), - (835, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xAY89qnm', '7044715'), - (835, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xAY89qnm', '7050318'), - (835, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xAY89qnm', '7050319'), - (835, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xAY89qnm', '7050322'), - (835, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xAY89qnm', '7057804'), - (835, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xAY89qnm', '7072824'), - (835, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xAY89qnm', '7074348'), - (835, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xAY89qnm', '7074364'), - (835, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'xAY89qnm', '7089267'), - (835, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xAY89qnm', '7098747'), - (835, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xAY89qnm', '7113468'), - (835, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xAY89qnm', '7114856'), - (835, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xAY89qnm', '7114951'), - (835, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xAY89qnm', '7114955'), - (835, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xAY89qnm', '7114956'), - (835, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xAY89qnm', '7114957'), - (835, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xAY89qnm', '7159484'), - (835, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xAY89qnm', '7178446'), - (835, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'xAY89qnm', '7220467'), - (835, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xAY89qnm', '7240354'), - (835, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xAY89qnm', '7251633'), - (835, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xAY89qnm', '7324073'), - (835, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xAY89qnm', '7324074'), - (835, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xAY89qnm', '7324075'), - (835, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'xAY89qnm', '7324078'), - (835, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xAY89qnm', '7324082'), - (835, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xAY89qnm', '7331457'), - (835, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xAY89qnm', '7363643'), - (835, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xAY89qnm', '7368606'), - (835, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xAY89qnm', '7397462'), - (835, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xAY89qnm', '7424275'), - (835, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xAY89qnm', '7432751'), - (835, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xAY89qnm', '7432752'), - (835, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xAY89qnm', '7432753'), - (835, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xAY89qnm', '7432754'), - (835, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xAY89qnm', '7432755'), - (835, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xAY89qnm', '7432756'), - (835, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xAY89qnm', '7432758'), - (835, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xAY89qnm', '7432759'), - (835, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xAY89qnm', '7433834'), - (835, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'xAY89qnm', '7470197'), - (835, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xAY89qnm', '7685613'), - (835, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xAY89qnm', '7688194'), - (835, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xAY89qnm', '7688196'), - (835, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xAY89qnm', '7688289'), - (835, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xAY89qnm', '7692763'), - (835, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xAY89qnm', '7697552'), - (835, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xAY89qnm', '7699878'), - (835, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'xAY89qnm', '7704043'), - (835, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'xAY89qnm', '7712467'), - (835, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'xAY89qnm', '7713585'), - (835, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'xAY89qnm', '7713586'), - (835, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xAY89qnm', '7738518'), - (835, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xAY89qnm', '7750636'), - (835, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xAY89qnm', '7796540'), - (835, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xAY89qnm', '7796541'), - (835, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xAY89qnm', '7796542'), - (835, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xAY89qnm', '7825913'), - (835, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xAY89qnm', '7826209'), - (835, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xAY89qnm', '7834742'), - (835, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'xAY89qnm', '7842108'), - (835, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xAY89qnm', '7842902'), - (835, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xAY89qnm', '7842903'), - (835, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xAY89qnm', '7842904'), - (835, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xAY89qnm', '7842905'), - (835, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xAY89qnm', '7855719'), - (835, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xAY89qnm', '7860683'), - (835, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xAY89qnm', '7860684'), - (835, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xAY89qnm', '7866095'), - (835, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xAY89qnm', '7869170'), - (835, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xAY89qnm', '7869188'), - (835, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xAY89qnm', '7869201'), - (835, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xAY89qnm', '7877465'), - (835, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xAY89qnm', '7888250'), - (835, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xAY89qnm', '7904777'), - (835, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xAY89qnm', '8349164'), - (835, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xAY89qnm', '8349545'), - (835, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xAY89qnm', '8368028'), - (835, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'xAY89qnm', '8368029'), - (835, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xAY89qnm', '8388462'), - (835, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xAY89qnm', '8400273'), - (835, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'xAY89qnm', '8400275'), - (835, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'xAY89qnm', '8400276'), - (835, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xAY89qnm', '8404977'), - (835, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xAY89qnm', '8430783'), - (835, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xAY89qnm', '8430784'), - (835, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xAY89qnm', '8430799'), - (835, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xAY89qnm', '8430800'), - (835, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xAY89qnm', '8430801'), - (835, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'xAY89qnm', '8438709'), - (835, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xAY89qnm', '8457738'), - (835, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xAY89qnm', '8459566'), - (835, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xAY89qnm', '8459567'), - (835, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xAY89qnm', '8461032'), - (835, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xAY89qnm', '8477877'), - (835, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xAY89qnm', '8485688'), - (835, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xAY89qnm', '8490587'), - (835, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xAY89qnm', '8493552'), - (835, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xAY89qnm', '8493553'), - (835, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xAY89qnm', '8493554'), - (835, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xAY89qnm', '8493555'), - (835, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xAY89qnm', '8493556'), - (835, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xAY89qnm', '8493557'), - (835, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xAY89qnm', '8493558'), - (835, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xAY89qnm', '8493559'), - (835, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xAY89qnm', '8493560'), - (835, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'xAY89qnm', '8493561'), - (835, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xAY89qnm', '8493572'), - (835, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAY89qnm', '8540725'), - (835, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAY89qnm', '8555421'), - (836, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'NmLq3RgA', '3149489'), - (836, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'NmLq3RgA', '3236450'), - (836, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'NmLq3RgA', '3236452'), - (836, 646, 'not_attending', '2021-05-13 05:48:59', '2025-12-17 19:47:46', 'NmLq3RgA', '3539921'), - (836, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'NmLq3RgA', '3539922'), - (836, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'NmLq3RgA', '3539923'), - (836, 806, 'attending', '2021-05-15 05:17:28', '2025-12-17 19:47:46', 'NmLq3RgA', '3806392'), - (836, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'NmLq3RgA', '3963335'), - (836, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLq3RgA', '3975311'), - (836, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLq3RgA', '3994992'), - (836, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLq3RgA', '6045684'), - (837, 1274, 'not_attending', '2022-04-02 15:58:37', '2025-12-17 19:47:26', 'dKRvyp54', '5186585'), - (837, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dKRvyp54', '5195095'), - (837, 1305, 'maybe', '2022-04-05 19:20:14', '2025-12-17 19:47:27', 'dKRvyp54', '5223673'), - (837, 1306, 'attending', '2022-04-05 16:36:42', '2025-12-17 19:47:26', 'dKRvyp54', '5223682'), - (837, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dKRvyp54', '5223686'), - (837, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dKRvyp54', '5227432'), - (837, 1316, 'attending', '2022-04-14 02:39:47', '2025-12-17 19:47:27', 'dKRvyp54', '5237536'), - (837, 1332, 'attending', '2022-04-14 02:42:38', '2025-12-17 19:47:27', 'dKRvyp54', '5243274'), - (837, 1337, 'attending', '2022-04-18 14:54:20', '2025-12-17 19:47:27', 'dKRvyp54', '5245036'), - (837, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dKRvyp54', '5247467'), - (837, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dKRvyp54', '5260800'), - (837, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dKRvyp54', '5269930'), - (837, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dKRvyp54', '5271448'), - (837, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dKRvyp54', '5271449'), - (837, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dKRvyp54', '5276469'), - (837, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dKRvyp54', '5278159'), - (837, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dKRvyp54', '5363695'), - (837, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dKRvyp54', '5365960'), - (837, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dKRvyp54', '5368973'), - (837, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dKRvyp54', '5378247'), - (837, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dKRvyp54', '5389605'), - (837, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dKRvyp54', '5397265'), - (837, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dKRvyp54', '5403967'), - (837, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dKRvyp54', '5404786'), - (837, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dKRvyp54', '5405203'), - (837, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dKRvyp54', '5408794'), - (837, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dKRvyp54', '5411699'), - (837, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dKRvyp54', '5412550'), - (837, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dKRvyp54', '5415046'), - (837, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dKRvyp54', '5422086'), - (837, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dKRvyp54', '5422406'), - (837, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dKRvyp54', '5424565'), - (837, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dKRvyp54', '5426882'), - (837, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dKRvyp54', '5427083'), - (837, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dKRvyp54', '5441125'), - (837, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dKRvyp54', '5441126'), - (837, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dKRvyp54', '5441128'), - (837, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dKRvyp54', '5446643'), - (837, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dKRvyp54', '5453325'), - (837, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dKRvyp54', '5454516'), - (837, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dKRvyp54', '5454605'), - (837, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dKRvyp54', '5455037'), - (837, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dKRvyp54', '5461278'), - (837, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dKRvyp54', '5469480'), - (837, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dKRvyp54', '5471073'), - (837, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dKRvyp54', '5474663'), - (837, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dKRvyp54', '5482022'), - (837, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dKRvyp54', '5482793'), - (837, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dKRvyp54', '5488912'), - (837, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dKRvyp54', '5492192'), - (837, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dKRvyp54', '5493139'), - (837, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dKRvyp54', '5493200'), - (837, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dKRvyp54', '5502188'), - (837, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dKRvyp54', '5512862'), - (837, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dKRvyp54', '5513985'), - (837, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKRvyp54', '6045684'), - (838, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'lAekNrPd', '3149489'), - (838, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'lAekNrPd', '3149491'), - (838, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'lAekNrPd', '3236450'), - (838, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'lAekNrPd', '3236452'), - (838, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'lAekNrPd', '3236465'), - (838, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'lAekNrPd', '3539918'), - (838, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'lAekNrPd', '3539919'), - (838, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'lAekNrPd', '3539920'), - (838, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'lAekNrPd', '3539921'), - (838, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'lAekNrPd', '3539922'), - (838, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'lAekNrPd', '3539923'), - (838, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'lAekNrPd', '3583262'), - (838, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'lAekNrPd', '3730212'), - (838, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'lAekNrPd', '3793156'), - (838, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'lAekNrPd', '3803310'), - (838, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'lAekNrPd', '3806392'), - (838, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'lAekNrPd', '3963335'), - (838, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'lAekNrPd', '3975311'), - (838, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'lAekNrPd', '3975312'), - (838, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'lAekNrPd', '3994992'), - (838, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'lAekNrPd', '4014338'), - (838, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAekNrPd', '6045684'), - (839, 1856, 'maybe', '2023-01-17 23:45:31', '2025-12-17 19:47:05', 'AY2jJ9W4', '5873970'), - (839, 1857, 'maybe', '2023-01-18 19:27:35', '2025-12-17 19:47:05', 'AY2jJ9W4', '5873973'), - (839, 1862, 'maybe', '2023-01-30 22:14:37', '2025-12-17 19:47:06', 'AY2jJ9W4', '5877254'), - (839, 1863, 'attending', '2023-01-23 23:23:55', '2025-12-17 19:47:06', 'AY2jJ9W4', '5877255'), - (839, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'AY2jJ9W4', '5880939'), - (839, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AY2jJ9W4', '5880940'), - (839, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AY2jJ9W4', '5880942'), - (839, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AY2jJ9W4', '5887890'), - (839, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AY2jJ9W4', '5888598'), - (839, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AY2jJ9W4', '5893260'), - (839, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AY2jJ9W4', '5899826'), - (839, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AY2jJ9W4', '5900199'), - (839, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AY2jJ9W4', '5900200'), - (839, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901055'), - (839, 1894, 'maybe', '2023-02-02 03:20:47', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901100'), - (839, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901108'), - (839, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901126'), - (839, 1901, 'maybe', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901606'), - (839, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AY2jJ9W4', '5909655'), - (839, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AY2jJ9W4', '5910522'), - (839, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AY2jJ9W4', '5910526'), - (839, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AY2jJ9W4', '5910528'), - (839, 1920, 'attending', '2023-02-10 12:35:08', '2025-12-17 19:47:07', 'AY2jJ9W4', '5914091'), - (839, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AY2jJ9W4', '5916219'), - (839, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AY2jJ9W4', '5936234'), - (839, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'AY2jJ9W4', '5936691'), - (839, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AY2jJ9W4', '5958351'), - (839, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AY2jJ9W4', '5959751'), - (839, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AY2jJ9W4', '5959755'), - (839, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AY2jJ9W4', '5960055'), - (839, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AY2jJ9W4', '5961684'), - (839, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'AY2jJ9W4', '5962132'), - (839, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AY2jJ9W4', '5962133'), - (839, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AY2jJ9W4', '5962134'), - (839, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AY2jJ9W4', '5962317'), - (839, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AY2jJ9W4', '5962318'), - (839, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AY2jJ9W4', '6045684'), - (840, 1419, 'attending', '2022-06-06 23:46:45', '2025-12-17 19:47:30', 'AgxWpzq4', '5373081'), - (840, 1423, 'attending', '2022-06-08 18:24:22', '2025-12-17 19:47:17', 'AgxWpzq4', '5375727'), - (840, 1428, 'attending', '2022-06-08 06:24:00', '2025-12-17 19:47:30', 'AgxWpzq4', '5378247'), - (840, 1430, 'attending', '2022-06-08 06:23:53', '2025-12-17 19:47:30', 'AgxWpzq4', '5389402'), - (840, 1431, 'attending', '2022-06-08 06:24:04', '2025-12-17 19:47:30', 'AgxWpzq4', '5389605'), - (840, 1442, 'attending', '2022-06-08 18:24:24', '2025-12-17 19:47:17', 'AgxWpzq4', '5397265'), - (840, 1446, 'attending', '2022-06-08 06:23:50', '2025-12-17 19:47:30', 'AgxWpzq4', '5399721'), - (840, 1448, 'attending', '2022-06-07 02:24:50', '2025-12-17 19:47:30', 'AgxWpzq4', '5401479'), - (840, 1449, 'not_attending', '2022-06-13 22:19:10', '2025-12-17 19:47:31', 'AgxWpzq4', '5403335'), - (840, 1451, 'attending', '2022-06-09 19:05:54', '2025-12-17 19:47:17', 'AgxWpzq4', '5403967'), - (840, 1454, 'not_attending', '2022-06-13 02:27:15', '2025-12-17 19:47:31', 'AgxWpzq4', '5404771'), - (840, 1455, 'not_attending', '2022-06-13 22:18:34', '2025-12-17 19:47:31', 'AgxWpzq4', '5404772'), - (840, 1456, 'attending', '2022-06-13 03:36:44', '2025-12-17 19:47:17', 'AgxWpzq4', '5404779'), - (840, 1457, 'not_attending', '2022-06-12 05:26:35', '2025-12-17 19:47:31', 'AgxWpzq4', '5404780'), - (840, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgxWpzq4', '5404786'), - (840, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgxWpzq4', '5405203'), - (840, 1463, 'attending', '2022-06-13 03:37:59', '2025-12-17 19:47:31', 'AgxWpzq4', '5405208'), - (840, 1464, 'attending', '2022-06-10 21:47:43', '2025-12-17 19:47:30', 'AgxWpzq4', '5405212'), - (840, 1473, 'attending', '2022-06-13 22:19:18', '2025-12-17 19:47:31', 'AgxWpzq4', '5407267'), - (840, 1478, 'not_attending', '2022-06-24 19:34:42', '2025-12-17 19:47:19', 'AgxWpzq4', '5408794'), - (840, 1480, 'attending', '2022-06-20 01:38:48', '2025-12-17 19:47:19', 'AgxWpzq4', '5411699'), - (840, 1481, 'attending', '2022-06-20 01:38:26', '2025-12-17 19:47:17', 'AgxWpzq4', '5412237'), - (840, 1482, 'not_attending', '2022-06-25 22:21:03', '2025-12-17 19:47:19', 'AgxWpzq4', '5412550'), - (840, 1484, 'maybe', '2022-06-22 16:30:32', '2025-12-17 19:47:17', 'AgxWpzq4', '5415046'), - (840, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgxWpzq4', '5422086'), - (840, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgxWpzq4', '5422406'), - (840, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgxWpzq4', '5424565'), - (840, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgxWpzq4', '5426882'), - (840, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgxWpzq4', '5427083'), - (840, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'AgxWpzq4', '5441125'), - (840, 1514, 'attending', '2022-07-21 17:55:44', '2025-12-17 19:47:20', 'AgxWpzq4', '5441126'), - (840, 1515, 'attending', '2022-08-03 18:35:57', '2025-12-17 19:47:21', 'AgxWpzq4', '5441128'), - (840, 1516, 'attending', '2022-08-18 02:13:27', '2025-12-17 19:47:23', 'AgxWpzq4', '5441129'), - (840, 1517, 'attending', '2022-08-23 15:06:25', '2025-12-17 19:47:23', 'AgxWpzq4', '5441130'), - (840, 1518, 'attending', '2022-08-29 00:25:45', '2025-12-17 19:47:24', 'AgxWpzq4', '5441131'), - (840, 1519, 'attending', '2022-08-29 00:26:53', '2025-12-17 19:47:24', 'AgxWpzq4', '5441132'), - (840, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgxWpzq4', '5446643'), - (840, 1538, 'attending', '2022-07-30 19:38:44', '2025-12-17 19:47:21', 'AgxWpzq4', '5449565'), - (840, 1539, 'attending', '2022-07-21 17:56:26', '2025-12-17 19:47:21', 'AgxWpzq4', '5449671'), - (840, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgxWpzq4', '5453325'), - (840, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgxWpzq4', '5454516'), - (840, 1544, 'attending', '2022-09-11 06:48:29', '2025-12-17 19:47:11', 'AgxWpzq4', '5454517'), - (840, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgxWpzq4', '5454605'), - (840, 1547, 'attending', '2022-07-26 21:46:08', '2025-12-17 19:47:20', 'AgxWpzq4', '5454608'), - (840, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgxWpzq4', '5455037'), - (840, 1557, 'attending', '2022-08-03 17:53:58', '2025-12-17 19:47:21', 'AgxWpzq4', '5458729'), - (840, 1558, 'attending', '2022-08-29 00:27:03', '2025-12-17 19:47:10', 'AgxWpzq4', '5458730'), - (840, 1559, 'attending', '2022-09-11 06:48:36', '2025-12-17 19:47:11', 'AgxWpzq4', '5458731'), - (840, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgxWpzq4', '5461278'), - (840, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgxWpzq4', '5469480'), - (840, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgxWpzq4', '5471073'), - (840, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AgxWpzq4', '5474663'), - (840, 1569, 'attending', '2022-08-03 18:35:36', '2025-12-17 19:47:21', 'AgxWpzq4', '5481507'), - (840, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgxWpzq4', '5482022'), - (840, 1573, 'attending', '2022-08-03 18:36:10', '2025-12-17 19:47:22', 'AgxWpzq4', '5482152'), - (840, 1575, 'attending', '2022-08-23 15:06:19', '2025-12-17 19:47:23', 'AgxWpzq4', '5482250'), - (840, 1577, 'attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgxWpzq4', '5482793'), - (840, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgxWpzq4', '5488912'), - (840, 1581, 'attending', '2022-08-11 07:12:38', '2025-12-17 19:47:22', 'AgxWpzq4', '5490302'), - (840, 1586, 'maybe', '2022-08-11 03:28:17', '2025-12-17 19:47:23', 'AgxWpzq4', '5492019'), - (840, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgxWpzq4', '5492192'), - (840, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgxWpzq4', '5493139'), - (840, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgxWpzq4', '5493200'), - (840, 1592, 'attending', '2022-08-09 02:32:20', '2025-12-17 19:47:22', 'AgxWpzq4', '5494031'), - (840, 1595, 'attending', '2022-08-12 19:32:17', '2025-12-17 19:47:22', 'AgxWpzq4', '5495736'), - (840, 1597, 'attending', '2022-08-13 20:56:38', '2025-12-17 19:47:22', 'AgxWpzq4', '5496566'), - (840, 1603, 'attending', '2022-08-12 03:28:51', '2025-12-17 19:47:23', 'AgxWpzq4', '5497895'), - (840, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgxWpzq4', '5502188'), - (840, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AgxWpzq4', '5505059'), - (840, 1612, 'maybe', '2022-09-20 23:26:42', '2025-12-17 19:47:12', 'AgxWpzq4', '5507653'), - (840, 1615, 'attending', '2022-08-29 00:25:09', '2025-12-17 19:47:23', 'AgxWpzq4', '5509055'), - (840, 1617, 'attending', '2022-08-29 00:26:51', '2025-12-17 19:47:24', 'AgxWpzq4', '5512003'), - (840, 1618, 'attending', '2022-08-28 06:49:04', '2025-12-17 19:47:23', 'AgxWpzq4', '5512005'), - (840, 1619, 'attending', '2022-08-23 07:08:34', '2025-12-17 19:47:23', 'AgxWpzq4', '5512862'), - (840, 1620, 'attending', '2022-08-23 15:05:53', '2025-12-17 19:47:23', 'AgxWpzq4', '5513046'), - (840, 1621, 'not_attending', '2022-08-23 15:05:24', '2025-12-17 19:47:23', 'AgxWpzq4', '5513531'), - (840, 1623, 'attending', '2022-08-23 15:06:16', '2025-12-17 19:47:23', 'AgxWpzq4', '5513678'), - (840, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgxWpzq4', '5513985'), - (840, 1626, 'attending', '2022-08-26 18:44:43', '2025-12-17 19:47:11', 'AgxWpzq4', '5519981'), - (840, 1627, 'attending', '2022-08-28 04:09:35', '2025-12-17 19:47:24', 'AgxWpzq4', '5521552'), - (840, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AgxWpzq4', '5522550'), - (840, 1630, 'attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AgxWpzq4', '5534683'), - (840, 1635, 'attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AgxWpzq4', '5537735'), - (840, 1636, 'attending', '2022-09-04 19:03:05', '2025-12-17 19:47:24', 'AgxWpzq4', '5538454'), - (840, 1637, 'not_attending', '2022-09-06 20:44:27', '2025-12-17 19:47:24', 'AgxWpzq4', '5539591'), - (840, 1640, 'attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AgxWpzq4', '5540859'), - (840, 1642, 'attending', '2022-09-10 16:14:01', '2025-12-17 19:47:24', 'AgxWpzq4', '5544227'), - (840, 1645, 'attending', '2022-09-09 20:46:20', '2025-12-17 19:47:25', 'AgxWpzq4', '5546559'), - (840, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AgxWpzq4', '5546619'), - (840, 1647, 'attending', '2022-09-12 14:22:44', '2025-12-17 19:47:11', 'AgxWpzq4', '5548660'), - (840, 1648, 'attending', '2022-09-09 21:07:05', '2025-12-17 19:47:24', 'AgxWpzq4', '5548974'), - (840, 1650, 'attending', '2022-09-04 19:01:59', '2025-12-17 19:47:24', 'AgxWpzq4', '5549611'), - (840, 1652, 'attending', '2022-09-10 16:14:06', '2025-12-17 19:47:24', 'AgxWpzq4', '5552671'), - (840, 1653, 'attending', '2022-09-15 06:41:15', '2025-12-17 19:47:11', 'AgxWpzq4', '5554400'), - (840, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AgxWpzq4', '5555245'), - (840, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AgxWpzq4', '5557747'), - (840, 1661, 'not_attending', '2022-09-09 00:19:23', '2025-12-17 19:47:24', 'AgxWpzq4', '5560254'), - (840, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AgxWpzq4', '5560255'), - (840, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AgxWpzq4', '5562906'), - (840, 1665, 'attending', '2022-09-12 14:21:52', '2025-12-17 19:47:25', 'AgxWpzq4', '5563133'), - (840, 1666, 'attending', '2022-09-27 04:15:17', '2025-12-17 19:47:11', 'AgxWpzq4', '5563208'), - (840, 1667, 'attending', '2022-09-11 06:48:17', '2025-12-17 19:47:11', 'AgxWpzq4', '5563221'), - (840, 1668, 'attending', '2022-09-11 06:48:26', '2025-12-17 19:47:12', 'AgxWpzq4', '5563222'), - (840, 1670, 'attending', '2022-09-15 06:38:33', '2025-12-17 19:47:11', 'AgxWpzq4', '5575076'), - (840, 1671, 'not_attending', '2022-09-15 19:59:06', '2025-12-17 19:47:10', 'AgxWpzq4', '5585041'), - (840, 1672, 'attending', '2022-09-17 20:00:04', '2025-12-17 19:47:11', 'AgxWpzq4', '5586237'), - (840, 1673, 'attending', '2022-09-24 17:14:21', '2025-12-17 19:47:11', 'AgxWpzq4', '5592454'), - (840, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AgxWpzq4', '5600604'), - (840, 1679, 'maybe', '2022-10-03 22:16:07', '2025-12-17 19:47:12', 'AgxWpzq4', '5601099'), - (840, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AgxWpzq4', '5605544'), - (840, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'AgxWpzq4', '5606737'), - (840, 1703, 'attending', '2022-09-30 18:01:00', '2025-12-17 19:47:12', 'AgxWpzq4', '5609176'), - (840, 1708, 'maybe', '2022-10-03 22:16:11', '2025-12-17 19:47:12', 'AgxWpzq4', '5617648'), - (840, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', 'AgxWpzq4', '5630907'), - (840, 1719, 'attending', '2022-10-08 15:36:36', '2025-12-17 19:47:12', 'AgxWpzq4', '5630958'), - (840, 1720, 'attending', '2022-10-15 21:46:46', '2025-12-17 19:47:12', 'AgxWpzq4', '5630959'), - (840, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AgxWpzq4', '5630960'), - (840, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AgxWpzq4', '5630961'), - (840, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AgxWpzq4', '5630962'), - (840, 1724, 'attending', '2022-11-04 19:09:50', '2025-12-17 19:47:15', 'AgxWpzq4', '5630966'), - (840, 1725, 'attending', '2022-11-04 19:09:54', '2025-12-17 19:47:16', 'AgxWpzq4', '5630967'), - (840, 1726, 'not_attending', '2022-11-04 19:09:55', '2025-12-17 19:47:16', 'AgxWpzq4', '5630968'), - (840, 1727, 'attending', '2022-11-04 19:09:57', '2025-12-17 19:47:16', 'AgxWpzq4', '5630969'), - (840, 1728, 'attending', '2022-12-11 20:47:15', '2025-12-17 19:47:17', 'AgxWpzq4', '5630970'), - (840, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AgxWpzq4', '5635406'), - (840, 1737, 'attending', '2022-11-30 06:52:46', '2025-12-17 19:47:16', 'AgxWpzq4', '5638457'), - (840, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AgxWpzq4', '5638765'), - (840, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AgxWpzq4', '5640097'), - (840, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AgxWpzq4', '5640843'), - (840, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AgxWpzq4', '5641521'), - (840, 1744, 'attending', '2022-11-23 09:28:39', '2025-12-17 19:47:16', 'AgxWpzq4', '5642818'), - (840, 1750, 'attending', '2022-11-02 09:05:31', '2025-12-17 19:47:15', 'AgxWpzq4', '5652365'), - (840, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AgxWpzq4', '5652395'), - (840, 1753, 'attending', '2022-10-19 01:07:34', '2025-12-17 19:47:13', 'AgxWpzq4', '5656228'), - (840, 1759, 'attending', '2022-10-22 21:27:20', '2025-12-17 19:47:13', 'AgxWpzq4', '5669097'), - (840, 1761, 'attending', '2022-11-17 08:10:30', '2025-12-17 19:47:16', 'AgxWpzq4', '5670434'), - (840, 1762, 'attending', '2022-11-02 01:54:28', '2025-12-17 19:47:16', 'AgxWpzq4', '5670445'), - (840, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AgxWpzq4', '5671637'), - (840, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AgxWpzq4', '5672329'), - (840, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AgxWpzq4', '5674057'), - (840, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AgxWpzq4', '5674060'), - (840, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'AgxWpzq4', '5677461'), - (840, 1774, 'attending', '2022-10-29 11:34:26', '2025-12-17 19:47:15', 'AgxWpzq4', '5677843'), - (840, 1776, 'attending', '2022-11-08 05:33:38', '2025-12-17 19:47:15', 'AgxWpzq4', '5691067'), - (840, 1777, 'attending', '2022-11-01 19:04:19', '2025-12-17 19:47:15', 'AgxWpzq4', '5693021'), - (840, 1779, 'attending', '2022-11-04 19:09:42', '2025-12-17 19:47:15', 'AgxWpzq4', '5694252'), - (840, 1781, 'attending', '2022-11-02 04:46:19', '2025-12-17 19:47:15', 'AgxWpzq4', '5696178'), - (840, 1782, 'attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AgxWpzq4', '5698046'), - (840, 1783, 'attending', '2022-11-03 19:28:46', '2025-12-17 19:47:16', 'AgxWpzq4', '5698621'), - (840, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'AgxWpzq4', '5699760'), - (840, 1785, 'maybe', '2022-11-05 22:44:05', '2025-12-17 19:47:15', 'AgxWpzq4', '5702414'), - (840, 1786, 'attending', '2022-11-07 00:56:59', '2025-12-17 19:47:15', 'AgxWpzq4', '5727232'), - (840, 1791, 'attending', '2022-11-07 18:13:04', '2025-12-17 19:47:15', 'AgxWpzq4', '5728511'), - (840, 1792, 'attending', '2022-11-07 18:13:19', '2025-12-17 19:47:15', 'AgxWpzq4', '5728512'), - (840, 1793, 'attending', '2022-11-26 00:11:11', '2025-12-17 19:47:16', 'AgxWpzq4', '5736365'), - (840, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AgxWpzq4', '5741601'), - (840, 1796, 'attending', '2022-11-18 02:45:27', '2025-12-17 19:47:16', 'AgxWpzq4', '5756755'), - (840, 1797, 'attending', '2022-12-10 00:18:54', '2025-12-17 19:47:17', 'AgxWpzq4', '5757486'), - (840, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AgxWpzq4', '5763458'), - (840, 1800, 'attending', '2022-11-19 22:42:22', '2025-12-17 19:47:16', 'AgxWpzq4', '5764667'), - (840, 1802, 'attending', '2022-12-10 23:59:54', '2025-12-17 19:47:17', 'AgxWpzq4', '5764669'), - (840, 1804, 'attending', '2023-01-13 09:29:28', '2025-12-17 19:47:06', 'AgxWpzq4', '5764674'), - (840, 1805, 'attending', '2023-01-13 09:29:30', '2025-12-17 19:47:06', 'AgxWpzq4', '5764675'), - (840, 1806, 'attending', '2023-01-13 09:29:27', '2025-12-17 19:47:05', 'AgxWpzq4', '5764676'), - (840, 1807, 'attending', '2023-01-13 09:29:25', '2025-12-17 19:47:05', 'AgxWpzq4', '5764677'), - (840, 1808, 'attending', '2023-02-26 06:52:52', '2025-12-17 19:47:08', 'AgxWpzq4', '5764678'), - (840, 1810, 'attending', '2023-04-22 16:52:54', '2025-12-17 19:47:00', 'AgxWpzq4', '5764680'), - (840, 1812, 'attending', '2023-02-26 06:52:57', '2025-12-17 19:47:09', 'AgxWpzq4', '5764682'), - (840, 1813, 'attending', '2023-04-23 06:12:56', '2025-12-17 19:47:01', 'AgxWpzq4', '5764683'), - (840, 1814, 'attending', '2023-02-24 08:52:55', '2025-12-17 19:47:08', 'AgxWpzq4', '5764684'), - (840, 1815, 'attending', '2023-02-18 07:47:08', '2025-12-17 19:47:07', 'AgxWpzq4', '5764685'), - (840, 1817, 'attending', '2023-02-26 06:53:18', '2025-12-17 19:46:57', 'AgxWpzq4', '5764687'), - (840, 1819, 'attending', '2023-02-26 06:53:32', '2025-12-17 19:46:58', 'AgxWpzq4', '5764689'), - (840, 1820, 'attending', '2023-02-26 06:53:34', '2025-12-17 19:46:58', 'AgxWpzq4', '5764690'), - (840, 1821, 'attending', '2023-02-26 06:53:14', '2025-12-17 19:46:56', 'AgxWpzq4', '5764691'), - (840, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AgxWpzq4', '5774172'), - (840, 1825, 'attending', '2022-12-08 21:50:52', '2025-12-17 19:47:16', 'AgxWpzq4', '5776760'), - (840, 1828, 'maybe', '2022-12-01 18:45:41', '2025-12-17 19:47:16', 'AgxWpzq4', '5778865'), - (840, 1832, 'attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'AgxWpzq4', '5818247'), - (840, 1833, 'attending', '2022-12-05 04:48:50', '2025-12-17 19:47:16', 'AgxWpzq4', '5819465'), - (840, 1834, 'attending', '2022-12-05 20:42:49', '2025-12-17 19:47:17', 'AgxWpzq4', '5819470'), - (840, 1835, 'attending', '2022-12-05 20:42:56', '2025-12-17 19:47:05', 'AgxWpzq4', '5819471'), - (840, 1837, 'attending', '2022-12-07 03:16:02', '2025-12-17 19:47:16', 'AgxWpzq4', '5820146'), - (840, 1841, 'attending', '2023-01-02 21:09:02', '2025-12-17 19:47:05', 'AgxWpzq4', '5827665'), - (840, 1842, 'attending', '2022-12-22 22:04:37', '2025-12-17 19:47:04', 'AgxWpzq4', '5827739'), - (840, 1843, 'attending', '2022-12-17 23:30:28', '2025-12-17 19:47:04', 'AgxWpzq4', '5844304'), - (840, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AgxWpzq4', '5844306'), - (840, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AgxWpzq4', '5850159'), - (840, 1849, 'attending', '2023-01-04 04:27:15', '2025-12-17 19:47:05', 'AgxWpzq4', '5852467'), - (840, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AgxWpzq4', '5858999'), - (840, 1851, 'not_attending', '2023-01-08 22:12:45', '2025-12-17 19:47:05', 'AgxWpzq4', '5869316'), - (840, 1852, 'attending', '2023-01-11 10:40:54', '2025-12-17 19:47:05', 'AgxWpzq4', '5869898'), - (840, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AgxWpzq4', '5871984'), - (840, 1855, 'attending', '2023-01-13 09:29:20', '2025-12-17 19:47:05', 'AgxWpzq4', '5873968'), - (840, 1856, 'not_attending', '2023-01-13 09:29:16', '2025-12-17 19:47:05', 'AgxWpzq4', '5873970'), - (840, 1857, 'attending', '2023-01-13 09:29:18', '2025-12-17 19:47:05', 'AgxWpzq4', '5873973'), - (840, 1859, 'attending', '2023-01-13 09:29:34', '2025-12-17 19:47:05', 'AgxWpzq4', '5876234'), - (840, 1861, 'attending', '2023-01-19 00:21:35', '2025-12-17 19:47:05', 'AgxWpzq4', '5876354'), - (840, 1863, 'attending', '2023-01-14 21:27:54', '2025-12-17 19:47:06', 'AgxWpzq4', '5877255'), - (840, 1864, 'attending', '2023-01-19 04:49:08', '2025-12-17 19:47:05', 'AgxWpzq4', '5879675'), - (840, 1865, 'attending', '2023-01-19 04:49:10', '2025-12-17 19:47:06', 'AgxWpzq4', '5879676'), - (840, 1866, 'attending', '2023-01-17 03:43:23', '2025-12-17 19:47:05', 'AgxWpzq4', '5880939'), - (840, 1867, 'attending', '2023-01-17 03:43:28', '2025-12-17 19:47:07', 'AgxWpzq4', '5880940'), - (840, 1868, 'attending', '2023-01-17 03:43:39', '2025-12-17 19:47:07', 'AgxWpzq4', '5880942'), - (840, 1869, 'attending', '2023-01-17 03:43:42', '2025-12-17 19:47:09', 'AgxWpzq4', '5880943'), - (840, 1872, 'attending', '2023-01-19 04:48:58', '2025-12-17 19:47:05', 'AgxWpzq4', '5883546'), - (840, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AgxWpzq4', '5887890'), - (840, 1875, 'attending', '2023-01-23 11:12:35', '2025-12-17 19:47:06', 'AgxWpzq4', '5887908'), - (840, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AgxWpzq4', '5888598'), - (840, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AgxWpzq4', '5893260'), - (840, 1881, 'attending', '2023-02-06 08:52:33', '2025-12-17 19:47:07', 'AgxWpzq4', '5894218'), - (840, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AgxWpzq4', '5899826'), - (840, 1885, 'attending', '2023-02-24 02:21:04', '2025-12-17 19:47:08', 'AgxWpzq4', '5899928'), - (840, 1886, 'attending', '2023-03-06 04:55:46', '2025-12-17 19:47:09', 'AgxWpzq4', '5899930'), - (840, 1888, 'attending', '2023-02-13 19:33:07', '2025-12-17 19:47:07', 'AgxWpzq4', '5900197'), - (840, 1889, 'attending', '2023-02-09 00:20:33', '2025-12-17 19:47:07', 'AgxWpzq4', '5900199'), - (840, 1890, 'attending', '2023-02-21 11:17:01', '2025-12-17 19:47:08', 'AgxWpzq4', '5900200'), - (840, 1891, 'attending', '2023-02-26 06:53:36', '2025-12-17 19:46:56', 'AgxWpzq4', '5900202'), - (840, 1892, 'attending', '2023-03-16 21:50:54', '2025-12-17 19:46:56', 'AgxWpzq4', '5900203'), - (840, 1895, 'attending', '2023-01-31 22:03:10', '2025-12-17 19:47:06', 'AgxWpzq4', '5901108'), - (840, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AgxWpzq4', '5901126'), - (840, 1897, 'attending', '2023-02-10 18:31:42', '2025-12-17 19:47:07', 'AgxWpzq4', '5901128'), - (840, 1898, 'attending', '2023-01-31 23:55:49', '2025-12-17 19:47:06', 'AgxWpzq4', '5901263'), - (840, 1899, 'attending', '2023-02-05 06:37:15', '2025-12-17 19:47:07', 'AgxWpzq4', '5901323'), - (840, 1902, 'attending', '2023-02-01 19:54:02', '2025-12-17 19:47:06', 'AgxWpzq4', '5902254'), - (840, 1906, 'attending', '2023-02-25 20:59:07', '2025-12-17 19:47:09', 'AgxWpzq4', '5904523'), - (840, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AgxWpzq4', '5909655'), - (840, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AgxWpzq4', '5910522'), - (840, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AgxWpzq4', '5910526'), - (840, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AgxWpzq4', '5910528'), - (840, 1920, 'attending', '2023-02-12 19:25:17', '2025-12-17 19:47:07', 'AgxWpzq4', '5914091'), - (840, 1922, 'attending', '2023-02-12 02:48:06', '2025-12-17 19:47:07', 'AgxWpzq4', '5916219'), - (840, 1923, 'attending', '2023-02-16 05:27:32', '2025-12-17 19:47:07', 'AgxWpzq4', '5930436'), - (840, 1930, 'maybe', '2023-02-24 04:01:00', '2025-12-17 19:47:08', 'AgxWpzq4', '5933462'), - (840, 1931, 'attending', '2023-02-24 04:01:02', '2025-12-17 19:47:08', 'AgxWpzq4', '5933464'), - (840, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AgxWpzq4', '5936234'), - (840, 1934, 'attending', '2023-02-20 19:06:51', '2025-12-17 19:47:08', 'AgxWpzq4', '5936691'), - (840, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AgxWpzq4', '5958351'), - (840, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AgxWpzq4', '5959751'), - (840, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AgxWpzq4', '5959755'), - (840, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AgxWpzq4', '5960055'), - (840, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AgxWpzq4', '5961684'), - (840, 1943, 'attending', '2023-03-14 18:35:42', '2025-12-17 19:47:10', 'AgxWpzq4', '5962091'), - (840, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'AgxWpzq4', '5962132'), - (840, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'AgxWpzq4', '5962133'), - (840, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AgxWpzq4', '5962134'), - (840, 1947, 'attending', '2023-02-26 00:00:13', '2025-12-17 19:47:09', 'AgxWpzq4', '5962233'), - (840, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AgxWpzq4', '5962317'), - (840, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AgxWpzq4', '5962318'), - (840, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'AgxWpzq4', '5965933'), - (840, 1953, 'attending', '2023-03-05 05:18:38', '2025-12-17 19:47:09', 'AgxWpzq4', '5966307'), - (840, 1954, 'attending', '2023-03-03 03:03:16', '2025-12-17 19:47:08', 'AgxWpzq4', '5967014'), - (840, 1955, 'attending', '2023-03-29 11:30:35', '2025-12-17 19:46:57', 'AgxWpzq4', '5972529'), - (840, 1956, 'attending', '2023-03-06 04:28:44', '2025-12-17 19:47:09', 'AgxWpzq4', '5972763'), - (840, 1957, 'attending', '2023-03-06 05:38:29', '2025-12-17 19:47:10', 'AgxWpzq4', '5972815'), - (840, 1959, 'attending', '2023-03-13 05:12:17', '2025-12-17 19:46:57', 'AgxWpzq4', '5972829'), - (840, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AgxWpzq4', '5974016'), - (840, 1964, 'attending', '2023-03-08 23:51:15', '2025-12-17 19:47:09', 'AgxWpzq4', '5977129'), - (840, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AgxWpzq4', '5981515'), - (840, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AgxWpzq4', '5993516'), - (840, 1972, 'attending', '2023-03-13 05:09:13', '2025-12-17 19:46:56', 'AgxWpzq4', '5993776'), - (840, 1973, 'attending', '2023-03-13 05:09:10', '2025-12-17 19:46:56', 'AgxWpzq4', '5993777'), - (840, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AgxWpzq4', '5998939'), - (840, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AgxWpzq4', '6028191'), - (840, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AgxWpzq4', '6040066'), - (840, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AgxWpzq4', '6042717'), - (840, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AgxWpzq4', '6044838'), - (840, 1987, 'maybe', '2023-04-16 23:16:19', '2025-12-17 19:47:00', 'AgxWpzq4', '6044839'), - (840, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxWpzq4', '6045684'), - (840, 1991, 'maybe', '2023-04-01 14:26:30', '2025-12-17 19:46:58', 'AgxWpzq4', '6047354'), - (840, 1992, 'attending', '2023-04-01 14:26:19', '2025-12-17 19:46:58', 'AgxWpzq4', '6048742'), - (840, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AgxWpzq4', '6050104'), - (840, 2001, 'attending', '2023-04-04 20:10:13', '2025-12-17 19:46:58', 'AgxWpzq4', '6052569'), - (840, 2002, 'attending', '2023-04-28 12:01:14', '2025-12-17 19:47:01', 'AgxWpzq4', '6052605'), - (840, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AgxWpzq4', '6053195'), - (840, 2006, 'attending', '2023-04-07 22:30:52', '2025-12-17 19:46:59', 'AgxWpzq4', '6053198'), - (840, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'AgxWpzq4', '6056085'), - (840, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AgxWpzq4', '6056916'), - (840, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AgxWpzq4', '6059290'), - (840, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AgxWpzq4', '6060328'), - (840, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AgxWpzq4', '6061037'), - (840, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AgxWpzq4', '6061039'), - (840, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'AgxWpzq4', '6061099'), - (840, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AgxWpzq4', '6067245'), - (840, 2025, 'attending', '2023-04-23 06:13:00', '2025-12-17 19:47:00', 'AgxWpzq4', '6067457'), - (840, 2026, 'attending', '2023-04-17 23:57:01', '2025-12-17 19:47:01', 'AgxWpzq4', '6068078'), - (840, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AgxWpzq4', '6068094'), - (840, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AgxWpzq4', '6068252'), - (840, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AgxWpzq4', '6068253'), - (840, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AgxWpzq4', '6068254'), - (840, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AgxWpzq4', '6068280'), - (840, 2032, 'attending', '2023-05-31 22:29:27', '2025-12-17 19:47:04', 'AgxWpzq4', '6068281'), - (840, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AgxWpzq4', '6069093'), - (840, 2039, 'attending', '2023-04-23 21:09:23', '2025-12-17 19:47:01', 'AgxWpzq4', '6072398'), - (840, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'AgxWpzq4', '6072528'), - (840, 2043, 'attending', '2023-04-25 18:45:16', '2025-12-17 19:47:01', 'AgxWpzq4', '6073023'), - (840, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', 'AgxWpzq4', '6073678'), - (840, 2046, 'attending', '2023-05-10 04:05:34', '2025-12-17 19:47:02', 'AgxWpzq4', '6076020'), - (840, 2048, 'attending', '2023-04-30 19:00:20', '2025-12-17 19:47:03', 'AgxWpzq4', '6076415'), - (840, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AgxWpzq4', '6079840'), - (840, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AgxWpzq4', '6083398'), - (840, 2052, 'attending', '2023-05-05 16:16:38', '2025-12-17 19:47:02', 'AgxWpzq4', '6088220'), - (840, 2053, 'attending', '2023-05-09 01:59:53', '2025-12-17 19:47:02', 'AgxWpzq4', '6092644'), - (840, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AgxWpzq4', '6093504'), - (840, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AgxWpzq4', '6097414'), - (840, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AgxWpzq4', '6097442'), - (840, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AgxWpzq4', '6097684'), - (840, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AgxWpzq4', '6098762'), - (840, 2064, 'attending', '2023-06-02 17:57:25', '2025-12-17 19:46:50', 'AgxWpzq4', '6099988'), - (840, 2065, 'attending', '2023-06-02 17:57:22', '2025-12-17 19:46:49', 'AgxWpzq4', '6101169'), - (840, 2066, 'attending', '2023-06-02 17:57:16', '2025-12-17 19:47:04', 'AgxWpzq4', '6101361'), - (840, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AgxWpzq4', '6101362'), - (840, 2070, 'attending', '2023-05-15 18:25:32', '2025-12-17 19:47:03', 'AgxWpzq4', '6103752'), - (840, 2074, 'attending', '2023-05-18 17:18:50', '2025-12-17 19:47:03', 'AgxWpzq4', '6107312'), - (840, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AgxWpzq4', '6107314'), - (840, 2077, 'attending', '2023-06-17 14:43:05', '2025-12-17 19:46:49', 'AgxWpzq4', '6110217'), - (840, 2084, 'maybe', '2023-05-27 01:55:10', '2025-12-17 19:47:04', 'AgxWpzq4', '6117127'), - (840, 2086, 'attending', '2023-05-26 18:00:53', '2025-12-17 19:47:04', 'AgxWpzq4', '6119877'), - (840, 2087, 'attending', '2023-05-26 22:01:36', '2025-12-17 19:47:04', 'AgxWpzq4', '6120034'), - (840, 2091, 'maybe', '2023-06-02 17:57:07', '2025-12-17 19:47:04', 'AgxWpzq4', '6130657'), - (840, 2092, 'attending', '2023-06-03 20:51:10', '2025-12-17 19:47:04', 'AgxWpzq4', '6132543'), - (840, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'AgxWpzq4', '6135924'), - (840, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AgxWpzq4', '6136733'), - (840, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AgxWpzq4', '6137989'), - (840, 2104, 'attending', '2023-06-19 03:13:40', '2025-12-17 19:46:50', 'AgxWpzq4', '6149499'), - (840, 2105, 'attending', '2023-06-17 06:17:57', '2025-12-17 19:46:50', 'AgxWpzq4', '6149551'), - (840, 2106, 'maybe', '2023-06-19 16:28:15', '2025-12-17 19:46:50', 'AgxWpzq4', '6150479'), - (840, 2107, 'maybe', '2023-06-19 16:28:21', '2025-12-17 19:46:50', 'AgxWpzq4', '6150480'), - (840, 2108, 'attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AgxWpzq4', '6150864'), - (840, 2110, 'attending', '2023-06-20 17:43:22', '2025-12-17 19:46:50', 'AgxWpzq4', '6155491'), - (840, 2112, 'not_attending', '2023-06-21 16:26:36', '2025-12-17 19:46:50', 'AgxWpzq4', '6156213'), - (840, 2114, 'maybe', '2023-06-24 21:55:35', '2025-12-17 19:46:50', 'AgxWpzq4', '6158648'), - (840, 2118, 'attending', '2023-06-25 17:30:37', '2025-12-17 19:46:50', 'AgxWpzq4', '6164417'), - (840, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AgxWpzq4', '6166388'), - (840, 2121, 'attending', '2023-06-27 20:11:26', '2025-12-17 19:46:50', 'AgxWpzq4', '6176439'), - (840, 2125, 'attending', '2023-06-29 19:29:06', '2025-12-17 19:46:51', 'AgxWpzq4', '6177485'), - (840, 2127, 'attending', '2023-07-01 18:42:09', '2025-12-17 19:46:50', 'AgxWpzq4', '6180853'), - (840, 2128, 'maybe', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AgxWpzq4', '6182410'), - (840, 2129, 'not_attending', '2023-07-05 22:47:06', '2025-12-17 19:46:51', 'AgxWpzq4', '6182825'), - (840, 2131, 'attending', '2023-07-05 17:28:13', '2025-12-17 19:46:51', 'AgxWpzq4', '6185812'), - (840, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AgxWpzq4', '6187651'), - (840, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AgxWpzq4', '6187963'), - (840, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AgxWpzq4', '6187964'), - (840, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AgxWpzq4', '6187966'), - (840, 2137, 'maybe', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AgxWpzq4', '6187967'), - (840, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AgxWpzq4', '6187969'), - (840, 2142, 'attending', '2023-07-07 22:14:12', '2025-12-17 19:46:52', 'AgxWpzq4', '6333850'), - (840, 2143, 'attending', '2023-07-08 17:16:10', '2025-12-17 19:46:51', 'AgxWpzq4', '6334348'), - (840, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AgxWpzq4', '6334878'), - (840, 2145, 'attending', '2023-07-10 08:07:01', '2025-12-17 19:46:52', 'AgxWpzq4', '6334903'), - (840, 2146, 'attending', '2023-07-18 02:37:09', '2025-12-17 19:46:53', 'AgxWpzq4', '6335638'), - (840, 2149, 'attending', '2023-07-09 22:37:17', '2025-12-17 19:46:53', 'AgxWpzq4', '6335682'), - (840, 2152, 'attending', '2023-07-11 02:18:01', '2025-12-17 19:46:52', 'AgxWpzq4', '6337021'), - (840, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AgxWpzq4', '6337236'), - (840, 2155, 'attending', '2023-07-12 20:20:12', '2025-12-17 19:46:53', 'AgxWpzq4', '6337970'), - (840, 2156, 'attending', '2023-07-12 21:21:34', '2025-12-17 19:46:52', 'AgxWpzq4', '6338308'), - (840, 2158, 'attending', '2023-07-17 20:01:03', '2025-12-17 19:46:53', 'AgxWpzq4', '6338353'), - (840, 2159, 'attending', '2023-07-15 05:52:41', '2025-12-17 19:46:53', 'AgxWpzq4', '6338355'), - (840, 2160, 'attending', '2023-07-15 05:52:42', '2025-12-17 19:46:54', 'AgxWpzq4', '6338358'), - (840, 2161, 'attending', '2023-07-15 19:11:39', '2025-12-17 19:46:52', 'AgxWpzq4', '6340748'), - (840, 2162, 'attending', '2023-07-16 06:33:07', '2025-12-17 19:46:53', 'AgxWpzq4', '6340845'), - (840, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AgxWpzq4', '6341710'), - (840, 2165, 'attending', '2023-07-20 19:13:28', '2025-12-17 19:46:54', 'AgxWpzq4', '6342044'), - (840, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AgxWpzq4', '6342298'), - (840, 2172, 'attending', '2023-07-18 02:39:07', '2025-12-17 19:46:53', 'AgxWpzq4', '6342591'), - (840, 2174, 'maybe', '2023-07-23 07:08:14', '2025-12-17 19:46:53', 'AgxWpzq4', '6343294'), - (840, 2175, 'attending', '2023-07-22 18:59:04', '2025-12-17 19:46:53', 'AgxWpzq4', '6346982'), - (840, 2176, 'maybe', '2023-07-23 07:08:15', '2025-12-17 19:46:54', 'AgxWpzq4', '6347034'), - (840, 2177, 'not_attending', '2023-08-06 05:55:23', '2025-12-17 19:46:55', 'AgxWpzq4', '6347053'), - (840, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AgxWpzq4', '6347056'), - (840, 2183, 'attending', '2023-07-28 18:36:05', '2025-12-17 19:46:54', 'AgxWpzq4', '6353008'), - (840, 2184, 'attending', '2023-07-29 20:37:39', '2025-12-17 19:46:54', 'AgxWpzq4', '6353825'), - (840, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AgxWpzq4', '6353830'), - (840, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AgxWpzq4', '6353831'), - (840, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AgxWpzq4', '6357867'), - (840, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AgxWpzq4', '6358652'), - (840, 2192, 'attending', '2023-08-04 04:31:50', '2025-12-17 19:46:54', 'AgxWpzq4', '6358666'), - (840, 2199, 'attending', '2023-08-09 16:55:57', '2025-12-17 19:46:55', 'AgxWpzq4', '6359849'), - (840, 2200, 'attending', '2023-08-06 05:54:58', '2025-12-17 19:46:55', 'AgxWpzq4', '6359850'), - (840, 2203, 'attending', '2023-08-07 20:14:49', '2025-12-17 19:46:55', 'AgxWpzq4', '6361524'), - (840, 2204, 'attending', '2023-08-09 16:56:15', '2025-12-17 19:46:55', 'AgxWpzq4', '6361542'), - (840, 2208, 'attending', '2023-08-09 14:38:38', '2025-12-17 19:46:54', 'AgxWpzq4', '6361709'), - (840, 2209, 'attending', '2023-08-09 16:56:00', '2025-12-17 19:46:55', 'AgxWpzq4', '6361710'), - (840, 2210, 'attending', '2023-08-09 16:56:01', '2025-12-17 19:46:55', 'AgxWpzq4', '6361711'), - (840, 2211, 'attending', '2023-08-09 16:56:06', '2025-12-17 19:46:55', 'AgxWpzq4', '6361712'), - (840, 2212, 'attending', '2023-09-09 21:07:04', '2025-12-17 19:46:45', 'AgxWpzq4', '6361713'), - (840, 2216, 'attending', '2023-08-11 16:04:44', '2025-12-17 19:46:55', 'AgxWpzq4', '6364123'), - (840, 2217, 'attending', '2023-08-13 04:49:45', '2025-12-17 19:46:55', 'AgxWpzq4', '6364333'), - (840, 2226, 'attending', '2023-08-17 23:18:46', '2025-12-17 19:46:55', 'AgxWpzq4', '6370006'), - (840, 2228, 'attending', '2023-08-19 20:04:44', '2025-12-17 19:46:55', 'AgxWpzq4', '6372777'), - (840, 2231, 'attending', '2023-08-21 17:45:41', '2025-12-17 19:46:55', 'AgxWpzq4', '6374748'), - (840, 2232, 'attending', '2023-08-25 15:05:24', '2025-12-17 19:46:55', 'AgxWpzq4', '6374818'), - (840, 2234, 'attending', '2023-08-26 19:38:33', '2025-12-17 19:46:56', 'AgxWpzq4', '6382559'), - (840, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'AgxWpzq4', '6382573'), - (840, 2236, 'attending', '2023-08-27 06:20:05', '2025-12-17 19:46:55', 'AgxWpzq4', '6382618'), - (840, 2237, 'attending', '2023-08-26 20:09:01', '2025-12-17 19:46:55', 'AgxWpzq4', '6383149'), - (840, 2239, 'attending', '2023-09-01 20:05:27', '2025-12-17 19:46:56', 'AgxWpzq4', '6387592'), - (840, 2240, 'attending', '2023-09-07 20:07:15', '2025-12-17 19:46:56', 'AgxWpzq4', '6388603'), - (840, 2241, 'attending', '2023-09-07 20:07:13', '2025-12-17 19:46:44', 'AgxWpzq4', '6388604'), - (840, 2242, 'attending', '2023-09-07 20:07:10', '2025-12-17 19:46:45', 'AgxWpzq4', '6388606'), - (840, 2244, 'attending', '2023-09-05 16:49:14', '2025-12-17 19:46:44', 'AgxWpzq4', '6393700'), - (840, 2247, 'attending', '2023-09-06 22:56:27', '2025-12-17 19:46:56', 'AgxWpzq4', '6394628'), - (840, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AgxWpzq4', '6394629'), - (840, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AgxWpzq4', '6394631'), - (840, 2253, 'attending', '2023-09-15 04:46:53', '2025-12-17 19:46:45', 'AgxWpzq4', '6401811'), - (840, 2255, 'attending', '2023-09-12 08:52:07', '2025-12-17 19:46:45', 'AgxWpzq4', '6403562'), - (840, 2257, 'attending', '2023-09-16 19:42:24', '2025-12-17 19:46:44', 'AgxWpzq4', '6408068'), - (840, 2265, 'attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', 'AgxWpzq4', '6439625'), - (840, 2266, 'attending', '2023-10-03 23:06:54', '2025-12-17 19:46:45', 'AgxWpzq4', '6439635'), - (840, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AgxWpzq4', '6440863'), - (840, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AgxWpzq4', '6445440'), - (840, 2274, 'attending', '2023-10-03 22:55:02', '2025-12-17 19:46:45', 'AgxWpzq4', '6448287'), - (840, 2275, 'attending', '2023-10-07 19:28:33', '2025-12-17 19:46:45', 'AgxWpzq4', '6453777'), - (840, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AgxWpzq4', '6453951'), - (840, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AgxWpzq4', '6461696'), - (840, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AgxWpzq4', '6462129'), - (840, 2290, 'maybe', '2023-10-18 00:11:48', '2025-12-17 19:46:46', 'AgxWpzq4', '6462214'), - (840, 2292, 'maybe', '2023-10-22 19:25:57', '2025-12-17 19:46:47', 'AgxWpzq4', '6462216'), - (840, 2293, 'attending', '2023-10-11 22:08:06', '2025-12-17 19:46:46', 'AgxWpzq4', '6463218'), - (840, 2299, 'attending', '2023-10-20 22:34:17', '2025-12-17 19:46:46', 'AgxWpzq4', '6472181'), - (840, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', 'AgxWpzq4', '6474276'), - (840, 2302, 'not_attending', '2023-10-22 12:26:52', '2025-12-17 19:46:46', 'AgxWpzq4', '6482535'), - (840, 2303, 'attending', '2023-10-22 12:34:55', '2025-12-17 19:46:47', 'AgxWpzq4', '6482691'), - (840, 2304, 'attending', '2023-10-22 12:34:57', '2025-12-17 19:46:47', 'AgxWpzq4', '6482693'), - (840, 2305, 'attending', '2023-10-21 21:46:45', '2025-12-17 19:46:46', 'AgxWpzq4', '6483945'), - (840, 2306, 'attending', '2023-11-14 23:05:59', '2025-12-17 19:46:47', 'AgxWpzq4', '6484200'), - (840, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'AgxWpzq4', '6484680'), - (840, 2310, 'maybe', '2023-10-25 13:23:13', '2025-12-17 19:46:47', 'AgxWpzq4', '6487709'), - (840, 2313, 'attending', '2023-10-28 17:55:46', '2025-12-17 19:46:47', 'AgxWpzq4', '6492612'), - (840, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AgxWpzq4', '6507741'), - (840, 2322, 'attending', '2023-11-09 10:27:45', '2025-12-17 19:46:48', 'AgxWpzq4', '6514659'), - (840, 2323, 'attending', '2023-11-09 10:27:44', '2025-12-17 19:46:48', 'AgxWpzq4', '6514660'), - (840, 2324, 'attending', '2023-11-09 10:27:46', '2025-12-17 19:46:49', 'AgxWpzq4', '6514662'), - (840, 2325, 'attending', '2023-11-09 10:27:50', '2025-12-17 19:46:36', 'AgxWpzq4', '6514663'), - (840, 2328, 'attending', '2023-11-01 21:51:55', '2025-12-17 19:46:47', 'AgxWpzq4', '6515504'), - (840, 2330, 'maybe', '2023-11-04 22:26:18', '2025-12-17 19:46:47', 'AgxWpzq4', '6517941'), - (840, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AgxWpzq4', '6519103'), - (840, 2335, 'attending', '2023-11-07 20:24:36', '2025-12-17 19:46:47', 'AgxWpzq4', '6534890'), - (840, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AgxWpzq4', '6535681'), - (840, 2338, 'not_attending', '2023-11-24 10:08:15', '2025-12-17 19:46:48', 'AgxWpzq4', '6538868'), - (840, 2342, 'attending', '2023-11-13 19:03:21', '2025-12-17 19:46:47', 'AgxWpzq4', '6545076'), - (840, 2343, 'maybe', '2023-11-15 07:44:49', '2025-12-17 19:46:48', 'AgxWpzq4', '6574728'), - (840, 2346, 'attending', '2023-11-18 22:27:49', '2025-12-17 19:46:48', 'AgxWpzq4', '6582418'), - (840, 2350, 'attending', '2023-11-21 04:41:04', '2025-12-17 19:46:48', 'AgxWpzq4', '6584352'), - (840, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AgxWpzq4', '6584747'), - (840, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AgxWpzq4', '6587097'), - (840, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AgxWpzq4', '6609022'), - (840, 2373, 'attending', '2023-12-18 19:16:45', '2025-12-17 19:46:38', 'AgxWpzq4', '6632678'), - (840, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AgxWpzq4', '6632757'), - (840, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AgxWpzq4', '6644187'), - (840, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AgxWpzq4', '6648951'), - (840, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AgxWpzq4', '6648952'), - (840, 2388, 'attending', '2024-01-06 11:15:17', '2025-12-17 19:46:37', 'AgxWpzq4', '6649244'), - (840, 2390, 'attending', '2024-01-03 21:50:22', '2025-12-17 19:46:37', 'AgxWpzq4', '6651141'), - (840, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AgxWpzq4', '6655401'), - (840, 2399, 'attending', '2024-01-09 09:41:56', '2025-12-17 19:46:37', 'AgxWpzq4', '6657583'), - (840, 2400, 'maybe', '2024-01-08 19:48:23', '2025-12-17 19:46:37', 'AgxWpzq4', '6659378'), - (840, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AgxWpzq4', '6661585'), - (840, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AgxWpzq4', '6661588'), - (840, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AgxWpzq4', '6661589'), - (840, 2407, 'attending', '2024-01-15 03:36:33', '2025-12-17 19:46:40', 'AgxWpzq4', '6699906'), - (840, 2408, 'attending', '2024-01-15 03:47:21', '2025-12-17 19:46:40', 'AgxWpzq4', '6699907'), - (840, 2409, 'attending', '2024-01-15 03:47:22', '2025-12-17 19:46:41', 'AgxWpzq4', '6699909'), - (840, 2410, 'attending', '2024-01-15 03:50:04', '2025-12-17 19:46:41', 'AgxWpzq4', '6699911'), - (840, 2411, 'attending', '2024-01-15 04:15:43', '2025-12-17 19:46:41', 'AgxWpzq4', '6699913'), - (840, 2412, 'attending', '2024-01-15 21:49:00', '2025-12-17 19:46:43', 'AgxWpzq4', '6700717'), - (840, 2413, 'attending', '2024-01-15 21:53:45', '2025-12-17 19:46:42', 'AgxWpzq4', '6700719'), - (840, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AgxWpzq4', '6701109'), - (840, 2424, 'attending', '2024-01-19 01:47:27', '2025-12-17 19:46:40', 'AgxWpzq4', '6705143'), - (840, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AgxWpzq4', '6705219'), - (840, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AgxWpzq4', '6710153'), - (840, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AgxWpzq4', '6711552'), - (840, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'AgxWpzq4', '6711553'), - (840, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AgxWpzq4', '6722688'), - (840, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AgxWpzq4', '6730620'), - (840, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AgxWpzq4', '6730642'), - (840, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AgxWpzq4', '6740364'), - (840, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AgxWpzq4', '6743829'), - (840, 2467, 'attending', '2024-02-16 01:31:57', '2025-12-17 19:46:43', 'AgxWpzq4', '7029987'), - (840, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AgxWpzq4', '7030380'), - (840, 2471, 'attending', '2024-02-19 05:55:14', '2025-12-17 19:46:42', 'AgxWpzq4', '7032425'), - (840, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AgxWpzq4', '7033677'), - (840, 2474, 'attending', '2024-02-20 21:12:09', '2025-12-17 19:46:43', 'AgxWpzq4', '7035415'), - (840, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AgxWpzq4', '7044715'), - (840, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AgxWpzq4', '7050318'), - (840, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AgxWpzq4', '7050319'), - (840, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AgxWpzq4', '7050322'), - (840, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AgxWpzq4', '7057804'), - (840, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AgxWpzq4', '7072824'), - (840, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AgxWpzq4', '7074348'), - (840, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AgxWpzq4', '7074364'), - (840, 2537, 'attending', '2024-03-16 06:13:19', '2025-12-17 19:46:33', 'AgxWpzq4', '7085484'), - (840, 2538, 'attending', '2024-03-16 06:14:09', '2025-12-17 19:46:33', 'AgxWpzq4', '7085485'), - (840, 2539, 'attending', '2024-03-16 06:14:10', '2025-12-17 19:46:33', 'AgxWpzq4', '7085486'), - (840, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AgxWpzq4', '7089267'), - (840, 2543, 'attending', '2024-03-24 02:18:13', '2025-12-17 19:46:33', 'AgxWpzq4', '7091456'), - (840, 2548, 'attending', '2024-03-23 18:28:53', '2025-12-17 19:46:33', 'AgxWpzq4', '7098747'), - (840, 2549, 'attending', '2024-03-24 19:56:20', '2025-12-17 19:46:33', 'AgxWpzq4', '7099657'), - (840, 2553, 'attending', '2024-03-29 18:43:09', '2025-12-17 19:46:33', 'AgxWpzq4', '7113468'), - (840, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AgxWpzq4', '7114856'), - (840, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AgxWpzq4', '7114951'), - (840, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AgxWpzq4', '7114955'), - (840, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AgxWpzq4', '7114956'), - (840, 2558, 'attending', '2024-04-04 06:32:54', '2025-12-17 19:46:35', 'AgxWpzq4', '7114957'), - (840, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AgxWpzq4', '7153615'), - (840, 2569, 'attending', '2024-04-05 19:19:33', '2025-12-17 19:46:33', 'AgxWpzq4', '7154056'), - (840, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AgxWpzq4', '7159484'), - (840, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AgxWpzq4', '7178446'), - (840, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AgxWpzq4', '7220467'), - (840, 2609, 'attending', '2024-05-06 16:41:05', '2025-12-17 19:46:35', 'AgxWpzq4', '7240354'), - (840, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AgxWpzq4', '7251633'), - (840, 2622, 'attending', '2024-05-09 05:24:02', '2025-12-17 19:46:35', 'AgxWpzq4', '7262064'), - (840, 2626, 'attending', '2024-05-17 04:38:48', '2025-12-17 19:46:35', 'AgxWpzq4', '7264723'), - (840, 2627, 'attending', '2024-05-17 04:38:46', '2025-12-17 19:46:35', 'AgxWpzq4', '7264724'), - (840, 2628, 'attending', '2024-05-17 04:38:49', '2025-12-17 19:46:36', 'AgxWpzq4', '7264725'), - (840, 2629, 'attending', '2024-05-17 04:38:51', '2025-12-17 19:46:28', 'AgxWpzq4', '7264726'), - (840, 2645, 'attending', '2024-05-20 22:11:18', '2025-12-17 19:46:35', 'AgxWpzq4', '7279964'), - (840, 2647, 'attending', '2024-05-20 19:20:39', '2025-12-17 19:46:28', 'AgxWpzq4', '7282057'), - (840, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AgxWpzq4', '7302674'), - (840, 2688, 'attending', '2024-06-25 17:17:33', '2025-12-17 19:46:29', 'AgxWpzq4', '7324073'), - (840, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AgxWpzq4', '7324074'), - (840, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AgxWpzq4', '7324075'), - (840, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AgxWpzq4', '7324078'), - (840, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AgxWpzq4', '7324082'), - (840, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AgxWpzq4', '7331457'), - (840, 2726, 'not_attending', '2024-06-19 19:17:45', '2025-12-17 19:46:29', 'AgxWpzq4', '7332853'), - (840, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AgxWpzq4', '7356752'), - (840, 2766, 'attending', '2024-07-21 22:07:22', '2025-12-17 19:46:30', 'AgxWpzq4', '7363643'), - (840, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AgxWpzq4', '7368606'), - (840, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AgxWpzq4', '7397462'), - (840, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AgxWpzq4', '7424275'), - (840, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AgxWpzq4', '7424276'), - (840, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AgxWpzq4', '7432751'), - (840, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AgxWpzq4', '7432752'), - (840, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AgxWpzq4', '7432753'), - (840, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AgxWpzq4', '7432754'), - (840, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AgxWpzq4', '7432755'), - (840, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AgxWpzq4', '7432756'), - (840, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AgxWpzq4', '7432758'), - (840, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AgxWpzq4', '7432759'), - (840, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AgxWpzq4', '7433834'), - (840, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AgxWpzq4', '7470197'), - (840, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AgxWpzq4', '7685613'), - (840, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AgxWpzq4', '7688194'), - (840, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AgxWpzq4', '7688196'), - (840, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AgxWpzq4', '7688289'), - (841, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'd5jREKOm', '7291219'), - (841, 2657, 'not_attending', '2024-05-29 15:52:43', '2025-12-17 19:46:36', 'd5jREKOm', '7294438'), - (841, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'd5jREKOm', '7301638'), - (842, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'ndlplxld', '3470305'), - (842, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ndlplxld', '3517815'), - (842, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ndlplxld', '3517816'), - (842, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ndlplxld', '3523941'), - (842, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ndlplxld', '3533850'), - (842, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ndlplxld', '3536632'), - (842, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ndlplxld', '3536656'), - (842, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ndlplxld', '3539916'), - (842, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ndlplxld', '3539917'), - (842, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ndlplxld', '3539918'), - (842, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ndlplxld', '3539919'), - (842, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ndlplxld', '3539920'), - (842, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ndlplxld', '3539921'), - (842, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ndlplxld', '3539922'), - (842, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndlplxld', '3539923'), - (842, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndlplxld', '3539927'), - (842, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndlplxld', '3582734'), - (842, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndlplxld', '3619523'), - (842, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlplxld', '6045684'), - (843, 950, 'maybe', '2021-08-20 14:34:32', '2025-12-17 19:47:42', 'AgkZVeMA', '4315730'), - (843, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'AgkZVeMA', '4356801'), - (843, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'AgkZVeMA', '4366186'), - (843, 974, 'maybe', '2021-08-27 01:03:27', '2025-12-17 19:47:43', 'AgkZVeMA', '4366187'), - (843, 978, 'not_attending', '2021-08-21 22:30:35', '2025-12-17 19:47:42', 'AgkZVeMA', '4378509'), - (843, 981, 'attending', '2021-08-27 21:59:40', '2025-12-17 19:47:42', 'AgkZVeMA', '4387305'), - (843, 983, 'not_attending', '2021-08-30 15:33:21', '2025-12-17 19:47:42', 'AgkZVeMA', '4390051'), - (843, 988, 'not_attending', '2021-08-25 14:58:04', '2025-12-17 19:47:42', 'AgkZVeMA', '4402823'), - (843, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'AgkZVeMA', '4420735'), - (843, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'AgkZVeMA', '4420738'), - (843, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'AgkZVeMA', '4420739'), - (843, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'AgkZVeMA', '4420741'), - (843, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'AgkZVeMA', '4420744'), - (843, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'AgkZVeMA', '4420747'), - (843, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'AgkZVeMA', '4420748'), - (843, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'AgkZVeMA', '4420749'), - (843, 1002, 'attending', '2021-08-30 15:22:55', '2025-12-17 19:47:43', 'AgkZVeMA', '4424932'), - (843, 1013, 'not_attending', '2021-09-04 17:06:37', '2025-12-17 19:47:43', 'AgkZVeMA', '4438817'), - (843, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AgkZVeMA', '4461883'), - (843, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AgkZVeMA', '4508342'), - (843, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AgkZVeMA', '4568602'), - (843, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AgkZVeMA', '6045684'), - (844, 1154, 'maybe', '2022-01-25 04:16:03', '2025-12-17 19:47:32', 'd8Go37v4', '4708708'), - (844, 1175, 'attending', '2022-01-22 23:29:09', '2025-12-17 19:47:32', 'd8Go37v4', '4736497'), - (844, 1177, 'not_attending', '2022-02-13 00:06:27', '2025-12-17 19:47:32', 'd8Go37v4', '4736499'), - (844, 1178, 'attending', '2022-01-29 21:56:57', '2025-12-17 19:47:32', 'd8Go37v4', '4736500'), - (844, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd8Go37v4', '4736503'), - (844, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd8Go37v4', '4736504'), - (844, 1193, 'attending', '2022-01-18 10:58:23', '2025-12-17 19:47:32', 'd8Go37v4', '4759563'), - (844, 1197, 'not_attending', '2022-01-25 04:15:40', '2025-12-17 19:47:32', 'd8Go37v4', '4766799'), - (844, 1198, 'attending', '2022-01-22 05:58:41', '2025-12-17 19:47:32', 'd8Go37v4', '4766801'), - (844, 1199, 'attending', '2022-01-25 04:15:33', '2025-12-17 19:47:32', 'd8Go37v4', '4766802'), - (844, 1200, 'attending', '2022-01-19 02:14:20', '2025-12-17 19:47:32', 'd8Go37v4', '4766830'), - (844, 1201, 'attending', '2022-01-18 10:58:08', '2025-12-17 19:47:32', 'd8Go37v4', '4766841'), - (844, 1202, 'maybe', '2022-01-25 04:16:00', '2025-12-17 19:47:32', 'd8Go37v4', '4769423'), - (844, 1210, 'maybe', '2022-01-25 04:16:12', '2025-12-17 19:47:32', 'd8Go37v4', '4776927'), - (844, 1216, 'maybe', '2022-01-25 14:53:56', '2025-12-17 19:47:32', 'd8Go37v4', '4781137'), - (844, 1217, 'attending', '2022-01-30 20:34:53', '2025-12-17 19:47:32', 'd8Go37v4', '4781139'), - (844, 1218, 'maybe', '2022-02-01 01:14:54', '2025-12-17 19:47:32', 'd8Go37v4', '4788464'), - (844, 1219, 'maybe', '2022-01-31 04:28:33', '2025-12-17 19:47:32', 'd8Go37v4', '4788466'), - (844, 1220, 'maybe', '2022-01-28 00:56:11', '2025-12-17 19:47:32', 'd8Go37v4', '4790257'), - (844, 1221, 'maybe', '2022-01-28 00:56:22', '2025-12-17 19:47:32', 'd8Go37v4', '4790261'), - (844, 1223, 'not_attending', '2022-02-05 22:05:44', '2025-12-17 19:47:32', 'd8Go37v4', '5015635'), - (844, 1224, 'maybe', '2022-01-31 04:28:46', '2025-12-17 19:47:32', 'd8Go37v4', '5016682'), - (844, 1226, 'not_attending', '2022-02-01 23:21:56', '2025-12-17 19:47:32', 'd8Go37v4', '5019064'), - (844, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd8Go37v4', '5038850'), - (844, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd8Go37v4', '5045826'), - (844, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd8Go37v4', '5132533'), - (844, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd8Go37v4', '5186582'), - (844, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd8Go37v4', '5186583'), - (844, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd8Go37v4', '5186585'), - (844, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd8Go37v4', '5190437'), - (844, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd8Go37v4', '5215989'), - (844, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd8Go37v4', '6045684'), - (845, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4ojJnrZA', '7240354'), - (845, 2611, 'attending', '2024-05-06 10:11:22', '2025-12-17 19:46:35', '4ojJnrZA', '7247642'), - (845, 2613, 'attending', '2024-05-07 10:03:36', '2025-12-17 19:46:35', '4ojJnrZA', '7247644'), - (845, 2614, 'attending', '2024-05-07 10:03:45', '2025-12-17 19:46:35', '4ojJnrZA', '7247645'), - (845, 2617, 'attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4ojJnrZA', '7251633'), - (845, 2620, 'not_attending', '2024-05-08 19:30:32', '2025-12-17 19:46:35', '4ojJnrZA', '7258097'), - (845, 2621, 'attending', '2024-05-07 01:27:41', '2025-12-17 19:46:35', '4ojJnrZA', '7258170'), - (845, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4ojJnrZA', '7263048'), - (845, 2624, 'not_attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', '4ojJnrZA', '7263301'), - (846, 1176, 'attending', '2022-02-05 23:42:10', '2025-12-17 19:47:32', 'mq1VBn1m', '4736498'), - (846, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mq1VBn1m', '4736499'), - (846, 1179, 'attending', '2022-02-19 16:52:31', '2025-12-17 19:47:32', 'mq1VBn1m', '4736501'), - (846, 1180, 'attending', '2022-02-27 00:08:33', '2025-12-17 19:47:33', 'mq1VBn1m', '4736502'), - (846, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mq1VBn1m', '4736503'), - (846, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mq1VBn1m', '4736504'), - (846, 1212, 'attending', '2022-01-27 15:52:36', '2025-12-17 19:47:32', 'mq1VBn1m', '4780759'), - (846, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mq1VBn1m', '5038850'), - (846, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mq1VBn1m', '5045826'), - (846, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mq1VBn1m', '5132533'), - (846, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mq1VBn1m', '5186582'), - (846, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mq1VBn1m', '5186583'), - (846, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mq1VBn1m', '5186585'), - (846, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mq1VBn1m', '5190437'), - (846, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mq1VBn1m', '5195095'), - (846, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mq1VBn1m', '5215989'), - (846, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mq1VBn1m', '5223686'), - (846, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mq1VBn1m', '5227432'), - (846, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mq1VBn1m', '5247467'), - (846, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mq1VBn1m', '5260800'), - (846, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mq1VBn1m', '5269930'), - (846, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mq1VBn1m', '5271448'), - (846, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mq1VBn1m', '5271449'), - (846, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mq1VBn1m', '5276469'), - (846, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mq1VBn1m', '5278159'), - (846, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mq1VBn1m', '5363695'), - (846, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mq1VBn1m', '5365960'), - (846, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mq1VBn1m', '5368973'), - (846, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mq1VBn1m', '5378247'), - (846, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mq1VBn1m', '5389605'), - (846, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mq1VBn1m', '5397265'), - (846, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mq1VBn1m', '5403967'), - (846, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mq1VBn1m', '5404786'), - (846, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mq1VBn1m', '5405203'), - (846, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mq1VBn1m', '5408794'), - (846, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mq1VBn1m', '5411699'), - (846, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mq1VBn1m', '5412550'), - (846, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mq1VBn1m', '5415046'), - (846, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mq1VBn1m', '5422086'), - (846, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mq1VBn1m', '5422406'), - (846, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mq1VBn1m', '5424565'), - (846, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mq1VBn1m', '5426882'), - (846, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mq1VBn1m', '5427083'), - (846, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mq1VBn1m', '5441125'), - (846, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mq1VBn1m', '5441126'), - (846, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mq1VBn1m', '5441128'), - (846, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mq1VBn1m', '5441131'), - (846, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mq1VBn1m', '5441132'), - (846, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mq1VBn1m', '5446643'), - (846, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mq1VBn1m', '5453325'), - (846, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mq1VBn1m', '5454516'), - (846, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mq1VBn1m', '5454605'), - (846, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mq1VBn1m', '5455037'), - (846, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mq1VBn1m', '5461278'), - (846, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mq1VBn1m', '5469480'), - (846, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mq1VBn1m', '5471073'), - (846, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mq1VBn1m', '5474663'), - (846, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mq1VBn1m', '5482022'), - (846, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mq1VBn1m', '5482793'), - (846, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mq1VBn1m', '5488912'), - (846, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mq1VBn1m', '5492192'), - (846, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mq1VBn1m', '5493139'), - (846, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mq1VBn1m', '5493200'), - (846, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mq1VBn1m', '5502188'), - (846, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mq1VBn1m', '5505059'), - (846, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mq1VBn1m', '5509055'), - (846, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mq1VBn1m', '5512862'), - (846, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mq1VBn1m', '5513985'), - (846, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'mq1VBn1m', '5519981'), - (846, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mq1VBn1m', '5522550'), - (846, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mq1VBn1m', '5534683'), - (846, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mq1VBn1m', '5546619'), - (846, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mq1VBn1m', '5555245'), - (846, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mq1VBn1m', '5557747'), - (846, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mq1VBn1m', '6045684'), - (847, 157, 'not_attending', '2020-09-14 00:02:09', '2025-12-17 19:47:56', '841kEKMm', '3058694'), - (847, 158, 'not_attending', '2020-09-26 00:13:14', '2025-12-17 19:47:52', '841kEKMm', '3058695'), - (847, 160, 'not_attending', '2020-10-17 22:33:50', '2025-12-17 19:47:52', '841kEKMm', '3058697'), - (847, 161, 'not_attending', '2020-10-09 23:54:19', '2025-12-17 19:47:52', '841kEKMm', '3058698'), - (847, 162, 'not_attending', '2020-10-11 18:40:10', '2025-12-17 19:47:52', '841kEKMm', '3058699'), - (847, 163, 'not_attending', '2020-10-28 13:16:09', '2025-12-17 19:47:53', '841kEKMm', '3058700'), - (847, 221, 'not_attending', '2020-09-13 22:56:08', '2025-12-17 19:47:56', '841kEKMm', '3129265'), - (847, 223, 'attending', '2020-09-12 23:07:51', '2025-12-17 19:47:56', '841kEKMm', '3129980'), - (847, 241, 'not_attending', '2020-10-01 23:31:56', '2025-12-17 19:47:52', '841kEKMm', '3149472'), - (847, 242, 'not_attending', '2020-09-13 22:56:41', '2025-12-17 19:47:56', '841kEKMm', '3149473'), - (847, 244, 'not_attending', '2020-10-17 22:33:30', '2025-12-17 19:47:52', '841kEKMm', '3149475'), - (847, 296, 'not_attending', '2020-09-15 16:44:33', '2025-12-17 19:47:56', '841kEKMm', '3172876'), - (847, 311, 'not_attending', '2020-09-13 22:55:51', '2025-12-17 19:47:56', '841kEKMm', '3186057'), - (847, 323, 'not_attending', '2020-09-15 16:44:37', '2025-12-17 19:47:56', '841kEKMm', '3197081'), - (847, 326, 'not_attending', '2020-09-26 00:13:07', '2025-12-17 19:47:52', '841kEKMm', '3197084'), - (847, 328, 'not_attending', '2020-09-28 12:13:02', '2025-12-17 19:47:52', '841kEKMm', '3197086'), - (847, 329, 'not_attending', '2020-09-28 12:14:26', '2025-12-17 19:47:52', '841kEKMm', '3197087'), - (847, 333, 'not_attending', '2020-10-01 23:31:58', '2025-12-17 19:47:52', '841kEKMm', '3199782'), - (847, 336, 'not_attending', '2020-09-15 16:40:38', '2025-12-17 19:47:56', '841kEKMm', '3200495'), - (847, 340, 'attending', '2020-09-18 22:03:35', '2025-12-17 19:47:56', '841kEKMm', '3204470'), - (847, 341, 'not_attending', '2020-09-24 19:34:02', '2025-12-17 19:47:52', '841kEKMm', '3204471'), - (847, 342, 'not_attending', '2020-10-02 19:43:21', '2025-12-17 19:47:52', '841kEKMm', '3204472'), - (847, 343, 'not_attending', '2020-09-21 00:52:54', '2025-12-17 19:47:56', '841kEKMm', '3206759'), - (847, 344, 'not_attending', '2020-10-17 22:34:18', '2025-12-17 19:47:53', '841kEKMm', '3206906'), - (847, 346, 'not_attending', '2020-09-15 16:40:35', '2025-12-17 19:47:56', '841kEKMm', '3207515'), - (847, 347, 'not_attending', '2020-09-21 00:53:21', '2025-12-17 19:47:51', '841kEKMm', '3207930'), - (847, 348, 'not_attending', '2020-09-27 02:35:41', '2025-12-17 19:47:52', '841kEKMm', '3209159'), - (847, 349, 'not_attending', '2020-09-15 16:40:41', '2025-12-17 19:47:56', '841kEKMm', '3209194'), - (847, 350, 'attending', '2020-09-12 23:07:54', '2025-12-17 19:47:56', '841kEKMm', '3209255'), - (847, 351, 'not_attending', '2020-09-15 16:44:09', '2025-12-17 19:47:56', '841kEKMm', '3209257'), - (847, 352, 'not_attending', '2020-09-13 22:56:00', '2025-12-17 19:47:56', '841kEKMm', '3210514'), - (847, 354, 'not_attending', '2020-09-20 16:43:41', '2025-12-17 19:47:56', '841kEKMm', '3212570'), - (847, 357, 'not_attending', '2020-09-28 12:13:00', '2025-12-17 19:47:52', '841kEKMm', '3212573'), - (847, 358, 'not_attending', '2020-09-19 18:45:33', '2025-12-17 19:47:56', '841kEKMm', '3212579'), - (847, 359, 'not_attending', '2020-09-20 16:43:39', '2025-12-17 19:47:56', '841kEKMm', '3212624'), - (847, 360, 'not_attending', '2020-09-15 16:41:12', '2025-12-17 19:47:56', '841kEKMm', '3212671'), - (847, 361, 'not_attending', '2020-09-15 16:41:24', '2025-12-17 19:47:56', '841kEKMm', '3213323'), - (847, 362, 'attending', '2020-09-26 22:38:31', '2025-12-17 19:47:52', '841kEKMm', '3214207'), - (847, 363, 'not_attending', '2020-09-27 02:35:27', '2025-12-17 19:47:52', '841kEKMm', '3217037'), - (847, 365, 'not_attending', '2020-09-20 14:30:58', '2025-12-17 19:47:52', '841kEKMm', '3218510'), - (847, 366, 'not_attending', '2020-09-22 21:32:24', '2025-12-17 19:47:56', '841kEKMm', '3219750'), - (847, 367, 'not_attending', '2020-09-24 21:19:42', '2025-12-17 19:47:51', '841kEKMm', '3219751'), - (847, 368, 'not_attending', '2020-09-28 12:14:19', '2025-12-17 19:47:52', '841kEKMm', '3221403'), - (847, 369, 'not_attending', '2020-10-09 23:54:46', '2025-12-17 19:47:52', '841kEKMm', '3221404'), - (847, 370, 'not_attending', '2020-10-13 12:17:12', '2025-12-17 19:47:52', '841kEKMm', '3221405'), - (847, 372, 'not_attending', '2020-10-17 22:33:31', '2025-12-17 19:47:52', '841kEKMm', '3221407'), - (847, 373, 'not_attending', '2020-10-17 22:33:44', '2025-12-17 19:47:52', '841kEKMm', '3221413'), - (847, 375, 'not_attending', '2020-10-08 22:59:50', '2025-12-17 19:47:52', '841kEKMm', '3222825'), - (847, 378, 'not_attending', '2020-09-27 02:35:18', '2025-12-17 19:47:52', '841kEKMm', '3223725'), - (847, 379, 'not_attending', '2020-10-01 23:31:51', '2025-12-17 19:47:52', '841kEKMm', '3226266'), - (847, 380, 'not_attending', '2020-09-30 22:15:14', '2025-12-17 19:47:52', '841kEKMm', '3226281'), - (847, 383, 'not_attending', '2020-09-28 12:14:22', '2025-12-17 19:47:52', '841kEKMm', '3227946'), - (847, 385, 'attending', '2020-10-03 16:57:24', '2025-12-17 19:47:52', '841kEKMm', '3228698'), - (847, 386, 'not_attending', '2020-10-10 23:10:54', '2025-12-17 19:47:52', '841kEKMm', '3228699'), - (847, 387, 'not_attending', '2020-10-17 22:32:33', '2025-12-17 19:47:52', '841kEKMm', '3228700'), - (847, 388, 'not_attending', '2020-10-24 22:46:13', '2025-12-17 19:47:52', '841kEKMm', '3228701'), - (847, 389, 'not_attending', '2020-09-30 22:15:06', '2025-12-17 19:47:52', '841kEKMm', '3231284'), - (847, 390, 'not_attending', '2020-10-01 23:31:49', '2025-12-17 19:47:52', '841kEKMm', '3231510'), - (847, 392, 'not_attending', '2020-10-28 13:15:51', '2025-12-17 19:47:53', '841kEKMm', '3236447'), - (847, 411, 'maybe', '2020-10-09 23:54:26', '2025-12-17 19:47:52', '841kEKMm', '3236596'), - (847, 413, 'not_attending', '2020-10-17 22:33:36', '2025-12-17 19:47:52', '841kEKMm', '3236670'), - (847, 414, 'not_attending', '2020-10-17 22:33:25', '2025-12-17 19:47:52', '841kEKMm', '3237277'), - (847, 415, 'not_attending', '2020-10-09 23:54:42', '2025-12-17 19:47:52', '841kEKMm', '3238044'), - (847, 416, 'not_attending', '2020-10-07 23:45:18', '2025-12-17 19:47:52', '841kEKMm', '3238073'), - (847, 417, 'not_attending', '2020-10-13 12:17:09', '2025-12-17 19:47:52', '841kEKMm', '3238779'), - (847, 418, 'not_attending', '2020-10-13 12:17:05', '2025-12-17 19:47:52', '841kEKMm', '3241728'), - (847, 420, 'not_attending', '2020-10-13 12:17:24', '2025-12-17 19:47:52', '841kEKMm', '3245293'), - (847, 421, 'not_attending', '2020-10-17 22:33:38', '2025-12-17 19:47:52', '841kEKMm', '3245294'), - (847, 424, 'not_attending', '2020-10-13 13:52:43', '2025-12-17 19:47:52', '841kEKMm', '3245751'), - (847, 425, 'not_attending', '2020-10-14 14:38:50', '2025-12-17 19:47:52', '841kEKMm', '3250097'), - (847, 426, 'not_attending', '2020-10-17 22:33:21', '2025-12-17 19:47:52', '841kEKMm', '3250232'), - (847, 430, 'not_attending', '2020-10-17 22:33:34', '2025-12-17 19:47:52', '841kEKMm', '3253094'), - (847, 433, 'not_attending', '2020-11-06 15:31:24', '2025-12-17 19:47:53', '841kEKMm', '3254417'), - (847, 435, 'not_attending', '2020-10-17 22:33:46', '2025-12-17 19:47:52', '841kEKMm', '3254790'), - (847, 436, 'not_attending', '2020-10-20 17:24:26', '2025-12-17 19:47:52', '841kEKMm', '3256119'), - (847, 437, 'not_attending', '2020-10-28 13:14:57', '2025-12-17 19:47:53', '841kEKMm', '3256160'), - (847, 438, 'not_attending', '2020-10-31 22:45:41', '2025-12-17 19:47:53', '841kEKMm', '3256163'), - (847, 439, 'not_attending', '2020-10-28 13:14:50', '2025-12-17 19:47:53', '841kEKMm', '3256164'), - (847, 440, 'not_attending', '2020-11-08 02:10:17', '2025-12-17 19:47:53', '841kEKMm', '3256168'), - (847, 441, 'maybe', '2020-11-10 03:06:43', '2025-12-17 19:47:54', '841kEKMm', '3256169'), - (847, 443, 'not_attending', '2020-10-24 23:10:07', '2025-12-17 19:47:53', '841kEKMm', '3263578'), - (847, 444, 'not_attending', '2020-10-30 20:13:10', '2025-12-17 19:47:53', '841kEKMm', '3263745'), - (847, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', '841kEKMm', '3266138'), - (847, 446, 'not_attending', '2020-10-27 17:06:00', '2025-12-17 19:47:53', '841kEKMm', '3267163'), - (847, 447, 'not_attending', '2020-10-28 13:14:52', '2025-12-17 19:47:53', '841kEKMm', '3267895'), - (847, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '841kEKMm', '3276428'), - (847, 459, 'not_attending', '2020-11-09 03:22:24', '2025-12-17 19:47:54', '841kEKMm', '3281467'), - (847, 462, 'maybe', '2020-11-09 03:22:21', '2025-12-17 19:47:54', '841kEKMm', '3281470'), - (847, 463, 'not_attending', '2020-11-14 02:44:29', '2025-12-17 19:47:54', '841kEKMm', '3281553'), - (847, 464, 'maybe', '2020-11-19 03:15:58', '2025-12-17 19:47:54', '841kEKMm', '3281554'), - (847, 466, 'not_attending', '2020-11-09 03:22:28', '2025-12-17 19:47:54', '841kEKMm', '3281829'), - (847, 468, 'not_attending', '2020-11-22 02:28:39', '2025-12-17 19:47:54', '841kEKMm', '3285413'), - (847, 469, 'maybe', '2020-11-23 03:30:44', '2025-12-17 19:47:54', '841kEKMm', '3285414'), - (847, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '841kEKMm', '3297764'), - (847, 487, 'not_attending', '2020-11-30 13:31:12', '2025-12-17 19:47:54', '841kEKMm', '3311122'), - (847, 493, 'not_attending', '2020-12-06 00:46:50', '2025-12-17 19:47:54', '841kEKMm', '3313856'), - (847, 499, 'not_attending', '2020-12-12 00:24:02', '2025-12-17 19:47:55', '841kEKMm', '3314909'), - (847, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '841kEKMm', '3314964'), - (847, 502, 'not_attending', '2020-12-13 00:56:22', '2025-12-17 19:47:55', '841kEKMm', '3323365'), - (847, 507, 'not_attending', '2020-12-22 00:19:38', '2025-12-17 19:47:48', '841kEKMm', '3324148'), - (847, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '841kEKMm', '3329383'), - (847, 516, 'attending', '2020-12-23 13:05:25', '2025-12-17 19:47:48', '841kEKMm', '3334530'), - (847, 523, 'attending', '2020-12-22 00:19:48', '2025-12-17 19:47:48', '841kEKMm', '3342960'), - (847, 525, 'not_attending', '2020-12-22 00:19:40', '2025-12-17 19:47:48', '841kEKMm', '3350467'), - (847, 526, 'maybe', '2020-12-22 00:20:20', '2025-12-17 19:47:48', '841kEKMm', '3351539'), - (847, 532, 'not_attending', '2021-01-09 01:43:51', '2025-12-17 19:47:48', '841kEKMm', '3381412'), - (847, 534, 'not_attending', '2021-01-07 14:53:38', '2025-12-17 19:47:48', '841kEKMm', '3384157'), - (847, 535, 'maybe', '2021-01-07 14:53:18', '2025-12-17 19:47:48', '841kEKMm', '3384729'), - (847, 536, 'not_attending', '2021-01-10 01:57:26', '2025-12-17 19:47:48', '841kEKMm', '3386848'), - (847, 540, 'not_attending', '2021-01-07 14:54:29', '2025-12-17 19:47:48', '841kEKMm', '3389527'), - (847, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '841kEKMm', '3396499'), - (847, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '841kEKMm', '3403650'), - (847, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '841kEKMm', '3406988'), - (847, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '841kEKMm', '3416576'), - (847, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '841kEKMm', '3418925'), - (847, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', '841kEKMm', '3430267'), - (847, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '841kEKMm', '3470303'), - (847, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '841kEKMm', '3470305'), - (847, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '841kEKMm', '3470991'), - (847, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '841kEKMm', '3517815'), - (847, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '841kEKMm', '3517816'), - (847, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '841kEKMm', '3523941'), - (847, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '841kEKMm', '3533850'), - (847, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '841kEKMm', '3536632'), - (847, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '841kEKMm', '3536656'), - (847, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '841kEKMm', '3539916'), - (847, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '841kEKMm', '3539917'), - (847, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '841kEKMm', '3539918'), - (847, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '841kEKMm', '3539919'), - (847, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '841kEKMm', '3539920'), - (847, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '841kEKMm', '3539921'), - (847, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '841kEKMm', '3539922'), - (847, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '841kEKMm', '3539923'), - (847, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '841kEKMm', '3539927'), - (847, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '841kEKMm', '3582734'), - (847, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '841kEKMm', '3583262'), - (847, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '841kEKMm', '3619523'), - (847, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '841kEKMm', '3661369'), - (847, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '841kEKMm', '3674262'), - (847, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '841kEKMm', '3677402'), - (847, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '841kEKMm', '3730212'), - (847, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '841kEKMm', '3793156'), - (847, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '841kEKMm', '3974109'), - (847, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '841kEKMm', '3975311'), - (847, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '841kEKMm', '3975312'), - (847, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '841kEKMm', '3994992'), - (847, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '841kEKMm', '4014338'), - (847, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '841kEKMm', '4021848'), - (847, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '841kEKMm', '4136744'), - (847, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '841kEKMm', '4136937'), - (847, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '841kEKMm', '4136938'), - (847, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '841kEKMm', '4136947'), - (847, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '841kEKMm', '4210314'), - (847, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '841kEKMm', '4225444'), - (847, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '841kEKMm', '4239259'), - (847, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '841kEKMm', '4240316'), - (847, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '841kEKMm', '4240317'), - (847, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '841kEKMm', '4240318'), - (847, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '841kEKMm', '4240320'), - (847, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '841kEKMm', '4250163'), - (847, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '841kEKMm', '4275957'), - (847, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '841kEKMm', '4277819'), - (847, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '841kEKMm', '4301723'), - (847, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '841kEKMm', '4302093'), - (847, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '841kEKMm', '4304151'), - (847, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '841kEKMm', '4356801'), - (847, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '841kEKMm', '4366186'), - (847, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '841kEKMm', '4366187'), - (847, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '841kEKMm', '4420735'), - (847, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '841kEKMm', '4420738'), - (847, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '841kEKMm', '4420739'), - (847, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '841kEKMm', '4420741'), - (847, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '841kEKMm', '4420744'), - (847, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '841kEKMm', '4420747'), - (847, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '841kEKMm', '4420748'), - (847, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '841kEKMm', '4420749'), - (847, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '841kEKMm', '4461883'), - (847, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '841kEKMm', '4508342'), - (847, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '841kEKMm', '4568602'), - (847, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '841kEKMm', '4572153'), - (847, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '841kEKMm', '4585962'), - (847, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '841kEKMm', '4596356'), - (847, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '841kEKMm', '4598860'), - (847, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '841kEKMm', '4598861'), - (847, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '841kEKMm', '4602797'), - (847, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '841kEKMm', '4637896'), - (847, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '841kEKMm', '4642994'), - (847, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '841kEKMm', '4642995'), - (847, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '841kEKMm', '4642996'), - (847, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '841kEKMm', '4642997'), - (847, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '841kEKMm', '4645687'), - (847, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '841kEKMm', '4645698'), - (847, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '841kEKMm', '4645704'), - (847, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '841kEKMm', '4645705'), - (847, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '841kEKMm', '4668385'), - (847, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '841kEKMm', '4694407'), - (847, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '841kEKMm', '4736497'), - (847, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '841kEKMm', '4736499'), - (847, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '841kEKMm', '4736500'), - (847, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '841kEKMm', '4736503'), - (847, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '841kEKMm', '4736504'), - (847, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '841kEKMm', '4746789'), - (847, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '841kEKMm', '4753929'), - (847, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '841kEKMm', '5038850'), - (847, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '841kEKMm', '5045826'), - (847, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '841kEKMm', '5132533'), - (847, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '841kEKMm', '5186582'), - (847, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '841kEKMm', '5186583'), - (847, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '841kEKMm', '5186585'), - (847, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '841kEKMm', '5190437'), - (847, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '841kEKMm', '5195095'), - (847, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '841kEKMm', '5215989'), - (847, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '841kEKMm', '5223686'), - (847, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '841kEKMm', '5247467'), - (847, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '841kEKMm', '5260800'), - (847, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '841kEKMm', '5269930'), - (847, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '841kEKMm', '5271448'), - (847, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '841kEKMm', '5271449'), - (847, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '841kEKMm', '5278159'), - (847, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '841kEKMm', '5363695'), - (847, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '841kEKMm', '5365960'), - (847, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '841kEKMm', '5378247'), - (847, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '841kEKMm', '5389605'), - (847, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '841kEKMm', '5397265'), - (847, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '841kEKMm', '5404786'), - (847, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '841kEKMm', '5405203'), - (847, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '841kEKMm', '5412550'), - (847, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '841kEKMm', '5415046'), - (847, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '841kEKMm', '5422086'), - (847, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '841kEKMm', '5422406'), - (847, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '841kEKMm', '5424565'), - (847, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '841kEKMm', '5426882'), - (847, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '841kEKMm', '5441125'), - (847, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '841kEKMm', '5441126'), - (847, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '841kEKMm', '5441128'), - (847, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '841kEKMm', '5441131'), - (847, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '841kEKMm', '5441132'), - (847, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '841kEKMm', '5453325'), - (847, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '841kEKMm', '5454516'), - (847, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '841kEKMm', '5454605'), - (847, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '841kEKMm', '5455037'), - (847, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '841kEKMm', '5461278'), - (847, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '841kEKMm', '5469480'), - (847, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '841kEKMm', '5474663'), - (847, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '841kEKMm', '5482022'), - (847, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '841kEKMm', '5488912'), - (847, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '841kEKMm', '5492192'), - (847, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '841kEKMm', '5493139'), - (847, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '841kEKMm', '5493200'), - (847, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '841kEKMm', '5502188'), - (847, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '841kEKMm', '5505059'), - (847, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '841kEKMm', '5509055'), - (847, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '841kEKMm', '5512862'), - (847, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '841kEKMm', '5513985'), - (847, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '841kEKMm', '5519981'), - (847, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '841kEKMm', '5522550'), - (847, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '841kEKMm', '5534683'), - (847, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '841kEKMm', '5537735'), - (847, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '841kEKMm', '5540859'), - (847, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '841kEKMm', '5546619'), - (847, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '841kEKMm', '5557747'), - (847, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '841kEKMm', '5560255'), - (847, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '841kEKMm', '5562906'), - (847, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '841kEKMm', '5600604'), - (847, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '841kEKMm', '5605544'), - (847, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '841kEKMm', '5630960'), - (847, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '841kEKMm', '5630961'), - (847, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '841kEKMm', '5630962'), - (847, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '841kEKMm', '5630966'), - (847, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '841kEKMm', '5630967'), - (847, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '841kEKMm', '5630968'), - (847, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '841kEKMm', '5635406'), - (847, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '841kEKMm', '5638765'), - (847, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '841kEKMm', '5640097'), - (847, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '841kEKMm', '5640843'), - (847, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '841kEKMm', '5641521'), - (847, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '841kEKMm', '5642818'), - (847, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '841kEKMm', '5652395'), - (847, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '841kEKMm', '5670445'), - (847, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '841kEKMm', '5671637'), - (847, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '841kEKMm', '5672329'), - (847, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '841kEKMm', '5674057'), - (847, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '841kEKMm', '5674060'), - (847, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '841kEKMm', '5677461'), - (847, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '841kEKMm', '5698046'), - (847, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '841kEKMm', '5699760'), - (847, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '841kEKMm', '5741601'), - (847, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '841kEKMm', '5763458'), - (847, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '841kEKMm', '5774172'), - (847, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '841kEKMm', '5818247'), - (847, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '841kEKMm', '5819471'), - (847, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '841kEKMm', '5827739'), - (847, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '841kEKMm', '5844306'), - (847, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '841kEKMm', '5850159'), - (847, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '841kEKMm', '5858999'), - (847, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '841kEKMm', '5871984'), - (847, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '841kEKMm', '5876354'), - (847, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '841kEKMm', '5880939'), - (847, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '841kEKMm', '5880940'), - (847, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '841kEKMm', '5880942'), - (847, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '841kEKMm', '5880943'), - (847, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '841kEKMm', '5887890'), - (847, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '841kEKMm', '5888598'), - (847, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '841kEKMm', '5893260'), - (847, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '841kEKMm', '5899826'), - (847, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '841kEKMm', '5900199'), - (847, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '841kEKMm', '5900200'), - (847, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '841kEKMm', '5900202'), - (847, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '841kEKMm', '5900203'), - (847, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '841kEKMm', '5901108'), - (847, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '841kEKMm', '5901126'), - (847, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '841kEKMm', '5901606'), - (847, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '841kEKMm', '5909655'), - (847, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '841kEKMm', '5910522'), - (847, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '841kEKMm', '5910526'), - (847, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '841kEKMm', '5910528'), - (847, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '841kEKMm', '5916219'), - (847, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '841kEKMm', '5936234'), - (847, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '841kEKMm', '5958351'), - (847, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '841kEKMm', '5959751'), - (847, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '841kEKMm', '5959755'), - (847, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '841kEKMm', '5960055'), - (847, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '841kEKMm', '5961684'), - (847, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '841kEKMm', '5962132'), - (847, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '841kEKMm', '5962133'), - (847, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '841kEKMm', '5962134'), - (847, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '841kEKMm', '5962317'), - (847, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '841kEKMm', '5962318'), - (847, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '841kEKMm', '5965933'), - (847, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '841kEKMm', '5967014'), - (847, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '841kEKMm', '5972815'), - (847, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '841kEKMm', '5974016'), - (847, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '841kEKMm', '5981515'), - (847, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '841kEKMm', '5993516'), - (847, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '841kEKMm', '5998939'), - (847, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '841kEKMm', '6028191'), - (847, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '841kEKMm', '6040066'), - (847, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '841kEKMm', '6042717'), - (847, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '841kEKMm', '6044838'), - (847, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '841kEKMm', '6044839'), - (847, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841kEKMm', '6045684'), - (847, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '841kEKMm', '6050104'), - (847, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '841kEKMm', '6053195'), - (847, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '841kEKMm', '6053198'), - (847, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '841kEKMm', '6056085'), - (847, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '841kEKMm', '6056916'), - (847, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '841kEKMm', '6059290'), - (847, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '841kEKMm', '6060328'), - (847, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '841kEKMm', '6061037'), - (847, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '841kEKMm', '6061039'), - (847, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '841kEKMm', '6067245'), - (847, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '841kEKMm', '6068094'), - (847, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '841kEKMm', '6068252'), - (847, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '841kEKMm', '6068253'), - (847, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '841kEKMm', '6068254'), - (847, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '841kEKMm', '6068280'), - (847, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '841kEKMm', '6069093'), - (847, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '841kEKMm', '6072528'), - (847, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '841kEKMm', '6079840'), - (847, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '841kEKMm', '6083398'), - (847, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '841kEKMm', '6093504'), - (847, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '841kEKMm', '6097414'), - (847, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '841kEKMm', '6097442'), - (847, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '841kEKMm', '6097684'), - (847, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '841kEKMm', '6098762'), - (847, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '841kEKMm', '6101361'), - (847, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '841kEKMm', '6101362'), - (847, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '841kEKMm', '6107314'), - (847, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '841kEKMm', '6120034'), - (847, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '841kEKMm', '6136733'), - (847, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '841kEKMm', '6137989'), - (847, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '841kEKMm', '6150864'), - (847, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '841kEKMm', '6155491'), - (847, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '841kEKMm', '6164417'), - (847, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '841kEKMm', '6166388'), - (847, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '841kEKMm', '6176439'), - (847, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '841kEKMm', '6182410'), - (847, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '841kEKMm', '6185812'), - (847, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '841kEKMm', '6187651'), - (847, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '841kEKMm', '6187963'), - (847, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '841kEKMm', '6187964'), - (847, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '841kEKMm', '6187966'), - (847, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '841kEKMm', '6187967'), - (847, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '841kEKMm', '6187969'), - (847, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '841kEKMm', '6334878'), - (847, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '841kEKMm', '6337236'), - (847, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '841kEKMm', '6337970'), - (847, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '841kEKMm', '6338308'), - (847, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '841kEKMm', '6341710'), - (847, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '841kEKMm', '6342044'), - (847, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '841kEKMm', '6342298'), - (847, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '841kEKMm', '6343294'), - (847, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '841kEKMm', '6347034'), - (847, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '841kEKMm', '6347056'), - (847, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '841kEKMm', '6353830'), - (847, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '841kEKMm', '6353831'), - (847, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '841kEKMm', '6357867'), - (847, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '841kEKMm', '6358652'), - (847, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '841kEKMm', '6361709'), - (847, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '841kEKMm', '6361710'), - (847, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '841kEKMm', '6361711'), - (847, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '841kEKMm', '6361712'), - (847, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '841kEKMm', '6361713'), - (847, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '841kEKMm', '6382573'), - (847, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '841kEKMm', '6388604'), - (847, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '841kEKMm', '6394629'), - (847, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '841kEKMm', '6394631'), - (847, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '841kEKMm', '6440863'), - (847, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '841kEKMm', '6445440'), - (847, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '841kEKMm', '6453951'), - (847, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '841kEKMm', '6461696'), - (847, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '841kEKMm', '6462129'), - (847, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '841kEKMm', '6463218'), - (847, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '841kEKMm', '6472181'), - (847, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '841kEKMm', '6482693'), - (847, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '841kEKMm', '6484200'), - (847, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '841kEKMm', '6484680'), - (847, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '841kEKMm', '6507741'), - (847, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '841kEKMm', '6514659'), - (847, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '841kEKMm', '6514660'), - (847, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '841kEKMm', '6519103'), - (847, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '841kEKMm', '6535681'), - (847, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '841kEKMm', '6584747'), - (847, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '841kEKMm', '6587097'), - (847, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '841kEKMm', '6609022'), - (847, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '841kEKMm', '6632757'), - (847, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '841kEKMm', '6644187'), - (847, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '841kEKMm', '6648951'), - (847, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '841kEKMm', '6648952'), - (847, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '841kEKMm', '6655401'), - (847, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '841kEKMm', '6661585'), - (847, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '841kEKMm', '6661588'), - (847, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '841kEKMm', '6661589'), - (847, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '841kEKMm', '6699906'), - (847, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '841kEKMm', '6699913'), - (847, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '841kEKMm', '6701109'), - (847, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '841kEKMm', '6705219'), - (847, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '841kEKMm', '6710153'), - (847, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '841kEKMm', '6711552'), - (847, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '841kEKMm', '6711553'), - (847, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '841kEKMm', '6722688'), - (847, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '841kEKMm', '6730620'), - (847, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '841kEKMm', '6740364'), - (847, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '841kEKMm', '6743829'), - (847, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '841kEKMm', '7030380'), - (847, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '841kEKMm', '7033677'), - (847, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '841kEKMm', '7044715'), - (847, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '841kEKMm', '7050318'), - (847, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '841kEKMm', '7050319'), - (847, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '841kEKMm', '7050322'), - (847, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '841kEKMm', '7057804'), - (847, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '841kEKMm', '7072824'), - (847, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '841kEKMm', '7074348'), - (847, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '841kEKMm', '7074364'), - (847, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '841kEKMm', '7089267'), - (847, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '841kEKMm', '7098747'), - (847, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '841kEKMm', '7113468'), - (847, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '841kEKMm', '7114856'), - (847, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '841kEKMm', '7114951'), - (847, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '841kEKMm', '7114955'), - (847, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '841kEKMm', '7114956'), - (847, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '841kEKMm', '7114957'), - (847, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '841kEKMm', '7159484'), - (847, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '841kEKMm', '7178446'), - (847, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '841kEKMm', '7220467'), - (847, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '841kEKMm', '7240354'), - (847, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '841kEKMm', '7251633'), - (847, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '841kEKMm', '7324073'), - (847, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '841kEKMm', '7324074'), - (847, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '841kEKMm', '7324075'), - (847, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '841kEKMm', '7324078'), - (847, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '841kEKMm', '7324082'), - (847, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '841kEKMm', '7331457'), - (847, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '841kEKMm', '7363643'), - (847, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '841kEKMm', '7368606'), - (847, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '841kEKMm', '7397462'), - (847, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '841kEKMm', '7424275'), - (847, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '841kEKMm', '7432751'), - (847, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '841kEKMm', '7432752'), - (847, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '841kEKMm', '7432753'), - (847, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '841kEKMm', '7432754'), - (847, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '841kEKMm', '7432755'), - (847, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '841kEKMm', '7432756'), - (847, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '841kEKMm', '7432758'), - (847, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '841kEKMm', '7432759'), - (847, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '841kEKMm', '7433834'), - (847, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '841kEKMm', '7470197'), - (847, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '841kEKMm', '7685613'), - (847, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '841kEKMm', '7688194'), - (847, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '841kEKMm', '7688196'), - (847, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '841kEKMm', '7688289'), - (847, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '841kEKMm', '7692763'), - (847, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '841kEKMm', '7697552'), - (847, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '841kEKMm', '7699878'), - (847, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '841kEKMm', '7704043'), - (847, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '841kEKMm', '7712467'), - (847, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '841kEKMm', '7713585'), - (847, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '841kEKMm', '7713586'), - (847, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '841kEKMm', '7738518'), - (847, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '841kEKMm', '7750636'), - (847, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '841kEKMm', '7796540'), - (847, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '841kEKMm', '7796541'), - (847, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '841kEKMm', '7796542'), - (847, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '841kEKMm', '7825913'), - (847, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '841kEKMm', '7826209'), - (847, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '841kEKMm', '7834742'), - (847, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '841kEKMm', '7842108'), - (847, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '841kEKMm', '7842902'), - (847, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '841kEKMm', '7842903'), - (847, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '841kEKMm', '7842904'), - (847, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '841kEKMm', '7842905'), - (847, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '841kEKMm', '7855719'), - (847, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '841kEKMm', '7860683'), - (847, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '841kEKMm', '7860684'), - (847, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '841kEKMm', '7866095'), - (847, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '841kEKMm', '7869170'), - (847, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '841kEKMm', '7869188'), - (847, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '841kEKMm', '7869201'), - (847, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '841kEKMm', '7877465'), - (847, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '841kEKMm', '7888250'), - (847, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '841kEKMm', '7904777'), - (847, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '841kEKMm', '8349164'), - (847, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '841kEKMm', '8349545'), - (847, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '841kEKMm', '8368028'), - (847, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '841kEKMm', '8368029'), - (847, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '841kEKMm', '8388462'), - (847, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '841kEKMm', '8400273'), - (847, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '841kEKMm', '8400275'), - (847, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '841kEKMm', '8400276'), - (847, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '841kEKMm', '8404977'), - (847, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '841kEKMm', '8430783'), - (847, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '841kEKMm', '8430784'), - (847, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '841kEKMm', '8430799'), - (847, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '841kEKMm', '8430800'), - (847, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '841kEKMm', '8430801'), - (847, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '841kEKMm', '8438709'), - (847, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '841kEKMm', '8457738'), - (847, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '841kEKMm', '8459566'), - (847, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '841kEKMm', '8459567'), - (847, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '841kEKMm', '8461032'), - (847, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '841kEKMm', '8477877'), - (847, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '841kEKMm', '8485688'), - (847, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '841kEKMm', '8490587'), - (847, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '841kEKMm', '8493552'), - (847, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '841kEKMm', '8493553'), - (847, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '841kEKMm', '8493554'), - (847, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '841kEKMm', '8493555'), - (847, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '841kEKMm', '8493556'), - (847, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '841kEKMm', '8493557'), - (847, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '841kEKMm', '8493558'), - (847, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '841kEKMm', '8493559'), - (847, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '841kEKMm', '8493560'), - (847, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '841kEKMm', '8493561'), - (847, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '841kEKMm', '8493572'), - (847, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '841kEKMm', '8540725'), - (847, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '841kEKMm', '8555421'), - (848, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'm7Qjkb54', '4210314'), - (848, 902, 'attending', '2021-08-06 01:38:03', '2025-12-17 19:47:41', 'm7Qjkb54', '4240318'), - (848, 903, 'attending', '2021-08-14 23:02:33', '2025-12-17 19:47:42', 'm7Qjkb54', '4240320'), - (848, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'm7Qjkb54', '4302093'), - (848, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'm7Qjkb54', '4304151'), - (848, 947, 'not_attending', '2021-08-09 19:20:34', '2025-12-17 19:47:41', 'm7Qjkb54', '4315713'), - (848, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'm7Qjkb54', '4345519'), - (848, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'm7Qjkb54', '4356801'), - (848, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'm7Qjkb54', '4358025'), - (848, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'm7Qjkb54', '4366186'), - (848, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'm7Qjkb54', '4366187'), - (848, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'm7Qjkb54', '4402823'), - (848, 990, 'attending', '2021-09-03 20:44:59', '2025-12-17 19:47:43', 'm7Qjkb54', '4420735'), - (848, 991, 'attending', '2021-09-11 22:01:51', '2025-12-17 19:47:43', 'm7Qjkb54', '4420738'), - (848, 992, 'attending', '2021-09-18 21:38:52', '2025-12-17 19:47:33', 'm7Qjkb54', '4420739'), - (848, 993, 'maybe', '2021-09-25 20:47:04', '2025-12-17 19:47:34', 'm7Qjkb54', '4420741'), - (848, 995, 'attending', '2021-10-09 19:17:06', '2025-12-17 19:47:34', 'm7Qjkb54', '4420744'), - (848, 996, 'attending', '2021-10-16 17:22:43', '2025-12-17 19:47:35', 'm7Qjkb54', '4420747'), - (848, 997, 'attending', '2021-10-23 00:03:37', '2025-12-17 19:47:35', 'm7Qjkb54', '4420748'), - (848, 998, 'attending', '2021-10-28 20:45:41', '2025-12-17 19:47:36', 'm7Qjkb54', '4420749'), - (848, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm7Qjkb54', '4461883'), - (848, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm7Qjkb54', '4508342'), - (848, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm7Qjkb54', '4568602'), - (848, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm7Qjkb54', '4572153'), - (848, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'm7Qjkb54', '4585962'), - (848, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm7Qjkb54', '4596356'), - (848, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm7Qjkb54', '4598860'), - (848, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm7Qjkb54', '4598861'), - (848, 1099, 'maybe', '2021-11-06 21:40:44', '2025-12-17 19:47:36', 'm7Qjkb54', '4602797'), - (848, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm7Qjkb54', '4637896'), - (848, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm7Qjkb54', '4642994'), - (848, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm7Qjkb54', '4642995'), - (848, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm7Qjkb54', '4642996'), - (848, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm7Qjkb54', '4642997'), - (848, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm7Qjkb54', '4645687'), - (848, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm7Qjkb54', '4645698'), - (848, 1128, 'attending', '2021-11-20 07:51:35', '2025-12-17 19:47:37', 'm7Qjkb54', '4645704'), - (848, 1129, 'attending', '2021-11-27 21:10:38', '2025-12-17 19:47:37', 'm7Qjkb54', '4645705'), - (848, 1130, 'attending', '2021-12-04 22:20:36', '2025-12-17 19:47:37', 'm7Qjkb54', '4658824'), - (848, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm7Qjkb54', '4668385'), - (848, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'm7Qjkb54', '4694407'), - (848, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm7Qjkb54', '4736497'), - (848, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm7Qjkb54', '4736499'), - (848, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm7Qjkb54', '4736500'), - (848, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm7Qjkb54', '4736503'), - (848, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm7Qjkb54', '4736504'), - (848, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm7Qjkb54', '4746789'), - (848, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm7Qjkb54', '4753929'), - (848, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm7Qjkb54', '5038850'), - (848, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm7Qjkb54', '5045826'), - (848, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm7Qjkb54', '5132533'), - (848, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm7Qjkb54', '5186582'), - (848, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm7Qjkb54', '5186583'), - (848, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm7Qjkb54', '5186585'), - (848, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm7Qjkb54', '5190437'), - (848, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm7Qjkb54', '5215989'), - (848, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm7Qjkb54', '6045684'), - (849, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd56WXgrm', '6337970'), - (849, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd56WXgrm', '6342044'), - (849, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'd56WXgrm', '6342591'), - (849, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'd56WXgrm', '6343294'), - (849, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd56WXgrm', '6347034'), - (849, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd56WXgrm', '6347056'), - (849, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd56WXgrm', '6353830'), - (849, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd56WXgrm', '6353831'), - (849, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd56WXgrm', '6357867'), - (849, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd56WXgrm', '6358652'), - (849, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd56WXgrm', '6361709'), - (849, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd56WXgrm', '6361710'), - (849, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd56WXgrm', '6361711'), - (849, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd56WXgrm', '6361712'), - (849, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd56WXgrm', '6361713'), - (849, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd56WXgrm', '6382573'), - (849, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd56WXgrm', '6388604'), - (849, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd56WXgrm', '6394629'), - (849, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd56WXgrm', '6394631'), - (849, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd56WXgrm', '6431478'), - (850, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArjgwZA', '7869188'), - (850, 3057, 'attending', '2025-03-24 18:19:49', '2025-12-17 19:46:19', '1ArjgwZA', '7890059'), - (850, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1ArjgwZA', '7904777'), - (850, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArjgwZA', '8349164'), - (850, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArjgwZA', '8349545'), - (850, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '1ArjgwZA', '8353584'), - (850, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1ArjgwZA', '8368028'), - (850, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1ArjgwZA', '8368029'), - (850, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1ArjgwZA', '8388462'), - (850, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1ArjgwZA', '8400273'), - (850, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '1ArjgwZA', '8400274'), - (850, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1ArjgwZA', '8400275'), - (850, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '1ArjgwZA', '8400276'), - (850, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1ArjgwZA', '8404977'), - (850, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1ArjgwZA', '8430783'), - (850, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1ArjgwZA', '8430784'), - (850, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1ArjgwZA', '8430799'), - (850, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1ArjgwZA', '8430800'), - (850, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1ArjgwZA', '8430801'), - (850, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1ArjgwZA', '8438709'), - (850, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1ArjgwZA', '8457738'), - (850, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1ArjgwZA', '8459566'), - (850, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1ArjgwZA', '8459567'), - (850, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1ArjgwZA', '8461032'), - (850, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1ArjgwZA', '8477877'), - (850, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1ArjgwZA', '8485688'), - (851, 1700, 'maybe', '2022-10-01 19:53:53', '2025-12-17 19:47:12', '4vjVNj14', '5606814'), - (851, 1713, 'attending', '2022-10-20 22:09:46', '2025-12-17 19:47:13', '4vjVNj14', '5622108'), - (851, 1718, 'attending', '2022-10-18 22:02:56', '2025-12-17 19:47:12', '4vjVNj14', '5630907'), - (851, 1719, 'attending', '2022-10-08 02:00:56', '2025-12-17 19:47:12', '4vjVNj14', '5630958'), - (851, 1720, 'attending', '2022-10-15 03:13:31', '2025-12-17 19:47:12', '4vjVNj14', '5630959'), - (851, 1721, 'attending', '2022-10-16 23:37:29', '2025-12-17 19:47:13', '4vjVNj14', '5630960'), - (851, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4vjVNj14', '5630961'), - (851, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4vjVNj14', '5630962'), - (851, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4vjVNj14', '5630966'), - (851, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4vjVNj14', '5630967'), - (851, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4vjVNj14', '5630968'), - (851, 1727, 'attending', '2022-12-03 04:15:04', '2025-12-17 19:47:16', '4vjVNj14', '5630969'), - (851, 1730, 'maybe', '2022-10-06 20:10:36', '2025-12-17 19:47:12', '4vjVNj14', '5634666'), - (851, 1731, 'attending', '2022-10-07 22:29:34', '2025-12-17 19:47:12', '4vjVNj14', '5635226'), - (851, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4vjVNj14', '5635406'), - (851, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4vjVNj14', '5638765'), - (851, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4vjVNj14', '5640097'), - (851, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4vjVNj14', '5640843'), - (851, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4vjVNj14', '5641521'), - (851, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4vjVNj14', '5642818'), - (851, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4vjVNj14', '5652395'), - (851, 1761, 'attending', '2022-11-18 22:39:52', '2025-12-17 19:47:16', '4vjVNj14', '5670434'), - (851, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4vjVNj14', '5670445'), - (851, 1763, 'maybe', '2022-11-11 19:28:43', '2025-12-17 19:47:15', '4vjVNj14', '5670803'), - (851, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4vjVNj14', '5671637'), - (851, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4vjVNj14', '5672329'), - (851, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4vjVNj14', '5674057'), - (851, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4vjVNj14', '5674060'), - (851, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4vjVNj14', '5677461'), - (851, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4vjVNj14', '5698046'), - (851, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4vjVNj14', '5699760'), - (851, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4vjVNj14', '5741601'), - (851, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4vjVNj14', '5763458'), - (851, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4vjVNj14', '5774172'), - (851, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4vjVNj14', '5818247'), - (851, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4vjVNj14', '5819471'), - (851, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4vjVNj14', '5827739'), - (851, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4vjVNj14', '5844306'), - (851, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4vjVNj14', '5850159'), - (851, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4vjVNj14', '5858999'), - (851, 1852, 'attending', '2023-01-12 00:23:17', '2025-12-17 19:47:05', '4vjVNj14', '5869898'), - (851, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4vjVNj14', '5871984'), - (851, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4vjVNj14', '5876354'), - (851, 1864, 'attending', '2023-01-21 05:01:29', '2025-12-17 19:47:05', '4vjVNj14', '5879675'), - (851, 1865, 'attending', '2023-01-28 07:29:25', '2025-12-17 19:47:06', '4vjVNj14', '5879676'), - (851, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4vjVNj14', '5880939'), - (851, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4vjVNj14', '5880940'), - (851, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4vjVNj14', '5880942'), - (851, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4vjVNj14', '5880943'), - (851, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4vjVNj14', '5887890'), - (851, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4vjVNj14', '5888598'), - (851, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4vjVNj14', '5893260'), - (851, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4vjVNj14', '5899826'), - (851, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4vjVNj14', '5900199'), - (851, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4vjVNj14', '5900200'), - (851, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4vjVNj14', '5900202'), - (851, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4vjVNj14', '5900203'), - (851, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4vjVNj14', '5901108'), - (851, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4vjVNj14', '5901126'), - (851, 1897, 'attending', '2023-02-10 19:20:08', '2025-12-17 19:47:07', '4vjVNj14', '5901128'), - (851, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4vjVNj14', '5909655'), - (851, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4vjVNj14', '5910522'), - (851, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4vjVNj14', '5910526'), - (851, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4vjVNj14', '5910528'), - (851, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4vjVNj14', '5916219'), - (851, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4vjVNj14', '5936234'), - (851, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4vjVNj14', '5958351'), - (851, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4vjVNj14', '5959751'), - (851, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4vjVNj14', '5959755'), - (851, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4vjVNj14', '5960055'), - (851, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4vjVNj14', '5961684'), - (851, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '4vjVNj14', '5962132'), - (851, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '4vjVNj14', '5962133'), - (851, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4vjVNj14', '5962134'), - (851, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4vjVNj14', '5962317'), - (851, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4vjVNj14', '5962318'), - (851, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4vjVNj14', '5965933'), - (851, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4vjVNj14', '5967014'), - (851, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4vjVNj14', '5972815'), - (851, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4vjVNj14', '5974016'), - (851, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4vjVNj14', '5981515'), - (851, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4vjVNj14', '5993516'), - (851, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4vjVNj14', '5998939'), - (851, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4vjVNj14', '6028191'), - (851, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4vjVNj14', '6040066'), - (851, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4vjVNj14', '6042717'), - (851, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4vjVNj14', '6044838'), - (851, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4vjVNj14', '6044839'), - (851, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4vjVNj14', '6045684'), - (851, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4vjVNj14', '6050104'), - (851, 2003, 'maybe', '2023-05-19 23:02:23', '2025-12-17 19:47:03', '4vjVNj14', '6052606'), - (851, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4vjVNj14', '6053195'), - (851, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4vjVNj14', '6053198'), - (851, 2008, 'attending', '2023-04-07 22:48:53', '2025-12-17 19:46:58', '4vjVNj14', '6055808'), - (851, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4vjVNj14', '6056085'), - (851, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4vjVNj14', '6056916'), - (851, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4vjVNj14', '6059290'), - (851, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4vjVNj14', '6060328'), - (851, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4vjVNj14', '6061037'), - (851, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4vjVNj14', '6061039'), - (851, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4vjVNj14', '6067245'), - (851, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4vjVNj14', '6068094'), - (851, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4vjVNj14', '6068252'), - (851, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4vjVNj14', '6068253'), - (851, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4vjVNj14', '6068254'), - (851, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '4vjVNj14', '6068280'), - (851, 2032, 'not_attending', '2023-06-03 06:34:48', '2025-12-17 19:47:04', '4vjVNj14', '6068281'), - (851, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4vjVNj14', '6069093'), - (851, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4vjVNj14', '6072528'), - (851, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4vjVNj14', '6079840'), - (851, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4vjVNj14', '6083398'), - (851, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4vjVNj14', '6093504'), - (851, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4vjVNj14', '6097414'), - (851, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4vjVNj14', '6097442'), - (851, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4vjVNj14', '6097684'), - (851, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4vjVNj14', '6098762'), - (851, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4vjVNj14', '6101361'), - (851, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4vjVNj14', '6101362'), - (851, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4vjVNj14', '6103752'), - (851, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4vjVNj14', '6107314'), - (851, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4vjVNj14', '6120034'), - (851, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4vjVNj14', '6136733'), - (851, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4vjVNj14', '6137989'), - (851, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4vjVNj14', '6150864'), - (851, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4vjVNj14', '6155491'), - (851, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4vjVNj14', '6164417'), - (851, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4vjVNj14', '6166388'), - (851, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4vjVNj14', '6176439'), - (851, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4vjVNj14', '6182410'), - (851, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4vjVNj14', '6185812'), - (851, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4vjVNj14', '6187651'), - (851, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4vjVNj14', '6187963'), - (851, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4vjVNj14', '6187964'), - (851, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4vjVNj14', '6187966'), - (851, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4vjVNj14', '6187967'), - (851, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4vjVNj14', '6187969'), - (851, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4vjVNj14', '6334878'), - (851, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4vjVNj14', '6337236'), - (851, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4vjVNj14', '6337970'), - (851, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4vjVNj14', '6338308'), - (851, 2160, 'attending', '2023-07-29 16:15:49', '2025-12-17 19:46:54', '4vjVNj14', '6338358'), - (851, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4vjVNj14', '6340845'), - (851, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4vjVNj14', '6341710'), - (851, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4vjVNj14', '6342044'), - (851, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4vjVNj14', '6342298'), - (851, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4vjVNj14', '6343294'), - (851, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4vjVNj14', '6347034'), - (851, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4vjVNj14', '6347056'), - (851, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4vjVNj14', '6353830'), - (851, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4vjVNj14', '6353831'), - (851, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4vjVNj14', '6357867'), - (851, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4vjVNj14', '6358652'), - (851, 2196, 'attending', '2023-09-08 22:49:53', '2025-12-17 19:46:56', '4vjVNj14', '6359398'), - (851, 2197, 'attending', '2023-09-15 21:03:54', '2025-12-17 19:46:44', '4vjVNj14', '6359399'), - (851, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4vjVNj14', '6361709'), - (851, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4vjVNj14', '6361710'), - (851, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4vjVNj14', '6361711'), - (851, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4vjVNj14', '6361712'), - (851, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4vjVNj14', '6361713'), - (851, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4vjVNj14', '6382573'), - (851, 2240, 'attending', '2023-09-09 21:05:06', '2025-12-17 19:46:56', '4vjVNj14', '6388603'), - (851, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4vjVNj14', '6388604'), - (851, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4vjVNj14', '6394629'), - (851, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4vjVNj14', '6394631'), - (851, 2258, 'attending', '2023-09-24 20:10:02', '2025-12-17 19:46:45', '4vjVNj14', '6419492'), - (851, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4vjVNj14', '6440863'), - (851, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4vjVNj14', '6445440'), - (851, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4vjVNj14', '6453951'), - (851, 2286, 'attending', '2023-12-01 22:22:43', '2025-12-17 19:46:48', '4vjVNj14', '6460930'), - (851, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4vjVNj14', '6461696'), - (851, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4vjVNj14', '6462129'), - (851, 2290, 'attending', '2023-10-19 00:21:39', '2025-12-17 19:46:46', '4vjVNj14', '6462214'), - (851, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4vjVNj14', '6463218'), - (851, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4vjVNj14', '6472181'), - (851, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4vjVNj14', '6482693'), - (851, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4vjVNj14', '6484200'), - (851, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '4vjVNj14', '6484680'), - (851, 2317, 'attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4vjVNj14', '6507741'), - (851, 2322, 'attending', '2023-11-18 07:36:49', '2025-12-17 19:46:48', '4vjVNj14', '6514659'), - (851, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4vjVNj14', '6514660'), - (851, 2325, 'attending', '2023-12-16 22:47:13', '2025-12-17 19:46:36', '4vjVNj14', '6514663'), - (851, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4vjVNj14', '6519103'), - (851, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4vjVNj14', '6535681'), - (851, 2338, 'maybe', '2023-11-26 01:23:18', '2025-12-17 19:46:48', '4vjVNj14', '6538868'), - (851, 2345, 'attending', '2023-11-30 00:12:12', '2025-12-17 19:46:48', '4vjVNj14', '6582414'), - (851, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4vjVNj14', '6584747'), - (851, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4vjVNj14', '6587097'), - (851, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4vjVNj14', '6609022'), - (851, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4vjVNj14', '6632757'), - (851, 2375, 'attending', '2023-12-21 00:09:47', '2025-12-17 19:46:36', '4vjVNj14', '6634548'), - (851, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4vjVNj14', '6644187'), - (851, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4vjVNj14', '6648951'), - (851, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4vjVNj14', '6648952'), - (851, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4vjVNj14', '6655401'), - (851, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4vjVNj14', '6661585'), - (851, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4vjVNj14', '6661588'), - (851, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4vjVNj14', '6661589'), - (851, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4vjVNj14', '6699906'), - (851, 2408, 'attending', '2024-01-27 02:59:28', '2025-12-17 19:46:40', '4vjVNj14', '6699907'), - (851, 2409, 'attending', '2024-02-03 00:27:20', '2025-12-17 19:46:41', '4vjVNj14', '6699909'), - (851, 2410, 'attending', '2024-02-10 05:17:54', '2025-12-17 19:46:41', '4vjVNj14', '6699911'), - (851, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '4vjVNj14', '6699913'), - (851, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4vjVNj14', '6701109'), - (851, 2424, 'attending', '2024-01-20 03:50:08', '2025-12-17 19:46:40', '4vjVNj14', '6705143'), - (851, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4vjVNj14', '6705219'), - (851, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4vjVNj14', '6710153'), - (851, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4vjVNj14', '6711552'), - (851, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '4vjVNj14', '6711553'), - (851, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4vjVNj14', '6722688'), - (851, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4vjVNj14', '6730620'), - (851, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4vjVNj14', '6730642'), - (851, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4vjVNj14', '6740364'), - (851, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4vjVNj14', '6743829'), - (851, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4vjVNj14', '7030380'), - (851, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4vjVNj14', '7033677'), - (851, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4vjVNj14', '7035415'), - (851, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4vjVNj14', '7044715'), - (851, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4vjVNj14', '7050318'), - (851, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4vjVNj14', '7050319'), - (851, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4vjVNj14', '7050322'), - (851, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4vjVNj14', '7057804'), - (851, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '4vjVNj14', '7059866'), - (851, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4vjVNj14', '7072824'), - (851, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4vjVNj14', '7074348'), - (851, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4vjVNj14', '7074364'), - (851, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4vjVNj14', '7089267'), - (851, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4vjVNj14', '7098747'), - (851, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4vjVNj14', '7113468'), - (851, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4vjVNj14', '7114856'), - (851, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', '4vjVNj14', '7114951'), - (851, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4vjVNj14', '7114955'), - (851, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4vjVNj14', '7114956'), - (851, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4vjVNj14', '7114957'), - (851, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4vjVNj14', '7153615'), - (851, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4vjVNj14', '7159484'), - (851, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4vjVNj14', '7178446'), - (851, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4vjVNj14', '7220467'), - (851, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4vjVNj14', '7240354'), - (851, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4vjVNj14', '7251633'), - (851, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4vjVNj14', '7263048'), - (851, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4vjVNj14', '7302674'), - (851, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4vjVNj14', '7324073'), - (851, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4vjVNj14', '7324074'), - (851, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4vjVNj14', '7324075'), - (851, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4vjVNj14', '7324078'), - (851, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4vjVNj14', '7324082'), - (851, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4vjVNj14', '7331457'), - (851, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4vjVNj14', '7356752'), - (851, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4vjVNj14', '7363643'), - (851, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4vjVNj14', '7368606'), - (851, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4vjVNj14', '7397462'), - (851, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4vjVNj14', '7424275'), - (851, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4vjVNj14', '7424276'), - (851, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4vjVNj14', '7432751'), - (851, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4vjVNj14', '7432752'), - (851, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4vjVNj14', '7432753'), - (851, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4vjVNj14', '7432754'), - (851, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4vjVNj14', '7432755'), - (851, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4vjVNj14', '7432756'), - (851, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4vjVNj14', '7432758'), - (851, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4vjVNj14', '7432759'), - (851, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4vjVNj14', '7433834'), - (851, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4vjVNj14', '7470197'), - (851, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4vjVNj14', '7685613'), - (851, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4vjVNj14', '7688194'), - (851, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4vjVNj14', '7688196'), - (851, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4vjVNj14', '7688289'), - (852, 871, 'attending', '2021-07-09 13:44:45', '2025-12-17 19:47:39', 'x4oRDGnA', '4136938'), - (852, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'x4oRDGnA', '4136947'), - (852, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oRDGnA', '4210314'), - (852, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oRDGnA', '4225444'), - (852, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'x4oRDGnA', '4229420'), - (852, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'x4oRDGnA', '4229423'), - (852, 900, 'attending', '2021-07-24 16:23:33', '2025-12-17 19:47:40', 'x4oRDGnA', '4240316'), - (852, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oRDGnA', '4240317'), - (852, 902, 'attending', '2021-08-07 16:34:58', '2025-12-17 19:47:41', 'x4oRDGnA', '4240318'), - (852, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'x4oRDGnA', '4240320'), - (852, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oRDGnA', '4275957'), - (852, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oRDGnA', '4277819'), - (852, 923, 'attending', '2021-07-19 20:23:39', '2025-12-17 19:47:40', 'x4oRDGnA', '4292773'), - (852, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oRDGnA', '4301723'), - (852, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'x4oRDGnA', '4302093'), - (852, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oRDGnA', '4304151'), - (852, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'x4oRDGnA', '4345519'), - (852, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'x4oRDGnA', '4356801'), - (852, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'x4oRDGnA', '4358025'), - (852, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'x4oRDGnA', '4366186'), - (852, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'x4oRDGnA', '4366187'), - (852, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'x4oRDGnA', '4402823'), - (852, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'x4oRDGnA', '4420735'), - (852, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'x4oRDGnA', '4420738'), - (852, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'x4oRDGnA', '4420739'), - (852, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'x4oRDGnA', '4420741'), - (852, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'x4oRDGnA', '4420744'), - (852, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'x4oRDGnA', '4420747'), - (852, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'x4oRDGnA', '4420748'), - (852, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'x4oRDGnA', '4420749'), - (852, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'x4oRDGnA', '4461883'), - (852, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oRDGnA', '6045684'), - (853, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oxGnYMd', '6045684'), - (854, 245, 'attending', '2020-12-01 21:16:13', '2025-12-17 19:47:54', 'Pm7o7GYm', '3149476'), - (854, 249, 'not_attending', '2020-11-17 03:54:21', '2025-12-17 19:47:54', 'Pm7o7GYm', '3149480'), - (854, 468, 'attending', '2020-11-21 23:36:26', '2025-12-17 19:47:54', 'Pm7o7GYm', '3285413'), - (854, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'Pm7o7GYm', '3285414'), - (854, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Pm7o7GYm', '3297764'), - (854, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Pm7o7GYm', '3313856'), - (854, 495, 'not_attending', '2020-12-07 19:19:59', '2025-12-17 19:47:54', 'Pm7o7GYm', '3314009'), - (854, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Pm7o7GYm', '3314909'), - (854, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Pm7o7GYm', '3314964'), - (854, 502, 'attending', '2020-12-12 19:15:53', '2025-12-17 19:47:55', 'Pm7o7GYm', '3323365'), - (854, 509, 'attending', '2021-01-21 03:05:41', '2025-12-17 19:47:49', 'Pm7o7GYm', '3324232'), - (854, 511, 'maybe', '2020-12-14 21:11:45', '2025-12-17 19:47:55', 'Pm7o7GYm', '3325335'), - (854, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Pm7o7GYm', '3329383'), - (854, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Pm7o7GYm', '3351539'), - (854, 533, 'attending', '2021-01-06 23:21:09', '2025-12-17 19:47:48', 'Pm7o7GYm', '3382812'), - (854, 536, 'attending', '2021-01-09 00:03:07', '2025-12-17 19:47:48', 'Pm7o7GYm', '3386848'), - (854, 537, 'attending', '2021-01-09 21:29:08', '2025-12-17 19:47:48', 'Pm7o7GYm', '3387153'), - (854, 540, 'maybe', '2021-01-07 03:04:20', '2025-12-17 19:47:48', 'Pm7o7GYm', '3389527'), - (854, 543, 'attending', '2021-01-15 18:06:08', '2025-12-17 19:47:48', 'Pm7o7GYm', '3396499'), - (854, 548, 'attending', '2021-01-14 00:24:30', '2025-12-17 19:47:48', 'Pm7o7GYm', '3403650'), - (854, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Pm7o7GYm', '3406988'), - (854, 554, 'attending', '2021-01-20 22:40:48', '2025-12-17 19:47:49', 'Pm7o7GYm', '3408338'), - (854, 555, 'attending', '2021-01-20 22:39:29', '2025-12-17 19:47:49', 'Pm7o7GYm', '3416576'), - (854, 559, 'attending', '2021-01-28 23:55:20', '2025-12-17 19:47:49', 'Pm7o7GYm', '3421439'), - (854, 562, 'attending', '2021-01-23 19:36:05', '2025-12-17 19:47:49', 'Pm7o7GYm', '3424911'), - (854, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Pm7o7GYm', '3426074'), - (854, 567, 'attending', '2021-01-24 04:46:36', '2025-12-17 19:47:50', 'Pm7o7GYm', '3428895'), - (854, 568, 'attending', '2021-01-27 23:53:50', '2025-12-17 19:47:50', 'Pm7o7GYm', '3430267'), - (854, 579, 'attending', '2021-02-03 21:14:29', '2025-12-17 19:47:50', 'Pm7o7GYm', '3440978'), - (854, 581, 'attending', '2021-02-01 14:18:31', '2025-12-17 19:47:50', 'Pm7o7GYm', '3445029'), - (854, 594, 'attending', '2021-03-01 17:39:07', '2025-12-17 19:47:51', 'Pm7o7GYm', '3467759'), - (854, 598, 'attending', '2021-02-07 21:49:17', '2025-12-17 19:47:50', 'Pm7o7GYm', '3468003'), - (854, 602, 'not_attending', '2021-02-12 14:29:10', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470303'), - (854, 603, 'attending', '2021-02-14 05:09:33', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470304'), - (854, 604, 'attending', '2021-02-21 17:57:35', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470305'), - (854, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470991'), - (854, 608, 'attending', '2021-02-09 19:05:22', '2025-12-17 19:47:50', 'Pm7o7GYm', '3475332'), - (854, 611, 'attending', '2021-02-15 17:01:53', '2025-12-17 19:47:50', 'Pm7o7GYm', '3482659'), - (854, 615, 'attending', '2021-02-19 17:20:01', '2025-12-17 19:47:50', 'Pm7o7GYm', '3490045'), - (854, 621, 'attending', '2021-03-04 21:43:12', '2025-12-17 19:47:51', 'Pm7o7GYm', '3517815'), - (854, 622, 'attending', '2021-03-09 19:11:21', '2025-12-17 19:47:51', 'Pm7o7GYm', '3517816'), - (854, 623, 'maybe', '2021-02-28 20:22:33', '2025-12-17 19:47:51', 'Pm7o7GYm', '3523941'), - (854, 625, 'attending', '2021-02-28 21:42:19', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533296'), - (854, 626, 'attending', '2021-02-28 21:42:17', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533298'), - (854, 627, 'attending', '2021-03-10 01:47:29', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533303'), - (854, 628, 'not_attending', '2021-03-14 21:37:11', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533305'), - (854, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533850'), - (854, 637, 'maybe', '2021-03-01 17:34:03', '2025-12-17 19:47:51', 'Pm7o7GYm', '3536411'), - (854, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Pm7o7GYm', '3536632'), - (854, 639, 'maybe', '2021-03-07 05:41:01', '2025-12-17 19:47:51', 'Pm7o7GYm', '3536656'), - (854, 640, 'attending', '2021-03-03 01:19:30', '2025-12-17 19:47:51', 'Pm7o7GYm', '3538866'), - (854, 641, 'not_attending', '2021-03-28 04:28:59', '2025-12-17 19:47:44', 'Pm7o7GYm', '3539916'), - (854, 642, 'attending', '2021-04-08 14:43:10', '2025-12-17 19:47:44', 'Pm7o7GYm', '3539917'), - (854, 643, 'attending', '2021-04-14 20:32:19', '2025-12-17 19:47:45', 'Pm7o7GYm', '3539918'), - (854, 644, 'attending', '2021-04-24 02:03:40', '2025-12-17 19:47:45', 'Pm7o7GYm', '3539919'), - (854, 645, 'attending', '2021-05-08 14:32:15', '2025-12-17 19:47:46', 'Pm7o7GYm', '3539920'), - (854, 646, 'attending', '2021-05-14 14:05:18', '2025-12-17 19:47:46', 'Pm7o7GYm', '3539921'), - (854, 647, 'attending', '2021-05-21 21:18:54', '2025-12-17 19:47:46', 'Pm7o7GYm', '3539922'), - (854, 648, 'not_attending', '2021-05-15 19:44:27', '2025-12-17 19:47:47', 'Pm7o7GYm', '3539923'), - (854, 649, 'not_attending', '2021-03-19 23:17:20', '2025-12-17 19:47:51', 'Pm7o7GYm', '3539927'), - (854, 650, 'attending', '2021-03-26 03:25:48', '2025-12-17 19:47:44', 'Pm7o7GYm', '3539928'), - (854, 680, 'maybe', '2021-03-10 23:19:42', '2025-12-17 19:47:51', 'Pm7o7GYm', '3547700'), - (854, 684, 'maybe', '2021-03-12 06:05:27', '2025-12-17 19:47:51', 'Pm7o7GYm', '3549257'), - (854, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Pm7o7GYm', '3582734'), - (854, 707, 'attending', '2021-04-25 21:05:55', '2025-12-17 19:47:46', 'Pm7o7GYm', '3583262'), - (854, 711, 'maybe', '2021-03-26 03:26:07', '2025-12-17 19:47:44', 'Pm7o7GYm', '3588075'), - (854, 717, 'maybe', '2021-03-25 20:43:21', '2025-12-17 19:47:44', 'Pm7o7GYm', '3619523'), - (854, 724, 'maybe', '2021-04-11 16:41:09', '2025-12-17 19:47:46', 'Pm7o7GYm', '3661369'), - (854, 725, 'attending', '2021-05-18 00:13:54', '2025-12-17 19:47:47', 'Pm7o7GYm', '3661372'), - (854, 728, 'attending', '2021-04-14 20:32:03', '2025-12-17 19:47:44', 'Pm7o7GYm', '3668073'), - (854, 729, 'attending', '2021-04-28 21:09:41', '2025-12-17 19:47:46', 'Pm7o7GYm', '3668075'), - (854, 730, 'maybe', '2021-04-04 20:45:48', '2025-12-17 19:47:46', 'Pm7o7GYm', '3668076'), - (854, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7o7GYm', '3674262'), - (854, 732, 'maybe', '2021-04-05 00:09:59', '2025-12-17 19:47:45', 'Pm7o7GYm', '3674268'), - (854, 734, 'attending', '2021-04-04 20:41:09', '2025-12-17 19:47:44', 'Pm7o7GYm', '3676806'), - (854, 735, 'maybe', '2021-04-05 00:35:27', '2025-12-17 19:47:46', 'Pm7o7GYm', '3677402'), - (854, 766, 'attending', '2021-05-12 01:35:42', '2025-12-17 19:47:46', 'Pm7o7GYm', '3721383'), - (854, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7o7GYm', '3730212'), - (854, 777, 'not_attending', '2021-05-01 15:15:45', '2025-12-17 19:47:46', 'Pm7o7GYm', '3746248'), - (854, 785, 'maybe', '2021-05-12 22:54:17', '2025-12-17 19:47:46', 'Pm7o7GYm', '3779779'), - (854, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7o7GYm', '3793156'), - (854, 816, 'attending', '2021-05-19 22:28:41', '2025-12-17 19:47:46', 'Pm7o7GYm', '3826524'), - (854, 823, 'attending', '2021-06-19 14:43:50', '2025-12-17 19:47:48', 'Pm7o7GYm', '3974109'), - (854, 827, 'not_attending', '2021-06-04 21:47:21', '2025-12-17 19:47:47', 'Pm7o7GYm', '3975311'), - (854, 828, 'attending', '2021-06-12 14:10:30', '2025-12-17 19:47:47', 'Pm7o7GYm', '3975312'), - (854, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7o7GYm', '3994992'), - (854, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Pm7o7GYm', '4014338'), - (854, 867, 'attending', '2021-06-25 19:19:10', '2025-12-17 19:47:38', 'Pm7o7GYm', '4021848'), - (854, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Pm7o7GYm', '4136744'), - (854, 870, 'not_attending', '2021-06-27 23:26:20', '2025-12-17 19:47:39', 'Pm7o7GYm', '4136937'), - (854, 871, 'attending', '2021-07-07 22:20:05', '2025-12-17 19:47:39', 'Pm7o7GYm', '4136938'), - (854, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Pm7o7GYm', '4136947'), - (854, 884, 'not_attending', '2021-08-15 19:09:35', '2025-12-17 19:47:42', 'Pm7o7GYm', '4210314'), - (854, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Pm7o7GYm', '4225444'), - (854, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Pm7o7GYm', '4239259'), - (854, 900, 'attending', '2021-07-19 16:06:59', '2025-12-17 19:47:40', 'Pm7o7GYm', '4240316'), - (854, 901, 'attending', '2021-07-26 20:40:05', '2025-12-17 19:47:40', 'Pm7o7GYm', '4240317'), - (854, 902, 'not_attending', '2021-08-04 19:02:43', '2025-12-17 19:47:41', 'Pm7o7GYm', '4240318'), - (854, 903, 'not_attending', '2021-08-13 15:06:44', '2025-12-17 19:47:42', 'Pm7o7GYm', '4240320'), - (854, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Pm7o7GYm', '4250163'), - (854, 916, 'attending', '2021-07-22 22:21:08', '2025-12-17 19:47:40', 'Pm7o7GYm', '4273772'), - (854, 919, 'not_attending', '2021-07-14 15:08:09', '2025-12-17 19:47:39', 'Pm7o7GYm', '4275957'), - (854, 920, 'maybe', '2021-07-21 20:44:31', '2025-12-17 19:47:40', 'Pm7o7GYm', '4277819'), - (854, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Pm7o7GYm', '4301723'), - (854, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Pm7o7GYm', '4302093'), - (854, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Pm7o7GYm', '4304151'), - (854, 937, 'maybe', '2021-07-24 13:46:58', '2025-12-17 19:47:40', 'Pm7o7GYm', '4306596'), - (854, 940, 'attending', '2021-07-30 11:22:08', '2025-12-17 19:47:40', 'Pm7o7GYm', '4309049'), - (854, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Pm7o7GYm', '4356801'), - (854, 973, 'not_attending', '2021-08-21 19:03:52', '2025-12-17 19:47:42', 'Pm7o7GYm', '4366186'), - (854, 974, 'attending', '2021-08-23 16:31:59', '2025-12-17 19:47:42', 'Pm7o7GYm', '4366187'), - (854, 990, 'attending', '2021-09-01 12:53:28', '2025-12-17 19:47:43', 'Pm7o7GYm', '4420735'), - (854, 991, 'attending', '2021-09-08 12:24:58', '2025-12-17 19:47:43', 'Pm7o7GYm', '4420738'), - (854, 992, 'not_attending', '2021-09-13 02:51:54', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420739'), - (854, 993, 'not_attending', '2021-09-22 19:03:52', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420741'), - (854, 994, 'attending', '2021-10-02 02:41:54', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420742'), - (854, 995, 'attending', '2021-10-09 16:07:31', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420744'), - (854, 996, 'attending', '2021-10-16 03:49:57', '2025-12-17 19:47:35', 'Pm7o7GYm', '4420747'), - (854, 997, 'attending', '2021-10-23 15:29:39', '2025-12-17 19:47:35', 'Pm7o7GYm', '4420748'), - (854, 998, 'not_attending', '2021-10-27 01:07:01', '2025-12-17 19:47:36', 'Pm7o7GYm', '4420749'), - (854, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Pm7o7GYm', '4461883'), - (854, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Pm7o7GYm', '4508342'), - (854, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Pm7o7GYm', '4568602'), - (854, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Pm7o7GYm', '4572153'), - (854, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Pm7o7GYm', '4585962'), - (854, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'Pm7o7GYm', '4596356'), - (854, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Pm7o7GYm', '4598860'), - (854, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Pm7o7GYm', '4598861'), - (854, 1099, 'not_attending', '2021-11-01 02:52:12', '2025-12-17 19:47:36', 'Pm7o7GYm', '4602797'), - (854, 1114, 'attending', '2021-11-12 16:06:15', '2025-12-17 19:47:36', 'Pm7o7GYm', '4637896'), - (854, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Pm7o7GYm', '4642994'), - (854, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Pm7o7GYm', '4642995'), - (854, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Pm7o7GYm', '4642996'), - (854, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Pm7o7GYm', '4642997'), - (854, 1126, 'not_attending', '2021-12-09 12:57:04', '2025-12-17 19:47:38', 'Pm7o7GYm', '4645687'), - (854, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Pm7o7GYm', '4645698'), - (854, 1128, 'not_attending', '2021-11-19 20:31:43', '2025-12-17 19:47:37', 'Pm7o7GYm', '4645704'), - (854, 1129, 'not_attending', '2021-11-19 20:31:52', '2025-12-17 19:47:37', 'Pm7o7GYm', '4645705'), - (854, 1130, 'not_attending', '2021-12-04 20:25:27', '2025-12-17 19:47:37', 'Pm7o7GYm', '4658824'), - (854, 1131, 'not_attending', '2021-12-09 12:57:21', '2025-12-17 19:47:31', 'Pm7o7GYm', '4658825'), - (854, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Pm7o7GYm', '4668385'), - (854, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Pm7o7GYm', '4694407'), - (854, 1173, 'attending', '2022-01-04 15:30:11', '2025-12-17 19:47:31', 'Pm7o7GYm', '4736495'), - (854, 1174, 'attending', '2022-01-14 15:11:09', '2025-12-17 19:47:31', 'Pm7o7GYm', '4736496'), - (854, 1175, 'attending', '2022-01-22 22:31:24', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736497'), - (854, 1176, 'not_attending', '2022-02-12 22:27:25', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736498'), - (854, 1177, 'attending', '2022-02-12 16:56:52', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736499'), - (854, 1178, 'attending', '2022-01-28 16:00:20', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736500'), - (854, 1179, 'attending', '2022-02-18 20:23:21', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736501'), - (854, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Pm7o7GYm', '4736503'), - (854, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Pm7o7GYm', '4736504'), - (854, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Pm7o7GYm', '4746789'), - (854, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Pm7o7GYm', '4753929'), - (854, 1190, 'attending', '2022-01-11 23:09:18', '2025-12-17 19:47:31', 'Pm7o7GYm', '4757377'), - (854, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Pm7o7GYm', '5038850'), - (854, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Pm7o7GYm', '5045826'), - (854, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Pm7o7GYm', '5132533'), - (854, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Pm7o7GYm', '5186582'), - (854, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Pm7o7GYm', '5186583'), - (854, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Pm7o7GYm', '5186585'), - (854, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Pm7o7GYm', '5190437'), - (854, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Pm7o7GYm', '5195095'), - (854, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Pm7o7GYm', '5215989'), - (854, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Pm7o7GYm', '5223686'), - (854, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'Pm7o7GYm', '5227432'), - (854, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Pm7o7GYm', '5247467'), - (854, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Pm7o7GYm', '5260800'), - (854, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Pm7o7GYm', '5269930'), - (854, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Pm7o7GYm', '5271448'), - (854, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'Pm7o7GYm', '5271449'), - (854, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'Pm7o7GYm', '5276469'), - (854, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Pm7o7GYm', '5278159'), - (854, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Pm7o7GYm', '5363695'), - (854, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Pm7o7GYm', '5365960'), - (854, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'Pm7o7GYm', '5368973'), - (854, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Pm7o7GYm', '5378247'), - (854, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Pm7o7GYm', '5389605'), - (854, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Pm7o7GYm', '5397265'), - (854, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7o7GYm', '6045684'), - (855, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dKOv1DBd', '7424276'), - (855, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'dKOv1DBd', '7432756'), - (855, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'dKOv1DBd', '7432758'), - (855, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'dKOv1DBd', '7682072'), - (855, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'dKOv1DBd', '7685613'), - (855, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dKOv1DBd', '7688194'), - (855, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dKOv1DBd', '7688196'), - (855, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dKOv1DBd', '7688289'), - (855, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dKOv1DBd', '7692763'), - (855, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dKOv1DBd', '7697552'), - (855, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dKOv1DBd', '7699878'), - (855, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dKOv1DBd', '7704043'), - (855, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dKOv1DBd', '7712467'), - (855, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dKOv1DBd', '7713585'), - (855, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dKOv1DBd', '7713586'), - (855, 2947, 'not_attending', '2024-12-09 03:10:21', '2025-12-17 19:46:21', 'dKOv1DBd', '7727445'), - (855, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'dKOv1DBd', '7738518'), - (855, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dKOv1DBd', '7750636'), - (855, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dKOv1DBd', '7796540'), - (855, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dKOv1DBd', '7796541'), - (855, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dKOv1DBd', '7796542'), - (855, 2967, 'not_attending', '2025-01-07 14:55:51', '2025-12-17 19:46:22', 'dKOv1DBd', '7797181'), - (855, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dKOv1DBd', '7825913'), - (855, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dKOv1DBd', '7826209'), - (855, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dKOv1DBd', '7834742'), - (855, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dKOv1DBd', '7842108'), - (855, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dKOv1DBd', '7842902'), - (855, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dKOv1DBd', '7842903'), - (855, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dKOv1DBd', '7842904'), - (855, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dKOv1DBd', '7842905'), - (855, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'dKOv1DBd', '7844784'), - (855, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dKOv1DBd', '7855719'), - (855, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dKOv1DBd', '7860683'), - (855, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dKOv1DBd', '7860684'), - (855, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dKOv1DBd', '7866095'), - (855, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dKOv1DBd', '7869170'), - (855, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dKOv1DBd', '7869201'), - (855, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'dKOv1DBd', '7872088'), - (856, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', 'daJp8Epm', '5426882'), - (856, 1512, 'attending', '2022-07-15 03:42:45', '2025-12-17 19:47:19', 'daJp8Epm', '5441112'), - (856, 1513, 'attending', '2022-07-15 04:56:24', '2025-12-17 19:47:19', 'daJp8Epm', '5441125'), - (856, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'daJp8Epm', '5441126'), - (856, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'daJp8Epm', '5441128'), - (856, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'daJp8Epm', '5441131'), - (856, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'daJp8Epm', '5441132'), - (856, 1527, 'not_attending', '2022-07-19 03:06:53', '2025-12-17 19:47:20', 'daJp8Epm', '5446425'), - (856, 1528, 'not_attending', '2022-07-17 17:31:19', '2025-12-17 19:47:20', 'daJp8Epm', '5446643'), - (856, 1536, 'attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'daJp8Epm', '5449068'), - (856, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'daJp8Epm', '5453325'), - (856, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'daJp8Epm', '5454516'), - (856, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'daJp8Epm', '5454605'), - (856, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'daJp8Epm', '5455037'), - (856, 1556, 'not_attending', '2022-07-22 01:53:44', '2025-12-17 19:47:20', 'daJp8Epm', '5457734'), - (856, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'daJp8Epm', '5461278'), - (856, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'daJp8Epm', '5469480'), - (856, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'daJp8Epm', '5471073'), - (856, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'daJp8Epm', '5474663'), - (856, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'daJp8Epm', '5482022'), - (856, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'daJp8Epm', '5482793'), - (856, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'daJp8Epm', '5488912'), - (856, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'daJp8Epm', '5492192'), - (856, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'daJp8Epm', '5493139'), - (856, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'daJp8Epm', '5493200'), - (856, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'daJp8Epm', '5502188'), - (856, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'daJp8Epm', '5505059'), - (856, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'daJp8Epm', '5509055'), - (856, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'daJp8Epm', '5512862'), - (856, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'daJp8Epm', '5513985'), - (856, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'daJp8Epm', '5519981'), - (856, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'daJp8Epm', '5522550'), - (856, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'daJp8Epm', '5534683'), - (856, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'daJp8Epm', '5546619'), - (856, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'daJp8Epm', '5555245'), - (856, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'daJp8Epm', '5557747'), - (856, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daJp8Epm', '6045684'), - (857, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AgPbGry4', '5441131'), - (857, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'AgPbGry4', '5441132'), - (857, 1561, 'attending', '2022-08-12 09:07:38', '2025-12-17 19:47:22', 'AgPbGry4', '5461278'), - (857, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgPbGry4', '5502188'), - (857, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AgPbGry4', '5505059'), - (857, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AgPbGry4', '5509055'), - (857, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgPbGry4', '5512862'), - (857, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgPbGry4', '5513985'), - (857, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AgPbGry4', '5522550'), - (857, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AgPbGry4', '5534683'), - (857, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AgPbGry4', '5537735'), - (857, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AgPbGry4', '5540859'), - (857, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AgPbGry4', '5546619'), - (857, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AgPbGry4', '5555245'), - (857, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AgPbGry4', '5557747'), - (857, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AgPbGry4', '5560255'), - (857, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AgPbGry4', '5562906'), - (857, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AgPbGry4', '5600604'), - (857, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AgPbGry4', '5605544'), - (857, 1699, 'not_attending', '2022-09-26 12:18:45', '2025-12-17 19:47:12', 'AgPbGry4', '5606737'), - (857, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AgPbGry4', '5630960'), - (857, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AgPbGry4', '5630961'), - (857, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AgPbGry4', '5630962'), - (857, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AgPbGry4', '5630966'), - (857, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AgPbGry4', '5630967'), - (857, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AgPbGry4', '5630968'), - (857, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AgPbGry4', '5635406'), - (857, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AgPbGry4', '5638765'), - (857, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AgPbGry4', '5640097'), - (857, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'AgPbGry4', '5640843'), - (857, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AgPbGry4', '5641521'), - (857, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AgPbGry4', '5642818'), - (857, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AgPbGry4', '5652395'), - (857, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AgPbGry4', '5670445'), - (857, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AgPbGry4', '5671637'), - (857, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AgPbGry4', '5672329'), - (857, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AgPbGry4', '5674057'), - (857, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AgPbGry4', '5674060'), - (857, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AgPbGry4', '5677461'), - (857, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AgPbGry4', '5698046'), - (857, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AgPbGry4', '5699760'), - (857, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AgPbGry4', '5741601'), - (857, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AgPbGry4', '5763458'), - (857, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AgPbGry4', '5774172'), - (857, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AgPbGry4', '5818247'), - (857, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AgPbGry4', '5819471'), - (857, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AgPbGry4', '5827739'), - (857, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AgPbGry4', '5844306'), - (857, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AgPbGry4', '5850159'), - (857, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AgPbGry4', '5858999'), - (857, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AgPbGry4', '5871984'), - (857, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AgPbGry4', '5876354'), - (857, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AgPbGry4', '5880939'), - (857, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AgPbGry4', '5887890'), - (857, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AgPbGry4', '5888598'), - (857, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AgPbGry4', '5893260'), - (857, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgPbGry4', '6045684'), - (858, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'xAYLkKRm', '3285414'), - (858, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'xAYLkKRm', '3313856'), - (858, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'xAYLkKRm', '3314909'), - (858, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'xAYLkKRm', '3314964'), - (858, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'xAYLkKRm', '3323365'), - (858, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'xAYLkKRm', '3329383'), - (858, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'xAYLkKRm', '3351539'), - (858, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'xAYLkKRm', '3386848'), - (858, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'xAYLkKRm', '3389527'), - (858, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'xAYLkKRm', '3396499'), - (858, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'xAYLkKRm', '3403650'), - (858, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'xAYLkKRm', '3406988'), - (858, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'xAYLkKRm', '3408338'), - (858, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'xAYLkKRm', '3416576'), - (858, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYLkKRm', '6045684'), - (859, 1824, 'not_attending', '2022-11-30 14:58:07', '2025-12-17 19:47:04', '41YKlP84', '5774172'), - (859, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '41YKlP84', '6045684'), - (860, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'VdxBlnXA', '3468125'), - (860, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VdxBlnXA', '3470303'), - (860, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'VdxBlnXA', '3470305'), - (860, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VdxBlnXA', '3470991'), - (860, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VdxBlnXA', '3517815'), - (860, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VdxBlnXA', '3517816'), - (860, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'VdxBlnXA', '3523941'), - (860, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VdxBlnXA', '3533850'), - (860, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VdxBlnXA', '3536632'), - (860, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VdxBlnXA', '3536656'), - (860, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VdxBlnXA', '3539916'), - (860, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VdxBlnXA', '3539917'), - (860, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VdxBlnXA', '3539918'), - (860, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VdxBlnXA', '3539919'), - (860, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VdxBlnXA', '3539920'), - (860, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VdxBlnXA', '3539921'), - (860, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VdxBlnXA', '3539922'), - (860, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VdxBlnXA', '3539923'), - (860, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VdxBlnXA', '3539927'), - (860, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VdxBlnXA', '3582734'), - (860, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VdxBlnXA', '3619523'), - (860, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxBlnXA', '6045684'), - (861, 1123, 'not_attending', '2021-12-09 16:46:52', '2025-12-17 19:47:38', 'd9nJYMem', '4644024'), - (861, 1124, 'attending', '2021-12-10 17:13:20', '2025-12-17 19:47:38', 'd9nJYMem', '4644025'), - (861, 1146, 'not_attending', '2021-12-10 17:11:10', '2025-12-17 19:47:38', 'd9nJYMem', '4692841'), - (861, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd9nJYMem', '4736497'), - (861, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'd9nJYMem', '4736500'), - (861, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'd9nJYMem', '4746789'), - (861, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'd9nJYMem', '4753929'), - (861, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd9nJYMem', '5038850'), - (861, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd9nJYMem', '6045684'), - (862, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4DQwr0yd', '5441131'), - (862, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4DQwr0yd', '5441132'), - (862, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4DQwr0yd', '5509055'), - (862, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', '4DQwr0yd', '5513985'), - (862, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', '4DQwr0yd', '5534683'), - (862, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4DQwr0yd', '5537735'), - (862, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4DQwr0yd', '5540859'), - (862, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4DQwr0yd', '5546619'), - (862, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4DQwr0yd', '5555245'), - (862, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4DQwr0yd', '5557747'), - (862, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4DQwr0yd', '5560255'), - (862, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4DQwr0yd', '5562906'), - (862, 1675, 'attending', '2022-09-18 20:06:02', '2025-12-17 19:47:11', '4DQwr0yd', '5593342'), - (862, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4DQwr0yd', '5600604'), - (862, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4DQwr0yd', '5605544'), - (862, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', '4DQwr0yd', '5606737'), - (862, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4DQwr0yd', '5630960'), - (862, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4DQwr0yd', '5630961'), - (862, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4DQwr0yd', '5630962'), - (862, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4DQwr0yd', '5630966'), - (862, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4DQwr0yd', '5630967'), - (862, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4DQwr0yd', '5630968'), - (862, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4DQwr0yd', '5635406'), - (862, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4DQwr0yd', '5638765'), - (862, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4DQwr0yd', '5640097'), - (862, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4DQwr0yd', '5640843'), - (862, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4DQwr0yd', '5641521'), - (862, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4DQwr0yd', '5642818'), - (862, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4DQwr0yd', '5652395'), - (862, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4DQwr0yd', '5670445'), - (862, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4DQwr0yd', '5671637'), - (862, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4DQwr0yd', '5672329'), - (862, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4DQwr0yd', '5674057'), - (862, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4DQwr0yd', '5674060'), - (862, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4DQwr0yd', '5677461'), - (862, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4DQwr0yd', '5698046'), - (862, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4DQwr0yd', '5699760'), - (862, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4DQwr0yd', '5741601'), - (862, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4DQwr0yd', '5763458'), - (862, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4DQwr0yd', '5774172'), - (862, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4DQwr0yd', '5818247'), - (862, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4DQwr0yd', '5819471'), - (862, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4DQwr0yd', '5827739'), - (862, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4DQwr0yd', '5844306'), - (862, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4DQwr0yd', '5850159'), - (862, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4DQwr0yd', '5858999'), - (862, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4DQwr0yd', '5871984'), - (862, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4DQwr0yd', '5876354'), - (862, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4DQwr0yd', '5880939'), - (862, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4DQwr0yd', '5887890'), - (862, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4DQwr0yd', '5888598'), - (862, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4DQwr0yd', '5893260'), - (862, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DQwr0yd', '6045684'), - (863, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZkjEErd', '6045684'), - (864, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'rdOeYxEA', '4136947'), - (864, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOeYxEA', '4210314'), - (864, 887, 'not_attending', '2021-07-13 21:31:19', '2025-12-17 19:47:39', 'rdOeYxEA', '4225444'), - (864, 895, 'attending', '2021-07-10 03:58:23', '2025-12-17 19:47:39', 'rdOeYxEA', '4229424'), - (864, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'rdOeYxEA', '4240316'), - (864, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'rdOeYxEA', '4240317'), - (864, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdOeYxEA', '4240318'), - (864, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'rdOeYxEA', '4240320'), - (864, 908, 'not_attending', '2021-07-13 21:31:28', '2025-12-17 19:47:39', 'rdOeYxEA', '4257613'), - (864, 912, 'not_attending', '2021-07-13 21:31:05', '2025-12-17 19:47:39', 'rdOeYxEA', '4271104'), - (864, 918, 'not_attending', '2021-07-12 21:44:48', '2025-12-17 19:47:39', 'rdOeYxEA', '4274486'), - (864, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'rdOeYxEA', '4275957'), - (864, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdOeYxEA', '4277819'), - (864, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdOeYxEA', '4301723'), - (864, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'rdOeYxEA', '4302093'), - (864, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOeYxEA', '4304151'), - (864, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOeYxEA', '4356801'), - (864, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'rdOeYxEA', '4366186'), - (864, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdOeYxEA', '4366187'), - (864, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'rdOeYxEA', '4420735'), - (864, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'rdOeYxEA', '4420738'), - (864, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'rdOeYxEA', '4420739'), - (864, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'rdOeYxEA', '4420741'), - (864, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'rdOeYxEA', '4420744'), - (864, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'rdOeYxEA', '4420747'), - (864, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'rdOeYxEA', '4420748'), - (864, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'rdOeYxEA', '4420749'), - (864, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'rdOeYxEA', '4461883'), - (864, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'rdOeYxEA', '4508342'), - (864, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'rdOeYxEA', '4568602'), - (864, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'rdOeYxEA', '4572153'), - (864, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'rdOeYxEA', '4585962'), - (864, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'rdOeYxEA', '4596356'), - (864, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'rdOeYxEA', '4598860'), - (864, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'rdOeYxEA', '4598861'), - (864, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'rdOeYxEA', '4602797'), - (864, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'rdOeYxEA', '4637896'), - (864, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'rdOeYxEA', '4642994'), - (864, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'rdOeYxEA', '4642995'), - (864, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'rdOeYxEA', '4642996'), - (864, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'rdOeYxEA', '4642997'), - (864, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'rdOeYxEA', '4645687'), - (864, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'rdOeYxEA', '4645698'), - (864, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'rdOeYxEA', '4645704'), - (864, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'rdOeYxEA', '4645705'), - (864, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'rdOeYxEA', '4668385'), - (864, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'rdOeYxEA', '4694407'), - (864, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'rdOeYxEA', '4736497'), - (864, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'rdOeYxEA', '4736499'), - (864, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'rdOeYxEA', '4736500'), - (864, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'rdOeYxEA', '4736503'), - (864, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'rdOeYxEA', '4736504'), - (864, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'rdOeYxEA', '4746789'), - (864, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'rdOeYxEA', '4753929'), - (864, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'rdOeYxEA', '5038850'), - (864, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'rdOeYxEA', '5045826'), - (864, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'rdOeYxEA', '5132533'), - (864, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'rdOeYxEA', '5186582'), - (864, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'rdOeYxEA', '5186583'), - (864, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'rdOeYxEA', '5186585'), - (864, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'rdOeYxEA', '5190437'), - (864, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'rdOeYxEA', '5195095'), - (864, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'rdOeYxEA', '5215989'), - (864, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'rdOeYxEA', '5223686'), - (864, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'rdOeYxEA', '5247467'), - (864, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'rdOeYxEA', '5260800'), - (864, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'rdOeYxEA', '5269930'), - (864, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'rdOeYxEA', '5271448'), - (864, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'rdOeYxEA', '5271449'), - (864, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'rdOeYxEA', '5278159'), - (864, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'rdOeYxEA', '5363695'), - (864, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'rdOeYxEA', '5365960'), - (864, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'rdOeYxEA', '5378247'), - (864, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'rdOeYxEA', '5389605'), - (864, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'rdOeYxEA', '5397265'), - (864, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'rdOeYxEA', '5404786'), - (864, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'rdOeYxEA', '5405203'), - (864, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'rdOeYxEA', '5412550'), - (864, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'rdOeYxEA', '5415046'), - (864, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'rdOeYxEA', '5422086'), - (864, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'rdOeYxEA', '5422406'), - (864, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'rdOeYxEA', '5424565'), - (864, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'rdOeYxEA', '5426882'), - (864, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'rdOeYxEA', '5441125'), - (864, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'rdOeYxEA', '5441126'), - (864, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'rdOeYxEA', '5441128'), - (864, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'rdOeYxEA', '5441131'), - (864, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'rdOeYxEA', '5441132'), - (864, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'rdOeYxEA', '5453325'), - (864, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'rdOeYxEA', '5454516'), - (864, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'rdOeYxEA', '5454605'), - (864, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'rdOeYxEA', '5455037'), - (864, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'rdOeYxEA', '5461278'), - (864, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'rdOeYxEA', '5469480'), - (864, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'rdOeYxEA', '5474663'), - (864, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'rdOeYxEA', '5482022'), - (864, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'rdOeYxEA', '5488912'), - (864, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'rdOeYxEA', '5492192'), - (864, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'rdOeYxEA', '5493139'), - (864, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'rdOeYxEA', '5493200'), - (864, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'rdOeYxEA', '5502188'), - (864, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'rdOeYxEA', '5505059'), - (864, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'rdOeYxEA', '5509055'), - (864, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'rdOeYxEA', '5512862'), - (864, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'rdOeYxEA', '5513985'), - (864, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'rdOeYxEA', '5519981'), - (864, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'rdOeYxEA', '5522550'), - (864, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'rdOeYxEA', '5534683'), - (864, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'rdOeYxEA', '5537735'), - (864, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'rdOeYxEA', '5540859'), - (864, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'rdOeYxEA', '5546619'), - (864, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'rdOeYxEA', '5557747'), - (864, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'rdOeYxEA', '5560255'), - (864, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'rdOeYxEA', '5562906'), - (864, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'rdOeYxEA', '5600604'), - (864, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'rdOeYxEA', '5605544'), - (864, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'rdOeYxEA', '5630960'), - (864, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'rdOeYxEA', '5630961'), - (864, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'rdOeYxEA', '5630962'), - (864, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'rdOeYxEA', '5630966'), - (864, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'rdOeYxEA', '5630967'), - (864, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'rdOeYxEA', '5630968'), - (864, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'rdOeYxEA', '5635406'), - (864, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'rdOeYxEA', '5638765'), - (864, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'rdOeYxEA', '5640097'), - (864, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'rdOeYxEA', '5640843'), - (864, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'rdOeYxEA', '5641521'), - (864, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'rdOeYxEA', '5642818'), - (864, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'rdOeYxEA', '5652395'), - (864, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'rdOeYxEA', '5670445'), - (864, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'rdOeYxEA', '5671637'), - (864, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'rdOeYxEA', '5672329'), - (864, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'rdOeYxEA', '5674057'), - (864, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'rdOeYxEA', '5674060'), - (864, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'rdOeYxEA', '5677461'), - (864, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'rdOeYxEA', '5698046'), - (864, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'rdOeYxEA', '5699760'), - (864, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'rdOeYxEA', '5741601'), - (864, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'rdOeYxEA', '5763458'), - (864, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'rdOeYxEA', '5774172'), - (864, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'rdOeYxEA', '5818247'), - (864, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'rdOeYxEA', '5819471'), - (864, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'rdOeYxEA', '5827739'), - (864, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'rdOeYxEA', '5844306'), - (864, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'rdOeYxEA', '5850159'), - (864, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'rdOeYxEA', '5858999'), - (864, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'rdOeYxEA', '5871984'), - (864, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'rdOeYxEA', '5876354'), - (864, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'rdOeYxEA', '5880939'), - (864, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'rdOeYxEA', '5880940'), - (864, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'rdOeYxEA', '5880942'), - (864, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'rdOeYxEA', '5880943'), - (864, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'rdOeYxEA', '5887890'), - (864, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'rdOeYxEA', '5888598'), - (864, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'rdOeYxEA', '5893260'), - (864, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'rdOeYxEA', '5899826'), - (864, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'rdOeYxEA', '5900199'), - (864, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'rdOeYxEA', '5900200'), - (864, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'rdOeYxEA', '5900202'), - (864, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'rdOeYxEA', '5900203'), - (864, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'rdOeYxEA', '5901108'), - (864, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'rdOeYxEA', '5901126'), - (864, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'rdOeYxEA', '5909655'), - (864, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'rdOeYxEA', '5910522'), - (864, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'rdOeYxEA', '5910526'), - (864, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'rdOeYxEA', '5910528'), - (864, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'rdOeYxEA', '5916219'), - (864, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'rdOeYxEA', '5936234'), - (864, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'rdOeYxEA', '5958351'), - (864, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'rdOeYxEA', '5959751'), - (864, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'rdOeYxEA', '5959755'), - (864, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'rdOeYxEA', '5960055'), - (864, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'rdOeYxEA', '5961684'), - (864, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'rdOeYxEA', '5962132'), - (864, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'rdOeYxEA', '5962133'), - (864, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'rdOeYxEA', '5962134'), - (864, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'rdOeYxEA', '5962317'), - (864, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'rdOeYxEA', '5962318'), - (864, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'rdOeYxEA', '5965933'), - (864, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'rdOeYxEA', '5967014'), - (864, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'rdOeYxEA', '5972815'), - (864, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'rdOeYxEA', '5974016'), - (864, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'rdOeYxEA', '5981515'), - (864, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'rdOeYxEA', '5993516'), - (864, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'rdOeYxEA', '5998939'), - (864, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'rdOeYxEA', '6028191'), - (864, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'rdOeYxEA', '6040066'), - (864, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'rdOeYxEA', '6042717'), - (864, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'rdOeYxEA', '6044838'), - (864, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'rdOeYxEA', '6044839'), - (864, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOeYxEA', '6045684'), - (864, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'rdOeYxEA', '6050104'), - (864, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'rdOeYxEA', '6053195'), - (864, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'rdOeYxEA', '6053198'), - (864, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'rdOeYxEA', '6056085'), - (864, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'rdOeYxEA', '6056916'), - (864, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'rdOeYxEA', '6059290'), - (864, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'rdOeYxEA', '6060328'), - (864, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'rdOeYxEA', '6061037'), - (864, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'rdOeYxEA', '6061039'), - (864, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'rdOeYxEA', '6067245'), - (864, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'rdOeYxEA', '6068094'), - (864, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'rdOeYxEA', '6068252'), - (864, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'rdOeYxEA', '6068253'), - (864, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'rdOeYxEA', '6068254'), - (864, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'rdOeYxEA', '6068280'), - (864, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'rdOeYxEA', '6069093'), - (864, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'rdOeYxEA', '6072528'), - (864, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'rdOeYxEA', '6079840'), - (864, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'rdOeYxEA', '6083398'), - (864, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'rdOeYxEA', '6093504'), - (864, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'rdOeYxEA', '6097414'), - (864, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'rdOeYxEA', '6097442'), - (864, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'rdOeYxEA', '6097684'), - (864, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'rdOeYxEA', '6098762'), - (864, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'rdOeYxEA', '6101361'), - (864, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'rdOeYxEA', '6101362'), - (864, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'rdOeYxEA', '6107314'), - (864, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'rdOeYxEA', '6120034'), - (864, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'rdOeYxEA', '6136733'), - (864, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'rdOeYxEA', '6137989'), - (864, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'rdOeYxEA', '6150864'), - (864, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'rdOeYxEA', '6155491'), - (864, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'rdOeYxEA', '6164417'), - (864, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'rdOeYxEA', '6166388'), - (864, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'rdOeYxEA', '6176439'), - (864, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'rdOeYxEA', '6182410'), - (864, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'rdOeYxEA', '6185812'), - (864, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'rdOeYxEA', '6187651'), - (864, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'rdOeYxEA', '6187963'), - (864, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'rdOeYxEA', '6187964'), - (864, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'rdOeYxEA', '6187966'), - (864, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'rdOeYxEA', '6187967'), - (864, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'rdOeYxEA', '6187969'), - (864, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'rdOeYxEA', '6334878'), - (864, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'rdOeYxEA', '6337236'), - (864, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'rdOeYxEA', '6337970'), - (864, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'rdOeYxEA', '6338308'), - (864, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'rdOeYxEA', '6341710'), - (864, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'rdOeYxEA', '6342044'), - (864, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'rdOeYxEA', '6342298'), - (864, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'rdOeYxEA', '6343294'), - (864, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'rdOeYxEA', '6347034'), - (864, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'rdOeYxEA', '6347056'), - (864, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'rdOeYxEA', '6353830'), - (864, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'rdOeYxEA', '6353831'), - (864, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'rdOeYxEA', '6357867'), - (864, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'rdOeYxEA', '6358652'), - (864, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'rdOeYxEA', '6361709'), - (864, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'rdOeYxEA', '6361710'), - (864, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'rdOeYxEA', '6361711'), - (864, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'rdOeYxEA', '6361712'), - (864, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'rdOeYxEA', '6361713'), - (864, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'rdOeYxEA', '6382573'), - (864, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'rdOeYxEA', '6388604'), - (864, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'rdOeYxEA', '6394629'), - (864, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'rdOeYxEA', '6394631'), - (864, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'rdOeYxEA', '6440863'), - (864, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'rdOeYxEA', '6445440'), - (864, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'rdOeYxEA', '6453951'), - (864, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'rdOeYxEA', '6461696'), - (864, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'rdOeYxEA', '6462129'), - (864, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'rdOeYxEA', '6463218'), - (864, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'rdOeYxEA', '6472181'), - (864, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'rdOeYxEA', '6482693'), - (864, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'rdOeYxEA', '6484200'), - (864, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'rdOeYxEA', '6484680'), - (864, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'rdOeYxEA', '6507741'), - (864, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'rdOeYxEA', '6514659'), - (864, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'rdOeYxEA', '6514660'), - (864, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'rdOeYxEA', '6519103'), - (864, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'rdOeYxEA', '6535681'), - (864, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'rdOeYxEA', '6584747'), - (864, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'rdOeYxEA', '6587097'), - (864, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'rdOeYxEA', '6609022'), - (864, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'rdOeYxEA', '6632757'), - (864, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'rdOeYxEA', '6644187'), - (864, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'rdOeYxEA', '6648951'), - (864, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'rdOeYxEA', '6648952'), - (864, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'rdOeYxEA', '6655401'), - (864, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'rdOeYxEA', '6661585'), - (864, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'rdOeYxEA', '6661588'), - (864, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'rdOeYxEA', '6661589'), - (864, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'rdOeYxEA', '6699906'), - (864, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'rdOeYxEA', '6699913'), - (864, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'rdOeYxEA', '6701109'), - (864, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'rdOeYxEA', '6705219'), - (864, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'rdOeYxEA', '6710153'), - (864, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'rdOeYxEA', '6711552'), - (864, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'rdOeYxEA', '6711553'), - (864, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'rdOeYxEA', '6722688'), - (864, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'rdOeYxEA', '6730620'), - (864, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'rdOeYxEA', '6740364'), - (864, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'rdOeYxEA', '6743829'), - (864, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'rdOeYxEA', '7030380'), - (864, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'rdOeYxEA', '7033677'), - (864, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'rdOeYxEA', '7044715'), - (864, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'rdOeYxEA', '7050318'), - (864, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'rdOeYxEA', '7050319'), - (864, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'rdOeYxEA', '7050322'), - (864, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'rdOeYxEA', '7057804'), - (864, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'rdOeYxEA', '7072824'), - (864, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'rdOeYxEA', '7074348'), - (864, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'rdOeYxEA', '7074364'), - (864, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'rdOeYxEA', '7089267'), - (864, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'rdOeYxEA', '7098747'), - (864, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'rdOeYxEA', '7113468'), - (864, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'rdOeYxEA', '7114856'), - (864, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'rdOeYxEA', '7114951'), - (864, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'rdOeYxEA', '7114955'), - (864, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'rdOeYxEA', '7114956'), - (864, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'rdOeYxEA', '7114957'), - (864, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'rdOeYxEA', '7159484'), - (864, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'rdOeYxEA', '7178446'), - (864, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'rdOeYxEA', '7220467'), - (864, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'rdOeYxEA', '7240354'), - (864, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'rdOeYxEA', '7251633'), - (864, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'rdOeYxEA', '7324073'), - (864, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'rdOeYxEA', '7324074'), - (864, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'rdOeYxEA', '7324075'), - (864, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'rdOeYxEA', '7324078'), - (864, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'rdOeYxEA', '7324082'), - (864, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'rdOeYxEA', '7331457'), - (864, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'rdOeYxEA', '7363643'), - (864, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'rdOeYxEA', '7368606'), - (864, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'rdOeYxEA', '7397462'), - (864, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'rdOeYxEA', '7424275'), - (864, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'rdOeYxEA', '7432751'), - (864, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'rdOeYxEA', '7432752'), - (864, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'rdOeYxEA', '7432753'), - (864, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'rdOeYxEA', '7432754'), - (864, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'rdOeYxEA', '7432755'), - (864, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'rdOeYxEA', '7432756'), - (864, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'rdOeYxEA', '7432758'), - (864, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'rdOeYxEA', '7432759'), - (864, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'rdOeYxEA', '7433834'), - (864, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'rdOeYxEA', '7470197'), - (864, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'rdOeYxEA', '7685613'), - (864, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'rdOeYxEA', '7688194'), - (864, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'rdOeYxEA', '7688196'), - (864, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'rdOeYxEA', '7688289'), - (864, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'rdOeYxEA', '7692763'), - (864, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'rdOeYxEA', '7697552'), - (864, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'rdOeYxEA', '7699878'), - (864, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'rdOeYxEA', '7704043'), - (864, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'rdOeYxEA', '7712467'), - (864, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'rdOeYxEA', '7713585'), - (864, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'rdOeYxEA', '7713586'), - (864, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'rdOeYxEA', '7738518'), - (864, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'rdOeYxEA', '7750636'), - (864, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'rdOeYxEA', '7796540'), - (864, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'rdOeYxEA', '7796541'), - (864, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'rdOeYxEA', '7796542'), - (864, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'rdOeYxEA', '7825913'), - (864, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'rdOeYxEA', '7826209'), - (864, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'rdOeYxEA', '7834742'), - (864, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'rdOeYxEA', '7842108'), - (864, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'rdOeYxEA', '7842902'), - (864, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'rdOeYxEA', '7842903'), - (864, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'rdOeYxEA', '7842904'), - (864, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'rdOeYxEA', '7842905'), - (864, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'rdOeYxEA', '7855719'), - (864, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'rdOeYxEA', '7860683'), - (864, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'rdOeYxEA', '7860684'), - (864, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'rdOeYxEA', '7866095'), - (864, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'rdOeYxEA', '7869170'), - (864, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'rdOeYxEA', '7869188'), - (864, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'rdOeYxEA', '7869201'), - (864, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'rdOeYxEA', '7877465'), - (864, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'rdOeYxEA', '7888250'), - (864, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'rdOeYxEA', '7904777'), - (864, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'rdOeYxEA', '8349164'), - (864, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'rdOeYxEA', '8349545'), - (864, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'rdOeYxEA', '8368028'), - (864, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'rdOeYxEA', '8368029'), - (864, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'rdOeYxEA', '8388462'), - (864, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'rdOeYxEA', '8400273'), - (864, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'rdOeYxEA', '8400275'), - (864, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'rdOeYxEA', '8400276'), - (864, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'rdOeYxEA', '8404977'), - (864, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'rdOeYxEA', '8430783'), - (864, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'rdOeYxEA', '8430784'), - (864, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'rdOeYxEA', '8430799'), - (864, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'rdOeYxEA', '8430800'), - (864, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'rdOeYxEA', '8430801'), - (864, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'rdOeYxEA', '8438709'), - (864, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'rdOeYxEA', '8457738'), - (864, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'rdOeYxEA', '8459566'), - (864, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'rdOeYxEA', '8459567'), - (864, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'rdOeYxEA', '8461032'), - (864, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'rdOeYxEA', '8477877'), - (864, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'rdOeYxEA', '8485688'), - (864, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'rdOeYxEA', '8490587'), - (864, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'rdOeYxEA', '8493552'), - (864, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'rdOeYxEA', '8493553'), - (864, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'rdOeYxEA', '8493554'), - (864, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'rdOeYxEA', '8493555'), - (864, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'rdOeYxEA', '8493556'), - (864, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'rdOeYxEA', '8493557'), - (864, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'rdOeYxEA', '8493558'), - (864, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'rdOeYxEA', '8493559'), - (864, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'rdOeYxEA', '8493560'), - (864, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'rdOeYxEA', '8493561'), - (864, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'rdOeYxEA', '8493572'), - (864, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'rdOeYxEA', '8540725'), - (864, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'rdOeYxEA', '8555421'), - (865, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4EKjz8Zm', '8485688'), - (865, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4EKjz8Zm', '8490587'), - (865, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4EKjz8Zm', '8493552'), - (865, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4EKjz8Zm', '8493553'), - (865, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4EKjz8Zm', '8493554'), - (865, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4EKjz8Zm', '8493555'), - (865, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4EKjz8Zm', '8493556'), - (865, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4EKjz8Zm', '8493557'), - (865, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4EKjz8Zm', '8493558'), - (865, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4EKjz8Zm', '8493559'), - (865, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4EKjz8Zm', '8493560'), - (865, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '4EKjz8Zm', '8493561'), - (865, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4EKjz8Zm', '8493572'), - (865, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', '4EKjz8Zm', '8529058'), - (866, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'd9oEzweA', '5186585'), - (866, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9oEzweA', '5190437'), - (866, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'd9oEzweA', '5195095'), - (866, 1285, 'maybe', '2022-03-26 00:53:57', '2025-12-17 19:47:25', 'd9oEzweA', '5196763'), - (866, 1288, 'attending', '2022-03-26 00:54:10', '2025-12-17 19:47:25', 'd9oEzweA', '5199460'), - (866, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9oEzweA', '5215989'), - (866, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd9oEzweA', '5223686'), - (866, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd9oEzweA', '5227432'), - (866, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'd9oEzweA', '5247467'), - (866, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd9oEzweA', '5260800'), - (866, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd9oEzweA', '5269930'), - (866, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd9oEzweA', '5271448'), - (866, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'd9oEzweA', '5271449'), - (866, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd9oEzweA', '5276469'), - (866, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd9oEzweA', '5278159'), - (866, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd9oEzweA', '5363695'), - (866, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd9oEzweA', '5365960'), - (866, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd9oEzweA', '5368973'), - (866, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd9oEzweA', '5378247'), - (866, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd9oEzweA', '5389605'), - (866, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd9oEzweA', '5397265'), - (866, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd9oEzweA', '5403967'), - (866, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd9oEzweA', '5404786'), - (866, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd9oEzweA', '5405203'), - (866, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'd9oEzweA', '5408794'), - (866, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd9oEzweA', '5411699'), - (866, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd9oEzweA', '5412550'), - (866, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd9oEzweA', '5415046'), - (866, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd9oEzweA', '5422086'), - (866, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd9oEzweA', '5422406'), - (866, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd9oEzweA', '5424565'), - (866, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd9oEzweA', '5426882'), - (866, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd9oEzweA', '5427083'), - (866, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd9oEzweA', '5441125'), - (866, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd9oEzweA', '5441126'), - (866, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd9oEzweA', '5441128'), - (866, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd9oEzweA', '5441131'), - (866, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'd9oEzweA', '5441132'), - (866, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd9oEzweA', '5446643'), - (866, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd9oEzweA', '5453325'), - (866, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd9oEzweA', '5454516'), - (866, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd9oEzweA', '5454605'), - (866, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd9oEzweA', '5455037'), - (866, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd9oEzweA', '5461278'), - (866, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd9oEzweA', '5469480'), - (866, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd9oEzweA', '5471073'), - (866, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd9oEzweA', '5474663'), - (866, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd9oEzweA', '5482022'), - (866, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd9oEzweA', '5482793'), - (866, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd9oEzweA', '5488912'), - (866, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd9oEzweA', '5492192'), - (866, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd9oEzweA', '5493139'), - (866, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd9oEzweA', '5493200'), - (866, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd9oEzweA', '5502188'), - (866, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd9oEzweA', '5505059'), - (866, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd9oEzweA', '5509055'), - (866, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd9oEzweA', '5512862'), - (866, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd9oEzweA', '5513985'), - (866, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd9oEzweA', '5519981'), - (866, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd9oEzweA', '5522550'), - (866, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd9oEzweA', '5534683'), - (866, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd9oEzweA', '5546619'), - (866, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd9oEzweA', '5555245'), - (866, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd9oEzweA', '5557747'), - (866, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9oEzweA', '6045684'), - (867, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4DMQRx3d', '7324082'), - (867, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4DMQRx3d', '7397462'), - (867, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4DMQRx3d', '7424275'), - (867, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4DMQRx3d', '7432751'), - (867, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4DMQRx3d', '7432752'), - (867, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4DMQRx3d', '7432753'), - (867, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4DMQRx3d', '7432754'), - (867, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4DMQRx3d', '7432755'), - (867, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4DMQRx3d', '7432756'), - (867, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4DMQRx3d', '7432758'), - (867, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4DMQRx3d', '7432759'), - (867, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4DMQRx3d', '7433834'), - (867, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4DMQRx3d', '7470197'), - (867, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4DMQRx3d', '7685613'), - (867, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4DMQRx3d', '7688194'), - (867, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4DMQRx3d', '7688196'), - (867, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4DMQRx3d', '7688289'), - (868, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Pm72e15d', '3236465'), - (868, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'Pm72e15d', '3539916'), - (868, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Pm72e15d', '3539918'), - (868, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Pm72e15d', '3539919'), - (868, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm72e15d', '3539920'), - (868, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm72e15d', '3539921'), - (868, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm72e15d', '3583262'), - (868, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm72e15d', '3661369'), - (868, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm72e15d', '3674262'), - (868, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm72e15d', '3677402'), - (868, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm72e15d', '3730212'), - (868, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm72e15d', '3793156'), - (868, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Pm72e15d', '3803310'), - (868, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Pm72e15d', '3806392'), - (868, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm72e15d', '6045684'), - (869, 1340, 'not_attending', '2022-04-28 01:59:35', '2025-12-17 19:47:27', 'mpQ6axqA', '5245754'), - (869, 1350, 'not_attending', '2022-04-20 14:17:09', '2025-12-17 19:47:27', 'mpQ6axqA', '5249763'), - (869, 1353, 'attending', '2022-04-21 00:06:17', '2025-12-17 19:47:27', 'mpQ6axqA', '5251777'), - (869, 1360, 'maybe', '2022-04-27 00:30:11', '2025-12-17 19:47:27', 'mpQ6axqA', '5260197'), - (869, 1362, 'attending', '2022-04-30 20:03:13', '2025-12-17 19:47:28', 'mpQ6axqA', '5260800'), - (869, 1364, 'maybe', '2022-05-02 17:48:45', '2025-12-17 19:47:28', 'mpQ6axqA', '5261598'), - (869, 1368, 'attending', '2022-05-05 18:06:52', '2025-12-17 19:47:28', 'mpQ6axqA', '5262783'), - (869, 1371, 'attending', '2022-04-27 21:19:41', '2025-12-17 19:47:27', 'mpQ6axqA', '5263784'), - (869, 1372, 'attending', '2022-05-04 20:12:07', '2025-12-17 19:47:28', 'mpQ6axqA', '5264352'), - (869, 1374, 'not_attending', '2022-05-07 17:28:22', '2025-12-17 19:47:28', 'mpQ6axqA', '5269930'), - (869, 1376, 'not_attending', '2022-05-12 20:03:13', '2025-12-17 19:47:28', 'mpQ6axqA', '5271446'), - (869, 1377, 'not_attending', '2022-05-12 20:03:17', '2025-12-17 19:47:28', 'mpQ6axqA', '5271447'), - (869, 1378, 'attending', '2022-05-14 01:36:19', '2025-12-17 19:47:29', 'mpQ6axqA', '5271448'), - (869, 1379, 'not_attending', '2022-05-22 14:53:54', '2025-12-17 19:47:30', 'mpQ6axqA', '5271449'), - (869, 1380, 'attending', '2022-05-28 14:43:35', '2025-12-17 19:47:30', 'mpQ6axqA', '5271450'), - (869, 1382, 'not_attending', '2022-05-09 21:53:56', '2025-12-17 19:47:28', 'mpQ6axqA', '5276350'), - (869, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mpQ6axqA', '5276469'), - (869, 1385, 'attending', '2022-05-11 21:08:23', '2025-12-17 19:47:28', 'mpQ6axqA', '5277822'), - (869, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mpQ6axqA', '5278159'), - (869, 1391, 'attending', '2022-05-08 18:02:36', '2025-12-17 19:47:28', 'mpQ6axqA', '5279531'), - (869, 1392, 'attending', '2022-05-10 22:45:25', '2025-12-17 19:47:28', 'mpQ6axqA', '5279532'), - (869, 1394, 'maybe', '2022-05-22 14:54:54', '2025-12-17 19:47:30', 'mpQ6axqA', '5280667'), - (869, 1401, 'attending', '2022-05-18 16:33:08', '2025-12-17 19:47:29', 'mpQ6axqA', '5286295'), - (869, 1403, 'attending', '2022-05-20 21:09:07', '2025-12-17 19:47:29', 'mpQ6axqA', '5288052'), - (869, 1407, 'attending', '2022-06-02 03:00:01', '2025-12-17 19:47:30', 'mpQ6axqA', '5363695'), - (869, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mpQ6axqA', '5365960'), - (869, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mpQ6axqA', '5368973'), - (869, 1416, 'not_attending', '2022-05-28 14:48:03', '2025-12-17 19:47:30', 'mpQ6axqA', '5369628'), - (869, 1419, 'attending', '2022-06-08 18:30:48', '2025-12-17 19:47:30', 'mpQ6axqA', '5373081'), - (869, 1421, 'not_attending', '2022-05-30 21:01:01', '2025-12-17 19:47:30', 'mpQ6axqA', '5374885'), - (869, 1423, 'maybe', '2022-06-15 14:01:31', '2025-12-17 19:47:17', 'mpQ6axqA', '5375727'), - (869, 1424, 'attending', '2022-05-23 22:50:04', '2025-12-17 19:47:30', 'mpQ6axqA', '5375772'), - (869, 1427, 'attending', '2022-05-25 19:19:08', '2025-12-17 19:47:30', 'mpQ6axqA', '5376074'), - (869, 1428, 'attending', '2022-06-10 13:10:52', '2025-12-17 19:47:30', 'mpQ6axqA', '5378247'), - (869, 1429, 'attending', '2022-05-29 13:02:49', '2025-12-17 19:47:30', 'mpQ6axqA', '5388761'), - (869, 1431, 'attending', '2022-06-10 13:12:57', '2025-12-17 19:47:30', 'mpQ6axqA', '5389605'), - (869, 1435, 'not_attending', '2022-05-31 21:59:31', '2025-12-17 19:47:30', 'mpQ6axqA', '5394015'), - (869, 1436, 'not_attending', '2022-06-02 23:15:45', '2025-12-17 19:47:30', 'mpQ6axqA', '5394292'), - (869, 1438, 'attending', '2022-06-01 18:39:10', '2025-12-17 19:47:30', 'mpQ6axqA', '5395032'), - (869, 1440, 'not_attending', '2022-06-07 22:43:53', '2025-12-17 19:47:30', 'mpQ6axqA', '5396080'), - (869, 1442, 'attending', '2022-06-18 02:01:29', '2025-12-17 19:47:17', 'mpQ6axqA', '5397265'), - (869, 1447, 'not_attending', '2022-06-08 22:19:07', '2025-12-17 19:47:30', 'mpQ6axqA', '5401089'), - (869, 1451, 'attending', '2022-06-14 13:51:55', '2025-12-17 19:47:17', 'mpQ6axqA', '5403967'), - (869, 1455, 'attending', '2022-06-10 13:12:06', '2025-12-17 19:47:31', 'mpQ6axqA', '5404772'), - (869, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mpQ6axqA', '5404786'), - (869, 1462, 'not_attending', '2022-06-13 12:38:49', '2025-12-17 19:47:17', 'mpQ6axqA', '5405203'), - (869, 1463, 'attending', '2022-06-14 23:01:13', '2025-12-17 19:47:31', 'mpQ6axqA', '5405208'), - (869, 1464, 'attending', '2022-06-10 19:43:25', '2025-12-17 19:47:30', 'mpQ6axqA', '5405212'), - (869, 1469, 'attending', '2022-06-20 21:52:58', '2025-12-17 19:47:17', 'mpQ6axqA', '5406838'), - (869, 1470, 'attending', '2022-06-13 12:37:55', '2025-12-17 19:47:17', 'mpQ6axqA', '5407053'), - (869, 1471, 'attending', '2022-06-21 23:06:29', '2025-12-17 19:47:17', 'mpQ6axqA', '5407063'), - (869, 1472, 'attending', '2022-06-18 21:05:11', '2025-12-17 19:47:17', 'mpQ6axqA', '5407065'), - (869, 1473, 'attending', '2022-06-14 13:57:35', '2025-12-17 19:47:31', 'mpQ6axqA', '5407267'), - (869, 1475, 'attending', '2022-06-15 14:01:19', '2025-12-17 19:47:17', 'mpQ6axqA', '5408108'), - (869, 1478, 'not_attending', '2022-06-24 17:38:13', '2025-12-17 19:47:19', 'mpQ6axqA', '5408794'), - (869, 1480, 'not_attending', '2022-06-21 23:27:10', '2025-12-17 19:47:19', 'mpQ6axqA', '5411699'), - (869, 1481, 'attending', '2022-06-19 16:21:39', '2025-12-17 19:47:17', 'mpQ6axqA', '5412237'), - (869, 1482, 'attending', '2022-06-19 16:19:17', '2025-12-17 19:47:19', 'mpQ6axqA', '5412550'), - (869, 1484, 'attending', '2022-06-21 15:12:24', '2025-12-17 19:47:17', 'mpQ6axqA', '5415046'), - (869, 1488, 'attending', '2022-07-04 01:39:12', '2025-12-17 19:47:19', 'mpQ6axqA', '5420154'), - (869, 1489, 'attending', '2022-06-30 22:09:12', '2025-12-17 19:47:19', 'mpQ6axqA', '5420155'), - (869, 1491, 'attending', '2022-06-30 22:09:26', '2025-12-17 19:47:19', 'mpQ6axqA', '5420158'), - (869, 1492, 'attending', '2022-06-30 22:09:16', '2025-12-17 19:47:19', 'mpQ6axqA', '5420175'), - (869, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mpQ6axqA', '5422086'), - (869, 1497, 'attending', '2022-06-28 19:07:19', '2025-12-17 19:47:19', 'mpQ6axqA', '5422405'), - (869, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mpQ6axqA', '5422406'), - (869, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mpQ6axqA', '5424565'), - (869, 1504, 'attending', '2022-07-12 18:15:44', '2025-12-17 19:47:19', 'mpQ6axqA', '5426882'), - (869, 1505, 'attending', '2022-07-03 13:24:51', '2025-12-17 19:47:19', 'mpQ6axqA', '5427083'), - (869, 1508, 'attending', '2022-07-09 14:40:53', '2025-12-17 19:47:19', 'mpQ6axqA', '5433453'), - (869, 1509, 'attending', '2022-07-03 13:22:15', '2025-12-17 19:47:19', 'mpQ6axqA', '5434019'), - (869, 1511, 'attending', '2022-07-07 01:55:37', '2025-12-17 19:47:19', 'mpQ6axqA', '5437733'), - (869, 1513, 'attending', '2022-07-11 13:17:48', '2025-12-17 19:47:19', 'mpQ6axqA', '5441125'), - (869, 1514, 'attending', '2022-07-19 02:55:13', '2025-12-17 19:47:20', 'mpQ6axqA', '5441126'), - (869, 1515, 'attending', '2022-07-26 18:26:10', '2025-12-17 19:47:21', 'mpQ6axqA', '5441128'), - (869, 1516, 'attending', '2022-08-15 16:24:56', '2025-12-17 19:47:23', 'mpQ6axqA', '5441129'), - (869, 1517, 'attending', '2022-08-21 13:17:47', '2025-12-17 19:47:23', 'mpQ6axqA', '5441130'), - (869, 1518, 'attending', '2022-08-28 17:55:48', '2025-12-17 19:47:24', 'mpQ6axqA', '5441131'), - (869, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mpQ6axqA', '5441132'), - (869, 1521, 'not_attending', '2022-07-10 15:30:09', '2025-12-17 19:47:19', 'mpQ6axqA', '5442180'), - (869, 1524, 'attending', '2022-07-11 15:51:19', '2025-12-17 19:47:19', 'mpQ6axqA', '5443300'), - (869, 1525, 'attending', '2022-07-12 21:47:51', '2025-12-17 19:47:19', 'mpQ6axqA', '5444962'), - (869, 1526, 'not_attending', '2022-07-13 00:53:48', '2025-12-17 19:47:20', 'mpQ6axqA', '5445059'), - (869, 1528, 'attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mpQ6axqA', '5446643'), - (869, 1535, 'maybe', '2022-07-16 12:56:22', '2025-12-17 19:47:20', 'mpQ6axqA', '5448830'), - (869, 1537, 'attending', '2022-07-17 13:44:23', '2025-12-17 19:47:20', 'mpQ6axqA', '5449117'), - (869, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mpQ6axqA', '5453325'), - (869, 1541, 'attending', '2022-07-25 18:51:13', '2025-12-17 19:47:20', 'mpQ6axqA', '5453542'), - (869, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mpQ6axqA', '5454516'), - (869, 1544, 'not_attending', '2022-09-11 22:47:10', '2025-12-17 19:47:11', 'mpQ6axqA', '5454517'), - (869, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mpQ6axqA', '5454605'), - (869, 1546, 'attending', '2022-07-21 23:06:57', '2025-12-17 19:47:20', 'mpQ6axqA', '5454607'), - (869, 1550, 'attending', '2022-07-21 23:06:47', '2025-12-17 19:47:20', 'mpQ6axqA', '5454803'), - (869, 1551, 'attending', '2022-07-19 22:16:28', '2025-12-17 19:47:20', 'mpQ6axqA', '5455037'), - (869, 1554, 'attending', '2022-07-20 12:55:08', '2025-12-17 19:47:20', 'mpQ6axqA', '5455230'), - (869, 1556, 'not_attending', '2022-07-23 13:52:06', '2025-12-17 19:47:20', 'mpQ6axqA', '5457734'), - (869, 1557, 'attending', '2022-07-29 16:01:03', '2025-12-17 19:47:21', 'mpQ6axqA', '5458729'), - (869, 1558, 'attending', '2022-09-06 18:10:52', '2025-12-17 19:47:10', 'mpQ6axqA', '5458730'), - (869, 1559, 'attending', '2022-09-26 22:43:55', '2025-12-17 19:47:11', 'mpQ6axqA', '5458731'), - (869, 1561, 'attending', '2022-07-27 21:29:30', '2025-12-17 19:47:22', 'mpQ6axqA', '5461278'), - (869, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mpQ6axqA', '5469480'), - (869, 1565, 'attending', '2022-07-27 01:30:12', '2025-12-17 19:47:21', 'mpQ6axqA', '5471073'), - (869, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mpQ6axqA', '5474663'), - (869, 1571, 'attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mpQ6axqA', '5482022'), - (869, 1573, 'not_attending', '2022-08-01 20:45:32', '2025-12-17 19:47:22', 'mpQ6axqA', '5482152'), - (869, 1574, 'not_attending', '2022-08-01 20:45:40', '2025-12-17 19:47:22', 'mpQ6axqA', '5482153'), - (869, 1575, 'attending', '2022-08-21 13:17:10', '2025-12-17 19:47:23', 'mpQ6axqA', '5482250'), - (869, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mpQ6axqA', '5482793'), - (869, 1579, 'maybe', '2022-08-04 13:40:45', '2025-12-17 19:47:22', 'mpQ6axqA', '5486019'), - (869, 1580, 'attending', '2022-08-06 19:53:26', '2025-12-17 19:47:22', 'mpQ6axqA', '5488912'), - (869, 1581, 'attending', '2022-08-10 00:06:09', '2025-12-17 19:47:22', 'mpQ6axqA', '5490302'), - (869, 1582, 'maybe', '2022-08-08 02:14:12', '2025-12-17 19:47:23', 'mpQ6axqA', '5492001'), - (869, 1583, 'attending', '2022-08-07 22:07:50', '2025-12-17 19:47:22', 'mpQ6axqA', '5492002'), - (869, 1584, 'not_attending', '2022-08-08 22:03:50', '2025-12-17 19:47:23', 'mpQ6axqA', '5492004'), - (869, 1585, 'attending', '2022-08-07 21:31:48', '2025-12-17 19:47:22', 'mpQ6axqA', '5492013'), - (869, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mpQ6axqA', '5492192'), - (869, 1588, 'attending', '2022-08-08 19:49:57', '2025-12-17 19:47:22', 'mpQ6axqA', '5493139'), - (869, 1589, 'attending', '2022-08-18 19:36:39', '2025-12-17 19:47:23', 'mpQ6axqA', '5493159'), - (869, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'mpQ6axqA', '5493200'), - (869, 1595, 'attending', '2022-08-09 23:20:49', '2025-12-17 19:47:22', 'mpQ6axqA', '5495736'), - (869, 1598, 'attending', '2022-08-10 20:51:01', '2025-12-17 19:47:22', 'mpQ6axqA', '5496567'), - (869, 1603, 'attending', '2022-08-14 04:14:03', '2025-12-17 19:47:23', 'mpQ6axqA', '5497895'), - (869, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mpQ6axqA', '5502188'), - (869, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mpQ6axqA', '5505059'), - (869, 1609, 'maybe', '2022-08-27 11:55:37', '2025-12-17 19:47:23', 'mpQ6axqA', '5506590'), - (869, 1610, 'attending', '2022-08-27 11:55:45', '2025-12-17 19:47:23', 'mpQ6axqA', '5506595'), - (869, 1615, 'attending', '2022-08-26 00:36:57', '2025-12-17 19:47:23', 'mpQ6axqA', '5509055'), - (869, 1618, 'not_attending', '2022-08-26 00:28:55', '2025-12-17 19:47:23', 'mpQ6axqA', '5512005'), - (869, 1619, 'maybe', '2022-08-23 18:27:31', '2025-12-17 19:47:23', 'mpQ6axqA', '5512862'), - (869, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mpQ6axqA', '5513985'), - (869, 1626, 'attending', '2022-08-26 18:44:43', '2025-12-17 19:47:11', 'mpQ6axqA', '5519981'), - (869, 1629, 'maybe', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mpQ6axqA', '5522550'), - (869, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mpQ6axqA', '5534683'), - (869, 1635, 'not_attending', '2022-09-09 17:55:41', '2025-12-17 19:47:10', 'mpQ6axqA', '5537735'), - (869, 1636, 'attending', '2022-09-03 18:37:50', '2025-12-17 19:47:24', 'mpQ6axqA', '5538454'), - (869, 1638, 'attending', '2022-08-30 23:37:17', '2025-12-17 19:47:24', 'mpQ6axqA', '5540402'), - (869, 1639, 'attending', '2022-08-30 23:37:10', '2025-12-17 19:47:24', 'mpQ6axqA', '5540403'), - (869, 1640, 'attending', '2022-09-07 00:11:21', '2025-12-17 19:47:10', 'mpQ6axqA', '5540859'), - (869, 1642, 'not_attending', '2022-09-01 19:42:10', '2025-12-17 19:47:24', 'mpQ6axqA', '5544227'), - (869, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mpQ6axqA', '5546619'), - (869, 1648, 'not_attending', '2022-09-03 18:37:30', '2025-12-17 19:47:24', 'mpQ6axqA', '5548974'), - (869, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mpQ6axqA', '5555245'), - (869, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mpQ6axqA', '5557747'), - (869, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpQ6axqA', '5560255'), - (869, 1664, 'attending', '2022-09-10 18:47:40', '2025-12-17 19:47:25', 'mpQ6axqA', '5562906'), - (869, 1666, 'attending', '2022-09-26 22:42:41', '2025-12-17 19:47:11', 'mpQ6axqA', '5563208'), - (869, 1667, 'not_attending', '2022-09-21 19:44:00', '2025-12-17 19:47:11', 'mpQ6axqA', '5563221'), - (869, 1668, 'not_attending', '2022-09-18 21:10:49', '2025-12-17 19:47:12', 'mpQ6axqA', '5563222'), - (869, 1673, 'not_attending', '2022-09-21 19:45:19', '2025-12-17 19:47:11', 'mpQ6axqA', '5592454'), - (869, 1677, 'attending', '2022-09-22 01:31:37', '2025-12-17 19:47:11', 'mpQ6axqA', '5600604'), - (869, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpQ6axqA', '5605544'), - (869, 1699, 'attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'mpQ6axqA', '5606737'), - (869, 1704, 'attending', '2022-10-06 22:18:27', '2025-12-17 19:47:12', 'mpQ6axqA', '5610508'), - (869, 1708, 'attending', '2022-10-02 15:04:02', '2025-12-17 19:47:12', 'mpQ6axqA', '5617648'), - (869, 1711, 'attending', '2022-10-02 21:11:40', '2025-12-17 19:47:12', 'mpQ6axqA', '5621883'), - (869, 1714, 'attending', '2022-10-02 21:11:48', '2025-12-17 19:47:14', 'mpQ6axqA', '5622347'), - (869, 1717, 'not_attending', '2022-10-18 20:07:59', '2025-12-17 19:47:13', 'mpQ6axqA', '5622842'), - (869, 1718, 'not_attending', '2022-10-18 20:07:29', '2025-12-17 19:47:12', 'mpQ6axqA', '5630907'), - (869, 1719, 'attending', '2022-10-05 20:14:24', '2025-12-17 19:47:12', 'mpQ6axqA', '5630958'), - (869, 1720, 'not_attending', '2022-10-09 11:55:38', '2025-12-17 19:47:12', 'mpQ6axqA', '5630959'), - (869, 1721, 'maybe', '2022-10-09 11:55:41', '2025-12-17 19:47:13', 'mpQ6axqA', '5630960'), - (869, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mpQ6axqA', '5630961'), - (869, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mpQ6axqA', '5630962'), - (869, 1724, 'maybe', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mpQ6axqA', '5630966'), - (869, 1725, 'attending', '2022-11-12 00:02:40', '2025-12-17 19:47:16', 'mpQ6axqA', '5630967'), - (869, 1726, 'maybe', '2022-11-16 00:30:35', '2025-12-17 19:47:16', 'mpQ6axqA', '5630968'), - (869, 1727, 'maybe', '2022-12-03 03:40:13', '2025-12-17 19:47:16', 'mpQ6axqA', '5630969'), - (869, 1728, 'maybe', '2022-11-27 16:28:15', '2025-12-17 19:47:17', 'mpQ6axqA', '5630970'), - (869, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpQ6axqA', '5635406'), - (869, 1736, 'attending', '2022-10-31 17:00:33', '2025-12-17 19:47:15', 'mpQ6axqA', '5638456'), - (869, 1737, 'attending', '2022-11-28 19:49:03', '2025-12-17 19:47:16', 'mpQ6axqA', '5638457'), - (869, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpQ6axqA', '5638765'), - (869, 1739, 'attending', '2022-10-24 17:50:20', '2025-12-17 19:47:14', 'mpQ6axqA', '5640097'), - (869, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mpQ6axqA', '5640843'), - (869, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mpQ6axqA', '5641521'), - (869, 1744, 'attending', '2022-11-16 00:29:54', '2025-12-17 19:47:16', 'mpQ6axqA', '5642818'), - (869, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mpQ6axqA', '5652395'), - (869, 1761, 'attending', '2022-11-08 21:52:32', '2025-12-17 19:47:16', 'mpQ6axqA', '5670434'), - (869, 1762, 'attending', '2022-11-27 16:26:35', '2025-12-17 19:47:16', 'mpQ6axqA', '5670445'), - (869, 1763, 'attending', '2022-11-07 15:19:09', '2025-12-17 19:47:15', 'mpQ6axqA', '5670803'), - (869, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mpQ6axqA', '5671637'), - (869, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mpQ6axqA', '5672329'), - (869, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mpQ6axqA', '5674057'), - (869, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mpQ6axqA', '5674060'), - (869, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mpQ6axqA', '5677461'), - (869, 1774, 'not_attending', '2022-11-01 21:52:53', '2025-12-17 19:47:15', 'mpQ6axqA', '5677843'), - (869, 1776, 'not_attending', '2022-11-07 15:18:18', '2025-12-17 19:47:15', 'mpQ6axqA', '5691067'), - (869, 1777, 'maybe', '2022-11-01 21:51:34', '2025-12-17 19:47:15', 'mpQ6axqA', '5693021'), - (869, 1779, 'attending', '2022-11-01 22:17:52', '2025-12-17 19:47:15', 'mpQ6axqA', '5694252'), - (869, 1781, 'attending', '2022-11-02 02:25:31', '2025-12-17 19:47:15', 'mpQ6axqA', '5696178'), - (869, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mpQ6axqA', '5698046'), - (869, 1784, 'maybe', '2022-11-12 16:04:42', '2025-12-17 19:47:15', 'mpQ6axqA', '5699760'), - (869, 1792, 'attending', '2022-11-07 15:04:11', '2025-12-17 19:47:15', 'mpQ6axqA', '5728512'), - (869, 1793, 'attending', '2022-11-16 00:30:24', '2025-12-17 19:47:16', 'mpQ6axqA', '5736365'), - (869, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mpQ6axqA', '5741601'), - (869, 1797, 'maybe', '2022-12-06 01:21:43', '2025-12-17 19:47:17', 'mpQ6axqA', '5757486'), - (869, 1798, 'maybe', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mpQ6axqA', '5763458'), - (869, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mpQ6axqA', '5774172'), - (869, 1825, 'maybe', '2022-11-27 16:26:17', '2025-12-17 19:47:16', 'mpQ6axqA', '5776760'), - (869, 1828, 'not_attending', '2022-11-28 22:04:15', '2025-12-17 19:47:16', 'mpQ6axqA', '5778865'), - (869, 1829, 'not_attending', '2022-12-01 04:56:02', '2025-12-17 19:47:16', 'mpQ6axqA', '5778867'), - (869, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mpQ6axqA', '5818247'), - (869, 1834, 'not_attending', '2022-12-06 01:21:56', '2025-12-17 19:47:17', 'mpQ6axqA', '5819470'), - (869, 1835, 'attending', '2022-12-06 01:21:51', '2025-12-17 19:47:05', 'mpQ6axqA', '5819471'), - (869, 1837, 'attending', '2022-12-06 01:21:27', '2025-12-17 19:47:16', 'mpQ6axqA', '5820146'), - (869, 1838, 'maybe', '2022-12-06 13:58:39', '2025-12-17 19:47:16', 'mpQ6axqA', '5821722'), - (869, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mpQ6axqA', '5827739'), - (869, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mpQ6axqA', '5844306'), - (869, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mpQ6axqA', '5850159'), - (869, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mpQ6axqA', '5858999'), - (869, 1852, 'maybe', '2023-01-09 15:04:14', '2025-12-17 19:47:05', 'mpQ6axqA', '5869898'), - (869, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mpQ6axqA', '5871984'), - (869, 1859, 'not_attending', '2023-01-16 02:14:19', '2025-12-17 19:47:05', 'mpQ6axqA', '5876234'), - (869, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mpQ6axqA', '5876354'), - (869, 1864, 'maybe', '2023-01-20 02:22:29', '2025-12-17 19:47:05', 'mpQ6axqA', '5879675'), - (869, 1865, 'maybe', '2023-01-21 20:06:24', '2025-12-17 19:47:06', 'mpQ6axqA', '5879676'), - (869, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mpQ6axqA', '5880939'), - (869, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mpQ6axqA', '5880940'), - (869, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mpQ6axqA', '5880942'), - (869, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mpQ6axqA', '5880943'), - (869, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mpQ6axqA', '5887890'), - (869, 1875, 'maybe', '2023-01-27 14:11:27', '2025-12-17 19:47:06', 'mpQ6axqA', '5887908'), - (869, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mpQ6axqA', '5888598'), - (869, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mpQ6axqA', '5893260'), - (869, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mpQ6axqA', '5899826'), - (869, 1885, 'maybe', '2023-02-24 01:30:51', '2025-12-17 19:47:08', 'mpQ6axqA', '5899928'), - (869, 1888, 'maybe', '2023-02-14 01:09:53', '2025-12-17 19:47:07', 'mpQ6axqA', '5900197'), - (869, 1889, 'attending', '2023-02-06 02:33:12', '2025-12-17 19:47:07', 'mpQ6axqA', '5900199'), - (869, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mpQ6axqA', '5900200'), - (869, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mpQ6axqA', '5900202'), - (869, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mpQ6axqA', '5900203'), - (869, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mpQ6axqA', '5901108'), - (869, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mpQ6axqA', '5901126'), - (869, 1897, 'attending', '2023-02-06 02:33:29', '2025-12-17 19:47:07', 'mpQ6axqA', '5901128'), - (869, 1898, 'attending', '2023-02-01 22:52:56', '2025-12-17 19:47:06', 'mpQ6axqA', '5901263'), - (869, 1899, 'not_attending', '2023-02-06 02:33:22', '2025-12-17 19:47:07', 'mpQ6axqA', '5901323'), - (869, 1910, 'maybe', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mpQ6axqA', '5909655'), - (869, 1912, 'not_attending', '2023-02-14 01:09:43', '2025-12-17 19:47:07', 'mpQ6axqA', '5909808'), - (869, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mpQ6axqA', '5910522'), - (869, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mpQ6axqA', '5910526'), - (869, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mpQ6axqA', '5910528'), - (869, 1922, 'attending', '2023-02-14 01:10:26', '2025-12-17 19:47:07', 'mpQ6axqA', '5916219'), - (869, 1927, 'maybe', '2023-03-10 01:37:11', '2025-12-17 19:47:10', 'mpQ6axqA', '5932621'), - (869, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mpQ6axqA', '5936234'), - (869, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mpQ6axqA', '5958351'), - (869, 1938, 'maybe', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mpQ6axqA', '5959751'), - (869, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mpQ6axqA', '5959755'), - (869, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mpQ6axqA', '5960055'), - (869, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mpQ6axqA', '5961684'), - (869, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mpQ6axqA', '5962132'), - (869, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mpQ6axqA', '5962133'), - (869, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mpQ6axqA', '5962134'), - (869, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mpQ6axqA', '5962317'), - (869, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mpQ6axqA', '5962318'), - (869, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mpQ6axqA', '5965933'), - (869, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mpQ6axqA', '5967014'), - (869, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mpQ6axqA', '5972815'), - (869, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mpQ6axqA', '5974016'), - (869, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mpQ6axqA', '5981515'), - (869, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mpQ6axqA', '5993516'), - (869, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mpQ6axqA', '5998939'), - (869, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mpQ6axqA', '6028191'), - (869, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mpQ6axqA', '6040066'), - (869, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mpQ6axqA', '6042717'), - (869, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mpQ6axqA', '6044838'), - (869, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mpQ6axqA', '6044839'), - (869, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpQ6axqA', '6045684'), - (869, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mpQ6axqA', '6050104'), - (869, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mpQ6axqA', '6053195'), - (869, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mpQ6axqA', '6053198'), - (869, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mpQ6axqA', '6056085'), - (869, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mpQ6axqA', '6056916'), - (869, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mpQ6axqA', '6059290'), - (869, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mpQ6axqA', '6060328'), - (869, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mpQ6axqA', '6061037'), - (869, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mpQ6axqA', '6061039'), - (869, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mpQ6axqA', '6067245'), - (869, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mpQ6axqA', '6068094'), - (869, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mpQ6axqA', '6068252'), - (869, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mpQ6axqA', '6068253'), - (869, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mpQ6axqA', '6068254'), - (869, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mpQ6axqA', '6068280'), - (869, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mpQ6axqA', '6069093'), - (869, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mpQ6axqA', '6072528'), - (869, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mpQ6axqA', '6079840'), - (869, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mpQ6axqA', '6083398'), - (869, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mpQ6axqA', '6093504'), - (869, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mpQ6axqA', '6097414'), - (869, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mpQ6axqA', '6097442'), - (869, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mpQ6axqA', '6097684'), - (869, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mpQ6axqA', '6098762'), - (869, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mpQ6axqA', '6101361'), - (869, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mpQ6axqA', '6101362'), - (869, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mpQ6axqA', '6103752'), - (869, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mpQ6axqA', '6107314'), - (869, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mpQ6axqA', '6120034'), - (869, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mpQ6axqA', '6136733'), - (869, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mpQ6axqA', '6137989'), - (869, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mpQ6axqA', '6150864'), - (869, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mpQ6axqA', '6155491'), - (869, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mpQ6axqA', '6164417'), - (869, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mpQ6axqA', '6166388'), - (869, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mpQ6axqA', '6176439'), - (869, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mpQ6axqA', '6182410'), - (869, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mpQ6axqA', '6185812'), - (869, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mpQ6axqA', '6187651'), - (869, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mpQ6axqA', '6187963'), - (869, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mpQ6axqA', '6187964'), - (869, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mpQ6axqA', '6187966'), - (869, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mpQ6axqA', '6187967'), - (869, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mpQ6axqA', '6187969'), - (869, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mpQ6axqA', '6334878'), - (869, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mpQ6axqA', '6337236'), - (869, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mpQ6axqA', '6337970'), - (869, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mpQ6axqA', '6338308'), - (869, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mpQ6axqA', '6340845'), - (869, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mpQ6axqA', '6341710'), - (869, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mpQ6axqA', '6342044'), - (869, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mpQ6axqA', '6342298'), - (869, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mpQ6axqA', '6343294'), - (869, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mpQ6axqA', '6347034'), - (869, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mpQ6axqA', '6347056'), - (869, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mpQ6axqA', '6353830'), - (869, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mpQ6axqA', '6353831'), - (869, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mpQ6axqA', '6357867'), - (869, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mpQ6axqA', '6358652'), - (869, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mpQ6axqA', '6361709'), - (869, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mpQ6axqA', '6361710'), - (869, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mpQ6axqA', '6361711'), - (869, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mpQ6axqA', '6361712'), - (869, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mpQ6axqA', '6361713'), - (869, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mpQ6axqA', '6382573'), - (869, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mpQ6axqA', '6388604'), - (869, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mpQ6axqA', '6394629'), - (869, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mpQ6axqA', '6394631'), - (869, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mpQ6axqA', '6440863'), - (869, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mpQ6axqA', '6445440'), - (869, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mpQ6axqA', '6453951'), - (869, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mpQ6axqA', '6461696'), - (869, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mpQ6axqA', '6462129'), - (869, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mpQ6axqA', '6463218'), - (869, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mpQ6axqA', '6472181'), - (869, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mpQ6axqA', '6482693'), - (869, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mpQ6axqA', '6484200'), - (869, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mpQ6axqA', '6484680'), - (869, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mpQ6axqA', '6507741'), - (869, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mpQ6axqA', '6514659'), - (869, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mpQ6axqA', '6514660'), - (869, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mpQ6axqA', '6519103'), - (869, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mpQ6axqA', '6535681'), - (869, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mpQ6axqA', '6584747'), - (869, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mpQ6axqA', '6587097'), - (869, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mpQ6axqA', '6609022'), - (869, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mpQ6axqA', '6632757'), - (869, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mpQ6axqA', '6644187'), - (869, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mpQ6axqA', '6648951'), - (869, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mpQ6axqA', '6648952'), - (869, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mpQ6axqA', '6655401'), - (869, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mpQ6axqA', '6661585'), - (869, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mpQ6axqA', '6661588'), - (869, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mpQ6axqA', '6661589'), - (869, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mpQ6axqA', '6699906'), - (869, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mpQ6axqA', '6701109'), - (869, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mpQ6axqA', '6705219'), - (869, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mpQ6axqA', '6710153'), - (869, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mpQ6axqA', '6711552'), - (869, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'mpQ6axqA', '6711553'), - (870, 1724, 'attending', '2022-11-10 04:42:58', '2025-12-17 19:47:15', 'daDEYVl4', '5630966'), - (870, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'daDEYVl4', '5630967'), - (870, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'daDEYVl4', '5630968'), - (870, 1727, 'attending', '2022-11-26 21:32:25', '2025-12-17 19:47:16', 'daDEYVl4', '5630969'), - (870, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'daDEYVl4', '5642818'), - (870, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'daDEYVl4', '5670445'), - (870, 1780, 'not_attending', '2022-11-10 03:41:27', '2025-12-17 19:47:15', 'daDEYVl4', '5696082'), - (870, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'daDEYVl4', '5699760'), - (870, 1786, 'attending', '2022-11-10 03:37:22', '2025-12-17 19:47:15', 'daDEYVl4', '5727232'), - (870, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'daDEYVl4', '5741601'), - (870, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'daDEYVl4', '5763458'), - (870, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'daDEYVl4', '5774172'), - (870, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'daDEYVl4', '5818247'), - (870, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'daDEYVl4', '5819471'), - (870, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'daDEYVl4', '5827739'), - (870, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'daDEYVl4', '5844306'), - (870, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'daDEYVl4', '5850159'), - (870, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'daDEYVl4', '5858999'), - (870, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'daDEYVl4', '5871984'), - (870, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'daDEYVl4', '5876354'), - (870, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'daDEYVl4', '5880939'), - (870, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'daDEYVl4', '5887890'), - (870, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'daDEYVl4', '5888598'), - (870, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'daDEYVl4', '5893260'), - (870, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'daDEYVl4', '6044839'), - (870, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daDEYVl4', '6045684'), - (870, 2013, 'attending', '2023-04-14 17:47:35', '2025-12-17 19:46:59', 'daDEYVl4', '6060328'), - (870, 2015, 'not_attending', '2023-04-20 02:17:20', '2025-12-17 19:47:00', 'daDEYVl4', '6061037'), - (870, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'daDEYVl4', '6061039'), - (870, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'daDEYVl4', '6067245'), - (870, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'daDEYVl4', '6068094'), - (870, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'daDEYVl4', '6068252'), - (870, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'daDEYVl4', '6068253'), - (870, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'daDEYVl4', '6068254'), - (870, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'daDEYVl4', '6068280'), - (870, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'daDEYVl4', '6069093'), - (870, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'daDEYVl4', '6072528'), - (870, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'daDEYVl4', '6079840'), - (870, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'daDEYVl4', '6083398'), - (870, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'daDEYVl4', '6093504'), - (870, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'daDEYVl4', '6097414'), - (870, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'daDEYVl4', '6097442'), - (870, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'daDEYVl4', '6097684'), - (870, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'daDEYVl4', '6098762'), - (870, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'daDEYVl4', '6101361'), - (870, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'daDEYVl4', '6101362'), - (870, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'daDEYVl4', '6103752'), - (870, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'daDEYVl4', '6107314'), - (870, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'daDEYVl4', '6120034'), - (870, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'daDEYVl4', '6136733'), - (870, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'daDEYVl4', '6137989'), - (870, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'daDEYVl4', '6150864'), - (870, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'daDEYVl4', '6155491'), - (870, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'daDEYVl4', '6164417'), - (870, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'daDEYVl4', '6166388'), - (870, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'daDEYVl4', '6176439'), - (870, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'daDEYVl4', '6182410'), - (870, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'daDEYVl4', '6185812'), - (870, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'daDEYVl4', '6187651'), - (870, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'daDEYVl4', '6187963'), - (870, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'daDEYVl4', '6187964'), - (870, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'daDEYVl4', '6187966'), - (870, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'daDEYVl4', '6187967'), - (870, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'daDEYVl4', '6187969'), - (870, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'daDEYVl4', '6334878'), - (870, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'daDEYVl4', '6337236'), - (870, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'daDEYVl4', '6337970'), - (870, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'daDEYVl4', '6338308'), - (870, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'daDEYVl4', '6341710'), - (870, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'daDEYVl4', '6342044'), - (870, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'daDEYVl4', '6342298'), - (870, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'daDEYVl4', '6343294'), - (870, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'daDEYVl4', '6347034'), - (870, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'daDEYVl4', '6347056'), - (870, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'daDEYVl4', '6353830'), - (870, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'daDEYVl4', '6353831'), - (870, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'daDEYVl4', '6357867'), - (870, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'daDEYVl4', '6358652'), - (870, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'daDEYVl4', '6361709'), - (870, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'daDEYVl4', '6361710'), - (870, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'daDEYVl4', '6361711'), - (870, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'daDEYVl4', '6361712'), - (870, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'daDEYVl4', '6361713'), - (870, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'daDEYVl4', '6382573'), - (870, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'daDEYVl4', '6388604'), - (870, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'daDEYVl4', '6394629'), - (870, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'daDEYVl4', '6394631'), - (870, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'daDEYVl4', '6440863'), - (870, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'daDEYVl4', '6445440'), - (870, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'daDEYVl4', '6453951'), - (870, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'daDEYVl4', '6461696'), - (870, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'daDEYVl4', '6462129'), - (870, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'daDEYVl4', '6463218'), - (870, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'daDEYVl4', '6472181'), - (870, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'daDEYVl4', '6482693'), - (870, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'daDEYVl4', '6484200'), - (870, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'daDEYVl4', '6484680'), - (870, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'daDEYVl4', '6507741'), - (870, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'daDEYVl4', '6514659'), - (870, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'daDEYVl4', '6514660'), - (870, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'daDEYVl4', '6519103'), - (870, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'daDEYVl4', '6535681'), - (870, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'daDEYVl4', '6584747'), - (870, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'daDEYVl4', '6587097'), - (870, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'daDEYVl4', '6609022'), - (870, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'daDEYVl4', '6632757'), - (870, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'daDEYVl4', '6644187'), - (870, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'daDEYVl4', '6648951'), - (870, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'daDEYVl4', '6648952'), - (870, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'daDEYVl4', '6655401'), - (870, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'daDEYVl4', '6661585'), - (870, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'daDEYVl4', '6661588'), - (870, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'daDEYVl4', '6661589'), - (870, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'daDEYVl4', '6699906'), - (870, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'daDEYVl4', '6699913'), - (870, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'daDEYVl4', '6701109'), - (870, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'daDEYVl4', '6705219'), - (870, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'daDEYVl4', '6710153'), - (870, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'daDEYVl4', '6711552'), - (870, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'daDEYVl4', '6711553'), - (870, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'daDEYVl4', '6722688'), - (870, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'daDEYVl4', '6730620'), - (870, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'daDEYVl4', '6740364'), - (870, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'daDEYVl4', '6743829'), - (870, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'daDEYVl4', '7030380'), - (870, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'daDEYVl4', '7033677'), - (870, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'daDEYVl4', '7044715'), - (870, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'daDEYVl4', '7050318'), - (870, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'daDEYVl4', '7050319'), - (870, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'daDEYVl4', '7050322'), - (870, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'daDEYVl4', '7057804'), - (870, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'daDEYVl4', '7072824'), - (870, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'daDEYVl4', '7074348'), - (870, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'daDEYVl4', '7074364'), - (870, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'daDEYVl4', '7089267'), - (870, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'daDEYVl4', '7098747'), - (870, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'daDEYVl4', '7113468'), - (870, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'daDEYVl4', '7114856'), - (870, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'daDEYVl4', '7114951'), - (870, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'daDEYVl4', '7114955'), - (870, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'daDEYVl4', '7114956'), - (870, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'daDEYVl4', '7114957'), - (870, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'daDEYVl4', '7159484'), - (870, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'daDEYVl4', '7178446'), - (870, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'daDEYVl4', '7220467'), - (870, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'daDEYVl4', '7240354'), - (870, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'daDEYVl4', '7251633'), - (870, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'daDEYVl4', '7324073'), - (870, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'daDEYVl4', '7324074'), - (870, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'daDEYVl4', '7324075'), - (870, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'daDEYVl4', '7324078'), - (870, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'daDEYVl4', '7324082'), - (870, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'daDEYVl4', '7331457'), - (870, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'daDEYVl4', '7363643'), - (870, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'daDEYVl4', '7368606'), - (870, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'daDEYVl4', '7397462'), - (870, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'daDEYVl4', '7424275'), - (870, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'daDEYVl4', '7432751'), - (870, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'daDEYVl4', '7432752'), - (870, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'daDEYVl4', '7432753'), - (870, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'daDEYVl4', '7432754'), - (870, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'daDEYVl4', '7432755'), - (870, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'daDEYVl4', '7432756'), - (870, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'daDEYVl4', '7432758'), - (870, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'daDEYVl4', '7432759'), - (870, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'daDEYVl4', '7433834'), - (870, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'daDEYVl4', '7470197'), - (870, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'daDEYVl4', '7685613'), - (870, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'daDEYVl4', '7688194'), - (870, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'daDEYVl4', '7688196'), - (870, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'daDEYVl4', '7688289'), - (870, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'daDEYVl4', '7692763'), - (870, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'daDEYVl4', '7697552'), - (870, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'daDEYVl4', '7699878'), - (870, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'daDEYVl4', '7704043'), - (870, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'daDEYVl4', '7712467'), - (870, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'daDEYVl4', '7713585'), - (870, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'daDEYVl4', '7713586'), - (870, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'daDEYVl4', '7738518'), - (870, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'daDEYVl4', '7750636'), - (870, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'daDEYVl4', '7796540'), - (870, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'daDEYVl4', '7796541'), - (870, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'daDEYVl4', '7796542'), - (870, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'daDEYVl4', '7825913'), - (870, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'daDEYVl4', '7826209'), - (870, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'daDEYVl4', '7834742'), - (870, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'daDEYVl4', '7842108'), - (870, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'daDEYVl4', '7842902'), - (870, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'daDEYVl4', '7842903'), - (870, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'daDEYVl4', '7842904'), - (870, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'daDEYVl4', '7842905'), - (870, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'daDEYVl4', '7855719'), - (870, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'daDEYVl4', '7860683'), - (870, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'daDEYVl4', '7860684'), - (870, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'daDEYVl4', '7866095'), - (870, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'daDEYVl4', '7869170'), - (870, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'daDEYVl4', '7869188'), - (870, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'daDEYVl4', '7869201'), - (870, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'daDEYVl4', '7877465'), - (870, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'daDEYVl4', '7888250'), - (870, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'daDEYVl4', '7904777'), - (870, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'daDEYVl4', '8349164'), - (870, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'daDEYVl4', '8349545'), - (870, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'daDEYVl4', '8368028'), - (870, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'daDEYVl4', '8368029'), - (870, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'daDEYVl4', '8388462'), - (870, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'daDEYVl4', '8400273'), - (870, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'daDEYVl4', '8400275'), - (870, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'daDEYVl4', '8400276'), - (870, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'daDEYVl4', '8404977'), - (870, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'daDEYVl4', '8430783'), - (870, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'daDEYVl4', '8430784'), - (870, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'daDEYVl4', '8430799'), - (870, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'daDEYVl4', '8430800'), - (870, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'daDEYVl4', '8430801'), - (870, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'daDEYVl4', '8438709'), - (870, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'daDEYVl4', '8457738'), - (870, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'daDEYVl4', '8459566'), - (870, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'daDEYVl4', '8459567'), - (870, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'daDEYVl4', '8461032'), - (870, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'daDEYVl4', '8477877'), - (870, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'daDEYVl4', '8485688'), - (870, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'daDEYVl4', '8490587'), - (870, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'daDEYVl4', '8493552'), - (870, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'daDEYVl4', '8493553'), - (870, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'daDEYVl4', '8493554'), - (870, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'daDEYVl4', '8493555'), - (870, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'daDEYVl4', '8493556'), - (870, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'daDEYVl4', '8493557'), - (870, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'daDEYVl4', '8493558'), - (870, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'daDEYVl4', '8493559'), - (870, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'daDEYVl4', '8493560'), - (870, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'daDEYVl4', '8493561'), - (870, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'daDEYVl4', '8493572'), - (870, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'daDEYVl4', '8540725'), - (870, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'daDEYVl4', '8555421'), - (871, 1380, 'attending', '2022-05-28 22:30:36', '2025-12-17 19:47:30', 'mbZ6E6zm', '5271450'), - (871, 1407, 'attending', '2022-06-04 05:26:52', '2025-12-17 19:47:30', 'mbZ6E6zm', '5363695'), - (871, 1415, 'attending', '2022-05-24 18:56:36', '2025-12-17 19:47:30', 'mbZ6E6zm', '5368973'), - (871, 1417, 'attending', '2022-05-23 21:46:29', '2025-12-17 19:47:30', 'mbZ6E6zm', '5370465'), - (871, 1427, 'maybe', '2022-05-24 18:57:16', '2025-12-17 19:47:30', 'mbZ6E6zm', '5376074'), - (871, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mbZ6E6zm', '5378247'), - (871, 1431, 'attending', '2022-06-11 22:47:09', '2025-12-17 19:47:30', 'mbZ6E6zm', '5389605'), - (871, 1438, 'attending', '2022-06-01 22:34:34', '2025-12-17 19:47:30', 'mbZ6E6zm', '5395032'), - (871, 1442, 'attending', '2022-06-18 22:58:01', '2025-12-17 19:47:17', 'mbZ6E6zm', '5397265'), - (871, 1451, 'attending', '2022-06-18 22:57:37', '2025-12-17 19:47:17', 'mbZ6E6zm', '5403967'), - (871, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mbZ6E6zm', '5404786'), - (871, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mbZ6E6zm', '5405203'), - (871, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mbZ6E6zm', '5408794'), - (871, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mbZ6E6zm', '5411699'), - (871, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mbZ6E6zm', '5412550'), - (871, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mbZ6E6zm', '5415046'), - (871, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mbZ6E6zm', '5422086'), - (871, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mbZ6E6zm', '5422406'), - (871, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mbZ6E6zm', '5424565'), - (871, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mbZ6E6zm', '5426882'), - (871, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mbZ6E6zm', '5427083'), - (871, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'mbZ6E6zm', '5441125'), - (871, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mbZ6E6zm', '5441126'), - (871, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mbZ6E6zm', '5441128'), - (871, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mbZ6E6zm', '5446643'), - (871, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mbZ6E6zm', '5453325'), - (871, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mbZ6E6zm', '5454516'), - (871, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mbZ6E6zm', '5454605'), - (871, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mbZ6E6zm', '5455037'), - (871, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mbZ6E6zm', '5461278'), - (871, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mbZ6E6zm', '5469480'), - (871, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mbZ6E6zm', '5471073'), - (871, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mbZ6E6zm', '5474663'), - (871, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mbZ6E6zm', '5482022'), - (871, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mbZ6E6zm', '5482793'), - (871, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mbZ6E6zm', '5488912'), - (871, 1586, 'maybe', '2022-08-14 23:32:49', '2025-12-17 19:47:23', 'mbZ6E6zm', '5492019'), - (871, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mbZ6E6zm', '5492192'), - (871, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mbZ6E6zm', '5493139'), - (871, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mbZ6E6zm', '5493200'), - (871, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mbZ6E6zm', '5502188'), - (871, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mbZ6E6zm', '5512862'), - (871, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mbZ6E6zm', '5513985'), - (871, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZ6E6zm', '6045684'), - (872, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '406g6vRm', '5880942'), - (872, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '406g6vRm', '5880943'), - (872, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '406g6vRm', '5900200'), - (872, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '406g6vRm', '5900202'), - (872, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '406g6vRm', '5900203'), - (872, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', '406g6vRm', '5910522'), - (872, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '406g6vRm', '5910526'), - (872, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '406g6vRm', '5910528'), - (872, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '406g6vRm', '5916219'), - (872, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '406g6vRm', '5936234'), - (872, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '406g6vRm', '5936691'), - (872, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '406g6vRm', '5958351'), - (872, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '406g6vRm', '5959751'), - (872, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '406g6vRm', '5959755'), - (872, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '406g6vRm', '5960055'), - (872, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '406g6vRm', '5961684'), - (872, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '406g6vRm', '5962132'), - (872, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '406g6vRm', '5962133'), - (872, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '406g6vRm', '5962134'), - (872, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '406g6vRm', '5962317'), - (872, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '406g6vRm', '5962318'), - (872, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '406g6vRm', '5965933'), - (872, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '406g6vRm', '5967014'), - (872, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '406g6vRm', '5972815'), - (872, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '406g6vRm', '5974016'), - (872, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '406g6vRm', '5981515'), - (872, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '406g6vRm', '5993516'), - (872, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '406g6vRm', '5998939'), - (872, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '406g6vRm', '6028191'), - (872, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '406g6vRm', '6040066'), - (872, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '406g6vRm', '6042717'), - (872, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '406g6vRm', '6045684'), - (873, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Lmp0wDWm', '6045684'), - (874, 256, 'not_attending', '2021-05-04 21:40:26', '2025-12-17 19:47:46', 'xd9ZbRym', '3149487'), - (874, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'xd9ZbRym', '3539920'), - (874, 646, 'attending', '2021-05-15 14:32:29', '2025-12-17 19:47:46', 'xd9ZbRym', '3539921'), - (874, 647, 'attending', '2021-05-22 16:21:20', '2025-12-17 19:47:46', 'xd9ZbRym', '3539922'), - (874, 648, 'maybe', '2021-05-29 22:06:30', '2025-12-17 19:47:47', 'xd9ZbRym', '3539923'), - (874, 761, 'not_attending', '2021-05-14 21:56:50', '2025-12-17 19:47:46', 'xd9ZbRym', '3716041'), - (874, 766, 'maybe', '2021-05-12 07:57:59', '2025-12-17 19:47:46', 'xd9ZbRym', '3721383'), - (874, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'xd9ZbRym', '3793156'), - (874, 802, 'attending', '2021-05-12 07:58:03', '2025-12-17 19:47:46', 'xd9ZbRym', '3803310'), - (874, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xd9ZbRym', '3974109'), - (874, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xd9ZbRym', '3975311'), - (874, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xd9ZbRym', '3975312'), - (874, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xd9ZbRym', '3994992'), - (874, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd9ZbRym', '4014338'), - (874, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xd9ZbRym', '4021848'), - (874, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd9ZbRym', '4136744'), - (874, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'xd9ZbRym', '4136937'), - (874, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd9ZbRym', '4136938'), - (874, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd9ZbRym', '4136947'), - (874, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'xd9ZbRym', '4210314'), - (874, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd9ZbRym', '4225444'), - (874, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd9ZbRym', '4239259'), - (874, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'xd9ZbRym', '4240316'), - (874, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'xd9ZbRym', '4240317'), - (874, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'xd9ZbRym', '4240318'), - (874, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'xd9ZbRym', '4240320'), - (874, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd9ZbRym', '4250163'), - (874, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'xd9ZbRym', '4275957'), - (874, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xd9ZbRym', '4277819'), - (874, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xd9ZbRym', '4301723'), - (874, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xd9ZbRym', '4302093'), - (874, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xd9ZbRym', '4304151'), - (874, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'xd9ZbRym', '4345519'), - (874, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'xd9ZbRym', '4356801'), - (874, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xd9ZbRym', '4358025'), - (874, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'xd9ZbRym', '4366186'), - (874, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'xd9ZbRym', '4366187'), - (874, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'xd9ZbRym', '4402823'), - (874, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'xd9ZbRym', '4420735'), - (874, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'xd9ZbRym', '4420738'), - (874, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'xd9ZbRym', '4420739'), - (874, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'xd9ZbRym', '4420741'), - (874, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'xd9ZbRym', '4420744'), - (874, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'xd9ZbRym', '4420747'), - (874, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'xd9ZbRym', '4420748'), - (874, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'xd9ZbRym', '4420749'), - (874, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'xd9ZbRym', '4461883'), - (874, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'xd9ZbRym', '4508342'), - (874, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'xd9ZbRym', '4568602'), - (874, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'xd9ZbRym', '4572153'), - (874, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xd9ZbRym', '4585962'), - (874, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'xd9ZbRym', '4596356'), - (874, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xd9ZbRym', '4598860'), - (874, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xd9ZbRym', '4598861'), - (874, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'xd9ZbRym', '4602797'), - (874, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'xd9ZbRym', '4637896'), - (874, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xd9ZbRym', '4642994'), - (874, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'xd9ZbRym', '4642995'), - (874, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xd9ZbRym', '4642996'), - (874, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'xd9ZbRym', '4642997'), - (874, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'xd9ZbRym', '4645687'), - (874, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xd9ZbRym', '4645698'), - (874, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'xd9ZbRym', '4645704'), - (874, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'xd9ZbRym', '4645705'), - (874, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'xd9ZbRym', '4668385'), - (874, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'xd9ZbRym', '4694407'), - (874, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'xd9ZbRym', '4736497'), - (874, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'xd9ZbRym', '4736499'), - (874, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'xd9ZbRym', '4736500'), - (874, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'xd9ZbRym', '4736503'), - (874, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'xd9ZbRym', '4736504'), - (874, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xd9ZbRym', '4746789'), - (874, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xd9ZbRym', '4753929'), - (874, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xd9ZbRym', '5038850'), - (874, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xd9ZbRym', '5045826'), - (874, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xd9ZbRym', '5132533'), - (874, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'xd9ZbRym', '5186582'), - (874, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'xd9ZbRym', '5186583'), - (874, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'xd9ZbRym', '5186585'), - (874, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'xd9ZbRym', '5190437'), - (874, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xd9ZbRym', '5215989'), - (874, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9ZbRym', '6045684'), - (875, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ZdNeWDo4', '4136938'), - (875, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'ZdNeWDo4', '4229418'), - (875, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNeWDo4', '6045684'), - (876, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ndaKkoVA', '3975312'), - (876, 844, 'not_attending', '2021-06-12 01:01:54', '2025-12-17 19:47:38', 'ndaKkoVA', '4014338'), - (876, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaKkoVA', '6045684'), - (877, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4oo036Z4', '5880940'), - (877, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4oo036Z4', '5880942'), - (877, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4oo036Z4', '5880943'), - (877, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4oo036Z4', '5900199'), - (877, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4oo036Z4', '5900200'), - (877, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4oo036Z4', '5900202'), - (877, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4oo036Z4', '5900203'), - (877, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', '4oo036Z4', '5901055'), - (877, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4oo036Z4', '5901108'), - (877, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4oo036Z4', '5901126'), - (877, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '4oo036Z4', '5901606'), - (877, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4oo036Z4', '5909655'), - (877, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4oo036Z4', '5910522'), - (877, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4oo036Z4', '5910526'), - (877, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4oo036Z4', '5910528'), - (877, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4oo036Z4', '5916219'), - (877, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4oo036Z4', '5936234'), - (877, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '4oo036Z4', '5936691'), - (877, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4oo036Z4', '5958351'), - (877, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4oo036Z4', '5959751'), - (877, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4oo036Z4', '5959755'), - (877, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4oo036Z4', '5960055'), - (877, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4oo036Z4', '5961684'), - (877, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4oo036Z4', '5962132'), - (877, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4oo036Z4', '5962133'), - (877, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4oo036Z4', '5962134'), - (877, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4oo036Z4', '5962317'), - (877, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4oo036Z4', '5962318'), - (877, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4oo036Z4', '5965933'), - (877, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4oo036Z4', '5967014'), - (877, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4oo036Z4', '5972815'), - (877, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4oo036Z4', '5974016'), - (877, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4oo036Z4', '5981515'), - (877, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4oo036Z4', '5993516'), - (877, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4oo036Z4', '5998939'), - (877, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4oo036Z4', '6028191'), - (877, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4oo036Z4', '6040066'), - (877, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4oo036Z4', '6042717'), - (877, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oo036Z4', '6045684'), - (878, 2867, 'attending', '2024-11-25 00:48:11', '2025-12-17 19:46:21', 'ArxK7R8d', '7471202'), - (878, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ArxK7R8d', '7712467'), - (878, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ArxK7R8d', '7713585'), - (878, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ArxK7R8d', '7713586'), - (878, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'ArxK7R8d', '7738518'), - (878, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ArxK7R8d', '7750636'), - (878, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ArxK7R8d', '7796540'), - (878, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ArxK7R8d', '7796541'), - (878, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ArxK7R8d', '7796542'), - (878, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ArxK7R8d', '7825913'), - (878, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ArxK7R8d', '7826209'), - (878, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ArxK7R8d', '7834742'), - (878, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ArxK7R8d', '7842108'), - (878, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ArxK7R8d', '7842902'), - (878, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ArxK7R8d', '7842903'), - (878, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ArxK7R8d', '7842904'), - (878, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ArxK7R8d', '7842905'), - (878, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ArxK7R8d', '7855719'), - (878, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ArxK7R8d', '7860683'), - (878, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ArxK7R8d', '7860684'), - (878, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ArxK7R8d', '7866095'), - (878, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ArxK7R8d', '7869170'), - (878, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ArxK7R8d', '7869188'), - (878, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ArxK7R8d', '7869201'), - (878, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ArxK7R8d', '7877465'), - (878, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'ArxK7R8d', '7878570'), - (878, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ArxK7R8d', '7888250'), - (878, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ArxK7R8d', '8349164'), - (878, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ArxK7R8d', '8349545'), - (878, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ArxK7R8d', '8353584'), - (879, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'o4PZQEGm', '3149493'), - (879, 393, 'not_attending', '2021-06-24 22:36:54', '2025-12-17 19:47:38', 'o4PZQEGm', '3236448'), - (879, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'o4PZQEGm', '4021848'), - (879, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PZQEGm', '6045684'), - (880, 991, 'not_attending', '2021-09-11 21:32:48', '2025-12-17 19:47:43', 'myD7bnWd', '4420738'), - (880, 1003, 'attending', '2021-09-10 19:03:02', '2025-12-17 19:47:43', 'myD7bnWd', '4438802'), - (880, 1004, 'attending', '2021-09-10 21:12:49', '2025-12-17 19:47:43', 'myD7bnWd', '4438804'), - (880, 1023, 'not_attending', '2021-09-11 04:00:24', '2025-12-17 19:47:43', 'myD7bnWd', '4461883'), - (880, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myD7bnWd', '6045684'), - (881, 1893, 'attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'd8V7NJvA', '5901055'), - (881, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'd8V7NJvA', '5901108'), - (881, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd8V7NJvA', '5901126'), - (881, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'd8V7NJvA', '5901606'), - (881, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8V7NJvA', '6045684'), - (882, 162, 'not_attending', '2020-10-15 19:17:29', '2025-12-17 19:47:52', 'kdK0nLZm', '3058699'), - (882, 243, 'not_attending', '2020-11-03 21:35:13', '2025-12-17 19:47:53', 'kdK0nLZm', '3149474'), - (882, 244, 'not_attending', '2020-10-20 22:00:32', '2025-12-17 19:47:52', 'kdK0nLZm', '3149475'), - (882, 245, 'not_attending', '2020-12-01 22:24:08', '2025-12-17 19:47:54', 'kdK0nLZm', '3149476'), - (882, 249, 'not_attending', '2020-11-17 20:56:38', '2025-12-17 19:47:54', 'kdK0nLZm', '3149480'), - (882, 344, 'attending', '2020-11-02 00:07:58', '2025-12-17 19:47:53', 'kdK0nLZm', '3206906'), - (882, 374, 'maybe', '2020-10-25 02:21:46', '2025-12-17 19:47:53', 'kdK0nLZm', '3221415'), - (882, 377, 'not_attending', '2020-10-25 02:22:48', '2025-12-17 19:47:53', 'kdK0nLZm', '3222828'), - (882, 382, 'attending', '2020-10-13 18:50:33', '2025-12-17 19:47:52', 'kdK0nLZm', '3226873'), - (882, 386, 'attending', '2020-10-10 21:33:30', '2025-12-17 19:47:52', 'kdK0nLZm', '3228699'), - (882, 387, 'attending', '2020-10-17 23:02:55', '2025-12-17 19:47:52', 'kdK0nLZm', '3228700'), - (882, 388, 'attending', '2020-10-24 17:16:13', '2025-12-17 19:47:52', 'kdK0nLZm', '3228701'), - (882, 391, 'not_attending', '2020-10-15 19:17:06', '2025-12-17 19:47:52', 'kdK0nLZm', '3236446'), - (882, 392, 'maybe', '2020-10-25 02:22:25', '2025-12-17 19:47:53', 'kdK0nLZm', '3236447'), - (882, 410, 'maybe', '2020-11-26 21:19:24', '2025-12-17 19:47:54', 'kdK0nLZm', '3236469'), - (882, 411, 'not_attending', '2020-10-11 22:38:47', '2025-12-17 19:47:52', 'kdK0nLZm', '3236596'), - (882, 414, 'attending', '2020-10-18 17:39:21', '2025-12-17 19:47:52', 'kdK0nLZm', '3237277'), - (882, 415, 'attending', '2020-10-12 22:38:10', '2025-12-17 19:47:52', 'kdK0nLZm', '3238044'), - (882, 416, 'attending', '2020-10-09 21:31:32', '2025-12-17 19:47:52', 'kdK0nLZm', '3238073'), - (882, 418, 'maybe', '2020-10-13 03:21:22', '2025-12-17 19:47:52', 'kdK0nLZm', '3241728'), - (882, 419, 'maybe', '2020-10-13 18:50:40', '2025-12-17 19:47:52', 'kdK0nLZm', '3242234'), - (882, 420, 'attending', '2020-10-15 19:17:00', '2025-12-17 19:47:52', 'kdK0nLZm', '3245293'), - (882, 421, 'attending', '2020-10-23 01:41:13', '2025-12-17 19:47:52', 'kdK0nLZm', '3245294'), - (882, 422, 'attending', '2020-10-25 02:22:28', '2025-12-17 19:47:53', 'kdK0nLZm', '3245295'), - (882, 423, 'maybe', '2020-11-06 00:45:31', '2025-12-17 19:47:53', 'kdK0nLZm', '3245296'), - (882, 424, 'maybe', '2020-10-12 02:17:58', '2025-12-17 19:47:52', 'kdK0nLZm', '3245751'), - (882, 425, 'maybe', '2020-10-14 03:18:51', '2025-12-17 19:47:52', 'kdK0nLZm', '3250097'), - (882, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'kdK0nLZm', '3250232'), - (882, 428, 'attending', '2020-10-26 21:47:38', '2025-12-17 19:47:53', 'kdK0nLZm', '3250332'), - (882, 429, 'maybe', '2020-11-29 08:13:36', '2025-12-17 19:47:54', 'kdK0nLZm', '3250523'), - (882, 430, 'attending', '2020-10-21 19:28:21', '2025-12-17 19:47:52', 'kdK0nLZm', '3253094'), - (882, 431, 'attending', '2020-10-25 02:22:05', '2025-12-17 19:47:53', 'kdK0nLZm', '3253225'), - (882, 432, 'maybe', '2020-11-04 20:39:14', '2025-12-17 19:47:53', 'kdK0nLZm', '3254416'), - (882, 435, 'attending', '2020-10-22 19:04:40', '2025-12-17 19:47:52', 'kdK0nLZm', '3254790'), - (882, 437, 'maybe', '2020-10-25 02:22:19', '2025-12-17 19:47:53', 'kdK0nLZm', '3256160'), - (882, 438, 'attending', '2020-10-25 02:23:09', '2025-12-17 19:47:53', 'kdK0nLZm', '3256163'), - (882, 439, 'attending', '2020-10-25 02:22:16', '2025-12-17 19:47:53', 'kdK0nLZm', '3256164'), - (882, 440, 'attending', '2020-11-05 22:48:10', '2025-12-17 19:47:53', 'kdK0nLZm', '3256168'), - (882, 441, 'attending', '2020-11-15 00:36:03', '2025-12-17 19:47:54', 'kdK0nLZm', '3256169'), - (882, 443, 'attending', '2020-10-25 02:21:37', '2025-12-17 19:47:53', 'kdK0nLZm', '3263578'), - (882, 444, 'maybe', '2020-10-25 02:22:58', '2025-12-17 19:47:53', 'kdK0nLZm', '3263745'), - (882, 445, 'maybe', '2020-11-13 00:58:05', '2025-12-17 19:47:54', 'kdK0nLZm', '3266138'), - (882, 446, 'maybe', '2020-10-27 23:22:09', '2025-12-17 19:47:53', 'kdK0nLZm', '3267163'), - (882, 447, 'attending', '2020-10-28 03:17:25', '2025-12-17 19:47:53', 'kdK0nLZm', '3267895'), - (882, 448, 'attending', '2020-10-30 23:51:03', '2025-12-17 19:47:53', 'kdK0nLZm', '3271831'), - (882, 449, 'maybe', '2020-11-08 23:11:07', '2025-12-17 19:47:53', 'kdK0nLZm', '3272055'), - (882, 451, 'maybe', '2020-11-02 17:39:35', '2025-12-17 19:47:53', 'kdK0nLZm', '3272186'), - (882, 452, 'attending', '2020-11-26 21:22:09', '2025-12-17 19:47:54', 'kdK0nLZm', '3272981'), - (882, 454, 'maybe', '2020-11-14 00:41:35', '2025-12-17 19:47:54', 'kdK0nLZm', '3275665'), - (882, 455, 'attending', '2020-11-05 22:44:23', '2025-12-17 19:47:53', 'kdK0nLZm', '3276391'), - (882, 456, 'maybe', '2020-11-05 22:44:01', '2025-12-17 19:47:54', 'kdK0nLZm', '3276428'), - (882, 457, 'maybe', '2020-11-07 05:52:54', '2025-12-17 19:47:53', 'kdK0nLZm', '3279087'), - (882, 459, 'attending', '2020-11-08 18:45:23', '2025-12-17 19:47:54', 'kdK0nLZm', '3281467'), - (882, 460, 'maybe', '2020-11-19 20:05:11', '2025-12-17 19:47:54', 'kdK0nLZm', '3281468'), - (882, 461, 'attending', '2020-11-08 18:45:38', '2025-12-17 19:47:53', 'kdK0nLZm', '3281469'), - (882, 462, 'attending', '2020-11-08 18:45:13', '2025-12-17 19:47:53', 'kdK0nLZm', '3281470'), - (882, 465, 'maybe', '2020-11-26 21:19:29', '2025-12-17 19:47:54', 'kdK0nLZm', '3281555'), - (882, 466, 'maybe', '2020-11-22 04:09:41', '2025-12-17 19:47:54', 'kdK0nLZm', '3281829'), - (882, 467, 'not_attending', '2020-11-17 20:56:33', '2025-12-17 19:47:54', 'kdK0nLZm', '3282756'), - (882, 468, 'attending', '2020-11-10 23:24:35', '2025-12-17 19:47:54', 'kdK0nLZm', '3285413'), - (882, 469, 'attending', '2020-11-26 21:19:35', '2025-12-17 19:47:54', 'kdK0nLZm', '3285414'), - (882, 474, 'attending', '2020-11-11 23:25:56', '2025-12-17 19:47:54', 'kdK0nLZm', '3286570'), - (882, 475, 'attending', '2020-11-25 19:34:59', '2025-12-17 19:47:54', 'kdK0nLZm', '3286760'), - (882, 476, 'attending', '2020-11-15 05:40:19', '2025-12-17 19:47:54', 'kdK0nLZm', '3286982'), - (882, 477, 'not_attending', '2020-12-04 00:07:28', '2025-12-17 19:47:54', 'kdK0nLZm', '3289559'), - (882, 478, 'maybe', '2020-11-17 20:56:24', '2025-12-17 19:47:54', 'kdK0nLZm', '3290899'), - (882, 481, 'maybe', '2020-11-19 23:44:24', '2025-12-17 19:47:54', 'kdK0nLZm', '3297764'), - (882, 483, 'attending', '2020-11-23 20:59:21', '2025-12-17 19:47:54', 'kdK0nLZm', '3297791'), - (882, 484, 'attending', '2020-11-20 18:47:07', '2025-12-17 19:47:54', 'kdK0nLZm', '3297792'), - (882, 486, 'attending', '2020-11-24 20:57:28', '2025-12-17 19:47:54', 'kdK0nLZm', '3300281'), - (882, 487, 'maybe', '2020-11-30 18:24:02', '2025-12-17 19:47:54', 'kdK0nLZm', '3311122'), - (882, 488, 'maybe', '2020-11-30 20:09:45', '2025-12-17 19:47:54', 'kdK0nLZm', '3312757'), - (882, 489, 'attending', '2020-11-28 00:25:06', '2025-12-17 19:47:54', 'kdK0nLZm', '3313022'), - (882, 492, 'maybe', '2020-12-03 18:41:44', '2025-12-17 19:47:54', 'kdK0nLZm', '3313731'), - (882, 493, 'attending', '2020-11-29 04:22:56', '2025-12-17 19:47:54', 'kdK0nLZm', '3313856'), - (882, 497, 'maybe', '2020-12-13 07:11:36', '2025-12-17 19:47:55', 'kdK0nLZm', '3314270'), - (882, 499, 'attending', '2020-11-30 20:09:32', '2025-12-17 19:47:55', 'kdK0nLZm', '3314909'), - (882, 500, 'not_attending', '2020-12-19 22:02:28', '2025-12-17 19:47:55', 'kdK0nLZm', '3314964'), - (882, 501, 'not_attending', '2020-12-08 23:22:39', '2025-12-17 19:47:54', 'kdK0nLZm', '3317834'), - (882, 502, 'maybe', '2020-12-12 23:57:41', '2025-12-17 19:47:55', 'kdK0nLZm', '3323365'), - (882, 505, 'maybe', '2020-12-13 07:12:00', '2025-12-17 19:47:55', 'kdK0nLZm', '3323369'), - (882, 506, 'maybe', '2020-12-13 07:11:23', '2025-12-17 19:47:55', 'kdK0nLZm', '3323375'), - (882, 511, 'maybe', '2020-12-19 00:04:04', '2025-12-17 19:47:55', 'kdK0nLZm', '3325335'), - (882, 513, 'maybe', '2020-12-13 07:11:55', '2025-12-17 19:47:55', 'kdK0nLZm', '3329383'), - (882, 515, 'maybe', '2020-12-12 18:15:14', '2025-12-17 19:47:55', 'kdK0nLZm', '3331196'), - (882, 520, 'maybe', '2020-12-21 20:16:09', '2025-12-17 19:47:55', 'kdK0nLZm', '3337453'), - (882, 525, 'not_attending', '2020-12-22 21:05:52', '2025-12-17 19:47:48', 'kdK0nLZm', '3350467'), - (882, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'kdK0nLZm', '3351539'), - (882, 536, 'maybe', '2021-01-16 02:39:29', '2025-12-17 19:47:48', 'kdK0nLZm', '3386848'), - (882, 540, 'maybe', '2021-01-16 02:39:43', '2025-12-17 19:47:48', 'kdK0nLZm', '3389527'), - (882, 543, 'maybe', '2021-01-16 02:39:41', '2025-12-17 19:47:48', 'kdK0nLZm', '3396499'), - (882, 548, 'maybe', '2021-01-16 02:39:39', '2025-12-17 19:47:48', 'kdK0nLZm', '3403650'), - (882, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdK0nLZm', '3406988'), - (882, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'kdK0nLZm', '3416576'), - (882, 571, 'attending', '2021-02-12 19:51:24', '2025-12-17 19:47:50', 'kdK0nLZm', '3435539'), - (882, 602, 'maybe', '2021-02-14 02:26:42', '2025-12-17 19:47:50', 'kdK0nLZm', '3470303'), - (882, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdK0nLZm', '3470305'), - (882, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'kdK0nLZm', '3470991'), - (882, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdK0nLZm', '3517815'), - (882, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdK0nLZm', '3517816'), - (882, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdK0nLZm', '3523941'), - (882, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdK0nLZm', '3533850'), - (882, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdK0nLZm', '3536632'), - (882, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdK0nLZm', '3536656'), - (882, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdK0nLZm', '3539916'), - (882, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdK0nLZm', '3539917'), - (882, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdK0nLZm', '3539918'), - (882, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdK0nLZm', '3539919'), - (882, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdK0nLZm', '3539920'), - (882, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdK0nLZm', '3539921'), - (882, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdK0nLZm', '3539922'), - (882, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdK0nLZm', '3539923'), - (882, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdK0nLZm', '3539927'), - (882, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdK0nLZm', '3582734'), - (882, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdK0nLZm', '3583262'), - (882, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdK0nLZm', '3619523'), - (882, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdK0nLZm', '3661369'), - (882, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdK0nLZm', '3674262'), - (882, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdK0nLZm', '3677402'), - (882, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdK0nLZm', '3730212'), - (882, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdK0nLZm', '3793156'), - (882, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'kdK0nLZm', '3974109'), - (882, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdK0nLZm', '3975311'), - (882, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdK0nLZm', '3975312'), - (882, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdK0nLZm', '3994992'), - (882, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdK0nLZm', '4014338'), - (882, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdK0nLZm', '4021848'), - (882, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdK0nLZm', '4136744'), - (882, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdK0nLZm', '4136937'), - (882, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdK0nLZm', '4136938'), - (882, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdK0nLZm', '4136947'), - (882, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdK0nLZm', '4210314'), - (882, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdK0nLZm', '4225444'), - (882, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdK0nLZm', '4239259'), - (882, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdK0nLZm', '4240316'), - (882, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdK0nLZm', '4240317'), - (882, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdK0nLZm', '4240318'), - (882, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdK0nLZm', '4240320'), - (882, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdK0nLZm', '4250163'), - (882, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdK0nLZm', '4275957'), - (882, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdK0nLZm', '4277819'), - (882, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdK0nLZm', '4301723'), - (882, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdK0nLZm', '4302093'), - (882, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdK0nLZm', '4304151'), - (882, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdK0nLZm', '4356801'), - (882, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdK0nLZm', '4366186'), - (882, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdK0nLZm', '4366187'), - (882, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdK0nLZm', '4420735'), - (882, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdK0nLZm', '4420738'), - (882, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdK0nLZm', '4420739'), - (882, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'kdK0nLZm', '4420741'), - (882, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdK0nLZm', '4420744'), - (882, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdK0nLZm', '4420747'), - (882, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdK0nLZm', '4420748'), - (882, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdK0nLZm', '4420749'), - (882, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdK0nLZm', '4461883'), - (882, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdK0nLZm', '4508342'), - (882, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdK0nLZm', '4568602'), - (882, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdK0nLZm', '4572153'), - (882, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdK0nLZm', '4585962'), - (882, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'kdK0nLZm', '4596356'), - (882, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdK0nLZm', '4598860'), - (882, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdK0nLZm', '4598861'), - (882, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdK0nLZm', '4602797'), - (882, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdK0nLZm', '4637896'), - (882, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdK0nLZm', '4642994'), - (882, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdK0nLZm', '4642995'), - (882, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdK0nLZm', '4642996'), - (882, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdK0nLZm', '4642997'), - (882, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdK0nLZm', '4645687'), - (882, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdK0nLZm', '4645698'), - (882, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdK0nLZm', '4645704'), - (882, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdK0nLZm', '4645705'), - (882, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdK0nLZm', '4668385'), - (882, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdK0nLZm', '4694407'), - (882, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdK0nLZm', '4736497'), - (882, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdK0nLZm', '4736499'), - (882, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdK0nLZm', '4736500'), - (882, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdK0nLZm', '4736503'), - (882, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdK0nLZm', '4736504'), - (882, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdK0nLZm', '4746789'), - (882, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'kdK0nLZm', '4753929'), - (882, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdK0nLZm', '5038850'), - (882, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdK0nLZm', '5045826'), - (882, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdK0nLZm', '5132533'), - (882, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdK0nLZm', '5186582'), - (882, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdK0nLZm', '5186583'), - (882, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdK0nLZm', '5186585'), - (882, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdK0nLZm', '5190437'), - (882, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdK0nLZm', '5195095'), - (882, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdK0nLZm', '5215989'), - (882, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdK0nLZm', '5223686'), - (882, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdK0nLZm', '5247467'), - (882, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdK0nLZm', '5260800'), - (882, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdK0nLZm', '5269930'), - (882, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdK0nLZm', '5271448'), - (882, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'kdK0nLZm', '5271449'), - (882, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdK0nLZm', '5278159'), - (882, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdK0nLZm', '5363695'), - (882, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdK0nLZm', '5365960'), - (882, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdK0nLZm', '5378247'), - (882, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'kdK0nLZm', '5389605'), - (882, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdK0nLZm', '5397265'), - (882, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdK0nLZm', '5404786'), - (882, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdK0nLZm', '5405203'), - (882, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdK0nLZm', '5412550'), - (882, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdK0nLZm', '5415046'), - (882, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdK0nLZm', '5422086'), - (882, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdK0nLZm', '5422406'), - (882, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdK0nLZm', '5424565'), - (882, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdK0nLZm', '5426882'), - (882, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdK0nLZm', '5441125'), - (882, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdK0nLZm', '5441126'), - (882, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdK0nLZm', '5441128'), - (882, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdK0nLZm', '5441131'), - (882, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdK0nLZm', '5441132'), - (882, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdK0nLZm', '5453325'), - (882, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdK0nLZm', '5454516'), - (882, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdK0nLZm', '5454605'), - (882, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdK0nLZm', '5455037'), - (882, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdK0nLZm', '5461278'), - (882, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdK0nLZm', '5469480'), - (882, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdK0nLZm', '5474663'), - (882, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdK0nLZm', '5482022'), - (882, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdK0nLZm', '5488912'), - (882, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdK0nLZm', '5492192'), - (882, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdK0nLZm', '5493139'), - (882, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdK0nLZm', '5493200'), - (882, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdK0nLZm', '5502188'), - (882, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdK0nLZm', '5505059'), - (882, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdK0nLZm', '5509055'), - (882, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdK0nLZm', '5512862'), - (882, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdK0nLZm', '5513985'), - (882, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdK0nLZm', '5519981'), - (882, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdK0nLZm', '5522550'), - (882, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdK0nLZm', '5534683'), - (882, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdK0nLZm', '5537735'), - (882, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdK0nLZm', '5540859'), - (882, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdK0nLZm', '5546619'), - (882, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdK0nLZm', '5557747'), - (882, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdK0nLZm', '5560255'), - (882, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdK0nLZm', '5562906'), - (882, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdK0nLZm', '5600604'), - (882, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdK0nLZm', '5605544'), - (882, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdK0nLZm', '5630960'), - (882, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdK0nLZm', '5630961'), - (882, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdK0nLZm', '5630962'), - (882, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdK0nLZm', '5630966'), - (882, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdK0nLZm', '5630967'), - (882, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdK0nLZm', '5630968'), - (882, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdK0nLZm', '5635406'), - (882, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdK0nLZm', '5638765'), - (882, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdK0nLZm', '5640097'), - (882, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdK0nLZm', '5640843'), - (882, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdK0nLZm', '5641521'), - (882, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdK0nLZm', '5642818'), - (882, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdK0nLZm', '5652395'), - (882, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdK0nLZm', '5670445'), - (882, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdK0nLZm', '5671637'), - (882, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdK0nLZm', '5672329'), - (882, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdK0nLZm', '5674057'), - (882, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdK0nLZm', '5674060'), - (882, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdK0nLZm', '5677461'), - (882, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdK0nLZm', '5698046'), - (882, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdK0nLZm', '5699760'), - (882, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdK0nLZm', '5741601'), - (882, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdK0nLZm', '5763458'), - (882, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdK0nLZm', '5774172'), - (882, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdK0nLZm', '5818247'), - (882, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdK0nLZm', '5819471'), - (882, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdK0nLZm', '5827739'), - (882, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdK0nLZm', '5844306'), - (882, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdK0nLZm', '5850159'), - (882, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdK0nLZm', '5858999'), - (882, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdK0nLZm', '5871984'), - (882, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdK0nLZm', '5876354'), - (882, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdK0nLZm', '5880939'), - (882, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdK0nLZm', '5880940'), - (882, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdK0nLZm', '5880942'), - (882, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdK0nLZm', '5880943'), - (882, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdK0nLZm', '5887890'), - (882, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdK0nLZm', '5888598'), - (882, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdK0nLZm', '5893260'), - (882, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdK0nLZm', '5899826'), - (882, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdK0nLZm', '5900199'), - (882, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdK0nLZm', '5900200'), - (882, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdK0nLZm', '5900202'), - (882, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdK0nLZm', '5900203'), - (882, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdK0nLZm', '5901108'), - (882, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdK0nLZm', '5901126'), - (882, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdK0nLZm', '5909655'), - (882, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdK0nLZm', '5910522'), - (882, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdK0nLZm', '5910526'), - (882, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdK0nLZm', '5910528'), - (882, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdK0nLZm', '5916219'), - (882, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdK0nLZm', '5936234'), - (882, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdK0nLZm', '5958351'), - (882, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdK0nLZm', '5959751'), - (882, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdK0nLZm', '5959755'), - (882, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdK0nLZm', '5960055'), - (882, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdK0nLZm', '5961684'), - (882, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdK0nLZm', '5962132'), - (882, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdK0nLZm', '5962133'), - (882, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdK0nLZm', '5962134'), - (882, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdK0nLZm', '5962317'), - (882, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdK0nLZm', '5962318'), - (882, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdK0nLZm', '5965933'), - (882, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdK0nLZm', '5967014'), - (882, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdK0nLZm', '5972815'), - (882, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdK0nLZm', '5974016'), - (882, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdK0nLZm', '5981515'), - (882, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdK0nLZm', '5993516'), - (882, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdK0nLZm', '5998939'), - (882, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdK0nLZm', '6028191'), - (882, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdK0nLZm', '6040066'), - (882, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdK0nLZm', '6042717'), - (882, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdK0nLZm', '6044838'), - (882, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdK0nLZm', '6044839'), - (882, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0nLZm', '6045684'), - (882, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdK0nLZm', '6050104'), - (882, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdK0nLZm', '6053195'), - (882, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdK0nLZm', '6053198'), - (882, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdK0nLZm', '6056085'), - (882, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdK0nLZm', '6056916'), - (882, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdK0nLZm', '6059290'), - (882, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdK0nLZm', '6060328'), - (882, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdK0nLZm', '6061037'), - (882, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdK0nLZm', '6061039'), - (882, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdK0nLZm', '6067245'), - (882, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdK0nLZm', '6068094'), - (882, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdK0nLZm', '6068252'), - (882, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdK0nLZm', '6068253'), - (882, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdK0nLZm', '6068254'), - (882, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdK0nLZm', '6068280'), - (882, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdK0nLZm', '6069093'), - (882, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdK0nLZm', '6072528'), - (882, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdK0nLZm', '6079840'), - (882, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdK0nLZm', '6083398'), - (882, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdK0nLZm', '6093504'), - (882, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdK0nLZm', '6097414'), - (882, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdK0nLZm', '6097442'), - (882, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdK0nLZm', '6097684'), - (882, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdK0nLZm', '6098762'), - (882, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdK0nLZm', '6101361'), - (882, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdK0nLZm', '6101362'), - (882, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdK0nLZm', '6107314'), - (882, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdK0nLZm', '6120034'), - (882, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'kdK0nLZm', '6136733'), - (882, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdK0nLZm', '6137989'), - (882, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdK0nLZm', '6150864'), - (882, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdK0nLZm', '6155491'), - (882, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdK0nLZm', '6164417'), - (882, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdK0nLZm', '6166388'), - (882, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdK0nLZm', '6176439'), - (882, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdK0nLZm', '6182410'), - (882, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdK0nLZm', '6185812'), - (882, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdK0nLZm', '6187651'), - (882, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdK0nLZm', '6187963'), - (882, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdK0nLZm', '6187964'), - (882, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdK0nLZm', '6187966'), - (882, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdK0nLZm', '6187967'), - (882, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdK0nLZm', '6187969'), - (882, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdK0nLZm', '6334878'), - (882, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdK0nLZm', '6337236'), - (882, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdK0nLZm', '6337970'), - (882, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdK0nLZm', '6338308'), - (882, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdK0nLZm', '6341710'), - (882, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdK0nLZm', '6342044'), - (882, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdK0nLZm', '6342298'), - (882, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdK0nLZm', '6343294'), - (882, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdK0nLZm', '6347034'), - (882, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdK0nLZm', '6347056'), - (882, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdK0nLZm', '6353830'), - (882, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdK0nLZm', '6353831'), - (882, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdK0nLZm', '6357867'), - (882, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdK0nLZm', '6358652'), - (882, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdK0nLZm', '6361709'), - (882, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdK0nLZm', '6361710'), - (882, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdK0nLZm', '6361711'), - (882, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdK0nLZm', '6361712'), - (882, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdK0nLZm', '6361713'), - (882, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdK0nLZm', '6382573'), - (882, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdK0nLZm', '6388604'), - (882, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdK0nLZm', '6394629'), - (882, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdK0nLZm', '6394631'), - (882, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdK0nLZm', '6440863'), - (882, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdK0nLZm', '6445440'), - (882, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdK0nLZm', '6453951'), - (882, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdK0nLZm', '6461696'), - (882, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdK0nLZm', '6462129'), - (882, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdK0nLZm', '6463218'), - (882, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdK0nLZm', '6472181'), - (882, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdK0nLZm', '6482693'), - (882, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdK0nLZm', '6484200'), - (882, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdK0nLZm', '6484680'), - (882, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdK0nLZm', '6507741'), - (882, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdK0nLZm', '6514659'), - (882, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdK0nLZm', '6514660'), - (882, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdK0nLZm', '6519103'), - (882, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdK0nLZm', '6535681'), - (882, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdK0nLZm', '6584747'), - (882, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdK0nLZm', '6587097'), - (882, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdK0nLZm', '6609022'), - (882, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'kdK0nLZm', '6632757'), - (882, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdK0nLZm', '6644187'), - (882, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdK0nLZm', '6648951'), - (882, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdK0nLZm', '6648952'), - (882, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdK0nLZm', '6655401'), - (882, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdK0nLZm', '6661585'), - (882, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdK0nLZm', '6661588'), - (882, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdK0nLZm', '6661589'), - (882, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdK0nLZm', '6699906'), - (882, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdK0nLZm', '6699913'), - (882, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdK0nLZm', '6701109'), - (882, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdK0nLZm', '6705219'), - (882, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdK0nLZm', '6710153'), - (882, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdK0nLZm', '6711552'), - (882, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdK0nLZm', '6711553'), - (882, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdK0nLZm', '6722688'), - (882, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdK0nLZm', '6730620'), - (882, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdK0nLZm', '6740364'), - (882, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdK0nLZm', '6743829'), - (882, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdK0nLZm', '7030380'), - (882, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'kdK0nLZm', '7033677'), - (882, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdK0nLZm', '7044715'), - (882, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdK0nLZm', '7050318'), - (882, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdK0nLZm', '7050319'), - (882, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdK0nLZm', '7050322'), - (882, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdK0nLZm', '7057804'), - (882, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdK0nLZm', '7072824'), - (882, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdK0nLZm', '7074348'), - (882, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdK0nLZm', '7074364'), - (882, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdK0nLZm', '7089267'), - (882, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdK0nLZm', '7098747'), - (882, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdK0nLZm', '7113468'), - (882, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdK0nLZm', '7114856'), - (882, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdK0nLZm', '7114951'), - (882, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdK0nLZm', '7114955'), - (882, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdK0nLZm', '7114956'), - (882, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdK0nLZm', '7114957'), - (882, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdK0nLZm', '7159484'), - (882, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdK0nLZm', '7178446'), - (882, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdK0nLZm', '7220467'), - (882, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdK0nLZm', '7240354'), - (882, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdK0nLZm', '7251633'), - (882, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdK0nLZm', '7324073'), - (882, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdK0nLZm', '7324074'), - (882, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdK0nLZm', '7324075'), - (882, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdK0nLZm', '7324078'), - (882, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdK0nLZm', '7324082'), - (882, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdK0nLZm', '7331457'), - (882, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdK0nLZm', '7363643'), - (882, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdK0nLZm', '7368606'), - (882, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdK0nLZm', '7397462'), - (882, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdK0nLZm', '7424275'), - (882, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdK0nLZm', '7432751'), - (882, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdK0nLZm', '7432752'), - (882, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdK0nLZm', '7432753'), - (882, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdK0nLZm', '7432754'), - (882, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdK0nLZm', '7432755'), - (882, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdK0nLZm', '7432756'), - (882, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdK0nLZm', '7432758'), - (882, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdK0nLZm', '7432759'), - (882, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdK0nLZm', '7433834'), - (882, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'kdK0nLZm', '7470197'), - (882, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdK0nLZm', '7685613'), - (882, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdK0nLZm', '7688194'), - (882, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdK0nLZm', '7688196'), - (882, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdK0nLZm', '7688289'), - (882, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdK0nLZm', '7692763'), - (882, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdK0nLZm', '7697552'), - (882, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdK0nLZm', '7699878'), - (882, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdK0nLZm', '7704043'), - (882, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdK0nLZm', '7712467'), - (882, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdK0nLZm', '7713585'), - (882, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdK0nLZm', '7713586'), - (882, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdK0nLZm', '7738518'), - (882, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdK0nLZm', '7750636'), - (882, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdK0nLZm', '7796540'), - (882, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdK0nLZm', '7796541'), - (882, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdK0nLZm', '7796542'), - (882, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdK0nLZm', '7825913'), - (882, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdK0nLZm', '7826209'), - (882, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdK0nLZm', '7834742'), - (882, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'kdK0nLZm', '7842108'), - (882, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdK0nLZm', '7842902'), - (882, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdK0nLZm', '7842903'), - (882, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdK0nLZm', '7842904'), - (882, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdK0nLZm', '7842905'), - (882, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdK0nLZm', '7855719'), - (882, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdK0nLZm', '7860683'), - (882, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdK0nLZm', '7860684'), - (882, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdK0nLZm', '7866095'), - (882, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdK0nLZm', '7869170'), - (882, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdK0nLZm', '7869188'), - (882, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdK0nLZm', '7869201'), - (882, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdK0nLZm', '7877465'), - (882, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdK0nLZm', '7888250'), - (882, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdK0nLZm', '7904777'), - (882, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdK0nLZm', '8349164'), - (882, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdK0nLZm', '8349545'), - (882, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdK0nLZm', '8368028'), - (882, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdK0nLZm', '8368029'), - (882, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdK0nLZm', '8388462'), - (882, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdK0nLZm', '8400273'), - (882, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdK0nLZm', '8400275'), - (882, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'kdK0nLZm', '8400276'), - (882, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdK0nLZm', '8404977'), - (882, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdK0nLZm', '8430783'), - (882, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdK0nLZm', '8430784'), - (882, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdK0nLZm', '8430799'), - (882, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdK0nLZm', '8430800'), - (882, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdK0nLZm', '8430801'), - (882, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdK0nLZm', '8438709'), - (882, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdK0nLZm', '8457738'), - (882, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdK0nLZm', '8459566'), - (882, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdK0nLZm', '8459567'), - (882, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdK0nLZm', '8461032'), - (882, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdK0nLZm', '8477877'), - (882, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdK0nLZm', '8485688'), - (882, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdK0nLZm', '8490587'), - (882, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdK0nLZm', '8493552'), - (882, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdK0nLZm', '8493553'), - (882, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdK0nLZm', '8493554'), - (882, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdK0nLZm', '8493555'), - (882, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdK0nLZm', '8493556'), - (882, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdK0nLZm', '8493557'), - (882, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdK0nLZm', '8493558'), - (882, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdK0nLZm', '8493559'), - (882, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdK0nLZm', '8493560'), - (882, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdK0nLZm', '8493561'), - (882, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdK0nLZm', '8493572'), - (882, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdK0nLZm', '8540725'), - (882, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdK0nLZm', '8555421'), - (883, 1374, 'attending', '2022-05-07 22:56:01', '2025-12-17 19:47:28', 'mbZOZKEm', '5269930'), - (883, 1378, 'attending', '2022-05-07 14:40:16', '2025-12-17 19:47:28', 'mbZOZKEm', '5271448'), - (883, 1379, 'maybe', '2022-05-21 12:49:07', '2025-12-17 19:47:30', 'mbZOZKEm', '5271449'), - (883, 1380, 'not_attending', '2022-05-29 00:01:04', '2025-12-17 19:47:30', 'mbZOZKEm', '5271450'), - (883, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mbZOZKEm', '5276469'), - (883, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mbZOZKEm', '5278159'), - (883, 1407, 'attending', '2022-06-04 12:15:34', '2025-12-17 19:47:30', 'mbZOZKEm', '5363695'), - (883, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mbZOZKEm', '5365960'), - (883, 1415, 'attending', '2022-05-23 06:58:13', '2025-12-17 19:47:30', 'mbZOZKEm', '5368973'), - (883, 1427, 'attending', '2022-05-25 15:10:23', '2025-12-17 19:47:30', 'mbZOZKEm', '5376074'), - (883, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mbZOZKEm', '5378247'), - (883, 1431, 'attending', '2022-06-11 12:58:32', '2025-12-17 19:47:30', 'mbZOZKEm', '5389605'), - (883, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mbZOZKEm', '5397265'), - (883, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mbZOZKEm', '5403967'), - (883, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mbZOZKEm', '5404786'), - (883, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mbZOZKEm', '5405203'), - (883, 1471, 'attending', '2022-06-20 10:22:01', '2025-12-17 19:47:17', 'mbZOZKEm', '5407063'), - (883, 1475, 'attending', '2022-06-16 13:00:19', '2025-12-17 19:47:17', 'mbZOZKEm', '5408108'), - (883, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mbZOZKEm', '5408794'), - (883, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mbZOZKEm', '5411699'), - (883, 1482, 'attending', '2022-06-20 10:21:46', '2025-12-17 19:47:19', 'mbZOZKEm', '5412550'), - (883, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mbZOZKEm', '5415046'), - (883, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mbZOZKEm', '5422086'), - (883, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mbZOZKEm', '5422406'), - (883, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mbZOZKEm', '5424565'), - (883, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mbZOZKEm', '5426882'), - (883, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mbZOZKEm', '5427083'), - (883, 1511, 'attending', '2022-07-09 16:15:21', '2025-12-17 19:47:19', 'mbZOZKEm', '5437733'), - (883, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'mbZOZKEm', '5441125'), - (883, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mbZOZKEm', '5441126'), - (883, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mbZOZKEm', '5441128'), - (883, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mbZOZKEm', '5441131'), - (883, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mbZOZKEm', '5441132'), - (883, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mbZOZKEm', '5446643'), - (883, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mbZOZKEm', '5453325'), - (883, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mbZOZKEm', '5454516'), - (883, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mbZOZKEm', '5454605'), - (883, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mbZOZKEm', '5455037'), - (883, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mbZOZKEm', '5461278'), - (883, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mbZOZKEm', '5469480'), - (883, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mbZOZKEm', '5471073'), - (883, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mbZOZKEm', '5474663'), - (883, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mbZOZKEm', '5482022'), - (883, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mbZOZKEm', '5482793'), - (883, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mbZOZKEm', '5488912'), - (883, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mbZOZKEm', '5492192'), - (883, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mbZOZKEm', '5493139'), - (883, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mbZOZKEm', '5493200'), - (883, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mbZOZKEm', '5502188'), - (883, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mbZOZKEm', '5505059'), - (883, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mbZOZKEm', '5509055'), - (883, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mbZOZKEm', '5512862'), - (883, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mbZOZKEm', '5513985'), - (883, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mbZOZKEm', '5519981'), - (883, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mbZOZKEm', '5522550'), - (883, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mbZOZKEm', '5534683'), - (883, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mbZOZKEm', '5537735'), - (883, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mbZOZKEm', '5540859'), - (883, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mbZOZKEm', '5546619'), - (883, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mbZOZKEm', '5555245'), - (883, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mbZOZKEm', '5557747'), - (883, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mbZOZKEm', '5560255'), - (883, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mbZOZKEm', '5562906'), - (883, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mbZOZKEm', '5600604'), - (883, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mbZOZKEm', '5605544'), - (883, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'mbZOZKEm', '5606737'), - (883, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mbZOZKEm', '5630960'), - (883, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mbZOZKEm', '5630961'), - (883, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mbZOZKEm', '5630962'), - (883, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mbZOZKEm', '5630966'), - (883, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mbZOZKEm', '5630967'), - (883, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mbZOZKEm', '5630968'), - (883, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mbZOZKEm', '5635406'), - (883, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mbZOZKEm', '5638765'), - (883, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mbZOZKEm', '5640097'), - (883, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mbZOZKEm', '5640843'), - (883, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mbZOZKEm', '5641521'), - (883, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mbZOZKEm', '5642818'), - (883, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mbZOZKEm', '5652395'), - (883, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mbZOZKEm', '5670445'), - (883, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mbZOZKEm', '5671637'), - (883, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mbZOZKEm', '5672329'), - (883, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mbZOZKEm', '5674057'), - (883, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mbZOZKEm', '5674060'), - (883, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mbZOZKEm', '5677461'), - (883, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mbZOZKEm', '5698046'), - (883, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mbZOZKEm', '5699760'), - (883, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mbZOZKEm', '5741601'), - (883, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mbZOZKEm', '5763458'), - (883, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mbZOZKEm', '5774172'), - (883, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mbZOZKEm', '5818247'), - (883, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mbZOZKEm', '5819471'), - (883, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mbZOZKEm', '5827739'), - (883, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mbZOZKEm', '5844306'), - (883, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mbZOZKEm', '5850159'), - (883, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mbZOZKEm', '5858999'), - (883, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mbZOZKEm', '5871984'), - (883, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mbZOZKEm', '5876354'), - (883, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mbZOZKEm', '5880939'), - (883, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mbZOZKEm', '5887890'), - (883, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mbZOZKEm', '5888598'), - (883, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mbZOZKEm', '5893260'), - (883, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZOZKEm', '6045684'), - (884, 255, 'maybe', '2021-03-19 18:35:01', '2025-12-17 19:47:43', '64vwwwkd', '3149486'), - (884, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '64vwwwkd', '3236465'), - (884, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '64vwwwkd', '3539916'), - (884, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '64vwwwkd', '3539918'), - (884, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '64vwwwkd', '3539919'), - (884, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '64vwwwkd', '3539920'), - (884, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '64vwwwkd', '3539921'), - (884, 649, 'maybe', '2021-03-19 18:34:36', '2025-12-17 19:47:51', '64vwwwkd', '3539927'), - (884, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '64vwwwkd', '3582734'), - (884, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '64vwwwkd', '3583262'), - (884, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '64vwwwkd', '3619523'), - (884, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '64vwwwkd', '3661369'), - (884, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '64vwwwkd', '3674262'), - (884, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '64vwwwkd', '3677402'), - (884, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '64vwwwkd', '3730212'), - (884, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '64vwwwkd', '3793156'), - (884, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '64vwwwkd', '3803310'), - (884, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '64vwwwkd', '3806392'), - (884, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64vwwwkd', '6045684'), - (885, 993, 'not_attending', '2021-09-25 19:05:27', '2025-12-17 19:47:34', 'Ae75vozd', '4420741'), - (885, 994, 'not_attending', '2021-10-02 22:32:36', '2025-12-17 19:47:34', 'Ae75vozd', '4420742'), - (885, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'Ae75vozd', '4420744'), - (885, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'Ae75vozd', '4420747'), - (885, 1006, 'maybe', '2021-09-25 19:42:19', '2025-12-17 19:47:34', 'Ae75vozd', '4438808'), - (885, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Ae75vozd', '4568602'), - (885, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Ae75vozd', '4572153'), - (885, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'Ae75vozd', '4585962'), - (885, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Ae75vozd', '4596356'), - (885, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Ae75vozd', '4598860'), - (885, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Ae75vozd', '4598861'), - (885, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Ae75vozd', '4602797'), - (885, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Ae75vozd', '4637896'), - (885, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Ae75vozd', '4642994'), - (885, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Ae75vozd', '4642995'), - (885, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Ae75vozd', '4642996'), - (885, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Ae75vozd', '4642997'), - (885, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Ae75vozd', '4645687'), - (885, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Ae75vozd', '4645698'), - (885, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Ae75vozd', '4645704'), - (885, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Ae75vozd', '4645705'), - (885, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae75vozd', '4668385'), - (885, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ae75vozd', '6045684'), - (886, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'o4PKJyGA', '3470303'), - (886, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'o4PKJyGA', '3470305'), - (886, 605, 'maybe', '2021-02-08 21:49:34', '2025-12-17 19:47:50', 'o4PKJyGA', '3470991'), - (886, 610, 'attending', '2021-02-11 13:29:04', '2025-12-17 19:47:50', 'o4PKJyGA', '3482159'), - (886, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'o4PKJyGA', '3517815'), - (886, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'o4PKJyGA', '3523941'), - (886, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'o4PKJyGA', '3533850'), - (886, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'o4PKJyGA', '3536632'), - (886, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'o4PKJyGA', '3536656'), - (886, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'o4PKJyGA', '3539916'), - (886, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'o4PKJyGA', '3539917'), - (886, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'o4PKJyGA', '3539918'), - (886, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'o4PKJyGA', '3539919'), - (886, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'o4PKJyGA', '3539920'), - (886, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'o4PKJyGA', '3539921'), - (886, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'o4PKJyGA', '3539922'), - (886, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'o4PKJyGA', '3539923'), - (886, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PKJyGA', '6045684'), - (887, 251, 'attending', '2021-01-22 06:19:32', '2025-12-17 19:47:49', 'bdzyrkL4', '3149482'), - (887, 400, 'attending', '2021-01-27 22:22:11', '2025-12-17 19:47:50', 'bdzyrkL4', '3236455'), - (887, 555, 'not_attending', '2021-01-22 16:36:49', '2025-12-17 19:47:49', 'bdzyrkL4', '3416576'), - (887, 558, 'attending', '2021-01-22 04:33:03', '2025-12-17 19:47:49', 'bdzyrkL4', '3418925'), - (887, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'bdzyrkL4', '3426074'), - (887, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'bdzyrkL4', '3430267'), - (887, 570, 'maybe', '2021-02-05 03:34:54', '2025-12-17 19:47:50', 'bdzyrkL4', '3435538'), - (887, 591, 'maybe', '2021-02-08 17:59:46', '2025-12-17 19:47:50', 'bdzyrkL4', '3465880'), - (887, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'bdzyrkL4', '3468125'), - (887, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'bdzyrkL4', '3470303'), - (887, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'bdzyrkL4', '3470305'), - (887, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'bdzyrkL4', '3470991'), - (887, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'bdzyrkL4', '3517815'), - (887, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'bdzyrkL4', '3517816'), - (887, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'bdzyrkL4', '3523941'), - (887, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'bdzyrkL4', '3533850'), - (887, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'bdzyrkL4', '3536632'), - (887, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'bdzyrkL4', '3536656'), - (887, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'bdzyrkL4', '3539916'), - (887, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'bdzyrkL4', '3539917'), - (887, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'bdzyrkL4', '3539918'), - (887, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'bdzyrkL4', '3539919'), - (887, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'bdzyrkL4', '3539920'), - (887, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'bdzyrkL4', '3539921'), - (887, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'bdzyrkL4', '3539922'), - (887, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'bdzyrkL4', '3539923'), - (887, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'bdzyrkL4', '3539927'), - (887, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'bdzyrkL4', '3582734'), - (887, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdzyrkL4', '3583262'), - (887, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'bdzyrkL4', '3619523'), - (887, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdzyrkL4', '3661369'), - (887, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'bdzyrkL4', '3674262'), - (887, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdzyrkL4', '3677402'), - (887, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'bdzyrkL4', '3730212'), - (887, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzyrkL4', '6045684'), - (915, 4, 'attending', '2020-03-21 19:29:15', '2025-12-17 19:47:58', '6AXQDZ64', '2958046'), - (915, 5, 'attending', '2020-03-21 19:29:14', '2025-12-17 19:47:58', '6AXQDZ64', '2958047'), - (915, 9, 'attending', '2020-03-28 21:12:36', '2025-12-17 19:47:56', '6AXQDZ64', '2958052'), - (915, 10, 'attending', '2020-03-28 21:12:42', '2025-12-17 19:47:56', '6AXQDZ64', '2958053'), - (915, 29, 'maybe', '2020-03-22 18:22:21', '2025-12-17 19:47:56', '6AXQDZ64', '2961309'), - (915, 30, 'attending', '2020-03-23 17:16:01', '2025-12-17 19:47:57', '6AXQDZ64', '2961895'), - (915, 36, 'maybe', '2020-03-29 08:55:11', '2025-12-17 19:47:57', '6AXQDZ64', '2969208'), - (915, 39, 'maybe', '2020-03-30 23:01:08', '2025-12-17 19:47:57', '6AXQDZ64', '2970637'), - (915, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', '6AXQDZ64', '2971546'), - (915, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '6AXQDZ64', '2974534'), - (915, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', '6AXQDZ64', '2974955'), - (915, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', '6AXQDZ64', '2975384'), - (915, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', '6AXQDZ64', '2975385'), - (915, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', '6AXQDZ64', '2976575'), - (915, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '6AXQDZ64', '2977343'), - (915, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '6AXQDZ64', '2977812'), - (915, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', '6AXQDZ64', '2977931'), - (915, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', '6AXQDZ64', '2978244'), - (915, 75, 'not_attending', '2020-04-19 19:31:11', '2025-12-17 19:47:57', '6AXQDZ64', '2978245'), - (915, 76, 'not_attending', '2020-05-01 17:16:21', '2025-12-17 19:47:57', '6AXQDZ64', '2978246'), - (915, 77, 'not_attending', '2020-05-04 13:58:20', '2025-12-17 19:47:57', '6AXQDZ64', '2978247'), - (915, 78, 'not_attending', '2020-05-19 18:49:52', '2025-12-17 19:47:57', '6AXQDZ64', '2978249'), - (915, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', '6AXQDZ64', '2978250'), - (915, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', '6AXQDZ64', '2978433'), - (915, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '6AXQDZ64', '2978438'), - (915, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '6AXQDZ64', '2980871'), - (915, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '6AXQDZ64', '2981388'), - (915, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '6AXQDZ64', '2986743'), - (915, 104, 'not_attending', '2020-04-24 13:42:22', '2025-12-17 19:47:57', '6AXQDZ64', '2991471'), - (915, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', '6AXQDZ64', '2993501'), - (915, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '6AXQDZ64', '2994480'), - (915, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', '6AXQDZ64', '3001217'), - (915, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', '6AXQDZ64', '3023063'), - (915, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '6AXQDZ64', '3034321'), - (915, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '6AXQDZ64', '3035881'), - (915, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '6AXQDZ64', '3049983'), - (915, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '6AXQDZ64', '3058959'), - (915, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', '6AXQDZ64', '3067093'), - (915, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '6AXQDZ64', '3075228'), - (915, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '6AXQDZ64', '3075456'), - (915, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '6AXQDZ64', '3083791'), - (915, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '6AXQDZ64', '3085151'), - (915, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '6AXQDZ64', '3087265'), - (915, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', '6AXQDZ64', '3087266'), - (915, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', '6AXQDZ64', '3087267'), - (915, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', '6AXQDZ64', '3087268'), - (915, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '6AXQDZ64', '3088653'), - (915, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '6AXQDZ64', '3106813'), - (915, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '6AXQDZ64', '3132817'), - (915, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '6AXQDZ64', '3132820'), - (915, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '6AXQDZ64', '3155321'), - (915, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '6AXQDZ64', '3162006'), - (915, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '6AXQDZ64', '3163442'), - (915, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '6AXQDZ64', '3172832'), - (915, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '6AXQDZ64', '3172833'), - (915, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '6AXQDZ64', '3172834'), - (915, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '6AXQDZ64', '3172876'), - (915, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXQDZ64', '6045684'), - (916, 21, 'attending', '2020-04-21 23:52:06', '2025-12-17 19:47:57', 'amGX6NqA', '2958065'), - (916, 57, 'not_attending', '2020-04-27 14:12:02', '2025-12-17 19:47:57', 'amGX6NqA', '2976575'), - (916, 66, 'maybe', '2020-06-08 18:45:47', '2025-12-17 19:47:58', 'amGX6NqA', '2977135'), - (916, 72, 'not_attending', '2020-05-07 23:13:47', '2025-12-17 19:47:57', 'amGX6NqA', '2977812'), - (916, 76, 'not_attending', '2020-05-02 04:05:11', '2025-12-17 19:47:57', 'amGX6NqA', '2978246'), - (916, 77, 'attending', '2020-05-04 14:03:48', '2025-12-17 19:47:57', 'amGX6NqA', '2978247'), - (916, 78, 'attending', '2020-05-12 15:29:52', '2025-12-17 19:47:57', 'amGX6NqA', '2978249'), - (916, 79, 'attending', '2020-05-14 01:19:07', '2025-12-17 19:47:57', 'amGX6NqA', '2978250'), - (916, 80, 'attending', '2020-05-14 01:19:16', '2025-12-17 19:47:58', 'amGX6NqA', '2978251'), - (916, 81, 'attending', '2020-05-14 01:19:19', '2025-12-17 19:47:58', 'amGX6NqA', '2978252'), - (916, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'amGX6NqA', '2978438'), - (916, 95, 'attending', '2020-04-30 01:38:05', '2025-12-17 19:47:57', 'amGX6NqA', '2987452'), - (916, 96, 'attending', '2020-05-01 01:30:31', '2025-12-17 19:47:57', 'amGX6NqA', '2987453'), - (916, 97, 'attending', '2020-05-01 01:28:27', '2025-12-17 19:47:57', 'amGX6NqA', '2987454'), - (916, 98, 'maybe', '2020-05-21 04:32:22', '2025-12-17 19:47:57', 'amGX6NqA', '2987455'), - (916, 99, 'attending', '2020-05-02 16:09:03', '2025-12-17 19:47:57', 'amGX6NqA', '2988545'), - (916, 102, 'attending', '2020-04-26 22:08:11', '2025-12-17 19:47:57', 'amGX6NqA', '2990784'), - (916, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', 'amGX6NqA', '2991471'), - (916, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'amGX6NqA', '2993501'), - (916, 109, 'maybe', '2020-05-13 19:19:41', '2025-12-17 19:47:57', 'amGX6NqA', '2994480'), - (916, 115, 'attending', '2020-05-11 16:26:11', '2025-12-17 19:47:57', 'amGX6NqA', '3001217'), - (916, 116, 'not_attending', '2020-05-04 22:48:17', '2025-12-17 19:47:57', 'amGX6NqA', '3006242'), - (916, 120, 'attending', '2020-05-10 21:57:44', '2025-12-17 19:47:57', 'amGX6NqA', '3018282'), - (916, 121, 'maybe', '2020-05-26 19:29:06', '2025-12-17 19:47:57', 'amGX6NqA', '3023063'), - (916, 122, 'maybe', '2020-05-18 16:02:42', '2025-12-17 19:47:57', 'amGX6NqA', '3023491'), - (916, 123, 'maybe', '2020-05-25 02:48:20', '2025-12-17 19:47:57', 'amGX6NqA', '3023729'), - (916, 124, 'maybe', '2020-05-16 16:11:57', '2025-12-17 19:47:57', 'amGX6NqA', '3023809'), - (916, 125, 'maybe', '2020-05-15 18:19:18', '2025-12-17 19:47:57', 'amGX6NqA', '3023987'), - (916, 126, 'not_attending', '2020-05-25 02:48:06', '2025-12-17 19:47:57', 'amGX6NqA', '3024022'), - (916, 127, 'attending', '2020-05-17 15:54:08', '2025-12-17 19:47:57', 'amGX6NqA', '3025623'), - (916, 129, 'maybe', '2020-05-30 16:16:42', '2025-12-17 19:47:58', 'amGX6NqA', '3028743'), - (916, 130, 'maybe', '2020-05-27 01:51:16', '2025-12-17 19:47:57', 'amGX6NqA', '3028781'), - (916, 133, 'not_attending', '2020-06-24 21:54:47', '2025-12-17 19:47:58', 'amGX6NqA', '3034321'), - (916, 134, 'attending', '2020-05-24 03:19:32', '2025-12-17 19:47:57', 'amGX6NqA', '3034367'), - (916, 135, 'attending', '2020-05-24 03:19:37', '2025-12-17 19:47:57', 'amGX6NqA', '3034368'), - (916, 136, 'attending', '2020-05-24 20:26:07', '2025-12-17 19:47:57', 'amGX6NqA', '3035881'), - (916, 137, 'maybe', '2020-05-30 16:16:34', '2025-12-17 19:47:58', 'amGX6NqA', '3042188'), - (916, 138, 'maybe', '2020-05-29 18:39:20', '2025-12-17 19:47:58', 'amGX6NqA', '3042932'), - (916, 139, 'maybe', '2020-05-31 04:01:44', '2025-12-17 19:47:58', 'amGX6NqA', '3046190'), - (916, 140, 'maybe', '2020-05-31 04:05:36', '2025-12-17 19:47:57', 'amGX6NqA', '3046980'), - (916, 142, 'attending', '2020-05-31 23:36:37', '2025-12-17 19:47:57', 'amGX6NqA', '3049860'), - (916, 143, 'maybe', '2020-06-07 22:52:15', '2025-12-17 19:47:58', 'amGX6NqA', '3049983'), - (916, 168, 'attending', '2020-06-06 17:58:32', '2025-12-17 19:47:58', 'amGX6NqA', '3058740'), - (916, 169, 'attending', '2020-06-06 17:58:27', '2025-12-17 19:47:58', 'amGX6NqA', '3058741'), - (916, 171, 'attending', '2020-06-12 23:43:16', '2025-12-17 19:47:58', 'amGX6NqA', '3058743'), - (916, 172, 'attending', '2020-06-07 16:14:00', '2025-12-17 19:47:58', 'amGX6NqA', '3058959'), - (916, 173, 'maybe', '2020-06-15 01:03:21', '2025-12-17 19:47:58', 'amGX6NqA', '3067093'), - (916, 174, 'attending', '2020-06-08 18:44:21', '2025-12-17 19:47:58', 'amGX6NqA', '3067927'), - (916, 175, 'maybe', '2020-06-17 22:30:32', '2025-12-17 19:47:58', 'amGX6NqA', '3068305'), - (916, 176, 'attending', '2020-06-15 19:42:34', '2025-12-17 19:47:58', 'amGX6NqA', '3073192'), - (916, 177, 'attending', '2020-06-14 18:00:45', '2025-12-17 19:47:58', 'amGX6NqA', '3073193'), - (916, 178, 'attending', '2020-06-14 18:00:39', '2025-12-17 19:47:58', 'amGX6NqA', '3073195'), - (916, 179, 'attending', '2020-06-14 18:00:42', '2025-12-17 19:47:58', 'amGX6NqA', '3073687'), - (916, 181, 'attending', '2020-06-16 14:19:18', '2025-12-17 19:47:58', 'amGX6NqA', '3074513'), - (916, 182, 'not_attending', '2020-06-23 20:54:42', '2025-12-17 19:47:55', 'amGX6NqA', '3074514'), - (916, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'amGX6NqA', '3075228'), - (916, 185, 'attending', '2020-06-16 02:36:54', '2025-12-17 19:47:58', 'amGX6NqA', '3075456'), - (916, 186, 'maybe', '2020-06-22 02:59:09', '2025-12-17 19:47:55', 'amGX6NqA', '3083791'), - (916, 187, 'not_attending', '2020-06-23 20:54:47', '2025-12-17 19:47:55', 'amGX6NqA', '3085151'), - (916, 188, 'maybe', '2020-06-19 23:10:42', '2025-12-17 19:47:58', 'amGX6NqA', '3086646'), - (916, 191, 'attending', '2020-07-07 17:16:26', '2025-12-17 19:47:55', 'amGX6NqA', '3087259'), - (916, 192, 'attending', '2020-07-13 19:11:46', '2025-12-17 19:47:55', 'amGX6NqA', '3087260'), - (916, 193, 'attending', '2020-07-19 18:34:50', '2025-12-17 19:47:55', 'amGX6NqA', '3087261'), - (916, 194, 'attending', '2020-07-29 03:24:43', '2025-12-17 19:47:56', 'amGX6NqA', '3087262'), - (916, 195, 'not_attending', '2020-08-06 18:30:56', '2025-12-17 19:47:56', 'amGX6NqA', '3087264'), - (916, 196, 'attending', '2020-08-10 04:08:28', '2025-12-17 19:47:56', 'amGX6NqA', '3087265'), - (916, 197, 'not_attending', '2020-08-21 14:48:46', '2025-12-17 19:47:56', 'amGX6NqA', '3087266'), - (916, 198, 'attending', '2020-08-27 02:22:25', '2025-12-17 19:47:56', 'amGX6NqA', '3087267'), - (916, 199, 'attending', '2020-08-31 23:50:01', '2025-12-17 19:47:56', 'amGX6NqA', '3087268'), - (916, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'amGX6NqA', '3088653'), - (916, 202, 'maybe', '2020-07-05 18:48:19', '2025-12-17 19:47:55', 'amGX6NqA', '3090353'), - (916, 203, 'attending', '2020-06-22 14:43:03', '2025-12-17 19:47:58', 'amGX6NqA', '3091624'), - (916, 209, 'attending', '2020-06-30 00:15:00', '2025-12-17 19:47:55', 'amGX6NqA', '3106813'), - (916, 212, 'maybe', '2020-07-12 17:08:50', '2025-12-17 19:47:55', 'amGX6NqA', '3118517'), - (916, 217, 'attending', '2020-07-08 02:46:20', '2025-12-17 19:47:55', 'amGX6NqA', '3126684'), - (916, 223, 'attending', '2020-09-10 16:14:05', '2025-12-17 19:47:56', 'amGX6NqA', '3129980'), - (916, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'amGX6NqA', '3132817'), - (916, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'amGX6NqA', '3132820'), - (916, 228, 'maybe', '2020-07-14 14:12:42', '2025-12-17 19:47:55', 'amGX6NqA', '3132821'), - (916, 249, 'attending', '2020-11-18 00:46:02', '2025-12-17 19:47:54', 'amGX6NqA', '3149480'), - (916, 270, 'attending', '2020-08-08 02:08:12', '2025-12-17 19:47:56', 'amGX6NqA', '3154457'), - (916, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'amGX6NqA', '3155321'), - (916, 273, 'maybe', '2020-08-06 21:10:16', '2025-12-17 19:47:56', 'amGX6NqA', '3162006'), - (916, 275, 'attending', '2020-08-03 20:37:10', '2025-12-17 19:47:56', 'amGX6NqA', '3163405'), - (916, 277, 'attending', '2020-08-03 21:53:34', '2025-12-17 19:47:56', 'amGX6NqA', '3163442'), - (916, 280, 'maybe', '2020-08-08 21:48:13', '2025-12-17 19:47:56', 'amGX6NqA', '3166942'), - (916, 283, 'not_attending', '2020-08-08 00:12:00', '2025-12-17 19:47:56', 'amGX6NqA', '3169555'), - (916, 284, 'attending', '2020-08-06 23:06:39', '2025-12-17 19:47:56', 'amGX6NqA', '3169556'), - (916, 285, 'attending', '2020-08-25 00:08:01', '2025-12-17 19:47:56', 'amGX6NqA', '3170245'), - (916, 286, 'attending', '2020-08-27 00:10:34', '2025-12-17 19:47:56', 'amGX6NqA', '3170246'), - (916, 287, 'maybe', '2020-08-28 15:33:56', '2025-12-17 19:47:56', 'amGX6NqA', '3170247'), - (916, 288, 'maybe', '2020-09-02 22:20:00', '2025-12-17 19:47:56', 'amGX6NqA', '3170249'), - (916, 289, 'maybe', '2020-09-04 03:36:37', '2025-12-17 19:47:56', 'amGX6NqA', '3170250'), - (916, 291, 'maybe', '2020-09-10 21:26:25', '2025-12-17 19:47:56', 'amGX6NqA', '3170252'), - (916, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'amGX6NqA', '3172832'), - (916, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'amGX6NqA', '3172833'), - (916, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'amGX6NqA', '3172834'), - (916, 296, 'maybe', '2020-09-06 17:54:33', '2025-12-17 19:47:56', 'amGX6NqA', '3172876'), - (916, 301, 'attending', '2020-08-28 00:03:08', '2025-12-17 19:47:56', 'amGX6NqA', '3178027'), - (916, 302, 'attending', '2020-08-14 17:09:19', '2025-12-17 19:47:56', 'amGX6NqA', '3178028'), - (916, 307, 'attending', '2020-08-17 15:44:58', '2025-12-17 19:47:56', 'amGX6NqA', '3182590'), - (916, 308, 'not_attending', '2020-09-01 12:54:33', '2025-12-17 19:47:56', 'amGX6NqA', '3183341'), - (916, 311, 'attending', '2020-09-18 15:01:38', '2025-12-17 19:47:56', 'amGX6NqA', '3186057'), - (916, 313, 'not_attending', '2020-08-23 22:09:21', '2025-12-17 19:47:56', 'amGX6NqA', '3188127'), - (916, 316, 'attending', '2020-08-26 02:07:24', '2025-12-17 19:47:56', 'amGX6NqA', '3191519'), - (916, 317, 'maybe', '2020-08-27 02:22:07', '2025-12-17 19:47:56', 'amGX6NqA', '3191735'), - (916, 318, 'attending', '2020-09-01 23:53:57', '2025-12-17 19:47:56', 'amGX6NqA', '3193885'), - (916, 319, 'attending', '2020-08-31 19:56:37', '2025-12-17 19:47:56', 'amGX6NqA', '3194179'), - (916, 320, 'attending', '2020-08-30 03:02:20', '2025-12-17 19:47:56', 'amGX6NqA', '3195552'), - (916, 323, 'maybe', '2020-09-17 15:37:03', '2025-12-17 19:47:56', 'amGX6NqA', '3197081'), - (916, 324, 'attending', '2020-09-18 22:36:42', '2025-12-17 19:47:56', 'amGX6NqA', '3197082'), - (916, 325, 'attending', '2020-09-22 05:06:39', '2025-12-17 19:47:51', 'amGX6NqA', '3197083'), - (916, 326, 'maybe', '2020-09-25 23:15:21', '2025-12-17 19:47:52', 'amGX6NqA', '3197084'), - (916, 331, 'maybe', '2020-09-04 03:37:22', '2025-12-17 19:47:56', 'amGX6NqA', '3198871'), - (916, 335, 'maybe', '2020-09-02 15:45:08', '2025-12-17 19:47:56', 'amGX6NqA', '3200209'), - (916, 336, 'maybe', '2020-09-13 03:48:05', '2025-12-17 19:47:56', 'amGX6NqA', '3200495'), - (916, 337, 'attending', '2020-09-04 02:39:19', '2025-12-17 19:47:56', 'amGX6NqA', '3201771'), - (916, 340, 'maybe', '2020-09-15 16:38:53', '2025-12-17 19:47:56', 'amGX6NqA', '3204470'), - (916, 343, 'maybe', '2020-09-21 23:28:13', '2025-12-17 19:47:56', 'amGX6NqA', '3206759'), - (916, 354, 'maybe', '2020-09-13 21:33:41', '2025-12-17 19:47:56', 'amGX6NqA', '3212570'), - (916, 358, 'attending', '2020-09-19 18:45:28', '2025-12-17 19:47:56', 'amGX6NqA', '3212579'), - (916, 360, 'maybe', '2020-09-15 17:01:41', '2025-12-17 19:47:56', 'amGX6NqA', '3212671'), - (916, 362, 'not_attending', '2020-09-26 01:33:47', '2025-12-17 19:47:52', 'amGX6NqA', '3214207'), - (916, 363, 'maybe', '2020-09-26 03:43:07', '2025-12-17 19:47:52', 'amGX6NqA', '3217037'), - (916, 364, 'maybe', '2020-09-17 03:42:13', '2025-12-17 19:47:56', 'amGX6NqA', '3217106'), - (916, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'amGX6NqA', '3218510'), - (916, 368, 'not_attending', '2020-09-29 21:01:53', '2025-12-17 19:47:52', 'amGX6NqA', '3221403'), - (916, 374, 'attending', '2020-10-26 23:31:37', '2025-12-17 19:47:53', 'amGX6NqA', '3221415'), - (916, 377, 'maybe', '2020-10-29 18:15:12', '2025-12-17 19:47:53', 'amGX6NqA', '3222828'), - (916, 385, 'attending', '2020-10-01 02:30:44', '2025-12-17 19:47:52', 'amGX6NqA', '3228698'), - (916, 386, 'attending', '2020-10-10 15:21:28', '2025-12-17 19:47:52', 'amGX6NqA', '3228699'), - (916, 387, 'not_attending', '2020-10-13 03:22:59', '2025-12-17 19:47:52', 'amGX6NqA', '3228700'), - (916, 388, 'attending', '2020-10-22 22:34:03', '2025-12-17 19:47:52', 'amGX6NqA', '3228701'), - (916, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'amGX6NqA', '3245751'), - (916, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'amGX6NqA', '3250232'), - (916, 427, 'maybe', '2020-10-30 00:52:56', '2025-12-17 19:47:53', 'amGX6NqA', '3250233'), - (916, 432, 'maybe', '2020-11-04 18:17:00', '2025-12-17 19:47:53', 'amGX6NqA', '3254416'), - (916, 438, 'maybe', '2020-10-31 17:15:11', '2025-12-17 19:47:53', 'amGX6NqA', '3256163'), - (916, 440, 'maybe', '2020-11-07 23:16:08', '2025-12-17 19:47:53', 'amGX6NqA', '3256168'), - (916, 441, 'not_attending', '2020-11-14 16:17:01', '2025-12-17 19:47:54', 'amGX6NqA', '3256169'), - (916, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'amGX6NqA', '3263578'), - (916, 446, 'attending', '2020-10-27 22:55:59', '2025-12-17 19:47:53', 'amGX6NqA', '3267163'), - (916, 451, 'maybe', '2020-11-02 02:00:27', '2025-12-17 19:47:53', 'amGX6NqA', '3272186'), - (916, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'amGX6NqA', '3276428'), - (916, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'amGX6NqA', '3281467'), - (916, 462, 'not_attending', '2020-11-11 22:50:57', '2025-12-17 19:47:54', 'amGX6NqA', '3281470'), - (916, 464, 'maybe', '2020-11-16 17:53:56', '2025-12-17 19:47:54', 'amGX6NqA', '3281554'), - (916, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'amGX6NqA', '3281829'), - (916, 467, 'maybe', '2020-11-12 22:50:10', '2025-12-17 19:47:54', 'amGX6NqA', '3282756'), - (916, 468, 'attending', '2020-11-21 17:14:12', '2025-12-17 19:47:54', 'amGX6NqA', '3285413'), - (916, 469, 'attending', '2020-11-28 23:01:27', '2025-12-17 19:47:54', 'amGX6NqA', '3285414'), - (916, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'amGX6NqA', '3297764'), - (916, 487, 'maybe', '2020-11-25 23:49:22', '2025-12-17 19:47:54', 'amGX6NqA', '3311122'), - (916, 493, 'not_attending', '2020-12-05 23:39:46', '2025-12-17 19:47:54', 'amGX6NqA', '3313856'), - (916, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'amGX6NqA', '3314909'), - (916, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'amGX6NqA', '3314964'), - (916, 502, 'not_attending', '2020-12-12 15:44:37', '2025-12-17 19:47:55', 'amGX6NqA', '3323365'), - (916, 513, 'not_attending', '2020-12-19 23:56:56', '2025-12-17 19:47:55', 'amGX6NqA', '3329383'), - (916, 526, 'maybe', '2021-01-02 20:42:25', '2025-12-17 19:47:48', 'amGX6NqA', '3351539'), - (916, 536, 'attending', '2021-01-08 21:05:05', '2025-12-17 19:47:48', 'amGX6NqA', '3386848'), - (916, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'amGX6NqA', '3389527'), - (916, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'amGX6NqA', '3396499'), - (916, 548, 'not_attending', '2021-01-17 00:26:56', '2025-12-17 19:47:48', 'amGX6NqA', '3403650'), - (916, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'amGX6NqA', '3406988'), - (916, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'amGX6NqA', '3408338'), - (916, 555, 'maybe', '2021-01-23 20:05:21', '2025-12-17 19:47:49', 'amGX6NqA', '3416576'), - (916, 568, 'attending', '2021-01-29 01:13:13', '2025-12-17 19:47:50', 'amGX6NqA', '3430267'), - (916, 579, 'not_attending', '2021-02-06 22:39:04', '2025-12-17 19:47:50', 'amGX6NqA', '3440978'), - (916, 602, 'not_attending', '2021-02-13 22:52:49', '2025-12-17 19:47:50', 'amGX6NqA', '3470303'), - (916, 603, 'maybe', '2021-02-20 20:59:32', '2025-12-17 19:47:50', 'amGX6NqA', '3470304'), - (916, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'amGX6NqA', '3470305'), - (916, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'amGX6NqA', '3470991'), - (916, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'amGX6NqA', '3517815'), - (916, 622, 'attending', '2021-03-11 15:00:04', '2025-12-17 19:47:51', 'amGX6NqA', '3517816'), - (916, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'amGX6NqA', '3523941'), - (916, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'amGX6NqA', '3533850'), - (916, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'amGX6NqA', '3536632'), - (916, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'amGX6NqA', '3536656'), - (916, 641, 'attending', '2021-04-02 16:31:44', '2025-12-17 19:47:44', 'amGX6NqA', '3539916'), - (916, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'amGX6NqA', '3539917'), - (916, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'amGX6NqA', '3539918'), - (916, 644, 'not_attending', '2021-04-24 16:09:07', '2025-12-17 19:47:46', 'amGX6NqA', '3539919'), - (916, 645, 'not_attending', '2021-05-08 21:10:30', '2025-12-17 19:47:46', 'amGX6NqA', '3539920'), - (916, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'amGX6NqA', '3539921'), - (916, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'amGX6NqA', '3539922'), - (916, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'amGX6NqA', '3539923'), - (916, 649, 'not_attending', '2021-03-20 22:46:52', '2025-12-17 19:47:51', 'amGX6NqA', '3539927'), - (916, 650, 'not_attending', '2021-03-27 16:26:16', '2025-12-17 19:47:44', 'amGX6NqA', '3539928'), - (916, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'amGX6NqA', '3582734'), - (916, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'amGX6NqA', '3583262'), - (916, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'amGX6NqA', '3619523'), - (916, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'amGX6NqA', '3661369'), - (916, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'amGX6NqA', '3674262'), - (916, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'amGX6NqA', '3677402'), - (916, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'amGX6NqA', '3730212'), - (916, 777, 'not_attending', '2021-05-01 16:11:29', '2025-12-17 19:47:46', 'amGX6NqA', '3746248'), - (916, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'amGX6NqA', '3793156'), - (916, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amGX6NqA', '3974109'), - (916, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGX6NqA', '3975311'), - (916, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amGX6NqA', '3975312'), - (916, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amGX6NqA', '3994992'), - (916, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGX6NqA', '4014338'), - (916, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amGX6NqA', '4021848'), - (916, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amGX6NqA', '4136744'), - (916, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'amGX6NqA', '4136937'), - (916, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'amGX6NqA', '4136938'), - (916, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amGX6NqA', '4136947'), - (916, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGX6NqA', '4210314'), - (916, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGX6NqA', '4225444'), - (916, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amGX6NqA', '4239259'), - (916, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGX6NqA', '4240316'), - (916, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'amGX6NqA', '4240317'), - (916, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'amGX6NqA', '4240318'), - (916, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'amGX6NqA', '4240320'), - (916, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amGX6NqA', '4250163'), - (916, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGX6NqA', '4275957'), - (916, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amGX6NqA', '4277819'), - (916, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amGX6NqA', '4301723'), - (916, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'amGX6NqA', '4302093'), - (916, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amGX6NqA', '4304151'), - (916, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'amGX6NqA', '4366186'), - (916, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'amGX6NqA', '4366187'), - (916, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGX6NqA', '6045684'), - (917, 2646, 'not_attending', '2024-05-20 19:29:25', '2025-12-17 19:46:35', 'dJQn8Wq4', '7281768'), - (918, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4WBMYObA', '7074364'), - (918, 2647, 'attending', '2024-06-09 19:16:31', '2025-12-17 19:46:28', '4WBMYObA', '7282057'), - (918, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', '4WBMYObA', '7302674'), - (918, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4WBMYObA', '7324073'), - (918, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4WBMYObA', '7324074'), - (918, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4WBMYObA', '7324075'), - (918, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4WBMYObA', '7324078'), - (918, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4WBMYObA', '7324082'), - (918, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4WBMYObA', '7331457'), - (918, 2726, 'attending', '2024-06-20 22:12:09', '2025-12-17 19:46:29', '4WBMYObA', '7332853'), - (918, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4WBMYObA', '7356752'), - (918, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4WBMYObA', '7363643'), - (918, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4WBMYObA', '7368606'), - (918, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4WBMYObA', '7397462'), - (918, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4WBMYObA', '7424275'), - (918, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4WBMYObA', '7424276'), - (918, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4WBMYObA', '7432751'), - (918, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4WBMYObA', '7432752'), - (918, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4WBMYObA', '7432753'), - (918, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4WBMYObA', '7432754'), - (918, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4WBMYObA', '7432755'), - (918, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4WBMYObA', '7432756'), - (918, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4WBMYObA', '7432758'), - (918, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4WBMYObA', '7432759'), - (918, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4WBMYObA', '7433834'), - (918, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4WBMYObA', '7470197'), - (918, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4WBMYObA', '7685613'), - (918, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4WBMYObA', '7688194'), - (918, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4WBMYObA', '7688196'), - (918, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4WBMYObA', '7688289'), - (919, 2994, 'not_attending', '2025-03-05 05:48:24', '2025-12-17 19:46:18', 'dlnBLwYA', '7842905'), - (919, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dlnBLwYA', '7860683'), - (919, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dlnBLwYA', '7860684'), - (919, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dlnBLwYA', '7866095'), - (919, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dlnBLwYA', '7869170'), - (919, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dlnBLwYA', '7869188'), - (919, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dlnBLwYA', '7869201'), - (919, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'dlnBLwYA', '7872088'), - (919, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dlnBLwYA', '7877465'), - (919, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dlnBLwYA', '7878570'), - (919, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'dlnBLwYA', '7880977'), - (919, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dlnBLwYA', '7888250'), - (919, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dlnBLwYA', '7903856'), - (919, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dlnBLwYA', '8347770'), - (919, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dlnBLwYA', '8349164'), - (919, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dlnBLwYA', '8349545'), - (919, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dlnBLwYA', '8353584'), - (920, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '6AXqWOQ4', '3539921'), - (920, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '6AXqWOQ4', '3539922'), - (920, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '6AXqWOQ4', '3539923'), - (920, 812, 'maybe', '2021-05-17 17:18:06', '2025-12-17 19:47:46', '6AXqWOQ4', '3808031'), - (920, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXqWOQ4', '3974109'), - (920, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXqWOQ4', '3975311'), - (920, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXqWOQ4', '3975312'), - (920, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXqWOQ4', '3994992'), - (920, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXqWOQ4', '4014338'), - (920, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXqWOQ4', '4021848'), - (920, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXqWOQ4', '4136744'), - (920, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXqWOQ4', '4136937'), - (920, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXqWOQ4', '4136938'), - (920, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXqWOQ4', '4136947'), - (920, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXqWOQ4', '4210314'), - (920, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXqWOQ4', '4225444'), - (920, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXqWOQ4', '4239259'), - (920, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXqWOQ4', '4240316'), - (920, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXqWOQ4', '4240317'), - (920, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXqWOQ4', '4240318'), - (920, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXqWOQ4', '4240320'), - (920, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXqWOQ4', '4250163'), - (920, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXqWOQ4', '4275957'), - (920, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXqWOQ4', '4277819'), - (920, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXqWOQ4', '4301723'), - (920, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXqWOQ4', '4302093'), - (920, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXqWOQ4', '4304151'), - (920, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXqWOQ4', '4366186'), - (920, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXqWOQ4', '4366187'), - (920, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXqWOQ4', '6045684'), - (921, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41olEapm', '6045684'), - (922, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'pmbxKLg4', '3236452'), - (922, 648, 'not_attending', '2021-05-26 01:43:55', '2025-12-17 19:47:47', 'pmbxKLg4', '3539923'), - (922, 789, 'not_attending', '2021-05-29 22:06:14', '2025-12-17 19:47:47', 'pmbxKLg4', '3785818'), - (922, 815, 'attending', '2021-05-28 22:17:35', '2025-12-17 19:47:47', 'pmbxKLg4', '3818136'), - (922, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbxKLg4', '3974109'), - (922, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmbxKLg4', '3975311'), - (922, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmbxKLg4', '3975312'), - (922, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbxKLg4', '3994992'), - (922, 841, 'attending', '2021-06-15 23:02:19', '2025-12-17 19:47:48', 'pmbxKLg4', '4007434'), - (922, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmbxKLg4', '4014338'), - (922, 866, 'attending', '2021-06-13 12:25:34', '2025-12-17 19:47:38', 'pmbxKLg4', '4020424'), - (922, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmbxKLg4', '4021848'), - (922, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmbxKLg4', '4136744'), - (922, 870, 'maybe', '2021-07-03 17:25:25', '2025-12-17 19:47:39', 'pmbxKLg4', '4136937'), - (922, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmbxKLg4', '4136938'), - (922, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbxKLg4', '4136947'), - (922, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbxKLg4', '4210314'), - (922, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbxKLg4', '4225444'), - (922, 890, 'attending', '2021-06-28 00:19:27', '2025-12-17 19:47:38', 'pmbxKLg4', '4228666'), - (922, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbxKLg4', '4239259'), - (922, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmbxKLg4', '4240316'), - (922, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbxKLg4', '4240317'), - (922, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbxKLg4', '4240318'), - (922, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbxKLg4', '4240320'), - (922, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbxKLg4', '4250163'), - (922, 916, 'not_attending', '2021-07-22 13:07:18', '2025-12-17 19:47:40', 'pmbxKLg4', '4273772'), - (922, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmbxKLg4', '4275957'), - (922, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbxKLg4', '4277819'), - (922, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbxKLg4', '4301723'), - (922, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbxKLg4', '4302093'), - (922, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbxKLg4', '4304151'), - (922, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbxKLg4', '4356801'), - (922, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbxKLg4', '4366186'), - (922, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbxKLg4', '4366187'), - (922, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbxKLg4', '4420735'), - (922, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbxKLg4', '4420738'), - (922, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbxKLg4', '4420739'), - (922, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbxKLg4', '4420741'), - (922, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbxKLg4', '4420744'), - (922, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbxKLg4', '4420747'), - (922, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbxKLg4', '4420748'), - (922, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbxKLg4', '4420749'), - (922, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbxKLg4', '4461883'), - (922, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbxKLg4', '4508342'), - (922, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbxKLg4', '4568602'), - (922, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbxKLg4', '6045684'), - (923, 1517, 'maybe', '2022-08-24 03:36:33', '2025-12-17 19:47:23', 'dOj68D54', '5441130'), - (923, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dOj68D54', '5441131'), - (923, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dOj68D54', '5441132'), - (923, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dOj68D54', '5505059'), - (923, 1609, 'attending', '2022-08-25 01:38:41', '2025-12-17 19:47:23', 'dOj68D54', '5506590'), - (923, 1610, 'not_attending', '2022-08-25 01:39:43', '2025-12-17 19:47:23', 'dOj68D54', '5506595'), - (923, 1614, 'attending', '2022-08-23 19:14:56', '2025-12-17 19:47:23', 'dOj68D54', '5508371'), - (923, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dOj68D54', '5509055'), - (923, 1619, 'attending', '2022-08-24 03:35:55', '2025-12-17 19:47:23', 'dOj68D54', '5512862'), - (923, 1624, 'not_attending', '2022-08-24 04:07:31', '2025-12-17 19:47:24', 'dOj68D54', '5513985'), - (923, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'dOj68D54', '5519981'), - (923, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dOj68D54', '5522550'), - (923, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dOj68D54', '5534683'), - (923, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dOj68D54', '5537735'), - (923, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dOj68D54', '5540859'), - (923, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dOj68D54', '5546619'), - (923, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dOj68D54', '5555245'), - (923, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dOj68D54', '5557747'), - (923, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dOj68D54', '5560255'), - (923, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dOj68D54', '5562906'), - (923, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dOj68D54', '5600604'), - (923, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dOj68D54', '5605544'), - (923, 1699, 'not_attending', '2022-09-26 12:18:55', '2025-12-17 19:47:12', 'dOj68D54', '5606737'), - (923, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dOj68D54', '5630960'), - (923, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dOj68D54', '5630961'), - (923, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dOj68D54', '5630962'), - (923, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOj68D54', '5630966'), - (923, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOj68D54', '5630967'), - (923, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOj68D54', '5630968'), - (923, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dOj68D54', '5635406'), - (923, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dOj68D54', '5638765'), - (923, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dOj68D54', '5640097'), - (923, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dOj68D54', '5640843'), - (923, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dOj68D54', '5641521'), - (923, 1744, 'attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOj68D54', '5642818'), - (923, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dOj68D54', '5652395'), - (923, 1757, 'attending', '2022-10-31 16:44:13', '2025-12-17 19:47:15', 'dOj68D54', '5668974'), - (923, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOj68D54', '5670445'), - (923, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dOj68D54', '5671637'), - (923, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dOj68D54', '5672329'), - (923, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dOj68D54', '5674057'), - (923, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dOj68D54', '5674060'), - (923, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dOj68D54', '5677461'), - (923, 1780, 'attending', '2022-11-10 17:50:26', '2025-12-17 19:47:15', 'dOj68D54', '5696082'), - (923, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOj68D54', '5698046'), - (923, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dOj68D54', '5699760'), - (923, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOj68D54', '5741601'), - (923, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOj68D54', '5763458'), - (923, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOj68D54', '5774172'), - (923, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOj68D54', '5818247'), - (923, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOj68D54', '5819471'), - (923, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOj68D54', '5827739'), - (923, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOj68D54', '5844306'), - (923, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOj68D54', '5850159'), - (923, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOj68D54', '5858999'), - (923, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOj68D54', '5871984'), - (923, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOj68D54', '5876354'), - (923, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOj68D54', '5880939'), - (923, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOj68D54', '5887890'), - (923, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOj68D54', '5888598'), - (923, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOj68D54', '5893260'), - (923, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOj68D54', '6045684'), - (924, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mq1pqQXm', '4736497'), - (924, 1177, 'attending', '2022-02-27 01:05:16', '2025-12-17 19:47:32', 'mq1pqQXm', '4736499'), - (924, 1178, 'attending', '2022-01-30 01:10:05', '2025-12-17 19:47:32', 'mq1pqQXm', '4736500'), - (924, 1179, 'attending', '2022-02-19 15:51:59', '2025-12-17 19:47:32', 'mq1pqQXm', '4736501'), - (924, 1181, 'attending', '2022-03-06 01:08:34', '2025-12-17 19:47:33', 'mq1pqQXm', '4736503'), - (924, 1182, 'attending', '2022-03-10 17:21:32', '2025-12-17 19:47:33', 'mq1pqQXm', '4736504'), - (924, 1222, 'attending', '2022-02-16 23:23:23', '2025-12-17 19:47:32', 'mq1pqQXm', '5015628'), - (924, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mq1pqQXm', '5038850'), - (924, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mq1pqQXm', '5045826'), - (924, 1238, 'attending', '2022-02-21 18:00:00', '2025-12-17 19:47:32', 'mq1pqQXm', '5052236'), - (924, 1239, 'attending', '2022-03-03 01:00:37', '2025-12-17 19:47:33', 'mq1pqQXm', '5052238'), - (924, 1240, 'attending', '2022-03-10 17:37:22', '2025-12-17 19:47:33', 'mq1pqQXm', '5052239'), - (924, 1241, 'attending', '2022-03-20 15:02:59', '2025-12-17 19:47:25', 'mq1pqQXm', '5052240'), - (924, 1243, 'attending', '2022-03-06 20:49:55', '2025-12-17 19:47:33', 'mq1pqQXm', '5058336'), - (924, 1249, 'attending', '2022-03-07 21:16:21', '2025-12-17 19:47:33', 'mq1pqQXm', '5068530'), - (924, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mq1pqQXm', '5132533'), - (924, 1265, 'attending', '2022-03-10 17:21:24', '2025-12-17 19:47:33', 'mq1pqQXm', '5160862'), - (924, 1266, 'attending', '2022-03-10 17:37:10', '2025-12-17 19:47:33', 'mq1pqQXm', '5166407'), - (924, 1267, 'attending', '2022-03-17 15:05:49', '2025-12-17 19:47:25', 'mq1pqQXm', '5169578'), - (924, 1269, 'attending', '2022-03-18 02:59:21', '2025-12-17 19:47:25', 'mq1pqQXm', '5179439'), - (924, 1270, 'attending', '2022-03-15 19:05:26', '2025-12-17 19:47:25', 'mq1pqQXm', '5181277'), - (924, 1271, 'attending', '2022-03-18 02:59:12', '2025-12-17 19:47:25', 'mq1pqQXm', '5181648'), - (924, 1272, 'attending', '2022-03-16 01:13:09', '2025-12-17 19:47:25', 'mq1pqQXm', '5186582'), - (924, 1273, 'attending', '2022-03-20 15:03:02', '2025-12-17 19:47:25', 'mq1pqQXm', '5186583'), - (924, 1274, 'attending', '2022-04-01 16:01:20', '2025-12-17 19:47:26', 'mq1pqQXm', '5186585'), - (924, 1280, 'attending', '2022-03-17 15:05:38', '2025-12-17 19:47:25', 'mq1pqQXm', '5189749'), - (924, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mq1pqQXm', '5190437'), - (924, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mq1pqQXm', '5195095'), - (924, 1291, 'not_attending', '2022-03-25 17:16:26', '2025-12-17 19:47:25', 'mq1pqQXm', '5200458'), - (924, 1294, 'attending', '2022-04-01 16:01:29', '2025-12-17 19:47:26', 'mq1pqQXm', '5214686'), - (924, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mq1pqQXm', '5215989'), - (924, 1302, 'attending', '2022-04-07 18:17:38', '2025-12-17 19:47:27', 'mq1pqQXm', '5220867'), - (924, 1304, 'attending', '2022-04-04 22:02:49', '2025-12-17 19:47:26', 'mq1pqQXm', '5223468'), - (924, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mq1pqQXm', '5223686'), - (924, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mq1pqQXm', '5227432'), - (924, 1337, 'attending', '2022-04-19 23:18:30', '2025-12-17 19:47:27', 'mq1pqQXm', '5245036'), - (924, 1346, 'attending', '2022-04-22 18:32:40', '2025-12-17 19:47:27', 'mq1pqQXm', '5247467'), - (924, 1360, 'attending', '2022-04-26 23:42:19', '2025-12-17 19:47:27', 'mq1pqQXm', '5260197'), - (924, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mq1pqQXm', '5260800'), - (924, 1371, 'attending', '2022-04-27 19:00:03', '2025-12-17 19:47:27', 'mq1pqQXm', '5263784'), - (924, 1372, 'attending', '2022-05-03 03:52:43', '2025-12-17 19:47:28', 'mq1pqQXm', '5264352'), - (924, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mq1pqQXm', '5269930'), - (924, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mq1pqQXm', '5271448'), - (924, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mq1pqQXm', '5271449'), - (924, 1380, 'attending', '2022-05-26 19:26:05', '2025-12-17 19:47:30', 'mq1pqQXm', '5271450'), - (924, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mq1pqQXm', '5276469'), - (924, 1385, 'attending', '2022-05-11 22:58:24', '2025-12-17 19:47:28', 'mq1pqQXm', '5277822'), - (924, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mq1pqQXm', '5278159'), - (924, 1407, 'attending', '2022-05-30 20:26:00', '2025-12-17 19:47:30', 'mq1pqQXm', '5363695'), - (924, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mq1pqQXm', '5365960'), - (924, 1410, 'not_attending', '2022-05-19 20:39:59', '2025-12-17 19:47:29', 'mq1pqQXm', '5367530'), - (924, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mq1pqQXm', '5368973'), - (924, 1423, 'attending', '2022-06-15 20:13:22', '2025-12-17 19:47:17', 'mq1pqQXm', '5375727'), - (924, 1424, 'attending', '2022-05-26 19:26:00', '2025-12-17 19:47:30', 'mq1pqQXm', '5375772'), - (924, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mq1pqQXm', '5378247'), - (924, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mq1pqQXm', '5389605'), - (924, 1442, 'attending', '2022-06-18 18:19:05', '2025-12-17 19:47:17', 'mq1pqQXm', '5397265'), - (924, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mq1pqQXm', '5403967'), - (924, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mq1pqQXm', '5404786'), - (924, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mq1pqQXm', '5405203'), - (924, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mq1pqQXm', '5408794'), - (924, 1480, 'attending', '2022-06-23 05:57:07', '2025-12-17 19:47:19', 'mq1pqQXm', '5411699'), - (924, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mq1pqQXm', '5412550'), - (924, 1484, 'attending', '2022-06-22 20:31:30', '2025-12-17 19:47:17', 'mq1pqQXm', '5415046'), - (924, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mq1pqQXm', '5422086'), - (924, 1498, 'attending', '2022-07-02 21:12:30', '2025-12-17 19:47:19', 'mq1pqQXm', '5422406'), - (924, 1501, 'attending', '2022-06-29 20:24:52', '2025-12-17 19:47:19', 'mq1pqQXm', '5424546'), - (924, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mq1pqQXm', '5424565'), - (924, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mq1pqQXm', '5426882'), - (924, 1505, 'attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mq1pqQXm', '5427083'), - (924, 1511, 'maybe', '2022-07-08 02:16:35', '2025-12-17 19:47:19', 'mq1pqQXm', '5437733'), - (924, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mq1pqQXm', '5441125'), - (924, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mq1pqQXm', '5441126'), - (924, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mq1pqQXm', '5441128'), - (924, 1517, 'attending', '2022-08-27 20:10:45', '2025-12-17 19:47:23', 'mq1pqQXm', '5441130'), - (924, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mq1pqQXm', '5441131'), - (924, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mq1pqQXm', '5441132'), - (924, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mq1pqQXm', '5446643'), - (924, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mq1pqQXm', '5453325'), - (924, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mq1pqQXm', '5454516'), - (924, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mq1pqQXm', '5454605'), - (924, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mq1pqQXm', '5455037'), - (924, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mq1pqQXm', '5461278'), - (924, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mq1pqQXm', '5469480'), - (924, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mq1pqQXm', '5471073'), - (924, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mq1pqQXm', '5474663'), - (924, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mq1pqQXm', '5482022'), - (924, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mq1pqQXm', '5482793'), - (924, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mq1pqQXm', '5488912'), - (924, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mq1pqQXm', '5492192'), - (924, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mq1pqQXm', '5493139'), - (924, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mq1pqQXm', '5493200'), - (924, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mq1pqQXm', '5502188'), - (924, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mq1pqQXm', '5505059'), - (924, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mq1pqQXm', '5509055'), - (924, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mq1pqQXm', '5512862'), - (924, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mq1pqQXm', '5513985'), - (924, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'mq1pqQXm', '5534683'), - (924, 1635, 'attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mq1pqQXm', '5537735'), - (924, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mq1pqQXm', '5540859'), - (924, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mq1pqQXm', '5546619'), - (924, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mq1pqQXm', '5555245'), - (924, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mq1pqQXm', '5557747'), - (924, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mq1pqQXm', '5560255'), - (924, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mq1pqQXm', '5562906'), - (924, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mq1pqQXm', '5600604'), - (924, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mq1pqQXm', '5605544'), - (924, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'mq1pqQXm', '5606737'), - (924, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mq1pqQXm', '5630960'), - (924, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mq1pqQXm', '5630961'), - (924, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mq1pqQXm', '5630962'), - (924, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mq1pqQXm', '5630966'), - (924, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mq1pqQXm', '5630967'), - (924, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mq1pqQXm', '5630968'), - (924, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mq1pqQXm', '5635406'), - (924, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mq1pqQXm', '5638765'), - (924, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mq1pqQXm', '5640097'), - (924, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mq1pqQXm', '5640843'), - (924, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mq1pqQXm', '5641521'), - (924, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mq1pqQXm', '5642818'), - (924, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mq1pqQXm', '5652395'), - (924, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mq1pqQXm', '5670445'), - (924, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mq1pqQXm', '5671637'), - (924, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mq1pqQXm', '5672329'), - (924, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mq1pqQXm', '5674057'), - (924, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mq1pqQXm', '5674060'), - (924, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mq1pqQXm', '5677461'), - (924, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mq1pqQXm', '5698046'), - (924, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mq1pqQXm', '5699760'), - (924, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mq1pqQXm', '5741601'), - (924, 1797, 'attending', '2022-12-10 01:49:55', '2025-12-17 19:47:17', 'mq1pqQXm', '5757486'), - (924, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mq1pqQXm', '5763458'), - (924, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mq1pqQXm', '5774172'), - (924, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mq1pqQXm', '5818247'), - (924, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mq1pqQXm', '5819471'), - (924, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mq1pqQXm', '5827739'), - (924, 1843, 'attending', '2022-12-17 22:11:45', '2025-12-17 19:47:04', 'mq1pqQXm', '5844304'), - (924, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mq1pqQXm', '5844306'), - (924, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mq1pqQXm', '5850159'), - (924, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mq1pqQXm', '5858999'), - (924, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mq1pqQXm', '5871984'), - (924, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mq1pqQXm', '5876354'), - (924, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mq1pqQXm', '5880939'), - (924, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mq1pqQXm', '5887890'), - (924, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mq1pqQXm', '5888598'), - (924, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mq1pqQXm', '5893260'), - (924, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mq1pqQXm', '6045684'), - (924, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mq1pqQXm', '6067245'), - (924, 2056, 'attending', '2023-05-13 21:19:42', '2025-12-17 19:47:02', 'mq1pqQXm', '6093504'), - (924, 2060, 'not_attending', '2023-05-20 22:43:24', '2025-12-17 19:47:03', 'mq1pqQXm', '6097414'), - (924, 2061, 'not_attending', '2023-05-11 23:34:43', '2025-12-17 19:47:02', 'mq1pqQXm', '6097442'), - (924, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mq1pqQXm', '6101362'), - (924, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mq1pqQXm', '6103752'), - (924, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mq1pqQXm', '6107314'), - (924, 2110, 'attending', '2023-06-21 22:52:42', '2025-12-17 19:46:50', 'mq1pqQXm', '6155491'), - (924, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mq1pqQXm', '6164417'), - (924, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mq1pqQXm', '6166388'), - (924, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mq1pqQXm', '6176439'), - (924, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mq1pqQXm', '6182410'), - (924, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mq1pqQXm', '6185812'), - (924, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mq1pqQXm', '6187651'), - (924, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mq1pqQXm', '6187963'), - (924, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mq1pqQXm', '6187964'), - (924, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mq1pqQXm', '6187966'), - (924, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mq1pqQXm', '6187967'), - (924, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mq1pqQXm', '6187969'), - (924, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mq1pqQXm', '6334878'), - (924, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mq1pqQXm', '6337236'), - (924, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mq1pqQXm', '6337970'), - (924, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mq1pqQXm', '6338308'), - (924, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mq1pqQXm', '6341710'), - (924, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mq1pqQXm', '6342044'), - (924, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mq1pqQXm', '6342298'), - (924, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mq1pqQXm', '6343294'), - (924, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mq1pqQXm', '6347034'), - (924, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mq1pqQXm', '6347056'), - (924, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mq1pqQXm', '6353830'), - (924, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mq1pqQXm', '6353831'), - (924, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mq1pqQXm', '6357867'), - (924, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mq1pqQXm', '6358652'), - (924, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mq1pqQXm', '6361709'), - (924, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mq1pqQXm', '6361710'), - (924, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mq1pqQXm', '6361711'), - (924, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mq1pqQXm', '6361712'), - (924, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mq1pqQXm', '6361713'), - (924, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mq1pqQXm', '6382573'), - (924, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mq1pqQXm', '6388604'), - (924, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mq1pqQXm', '6394629'), - (924, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mq1pqQXm', '6394631'), - (924, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mq1pqQXm', '6440863'), - (924, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mq1pqQXm', '6445440'), - (924, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mq1pqQXm', '6453951'), - (924, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mq1pqQXm', '6461696'), - (924, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mq1pqQXm', '6462129'), - (924, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mq1pqQXm', '6463218'), - (924, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mq1pqQXm', '6472181'), - (924, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mq1pqQXm', '6482693'), - (924, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mq1pqQXm', '6484200'), - (924, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mq1pqQXm', '6484680'), - (924, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mq1pqQXm', '6507741'), - (924, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mq1pqQXm', '6514659'), - (924, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mq1pqQXm', '6514660'), - (924, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mq1pqQXm', '6519103'), - (924, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mq1pqQXm', '6535681'), - (924, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mq1pqQXm', '6584747'), - (924, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mq1pqQXm', '6587097'), - (924, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mq1pqQXm', '6609022'), - (924, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mq1pqQXm', '6632757'), - (924, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mq1pqQXm', '6644187'), - (924, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mq1pqQXm', '6648951'), - (924, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mq1pqQXm', '6648952'), - (924, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mq1pqQXm', '6655401'), - (924, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mq1pqQXm', '6661585'), - (924, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mq1pqQXm', '6661588'), - (924, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mq1pqQXm', '6661589'), - (924, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mq1pqQXm', '6699906'), - (924, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mq1pqQXm', '6699913'), - (924, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mq1pqQXm', '6701109'), - (924, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mq1pqQXm', '6705219'), - (924, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mq1pqQXm', '6710153'), - (924, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mq1pqQXm', '6711552'), - (924, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mq1pqQXm', '6711553'), - (924, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mq1pqQXm', '6722688'), - (924, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mq1pqQXm', '6730620'), - (924, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mq1pqQXm', '6740364'), - (924, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mq1pqQXm', '6743829'), - (924, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mq1pqQXm', '7030380'), - (924, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mq1pqQXm', '7033677'), - (924, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mq1pqQXm', '7044715'), - (924, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mq1pqQXm', '7050318'), - (924, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mq1pqQXm', '7050319'), - (924, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mq1pqQXm', '7050322'), - (924, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mq1pqQXm', '7057804'), - (924, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mq1pqQXm', '7072824'), - (924, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mq1pqQXm', '7074348'), - (924, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mq1pqQXm', '7074364'), - (924, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mq1pqQXm', '7089267'), - (924, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mq1pqQXm', '7098747'), - (924, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mq1pqQXm', '7113468'), - (924, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mq1pqQXm', '7114856'), - (924, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mq1pqQXm', '7114951'), - (924, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mq1pqQXm', '7114955'), - (924, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mq1pqQXm', '7114956'), - (924, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mq1pqQXm', '7114957'), - (924, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mq1pqQXm', '7159484'), - (924, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mq1pqQXm', '7178446'), - (924, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mq1pqQXm', '7220467'), - (924, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mq1pqQXm', '7240354'), - (924, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mq1pqQXm', '7251633'), - (924, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mq1pqQXm', '7324073'), - (924, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mq1pqQXm', '7324074'), - (924, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mq1pqQXm', '7324075'), - (924, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mq1pqQXm', '7324078'), - (924, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mq1pqQXm', '7324082'), - (924, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mq1pqQXm', '7331457'), - (924, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mq1pqQXm', '7363643'), - (924, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mq1pqQXm', '7368606'), - (924, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mq1pqQXm', '7397462'), - (924, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mq1pqQXm', '7424275'), - (924, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mq1pqQXm', '7432751'), - (924, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mq1pqQXm', '7432752'), - (924, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mq1pqQXm', '7432753'), - (924, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mq1pqQXm', '7432754'), - (924, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mq1pqQXm', '7432755'), - (924, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mq1pqQXm', '7432756'), - (924, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mq1pqQXm', '7432758'), - (924, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mq1pqQXm', '7432759'), - (924, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mq1pqQXm', '7433834'), - (924, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mq1pqQXm', '7470197'), - (924, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mq1pqQXm', '7685613'), - (924, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mq1pqQXm', '7688194'), - (924, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mq1pqQXm', '7688196'), - (924, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mq1pqQXm', '7688289'), - (924, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mq1pqQXm', '7692763'), - (924, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mq1pqQXm', '7697552'), - (924, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mq1pqQXm', '7699878'), - (924, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mq1pqQXm', '7704043'), - (924, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mq1pqQXm', '7712467'), - (924, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mq1pqQXm', '7713585'), - (924, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mq1pqQXm', '7713586'), - (924, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mq1pqQXm', '7738518'), - (924, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mq1pqQXm', '7750636'), - (924, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mq1pqQXm', '7796540'), - (924, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mq1pqQXm', '7796541'), - (924, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mq1pqQXm', '7796542'), - (924, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mq1pqQXm', '7825913'), - (924, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mq1pqQXm', '7826209'), - (924, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mq1pqQXm', '7834742'), - (924, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mq1pqQXm', '7842108'), - (924, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mq1pqQXm', '7842902'), - (924, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mq1pqQXm', '7842903'), - (924, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mq1pqQXm', '7842904'), - (924, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mq1pqQXm', '7842905'), - (924, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mq1pqQXm', '7855719'), - (924, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mq1pqQXm', '7860683'), - (924, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mq1pqQXm', '7860684'), - (924, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mq1pqQXm', '7866095'), - (924, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mq1pqQXm', '7869170'), - (924, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mq1pqQXm', '7869188'), - (924, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mq1pqQXm', '7869201'), - (924, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mq1pqQXm', '7877465'), - (924, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mq1pqQXm', '7888250'), - (924, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mq1pqQXm', '7904777'), - (924, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mq1pqQXm', '8349164'), - (924, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mq1pqQXm', '8349545'), - (924, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mq1pqQXm', '8368028'), - (924, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mq1pqQXm', '8368029'), - (924, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mq1pqQXm', '8388462'), - (924, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mq1pqQXm', '8400273'), - (924, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mq1pqQXm', '8400275'), - (924, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mq1pqQXm', '8400276'), - (924, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mq1pqQXm', '8404977'), - (924, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mq1pqQXm', '8430783'), - (924, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mq1pqQXm', '8430784'), - (924, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mq1pqQXm', '8430799'), - (924, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mq1pqQXm', '8430800'), - (924, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mq1pqQXm', '8430801'), - (924, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mq1pqQXm', '8438709'), - (924, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mq1pqQXm', '8457738'), - (924, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mq1pqQXm', '8459566'), - (924, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mq1pqQXm', '8459567'), - (924, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mq1pqQXm', '8461032'), - (924, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mq1pqQXm', '8477877'), - (924, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mq1pqQXm', '8485688'), - (924, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mq1pqQXm', '8490587'), - (924, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mq1pqQXm', '8493552'), - (924, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mq1pqQXm', '8493553'), - (924, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mq1pqQXm', '8493554'), - (924, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mq1pqQXm', '8493555'), - (924, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mq1pqQXm', '8493556'), - (924, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mq1pqQXm', '8493557'), - (924, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mq1pqQXm', '8493558'), - (924, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mq1pqQXm', '8493559'), - (924, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mq1pqQXm', '8493560'), - (924, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mq1pqQXm', '8493561'), - (924, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mq1pqQXm', '8493572'), - (924, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mq1pqQXm', '8540725'), - (924, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mq1pqQXm', '8555421'), - (925, 499, 'attending', '2020-12-11 23:32:13', '2025-12-17 19:47:55', 'x4oNZgGA', '3314909'), - (925, 500, 'not_attending', '2020-12-19 01:10:46', '2025-12-17 19:47:55', 'x4oNZgGA', '3314964'), - (925, 502, 'not_attending', '2020-12-12 16:13:14', '2025-12-17 19:47:55', 'x4oNZgGA', '3323365'), - (925, 513, 'attending', '2020-12-19 18:19:50', '2025-12-17 19:47:55', 'x4oNZgGA', '3329383'), - (925, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'x4oNZgGA', '3351539'), - (925, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'x4oNZgGA', '3386848'), - (925, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'x4oNZgGA', '3389527'), - (925, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'x4oNZgGA', '3396499'), - (925, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'x4oNZgGA', '3403650'), - (925, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'x4oNZgGA', '3406988'), - (925, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'x4oNZgGA', '3416576'), - (925, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'x4oNZgGA', '3418925'), - (925, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'x4oNZgGA', '3430267'), - (925, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'x4oNZgGA', '3432673'), - (925, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'x4oNZgGA', '3468125'), - (925, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'x4oNZgGA', '3470303'), - (925, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'x4oNZgGA', '3470305'), - (925, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'x4oNZgGA', '3470991'), - (925, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'x4oNZgGA', '3517815'), - (925, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'x4oNZgGA', '3517816'), - (925, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'x4oNZgGA', '3523941'), - (925, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'x4oNZgGA', '3533850'), - (925, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'x4oNZgGA', '3536632'), - (925, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'x4oNZgGA', '3536656'), - (925, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'x4oNZgGA', '3539916'), - (925, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'x4oNZgGA', '3539917'), - (925, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'x4oNZgGA', '3539918'), - (925, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'x4oNZgGA', '3539919'), - (925, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'x4oNZgGA', '3539920'), - (925, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'x4oNZgGA', '3539921'), - (925, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'x4oNZgGA', '3539922'), - (925, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'x4oNZgGA', '3539923'), - (925, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'x4oNZgGA', '3539927'), - (925, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'x4oNZgGA', '3582734'), - (925, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'x4oNZgGA', '3583262'), - (925, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'x4oNZgGA', '3619523'), - (925, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'x4oNZgGA', '3661369'), - (925, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'x4oNZgGA', '3674262'), - (925, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'x4oNZgGA', '3677402'), - (925, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'x4oNZgGA', '3730212'), - (925, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oNZgGA', '6045684'), - (926, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'v4DLM6o4', '3236448'), - (926, 823, 'not_attending', '2021-06-17 18:43:07', '2025-12-17 19:47:48', 'v4DLM6o4', '3974109'), - (926, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DLM6o4', '6045684'), - (927, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', '4PPRXBG4', '4136947'), - (927, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '4PPRXBG4', '4210314'), - (927, 900, 'attending', '2021-07-20 18:37:09', '2025-12-17 19:47:40', '4PPRXBG4', '4240316'), - (927, 901, 'not_attending', '2021-07-31 20:06:06', '2025-12-17 19:47:40', '4PPRXBG4', '4240317'), - (927, 902, 'attending', '2021-08-04 20:42:26', '2025-12-17 19:47:41', '4PPRXBG4', '4240318'), - (927, 903, 'not_attending', '2021-08-14 18:00:09', '2025-12-17 19:47:42', '4PPRXBG4', '4240320'), - (927, 919, 'not_attending', '2021-07-17 18:19:26', '2025-12-17 19:47:39', '4PPRXBG4', '4275957'), - (927, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '4PPRXBG4', '4277819'), - (927, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '4PPRXBG4', '4301723'), - (927, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '4PPRXBG4', '4302093'), - (927, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4PPRXBG4', '4304151'), - (927, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '4PPRXBG4', '4345519'), - (927, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4PPRXBG4', '4356801'), - (927, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '4PPRXBG4', '4358025'), - (927, 973, 'not_attending', '2021-08-21 15:51:21', '2025-12-17 19:47:42', '4PPRXBG4', '4366186'), - (927, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '4PPRXBG4', '4366187'), - (927, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4PPRXBG4', '4402823'), - (927, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4PPRXBG4', '4420735'), - (927, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4PPRXBG4', '4420738'), - (927, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4PPRXBG4', '4420739'), - (927, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4PPRXBG4', '4420741'), - (927, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4PPRXBG4', '4420744'), - (927, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4PPRXBG4', '4420747'), - (927, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4PPRXBG4', '4420748'), - (927, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4PPRXBG4', '4420749'), - (927, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4PPRXBG4', '4461883'), - (927, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4PPRXBG4', '4508342'), - (927, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4PPRXBG4', '4568602'), - (927, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4PPRXBG4', '6045684'), - (928, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '8412WDwd', '3236465'), - (928, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '8412WDwd', '3539916'), - (928, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '8412WDwd', '3539918'), - (928, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '8412WDwd', '3539919'), - (928, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '8412WDwd', '3539920'), - (928, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '8412WDwd', '3539921'), - (928, 650, 'not_attending', '2021-03-27 21:01:49', '2025-12-17 19:47:44', '8412WDwd', '3539928'), - (928, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8412WDwd', '3583262'), - (928, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8412WDwd', '3619523'), - (928, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8412WDwd', '3661369'), - (928, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8412WDwd', '3674262'), - (928, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8412WDwd', '3677402'), - (928, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '8412WDwd', '3730212'), - (928, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8412WDwd', '3793156'), - (928, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '8412WDwd', '3803310'), - (928, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '8412WDwd', '3806392'), - (928, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8412WDwd', '6045684'), - (929, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'dKRvvVZ4', '5186585'), - (929, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dKRvvVZ4', '5195095'), - (929, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dKRvvVZ4', '5223686'), - (929, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dKRvvVZ4', '5227432'), - (929, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dKRvvVZ4', '5247467'), - (929, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dKRvvVZ4', '5260800'), - (929, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dKRvvVZ4', '5269930'), - (929, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dKRvvVZ4', '5271448'), - (929, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dKRvvVZ4', '5271449'), - (929, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dKRvvVZ4', '5276469'), - (929, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dKRvvVZ4', '5278159'), - (929, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKRvvVZ4', '6045684'), - (930, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mLDJDMJm', '5670445'), - (930, 1824, 'not_attending', '2022-11-30 14:58:07', '2025-12-17 19:47:04', 'mLDJDMJm', '5774172'), - (930, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'mLDJDMJm', '5818247'), - (930, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mLDJDMJm', '5819471'), - (930, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mLDJDMJm', '5827739'), - (930, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mLDJDMJm', '5844306'), - (930, 1846, 'not_attending', '2022-12-18 18:54:16', '2025-12-17 19:47:04', 'mLDJDMJm', '5845237'), - (930, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mLDJDMJm', '5850159'), - (930, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mLDJDMJm', '5858999'), - (930, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mLDJDMJm', '5871984'), - (930, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mLDJDMJm', '5876354'), - (930, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mLDJDMJm', '6045684'), - (931, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ndlwGx54', '3517815'), - (931, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ndlwGx54', '3517816'), - (931, 639, 'not_attending', '2021-03-07 04:16:32', '2025-12-17 19:47:51', 'ndlwGx54', '3536656'), - (931, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'ndlwGx54', '3539916'), - (931, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndlwGx54', '3539927'), - (931, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndlwGx54', '3582734'), - (931, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndlwGx54', '3619523'), - (931, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ndlwGx54', '3674262'), - (931, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ndlwGx54', '3677402'), - (931, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlwGx54', '6045684'), - (932, 7, 'attending', '2020-03-24 01:35:21', '2025-12-17 19:47:58', 'GmjeNObd', '2958049'), - (932, 8, 'maybe', '2020-03-24 01:35:44', '2025-12-17 19:47:58', 'GmjeNObd', '2958050'), - (932, 9, 'not_attending', '2020-03-24 01:36:05', '2025-12-17 19:47:56', 'GmjeNObd', '2958052'), - (932, 10, 'attending', '2020-03-24 01:36:07', '2025-12-17 19:47:56', 'GmjeNObd', '2958053'), - (932, 12, 'not_attending', '2020-04-01 00:32:14', '2025-12-17 19:47:56', 'GmjeNObd', '2958056'), - (932, 14, 'maybe', '2020-04-09 21:07:59', '2025-12-17 19:47:57', 'GmjeNObd', '2958058'), - (932, 15, 'not_attending', '2020-04-13 16:05:49', '2025-12-17 19:47:57', 'GmjeNObd', '2958059'), - (932, 16, 'not_attending', '2020-03-26 04:03:40', '2025-12-17 19:47:56', 'GmjeNObd', '2958060'), - (932, 18, 'attending', '2020-04-17 21:43:57', '2025-12-17 19:47:57', 'GmjeNObd', '2958062'), - (932, 19, 'not_attending', '2020-04-01 00:32:20', '2025-12-17 19:47:56', 'GmjeNObd', '2958063'), - (932, 21, 'not_attending', '2020-04-30 18:37:50', '2025-12-17 19:47:57', 'GmjeNObd', '2958065'), - (932, 28, 'not_attending', '2020-04-01 00:31:41', '2025-12-17 19:47:56', 'GmjeNObd', '2960421'), - (932, 29, 'maybe', '2020-03-23 15:45:42', '2025-12-17 19:47:56', 'GmjeNObd', '2961309'), - (932, 30, 'maybe', '2020-03-23 22:32:07', '2025-12-17 19:47:57', 'GmjeNObd', '2961895'), - (932, 31, 'attending', '2020-03-25 22:28:47', '2025-12-17 19:47:58', 'GmjeNObd', '2963118'), - (932, 34, 'not_attending', '2020-03-26 04:02:46', '2025-12-17 19:47:56', 'GmjeNObd', '2966259'), - (932, 36, 'maybe', '2020-04-04 22:10:26', '2025-12-17 19:47:57', 'GmjeNObd', '2969208'), - (932, 38, 'not_attending', '2020-04-01 00:32:19', '2025-12-17 19:47:56', 'GmjeNObd', '2969751'), - (932, 39, 'maybe', '2020-04-04 17:05:31', '2025-12-17 19:47:57', 'GmjeNObd', '2970637'), - (932, 41, 'attending', '2020-04-16 19:04:55', '2025-12-17 19:47:57', 'GmjeNObd', '2971546'), - (932, 42, 'attending', '2020-04-04 18:29:33', '2025-12-17 19:47:57', 'GmjeNObd', '2973471'), - (932, 43, 'not_attending', '2020-04-19 05:01:00', '2025-12-17 19:47:57', 'GmjeNObd', '2974519'), - (932, 44, 'attending', '2020-04-11 04:29:47', '2025-12-17 19:47:57', 'GmjeNObd', '2974534'), - (932, 45, 'attending', '2020-04-06 04:48:35', '2025-12-17 19:47:57', 'GmjeNObd', '2974760'), - (932, 46, 'attending', '2020-04-11 21:26:31', '2025-12-17 19:47:57', 'GmjeNObd', '2974955'), - (932, 48, 'not_attending', '2020-05-19 18:43:09', '2025-12-17 19:47:57', 'GmjeNObd', '2975273'), - (932, 52, 'not_attending', '2020-06-15 21:23:06', '2025-12-17 19:47:58', 'GmjeNObd', '2975277'), - (932, 55, 'attending', '2020-04-06 16:46:32', '2025-12-17 19:47:57', 'GmjeNObd', '2975384'), - (932, 56, 'attending', '2020-04-11 21:27:23', '2025-12-17 19:47:57', 'GmjeNObd', '2975385'), - (932, 57, 'not_attending', '2020-04-27 16:05:23', '2025-12-17 19:47:57', 'GmjeNObd', '2976575'), - (932, 60, 'not_attending', '2020-04-24 19:26:32', '2025-12-17 19:47:57', 'GmjeNObd', '2977129'), - (932, 61, 'attending', '2020-04-13 16:01:38', '2025-12-17 19:47:57', 'GmjeNObd', '2977130'), - (932, 63, 'not_attending', '2020-05-19 18:43:08', '2025-12-17 19:47:57', 'GmjeNObd', '2977132'), - (932, 67, 'not_attending', '2020-06-15 21:23:03', '2025-12-17 19:47:58', 'GmjeNObd', '2977136'), - (932, 70, 'attending', '2020-04-08 02:13:20', '2025-12-17 19:47:57', 'GmjeNObd', '2977343'), - (932, 71, 'attending', '2020-04-11 21:27:17', '2025-12-17 19:47:57', 'GmjeNObd', '2977526'), - (932, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'GmjeNObd', '2977812'), - (932, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'GmjeNObd', '2977931'), - (932, 74, 'attending', '2020-04-17 23:40:07', '2025-12-17 19:47:57', 'GmjeNObd', '2978244'), - (932, 75, 'attending', '2020-04-23 00:28:27', '2025-12-17 19:47:57', 'GmjeNObd', '2978245'), - (932, 76, 'attending', '2020-04-30 18:38:08', '2025-12-17 19:47:57', 'GmjeNObd', '2978246'), - (932, 77, 'attending', '2020-05-05 22:51:39', '2025-12-17 19:47:57', 'GmjeNObd', '2978247'), - (932, 78, 'attending', '2020-05-19 18:43:35', '2025-12-17 19:47:57', 'GmjeNObd', '2978249'), - (932, 79, 'attending', '2020-05-25 18:47:09', '2025-12-17 19:47:57', 'GmjeNObd', '2978250'), - (932, 80, 'maybe', '2020-06-02 23:47:01', '2025-12-17 19:47:58', 'GmjeNObd', '2978251'), - (932, 81, 'attending', '2020-06-07 06:52:21', '2025-12-17 19:47:58', 'GmjeNObd', '2978252'), - (932, 82, 'not_attending', '2020-04-24 19:25:56', '2025-12-17 19:47:57', 'GmjeNObd', '2978433'), - (932, 83, 'attending', '2020-05-07 22:05:12', '2025-12-17 19:47:57', 'GmjeNObd', '2978438'), - (932, 84, 'attending', '2020-04-19 20:51:24', '2025-12-17 19:47:57', 'GmjeNObd', '2980871'), - (932, 86, 'attending', '2020-04-13 18:45:13', '2025-12-17 19:47:57', 'GmjeNObd', '2981388'), - (932, 87, 'not_attending', '2020-04-24 19:26:11', '2025-12-17 19:47:57', 'GmjeNObd', '2982602'), - (932, 88, 'attending', '2020-04-17 23:40:11', '2025-12-17 19:47:57', 'GmjeNObd', '2982603'), - (932, 89, 'maybe', '2020-04-27 16:05:57', '2025-12-17 19:47:57', 'GmjeNObd', '2982604'), - (932, 91, 'maybe', '2020-04-30 18:38:01', '2025-12-17 19:47:57', 'GmjeNObd', '2985130'), - (932, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'GmjeNObd', '2986743'), - (932, 94, 'not_attending', '2020-04-24 19:26:14', '2025-12-17 19:47:57', 'GmjeNObd', '2987421'), - (932, 95, 'maybe', '2020-04-24 19:26:44', '2025-12-17 19:47:57', 'GmjeNObd', '2987452'), - (932, 96, 'maybe', '2020-05-06 21:58:45', '2025-12-17 19:47:57', 'GmjeNObd', '2987453'), - (932, 98, 'not_attending', '2020-05-19 18:43:24', '2025-12-17 19:47:57', 'GmjeNObd', '2987455'), - (932, 100, 'not_attending', '2020-04-24 19:25:48', '2025-12-17 19:47:57', 'GmjeNObd', '2989142'), - (932, 101, 'maybe', '2020-04-21 21:59:46', '2025-12-17 19:47:57', 'GmjeNObd', '2989975'), - (932, 102, 'maybe', '2020-04-24 19:26:36', '2025-12-17 19:47:57', 'GmjeNObd', '2990784'), - (932, 103, 'attending', '2020-05-04 16:17:57', '2025-12-17 19:47:57', 'GmjeNObd', '2991407'), - (932, 104, 'not_attending', '2020-04-25 22:12:31', '2025-12-17 19:47:57', 'GmjeNObd', '2991471'), - (932, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'GmjeNObd', '2993501'), - (932, 108, 'maybe', '2020-05-17 06:37:15', '2025-12-17 19:47:57', 'GmjeNObd', '2993504'), - (932, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'GmjeNObd', '2994480'), - (932, 111, 'attending', '2020-06-07 02:43:08', '2025-12-17 19:47:58', 'GmjeNObd', '2994907'), - (932, 112, 'not_attending', '2020-07-04 18:32:03', '2025-12-17 19:47:55', 'GmjeNObd', '2994908'), - (932, 114, 'maybe', '2020-04-28 15:57:15', '2025-12-17 19:47:57', 'GmjeNObd', '2994911'), - (932, 115, 'attending', '2020-05-16 18:58:16', '2025-12-17 19:47:57', 'GmjeNObd', '3001217'), - (932, 118, 'attending', '2020-05-05 21:31:57', '2025-12-17 19:47:57', 'GmjeNObd', '3007644'), - (932, 119, 'attending', '2020-05-09 17:42:26', '2025-12-17 19:47:57', 'GmjeNObd', '3015486'), - (932, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'GmjeNObd', '3023063'), - (932, 125, 'attending', '2020-05-22 03:08:05', '2025-12-17 19:47:57', 'GmjeNObd', '3023987'), - (932, 127, 'attending', '2020-05-17 03:12:47', '2025-12-17 19:47:57', 'GmjeNObd', '3025623'), - (932, 128, 'not_attending', '2020-05-19 18:43:32', '2025-12-17 19:47:57', 'GmjeNObd', '3027185'), - (932, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'GmjeNObd', '3034321'), - (932, 136, 'attending', '2020-05-24 20:14:24', '2025-12-17 19:47:57', 'GmjeNObd', '3035881'), - (932, 139, 'not_attending', '2020-06-15 21:23:36', '2025-12-17 19:47:58', 'GmjeNObd', '3046190'), - (932, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'GmjeNObd', '3049983'), - (932, 156, 'not_attending', '2020-09-08 01:40:54', '2025-12-17 19:47:56', 'GmjeNObd', '3058693'), - (932, 157, 'maybe', '2020-09-13 03:31:15', '2025-12-17 19:47:56', 'GmjeNObd', '3058694'), - (932, 158, 'maybe', '2020-09-13 03:31:49', '2025-12-17 19:47:52', 'GmjeNObd', '3058695'), - (932, 159, 'maybe', '2020-09-29 14:27:22', '2025-12-17 19:47:52', 'GmjeNObd', '3058696'), - (932, 160, 'maybe', '2020-10-12 23:05:15', '2025-12-17 19:47:52', 'GmjeNObd', '3058697'), - (932, 161, 'maybe', '2020-09-29 14:27:50', '2025-12-17 19:47:52', 'GmjeNObd', '3058698'), - (932, 162, 'maybe', '2020-10-12 23:03:44', '2025-12-17 19:47:52', 'GmjeNObd', '3058699'), - (932, 168, 'maybe', '2020-06-15 21:23:18', '2025-12-17 19:47:58', 'GmjeNObd', '3058740'), - (932, 169, 'not_attending', '2020-06-15 21:22:56', '2025-12-17 19:47:58', 'GmjeNObd', '3058741'), - (932, 171, 'maybe', '2020-06-11 20:53:01', '2025-12-17 19:47:58', 'GmjeNObd', '3058743'), - (932, 172, 'attending', '2020-06-07 05:14:20', '2025-12-17 19:47:58', 'GmjeNObd', '3058959'), - (932, 173, 'not_attending', '2020-06-15 21:23:52', '2025-12-17 19:47:58', 'GmjeNObd', '3067093'), - (932, 174, 'attending', '2020-06-08 22:17:06', '2025-12-17 19:47:58', 'GmjeNObd', '3067927'), - (932, 175, 'not_attending', '2020-06-15 21:23:13', '2025-12-17 19:47:58', 'GmjeNObd', '3068305'), - (932, 177, 'maybe', '2020-06-15 21:23:27', '2025-12-17 19:47:58', 'GmjeNObd', '3073193'), - (932, 178, 'attending', '2020-06-15 21:22:44', '2025-12-17 19:47:58', 'GmjeNObd', '3073195'), - (932, 179, 'not_attending', '2020-06-15 21:24:03', '2025-12-17 19:47:58', 'GmjeNObd', '3073687'), - (932, 180, 'not_attending', '2020-06-15 21:23:34', '2025-12-17 19:47:58', 'GmjeNObd', '3074048'), - (932, 181, 'maybe', '2020-06-15 21:23:59', '2025-12-17 19:47:58', 'GmjeNObd', '3074513'), - (932, 182, 'maybe', '2020-06-22 18:36:37', '2025-12-17 19:47:55', 'GmjeNObd', '3074514'), - (932, 183, 'maybe', '2020-06-22 18:36:01', '2025-12-17 19:47:58', 'GmjeNObd', '3075228'), - (932, 185, 'attending', '2020-06-15 21:25:42', '2025-12-17 19:47:58', 'GmjeNObd', '3075456'), - (932, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'GmjeNObd', '3083791'), - (932, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'GmjeNObd', '3085151'), - (932, 190, 'maybe', '2020-06-28 23:29:43', '2025-12-17 19:47:55', 'GmjeNObd', '3087258'), - (932, 191, 'attending', '2020-07-07 23:35:01', '2025-12-17 19:47:55', 'GmjeNObd', '3087259'), - (932, 192, 'maybe', '2020-07-15 00:21:45', '2025-12-17 19:47:55', 'GmjeNObd', '3087260'), - (932, 193, 'attending', '2020-07-24 05:32:56', '2025-12-17 19:47:55', 'GmjeNObd', '3087261'), - (932, 194, 'attending', '2020-08-01 21:54:46', '2025-12-17 19:47:56', 'GmjeNObd', '3087262'), - (932, 196, 'maybe', '2020-08-12 23:37:36', '2025-12-17 19:47:56', 'GmjeNObd', '3087265'), - (932, 197, 'maybe', '2020-08-20 22:27:13', '2025-12-17 19:47:56', 'GmjeNObd', '3087266'), - (932, 198, 'attending', '2020-08-27 15:57:32', '2025-12-17 19:47:56', 'GmjeNObd', '3087267'), - (932, 199, 'not_attending', '2020-09-02 21:10:51', '2025-12-17 19:47:56', 'GmjeNObd', '3087268'), - (932, 201, 'attending', '2020-06-25 01:52:26', '2025-12-17 19:47:55', 'GmjeNObd', '3088653'), - (932, 202, 'not_attending', '2020-07-04 18:32:13', '2025-12-17 19:47:55', 'GmjeNObd', '3090353'), - (932, 204, 'attending', '2020-06-28 23:27:34', '2025-12-17 19:47:55', 'GmjeNObd', '3102758'), - (932, 209, 'attending', '2020-06-28 23:28:12', '2025-12-17 19:47:55', 'GmjeNObd', '3106813'), - (932, 216, 'attending', '2020-07-07 23:35:12', '2025-12-17 19:47:55', 'GmjeNObd', '3126500'), - (932, 221, 'maybe', '2020-09-13 03:31:09', '2025-12-17 19:47:56', 'GmjeNObd', '3129265'), - (932, 223, 'attending', '2020-09-08 01:40:58', '2025-12-17 19:47:56', 'GmjeNObd', '3129980'), - (932, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'GmjeNObd', '3132817'), - (932, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'GmjeNObd', '3132820'), - (932, 228, 'attending', '2020-07-15 00:21:30', '2025-12-17 19:47:55', 'GmjeNObd', '3132821'), - (932, 241, 'maybe', '2020-09-29 14:27:33', '2025-12-17 19:47:52', 'GmjeNObd', '3149472'), - (932, 242, 'maybe', '2020-09-13 03:31:27', '2025-12-17 19:47:56', 'GmjeNObd', '3149473'), - (932, 244, 'maybe', '2020-10-12 23:04:10', '2025-12-17 19:47:52', 'GmjeNObd', '3149475'), - (932, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'GmjeNObd', '3155321'), - (932, 273, 'attending', '2020-08-03 17:20:44', '2025-12-17 19:47:56', 'GmjeNObd', '3162006'), - (932, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'GmjeNObd', '3163442'), - (932, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'GmjeNObd', '3169555'), - (932, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', 'GmjeNObd', '3169556'), - (932, 288, 'maybe', '2020-09-02 21:11:08', '2025-12-17 19:47:56', 'GmjeNObd', '3170249'), - (932, 290, 'not_attending', '2020-09-08 01:40:12', '2025-12-17 19:47:56', 'GmjeNObd', '3170251'), - (932, 291, 'not_attending', '2020-09-08 01:40:35', '2025-12-17 19:47:56', 'GmjeNObd', '3170252'), - (932, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'GmjeNObd', '3172832'), - (932, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'GmjeNObd', '3172833'), - (932, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'GmjeNObd', '3172834'), - (932, 296, 'maybe', '2020-09-08 01:40:48', '2025-12-17 19:47:56', 'GmjeNObd', '3172876'), - (932, 301, 'attending', '2020-08-26 18:44:30', '2025-12-17 19:47:56', 'GmjeNObd', '3178027'), - (932, 311, 'maybe', '2020-09-08 01:42:00', '2025-12-17 19:47:56', 'GmjeNObd', '3186057'), - (932, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'GmjeNObd', '3191735'), - (932, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', 'GmjeNObd', '3193885'), - (932, 320, 'maybe', '2020-09-02 21:11:00', '2025-12-17 19:47:56', 'GmjeNObd', '3195552'), - (932, 322, 'maybe', '2020-09-08 01:41:30', '2025-12-17 19:47:56', 'GmjeNObd', '3197080'), - (932, 323, 'maybe', '2020-09-08 01:41:35', '2025-12-17 19:47:56', 'GmjeNObd', '3197081'), - (932, 324, 'maybe', '2020-09-13 03:31:21', '2025-12-17 19:47:56', 'GmjeNObd', '3197082'), - (932, 325, 'maybe', '2020-09-13 03:31:34', '2025-12-17 19:47:51', 'GmjeNObd', '3197083'), - (932, 326, 'maybe', '2020-09-13 03:31:45', '2025-12-17 19:47:52', 'GmjeNObd', '3197084'), - (932, 327, 'maybe', '2020-09-23 18:40:57', '2025-12-17 19:47:52', 'GmjeNObd', '3197085'), - (932, 328, 'maybe', '2020-09-23 18:41:05', '2025-12-17 19:47:52', 'GmjeNObd', '3197086'), - (932, 329, 'maybe', '2020-09-29 14:27:15', '2025-12-17 19:47:52', 'GmjeNObd', '3197087'), - (932, 331, 'not_attending', '2020-09-02 21:11:58', '2025-12-17 19:47:56', 'GmjeNObd', '3198871'), - (932, 332, 'maybe', '2020-09-08 01:40:23', '2025-12-17 19:47:56', 'GmjeNObd', '3198873'), - (932, 333, 'maybe', '2020-09-29 14:27:36', '2025-12-17 19:47:52', 'GmjeNObd', '3199782'), - (932, 334, 'maybe', '2020-09-29 14:27:41', '2025-12-17 19:47:52', 'GmjeNObd', '3199784'), - (932, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'GmjeNObd', '3200209'), - (932, 336, 'maybe', '2020-09-08 01:41:24', '2025-12-17 19:47:56', 'GmjeNObd', '3200495'), - (932, 340, 'maybe', '2020-09-13 03:31:02', '2025-12-17 19:47:56', 'GmjeNObd', '3204470'), - (932, 341, 'maybe', '2020-09-13 03:31:37', '2025-12-17 19:47:52', 'GmjeNObd', '3204471'), - (932, 342, 'maybe', '2020-09-29 14:27:17', '2025-12-17 19:47:52', 'GmjeNObd', '3204472'), - (932, 343, 'maybe', '2020-09-13 03:31:30', '2025-12-17 19:47:56', 'GmjeNObd', '3206759'), - (932, 345, 'maybe', '2020-09-13 03:30:26', '2025-12-17 19:47:56', 'GmjeNObd', '3207423'), - (932, 346, 'maybe', '2020-09-13 03:30:52', '2025-12-17 19:47:56', 'GmjeNObd', '3207515'), - (932, 347, 'maybe', '2020-09-24 18:21:58', '2025-12-17 19:47:51', 'GmjeNObd', '3207930'), - (932, 348, 'maybe', '2020-09-23 18:41:01', '2025-12-17 19:47:52', 'GmjeNObd', '3209159'), - (932, 349, 'maybe', '2020-09-13 03:30:56', '2025-12-17 19:47:56', 'GmjeNObd', '3209194'), - (932, 350, 'attending', '2020-09-12 19:37:04', '2025-12-17 19:47:56', 'GmjeNObd', '3209255'), - (932, 351, 'maybe', '2020-09-13 03:31:05', '2025-12-17 19:47:56', 'GmjeNObd', '3209257'), - (932, 352, 'maybe', '2020-09-13 03:30:33', '2025-12-17 19:47:56', 'GmjeNObd', '3210514'), - (932, 356, 'maybe', '2020-09-23 18:41:14', '2025-12-17 19:47:51', 'GmjeNObd', '3212572'), - (932, 357, 'maybe', '2020-09-23 18:41:07', '2025-12-17 19:47:52', 'GmjeNObd', '3212573'), - (932, 362, 'attending', '2020-09-23 18:40:37', '2025-12-17 19:47:52', 'GmjeNObd', '3214207'), - (932, 363, 'attending', '2020-09-16 22:03:19', '2025-12-17 19:47:52', 'GmjeNObd', '3217037'), - (932, 364, 'attending', '2020-09-21 20:57:29', '2025-12-17 19:47:56', 'GmjeNObd', '3217106'), - (932, 365, 'maybe', '2020-09-23 18:40:20', '2025-12-17 19:47:52', 'GmjeNObd', '3218510'), - (932, 367, 'not_attending', '2020-09-23 18:41:19', '2025-12-17 19:47:51', 'GmjeNObd', '3219751'), - (932, 368, 'maybe', '2020-09-29 14:27:11', '2025-12-17 19:47:52', 'GmjeNObd', '3221403'), - (932, 369, 'maybe', '2020-10-07 21:16:32', '2025-12-17 19:47:52', 'GmjeNObd', '3221404'), - (932, 370, 'maybe', '2020-10-07 21:16:39', '2025-12-17 19:47:52', 'GmjeNObd', '3221405'), - (932, 371, 'maybe', '2020-10-07 21:16:48', '2025-12-17 19:47:52', 'GmjeNObd', '3221406'), - (932, 372, 'maybe', '2020-10-12 23:04:11', '2025-12-17 19:47:52', 'GmjeNObd', '3221407'), - (932, 373, 'maybe', '2020-10-12 23:05:13', '2025-12-17 19:47:52', 'GmjeNObd', '3221413'), - (932, 374, 'maybe', '2020-10-25 23:25:04', '2025-12-17 19:47:53', 'GmjeNObd', '3221415'), - (932, 375, 'maybe', '2020-09-29 14:27:39', '2025-12-17 19:47:52', 'GmjeNObd', '3222825'), - (932, 376, 'maybe', '2020-10-07 21:16:46', '2025-12-17 19:47:52', 'GmjeNObd', '3222827'), - (932, 377, 'maybe', '2020-10-25 23:25:14', '2025-12-17 19:47:53', 'GmjeNObd', '3222828'), - (932, 378, 'maybe', '2020-09-23 18:40:53', '2025-12-17 19:47:52', 'GmjeNObd', '3223725'), - (932, 379, 'not_attending', '2020-09-29 14:27:28', '2025-12-17 19:47:52', 'GmjeNObd', '3226266'), - (932, 382, 'maybe', '2020-10-07 21:16:35', '2025-12-17 19:47:52', 'GmjeNObd', '3226873'), - (932, 383, 'maybe', '2020-09-29 14:27:04', '2025-12-17 19:47:52', 'GmjeNObd', '3227946'), - (932, 384, 'maybe', '2020-09-29 14:26:29', '2025-12-17 19:47:52', 'GmjeNObd', '3228696'), - (932, 385, 'maybe', '2020-09-29 14:58:57', '2025-12-17 19:47:52', 'GmjeNObd', '3228698'), - (932, 386, 'maybe', '2020-09-29 14:27:48', '2025-12-17 19:47:52', 'GmjeNObd', '3228699'), - (932, 387, 'maybe', '2020-10-16 23:49:15', '2025-12-17 19:47:52', 'GmjeNObd', '3228700'), - (932, 388, 'attending', '2020-10-24 22:31:34', '2025-12-17 19:47:52', 'GmjeNObd', '3228701'), - (932, 391, 'maybe', '2020-10-07 21:16:42', '2025-12-17 19:47:52', 'GmjeNObd', '3236446'), - (932, 392, 'maybe', '2020-10-25 23:25:12', '2025-12-17 19:47:53', 'GmjeNObd', '3236447'), - (932, 411, 'maybe', '2020-10-07 21:16:25', '2025-12-17 19:47:52', 'GmjeNObd', '3236596'), - (932, 412, 'maybe', '2020-10-07 21:16:15', '2025-12-17 19:47:52', 'GmjeNObd', '3236636'), - (932, 413, 'maybe', '2020-10-12 23:04:16', '2025-12-17 19:47:52', 'GmjeNObd', '3236670'), - (932, 414, 'maybe', '2020-10-12 23:03:47', '2025-12-17 19:47:52', 'GmjeNObd', '3237277'), - (932, 415, 'maybe', '2020-10-07 21:16:29', '2025-12-17 19:47:52', 'GmjeNObd', '3238044'), - (932, 416, 'maybe', '2020-10-07 21:16:19', '2025-12-17 19:47:52', 'GmjeNObd', '3238073'), - (932, 417, 'maybe', '2020-10-12 23:03:32', '2025-12-17 19:47:52', 'GmjeNObd', '3238779'), - (932, 418, 'maybe', '2020-10-12 23:03:34', '2025-12-17 19:47:52', 'GmjeNObd', '3241728'), - (932, 419, 'maybe', '2020-10-12 23:03:20', '2025-12-17 19:47:52', 'GmjeNObd', '3242234'), - (932, 420, 'maybe', '2020-10-12 23:03:38', '2025-12-17 19:47:52', 'GmjeNObd', '3245293'), - (932, 421, 'maybe', '2020-10-12 23:04:20', '2025-12-17 19:47:52', 'GmjeNObd', '3245294'), - (932, 422, 'maybe', '2020-10-25 23:25:11', '2025-12-17 19:47:53', 'GmjeNObd', '3245295'), - (932, 424, 'maybe', '2020-10-12 23:04:02', '2025-12-17 19:47:52', 'GmjeNObd', '3245751'), - (932, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GmjeNObd', '3250232'), - (932, 428, 'maybe', '2020-10-25 23:25:03', '2025-12-17 19:47:53', 'GmjeNObd', '3250332'), - (932, 431, 'maybe', '2020-10-25 23:25:06', '2025-12-17 19:47:53', 'GmjeNObd', '3253225'), - (932, 437, 'maybe', '2020-10-25 23:25:09', '2025-12-17 19:47:53', 'GmjeNObd', '3256160'), - (932, 439, 'maybe', '2020-10-25 23:25:08', '2025-12-17 19:47:53', 'GmjeNObd', '3256164'), - (932, 440, 'attending', '2020-11-07 23:58:51', '2025-12-17 19:47:53', 'GmjeNObd', '3256168'), - (932, 441, 'maybe', '2020-11-07 23:59:10', '2025-12-17 19:47:54', 'GmjeNObd', '3256169'), - (932, 443, 'attending', '2020-10-23 21:29:31', '2025-12-17 19:47:52', 'GmjeNObd', '3263578'), - (932, 444, 'maybe', '2020-10-25 23:25:15', '2025-12-17 19:47:53', 'GmjeNObd', '3263745'), - (932, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GmjeNObd', '3276428'), - (932, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'GmjeNObd', '3281467'), - (932, 460, 'maybe', '2020-11-19 22:48:55', '2025-12-17 19:47:54', 'GmjeNObd', '3281468'), - (932, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GmjeNObd', '3281470'), - (932, 464, 'maybe', '2020-11-19 22:49:00', '2025-12-17 19:47:54', 'GmjeNObd', '3281554'), - (932, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GmjeNObd', '3281829'), - (932, 468, 'maybe', '2020-11-19 22:49:04', '2025-12-17 19:47:54', 'GmjeNObd', '3285413'), - (932, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'GmjeNObd', '3285414'), - (932, 481, 'attending', '2020-11-19 22:50:22', '2025-12-17 19:47:54', 'GmjeNObd', '3297764'), - (932, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'GmjeNObd', '3313856'), - (932, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GmjeNObd', '3314909'), - (932, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GmjeNObd', '3314964'), - (932, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'GmjeNObd', '3323365'), - (932, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GmjeNObd', '3329383'), - (932, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GmjeNObd', '3351539'), - (932, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GmjeNObd', '3386848'), - (932, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GmjeNObd', '3389527'), - (932, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GmjeNObd', '3396499'), - (932, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GmjeNObd', '3403650'), - (932, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GmjeNObd', '3406988'), - (932, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'GmjeNObd', '3408338'), - (932, 555, 'attending', '2021-01-23 19:27:37', '2025-12-17 19:47:49', 'GmjeNObd', '3416576'), - (932, 564, 'attending', '2021-01-22 21:42:51', '2025-12-17 19:47:49', 'GmjeNObd', '3426074'), - (932, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'GmjeNObd', '3430267'), - (932, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'GmjeNObd', '3470303'), - (932, 604, 'attending', '2021-02-27 23:59:00', '2025-12-17 19:47:50', 'GmjeNObd', '3470305'), - (932, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GmjeNObd', '3470991'), - (932, 621, 'attending', '2021-03-06 22:48:05', '2025-12-17 19:47:51', 'GmjeNObd', '3517815'), - (932, 622, 'attending', '2021-03-10 23:58:11', '2025-12-17 19:47:51', 'GmjeNObd', '3517816'), - (932, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'GmjeNObd', '3523941'), - (932, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GmjeNObd', '3533850'), - (932, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GmjeNObd', '3536632'), - (932, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GmjeNObd', '3536656'), - (932, 641, 'attending', '2021-04-03 21:05:12', '2025-12-17 19:47:44', 'GmjeNObd', '3539916'), - (932, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'GmjeNObd', '3539917'), - (932, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'GmjeNObd', '3539918'), - (932, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'GmjeNObd', '3539919'), - (932, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'GmjeNObd', '3539920'), - (932, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'GmjeNObd', '3539921'), - (932, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'GmjeNObd', '3539922'), - (932, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'GmjeNObd', '3539923'), - (932, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GmjeNObd', '3539927'), - (932, 680, 'attending', '2021-03-10 23:57:55', '2025-12-17 19:47:51', 'GmjeNObd', '3547700'), - (932, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GmjeNObd', '3582734'), - (932, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GmjeNObd', '3583262'), - (932, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GmjeNObd', '3619523'), - (932, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GmjeNObd', '3661369'), - (932, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GmjeNObd', '3674262'), - (932, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GmjeNObd', '3677402'), - (932, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GmjeNObd', '3730212'), - (932, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GmjeNObd', '3793156'), - (932, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjeNObd', '3974109'), - (932, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjeNObd', '3975311'), - (932, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjeNObd', '3975312'), - (932, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjeNObd', '3994992'), - (932, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjeNObd', '4014338'), - (932, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GmjeNObd', '4021848'), - (932, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjeNObd', '4136744'), - (932, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GmjeNObd', '4136937'), - (932, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GmjeNObd', '4136938'), - (932, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjeNObd', '4136947'), - (932, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjeNObd', '4239259'), - (932, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GmjeNObd', '4250163'), - (932, 1516, 'attending', '2022-08-16 23:23:39', '2025-12-17 19:47:23', 'GmjeNObd', '5441129'), - (932, 1517, 'attending', '2022-08-26 21:53:15', '2025-12-17 19:47:23', 'GmjeNObd', '5441130'), - (932, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjeNObd', '5441131'), - (932, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjeNObd', '5441132'), - (932, 1544, 'attending', '2022-09-15 22:23:54', '2025-12-17 19:47:11', 'GmjeNObd', '5454517'), - (932, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjeNObd', '5461278'), - (932, 1575, 'attending', '2022-08-26 21:53:48', '2025-12-17 19:47:23', 'GmjeNObd', '5482250'), - (932, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjeNObd', '5488912'), - (932, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjeNObd', '5492192'), - (932, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjeNObd', '5493139'), - (932, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjeNObd', '5493200'), - (932, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjeNObd', '5502188'), - (932, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjeNObd', '5505059'), - (932, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GmjeNObd', '5509055'), - (932, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjeNObd', '5512862'), - (932, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjeNObd', '5513985'), - (932, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GmjeNObd', '5519981'), - (932, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjeNObd', '5522550'), - (932, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjeNObd', '5534683'), - (932, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjeNObd', '5537735'), - (932, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjeNObd', '5540859'), - (932, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjeNObd', '5546619'), - (932, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GmjeNObd', '5555245'), - (932, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjeNObd', '5557747'), - (932, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjeNObd', '5560255'), - (932, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjeNObd', '5562906'), - (932, 1667, 'maybe', '2022-09-24 19:37:15', '2025-12-17 19:47:11', 'GmjeNObd', '5563221'), - (932, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjeNObd', '5600604'), - (932, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjeNObd', '5605544'), - (932, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'GmjeNObd', '5606737'), - (932, 1719, 'not_attending', '2022-10-08 21:29:37', '2025-12-17 19:47:12', 'GmjeNObd', '5630958'), - (932, 1720, 'attending', '2022-10-08 21:29:42', '2025-12-17 19:47:12', 'GmjeNObd', '5630959'), - (932, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GmjeNObd', '5630960'), - (932, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjeNObd', '5630961'), - (932, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjeNObd', '5630962'), - (932, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GmjeNObd', '5630966'), - (932, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GmjeNObd', '5630967'), - (932, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjeNObd', '5630968'), - (932, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjeNObd', '5635406'), - (932, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjeNObd', '5638765'), - (932, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjeNObd', '5640097'), - (932, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjeNObd', '5640843'), - (932, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjeNObd', '5641521'), - (932, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GmjeNObd', '5642818'), - (932, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjeNObd', '5652395'), - (932, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GmjeNObd', '5670445'), - (932, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjeNObd', '5671637'), - (932, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjeNObd', '5672329'), - (932, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjeNObd', '5674057'), - (932, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjeNObd', '5674060'), - (932, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'GmjeNObd', '5677461'), - (932, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjeNObd', '5698046'), - (932, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GmjeNObd', '5699760'), - (932, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjeNObd', '5741601'), - (932, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjeNObd', '5763458'), - (932, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjeNObd', '5774172'), - (932, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GmjeNObd', '5818247'), - (932, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjeNObd', '5819471'), - (932, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GmjeNObd', '5827739'), - (932, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjeNObd', '5844306'), - (932, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjeNObd', '5850159'), - (932, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjeNObd', '5858999'), - (932, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjeNObd', '5871984'), - (932, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjeNObd', '5876354'), - (932, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjeNObd', '5880939'), - (932, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjeNObd', '5880940'), - (932, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GmjeNObd', '5880942'), - (932, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjeNObd', '5880943'), - (932, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjeNObd', '5887890'), - (932, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjeNObd', '5888598'), - (932, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjeNObd', '5893260'), - (932, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjeNObd', '5899826'), - (932, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjeNObd', '5900199'), - (932, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjeNObd', '5900200'), - (932, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjeNObd', '5900202'), - (932, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjeNObd', '5900203'), - (932, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GmjeNObd', '5901108'), - (932, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjeNObd', '5901126'), - (932, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjeNObd', '5909655'), - (932, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjeNObd', '5910522'), - (932, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjeNObd', '5910526'), - (932, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjeNObd', '5910528'), - (932, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjeNObd', '5916219'), - (932, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GmjeNObd', '5936234'), - (932, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjeNObd', '5958351'), - (932, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjeNObd', '5959751'), - (932, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjeNObd', '5959755'), - (932, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjeNObd', '5960055'), - (932, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjeNObd', '5961684'), - (932, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GmjeNObd', '5962132'), - (932, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GmjeNObd', '5962133'), - (932, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjeNObd', '5962134'), - (932, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjeNObd', '5962317'), - (932, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjeNObd', '5962318'), - (932, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GmjeNObd', '5965933'), - (932, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjeNObd', '5967014'), - (932, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjeNObd', '5972815'), - (932, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjeNObd', '5974016'), - (932, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjeNObd', '5981515'), - (932, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjeNObd', '5993516'), - (932, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjeNObd', '5998939'), - (932, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjeNObd', '6028191'), - (932, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjeNObd', '6040066'), - (932, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjeNObd', '6042717'), - (932, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjeNObd', '6044838'), - (932, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GmjeNObd', '6044839'), - (932, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjeNObd', '6045684'), - (932, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjeNObd', '6050104'), - (932, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjeNObd', '6053195'), - (932, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjeNObd', '6053198'), - (932, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjeNObd', '6056085'), - (932, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjeNObd', '6056916'), - (932, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjeNObd', '6059290'), - (932, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjeNObd', '6060328'), - (932, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjeNObd', '6061037'), - (932, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjeNObd', '6061039'), - (932, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjeNObd', '6067245'), - (932, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjeNObd', '6068094'), - (932, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjeNObd', '6068252'), - (932, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjeNObd', '6068253'), - (932, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjeNObd', '6068254'), - (932, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GmjeNObd', '6068280'), - (932, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjeNObd', '6069093'), - (932, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GmjeNObd', '6072528'), - (932, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjeNObd', '6079840'), - (932, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjeNObd', '6083398'), - (932, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GmjeNObd', '6093504'), - (932, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjeNObd', '6097414'), - (932, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjeNObd', '6097442'), - (932, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjeNObd', '6097684'), - (932, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjeNObd', '6098762'), - (932, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjeNObd', '6101361'), - (932, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjeNObd', '6101362'), - (932, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjeNObd', '6107314'), - (932, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GmjeNObd', '6120034'), - (932, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GmjeNObd', '6136733'), - (932, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjeNObd', '6137989'), - (932, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjeNObd', '6150864'), - (932, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjeNObd', '6155491'), - (932, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjeNObd', '6164417'), - (932, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjeNObd', '6166388'), - (932, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjeNObd', '6176439'), - (932, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GmjeNObd', '6182410'), - (932, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjeNObd', '6185812'), - (932, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjeNObd', '6187651'), - (932, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjeNObd', '6187963'), - (932, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjeNObd', '6187964'), - (932, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjeNObd', '6187966'), - (932, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjeNObd', '6187967'), - (932, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjeNObd', '6187969'), - (932, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjeNObd', '6334878'), - (932, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjeNObd', '6337236'), - (932, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjeNObd', '6337970'), - (932, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjeNObd', '6338308'), - (932, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjeNObd', '6341710'), - (932, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjeNObd', '6342044'), - (932, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjeNObd', '6342298'), - (932, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GmjeNObd', '6343294'), - (932, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjeNObd', '6347034'), - (932, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjeNObd', '6347056'), - (932, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjeNObd', '6353830'), - (932, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjeNObd', '6353831'), - (932, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjeNObd', '6357867'), - (932, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjeNObd', '6358652'), - (932, 2204, 'attending', '2023-08-19 20:31:09', '2025-12-17 19:46:55', 'GmjeNObd', '6361542'), - (932, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjeNObd', '6361709'), - (932, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjeNObd', '6361710'), - (932, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjeNObd', '6361711'), - (932, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjeNObd', '6361712'), - (932, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjeNObd', '6361713'), - (932, 2232, 'attending', '2023-08-26 20:59:39', '2025-12-17 19:46:55', 'GmjeNObd', '6374818'), - (932, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'GmjeNObd', '6382573'), - (932, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'GmjeNObd', '6388604'), - (932, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GmjeNObd', '6394629'), - (932, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjeNObd', '6394631'), - (932, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjeNObd', '6440863'), - (932, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjeNObd', '6445440'), - (932, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjeNObd', '6453951'), - (932, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjeNObd', '6461696'), - (932, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjeNObd', '6462129'), - (932, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjeNObd', '6463218'), - (932, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GmjeNObd', '6472181'), - (932, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjeNObd', '6482693'), - (932, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GmjeNObd', '6484200'), - (932, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'GmjeNObd', '6484680'), - (932, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjeNObd', '6507741'), - (932, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GmjeNObd', '6514659'), - (932, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GmjeNObd', '6514660'), - (932, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjeNObd', '6519103'), - (932, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjeNObd', '6535681'), - (932, 2338, 'attending', '2023-11-26 00:05:24', '2025-12-17 19:46:48', 'GmjeNObd', '6538868'), - (932, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjeNObd', '6584747'), - (932, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjeNObd', '6587097'), - (932, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjeNObd', '6609022'), - (932, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'GmjeNObd', '6632757'), - (932, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjeNObd', '6644187'), - (932, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjeNObd', '6648951'), - (932, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GmjeNObd', '6648952'), - (932, 2388, 'attending', '2024-01-07 00:31:40', '2025-12-17 19:46:37', 'GmjeNObd', '6649244'), - (932, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjeNObd', '6655401'), - (932, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjeNObd', '6661585'), - (932, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjeNObd', '6661588'), - (932, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjeNObd', '6661589'), - (932, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjeNObd', '6699906'), - (932, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GmjeNObd', '6699913'), - (932, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjeNObd', '6701109'), - (932, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjeNObd', '6705219'), - (932, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjeNObd', '6710153'), - (932, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjeNObd', '6711552'), - (932, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GmjeNObd', '6711553'), - (932, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjeNObd', '6722688'), - (932, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjeNObd', '6730620'), - (932, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjeNObd', '6740364'), - (932, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjeNObd', '6743829'), - (932, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjeNObd', '7030380'), - (932, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'GmjeNObd', '7033677'), - (932, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjeNObd', '7044715'), - (932, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjeNObd', '7050318'), - (932, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjeNObd', '7050319'), - (932, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjeNObd', '7050322'), - (932, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjeNObd', '7057804'), - (932, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjeNObd', '7072824'), - (932, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjeNObd', '7074348'), - (932, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GmjeNObd', '7089267'), - (932, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjeNObd', '7098747'), - (932, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GmjeNObd', '7113468'), - (932, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjeNObd', '7114856'), - (932, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjeNObd', '7114951'), - (932, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjeNObd', '7114955'), - (932, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjeNObd', '7114956'), - (932, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GmjeNObd', '7114957'), - (932, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjeNObd', '7159484'), - (932, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjeNObd', '7178446'), - (932, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GmjeNObd', '7220467'), - (932, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjeNObd', '7240354'), - (932, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjeNObd', '7251633'), - (932, 2626, 'attending', '2024-05-17 02:21:52', '2025-12-17 19:46:35', 'GmjeNObd', '7264723'), - (932, 2627, 'attending', '2024-05-20 23:48:57', '2025-12-17 19:46:35', 'GmjeNObd', '7264724'), - (932, 2628, 'attending', '2024-06-01 20:58:12', '2025-12-17 19:46:36', 'GmjeNObd', '7264725'), - (932, 2629, 'attending', '2024-06-08 21:53:14', '2025-12-17 19:46:28', 'GmjeNObd', '7264726'), - (932, 2647, 'attending', '2024-06-09 20:02:11', '2025-12-17 19:46:28', 'GmjeNObd', '7282057'), - (932, 2649, 'not_attending', '2024-05-28 19:55:33', '2025-12-17 19:46:35', 'GmjeNObd', '7282950'), - (932, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'GmjeNObd', '7302674'), - (932, 2678, 'attending', '2024-06-15 22:44:21', '2025-12-17 19:46:28', 'GmjeNObd', '7319489'), - (932, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjeNObd', '7324073'), - (932, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjeNObd', '7324074'), - (933, 1379, 'not_attending', '2022-05-21 22:15:48', '2025-12-17 19:47:30', 'mR695gEm', '5271449'), - (933, 1380, 'not_attending', '2022-05-26 21:39:17', '2025-12-17 19:47:30', 'mR695gEm', '5271450'), - (933, 1400, 'attending', '2022-05-10 02:23:25', '2025-12-17 19:47:29', 'mR695gEm', '5284864'), - (933, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mR695gEm', '5363695'), - (933, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mR695gEm', '5365960'), - (933, 1410, 'not_attending', '2022-05-17 17:52:29', '2025-12-17 19:47:29', 'mR695gEm', '5367530'), - (933, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mR695gEm', '5368973'), - (933, 1424, 'attending', '2022-05-23 23:11:30', '2025-12-17 19:47:30', 'mR695gEm', '5375772'), - (933, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mR695gEm', '5378247'), - (933, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mR695gEm', '5389605'), - (933, 1442, 'not_attending', '2022-06-18 15:35:52', '2025-12-17 19:47:17', 'mR695gEm', '5397265'), - (933, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mR695gEm', '5403967'), - (933, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mR695gEm', '5404786'), - (933, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mR695gEm', '5405203'), - (933, 1476, 'attending', '2022-06-19 19:21:12', '2025-12-17 19:47:17', 'mR695gEm', '5408130'), - (933, 1478, 'not_attending', '2022-06-24 13:45:06', '2025-12-17 19:47:19', 'mR695gEm', '5408794'), - (933, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mR695gEm', '5411699'), - (933, 1482, 'attending', '2022-06-24 13:45:12', '2025-12-17 19:47:19', 'mR695gEm', '5412550'), - (933, 1484, 'not_attending', '2022-06-21 12:39:39', '2025-12-17 19:47:17', 'mR695gEm', '5415046'), - (933, 1488, 'not_attending', '2022-07-05 22:36:07', '2025-12-17 19:47:19', 'mR695gEm', '5420154'), - (933, 1490, 'maybe', '2022-07-01 13:17:12', '2025-12-17 19:47:19', 'mR695gEm', '5420156'), - (933, 1495, 'maybe', '2022-07-01 13:21:03', '2025-12-17 19:47:19', 'mR695gEm', '5422086'), - (933, 1496, 'attending', '2022-06-26 20:19:47', '2025-12-17 19:47:19', 'mR695gEm', '5422404'), - (933, 1497, 'attending', '2022-06-26 20:19:53', '2025-12-17 19:47:19', 'mR695gEm', '5422405'), - (933, 1498, 'not_attending', '2022-07-02 22:45:58', '2025-12-17 19:47:19', 'mR695gEm', '5422406'), - (933, 1500, 'maybe', '2022-07-01 13:17:16', '2025-12-17 19:47:19', 'mR695gEm', '5423915'), - (933, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mR695gEm', '5424565'), - (933, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mR695gEm', '5426882'), - (933, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mR695gEm', '5427083'), - (933, 1509, 'attending', '2022-07-06 22:03:12', '2025-12-17 19:47:19', 'mR695gEm', '5434019'), - (933, 1511, 'attending', '2022-07-07 02:19:33', '2025-12-17 19:47:19', 'mR695gEm', '5437733'), - (933, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mR695gEm', '5441125'), - (933, 1514, 'attending', '2022-07-19 14:27:44', '2025-12-17 19:47:20', 'mR695gEm', '5441126'), - (933, 1515, 'attending', '2022-08-04 13:38:38', '2025-12-17 19:47:21', 'mR695gEm', '5441128'), - (933, 1516, 'attending', '2022-08-19 18:23:09', '2025-12-17 19:47:23', 'mR695gEm', '5441129'), - (933, 1517, 'attending', '2022-08-26 11:35:34', '2025-12-17 19:47:23', 'mR695gEm', '5441130'), - (933, 1518, 'attending', '2022-08-30 18:45:03', '2025-12-17 19:47:24', 'mR695gEm', '5441131'), - (933, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mR695gEm', '5441132'), - (933, 1522, 'not_attending', '2022-07-16 18:07:54', '2025-12-17 19:47:20', 'mR695gEm', '5442832'), - (933, 1528, 'attending', '2022-07-14 13:56:59', '2025-12-17 19:47:20', 'mR695gEm', '5446643'), - (933, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mR695gEm', '5453325'), - (933, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mR695gEm', '5454516'), - (933, 1544, 'attending', '2022-09-11 18:50:00', '2025-12-17 19:47:11', 'mR695gEm', '5454517'), - (933, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mR695gEm', '5454605'), - (933, 1546, 'attending', '2022-07-27 17:34:02', '2025-12-17 19:47:20', 'mR695gEm', '5454607'), - (933, 1547, 'attending', '2022-07-23 18:55:13', '2025-12-17 19:47:20', 'mR695gEm', '5454608'), - (933, 1550, 'attending', '2022-07-22 02:21:21', '2025-12-17 19:47:20', 'mR695gEm', '5454803'), - (933, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mR695gEm', '5455037'), - (933, 1553, 'attending', '2022-07-19 23:02:15', '2025-12-17 19:47:20', 'mR695gEm', '5455164'), - (933, 1557, 'not_attending', '2022-08-01 04:08:56', '2025-12-17 19:47:21', 'mR695gEm', '5458729'), - (933, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mR695gEm', '5461278'), - (933, 1562, 'maybe', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mR695gEm', '5469480'), - (933, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mR695gEm', '5471073'), - (933, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mR695gEm', '5474663'), - (933, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mR695gEm', '5482022'), - (933, 1574, 'maybe', '2022-08-07 17:43:18', '2025-12-17 19:47:22', 'mR695gEm', '5482153'), - (933, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mR695gEm', '5482793'), - (933, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mR695gEm', '5488912'), - (933, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mR695gEm', '5492192'), - (933, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mR695gEm', '5493139'), - (933, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mR695gEm', '5493200'), - (933, 1592, 'maybe', '2022-08-09 21:46:35', '2025-12-17 19:47:22', 'mR695gEm', '5494031'), - (933, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mR695gEm', '5502188'), - (933, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mR695gEm', '5505059'), - (933, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mR695gEm', '5509055'), - (933, 1618, 'attending', '2022-08-28 20:32:32', '2025-12-17 19:47:23', 'mR695gEm', '5512005'), - (933, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mR695gEm', '5512862'), - (933, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mR695gEm', '5513985'), - (933, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mR695gEm', '5519981'), - (933, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mR695gEm', '5522550'), - (933, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mR695gEm', '5534683'), - (933, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'mR695gEm', '5537735'), - (933, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mR695gEm', '5540859'), - (933, 1644, 'not_attending', '2022-09-18 17:16:14', '2025-12-17 19:47:11', 'mR695gEm', '5545857'), - (933, 1645, 'maybe', '2022-09-10 00:37:46', '2025-12-17 19:47:25', 'mR695gEm', '5546559'), - (933, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mR695gEm', '5546619'), - (933, 1652, 'attending', '2022-09-09 00:16:08', '2025-12-17 19:47:24', 'mR695gEm', '5552671'), - (933, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mR695gEm', '5555245'), - (933, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mR695gEm', '5557747'), - (933, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mR695gEm', '5560255'), - (933, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mR695gEm', '5562906'), - (933, 1667, 'attending', '2022-09-22 15:45:17', '2025-12-17 19:47:11', 'mR695gEm', '5563221'), - (933, 1668, 'not_attending', '2022-09-29 11:20:33', '2025-12-17 19:47:12', 'mR695gEm', '5563222'), - (933, 1670, 'not_attending', '2022-09-17 13:06:54', '2025-12-17 19:47:11', 'mR695gEm', '5575076'), - (933, 1677, 'maybe', '2022-09-22 15:45:50', '2025-12-17 19:47:11', 'mR695gEm', '5600604'), - (933, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mR695gEm', '5605544'), - (933, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'mR695gEm', '5606737'), - (933, 1714, 'maybe', '2022-10-24 16:26:32', '2025-12-17 19:47:14', 'mR695gEm', '5622347'), - (933, 1718, 'maybe', '2022-10-18 13:19:09', '2025-12-17 19:47:12', 'mR695gEm', '5630907'), - (933, 1719, 'not_attending', '2022-10-06 15:56:40', '2025-12-17 19:47:12', 'mR695gEm', '5630958'), - (933, 1720, 'attending', '2022-10-15 15:42:12', '2025-12-17 19:47:12', 'mR695gEm', '5630959'), - (933, 1721, 'not_attending', '2022-10-17 03:54:40', '2025-12-17 19:47:13', 'mR695gEm', '5630960'), - (933, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mR695gEm', '5630961'), - (933, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mR695gEm', '5630962'), - (933, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mR695gEm', '5630966'), - (933, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mR695gEm', '5630967'), - (933, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mR695gEm', '5630968'), - (933, 1727, 'attending', '2022-12-01 22:46:14', '2025-12-17 19:47:16', 'mR695gEm', '5630969'), - (933, 1728, 'maybe', '2022-12-09 15:10:22', '2025-12-17 19:47:17', 'mR695gEm', '5630970'), - (933, 1730, 'attending', '2022-10-06 15:58:45', '2025-12-17 19:47:12', 'mR695gEm', '5634666'), - (933, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mR695gEm', '5635406'), - (933, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mR695gEm', '5638765'), - (933, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mR695gEm', '5640097'), - (933, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mR695gEm', '5640843'), - (933, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mR695gEm', '5641521'), - (933, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mR695gEm', '5642818'), - (933, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mR695gEm', '5652395'), - (933, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mR695gEm', '5670445'), - (933, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mR695gEm', '5671637'), - (933, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mR695gEm', '5672329'), - (933, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mR695gEm', '5674057'), - (933, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mR695gEm', '5674060'), - (933, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mR695gEm', '5677461'), - (933, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mR695gEm', '5698046'), - (933, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mR695gEm', '5699760'), - (933, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mR695gEm', '5741601'), - (933, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mR695gEm', '5763458'), - (933, 1812, 'attending', '2023-03-10 12:54:14', '2025-12-17 19:47:09', 'mR695gEm', '5764682'), - (933, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mR695gEm', '5774172'), - (933, 1829, 'maybe', '2022-12-01 22:46:37', '2025-12-17 19:47:16', 'mR695gEm', '5778867'), - (933, 1830, 'maybe', '2022-11-29 22:34:45', '2025-12-17 19:47:16', 'mR695gEm', '5778871'), - (933, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mR695gEm', '5818247'), - (933, 1834, 'attending', '2022-12-10 11:56:16', '2025-12-17 19:47:17', 'mR695gEm', '5819470'), - (933, 1835, 'attending', '2023-01-03 03:36:48', '2025-12-17 19:47:05', 'mR695gEm', '5819471'), - (933, 1841, 'attending', '2023-01-03 03:36:53', '2025-12-17 19:47:05', 'mR695gEm', '5827665'), - (933, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'mR695gEm', '5827739'), - (933, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mR695gEm', '5844306'), - (933, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mR695gEm', '5850159'), - (933, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mR695gEm', '5858999'), - (933, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mR695gEm', '5871984'), - (933, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mR695gEm', '5876354'), - (933, 1864, 'attending', '2023-01-17 03:40:40', '2025-12-17 19:47:05', 'mR695gEm', '5879675'), - (933, 1865, 'attending', '2023-01-27 14:23:06', '2025-12-17 19:47:06', 'mR695gEm', '5879676'), - (933, 1866, 'attending', '2023-01-17 03:40:32', '2025-12-17 19:47:05', 'mR695gEm', '5880939'), - (933, 1868, 'attending', '2023-02-22 00:24:50', '2025-12-17 19:47:07', 'mR695gEm', '5880942'), - (933, 1873, 'attending', '2023-01-20 00:49:51', '2025-12-17 19:47:05', 'mR695gEm', '5885295'), - (933, 1874, 'maybe', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mR695gEm', '5887890'), - (933, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mR695gEm', '5888598'), - (933, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mR695gEm', '5893260'), - (933, 1881, 'attending', '2023-02-12 19:57:47', '2025-12-17 19:47:07', 'mR695gEm', '5894218'), - (933, 1884, 'attending', '2023-01-30 21:30:15', '2025-12-17 19:47:06', 'mR695gEm', '5899826'), - (933, 1885, 'maybe', '2023-02-23 15:09:17', '2025-12-17 19:47:08', 'mR695gEm', '5899928'), - (933, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mR695gEm', '5900199'), - (933, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mR695gEm', '5900200'), - (933, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mR695gEm', '5900202'), - (933, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mR695gEm', '5900203'), - (933, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mR695gEm', '5901108'), - (933, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mR695gEm', '5901126'), - (933, 1897, 'attending', '2023-02-10 18:29:31', '2025-12-17 19:47:07', 'mR695gEm', '5901128'), - (933, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mR695gEm', '5909655'), - (933, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mR695gEm', '5910522'), - (933, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mR695gEm', '5910526'), - (933, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mR695gEm', '5910528'), - (933, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mR695gEm', '5916219'), - (933, 1929, 'maybe', '2023-02-19 22:05:54', '2025-12-17 19:47:07', 'mR695gEm', '5932628'), - (933, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mR695gEm', '5936234'), - (933, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mR695gEm', '5958351'), - (933, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mR695gEm', '5959751'), - (933, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mR695gEm', '5959755'), - (933, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mR695gEm', '5960055'), - (933, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mR695gEm', '5961684'), - (933, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mR695gEm', '5962132'), - (933, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mR695gEm', '5962133'), - (933, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mR695gEm', '5962134'), - (933, 1947, 'not_attending', '2023-02-26 00:00:13', '2025-12-17 19:47:09', 'mR695gEm', '5962233'), - (933, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mR695gEm', '5962317'), - (933, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mR695gEm', '5962318'), - (933, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mR695gEm', '5965933'), - (933, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mR695gEm', '5967014'), - (933, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'mR695gEm', '5972763'), - (933, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mR695gEm', '5972815'), - (933, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mR695gEm', '5974016'), - (933, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mR695gEm', '5981515'), - (933, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mR695gEm', '5993516'), - (933, 1972, 'not_attending', '2023-03-17 00:30:57', '2025-12-17 19:46:56', 'mR695gEm', '5993776'), - (933, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mR695gEm', '5998939'), - (933, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mR695gEm', '6028191'), - (933, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mR695gEm', '6040066'), - (933, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mR695gEm', '6042717'), - (933, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR695gEm', '6045684'), - (933, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mR695gEm', '6050104'), - (933, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mR695gEm', '6053195'), - (933, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mR695gEm', '6053198'), - (933, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mR695gEm', '6056085'), - (933, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mR695gEm', '6056916'), - (933, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mR695gEm', '6059290'), - (933, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mR695gEm', '6060328'), - (933, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mR695gEm', '6061037'), - (933, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mR695gEm', '6061039'), - (933, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mR695gEm', '6067245'), - (933, 2025, 'attending', '2023-04-17 20:33:17', '2025-12-17 19:47:00', 'mR695gEm', '6067457'), - (933, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mR695gEm', '6068094'), - (933, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mR695gEm', '6068252'), - (933, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mR695gEm', '6068253'), - (933, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mR695gEm', '6068254'), - (933, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'mR695gEm', '6068280'), - (933, 2032, 'attending', '2023-06-02 18:56:58', '2025-12-17 19:47:04', 'mR695gEm', '6068281'), - (933, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mR695gEm', '6069093'), - (933, 2039, 'not_attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'mR695gEm', '6072398'), - (933, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mR695gEm', '6072528'), - (933, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mR695gEm', '6079840'), - (933, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mR695gEm', '6083398'), - (933, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mR695gEm', '6093504'), - (933, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mR695gEm', '6097414'), - (933, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mR695gEm', '6097442'), - (933, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mR695gEm', '6097684'), - (933, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mR695gEm', '6098762'), - (933, 2064, 'not_attending', '2023-06-24 22:26:36', '2025-12-17 19:46:50', 'mR695gEm', '6099988'), - (933, 2065, 'not_attending', '2023-06-17 18:08:40', '2025-12-17 19:46:49', 'mR695gEm', '6101169'), - (933, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mR695gEm', '6101361'), - (933, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mR695gEm', '6101362'), - (933, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mR695gEm', '6103752'), - (933, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mR695gEm', '6107314'), - (933, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mR695gEm', '6120034'), - (933, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mR695gEm', '6136733'), - (933, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mR695gEm', '6137989'), - (933, 2108, 'maybe', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mR695gEm', '6150864'), - (933, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mR695gEm', '6155491'), - (933, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mR695gEm', '6164417'), - (933, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mR695gEm', '6166388'), - (933, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mR695gEm', '6176439'), - (933, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mR695gEm', '6182410'), - (933, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mR695gEm', '6185812'), - (933, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mR695gEm', '6187651'), - (933, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mR695gEm', '6187963'), - (933, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mR695gEm', '6187964'), - (933, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mR695gEm', '6187966'), - (933, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mR695gEm', '6187967'), - (933, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mR695gEm', '6187969'), - (933, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mR695gEm', '6334878'), - (933, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mR695gEm', '6337236'), - (933, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mR695gEm', '6337970'), - (933, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mR695gEm', '6338308'), - (933, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mR695gEm', '6340845'), - (933, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mR695gEm', '6341710'), - (933, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mR695gEm', '6342044'), - (933, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mR695gEm', '6342298'), - (933, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mR695gEm', '6343294'), - (933, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mR695gEm', '6347034'), - (933, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mR695gEm', '6347056'), - (933, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mR695gEm', '6353830'), - (933, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mR695gEm', '6353831'), - (933, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mR695gEm', '6357867'), - (933, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mR695gEm', '6358652'), - (933, 2199, 'maybe', '2023-08-16 17:31:49', '2025-12-17 19:46:55', 'mR695gEm', '6359849'), - (933, 2200, 'maybe', '2023-08-10 21:32:08', '2025-12-17 19:46:55', 'mR695gEm', '6359850'), - (933, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mR695gEm', '6361709'), - (933, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mR695gEm', '6361710'), - (933, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mR695gEm', '6361711'), - (933, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mR695gEm', '6361712'), - (933, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mR695gEm', '6361713'), - (933, 2215, 'maybe', '2023-08-11 19:59:18', '2025-12-17 19:46:55', 'mR695gEm', '6363479'), - (933, 2232, 'attending', '2023-08-26 18:11:20', '2025-12-17 19:46:55', 'mR695gEm', '6374818'), - (933, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mR695gEm', '6382573'), - (933, 2239, 'attending', '2023-08-31 22:07:01', '2025-12-17 19:46:56', 'mR695gEm', '6387592'), - (933, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mR695gEm', '6388604'), - (933, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mR695gEm', '6394629'), - (933, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mR695gEm', '6394631'), - (933, 2253, 'attending', '2023-09-30 22:19:18', '2025-12-17 19:46:45', 'mR695gEm', '6401811'), - (933, 2262, 'maybe', '2023-10-01 14:01:28', '2025-12-17 19:46:45', 'mR695gEm', '6427423'), - (933, 2267, 'maybe', '2023-10-02 18:36:42', '2025-12-17 19:46:45', 'mR695gEm', '6440034'), - (933, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mR695gEm', '6440863'), - (933, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mR695gEm', '6445440'), - (933, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mR695gEm', '6453951'), - (933, 2277, 'maybe', '2023-10-08 17:12:58', '2025-12-17 19:46:46', 'mR695gEm', '6455211'), - (933, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mR695gEm', '6461696'), - (933, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mR695gEm', '6462129'), - (933, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mR695gEm', '6463218'), - (933, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mR695gEm', '6472181'), - (933, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mR695gEm', '6482693'), - (933, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mR695gEm', '6484200'), - (933, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mR695gEm', '6484680'), - (933, 2310, 'attending', '2023-11-09 17:51:42', '2025-12-17 19:46:47', 'mR695gEm', '6487709'), - (933, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mR695gEm', '6507741'), - (933, 2322, 'attending', '2023-11-17 22:24:50', '2025-12-17 19:46:48', 'mR695gEm', '6514659'), - (933, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mR695gEm', '6514660'), - (933, 2324, 'attending', '2023-12-09 20:23:44', '2025-12-17 19:46:49', 'mR695gEm', '6514662'), - (933, 2325, 'attending', '2023-12-13 16:45:46', '2025-12-17 19:46:36', 'mR695gEm', '6514663'), - (933, 2326, 'maybe', '2023-11-06 21:16:23', '2025-12-17 19:46:48', 'mR695gEm', '6514805'), - (933, 2332, 'attending', '2023-11-03 20:51:14', '2025-12-17 19:46:47', 'mR695gEm', '6518655'), - (933, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mR695gEm', '6519103'), - (933, 2335, 'not_attending', '2023-11-09 17:49:01', '2025-12-17 19:46:47', 'mR695gEm', '6534890'), - (933, 2337, 'not_attending', '2023-11-08 01:11:38', '2025-12-17 19:46:48', 'mR695gEm', '6535681'), - (933, 2340, 'attending', '2023-11-22 00:01:38', '2025-12-17 19:46:48', 'mR695gEm', '6540279'), - (933, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mR695gEm', '6584747'), - (933, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mR695gEm', '6587097'), - (933, 2355, 'attending', '2023-12-04 23:06:28', '2025-12-17 19:46:49', 'mR695gEm', '6593339'), - (933, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mR695gEm', '6609022'), - (933, 2365, 'attending', '2023-12-23 03:15:23', '2025-12-17 19:46:37', 'mR695gEm', '6613093'), - (933, 2368, 'not_attending', '2023-12-14 16:29:37', '2025-12-17 19:46:36', 'mR695gEm', '6621445'), - (933, 2371, 'maybe', '2023-12-15 21:17:04', '2025-12-17 19:46:36', 'mR695gEm', '6624495'), - (933, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mR695gEm', '6632757'), - (933, 2379, 'attending', '2024-01-03 17:29:47', '2025-12-17 19:46:37', 'mR695gEm', '6644187'), - (933, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mR695gEm', '6648951'), - (933, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mR695gEm', '6648952'), - (933, 2388, 'attending', '2024-01-06 16:02:35', '2025-12-17 19:46:37', 'mR695gEm', '6649244'), - (933, 2395, 'attending', '2024-01-17 00:22:42', '2025-12-17 19:46:38', 'mR695gEm', '6654471'), - (933, 2396, 'attending', '2024-01-16 14:31:43', '2025-12-17 19:46:38', 'mR695gEm', '6655401'), - (933, 2399, 'attending', '2024-01-11 17:19:50', '2025-12-17 19:46:38', 'mR695gEm', '6657583'), - (933, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mR695gEm', '6661585'), - (933, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mR695gEm', '6661588'), - (933, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mR695gEm', '6661589'), - (933, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mR695gEm', '6699906'), - (933, 2408, 'attending', '2024-01-25 20:34:55', '2025-12-17 19:46:40', 'mR695gEm', '6699907'), - (933, 2409, 'attending', '2024-01-31 00:21:53', '2025-12-17 19:46:41', 'mR695gEm', '6699909'), - (933, 2410, 'attending', '2024-02-08 00:35:50', '2025-12-17 19:46:41', 'mR695gEm', '6699911'), - (933, 2411, 'not_attending', '2024-02-16 16:39:59', '2025-12-17 19:46:42', 'mR695gEm', '6699913'), - (933, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mR695gEm', '6701109'), - (933, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mR695gEm', '6705219'), - (933, 2428, 'not_attending', '2024-01-21 05:55:21', '2025-12-17 19:46:40', 'mR695gEm', '6710153'), - (933, 2429, 'attending', '2024-01-24 00:52:26', '2025-12-17 19:46:40', 'mR695gEm', '6711552'), - (933, 2430, 'attending', '2024-01-25 22:13:44', '2025-12-17 19:46:40', 'mR695gEm', '6711553'), - (933, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mR695gEm', '6722688'), - (933, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mR695gEm', '6730620'), - (933, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mR695gEm', '6730642'), - (933, 2444, 'attending', '2024-02-09 19:20:40', '2025-12-17 19:46:41', 'mR695gEm', '6734367'), - (933, 2445, 'attending', '2024-02-17 00:17:26', '2025-12-17 19:46:41', 'mR695gEm', '6734368'), - (933, 2446, 'attending', '2024-03-01 21:02:10', '2025-12-17 19:46:43', 'mR695gEm', '6734369'), - (933, 2449, 'attending', '2024-02-20 01:08:50', '2025-12-17 19:46:42', 'mR695gEm', '6735833'), - (933, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mR695gEm', '6740364'), - (933, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mR695gEm', '6743829'), - (933, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mR695gEm', '7030380'), - (933, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mR695gEm', '7033677'), - (933, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mR695gEm', '7035415'), - (933, 2477, 'not_attending', '2024-02-23 00:49:26', '2025-12-17 19:46:42', 'mR695gEm', '7035692'), - (933, 2480, 'maybe', '2024-02-24 08:29:33', '2025-12-17 19:46:43', 'mR695gEm', '7042160'), - (933, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mR695gEm', '7044715'), - (933, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mR695gEm', '7050318'), - (933, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mR695gEm', '7050319'), - (933, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mR695gEm', '7050322'), - (933, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mR695gEm', '7057804'), - (933, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'mR695gEm', '7059866'), - (933, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mR695gEm', '7072824'), - (933, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mR695gEm', '7074348'), - (933, 2510, 'attending', '2024-03-21 22:02:41', '2025-12-17 19:46:33', 'mR695gEm', '7074350'), - (933, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mR695gEm', '7074364'), - (933, 2526, 'attending', '2024-07-30 16:01:42', '2025-12-17 19:46:31', 'mR695gEm', '7074366'), - (933, 2532, 'attending', '2024-09-03 16:00:17', '2025-12-17 19:46:32', 'mR695gEm', '7074383'), - (933, 2537, 'attending', '2024-03-22 14:09:56', '2025-12-17 19:46:33', 'mR695gEm', '7085484'), - (933, 2538, 'attending', '2024-03-24 16:41:52', '2025-12-17 19:46:33', 'mR695gEm', '7085485'), - (933, 2539, 'attending', '2024-04-01 20:17:12', '2025-12-17 19:46:33', 'mR695gEm', '7085486'), - (933, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mR695gEm', '7089267'), - (933, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mR695gEm', '7098747'), - (933, 2553, 'attending', '2024-03-29 18:00:00', '2025-12-17 19:46:33', 'mR695gEm', '7113468'), - (933, 2554, 'attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mR695gEm', '7114856'), - (933, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mR695gEm', '7114951'), - (933, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mR695gEm', '7114955'), - (933, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mR695gEm', '7114956'), - (933, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mR695gEm', '7114957'), - (933, 2560, 'maybe', '2024-04-09 12:34:20', '2025-12-17 19:46:33', 'mR695gEm', '7130086'), - (933, 2564, 'attending', '2024-04-06 20:05:56', '2025-12-17 19:46:33', 'mR695gEm', '7134735'), - (933, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mR695gEm', '7153615'), - (933, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mR695gEm', '7159484'), - (933, 2572, 'attending', '2024-04-13 20:27:37', '2025-12-17 19:46:33', 'mR695gEm', '7159522'), - (933, 2573, 'maybe', '2024-04-15 16:36:32', '2025-12-17 19:46:34', 'mR695gEm', '7160612'), - (933, 2576, 'attending', '2024-04-26 14:34:02', '2025-12-17 19:46:34', 'mR695gEm', '7164538'), - (933, 2582, 'attending', '2024-04-12 21:56:24', '2025-12-17 19:46:34', 'mR695gEm', '7169765'), - (933, 2584, 'attending', '2024-04-21 17:50:52', '2025-12-17 19:46:34', 'mR695gEm', '7175057'), - (933, 2585, 'attending', '2024-04-24 00:15:52', '2025-12-17 19:46:34', 'mR695gEm', '7175828'), - (933, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mR695gEm', '7178446'), - (933, 2598, 'attending', '2024-04-22 01:03:09', '2025-12-17 19:46:34', 'mR695gEm', '7186731'), - (933, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mR695gEm', '7220467'), - (933, 2607, 'not_attending', '2024-05-01 14:49:16', '2025-12-17 19:46:35', 'mR695gEm', '7240136'), - (933, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mR695gEm', '7240354'), - (933, 2610, 'not_attending', '2024-05-02 00:06:50', '2025-12-17 19:46:35', 'mR695gEm', '7241797'), - (933, 2612, 'attending', '2024-05-08 17:04:21', '2025-12-17 19:46:35', 'mR695gEm', '7247643'), - (933, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mR695gEm', '7251633'), - (933, 2619, 'maybe', '2024-05-07 13:38:54', '2025-12-17 19:46:35', 'mR695gEm', '7252965'), - (933, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mR695gEm', '7263048'), - (933, 2626, 'attending', '2024-05-13 18:44:53', '2025-12-17 19:46:35', 'mR695gEm', '7264723'), - (933, 2627, 'not_attending', '2024-05-25 01:22:26', '2025-12-17 19:46:35', 'mR695gEm', '7264724'), - (933, 2628, 'attending', '2024-06-01 21:09:20', '2025-12-17 19:46:36', 'mR695gEm', '7264725'), - (933, 2629, 'not_attending', '2024-06-08 02:12:10', '2025-12-17 19:46:28', 'mR695gEm', '7264726'), - (933, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mR695gEm', '7302674'), - (933, 2678, 'attending', '2024-06-13 12:34:30', '2025-12-17 19:46:28', 'mR695gEm', '7319489'), - (933, 2679, 'attending', '2024-06-22 02:47:01', '2025-12-17 19:46:29', 'mR695gEm', '7319490'), - (933, 2685, 'attending', '2024-06-12 19:52:34', '2025-12-17 19:46:28', 'mR695gEm', '7322675'), - (933, 2688, 'attending', '2024-06-27 00:39:58', '2025-12-17 19:46:29', 'mR695gEm', '7324073'), - (933, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mR695gEm', '7324074'), - (933, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mR695gEm', '7324075'), - (933, 2691, 'attending', '2024-07-20 18:12:11', '2025-12-17 19:46:30', 'mR695gEm', '7324076'), - (933, 2692, 'attending', '2024-07-26 23:37:31', '2025-12-17 19:46:30', 'mR695gEm', '7324077'), - (933, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mR695gEm', '7324078'), - (933, 2694, 'not_attending', '2024-08-09 20:14:31', '2025-12-17 19:46:31', 'mR695gEm', '7324079'), - (933, 2697, 'attending', '2024-08-31 14:54:33', '2025-12-17 19:46:32', 'mR695gEm', '7324082'), - (933, 2699, 'attending', '2024-06-12 18:54:56', '2025-12-17 19:46:28', 'mR695gEm', '7324385'), - (933, 2701, 'attending', '2024-06-28 15:28:37', '2025-12-17 19:46:29', 'mR695gEm', '7324391'), - (933, 2703, 'maybe', '2024-06-13 12:34:14', '2025-12-17 19:46:28', 'mR695gEm', '7324873'), - (933, 2711, 'maybe', '2024-07-19 13:27:17', '2025-12-17 19:46:30', 'mR695gEm', '7326524'), - (933, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mR695gEm', '7331457'), - (933, 2723, 'maybe', '2024-06-21 20:39:21', '2025-12-17 19:46:29', 'mR695gEm', '7332389'), - (933, 2724, 'maybe', '2024-06-26 15:39:55', '2025-12-17 19:46:29', 'mR695gEm', '7332562'), - (933, 2737, 'maybe', '2024-07-02 18:28:14', '2025-12-17 19:46:29', 'mR695gEm', '7344070'), - (933, 2742, 'attending', '2024-07-02 17:02:54', '2025-12-17 19:46:29', 'mR695gEm', '7345167'), - (933, 2747, 'maybe', '2024-07-17 20:03:45', '2025-12-17 19:46:30', 'mR695gEm', '7353587'), - (933, 2755, 'maybe', '2024-07-09 15:58:18', '2025-12-17 19:46:29', 'mR695gEm', '7357808'), - (933, 2756, 'attending', '2024-07-10 01:53:33', '2025-12-17 19:46:29', 'mR695gEm', '7358329'), - (933, 2761, 'not_attending', '2024-07-17 13:42:54', '2025-12-17 19:46:30', 'mR695gEm', '7363412'), - (933, 2762, 'attending', '2024-07-14 15:31:49', '2025-12-17 19:46:30', 'mR695gEm', '7363413'), - (933, 2765, 'attending', '2024-07-16 20:56:24', '2025-12-17 19:46:30', 'mR695gEm', '7363604'), - (933, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mR695gEm', '7363643'), - (933, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mR695gEm', '7368606'), - (933, 2775, 'attending', '2024-07-25 15:40:58', '2025-12-17 19:46:30', 'mR695gEm', '7368642'), - (933, 2800, 'maybe', '2024-08-16 19:40:53', '2025-12-17 19:46:31', 'mR695gEm', '7397405'), - (933, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mR695gEm', '7397462'), - (933, 2821, 'attending', '2024-10-12 04:29:38', '2025-12-17 19:46:26', 'mR695gEm', '7424275'), - (933, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mR695gEm', '7424276'), - (933, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mR695gEm', '7432751'), - (933, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mR695gEm', '7432752'), - (933, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mR695gEm', '7432753'), - (933, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mR695gEm', '7432754'), - (933, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mR695gEm', '7432755'), - (933, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mR695gEm', '7432756'), - (933, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mR695gEm', '7432758'), - (933, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mR695gEm', '7432759'), - (933, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mR695gEm', '7433834'), - (933, 2857, 'maybe', '2024-10-24 18:57:59', '2025-12-17 19:46:26', 'mR695gEm', '7469387'), - (933, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mR695gEm', '7470197'), - (933, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mR695gEm', '7685613'), - (933, 2899, 'maybe', '2024-11-11 03:00:49', '2025-12-17 19:46:27', 'mR695gEm', '7685616'), - (933, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mR695gEm', '7688194'), - (933, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mR695gEm', '7688196'), - (933, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mR695gEm', '7688289'), - (933, 2908, 'not_attending', '2024-11-11 01:15:02', '2025-12-17 19:46:27', 'mR695gEm', '7689420'), - (933, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'mR695gEm', '7692763'), - (933, 2913, 'attending', '2024-11-16 19:01:34', '2025-12-17 19:46:27', 'mR695gEm', '7697552'), - (933, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mR695gEm', '7699878'), - (933, 2919, 'attending', '2024-11-22 18:50:56', '2025-12-17 19:46:27', 'mR695gEm', '7704043'), - (933, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mR695gEm', '7712467'), - (933, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mR695gEm', '7713585'), - (933, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mR695gEm', '7713586'), - (933, 2931, 'attending', '2024-12-07 20:13:09', '2025-12-17 19:46:21', 'mR695gEm', '7725490'), - (933, 2958, 'attending', '2024-12-18 21:23:29', '2025-12-17 19:46:21', 'mR695gEm', '7738518'), - (933, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mR695gEm', '7750636'), - (933, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mR695gEm', '7796540'), - (933, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mR695gEm', '7796541'), - (933, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mR695gEm', '7796542'), - (933, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mR695gEm', '7825913'), - (933, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mR695gEm', '7826209'), - (933, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mR695gEm', '7834742'), - (933, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mR695gEm', '7842108'), - (933, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mR695gEm', '7842902'), - (933, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mR695gEm', '7842903'), - (933, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mR695gEm', '7842904'), - (933, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mR695gEm', '7842905'), - (933, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'mR695gEm', '7842906'), - (933, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'mR695gEm', '7842909'), - (933, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mR695gEm', '7855719'), - (933, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mR695gEm', '7860683'), - (933, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mR695gEm', '7860684'), - (933, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mR695gEm', '7866095'), - (933, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mR695gEm', '7869170'), - (933, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mR695gEm', '7869188'), - (933, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'mR695gEm', '7869194'), - (933, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'mR695gEm', '7869195'), - (933, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mR695gEm', '7869201'), - (933, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mR695gEm', '7877465'), - (933, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'mR695gEm', '7878570'), - (933, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mR695gEm', '7888250'), - (933, 3068, 'not_attending', '2025-03-30 22:47:02', '2025-12-17 19:46:19', 'mR695gEm', '7894823'), - (933, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mR695gEm', '8349164'), - (933, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mR695gEm', '8349545'), - (933, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mR695gEm', '8353584'), - (934, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dlO2Qkl4', '4210314'), - (934, 901, 'not_attending', '2021-07-31 16:26:33', '2025-12-17 19:47:40', 'dlO2Qkl4', '4240317'), - (934, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'dlO2Qkl4', '4240318'), - (934, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'dlO2Qkl4', '4240320'), - (934, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'dlO2Qkl4', '4302093'), - (934, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dlO2Qkl4', '4304151'), - (934, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dlO2Qkl4', '4345519'), - (934, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dlO2Qkl4', '4356801'), - (934, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'dlO2Qkl4', '4358025'), - (934, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dlO2Qkl4', '4366186'), - (934, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dlO2Qkl4', '4366187'), - (934, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'dlO2Qkl4', '4402823'), - (934, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dlO2Qkl4', '4420735'), - (934, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dlO2Qkl4', '4420738'), - (934, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dlO2Qkl4', '4420739'), - (934, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dlO2Qkl4', '4420741'), - (934, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dlO2Qkl4', '4420744'), - (934, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dlO2Qkl4', '4420747'), - (934, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dlO2Qkl4', '4420748'), - (934, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dlO2Qkl4', '4420749'), - (934, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dlO2Qkl4', '4461883'), - (934, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlO2Qkl4', '4508342'), - (934, 1361, 'attending', '2022-05-02 21:34:07', '2025-12-17 19:47:28', 'dlO2Qkl4', '5260491'), - (934, 1369, 'attending', '2022-05-10 22:44:46', '2025-12-17 19:47:28', 'dlO2Qkl4', '5262809'), - (934, 1372, 'attending', '2022-05-04 20:57:59', '2025-12-17 19:47:28', 'dlO2Qkl4', '5264352'), - (934, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dlO2Qkl4', '5269930'), - (934, 1375, 'attending', '2022-05-05 22:53:02', '2025-12-17 19:47:28', 'dlO2Qkl4', '5269932'), - (934, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dlO2Qkl4', '5271448'), - (934, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dlO2Qkl4', '5271449'), - (934, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dlO2Qkl4', '5276469'), - (934, 1384, 'attending', '2022-05-06 00:54:29', '2025-12-17 19:47:28', 'dlO2Qkl4', '5277078'), - (934, 1386, 'attending', '2022-05-06 00:54:34', '2025-12-17 19:47:28', 'dlO2Qkl4', '5278159'), - (934, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dlO2Qkl4', '5363695'), - (934, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dlO2Qkl4', '5365960'), - (934, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dlO2Qkl4', '5368973'), - (934, 1422, 'attending', '2022-05-23 18:39:18', '2025-12-17 19:47:30', 'dlO2Qkl4', '5375603'), - (934, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dlO2Qkl4', '5378247'), - (934, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'dlO2Qkl4', '5389605'), - (934, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dlO2Qkl4', '5397265'), - (934, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dlO2Qkl4', '5403967'), - (934, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dlO2Qkl4', '5404786'), - (934, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dlO2Qkl4', '5405203'), - (934, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dlO2Qkl4', '5411699'), - (934, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dlO2Qkl4', '5412550'), - (934, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dlO2Qkl4', '5415046'), - (934, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dlO2Qkl4', '5422086'), - (934, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dlO2Qkl4', '5422406'), - (934, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dlO2Qkl4', '5424565'), - (934, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dlO2Qkl4', '5426882'), - (934, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dlO2Qkl4', '5427083'), - (934, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dlO2Qkl4', '5441125'), - (934, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dlO2Qkl4', '5441126'), - (934, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dlO2Qkl4', '5441128'), - (934, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dlO2Qkl4', '5446643'), - (934, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dlO2Qkl4', '5453325'), - (934, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dlO2Qkl4', '5454516'), - (934, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dlO2Qkl4', '5454605'), - (934, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dlO2Qkl4', '5455037'), - (934, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dlO2Qkl4', '5461278'), - (934, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dlO2Qkl4', '5469480'), - (934, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dlO2Qkl4', '5471073'), - (934, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dlO2Qkl4', '5474663'), - (934, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dlO2Qkl4', '5482022'), - (934, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dlO2Qkl4', '5482793'), - (934, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dlO2Qkl4', '5488912'), - (934, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dlO2Qkl4', '5492192'), - (934, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dlO2Qkl4', '5493139'), - (934, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dlO2Qkl4', '5493200'), - (934, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dlO2Qkl4', '5502188'), - (934, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dlO2Qkl4', '5512862'), - (934, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dlO2Qkl4', '5513985'), - (934, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dlO2Qkl4', '6045684'), - (935, 1415, 'not_attending', '2022-05-20 03:46:21', '2025-12-17 19:47:30', '41WP2Vbm', '5368973'), - (935, 1419, 'attending', '2022-06-08 07:03:20', '2025-12-17 19:47:30', '41WP2Vbm', '5373081'), - (935, 1423, 'attending', '2022-06-15 20:04:33', '2025-12-17 19:47:17', '41WP2Vbm', '5375727'), - (935, 1427, 'not_attending', '2022-05-25 18:10:54', '2025-12-17 19:47:30', '41WP2Vbm', '5376074'), - (935, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41WP2Vbm', '5378247'), - (935, 1431, 'attending', '2022-06-08 07:03:53', '2025-12-17 19:47:30', '41WP2Vbm', '5389605'), - (935, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41WP2Vbm', '5397265'), - (935, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WP2Vbm', '5403967'), - (935, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WP2Vbm', '5404786'), - (935, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WP2Vbm', '5405203'), - (935, 1478, 'not_attending', '2022-06-15 20:05:21', '2025-12-17 19:47:19', '41WP2Vbm', '5408794'), - (935, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WP2Vbm', '5411699'), - (935, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WP2Vbm', '5412550'), - (935, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WP2Vbm', '5415046'), - (935, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WP2Vbm', '5422086'), - (935, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WP2Vbm', '5422406'), - (935, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WP2Vbm', '5424565'), - (935, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WP2Vbm', '5426882'), - (935, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WP2Vbm', '5427083'), - (935, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '41WP2Vbm', '5441125'), - (935, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WP2Vbm', '5441126'), - (935, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WP2Vbm', '5441128'), - (935, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '41WP2Vbm', '5441131'), - (935, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '41WP2Vbm', '5441132'), - (935, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WP2Vbm', '5446643'), - (935, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WP2Vbm', '5453325'), - (935, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WP2Vbm', '5454516'), - (935, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WP2Vbm', '5454605'), - (935, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WP2Vbm', '5455037'), - (935, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WP2Vbm', '5461278'), - (935, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WP2Vbm', '5469480'), - (935, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WP2Vbm', '5471073'), - (935, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41WP2Vbm', '5474663'), - (935, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WP2Vbm', '5482022'), - (935, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WP2Vbm', '5482793'), - (935, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WP2Vbm', '5488912'), - (935, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WP2Vbm', '5492192'), - (935, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WP2Vbm', '5493139'), - (935, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WP2Vbm', '5493200'), - (935, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WP2Vbm', '5502188'), - (935, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41WP2Vbm', '5505059'), - (935, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41WP2Vbm', '5509055'), - (935, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WP2Vbm', '5512862'), - (935, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WP2Vbm', '5513985'), - (935, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '41WP2Vbm', '5519981'), - (935, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41WP2Vbm', '5522550'), - (935, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41WP2Vbm', '5534683'), - (935, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41WP2Vbm', '5546619'), - (935, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41WP2Vbm', '5555245'), - (935, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41WP2Vbm', '5557747'), - (935, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WP2Vbm', '6045684'), - (936, 1281, 'not_attending', '2022-04-09 22:15:36', '2025-12-17 19:47:27', 'R40XbQV4', '5190437'), - (936, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'R40XbQV4', '5195095'), - (936, 1318, 'maybe', '2022-04-14 06:01:16', '2025-12-17 19:47:27', 'R40XbQV4', '5238343'), - (936, 1321, 'not_attending', '2022-04-21 23:37:25', '2025-12-17 19:47:27', 'R40XbQV4', '5238355'), - (936, 1322, 'attending', '2022-04-11 16:40:17', '2025-12-17 19:47:27', 'R40XbQV4', '5238356'), - (936, 1323, 'not_attending', '2022-04-27 00:15:44', '2025-12-17 19:47:27', 'R40XbQV4', '5238357'), - (936, 1325, 'not_attending', '2022-04-11 16:46:22', '2025-12-17 19:47:28', 'R40XbQV4', '5238361'), - (936, 1326, 'not_attending', '2022-04-11 16:46:44', '2025-12-17 19:47:28', 'R40XbQV4', '5238362'), - (936, 1327, 'not_attending', '2022-04-14 05:58:36', '2025-12-17 19:47:27', 'R40XbQV4', '5238445'), - (936, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'R40XbQV4', '5247467'), - (936, 1352, 'not_attending', '2022-05-05 22:56:16', '2025-12-17 19:47:28', 'R40XbQV4', '5251618'), - (936, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'R40XbQV4', '5260800'), - (936, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'R40XbQV4', '5269930'), - (936, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'R40XbQV4', '5271448'), - (936, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'R40XbQV4', '5271449'), - (936, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'R40XbQV4', '5276469'), - (936, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'R40XbQV4', '5277078'), - (936, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'R40XbQV4', '5278159'), - (936, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'R40XbQV4', '5363695'), - (936, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'R40XbQV4', '5365960'), - (936, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'R40XbQV4', '5368973'), - (936, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'R40XbQV4', '5378247'), - (936, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'R40XbQV4', '5389605'), - (936, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'R40XbQV4', '5397265'), - (936, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'R40XbQV4', '5403967'), - (936, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'R40XbQV4', '5404786'), - (936, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'R40XbQV4', '5405203'), - (936, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'R40XbQV4', '5411699'), - (936, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'R40XbQV4', '5412550'), - (936, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'R40XbQV4', '5415046'), - (936, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'R40XbQV4', '5422086'), - (936, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'R40XbQV4', '5422406'), - (936, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'R40XbQV4', '5424565'), - (936, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'R40XbQV4', '5426882'), - (936, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'R40XbQV4', '5427083'), - (936, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'R40XbQV4', '5441125'), - (936, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'R40XbQV4', '5441126'), - (936, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'R40XbQV4', '5441128'), - (936, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'R40XbQV4', '5446643'), - (936, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'R40XbQV4', '5453325'), - (936, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'R40XbQV4', '5454516'), - (936, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'R40XbQV4', '5454605'), - (936, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'R40XbQV4', '5455037'), - (936, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'R40XbQV4', '5461278'), - (936, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'R40XbQV4', '5469480'), - (936, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'R40XbQV4', '5471073'), - (936, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'R40XbQV4', '5474663'), - (936, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'R40XbQV4', '5482022'), - (936, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'R40XbQV4', '5482793'), - (936, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'R40XbQV4', '5488912'), - (936, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'R40XbQV4', '5492192'), - (936, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'R40XbQV4', '5493139'), - (936, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'R40XbQV4', '5493200'), - (936, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'R40XbQV4', '5502188'), - (936, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'R40XbQV4', '5512862'), - (936, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'R40XbQV4', '5513985'), - (936, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'R40XbQV4', '6045684'), - (937, 1315, 'not_attending', '2022-04-21 20:25:37', '2025-12-17 19:47:27', 'd2jMg0Xd', '5237522'), - (937, 1336, 'attending', '2022-04-19 22:23:37', '2025-12-17 19:47:27', 'd2jMg0Xd', '5244915'), - (937, 1350, 'attending', '2022-04-21 20:24:54', '2025-12-17 19:47:27', 'd2jMg0Xd', '5249763'), - (937, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd2jMg0Xd', '5260800'), - (937, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd2jMg0Xd', '5269930'), - (937, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd2jMg0Xd', '5271448'), - (937, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'd2jMg0Xd', '5271449'), - (937, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd2jMg0Xd', '5276469'), - (937, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd2jMg0Xd', '5278159'), - (937, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2jMg0Xd', '6045684'), - (938, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '403vyByA', '7074364'), - (938, 2661, 'attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', '403vyByA', '7302674'), - (938, 2678, 'attending', '2024-06-15 19:41:21', '2025-12-17 19:46:28', '403vyByA', '7319489'), - (938, 2679, 'attending', '2024-06-20 01:22:42', '2025-12-17 19:46:29', '403vyByA', '7319490'), - (938, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '403vyByA', '7324073'), - (938, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '403vyByA', '7324074'), - (938, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '403vyByA', '7324075'), - (938, 2691, 'attending', '2024-07-20 22:19:12', '2025-12-17 19:46:30', '403vyByA', '7324076'), - (938, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '403vyByA', '7324078'), - (938, 2695, 'attending', '2024-08-16 05:07:21', '2025-12-17 19:46:31', '403vyByA', '7324080'), - (938, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '403vyByA', '7324082'), - (938, 2706, 'attending', '2024-06-19 17:17:16', '2025-12-17 19:46:28', '403vyByA', '7324947'), - (938, 2714, 'attending', '2024-06-15 19:41:09', '2025-12-17 19:46:28', '403vyByA', '7326981'), - (938, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '403vyByA', '7331457'), - (938, 2723, 'attending', '2024-06-21 21:46:10', '2025-12-17 19:46:29', '403vyByA', '7332389'), - (938, 2724, 'attending', '2024-06-26 19:39:57', '2025-12-17 19:46:29', '403vyByA', '7332562'), - (938, 2731, 'attending', '2024-06-22 23:08:59', '2025-12-17 19:46:29', '403vyByA', '7335303'), - (938, 2747, 'maybe', '2024-07-17 20:01:27', '2025-12-17 19:46:30', '403vyByA', '7353587'), - (938, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '403vyByA', '7356752'), - (938, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '403vyByA', '7363643'), - (938, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '403vyByA', '7368606'), - (938, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '403vyByA', '7397462'), - (938, 2821, 'attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '403vyByA', '7424275'), - (938, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '403vyByA', '7424276'), - (938, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '403vyByA', '7432751'), - (938, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '403vyByA', '7432752'), - (938, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '403vyByA', '7432753'), - (938, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '403vyByA', '7432754'), - (938, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '403vyByA', '7432755'), - (938, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '403vyByA', '7432756'), - (938, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '403vyByA', '7432758'), - (938, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '403vyByA', '7432759'), - (938, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '403vyByA', '7433834'), - (938, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '403vyByA', '7470197'), - (938, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '403vyByA', '7685613'), - (938, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '403vyByA', '7688194'), - (938, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '403vyByA', '7688196'), - (938, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '403vyByA', '7688289'), - (938, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '403vyByA', '7692763'), - (938, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '403vyByA', '7697552'), - (938, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '403vyByA', '7699878'), - (938, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '403vyByA', '7704043'), - (938, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '403vyByA', '7712467'), - (938, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '403vyByA', '7713585'), - (938, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '403vyByA', '7713586'), - (938, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '403vyByA', '7738518'), - (938, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '403vyByA', '7750636'), - (938, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '403vyByA', '7796540'), - (938, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '403vyByA', '7796541'), - (938, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '403vyByA', '7796542'), - (939, 926, 'maybe', '2021-08-18 22:38:29', '2025-12-17 19:47:42', 'dODObNWm', '4297211'), - (939, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dODObNWm', '4356801'), - (939, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'dODObNWm', '4366186'), - (939, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'dODObNWm', '4366187'), - (939, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dODObNWm', '4420735'), - (939, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dODObNWm', '4420738'), - (939, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dODObNWm', '4420739'), - (939, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dODObNWm', '4420741'), - (939, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dODObNWm', '4420744'), - (939, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dODObNWm', '4420747'), - (939, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dODObNWm', '4420748'), - (939, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dODObNWm', '4420749'), - (939, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODObNWm', '4461883'), - (939, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODObNWm', '4508342'), - (939, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODObNWm', '4568602'), - (939, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dODObNWm', '4572153'), - (939, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dODObNWm', '4585962'), - (939, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dODObNWm', '4596356'), - (939, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dODObNWm', '4598860'), - (939, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dODObNWm', '4598861'), - (939, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dODObNWm', '4602797'), - (939, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dODObNWm', '4637896'), - (939, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dODObNWm', '4642994'), - (939, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dODObNWm', '4642995'), - (939, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dODObNWm', '4642996'), - (939, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dODObNWm', '4642997'), - (939, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dODObNWm', '4645687'), - (939, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dODObNWm', '4645698'), - (939, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dODObNWm', '4645704'), - (939, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dODObNWm', '4645705'), - (939, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dODObNWm', '4668385'), - (939, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODObNWm', '6045684'), - (940, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'An2RlrXA', '5900202'), - (940, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'An2RlrXA', '5900203'), - (940, 1917, 'not_attending', '2023-03-15 21:03:13', '2025-12-17 19:47:10', 'An2RlrXA', '5910528'), - (940, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'An2RlrXA', '5962317'), - (940, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'An2RlrXA', '5962318'), - (940, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'An2RlrXA', '5965933'), - (940, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'An2RlrXA', '5998939'), - (940, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'An2RlrXA', '6028191'), - (940, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'An2RlrXA', '6040066'), - (940, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'An2RlrXA', '6042717'), - (940, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'An2RlrXA', '6044838'), - (940, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'An2RlrXA', '6044839'), - (940, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'An2RlrXA', '6045684'), - (940, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'An2RlrXA', '6048955'), - (940, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'An2RlrXA', '6050104'), - (940, 2002, 'attending', '2023-04-28 12:18:29', '2025-12-17 19:47:01', 'An2RlrXA', '6052605'), - (940, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'An2RlrXA', '6053195'), - (940, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'An2RlrXA', '6053198'), - (940, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'An2RlrXA', '6056085'), - (940, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'An2RlrXA', '6056916'), - (940, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'An2RlrXA', '6059290'), - (940, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'An2RlrXA', '6060328'), - (940, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'An2RlrXA', '6061037'), - (940, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'An2RlrXA', '6061039'), - (940, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'An2RlrXA', '6067245'), - (940, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'An2RlrXA', '6068094'), - (940, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'An2RlrXA', '6068252'), - (940, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'An2RlrXA', '6068253'), - (940, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'An2RlrXA', '6068254'), - (940, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'An2RlrXA', '6068280'), - (940, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'An2RlrXA', '6069093'), - (940, 2038, 'not_attending', '2023-04-28 22:30:12', '2025-12-17 19:47:01', 'An2RlrXA', '6071944'), - (940, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'An2RlrXA', '6072528'), - (940, 2042, 'attending', '2023-04-27 14:22:11', '2025-12-17 19:47:01', 'An2RlrXA', '6072941'), - (940, 2045, 'not_attending', '2023-04-30 19:25:05', '2025-12-17 19:47:01', 'An2RlrXA', '6075556'), - (940, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'An2RlrXA', '6079840'), - (940, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'An2RlrXA', '6083398'), - (940, 2053, 'maybe', '2023-05-08 23:25:44', '2025-12-17 19:47:02', 'An2RlrXA', '6092644'), - (940, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'An2RlrXA', '6093504'), - (940, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'An2RlrXA', '6097414'), - (940, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'An2RlrXA', '6097442'), - (940, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'An2RlrXA', '6097684'), - (940, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'An2RlrXA', '6098762'), - (940, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'An2RlrXA', '6101361'), - (940, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'An2RlrXA', '6101362'), - (940, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'An2RlrXA', '6103752'), - (940, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'An2RlrXA', '6107314'), - (940, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'An2RlrXA', '6120034'), - (940, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'An2RlrXA', '6136733'), - (940, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'An2RlrXA', '6137989'), - (940, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'An2RlrXA', '6150864'), - (940, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'An2RlrXA', '6155491'), - (940, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'An2RlrXA', '6164417'), - (940, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'An2RlrXA', '6166388'), - (940, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'An2RlrXA', '6176439'), - (940, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'An2RlrXA', '6182410'), - (940, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'An2RlrXA', '6185812'), - (940, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'An2RlrXA', '6187651'), - (940, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'An2RlrXA', '6187963'), - (940, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'An2RlrXA', '6187964'), - (940, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'An2RlrXA', '6187966'), - (940, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'An2RlrXA', '6187967'), - (940, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'An2RlrXA', '6187969'), - (940, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'An2RlrXA', '6334878'), - (940, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'An2RlrXA', '6337236'), - (940, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'An2RlrXA', '6337970'), - (940, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'An2RlrXA', '6338308'), - (940, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'An2RlrXA', '6340845'), - (940, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'An2RlrXA', '6341710'), - (940, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'An2RlrXA', '6342044'), - (940, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'An2RlrXA', '6342298'), - (940, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'An2RlrXA', '6343294'), - (940, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'An2RlrXA', '6347034'), - (940, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'An2RlrXA', '6347056'), - (940, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'An2RlrXA', '6353830'), - (940, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'An2RlrXA', '6353831'), - (940, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'An2RlrXA', '6357867'), - (940, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'An2RlrXA', '6358652'), - (940, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'An2RlrXA', '6361709'), - (940, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'An2RlrXA', '6361710'), - (940, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'An2RlrXA', '6361711'), - (940, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'An2RlrXA', '6361712'), - (940, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'An2RlrXA', '6361713'), - (940, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'An2RlrXA', '6382573'), - (940, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'An2RlrXA', '6388604'), - (940, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'An2RlrXA', '6394629'), - (940, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'An2RlrXA', '6394631'), - (940, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'An2RlrXA', '6440863'), - (940, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'An2RlrXA', '6445440'), - (940, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'An2RlrXA', '6453951'), - (940, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'An2RlrXA', '6461696'), - (940, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'An2RlrXA', '6462129'), - (940, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'An2RlrXA', '6463218'), - (940, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'An2RlrXA', '6472181'), - (940, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'An2RlrXA', '6482693'), - (940, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'An2RlrXA', '6484200'), - (940, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'An2RlrXA', '6484680'), - (940, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'An2RlrXA', '6507741'), - (940, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'An2RlrXA', '6514659'), - (940, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'An2RlrXA', '6514660'), - (940, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'An2RlrXA', '6519103'), - (940, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'An2RlrXA', '6535681'), - (940, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'An2RlrXA', '6584747'), - (940, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'An2RlrXA', '6587097'), - (940, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'An2RlrXA', '6609022'), - (940, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'An2RlrXA', '6632757'), - (940, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'An2RlrXA', '6644187'), - (940, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'An2RlrXA', '6648951'), - (940, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'An2RlrXA', '6648952'), - (940, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'An2RlrXA', '6655401'), - (940, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'An2RlrXA', '6661585'), - (940, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'An2RlrXA', '6661588'), - (940, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'An2RlrXA', '6661589'), - (940, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'An2RlrXA', '6699906'), - (940, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'An2RlrXA', '6701109'), - (940, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'An2RlrXA', '6705219'), - (940, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'An2RlrXA', '6710153'), - (940, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'An2RlrXA', '6711552'), - (940, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'An2RlrXA', '6711553'), - (940, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'An2RlrXA', '6722688'), - (940, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'An2RlrXA', '6730620'), - (940, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'An2RlrXA', '6730642'), - (941, 1104, 'attending', '2021-11-14 04:23:08', '2025-12-17 19:47:36', 'd9nJKGqm', '4618310'), - (941, 1114, 'attending', '2021-11-13 19:47:20', '2025-12-17 19:47:36', 'd9nJKGqm', '4637896'), - (941, 1121, 'attending', '2021-11-17 21:33:37', '2025-12-17 19:47:37', 'd9nJKGqm', '4644022'), - (941, 1123, 'attending', '2021-12-07 16:37:12', '2025-12-17 19:47:38', 'd9nJKGqm', '4644024'), - (941, 1124, 'attending', '2021-12-07 16:37:05', '2025-12-17 19:47:38', 'd9nJKGqm', '4644025'), - (941, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd9nJKGqm', '4645687'), - (941, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd9nJKGqm', '4645698'), - (941, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd9nJKGqm', '4645704'), - (941, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd9nJKGqm', '4645705'), - (941, 1134, 'attending', '2021-11-26 16:41:25', '2025-12-17 19:47:37', 'd9nJKGqm', '4668385'), - (941, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'd9nJKGqm', '4694407'), - (941, 1173, 'attending', '2022-01-04 22:20:34', '2025-12-17 19:47:31', 'd9nJKGqm', '4736495'), - (941, 1174, 'attending', '2022-01-15 18:27:45', '2025-12-17 19:47:31', 'd9nJKGqm', '4736496'), - (941, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd9nJKGqm', '4736497'), - (941, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd9nJKGqm', '4736499'), - (941, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'd9nJKGqm', '4736500'), - (941, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd9nJKGqm', '4736503'), - (941, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd9nJKGqm', '4736504'), - (941, 1183, 'attending', '2022-01-11 21:25:01', '2025-12-17 19:47:31', 'd9nJKGqm', '4742171'), - (941, 1185, 'attending', '2022-01-14 23:15:13', '2025-12-17 19:47:31', 'd9nJKGqm', '4746789'), - (941, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'd9nJKGqm', '4753929'), - (941, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd9nJKGqm', '5038850'), - (941, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd9nJKGqm', '5045826'), - (941, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd9nJKGqm', '5132533'), - (941, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd9nJKGqm', '5186582'), - (941, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd9nJKGqm', '5186583'), - (941, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd9nJKGqm', '5186585'), - (941, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9nJKGqm', '5190437'), - (941, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9nJKGqm', '5215989'), - (941, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd9nJKGqm', '5630968'), - (941, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd9nJKGqm', '5642818'), - (941, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd9nJKGqm', '5670445'), - (941, 1788, 'attending', '2022-11-20 00:08:55', '2025-12-17 19:47:16', 'd9nJKGqm', '5727236'), - (941, 1798, 'attending', '2022-11-24 05:06:01', '2025-12-17 19:47:16', 'd9nJKGqm', '5763458'), - (941, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd9nJKGqm', '5774172'), - (941, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'd9nJKGqm', '5818247'), - (941, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd9nJKGqm', '5819471'), - (941, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd9nJKGqm', '5827739'), - (941, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd9nJKGqm', '5844306'), - (941, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd9nJKGqm', '5850159'), - (941, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd9nJKGqm', '5858999'), - (941, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd9nJKGqm', '5871984'), - (941, 1859, 'not_attending', '2023-01-18 13:14:10', '2025-12-17 19:47:05', 'd9nJKGqm', '5876234'), - (941, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd9nJKGqm', '5876354'), - (941, 1866, 'attending', '2023-01-23 02:16:35', '2025-12-17 19:47:05', 'd9nJKGqm', '5880939'), - (941, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'd9nJKGqm', '5880940'), - (941, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd9nJKGqm', '5880942'), - (941, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd9nJKGqm', '5880943'), - (941, 1871, 'attending', '2023-01-18 13:14:32', '2025-12-17 19:47:05', 'd9nJKGqm', '5883502'), - (941, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd9nJKGqm', '5887890'), - (941, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd9nJKGqm', '5888598'), - (941, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd9nJKGqm', '5893260'), - (941, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'd9nJKGqm', '5899826'), - (941, 1888, 'attending', '2023-02-18 01:08:06', '2025-12-17 19:47:07', 'd9nJKGqm', '5900197'), - (941, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'd9nJKGqm', '5900199'), - (941, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd9nJKGqm', '5900200'), - (941, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd9nJKGqm', '5900202'), - (941, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd9nJKGqm', '5900203'), - (941, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'd9nJKGqm', '5901108'), - (941, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd9nJKGqm', '5901126'), - (941, 1898, 'attending', '2023-02-01 18:27:06', '2025-12-17 19:47:06', 'd9nJKGqm', '5901263'), - (941, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'd9nJKGqm', '5909655'), - (941, 1912, 'attending', '2023-02-16 20:23:59', '2025-12-17 19:47:07', 'd9nJKGqm', '5909808'), - (941, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'd9nJKGqm', '5910522'), - (941, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'd9nJKGqm', '5910526'), - (941, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'd9nJKGqm', '5910528'), - (941, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd9nJKGqm', '5916219'), - (941, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd9nJKGqm', '5936234'), - (941, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd9nJKGqm', '5958351'), - (941, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd9nJKGqm', '5959751'), - (941, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd9nJKGqm', '5959755'), - (941, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd9nJKGqm', '5960055'), - (941, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd9nJKGqm', '5961684'), - (941, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd9nJKGqm', '5962132'), - (941, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd9nJKGqm', '5962133'), - (941, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd9nJKGqm', '5962134'), - (941, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd9nJKGqm', '5962317'), - (941, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd9nJKGqm', '5962318'), - (941, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd9nJKGqm', '5965933'), - (941, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd9nJKGqm', '5967014'), - (941, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd9nJKGqm', '5972815'), - (941, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd9nJKGqm', '5974016'), - (941, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'd9nJKGqm', '5975052'), - (941, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'd9nJKGqm', '5975054'), - (941, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd9nJKGqm', '5981515'), - (941, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd9nJKGqm', '5993516'), - (941, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd9nJKGqm', '5998939'), - (941, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd9nJKGqm', '6028191'), - (941, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd9nJKGqm', '6040066'), - (941, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd9nJKGqm', '6042717'), - (941, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd9nJKGqm', '6044838'), - (941, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd9nJKGqm', '6044839'), - (941, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9nJKGqm', '6045684'), - (941, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd9nJKGqm', '6050104'), - (941, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd9nJKGqm', '6053195'), - (941, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd9nJKGqm', '6053198'), - (941, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd9nJKGqm', '6056085'), - (941, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd9nJKGqm', '6056916'), - (941, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd9nJKGqm', '6059290'), - (941, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd9nJKGqm', '6060328'), - (941, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd9nJKGqm', '6061037'), - (941, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd9nJKGqm', '6061039'), - (941, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd9nJKGqm', '6067245'), - (941, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd9nJKGqm', '6068094'), - (941, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd9nJKGqm', '6068252'), - (941, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd9nJKGqm', '6068253'), - (941, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd9nJKGqm', '6068254'), - (941, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd9nJKGqm', '6068280'), - (941, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd9nJKGqm', '6069093'), - (941, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'd9nJKGqm', '6072528'), - (941, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'd9nJKGqm', '6075556'), - (941, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd9nJKGqm', '6079840'), - (941, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd9nJKGqm', '6083398'), - (941, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'd9nJKGqm', '6093504'), - (941, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd9nJKGqm', '6097414'), - (941, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd9nJKGqm', '6097442'), - (941, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd9nJKGqm', '6097684'), - (941, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd9nJKGqm', '6098762'), - (941, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'd9nJKGqm', '6101361'), - (941, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd9nJKGqm', '6101362'), - (941, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd9nJKGqm', '6107314'), - (941, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd9nJKGqm', '6120034'), - (941, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'd9nJKGqm', '6136733'), - (941, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'd9nJKGqm', '6137989'), - (941, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'd9nJKGqm', '6150864'), - (941, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'd9nJKGqm', '6155491'), - (941, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd9nJKGqm', '6164417'), - (941, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd9nJKGqm', '6166388'), - (941, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd9nJKGqm', '6176439'), - (941, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'd9nJKGqm', '6182410'), - (941, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd9nJKGqm', '6185812'), - (941, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd9nJKGqm', '6187651'), - (941, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd9nJKGqm', '6187963'), - (941, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd9nJKGqm', '6187964'), - (941, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd9nJKGqm', '6187966'), - (941, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd9nJKGqm', '6187967'), - (941, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd9nJKGqm', '6187969'), - (941, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd9nJKGqm', '6334878'), - (941, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd9nJKGqm', '6337236'), - (941, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd9nJKGqm', '6337970'), - (941, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd9nJKGqm', '6338308'), - (941, 2157, 'not_attending', '2023-07-12 21:55:48', '2025-12-17 19:46:52', 'd9nJKGqm', '6338342'), - (941, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd9nJKGqm', '6341710'), - (941, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd9nJKGqm', '6342044'), - (941, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd9nJKGqm', '6342298'), - (941, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'd9nJKGqm', '6343294'), - (941, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd9nJKGqm', '6347034'), - (941, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd9nJKGqm', '6347056'), - (941, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd9nJKGqm', '6353830'), - (941, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd9nJKGqm', '6353831'), - (941, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd9nJKGqm', '6357867'), - (941, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd9nJKGqm', '6358652'), - (941, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'd9nJKGqm', '6358668'), - (941, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'd9nJKGqm', '6358669'), - (941, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd9nJKGqm', '6361709'), - (941, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd9nJKGqm', '6361710'), - (941, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd9nJKGqm', '6361711'), - (941, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd9nJKGqm', '6361712'), - (941, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd9nJKGqm', '6361713'), - (941, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd9nJKGqm', '6382573'), - (941, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd9nJKGqm', '6388604'), - (941, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd9nJKGqm', '6394629'), - (941, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd9nJKGqm', '6394631'), - (941, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd9nJKGqm', '6440863'), - (941, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd9nJKGqm', '6445440'), - (941, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd9nJKGqm', '6453951'), - (941, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd9nJKGqm', '6461696'), - (941, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd9nJKGqm', '6462129'), - (941, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd9nJKGqm', '6463218'), - (941, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd9nJKGqm', '6472181'), - (941, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd9nJKGqm', '6482693'), - (941, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd9nJKGqm', '6484200'), - (941, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'd9nJKGqm', '6484680'), - (941, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd9nJKGqm', '6507741'), - (941, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd9nJKGqm', '6514659'), - (941, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd9nJKGqm', '6514660'), - (941, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd9nJKGqm', '6519103'), - (941, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd9nJKGqm', '6535681'), - (941, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd9nJKGqm', '6584747'), - (941, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd9nJKGqm', '6587097'), - (941, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd9nJKGqm', '6609022'), - (941, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd9nJKGqm', '6632757'), - (941, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd9nJKGqm', '6644187'), - (941, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd9nJKGqm', '6648951'), - (941, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd9nJKGqm', '6648952'), - (941, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd9nJKGqm', '6655401'), - (941, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd9nJKGqm', '6661585'), - (941, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd9nJKGqm', '6661588'), - (941, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd9nJKGqm', '6661589'), - (941, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd9nJKGqm', '6699906'), - (941, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd9nJKGqm', '6701109'), - (941, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'd9nJKGqm', '6704561'), - (941, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd9nJKGqm', '6705219'), - (941, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'd9nJKGqm', '6708410'), - (941, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd9nJKGqm', '6710153'), - (941, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd9nJKGqm', '6711552'), - (941, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd9nJKGqm', '6711553'), - (942, 850, 'maybe', '2021-08-25 20:41:04', '2025-12-17 19:47:42', 'dVBkpPrd', '4015722'), - (942, 857, 'maybe', '2021-11-23 16:37:25', '2025-12-17 19:47:37', 'dVBkpPrd', '4015731'), - (942, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dVBkpPrd', '4210314'), - (942, 902, 'attending', '2021-08-07 04:59:57', '2025-12-17 19:47:41', 'dVBkpPrd', '4240318'), - (942, 903, 'attending', '2021-08-09 23:46:39', '2025-12-17 19:47:42', 'dVBkpPrd', '4240320'), - (942, 926, 'attending', '2021-08-17 20:43:21', '2025-12-17 19:47:42', 'dVBkpPrd', '4297211'), - (942, 935, 'attending', '2021-08-11 21:52:20', '2025-12-17 19:47:41', 'dVBkpPrd', '4304151'), - (942, 947, 'attending', '2021-08-04 07:54:23', '2025-12-17 19:47:41', 'dVBkpPrd', '4315713'), - (942, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dVBkpPrd', '4345519'), - (942, 963, 'attending', '2021-08-15 03:10:52', '2025-12-17 19:47:42', 'dVBkpPrd', '4353159'), - (942, 964, 'attending', '2021-08-15 03:19:46', '2025-12-17 19:47:42', 'dVBkpPrd', '4353160'), - (942, 971, 'attending', '2021-09-08 20:35:38', '2025-12-17 19:47:43', 'dVBkpPrd', '4356801'), - (942, 972, 'maybe', '2021-08-20 21:06:02', '2025-12-17 19:47:42', 'dVBkpPrd', '4358025'), - (942, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dVBkpPrd', '4366186'), - (942, 974, 'attending', '2021-08-23 22:01:25', '2025-12-17 19:47:42', 'dVBkpPrd', '4366187'), - (942, 985, 'attending', '2021-08-21 02:32:48', '2025-12-17 19:47:42', 'dVBkpPrd', '4391748'), - (942, 987, 'attending', '2021-09-01 22:47:35', '2025-12-17 19:47:43', 'dVBkpPrd', '4402634'), - (942, 988, 'attending', '2021-08-24 02:50:47', '2025-12-17 19:47:42', 'dVBkpPrd', '4402823'), - (942, 989, 'maybe', '2021-09-09 02:06:38', '2025-12-17 19:47:43', 'dVBkpPrd', '4414282'), - (942, 990, 'attending', '2021-08-29 04:06:36', '2025-12-17 19:47:43', 'dVBkpPrd', '4420735'), - (942, 991, 'attending', '2021-08-29 23:02:23', '2025-12-17 19:47:43', 'dVBkpPrd', '4420738'), - (942, 992, 'attending', '2021-09-07 23:26:07', '2025-12-17 19:47:33', 'dVBkpPrd', '4420739'), - (942, 993, 'attending', '2021-09-14 04:53:43', '2025-12-17 19:47:34', 'dVBkpPrd', '4420741'), - (942, 994, 'attending', '2021-10-02 02:32:09', '2025-12-17 19:47:34', 'dVBkpPrd', '4420742'), - (942, 995, 'attending', '2021-09-26 20:14:52', '2025-12-17 19:47:34', 'dVBkpPrd', '4420744'), - (942, 996, 'attending', '2021-09-26 20:15:01', '2025-12-17 19:47:35', 'dVBkpPrd', '4420747'), - (942, 997, 'attending', '2021-09-28 07:20:36', '2025-12-17 19:47:35', 'dVBkpPrd', '4420748'), - (942, 998, 'attending', '2021-09-28 07:20:51', '2025-12-17 19:47:36', 'dVBkpPrd', '4420749'), - (942, 1001, 'maybe', '2021-08-30 21:56:25', '2025-12-17 19:47:43', 'dVBkpPrd', '4424687'), - (942, 1015, 'maybe', '2021-09-17 23:00:57', '2025-12-17 19:47:43', 'dVBkpPrd', '4440800'), - (942, 1016, 'maybe', '2021-09-06 21:01:24', '2025-12-17 19:47:43', 'dVBkpPrd', '4441271'), - (942, 1017, 'attending', '2021-09-03 20:33:46', '2025-12-17 19:47:43', 'dVBkpPrd', '4441822'), - (942, 1019, 'attending', '2021-09-06 21:04:03', '2025-12-17 19:47:43', 'dVBkpPrd', '4450515'), - (942, 1020, 'attending', '2021-09-06 21:01:33', '2025-12-17 19:47:43', 'dVBkpPrd', '4451787'), - (942, 1021, 'attending', '2021-09-06 21:02:49', '2025-12-17 19:47:34', 'dVBkpPrd', '4451803'), - (942, 1022, 'attending', '2021-09-14 00:51:12', '2025-12-17 19:47:43', 'dVBkpPrd', '4458628'), - (942, 1023, 'maybe', '2021-09-12 03:56:31', '2025-12-17 19:47:43', 'dVBkpPrd', '4461883'), - (942, 1025, 'maybe', '2021-09-14 16:29:35', '2025-12-17 19:47:43', 'dVBkpPrd', '4462052'), - (942, 1027, 'attending', '2021-09-14 00:46:28', '2025-12-17 19:47:34', 'dVBkpPrd', '4472982'), - (942, 1028, 'attending', '2021-09-20 09:52:02', '2025-12-17 19:47:34', 'dVBkpPrd', '4472983'), - (942, 1029, 'attending', '2021-09-14 05:02:25', '2025-12-17 19:47:43', 'dVBkpPrd', '4473063'), - (942, 1036, 'attending', '2021-09-20 09:50:34', '2025-12-17 19:47:34', 'dVBkpPrd', '4493166'), - (942, 1037, 'attending', '2021-09-18 21:37:21', '2025-12-17 19:47:34', 'dVBkpPrd', '4493233'), - (942, 1040, 'attending', '2021-12-11 06:07:35', '2025-12-17 19:47:38', 'dVBkpPrd', '4496605'), - (942, 1049, 'attending', '2022-01-20 22:55:42', '2025-12-17 19:47:32', 'dVBkpPrd', '4496614'), - (942, 1050, 'attending', '2022-01-22 20:43:40', '2025-12-17 19:47:32', 'dVBkpPrd', '4496615'), - (942, 1051, 'attending', '2022-02-01 20:25:16', '2025-12-17 19:47:32', 'dVBkpPrd', '4496616'), - (942, 1052, 'attending', '2022-01-10 04:13:38', '2025-12-17 19:47:31', 'dVBkpPrd', '4496617'), - (942, 1053, 'attending', '2022-02-15 19:57:28', '2025-12-17 19:47:32', 'dVBkpPrd', '4496618'), - (942, 1054, 'not_attending', '2022-03-19 03:20:23', '2025-12-17 19:47:25', 'dVBkpPrd', '4496619'), - (942, 1055, 'attending', '2021-12-13 23:03:27', '2025-12-17 19:47:31', 'dVBkpPrd', '4496621'), - (942, 1056, 'attending', '2022-01-04 02:59:02', '2025-12-17 19:47:31', 'dVBkpPrd', '4496622'), - (942, 1059, 'attending', '2022-03-10 19:24:39', '2025-12-17 19:47:33', 'dVBkpPrd', '4496626'), - (942, 1060, 'attending', '2022-03-19 03:20:48', '2025-12-17 19:47:25', 'dVBkpPrd', '4496627'), - (942, 1061, 'attending', '2022-02-07 05:23:32', '2025-12-17 19:47:32', 'dVBkpPrd', '4496628'), - (942, 1062, 'attending', '2022-03-04 22:34:14', '2025-12-17 19:47:33', 'dVBkpPrd', '4496629'), - (942, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dVBkpPrd', '4508342'), - (942, 1068, 'not_attending', '2021-09-28 03:59:08', '2025-12-17 19:47:34', 'dVBkpPrd', '4511471'), - (942, 1070, 'maybe', '2021-09-27 10:00:23', '2025-12-17 19:47:34', 'dVBkpPrd', '4512562'), - (942, 1071, 'attending', '2021-10-02 06:17:16', '2025-12-17 19:47:34', 'dVBkpPrd', '4516078'), - (942, 1072, 'attending', '2021-10-03 20:01:33', '2025-12-17 19:47:34', 'dVBkpPrd', '4516287'), - (942, 1073, 'attending', '2021-09-28 03:58:57', '2025-12-17 19:47:34', 'dVBkpPrd', '4518993'), - (942, 1074, 'maybe', '2021-09-29 03:30:49', '2025-12-17 19:47:34', 'dVBkpPrd', '4528953'), - (942, 1076, 'attending', '2021-10-03 20:01:42', '2025-12-17 19:47:34', 'dVBkpPrd', '4539147'), - (942, 1077, 'attending', '2021-10-12 19:44:22', '2025-12-17 19:47:34', 'dVBkpPrd', '4540903'), - (942, 1078, 'attending', '2021-10-05 03:15:38', '2025-12-17 19:47:34', 'dVBkpPrd', '4541281'), - (942, 1079, 'attending', '2021-10-19 18:41:58', '2025-12-17 19:47:35', 'dVBkpPrd', '4563823'), - (942, 1082, 'attending', '2021-10-11 23:03:17', '2025-12-17 19:47:35', 'dVBkpPrd', '4566762'), - (942, 1083, 'maybe', '2021-10-11 23:29:11', '2025-12-17 19:47:34', 'dVBkpPrd', '4566768'), - (942, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dVBkpPrd', '4568602'), - (942, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVBkpPrd', '4572153'), - (942, 1088, 'attending', '2021-10-16 05:15:55', '2025-12-17 19:47:35', 'dVBkpPrd', '4574382'), - (942, 1092, 'attending', '2021-10-19 21:36:48', '2025-12-17 19:47:35', 'dVBkpPrd', '4582837'), - (942, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dVBkpPrd', '4585962'), - (942, 1095, 'attending', '2021-10-26 21:28:24', '2025-12-17 19:47:35', 'dVBkpPrd', '4596356'), - (942, 1096, 'attending', '2021-10-27 01:16:33', '2025-12-17 19:47:36', 'dVBkpPrd', '4596453'), - (942, 1097, 'attending', '2021-10-28 08:59:29', '2025-12-17 19:47:36', 'dVBkpPrd', '4598860'), - (942, 1098, 'attending', '2021-11-03 05:40:54', '2025-12-17 19:47:36', 'dVBkpPrd', '4598861'), - (942, 1099, 'attending', '2021-11-03 05:40:46', '2025-12-17 19:47:36', 'dVBkpPrd', '4602797'), - (942, 1100, 'maybe', '2021-11-08 10:02:21', '2025-12-17 19:47:36', 'dVBkpPrd', '4607305'), - (942, 1103, 'maybe', '2021-11-07 04:23:48', '2025-12-17 19:47:36', 'dVBkpPrd', '4616350'), - (942, 1106, 'attending', '2021-11-09 03:41:41', '2025-12-17 19:47:36', 'dVBkpPrd', '4620452'), - (942, 1108, 'attending', '2021-11-17 21:44:59', '2025-12-17 19:47:37', 'dVBkpPrd', '4632276'), - (942, 1114, 'attending', '2021-11-12 05:23:00', '2025-12-17 19:47:36', 'dVBkpPrd', '4637896'), - (942, 1116, 'attending', '2021-11-13 02:31:07', '2025-12-17 19:47:37', 'dVBkpPrd', '4642994'), - (942, 1117, 'attending', '2021-11-13 02:31:22', '2025-12-17 19:47:37', 'dVBkpPrd', '4642995'), - (942, 1118, 'not_attending', '2021-12-16 00:47:46', '2025-12-17 19:47:38', 'dVBkpPrd', '4642996'), - (942, 1119, 'attending', '2021-11-13 02:31:35', '2025-12-17 19:47:31', 'dVBkpPrd', '4642997'), - (942, 1120, 'not_attending', '2021-11-15 23:14:14', '2025-12-17 19:47:37', 'dVBkpPrd', '4644021'), - (942, 1121, 'maybe', '2021-11-19 05:51:41', '2025-12-17 19:47:37', 'dVBkpPrd', '4644022'), - (942, 1122, 'maybe', '2021-12-02 22:58:23', '2025-12-17 19:47:37', 'dVBkpPrd', '4644023'), - (942, 1124, 'attending', '2021-12-13 23:00:14', '2025-12-17 19:47:38', 'dVBkpPrd', '4644025'), - (942, 1125, 'not_attending', '2021-12-21 23:55:22', '2025-12-17 19:47:31', 'dVBkpPrd', '4644027'), - (942, 1126, 'attending', '2021-12-06 07:38:27', '2025-12-17 19:47:38', 'dVBkpPrd', '4645687'), - (942, 1127, 'attending', '2021-12-04 00:45:09', '2025-12-17 19:47:38', 'dVBkpPrd', '4645698'), - (942, 1128, 'attending', '2021-11-14 22:36:20', '2025-12-17 19:47:37', 'dVBkpPrd', '4645704'), - (942, 1129, 'attending', '2021-11-19 05:52:49', '2025-12-17 19:47:37', 'dVBkpPrd', '4645705'), - (942, 1130, 'attending', '2021-11-26 07:27:07', '2025-12-17 19:47:37', 'dVBkpPrd', '4658824'), - (942, 1131, 'attending', '2021-12-06 21:05:55', '2025-12-17 19:47:31', 'dVBkpPrd', '4658825'), - (942, 1132, 'attending', '2021-11-21 15:10:27', '2025-12-17 19:47:37', 'dVBkpPrd', '4660657'), - (942, 1134, 'attending', '2021-11-24 11:00:05', '2025-12-17 19:47:37', 'dVBkpPrd', '4668385'), - (942, 1135, 'attending', '2021-11-25 07:17:37', '2025-12-17 19:47:37', 'dVBkpPrd', '4670469'), - (942, 1138, 'attending', '2021-11-29 21:40:52', '2025-12-17 19:47:37', 'dVBkpPrd', '4675407'), - (942, 1139, 'maybe', '2021-11-29 04:04:44', '2025-12-17 19:47:37', 'dVBkpPrd', '4675604'), - (942, 1142, 'attending', '2021-12-01 23:31:43', '2025-12-17 19:47:37', 'dVBkpPrd', '4681923'), - (942, 1143, 'attending', '2021-12-01 21:49:11', '2025-12-17 19:47:37', 'dVBkpPrd', '4683667'), - (942, 1145, 'maybe', '2021-12-10 00:46:31', '2025-12-17 19:47:38', 'dVBkpPrd', '4691157'), - (942, 1146, 'not_attending', '2021-12-10 23:46:53', '2025-12-17 19:47:38', 'dVBkpPrd', '4692841'), - (942, 1147, 'maybe', '2021-12-08 00:57:10', '2025-12-17 19:47:38', 'dVBkpPrd', '4692842'), - (942, 1148, 'attending', '2021-12-13 23:03:41', '2025-12-17 19:47:31', 'dVBkpPrd', '4692843'), - (942, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dVBkpPrd', '4694407'), - (942, 1151, 'attending', '2021-12-23 03:55:43', '2025-12-17 19:47:31', 'dVBkpPrd', '4708704'), - (942, 1152, 'attending', '2022-01-06 22:46:51', '2025-12-17 19:47:31', 'dVBkpPrd', '4708705'), - (942, 1153, 'attending', '2022-01-11 03:58:58', '2025-12-17 19:47:32', 'dVBkpPrd', '4708707'), - (942, 1154, 'attending', '2022-01-25 09:08:35', '2025-12-17 19:47:32', 'dVBkpPrd', '4708708'), - (942, 1155, 'maybe', '2021-12-20 22:42:32', '2025-12-17 19:47:31', 'dVBkpPrd', '4715119'), - (942, 1156, 'not_attending', '2021-12-20 22:43:11', '2025-12-17 19:47:31', 'dVBkpPrd', '4715207'), - (942, 1158, 'maybe', '2021-12-19 01:24:46', '2025-12-17 19:47:31', 'dVBkpPrd', '4715311'), - (942, 1163, 'maybe', '2021-12-27 23:01:07', '2025-12-17 19:47:31', 'dVBkpPrd', '4724206'), - (942, 1164, 'attending', '2021-12-28 03:07:15', '2025-12-17 19:47:31', 'dVBkpPrd', '4724208'), - (942, 1165, 'attending', '2021-12-28 03:07:19', '2025-12-17 19:47:31', 'dVBkpPrd', '4724210'), - (942, 1166, 'not_attending', '2022-01-11 00:55:40', '2025-12-17 19:47:31', 'dVBkpPrd', '4725109'), - (942, 1170, 'attending', '2022-01-05 05:23:09', '2025-12-17 19:47:31', 'dVBkpPrd', '4731045'), - (942, 1172, 'attending', '2022-01-19 00:59:31', '2025-12-17 19:47:32', 'dVBkpPrd', '4735348'), - (942, 1173, 'attending', '2022-01-04 02:58:55', '2025-12-17 19:47:31', 'dVBkpPrd', '4736495'), - (942, 1174, 'attending', '2022-01-05 05:23:33', '2025-12-17 19:47:31', 'dVBkpPrd', '4736496'), - (942, 1175, 'attending', '2022-01-08 22:18:57', '2025-12-17 19:47:32', 'dVBkpPrd', '4736497'), - (942, 1176, 'attending', '2022-01-05 05:23:56', '2025-12-17 19:47:32', 'dVBkpPrd', '4736498'), - (942, 1177, 'attending', '2022-02-05 08:21:47', '2025-12-17 19:47:32', 'dVBkpPrd', '4736499'), - (942, 1178, 'attending', '2022-01-16 19:24:32', '2025-12-17 19:47:32', 'dVBkpPrd', '4736500'), - (942, 1179, 'attending', '2022-02-13 06:12:33', '2025-12-17 19:47:32', 'dVBkpPrd', '4736501'), - (942, 1180, 'attending', '2022-02-27 00:28:33', '2025-12-17 19:47:33', 'dVBkpPrd', '4736502'), - (942, 1181, 'attending', '2022-02-13 06:12:40', '2025-12-17 19:47:33', 'dVBkpPrd', '4736503'), - (942, 1182, 'attending', '2022-02-13 06:12:47', '2025-12-17 19:47:33', 'dVBkpPrd', '4736504'), - (942, 1183, 'maybe', '2022-01-08 02:47:57', '2025-12-17 19:47:31', 'dVBkpPrd', '4742171'), - (942, 1184, 'maybe', '2022-01-06 22:46:45', '2025-12-17 19:47:31', 'dVBkpPrd', '4742350'), - (942, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVBkpPrd', '4746789'), - (942, 1188, 'attending', '2022-01-11 03:58:44', '2025-12-17 19:47:31', 'dVBkpPrd', '4753929'), - (942, 1190, 'maybe', '2022-01-13 23:17:32', '2025-12-17 19:47:31', 'dVBkpPrd', '4757377'), - (942, 1200, 'not_attending', '2022-01-18 23:55:45', '2025-12-17 19:47:32', 'dVBkpPrd', '4766830'), - (942, 1210, 'attending', '2022-01-29 01:39:38', '2025-12-17 19:47:32', 'dVBkpPrd', '4776927'), - (942, 1214, 'maybe', '2022-02-17 20:24:28', '2025-12-17 19:47:32', 'dVBkpPrd', '4780761'), - (942, 1217, 'attending', '2022-01-25 08:45:48', '2025-12-17 19:47:32', 'dVBkpPrd', '4781139'), - (942, 1219, 'attending', '2022-01-27 07:43:50', '2025-12-17 19:47:32', 'dVBkpPrd', '4788466'), - (942, 1222, 'maybe', '2022-02-13 21:18:55', '2025-12-17 19:47:32', 'dVBkpPrd', '5015628'), - (942, 1224, 'maybe', '2022-02-03 22:49:40', '2025-12-17 19:47:32', 'dVBkpPrd', '5016682'), - (942, 1228, 'maybe', '2022-02-07 05:23:27', '2025-12-17 19:47:32', 'dVBkpPrd', '5028238'), - (942, 1229, 'maybe', '2022-02-13 06:12:27', '2025-12-17 19:47:32', 'dVBkpPrd', '5034963'), - (942, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dVBkpPrd', '5038850'), - (942, 1234, 'attending', '2022-02-11 09:54:53', '2025-12-17 19:47:32', 'dVBkpPrd', '5042197'), - (942, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dVBkpPrd', '5045826'), - (942, 1237, 'attending', '2022-02-18 19:14:31', '2025-12-17 19:47:32', 'dVBkpPrd', '5050641'), - (942, 1238, 'attending', '2022-02-24 00:49:12', '2025-12-17 19:47:32', 'dVBkpPrd', '5052236'), - (942, 1239, 'attending', '2022-03-03 00:10:03', '2025-12-17 19:47:33', 'dVBkpPrd', '5052238'), - (942, 1240, 'not_attending', '2022-03-16 22:44:38', '2025-12-17 19:47:33', 'dVBkpPrd', '5052239'), - (942, 1241, 'attending', '2022-03-15 21:34:41', '2025-12-17 19:47:25', 'dVBkpPrd', '5052240'), - (942, 1242, 'attending', '2022-03-22 21:36:57', '2025-12-17 19:47:25', 'dVBkpPrd', '5052241'), - (942, 1246, 'not_attending', '2022-03-03 23:21:42', '2025-12-17 19:47:33', 'dVBkpPrd', '5064727'), - (942, 1248, 'maybe', '2022-02-24 00:12:18', '2025-12-17 19:47:33', 'dVBkpPrd', '5065064'), - (942, 1249, 'maybe', '2022-03-05 20:18:35', '2025-12-17 19:47:33', 'dVBkpPrd', '5068530'), - (942, 1253, 'maybe', '2022-03-05 23:02:45', '2025-12-17 19:47:33', 'dVBkpPrd', '5129122'), - (942, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVBkpPrd', '5132533'), - (942, 1261, 'maybe', '2022-03-05 23:01:29', '2025-12-17 19:47:33', 'dVBkpPrd', '5154274'), - (942, 1262, 'maybe', '2022-03-05 23:04:23', '2025-12-17 19:47:33', 'dVBkpPrd', '5157773'), - (942, 1264, 'maybe', '2022-03-11 22:05:35', '2025-12-17 19:47:25', 'dVBkpPrd', '5160281'), - (942, 1266, 'attending', '2022-03-14 21:49:54', '2025-12-17 19:47:33', 'dVBkpPrd', '5166407'), - (942, 1267, 'maybe', '2022-03-13 23:41:28', '2025-12-17 19:47:25', 'dVBkpPrd', '5169578'), - (942, 1268, 'not_attending', '2022-03-15 21:32:51', '2025-12-17 19:47:33', 'dVBkpPrd', '5176296'), - (942, 1270, 'not_attending', '2022-03-16 21:36:19', '2025-12-17 19:47:25', 'dVBkpPrd', '5181277'), - (942, 1272, 'not_attending', '2022-03-19 03:20:15', '2025-12-17 19:47:25', 'dVBkpPrd', '5186582'), - (942, 1273, 'attending', '2022-03-15 21:33:29', '2025-12-17 19:47:25', 'dVBkpPrd', '5186583'), - (942, 1274, 'attending', '2022-03-15 21:33:41', '2025-12-17 19:47:26', 'dVBkpPrd', '5186585'), - (942, 1275, 'attending', '2022-03-29 04:49:37', '2025-12-17 19:47:26', 'dVBkpPrd', '5186587'), - (942, 1276, 'attending', '2022-03-21 22:08:38', '2025-12-17 19:47:25', 'dVBkpPrd', '5186820'), - (942, 1278, 'maybe', '2022-03-17 16:32:50', '2025-12-17 19:47:33', 'dVBkpPrd', '5186920'), - (942, 1279, 'not_attending', '2022-03-19 03:20:35', '2025-12-17 19:47:25', 'dVBkpPrd', '5187212'), - (942, 1281, 'attending', '2022-03-29 04:49:48', '2025-12-17 19:47:27', 'dVBkpPrd', '5190437'), - (942, 1284, 'maybe', '2022-04-03 07:02:52', '2025-12-17 19:47:27', 'dVBkpPrd', '5195095'), - (942, 1288, 'maybe', '2022-03-27 20:24:13', '2025-12-17 19:47:25', 'dVBkpPrd', '5199460'), - (942, 1293, 'attending', '2022-03-27 20:23:48', '2025-12-17 19:47:27', 'dVBkpPrd', '5214641'), - (942, 1294, 'attending', '2022-03-29 19:51:17', '2025-12-17 19:47:26', 'dVBkpPrd', '5214686'), - (942, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVBkpPrd', '5215989'), - (942, 1304, 'maybe', '2022-04-06 21:08:32', '2025-12-17 19:47:26', 'dVBkpPrd', '5223468'), - (942, 1305, 'attending', '2022-04-09 07:38:54', '2025-12-17 19:47:27', 'dVBkpPrd', '5223673'), - (942, 1306, 'maybe', '2022-04-05 03:38:16', '2025-12-17 19:47:26', 'dVBkpPrd', '5223682'), - (942, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVBkpPrd', '5223686'), - (942, 1308, 'maybe', '2022-04-13 17:04:59', '2025-12-17 19:47:27', 'dVBkpPrd', '5226703'), - (942, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVBkpPrd', '5227432'), - (942, 1313, 'attending', '2022-04-10 20:55:26', '2025-12-17 19:47:27', 'dVBkpPrd', '5231461'), - (942, 1315, 'maybe', '2022-04-22 21:59:42', '2025-12-17 19:47:27', 'dVBkpPrd', '5237522'), - (942, 1319, 'maybe', '2022-04-11 15:33:27', '2025-12-17 19:47:27', 'dVBkpPrd', '5238353'), - (942, 1321, 'maybe', '2022-04-11 15:34:31', '2025-12-17 19:47:27', 'dVBkpPrd', '5238355'), - (942, 1325, 'attending', '2022-04-11 15:15:29', '2025-12-17 19:47:28', 'dVBkpPrd', '5238361'), - (942, 1326, 'attending', '2022-04-11 15:32:41', '2025-12-17 19:47:28', 'dVBkpPrd', '5238362'), - (942, 1327, 'attending', '2022-04-11 15:15:06', '2025-12-17 19:47:27', 'dVBkpPrd', '5238445'), - (942, 1328, 'maybe', '2022-04-13 07:21:31', '2025-12-17 19:47:27', 'dVBkpPrd', '5238759'), - (942, 1330, 'maybe', '2022-04-18 22:00:33', '2025-12-17 19:47:27', 'dVBkpPrd', '5242155'), - (942, 1331, 'maybe', '2022-04-20 05:49:35', '2025-12-17 19:47:27', 'dVBkpPrd', '5242156'), - (942, 1336, 'maybe', '2022-04-16 03:57:56', '2025-12-17 19:47:27', 'dVBkpPrd', '5244915'), - (942, 1337, 'not_attending', '2022-04-19 18:11:12', '2025-12-17 19:47:27', 'dVBkpPrd', '5245036'), - (942, 1340, 'maybe', '2022-04-25 16:42:09', '2025-12-17 19:47:27', 'dVBkpPrd', '5245754'), - (942, 1344, 'attending', '2022-04-28 19:43:33', '2025-12-17 19:47:28', 'dVBkpPrd', '5247465'), - (942, 1345, 'attending', '2022-04-21 21:51:33', '2025-12-17 19:47:27', 'dVBkpPrd', '5247466'), - (942, 1346, 'attending', '2022-04-17 22:13:13', '2025-12-17 19:47:27', 'dVBkpPrd', '5247467'), - (942, 1354, 'not_attending', '2022-04-23 08:16:50', '2025-12-17 19:47:27', 'dVBkpPrd', '5252569'), - (942, 1359, 'not_attending', '2022-05-04 11:32:04', '2025-12-17 19:47:28', 'dVBkpPrd', '5258360'), - (942, 1362, 'attending', '2022-04-26 07:59:26', '2025-12-17 19:47:28', 'dVBkpPrd', '5260800'), - (942, 1365, 'maybe', '2022-04-27 18:32:12', '2025-12-17 19:47:28', 'dVBkpPrd', '5261600'), - (942, 1368, 'maybe', '2022-04-27 18:32:53', '2025-12-17 19:47:28', 'dVBkpPrd', '5262783'), - (942, 1371, 'maybe', '2022-04-27 18:28:52', '2025-12-17 19:47:27', 'dVBkpPrd', '5263784'), - (942, 1372, 'not_attending', '2022-05-04 21:13:25', '2025-12-17 19:47:28', 'dVBkpPrd', '5264352'), - (942, 1374, 'attending', '2022-05-01 17:47:21', '2025-12-17 19:47:28', 'dVBkpPrd', '5269930'), - (942, 1375, 'not_attending', '2022-05-02 18:01:19', '2025-12-17 19:47:28', 'dVBkpPrd', '5269932'), - (942, 1378, 'attending', '2022-05-04 11:32:30', '2025-12-17 19:47:28', 'dVBkpPrd', '5271448'), - (942, 1379, 'attending', '2022-05-04 11:32:35', '2025-12-17 19:47:29', 'dVBkpPrd', '5271449'), - (942, 1380, 'not_attending', '2022-05-25 05:41:23', '2025-12-17 19:47:30', 'dVBkpPrd', '5271450'), - (942, 1383, 'attending', '2022-05-13 17:08:21', '2025-12-17 19:47:28', 'dVBkpPrd', '5276469'), - (942, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVBkpPrd', '5278159'), - (942, 1390, 'not_attending', '2022-05-10 02:15:45', '2025-12-17 19:47:28', 'dVBkpPrd', '5279509'), - (942, 1394, 'not_attending', '2022-05-26 20:18:59', '2025-12-17 19:47:30', 'dVBkpPrd', '5280667'), - (942, 1397, 'attending', '2022-05-18 19:03:03', '2025-12-17 19:47:29', 'dVBkpPrd', '5281104'), - (942, 1403, 'maybe', '2022-05-20 20:51:05', '2025-12-17 19:47:29', 'dVBkpPrd', '5288052'), - (942, 1407, 'not_attending', '2022-06-04 21:46:28', '2025-12-17 19:47:30', 'dVBkpPrd', '5363695'), - (942, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVBkpPrd', '5365960'), - (942, 1410, 'attending', '2022-05-17 01:59:56', '2025-12-17 19:47:29', 'dVBkpPrd', '5367530'), - (942, 1411, 'attending', '2022-05-17 02:00:15', '2025-12-17 19:47:29', 'dVBkpPrd', '5367531'), - (942, 1412, 'not_attending', '2022-05-19 19:16:38', '2025-12-17 19:47:29', 'dVBkpPrd', '5367532'), - (942, 1413, 'not_attending', '2022-05-20 21:21:21', '2025-12-17 19:47:29', 'dVBkpPrd', '5367533'), - (942, 1415, 'attending', '2022-05-18 22:27:04', '2025-12-17 19:47:30', 'dVBkpPrd', '5368973'), - (942, 1420, 'attending', '2022-05-27 20:38:04', '2025-12-17 19:47:30', 'dVBkpPrd', '5374882'), - (942, 1421, 'maybe', '2022-05-29 17:26:29', '2025-12-17 19:47:30', 'dVBkpPrd', '5374885'), - (942, 1427, 'not_attending', '2022-05-25 20:33:26', '2025-12-17 19:47:30', 'dVBkpPrd', '5376074'), - (942, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVBkpPrd', '5378247'), - (942, 1429, 'maybe', '2022-05-29 17:23:47', '2025-12-17 19:47:30', 'dVBkpPrd', '5388761'), - (942, 1431, 'not_attending', '2022-06-09 22:23:34', '2025-12-17 19:47:31', 'dVBkpPrd', '5389605'), - (942, 1435, 'attending', '2022-06-02 20:56:32', '2025-12-17 19:47:30', 'dVBkpPrd', '5394015'), - (942, 1442, 'not_attending', '2022-06-13 00:14:20', '2025-12-17 19:47:17', 'dVBkpPrd', '5397265'), - (942, 1443, 'not_attending', '2022-06-04 21:47:12', '2025-12-17 19:47:30', 'dVBkpPrd', '5397613'), - (942, 1444, 'not_attending', '2022-06-09 22:23:37', '2025-12-17 19:47:30', 'dVBkpPrd', '5397614'), - (942, 1451, 'maybe', '2022-06-12 04:05:42', '2025-12-17 19:47:17', 'dVBkpPrd', '5403967'), - (942, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVBkpPrd', '5404786'), - (942, 1462, 'not_attending', '2022-06-13 00:13:03', '2025-12-17 19:47:17', 'dVBkpPrd', '5405203'), - (942, 1478, 'maybe', '2022-06-23 21:03:14', '2025-12-17 19:47:19', 'dVBkpPrd', '5408794'), - (942, 1480, 'not_attending', '2022-06-23 21:04:13', '2025-12-17 19:47:19', 'dVBkpPrd', '5411699'), - (942, 1482, 'not_attending', '2022-06-21 21:57:01', '2025-12-17 19:47:19', 'dVBkpPrd', '5412550'), - (942, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dVBkpPrd', '5415046'), - (942, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVBkpPrd', '5422086'), - (942, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dVBkpPrd', '5422406'), - (942, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVBkpPrd', '5424565'), - (942, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVBkpPrd', '5426882'), - (942, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dVBkpPrd', '5427083'), - (942, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dVBkpPrd', '5441125'), - (942, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dVBkpPrd', '5441126'), - (942, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVBkpPrd', '5441128'), - (942, 1516, 'not_attending', '2022-08-16 22:13:03', '2025-12-17 19:47:23', 'dVBkpPrd', '5441129'), - (942, 1517, 'not_attending', '2022-08-16 22:15:00', '2025-12-17 19:47:23', 'dVBkpPrd', '5441130'), - (942, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVBkpPrd', '5441131'), - (942, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVBkpPrd', '5441132'), - (942, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVBkpPrd', '5446643'), - (942, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVBkpPrd', '5453325'), - (942, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVBkpPrd', '5454516'), - (942, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVBkpPrd', '5454605'), - (942, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVBkpPrd', '5455037'), - (942, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVBkpPrd', '5461278'), - (942, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVBkpPrd', '5469480'), - (942, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVBkpPrd', '5471073'), - (942, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVBkpPrd', '5474663'), - (942, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVBkpPrd', '5482022'), - (942, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVBkpPrd', '5482793'), - (942, 1580, 'attending', '2022-08-07 20:02:34', '2025-12-17 19:47:22', 'dVBkpPrd', '5488912'), - (942, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVBkpPrd', '5492192'), - (942, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVBkpPrd', '5493139'), - (942, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVBkpPrd', '5493200'), - (942, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVBkpPrd', '5502188'), - (942, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVBkpPrd', '5505059'), - (942, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVBkpPrd', '5509055'), - (942, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVBkpPrd', '5512862'), - (942, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVBkpPrd', '5513985'), - (942, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'dVBkpPrd', '5519981'), - (942, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVBkpPrd', '5522550'), - (942, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVBkpPrd', '5534683'), - (942, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dVBkpPrd', '5537735'), - (942, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVBkpPrd', '5540859'), - (942, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVBkpPrd', '5546619'), - (942, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVBkpPrd', '5555245'), - (942, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVBkpPrd', '5557747'), - (942, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVBkpPrd', '5560255'), - (942, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVBkpPrd', '5562906'), - (942, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVBkpPrd', '5600604'), - (942, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVBkpPrd', '5605544'), - (942, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'dVBkpPrd', '5606737'), - (942, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVBkpPrd', '5630960'), - (942, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVBkpPrd', '5630961'), - (942, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVBkpPrd', '5630962'), - (942, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVBkpPrd', '5630966'), - (942, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVBkpPrd', '5630967'), - (942, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVBkpPrd', '5630968'), - (942, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVBkpPrd', '5635406'), - (942, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVBkpPrd', '5638765'), - (942, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVBkpPrd', '5640097'), - (942, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVBkpPrd', '5640843'), - (942, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVBkpPrd', '5641521'), - (942, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVBkpPrd', '5642818'), - (942, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVBkpPrd', '5652395'), - (942, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVBkpPrd', '5670445'), - (942, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVBkpPrd', '5671637'), - (942, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVBkpPrd', '5672329'), - (942, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVBkpPrd', '5674057'), - (942, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVBkpPrd', '5674060'), - (942, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVBkpPrd', '5677461'), - (942, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVBkpPrd', '5698046'), - (942, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVBkpPrd', '5699760'), - (942, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVBkpPrd', '5741601'), - (942, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVBkpPrd', '5763458'), - (942, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVBkpPrd', '5774172'), - (942, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'dVBkpPrd', '5818247'), - (942, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVBkpPrd', '5819471'), - (942, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVBkpPrd', '5827739'), - (942, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVBkpPrd', '5844306'), - (942, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVBkpPrd', '5850159'), - (942, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVBkpPrd', '5858999'), - (942, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVBkpPrd', '5871984'), - (942, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVBkpPrd', '5876354'), - (942, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dVBkpPrd', '5880939'), - (942, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVBkpPrd', '5887890'), - (942, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVBkpPrd', '5888598'), - (942, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVBkpPrd', '5893260'), - (942, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBkpPrd', '6045684'), - (943, 853, 'attending', '2021-08-11 17:28:24', '2025-12-17 19:47:41', '4v8oWW5m', '4015725'), - (943, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', '4v8oWW5m', '4210314'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (943, 902, 'attending', '2021-08-06 12:20:16', '2025-12-17 19:47:41', '4v8oWW5m', '4240318'), - (943, 903, 'attending', '2021-08-13 21:25:56', '2025-12-17 19:47:42', '4v8oWW5m', '4240320'), - (943, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4v8oWW5m', '4304151'), - (943, 947, 'attending', '2021-08-04 23:39:16', '2025-12-17 19:47:41', '4v8oWW5m', '4315713'), - (943, 948, 'attending', '2021-08-09 10:32:29', '2025-12-17 19:47:41', '4v8oWW5m', '4315714'), - (943, 952, 'attending', '2021-08-05 19:59:41', '2025-12-17 19:47:41', '4v8oWW5m', '4318286'), - (943, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4v8oWW5m', '4356801'), - (943, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '4v8oWW5m', '4358025'), - (943, 973, 'attending', '2021-08-19 23:01:09', '2025-12-17 19:47:42', '4v8oWW5m', '4366186'), - (943, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '4v8oWW5m', '4366187'), - (943, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4v8oWW5m', '4402823'), - (943, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4v8oWW5m', '4420735'), - (943, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4v8oWW5m', '4420738'), - (943, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4v8oWW5m', '4420739'), - (943, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4v8oWW5m', '4420741'), - (943, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4v8oWW5m', '4420744'), - (943, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4v8oWW5m', '4420747'), - (943, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4v8oWW5m', '4420748'), - (943, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4v8oWW5m', '4420749'), - (943, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4v8oWW5m', '4461883'), - (943, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4v8oWW5m', '4508342'), - (943, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4v8oWW5m', '4568602'), - (943, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4v8oWW5m', '6045684'), - (944, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AeBNK1W4', '7113468'), - (944, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AeBNK1W4', '7114856'), - (944, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'AeBNK1W4', '7114951'), - (944, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'AeBNK1W4', '7114956'), - (944, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AeBNK1W4', '7114957'), - (944, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AeBNK1W4', '7153615'), - (944, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AeBNK1W4', '7159484'), - (944, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AeBNK1W4', '7178446'), - (944, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AeBNK1W4', '7220467'), - (944, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AeBNK1W4', '7240354'), - (944, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AeBNK1W4', '7251633'), - (944, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'AeBNK1W4', '7265589'), - (945, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd9LbGPg4', '5880942'), - (945, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd9LbGPg4', '5880943'), - (945, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd9LbGPg4', '5900200'), - (945, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd9LbGPg4', '5900202'), - (945, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd9LbGPg4', '5900203'), - (945, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', 'd9LbGPg4', '5910522'), - (945, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'd9LbGPg4', '5910526'), - (945, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'd9LbGPg4', '5910528'), - (945, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd9LbGPg4', '5916219'), - (945, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd9LbGPg4', '5936234'), - (945, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'd9LbGPg4', '5936691'), - (945, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd9LbGPg4', '5958351'), - (945, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd9LbGPg4', '5959751'), - (945, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd9LbGPg4', '5959755'), - (945, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd9LbGPg4', '5960055'), - (945, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd9LbGPg4', '5961684'), - (945, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd9LbGPg4', '5962132'), - (945, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd9LbGPg4', '5962133'), - (945, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd9LbGPg4', '5962134'), - (945, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd9LbGPg4', '5962317'), - (945, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd9LbGPg4', '5962318'), - (945, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd9LbGPg4', '5965933'), - (945, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd9LbGPg4', '5967014'), - (945, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd9LbGPg4', '5972815'), - (945, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd9LbGPg4', '5974016'), - (945, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd9LbGPg4', '5981515'), - (945, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd9LbGPg4', '5993516'), - (945, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd9LbGPg4', '5998939'), - (945, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd9LbGPg4', '6028191'), - (945, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd9LbGPg4', '6040066'), - (945, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd9LbGPg4', '6042717'), - (945, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9LbGPg4', '6045684'), - (946, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6obYezA', '5269930'), - (946, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6obYezA', '5271448'), - (946, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'm6obYezA', '5271449'), - (946, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'm6obYezA', '5276469'), - (946, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6obYezA', '5278159'), - (946, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'm6obYezA', '5363695'), - (946, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'm6obYezA', '5365960'), - (946, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'm6obYezA', '5368973'), - (946, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'm6obYezA', '5378247'), - (946, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'm6obYezA', '5389605'), - (946, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'm6obYezA', '5397265'), - (946, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'm6obYezA', '5403967'), - (946, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'm6obYezA', '5404786'), - (946, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'm6obYezA', '5405203'), - (946, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'm6obYezA', '5411699'), - (946, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'm6obYezA', '5412550'), - (946, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6obYezA', '5415046'), - (946, 1487, 'maybe', '2022-06-27 23:52:10', '2025-12-17 19:47:19', 'm6obYezA', '5419006'), - (946, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6obYezA', '5422086'), - (946, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6obYezA', '5422406'), - (946, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6obYezA', '5424565'), - (946, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6obYezA', '5426882'), - (946, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'm6obYezA', '5427083'), - (946, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'm6obYezA', '5441125'), - (946, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6obYezA', '5441126'), - (946, 1515, 'attending', '2022-08-03 03:57:34', '2025-12-17 19:47:21', 'm6obYezA', '5441128'), - (946, 1516, 'attending', '2022-08-18 22:44:50', '2025-12-17 19:47:23', 'm6obYezA', '5441129'), - (946, 1517, 'maybe', '2022-08-27 23:04:27', '2025-12-17 19:47:23', 'm6obYezA', '5441130'), - (946, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6obYezA', '5441131'), - (946, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6obYezA', '5441132'), - (946, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6obYezA', '5446643'), - (946, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6obYezA', '5453325'), - (946, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6obYezA', '5454516'), - (946, 1544, 'attending', '2022-09-14 05:04:22', '2025-12-17 19:47:11', 'm6obYezA', '5454517'), - (946, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6obYezA', '5454605'), - (946, 1549, 'attending', '2022-07-22 07:55:59', '2025-12-17 19:47:20', 'm6obYezA', '5454789'), - (946, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6obYezA', '5455037'), - (946, 1556, 'not_attending', '2022-07-22 07:56:45', '2025-12-17 19:47:20', 'm6obYezA', '5457734'), - (946, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6obYezA', '5461278'), - (946, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6obYezA', '5469480'), - (946, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6obYezA', '5471073'), - (946, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'm6obYezA', '5474663'), - (946, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6obYezA', '5482022'), - (946, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6obYezA', '5482793'), - (946, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6obYezA', '5488912'), - (946, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6obYezA', '5492192'), - (946, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6obYezA', '5493139'), - (946, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6obYezA', '5493200'), - (946, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6obYezA', '5502188'), - (946, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6obYezA', '5505059'), - (946, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6obYezA', '5509055'), - (946, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6obYezA', '5512862'), - (946, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6obYezA', '5513985'), - (946, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'm6obYezA', '5519981'), - (946, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6obYezA', '5522550'), - (946, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6obYezA', '5534683'), - (946, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6obYezA', '5537735'), - (946, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6obYezA', '5540859'), - (946, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6obYezA', '5546619'), - (946, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6obYezA', '5555245'), - (946, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6obYezA', '5557747'), - (946, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6obYezA', '5560255'), - (946, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6obYezA', '5562906'), - (946, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6obYezA', '5600604'), - (946, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6obYezA', '5605544'), - (946, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'm6obYezA', '5606737'), - (946, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6obYezA', '5630960'), - (946, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6obYezA', '5630961'), - (946, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6obYezA', '5630962'), - (946, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6obYezA', '5630966'), - (946, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6obYezA', '5630967'), - (946, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm6obYezA', '5630968'), - (946, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6obYezA', '5635406'), - (946, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6obYezA', '5638765'), - (946, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6obYezA', '5640097'), - (946, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6obYezA', '5640843'), - (946, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6obYezA', '5641521'), - (946, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6obYezA', '5642818'), - (946, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6obYezA', '5652395'), - (946, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6obYezA', '5670445'), - (946, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6obYezA', '5671637'), - (946, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6obYezA', '5672329'), - (946, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6obYezA', '5674057'), - (946, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6obYezA', '5674060'), - (946, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6obYezA', '5677461'), - (946, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6obYezA', '5698046'), - (946, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6obYezA', '5699760'), - (946, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6obYezA', '5741601'), - (946, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6obYezA', '5763458'), - (946, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6obYezA', '5774172'), - (946, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'm6obYezA', '5818247'), - (946, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6obYezA', '5819471'), - (946, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6obYezA', '5827739'), - (946, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6obYezA', '5844306'), - (946, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6obYezA', '5850159'), - (946, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6obYezA', '5858999'), - (946, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6obYezA', '5871984'), - (946, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6obYezA', '5876354'), - (946, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm6obYezA', '5880939'), - (946, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm6obYezA', '5880940'), - (946, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm6obYezA', '5880942'), - (946, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm6obYezA', '5880943'), - (946, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6obYezA', '5887890'), - (946, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6obYezA', '5888598'), - (946, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6obYezA', '5893260'), - (946, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm6obYezA', '5899826'), - (946, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm6obYezA', '5900199'), - (946, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm6obYezA', '5900200'), - (946, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm6obYezA', '5900202'), - (946, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm6obYezA', '5900203'), - (946, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm6obYezA', '5901108'), - (946, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm6obYezA', '5901126'), - (946, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm6obYezA', '5909655'), - (946, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm6obYezA', '5910522'), - (946, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm6obYezA', '5910526'), - (946, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm6obYezA', '5910528'), - (946, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm6obYezA', '5916219'), - (946, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm6obYezA', '5936234'), - (946, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm6obYezA', '5958351'), - (946, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm6obYezA', '5959751'), - (946, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm6obYezA', '5959755'), - (946, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm6obYezA', '5960055'), - (946, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm6obYezA', '5961684'), - (946, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm6obYezA', '5962132'), - (946, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm6obYezA', '5962133'), - (946, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm6obYezA', '5962134'), - (946, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm6obYezA', '5962317'), - (946, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm6obYezA', '5962318'), - (946, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm6obYezA', '5965933'), - (946, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm6obYezA', '5967014'), - (946, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm6obYezA', '5972815'), - (946, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm6obYezA', '5974016'), - (946, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'm6obYezA', '5975052'), - (946, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'm6obYezA', '5975054'), - (946, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm6obYezA', '5981515'), - (946, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm6obYezA', '5993516'), - (946, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm6obYezA', '5998939'), - (946, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm6obYezA', '6028191'), - (946, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm6obYezA', '6040066'), - (946, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm6obYezA', '6042717'), - (946, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm6obYezA', '6044838'), - (946, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm6obYezA', '6044839'), - (946, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6obYezA', '6045684'), - (946, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm6obYezA', '6050104'), - (946, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm6obYezA', '6053195'), - (946, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm6obYezA', '6053198'), - (946, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm6obYezA', '6056085'), - (946, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm6obYezA', '6056916'), - (946, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm6obYezA', '6059290'), - (946, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm6obYezA', '6060328'), - (946, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm6obYezA', '6061037'), - (946, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm6obYezA', '6061039'), - (946, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm6obYezA', '6067245'), - (946, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm6obYezA', '6068094'), - (946, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm6obYezA', '6068252'), - (946, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm6obYezA', '6068253'), - (946, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm6obYezA', '6068254'), - (946, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm6obYezA', '6068280'), - (946, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm6obYezA', '6069093'), - (946, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'm6obYezA', '6072528'), - (946, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'm6obYezA', '6075556'), - (946, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm6obYezA', '6079840'), - (946, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm6obYezA', '6083398'), - (946, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm6obYezA', '6093504'), - (946, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm6obYezA', '6097414'), - (946, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm6obYezA', '6097442'), - (946, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm6obYezA', '6097684'), - (946, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm6obYezA', '6098762'), - (946, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm6obYezA', '6101362'), - (946, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm6obYezA', '6107314'), - (947, 243, 'not_attending', '2020-11-03 23:16:02', '2025-12-17 19:47:53', 'xd9VKoJm', '3149474'), - (947, 245, 'not_attending', '2020-11-30 16:15:05', '2025-12-17 19:47:54', 'xd9VKoJm', '3149476'), - (947, 249, 'not_attending', '2020-11-17 03:54:21', '2025-12-17 19:47:54', 'xd9VKoJm', '3149480'), - (947, 388, 'not_attending', '2020-10-24 20:04:53', '2025-12-17 19:47:52', 'xd9VKoJm', '3228701'), - (947, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'xd9VKoJm', '3236467'), - (947, 440, 'not_attending', '2020-11-03 03:35:37', '2025-12-17 19:47:53', 'xd9VKoJm', '3256168'), - (947, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'xd9VKoJm', '3263578'), - (947, 450, 'not_attending', '2020-10-31 20:27:08', '2025-12-17 19:47:53', 'xd9VKoJm', '3272102'), - (947, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'xd9VKoJm', '3276428'), - (947, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'xd9VKoJm', '3281467'), - (947, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'xd9VKoJm', '3281470'), - (947, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'xd9VKoJm', '3281829'), - (947, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'xd9VKoJm', '3285413'), - (947, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'xd9VKoJm', '3285414'), - (947, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'xd9VKoJm', '3297764'), - (947, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'xd9VKoJm', '3313856'), - (947, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'xd9VKoJm', '3314909'), - (947, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'xd9VKoJm', '3314964'), - (947, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'xd9VKoJm', '3323365'), - (947, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'xd9VKoJm', '3324148'), - (947, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'xd9VKoJm', '3329383'), - (947, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'xd9VKoJm', '3351539'), - (947, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'xd9VKoJm', '3386848'), - (947, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'xd9VKoJm', '3389527'), - (947, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'xd9VKoJm', '3396499'), - (947, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'xd9VKoJm', '3403650'), - (947, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'xd9VKoJm', '3406988'), - (947, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'xd9VKoJm', '3416576'), - (947, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'xd9VKoJm', '3430267'), - (947, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'xd9VKoJm', '3468125'), - (947, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'xd9VKoJm', '3470303'), - (947, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'xd9VKoJm', '3470305'), - (947, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'xd9VKoJm', '3470991'), - (947, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'xd9VKoJm', '3517815'), - (947, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'xd9VKoJm', '3523941'), - (947, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'xd9VKoJm', '3533850'), - (947, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'xd9VKoJm', '3536632'), - (947, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'xd9VKoJm', '3536656'), - (947, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'xd9VKoJm', '3539916'), - (947, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'xd9VKoJm', '3539917'), - (947, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'xd9VKoJm', '3539918'), - (947, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'xd9VKoJm', '3539919'), - (947, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'xd9VKoJm', '3539920'), - (947, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'xd9VKoJm', '3539921'), - (947, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'xd9VKoJm', '3539922'), - (947, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'xd9VKoJm', '3539923'), - (947, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9VKoJm', '6045684'), - (948, 629, 'attending', '2021-03-17 01:33:54', '2025-12-17 19:47:51', 'kdKrxDe4', '3533307'), - (948, 637, 'attending', '2021-03-21 01:04:58', '2025-12-17 19:47:51', 'kdKrxDe4', '3536411'), - (948, 638, 'attending', '2021-04-04 02:17:40', '2025-12-17 19:47:44', 'kdKrxDe4', '3536632'), - (948, 639, 'attending', '2021-03-21 01:05:04', '2025-12-17 19:47:51', 'kdKrxDe4', '3536656'), - (948, 641, 'attending', '2021-03-18 00:51:18', '2025-12-17 19:47:44', 'kdKrxDe4', '3539916'), - (948, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'kdKrxDe4', '3539918'), - (948, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'kdKrxDe4', '3539919'), - (948, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdKrxDe4', '3539927'), - (948, 650, 'attending', '2021-03-25 19:50:43', '2025-12-17 19:47:44', 'kdKrxDe4', '3539928'), - (948, 656, 'attending', '2021-03-21 01:04:44', '2025-12-17 19:47:51', 'kdKrxDe4', '3547130'), - (948, 661, 'attending', '2021-03-18 00:51:16', '2025-12-17 19:47:44', 'kdKrxDe4', '3547137'), - (948, 688, 'attending', '2021-03-16 20:32:25', '2025-12-17 19:47:51', 'kdKrxDe4', '3553729'), - (948, 690, 'attending', '2021-03-21 01:07:39', '2025-12-17 19:47:43', 'kdKrxDe4', '3559954'), - (948, 697, 'attending', '2021-03-18 00:52:32', '2025-12-17 19:47:44', 'kdKrxDe4', '3567537'), - (948, 706, 'attending', '2021-03-19 21:38:06', '2025-12-17 19:47:45', 'kdKrxDe4', '3582734'), - (948, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKrxDe4', '3583262'), - (948, 708, 'attending', '2021-03-22 12:10:54', '2025-12-17 19:47:44', 'kdKrxDe4', '3587850'), - (948, 715, 'not_attending', '2021-03-31 21:47:35', '2025-12-17 19:47:44', 'kdKrxDe4', '3604146'), - (948, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKrxDe4', '3619523'), - (948, 722, 'attending', '2021-04-02 15:26:46', '2025-12-17 19:47:44', 'kdKrxDe4', '3646347'), - (948, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKrxDe4', '3661369'), - (948, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKrxDe4', '3674262'), - (948, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKrxDe4', '3677402'), - (948, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKrxDe4', '6045684'), - (949, 245, 'attending', '2020-11-30 15:45:31', '2025-12-17 19:47:54', 'pmbkZ0RA', '3149476'), - (949, 493, 'not_attending', '2020-12-04 18:37:04', '2025-12-17 19:47:54', 'pmbkZ0RA', '3313856'), - (949, 496, 'attending', '2020-12-08 00:15:15', '2025-12-17 19:47:54', 'pmbkZ0RA', '3314269'), - (949, 497, 'attending', '2020-12-17 22:32:23', '2025-12-17 19:47:55', 'pmbkZ0RA', '3314270'), - (949, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'pmbkZ0RA', '3314964'), - (949, 501, 'attending', '2020-12-08 00:15:00', '2025-12-17 19:47:54', 'pmbkZ0RA', '3317834'), - (949, 502, 'attending', '2020-12-12 22:14:50', '2025-12-17 19:47:55', 'pmbkZ0RA', '3323365'), - (949, 513, 'not_attending', '2020-12-20 00:23:50', '2025-12-17 19:47:55', 'pmbkZ0RA', '3329383'), - (949, 526, 'attending', '2021-01-01 17:04:52', '2025-12-17 19:47:48', 'pmbkZ0RA', '3351539'), - (949, 532, 'not_attending', '2021-01-08 20:12:23', '2025-12-17 19:47:48', 'pmbkZ0RA', '3381412'), - (949, 536, 'attending', '2021-01-08 20:09:08', '2025-12-17 19:47:48', 'pmbkZ0RA', '3386848'), - (949, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'pmbkZ0RA', '3389527'), - (949, 542, 'not_attending', '2021-01-11 20:16:25', '2025-12-17 19:47:48', 'pmbkZ0RA', '3395013'), - (949, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'pmbkZ0RA', '3396499'), - (949, 548, 'attending', '2021-01-15 19:21:45', '2025-12-17 19:47:48', 'pmbkZ0RA', '3403650'), - (949, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'pmbkZ0RA', '3406988'), - (949, 555, 'not_attending', '2021-01-21 20:31:12', '2025-12-17 19:47:49', 'pmbkZ0RA', '3416576'), - (949, 558, 'not_attending', '2021-01-21 20:31:10', '2025-12-17 19:47:49', 'pmbkZ0RA', '3418925'), - (949, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'pmbkZ0RA', '3426074'), - (949, 568, 'maybe', '2021-01-31 00:01:30', '2025-12-17 19:47:50', 'pmbkZ0RA', '3430267'), - (949, 569, 'not_attending', '2021-01-25 06:51:08', '2025-12-17 19:47:49', 'pmbkZ0RA', '3432673'), - (949, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'pmbkZ0RA', '3468125'), - (949, 602, 'not_attending', '2021-02-13 21:49:01', '2025-12-17 19:47:50', 'pmbkZ0RA', '3470303'), - (949, 604, 'not_attending', '2021-02-27 18:55:58', '2025-12-17 19:47:50', 'pmbkZ0RA', '3470305'), - (949, 605, 'not_attending', '2021-02-14 18:40:34', '2025-12-17 19:47:50', 'pmbkZ0RA', '3470991'), - (949, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'pmbkZ0RA', '3517815'), - (949, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'pmbkZ0RA', '3517816'), - (949, 623, 'not_attending', '2021-02-27 18:55:53', '2025-12-17 19:47:51', 'pmbkZ0RA', '3523941'), - (949, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmbkZ0RA', '3533850'), - (949, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmbkZ0RA', '3536632'), - (949, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmbkZ0RA', '3536656'), - (949, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'pmbkZ0RA', '3539916'), - (949, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'pmbkZ0RA', '3539917'), - (949, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmbkZ0RA', '3539918'), - (949, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539919'), - (949, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539920'), - (949, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539921'), - (949, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539922'), - (949, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmbkZ0RA', '3539923'), - (949, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmbkZ0RA', '3539927'), - (949, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmbkZ0RA', '3582734'), - (949, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmbkZ0RA', '3583262'), - (949, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmbkZ0RA', '3619523'), - (949, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmbkZ0RA', '3661369'), - (949, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmbkZ0RA', '3674262'), - (949, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmbkZ0RA', '3677402'), - (949, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmbkZ0RA', '3730212'), - (949, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbkZ0RA', '6045684'), - (950, 2999, 'not_attending', '2025-02-13 02:18:52', '2025-12-17 19:46:23', 'Aen0O0j4', '7844784'), - (951, 951, 'not_attending', '2021-08-29 21:00:17', '2025-12-17 19:47:43', 'dlOnPVX4', '4315731'), - (951, 971, 'maybe', '2021-09-07 15:01:38', '2025-12-17 19:47:43', 'dlOnPVX4', '4356801'), - (951, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'dlOnPVX4', '4366187'), - (951, 990, 'attending', '2021-08-31 23:35:43', '2025-12-17 19:47:43', 'dlOnPVX4', '4420735'), - (951, 991, 'attending', '2021-09-11 22:10:18', '2025-12-17 19:47:43', 'dlOnPVX4', '4420738'), - (951, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dlOnPVX4', '4420739'), - (951, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dlOnPVX4', '4420741'), - (951, 994, 'attending', '2021-10-02 21:47:23', '2025-12-17 19:47:34', 'dlOnPVX4', '4420742'), - (951, 995, 'attending', '2021-10-09 16:58:46', '2025-12-17 19:47:34', 'dlOnPVX4', '4420744'), - (951, 996, 'attending', '2021-10-16 20:15:45', '2025-12-17 19:47:35', 'dlOnPVX4', '4420747'), - (951, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dlOnPVX4', '4420748'), - (951, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dlOnPVX4', '4420749'), - (951, 1002, 'attending', '2021-08-30 14:46:59', '2025-12-17 19:47:43', 'dlOnPVX4', '4424932'), - (951, 1016, 'attending', '2021-09-07 15:02:52', '2025-12-17 19:47:43', 'dlOnPVX4', '4441271'), - (951, 1017, 'maybe', '2021-09-05 19:43:19', '2025-12-17 19:47:43', 'dlOnPVX4', '4441822'), - (951, 1019, 'attending', '2021-09-07 15:03:10', '2025-12-17 19:47:43', 'dlOnPVX4', '4450515'), - (951, 1020, 'not_attending', '2021-09-13 20:34:58', '2025-12-17 19:47:43', 'dlOnPVX4', '4451787'), - (951, 1021, 'attending', '2021-09-07 15:03:06', '2025-12-17 19:47:34', 'dlOnPVX4', '4451803'), - (951, 1022, 'attending', '2021-09-15 21:54:02', '2025-12-17 19:47:43', 'dlOnPVX4', '4458628'), - (951, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dlOnPVX4', '4461883'), - (951, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlOnPVX4', '4508342'), - (951, 1072, 'attending', '2021-10-05 01:37:15', '2025-12-17 19:47:34', 'dlOnPVX4', '4516287'), - (951, 1078, 'not_attending', '2021-10-07 20:33:10', '2025-12-17 19:47:34', 'dlOnPVX4', '4541281'), - (951, 1079, 'attending', '2021-10-20 15:42:21', '2025-12-17 19:47:35', 'dlOnPVX4', '4563823'), - (951, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dlOnPVX4', '4568602'), - (951, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dlOnPVX4', '4572153'), - (951, 1092, 'attending', '2021-10-21 03:31:13', '2025-12-17 19:47:35', 'dlOnPVX4', '4582837'), - (951, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dlOnPVX4', '4585962'), - (951, 1094, 'attending', '2021-10-27 15:43:41', '2025-12-17 19:47:36', 'dlOnPVX4', '4587337'), - (951, 1095, 'attending', '2021-10-27 13:43:32', '2025-12-17 19:47:35', 'dlOnPVX4', '4596356'), - (951, 1096, 'not_attending', '2021-10-27 13:43:20', '2025-12-17 19:47:36', 'dlOnPVX4', '4596453'), - (951, 1097, 'attending', '2021-11-01 02:10:41', '2025-12-17 19:47:36', 'dlOnPVX4', '4598860'), - (951, 1098, 'attending', '2021-11-10 18:33:15', '2025-12-17 19:47:36', 'dlOnPVX4', '4598861'), - (951, 1099, 'attending', '2021-11-06 14:01:17', '2025-12-17 19:47:36', 'dlOnPVX4', '4602797'), - (951, 1103, 'attending', '2021-11-13 21:16:06', '2025-12-17 19:47:36', 'dlOnPVX4', '4616350'), - (951, 1108, 'attending', '2021-11-13 21:15:40', '2025-12-17 19:47:37', 'dlOnPVX4', '4632276'), - (951, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dlOnPVX4', '4637896'), - (951, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dlOnPVX4', '4642994'), - (951, 1117, 'attending', '2021-12-06 01:31:40', '2025-12-17 19:47:37', 'dlOnPVX4', '4642995'), - (951, 1118, 'attending', '2021-12-14 20:16:29', '2025-12-17 19:47:38', 'dlOnPVX4', '4642996'), - (951, 1119, 'not_attending', '2021-12-23 00:28:36', '2025-12-17 19:47:31', 'dlOnPVX4', '4642997'), - (951, 1126, 'attending', '2021-12-06 01:31:59', '2025-12-17 19:47:38', 'dlOnPVX4', '4645687'), - (951, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dlOnPVX4', '4645698'), - (951, 1128, 'attending', '2021-11-20 18:01:15', '2025-12-17 19:47:37', 'dlOnPVX4', '4645704'), - (951, 1129, 'attending', '2021-11-21 04:00:16', '2025-12-17 19:47:37', 'dlOnPVX4', '4645705'), - (951, 1130, 'attending', '2021-12-04 23:15:21', '2025-12-17 19:47:37', 'dlOnPVX4', '4658824'), - (951, 1131, 'attending', '2021-12-13 01:05:26', '2025-12-17 19:47:31', 'dlOnPVX4', '4658825'), - (951, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dlOnPVX4', '4668385'), - (951, 1143, 'attending', '2021-12-02 00:00:09', '2025-12-17 19:47:37', 'dlOnPVX4', '4683667'), - (951, 1147, 'attending', '2021-12-14 20:16:26', '2025-12-17 19:47:38', 'dlOnPVX4', '4692842'), - (951, 1148, 'attending', '2021-12-14 20:16:37', '2025-12-17 19:47:31', 'dlOnPVX4', '4692843'), - (951, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dlOnPVX4', '4694407'), - (951, 1151, 'attending', '2021-12-19 17:28:58', '2025-12-17 19:47:31', 'dlOnPVX4', '4708704'), - (951, 1152, 'attending', '2022-01-10 21:24:47', '2025-12-17 19:47:31', 'dlOnPVX4', '4708705'), - (951, 1153, 'attending', '2022-01-26 18:08:33', '2025-12-17 19:47:32', 'dlOnPVX4', '4708707'), - (951, 1155, 'attending', '2021-12-19 17:28:34', '2025-12-17 19:47:31', 'dlOnPVX4', '4715119'), - (951, 1156, 'not_attending', '2021-12-21 23:55:51', '2025-12-17 19:47:31', 'dlOnPVX4', '4715207'), - (951, 1164, 'attending', '2021-12-28 22:28:52', '2025-12-17 19:47:31', 'dlOnPVX4', '4724208'), - (951, 1165, 'attending', '2021-12-28 22:28:54', '2025-12-17 19:47:31', 'dlOnPVX4', '4724210'), - (951, 1170, 'attending', '2022-01-08 19:19:49', '2025-12-17 19:47:31', 'dlOnPVX4', '4731045'), - (951, 1175, 'attending', '2022-01-22 21:52:25', '2025-12-17 19:47:32', 'dlOnPVX4', '4736497'), - (951, 1176, 'maybe', '2022-02-02 19:53:39', '2025-12-17 19:47:32', 'dlOnPVX4', '4736498'), - (951, 1177, 'attending', '2022-02-12 23:47:47', '2025-12-17 19:47:32', 'dlOnPVX4', '4736499'), - (951, 1178, 'attending', '2022-01-22 23:13:25', '2025-12-17 19:47:32', 'dlOnPVX4', '4736500'), - (951, 1179, 'attending', '2022-02-13 17:25:45', '2025-12-17 19:47:32', 'dlOnPVX4', '4736501'), - (951, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dlOnPVX4', '4736503'), - (951, 1182, 'attending', '2022-03-09 18:27:51', '2025-12-17 19:47:33', 'dlOnPVX4', '4736504'), - (951, 1184, 'attending', '2022-01-08 19:19:46', '2025-12-17 19:47:31', 'dlOnPVX4', '4742350'), - (951, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dlOnPVX4', '4746789'), - (951, 1188, 'attending', '2022-01-11 16:10:53', '2025-12-17 19:47:31', 'dlOnPVX4', '4753929'), - (951, 1190, 'maybe', '2022-01-12 20:24:21', '2025-12-17 19:47:31', 'dlOnPVX4', '4757377'), - (951, 1192, 'attending', '2022-01-16 22:01:19', '2025-12-17 19:47:32', 'dlOnPVX4', '4758745'), - (951, 1200, 'attending', '2022-01-17 23:05:15', '2025-12-17 19:47:32', 'dlOnPVX4', '4766830'), - (951, 1202, 'maybe', '2022-01-22 23:14:49', '2025-12-17 19:47:32', 'dlOnPVX4', '4769423'), - (951, 1206, 'not_attending', '2022-04-07 20:35:36', '2025-12-17 19:47:27', 'dlOnPVX4', '4773578'), - (951, 1219, 'attending', '2022-01-31 19:37:31', '2025-12-17 19:47:32', 'dlOnPVX4', '4788466'), - (951, 1222, 'attending', '2022-02-13 17:25:57', '2025-12-17 19:47:32', 'dlOnPVX4', '5015628'), - (951, 1224, 'attending', '2022-01-31 19:37:29', '2025-12-17 19:47:32', 'dlOnPVX4', '5016682'), - (951, 1228, 'attending', '2022-02-06 20:45:53', '2025-12-17 19:47:32', 'dlOnPVX4', '5028238'), - (951, 1229, 'not_attending', '2022-02-19 00:54:27', '2025-12-17 19:47:32', 'dlOnPVX4', '5034963'), - (951, 1232, 'attending', '2022-02-08 23:36:56', '2025-12-17 19:47:32', 'dlOnPVX4', '5038850'), - (951, 1236, 'maybe', '2022-02-14 14:44:10', '2025-12-17 19:47:32', 'dlOnPVX4', '5045826'), - (951, 1239, 'attending', '2022-03-02 23:45:17', '2025-12-17 19:47:33', 'dlOnPVX4', '5052238'), - (951, 1240, 'attending', '2022-03-12 23:31:49', '2025-12-17 19:47:33', 'dlOnPVX4', '5052239'), - (951, 1241, 'attending', '2022-03-17 23:06:55', '2025-12-17 19:47:25', 'dlOnPVX4', '5052240'), - (951, 1249, 'attending', '2022-03-09 18:27:58', '2025-12-17 19:47:33', 'dlOnPVX4', '5068530'), - (951, 1252, 'maybe', '2022-03-04 23:22:03', '2025-12-17 19:47:33', 'dlOnPVX4', '5129121'), - (951, 1259, 'attending', '2022-03-02 23:45:01', '2025-12-17 19:47:33', 'dlOnPVX4', '5132533'), - (951, 1264, 'attending', '2022-03-12 23:31:53', '2025-12-17 19:47:25', 'dlOnPVX4', '5160281'), - (951, 1266, 'not_attending', '2022-03-14 21:48:59', '2025-12-17 19:47:33', 'dlOnPVX4', '5166407'), - (951, 1269, 'attending', '2022-03-14 20:00:27', '2025-12-17 19:47:25', 'dlOnPVX4', '5179439'), - (951, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dlOnPVX4', '5186582'), - (951, 1273, 'attending', '2022-03-17 23:06:58', '2025-12-17 19:47:25', 'dlOnPVX4', '5186583'), - (951, 1274, 'not_attending', '2022-04-02 19:53:27', '2025-12-17 19:47:26', 'dlOnPVX4', '5186585'), - (951, 1276, 'attending', '2022-03-25 21:59:58', '2025-12-17 19:47:25', 'dlOnPVX4', '5186820'), - (951, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dlOnPVX4', '5190437'), - (951, 1284, 'attending', '2022-04-10 15:17:07', '2025-12-17 19:47:27', 'dlOnPVX4', '5195095'), - (951, 1289, 'attending', '2022-03-28 18:12:52', '2025-12-17 19:47:25', 'dlOnPVX4', '5200190'), - (951, 1290, 'attending', '2022-03-28 18:12:50', '2025-12-17 19:47:25', 'dlOnPVX4', '5200196'), - (951, 1293, 'attending', '2022-04-03 14:11:52', '2025-12-17 19:47:27', 'dlOnPVX4', '5214641'), - (951, 1297, 'attending', '2022-03-28 18:12:59', '2025-12-17 19:47:25', 'dlOnPVX4', '5215989'), - (951, 1298, 'attending', '2022-03-31 16:32:38', '2025-12-17 19:47:25', 'dlOnPVX4', '5216645'), - (951, 1300, 'attending', '2022-03-31 12:05:21', '2025-12-17 19:47:25', 'dlOnPVX4', '5217936'), - (951, 1302, 'not_attending', '2022-04-08 23:14:25', '2025-12-17 19:47:27', 'dlOnPVX4', '5220867'), - (951, 1304, 'maybe', '2022-04-06 13:08:17', '2025-12-17 19:47:26', 'dlOnPVX4', '5223468'), - (951, 1306, 'attending', '2022-04-05 21:32:57', '2025-12-17 19:47:26', 'dlOnPVX4', '5223682'), - (951, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dlOnPVX4', '5223686'), - (951, 1308, 'attending', '2022-04-10 15:17:05', '2025-12-17 19:47:27', 'dlOnPVX4', '5226703'), - (951, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dlOnPVX4', '5227432'), - (951, 1312, 'not_attending', '2022-04-15 00:27:49', '2025-12-17 19:47:27', 'dlOnPVX4', '5231459'), - (951, 1313, 'attending', '2022-04-08 23:14:02', '2025-12-17 19:47:27', 'dlOnPVX4', '5231461'), - (951, 1314, 'not_attending', '2022-04-11 18:37:18', '2025-12-17 19:47:27', 'dlOnPVX4', '5233137'), - (951, 1319, 'attending', '2022-04-13 19:46:06', '2025-12-17 19:47:27', 'dlOnPVX4', '5238353'), - (951, 1320, 'not_attending', '2022-04-11 18:33:43', '2025-12-17 19:47:27', 'dlOnPVX4', '5238354'), - (951, 1325, 'attending', '2022-04-21 14:30:24', '2025-12-17 19:47:28', 'dlOnPVX4', '5238361'), - (951, 1326, 'attending', '2022-04-21 14:30:27', '2025-12-17 19:47:28', 'dlOnPVX4', '5238362'), - (951, 1328, 'attending', '2022-04-12 22:46:31', '2025-12-17 19:47:27', 'dlOnPVX4', '5238759'), - (951, 1330, 'attending', '2022-04-13 00:12:36', '2025-12-17 19:47:27', 'dlOnPVX4', '5242155'), - (951, 1334, 'not_attending', '2022-04-14 19:25:43', '2025-12-17 19:47:27', 'dlOnPVX4', '5244797'), - (951, 1336, 'attending', '2022-04-15 00:27:41', '2025-12-17 19:47:27', 'dlOnPVX4', '5244915'), - (951, 1337, 'attending', '2022-04-19 17:45:43', '2025-12-17 19:47:27', 'dlOnPVX4', '5245036'), - (951, 1345, 'not_attending', '2022-04-23 20:32:58', '2025-12-17 19:47:27', 'dlOnPVX4', '5247466'), - (951, 1346, 'attending', '2022-04-19 21:41:59', '2025-12-17 19:47:27', 'dlOnPVX4', '5247467'), - (951, 1362, 'attending', '2022-04-25 17:45:35', '2025-12-17 19:47:28', 'dlOnPVX4', '5260800'), - (951, 1364, 'attending', '2022-04-30 18:41:44', '2025-12-17 19:47:28', 'dlOnPVX4', '5261598'), - (951, 1365, 'attending', '2022-04-29 19:40:38', '2025-12-17 19:47:28', 'dlOnPVX4', '5261600'), - (951, 1371, 'attending', '2022-04-27 21:16:59', '2025-12-17 19:47:27', 'dlOnPVX4', '5263784'), - (951, 1374, 'attending', '2022-05-05 17:52:20', '2025-12-17 19:47:28', 'dlOnPVX4', '5269930'), - (951, 1378, 'maybe', '2022-05-11 21:20:21', '2025-12-17 19:47:29', 'dlOnPVX4', '5271448'), - (951, 1379, 'attending', '2022-05-15 23:18:18', '2025-12-17 19:47:29', 'dlOnPVX4', '5271449'), - (951, 1381, 'attending', '2022-05-03 15:41:58', '2025-12-17 19:47:28', 'dlOnPVX4', '5271453'), - (951, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dlOnPVX4', '5276469'), - (951, 1385, 'attending', '2022-05-11 19:56:20', '2025-12-17 19:47:28', 'dlOnPVX4', '5277822'), - (951, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dlOnPVX4', '5278159'), - (951, 1390, 'not_attending', '2022-05-14 15:53:44', '2025-12-17 19:47:28', 'dlOnPVX4', '5279509'), - (951, 1395, 'attending', '2022-05-07 16:30:45', '2025-12-17 19:47:28', 'dlOnPVX4', '5281102'), - (951, 1401, 'attending', '2022-05-16 17:43:22', '2025-12-17 19:47:29', 'dlOnPVX4', '5286295'), - (951, 1407, 'attending', '2022-05-15 23:18:04', '2025-12-17 19:47:30', 'dlOnPVX4', '5363695'), - (951, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dlOnPVX4', '5365960'), - (951, 1409, 'attending', '2022-05-16 21:53:32', '2025-12-17 19:47:30', 'dlOnPVX4', '5367032'), - (951, 1412, 'not_attending', '2022-05-19 23:14:36', '2025-12-17 19:47:29', 'dlOnPVX4', '5367532'), - (951, 1414, 'attending', '2022-05-20 01:22:15', '2025-12-17 19:47:29', 'dlOnPVX4', '5368445'), - (951, 1415, 'attending', '2022-06-03 17:30:57', '2025-12-17 19:47:30', 'dlOnPVX4', '5368973'), - (951, 1416, 'attending', '2022-05-28 16:21:13', '2025-12-17 19:47:30', 'dlOnPVX4', '5369628'), - (951, 1419, 'attending', '2022-06-03 17:31:14', '2025-12-17 19:47:30', 'dlOnPVX4', '5373081'), - (951, 1423, 'attending', '2022-06-09 21:54:48', '2025-12-17 19:47:17', 'dlOnPVX4', '5375727'), - (951, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dlOnPVX4', '5378247'), - (951, 1431, 'attending', '2022-06-07 13:24:29', '2025-12-17 19:47:30', 'dlOnPVX4', '5389605'), - (951, 1436, 'not_attending', '2022-06-02 21:19:01', '2025-12-17 19:47:30', 'dlOnPVX4', '5394292'), - (951, 1438, 'attending', '2022-06-01 17:54:43', '2025-12-17 19:47:30', 'dlOnPVX4', '5395032'), - (951, 1442, 'attending', '2022-06-18 18:26:46', '2025-12-17 19:47:17', 'dlOnPVX4', '5397265'), - (951, 1443, 'attending', '2022-06-03 17:30:48', '2025-12-17 19:47:30', 'dlOnPVX4', '5397613'), - (951, 1451, 'attending', '2022-06-09 21:54:50', '2025-12-17 19:47:17', 'dlOnPVX4', '5403967'), - (951, 1454, 'not_attending', '2022-06-13 00:57:53', '2025-12-17 19:47:31', 'dlOnPVX4', '5404771'), - (951, 1455, 'maybe', '2022-06-10 16:36:54', '2025-12-17 19:47:31', 'dlOnPVX4', '5404772'), - (951, 1458, 'not_attending', '2022-06-19 19:18:38', '2025-12-17 19:47:17', 'dlOnPVX4', '5404786'), - (951, 1460, 'attending', '2022-06-13 16:35:24', '2025-12-17 19:47:31', 'dlOnPVX4', '5404817'), - (951, 1462, 'maybe', '2022-06-10 19:00:22', '2025-12-17 19:47:17', 'dlOnPVX4', '5405203'), - (951, 1475, 'attending', '2022-06-16 22:43:11', '2025-12-17 19:47:17', 'dlOnPVX4', '5408108'), - (951, 1477, 'maybe', '2022-06-21 23:25:06', '2025-12-17 19:47:17', 'dlOnPVX4', '5408766'), - (951, 1479, 'not_attending', '2022-06-17 14:27:53', '2025-12-17 19:47:17', 'dlOnPVX4', '5410322'), - (951, 1480, 'attending', '2022-06-18 18:26:37', '2025-12-17 19:47:19', 'dlOnPVX4', '5411699'), - (951, 1481, 'not_attending', '2022-06-20 21:22:40', '2025-12-17 19:47:17', 'dlOnPVX4', '5412237'), - (951, 1482, 'attending', '2022-06-20 13:31:54', '2025-12-17 19:47:19', 'dlOnPVX4', '5412550'), - (951, 1483, 'attending', '2022-06-20 22:19:56', '2025-12-17 19:47:17', 'dlOnPVX4', '5414556'), - (951, 1484, 'attending', '2022-06-20 21:22:02', '2025-12-17 19:47:17', 'dlOnPVX4', '5415046'), - (951, 1490, 'not_attending', '2022-07-05 23:02:40', '2025-12-17 19:47:19', 'dlOnPVX4', '5420156'), - (951, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dlOnPVX4', '5422086'), - (951, 1496, 'attending', '2022-06-28 13:52:49', '2025-12-17 19:47:19', 'dlOnPVX4', '5422404'), - (951, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dlOnPVX4', '5422406'), - (951, 1501, 'attending', '2022-06-28 15:35:25', '2025-12-17 19:47:19', 'dlOnPVX4', '5424546'), - (951, 1502, 'attending', '2022-06-28 17:22:04', '2025-12-17 19:47:19', 'dlOnPVX4', '5424565'), - (951, 1504, 'attending', '2022-07-05 23:03:18', '2025-12-17 19:47:19', 'dlOnPVX4', '5426882'), - (951, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dlOnPVX4', '5427083'), - (951, 1508, 'attending', '2022-07-02 20:51:53', '2025-12-17 19:47:19', 'dlOnPVX4', '5433453'), - (951, 1511, 'attending', '2022-07-09 20:14:21', '2025-12-17 19:47:19', 'dlOnPVX4', '5437733'), - (951, 1513, 'attending', '2022-07-09 13:36:22', '2025-12-17 19:47:19', 'dlOnPVX4', '5441125'), - (951, 1514, 'attending', '2022-07-09 20:14:27', '2025-12-17 19:47:20', 'dlOnPVX4', '5441126'), - (951, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dlOnPVX4', '5441128'), - (951, 1516, 'attending', '2022-08-19 23:07:06', '2025-12-17 19:47:23', 'dlOnPVX4', '5441129'), - (951, 1517, 'attending', '2022-08-27 16:03:26', '2025-12-17 19:47:23', 'dlOnPVX4', '5441130'), - (951, 1518, 'attending', '2022-08-25 15:08:54', '2025-12-17 19:47:24', 'dlOnPVX4', '5441131'), - (951, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dlOnPVX4', '5441132'), - (951, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dlOnPVX4', '5446643'), - (951, 1540, 'not_attending', '2022-07-18 13:12:46', '2025-12-17 19:47:20', 'dlOnPVX4', '5453325'), - (951, 1541, 'attending', '2022-07-18 19:51:25', '2025-12-17 19:47:20', 'dlOnPVX4', '5453542'), - (951, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dlOnPVX4', '5454516'), - (951, 1544, 'attending', '2022-09-17 03:51:09', '2025-12-17 19:47:11', 'dlOnPVX4', '5454517'), - (951, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dlOnPVX4', '5454605'), - (951, 1551, 'attending', '2022-07-19 21:32:07', '2025-12-17 19:47:20', 'dlOnPVX4', '5455037'), - (951, 1558, 'attending', '2022-09-11 22:55:32', '2025-12-17 19:47:10', 'dlOnPVX4', '5458730'), - (951, 1559, 'attending', '2022-09-28 18:54:59', '2025-12-17 19:47:11', 'dlOnPVX4', '5458731'), - (951, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dlOnPVX4', '5461278'), - (951, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dlOnPVX4', '5469480'), - (951, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dlOnPVX4', '5471073'), - (951, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dlOnPVX4', '5474663'), - (951, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dlOnPVX4', '5482022'), - (951, 1572, 'attending', '2022-08-02 14:40:13', '2025-12-17 19:47:22', 'dlOnPVX4', '5482078'), - (951, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dlOnPVX4', '5482793'), - (951, 1578, 'attending', '2022-08-02 14:32:55', '2025-12-17 19:47:21', 'dlOnPVX4', '5483073'), - (951, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dlOnPVX4', '5488912'), - (951, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dlOnPVX4', '5492192'), - (951, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dlOnPVX4', '5493139'), - (951, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dlOnPVX4', '5493200'), - (951, 1592, 'attending', '2022-08-09 17:54:36', '2025-12-17 19:47:22', 'dlOnPVX4', '5494031'), - (951, 1593, 'attending', '2022-08-09 17:54:54', '2025-12-17 19:47:22', 'dlOnPVX4', '5494043'), - (951, 1602, 'attending', '2022-08-13 16:46:37', '2025-12-17 19:47:22', 'dlOnPVX4', '5497383'), - (951, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dlOnPVX4', '5502188'), - (951, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dlOnPVX4', '5505059'), - (951, 1615, 'attending', '2022-08-27 16:03:33', '2025-12-17 19:47:23', 'dlOnPVX4', '5509055'), - (951, 1619, 'attending', '2022-08-23 17:40:34', '2025-12-17 19:47:23', 'dlOnPVX4', '5512862'), - (951, 1621, 'not_attending', '2022-08-23 17:40:19', '2025-12-17 19:47:23', 'dlOnPVX4', '5513531'), - (951, 1623, 'not_attending', '2022-08-23 17:40:22', '2025-12-17 19:47:23', 'dlOnPVX4', '5513678'), - (951, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dlOnPVX4', '5513985'), - (951, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'dlOnPVX4', '5519981'), - (951, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dlOnPVX4', '5522550'), - (951, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dlOnPVX4', '5534683'), - (951, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dlOnPVX4', '5537735'), - (951, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dlOnPVX4', '5540859'), - (951, 1642, 'not_attending', '2022-09-07 16:36:00', '2025-12-17 19:47:24', 'dlOnPVX4', '5544227'), - (951, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dlOnPVX4', '5546619'), - (951, 1648, 'not_attending', '2022-09-07 16:35:53', '2025-12-17 19:47:24', 'dlOnPVX4', '5548974'), - (951, 1652, 'not_attending', '2022-09-07 16:36:03', '2025-12-17 19:47:24', 'dlOnPVX4', '5552671'), - (951, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dlOnPVX4', '5555245'), - (951, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dlOnPVX4', '5557747'), - (951, 1661, 'maybe', '2022-09-09 16:00:05', '2025-12-17 19:47:24', 'dlOnPVX4', '5560254'), - (951, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dlOnPVX4', '5560255'), - (951, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dlOnPVX4', '5562906'), - (951, 1674, 'attending', '2022-09-18 17:35:01', '2025-12-17 19:47:12', 'dlOnPVX4', '5593112'), - (951, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dlOnPVX4', '5600604'), - (951, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dlOnPVX4', '5605544'), - (951, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'dlOnPVX4', '5606737'), - (951, 1705, 'attending', '2022-10-02 19:07:39', '2025-12-17 19:47:12', 'dlOnPVX4', '5612209'), - (951, 1708, 'attending', '2022-10-05 20:28:54', '2025-12-17 19:47:12', 'dlOnPVX4', '5617648'), - (951, 1713, 'maybe', '2022-10-15 19:51:55', '2025-12-17 19:47:13', 'dlOnPVX4', '5622108'), - (951, 1714, 'attending', '2022-10-23 19:53:19', '2025-12-17 19:47:14', 'dlOnPVX4', '5622347'), - (951, 1719, 'attending', '2022-10-05 20:28:46', '2025-12-17 19:47:12', 'dlOnPVX4', '5630958'), - (951, 1720, 'maybe', '2022-10-15 19:48:05', '2025-12-17 19:47:12', 'dlOnPVX4', '5630959'), - (951, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dlOnPVX4', '5630960'), - (951, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dlOnPVX4', '5630961'), - (951, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dlOnPVX4', '5630962'), - (951, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dlOnPVX4', '5630966'), - (951, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dlOnPVX4', '5630967'), - (951, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dlOnPVX4', '5630968'), - (951, 1727, 'attending', '2022-12-03 23:50:46', '2025-12-17 19:47:16', 'dlOnPVX4', '5630969'), - (951, 1728, 'attending', '2022-11-30 17:27:43', '2025-12-17 19:47:17', 'dlOnPVX4', '5630970'), - (951, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dlOnPVX4', '5635406'), - (951, 1736, 'attending', '2022-11-01 20:15:14', '2025-12-17 19:47:15', 'dlOnPVX4', '5638456'), - (951, 1737, 'attending', '2022-11-29 17:42:05', '2025-12-17 19:47:16', 'dlOnPVX4', '5638457'), - (951, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dlOnPVX4', '5638765'), - (951, 1739, 'attending', '2022-10-12 22:21:15', '2025-12-17 19:47:14', 'dlOnPVX4', '5640097'), - (951, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dlOnPVX4', '5640843'), - (951, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dlOnPVX4', '5641521'), - (951, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dlOnPVX4', '5642818'), - (951, 1750, 'attending', '2022-11-01 17:40:59', '2025-12-17 19:47:15', 'dlOnPVX4', '5652365'), - (951, 1751, 'attending', '2022-10-15 19:51:35', '2025-12-17 19:47:13', 'dlOnPVX4', '5652395'), - (951, 1758, 'attending', '2022-10-21 13:36:52', '2025-12-17 19:47:13', 'dlOnPVX4', '5668976'), - (951, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dlOnPVX4', '5670445'), - (951, 1763, 'attending', '2022-11-11 15:01:58', '2025-12-17 19:47:15', 'dlOnPVX4', '5670803'), - (951, 1764, 'attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dlOnPVX4', '5671637'), - (951, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dlOnPVX4', '5672329'), - (951, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dlOnPVX4', '5674057'), - (951, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dlOnPVX4', '5674060'), - (951, 1768, 'attending', '2022-11-19 16:41:35', '2025-12-17 19:47:16', 'dlOnPVX4', '5674062'), - (951, 1770, 'attending', '2022-10-28 16:44:38', '2025-12-17 19:47:14', 'dlOnPVX4', '5676936'), - (951, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dlOnPVX4', '5677461'), - (951, 1781, 'attending', '2022-11-02 15:38:43', '2025-12-17 19:47:15', 'dlOnPVX4', '5696178'), - (951, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dlOnPVX4', '5698046'), - (951, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dlOnPVX4', '5699760'), - (951, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dlOnPVX4', '5741601'), - (951, 1796, 'attending', '2022-11-18 17:10:05', '2025-12-17 19:47:16', 'dlOnPVX4', '5756755'), - (951, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dlOnPVX4', '5763458'), - (951, 1804, 'attending', '2023-01-24 23:04:25', '2025-12-17 19:47:06', 'dlOnPVX4', '5764674'), - (951, 1805, 'attending', '2023-01-31 00:38:06', '2025-12-17 19:47:06', 'dlOnPVX4', '5764675'), - (951, 1812, 'attending', '2023-03-11 21:36:49', '2025-12-17 19:47:09', 'dlOnPVX4', '5764682'), - (951, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dlOnPVX4', '5774172'), - (951, 1828, 'attending', '2022-11-29 17:42:14', '2025-12-17 19:47:16', 'dlOnPVX4', '5778865'), - (951, 1829, 'attending', '2022-12-01 13:44:40', '2025-12-17 19:47:16', 'dlOnPVX4', '5778867'), - (951, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'dlOnPVX4', '5818247'), - (951, 1834, 'attending', '2022-12-08 16:06:39', '2025-12-17 19:47:17', 'dlOnPVX4', '5819470'), - (951, 1835, 'maybe', '2022-12-08 16:06:44', '2025-12-17 19:47:05', 'dlOnPVX4', '5819471'), - (951, 1841, 'attending', '2023-01-02 18:54:43', '2025-12-17 19:47:05', 'dlOnPVX4', '5827665'), - (951, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dlOnPVX4', '5827739'), - (951, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dlOnPVX4', '5844306'), - (951, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dlOnPVX4', '5850159'), - (951, 1848, 'attending', '2022-12-27 23:57:38', '2025-12-17 19:47:05', 'dlOnPVX4', '5852466'), - (951, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dlOnPVX4', '5858999'), - (951, 1852, 'attending', '2023-01-11 00:52:09', '2025-12-17 19:47:05', 'dlOnPVX4', '5869898'), - (951, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dlOnPVX4', '5871984'), - (951, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dlOnPVX4', '5876354'), - (951, 1865, 'attending', '2023-01-24 23:04:23', '2025-12-17 19:47:06', 'dlOnPVX4', '5879676'), - (951, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dlOnPVX4', '5880939'), - (951, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dlOnPVX4', '5880940'), - (951, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dlOnPVX4', '5880942'), - (951, 1869, 'attending', '2023-02-26 21:45:47', '2025-12-17 19:47:09', 'dlOnPVX4', '5880943'), - (951, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dlOnPVX4', '5887890'), - (951, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dlOnPVX4', '5888598'), - (951, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dlOnPVX4', '5893260'), - (951, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dlOnPVX4', '5899826'), - (951, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dlOnPVX4', '5900199'), - (951, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dlOnPVX4', '5900200'), - (951, 1891, 'attending', '2023-03-22 17:10:09', '2025-12-17 19:46:56', 'dlOnPVX4', '5900202'), - (951, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dlOnPVX4', '5900203'), - (951, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dlOnPVX4', '5901108'), - (951, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dlOnPVX4', '5901126'), - (951, 1897, 'attending', '2023-02-10 18:30:33', '2025-12-17 19:47:07', 'dlOnPVX4', '5901128'), - (951, 1898, 'attending', '2023-02-01 19:56:48', '2025-12-17 19:47:06', 'dlOnPVX4', '5901263'), - (951, 1900, 'attending', '2023-02-01 19:57:06', '2025-12-17 19:47:06', 'dlOnPVX4', '5901331'), - (951, 1902, 'attending', '2023-02-01 19:56:50', '2025-12-17 19:47:06', 'dlOnPVX4', '5902254'), - (951, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dlOnPVX4', '5909655'), - (951, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dlOnPVX4', '5910522'), - (951, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dlOnPVX4', '5910526'), - (951, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dlOnPVX4', '5910528'), - (951, 1922, 'not_attending', '2023-02-12 23:05:39', '2025-12-17 19:47:07', 'dlOnPVX4', '5916219'), - (951, 1924, 'not_attending', '2023-02-16 23:48:00', '2025-12-17 19:47:07', 'dlOnPVX4', '5931095'), - (951, 1927, 'attending', '2023-02-26 21:46:06', '2025-12-17 19:47:10', 'dlOnPVX4', '5932621'), - (951, 1930, 'attending', '2023-02-20 20:55:00', '2025-12-17 19:47:08', 'dlOnPVX4', '5933462'), - (951, 1931, 'attending', '2023-02-20 20:54:49', '2025-12-17 19:47:08', 'dlOnPVX4', '5933464'), - (951, 1933, 'attending', '2023-02-20 20:55:22', '2025-12-17 19:47:08', 'dlOnPVX4', '5936234'), - (951, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dlOnPVX4', '5958351'), - (951, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dlOnPVX4', '5959751'), - (951, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dlOnPVX4', '5959755'), - (951, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dlOnPVX4', '5960055'), - (951, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dlOnPVX4', '5961684'), - (951, 1943, 'attending', '2023-03-10 15:31:17', '2025-12-17 19:47:10', 'dlOnPVX4', '5962091'), - (951, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dlOnPVX4', '5962132'), - (951, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dlOnPVX4', '5962133'), - (951, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dlOnPVX4', '5962134'), - (951, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dlOnPVX4', '5962317'), - (951, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dlOnPVX4', '5962318'), - (951, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dlOnPVX4', '5965933'), - (951, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dlOnPVX4', '5967014'), - (951, 1956, 'attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dlOnPVX4', '5972763'), - (951, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dlOnPVX4', '5972815'), - (951, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dlOnPVX4', '5974016'), - (951, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dlOnPVX4', '5981515'), - (951, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dlOnPVX4', '5993516'), - (951, 1977, 'attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dlOnPVX4', '5998939'), - (951, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dlOnPVX4', '6028191'), - (951, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dlOnPVX4', '6040066'), - (951, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dlOnPVX4', '6042717'), - (951, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dlOnPVX4', '6044838'), - (951, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dlOnPVX4', '6044839'), - (951, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dlOnPVX4', '6045684'), - (951, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dlOnPVX4', '6050104'), - (951, 2001, 'attending', '2023-04-05 16:55:17', '2025-12-17 19:46:58', 'dlOnPVX4', '6052569'), - (951, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dlOnPVX4', '6053195'), - (951, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dlOnPVX4', '6053198'), - (951, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dlOnPVX4', '6056085'), - (951, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dlOnPVX4', '6056916'), - (951, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dlOnPVX4', '6059290'), - (951, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dlOnPVX4', '6060328'), - (951, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dlOnPVX4', '6061037'), - (951, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dlOnPVX4', '6061039'), - (951, 2017, 'attending', '2023-04-12 22:47:58', '2025-12-17 19:46:59', 'dlOnPVX4', '6061099'), - (951, 2019, 'attending', '2023-04-18 18:53:39', '2025-12-17 19:47:00', 'dlOnPVX4', '6062934'), - (951, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dlOnPVX4', '6067245'), - (951, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dlOnPVX4', '6068094'), - (951, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dlOnPVX4', '6068252'), - (951, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dlOnPVX4', '6068253'), - (951, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dlOnPVX4', '6068254'), - (951, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dlOnPVX4', '6068280'), - (951, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dlOnPVX4', '6069093'), - (951, 2040, 'attending', '2023-04-28 00:02:30', '2025-12-17 19:47:01', 'dlOnPVX4', '6072453'), - (951, 2041, 'attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dlOnPVX4', '6072528'), - (951, 2043, 'attending', '2023-04-26 14:45:54', '2025-12-17 19:47:01', 'dlOnPVX4', '6073023'), - (951, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dlOnPVX4', '6079840'), - (951, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dlOnPVX4', '6083398'), - (951, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dlOnPVX4', '6093504'), - (951, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dlOnPVX4', '6097414'), - (951, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dlOnPVX4', '6097442'), - (951, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dlOnPVX4', '6097684'), - (951, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dlOnPVX4', '6098762'), - (951, 2064, 'not_attending', '2023-06-24 19:26:58', '2025-12-17 19:46:50', 'dlOnPVX4', '6099988'), - (951, 2065, 'attending', '2023-06-16 21:50:08', '2025-12-17 19:46:49', 'dlOnPVX4', '6101169'), - (951, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dlOnPVX4', '6101361'), - (951, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dlOnPVX4', '6101362'), - (951, 2070, 'attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dlOnPVX4', '6103752'), - (951, 2074, 'attending', '2023-05-22 18:09:48', '2025-12-17 19:47:03', 'dlOnPVX4', '6107312'), - (951, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dlOnPVX4', '6107314'), - (951, 2076, 'attending', '2023-05-19 14:53:20', '2025-12-17 19:47:03', 'dlOnPVX4', '6108350'), - (951, 2080, 'attending', '2023-05-22 18:09:54', '2025-12-17 19:47:04', 'dlOnPVX4', '6114677'), - (951, 2081, 'attending', '2023-05-22 22:18:04', '2025-12-17 19:47:03', 'dlOnPVX4', '6115611'), - (951, 2084, 'attending', '2023-05-25 22:00:07', '2025-12-17 19:47:04', 'dlOnPVX4', '6117127'), - (951, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dlOnPVX4', '6120034'), - (951, 2093, 'attending', '2023-06-12 18:52:46', '2025-12-17 19:47:04', 'dlOnPVX4', '6132598'), - (951, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dlOnPVX4', '6136733'), - (951, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dlOnPVX4', '6137989'), - (951, 2099, 'attending', '2023-06-12 18:52:50', '2025-12-17 19:46:49', 'dlOnPVX4', '6143012'), - (951, 2103, 'attending', '2023-06-16 21:50:02', '2025-12-17 19:46:50', 'dlOnPVX4', '6149451'), - (951, 2105, 'attending', '2023-06-17 20:59:00', '2025-12-17 19:46:50', 'dlOnPVX4', '6149551'), - (951, 2106, 'attending', '2023-06-18 20:01:50', '2025-12-17 19:46:50', 'dlOnPVX4', '6150479'), - (951, 2107, 'attending', '2023-06-18 20:01:57', '2025-12-17 19:46:50', 'dlOnPVX4', '6150480'), - (951, 2108, 'attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dlOnPVX4', '6150864'), - (951, 2109, 'attending', '2023-06-19 16:29:37', '2025-12-17 19:46:50', 'dlOnPVX4', '6152821'), - (951, 2110, 'attending', '2023-06-21 06:36:03', '2025-12-17 19:46:50', 'dlOnPVX4', '6155491'), - (951, 2116, 'not_attending', '2023-07-07 19:47:49', '2025-12-17 19:46:51', 'dlOnPVX4', '6163389'), - (951, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dlOnPVX4', '6164417'), - (951, 2119, 'attending', '2023-06-27 18:58:21', '2025-12-17 19:46:50', 'dlOnPVX4', '6165461'), - (951, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dlOnPVX4', '6166388'), - (951, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dlOnPVX4', '6176439'), - (951, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dlOnPVX4', '6180853'), - (951, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dlOnPVX4', '6182410'), - (951, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dlOnPVX4', '6185812'), - (951, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dlOnPVX4', '6187651'), - (951, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dlOnPVX4', '6187963'), - (951, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dlOnPVX4', '6187964'), - (951, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dlOnPVX4', '6187966'), - (951, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dlOnPVX4', '6187967'), - (951, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dlOnPVX4', '6187969'), - (951, 2139, 'attending', '2023-07-07 19:48:06', '2025-12-17 19:46:52', 'dlOnPVX4', '6188027'), - (951, 2140, 'attending', '2023-07-07 19:48:15', '2025-12-17 19:46:52', 'dlOnPVX4', '6188074'), - (951, 2142, 'attending', '2023-07-17 21:47:04', '2025-12-17 19:46:52', 'dlOnPVX4', '6333850'), - (951, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dlOnPVX4', '6334878'), - (951, 2146, 'attending', '2023-07-21 14:42:46', '2025-12-17 19:46:53', 'dlOnPVX4', '6335638'), - (951, 2149, 'attending', '2023-07-13 18:26:47', '2025-12-17 19:46:53', 'dlOnPVX4', '6335682'), - (951, 2152, 'not_attending', '2023-07-12 15:45:44', '2025-12-17 19:46:52', 'dlOnPVX4', '6337021'), - (951, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dlOnPVX4', '6337236'), - (951, 2155, 'maybe', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dlOnPVX4', '6337970'), - (951, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dlOnPVX4', '6338308'), - (951, 2158, 'attending', '2023-07-17 21:47:39', '2025-12-17 19:46:53', 'dlOnPVX4', '6338353'), - (951, 2159, 'attending', '2023-07-20 01:55:36', '2025-12-17 19:46:53', 'dlOnPVX4', '6338355'), - (951, 2160, 'attending', '2023-07-20 01:55:43', '2025-12-17 19:46:54', 'dlOnPVX4', '6338358'), - (951, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dlOnPVX4', '6340845'), - (951, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dlOnPVX4', '6341710'), - (951, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dlOnPVX4', '6342044'), - (951, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dlOnPVX4', '6342298'), - (951, 2171, 'attending', '2023-07-17 21:48:44', '2025-12-17 19:46:54', 'dlOnPVX4', '6342328'), - (951, 2174, 'not_attending', '2023-07-20 23:01:18', '2025-12-17 19:46:53', 'dlOnPVX4', '6343294'), - (951, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dlOnPVX4', '6347034'), - (951, 2177, 'attending', '2023-08-12 14:15:31', '2025-12-17 19:46:55', 'dlOnPVX4', '6347053'), - (951, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dlOnPVX4', '6347056'), - (951, 2183, 'attending', '2023-07-28 19:09:26', '2025-12-17 19:46:54', 'dlOnPVX4', '6353008'), - (951, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dlOnPVX4', '6353830'), - (951, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dlOnPVX4', '6353831'), - (951, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dlOnPVX4', '6357867'), - (951, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dlOnPVX4', '6358652'), - (951, 2199, 'attending', '2023-08-15 23:17:45', '2025-12-17 19:46:55', 'dlOnPVX4', '6359849'), - (951, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'dlOnPVX4', '6359940'), - (951, 2204, 'attending', '2023-08-16 15:44:19', '2025-12-17 19:46:55', 'dlOnPVX4', '6361542'), - (951, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dlOnPVX4', '6361709'), - (951, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dlOnPVX4', '6361710'), - (951, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dlOnPVX4', '6361711'), - (951, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dlOnPVX4', '6361712'), - (951, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dlOnPVX4', '6361713'), - (951, 2225, 'maybe', '2023-08-21 13:03:52', '2025-12-17 19:46:55', 'dlOnPVX4', '6368434'), - (951, 2231, 'attending', '2023-08-21 13:03:27', '2025-12-17 19:46:55', 'dlOnPVX4', '6374748'), - (951, 2232, 'attending', '2023-08-23 12:50:37', '2025-12-17 19:46:55', 'dlOnPVX4', '6374818'), - (951, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dlOnPVX4', '6382573'), - (951, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'dlOnPVX4', '6383149'), - (951, 2239, 'not_attending', '2023-08-31 22:00:58', '2025-12-17 19:46:56', 'dlOnPVX4', '6387592'), - (951, 2240, 'maybe', '2023-09-03 22:19:13', '2025-12-17 19:46:56', 'dlOnPVX4', '6388603'), - (951, 2241, 'attending', '2023-09-03 22:19:16', '2025-12-17 19:46:44', 'dlOnPVX4', '6388604'), - (951, 2242, 'maybe', '2023-09-06 19:14:35', '2025-12-17 19:46:45', 'dlOnPVX4', '6388606'), - (951, 2244, 'not_attending', '2023-09-09 16:38:19', '2025-12-17 19:46:44', 'dlOnPVX4', '6393700'), - (951, 2247, 'attending', '2023-09-06 19:14:21', '2025-12-17 19:46:56', 'dlOnPVX4', '6394628'), - (951, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dlOnPVX4', '6394629'), - (951, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dlOnPVX4', '6394631'), - (951, 2252, 'attending', '2023-09-06 19:15:46', '2025-12-17 19:46:45', 'dlOnPVX4', '6396837'), - (951, 2253, 'maybe', '2023-09-10 15:34:30', '2025-12-17 19:46:45', 'dlOnPVX4', '6401811'), - (951, 2257, 'attending', '2023-09-16 18:21:10', '2025-12-17 19:46:44', 'dlOnPVX4', '6408068'), - (951, 2263, 'maybe', '2023-10-03 17:50:26', '2025-12-17 19:46:45', 'dlOnPVX4', '6429351'), - (951, 2266, 'not_attending', '2023-10-02 17:01:45', '2025-12-17 19:46:45', 'dlOnPVX4', '6439635'), - (951, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dlOnPVX4', '6440863'), - (951, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dlOnPVX4', '6445440'), - (951, 2275, 'attending', '2023-10-07 19:57:44', '2025-12-17 19:46:45', 'dlOnPVX4', '6453777'), - (951, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dlOnPVX4', '6453951'), - (951, 2285, 'attending', '2023-10-27 17:47:15', '2025-12-17 19:46:47', 'dlOnPVX4', '6460929'), - (951, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dlOnPVX4', '6461696'), - (951, 2288, 'attending', '2023-10-11 20:55:13', '2025-12-17 19:46:46', 'dlOnPVX4', '6462068'), - (951, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dlOnPVX4', '6462129'), - (951, 2290, 'attending', '2023-10-11 20:55:28', '2025-12-17 19:46:46', 'dlOnPVX4', '6462214'), - (951, 2292, 'attending', '2023-10-19 20:29:22', '2025-12-17 19:46:47', 'dlOnPVX4', '6462216'), - (951, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dlOnPVX4', '6463218'), - (951, 2296, 'attending', '2023-10-15 20:47:36', '2025-12-17 19:46:47', 'dlOnPVX4', '6468393'), - (951, 2299, 'attending', '2023-10-19 20:29:00', '2025-12-17 19:46:46', 'dlOnPVX4', '6472181'), - (951, 2300, 'not_attending', '2023-10-15 20:50:04', '2025-12-17 19:46:47', 'dlOnPVX4', '6472185'), - (951, 2301, 'attending', '2023-10-19 20:29:13', '2025-12-17 19:46:46', 'dlOnPVX4', '6474276'), - (951, 2303, 'attending', '2023-10-28 17:19:10', '2025-12-17 19:46:47', 'dlOnPVX4', '6482691'), - (951, 2304, 'attending', '2023-10-30 23:18:52', '2025-12-17 19:46:47', 'dlOnPVX4', '6482693'), - (951, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dlOnPVX4', '6484200'), - (951, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dlOnPVX4', '6484680'), - (951, 2310, 'attending', '2023-11-02 15:51:58', '2025-12-17 19:46:47', 'dlOnPVX4', '6487709'), - (951, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dlOnPVX4', '6507741'), - (951, 2318, 'attending', '2023-10-30 17:10:06', '2025-12-17 19:46:47', 'dlOnPVX4', '6508566'), - (951, 2322, 'attending', '2023-11-02 15:51:50', '2025-12-17 19:46:48', 'dlOnPVX4', '6514659'), - (951, 2323, 'attending', '2023-11-02 15:52:01', '2025-12-17 19:46:48', 'dlOnPVX4', '6514660'), - (951, 2324, 'attending', '2023-11-02 15:52:03', '2025-12-17 19:46:49', 'dlOnPVX4', '6514662'), - (951, 2325, 'not_attending', '2023-12-16 02:14:40', '2025-12-17 19:46:36', 'dlOnPVX4', '6514663'), - (951, 2326, 'not_attending', '2023-11-06 17:00:27', '2025-12-17 19:46:48', 'dlOnPVX4', '6514805'), - (951, 2329, 'attending', '2023-11-02 15:48:22', '2025-12-17 19:46:47', 'dlOnPVX4', '6517138'), - (951, 2330, 'attending', '2023-11-06 17:00:34', '2025-12-17 19:46:47', 'dlOnPVX4', '6517941'), - (951, 2331, 'attending', '2023-11-15 00:36:30', '2025-12-17 19:46:47', 'dlOnPVX4', '6518640'), - (951, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dlOnPVX4', '6519103'), - (951, 2335, 'not_attending', '2023-11-09 16:19:47', '2025-12-17 19:46:47', 'dlOnPVX4', '6534890'), - (951, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dlOnPVX4', '6535681'), - (951, 2338, 'attending', '2023-11-17 21:44:57', '2025-12-17 19:46:48', 'dlOnPVX4', '6538868'), - (951, 2345, 'attending', '2023-11-29 20:39:39', '2025-12-17 19:46:48', 'dlOnPVX4', '6582414'), - (951, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlOnPVX4', '6584747'), - (951, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlOnPVX4', '6587097'), - (951, 2362, 'attending', '2023-12-04 18:32:09', '2025-12-17 19:46:49', 'dlOnPVX4', '6605708'), - (951, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlOnPVX4', '6609022'), - (951, 2365, 'attending', '2023-12-22 15:55:45', '2025-12-17 19:46:37', 'dlOnPVX4', '6613093'), - (951, 2370, 'not_attending', '2023-12-12 18:02:23', '2025-12-17 19:46:36', 'dlOnPVX4', '6623765'), - (951, 2373, 'attending', '2023-12-26 16:24:32', '2025-12-17 19:46:38', 'dlOnPVX4', '6632678'), - (951, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlOnPVX4', '6632757'), - (951, 2377, 'attending', '2023-12-29 21:52:17', '2025-12-17 19:46:37', 'dlOnPVX4', '6643448'), - (951, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlOnPVX4', '6644187'), - (951, 2380, 'attending', '2023-12-30 21:40:57', '2025-12-17 19:46:37', 'dlOnPVX4', '6645105'), - (951, 2381, 'maybe', '2024-01-02 17:11:44', '2025-12-17 19:46:37', 'dlOnPVX4', '6646398'), - (951, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlOnPVX4', '6648951'), - (951, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlOnPVX4', '6648952'), - (951, 2388, 'attending', '2024-01-03 02:47:25', '2025-12-17 19:46:37', 'dlOnPVX4', '6649244'), - (951, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dlOnPVX4', '6655401'), - (951, 2399, 'attending', '2024-01-07 18:24:15', '2025-12-17 19:46:37', 'dlOnPVX4', '6657583'), - (951, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlOnPVX4', '6661585'), - (951, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlOnPVX4', '6661588'), - (951, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlOnPVX4', '6661589'), - (951, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlOnPVX4', '6699906'), - (951, 2408, 'attending', '2024-01-23 19:47:18', '2025-12-17 19:46:40', 'dlOnPVX4', '6699907'), - (951, 2409, 'attending', '2024-01-23 19:47:20', '2025-12-17 19:46:41', 'dlOnPVX4', '6699909'), - (951, 2410, 'attending', '2024-01-23 19:47:22', '2025-12-17 19:46:41', 'dlOnPVX4', '6699911'), - (951, 2411, 'maybe', '2024-02-01 17:03:07', '2025-12-17 19:46:41', 'dlOnPVX4', '6699913'), - (951, 2413, 'maybe', '2024-02-07 22:14:42', '2025-12-17 19:46:42', 'dlOnPVX4', '6700719'), - (951, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlOnPVX4', '6701109'), - (951, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlOnPVX4', '6705219'), - (951, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlOnPVX4', '6710153'), - (951, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlOnPVX4', '6711552'), - (951, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dlOnPVX4', '6711553'), - (951, 2431, 'attending', '2024-01-23 19:47:35', '2025-12-17 19:46:41', 'dlOnPVX4', '6712394'), - (951, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlOnPVX4', '6722688'), - (951, 2438, 'attending', '2024-02-01 17:03:00', '2025-12-17 19:46:41', 'dlOnPVX4', '6730201'), - (951, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlOnPVX4', '6730620'), - (951, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlOnPVX4', '6730642'), - (951, 2451, 'not_attending', '2024-02-07 22:15:10', '2025-12-17 19:46:41', 'dlOnPVX4', '6740333'), - (951, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlOnPVX4', '6740364'), - (951, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlOnPVX4', '6743829'), - (951, 2462, 'attending', '2024-02-11 05:16:18', '2025-12-17 19:46:41', 'dlOnPVX4', '6744701'), - (951, 2467, 'attending', '2024-02-16 03:56:12', '2025-12-17 19:46:43', 'dlOnPVX4', '7029987'), - (951, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlOnPVX4', '7030380'), - (951, 2471, 'attending', '2024-02-23 03:35:57', '2025-12-17 19:46:42', 'dlOnPVX4', '7032425'), - (951, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlOnPVX4', '7033677'), - (951, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlOnPVX4', '7035415'), - (951, 2477, 'attending', '2024-02-22 22:23:05', '2025-12-17 19:46:42', 'dlOnPVX4', '7035692'), - (951, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlOnPVX4', '7044715'), - (951, 2487, 'maybe', '2024-03-07 15:27:03', '2025-12-17 19:46:33', 'dlOnPVX4', '7049279'), - (951, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlOnPVX4', '7050318'), - (951, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlOnPVX4', '7050319'), - (951, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlOnPVX4', '7050322'), - (951, 2493, 'attending', '2024-03-01 00:58:55', '2025-12-17 19:46:32', 'dlOnPVX4', '7052471'), - (951, 2494, 'attending', '2024-03-01 00:58:56', '2025-12-17 19:46:32', 'dlOnPVX4', '7052472'), - (951, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlOnPVX4', '7057804'), - (951, 2500, 'maybe', '2024-03-06 23:12:03', '2025-12-17 19:46:43', 'dlOnPVX4', '7058603'), - (951, 2501, 'attending', '2024-03-05 14:55:12', '2025-12-17 19:46:43', 'dlOnPVX4', '7059866'), - (951, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlOnPVX4', '7072824'), - (951, 2508, 'attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlOnPVX4', '7074348'), - (951, 2509, 'attending', '2024-03-12 16:30:09', '2025-12-17 19:46:33', 'dlOnPVX4', '7074349'), - (951, 2511, 'attending', '2024-03-29 16:57:53', '2025-12-17 19:46:33', 'dlOnPVX4', '7074351'), - (951, 2512, 'attending', '2024-04-01 17:43:38', '2025-12-17 19:46:33', 'dlOnPVX4', '7074352'), - (951, 2514, 'attending', '2024-04-22 14:08:55', '2025-12-17 19:46:34', 'dlOnPVX4', '7074354'), - (951, 2516, 'attending', '2024-04-24 20:24:43', '2025-12-17 19:46:35', 'dlOnPVX4', '7074356'), - (951, 2522, 'attending', '2024-07-15 17:32:21', '2025-12-17 19:46:30', 'dlOnPVX4', '7074362'), - (951, 2523, 'attending', '2024-05-30 22:44:15', '2025-12-17 19:46:36', 'dlOnPVX4', '7074363'), - (951, 2524, 'attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dlOnPVX4', '7074364'), - (951, 2525, 'attending', '2024-06-04 14:10:32', '2025-12-17 19:46:28', 'dlOnPVX4', '7074365'), - (951, 2526, 'attending', '2024-08-01 23:50:38', '2025-12-17 19:46:31', 'dlOnPVX4', '7074366'), - (951, 2530, 'attending', '2024-08-14 22:53:53', '2025-12-17 19:46:31', 'dlOnPVX4', '7074373'), - (951, 2531, 'attending', '2024-08-29 21:13:03', '2025-12-17 19:46:32', 'dlOnPVX4', '7074378'), - (951, 2539, 'attending', '2024-04-01 19:09:19', '2025-12-17 19:46:33', 'dlOnPVX4', '7085486'), - (951, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlOnPVX4', '7089267'), - (951, 2543, 'attending', '2024-04-03 14:16:41', '2025-12-17 19:46:33', 'dlOnPVX4', '7091456'), - (951, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlOnPVX4', '7098747'), - (951, 2553, 'attending', '2024-03-30 01:59:23', '2025-12-17 19:46:33', 'dlOnPVX4', '7113468'), - (951, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlOnPVX4', '7114856'), - (951, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlOnPVX4', '7114951'), - (951, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlOnPVX4', '7114955'), - (951, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlOnPVX4', '7114956'), - (951, 2558, 'attending', '2024-04-08 15:27:54', '2025-12-17 19:46:35', 'dlOnPVX4', '7114957'), - (951, 2563, 'attending', '2024-04-07 20:47:20', '2025-12-17 19:46:33', 'dlOnPVX4', '7134734'), - (951, 2564, 'attending', '2024-04-06 20:14:39', '2025-12-17 19:46:33', 'dlOnPVX4', '7134735'), - (951, 2566, 'attending', '2024-04-03 14:16:25', '2025-12-17 19:46:34', 'dlOnPVX4', '7140664'), - (951, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlOnPVX4', '7153615'), - (951, 2569, 'attending', '2024-04-07 16:45:08', '2025-12-17 19:46:33', 'dlOnPVX4', '7154056'), - (951, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dlOnPVX4', '7159484'), - (951, 2581, 'maybe', '2024-04-22 14:09:25', '2025-12-17 19:46:34', 'dlOnPVX4', '7169048'), - (951, 2585, 'maybe', '2024-04-22 14:09:12', '2025-12-17 19:46:34', 'dlOnPVX4', '7175828'), - (951, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dlOnPVX4', '7178446'), - (951, 2592, 'attending', '2024-04-20 21:22:01', '2025-12-17 19:46:34', 'dlOnPVX4', '7180959'), - (951, 2596, 'attending', '2024-04-22 14:08:53', '2025-12-17 19:46:34', 'dlOnPVX4', '7183788'), - (951, 2601, 'attending', '2024-04-24 20:24:11', '2025-12-17 19:46:34', 'dlOnPVX4', '7197023'), - (951, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dlOnPVX4', '7220467'), - (951, 2604, 'attending', '2024-05-29 15:42:14', '2025-12-17 19:46:36', 'dlOnPVX4', '7225670'), - (951, 2609, 'attending', '2024-05-01 22:33:45', '2025-12-17 19:46:35', 'dlOnPVX4', '7240354'), - (951, 2610, 'not_attending', '2024-04-30 22:40:05', '2025-12-17 19:46:35', 'dlOnPVX4', '7241797'), - (951, 2616, 'attending', '2024-05-06 17:33:12', '2025-12-17 19:46:35', 'dlOnPVX4', '7250296'), - (951, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dlOnPVX4', '7251633'), - (951, 2623, 'attending', '2024-05-10 13:57:53', '2025-12-17 19:46:35', 'dlOnPVX4', '7263048'), - (951, 2626, 'not_attending', '2024-05-12 15:23:55', '2025-12-17 19:46:35', 'dlOnPVX4', '7264723'), - (951, 2627, 'not_attending', '2024-05-12 15:23:59', '2025-12-17 19:46:35', 'dlOnPVX4', '7264724'), - (951, 2628, 'attending', '2024-05-12 15:24:02', '2025-12-17 19:46:36', 'dlOnPVX4', '7264725'), - (951, 2629, 'attending', '2024-05-12 15:24:04', '2025-12-17 19:46:28', 'dlOnPVX4', '7264726'), - (951, 2647, 'attending', '2024-05-29 15:42:51', '2025-12-17 19:46:28', 'dlOnPVX4', '7282057'), - (951, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dlOnPVX4', '7302674'), - (951, 2675, 'attending', '2024-07-31 19:31:30', '2025-12-17 19:46:31', 'dlOnPVX4', '7319481'), - (951, 2676, 'not_attending', '2024-08-04 21:22:40', '2025-12-17 19:46:32', 'dlOnPVX4', '7319482'), - (951, 2677, 'attending', '2024-09-01 21:13:02', '2025-12-17 19:46:26', 'dlOnPVX4', '7319483'), - (951, 2679, 'attending', '2024-06-22 23:16:23', '2025-12-17 19:46:29', 'dlOnPVX4', '7319490'), - (951, 2684, 'attending', '2024-06-10 19:03:12', '2025-12-17 19:46:28', 'dlOnPVX4', '7322001'), - (951, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dlOnPVX4', '7324073'), - (951, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dlOnPVX4', '7324074'), - (951, 2690, 'attending', '2024-07-02 22:21:16', '2025-12-17 19:46:30', 'dlOnPVX4', '7324075'), - (951, 2691, 'attending', '2024-07-02 22:21:17', '2025-12-17 19:46:30', 'dlOnPVX4', '7324076'), - (951, 2692, 'attending', '2024-07-26 23:37:12', '2025-12-17 19:46:30', 'dlOnPVX4', '7324077'), - (951, 2693, 'attending', '2024-08-01 18:19:03', '2025-12-17 19:46:31', 'dlOnPVX4', '7324078'), - (951, 2694, 'attending', '2024-08-01 18:19:04', '2025-12-17 19:46:31', 'dlOnPVX4', '7324079'), - (951, 2695, 'attending', '2024-08-01 18:19:06', '2025-12-17 19:46:31', 'dlOnPVX4', '7324080'), - (951, 2696, 'attending', '2024-08-01 18:19:08', '2025-12-17 19:46:32', 'dlOnPVX4', '7324081'), - (951, 2697, 'maybe', '2024-08-01 18:19:10', '2025-12-17 19:46:32', 'dlOnPVX4', '7324082'), - (951, 2698, 'not_attending', '2024-08-01 18:19:12', '2025-12-17 19:46:24', 'dlOnPVX4', '7324083'), - (951, 2722, 'attending', '2024-07-08 16:48:43', '2025-12-17 19:46:29', 'dlOnPVX4', '7331457'), - (951, 2754, 'attending', '2024-07-08 16:51:31', '2025-12-17 19:46:30', 'dlOnPVX4', '7356752'), - (951, 2755, 'not_attending', '2024-07-10 23:22:47', '2025-12-17 19:46:29', 'dlOnPVX4', '7357808'), - (951, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dlOnPVX4', '7363643'), - (951, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dlOnPVX4', '7368606'), - (951, 2780, 'attending', '2024-07-26 21:26:03', '2025-12-17 19:46:30', 'dlOnPVX4', '7371849'), - (951, 2785, 'attending', '2024-07-31 19:31:27', '2025-12-17 19:46:31', 'dlOnPVX4', '7380988'), - (951, 2786, 'maybe', '2024-07-31 19:35:04', '2025-12-17 19:46:31', 'dlOnPVX4', '7381403'), - (951, 2787, 'attending', '2024-07-31 19:47:51', '2025-12-17 19:46:32', 'dlOnPVX4', '7381568'), - (951, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dlOnPVX4', '7397462'), - (951, 2821, 'not_attending', '2024-09-16 18:31:15', '2025-12-17 19:46:26', 'dlOnPVX4', '7424275'), - (951, 2822, 'attending', '2024-09-30 22:44:40', '2025-12-17 19:46:26', 'dlOnPVX4', '7424276'), - (951, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dlOnPVX4', '7432751'), - (951, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dlOnPVX4', '7432752'), - (951, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dlOnPVX4', '7432753'), - (951, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dlOnPVX4', '7432754'), - (951, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dlOnPVX4', '7432755'), - (951, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dlOnPVX4', '7432756'), - (951, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dlOnPVX4', '7432758'), - (951, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dlOnPVX4', '7432759'), - (951, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dlOnPVX4', '7433834'), - (951, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dlOnPVX4', '7470197'), - (951, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dlOnPVX4', '7685613'), - (951, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dlOnPVX4', '7688194'), - (951, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dlOnPVX4', '7688196'), - (951, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dlOnPVX4', '7688289'), - (951, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dlOnPVX4', '7692763'), - (951, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dlOnPVX4', '7697552'), - (951, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dlOnPVX4', '7699878'), - (951, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dlOnPVX4', '7704043'), - (951, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dlOnPVX4', '7712467'), - (951, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dlOnPVX4', '7713585'), - (951, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dlOnPVX4', '7713586'), - (951, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dlOnPVX4', '7738518'), - (952, 993, 'attending', '2021-09-25 21:12:14', '2025-12-17 19:47:34', 'Pm7QVLP4', '4420741'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (952, 994, 'attending', '2021-10-02 22:10:19', '2025-12-17 19:47:34', 'Pm7QVLP4', '4420742'), - (952, 995, 'attending', '2021-10-04 17:06:22', '2025-12-17 19:47:34', 'Pm7QVLP4', '4420744'), - (952, 996, 'attending', '2021-10-16 21:32:11', '2025-12-17 19:47:35', 'Pm7QVLP4', '4420747'), - (952, 997, 'attending', '2021-10-23 15:19:04', '2025-12-17 19:47:35', 'Pm7QVLP4', '4420748'), - (952, 998, 'maybe', '2021-10-30 20:46:03', '2025-12-17 19:47:36', 'Pm7QVLP4', '4420749'), - (952, 1006, 'attending', '2021-09-29 21:54:27', '2025-12-17 19:47:34', 'Pm7QVLP4', '4438808'), - (952, 1071, 'maybe', '2021-10-04 23:17:31', '2025-12-17 19:47:34', 'Pm7QVLP4', '4516078'), - (952, 1072, 'attending', '2021-10-06 21:37:34', '2025-12-17 19:47:34', 'Pm7QVLP4', '4516287'), - (952, 1074, 'attending', '2021-09-29 21:54:16', '2025-12-17 19:47:34', 'Pm7QVLP4', '4528953'), - (952, 1083, 'attending', '2021-10-14 22:30:20', '2025-12-17 19:47:34', 'Pm7QVLP4', '4566768'), - (952, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Pm7QVLP4', '4568602'), - (952, 1087, 'maybe', '2021-10-16 00:08:47', '2025-12-17 19:47:35', 'Pm7QVLP4', '4572153'), - (952, 1089, 'attending', '2021-10-18 23:04:04', '2025-12-17 19:47:35', 'Pm7QVLP4', '4574712'), - (952, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'Pm7QVLP4', '4585962'), - (952, 1094, 'maybe', '2021-10-29 13:53:59', '2025-12-17 19:47:36', 'Pm7QVLP4', '4587337'), - (952, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Pm7QVLP4', '4596356'), - (952, 1096, 'attending', '2021-10-28 21:56:36', '2025-12-17 19:47:36', 'Pm7QVLP4', '4596453'), - (952, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Pm7QVLP4', '4598860'), - (952, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Pm7QVLP4', '4598861'), - (952, 1099, 'attending', '2021-11-06 20:22:22', '2025-12-17 19:47:36', 'Pm7QVLP4', '4602797'), - (952, 1114, 'not_attending', '2021-11-13 19:51:44', '2025-12-17 19:47:36', 'Pm7QVLP4', '4637896'), - (952, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Pm7QVLP4', '4642994'), - (952, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Pm7QVLP4', '4642995'), - (952, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Pm7QVLP4', '4642996'), - (952, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Pm7QVLP4', '4642997'), - (952, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Pm7QVLP4', '4645687'), - (952, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Pm7QVLP4', '4645698'), - (952, 1128, 'attending', '2021-11-20 22:06:21', '2025-12-17 19:47:37', 'Pm7QVLP4', '4645704'), - (952, 1129, 'not_attending', '2021-11-27 16:53:45', '2025-12-17 19:47:37', 'Pm7QVLP4', '4645705'), - (952, 1130, 'maybe', '2021-12-04 20:49:12', '2025-12-17 19:47:37', 'Pm7QVLP4', '4658824'), - (952, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Pm7QVLP4', '4668385'), - (952, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Pm7QVLP4', '4694407'), - (952, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Pm7QVLP4', '4736497'), - (952, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Pm7QVLP4', '4736499'), - (952, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Pm7QVLP4', '4736500'), - (952, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Pm7QVLP4', '4736503'), - (952, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Pm7QVLP4', '4736504'), - (952, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Pm7QVLP4', '4746789'), - (952, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Pm7QVLP4', '4753929'), - (952, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Pm7QVLP4', '5038850'), - (952, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Pm7QVLP4', '5045826'), - (952, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Pm7QVLP4', '5132533'), - (952, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Pm7QVLP4', '5186582'), - (952, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Pm7QVLP4', '5186583'), - (952, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Pm7QVLP4', '5186585'), - (952, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Pm7QVLP4', '5190437'), - (952, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Pm7QVLP4', '5215989'), - (952, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Pm7QVLP4', '6045684'), - (953, 971, 'attending', '2021-09-08 18:11:45', '2025-12-17 19:47:43', '4ZkLvKWd', '4356801'), - (953, 989, 'attending', '2021-09-10 19:52:07', '2025-12-17 19:47:43', '4ZkLvKWd', '4414282'), - (953, 991, 'attending', '2021-09-10 18:07:39', '2025-12-17 19:47:43', '4ZkLvKWd', '4420738'), - (953, 992, 'attending', '2021-09-20 17:14:26', '2025-12-17 19:47:33', '4ZkLvKWd', '4420739'), - (953, 993, 'not_attending', '2021-09-25 22:27:29', '2025-12-17 19:47:34', '4ZkLvKWd', '4420741'), - (953, 995, 'maybe', '2021-10-09 18:12:22', '2025-12-17 19:47:34', '4ZkLvKWd', '4420744'), - (953, 996, 'not_attending', '2021-10-22 21:51:41', '2025-12-17 19:47:35', '4ZkLvKWd', '4420747'), - (953, 997, 'not_attending', '2021-10-17 18:47:29', '2025-12-17 19:47:35', '4ZkLvKWd', '4420748'), - (953, 998, 'attending', '2021-10-28 02:17:24', '2025-12-17 19:47:36', '4ZkLvKWd', '4420749'), - (953, 1004, 'attending', '2021-09-09 22:48:20', '2025-12-17 19:47:43', '4ZkLvKWd', '4438804'), - (953, 1009, 'not_attending', '2021-10-10 20:58:58', '2025-12-17 19:47:34', '4ZkLvKWd', '4438811'), - (953, 1015, 'attending', '2021-09-18 19:05:03', '2025-12-17 19:47:43', '4ZkLvKWd', '4440800'), - (953, 1016, 'attending', '2021-09-09 22:58:47', '2025-12-17 19:47:43', '4ZkLvKWd', '4441271'), - (953, 1019, 'attending', '2021-09-10 22:09:10', '2025-12-17 19:47:43', '4ZkLvKWd', '4450515'), - (953, 1020, 'attending', '2021-09-12 21:12:52', '2025-12-17 19:47:43', '4ZkLvKWd', '4451787'), - (953, 1021, 'maybe', '2021-09-20 20:00:12', '2025-12-17 19:47:34', '4ZkLvKWd', '4451803'), - (953, 1022, 'attending', '2021-09-15 03:10:37', '2025-12-17 19:47:43', '4ZkLvKWd', '4458628'), - (953, 1023, 'attending', '2021-09-12 21:12:47', '2025-12-17 19:47:43', '4ZkLvKWd', '4461883'), - (953, 1025, 'not_attending', '2021-09-14 00:47:36', '2025-12-17 19:47:43', '4ZkLvKWd', '4462052'), - (953, 1026, 'not_attending', '2021-09-17 02:20:25', '2025-12-17 19:47:43', '4ZkLvKWd', '4472951'), - (953, 1027, 'not_attending', '2021-09-21 03:27:33', '2025-12-17 19:47:34', '4ZkLvKWd', '4472982'), - (953, 1029, 'maybe', '2021-09-17 23:00:40', '2025-12-17 19:47:43', '4ZkLvKWd', '4473063'), - (953, 1030, 'not_attending', '2021-09-16 19:47:35', '2025-12-17 19:47:34', '4ZkLvKWd', '4473064'), - (953, 1031, 'attending', '2021-09-20 18:09:36', '2025-12-17 19:47:34', '4ZkLvKWd', '4473789'), - (953, 1034, 'not_attending', '2021-09-16 19:46:57', '2025-12-17 19:47:43', '4ZkLvKWd', '4486265'), - (953, 1035, 'attending', '2021-09-19 03:35:53', '2025-12-17 19:47:34', '4ZkLvKWd', '4492184'), - (953, 1036, 'not_attending', '2021-09-21 03:26:40', '2025-12-17 19:47:34', '4ZkLvKWd', '4493166'), - (953, 1037, 'attending', '2021-09-21 03:26:49', '2025-12-17 19:47:34', '4ZkLvKWd', '4493233'), - (953, 1064, 'not_attending', '2021-09-21 03:24:57', '2025-12-17 19:47:34', '4ZkLvKWd', '4499526'), - (953, 1067, 'attending', '2021-09-24 20:11:52', '2025-12-17 19:47:34', '4ZkLvKWd', '4508342'), - (953, 1068, 'attending', '2021-09-27 06:57:30', '2025-12-17 19:47:34', '4ZkLvKWd', '4511471'), - (953, 1070, 'attending', '2021-10-01 22:50:55', '2025-12-17 19:47:34', '4ZkLvKWd', '4512562'), - (953, 1071, 'not_attending', '2021-10-04 17:54:59', '2025-12-17 19:47:34', '4ZkLvKWd', '4516078'), - (953, 1072, 'attending', '2021-10-06 22:14:27', '2025-12-17 19:47:34', '4ZkLvKWd', '4516287'), - (953, 1074, 'attending', '2021-09-29 18:27:31', '2025-12-17 19:47:34', '4ZkLvKWd', '4528953'), - (953, 1075, 'not_attending', '2021-10-08 20:13:05', '2025-12-17 19:47:34', '4ZkLvKWd', '4536351'), - (953, 1076, 'not_attending', '2021-10-08 20:13:12', '2025-12-17 19:47:34', '4ZkLvKWd', '4539147'), - (953, 1077, 'attending', '2021-10-10 20:59:17', '2025-12-17 19:47:34', '4ZkLvKWd', '4540903'), - (953, 1078, 'attending', '2021-10-07 21:55:30', '2025-12-17 19:47:34', '4ZkLvKWd', '4541281'), - (953, 1079, 'attending', '2021-10-20 21:29:53', '2025-12-17 19:47:35', '4ZkLvKWd', '4563823'), - (953, 1080, 'not_attending', '2021-10-10 20:58:50', '2025-12-17 19:47:34', '4ZkLvKWd', '4564599'), - (953, 1081, 'not_attending', '2021-10-10 20:59:11', '2025-12-17 19:47:34', '4ZkLvKWd', '4564602'), - (953, 1082, 'attending', '2021-10-15 22:39:11', '2025-12-17 19:47:35', '4ZkLvKWd', '4566762'), - (953, 1083, 'not_attending', '2021-10-14 17:00:17', '2025-12-17 19:47:34', '4ZkLvKWd', '4566768'), - (953, 1086, 'not_attending', '2021-10-13 22:06:41', '2025-12-17 19:47:35', '4ZkLvKWd', '4568602'), - (953, 1087, 'attending', '2021-10-15 18:01:11', '2025-12-17 19:47:35', '4ZkLvKWd', '4572153'), - (953, 1089, 'maybe', '2021-10-17 18:48:28', '2025-12-17 19:47:35', '4ZkLvKWd', '4574712'), - (953, 1090, 'not_attending', '2021-10-17 18:47:22', '2025-12-17 19:47:35', '4ZkLvKWd', '4574713'), - (953, 1091, 'not_attending', '2021-10-17 18:48:22', '2025-12-17 19:47:35', '4ZkLvKWd', '4575829'), - (953, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4ZkLvKWd', '4585962'), - (953, 1094, 'attending', '2021-10-28 02:17:51', '2025-12-17 19:47:36', '4ZkLvKWd', '4587337'), - (953, 1095, 'attending', '2021-10-27 17:50:00', '2025-12-17 19:47:35', '4ZkLvKWd', '4596356'), - (953, 1096, 'attending', '2021-10-29 22:42:44', '2025-12-17 19:47:36', '4ZkLvKWd', '4596453'), - (953, 1097, 'not_attending', '2021-11-03 23:34:41', '2025-12-17 19:47:36', '4ZkLvKWd', '4598860'), - (953, 1098, 'attending', '2021-11-01 19:10:10', '2025-12-17 19:47:36', '4ZkLvKWd', '4598861'), - (953, 1099, 'maybe', '2021-11-04 18:34:57', '2025-12-17 19:47:36', '4ZkLvKWd', '4602797'), - (953, 1100, 'not_attending', '2021-11-09 01:56:53', '2025-12-17 19:47:36', '4ZkLvKWd', '4607305'), - (953, 1101, 'not_attending', '2021-11-12 04:27:09', '2025-12-17 19:47:36', '4ZkLvKWd', '4607339'), - (953, 1103, 'not_attending', '2021-11-13 21:31:33', '2025-12-17 19:47:36', '4ZkLvKWd', '4616350'), - (953, 1107, 'not_attending', '2021-11-17 01:44:45', '2025-12-17 19:47:37', '4ZkLvKWd', '4620697'), - (953, 1108, 'attending', '2021-11-16 00:15:37', '2025-12-17 19:47:37', '4ZkLvKWd', '4632276'), - (953, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4ZkLvKWd', '4637896'), - (953, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4ZkLvKWd', '4642994'), - (953, 1117, 'maybe', '2021-12-06 01:57:56', '2025-12-17 19:47:38', '4ZkLvKWd', '4642995'), - (953, 1118, 'attending', '2021-12-11 22:22:33', '2025-12-17 19:47:38', '4ZkLvKWd', '4642996'), - (953, 1119, 'attending', '2021-12-19 23:33:17', '2025-12-17 19:47:31', '4ZkLvKWd', '4642997'), - (953, 1126, 'not_attending', '2021-12-11 22:22:13', '2025-12-17 19:47:38', '4ZkLvKWd', '4645687'), - (953, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4ZkLvKWd', '4645698'), - (953, 1128, 'attending', '2021-11-21 00:37:23', '2025-12-17 19:47:37', '4ZkLvKWd', '4645704'), - (953, 1129, 'maybe', '2021-11-27 23:29:16', '2025-12-17 19:47:37', '4ZkLvKWd', '4645705'), - (953, 1131, 'maybe', '2021-12-18 23:41:31', '2025-12-17 19:47:31', '4ZkLvKWd', '4658825'), - (953, 1132, 'attending', '2021-11-22 06:42:58', '2025-12-17 19:47:37', '4ZkLvKWd', '4660657'), - (953, 1134, 'attending', '2021-11-24 22:13:59', '2025-12-17 19:47:37', '4ZkLvKWd', '4668385'), - (953, 1135, 'maybe', '2021-11-25 06:18:14', '2025-12-17 19:47:37', '4ZkLvKWd', '4670469'), - (953, 1139, 'attending', '2021-12-03 23:48:50', '2025-12-17 19:47:37', '4ZkLvKWd', '4675604'), - (953, 1140, 'attending', '2021-12-03 23:36:16', '2025-12-17 19:47:37', '4ZkLvKWd', '4679701'), - (953, 1144, 'attending', '2021-12-06 01:57:47', '2025-12-17 19:47:37', '4ZkLvKWd', '4687090'), - (953, 1147, 'attending', '2021-12-14 21:12:31', '2025-12-17 19:47:38', '4ZkLvKWd', '4692842'), - (953, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4ZkLvKWd', '4694407'), - (953, 1151, 'attending', '2022-01-02 06:20:19', '2025-12-17 19:47:31', '4ZkLvKWd', '4708704'), - (953, 1152, 'attending', '2022-01-12 00:10:10', '2025-12-17 19:47:31', '4ZkLvKWd', '4708705'), - (953, 1153, 'attending', '2022-01-26 22:32:21', '2025-12-17 19:47:32', '4ZkLvKWd', '4708707'), - (953, 1154, 'attending', '2022-01-24 20:36:09', '2025-12-17 19:47:32', '4ZkLvKWd', '4708708'), - (953, 1156, 'attending', '2021-12-19 23:33:00', '2025-12-17 19:47:31', '4ZkLvKWd', '4715207'), - (953, 1157, 'not_attending', '2021-12-19 23:34:20', '2025-12-17 19:47:31', '4ZkLvKWd', '4715208'), - (953, 1158, 'not_attending', '2021-12-19 23:32:53', '2025-12-17 19:47:31', '4ZkLvKWd', '4715311'), - (953, 1159, 'not_attending', '2022-01-02 06:20:15', '2025-12-17 19:47:31', '4ZkLvKWd', '4717532'), - (953, 1162, 'not_attending', '2022-01-08 00:31:33', '2025-12-17 19:47:31', '4ZkLvKWd', '4718771'), - (953, 1163, 'maybe', '2022-01-08 00:32:15', '2025-12-17 19:47:31', '4ZkLvKWd', '4724206'), - (953, 1164, 'attending', '2022-01-02 06:19:55', '2025-12-17 19:47:31', '4ZkLvKWd', '4724208'), - (953, 1165, 'attending', '2022-01-02 06:20:00', '2025-12-17 19:47:31', '4ZkLvKWd', '4724210'), - (953, 1168, 'attending', '2022-01-05 02:12:14', '2025-12-17 19:47:31', '4ZkLvKWd', '4731043'), - (953, 1169, 'not_attending', '2022-01-07 23:55:49', '2025-12-17 19:47:31', '4ZkLvKWd', '4731044'), - (953, 1170, 'not_attending', '2022-01-09 23:43:18', '2025-12-17 19:47:31', '4ZkLvKWd', '4731045'), - (953, 1171, 'not_attending', '2022-01-02 06:20:09', '2025-12-17 19:47:31', '4ZkLvKWd', '4733292'), - (953, 1173, 'attending', '2022-01-09 00:55:04', '2025-12-17 19:47:31', '4ZkLvKWd', '4736495'), - (953, 1175, 'attending', '2022-01-23 00:04:01', '2025-12-17 19:47:32', '4ZkLvKWd', '4736497'), - (953, 1176, 'not_attending', '2022-02-05 20:40:49', '2025-12-17 19:47:32', '4ZkLvKWd', '4736498'), - (953, 1177, 'not_attending', '2022-02-05 20:40:57', '2025-12-17 19:47:32', '4ZkLvKWd', '4736499'), - (953, 1178, 'attending', '2022-01-29 21:56:53', '2025-12-17 19:47:32', '4ZkLvKWd', '4736500'), - (953, 1179, 'not_attending', '2022-02-05 20:41:28', '2025-12-17 19:47:32', '4ZkLvKWd', '4736501'), - (953, 1180, 'not_attending', '2022-02-05 20:41:22', '2025-12-17 19:47:33', '4ZkLvKWd', '4736502'), - (953, 1181, 'attending', '2022-03-06 00:00:05', '2025-12-17 19:47:33', '4ZkLvKWd', '4736503'), - (953, 1182, 'attending', '2022-03-11 21:23:13', '2025-12-17 19:47:33', '4ZkLvKWd', '4736504'), - (953, 1184, 'maybe', '2022-01-09 23:43:56', '2025-12-17 19:47:31', '4ZkLvKWd', '4742350'), - (953, 1185, 'maybe', '2022-01-09 23:43:42', '2025-12-17 19:47:31', '4ZkLvKWd', '4746789'), - (953, 1188, 'attending', '2022-01-12 00:09:51', '2025-12-17 19:47:31', '4ZkLvKWd', '4753929'), - (953, 1190, 'attending', '2022-01-12 00:10:02', '2025-12-17 19:47:31', '4ZkLvKWd', '4757377'), - (953, 1198, 'attending', '2022-01-24 20:35:33', '2025-12-17 19:47:32', '4ZkLvKWd', '4766801'), - (953, 1199, 'attending', '2022-01-24 20:35:40', '2025-12-17 19:47:32', '4ZkLvKWd', '4766802'), - (953, 1202, 'not_attending', '2022-01-26 22:32:30', '2025-12-17 19:47:32', '4ZkLvKWd', '4769423'), - (953, 1214, 'not_attending', '2022-02-13 04:39:21', '2025-12-17 19:47:32', '4ZkLvKWd', '4780761'), - (953, 1215, 'not_attending', '2022-02-13 04:39:32', '2025-12-17 19:47:33', '4ZkLvKWd', '4780763'), - (953, 1219, 'attending', '2022-01-31 22:19:22', '2025-12-17 19:47:32', '4ZkLvKWd', '4788466'), - (953, 1220, 'maybe', '2022-01-27 23:53:27', '2025-12-17 19:47:32', '4ZkLvKWd', '4790257'), - (953, 1222, 'not_attending', '2022-02-05 20:41:18', '2025-12-17 19:47:32', '4ZkLvKWd', '5015628'), - (953, 1224, 'maybe', '2022-01-31 22:19:47', '2025-12-17 19:47:32', '4ZkLvKWd', '5016682'), - (953, 1227, 'not_attending', '2022-02-05 20:41:44', '2025-12-17 19:47:32', '4ZkLvKWd', '5027602'), - (953, 1228, 'not_attending', '2022-02-05 20:41:05', '2025-12-17 19:47:32', '4ZkLvKWd', '5028238'), - (953, 1229, 'not_attending', '2022-02-13 04:39:16', '2025-12-17 19:47:32', '4ZkLvKWd', '5034963'), - (953, 1231, 'not_attending', '2022-02-13 04:39:27', '2025-12-17 19:47:33', '4ZkLvKWd', '5037637'), - (953, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4ZkLvKWd', '5038850'), - (953, 1234, 'not_attending', '2022-02-13 04:39:03', '2025-12-17 19:47:32', '4ZkLvKWd', '5042197'), - (953, 1235, 'not_attending', '2022-02-13 04:39:00', '2025-12-17 19:47:32', '4ZkLvKWd', '5044505'), - (953, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4ZkLvKWd', '5045826'), - (953, 1237, 'not_attending', '2022-02-18 08:27:24', '2025-12-17 19:47:32', '4ZkLvKWd', '5050641'), - (953, 1238, 'not_attending', '2022-02-24 03:12:55', '2025-12-17 19:47:32', '4ZkLvKWd', '5052236'), - (953, 1239, 'not_attending', '2022-03-03 00:40:07', '2025-12-17 19:47:33', '4ZkLvKWd', '5052238'), - (953, 1240, 'not_attending', '2022-03-16 21:17:45', '2025-12-17 19:47:33', '4ZkLvKWd', '5052239'), - (953, 1241, 'attending', '2022-03-23 22:48:04', '2025-12-17 19:47:25', '4ZkLvKWd', '5052240'), - (953, 1242, 'attending', '2022-03-27 17:04:55', '2025-12-17 19:47:25', '4ZkLvKWd', '5052241'), - (953, 1244, 'not_attending', '2022-02-24 03:13:39', '2025-12-17 19:47:33', '4ZkLvKWd', '5060490'), - (953, 1246, 'not_attending', '2022-03-03 00:40:13', '2025-12-17 19:47:33', '4ZkLvKWd', '5064727'), - (953, 1247, 'not_attending', '2022-02-24 03:13:20', '2025-12-17 19:47:33', '4ZkLvKWd', '5065027'), - (953, 1248, 'not_attending', '2022-02-24 03:13:29', '2025-12-17 19:47:33', '4ZkLvKWd', '5065064'), - (953, 1249, 'attending', '2022-03-09 15:24:18', '2025-12-17 19:47:33', '4ZkLvKWd', '5068530'), - (953, 1250, 'not_attending', '2022-03-03 00:40:23', '2025-12-17 19:47:33', '4ZkLvKWd', '5069735'), - (953, 1251, 'not_attending', '2022-03-03 00:42:09', '2025-12-17 19:47:33', '4ZkLvKWd', '5128466'), - (953, 1252, 'not_attending', '2022-03-03 00:40:34', '2025-12-17 19:47:33', '4ZkLvKWd', '5129121'), - (953, 1253, 'not_attending', '2022-03-03 00:41:45', '2025-12-17 19:47:33', '4ZkLvKWd', '5129122'), - (953, 1258, 'not_attending', '2022-03-03 00:40:18', '2025-12-17 19:47:33', '4ZkLvKWd', '5132531'), - (953, 1259, 'not_attending', '2022-03-03 00:42:00', '2025-12-17 19:47:33', '4ZkLvKWd', '5132533'), - (953, 1261, 'not_attending', '2022-03-08 00:03:53', '2025-12-17 19:47:33', '4ZkLvKWd', '5154274'), - (953, 1264, 'maybe', '2022-03-22 22:38:56', '2025-12-17 19:47:25', '4ZkLvKWd', '5160281'), - (953, 1265, 'attending', '2022-03-11 21:23:16', '2025-12-17 19:47:33', '4ZkLvKWd', '5160862'), - (953, 1266, 'attending', '2022-03-13 18:33:37', '2025-12-17 19:47:33', '4ZkLvKWd', '5166407'), - (953, 1267, 'not_attending', '2022-03-15 07:55:53', '2025-12-17 19:47:25', '4ZkLvKWd', '5169578'), - (953, 1268, 'not_attending', '2022-03-15 21:19:53', '2025-12-17 19:47:33', '4ZkLvKWd', '5176296'), - (953, 1269, 'not_attending', '2022-03-17 21:06:03', '2025-12-17 19:47:25', '4ZkLvKWd', '5179439'), - (953, 1270, 'attending', '2022-03-20 22:36:44', '2025-12-17 19:47:25', '4ZkLvKWd', '5181277'), - (953, 1272, 'attending', '2022-03-19 20:54:25', '2025-12-17 19:47:25', '4ZkLvKWd', '5186582'), - (953, 1273, 'attending', '2022-03-24 23:15:26', '2025-12-17 19:47:25', '4ZkLvKWd', '5186583'), - (953, 1274, 'attending', '2022-03-27 17:05:23', '2025-12-17 19:47:26', '4ZkLvKWd', '5186585'), - (953, 1275, 'not_attending', '2022-03-27 17:05:33', '2025-12-17 19:47:26', '4ZkLvKWd', '5186587'), - (953, 1276, 'attending', '2022-03-27 17:04:09', '2025-12-17 19:47:25', '4ZkLvKWd', '5186820'), - (953, 1279, 'not_attending', '2022-03-20 22:37:00', '2025-12-17 19:47:25', '4ZkLvKWd', '5187212'), - (953, 1281, 'maybe', '2022-04-09 21:14:18', '2025-12-17 19:47:27', '4ZkLvKWd', '5190437'), - (953, 1282, 'not_attending', '2022-03-21 23:04:45', '2025-12-17 19:47:25', '4ZkLvKWd', '5191241'), - (953, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4ZkLvKWd', '5195095'), - (953, 1285, 'not_attending', '2022-03-24 23:15:16', '2025-12-17 19:47:25', '4ZkLvKWd', '5196763'), - (953, 1287, 'not_attending', '2022-03-27 17:04:23', '2025-12-17 19:47:25', '4ZkLvKWd', '5199425'), - (953, 1288, 'not_attending', '2022-03-27 17:04:44', '2025-12-17 19:47:25', '4ZkLvKWd', '5199460'), - (953, 1290, 'not_attending', '2022-03-27 17:04:40', '2025-12-17 19:47:25', '4ZkLvKWd', '5200196'), - (953, 1291, 'not_attending', '2022-03-24 23:15:10', '2025-12-17 19:47:25', '4ZkLvKWd', '5200458'), - (953, 1293, 'maybe', '2022-03-27 22:11:33', '2025-12-17 19:47:27', '4ZkLvKWd', '5214641'), - (953, 1294, 'attending', '2022-04-03 01:56:48', '2025-12-17 19:47:26', '4ZkLvKWd', '5214686'), - (953, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4ZkLvKWd', '5215989'), - (953, 1300, 'not_attending', '2022-03-31 23:48:17', '2025-12-17 19:47:25', '4ZkLvKWd', '5217936'), - (953, 1301, 'attending', '2022-03-31 23:48:30', '2025-12-17 19:47:26', '4ZkLvKWd', '5218175'), - (953, 1302, 'maybe', '2022-04-08 18:19:33', '2025-12-17 19:47:27', '4ZkLvKWd', '5220867'), - (953, 1304, 'attending', '2022-04-06 19:07:47', '2025-12-17 19:47:26', '4ZkLvKWd', '5223468'), - (953, 1305, 'attending', '2022-04-09 21:14:29', '2025-12-17 19:47:27', '4ZkLvKWd', '5223673'), - (953, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4ZkLvKWd', '5223686'), - (953, 1308, 'not_attending', '2022-04-13 20:02:06', '2025-12-17 19:47:27', '4ZkLvKWd', '5226703'), - (953, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4ZkLvKWd', '5227432'), - (953, 1314, 'not_attending', '2022-04-11 03:01:15', '2025-12-17 19:47:27', '4ZkLvKWd', '5233137'), - (953, 1315, 'attending', '2022-04-22 22:24:43', '2025-12-17 19:47:27', '4ZkLvKWd', '5237522'), - (953, 1316, 'not_attending', '2022-04-13 20:02:18', '2025-12-17 19:47:27', '4ZkLvKWd', '5237536'), - (953, 1321, 'not_attending', '2022-04-22 20:08:41', '2025-12-17 19:47:27', '4ZkLvKWd', '5238355'), - (953, 1322, 'not_attending', '2022-04-26 20:58:22', '2025-12-17 19:47:27', '4ZkLvKWd', '5238356'), - (953, 1331, 'maybe', '2022-04-27 20:21:30', '2025-12-17 19:47:27', '4ZkLvKWd', '5242156'), - (953, 1337, 'attending', '2022-04-20 21:08:55', '2025-12-17 19:47:27', '4ZkLvKWd', '5245036'), - (953, 1340, 'not_attending', '2022-04-27 20:21:39', '2025-12-17 19:47:27', '4ZkLvKWd', '5245754'), - (953, 1346, 'attending', '2022-04-23 21:59:35', '2025-12-17 19:47:27', '4ZkLvKWd', '5247467'), - (953, 1349, 'not_attending', '2022-04-27 20:21:17', '2025-12-17 19:47:27', '4ZkLvKWd', '5249631'), - (953, 1360, 'not_attending', '2022-04-26 20:58:13', '2025-12-17 19:47:27', '4ZkLvKWd', '5260197'), - (953, 1362, 'maybe', '2022-04-29 01:20:13', '2025-12-17 19:47:28', '4ZkLvKWd', '5260800'), - (953, 1363, 'not_attending', '2022-04-27 20:22:16', '2025-12-17 19:47:28', '4ZkLvKWd', '5261577'), - (953, 1366, 'not_attending', '2022-04-27 20:21:45', '2025-12-17 19:47:27', '4ZkLvKWd', '5262344'), - (953, 1370, 'not_attending', '2022-04-29 01:20:09', '2025-12-17 19:47:28', '4ZkLvKWd', '5263775'), - (953, 1371, 'attending', '2022-04-27 20:18:11', '2025-12-17 19:47:27', '4ZkLvKWd', '5263784'), - (953, 1372, 'maybe', '2022-05-03 18:57:36', '2025-12-17 19:47:28', '4ZkLvKWd', '5264352'), - (953, 1374, 'attending', '2022-05-07 04:34:37', '2025-12-17 19:47:28', '4ZkLvKWd', '5269930'), - (953, 1376, 'not_attending', '2022-05-11 21:37:39', '2025-12-17 19:47:28', '4ZkLvKWd', '5271446'), - (953, 1377, 'not_attending', '2022-05-13 22:30:20', '2025-12-17 19:47:28', '4ZkLvKWd', '5271447'), - (953, 1378, 'not_attending', '2022-05-07 22:21:07', '2025-12-17 19:47:29', '4ZkLvKWd', '5271448'), - (953, 1379, 'not_attending', '2022-05-21 19:19:18', '2025-12-17 19:47:30', '4ZkLvKWd', '5271449'), - (953, 1382, 'maybe', '2022-05-09 21:38:17', '2025-12-17 19:47:28', '4ZkLvKWd', '5276350'), - (953, 1383, 'attending', '2022-05-13 22:32:57', '2025-12-17 19:47:28', '4ZkLvKWd', '5276469'), - (953, 1385, 'maybe', '2022-05-11 21:37:27', '2025-12-17 19:47:28', '4ZkLvKWd', '5277822'), - (953, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4ZkLvKWd', '5278159'), - (953, 1393, 'not_attending', '2022-06-08 16:33:25', '2025-12-17 19:47:30', '4ZkLvKWd', '5280603'), - (953, 1399, 'not_attending', '2022-05-11 21:37:43', '2025-12-17 19:47:28', '4ZkLvKWd', '5281796'), - (953, 1407, 'attending', '2022-06-04 21:04:41', '2025-12-17 19:47:30', '4ZkLvKWd', '5363695'), - (953, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4ZkLvKWd', '5365960'), - (953, 1415, 'attending', '2022-06-03 05:20:58', '2025-12-17 19:47:30', '4ZkLvKWd', '5368973'), - (953, 1416, 'not_attending', '2022-05-29 23:05:38', '2025-12-17 19:47:30', '4ZkLvKWd', '5369628'), - (953, 1419, 'attending', '2022-06-08 16:32:59', '2025-12-17 19:47:30', '4ZkLvKWd', '5373081'), - (953, 1421, 'not_attending', '2022-05-30 21:45:49', '2025-12-17 19:47:30', '4ZkLvKWd', '5374885'), - (953, 1423, 'not_attending', '2022-06-15 22:37:08', '2025-12-17 19:47:17', '4ZkLvKWd', '5375727'), - (953, 1424, 'maybe', '2022-05-26 19:50:50', '2025-12-17 19:47:30', '4ZkLvKWd', '5375772'), - (953, 1427, 'maybe', '2022-05-24 22:14:16', '2025-12-17 19:47:30', '4ZkLvKWd', '5376074'), - (953, 1428, 'maybe', '2022-06-08 16:33:32', '2025-12-17 19:47:30', '4ZkLvKWd', '5378247'), - (953, 1429, 'not_attending', '2022-05-30 21:45:43', '2025-12-17 19:47:30', '4ZkLvKWd', '5388761'), - (953, 1430, 'not_attending', '2022-06-08 16:33:13', '2025-12-17 19:47:30', '4ZkLvKWd', '5389402'), - (953, 1431, 'attending', '2022-06-10 18:55:25', '2025-12-17 19:47:30', '4ZkLvKWd', '5389605'), - (953, 1432, 'not_attending', '2022-06-03 05:21:58', '2025-12-17 19:47:30', '4ZkLvKWd', '5391566'), - (953, 1433, 'not_attending', '2022-06-03 05:22:01', '2025-12-17 19:47:30', '4ZkLvKWd', '5391667'), - (953, 1435, 'attending', '2022-06-02 20:55:39', '2025-12-17 19:47:30', '4ZkLvKWd', '5394015'), - (953, 1439, 'not_attending', '2022-06-06 22:25:13', '2025-12-17 19:47:30', '4ZkLvKWd', '5396072'), - (953, 1440, 'not_attending', '2022-06-07 22:21:15', '2025-12-17 19:47:30', '4ZkLvKWd', '5396080'), - (953, 1441, 'maybe', '2022-06-05 22:31:23', '2025-12-17 19:47:30', '4ZkLvKWd', '5397171'), - (953, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4ZkLvKWd', '5397265'), - (953, 1446, 'maybe', '2022-06-08 16:33:10', '2025-12-17 19:47:30', '4ZkLvKWd', '5399721'), - (953, 1447, 'not_attending', '2022-06-08 16:33:20', '2025-12-17 19:47:30', '4ZkLvKWd', '5401089'), - (953, 1448, 'not_attending', '2022-06-07 22:21:22', '2025-12-17 19:47:30', '4ZkLvKWd', '5401479'), - (953, 1451, 'attending', '2022-06-15 22:36:00', '2025-12-17 19:47:17', '4ZkLvKWd', '5403967'), - (953, 1453, 'not_attending', '2022-06-11 22:10:07', '2025-12-17 19:47:31', '4ZkLvKWd', '5404745'), - (953, 1454, 'not_attending', '2022-06-11 22:10:01', '2025-12-17 19:47:31', '4ZkLvKWd', '5404771'), - (953, 1457, 'not_attending', '2022-06-11 22:09:57', '2025-12-17 19:47:31', '4ZkLvKWd', '5404780'), - (953, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4ZkLvKWd', '5404786'), - (953, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4ZkLvKWd', '5405203'), - (953, 1478, 'maybe', '2022-06-23 22:33:50', '2025-12-17 19:47:19', '4ZkLvKWd', '5408794'), - (953, 1479, 'not_attending', '2022-06-17 21:17:27', '2025-12-17 19:47:17', '4ZkLvKWd', '5410322'), - (953, 1480, 'maybe', '2022-06-29 22:14:07', '2025-12-17 19:47:19', '4ZkLvKWd', '5411699'), - (953, 1482, 'attending', '2022-06-25 22:27:42', '2025-12-17 19:47:19', '4ZkLvKWd', '5412550'), - (953, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4ZkLvKWd', '5415046'), - (953, 1495, 'not_attending', '2022-06-29 22:14:04', '2025-12-17 19:47:19', '4ZkLvKWd', '5422086'), - (953, 1498, 'not_attending', '2022-06-29 22:13:59', '2025-12-17 19:47:19', '4ZkLvKWd', '5422406'), - (953, 1501, 'not_attending', '2022-06-29 22:14:33', '2025-12-17 19:47:19', '4ZkLvKWd', '5424546'), - (953, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4ZkLvKWd', '5424565'), - (953, 1504, 'maybe', '2022-07-05 18:51:44', '2025-12-17 19:47:19', '4ZkLvKWd', '5426882'), - (953, 1505, 'not_attending', '2022-07-05 01:12:39', '2025-12-17 19:47:19', '4ZkLvKWd', '5427083'), - (953, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4ZkLvKWd', '5441125'), - (953, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4ZkLvKWd', '5441126'), - (953, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4ZkLvKWd', '5441128'), - (953, 1516, 'attending', '2022-08-20 19:04:05', '2025-12-17 19:47:23', '4ZkLvKWd', '5441129'), - (953, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4ZkLvKWd', '5446643'), - (953, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4ZkLvKWd', '5453325'), - (953, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4ZkLvKWd', '5454516'), - (953, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4ZkLvKWd', '5454605'), - (953, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4ZkLvKWd', '5455037'), - (953, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4ZkLvKWd', '5461278'), - (953, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4ZkLvKWd', '5469480'), - (953, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4ZkLvKWd', '5471073'), - (953, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4ZkLvKWd', '5474663'), - (953, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4ZkLvKWd', '5482022'), - (953, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4ZkLvKWd', '5482793'), - (953, 1580, 'maybe', '2022-08-10 02:37:45', '2025-12-17 19:47:22', '4ZkLvKWd', '5488912'), - (953, 1581, 'maybe', '2022-08-10 02:37:54', '2025-12-17 19:47:22', '4ZkLvKWd', '5490302'), - (953, 1582, 'not_attending', '2022-08-20 19:04:12', '2025-12-17 19:47:23', '4ZkLvKWd', '5492001'), - (953, 1585, 'attending', '2022-08-07 23:25:19', '2025-12-17 19:47:22', '4ZkLvKWd', '5492013'), - (953, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4ZkLvKWd', '5492192'), - (953, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4ZkLvKWd', '5493139'), - (953, 1589, 'maybe', '2022-08-20 19:04:23', '2025-12-17 19:47:23', '4ZkLvKWd', '5493159'), - (953, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4ZkLvKWd', '5493200'), - (953, 1595, 'not_attending', '2022-08-12 21:02:03', '2025-12-17 19:47:22', '4ZkLvKWd', '5495736'), - (953, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4ZkLvKWd', '5502188'), - (953, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4ZkLvKWd', '5512862'), - (953, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4ZkLvKWd', '5513985'), - (953, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4ZkLvKWd', '6045684'), - (954, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dzO27l1m', '4694407'), - (954, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dzO27l1m', '4736497'), - (954, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dzO27l1m', '4736499'), - (954, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dzO27l1m', '4736500'), - (954, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dzO27l1m', '4736503'), - (954, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dzO27l1m', '4736504'), - (954, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dzO27l1m', '4746789'), - (954, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dzO27l1m', '4753929'), - (954, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dzO27l1m', '5038850'), - (954, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dzO27l1m', '5045826'), - (954, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dzO27l1m', '5132533'), - (954, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dzO27l1m', '6045684'), - (955, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4ZkENLLd', '4356801'), - (955, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', '4ZkENLLd', '4366187'), - (955, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4ZkENLLd', '4420735'), - (955, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4ZkENLLd', '4420738'), - (955, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4ZkENLLd', '4420739'), - (955, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4ZkENLLd', '4420741'), - (955, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4ZkENLLd', '4420744'), - (955, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4ZkENLLd', '4420747'), - (955, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4ZkENLLd', '4420748'), - (955, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4ZkENLLd', '4420749'), - (955, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4ZkENLLd', '4461883'), - (955, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4ZkENLLd', '6045684'), - (956, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6YlDZRd', '6045684'), - (957, 1507, 'attending', '2022-07-29 01:04:26', '2025-12-17 19:47:19', '4vEyyVkA', '5433100'), - (957, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4vEyyVkA', '5441128'), - (957, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4vEyyVkA', '5441131'), - (957, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4vEyyVkA', '5441132'), - (957, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4vEyyVkA', '5461278'), - (957, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4vEyyVkA', '5469480'), - (957, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', '4vEyyVkA', '5471073'), - (957, 1567, 'attending', '2022-07-31 05:29:35', '2025-12-17 19:47:21', '4vEyyVkA', '5477629'), - (957, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4vEyyVkA', '5482022'), - (957, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4vEyyVkA', '5482793'), - (957, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4vEyyVkA', '5488912'), - (957, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4vEyyVkA', '5492192'), - (957, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4vEyyVkA', '5493139'), - (957, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4vEyyVkA', '5493200'), - (957, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4vEyyVkA', '5502188'), - (957, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4vEyyVkA', '5505059'), - (957, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4vEyyVkA', '5509055'), - (957, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4vEyyVkA', '5512862'), - (957, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4vEyyVkA', '5513985'), - (957, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4vEyyVkA', '5522550'), - (957, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4vEyyVkA', '5534683'), - (957, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4vEyyVkA', '5537735'), - (957, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4vEyyVkA', '5540859'), - (957, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4vEyyVkA', '5546619'), - (957, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4vEyyVkA', '5555245'), - (957, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4vEyyVkA', '5557747'), - (957, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4vEyyVkA', '5560255'), - (957, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4vEyyVkA', '5562906'), - (957, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4vEyyVkA', '5600604'), - (957, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4vEyyVkA', '5605544'), - (957, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', '4vEyyVkA', '5606737'), - (957, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4vEyyVkA', '5635406'), - (957, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4vEyyVkA', '5638765'), - (957, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '4vEyyVkA', '5640843'), - (957, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4vEyyVkA', '6045684'), - (958, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', '4EQLVPn4', '5186585'), - (958, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4EQLVPn4', '5195095'), - (958, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4EQLVPn4', '5215989'), - (958, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4EQLVPn4', '5223686'), - (958, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4EQLVPn4', '5227432'), - (958, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4EQLVPn4', '5247467'), - (958, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4EQLVPn4', '5260800'), - (958, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4EQLVPn4', '5269930'), - (958, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4EQLVPn4', '5271448'), - (958, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4EQLVPn4', '5271449'), - (958, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4EQLVPn4', '5276469'), - (958, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4EQLVPn4', '5278159'), - (958, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4EQLVPn4', '6045684'), - (959, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'mLzPbxy4', '4637896'), - (959, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mLzPbxy4', '4642994'), - (959, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'mLzPbxy4', '4642995'), - (959, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mLzPbxy4', '4642996'), - (959, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mLzPbxy4', '4642997'), - (959, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mLzPbxy4', '4645687'), - (959, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mLzPbxy4', '4645698'), - (959, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mLzPbxy4', '4645704'), - (959, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mLzPbxy4', '4645705'), - (959, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mLzPbxy4', '4668385'), - (959, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mLzPbxy4', '4694407'), - (959, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mLzPbxy4', '4736497'), - (959, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mLzPbxy4', '4736499'), - (959, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mLzPbxy4', '4736500'), - (959, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mLzPbxy4', '4736503'), - (959, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mLzPbxy4', '4736504'), - (959, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mLzPbxy4', '4746789'), - (959, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mLzPbxy4', '4753929'), - (959, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mLzPbxy4', '5038850'), - (959, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mLzPbxy4', '5045826'), - (959, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mLzPbxy4', '5132533'), - (959, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mLzPbxy4', '6045684'), - (960, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4ZgwX0Xd', '5900202'), - (960, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4ZgwX0Xd', '5900203'), - (960, 1917, 'maybe', '2023-03-12 16:07:19', '2025-12-17 19:47:10', '4ZgwX0Xd', '5910528'), - (960, 1943, 'not_attending', '2023-03-11 01:08:02', '2025-12-17 19:47:10', '4ZgwX0Xd', '5962091'), - (960, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '4ZgwX0Xd', '5962317'), - (960, 1949, 'maybe', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4ZgwX0Xd', '5962318'), - (960, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4ZgwX0Xd', '5965933'), - (960, 1957, 'maybe', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4ZgwX0Xd', '5972815'), - (960, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4ZgwX0Xd', '5981515'), - (960, 1969, 'attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4ZgwX0Xd', '5993516'), - (960, 1971, 'attending', '2023-03-20 18:42:19', '2025-12-17 19:46:56', '4ZgwX0Xd', '5993765'), - (960, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4ZgwX0Xd', '5998939'), - (960, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4ZgwX0Xd', '6028191'), - (960, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4ZgwX0Xd', '6040066'), - (960, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4ZgwX0Xd', '6042717'), - (960, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4ZgwX0Xd', '6044838'), - (960, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4ZgwX0Xd', '6044839'), - (960, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZgwX0Xd', '6045684'), - (960, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4ZgwX0Xd', '6050104'), - (960, 2005, 'maybe', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4ZgwX0Xd', '6053195'), - (960, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4ZgwX0Xd', '6053198'), - (960, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4ZgwX0Xd', '6056085'), - (960, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4ZgwX0Xd', '6056916'), - (960, 2012, 'attending', '2023-04-10 23:15:12', '2025-12-17 19:46:59', '4ZgwX0Xd', '6059290'), - (960, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4ZgwX0Xd', '6060328'), - (960, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4ZgwX0Xd', '6061037'), - (960, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4ZgwX0Xd', '6061039'), - (960, 2018, 'attending', '2023-04-12 00:51:19', '2025-12-17 19:46:59', '4ZgwX0Xd', '6061171'), - (960, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4ZgwX0Xd', '6067245'), - (960, 2027, 'maybe', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4ZgwX0Xd', '6068094'), - (960, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4ZgwX0Xd', '6068252'), - (960, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4ZgwX0Xd', '6068253'), - (960, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4ZgwX0Xd', '6068254'), - (960, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4ZgwX0Xd', '6068280'), - (960, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4ZgwX0Xd', '6069093'), - (960, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4ZgwX0Xd', '6072528'), - (960, 2045, 'maybe', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4ZgwX0Xd', '6075556'), - (960, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4ZgwX0Xd', '6079840'), - (960, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4ZgwX0Xd', '6083398'), - (960, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4ZgwX0Xd', '6093504'), - (960, 2060, 'maybe', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4ZgwX0Xd', '6097414'), - (960, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4ZgwX0Xd', '6097442'), - (960, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4ZgwX0Xd', '6097684'), - (960, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4ZgwX0Xd', '6098762'), - (960, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4ZgwX0Xd', '6101362'), - (960, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4ZgwX0Xd', '6107314'), - (961, 1379, 'not_attending', '2022-05-21 01:26:15', '2025-12-17 19:47:30', 'myDlkJgd', '5271449'), - (961, 1380, 'attending', '2022-05-25 23:02:38', '2025-12-17 19:47:30', 'myDlkJgd', '5271450'), - (961, 1407, 'attending', '2022-05-29 15:43:57', '2025-12-17 19:47:30', 'myDlkJgd', '5363695'), - (961, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'myDlkJgd', '5365960'), - (961, 1409, 'not_attending', '2022-05-20 21:25:16', '2025-12-17 19:47:30', 'myDlkJgd', '5367032'), - (961, 1415, 'attending', '2022-05-29 15:43:53', '2025-12-17 19:47:30', 'myDlkJgd', '5368973'), - (961, 1419, 'attending', '2022-06-05 21:05:05', '2025-12-17 19:47:30', 'myDlkJgd', '5373081'), - (961, 1423, 'attending', '2022-06-10 18:53:14', '2025-12-17 19:47:17', 'myDlkJgd', '5375727'), - (961, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'myDlkJgd', '5378247'), - (961, 1431, 'not_attending', '2022-06-07 19:20:34', '2025-12-17 19:47:31', 'myDlkJgd', '5389605'), - (961, 1433, 'attending', '2022-05-31 22:02:56', '2025-12-17 19:47:30', 'myDlkJgd', '5391667'), - (961, 1437, 'attending', '2022-06-02 00:18:51', '2025-12-17 19:47:30', 'myDlkJgd', '5394493'), - (961, 1440, 'attending', '2022-06-05 21:04:18', '2025-12-17 19:47:30', 'myDlkJgd', '5396080'), - (961, 1442, 'attending', '2022-06-10 18:53:50', '2025-12-17 19:47:17', 'myDlkJgd', '5397265'), - (961, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'myDlkJgd', '5403967'), - (961, 1454, 'not_attending', '2022-06-13 02:23:01', '2025-12-17 19:47:31', 'myDlkJgd', '5404771'), - (961, 1455, 'not_attending', '2022-06-13 22:19:16', '2025-12-17 19:47:31', 'myDlkJgd', '5404772'), - (961, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'myDlkJgd', '5404786'), - (961, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'myDlkJgd', '5405203'), - (961, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'myDlkJgd', '5408794'), - (961, 1480, 'attending', '2022-06-26 16:36:40', '2025-12-17 19:47:19', 'myDlkJgd', '5411699'), - (961, 1482, 'attending', '2022-06-20 15:05:28', '2025-12-17 19:47:19', 'myDlkJgd', '5412550'), - (961, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'myDlkJgd', '5415046'), - (961, 1491, 'not_attending', '2022-07-02 18:34:02', '2025-12-17 19:47:19', 'myDlkJgd', '5420158'), - (961, 1492, 'not_attending', '2022-07-05 14:03:04', '2025-12-17 19:47:19', 'myDlkJgd', '5420175'), - (961, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'myDlkJgd', '5422086'), - (961, 1496, 'attending', '2022-06-26 16:39:42', '2025-12-17 19:47:19', 'myDlkJgd', '5422404'), - (961, 1497, 'attending', '2022-06-26 16:39:45', '2025-12-17 19:47:19', 'myDlkJgd', '5422405'), - (961, 1498, 'attending', '2022-06-26 16:40:54', '2025-12-17 19:47:19', 'myDlkJgd', '5422406'), - (961, 1500, 'not_attending', '2022-07-05 14:02:52', '2025-12-17 19:47:19', 'myDlkJgd', '5423915'), - (961, 1501, 'not_attending', '2022-06-29 23:43:05', '2025-12-17 19:47:19', 'myDlkJgd', '5424546'), - (961, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'myDlkJgd', '5424565'), - (961, 1504, 'not_attending', '2022-07-11 16:09:10', '2025-12-17 19:47:19', 'myDlkJgd', '5426882'), - (961, 1505, 'not_attending', '2022-07-02 18:34:40', '2025-12-17 19:47:19', 'myDlkJgd', '5427083'), - (961, 1508, 'attending', '2022-07-11 16:08:52', '2025-12-17 19:47:19', 'myDlkJgd', '5433453'), - (961, 1513, 'not_attending', '2022-07-09 16:05:36', '2025-12-17 19:47:20', 'myDlkJgd', '5441125'), - (961, 1514, 'attending', '2022-07-17 16:01:23', '2025-12-17 19:47:20', 'myDlkJgd', '5441126'), - (961, 1515, 'not_attending', '2022-08-01 03:34:17', '2025-12-17 19:47:21', 'myDlkJgd', '5441128'), - (961, 1516, 'attending', '2022-08-15 01:53:39', '2025-12-17 19:47:23', 'myDlkJgd', '5441129'), - (961, 1517, 'attending', '2022-08-24 16:14:16', '2025-12-17 19:47:23', 'myDlkJgd', '5441130'), - (961, 1522, 'not_attending', '2022-07-17 16:00:42', '2025-12-17 19:47:20', 'myDlkJgd', '5442832'), - (961, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'myDlkJgd', '5446643'), - (961, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'myDlkJgd', '5453325'), - (961, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'myDlkJgd', '5454516'), - (961, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'myDlkJgd', '5454605'), - (961, 1546, 'not_attending', '2022-07-25 16:08:55', '2025-12-17 19:47:20', 'myDlkJgd', '5454607'), - (961, 1547, 'not_attending', '2022-07-25 03:05:59', '2025-12-17 19:47:20', 'myDlkJgd', '5454608'), - (961, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'myDlkJgd', '5455037'), - (961, 1553, 'attending', '2022-07-19 23:06:36', '2025-12-17 19:47:20', 'myDlkJgd', '5455164'), - (961, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'myDlkJgd', '5461278'), - (961, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'myDlkJgd', '5469480'), - (961, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'myDlkJgd', '5471073'), - (961, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'myDlkJgd', '5474663'), - (961, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'myDlkJgd', '5482022'), - (961, 1573, 'not_attending', '2022-08-07 17:33:03', '2025-12-17 19:47:22', 'myDlkJgd', '5482152'), - (961, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'myDlkJgd', '5482793'), - (961, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'myDlkJgd', '5488912'), - (961, 1583, 'attending', '2022-08-08 03:29:25', '2025-12-17 19:47:22', 'myDlkJgd', '5492002'), - (961, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'myDlkJgd', '5492192'), - (961, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'myDlkJgd', '5493139'), - (961, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'myDlkJgd', '5493200'), - (961, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'myDlkJgd', '5502188'), - (961, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'myDlkJgd', '5512862'), - (961, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'myDlkJgd', '5513985'), - (961, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myDlkJgd', '6045684'), - (962, 646, 'not_attending', '2021-05-12 14:13:28', '2025-12-17 19:47:46', '2d2EloM4', '3539921'), - (962, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '2d2EloM4', '3539922'), - (962, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '2d2EloM4', '3806392'), - (962, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2EloM4', '6045684'), - (963, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4WP72Xjd', '4736497'), - (963, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4WP72Xjd', '4736500'), - (963, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4WP72Xjd', '4746789'), - (963, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4WP72Xjd', '4753929'), - (963, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WP72Xjd', '6045684'), - (964, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVgJGDrm', '5880943'), - (964, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVgJGDrm', '5900202'), - (964, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVgJGDrm', '5900203'), - (964, 1916, 'not_attending', '2023-03-01 16:36:14', '2025-12-17 19:47:08', 'dVgJGDrm', '5910526'), - (964, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dVgJGDrm', '5910528'), - (964, 1943, 'attending', '2023-03-03 19:09:19', '2025-12-17 19:47:10', 'dVgJGDrm', '5962091'), - (964, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dVgJGDrm', '5962317'), - (964, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dVgJGDrm', '5962318'), - (964, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVgJGDrm', '5965933'), - (964, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVgJGDrm', '5967014'), - (964, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVgJGDrm', '5972815'), - (964, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVgJGDrm', '5974016'), - (964, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVgJGDrm', '5981515'), - (964, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVgJGDrm', '5993516'), - (964, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVgJGDrm', '5998939'), - (964, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVgJGDrm', '6028191'), - (964, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVgJGDrm', '6040066'), - (964, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVgJGDrm', '6042717'), - (964, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVgJGDrm', '6044838'), - (964, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVgJGDrm', '6044839'), - (964, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVgJGDrm', '6045684'), - (964, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'dVgJGDrm', '6048955'), - (964, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVgJGDrm', '6050104'), - (964, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVgJGDrm', '6053195'), - (964, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVgJGDrm', '6053198'), - (964, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVgJGDrm', '6056085'), - (964, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVgJGDrm', '6056916'), - (964, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVgJGDrm', '6059290'), - (964, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVgJGDrm', '6060328'), - (964, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVgJGDrm', '6061037'), - (964, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVgJGDrm', '6061039'), - (964, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVgJGDrm', '6067245'), - (964, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVgJGDrm', '6068094'), - (964, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVgJGDrm', '6068252'), - (964, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVgJGDrm', '6068253'), - (964, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVgJGDrm', '6068254'), - (964, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVgJGDrm', '6068280'), - (964, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVgJGDrm', '6069093'), - (964, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVgJGDrm', '6072528'), - (964, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVgJGDrm', '6079840'), - (964, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVgJGDrm', '6083398'), - (964, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVgJGDrm', '6093504'), - (964, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVgJGDrm', '6097414'), - (964, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVgJGDrm', '6097442'), - (964, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVgJGDrm', '6097684'), - (964, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVgJGDrm', '6098762'), - (964, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVgJGDrm', '6101362'), - (964, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVgJGDrm', '6107314'), - (964, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dVgJGDrm', '6120034'), - (965, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DYbJZLd', '6045684'), - (966, 258, 'not_attending', '2021-06-01 01:29:28', '2025-12-17 19:47:47', '0mqjJWlA', '3149489'), - (966, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '0mqjJWlA', '3149491'), - (966, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', '0mqjJWlA', '3149493'), - (966, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', '0mqjJWlA', '3236448'), - (966, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '0mqjJWlA', '3236450'), - (966, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '0mqjJWlA', '3974109'), - (966, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '0mqjJWlA', '3975311'), - (966, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '0mqjJWlA', '3975312'), - (966, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '0mqjJWlA', '3994992'), - (966, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '0mqjJWlA', '4014338'), - (966, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '0mqjJWlA', '4021848'), - (966, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '0mqjJWlA', '4136744'), - (966, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '0mqjJWlA', '4136937'), - (966, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '0mqjJWlA', '4136938'), - (966, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '0mqjJWlA', '4136947'), - (966, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '0mqjJWlA', '4225444'), - (966, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '0mqjJWlA', '4229417'), - (966, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '0mqjJWlA', '4229418'), - (966, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '0mqjJWlA', '4239259'), - (966, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '0mqjJWlA', '4250163'), - (966, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqjJWlA', '6045684'), - (967, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'd2OXVO8m', '5962318'), - (967, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'd2OXVO8m', '6028191'), - (967, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd2OXVO8m', '6044838'), - (967, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd2OXVO8m', '6044839'), - (967, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2OXVO8m', '6045684'), - (967, 1993, 'attending', '2023-04-03 17:09:14', '2025-12-17 19:46:58', 'd2OXVO8m', '6048955'), - (967, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd2OXVO8m', '6050104'), - (967, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd2OXVO8m', '6053195'), - (967, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd2OXVO8m', '6053198'), - (967, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd2OXVO8m', '6056085'), - (967, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd2OXVO8m', '6056916'), - (967, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd2OXVO8m', '6059290'), - (967, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd2OXVO8m', '6060328'), - (967, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd2OXVO8m', '6061037'), - (967, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd2OXVO8m', '6061039'), - (967, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd2OXVO8m', '6067245'), - (967, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd2OXVO8m', '6068094'), - (967, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd2OXVO8m', '6068252'), - (967, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd2OXVO8m', '6068253'), - (967, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd2OXVO8m', '6068254'), - (967, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd2OXVO8m', '6068280'), - (967, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd2OXVO8m', '6069093'), - (967, 2034, 'attending', '2023-04-21 16:37:52', '2025-12-17 19:47:00', 'd2OXVO8m', '6069372'), - (967, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd2OXVO8m', '6072528'), - (967, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd2OXVO8m', '6079840'), - (967, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd2OXVO8m', '6083398'), - (967, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd2OXVO8m', '6093504'), - (967, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd2OXVO8m', '6097414'), - (967, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd2OXVO8m', '6097442'), - (967, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd2OXVO8m', '6097684'), - (967, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd2OXVO8m', '6098762'), - (967, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd2OXVO8m', '6101362'), - (967, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd2OXVO8m', '6107314'), - (967, 2085, 'attending', '2023-05-29 20:40:31', '2025-12-17 19:47:04', 'd2OXVO8m', '6118068'), - (967, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd2OXVO8m', '6120034'), - (968, 645, 'not_attending', '2021-04-25 17:27:14', '2025-12-17 19:47:46', 'oAgeGNqd', '3539920'), - (968, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'oAgeGNqd', '3539921'), - (968, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'oAgeGNqd', '3539922'), - (968, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'oAgeGNqd', '3539923'), - (968, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'oAgeGNqd', '3583262'), - (968, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAgeGNqd', '3793156'), - (968, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAgeGNqd', '3975311'), - (968, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAgeGNqd', '3994992'), - (968, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgeGNqd', '6045684'), - (969, 1514, 'maybe', '2022-07-20 00:56:32', '2025-12-17 19:47:20', '4orbn6JA', '5441126'), - (969, 1515, 'attending', '2022-08-04 23:57:07', '2025-12-17 19:47:21', '4orbn6JA', '5441128'), - (969, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4orbn6JA', '5441131'), - (969, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4orbn6JA', '5441132'), - (969, 1522, 'attending', '2022-07-19 13:46:15', '2025-12-17 19:47:20', '4orbn6JA', '5442832'), - (969, 1536, 'attending', '2022-07-18 23:09:03', '2025-12-17 19:47:20', '4orbn6JA', '5449068'), - (969, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4orbn6JA', '5453325'), - (969, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4orbn6JA', '5454516'), - (969, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4orbn6JA', '5454605'), - (969, 1546, 'maybe', '2022-07-24 14:48:48', '2025-12-17 19:47:20', '4orbn6JA', '5454607'), - (969, 1551, 'attending', '2022-07-19 21:43:14', '2025-12-17 19:47:20', '4orbn6JA', '5455037'), - (969, 1557, 'maybe', '2022-08-03 22:52:52', '2025-12-17 19:47:21', '4orbn6JA', '5458729'), - (969, 1561, 'maybe', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4orbn6JA', '5461278'), - (969, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4orbn6JA', '5469480'), - (969, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4orbn6JA', '5471073'), - (969, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '4orbn6JA', '5474663'), - (969, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4orbn6JA', '5482022'), - (969, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4orbn6JA', '5482793'), - (969, 1580, 'maybe', '2022-08-10 15:28:20', '2025-12-17 19:47:22', '4orbn6JA', '5488912'), - (969, 1581, 'maybe', '2022-08-11 18:07:17', '2025-12-17 19:47:22', '4orbn6JA', '5490302'), - (969, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4orbn6JA', '5492192'), - (969, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4orbn6JA', '5493139'), - (969, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4orbn6JA', '5493200'), - (969, 1595, 'maybe', '2022-08-12 18:11:28', '2025-12-17 19:47:22', '4orbn6JA', '5495736'), - (969, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4orbn6JA', '5502188'), - (969, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4orbn6JA', '5505059'), - (969, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4orbn6JA', '5509055'), - (969, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4orbn6JA', '5512862'), - (969, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4orbn6JA', '5513985'), - (969, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '4orbn6JA', '5519981'), - (969, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4orbn6JA', '5522550'), - (969, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4orbn6JA', '5534683'), - (969, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4orbn6JA', '5537735'), - (969, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4orbn6JA', '5540859'), - (969, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4orbn6JA', '5546619'), - (969, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4orbn6JA', '5555245'), - (969, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4orbn6JA', '5557747'), - (969, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4orbn6JA', '5560255'), - (969, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4orbn6JA', '5562906'), - (969, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4orbn6JA', '5600604'), - (969, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4orbn6JA', '5605544'), - (969, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', '4orbn6JA', '5606737'), - (969, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4orbn6JA', '5635406'), - (969, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4orbn6JA', '5638765'), - (969, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '4orbn6JA', '5640843'), - (969, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4orbn6JA', '5641521'), - (969, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4orbn6JA', '5652395'), - (969, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4orbn6JA', '6045684'), - (970, 1419, 'maybe', '2022-06-08 23:09:14', '2025-12-17 19:47:30', '41WD6j8m', '5373081'), - (970, 1442, 'not_attending', '2022-06-12 02:47:11', '2025-12-17 19:47:17', '41WD6j8m', '5397265'), - (970, 1448, 'attending', '2022-06-07 02:24:55', '2025-12-17 19:47:30', '41WD6j8m', '5401479'), - (970, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WD6j8m', '5403967'), - (970, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WD6j8m', '5404786'), - (970, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WD6j8m', '5405203'), - (970, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '41WD6j8m', '5408794'), - (970, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WD6j8m', '5411699'), - (970, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WD6j8m', '5412550'), - (970, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WD6j8m', '5415046'), - (970, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WD6j8m', '5422086'), - (970, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WD6j8m', '5422406'), - (970, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WD6j8m', '5424565'), - (970, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WD6j8m', '5426882'), - (970, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WD6j8m', '5427083'), - (970, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41WD6j8m', '5441125'), - (970, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WD6j8m', '5441126'), - (970, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WD6j8m', '5441128'), - (970, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WD6j8m', '5446643'), - (970, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WD6j8m', '5453325'), - (970, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WD6j8m', '5454516'), - (970, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WD6j8m', '5454605'), - (970, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WD6j8m', '5455037'), - (970, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WD6j8m', '5461278'), - (970, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WD6j8m', '5469480'), - (970, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WD6j8m', '5471073'), - (970, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '41WD6j8m', '5474663'), - (970, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WD6j8m', '5482022'), - (970, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WD6j8m', '5482793'), - (970, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WD6j8m', '5488912'), - (970, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WD6j8m', '5492192'), - (970, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WD6j8m', '5493139'), - (970, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WD6j8m', '5493200'), - (970, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WD6j8m', '5502188'), - (970, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WD6j8m', '5512862'), - (970, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WD6j8m', '5513985'), - (970, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WD6j8m', '6045684'), - (971, 1207, 'attending', '2022-05-08 09:09:32', '2025-12-17 19:47:28', 'ArQK5rBm', '4773579'), - (971, 1322, 'attending', '2022-04-25 17:33:58', '2025-12-17 19:47:27', 'ArQK5rBm', '5238356'), - (971, 1323, 'not_attending', '2022-04-25 08:55:12', '2025-12-17 19:47:27', 'ArQK5rBm', '5238357'), - (971, 1324, 'attending', '2022-04-27 19:55:01', '2025-12-17 19:47:27', 'ArQK5rBm', '5238360'), - (971, 1325, 'not_attending', '2022-04-29 21:52:36', '2025-12-17 19:47:28', 'ArQK5rBm', '5238361'), - (971, 1326, 'not_attending', '2022-04-29 21:52:53', '2025-12-17 19:47:28', 'ArQK5rBm', '5238362'), - (971, 1327, 'not_attending', '2022-04-25 19:48:02', '2025-12-17 19:47:27', 'ArQK5rBm', '5238445'), - (971, 1337, 'not_attending', '2022-05-09 09:21:08', '2025-12-17 19:47:27', 'ArQK5rBm', '5245036'), - (971, 1340, 'maybe', '2022-04-27 06:49:20', '2025-12-17 19:47:27', 'ArQK5rBm', '5245754'), - (971, 1341, 'not_attending', '2022-05-01 19:52:30', '2025-12-17 19:47:28', 'ArQK5rBm', '5245755'), - (971, 1343, 'not_attending', '2022-05-02 03:27:59', '2025-12-17 19:47:28', 'ArQK5rBm', '5247200'), - (971, 1344, 'not_attending', '2022-04-29 01:23:34', '2025-12-17 19:47:28', 'ArQK5rBm', '5247465'), - (971, 1346, 'attending', '2022-04-22 20:32:10', '2025-12-17 19:47:27', 'ArQK5rBm', '5247467'), - (971, 1348, 'attending', '2022-04-29 21:57:46', '2025-12-17 19:47:28', 'ArQK5rBm', '5247605'), - (971, 1351, 'attending', '2022-04-29 17:02:01', '2025-12-17 19:47:28', 'ArQK5rBm', '5251561'), - (971, 1352, 'not_attending', '2022-05-05 17:27:57', '2025-12-17 19:47:28', 'ArQK5rBm', '5251618'), - (971, 1353, 'attending', '2022-04-22 20:32:09', '2025-12-17 19:47:27', 'ArQK5rBm', '5251777'), - (971, 1355, 'not_attending', '2022-04-28 11:56:51', '2025-12-17 19:47:28', 'ArQK5rBm', '5252573'), - (971, 1357, 'not_attending', '2022-04-25 12:02:04', '2025-12-17 19:47:27', 'ArQK5rBm', '5256017'), - (971, 1358, 'not_attending', '2022-04-25 17:33:56', '2025-12-17 19:47:27', 'ArQK5rBm', '5258022'), - (971, 1359, 'not_attending', '2022-05-04 21:39:38', '2025-12-17 19:47:28', 'ArQK5rBm', '5258360'), - (971, 1360, 'maybe', '2022-04-25 17:34:07', '2025-12-17 19:47:27', 'ArQK5rBm', '5260197'), - (971, 1361, 'not_attending', '2022-04-30 05:23:50', '2025-12-17 19:47:28', 'ArQK5rBm', '5260491'), - (971, 1362, 'attending', '2022-04-25 17:32:30', '2025-12-17 19:47:28', 'ArQK5rBm', '5260800'), - (971, 1363, 'maybe', '2022-04-27 06:52:10', '2025-12-17 19:47:28', 'ArQK5rBm', '5261577'), - (971, 1364, 'not_attending', '2022-05-03 20:57:39', '2025-12-17 19:47:28', 'ArQK5rBm', '5261598'), - (971, 1365, 'maybe', '2022-05-01 15:21:47', '2025-12-17 19:47:28', 'ArQK5rBm', '5261600'), - (971, 1366, 'attending', '2022-04-26 18:35:26', '2025-12-17 19:47:27', 'ArQK5rBm', '5262344'), - (971, 1367, 'attending', '2022-04-29 01:23:30', '2025-12-17 19:47:28', 'ArQK5rBm', '5262345'), - (971, 1368, 'attending', '2022-05-02 03:27:57', '2025-12-17 19:47:28', 'ArQK5rBm', '5262783'), - (971, 1369, 'not_attending', '2022-05-07 10:27:33', '2025-12-17 19:47:28', 'ArQK5rBm', '5262809'), - (971, 1370, 'not_attending', '2022-04-29 16:58:07', '2025-12-17 19:47:28', 'ArQK5rBm', '5263775'), - (971, 1371, 'attending', '2022-04-27 19:54:27', '2025-12-17 19:47:27', 'ArQK5rBm', '5263784'), - (971, 1372, 'attending', '2022-05-01 09:09:09', '2025-12-17 19:47:28', 'ArQK5rBm', '5264352'), - (971, 1374, 'not_attending', '2022-05-07 19:05:28', '2025-12-17 19:47:28', 'ArQK5rBm', '5269930'), - (971, 1375, 'attending', '2022-04-30 20:04:38', '2025-12-17 19:47:28', 'ArQK5rBm', '5269932'), - (971, 1376, 'not_attending', '2022-05-12 09:02:00', '2025-12-17 19:47:28', 'ArQK5rBm', '5271446'), - (971, 1377, 'not_attending', '2022-05-12 09:02:04', '2025-12-17 19:47:28', 'ArQK5rBm', '5271447'), - (971, 1378, 'not_attending', '2022-05-12 09:02:16', '2025-12-17 19:47:29', 'ArQK5rBm', '5271448'), - (971, 1379, 'maybe', '2022-05-20 18:00:03', '2025-12-17 19:47:30', 'ArQK5rBm', '5271449'), - (971, 1380, 'maybe', '2022-05-28 07:24:35', '2025-12-17 19:47:30', 'ArQK5rBm', '5271450'), - (971, 1381, 'not_attending', '2022-05-02 03:27:55', '2025-12-17 19:47:28', 'ArQK5rBm', '5271453'), - (971, 1382, 'attending', '2022-05-04 07:25:45', '2025-12-17 19:47:28', 'ArQK5rBm', '5276350'), - (971, 1383, 'not_attending', '2022-05-12 09:02:07', '2025-12-17 19:47:28', 'ArQK5rBm', '5276469'), - (971, 1384, 'not_attending', '2022-05-05 10:34:04', '2025-12-17 19:47:28', 'ArQK5rBm', '5277078'), - (971, 1385, 'attending', '2022-05-08 22:08:12', '2025-12-17 19:47:28', 'ArQK5rBm', '5277822'), - (971, 1386, 'maybe', '2022-05-05 14:59:08', '2025-12-17 19:47:28', 'ArQK5rBm', '5278159'), - (971, 1387, 'attending', '2022-05-07 10:27:32', '2025-12-17 19:47:28', 'ArQK5rBm', '5278173'), - (971, 1388, 'not_attending', '2022-05-05 21:39:09', '2025-12-17 19:47:28', 'ArQK5rBm', '5278201'), - (971, 1389, 'not_attending', '2022-05-07 18:56:18', '2025-12-17 19:47:28', 'ArQK5rBm', '5278202'), - (971, 1390, 'not_attending', '2022-05-12 09:02:09', '2025-12-17 19:47:28', 'ArQK5rBm', '5279509'), - (971, 1391, 'attending', '2022-05-07 18:43:23', '2025-12-17 19:47:28', 'ArQK5rBm', '5279531'), - (971, 1392, 'not_attending', '2022-05-09 19:51:10', '2025-12-17 19:47:28', 'ArQK5rBm', '5279532'), - (971, 1394, 'attending', '2022-05-23 06:02:01', '2025-12-17 19:47:30', 'ArQK5rBm', '5280667'), - (971, 1395, 'not_attending', '2022-05-07 19:05:43', '2025-12-17 19:47:28', 'ArQK5rBm', '5281102'), - (971, 1396, 'not_attending', '2022-05-12 09:02:12', '2025-12-17 19:47:28', 'ArQK5rBm', '5281103'), - (971, 1398, 'not_attending', '2022-05-08 22:08:00', '2025-12-17 19:47:28', 'ArQK5rBm', '5281795'), - (971, 1399, 'not_attending', '2022-05-12 09:02:01', '2025-12-17 19:47:28', 'ArQK5rBm', '5281796'), - (971, 1400, 'attending', '2022-05-12 09:02:29', '2025-12-17 19:47:29', 'ArQK5rBm', '5284864'), - (971, 1402, 'not_attending', '2022-05-23 06:00:51', '2025-12-17 19:47:30', 'ArQK5rBm', '5287977'), - (971, 1405, 'attending', '2022-05-19 20:14:26', '2025-12-17 19:47:29', 'ArQK5rBm', '5288115'), - (971, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ArQK5rBm', '5363695'), - (971, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQK5rBm', '5365960'), - (971, 1410, 'not_attending', '2022-05-19 19:56:34', '2025-12-17 19:47:29', 'ArQK5rBm', '5367530'), - (971, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQK5rBm', '5368973'), - (971, 1416, 'maybe', '2022-05-28 07:24:35', '2025-12-17 19:47:30', 'ArQK5rBm', '5369628'), - (971, 1417, 'not_attending', '2022-05-23 06:00:40', '2025-12-17 19:47:30', 'ArQK5rBm', '5370465'), - (971, 1418, 'attending', '2022-05-24 22:00:18', '2025-12-17 19:47:30', 'ArQK5rBm', '5372162'), - (971, 1422, 'maybe', '2022-05-28 07:25:02', '2025-12-17 19:47:30', 'ArQK5rBm', '5375603'), - (971, 1423, 'not_attending', '2022-06-14 20:21:45', '2025-12-17 19:47:17', 'ArQK5rBm', '5375727'), - (971, 1428, 'not_attending', '2022-06-10 17:44:36', '2025-12-17 19:47:30', 'ArQK5rBm', '5378247'), - (971, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ArQK5rBm', '5389605'), - (971, 1432, 'maybe', '2022-06-02 09:09:26', '2025-12-17 19:47:30', 'ArQK5rBm', '5391566'), - (971, 1433, 'maybe', '2022-06-03 07:53:37', '2025-12-17 19:47:30', 'ArQK5rBm', '5391667'), - (971, 1442, 'not_attending', '2022-06-18 22:28:28', '2025-12-17 19:47:17', 'ArQK5rBm', '5397265'), - (971, 1445, 'not_attending', '2022-06-17 22:28:02', '2025-12-17 19:47:17', 'ArQK5rBm', '5397615'), - (971, 1449, 'attending', '2022-06-14 20:21:22', '2025-12-17 19:47:31', 'ArQK5rBm', '5403335'), - (971, 1450, 'attending', '2022-06-10 16:31:44', '2025-12-17 19:47:30', 'ArQK5rBm', '5403421'), - (971, 1451, 'not_attending', '2022-06-17 22:25:52', '2025-12-17 19:47:17', 'ArQK5rBm', '5403967'), - (971, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ArQK5rBm', '5404786'), - (971, 1462, 'not_attending', '2022-06-17 20:28:06', '2025-12-17 19:47:17', 'ArQK5rBm', '5405203'), - (971, 1463, 'not_attending', '2022-06-14 20:21:24', '2025-12-17 19:47:31', 'ArQK5rBm', '5405208'), - (971, 1469, 'attending', '2022-06-17 22:28:36', '2025-12-17 19:47:17', 'ArQK5rBm', '5406838'), - (971, 1470, 'not_attending', '2022-06-18 21:24:43', '2025-12-17 19:47:17', 'ArQK5rBm', '5407053'), - (971, 1473, 'maybe', '2022-06-14 20:21:19', '2025-12-17 19:47:31', 'ArQK5rBm', '5407267'), - (971, 1476, 'maybe', '2022-06-17 22:28:20', '2025-12-17 19:47:17', 'ArQK5rBm', '5408130'), - (971, 1478, 'attending', '2022-06-15 10:11:33', '2025-12-17 19:47:17', 'ArQK5rBm', '5408794'), - (971, 1479, 'not_attending', '2022-06-17 22:28:04', '2025-12-17 19:47:17', 'ArQK5rBm', '5410322'), - (971, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ArQK5rBm', '5411699'), - (971, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ArQK5rBm', '5412550'), - (971, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ArQK5rBm', '5415046'), - (971, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ArQK5rBm', '5422086'), - (971, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ArQK5rBm', '5422406'), - (971, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ArQK5rBm', '5424565'), - (971, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQK5rBm', '5426882'), - (971, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ArQK5rBm', '5427083'), - (971, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'ArQK5rBm', '5441125'), - (971, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ArQK5rBm', '5441126'), - (971, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ArQK5rBm', '5441128'), - (971, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ArQK5rBm', '5441131'), - (971, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'ArQK5rBm', '5441132'), - (971, 1526, 'maybe', '2022-07-18 18:54:04', '2025-12-17 19:47:20', 'ArQK5rBm', '5445059'), - (971, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQK5rBm', '5446643'), - (971, 1536, 'maybe', '2022-07-18 18:53:51', '2025-12-17 19:47:20', 'ArQK5rBm', '5449068'), - (971, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQK5rBm', '5453325'), - (971, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQK5rBm', '5454516'), - (971, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQK5rBm', '5454605'), - (971, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQK5rBm', '5455037'), - (971, 1558, 'attending', '2022-09-08 15:24:43', '2025-12-17 19:47:10', 'ArQK5rBm', '5458730'), - (971, 1559, 'attending', '2022-09-08 15:26:45', '2025-12-17 19:47:11', 'ArQK5rBm', '5458731'), - (971, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQK5rBm', '5461278'), - (971, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQK5rBm', '5469480'), - (971, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQK5rBm', '5471073'), - (971, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ArQK5rBm', '5474663'), - (971, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQK5rBm', '5482022'), - (971, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQK5rBm', '5482793'), - (971, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQK5rBm', '5488912'), - (971, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQK5rBm', '5492192'), - (971, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQK5rBm', '5493139'), - (971, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQK5rBm', '5493200'), - (971, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQK5rBm', '5502188'), - (971, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ArQK5rBm', '5505059'), - (971, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ArQK5rBm', '5509055'), - (971, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ArQK5rBm', '5512862'), - (971, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ArQK5rBm', '5513985'), - (971, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ArQK5rBm', '5519981'), - (971, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ArQK5rBm', '5522550'), - (971, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ArQK5rBm', '5534683'), - (971, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'ArQK5rBm', '5537735'), - (971, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ArQK5rBm', '5540859'), - (971, 1643, 'maybe', '2022-09-08 15:26:34', '2025-12-17 19:47:11', 'ArQK5rBm', '5545856'), - (971, 1644, 'maybe', '2022-09-08 15:26:18', '2025-12-17 19:47:11', 'ArQK5rBm', '5545857'), - (971, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ArQK5rBm', '5546619'), - (971, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ArQK5rBm', '5555245'), - (971, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ArQK5rBm', '5557747'), - (971, 1662, 'maybe', '2022-09-13 18:39:45', '2025-12-17 19:47:11', 'ArQK5rBm', '5560255'), - (971, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ArQK5rBm', '5562906'), - (971, 1667, 'maybe', '2022-09-21 21:56:44', '2025-12-17 19:47:11', 'ArQK5rBm', '5563221'), - (971, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ArQK5rBm', '5600604'), - (971, 1679, 'not_attending', '2022-09-29 03:11:59', '2025-12-17 19:47:12', 'ArQK5rBm', '5601099'), - (971, 1680, 'maybe', '2022-09-21 21:57:16', '2025-12-17 19:47:11', 'ArQK5rBm', '5601577'), - (971, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ArQK5rBm', '5605544'), - (971, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'ArQK5rBm', '5606737'), - (971, 1700, 'attending', '2022-10-01 16:14:36', '2025-12-17 19:47:12', 'ArQK5rBm', '5606814'), - (971, 1701, 'not_attending', '2022-09-29 03:12:35', '2025-12-17 19:47:11', 'ArQK5rBm', '5607857'), - (971, 1703, 'maybe', '2022-09-29 03:11:05', '2025-12-17 19:47:12', 'ArQK5rBm', '5609176'), - (971, 1708, 'attending', '2022-10-04 17:48:59', '2025-12-17 19:47:12', 'ArQK5rBm', '5617648'), - (971, 1716, 'not_attending', '2022-10-11 21:33:23', '2025-12-17 19:47:12', 'ArQK5rBm', '5622429'), - (971, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ArQK5rBm', '5630960'), - (971, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ArQK5rBm', '5630961'), - (971, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ArQK5rBm', '5630962'), - (971, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ArQK5rBm', '5630966'), - (971, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ArQK5rBm', '5630967'), - (971, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ArQK5rBm', '5630968'), - (971, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ArQK5rBm', '5635406'), - (971, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ArQK5rBm', '5638765'), - (971, 1739, 'attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ArQK5rBm', '5640097'), - (971, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ArQK5rBm', '5640843'), - (971, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ArQK5rBm', '5641521'), - (971, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ArQK5rBm', '5642818'), - (971, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ArQK5rBm', '5652395'), - (971, 1757, 'maybe', '2022-10-31 13:27:14', '2025-12-17 19:47:15', 'ArQK5rBm', '5668974'), - (971, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ArQK5rBm', '5670445'), - (971, 1763, 'attending', '2022-11-10 00:42:18', '2025-12-17 19:47:15', 'ArQK5rBm', '5670803'), - (971, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ArQK5rBm', '5671637'), - (971, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ArQK5rBm', '5672329'), - (971, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ArQK5rBm', '5674057'), - (971, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ArQK5rBm', '5674060'), - (971, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ArQK5rBm', '5677461'), - (971, 1773, 'attending', '2022-10-29 16:26:04', '2025-12-17 19:47:14', 'ArQK5rBm', '5677707'), - (971, 1776, 'not_attending', '2022-11-09 00:06:55', '2025-12-17 19:47:15', 'ArQK5rBm', '5691067'), - (971, 1780, 'maybe', '2022-11-02 05:35:15', '2025-12-17 19:47:15', 'ArQK5rBm', '5696082'), - (971, 1781, 'maybe', '2022-11-02 22:22:55', '2025-12-17 19:47:15', 'ArQK5rBm', '5696178'), - (971, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ArQK5rBm', '5698046'), - (971, 1783, 'attending', '2022-11-10 00:41:53', '2025-12-17 19:47:16', 'ArQK5rBm', '5698621'), - (971, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ArQK5rBm', '5699760'), - (971, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ArQK5rBm', '5741601'), - (971, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ArQK5rBm', '5763458'), - (971, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ArQK5rBm', '5774172'), - (971, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'ArQK5rBm', '5818247'), - (971, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ArQK5rBm', '5819471'), - (971, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ArQK5rBm', '5827739'), - (971, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ArQK5rBm', '5844306'), - (971, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ArQK5rBm', '5850159'), - (971, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ArQK5rBm', '5858999'), - (971, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ArQK5rBm', '5871984'), - (971, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ArQK5rBm', '5876354'), - (971, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'ArQK5rBm', '5880939'), - (971, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ArQK5rBm', '5887890'), - (971, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ArQK5rBm', '5888598'), - (971, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ArQK5rBm', '5893260'), - (971, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQK5rBm', '6045684'), - (972, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dODKNwym', '4356801'), - (972, 974, 'attending', '2021-08-28 22:41:12', '2025-12-17 19:47:42', 'dODKNwym', '4366187'), - (972, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dODKNwym', '4420735'), - (972, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dODKNwym', '4420738'), - (972, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dODKNwym', '4420739'), - (972, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dODKNwym', '4420741'), - (972, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dODKNwym', '4420744'), - (972, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dODKNwym', '4420747'), - (972, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dODKNwym', '4420748'), - (972, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dODKNwym', '4420749'), - (972, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODKNwym', '4461883'), - (972, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODKNwym', '4508342'), - (972, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODKNwym', '4568602'), - (972, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODKNwym', '6045684'), - (973, 971, 'maybe', '2021-09-08 19:12:56', '2025-12-17 19:47:43', 'dODnKK5m', '4356801'), - (973, 991, 'maybe', '2021-09-07 20:17:53', '2025-12-17 19:47:43', 'dODnKK5m', '4420738'), - (973, 992, 'not_attending', '2021-09-08 19:11:11', '2025-12-17 19:47:34', 'dODnKK5m', '4420739'), - (973, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dODnKK5m', '4420741'), - (973, 995, 'maybe', '2021-10-04 21:41:58', '2025-12-17 19:47:34', 'dODnKK5m', '4420744'), - (973, 996, 'maybe', '2021-10-09 16:22:22', '2025-12-17 19:47:35', 'dODnKK5m', '4420747'), - (973, 1003, 'attending', '2021-09-06 15:44:19', '2025-12-17 19:47:43', 'dODnKK5m', '4438802'), - (973, 1019, 'maybe', '2021-09-06 15:44:46', '2025-12-17 19:47:43', 'dODnKK5m', '4450515'), - (973, 1020, 'maybe', '2021-09-06 15:50:31', '2025-12-17 19:47:43', 'dODnKK5m', '4451787'), - (973, 1021, 'maybe', '2021-09-06 15:46:42', '2025-12-17 19:47:34', 'dODnKK5m', '4451803'), - (973, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODnKK5m', '4461883'), - (973, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODnKK5m', '4508342'), - (973, 1072, 'not_attending', '2021-10-06 15:13:38', '2025-12-17 19:47:34', 'dODnKK5m', '4516287'), - (973, 1074, 'not_attending', '2021-09-29 15:22:49', '2025-12-17 19:47:34', 'dODnKK5m', '4528953'), - (973, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODnKK5m', '4568602'), - (973, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODnKK5m', '6045684'), - (974, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AX2M2Jvd', '5880943'), - (974, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AX2M2Jvd', '5900202'), - (974, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AX2M2Jvd', '5900203'), - (974, 1916, 'not_attending', '2023-03-01 16:36:14', '2025-12-17 19:47:08', 'AX2M2Jvd', '5910526'), - (974, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'AX2M2Jvd', '5910528'), - (974, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'AX2M2Jvd', '5962317'), - (974, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'AX2M2Jvd', '5962318'), - (974, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AX2M2Jvd', '5965933'), - (974, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AX2M2Jvd', '5967014'), - (974, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AX2M2Jvd', '5972815'), - (974, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AX2M2Jvd', '5974016'), - (974, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AX2M2Jvd', '5981515'), - (974, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AX2M2Jvd', '5993516'), - (974, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AX2M2Jvd', '5998939'), - (974, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AX2M2Jvd', '6028191'), - (974, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AX2M2Jvd', '6040066'), - (974, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AX2M2Jvd', '6042717'), - (974, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AX2M2Jvd', '6044838'), - (974, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AX2M2Jvd', '6044839'), - (974, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AX2M2Jvd', '6045684'), - (974, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AX2M2Jvd', '6050104'), - (974, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AX2M2Jvd', '6053195'), - (974, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AX2M2Jvd', '6053198'), - (974, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AX2M2Jvd', '6056085'), - (974, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AX2M2Jvd', '6056916'), - (974, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AX2M2Jvd', '6059290'), - (974, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AX2M2Jvd', '6060328'), - (974, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AX2M2Jvd', '6061037'), - (974, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AX2M2Jvd', '6068094'), - (974, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AX2M2Jvd', '6068252'), - (974, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AX2M2Jvd', '6068253'), - (974, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AX2M2Jvd', '6068254'), - (974, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'AX2M2Jvd', '6068280'), - (974, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AX2M2Jvd', '6069093'), - (975, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'd2rggqVd', '8529058'), - (975, 3278, 'not_attending', '2025-09-30 15:01:05', '2025-12-17 19:46:13', 'd2rggqVd', '8535533'), - (976, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AXZ9NBZd', '7074364'), - (976, 2628, 'attending', '2024-06-01 21:30:04', '2025-12-17 19:46:36', 'AXZ9NBZd', '7264725'), - (976, 2657, 'attending', '2024-05-29 19:04:14', '2025-12-17 19:46:36', 'AXZ9NBZd', '7294438'), - (976, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AXZ9NBZd', '7302674'), - (976, 2678, 'attending', '2024-06-15 22:44:02', '2025-12-17 19:46:28', 'AXZ9NBZd', '7319489'), - (976, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AXZ9NBZd', '7324073'), - (976, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AXZ9NBZd', '7324074'), - (976, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AXZ9NBZd', '7324075'), - (976, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AXZ9NBZd', '7324078'), - (976, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AXZ9NBZd', '7324082'), - (976, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AXZ9NBZd', '7331457'), - (976, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AXZ9NBZd', '7356752'), - (976, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AXZ9NBZd', '7363643'), - (976, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AXZ9NBZd', '7368606'), - (976, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AXZ9NBZd', '7397462'), - (976, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AXZ9NBZd', '7424275'), - (976, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AXZ9NBZd', '7424276'), - (976, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AXZ9NBZd', '7432751'), - (976, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AXZ9NBZd', '7432752'), - (976, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AXZ9NBZd', '7432753'), - (976, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432754'), - (976, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432755'), - (976, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432756'), - (976, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432758'), - (976, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432759'), - (976, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AXZ9NBZd', '7433834'), - (976, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AXZ9NBZd', '7470197'), - (976, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AXZ9NBZd', '7685613'), - (976, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AXZ9NBZd', '7688194'), - (976, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AXZ9NBZd', '7688196'), - (976, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AXZ9NBZd', '7688289'), - (977, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4E2rVMZd', '6044839'), - (977, 1994, 'not_attending', '2023-04-05 21:32:02', '2025-12-17 19:46:59', '4E2rVMZd', '6050104'), - (977, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4E2rVMZd', '6053195'), - (977, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4E2rVMZd', '6053198'), - (977, 2007, 'attending', '2023-04-06 23:54:47', '2025-12-17 19:46:58', '4E2rVMZd', '6055291'), - (977, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4E2rVMZd', '6056085'), - (977, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4E2rVMZd', '6056916'), - (977, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4E2rVMZd', '6059290'), - (977, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4E2rVMZd', '6060328'), - (977, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4E2rVMZd', '6061037'), - (977, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4E2rVMZd', '6061039'), - (977, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4E2rVMZd', '6067245'), - (977, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4E2rVMZd', '6068094'), - (977, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4E2rVMZd', '6068252'), - (977, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4E2rVMZd', '6068253'), - (977, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4E2rVMZd', '6068254'), - (977, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4E2rVMZd', '6068280'), - (977, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4E2rVMZd', '6069093'), - (977, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4E2rVMZd', '6072528'), - (977, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4E2rVMZd', '6079840'), - (977, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4E2rVMZd', '6083398'), - (977, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4E2rVMZd', '6093504'), - (977, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4E2rVMZd', '6097414'), - (977, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4E2rVMZd', '6097442'), - (977, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4E2rVMZd', '6097684'), - (977, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4E2rVMZd', '6098762'), - (977, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4E2rVMZd', '6101362'), - (977, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4E2rVMZd', '6107314'), - (977, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4E2rVMZd', '6120034'), - (978, 47, 'maybe', '2020-05-05 18:02:56', '2025-12-17 19:47:57', 'GAneQwbm', '2975272'), - (978, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'GAneQwbm', '2977812'), - (978, 76, 'attending', '2020-05-02 20:27:37', '2025-12-17 19:47:57', 'GAneQwbm', '2978246'), - (978, 77, 'not_attending', '2020-05-09 22:28:58', '2025-12-17 19:47:57', 'GAneQwbm', '2978247'), - (978, 78, 'not_attending', '2020-05-23 22:03:12', '2025-12-17 19:47:57', 'GAneQwbm', '2978249'), - (978, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'GAneQwbm', '2978250'), - (978, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'GAneQwbm', '2978438'), - (978, 105, 'maybe', '2020-05-10 15:07:42', '2025-12-17 19:47:57', 'GAneQwbm', '2993500'), - (978, 106, 'attending', '2020-05-03 14:34:46', '2025-12-17 19:47:57', 'GAneQwbm', '2993501'), - (978, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'GAneQwbm', '2994480'), - (978, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'GAneQwbm', '3023063'), - (978, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'GAneQwbm', '3034321'), - (978, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'GAneQwbm', '3035881'), - (978, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'GAneQwbm', '3049983'), - (978, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'GAneQwbm', '3058959'), - (978, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'GAneQwbm', '3067093'), - (978, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'GAneQwbm', '3075228'), - (978, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'GAneQwbm', '3075456'), - (978, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'GAneQwbm', '3083791'), - (978, 187, 'not_attending', '2020-06-28 19:31:11', '2025-12-17 19:47:55', 'GAneQwbm', '3085151'), - (978, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'GAneQwbm', '3087265'), - (978, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', 'GAneQwbm', '3087266'), - (978, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'GAneQwbm', '3087267'), - (978, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'GAneQwbm', '3087268'), - (978, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'GAneQwbm', '3088653'), - (978, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'GAneQwbm', '3106813'), - (978, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'GAneQwbm', '3129980'), - (978, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'GAneQwbm', '3132817'), - (978, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'GAneQwbm', '3132820'), - (978, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'GAneQwbm', '3155321'), - (978, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'GAneQwbm', '3162006'), - (978, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'GAneQwbm', '3163442'), - (978, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'GAneQwbm', '3172832'), - (978, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'GAneQwbm', '3172833'), - (978, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'GAneQwbm', '3172834'), - (978, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'GAneQwbm', '3172876'), - (978, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'GAneQwbm', '3186057'), - (978, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'GAneQwbm', '3191735'), - (978, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'GAneQwbm', '3200209'), - (978, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', 'GAneQwbm', '3214207'), - (978, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'GAneQwbm', '3217037'), - (978, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'GAneQwbm', '3218510'), - (978, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'GAneQwbm', '3228698'), - (978, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'GAneQwbm', '3228699'), - (978, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'GAneQwbm', '3228700'), - (978, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'GAneQwbm', '3228701'), - (978, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'GAneQwbm', '3245751'), - (978, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GAneQwbm', '3250232'), - (978, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'GAneQwbm', '3256168'), - (978, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GAneQwbm', '3263578'), - (978, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GAneQwbm', '3276428'), - (978, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GAneQwbm', '3281470'), - (978, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GAneQwbm', '3281829'), - (978, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'GAneQwbm', '3285413'), - (978, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'GAneQwbm', '3285414'), - (978, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GAneQwbm', '3297764'), - (978, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'GAneQwbm', '3313856'), - (978, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GAneQwbm', '3314909'), - (978, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GAneQwbm', '3314964'), - (978, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'GAneQwbm', '3323365'), - (978, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GAneQwbm', '3329383'), - (978, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GAneQwbm', '3351539'), - (978, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GAneQwbm', '3386848'), - (978, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GAneQwbm', '3389527'), - (978, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GAneQwbm', '3396499'), - (978, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GAneQwbm', '3403650'), - (978, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GAneQwbm', '3406988'), - (978, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GAneQwbm', '3416576'), - (978, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'GAneQwbm', '3430267'), - (978, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'GAneQwbm', '3470305'), - (978, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GAneQwbm', '3470991'), - (978, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'GAneQwbm', '3517815'), - (978, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'GAneQwbm', '3517816'), - (978, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'GAneQwbm', '3523941'), - (978, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GAneQwbm', '3533850'), - (978, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GAneQwbm', '3536632'), - (978, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GAneQwbm', '3536656'), - (978, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'GAneQwbm', '3539916'), - (978, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'GAneQwbm', '3539917'), - (978, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'GAneQwbm', '3539918'), - (978, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'GAneQwbm', '3539919'), - (978, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'GAneQwbm', '3539920'), - (978, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'GAneQwbm', '3539921'), - (978, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'GAneQwbm', '3539922'), - (978, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'GAneQwbm', '3539923'), - (978, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GAneQwbm', '3539927'), - (978, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GAneQwbm', '3582734'), - (978, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GAneQwbm', '3583262'), - (978, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GAneQwbm', '3619523'), - (978, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GAneQwbm', '3661369'), - (978, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GAneQwbm', '3674262'), - (978, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GAneQwbm', '3677402'), - (978, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GAneQwbm', '3730212'), - (978, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GAneQwbm', '3793156'), - (978, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GAneQwbm', '3974109'), - (978, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GAneQwbm', '3975311'), - (978, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GAneQwbm', '3975312'), - (978, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GAneQwbm', '3994992'), - (978, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GAneQwbm', '4014338'), - (978, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GAneQwbm', '4021848'), - (978, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GAneQwbm', '4136744'), - (978, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GAneQwbm', '4136937'), - (978, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GAneQwbm', '4136938'), - (978, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GAneQwbm', '4136947'), - (978, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GAneQwbm', '4210314'), - (978, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GAneQwbm', '4225444'), - (978, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GAneQwbm', '4239259'), - (978, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GAneQwbm', '4240316'), - (978, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GAneQwbm', '4240317'), - (978, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GAneQwbm', '4240318'), - (978, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GAneQwbm', '4240320'), - (978, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GAneQwbm', '4250163'), - (978, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GAneQwbm', '4275957'), - (978, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GAneQwbm', '4277819'), - (978, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GAneQwbm', '4301723'), - (978, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GAneQwbm', '4302093'), - (978, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GAneQwbm', '4304151'), - (978, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GAneQwbm', '4356801'), - (978, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GAneQwbm', '4366186'), - (978, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GAneQwbm', '4366187'), - (978, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GAneQwbm', '4420735'), - (978, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GAneQwbm', '4420738'), - (978, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GAneQwbm', '4420739'), - (978, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GAneQwbm', '4420741'), - (978, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GAneQwbm', '4420744'), - (978, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GAneQwbm', '4420747'), - (978, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GAneQwbm', '4420748'), - (978, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GAneQwbm', '4420749'), - (978, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GAneQwbm', '4461883'), - (978, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GAneQwbm', '4508342'), - (978, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GAneQwbm', '4568602'), - (978, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GAneQwbm', '4572153'), - (978, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GAneQwbm', '4585962'), - (978, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'GAneQwbm', '4596356'), - (978, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GAneQwbm', '4598860'), - (978, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'GAneQwbm', '4598861'), - (978, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GAneQwbm', '4602797'), - (978, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'GAneQwbm', '4637896'), - (978, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'GAneQwbm', '4642994'), - (978, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'GAneQwbm', '4642995'), - (978, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GAneQwbm', '4642996'), - (978, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GAneQwbm', '4642997'), - (978, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'GAneQwbm', '4645687'), - (978, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GAneQwbm', '4645698'), - (978, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'GAneQwbm', '4645704'), - (978, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'GAneQwbm', '4645705'), - (978, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GAneQwbm', '4668385'), - (978, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GAneQwbm', '4694407'), - (978, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GAneQwbm', '4736497'), - (978, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GAneQwbm', '4736499'), - (978, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GAneQwbm', '4736500'), - (978, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GAneQwbm', '4736503'), - (978, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'GAneQwbm', '4736504'), - (978, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GAneQwbm', '4746789'), - (978, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'GAneQwbm', '4753929'), - (978, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GAneQwbm', '5038850'), - (978, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GAneQwbm', '5045826'), - (978, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GAneQwbm', '5132533'), - (978, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GAneQwbm', '5186582'), - (978, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GAneQwbm', '5186583'), - (978, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'GAneQwbm', '5186585'), - (978, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GAneQwbm', '5190437'), - (978, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GAneQwbm', '5195095'), - (978, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GAneQwbm', '5215989'), - (978, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GAneQwbm', '5223686'), - (978, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GAneQwbm', '5247467'), - (978, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'GAneQwbm', '5260800'), - (978, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GAneQwbm', '5269930'), - (978, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GAneQwbm', '5271448'), - (978, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'GAneQwbm', '5271449'), - (978, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GAneQwbm', '5278159'), - (978, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'GAneQwbm', '5363695'), - (978, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GAneQwbm', '5365960'), - (978, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GAneQwbm', '5378247'), - (978, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GAneQwbm', '5389605'), - (978, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GAneQwbm', '5397265'), - (978, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GAneQwbm', '5404786'), - (978, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GAneQwbm', '5405203'), - (978, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GAneQwbm', '5412550'), - (978, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GAneQwbm', '5415046'), - (978, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GAneQwbm', '5422086'), - (978, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GAneQwbm', '5422406'), - (978, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GAneQwbm', '5424565'), - (978, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GAneQwbm', '5426882'), - (978, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GAneQwbm', '5441125'), - (978, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GAneQwbm', '5441126'), - (978, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GAneQwbm', '5441128'), - (978, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GAneQwbm', '5441131'), - (978, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GAneQwbm', '5441132'), - (978, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GAneQwbm', '5453325'), - (978, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GAneQwbm', '5454516'), - (978, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GAneQwbm', '5454605'), - (978, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GAneQwbm', '5455037'), - (978, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GAneQwbm', '5461278'), - (978, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GAneQwbm', '5469480'), - (978, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GAneQwbm', '5474663'), - (978, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GAneQwbm', '5482022'), - (978, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GAneQwbm', '5488912'), - (978, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GAneQwbm', '5492192'), - (978, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GAneQwbm', '5493139'), - (978, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GAneQwbm', '5493200'), - (978, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GAneQwbm', '5502188'), - (978, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GAneQwbm', '5505059'), - (978, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GAneQwbm', '5509055'), - (978, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GAneQwbm', '5512862'), - (978, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GAneQwbm', '5513985'), - (978, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GAneQwbm', '5519981'), - (978, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GAneQwbm', '5522550'), - (978, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GAneQwbm', '5534683'), - (978, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GAneQwbm', '5537735'), - (978, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GAneQwbm', '5540859'), - (978, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GAneQwbm', '5546619'), - (978, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GAneQwbm', '5557747'), - (978, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GAneQwbm', '5560255'), - (978, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GAneQwbm', '5562906'), - (978, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GAneQwbm', '5600604'), - (978, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GAneQwbm', '5605544'), - (978, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GAneQwbm', '5630960'), - (978, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GAneQwbm', '5630961'), - (978, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GAneQwbm', '5630962'), - (978, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GAneQwbm', '5630966'), - (978, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GAneQwbm', '5630967'), - (978, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GAneQwbm', '5630968'), - (978, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GAneQwbm', '5635406'), - (978, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GAneQwbm', '5638765'), - (978, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GAneQwbm', '5640097'), - (978, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GAneQwbm', '5640843'), - (978, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GAneQwbm', '5641521'), - (978, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GAneQwbm', '5642818'), - (978, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GAneQwbm', '5652395'), - (978, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GAneQwbm', '5670445'), - (978, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GAneQwbm', '5671637'), - (978, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GAneQwbm', '5672329'), - (978, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GAneQwbm', '5674057'), - (978, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GAneQwbm', '5674060'), - (978, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GAneQwbm', '5677461'), - (978, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GAneQwbm', '5698046'), - (978, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GAneQwbm', '5699760'), - (978, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GAneQwbm', '5741601'), - (978, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GAneQwbm', '5763458'), - (978, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GAneQwbm', '5774172'), - (978, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GAneQwbm', '5818247'), - (978, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GAneQwbm', '5819471'), - (978, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GAneQwbm', '5827739'), - (978, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GAneQwbm', '5844306'), - (978, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GAneQwbm', '5850159'), - (978, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GAneQwbm', '5858999'), - (978, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GAneQwbm', '5871984'), - (978, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GAneQwbm', '5876354'), - (978, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GAneQwbm', '5880939'), - (978, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GAneQwbm', '5880940'), - (978, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GAneQwbm', '5880942'), - (978, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GAneQwbm', '5880943'), - (978, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GAneQwbm', '5887890'), - (978, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GAneQwbm', '5888598'), - (978, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GAneQwbm', '5893260'), - (978, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GAneQwbm', '5899826'), - (978, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GAneQwbm', '5900199'), - (978, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GAneQwbm', '5900200'), - (978, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GAneQwbm', '5900202'), - (978, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GAneQwbm', '5900203'), - (978, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GAneQwbm', '5901108'), - (978, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GAneQwbm', '5901126'), - (978, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'GAneQwbm', '5901606'), - (978, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GAneQwbm', '5909655'), - (978, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GAneQwbm', '5910522'), - (978, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GAneQwbm', '5910526'), - (978, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GAneQwbm', '5910528'), - (978, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GAneQwbm', '5916219'), - (978, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GAneQwbm', '5936234'), - (978, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GAneQwbm', '5958351'), - (978, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GAneQwbm', '5959751'), - (978, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GAneQwbm', '5959755'), - (978, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GAneQwbm', '5960055'), - (978, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GAneQwbm', '5961684'), - (978, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GAneQwbm', '5962132'), - (978, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GAneQwbm', '5962133'), - (978, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GAneQwbm', '5962134'), - (978, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GAneQwbm', '5962317'), - (978, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GAneQwbm', '5962318'), - (978, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GAneQwbm', '5965933'), - (978, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GAneQwbm', '5967014'), - (978, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GAneQwbm', '5972815'), - (978, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GAneQwbm', '5974016'), - (978, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GAneQwbm', '5981515'), - (978, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GAneQwbm', '5993516'), - (978, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GAneQwbm', '5998939'), - (978, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GAneQwbm', '6028191'), - (978, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GAneQwbm', '6040066'), - (978, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GAneQwbm', '6042717'), - (978, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GAneQwbm', '6044838'), - (978, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GAneQwbm', '6044839'), - (978, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GAneQwbm', '6045684'), - (978, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GAneQwbm', '6050104'), - (978, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GAneQwbm', '6053195'), - (978, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GAneQwbm', '6053198'), - (978, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GAneQwbm', '6056085'), - (978, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GAneQwbm', '6056916'), - (978, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GAneQwbm', '6059290'), - (978, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GAneQwbm', '6060328'), - (978, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GAneQwbm', '6061037'), - (978, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GAneQwbm', '6061039'), - (978, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GAneQwbm', '6067245'), - (978, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GAneQwbm', '6068094'), - (978, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GAneQwbm', '6068252'), - (978, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GAneQwbm', '6068253'), - (978, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GAneQwbm', '6068254'), - (978, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GAneQwbm', '6068280'), - (978, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GAneQwbm', '6069093'), - (978, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GAneQwbm', '6072528'), - (978, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GAneQwbm', '6079840'), - (978, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GAneQwbm', '6083398'), - (978, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GAneQwbm', '6093504'), - (978, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GAneQwbm', '6097414'), - (978, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GAneQwbm', '6097442'), - (978, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GAneQwbm', '6097684'), - (978, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GAneQwbm', '6098762'), - (978, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GAneQwbm', '6101361'), - (978, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GAneQwbm', '6101362'), - (978, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GAneQwbm', '6107314'), - (978, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GAneQwbm', '6120034'), - (978, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GAneQwbm', '6136733'), - (978, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GAneQwbm', '6137989'), - (978, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GAneQwbm', '6150864'), - (978, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GAneQwbm', '6155491'), - (978, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GAneQwbm', '6164417'), - (978, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GAneQwbm', '6166388'), - (978, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GAneQwbm', '6176439'), - (978, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GAneQwbm', '6182410'), - (978, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GAneQwbm', '6185812'), - (978, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GAneQwbm', '6187651'), - (978, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GAneQwbm', '6187963'), - (978, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GAneQwbm', '6187964'), - (978, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GAneQwbm', '6187966'), - (978, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GAneQwbm', '6187967'), - (978, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GAneQwbm', '6187969'), - (978, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GAneQwbm', '6334878'), - (978, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GAneQwbm', '6337236'), - (978, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GAneQwbm', '6337970'), - (978, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GAneQwbm', '6338308'), - (978, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GAneQwbm', '6341710'), - (978, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GAneQwbm', '6342044'), - (978, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GAneQwbm', '6342298'), - (978, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GAneQwbm', '6343294'), - (978, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GAneQwbm', '6347034'), - (978, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GAneQwbm', '6347056'), - (978, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GAneQwbm', '6353830'), - (978, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GAneQwbm', '6353831'), - (978, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GAneQwbm', '6357867'), - (978, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GAneQwbm', '6358652'), - (978, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GAneQwbm', '6361709'), - (978, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GAneQwbm', '6361710'), - (978, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GAneQwbm', '6361711'), - (978, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GAneQwbm', '6361712'), - (978, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GAneQwbm', '6361713'), - (978, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'GAneQwbm', '6382573'), - (978, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GAneQwbm', '6388604'), - (978, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GAneQwbm', '6394629'), - (978, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GAneQwbm', '6394631'), - (978, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GAneQwbm', '6440863'), - (978, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GAneQwbm', '6445440'), - (978, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GAneQwbm', '6453951'), - (978, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GAneQwbm', '6461696'), - (978, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GAneQwbm', '6462129'), - (978, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GAneQwbm', '6463218'), - (978, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GAneQwbm', '6472181'), - (978, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GAneQwbm', '6482693'), - (978, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GAneQwbm', '6484200'), - (978, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GAneQwbm', '6484680'), - (978, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GAneQwbm', '6507741'), - (978, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GAneQwbm', '6514659'), - (978, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GAneQwbm', '6514660'), - (978, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GAneQwbm', '6519103'), - (978, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GAneQwbm', '6535681'), - (978, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GAneQwbm', '6584747'), - (978, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GAneQwbm', '6587097'), - (978, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GAneQwbm', '6609022'), - (978, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'GAneQwbm', '6632757'), - (978, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GAneQwbm', '6644187'), - (978, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GAneQwbm', '6648951'), - (978, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GAneQwbm', '6648952'), - (978, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GAneQwbm', '6655401'), - (978, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GAneQwbm', '6661585'), - (978, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GAneQwbm', '6661588'), - (978, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GAneQwbm', '6661589'), - (978, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GAneQwbm', '6699906'), - (978, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GAneQwbm', '6699913'), - (978, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GAneQwbm', '6701109'), - (978, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GAneQwbm', '6705219'), - (978, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GAneQwbm', '6710153'), - (978, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GAneQwbm', '6711552'), - (978, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GAneQwbm', '6711553'), - (978, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GAneQwbm', '6722688'), - (978, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GAneQwbm', '6730620'), - (978, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GAneQwbm', '6740364'), - (978, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GAneQwbm', '6743829'), - (978, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GAneQwbm', '7030380'), - (978, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'GAneQwbm', '7033677'), - (978, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GAneQwbm', '7044715'), - (978, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GAneQwbm', '7050318'), - (978, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GAneQwbm', '7050319'), - (978, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GAneQwbm', '7050322'), - (978, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GAneQwbm', '7057804'), - (978, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GAneQwbm', '7072824'), - (978, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GAneQwbm', '7074348'), - (978, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAneQwbm', '7074364'), - (978, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GAneQwbm', '7089267'), - (978, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GAneQwbm', '7098747'), - (978, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GAneQwbm', '7113468'), - (978, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GAneQwbm', '7114856'), - (978, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GAneQwbm', '7114951'), - (978, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GAneQwbm', '7114955'), - (978, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GAneQwbm', '7114956'), - (978, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GAneQwbm', '7114957'), - (978, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GAneQwbm', '7159484'), - (978, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GAneQwbm', '7178446'), - (978, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GAneQwbm', '7220467'), - (978, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GAneQwbm', '7240354'), - (978, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GAneQwbm', '7251633'), - (978, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GAneQwbm', '7324073'), - (978, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAneQwbm', '7324074'), - (978, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAneQwbm', '7324075'), - (978, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GAneQwbm', '7324078'), - (978, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GAneQwbm', '7324082'), - (978, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GAneQwbm', '7331457'), - (978, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GAneQwbm', '7363643'), - (978, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAneQwbm', '7368606'), - (978, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GAneQwbm', '7397462'), - (978, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GAneQwbm', '7424275'), - (978, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAneQwbm', '7432751'), - (978, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAneQwbm', '7432752'), - (978, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAneQwbm', '7432753'), - (978, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAneQwbm', '7432754'), - (978, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAneQwbm', '7432755'), - (978, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAneQwbm', '7432756'), - (978, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAneQwbm', '7432758'), - (978, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAneQwbm', '7432759'), - (978, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAneQwbm', '7433834'), - (978, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'GAneQwbm', '7470197'), - (978, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GAneQwbm', '7685613'), - (978, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAneQwbm', '7688194'), - (978, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAneQwbm', '7688196'), - (978, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAneQwbm', '7688289'), - (978, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAneQwbm', '7692763'), - (978, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAneQwbm', '7697552'), - (978, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAneQwbm', '7699878'), - (978, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GAneQwbm', '7704043'), - (978, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GAneQwbm', '7712467'), - (978, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GAneQwbm', '7713585'), - (978, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAneQwbm', '7713586'), - (978, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAneQwbm', '7738518'), - (978, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAneQwbm', '7750636'), - (978, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAneQwbm', '7796540'), - (978, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAneQwbm', '7796541'), - (978, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAneQwbm', '7796542'), - (978, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAneQwbm', '7825913'), - (978, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GAneQwbm', '7826209'), - (978, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAneQwbm', '7834742'), - (978, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GAneQwbm', '7842108'), - (978, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAneQwbm', '7842902'), - (978, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAneQwbm', '7842903'), - (978, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAneQwbm', '7842904'), - (978, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAneQwbm', '7842905'), - (978, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAneQwbm', '7855719'), - (978, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAneQwbm', '7860683'), - (978, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAneQwbm', '7860684'), - (978, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAneQwbm', '7866095'), - (978, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GAneQwbm', '7869170'), - (978, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GAneQwbm', '7869188'), - (978, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAneQwbm', '7869201'), - (978, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAneQwbm', '7877465'), - (978, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAneQwbm', '7888250'), - (978, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GAneQwbm', '7904777'), - (978, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAneQwbm', '8349164'), - (978, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAneQwbm', '8349545'), - (978, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GAneQwbm', '8368028'), - (978, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GAneQwbm', '8368029'), - (978, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAneQwbm', '8388462'), - (978, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GAneQwbm', '8400273'), - (978, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GAneQwbm', '8400275'), - (978, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'GAneQwbm', '8400276'), - (978, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GAneQwbm', '8404977'), - (978, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GAneQwbm', '8430783'), - (978, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GAneQwbm', '8430784'), - (978, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GAneQwbm', '8430799'), - (978, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GAneQwbm', '8430800'), - (978, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GAneQwbm', '8430801'), - (978, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GAneQwbm', '8438709'), - (978, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAneQwbm', '8457738'), - (978, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GAneQwbm', '8459566'), - (978, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GAneQwbm', '8459567'), - (978, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GAneQwbm', '8461032'), - (978, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAneQwbm', '8477877'), - (978, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAneQwbm', '8485688'), - (978, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAneQwbm', '8490587'), - (978, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAneQwbm', '8493552'), - (978, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAneQwbm', '8493553'), - (978, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAneQwbm', '8493554'), - (978, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAneQwbm', '8493555'), - (978, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAneQwbm', '8493556'), - (978, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAneQwbm', '8493557'), - (978, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAneQwbm', '8493558'), - (978, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAneQwbm', '8493559'), - (978, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAneQwbm', '8493560'), - (978, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GAneQwbm', '8493561'), - (978, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAneQwbm', '8493572'), - (978, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAneQwbm', '8540725'), - (978, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAneQwbm', '8555421'), - (979, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', '4oMXO5Ym', '4420747'), - (979, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4oMXO5Ym', '4568602'), - (979, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4oMXO5Ym', '4572153'), - (979, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMXO5Ym', '4585962'), - (979, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4oMXO5Ym', '4596356'), - (979, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4oMXO5Ym', '4598860'), - (979, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4oMXO5Ym', '4598861'), - (979, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4oMXO5Ym', '4602797'), - (979, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4oMXO5Ym', '4637896'), - (979, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4oMXO5Ym', '4642994'), - (979, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4oMXO5Ym', '4642995'), - (979, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4oMXO5Ym', '4642996'), - (979, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4oMXO5Ym', '4642997'), - (979, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4oMXO5Ym', '4645687'), - (979, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4oMXO5Ym', '4645698'), - (979, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4oMXO5Ym', '4645704'), - (979, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4oMXO5Ym', '4645705'), - (979, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4oMXO5Ym', '4668385'), - (979, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMXO5Ym', '6045684'), - (980, 872, 'not_attending', '2021-07-20 02:29:51', '2025-12-17 19:47:40', 'mLzGroL4', '4136947'), - (980, 884, 'attending', '2021-08-15 19:22:08', '2025-12-17 19:47:42', 'mLzGroL4', '4210314'), - (980, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'mLzGroL4', '4229420'), - (980, 894, 'maybe', '2021-07-19 20:23:44', '2025-12-17 19:47:39', 'mLzGroL4', '4229423'), - (980, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'mLzGroL4', '4240316'), - (980, 901, 'attending', '2021-07-28 16:28:57', '2025-12-17 19:47:40', 'mLzGroL4', '4240317'), - (980, 902, 'attending', '2021-08-07 19:54:13', '2025-12-17 19:47:41', 'mLzGroL4', '4240318'), - (980, 903, 'attending', '2021-08-14 22:23:12', '2025-12-17 19:47:42', 'mLzGroL4', '4240320'), - (980, 916, 'attending', '2021-07-22 23:22:50', '2025-12-17 19:47:40', 'mLzGroL4', '4273772'), - (980, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'mLzGroL4', '4277819'), - (980, 923, 'attending', '2021-07-22 19:58:27', '2025-12-17 19:47:40', 'mLzGroL4', '4292773'), - (980, 933, 'maybe', '2021-07-30 06:26:27', '2025-12-17 19:47:40', 'mLzGroL4', '4301723'), - (980, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'mLzGroL4', '4302093'), - (980, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'mLzGroL4', '4304151'), - (980, 946, 'attending', '2021-08-02 21:46:38', '2025-12-17 19:47:40', 'mLzGroL4', '4314835'), - (980, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'mLzGroL4', '4345519'), - (980, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'mLzGroL4', '4356801'), - (980, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'mLzGroL4', '4358025'), - (980, 973, 'maybe', '2021-08-21 21:00:28', '2025-12-17 19:47:42', 'mLzGroL4', '4366186'), - (980, 974, 'attending', '2021-08-28 19:46:29', '2025-12-17 19:47:42', 'mLzGroL4', '4366187'), - (980, 988, 'not_attending', '2021-08-28 19:40:56', '2025-12-17 19:47:42', 'mLzGroL4', '4402823'), - (980, 990, 'not_attending', '2021-09-04 19:07:02', '2025-12-17 19:47:43', 'mLzGroL4', '4420735'), - (980, 991, 'attending', '2021-09-11 20:09:40', '2025-12-17 19:47:43', 'mLzGroL4', '4420738'), - (980, 992, 'attending', '2021-09-18 05:00:55', '2025-12-17 19:47:33', 'mLzGroL4', '4420739'), - (980, 993, 'not_attending', '2021-09-26 04:26:27', '2025-12-17 19:47:34', 'mLzGroL4', '4420741'), - (980, 995, 'maybe', '2021-09-01 05:45:07', '2025-12-17 19:47:34', 'mLzGroL4', '4420744'), - (980, 996, 'maybe', '2021-09-01 05:45:09', '2025-12-17 19:47:35', 'mLzGroL4', '4420747'), - (980, 997, 'maybe', '2021-09-01 05:45:12', '2025-12-17 19:47:35', 'mLzGroL4', '4420748'), - (980, 998, 'maybe', '2021-09-01 05:45:16', '2025-12-17 19:47:36', 'mLzGroL4', '4420749'), - (980, 1023, 'maybe', '2021-09-11 20:09:07', '2025-12-17 19:47:43', 'mLzGroL4', '4461883'), - (980, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'mLzGroL4', '4508342'), - (980, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mLzGroL4', '4568602'), - (980, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mLzGroL4', '6045684'), - (981, 1181, 'attending', '2022-02-28 23:33:34', '2025-12-17 19:47:33', 'mGMb37P4', '4736503'), - (981, 1239, 'attending', '2022-02-28 23:32:46', '2025-12-17 19:47:33', 'mGMb37P4', '5052238'), - (981, 1240, 'attending', '2022-03-01 19:21:18', '2025-12-17 19:47:33', 'mGMb37P4', '5052239'), - (981, 1241, 'attending', '2022-03-01 19:21:19', '2025-12-17 19:47:25', 'mGMb37P4', '5052240'), - (981, 1242, 'attending', '2022-03-01 19:21:21', '2025-12-17 19:47:25', 'mGMb37P4', '5052241'), - (981, 1249, 'attending', '2022-03-01 19:21:16', '2025-12-17 19:47:33', 'mGMb37P4', '5068530'), - (981, 1250, 'not_attending', '2022-03-04 23:07:40', '2025-12-17 19:47:33', 'mGMb37P4', '5069735'), - (981, 1251, 'attending', '2022-02-27 21:01:02', '2025-12-17 19:47:33', 'mGMb37P4', '5128466'), - (981, 1252, 'not_attending', '2022-03-05 00:57:36', '2025-12-17 19:47:33', 'mGMb37P4', '5129121'), - (981, 1253, 'attending', '2022-03-01 19:21:30', '2025-12-17 19:47:33', 'mGMb37P4', '5129122'), - (981, 1257, 'attending', '2022-02-28 02:22:11', '2025-12-17 19:47:33', 'mGMb37P4', '5129274'), - (981, 1258, 'attending', '2022-02-28 23:33:03', '2025-12-17 19:47:33', 'mGMb37P4', '5132531'), - (981, 1259, 'attending', '2022-02-28 23:32:17', '2025-12-17 19:47:33', 'mGMb37P4', '5132533'), - (981, 1260, 'not_attending', '2022-03-01 23:33:40', '2025-12-17 19:47:33', 'mGMb37P4', '5142082'), - (981, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mGMb37P4', '6045684'), - (982, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4PNaOJZm', '5260800'), - (982, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4PNaOJZm', '5269930'), - (982, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4PNaOJZm', '5271448'), - (982, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4PNaOJZm', '5271449'), - (982, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4PNaOJZm', '5276469'), - (982, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4PNaOJZm', '5278159'), - (982, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4PNaOJZm', '5363695'), - (982, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4PNaOJZm', '5365960'), - (982, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4PNaOJZm', '5368973'), - (982, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4PNaOJZm', '5378247'), - (982, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4PNaOJZm', '5389605'), - (982, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4PNaOJZm', '5397265'), - (982, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNaOJZm', '6045684'), - (983, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdKXPlam', '3470305'), - (983, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'kdKXPlam', '3470991'), - (983, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdKXPlam', '3517815'), - (983, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKXPlam', '3523941'), - (983, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKXPlam', '3533850'), - (983, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKXPlam', '3536632'), - (983, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKXPlam', '3536656'), - (983, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdKXPlam', '3539916'), - (983, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdKXPlam', '3539917'), - (983, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKXPlam', '3539918'), - (983, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKXPlam', '3539919'), - (983, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKXPlam', '3539920'), - (983, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKXPlam', '3539921'), - (983, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKXPlam', '3539922'), - (983, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKXPlam', '3539923'), - (983, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKXPlam', '6045684'), - (984, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgLn6V4', '6045684'), - (985, 3210, 'attending', '2025-08-25 23:48:29', '2025-12-17 19:46:18', 'ndloDNY4', '8471162'), - (985, 3256, 'attending', '2025-08-28 21:15:17', '2025-12-17 19:46:11', 'ndloDNY4', '8501354'), - (985, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'ndloDNY4', '8540725'), - (985, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndloDNY4', '8555421'), - (986, 1442, 'not_attending', '2022-06-18 02:29:06', '2025-12-17 19:47:17', 'm6ok8yzA', '5397265'), - (986, 1451, 'not_attending', '2022-06-15 23:14:01', '2025-12-17 19:47:17', 'm6ok8yzA', '5403967'), - (986, 1466, 'attending', '2022-06-16 17:49:52', '2025-12-17 19:47:17', 'm6ok8yzA', '5406427'), - (986, 1469, 'attending', '2022-06-16 17:53:13', '2025-12-17 19:47:17', 'm6ok8yzA', '5406838'), - (986, 1472, 'attending', '2022-06-16 17:53:05', '2025-12-17 19:47:17', 'm6ok8yzA', '5407065'), - (986, 1474, 'attending', '2022-06-16 17:53:43', '2025-12-17 19:47:19', 'm6ok8yzA', '5408029'), - (986, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'm6ok8yzA', '5411699'), - (986, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'm6ok8yzA', '5412550'), - (986, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6ok8yzA', '5415046'), - (986, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6ok8yzA', '5422086'), - (986, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6ok8yzA', '5422406'), - (986, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6ok8yzA', '5424565'), - (986, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6ok8yzA', '5426882'), - (986, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'm6ok8yzA', '5427083'), - (986, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'm6ok8yzA', '5441125'), - (986, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6ok8yzA', '5441126'), - (986, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'm6ok8yzA', '5441128'), - (986, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6ok8yzA', '5441131'), - (986, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6ok8yzA', '5441132'), - (986, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6ok8yzA', '5446643'), - (986, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6ok8yzA', '5453325'), - (986, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6ok8yzA', '5454516'), - (986, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6ok8yzA', '5454605'), - (986, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6ok8yzA', '5455037'), - (986, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6ok8yzA', '5461278'), - (986, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6ok8yzA', '5469480'), - (986, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6ok8yzA', '5471073'), - (986, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'm6ok8yzA', '5474663'), - (986, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6ok8yzA', '5482022'), - (986, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6ok8yzA', '5482793'), - (986, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6ok8yzA', '5488912'), - (986, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6ok8yzA', '5492192'), - (986, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6ok8yzA', '5493139'), - (986, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6ok8yzA', '5493200'), - (986, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6ok8yzA', '5502188'), - (986, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6ok8yzA', '5505059'), - (986, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6ok8yzA', '5509055'), - (986, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6ok8yzA', '5512862'), - (986, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6ok8yzA', '5513985'), - (986, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'm6ok8yzA', '5519981'), - (986, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6ok8yzA', '5522550'), - (986, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6ok8yzA', '5534683'), - (986, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6ok8yzA', '5546619'), - (986, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6ok8yzA', '5555245'), - (986, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6ok8yzA', '5557747'), - (986, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6ok8yzA', '6045684'), - (987, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'bdz21yad', '3149489'), - (987, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'bdz21yad', '3149491'), - (987, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'bdz21yad', '3236450'), - (987, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'bdz21yad', '3236452'), - (987, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'bdz21yad', '3539921'), - (987, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'bdz21yad', '3539922'), - (987, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'bdz21yad', '3539923'), - (987, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'bdz21yad', '3806392'), - (987, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'bdz21yad', '3963335'), - (987, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'bdz21yad', '3975311'), - (987, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'bdz21yad', '3975312'), - (987, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'bdz21yad', '3994992'), - (987, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'bdz21yad', '4014338'), - (987, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'bdz21yad', '4136744'), - (987, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz21yad', '6045684'), - (988, 1471, 'maybe', '2022-06-21 20:54:21', '2025-12-17 19:47:17', 'mbZvVkRm', '5407063'), - (988, 1480, 'attending', '2022-06-26 22:37:43', '2025-12-17 19:47:19', 'mbZvVkRm', '5411699'), - (988, 1482, 'attending', '2022-06-25 16:58:07', '2025-12-17 19:47:19', 'mbZvVkRm', '5412550'), - (988, 1484, 'maybe', '2022-06-22 08:12:02', '2025-12-17 19:47:17', 'mbZvVkRm', '5415046'), - (988, 1485, 'not_attending', '2022-06-21 20:52:32', '2025-12-17 19:47:17', 'mbZvVkRm', '5416276'), - (988, 1487, 'attending', '2022-06-27 22:40:29', '2025-12-17 19:47:19', 'mbZvVkRm', '5419006'), - (988, 1488, 'attending', '2022-07-05 22:51:36', '2025-12-17 19:47:19', 'mbZvVkRm', '5420154'), - (988, 1490, 'attending', '2022-07-07 21:50:55', '2025-12-17 19:47:19', 'mbZvVkRm', '5420156'), - (988, 1492, 'attending', '2022-07-07 23:59:35', '2025-12-17 19:47:19', 'mbZvVkRm', '5420175'), - (988, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mbZvVkRm', '5422086'), - (988, 1497, 'attending', '2022-06-30 12:44:37', '2025-12-17 19:47:19', 'mbZvVkRm', '5422405'), - (988, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mbZvVkRm', '5422406'), - (988, 1500, 'maybe', '2022-07-07 16:14:34', '2025-12-17 19:47:19', 'mbZvVkRm', '5423915'), - (988, 1502, 'attending', '2022-07-08 21:54:49', '2025-12-17 19:47:19', 'mbZvVkRm', '5424565'), - (988, 1504, 'not_attending', '2022-07-14 12:54:40', '2025-12-17 19:47:19', 'mbZvVkRm', '5426882'), - (988, 1505, 'attending', '2022-07-04 21:13:38', '2025-12-17 19:47:19', 'mbZvVkRm', '5427083'), - (988, 1508, 'maybe', '2022-07-13 12:57:30', '2025-12-17 19:47:19', 'mbZvVkRm', '5433453'), - (988, 1509, 'attending', '2022-07-06 22:47:39', '2025-12-17 19:47:19', 'mbZvVkRm', '5434019'), - (988, 1513, 'maybe', '2022-07-09 06:46:30', '2025-12-17 19:47:20', 'mbZvVkRm', '5441125'), - (988, 1514, 'attending', '2022-07-21 18:20:17', '2025-12-17 19:47:20', 'mbZvVkRm', '5441126'), - (988, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mbZvVkRm', '5441128'), - (988, 1516, 'maybe', '2022-08-20 20:54:30', '2025-12-17 19:47:23', 'mbZvVkRm', '5441129'), - (988, 1517, 'attending', '2022-08-27 10:27:30', '2025-12-17 19:47:23', 'mbZvVkRm', '5441130'), - (988, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mbZvVkRm', '5441131'), - (988, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mbZvVkRm', '5441132'), - (988, 1522, 'maybe', '2022-07-19 21:27:26', '2025-12-17 19:47:20', 'mbZvVkRm', '5442832'), - (988, 1523, 'attending', '2022-07-11 06:43:00', '2025-12-17 19:47:19', 'mbZvVkRm', '5442868'), - (988, 1527, 'not_attending', '2022-07-13 15:29:00', '2025-12-17 19:47:20', 'mbZvVkRm', '5446425'), - (988, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mbZvVkRm', '5446643'), - (988, 1530, 'not_attending', '2022-07-17 01:28:02', '2025-12-17 19:47:20', 'mbZvVkRm', '5448612'), - (988, 1535, 'maybe', '2022-07-19 21:27:19', '2025-12-17 19:47:20', 'mbZvVkRm', '5448830'), - (988, 1540, 'attending', '2022-07-18 17:38:47', '2025-12-17 19:47:20', 'mbZvVkRm', '5453325'), - (988, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mbZvVkRm', '5454516'), - (988, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mbZvVkRm', '5454605'), - (988, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mbZvVkRm', '5455037'), - (988, 1553, 'attending', '2022-07-21 01:58:15', '2025-12-17 19:47:20', 'mbZvVkRm', '5455164'), - (988, 1556, 'attending', '2022-07-22 01:46:44', '2025-12-17 19:47:20', 'mbZvVkRm', '5457734'), - (988, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mbZvVkRm', '5461278'), - (988, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mbZvVkRm', '5469480'), - (988, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mbZvVkRm', '5471073'), - (988, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mbZvVkRm', '5474663'), - (988, 1569, 'maybe', '2022-08-05 02:34:11', '2025-12-17 19:47:21', 'mbZvVkRm', '5481507'), - (988, 1571, 'maybe', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mbZvVkRm', '5482022'), - (988, 1575, 'attending', '2022-08-26 06:02:38', '2025-12-17 19:47:23', 'mbZvVkRm', '5482250'), - (988, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mbZvVkRm', '5482793'), - (988, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mbZvVkRm', '5488912'), - (988, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mbZvVkRm', '5492192'), - (988, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mbZvVkRm', '5493139'), - (988, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mbZvVkRm', '5493200'), - (988, 1601, 'maybe', '2022-08-16 18:06:41', '2025-12-17 19:47:22', 'mbZvVkRm', '5496589'), - (988, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mbZvVkRm', '5502188'), - (988, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mbZvVkRm', '5505059'), - (988, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mbZvVkRm', '5509055'), - (988, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mbZvVkRm', '5512862'), - (988, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mbZvVkRm', '5513985'), - (988, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mbZvVkRm', '5534683'), - (988, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mbZvVkRm', '5537735'), - (988, 1636, 'attending', '2022-09-04 15:47:01', '2025-12-17 19:47:24', 'mbZvVkRm', '5538454'), - (988, 1639, 'not_attending', '2022-09-02 19:50:47', '2025-12-17 19:47:24', 'mbZvVkRm', '5540403'), - (988, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mbZvVkRm', '5540859'), - (988, 1644, 'not_attending', '2022-09-19 21:34:23', '2025-12-17 19:47:11', 'mbZvVkRm', '5545857'), - (988, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mbZvVkRm', '5546619'), - (988, 1650, 'attending', '2022-09-04 18:50:47', '2025-12-17 19:47:24', 'mbZvVkRm', '5549611'), - (988, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mbZvVkRm', '5555245'), - (988, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mbZvVkRm', '5557747'), - (988, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mbZvVkRm', '5560255'), - (988, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mbZvVkRm', '5562906'), - (988, 1670, 'attending', '2022-09-18 13:14:02', '2025-12-17 19:47:11', 'mbZvVkRm', '5575076'), - (988, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mbZvVkRm', '5600604'), - (988, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mbZvVkRm', '5605544'), - (988, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'mbZvVkRm', '5606737'), - (988, 1701, 'maybe', '2022-09-26 22:58:49', '2025-12-17 19:47:11', 'mbZvVkRm', '5607857'), - (988, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mbZvVkRm', '5630960'), - (988, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mbZvVkRm', '5630961'), - (988, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mbZvVkRm', '5630962'), - (988, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mbZvVkRm', '5630966'), - (988, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mbZvVkRm', '5630967'), - (988, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mbZvVkRm', '5630968'), - (988, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mbZvVkRm', '5635406'), - (988, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mbZvVkRm', '5638765'), - (988, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mbZvVkRm', '5640097'), - (988, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mbZvVkRm', '5640843'), - (988, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mbZvVkRm', '5641521'), - (988, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mbZvVkRm', '5642818'), - (988, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mbZvVkRm', '5652395'), - (988, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mbZvVkRm', '5670445'), - (988, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mbZvVkRm', '5671637'), - (988, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mbZvVkRm', '5672329'), - (988, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mbZvVkRm', '5674057'), - (988, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mbZvVkRm', '5674060'), - (988, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mbZvVkRm', '5677461'), - (988, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mbZvVkRm', '5698046'), - (988, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mbZvVkRm', '5699760'), - (988, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mbZvVkRm', '5741601'), - (988, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mbZvVkRm', '5763458'), - (988, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mbZvVkRm', '5774172'), - (988, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mbZvVkRm', '5818247'), - (988, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mbZvVkRm', '5819471'), - (988, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mbZvVkRm', '5827739'), - (988, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mbZvVkRm', '5844306'), - (988, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mbZvVkRm', '5850159'), - (988, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mbZvVkRm', '5858999'), - (988, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mbZvVkRm', '5871984'), - (988, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mbZvVkRm', '5876354'), - (988, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mbZvVkRm', '5880939'), - (988, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mbZvVkRm', '5887890'), - (988, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mbZvVkRm', '5888598'), - (988, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mbZvVkRm', '5893260'), - (988, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZvVkRm', '6045684'), - (989, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dO6GO8e4', '7074364'), - (989, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'dO6GO8e4', '7301638'), - (989, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dO6GO8e4', '7324073'), - (989, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dO6GO8e4', '7324074'), - (989, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dO6GO8e4', '7324075'), - (989, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dO6GO8e4', '7324078'), - (989, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'dO6GO8e4', '7324867'), - (989, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dO6GO8e4', '7331457'), - (989, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'dO6GO8e4', '7332564'), - (989, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'dO6GO8e4', '7335193'), - (989, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'dO6GO8e4', '7359624'), - (989, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dO6GO8e4', '7363643'), - (989, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dO6GO8e4', '7368606'), - (990, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'bdz6r0Ld', '4136937'), - (990, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'bdz6r0Ld', '4136938'), - (990, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'bdz6r0Ld', '4136947'), - (990, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'bdz6r0Ld', '4210314'), - (990, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'bdz6r0Ld', '4225444'), - (990, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'bdz6r0Ld', '4229417'), - (990, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'bdz6r0Ld', '4229418'), - (990, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'bdz6r0Ld', '4229420'), - (990, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'bdz6r0Ld', '4229423'), - (990, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'bdz6r0Ld', '4239259'), - (990, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'bdz6r0Ld', '4240316'), - (990, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'bdz6r0Ld', '4240317'), - (990, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'bdz6r0Ld', '4240318'), - (990, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'bdz6r0Ld', '4240320'), - (990, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'bdz6r0Ld', '4250163'), - (990, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'bdz6r0Ld', '4275957'), - (990, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'bdz6r0Ld', '4277819'), - (990, 923, 'not_attending', '2021-07-20 02:30:40', '2025-12-17 19:47:40', 'bdz6r0Ld', '4292773'), - (990, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'bdz6r0Ld', '4301723'), - (990, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'bdz6r0Ld', '4302093'), - (990, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'bdz6r0Ld', '4304151'), - (990, 940, 'not_attending', '2021-07-30 16:29:38', '2025-12-17 19:47:40', 'bdz6r0Ld', '4309049'), - (990, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'bdz6r0Ld', '4315713'), - (990, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'bdz6r0Ld', '4315714'), - (990, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'bdz6r0Ld', '4315726'), - (990, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'bdz6r0Ld', '4356801'), - (990, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'bdz6r0Ld', '4366186'), - (990, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'bdz6r0Ld', '4366187'), - (990, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'bdz6r0Ld', '4420735'), - (990, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'bdz6r0Ld', '4420738'), - (990, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'bdz6r0Ld', '4420739'), - (990, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'bdz6r0Ld', '4420741'), - (990, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'bdz6r0Ld', '4420744'), - (990, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'bdz6r0Ld', '4420747'), - (990, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'bdz6r0Ld', '4420748'), - (990, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'bdz6r0Ld', '4420749'), - (990, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz6r0Ld', '6045684'), - (991, 993, 'attending', '2021-09-24 03:42:42', '2025-12-17 19:47:34', 'pmbxDWz4', '4420741'), - (991, 994, 'attending', '2021-10-02 02:41:44', '2025-12-17 19:47:34', 'pmbxDWz4', '4420742'), - (991, 995, 'attending', '2021-09-28 23:09:05', '2025-12-17 19:47:34', 'pmbxDWz4', '4420744'), - (991, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'pmbxDWz4', '4420747'), - (991, 1005, 'attending', '2021-09-21 09:08:39', '2025-12-17 19:47:34', 'pmbxDWz4', '4438807'), - (991, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbxDWz4', '4508342'), - (991, 1070, 'maybe', '2021-10-01 22:41:42', '2025-12-17 19:47:34', 'pmbxDWz4', '4512562'), - (991, 1072, 'attending', '2021-10-02 02:42:36', '2025-12-17 19:47:34', 'pmbxDWz4', '4516287'), - (991, 1074, 'attending', '2021-09-29 22:24:18', '2025-12-17 19:47:34', 'pmbxDWz4', '4528953'), - (991, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbxDWz4', '4568602'), - (991, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbxDWz4', '4572153'), - (991, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'pmbxDWz4', '4585962'), - (991, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'pmbxDWz4', '4596356'), - (991, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbxDWz4', '4598860'), - (991, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbxDWz4', '4598861'), - (991, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbxDWz4', '4602797'), - (991, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbxDWz4', '4637896'), - (991, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbxDWz4', '4642994'), - (991, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'pmbxDWz4', '4642995'), - (991, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbxDWz4', '4642996'), - (991, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbxDWz4', '4642997'), - (991, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbxDWz4', '4645687'), - (991, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbxDWz4', '4645698'), - (991, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbxDWz4', '4645704'), - (991, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbxDWz4', '4645705'), - (991, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbxDWz4', '4668385'), - (991, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbxDWz4', '4694407'), - (991, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbxDWz4', '4736497'), - (991, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbxDWz4', '4736499'), - (991, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbxDWz4', '4736500'), - (991, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbxDWz4', '4736503'), - (991, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbxDWz4', '4736504'), - (991, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbxDWz4', '4746789'), - (991, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbxDWz4', '4753929'), - (991, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbxDWz4', '5038850'), - (991, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbxDWz4', '5045826'), - (991, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbxDWz4', '5132533'), - (991, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbxDWz4', '5186582'), - (991, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbxDWz4', '5186583'), - (991, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbxDWz4', '5186585'), - (991, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbxDWz4', '5190437'), - (991, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbxDWz4', '5215989'), - (991, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'pmbxDWz4', '6045684'), - (992, 406, 'attending', '2021-04-01 17:59:50', '2025-12-17 19:47:44', 'NmLaxygA', '3236464'), - (992, 641, 'maybe', '2021-04-03 15:17:49', '2025-12-17 19:47:44', 'NmLaxygA', '3539916'), - (992, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'NmLaxygA', '3539918'), - (992, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'NmLaxygA', '3539919'), - (992, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'NmLaxygA', '3539920'), - (992, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'NmLaxygA', '3539921'), - (992, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'NmLaxygA', '3539922'), - (992, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'NmLaxygA', '3539923'), - (992, 700, 'attending', '2021-03-30 10:50:53', '2025-12-17 19:47:44', 'NmLaxygA', '3575725'), - (992, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLaxygA', '3583262'), - (992, 715, 'maybe', '2021-03-31 21:57:32', '2025-12-17 19:47:44', 'NmLaxygA', '3604146'), - (992, 723, 'not_attending', '2021-04-04 03:31:47', '2025-12-17 19:47:44', 'NmLaxygA', '3649179'), - (992, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLaxygA', '3661369'), - (992, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLaxygA', '3674262'), - (992, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'NmLaxygA', '3677402'), - (992, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLaxygA', '3730212'), - (992, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLaxygA', '3793156'), - (992, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLaxygA', '6045684'), - (993, 2306, 'attending', '2023-11-15 05:00:50', '2025-12-17 19:46:47', 'dw2bPaM4', '6484200'), - (993, 2322, 'attending', '2023-11-15 18:30:59', '2025-12-17 19:46:48', 'dw2bPaM4', '6514659'), - (993, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dw2bPaM4', '6514660'), - (993, 2338, 'attending', '2023-11-19 17:20:09', '2025-12-17 19:46:48', 'dw2bPaM4', '6538868'), - (993, 2340, 'not_attending', '2023-11-16 22:27:10', '2025-12-17 19:46:48', 'dw2bPaM4', '6540279'), - (993, 2342, 'attending', '2023-11-14 02:11:29', '2025-12-17 19:46:47', 'dw2bPaM4', '6545076'), - (993, 2344, 'not_attending', '2023-11-18 17:20:03', '2025-12-17 19:46:48', 'dw2bPaM4', '6581040'), - (993, 2345, 'maybe', '2023-11-19 17:20:24', '2025-12-17 19:46:48', 'dw2bPaM4', '6582414'), - (993, 2348, 'attending', '2023-11-19 17:06:13', '2025-12-17 19:46:48', 'dw2bPaM4', '6583064'), - (993, 2349, 'not_attending', '2023-11-19 17:19:59', '2025-12-17 19:46:48', 'dw2bPaM4', '6583065'), - (993, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dw2bPaM4', '6584747'), - (993, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dw2bPaM4', '6587097'), - (993, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dw2bPaM4', '6609022'), - (993, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dw2bPaM4', '6632757'), - (993, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dw2bPaM4', '6644187'), - (993, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dw2bPaM4', '6648951'), - (993, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dw2bPaM4', '6648952'), - (993, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dw2bPaM4', '6655401'), - (993, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dw2bPaM4', '6661585'), - (993, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dw2bPaM4', '6661588'), - (993, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dw2bPaM4', '6661589'), - (993, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dw2bPaM4', '6699906'), - (993, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dw2bPaM4', '6699913'), - (993, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dw2bPaM4', '6701109'), - (993, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dw2bPaM4', '6704561'), - (993, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dw2bPaM4', '6705219'), - (993, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dw2bPaM4', '6708410'), - (993, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dw2bPaM4', '6710153'), - (993, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dw2bPaM4', '6711552'), - (993, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dw2bPaM4', '6711553'), - (993, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dw2bPaM4', '6722688'), - (993, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dw2bPaM4', '6730620'), - (993, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dw2bPaM4', '6730642'), - (993, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dw2bPaM4', '6740364'), - (993, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dw2bPaM4', '6743829'), - (993, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dw2bPaM4', '7030380'), - (993, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dw2bPaM4', '7033677'), - (993, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dw2bPaM4', '7035415'), - (993, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dw2bPaM4', '7044715'), - (993, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dw2bPaM4', '7050318'), - (993, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dw2bPaM4', '7050319'), - (993, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dw2bPaM4', '7050322'), - (993, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dw2bPaM4', '7057804'), - (993, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dw2bPaM4', '7072824'), - (993, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dw2bPaM4', '7074348'), - (993, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dw2bPaM4', '7089267'), - (993, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dw2bPaM4', '7098747'), - (993, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dw2bPaM4', '7113468'), - (993, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dw2bPaM4', '7114856'), - (993, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dw2bPaM4', '7114951'), - (993, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dw2bPaM4', '7114955'), - (993, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dw2bPaM4', '7114956'), - (993, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dw2bPaM4', '7153615'), - (993, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dw2bPaM4', '7159484'), - (994, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'ndlzWnwA', '3468125'), - (994, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'ndlzWnwA', '3470303'), - (994, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'ndlzWnwA', '3470305'), - (994, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'ndlzWnwA', '3470991'), - (994, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ndlzWnwA', '3517815'), - (994, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ndlzWnwA', '3523941'), - (994, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ndlzWnwA', '3533850'), - (994, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ndlzWnwA', '3536632'), - (994, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ndlzWnwA', '3536656'), - (994, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ndlzWnwA', '3539916'), - (994, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ndlzWnwA', '3539917'), - (994, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ndlzWnwA', '3539918'), - (994, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ndlzWnwA', '3539919'), - (994, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ndlzWnwA', '3539920'), - (994, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ndlzWnwA', '3539921'), - (994, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ndlzWnwA', '3539922'), - (994, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndlzWnwA', '3539923'), - (994, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlzWnwA', '6045684'), - (995, 1655, 'attending', '2022-09-23 01:28:12', '2025-12-17 19:47:11', 'm7zEyzMd', '5554482'), - (995, 1668, 'maybe', '2022-09-29 00:18:17', '2025-12-17 19:47:12', 'm7zEyzMd', '5563222'), - (995, 1673, 'attending', '2022-09-29 00:17:55', '2025-12-17 19:47:11', 'm7zEyzMd', '5592454'), - (995, 1674, 'maybe', '2022-09-24 20:15:02', '2025-12-17 19:47:12', 'm7zEyzMd', '5593112'), - (995, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm7zEyzMd', '5605544'), - (995, 1698, 'attending', '2022-09-26 20:17:27', '2025-12-17 19:47:11', 'm7zEyzMd', '5606366'), - (995, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm7zEyzMd', '5630960'), - (995, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm7zEyzMd', '5630961'), - (995, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm7zEyzMd', '5630962'), - (995, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm7zEyzMd', '5630966'), - (995, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm7zEyzMd', '5630967'), - (995, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm7zEyzMd', '5630968'), - (995, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm7zEyzMd', '5635406'), - (995, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm7zEyzMd', '5638765'), - (995, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm7zEyzMd', '5640097'), - (995, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm7zEyzMd', '5640843'), - (995, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm7zEyzMd', '5641521'), - (995, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm7zEyzMd', '5642818'), - (995, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm7zEyzMd', '5652395'), - (995, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm7zEyzMd', '5670445'), - (995, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm7zEyzMd', '5671637'), - (995, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm7zEyzMd', '5672329'), - (995, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm7zEyzMd', '5674057'), - (995, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm7zEyzMd', '5674060'), - (995, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm7zEyzMd', '5677461'), - (995, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm7zEyzMd', '5698046'), - (995, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm7zEyzMd', '5699760'), - (995, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm7zEyzMd', '5741601'), - (995, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm7zEyzMd', '5763458'), - (995, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm7zEyzMd', '5774172'), - (995, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'm7zEyzMd', '5818247'), - (995, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm7zEyzMd', '5819471'), - (995, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm7zEyzMd', '5827739'), - (995, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm7zEyzMd', '5844306'), - (995, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm7zEyzMd', '5850159'), - (995, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm7zEyzMd', '5858999'), - (995, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm7zEyzMd', '5871984'), - (995, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm7zEyzMd', '5876354'), - (995, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm7zEyzMd', '5880939'), - (995, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm7zEyzMd', '5880940'), - (995, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm7zEyzMd', '5880942'), - (995, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm7zEyzMd', '5880943'), - (995, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm7zEyzMd', '5887890'), - (995, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm7zEyzMd', '5888598'), - (995, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm7zEyzMd', '5893260'), - (995, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm7zEyzMd', '5899826'), - (995, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm7zEyzMd', '5900199'), - (995, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm7zEyzMd', '5900200'), - (995, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm7zEyzMd', '5900202'), - (995, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm7zEyzMd', '5900203'), - (995, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm7zEyzMd', '5901108'), - (995, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm7zEyzMd', '5901126'), - (995, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm7zEyzMd', '5909655'), - (995, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm7zEyzMd', '5910522'), - (995, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm7zEyzMd', '5910526'), - (995, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm7zEyzMd', '5910528'), - (995, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm7zEyzMd', '5916219'), - (995, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm7zEyzMd', '5936234'), - (995, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm7zEyzMd', '5958351'), - (995, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm7zEyzMd', '5959751'), - (995, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm7zEyzMd', '5959755'), - (995, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm7zEyzMd', '5960055'), - (995, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm7zEyzMd', '5961684'), - (995, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm7zEyzMd', '5962132'), - (995, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm7zEyzMd', '5962133'), - (995, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm7zEyzMd', '5962134'), - (995, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm7zEyzMd', '5962317'), - (995, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm7zEyzMd', '5962318'), - (995, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm7zEyzMd', '5965933'), - (995, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm7zEyzMd', '5967014'), - (995, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm7zEyzMd', '5972815'), - (995, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm7zEyzMd', '5974016'), - (995, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm7zEyzMd', '5981515'), - (995, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm7zEyzMd', '5993516'), - (995, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm7zEyzMd', '5998939'), - (995, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm7zEyzMd', '6028191'), - (995, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7zEyzMd', '6045684'), - (996, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4ol91zMd', '6472181'), - (996, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4ol91zMd', '6482693'), - (996, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4ol91zMd', '6484200'), - (996, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4ol91zMd', '6484680'), - (996, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4ol91zMd', '6507741'), - (996, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4ol91zMd', '6514659'), - (996, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4ol91zMd', '6514660'), - (996, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4ol91zMd', '6519103'), - (996, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4ol91zMd', '6535681'), - (996, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', '4ol91zMd', '6545076'), - (996, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4ol91zMd', '6584747'), - (996, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4ol91zMd', '6587097'), - (996, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4ol91zMd', '6609022'), - (996, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4ol91zMd', '6632757'), - (996, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4ol91zMd', '6644187'), - (996, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4ol91zMd', '6648951'), - (996, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4ol91zMd', '6648952'), - (996, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4ol91zMd', '6655401'), - (996, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4ol91zMd', '6661585'), - (996, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4ol91zMd', '6661588'), - (996, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4ol91zMd', '6661589'), - (996, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4ol91zMd', '6699906'), - (996, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4ol91zMd', '6699913'), - (996, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4ol91zMd', '6701109'), - (996, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4ol91zMd', '6705219'), - (996, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4ol91zMd', '6710153'), - (996, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4ol91zMd', '6711552'), - (996, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4ol91zMd', '6711553'), - (996, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4ol91zMd', '6722688'), - (996, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4ol91zMd', '6730620'), - (996, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4ol91zMd', '6730642'), - (996, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4ol91zMd', '6740364'), - (996, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4ol91zMd', '6743829'), - (996, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4ol91zMd', '7030380'), - (996, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4ol91zMd', '7033677'), - (996, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4ol91zMd', '7035415'), - (996, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4ol91zMd', '7044715'), - (996, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4ol91zMd', '7050318'), - (996, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4ol91zMd', '7050319'), - (996, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4ol91zMd', '7050322'), - (996, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4ol91zMd', '7057804'), - (996, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4ol91zMd', '7072824'), - (996, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4ol91zMd', '7074348'), - (996, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4ol91zMd', '7089267'), - (996, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4ol91zMd', '7098747'), - (996, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4ol91zMd', '7113468'), - (996, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4ol91zMd', '7114856'), - (996, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4ol91zMd', '7114951'), - (996, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4ol91zMd', '7114955'), - (996, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4ol91zMd', '7114956'), - (996, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4ol91zMd', '7153615'), - (996, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4ol91zMd', '7159484'), - (996, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4ol91zMd', '7178446'), - (997, 645, 'attending', '2021-05-02 17:36:48', '2025-12-17 19:47:46', 'amGR3Jkd', '3539920'), - (997, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'amGR3Jkd', '3539921'), - (997, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'amGR3Jkd', '3539922'), - (997, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'amGR3Jkd', '3539923'), - (997, 739, 'maybe', '2021-05-01 05:44:58', '2025-12-17 19:47:46', 'amGR3Jkd', '3680616'), - (997, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'amGR3Jkd', '3793156'), - (997, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amGR3Jkd', '3974109'), - (997, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGR3Jkd', '3975311'), - (997, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amGR3Jkd', '3975312'), - (997, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amGR3Jkd', '3994992'), - (997, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGR3Jkd', '4014338'), - (997, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amGR3Jkd', '4021848'), - (997, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amGR3Jkd', '4136744'), - (997, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'amGR3Jkd', '4136937'), - (997, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'amGR3Jkd', '4136938'), - (997, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amGR3Jkd', '4136947'), - (997, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGR3Jkd', '4210314'), - (997, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGR3Jkd', '4225444'), - (997, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amGR3Jkd', '4239259'), - (997, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGR3Jkd', '4240316'), - (997, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'amGR3Jkd', '4240317'), - (997, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'amGR3Jkd', '4240318'), - (997, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'amGR3Jkd', '4240320'), - (997, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amGR3Jkd', '4250163'), - (997, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGR3Jkd', '4275957'), - (997, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amGR3Jkd', '4277819'), - (997, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amGR3Jkd', '4301723'), - (997, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'amGR3Jkd', '4302093'), - (997, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amGR3Jkd', '4304151'), - (997, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'amGR3Jkd', '4356801'), - (997, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'amGR3Jkd', '4366186'), - (997, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'amGR3Jkd', '4366187'), - (997, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'amGR3Jkd', '4420735'), - (997, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'amGR3Jkd', '4420738'), - (997, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'amGR3Jkd', '4420739'), - (997, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'amGR3Jkd', '4420741'), - (997, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'amGR3Jkd', '4420744'), - (997, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'amGR3Jkd', '4420747'), - (997, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'amGR3Jkd', '4420748'), - (997, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'amGR3Jkd', '4420749'), - (997, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'amGR3Jkd', '4461883'), - (997, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'amGR3Jkd', '4508342'), - (997, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'amGR3Jkd', '4568602'), - (997, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'amGR3Jkd', '4572153'), - (997, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'amGR3Jkd', '4585962'), - (997, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'amGR3Jkd', '4596356'), - (997, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'amGR3Jkd', '4598860'), - (997, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'amGR3Jkd', '4598861'), - (997, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'amGR3Jkd', '4602797'), - (997, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'amGR3Jkd', '4637896'), - (997, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'amGR3Jkd', '4642994'), - (997, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'amGR3Jkd', '4642995'), - (997, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'amGR3Jkd', '4642996'), - (997, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'amGR3Jkd', '4642997'), - (997, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'amGR3Jkd', '4645687'), - (997, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'amGR3Jkd', '4645698'), - (997, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'amGR3Jkd', '4645704'), - (997, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'amGR3Jkd', '4645705'), - (997, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'amGR3Jkd', '4668385'), - (997, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amGR3Jkd', '4694407'), - (997, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'amGR3Jkd', '4706262'), - (997, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'amGR3Jkd', '4736497'), - (997, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amGR3Jkd', '4736499'), - (997, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'amGR3Jkd', '4736500'), - (997, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'amGR3Jkd', '4736503'), - (997, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amGR3Jkd', '4736504'), - (997, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'amGR3Jkd', '4746789'), - (997, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amGR3Jkd', '4753929'), - (997, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amGR3Jkd', '5038850'), - (997, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amGR3Jkd', '5045826'), - (997, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amGR3Jkd', '5132533'), - (997, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'amGR3Jkd', '5186582'), - (997, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'amGR3Jkd', '5186583'), - (997, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amGR3Jkd', '5186585'), - (997, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amGR3Jkd', '5190437'), - (997, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGR3Jkd', '6045684'), - (998, 870, 'not_attending', '2021-07-03 01:49:22', '2025-12-17 19:47:39', 'N4EeZ1w4', '4136937'), - (998, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'N4EeZ1w4', '4136938'), - (998, 891, 'attending', '2021-07-02 01:28:14', '2025-12-17 19:47:38', 'N4EeZ1w4', '4229417'), - (998, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'N4EeZ1w4', '4229418'), - (998, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'N4EeZ1w4', '4239259'), - (998, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'N4EeZ1w4', '4250163'), - (998, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4EeZ1w4', '6045684'), - (999, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd3R6VJ24', '6484200'), - (999, 2322, 'attending', '2023-11-16 03:55:25', '2025-12-17 19:46:48', 'd3R6VJ24', '6514659'), - (999, 2323, 'not_attending', '2023-11-19 04:46:57', '2025-12-17 19:46:49', 'd3R6VJ24', '6514660'), - (999, 2324, 'attending', '2023-12-04 21:51:27', '2025-12-17 19:46:49', 'd3R6VJ24', '6514662'), - (999, 2325, 'attending', '2023-12-15 19:52:37', '2025-12-17 19:46:36', 'd3R6VJ24', '6514663'), - (999, 2338, 'maybe', '2023-11-21 01:16:34', '2025-12-17 19:46:48', 'd3R6VJ24', '6538868'), - (999, 2339, 'not_attending', '2023-11-13 23:24:20', '2025-12-17 19:46:47', 'd3R6VJ24', '6539128'), - (999, 2340, 'maybe', '2023-11-20 22:49:42', '2025-12-17 19:46:48', 'd3R6VJ24', '6540279'), - (999, 2342, 'attending', '2023-11-13 19:47:41', '2025-12-17 19:46:47', 'd3R6VJ24', '6545076'), - (999, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd3R6VJ24', '6584747'), - (999, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd3R6VJ24', '6587097'), - (999, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd3R6VJ24', '6609022'), - (999, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd3R6VJ24', '6632757'), - (999, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd3R6VJ24', '6644187'), - (999, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd3R6VJ24', '6648951'), - (999, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd3R6VJ24', '6648952'), - (999, 2391, 'attending', '2024-01-11 00:06:48', '2025-12-17 19:46:37', 'd3R6VJ24', '6654138'), - (999, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd3R6VJ24', '6655401'), - (999, 2399, 'attending', '2024-01-13 03:51:38', '2025-12-17 19:46:38', 'd3R6VJ24', '6657583'), - (999, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd3R6VJ24', '6661585'), - (999, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd3R6VJ24', '6661588'), - (999, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd3R6VJ24', '6661589'), - (999, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd3R6VJ24', '6699906'), - (999, 2408, 'attending', '2024-01-21 04:43:09', '2025-12-17 19:46:40', 'd3R6VJ24', '6699907'), - (999, 2410, 'attending', '2024-02-09 21:29:51', '2025-12-17 19:46:41', 'd3R6VJ24', '6699911'), - (999, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd3R6VJ24', '6699913'), - (999, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd3R6VJ24', '6701109'), - (999, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd3R6VJ24', '6705219'), - (999, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd3R6VJ24', '6710153'), - (999, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd3R6VJ24', '6711552'), - (999, 2430, 'maybe', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'd3R6VJ24', '6711553'), - (999, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd3R6VJ24', '6722688'), - (999, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd3R6VJ24', '6730620'), - (999, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd3R6VJ24', '6730642'), - (999, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd3R6VJ24', '6740364'), - (999, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd3R6VJ24', '6743829'), - (999, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd3R6VJ24', '7030380'), - (999, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd3R6VJ24', '7033677'), - (999, 2474, 'maybe', '2024-02-21 01:50:48', '2025-12-17 19:46:43', 'd3R6VJ24', '7035415'), - (999, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd3R6VJ24', '7044715'), - (999, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd3R6VJ24', '7050318'), - (999, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd3R6VJ24', '7050319'), - (999, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd3R6VJ24', '7050322'), - (999, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd3R6VJ24', '7057804'), - (999, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'd3R6VJ24', '7059866'), - (999, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd3R6VJ24', '7072824'), - (999, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd3R6VJ24', '7074348'), - (999, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd3R6VJ24', '7074364'), - (999, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd3R6VJ24', '7089267'), - (999, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd3R6VJ24', '7098747'), - (999, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd3R6VJ24', '7113468'), - (999, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd3R6VJ24', '7114856'), - (999, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd3R6VJ24', '7114951'), - (999, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd3R6VJ24', '7114955'), - (999, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd3R6VJ24', '7114956'), - (999, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd3R6VJ24', '7114957'), - (999, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd3R6VJ24', '7153615'), - (999, 2570, 'maybe', '2024-04-08 17:00:18', '2025-12-17 19:46:33', 'd3R6VJ24', '7159187'), - (999, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd3R6VJ24', '7159484'), - (999, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd3R6VJ24', '7178446'), - (999, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd3R6VJ24', '7220467'), - (999, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd3R6VJ24', '7240354'), - (999, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd3R6VJ24', '7251633'), - (999, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd3R6VJ24', '7324073'), - (999, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd3R6VJ24', '7324074'), - (999, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd3R6VJ24', '7324075'), - (999, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd3R6VJ24', '7324078'), - (999, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd3R6VJ24', '7324082'), - (999, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd3R6VJ24', '7331457'), - (999, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd3R6VJ24', '7363643'), - (999, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd3R6VJ24', '7368606'), - (999, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd3R6VJ24', '7397462'), - (999, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd3R6VJ24', '7424275'), - (999, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd3R6VJ24', '7424276'), - (999, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd3R6VJ24', '7432751'), - (999, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd3R6VJ24', '7432752'), - (999, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd3R6VJ24', '7432753'), - (999, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd3R6VJ24', '7432754'), - (999, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd3R6VJ24', '7432755'), - (999, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd3R6VJ24', '7432756'), - (999, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd3R6VJ24', '7432758'), - (999, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd3R6VJ24', '7432759'), - (999, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd3R6VJ24', '7433834'), - (999, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd3R6VJ24', '7470197'), - (999, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd3R6VJ24', '7685613'), - (999, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd3R6VJ24', '7688194'), - (999, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd3R6VJ24', '7688196'), - (999, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd3R6VJ24', '7688289'), - (999, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd3R6VJ24', '7692763'), - (999, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd3R6VJ24', '7697552'), - (999, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd3R6VJ24', '7699878'), - (999, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd3R6VJ24', '7704043'), - (999, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd3R6VJ24', '7712467'), - (999, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd3R6VJ24', '7713585'), - (999, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd3R6VJ24', '7713586'), - (999, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd3R6VJ24', '7738518'), - (999, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd3R6VJ24', '7750636'), - (999, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd3R6VJ24', '7796540'), - (999, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd3R6VJ24', '7796541'), - (999, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd3R6VJ24', '7796542'), - (999, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd3R6VJ24', '7825913'), - (999, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd3R6VJ24', '7826209'), - (999, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd3R6VJ24', '7834742'), - (999, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd3R6VJ24', '7842108'), - (999, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd3R6VJ24', '7842902'), - (999, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd3R6VJ24', '7842903'), - (999, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd3R6VJ24', '7842904'), - (999, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd3R6VJ24', '7842905'), - (999, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd3R6VJ24', '7855719'), - (999, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd3R6VJ24', '7860683'), - (999, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd3R6VJ24', '7860684'), - (999, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd3R6VJ24', '7866095'), - (999, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd3R6VJ24', '7869170'), - (999, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd3R6VJ24', '7869188'), - (999, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd3R6VJ24', '7869201'), - (999, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd3R6VJ24', '7877465'), - (999, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd3R6VJ24', '7888250'), - (999, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd3R6VJ24', '7904777'), - (999, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd3R6VJ24', '8349164'), - (999, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd3R6VJ24', '8349545'), - (999, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd3R6VJ24', '8353584'), - (999, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd3R6VJ24', '8368028'), - (999, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd3R6VJ24', '8368029'), - (999, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd3R6VJ24', '8388462'), - (999, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd3R6VJ24', '8400273'), - (999, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd3R6VJ24', '8400274'), - (999, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd3R6VJ24', '8400275'), - (999, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd3R6VJ24', '8400276'), - (999, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd3R6VJ24', '8404977'), - (999, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd3R6VJ24', '8430783'), - (999, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd3R6VJ24', '8430784'), - (999, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd3R6VJ24', '8430799'), - (999, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd3R6VJ24', '8430800'), - (999, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd3R6VJ24', '8430801'), - (999, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd3R6VJ24', '8438709'), - (999, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd3R6VJ24', '8457738'), - (999, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd3R6VJ24', '8459566'), - (999, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd3R6VJ24', '8459567'), - (999, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd3R6VJ24', '8461032'), - (999, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd3R6VJ24', '8477877'), - (999, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd3R6VJ24', '8485688'), - (999, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd3R6VJ24', '8490587'), - (999, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd3R6VJ24', '8493552'), - (999, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd3R6VJ24', '8493553'), - (999, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd3R6VJ24', '8493554'), - (999, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd3R6VJ24', '8493555'), - (999, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd3R6VJ24', '8493556'), - (999, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd3R6VJ24', '8493557'), - (999, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd3R6VJ24', '8493558'), - (999, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd3R6VJ24', '8493559'), - (999, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd3R6VJ24', '8493560'), - (999, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd3R6VJ24', '8493561'), - (999, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd3R6VJ24', '8493572'), - (999, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd3R6VJ24', '8540725'), - (999, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd3R6VJ24', '8555421'), - (1000, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mjVOrW5m', '7869188'), - (1000, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mjVOrW5m', '7888250'), - (1000, 3057, 'not_attending', '2025-03-24 18:19:49', '2025-12-17 19:46:19', 'mjVOrW5m', '7890059'), - (1000, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mjVOrW5m', '7904777'), - (1000, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjVOrW5m', '8349164'), - (1000, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjVOrW5m', '8349545'), - (1000, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mjVOrW5m', '8353584'), - (1000, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjVOrW5m', '8368028'), - (1000, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjVOrW5m', '8368029'), - (1000, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjVOrW5m', '8388462'), - (1000, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjVOrW5m', '8400273'), - (1000, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mjVOrW5m', '8400274'), - (1000, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjVOrW5m', '8400275'), - (1000, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mjVOrW5m', '8400276'), - (1000, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjVOrW5m', '8404977'), - (1000, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mjVOrW5m', '8430783'), - (1000, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjVOrW5m', '8430784'), - (1000, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjVOrW5m', '8430799'), - (1000, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjVOrW5m', '8430800'), - (1000, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjVOrW5m', '8430801'), - (1000, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mjVOrW5m', '8438709'), - (1000, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjVOrW5m', '8457738'), - (1000, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjVOrW5m', '8459566'), - (1000, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjVOrW5m', '8459567'), - (1000, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjVOrW5m', '8461032'), - (1000, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjVOrW5m', '8477877'), - (1000, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mjVOrW5m', '8485688'), - (1001, 1273, 'attending', '2022-03-26 14:21:56', '2025-12-17 19:47:25', 'AgxD25n4', '5186583'), - (1001, 1274, 'attending', '2022-04-01 12:59:42', '2025-12-17 19:47:26', 'AgxD25n4', '5186585'), - (1001, 1281, 'not_attending', '2022-04-09 22:15:36', '2025-12-17 19:47:27', 'AgxD25n4', '5190437'), - (1001, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgxD25n4', '5195095'), - (1001, 1285, 'attending', '2022-03-25 20:07:12', '2025-12-17 19:47:25', 'AgxD25n4', '5196763'), - (1001, 1290, 'attending', '2022-03-29 18:02:43', '2025-12-17 19:47:25', 'AgxD25n4', '5200196'), - (1001, 1291, 'maybe', '2022-03-25 20:07:17', '2025-12-17 19:47:25', 'AgxD25n4', '5200458'), - (1001, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AgxD25n4', '5215989'), - (1001, 1301, 'not_attending', '2022-04-01 12:59:30', '2025-12-17 19:47:26', 'AgxD25n4', '5218175'), - (1001, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgxD25n4', '5223686'), - (1001, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgxD25n4', '5227432'), - (1001, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgxD25n4', '5247467'), - (1001, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgxD25n4', '5260800'), - (1001, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgxD25n4', '5269930'), - (1001, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgxD25n4', '5271448'), - (1001, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AgxD25n4', '5271449'), - (1001, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgxD25n4', '5276469'), - (1001, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'AgxD25n4', '5277078'), - (1001, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgxD25n4', '5278159'), - (1001, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AgxD25n4', '5363695'), - (1001, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AgxD25n4', '5365960'), - (1001, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AgxD25n4', '5368973'), - (1001, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AgxD25n4', '5378247'), - (1001, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AgxD25n4', '5389605'), - (1001, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AgxD25n4', '5397265'), - (1001, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AgxD25n4', '5403967'), - (1001, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgxD25n4', '5404786'), - (1001, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgxD25n4', '5405203'), - (1001, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AgxD25n4', '5411699'), - (1001, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AgxD25n4', '5412550'), - (1001, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AgxD25n4', '5415046'), - (1001, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgxD25n4', '5422086'), - (1001, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgxD25n4', '5422406'), - (1001, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgxD25n4', '5424565'), - (1001, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgxD25n4', '5426882'), - (1001, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgxD25n4', '5427083'), - (1001, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AgxD25n4', '5441125'), - (1001, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AgxD25n4', '5441126'), - (1001, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AgxD25n4', '5441128'), - (1001, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgxD25n4', '5446643'), - (1001, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgxD25n4', '5453325'), - (1001, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgxD25n4', '5454516'), - (1001, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgxD25n4', '5454605'), - (1001, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgxD25n4', '5455037'), - (1001, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgxD25n4', '5461278'), - (1001, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgxD25n4', '5469480'), - (1001, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgxD25n4', '5471073'), - (1001, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AgxD25n4', '5474663'), - (1001, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgxD25n4', '5482022'), - (1001, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgxD25n4', '5482793'), - (1001, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgxD25n4', '5488912'), - (1001, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgxD25n4', '5492192'), - (1001, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgxD25n4', '5493139'), - (1001, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgxD25n4', '5493200'), - (1001, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgxD25n4', '5502188'), - (1001, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgxD25n4', '5512862'), - (1001, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgxD25n4', '5513985'), - (1001, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxD25n4', '6045684'), - (1002, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', '841vvvRd', '3149489'), - (1002, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '841vvvRd', '3149491'), - (1002, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '841vvvRd', '3236450'), - (1002, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', '841vvvRd', '3236452'), - (1002, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '841vvvRd', '3539921'), - (1002, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '841vvvRd', '3539922'), - (1002, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '841vvvRd', '3539923'), - (1002, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '841vvvRd', '3806392'), - (1002, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', '841vvvRd', '3963335'), - (1002, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '841vvvRd', '3975311'), - (1002, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '841vvvRd', '3975312'), - (1002, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '841vvvRd', '3994992'), - (1002, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '841vvvRd', '4014338'), - (1002, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '841vvvRd', '4136744'), - (1002, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841vvvRd', '6045684'), - (1003, 535, 'attending', '2021-01-09 19:52:30', '2025-12-17 19:47:48', 'O4Z5pM9A', '3384729'), - (1003, 536, 'attending', '2021-01-08 05:40:21', '2025-12-17 19:47:48', 'O4Z5pM9A', '3386848'), - (1003, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'O4Z5pM9A', '3396499'), - (1003, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'O4Z5pM9A', '3403650'), - (1003, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'O4Z5pM9A', '3406988'), - (1003, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'O4Z5pM9A', '3416576'), - (1003, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'O4Z5pM9A', '3426074'), - (1003, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'O4Z5pM9A', '3430267'), - (1003, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'O4Z5pM9A', '3468125'), - (1003, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'O4Z5pM9A', '3470303'), - (1003, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'O4Z5pM9A', '3470991'), - (1003, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4Z5pM9A', '6045684'), - (1004, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd90BPKE4', '6337236'), - (1004, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd90BPKE4', '6337970'), - (1004, 2156, 'not_attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'd90BPKE4', '6338308'), - (1004, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd90BPKE4', '6341710'), - (1004, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd90BPKE4', '6342044'), - (1004, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd90BPKE4', '6342298'), - (1004, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'd90BPKE4', '6342591'), - (1004, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd90BPKE4', '6343294'), - (1004, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd90BPKE4', '6347034'), - (1004, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd90BPKE4', '6347056'), - (1004, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd90BPKE4', '6353830'), - (1004, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd90BPKE4', '6353831'), - (1004, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd90BPKE4', '6357867'), - (1004, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd90BPKE4', '6358652'), - (1004, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd90BPKE4', '6361709'), - (1004, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd90BPKE4', '6361710'), - (1004, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd90BPKE4', '6361711'), - (1004, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd90BPKE4', '6361712'), - (1004, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd90BPKE4', '6361713'), - (1004, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd90BPKE4', '6382573'), - (1004, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd90BPKE4', '6388604'), - (1004, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd90BPKE4', '6394629'), - (1004, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd90BPKE4', '6394631'), - (1004, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd90BPKE4', '6431478'), - (1005, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3V9LjY4', '6045684'), - (1006, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', '4WWw56j4', '6334903'), - (1006, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4WWw56j4', '6337236'), - (1006, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4WWw56j4', '6337970'), - (1006, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4WWw56j4', '6338308'), - (1006, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4WWw56j4', '6340845'), - (1006, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4WWw56j4', '6341710'), - (1006, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4WWw56j4', '6342044'), - (1006, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4WWw56j4', '6342298'), - (1006, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4WWw56j4', '6343294'), - (1006, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4WWw56j4', '6347034'), - (1006, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4WWw56j4', '6347056'), - (1006, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4WWw56j4', '6353830'), - (1006, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4WWw56j4', '6353831'), - (1006, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4WWw56j4', '6357867'), - (1006, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4WWw56j4', '6358652'), - (1006, 2204, 'attending', '2023-08-18 15:46:58', '2025-12-17 19:46:55', '4WWw56j4', '6361542'), - (1006, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4WWw56j4', '6361709'), - (1006, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4WWw56j4', '6361710'), - (1006, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4WWw56j4', '6361711'), - (1006, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4WWw56j4', '6361712'), - (1006, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4WWw56j4', '6361713'), - (1006, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4WWw56j4', '6382573'), - (1006, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4WWw56j4', '6388604'), - (1006, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4WWw56j4', '6394629'), - (1006, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4WWw56j4', '6394631'), - (1006, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4WWw56j4', '6440863'), - (1006, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4WWw56j4', '6445440'), - (1006, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4WWw56j4', '6453951'), - (1006, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4WWw56j4', '6461696'), - (1006, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4WWw56j4', '6462129'), - (1006, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4WWw56j4', '6463218'), - (1006, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4WWw56j4', '6472181'), - (1006, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4WWw56j4', '6482693'), - (1006, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4WWw56j4', '6484200'), - (1006, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4WWw56j4', '6484680'), - (1006, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4WWw56j4', '6507741'), - (1006, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4WWw56j4', '6514659'), - (1006, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4WWw56j4', '6514660'), - (1006, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4WWw56j4', '6519103'), - (1006, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4WWw56j4', '6535681'), - (1006, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4WWw56j4', '6584747'), - (1006, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4WWw56j4', '6587097'), - (1006, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4WWw56j4', '6609022'), - (1006, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4WWw56j4', '6632757'), - (1006, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4WWw56j4', '6644187'), - (1006, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4WWw56j4', '6648951'), - (1006, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4WWw56j4', '6648952'), - (1006, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4WWw56j4', '6655401'), - (1006, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4WWw56j4', '6661585'), - (1006, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4WWw56j4', '6661588'), - (1006, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4WWw56j4', '6661589'), - (1006, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4WWw56j4', '6699906'), - (1006, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4WWw56j4', '6701109'), - (1006, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4WWw56j4', '6705219'), - (1006, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4WWw56j4', '6710153'), - (1006, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4WWw56j4', '6711552'), - (1006, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4WWw56j4', '6711553'), - (1007, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'VmMkrJJ4', '3149489'), - (1007, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'VmMkrJJ4', '3149491'), - (1007, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'VmMkrJJ4', '3149493'), - (1007, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'VmMkrJJ4', '3236448'), - (1007, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'VmMkrJJ4', '3236450'), - (1007, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'VmMkrJJ4', '3236452'), - (1007, 648, 'attending', '2021-05-26 16:09:26', '2025-12-17 19:47:47', 'VmMkrJJ4', '3539923'), - (1007, 777, 'attending', '2021-05-26 20:41:53', '2025-12-17 19:47:46', 'VmMkrJJ4', '3746248'), - (1007, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'VmMkrJJ4', '3963335'), - (1007, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'VmMkrJJ4', '3974109'), - (1007, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VmMkrJJ4', '3975311'), - (1007, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VmMkrJJ4', '3975312'), - (1007, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VmMkrJJ4', '3994992'), - (1007, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VmMkrJJ4', '4014338'), - (1007, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'VmMkrJJ4', '4021848'), - (1007, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmMkrJJ4', '4136744'), - (1007, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'VmMkrJJ4', '4136937'), - (1007, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VmMkrJJ4', '4136947'), - (1007, 891, 'attending', '2021-07-01 20:55:16', '2025-12-17 19:47:38', 'VmMkrJJ4', '4229417'), - (1007, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VmMkrJJ4', '4239259'), - (1007, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMkrJJ4', '6045684'), - (1008, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd81gn6km', '6361713'), - (1008, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd81gn6km', '6388604'), - (1008, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd81gn6km', '6394629'), - (1008, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd81gn6km', '6394631'), - (1008, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd81gn6km', '6431478'), - (1009, 1797, 'attending', '2022-12-08 04:37:28', '2025-12-17 19:47:17', 'mGOk1anm', '5757486'), - (1009, 1824, 'not_attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'mGOk1anm', '5774172'), - (1009, 1832, 'not_attending', '2022-12-03 19:14:16', '2025-12-17 19:47:16', 'mGOk1anm', '5818247'), - (1009, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mGOk1anm', '5819471'), - (1009, 1836, 'attending', '2022-12-05 07:45:13', '2025-12-17 19:47:16', 'mGOk1anm', '5819484'), - (1009, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'mGOk1anm', '5827739'), - (1009, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mGOk1anm', '5844306'), - (1009, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mGOk1anm', '5850159'), - (1009, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mGOk1anm', '5858999'), - (1009, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mGOk1anm', '5871984'), - (1009, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mGOk1anm', '5876354'), - (1009, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mGOk1anm', '5880939'), - (1009, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mGOk1anm', '5887890'), - (1009, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mGOk1anm', '5888598'), - (1009, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mGOk1anm', '5893260'), - (1009, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mGOk1anm', '6045684'), - (1010, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dKP6GPem', '5652395'), - (1010, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKP6GPem', '6045684'), - (1011, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdKlG99m', '3470305'), - (1011, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'kdKlG99m', '3470991'), - (1011, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdKlG99m', '3517815'), - (1011, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdKlG99m', '3517816'), - (1011, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKlG99m', '3523941'), - (1011, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKlG99m', '3533850'), - (1011, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKlG99m', '3536632'), - (1011, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKlG99m', '3536656'), - (1011, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdKlG99m', '3539916'), - (1011, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdKlG99m', '3539917'), - (1011, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKlG99m', '3539918'), - (1011, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKlG99m', '3539919'), - (1011, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKlG99m', '3539920'), - (1011, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKlG99m', '3539921'), - (1011, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKlG99m', '3539922'), - (1011, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKlG99m', '3539923'), - (1011, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdKlG99m', '3539927'), - (1011, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKlG99m', '3582734'), - (1011, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKlG99m', '3619523'), - (1011, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKlG99m', '6045684'), - (1012, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dxOr5nD4', '5880942'), - (1012, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dxOr5nD4', '5880943'), - (1012, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dxOr5nD4', '5900200'), - (1012, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dxOr5nD4', '5900202'), - (1012, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dxOr5nD4', '5900203'), - (1012, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'dxOr5nD4', '5910526'), - (1012, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dxOr5nD4', '5910528'), - (1012, 1921, 'not_attending', '2023-02-18 05:13:57', '2025-12-17 19:47:08', 'dxOr5nD4', '5914092'), - (1012, 1925, 'attending', '2023-02-23 23:22:43', '2025-12-17 19:47:08', 'dxOr5nD4', '5932619'), - (1012, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dxOr5nD4', '5936234'), - (1012, 1934, 'attending', '2023-02-22 15:15:46', '2025-12-17 19:47:08', 'dxOr5nD4', '5936691'), - (1012, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dxOr5nD4', '5958351'), - (1012, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dxOr5nD4', '5959751'), - (1012, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dxOr5nD4', '5959755'), - (1012, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dxOr5nD4', '5960055'), - (1012, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dxOr5nD4', '5961684'), - (1012, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dxOr5nD4', '5962132'), - (1012, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dxOr5nD4', '5962133'), - (1012, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dxOr5nD4', '5962134'), - (1012, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dxOr5nD4', '5962317'), - (1012, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dxOr5nD4', '5962318'), - (1012, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dxOr5nD4', '5965933'), - (1012, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dxOr5nD4', '5967014'), - (1012, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dxOr5nD4', '5972815'), - (1012, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dxOr5nD4', '5974016'), - (1012, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dxOr5nD4', '5981515'), - (1012, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dxOr5nD4', '5993516'), - (1012, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dxOr5nD4', '5998939'), - (1012, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dxOr5nD4', '6028191'), - (1012, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dxOr5nD4', '6040066'), - (1012, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dxOr5nD4', '6042717'), - (1012, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dxOr5nD4', '6044838'), - (1012, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dxOr5nD4', '6044839'), - (1012, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxOr5nD4', '6045684'), - (1012, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dxOr5nD4', '6050104'), - (1012, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dxOr5nD4', '6053195'), - (1012, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dxOr5nD4', '6053198'), - (1012, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dxOr5nD4', '6056085'), - (1012, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dxOr5nD4', '6056916'), - (1012, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dxOr5nD4', '6059290'), - (1012, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dxOr5nD4', '6060328'), - (1012, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dxOr5nD4', '6061037'), - (1012, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dxOr5nD4', '6061039'), - (1012, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dxOr5nD4', '6067245'), - (1012, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dxOr5nD4', '6068094'), - (1012, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dxOr5nD4', '6068252'), - (1012, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dxOr5nD4', '6068253'), - (1012, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dxOr5nD4', '6068254'), - (1012, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dxOr5nD4', '6068280'), - (1012, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dxOr5nD4', '6069093'), - (1012, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dxOr5nD4', '6072528'), - (1012, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dxOr5nD4', '6079840'), - (1012, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dxOr5nD4', '6083398'), - (1012, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dxOr5nD4', '6093504'), - (1012, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dxOr5nD4', '6097414'), - (1012, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dxOr5nD4', '6097442'), - (1012, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dxOr5nD4', '6097684'), - (1012, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dxOr5nD4', '6098762'), - (1012, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dxOr5nD4', '6101362'), - (1012, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dxOr5nD4', '6103752'), - (1012, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dxOr5nD4', '6107314'), - (1013, 1315, 'attending', '2022-04-22 22:46:43', '2025-12-17 19:47:27', '41WMnERm', '5237522'), - (1013, 1337, 'maybe', '2022-04-20 22:39:19', '2025-12-17 19:47:27', '41WMnERm', '5245036'), - (1013, 1350, 'attending', '2022-04-20 22:40:54', '2025-12-17 19:47:27', '41WMnERm', '5249763'), - (1013, 1362, 'attending', '2022-04-30 19:21:52', '2025-12-17 19:47:28', '41WMnERm', '5260800'), - (1013, 1371, 'attending', '2022-04-27 22:39:52', '2025-12-17 19:47:27', '41WMnERm', '5263784'), - (1013, 1372, 'attending', '2022-05-04 20:49:37', '2025-12-17 19:47:28', '41WMnERm', '5264352'), - (1013, 1374, 'attending', '2022-05-07 21:25:18', '2025-12-17 19:47:28', '41WMnERm', '5269930'), - (1013, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41WMnERm', '5271448'), - (1013, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '41WMnERm', '5271449'), - (1013, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '41WMnERm', '5276469'), - (1013, 1385, 'attending', '2022-05-11 22:29:38', '2025-12-17 19:47:28', '41WMnERm', '5277822'), - (1013, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41WMnERm', '5278159'), - (1013, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41WMnERm', '5363695'), - (1013, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41WMnERm', '5365960'), - (1013, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '41WMnERm', '5368973'), - (1013, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41WMnERm', '5378247'), - (1013, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '41WMnERm', '5389605'), - (1013, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41WMnERm', '5397265'), - (1013, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WMnERm', '5403967'), - (1013, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WMnERm', '5404786'), - (1013, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WMnERm', '5405203'), - (1013, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '41WMnERm', '5408794'), - (1013, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WMnERm', '5411699'), - (1013, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WMnERm', '5412550'), - (1013, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WMnERm', '5415046'), - (1013, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WMnERm', '5422086'), - (1013, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WMnERm', '5422406'), - (1013, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WMnERm', '5424565'), - (1013, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WMnERm', '5426882'), - (1013, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WMnERm', '5427083'), - (1013, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '41WMnERm', '5441125'), - (1013, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WMnERm', '5441126'), - (1013, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WMnERm', '5441128'), - (1013, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WMnERm', '5446643'), - (1013, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WMnERm', '5453325'), - (1013, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WMnERm', '5454516'), - (1013, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WMnERm', '5454605'), - (1013, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WMnERm', '5455037'), - (1013, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WMnERm', '5461278'), - (1013, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WMnERm', '5469480'), - (1013, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WMnERm', '5471073'), - (1013, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41WMnERm', '5474663'), - (1013, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WMnERm', '5482022'), - (1013, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WMnERm', '5482793'), - (1013, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WMnERm', '5488912'), - (1013, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WMnERm', '5492192'), - (1013, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WMnERm', '5493139'), - (1013, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WMnERm', '5493200'), - (1013, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WMnERm', '5502188'), - (1013, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WMnERm', '5512862'), - (1013, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WMnERm', '5513985'), - (1013, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WMnERm', '6045684'), - (1014, 2136, 'attending', '2023-07-21 15:05:04', '2025-12-17 19:46:53', 'AXV3GXvd', '6187966'), - (1014, 2137, 'attending', '2023-07-21 15:06:57', '2025-12-17 19:46:54', 'AXV3GXvd', '6187967'), - (1014, 2146, 'attending', '2023-07-21 14:06:26', '2025-12-17 19:46:53', 'AXV3GXvd', '6335638'), - (1014, 2148, 'attending', '2023-07-21 15:04:40', '2025-12-17 19:46:53', 'AXV3GXvd', '6335667'), - (1014, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AXV3GXvd', '6337236'), - (1014, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AXV3GXvd', '6337970'), - (1014, 2156, 'not_attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'AXV3GXvd', '6338308'), - (1014, 2158, 'attending', '2023-07-21 14:04:11', '2025-12-17 19:46:53', 'AXV3GXvd', '6338353'), - (1014, 2159, 'attending', '2023-07-22 22:17:14', '2025-12-17 19:46:53', 'AXV3GXvd', '6338355'), - (1014, 2160, 'maybe', '2023-07-24 22:42:18', '2025-12-17 19:46:54', 'AXV3GXvd', '6338358'), - (1014, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AXV3GXvd', '6341710'), - (1014, 2164, 'maybe', '2023-07-24 22:42:45', '2025-12-17 19:46:54', 'AXV3GXvd', '6341797'), - (1014, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AXV3GXvd', '6342044'), - (1014, 2166, 'attending', '2023-07-21 15:05:27', '2025-12-17 19:46:54', 'AXV3GXvd', '6342115'), - (1014, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AXV3GXvd', '6342298'), - (1014, 2171, 'maybe', '2023-07-21 15:05:39', '2025-12-17 19:46:54', 'AXV3GXvd', '6342328'), - (1014, 2172, 'attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'AXV3GXvd', '6342591'), - (1014, 2173, 'attending', '2023-07-20 23:34:57', '2025-12-17 19:46:53', 'AXV3GXvd', '6342769'), - (1014, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AXV3GXvd', '6343294'), - (1014, 2175, 'attending', '2023-07-22 21:19:33', '2025-12-17 19:46:53', 'AXV3GXvd', '6346982'), - (1014, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AXV3GXvd', '6347034'), - (1014, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AXV3GXvd', '6347056'), - (1014, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AXV3GXvd', '6353830'), - (1014, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AXV3GXvd', '6353831'), - (1014, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AXV3GXvd', '6357867'), - (1014, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AXV3GXvd', '6358652'), - (1014, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AXV3GXvd', '6361709'), - (1014, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AXV3GXvd', '6361710'), - (1014, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AXV3GXvd', '6361711'), - (1014, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AXV3GXvd', '6361712'), - (1014, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AXV3GXvd', '6361713'), - (1014, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AXV3GXvd', '6382573'), - (1014, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'AXV3GXvd', '6388604'), - (1014, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AXV3GXvd', '6394629'), - (1014, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AXV3GXvd', '6394631'), - (1014, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AXV3GXvd', '6440863'), - (1014, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AXV3GXvd', '6445440'), - (1014, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AXV3GXvd', '6453951'), - (1014, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AXV3GXvd', '6461696'), - (1014, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AXV3GXvd', '6462129'), - (1014, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AXV3GXvd', '6463218'), - (1014, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AXV3GXvd', '6472181'), - (1014, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AXV3GXvd', '6482693'), - (1014, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'AXV3GXvd', '6484200'), - (1014, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AXV3GXvd', '6484680'), - (1014, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AXV3GXvd', '6507741'), - (1014, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AXV3GXvd', '6514659'), - (1014, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AXV3GXvd', '6514660'), - (1014, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AXV3GXvd', '6519103'), - (1014, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AXV3GXvd', '6535681'), - (1014, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AXV3GXvd', '6584747'), - (1014, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AXV3GXvd', '6587097'), - (1014, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AXV3GXvd', '6609022'), - (1014, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AXV3GXvd', '6632757'), - (1014, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AXV3GXvd', '6644187'), - (1014, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AXV3GXvd', '6648951'), - (1014, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AXV3GXvd', '6648952'), - (1014, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AXV3GXvd', '6655401'), - (1014, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AXV3GXvd', '6661585'), - (1014, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AXV3GXvd', '6661588'), - (1014, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AXV3GXvd', '6661589'), - (1014, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AXV3GXvd', '6699906'), - (1014, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AXV3GXvd', '6701109'), - (1014, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AXV3GXvd', '6705219'), - (1014, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AXV3GXvd', '6710153'), - (1014, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AXV3GXvd', '6711552'), - (1014, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AXV3GXvd', '6711553'), - (1015, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'daBnr1Dm', '4366187'), - (1015, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'daBnr1Dm', '4420735'), - (1015, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'daBnr1Dm', '4420738'), - (1015, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'daBnr1Dm', '4420739'), - (1015, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'daBnr1Dm', '4420741'), - (1015, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'daBnr1Dm', '4420744'), - (1015, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'daBnr1Dm', '4420747'), - (1015, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'daBnr1Dm', '4420748'), - (1015, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'daBnr1Dm', '4420749'), - (1015, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daBnr1Dm', '6045684'), - (1016, 884, 'maybe', '2021-08-11 10:50:25', '2025-12-17 19:47:42', 'dwYoWLaA', '4210314'), - (1016, 902, 'attending', '2021-08-07 17:33:01', '2025-12-17 19:47:41', 'dwYoWLaA', '4240318'), - (1016, 903, 'attending', '2021-08-11 10:50:11', '2025-12-17 19:47:42', 'dwYoWLaA', '4240320'), - (1016, 930, 'attending', '2021-08-08 21:28:56', '2025-12-17 19:47:41', 'dwYoWLaA', '4300787'), - (1016, 934, 'attending', '2021-08-04 21:18:05', '2025-12-17 19:47:40', 'dwYoWLaA', '4302093'), - (1016, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dwYoWLaA', '4304151'), - (1016, 947, 'attending', '2021-08-06 20:10:48', '2025-12-17 19:47:41', 'dwYoWLaA', '4315713'), - (1016, 952, 'attending', '2021-08-05 17:37:05', '2025-12-17 19:47:41', 'dwYoWLaA', '4318286'), - (1016, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dwYoWLaA', '4345519'), - (1016, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dwYoWLaA', '4356801'), - (1016, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'dwYoWLaA', '4358025'), - (1016, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dwYoWLaA', '4366186'), - (1016, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dwYoWLaA', '4366187'), - (1016, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'dwYoWLaA', '4402823'), - (1016, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dwYoWLaA', '4420735'), - (1016, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dwYoWLaA', '4420738'), - (1016, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dwYoWLaA', '4420739'), - (1016, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dwYoWLaA', '4420741'), - (1016, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dwYoWLaA', '4420744'), - (1016, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dwYoWLaA', '4420747'), - (1016, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dwYoWLaA', '4420748'), - (1016, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dwYoWLaA', '4420749'), - (1016, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dwYoWLaA', '4461883'), - (1016, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dwYoWLaA', '4508342'), - (1016, 1723, 'attending', '2022-11-05 21:11:50', '2025-12-17 19:47:15', 'dwYoWLaA', '5630962'), - (1016, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dwYoWLaA', '5630966'), - (1016, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dwYoWLaA', '5630967'), - (1016, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dwYoWLaA', '5630968'), - (1016, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dwYoWLaA', '5642818'), - (1016, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dwYoWLaA', '5670445'), - (1016, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dwYoWLaA', '5699760'), - (1016, 1786, 'maybe', '2022-11-08 23:41:18', '2025-12-17 19:47:15', 'dwYoWLaA', '5727232'), - (1016, 1787, 'attending', '2022-11-13 23:23:40', '2025-12-17 19:47:16', 'dwYoWLaA', '5727234'), - (1016, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dwYoWLaA', '5741601'), - (1016, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dwYoWLaA', '5763458'), - (1016, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dwYoWLaA', '5774172'), - (1016, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'dwYoWLaA', '5818247'), - (1016, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dwYoWLaA', '5819471'), - (1016, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dwYoWLaA', '5827739'), - (1016, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dwYoWLaA', '5844306'), - (1016, 1846, 'not_attending', '2022-12-18 18:53:15', '2025-12-17 19:47:04', 'dwYoWLaA', '5845237'), - (1016, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dwYoWLaA', '5850159'), - (1016, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dwYoWLaA', '5858999'), - (1016, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dwYoWLaA', '5871984'), - (1016, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dwYoWLaA', '5876354'), - (1016, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dwYoWLaA', '6045684'), - (1017, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd9Xg3GX4', '7424275'), - (1017, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd9Xg3GX4', '7424276'), - (1017, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'd9Xg3GX4', '7432756'), - (1017, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'd9Xg3GX4', '7432758'), - (1017, 2880, 'attending', '2024-10-11 17:49:59', '2025-12-17 19:46:26', 'd9Xg3GX4', '7636316'), - (1017, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd9Xg3GX4', '7685613'), - (1017, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd9Xg3GX4', '7688194'), - (1017, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd9Xg3GX4', '7688196'), - (1017, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd9Xg3GX4', '7688289'), - (1017, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd9Xg3GX4', '7692763'), - (1017, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd9Xg3GX4', '7697552'), - (1017, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd9Xg3GX4', '7699878'), - (1017, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd9Xg3GX4', '7704043'), - (1017, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd9Xg3GX4', '7712467'), - (1017, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd9Xg3GX4', '7713585'), - (1017, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd9Xg3GX4', '7713586'), - (1017, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'd9Xg3GX4', '7738518'), - (1017, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd9Xg3GX4', '7750636'), - (1017, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd9Xg3GX4', '7796540'), - (1017, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd9Xg3GX4', '7796541'), - (1017, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd9Xg3GX4', '7796542'), - (1017, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd9Xg3GX4', '7825913'), - (1017, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd9Xg3GX4', '7826209'), - (1017, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd9Xg3GX4', '7834742'), - (1017, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd9Xg3GX4', '7842108'), - (1017, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd9Xg3GX4', '7842902'), - (1017, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd9Xg3GX4', '7842903'), - (1017, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd9Xg3GX4', '7842904'), - (1017, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd9Xg3GX4', '7842905'), - (1017, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd9Xg3GX4', '7855719'), - (1017, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd9Xg3GX4', '7860683'), - (1017, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd9Xg3GX4', '7860684'), - (1017, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd9Xg3GX4', '7866095'), - (1017, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd9Xg3GX4', '7869170'), - (1017, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd9Xg3GX4', '7869188'), - (1017, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd9Xg3GX4', '7869201'), - (1017, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd9Xg3GX4', '7877465'), - (1017, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'd9Xg3GX4', '7878570'), - (1017, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd9Xg3GX4', '7888250'), - (1017, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd9Xg3GX4', '8349164'), - (1017, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd9Xg3GX4', '8349545'), - (1017, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd9Xg3GX4', '8353584'), - (1018, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Gmjwwe0A', '3236465'), - (1018, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'Gmjwwe0A', '3539916'), - (1018, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Gmjwwe0A', '3539918'), - (1018, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Gmjwwe0A', '3539919'), - (1018, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Gmjwwe0A', '3539920'), - (1018, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Gmjwwe0A', '3539921'), - (1018, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Gmjwwe0A', '3539927'), - (1018, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Gmjwwe0A', '3582734'), - (1018, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Gmjwwe0A', '3583262'), - (1018, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Gmjwwe0A', '3619523'), - (1018, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Gmjwwe0A', '3661369'), - (1018, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Gmjwwe0A', '3674262'), - (1018, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Gmjwwe0A', '3677402'), - (1018, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Gmjwwe0A', '3730212'), - (1018, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Gmjwwe0A', '3793156'), - (1018, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Gmjwwe0A', '3803310'), - (1018, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Gmjwwe0A', '3806392'), - (1018, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Gmjwwe0A', '6045684'), - (1019, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxMx6p1m', '6482693'), - (1019, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dxMx6p1m', '6484200'), - (1019, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'dxMx6p1m', '6484680'), - (1019, 2310, 'attending', '2023-11-11 18:00:00', '2025-12-17 19:46:47', 'dxMx6p1m', '6487709'), - (1019, 2315, 'attending', '2023-11-07 00:49:55', '2025-12-17 19:46:47', 'dxMx6p1m', '6493666'), - (1019, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxMx6p1m', '6507741'), - (1019, 2320, 'attending', '2023-11-07 04:03:28', '2025-12-17 19:46:47', 'dxMx6p1m', '6508647'), - (1019, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxMx6p1m', '6514659'), - (1019, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMx6p1m', '6514660'), - (1019, 2324, 'not_attending', '2023-12-05 22:45:10', '2025-12-17 19:46:49', 'dxMx6p1m', '6514662'), - (1019, 2325, 'attending', '2023-12-16 18:39:41', '2025-12-17 19:46:36', 'dxMx6p1m', '6514663'), - (1019, 2331, 'maybe', '2023-11-14 01:36:21', '2025-12-17 19:46:47', 'dxMx6p1m', '6518640'), - (1019, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxMx6p1m', '6519103'), - (1019, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dxMx6p1m', '6535681'), - (1019, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxMx6p1m', '6584747'), - (1019, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMx6p1m', '6587097'), - (1019, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMx6p1m', '6609022'), - (1019, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMx6p1m', '6632757'), - (1019, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMx6p1m', '6644187'), - (1019, 2382, 'maybe', '2024-01-03 18:03:07', '2025-12-17 19:46:37', 'dxMx6p1m', '6646401'), - (1019, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMx6p1m', '6648951'), - (1019, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMx6p1m', '6648952'), - (1019, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMx6p1m', '6655401'), - (1019, 2399, 'attending', '2024-01-10 18:36:27', '2025-12-17 19:46:38', 'dxMx6p1m', '6657583'), - (1019, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMx6p1m', '6661585'), - (1019, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMx6p1m', '6661588'), - (1019, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMx6p1m', '6661589'), - (1019, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMx6p1m', '6699906'), - (1019, 2408, 'attending', '2024-01-25 16:49:38', '2025-12-17 19:46:40', 'dxMx6p1m', '6699907'), - (1019, 2409, 'attending', '2024-01-28 19:07:09', '2025-12-17 19:46:41', 'dxMx6p1m', '6699909'), - (1019, 2410, 'attending', '2024-02-10 22:33:10', '2025-12-17 19:46:41', 'dxMx6p1m', '6699911'), - (1019, 2411, 'not_attending', '2024-02-08 17:09:49', '2025-12-17 19:46:42', 'dxMx6p1m', '6699913'), - (1019, 2412, 'maybe', '2024-02-20 02:04:10', '2025-12-17 19:46:43', 'dxMx6p1m', '6700717'), - (1019, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMx6p1m', '6701109'), - (1019, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMx6p1m', '6705219'), - (1019, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMx6p1m', '6710153'), - (1019, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMx6p1m', '6711552'), - (1019, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMx6p1m', '6711553'), - (1019, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMx6p1m', '6722688'), - (1019, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMx6p1m', '6730620'), - (1019, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMx6p1m', '6730642'), - (1019, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMx6p1m', '6740364'), - (1019, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMx6p1m', '6743829'), - (1019, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMx6p1m', '7030380'), - (1019, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMx6p1m', '7033677'), - (1019, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMx6p1m', '7035415'), - (1019, 2475, 'attending', '2024-02-28 02:50:30', '2025-12-17 19:46:43', 'dxMx6p1m', '7035643'), - (1019, 2476, 'attending', '2024-02-28 00:13:04', '2025-12-17 19:46:43', 'dxMx6p1m', '7035691'), - (1019, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMx6p1m', '7044715'), - (1019, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMx6p1m', '7050318'), - (1019, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMx6p1m', '7050319'), - (1019, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMx6p1m', '7050322'), - (1019, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMx6p1m', '7057804'), - (1019, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dxMx6p1m', '7059866'), - (1019, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMx6p1m', '7072824'), - (1019, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMx6p1m', '7074348'), - (1019, 2511, 'attending', '2024-04-10 01:24:21', '2025-12-17 19:46:33', 'dxMx6p1m', '7074351'), - (1019, 2521, 'attending', '2024-06-17 20:05:44', '2025-12-17 19:46:29', 'dxMx6p1m', '7074361'), - (1019, 2522, 'attending', '2024-07-14 23:32:11', '2025-12-17 19:46:30', 'dxMx6p1m', '7074362'), - (1019, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxMx6p1m', '7074364'), - (1019, 2525, 'attending', '2024-06-13 19:38:37', '2025-12-17 19:46:28', 'dxMx6p1m', '7074365'), - (1019, 2527, 'attending', '2024-06-24 02:49:41', '2025-12-17 19:46:29', 'dxMx6p1m', '7074367'), - (1019, 2530, 'maybe', '2024-08-15 00:59:19', '2025-12-17 19:46:31', 'dxMx6p1m', '7074373'), - (1019, 2537, 'attending', '2024-03-23 15:36:56', '2025-12-17 19:46:33', 'dxMx6p1m', '7085484'), - (1019, 2539, 'attending', '2024-04-06 04:17:14', '2025-12-17 19:46:33', 'dxMx6p1m', '7085486'), - (1019, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMx6p1m', '7089267'), - (1019, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMx6p1m', '7098747'), - (1019, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxMx6p1m', '7113468'), - (1019, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMx6p1m', '7114856'), - (1019, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMx6p1m', '7114951'), - (1019, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxMx6p1m', '7114955'), - (1019, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMx6p1m', '7114956'), - (1019, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMx6p1m', '7114957'), - (1019, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMx6p1m', '7153615'), - (1019, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMx6p1m', '7159484'), - (1019, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMx6p1m', '7178446'), - (1019, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMx6p1m', '7220467'), - (1019, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMx6p1m', '7240354'), - (1019, 2611, 'attending', '2024-05-06 16:26:54', '2025-12-17 19:46:35', 'dxMx6p1m', '7247642'), - (1019, 2614, 'attending', '2024-05-09 15:09:58', '2025-12-17 19:46:35', 'dxMx6p1m', '7247645'), - (1019, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMx6p1m', '7251633'), - (1019, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dxMx6p1m', '7263048'), - (1019, 2625, 'maybe', '2024-05-11 01:02:45', '2025-12-17 19:46:35', 'dxMx6p1m', '7263302'), - (1019, 2626, 'attending', '2024-05-18 15:28:03', '2025-12-17 19:46:35', 'dxMx6p1m', '7264723'), - (1019, 2627, 'attending', '2024-05-25 16:16:56', '2025-12-17 19:46:35', 'dxMx6p1m', '7264724'), - (1019, 2628, 'attending', '2024-06-01 15:06:45', '2025-12-17 19:46:36', 'dxMx6p1m', '7264725'), - (1019, 2629, 'attending', '2024-06-08 18:30:08', '2025-12-17 19:46:28', 'dxMx6p1m', '7264726'), - (1019, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMx6p1m', '7302674'), - (1019, 2666, 'maybe', '2024-06-06 20:41:07', '2025-12-17 19:46:36', 'dxMx6p1m', '7307775'), - (1019, 2678, 'not_attending', '2024-06-12 21:52:22', '2025-12-17 19:46:28', 'dxMx6p1m', '7319489'), - (1019, 2679, 'attending', '2024-06-11 02:18:04', '2025-12-17 19:46:29', 'dxMx6p1m', '7319490'), - (1019, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'dxMx6p1m', '7324019'), - (1019, 2688, 'attending', '2024-06-23 04:52:01', '2025-12-17 19:46:29', 'dxMx6p1m', '7324073'), - (1019, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxMx6p1m', '7324074'), - (1019, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxMx6p1m', '7324075'), - (1019, 2691, 'attending', '2024-07-14 23:32:31', '2025-12-17 19:46:30', 'dxMx6p1m', '7324076'), - (1019, 2692, 'attending', '2024-07-27 21:14:28', '2025-12-17 19:46:30', 'dxMx6p1m', '7324077'), - (1019, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxMx6p1m', '7324078'), - (1019, 2694, 'attending', '2024-08-08 23:35:42', '2025-12-17 19:46:31', 'dxMx6p1m', '7324079'), - (1019, 2695, 'attending', '2024-08-15 00:59:25', '2025-12-17 19:46:31', 'dxMx6p1m', '7324080'), - (1019, 2696, 'attending', '2024-08-22 16:07:38', '2025-12-17 19:46:32', 'dxMx6p1m', '7324081'), - (1019, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxMx6p1m', '7324082'), - (1019, 2698, 'not_attending', '2024-09-01 20:15:07', '2025-12-17 19:46:24', 'dxMx6p1m', '7324083'), - (1019, 2720, 'attending', '2024-06-18 21:16:39', '2025-12-17 19:46:28', 'dxMx6p1m', '7331436'), - (1019, 2721, 'attending', '2024-06-23 04:34:55', '2025-12-17 19:46:29', 'dxMx6p1m', '7331456'), - (1019, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxMx6p1m', '7331457'), - (1019, 2743, 'attending', '2024-07-01 22:17:43', '2025-12-17 19:46:29', 'dxMx6p1m', '7345688'), - (1019, 2747, 'maybe', '2024-07-17 20:56:22', '2025-12-17 19:46:30', 'dxMx6p1m', '7353587'), - (1019, 2753, 'maybe', '2024-07-16 11:38:48', '2025-12-17 19:46:30', 'dxMx6p1m', '7355538'), - (1019, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxMx6p1m', '7356752'), - (1019, 2755, 'maybe', '2024-07-09 23:12:25', '2025-12-17 19:46:29', 'dxMx6p1m', '7357808'), - (1019, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dxMx6p1m', '7358733'), - (1019, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dxMx6p1m', '7363595'), - (1019, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxMx6p1m', '7363643'), - (1019, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxMx6p1m', '7368606'), - (1019, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxMx6p1m', '7397462'), - (1019, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxMx6p1m', '7424275'), - (1019, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxMx6p1m', '7424276'), - (1019, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxMx6p1m', '7432751'), - (1019, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxMx6p1m', '7432752'), - (1019, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxMx6p1m', '7432753'), - (1019, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxMx6p1m', '7432754'), - (1019, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxMx6p1m', '7432755'), - (1019, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxMx6p1m', '7432756'), - (1019, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxMx6p1m', '7432758'), - (1019, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxMx6p1m', '7432759'), - (1019, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxMx6p1m', '7433834'), - (1019, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxMx6p1m', '7470197'), - (1019, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxMx6p1m', '7685613'), - (1019, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxMx6p1m', '7688194'), - (1019, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxMx6p1m', '7688196'), - (1019, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxMx6p1m', '7688289'), - (1019, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dxMx6p1m', '7692763'), - (1019, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxMx6p1m', '7697552'), - (1019, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxMx6p1m', '7699878'), - (1019, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxMx6p1m', '7704043'), - (1019, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxMx6p1m', '7712467'), - (1019, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxMx6p1m', '7713585'), - (1019, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxMx6p1m', '7713586'), - (1019, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMx6p1m', '7738518'), - (1019, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMx6p1m', '7750636'), - (1019, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMx6p1m', '7796540'), - (1019, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMx6p1m', '7796541'), - (1019, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMx6p1m', '7796542'), - (1020, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', '0mq8QOLd', '3149489'), - (1020, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', '0mq8QOLd', '3149491'), - (1020, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '0mq8QOLd', '3236450'), - (1020, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', '0mq8QOLd', '3236452'), - (1020, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '0mq8QOLd', '3236465'), - (1020, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '0mq8QOLd', '3539918'), - (1020, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '0mq8QOLd', '3539919'), - (1020, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '0mq8QOLd', '3539920'), - (1020, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '0mq8QOLd', '3539921'), - (1020, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '0mq8QOLd', '3539922'), - (1020, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '0mq8QOLd', '3539923'), - (1020, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', '0mq8QOLd', '3583262'), - (1020, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '0mq8QOLd', '3730212'), - (1020, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '0mq8QOLd', '3793156'), - (1020, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '0mq8QOLd', '3803310'), - (1020, 806, 'not_attending', '2021-05-14 05:25:38', '2025-12-17 19:47:46', '0mq8QOLd', '3806392'), - (1020, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', '0mq8QOLd', '3963335'), - (1020, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '0mq8QOLd', '3974109'), - (1020, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '0mq8QOLd', '3975311'), - (1020, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '0mq8QOLd', '3975312'), - (1020, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '0mq8QOLd', '3994992'), - (1020, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '0mq8QOLd', '4014338'), - (1020, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '0mq8QOLd', '4136744'), - (1020, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mq8QOLd', '6045684'), - (1021, 2136, 'attending', '2023-07-25 22:04:43', '2025-12-17 19:46:53', '41GBnN8m', '6187966'), - (1021, 2137, 'attending', '2023-07-27 03:34:56', '2025-12-17 19:46:54', '41GBnN8m', '6187967'), - (1021, 2148, 'attending', '2023-07-24 02:24:48', '2025-12-17 19:46:53', '41GBnN8m', '6335667'), - (1021, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '41GBnN8m', '6337236'), - (1021, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '41GBnN8m', '6337970'), - (1021, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '41GBnN8m', '6338308'), - (1021, 2159, 'attending', '2023-07-22 16:16:14', '2025-12-17 19:46:53', '41GBnN8m', '6338355'), - (1021, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '41GBnN8m', '6341710'), - (1021, 2165, 'attending', '2023-07-27 03:35:13', '2025-12-17 19:46:54', '41GBnN8m', '6342044'), - (1021, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '41GBnN8m', '6342298'), - (1021, 2171, 'attending', '2023-07-27 03:34:11', '2025-12-17 19:46:54', '41GBnN8m', '6342328'), - (1021, 2172, 'attending', '2023-07-20 23:11:02', '2025-12-17 19:46:53', '41GBnN8m', '6342591'), - (1021, 2173, 'not_attending', '2023-07-20 05:21:44', '2025-12-17 19:46:53', '41GBnN8m', '6342769'), - (1021, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '41GBnN8m', '6343294'), - (1021, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '41GBnN8m', '6347034'), - (1021, 2177, 'maybe', '2023-07-27 03:41:25', '2025-12-17 19:46:55', '41GBnN8m', '6347053'), - (1021, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '41GBnN8m', '6347056'), - (1021, 2180, 'attending', '2023-07-27 03:33:36', '2025-12-17 19:46:54', '41GBnN8m', '6348788'), - (1021, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '41GBnN8m', '6353830'), - (1021, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '41GBnN8m', '6353831'), - (1021, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '41GBnN8m', '6357867'), - (1021, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '41GBnN8m', '6358652'), - (1021, 2193, 'maybe', '2023-08-06 16:42:12', '2025-12-17 19:46:54', '41GBnN8m', '6358668'), - (1021, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '41GBnN8m', '6361709'), - (1021, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '41GBnN8m', '6361710'), - (1021, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '41GBnN8m', '6361711'), - (1021, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '41GBnN8m', '6361712'), - (1021, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '41GBnN8m', '6361713'), - (1021, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '41GBnN8m', '6382573'), - (1021, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '41GBnN8m', '6388604'), - (1021, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '41GBnN8m', '6394629'), - (1021, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '41GBnN8m', '6394631'), - (1021, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '41GBnN8m', '6440863'), - (1021, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '41GBnN8m', '6445440'), - (1021, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '41GBnN8m', '6453951'), - (1021, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '41GBnN8m', '6461696'), - (1021, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '41GBnN8m', '6462129'), - (1021, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '41GBnN8m', '6463218'), - (1021, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '41GBnN8m', '6472181'), - (1021, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41GBnN8m', '6482693'), - (1021, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '41GBnN8m', '6484200'), - (1021, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '41GBnN8m', '6484680'), - (1021, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41GBnN8m', '6507741'), - (1021, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41GBnN8m', '6514659'), - (1021, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41GBnN8m', '6514660'), - (1021, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41GBnN8m', '6519103'), - (1021, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41GBnN8m', '6535681'), - (1021, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41GBnN8m', '6584747'), - (1021, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41GBnN8m', '6587097'), - (1021, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41GBnN8m', '6609022'), - (1021, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41GBnN8m', '6632757'), - (1021, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41GBnN8m', '6644187'), - (1021, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41GBnN8m', '6648951'), - (1021, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41GBnN8m', '6648952'), - (1021, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41GBnN8m', '6655401'), - (1021, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41GBnN8m', '6661585'), - (1021, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41GBnN8m', '6661588'), - (1021, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41GBnN8m', '6661589'), - (1021, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41GBnN8m', '6699906'), - (1021, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41GBnN8m', '6699913'), - (1021, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41GBnN8m', '6701109'), - (1021, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41GBnN8m', '6705219'), - (1021, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41GBnN8m', '6710153'), - (1021, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41GBnN8m', '6711552'), - (1021, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '41GBnN8m', '6711553'), - (1021, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41GBnN8m', '6722688'), - (1021, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41GBnN8m', '6730620'), - (1021, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '41GBnN8m', '6730642'), - (1021, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41GBnN8m', '6740364'), - (1021, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41GBnN8m', '6743829'), - (1021, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41GBnN8m', '7030380'), - (1021, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41GBnN8m', '7033677'), - (1021, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '41GBnN8m', '7035415'), - (1021, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '41GBnN8m', '7044715'), - (1021, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '41GBnN8m', '7050318'), - (1021, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '41GBnN8m', '7050319'), - (1021, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '41GBnN8m', '7050322'), - (1021, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '41GBnN8m', '7057804'), - (1021, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', '41GBnN8m', '7059866'), - (1021, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '41GBnN8m', '7072824'), - (1021, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '41GBnN8m', '7074348'), - (1021, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '41GBnN8m', '7089267'), - (1021, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '41GBnN8m', '7098747'), - (1021, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '41GBnN8m', '7113468'), - (1021, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '41GBnN8m', '7114856'), - (1021, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '41GBnN8m', '7114951'), - (1021, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '41GBnN8m', '7114955'), - (1021, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '41GBnN8m', '7114956'), - (1021, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '41GBnN8m', '7153615'), - (1021, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '41GBnN8m', '7159484'), - (1021, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '41GBnN8m', '7178446'), - (1022, 1379, 'not_attending', '2022-05-19 23:42:22', '2025-12-17 19:47:30', '4oMoxJwm', '5271449'), - (1022, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMoxJwm', '5365960'), - (1022, 1409, 'attending', '2022-05-18 22:24:41', '2025-12-17 19:47:30', '4oMoxJwm', '5367032'), - (1022, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMoxJwm', '5368973'), - (1022, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMoxJwm', '5378247'), - (1022, 1429, 'attending', '2022-05-30 18:26:04', '2025-12-17 19:47:30', '4oMoxJwm', '5388761'), - (1022, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4oMoxJwm', '5389605'), - (1022, 1442, 'attending', '2022-06-04 13:24:44', '2025-12-17 19:47:17', '4oMoxJwm', '5397265'), - (1022, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMoxJwm', '5403967'), - (1022, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMoxJwm', '5404786'), - (1022, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMoxJwm', '5405203'), - (1022, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMoxJwm', '5411699'), - (1022, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4oMoxJwm', '5412550'), - (1022, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMoxJwm', '5415046'), - (1022, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4oMoxJwm', '5422086'), - (1022, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4oMoxJwm', '5422406'), - (1022, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMoxJwm', '5424565'), - (1022, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMoxJwm', '5426882'), - (1022, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMoxJwm', '5427083'), - (1022, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '4oMoxJwm', '5441125'), - (1022, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4oMoxJwm', '5441126'), - (1022, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMoxJwm', '5441128'), - (1022, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMoxJwm', '5446643'), - (1022, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMoxJwm', '5453325'), - (1022, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMoxJwm', '5454516'), - (1022, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMoxJwm', '5454605'), - (1022, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMoxJwm', '5455037'), - (1022, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4oMoxJwm', '5461278'), - (1022, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMoxJwm', '5469480'), - (1022, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4oMoxJwm', '5471073'), - (1022, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMoxJwm', '5474663'), - (1022, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMoxJwm', '5482022'), - (1022, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMoxJwm', '5482793'), - (1022, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4oMoxJwm', '5488912'), - (1022, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4oMoxJwm', '5492192'), - (1022, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4oMoxJwm', '5493139'), - (1022, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4oMoxJwm', '5493200'), - (1022, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4oMoxJwm', '5502188'), - (1022, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4oMoxJwm', '5512862'), - (1022, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4oMoxJwm', '5513985'), - (1022, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMoxJwm', '6045684'), - (1023, 1259, 'attending', '2022-03-12 00:18:08', '2025-12-17 19:47:33', '41WV1yEm', '5132533'), - (1023, 1272, 'attending', '2022-03-15 22:36:43', '2025-12-17 19:47:25', '41WV1yEm', '5186582'), - (1023, 1273, 'attending', '2022-03-15 22:36:52', '2025-12-17 19:47:25', '41WV1yEm', '5186583'), - (1023, 1274, 'attending', '2022-03-15 22:36:48', '2025-12-17 19:47:26', '41WV1yEm', '5186585'), - (1023, 1281, 'maybe', '2022-03-17 22:39:33', '2025-12-17 19:47:27', '41WV1yEm', '5190437'), - (1023, 1284, 'attending', '2022-04-13 22:59:05', '2025-12-17 19:47:27', '41WV1yEm', '5195095'), - (1023, 1291, 'not_attending', '2022-04-03 01:35:15', '2025-12-17 19:47:25', '41WV1yEm', '5200458'), - (1023, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41WV1yEm', '5215989'), - (1023, 1307, 'not_attending', '2022-04-05 08:34:07', '2025-12-17 19:47:27', '41WV1yEm', '5223686'), - (1023, 1309, 'not_attending', '2022-04-07 06:19:09', '2025-12-17 19:47:26', '41WV1yEm', '5227432'), - (1023, 1318, 'not_attending', '2022-04-11 12:03:32', '2025-12-17 19:47:27', '41WV1yEm', '5238343'), - (1023, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '41WV1yEm', '5247467'), - (1023, 1354, 'not_attending', '2022-04-22 01:12:22', '2025-12-17 19:47:27', '41WV1yEm', '5252569'), - (1023, 1362, 'not_attending', '2022-04-28 22:25:27', '2025-12-17 19:47:28', '41WV1yEm', '5260800'), - (1023, 1374, 'maybe', '2022-05-03 07:23:26', '2025-12-17 19:47:28', '41WV1yEm', '5269930'), - (1023, 1375, 'attending', '2022-05-05 22:32:58', '2025-12-17 19:47:28', '41WV1yEm', '5269932'), - (1023, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41WV1yEm', '5271448'), - (1023, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '41WV1yEm', '5271449'), - (1023, 1380, 'maybe', '2022-05-28 08:18:41', '2025-12-17 19:47:30', '41WV1yEm', '5271450'), - (1023, 1383, 'attending', '2022-05-04 06:41:13', '2025-12-17 19:47:28', '41WV1yEm', '5276469'), - (1023, 1384, 'not_attending', '2022-05-05 22:29:08', '2025-12-17 19:47:28', '41WV1yEm', '5277078'), - (1023, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41WV1yEm', '5278159'), - (1023, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41WV1yEm', '5363695'), - (1023, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41WV1yEm', '5365960'), - (1023, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '41WV1yEm', '5368973'), - (1023, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41WV1yEm', '5378247'), - (1023, 1431, 'not_attending', '2022-06-03 22:06:23', '2025-12-17 19:47:31', '41WV1yEm', '5389605'), - (1023, 1442, 'not_attending', '2022-06-03 22:06:27', '2025-12-17 19:47:17', '41WV1yEm', '5397265'), - (1023, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WV1yEm', '5403967'), - (1023, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WV1yEm', '5404786'), - (1023, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WV1yEm', '5405203'), - (1023, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WV1yEm', '5411699'), - (1023, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WV1yEm', '5412550'), - (1023, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WV1yEm', '5415046'), - (1023, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WV1yEm', '5422086'), - (1023, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WV1yEm', '5422406'), - (1023, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WV1yEm', '5424565'), - (1023, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WV1yEm', '5426882'), - (1023, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WV1yEm', '5427083'), - (1023, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41WV1yEm', '5441125'), - (1023, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WV1yEm', '5441126'), - (1023, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WV1yEm', '5441128'), - (1023, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '41WV1yEm', '5441131'), - (1023, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41WV1yEm', '5441132'), - (1023, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WV1yEm', '5446643'), - (1023, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WV1yEm', '5453325'), - (1023, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WV1yEm', '5454516'), - (1023, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WV1yEm', '5454605'), - (1023, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WV1yEm', '5455037'), - (1023, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WV1yEm', '5461278'), - (1023, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WV1yEm', '5469480'), - (1023, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WV1yEm', '5471073'), - (1023, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41WV1yEm', '5474663'), - (1023, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WV1yEm', '5482022'), - (1023, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WV1yEm', '5482793'), - (1023, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WV1yEm', '5488912'), - (1023, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WV1yEm', '5492192'), - (1023, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WV1yEm', '5493139'), - (1023, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WV1yEm', '5493200'), - (1023, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WV1yEm', '5502188'), - (1023, 1608, 'attending', '2022-08-29 07:07:38', '2025-12-17 19:47:24', '41WV1yEm', '5505059'), - (1023, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41WV1yEm', '5509055'), - (1023, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WV1yEm', '5512862'), - (1023, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WV1yEm', '5513985'), - (1023, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '41WV1yEm', '5519981'), - (1023, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41WV1yEm', '5522550'), - (1023, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41WV1yEm', '5534683'), - (1023, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '41WV1yEm', '5537735'), - (1023, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41WV1yEm', '5540859'), - (1023, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41WV1yEm', '5546619'), - (1023, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41WV1yEm', '5555245'), - (1023, 1659, 'attending', '2022-09-23 01:35:16', '2025-12-17 19:47:11', '41WV1yEm', '5557747'), - (1023, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41WV1yEm', '5560255'), - (1023, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41WV1yEm', '5562906'), - (1023, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41WV1yEm', '5600604'), - (1023, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41WV1yEm', '5605544'), - (1023, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', '41WV1yEm', '5606737'), - (1023, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41WV1yEm', '5630960'), - (1023, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41WV1yEm', '5630961'), - (1023, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41WV1yEm', '5630962'), - (1023, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41WV1yEm', '5630966'), - (1023, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41WV1yEm', '5630967'), - (1023, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41WV1yEm', '5630968'), - (1023, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41WV1yEm', '5635406'), - (1023, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41WV1yEm', '5638765'), - (1023, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41WV1yEm', '5640097'), - (1023, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41WV1yEm', '5640843'), - (1023, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41WV1yEm', '5641521'), - (1023, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41WV1yEm', '5642818'), - (1023, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41WV1yEm', '5652395'), - (1023, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41WV1yEm', '5670445'), - (1023, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41WV1yEm', '5671637'), - (1023, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41WV1yEm', '5672329'), - (1023, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41WV1yEm', '5674057'), - (1023, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41WV1yEm', '5674060'), - (1023, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41WV1yEm', '5677461'), - (1023, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41WV1yEm', '5698046'), - (1023, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41WV1yEm', '5699760'), - (1023, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41WV1yEm', '5741601'), - (1023, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41WV1yEm', '5763458'), - (1023, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41WV1yEm', '5774172'), - (1023, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '41WV1yEm', '5818247'), - (1023, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41WV1yEm', '5819471'), - (1023, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41WV1yEm', '5827739'), - (1023, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41WV1yEm', '5844306'), - (1023, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41WV1yEm', '5850159'), - (1023, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41WV1yEm', '5858999'), - (1023, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41WV1yEm', '5871984'), - (1023, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41WV1yEm', '5876354'), - (1023, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41WV1yEm', '5880939'), - (1023, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41WV1yEm', '5887890'), - (1023, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41WV1yEm', '5888598'), - (1023, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41WV1yEm', '5893260'), - (1023, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WV1yEm', '6045684'), - (1024, 259, 'attending', '2021-05-14 03:22:26', '2025-12-17 19:47:46', 'VmyZvY1A', '3149490'), - (1024, 646, 'not_attending', '2021-05-14 06:14:34', '2025-12-17 19:47:46', 'VmyZvY1A', '3539921'), - (1024, 647, 'attending', '2021-05-17 06:36:36', '2025-12-17 19:47:46', 'VmyZvY1A', '3539922'), - (1024, 648, 'not_attending', '2021-05-24 23:13:37', '2025-12-17 19:47:47', 'VmyZvY1A', '3539923'), - (1024, 741, 'not_attending', '2021-05-20 06:24:48', '2025-12-17 19:47:46', 'VmyZvY1A', '3680618'), - (1024, 742, 'not_attending', '2021-06-17 07:08:01', '2025-12-17 19:47:48', 'VmyZvY1A', '3680622'), - (1024, 744, 'attending', '2021-05-20 06:31:38', '2025-12-17 19:47:47', 'VmyZvY1A', '3680624'), - (1024, 746, 'not_attending', '2021-07-07 23:01:51', '2025-12-17 19:47:39', 'VmyZvY1A', '3680626'), - (1024, 761, 'attending', '2021-05-14 19:05:19', '2025-12-17 19:47:46', 'VmyZvY1A', '3716041'), - (1024, 797, 'not_attending', '2021-05-20 06:30:34', '2025-12-17 19:47:47', 'VmyZvY1A', '3796195'), - (1024, 804, 'not_attending', '2021-05-20 06:29:51', '2025-12-17 19:47:47', 'VmyZvY1A', '3804775'), - (1024, 806, 'not_attending', '2021-05-14 06:14:08', '2025-12-17 19:47:46', 'VmyZvY1A', '3806392'), - (1024, 815, 'attending', '2021-05-28 04:17:35', '2025-12-17 19:47:47', 'VmyZvY1A', '3818136'), - (1024, 821, 'attending', '2021-05-28 06:23:45', '2025-12-17 19:47:47', 'VmyZvY1A', '3963965'), - (1024, 823, 'attending', '2021-06-19 21:23:52', '2025-12-17 19:47:48', 'VmyZvY1A', '3974109'), - (1024, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VmyZvY1A', '3975311'), - (1024, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VmyZvY1A', '3975312'), - (1024, 837, 'not_attending', '2021-06-17 07:07:51', '2025-12-17 19:47:48', 'VmyZvY1A', '3992545'), - (1024, 838, 'not_attending', '2021-06-09 06:35:30', '2025-12-17 19:47:47', 'VmyZvY1A', '3994992'), - (1024, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VmyZvY1A', '4014338'), - (1024, 848, 'not_attending', '2021-07-21 21:15:02', '2025-12-17 19:47:40', 'VmyZvY1A', '4015720'), - (1024, 866, 'not_attending', '2021-06-17 07:08:06', '2025-12-17 19:47:38', 'VmyZvY1A', '4020424'), - (1024, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'VmyZvY1A', '4021848'), - (1024, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmyZvY1A', '4136744'), - (1024, 870, 'not_attending', '2021-07-03 22:51:42', '2025-12-17 19:47:39', 'VmyZvY1A', '4136937'), - (1024, 871, 'not_attending', '2021-07-10 22:38:01', '2025-12-17 19:47:39', 'VmyZvY1A', '4136938'), - (1024, 872, 'not_attending', '2021-07-21 21:15:14', '2025-12-17 19:47:40', 'VmyZvY1A', '4136947'), - (1024, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'VmyZvY1A', '4210314'), - (1024, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VmyZvY1A', '4225444'), - (1024, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VmyZvY1A', '4239259'), - (1024, 900, 'not_attending', '2021-07-21 21:14:55', '2025-12-17 19:47:40', 'VmyZvY1A', '4240316'), - (1024, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'VmyZvY1A', '4240317'), - (1024, 902, 'not_attending', '2021-08-06 21:22:09', '2025-12-17 19:47:41', 'VmyZvY1A', '4240318'), - (1024, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'VmyZvY1A', '4240320'), - (1024, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VmyZvY1A', '4250163'), - (1024, 909, 'not_attending', '2021-07-10 22:37:43', '2025-12-17 19:47:39', 'VmyZvY1A', '4258187'), - (1024, 919, 'maybe', '2021-07-17 06:48:30', '2025-12-17 19:47:39', 'VmyZvY1A', '4275957'), - (1024, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'VmyZvY1A', '4277819'), - (1024, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'VmyZvY1A', '4301723'), - (1024, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VmyZvY1A', '4302093'), - (1024, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VmyZvY1A', '4304151'), - (1024, 943, 'not_attending', '2021-08-06 21:22:25', '2025-12-17 19:47:41', 'VmyZvY1A', '4310979'), - (1024, 944, 'not_attending', '2021-08-06 21:22:42', '2025-12-17 19:47:41', 'VmyZvY1A', '4310980'), - (1024, 966, 'not_attending', '2021-08-19 19:01:05', '2025-12-17 19:47:42', 'VmyZvY1A', '4356162'), - (1024, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VmyZvY1A', '4356801'), - (1024, 973, 'not_attending', '2021-08-19 19:02:10', '2025-12-17 19:47:42', 'VmyZvY1A', '4366186'), - (1024, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'VmyZvY1A', '4366187'), - (1024, 976, 'maybe', '2021-08-19 19:00:04', '2025-12-17 19:47:42', 'VmyZvY1A', '4373933'), - (1024, 978, 'not_attending', '2021-08-19 19:01:51', '2025-12-17 19:47:42', 'VmyZvY1A', '4378509'), - (1024, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'VmyZvY1A', '4420735'), - (1024, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'VmyZvY1A', '4420738'), - (1024, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'VmyZvY1A', '4420739'), - (1024, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'VmyZvY1A', '4420741'), - (1024, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'VmyZvY1A', '4420744'), - (1024, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'VmyZvY1A', '4420747'), - (1024, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'VmyZvY1A', '4420748'), - (1024, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'VmyZvY1A', '4420749'), - (1024, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VmyZvY1A', '4461883'), - (1024, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'VmyZvY1A', '4508342'), - (1024, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'VmyZvY1A', '4568602'), - (1024, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'VmyZvY1A', '4572153'), - (1024, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VmyZvY1A', '4585962'), - (1024, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VmyZvY1A', '4596356'), - (1024, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VmyZvY1A', '4598860'), - (1024, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'VmyZvY1A', '4598861'), - (1024, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'VmyZvY1A', '4602797'), - (1024, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'VmyZvY1A', '4637896'), - (1024, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'VmyZvY1A', '4642994'), - (1024, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'VmyZvY1A', '4642995'), - (1024, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'VmyZvY1A', '4642996'), - (1024, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'VmyZvY1A', '4642997'), - (1024, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'VmyZvY1A', '4645687'), - (1024, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'VmyZvY1A', '4645698'), - (1024, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'VmyZvY1A', '4645704'), - (1024, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'VmyZvY1A', '4645705'), - (1024, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VmyZvY1A', '4668385'), - (1024, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VmyZvY1A', '4694407'), - (1024, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'VmyZvY1A', '4706262'), - (1024, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'VmyZvY1A', '4736497'), - (1024, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'VmyZvY1A', '4736499'), - (1024, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'VmyZvY1A', '4736500'), - (1024, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'VmyZvY1A', '4736503'), - (1024, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'VmyZvY1A', '4736504'), - (1024, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VmyZvY1A', '4746789'), - (1024, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'VmyZvY1A', '4753929'), - (1024, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VmyZvY1A', '5038850'), - (1024, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VmyZvY1A', '5045826'), - (1024, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VmyZvY1A', '5132533'), - (1024, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'VmyZvY1A', '5186582'), - (1024, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'VmyZvY1A', '5186583'), - (1024, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'VmyZvY1A', '5186585'), - (1024, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'VmyZvY1A', '5190437'), - (1024, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmyZvY1A', '6045684'), - (1025, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd56zRMOm', '6445440'), - (1025, 2274, 'not_attending', '2023-10-04 19:10:55', '2025-12-17 19:46:45', 'd56zRMOm', '6448287'), - (1025, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd56zRMOm', '6453951'), - (1025, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd56zRMOm', '6461696'), - (1025, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd56zRMOm', '6462129'), - (1025, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd56zRMOm', '6463218'), - (1025, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd56zRMOm', '6472181'), - (1025, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd56zRMOm', '6482693'), - (1025, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd56zRMOm', '6484200'), - (1025, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd56zRMOm', '6484680'), - (1025, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd56zRMOm', '6507741'), - (1025, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd56zRMOm', '6514659'), - (1025, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd56zRMOm', '6514660'), - (1025, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd56zRMOm', '6519103'), - (1025, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd56zRMOm', '6535681'), - (1025, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'd56zRMOm', '6545076'), - (1025, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd56zRMOm', '6584747'), - (1025, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd56zRMOm', '6587097'), - (1025, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd56zRMOm', '6609022'), - (1025, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd56zRMOm', '6632757'), - (1025, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd56zRMOm', '6644187'), - (1025, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd56zRMOm', '6648951'), - (1025, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd56zRMOm', '6648952'), - (1025, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'd56zRMOm', '6651141'), - (1025, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd56zRMOm', '6655401'), - (1025, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd56zRMOm', '6661585'), - (1025, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd56zRMOm', '6661588'), - (1025, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd56zRMOm', '6661589'), - (1025, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd56zRMOm', '6699906'), - (1025, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd56zRMOm', '6699913'), - (1025, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd56zRMOm', '6701109'), - (1025, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd56zRMOm', '6705219'), - (1025, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd56zRMOm', '6710153'), - (1025, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd56zRMOm', '6711552'), - (1025, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd56zRMOm', '6711553'), - (1025, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd56zRMOm', '6722688'), - (1025, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd56zRMOm', '6730620'), - (1025, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd56zRMOm', '6730642'), - (1025, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd56zRMOm', '6740364'), - (1025, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd56zRMOm', '6743829'), - (1025, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd56zRMOm', '7030380'), - (1025, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd56zRMOm', '7033677'), - (1025, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd56zRMOm', '7035415'), - (1025, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd56zRMOm', '7044715'), - (1025, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd56zRMOm', '7050318'), - (1025, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd56zRMOm', '7050319'), - (1025, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd56zRMOm', '7050322'), - (1025, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd56zRMOm', '7057804'), - (1025, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd56zRMOm', '7072824'), - (1025, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd56zRMOm', '7074348'), - (1025, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd56zRMOm', '7089267'), - (1025, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd56zRMOm', '7098747'), - (1025, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd56zRMOm', '7113468'), - (1025, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd56zRMOm', '7114856'), - (1025, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd56zRMOm', '7114951'), - (1025, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd56zRMOm', '7114955'), - (1025, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd56zRMOm', '7114956'), - (1025, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd56zRMOm', '7153615'), - (1025, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd56zRMOm', '7159484'), - (1025, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd56zRMOm', '7178446'), - (1026, 1010, 'attending', '2021-11-05 22:52:44', '2025-12-17 19:47:36', '4kRQerLA', '4438812'), - (1026, 1011, 'not_attending', '2021-10-29 11:20:28', '2025-12-17 19:47:36', '4kRQerLA', '4438814'), - (1026, 1012, 'not_attending', '2021-10-30 15:35:52', '2025-12-17 19:47:36', '4kRQerLA', '4438816'), - (1026, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4kRQerLA', '4596356'), - (1026, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4kRQerLA', '4598860'), - (1026, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4kRQerLA', '4598861'), - (1026, 1099, 'maybe', '2021-11-06 04:38:33', '2025-12-17 19:47:36', '4kRQerLA', '4602797'), - (1026, 1109, 'attending', '2021-11-13 03:39:55', '2025-12-17 19:47:37', '4kRQerLA', '4635221'), - (1026, 1110, 'attending', '2021-11-13 03:39:58', '2025-12-17 19:47:37', '4kRQerLA', '4635224'), - (1026, 1113, 'not_attending', '2021-11-27 19:33:38', '2025-12-17 19:47:37', '4kRQerLA', '4635421'), - (1026, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4kRQerLA', '4637896'), - (1026, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4kRQerLA', '4642994'), - (1026, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4kRQerLA', '4642995'), - (1026, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4kRQerLA', '4642996'), - (1026, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4kRQerLA', '4642997'), - (1026, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4kRQerLA', '4645687'), - (1026, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4kRQerLA', '4645698'), - (1026, 1128, 'attending', '2021-11-20 22:59:46', '2025-12-17 19:47:37', '4kRQerLA', '4645704'), - (1026, 1129, 'attending', '2021-11-21 03:51:03', '2025-12-17 19:47:37', '4kRQerLA', '4645705'), - (1026, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4kRQerLA', '4668385'), - (1026, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4kRQerLA', '4694407'), - (1026, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '4kRQerLA', '4706262'), - (1026, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4kRQerLA', '4736497'), - (1026, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4kRQerLA', '4736499'), - (1026, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4kRQerLA', '4736500'), - (1026, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kRQerLA', '4736503'), - (1026, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kRQerLA', '4736504'), - (1026, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4kRQerLA', '4746789'), - (1026, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4kRQerLA', '4753929'), - (1026, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4kRQerLA', '5038850'), - (1026, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4kRQerLA', '5045826'), - (1026, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kRQerLA', '5132533'), - (1026, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4kRQerLA', '5186582'), - (1026, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4kRQerLA', '5186583'), - (1026, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4kRQerLA', '5186585'), - (1026, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4kRQerLA', '5190437'), - (1026, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4kRQerLA', '5215989'), - (1026, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kRQerLA', '6045684'), - (1027, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'N4Er0JRd', '3149491'), - (1027, 395, 'not_attending', '2021-06-07 16:53:08', '2025-12-17 19:47:47', 'N4Er0JRd', '3236450'), - (1027, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'N4Er0JRd', '3975312'), - (1027, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'N4Er0JRd', '4014338'), - (1027, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4Er0JRd', '6045684'), - (1028, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd8b7vrVA', '5630960'), - (1028, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd8b7vrVA', '5630961'), - (1028, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd8b7vrVA', '5630962'), - (1028, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd8b7vrVA', '5630966'), - (1028, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'd8b7vrVA', '5638765'), - (1028, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd8b7vrVA', '5640097'), - (1028, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd8b7vrVA', '5652395'), - (1028, 1752, 'attending', '2022-10-15 02:50:43', '2025-12-17 19:47:12', 'd8b7vrVA', '5653503'), - (1028, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd8b7vrVA', '5671637'), - (1028, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd8b7vrVA', '5672329'), - (1028, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd8b7vrVA', '5674057'), - (1028, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd8b7vrVA', '5674060'), - (1028, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd8b7vrVA', '5677461'), - (1028, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd8b7vrVA', '5698046'), - (1028, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'd8b7vrVA', '5699760'), - (1028, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8b7vrVA', '6045684'), - (1029, 401, 'attending', '2021-05-07 22:57:01', '2025-12-17 19:47:46', 'R40yKWEd', '3236456'), - (1029, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'R40yKWEd', '3539920'), - (1029, 646, 'maybe', '2021-05-12 17:40:36', '2025-12-17 19:47:46', 'R40yKWEd', '3539921'), - (1029, 647, 'attending', '2021-05-21 02:41:05', '2025-12-17 19:47:46', 'R40yKWEd', '3539922'), - (1029, 648, 'attending', '2021-05-26 16:57:59', '2025-12-17 19:47:47', 'R40yKWEd', '3539923'), - (1029, 805, 'maybe', '2021-06-07 19:24:44', '2025-12-17 19:47:47', 'R40yKWEd', '3804777'), - (1029, 808, 'attending', '2021-05-20 17:10:09', '2025-12-17 19:47:46', 'R40yKWEd', '3807358'), - (1029, 815, 'not_attending', '2021-05-27 15:47:13', '2025-12-17 19:47:47', 'R40yKWEd', '3818136'), - (1029, 818, 'attending', '2021-05-27 15:47:42', '2025-12-17 19:47:47', 'R40yKWEd', '3833015'), - (1029, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40yKWEd', '3974109'), - (1029, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'R40yKWEd', '3975311'), - (1029, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40yKWEd', '3975312'), - (1029, 834, 'not_attending', '2021-06-10 22:46:15', '2025-12-17 19:47:47', 'R40yKWEd', '3990439'), - (1029, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'R40yKWEd', '3994992'), - (1029, 841, 'attending', '2021-06-14 19:39:34', '2025-12-17 19:47:48', 'R40yKWEd', '4007434'), - (1029, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40yKWEd', '4014338'), - (1029, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'R40yKWEd', '4021848'), - (1029, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40yKWEd', '4136744'), - (1029, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40yKWEd', '4136937'), - (1029, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40yKWEd', '4136938'), - (1029, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40yKWEd', '4136947'), - (1029, 873, 'attending', '2021-06-16 16:17:49', '2025-12-17 19:47:48', 'R40yKWEd', '4138297'), - (1029, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'R40yKWEd', '4210314'), - (1029, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40yKWEd', '4225444'), - (1029, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40yKWEd', '4239259'), - (1029, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'R40yKWEd', '4240316'), - (1029, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'R40yKWEd', '4240317'), - (1029, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'R40yKWEd', '4240318'), - (1029, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'R40yKWEd', '4240320'), - (1029, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40yKWEd', '4250163'), - (1029, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'R40yKWEd', '4275957'), - (1029, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'R40yKWEd', '4277819'), - (1029, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'R40yKWEd', '4301723'), - (1029, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'R40yKWEd', '4302093'), - (1029, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'R40yKWEd', '4304151'), - (1029, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'R40yKWEd', '4345519'), - (1029, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'R40yKWEd', '4358025'), - (1029, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'R40yKWEd', '4366186'), - (1029, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'R40yKWEd', '4366187'), - (1029, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40yKWEd', '6045684'), - (1030, 1175, 'attending', '2022-01-22 23:36:40', '2025-12-17 19:47:32', 'mbqWlw6d', '4736497'), - (1030, 1176, 'maybe', '2022-02-05 23:58:36', '2025-12-17 19:47:32', 'mbqWlw6d', '4736498'), - (1030, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mbqWlw6d', '4736499'), - (1030, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mbqWlw6d', '4736500'), - (1030, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mbqWlw6d', '4736503'), - (1030, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mbqWlw6d', '4736504'), - (1030, 1211, 'maybe', '2022-01-27 11:29:43', '2025-12-17 19:47:32', 'mbqWlw6d', '4780754'), - (1030, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mbqWlw6d', '5038850'), - (1030, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mbqWlw6d', '5045826'), - (1030, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mbqWlw6d', '5132533'), - (1030, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mbqWlw6d', '6045684'), - (1031, 1125, 'attending', '2021-12-18 12:00:53', '2025-12-17 19:47:31', 'NmLjz6g4', '4644027'), - (1031, 1171, 'attending', '2022-01-02 04:33:58', '2025-12-17 19:47:31', 'NmLjz6g4', '4733292'), - (1031, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmLjz6g4', '4736497'), - (1031, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmLjz6g4', '4736500'), - (1031, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLjz6g4', '4746789'), - (1031, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmLjz6g4', '4753929'), - (1031, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLjz6g4', '6045684'), - (1032, 2199, 'not_attending', '2023-08-16 08:29:32', '2025-12-17 19:46:55', 'd2wKPkZm', '6359849'), - (1032, 2203, 'attending', '2023-08-08 02:39:09', '2025-12-17 19:46:55', 'd2wKPkZm', '6361524'), - (1032, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'd2wKPkZm', '6361709'), - (1032, 2209, 'attending', '2023-08-22 00:33:33', '2025-12-17 19:46:55', 'd2wKPkZm', '6361710'), - (1032, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd2wKPkZm', '6361711'), - (1032, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd2wKPkZm', '6361712'), - (1032, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd2wKPkZm', '6361713'), - (1032, 2215, 'attending', '2023-08-11 20:36:50', '2025-12-17 19:46:55', 'd2wKPkZm', '6363479'), - (1032, 2232, 'not_attending', '2023-08-25 22:28:26', '2025-12-17 19:46:55', 'd2wKPkZm', '6374818'), - (1032, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd2wKPkZm', '6382573'), - (1032, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd2wKPkZm', '6388604'), - (1032, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd2wKPkZm', '6394629'), - (1032, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd2wKPkZm', '6394631'), - (1032, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd2wKPkZm', '6440863'), - (1032, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd2wKPkZm', '6445440'), - (1032, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd2wKPkZm', '6453951'), - (1032, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd2wKPkZm', '6461696'), - (1032, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd2wKPkZm', '6462129'), - (1032, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd2wKPkZm', '6463218'), - (1032, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd2wKPkZm', '6472181'), - (1032, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd2wKPkZm', '6482693'), - (1032, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd2wKPkZm', '6484200'), - (1032, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd2wKPkZm', '6484680'), - (1032, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd2wKPkZm', '6507741'), - (1032, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd2wKPkZm', '6514659'), - (1032, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd2wKPkZm', '6514660'), - (1032, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd2wKPkZm', '6519103'), - (1032, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd2wKPkZm', '6535681'), - (1032, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd2wKPkZm', '6584747'), - (1032, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd2wKPkZm', '6587097'), - (1032, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd2wKPkZm', '6609022'), - (1032, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd2wKPkZm', '6632757'), - (1032, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd2wKPkZm', '6644187'), - (1032, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd2wKPkZm', '6648951'), - (1032, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd2wKPkZm', '6648952'), - (1032, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd2wKPkZm', '6655401'), - (1032, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd2wKPkZm', '6661585'), - (1032, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd2wKPkZm', '6661588'), - (1032, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd2wKPkZm', '6661589'), - (1032, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd2wKPkZm', '6699906'), - (1032, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd2wKPkZm', '6699913'), - (1032, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd2wKPkZm', '6701109'), - (1032, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd2wKPkZm', '6705219'), - (1032, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd2wKPkZm', '6710153'), - (1032, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd2wKPkZm', '6711552'), - (1032, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd2wKPkZm', '6711553'), - (1032, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd2wKPkZm', '6722688'), - (1032, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd2wKPkZm', '6730620'), - (1032, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd2wKPkZm', '6730642'), - (1032, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd2wKPkZm', '6740364'), - (1032, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd2wKPkZm', '6743829'), - (1032, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd2wKPkZm', '7030380'), - (1032, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd2wKPkZm', '7033677'), - (1032, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd2wKPkZm', '7035415'), - (1032, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd2wKPkZm', '7044715'), - (1032, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd2wKPkZm', '7050318'), - (1032, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd2wKPkZm', '7050319'), - (1032, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd2wKPkZm', '7050322'), - (1032, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd2wKPkZm', '7057804'), - (1032, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'd2wKPkZm', '7059866'), - (1032, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd2wKPkZm', '7072824'), - (1032, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd2wKPkZm', '7074348'), - (1032, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd2wKPkZm', '7089267'), - (1032, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd2wKPkZm', '7098747'), - (1032, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd2wKPkZm', '7113468'), - (1032, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd2wKPkZm', '7114856'), - (1032, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd2wKPkZm', '7114951'), - (1032, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd2wKPkZm', '7114955'), - (1032, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd2wKPkZm', '7114956'), - (1032, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd2wKPkZm', '7153615'), - (1032, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd2wKPkZm', '7159484'), - (1032, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd2wKPkZm', '7178446'), - (1033, 2075, 'not_attending', '2023-07-01 12:40:40', '2025-12-17 19:46:50', 'dJNwVJ6d', '6107314'), - (1033, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dJNwVJ6d', '6176439'), - (1033, 2125, 'attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'dJNwVJ6d', '6177485'), - (1033, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dJNwVJ6d', '6182410'), - (1033, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dJNwVJ6d', '6185812'), - (1033, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dJNwVJ6d', '6187651'), - (1033, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dJNwVJ6d', '6187963'), - (1033, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dJNwVJ6d', '6187964'), - (1033, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dJNwVJ6d', '6187966'), - (1033, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dJNwVJ6d', '6187967'), - (1033, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dJNwVJ6d', '6187969'), - (1033, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dJNwVJ6d', '6334878'), - (1033, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dJNwVJ6d', '6337236'), - (1033, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dJNwVJ6d', '6337970'), - (1033, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dJNwVJ6d', '6338308'), - (1033, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dJNwVJ6d', '6340845'), - (1033, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dJNwVJ6d', '6341710'), - (1033, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dJNwVJ6d', '6342044'), - (1033, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dJNwVJ6d', '6342298'), - (1033, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dJNwVJ6d', '6343294'), - (1033, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dJNwVJ6d', '6347034'), - (1033, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dJNwVJ6d', '6347056'), - (1033, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dJNwVJ6d', '6353830'), - (1033, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dJNwVJ6d', '6353831'), - (1033, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dJNwVJ6d', '6357867'), - (1033, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dJNwVJ6d', '6358652'), - (1033, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dJNwVJ6d', '6361709'), - (1033, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dJNwVJ6d', '6361710'), - (1033, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dJNwVJ6d', '6361711'), - (1033, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dJNwVJ6d', '6361712'), - (1033, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dJNwVJ6d', '6361713'), - (1033, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dJNwVJ6d', '6382573'), - (1033, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dJNwVJ6d', '6388604'), - (1033, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dJNwVJ6d', '6394629'), - (1033, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dJNwVJ6d', '6394631'), - (1033, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dJNwVJ6d', '6440863'), - (1033, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dJNwVJ6d', '6445440'), - (1033, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dJNwVJ6d', '6453951'), - (1033, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dJNwVJ6d', '6461696'), - (1033, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dJNwVJ6d', '6462129'), - (1033, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dJNwVJ6d', '6463218'), - (1033, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dJNwVJ6d', '6472181'), - (1033, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dJNwVJ6d', '6482693'), - (1033, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dJNwVJ6d', '6484200'), - (1033, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dJNwVJ6d', '6484680'), - (1033, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dJNwVJ6d', '6507741'), - (1033, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dJNwVJ6d', '6514659'), - (1033, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dJNwVJ6d', '6514660'), - (1033, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dJNwVJ6d', '6519103'), - (1033, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dJNwVJ6d', '6535681'), - (1033, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dJNwVJ6d', '6584747'), - (1033, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dJNwVJ6d', '6587097'), - (1033, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dJNwVJ6d', '6609022'), - (1033, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dJNwVJ6d', '6632757'), - (1033, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dJNwVJ6d', '6644187'), - (1033, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dJNwVJ6d', '6648951'), - (1033, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dJNwVJ6d', '6648952'), - (1033, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dJNwVJ6d', '6655401'), - (1033, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dJNwVJ6d', '6661585'), - (1033, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dJNwVJ6d', '6661588'), - (1033, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dJNwVJ6d', '6661589'), - (1033, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dJNwVJ6d', '6699906'), - (1033, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dJNwVJ6d', '6699913'), - (1033, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dJNwVJ6d', '6701109'), - (1033, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dJNwVJ6d', '6705219'), - (1033, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dJNwVJ6d', '6710153'), - (1033, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dJNwVJ6d', '6711552'), - (1033, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dJNwVJ6d', '6711553'), - (1033, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dJNwVJ6d', '6722688'), - (1033, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dJNwVJ6d', '6730620'), - (1033, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dJNwVJ6d', '6730642'), - (1033, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dJNwVJ6d', '6740364'), - (1033, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dJNwVJ6d', '6743829'), - (1033, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dJNwVJ6d', '7030380'), - (1033, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dJNwVJ6d', '7033677'), - (1033, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dJNwVJ6d', '7035415'), - (1033, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dJNwVJ6d', '7044715'), - (1033, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dJNwVJ6d', '7050318'), - (1033, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dJNwVJ6d', '7050319'), - (1033, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dJNwVJ6d', '7050322'), - (1033, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dJNwVJ6d', '7057804'), - (1033, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dJNwVJ6d', '7059866'), - (1033, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dJNwVJ6d', '7072824'), - (1033, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dJNwVJ6d', '7074348'), - (1033, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dJNwVJ6d', '7089267'), - (1033, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dJNwVJ6d', '7098747'), - (1033, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dJNwVJ6d', '7113468'), - (1033, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dJNwVJ6d', '7114856'), - (1033, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dJNwVJ6d', '7114951'), - (1033, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dJNwVJ6d', '7114955'), - (1033, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dJNwVJ6d', '7114956'), - (1033, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dJNwVJ6d', '7153615'), - (1033, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dJNwVJ6d', '7159484'), - (1033, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dJNwVJ6d', '7178446'), - (1034, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v8qbebm', '6045684'), - (1035, 857, 'maybe', '2021-11-24 04:52:30', '2025-12-17 19:47:37', '41oPGr8m', '4015731'), - (1035, 1010, 'attending', '2021-11-05 22:58:48', '2025-12-17 19:47:36', '41oPGr8m', '4438812'), - (1035, 1012, 'not_attending', '2021-11-06 05:12:21', '2025-12-17 19:47:36', '41oPGr8m', '4438816'), - (1035, 1049, 'attending', '2022-01-22 22:33:29', '2025-12-17 19:47:32', '41oPGr8m', '4496614'), - (1035, 1050, 'maybe', '2022-01-27 07:33:40', '2025-12-17 19:47:32', '41oPGr8m', '4496615'), - (1035, 1051, 'attending', '2022-02-05 21:32:24', '2025-12-17 19:47:32', '41oPGr8m', '4496616'), - (1035, 1052, 'attending', '2022-01-14 03:16:07', '2025-12-17 19:47:31', '41oPGr8m', '4496617'), - (1035, 1053, 'attending', '2022-02-19 22:48:28', '2025-12-17 19:47:32', '41oPGr8m', '4496618'), - (1035, 1054, 'attending', '2022-03-19 21:16:59', '2025-12-17 19:47:25', '41oPGr8m', '4496619'), - (1035, 1056, 'attending', '2022-01-08 22:40:57', '2025-12-17 19:47:31', '41oPGr8m', '4496622'), - (1035, 1058, 'attending', '2022-02-26 22:20:59', '2025-12-17 19:47:33', '41oPGr8m', '4496625'), - (1035, 1061, 'maybe', '2022-02-08 20:20:56', '2025-12-17 19:47:32', '41oPGr8m', '4496628'), - (1035, 1062, 'maybe', '2022-03-03 04:38:13', '2025-12-17 19:47:33', '41oPGr8m', '4496629'), - (1035, 1085, 'maybe', '2021-12-22 18:11:07', '2025-12-17 19:47:31', '41oPGr8m', '4568542'), - (1035, 1099, 'attending', '2021-11-05 04:23:50', '2025-12-17 19:47:36', '41oPGr8m', '4602797'), - (1035, 1108, 'maybe', '2021-11-24 03:16:12', '2025-12-17 19:47:37', '41oPGr8m', '4632276'), - (1035, 1109, 'attending', '2021-11-20 21:49:58', '2025-12-17 19:47:37', '41oPGr8m', '4635221'), - (1035, 1110, 'attending', '2021-11-20 21:49:51', '2025-12-17 19:47:37', '41oPGr8m', '4635224'), - (1035, 1111, 'not_attending', '2021-12-06 09:09:28', '2025-12-17 19:47:31', '41oPGr8m', '4635279'), - (1035, 1112, 'attending', '2021-12-04 05:31:23', '2025-12-17 19:47:37', '41oPGr8m', '4635420'), - (1035, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '41oPGr8m', '4637896'), - (1035, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '41oPGr8m', '4642994'), - (1035, 1117, 'attending', '2021-12-08 23:39:55', '2025-12-17 19:47:37', '41oPGr8m', '4642995'), - (1035, 1118, 'attending', '2021-12-15 21:54:32', '2025-12-17 19:47:38', '41oPGr8m', '4642996'), - (1035, 1119, 'attending', '2021-12-22 18:10:37', '2025-12-17 19:47:31', '41oPGr8m', '4642997'), - (1035, 1126, 'attending', '2021-12-07 00:09:08', '2025-12-17 19:47:38', '41oPGr8m', '4645687'), - (1035, 1127, 'maybe', '2021-12-12 20:35:27', '2025-12-17 19:47:38', '41oPGr8m', '4645698'), - (1035, 1128, 'attending', '2021-11-20 21:50:02', '2025-12-17 19:47:37', '41oPGr8m', '4645704'), - (1035, 1129, 'attending', '2021-11-25 18:26:49', '2025-12-17 19:47:37', '41oPGr8m', '4645705'), - (1035, 1130, 'attending', '2021-12-04 15:12:59', '2025-12-17 19:47:37', '41oPGr8m', '4658824'), - (1035, 1131, 'attending', '2021-12-07 00:18:43', '2025-12-17 19:47:31', '41oPGr8m', '4658825'), - (1035, 1132, 'maybe', '2021-11-22 00:17:06', '2025-12-17 19:47:37', '41oPGr8m', '4660657'), - (1035, 1133, 'attending', '2021-11-24 00:40:18', '2025-12-17 19:47:37', '41oPGr8m', '4661671'), - (1035, 1134, 'attending', '2021-11-25 00:22:19', '2025-12-17 19:47:37', '41oPGr8m', '4668385'), - (1035, 1139, 'maybe', '2021-12-01 22:22:26', '2025-12-17 19:47:37', '41oPGr8m', '4675604'), - (1035, 1140, 'attending', '2021-12-04 01:19:59', '2025-12-17 19:47:37', '41oPGr8m', '4679701'), - (1035, 1142, 'attending', '2021-12-06 09:09:45', '2025-12-17 19:47:37', '41oPGr8m', '4681923'), - (1035, 1143, 'attending', '2021-12-01 22:21:11', '2025-12-17 19:47:37', '41oPGr8m', '4683667'), - (1035, 1145, 'attending', '2021-12-06 18:14:32', '2025-12-17 19:47:38', '41oPGr8m', '4691157'), - (1035, 1146, 'attending', '2021-12-10 21:18:01', '2025-12-17 19:47:38', '41oPGr8m', '4692841'), - (1035, 1147, 'maybe', '2021-12-07 00:18:28', '2025-12-17 19:47:38', '41oPGr8m', '4692842'), - (1035, 1148, 'maybe', '2021-12-07 00:18:34', '2025-12-17 19:47:31', '41oPGr8m', '4692843'), - (1035, 1149, 'maybe', '2021-12-10 21:18:33', '2025-12-17 19:47:38', '41oPGr8m', '4694407'), - (1035, 1150, 'attending', '2021-12-16 19:48:25', '2025-12-17 19:47:38', '41oPGr8m', '4706262'), - (1035, 1151, 'maybe', '2021-12-27 23:37:14', '2025-12-17 19:47:31', '41oPGr8m', '4708704'), - (1035, 1155, 'maybe', '2021-12-18 20:15:47', '2025-12-17 19:47:31', '41oPGr8m', '4715119'), - (1035, 1156, 'attending', '2021-12-18 21:32:31', '2025-12-17 19:47:31', '41oPGr8m', '4715207'), - (1035, 1158, 'maybe', '2021-12-19 01:24:44', '2025-12-17 19:47:31', '41oPGr8m', '4715311'), - (1035, 1159, 'attending', '2022-01-05 00:36:09', '2025-12-17 19:47:31', '41oPGr8m', '4717532'), - (1035, 1162, 'not_attending', '2022-01-08 00:25:22', '2025-12-17 19:47:31', '41oPGr8m', '4718771'), - (1035, 1163, 'maybe', '2021-12-27 23:37:30', '2025-12-17 19:47:31', '41oPGr8m', '4724206'), - (1035, 1164, 'maybe', '2021-12-27 23:37:02', '2025-12-17 19:47:31', '41oPGr8m', '4724208'), - (1035, 1165, 'maybe', '2021-12-27 23:37:07', '2025-12-17 19:47:31', '41oPGr8m', '4724210'), - (1035, 1166, 'maybe', '2022-01-03 02:07:16', '2025-12-17 19:47:31', '41oPGr8m', '4725109'), - (1035, 1170, 'maybe', '2022-01-03 02:07:06', '2025-12-17 19:47:31', '41oPGr8m', '4731045'), - (1035, 1173, 'attending', '2022-01-08 22:40:54', '2025-12-17 19:47:31', '41oPGr8m', '4736495'), - (1035, 1174, 'attending', '2022-01-14 03:16:04', '2025-12-17 19:47:31', '41oPGr8m', '4736496'), - (1035, 1175, 'attending', '2022-01-21 21:42:51', '2025-12-17 19:47:32', '41oPGr8m', '4736497'), - (1035, 1176, 'attending', '2022-01-31 21:31:20', '2025-12-17 19:47:32', '41oPGr8m', '4736498'), - (1035, 1177, 'attending', '2022-02-11 23:04:01', '2025-12-17 19:47:32', '41oPGr8m', '4736499'), - (1035, 1178, 'attending', '2022-01-29 21:45:45', '2025-12-17 19:47:32', '41oPGr8m', '4736500'), - (1035, 1179, 'attending', '2022-02-15 19:37:26', '2025-12-17 19:47:32', '41oPGr8m', '4736501'), - (1035, 1180, 'attending', '2022-02-26 22:21:06', '2025-12-17 19:47:33', '41oPGr8m', '4736502'), - (1035, 1181, 'attending', '2022-03-05 23:25:25', '2025-12-17 19:47:33', '41oPGr8m', '4736503'), - (1035, 1182, 'attending', '2022-03-06 10:06:43', '2025-12-17 19:47:33', '41oPGr8m', '4736504'), - (1035, 1185, 'maybe', '2022-01-09 05:48:32', '2025-12-17 19:47:31', '41oPGr8m', '4746789'), - (1035, 1188, 'not_attending', '2022-01-17 22:31:00', '2025-12-17 19:47:32', '41oPGr8m', '4753929'), - (1035, 1193, 'maybe', '2022-01-20 09:31:31', '2025-12-17 19:47:32', '41oPGr8m', '4759563'), - (1035, 1196, 'maybe', '2022-01-21 21:42:32', '2025-12-17 19:47:32', '41oPGr8m', '4765583'), - (1035, 1198, 'attending', '2022-01-24 23:07:36', '2025-12-17 19:47:32', '41oPGr8m', '4766801'), - (1035, 1199, 'attending', '2022-01-24 23:11:53', '2025-12-17 19:47:32', '41oPGr8m', '4766802'), - (1035, 1203, 'not_attending', '2022-01-23 22:48:06', '2025-12-17 19:47:32', '41oPGr8m', '4773535'), - (1035, 1204, 'not_attending', '2022-02-11 23:04:17', '2025-12-17 19:47:32', '41oPGr8m', '4773576'), - (1035, 1208, 'maybe', '2022-01-25 01:02:29', '2025-12-17 19:47:32', '41oPGr8m', '4774419'), - (1035, 1215, 'attending', '2022-02-25 23:59:01', '2025-12-17 19:47:33', '41oPGr8m', '4780763'), - (1035, 1221, 'attending', '2022-01-29 22:02:02', '2025-12-17 19:47:32', '41oPGr8m', '4790261'), - (1035, 1223, 'attending', '2022-02-05 21:28:30', '2025-12-17 19:47:32', '41oPGr8m', '5015635'), - (1035, 1225, 'attending', '2022-02-04 18:19:29', '2025-12-17 19:47:32', '41oPGr8m', '5019063'), - (1035, 1227, 'maybe', '2022-02-10 17:35:43', '2025-12-17 19:47:32', '41oPGr8m', '5027602'), - (1035, 1228, 'not_attending', '2022-02-11 23:03:55', '2025-12-17 19:47:32', '41oPGr8m', '5028238'), - (1035, 1229, 'maybe', '2022-02-12 20:29:59', '2025-12-17 19:47:32', '41oPGr8m', '5034963'), - (1035, 1230, 'maybe', '2022-02-08 20:20:26', '2025-12-17 19:47:32', '41oPGr8m', '5037632'), - (1035, 1231, 'not_attending', '2022-02-12 20:30:22', '2025-12-17 19:47:33', '41oPGr8m', '5037637'), - (1035, 1232, 'attending', '2022-02-09 23:26:08', '2025-12-17 19:47:32', '41oPGr8m', '5038850'), - (1035, 1235, 'not_attending', '2022-02-12 20:30:29', '2025-12-17 19:47:32', '41oPGr8m', '5044505'), - (1035, 1236, 'not_attending', '2022-02-15 19:37:09', '2025-12-17 19:47:32', '41oPGr8m', '5045826'), - (1035, 1239, 'attending', '2022-03-02 21:19:34', '2025-12-17 19:47:33', '41oPGr8m', '5052238'), - (1035, 1240, 'attending', '2022-03-16 15:46:04', '2025-12-17 19:47:33', '41oPGr8m', '5052239'), - (1035, 1241, 'maybe', '2022-03-23 16:49:13', '2025-12-17 19:47:25', '41oPGr8m', '5052240'), - (1035, 1243, 'attending', '2022-03-06 05:48:24', '2025-12-17 19:47:33', '41oPGr8m', '5058336'), - (1035, 1244, 'attending', '2022-02-21 04:29:42', '2025-12-17 19:47:33', '41oPGr8m', '5060490'), - (1035, 1245, 'attending', '2022-03-02 21:19:37', '2025-12-17 19:47:33', '41oPGr8m', '5061301'), - (1035, 1249, 'attending', '2022-03-09 20:22:57', '2025-12-17 19:47:33', '41oPGr8m', '5068530'), - (1035, 1253, 'maybe', '2022-02-28 20:22:49', '2025-12-17 19:47:33', '41oPGr8m', '5129122'), - (1035, 1254, 'maybe', '2022-03-03 04:38:09', '2025-12-17 19:47:33', '41oPGr8m', '5129129'), - (1035, 1259, 'attending', '2022-03-09 20:22:39', '2025-12-17 19:47:33', '41oPGr8m', '5132533'), - (1035, 1262, 'attending', '2022-03-10 23:00:57', '2025-12-17 19:47:33', '41oPGr8m', '5157773'), - (1035, 1269, 'maybe', '2022-03-16 15:46:35', '2025-12-17 19:47:25', '41oPGr8m', '5179439'), - (1035, 1272, 'attending', '2022-03-16 15:48:05', '2025-12-17 19:47:25', '41oPGr8m', '5186582'), - (1035, 1273, 'attending', '2022-03-16 15:47:53', '2025-12-17 19:47:25', '41oPGr8m', '5186583'), - (1035, 1274, 'attending', '2022-03-16 15:47:42', '2025-12-17 19:47:26', '41oPGr8m', '5186585'), - (1035, 1277, 'attending', '2022-03-16 15:46:20', '2025-12-17 19:47:25', '41oPGr8m', '5186865'), - (1035, 1281, 'maybe', '2022-03-17 16:01:02', '2025-12-17 19:47:27', '41oPGr8m', '5190437'), - (1035, 1284, 'not_attending', '2022-04-16 12:50:22', '2025-12-17 19:47:27', '41oPGr8m', '5195095'), - (1035, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41oPGr8m', '5215989'), - (1035, 1304, 'attending', '2022-04-06 22:24:07', '2025-12-17 19:47:26', '41oPGr8m', '5223468'), - (1035, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41oPGr8m', '5223686'), - (1035, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41oPGr8m', '5227432'), - (1035, 1311, 'maybe', '2022-04-08 22:17:19', '2025-12-17 19:47:27', '41oPGr8m', '5231430'), - (1035, 1313, 'not_attending', '2022-04-11 21:32:14', '2025-12-17 19:47:27', '41oPGr8m', '5231461'), - (1035, 1317, 'attending', '2022-04-11 22:04:45', '2025-12-17 19:47:27', '41oPGr8m', '5237543'), - (1035, 1325, 'not_attending', '2022-04-18 10:35:32', '2025-12-17 19:47:28', '41oPGr8m', '5238361'), - (1035, 1326, 'not_attending', '2022-04-18 10:35:35', '2025-12-17 19:47:28', '41oPGr8m', '5238362'), - (1035, 1330, 'maybe', '2022-04-18 10:34:22', '2025-12-17 19:47:27', '41oPGr8m', '5242155'), - (1035, 1346, 'not_attending', '2022-04-22 16:15:04', '2025-12-17 19:47:27', '41oPGr8m', '5247467'), - (1035, 1348, 'attending', '2022-05-01 21:59:51', '2025-12-17 19:47:28', '41oPGr8m', '5247605'), - (1035, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', '41oPGr8m', '5249631'), - (1035, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '41oPGr8m', '5260800'), - (1035, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '41oPGr8m', '5269930'), - (1035, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41oPGr8m', '5271448'), - (1035, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '41oPGr8m', '5271449'), - (1035, 1380, 'attending', '2022-05-27 15:58:42', '2025-12-17 19:47:30', '41oPGr8m', '5271450'), - (1035, 1383, 'attending', '2022-05-13 19:39:20', '2025-12-17 19:47:28', '41oPGr8m', '5276469'), - (1035, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41oPGr8m', '5278159'), - (1035, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41oPGr8m', '5363695'), - (1035, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41oPGr8m', '5365960'), - (1035, 1415, 'not_attending', '2022-05-19 19:14:24', '2025-12-17 19:47:30', '41oPGr8m', '5368973'), - (1035, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41oPGr8m', '5378247'), - (1035, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '41oPGr8m', '5389605'), - (1035, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41oPGr8m', '5397265'), - (1035, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41oPGr8m', '5403967'), - (1035, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41oPGr8m', '5404786'), - (1035, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41oPGr8m', '5405203'), - (1035, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41oPGr8m', '5411699'), - (1035, 1482, 'attending', '2022-06-24 18:12:12', '2025-12-17 19:47:19', '41oPGr8m', '5412550'), - (1035, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41oPGr8m', '5415046'), - (1035, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41oPGr8m', '5422086'), - (1035, 1498, 'maybe', '2022-07-02 21:28:54', '2025-12-17 19:47:19', '41oPGr8m', '5422406'), - (1035, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41oPGr8m', '5424565'), - (1035, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41oPGr8m', '5426882'), - (1035, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41oPGr8m', '5427083'), - (1035, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41oPGr8m', '5441125'), - (1035, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41oPGr8m', '5441126'), - (1035, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41oPGr8m', '5441128'), - (1035, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '41oPGr8m', '5441131'), - (1035, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41oPGr8m', '5441132'), - (1035, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41oPGr8m', '5446643'), - (1035, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41oPGr8m', '5453325'), - (1035, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41oPGr8m', '5454516'), - (1035, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41oPGr8m', '5454605'), - (1035, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41oPGr8m', '5455037'), - (1035, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41oPGr8m', '5461278'), - (1035, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41oPGr8m', '5469480'), - (1035, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41oPGr8m', '5471073'), - (1035, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41oPGr8m', '5474663'), - (1035, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41oPGr8m', '5482022'), - (1035, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41oPGr8m', '5482793'), - (1035, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41oPGr8m', '5488912'), - (1035, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41oPGr8m', '5492192'), - (1035, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41oPGr8m', '5493139'), - (1035, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41oPGr8m', '5493200'), - (1035, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41oPGr8m', '5502188'), - (1035, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41oPGr8m', '5505059'), - (1035, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41oPGr8m', '5509055'), - (1035, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41oPGr8m', '5512862'), - (1035, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41oPGr8m', '5513985'), - (1035, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', '41oPGr8m', '5519981'), - (1035, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41oPGr8m', '5522550'), - (1035, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41oPGr8m', '5534683'), - (1035, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '41oPGr8m', '5537735'), - (1035, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41oPGr8m', '5540859'), - (1035, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41oPGr8m', '5546619'), - (1035, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41oPGr8m', '5555245'), - (1035, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41oPGr8m', '5557747'), - (1035, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41oPGr8m', '5560255'), - (1035, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41oPGr8m', '5562906'), - (1035, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41oPGr8m', '5600604'), - (1035, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41oPGr8m', '5605544'), - (1035, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', '41oPGr8m', '5606737'), - (1035, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41oPGr8m', '5630960'), - (1035, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41oPGr8m', '5630961'), - (1035, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41oPGr8m', '5630962'), - (1035, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41oPGr8m', '5630966'), - (1035, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41oPGr8m', '5630967'), - (1035, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41oPGr8m', '5630968'), - (1035, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41oPGr8m', '5635406'), - (1035, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41oPGr8m', '5638765'), - (1035, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41oPGr8m', '5640097'), - (1035, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41oPGr8m', '5640843'), - (1035, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41oPGr8m', '5641521'), - (1035, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41oPGr8m', '5642818'), - (1035, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41oPGr8m', '5652395'), - (1035, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41oPGr8m', '5670445'), - (1035, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41oPGr8m', '5671637'), - (1035, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41oPGr8m', '5672329'), - (1035, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41oPGr8m', '5674057'), - (1035, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41oPGr8m', '5674060'), - (1035, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41oPGr8m', '5677461'), - (1035, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41oPGr8m', '5698046'), - (1035, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41oPGr8m', '5699760'), - (1035, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41oPGr8m', '5741601'), - (1035, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41oPGr8m', '5763458'), - (1035, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41oPGr8m', '5774172'), - (1035, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '41oPGr8m', '5818247'), - (1035, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41oPGr8m', '5819471'), - (1035, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41oPGr8m', '5827739'), - (1035, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41oPGr8m', '5844306'), - (1035, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41oPGr8m', '5850159'), - (1035, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41oPGr8m', '5858999'), - (1035, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41oPGr8m', '5871984'), - (1035, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41oPGr8m', '5876354'), - (1035, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '41oPGr8m', '5880939'), - (1035, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41oPGr8m', '5887890'), - (1035, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41oPGr8m', '5888598'), - (1035, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41oPGr8m', '5893260'), - (1035, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41oPGr8m', '6045684'), - (1036, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mbZNWRzm', '4736503'), - (1036, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mbZNWRzm', '4736504'), - (1036, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mbZNWRzm', '5132533'), - (1036, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mbZNWRzm', '5186582'), - (1036, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mbZNWRzm', '5186583'), - (1036, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mbZNWRzm', '5186585'), - (1036, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mbZNWRzm', '5190437'), - (1036, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mbZNWRzm', '5215989'), - (1036, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mbZNWRzm', '6045684'), - (1037, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4Pz0ORvm', '7842108'), - (1037, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4Pz0ORvm', '7842902'), - (1037, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4Pz0ORvm', '7842903'), - (1037, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4Pz0ORvm', '7842904'), - (1037, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4Pz0ORvm', '7842905'), - (1037, 2999, 'not_attending', '2025-02-13 02:18:52', '2025-12-17 19:46:23', '4Pz0ORvm', '7844784'), - (1037, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4Pz0ORvm', '7855719'), - (1037, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4Pz0ORvm', '7860683'), - (1037, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4Pz0ORvm', '7860684'), - (1037, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4Pz0ORvm', '7866095'), - (1037, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4Pz0ORvm', '7869170'), - (1037, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4Pz0ORvm', '7869201'), - (1037, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', '4Pz0ORvm', '7872088'), - (1038, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'm6Yj0JQd', '4210314'), - (1038, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'm6Yj0JQd', '4229420'), - (1038, 900, 'not_attending', '2021-07-21 14:13:52', '2025-12-17 19:47:40', 'm6Yj0JQd', '4240316'), - (1038, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'm6Yj0JQd', '4240317'), - (1038, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'm6Yj0JQd', '4240318'), - (1038, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'm6Yj0JQd', '4240320'), - (1038, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'm6Yj0JQd', '4277819'), - (1038, 923, 'attending', '2021-07-24 01:30:43', '2025-12-17 19:47:40', 'm6Yj0JQd', '4292773'), - (1038, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'm6Yj0JQd', '4301723'), - (1038, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'm6Yj0JQd', '4302093'), - (1038, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'm6Yj0JQd', '4304151'), - (1038, 940, 'not_attending', '2021-07-30 16:29:27', '2025-12-17 19:47:40', 'm6Yj0JQd', '4309049'), - (1038, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'm6Yj0JQd', '4315713'), - (1038, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'm6Yj0JQd', '4315714'), - (1038, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'm6Yj0JQd', '4315726'), - (1038, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'm6Yj0JQd', '4356801'), - (1038, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'm6Yj0JQd', '4366186'), - (1038, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'm6Yj0JQd', '4366187'), - (1038, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'm6Yj0JQd', '4420735'), - (1038, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'm6Yj0JQd', '4420738'), - (1038, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'm6Yj0JQd', '4420739'), - (1038, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'm6Yj0JQd', '4420741'), - (1038, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'm6Yj0JQd', '4420744'), - (1038, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'm6Yj0JQd', '4420747'), - (1038, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'm6Yj0JQd', '4420748'), - (1038, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'm6Yj0JQd', '4420749'), - (1038, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm6Yj0JQd', '4461883'), - (1038, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm6Yj0JQd', '4508342'), - (1038, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm6Yj0JQd', '4568602'), - (1038, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm6Yj0JQd', '4572153'), - (1038, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'm6Yj0JQd', '4585962'), - (1038, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm6Yj0JQd', '4596356'), - (1038, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm6Yj0JQd', '4598860'), - (1038, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm6Yj0JQd', '4598861'), - (1038, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm6Yj0JQd', '4602797'), - (1038, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm6Yj0JQd', '4637896'), - (1038, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm6Yj0JQd', '4642994'), - (1038, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm6Yj0JQd', '4642995'), - (1038, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm6Yj0JQd', '4642996'), - (1038, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm6Yj0JQd', '4642997'), - (1038, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm6Yj0JQd', '4645687'), - (1038, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm6Yj0JQd', '4645698'), - (1038, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm6Yj0JQd', '4645704'), - (1038, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm6Yj0JQd', '4645705'), - (1038, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm6Yj0JQd', '4668385'), - (1038, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6Yj0JQd', '6045684'), - (1039, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4EQlP9n4', '8438709'), - (1039, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4EQlP9n4', '8457738'), - (1039, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4EQlP9n4', '8459566'), - (1039, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4EQlP9n4', '8459567'), - (1039, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4EQlP9n4', '8461032'), - (1039, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4EQlP9n4', '8477877'), - (1039, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4EQlP9n4', '8485688'), - (1039, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4EQlP9n4', '8490587'), - (1039, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4EQlP9n4', '8493552'), - (1039, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4EQlP9n4', '8493553'), - (1039, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4EQlP9n4', '8493554'), - (1039, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4EQlP9n4', '8493555'), - (1039, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4EQlP9n4', '8493556'), - (1039, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4EQlP9n4', '8493557'), - (1039, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4EQlP9n4', '8493558'), - (1039, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4EQlP9n4', '8493559'), - (1039, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4EQlP9n4', '8493560'), - (1039, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4EQlP9n4', '8493561'), - (1039, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4EQlP9n4', '8493572'), - (1040, 998, 'not_attending', '2021-10-29 23:59:55', '2025-12-17 19:47:36', '4kRMMjwA', '4420749'), - (1040, 1011, 'attending', '2021-10-28 22:17:31', '2025-12-17 19:47:36', '4kRMMjwA', '4438814'), - (1040, 1074, 'not_attending', '2021-10-27 04:15:00', '2025-12-17 19:47:34', '4kRMMjwA', '4528953'), - (1040, 1085, 'attending', '2021-12-18 22:59:27', '2025-12-17 19:47:31', '4kRMMjwA', '4568542'), - (1040, 1095, 'not_attending', '2021-10-27 04:15:25', '2025-12-17 19:47:35', '4kRMMjwA', '4596356'), - (1040, 1096, 'not_attending', '2021-10-29 12:39:02', '2025-12-17 19:47:36', '4kRMMjwA', '4596453'), - (1040, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4kRMMjwA', '4598860'), - (1040, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4kRMMjwA', '4598861'), - (1040, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4kRMMjwA', '4602797'), - (1040, 1100, 'attending', '2021-11-04 00:26:30', '2025-12-17 19:47:36', '4kRMMjwA', '4607305'), - (1040, 1101, 'not_attending', '2021-11-11 23:13:16', '2025-12-17 19:47:36', '4kRMMjwA', '4607339'), - (1040, 1109, 'attending', '2021-11-11 03:45:59', '2025-12-17 19:47:37', '4kRMMjwA', '4635221'), - (1040, 1110, 'attending', '2021-11-11 03:45:58', '2025-12-17 19:47:37', '4kRMMjwA', '4635224'), - (1040, 1111, 'attending', '2021-11-11 03:46:03', '2025-12-17 19:47:31', '4kRMMjwA', '4635279'), - (1040, 1112, 'attending', '2021-11-30 05:28:41', '2025-12-17 19:47:37', '4kRMMjwA', '4635420'), - (1040, 1113, 'attending', '2021-11-21 00:18:42', '2025-12-17 19:47:37', '4kRMMjwA', '4635421'), - (1040, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4kRMMjwA', '4637896'), - (1040, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4kRMMjwA', '4642994'), - (1040, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4kRMMjwA', '4642995'), - (1040, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4kRMMjwA', '4642996'), - (1040, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4kRMMjwA', '4642997'), - (1040, 1126, 'not_attending', '2021-12-12 00:01:57', '2025-12-17 19:47:38', '4kRMMjwA', '4645687'), - (1040, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4kRMMjwA', '4645698'), - (1040, 1128, 'not_attending', '2021-11-20 17:40:18', '2025-12-17 19:47:37', '4kRMMjwA', '4645704'), - (1040, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4kRMMjwA', '4645705'), - (1040, 1130, 'not_attending', '2021-12-05 00:23:48', '2025-12-17 19:47:37', '4kRMMjwA', '4658824'), - (1040, 1131, 'attending', '2021-12-18 18:05:30', '2025-12-17 19:47:31', '4kRMMjwA', '4658825'), - (1040, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4kRMMjwA', '4668385'), - (1040, 1140, 'attending', '2021-11-30 05:28:34', '2025-12-17 19:47:37', '4kRMMjwA', '4679701'), - (1040, 1144, 'not_attending', '2021-12-07 19:50:07', '2025-12-17 19:47:37', '4kRMMjwA', '4687090'), - (1040, 1147, 'not_attending', '2021-12-13 16:30:05', '2025-12-17 19:47:38', '4kRMMjwA', '4692842'), - (1040, 1148, 'not_attending', '2021-12-13 16:30:08', '2025-12-17 19:47:31', '4kRMMjwA', '4692843'), - (1040, 1149, 'not_attending', '2021-12-09 00:14:51', '2025-12-17 19:47:38', '4kRMMjwA', '4694407'), - (1040, 1150, 'attending', '2021-12-13 16:29:04', '2025-12-17 19:47:38', '4kRMMjwA', '4706262'), - (1040, 1152, 'attending', '2022-01-12 21:51:41', '2025-12-17 19:47:31', '4kRMMjwA', '4708705'), - (1040, 1153, 'not_attending', '2022-01-19 23:27:41', '2025-12-17 19:47:32', '4kRMMjwA', '4708707'), - (1040, 1166, 'attending', '2022-01-07 16:45:14', '2025-12-17 19:47:31', '4kRMMjwA', '4725109'), - (1040, 1174, 'not_attending', '2022-01-15 22:29:50', '2025-12-17 19:47:31', '4kRMMjwA', '4736496'), - (1040, 1175, 'attending', '2022-01-22 22:23:37', '2025-12-17 19:47:32', '4kRMMjwA', '4736497'), - (1040, 1176, 'not_attending', '2022-02-05 16:57:43', '2025-12-17 19:47:32', '4kRMMjwA', '4736498'), - (1040, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4kRMMjwA', '4736499'), - (1040, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4kRMMjwA', '4736500'), - (1040, 1179, 'not_attending', '2022-02-19 19:16:11', '2025-12-17 19:47:32', '4kRMMjwA', '4736501'), - (1040, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kRMMjwA', '4736503'), - (1040, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kRMMjwA', '4736504'), - (1040, 1185, 'attending', '2022-01-13 23:58:13', '2025-12-17 19:47:31', '4kRMMjwA', '4746789'), - (1040, 1188, 'not_attending', '2022-01-18 20:00:14', '2025-12-17 19:47:32', '4kRMMjwA', '4753929'), - (1040, 1209, 'attending', '2022-01-23 05:27:13', '2025-12-17 19:47:32', '4kRMMjwA', '4776926'), - (1040, 1210, 'maybe', '2022-01-23 05:28:24', '2025-12-17 19:47:32', '4kRMMjwA', '4776927'), - (1040, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4kRMMjwA', '5038850'), - (1040, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4kRMMjwA', '5045826'), - (1040, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kRMMjwA', '5132533'), - (1040, 1272, 'attending', '2022-03-17 15:07:06', '2025-12-17 19:47:25', '4kRMMjwA', '5186582'), - (1040, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4kRMMjwA', '5186583'), - (1040, 1274, 'attending', '2022-03-31 01:25:32', '2025-12-17 19:47:26', '4kRMMjwA', '5186585'), - (1040, 1281, 'not_attending', '2022-04-09 18:34:32', '2025-12-17 19:47:27', '4kRMMjwA', '5190437'), - (1040, 1284, 'not_attending', '2022-04-16 06:02:09', '2025-12-17 19:47:27', '4kRMMjwA', '5195095'), - (1040, 1297, 'not_attending', '2022-03-31 01:25:20', '2025-12-17 19:47:26', '4kRMMjwA', '5215989'), - (1040, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4kRMMjwA', '5223686'), - (1040, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4kRMMjwA', '5227432'), - (1040, 1311, 'maybe', '2022-04-09 18:34:56', '2025-12-17 19:47:27', '4kRMMjwA', '5231430'), - (1040, 1313, 'not_attending', '2022-04-12 21:56:38', '2025-12-17 19:47:27', '4kRMMjwA', '5231461'), - (1040, 1316, 'attending', '2022-04-12 13:13:15', '2025-12-17 19:47:27', '4kRMMjwA', '5237536'), - (1040, 1346, 'not_attending', '2022-04-19 16:05:11', '2025-12-17 19:47:27', '4kRMMjwA', '5247467'), - (1040, 1349, 'attending', '2022-04-19 16:05:23', '2025-12-17 19:47:27', '4kRMMjwA', '5249631'), - (1040, 1354, 'not_attending', '2022-04-21 20:58:09', '2025-12-17 19:47:27', '4kRMMjwA', '5252569'), - (1040, 1356, 'not_attending', '2022-04-22 17:34:33', '2025-12-17 19:47:27', '4kRMMjwA', '5252913'), - (1040, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4kRMMjwA', '5260800'), - (1040, 1366, 'attending', '2022-04-26 17:03:49', '2025-12-17 19:47:27', '4kRMMjwA', '5262344'), - (1040, 1367, 'attending', '2022-04-26 17:03:39', '2025-12-17 19:47:28', '4kRMMjwA', '5262345'), - (1040, 1374, 'attending', '2022-05-06 21:46:28', '2025-12-17 19:47:28', '4kRMMjwA', '5269930'), - (1040, 1378, 'attending', '2022-05-13 16:05:51', '2025-12-17 19:47:28', '4kRMMjwA', '5271448'), - (1040, 1379, 'attending', '2022-05-19 23:53:42', '2025-12-17 19:47:29', '4kRMMjwA', '5271449'), - (1040, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4kRMMjwA', '5276469'), - (1040, 1386, 'not_attending', '2022-05-06 21:46:08', '2025-12-17 19:47:28', '4kRMMjwA', '5278159'), - (1040, 1407, 'attending', '2022-06-03 03:10:43', '2025-12-17 19:47:30', '4kRMMjwA', '5363695'), - (1040, 1408, 'not_attending', '2022-05-19 23:51:32', '2025-12-17 19:47:29', '4kRMMjwA', '5365960'), - (1040, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4kRMMjwA', '5368973'), - (1040, 1422, 'not_attending', '2022-05-28 19:44:36', '2025-12-17 19:47:30', '4kRMMjwA', '5375603'), - (1040, 1425, 'attending', '2022-05-24 01:47:39', '2025-12-17 19:47:30', '4kRMMjwA', '5375861'), - (1040, 1427, 'attending', '2022-05-25 22:12:24', '2025-12-17 19:47:30', '4kRMMjwA', '5376074'), - (1040, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4kRMMjwA', '5378247'), - (1040, 1431, 'attending', '2022-06-09 16:55:17', '2025-12-17 19:47:30', '4kRMMjwA', '5389605'), - (1040, 1442, 'attending', '2022-06-16 21:38:26', '2025-12-17 19:47:17', '4kRMMjwA', '5397265'), - (1040, 1449, 'not_attending', '2022-06-08 19:25:08', '2025-12-17 19:47:31', '4kRMMjwA', '5403335'), - (1040, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4kRMMjwA', '5403967'), - (1040, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4kRMMjwA', '5404786'), - (1040, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4kRMMjwA', '5405203'), - (1040, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4kRMMjwA', '5411699'), - (1040, 1482, 'attending', '2022-06-23 01:25:09', '2025-12-17 19:47:19', '4kRMMjwA', '5412550'), - (1040, 1484, 'not_attending', '2022-06-23 01:25:06', '2025-12-17 19:47:17', '4kRMMjwA', '5415046'), - (1040, 1485, 'attending', '2022-06-24 14:24:39', '2025-12-17 19:47:17', '4kRMMjwA', '5416276'), - (1040, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4kRMMjwA', '5422086'), - (1040, 1498, 'not_attending', '2022-07-02 17:21:14', '2025-12-17 19:47:19', '4kRMMjwA', '5422406'), - (1040, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4kRMMjwA', '5424565'), - (1040, 1503, 'attending', '2022-06-29 18:19:14', '2025-12-17 19:47:19', '4kRMMjwA', '5426820'), - (1040, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4kRMMjwA', '5426882'), - (1040, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4kRMMjwA', '5427083'), - (1040, 1511, 'attending', '2022-07-08 03:53:02', '2025-12-17 19:47:19', '4kRMMjwA', '5437733'), - (1040, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4kRMMjwA', '5441125'), - (1040, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4kRMMjwA', '5441126'), - (1040, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4kRMMjwA', '5441128'), - (1040, 1516, 'not_attending', '2022-08-19 02:04:58', '2025-12-17 19:47:23', '4kRMMjwA', '5441129'), - (1040, 1517, 'not_attending', '2022-08-27 14:22:55', '2025-12-17 19:47:23', '4kRMMjwA', '5441130'), - (1040, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4kRMMjwA', '5441131'), - (1040, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '4kRMMjwA', '5441132'), - (1040, 1523, 'attending', '2022-07-11 18:50:15', '2025-12-17 19:47:19', '4kRMMjwA', '5442868'), - (1040, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4kRMMjwA', '5446643'), - (1040, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4kRMMjwA', '5453325'), - (1040, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4kRMMjwA', '5454516'), - (1040, 1544, 'attending', '2022-09-15 14:21:03', '2025-12-17 19:47:11', '4kRMMjwA', '5454517'), - (1040, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4kRMMjwA', '5454605'), - (1040, 1551, 'attending', '2022-07-19 21:13:39', '2025-12-17 19:47:20', '4kRMMjwA', '5455037'), - (1040, 1554, 'attending', '2022-07-20 01:17:27', '2025-12-17 19:47:20', '4kRMMjwA', '5455230'), - (1040, 1558, 'attending', '2022-09-04 12:08:55', '2025-12-17 19:47:10', '4kRMMjwA', '5458730'), - (1040, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4kRMMjwA', '5461278'), - (1040, 1562, 'attending', '2022-07-27 18:42:25', '2025-12-17 19:47:22', '4kRMMjwA', '5469480'), - (1040, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4kRMMjwA', '5471073'), - (1040, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4kRMMjwA', '5474663'), - (1040, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4kRMMjwA', '5482022'), - (1040, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4kRMMjwA', '5482793'), - (1040, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4kRMMjwA', '5488912'), - (1040, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4kRMMjwA', '5492192'), - (1040, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4kRMMjwA', '5493139'), - (1040, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4kRMMjwA', '5493200'), - (1040, 1601, 'attending', '2022-08-10 21:46:43', '2025-12-17 19:47:22', '4kRMMjwA', '5496589'), - (1040, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4kRMMjwA', '5502188'), - (1040, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4kRMMjwA', '5505059'), - (1040, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4kRMMjwA', '5509055'), - (1040, 1616, 'attending', '2022-08-21 18:42:03', '2025-12-17 19:47:23', '4kRMMjwA', '5509478'), - (1040, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4kRMMjwA', '5512862'), - (1040, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4kRMMjwA', '5513985'), - (1040, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', '4kRMMjwA', '5519981'), - (1040, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4kRMMjwA', '5522550'), - (1040, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4kRMMjwA', '5534683'), - (1040, 1632, 'attending', '2022-08-27 14:25:50', '2025-12-17 19:47:23', '4kRMMjwA', '5534954'), - (1040, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4kRMMjwA', '5537735'), - (1040, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4kRMMjwA', '5540859'), - (1040, 1646, 'attending', '2022-09-02 00:03:17', '2025-12-17 19:47:24', '4kRMMjwA', '5546619'), - (1040, 1651, 'attending', '2022-09-04 13:58:41', '2025-12-17 19:47:24', '4kRMMjwA', '5551425'), - (1040, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4kRMMjwA', '5555245'), - (1040, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4kRMMjwA', '5557747'), - (1040, 1660, 'attending', '2022-09-08 02:43:56', '2025-12-17 19:47:24', '4kRMMjwA', '5558979'), - (1040, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4kRMMjwA', '5560255'), - (1040, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4kRMMjwA', '5562906'), - (1040, 1667, 'not_attending', '2022-09-24 21:33:39', '2025-12-17 19:47:11', '4kRMMjwA', '5563221'), - (1040, 1668, 'not_attending', '2022-10-01 18:10:14', '2025-12-17 19:47:12', '4kRMMjwA', '5563222'), - (1040, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4kRMMjwA', '5600604'), - (1040, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4kRMMjwA', '5605544'), - (1040, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', '4kRMMjwA', '5606737'), - (1040, 1701, 'attending', '2022-09-26 21:36:20', '2025-12-17 19:47:11', '4kRMMjwA', '5607857'), - (1040, 1708, 'attending', '2022-10-05 23:37:03', '2025-12-17 19:47:12', '4kRMMjwA', '5617648'), - (1040, 1710, 'attending', '2022-10-02 19:21:17', '2025-12-17 19:47:12', '4kRMMjwA', '5621822'), - (1040, 1717, 'attending', '2022-10-21 13:58:58', '2025-12-17 19:47:13', '4kRMMjwA', '5622842'), - (1040, 1718, 'not_attending', '2022-10-13 03:38:21', '2025-12-17 19:47:12', '4kRMMjwA', '5630907'), - (1040, 1719, 'attending', '2022-10-07 14:50:48', '2025-12-17 19:47:12', '4kRMMjwA', '5630958'), - (1040, 1720, 'attending', '2022-10-13 03:38:03', '2025-12-17 19:47:12', '4kRMMjwA', '5630959'), - (1040, 1721, 'not_attending', '2022-10-20 14:52:34', '2025-12-17 19:47:13', '4kRMMjwA', '5630960'), - (1040, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4kRMMjwA', '5630961'), - (1040, 1723, 'not_attending', '2022-10-31 23:15:25', '2025-12-17 19:47:15', '4kRMMjwA', '5630962'), - (1040, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4kRMMjwA', '5630966'), - (1040, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4kRMMjwA', '5630967'), - (1040, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4kRMMjwA', '5630968'), - (1040, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4kRMMjwA', '5635406'), - (1040, 1733, 'attending', '2022-10-11 15:28:11', '2025-12-17 19:47:12', '4kRMMjwA', '5635411'), - (1040, 1736, 'not_attending', '2022-10-31 23:15:34', '2025-12-17 19:47:15', '4kRMMjwA', '5638456'), - (1040, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4kRMMjwA', '5638765'), - (1040, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4kRMMjwA', '5640097'), - (1040, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4kRMMjwA', '5640843'), - (1040, 1743, 'attending', '2022-10-10 11:21:35', '2025-12-17 19:47:12', '4kRMMjwA', '5641521'), - (1040, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4kRMMjwA', '5642818'), - (1040, 1746, 'attending', '2022-10-13 03:38:33', '2025-12-17 19:47:12', '4kRMMjwA', '5647518'), - (1040, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4kRMMjwA', '5652395'), - (1040, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4kRMMjwA', '5670445'), - (1040, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4kRMMjwA', '5671637'), - (1040, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4kRMMjwA', '5672329'), - (1040, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4kRMMjwA', '5674057'), - (1040, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4kRMMjwA', '5674060'), - (1040, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4kRMMjwA', '5677461'), - (1040, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4kRMMjwA', '5698046'), - (1040, 1784, 'attending', '2022-11-04 11:40:23', '2025-12-17 19:47:15', '4kRMMjwA', '5699760'), - (1040, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4kRMMjwA', '5741601'), - (1040, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4kRMMjwA', '5763458'), - (1040, 1806, 'not_attending', '2023-01-11 23:28:22', '2025-12-17 19:47:05', '4kRMMjwA', '5764676'), - (1040, 1807, 'not_attending', '2023-01-11 23:28:16', '2025-12-17 19:47:05', '4kRMMjwA', '5764677'), - (1040, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4kRMMjwA', '5774172'), - (1040, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '4kRMMjwA', '5818247'), - (1040, 1834, 'not_attending', '2022-12-10 20:05:03', '2025-12-17 19:47:17', '4kRMMjwA', '5819470'), - (1040, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4kRMMjwA', '5819471'), - (1040, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '4kRMMjwA', '5827739'), - (1040, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4kRMMjwA', '5844306'), - (1040, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4kRMMjwA', '5850159'), - (1040, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4kRMMjwA', '5858999'), - (1040, 1852, 'not_attending', '2023-01-11 23:28:14', '2025-12-17 19:47:05', '4kRMMjwA', '5869898'), - (1040, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4kRMMjwA', '5871984'), - (1040, 1860, 'maybe', '2023-01-13 23:24:29', '2025-12-17 19:47:05', '4kRMMjwA', '5876309'), - (1040, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4kRMMjwA', '5876354'), - (1040, 1864, 'not_attending', '2023-01-21 19:54:27', '2025-12-17 19:47:05', '4kRMMjwA', '5879675'), - (1040, 1865, 'not_attending', '2023-01-27 23:50:24', '2025-12-17 19:47:06', '4kRMMjwA', '5879676'), - (1040, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '4kRMMjwA', '5880939'), - (1040, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4kRMMjwA', '5880940'), - (1040, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4kRMMjwA', '5887890'), - (1040, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4kRMMjwA', '5888598'), - (1040, 1878, 'not_attending', '2023-02-06 13:26:14', '2025-12-17 19:47:07', '4kRMMjwA', '5893000'), - (1040, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4kRMMjwA', '5893260'), - (1040, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4kRMMjwA', '5899826'), - (1040, 1888, 'attending', '2023-02-18 00:01:09', '2025-12-17 19:47:07', '4kRMMjwA', '5900197'), - (1040, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4kRMMjwA', '5900199'), - (1040, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4kRMMjwA', '5900200'), - (1040, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4kRMMjwA', '5901108'), - (1040, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4kRMMjwA', '5901126'), - (1040, 1897, 'not_attending', '2023-02-11 00:49:46', '2025-12-17 19:47:07', '4kRMMjwA', '5901128'), - (1040, 1910, 'attending', '2023-02-08 02:47:47', '2025-12-17 19:47:07', '4kRMMjwA', '5909655'), - (1040, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4kRMMjwA', '5910522'), - (1040, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4kRMMjwA', '5910526'), - (1040, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4kRMMjwA', '5910528'), - (1040, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4kRMMjwA', '5916219'), - (1040, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4kRMMjwA', '5936234'), - (1040, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kRMMjwA', '6045684'), - (1041, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oOZWZJ4', '6045684'), - (1042, 243, 'maybe', '2020-11-03 15:56:15', '2025-12-17 19:47:53', 'ndaxNQp4', '3149474'), - (1042, 244, 'maybe', '2020-10-20 12:07:40', '2025-12-17 19:47:52', 'ndaxNQp4', '3149475'), - (1042, 373, 'maybe', '2020-10-24 12:24:15', '2025-12-17 19:47:52', 'ndaxNQp4', '3221413'), - (1042, 388, 'maybe', '2020-10-24 12:24:22', '2025-12-17 19:47:52', 'ndaxNQp4', '3228701'), - (1042, 394, 'attending', '2021-01-02 08:37:22', '2025-12-17 19:47:48', 'ndaxNQp4', '3236449'), - (1042, 399, 'not_attending', '2020-11-06 00:54:49', '2025-12-17 19:47:54', 'ndaxNQp4', '3236454'), - (1042, 409, 'not_attending', '2020-12-11 00:52:01', '2025-12-17 19:47:54', 'ndaxNQp4', '3236467'), - (1042, 429, 'attending', '2020-11-20 21:57:38', '2025-12-17 19:47:54', 'ndaxNQp4', '3250523'), - (1042, 433, 'maybe', '2020-11-06 01:16:53', '2025-12-17 19:47:53', 'ndaxNQp4', '3254417'), - (1042, 440, 'attending', '2020-11-07 16:13:58', '2025-12-17 19:47:53', 'ndaxNQp4', '3256168'), - (1042, 441, 'attending', '2020-11-03 09:09:11', '2025-12-17 19:47:54', 'ndaxNQp4', '3256169'), - (1042, 443, 'maybe', '2020-10-25 11:21:53', '2025-12-17 19:47:53', 'ndaxNQp4', '3263578'), - (1042, 445, 'not_attending', '2020-11-12 00:41:39', '2025-12-17 19:47:54', 'ndaxNQp4', '3266138'), - (1042, 450, 'not_attending', '2020-10-31 20:27:08', '2025-12-17 19:47:53', 'ndaxNQp4', '3272102'), - (1042, 452, 'attending', '2020-11-11 22:06:41', '2025-12-17 19:47:54', 'ndaxNQp4', '3272981'), - (1042, 453, 'attending', '2020-11-11 21:58:39', '2025-12-17 19:47:54', 'ndaxNQp4', '3274032'), - (1042, 454, 'maybe', '2020-11-13 16:30:58', '2025-12-17 19:47:54', 'ndaxNQp4', '3275665'), - (1042, 456, 'attending', '2020-11-05 14:44:04', '2025-12-17 19:47:54', 'ndaxNQp4', '3276428'), - (1042, 457, 'maybe', '2020-11-07 14:58:11', '2025-12-17 19:47:53', 'ndaxNQp4', '3279087'), - (1042, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ndaxNQp4', '3281467'), - (1042, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'ndaxNQp4', '3281470'), - (1042, 463, 'maybe', '2020-11-13 16:30:41', '2025-12-17 19:47:54', 'ndaxNQp4', '3281553'), - (1042, 464, 'attending', '2020-11-11 22:06:31', '2025-12-17 19:47:54', 'ndaxNQp4', '3281554'), - (1042, 465, 'attending', '2020-11-11 22:06:35', '2025-12-17 19:47:54', 'ndaxNQp4', '3281555'), - (1042, 466, 'maybe', '2020-11-23 23:20:05', '2025-12-17 19:47:54', 'ndaxNQp4', '3281829'), - (1042, 468, 'attending', '2020-11-11 21:57:12', '2025-12-17 19:47:54', 'ndaxNQp4', '3285413'), - (1042, 469, 'maybe', '2020-11-28 06:13:03', '2025-12-17 19:47:54', 'ndaxNQp4', '3285414'), - (1042, 470, 'attending', '2020-11-11 22:07:04', '2025-12-17 19:47:54', 'ndaxNQp4', '3285443'), - (1042, 471, 'maybe', '2020-11-18 22:57:29', '2025-12-17 19:47:54', 'ndaxNQp4', '3285445'), - (1042, 472, 'attending', '2020-11-12 00:41:35', '2025-12-17 19:47:54', 'ndaxNQp4', '3286541'), - (1042, 473, 'attending', '2020-11-12 00:42:01', '2025-12-17 19:47:54', 'ndaxNQp4', '3286569'), - (1042, 475, 'attending', '2020-11-13 16:32:13', '2025-12-17 19:47:54', 'ndaxNQp4', '3286760'), - (1042, 477, 'maybe', '2020-12-05 01:48:14', '2025-12-17 19:47:54', 'ndaxNQp4', '3289559'), - (1042, 478, 'attending', '2020-11-16 20:21:13', '2025-12-17 19:47:54', 'ndaxNQp4', '3290899'), - (1042, 481, 'maybe', '2020-11-23 23:20:09', '2025-12-17 19:47:54', 'ndaxNQp4', '3297764'), - (1042, 482, 'attending', '2020-11-25 00:59:18', '2025-12-17 19:47:54', 'ndaxNQp4', '3297769'), - (1042, 484, 'maybe', '2020-11-21 00:17:16', '2025-12-17 19:47:54', 'ndaxNQp4', '3297792'), - (1042, 493, 'maybe', '2020-12-05 22:33:07', '2025-12-17 19:47:54', 'ndaxNQp4', '3313856'), - (1042, 495, 'attending', '2020-12-04 23:39:07', '2025-12-17 19:47:54', 'ndaxNQp4', '3314009'), - (1042, 496, 'attending', '2020-12-08 01:10:00', '2025-12-17 19:47:54', 'ndaxNQp4', '3314269'), - (1042, 497, 'attending', '2020-12-08 01:10:48', '2025-12-17 19:47:55', 'ndaxNQp4', '3314270'), - (1042, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ndaxNQp4', '3314909'), - (1042, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaxNQp4', '3314964'), - (1042, 502, 'attending', '2020-12-08 01:10:26', '2025-12-17 19:47:55', 'ndaxNQp4', '3323365'), - (1042, 511, 'attending', '2020-12-08 02:08:45', '2025-12-17 19:47:55', 'ndaxNQp4', '3325335'), - (1042, 513, 'maybe', '2020-12-20 00:58:27', '2025-12-17 19:47:55', 'ndaxNQp4', '3329383'), - (1042, 518, 'attending', '2021-01-02 08:37:41', '2025-12-17 19:47:48', 'ndaxNQp4', '3337138'), - (1042, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndaxNQp4', '3351539'), - (1042, 528, 'attending', '2021-01-02 08:35:39', '2025-12-17 19:47:48', 'ndaxNQp4', '3363022'), - (1042, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndaxNQp4', '3386848'), - (1042, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndaxNQp4', '3389527'), - (1042, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndaxNQp4', '3396499'), - (1042, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndaxNQp4', '3403650'), - (1042, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaxNQp4', '3406988'), - (1042, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndaxNQp4', '3416576'), - (1042, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaxNQp4', '6045684'), - (1043, 856, 'attending', '2021-09-09 02:34:51', '2025-12-17 19:47:43', 'm6YW7Eqd', '4015730'), - (1043, 971, 'maybe', '2021-09-08 22:50:20', '2025-12-17 19:47:43', 'm6YW7Eqd', '4356801'), - (1043, 991, 'attending', '2021-09-09 02:32:37', '2025-12-17 19:47:43', 'm6YW7Eqd', '4420738'), - (1043, 992, 'not_attending', '2021-09-25 19:43:34', '2025-12-17 19:47:34', 'm6YW7Eqd', '4420739'), - (1043, 993, 'attending', '2021-09-25 19:43:31', '2025-12-17 19:47:34', 'm6YW7Eqd', '4420741'), - (1043, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'm6YW7Eqd', '4420744'), - (1043, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'm6YW7Eqd', '4420747'), - (1043, 1004, 'not_attending', '2021-09-14 22:58:24', '2025-12-17 19:47:43', 'm6YW7Eqd', '4438804'), - (1043, 1005, 'attending', '2021-09-18 23:15:49', '2025-12-17 19:47:34', 'm6YW7Eqd', '4438807'), - (1043, 1016, 'attending', '2021-09-09 22:53:09', '2025-12-17 19:47:43', 'm6YW7Eqd', '4441271'), - (1043, 1019, 'attending', '2021-09-09 02:32:25', '2025-12-17 19:47:43', 'm6YW7Eqd', '4450515'), - (1043, 1020, 'attending', '2021-09-09 02:33:00', '2025-12-17 19:47:43', 'm6YW7Eqd', '4451787'), - (1043, 1021, 'attending', '2021-09-09 02:34:20', '2025-12-17 19:47:34', 'm6YW7Eqd', '4451803'), - (1043, 1022, 'attending', '2021-09-11 15:53:47', '2025-12-17 19:47:43', 'm6YW7Eqd', '4458628'), - (1043, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm6YW7Eqd', '4461883'), - (1043, 1030, 'not_attending', '2021-09-26 14:11:30', '2025-12-17 19:47:34', 'm6YW7Eqd', '4473064'), - (1043, 1032, 'maybe', '2021-09-26 20:20:11', '2025-12-17 19:47:34', 'm6YW7Eqd', '4473825'), - (1043, 1066, 'attending', '2021-09-24 18:56:53', '2025-12-17 19:47:34', 'm6YW7Eqd', '4506039'), - (1043, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm6YW7Eqd', '4508342'), - (1043, 1068, 'attending', '2021-09-26 19:31:53', '2025-12-17 19:47:34', 'm6YW7Eqd', '4511471'), - (1043, 1069, 'attending', '2021-09-24 18:56:51', '2025-12-17 19:47:34', 'm6YW7Eqd', '4512090'), - (1043, 1074, 'attending', '2021-09-29 22:22:52', '2025-12-17 19:47:34', 'm6YW7Eqd', '4528953'), - (1043, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm6YW7Eqd', '4568602'), - (1043, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm6YW7Eqd', '4572153'), - (1043, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'm6YW7Eqd', '4585962'), - (1043, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm6YW7Eqd', '4596356'), - (1043, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm6YW7Eqd', '4598860'), - (1043, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm6YW7Eqd', '4598861'), - (1043, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm6YW7Eqd', '4602797'), - (1043, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm6YW7Eqd', '4637896'), - (1043, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm6YW7Eqd', '4642994'), - (1043, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm6YW7Eqd', '4642995'), - (1043, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm6YW7Eqd', '4642996'), - (1043, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm6YW7Eqd', '4642997'), - (1043, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm6YW7Eqd', '4645687'), - (1043, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm6YW7Eqd', '4645698'), - (1043, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm6YW7Eqd', '4645704'), - (1043, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm6YW7Eqd', '4645705'), - (1043, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm6YW7Eqd', '4668385'), - (1043, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'm6YW7Eqd', '4694407'), - (1043, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm6YW7Eqd', '4736497'), - (1043, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm6YW7Eqd', '4736499'), - (1043, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm6YW7Eqd', '4736500'), - (1043, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm6YW7Eqd', '4736503'), - (1043, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm6YW7Eqd', '4736504'), - (1043, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm6YW7Eqd', '4746789'), - (1043, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm6YW7Eqd', '4753929'), - (1043, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm6YW7Eqd', '5038850'), - (1043, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm6YW7Eqd', '5045826'), - (1043, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6YW7Eqd', '5132533'), - (1043, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm6YW7Eqd', '5186582'), - (1043, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6YW7Eqd', '5186583'), - (1043, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6YW7Eqd', '5186585'), - (1043, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6YW7Eqd', '5190437'), - (1043, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'm6YW7Eqd', '5195095'), - (1043, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6YW7Eqd', '5215989'), - (1043, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'm6YW7Eqd', '5223686'), - (1043, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'm6YW7Eqd', '5247467'), - (1043, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'm6YW7Eqd', '5260800'), - (1043, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6YW7Eqd', '5269930'), - (1043, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6YW7Eqd', '5271448'), - (1043, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'm6YW7Eqd', '5271449'), - (1043, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6YW7Eqd', '5278159'), - (1043, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'm6YW7Eqd', '5363695'), - (1043, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'm6YW7Eqd', '5365960'), - (1043, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'm6YW7Eqd', '5378247'), - (1043, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'm6YW7Eqd', '5389605'), - (1043, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'm6YW7Eqd', '5397265'), - (1043, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'm6YW7Eqd', '5404786'), - (1043, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'm6YW7Eqd', '5405203'), - (1043, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'm6YW7Eqd', '5412550'), - (1043, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6YW7Eqd', '5415046'), - (1043, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6YW7Eqd', '5422086'), - (1043, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6YW7Eqd', '5422406'), - (1043, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6YW7Eqd', '5424565'), - (1043, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6YW7Eqd', '5426882'), - (1043, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'm6YW7Eqd', '5441125'), - (1043, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6YW7Eqd', '5441126'), - (1043, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'm6YW7Eqd', '5441128'), - (1043, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6YW7Eqd', '5441131'), - (1043, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'm6YW7Eqd', '5441132'), - (1043, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6YW7Eqd', '5453325'), - (1043, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6YW7Eqd', '5454516'), - (1043, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6YW7Eqd', '5454605'), - (1043, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6YW7Eqd', '5455037'), - (1043, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6YW7Eqd', '5461278'), - (1043, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6YW7Eqd', '5469480'), - (1043, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'm6YW7Eqd', '5474663'), - (1043, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6YW7Eqd', '5482022'), - (1043, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6YW7Eqd', '5488912'), - (1043, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6YW7Eqd', '5492192'), - (1043, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6YW7Eqd', '5493139'), - (1043, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6YW7Eqd', '5493200'), - (1043, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6YW7Eqd', '5502188'), - (1043, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6YW7Eqd', '5505059'), - (1043, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6YW7Eqd', '5509055'), - (1043, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6YW7Eqd', '5512862'), - (1043, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6YW7Eqd', '5513985'), - (1043, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'm6YW7Eqd', '5519981'), - (1043, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6YW7Eqd', '5522550'), - (1043, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6YW7Eqd', '5534683'), - (1043, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'm6YW7Eqd', '5537735'), - (1043, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6YW7Eqd', '5540859'), - (1043, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6YW7Eqd', '5546619'), - (1043, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6YW7Eqd', '5557747'), - (1043, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6YW7Eqd', '5560255'), - (1043, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6YW7Eqd', '5562906'), - (1043, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6YW7Eqd', '5600604'), - (1043, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6YW7Eqd', '5605544'), - (1043, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'm6YW7Eqd', '5606737'), - (1043, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6YW7Eqd', '5630960'), - (1043, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6YW7Eqd', '5630961'), - (1043, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6YW7Eqd', '5630962'), - (1043, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6YW7Eqd', '5630966'), - (1043, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6YW7Eqd', '5630967'), - (1043, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm6YW7Eqd', '5630968'), - (1043, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6YW7Eqd', '5635406'), - (1043, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6YW7Eqd', '5638765'), - (1043, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6YW7Eqd', '5640097'), - (1043, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6YW7Eqd', '5640843'), - (1043, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6YW7Eqd', '5641521'), - (1043, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6YW7Eqd', '5642818'), - (1043, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6YW7Eqd', '5652395'), - (1043, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6YW7Eqd', '5670445'), - (1043, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6YW7Eqd', '5671637'), - (1043, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6YW7Eqd', '5672329'), - (1043, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6YW7Eqd', '5674057'), - (1043, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6YW7Eqd', '5674060'), - (1043, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6YW7Eqd', '5677461'), - (1043, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6YW7Eqd', '5698046'), - (1043, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6YW7Eqd', '5699760'), - (1043, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6YW7Eqd', '5741601'), - (1043, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6YW7Eqd', '5763458'), - (1043, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6YW7Eqd', '5774172'), - (1043, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'm6YW7Eqd', '5818247'), - (1043, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6YW7Eqd', '5819471'), - (1043, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6YW7Eqd', '5827739'), - (1043, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6YW7Eqd', '5844306'), - (1043, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6YW7Eqd', '5850159'), - (1043, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6YW7Eqd', '5858999'), - (1043, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6YW7Eqd', '5871984'), - (1043, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6YW7Eqd', '5876354'), - (1043, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'm6YW7Eqd', '5880939'), - (1043, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm6YW7Eqd', '5880940'), - (1043, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm6YW7Eqd', '5880942'), - (1043, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm6YW7Eqd', '5880943'), - (1043, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6YW7Eqd', '5887890'), - (1043, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6YW7Eqd', '5888598'), - (1043, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6YW7Eqd', '5893260'), - (1043, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm6YW7Eqd', '5899826'), - (1043, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm6YW7Eqd', '5900199'), - (1043, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm6YW7Eqd', '5900200'), - (1043, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm6YW7Eqd', '5900202'), - (1043, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm6YW7Eqd', '5900203'), - (1043, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm6YW7Eqd', '5901108'), - (1043, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm6YW7Eqd', '5901126'), - (1043, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm6YW7Eqd', '5909655'), - (1043, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm6YW7Eqd', '5910522'), - (1043, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm6YW7Eqd', '5910526'), - (1043, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm6YW7Eqd', '5910528'), - (1043, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm6YW7Eqd', '5916219'), - (1043, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm6YW7Eqd', '5936234'), - (1043, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm6YW7Eqd', '5958351'), - (1043, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm6YW7Eqd', '5959751'), - (1043, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm6YW7Eqd', '5959755'), - (1043, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm6YW7Eqd', '5960055'), - (1043, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm6YW7Eqd', '5961684'), - (1043, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm6YW7Eqd', '5962132'), - (1043, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm6YW7Eqd', '5962133'), - (1043, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm6YW7Eqd', '5962134'), - (1043, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm6YW7Eqd', '5962317'), - (1043, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm6YW7Eqd', '5962318'), - (1043, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm6YW7Eqd', '5965933'), - (1043, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm6YW7Eqd', '5967014'), - (1043, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm6YW7Eqd', '5972815'), - (1043, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm6YW7Eqd', '5974016'), - (1043, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm6YW7Eqd', '5981515'), - (1043, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm6YW7Eqd', '5993516'), - (1043, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm6YW7Eqd', '5998939'), - (1043, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm6YW7Eqd', '6028191'), - (1043, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm6YW7Eqd', '6040066'), - (1043, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm6YW7Eqd', '6042717'), - (1043, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm6YW7Eqd', '6044838'), - (1043, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm6YW7Eqd', '6044839'), - (1043, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6YW7Eqd', '6045684'), - (1043, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm6YW7Eqd', '6050104'), - (1043, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm6YW7Eqd', '6053195'), - (1043, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm6YW7Eqd', '6053198'), - (1043, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm6YW7Eqd', '6056085'), - (1043, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm6YW7Eqd', '6056916'), - (1043, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm6YW7Eqd', '6059290'), - (1043, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm6YW7Eqd', '6060328'), - (1043, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm6YW7Eqd', '6061037'), - (1043, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm6YW7Eqd', '6061039'), - (1043, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm6YW7Eqd', '6067245'), - (1043, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm6YW7Eqd', '6068094'), - (1043, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm6YW7Eqd', '6068252'), - (1043, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm6YW7Eqd', '6068253'), - (1043, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm6YW7Eqd', '6068254'), - (1043, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm6YW7Eqd', '6068280'), - (1043, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm6YW7Eqd', '6069093'), - (1043, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'm6YW7Eqd', '6072528'), - (1043, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm6YW7Eqd', '6079840'), - (1043, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm6YW7Eqd', '6083398'), - (1043, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm6YW7Eqd', '6093504'), - (1043, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm6YW7Eqd', '6097414'), - (1043, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm6YW7Eqd', '6097442'), - (1043, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm6YW7Eqd', '6097684'), - (1043, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm6YW7Eqd', '6098762'), - (1043, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'm6YW7Eqd', '6101361'), - (1043, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm6YW7Eqd', '6101362'), - (1043, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm6YW7Eqd', '6107314'), - (1043, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'm6YW7Eqd', '6120034'), - (1043, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'm6YW7Eqd', '6136733'), - (1043, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'm6YW7Eqd', '6137989'), - (1043, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'm6YW7Eqd', '6150864'), - (1043, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'm6YW7Eqd', '6155491'), - (1043, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'm6YW7Eqd', '6164417'), - (1043, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'm6YW7Eqd', '6166388'), - (1043, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'm6YW7Eqd', '6176439'), - (1043, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'm6YW7Eqd', '6182410'), - (1043, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'm6YW7Eqd', '6185812'), - (1043, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'm6YW7Eqd', '6187651'), - (1043, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'm6YW7Eqd', '6187963'), - (1043, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'm6YW7Eqd', '6187964'), - (1043, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'm6YW7Eqd', '6187966'), - (1043, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'm6YW7Eqd', '6187967'), - (1043, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'm6YW7Eqd', '6187969'), - (1043, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'm6YW7Eqd', '6334878'), - (1043, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'm6YW7Eqd', '6337236'), - (1043, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'm6YW7Eqd', '6337970'), - (1043, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'm6YW7Eqd', '6338308'), - (1043, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'm6YW7Eqd', '6341710'), - (1043, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'm6YW7Eqd', '6342044'), - (1043, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'm6YW7Eqd', '6342298'), - (1043, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'm6YW7Eqd', '6343294'), - (1043, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'm6YW7Eqd', '6347034'), - (1043, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'm6YW7Eqd', '6347056'), - (1043, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'm6YW7Eqd', '6353830'), - (1043, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'm6YW7Eqd', '6353831'), - (1043, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'm6YW7Eqd', '6357867'), - (1043, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'm6YW7Eqd', '6358652'), - (1043, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'm6YW7Eqd', '6361709'), - (1043, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'm6YW7Eqd', '6361710'), - (1043, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'm6YW7Eqd', '6361711'), - (1043, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'm6YW7Eqd', '6361712'), - (1043, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm6YW7Eqd', '6361713'), - (1043, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'm6YW7Eqd', '6382573'), - (1043, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'm6YW7Eqd', '6388604'), - (1043, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm6YW7Eqd', '6394629'), - (1043, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm6YW7Eqd', '6394631'), - (1043, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'm6YW7Eqd', '6440863'), - (1043, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'm6YW7Eqd', '6445440'), - (1043, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'm6YW7Eqd', '6453951'), - (1043, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'm6YW7Eqd', '6461696'), - (1043, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'm6YW7Eqd', '6462129'), - (1043, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'm6YW7Eqd', '6463218'), - (1043, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'm6YW7Eqd', '6472181'), - (1043, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'm6YW7Eqd', '6482693'), - (1043, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'm6YW7Eqd', '6484200'), - (1043, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'm6YW7Eqd', '6484680'), - (1043, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'm6YW7Eqd', '6507741'), - (1043, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'm6YW7Eqd', '6514659'), - (1043, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'm6YW7Eqd', '6514660'), - (1043, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'm6YW7Eqd', '6519103'), - (1043, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'm6YW7Eqd', '6535681'), - (1043, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'm6YW7Eqd', '6584747'), - (1043, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'm6YW7Eqd', '6587097'), - (1043, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'm6YW7Eqd', '6609022'), - (1043, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'm6YW7Eqd', '6632757'), - (1043, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'm6YW7Eqd', '6644187'), - (1043, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'm6YW7Eqd', '6648951'), - (1043, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'm6YW7Eqd', '6648952'), - (1043, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'm6YW7Eqd', '6655401'), - (1043, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'm6YW7Eqd', '6661585'), - (1043, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'm6YW7Eqd', '6661588'), - (1043, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'm6YW7Eqd', '6661589'), - (1043, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'm6YW7Eqd', '6699906'), - (1043, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'm6YW7Eqd', '6699913'), - (1043, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'm6YW7Eqd', '6701109'), - (1043, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'm6YW7Eqd', '6705219'), - (1043, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'm6YW7Eqd', '6710153'), - (1043, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'm6YW7Eqd', '6711552'), - (1043, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'm6YW7Eqd', '6711553'), - (1043, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'm6YW7Eqd', '6722688'), - (1043, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'm6YW7Eqd', '6730620'), - (1043, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'm6YW7Eqd', '6740364'), - (1043, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'm6YW7Eqd', '6743829'), - (1043, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'm6YW7Eqd', '7030380'), - (1043, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'm6YW7Eqd', '7033677'), - (1043, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'm6YW7Eqd', '7044715'), - (1043, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'm6YW7Eqd', '7050318'), - (1043, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'm6YW7Eqd', '7050319'), - (1043, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'm6YW7Eqd', '7050322'), - (1043, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'm6YW7Eqd', '7057804'), - (1043, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'm6YW7Eqd', '7072824'), - (1043, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'm6YW7Eqd', '7074348'), - (1043, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'm6YW7Eqd', '7074364'), - (1043, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'm6YW7Eqd', '7089267'), - (1043, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'm6YW7Eqd', '7098747'), - (1043, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'm6YW7Eqd', '7113468'), - (1043, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'm6YW7Eqd', '7114856'), - (1043, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'm6YW7Eqd', '7114951'), - (1043, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'm6YW7Eqd', '7114955'), - (1043, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'm6YW7Eqd', '7114956'), - (1043, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'm6YW7Eqd', '7114957'), - (1043, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'm6YW7Eqd', '7159484'), - (1043, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'm6YW7Eqd', '7178446'), - (1043, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'm6YW7Eqd', '7220467'), - (1043, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'm6YW7Eqd', '7240354'), - (1043, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'm6YW7Eqd', '7251633'), - (1043, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'm6YW7Eqd', '7324073'), - (1043, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'm6YW7Eqd', '7324074'), - (1043, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'm6YW7Eqd', '7324075'), - (1043, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'm6YW7Eqd', '7324078'), - (1043, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'm6YW7Eqd', '7324082'), - (1043, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'm6YW7Eqd', '7331457'), - (1043, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'm6YW7Eqd', '7363643'), - (1043, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'm6YW7Eqd', '7368606'), - (1043, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'm6YW7Eqd', '7397462'), - (1043, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'm6YW7Eqd', '7424275'), - (1043, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'm6YW7Eqd', '7432751'), - (1043, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'm6YW7Eqd', '7432752'), - (1043, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'm6YW7Eqd', '7432753'), - (1043, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432754'), - (1043, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432755'), - (1043, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432756'), - (1043, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432758'), - (1043, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432759'), - (1043, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'm6YW7Eqd', '7433834'), - (1043, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'm6YW7Eqd', '7470197'), - (1043, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'm6YW7Eqd', '7685613'), - (1043, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6YW7Eqd', '7688194'), - (1043, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6YW7Eqd', '7688196'), - (1043, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6YW7Eqd', '7688289'), - (1043, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'm6YW7Eqd', '7692763'), - (1043, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'm6YW7Eqd', '7697552'), - (1043, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'm6YW7Eqd', '7699878'), - (1043, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'm6YW7Eqd', '7704043'), - (1043, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6YW7Eqd', '7712467'), - (1043, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6YW7Eqd', '7713585'), - (1043, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6YW7Eqd', '7713586'), - (1043, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'm6YW7Eqd', '7738518'), - (1043, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6YW7Eqd', '7750636'), - (1043, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6YW7Eqd', '7796540'), - (1043, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6YW7Eqd', '7796541'), - (1043, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6YW7Eqd', '7796542'), - (1043, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6YW7Eqd', '7825913'), - (1043, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6YW7Eqd', '7826209'), - (1043, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6YW7Eqd', '7834742'), - (1043, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6YW7Eqd', '7842108'), - (1043, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6YW7Eqd', '7842902'), - (1043, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6YW7Eqd', '7842903'), - (1043, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6YW7Eqd', '7842904'), - (1043, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6YW7Eqd', '7842905'), - (1043, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6YW7Eqd', '7855719'), - (1043, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6YW7Eqd', '7860683'), - (1043, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6YW7Eqd', '7860684'), - (1043, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6YW7Eqd', '7866095'), - (1043, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6YW7Eqd', '7869170'), - (1043, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'm6YW7Eqd', '7869188'), - (1043, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6YW7Eqd', '7869201'), - (1043, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'm6YW7Eqd', '7877465'), - (1043, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'm6YW7Eqd', '7888250'), - (1043, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'm6YW7Eqd', '7904777'), - (1043, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'm6YW7Eqd', '8349164'), - (1043, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'm6YW7Eqd', '8349545'), - (1043, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'm6YW7Eqd', '8368028'), - (1043, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'm6YW7Eqd', '8368029'), - (1043, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'm6YW7Eqd', '8388462'), - (1043, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'm6YW7Eqd', '8400273'), - (1043, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'm6YW7Eqd', '8400275'), - (1043, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'm6YW7Eqd', '8400276'), - (1043, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'm6YW7Eqd', '8404977'), - (1043, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'm6YW7Eqd', '8430783'), - (1043, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'm6YW7Eqd', '8430784'), - (1043, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'm6YW7Eqd', '8430799'), - (1043, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'm6YW7Eqd', '8430800'), - (1043, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'm6YW7Eqd', '8430801'), - (1043, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'm6YW7Eqd', '8438709'), - (1043, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'm6YW7Eqd', '8457738'), - (1043, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'm6YW7Eqd', '8459566'), - (1043, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'm6YW7Eqd', '8459567'), - (1043, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'm6YW7Eqd', '8461032'), - (1043, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'm6YW7Eqd', '8477877'), - (1043, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'm6YW7Eqd', '8485688'), - (1043, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'm6YW7Eqd', '8490587'), - (1043, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'm6YW7Eqd', '8493552'), - (1043, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'm6YW7Eqd', '8493553'), - (1043, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'm6YW7Eqd', '8493554'), - (1043, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'm6YW7Eqd', '8493555'), - (1043, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'm6YW7Eqd', '8493556'), - (1043, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'm6YW7Eqd', '8493557'), - (1043, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'm6YW7Eqd', '8493558'), - (1043, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'm6YW7Eqd', '8493559'), - (1043, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'm6YW7Eqd', '8493560'), - (1043, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'm6YW7Eqd', '8493561'), - (1043, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'm6YW7Eqd', '8493572'), - (1043, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'm6YW7Eqd', '8540725'), - (1043, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'm6YW7Eqd', '8555421'), - (1044, 245, 'not_attending', '2020-11-30 16:15:05', '2025-12-17 19:47:54', 'pmbMYjgd', '3149476'), - (1044, 249, 'not_attending', '2020-11-17 03:54:21', '2025-12-17 19:47:54', 'pmbMYjgd', '3149480'), - (1044, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'pmbMYjgd', '3236467'), - (1044, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'pmbMYjgd', '3285413'), - (1044, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'pmbMYjgd', '3285414'), - (1044, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'pmbMYjgd', '3297764'), - (1044, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'pmbMYjgd', '3313856'), - (1044, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'pmbMYjgd', '3314909'), - (1044, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'pmbMYjgd', '3314964'), - (1044, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'pmbMYjgd', '3323365'), - (1044, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'pmbMYjgd', '3324148'), - (1044, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'pmbMYjgd', '3329383'), - (1044, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'pmbMYjgd', '3351539'), - (1044, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'pmbMYjgd', '3386848'), - (1044, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'pmbMYjgd', '3389527'), - (1044, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'pmbMYjgd', '3396499'), - (1044, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'pmbMYjgd', '3403650'), - (1044, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'pmbMYjgd', '3406988'), - (1044, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'pmbMYjgd', '3416576'), - (1044, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'pmbMYjgd', '3426074'), - (1044, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'pmbMYjgd', '3430267'), - (1044, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'pmbMYjgd', '3468125'), - (1044, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'pmbMYjgd', '3470303'), - (1044, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'pmbMYjgd', '3470305'), - (1044, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'pmbMYjgd', '3470991'), - (1044, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'pmbMYjgd', '3517815'), - (1044, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'pmbMYjgd', '3517816'), - (1044, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'pmbMYjgd', '3523941'), - (1044, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmbMYjgd', '3533850'), - (1044, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmbMYjgd', '3536632'), - (1044, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmbMYjgd', '3536656'), - (1044, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'pmbMYjgd', '3539916'), - (1044, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'pmbMYjgd', '3539917'), - (1044, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmbMYjgd', '3539918'), - (1044, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'pmbMYjgd', '3539919'), - (1044, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmbMYjgd', '3539920'), - (1044, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'pmbMYjgd', '3539921'), - (1044, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmbMYjgd', '3539922'), - (1044, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmbMYjgd', '3539923'), - (1044, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmbMYjgd', '3539927'), - (1044, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmbMYjgd', '3582734'), - (1044, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmbMYjgd', '3583262'), - (1044, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmbMYjgd', '3619523'), - (1044, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmbMYjgd', '3661369'), - (1044, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmbMYjgd', '3674262'), - (1044, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmbMYjgd', '3677402'), - (1044, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmbMYjgd', '3730212'), - (1044, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'pmbMYjgd', '3793156'), - (1044, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbMYjgd', '3974109'), - (1044, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmbMYjgd', '3975311'), - (1044, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmbMYjgd', '3975312'), - (1044, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbMYjgd', '3994992'), - (1044, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmbMYjgd', '4014338'), - (1044, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmbMYjgd', '4021848'), - (1044, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmbMYjgd', '4136744'), - (1044, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'pmbMYjgd', '4136937'), - (1044, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmbMYjgd', '4136938'), - (1044, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbMYjgd', '4136947'), - (1044, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbMYjgd', '4210314'), - (1044, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbMYjgd', '4225444'), - (1044, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbMYjgd', '4239259'), - (1044, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmbMYjgd', '4240316'), - (1044, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbMYjgd', '4240317'), - (1044, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbMYjgd', '4240318'), - (1044, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbMYjgd', '4240320'), - (1044, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbMYjgd', '4250163'), - (1044, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmbMYjgd', '4275957'), - (1044, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbMYjgd', '4277819'), - (1044, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbMYjgd', '4301723'), - (1044, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbMYjgd', '4302093'), - (1044, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbMYjgd', '4304151'), - (1044, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbMYjgd', '4356801'), - (1044, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbMYjgd', '4366186'), - (1044, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbMYjgd', '4366187'), - (1044, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbMYjgd', '4420735'), - (1044, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbMYjgd', '4420738'), - (1044, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbMYjgd', '4420739'), - (1044, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbMYjgd', '4420741'), - (1044, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbMYjgd', '4420744'), - (1044, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbMYjgd', '4420747'), - (1044, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbMYjgd', '4420748'), - (1044, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbMYjgd', '4420749'), - (1044, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbMYjgd', '4461883'), - (1044, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbMYjgd', '4508342'), - (1044, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbMYjgd', '4568602'), - (1044, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbMYjgd', '4572153'), - (1044, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'pmbMYjgd', '4585962'), - (1044, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'pmbMYjgd', '4596356'), - (1044, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbMYjgd', '4598860'), - (1044, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbMYjgd', '4598861'), - (1044, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbMYjgd', '4602797'), - (1044, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbMYjgd', '4637896'), - (1044, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbMYjgd', '4642994'), - (1044, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'pmbMYjgd', '4642995'), - (1044, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbMYjgd', '4642996'), - (1044, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbMYjgd', '4642997'), - (1044, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbMYjgd', '4645687'), - (1044, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbMYjgd', '4645698'), - (1044, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbMYjgd', '4645704'), - (1044, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbMYjgd', '4645705'), - (1044, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbMYjgd', '4668385'), - (1044, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbMYjgd', '4694407'), - (1044, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbMYjgd', '4736497'), - (1044, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbMYjgd', '4736499'), - (1044, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbMYjgd', '4736500'), - (1044, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbMYjgd', '4736503'), - (1044, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbMYjgd', '4736504'), - (1044, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbMYjgd', '4746789'), - (1044, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbMYjgd', '4753929'), - (1044, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbMYjgd', '5038850'), - (1044, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbMYjgd', '5045826'), - (1044, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbMYjgd', '5132533'), - (1044, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbMYjgd', '5186582'), - (1044, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbMYjgd', '5186583'), - (1044, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbMYjgd', '5186585'), - (1044, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbMYjgd', '5190437'), - (1044, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'pmbMYjgd', '5195095'), - (1044, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbMYjgd', '5215989'), - (1044, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'pmbMYjgd', '5223686'), - (1044, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'pmbMYjgd', '5247467'), - (1044, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'pmbMYjgd', '5260800'), - (1044, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'pmbMYjgd', '5269930'), - (1044, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'pmbMYjgd', '5271448'), - (1044, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'pmbMYjgd', '5271449'), - (1044, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'pmbMYjgd', '5278159'), - (1044, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'pmbMYjgd', '5363695'), - (1044, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'pmbMYjgd', '5365960'), - (1044, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'pmbMYjgd', '5378247'), - (1044, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'pmbMYjgd', '5389605'), - (1044, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'pmbMYjgd', '5397265'), - (1044, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'pmbMYjgd', '5404786'), - (1044, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'pmbMYjgd', '5405203'), - (1044, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'pmbMYjgd', '5412550'), - (1044, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'pmbMYjgd', '5415046'), - (1044, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'pmbMYjgd', '5422086'), - (1044, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'pmbMYjgd', '5422406'), - (1044, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'pmbMYjgd', '5424565'), - (1044, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'pmbMYjgd', '5426882'), - (1044, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'pmbMYjgd', '5441125'), - (1044, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'pmbMYjgd', '5441126'), - (1044, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'pmbMYjgd', '5441128'), - (1044, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'pmbMYjgd', '5441131'), - (1044, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'pmbMYjgd', '5441132'), - (1044, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'pmbMYjgd', '5453325'), - (1044, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'pmbMYjgd', '5454516'), - (1044, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'pmbMYjgd', '5454605'), - (1044, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'pmbMYjgd', '5455037'), - (1044, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'pmbMYjgd', '5461278'), - (1044, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'pmbMYjgd', '5469480'), - (1044, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'pmbMYjgd', '5474663'), - (1044, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'pmbMYjgd', '5482022'), - (1044, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'pmbMYjgd', '5488912'), - (1044, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'pmbMYjgd', '5492192'), - (1044, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'pmbMYjgd', '5493139'), - (1044, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'pmbMYjgd', '5493200'), - (1044, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'pmbMYjgd', '5502188'), - (1044, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'pmbMYjgd', '5505059'), - (1044, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'pmbMYjgd', '5509055'), - (1044, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'pmbMYjgd', '5512862'), - (1044, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'pmbMYjgd', '5513985'), - (1044, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'pmbMYjgd', '5519981'), - (1044, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'pmbMYjgd', '5522550'), - (1044, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'pmbMYjgd', '5534683'), - (1044, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'pmbMYjgd', '5537735'), - (1044, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'pmbMYjgd', '5540859'), - (1044, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'pmbMYjgd', '5546619'), - (1044, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'pmbMYjgd', '5557747'), - (1044, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'pmbMYjgd', '5560255'), - (1044, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'pmbMYjgd', '5562906'), - (1044, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'pmbMYjgd', '5600604'), - (1044, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'pmbMYjgd', '5605544'), - (1044, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'pmbMYjgd', '5630960'), - (1044, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'pmbMYjgd', '5630961'), - (1044, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'pmbMYjgd', '5630962'), - (1044, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'pmbMYjgd', '5630966'), - (1044, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'pmbMYjgd', '5630967'), - (1044, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'pmbMYjgd', '5630968'), - (1044, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'pmbMYjgd', '5635406'), - (1044, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'pmbMYjgd', '5638765'), - (1044, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'pmbMYjgd', '5640097'), - (1044, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'pmbMYjgd', '5640843'), - (1044, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'pmbMYjgd', '5641521'), - (1044, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'pmbMYjgd', '5642818'), - (1044, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'pmbMYjgd', '5652395'), - (1044, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'pmbMYjgd', '5670445'), - (1044, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'pmbMYjgd', '5671637'), - (1044, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'pmbMYjgd', '5672329'), - (1044, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'pmbMYjgd', '5674057'), - (1044, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'pmbMYjgd', '5674060'), - (1044, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'pmbMYjgd', '5677461'), - (1044, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'pmbMYjgd', '5698046'), - (1044, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'pmbMYjgd', '5699760'), - (1044, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'pmbMYjgd', '5741601'), - (1044, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'pmbMYjgd', '5763458'), - (1044, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'pmbMYjgd', '5774172'), - (1044, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'pmbMYjgd', '5818247'), - (1044, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'pmbMYjgd', '5819471'), - (1044, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'pmbMYjgd', '5827739'), - (1044, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'pmbMYjgd', '5844306'), - (1044, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'pmbMYjgd', '5850159'), - (1044, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'pmbMYjgd', '5858999'), - (1044, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'pmbMYjgd', '5871984'), - (1044, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'pmbMYjgd', '5876354'), - (1044, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'pmbMYjgd', '5880939'), - (1044, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'pmbMYjgd', '5880940'), - (1044, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'pmbMYjgd', '5880942'), - (1044, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'pmbMYjgd', '5880943'), - (1044, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'pmbMYjgd', '5887890'), - (1044, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'pmbMYjgd', '5888598'), - (1044, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'pmbMYjgd', '5893260'), - (1044, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'pmbMYjgd', '5899826'), - (1044, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'pmbMYjgd', '5900199'), - (1044, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'pmbMYjgd', '5900200'), - (1044, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'pmbMYjgd', '5900202'), - (1044, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'pmbMYjgd', '5900203'), - (1044, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'pmbMYjgd', '5901108'), - (1044, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'pmbMYjgd', '5901126'), - (1044, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'pmbMYjgd', '5901606'), - (1044, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'pmbMYjgd', '5909655'), - (1044, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'pmbMYjgd', '5910522'), - (1044, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'pmbMYjgd', '5910526'), - (1044, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'pmbMYjgd', '5910528'), - (1044, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'pmbMYjgd', '5916219'), - (1044, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'pmbMYjgd', '5936234'), - (1044, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'pmbMYjgd', '5958351'), - (1044, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'pmbMYjgd', '5959751'), - (1044, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'pmbMYjgd', '5959755'), - (1044, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'pmbMYjgd', '5960055'), - (1044, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'pmbMYjgd', '5961684'), - (1044, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'pmbMYjgd', '5962132'), - (1044, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'pmbMYjgd', '5962133'), - (1044, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'pmbMYjgd', '5962134'), - (1044, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'pmbMYjgd', '5962317'), - (1044, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'pmbMYjgd', '5962318'), - (1044, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'pmbMYjgd', '5965933'), - (1044, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'pmbMYjgd', '5967014'), - (1044, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'pmbMYjgd', '5972815'), - (1044, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'pmbMYjgd', '5974016'), - (1044, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'pmbMYjgd', '5981515'), - (1044, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'pmbMYjgd', '5993516'), - (1044, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'pmbMYjgd', '5998939'), - (1044, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'pmbMYjgd', '6028191'), - (1044, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'pmbMYjgd', '6040066'), - (1044, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'pmbMYjgd', '6042717'), - (1044, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'pmbMYjgd', '6044838'), - (1044, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'pmbMYjgd', '6044839'), - (1044, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbMYjgd', '6045684'), - (1044, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'pmbMYjgd', '6050104'), - (1044, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'pmbMYjgd', '6053195'), - (1044, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'pmbMYjgd', '6053198'), - (1044, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'pmbMYjgd', '6056085'), - (1044, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'pmbMYjgd', '6056916'), - (1044, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'pmbMYjgd', '6059290'), - (1044, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'pmbMYjgd', '6060328'), - (1044, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'pmbMYjgd', '6061037'), - (1044, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'pmbMYjgd', '6061039'), - (1044, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'pmbMYjgd', '6067245'), - (1044, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'pmbMYjgd', '6068094'), - (1044, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'pmbMYjgd', '6068252'), - (1044, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'pmbMYjgd', '6068253'), - (1044, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'pmbMYjgd', '6068254'), - (1044, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'pmbMYjgd', '6068280'), - (1044, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'pmbMYjgd', '6069093'), - (1044, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'pmbMYjgd', '6072528'), - (1044, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'pmbMYjgd', '6079840'), - (1044, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'pmbMYjgd', '6083398'), - (1044, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'pmbMYjgd', '6093504'), - (1044, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'pmbMYjgd', '6097414'), - (1044, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'pmbMYjgd', '6097442'), - (1044, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'pmbMYjgd', '6097684'), - (1044, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'pmbMYjgd', '6098762'), - (1044, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'pmbMYjgd', '6101361'), - (1044, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'pmbMYjgd', '6101362'), - (1044, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'pmbMYjgd', '6107314'), - (1044, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'pmbMYjgd', '6120034'), - (1044, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'pmbMYjgd', '6136733'), - (1044, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'pmbMYjgd', '6137989'), - (1044, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'pmbMYjgd', '6150864'), - (1044, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'pmbMYjgd', '6155491'), - (1044, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'pmbMYjgd', '6164417'), - (1044, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'pmbMYjgd', '6166388'), - (1044, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'pmbMYjgd', '6176439'), - (1044, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'pmbMYjgd', '6182410'), - (1044, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'pmbMYjgd', '6185812'), - (1044, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'pmbMYjgd', '6187651'), - (1044, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'pmbMYjgd', '6187963'), - (1044, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'pmbMYjgd', '6187964'), - (1044, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'pmbMYjgd', '6187966'), - (1044, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'pmbMYjgd', '6187967'), - (1044, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'pmbMYjgd', '6187969'), - (1044, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'pmbMYjgd', '6334878'), - (1044, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'pmbMYjgd', '6337236'), - (1044, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'pmbMYjgd', '6337970'), - (1044, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'pmbMYjgd', '6338308'), - (1044, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'pmbMYjgd', '6341710'), - (1044, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'pmbMYjgd', '6342044'), - (1044, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'pmbMYjgd', '6342298'), - (1044, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'pmbMYjgd', '6343294'), - (1044, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'pmbMYjgd', '6347034'), - (1044, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'pmbMYjgd', '6347056'), - (1044, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'pmbMYjgd', '6353830'), - (1044, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'pmbMYjgd', '6353831'), - (1044, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'pmbMYjgd', '6357867'), - (1044, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'pmbMYjgd', '6358652'), - (1044, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'pmbMYjgd', '6361709'), - (1044, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'pmbMYjgd', '6361710'), - (1044, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'pmbMYjgd', '6361711'), - (1044, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'pmbMYjgd', '6361712'), - (1044, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'pmbMYjgd', '6361713'), - (1044, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'pmbMYjgd', '6382573'), - (1044, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'pmbMYjgd', '6388604'), - (1044, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'pmbMYjgd', '6394629'), - (1044, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'pmbMYjgd', '6394631'), - (1044, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'pmbMYjgd', '6440863'), - (1044, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'pmbMYjgd', '6445440'), - (1044, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'pmbMYjgd', '6453951'), - (1044, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'pmbMYjgd', '6461696'), - (1044, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'pmbMYjgd', '6462129'), - (1044, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'pmbMYjgd', '6463218'), - (1044, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'pmbMYjgd', '6472181'), - (1044, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'pmbMYjgd', '6482693'), - (1044, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'pmbMYjgd', '6484200'), - (1044, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'pmbMYjgd', '6484680'), - (1044, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'pmbMYjgd', '6507741'), - (1044, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'pmbMYjgd', '6514659'), - (1044, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'pmbMYjgd', '6514660'), - (1044, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'pmbMYjgd', '6519103'), - (1044, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'pmbMYjgd', '6535681'), - (1044, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'pmbMYjgd', '6584747'), - (1044, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'pmbMYjgd', '6587097'), - (1044, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'pmbMYjgd', '6609022'), - (1044, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'pmbMYjgd', '6632757'), - (1044, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'pmbMYjgd', '6644187'), - (1044, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'pmbMYjgd', '6648951'), - (1044, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'pmbMYjgd', '6648952'), - (1044, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'pmbMYjgd', '6655401'), - (1044, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'pmbMYjgd', '6661585'), - (1044, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'pmbMYjgd', '6661588'), - (1044, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'pmbMYjgd', '6661589'), - (1044, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'pmbMYjgd', '6699906'), - (1044, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'pmbMYjgd', '6699913'), - (1044, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'pmbMYjgd', '6701109'), - (1044, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'pmbMYjgd', '6705219'), - (1044, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'pmbMYjgd', '6710153'), - (1044, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'pmbMYjgd', '6711552'), - (1044, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'pmbMYjgd', '6711553'), - (1044, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'pmbMYjgd', '6722688'), - (1044, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'pmbMYjgd', '6730620'), - (1044, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'pmbMYjgd', '6740364'), - (1044, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'pmbMYjgd', '6743829'), - (1044, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'pmbMYjgd', '7030380'), - (1044, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'pmbMYjgd', '7033677'), - (1044, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'pmbMYjgd', '7044715'), - (1044, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'pmbMYjgd', '7050318'), - (1044, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'pmbMYjgd', '7050319'), - (1044, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'pmbMYjgd', '7050322'), - (1044, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'pmbMYjgd', '7057804'), - (1044, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'pmbMYjgd', '7072824'), - (1044, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'pmbMYjgd', '7074348'), - (1044, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'pmbMYjgd', '7074364'), - (1044, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'pmbMYjgd', '7089267'), - (1044, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'pmbMYjgd', '7098747'), - (1044, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'pmbMYjgd', '7113468'), - (1044, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'pmbMYjgd', '7114856'), - (1044, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'pmbMYjgd', '7114951'), - (1044, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'pmbMYjgd', '7114955'), - (1044, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'pmbMYjgd', '7114956'), - (1044, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'pmbMYjgd', '7114957'), - (1044, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'pmbMYjgd', '7159484'), - (1044, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'pmbMYjgd', '7178446'), - (1044, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'pmbMYjgd', '7220467'), - (1044, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'pmbMYjgd', '7240354'), - (1044, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'pmbMYjgd', '7251633'), - (1044, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'pmbMYjgd', '7324073'), - (1044, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'pmbMYjgd', '7324074'), - (1044, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'pmbMYjgd', '7324075'), - (1044, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'pmbMYjgd', '7324078'), - (1044, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'pmbMYjgd', '7324082'), - (1044, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'pmbMYjgd', '7331457'), - (1044, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'pmbMYjgd', '7363643'), - (1044, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'pmbMYjgd', '7368606'), - (1044, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'pmbMYjgd', '7397462'), - (1044, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'pmbMYjgd', '7424275'), - (1044, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'pmbMYjgd', '7432751'), - (1044, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'pmbMYjgd', '7432752'), - (1044, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'pmbMYjgd', '7432753'), - (1044, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'pmbMYjgd', '7432754'), - (1044, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'pmbMYjgd', '7432755'), - (1044, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'pmbMYjgd', '7432756'), - (1044, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'pmbMYjgd', '7432758'), - (1044, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'pmbMYjgd', '7432759'), - (1044, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'pmbMYjgd', '7433834'), - (1044, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'pmbMYjgd', '7470197'), - (1044, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'pmbMYjgd', '7685613'), - (1044, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'pmbMYjgd', '7688194'), - (1044, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'pmbMYjgd', '7688196'), - (1044, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'pmbMYjgd', '7688289'), - (1044, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'pmbMYjgd', '7692763'), - (1044, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'pmbMYjgd', '7697552'), - (1044, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'pmbMYjgd', '7699878'), - (1044, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'pmbMYjgd', '7704043'), - (1044, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'pmbMYjgd', '7712467'), - (1044, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'pmbMYjgd', '7713585'), - (1044, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'pmbMYjgd', '7713586'), - (1044, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'pmbMYjgd', '7738518'), - (1044, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'pmbMYjgd', '7750636'), - (1044, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'pmbMYjgd', '7796540'), - (1044, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'pmbMYjgd', '7796541'), - (1044, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'pmbMYjgd', '7796542'), - (1044, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'pmbMYjgd', '7825913'), - (1044, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'pmbMYjgd', '7826209'), - (1044, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'pmbMYjgd', '7834742'), - (1044, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'pmbMYjgd', '7842108'), - (1044, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'pmbMYjgd', '7842902'), - (1044, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'pmbMYjgd', '7842903'), - (1044, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'pmbMYjgd', '7842904'), - (1044, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'pmbMYjgd', '7842905'), - (1044, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'pmbMYjgd', '7855719'), - (1044, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'pmbMYjgd', '7860683'), - (1044, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'pmbMYjgd', '7860684'), - (1044, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'pmbMYjgd', '7866095'), - (1044, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'pmbMYjgd', '7869170'), - (1044, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'pmbMYjgd', '7869188'), - (1044, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'pmbMYjgd', '7869201'), - (1044, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'pmbMYjgd', '7877465'), - (1044, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'pmbMYjgd', '7888250'), - (1044, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'pmbMYjgd', '7904777'), - (1044, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'pmbMYjgd', '8349164'), - (1044, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'pmbMYjgd', '8349545'), - (1044, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'pmbMYjgd', '8368028'), - (1044, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'pmbMYjgd', '8368029'), - (1044, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'pmbMYjgd', '8388462'), - (1044, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'pmbMYjgd', '8400273'), - (1044, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'pmbMYjgd', '8400275'), - (1044, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'pmbMYjgd', '8400276'), - (1044, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'pmbMYjgd', '8404977'), - (1044, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'pmbMYjgd', '8430783'), - (1044, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'pmbMYjgd', '8430784'), - (1044, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'pmbMYjgd', '8430799'), - (1044, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'pmbMYjgd', '8430800'), - (1044, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'pmbMYjgd', '8430801'), - (1044, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'pmbMYjgd', '8438709'), - (1044, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'pmbMYjgd', '8457738'), - (1044, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'pmbMYjgd', '8459566'), - (1044, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'pmbMYjgd', '8459567'), - (1044, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'pmbMYjgd', '8461032'), - (1044, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'pmbMYjgd', '8477877'), - (1044, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'pmbMYjgd', '8485688'), - (1044, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'pmbMYjgd', '8490587'), - (1044, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'pmbMYjgd', '8493552'), - (1044, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'pmbMYjgd', '8493553'), - (1044, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'pmbMYjgd', '8493554'), - (1044, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'pmbMYjgd', '8493555'), - (1044, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'pmbMYjgd', '8493556'), - (1044, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'pmbMYjgd', '8493557'), - (1044, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'pmbMYjgd', '8493558'), - (1044, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'pmbMYjgd', '8493559'), - (1044, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'pmbMYjgd', '8493560'), - (1044, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'pmbMYjgd', '8493561'), - (1044, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'pmbMYjgd', '8493572'), - (1044, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'pmbMYjgd', '8540725'), - (1044, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'pmbMYjgd', '8555421'), - (1045, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd5j1rN5m', '7074364'), - (1045, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'd5j1rN5m', '7291219'), - (1045, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'd5j1rN5m', '7301638'), - (1045, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd5j1rN5m', '7324073'), - (1045, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd5j1rN5m', '7324074'), - (1045, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd5j1rN5m', '7324075'), - (1045, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd5j1rN5m', '7324078'), - (1045, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd5j1rN5m', '7331457'), - (1045, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'd5j1rN5m', '7335193'), - (1045, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'd5j1rN5m', '7359624'), - (1045, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd5j1rN5m', '7363643'), - (1045, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd5j1rN5m', '7368606'), - (1046, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mb10vYRd', '6337970'), - (1046, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mb10vYRd', '6342044'), - (1046, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mb10vYRd', '6343294'), - (1046, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mb10vYRd', '6347034'), - (1046, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mb10vYRd', '6347056'), - (1046, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mb10vYRd', '6353830'), - (1046, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mb10vYRd', '6353831'), - (1046, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mb10vYRd', '6357867'), - (1046, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mb10vYRd', '6358652'), - (1046, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'mb10vYRd', '6361709'), - (1046, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mb10vYRd', '6361710'), - (1046, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mb10vYRd', '6361711'), - (1046, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mb10vYRd', '6361712'), - (1046, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mb10vYRd', '6361713'), - (1046, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mb10vYRd', '6382573'), - (1046, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mb10vYRd', '6388604'), - (1046, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mb10vYRd', '6394629'), - (1046, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mb10vYRd', '6394631'), - (1046, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mb10vYRd', '6431478'), - (1047, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AYRakkR4', '6337970'), - (1047, 2159, 'attending', '2023-07-22 21:52:03', '2025-12-17 19:46:53', 'AYRakkR4', '6338355'), - (1047, 2160, 'attending', '2023-07-29 16:34:48', '2025-12-17 19:46:54', 'AYRakkR4', '6338358'), - (1047, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AYRakkR4', '6342044'), - (1047, 2172, 'attending', '2023-07-20 02:43:20', '2025-12-17 19:46:53', 'AYRakkR4', '6342591'), - (1047, 2173, 'not_attending', '2023-07-20 00:59:43', '2025-12-17 19:46:53', 'AYRakkR4', '6342769'), - (1047, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AYRakkR4', '6343294'), - (1047, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AYRakkR4', '6347034'), - (1047, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AYRakkR4', '6347056'), - (1047, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AYRakkR4', '6353830'), - (1047, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AYRakkR4', '6353831'), - (1047, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AYRakkR4', '6357867'), - (1048, 245, 'attending', '2020-11-30 18:54:48', '2025-12-17 19:47:54', 'o4Po0QwA', '3149476'), - (1048, 246, 'attending', '2020-12-15 19:26:37', '2025-12-17 19:47:55', 'o4Po0QwA', '3149477'), - (1048, 409, 'attending', '2020-12-07 21:25:21', '2025-12-17 19:47:54', 'o4Po0QwA', '3236467'), - (1048, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'o4Po0QwA', '3285414'), - (1048, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'o4Po0QwA', '3297764'), - (1048, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'o4Po0QwA', '3313856'), - (1048, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'o4Po0QwA', '3314909'), - (1048, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'o4Po0QwA', '3314964'), - (1048, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'o4Po0QwA', '3323365'), - (1048, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'o4Po0QwA', '3324148'), - (1048, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'o4Po0QwA', '3329383'), - (1048, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'o4Po0QwA', '3351539'), - (1048, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'o4Po0QwA', '3386848'), - (1048, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'o4Po0QwA', '3389527'), - (1048, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'o4Po0QwA', '3396499'), - (1048, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'o4Po0QwA', '3403650'), - (1048, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'o4Po0QwA', '3406988'), - (1048, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'o4Po0QwA', '3416576'), - (1048, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'o4Po0QwA', '3418925'), - (1048, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4Po0QwA', '6045684'), - (1049, 255, 'maybe', '2021-03-23 23:10:55', '2025-12-17 19:47:43', 'bdzMMpD4', '3149486'), - (1049, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'bdzMMpD4', '3236465'), - (1049, 641, 'maybe', '2021-04-03 15:37:40', '2025-12-17 19:47:44', 'bdzMMpD4', '3539916'), - (1049, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'bdzMMpD4', '3539918'), - (1049, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'bdzMMpD4', '3539919'), - (1049, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'bdzMMpD4', '3539920'), - (1049, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'bdzMMpD4', '3539921'), - (1049, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'bdzMMpD4', '3539927'), - (1049, 689, 'attending', '2021-03-23 23:11:04', '2025-12-17 19:47:44', 'bdzMMpD4', '3555564'), - (1049, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'bdzMMpD4', '3582734'), - (1049, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdzMMpD4', '3583262'), - (1049, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'bdzMMpD4', '3619523'), - (1049, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdzMMpD4', '3661369'), - (1049, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'bdzMMpD4', '3674262'), - (1049, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdzMMpD4', '3677402'), - (1049, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'bdzMMpD4', '3730212'), - (1049, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'bdzMMpD4', '3793156'), - (1049, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'bdzMMpD4', '3803310'), - (1049, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'bdzMMpD4', '3806392'), - (1049, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzMMpD4', '6045684'), - (1050, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AnaYGVYm', '6361713'), - (1050, 2253, 'not_attending', '2023-09-27 22:18:44', '2025-12-17 19:46:45', 'AnaYGVYm', '6401811'), - (1050, 2264, 'attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'AnaYGVYm', '6431478'), - (1050, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AnaYGVYm', '6440863'), - (1050, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AnaYGVYm', '6445440'), - (1050, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AnaYGVYm', '6453951'), - (1050, 2284, 'maybe', '2023-10-12 14:42:43', '2025-12-17 19:46:46', 'AnaYGVYm', '6460928'), - (1050, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AnaYGVYm', '6461696'), - (1050, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AnaYGVYm', '6462129'), - (1050, 2290, 'not_attending', '2023-10-11 23:48:45', '2025-12-17 19:46:46', 'AnaYGVYm', '6462214'), - (1050, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AnaYGVYm', '6463218'), - (1050, 2296, 'maybe', '2023-10-18 22:32:39', '2025-12-17 19:46:47', 'AnaYGVYm', '6468393'), - (1050, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AnaYGVYm', '6472181'), - (1050, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AnaYGVYm', '6482693'), - (1050, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'AnaYGVYm', '6484200'), - (1050, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'AnaYGVYm', '6484680'), - (1050, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AnaYGVYm', '6507741'), - (1050, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AnaYGVYm', '6514659'), - (1050, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AnaYGVYm', '6514660'), - (1050, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AnaYGVYm', '6519103'), - (1050, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AnaYGVYm', '6535681'), - (1050, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AnaYGVYm', '6584747'), - (1050, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AnaYGVYm', '6587097'), - (1050, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AnaYGVYm', '6609022'), - (1050, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AnaYGVYm', '6632757'), - (1050, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AnaYGVYm', '6644187'), - (1050, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AnaYGVYm', '6648951'), - (1050, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AnaYGVYm', '6648952'), - (1050, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AnaYGVYm', '6655401'), - (1050, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AnaYGVYm', '6661585'), - (1050, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AnaYGVYm', '6661588'), - (1050, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AnaYGVYm', '6661589'), - (1050, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AnaYGVYm', '6699906'), - (1050, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AnaYGVYm', '6701109'), - (1050, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AnaYGVYm', '6705219'), - (1050, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AnaYGVYm', '6710153'), - (1050, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AnaYGVYm', '6711552'), - (1050, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AnaYGVYm', '6711553'), - (1051, 1242, 'attending', '2022-04-30 22:53:32', '2025-12-17 19:47:25', '4PNL6PZm', '5052241'), - (1051, 1348, 'attending', '2022-05-01 18:39:16', '2025-12-17 19:47:28', '4PNL6PZm', '5247605'), - (1051, 1355, 'attending', '2022-04-29 18:10:47', '2025-12-17 19:47:27', '4PNL6PZm', '5252573'), - (1051, 1362, 'not_attending', '2022-04-30 02:25:09', '2025-12-17 19:47:28', '4PNL6PZm', '5260800'), - (1051, 1365, 'attending', '2022-05-01 18:38:26', '2025-12-17 19:47:28', '4PNL6PZm', '5261600'), - (1051, 1367, 'not_attending', '2022-05-01 18:39:01', '2025-12-17 19:47:28', '4PNL6PZm', '5262345'), - (1051, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4PNL6PZm', '5269930'), - (1051, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4PNL6PZm', '5271448'), - (1051, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4PNL6PZm', '5271449'), - (1051, 1383, 'not_attending', '2022-05-04 23:14:02', '2025-12-17 19:47:28', '4PNL6PZm', '5276469'), - (1051, 1384, 'not_attending', '2022-05-08 21:45:44', '2025-12-17 19:47:28', '4PNL6PZm', '5277078'), - (1051, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4PNL6PZm', '5278159'), - (1051, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4PNL6PZm', '5363695'), - (1051, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4PNL6PZm', '5365960'), - (1051, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4PNL6PZm', '5368973'), - (1051, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4PNL6PZm', '5378247'), - (1051, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4PNL6PZm', '5389605'), - (1051, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4PNL6PZm', '5397265'), - (1051, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4PNL6PZm', '5403967'), - (1051, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4PNL6PZm', '5404786'), - (1051, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4PNL6PZm', '5405203'), - (1051, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4PNL6PZm', '5411699'), - (1051, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4PNL6PZm', '5412550'), - (1051, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4PNL6PZm', '5415046'), - (1051, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4PNL6PZm', '5422086'), - (1051, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4PNL6PZm', '5422406'), - (1051, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4PNL6PZm', '5424565'), - (1051, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4PNL6PZm', '5426882'), - (1051, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4PNL6PZm', '5427083'), - (1051, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '4PNL6PZm', '5441125'), - (1051, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4PNL6PZm', '5441126'), - (1051, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4PNL6PZm', '5441128'), - (1051, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4PNL6PZm', '5441131'), - (1051, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4PNL6PZm', '5441132'), - (1051, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4PNL6PZm', '5446643'), - (1051, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4PNL6PZm', '5453325'), - (1051, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4PNL6PZm', '5454516'), - (1051, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4PNL6PZm', '5454605'), - (1051, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4PNL6PZm', '5455037'), - (1051, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4PNL6PZm', '5461278'), - (1051, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4PNL6PZm', '5469480'), - (1051, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4PNL6PZm', '5471073'), - (1051, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4PNL6PZm', '5474663'), - (1051, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4PNL6PZm', '5482022'), - (1051, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4PNL6PZm', '5482793'), - (1051, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4PNL6PZm', '5488912'), - (1051, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4PNL6PZm', '5492192'), - (1051, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4PNL6PZm', '5493139'), - (1051, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4PNL6PZm', '5493200'), - (1051, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4PNL6PZm', '5502188'), - (1051, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4PNL6PZm', '5505059'), - (1051, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4PNL6PZm', '5509055'), - (1051, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4PNL6PZm', '5512862'), - (1051, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4PNL6PZm', '5513985'), - (1051, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '4PNL6PZm', '5519981'), - (1051, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4PNL6PZm', '5522550'), - (1051, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4PNL6PZm', '5534683'), - (1051, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4PNL6PZm', '5546619'), - (1051, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4PNL6PZm', '5555245'), - (1051, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4PNL6PZm', '5557747'), - (1051, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNL6PZm', '6045684'), - (1052, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '8dBNlzvd', '3517816'), - (1052, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8dBNlzvd', '3539927'), - (1052, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8dBNlzvd', '3582734'), - (1052, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dBNlzvd', '6045684'), - (1053, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'nda6Q9am', '3149489'), - (1053, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'nda6Q9am', '3149491'), - (1053, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'nda6Q9am', '3236450'), - (1053, 644, 'maybe', '2021-05-29 15:49:48', '2025-12-17 19:47:46', 'nda6Q9am', '3539919'), - (1053, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'nda6Q9am', '3975311'), - (1053, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'nda6Q9am', '3994992'), - (1053, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'nda6Q9am', '4014338'), - (1053, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nda6Q9am', '6045684'), - (1054, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'AgkYqBrA', '4736497'), - (1054, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'AgkYqBrA', '4736499'), - (1054, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'AgkYqBrA', '4736500'), - (1054, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'AgkYqBrA', '4736503'), - (1054, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'AgkYqBrA', '4736504'), - (1054, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AgkYqBrA', '4746789'), - (1054, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AgkYqBrA', '4753929'), - (1054, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'AgkYqBrA', '5038850'), - (1054, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AgkYqBrA', '5045826'), - (1054, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'AgkYqBrA', '5132533'), - (1054, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AgkYqBrA', '6045684'), - (1055, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dzbaOMbd', '7113468'), - (1055, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dzbaOMbd', '7114856'), - (1055, 2555, 'not_attending', '2024-04-13 21:48:38', '2025-12-17 19:46:34', 'dzbaOMbd', '7114951'), - (1055, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dzbaOMbd', '7114956'), - (1055, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dzbaOMbd', '7114957'), - (1055, 2561, 'attending', '2024-04-01 22:20:07', '2025-12-17 19:46:33', 'dzbaOMbd', '7131267'), - (1055, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dzbaOMbd', '7153615'), - (1055, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dzbaOMbd', '7159484'), - (1055, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzbaOMbd', '7178446'), - (1055, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dzbaOMbd', '7220467'), - (1055, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dzbaOMbd', '7240354'), - (1055, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dzbaOMbd', '7251633'), - (1055, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dzbaOMbd', '7302674'), - (1056, 1114, 'maybe', '2021-11-13 00:51:29', '2025-12-17 19:47:36', 'd9nPZvEm', '4637896'), - (1056, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'd9nPZvEm', '4642994'), - (1056, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'd9nPZvEm', '4642995'), - (1056, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'd9nPZvEm', '4642996'), - (1056, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'd9nPZvEm', '4642997'), - (1056, 1120, 'maybe', '2021-11-14 22:33:17', '2025-12-17 19:47:37', 'd9nPZvEm', '4644021'), - (1056, 1124, 'maybe', '2021-12-07 17:03:13', '2025-12-17 19:47:38', 'd9nPZvEm', '4644025'), - (1056, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd9nPZvEm', '4645687'), - (1056, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd9nPZvEm', '4645698'), - (1056, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd9nPZvEm', '4645704'), - (1056, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd9nPZvEm', '4645705'), - (1056, 1131, 'maybe', '2021-12-18 22:59:27', '2025-12-17 19:47:31', 'd9nPZvEm', '4658825'), - (1056, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'd9nPZvEm', '4668385'), - (1056, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'd9nPZvEm', '4694407'), - (1056, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'd9nPZvEm', '4706262'), - (1056, 1162, 'maybe', '2022-01-03 16:27:59', '2025-12-17 19:47:31', 'd9nPZvEm', '4718771'), - (1056, 1173, 'maybe', '2022-01-03 19:49:35', '2025-12-17 19:47:31', 'd9nPZvEm', '4736495'), - (1056, 1174, 'maybe', '2022-01-11 18:23:08', '2025-12-17 19:47:31', 'd9nPZvEm', '4736496'), - (1056, 1175, 'maybe', '2022-01-16 23:50:40', '2025-12-17 19:47:32', 'd9nPZvEm', '4736497'), - (1056, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd9nPZvEm', '4736499'), - (1056, 1178, 'maybe', '2022-01-26 21:34:27', '2025-12-17 19:47:32', 'd9nPZvEm', '4736500'), - (1056, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd9nPZvEm', '4736503'), - (1056, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd9nPZvEm', '4736504'), - (1056, 1185, 'not_attending', '2022-01-14 14:25:45', '2025-12-17 19:47:31', 'd9nPZvEm', '4746789'), - (1056, 1188, 'maybe', '2022-01-11 18:22:38', '2025-12-17 19:47:32', 'd9nPZvEm', '4753929'), - (1056, 1210, 'not_attending', '2022-01-22 22:53:32', '2025-12-17 19:47:32', 'd9nPZvEm', '4776927'), - (1056, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd9nPZvEm', '5038850'), - (1056, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd9nPZvEm', '5045826'), - (1056, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd9nPZvEm', '5132533'), - (1056, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd9nPZvEm', '5186582'), - (1056, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd9nPZvEm', '5186583'), - (1056, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd9nPZvEm', '5186585'), - (1056, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9nPZvEm', '5190437'), - (1056, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9nPZvEm', '5215989'), - (1056, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9nPZvEm', '6045684'), - (1057, 634, 'attending', '2021-03-30 02:17:50', '2025-12-17 19:47:44', 'ydwwbMjd', '3534718'), - (1057, 635, 'attending', '2021-04-07 23:35:59', '2025-12-17 19:47:44', 'ydwwbMjd', '3534719'), - (1057, 636, 'attending', '2021-04-16 11:31:15', '2025-12-17 19:47:45', 'ydwwbMjd', '3534720'), - (1057, 641, 'attending', '2021-03-31 04:22:11', '2025-12-17 19:47:44', 'ydwwbMjd', '3539916'), - (1057, 642, 'attending', '2021-04-10 15:47:40', '2025-12-17 19:47:44', 'ydwwbMjd', '3539917'), - (1057, 643, 'attending', '2021-04-15 13:14:06', '2025-12-17 19:47:45', 'ydwwbMjd', '3539918'), - (1057, 644, 'attending', '2021-04-18 16:11:05', '2025-12-17 19:47:45', 'ydwwbMjd', '3539919'), - (1057, 645, 'attending', '2021-04-22 14:37:24', '2025-12-17 19:47:46', 'ydwwbMjd', '3539920'), - (1057, 646, 'attending', '2021-05-09 13:59:33', '2025-12-17 19:47:46', 'ydwwbMjd', '3539921'), - (1057, 647, 'attending', '2021-05-17 10:52:14', '2025-12-17 19:47:46', 'ydwwbMjd', '3539922'), - (1057, 648, 'attending', '2021-05-23 02:24:26', '2025-12-17 19:47:47', 'ydwwbMjd', '3539923'), - (1057, 689, 'attending', '2021-03-21 20:23:54', '2025-12-17 19:47:44', 'ydwwbMjd', '3555564'), - (1057, 703, 'not_attending', '2021-04-11 21:43:11', '2025-12-17 19:47:44', 'ydwwbMjd', '3578388'), - (1057, 704, 'attending', '2021-03-31 16:47:58', '2025-12-17 19:47:44', 'ydwwbMjd', '3581429'), - (1057, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ydwwbMjd', '3583262'), - (1057, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydwwbMjd', '3619523'), - (1057, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydwwbMjd', '3661369'), - (1057, 728, 'not_attending', '2021-04-14 22:02:03', '2025-12-17 19:47:44', 'ydwwbMjd', '3668073'), - (1057, 729, 'not_attending', '2021-04-28 14:28:03', '2025-12-17 19:47:46', 'ydwwbMjd', '3668075'), - (1057, 730, 'not_attending', '2021-04-28 14:28:11', '2025-12-17 19:47:46', 'ydwwbMjd', '3668076'), - (1057, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydwwbMjd', '3674262'), - (1057, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydwwbMjd', '3677402'), - (1057, 738, 'attending', '2021-04-22 14:37:42', '2025-12-17 19:47:45', 'ydwwbMjd', '3680615'), - (1057, 739, 'attending', '2021-05-05 02:08:56', '2025-12-17 19:47:46', 'ydwwbMjd', '3680616'), - (1057, 741, 'attending', '2021-05-20 13:58:51', '2025-12-17 19:47:46', 'ydwwbMjd', '3680618'), - (1057, 748, 'attending', '2021-04-07 23:35:41', '2025-12-17 19:47:44', 'ydwwbMjd', '3685353'), - (1057, 752, 'attending', '2021-04-11 15:39:58', '2025-12-17 19:47:44', 'ydwwbMjd', '3699422'), - (1057, 756, 'not_attending', '2021-04-23 01:09:54', '2025-12-17 19:47:46', 'ydwwbMjd', '3704795'), - (1057, 758, 'attending', '2021-04-16 11:31:54', '2025-12-17 19:47:45', 'ydwwbMjd', '3713700'), - (1057, 759, 'attending', '2021-04-16 11:32:14', '2025-12-17 19:47:45', 'ydwwbMjd', '3713701'), - (1057, 761, 'attending', '2021-05-14 13:20:52', '2025-12-17 19:47:46', 'ydwwbMjd', '3716041'), - (1057, 768, 'attending', '2021-04-23 01:09:21', '2025-12-17 19:47:46', 'ydwwbMjd', '3724124'), - (1057, 769, 'attending', '2021-04-23 01:09:27', '2025-12-17 19:47:46', 'ydwwbMjd', '3724127'), - (1057, 770, 'attending', '2021-04-23 01:09:38', '2025-12-17 19:47:46', 'ydwwbMjd', '3724559'), - (1057, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydwwbMjd', '3730212'), - (1057, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydwwbMjd', '3793156'), - (1057, 796, 'attending', '2021-05-10 20:06:48', '2025-12-17 19:47:46', 'ydwwbMjd', '3793862'), - (1057, 797, 'attending', '2021-05-25 20:42:21', '2025-12-17 19:47:47', 'ydwwbMjd', '3796195'), - (1057, 804, 'attending', '2021-05-16 02:53:10', '2025-12-17 19:47:47', 'ydwwbMjd', '3804775'), - (1057, 809, 'attending', '2021-05-16 02:52:06', '2025-12-17 19:47:46', 'ydwwbMjd', '3807964'), - (1057, 815, 'attending', '2021-05-28 11:19:07', '2025-12-17 19:47:47', 'ydwwbMjd', '3818136'), - (1057, 823, 'attending', '2021-06-16 11:47:44', '2025-12-17 19:47:48', 'ydwwbMjd', '3974109'), - (1057, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydwwbMjd', '3975311'), - (1057, 828, 'attending', '2021-06-12 12:07:29', '2025-12-17 19:47:47', 'ydwwbMjd', '3975312'), - (1057, 832, 'not_attending', '2021-05-31 00:06:27', '2025-12-17 19:47:47', 'ydwwbMjd', '3976650'), - (1057, 833, 'attending', '2021-06-07 11:13:25', '2025-12-17 19:47:47', 'ydwwbMjd', '3990438'), - (1057, 838, 'attending', '2021-06-06 21:44:34', '2025-12-17 19:47:47', 'ydwwbMjd', '3994992'), - (1057, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ydwwbMjd', '4014338'), - (1057, 866, 'attending', '2021-06-21 13:07:20', '2025-12-17 19:47:38', 'ydwwbMjd', '4020424'), - (1057, 867, 'attending', '2021-06-25 18:07:04', '2025-12-17 19:47:38', 'ydwwbMjd', '4021848'), - (1057, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ydwwbMjd', '4136744'), - (1057, 870, 'attending', '2021-06-27 14:27:00', '2025-12-17 19:47:38', 'ydwwbMjd', '4136937'), - (1057, 871, 'attending', '2021-07-04 05:51:35', '2025-12-17 19:47:39', 'ydwwbMjd', '4136938'), - (1057, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwwbMjd', '4136947'), - (1057, 879, 'not_attending', '2021-06-26 14:10:07', '2025-12-17 19:47:38', 'ydwwbMjd', '4147806'), - (1057, 884, 'attending', '2021-07-17 05:01:46', '2025-12-17 19:47:42', 'ydwwbMjd', '4210314'), - (1057, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwwbMjd', '4225444'), - (1057, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydwwbMjd', '4239259'), - (1057, 900, 'attending', '2021-07-23 22:14:40', '2025-12-17 19:47:40', 'ydwwbMjd', '4240316'), - (1057, 901, 'attending', '2021-07-25 18:57:42', '2025-12-17 19:47:40', 'ydwwbMjd', '4240317'), - (1057, 902, 'attending', '2021-08-06 01:10:31', '2025-12-17 19:47:41', 'ydwwbMjd', '4240318'), - (1057, 903, 'attending', '2021-08-11 11:14:51', '2025-12-17 19:47:42', 'ydwwbMjd', '4240320'), - (1057, 905, 'attending', '2021-07-06 12:18:25', '2025-12-17 19:47:39', 'ydwwbMjd', '4250163'), - (1057, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ydwwbMjd', '4275957'), - (1057, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydwwbMjd', '4277819'), - (1057, 922, 'attending', '2021-07-14 02:24:58', '2025-12-17 19:47:40', 'ydwwbMjd', '4280811'), - (1057, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydwwbMjd', '4301723'), - (1057, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ydwwbMjd', '4302093'), - (1057, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydwwbMjd', '4304151'), - (1057, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ydwwbMjd', '4356801'), - (1057, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ydwwbMjd', '4366186'), - (1057, 974, 'attending', '2021-08-18 23:35:00', '2025-12-17 19:47:42', 'ydwwbMjd', '4366187'), - (1057, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ydwwbMjd', '4420735'), - (1057, 991, 'attending', '2021-09-08 01:17:22', '2025-12-17 19:47:43', 'ydwwbMjd', '4420738'), - (1057, 992, 'attending', '2021-09-15 23:15:24', '2025-12-17 19:47:33', 'ydwwbMjd', '4420739'), - (1057, 993, 'attending', '2021-09-22 18:59:50', '2025-12-17 19:47:34', 'ydwwbMjd', '4420741'), - (1057, 995, 'attending', '2021-10-04 19:34:14', '2025-12-17 19:47:34', 'ydwwbMjd', '4420744'), - (1057, 996, 'attending', '2021-10-16 02:13:53', '2025-12-17 19:47:35', 'ydwwbMjd', '4420747'), - (1057, 997, 'attending', '2021-10-23 15:27:03', '2025-12-17 19:47:35', 'ydwwbMjd', '4420748'), - (1057, 998, 'attending', '2021-10-26 01:37:02', '2025-12-17 19:47:36', 'ydwwbMjd', '4420749'), - (1057, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ydwwbMjd', '4461883'), - (1057, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ydwwbMjd', '4508342'), - (1057, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ydwwbMjd', '4568602'), - (1057, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ydwwbMjd', '4572153'), - (1057, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ydwwbMjd', '4585962'), - (1057, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ydwwbMjd', '4596356'), - (1057, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ydwwbMjd', '4598860'), - (1057, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ydwwbMjd', '4598861'), - (1057, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ydwwbMjd', '4602797'), - (1057, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ydwwbMjd', '4645687'), - (1057, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ydwwbMjd', '4645698'), - (1057, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ydwwbMjd', '4645704'), - (1057, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ydwwbMjd', '4645705'), - (1057, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ydwwbMjd', '4668385'), - (1057, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ydwwbMjd', '4694407'), - (1057, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'ydwwbMjd', '4706262'), - (1057, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwwbMjd', '6045684'), - (1058, 573, 'maybe', '2021-02-23 20:02:13', '2025-12-17 19:47:50', 'NmLPbEJm', '3435542'), - (1058, 594, 'attending', '2021-02-27 19:41:47', '2025-12-17 19:47:51', 'NmLPbEJm', '3467759'), - (1058, 595, 'not_attending', '2021-03-09 00:13:59', '2025-12-17 19:47:51', 'NmLPbEJm', '3467761'), - (1058, 603, 'maybe', '2021-02-20 23:28:09', '2025-12-17 19:47:50', 'NmLPbEJm', '3470304'), - (1058, 604, 'maybe', '2021-02-27 19:41:22', '2025-12-17 19:47:50', 'NmLPbEJm', '3470305'), - (1058, 610, 'attending', '2021-02-14 03:57:24', '2025-12-17 19:47:50', 'NmLPbEJm', '3482159'), - (1058, 612, 'attending', '2021-02-16 03:54:25', '2025-12-17 19:47:50', 'NmLPbEJm', '3490040'), - (1058, 613, 'maybe', '2021-02-23 20:01:52', '2025-12-17 19:47:50', 'NmLPbEJm', '3490041'), - (1058, 614, 'attending', '2021-03-03 23:29:07', '2025-12-17 19:47:51', 'NmLPbEJm', '3490042'), - (1058, 615, 'attending', '2021-02-18 22:19:57', '2025-12-17 19:47:50', 'NmLPbEJm', '3490045'), - (1058, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'NmLPbEJm', '3517815'), - (1058, 622, 'attending', '2021-03-12 03:22:50', '2025-12-17 19:47:51', 'NmLPbEJm', '3517816'), - (1058, 623, 'attending', '2021-02-27 19:41:17', '2025-12-17 19:47:50', 'NmLPbEJm', '3523941'), - (1058, 628, 'attending', '2021-03-14 04:21:30', '2025-12-17 19:47:51', 'NmLPbEJm', '3533305'), - (1058, 631, 'attending', '2021-03-07 23:51:50', '2025-12-17 19:47:51', 'NmLPbEJm', '3533850'), - (1058, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'NmLPbEJm', '3536632'), - (1058, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'NmLPbEJm', '3536656'), - (1058, 640, 'attending', '2021-03-03 23:29:18', '2025-12-17 19:47:51', 'NmLPbEJm', '3538866'), - (1058, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'NmLPbEJm', '3539916'), - (1058, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'NmLPbEJm', '3539917'), - (1058, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'NmLPbEJm', '3539918'), - (1058, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'NmLPbEJm', '3539919'), - (1058, 645, 'attending', '2021-05-03 17:58:33', '2025-12-17 19:47:46', 'NmLPbEJm', '3539920'), - (1058, 646, 'attending', '2021-05-15 22:32:25', '2025-12-17 19:47:46', 'NmLPbEJm', '3539921'), - (1058, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'NmLPbEJm', '3539922'), - (1058, 648, 'attending', '2021-05-29 21:34:03', '2025-12-17 19:47:47', 'NmLPbEJm', '3539923'), - (1058, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'NmLPbEJm', '3539927'), - (1058, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'NmLPbEJm', '3582734'), - (1058, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLPbEJm', '3583262'), - (1058, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLPbEJm', '3619523'), - (1058, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLPbEJm', '3661369'), - (1058, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLPbEJm', '3674262'), - (1058, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'NmLPbEJm', '3677402'), - (1058, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLPbEJm', '3730212'), - (1058, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLPbEJm', '3793156'), - (1058, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'NmLPbEJm', '3974109'), - (1058, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLPbEJm', '3975311'), - (1058, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'NmLPbEJm', '3975312'), - (1058, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLPbEJm', '3994992'), - (1058, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLPbEJm', '4014338'), - (1058, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'NmLPbEJm', '4021848'), - (1058, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLPbEJm', '4136744'), - (1058, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'NmLPbEJm', '4136937'), - (1058, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'NmLPbEJm', '4136938'), - (1058, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'NmLPbEJm', '4136947'), - (1058, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLPbEJm', '4225444'), - (1058, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLPbEJm', '4239259'), - (1058, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmLPbEJm', '4250163'), - (1058, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLPbEJm', '6045684'), - (1059, 407, 'maybe', '2021-04-15 00:59:10', '2025-12-17 19:47:44', 'xAYxbq9m', '3236465'), - (1059, 643, 'not_attending', '2021-04-16 03:26:51', '2025-12-17 19:47:45', 'xAYxbq9m', '3539918'), - (1059, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'xAYxbq9m', '3539919'), - (1059, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'xAYxbq9m', '3539920'), - (1059, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'xAYxbq9m', '3539921'), - (1059, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xAYxbq9m', '3539922'), - (1059, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'xAYxbq9m', '3539923'), - (1059, 706, 'maybe', '2021-04-16 02:03:02', '2025-12-17 19:47:45', 'xAYxbq9m', '3582734'), - (1059, 707, 'not_attending', '2021-04-19 21:57:13', '2025-12-17 19:47:46', 'xAYxbq9m', '3583262'), - (1059, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'xAYxbq9m', '3730212'), - (1059, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'xAYxbq9m', '3793156'), - (1059, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xAYxbq9m', '3975311'), - (1059, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xAYxbq9m', '3994992'), - (1059, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYxbq9m', '6045684'), - (1060, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRlpDQ4', '6045684'), - (1061, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4ooDMYw4', '5880940'), - (1061, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4ooDMYw4', '5880942'), - (1061, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4ooDMYw4', '5880943'), - (1061, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4ooDMYw4', '5900199'), - (1061, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4ooDMYw4', '5900200'), - (1061, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4ooDMYw4', '5900202'), - (1061, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4ooDMYw4', '5900203'), - (1061, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4ooDMYw4', '5909655'), - (1061, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4ooDMYw4', '5910522'), - (1061, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4ooDMYw4', '5910526'), - (1061, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4ooDMYw4', '5910528'), - (1061, 1920, 'attending', '2023-02-10 03:08:00', '2025-12-17 19:47:07', '4ooDMYw4', '5914091'), - (1061, 1921, 'attending', '2023-02-14 05:48:02', '2025-12-17 19:47:08', '4ooDMYw4', '5914092'), - (1061, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4ooDMYw4', '5916219'), - (1061, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4ooDMYw4', '5936234'), - (1061, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '4ooDMYw4', '5936691'), - (1061, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4ooDMYw4', '5958351'), - (1061, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4ooDMYw4', '5959751'), - (1061, 1939, 'attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4ooDMYw4', '5959755'), - (1061, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4ooDMYw4', '5960055'), - (1061, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4ooDMYw4', '5961684'), - (1061, 1943, 'attending', '2023-03-07 11:58:53', '2025-12-17 19:47:10', '4ooDMYw4', '5962091'), - (1061, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4ooDMYw4', '5962132'), - (1061, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4ooDMYw4', '5962133'), - (1061, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4ooDMYw4', '5962134'), - (1061, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4ooDMYw4', '5962317'), - (1061, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4ooDMYw4', '5962318'), - (1061, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4ooDMYw4', '5965933'), - (1061, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4ooDMYw4', '5967014'), - (1061, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4ooDMYw4', '5972815'), - (1061, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4ooDMYw4', '5974016'), - (1061, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4ooDMYw4', '5981515'), - (1061, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4ooDMYw4', '5993516'), - (1061, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4ooDMYw4', '5998939'), - (1061, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4ooDMYw4', '6028191'), - (1061, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4ooDMYw4', '6040066'), - (1061, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4ooDMYw4', '6042717'), - (1061, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ooDMYw4', '6045684'), - (1062, 646, 'not_attending', '2021-05-12 19:39:44', '2025-12-17 19:47:46', '1ArL9Wwd', '3539921'), - (1062, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '1ArL9Wwd', '3539922'), - (1062, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '1ArL9Wwd', '3539923'), - (1062, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '1ArL9Wwd', '3974109'), - (1062, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '1ArL9Wwd', '3975311'), - (1062, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '1ArL9Wwd', '3975312'), - (1062, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '1ArL9Wwd', '3994992'), - (1062, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '1ArL9Wwd', '4014338'), - (1062, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '1ArL9Wwd', '4021848'), - (1062, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '1ArL9Wwd', '4136744'), - (1062, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '1ArL9Wwd', '4136937'), - (1062, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '1ArL9Wwd', '4136938'), - (1062, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '1ArL9Wwd', '4136947'), - (1062, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '1ArL9Wwd', '4210314'), - (1062, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '1ArL9Wwd', '4225444'), - (1062, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '1ArL9Wwd', '4239259'), - (1062, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '1ArL9Wwd', '4240316'), - (1062, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '1ArL9Wwd', '4240317'), - (1062, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '1ArL9Wwd', '4240318'), - (1062, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '1ArL9Wwd', '4240320'), - (1062, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '1ArL9Wwd', '4250163'), - (1062, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '1ArL9Wwd', '4275957'), - (1062, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '1ArL9Wwd', '4277819'), - (1062, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '1ArL9Wwd', '4301723'), - (1062, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '1ArL9Wwd', '4302093'), - (1062, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '1ArL9Wwd', '4304151'), - (1062, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '1ArL9Wwd', '4356801'), - (1062, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '1ArL9Wwd', '4366186'), - (1062, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '1ArL9Wwd', '4366187'), - (1062, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '1ArL9Wwd', '4420735'), - (1062, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '1ArL9Wwd', '4420738'), - (1062, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '1ArL9Wwd', '4420739'), - (1062, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '1ArL9Wwd', '4420741'), - (1062, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '1ArL9Wwd', '4420744'), - (1062, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '1ArL9Wwd', '4420747'), - (1062, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '1ArL9Wwd', '4420748'), - (1062, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '1ArL9Wwd', '4420749'), - (1062, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '1ArL9Wwd', '4461883'), - (1062, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '1ArL9Wwd', '4508342'), - (1062, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '1ArL9Wwd', '4568602'), - (1062, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '1ArL9Wwd', '4572153'), - (1062, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '1ArL9Wwd', '4585962'), - (1062, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '1ArL9Wwd', '4596356'), - (1062, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '1ArL9Wwd', '4598860'), - (1062, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '1ArL9Wwd', '4598861'), - (1062, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '1ArL9Wwd', '4602797'), - (1062, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '1ArL9Wwd', '4637896'), - (1062, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '1ArL9Wwd', '4642994'), - (1062, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '1ArL9Wwd', '4642995'), - (1062, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '1ArL9Wwd', '4642996'), - (1062, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '1ArL9Wwd', '4642997'), - (1062, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '1ArL9Wwd', '4645687'), - (1062, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '1ArL9Wwd', '4645698'), - (1062, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '1ArL9Wwd', '4645704'), - (1062, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '1ArL9Wwd', '4645705'), - (1062, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '1ArL9Wwd', '4668385'), - (1062, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '1ArL9Wwd', '4694407'), - (1062, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '1ArL9Wwd', '4706262'), - (1062, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '1ArL9Wwd', '4736497'), - (1062, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '1ArL9Wwd', '4736499'), - (1062, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '1ArL9Wwd', '4736500'), - (1062, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '1ArL9Wwd', '4736503'), - (1062, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '1ArL9Wwd', '4736504'), - (1062, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '1ArL9Wwd', '4746789'), - (1062, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '1ArL9Wwd', '4753929'), - (1062, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '1ArL9Wwd', '5038850'), - (1062, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '1ArL9Wwd', '5045826'), - (1062, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '1ArL9Wwd', '5132533'), - (1062, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '1ArL9Wwd', '5186582'), - (1062, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '1ArL9Wwd', '5186583'), - (1062, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '1ArL9Wwd', '5186585'), - (1062, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '1ArL9Wwd', '5190437'), - (1062, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '1ArL9Wwd', '5215989'), - (1062, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArL9Wwd', '6045684'), - (1063, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'lAe1EMWA', '3470305'), - (1063, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'lAe1EMWA', '3470991'), - (1063, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'lAe1EMWA', '3517815'), - (1063, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'lAe1EMWA', '3523941'), - (1063, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'lAe1EMWA', '3533850'), - (1063, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'lAe1EMWA', '3536632'), - (1063, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'lAe1EMWA', '3536656'), - (1063, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'lAe1EMWA', '3539916'), - (1063, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'lAe1EMWA', '3539917'), - (1063, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'lAe1EMWA', '3539918'), - (1063, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'lAe1EMWA', '3539919'), - (1063, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'lAe1EMWA', '3539920'), - (1063, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'lAe1EMWA', '3539921'), - (1063, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'lAe1EMWA', '3539922'), - (1063, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'lAe1EMWA', '3539923'), - (1063, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAe1EMWA', '6045684'), - (1064, 258, 'attending', '2021-06-01 03:51:14', '2025-12-17 19:47:47', 'N4ErGrDd', '3149489'), - (1064, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'N4ErGrDd', '3974109'), - (1064, 824, 'attending', '2021-06-03 22:06:56', '2025-12-17 19:47:47', 'N4ErGrDd', '3974112'), - (1064, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'N4ErGrDd', '3975311'), - (1064, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'N4ErGrDd', '3975312'), - (1064, 830, 'attending', '2021-06-03 22:06:52', '2025-12-17 19:47:47', 'N4ErGrDd', '3976648'), - (1064, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'N4ErGrDd', '3994992'), - (1064, 841, 'attending', '2021-06-14 20:00:37', '2025-12-17 19:47:48', 'N4ErGrDd', '4007434'), - (1064, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'N4ErGrDd', '4014338'), - (1064, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'N4ErGrDd', '4136744'), - (1064, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'N4ErGrDd', '4136947'), - (1064, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4ErGrDd', '6045684'), - (1065, 1355, 'attending', '2022-04-29 04:45:27', '2025-12-17 19:47:27', 'mR6vj3Pm', '5252573'), - (1065, 1362, 'attending', '2022-04-27 21:46:16', '2025-12-17 19:47:28', 'mR6vj3Pm', '5260800'), - (1065, 1374, 'not_attending', '2022-05-07 20:14:49', '2025-12-17 19:47:28', 'mR6vj3Pm', '5269930'), - (1065, 1378, 'not_attending', '2022-05-14 22:13:38', '2025-12-17 19:47:29', 'mR6vj3Pm', '5271448'), - (1065, 1379, 'maybe', '2022-05-06 21:07:29', '2025-12-17 19:47:30', 'mR6vj3Pm', '5271449'), - (1065, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mR6vj3Pm', '5276469'), - (1065, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mR6vj3Pm', '5278159'), - (1065, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mR6vj3Pm', '5363695'), - (1065, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mR6vj3Pm', '5365960'), - (1065, 1415, 'maybe', '2022-05-19 18:57:59', '2025-12-17 19:47:30', 'mR6vj3Pm', '5368973'), - (1065, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mR6vj3Pm', '5378247'), - (1065, 1431, 'attending', '2022-06-09 18:17:27', '2025-12-17 19:47:30', 'mR6vj3Pm', '5389605'), - (1065, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mR6vj3Pm', '5397265'), - (1065, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mR6vj3Pm', '5403967'), - (1065, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mR6vj3Pm', '5404786'), - (1065, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mR6vj3Pm', '5405203'), - (1065, 1470, 'maybe', '2022-06-13 00:07:44', '2025-12-17 19:47:17', 'mR6vj3Pm', '5407053'), - (1065, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mR6vj3Pm', '5408794'), - (1065, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR6vj3Pm', '6045684'), - (1066, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '0mqwqKX4', '3236465'), - (1066, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '0mqwqKX4', '3539916'), - (1066, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '0mqwqKX4', '3539918'), - (1066, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '0mqwqKX4', '3539919'), - (1066, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '0mqwqKX4', '3539920'), - (1066, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '0mqwqKX4', '3539921'), - (1066, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '0mqwqKX4', '3539927'), - (1066, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '0mqwqKX4', '3582734'), - (1066, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '0mqwqKX4', '3583262'), - (1066, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '0mqwqKX4', '3619523'), - (1066, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '0mqwqKX4', '3661369'), - (1066, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '0mqwqKX4', '3674262'), - (1066, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '0mqwqKX4', '3677402'), - (1066, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '0mqwqKX4', '3730212'), - (1066, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '0mqwqKX4', '3793156'), - (1066, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '0mqwqKX4', '3803310'), - (1066, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '0mqwqKX4', '3806392'), - (1066, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqwqKX4', '6045684'), - (1067, 2518, 'not_attending', '2024-07-23 00:48:29', '2025-12-17 19:46:30', 'GAneN0Jm', '7074358'), - (1067, 2521, 'maybe', '2024-06-16 19:43:36', '2025-12-17 19:46:29', 'GAneN0Jm', '7074361'), - (1067, 2522, 'maybe', '2024-07-14 14:18:27', '2025-12-17 19:46:30', 'GAneN0Jm', '7074362'), - (1067, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAneN0Jm', '7074364'), - (1067, 2525, 'maybe', '2024-06-12 02:38:29', '2025-12-17 19:46:28', 'GAneN0Jm', '7074365'), - (1067, 2526, 'maybe', '2024-07-30 17:45:25', '2025-12-17 19:46:31', 'GAneN0Jm', '7074366'), - (1067, 2527, 'maybe', '2024-06-24 14:40:05', '2025-12-17 19:46:29', 'GAneN0Jm', '7074367'), - (1067, 2528, 'not_attending', '2024-08-06 02:07:41', '2025-12-17 19:46:31', 'GAneN0Jm', '7074368'), - (1067, 2530, 'not_attending', '2024-08-13 02:47:49', '2025-12-17 19:46:31', 'GAneN0Jm', '7074373'), - (1067, 2531, 'not_attending', '2024-08-28 01:17:34', '2025-12-17 19:46:32', 'GAneN0Jm', '7074378'), - (1067, 2532, 'not_attending', '2024-08-31 21:59:35', '2025-12-17 19:46:32', 'GAneN0Jm', '7074383'), - (1067, 2533, 'not_attending', '2024-08-18 15:53:57', '2025-12-17 19:46:32', 'GAneN0Jm', '7074384'), - (1067, 2629, 'maybe', '2024-06-08 18:08:04', '2025-12-17 19:46:28', 'GAneN0Jm', '7264726'), - (1067, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'GAneN0Jm', '7291219'), - (1067, 2661, 'maybe', '2024-06-13 02:26:08', '2025-12-17 19:46:28', 'GAneN0Jm', '7302674'), - (1067, 2671, 'maybe', '2024-06-09 21:35:16', '2025-12-17 19:46:28', 'GAneN0Jm', '7318256'), - (1067, 2673, 'attending', '2024-06-09 22:31:37', '2025-12-17 19:46:28', 'GAneN0Jm', '7319473'), - (1067, 2675, 'maybe', '2024-07-30 03:24:49', '2025-12-17 19:46:31', 'GAneN0Jm', '7319481'), - (1067, 2677, 'maybe', '2024-10-06 12:41:22', '2025-12-17 19:46:26', 'GAneN0Jm', '7319483'), - (1067, 2678, 'attending', '2024-06-15 11:45:44', '2025-12-17 19:46:28', 'GAneN0Jm', '7319489'), - (1067, 2679, 'attending', '2024-06-12 02:38:21', '2025-12-17 19:46:29', 'GAneN0Jm', '7319490'), - (1067, 2682, 'attending', '2024-06-10 15:01:15', '2025-12-17 19:46:28', 'GAneN0Jm', '7321862'), - (1067, 2683, 'attending', '2024-06-12 02:38:41', '2025-12-17 19:46:28', 'GAneN0Jm', '7321978'), - (1067, 2688, 'attending', '2024-06-22 21:48:22', '2025-12-17 19:46:29', 'GAneN0Jm', '7324073'), - (1067, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAneN0Jm', '7324074'), - (1067, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAneN0Jm', '7324075'), - (1067, 2691, 'attending', '2024-07-14 23:43:37', '2025-12-17 19:46:30', 'GAneN0Jm', '7324076'), - (1067, 2692, 'attending', '2024-07-14 23:43:52', '2025-12-17 19:46:30', 'GAneN0Jm', '7324077'), - (1067, 2693, 'attending', '2024-07-29 16:22:26', '2025-12-17 19:46:31', 'GAneN0Jm', '7324078'), - (1067, 2694, 'attending', '2024-08-06 23:13:30', '2025-12-17 19:46:31', 'GAneN0Jm', '7324079'), - (1067, 2695, 'attending', '2024-08-13 02:48:02', '2025-12-17 19:46:31', 'GAneN0Jm', '7324080'), - (1067, 2696, 'attending', '2024-08-19 15:41:30', '2025-12-17 19:46:32', 'GAneN0Jm', '7324081'), - (1067, 2697, 'not_attending', '2024-08-28 01:17:48', '2025-12-17 19:46:32', 'GAneN0Jm', '7324082'), - (1067, 2698, 'maybe', '2024-08-31 21:59:51', '2025-12-17 19:46:24', 'GAneN0Jm', '7324083'), - (1067, 2700, 'maybe', '2024-06-14 18:55:52', '2025-12-17 19:46:28', 'GAneN0Jm', '7324388'), - (1067, 2705, 'maybe', '2024-06-29 17:24:01', '2025-12-17 19:46:29', 'GAneN0Jm', '7324944'), - (1067, 2708, 'attending', '2024-06-14 23:07:26', '2025-12-17 19:46:28', 'GAneN0Jm', '7325048'), - (1067, 2711, 'maybe', '2024-07-19 16:34:35', '2025-12-17 19:46:30', 'GAneN0Jm', '7326524'), - (1067, 2712, 'maybe', '2024-08-01 19:55:35', '2025-12-17 19:46:31', 'GAneN0Jm', '7326525'), - (1067, 2720, 'maybe', '2024-06-18 20:56:46', '2025-12-17 19:46:28', 'GAneN0Jm', '7331436'), - (1067, 2721, 'maybe', '2024-06-19 16:30:16', '2025-12-17 19:46:29', 'GAneN0Jm', '7331456'), - (1067, 2722, 'maybe', '2024-07-05 21:07:28', '2025-12-17 19:46:29', 'GAneN0Jm', '7331457'), - (1067, 2724, 'maybe', '2024-06-26 22:18:14', '2025-12-17 19:46:29', 'GAneN0Jm', '7332562'), - (1067, 2729, 'maybe', '2024-06-21 21:28:22', '2025-12-17 19:46:29', 'GAneN0Jm', '7335092'), - (1067, 2733, 'maybe', '2024-06-26 02:57:59', '2025-12-17 19:46:29', 'GAneN0Jm', '7338853'), - (1067, 2741, 'maybe', '2024-06-30 23:33:56', '2025-12-17 19:46:30', 'GAneN0Jm', '7344592'), - (1067, 2743, 'maybe', '2024-07-05 18:01:50', '2025-12-17 19:46:29', 'GAneN0Jm', '7345688'), - (1067, 2745, 'maybe', '2024-07-23 00:48:51', '2025-12-17 19:46:30', 'GAneN0Jm', '7348712'), - (1067, 2747, 'maybe', '2024-07-14 23:43:19', '2025-12-17 19:46:30', 'GAneN0Jm', '7353587'), - (1067, 2753, 'maybe', '2024-07-08 23:41:42', '2025-12-17 19:46:30', 'GAneN0Jm', '7355538'), - (1067, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'GAneN0Jm', '7356752'), - (1067, 2755, 'attending', '2024-07-10 20:41:35', '2025-12-17 19:46:29', 'GAneN0Jm', '7357808'), - (1067, 2766, 'maybe', '2024-07-22 22:18:10', '2025-12-17 19:46:30', 'GAneN0Jm', '7363643'), - (1067, 2767, 'maybe', '2024-07-21 19:59:26', '2025-12-17 19:46:30', 'GAneN0Jm', '7364726'), - (1067, 2772, 'not_attending', '2024-07-23 20:15:14', '2025-12-17 19:46:30', 'GAneN0Jm', '7368267'), - (1067, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAneN0Jm', '7368606'), - (1067, 2785, 'maybe', '2024-07-30 15:45:03', '2025-12-17 19:46:31', 'GAneN0Jm', '7380988'), - (1067, 2787, 'not_attending', '2024-08-03 13:57:02', '2025-12-17 19:46:32', 'GAneN0Jm', '7381568'), - (1067, 2792, 'not_attending', '2024-08-08 14:15:15', '2025-12-17 19:46:31', 'GAneN0Jm', '7390763'), - (1067, 2800, 'not_attending', '2024-08-13 02:47:56', '2025-12-17 19:46:31', 'GAneN0Jm', '7397405'), - (1067, 2801, 'maybe', '2024-08-18 15:54:47', '2025-12-17 19:46:32', 'GAneN0Jm', '7397462'), - (1067, 2803, 'not_attending', '2024-08-14 12:52:16', '2025-12-17 19:46:32', 'GAneN0Jm', '7397869'), - (1067, 2806, 'maybe', '2024-09-15 21:24:43', '2025-12-17 19:46:25', 'GAneN0Jm', '7404888'), - (1067, 2808, 'maybe', '2024-08-28 20:26:44', '2025-12-17 19:46:32', 'GAneN0Jm', '7412860'), - (1067, 2811, 'not_attending', '2024-08-31 19:34:41', '2025-12-17 19:46:32', 'GAneN0Jm', '7418895'), - (1067, 2814, 'attending', '2024-09-06 23:53:54', '2025-12-17 19:46:24', 'GAneN0Jm', '7424267'), - (1067, 2816, 'maybe', '2024-09-17 02:56:43', '2025-12-17 19:46:25', 'GAneN0Jm', '7424269'), - (1067, 2817, 'maybe', '2024-09-29 01:52:07', '2025-12-17 19:46:25', 'GAneN0Jm', '7424270'), - (1067, 2818, 'attending', '2024-10-07 20:50:37', '2025-12-17 19:46:26', 'GAneN0Jm', '7424272'), - (1067, 2821, 'not_attending', '2024-10-07 20:50:26', '2025-12-17 19:46:26', 'GAneN0Jm', '7424275'), - (1067, 2822, 'maybe', '2024-11-09 21:46:02', '2025-12-17 19:46:26', 'GAneN0Jm', '7424276'), - (1067, 2824, 'maybe', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAneN0Jm', '7432751'), - (1067, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAneN0Jm', '7432752'), - (1067, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAneN0Jm', '7432753'), - (1067, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAneN0Jm', '7432754'), - (1067, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAneN0Jm', '7432755'), - (1067, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAneN0Jm', '7432756'), - (1067, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAneN0Jm', '7432758'), - (1067, 2831, 'maybe', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAneN0Jm', '7432759'), - (1067, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAneN0Jm', '7433834'), - (1067, 2834, 'not_attending', '2024-09-11 22:00:40', '2025-12-17 19:46:25', 'GAneN0Jm', '7433852'), - (1067, 2835, 'maybe', '2024-09-11 22:00:33', '2025-12-17 19:46:24', 'GAneN0Jm', '7437354'), - (1067, 2836, 'maybe', '2024-09-13 21:02:29', '2025-12-17 19:46:25', 'GAneN0Jm', '7438708'), - (1067, 2837, 'maybe', '2024-09-12 18:57:43', '2025-12-17 19:46:25', 'GAneN0Jm', '7438711'), - (1067, 2838, 'maybe', '2024-09-24 10:12:27', '2025-12-17 19:46:25', 'GAneN0Jm', '7439182'), - (1067, 2839, 'maybe', '2024-09-25 00:42:54', '2025-12-17 19:46:25', 'GAneN0Jm', '7439262'), - (1067, 2840, 'maybe', '2024-09-15 21:24:36', '2025-12-17 19:46:25', 'GAneN0Jm', '7444429'), - (1067, 2843, 'not_attending', '2024-09-26 20:12:33', '2025-12-17 19:46:25', 'GAneN0Jm', '7450219'), - (1067, 2850, 'not_attending', '2024-10-01 20:45:06', '2025-12-17 19:46:25', 'GAneN0Jm', '7457153'), - (1067, 2854, 'maybe', '2024-10-03 00:23:09', '2025-12-17 19:46:26', 'GAneN0Jm', '7465684'), - (1067, 2856, 'not_attending', '2024-10-10 23:02:17', '2025-12-17 19:46:26', 'GAneN0Jm', '7469386'), - (1067, 2857, 'maybe', '2024-10-18 22:57:07', '2025-12-17 19:46:26', 'GAneN0Jm', '7469387'), - (1067, 2858, 'maybe', '2024-10-17 00:52:01', '2025-12-17 19:46:26', 'GAneN0Jm', '7469388'), - (1067, 2859, 'not_attending', '2024-10-29 21:41:46', '2025-12-17 19:46:26', 'GAneN0Jm', '7469389'), - (1067, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'GAneN0Jm', '7470197'), - (1067, 2865, 'maybe', '2024-10-29 21:41:55', '2025-12-17 19:46:26', 'GAneN0Jm', '7471200'), - (1067, 2868, 'not_attending', '2024-10-07 21:55:58', '2025-12-17 19:46:26', 'GAneN0Jm', '7474506'), - (1067, 2874, 'not_attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'GAneN0Jm', '7482239'), - (1067, 2876, 'not_attending', '2024-10-08 17:12:14', '2025-12-17 19:46:26', 'GAneN0Jm', '7490980'), - (1067, 2883, 'maybe', '2024-10-20 22:01:19', '2025-12-17 19:46:26', 'GAneN0Jm', '7649157'), - (1067, 2885, 'maybe', '2024-10-17 13:05:27', '2025-12-17 19:46:26', 'GAneN0Jm', '7649944'), - (1067, 2888, 'not_attending', '2024-10-20 22:01:09', '2025-12-17 19:46:26', 'GAneN0Jm', '7654822'), - (1067, 2892, 'not_attending', '2024-10-29 21:41:37', '2025-12-17 19:46:26', 'GAneN0Jm', '7672064'), - (1067, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'GAneN0Jm', '7685613'), - (1067, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAneN0Jm', '7688194'), - (1067, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAneN0Jm', '7688196'), - (1067, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAneN0Jm', '7688289'), - (1067, 2909, 'maybe', '2024-11-11 23:05:12', '2025-12-17 19:46:27', 'GAneN0Jm', '7689771'), - (1067, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAneN0Jm', '7692763'), - (1067, 2913, 'maybe', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAneN0Jm', '7697552'), - (1067, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAneN0Jm', '7699878'), - (1067, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GAneN0Jm', '7712467'), - (1067, 2926, 'maybe', '2024-12-06 23:50:51', '2025-12-17 19:46:21', 'GAneN0Jm', '7713585'), - (1067, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAneN0Jm', '7713586'), - (1067, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAneN0Jm', '7738518'), - (1067, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAneN0Jm', '7750636'), - (1067, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAneN0Jm', '7796540'), - (1067, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAneN0Jm', '7796541'), - (1067, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAneN0Jm', '7796542'), - (1067, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAneN0Jm', '7825913'), - (1067, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GAneN0Jm', '7826209'), - (1067, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAneN0Jm', '7834742'), - (1067, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GAneN0Jm', '7842108'), - (1067, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAneN0Jm', '7842902'), - (1067, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAneN0Jm', '7842903'), - (1067, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAneN0Jm', '7842904'), - (1067, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAneN0Jm', '7842905'), - (1067, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAneN0Jm', '7855719'), - (1067, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAneN0Jm', '7860683'), - (1067, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAneN0Jm', '7860684'), - (1067, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAneN0Jm', '7866095'), - (1067, 3013, 'maybe', '2025-03-05 23:22:47', '2025-12-17 19:46:18', 'GAneN0Jm', '7869170'), - (1067, 3017, 'not_attending', '2025-03-19 18:26:30', '2025-12-17 19:46:19', 'GAneN0Jm', '7869188'), - (1067, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAneN0Jm', '7869201'), - (1067, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAneN0Jm', '7877465'), - (1067, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAneN0Jm', '7888250'), - (1067, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GAneN0Jm', '7904777'), - (1067, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAneN0Jm', '8349164'), - (1067, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAneN0Jm', '8349545'), - (1067, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GAneN0Jm', '8368028'), - (1067, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GAneN0Jm', '8368029'), - (1067, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAneN0Jm', '8388462'), - (1067, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GAneN0Jm', '8400273'), - (1067, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GAneN0Jm', '8400275'), - (1067, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'GAneN0Jm', '8400276'), - (1067, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GAneN0Jm', '8404977'), - (1067, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GAneN0Jm', '8430783'), - (1067, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GAneN0Jm', '8430784'), - (1067, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GAneN0Jm', '8430799'), - (1067, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GAneN0Jm', '8430800'), - (1067, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GAneN0Jm', '8430801'), - (1067, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GAneN0Jm', '8438709'), - (1067, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAneN0Jm', '8457738'), - (1067, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GAneN0Jm', '8459566'), - (1067, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GAneN0Jm', '8459567'), - (1067, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GAneN0Jm', '8461032'), - (1067, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAneN0Jm', '8477877'), - (1067, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAneN0Jm', '8485688'), - (1067, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAneN0Jm', '8490587'), - (1067, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAneN0Jm', '8493552'), - (1067, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAneN0Jm', '8493553'), - (1067, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAneN0Jm', '8493554'), - (1067, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAneN0Jm', '8493555'), - (1067, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAneN0Jm', '8493556'), - (1067, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAneN0Jm', '8493557'), - (1067, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAneN0Jm', '8493558'), - (1067, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAneN0Jm', '8493559'), - (1067, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAneN0Jm', '8493560'), - (1067, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GAneN0Jm', '8493561'), - (1067, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAneN0Jm', '8493572'), - (1067, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAneN0Jm', '8540725'), - (1067, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAneN0Jm', '8555421'), - (1068, 926, 'attending', '2021-08-18 19:12:09', '2025-12-17 19:47:42', 'NmLGzPJd', '4297211'), - (1068, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLGzPJd', '4356801'), - (1068, 973, 'attending', '2021-08-16 05:20:51', '2025-12-17 19:47:42', 'NmLGzPJd', '4366186'), - (1068, 974, 'maybe', '2021-08-28 11:22:36', '2025-12-17 19:47:43', 'NmLGzPJd', '4366187'), - (1068, 975, 'attending', '2021-08-16 04:47:52', '2025-12-17 19:47:42', 'NmLGzPJd', '4367341'), - (1068, 978, 'attending', '2021-08-21 22:02:13', '2025-12-17 19:47:42', 'NmLGzPJd', '4378509'), - (1068, 985, 'attending', '2021-08-21 02:33:16', '2025-12-17 19:47:42', 'NmLGzPJd', '4391748'), - (1068, 988, 'maybe', '2021-08-24 02:44:24', '2025-12-17 19:47:42', 'NmLGzPJd', '4402823'), - (1068, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'NmLGzPJd', '4420735'), - (1068, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'NmLGzPJd', '4420738'), - (1068, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'NmLGzPJd', '4420739'), - (1068, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'NmLGzPJd', '4420741'), - (1068, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'NmLGzPJd', '4420744'), - (1068, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'NmLGzPJd', '4420747'), - (1068, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'NmLGzPJd', '4420748'), - (1068, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'NmLGzPJd', '4420749'), - (1068, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'NmLGzPJd', '4461883'), - (1068, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLGzPJd', '4508342'), - (1068, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLGzPJd', '4568602'), - (1068, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLGzPJd', '4572153'), - (1068, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'NmLGzPJd', '4585962'), - (1068, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'NmLGzPJd', '4596356'), - (1068, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLGzPJd', '4598860'), - (1068, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLGzPJd', '4598861'), - (1068, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmLGzPJd', '4602797'), - (1068, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmLGzPJd', '4637896'), - (1068, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLGzPJd', '4642994'), - (1068, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'NmLGzPJd', '4642995'), - (1068, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLGzPJd', '4642996'), - (1068, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLGzPJd', '4642997'), - (1068, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmLGzPJd', '4645687'), - (1068, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmLGzPJd', '4645698'), - (1068, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLGzPJd', '4645704'), - (1068, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLGzPJd', '4645705'), - (1068, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLGzPJd', '4668385'), - (1068, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLGzPJd', '4694407'), - (1068, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmLGzPJd', '4736497'), - (1068, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'NmLGzPJd', '4736499'), - (1068, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmLGzPJd', '4736500'), - (1068, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'NmLGzPJd', '4736503'), - (1068, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'NmLGzPJd', '4736504'), - (1068, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLGzPJd', '4746789'), - (1068, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmLGzPJd', '4753929'), - (1068, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmLGzPJd', '5038850'), - (1068, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmLGzPJd', '5045826'), - (1068, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLGzPJd', '5132533'), - (1068, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'NmLGzPJd', '5186582'), - (1068, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'NmLGzPJd', '5186583'), - (1068, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'NmLGzPJd', '5186585'), - (1068, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'NmLGzPJd', '5190437'), - (1068, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'NmLGzPJd', '5195095'), - (1068, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmLGzPJd', '5215989'), - (1068, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLGzPJd', '5223686'), - (1068, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLGzPJd', '5227432'), - (1068, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'NmLGzPJd', '5247467'), - (1068, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'NmLGzPJd', '5260800'), - (1068, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'NmLGzPJd', '5269930'), - (1068, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'NmLGzPJd', '5271448'), - (1068, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'NmLGzPJd', '5271449'), - (1068, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmLGzPJd', '5276469'), - (1068, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmLGzPJd', '5278159'), - (1068, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'NmLGzPJd', '5363695'), - (1068, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLGzPJd', '5365960'), - (1068, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmLGzPJd', '5368973'), - (1068, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'NmLGzPJd', '5378247'), - (1068, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'NmLGzPJd', '5389605'), - (1068, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'NmLGzPJd', '5397265'), - (1068, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmLGzPJd', '5403967'), - (1068, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLGzPJd', '5404786'), - (1068, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmLGzPJd', '5405203'), - (1068, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'NmLGzPJd', '5408794'), - (1068, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLGzPJd', '5411699'), - (1068, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'NmLGzPJd', '5412550'), - (1068, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmLGzPJd', '5415046'), - (1068, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'NmLGzPJd', '5422086'), - (1068, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'NmLGzPJd', '5422406'), - (1068, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLGzPJd', '5424565'), - (1068, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLGzPJd', '5426882'), - (1068, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmLGzPJd', '5427083'), - (1068, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLGzPJd', '5441125'), - (1068, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmLGzPJd', '5441126'), - (1068, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmLGzPJd', '5441128'), - (1068, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'NmLGzPJd', '5441131'), - (1068, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLGzPJd', '5441132'), - (1068, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLGzPJd', '5446643'), - (1068, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLGzPJd', '5453325'), - (1068, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLGzPJd', '5454516'), - (1068, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLGzPJd', '5454605'), - (1068, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLGzPJd', '5455037'), - (1068, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLGzPJd', '5461278'), - (1068, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLGzPJd', '5469480'), - (1068, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLGzPJd', '5471073'), - (1068, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'NmLGzPJd', '5474663'), - (1068, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLGzPJd', '5482022'), - (1068, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLGzPJd', '5482793'), - (1068, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLGzPJd', '5488912'), - (1068, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLGzPJd', '5492192'), - (1068, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLGzPJd', '5493139'), - (1068, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLGzPJd', '5493200'), - (1068, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLGzPJd', '5502188'), - (1068, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLGzPJd', '5505059'), - (1068, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'NmLGzPJd', '5509055'), - (1068, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLGzPJd', '5512862'), - (1068, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLGzPJd', '5513985'), - (1068, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'NmLGzPJd', '5519981'), - (1068, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLGzPJd', '5522550'), - (1068, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLGzPJd', '5534683'), - (1068, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLGzPJd', '5537735'), - (1068, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLGzPJd', '5540859'), - (1068, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLGzPJd', '5546619'), - (1068, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLGzPJd', '5555245'), - (1068, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLGzPJd', '5557747'), - (1068, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLGzPJd', '5560255'), - (1068, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLGzPJd', '5562906'), - (1068, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLGzPJd', '5600604'), - (1068, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLGzPJd', '5605544'), - (1068, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'NmLGzPJd', '5606737'), - (1068, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLGzPJd', '5630960'), - (1068, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLGzPJd', '5630961'), - (1068, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLGzPJd', '5630962'), - (1068, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLGzPJd', '5630966'), - (1068, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLGzPJd', '5630967'), - (1068, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLGzPJd', '5630968'), - (1068, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLGzPJd', '5635406'), - (1068, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLGzPJd', '5638765'), - (1068, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLGzPJd', '5640097'), - (1068, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLGzPJd', '5640843'), - (1068, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLGzPJd', '5641521'), - (1068, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLGzPJd', '5642818'), - (1068, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLGzPJd', '5652395'), - (1068, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLGzPJd', '5670445'), - (1068, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLGzPJd', '5671637'), - (1068, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLGzPJd', '5672329'), - (1068, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLGzPJd', '5674057'), - (1068, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLGzPJd', '5674060'), - (1068, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLGzPJd', '5677461'), - (1068, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLGzPJd', '5698046'), - (1068, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLGzPJd', '5699760'), - (1068, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLGzPJd', '5741601'), - (1068, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLGzPJd', '5763458'), - (1068, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLGzPJd', '5774172'), - (1068, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'NmLGzPJd', '5818247'), - (1068, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLGzPJd', '5819471'), - (1068, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLGzPJd', '5827739'), - (1068, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLGzPJd', '5844306'), - (1068, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLGzPJd', '5850159'), - (1068, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLGzPJd', '5858999'), - (1068, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLGzPJd', '5871984'), - (1068, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLGzPJd', '5876354'), - (1068, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLGzPJd', '5880939'), - (1068, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLGzPJd', '5880940'), - (1068, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLGzPJd', '5880942'), - (1068, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'NmLGzPJd', '5880943'), - (1068, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLGzPJd', '5887890'), - (1068, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLGzPJd', '5888598'), - (1068, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLGzPJd', '5893260'), - (1068, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLGzPJd', '5899826'), - (1068, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLGzPJd', '5900199'), - (1068, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLGzPJd', '5900200'), - (1068, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'NmLGzPJd', '5900202'), - (1068, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLGzPJd', '5900203'), - (1068, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLGzPJd', '5901108'), - (1068, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLGzPJd', '5901126'), - (1068, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLGzPJd', '5909655'), - (1068, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLGzPJd', '5910522'), - (1068, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLGzPJd', '5910526'), - (1068, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLGzPJd', '5910528'), - (1068, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLGzPJd', '5916219'), - (1068, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'NmLGzPJd', '5936234'), - (1068, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLGzPJd', '5958351'), - (1068, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'NmLGzPJd', '5959751'), - (1068, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'NmLGzPJd', '5959755'), - (1068, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'NmLGzPJd', '5960055'), - (1068, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLGzPJd', '5961684'), - (1068, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'NmLGzPJd', '5962132'), - (1068, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'NmLGzPJd', '5962133'), - (1068, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLGzPJd', '5962134'), - (1068, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLGzPJd', '5962317'), - (1068, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLGzPJd', '5962318'), - (1068, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'NmLGzPJd', '5965933'), - (1068, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLGzPJd', '5967014'), - (1068, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLGzPJd', '5972815'), - (1068, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'NmLGzPJd', '5974016'), - (1068, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLGzPJd', '5981515'), - (1068, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'NmLGzPJd', '5993516'), - (1068, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'NmLGzPJd', '5998939'), - (1068, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLGzPJd', '6028191'), - (1068, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'NmLGzPJd', '6040066'), - (1068, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'NmLGzPJd', '6042717'), - (1068, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLGzPJd', '6044838'), - (1068, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLGzPJd', '6044839'), - (1068, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLGzPJd', '6045684'), - (1068, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLGzPJd', '6050104'), - (1068, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLGzPJd', '6053195'), - (1068, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'NmLGzPJd', '6053198'), - (1068, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'NmLGzPJd', '6056085'), - (1068, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLGzPJd', '6056916'), - (1068, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLGzPJd', '6059290'), - (1068, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLGzPJd', '6060328'), - (1068, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLGzPJd', '6061037'), - (1068, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLGzPJd', '6061039'), - (1068, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLGzPJd', '6067245'), - (1068, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLGzPJd', '6068094'), - (1068, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'NmLGzPJd', '6068252'), - (1068, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'NmLGzPJd', '6068253'), - (1068, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'NmLGzPJd', '6068254'), - (1068, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'NmLGzPJd', '6068280'), - (1068, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLGzPJd', '6069093'), - (1068, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'NmLGzPJd', '6072528'), - (1068, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'NmLGzPJd', '6079840'), - (1068, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLGzPJd', '6083398'), - (1068, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'NmLGzPJd', '6093504'), - (1068, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'NmLGzPJd', '6097414'), - (1068, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLGzPJd', '6097442'), - (1068, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLGzPJd', '6097684'), - (1068, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLGzPJd', '6098762'), - (1068, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'NmLGzPJd', '6101361'), - (1068, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLGzPJd', '6101362'), - (1068, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'NmLGzPJd', '6103752'), - (1068, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLGzPJd', '6107314'), - (1068, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'NmLGzPJd', '6120034'), - (1068, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'NmLGzPJd', '6136733'), - (1068, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'NmLGzPJd', '6137989'), - (1068, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'NmLGzPJd', '6150864'), - (1068, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'NmLGzPJd', '6155491'), - (1068, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'NmLGzPJd', '6164417'), - (1068, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'NmLGzPJd', '6166388'), - (1068, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'NmLGzPJd', '6176439'), - (1068, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'NmLGzPJd', '6182410'), - (1068, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'NmLGzPJd', '6185812'), - (1068, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'NmLGzPJd', '6187651'), - (1068, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'NmLGzPJd', '6187963'), - (1068, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'NmLGzPJd', '6187964'), - (1068, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'NmLGzPJd', '6187966'), - (1068, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'NmLGzPJd', '6187967'), - (1068, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'NmLGzPJd', '6187969'), - (1068, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'NmLGzPJd', '6334878'), - (1068, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'NmLGzPJd', '6337236'), - (1068, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'NmLGzPJd', '6337970'), - (1068, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'NmLGzPJd', '6338308'), - (1068, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'NmLGzPJd', '6340845'), - (1068, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'NmLGzPJd', '6341710'), - (1068, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'NmLGzPJd', '6342044'), - (1068, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'NmLGzPJd', '6342298'), - (1068, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'NmLGzPJd', '6343294'), - (1068, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'NmLGzPJd', '6347034'), - (1068, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'NmLGzPJd', '6347056'), - (1068, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'NmLGzPJd', '6353830'), - (1068, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'NmLGzPJd', '6353831'), - (1068, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'NmLGzPJd', '6357867'), - (1068, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'NmLGzPJd', '6358652'), - (1068, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'NmLGzPJd', '6361709'), - (1068, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'NmLGzPJd', '6361710'), - (1068, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'NmLGzPJd', '6361711'), - (1068, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'NmLGzPJd', '6361712'), - (1068, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'NmLGzPJd', '6361713'), - (1068, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'NmLGzPJd', '6382573'), - (1068, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'NmLGzPJd', '6388604'), - (1068, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'NmLGzPJd', '6394629'), - (1068, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'NmLGzPJd', '6394631'), - (1068, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'NmLGzPJd', '6440863'), - (1068, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLGzPJd', '6445440'), - (1068, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLGzPJd', '6453951'), - (1068, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'NmLGzPJd', '6461696'), - (1068, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'NmLGzPJd', '6462129'), - (1068, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLGzPJd', '6463218'), - (1068, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'NmLGzPJd', '6472181'), - (1068, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'NmLGzPJd', '6482693'), - (1068, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'NmLGzPJd', '6484200'), - (1068, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'NmLGzPJd', '6484680'), - (1068, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'NmLGzPJd', '6507741'), - (1068, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'NmLGzPJd', '6514659'), - (1068, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'NmLGzPJd', '6514660'), - (1068, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'NmLGzPJd', '6519103'), - (1068, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'NmLGzPJd', '6535681'), - (1068, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLGzPJd', '6584747'), - (1068, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLGzPJd', '6587097'), - (1068, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLGzPJd', '6609022'), - (1068, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'NmLGzPJd', '6632757'), - (1068, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLGzPJd', '6644187'), - (1068, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLGzPJd', '6648951'), - (1068, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'NmLGzPJd', '6648952'), - (1068, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'NmLGzPJd', '6655401'), - (1068, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'NmLGzPJd', '6661585'), - (1068, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'NmLGzPJd', '6661588'), - (1068, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'NmLGzPJd', '6661589'), - (1068, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLGzPJd', '6699906'), - (1068, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'NmLGzPJd', '6701109'), - (1068, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLGzPJd', '6705219'), - (1068, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLGzPJd', '6710153'), - (1068, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLGzPJd', '6711552'), - (1068, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'NmLGzPJd', '6711553'), - (1069, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'Ae7VLJOd', '4136947'), - (1069, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Ae7VLJOd', '4210314'), - (1069, 893, 'attending', '2021-07-23 16:47:39', '2025-12-17 19:47:40', 'Ae7VLJOd', '4229420'), - (1069, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'Ae7VLJOd', '4229423'), - (1069, 900, 'attending', '2021-07-24 22:46:42', '2025-12-17 19:47:40', 'Ae7VLJOd', '4240316'), - (1069, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Ae7VLJOd', '4240317'), - (1069, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Ae7VLJOd', '4240318'), - (1069, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Ae7VLJOd', '4240320'), - (1069, 919, 'not_attending', '2021-07-17 04:16:39', '2025-12-17 19:47:39', 'Ae7VLJOd', '4275957'), - (1069, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Ae7VLJOd', '4277819'), - (1069, 923, 'not_attending', '2021-07-20 02:30:14', '2025-12-17 19:47:40', 'Ae7VLJOd', '4292773'), - (1069, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Ae7VLJOd', '4301723'), - (1069, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'Ae7VLJOd', '4302093'), - (1069, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Ae7VLJOd', '4304151'), - (1069, 940, 'not_attending', '2021-07-30 16:29:46', '2025-12-17 19:47:40', 'Ae7VLJOd', '4309049'), - (1069, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'Ae7VLJOd', '4315713'), - (1069, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'Ae7VLJOd', '4315714'), - (1069, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'Ae7VLJOd', '4315726'), - (1069, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Ae7VLJOd', '4356801'), - (1069, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Ae7VLJOd', '4366186'), - (1069, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Ae7VLJOd', '4366187'), - (1069, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Ae7VLJOd', '4420735'), - (1069, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Ae7VLJOd', '4420738'), - (1069, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Ae7VLJOd', '4420739'), - (1069, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Ae7VLJOd', '4420741'), - (1069, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Ae7VLJOd', '4420744'), - (1069, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Ae7VLJOd', '4420747'), - (1069, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Ae7VLJOd', '4420748'), - (1069, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Ae7VLJOd', '4420749'), - (1069, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Ae7VLJOd', '4461883'), - (1069, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Ae7VLJOd', '4508342'), - (1069, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Ae7VLJOd', '4568602'), - (1069, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Ae7VLJOd', '4572153'), - (1069, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'Ae7VLJOd', '4585962'), - (1069, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'Ae7VLJOd', '4596356'), - (1069, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Ae7VLJOd', '4598860'), - (1069, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Ae7VLJOd', '4598861'), - (1069, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Ae7VLJOd', '4602797'), - (1069, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Ae7VLJOd', '4637896'), - (1069, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Ae7VLJOd', '4642994'), - (1069, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Ae7VLJOd', '4642995'), - (1069, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Ae7VLJOd', '4642996'), - (1069, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Ae7VLJOd', '4642997'), - (1069, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Ae7VLJOd', '4645687'), - (1069, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Ae7VLJOd', '4645698'), - (1069, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Ae7VLJOd', '4645704'), - (1069, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Ae7VLJOd', '4645705'), - (1069, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae7VLJOd', '4668385'), - (1069, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Ae7VLJOd', '4694407'), - (1069, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Ae7VLJOd', '4736497'), - (1069, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Ae7VLJOd', '4736499'), - (1069, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Ae7VLJOd', '4736500'), - (1069, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Ae7VLJOd', '4736503'), - (1069, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Ae7VLJOd', '4736504'), - (1069, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Ae7VLJOd', '4746789'), - (1069, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Ae7VLJOd', '4753929'), - (1069, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Ae7VLJOd', '5038850'), - (1069, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Ae7VLJOd', '5045826'), - (1069, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Ae7VLJOd', '5132533'), - (1069, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Ae7VLJOd', '5186582'), - (1069, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Ae7VLJOd', '5186583'), - (1069, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Ae7VLJOd', '5186585'), - (1069, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Ae7VLJOd', '5190437'), - (1069, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Ae7VLJOd', '5195095'), - (1069, 1288, 'not_attending', '2022-03-23 01:16:50', '2025-12-17 19:47:25', 'Ae7VLJOd', '5199460'), - (1069, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Ae7VLJOd', '5215989'), - (1069, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Ae7VLJOd', '5223686'), - (1069, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Ae7VLJOd', '5247467'), - (1069, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Ae7VLJOd', '5260800'), - (1069, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Ae7VLJOd', '5269930'), - (1069, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Ae7VLJOd', '5271448'), - (1069, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'Ae7VLJOd', '5271449'), - (1069, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Ae7VLJOd', '5278159'), - (1069, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Ae7VLJOd', '5363695'), - (1069, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Ae7VLJOd', '5365960'), - (1069, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Ae7VLJOd', '5378247'), - (1069, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'Ae7VLJOd', '5389605'), - (1069, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Ae7VLJOd', '5397265'), - (1069, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Ae7VLJOd', '5404786'), - (1069, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Ae7VLJOd', '5405203'), - (1069, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Ae7VLJOd', '5412550'), - (1069, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Ae7VLJOd', '5415046'), - (1069, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Ae7VLJOd', '5422086'), - (1069, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Ae7VLJOd', '5422406'), - (1069, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Ae7VLJOd', '5424565'), - (1069, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Ae7VLJOd', '5426882'), - (1069, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Ae7VLJOd', '5441125'), - (1069, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Ae7VLJOd', '5441126'), - (1069, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Ae7VLJOd', '5441128'), - (1069, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Ae7VLJOd', '5441131'), - (1069, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Ae7VLJOd', '5441132'), - (1069, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Ae7VLJOd', '5453325'), - (1069, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Ae7VLJOd', '5454516'), - (1069, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Ae7VLJOd', '5454605'), - (1069, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Ae7VLJOd', '5455037'), - (1069, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Ae7VLJOd', '5461278'), - (1069, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Ae7VLJOd', '5469480'), - (1069, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Ae7VLJOd', '5474663'), - (1069, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Ae7VLJOd', '5482022'), - (1069, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Ae7VLJOd', '5488912'), - (1069, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Ae7VLJOd', '5492192'), - (1069, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Ae7VLJOd', '5493139'), - (1069, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Ae7VLJOd', '5493200'), - (1069, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Ae7VLJOd', '5502188'), - (1069, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Ae7VLJOd', '5505059'), - (1069, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Ae7VLJOd', '5509055'), - (1069, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Ae7VLJOd', '5512862'), - (1069, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Ae7VLJOd', '5513985'), - (1069, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'Ae7VLJOd', '5519981'), - (1069, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Ae7VLJOd', '5522550'), - (1069, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Ae7VLJOd', '5534683'), - (1069, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Ae7VLJOd', '5537735'), - (1069, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Ae7VLJOd', '5540859'), - (1069, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Ae7VLJOd', '5546619'), - (1069, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Ae7VLJOd', '5557747'), - (1069, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Ae7VLJOd', '5560255'), - (1069, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Ae7VLJOd', '5562906'), - (1069, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Ae7VLJOd', '5600604'), - (1069, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Ae7VLJOd', '5605544'), - (1069, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Ae7VLJOd', '5630960'), - (1069, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Ae7VLJOd', '5630961'), - (1069, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Ae7VLJOd', '5630962'), - (1069, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Ae7VLJOd', '5630966'), - (1069, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Ae7VLJOd', '5630967'), - (1069, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Ae7VLJOd', '5630968'), - (1069, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Ae7VLJOd', '5635406'), - (1069, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Ae7VLJOd', '5638765'), - (1069, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Ae7VLJOd', '5640097'), - (1069, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Ae7VLJOd', '5640843'), - (1069, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Ae7VLJOd', '5641521'), - (1069, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Ae7VLJOd', '5642818'), - (1069, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Ae7VLJOd', '5652395'), - (1069, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Ae7VLJOd', '5670445'), - (1069, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Ae7VLJOd', '5671637'), - (1069, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Ae7VLJOd', '5672329'), - (1069, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Ae7VLJOd', '5674057'), - (1069, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Ae7VLJOd', '5674060'), - (1069, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Ae7VLJOd', '5677461'), - (1069, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Ae7VLJOd', '5698046'), - (1069, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Ae7VLJOd', '5699760'), - (1069, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Ae7VLJOd', '5741601'), - (1069, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Ae7VLJOd', '5763458'), - (1069, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Ae7VLJOd', '5774172'), - (1069, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'Ae7VLJOd', '5818247'), - (1069, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Ae7VLJOd', '5819471'), - (1069, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Ae7VLJOd', '5827739'), - (1069, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Ae7VLJOd', '5844306'), - (1069, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Ae7VLJOd', '5850159'), - (1069, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Ae7VLJOd', '5858999'), - (1069, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Ae7VLJOd', '5871984'), - (1069, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Ae7VLJOd', '5876354'), - (1069, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Ae7VLJOd', '5880939'), - (1069, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Ae7VLJOd', '5880940'), - (1069, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Ae7VLJOd', '5880942'), - (1069, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Ae7VLJOd', '5880943'), - (1069, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Ae7VLJOd', '5887890'), - (1069, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Ae7VLJOd', '5888598'), - (1069, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Ae7VLJOd', '5893260'), - (1069, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Ae7VLJOd', '5899826'), - (1069, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Ae7VLJOd', '5900199'), - (1069, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Ae7VLJOd', '5900200'), - (1069, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Ae7VLJOd', '5900202'), - (1069, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Ae7VLJOd', '5900203'), - (1069, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Ae7VLJOd', '5901108'), - (1069, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Ae7VLJOd', '5901126'), - (1069, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Ae7VLJOd', '5909655'), - (1069, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Ae7VLJOd', '5910522'), - (1069, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Ae7VLJOd', '5910526'), - (1069, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Ae7VLJOd', '5910528'), - (1069, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Ae7VLJOd', '5916219'), - (1069, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Ae7VLJOd', '5936234'), - (1069, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Ae7VLJOd', '5958351'), - (1069, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Ae7VLJOd', '5959751'), - (1069, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Ae7VLJOd', '5959755'), - (1069, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Ae7VLJOd', '5960055'), - (1069, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Ae7VLJOd', '5961684'), - (1069, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Ae7VLJOd', '5962132'), - (1069, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Ae7VLJOd', '5962133'), - (1069, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Ae7VLJOd', '5962134'), - (1069, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Ae7VLJOd', '5962317'), - (1069, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Ae7VLJOd', '5962318'), - (1069, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Ae7VLJOd', '5965933'), - (1069, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Ae7VLJOd', '5967014'), - (1069, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Ae7VLJOd', '5972815'), - (1069, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Ae7VLJOd', '5974016'), - (1069, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Ae7VLJOd', '5981515'), - (1069, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Ae7VLJOd', '5993516'), - (1069, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Ae7VLJOd', '5998939'), - (1069, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Ae7VLJOd', '6028191'), - (1069, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Ae7VLJOd', '6040066'), - (1069, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Ae7VLJOd', '6042717'), - (1069, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Ae7VLJOd', '6044838'), - (1069, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Ae7VLJOd', '6044839'), - (1069, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Ae7VLJOd', '6045684'), - (1069, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Ae7VLJOd', '6050104'), - (1069, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Ae7VLJOd', '6053195'), - (1069, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Ae7VLJOd', '6053198'), - (1069, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Ae7VLJOd', '6056085'), - (1069, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Ae7VLJOd', '6056916'), - (1069, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Ae7VLJOd', '6059290'), - (1069, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Ae7VLJOd', '6060328'), - (1069, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Ae7VLJOd', '6061037'), - (1069, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Ae7VLJOd', '6061039'), - (1069, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Ae7VLJOd', '6067245'), - (1069, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Ae7VLJOd', '6068094'), - (1069, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Ae7VLJOd', '6068252'), - (1069, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Ae7VLJOd', '6068253'), - (1069, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Ae7VLJOd', '6068254'), - (1069, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Ae7VLJOd', '6068280'), - (1069, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Ae7VLJOd', '6069093'), - (1069, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Ae7VLJOd', '6072528'), - (1069, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Ae7VLJOd', '6079840'), - (1069, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Ae7VLJOd', '6083398'), - (1069, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Ae7VLJOd', '6093504'), - (1069, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Ae7VLJOd', '6097414'), - (1069, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Ae7VLJOd', '6097442'), - (1069, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Ae7VLJOd', '6097684'), - (1069, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Ae7VLJOd', '6098762'), - (1069, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Ae7VLJOd', '6101361'), - (1069, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Ae7VLJOd', '6101362'), - (1069, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Ae7VLJOd', '6107314'), - (1069, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Ae7VLJOd', '6120034'), - (1069, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'Ae7VLJOd', '6136733'), - (1069, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Ae7VLJOd', '6137989'), - (1069, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Ae7VLJOd', '6150864'), - (1069, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Ae7VLJOd', '6155491'), - (1069, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Ae7VLJOd', '6164417'), - (1069, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Ae7VLJOd', '6166388'), - (1069, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Ae7VLJOd', '6176439'), - (1069, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Ae7VLJOd', '6182410'), - (1069, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Ae7VLJOd', '6185812'), - (1069, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Ae7VLJOd', '6187651'), - (1069, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Ae7VLJOd', '6187963'), - (1069, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Ae7VLJOd', '6187964'), - (1069, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Ae7VLJOd', '6187966'), - (1069, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Ae7VLJOd', '6187967'), - (1069, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Ae7VLJOd', '6187969'), - (1069, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Ae7VLJOd', '6334878'), - (1069, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Ae7VLJOd', '6337236'), - (1069, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Ae7VLJOd', '6337970'), - (1069, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Ae7VLJOd', '6338308'), - (1069, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Ae7VLJOd', '6341710'), - (1069, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Ae7VLJOd', '6342044'), - (1069, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Ae7VLJOd', '6342298'), - (1069, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Ae7VLJOd', '6343294'), - (1069, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Ae7VLJOd', '6347034'), - (1069, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Ae7VLJOd', '6347056'), - (1069, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Ae7VLJOd', '6353830'), - (1069, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Ae7VLJOd', '6353831'), - (1069, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Ae7VLJOd', '6357867'), - (1069, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Ae7VLJOd', '6358652'), - (1069, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Ae7VLJOd', '6361709'), - (1069, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Ae7VLJOd', '6361710'), - (1069, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Ae7VLJOd', '6361711'), - (1069, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Ae7VLJOd', '6361712'), - (1069, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Ae7VLJOd', '6361713'), - (1069, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Ae7VLJOd', '6382573'), - (1069, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Ae7VLJOd', '6388604'), - (1069, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Ae7VLJOd', '6394629'), - (1069, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Ae7VLJOd', '6394631'), - (1069, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Ae7VLJOd', '6440863'), - (1069, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Ae7VLJOd', '6445440'), - (1069, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Ae7VLJOd', '6453951'), - (1069, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Ae7VLJOd', '6461696'), - (1069, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Ae7VLJOd', '6462129'), - (1069, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Ae7VLJOd', '6463218'), - (1069, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Ae7VLJOd', '6472181'), - (1069, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Ae7VLJOd', '6482693'), - (1069, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'Ae7VLJOd', '6484200'), - (1069, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Ae7VLJOd', '6484680'), - (1069, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Ae7VLJOd', '6507741'), - (1069, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Ae7VLJOd', '6514659'), - (1069, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Ae7VLJOd', '6514660'), - (1069, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Ae7VLJOd', '6519103'), - (1069, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Ae7VLJOd', '6535681'), - (1069, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Ae7VLJOd', '6584747'), - (1069, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Ae7VLJOd', '6587097'), - (1069, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Ae7VLJOd', '6609022'), - (1069, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Ae7VLJOd', '6632757'), - (1069, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Ae7VLJOd', '6644187'), - (1069, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Ae7VLJOd', '6648951'), - (1069, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Ae7VLJOd', '6648952'), - (1069, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Ae7VLJOd', '6655401'), - (1069, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Ae7VLJOd', '6661585'), - (1069, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Ae7VLJOd', '6661588'), - (1069, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Ae7VLJOd', '6661589'), - (1069, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Ae7VLJOd', '6699906'), - (1069, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Ae7VLJOd', '6699913'), - (1069, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Ae7VLJOd', '6701109'), - (1069, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Ae7VLJOd', '6705219'), - (1069, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Ae7VLJOd', '6710153'), - (1069, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Ae7VLJOd', '6711552'), - (1069, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'Ae7VLJOd', '6711553'), - (1069, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Ae7VLJOd', '6722688'), - (1069, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Ae7VLJOd', '6730620'), - (1069, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Ae7VLJOd', '6740364'), - (1069, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Ae7VLJOd', '6743829'), - (1069, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Ae7VLJOd', '7030380'), - (1069, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Ae7VLJOd', '7033677'), - (1069, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Ae7VLJOd', '7044715'), - (1069, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Ae7VLJOd', '7050318'), - (1069, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Ae7VLJOd', '7050319'), - (1069, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Ae7VLJOd', '7050322'), - (1069, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Ae7VLJOd', '7057804'), - (1069, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Ae7VLJOd', '7072824'), - (1069, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Ae7VLJOd', '7074348'), - (1069, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Ae7VLJOd', '7074364'), - (1069, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'Ae7VLJOd', '7089267'), - (1069, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Ae7VLJOd', '7098747'), - (1069, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Ae7VLJOd', '7113468'), - (1069, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Ae7VLJOd', '7114856'), - (1069, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Ae7VLJOd', '7114951'), - (1069, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Ae7VLJOd', '7114955'), - (1069, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Ae7VLJOd', '7114956'), - (1069, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Ae7VLJOd', '7114957'), - (1069, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Ae7VLJOd', '7159484'), - (1069, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Ae7VLJOd', '7178446'), - (1069, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Ae7VLJOd', '7220467'), - (1069, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Ae7VLJOd', '7240354'), - (1069, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Ae7VLJOd', '7251633'), - (1069, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Ae7VLJOd', '7324073'), - (1069, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Ae7VLJOd', '7324074'), - (1069, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Ae7VLJOd', '7324075'), - (1069, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Ae7VLJOd', '7324078'), - (1069, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Ae7VLJOd', '7324082'), - (1069, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Ae7VLJOd', '7331457'), - (1069, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Ae7VLJOd', '7363643'), - (1069, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Ae7VLJOd', '7368606'), - (1069, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Ae7VLJOd', '7397462'), - (1069, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Ae7VLJOd', '7424275'), - (1069, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Ae7VLJOd', '7432751'), - (1069, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Ae7VLJOd', '7432752'), - (1069, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Ae7VLJOd', '7432753'), - (1069, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432754'), - (1069, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432755'), - (1069, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432756'), - (1069, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432758'), - (1069, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432759'), - (1069, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Ae7VLJOd', '7433834'), - (1069, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Ae7VLJOd', '7470197'), - (1069, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Ae7VLJOd', '7685613'), - (1069, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Ae7VLJOd', '7688194'), - (1069, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Ae7VLJOd', '7688196'), - (1069, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Ae7VLJOd', '7688289'), - (1069, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Ae7VLJOd', '7692763'), - (1069, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Ae7VLJOd', '7697552'), - (1069, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Ae7VLJOd', '7699878'), - (1069, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Ae7VLJOd', '7704043'), - (1069, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Ae7VLJOd', '7712467'), - (1069, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Ae7VLJOd', '7713585'), - (1069, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Ae7VLJOd', '7713586'), - (1069, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Ae7VLJOd', '7738518'), - (1069, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Ae7VLJOd', '7750636'), - (1069, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Ae7VLJOd', '7796540'), - (1069, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Ae7VLJOd', '7796541'), - (1069, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Ae7VLJOd', '7796542'), - (1069, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Ae7VLJOd', '7825913'), - (1069, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Ae7VLJOd', '7826209'), - (1069, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Ae7VLJOd', '7834742'), - (1069, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Ae7VLJOd', '7842108'), - (1069, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Ae7VLJOd', '7842902'), - (1069, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Ae7VLJOd', '7842903'), - (1069, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Ae7VLJOd', '7842904'), - (1069, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Ae7VLJOd', '7842905'), - (1069, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Ae7VLJOd', '7855719'), - (1069, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Ae7VLJOd', '7860683'), - (1069, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Ae7VLJOd', '7860684'), - (1069, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Ae7VLJOd', '7866095'), - (1069, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Ae7VLJOd', '7869170'), - (1069, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Ae7VLJOd', '7869188'), - (1069, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Ae7VLJOd', '7869201'), - (1069, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Ae7VLJOd', '7877465'), - (1069, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Ae7VLJOd', '7888250'), - (1069, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Ae7VLJOd', '7904777'), - (1069, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Ae7VLJOd', '8349164'), - (1069, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Ae7VLJOd', '8349545'), - (1069, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Ae7VLJOd', '8368028'), - (1069, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Ae7VLJOd', '8368029'), - (1069, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Ae7VLJOd', '8388462'), - (1069, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Ae7VLJOd', '8400273'), - (1069, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Ae7VLJOd', '8400275'), - (1069, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Ae7VLJOd', '8400276'), - (1069, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Ae7VLJOd', '8404977'), - (1069, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Ae7VLJOd', '8430783'), - (1069, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Ae7VLJOd', '8430784'), - (1069, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Ae7VLJOd', '8430799'), - (1069, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Ae7VLJOd', '8430800'), - (1069, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Ae7VLJOd', '8430801'), - (1069, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Ae7VLJOd', '8438709'), - (1069, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Ae7VLJOd', '8457738'), - (1069, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Ae7VLJOd', '8459566'), - (1069, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Ae7VLJOd', '8459567'), - (1069, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Ae7VLJOd', '8461032'), - (1069, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Ae7VLJOd', '8477877'), - (1069, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Ae7VLJOd', '8485688'), - (1069, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Ae7VLJOd', '8490587'), - (1069, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Ae7VLJOd', '8493552'), - (1069, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Ae7VLJOd', '8493553'), - (1069, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Ae7VLJOd', '8493554'), - (1069, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Ae7VLJOd', '8493555'), - (1069, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Ae7VLJOd', '8493556'), - (1069, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Ae7VLJOd', '8493557'), - (1069, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Ae7VLJOd', '8493558'), - (1069, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Ae7VLJOd', '8493559'), - (1069, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Ae7VLJOd', '8493560'), - (1069, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Ae7VLJOd', '8493561'), - (1069, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Ae7VLJOd', '8493572'), - (1069, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Ae7VLJOd', '8540725'), - (1069, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Ae7VLJOd', '8555421'), - (1070, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'w4WENrEm', '3236450'), - (1070, 823, 'not_attending', '2021-06-18 12:02:07', '2025-12-17 19:47:48', 'w4WENrEm', '3974109'), - (1070, 827, 'maybe', '2021-06-05 22:35:00', '2025-12-17 19:47:47', 'w4WENrEm', '3975311'), - (1070, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4WENrEm', '3975312'), - (1070, 834, 'maybe', '2021-06-10 21:33:10', '2025-12-17 19:47:47', 'w4WENrEm', '3990439'), - (1070, 838, 'maybe', '2021-06-09 06:25:09', '2025-12-17 19:47:47', 'w4WENrEm', '3994992'), - (1070, 842, 'attending', '2021-06-08 15:38:36', '2025-12-17 19:47:47', 'w4WENrEm', '4009741'), - (1070, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4WENrEm', '4014338'), - (1070, 859, 'not_attending', '2021-06-16 21:36:11', '2025-12-17 19:47:48', 'w4WENrEm', '4015993'), - (1070, 866, 'not_attending', '2021-06-18 12:05:58', '2025-12-17 19:47:38', 'w4WENrEm', '4020424'), - (1070, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'w4WENrEm', '4021848'), - (1070, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4WENrEm', '4136744'), - (1070, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4WENrEm', '4136937'), - (1070, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4WENrEm', '4136938'), - (1070, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4WENrEm', '4136947'), - (1070, 873, 'not_attending', '2021-06-18 12:05:59', '2025-12-17 19:47:48', 'w4WENrEm', '4138297'), - (1070, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4WENrEm', '4210314'), - (1070, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4WENrEm', '4225444'), - (1070, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4WENrEm', '4239259'), - (1070, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4WENrEm', '4240316'), - (1070, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4WENrEm', '4240317'), - (1070, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4WENrEm', '4240318'), - (1070, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4WENrEm', '4240320'), - (1070, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4WENrEm', '4250163'), - (1070, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4WENrEm', '4275957'), - (1070, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4WENrEm', '4277819'), - (1070, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4WENrEm', '4301723'), - (1070, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'w4WENrEm', '4302093'), - (1070, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4WENrEm', '4304151'), - (1070, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'w4WENrEm', '4345519'), - (1070, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'w4WENrEm', '4358025'), - (1070, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4WENrEm', '4366186'), - (1070, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'w4WENrEm', '4366187'), - (1070, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WENrEm', '6045684'), - (1071, 846, 'attending', '2021-07-04 02:48:30', '2025-12-17 19:47:39', 'nm62xD1m', '4015718'), - (1071, 851, 'attending', '2021-08-18 16:16:57', '2025-12-17 19:47:42', 'nm62xD1m', '4015723'), - (1071, 853, 'attending', '2021-08-10 17:53:55', '2025-12-17 19:47:41', 'nm62xD1m', '4015725'), - (1071, 870, 'attending', '2021-07-03 01:53:26', '2025-12-17 19:47:39', 'nm62xD1m', '4136937'), - (1071, 871, 'attending', '2021-07-05 18:13:22', '2025-12-17 19:47:39', 'nm62xD1m', '4136938'), - (1071, 872, 'attending', '2021-07-19 10:20:45', '2025-12-17 19:47:40', 'nm62xD1m', '4136947'), - (1071, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nm62xD1m', '4210314'), - (1071, 887, 'attending', '2021-07-11 02:34:21', '2025-12-17 19:47:39', 'nm62xD1m', '4225444'), - (1071, 891, 'attending', '2021-07-01 19:00:40', '2025-12-17 19:47:38', 'nm62xD1m', '4229417'), - (1071, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'nm62xD1m', '4239259'), - (1071, 900, 'attending', '2021-07-19 10:20:37', '2025-12-17 19:47:40', 'nm62xD1m', '4240316'), - (1071, 901, 'attending', '2021-07-27 15:43:02', '2025-12-17 19:47:40', 'nm62xD1m', '4240317'), - (1071, 902, 'attending', '2021-08-07 03:21:44', '2025-12-17 19:47:41', 'nm62xD1m', '4240318'), - (1071, 903, 'attending', '2021-08-10 17:54:54', '2025-12-17 19:47:42', 'nm62xD1m', '4240320'), - (1071, 905, 'attending', '2021-07-04 14:50:44', '2025-12-17 19:47:39', 'nm62xD1m', '4250163'), - (1071, 916, 'attending', '2021-07-18 00:02:37', '2025-12-17 19:47:40', 'nm62xD1m', '4273772'), - (1071, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'nm62xD1m', '4275957'), - (1071, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nm62xD1m', '4277819'), - (1071, 933, 'attending', '2021-07-27 15:39:09', '2025-12-17 19:47:40', 'nm62xD1m', '4301723'), - (1071, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'nm62xD1m', '4302093'), - (1071, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nm62xD1m', '4304151'), - (1071, 937, 'attending', '2021-07-27 15:38:50', '2025-12-17 19:47:40', 'nm62xD1m', '4306596'), - (1071, 940, 'attending', '2021-07-27 15:42:59', '2025-12-17 19:47:40', 'nm62xD1m', '4309049'), - (1071, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'nm62xD1m', '4345519'), - (1071, 971, 'attending', '2021-09-07 10:32:18', '2025-12-17 19:47:43', 'nm62xD1m', '4356801'), - (1071, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'nm62xD1m', '4358025'), - (1071, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'nm62xD1m', '4366186'), - (1071, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'nm62xD1m', '4366187'), - (1071, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'nm62xD1m', '4402823'), - (1071, 990, 'attending', '2021-08-29 04:32:18', '2025-12-17 19:47:43', 'nm62xD1m', '4420735'), - (1071, 991, 'attending', '2021-08-29 04:32:16', '2025-12-17 19:47:43', 'nm62xD1m', '4420738'), - (1071, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nm62xD1m', '4420739'), - (1071, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm62xD1m', '4420741'), - (1071, 995, 'attending', '2021-10-04 09:01:01', '2025-12-17 19:47:34', 'nm62xD1m', '4420744'), - (1071, 996, 'attending', '2021-10-05 03:39:08', '2025-12-17 19:47:35', 'nm62xD1m', '4420747'), - (1071, 997, 'attending', '2021-10-23 17:41:48', '2025-12-17 19:47:35', 'nm62xD1m', '4420748'), - (1071, 998, 'attending', '2021-10-27 00:26:21', '2025-12-17 19:47:36', 'nm62xD1m', '4420749'), - (1071, 1022, 'attending', '2021-09-15 22:59:20', '2025-12-17 19:47:43', 'nm62xD1m', '4458628'), - (1071, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nm62xD1m', '4461883'), - (1071, 1040, 'attending', '2021-12-12 00:01:46', '2025-12-17 19:47:38', 'nm62xD1m', '4496605'), - (1071, 1041, 'attending', '2021-12-04 20:24:52', '2025-12-17 19:47:37', 'nm62xD1m', '4496606'), - (1071, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nm62xD1m', '4508342'), - (1071, 1079, 'attending', '2021-10-20 21:58:38', '2025-12-17 19:47:35', 'nm62xD1m', '4563823'), - (1071, 1082, 'attending', '2021-10-15 17:56:22', '2025-12-17 19:47:35', 'nm62xD1m', '4566762'), - (1071, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nm62xD1m', '4568602'), - (1071, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nm62xD1m', '4572153'), - (1071, 1092, 'attending', '2021-10-21 03:35:01', '2025-12-17 19:47:35', 'nm62xD1m', '4582837'), - (1071, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'nm62xD1m', '4585962'), - (1071, 1094, 'attending', '2021-10-21 03:39:36', '2025-12-17 19:47:36', 'nm62xD1m', '4587337'), - (1071, 1095, 'attending', '2021-10-27 00:25:43', '2025-12-17 19:47:35', 'nm62xD1m', '4596356'), - (1071, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nm62xD1m', '4598860'), - (1071, 1098, 'attending', '2021-11-10 20:31:16', '2025-12-17 19:47:36', 'nm62xD1m', '4598861'), - (1071, 1099, 'attending', '2021-10-31 01:27:16', '2025-12-17 19:47:36', 'nm62xD1m', '4602797'), - (1071, 1103, 'attending', '2021-11-13 08:58:22', '2025-12-17 19:47:36', 'nm62xD1m', '4616350'), - (1071, 1106, 'attending', '2021-11-11 18:38:29', '2025-12-17 19:47:36', 'nm62xD1m', '4620452'), - (1071, 1114, 'attending', '2021-11-14 00:28:23', '2025-12-17 19:47:36', 'nm62xD1m', '4637896'), - (1071, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nm62xD1m', '4642994'), - (1071, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'nm62xD1m', '4642995'), - (1071, 1118, 'attending', '2021-12-15 21:18:17', '2025-12-17 19:47:38', 'nm62xD1m', '4642996'), - (1071, 1119, 'attending', '2021-12-21 15:15:43', '2025-12-17 19:47:31', 'nm62xD1m', '4642997'), - (1071, 1126, 'attending', '2021-12-11 18:23:23', '2025-12-17 19:47:38', 'nm62xD1m', '4645687'), - (1071, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nm62xD1m', '4645698'), - (1071, 1128, 'attending', '2021-11-21 00:04:21', '2025-12-17 19:47:37', 'nm62xD1m', '4645704'), - (1071, 1129, 'attending', '2021-11-27 22:37:56', '2025-12-17 19:47:37', 'nm62xD1m', '4645705'), - (1071, 1130, 'attending', '2021-12-04 20:24:50', '2025-12-17 19:47:37', 'nm62xD1m', '4658824'), - (1071, 1134, 'attending', '2021-11-24 22:11:56', '2025-12-17 19:47:37', 'nm62xD1m', '4668385'), - (1071, 1135, 'attending', '2021-11-26 23:08:11', '2025-12-17 19:47:37', 'nm62xD1m', '4670469'), - (1071, 1137, 'maybe', '2021-11-29 17:48:58', '2025-12-17 19:47:37', 'nm62xD1m', '4674797'), - (1071, 1143, 'attending', '2021-12-02 00:17:44', '2025-12-17 19:47:37', 'nm62xD1m', '4683667'), - (1071, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nm62xD1m', '4694407'), - (1071, 1151, 'attending', '2022-01-05 23:28:07', '2025-12-17 19:47:31', 'nm62xD1m', '4708704'), - (1071, 1152, 'attending', '2022-01-13 00:10:43', '2025-12-17 19:47:31', 'nm62xD1m', '4708705'), - (1071, 1154, 'attending', '2022-01-25 22:40:33', '2025-12-17 19:47:32', 'nm62xD1m', '4708708'), - (1071, 1163, 'maybe', '2022-01-08 15:58:00', '2025-12-17 19:47:31', 'nm62xD1m', '4724206'), - (1071, 1173, 'attending', '2022-01-07 17:00:05', '2025-12-17 19:47:31', 'nm62xD1m', '4736495'), - (1071, 1174, 'attending', '2022-01-15 18:30:34', '2025-12-17 19:47:31', 'nm62xD1m', '4736496'), - (1071, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm62xD1m', '4736497'), - (1071, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nm62xD1m', '4736499'), - (1071, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm62xD1m', '4736500'), - (1071, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nm62xD1m', '4736503'), - (1071, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nm62xD1m', '4736504'), - (1071, 1183, 'attending', '2022-01-11 23:48:33', '2025-12-17 19:47:31', 'nm62xD1m', '4742171'), - (1071, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nm62xD1m', '4746789'), - (1071, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'nm62xD1m', '4753929'), - (1071, 1222, 'attending', '2022-02-17 00:32:03', '2025-12-17 19:47:32', 'nm62xD1m', '5015628'), - (1071, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nm62xD1m', '5038850'), - (1071, 1236, 'attending', '2022-02-17 22:41:44', '2025-12-17 19:47:32', 'nm62xD1m', '5045826'), - (1071, 1239, 'attending', '2022-03-02 20:32:29', '2025-12-17 19:47:33', 'nm62xD1m', '5052238'), - (1071, 1241, 'attending', '2022-03-23 23:07:35', '2025-12-17 19:47:25', 'nm62xD1m', '5052240'), - (1071, 1245, 'attending', '2022-03-02 22:41:16', '2025-12-17 19:47:33', 'nm62xD1m', '5061301'), - (1071, 1249, 'maybe', '2022-03-10 00:30:16', '2025-12-17 19:47:33', 'nm62xD1m', '5068530'), - (1071, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm62xD1m', '5132533'), - (1071, 1272, 'maybe', '2022-03-19 03:42:09', '2025-12-17 19:47:25', 'nm62xD1m', '5186582'), - (1071, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nm62xD1m', '5186583'), - (1071, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nm62xD1m', '5186585'), - (1071, 1276, 'attending', '2022-03-27 22:45:41', '2025-12-17 19:47:25', 'nm62xD1m', '5186820'), - (1071, 1281, 'attending', '2022-04-09 20:33:58', '2025-12-17 19:47:27', 'nm62xD1m', '5190437'), - (1071, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nm62xD1m', '5195095'), - (1071, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm62xD1m', '5215989'), - (1071, 1304, 'attending', '2022-04-06 19:08:10', '2025-12-17 19:47:26', 'nm62xD1m', '5223468'), - (1071, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm62xD1m', '5223686'), - (1071, 1308, 'attending', '2022-04-13 01:20:30', '2025-12-17 19:47:27', 'nm62xD1m', '5226703'), - (1071, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'nm62xD1m', '5227432'), - (1071, 1315, 'attending', '2022-04-21 20:07:11', '2025-12-17 19:47:27', 'nm62xD1m', '5237522'), - (1071, 1337, 'attending', '2022-04-20 21:04:51', '2025-12-17 19:47:27', 'nm62xD1m', '5245036'), - (1071, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nm62xD1m', '5247467'), - (1071, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nm62xD1m', '5260800'), - (1071, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nm62xD1m', '5269930'), - (1071, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nm62xD1m', '5271448'), - (1071, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'nm62xD1m', '5271449'), - (1071, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'nm62xD1m', '5276469'), - (1071, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm62xD1m', '5278159'), - (1071, 1407, 'attending', '2022-06-04 20:14:36', '2025-12-17 19:47:30', 'nm62xD1m', '5363695'), - (1071, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm62xD1m', '5365960'), - (1071, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'nm62xD1m', '5368973'), - (1071, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm62xD1m', '5378247'), - (1071, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'nm62xD1m', '5389605'), - (1071, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nm62xD1m', '5397265'), - (1071, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'nm62xD1m', '5403967'), - (1071, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm62xD1m', '5404786'), - (1071, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm62xD1m', '5405203'), - (1071, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'nm62xD1m', '5408794'), - (1071, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'nm62xD1m', '5411699'), - (1071, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm62xD1m', '5412550'), - (1071, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm62xD1m', '5415046'), - (1071, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm62xD1m', '5422086'), - (1071, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nm62xD1m', '5422406'), - (1071, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm62xD1m', '5424565'), - (1071, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm62xD1m', '5426882'), - (1071, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'nm62xD1m', '5427083'), - (1071, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm62xD1m', '5441125'), - (1071, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm62xD1m', '5441126'), - (1071, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nm62xD1m', '5441128'), - (1071, 1517, 'attending', '2022-08-27 18:39:04', '2025-12-17 19:47:23', 'nm62xD1m', '5441130'), - (1071, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm62xD1m', '5441131'), - (1071, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm62xD1m', '5441132'), - (1071, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'nm62xD1m', '5446643'), - (1071, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm62xD1m', '5453325'), - (1071, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm62xD1m', '5454516'), - (1071, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm62xD1m', '5454605'), - (1071, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm62xD1m', '5455037'), - (1071, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm62xD1m', '5461278'), - (1071, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm62xD1m', '5469480'), - (1071, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'nm62xD1m', '5471073'), - (1071, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm62xD1m', '5474663'), - (1071, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm62xD1m', '5482022'), - (1071, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'nm62xD1m', '5482793'), - (1071, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm62xD1m', '5488912'), - (1071, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm62xD1m', '5492192'), - (1071, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm62xD1m', '5493139'), - (1071, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm62xD1m', '5493200'), - (1071, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm62xD1m', '5502188'), - (1071, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm62xD1m', '5505059'), - (1071, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm62xD1m', '5509055'), - (1071, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm62xD1m', '5512862'), - (1071, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm62xD1m', '5513985'), - (1071, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nm62xD1m', '5519981'), - (1071, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm62xD1m', '5522550'), - (1071, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm62xD1m', '5534683'), - (1071, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm62xD1m', '5537735'), - (1071, 1636, 'attending', '2022-09-03 05:07:28', '2025-12-17 19:47:24', 'nm62xD1m', '5538454'), - (1071, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm62xD1m', '5540859'), - (1071, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm62xD1m', '5546619'), - (1071, 1647, 'attending', '2022-09-16 10:30:19', '2025-12-17 19:47:11', 'nm62xD1m', '5548660'), - (1071, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'nm62xD1m', '5555245'), - (1071, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm62xD1m', '5557747'), - (1071, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm62xD1m', '5560255'), - (1071, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm62xD1m', '5562906'), - (1071, 1673, 'attending', '2022-09-18 23:22:58', '2025-12-17 19:47:11', 'nm62xD1m', '5592454'), - (1071, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm62xD1m', '5600604'), - (1071, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm62xD1m', '5605544'), - (1071, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'nm62xD1m', '5606737'), - (1071, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm62xD1m', '5630960'), - (1071, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm62xD1m', '5630961'), - (1071, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm62xD1m', '5630962'), - (1071, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm62xD1m', '5630966'), - (1071, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm62xD1m', '5630967'), - (1071, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm62xD1m', '5630968'), - (1071, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm62xD1m', '5635406'), - (1071, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm62xD1m', '5638765'), - (1071, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm62xD1m', '5640097'), - (1071, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm62xD1m', '5640843'), - (1071, 1742, 'attending', '2022-10-17 03:51:57', '2025-12-17 19:47:13', 'nm62xD1m', '5641245'), - (1071, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm62xD1m', '5641521'), - (1071, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm62xD1m', '5642818'), - (1071, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm62xD1m', '5652395'), - (1071, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm62xD1m', '5670445'), - (1071, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm62xD1m', '5671637'), - (1071, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm62xD1m', '5672329'), - (1071, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm62xD1m', '5674057'), - (1071, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm62xD1m', '5674060'), - (1071, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm62xD1m', '5677461'), - (1071, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm62xD1m', '5698046'), - (1071, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm62xD1m', '5699760'), - (1071, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm62xD1m', '5741601'), - (1071, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm62xD1m', '5763458'), - (1071, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm62xD1m', '5774172'), - (1071, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nm62xD1m', '5818247'), - (1071, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm62xD1m', '5819471'), - (1071, 1842, 'attending', '2022-12-17 07:45:55', '2025-12-17 19:47:04', 'nm62xD1m', '5827739'), - (1071, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm62xD1m', '5844306'), - (1071, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm62xD1m', '5850159'), - (1071, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm62xD1m', '5858999'), - (1071, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm62xD1m', '5871984'), - (1071, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm62xD1m', '5876354'), - (1071, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm62xD1m', '5880939'), - (1071, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm62xD1m', '5880940'), - (1071, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm62xD1m', '5880942'), - (1071, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm62xD1m', '5880943'), - (1071, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm62xD1m', '5887890'), - (1071, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm62xD1m', '5888598'), - (1071, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm62xD1m', '5893260'), - (1071, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm62xD1m', '5899826'), - (1071, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm62xD1m', '5900199'), - (1071, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm62xD1m', '5900200'), - (1071, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm62xD1m', '5900202'), - (1071, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm62xD1m', '5900203'), - (1071, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm62xD1m', '5901108'), - (1071, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm62xD1m', '5901126'), - (1071, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm62xD1m', '5909655'), - (1071, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm62xD1m', '5910522'), - (1071, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm62xD1m', '5910526'), - (1071, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm62xD1m', '5910528'), - (1071, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm62xD1m', '5916219'), - (1071, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm62xD1m', '5936234'), - (1071, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm62xD1m', '5958351'), - (1071, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm62xD1m', '5959751'), - (1071, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm62xD1m', '5959755'), - (1071, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm62xD1m', '5960055'), - (1071, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm62xD1m', '5961684'), - (1071, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm62xD1m', '5962132'), - (1071, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'nm62xD1m', '5962133'), - (1071, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm62xD1m', '5962134'), - (1071, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm62xD1m', '5962317'), - (1071, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm62xD1m', '5962318'), - (1071, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'nm62xD1m', '5965933'), - (1071, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm62xD1m', '5967014'), - (1071, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm62xD1m', '5972815'), - (1071, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm62xD1m', '5974016'), - (1071, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm62xD1m', '5981515'), - (1071, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm62xD1m', '5993516'), - (1071, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm62xD1m', '5998939'), - (1071, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm62xD1m', '6028191'), - (1071, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm62xD1m', '6040066'), - (1071, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm62xD1m', '6042717'), - (1071, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm62xD1m', '6044838'), - (1071, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm62xD1m', '6044839'), - (1071, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm62xD1m', '6045684'), - (1071, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm62xD1m', '6050104'), - (1071, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm62xD1m', '6053195'), - (1071, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm62xD1m', '6053198'), - (1071, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm62xD1m', '6056085'), - (1071, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm62xD1m', '6056916'), - (1071, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm62xD1m', '6059290'), - (1071, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm62xD1m', '6060328'), - (1071, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm62xD1m', '6061037'), - (1071, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm62xD1m', '6061039'), - (1071, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm62xD1m', '6067245'), - (1071, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm62xD1m', '6068094'), - (1071, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm62xD1m', '6068252'), - (1071, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm62xD1m', '6068253'), - (1071, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm62xD1m', '6068254'), - (1071, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm62xD1m', '6068280'), - (1071, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm62xD1m', '6069093'), - (1071, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm62xD1m', '6072528'), - (1071, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm62xD1m', '6079840'), - (1071, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm62xD1m', '6083398'), - (1071, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm62xD1m', '6093504'), - (1071, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm62xD1m', '6097414'), - (1071, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm62xD1m', '6097442'), - (1071, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm62xD1m', '6097684'), - (1071, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm62xD1m', '6098762'), - (1071, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm62xD1m', '6101361'), - (1071, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm62xD1m', '6101362'), - (1071, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm62xD1m', '6107314'), - (1071, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm62xD1m', '6120034'), - (1071, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nm62xD1m', '6136733'), - (1071, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm62xD1m', '6137989'), - (1071, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm62xD1m', '6150864'), - (1071, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm62xD1m', '6155491'), - (1071, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm62xD1m', '6164417'), - (1071, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm62xD1m', '6166388'), - (1071, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm62xD1m', '6176439'), - (1071, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm62xD1m', '6182410'), - (1071, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm62xD1m', '6185812'), - (1071, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm62xD1m', '6187651'), - (1071, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm62xD1m', '6187963'), - (1071, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm62xD1m', '6187964'), - (1071, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm62xD1m', '6187966'), - (1071, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm62xD1m', '6187967'), - (1071, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm62xD1m', '6187969'), - (1071, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm62xD1m', '6334878'), - (1071, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm62xD1m', '6337236'), - (1071, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm62xD1m', '6337970'), - (1071, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm62xD1m', '6338308'), - (1071, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm62xD1m', '6341710'), - (1071, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm62xD1m', '6342044'), - (1071, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm62xD1m', '6342298'), - (1071, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm62xD1m', '6343294'), - (1071, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm62xD1m', '6347034'), - (1071, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm62xD1m', '6347056'), - (1071, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm62xD1m', '6353830'), - (1071, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm62xD1m', '6353831'), - (1071, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm62xD1m', '6357867'), - (1071, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm62xD1m', '6358652'), - (1071, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm62xD1m', '6361709'), - (1071, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm62xD1m', '6361710'), - (1071, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm62xD1m', '6361711'), - (1071, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm62xD1m', '6361712'), - (1071, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm62xD1m', '6361713'), - (1071, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nm62xD1m', '6382573'), - (1071, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm62xD1m', '6388604'), - (1071, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm62xD1m', '6394629'), - (1071, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm62xD1m', '6394631'), - (1071, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm62xD1m', '6440863'), - (1071, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm62xD1m', '6445440'), - (1071, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm62xD1m', '6453951'), - (1071, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm62xD1m', '6461696'), - (1071, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm62xD1m', '6462129'), - (1071, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm62xD1m', '6463218'), - (1071, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm62xD1m', '6472181'), - (1071, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm62xD1m', '6482693'), - (1071, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nm62xD1m', '6484200'), - (1071, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm62xD1m', '6484680'), - (1071, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm62xD1m', '6507741'), - (1071, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm62xD1m', '6514659'), - (1071, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm62xD1m', '6514660'), - (1071, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm62xD1m', '6519103'), - (1071, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm62xD1m', '6535681'), - (1071, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm62xD1m', '6584747'), - (1071, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm62xD1m', '6587097'), - (1071, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm62xD1m', '6609022'), - (1071, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nm62xD1m', '6632757'), - (1071, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm62xD1m', '6644187'), - (1071, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm62xD1m', '6648951'), - (1071, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm62xD1m', '6648952'), - (1071, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm62xD1m', '6655401'), - (1071, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm62xD1m', '6661585'), - (1071, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm62xD1m', '6661588'), - (1071, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm62xD1m', '6661589'), - (1071, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm62xD1m', '6699906'), - (1071, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm62xD1m', '6699913'), - (1071, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm62xD1m', '6701109'), - (1071, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm62xD1m', '6705219'), - (1071, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm62xD1m', '6710153'), - (1071, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm62xD1m', '6711552'), - (1071, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nm62xD1m', '6711553'), - (1071, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm62xD1m', '6722688'), - (1071, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm62xD1m', '6730620'), - (1071, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm62xD1m', '6740364'), - (1071, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm62xD1m', '6743829'), - (1071, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm62xD1m', '7030380'), - (1071, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nm62xD1m', '7033677'), - (1071, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm62xD1m', '7044715'), - (1071, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm62xD1m', '7050318'), - (1071, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm62xD1m', '7050319'), - (1071, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm62xD1m', '7050322'), - (1071, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm62xD1m', '7057804'), - (1071, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm62xD1m', '7072824'), - (1071, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm62xD1m', '7074348'), - (1071, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm62xD1m', '7074364'), - (1071, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nm62xD1m', '7089267'), - (1071, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm62xD1m', '7098747'), - (1071, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm62xD1m', '7113468'), - (1071, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm62xD1m', '7114856'), - (1071, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm62xD1m', '7114951'), - (1071, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm62xD1m', '7114955'), - (1071, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm62xD1m', '7114956'), - (1071, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm62xD1m', '7114957'), - (1071, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm62xD1m', '7159484'), - (1071, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm62xD1m', '7178446'), - (1071, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nm62xD1m', '7220467'), - (1071, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm62xD1m', '7240354'), - (1071, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm62xD1m', '7251633'), - (1071, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm62xD1m', '7324073'), - (1071, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm62xD1m', '7324074'), - (1071, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm62xD1m', '7324075'), - (1071, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm62xD1m', '7324078'), - (1071, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm62xD1m', '7324082'), - (1071, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm62xD1m', '7331457'), - (1071, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm62xD1m', '7363643'), - (1071, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm62xD1m', '7368606'), - (1071, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm62xD1m', '7397462'), - (1071, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm62xD1m', '7424275'), - (1071, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm62xD1m', '7432751'), - (1071, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm62xD1m', '7432752'), - (1071, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm62xD1m', '7432753'), - (1071, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm62xD1m', '7432754'), - (1071, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm62xD1m', '7432755'), - (1071, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm62xD1m', '7432756'), - (1071, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm62xD1m', '7432758'), - (1071, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm62xD1m', '7432759'), - (1071, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm62xD1m', '7433834'), - (1071, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nm62xD1m', '7470197'), - (1071, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm62xD1m', '7685613'), - (1071, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm62xD1m', '7688194'), - (1071, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm62xD1m', '7688196'), - (1071, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm62xD1m', '7688289'), - (1071, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm62xD1m', '7692763'), - (1071, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm62xD1m', '7697552'), - (1071, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm62xD1m', '7699878'), - (1071, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nm62xD1m', '7704043'), - (1071, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm62xD1m', '7712467'), - (1071, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm62xD1m', '7713585'), - (1071, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm62xD1m', '7713586'), - (1071, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm62xD1m', '7738518'), - (1071, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm62xD1m', '7750636'), - (1071, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm62xD1m', '7796540'), - (1071, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm62xD1m', '7796541'), - (1071, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm62xD1m', '7796542'), - (1071, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm62xD1m', '7825913'), - (1071, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm62xD1m', '7826209'), - (1071, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm62xD1m', '7834742'), - (1071, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm62xD1m', '7842108'), - (1071, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm62xD1m', '7842902'), - (1071, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm62xD1m', '7842903'), - (1071, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm62xD1m', '7842904'), - (1071, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm62xD1m', '7842905'), - (1071, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm62xD1m', '7855719'), - (1071, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm62xD1m', '7860683'), - (1071, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm62xD1m', '7860684'), - (1071, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm62xD1m', '7866095'), - (1071, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm62xD1m', '7869170'), - (1071, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm62xD1m', '7869188'), - (1071, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm62xD1m', '7869201'), - (1071, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm62xD1m', '7877465'), - (1071, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm62xD1m', '7888250'), - (1071, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm62xD1m', '7904777'), - (1071, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm62xD1m', '8349164'), - (1071, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm62xD1m', '8349545'), - (1071, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm62xD1m', '8368028'), - (1071, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm62xD1m', '8368029'), - (1071, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm62xD1m', '8388462'), - (1071, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm62xD1m', '8400273'), - (1071, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm62xD1m', '8400275'), - (1071, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nm62xD1m', '8400276'), - (1071, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm62xD1m', '8404977'), - (1071, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm62xD1m', '8430783'), - (1071, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm62xD1m', '8430784'), - (1071, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm62xD1m', '8430799'), - (1071, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm62xD1m', '8430800'), - (1071, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm62xD1m', '8430801'), - (1071, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm62xD1m', '8438709'), - (1071, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm62xD1m', '8457738'), - (1071, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm62xD1m', '8459566'), - (1071, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm62xD1m', '8459567'), - (1071, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm62xD1m', '8461032'), - (1071, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm62xD1m', '8477877'), - (1071, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm62xD1m', '8485688'), - (1071, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm62xD1m', '8490587'), - (1071, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm62xD1m', '8493552'), - (1071, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm62xD1m', '8493553'), - (1071, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm62xD1m', '8493554'), - (1071, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm62xD1m', '8493555'), - (1071, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm62xD1m', '8493556'), - (1071, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm62xD1m', '8493557'), - (1071, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm62xD1m', '8493558'), - (1071, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm62xD1m', '8493559'), - (1071, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm62xD1m', '8493560'), - (1071, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nm62xD1m', '8493561'), - (1071, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm62xD1m', '8493572'), - (1071, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm62xD1m', '8540725'), - (1071, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm62xD1m', '8555421'), - (1072, 401, 'maybe', '2021-05-10 01:09:17', '2025-12-17 19:47:46', 'ydwD6DMm', '3236456'), - (1072, 646, 'not_attending', '2021-05-10 19:13:45', '2025-12-17 19:47:46', 'ydwD6DMm', '3539921'), - (1072, 647, 'not_attending', '2021-05-10 19:13:56', '2025-12-17 19:47:46', 'ydwD6DMm', '3539922'), - (1072, 648, 'not_attending', '2021-05-28 02:45:00', '2025-12-17 19:47:47', 'ydwD6DMm', '3539923'), - (1072, 667, 'attending', '2021-08-28 21:59:38', '2025-12-17 19:47:42', 'ydwD6DMm', '3547145'), - (1072, 741, 'not_attending', '2021-05-19 13:21:10', '2025-12-17 19:47:46', 'ydwD6DMm', '3680618'), - (1072, 742, 'attending', '2021-06-18 23:15:18', '2025-12-17 19:47:48', 'ydwD6DMm', '3680622'), - (1072, 743, 'maybe', '2021-06-25 19:37:22', '2025-12-17 19:47:38', 'ydwD6DMm', '3680623'), - (1072, 761, 'not_attending', '2021-05-10 01:09:23', '2025-12-17 19:47:46', 'ydwD6DMm', '3716041'), - (1072, 792, 'attending', '2021-05-10 19:15:24', '2025-12-17 19:47:46', 'ydwD6DMm', '3793156'), - (1072, 793, 'attending', '2021-06-02 13:34:25', '2025-12-17 19:47:47', 'ydwD6DMm', '3793537'), - (1072, 795, 'maybe', '2021-06-09 16:11:44', '2025-12-17 19:47:47', 'ydwD6DMm', '3793539'), - (1072, 800, 'attending', '2021-05-12 18:37:39', '2025-12-17 19:47:46', 'ydwD6DMm', '3800908'), - (1072, 801, 'attending', '2021-05-13 20:52:00', '2025-12-17 19:47:46', 'ydwD6DMm', '3800910'), - (1072, 807, 'attending', '2021-05-13 00:53:44', '2025-12-17 19:47:46', 'ydwD6DMm', '3807154'), - (1072, 812, 'attending', '2021-05-19 13:20:18', '2025-12-17 19:47:46', 'ydwD6DMm', '3808031'), - (1072, 817, 'not_attending', '2021-05-21 00:19:48', '2025-12-17 19:47:46', 'ydwD6DMm', '3832498'), - (1072, 819, 'maybe', '2021-05-30 16:10:21', '2025-12-17 19:47:47', 'ydwD6DMm', '3833017'), - (1072, 823, 'attending', '2021-06-19 17:34:41', '2025-12-17 19:47:48', 'ydwD6DMm', '3974109'), - (1072, 825, 'attending', '2021-06-08 17:55:35', '2025-12-17 19:47:47', 'ydwD6DMm', '3975283'), - (1072, 826, 'not_attending', '2021-06-16 20:20:54', '2025-12-17 19:47:48', 'ydwD6DMm', '3975310'), - (1072, 827, 'attending', '2021-06-05 22:33:26', '2025-12-17 19:47:47', 'ydwD6DMm', '3975311'), - (1072, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydwD6DMm', '3975312'), - (1072, 830, 'maybe', '2021-05-31 00:04:31', '2025-12-17 19:47:47', 'ydwD6DMm', '3976648'), - (1072, 831, 'attending', '2021-06-04 21:42:42', '2025-12-17 19:47:47', 'ydwD6DMm', '3976649'), - (1072, 832, 'attending', '2021-05-31 00:04:39', '2025-12-17 19:47:47', 'ydwD6DMm', '3976650'), - (1072, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydwD6DMm', '3994992'), - (1072, 844, 'not_attending', '2021-06-23 23:49:05', '2025-12-17 19:47:38', 'ydwD6DMm', '4014338'), - (1072, 866, 'not_attending', '2021-06-18 23:15:21', '2025-12-17 19:47:38', 'ydwD6DMm', '4020424'), - (1072, 867, 'attending', '2021-06-20 16:10:21', '2025-12-17 19:47:38', 'ydwD6DMm', '4021848'), - (1072, 869, 'maybe', '2021-06-30 16:49:08', '2025-12-17 19:47:38', 'ydwD6DMm', '4136744'), - (1072, 870, 'not_attending', '2021-07-03 01:39:17', '2025-12-17 19:47:39', 'ydwD6DMm', '4136937'), - (1072, 871, 'not_attending', '2021-07-03 01:39:23', '2025-12-17 19:47:39', 'ydwD6DMm', '4136938'), - (1072, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwD6DMm', '4136947'), - (1072, 877, 'attending', '2021-06-16 20:20:56', '2025-12-17 19:47:48', 'ydwD6DMm', '4140575'), - (1072, 884, 'not_attending', '2021-07-17 13:14:48', '2025-12-17 19:47:42', 'ydwD6DMm', '4210314'), - (1072, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwD6DMm', '4225444'), - (1072, 899, 'maybe', '2021-07-02 18:06:25', '2025-12-17 19:47:39', 'ydwD6DMm', '4239259'), - (1072, 900, 'attending', '2021-07-20 00:14:19', '2025-12-17 19:47:40', 'ydwD6DMm', '4240316'), - (1072, 901, 'attending', '2021-07-30 22:56:30', '2025-12-17 19:47:40', 'ydwD6DMm', '4240317'), - (1072, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ydwD6DMm', '4240318'), - (1072, 903, 'not_attending', '2021-08-11 17:41:00', '2025-12-17 19:47:42', 'ydwD6DMm', '4240320'), - (1072, 904, 'attending', '2021-07-11 11:23:07', '2025-12-17 19:47:39', 'ydwD6DMm', '4241594'), - (1072, 905, 'maybe', '2021-07-05 02:49:15', '2025-12-17 19:47:39', 'ydwD6DMm', '4250163'), - (1072, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ydwD6DMm', '4275957'), - (1072, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydwD6DMm', '4277819'), - (1072, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydwD6DMm', '4301723'), - (1072, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ydwD6DMm', '4302093'), - (1072, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydwD6DMm', '4304151'), - (1072, 940, 'attending', '2021-07-30 22:56:57', '2025-12-17 19:47:40', 'ydwD6DMm', '4309049'), - (1072, 958, 'attending', '2021-08-12 00:30:29', '2025-12-17 19:47:41', 'ydwD6DMm', '4342996'), - (1072, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ydwD6DMm', '4366186'), - (1072, 974, 'attending', '2021-08-25 17:35:31', '2025-12-17 19:47:42', 'ydwD6DMm', '4366187'), - (1072, 984, 'maybe', '2021-08-22 19:30:07', '2025-12-17 19:47:42', 'ydwD6DMm', '4391258'), - (1072, 990, 'attending', '2021-08-29 03:34:39', '2025-12-17 19:47:43', 'ydwD6DMm', '4420735'), - (1072, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ydwD6DMm', '4420738'), - (1072, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ydwD6DMm', '4420739'), - (1072, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ydwD6DMm', '4420741'), - (1072, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ydwD6DMm', '4420744'), - (1072, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ydwD6DMm', '4420747'), - (1072, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ydwD6DMm', '4420748'), - (1072, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ydwD6DMm', '4420749'), - (1072, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwD6DMm', '6045684'), - (1073, 2530, 'maybe', '2024-08-15 16:53:23', '2025-12-17 19:46:31', 'mRoDkloA', '7074373'), - (1073, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mRoDkloA', '7324082'), - (1073, 2798, 'attending', '2024-08-12 18:59:41', '2025-12-17 19:46:31', 'mRoDkloA', '7395910'), - (1073, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mRoDkloA', '7397462'), - (1073, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mRoDkloA', '7432751'), - (1073, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mRoDkloA', '7432752'), - (1073, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mRoDkloA', '7432753'), - (1073, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mRoDkloA', '7432754'), - (1073, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mRoDkloA', '7432755'), - (1073, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mRoDkloA', '7432756'), - (1073, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mRoDkloA', '7432758'), - (1073, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mRoDkloA', '7432759'), - (1073, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mRoDkloA', '7433834'), - (1074, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'R40OJqVA', '3236452'), - (1074, 646, 'not_attending', '2021-05-13 00:01:49', '2025-12-17 19:47:46', 'R40OJqVA', '3539921'), - (1074, 647, 'not_attending', '2021-05-22 17:49:12', '2025-12-17 19:47:46', 'R40OJqVA', '3539922'), - (1074, 648, 'not_attending', '2021-05-28 20:56:47', '2025-12-17 19:47:47', 'R40OJqVA', '3539923'), - (1074, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'R40OJqVA', '3806392'), - (1074, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'R40OJqVA', '3963335'), - (1074, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40OJqVA', '3974109'), - (1074, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'R40OJqVA', '3975311'), - (1074, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40OJqVA', '3975312'), - (1074, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'R40OJqVA', '3994992'), - (1074, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40OJqVA', '4014338'), - (1074, 867, 'maybe', '2021-07-02 23:31:25', '2025-12-17 19:47:38', 'R40OJqVA', '4021848'), - (1074, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40OJqVA', '4136744'), - (1074, 870, 'maybe', '2021-07-03 23:09:41', '2025-12-17 19:47:39', 'R40OJqVA', '4136937'), - (1074, 871, 'not_attending', '2021-07-10 06:02:16', '2025-12-17 19:47:39', 'R40OJqVA', '4136938'), - (1074, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40OJqVA', '4136947'), - (1074, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'R40OJqVA', '4210314'), - (1074, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40OJqVA', '4225444'), - (1074, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40OJqVA', '4239259'), - (1074, 900, 'not_attending', '2021-07-31 21:15:07', '2025-12-17 19:47:40', 'R40OJqVA', '4240316'), - (1074, 901, 'not_attending', '2021-07-31 21:15:03', '2025-12-17 19:47:40', 'R40OJqVA', '4240317'), - (1074, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'R40OJqVA', '4240318'), - (1074, 903, 'not_attending', '2021-08-13 20:57:41', '2025-12-17 19:47:42', 'R40OJqVA', '4240320'), - (1074, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40OJqVA', '4250163'), - (1074, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'R40OJqVA', '4275957'), - (1074, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'R40OJqVA', '4277819'), - (1074, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'R40OJqVA', '4301723'), - (1074, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'R40OJqVA', '4302093'), - (1074, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'R40OJqVA', '4304151'), - (1074, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'R40OJqVA', '4345519'), - (1074, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'R40OJqVA', '4356801'), - (1074, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'R40OJqVA', '4358025'), - (1074, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'R40OJqVA', '4366186'), - (1074, 974, 'maybe', '2021-08-28 12:31:16', '2025-12-17 19:47:43', 'R40OJqVA', '4366187'), - (1074, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'R40OJqVA', '4402823'), - (1074, 990, 'not_attending', '2021-09-04 17:15:31', '2025-12-17 19:47:43', 'R40OJqVA', '4420735'), - (1074, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'R40OJqVA', '4420738'), - (1074, 992, 'not_attending', '2021-09-18 21:36:19', '2025-12-17 19:47:34', 'R40OJqVA', '4420739'), - (1074, 993, 'not_attending', '2021-09-25 19:40:11', '2025-12-17 19:47:34', 'R40OJqVA', '4420741'), - (1074, 995, 'not_attending', '2021-10-09 17:44:02', '2025-12-17 19:47:34', 'R40OJqVA', '4420744'), - (1074, 996, 'maybe', '2021-10-09 17:45:13', '2025-12-17 19:47:35', 'R40OJqVA', '4420747'), - (1074, 997, 'not_attending', '2021-10-30 21:40:27', '2025-12-17 19:47:35', 'R40OJqVA', '4420748'), - (1074, 998, 'not_attending', '2021-10-30 21:40:07', '2025-12-17 19:47:36', 'R40OJqVA', '4420749'), - (1074, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'R40OJqVA', '4461883'), - (1074, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'R40OJqVA', '4508342'), - (1074, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'R40OJqVA', '4568602'), - (1074, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'R40OJqVA', '4572153'), - (1074, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'R40OJqVA', '4585962'), - (1074, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'R40OJqVA', '4596356'), - (1074, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'R40OJqVA', '4598860'), - (1074, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'R40OJqVA', '4598861'), - (1074, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'R40OJqVA', '4602797'), - (1074, 1108, 'not_attending', '2021-11-18 02:09:37', '2025-12-17 19:47:37', 'R40OJqVA', '4632276'), - (1074, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'R40OJqVA', '4637896'), - (1074, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'R40OJqVA', '4642994'), - (1074, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'R40OJqVA', '4642995'), - (1074, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'R40OJqVA', '4642996'), - (1074, 1119, 'maybe', '2021-12-17 22:03:54', '2025-12-17 19:47:31', 'R40OJqVA', '4642997'), - (1074, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'R40OJqVA', '4645687'), - (1074, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'R40OJqVA', '4645698'), - (1074, 1128, 'not_attending', '2021-11-20 17:39:58', '2025-12-17 19:47:37', 'R40OJqVA', '4645704'), - (1074, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'R40OJqVA', '4645705'), - (1074, 1130, 'not_attending', '2021-12-04 22:21:40', '2025-12-17 19:47:37', 'R40OJqVA', '4658824'), - (1074, 1131, 'attending', '2021-12-17 22:03:32', '2025-12-17 19:47:31', 'R40OJqVA', '4658825'), - (1074, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'R40OJqVA', '4668385'), - (1074, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'R40OJqVA', '4694407'), - (1074, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'R40OJqVA', '4736497'), - (1074, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'R40OJqVA', '4736499'), - (1074, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'R40OJqVA', '4736500'), - (1074, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'R40OJqVA', '4736503'), - (1074, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'R40OJqVA', '4736504'), - (1074, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'R40OJqVA', '4746789'), - (1074, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'R40OJqVA', '4753929'), - (1074, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'R40OJqVA', '5038850'), - (1074, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'R40OJqVA', '5045826'), - (1074, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'R40OJqVA', '5132533'), - (1074, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'R40OJqVA', '5186582'), - (1074, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'R40OJqVA', '5186583'), - (1074, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'R40OJqVA', '5186585'), - (1074, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'R40OJqVA', '5190437'), - (1074, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'R40OJqVA', '5215989'), - (1074, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40OJqVA', '6045684'), - (1075, 1725, 'not_attending', '2022-11-18 09:02:55', '2025-12-17 19:47:16', '8d8DY6Nd', '5630967'), - (1075, 1726, 'maybe', '2022-11-20 22:48:56', '2025-12-17 19:47:16', '8d8DY6Nd', '5630968'), - (1075, 1727, 'attending', '2022-11-21 12:10:21', '2025-12-17 19:47:16', '8d8DY6Nd', '5630969'), - (1075, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '8d8DY6Nd', '5642818'), - (1075, 1761, 'maybe', '2022-11-17 11:59:46', '2025-12-17 19:47:16', '8d8DY6Nd', '5670434'), - (1075, 1762, 'maybe', '2022-11-21 12:10:13', '2025-12-17 19:47:16', '8d8DY6Nd', '5670445'), - (1075, 1768, 'attending', '2022-11-17 22:25:20', '2025-12-17 19:47:16', '8d8DY6Nd', '5674062'), - (1075, 1787, 'attending', '2022-11-17 22:32:33', '2025-12-17 19:47:16', '8d8DY6Nd', '5727234'), - (1075, 1793, 'attending', '2022-11-17 07:32:05', '2025-12-17 19:47:16', '8d8DY6Nd', '5736365'), - (1075, 1797, 'maybe', '2022-12-08 23:30:19', '2025-12-17 19:47:17', '8d8DY6Nd', '5757486'), - (1075, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '8d8DY6Nd', '5763458'), - (1075, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '8d8DY6Nd', '5774172'), - (1075, 1828, 'attending', '2022-11-28 20:40:03', '2025-12-17 19:47:16', '8d8DY6Nd', '5778865'), - (1075, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '8d8DY6Nd', '5818247'), - (1075, 1834, 'maybe', '2022-12-08 23:30:12', '2025-12-17 19:47:17', '8d8DY6Nd', '5819470'), - (1075, 1835, 'maybe', '2022-12-10 13:07:09', '2025-12-17 19:47:05', '8d8DY6Nd', '5819471'), - (1075, 1840, 'maybe', '2022-12-08 23:29:33', '2025-12-17 19:47:17', '8d8DY6Nd', '5822288'), - (1075, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '8d8DY6Nd', '5827739'), - (1075, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '8d8DY6Nd', '5844306'), - (1075, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '8d8DY6Nd', '5850159'), - (1075, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '8d8DY6Nd', '5858999'), - (1075, 1853, 'maybe', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '8d8DY6Nd', '5871984'), - (1075, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '8d8DY6Nd', '5876354'), - (1075, 1864, 'maybe', '2023-01-21 19:52:07', '2025-12-17 19:47:05', '8d8DY6Nd', '5879675'), - (1075, 1865, 'maybe', '2023-01-22 00:32:18', '2025-12-17 19:47:06', '8d8DY6Nd', '5879676'), - (1075, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '8d8DY6Nd', '5880939'), - (1075, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '8d8DY6Nd', '5880940'), - (1075, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '8d8DY6Nd', '5880942'), - (1075, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '8d8DY6Nd', '5880943'), - (1075, 1870, 'attending', '2023-01-17 22:17:02', '2025-12-17 19:47:05', '8d8DY6Nd', '5881740'), - (1075, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '8d8DY6Nd', '5887890'), - (1075, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '8d8DY6Nd', '5888598'), - (1075, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '8d8DY6Nd', '5893260'), - (1075, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '8d8DY6Nd', '5899826'), - (1075, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '8d8DY6Nd', '5900199'), - (1075, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '8d8DY6Nd', '5900200'), - (1075, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '8d8DY6Nd', '5900202'), - (1075, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '8d8DY6Nd', '5900203'), - (1075, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '8d8DY6Nd', '5901108'), - (1075, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '8d8DY6Nd', '5901126'), - (1075, 1897, 'maybe', '2023-02-10 21:49:25', '2025-12-17 19:47:07', '8d8DY6Nd', '5901128'), - (1075, 1899, 'not_attending', '2023-02-10 21:49:14', '2025-12-17 19:47:07', '8d8DY6Nd', '5901323'), - (1075, 1909, 'not_attending', '2023-02-10 21:49:02', '2025-12-17 19:47:07', '8d8DY6Nd', '5906541'), - (1075, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '8d8DY6Nd', '5909655'), - (1075, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '8d8DY6Nd', '5910522'), - (1075, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '8d8DY6Nd', '5910526'), - (1075, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '8d8DY6Nd', '5910528'), - (1075, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '8d8DY6Nd', '5916219'), - (1075, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '8d8DY6Nd', '5936234'), - (1075, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '8d8DY6Nd', '5958351'), - (1075, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '8d8DY6Nd', '5959751'), - (1075, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '8d8DY6Nd', '5959755'), - (1075, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '8d8DY6Nd', '5960055'), - (1075, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '8d8DY6Nd', '5961684'), - (1075, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '8d8DY6Nd', '5962132'), - (1075, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '8d8DY6Nd', '5962133'), - (1075, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '8d8DY6Nd', '5962134'), - (1075, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '8d8DY6Nd', '5962317'), - (1075, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '8d8DY6Nd', '5962318'), - (1075, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '8d8DY6Nd', '5965933'), - (1075, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '8d8DY6Nd', '5967014'), - (1075, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '8d8DY6Nd', '5972815'), - (1075, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '8d8DY6Nd', '5974016'), - (1075, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '8d8DY6Nd', '5975052'), - (1075, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '8d8DY6Nd', '5975054'), - (1075, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '8d8DY6Nd', '5981515'), - (1075, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '8d8DY6Nd', '5993516'), - (1075, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '8d8DY6Nd', '5998939'), - (1075, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '8d8DY6Nd', '6028191'), - (1075, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '8d8DY6Nd', '6040066'), - (1075, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '8d8DY6Nd', '6042717'), - (1075, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '8d8DY6Nd', '6044838'), - (1075, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '8d8DY6Nd', '6044839'), - (1075, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '8d8DY6Nd', '6045684'), - (1075, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '8d8DY6Nd', '6050104'), - (1075, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '8d8DY6Nd', '6053195'), - (1075, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '8d8DY6Nd', '6053198'), - (1075, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '8d8DY6Nd', '6056085'), - (1075, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '8d8DY6Nd', '6056916'), - (1075, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '8d8DY6Nd', '6059290'), - (1075, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '8d8DY6Nd', '6060328'), - (1075, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '8d8DY6Nd', '6061037'), - (1075, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '8d8DY6Nd', '6061039'), - (1075, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8d8DY6Nd', '6067245'), - (1075, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '8d8DY6Nd', '6068094'), - (1075, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '8d8DY6Nd', '6068252'), - (1075, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '8d8DY6Nd', '6068253'), - (1075, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '8d8DY6Nd', '6068254'), - (1075, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '8d8DY6Nd', '6068280'), - (1075, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '8d8DY6Nd', '6069093'), - (1075, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '8d8DY6Nd', '6072528'), - (1075, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '8d8DY6Nd', '6075556'), - (1075, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '8d8DY6Nd', '6079840'), - (1075, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '8d8DY6Nd', '6083398'), - (1075, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '8d8DY6Nd', '6093504'), - (1075, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '8d8DY6Nd', '6097414'), - (1075, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '8d8DY6Nd', '6097442'), - (1075, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '8d8DY6Nd', '6097684'), - (1075, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '8d8DY6Nd', '6098762'), - (1075, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8d8DY6Nd', '6101362'), - (1075, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8d8DY6Nd', '6107314'), - (1076, 2555, 'attending', '2024-04-13 18:08:16', '2025-12-17 19:46:34', 'dzb96lLd', '7114951'), - (1076, 2556, 'attending', '2024-04-16 22:15:50', '2025-12-17 19:46:34', 'dzb96lLd', '7114955'), - (1076, 2582, 'maybe', '2024-04-16 22:15:08', '2025-12-17 19:46:34', 'dzb96lLd', '7169765'), - (1076, 2587, 'attending', '2024-04-16 20:02:22', '2025-12-17 19:46:34', 'dzb96lLd', '7176152'), - (1076, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzb96lLd', '7178446'), - (1077, 971, 'attending', '2021-09-08 22:26:49', '2025-12-17 19:47:43', '4oMyE8om', '4356801'), - (1077, 991, 'attending', '2021-09-07 05:41:28', '2025-12-17 19:47:43', '4oMyE8om', '4420738'), - (1077, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', '4oMyE8om', '4420739'), - (1077, 993, 'not_attending', '2021-09-25 21:03:58', '2025-12-17 19:47:34', '4oMyE8om', '4420741'), - (1077, 995, 'maybe', '2021-10-09 16:38:52', '2025-12-17 19:47:34', '4oMyE8om', '4420744'), - (1077, 996, 'attending', '2021-10-10 16:49:42', '2025-12-17 19:47:35', '4oMyE8om', '4420747'), - (1077, 1003, 'attending', '2021-09-03 22:12:30', '2025-12-17 19:47:43', '4oMyE8om', '4438802'), - (1077, 1023, 'not_attending', '2021-09-09 23:49:24', '2025-12-17 19:47:43', '4oMyE8om', '4461883'), - (1077, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4oMyE8om', '4508342'), - (1077, 1086, 'not_attending', '2021-10-15 22:52:25', '2025-12-17 19:47:35', '4oMyE8om', '4568602'), - (1077, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4oMyE8om', '4572153'), - (1077, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMyE8om', '4585962'), - (1077, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4oMyE8om', '4596356'), - (1077, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4oMyE8om', '4598860'), - (1077, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4oMyE8om', '4598861'), - (1077, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4oMyE8om', '4602797'), - (1077, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4oMyE8om', '4637896'), - (1077, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4oMyE8om', '4642994'), - (1077, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4oMyE8om', '4642995'), - (1077, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4oMyE8om', '4642996'), - (1077, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4oMyE8om', '4642997'), - (1077, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4oMyE8om', '4645687'), - (1077, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4oMyE8om', '4645698'), - (1077, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4oMyE8om', '4645704'), - (1077, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4oMyE8om', '4645705'), - (1077, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4oMyE8om', '4668385'), - (1077, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4oMyE8om', '4694407'), - (1077, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMyE8om', '4736497'), - (1077, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMyE8om', '4736499'), - (1077, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4oMyE8om', '4736500'), - (1077, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMyE8om', '4736503'), - (1077, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMyE8om', '4736504'), - (1077, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4oMyE8om', '4746789'), - (1077, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMyE8om', '4753929'), - (1077, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMyE8om', '5038850'), - (1077, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMyE8om', '5045826'), - (1077, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMyE8om', '5132533'), - (1077, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMyE8om', '5186582'), - (1077, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMyE8om', '5186583'), - (1077, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMyE8om', '5186585'), - (1077, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMyE8om', '5190437'), - (1077, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMyE8om', '5215989'), - (1077, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4oMyE8om', '6045684'), - (1078, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBnge3wd', '6045684'), - (1079, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '41qWD0b4', '7324082'), - (1079, 2798, 'not_attending', '2024-08-11 19:42:25', '2025-12-17 19:46:31', '41qWD0b4', '7395910'), - (1079, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '41qWD0b4', '7397462'), - (1079, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '41qWD0b4', '7424275'), - (1079, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '41qWD0b4', '7432751'), - (1079, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '41qWD0b4', '7432752'), - (1079, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '41qWD0b4', '7432753'), - (1079, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '41qWD0b4', '7432754'), - (1079, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '41qWD0b4', '7432755'), - (1079, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '41qWD0b4', '7432756'), - (1079, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '41qWD0b4', '7432758'), - (1079, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '41qWD0b4', '7432759'), - (1079, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '41qWD0b4', '7433834'), - (1079, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '41qWD0b4', '7470197'), - (1079, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '41qWD0b4', '7685613'), - (1079, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '41qWD0b4', '7688194'), - (1079, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '41qWD0b4', '7688196'), - (1079, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '41qWD0b4', '7688289'), - (1080, 1515, 'maybe', '2022-08-06 14:04:51', '2025-12-17 19:47:21', 'd3VYzrO4', '5441128'), - (1080, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd3VYzrO4', '5441131'), - (1080, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd3VYzrO4', '5441132'), - (1080, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd3VYzrO4', '5461278'), - (1080, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd3VYzrO4', '5469480'), - (1080, 1569, 'attending', '2022-08-05 19:33:46', '2025-12-17 19:47:21', 'd3VYzrO4', '5481507'), - (1080, 1574, 'attending', '2022-08-08 05:40:19', '2025-12-17 19:47:22', 'd3VYzrO4', '5482153'), - (1080, 1576, 'attending', '2022-08-02 03:04:28', '2025-12-17 19:47:21', 'd3VYzrO4', '5482623'), - (1080, 1577, 'attending', '2022-08-03 22:06:56', '2025-12-17 19:47:21', 'd3VYzrO4', '5482793'), - (1080, 1578, 'maybe', '2022-08-02 05:55:46', '2025-12-17 19:47:21', 'd3VYzrO4', '5483073'), - (1080, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd3VYzrO4', '5488912'), - (1080, 1582, 'maybe', '2022-08-08 05:40:03', '2025-12-17 19:47:23', 'd3VYzrO4', '5492001'), - (1080, 1583, 'attending', '2022-08-08 05:39:53', '2025-12-17 19:47:22', 'd3VYzrO4', '5492002'), - (1080, 1586, 'attending', '2022-08-08 05:40:05', '2025-12-17 19:47:23', 'd3VYzrO4', '5492019'), - (1080, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd3VYzrO4', '5492192'), - (1080, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd3VYzrO4', '5493139'), - (1080, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd3VYzrO4', '5493200'), - (1080, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd3VYzrO4', '5502188'), - (1080, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd3VYzrO4', '5505059'), - (1080, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', 'd3VYzrO4', '5509055'), - (1080, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd3VYzrO4', '5512862'), - (1080, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd3VYzrO4', '5513985'), - (1080, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'd3VYzrO4', '5519981'), - (1080, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd3VYzrO4', '5522550'), - (1080, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd3VYzrO4', '5534683'), - (1080, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd3VYzrO4', '5537735'), - (1080, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd3VYzrO4', '5540859'), - (1080, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd3VYzrO4', '5546619'), - (1080, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd3VYzrO4', '5555245'), - (1080, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd3VYzrO4', '5557747'), - (1080, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd3VYzrO4', '5560255'), - (1080, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd3VYzrO4', '5562906'), - (1080, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd3VYzrO4', '5600604'), - (1080, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd3VYzrO4', '5605544'), - (1080, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', 'd3VYzrO4', '5606737'), - (1080, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd3VYzrO4', '5630960'), - (1080, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd3VYzrO4', '5630961'), - (1080, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd3VYzrO4', '5630962'), - (1080, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd3VYzrO4', '5630966'), - (1080, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd3VYzrO4', '5630967'), - (1080, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd3VYzrO4', '5630968'), - (1080, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd3VYzrO4', '5635406'), - (1080, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd3VYzrO4', '5638765'), - (1080, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd3VYzrO4', '5640097'), - (1080, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'd3VYzrO4', '5640843'), - (1080, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd3VYzrO4', '5641521'), - (1080, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd3VYzrO4', '5642818'), - (1080, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd3VYzrO4', '5652395'), - (1080, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd3VYzrO4', '5670445'), - (1080, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd3VYzrO4', '5671637'), - (1080, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd3VYzrO4', '5672329'), - (1080, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd3VYzrO4', '5674057'), - (1080, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd3VYzrO4', '5674060'), - (1080, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd3VYzrO4', '5677461'), - (1080, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd3VYzrO4', '5698046'), - (1080, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd3VYzrO4', '5699760'), - (1080, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd3VYzrO4', '5741601'), - (1080, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd3VYzrO4', '5763458'), - (1080, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd3VYzrO4', '5774172'), - (1080, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd3VYzrO4', '5818247'), - (1080, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd3VYzrO4', '5819471'), - (1080, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd3VYzrO4', '5827739'), - (1080, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd3VYzrO4', '5844306'), - (1080, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd3VYzrO4', '5850159'), - (1080, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd3VYzrO4', '5858999'), - (1080, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd3VYzrO4', '5871984'), - (1080, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd3VYzrO4', '5876354'), - (1080, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd3VYzrO4', '5880939'), - (1080, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd3VYzrO4', '5887890'), - (1080, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd3VYzrO4', '5888598'), - (1080, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd3VYzrO4', '5893260'), - (1080, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3VYzrO4', '6045684'), - (1081, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4oxjazYd', '5441131'), - (1081, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '4oxjazYd', '5441132'), - (1081, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4oxjazYd', '5505059'), - (1081, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4oxjazYd', '5509055'), - (1081, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', '4oxjazYd', '5513985'), - (1081, 1628, 'attending', '2022-08-29 22:47:19', '2025-12-17 19:47:23', '4oxjazYd', '5522500'), - (1081, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', '4oxjazYd', '5534683'), - (1081, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4oxjazYd', '5537735'), - (1081, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4oxjazYd', '5540859'), - (1081, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4oxjazYd', '5546619'), - (1081, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4oxjazYd', '5555245'), - (1081, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4oxjazYd', '5557747'), - (1081, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4oxjazYd', '5560255'), - (1081, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4oxjazYd', '5562906'), - (1081, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4oxjazYd', '5600604'), - (1081, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4oxjazYd', '5605544'), - (1081, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', '4oxjazYd', '5606737'), - (1081, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4oxjazYd', '5630960'), - (1081, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4oxjazYd', '5630961'), - (1081, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4oxjazYd', '5630962'), - (1081, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4oxjazYd', '5630966'), - (1081, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4oxjazYd', '5630967'), - (1081, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4oxjazYd', '5630968'), - (1081, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4oxjazYd', '5635406'), - (1081, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4oxjazYd', '5638765'), - (1081, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4oxjazYd', '5640097'), - (1081, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4oxjazYd', '5640843'), - (1081, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4oxjazYd', '5641521'), - (1081, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4oxjazYd', '5642818'), - (1081, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4oxjazYd', '5652395'), - (1081, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4oxjazYd', '5670445'), - (1081, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4oxjazYd', '5671637'), - (1081, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4oxjazYd', '5672329'), - (1081, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4oxjazYd', '5674057'), - (1081, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4oxjazYd', '5674060'), - (1081, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4oxjazYd', '5677461'), - (1081, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4oxjazYd', '5698046'), - (1081, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4oxjazYd', '5699760'), - (1081, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4oxjazYd', '5741601'), - (1081, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4oxjazYd', '5763458'), - (1081, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4oxjazYd', '5774172'), - (1081, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4oxjazYd', '5818247'), - (1081, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4oxjazYd', '5819471'), - (1081, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4oxjazYd', '5827739'), - (1081, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4oxjazYd', '5844306'), - (1081, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4oxjazYd', '5850159'), - (1081, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4oxjazYd', '5858999'), - (1081, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4oxjazYd', '5871984'), - (1081, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4oxjazYd', '5876354'), - (1081, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4oxjazYd', '5880939'), - (1081, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4oxjazYd', '5887890'), - (1081, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4oxjazYd', '5888598'), - (1081, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4oxjazYd', '5893260'), - (1081, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oxjazYd', '6045684'), - (1082, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'o4PK2xrA', '5630966'), - (1082, 1725, 'attending', '2022-11-13 04:50:33', '2025-12-17 19:47:16', 'o4PK2xrA', '5630967'), - (1082, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'o4PK2xrA', '5630968'), - (1082, 1727, 'attending', '2022-12-03 03:35:39', '2025-12-17 19:47:16', 'o4PK2xrA', '5630969'), - (1082, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'o4PK2xrA', '5642818'), - (1082, 1750, 'not_attending', '2022-11-03 03:14:46', '2025-12-17 19:47:15', 'o4PK2xrA', '5652365'), - (1082, 1757, 'attending', '2022-11-03 03:05:42', '2025-12-17 19:47:15', 'o4PK2xrA', '5668974'), - (1082, 1761, 'maybe', '2022-11-14 06:22:19', '2025-12-17 19:47:16', 'o4PK2xrA', '5670434'), - (1082, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'o4PK2xrA', '5670445'), - (1082, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'o4PK2xrA', '5699760'), - (1082, 1786, 'not_attending', '2022-11-07 00:16:26', '2025-12-17 19:47:15', 'o4PK2xrA', '5727232'), - (1082, 1789, 'attending', '2022-11-10 02:28:49', '2025-12-17 19:47:15', 'o4PK2xrA', '5727274'), - (1082, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'o4PK2xrA', '5741601'), - (1082, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'o4PK2xrA', '5763458'), - (1082, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'o4PK2xrA', '5774172'), - (1082, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'o4PK2xrA', '5818247'), - (1082, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'o4PK2xrA', '5819471'), - (1082, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'o4PK2xrA', '5827739'), - (1082, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'o4PK2xrA', '5844306'), - (1082, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'o4PK2xrA', '5850159'), - (1082, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'o4PK2xrA', '5858999'), - (1082, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'o4PK2xrA', '5871984'), - (1082, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'o4PK2xrA', '5876354'), - (1082, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'o4PK2xrA', '5880939'), - (1082, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'o4PK2xrA', '5880940'), - (1082, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'o4PK2xrA', '5880942'), - (1082, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'o4PK2xrA', '5880943'), - (1082, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'o4PK2xrA', '5887890'), - (1082, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'o4PK2xrA', '5888598'), - (1082, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'o4PK2xrA', '5893260'), - (1082, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'o4PK2xrA', '5899826'), - (1082, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'o4PK2xrA', '5900199'), - (1082, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'o4PK2xrA', '5900200'), - (1082, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'o4PK2xrA', '5900202'), - (1082, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'o4PK2xrA', '5900203'), - (1082, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'o4PK2xrA', '5901108'), - (1082, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'o4PK2xrA', '5901126'), - (1082, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'o4PK2xrA', '5909655'), - (1082, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'o4PK2xrA', '5910522'), - (1082, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'o4PK2xrA', '5910526'), - (1082, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'o4PK2xrA', '5910528'), - (1082, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'o4PK2xrA', '5916219'), - (1082, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'o4PK2xrA', '5936234'), - (1082, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'o4PK2xrA', '5958351'), - (1082, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'o4PK2xrA', '5959751'), - (1082, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'o4PK2xrA', '5959755'), - (1082, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'o4PK2xrA', '5960055'), - (1082, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'o4PK2xrA', '5961684'), - (1082, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'o4PK2xrA', '5962132'), - (1082, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'o4PK2xrA', '5962133'), - (1082, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'o4PK2xrA', '5962134'), - (1082, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'o4PK2xrA', '5962317'), - (1082, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'o4PK2xrA', '5962318'), - (1082, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'o4PK2xrA', '5965933'), - (1082, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'o4PK2xrA', '5967014'), - (1082, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'o4PK2xrA', '5972815'), - (1082, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'o4PK2xrA', '5974016'), - (1082, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'o4PK2xrA', '5981515'), - (1082, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'o4PK2xrA', '5993516'), - (1082, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'o4PK2xrA', '5998939'), - (1082, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'o4PK2xrA', '6028191'), - (1082, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'o4PK2xrA', '6040066'), - (1082, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'o4PK2xrA', '6042717'), - (1082, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'o4PK2xrA', '6044838'), - (1082, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'o4PK2xrA', '6044839'), - (1082, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'o4PK2xrA', '6045684'), - (1082, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'o4PK2xrA', '6050104'), - (1082, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'o4PK2xrA', '6053195'), - (1082, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'o4PK2xrA', '6053198'), - (1082, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'o4PK2xrA', '6056085'), - (1082, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'o4PK2xrA', '6056916'), - (1082, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'o4PK2xrA', '6059290'), - (1082, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'o4PK2xrA', '6060328'), - (1082, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'o4PK2xrA', '6061037'), - (1082, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'o4PK2xrA', '6061039'), - (1082, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'o4PK2xrA', '6067245'), - (1082, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'o4PK2xrA', '6068094'), - (1082, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'o4PK2xrA', '6068252'), - (1082, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'o4PK2xrA', '6068253'), - (1082, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'o4PK2xrA', '6068254'), - (1082, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'o4PK2xrA', '6068280'), - (1082, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'o4PK2xrA', '6069093'), - (1082, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'o4PK2xrA', '6072528'), - (1082, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'o4PK2xrA', '6079840'), - (1082, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'o4PK2xrA', '6083398'), - (1082, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'o4PK2xrA', '6093504'), - (1082, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'o4PK2xrA', '6097414'), - (1082, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'o4PK2xrA', '6097442'), - (1082, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'o4PK2xrA', '6097684'), - (1082, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'o4PK2xrA', '6098762'), - (1082, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'o4PK2xrA', '6101362'), - (1082, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'o4PK2xrA', '6103752'), - (1082, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'o4PK2xrA', '6107314'), - (1083, 197, 'attending', '2020-08-22 17:39:59', '2025-12-17 19:47:56', 'x4o1pKJm', '3087266'), - (1083, 198, 'attending', '2020-08-28 18:57:32', '2025-12-17 19:47:56', 'x4o1pKJm', '3087267'), - (1083, 199, 'not_attending', '2020-09-05 23:18:15', '2025-12-17 19:47:56', 'x4o1pKJm', '3087268'), - (1083, 219, 'attending', '2020-08-19 22:57:19', '2025-12-17 19:47:56', 'x4o1pKJm', '3129263'), - (1083, 223, 'not_attending', '2020-09-05 21:28:16', '2025-12-17 19:47:56', 'x4o1pKJm', '3129980'), - (1083, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'x4o1pKJm', '3186057'), - (1083, 313, 'maybe', '2020-08-23 14:42:26', '2025-12-17 19:47:56', 'x4o1pKJm', '3188127'), - (1083, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'x4o1pKJm', '3191735'), - (1083, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', 'x4o1pKJm', '3193885'), - (1083, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'x4o1pKJm', '3200209'), - (1083, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', 'x4o1pKJm', '3200495'), - (1083, 343, 'not_attending', '2020-09-21 22:56:44', '2025-12-17 19:47:56', 'x4o1pKJm', '3206759'), - (1083, 362, 'not_attending', '2020-09-25 19:23:20', '2025-12-17 19:47:52', 'x4o1pKJm', '3214207'), - (1083, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'x4o1pKJm', '3217037'), - (1083, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'x4o1pKJm', '3218510'), - (1083, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', 'x4o1pKJm', '3221403'), - (1083, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'x4o1pKJm', '3228698'), - (1083, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'x4o1pKJm', '3228699'), - (1083, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'x4o1pKJm', '3228700'), - (1083, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'x4o1pKJm', '3228701'), - (1083, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'x4o1pKJm', '3245751'), - (1083, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'x4o1pKJm', '3250232'), - (1083, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'x4o1pKJm', '3256168'), - (1083, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4o1pKJm', '6045684'), - (1084, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRBbYXYm', '6045684'), - (1085, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dK3xjJ9d', '4736497'), - (1085, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dK3xjJ9d', '4736499'), - (1085, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dK3xjJ9d', '4736500'), - (1085, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dK3xjJ9d', '4736503'), - (1085, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dK3xjJ9d', '4736504'), - (1085, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dK3xjJ9d', '4746789'), - (1085, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dK3xjJ9d', '4753929'), - (1085, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dK3xjJ9d', '5038850'), - (1085, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dK3xjJ9d', '5045826'), - (1085, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dK3xjJ9d', '5132533'), - (1085, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dK3xjJ9d', '6045684'), - (1086, 707, 'maybe', '2021-04-11 10:30:01', '2025-12-17 19:47:46', 'bdz1vya4', '3583262'), - (1086, 724, 'maybe', '2021-04-11 10:29:54', '2025-12-17 19:47:46', 'bdz1vya4', '3661369'), - (1086, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz1vya4', '6045684'), - (1087, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'VmM1BMQm', '3406988'), - (1087, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'VmM1BMQm', '3416576'), - (1087, 564, 'attending', '2021-01-22 21:46:55', '2025-12-17 19:47:49', 'VmM1BMQm', '3426074'), - (1087, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'VmM1BMQm', '3430267'), - (1087, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'VmM1BMQm', '3468125'), - (1087, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VmM1BMQm', '3470303'), - (1087, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'VmM1BMQm', '3470305'), - (1087, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VmM1BMQm', '3470991'), - (1087, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VmM1BMQm', '3517815'), - (1087, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'VmM1BMQm', '3523941'), - (1087, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VmM1BMQm', '3533850'), - (1087, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VmM1BMQm', '3536632'), - (1087, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VmM1BMQm', '3536656'), - (1087, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VmM1BMQm', '3539916'), - (1087, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VmM1BMQm', '3539917'), - (1087, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VmM1BMQm', '3539918'), - (1087, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VmM1BMQm', '3539919'), - (1087, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VmM1BMQm', '3539920'), - (1087, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VmM1BMQm', '3539921'), - (1087, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VmM1BMQm', '3539922'), - (1087, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VmM1BMQm', '3539923'), - (1087, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmM1BMQm', '6045684'), - (1088, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'dlK19nw4', '5513985'), - (1088, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'dlK19nw4', '5534683'), - (1088, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dlK19nw4', '5537735'), - (1088, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dlK19nw4', '5540859'), - (1088, 1643, 'maybe', '2022-09-20 03:22:57', '2025-12-17 19:47:11', 'dlK19nw4', '5545856'), - (1088, 1644, 'attending', '2022-09-19 15:04:23', '2025-12-17 19:47:11', 'dlK19nw4', '5545857'), - (1088, 1654, 'not_attending', '2022-09-05 18:28:29', '2025-12-17 19:47:25', 'dlK19nw4', '5554471'), - (1088, 1655, 'not_attending', '2022-09-09 13:34:03', '2025-12-17 19:47:11', 'dlK19nw4', '5554482'), - (1088, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dlK19nw4', '5555245'), - (1088, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dlK19nw4', '5557747'), - (1088, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dlK19nw4', '5560255'), - (1088, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dlK19nw4', '5562906'), - (1088, 1675, 'attending', '2022-09-18 21:09:28', '2025-12-17 19:47:11', 'dlK19nw4', '5593342'), - (1088, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dlK19nw4', '5600604'), - (1088, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dlK19nw4', '5605544'), - (1088, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'dlK19nw4', '5606737'), - (1088, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dlK19nw4', '5630960'), - (1088, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dlK19nw4', '5630961'), - (1088, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dlK19nw4', '5630962'), - (1088, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dlK19nw4', '5630966'), - (1088, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dlK19nw4', '5630967'), - (1088, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dlK19nw4', '5630968'), - (1088, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dlK19nw4', '5635406'), - (1088, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dlK19nw4', '5638765'), - (1088, 1739, 'maybe', '2022-10-22 15:17:07', '2025-12-17 19:47:14', 'dlK19nw4', '5640097'), - (1088, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dlK19nw4', '5640843'), - (1088, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dlK19nw4', '5641521'), - (1088, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dlK19nw4', '5642818'), - (1088, 1750, 'maybe', '2022-10-31 18:32:15', '2025-12-17 19:47:15', 'dlK19nw4', '5652365'), - (1088, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dlK19nw4', '5652395'), - (1088, 1757, 'attending', '2022-10-31 18:31:54', '2025-12-17 19:47:15', 'dlK19nw4', '5668974'), - (1088, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dlK19nw4', '5670445'), - (1088, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dlK19nw4', '5671637'), - (1088, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dlK19nw4', '5672329'), - (1088, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dlK19nw4', '5674057'), - (1088, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dlK19nw4', '5674060'), - (1088, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dlK19nw4', '5677461'), - (1088, 1773, 'not_attending', '2022-10-31 18:30:58', '2025-12-17 19:47:14', 'dlK19nw4', '5677707'), - (1088, 1776, 'attending', '2022-11-09 13:57:36', '2025-12-17 19:47:15', 'dlK19nw4', '5691067'), - (1088, 1781, 'attending', '2022-11-02 21:36:10', '2025-12-17 19:47:15', 'dlK19nw4', '5696178'), - (1088, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dlK19nw4', '5698046'), - (1088, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dlK19nw4', '5699760'), - (1088, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dlK19nw4', '5741601'), - (1088, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dlK19nw4', '5763458'), - (1088, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dlK19nw4', '5774172'), - (1088, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dlK19nw4', '5818247'), - (1088, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dlK19nw4', '5819471'), - (1088, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dlK19nw4', '5827739'), - (1088, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dlK19nw4', '5844306'), - (1088, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dlK19nw4', '5850159'), - (1088, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dlK19nw4', '5858999'), - (1088, 1852, 'attending', '2023-01-09 18:55:30', '2025-12-17 19:47:05', 'dlK19nw4', '5869898'), - (1088, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dlK19nw4', '5871984'), - (1088, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dlK19nw4', '5876354'), - (1088, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dlK19nw4', '5880939'), - (1088, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dlK19nw4', '5880940'), - (1088, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dlK19nw4', '5880942'), - (1088, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dlK19nw4', '5880943'), - (1088, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dlK19nw4', '5887890'), - (1088, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dlK19nw4', '5888598'), - (1088, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dlK19nw4', '5893260'), - (1088, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dlK19nw4', '5899826'), - (1088, 1888, 'attending', '2023-02-17 16:58:58', '2025-12-17 19:47:07', 'dlK19nw4', '5900197'), - (1088, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dlK19nw4', '5900199'), - (1088, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dlK19nw4', '5900200'), - (1088, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dlK19nw4', '5900202'), - (1088, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dlK19nw4', '5900203'), - (1088, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dlK19nw4', '5901108'), - (1088, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dlK19nw4', '5901126'), - (1088, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dlK19nw4', '5909655'), - (1088, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dlK19nw4', '5910522'), - (1088, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dlK19nw4', '5910526'), - (1088, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dlK19nw4', '5910528'), - (1088, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dlK19nw4', '5916219'), - (1088, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dlK19nw4', '5936234'), - (1088, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dlK19nw4', '5958351'), - (1088, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dlK19nw4', '5959751'), - (1088, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dlK19nw4', '5959755'), - (1088, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dlK19nw4', '5960055'), - (1088, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dlK19nw4', '5961684'), - (1088, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dlK19nw4', '5962132'), - (1088, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dlK19nw4', '5962133'), - (1088, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dlK19nw4', '5962134'), - (1088, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dlK19nw4', '5962317'), - (1088, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dlK19nw4', '5962318'), - (1088, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dlK19nw4', '5965933'), - (1088, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dlK19nw4', '5967014'), - (1088, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dlK19nw4', '5972815'), - (1088, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dlK19nw4', '5974016'), - (1088, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dlK19nw4', '5981515'), - (1088, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dlK19nw4', '5993516'), - (1088, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dlK19nw4', '5998939'), - (1088, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dlK19nw4', '6028191'), - (1088, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dlK19nw4', '6040066'), - (1088, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dlK19nw4', '6042717'), - (1088, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dlK19nw4', '6044838'), - (1088, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dlK19nw4', '6044839'), - (1088, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlK19nw4', '6045684'), - (1088, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dlK19nw4', '6050104'), - (1088, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dlK19nw4', '6053195'), - (1088, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dlK19nw4', '6053198'), - (1088, 2008, 'attending', '2023-04-07 19:25:47', '2025-12-17 19:46:58', 'dlK19nw4', '6055808'), - (1088, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dlK19nw4', '6056085'), - (1088, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dlK19nw4', '6056916'), - (1088, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dlK19nw4', '6059290'), - (1088, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dlK19nw4', '6060328'), - (1088, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dlK19nw4', '6061037'), - (1088, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dlK19nw4', '6061039'), - (1088, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dlK19nw4', '6067245'), - (1088, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dlK19nw4', '6068094'), - (1088, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dlK19nw4', '6068252'), - (1088, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dlK19nw4', '6068253'), - (1088, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dlK19nw4', '6068254'), - (1088, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dlK19nw4', '6068280'), - (1088, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dlK19nw4', '6069093'), - (1088, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dlK19nw4', '6072528'), - (1088, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dlK19nw4', '6079840'), - (1088, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dlK19nw4', '6083398'), - (1088, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dlK19nw4', '6093504'), - (1088, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dlK19nw4', '6097414'), - (1088, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dlK19nw4', '6097442'), - (1088, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dlK19nw4', '6097684'), - (1088, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dlK19nw4', '6098762'), - (1088, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dlK19nw4', '6101361'), - (1088, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dlK19nw4', '6101362'), - (1088, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dlK19nw4', '6103752'), - (1088, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dlK19nw4', '6107314'), - (1088, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dlK19nw4', '6120034'), - (1088, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dlK19nw4', '6136733'), - (1088, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dlK19nw4', '6137989'), - (1088, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dlK19nw4', '6150864'), - (1088, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dlK19nw4', '6155491'), - (1088, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dlK19nw4', '6164417'), - (1088, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dlK19nw4', '6166388'), - (1088, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dlK19nw4', '6176439'), - (1088, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dlK19nw4', '6182410'), - (1088, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dlK19nw4', '6185812'), - (1088, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dlK19nw4', '6187651'), - (1088, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dlK19nw4', '6187963'), - (1088, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dlK19nw4', '6187964'), - (1088, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dlK19nw4', '6187966'), - (1088, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dlK19nw4', '6187967'), - (1088, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dlK19nw4', '6187969'), - (1088, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dlK19nw4', '6334878'), - (1088, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dlK19nw4', '6337236'), - (1088, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dlK19nw4', '6337970'), - (1088, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dlK19nw4', '6338308'), - (1088, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dlK19nw4', '6340845'), - (1088, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dlK19nw4', '6341710'), - (1088, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dlK19nw4', '6342044'), - (1088, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dlK19nw4', '6342298'), - (1088, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dlK19nw4', '6343294'), - (1088, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dlK19nw4', '6347034'), - (1088, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dlK19nw4', '6347056'), - (1088, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dlK19nw4', '6353830'), - (1088, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dlK19nw4', '6353831'), - (1088, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dlK19nw4', '6357867'), - (1088, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dlK19nw4', '6358652'), - (1088, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dlK19nw4', '6361709'), - (1088, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dlK19nw4', '6361710'), - (1088, 2210, 'not_attending', '2023-08-28 04:18:29', '2025-12-17 19:46:55', 'dlK19nw4', '6361711'), - (1088, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dlK19nw4', '6361712'), - (1088, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dlK19nw4', '6361713'), - (1088, 2219, 'not_attending', '2023-08-28 04:18:15', '2025-12-17 19:46:55', 'dlK19nw4', '6367309'), - (1088, 2220, 'not_attending', '2023-08-28 04:19:35', '2025-12-17 19:46:56', 'dlK19nw4', '6367310'), - (1088, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dlK19nw4', '6382573'), - (1088, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dlK19nw4', '6388604'), - (1088, 2245, 'attending', '2023-09-26 16:54:48', '2025-12-17 19:46:45', 'dlK19nw4', '6393703'), - (1088, 2248, 'attending', '2023-09-11 14:27:54', '2025-12-17 19:46:44', 'dlK19nw4', '6394629'), - (1088, 2249, 'maybe', '2023-09-16 21:50:05', '2025-12-17 19:46:45', 'dlK19nw4', '6394630'), - (1088, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dlK19nw4', '6394631'), - (1088, 2253, 'maybe', '2023-09-30 15:14:43', '2025-12-17 19:46:45', 'dlK19nw4', '6401811'), - (1088, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dlK19nw4', '6440863'), - (1088, 2270, 'attending', '2023-10-03 16:32:34', '2025-12-17 19:46:46', 'dlK19nw4', '6443067'), - (1088, 2272, 'maybe', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dlK19nw4', '6445440'), - (1088, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dlK19nw4', '6453951'), - (1088, 2277, 'not_attending', '2023-10-12 21:29:45', '2025-12-17 19:46:46', 'dlK19nw4', '6455211'), - (1088, 2279, 'not_attending', '2023-10-12 21:29:30', '2025-12-17 19:46:46', 'dlK19nw4', '6455460'), - (1088, 2284, 'not_attending', '2023-10-12 21:29:42', '2025-12-17 19:46:46', 'dlK19nw4', '6460928'), - (1088, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dlK19nw4', '6461696'), - (1088, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dlK19nw4', '6462129'), - (1088, 2290, 'maybe', '2023-10-12 21:29:58', '2025-12-17 19:46:46', 'dlK19nw4', '6462214'), - (1088, 2292, 'not_attending', '2023-10-30 04:25:35', '2025-12-17 19:46:47', 'dlK19nw4', '6462216'), - (1088, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dlK19nw4', '6463218'), - (1088, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dlK19nw4', '6472181'), - (1088, 2300, 'not_attending', '2023-10-30 04:25:22', '2025-12-17 19:46:47', 'dlK19nw4', '6472185'), - (1088, 2304, 'not_attending', '2023-10-30 04:25:40', '2025-12-17 19:46:47', 'dlK19nw4', '6482693'), - (1088, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dlK19nw4', '6484200'), - (1088, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dlK19nw4', '6484680'), - (1088, 2310, 'not_attending', '2023-10-30 04:25:52', '2025-12-17 19:46:47', 'dlK19nw4', '6487709'), - (1088, 2311, 'not_attending', '2023-10-30 04:25:47', '2025-12-17 19:46:47', 'dlK19nw4', '6487725'), - (1088, 2314, 'not_attending', '2023-10-30 04:25:38', '2025-12-17 19:46:47', 'dlK19nw4', '6493665'), - (1088, 2315, 'not_attending', '2023-10-30 04:25:43', '2025-12-17 19:46:47', 'dlK19nw4', '6493666'), - (1088, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dlK19nw4', '6507741'), - (1088, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dlK19nw4', '6514659'), - (1088, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dlK19nw4', '6514660'), - (1088, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dlK19nw4', '6519103'), - (1088, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dlK19nw4', '6535681'), - (1088, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlK19nw4', '6584747'), - (1088, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlK19nw4', '6587097'), - (1088, 2357, 'attending', '2023-12-17 05:01:57', '2025-12-17 19:46:36', 'dlK19nw4', '6593341'), - (1088, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlK19nw4', '6609022'), - (1088, 2373, 'not_attending', '2024-01-14 16:17:33', '2025-12-17 19:46:38', 'dlK19nw4', '6632678'), - (1088, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlK19nw4', '6632757'), - (1088, 2375, 'attending', '2023-12-21 00:28:46', '2025-12-17 19:46:36', 'dlK19nw4', '6634548'), - (1088, 2376, 'not_attending', '2024-01-19 17:03:34', '2025-12-17 19:46:40', 'dlK19nw4', '6642900'), - (1088, 2377, 'attending', '2024-01-07 07:08:39', '2025-12-17 19:46:37', 'dlK19nw4', '6643448'), - (1088, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlK19nw4', '6644187'), - (1088, 2385, 'not_attending', '2024-01-07 07:09:00', '2025-12-17 19:46:37', 'dlK19nw4', '6648943'), - (1088, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlK19nw4', '6648951'), - (1088, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlK19nw4', '6648952'), - (1088, 2389, 'not_attending', '2024-01-07 07:10:30', '2025-12-17 19:46:40', 'dlK19nw4', '6651094'), - (1088, 2391, 'not_attending', '2024-01-07 07:09:26', '2025-12-17 19:46:37', 'dlK19nw4', '6654138'), - (1088, 2392, 'not_attending', '2024-01-07 07:09:15', '2025-12-17 19:46:37', 'dlK19nw4', '6654412'), - (1088, 2393, 'not_attending', '2024-01-07 07:09:54', '2025-12-17 19:46:38', 'dlK19nw4', '6654468'), - (1088, 2394, 'not_attending', '2024-01-07 07:10:04', '2025-12-17 19:46:38', 'dlK19nw4', '6654470'), - (1088, 2395, 'not_attending', '2024-01-14 16:17:58', '2025-12-17 19:46:38', 'dlK19nw4', '6654471'), - (1088, 2396, 'not_attending', '2024-01-14 16:18:00', '2025-12-17 19:46:38', 'dlK19nw4', '6655401'), - (1088, 2397, 'not_attending', '2024-01-07 07:08:48', '2025-12-17 19:46:37', 'dlK19nw4', '6657379'), - (1088, 2398, 'not_attending', '2024-01-07 07:09:12', '2025-12-17 19:46:37', 'dlK19nw4', '6657381'), - (1088, 2399, 'not_attending', '2024-01-13 19:05:47', '2025-12-17 19:46:38', 'dlK19nw4', '6657583'), - (1088, 2400, 'not_attending', '2024-01-10 06:02:58', '2025-12-17 19:46:37', 'dlK19nw4', '6659378'), - (1088, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlK19nw4', '6661585'), - (1088, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlK19nw4', '6661588'), - (1088, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlK19nw4', '6661589'), - (1088, 2404, 'not_attending', '2024-01-14 16:17:42', '2025-12-17 19:46:38', 'dlK19nw4', '6666858'), - (1088, 2405, 'not_attending', '2024-01-14 16:18:10', '2025-12-17 19:46:38', 'dlK19nw4', '6667332'), - (1088, 2406, 'not_attending', '2024-01-14 16:18:24', '2025-12-17 19:46:40', 'dlK19nw4', '6692344'), - (1088, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlK19nw4', '6699906'), - (1088, 2408, 'not_attending', '2024-01-19 17:02:54', '2025-12-17 19:46:40', 'dlK19nw4', '6699907'), - (1088, 2410, 'not_attending', '2024-02-05 18:28:00', '2025-12-17 19:46:41', 'dlK19nw4', '6699911'), - (1088, 2411, 'not_attending', '2024-02-13 05:17:20', '2025-12-17 19:46:42', 'dlK19nw4', '6699913'), - (1088, 2412, 'not_attending', '2024-02-13 05:17:51', '2025-12-17 19:46:43', 'dlK19nw4', '6700717'), - (1088, 2414, 'not_attending', '2024-01-19 17:02:58', '2025-12-17 19:46:40', 'dlK19nw4', '6701000'), - (1088, 2415, 'not_attending', '2024-01-19 17:03:00', '2025-12-17 19:46:40', 'dlK19nw4', '6701001'), - (1088, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlK19nw4', '6701109'), - (1088, 2417, 'not_attending', '2024-01-19 17:03:09', '2025-12-17 19:46:40', 'dlK19nw4', '6701905'), - (1088, 2421, 'not_attending', '2024-01-19 17:03:25', '2025-12-17 19:46:40', 'dlK19nw4', '6704598'), - (1088, 2422, 'not_attending', '2024-01-19 17:03:22', '2025-12-17 19:46:40', 'dlK19nw4', '6704650'), - (1088, 2423, 'maybe', '2024-01-19 17:03:20', '2025-12-17 19:46:40', 'dlK19nw4', '6705141'), - (1088, 2424, 'not_attending', '2024-01-19 17:02:47', '2025-12-17 19:46:40', 'dlK19nw4', '6705143'), - (1088, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlK19nw4', '6705219'), - (1088, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlK19nw4', '6710153'), - (1088, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlK19nw4', '6711552'), - (1088, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dlK19nw4', '6711553'), - (1088, 2435, 'not_attending', '2024-01-29 02:58:16', '2025-12-17 19:46:41', 'dlK19nw4', '6721547'), - (1088, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlK19nw4', '6722688'), - (1088, 2438, 'attending', '2024-02-05 18:27:48', '2025-12-17 19:46:41', 'dlK19nw4', '6730201'), - (1088, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlK19nw4', '6730620'), - (1088, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlK19nw4', '6730642'), - (1088, 2444, 'not_attending', '2024-02-05 18:27:56', '2025-12-17 19:46:41', 'dlK19nw4', '6734367'), - (1088, 2445, 'not_attending', '2024-02-13 05:17:13', '2025-12-17 19:46:41', 'dlK19nw4', '6734368'), - (1088, 2447, 'not_attending', '2024-03-11 02:37:08', '2025-12-17 19:46:32', 'dlK19nw4', '6734370'), - (1088, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlK19nw4', '6740364'), - (1088, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlK19nw4', '6743829'), - (1088, 2466, 'not_attending', '2024-02-14 22:58:09', '2025-12-17 19:46:41', 'dlK19nw4', '7026777'), - (1088, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlK19nw4', '7030380'), - (1088, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlK19nw4', '7033677'), - (1088, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlK19nw4', '7035415'), - (1088, 2475, 'not_attending', '2024-02-27 08:06:37', '2025-12-17 19:46:43', 'dlK19nw4', '7035643'), - (1088, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlK19nw4', '7044715'), - (1088, 2487, 'not_attending', '2024-03-17 18:07:30', '2025-12-17 19:46:33', 'dlK19nw4', '7049279'), - (1088, 2488, 'not_attending', '2024-03-17 18:07:25', '2025-12-17 19:46:33', 'dlK19nw4', '7049398'), - (1088, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlK19nw4', '7050318'), - (1088, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlK19nw4', '7050319'), - (1088, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlK19nw4', '7050322'), - (1088, 2495, 'not_attending', '2024-03-11 02:37:02', '2025-12-17 19:46:32', 'dlK19nw4', '7052982'), - (1088, 2498, 'not_attending', '2024-03-17 18:07:15', '2025-12-17 19:46:33', 'dlK19nw4', '7057662'), - (1088, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlK19nw4', '7057804'), - (1088, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dlK19nw4', '7059866'), - (1088, 2502, 'not_attending', '2024-03-17 18:07:10', '2025-12-17 19:46:33', 'dlK19nw4', '7061202'), - (1088, 2504, 'not_attending', '2024-03-17 18:07:24', '2025-12-17 19:46:33', 'dlK19nw4', '7063296'), - (1088, 2505, 'not_attending', '2024-03-17 18:07:18', '2025-12-17 19:46:33', 'dlK19nw4', '7069163'), - (1088, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlK19nw4', '7072824'), - (1088, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlK19nw4', '7074348'), - (1088, 2510, 'not_attending', '2024-03-17 18:07:20', '2025-12-17 19:46:33', 'dlK19nw4', '7074350'), - (1088, 2511, 'not_attending', '2024-04-08 20:11:49', '2025-12-17 19:46:33', 'dlK19nw4', '7074351'), - (1088, 2512, 'not_attending', '2024-04-01 15:09:47', '2025-12-17 19:46:33', 'dlK19nw4', '7074352'), - (1088, 2513, 'not_attending', '2024-04-17 22:57:14', '2025-12-17 19:46:34', 'dlK19nw4', '7074353'), - (1088, 2515, 'not_attending', '2024-05-02 16:08:32', '2025-12-17 19:46:35', 'dlK19nw4', '7074355'), - (1088, 2516, 'not_attending', '2024-04-30 09:34:44', '2025-12-17 19:46:35', 'dlK19nw4', '7074356'), - (1088, 2520, 'not_attending', '2024-05-12 16:46:12', '2025-12-17 19:46:35', 'dlK19nw4', '7074360'), - (1088, 2521, 'not_attending', '2024-06-03 18:57:24', '2025-12-17 19:46:29', 'dlK19nw4', '7074361'), - (1088, 2523, 'not_attending', '2024-06-03 18:56:46', '2025-12-17 19:46:36', 'dlK19nw4', '7074363'), - (1088, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dlK19nw4', '7074364'), - (1088, 2525, 'not_attending', '2024-06-03 18:57:07', '2025-12-17 19:46:28', 'dlK19nw4', '7074365'), - (1088, 2533, 'maybe', '2024-08-18 20:02:59', '2025-12-17 19:46:32', 'dlK19nw4', '7074384'), - (1088, 2534, 'not_attending', '2024-03-13 18:30:26', '2025-12-17 19:46:32', 'dlK19nw4', '7076875'), - (1088, 2536, 'not_attending', '2024-03-17 18:07:12', '2025-12-17 19:46:33', 'dlK19nw4', '7077689'), - (1088, 2537, 'maybe', '2024-03-17 18:07:33', '2025-12-17 19:46:33', 'dlK19nw4', '7085484'), - (1088, 2539, 'maybe', '2024-04-01 15:10:02', '2025-12-17 19:46:33', 'dlK19nw4', '7085486'), - (1088, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlK19nw4', '7089267'), - (1088, 2541, 'not_attending', '2024-03-17 18:07:06', '2025-12-17 19:46:33', 'dlK19nw4', '7089404'), - (1088, 2543, 'not_attending', '2024-04-01 15:09:51', '2025-12-17 19:46:33', 'dlK19nw4', '7091456'), - (1088, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlK19nw4', '7098747'), - (1088, 2551, 'not_attending', '2024-04-01 15:09:36', '2025-12-17 19:46:33', 'dlK19nw4', '7109912'), - (1088, 2552, 'attending', '2024-03-27 22:21:13', '2025-12-17 19:46:33', 'dlK19nw4', '7111123'), - (1088, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dlK19nw4', '7113468'), - (1088, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlK19nw4', '7114856'), - (1088, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlK19nw4', '7114951'), - (1088, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlK19nw4', '7114955'), - (1088, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlK19nw4', '7114956'), - (1088, 2558, 'not_attending', '2024-05-02 16:08:28', '2025-12-17 19:46:35', 'dlK19nw4', '7114957'), - (1088, 2559, 'not_attending', '2024-04-01 15:09:40', '2025-12-17 19:46:33', 'dlK19nw4', '7115254'), - (1088, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlK19nw4', '7153615'), - (1088, 2571, 'not_attending', '2024-04-08 20:11:44', '2025-12-17 19:46:33', 'dlK19nw4', '7159484'), - (1088, 2572, 'not_attending', '2024-04-13 21:53:19', '2025-12-17 19:46:33', 'dlK19nw4', '7159522'), - (1088, 2576, 'not_attending', '2024-04-26 22:43:22', '2025-12-17 19:46:34', 'dlK19nw4', '7164538'), - (1088, 2585, 'maybe', '2024-04-24 05:59:00', '2025-12-17 19:46:34', 'dlK19nw4', '7175828'), - (1088, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dlK19nw4', '7178446'), - (1088, 2596, 'not_attending', '2024-04-27 13:45:00', '2025-12-17 19:46:34', 'dlK19nw4', '7183788'), - (1088, 2597, 'not_attending', '2024-04-26 22:43:20', '2025-12-17 19:46:34', 'dlK19nw4', '7186726'), - (1088, 2600, 'not_attending', '2024-04-30 09:34:13', '2025-12-17 19:46:35', 'dlK19nw4', '7196794'), - (1088, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dlK19nw4', '7220467'), - (1088, 2603, 'attending', '2024-05-12 16:46:08', '2025-12-17 19:46:35', 'dlK19nw4', '7225669'), - (1088, 2604, 'not_attending', '2024-05-29 15:02:10', '2025-12-17 19:46:36', 'dlK19nw4', '7225670'), - (1088, 2605, 'not_attending', '2024-05-02 16:08:25', '2025-12-17 19:46:35', 'dlK19nw4', '7229243'), - (1088, 2607, 'not_attending', '2024-04-30 09:34:23', '2025-12-17 19:46:35', 'dlK19nw4', '7240136'), - (1088, 2608, 'not_attending', '2024-04-30 09:34:29', '2025-12-17 19:46:35', 'dlK19nw4', '7240272'), - (1088, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dlK19nw4', '7240354'), - (1088, 2610, 'not_attending', '2024-05-02 16:08:26', '2025-12-17 19:46:35', 'dlK19nw4', '7241797'), - (1088, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dlK19nw4', '7251633'), - (1088, 2620, 'not_attending', '2024-05-12 16:46:13', '2025-12-17 19:46:35', 'dlK19nw4', '7258097'), - (1088, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dlK19nw4', '7263048'), - (1088, 2624, 'not_attending', '2024-05-12 16:46:00', '2025-12-17 19:46:35', 'dlK19nw4', '7263301'), - (1088, 2625, 'not_attending', '2024-05-12 16:46:03', '2025-12-17 19:46:35', 'dlK19nw4', '7263302'), - (1088, 2626, 'attending', '2024-05-12 16:46:16', '2025-12-17 19:46:35', 'dlK19nw4', '7264723'), - (1088, 2627, 'not_attending', '2024-05-24 09:59:44', '2025-12-17 19:46:35', 'dlK19nw4', '7264724'), - (1088, 2629, 'not_attending', '2024-06-03 18:56:56', '2025-12-17 19:46:28', 'dlK19nw4', '7264726'), - (1088, 2630, 'not_attending', '2024-05-12 16:46:10', '2025-12-17 19:46:35', 'dlK19nw4', '7264801'), - (1088, 2631, 'not_attending', '2024-05-12 16:45:59', '2025-12-17 19:46:35', 'dlK19nw4', '7265589'), - (1088, 2647, 'not_attending', '2024-06-03 18:57:01', '2025-12-17 19:46:28', 'dlK19nw4', '7282057'), - (1088, 2658, 'not_attending', '2024-06-03 18:57:04', '2025-12-17 19:46:36', 'dlK19nw4', '7298846'), - (1088, 2660, 'not_attending', '2024-06-03 18:57:03', '2025-12-17 19:46:36', 'dlK19nw4', '7301638'), - (1088, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dlK19nw4', '7302674'), - (1088, 2662, 'not_attending', '2024-06-03 18:56:46', '2025-12-17 19:46:36', 'dlK19nw4', '7302815'), - (1088, 2678, 'attending', '2024-06-14 21:25:59', '2025-12-17 19:46:28', 'dlK19nw4', '7319489'), - (1088, 2679, 'not_attending', '2024-06-17 07:42:57', '2025-12-17 19:46:29', 'dlK19nw4', '7319490'), - (1088, 2686, 'not_attending', '2024-06-17 07:42:51', '2025-12-17 19:46:29', 'dlK19nw4', '7323802'), - (1088, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dlK19nw4', '7324073'), - (1088, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dlK19nw4', '7324074'), - (1088, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dlK19nw4', '7324075'), - (1088, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dlK19nw4', '7324078'), - (1088, 2696, 'not_attending', '2024-08-18 20:03:08', '2025-12-17 19:46:32', 'dlK19nw4', '7324081'), - (1088, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dlK19nw4', '7324082'), - (1088, 2706, 'attending', '2024-06-17 07:42:44', '2025-12-17 19:46:28', 'dlK19nw4', '7324947'), - (1088, 2707, 'not_attending', '2024-06-17 07:42:40', '2025-12-17 19:46:28', 'dlK19nw4', '7324952'), - (1088, 2708, 'not_attending', '2024-06-14 21:25:57', '2025-12-17 19:46:28', 'dlK19nw4', '7325048'), - (1088, 2710, 'not_attending', '2024-06-17 07:42:47', '2025-12-17 19:46:29', 'dlK19nw4', '7325108'), - (1088, 2716, 'not_attending', '2024-06-17 07:42:56', '2025-12-17 19:46:29', 'dlK19nw4', '7329096'), - (1088, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dlK19nw4', '7331457'), - (1088, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dlK19nw4', '7356752'), - (1088, 2764, 'not_attending', '2024-07-26 00:16:03', '2025-12-17 19:46:30', 'dlK19nw4', '7363595'), - (1088, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dlK19nw4', '7363643'), - (1088, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dlK19nw4', '7368606'), - (1088, 2801, 'not_attending', '2024-08-18 20:02:46', '2025-12-17 19:46:32', 'dlK19nw4', '7397462'), - (1088, 2803, 'not_attending', '2024-08-18 20:02:37', '2025-12-17 19:46:32', 'dlK19nw4', '7397869'), - (1088, 2804, 'not_attending', '2024-08-18 20:03:12', '2025-12-17 19:46:32', 'dlK19nw4', '7399270'), - (1088, 2805, 'not_attending', '2024-08-20 20:49:01', '2025-12-17 19:46:32', 'dlK19nw4', '7403620'), - (1088, 2807, 'not_attending', '2024-08-23 04:33:43', '2025-12-17 19:46:32', 'dlK19nw4', '7406485'), - (1088, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dlK19nw4', '7424275'), - (1088, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dlK19nw4', '7424276'), - (1088, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dlK19nw4', '7432751'), - (1088, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dlK19nw4', '7432752'), - (1088, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dlK19nw4', '7432753'), - (1088, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dlK19nw4', '7432754'), - (1088, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dlK19nw4', '7432755'), - (1088, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dlK19nw4', '7432756'), - (1088, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dlK19nw4', '7432758'), - (1088, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dlK19nw4', '7432759'), - (1088, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dlK19nw4', '7433834'), - (1088, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dlK19nw4', '7470197'), - (1088, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dlK19nw4', '7685613'), - (1088, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dlK19nw4', '7688194'), - (1088, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dlK19nw4', '7688196'), - (1088, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dlK19nw4', '7688289'), - (1089, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'rdO1gaWA', '6045684'), - (1090, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '406JJWRm', '5880943'), - (1090, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '406JJWRm', '5900202'), - (1090, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '406JJWRm', '5900203'), - (1090, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '406JJWRm', '5910528'), - (1090, 1945, 'maybe', '2023-03-08 05:15:16', '2025-12-17 19:47:10', '406JJWRm', '5962133'), - (1090, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '406JJWRm', '5962317'), - (1090, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '406JJWRm', '5962318'), - (1090, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '406JJWRm', '5965933'), - (1090, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '406JJWRm', '5972815'), - (1090, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '406JJWRm', '5974016'), - (1090, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '406JJWRm', '5981515'), - (1090, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '406JJWRm', '5993516'), - (1090, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '406JJWRm', '5998939'), - (1090, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '406JJWRm', '6028191'), - (1090, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '406JJWRm', '6040066'), - (1090, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '406JJWRm', '6042717'), - (1090, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '406JJWRm', '6044838'), - (1090, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '406JJWRm', '6044839'), - (1090, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '406JJWRm', '6045684'), - (1090, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', '406JJWRm', '6048955'), - (1090, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '406JJWRm', '6050104'), - (1090, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '406JJWRm', '6053195'), - (1090, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '406JJWRm', '6053198'), - (1090, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '406JJWRm', '6056085'), - (1090, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '406JJWRm', '6056916'), - (1090, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '406JJWRm', '6059290'), - (1090, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '406JJWRm', '6060328'), - (1090, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '406JJWRm', '6061037'), - (1090, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '406JJWRm', '6061039'), - (1090, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '406JJWRm', '6067245'), - (1090, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '406JJWRm', '6068094'), - (1090, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '406JJWRm', '6068252'), - (1090, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '406JJWRm', '6068253'), - (1090, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '406JJWRm', '6068254'), - (1090, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '406JJWRm', '6068280'), - (1090, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '406JJWRm', '6069093'), - (1090, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '406JJWRm', '6072528'), - (1090, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '406JJWRm', '6079840'), - (1090, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '406JJWRm', '6083398'), - (1090, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '406JJWRm', '6093504'), - (1090, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '406JJWRm', '6097414'), - (1090, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '406JJWRm', '6097442'), - (1090, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '406JJWRm', '6097684'), - (1090, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '406JJWRm', '6098762'), - (1090, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '406JJWRm', '6101362'), - (1090, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '406JJWRm', '6107314'), - (1090, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '406JJWRm', '6120034'), - (1091, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dlk7oNl4', '7869188'), - (1091, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dlk7oNl4', '7888250'), - (1091, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dlk7oNl4', '7897784'), - (1091, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dlk7oNl4', '7903856'), - (1091, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dlk7oNl4', '8347770'), - (1091, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dlk7oNl4', '8349164'), - (1091, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dlk7oNl4', '8349545'), - (1091, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dlk7oNl4', '8353584'), - (1092, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '8dB9BjL4', '6655401'), - (1092, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '8dB9BjL4', '6699906'), - (1092, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '8dB9BjL4', '6699913'), - (1092, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '8dB9BjL4', '6701109'), - (1092, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '8dB9BjL4', '6705219'), - (1092, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '8dB9BjL4', '6710153'), - (1092, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '8dB9BjL4', '6711552'), - (1092, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '8dB9BjL4', '6711553'), - (1092, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '8dB9BjL4', '6722688'), - (1092, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '8dB9BjL4', '6730620'), - (1092, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '8dB9BjL4', '6730642'), - (1092, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '8dB9BjL4', '6740364'), - (1092, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '8dB9BjL4', '6743829'), - (1092, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '8dB9BjL4', '7030380'), - (1092, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '8dB9BjL4', '7033677'), - (1092, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '8dB9BjL4', '7035415'), - (1092, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '8dB9BjL4', '7044715'), - (1092, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '8dB9BjL4', '7050318'), - (1092, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '8dB9BjL4', '7050319'), - (1092, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '8dB9BjL4', '7050322'), - (1092, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '8dB9BjL4', '7057804'), - (1092, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '8dB9BjL4', '7072824'), - (1092, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '8dB9BjL4', '7074348'), - (1092, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '8dB9BjL4', '7089267'), - (1092, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '8dB9BjL4', '7098747'), - (1092, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '8dB9BjL4', '7113468'), - (1092, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '8dB9BjL4', '7114856'), - (1092, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '8dB9BjL4', '7114951'), - (1092, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '8dB9BjL4', '7114955'), - (1092, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '8dB9BjL4', '7114956'), - (1092, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '8dB9BjL4', '7153615'), - (1092, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '8dB9BjL4', '7159484'), - (1092, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '8dB9BjL4', '7178446'), - (1093, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AYpq90wm', '8477877'), - (1093, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AYpq90wm', '8485688'), - (1093, 3234, 'not_attending', '2025-08-15 02:57:00', '2025-12-17 19:46:17', 'AYpq90wm', '8488773'), - (1093, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AYpq90wm', '8490587'), - (1093, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AYpq90wm', '8493552'), - (1093, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AYpq90wm', '8493553'), - (1093, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AYpq90wm', '8493554'), - (1093, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AYpq90wm', '8493555'), - (1093, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AYpq90wm', '8493556'), - (1093, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AYpq90wm', '8493557'), - (1093, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AYpq90wm', '8493558'), - (1093, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AYpq90wm', '8493559'), - (1093, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AYpq90wm', '8493560'), - (1093, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'AYpq90wm', '8493561'), - (1093, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AYpq90wm', '8493572'), - (1093, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'AYpq90wm', '8529058'), - (1094, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Pm7vD5ad', '3386848'), - (1094, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Pm7vD5ad', '3389527'), - (1094, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Pm7vD5ad', '3396499'), - (1094, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Pm7vD5ad', '3403650'), - (1094, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Pm7vD5ad', '3406988'), - (1094, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Pm7vD5ad', '3416576'), - (1094, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Pm7vD5ad', '3426074'), - (1094, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'Pm7vD5ad', '3430267'), - (1094, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'Pm7vD5ad', '3468125'), - (1094, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'Pm7vD5ad', '3470303'), - (1094, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Pm7vD5ad', '3470991'), - (1094, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7vD5ad', '6045684'), - (1095, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mqEnP9lm', '4736503'), - (1095, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mqEnP9lm', '4736504'), - (1095, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mqEnP9lm', '5045826'), - (1095, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mqEnP9lm', '5132533'), - (1095, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mqEnP9lm', '5186582'), - (1095, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mqEnP9lm', '5186583'), - (1095, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mqEnP9lm', '5186585'), - (1095, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mqEnP9lm', '5190437'), - (1095, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'mqEnP9lm', '5196763'), - (1095, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'mqEnP9lm', '5199460'), - (1095, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mqEnP9lm', '5215989'), - (1095, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mqEnP9lm', '6045684'), - (1096, 21, 'maybe', '2020-04-27 01:24:34', '2025-12-17 19:47:57', '64veN7BA', '2958065'), - (1096, 57, 'not_attending', '2020-04-27 14:12:02', '2025-12-17 19:47:57', '64veN7BA', '2976575'), - (1096, 59, 'attending', '2020-05-04 21:42:01', '2025-12-17 19:47:57', '64veN7BA', '2977128'), - (1096, 62, 'maybe', '2020-05-11 02:30:50', '2025-12-17 19:47:57', '64veN7BA', '2977131'), - (1096, 63, 'maybe', '2020-05-11 20:04:11', '2025-12-17 19:47:57', '64veN7BA', '2977132'), - (1096, 64, 'maybe', '2020-05-27 07:11:16', '2025-12-17 19:47:58', '64veN7BA', '2977133'), - (1096, 65, 'maybe', '2020-05-26 21:27:52', '2025-12-17 19:47:57', '64veN7BA', '2977134'), - (1096, 66, 'maybe', '2020-06-06 01:41:48', '2025-12-17 19:47:58', '64veN7BA', '2977135'), - (1096, 67, 'maybe', '2020-06-11 03:06:11', '2025-12-17 19:47:58', '64veN7BA', '2977136'), - (1096, 68, 'maybe', '2020-06-20 13:46:02', '2025-12-17 19:47:58', '64veN7BA', '2977137'), - (1096, 69, 'maybe', '2020-06-29 18:50:50', '2025-12-17 19:47:55', '64veN7BA', '2977138'), - (1096, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '64veN7BA', '2977812'), - (1096, 76, 'attending', '2020-05-02 16:14:10', '2025-12-17 19:47:57', '64veN7BA', '2978246'), - (1096, 77, 'maybe', '2020-05-04 18:01:18', '2025-12-17 19:47:57', '64veN7BA', '2978247'), - (1096, 78, 'maybe', '2020-05-14 23:01:38', '2025-12-17 19:47:57', '64veN7BA', '2978249'), - (1096, 79, 'maybe', '2020-05-26 21:28:37', '2025-12-17 19:47:57', '64veN7BA', '2978250'), - (1096, 80, 'maybe', '2020-05-27 07:11:21', '2025-12-17 19:47:58', '64veN7BA', '2978251'), - (1096, 81, 'maybe', '2020-06-07 16:32:42', '2025-12-17 19:47:58', '64veN7BA', '2978252'), - (1096, 83, 'maybe', '2020-05-08 23:10:22', '2025-12-17 19:47:57', '64veN7BA', '2978438'), - (1096, 97, 'attending', '2020-05-04 21:42:12', '2025-12-17 19:47:57', '64veN7BA', '2987454'), - (1096, 98, 'attending', '2020-05-11 20:03:36', '2025-12-17 19:47:57', '64veN7BA', '2987455'), - (1096, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', '64veN7BA', '2990784'), - (1096, 106, 'maybe', '2020-05-03 15:43:10', '2025-12-17 19:47:57', '64veN7BA', '2993501'), - (1096, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '64veN7BA', '2994480'), - (1096, 113, 'maybe', '2020-07-28 18:38:19', '2025-12-17 19:47:56', '64veN7BA', '2994909'), - (1096, 115, 'maybe', '2020-05-09 06:30:23', '2025-12-17 19:47:57', '64veN7BA', '3001217'), - (1096, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', '64veN7BA', '3023063'), - (1096, 123, 'attending', '2020-05-15 21:03:13', '2025-12-17 19:47:57', '64veN7BA', '3023729'), - (1096, 125, 'attending', '2020-05-15 21:03:05', '2025-12-17 19:47:57', '64veN7BA', '3023987'), - (1096, 130, 'attending', '2020-05-21 22:36:55', '2025-12-17 19:47:57', '64veN7BA', '3028781'), - (1096, 132, 'attending', '2020-05-25 21:22:33', '2025-12-17 19:47:58', '64veN7BA', '3033648'), - (1096, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '64veN7BA', '3034321'), - (1096, 135, 'maybe', '2020-05-26 00:42:27', '2025-12-17 19:47:57', '64veN7BA', '3034368'), - (1096, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '64veN7BA', '3035881'), - (1096, 138, 'maybe', '2020-06-07 09:57:30', '2025-12-17 19:47:58', '64veN7BA', '3042932'), - (1096, 140, 'attending', '2020-06-01 01:04:06', '2025-12-17 19:47:57', '64veN7BA', '3046980'), - (1096, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '64veN7BA', '3049983'), - (1096, 170, 'attending', '2020-06-08 01:08:02', '2025-12-17 19:47:58', '64veN7BA', '3058742'), - (1096, 171, 'maybe', '2020-06-07 02:23:15', '2025-12-17 19:47:58', '64veN7BA', '3058743'), - (1096, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '64veN7BA', '3058959'), - (1096, 173, 'maybe', '2020-06-11 03:06:14', '2025-12-17 19:47:58', '64veN7BA', '3067093'), - (1096, 181, 'maybe', '2020-06-15 22:29:34', '2025-12-17 19:47:58', '64veN7BA', '3074513'), - (1096, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '64veN7BA', '3075228'), - (1096, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '64veN7BA', '3075456'), - (1096, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '64veN7BA', '3083791'), - (1096, 187, 'maybe', '2020-06-28 19:51:53', '2025-12-17 19:47:55', '64veN7BA', '3085151'), - (1096, 190, 'not_attending', '2020-07-03 03:42:24', '2025-12-17 19:47:55', '64veN7BA', '3087258'), - (1096, 191, 'attending', '2020-07-07 16:56:34', '2025-12-17 19:47:55', '64veN7BA', '3087259'), - (1096, 192, 'maybe', '2020-07-08 19:55:52', '2025-12-17 19:47:55', '64veN7BA', '3087260'), - (1096, 193, 'maybe', '2020-07-19 16:17:13', '2025-12-17 19:47:55', '64veN7BA', '3087261'), - (1096, 194, 'maybe', '2020-07-28 18:38:00', '2025-12-17 19:47:56', '64veN7BA', '3087262'), - (1096, 195, 'maybe', '2020-08-01 16:00:07', '2025-12-17 19:47:56', '64veN7BA', '3087264'), - (1096, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '64veN7BA', '3087265'), - (1096, 197, 'not_attending', '2020-08-21 00:36:20', '2025-12-17 19:47:56', '64veN7BA', '3087266'), - (1096, 198, 'maybe', '2020-08-24 17:28:11', '2025-12-17 19:47:56', '64veN7BA', '3087267'), - (1096, 199, 'not_attending', '2020-09-04 12:59:21', '2025-12-17 19:47:56', '64veN7BA', '3087268'), - (1096, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '64veN7BA', '3088653'), - (1096, 205, 'attending', '2020-06-29 18:37:38', '2025-12-17 19:47:55', '64veN7BA', '3104804'), - (1096, 206, 'maybe', '2020-07-08 19:55:47', '2025-12-17 19:47:55', '64veN7BA', '3104806'), - (1096, 207, 'maybe', '2020-07-19 16:17:02', '2025-12-17 19:47:55', '64veN7BA', '3104807'), - (1096, 208, 'maybe', '2020-08-01 16:00:02', '2025-12-17 19:47:56', '64veN7BA', '3104808'), - (1096, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '64veN7BA', '3106813'), - (1096, 210, 'maybe', '2020-07-03 03:41:09', '2025-12-17 19:47:55', '64veN7BA', '3108972'), - (1096, 214, 'maybe', '2020-07-06 16:57:48', '2025-12-17 19:47:55', '64veN7BA', '3124139'), - (1096, 215, 'attending', '2020-07-07 16:49:20', '2025-12-17 19:47:55', '64veN7BA', '3124987'), - (1096, 223, 'maybe', '2020-09-08 17:13:34', '2025-12-17 19:47:56', '64veN7BA', '3129980'), - (1096, 226, 'maybe', '2020-07-13 19:52:04', '2025-12-17 19:47:55', '64veN7BA', '3132817'), - (1096, 227, 'maybe', '2020-07-13 21:23:11', '2025-12-17 19:47:55', '64veN7BA', '3132820'), - (1096, 233, 'attending', '2020-07-19 21:20:03', '2025-12-17 19:47:55', '64veN7BA', '3139773'), - (1096, 236, 'maybe', '2020-07-20 22:07:24', '2025-12-17 19:47:55', '64veN7BA', '3140873'), - (1096, 264, 'maybe', '2020-08-02 21:10:30', '2025-12-17 19:47:56', '64veN7BA', '3150735'), - (1096, 269, 'attending', '2020-07-28 22:28:09', '2025-12-17 19:47:55', '64veN7BA', '3153076'), - (1096, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '64veN7BA', '3155321'), - (1096, 272, 'maybe', '2020-08-02 18:41:35', '2025-12-17 19:47:56', '64veN7BA', '3161472'), - (1096, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '64veN7BA', '3162006'), - (1096, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '64veN7BA', '3163442'), - (1096, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '64veN7BA', '3169555'), - (1096, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '64veN7BA', '3172832'), - (1096, 294, 'not_attending', '2020-08-24 17:35:26', '2025-12-17 19:47:56', '64veN7BA', '3172833'), - (1096, 295, 'not_attending', '2020-08-24 17:38:32', '2025-12-17 19:47:56', '64veN7BA', '3172834'), - (1096, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '64veN7BA', '3172876'), - (1096, 298, 'maybe', '2020-08-24 17:35:49', '2025-12-17 19:47:56', '64veN7BA', '3174556'), - (1096, 311, 'not_attending', '2020-09-12 21:27:54', '2025-12-17 19:47:56', '64veN7BA', '3186057'), - (1096, 314, 'maybe', '2020-08-24 17:35:55', '2025-12-17 19:47:56', '64veN7BA', '3188480'), - (1096, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '64veN7BA', '3191735'), - (1096, 319, 'not_attending', '2020-08-31 20:21:41', '2025-12-17 19:47:56', '64veN7BA', '3194179'), - (1096, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '64veN7BA', '3200209'), - (1096, 339, 'not_attending', '2020-09-08 17:13:29', '2025-12-17 19:47:56', '64veN7BA', '3204469'), - (1096, 340, 'not_attending', '2020-09-13 22:55:05', '2025-12-17 19:47:56', '64veN7BA', '3204470'), - (1096, 341, 'maybe', '2020-09-23 17:49:48', '2025-12-17 19:47:52', '64veN7BA', '3204471'), - (1096, 342, 'not_attending', '2020-09-23 17:49:58', '2025-12-17 19:47:52', '64veN7BA', '3204472'), - (1096, 355, 'maybe', '2020-09-13 23:03:01', '2025-12-17 19:47:56', '64veN7BA', '3212571'), - (1096, 362, 'maybe', '2020-09-24 18:20:22', '2025-12-17 19:47:52', '64veN7BA', '3214207'), - (1096, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '64veN7BA', '3217037'), - (1096, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '64veN7BA', '3218510'), - (1096, 375, 'not_attending', '2020-10-01 15:14:10', '2025-12-17 19:47:52', '64veN7BA', '3222825'), - (1096, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', '64veN7BA', '3228698'), - (1096, 386, 'not_attending', '2020-10-01 15:14:00', '2025-12-17 19:47:52', '64veN7BA', '3228699'), - (1096, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', '64veN7BA', '3228700'), - (1096, 388, 'not_attending', '2020-10-18 04:16:47', '2025-12-17 19:47:52', '64veN7BA', '3228701'), - (1096, 418, 'not_attending', '2020-10-12 01:01:58', '2025-12-17 19:47:52', '64veN7BA', '3241728'), - (1096, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', '64veN7BA', '3245751'), - (1096, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '64veN7BA', '3250232'), - (1096, 435, 'not_attending', '2020-10-18 04:16:45', '2025-12-17 19:47:52', '64veN7BA', '3254790'), - (1096, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', '64veN7BA', '3256168'), - (1096, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', '64veN7BA', '3263578'), - (1096, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', '64veN7BA', '3266138'), - (1096, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '64veN7BA', '3276428'), - (1096, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '64veN7BA', '3281467'), - (1096, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '64veN7BA', '3281470'), - (1096, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '64veN7BA', '3281829'), - (1096, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '64veN7BA', '3285413'), - (1096, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '64veN7BA', '3285414'), - (1096, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '64veN7BA', '3297764'), - (1096, 493, 'not_attending', '2020-11-30 22:20:08', '2025-12-17 19:47:54', '64veN7BA', '3313856'), - (1096, 496, 'not_attending', '2020-11-30 22:19:32', '2025-12-17 19:47:54', '64veN7BA', '3314269'), - (1096, 497, 'not_attending', '2020-12-02 21:00:00', '2025-12-17 19:47:55', '64veN7BA', '3314270'), - (1096, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '64veN7BA', '3314909'), - (1096, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '64veN7BA', '3314964'), - (1096, 502, 'not_attending', '2020-12-08 05:51:25', '2025-12-17 19:47:55', '64veN7BA', '3323365'), - (1096, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '64veN7BA', '3329383'), - (1096, 518, 'not_attending', '2021-01-03 23:47:06', '2025-12-17 19:47:48', '64veN7BA', '3337138'), - (1096, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '64veN7BA', '3351539'), - (1096, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '64veN7BA', '3386848'), - (1096, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '64veN7BA', '3389527'), - (1096, 542, 'not_attending', '2021-01-11 18:44:06', '2025-12-17 19:47:48', '64veN7BA', '3395013'), - (1096, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '64veN7BA', '3396499'), - (1096, 548, 'not_attending', '2021-01-16 03:55:49', '2025-12-17 19:47:48', '64veN7BA', '3403650'), - (1096, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '64veN7BA', '3406988'), - (1096, 555, 'not_attending', '2021-01-23 03:49:47', '2025-12-17 19:47:49', '64veN7BA', '3416576'), - (1096, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '64veN7BA', '3418925'), - (1096, 568, 'not_attending', '2021-01-27 21:57:45', '2025-12-17 19:47:50', '64veN7BA', '3430267'), - (1096, 569, 'not_attending', '2021-01-27 21:57:27', '2025-12-17 19:47:49', '64veN7BA', '3432673'), - (1096, 576, 'not_attending', '2021-01-29 18:30:52', '2025-12-17 19:47:50', '64veN7BA', '3438748'), - (1096, 579, 'not_attending', '2021-01-29 18:30:59', '2025-12-17 19:47:50', '64veN7BA', '3440978'), - (1096, 591, 'not_attending', '2021-02-08 18:12:42', '2025-12-17 19:47:50', '64veN7BA', '3465880'), - (1096, 598, 'not_attending', '2021-02-08 18:12:19', '2025-12-17 19:47:50', '64veN7BA', '3468003'), - (1096, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', '64veN7BA', '3468125'), - (1096, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '64veN7BA', '3470303'), - (1096, 603, 'not_attending', '2021-02-16 17:36:19', '2025-12-17 19:47:50', '64veN7BA', '3470304'), - (1096, 604, 'not_attending', '2021-02-26 09:09:58', '2025-12-17 19:47:50', '64veN7BA', '3470305'), - (1096, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '64veN7BA', '3470991'), - (1096, 621, 'not_attending', '2021-03-04 20:52:40', '2025-12-17 19:47:51', '64veN7BA', '3517815'), - (1096, 622, 'not_attending', '2021-03-09 18:44:25', '2025-12-17 19:47:51', '64veN7BA', '3517816'), - (1096, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '64veN7BA', '3523941'), - (1096, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '64veN7BA', '3533850'), - (1096, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '64veN7BA', '3536632'), - (1096, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '64veN7BA', '3536656'), - (1096, 641, 'not_attending', '2021-04-03 17:45:39', '2025-12-17 19:47:44', '64veN7BA', '3539916'), - (1096, 642, 'not_attending', '2021-04-03 17:45:44', '2025-12-17 19:47:44', '64veN7BA', '3539917'), - (1096, 643, 'not_attending', '2021-04-03 17:45:52', '2025-12-17 19:47:45', '64veN7BA', '3539918'), - (1096, 644, 'not_attending', '2021-04-14 02:18:16', '2025-12-17 19:47:46', '64veN7BA', '3539919'), - (1096, 645, 'not_attending', '2021-04-27 11:38:26', '2025-12-17 19:47:46', '64veN7BA', '3539920'), - (1096, 646, 'not_attending', '2021-05-15 14:12:48', '2025-12-17 19:47:46', '64veN7BA', '3539921'), - (1096, 647, 'not_attending', '2021-05-17 05:04:00', '2025-12-17 19:47:46', '64veN7BA', '3539922'), - (1096, 648, 'not_attending', '2021-05-22 19:07:59', '2025-12-17 19:47:47', '64veN7BA', '3539923'), - (1096, 649, 'not_attending', '2021-03-18 17:38:04', '2025-12-17 19:47:51', '64veN7BA', '3539927'), - (1096, 650, 'not_attending', '2021-03-18 17:37:56', '2025-12-17 19:47:44', '64veN7BA', '3539928'), - (1096, 651, 'not_attending', '2021-03-09 18:44:21', '2025-12-17 19:47:51', '64veN7BA', '3541045'), - (1096, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '64veN7BA', '3582734'), - (1096, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '64veN7BA', '3583262'), - (1096, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '64veN7BA', '3619523'), - (1096, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '64veN7BA', '3661369'), - (1096, 728, 'not_attending', '2021-04-03 17:46:03', '2025-12-17 19:47:44', '64veN7BA', '3668073'), - (1096, 729, 'not_attending', '2021-04-03 17:46:14', '2025-12-17 19:47:46', '64veN7BA', '3668075'), - (1096, 730, 'not_attending', '2021-04-27 11:38:20', '2025-12-17 19:47:46', '64veN7BA', '3668076'), - (1096, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '64veN7BA', '3674262'), - (1096, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '64veN7BA', '3677402'), - (1096, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '64veN7BA', '3730212'), - (1096, 777, 'not_attending', '2021-04-27 11:38:15', '2025-12-17 19:47:46', '64veN7BA', '3746248'), - (1096, 782, 'not_attending', '2021-05-01 03:36:25', '2025-12-17 19:47:46', '64veN7BA', '3761843'), - (1096, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '64veN7BA', '3793156'), - (1096, 815, 'not_attending', '2021-05-17 05:04:03', '2025-12-17 19:47:47', '64veN7BA', '3818136'), - (1096, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64veN7BA', '6045684'), - (1097, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'kdKVpzR4', '3149491'), - (1097, 395, 'not_attending', '2021-06-07 16:53:08', '2025-12-17 19:47:47', 'kdKVpzR4', '3236450'), - (1097, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKVpzR4', '3975312'), - (1097, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKVpzR4', '4014338'), - (1097, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKVpzR4', '4136744'), - (1097, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKVpzR4', '6045684'), - (1098, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'myDE7GWd', '4637896'), - (1098, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'myDE7GWd', '4642994'), - (1098, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'myDE7GWd', '4642995'), - (1098, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'myDE7GWd', '4642996'), - (1098, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'myDE7GWd', '4642997'), - (1098, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'myDE7GWd', '4645687'), - (1098, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'myDE7GWd', '4645698'), - (1098, 1128, 'attending', '2021-11-20 17:15:27', '2025-12-17 19:47:37', 'myDE7GWd', '4645704'), - (1098, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'myDE7GWd', '4645705'), - (1098, 1130, 'attending', '2021-12-04 23:57:41', '2025-12-17 19:47:37', 'myDE7GWd', '4658824'), - (1098, 1131, 'attending', '2021-12-18 21:18:49', '2025-12-17 19:47:31', 'myDE7GWd', '4658825'), - (1098, 1132, 'attending', '2021-11-23 00:03:46', '2025-12-17 19:47:37', 'myDE7GWd', '4660657'), - (1098, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'myDE7GWd', '4668385'), - (1098, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'myDE7GWd', '4694407'), - (1098, 1153, 'attending', '2022-01-19 23:47:56', '2025-12-17 19:47:32', 'myDE7GWd', '4708707'), - (1098, 1167, 'attending', '2022-01-06 22:35:18', '2025-12-17 19:47:31', 'myDE7GWd', '4731015'), - (1098, 1173, 'attending', '2022-01-08 22:51:59', '2025-12-17 19:47:31', 'myDE7GWd', '4736495'), - (1098, 1175, 'attending', '2022-01-22 18:23:31', '2025-12-17 19:47:32', 'myDE7GWd', '4736497'), - (1098, 1178, 'attending', '2022-01-29 18:49:03', '2025-12-17 19:47:32', 'myDE7GWd', '4736500'), - (1098, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'myDE7GWd', '4746789'), - (1098, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'myDE7GWd', '4753929'), - (1098, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'myDE7GWd', '5038850'), - (1098, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myDE7GWd', '6045684'), - (1099, 2142, 'not_attending', '2023-07-17 19:04:57', '2025-12-17 19:46:52', 'dKZ5lWY4', '6333850'), - (1099, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKZ5lWY4', '6337970'), - (1099, 2159, 'not_attending', '2023-07-22 12:20:23', '2025-12-17 19:46:53', 'dKZ5lWY4', '6338355'), - (1099, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKZ5lWY4', '6342044'), - (1099, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKZ5lWY4', '6342298'), - (1099, 2172, 'attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dKZ5lWY4', '6342591'), - (1099, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dKZ5lWY4', '6343294'), - (1099, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKZ5lWY4', '6347034'), - (1099, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKZ5lWY4', '6347056'), - (1099, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKZ5lWY4', '6353830'), - (1099, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKZ5lWY4', '6353831'), - (1099, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKZ5lWY4', '6357867'), - (1099, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKZ5lWY4', '6358652'), - (1099, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKZ5lWY4', '6361709'), - (1099, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKZ5lWY4', '6361710'), - (1099, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKZ5lWY4', '6361711'), - (1099, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dKZ5lWY4', '6361712'), - (1099, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKZ5lWY4', '6361713'), - (1099, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKZ5lWY4', '6382573'), - (1099, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dKZ5lWY4', '6388604'), - (1099, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKZ5lWY4', '6394629'), - (1099, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKZ5lWY4', '6394631'), - (1099, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKZ5lWY4', '6440863'), - (1099, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKZ5lWY4', '6445440'), - (1099, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKZ5lWY4', '6453951'), - (1099, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKZ5lWY4', '6461696'), - (1099, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKZ5lWY4', '6462129'), - (1099, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKZ5lWY4', '6463218'), - (1099, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dKZ5lWY4', '6472181'), - (1099, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZ5lWY4', '6482693'), - (1099, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZ5lWY4', '6484200'), - (1099, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKZ5lWY4', '6484680'), - (1099, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZ5lWY4', '6507741'), - (1099, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZ5lWY4', '6514659'), - (1099, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZ5lWY4', '6514660'), - (1099, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZ5lWY4', '6519103'), - (1099, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZ5lWY4', '6535681'), - (1099, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZ5lWY4', '6584747'), - (1099, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZ5lWY4', '6587097'), - (1099, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZ5lWY4', '6609022'), - (1099, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZ5lWY4', '6632757'), - (1099, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZ5lWY4', '6644187'), - (1099, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZ5lWY4', '6648951'), - (1099, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZ5lWY4', '6648952'), - (1099, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZ5lWY4', '6655401'), - (1099, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZ5lWY4', '6661585'), - (1099, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZ5lWY4', '6661588'), - (1099, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZ5lWY4', '6661589'), - (1099, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZ5lWY4', '6699906'), - (1099, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZ5lWY4', '6701109'), - (1099, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZ5lWY4', '6705219'), - (1099, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZ5lWY4', '6710153'), - (1099, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZ5lWY4', '6711552'), - (1099, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZ5lWY4', '6711553'), - (1100, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'GmjoW3aA', '3149491'), - (1100, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'GmjoW3aA', '3236450'), - (1100, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjoW3aA', '3974109'), - (1100, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjoW3aA', '3975311'), - (1100, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjoW3aA', '3975312'), - (1100, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjoW3aA', '3994992'), - (1100, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjoW3aA', '4014338'), - (1100, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjoW3aA', '4136744'), - (1100, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjoW3aA', '6045684'), - (1101, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArgyLXL4', '6045684'), - (1102, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Pm7XqnMA', '3236465'), - (1102, 642, 'attending', '2021-04-10 22:48:15', '2025-12-17 19:47:44', 'Pm7XqnMA', '3539917'), - (1102, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Pm7XqnMA', '3539918'), - (1102, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Pm7XqnMA', '3539919'), - (1102, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm7XqnMA', '3539920'), - (1102, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm7XqnMA', '3539921'), - (1102, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm7XqnMA', '3583262'), - (1102, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7XqnMA', '3661369'), - (1102, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7XqnMA', '3730212'), - (1102, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7XqnMA', '3793156'), - (1102, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Pm7XqnMA', '3803310'), - (1102, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Pm7XqnMA', '3806392'), - (1102, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7XqnMA', '6045684'), - (1103, 408, 'attending', '2021-02-16 01:18:46', '2025-12-17 19:47:50', '8dB5vBw4', '3236466'), - (1103, 603, 'not_attending', '2021-02-21 00:37:18', '2025-12-17 19:47:50', '8dB5vBw4', '3470304'), - (1103, 604, 'attending', '2021-02-27 16:54:13', '2025-12-17 19:47:50', '8dB5vBw4', '3470305'), - (1103, 607, 'attending', '2021-02-18 22:15:10', '2025-12-17 19:47:50', '8dB5vBw4', '3471882'), - (1103, 621, 'not_attending', '2021-03-07 00:43:48', '2025-12-17 19:47:51', '8dB5vBw4', '3517815'), - (1103, 622, 'maybe', '2021-03-12 23:30:44', '2025-12-17 19:47:51', '8dB5vBw4', '3517816'), - (1103, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '8dB5vBw4', '3523941'), - (1103, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '8dB5vBw4', '3533850'), - (1103, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8dB5vBw4', '3536632'), - (1103, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8dB5vBw4', '3536656'), - (1103, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '8dB5vBw4', '3539916'), - (1103, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '8dB5vBw4', '3539917'), - (1103, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '8dB5vBw4', '3539918'), - (1103, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '8dB5vBw4', '3539919'), - (1103, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '8dB5vBw4', '3539920'), - (1103, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '8dB5vBw4', '3539921'), - (1103, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '8dB5vBw4', '3539922'), - (1103, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8dB5vBw4', '3539923'), - (1103, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8dB5vBw4', '3539927'), - (1103, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8dB5vBw4', '3582734'), - (1103, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8dB5vBw4', '3583262'), - (1103, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8dB5vBw4', '3619523'), - (1103, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8dB5vBw4', '3661369'), - (1103, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8dB5vBw4', '3674262'), - (1103, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8dB5vBw4', '3677402'), - (1103, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '8dB5vBw4', '3730212'), - (1103, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dB5vBw4', '6045684'), - (1104, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'o4PX3ww4', '7074364'), - (1104, 2661, 'not_attending', '2024-06-16 14:15:12', '2025-12-17 19:46:28', 'o4PX3ww4', '7302674'), - (1104, 2678, 'maybe', '2024-06-14 20:25:32', '2025-12-17 19:46:28', 'o4PX3ww4', '7319489'), - (1104, 2679, 'not_attending', '2024-06-14 20:25:28', '2025-12-17 19:46:29', 'o4PX3ww4', '7319490'), - (1104, 2685, 'attending', '2024-06-12 21:55:26', '2025-12-17 19:46:28', 'o4PX3ww4', '7322675'), - (1104, 2686, 'maybe', '2024-06-11 13:37:36', '2025-12-17 19:46:29', 'o4PX3ww4', '7323802'), - (1104, 2688, 'attending', '2024-06-14 20:25:24', '2025-12-17 19:46:29', 'o4PX3ww4', '7324073'), - (1104, 2689, 'attending', '2024-06-23 23:10:12', '2025-12-17 19:46:29', 'o4PX3ww4', '7324074'), - (1104, 2690, 'attending', '2024-07-03 22:28:39', '2025-12-17 19:46:30', 'o4PX3ww4', '7324075'), - (1104, 2691, 'attending', '2024-07-03 22:28:41', '2025-12-17 19:46:30', 'o4PX3ww4', '7324076'), - (1104, 2692, 'not_attending', '2024-07-25 20:06:23', '2025-12-17 19:46:30', 'o4PX3ww4', '7324077'), - (1104, 2693, 'maybe', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'o4PX3ww4', '7324078'), - (1104, 2694, 'attending', '2024-08-09 22:32:56', '2025-12-17 19:46:31', 'o4PX3ww4', '7324079'), - (1104, 2696, 'attending', '2024-08-24 22:40:45', '2025-12-17 19:46:32', 'o4PX3ww4', '7324081'), - (1104, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'o4PX3ww4', '7324082'), - (1104, 2700, 'attending', '2024-06-14 22:39:52', '2025-12-17 19:46:28', 'o4PX3ww4', '7324388'), - (1104, 2710, 'maybe', '2024-06-14 20:25:07', '2025-12-17 19:46:28', 'o4PX3ww4', '7325108'), - (1104, 2717, 'attending', '2024-06-27 18:45:58', '2025-12-17 19:46:29', 'o4PX3ww4', '7329149'), - (1104, 2720, 'not_attending', '2024-06-18 20:49:46', '2025-12-17 19:46:28', 'o4PX3ww4', '7331436'), - (1104, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'o4PX3ww4', '7331457'), - (1104, 2747, 'maybe', '2024-07-17 20:47:15', '2025-12-17 19:46:30', 'o4PX3ww4', '7353587'), - (1104, 2755, 'attending', '2024-07-09 21:02:32', '2025-12-17 19:46:29', 'o4PX3ww4', '7357808'), - (1104, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'o4PX3ww4', '7363643'), - (1104, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'o4PX3ww4', '7368606'), - (1104, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'o4PX3ww4', '7397462'), - (1104, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'o4PX3ww4', '7424275'), - (1104, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'o4PX3ww4', '7432751'), - (1104, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'o4PX3ww4', '7432752'), - (1104, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'o4PX3ww4', '7432753'), - (1104, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'o4PX3ww4', '7432754'), - (1104, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'o4PX3ww4', '7432755'), - (1104, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'o4PX3ww4', '7432756'), - (1104, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'o4PX3ww4', '7432758'), - (1104, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'o4PX3ww4', '7432759'), - (1104, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'o4PX3ww4', '7433834'), - (1104, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'o4PX3ww4', '7470197'), - (1104, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'o4PX3ww4', '7685613'), - (1104, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'o4PX3ww4', '7688194'), - (1104, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'o4PX3ww4', '7688196'), - (1104, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'o4PX3ww4', '7688289'), - (1104, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'o4PX3ww4', '7692763'), - (1104, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'o4PX3ww4', '7697552'), - (1104, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'o4PX3ww4', '7699878'), - (1104, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'o4PX3ww4', '7704043'), - (1104, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'o4PX3ww4', '7712467'), - (1104, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'o4PX3ww4', '7713585'), - (1104, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'o4PX3ww4', '7713586'), - (1104, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'o4PX3ww4', '7738518'), - (1104, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'o4PX3ww4', '7750636'), - (1104, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'o4PX3ww4', '7796540'), - (1104, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'o4PX3ww4', '7796541'), - (1104, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'o4PX3ww4', '7796542'), - (1104, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'o4PX3ww4', '7825913'), - (1104, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'o4PX3ww4', '7826209'), - (1104, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'o4PX3ww4', '7834742'), - (1104, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'o4PX3ww4', '7842108'), - (1104, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'o4PX3ww4', '7842902'), - (1104, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'o4PX3ww4', '7842903'), - (1104, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'o4PX3ww4', '7842904'), - (1104, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'o4PX3ww4', '7842905'), - (1104, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'o4PX3ww4', '7855719'), - (1104, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'o4PX3ww4', '7860683'), - (1104, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'o4PX3ww4', '7860684'), - (1104, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'o4PX3ww4', '7866095'), - (1104, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'o4PX3ww4', '7869170'), - (1104, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'o4PX3ww4', '7869188'), - (1104, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'o4PX3ww4', '7869201'), - (1104, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'o4PX3ww4', '7877465'), - (1104, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'o4PX3ww4', '7888250'), - (1104, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'o4PX3ww4', '7904777'), - (1104, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'o4PX3ww4', '8349164'), - (1104, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'o4PX3ww4', '8349545'), - (1104, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'o4PX3ww4', '8368028'), - (1104, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'o4PX3ww4', '8368029'), - (1104, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'o4PX3ww4', '8388462'), - (1104, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'o4PX3ww4', '8400273'), - (1104, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'o4PX3ww4', '8400275'), - (1104, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'o4PX3ww4', '8400276'), - (1104, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'o4PX3ww4', '8404977'), - (1104, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'o4PX3ww4', '8430783'), - (1104, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'o4PX3ww4', '8430784'), - (1104, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'o4PX3ww4', '8430799'), - (1104, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'o4PX3ww4', '8430800'), - (1104, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'o4PX3ww4', '8430801'), - (1104, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'o4PX3ww4', '8438709'), - (1104, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'o4PX3ww4', '8457738'), - (1104, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'o4PX3ww4', '8459566'), - (1104, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'o4PX3ww4', '8459567'), - (1104, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'o4PX3ww4', '8461032'), - (1104, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'o4PX3ww4', '8477877'), - (1104, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'o4PX3ww4', '8485688'), - (1104, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'o4PX3ww4', '8490587'), - (1104, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'o4PX3ww4', '8493552'), - (1104, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'o4PX3ww4', '8493553'), - (1104, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'o4PX3ww4', '8493554'), - (1104, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'o4PX3ww4', '8493555'), - (1104, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'o4PX3ww4', '8493556'), - (1104, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'o4PX3ww4', '8493557'), - (1104, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'o4PX3ww4', '8493558'), - (1104, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'o4PX3ww4', '8493559'), - (1104, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'o4PX3ww4', '8493560'), - (1104, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'o4PX3ww4', '8493561'), - (1104, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'o4PX3ww4', '8493572'), - (1104, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'o4PX3ww4', '8540725'), - (1104, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'o4PX3ww4', '8555421'), - (1105, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm7GvVXem', '5880943'), - (1105, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm7GvVXem', '5900202'), - (1105, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm7GvVXem', '5900203'), - (1105, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'm7GvVXem', '5910528'), - (1105, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'm7GvVXem', '5962317'), - (1105, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'm7GvVXem', '5962318'), - (1105, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm7GvVXem', '5965933'), - (1105, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm7GvVXem', '5972815'), - (1105, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm7GvVXem', '5974016'), - (1105, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm7GvVXem', '5981515'), - (1105, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm7GvVXem', '5993516'), - (1105, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm7GvVXem', '5998939'), - (1105, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm7GvVXem', '6028191'), - (1105, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm7GvVXem', '6040066'), - (1105, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm7GvVXem', '6042717'), - (1105, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm7GvVXem', '6044838'), - (1105, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm7GvVXem', '6044839'), - (1105, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7GvVXem', '6045684'), - (1105, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'm7GvVXem', '6048955'), - (1105, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm7GvVXem', '6050104'), - (1105, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm7GvVXem', '6053195'), - (1105, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm7GvVXem', '6053198'), - (1105, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm7GvVXem', '6056085'), - (1105, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm7GvVXem', '6056916'), - (1105, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm7GvVXem', '6059290'), - (1105, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm7GvVXem', '6060328'), - (1105, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm7GvVXem', '6061037'), - (1105, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm7GvVXem', '6061039'), - (1105, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm7GvVXem', '6067245'), - (1105, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm7GvVXem', '6068094'), - (1105, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm7GvVXem', '6068252'), - (1105, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm7GvVXem', '6068253'), - (1105, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm7GvVXem', '6068254'), - (1105, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm7GvVXem', '6068280'), - (1105, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm7GvVXem', '6069093'), - (1105, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'm7GvVXem', '6072528'), - (1105, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm7GvVXem', '6079840'), - (1105, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm7GvVXem', '6083398'), - (1105, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm7GvVXem', '6093504'), - (1105, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm7GvVXem', '6097414'), - (1105, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm7GvVXem', '6097442'), - (1105, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm7GvVXem', '6097684'), - (1105, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm7GvVXem', '6098762'), - (1105, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm7GvVXem', '6101362'), - (1105, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm7GvVXem', '6107314'), - (1105, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'm7GvVXem', '6120034'), - (1106, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxM7BL2m', '6337236'), - (1106, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxM7BL2m', '6337970'), - (1106, 2163, 'not_attending', '2023-07-16 20:18:47', '2025-12-17 19:46:52', 'dxM7BL2m', '6341710'), - (1106, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxM7BL2m', '6342044'), - (1106, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxM7BL2m', '6342298'), - (1106, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxM7BL2m', '6342591'), - (1106, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dxM7BL2m', '6343294'), - (1106, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxM7BL2m', '6347034'), - (1106, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxM7BL2m', '6347056'), - (1106, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxM7BL2m', '6353830'), - (1106, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxM7BL2m', '6353831'), - (1106, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxM7BL2m', '6357867'), - (1106, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxM7BL2m', '6358652'), - (1106, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxM7BL2m', '6361709'), - (1106, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxM7BL2m', '6361710'), - (1106, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxM7BL2m', '6361711'), - (1106, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxM7BL2m', '6361712'), - (1106, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxM7BL2m', '6361713'), - (1106, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxM7BL2m', '6382573'), - (1106, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dxM7BL2m', '6388604'), - (1106, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxM7BL2m', '6394629'), - (1106, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxM7BL2m', '6394631'), - (1106, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxM7BL2m', '6431478'), - (1107, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PPQNEG4', '6045684'), - (1108, 221, 'attending', '2020-09-17 03:29:27', '2025-12-17 19:47:56', 'VdxRqJDA', '3129265'), - (1108, 311, 'maybe', '2020-09-18 21:01:18', '2025-12-17 19:47:56', 'VdxRqJDA', '3186057'), - (1108, 340, 'attending', '2020-09-18 21:01:25', '2025-12-17 19:47:56', 'VdxRqJDA', '3204470'), - (1108, 345, 'not_attending', '2020-09-19 19:39:29', '2025-12-17 19:47:56', 'VdxRqJDA', '3207423'), - (1108, 362, 'attending', '2020-09-18 02:59:39', '2025-12-17 19:47:52', 'VdxRqJDA', '3214207'), - (1108, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'VdxRqJDA', '3217037'), - (1108, 365, 'maybe', '2020-09-18 21:01:03', '2025-12-17 19:47:51', 'VdxRqJDA', '3218510'), - (1108, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'VdxRqJDA', '3228698'), - (1108, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'VdxRqJDA', '3228699'), - (1108, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'VdxRqJDA', '3228700'), - (1108, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'VdxRqJDA', '3228701'), - (1108, 399, 'not_attending', '2020-11-13 00:48:28', '2025-12-17 19:47:54', 'VdxRqJDA', '3236454'), - (1108, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'VdxRqJDA', '3245751'), - (1108, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'VdxRqJDA', '3250232'), - (1108, 440, 'not_attending', '2020-11-07 07:17:41', '2025-12-17 19:47:53', 'VdxRqJDA', '3256168'), - (1108, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'VdxRqJDA', '3263578'), - (1108, 445, 'attending', '2020-11-13 00:48:35', '2025-12-17 19:47:54', 'VdxRqJDA', '3266138'), - (1108, 449, 'not_attending', '2020-11-08 21:48:01', '2025-12-17 19:47:53', 'VdxRqJDA', '3272055'), - (1108, 456, 'maybe', '2020-11-17 00:45:38', '2025-12-17 19:47:54', 'VdxRqJDA', '3276428'), - (1108, 459, 'not_attending', '2020-11-16 22:30:24', '2025-12-17 19:47:54', 'VdxRqJDA', '3281467'), - (1108, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'VdxRqJDA', '3281470'), - (1108, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'VdxRqJDA', '3281829'), - (1108, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'VdxRqJDA', '3285413'), - (1108, 469, 'not_attending', '2020-11-28 23:21:57', '2025-12-17 19:47:54', 'VdxRqJDA', '3285414'), - (1108, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'VdxRqJDA', '3297764'), - (1108, 492, 'not_attending', '2020-12-06 22:39:14', '2025-12-17 19:47:54', 'VdxRqJDA', '3313731'), - (1108, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'VdxRqJDA', '3313856'), - (1108, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'VdxRqJDA', '3314909'), - (1108, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'VdxRqJDA', '3314964'), - (1108, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'VdxRqJDA', '3323365'), - (1108, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'VdxRqJDA', '3329383'), - (1108, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'VdxRqJDA', '3351539'), - (1108, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'VdxRqJDA', '3386848'), - (1108, 538, 'maybe', '2021-01-14 17:28:19', '2025-12-17 19:47:48', 'VdxRqJDA', '3388151'), - (1108, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'VdxRqJDA', '3389527'), - (1108, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'VdxRqJDA', '3396499'), - (1108, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'VdxRqJDA', '3403650'), - (1108, 549, 'maybe', '2021-01-18 18:03:25', '2025-12-17 19:47:49', 'VdxRqJDA', '3406988'), - (1108, 555, 'maybe', '2021-01-19 04:09:07', '2025-12-17 19:47:49', 'VdxRqJDA', '3416576'), - (1108, 558, 'not_attending', '2021-01-23 00:41:44', '2025-12-17 19:47:49', 'VdxRqJDA', '3418925'), - (1108, 560, 'not_attending', '2021-01-22 01:19:56', '2025-12-17 19:47:49', 'VdxRqJDA', '3421715'), - (1108, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'VdxRqJDA', '3430267'), - (1108, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'VdxRqJDA', '3432673'), - (1108, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'VdxRqJDA', '3468125'), - (1108, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VdxRqJDA', '3470303'), - (1108, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'VdxRqJDA', '3470305'), - (1108, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VdxRqJDA', '3470991'), - (1108, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VdxRqJDA', '3517815'), - (1108, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VdxRqJDA', '3517816'), - (1108, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'VdxRqJDA', '3523941'), - (1108, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VdxRqJDA', '3533850'), - (1108, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VdxRqJDA', '3536632'), - (1108, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VdxRqJDA', '3536656'), - (1108, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VdxRqJDA', '3539916'), - (1108, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VdxRqJDA', '3539917'), - (1108, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VdxRqJDA', '3539918'), - (1108, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VdxRqJDA', '3539919'), - (1108, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VdxRqJDA', '3539920'), - (1108, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VdxRqJDA', '3539921'), - (1108, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VdxRqJDA', '3539922'), - (1108, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VdxRqJDA', '3539923'), - (1108, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VdxRqJDA', '3539927'), - (1108, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VdxRqJDA', '3582734'), - (1108, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'VdxRqJDA', '3583262'), - (1108, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VdxRqJDA', '3619523'), - (1108, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'VdxRqJDA', '3661369'), - (1108, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VdxRqJDA', '3674262'), - (1108, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VdxRqJDA', '3677402'), - (1108, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'VdxRqJDA', '3730212'), - (1108, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxRqJDA', '6045684'), - (1109, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'kdK0MoRm', '3539921'), - (1109, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'kdK0MoRm', '3539922'), - (1109, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'kdK0MoRm', '3539923'), - (1109, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'kdK0MoRm', '3974109'), - (1109, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdK0MoRm', '3975311'), - (1109, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdK0MoRm', '3975312'), - (1109, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdK0MoRm', '3994992'), - (1109, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdK0MoRm', '4014338'), - (1109, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdK0MoRm', '4021848'), - (1109, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdK0MoRm', '4136744'), - (1109, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdK0MoRm', '4136937'), - (1109, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdK0MoRm', '4136938'), - (1109, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdK0MoRm', '4136947'), - (1109, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdK0MoRm', '4210314'), - (1109, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdK0MoRm', '4225444'), - (1109, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdK0MoRm', '4239259'), - (1109, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdK0MoRm', '4240316'), - (1109, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdK0MoRm', '4240317'), - (1109, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdK0MoRm', '4240318'), - (1109, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdK0MoRm', '4240320'), - (1109, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdK0MoRm', '4250163'), - (1109, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdK0MoRm', '4275957'), - (1109, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdK0MoRm', '4277819'), - (1109, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdK0MoRm', '4301723'), - (1109, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdK0MoRm', '4302093'), - (1109, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdK0MoRm', '4304151'), - (1109, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdK0MoRm', '4356801'), - (1109, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdK0MoRm', '4366186'), - (1109, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdK0MoRm', '4366187'), - (1109, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdK0MoRm', '4420735'), - (1109, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdK0MoRm', '4420738'), - (1109, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdK0MoRm', '4420739'), - (1109, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'kdK0MoRm', '4420741'), - (1109, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdK0MoRm', '4420744'), - (1109, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdK0MoRm', '4420747'), - (1109, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdK0MoRm', '4420748'), - (1109, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdK0MoRm', '4420749'), - (1109, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdK0MoRm', '4461883'), - (1109, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdK0MoRm', '4508342'), - (1109, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdK0MoRm', '4568602'), - (1109, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdK0MoRm', '4572153'), - (1109, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdK0MoRm', '4585962'), - (1109, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdK0MoRm', '4596356'), - (1109, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdK0MoRm', '4598860'), - (1109, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdK0MoRm', '4598861'), - (1109, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdK0MoRm', '4602797'), - (1109, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdK0MoRm', '4637896'), - (1109, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdK0MoRm', '4642994'), - (1109, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdK0MoRm', '4642995'), - (1109, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdK0MoRm', '4642996'), - (1109, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdK0MoRm', '4642997'), - (1109, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdK0MoRm', '4645687'), - (1109, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdK0MoRm', '4645698'), - (1109, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdK0MoRm', '4645704'), - (1109, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdK0MoRm', '4645705'), - (1109, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdK0MoRm', '4668385'), - (1109, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdK0MoRm', '4694407'), - (1109, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'kdK0MoRm', '4706262'), - (1109, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdK0MoRm', '4736497'), - (1109, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdK0MoRm', '4736499'), - (1109, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdK0MoRm', '4736500'), - (1109, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdK0MoRm', '4736503'), - (1109, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdK0MoRm', '4736504'), - (1109, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdK0MoRm', '4746789'), - (1109, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdK0MoRm', '4753929'), - (1109, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdK0MoRm', '5038850'), - (1109, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdK0MoRm', '5045826'), - (1109, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdK0MoRm', '5132533'), - (1109, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdK0MoRm', '5186582'), - (1109, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdK0MoRm', '5186583'), - (1109, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdK0MoRm', '5186585'), - (1109, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdK0MoRm', '5190437'), - (1109, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdK0MoRm', '5195095'), - (1109, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdK0MoRm', '5215989'), - (1109, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdK0MoRm', '5223686'), - (1109, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'kdK0MoRm', '5227432'), - (1109, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdK0MoRm', '5247467'), - (1109, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdK0MoRm', '5260800'), - (1109, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdK0MoRm', '5269930'), - (1109, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdK0MoRm', '5271448'), - (1109, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'kdK0MoRm', '5271449'), - (1109, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'kdK0MoRm', '5276469'), - (1109, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdK0MoRm', '5278159'), - (1109, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdK0MoRm', '5363695'), - (1109, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdK0MoRm', '5365960'), - (1109, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'kdK0MoRm', '5368973'), - (1109, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdK0MoRm', '5378247'), - (1109, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'kdK0MoRm', '5389605'), - (1109, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdK0MoRm', '5397265'), - (1109, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'kdK0MoRm', '5403967'), - (1109, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdK0MoRm', '5404786'), - (1109, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdK0MoRm', '5405203'), - (1109, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'kdK0MoRm', '5411699'), - (1109, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdK0MoRm', '5412550'), - (1109, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdK0MoRm', '5415046'), - (1109, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdK0MoRm', '5422086'), - (1109, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdK0MoRm', '5422406'), - (1109, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdK0MoRm', '5424565'), - (1109, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdK0MoRm', '5426882'), - (1109, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'kdK0MoRm', '5427083'), - (1109, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdK0MoRm', '5441125'), - (1109, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdK0MoRm', '5441126'), - (1109, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdK0MoRm', '5441128'), - (1109, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdK0MoRm', '5441131'), - (1109, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdK0MoRm', '5441132'), - (1109, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'kdK0MoRm', '5446643'), - (1109, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdK0MoRm', '5453325'), - (1109, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdK0MoRm', '5454516'), - (1109, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdK0MoRm', '5454605'), - (1109, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdK0MoRm', '5455037'), - (1109, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdK0MoRm', '5461278'), - (1109, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdK0MoRm', '5469480'), - (1109, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'kdK0MoRm', '5471073'), - (1109, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdK0MoRm', '5474663'), - (1109, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdK0MoRm', '5482022'), - (1109, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'kdK0MoRm', '5482793'), - (1109, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdK0MoRm', '5488912'), - (1109, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdK0MoRm', '5492192'), - (1109, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdK0MoRm', '5493139'), - (1109, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdK0MoRm', '5493200'), - (1109, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdK0MoRm', '5502188'), - (1109, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdK0MoRm', '5505059'), - (1109, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdK0MoRm', '5509055'), - (1109, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdK0MoRm', '5512862'), - (1109, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdK0MoRm', '5513985'), - (1109, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'kdK0MoRm', '5519981'), - (1109, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdK0MoRm', '5522550'), - (1109, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdK0MoRm', '5534683'), - (1109, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdK0MoRm', '5537735'), - (1109, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdK0MoRm', '5540859'), - (1109, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdK0MoRm', '5546619'), - (1109, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'kdK0MoRm', '5555245'), - (1109, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdK0MoRm', '5557747'), - (1109, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdK0MoRm', '5560255'), - (1109, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdK0MoRm', '5562906'), - (1109, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdK0MoRm', '5600604'), - (1109, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdK0MoRm', '5605544'), - (1109, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'kdK0MoRm', '5606737'), - (1109, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdK0MoRm', '5630960'), - (1109, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdK0MoRm', '5630961'), - (1109, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdK0MoRm', '5630962'), - (1109, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdK0MoRm', '5630966'), - (1109, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdK0MoRm', '5630967'), - (1109, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdK0MoRm', '5630968'), - (1109, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdK0MoRm', '5635406'), - (1109, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdK0MoRm', '5638765'), - (1109, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdK0MoRm', '5640097'), - (1109, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdK0MoRm', '5640843'), - (1109, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdK0MoRm', '5641521'), - (1109, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdK0MoRm', '5642818'), - (1109, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdK0MoRm', '5652395'), - (1109, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdK0MoRm', '5670445'), - (1109, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdK0MoRm', '5671637'), - (1109, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdK0MoRm', '5672329'), - (1109, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdK0MoRm', '5674057'), - (1109, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdK0MoRm', '5674060'), - (1109, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdK0MoRm', '5677461'), - (1109, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdK0MoRm', '5698046'), - (1109, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdK0MoRm', '5699760'), - (1109, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdK0MoRm', '5741601'), - (1109, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdK0MoRm', '5763458'), - (1109, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdK0MoRm', '5774172'), - (1109, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'kdK0MoRm', '5818247'), - (1109, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdK0MoRm', '5819471'), - (1109, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdK0MoRm', '5827739'), - (1109, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdK0MoRm', '5844306'), - (1109, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdK0MoRm', '5850159'), - (1109, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdK0MoRm', '5858999'), - (1109, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdK0MoRm', '5871984'), - (1109, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdK0MoRm', '5876354'), - (1109, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdK0MoRm', '5880939'), - (1109, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdK0MoRm', '5880940'), - (1109, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdK0MoRm', '5880942'), - (1109, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdK0MoRm', '5880943'), - (1109, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdK0MoRm', '5887890'), - (1109, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdK0MoRm', '5888598'), - (1109, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdK0MoRm', '5893260'), - (1109, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdK0MoRm', '5899826'), - (1109, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdK0MoRm', '5900199'), - (1109, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdK0MoRm', '5900200'), - (1109, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdK0MoRm', '5900202'), - (1109, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdK0MoRm', '5900203'), - (1109, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdK0MoRm', '5901108'), - (1109, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdK0MoRm', '5901126'), - (1109, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdK0MoRm', '5909655'), - (1109, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdK0MoRm', '5910522'), - (1109, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdK0MoRm', '5910526'), - (1109, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdK0MoRm', '5910528'), - (1109, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdK0MoRm', '5916219'), - (1109, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdK0MoRm', '5936234'), - (1109, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdK0MoRm', '5958351'), - (1109, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdK0MoRm', '5959751'), - (1109, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdK0MoRm', '5959755'), - (1109, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdK0MoRm', '5960055'), - (1109, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdK0MoRm', '5961684'), - (1109, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdK0MoRm', '5962132'), - (1109, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdK0MoRm', '5962133'), - (1109, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdK0MoRm', '5962134'), - (1109, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdK0MoRm', '5962317'), - (1109, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdK0MoRm', '5962318'), - (1109, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdK0MoRm', '5965933'), - (1109, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdK0MoRm', '5967014'), - (1109, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdK0MoRm', '5972815'), - (1109, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdK0MoRm', '5974016'), - (1109, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'kdK0MoRm', '5975052'), - (1109, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'kdK0MoRm', '5975054'), - (1109, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdK0MoRm', '5981515'), - (1109, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdK0MoRm', '5993516'), - (1109, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdK0MoRm', '5998939'), - (1109, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdK0MoRm', '6028191'), - (1109, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0MoRm', '6045684'), - (1111, 1315, 'attending', '2022-04-21 19:32:53', '2025-12-17 19:47:27', 'AeVQQNX4', '5237522'), - (1111, 1319, 'attending', '2022-04-19 19:28:43', '2025-12-17 19:47:27', 'AeVQQNX4', '5238353'), - (1111, 1320, 'attending', '2022-04-24 23:27:19', '2025-12-17 19:47:27', 'AeVQQNX4', '5238354'), - (1111, 1322, 'attending', '2022-04-19 19:38:49', '2025-12-17 19:47:27', 'AeVQQNX4', '5238356'), - (1111, 1327, 'not_attending', '2022-04-19 19:53:57', '2025-12-17 19:47:27', 'AeVQQNX4', '5238445'), - (1111, 1331, 'attending', '2022-04-19 19:37:40', '2025-12-17 19:47:27', 'AeVQQNX4', '5242156'), - (1111, 1336, 'attending', '2022-04-19 19:36:27', '2025-12-17 19:47:27', 'AeVQQNX4', '5244915'), - (1111, 1337, 'attending', '2022-04-20 01:59:52', '2025-12-17 19:47:27', 'AeVQQNX4', '5245036'), - (1111, 1346, 'maybe', '2022-04-23 20:52:34', '2025-12-17 19:47:27', 'AeVQQNX4', '5247467'), - (1111, 1350, 'attending', '2022-04-19 19:15:11', '2025-12-17 19:47:27', 'AeVQQNX4', '5249763'), - (1111, 1357, 'attending', '2022-04-24 18:07:12', '2025-12-17 19:47:27', 'AeVQQNX4', '5256017'), - (1111, 1362, 'attending', '2022-04-29 06:42:01', '2025-12-17 19:47:28', 'AeVQQNX4', '5260800'), - (1111, 1363, 'attending', '2022-04-26 04:10:08', '2025-12-17 19:47:28', 'AeVQQNX4', '5261577'), - (1111, 1364, 'attending', '2022-04-26 04:09:39', '2025-12-17 19:47:28', 'AeVQQNX4', '5261598'), - (1111, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AeVQQNX4', '6045684'), - (1112, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40R7wQm', '3974109'), - (1112, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'R40R7wQm', '3975311'), - (1112, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40R7wQm', '3975312'), - (1112, 838, 'attending', '2021-06-06 20:26:25', '2025-12-17 19:47:47', 'R40R7wQm', '3994992'), - (1112, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40R7wQm', '4014338'), - (1112, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'R40R7wQm', '4021848'), - (1112, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40R7wQm', '4136744'), - (1112, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40R7wQm', '4136937'), - (1112, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40R7wQm', '4136938'), - (1112, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40R7wQm', '4136947'), - (1112, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40R7wQm', '4225444'), - (1112, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40R7wQm', '4239259'), - (1112, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40R7wQm', '4250163'), - (1112, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40R7wQm', '6045684'), - (1113, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'daB7qbDm', '4366186'), - (1113, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'daB7qbDm', '4366187'), - (1113, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daB7qbDm', '6045684'), - (1114, 2145, 'not_attending', '2023-07-13 20:59:41', '2025-12-17 19:46:52', 'AYR3ME94', '6334903'), - (1114, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AYR3ME94', '6337236'), - (1114, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AYR3ME94', '6337970'), - (1114, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AYR3ME94', '6338308'), - (1114, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AYR3ME94', '6341710'), - (1114, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AYR3ME94', '6342044'), - (1114, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AYR3ME94', '6342298'), - (1114, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'AYR3ME94', '6342591'), - (1114, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AYR3ME94', '6343294'), - (1114, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AYR3ME94', '6347034'), - (1114, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AYR3ME94', '6347056'), - (1114, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AYR3ME94', '6353830'), - (1114, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AYR3ME94', '6353831'), - (1114, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AYR3ME94', '6357867'), - (1114, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AYR3ME94', '6358652'), - (1114, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AYR3ME94', '6361709'), - (1114, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AYR3ME94', '6361710'), - (1114, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AYR3ME94', '6361711'), - (1114, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AYR3ME94', '6361712'), - (1114, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AYR3ME94', '6361713'), - (1114, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AYR3ME94', '6382573'), - (1114, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'AYR3ME94', '6388604'), - (1114, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AYR3ME94', '6394629'), - (1114, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AYR3ME94', '6394631'), - (1114, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'AYR3ME94', '6431478'), - (1116, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'rdOa9l5A', '3149489'), - (1116, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'rdOa9l5A', '3149491'), - (1116, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'rdOa9l5A', '3236450'), - (1116, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'rdOa9l5A', '3236452'), - (1116, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'rdOa9l5A', '3539922'), - (1116, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'rdOa9l5A', '3539923'), - (1116, 814, 'attending', '2021-05-16 03:51:41', '2025-12-17 19:47:46', 'rdOa9l5A', '3817706'), - (1116, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'rdOa9l5A', '3963335'), - (1116, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'rdOa9l5A', '3975311'), - (1116, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'rdOa9l5A', '3975312'), - (1116, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOa9l5A', '3994992'), - (1116, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'rdOa9l5A', '4014338'), - (1116, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'rdOa9l5A', '4136744'), - (1116, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOa9l5A', '6045684'), - (1117, 2806, 'attending', '2024-09-14 01:14:02', '2025-12-17 19:46:25', 'Arxb8YZd', '7404888'), - (1117, 2821, 'maybe', '2024-09-22 02:21:56', '2025-12-17 19:46:26', 'Arxb8YZd', '7424275'), - (1117, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Arxb8YZd', '7424276'), - (1117, 2824, 'attending', '2024-09-13 01:10:52', '2025-12-17 19:46:25', 'Arxb8YZd', '7432751'), - (1117, 2825, 'attending', '2024-09-14 01:02:33', '2025-12-17 19:46:25', 'Arxb8YZd', '7432752'), - (1117, 2826, 'attending', '2024-09-14 01:02:57', '2025-12-17 19:46:25', 'Arxb8YZd', '7432753'), - (1117, 2827, 'attending', '2024-09-22 02:21:45', '2025-12-17 19:46:26', 'Arxb8YZd', '7432754'), - (1117, 2828, 'not_attending', '2024-10-18 02:57:03', '2025-12-17 19:46:26', 'Arxb8YZd', '7432755'), - (1117, 2829, 'attending', '2024-10-22 17:52:28', '2025-12-17 19:46:26', 'Arxb8YZd', '7432756'), - (1117, 2830, 'attending', '2024-10-24 01:41:41', '2025-12-17 19:46:26', 'Arxb8YZd', '7432758'), - (1117, 2831, 'attending', '2024-11-08 07:17:19', '2025-12-17 19:46:26', 'Arxb8YZd', '7432759'), - (1117, 2833, 'attending', '2024-09-13 01:13:34', '2025-12-17 19:46:24', 'Arxb8YZd', '7433834'), - (1117, 2834, 'attending', '2024-09-13 22:36:23', '2025-12-17 19:46:25', 'Arxb8YZd', '7433852'), - (1117, 2838, 'attending', '2024-09-21 21:28:47', '2025-12-17 19:46:25', 'Arxb8YZd', '7439182'), - (1117, 2839, 'attending', '2024-09-15 04:25:13', '2025-12-17 19:46:25', 'Arxb8YZd', '7439262'), - (1117, 2841, 'attending', '2024-09-17 01:55:23', '2025-12-17 19:46:25', 'Arxb8YZd', '7444444'), - (1117, 2844, 'attending', '2024-09-20 15:26:55', '2025-12-17 19:46:25', 'Arxb8YZd', '7450233'), - (1117, 2847, 'attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', 'Arxb8YZd', '7452299'), - (1117, 2849, 'attending', '2024-09-25 14:34:51', '2025-12-17 19:46:25', 'Arxb8YZd', '7457114'), - (1117, 2850, 'attending', '2024-09-25 14:34:39', '2025-12-17 19:46:25', 'Arxb8YZd', '7457153'), - (1117, 2855, 'attending', '2024-09-30 18:20:01', '2025-12-17 19:46:26', 'Arxb8YZd', '7469385'), - (1117, 2856, 'maybe', '2024-10-03 23:17:19', '2025-12-17 19:46:26', 'Arxb8YZd', '7469386'), - (1117, 2861, 'attending', '2024-10-02 22:37:59', '2025-12-17 19:46:26', 'Arxb8YZd', '7469826'), - (1117, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Arxb8YZd', '7470197'), - (1117, 2874, 'attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'Arxb8YZd', '7482239'), - (1117, 2878, 'maybe', '2024-10-10 23:26:05', '2025-12-17 19:46:26', 'Arxb8YZd', '7633857'), - (1117, 2879, 'not_attending', '2024-10-16 21:38:11', '2025-12-17 19:46:26', 'Arxb8YZd', '7633863'), - (1117, 2883, 'attending', '2024-10-22 02:43:34', '2025-12-17 19:46:26', 'Arxb8YZd', '7649157'), - (1117, 2888, 'attending', '2024-10-20 22:24:39', '2025-12-17 19:46:26', 'Arxb8YZd', '7654822'), - (1117, 2889, 'attending', '2024-10-22 17:50:51', '2025-12-17 19:46:26', 'Arxb8YZd', '7660485'), - (1117, 2893, 'attending', '2024-10-31 16:05:19', '2025-12-17 19:46:26', 'Arxb8YZd', '7672705'), - (1117, 2896, 'attending', '2024-11-08 07:17:34', '2025-12-17 19:46:27', 'Arxb8YZd', '7683647'), - (1117, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Arxb8YZd', '7685613'), - (1117, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Arxb8YZd', '7688194'), - (1117, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Arxb8YZd', '7688196'), - (1117, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Arxb8YZd', '7688289'), - (1117, 2909, 'not_attending', '2024-11-10 21:20:50', '2025-12-17 19:46:27', 'Arxb8YZd', '7689771'), - (1117, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Arxb8YZd', '7692763'), - (1117, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Arxb8YZd', '7697552'), - (1117, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Arxb8YZd', '7699878'), - (1117, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Arxb8YZd', '7704043'), - (1117, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Arxb8YZd', '7712467'), - (1117, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Arxb8YZd', '7713585'), - (1117, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Arxb8YZd', '7713586'), - (1117, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'Arxb8YZd', '7738518'), - (1117, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Arxb8YZd', '7750636'), - (1117, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Arxb8YZd', '7796540'), - (1117, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Arxb8YZd', '7796541'), - (1117, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Arxb8YZd', '7796542'), - (1117, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Arxb8YZd', '7825913'), - (1117, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Arxb8YZd', '7826209'), - (1117, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Arxb8YZd', '7834742'), - (1117, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Arxb8YZd', '7842108'), - (1117, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Arxb8YZd', '7842902'), - (1117, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Arxb8YZd', '7842903'), - (1117, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Arxb8YZd', '7842904'), - (1117, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Arxb8YZd', '7842905'), - (1117, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Arxb8YZd', '7855719'), - (1117, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Arxb8YZd', '7860683'), - (1117, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Arxb8YZd', '7860684'), - (1117, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Arxb8YZd', '7866095'), - (1117, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Arxb8YZd', '7869170'), - (1117, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Arxb8YZd', '7869188'), - (1117, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Arxb8YZd', '7869201'), - (1117, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Arxb8YZd', '7877465'), - (1117, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'Arxb8YZd', '7878570'), - (1117, 3040, 'not_attending', '2025-03-14 03:06:02', '2025-12-17 19:46:19', 'Arxb8YZd', '7881994'), - (1117, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Arxb8YZd', '7888250'), - (1117, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Arxb8YZd', '8349164'), - (1117, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Arxb8YZd', '8349545'), - (1117, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'Arxb8YZd', '8353584'), - (1118, 3087, 'not_attending', '2025-04-16 14:59:55', '2025-12-17 19:46:20', '4ZElzOLA', '7903856'), - (1118, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', '4ZElzOLA', '8347770'), - (1118, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4ZElzOLA', '8349164'), - (1118, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4ZElzOLA', '8349545'), - (1118, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4ZElzOLA', '8353584'), - (1118, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4ZElzOLA', '8368028'), - (1118, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4ZElzOLA', '8368029'), - (1118, 3140, 'not_attending', '2025-05-21 04:07:31', '2025-12-17 19:46:21', '4ZElzOLA', '8380399'), - (1118, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', '4ZElzOLA', '8387505'), - (1118, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4ZElzOLA', '8388462'), - (1118, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4ZElzOLA', '8400273'), - (1119, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '841yBBp4', '4642994'), - (1119, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '841yBBp4', '4642995'), - (1119, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '841yBBp4', '4642996'), - (1119, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '841yBBp4', '4642997'), - (1119, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '841yBBp4', '4645687'), - (1119, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '841yBBp4', '4645698'), - (1119, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '841yBBp4', '4645704'), - (1119, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '841yBBp4', '4645705'), - (1119, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '841yBBp4', '4668385'), - (1119, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '841yBBp4', '4694407'), - (1119, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '841yBBp4', '4746789'), - (1119, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '841yBBp4', '4753929'), - (1119, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '841yBBp4', '6045684'), - (1120, 374, 'not_attending', '2020-10-26 21:36:47', '2025-12-17 19:47:53', 'nm6bl8qm', '3221415'), - (1120, 392, 'attending', '2020-10-29 21:46:11', '2025-12-17 19:47:53', 'nm6bl8qm', '3236447'), - (1120, 428, 'attending', '2020-10-26 21:37:16', '2025-12-17 19:47:53', 'nm6bl8qm', '3250332'), - (1120, 438, 'attending', '2020-10-30 02:38:50', '2025-12-17 19:47:53', 'nm6bl8qm', '3256163'), - (1120, 440, 'not_attending', '2020-11-03 03:35:37', '2025-12-17 19:47:53', 'nm6bl8qm', '3256168'), - (1120, 441, 'attending', '2020-11-09 03:24:52', '2025-12-17 19:47:54', 'nm6bl8qm', '3256169'), - (1120, 444, 'not_attending', '2020-10-30 21:51:26', '2025-12-17 19:47:53', 'nm6bl8qm', '3263745'), - (1120, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'nm6bl8qm', '3266138'), - (1120, 446, 'attending', '2020-10-26 21:57:17', '2025-12-17 19:47:53', 'nm6bl8qm', '3267163'), - (1120, 456, 'maybe', '2020-11-17 00:36:51', '2025-12-17 19:47:54', 'nm6bl8qm', '3276428'), - (1120, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'nm6bl8qm', '3281467'), - (1120, 460, 'maybe', '2020-11-17 03:32:04', '2025-12-17 19:47:54', 'nm6bl8qm', '3281468'), - (1120, 461, 'not_attending', '2020-11-10 01:02:41', '2025-12-17 19:47:53', 'nm6bl8qm', '3281469'), - (1120, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'nm6bl8qm', '3281470'), - (1120, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'nm6bl8qm', '3281829'), - (1120, 468, 'not_attending', '2020-11-22 00:57:42', '2025-12-17 19:47:54', 'nm6bl8qm', '3285413'), - (1120, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'nm6bl8qm', '3285414'), - (1120, 478, 'maybe', '2020-11-17 22:50:56', '2025-12-17 19:47:54', 'nm6bl8qm', '3290899'), - (1120, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'nm6bl8qm', '3297764'), - (1120, 484, 'attending', '2020-11-20 13:34:39', '2025-12-17 19:47:54', 'nm6bl8qm', '3297792'), - (1120, 493, 'not_attending', '2020-12-06 00:16:12', '2025-12-17 19:47:54', 'nm6bl8qm', '3313856'), - (1120, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'nm6bl8qm', '3314909'), - (1120, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'nm6bl8qm', '3314964'), - (1120, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'nm6bl8qm', '3323365'), - (1120, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'nm6bl8qm', '3329383'), - (1120, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'nm6bl8qm', '3351539'), - (1120, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'nm6bl8qm', '3386848'), - (1120, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'nm6bl8qm', '3389527'), - (1120, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'nm6bl8qm', '3396499'), - (1120, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'nm6bl8qm', '3403650'), - (1120, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nm6bl8qm', '3406988'), - (1120, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'nm6bl8qm', '3416576'), - (1120, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'nm6bl8qm', '3418925'), - (1120, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6bl8qm', '6045684'), - (1121, 2160, 'attending', '2023-07-29 22:14:51', '2025-12-17 19:46:54', '4vbVvX14', '6338358'), - (1121, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4vbVvX14', '6342044'), - (1121, 2174, 'not_attending', '2023-07-26 20:15:40', '2025-12-17 19:46:54', '4vbVvX14', '6343294'), - (1121, 2176, 'not_attending', '2023-07-27 17:23:49', '2025-12-17 19:46:54', '4vbVvX14', '6347034'), - (1121, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4vbVvX14', '6353830'), - (1121, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4vbVvX14', '6353831'), - (1121, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4vbVvX14', '6357867'), - (1121, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4vbVvX14', '6358652'), - (1121, 2203, 'attending', '2023-08-09 22:18:40', '2025-12-17 19:46:55', '4vbVvX14', '6361524'), - (1121, 2204, 'maybe', '2023-08-19 22:09:28', '2025-12-17 19:46:55', '4vbVvX14', '6361542'), - (1121, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4vbVvX14', '6361709'), - (1121, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4vbVvX14', '6361710'), - (1121, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4vbVvX14', '6361711'), - (1121, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4vbVvX14', '6361712'), - (1121, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4vbVvX14', '6361713'), - (1121, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4vbVvX14', '6382573'), - (1121, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4vbVvX14', '6388604'), - (1121, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4vbVvX14', '6394629'), - (1121, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4vbVvX14', '6394631'), - (1121, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4vbVvX14', '6440863'), - (1121, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4vbVvX14', '6445440'), - (1121, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4vbVvX14', '6453951'), - (1121, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4vbVvX14', '6461696'), - (1121, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4vbVvX14', '6462129'), - (1121, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4vbVvX14', '6463218'), - (1121, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4vbVvX14', '6472181'), - (1121, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4vbVvX14', '6482693'), - (1121, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4vbVvX14', '6484200'), - (1121, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4vbVvX14', '6484680'), - (1121, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4vbVvX14', '6507741'), - (1121, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4vbVvX14', '6514659'), - (1121, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4vbVvX14', '6514660'), - (1121, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4vbVvX14', '6519103'), - (1121, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4vbVvX14', '6535681'), - (1121, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4vbVvX14', '6584747'), - (1121, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4vbVvX14', '6587097'), - (1121, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4vbVvX14', '6609022'), - (1121, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4vbVvX14', '6632757'), - (1121, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4vbVvX14', '6644187'), - (1121, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4vbVvX14', '6648951'), - (1121, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4vbVvX14', '6648952'), - (1121, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4vbVvX14', '6655401'), - (1121, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4vbVvX14', '6661585'), - (1121, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4vbVvX14', '6661588'), - (1121, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4vbVvX14', '6661589'), - (1121, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4vbVvX14', '6699906'), - (1121, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4vbVvX14', '6701109'), - (1121, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4vbVvX14', '6705219'), - (1121, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4vbVvX14', '6710153'), - (1121, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4vbVvX14', '6711552'), - (1121, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4vbVvX14', '6711553'), - (1122, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mM9kM09m', '4736497'), - (1122, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mM9kM09m', '4736500'), - (1122, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mM9kM09m', '4746789'), - (1122, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mM9kM09m', '4753929'), - (1122, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mM9kM09m', '6045684'), - (1123, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ArgqoEq4', '4736497'), - (1123, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ArgqoEq4', '4736500'), - (1123, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ArgqoEq4', '4746789'), - (1123, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ArgqoEq4', '4753929'), - (1123, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArgqoEq4', '6045684'), - (1124, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daJjeOZm', '4736504'), - (1124, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'daJjeOZm', '5132533'), - (1124, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'daJjeOZm', '5186582'), - (1124, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'daJjeOZm', '5186583'), - (1124, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'daJjeOZm', '5186585'), - (1124, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'daJjeOZm', '5190437'), - (1124, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'daJjeOZm', '5196763'), - (1124, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'daJjeOZm', '5199460'), - (1124, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'daJjeOZm', '5215989'), - (1124, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'daJjeOZm', '5223686'), - (1124, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'daJjeOZm', '5227432'), - (1124, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daJjeOZm', '6045684'), - (1125, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', 'GmjzRPbm', '4136938'), - (1125, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'GmjzRPbm', '4136947'), - (1125, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjzRPbm', '4210314'), - (1125, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjzRPbm', '4225444'), - (1125, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', 'GmjzRPbm', '4229418'), - (1125, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'GmjzRPbm', '4229420'), - (1125, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'GmjzRPbm', '4229423'), - (1125, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GmjzRPbm', '4240316'), - (1125, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GmjzRPbm', '4240317'), - (1125, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GmjzRPbm', '4240318'), - (1125, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GmjzRPbm', '4240320'), - (1125, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjzRPbm', '4275957'), - (1125, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjzRPbm', '4277819'), - (1125, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'GmjzRPbm', '4292773'), - (1125, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjzRPbm', '4301723'), - (1125, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'GmjzRPbm', '4302093'), - (1125, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjzRPbm', '4304151'), - (1125, 940, 'not_attending', '2021-07-30 16:29:44', '2025-12-17 19:47:40', 'GmjzRPbm', '4309049'), - (1125, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'GmjzRPbm', '4315713'), - (1125, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'GmjzRPbm', '4315714'), - (1125, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'GmjzRPbm', '4315726'), - (1125, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjzRPbm', '4356801'), - (1125, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GmjzRPbm', '4366186'), - (1125, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GmjzRPbm', '4366187'), - (1125, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GmjzRPbm', '4420735'), - (1125, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GmjzRPbm', '4420738'), - (1125, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GmjzRPbm', '4420739'), - (1125, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjzRPbm', '4420741'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (1125, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GmjzRPbm', '4420744'), - (1125, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GmjzRPbm', '4420747'), - (1125, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GmjzRPbm', '4420748'), - (1125, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjzRPbm', '4420749'), - (1125, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjzRPbm', '6045684'), - (1126, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'oAgR0gjm', '6632757'), - (1126, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAgR0gjm', '6644187'), - (1126, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAgR0gjm', '6648951'), - (1126, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAgR0gjm', '6648952'), - (1126, 2390, 'attending', '2024-01-05 20:37:43', '2025-12-17 19:46:37', 'oAgR0gjm', '6651141'), - (1126, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAgR0gjm', '6655401'), - (1126, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAgR0gjm', '6661585'), - (1126, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAgR0gjm', '6661588'), - (1126, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAgR0gjm', '6661589'), - (1126, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAgR0gjm', '6699906'), - (1126, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'oAgR0gjm', '6699913'), - (1126, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAgR0gjm', '6701109'), - (1126, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAgR0gjm', '6705219'), - (1126, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAgR0gjm', '6710153'), - (1126, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAgR0gjm', '6711552'), - (1126, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'oAgR0gjm', '6711553'), - (1126, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAgR0gjm', '6722688'), - (1126, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAgR0gjm', '6730620'), - (1126, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'oAgR0gjm', '6730642'), - (1126, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAgR0gjm', '6740364'), - (1126, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAgR0gjm', '6743829'), - (1126, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAgR0gjm', '7030380'), - (1126, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'oAgR0gjm', '7033677'), - (1126, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'oAgR0gjm', '7035415'), - (1126, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAgR0gjm', '7044715'), - (1126, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAgR0gjm', '7050318'), - (1126, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAgR0gjm', '7050319'), - (1126, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAgR0gjm', '7050322'), - (1126, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAgR0gjm', '7057804'), - (1126, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAgR0gjm', '7072824'), - (1126, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAgR0gjm', '7074348'), - (1126, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAgR0gjm', '7089267'), - (1126, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAgR0gjm', '7098747'), - (1126, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'oAgR0gjm', '7113468'), - (1126, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAgR0gjm', '7114856'), - (1126, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAgR0gjm', '7114951'), - (1126, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAgR0gjm', '7114955'), - (1126, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAgR0gjm', '7114956'), - (1126, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'oAgR0gjm', '7153615'), - (1126, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAgR0gjm', '7159484'), - (1126, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAgR0gjm', '7178446'), - (1127, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', '4oj6kOMA', '7291219'), - (1127, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', '4oj6kOMA', '7301638'), - (1128, 2498, 'attending', '2024-03-20 21:17:04', '2025-12-17 19:46:33', 'd3yBZLDA', '7057662'), - (1128, 2509, 'attending', '2024-03-25 02:25:56', '2025-12-17 19:46:33', 'd3yBZLDA', '7074349'), - (1128, 2511, 'not_attending', '2024-04-07 06:45:32', '2025-12-17 19:46:33', 'd3yBZLDA', '7074351'), - (1128, 2512, 'attending', '2024-04-05 00:27:50', '2025-12-17 19:46:33', 'd3yBZLDA', '7074352'), - (1128, 2516, 'attending', '2024-04-29 17:26:10', '2025-12-17 19:46:35', 'd3yBZLDA', '7074356'), - (1128, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd3yBZLDA', '7074364'), - (1128, 2537, 'attending', '2024-03-23 02:09:37', '2025-12-17 19:46:33', 'd3yBZLDA', '7085484'), - (1128, 2539, 'attending', '2024-04-06 23:11:46', '2025-12-17 19:46:33', 'd3yBZLDA', '7085486'), - (1128, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd3yBZLDA', '7098747'), - (1128, 2551, 'maybe', '2024-03-29 17:21:46', '2025-12-17 19:46:33', 'd3yBZLDA', '7109912'), - (1128, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd3yBZLDA', '7113468'), - (1128, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd3yBZLDA', '7114856'), - (1128, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd3yBZLDA', '7114951'), - (1128, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd3yBZLDA', '7114955'), - (1128, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd3yBZLDA', '7114956'), - (1128, 2558, 'attending', '2024-04-30 01:35:34', '2025-12-17 19:46:35', 'd3yBZLDA', '7114957'), - (1128, 2563, 'attending', '2024-04-12 21:04:04', '2025-12-17 19:46:33', 'd3yBZLDA', '7134734'), - (1128, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd3yBZLDA', '7153615'), - (1128, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd3yBZLDA', '7159484'), - (1128, 2576, 'maybe', '2024-04-26 00:52:27', '2025-12-17 19:46:34', 'd3yBZLDA', '7164538'), - (1128, 2584, 'attending', '2024-04-21 01:28:40', '2025-12-17 19:46:34', 'd3yBZLDA', '7175057'), - (1128, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd3yBZLDA', '7178446'), - (1128, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'd3yBZLDA', '7220467'), - (1128, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd3yBZLDA', '7240354'), - (1128, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd3yBZLDA', '7251633'), - (1128, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'd3yBZLDA', '7263048'), - (1128, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd3yBZLDA', '7302674'), - (1128, 2683, 'attending', '2024-06-16 06:32:01', '2025-12-17 19:46:28', 'd3yBZLDA', '7321978'), - (1128, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd3yBZLDA', '7324073'), - (1128, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd3yBZLDA', '7324074'), - (1128, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd3yBZLDA', '7324075'), - (1128, 2691, 'attending', '2024-07-18 02:48:49', '2025-12-17 19:46:30', 'd3yBZLDA', '7324076'), - (1128, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd3yBZLDA', '7324078'), - (1128, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd3yBZLDA', '7324082'), - (1128, 2706, 'not_attending', '2024-06-18 15:12:28', '2025-12-17 19:46:28', 'd3yBZLDA', '7324947'), - (1128, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd3yBZLDA', '7331457'), - (1128, 2723, 'maybe', '2024-06-21 20:23:09', '2025-12-17 19:46:29', 'd3yBZLDA', '7332389'), - (1128, 2747, 'attending', '2024-07-16 13:11:50', '2025-12-17 19:46:30', 'd3yBZLDA', '7353587'), - (1128, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'd3yBZLDA', '7356752'), - (1128, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd3yBZLDA', '7363643'), - (1128, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd3yBZLDA', '7368606'), - (1128, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd3yBZLDA', '7397462'), - (1128, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd3yBZLDA', '7424275'), - (1128, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd3yBZLDA', '7424276'), - (1128, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd3yBZLDA', '7432751'), - (1128, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd3yBZLDA', '7432752'), - (1128, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd3yBZLDA', '7432753'), - (1128, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd3yBZLDA', '7432754'), - (1128, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd3yBZLDA', '7432755'), - (1128, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd3yBZLDA', '7432756'), - (1128, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd3yBZLDA', '7432758'), - (1128, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd3yBZLDA', '7432759'), - (1128, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd3yBZLDA', '7433834'), - (1128, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd3yBZLDA', '7470197'), - (1128, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd3yBZLDA', '7685613'), - (1128, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd3yBZLDA', '7688194'), - (1128, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd3yBZLDA', '7688196'), - (1128, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd3yBZLDA', '7688289'), - (1129, 5, 'maybe', '2020-04-12 18:36:46', '2025-12-17 19:47:58', 'kdKXkBam', '2958047'), - (1129, 18, 'attending', '2020-04-16 19:24:43', '2025-12-17 19:47:57', 'kdKXkBam', '2958062'), - (1129, 22, 'attending', '2020-05-24 04:36:25', '2025-12-17 19:47:57', 'kdKXkBam', '2958066'), - (1129, 23, 'attending', '2020-06-10 13:36:58', '2025-12-17 19:47:58', 'kdKXkBam', '2958067'), - (1129, 24, 'not_attending', '2020-06-20 23:41:35', '2025-12-17 19:47:55', 'kdKXkBam', '2958068'), - (1129, 40, 'attending', '2020-04-09 12:09:13', '2025-12-17 19:47:57', 'kdKXkBam', '2970718'), - (1129, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'kdKXkBam', '2971546'), - (1129, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'kdKXkBam', '2974534'), - (1129, 46, 'attending', '2020-04-12 18:37:02', '2025-12-17 19:47:57', 'kdKXkBam', '2974955'), - (1129, 50, 'not_attending', '2020-07-28 20:51:50', '2025-12-17 19:47:55', 'kdKXkBam', '2975275'), - (1129, 52, 'attending', '2020-06-16 20:23:57', '2025-12-17 19:47:58', 'kdKXkBam', '2975277'), - (1129, 53, 'attending', '2020-07-13 22:04:03', '2025-12-17 19:47:55', 'kdKXkBam', '2975278'), - (1129, 54, 'attending', '2020-08-26 23:44:54', '2025-12-17 19:47:56', 'kdKXkBam', '2975279'), - (1129, 56, 'maybe', '2020-04-12 18:38:51', '2025-12-17 19:47:57', 'kdKXkBam', '2975385'), - (1129, 57, 'attending', '2020-04-27 22:39:02', '2025-12-17 19:47:57', 'kdKXkBam', '2976575'), - (1129, 62, 'attending', '2020-05-12 22:32:40', '2025-12-17 19:47:57', 'kdKXkBam', '2977131'), - (1129, 63, 'attending', '2020-05-19 14:14:29', '2025-12-17 19:47:57', 'kdKXkBam', '2977132'), - (1129, 64, 'attending', '2020-05-31 22:45:30', '2025-12-17 19:47:58', 'kdKXkBam', '2977133'), - (1129, 65, 'not_attending', '2020-05-26 22:31:13', '2025-12-17 19:47:57', 'kdKXkBam', '2977134'), - (1129, 66, 'attending', '2020-06-09 20:34:47', '2025-12-17 19:47:58', 'kdKXkBam', '2977135'), - (1129, 67, 'not_attending', '2020-06-16 20:24:01', '2025-12-17 19:47:58', 'kdKXkBam', '2977136'), - (1129, 68, 'not_attending', '2020-06-20 02:07:49', '2025-12-17 19:47:58', 'kdKXkBam', '2977137'), - (1129, 69, 'not_attending', '2020-06-25 16:17:16', '2025-12-17 19:47:55', 'kdKXkBam', '2977138'), - (1129, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'kdKXkBam', '2977343'), - (1129, 72, 'attending', '2020-05-07 22:42:33', '2025-12-17 19:47:57', 'kdKXkBam', '2977812'), - (1129, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'kdKXkBam', '2977931'), - (1129, 74, 'attending', '2020-04-18 22:04:06', '2025-12-17 19:47:57', 'kdKXkBam', '2978244'), - (1129, 75, 'attending', '2020-04-25 15:38:01', '2025-12-17 19:47:57', 'kdKXkBam', '2978245'), - (1129, 76, 'attending', '2020-05-02 14:47:55', '2025-12-17 19:47:57', 'kdKXkBam', '2978246'), - (1129, 77, 'attending', '2020-05-09 19:35:38', '2025-12-17 19:47:57', 'kdKXkBam', '2978247'), - (1129, 78, 'attending', '2020-05-19 21:14:17', '2025-12-17 19:47:57', 'kdKXkBam', '2978249'), - (1129, 79, 'attending', '2020-05-29 18:55:38', '2025-12-17 19:47:57', 'kdKXkBam', '2978250'), - (1129, 80, 'attending', '2020-06-06 22:38:22', '2025-12-17 19:47:58', 'kdKXkBam', '2978251'), - (1129, 81, 'attending', '2020-06-10 13:50:27', '2025-12-17 19:47:58', 'kdKXkBam', '2978252'), - (1129, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'kdKXkBam', '2978433'), - (1129, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'kdKXkBam', '2978438'), - (1129, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'kdKXkBam', '2980871'), - (1129, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'kdKXkBam', '2981388'), - (1129, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'kdKXkBam', '2986743'), - (1129, 95, 'attending', '2020-04-28 23:46:18', '2025-12-17 19:47:57', 'kdKXkBam', '2987452'), - (1129, 98, 'attending', '2020-05-18 21:15:43', '2025-12-17 19:47:57', 'kdKXkBam', '2987455'), - (1129, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', 'kdKXkBam', '2990784'), - (1129, 104, 'not_attending', '2020-04-24 14:20:07', '2025-12-17 19:47:57', 'kdKXkBam', '2991471'), - (1129, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'kdKXkBam', '2993501'), - (1129, 109, 'attending', '2020-05-13 22:55:27', '2025-12-17 19:47:57', 'kdKXkBam', '2994480'), - (1129, 111, 'attending', '2020-06-07 01:49:42', '2025-12-17 19:47:58', 'kdKXkBam', '2994907'), - (1129, 112, 'not_attending', '2020-07-05 18:50:33', '2025-12-17 19:47:55', 'kdKXkBam', '2994908'), - (1129, 113, 'attending', '2020-08-02 03:21:35', '2025-12-17 19:47:56', 'kdKXkBam', '2994909'), - (1129, 115, 'attending', '2020-05-12 19:06:18', '2025-12-17 19:47:57', 'kdKXkBam', '3001217'), - (1129, 121, 'attending', '2020-05-26 09:49:09', '2025-12-17 19:47:57', 'kdKXkBam', '3023063'), - (1129, 122, 'attending', '2020-05-14 15:18:11', '2025-12-17 19:47:57', 'kdKXkBam', '3023491'), - (1129, 123, 'attending', '2020-05-25 00:20:45', '2025-12-17 19:47:57', 'kdKXkBam', '3023729'), - (1129, 125, 'attending', '2020-05-22 17:29:06', '2025-12-17 19:47:57', 'kdKXkBam', '3023987'), - (1129, 129, 'attending', '2020-05-20 02:55:40', '2025-12-17 19:47:58', 'kdKXkBam', '3028743'), - (1129, 130, 'attending', '2020-05-28 23:10:51', '2025-12-17 19:47:57', 'kdKXkBam', '3028781'), - (1129, 132, 'attending', '2020-05-25 21:32:16', '2025-12-17 19:47:58', 'kdKXkBam', '3033648'), - (1129, 133, 'not_attending', '2020-06-20 02:07:54', '2025-12-17 19:47:58', 'kdKXkBam', '3034321'), - (1129, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'kdKXkBam', '3035881'), - (1129, 137, 'not_attending', '2020-06-04 19:24:34', '2025-12-17 19:47:58', 'kdKXkBam', '3042188'), - (1129, 138, 'attending', '2020-05-29 03:54:23', '2025-12-17 19:47:58', 'kdKXkBam', '3042932'), - (1129, 141, 'attending', '2020-05-31 22:37:58', '2025-12-17 19:47:58', 'kdKXkBam', '3049830'), - (1129, 143, 'not_attending', '2020-06-08 17:38:46', '2025-12-17 19:47:58', 'kdKXkBam', '3049983'), - (1129, 145, 'attending', '2020-06-10 13:50:25', '2025-12-17 19:47:58', 'kdKXkBam', '3058680'), - (1129, 146, 'attending', '2020-06-20 23:41:41', '2025-12-17 19:47:55', 'kdKXkBam', '3058683'), - (1129, 147, 'attending', '2020-08-18 22:54:42', '2025-12-17 19:47:56', 'kdKXkBam', '3058684'), - (1129, 148, 'attending', '2020-07-10 15:50:28', '2025-12-17 19:47:55', 'kdKXkBam', '3058685'), - (1129, 149, 'not_attending', '2020-07-18 21:08:43', '2025-12-17 19:47:55', 'kdKXkBam', '3058686'), - (1129, 150, 'attending', '2020-07-20 15:57:41', '2025-12-17 19:47:55', 'kdKXkBam', '3058687'), - (1129, 151, 'not_attending', '2020-08-29 17:00:12', '2025-12-17 19:47:56', 'kdKXkBam', '3058688'), - (1129, 152, 'attending', '2020-09-05 13:13:49', '2025-12-17 19:47:56', 'kdKXkBam', '3058689'), - (1129, 153, 'attending', '2020-07-28 04:12:39', '2025-12-17 19:47:55', 'kdKXkBam', '3058690'), - (1129, 154, 'attending', '2020-08-06 14:01:36', '2025-12-17 19:47:56', 'kdKXkBam', '3058691'), - (1129, 155, 'not_attending', '2020-08-15 21:21:03', '2025-12-17 19:47:56', 'kdKXkBam', '3058692'), - (1129, 156, 'not_attending', '2020-09-12 21:05:00', '2025-12-17 19:47:56', 'kdKXkBam', '3058693'), - (1129, 157, 'attending', '2020-09-19 21:31:44', '2025-12-17 19:47:56', 'kdKXkBam', '3058694'), - (1129, 158, 'not_attending', '2020-09-26 21:18:42', '2025-12-17 19:47:52', 'kdKXkBam', '3058695'), - (1129, 159, 'attending', '2020-10-03 21:17:58', '2025-12-17 19:47:52', 'kdKXkBam', '3058696'), - (1129, 160, 'not_attending', '2020-10-24 10:16:00', '2025-12-17 19:47:52', 'kdKXkBam', '3058697'), - (1129, 161, 'attending', '2020-10-09 22:47:37', '2025-12-17 19:47:52', 'kdKXkBam', '3058698'), - (1129, 162, 'attending', '2020-10-17 13:14:16', '2025-12-17 19:47:52', 'kdKXkBam', '3058699'), - (1129, 164, 'not_attending', '2020-11-14 23:41:47', '2025-12-17 19:47:54', 'kdKXkBam', '3058701'), - (1129, 165, 'not_attending', '2020-11-07 01:46:08', '2025-12-17 19:47:53', 'kdKXkBam', '3058702'), - (1129, 166, 'attending', '2020-11-21 21:50:58', '2025-12-17 19:47:54', 'kdKXkBam', '3058704'), - (1129, 167, 'attending', '2020-11-28 22:22:51', '2025-12-17 19:47:54', 'kdKXkBam', '3058705'), - (1129, 171, 'attending', '2020-06-10 13:37:00', '2025-12-17 19:47:58', 'kdKXkBam', '3058743'), - (1129, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'kdKXkBam', '3058959'), - (1129, 173, 'not_attending', '2020-06-17 20:58:19', '2025-12-17 19:47:58', 'kdKXkBam', '3067093'), - (1129, 174, 'attending', '2020-06-10 20:54:19', '2025-12-17 19:47:58', 'kdKXkBam', '3067927'), - (1129, 175, 'attending', '2020-06-17 20:56:15', '2025-12-17 19:47:58', 'kdKXkBam', '3068305'), - (1129, 180, 'not_attending', '2020-06-18 22:41:51', '2025-12-17 19:47:58', 'kdKXkBam', '3074048'), - (1129, 181, 'not_attending', '2020-06-20 02:07:22', '2025-12-17 19:47:58', 'kdKXkBam', '3074513'), - (1129, 182, 'not_attending', '2020-06-25 10:58:24', '2025-12-17 19:47:55', 'kdKXkBam', '3074514'), - (1129, 183, 'not_attending', '2020-06-20 02:07:42', '2025-12-17 19:47:58', 'kdKXkBam', '3075228'), - (1129, 184, 'not_attending', '2020-06-17 21:01:01', '2025-12-17 19:47:58', 'kdKXkBam', '3075262'), - (1129, 185, 'not_attending', '2020-06-20 23:40:58', '2025-12-17 19:47:58', 'kdKXkBam', '3075456'), - (1129, 186, 'not_attending', '2020-06-20 02:08:04', '2025-12-17 19:47:55', 'kdKXkBam', '3083791'), - (1129, 187, 'not_attending', '2020-06-25 10:58:33', '2025-12-17 19:47:55', 'kdKXkBam', '3085151'), - (1129, 188, 'not_attending', '2020-06-20 23:41:05', '2025-12-17 19:47:58', 'kdKXkBam', '3086646'), - (1129, 189, 'maybe', '2020-06-20 02:04:33', '2025-12-17 19:47:58', 'kdKXkBam', '3087016'), - (1129, 190, 'not_attending', '2020-06-25 16:17:45', '2025-12-17 19:47:55', 'kdKXkBam', '3087258'), - (1129, 191, 'attending', '2020-07-10 15:50:32', '2025-12-17 19:47:55', 'kdKXkBam', '3087259'), - (1129, 192, 'not_attending', '2020-07-17 18:43:33', '2025-12-17 19:47:55', 'kdKXkBam', '3087260'), - (1129, 193, 'attending', '2020-07-20 15:57:42', '2025-12-17 19:47:55', 'kdKXkBam', '3087261'), - (1129, 194, 'attending', '2020-07-28 04:12:36', '2025-12-17 19:47:55', 'kdKXkBam', '3087262'), - (1129, 195, 'not_attending', '2020-08-06 14:01:42', '2025-12-17 19:47:56', 'kdKXkBam', '3087264'), - (1129, 196, 'not_attending', '2020-08-15 21:21:05', '2025-12-17 19:47:56', 'kdKXkBam', '3087265'), - (1129, 197, 'attending', '2020-08-19 19:08:29', '2025-12-17 19:47:56', 'kdKXkBam', '3087266'), - (1129, 198, 'not_attending', '2020-08-29 17:00:13', '2025-12-17 19:47:56', 'kdKXkBam', '3087267'), - (1129, 199, 'attending', '2020-09-05 13:13:46', '2025-12-17 19:47:56', 'kdKXkBam', '3087268'), - (1129, 200, 'attending', '2020-09-04 23:34:48', '2025-12-17 19:47:56', 'kdKXkBam', '3087269'), - (1129, 201, 'not_attending', '2020-06-20 22:35:16', '2025-12-17 19:47:55', 'kdKXkBam', '3088653'), - (1129, 202, 'not_attending', '2020-06-25 16:17:41', '2025-12-17 19:47:55', 'kdKXkBam', '3090353'), - (1129, 203, 'not_attending', '2020-06-22 17:54:12', '2025-12-17 19:47:58', 'kdKXkBam', '3091624'), - (1129, 205, 'attending', '2020-07-10 22:56:15', '2025-12-17 19:47:55', 'kdKXkBam', '3104804'), - (1129, 206, 'not_attending', '2020-07-17 18:43:27', '2025-12-17 19:47:55', 'kdKXkBam', '3104806'), - (1129, 207, 'maybe', '2020-07-24 19:01:29', '2025-12-17 19:47:55', 'kdKXkBam', '3104807'), - (1129, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'kdKXkBam', '3106813'), - (1129, 220, 'attending', '2020-09-02 23:30:01', '2025-12-17 19:47:56', 'kdKXkBam', '3129264'), - (1129, 223, 'not_attending', '2020-09-12 21:05:01', '2025-12-17 19:47:56', 'kdKXkBam', '3129980'), - (1129, 224, 'attending', '2020-07-23 14:49:46', '2025-12-17 19:47:55', 'kdKXkBam', '3130712'), - (1129, 225, 'maybe', '2020-07-18 19:35:00', '2025-12-17 19:47:55', 'kdKXkBam', '3132378'), - (1129, 226, 'attending', '2020-07-15 19:31:40', '2025-12-17 19:47:55', 'kdKXkBam', '3132817'), - (1129, 227, 'attending', '2020-07-16 01:01:08', '2025-12-17 19:47:55', 'kdKXkBam', '3132820'), - (1129, 229, 'not_attending', '2020-07-17 18:43:24', '2025-12-17 19:47:55', 'kdKXkBam', '3134135'), - (1129, 233, 'attending', '2020-07-19 21:20:10', '2025-12-17 19:47:55', 'kdKXkBam', '3139773'), - (1129, 234, 'attending', '2020-07-20 16:20:00', '2025-12-17 19:47:55', 'kdKXkBam', '3140456'), - (1129, 235, 'attending', '2020-07-22 16:34:10', '2025-12-17 19:47:55', 'kdKXkBam', '3140861'), - (1129, 236, 'attending', '2020-07-21 21:50:29', '2025-12-17 19:47:55', 'kdKXkBam', '3140873'), - (1129, 237, 'attending', '2020-07-23 14:50:48', '2025-12-17 19:47:55', 'kdKXkBam', '3142085'), - (1129, 245, 'attending', '2020-12-01 23:11:32', '2025-12-17 19:47:54', 'kdKXkBam', '3149476'), - (1129, 263, 'attending', '2020-07-25 22:22:06', '2025-12-17 19:47:55', 'kdKXkBam', '3149671'), - (1129, 264, 'not_attending', '2020-08-02 18:09:25', '2025-12-17 19:47:56', 'kdKXkBam', '3150735'), - (1129, 267, 'attending', '2020-07-28 23:17:56', '2025-12-17 19:47:55', 'kdKXkBam', '3152781'), - (1129, 269, 'attending', '2020-07-28 22:18:07', '2025-12-17 19:47:55', 'kdKXkBam', '3153076'), - (1129, 270, 'not_attending', '2020-08-13 22:56:00', '2025-12-17 19:47:56', 'kdKXkBam', '3154457'), - (1129, 271, 'not_attending', '2020-08-02 18:09:23', '2025-12-17 19:47:56', 'kdKXkBam', '3155321'), - (1129, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'kdKXkBam', '3162006'), - (1129, 275, 'not_attending', '2020-08-03 20:14:35', '2025-12-17 19:47:56', 'kdKXkBam', '3163405'), - (1129, 277, 'not_attending', '2020-08-06 14:01:27', '2025-12-17 19:47:56', 'kdKXkBam', '3163442'), - (1129, 281, 'attending', '2020-08-09 12:18:36', '2025-12-17 19:47:56', 'kdKXkBam', '3166945'), - (1129, 293, 'not_attending', '2020-08-19 22:37:30', '2025-12-17 19:47:56', 'kdKXkBam', '3172832'), - (1129, 294, 'not_attending', '2020-08-26 23:45:02', '2025-12-17 19:47:56', 'kdKXkBam', '3172833'), - (1129, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'kdKXkBam', '3172834'), - (1129, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'kdKXkBam', '3172876'), - (1129, 297, 'not_attending', '2020-08-11 20:24:08', '2025-12-17 19:47:56', 'kdKXkBam', '3173937'), - (1129, 299, 'not_attending', '2020-08-17 22:58:07', '2025-12-17 19:47:56', 'kdKXkBam', '3176591'), - (1129, 303, 'attending', '2020-08-13 18:05:50', '2025-12-17 19:47:56', 'kdKXkBam', '3178444'), - (1129, 304, 'not_attending', '2020-09-07 22:33:53', '2025-12-17 19:47:56', 'kdKXkBam', '3178916'), - (1129, 305, 'not_attending', '2020-08-17 22:58:11', '2025-12-17 19:47:56', 'kdKXkBam', '3179555'), - (1129, 308, 'not_attending', '2020-09-02 23:29:58', '2025-12-17 19:47:56', 'kdKXkBam', '3183341'), - (1129, 310, 'attending', '2020-08-20 18:47:33', '2025-12-17 19:47:56', 'kdKXkBam', '3186005'), - (1129, 311, 'attending', '2020-09-19 21:31:49', '2025-12-17 19:47:56', 'kdKXkBam', '3186057'), - (1129, 314, 'attending', '2020-08-24 17:24:52', '2025-12-17 19:47:56', 'kdKXkBam', '3188480'), - (1129, 317, 'not_attending', '2020-08-29 01:48:26', '2025-12-17 19:47:56', 'kdKXkBam', '3191735'), - (1129, 335, 'maybe', '2020-09-04 19:02:39', '2025-12-17 19:47:56', 'kdKXkBam', '3200209'), - (1129, 344, 'not_attending', '2020-10-25 01:49:35', '2025-12-17 19:47:53', 'kdKXkBam', '3206906'), - (1129, 345, 'attending', '2020-09-09 20:39:40', '2025-12-17 19:47:56', 'kdKXkBam', '3207423'), - (1129, 346, 'not_attending', '2020-09-15 18:29:34', '2025-12-17 19:47:56', 'kdKXkBam', '3207515'), - (1129, 348, 'attending', '2020-09-29 21:12:47', '2025-12-17 19:47:52', 'kdKXkBam', '3209159'), - (1129, 360, 'not_attending', '2020-09-17 22:13:51', '2025-12-17 19:47:56', 'kdKXkBam', '3212671'), - (1129, 361, 'attending', '2020-09-14 18:46:17', '2025-12-17 19:47:56', 'kdKXkBam', '3213323'), - (1129, 362, 'not_attending', '2020-09-26 21:18:47', '2025-12-17 19:47:52', 'kdKXkBam', '3214207'), - (1129, 363, 'maybe', '2020-09-17 10:20:54', '2025-12-17 19:47:52', 'kdKXkBam', '3217037'), - (1129, 365, 'not_attending', '2020-09-24 06:14:16', '2025-12-17 19:47:52', 'kdKXkBam', '3218510'), - (1129, 382, 'maybe', '2020-10-13 21:22:33', '2025-12-17 19:47:52', 'kdKXkBam', '3226873'), - (1129, 385, 'attending', '2020-10-03 21:17:59', '2025-12-17 19:47:52', 'kdKXkBam', '3228698'), - (1129, 386, 'attending', '2020-10-09 22:47:37', '2025-12-17 19:47:52', 'kdKXkBam', '3228699'), - (1129, 387, 'attending', '2020-10-17 13:14:16', '2025-12-17 19:47:52', 'kdKXkBam', '3228700'), - (1129, 388, 'not_attending', '2020-10-24 10:15:56', '2025-12-17 19:47:52', 'kdKXkBam', '3228701'), - (1129, 390, 'attending', '2020-09-30 22:55:50', '2025-12-17 19:47:52', 'kdKXkBam', '3231510'), - (1129, 399, 'not_attending', '2020-11-13 00:17:24', '2025-12-17 19:47:54', 'kdKXkBam', '3236454'), - (1129, 409, 'attending', '2020-12-11 01:00:30', '2025-12-17 19:47:54', 'kdKXkBam', '3236467'), - (1129, 414, 'attending', '2020-10-05 21:37:25', '2025-12-17 19:47:52', 'kdKXkBam', '3237277'), - (1129, 416, 'not_attending', '2020-10-09 22:00:03', '2025-12-17 19:47:52', 'kdKXkBam', '3238073'), - (1129, 417, 'attending', '2020-10-08 11:45:07', '2025-12-17 19:47:52', 'kdKXkBam', '3238779'), - (1129, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'kdKXkBam', '3245751'), - (1129, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'kdKXkBam', '3250232'), - (1129, 429, 'attending', '2020-12-03 12:40:20', '2025-12-17 19:47:54', 'kdKXkBam', '3250523'), - (1129, 439, 'not_attending', '2020-10-28 13:28:18', '2025-12-17 19:47:53', 'kdKXkBam', '3256164'), - (1129, 440, 'not_attending', '2020-11-07 01:46:10', '2025-12-17 19:47:53', 'kdKXkBam', '3256168'), - (1129, 441, 'not_attending', '2020-11-14 23:41:50', '2025-12-17 19:47:54', 'kdKXkBam', '3256169'), - (1129, 443, 'not_attending', '2020-10-25 21:51:20', '2025-12-17 19:47:53', 'kdKXkBam', '3263578'), - (1129, 445, 'not_attending', '2020-11-13 00:17:25', '2025-12-17 19:47:54', 'kdKXkBam', '3266138'), - (1129, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'kdKXkBam', '3276428'), - (1129, 459, 'attending', '2020-11-08 18:11:38', '2025-12-17 19:47:54', 'kdKXkBam', '3281467'), - (1129, 462, 'not_attending', '2020-11-10 16:25:11', '2025-12-17 19:47:54', 'kdKXkBam', '3281470'), - (1129, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'kdKXkBam', '3281829'), - (1129, 468, 'attending', '2020-11-21 23:47:12', '2025-12-17 19:47:54', 'kdKXkBam', '3285413'), - (1129, 469, 'attending', '2020-11-28 22:22:53', '2025-12-17 19:47:54', 'kdKXkBam', '3285414'), - (1129, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'kdKXkBam', '3297764'), - (1129, 493, 'not_attending', '2020-12-05 19:10:19', '2025-12-17 19:47:54', 'kdKXkBam', '3313856'), - (1129, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'kdKXkBam', '3314909'), - (1129, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'kdKXkBam', '3314964'), - (1129, 502, 'not_attending', '2020-12-12 01:27:39', '2025-12-17 19:47:55', 'kdKXkBam', '3323365'), - (1129, 513, 'not_attending', '2020-12-19 23:52:13', '2025-12-17 19:47:55', 'kdKXkBam', '3329383'), - (1129, 514, 'not_attending', '2020-12-12 01:27:43', '2025-12-17 19:47:55', 'kdKXkBam', '3329400'), - (1129, 516, 'not_attending', '2020-12-27 00:28:39', '2025-12-17 19:47:48', 'kdKXkBam', '3334530'), - (1129, 524, 'not_attending', '2020-12-19 23:52:12', '2025-12-17 19:47:55', 'kdKXkBam', '3350120'), - (1129, 526, 'attending', '2021-01-02 05:51:00', '2025-12-17 19:47:48', 'kdKXkBam', '3351539'), - (1129, 528, 'attending', '2020-12-31 23:53:51', '2025-12-17 19:47:48', 'kdKXkBam', '3363022'), - (1129, 531, 'attending', '2021-01-02 05:51:05', '2025-12-17 19:47:48', 'kdKXkBam', '3378210'), - (1129, 536, 'not_attending', '2021-01-09 00:42:55', '2025-12-17 19:47:48', 'kdKXkBam', '3386848'), - (1129, 540, 'not_attending', '2021-01-07 01:50:33', '2025-12-17 19:47:48', 'kdKXkBam', '3389527'), - (1129, 541, 'not_attending', '2021-01-09 23:25:36', '2025-12-17 19:47:48', 'kdKXkBam', '3391683'), - (1129, 543, 'not_attending', '2021-01-16 01:46:23', '2025-12-17 19:47:48', 'kdKXkBam', '3396499'), - (1129, 548, 'attending', '2021-01-16 04:32:18', '2025-12-17 19:47:48', 'kdKXkBam', '3403650'), - (1129, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdKXkBam', '3406988'), - (1129, 553, 'attending', '2021-01-16 04:32:16', '2025-12-17 19:47:48', 'kdKXkBam', '3407248'), - (1129, 555, 'not_attending', '2021-01-23 20:03:47', '2025-12-17 19:47:49', 'kdKXkBam', '3416576'), - (1129, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'kdKXkBam', '3418925'), - (1129, 561, 'not_attending', '2021-01-23 23:50:00', '2025-12-17 19:47:49', 'kdKXkBam', '3421916'), - (1129, 568, 'not_attending', '2021-01-30 23:31:48', '2025-12-17 19:47:50', 'kdKXkBam', '3430267'), - (1129, 569, 'not_attending', '2021-01-27 22:08:42', '2025-12-17 19:47:49', 'kdKXkBam', '3432673'), - (1129, 571, 'not_attending', '2021-02-13 01:49:11', '2025-12-17 19:47:50', 'kdKXkBam', '3435539'), - (1129, 575, 'not_attending', '2021-01-30 23:31:47', '2025-12-17 19:47:50', 'kdKXkBam', '3437492'), - (1129, 579, 'not_attending', '2021-02-06 20:59:05', '2025-12-17 19:47:50', 'kdKXkBam', '3440978'), - (1129, 580, 'not_attending', '2021-01-30 02:08:16', '2025-12-17 19:47:50', 'kdKXkBam', '3444240'), - (1129, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'kdKXkBam', '3468125'), - (1129, 602, 'not_attending', '2021-02-13 21:56:05', '2025-12-17 19:47:50', 'kdKXkBam', '3470303'), - (1129, 603, 'not_attending', '2021-02-20 17:58:19', '2025-12-17 19:47:50', 'kdKXkBam', '3470304'), - (1129, 604, 'not_attending', '2021-02-27 20:59:18', '2025-12-17 19:47:50', 'kdKXkBam', '3470305'), - (1129, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdKXkBam', '3470991'), - (1129, 609, 'not_attending', '2021-02-13 21:56:04', '2025-12-17 19:47:50', 'kdKXkBam', '3480916'), - (1129, 619, 'not_attending', '2021-02-20 17:58:18', '2025-12-17 19:47:50', 'kdKXkBam', '3506310'), - (1129, 621, 'not_attending', '2021-03-06 23:53:44', '2025-12-17 19:47:51', 'kdKXkBam', '3517815'), - (1129, 622, 'not_attending', '2021-03-14 01:26:13', '2025-12-17 19:47:51', 'kdKXkBam', '3517816'), - (1129, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKXkBam', '3523941'), - (1129, 624, 'not_attending', '2021-02-27 20:59:18', '2025-12-17 19:47:50', 'kdKXkBam', '3528556'), - (1129, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKXkBam', '3533850'), - (1129, 637, 'maybe', '2021-03-20 15:19:01', '2025-12-17 19:47:51', 'kdKXkBam', '3536411'), - (1129, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKXkBam', '3536632'), - (1129, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKXkBam', '3536656'), - (1129, 641, 'not_attending', '2021-04-04 23:00:36', '2025-12-17 19:47:44', 'kdKXkBam', '3539916'), - (1129, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdKXkBam', '3539917'), - (1129, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKXkBam', '3539918'), - (1129, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKXkBam', '3539919'), - (1129, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKXkBam', '3539920'), - (1129, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKXkBam', '3539921'), - (1129, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKXkBam', '3539922'), - (1129, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKXkBam', '3539923'), - (1129, 649, 'not_attending', '2021-03-20 15:18:54', '2025-12-17 19:47:51', 'kdKXkBam', '3539927'), - (1129, 650, 'not_attending', '2021-03-27 20:06:10', '2025-12-17 19:47:44', 'kdKXkBam', '3539928'), - (1129, 653, 'not_attending', '2021-03-06 23:53:42', '2025-12-17 19:47:51', 'kdKXkBam', '3546917'), - (1129, 656, 'not_attending', '2021-03-20 15:18:49', '2025-12-17 19:47:51', 'kdKXkBam', '3547130'), - (1129, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKXkBam', '3582734'), - (1129, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKXkBam', '3619523'), - (1129, 718, 'not_attending', '2021-03-27 20:06:09', '2025-12-17 19:47:44', 'kdKXkBam', '3626844'), - (1129, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', 'kdKXkBam', '4420739'), - (1129, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'kdKXkBam', '4420741'), - (1129, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'kdKXkBam', '4420744'), - (1129, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'kdKXkBam', '4420747'), - (1129, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKXkBam', '4508342'), - (1129, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKXkBam', '4568602'), - (1129, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKXkBam', '4572153'), - (1129, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdKXkBam', '4585962'), - (1129, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdKXkBam', '4596356'), - (1129, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKXkBam', '4598860'), - (1129, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKXkBam', '4598861'), - (1129, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKXkBam', '4602797'), - (1129, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKXkBam', '4637896'), - (1129, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKXkBam', '4642994'), - (1129, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdKXkBam', '4642995'), - (1129, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKXkBam', '4642996'), - (1129, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKXkBam', '4642997'), - (1129, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKXkBam', '4645687'), - (1129, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKXkBam', '4645698'), - (1129, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdKXkBam', '4645704'), - (1129, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKXkBam', '4645705'), - (1129, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKXkBam', '4668385'), - (1129, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKXkBam', '4694407'), - (1129, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKXkBam', '4736497'), - (1129, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKXkBam', '4736499'), - (1129, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKXkBam', '4736500'), - (1129, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKXkBam', '4736503'), - (1129, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKXkBam', '4736504'), - (1129, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKXkBam', '4746789'), - (1129, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'kdKXkBam', '4753929'), - (1129, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKXkBam', '5038850'), - (1129, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKXkBam', '5045826'), - (1129, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKXkBam', '5132533'), - (1129, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdKXkBam', '5186582'), - (1129, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdKXkBam', '5186583'), - (1129, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdKXkBam', '5186585'), - (1129, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdKXkBam', '5190437'), - (1129, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdKXkBam', '5195095'), - (1129, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKXkBam', '5215989'), - (1129, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdKXkBam', '5223686'), - (1129, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdKXkBam', '5247467'), - (1129, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdKXkBam', '5260800'), - (1129, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdKXkBam', '5269930'), - (1129, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdKXkBam', '5271448'), - (1129, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'kdKXkBam', '5271449'), - (1129, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdKXkBam', '5278159'), - (1129, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdKXkBam', '5363695'), - (1129, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdKXkBam', '5365960'), - (1129, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdKXkBam', '5378247'), - (1129, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'kdKXkBam', '5389605'), - (1129, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdKXkBam', '5397265'), - (1129, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdKXkBam', '5404786'), - (1129, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdKXkBam', '5405203'), - (1129, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdKXkBam', '5412550'), - (1129, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdKXkBam', '5415046'), - (1129, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdKXkBam', '5422086'), - (1129, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdKXkBam', '5422406'), - (1129, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdKXkBam', '5424565'), - (1129, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdKXkBam', '5426882'), - (1129, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdKXkBam', '5441125'), - (1129, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdKXkBam', '5441126'), - (1129, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdKXkBam', '5441128'), - (1129, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdKXkBam', '5441131'), - (1129, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdKXkBam', '5441132'), - (1129, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdKXkBam', '5453325'), - (1129, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdKXkBam', '5454516'), - (1129, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdKXkBam', '5454605'), - (1129, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdKXkBam', '5455037'), - (1129, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdKXkBam', '5461278'), - (1129, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdKXkBam', '5469480'), - (1129, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdKXkBam', '5474663'), - (1129, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdKXkBam', '5482022'), - (1129, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdKXkBam', '5488912'), - (1129, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdKXkBam', '5492192'), - (1129, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdKXkBam', '5493139'), - (1129, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdKXkBam', '5493200'), - (1129, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdKXkBam', '5502188'), - (1129, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdKXkBam', '5505059'), - (1129, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdKXkBam', '5509055'), - (1129, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdKXkBam', '5512862'), - (1129, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdKXkBam', '5513985'), - (1129, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdKXkBam', '5519981'), - (1129, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdKXkBam', '5522550'), - (1129, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdKXkBam', '5534683'), - (1129, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdKXkBam', '5537735'), - (1129, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdKXkBam', '5540859'), - (1129, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdKXkBam', '5546619'), - (1129, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdKXkBam', '5557747'), - (1129, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdKXkBam', '5560255'), - (1129, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdKXkBam', '5562906'), - (1129, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdKXkBam', '5600604'), - (1129, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdKXkBam', '5605544'), - (1129, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdKXkBam', '5630960'), - (1129, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdKXkBam', '5630961'), - (1129, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdKXkBam', '5630962'), - (1129, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdKXkBam', '5630966'), - (1129, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdKXkBam', '5630967'), - (1129, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdKXkBam', '5630968'), - (1129, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdKXkBam', '5635406'), - (1129, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdKXkBam', '5638765'), - (1129, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdKXkBam', '5640097'), - (1129, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdKXkBam', '5640843'), - (1129, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdKXkBam', '5641521'), - (1129, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdKXkBam', '5642818'), - (1129, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdKXkBam', '5652395'), - (1129, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdKXkBam', '5670445'), - (1129, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdKXkBam', '5671637'), - (1129, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdKXkBam', '5672329'), - (1129, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdKXkBam', '5674057'), - (1129, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdKXkBam', '5674060'), - (1129, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdKXkBam', '5677461'), - (1129, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdKXkBam', '5698046'), - (1129, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdKXkBam', '5699760'), - (1129, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdKXkBam', '5741601'), - (1129, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdKXkBam', '5763458'), - (1129, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdKXkBam', '5774172'), - (1129, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdKXkBam', '5818247'), - (1129, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdKXkBam', '5819471'), - (1129, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'kdKXkBam', '5827739'), - (1129, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdKXkBam', '5844306'), - (1129, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdKXkBam', '5850159'), - (1129, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdKXkBam', '5858999'), - (1129, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdKXkBam', '5871984'), - (1129, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdKXkBam', '5876354'), - (1129, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdKXkBam', '5880939'), - (1129, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdKXkBam', '5880940'), - (1129, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdKXkBam', '5880942'), - (1129, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdKXkBam', '5880943'), - (1129, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdKXkBam', '5887890'), - (1129, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdKXkBam', '5888598'), - (1129, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdKXkBam', '5893260'), - (1129, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdKXkBam', '5899826'), - (1129, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdKXkBam', '5900199'), - (1129, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdKXkBam', '5900200'), - (1129, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdKXkBam', '5900202'), - (1129, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdKXkBam', '5900203'), - (1129, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdKXkBam', '5901108'), - (1129, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdKXkBam', '5901126'), - (1129, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdKXkBam', '5909655'), - (1129, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdKXkBam', '5910522'), - (1129, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdKXkBam', '5910526'), - (1129, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdKXkBam', '5910528'), - (1129, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdKXkBam', '5916219'), - (1129, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdKXkBam', '5936234'), - (1129, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdKXkBam', '5958351'), - (1129, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdKXkBam', '5959751'), - (1129, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdKXkBam', '5959755'), - (1129, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdKXkBam', '5960055'), - (1129, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdKXkBam', '5961684'), - (1129, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdKXkBam', '5962132'), - (1129, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdKXkBam', '5962133'), - (1129, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdKXkBam', '5962134'), - (1129, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdKXkBam', '5962317'), - (1129, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdKXkBam', '5962318'), - (1129, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdKXkBam', '5965933'), - (1129, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdKXkBam', '5967014'), - (1129, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdKXkBam', '5972815'), - (1129, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdKXkBam', '5974016'), - (1129, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdKXkBam', '5981515'), - (1129, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdKXkBam', '5993516'), - (1129, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdKXkBam', '5998939'), - (1129, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdKXkBam', '6028191'), - (1129, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdKXkBam', '6040066'), - (1129, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdKXkBam', '6042717'), - (1129, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdKXkBam', '6044838'), - (1129, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdKXkBam', '6044839'), - (1129, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKXkBam', '6045684'), - (1129, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdKXkBam', '6050104'), - (1129, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdKXkBam', '6053195'), - (1129, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdKXkBam', '6053198'), - (1129, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdKXkBam', '6056085'), - (1129, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdKXkBam', '6056916'), - (1129, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdKXkBam', '6059290'), - (1129, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdKXkBam', '6060328'), - (1129, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdKXkBam', '6061037'), - (1129, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdKXkBam', '6061039'), - (1129, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdKXkBam', '6067245'), - (1129, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdKXkBam', '6068094'), - (1129, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdKXkBam', '6068252'), - (1129, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdKXkBam', '6068253'), - (1129, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdKXkBam', '6068254'), - (1129, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdKXkBam', '6068280'), - (1129, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdKXkBam', '6069093'), - (1129, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdKXkBam', '6072528'), - (1129, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdKXkBam', '6079840'), - (1129, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdKXkBam', '6083398'), - (1129, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdKXkBam', '6093504'), - (1129, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdKXkBam', '6097414'), - (1129, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdKXkBam', '6097442'), - (1129, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdKXkBam', '6097684'), - (1129, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdKXkBam', '6098762'), - (1129, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdKXkBam', '6101361'), - (1129, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdKXkBam', '6101362'), - (1129, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'kdKXkBam', '6103752'), - (1129, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdKXkBam', '6107314'), - (1129, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdKXkBam', '6120034'), - (1129, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'kdKXkBam', '6136733'), - (1129, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdKXkBam', '6137989'), - (1129, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdKXkBam', '6150864'), - (1129, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdKXkBam', '6155491'), - (1129, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdKXkBam', '6164417'), - (1129, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdKXkBam', '6166388'), - (1129, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdKXkBam', '6176439'), - (1129, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdKXkBam', '6182410'), - (1129, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdKXkBam', '6185812'), - (1129, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdKXkBam', '6187651'), - (1129, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdKXkBam', '6187963'), - (1129, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdKXkBam', '6187964'), - (1129, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdKXkBam', '6187966'), - (1129, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdKXkBam', '6187967'), - (1129, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdKXkBam', '6187969'), - (1129, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdKXkBam', '6334878'), - (1129, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdKXkBam', '6337236'), - (1129, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdKXkBam', '6337970'), - (1129, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdKXkBam', '6338308'), - (1129, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdKXkBam', '6341710'), - (1129, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdKXkBam', '6342044'), - (1129, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdKXkBam', '6342298'), - (1129, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdKXkBam', '6343294'), - (1129, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdKXkBam', '6347034'), - (1129, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdKXkBam', '6347056'), - (1129, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdKXkBam', '6353830'), - (1129, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdKXkBam', '6353831'), - (1129, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdKXkBam', '6357867'), - (1129, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdKXkBam', '6358652'), - (1129, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdKXkBam', '6361709'), - (1129, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdKXkBam', '6361710'), - (1129, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdKXkBam', '6361711'), - (1129, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdKXkBam', '6361712'), - (1129, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdKXkBam', '6361713'), - (1129, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'kdKXkBam', '6382573'), - (1129, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdKXkBam', '6388604'), - (1129, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdKXkBam', '6394629'), - (1129, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdKXkBam', '6394631'), - (1129, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdKXkBam', '6440863'), - (1129, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdKXkBam', '6445440'), - (1129, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdKXkBam', '6453951'), - (1129, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdKXkBam', '6461696'), - (1129, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdKXkBam', '6462129'), - (1129, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdKXkBam', '6463218'), - (1129, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdKXkBam', '6472181'), - (1129, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdKXkBam', '6482693'), - (1129, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdKXkBam', '6484200'), - (1129, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdKXkBam', '6484680'), - (1129, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdKXkBam', '6507741'), - (1129, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdKXkBam', '6514659'), - (1129, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdKXkBam', '6514660'), - (1129, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdKXkBam', '6519103'), - (1129, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdKXkBam', '6535681'), - (1129, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdKXkBam', '6584747'), - (1129, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdKXkBam', '6587097'), - (1129, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdKXkBam', '6609022'), - (1129, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'kdKXkBam', '6632757'), - (1129, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdKXkBam', '6644187'), - (1129, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdKXkBam', '6648951'), - (1129, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdKXkBam', '6648952'), - (1129, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdKXkBam', '6655401'), - (1129, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdKXkBam', '6661585'), - (1129, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdKXkBam', '6661588'), - (1129, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdKXkBam', '6661589'), - (1129, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdKXkBam', '6699906'), - (1129, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdKXkBam', '6699913'), - (1129, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdKXkBam', '6701109'), - (1129, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdKXkBam', '6705219'), - (1129, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdKXkBam', '6710153'), - (1129, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdKXkBam', '6711552'), - (1129, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdKXkBam', '6711553'), - (1129, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdKXkBam', '6722688'), - (1129, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdKXkBam', '6730620'), - (1129, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdKXkBam', '6740364'), - (1129, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdKXkBam', '6743829'), - (1129, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdKXkBam', '7030380'), - (1129, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'kdKXkBam', '7033677'), - (1129, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdKXkBam', '7044715'), - (1129, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdKXkBam', '7050318'), - (1129, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdKXkBam', '7050319'), - (1129, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdKXkBam', '7050322'), - (1129, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdKXkBam', '7057804'), - (1129, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdKXkBam', '7072824'), - (1129, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdKXkBam', '7074348'), - (1129, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdKXkBam', '7074364'), - (1129, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdKXkBam', '7089267'), - (1129, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdKXkBam', '7098747'), - (1129, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdKXkBam', '7113468'), - (1129, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdKXkBam', '7114856'), - (1129, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdKXkBam', '7114951'), - (1129, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdKXkBam', '7114955'), - (1129, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdKXkBam', '7114956'), - (1129, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdKXkBam', '7114957'), - (1129, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdKXkBam', '7159484'), - (1129, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdKXkBam', '7178446'), - (1129, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdKXkBam', '7220467'), - (1129, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdKXkBam', '7240354'), - (1129, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdKXkBam', '7251633'), - (1129, 2678, 'attending', '2024-06-15 22:29:48', '2025-12-17 19:46:28', 'kdKXkBam', '7319489'), - (1129, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdKXkBam', '7324073'), - (1129, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdKXkBam', '7324074'), - (1129, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdKXkBam', '7324075'), - (1129, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdKXkBam', '7324078'), - (1129, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdKXkBam', '7324082'), - (1129, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdKXkBam', '7331457'), - (1129, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdKXkBam', '7363643'), - (1129, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdKXkBam', '7368606'), - (1129, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdKXkBam', '7397462'), - (1129, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdKXkBam', '7424275'), - (1129, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdKXkBam', '7432751'), - (1129, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdKXkBam', '7432752'), - (1129, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdKXkBam', '7432753'), - (1129, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdKXkBam', '7432754'), - (1129, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdKXkBam', '7432755'), - (1129, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdKXkBam', '7432756'), - (1129, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdKXkBam', '7432758'), - (1129, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdKXkBam', '7432759'), - (1129, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdKXkBam', '7433834'), - (1129, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'kdKXkBam', '7470197'), - (1129, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdKXkBam', '7685613'), - (1129, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdKXkBam', '7688194'), - (1129, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdKXkBam', '7688196'), - (1129, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdKXkBam', '7688289'), - (1129, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdKXkBam', '7692763'), - (1129, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdKXkBam', '7697552'), - (1129, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdKXkBam', '7699878'), - (1129, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdKXkBam', '7704043'), - (1129, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdKXkBam', '7712467'), - (1129, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdKXkBam', '7713585'), - (1129, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdKXkBam', '7713586'), - (1129, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdKXkBam', '7738518'), - (1129, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdKXkBam', '7750636'), - (1129, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdKXkBam', '7796540'), - (1129, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdKXkBam', '7796541'), - (1129, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdKXkBam', '7796542'), - (1129, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdKXkBam', '7825913'), - (1129, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdKXkBam', '7826209'), - (1129, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdKXkBam', '7834742'), - (1129, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'kdKXkBam', '7842108'), - (1129, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdKXkBam', '7842902'), - (1129, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdKXkBam', '7842903'), - (1129, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdKXkBam', '7842904'), - (1129, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdKXkBam', '7842905'), - (1129, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdKXkBam', '7855719'), - (1129, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdKXkBam', '7860683'), - (1129, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdKXkBam', '7860684'), - (1129, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdKXkBam', '7866095'), - (1129, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdKXkBam', '7869170'), - (1129, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdKXkBam', '7869188'), - (1129, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdKXkBam', '7869201'), - (1129, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdKXkBam', '7877465'), - (1129, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdKXkBam', '7888250'), - (1129, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdKXkBam', '7904777'), - (1129, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdKXkBam', '8349164'), - (1129, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdKXkBam', '8349545'), - (1129, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdKXkBam', '8368028'), - (1129, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdKXkBam', '8368029'), - (1129, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdKXkBam', '8388462'), - (1129, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdKXkBam', '8400273'), - (1129, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdKXkBam', '8400275'), - (1129, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'kdKXkBam', '8400276'), - (1129, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdKXkBam', '8404977'), - (1129, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdKXkBam', '8430783'), - (1129, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdKXkBam', '8430784'), - (1129, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdKXkBam', '8430799'), - (1129, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdKXkBam', '8430800'), - (1129, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdKXkBam', '8430801'), - (1129, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdKXkBam', '8438709'), - (1129, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdKXkBam', '8457738'), - (1129, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdKXkBam', '8459566'), - (1129, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdKXkBam', '8459567'), - (1129, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdKXkBam', '8461032'), - (1129, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdKXkBam', '8477877'), - (1129, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdKXkBam', '8485688'), - (1129, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdKXkBam', '8490587'), - (1129, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdKXkBam', '8493552'), - (1129, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdKXkBam', '8493553'), - (1129, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdKXkBam', '8493554'), - (1129, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdKXkBam', '8493555'), - (1129, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdKXkBam', '8493556'), - (1129, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdKXkBam', '8493557'), - (1129, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdKXkBam', '8493558'), - (1129, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdKXkBam', '8493559'), - (1129, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdKXkBam', '8493560'), - (1129, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdKXkBam', '8493561'), - (1129, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdKXkBam', '8493572'), - (1129, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdKXkBam', '8540725'), - (1129, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdKXkBam', '8555421'), - (1130, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4ZknkYGd', '6045684'), - (1131, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'R40q8LQd', '3149491'), - (1131, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'R40q8LQd', '3149493'), - (1131, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'R40q8LQd', '3236448'), - (1131, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'R40q8LQd', '3236450'), - (1131, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40q8LQd', '3974109'), - (1131, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40q8LQd', '3975312'), - (1131, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40q8LQd', '4014338'), - (1131, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'R40q8LQd', '4021848'), - (1131, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40q8LQd', '4136744'), - (1131, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40q8LQd', '4136937'), - (1131, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40q8LQd', '4136938'), - (1131, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40q8LQd', '4136947'), - (1131, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40q8LQd', '4225444'), - (1131, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'R40q8LQd', '4229417'), - (1131, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'R40q8LQd', '4229418'), - (1131, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40q8LQd', '4239259'), - (1131, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40q8LQd', '4250163'), - (1131, 951, 'attending', '2021-08-29 20:25:14', '2025-12-17 19:47:43', 'R40q8LQd', '4315731'), - (1131, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'R40q8LQd', '4356801'), - (1131, 975, 'not_attending', '2021-08-27 14:38:18', '2025-12-17 19:47:42', 'R40q8LQd', '4367341'), - (1131, 981, 'not_attending', '2021-08-27 14:42:28', '2025-12-17 19:47:42', 'R40q8LQd', '4387305'), - (1131, 987, 'maybe', '2021-08-31 23:24:56', '2025-12-17 19:47:43', 'R40q8LQd', '4402634'), - (1131, 988, 'not_attending', '2021-08-27 22:59:26', '2025-12-17 19:47:42', 'R40q8LQd', '4402823'), - (1131, 990, 'attending', '2021-09-04 20:57:52', '2025-12-17 19:47:43', 'R40q8LQd', '4420735'), - (1131, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'R40q8LQd', '4420738'), - (1131, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'R40q8LQd', '4420739'), - (1131, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'R40q8LQd', '4420741'), - (1131, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'R40q8LQd', '4420744'), - (1131, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'R40q8LQd', '4420747'), - (1131, 1002, 'attending', '2021-08-30 18:42:40', '2025-12-17 19:47:43', 'R40q8LQd', '4424932'), - (1131, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'R40q8LQd', '4461883'), - (1131, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'R40q8LQd', '4508342'), - (1131, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'R40q8LQd', '4568602'), - (1131, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40q8LQd', '6045684'), - (1132, 1241, 'attending', '2022-03-23 17:48:24', '2025-12-17 19:47:25', 'dx61xDGA', '5052240'), - (1132, 1242, 'maybe', '2022-03-30 22:11:58', '2025-12-17 19:47:25', 'dx61xDGA', '5052241'), - (1132, 1264, 'attending', '2022-03-22 14:45:50', '2025-12-17 19:47:25', 'dx61xDGA', '5160281'), - (1132, 1274, 'attending', '2022-04-02 19:38:13', '2025-12-17 19:47:26', 'dx61xDGA', '5186585'), - (1132, 1276, 'maybe', '2022-03-27 19:39:09', '2025-12-17 19:47:25', 'dx61xDGA', '5186820'), - (1132, 1281, 'not_attending', '2022-04-06 14:19:00', '2025-12-17 19:47:27', 'dx61xDGA', '5190437'), - (1132, 1284, 'not_attending', '2022-04-16 22:21:55', '2025-12-17 19:47:27', 'dx61xDGA', '5195095'), - (1132, 1288, 'not_attending', '2022-03-28 14:36:43', '2025-12-17 19:47:25', 'dx61xDGA', '5199460'), - (1132, 1289, 'attending', '2022-03-23 17:38:11', '2025-12-17 19:47:25', 'dx61xDGA', '5200190'), - (1132, 1290, 'attending', '2022-03-23 17:48:12', '2025-12-17 19:47:25', 'dx61xDGA', '5200196'), - (1132, 1294, 'maybe', '2022-04-03 01:40:13', '2025-12-17 19:47:26', 'dx61xDGA', '5214686'), - (1132, 1295, 'attending', '2022-03-28 14:29:41', '2025-12-17 19:47:25', 'dx61xDGA', '5215609'), - (1132, 1297, 'maybe', '2022-03-29 14:48:42', '2025-12-17 19:47:26', 'dx61xDGA', '5215989'), - (1132, 1300, 'attending', '2022-03-30 12:52:27', '2025-12-17 19:47:25', 'dx61xDGA', '5217936'), - (1132, 1304, 'not_attending', '2022-04-06 14:18:52', '2025-12-17 19:47:26', 'dx61xDGA', '5223468'), - (1132, 1307, 'attending', '2022-04-04 13:01:17', '2025-12-17 19:47:26', 'dx61xDGA', '5223686'), - (1132, 1308, 'not_attending', '2022-04-13 15:31:50', '2025-12-17 19:47:27', 'dx61xDGA', '5226703'), - (1132, 1309, 'not_attending', '2022-04-06 14:19:23', '2025-12-17 19:47:26', 'dx61xDGA', '5227432'), - (1132, 1316, 'not_attending', '2022-04-14 14:12:03', '2025-12-17 19:47:27', 'dx61xDGA', '5237536'), - (1132, 1318, 'attending', '2022-04-14 14:31:33', '2025-12-17 19:47:27', 'dx61xDGA', '5238343'), - (1132, 1319, 'attending', '2022-04-16 22:12:22', '2025-12-17 19:47:27', 'dx61xDGA', '5238353'), - (1132, 1320, 'not_attending', '2022-04-17 15:03:22', '2025-12-17 19:47:27', 'dx61xDGA', '5238354'), - (1132, 1322, 'attending', '2022-04-16 00:54:49', '2025-12-17 19:47:27', 'dx61xDGA', '5238356'), - (1132, 1323, 'not_attending', '2022-04-25 12:15:29', '2025-12-17 19:47:27', 'dx61xDGA', '5238357'), - (1132, 1324, 'not_attending', '2022-04-24 13:07:48', '2025-12-17 19:47:27', 'dx61xDGA', '5238360'), - (1132, 1327, 'attending', '2022-04-19 12:24:17', '2025-12-17 19:47:27', 'dx61xDGA', '5238445'), - (1132, 1330, 'attending', '2022-04-15 00:39:57', '2025-12-17 19:47:27', 'dx61xDGA', '5242155'), - (1132, 1331, 'attending', '2022-04-15 00:39:59', '2025-12-17 19:47:27', 'dx61xDGA', '5242156'), - (1132, 1332, 'attending', '2022-04-13 20:38:47', '2025-12-17 19:47:27', 'dx61xDGA', '5243274'), - (1132, 1337, 'attending', '2022-04-20 14:12:00', '2025-12-17 19:47:27', 'dx61xDGA', '5245036'), - (1132, 1340, 'not_attending', '2022-04-25 12:15:37', '2025-12-17 19:47:27', 'dx61xDGA', '5245754'), - (1132, 1341, 'not_attending', '2022-04-25 02:55:29', '2025-12-17 19:47:28', 'dx61xDGA', '5245755'), - (1132, 1346, 'attending', '2022-04-20 23:06:25', '2025-12-17 19:47:27', 'dx61xDGA', '5247467'), - (1132, 1348, 'attending', '2022-04-18 15:02:58', '2025-12-17 19:47:28', 'dx61xDGA', '5247605'), - (1132, 1351, 'not_attending', '2022-05-02 13:59:53', '2025-12-17 19:47:28', 'dx61xDGA', '5251561'), - (1132, 1354, 'not_attending', '2022-04-23 20:41:18', '2025-12-17 19:47:27', 'dx61xDGA', '5252569'), - (1132, 1359, 'not_attending', '2022-05-02 14:00:22', '2025-12-17 19:47:28', 'dx61xDGA', '5258360'), - (1132, 1362, 'attending', '2022-04-25 19:48:41', '2025-12-17 19:47:28', 'dx61xDGA', '5260800'), - (1132, 1364, 'attending', '2022-04-28 15:17:11', '2025-12-17 19:47:28', 'dx61xDGA', '5261598'), - (1132, 1366, 'attending', '2022-04-26 20:53:11', '2025-12-17 19:47:27', 'dx61xDGA', '5262344'), - (1132, 1367, 'attending', '2022-04-26 20:53:13', '2025-12-17 19:47:28', 'dx61xDGA', '5262345'), - (1132, 1369, 'not_attending', '2022-05-03 23:18:10', '2025-12-17 19:47:28', 'dx61xDGA', '5262809'), - (1132, 1372, 'attending', '2022-05-03 12:58:54', '2025-12-17 19:47:28', 'dx61xDGA', '5264352'), - (1132, 1374, 'attending', '2022-04-30 21:44:11', '2025-12-17 19:47:28', 'dx61xDGA', '5269930'), - (1132, 1376, 'not_attending', '2022-05-12 20:27:41', '2025-12-17 19:47:28', 'dx61xDGA', '5271446'), - (1132, 1377, 'not_attending', '2022-05-12 20:27:49', '2025-12-17 19:47:28', 'dx61xDGA', '5271447'), - (1132, 1378, 'not_attending', '2022-05-12 20:28:01', '2025-12-17 19:47:29', 'dx61xDGA', '5271448'), - (1132, 1379, 'not_attending', '2022-05-21 21:52:28', '2025-12-17 19:47:30', 'dx61xDGA', '5271449'), - (1132, 1380, 'not_attending', '2022-05-27 17:53:09', '2025-12-17 19:47:30', 'dx61xDGA', '5271450'), - (1132, 1383, 'not_attending', '2022-05-12 20:27:48', '2025-12-17 19:47:28', 'dx61xDGA', '5276469'), - (1132, 1385, 'not_attending', '2022-05-11 13:26:56', '2025-12-17 19:47:28', 'dx61xDGA', '5277822'), - (1132, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx61xDGA', '5278159'), - (1132, 1390, 'not_attending', '2022-05-12 20:28:05', '2025-12-17 19:47:28', 'dx61xDGA', '5279509'), - (1132, 1392, 'attending', '2022-05-10 13:31:15', '2025-12-17 19:47:28', 'dx61xDGA', '5279532'), - (1132, 1403, 'maybe', '2022-05-17 12:23:17', '2025-12-17 19:47:29', 'dx61xDGA', '5288052'), - (1132, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dx61xDGA', '5363695'), - (1132, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dx61xDGA', '5365960'), - (1132, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dx61xDGA', '5368973'), - (1132, 1424, 'attending', '2022-05-24 13:09:46', '2025-12-17 19:47:30', 'dx61xDGA', '5375772'), - (1132, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dx61xDGA', '5378247'), - (1132, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dx61xDGA', '5389605'), - (1132, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dx61xDGA', '5397265'), - (1132, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dx61xDGA', '5403967'), - (1132, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dx61xDGA', '5404786'), - (1132, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dx61xDGA', '5405203'), - (1132, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dx61xDGA', '5408794'), - (1132, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dx61xDGA', '5411699'), - (1132, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dx61xDGA', '5412550'), - (1132, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dx61xDGA', '5415046'), - (1132, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dx61xDGA', '5422086'), - (1132, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dx61xDGA', '5422406'), - (1132, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dx61xDGA', '5424565'), - (1132, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dx61xDGA', '5426882'), - (1132, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dx61xDGA', '5427083'), - (1132, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dx61xDGA', '5441125'), - (1132, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dx61xDGA', '5441126'), - (1132, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dx61xDGA', '5441128'), - (1132, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dx61xDGA', '5446643'), - (1132, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dx61xDGA', '5453325'), - (1132, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dx61xDGA', '5454516'), - (1132, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dx61xDGA', '5454605'), - (1132, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dx61xDGA', '5455037'), - (1132, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dx61xDGA', '5461278'), - (1132, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dx61xDGA', '5469480'), - (1132, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dx61xDGA', '5471073'), - (1132, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dx61xDGA', '5474663'), - (1132, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dx61xDGA', '5482022'), - (1132, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dx61xDGA', '5482793'), - (1132, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dx61xDGA', '5488912'), - (1132, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dx61xDGA', '5492192'), - (1132, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dx61xDGA', '5493139'), - (1132, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dx61xDGA', '5493200'), - (1132, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dx61xDGA', '5502188'), - (1132, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dx61xDGA', '5512862'), - (1132, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dx61xDGA', '5513985'), - (1132, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx61xDGA', '6045684'), - (1133, 857, 'attending', '2021-11-16 23:38:16', '2025-12-17 19:47:37', '4oMDG0nm', '4015731'), - (1133, 993, 'attending', '2021-09-24 22:23:11', '2025-12-17 19:47:34', '4oMDG0nm', '4420741'), - (1133, 994, 'attending', '2021-10-02 18:52:29', '2025-12-17 19:47:34', '4oMDG0nm', '4420742'), - (1133, 995, 'attending', '2021-09-26 13:12:25', '2025-12-17 19:47:34', '4oMDG0nm', '4420744'), - (1133, 996, 'attending', '2021-09-26 14:37:05', '2025-12-17 19:47:35', '4oMDG0nm', '4420747'), - (1133, 997, 'attending', '2021-09-26 14:37:08', '2025-12-17 19:47:35', '4oMDG0nm', '4420748'), - (1133, 998, 'attending', '2021-09-26 14:37:10', '2025-12-17 19:47:36', '4oMDG0nm', '4420749'), - (1133, 1006, 'not_attending', '2021-09-24 19:35:45', '2025-12-17 19:47:34', '4oMDG0nm', '4438808'), - (1133, 1007, 'attending', '2021-09-29 15:35:40', '2025-12-17 19:47:34', '4oMDG0nm', '4438809'), - (1133, 1009, 'not_attending', '2021-10-07 13:08:33', '2025-12-17 19:47:34', '4oMDG0nm', '4438811'), - (1133, 1040, 'attending', '2021-12-11 06:46:32', '2025-12-17 19:47:38', '4oMDG0nm', '4496605'), - (1133, 1049, 'attending', '2022-01-22 22:47:09', '2025-12-17 19:47:32', '4oMDG0nm', '4496614'), - (1133, 1050, 'attending', '2022-01-22 22:47:09', '2025-12-17 19:47:32', '4oMDG0nm', '4496615'), - (1133, 1051, 'attending', '2022-02-01 23:06:08', '2025-12-17 19:47:32', '4oMDG0nm', '4496616'), - (1133, 1052, 'attending', '2022-01-14 18:25:50', '2025-12-17 19:47:31', '4oMDG0nm', '4496617'), - (1133, 1055, 'attending', '2021-12-18 16:17:42', '2025-12-17 19:47:31', '4oMDG0nm', '4496621'), - (1133, 1056, 'attending', '2022-01-03 20:33:58', '2025-12-17 19:47:31', '4oMDG0nm', '4496622'), - (1133, 1059, 'attending', '2022-03-06 16:24:27', '2025-12-17 19:47:33', '4oMDG0nm', '4496626'), - (1133, 1061, 'attending', '2022-02-10 06:44:12', '2025-12-17 19:47:32', '4oMDG0nm', '4496628'), - (1133, 1062, 'attending', '2022-02-27 21:30:56', '2025-12-17 19:47:33', '4oMDG0nm', '4496629'), - (1133, 1068, 'attending', '2021-09-26 20:34:38', '2025-12-17 19:47:34', '4oMDG0nm', '4511471'), - (1133, 1069, 'attending', '2021-09-24 19:35:33', '2025-12-17 19:47:34', '4oMDG0nm', '4512090'), - (1133, 1070, 'attending', '2021-09-26 13:12:01', '2025-12-17 19:47:34', '4oMDG0nm', '4512562'), - (1133, 1071, 'attending', '2021-09-26 22:27:29', '2025-12-17 19:47:34', '4oMDG0nm', '4516078'), - (1133, 1072, 'attending', '2021-10-03 18:01:28', '2025-12-17 19:47:34', '4oMDG0nm', '4516287'), - (1133, 1074, 'attending', '2021-09-29 20:41:45', '2025-12-17 19:47:34', '4oMDG0nm', '4528953'), - (1133, 1075, 'attending', '2021-10-06 04:02:29', '2025-12-17 19:47:34', '4oMDG0nm', '4536351'), - (1133, 1077, 'attending', '2021-10-04 21:50:13', '2025-12-17 19:47:34', '4oMDG0nm', '4540903'), - (1133, 1078, 'attending', '2021-10-04 21:50:05', '2025-12-17 19:47:34', '4oMDG0nm', '4541281'), - (1133, 1079, 'attending', '2021-10-20 02:30:14', '2025-12-17 19:47:35', '4oMDG0nm', '4563823'), - (1133, 1082, 'attending', '2021-10-11 22:53:40', '2025-12-17 19:47:35', '4oMDG0nm', '4566762'), - (1133, 1083, 'not_attending', '2021-10-14 17:45:31', '2025-12-17 19:47:34', '4oMDG0nm', '4566768'), - (1133, 1085, 'attending', '2021-12-18 23:47:02', '2025-12-17 19:47:31', '4oMDG0nm', '4568542'), - (1133, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4oMDG0nm', '4568602'), - (1133, 1087, 'not_attending', '2021-10-15 14:03:18', '2025-12-17 19:47:35', '4oMDG0nm', '4572153'), - (1133, 1088, 'attending', '2021-10-22 02:47:44', '2025-12-17 19:47:35', '4oMDG0nm', '4574382'), - (1133, 1089, 'not_attending', '2021-10-17 22:55:40', '2025-12-17 19:47:35', '4oMDG0nm', '4574712'), - (1133, 1090, 'attending', '2021-10-16 16:34:22', '2025-12-17 19:47:35', '4oMDG0nm', '4574713'), - (1133, 1091, 'attending', '2021-10-17 22:55:41', '2025-12-17 19:47:35', '4oMDG0nm', '4575829'), - (1133, 1092, 'attending', '2021-10-19 22:26:14', '2025-12-17 19:47:35', '4oMDG0nm', '4582837'), - (1133, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMDG0nm', '4585962'), - (1133, 1094, 'attending', '2021-10-21 03:39:29', '2025-12-17 19:47:36', '4oMDG0nm', '4587337'), - (1133, 1095, 'attending', '2021-10-27 01:05:52', '2025-12-17 19:47:35', '4oMDG0nm', '4596356'), - (1133, 1096, 'attending', '2021-10-27 01:05:49', '2025-12-17 19:47:36', '4oMDG0nm', '4596453'), - (1133, 1097, 'attending', '2021-10-28 02:33:06', '2025-12-17 19:47:36', '4oMDG0nm', '4598860'), - (1133, 1098, 'attending', '2021-10-28 02:34:14', '2025-12-17 19:47:36', '4oMDG0nm', '4598861'), - (1133, 1099, 'attending', '2021-10-31 04:30:59', '2025-12-17 19:47:36', '4oMDG0nm', '4602797'), - (1133, 1101, 'attending', '2021-11-03 05:34:44', '2025-12-17 19:47:36', '4oMDG0nm', '4607339'), - (1133, 1103, 'attending', '2021-11-07 04:02:07', '2025-12-17 19:47:36', '4oMDG0nm', '4616350'), - (1133, 1106, 'not_attending', '2021-11-12 22:28:48', '2025-12-17 19:47:36', '4oMDG0nm', '4620452'), - (1133, 1108, 'attending', '2021-11-11 15:28:06', '2025-12-17 19:47:37', '4oMDG0nm', '4632276'), - (1133, 1109, 'not_attending', '2021-11-20 23:09:49', '2025-12-17 19:47:37', '4oMDG0nm', '4635221'), - (1133, 1111, 'not_attending', '2021-11-20 23:09:48', '2025-12-17 19:47:31', '4oMDG0nm', '4635279'), - (1133, 1112, 'not_attending', '2021-11-27 21:59:39', '2025-12-17 19:47:37', '4oMDG0nm', '4635420'), - (1133, 1114, 'attending', '2021-11-11 16:17:23', '2025-12-17 19:47:36', '4oMDG0nm', '4637896'), - (1133, 1115, 'attending', '2021-11-12 00:45:21', '2025-12-17 19:47:37', '4oMDG0nm', '4638673'), - (1133, 1116, 'attending', '2021-11-13 00:49:05', '2025-12-17 19:47:37', '4oMDG0nm', '4642994'), - (1133, 1117, 'not_attending', '2021-12-08 17:43:17', '2025-12-17 19:47:38', '4oMDG0nm', '4642995'), - (1133, 1118, 'attending', '2021-11-13 00:49:08', '2025-12-17 19:47:38', '4oMDG0nm', '4642996'), - (1133, 1119, 'attending', '2021-11-13 00:49:02', '2025-12-17 19:47:31', '4oMDG0nm', '4642997'), - (1133, 1124, 'attending', '2021-12-11 19:04:33', '2025-12-17 19:47:38', '4oMDG0nm', '4644025'), - (1133, 1125, 'attending', '2021-12-20 23:29:14', '2025-12-17 19:47:31', '4oMDG0nm', '4644027'), - (1133, 1126, 'attending', '2021-11-16 23:22:43', '2025-12-17 19:47:38', '4oMDG0nm', '4645687'), - (1133, 1127, 'attending', '2021-12-09 20:29:14', '2025-12-17 19:47:38', '4oMDG0nm', '4645698'), - (1133, 1128, 'attending', '2021-11-16 23:22:21', '2025-12-17 19:47:37', '4oMDG0nm', '4645704'), - (1133, 1129, 'not_attending', '2021-11-29 22:07:56', '2025-12-17 19:47:37', '4oMDG0nm', '4645705'), - (1133, 1130, 'not_attending', '2021-12-03 04:56:46', '2025-12-17 19:47:37', '4oMDG0nm', '4658824'), - (1133, 1131, 'attending', '2021-12-13 01:04:49', '2025-12-17 19:47:31', '4oMDG0nm', '4658825'), - (1133, 1132, 'attending', '2021-11-21 19:49:00', '2025-12-17 19:47:37', '4oMDG0nm', '4660657'), - (1133, 1133, 'attending', '2021-11-22 00:37:16', '2025-12-17 19:47:37', '4oMDG0nm', '4661671'), - (1133, 1134, 'attending', '2021-11-24 15:02:11', '2025-12-17 19:47:37', '4oMDG0nm', '4668385'), - (1133, 1135, 'attending', '2021-11-25 04:19:56', '2025-12-17 19:47:37', '4oMDG0nm', '4670469'), - (1133, 1136, 'attending', '2021-11-25 05:05:24', '2025-12-17 19:47:37', '4oMDG0nm', '4670473'), - (1133, 1139, 'not_attending', '2021-11-30 03:35:43', '2025-12-17 19:47:37', '4oMDG0nm', '4675604'), - (1133, 1141, 'attending', '2021-12-01 00:13:56', '2025-12-17 19:47:37', '4oMDG0nm', '4680695'), - (1133, 1142, 'attending', '2021-12-06 20:48:31', '2025-12-17 19:47:37', '4oMDG0nm', '4681923'), - (1133, 1143, 'attending', '2021-12-01 21:48:02', '2025-12-17 19:47:37', '4oMDG0nm', '4683667'), - (1133, 1145, 'attending', '2021-12-06 15:47:51', '2025-12-17 19:47:38', '4oMDG0nm', '4691157'), - (1133, 1147, 'not_attending', '2021-12-09 01:47:31', '2025-12-17 19:47:38', '4oMDG0nm', '4692842'), - (1133, 1148, 'attending', '2021-12-17 23:55:46', '2025-12-17 19:47:31', '4oMDG0nm', '4692843'), - (1133, 1149, 'not_attending', '2021-12-08 05:22:13', '2025-12-17 19:47:38', '4oMDG0nm', '4694407'), - (1133, 1150, 'attending', '2021-12-13 00:52:01', '2025-12-17 19:47:38', '4oMDG0nm', '4706262'), - (1133, 1151, 'not_attending', '2022-01-05 07:25:47', '2025-12-17 19:47:31', '4oMDG0nm', '4708704'), - (1133, 1152, 'not_attending', '2022-01-12 20:28:03', '2025-12-17 19:47:31', '4oMDG0nm', '4708705'), - (1133, 1153, 'not_attending', '2022-01-19 23:33:08', '2025-12-17 19:47:32', '4oMDG0nm', '4708707'), - (1133, 1159, 'attending', '2021-12-21 00:13:31', '2025-12-17 19:47:31', '4oMDG0nm', '4717532'), - (1133, 1162, 'attending', '2022-01-03 20:33:47', '2025-12-17 19:47:31', '4oMDG0nm', '4718771'), - (1133, 1171, 'not_attending', '2022-01-04 17:12:54', '2025-12-17 19:47:31', '4oMDG0nm', '4733292'), - (1133, 1173, 'attending', '2022-01-03 20:33:52', '2025-12-17 19:47:31', '4oMDG0nm', '4736495'), - (1133, 1174, 'attending', '2022-01-09 20:22:35', '2025-12-17 19:47:31', '4oMDG0nm', '4736496'), - (1133, 1175, 'attending', '2022-01-22 02:32:18', '2025-12-17 19:47:32', '4oMDG0nm', '4736497'), - (1133, 1176, 'attending', '2022-02-05 00:51:54', '2025-12-17 19:47:32', '4oMDG0nm', '4736498'), - (1133, 1177, 'attending', '2022-02-09 20:12:14', '2025-12-17 19:47:32', '4oMDG0nm', '4736499'), - (1133, 1178, 'attending', '2022-01-22 22:47:09', '2025-12-17 19:47:32', '4oMDG0nm', '4736500'), - (1133, 1179, 'attending', '2022-02-13 05:31:57', '2025-12-17 19:47:32', '4oMDG0nm', '4736501'), - (1133, 1180, 'not_attending', '2022-02-27 00:37:50', '2025-12-17 19:47:33', '4oMDG0nm', '4736502'), - (1133, 1181, 'attending', '2022-02-27 21:30:53', '2025-12-17 19:47:33', '4oMDG0nm', '4736503'), - (1133, 1182, 'not_attending', '2022-03-12 18:26:35', '2025-12-17 19:47:33', '4oMDG0nm', '4736504'), - (1133, 1184, 'not_attending', '2022-01-12 20:28:10', '2025-12-17 19:47:31', '4oMDG0nm', '4742350'), - (1133, 1185, 'not_attending', '2022-01-12 20:28:08', '2025-12-17 19:47:31', '4oMDG0nm', '4746789'), - (1133, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMDG0nm', '4753929'), - (1133, 1203, 'attending', '2022-01-22 19:25:12', '2025-12-17 19:47:32', '4oMDG0nm', '4773535'), - (1133, 1204, 'attending', '2022-02-13 05:39:28', '2025-12-17 19:47:32', '4oMDG0nm', '4773576'), - (1133, 1205, 'attending', '2022-03-06 16:24:40', '2025-12-17 19:47:33', '4oMDG0nm', '4773577'), - (1133, 1206, 'attending', '2022-03-23 15:15:58', '2025-12-17 19:47:27', '4oMDG0nm', '4773578'), - (1133, 1207, 'attending', '2022-05-04 16:11:20', '2025-12-17 19:47:28', '4oMDG0nm', '4773579'), - (1133, 1223, 'attending', '2022-01-30 04:52:31', '2025-12-17 19:47:32', '4oMDG0nm', '5015635'), - (1133, 1225, 'attending', '2022-01-31 23:48:57', '2025-12-17 19:47:32', '4oMDG0nm', '5019063'), - (1133, 1231, 'not_attending', '2022-02-24 19:48:29', '2025-12-17 19:47:33', '4oMDG0nm', '5037637'), - (1133, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMDG0nm', '5038850'), - (1133, 1236, 'not_attending', '2022-02-17 17:30:23', '2025-12-17 19:47:32', '4oMDG0nm', '5045826'), - (1133, 1254, 'attending', '2022-02-28 22:26:31', '2025-12-17 19:47:33', '4oMDG0nm', '5129129'), - (1133, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMDG0nm', '5132533'), - (1133, 1272, 'attending', '2022-03-15 20:49:23', '2025-12-17 19:47:25', '4oMDG0nm', '5186582'), - (1133, 1273, 'attending', '2022-03-15 20:49:26', '2025-12-17 19:47:25', '4oMDG0nm', '5186583'), - (1133, 1274, 'attending', '2022-03-15 20:49:31', '2025-12-17 19:47:26', '4oMDG0nm', '5186585'), - (1133, 1281, 'attending', '2022-03-17 16:00:14', '2025-12-17 19:47:27', '4oMDG0nm', '5190437'), - (1133, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4oMDG0nm', '5195095'), - (1133, 1293, 'attending', '2022-03-27 20:17:29', '2025-12-17 19:47:27', '4oMDG0nm', '5214641'), - (1133, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', '4oMDG0nm', '5215989'), - (1133, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4oMDG0nm', '5223686'), - (1133, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4oMDG0nm', '5227432'), - (1133, 1310, 'attending', '2022-04-08 01:00:22', '2025-12-17 19:47:27', '4oMDG0nm', '5231071'), - (1133, 1311, 'attending', '2022-04-08 02:44:30', '2025-12-17 19:47:27', '4oMDG0nm', '5231430'), - (1133, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', '4oMDG0nm', '5231461'), - (1133, 1316, 'not_attending', '2022-04-12 13:53:21', '2025-12-17 19:47:27', '4oMDG0nm', '5237536'), - (1133, 1346, 'attending', '2022-04-17 21:44:26', '2025-12-17 19:47:27', '4oMDG0nm', '5247467'), - (1133, 1348, 'attending', '2022-04-18 00:19:21', '2025-12-17 19:47:28', '4oMDG0nm', '5247605'), - (1133, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', '4oMDG0nm', '5249631'), - (1133, 1362, 'attending', '2022-04-25 17:57:05', '2025-12-17 19:47:28', '4oMDG0nm', '5260800'), - (1133, 1374, 'attending', '2022-04-30 19:52:14', '2025-12-17 19:47:28', '4oMDG0nm', '5269930'), - (1133, 1378, 'not_attending', '2022-05-14 22:54:57', '2025-12-17 19:47:29', '4oMDG0nm', '5271448'), - (1133, 1379, 'attending', '2022-05-04 16:11:12', '2025-12-17 19:47:29', '4oMDG0nm', '5271449'), - (1133, 1380, 'attending', '2022-05-27 15:58:23', '2025-12-17 19:47:30', '4oMDG0nm', '5271450'), - (1133, 1383, 'not_attending', '2022-05-13 22:45:33', '2025-12-17 19:47:28', '4oMDG0nm', '5276469'), - (1133, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4oMDG0nm', '5278159'), - (1133, 1395, 'attending', '2022-05-07 16:28:52', '2025-12-17 19:47:28', '4oMDG0nm', '5281102'), - (1133, 1396, 'attending', '2022-05-07 16:28:53', '2025-12-17 19:47:28', '4oMDG0nm', '5281103'), - (1133, 1397, 'attending', '2022-05-07 16:28:56', '2025-12-17 19:47:29', '4oMDG0nm', '5281104'), - (1133, 1407, 'attending', '2022-06-02 18:44:11', '2025-12-17 19:47:30', '4oMDG0nm', '5363695'), - (1133, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMDG0nm', '5365960'), - (1133, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMDG0nm', '5368973'), - (1133, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMDG0nm', '5378247'), - (1133, 1431, 'attending', '2022-06-03 03:11:03', '2025-12-17 19:47:30', '4oMDG0nm', '5389605'), - (1133, 1442, 'attending', '2022-06-03 03:11:05', '2025-12-17 19:47:17', '4oMDG0nm', '5397265'), - (1133, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMDG0nm', '5403967'), - (1133, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMDG0nm', '5404786'), - (1133, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMDG0nm', '5405203'), - (1133, 1465, 'attending', '2022-06-12 02:56:59', '2025-12-17 19:47:31', '4oMDG0nm', '5406355'), - (1133, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMDG0nm', '5411699'), - (1133, 1482, 'attending', '2022-06-19 23:25:45', '2025-12-17 19:47:19', '4oMDG0nm', '5412550'), - (1133, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMDG0nm', '5415046'), - (1133, 1494, 'attending', '2022-06-25 15:22:35', '2025-12-17 19:47:19', '4oMDG0nm', '5421626'), - (1133, 1495, 'attending', '2022-06-26 03:32:05', '2025-12-17 19:47:19', '4oMDG0nm', '5422086'), - (1133, 1498, 'attending', '2022-06-26 18:06:57', '2025-12-17 19:47:19', '4oMDG0nm', '5422406'), - (1133, 1499, 'attending', '2022-06-26 18:08:55', '2025-12-17 19:47:19', '4oMDG0nm', '5422407'), - (1133, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMDG0nm', '5424565'), - (1133, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMDG0nm', '5426882'), - (1133, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMDG0nm', '5427083'), - (1133, 1513, 'attending', '2022-07-12 13:49:30', '2025-12-17 19:47:19', '4oMDG0nm', '5441125'), - (1133, 1514, 'not_attending', '2022-07-12 13:49:33', '2025-12-17 19:47:20', '4oMDG0nm', '5441126'), - (1133, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMDG0nm', '5441128'), - (1133, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMDG0nm', '5446643'), - (1133, 1531, 'attending', '2022-07-16 21:11:27', '2025-12-17 19:47:19', '4oMDG0nm', '5448756'), - (1133, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMDG0nm', '5453325'), - (1133, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMDG0nm', '5454516'), - (1133, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMDG0nm', '5454605'), - (1133, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMDG0nm', '5455037'), - (1133, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMDG0nm', '5469480'), - (1133, 1565, 'not_attending', '2022-07-25 22:36:45', '2025-12-17 19:47:21', '4oMDG0nm', '5471073'), - (1133, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMDG0nm', '5474663'), - (1133, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMDG0nm', '5482022'), - (1133, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMDG0nm', '5482793'), - (1133, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4oMDG0nm', '5880940'), - (1133, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4oMDG0nm', '5880942'), - (1133, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4oMDG0nm', '5880943'), - (1133, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4oMDG0nm', '5900199'), - (1133, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4oMDG0nm', '5900200'), - (1133, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4oMDG0nm', '5900202'), - (1133, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4oMDG0nm', '5900203'), - (1133, 1895, 'not_attending', '2023-02-03 03:04:24', '2025-12-17 19:47:06', '4oMDG0nm', '5901108'), - (1133, 1896, 'attending', '2023-02-02 06:20:44', '2025-12-17 19:47:06', '4oMDG0nm', '5901126'), - (1133, 1897, 'maybe', '2023-02-07 03:59:21', '2025-12-17 19:47:07', '4oMDG0nm', '5901128'), - (1133, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4oMDG0nm', '5909655'), - (1133, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4oMDG0nm', '5910522'), - (1133, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4oMDG0nm', '5910526'), - (1133, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4oMDG0nm', '5910528'), - (1133, 1922, 'not_attending', '2023-02-13 03:40:23', '2025-12-17 19:47:07', '4oMDG0nm', '5916219'), - (1133, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4oMDG0nm', '5936234'), - (1133, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4oMDG0nm', '5958351'), - (1133, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4oMDG0nm', '5959751'), - (1133, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4oMDG0nm', '5959755'), - (1133, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4oMDG0nm', '5960055'), - (1133, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4oMDG0nm', '5961684'), - (1133, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4oMDG0nm', '5962132'), - (1133, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4oMDG0nm', '5962133'), - (1133, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4oMDG0nm', '5962134'), - (1133, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4oMDG0nm', '5962317'), - (1133, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4oMDG0nm', '5962318'), - (1133, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4oMDG0nm', '5965933'), - (1133, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4oMDG0nm', '5967014'), - (1133, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4oMDG0nm', '5972815'), - (1133, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4oMDG0nm', '5974016'), - (1133, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '4oMDG0nm', '5975052'), - (1133, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '4oMDG0nm', '5975054'), - (1133, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4oMDG0nm', '5981515'), - (1133, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4oMDG0nm', '5993516'), - (1133, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4oMDG0nm', '5998939'), - (1133, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4oMDG0nm', '6028191'), - (1133, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4oMDG0nm', '6040066'), - (1133, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4oMDG0nm', '6042717'), - (1133, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4oMDG0nm', '6044838'), - (1133, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4oMDG0nm', '6044839'), - (1133, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMDG0nm', '6045684'), - (1133, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4oMDG0nm', '6050104'), - (1133, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4oMDG0nm', '6053195'), - (1133, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4oMDG0nm', '6053198'), - (1133, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4oMDG0nm', '6056085'), - (1133, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4oMDG0nm', '6056916'), - (1133, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4oMDG0nm', '6059290'), - (1133, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4oMDG0nm', '6060328'), - (1133, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4oMDG0nm', '6061037'), - (1133, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4oMDG0nm', '6061039'), - (1133, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4oMDG0nm', '6067245'), - (1133, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4oMDG0nm', '6068094'), - (1133, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4oMDG0nm', '6068252'), - (1133, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4oMDG0nm', '6068253'), - (1133, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4oMDG0nm', '6068254'), - (1133, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4oMDG0nm', '6068280'), - (1133, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4oMDG0nm', '6069093'), - (1133, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4oMDG0nm', '6072528'), - (1133, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4oMDG0nm', '6075556'), - (1133, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4oMDG0nm', '6079840'), - (1133, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4oMDG0nm', '6083398'), - (1133, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4oMDG0nm', '6093504'), - (1133, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4oMDG0nm', '6097414'), - (1133, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4oMDG0nm', '6097442'), - (1133, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4oMDG0nm', '6097684'), - (1133, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4oMDG0nm', '6098762'), - (1133, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4oMDG0nm', '6101361'), - (1133, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4oMDG0nm', '6101362'), - (1133, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4oMDG0nm', '6107314'), - (1133, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4oMDG0nm', '6120034'), - (1133, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4oMDG0nm', '6136733'), - (1133, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4oMDG0nm', '6137989'), - (1134, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '2d2WQWJm', '3236465'), - (1134, 622, 'attending', '2021-03-11 15:13:45', '2025-12-17 19:47:51', '2d2WQWJm', '3517816'), - (1134, 628, 'attending', '2021-03-11 03:57:40', '2025-12-17 19:47:51', '2d2WQWJm', '3533305'), - (1134, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '2d2WQWJm', '3539916'), - (1134, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '2d2WQWJm', '3539918'), - (1134, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '2d2WQWJm', '3539919'), - (1134, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '2d2WQWJm', '3539920'), - (1134, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '2d2WQWJm', '3539921'), - (1134, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '2d2WQWJm', '3539927'); -INSERT INTO `calendar_events_signups` (`member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES - (1134, 678, 'attending', '2021-03-12 00:36:36', '2025-12-17 19:47:51', '2d2WQWJm', '3547158'), - (1134, 684, 'not_attending', '2021-03-12 21:35:54', '2025-12-17 19:47:51', '2d2WQWJm', '3549257'), - (1134, 688, 'not_attending', '2021-03-16 22:45:27', '2025-12-17 19:47:51', '2d2WQWJm', '3553729'), - (1134, 690, 'attending', '2021-03-12 15:22:58', '2025-12-17 19:47:43', '2d2WQWJm', '3559954'), - (1134, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '2d2WQWJm', '3582734'), - (1134, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '2d2WQWJm', '3583262'), - (1134, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '2d2WQWJm', '3619523'), - (1134, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '2d2WQWJm', '3661369'), - (1134, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '2d2WQWJm', '3674262'), - (1134, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '2d2WQWJm', '3677402'), - (1134, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '2d2WQWJm', '3730212'), - (1134, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '2d2WQWJm', '3793156'), - (1134, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '2d2WQWJm', '3803310'), - (1134, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '2d2WQWJm', '3806392'), - (1134, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2WQWJm', '6045684'), - (1135, 257, 'attending', '2021-04-20 15:10:09', '2025-12-17 19:47:45', 'EdVl2G5A', '3149488'), - (1135, 644, 'attending', '2021-04-21 02:32:17', '2025-12-17 19:47:45', 'EdVl2G5A', '3539919'), - (1135, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'EdVl2G5A', '3539920'), - (1135, 646, 'attending', '2021-05-17 22:37:07', '2025-12-17 19:47:46', 'EdVl2G5A', '3539921'), - (1135, 647, 'not_attending', '2021-05-22 13:42:35', '2025-12-17 19:47:46', 'EdVl2G5A', '3539922'), - (1135, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'EdVl2G5A', '3539923'), - (1135, 707, 'attending', '2021-04-21 15:16:31', '2025-12-17 19:47:46', 'EdVl2G5A', '3583262'), - (1135, 726, 'attending', '2021-06-05 01:52:35', '2025-12-17 19:47:47', 'EdVl2G5A', '3661374'), - (1135, 774, 'not_attending', '2021-04-21 15:17:01', '2025-12-17 19:47:45', 'EdVl2G5A', '3730212'), - (1135, 777, 'attending', '2021-04-29 16:31:54', '2025-12-17 19:47:46', 'EdVl2G5A', '3746248'), - (1135, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'EdVl2G5A', '3793156'), - (1135, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'EdVl2G5A', '3974109'), - (1135, 827, 'not_attending', '2021-06-05 01:52:18', '2025-12-17 19:47:47', 'EdVl2G5A', '3975311'), - (1135, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'EdVl2G5A', '3975312'), - (1135, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'EdVl2G5A', '3994992'), - (1135, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'EdVl2G5A', '4014338'), - (1135, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'EdVl2G5A', '4021848'), - (1135, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'EdVl2G5A', '4136744'), - (1135, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'EdVl2G5A', '4136937'), - (1135, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'EdVl2G5A', '4136938'), - (1135, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'EdVl2G5A', '4136947'), - (1135, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'EdVl2G5A', '4225444'), - (1135, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'EdVl2G5A', '4239259'), - (1135, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'EdVl2G5A', '4250163'), - (1135, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVl2G5A', '6045684'), - (1136, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ydweXYjA', '6044839'), - (1136, 1994, 'not_attending', '2023-04-05 21:32:02', '2025-12-17 19:46:59', 'ydweXYjA', '6050104'), - (1136, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ydweXYjA', '6053198'), - (1136, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ydweXYjA', '6056085'), - (1136, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ydweXYjA', '6056916'), - (1136, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ydweXYjA', '6059290'), - (1136, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ydweXYjA', '6060328'), - (1136, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ydweXYjA', '6061037'), - (1136, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ydweXYjA', '6061039'), - (1136, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ydweXYjA', '6067245'), - (1136, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ydweXYjA', '6068094'), - (1136, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ydweXYjA', '6068252'), - (1136, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ydweXYjA', '6068253'), - (1136, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ydweXYjA', '6068254'), - (1136, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ydweXYjA', '6068280'), - (1136, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ydweXYjA', '6069093'), - (1136, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ydweXYjA', '6072528'), - (1136, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ydweXYjA', '6079840'), - (1136, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ydweXYjA', '6083398'), - (1136, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ydweXYjA', '6093504'), - (1136, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ydweXYjA', '6097414'), - (1136, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ydweXYjA', '6097442'), - (1136, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ydweXYjA', '6097684'), - (1136, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ydweXYjA', '6098762'), - (1136, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ydweXYjA', '6101362'), - (1136, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ydweXYjA', '6107314'), - (1136, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ydweXYjA', '6120034'), - (1137, 1431, 'attending', '2022-06-11 02:41:19', '2025-12-17 19:47:30', 'dBWV8YPm', '5389605'), - (1137, 1442, 'attending', '2022-06-12 02:57:04', '2025-12-17 19:47:17', 'dBWV8YPm', '5397265'), - (1137, 1444, 'maybe', '2022-06-11 02:49:18', '2025-12-17 19:47:30', 'dBWV8YPm', '5397614'), - (1137, 1445, 'maybe', '2022-06-12 02:57:10', '2025-12-17 19:47:17', 'dBWV8YPm', '5397615'), - (1137, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dBWV8YPm', '5403967'), - (1137, 1455, 'not_attending', '2022-06-13 23:42:25', '2025-12-17 19:47:31', 'dBWV8YPm', '5404772'), - (1137, 1459, 'attending', '2022-06-20 13:00:25', '2025-12-17 19:47:17', 'dBWV8YPm', '5404793'), - (1137, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dBWV8YPm', '5405203'), - (1137, 1469, 'attending', '2022-06-20 23:15:30', '2025-12-17 19:47:17', 'dBWV8YPm', '5406838'), - (1137, 1473, 'not_attending', '2022-06-14 21:51:09', '2025-12-17 19:47:31', 'dBWV8YPm', '5407267'), - (1137, 1478, 'not_attending', '2022-06-24 19:15:22', '2025-12-17 19:47:19', 'dBWV8YPm', '5408794'), - (1137, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dBWV8YPm', '5411699'), - (1137, 1481, 'not_attending', '2022-06-21 01:37:12', '2025-12-17 19:47:17', 'dBWV8YPm', '5412237'), - (1137, 1482, 'attending', '2022-06-20 13:00:48', '2025-12-17 19:47:19', 'dBWV8YPm', '5412550'), - (1137, 1484, 'not_attending', '2022-06-22 14:12:49', '2025-12-17 19:47:17', 'dBWV8YPm', '5415046'), - (1137, 1487, 'not_attending', '2022-06-27 23:04:38', '2025-12-17 19:47:19', 'dBWV8YPm', '5419006'), - (1137, 1488, 'attending', '2022-07-03 04:46:33', '2025-12-17 19:47:19', 'dBWV8YPm', '5420154'), - (1137, 1490, 'attending', '2022-07-03 04:46:41', '2025-12-17 19:47:19', 'dBWV8YPm', '5420156'), - (1137, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dBWV8YPm', '5422086'), - (1137, 1498, 'maybe', '2022-07-02 21:43:02', '2025-12-17 19:47:19', 'dBWV8YPm', '5422406'), - (1137, 1501, 'not_attending', '2022-06-29 23:58:10', '2025-12-17 19:47:19', 'dBWV8YPm', '5424546'), - (1137, 1502, 'not_attending', '2022-07-08 22:55:47', '2025-12-17 19:47:19', 'dBWV8YPm', '5424565'), - (1137, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dBWV8YPm', '5426882'), - (1137, 1505, 'maybe', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dBWV8YPm', '5427083'), - (1137, 1513, 'attending', '2022-07-10 23:32:33', '2025-12-17 19:47:19', 'dBWV8YPm', '5441125'), - (1137, 1514, 'attending', '2022-07-21 02:04:39', '2025-12-17 19:47:20', 'dBWV8YPm', '5441126'), - (1137, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dBWV8YPm', '5441128'), - (1137, 1517, 'attending', '2022-08-15 19:38:17', '2025-12-17 19:47:23', 'dBWV8YPm', '5441130'), - (1137, 1518, 'maybe', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dBWV8YPm', '5441131'), - (1137, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dBWV8YPm', '5441132'), - (1137, 1520, 'not_attending', '2022-07-12 00:37:19', '2025-12-17 19:47:19', 'dBWV8YPm', '5441645'), - (1137, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dBWV8YPm', '5446643'), - (1137, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dBWV8YPm', '5453325'), - (1137, 1541, 'attending', '2022-07-25 22:44:40', '2025-12-17 19:47:20', 'dBWV8YPm', '5453542'), - (1137, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dBWV8YPm', '5454516'), - (1137, 1544, 'attending', '2022-09-17 17:57:50', '2025-12-17 19:47:11', 'dBWV8YPm', '5454517'), - (1137, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dBWV8YPm', '5454605'), - (1137, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dBWV8YPm', '5455037'), - (1137, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dBWV8YPm', '5461278'), - (1137, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dBWV8YPm', '5469480'), - (1137, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dBWV8YPm', '5471073'), - (1137, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dBWV8YPm', '5474663'), - (1137, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dBWV8YPm', '5482022'), - (1137, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dBWV8YPm', '5482793'), - (1137, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dBWV8YPm', '5488912'), - (1137, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dBWV8YPm', '5492192'), - (1137, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dBWV8YPm', '5493139'), - (1137, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dBWV8YPm', '5493200'), - (1137, 1598, 'attending', '2022-08-15 19:36:48', '2025-12-17 19:47:22', 'dBWV8YPm', '5496567'), - (1137, 1603, 'maybe', '2022-08-15 19:37:27', '2025-12-17 19:47:23', 'dBWV8YPm', '5497895'), - (1137, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dBWV8YPm', '5502188'), - (1137, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dBWV8YPm', '5505059'), - (1137, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dBWV8YPm', '5509055'), - (1137, 1617, 'not_attending', '2022-09-07 03:44:56', '2025-12-17 19:47:24', 'dBWV8YPm', '5512003'), - (1137, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dBWV8YPm', '5512862'), - (1137, 1621, 'not_attending', '2022-08-23 00:13:12', '2025-12-17 19:47:23', 'dBWV8YPm', '5513531'), - (1137, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dBWV8YPm', '5513985'), - (1137, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dBWV8YPm', '5519981'), - (1137, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dBWV8YPm', '5522550'), - (1137, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dBWV8YPm', '5534683'), - (1137, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dBWV8YPm', '5537735'), - (1137, 1636, 'attending', '2022-09-05 00:14:37', '2025-12-17 19:47:24', 'dBWV8YPm', '5538454'), - (1137, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dBWV8YPm', '5540859'), - (1137, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dBWV8YPm', '5546619'), - (1137, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dBWV8YPm', '5555245'), - (1137, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dBWV8YPm', '5557747'), - (1137, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dBWV8YPm', '5560255'), - (1137, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dBWV8YPm', '5562906'), - (1137, 1667, 'attending', '2022-09-21 13:31:58', '2025-12-17 19:47:11', 'dBWV8YPm', '5563221'), - (1137, 1668, 'attending', '2022-09-30 16:23:40', '2025-12-17 19:47:12', 'dBWV8YPm', '5563222'), - (1137, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dBWV8YPm', '5600604'), - (1137, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dBWV8YPm', '5605544'), - (1137, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'dBWV8YPm', '5606737'), - (1137, 1720, 'attending', '2022-10-15 14:00:34', '2025-12-17 19:47:12', 'dBWV8YPm', '5630959'), - (1137, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dBWV8YPm', '5630960'), - (1137, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dBWV8YPm', '5630961'), - (1137, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dBWV8YPm', '5630962'), - (1137, 1724, 'attending', '2022-11-05 03:34:59', '2025-12-17 19:47:15', 'dBWV8YPm', '5630966'), - (1137, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dBWV8YPm', '5630967'), - (1137, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dBWV8YPm', '5630968'), - (1137, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dBWV8YPm', '5635406'), - (1137, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dBWV8YPm', '5638765'), - (1137, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dBWV8YPm', '5640097'), - (1137, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dBWV8YPm', '5640843'), - (1137, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dBWV8YPm', '5641521'), - (1137, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dBWV8YPm', '5642818'), - (1137, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dBWV8YPm', '5652395'), - (1137, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dBWV8YPm', '5670445'), - (1137, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dBWV8YPm', '5671637'), - (1137, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dBWV8YPm', '5672329'), - (1137, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dBWV8YPm', '5674057'), - (1137, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dBWV8YPm', '5674060'), - (1137, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dBWV8YPm', '5677461'), - (1137, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dBWV8YPm', '5698046'), - (1137, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dBWV8YPm', '5699760'), - (1137, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dBWV8YPm', '5741601'), - (1137, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dBWV8YPm', '5763458'), - (1137, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dBWV8YPm', '5774172'), - (1137, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dBWV8YPm', '5818247'), - (1137, 1834, 'attending', '2022-12-10 18:01:14', '2025-12-17 19:47:17', 'dBWV8YPm', '5819470'), - (1137, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dBWV8YPm', '5819471'), - (1137, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dBWV8YPm', '5827739'), - (1137, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dBWV8YPm', '5844306'), - (1137, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dBWV8YPm', '5850159'), - (1137, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dBWV8YPm', '5858999'), - (1137, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dBWV8YPm', '5871984'), - (1137, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dBWV8YPm', '5876354'), - (1137, 1864, 'attending', '2023-01-21 18:52:24', '2025-12-17 19:47:05', 'dBWV8YPm', '5879675'), - (1137, 1865, 'attending', '2023-01-25 04:45:33', '2025-12-17 19:47:06', 'dBWV8YPm', '5879676'), - (1137, 1866, 'attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dBWV8YPm', '5880939'), - (1137, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dBWV8YPm', '5880940'), - (1137, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dBWV8YPm', '5880942'), - (1137, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dBWV8YPm', '5880943'), - (1137, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dBWV8YPm', '5887890'), - (1137, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dBWV8YPm', '5888598'), - (1137, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dBWV8YPm', '5893260'), - (1137, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dBWV8YPm', '5899826'), - (1137, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dBWV8YPm', '5900199'), - (1137, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dBWV8YPm', '5900200'), - (1137, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dBWV8YPm', '5900202'), - (1137, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dBWV8YPm', '5900203'), - (1137, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dBWV8YPm', '5901108'), - (1137, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dBWV8YPm', '5901126'), - (1137, 1897, 'attending', '2023-02-10 18:29:32', '2025-12-17 19:47:07', 'dBWV8YPm', '5901128'), - (1137, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dBWV8YPm', '5909655'), - (1137, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dBWV8YPm', '5910522'), - (1137, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dBWV8YPm', '5910526'), - (1137, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dBWV8YPm', '5910528'), - (1137, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dBWV8YPm', '5916219'), - (1137, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dBWV8YPm', '5936234'), - (1137, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dBWV8YPm', '5958351'), - (1137, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dBWV8YPm', '5959751'), - (1137, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dBWV8YPm', '5959755'), - (1137, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dBWV8YPm', '5960055'), - (1137, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dBWV8YPm', '5961684'), - (1137, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dBWV8YPm', '5962132'), - (1137, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dBWV8YPm', '5962133'), - (1137, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dBWV8YPm', '5962134'), - (1137, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dBWV8YPm', '5962317'), - (1137, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dBWV8YPm', '5962318'), - (1137, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dBWV8YPm', '5965933'), - (1137, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dBWV8YPm', '5967014'), - (1137, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dBWV8YPm', '5972815'), - (1137, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dBWV8YPm', '5974016'), - (1137, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dBWV8YPm', '5981515'), - (1137, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dBWV8YPm', '5993516'), - (1137, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dBWV8YPm', '5998939'), - (1137, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dBWV8YPm', '6028191'), - (1137, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dBWV8YPm', '6040066'), - (1137, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dBWV8YPm', '6042717'), - (1137, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dBWV8YPm', '6044838'), - (1137, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dBWV8YPm', '6044839'), - (1137, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBWV8YPm', '6045684'), - (1137, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dBWV8YPm', '6050104'), - (1137, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dBWV8YPm', '6053195'), - (1137, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dBWV8YPm', '6053198'), - (1137, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dBWV8YPm', '6056085'), - (1137, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dBWV8YPm', '6056916'), - (1137, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dBWV8YPm', '6059290'), - (1137, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dBWV8YPm', '6060328'), - (1137, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dBWV8YPm', '6061037'), - (1137, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dBWV8YPm', '6061039'), - (1137, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dBWV8YPm', '6067245'), - (1137, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dBWV8YPm', '6068094'), - (1137, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dBWV8YPm', '6068252'), - (1137, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dBWV8YPm', '6068253'), - (1137, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dBWV8YPm', '6068254'), - (1137, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dBWV8YPm', '6068280'), - (1137, 2032, 'attending', '2023-06-02 18:45:17', '2025-12-17 19:47:04', 'dBWV8YPm', '6068281'), - (1137, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dBWV8YPm', '6069093'), - (1137, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dBWV8YPm', '6072528'), - (1137, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dBWV8YPm', '6079840'), - (1137, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dBWV8YPm', '6083398'), - (1137, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dBWV8YPm', '6093504'), - (1137, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dBWV8YPm', '6097414'), - (1137, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dBWV8YPm', '6097442'), - (1137, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dBWV8YPm', '6097684'), - (1137, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dBWV8YPm', '6098762'), - (1137, 2064, 'attending', '2023-06-24 16:36:00', '2025-12-17 19:46:50', 'dBWV8YPm', '6099988'), - (1137, 2065, 'not_attending', '2023-06-10 01:32:13', '2025-12-17 19:46:49', 'dBWV8YPm', '6101169'), - (1137, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dBWV8YPm', '6101361'), - (1137, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dBWV8YPm', '6101362'), - (1137, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dBWV8YPm', '6103752'), - (1137, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dBWV8YPm', '6107314'), - (1137, 2077, 'attending', '2023-06-10 01:32:04', '2025-12-17 19:46:49', 'dBWV8YPm', '6110217'), - (1137, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dBWV8YPm', '6120034'), - (1137, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dBWV8YPm', '6136733'), - (1137, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dBWV8YPm', '6137989'), - (1137, 2105, 'attending', '2023-06-17 23:14:35', '2025-12-17 19:46:50', 'dBWV8YPm', '6149551'), - (1137, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dBWV8YPm', '6150864'), - (1137, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dBWV8YPm', '6155491'), - (1137, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dBWV8YPm', '6164417'), - (1137, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dBWV8YPm', '6166388'), - (1137, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dBWV8YPm', '6176439'), - (1137, 2127, 'maybe', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dBWV8YPm', '6180853'), - (1137, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dBWV8YPm', '6182410'), - (1137, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dBWV8YPm', '6185812'), - (1137, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dBWV8YPm', '6187651'), - (1137, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dBWV8YPm', '6187963'), - (1137, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dBWV8YPm', '6187964'), - (1137, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dBWV8YPm', '6187966'), - (1137, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dBWV8YPm', '6187967'), - (1137, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dBWV8YPm', '6187969'), - (1137, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dBWV8YPm', '6334878'), - (1137, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dBWV8YPm', '6337236'), - (1137, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dBWV8YPm', '6337970'), - (1137, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dBWV8YPm', '6338308'), - (1137, 2160, 'attending', '2023-07-28 13:36:56', '2025-12-17 19:46:54', 'dBWV8YPm', '6338358'), - (1137, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dBWV8YPm', '6340845'), - (1137, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dBWV8YPm', '6341710'), - (1137, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dBWV8YPm', '6342044'), - (1137, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dBWV8YPm', '6342298'), - (1137, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dBWV8YPm', '6343294'), - (1137, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dBWV8YPm', '6347034'), - (1137, 2177, 'attending', '2023-08-12 22:04:41', '2025-12-17 19:46:55', 'dBWV8YPm', '6347053'), - (1137, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dBWV8YPm', '6347056'), - (1137, 2183, 'maybe', '2023-07-28 13:36:51', '2025-12-17 19:46:54', 'dBWV8YPm', '6353008'), - (1137, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dBWV8YPm', '6353830'), - (1137, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dBWV8YPm', '6353831'), - (1137, 2189, 'maybe', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dBWV8YPm', '6357867'), - (1137, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dBWV8YPm', '6358652'), - (1137, 2204, 'attending', '2023-08-19 12:17:17', '2025-12-17 19:46:55', 'dBWV8YPm', '6361542'), - (1137, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dBWV8YPm', '6361709'), - (1137, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dBWV8YPm', '6361710'), - (1137, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dBWV8YPm', '6361711'), - (1137, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dBWV8YPm', '6361712'), - (1137, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dBWV8YPm', '6361713'), - (1137, 2228, 'maybe', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'dBWV8YPm', '6372777'), - (1137, 2232, 'not_attending', '2023-08-23 13:21:11', '2025-12-17 19:46:55', 'dBWV8YPm', '6374818'), - (1137, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dBWV8YPm', '6382573'), - (1137, 2239, 'not_attending', '2023-08-31 18:31:17', '2025-12-17 19:46:56', 'dBWV8YPm', '6387592'), - (1137, 2240, 'attending', '2023-09-09 15:42:51', '2025-12-17 19:46:56', 'dBWV8YPm', '6388603'), - (1137, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dBWV8YPm', '6388604'), - (1137, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dBWV8YPm', '6394629'), - (1137, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dBWV8YPm', '6394631'), - (1137, 2253, 'maybe', '2023-09-27 13:30:46', '2025-12-17 19:46:45', 'dBWV8YPm', '6401811'), - (1137, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dBWV8YPm', '6440863'), - (1137, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dBWV8YPm', '6445440'), - (1137, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dBWV8YPm', '6453951'), - (1137, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dBWV8YPm', '6461696'), - (1137, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dBWV8YPm', '6462129'), - (1137, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dBWV8YPm', '6463218'), - (1137, 2299, 'attending', '2023-10-15 23:18:21', '2025-12-17 19:46:46', 'dBWV8YPm', '6472181'), - (1137, 2303, 'not_attending', '2023-10-28 22:08:35', '2025-12-17 19:46:47', 'dBWV8YPm', '6482691'), - (1137, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dBWV8YPm', '6482693'), - (1137, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dBWV8YPm', '6484200'), - (1137, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dBWV8YPm', '6484680'), - (1137, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dBWV8YPm', '6507741'), - (1137, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dBWV8YPm', '6514659'), - (1137, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dBWV8YPm', '6514660'), - (1137, 2324, 'attending', '2023-12-08 15:54:54', '2025-12-17 19:46:49', 'dBWV8YPm', '6514662'), - (1137, 2325, 'attending', '2023-12-16 05:34:14', '2025-12-17 19:46:36', 'dBWV8YPm', '6514663'), - (1137, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dBWV8YPm', '6519103'), - (1137, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dBWV8YPm', '6535681'), - (1137, 2338, 'not_attending', '2023-11-22 17:45:50', '2025-12-17 19:46:48', 'dBWV8YPm', '6538868'), - (1137, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dBWV8YPm', '6584747'), - (1137, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dBWV8YPm', '6587097'), - (1137, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dBWV8YPm', '6609022'), - (1137, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dBWV8YPm', '6632757'), - (1137, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dBWV8YPm', '6644187'), - (1137, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dBWV8YPm', '6648951'), - (1137, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dBWV8YPm', '6648952'), - (1137, 2388, 'attending', '2024-01-06 22:12:35', '2025-12-17 19:46:37', 'dBWV8YPm', '6649244'), - (1137, 2393, 'attending', '2024-01-15 22:47:43', '2025-12-17 19:46:38', 'dBWV8YPm', '6654468'), - (1137, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dBWV8YPm', '6655401'), - (1137, 2399, 'attending', '2024-01-13 22:47:20', '2025-12-17 19:46:38', 'dBWV8YPm', '6657583'), - (1137, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dBWV8YPm', '6661585'), - (1137, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dBWV8YPm', '6661588'), - (1137, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dBWV8YPm', '6661589'), - (1137, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dBWV8YPm', '6699906'), - (1137, 2408, 'attending', '2024-01-26 17:11:00', '2025-12-17 19:46:40', 'dBWV8YPm', '6699907'), - (1137, 2409, 'attending', '2024-02-03 22:09:37', '2025-12-17 19:46:41', 'dBWV8YPm', '6699909'), - (1137, 2410, 'not_attending', '2024-02-07 00:13:04', '2025-12-17 19:46:41', 'dBWV8YPm', '6699911'), - (1137, 2411, 'attending', '2024-02-12 19:41:49', '2025-12-17 19:46:41', 'dBWV8YPm', '6699913'), - (1137, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dBWV8YPm', '6701109'), - (1137, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dBWV8YPm', '6705219'), - (1137, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dBWV8YPm', '6710153'), - (1137, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dBWV8YPm', '6711552'), - (1137, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dBWV8YPm', '6711553'), - (1137, 2436, 'attending', '2024-01-28 00:23:22', '2025-12-17 19:46:40', 'dBWV8YPm', '6722687'), - (1137, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dBWV8YPm', '6722688'), - (1137, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dBWV8YPm', '6730620'), - (1137, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dBWV8YPm', '6730642'), - (1137, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dBWV8YPm', '6740364'), - (1137, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dBWV8YPm', '6743829'), - (1137, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dBWV8YPm', '7030380'), - (1137, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dBWV8YPm', '7033677'), - (1137, 2474, 'attending', '2024-02-21 00:16:25', '2025-12-17 19:46:43', 'dBWV8YPm', '7035415'), - (1137, 2475, 'maybe', '2024-02-24 23:36:06', '2025-12-17 19:46:43', 'dBWV8YPm', '7035643'), - (1137, 2478, 'attending', '2024-02-21 00:16:18', '2025-12-17 19:46:43', 'dBWV8YPm', '7036478'), - (1137, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dBWV8YPm', '7044715'), - (1137, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dBWV8YPm', '7050318'), - (1137, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dBWV8YPm', '7050319'), - (1137, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dBWV8YPm', '7050322'), - (1137, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dBWV8YPm', '7057804'), - (1137, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dBWV8YPm', '7059866'), - (1137, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dBWV8YPm', '7072824'), - (1137, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dBWV8YPm', '7074348'), - (1137, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dBWV8YPm', '7074364'), - (1137, 2539, 'maybe', '2024-04-05 19:28:18', '2025-12-17 19:46:33', 'dBWV8YPm', '7085486'), - (1137, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dBWV8YPm', '7089267'), - (1137, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dBWV8YPm', '7098747'), - (1137, 2553, 'attending', '2024-03-29 15:38:52', '2025-12-17 19:46:33', 'dBWV8YPm', '7113468'), - (1137, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dBWV8YPm', '7114856'), - (1137, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dBWV8YPm', '7114951'), - (1137, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dBWV8YPm', '7114955'), - (1137, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dBWV8YPm', '7114956'), - (1137, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dBWV8YPm', '7114957'), - (1137, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dBWV8YPm', '7153615'), - (1137, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dBWV8YPm', '7159484'), - (1137, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dBWV8YPm', '7178446'), - (1137, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dBWV8YPm', '7220467'), - (1137, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBWV8YPm', '7240354'), - (1137, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBWV8YPm', '7251633'), - (1137, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBWV8YPm', '7263048'), - (1137, 2626, 'attending', '2024-05-18 21:28:55', '2025-12-17 19:46:35', 'dBWV8YPm', '7264723'), - (1137, 2627, 'not_attending', '2024-05-24 21:10:10', '2025-12-17 19:46:35', 'dBWV8YPm', '7264724'), - (1137, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dBWV8YPm', '7302674'), - (1137, 2679, 'maybe', '2024-06-19 13:36:54', '2025-12-17 19:46:29', 'dBWV8YPm', '7319490'), - (1137, 2688, 'attending', '2024-06-26 15:57:59', '2025-12-17 19:46:29', 'dBWV8YPm', '7324073'), - (1137, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dBWV8YPm', '7324074'), - (1137, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dBWV8YPm', '7324075'), - (1137, 2691, 'maybe', '2024-07-20 21:33:41', '2025-12-17 19:46:30', 'dBWV8YPm', '7324076'), - (1137, 2692, 'not_attending', '2024-07-12 00:01:49', '2025-12-17 19:46:30', 'dBWV8YPm', '7324077'), - (1137, 2693, 'maybe', '2024-07-31 00:24:44', '2025-12-17 19:46:31', 'dBWV8YPm', '7324078'), - (1137, 2694, 'attending', '2024-08-10 19:03:23', '2025-12-17 19:46:31', 'dBWV8YPm', '7324079'), - (1137, 2695, 'attending', '2024-08-16 03:34:05', '2025-12-17 19:46:31', 'dBWV8YPm', '7324080'), - (1137, 2696, 'attending', '2024-08-22 15:39:28', '2025-12-17 19:46:32', 'dBWV8YPm', '7324081'), - (1137, 2697, 'not_attending', '2024-08-31 15:09:02', '2025-12-17 19:46:32', 'dBWV8YPm', '7324082'), - (1137, 2698, 'not_attending', '2024-09-07 21:38:14', '2025-12-17 19:46:24', 'dBWV8YPm', '7324083'), - (1137, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dBWV8YPm', '7331457'), - (1137, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dBWV8YPm', '7356752'), - (1137, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dBWV8YPm', '7363643'), - (1137, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dBWV8YPm', '7368606'), - (1137, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dBWV8YPm', '7397462'), - (1137, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dBWV8YPm', '7424275'), - (1137, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dBWV8YPm', '7424276'), - (1137, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dBWV8YPm', '7432751'), - (1137, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dBWV8YPm', '7432752'), - (1137, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dBWV8YPm', '7432753'), - (1137, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dBWV8YPm', '7432754'), - (1137, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dBWV8YPm', '7432755'), - (1137, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dBWV8YPm', '7432756'), - (1137, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dBWV8YPm', '7432758'), - (1137, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dBWV8YPm', '7432759'), - (1137, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dBWV8YPm', '7433834'), - (1137, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dBWV8YPm', '7470197'), - (1137, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dBWV8YPm', '7685613'), - (1137, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dBWV8YPm', '7688194'), - (1137, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dBWV8YPm', '7688196'), - (1137, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dBWV8YPm', '7688289'), - (1137, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dBWV8YPm', '7692763'), - (1137, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dBWV8YPm', '7697552'), - (1137, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dBWV8YPm', '7699878'), - (1137, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dBWV8YPm', '7704043'), - (1137, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dBWV8YPm', '7712467'), - (1137, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dBWV8YPm', '7713585'), - (1137, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dBWV8YPm', '7713586'), - (1137, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dBWV8YPm', '7738518'), - (1137, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBWV8YPm', '7750636'), - (1137, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBWV8YPm', '7796540'), - (1137, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBWV8YPm', '7796541'), - (1137, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBWV8YPm', '7796542'), - (1137, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dBWV8YPm', '7825913'), - (1137, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dBWV8YPm', '7826209'), - (1137, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dBWV8YPm', '7834742'), - (1137, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dBWV8YPm', '7842108'), - (1137, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dBWV8YPm', '7842902'), - (1137, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dBWV8YPm', '7842903'), - (1137, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dBWV8YPm', '7842904'), - (1137, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dBWV8YPm', '7842905'), - (1137, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dBWV8YPm', '7855719'), - (1137, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dBWV8YPm', '7860683'), - (1137, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dBWV8YPm', '7860684'), - (1137, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dBWV8YPm', '7866095'), - (1137, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dBWV8YPm', '7869170'), - (1137, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dBWV8YPm', '7869188'), - (1137, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dBWV8YPm', '7869201'), - (1137, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dBWV8YPm', '7877465'), - (1137, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dBWV8YPm', '7878570'), - (1137, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dBWV8YPm', '7888250'), - (1137, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dBWV8YPm', '8349164'), - (1137, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dBWV8YPm', '8349545'), - (1137, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dBWV8YPm', '8353584'), - (1138, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'w4WLzQqd', '6045684'), - (1139, 1121, 'attending', '2021-11-14 16:52:43', '2025-12-17 19:47:37', '41oz6QMm', '4644022'), - (1139, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '41oz6QMm', '4645687'), - (1139, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '41oz6QMm', '4645698'), - (1139, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '41oz6QMm', '4645704'), - (1139, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '41oz6QMm', '4645705'), - (1139, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '41oz6QMm', '4668385'), - (1139, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '41oz6QMm', '4694407'), - (1139, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '41oz6QMm', '4746789'), - (1139, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '41oz6QMm', '4753929'), - (1139, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41oz6QMm', '6045684'), - (1140, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Qd5XkkO4', '3236465'), - (1140, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Qd5XkkO4', '3539918'), - (1140, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Qd5XkkO4', '3539919'), - (1140, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Qd5XkkO4', '3539920'), - (1140, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Qd5XkkO4', '3539921'), - (1140, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Qd5XkkO4', '3583262'), - (1140, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Qd5XkkO4', '3661369'), - (1140, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Qd5XkkO4', '3730212'), - (1140, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Qd5XkkO4', '3793156'), - (1140, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Qd5XkkO4', '3803310'), - (1140, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Qd5XkkO4', '3806392'), - (1140, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd5XkkO4', '6045684'), - (1141, 199, 'maybe', '2020-09-04 02:00:02', '2025-12-17 19:47:56', 'v4DbGQqm', '3087268'), - (1141, 220, 'attending', '2020-09-03 22:34:25', '2025-12-17 19:47:56', 'v4DbGQqm', '3129264'), - (1141, 223, 'attending', '2020-09-09 15:45:38', '2025-12-17 19:47:56', 'v4DbGQqm', '3129980'), - (1141, 249, 'not_attending', '2020-11-16 16:26:50', '2025-12-17 19:47:54', 'v4DbGQqm', '3149480'), - (1141, 296, 'not_attending', '2020-09-08 16:56:51', '2025-12-17 19:47:56', 'v4DbGQqm', '3172876'), - (1141, 304, 'not_attending', '2020-09-06 22:09:12', '2025-12-17 19:47:56', 'v4DbGQqm', '3178916'), - (1141, 311, 'maybe', '2020-09-18 15:13:56', '2025-12-17 19:47:56', 'v4DbGQqm', '3186057'), - (1141, 312, 'maybe', '2020-09-08 16:56:32', '2025-12-17 19:47:56', 'v4DbGQqm', '3187795'), - (1141, 315, 'not_attending', '2020-09-08 16:55:46', '2025-12-17 19:47:56', 'v4DbGQqm', '3189085'), - (1141, 330, 'not_attending', '2020-09-06 22:09:00', '2025-12-17 19:47:56', 'v4DbGQqm', '3197322'), - (1141, 335, 'not_attending', '2020-09-04 21:13:19', '2025-12-17 19:47:56', 'v4DbGQqm', '3200209'), - (1141, 339, 'attending', '2020-09-09 15:45:13', '2025-12-17 19:47:56', 'v4DbGQqm', '3204469'), - (1141, 340, 'not_attending', '2020-09-18 15:14:15', '2025-12-17 19:47:56', 'v4DbGQqm', '3204470'), - (1141, 362, 'not_attending', '2020-09-26 22:21:23', '2025-12-17 19:47:52', 'v4DbGQqm', '3214207'), - (1141, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'v4DbGQqm', '3217037'), - (1141, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'v4DbGQqm', '3218510'), - (1141, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'v4DbGQqm', '3228698'), - (1141, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'v4DbGQqm', '3228699'), - (1141, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'v4DbGQqm', '3228700'), - (1141, 388, 'not_attending', '2020-10-24 20:59:45', '2025-12-17 19:47:52', 'v4DbGQqm', '3228701'), - (1141, 397, 'attending', '2021-05-27 22:43:49', '2025-12-17 19:47:47', 'v4DbGQqm', '3236452'), - (1141, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'v4DbGQqm', '3245751'), - (1141, 440, 'not_attending', '2020-11-03 03:35:37', '2025-12-17 19:47:53', 'v4DbGQqm', '3256168'), - (1141, 441, 'attending', '2020-11-14 20:25:40', '2025-12-17 19:47:54', 'v4DbGQqm', '3256169'), - (1141, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'v4DbGQqm', '3266138'), - (1141, 452, 'not_attending', '2020-11-29 17:40:45', '2025-12-17 19:47:54', 'v4DbGQqm', '3272981'), - (1141, 456, 'not_attending', '2020-11-17 00:59:26', '2025-12-17 19:47:54', 'v4DbGQqm', '3276428'), - (1141, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'v4DbGQqm', '3281467'), - (1141, 460, 'attending', '2020-11-16 17:17:36', '2025-12-17 19:47:54', 'v4DbGQqm', '3281468'), - (1141, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'v4DbGQqm', '3281470'), - (1141, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'v4DbGQqm', '3281829'), - (1141, 467, 'not_attending', '2020-11-16 16:25:14', '2025-12-17 19:47:54', 'v4DbGQqm', '3282756'), - (1141, 468, 'attending', '2020-11-16 16:01:21', '2025-12-17 19:47:54', 'v4DbGQqm', '3285413'), - (1141, 469, 'attending', '2020-11-28 23:40:33', '2025-12-17 19:47:54', 'v4DbGQqm', '3285414'), - (1141, 476, 'not_attending', '2020-11-16 16:25:26', '2025-12-17 19:47:54', 'v4DbGQqm', '3286982'), - (1141, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'v4DbGQqm', '3297764'), - (1141, 487, 'not_attending', '2020-11-30 21:01:14', '2025-12-17 19:47:54', 'v4DbGQqm', '3311122'), - (1141, 488, 'attending', '2020-11-29 18:25:35', '2025-12-17 19:47:54', 'v4DbGQqm', '3312757'), - (1141, 493, 'not_attending', '2020-12-06 00:11:07', '2025-12-17 19:47:54', 'v4DbGQqm', '3313856'), - (1141, 494, 'attending', '2020-11-29 17:40:04', '2025-12-17 19:47:54', 'v4DbGQqm', '3313866'), - (1141, 496, 'attending', '2020-12-06 19:26:44', '2025-12-17 19:47:54', 'v4DbGQqm', '3314269'), - (1141, 497, 'attending', '2020-12-06 19:27:29', '2025-12-17 19:47:55', 'v4DbGQqm', '3314270'), - (1141, 498, 'attending', '2020-12-06 19:26:25', '2025-12-17 19:47:54', 'v4DbGQqm', '3314302'), - (1141, 499, 'not_attending', '2020-12-11 22:38:03', '2025-12-17 19:47:55', 'v4DbGQqm', '3314909'), - (1141, 500, 'attending', '2020-12-18 17:06:48', '2025-12-17 19:47:55', 'v4DbGQqm', '3314964'), - (1141, 501, 'attending', '2020-12-06 19:25:59', '2025-12-17 19:47:54', 'v4DbGQqm', '3317834'), - (1141, 502, 'attending', '2020-12-07 16:03:05', '2025-12-17 19:47:55', 'v4DbGQqm', '3323365'), - (1141, 506, 'not_attending', '2020-12-14 00:41:15', '2025-12-17 19:47:55', 'v4DbGQqm', '3323375'), - (1141, 511, 'not_attending', '2020-12-08 01:54:14', '2025-12-17 19:47:55', 'v4DbGQqm', '3325335'), - (1141, 513, 'attending', '2020-12-13 05:33:06', '2025-12-17 19:47:55', 'v4DbGQqm', '3329383'), - (1141, 517, 'attending', '2020-12-30 16:47:23', '2025-12-17 19:47:48', 'v4DbGQqm', '3337137'), - (1141, 518, 'attending', '2020-12-30 16:47:00', '2025-12-17 19:47:48', 'v4DbGQqm', '3337138'), - (1141, 519, 'attending', '2020-12-20 16:20:36', '2025-12-17 19:47:55', 'v4DbGQqm', '3337448'), - (1141, 525, 'attending', '2020-12-20 16:20:46', '2025-12-17 19:47:48', 'v4DbGQqm', '3350467'), - (1141, 526, 'attending', '2020-12-30 16:46:47', '2025-12-17 19:47:48', 'v4DbGQqm', '3351539'), - (1141, 529, 'not_attending', '2021-01-05 23:41:40', '2025-12-17 19:47:48', 'v4DbGQqm', '3364568'), - (1141, 532, 'not_attending', '2021-01-08 23:58:25', '2025-12-17 19:47:48', 'v4DbGQqm', '3381412'), - (1141, 534, 'not_attending', '2021-01-09 22:09:57', '2025-12-17 19:47:48', 'v4DbGQqm', '3384157'), - (1141, 536, 'attending', '2021-01-07 02:45:11', '2025-12-17 19:47:48', 'v4DbGQqm', '3386848'), - (1141, 537, 'not_attending', '2021-01-07 02:46:31', '2025-12-17 19:47:48', 'v4DbGQqm', '3387153'), - (1141, 540, 'attending', '2021-01-07 02:44:00', '2025-12-17 19:47:48', 'v4DbGQqm', '3389527'), - (1141, 542, 'not_attending', '2021-01-11 21:34:33', '2025-12-17 19:47:48', 'v4DbGQqm', '3395013'), - (1141, 543, 'not_attending', '2021-01-15 15:51:27', '2025-12-17 19:47:48', 'v4DbGQqm', '3396499'), - (1141, 548, 'attending', '2021-01-15 15:52:12', '2025-12-17 19:47:48', 'v4DbGQqm', '3403650'), - (1141, 549, 'not_attending', '2021-01-18 23:03:09', '2025-12-17 19:47:49', 'v4DbGQqm', '3406988'), - (1141, 550, 'not_attending', '2021-01-17 21:46:25', '2025-12-17 19:47:48', 'v4DbGQqm', '3407018'), - (1141, 551, 'attending', '2021-01-18 23:03:19', '2025-12-17 19:47:49', 'v4DbGQqm', '3407219'), - (1141, 555, 'attending', '2021-01-18 23:03:51', '2025-12-17 19:47:49', 'v4DbGQqm', '3416576'), - (1141, 557, 'not_attending', '2021-01-21 00:32:12', '2025-12-17 19:47:49', 'v4DbGQqm', '3418748'), - (1141, 558, 'not_attending', '2021-01-22 23:07:03', '2025-12-17 19:47:49', 'v4DbGQqm', '3418925'), - (1141, 561, 'attending', '2021-01-22 23:07:35', '2025-12-17 19:47:49', 'v4DbGQqm', '3421916'), - (1141, 562, 'not_attending', '2021-01-23 20:19:26', '2025-12-17 19:47:49', 'v4DbGQqm', '3424911'), - (1141, 563, 'attending', '2021-01-22 23:08:16', '2025-12-17 19:47:49', 'v4DbGQqm', '3425913'), - (1141, 567, 'attending', '2021-01-25 00:18:56', '2025-12-17 19:47:50', 'v4DbGQqm', '3428895'), - (1141, 568, 'attending', '2021-01-25 00:19:24', '2025-12-17 19:47:50', 'v4DbGQqm', '3430267'), - (1141, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'v4DbGQqm', '3432673'), - (1141, 570, 'not_attending', '2021-02-05 23:52:48', '2025-12-17 19:47:50', 'v4DbGQqm', '3435538'), - (1141, 575, 'attending', '2021-01-30 19:48:45', '2025-12-17 19:47:50', 'v4DbGQqm', '3437492'), - (1141, 578, 'not_attending', '2021-02-04 00:46:26', '2025-12-17 19:47:50', 'v4DbGQqm', '3440043'), - (1141, 579, 'attending', '2021-01-31 15:41:10', '2025-12-17 19:47:50', 'v4DbGQqm', '3440978'), - (1141, 580, 'not_attending', '2021-01-31 15:36:01', '2025-12-17 19:47:50', 'v4DbGQqm', '3444240'), - (1141, 581, 'maybe', '2021-01-31 15:41:59', '2025-12-17 19:47:50', 'v4DbGQqm', '3445029'), - (1141, 598, 'attending', '2021-02-06 00:55:18', '2025-12-17 19:47:50', 'v4DbGQqm', '3468003'), - (1141, 600, 'attending', '2021-02-06 14:30:15', '2025-12-17 19:47:50', 'v4DbGQqm', '3468125'), - (1141, 602, 'attending', '2021-02-07 18:47:03', '2025-12-17 19:47:50', 'v4DbGQqm', '3470303'), - (1141, 603, 'attending', '2021-02-08 12:14:01', '2025-12-17 19:47:50', 'v4DbGQqm', '3470304'), - (1141, 604, 'attending', '2021-02-08 12:14:19', '2025-12-17 19:47:50', 'v4DbGQqm', '3470305'), - (1141, 605, 'attending', '2021-02-15 01:35:02', '2025-12-17 19:47:50', 'v4DbGQqm', '3470991'), - (1141, 607, 'maybe', '2021-02-18 01:11:33', '2025-12-17 19:47:50', 'v4DbGQqm', '3471882'), - (1141, 609, 'attending', '2021-02-13 15:04:28', '2025-12-17 19:47:50', 'v4DbGQqm', '3480916'), - (1141, 611, 'attending', '2021-02-22 23:45:13', '2025-12-17 19:47:50', 'v4DbGQqm', '3482659'), - (1141, 612, 'not_attending', '2021-02-18 00:21:31', '2025-12-17 19:47:50', 'v4DbGQqm', '3490040'), - (1141, 615, 'not_attending', '2021-02-20 20:49:28', '2025-12-17 19:47:50', 'v4DbGQqm', '3490045'), - (1141, 618, 'not_attending', '2021-02-20 20:49:19', '2025-12-17 19:47:50', 'v4DbGQqm', '3503991'), - (1141, 619, 'attending', '2021-02-20 19:55:27', '2025-12-17 19:47:50', 'v4DbGQqm', '3506310'), - (1141, 621, 'attending', '2021-03-05 12:26:00', '2025-12-17 19:47:51', 'v4DbGQqm', '3517815'), - (1141, 622, 'attending', '2021-03-11 07:08:02', '2025-12-17 19:47:51', 'v4DbGQqm', '3517816'), - (1141, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'v4DbGQqm', '3523941'), - (1141, 624, 'attending', '2021-02-27 13:17:43', '2025-12-17 19:47:50', 'v4DbGQqm', '3528556'), - (1141, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'v4DbGQqm', '3533850'), - (1141, 637, 'attending', '2021-03-01 17:31:52', '2025-12-17 19:47:51', 'v4DbGQqm', '3536411'), - (1141, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'v4DbGQqm', '3536632'), - (1141, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'v4DbGQqm', '3536656'), - (1141, 641, 'maybe', '2021-04-02 16:10:16', '2025-12-17 19:47:44', 'v4DbGQqm', '3539916'), - (1141, 642, 'attending', '2021-04-08 12:38:00', '2025-12-17 19:47:44', 'v4DbGQqm', '3539917'), - (1141, 643, 'attending', '2021-04-17 18:42:05', '2025-12-17 19:47:45', 'v4DbGQqm', '3539918'), - (1141, 644, 'attending', '2021-04-24 12:04:13', '2025-12-17 19:47:45', 'v4DbGQqm', '3539919'), - (1141, 645, 'attending', '2021-05-08 18:23:05', '2025-12-17 19:47:46', 'v4DbGQqm', '3539920'), - (1141, 646, 'not_attending', '2021-05-15 10:43:02', '2025-12-17 19:47:46', 'v4DbGQqm', '3539921'), - (1141, 647, 'not_attending', '2021-05-22 21:14:49', '2025-12-17 19:47:47', 'v4DbGQqm', '3539922'), - (1141, 648, 'attending', '2021-05-29 20:05:41', '2025-12-17 19:47:47', 'v4DbGQqm', '3539923'), - (1141, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4DbGQqm', '3539927'), - (1141, 650, 'attending', '2021-03-27 19:21:43', '2025-12-17 19:47:44', 'v4DbGQqm', '3539928'), - (1141, 655, 'attending', '2021-03-11 07:07:56', '2025-12-17 19:47:51', 'v4DbGQqm', '3547129'), - (1141, 656, 'not_attending', '2021-03-20 21:06:45', '2025-12-17 19:47:51', 'v4DbGQqm', '3547130'), - (1141, 657, 'attending', '2021-04-17 18:42:01', '2025-12-17 19:47:45', 'v4DbGQqm', '3547132'), - (1141, 658, 'not_attending', '2021-06-12 20:43:37', '2025-12-17 19:47:47', 'v4DbGQqm', '3547134'), - (1141, 659, 'attending', '2021-04-08 12:37:52', '2025-12-17 19:47:44', 'v4DbGQqm', '3547135'), - (1141, 660, 'attending', '2021-07-10 19:56:27', '2025-12-17 19:47:39', 'v4DbGQqm', '3547136'), - (1141, 661, 'maybe', '2021-04-02 16:10:10', '2025-12-17 19:47:44', 'v4DbGQqm', '3547137'), - (1141, 662, 'attending', '2021-04-24 12:04:10', '2025-12-17 19:47:45', 'v4DbGQqm', '3547138'), - (1141, 663, 'attending', '2021-05-08 18:23:03', '2025-12-17 19:47:46', 'v4DbGQqm', '3547140'), - (1141, 664, 'attending', '2021-09-10 17:05:30', '2025-12-17 19:47:43', 'v4DbGQqm', '3547142'), - (1141, 665, 'attending', '2021-09-04 12:36:46', '2025-12-17 19:47:43', 'v4DbGQqm', '3547143'), - (1141, 666, 'not_attending', '2021-08-14 15:12:31', '2025-12-17 19:47:42', 'v4DbGQqm', '3547144'), - (1141, 668, 'not_attending', '2021-05-15 10:42:54', '2025-12-17 19:47:46', 'v4DbGQqm', '3547146'), - (1141, 670, 'maybe', '2021-06-19 12:44:30', '2025-12-17 19:47:48', 'v4DbGQqm', '3547148'), - (1141, 671, 'attending', '2021-07-17 21:52:21', '2025-12-17 19:47:39', 'v4DbGQqm', '3547149'), - (1141, 672, 'not_attending', '2021-05-22 21:14:45', '2025-12-17 19:47:46', 'v4DbGQqm', '3547150'), - (1141, 674, 'not_attending', '2021-08-07 12:52:33', '2025-12-17 19:47:41', 'v4DbGQqm', '3547152'), - (1141, 675, 'attending', '2021-07-31 16:11:16', '2025-12-17 19:47:40', 'v4DbGQqm', '3547153'), - (1141, 676, 'attending', '2021-07-22 11:39:24', '2025-12-17 19:47:40', 'v4DbGQqm', '3547154'), - (1141, 677, 'attending', '2021-05-29 20:05:35', '2025-12-17 19:47:47', 'v4DbGQqm', '3547155'), - (1141, 686, 'maybe', '2021-03-11 07:09:12', '2025-12-17 19:47:51', 'v4DbGQqm', '3553333'), - (1141, 687, 'not_attending', '2021-03-09 23:12:03', '2025-12-17 19:47:51', 'v4DbGQqm', '3553405'), - (1141, 690, 'attending', '2021-03-11 12:35:01', '2025-12-17 19:47:43', 'v4DbGQqm', '3559954'), - (1141, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4DbGQqm', '3582734'), - (1141, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'v4DbGQqm', '3583262'), - (1141, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4DbGQqm', '3619523'), - (1141, 718, 'attending', '2021-03-27 19:21:52', '2025-12-17 19:47:44', 'v4DbGQqm', '3626844'), - (1141, 719, 'attending', '2021-04-08 21:35:10', '2025-12-17 19:47:44', 'v4DbGQqm', '3635405'), - (1141, 724, 'maybe', '2021-05-09 18:43:05', '2025-12-17 19:47:46', 'v4DbGQqm', '3661369'), - (1141, 726, 'maybe', '2021-06-05 20:33:15', '2025-12-17 19:47:47', 'v4DbGQqm', '3661374'), - (1141, 729, 'not_attending', '2021-04-28 22:41:34', '2025-12-17 19:47:46', 'v4DbGQqm', '3668075'), - (1141, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'v4DbGQqm', '3674262'), - (1141, 735, 'not_attending', '2021-05-02 13:59:45', '2025-12-17 19:47:46', 'v4DbGQqm', '3677402'), - (1141, 737, 'attending', '2021-04-06 22:37:26', '2025-12-17 19:47:44', 'v4DbGQqm', '3679349'), - (1141, 752, 'attending', '2021-04-11 03:15:27', '2025-12-17 19:47:44', 'v4DbGQqm', '3699422'), - (1141, 756, 'not_attending', '2021-04-26 21:30:48', '2025-12-17 19:47:46', 'v4DbGQqm', '3704795'), - (1141, 767, 'not_attending', '2021-05-02 21:37:31', '2025-12-17 19:47:46', 'v4DbGQqm', '3722476'), - (1141, 771, 'maybe', '2021-04-29 19:05:43', '2025-12-17 19:47:46', 'v4DbGQqm', '3726420'), - (1141, 772, 'not_attending', '2021-05-01 00:02:09', '2025-12-17 19:47:46', 'v4DbGQqm', '3726421'), - (1141, 773, 'not_attending', '2021-04-27 22:32:47', '2025-12-17 19:47:46', 'v4DbGQqm', '3729399'), - (1141, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'v4DbGQqm', '3730212'), - (1141, 775, 'not_attending', '2021-04-21 22:42:16', '2025-12-17 19:47:45', 'v4DbGQqm', '3731062'), - (1141, 777, 'attending', '2021-05-01 18:59:13', '2025-12-17 19:47:46', 'v4DbGQqm', '3746248'), - (1141, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'v4DbGQqm', '3793156'), - (1141, 805, 'maybe', '2021-06-13 21:21:56', '2025-12-17 19:47:47', 'v4DbGQqm', '3804777'), - (1141, 819, 'attending', '2021-05-29 20:24:17', '2025-12-17 19:47:47', 'v4DbGQqm', '3833017'), - (1141, 823, 'maybe', '2021-06-19 12:44:33', '2025-12-17 19:47:48', 'v4DbGQqm', '3974109'), - (1141, 827, 'attending', '2021-06-05 20:31:53', '2025-12-17 19:47:47', 'v4DbGQqm', '3975311'), - (1141, 828, 'not_attending', '2021-06-12 20:43:41', '2025-12-17 19:47:47', 'v4DbGQqm', '3975312'), - (1141, 829, 'attending', '2021-05-31 16:28:40', '2025-12-17 19:47:47', 'v4DbGQqm', '3976202'), - (1141, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'v4DbGQqm', '3994992'), - (1141, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4DbGQqm', '4014338'), - (1141, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'v4DbGQqm', '4021848'), - (1141, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4DbGQqm', '4136744'), - (1141, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'v4DbGQqm', '4136937'), - (1141, 871, 'attending', '2021-07-10 19:56:29', '2025-12-17 19:47:39', 'v4DbGQqm', '4136938'), - (1141, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'v4DbGQqm', '4136947'), - (1141, 876, 'not_attending', '2021-06-22 22:22:13', '2025-12-17 19:47:38', 'v4DbGQqm', '4139926'), - (1141, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'v4DbGQqm', '4210314'), - (1141, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4DbGQqm', '4225444'), - (1141, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'v4DbGQqm', '4239259'), - (1141, 900, 'attending', '2021-07-22 11:39:28', '2025-12-17 19:47:40', 'v4DbGQqm', '4240316'), - (1141, 901, 'attending', '2021-07-31 16:11:19', '2025-12-17 19:47:40', 'v4DbGQqm', '4240317'), - (1141, 902, 'not_attending', '2021-08-07 12:52:37', '2025-12-17 19:47:41', 'v4DbGQqm', '4240318'), - (1141, 903, 'not_attending', '2021-08-14 15:12:34', '2025-12-17 19:47:42', 'v4DbGQqm', '4240320'), - (1141, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4DbGQqm', '4250163'), - (1141, 919, 'attending', '2021-07-17 17:49:47', '2025-12-17 19:47:39', 'v4DbGQqm', '4275957'), - (1141, 920, 'maybe', '2021-07-25 20:41:58', '2025-12-17 19:47:40', 'v4DbGQqm', '4277819'), - (1141, 931, 'attending', '2021-07-22 21:33:44', '2025-12-17 19:47:40', 'v4DbGQqm', '4301535'), - (1141, 932, 'attending', '2021-07-22 23:28:49', '2025-12-17 19:47:42', 'v4DbGQqm', '4301664'), - (1141, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'v4DbGQqm', '4301723'), - (1141, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'v4DbGQqm', '4302093'), - (1141, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'v4DbGQqm', '4304151'), - (1141, 942, 'maybe', '2021-07-31 16:11:43', '2025-12-17 19:47:40', 'v4DbGQqm', '4310297'), - (1141, 953, 'attending', '2021-07-30 20:31:14', '2025-12-17 19:47:40', 'v4DbGQqm', '4324152'), - (1141, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'v4DbGQqm', '4345519'), - (1141, 968, 'not_attending', '2021-08-12 22:36:36', '2025-12-17 19:47:42', 'v4DbGQqm', '4356505'), - (1141, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'v4DbGQqm', '4356801'), - (1141, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'v4DbGQqm', '4358025'), - (1141, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'v4DbGQqm', '4366186'), - (1141, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'v4DbGQqm', '4366187'), - (1141, 988, 'not_attending', '2021-08-27 20:56:24', '2025-12-17 19:47:42', 'v4DbGQqm', '4402823'), - (1141, 990, 'attending', '2021-09-04 12:36:49', '2025-12-17 19:47:43', 'v4DbGQqm', '4420735'), - (1141, 991, 'attending', '2021-09-10 17:05:33', '2025-12-17 19:47:43', 'v4DbGQqm', '4420738'), - (1141, 992, 'attending', '2021-09-18 18:05:13', '2025-12-17 19:47:33', 'v4DbGQqm', '4420739'), - (1141, 993, 'attending', '2021-09-24 14:49:45', '2025-12-17 19:47:34', 'v4DbGQqm', '4420741'), - (1141, 994, 'not_attending', '2021-10-02 21:12:00', '2025-12-17 19:47:34', 'v4DbGQqm', '4420742'), - (1141, 995, 'not_attending', '2021-10-09 19:09:12', '2025-12-17 19:47:34', 'v4DbGQqm', '4420744'), - (1141, 996, 'attending', '2021-10-16 00:36:29', '2025-12-17 19:47:35', 'v4DbGQqm', '4420747'), - (1141, 997, 'not_attending', '2021-10-11 01:23:44', '2025-12-17 19:47:35', 'v4DbGQqm', '4420748'), - (1141, 998, 'not_attending', '2021-10-30 17:05:24', '2025-12-17 19:47:36', 'v4DbGQqm', '4420749'), - (1141, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'v4DbGQqm', '4461883'), - (1141, 1033, 'attending', '2021-09-18 18:05:11', '2025-12-17 19:47:43', 'v4DbGQqm', '4486006'), - (1141, 1036, 'attending', '2021-09-18 18:05:54', '2025-12-17 19:47:34', 'v4DbGQqm', '4493166'), - (1141, 1038, 'attending', '2021-09-24 14:49:43', '2025-12-17 19:47:34', 'v4DbGQqm', '4496603'), - (1141, 1039, 'not_attending', '2021-10-02 21:11:57', '2025-12-17 19:47:34', 'v4DbGQqm', '4496604'), - (1141, 1042, 'attending', '2021-11-21 19:19:33', '2025-12-17 19:47:37', 'v4DbGQqm', '4496607'), - (1141, 1043, 'not_attending', '2021-10-11 01:23:41', '2025-12-17 19:47:35', 'v4DbGQqm', '4496608'), - (1141, 1044, 'not_attending', '2021-11-06 22:47:17', '2025-12-17 19:47:36', 'v4DbGQqm', '4496609'), - (1141, 1045, 'not_attending', '2021-10-30 17:05:21', '2025-12-17 19:47:36', 'v4DbGQqm', '4496610'), - (1141, 1046, 'attending', '2021-10-16 00:36:24', '2025-12-17 19:47:35', 'v4DbGQqm', '4496611'), - (1141, 1047, 'not_attending', '2021-10-09 19:09:08', '2025-12-17 19:47:34', 'v4DbGQqm', '4496612'), - (1141, 1048, 'not_attending', '2021-11-13 19:59:47', '2025-12-17 19:47:36', 'v4DbGQqm', '4496613'), - (1141, 1049, 'maybe', '2022-01-22 21:56:20', '2025-12-17 19:47:32', 'v4DbGQqm', '4496614'), - (1141, 1050, 'attending', '2022-01-26 04:26:33', '2025-12-17 19:47:32', 'v4DbGQqm', '4496615'), - (1141, 1051, 'attending', '2022-02-06 00:04:53', '2025-12-17 19:47:32', 'v4DbGQqm', '4496616'), - (1141, 1052, 'attending', '2022-01-03 16:37:07', '2025-12-17 19:47:31', 'v4DbGQqm', '4496617'), - (1141, 1053, 'attending', '2022-02-15 19:13:17', '2025-12-17 19:47:32', 'v4DbGQqm', '4496618'), - (1141, 1054, 'attending', '2022-03-17 09:43:46', '2025-12-17 19:47:25', 'v4DbGQqm', '4496619'), - (1141, 1055, 'attending', '2021-12-17 17:17:09', '2025-12-17 19:47:31', 'v4DbGQqm', '4496621'), - (1141, 1056, 'attending', '2022-01-03 16:36:34', '2025-12-17 19:47:31', 'v4DbGQqm', '4496622'), - (1141, 1057, 'not_attending', '2021-11-20 17:24:55', '2025-12-17 19:47:37', 'v4DbGQqm', '4496624'), - (1141, 1058, 'attending', '2022-02-27 00:20:44', '2025-12-17 19:47:33', 'v4DbGQqm', '4496625'), - (1141, 1059, 'attending', '2022-03-06 15:49:25', '2025-12-17 19:47:33', 'v4DbGQqm', '4496626'), - (1141, 1060, 'attending', '2022-03-18 17:52:58', '2025-12-17 19:47:25', 'v4DbGQqm', '4496627'), - (1141, 1061, 'attending', '2022-02-10 13:34:20', '2025-12-17 19:47:32', 'v4DbGQqm', '4496628'), - (1141, 1062, 'attending', '2022-03-02 06:51:28', '2025-12-17 19:47:33', 'v4DbGQqm', '4496629'), - (1141, 1063, 'attending', '2021-09-21 22:57:17', '2025-12-17 19:47:34', 'v4DbGQqm', '4496630'), - (1141, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'v4DbGQqm', '4508342'), - (1141, 1069, 'attending', '2021-09-24 15:41:06', '2025-12-17 19:47:34', 'v4DbGQqm', '4512090'), - (1141, 1074, 'attending', '2021-09-28 23:32:42', '2025-12-17 19:47:34', 'v4DbGQqm', '4528953'), - (1141, 1079, 'attending', '2021-10-16 14:40:28', '2025-12-17 19:47:35', 'v4DbGQqm', '4563823'), - (1141, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'v4DbGQqm', '4568602'), - (1141, 1087, 'attending', '2021-10-16 14:10:24', '2025-12-17 19:47:35', 'v4DbGQqm', '4572153'), - (1141, 1089, 'attending', '2021-10-16 14:16:41', '2025-12-17 19:47:35', 'v4DbGQqm', '4574712'), - (1141, 1090, 'attending', '2021-10-16 14:35:07', '2025-12-17 19:47:35', 'v4DbGQqm', '4574713'), - (1141, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'v4DbGQqm', '4585962'), - (1141, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'v4DbGQqm', '4596356'), - (1141, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'v4DbGQqm', '4598860'), - (1141, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'v4DbGQqm', '4598861'), - (1141, 1099, 'not_attending', '2021-11-06 22:47:20', '2025-12-17 19:47:36', 'v4DbGQqm', '4602797'), - (1141, 1103, 'not_attending', '2021-11-13 19:59:57', '2025-12-17 19:47:36', 'v4DbGQqm', '4616350'), - (1141, 1104, 'maybe', '2021-11-13 20:00:04', '2025-12-17 19:47:36', 'v4DbGQqm', '4618310'), - (1141, 1108, 'not_attending', '2021-11-18 00:30:43', '2025-12-17 19:47:37', 'v4DbGQqm', '4632276'), - (1141, 1114, 'not_attending', '2021-11-13 19:59:49', '2025-12-17 19:47:36', 'v4DbGQqm', '4637896'), - (1141, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'v4DbGQqm', '4642994'), - (1141, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'v4DbGQqm', '4642995'), - (1141, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'v4DbGQqm', '4642996'), - (1141, 1119, 'attending', '2021-12-19 01:27:43', '2025-12-17 19:47:31', 'v4DbGQqm', '4642997'), - (1141, 1120, 'attending', '2021-11-15 20:11:41', '2025-12-17 19:47:37', 'v4DbGQqm', '4644021'), - (1141, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'v4DbGQqm', '4645687'), - (1141, 1127, 'not_attending', '2021-12-12 21:25:03', '2025-12-17 19:47:38', 'v4DbGQqm', '4645698'), - (1141, 1128, 'not_attending', '2021-11-20 17:24:58', '2025-12-17 19:47:37', 'v4DbGQqm', '4645704'), - (1141, 1129, 'attending', '2021-11-21 19:19:35', '2025-12-17 19:47:37', 'v4DbGQqm', '4645705'), - (1141, 1131, 'attending', '2021-12-17 17:17:12', '2025-12-17 19:47:31', 'v4DbGQqm', '4658825'), - (1141, 1132, 'attending', '2021-11-21 19:14:29', '2025-12-17 19:47:37', 'v4DbGQqm', '4660657'), - (1141, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'v4DbGQqm', '4668385'), - (1141, 1140, 'attending', '2021-11-30 04:28:49', '2025-12-17 19:47:37', 'v4DbGQqm', '4679701'), - (1141, 1148, 'attending', '2021-12-17 17:16:51', '2025-12-17 19:47:31', 'v4DbGQqm', '4692843'), - (1141, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'v4DbGQqm', '4694407'), - (1141, 1150, 'attending', '2021-12-17 00:17:36', '2025-12-17 19:47:38', 'v4DbGQqm', '4706262'), - (1141, 1151, 'not_attending', '2022-01-05 23:37:38', '2025-12-17 19:47:31', 'v4DbGQqm', '4708704'), - (1141, 1153, 'maybe', '2022-01-19 23:42:50', '2025-12-17 19:47:32', 'v4DbGQqm', '4708707'), - (1141, 1154, 'attending', '2022-01-26 22:18:31', '2025-12-17 19:47:32', 'v4DbGQqm', '4708708'), - (1141, 1156, 'attending', '2021-12-18 21:27:04', '2025-12-17 19:47:31', 'v4DbGQqm', '4715207'), - (1141, 1157, 'attending', '2021-12-18 21:29:11', '2025-12-17 19:47:31', 'v4DbGQqm', '4715208'), - (1141, 1158, 'attending', '2021-12-18 23:36:27', '2025-12-17 19:47:31', 'v4DbGQqm', '4715311'), - (1141, 1163, 'attending', '2022-01-08 17:59:14', '2025-12-17 19:47:31', 'v4DbGQqm', '4724206'), - (1141, 1164, 'attending', '2022-01-03 16:26:27', '2025-12-17 19:47:31', 'v4DbGQqm', '4724208'), - (1141, 1165, 'attending', '2022-01-03 16:26:30', '2025-12-17 19:47:31', 'v4DbGQqm', '4724210'), - (1141, 1170, 'not_attending', '2022-01-10 00:19:20', '2025-12-17 19:47:31', 'v4DbGQqm', '4731045'), - (1141, 1171, 'attending', '2022-01-02 04:33:29', '2025-12-17 19:47:31', 'v4DbGQqm', '4733292'), - (1141, 1173, 'attending', '2022-01-03 16:37:16', '2025-12-17 19:47:31', 'v4DbGQqm', '4736495'), - (1141, 1174, 'attending', '2022-01-16 00:06:07', '2025-12-17 19:47:31', 'v4DbGQqm', '4736496'), - (1141, 1175, 'attending', '2022-01-22 14:48:43', '2025-12-17 19:47:32', 'v4DbGQqm', '4736497'), - (1141, 1176, 'attending', '2022-02-06 00:04:50', '2025-12-17 19:47:32', 'v4DbGQqm', '4736498'), - (1141, 1177, 'attending', '2022-02-10 13:34:21', '2025-12-17 19:47:32', 'v4DbGQqm', '4736499'), - (1141, 1178, 'attending', '2022-01-26 04:26:36', '2025-12-17 19:47:32', 'v4DbGQqm', '4736500'), - (1141, 1179, 'attending', '2022-02-15 19:13:19', '2025-12-17 19:47:32', 'v4DbGQqm', '4736501'), - (1141, 1180, 'attending', '2022-02-27 00:20:48', '2025-12-17 19:47:33', 'v4DbGQqm', '4736502'), - (1141, 1181, 'attending', '2022-03-02 06:51:30', '2025-12-17 19:47:33', 'v4DbGQqm', '4736503'), - (1141, 1182, 'attending', '2022-03-06 15:49:27', '2025-12-17 19:47:33', 'v4DbGQqm', '4736504'), - (1141, 1183, 'not_attending', '2022-01-07 16:58:16', '2025-12-17 19:47:31', 'v4DbGQqm', '4742171'), - (1141, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'v4DbGQqm', '4746789'), - (1141, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'v4DbGQqm', '4753929'), - (1141, 1206, 'attending', '2022-04-10 10:37:09', '2025-12-17 19:47:27', 'v4DbGQqm', '4773578'), - (1141, 1207, 'attending', '2022-05-07 19:36:25', '2025-12-17 19:47:28', 'v4DbGQqm', '4773579'), - (1141, 1220, 'attending', '2022-01-27 23:50:00', '2025-12-17 19:47:32', 'v4DbGQqm', '4790257'), - (1141, 1229, 'not_attending', '2022-02-18 19:22:09', '2025-12-17 19:47:32', 'v4DbGQqm', '5034963'), - (1141, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4DbGQqm', '5038850'), - (1141, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4DbGQqm', '5045826'), - (1141, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4DbGQqm', '5132533'), - (1141, 1260, 'attending', '2022-03-01 17:45:57', '2025-12-17 19:47:33', 'v4DbGQqm', '5142082'), - (1141, 1264, 'attending', '2022-03-22 22:49:39', '2025-12-17 19:47:25', 'v4DbGQqm', '5160281'), - (1141, 1265, 'attending', '2022-03-10 13:24:01', '2025-12-17 19:47:33', 'v4DbGQqm', '5160862'), - (1141, 1271, 'attending', '2022-03-18 17:51:59', '2025-12-17 19:47:25', 'v4DbGQqm', '5181648'), - (1141, 1272, 'attending', '2022-03-17 09:43:48', '2025-12-17 19:47:25', 'v4DbGQqm', '5186582'), - (1141, 1273, 'attending', '2022-03-18 17:52:49', '2025-12-17 19:47:25', 'v4DbGQqm', '5186583'), - (1141, 1274, 'attending', '2022-03-24 15:44:33', '2025-12-17 19:47:26', 'v4DbGQqm', '5186585'), - (1141, 1275, 'attending', '2022-03-24 15:44:29', '2025-12-17 19:47:26', 'v4DbGQqm', '5186587'), - (1141, 1279, 'attending', '2022-03-18 17:53:18', '2025-12-17 19:47:25', 'v4DbGQqm', '5187212'), - (1141, 1280, 'not_attending', '2022-03-18 07:23:33', '2025-12-17 19:47:25', 'v4DbGQqm', '5189749'), - (1141, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4DbGQqm', '5190437'), - (1141, 1283, 'attending', '2022-03-19 15:31:12', '2025-12-17 19:47:25', 'v4DbGQqm', '5193533'), - (1141, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'v4DbGQqm', '5195095'), - (1141, 1289, 'not_attending', '2022-03-31 22:45:34', '2025-12-17 19:47:25', 'v4DbGQqm', '5200190'), - (1141, 1290, 'not_attending', '2022-03-29 22:46:33', '2025-12-17 19:47:25', 'v4DbGQqm', '5200196'), - (1141, 1293, 'attending', '2022-04-10 10:36:57', '2025-12-17 19:47:27', 'v4DbGQqm', '5214641'), - (1141, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4DbGQqm', '5215989'), - (1141, 1301, 'attending', '2022-03-30 11:22:55', '2025-12-17 19:47:26', 'v4DbGQqm', '5218175'), - (1141, 1307, 'not_attending', '2022-04-05 10:12:55', '2025-12-17 19:47:27', 'v4DbGQqm', '5223686'), - (1141, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'v4DbGQqm', '5227432'), - (1141, 1312, 'attending', '2022-04-14 14:14:42', '2025-12-17 19:47:27', 'v4DbGQqm', '5231459'), - (1141, 1313, 'attending', '2022-04-12 20:59:22', '2025-12-17 19:47:27', 'v4DbGQqm', '5231461'), - (1141, 1328, 'maybe', '2022-04-14 14:14:37', '2025-12-17 19:47:27', 'v4DbGQqm', '5238759'), - (1141, 1329, 'not_attending', '2022-04-12 12:03:25', '2025-12-17 19:47:27', 'v4DbGQqm', '5240135'), - (1141, 1344, 'not_attending', '2022-04-28 13:06:22', '2025-12-17 19:47:28', 'v4DbGQqm', '5247465'), - (1141, 1345, 'not_attending', '2022-04-23 21:13:43', '2025-12-17 19:47:27', 'v4DbGQqm', '5247466'), - (1141, 1346, 'not_attending', '2022-04-23 21:13:46', '2025-12-17 19:47:27', 'v4DbGQqm', '5247467'), - (1141, 1348, 'not_attending', '2022-05-01 22:20:44', '2025-12-17 19:47:28', 'v4DbGQqm', '5247605'), - (1141, 1362, 'attending', '2022-04-25 19:02:12', '2025-12-17 19:47:28', 'v4DbGQqm', '5260800'), - (1141, 1370, 'attending', '2022-04-28 13:05:44', '2025-12-17 19:47:28', 'v4DbGQqm', '5263775'), - (1141, 1371, 'attending', '2022-04-27 22:39:36', '2025-12-17 19:47:27', 'v4DbGQqm', '5263784'), - (1141, 1374, 'attending', '2022-05-07 16:14:30', '2025-12-17 19:47:28', 'v4DbGQqm', '5269930'), - (1141, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'v4DbGQqm', '5271448'), - (1141, 1379, 'attending', '2022-05-21 16:58:03', '2025-12-17 19:47:29', 'v4DbGQqm', '5271449'), - (1141, 1380, 'not_attending', '2022-05-28 21:52:07', '2025-12-17 19:47:30', 'v4DbGQqm', '5271450'), - (1141, 1381, 'not_attending', '2022-05-05 02:29:58', '2025-12-17 19:47:28', 'v4DbGQqm', '5271453'), - (1141, 1383, 'maybe', '2022-05-12 13:28:03', '2025-12-17 19:47:28', 'v4DbGQqm', '5276469'), - (1141, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'v4DbGQqm', '5278159'), - (1141, 1395, 'attending', '2022-05-07 16:14:25', '2025-12-17 19:47:28', 'v4DbGQqm', '5281102'), - (1141, 1397, 'attending', '2022-05-21 16:57:59', '2025-12-17 19:47:29', 'v4DbGQqm', '5281104'), - (1141, 1407, 'attending', '2022-06-04 21:06:54', '2025-12-17 19:47:30', 'v4DbGQqm', '5363695'), - (1141, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'v4DbGQqm', '5365960'), - (1141, 1415, 'attending', '2022-06-03 22:26:47', '2025-12-17 19:47:30', 'v4DbGQqm', '5368973'), - (1141, 1417, 'attending', '2022-05-23 23:41:28', '2025-12-17 19:47:30', 'v4DbGQqm', '5370465'), - (1141, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'v4DbGQqm', '5378247'), - (1141, 1431, 'attending', '2022-06-11 18:31:05', '2025-12-17 19:47:30', 'v4DbGQqm', '5389605'), - (1141, 1442, 'maybe', '2022-06-18 14:41:01', '2025-12-17 19:47:17', 'v4DbGQqm', '5397265'), - (1141, 1443, 'attending', '2022-06-04 21:06:51', '2025-12-17 19:47:30', 'v4DbGQqm', '5397613'), - (1141, 1444, 'not_attending', '2022-06-11 18:31:02', '2025-12-17 19:47:30', 'v4DbGQqm', '5397614'), - (1141, 1445, 'maybe', '2022-06-18 14:40:58', '2025-12-17 19:47:17', 'v4DbGQqm', '5397615'), - (1141, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'v4DbGQqm', '5403967'), - (1141, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'v4DbGQqm', '5404786'), - (1141, 1460, 'attending', '2022-06-10 04:36:01', '2025-12-17 19:47:31', 'v4DbGQqm', '5404817'), - (1141, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'v4DbGQqm', '5405203'), - (1141, 1465, 'not_attending', '2022-06-12 02:56:50', '2025-12-17 19:47:31', 'v4DbGQqm', '5406355'), - (1141, 1470, 'not_attending', '2022-06-18 14:40:55', '2025-12-17 19:47:17', 'v4DbGQqm', '5407053'), - (1141, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'v4DbGQqm', '5411699'), - (1141, 1482, 'not_attending', '2022-06-25 22:19:50', '2025-12-17 19:47:19', 'v4DbGQqm', '5412550'), - (1141, 1483, 'not_attending', '2022-06-20 21:21:55', '2025-12-17 19:47:17', 'v4DbGQqm', '5414556'), - (1141, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'v4DbGQqm', '5415046'), - (1141, 1494, 'not_attending', '2022-06-25 15:19:20', '2025-12-17 19:47:19', 'v4DbGQqm', '5421626'), - (1141, 1495, 'attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'v4DbGQqm', '5422086'), - (1141, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'v4DbGQqm', '5422406'), - (1141, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'v4DbGQqm', '5424565'), - (1141, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'v4DbGQqm', '5426882'), - (1141, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'v4DbGQqm', '5427083'), - (1141, 1508, 'attending', '2022-07-13 22:14:08', '2025-12-17 19:47:19', 'v4DbGQqm', '5433453'), - (1141, 1512, 'attending', '2022-07-15 21:43:44', '2025-12-17 19:47:19', 'v4DbGQqm', '5441112'), - (1141, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'v4DbGQqm', '5441125'), - (1141, 1514, 'attending', '2022-07-21 19:50:49', '2025-12-17 19:47:20', 'v4DbGQqm', '5441126'), - (1141, 1515, 'attending', '2022-08-06 16:24:52', '2025-12-17 19:47:21', 'v4DbGQqm', '5441128'), - (1141, 1516, 'not_attending', '2022-08-20 17:05:40', '2025-12-17 19:47:23', 'v4DbGQqm', '5441129'), - (1141, 1517, 'attending', '2022-08-25 15:23:55', '2025-12-17 19:47:23', 'v4DbGQqm', '5441130'), - (1141, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'v4DbGQqm', '5441131'), - (1141, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'v4DbGQqm', '5441132'), - (1141, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'v4DbGQqm', '5446643'), - (1141, 1529, 'attending', '2022-07-14 17:54:02', '2025-12-17 19:47:19', 'v4DbGQqm', '5447079'), - (1141, 1532, 'maybe', '2022-07-21 19:51:00', '2025-12-17 19:47:20', 'v4DbGQqm', '5448757'), - (1141, 1533, 'not_attending', '2022-07-29 21:36:09', '2025-12-17 19:47:21', 'v4DbGQqm', '5448758'), - (1141, 1534, 'maybe', '2022-08-06 16:24:49', '2025-12-17 19:47:21', 'v4DbGQqm', '5448759'), - (1141, 1535, 'attending', '2022-07-19 18:01:33', '2025-12-17 19:47:20', 'v4DbGQqm', '5448830'), - (1141, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'v4DbGQqm', '5453325'), - (1141, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'v4DbGQqm', '5454516'), - (1141, 1544, 'maybe', '2022-09-15 14:21:27', '2025-12-17 19:47:11', 'v4DbGQqm', '5454517'), - (1141, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'v4DbGQqm', '5454605'), - (1141, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'v4DbGQqm', '5455037'), - (1141, 1557, 'attending', '2022-08-03 22:16:24', '2025-12-17 19:47:21', 'v4DbGQqm', '5458729'), - (1141, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'v4DbGQqm', '5461278'), - (1141, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'v4DbGQqm', '5469480'), - (1141, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'v4DbGQqm', '5471073'), - (1141, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'v4DbGQqm', '5474663'), - (1141, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'v4DbGQqm', '5482022'), - (1141, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'v4DbGQqm', '5482793'), - (1141, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'v4DbGQqm', '5488912'), - (1141, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'v4DbGQqm', '5492192'), - (1141, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'v4DbGQqm', '5493139'), - (1141, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'v4DbGQqm', '5493200'), - (1141, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'v4DbGQqm', '5502188'), - (1141, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'v4DbGQqm', '5505059'), - (1141, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'v4DbGQqm', '5509055'), - (1141, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'v4DbGQqm', '5512862'), - (1141, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'v4DbGQqm', '5513985'), - (1141, 1626, 'not_attending', '2022-08-25 22:34:49', '2025-12-17 19:47:11', 'v4DbGQqm', '5519981'), - (1141, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'v4DbGQqm', '5522550'), - (1141, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'v4DbGQqm', '5534683'), - (1141, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'v4DbGQqm', '5537735'), - (1141, 1640, 'maybe', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'v4DbGQqm', '5540859'), - (1141, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'v4DbGQqm', '5546619'), - (1141, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'v4DbGQqm', '5555245'), - (1141, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'v4DbGQqm', '5557747'), - (1141, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'v4DbGQqm', '5560255'), - (1141, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'v4DbGQqm', '5562906'), - (1141, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'v4DbGQqm', '5600604'), - (1141, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'v4DbGQqm', '5605544'), - (1141, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'v4DbGQqm', '5606737'), - (1141, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'v4DbGQqm', '5630960'), - (1141, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'v4DbGQqm', '5630961'), - (1141, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'v4DbGQqm', '5630962'), - (1141, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'v4DbGQqm', '5630966'), - (1141, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'v4DbGQqm', '5630967'), - (1141, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'v4DbGQqm', '5630968'), - (1141, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'v4DbGQqm', '5635406'), - (1141, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'v4DbGQqm', '5638765'), - (1141, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'v4DbGQqm', '5640097'), - (1141, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'v4DbGQqm', '5640843'), - (1141, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'v4DbGQqm', '5641521'), - (1141, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'v4DbGQqm', '5642818'), - (1141, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'v4DbGQqm', '5652395'), - (1141, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'v4DbGQqm', '5670445'), - (1141, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'v4DbGQqm', '5671637'), - (1141, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'v4DbGQqm', '5672329'), - (1141, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'v4DbGQqm', '5674057'), - (1141, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'v4DbGQqm', '5674060'), - (1141, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'v4DbGQqm', '5677461'), - (1141, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'v4DbGQqm', '5698046'), - (1141, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'v4DbGQqm', '5699760'), - (1141, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'v4DbGQqm', '5741601'), - (1141, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'v4DbGQqm', '5763458'), - (1141, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'v4DbGQqm', '5774172'), - (1141, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'v4DbGQqm', '5818247'), - (1141, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'v4DbGQqm', '5819471'), - (1141, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'v4DbGQqm', '5827739'), - (1141, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'v4DbGQqm', '5844306'), - (1141, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'v4DbGQqm', '5850159'), - (1141, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'v4DbGQqm', '5858999'), - (1141, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'v4DbGQqm', '5871984'), - (1141, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'v4DbGQqm', '5876354'), - (1141, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'v4DbGQqm', '5880939'), - (1141, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'v4DbGQqm', '5880940'), - (1141, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'v4DbGQqm', '5880942'), - (1141, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'v4DbGQqm', '5880943'), - (1141, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'v4DbGQqm', '5887890'), - (1141, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'v4DbGQqm', '5888598'), - (1141, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'v4DbGQqm', '5893260'), - (1141, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'v4DbGQqm', '5899826'), - (1141, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'v4DbGQqm', '5900199'), - (1141, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'v4DbGQqm', '5900200'), - (1141, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'v4DbGQqm', '5900202'), - (1141, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'v4DbGQqm', '5900203'), - (1141, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'v4DbGQqm', '5901108'), - (1141, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'v4DbGQqm', '5901126'), - (1141, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'v4DbGQqm', '5909655'), - (1141, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'v4DbGQqm', '5910522'), - (1141, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'v4DbGQqm', '5910526'), - (1141, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'v4DbGQqm', '5910528'), - (1141, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'v4DbGQqm', '5916219'), - (1141, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'v4DbGQqm', '5936234'), - (1141, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'v4DbGQqm', '5958351'), - (1141, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'v4DbGQqm', '5959751'), - (1141, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'v4DbGQqm', '5959755'), - (1141, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'v4DbGQqm', '5960055'), - (1141, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'v4DbGQqm', '5961684'), - (1141, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'v4DbGQqm', '5962132'), - (1141, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'v4DbGQqm', '5962133'), - (1141, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'v4DbGQqm', '5962134'), - (1141, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'v4DbGQqm', '5962317'), - (1141, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'v4DbGQqm', '5962318'), - (1141, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'v4DbGQqm', '5965933'), - (1141, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'v4DbGQqm', '5967014'), - (1141, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'v4DbGQqm', '5972763'), - (1141, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'v4DbGQqm', '5972815'), - (1141, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'v4DbGQqm', '5974016'), - (1141, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'v4DbGQqm', '5975052'), - (1141, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'v4DbGQqm', '5975054'), - (1141, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'v4DbGQqm', '5981515'), - (1141, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'v4DbGQqm', '5993516'), - (1141, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'v4DbGQqm', '5998939'), - (1141, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'v4DbGQqm', '6028191'), - (1141, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'v4DbGQqm', '6040066'), - (1141, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'v4DbGQqm', '6042717'), - (1141, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'v4DbGQqm', '6044838'), - (1141, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'v4DbGQqm', '6044839'), - (1141, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DbGQqm', '6045684'), - (1141, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'v4DbGQqm', '6050104'), - (1141, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'v4DbGQqm', '6053195'), - (1141, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'v4DbGQqm', '6053198'), - (1141, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'v4DbGQqm', '6056085'), - (1141, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'v4DbGQqm', '6056916'), - (1141, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'v4DbGQqm', '6059290'), - (1141, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'v4DbGQqm', '6060328'), - (1141, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'v4DbGQqm', '6061037'), - (1141, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'v4DbGQqm', '6061039'), - (1141, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'v4DbGQqm', '6065813'), - (1141, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'v4DbGQqm', '6067245'), - (1141, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'v4DbGQqm', '6068094'), - (1141, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'v4DbGQqm', '6068252'), - (1141, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'v4DbGQqm', '6068253'), - (1141, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'v4DbGQqm', '6068254'), - (1141, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'v4DbGQqm', '6068280'), - (1141, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'v4DbGQqm', '6069093'), - (1141, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'v4DbGQqm', '6072528'), - (1141, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'v4DbGQqm', '6075556'), - (1141, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'v4DbGQqm', '6079840'), - (1141, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'v4DbGQqm', '6083398'), - (1141, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'v4DbGQqm', '6093504'), - (1141, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'v4DbGQqm', '6097414'), - (1141, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'v4DbGQqm', '6097442'), - (1141, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'v4DbGQqm', '6097684'), - (1141, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'v4DbGQqm', '6098762'), - (1141, 2064, 'not_attending', '2023-06-24 16:27:07', '2025-12-17 19:46:50', 'v4DbGQqm', '6099988'), - (1141, 2065, 'not_attending', '2023-06-17 13:50:32', '2025-12-17 19:46:49', 'v4DbGQqm', '6101169'), - (1141, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'v4DbGQqm', '6101361'), - (1141, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'v4DbGQqm', '6101362'), - (1141, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'v4DbGQqm', '6107314'), - (1141, 2077, 'not_attending', '2023-06-17 13:50:38', '2025-12-17 19:46:49', 'v4DbGQqm', '6110217'), - (1141, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'v4DbGQqm', '6120034'), - (1141, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'v4DbGQqm', '6136733'), - (1141, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'v4DbGQqm', '6137989'), - (1141, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'v4DbGQqm', '6150864'), - (1141, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'v4DbGQqm', '6155491'), - (1141, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'v4DbGQqm', '6164417'), - (1141, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'v4DbGQqm', '6166388'), - (1141, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'v4DbGQqm', '6176439'), - (1141, 2123, 'maybe', '2023-06-29 11:09:36', '2025-12-17 19:46:50', 'v4DbGQqm', '6176502'), - (1141, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'v4DbGQqm', '6182410'), - (1141, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'v4DbGQqm', '6185812'), - (1141, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'v4DbGQqm', '6187651'), - (1141, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'v4DbGQqm', '6187963'), - (1141, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'v4DbGQqm', '6187964'), - (1141, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'v4DbGQqm', '6187966'), - (1141, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'v4DbGQqm', '6187967'), - (1141, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'v4DbGQqm', '6187969'), - (1141, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'v4DbGQqm', '6334878'), - (1141, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'v4DbGQqm', '6337236'), - (1141, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'v4DbGQqm', '6337970'), - (1141, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'v4DbGQqm', '6338308'), - (1141, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'v4DbGQqm', '6338342'), - (1141, 2159, 'not_attending', '2023-07-22 21:41:51', '2025-12-17 19:46:53', 'v4DbGQqm', '6338355'), - (1141, 2160, 'not_attending', '2023-07-29 21:33:04', '2025-12-17 19:46:54', 'v4DbGQqm', '6338358'), - (1141, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'v4DbGQqm', '6341710'), - (1141, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'v4DbGQqm', '6342044'), - (1141, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'v4DbGQqm', '6342298'), - (1141, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'v4DbGQqm', '6343294'), - (1141, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'v4DbGQqm', '6347034'), - (1141, 2177, 'not_attending', '2023-08-12 17:22:56', '2025-12-17 19:46:55', 'v4DbGQqm', '6347053'), - (1141, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'v4DbGQqm', '6347056'), - (1141, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'v4DbGQqm', '6353830'), - (1141, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'v4DbGQqm', '6353831'), - (1141, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'v4DbGQqm', '6357867'), - (1141, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'v4DbGQqm', '6358652'), - (1141, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'v4DbGQqm', '6358668'), - (1141, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'v4DbGQqm', '6358669'), - (1141, 2204, 'not_attending', '2023-08-19 21:33:56', '2025-12-17 19:46:55', 'v4DbGQqm', '6361542'), - (1141, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'v4DbGQqm', '6361709'), - (1141, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'v4DbGQqm', '6361710'), - (1141, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'v4DbGQqm', '6361711'), - (1141, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'v4DbGQqm', '6361712'), - (1141, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'v4DbGQqm', '6361713'), - (1141, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'v4DbGQqm', '6382573'), - (1141, 2239, 'not_attending', '2023-09-02 23:46:47', '2025-12-17 19:46:56', 'v4DbGQqm', '6387592'), - (1141, 2240, 'not_attending', '2023-09-09 21:44:39', '2025-12-17 19:46:56', 'v4DbGQqm', '6388603'), - (1141, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'v4DbGQqm', '6388604'), - (1141, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'v4DbGQqm', '6394629'), - (1141, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'v4DbGQqm', '6394631'), - (1141, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'v4DbGQqm', '6440863'), - (1141, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'v4DbGQqm', '6445440'), - (1141, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'v4DbGQqm', '6453951'), - (1141, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'v4DbGQqm', '6461696'), - (1141, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'v4DbGQqm', '6462129'), - (1141, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'v4DbGQqm', '6463218'), - (1141, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'v4DbGQqm', '6472181'), - (1141, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'v4DbGQqm', '6482693'), - (1141, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'v4DbGQqm', '6484200'), - (1141, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'v4DbGQqm', '6484680'), - (1141, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'v4DbGQqm', '6507741'), - (1141, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'v4DbGQqm', '6514659'), - (1141, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'v4DbGQqm', '6514660'), - (1141, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'v4DbGQqm', '6519103'), - (1141, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'v4DbGQqm', '6535681'), - (1141, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'v4DbGQqm', '6584747'), - (1141, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'v4DbGQqm', '6587097'), - (1141, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'v4DbGQqm', '6609022'), - (1141, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'v4DbGQqm', '6632757'), - (1141, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'v4DbGQqm', '6644187'), - (1141, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'v4DbGQqm', '6648951'), - (1141, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'v4DbGQqm', '6648952'), - (1141, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'v4DbGQqm', '6655401'), - (1141, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'v4DbGQqm', '6661585'), - (1141, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'v4DbGQqm', '6661588'), - (1141, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'v4DbGQqm', '6661589'), - (1141, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'v4DbGQqm', '6699906'), - (1141, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'v4DbGQqm', '6699913'), - (1141, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'v4DbGQqm', '6701109'), - (1141, 2419, 'not_attending', '2024-01-18 15:56:08', '2025-12-17 19:46:41', 'v4DbGQqm', '6704505'), - (1141, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'v4DbGQqm', '6704561'), - (1141, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'v4DbGQqm', '6705219'), - (1141, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'v4DbGQqm', '6708410'), - (1141, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'v4DbGQqm', '6710153'), - (1141, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'v4DbGQqm', '6711552'), - (1141, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'v4DbGQqm', '6711553'), - (1141, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'v4DbGQqm', '6722688'), - (1141, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'v4DbGQqm', '6730620'), - (1141, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'v4DbGQqm', '6730642'), - (1141, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'v4DbGQqm', '6740364'), - (1141, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'v4DbGQqm', '6743829'), - (1141, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'v4DbGQqm', '7030380'), - (1141, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'v4DbGQqm', '7033677'), - (1141, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'v4DbGQqm', '7035415'), - (1141, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'v4DbGQqm', '7044715'), - (1141, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'v4DbGQqm', '7050318'), - (1141, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'v4DbGQqm', '7050319'), - (1141, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'v4DbGQqm', '7050322'), - (1141, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'v4DbGQqm', '7057804'), - (1141, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'v4DbGQqm', '7072824'), - (1141, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'v4DbGQqm', '7074348'), - (1141, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'v4DbGQqm', '7074364'), - (1141, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'v4DbGQqm', '7089267'), - (1141, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'v4DbGQqm', '7098747'), - (1141, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'v4DbGQqm', '7113468'), - (1141, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'v4DbGQqm', '7114856'), - (1141, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'v4DbGQqm', '7114951'), - (1141, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'v4DbGQqm', '7114955'), - (1141, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'v4DbGQqm', '7114956'), - (1141, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'v4DbGQqm', '7114957'), - (1141, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'v4DbGQqm', '7153615'), - (1141, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'v4DbGQqm', '7159484'), - (1141, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'v4DbGQqm', '7178446'), - (1141, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'v4DbGQqm', '7220467'), - (1141, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'v4DbGQqm', '7240354'), - (1141, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'v4DbGQqm', '7251633'), - (1141, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'v4DbGQqm', '7302674'), - (1141, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'v4DbGQqm', '7324073'), - (1141, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'v4DbGQqm', '7324074'), - (1141, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'v4DbGQqm', '7324075'), - (1141, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'v4DbGQqm', '7324078'), - (1141, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'v4DbGQqm', '7324082'), - (1141, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'v4DbGQqm', '7331457'), - (1141, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'v4DbGQqm', '7363643'), - (1141, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'v4DbGQqm', '7368606'), - (1141, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'v4DbGQqm', '7397462'), - (1141, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'v4DbGQqm', '7424275'), - (1141, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'v4DbGQqm', '7432751'), - (1141, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'v4DbGQqm', '7432752'), - (1141, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'v4DbGQqm', '7432753'), - (1141, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'v4DbGQqm', '7432754'), - (1141, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'v4DbGQqm', '7432755'), - (1141, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'v4DbGQqm', '7432756'), - (1141, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'v4DbGQqm', '7432758'), - (1141, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'v4DbGQqm', '7432759'), - (1141, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'v4DbGQqm', '7433834'), - (1141, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'v4DbGQqm', '7470197'), - (1141, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'v4DbGQqm', '7685613'), - (1141, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'v4DbGQqm', '7688194'), - (1141, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'v4DbGQqm', '7688196'), - (1141, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'v4DbGQqm', '7688289'), - (1141, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'v4DbGQqm', '7692763'), - (1141, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'v4DbGQqm', '7697552'), - (1141, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'v4DbGQqm', '7699878'), - (1141, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'v4DbGQqm', '7704043'), - (1141, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'v4DbGQqm', '7712467'), - (1141, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'v4DbGQqm', '7713585'), - (1141, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'v4DbGQqm', '7713586'), - (1141, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'v4DbGQqm', '7738518'), - (1141, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'v4DbGQqm', '7750636'), - (1141, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'v4DbGQqm', '7796540'), - (1141, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'v4DbGQqm', '7796541'), - (1141, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'v4DbGQqm', '7796542'), - (1141, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'v4DbGQqm', '7825913'), - (1141, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'v4DbGQqm', '7826209'), - (1141, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'v4DbGQqm', '7834742'), - (1141, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'v4DbGQqm', '7842108'), - (1141, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'v4DbGQqm', '7842902'), - (1141, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'v4DbGQqm', '7842903'), - (1141, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'v4DbGQqm', '7842904'), - (1141, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'v4DbGQqm', '7842905'), - (1141, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'v4DbGQqm', '7855719'), - (1141, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'v4DbGQqm', '7860683'), - (1141, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'v4DbGQqm', '7860684'), - (1141, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'v4DbGQqm', '7866095'), - (1141, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'v4DbGQqm', '7869170'), - (1141, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'v4DbGQqm', '7869188'), - (1141, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'v4DbGQqm', '7869201'), - (1141, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'v4DbGQqm', '7877465'), - (1141, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'v4DbGQqm', '7888250'), - (1141, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'v4DbGQqm', '7904777'), - (1141, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'v4DbGQqm', '8349164'), - (1141, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'v4DbGQqm', '8349545'), - (1141, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'v4DbGQqm', '8368028'), - (1141, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'v4DbGQqm', '8368029'), - (1141, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'v4DbGQqm', '8388462'), - (1141, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'v4DbGQqm', '8400273'), - (1141, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'v4DbGQqm', '8400275'), - (1141, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'v4DbGQqm', '8400276'), - (1141, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'v4DbGQqm', '8404977'), - (1141, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'v4DbGQqm', '8430783'), - (1141, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'v4DbGQqm', '8430784'), - (1141, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'v4DbGQqm', '8430799'), - (1141, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'v4DbGQqm', '8430800'), - (1141, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'v4DbGQqm', '8430801'), - (1141, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'v4DbGQqm', '8438709'), - (1141, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'v4DbGQqm', '8457738'), - (1141, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'v4DbGQqm', '8459566'), - (1141, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'v4DbGQqm', '8459567'), - (1141, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'v4DbGQqm', '8461032'), - (1141, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'v4DbGQqm', '8477877'), - (1141, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'v4DbGQqm', '8485688'), - (1141, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'v4DbGQqm', '8490587'), - (1141, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'v4DbGQqm', '8493552'), - (1141, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'v4DbGQqm', '8493553'), - (1141, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'v4DbGQqm', '8493554'), - (1141, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'v4DbGQqm', '8493555'), - (1141, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'v4DbGQqm', '8493556'), - (1141, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'v4DbGQqm', '8493557'), - (1141, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'v4DbGQqm', '8493558'), - (1141, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'v4DbGQqm', '8493559'), - (1141, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'v4DbGQqm', '8493560'), - (1141, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'v4DbGQqm', '8493561'), - (1141, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'v4DbGQqm', '8493572'), - (1141, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'v4DbGQqm', '8540725'), - (1141, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'v4DbGQqm', '8555421'), - (1142, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4DrX66Mm', '8540725'), - (1142, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4DrX66Mm', '8555421'), - (1142, 3324, 'not_attending', '2025-11-18 00:10:55', '2025-12-17 19:46:14', '4DrX66Mm', '8556406'), - (1142, 3330, 'not_attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', '4DrX66Mm', '8561720'), - (1165, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mqM2p0Lm', '8477877'), - (1165, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mqM2p0Lm', '8485688'), - (1165, 3234, 'not_attending', '2025-08-15 02:57:03', '2025-12-17 19:46:17', 'mqM2p0Lm', '8488773'), - (1165, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mqM2p0Lm', '8490587'), - (1165, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mqM2p0Lm', '8493552'), - (1165, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'mqM2p0Lm', '8493553'), - (1165, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mqM2p0Lm', '8493554'), - (1165, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mqM2p0Lm', '8493555'), - (1165, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mqM2p0Lm', '8493556'), - (1165, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mqM2p0Lm', '8493557'), - (1165, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mqM2p0Lm', '8493558'), - (1165, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mqM2p0Lm', '8493559'), - (1165, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mqM2p0Lm', '8493560'), - (1165, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'mqM2p0Lm', '8493561'), - (1165, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mqM2p0Lm', '8493572'), - (1165, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'mqM2p0Lm', '8529058'), - (1166, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mG2vprPd', '4420747'), - (1166, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mG2vprPd', '4568602'), - (1166, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mG2vprPd', '4572153'), - (1166, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mG2vprPd', '4585962'), - (1166, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mG2vprPd', '4596356'), - (1166, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'mG2vprPd', '4598860'), - (1166, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'mG2vprPd', '4598861'), - (1166, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'mG2vprPd', '4602797'), - (1166, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'mG2vprPd', '4637896'), - (1166, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mG2vprPd', '4642994'), - (1166, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mG2vprPd', '4642995'), - (1166, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mG2vprPd', '4642996'), - (1166, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mG2vprPd', '4642997'), - (1166, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mG2vprPd', '4645687'), - (1166, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mG2vprPd', '4645698'), - (1166, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mG2vprPd', '4645704'), - (1166, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mG2vprPd', '4645705'), - (1166, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mG2vprPd', '4668385'), - (1166, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mG2vprPd', '6045684'), - (1167, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '841vDPwd', '3539921'), - (1167, 802, 'attending', '2021-05-12 21:40:14', '2025-12-17 19:47:46', '841vDPwd', '3803310'), - (1167, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841vDPwd', '6045684'), - (1168, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dKZw1pR4', '6101361'), - (1168, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dKZw1pR4', '6136733'), - (1168, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dKZw1pR4', '6137989'), - (1168, 2098, 'not_attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dKZw1pR4', '6139831'), - (1168, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dKZw1pR4', '6150864'), - (1168, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKZw1pR4', '6155491'), - (1168, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKZw1pR4', '6164417'), - (1168, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKZw1pR4', '6166388'), - (1168, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKZw1pR4', '6176439'), - (1168, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'dKZw1pR4', '6177485'), - (1168, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKZw1pR4', '6182410'), - (1168, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKZw1pR4', '6185812'), - (1168, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKZw1pR4', '6187651'), - (1168, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKZw1pR4', '6187963'), - (1168, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKZw1pR4', '6187964'), - (1168, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKZw1pR4', '6187966'), - (1168, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKZw1pR4', '6187967'), - (1168, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKZw1pR4', '6187969'), - (1168, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKZw1pR4', '6334878'), - (1169, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', '2d26ywPd', '3149493'), - (1169, 393, 'maybe', '2021-06-23 23:16:18', '2025-12-17 19:47:38', '2d26ywPd', '3236448'), - (1169, 823, 'attending', '2021-06-22 16:31:44', '2025-12-17 19:47:48', '2d26ywPd', '3974109'), - (1169, 829, 'attending', '2021-06-21 19:38:53', '2025-12-17 19:47:47', '2d26ywPd', '3976202'), - (1169, 844, 'not_attending', '2021-06-21 14:59:45', '2025-12-17 19:47:38', '2d26ywPd', '4014338'), - (1169, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '2d26ywPd', '4021848'), - (1169, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '2d26ywPd', '4136937'), - (1169, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '2d26ywPd', '4136938'), - (1169, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '2d26ywPd', '4136947'), - (1169, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '2d26ywPd', '4210314'), - (1169, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '2d26ywPd', '4225444'), - (1169, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '2d26ywPd', '4229417'), - (1169, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '2d26ywPd', '4229418'), - (1169, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '2d26ywPd', '4239259'), - (1169, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '2d26ywPd', '4240316'), - (1169, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '2d26ywPd', '4250163'), - (1169, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '2d26ywPd', '4275957'), - (1169, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d26ywPd', '6045684'), - (1170, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4EnnRNDd', '5441131'), - (1170, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4EnnRNDd', '5441132'), - (1170, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4EnnRNDd', '5461278'), - (1170, 1562, 'attending', '2022-08-14 17:14:30', '2025-12-17 19:47:22', '4EnnRNDd', '5469480'), - (1170, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4EnnRNDd', '5488912'), - (1170, 1584, 'maybe', '2022-08-26 21:35:49', '2025-12-17 19:47:23', '4EnnRNDd', '5492004'), - (1170, 1586, 'not_attending', '2022-08-14 17:14:20', '2025-12-17 19:47:23', '4EnnRNDd', '5492019'), - (1170, 1594, 'attending', '2022-08-09 21:25:39', '2025-12-17 19:47:22', '4EnnRNDd', '5495523'), - (1170, 1595, 'attending', '2022-08-11 02:39:06', '2025-12-17 19:47:22', '4EnnRNDd', '5495736'), - (1170, 1597, 'attending', '2022-08-14 17:14:11', '2025-12-17 19:47:22', '4EnnRNDd', '5496566'), - (1170, 1598, 'attending', '2022-08-16 19:49:11', '2025-12-17 19:47:22', '4EnnRNDd', '5496567'), - (1170, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4EnnRNDd', '5502188'), - (1170, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4EnnRNDd', '5505059'), - (1170, 1609, 'attending', '2022-08-21 19:29:58', '2025-12-17 19:47:23', '4EnnRNDd', '5506590'), - (1170, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4EnnRNDd', '5509055'), - (1170, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4EnnRNDd', '5512862'), - (1170, 1620, 'not_attending', '2022-08-23 02:18:00', '2025-12-17 19:47:23', '4EnnRNDd', '5513046'), - (1170, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4EnnRNDd', '5513985'), - (1170, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '4EnnRNDd', '5519981'), - (1170, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4EnnRNDd', '5522550'), - (1170, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4EnnRNDd', '5534683'), - (1170, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4EnnRNDd', '5537735'), - (1170, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4EnnRNDd', '5540859'), - (1170, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4EnnRNDd', '5546619'), - (1170, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4EnnRNDd', '5555245'), - (1170, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4EnnRNDd', '5557747'), - (1170, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4EnnRNDd', '5560255'), - (1170, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4EnnRNDd', '5562906'), - (1170, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4EnnRNDd', '5600604'), - (1170, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4EnnRNDd', '5605544'), - (1170, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', '4EnnRNDd', '5606737'), - (1170, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4EnnRNDd', '5630960'), - (1170, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4EnnRNDd', '5630961'), - (1170, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4EnnRNDd', '5630962'), - (1170, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4EnnRNDd', '5630966'), - (1170, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4EnnRNDd', '5630967'), - (1170, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4EnnRNDd', '5630968'), - (1170, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4EnnRNDd', '5635406'), - (1170, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4EnnRNDd', '5638765'), - (1170, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4EnnRNDd', '5640097'), - (1170, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4EnnRNDd', '5640843'), - (1170, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4EnnRNDd', '5641521'), - (1170, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4EnnRNDd', '5642818'), - (1170, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4EnnRNDd', '5652395'), - (1170, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4EnnRNDd', '5670445'), - (1170, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4EnnRNDd', '5671637'), - (1170, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4EnnRNDd', '5672329'), - (1170, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4EnnRNDd', '5674057'), - (1170, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4EnnRNDd', '5674060'), - (1170, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4EnnRNDd', '5677461'), - (1170, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4EnnRNDd', '5698046'), - (1170, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4EnnRNDd', '5699760'), - (1170, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4EnnRNDd', '5741601'), - (1170, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4EnnRNDd', '5763458'), - (1170, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4EnnRNDd', '5774172'), - (1170, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4EnnRNDd', '5818247'), - (1170, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4EnnRNDd', '5819471'), - (1170, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4EnnRNDd', '5827739'), - (1170, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4EnnRNDd', '5844306'), - (1170, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4EnnRNDd', '5850159'), - (1170, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4EnnRNDd', '5858999'), - (1170, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4EnnRNDd', '5871984'), - (1170, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4EnnRNDd', '5876354'), - (1170, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4EnnRNDd', '5880939'), - (1170, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4EnnRNDd', '5887890'), - (1170, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4EnnRNDd', '5888598'), - (1170, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4EnnRNDd', '5893260'), - (1170, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4EnnRNDd', '6045684'), - (1171, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'Pm7DrZYA', '3149489'), - (1171, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'Pm7DrZYA', '3236450'), - (1171, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'Pm7DrZYA', '3236452'), - (1171, 646, 'not_attending', '2021-05-13 00:01:49', '2025-12-17 19:47:46', 'Pm7DrZYA', '3539921'), - (1171, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Pm7DrZYA', '3539922'), - (1171, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Pm7DrZYA', '3539923'), - (1171, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Pm7DrZYA', '3806392'), - (1171, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'Pm7DrZYA', '3963335'), - (1171, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7DrZYA', '3975311'), - (1171, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7DrZYA', '3994992'), - (1171, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7DrZYA', '6045684'), - (1172, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ9Be37A', '6045684'), - (1173, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVgaBEqm', '5880942'), - (1173, 1869, 'attending', '2023-02-24 17:17:24', '2025-12-17 19:47:09', 'dVgaBEqm', '5880943'), - (1173, 1885, 'attending', '2023-02-23 23:17:40', '2025-12-17 19:47:08', 'dVgaBEqm', '5899928'), - (1173, 1886, 'attending', '2023-02-24 17:17:26', '2025-12-17 19:47:09', 'dVgaBEqm', '5899930'), - (1173, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVgaBEqm', '5900200'), - (1173, 1891, 'attending', '2023-03-21 20:36:41', '2025-12-17 19:46:56', 'dVgaBEqm', '5900202'), - (1173, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVgaBEqm', '5900203'), - (1173, 1916, 'attending', '2023-02-20 04:07:36', '2025-12-17 19:47:08', 'dVgaBEqm', '5910526'), - (1173, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dVgaBEqm', '5910528'), - (1173, 1925, 'attending', '2023-02-23 23:17:31', '2025-12-17 19:47:08', 'dVgaBEqm', '5932619'), - (1173, 1926, 'attending', '2023-02-24 17:17:14', '2025-12-17 19:47:08', 'dVgaBEqm', '5932620'), - (1173, 1930, 'attending', '2023-02-23 00:00:48', '2025-12-17 19:47:08', 'dVgaBEqm', '5933462'), - (1173, 1931, 'attending', '2023-02-23 00:01:03', '2025-12-17 19:47:08', 'dVgaBEqm', '5933464'), - (1173, 1932, 'attending', '2023-02-20 17:07:30', '2025-12-17 19:47:07', 'dVgaBEqm', '5935303'), - (1173, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVgaBEqm', '5936234'), - (1173, 1935, 'attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVgaBEqm', '5958351'), - (1173, 1936, 'attending', '2023-02-24 17:16:25', '2025-12-17 19:47:08', 'dVgaBEqm', '5959397'), - (1173, 1938, 'attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVgaBEqm', '5959751'), - (1173, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVgaBEqm', '5959755'), - (1173, 1940, 'attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVgaBEqm', '5960055'), - (1173, 1941, 'maybe', '2023-02-25 03:31:22', '2025-12-17 19:47:09', 'dVgaBEqm', '5961684'), - (1173, 1942, 'maybe', '2023-02-26 19:22:17', '2025-12-17 19:47:08', 'dVgaBEqm', '5962085'), - (1173, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dVgaBEqm', '5962132'), - (1173, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVgaBEqm', '5962133'), - (1173, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVgaBEqm', '5962134'), - (1173, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVgaBEqm', '5962317'), - (1173, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVgaBEqm', '5962318'), - (1173, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dVgaBEqm', '5965933'), - (1173, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVgaBEqm', '5967014'), - (1173, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVgaBEqm', '5972815'), - (1173, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVgaBEqm', '5974016'), - (1173, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVgaBEqm', '5981515'), - (1173, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVgaBEqm', '5993516'), - (1173, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVgaBEqm', '5998939'), - (1173, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVgaBEqm', '6028191'), - (1173, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVgaBEqm', '6040066'), - (1173, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVgaBEqm', '6042717'), - (1173, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVgaBEqm', '6044838'), - (1173, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVgaBEqm', '6044839'), - (1173, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVgaBEqm', '6045684'), - (1173, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVgaBEqm', '6050104'), - (1173, 1996, 'attending', '2023-04-03 22:53:30', '2025-12-17 19:46:58', 'dVgaBEqm', '6050667'), - (1173, 2005, 'maybe', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVgaBEqm', '6053195'), - (1173, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVgaBEqm', '6053198'), - (1173, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVgaBEqm', '6056085'), - (1173, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVgaBEqm', '6056916'), - (1173, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVgaBEqm', '6059290'), - (1173, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVgaBEqm', '6060328'), - (1173, 2014, 'maybe', '2023-04-11 23:38:33', '2025-12-17 19:46:59', 'dVgaBEqm', '6060337'), - (1173, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVgaBEqm', '6061037'), - (1173, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVgaBEqm', '6061039'), - (1173, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVgaBEqm', '6067245'), - (1173, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVgaBEqm', '6068094'), - (1173, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVgaBEqm', '6068252'), - (1173, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVgaBEqm', '6068253'), - (1173, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVgaBEqm', '6068254'), - (1173, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVgaBEqm', '6068280'), - (1173, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVgaBEqm', '6069093'), - (1173, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVgaBEqm', '6072528'), - (1173, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVgaBEqm', '6079840'), - (1173, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVgaBEqm', '6083398'), - (1173, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVgaBEqm', '6093504'), - (1173, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVgaBEqm', '6097414'), - (1173, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVgaBEqm', '6097442'), - (1173, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVgaBEqm', '6097684'), - (1173, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVgaBEqm', '6098762'), - (1173, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVgaBEqm', '6101362'), - (1173, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVgaBEqm', '6103752'), - (1173, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVgaBEqm', '6107314'), - (1174, 1507, 'attending', '2022-07-30 00:19:51', '2025-12-17 19:47:19', 'dOjDg7O4', '5433100'), - (1174, 1515, 'attending', '2022-08-06 16:06:12', '2025-12-17 19:47:21', 'dOjDg7O4', '5441128'), - (1174, 1517, 'attending', '2022-08-27 20:36:40', '2025-12-17 19:47:23', 'dOjDg7O4', '5441130'), - (1174, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dOjDg7O4', '5441131'), - (1174, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dOjDg7O4', '5441132'), - (1174, 1538, 'attending', '2022-08-01 00:34:26', '2025-12-17 19:47:21', 'dOjDg7O4', '5449565'), - (1174, 1543, 'attending', '2022-07-30 04:07:58', '2025-12-17 19:47:21', 'dOjDg7O4', '5454516'), - (1174, 1557, 'attending', '2022-08-02 22:24:20', '2025-12-17 19:47:21', 'dOjDg7O4', '5458729'), - (1174, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dOjDg7O4', '5461278'), - (1174, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dOjDg7O4', '5469480'), - (1174, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'dOjDg7O4', '5471073'), - (1174, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dOjDg7O4', '5482022'), - (1174, 1576, 'attending', '2022-08-02 22:05:13', '2025-12-17 19:47:21', 'dOjDg7O4', '5482623'), - (1174, 1577, 'attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dOjDg7O4', '5482793'), - (1174, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dOjDg7O4', '5488912'), - (1174, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dOjDg7O4', '5492192'), - (1174, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dOjDg7O4', '5493139'), - (1174, 1589, 'attending', '2022-08-21 18:35:19', '2025-12-17 19:47:23', 'dOjDg7O4', '5493159'), - (1174, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dOjDg7O4', '5493200'), - (1174, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dOjDg7O4', '5502188'), - (1174, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dOjDg7O4', '5505059'), - (1174, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dOjDg7O4', '5509055'), - (1174, 1618, 'attending', '2022-08-28 15:06:53', '2025-12-17 19:47:23', 'dOjDg7O4', '5512005'), - (1174, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dOjDg7O4', '5512862'), - (1174, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dOjDg7O4', '5513985'), - (1174, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'dOjDg7O4', '5519981'), - (1174, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dOjDg7O4', '5522550'), - (1174, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dOjDg7O4', '5534683'), - (1174, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dOjDg7O4', '5537735'), - (1174, 1640, 'attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dOjDg7O4', '5540859'), - (1174, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dOjDg7O4', '5546619'), - (1174, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dOjDg7O4', '5555245'), - (1174, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dOjDg7O4', '5557747'), - (1174, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dOjDg7O4', '5560255'), - (1174, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dOjDg7O4', '5562906'), - (1174, 1668, 'maybe', '2022-10-01 16:56:28', '2025-12-17 19:47:12', 'dOjDg7O4', '5563222'), - (1174, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dOjDg7O4', '5600604'), - (1174, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dOjDg7O4', '5605544'), - (1174, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'dOjDg7O4', '5606737'), - (1174, 1708, 'attending', '2022-10-05 21:54:17', '2025-12-17 19:47:12', 'dOjDg7O4', '5617648'), - (1174, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dOjDg7O4', '5630960'), - (1174, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dOjDg7O4', '5630961'), - (1174, 1723, 'attending', '2022-11-01 20:52:33', '2025-12-17 19:47:15', 'dOjDg7O4', '5630962'), - (1174, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOjDg7O4', '5630966'), - (1174, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOjDg7O4', '5630967'), - (1174, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOjDg7O4', '5630968'), - (1174, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dOjDg7O4', '5635406'), - (1174, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dOjDg7O4', '5638765'), - (1174, 1739, 'attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dOjDg7O4', '5640097'), - (1174, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dOjDg7O4', '5640843'), - (1174, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dOjDg7O4', '5641521'), - (1174, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOjDg7O4', '5642818'), - (1174, 1747, 'attending', '2022-10-23 16:39:16', '2025-12-17 19:47:13', 'dOjDg7O4', '5648009'), - (1174, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dOjDg7O4', '5652395'), - (1174, 1754, 'attending', '2022-10-18 20:44:57', '2025-12-17 19:47:12', 'dOjDg7O4', '5659773'), - (1174, 1755, 'attending', '2022-10-18 21:17:16', '2025-12-17 19:47:12', 'dOjDg7O4', '5659774'), - (1174, 1756, 'attending', '2022-10-24 20:32:38', '2025-12-17 19:47:13', 'dOjDg7O4', '5663338'), - (1174, 1760, 'attending', '2022-10-21 23:04:13', '2025-12-17 19:47:13', 'dOjDg7O4', '5669463'), - (1174, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOjDg7O4', '5670445'), - (1174, 1764, 'attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dOjDg7O4', '5671637'), - (1174, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dOjDg7O4', '5672329'), - (1174, 1766, 'attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dOjDg7O4', '5674057'), - (1174, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dOjDg7O4', '5674060'), - (1174, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dOjDg7O4', '5677461'), - (1174, 1781, 'attending', '2022-11-02 21:46:38', '2025-12-17 19:47:15', 'dOjDg7O4', '5696178'), - (1174, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOjDg7O4', '5698046'), - (1174, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dOjDg7O4', '5699760'), - (1174, 1794, 'attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOjDg7O4', '5741601'), - (1174, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOjDg7O4', '5763458'), - (1174, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOjDg7O4', '5774172'), - (1174, 1832, 'maybe', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'dOjDg7O4', '5818247'), - (1174, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOjDg7O4', '5819471'), - (1174, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOjDg7O4', '5827739'), - (1174, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOjDg7O4', '5844306'), - (1174, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOjDg7O4', '5850159'), - (1174, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOjDg7O4', '5858999'), - (1174, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOjDg7O4', '5871984'), - (1174, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOjDg7O4', '5876354'), - (1174, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOjDg7O4', '5880939'), - (1174, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOjDg7O4', '5887890'), - (1174, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOjDg7O4', '5888598'), - (1174, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOjDg7O4', '5893260'), - (1174, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOjDg7O4', '6045684'), - (1175, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd5wN5bqA', '5900202'), - (1175, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd5wN5bqA', '5900203'), - (1175, 1917, 'not_attending', '2023-03-12 22:26:03', '2025-12-17 19:47:10', 'd5wN5bqA', '5910528'), - (1175, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'd5wN5bqA', '5962317'), - (1175, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'd5wN5bqA', '5962318'), - (1175, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd5wN5bqA', '5965933'), - (1175, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd5wN5bqA', '5993516'), - (1175, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd5wN5bqA', '5998939'), - (1175, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd5wN5bqA', '6028191'), - (1175, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd5wN5bqA', '6040066'), - (1175, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd5wN5bqA', '6042717'), - (1175, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd5wN5bqA', '6044838'), - (1175, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd5wN5bqA', '6044839'), - (1175, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd5wN5bqA', '6045684'), - (1175, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'd5wN5bqA', '6048955'), - (1175, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd5wN5bqA', '6050104'), - (1175, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd5wN5bqA', '6053195'), - (1175, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd5wN5bqA', '6053198'), - (1175, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd5wN5bqA', '6056085'), - (1175, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd5wN5bqA', '6056916'), - (1175, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd5wN5bqA', '6059290'), - (1175, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd5wN5bqA', '6060328'), - (1175, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd5wN5bqA', '6061037'), - (1175, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd5wN5bqA', '6061039'), - (1175, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd5wN5bqA', '6067245'), - (1175, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd5wN5bqA', '6068094'), - (1175, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd5wN5bqA', '6068252'), - (1175, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd5wN5bqA', '6068253'), - (1175, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd5wN5bqA', '6068254'), - (1175, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd5wN5bqA', '6068280'), - (1175, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd5wN5bqA', '6069093'), - (1175, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd5wN5bqA', '6072528'), - (1175, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd5wN5bqA', '6079840'), - (1175, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd5wN5bqA', '6083398'), - (1175, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd5wN5bqA', '6093504'), - (1175, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd5wN5bqA', '6097414'), - (1175, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd5wN5bqA', '6097442'), - (1175, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd5wN5bqA', '6097684'), - (1175, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd5wN5bqA', '6098762'), - (1175, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd5wN5bqA', '6101362'), - (1175, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd5wN5bqA', '6107314'), - (1175, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd5wN5bqA', '6120034'), - (1176, 871, 'maybe', '2021-07-06 09:08:04', '2025-12-17 19:47:39', 'oAg03eq4', '4136938'), - (1176, 872, 'maybe', '2021-07-21 13:32:30', '2025-12-17 19:47:40', 'oAg03eq4', '4136947'), - (1176, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAg03eq4', '4210314'), - (1176, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAg03eq4', '4225444'), - (1176, 893, 'not_attending', '2021-07-23 04:00:52', '2025-12-17 19:47:40', 'oAg03eq4', '4229420'), - (1176, 894, 'attending', '2021-07-18 23:25:09', '2025-12-17 19:47:39', 'oAg03eq4', '4229423'), - (1176, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAg03eq4', '4240316'), - (1176, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAg03eq4', '4240317'), - (1176, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAg03eq4', '4240318'), - (1176, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'oAg03eq4', '4240320'), - (1176, 916, 'maybe', '2021-07-21 12:58:27', '2025-12-17 19:47:40', 'oAg03eq4', '4273772'), - (1176, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAg03eq4', '4275957'), - (1176, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAg03eq4', '4277819'), - (1176, 922, 'maybe', '2021-07-24 19:25:53', '2025-12-17 19:47:40', 'oAg03eq4', '4280811'), - (1176, 923, 'not_attending', '2021-07-23 06:50:25', '2025-12-17 19:47:40', 'oAg03eq4', '4292773'), - (1176, 924, 'not_attending', '2021-07-23 18:00:20', '2025-12-17 19:47:40', 'oAg03eq4', '4297137'), - (1176, 933, 'maybe', '2021-07-28 14:00:08', '2025-12-17 19:47:40', 'oAg03eq4', '4301723'), - (1176, 934, 'attending', '2021-08-04 17:06:30', '2025-12-17 19:47:40', 'oAg03eq4', '4302093'), - (1176, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAg03eq4', '4304151'), - (1176, 939, 'attending', '2021-07-30 21:03:20', '2025-12-17 19:47:40', 'oAg03eq4', '4308354'), - (1176, 943, 'attending', '2021-08-01 21:09:16', '2025-12-17 19:47:41', 'oAg03eq4', '4310979'), - (1176, 944, 'attending', '2021-08-03 21:22:52', '2025-12-17 19:47:41', 'oAg03eq4', '4310980'), - (1176, 945, 'attending', '2021-08-17 00:32:09', '2025-12-17 19:47:42', 'oAg03eq4', '4310981'), - (1176, 954, 'attending', '2021-08-03 21:24:06', '2025-12-17 19:47:41', 'oAg03eq4', '4331303'), - (1176, 958, 'not_attending', '2021-08-11 11:54:02', '2025-12-17 19:47:41', 'oAg03eq4', '4342996'), - (1176, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAg03eq4', '4356801'), - (1176, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAg03eq4', '4366186'), - (1176, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAg03eq4', '4366187'), - (1176, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'oAg03eq4', '4420735'), - (1176, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'oAg03eq4', '4420738'), - (1176, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAg03eq4', '4420739'), - (1176, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAg03eq4', '4420741'), - (1176, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAg03eq4', '4420744'), - (1176, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAg03eq4', '4420747'), - (1176, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAg03eq4', '4420748'), - (1176, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAg03eq4', '4420749'), - (1176, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAg03eq4', '4461883'), - (1176, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAg03eq4', '4508342'), - (1176, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAg03eq4', '4568602'), - (1176, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAg03eq4', '6045684'), - (1177, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9nV8Wpm', '6045684'), - (1178, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dN9ZOJy4', '5195095'), - (1178, 1306, 'not_attending', '2022-04-05 19:30:52', '2025-12-17 19:47:26', 'dN9ZOJy4', '5223682'), - (1178, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dN9ZOJy4', '5223686'), - (1178, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dN9ZOJy4', '5227432'), - (1178, 1314, 'maybe', '2022-04-11 11:19:44', '2025-12-17 19:47:27', 'dN9ZOJy4', '5233137'), - (1178, 1339, 'attending', '2022-04-16 11:07:20', '2025-12-17 19:47:27', 'dN9ZOJy4', '5245284'), - (1178, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dN9ZOJy4', '5247467'), - (1178, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dN9ZOJy4', '5260800'), - (1178, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dN9ZOJy4', '5269930'), - (1178, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dN9ZOJy4', '5271448'), - (1178, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dN9ZOJy4', '5271449'), - (1178, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dN9ZOJy4', '5276469'), - (1178, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'dN9ZOJy4', '5277078'), - (1178, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dN9ZOJy4', '5278159'), - (1178, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dN9ZOJy4', '5363695'), - (1178, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dN9ZOJy4', '5365960'), - (1178, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dN9ZOJy4', '5368973'), - (1178, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dN9ZOJy4', '5378247'), - (1178, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dN9ZOJy4', '5389605'), - (1178, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dN9ZOJy4', '5397265'), - (1178, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dN9ZOJy4', '5403967'), - (1178, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dN9ZOJy4', '5404786'), - (1178, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dN9ZOJy4', '5405203'), - (1178, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dN9ZOJy4', '5411699'), - (1178, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dN9ZOJy4', '5412550'), - (1178, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dN9ZOJy4', '5415046'), - (1178, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dN9ZOJy4', '5422086'), - (1178, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dN9ZOJy4', '5422406'), - (1178, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dN9ZOJy4', '5424565'), - (1178, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dN9ZOJy4', '5426882'), - (1178, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dN9ZOJy4', '5427083'), - (1178, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dN9ZOJy4', '5441125'), - (1178, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dN9ZOJy4', '5441126'), - (1178, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dN9ZOJy4', '5441128'), - (1178, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dN9ZOJy4', '5441131'), - (1178, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dN9ZOJy4', '5441132'), - (1178, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dN9ZOJy4', '5446643'), - (1178, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dN9ZOJy4', '5453325'), - (1178, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dN9ZOJy4', '5454516'), - (1178, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dN9ZOJy4', '5454605'), - (1178, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dN9ZOJy4', '5455037'), - (1178, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dN9ZOJy4', '5461278'), - (1178, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dN9ZOJy4', '5469480'), - (1178, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dN9ZOJy4', '5471073'), - (1178, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dN9ZOJy4', '5474663'), - (1178, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dN9ZOJy4', '5482022'), - (1178, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dN9ZOJy4', '5482793'), - (1178, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dN9ZOJy4', '5488912'), - (1178, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dN9ZOJy4', '5492192'), - (1178, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dN9ZOJy4', '5493139'), - (1178, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dN9ZOJy4', '5493200'), - (1178, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dN9ZOJy4', '5502188'), - (1178, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dN9ZOJy4', '5505059'), - (1178, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dN9ZOJy4', '5509055'), - (1178, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dN9ZOJy4', '5512862'), - (1178, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dN9ZOJy4', '5513985'), - (1178, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dN9ZOJy4', '5519981'), - (1178, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dN9ZOJy4', '5522550'), - (1178, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dN9ZOJy4', '5534683'), - (1178, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dN9ZOJy4', '5537735'), - (1178, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dN9ZOJy4', '5540859'), - (1178, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dN9ZOJy4', '5546619'), - (1178, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dN9ZOJy4', '5555245'), - (1178, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dN9ZOJy4', '5557747'), - (1178, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dN9ZOJy4', '5560255'), - (1178, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dN9ZOJy4', '5562906'), - (1178, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dN9ZOJy4', '5600604'), - (1178, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dN9ZOJy4', '5605544'), - (1178, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'dN9ZOJy4', '5606737'), - (1178, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dN9ZOJy4', '5630960'), - (1178, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dN9ZOJy4', '5630961'), - (1178, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dN9ZOJy4', '5630962'), - (1178, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dN9ZOJy4', '5630966'), - (1178, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dN9ZOJy4', '5630967'), - (1178, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dN9ZOJy4', '5630968'), - (1178, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dN9ZOJy4', '5635406'), - (1178, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dN9ZOJy4', '5638765'), - (1178, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dN9ZOJy4', '5640097'), - (1178, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dN9ZOJy4', '5640843'), - (1178, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dN9ZOJy4', '5641521'), - (1178, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dN9ZOJy4', '5642818'), - (1178, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dN9ZOJy4', '5652395'), - (1178, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dN9ZOJy4', '5670445'), - (1178, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dN9ZOJy4', '5671637'), - (1178, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dN9ZOJy4', '5672329'), - (1178, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dN9ZOJy4', '5674057'), - (1178, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dN9ZOJy4', '5674060'), - (1178, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dN9ZOJy4', '5677461'), - (1178, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dN9ZOJy4', '5698046'), - (1178, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dN9ZOJy4', '5699760'), - (1178, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dN9ZOJy4', '5741601'), - (1178, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dN9ZOJy4', '5763458'), - (1178, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dN9ZOJy4', '5774172'), - (1178, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dN9ZOJy4', '5818247'), - (1178, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dN9ZOJy4', '5819471'), - (1178, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dN9ZOJy4', '5827739'), - (1178, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dN9ZOJy4', '5844306'), - (1178, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dN9ZOJy4', '5850159'), - (1178, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dN9ZOJy4', '5858999'), - (1178, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dN9ZOJy4', '5871984'), - (1178, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dN9ZOJy4', '5876354'), - (1178, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dN9ZOJy4', '5880939'), - (1178, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dN9ZOJy4', '5887890'), - (1178, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dN9ZOJy4', '5888598'), - (1178, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dN9ZOJy4', '5893260'), - (1178, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9ZOJy4', '6045684'), - (1179, 1868, 'maybe', '2023-02-21 19:51:26', '2025-12-17 19:47:07', 'd5wM583A', '5880942'), - (1179, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd5wM583A', '5880943'), - (1179, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd5wM583A', '5900200'), - (1179, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd5wM583A', '5900202'), - (1179, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd5wM583A', '5900203'), - (1179, 1916, 'not_attending', '2023-02-22 04:38:46', '2025-12-17 19:47:08', 'd5wM583A', '5910526'), - (1179, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'd5wM583A', '5910528'), - (1179, 1921, 'attending', '2023-02-25 18:16:12', '2025-12-17 19:47:08', 'd5wM583A', '5914092'), - (1179, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd5wM583A', '5936234'), - (1179, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd5wM583A', '5958351'), - (1179, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd5wM583A', '5959751'), - (1179, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd5wM583A', '5959755'), - (1179, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd5wM583A', '5960055'), - (1179, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd5wM583A', '5961684'), - (1179, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd5wM583A', '5962132'), - (1179, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd5wM583A', '5962133'), - (1179, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd5wM583A', '5962134'), - (1179, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd5wM583A', '5962317'), - (1179, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd5wM583A', '5962318'), - (1179, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd5wM583A', '5965933'), - (1179, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd5wM583A', '5967014'), - (1179, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd5wM583A', '5972815'), - (1179, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd5wM583A', '5974016'), - (1179, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd5wM583A', '5981515'), - (1179, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd5wM583A', '5993516'), - (1179, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd5wM583A', '5998939'), - (1179, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd5wM583A', '6028191'), - (1179, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd5wM583A', '6040066'), - (1179, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd5wM583A', '6042717'), - (1179, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd5wM583A', '6045684'), - (1180, 157, 'not_attending', '2020-09-17 23:01:30', '2025-12-17 19:47:56', 'GAnO3vX4', '3058694'), - (1180, 158, 'not_attending', '2020-09-18 03:05:33', '2025-12-17 19:47:52', 'GAnO3vX4', '3058695'), - (1180, 159, 'not_attending', '2020-09-18 03:06:21', '2025-12-17 19:47:52', 'GAnO3vX4', '3058696'), - (1180, 161, 'not_attending', '2020-09-18 03:06:46', '2025-12-17 19:47:52', 'GAnO3vX4', '3058698'), - (1180, 199, 'not_attending', '2020-09-14 23:17:44', '2025-12-17 19:47:56', 'GAnO3vX4', '3087268'), - (1180, 220, 'attending', '2020-09-14 23:14:28', '2025-12-17 19:47:56', 'GAnO3vX4', '3129264'), - (1180, 221, 'attending', '2020-09-14 23:19:02', '2025-12-17 19:47:56', 'GAnO3vX4', '3129265'), - (1180, 241, 'not_attending', '2020-09-18 03:06:36', '2025-12-17 19:47:52', 'GAnO3vX4', '3149472'), - (1180, 242, 'not_attending', '2020-09-18 03:05:09', '2025-12-17 19:47:56', 'GAnO3vX4', '3149473'), - (1180, 311, 'not_attending', '2020-09-14 23:18:29', '2025-12-17 19:47:56', 'GAnO3vX4', '3186057'), - (1180, 323, 'attending', '2020-09-18 23:20:00', '2025-12-17 19:47:56', 'GAnO3vX4', '3197081'), - (1180, 324, 'not_attending', '2020-09-22 17:37:45', '2025-12-17 19:47:56', 'GAnO3vX4', '3197082'), - (1180, 325, 'attending', '2021-03-11 01:41:15', '2025-12-17 19:47:51', 'GAnO3vX4', '3197083'), - (1180, 326, 'not_attending', '2020-09-25 22:52:01', '2025-12-17 19:47:52', 'GAnO3vX4', '3197084'), - (1180, 327, 'maybe', '2020-09-18 03:25:37', '2025-12-17 19:47:52', 'GAnO3vX4', '3197085'), - (1180, 328, 'maybe', '2020-09-18 03:25:46', '2025-12-17 19:47:52', 'GAnO3vX4', '3197086'), - (1180, 329, 'maybe', '2020-09-18 03:28:55', '2025-12-17 19:47:52', 'GAnO3vX4', '3197087'), - (1180, 333, 'maybe', '2020-09-18 03:28:57', '2025-12-17 19:47:52', 'GAnO3vX4', '3199782'), - (1180, 334, 'maybe', '2020-09-18 03:28:59', '2025-12-17 19:47:52', 'GAnO3vX4', '3199784'), - (1180, 340, 'not_attending', '2020-09-17 23:01:16', '2025-12-17 19:47:56', 'GAnO3vX4', '3204470'), - (1180, 341, 'not_attending', '2020-09-18 03:05:30', '2025-12-17 19:47:52', 'GAnO3vX4', '3204471'), - (1180, 342, 'not_attending', '2020-09-18 03:06:05', '2025-12-17 19:47:52', 'GAnO3vX4', '3204472'), - (1180, 343, 'attending', '2020-09-22 22:55:39', '2025-12-17 19:47:56', 'GAnO3vX4', '3206759'), - (1180, 347, 'attending', '2020-09-18 03:03:22', '2025-12-17 19:47:51', 'GAnO3vX4', '3207930'), - (1180, 348, 'maybe', '2020-09-18 03:28:50', '2025-12-17 19:47:52', 'GAnO3vX4', '3209159'), - (1180, 351, 'not_attending', '2020-09-18 03:21:54', '2025-12-17 19:47:56', 'GAnO3vX4', '3209257'), - (1180, 352, 'not_attending', '2020-09-14 23:54:19', '2025-12-17 19:47:56', 'GAnO3vX4', '3210514'), - (1180, 354, 'not_attending', '2020-09-20 19:57:12', '2025-12-17 19:47:56', 'GAnO3vX4', '3212570'), - (1180, 356, 'not_attending', '2020-09-18 03:05:19', '2025-12-17 19:47:51', 'GAnO3vX4', '3212572'), - (1180, 357, 'not_attending', '2020-09-18 03:06:00', '2025-12-17 19:47:52', 'GAnO3vX4', '3212573'), - (1180, 358, 'attending', '2020-09-17 23:01:23', '2025-12-17 19:47:56', 'GAnO3vX4', '3212579'), - (1180, 359, 'not_attending', '2020-09-19 18:54:47', '2025-12-17 19:47:56', 'GAnO3vX4', '3212624'), - (1180, 360, 'not_attending', '2020-09-17 23:01:03', '2025-12-17 19:47:56', 'GAnO3vX4', '3212671'), - (1180, 361, 'not_attending', '2020-09-18 03:04:38', '2025-12-17 19:47:56', 'GAnO3vX4', '3213323'), - (1180, 362, 'not_attending', '2020-09-27 02:34:55', '2025-12-17 19:47:52', 'GAnO3vX4', '3214207'), - (1180, 363, 'maybe', '2020-09-18 03:25:39', '2025-12-17 19:47:52', 'GAnO3vX4', '3217037'), - (1180, 364, 'not_attending', '2020-09-19 02:26:21', '2025-12-17 19:47:56', 'GAnO3vX4', '3217106'), - (1180, 365, 'not_attending', '2020-09-18 05:38:40', '2025-12-17 19:47:51', 'GAnO3vX4', '3218510'), - (1180, 366, 'not_attending', '2020-09-22 22:55:52', '2025-12-17 19:47:56', 'GAnO3vX4', '3219750'), - (1180, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', 'GAnO3vX4', '3221403'), - (1180, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'GAnO3vX4', '3228698'), - (1180, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'GAnO3vX4', '3228699'), - (1180, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'GAnO3vX4', '3228700'), - (1180, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'GAnO3vX4', '3228701'), - (1180, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'GAnO3vX4', '3245751'), - (1180, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GAnO3vX4', '3250232'), - (1180, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'GAnO3vX4', '3256168'), - (1180, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GAnO3vX4', '3263578'), - (1180, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GAnO3vX4', '3276428'), - (1180, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'GAnO3vX4', '3281467'), - (1180, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GAnO3vX4', '3281470'), - (1180, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GAnO3vX4', '3281829'), - (1180, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'GAnO3vX4', '3285413'), - (1180, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'GAnO3vX4', '3285414'), - (1180, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GAnO3vX4', '3297764'), - (1180, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'GAnO3vX4', '3313856'), - (1180, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GAnO3vX4', '3314909'), - (1180, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GAnO3vX4', '3314964'), - (1180, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'GAnO3vX4', '3323365'), - (1180, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GAnO3vX4', '3329383'), - (1180, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GAnO3vX4', '3351539'), - (1180, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GAnO3vX4', '3386848'), - (1180, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GAnO3vX4', '3389527'), - (1180, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GAnO3vX4', '3396499'), - (1180, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GAnO3vX4', '3403650'), - (1180, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GAnO3vX4', '3406988'), - (1180, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'GAnO3vX4', '3408338'), - (1180, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GAnO3vX4', '3416576'), - (1180, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'GAnO3vX4', '3539916'), - (1180, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'GAnO3vX4', '3539919'), - (1180, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'GAnO3vX4', '3539920'), - (1180, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'GAnO3vX4', '3539921'), - (1180, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'GAnO3vX4', '3539922'), - (1180, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'GAnO3vX4', '3539923'), - (1180, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GAnO3vX4', '3539927'), - (1180, 678, 'not_attending', '2021-03-12 01:35:48', '2025-12-17 19:47:51', 'GAnO3vX4', '3547158'), - (1180, 688, 'not_attending', '2021-03-12 01:35:57', '2025-12-17 19:47:51', 'GAnO3vX4', '3553729'), - (1180, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GAnO3vX4', '3582734'), - (1180, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GAnO3vX4', '3583262'), - (1180, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GAnO3vX4', '3619523'), - (1180, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GAnO3vX4', '3661369'), - (1180, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GAnO3vX4', '3674262'), - (1180, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GAnO3vX4', '3677402'), - (1180, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GAnO3vX4', '3730212'), - (1180, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GAnO3vX4', '3793156'), - (1180, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GAnO3vX4', '3974109'), - (1180, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GAnO3vX4', '3975311'), - (1180, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GAnO3vX4', '3975312'), - (1180, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GAnO3vX4', '3994992'), - (1180, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GAnO3vX4', '4014338'), - (1180, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GAnO3vX4', '4021848'), - (1180, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GAnO3vX4', '4136744'), - (1180, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GAnO3vX4', '4136937'), - (1180, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GAnO3vX4', '4136938'), - (1180, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GAnO3vX4', '4136947'), - (1180, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GAnO3vX4', '4210314'), - (1180, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GAnO3vX4', '4225444'), - (1180, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GAnO3vX4', '4239259'), - (1180, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GAnO3vX4', '4240316'), - (1180, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GAnO3vX4', '4240317'), - (1180, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GAnO3vX4', '4240318'), - (1180, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GAnO3vX4', '4240320'), - (1180, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GAnO3vX4', '4250163'), - (1180, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GAnO3vX4', '4275957'), - (1180, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GAnO3vX4', '4277819'), - (1180, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GAnO3vX4', '4301723'), - (1180, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GAnO3vX4', '4302093'), - (1180, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GAnO3vX4', '4304151'), - (1180, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GAnO3vX4', '4356801'), - (1180, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GAnO3vX4', '4366186'), - (1180, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GAnO3vX4', '4366187'), - (1180, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GAnO3vX4', '4420735'), - (1180, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GAnO3vX4', '4420738'), - (1180, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GAnO3vX4', '4420739'), - (1180, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GAnO3vX4', '4420741'), - (1180, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GAnO3vX4', '4420744'), - (1180, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GAnO3vX4', '4420747'), - (1180, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GAnO3vX4', '4420748'), - (1180, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GAnO3vX4', '4420749'), - (1180, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GAnO3vX4', '4461883'), - (1180, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GAnO3vX4', '4508342'), - (1180, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GAnO3vX4', '4568602'), - (1180, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GAnO3vX4', '4572153'), - (1180, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GAnO3vX4', '4585962'), - (1180, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'GAnO3vX4', '4596356'), - (1180, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GAnO3vX4', '4598860'), - (1180, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'GAnO3vX4', '4598861'), - (1180, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GAnO3vX4', '4602797'), - (1180, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'GAnO3vX4', '4637896'), - (1180, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'GAnO3vX4', '4642994'), - (1180, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'GAnO3vX4', '4642995'), - (1180, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GAnO3vX4', '4642996'), - (1180, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GAnO3vX4', '4642997'), - (1180, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'GAnO3vX4', '4645687'), - (1180, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GAnO3vX4', '4645698'), - (1180, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'GAnO3vX4', '4645704'), - (1180, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'GAnO3vX4', '4645705'), - (1180, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GAnO3vX4', '4668385'), - (1180, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GAnO3vX4', '4694407'), - (1180, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GAnO3vX4', '4736497'), - (1180, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GAnO3vX4', '4736499'), - (1180, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GAnO3vX4', '4736500'), - (1180, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GAnO3vX4', '4736503'), - (1180, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'GAnO3vX4', '4736504'), - (1180, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GAnO3vX4', '4746789'), - (1180, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'GAnO3vX4', '4753929'), - (1180, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GAnO3vX4', '5038850'), - (1180, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GAnO3vX4', '5045826'), - (1180, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GAnO3vX4', '5132533'), - (1180, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GAnO3vX4', '5186582'), - (1180, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GAnO3vX4', '5186583'), - (1180, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'GAnO3vX4', '5186585'), - (1180, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GAnO3vX4', '5190437'), - (1180, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GAnO3vX4', '5195095'), - (1180, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GAnO3vX4', '5215989'), - (1180, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GAnO3vX4', '5223686'), - (1180, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GAnO3vX4', '5247467'), - (1180, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'GAnO3vX4', '5260800'), - (1180, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GAnO3vX4', '5269930'), - (1180, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GAnO3vX4', '5271448'), - (1180, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'GAnO3vX4', '5271449'), - (1180, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GAnO3vX4', '5278159'), - (1180, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'GAnO3vX4', '5363695'), - (1180, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GAnO3vX4', '5365960'), - (1180, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GAnO3vX4', '5378247'), - (1180, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GAnO3vX4', '5389605'), - (1180, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GAnO3vX4', '5397265'), - (1180, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GAnO3vX4', '5404786'), - (1180, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GAnO3vX4', '5405203'), - (1180, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GAnO3vX4', '5412550'), - (1180, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GAnO3vX4', '5415046'), - (1180, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GAnO3vX4', '5422086'), - (1180, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GAnO3vX4', '5422406'), - (1180, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GAnO3vX4', '5424565'), - (1180, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GAnO3vX4', '5426882'), - (1180, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GAnO3vX4', '5441125'), - (1180, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GAnO3vX4', '5441126'), - (1180, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GAnO3vX4', '5441128'), - (1180, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GAnO3vX4', '5441131'), - (1180, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GAnO3vX4', '5441132'), - (1180, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GAnO3vX4', '5453325'), - (1180, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GAnO3vX4', '5454516'), - (1180, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GAnO3vX4', '5454605'), - (1180, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GAnO3vX4', '5455037'), - (1180, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GAnO3vX4', '5461278'), - (1180, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GAnO3vX4', '5469480'), - (1180, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GAnO3vX4', '5474663'), - (1180, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GAnO3vX4', '5482022'), - (1180, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GAnO3vX4', '5488912'), - (1180, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GAnO3vX4', '5492192'), - (1180, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GAnO3vX4', '5493139'), - (1180, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GAnO3vX4', '5493200'), - (1180, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GAnO3vX4', '5502188'), - (1180, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GAnO3vX4', '5505059'), - (1180, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GAnO3vX4', '5509055'), - (1180, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GAnO3vX4', '5512862'), - (1180, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GAnO3vX4', '5513985'), - (1180, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GAnO3vX4', '5519981'), - (1180, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GAnO3vX4', '5522550'), - (1180, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GAnO3vX4', '5534683'), - (1180, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GAnO3vX4', '5537735'), - (1180, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GAnO3vX4', '5540859'), - (1180, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GAnO3vX4', '5546619'), - (1180, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GAnO3vX4', '5557747'), - (1180, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GAnO3vX4', '5560255'), - (1180, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GAnO3vX4', '5562906'), - (1180, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GAnO3vX4', '5600604'), - (1180, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GAnO3vX4', '5605544'), - (1180, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GAnO3vX4', '5630960'), - (1180, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GAnO3vX4', '5630961'), - (1180, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GAnO3vX4', '5630962'), - (1180, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GAnO3vX4', '5630966'), - (1180, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GAnO3vX4', '5630967'), - (1180, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GAnO3vX4', '5630968'), - (1180, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GAnO3vX4', '5635406'), - (1180, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GAnO3vX4', '5638765'), - (1180, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GAnO3vX4', '5640097'), - (1180, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GAnO3vX4', '5640843'), - (1180, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GAnO3vX4', '5641521'), - (1180, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GAnO3vX4', '5642818'), - (1180, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GAnO3vX4', '5652395'), - (1180, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GAnO3vX4', '5670445'), - (1180, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GAnO3vX4', '5671637'), - (1180, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GAnO3vX4', '5672329'), - (1180, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GAnO3vX4', '5674057'), - (1180, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GAnO3vX4', '5674060'), - (1180, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GAnO3vX4', '5677461'), - (1180, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GAnO3vX4', '5698046'), - (1180, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GAnO3vX4', '5699760'), - (1180, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GAnO3vX4', '5741601'), - (1180, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GAnO3vX4', '5763458'), - (1180, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GAnO3vX4', '5774172'), - (1180, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GAnO3vX4', '5818247'), - (1180, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GAnO3vX4', '5819471'), - (1180, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'GAnO3vX4', '5827739'), - (1180, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GAnO3vX4', '5844306'), - (1180, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GAnO3vX4', '5850159'), - (1180, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GAnO3vX4', '5858999'), - (1180, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GAnO3vX4', '5871984'), - (1180, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GAnO3vX4', '5876354'), - (1180, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GAnO3vX4', '5880939'), - (1180, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GAnO3vX4', '5880940'), - (1180, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GAnO3vX4', '5880942'), - (1180, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GAnO3vX4', '5880943'), - (1180, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GAnO3vX4', '5887890'), - (1180, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GAnO3vX4', '5888598'), - (1180, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GAnO3vX4', '5893260'), - (1180, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GAnO3vX4', '5899826'), - (1180, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GAnO3vX4', '5900199'), - (1180, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GAnO3vX4', '5900200'), - (1180, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GAnO3vX4', '5900202'), - (1180, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GAnO3vX4', '5900203'), - (1180, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GAnO3vX4', '5901108'), - (1180, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GAnO3vX4', '5901126'), - (1180, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'GAnO3vX4', '5901606'), - (1180, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GAnO3vX4', '5909655'), - (1180, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GAnO3vX4', '5910522'), - (1180, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GAnO3vX4', '5910526'), - (1180, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GAnO3vX4', '5910528'), - (1180, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GAnO3vX4', '5916219'), - (1180, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GAnO3vX4', '5936234'), - (1180, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GAnO3vX4', '5958351'), - (1180, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GAnO3vX4', '5959751'), - (1180, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GAnO3vX4', '5959755'), - (1180, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GAnO3vX4', '5960055'), - (1180, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GAnO3vX4', '5961684'), - (1180, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GAnO3vX4', '5962132'), - (1180, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GAnO3vX4', '5962133'), - (1180, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GAnO3vX4', '5962134'), - (1180, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GAnO3vX4', '5962317'), - (1180, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GAnO3vX4', '5962318'), - (1180, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GAnO3vX4', '5965933'), - (1180, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GAnO3vX4', '5967014'), - (1180, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GAnO3vX4', '5972815'), - (1180, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GAnO3vX4', '5974016'), - (1180, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GAnO3vX4', '5981515'), - (1180, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GAnO3vX4', '5993516'), - (1180, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GAnO3vX4', '5998939'), - (1180, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GAnO3vX4', '6028191'), - (1180, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GAnO3vX4', '6040066'), - (1180, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GAnO3vX4', '6042717'), - (1180, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GAnO3vX4', '6044838'), - (1180, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GAnO3vX4', '6044839'), - (1180, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GAnO3vX4', '6045684'), - (1180, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GAnO3vX4', '6050104'), - (1180, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GAnO3vX4', '6053195'), - (1180, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GAnO3vX4', '6053198'), - (1180, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GAnO3vX4', '6056085'), - (1180, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GAnO3vX4', '6056916'), - (1180, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GAnO3vX4', '6059290'), - (1180, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GAnO3vX4', '6060328'), - (1180, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GAnO3vX4', '6061037'), - (1180, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GAnO3vX4', '6061039'), - (1180, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GAnO3vX4', '6067245'), - (1180, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GAnO3vX4', '6068094'), - (1180, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GAnO3vX4', '6068252'), - (1180, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GAnO3vX4', '6068253'), - (1180, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GAnO3vX4', '6068254'), - (1180, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'GAnO3vX4', '6068280'), - (1180, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GAnO3vX4', '6069093'), - (1180, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GAnO3vX4', '6072528'), - (1180, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GAnO3vX4', '6079840'), - (1180, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GAnO3vX4', '6083398'), - (1180, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GAnO3vX4', '6093504'), - (1180, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GAnO3vX4', '6097414'), - (1180, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GAnO3vX4', '6097442'), - (1180, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GAnO3vX4', '6097684'), - (1180, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GAnO3vX4', '6098762'), - (1180, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GAnO3vX4', '6101361'), - (1180, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GAnO3vX4', '6101362'), - (1180, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GAnO3vX4', '6107314'), - (1180, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GAnO3vX4', '6120034'), - (1180, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GAnO3vX4', '6136733'), - (1180, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GAnO3vX4', '6137989'), - (1180, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GAnO3vX4', '6150864'), - (1180, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GAnO3vX4', '6155491'), - (1180, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GAnO3vX4', '6164417'), - (1180, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GAnO3vX4', '6166388'), - (1180, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GAnO3vX4', '6176439'), - (1180, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GAnO3vX4', '6182410'), - (1180, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GAnO3vX4', '6185812'), - (1180, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GAnO3vX4', '6187651'), - (1180, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GAnO3vX4', '6187963'), - (1180, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GAnO3vX4', '6187964'), - (1180, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GAnO3vX4', '6187966'), - (1180, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GAnO3vX4', '6187967'), - (1180, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GAnO3vX4', '6187969'), - (1180, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GAnO3vX4', '6334878'), - (1180, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GAnO3vX4', '6337236'), - (1180, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GAnO3vX4', '6337970'), - (1180, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GAnO3vX4', '6338308'), - (1180, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GAnO3vX4', '6341710'), - (1180, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GAnO3vX4', '6342044'), - (1180, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GAnO3vX4', '6342298'), - (1180, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GAnO3vX4', '6343294'), - (1180, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GAnO3vX4', '6347034'), - (1180, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GAnO3vX4', '6347056'), - (1180, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GAnO3vX4', '6353830'), - (1180, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GAnO3vX4', '6353831'), - (1180, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GAnO3vX4', '6357867'), - (1180, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GAnO3vX4', '6358652'), - (1180, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GAnO3vX4', '6361709'), - (1180, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GAnO3vX4', '6361710'), - (1180, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GAnO3vX4', '6361711'), - (1180, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GAnO3vX4', '6361712'), - (1180, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GAnO3vX4', '6361713'), - (1180, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GAnO3vX4', '6382573'), - (1180, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GAnO3vX4', '6388604'), - (1180, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GAnO3vX4', '6394629'), - (1180, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GAnO3vX4', '6394631'), - (1180, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GAnO3vX4', '6440863'), - (1180, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GAnO3vX4', '6445440'), - (1180, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GAnO3vX4', '6453951'), - (1180, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GAnO3vX4', '6461696'), - (1180, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GAnO3vX4', '6462129'), - (1180, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GAnO3vX4', '6463218'), - (1180, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GAnO3vX4', '6472181'), - (1180, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GAnO3vX4', '6482693'), - (1180, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GAnO3vX4', '6484200'), - (1180, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GAnO3vX4', '6484680'), - (1180, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GAnO3vX4', '6507741'), - (1180, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GAnO3vX4', '6514659'), - (1180, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GAnO3vX4', '6514660'), - (1180, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GAnO3vX4', '6519103'), - (1180, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GAnO3vX4', '6535681'), - (1180, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GAnO3vX4', '6584747'), - (1180, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GAnO3vX4', '6587097'), - (1180, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GAnO3vX4', '6609022'), - (1180, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GAnO3vX4', '6632757'), - (1180, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GAnO3vX4', '6644187'), - (1180, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GAnO3vX4', '6648951'), - (1180, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GAnO3vX4', '6648952'), - (1180, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GAnO3vX4', '6655401'), - (1180, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GAnO3vX4', '6661585'), - (1180, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GAnO3vX4', '6661588'), - (1180, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GAnO3vX4', '6661589'), - (1180, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GAnO3vX4', '6699906'), - (1180, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GAnO3vX4', '6699913'), - (1180, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GAnO3vX4', '6701109'), - (1180, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GAnO3vX4', '6705219'), - (1180, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GAnO3vX4', '6710153'), - (1180, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GAnO3vX4', '6711552'), - (1180, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GAnO3vX4', '6711553'), - (1180, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GAnO3vX4', '6722688'), - (1180, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GAnO3vX4', '6730620'), - (1180, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GAnO3vX4', '6740364'), - (1180, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GAnO3vX4', '6743829'), - (1180, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GAnO3vX4', '7030380'), - (1180, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GAnO3vX4', '7033677'), - (1180, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GAnO3vX4', '7044715'), - (1180, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GAnO3vX4', '7050318'), - (1180, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GAnO3vX4', '7050319'), - (1180, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GAnO3vX4', '7050322'), - (1180, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GAnO3vX4', '7057804'), - (1180, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GAnO3vX4', '7072824'), - (1180, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GAnO3vX4', '7074348'), - (1180, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAnO3vX4', '7074364'), - (1180, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GAnO3vX4', '7089267'), - (1180, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GAnO3vX4', '7098747'), - (1180, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GAnO3vX4', '7113468'), - (1180, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GAnO3vX4', '7114856'), - (1180, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GAnO3vX4', '7114951'), - (1180, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GAnO3vX4', '7114955'), - (1180, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GAnO3vX4', '7114956'), - (1180, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GAnO3vX4', '7114957'), - (1180, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GAnO3vX4', '7159484'), - (1180, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GAnO3vX4', '7178446'), - (1180, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GAnO3vX4', '7220467'), - (1180, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GAnO3vX4', '7240354'), - (1180, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GAnO3vX4', '7251633'), - (1180, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GAnO3vX4', '7324073'), - (1180, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAnO3vX4', '7324074'), - (1180, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAnO3vX4', '7324075'), - (1180, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GAnO3vX4', '7324078'), - (1180, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GAnO3vX4', '7324082'), - (1180, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GAnO3vX4', '7331457'), - (1180, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GAnO3vX4', '7363643'), - (1180, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAnO3vX4', '7368606'), - (1180, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GAnO3vX4', '7397462'), - (1180, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GAnO3vX4', '7424275'), - (1180, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAnO3vX4', '7432751'), - (1180, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAnO3vX4', '7432752'), - (1180, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAnO3vX4', '7432753'), - (1180, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAnO3vX4', '7432754'), - (1180, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAnO3vX4', '7432755'), - (1180, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAnO3vX4', '7432756'), - (1180, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAnO3vX4', '7432758'), - (1180, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAnO3vX4', '7432759'), - (1180, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAnO3vX4', '7433834'), - (1180, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GAnO3vX4', '7470197'), - (1180, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GAnO3vX4', '7685613'), - (1180, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAnO3vX4', '7688194'), - (1180, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAnO3vX4', '7688196'), - (1180, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAnO3vX4', '7688289'), - (1180, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAnO3vX4', '7692763'), - (1180, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAnO3vX4', '7697552'), - (1180, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAnO3vX4', '7699878'), - (1180, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GAnO3vX4', '7704043'), - (1180, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GAnO3vX4', '7712467'), - (1180, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GAnO3vX4', '7713585'), - (1180, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAnO3vX4', '7713586'), - (1180, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAnO3vX4', '7738518'), - (1180, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAnO3vX4', '7750636'), - (1180, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAnO3vX4', '7796540'), - (1180, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAnO3vX4', '7796541'), - (1180, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAnO3vX4', '7796542'), - (1180, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAnO3vX4', '7825913'), - (1180, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GAnO3vX4', '7826209'), - (1180, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAnO3vX4', '7834742'), - (1180, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GAnO3vX4', '7842108'), - (1180, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAnO3vX4', '7842902'), - (1180, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAnO3vX4', '7842903'), - (1180, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAnO3vX4', '7842904'), - (1180, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAnO3vX4', '7842905'), - (1180, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAnO3vX4', '7855719'), - (1180, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAnO3vX4', '7860683'), - (1180, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAnO3vX4', '7860684'), - (1180, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAnO3vX4', '7866095'), - (1180, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GAnO3vX4', '7869170'), - (1180, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GAnO3vX4', '7869188'), - (1180, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAnO3vX4', '7869201'), - (1180, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAnO3vX4', '7877465'), - (1180, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAnO3vX4', '7888250'), - (1180, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GAnO3vX4', '7904777'), - (1180, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAnO3vX4', '8349164'), - (1180, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAnO3vX4', '8349545'), - (1180, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GAnO3vX4', '8368028'), - (1180, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GAnO3vX4', '8368029'), - (1180, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAnO3vX4', '8388462'), - (1180, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GAnO3vX4', '8400273'), - (1180, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GAnO3vX4', '8400275'), - (1180, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'GAnO3vX4', '8400276'), - (1180, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GAnO3vX4', '8404977'), - (1180, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GAnO3vX4', '8430783'), - (1180, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GAnO3vX4', '8430784'), - (1180, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GAnO3vX4', '8430799'), - (1180, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GAnO3vX4', '8430800'), - (1180, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GAnO3vX4', '8430801'), - (1180, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GAnO3vX4', '8438709'), - (1180, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAnO3vX4', '8457738'), - (1180, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GAnO3vX4', '8459566'), - (1180, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GAnO3vX4', '8459567'), - (1180, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GAnO3vX4', '8461032'), - (1180, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAnO3vX4', '8477877'), - (1180, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAnO3vX4', '8485688'), - (1180, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAnO3vX4', '8490587'), - (1180, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAnO3vX4', '8493552'), - (1180, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAnO3vX4', '8493553'), - (1180, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAnO3vX4', '8493554'), - (1180, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAnO3vX4', '8493555'), - (1180, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAnO3vX4', '8493556'), - (1180, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAnO3vX4', '8493557'), - (1180, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAnO3vX4', '8493558'), - (1180, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAnO3vX4', '8493559'), - (1180, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAnO3vX4', '8493560'), - (1180, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GAnO3vX4', '8493561'), - (1180, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAnO3vX4', '8493572'), - (1180, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAnO3vX4', '8540725'), - (1180, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAnO3vX4', '8555421'), - (1181, 407, 'maybe', '2021-04-15 14:07:47', '2025-12-17 19:47:44', 'ZdNyKgX4', '3236465'), - (1181, 641, 'maybe', '2021-04-30 02:32:51', '2025-12-17 19:47:44', 'ZdNyKgX4', '3539916'), - (1181, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'ZdNyKgX4', '3539918'), - (1181, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539919'), - (1181, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539920'), - (1181, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539921'), - (1181, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539922'), - (1181, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'ZdNyKgX4', '3539923'), - (1181, 707, 'not_attending', '2021-04-14 12:59:50', '2025-12-17 19:47:46', 'ZdNyKgX4', '3583262'), - (1181, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ZdNyKgX4', '3730212'), - (1181, 777, 'attending', '2021-05-01 21:24:05', '2025-12-17 19:47:46', 'ZdNyKgX4', '3746248'), - (1181, 779, 'maybe', '2021-05-03 22:41:26', '2025-12-17 19:47:46', 'ZdNyKgX4', '3757118'), - (1181, 781, 'attending', '2021-05-05 21:56:50', '2025-12-17 19:47:46', 'ZdNyKgX4', '3760130'), - (1181, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ZdNyKgX4', '3793156'), - (1181, 823, 'attending', '2021-06-19 20:53:47', '2025-12-17 19:47:48', 'ZdNyKgX4', '3974109'), - (1181, 824, 'attending', '2021-06-03 21:56:07', '2025-12-17 19:47:47', 'ZdNyKgX4', '3974112'), - (1181, 827, 'attending', '2021-06-05 21:19:23', '2025-12-17 19:47:47', 'ZdNyKgX4', '3975311'), - (1181, 828, 'attending', '2021-06-12 18:42:08', '2025-12-17 19:47:47', 'ZdNyKgX4', '3975312'), - (1181, 837, 'attending', '2021-06-15 23:34:31', '2025-12-17 19:47:48', 'ZdNyKgX4', '3992545'), - (1181, 838, 'maybe', '2021-06-09 15:54:02', '2025-12-17 19:47:47', 'ZdNyKgX4', '3994992'), - (1181, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ZdNyKgX4', '4014338'), - (1181, 866, 'attending', '2021-06-21 23:04:35', '2025-12-17 19:47:38', 'ZdNyKgX4', '4020424'), - (1181, 867, 'attending', '2021-06-26 19:09:59', '2025-12-17 19:47:38', 'ZdNyKgX4', '4021848'), - (1181, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNyKgX4', '4136744'), - (1181, 870, 'attending', '2021-07-01 18:40:09', '2025-12-17 19:47:39', 'ZdNyKgX4', '4136937'), - (1181, 871, 'attending', '2021-07-10 15:29:58', '2025-12-17 19:47:39', 'ZdNyKgX4', '4136938'), - (1181, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNyKgX4', '4136947'), - (1181, 873, 'attending', '2021-06-15 23:34:59', '2025-12-17 19:47:48', 'ZdNyKgX4', '4138297'), - (1181, 874, 'attending', '2021-06-24 16:36:36', '2025-12-17 19:47:38', 'ZdNyKgX4', '4139815'), - (1181, 875, 'attending', '2021-07-01 18:40:26', '2025-12-17 19:47:38', 'ZdNyKgX4', '4139816'), - (1181, 877, 'attending', '2021-06-16 17:45:23', '2025-12-17 19:47:48', 'ZdNyKgX4', '4140575'), - (1181, 878, 'attending', '2021-06-21 23:04:43', '2025-12-17 19:47:38', 'ZdNyKgX4', '4143331'), - (1181, 879, 'attending', '2021-06-28 21:49:23', '2025-12-17 19:47:38', 'ZdNyKgX4', '4147806'), - (1181, 880, 'attending', '2021-06-19 21:40:18', '2025-12-17 19:47:48', 'ZdNyKgX4', '4205383'), - (1181, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNyKgX4', '4210314'), - (1181, 885, 'attending', '2021-06-27 22:26:36', '2025-12-17 19:47:38', 'ZdNyKgX4', '4222370'), - (1181, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ZdNyKgX4', '4225444'), - (1181, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNyKgX4', '4239259'), - (1181, 900, 'attending', '2021-07-24 18:44:04', '2025-12-17 19:47:40', 'ZdNyKgX4', '4240316'), - (1181, 901, 'attending', '2021-07-31 20:41:32', '2025-12-17 19:47:40', 'ZdNyKgX4', '4240317'), - (1181, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ZdNyKgX4', '4240318'), - (1181, 903, 'attending', '2021-08-14 20:48:55', '2025-12-17 19:47:42', 'ZdNyKgX4', '4240320'), - (1181, 904, 'maybe', '2021-07-05 21:00:41', '2025-12-17 19:47:39', 'ZdNyKgX4', '4241594'), - (1181, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNyKgX4', '4250163'), - (1181, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ZdNyKgX4', '4275957'), - (1181, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNyKgX4', '4277819'), - (1181, 929, 'maybe', '2021-08-05 21:15:21', '2025-12-17 19:47:41', 'ZdNyKgX4', '4297223'), - (1181, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNyKgX4', '4301723'), - (1181, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ZdNyKgX4', '4302093'), - (1181, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ZdNyKgX4', '4304151'), - (1181, 949, 'maybe', '2021-08-16 23:34:54', '2025-12-17 19:47:42', 'ZdNyKgX4', '4315726'), - (1181, 952, 'maybe', '2021-08-05 20:53:34', '2025-12-17 19:47:41', 'ZdNyKgX4', '4318286'), - (1181, 957, 'maybe', '2021-08-05 21:14:26', '2025-12-17 19:47:41', 'ZdNyKgX4', '4338834'), - (1181, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ZdNyKgX4', '4345519'), - (1181, 967, 'maybe', '2021-08-15 01:48:08', '2025-12-17 19:47:42', 'ZdNyKgX4', '4356164'), - (1181, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ZdNyKgX4', '4356801'), - (1181, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ZdNyKgX4', '4358025'), - (1181, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ZdNyKgX4', '4366186'), - (1181, 974, 'maybe', '2021-08-28 21:22:09', '2025-12-17 19:47:43', 'ZdNyKgX4', '4366187'), - (1181, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ZdNyKgX4', '4402823'), - (1181, 990, 'not_attending', '2021-09-04 21:48:38', '2025-12-17 19:47:43', 'ZdNyKgX4', '4420735'), - (1181, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ZdNyKgX4', '4420738'), - (1181, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ZdNyKgX4', '4420739'), - (1181, 993, 'not_attending', '2021-09-25 20:48:04', '2025-12-17 19:47:34', 'ZdNyKgX4', '4420741'), - (1181, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ZdNyKgX4', '4420744'), - (1181, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ZdNyKgX4', '4420747'), - (1181, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ZdNyKgX4', '4420748'), - (1181, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ZdNyKgX4', '4420749'), - (1181, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ZdNyKgX4', '4461883'), - (1181, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ZdNyKgX4', '4508342'), - (1181, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ZdNyKgX4', '4568602'), - (1181, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ZdNyKgX4', '4572153'), - (1181, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ZdNyKgX4', '4585962'), - (1181, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ZdNyKgX4', '4596356'), - (1181, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ZdNyKgX4', '4598860'), - (1181, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ZdNyKgX4', '4598861'), - (1181, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ZdNyKgX4', '4602797'), - (1181, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ZdNyKgX4', '4637896'), - (1181, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ZdNyKgX4', '4642994'), - (1181, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ZdNyKgX4', '4642995'), - (1181, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ZdNyKgX4', '4642996'), - (1181, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ZdNyKgX4', '4642997'), - (1181, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ZdNyKgX4', '4645687'), - (1181, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ZdNyKgX4', '4645698'), - (1181, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ZdNyKgX4', '4645704'), - (1181, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ZdNyKgX4', '4645705'), - (1181, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ZdNyKgX4', '4668385'), - (1181, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ZdNyKgX4', '4694407'), - (1181, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ZdNyKgX4', '4736497'), - (1181, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ZdNyKgX4', '4736499'), - (1181, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ZdNyKgX4', '4736500'), - (1181, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ZdNyKgX4', '4736503'), - (1181, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ZdNyKgX4', '4736504'), - (1181, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ZdNyKgX4', '4746789'), - (1181, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ZdNyKgX4', '4753929'), - (1181, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ZdNyKgX4', '5038850'), - (1181, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ZdNyKgX4', '5045826'), - (1181, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ZdNyKgX4', '5132533'), - (1181, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ZdNyKgX4', '5186582'), - (1181, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ZdNyKgX4', '5186583'), - (1181, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ZdNyKgX4', '5186585'), - (1181, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ZdNyKgX4', '5190437'), - (1181, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ZdNyKgX4', '5215989'), - (1181, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNyKgX4', '6045684'), - (1182, 991, 'not_attending', '2021-09-11 21:32:48', '2025-12-17 19:47:43', 'dVBLOD6d', '4420738'), - (1182, 992, 'attending', '2021-09-16 19:47:26', '2025-12-17 19:47:33', 'dVBLOD6d', '4420739'), - (1182, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dVBLOD6d', '4420741'), - (1182, 994, 'attending', '2021-10-02 02:03:47', '2025-12-17 19:47:34', 'dVBLOD6d', '4420742'), - (1182, 995, 'attending', '2021-10-09 21:09:33', '2025-12-17 19:47:34', 'dVBLOD6d', '4420744'), - (1182, 996, 'attending', '2021-10-16 22:28:33', '2025-12-17 19:47:35', 'dVBLOD6d', '4420747'), - (1182, 1004, 'attending', '2021-09-13 16:58:09', '2025-12-17 19:47:43', 'dVBLOD6d', '4438804'), - (1182, 1019, 'attending', '2021-09-16 19:46:19', '2025-12-17 19:47:43', 'dVBLOD6d', '4450515'), - (1182, 1021, 'attending', '2021-09-18 21:14:48', '2025-12-17 19:47:34', 'dVBLOD6d', '4451803'), - (1182, 1022, 'attending', '2021-09-15 17:31:18', '2025-12-17 19:47:43', 'dVBLOD6d', '4458628'), - (1182, 1023, 'not_attending', '2021-09-10 01:51:52', '2025-12-17 19:47:43', 'dVBLOD6d', '4461883'), - (1182, 1029, 'attending', '2021-09-16 19:47:05', '2025-12-17 19:47:43', 'dVBLOD6d', '4473063'), - (1182, 1031, 'attending', '2021-09-22 18:49:30', '2025-12-17 19:47:34', 'dVBLOD6d', '4473789'), - (1182, 1034, 'attending', '2021-09-16 19:47:19', '2025-12-17 19:47:43', 'dVBLOD6d', '4486265'), - (1182, 1035, 'attending', '2021-09-18 21:14:44', '2025-12-17 19:47:34', 'dVBLOD6d', '4492184'), - (1182, 1037, 'attending', '2021-09-18 21:15:03', '2025-12-17 19:47:34', 'dVBLOD6d', '4493233'), - (1182, 1065, 'attending', '2021-09-21 19:44:21', '2025-12-17 19:47:34', 'dVBLOD6d', '4505800'), - (1182, 1067, 'attending', '2021-09-24 19:52:25', '2025-12-17 19:47:34', 'dVBLOD6d', '4508342'), - (1182, 1078, 'attending', '2021-10-07 02:29:20', '2025-12-17 19:47:34', 'dVBLOD6d', '4541281'), - (1182, 1086, 'not_attending', '2021-10-15 18:12:45', '2025-12-17 19:47:35', 'dVBLOD6d', '4568602'), - (1182, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVBLOD6d', '4572153'), - (1182, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dVBLOD6d', '4585962'), - (1182, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dVBLOD6d', '4596356'), - (1182, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dVBLOD6d', '4598860'), - (1182, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dVBLOD6d', '4598861'), - (1182, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dVBLOD6d', '4602797'), - (1182, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dVBLOD6d', '4637896'), - (1182, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dVBLOD6d', '4642994'), - (1182, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dVBLOD6d', '4642995'), - (1182, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dVBLOD6d', '4642996'), - (1182, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dVBLOD6d', '4642997'), - (1182, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dVBLOD6d', '4645687'), - (1182, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dVBLOD6d', '4645698'), - (1182, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dVBLOD6d', '4645704'), - (1182, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dVBLOD6d', '4645705'), - (1182, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dVBLOD6d', '4668385'), - (1182, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dVBLOD6d', '4694407'), - (1182, 1174, 'attending', '2022-01-15 18:16:17', '2025-12-17 19:47:31', 'dVBLOD6d', '4736496'), - (1182, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dVBLOD6d', '4736497'), - (1182, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dVBLOD6d', '4736499'), - (1182, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dVBLOD6d', '4736500'), - (1182, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dVBLOD6d', '4736503'), - (1182, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dVBLOD6d', '4736504'), - (1182, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVBLOD6d', '4746789'), - (1182, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dVBLOD6d', '4753929'), - (1182, 1197, 'attending', '2022-01-24 23:28:53', '2025-12-17 19:47:32', 'dVBLOD6d', '4766799'), - (1182, 1198, 'attending', '2022-01-24 23:28:47', '2025-12-17 19:47:32', 'dVBLOD6d', '4766801'), - (1182, 1219, 'attending', '2022-02-02 23:12:21', '2025-12-17 19:47:32', 'dVBLOD6d', '4788466'), - (1182, 1232, 'not_attending', '2022-02-10 18:39:54', '2025-12-17 19:47:32', 'dVBLOD6d', '5038850'), - (1182, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dVBLOD6d', '5045826'), - (1182, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVBLOD6d', '5132533'), - (1182, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dVBLOD6d', '5186582'), - (1182, 1273, 'attending', '2022-03-26 19:55:27', '2025-12-17 19:47:25', 'dVBLOD6d', '5186583'), - (1182, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dVBLOD6d', '5186585'), - (1182, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVBLOD6d', '5190437'), - (1182, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dVBLOD6d', '5195095'), - (1182, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVBLOD6d', '5215989'), - (1182, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVBLOD6d', '5223686'), - (1182, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVBLOD6d', '5227432'), - (1182, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dVBLOD6d', '5247467'), - (1182, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dVBLOD6d', '5260800'), - (1182, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dVBLOD6d', '5269930'), - (1182, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dVBLOD6d', '5271448'), - (1182, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dVBLOD6d', '5271449'), - (1182, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dVBLOD6d', '5276469'), - (1182, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVBLOD6d', '5278159'), - (1182, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dVBLOD6d', '5363695'), - (1182, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVBLOD6d', '5365960'), - (1182, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dVBLOD6d', '5368973'), - (1182, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVBLOD6d', '5378247'), - (1182, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'dVBLOD6d', '5389605'), - (1182, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dVBLOD6d', '5397265'), - (1182, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dVBLOD6d', '5403967'), - (1182, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVBLOD6d', '5404786'), - (1182, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVBLOD6d', '5405203'), - (1182, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'dVBLOD6d', '5408794'), - (1182, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dVBLOD6d', '5411699'), - (1182, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dVBLOD6d', '5412550'), - (1182, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dVBLOD6d', '5415046'), - (1182, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVBLOD6d', '5422086'), - (1182, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dVBLOD6d', '5422406'), - (1182, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVBLOD6d', '5424565'), - (1182, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVBLOD6d', '5426882'), - (1182, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dVBLOD6d', '5427083'), - (1182, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dVBLOD6d', '5441125'), - (1182, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dVBLOD6d', '5441126'), - (1182, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVBLOD6d', '5441128'), - (1182, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVBLOD6d', '5441131'), - (1182, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVBLOD6d', '5441132'), - (1182, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVBLOD6d', '5446643'), - (1182, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVBLOD6d', '5453325'), - (1182, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVBLOD6d', '5454516'), - (1182, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVBLOD6d', '5454605'), - (1182, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVBLOD6d', '5455037'), - (1182, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVBLOD6d', '5461278'), - (1182, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVBLOD6d', '5469480'), - (1182, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVBLOD6d', '5471073'), - (1182, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVBLOD6d', '5474663'), - (1182, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVBLOD6d', '5482022'), - (1182, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVBLOD6d', '5482793'), - (1182, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVBLOD6d', '5488912'), - (1182, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVBLOD6d', '5492192'), - (1182, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVBLOD6d', '5493139'), - (1182, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVBLOD6d', '5493200'), - (1182, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVBLOD6d', '5502188'), - (1182, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVBLOD6d', '5505059'), - (1182, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVBLOD6d', '5509055'), - (1182, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVBLOD6d', '5512862'), - (1182, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVBLOD6d', '5513985'), - (1182, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'dVBLOD6d', '5519981'), - (1182, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVBLOD6d', '5522550'), - (1182, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVBLOD6d', '5534683'), - (1182, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dVBLOD6d', '5537735'), - (1182, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVBLOD6d', '5540859'), - (1182, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVBLOD6d', '5546619'), - (1182, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVBLOD6d', '5555245'), - (1182, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVBLOD6d', '5557747'), - (1182, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVBLOD6d', '5560255'), - (1182, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVBLOD6d', '5562906'), - (1182, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVBLOD6d', '5600604'), - (1182, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVBLOD6d', '5605544'), - (1182, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'dVBLOD6d', '5606737'), - (1182, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVBLOD6d', '5635406'), - (1182, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVBLOD6d', '5638765'), - (1182, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVBLOD6d', '5640843'), - (1182, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVBLOD6d', '5641521'), - (1182, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVBLOD6d', '6045684'), - (1183, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd8j0vx0A', '7074364'), - (1183, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'd8j0vx0A', '7301638'), - (1183, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd8j0vx0A', '7324073'), - (1183, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd8j0vx0A', '7324074'), - (1183, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd8j0vx0A', '7324075'), - (1183, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd8j0vx0A', '7324078'), - (1183, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd8j0vx0A', '7331457'), - (1183, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'd8j0vx0A', '7335193'), - (1183, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'd8j0vx0A', '7359624'), - (1183, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd8j0vx0A', '7363643'), - (1183, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd8j0vx0A', '7368606'), - (1184, 643, 'attending', '2021-04-14 03:59:21', '2025-12-17 19:47:45', '64vkO1Wd', '3539918'), - (1184, 644, 'attending', '2021-04-17 00:43:00', '2025-12-17 19:47:45', '64vkO1Wd', '3539919'), - (1184, 645, 'not_attending', '2021-05-08 21:16:45', '2025-12-17 19:47:46', '64vkO1Wd', '3539920'), - (1184, 646, 'attending', '2021-04-18 02:26:35', '2025-12-17 19:47:46', '64vkO1Wd', '3539921'), - (1184, 647, 'attending', '2021-04-18 02:26:36', '2025-12-17 19:47:46', '64vkO1Wd', '3539922'), - (1184, 648, 'attending', '2021-05-29 16:06:18', '2025-12-17 19:47:47', '64vkO1Wd', '3539923'), - (1184, 707, 'attending', '2021-04-26 13:11:53', '2025-12-17 19:47:46', '64vkO1Wd', '3583262'), - (1184, 724, 'attending', '2021-05-09 20:45:13', '2025-12-17 19:47:46', '64vkO1Wd', '3661369'), - (1184, 735, 'attending', '2021-05-01 21:31:28', '2025-12-17 19:47:46', '64vkO1Wd', '3677402'), - (1184, 756, 'attending', '2021-04-17 19:11:51', '2025-12-17 19:47:46', '64vkO1Wd', '3704795'), - (1184, 761, 'attending', '2021-05-14 22:50:35', '2025-12-17 19:47:46', '64vkO1Wd', '3716041'), - (1184, 764, 'maybe', '2021-04-23 20:25:17', '2025-12-17 19:47:45', '64vkO1Wd', '3720507'), - (1184, 765, 'attending', '2021-04-21 02:30:05', '2025-12-17 19:47:45', '64vkO1Wd', '3720508'), - (1184, 767, 'attending', '2021-04-26 13:12:29', '2025-12-17 19:47:46', '64vkO1Wd', '3722476'), - (1184, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '64vkO1Wd', '3730212'), - (1184, 776, 'attending', '2021-04-25 02:38:04', '2025-12-17 19:47:46', '64vkO1Wd', '3733455'), - (1184, 777, 'attending', '2021-05-01 21:31:03', '2025-12-17 19:47:46', '64vkO1Wd', '3746248'), - (1184, 782, 'attending', '2021-05-01 01:17:08', '2025-12-17 19:47:46', '64vkO1Wd', '3761843'), - (1184, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '64vkO1Wd', '3793156'), - (1184, 799, 'maybe', '2021-05-10 00:08:28', '2025-12-17 19:47:46', '64vkO1Wd', '3797767'), - (1184, 809, 'maybe', '2021-05-16 21:34:30', '2025-12-17 19:47:46', '64vkO1Wd', '3807964'), - (1184, 823, 'maybe', '2021-06-16 03:24:23', '2025-12-17 19:47:48', '64vkO1Wd', '3974109'), - (1184, 827, 'attending', '2021-06-05 19:09:25', '2025-12-17 19:47:47', '64vkO1Wd', '3975311'), - (1184, 828, 'attending', '2021-06-13 02:33:15', '2025-12-17 19:47:47', '64vkO1Wd', '3975312'), - (1184, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '64vkO1Wd', '3994992'), - (1184, 841, 'attending', '2021-06-15 23:20:35', '2025-12-17 19:47:48', '64vkO1Wd', '4007434'), - (1184, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '64vkO1Wd', '4014338'), - (1184, 866, 'maybe', '2021-06-15 04:56:33', '2025-12-17 19:47:38', '64vkO1Wd', '4020424'), - (1184, 867, 'attending', '2021-06-16 03:24:25', '2025-12-17 19:47:38', '64vkO1Wd', '4021848'), - (1184, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '64vkO1Wd', '4136744'), - (1184, 870, 'attending', '2021-06-16 03:24:27', '2025-12-17 19:47:38', '64vkO1Wd', '4136937'), - (1184, 871, 'attending', '2021-06-16 03:24:29', '2025-12-17 19:47:39', '64vkO1Wd', '4136938'), - (1184, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '64vkO1Wd', '4136947'), - (1184, 873, 'attending', '2021-06-15 04:56:17', '2025-12-17 19:47:48', '64vkO1Wd', '4138297'), - (1184, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '64vkO1Wd', '4210314'), - (1184, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '64vkO1Wd', '4225444'), - (1184, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '64vkO1Wd', '4239259'), - (1184, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '64vkO1Wd', '4240316'), - (1184, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '64vkO1Wd', '4240317'), - (1184, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '64vkO1Wd', '4240318'), - (1184, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '64vkO1Wd', '4240320'), - (1184, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '64vkO1Wd', '4250163'), - (1184, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '64vkO1Wd', '4275957'), - (1184, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '64vkO1Wd', '4277819'), - (1184, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '64vkO1Wd', '4301723'), - (1184, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '64vkO1Wd', '4302093'), - (1184, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '64vkO1Wd', '4304151'), - (1184, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '64vkO1Wd', '4345519'), - (1184, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '64vkO1Wd', '4356801'), - (1184, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '64vkO1Wd', '4358025'), - (1184, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '64vkO1Wd', '4366186'), - (1184, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '64vkO1Wd', '4366187'), - (1184, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '64vkO1Wd', '4402823'), - (1184, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '64vkO1Wd', '4420735'), - (1184, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '64vkO1Wd', '4420738'), - (1184, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '64vkO1Wd', '4420739'), - (1184, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '64vkO1Wd', '4420741'), - (1184, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '64vkO1Wd', '4420744'), - (1184, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '64vkO1Wd', '4420747'), - (1184, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '64vkO1Wd', '4420748'), - (1184, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '64vkO1Wd', '4420749'), - (1184, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '64vkO1Wd', '4461883'), - (1184, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '64vkO1Wd', '4508342'), - (1184, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '64vkO1Wd', '4568602'), - (1184, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '64vkO1Wd', '4572153'), - (1184, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', '64vkO1Wd', '4585962'), - (1184, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '64vkO1Wd', '4596356'), - (1184, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '64vkO1Wd', '4598860'), - (1184, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '64vkO1Wd', '4598861'), - (1184, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '64vkO1Wd', '4602797'), - (1184, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '64vkO1Wd', '4637896'), - (1184, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '64vkO1Wd', '4642994'), - (1184, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '64vkO1Wd', '4642995'), - (1184, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '64vkO1Wd', '4642996'), - (1184, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '64vkO1Wd', '4642997'), - (1184, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '64vkO1Wd', '4645687'), - (1184, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '64vkO1Wd', '4645698'), - (1184, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '64vkO1Wd', '4645704'), - (1184, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '64vkO1Wd', '4645705'), - (1184, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '64vkO1Wd', '4668385'), - (1184, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '64vkO1Wd', '4694407'), - (1184, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '64vkO1Wd', '4736497'), - (1184, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '64vkO1Wd', '4736499'), - (1184, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '64vkO1Wd', '4736500'), - (1184, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '64vkO1Wd', '4746789'), - (1184, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '64vkO1Wd', '4753929'), - (1184, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '64vkO1Wd', '5038850'), - (1184, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '64vkO1Wd', '5045826'), - (1184, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64vkO1Wd', '6045684'), - (1185, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '8418gG8A', '7074364'), - (1185, 2626, 'not_attending', '2024-05-18 19:20:42', '2025-12-17 19:46:35', '8418gG8A', '7264723'), - (1185, 2627, 'maybe', '2024-05-21 15:17:01', '2025-12-17 19:46:35', '8418gG8A', '7264724'), - (1185, 2628, 'attending', '2024-05-28 00:59:30', '2025-12-17 19:46:36', '8418gG8A', '7264725'), - (1185, 2638, 'not_attending', '2024-05-20 04:32:23', '2025-12-17 19:46:35', '8418gG8A', '7273117'), - (1185, 2640, 'attending', '2024-05-20 03:57:17', '2025-12-17 19:46:35', '8418gG8A', '7275331'), - (1185, 2641, 'attending', '2024-05-18 01:55:38', '2025-12-17 19:46:35', '8418gG8A', '7276107'), - (1185, 2644, 'attending', '2024-05-21 15:16:51', '2025-12-17 19:46:35', '8418gG8A', '7279039'), - (1185, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', '8418gG8A', '7281768'), - (1185, 2647, 'not_attending', '2024-05-21 00:13:44', '2025-12-17 19:46:28', '8418gG8A', '7282057'), - (1185, 2648, 'attending', '2024-05-21 03:26:53', '2025-12-17 19:46:35', '8418gG8A', '7282283'), - (1185, 2650, 'maybe', '2024-05-24 16:29:15', '2025-12-17 19:46:36', '8418gG8A', '7288199'), - (1185, 2651, 'maybe', '2024-05-24 17:12:05', '2025-12-17 19:46:35', '8418gG8A', '7288200'), - (1185, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '8418gG8A', '7302674'), - (1185, 2678, 'attending', '2024-06-15 18:41:21', '2025-12-17 19:46:28', '8418gG8A', '7319489'), - (1185, 2679, 'attending', '2024-06-16 03:25:05', '2025-12-17 19:46:29', '8418gG8A', '7319490'), - (1185, 2686, 'attending', '2024-06-16 03:30:20', '2025-12-17 19:46:29', '8418gG8A', '7323802'), - (1185, 2688, 'attending', '2024-06-16 03:25:01', '2025-12-17 19:46:29', '8418gG8A', '7324073'), - (1185, 2689, 'attending', '2024-06-16 03:25:03', '2025-12-17 19:46:29', '8418gG8A', '7324074'), - (1185, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '8418gG8A', '7324075'), - (1185, 2691, 'not_attending', '2024-07-18 21:38:44', '2025-12-17 19:46:30', '8418gG8A', '7324076'), - (1185, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '8418gG8A', '7324078'), - (1185, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '8418gG8A', '7324082'), - (1185, 2698, 'maybe', '2024-09-07 02:24:55', '2025-12-17 19:46:24', '8418gG8A', '7324083'), - (1185, 2699, 'attending', '2024-06-12 20:36:45', '2025-12-17 19:46:28', '8418gG8A', '7324385'), - (1185, 2700, 'attending', '2024-06-13 20:23:25', '2025-12-17 19:46:28', '8418gG8A', '7324388'), - (1185, 2703, 'not_attending', '2024-06-13 01:45:14', '2025-12-17 19:46:28', '8418gG8A', '7324873'), - (1185, 2707, 'attending', '2024-06-16 03:18:32', '2025-12-17 19:46:28', '8418gG8A', '7324952'), - (1185, 2709, 'maybe', '2024-06-16 03:30:42', '2025-12-17 19:46:29', '8418gG8A', '7325107'), - (1185, 2710, 'attending', '2024-06-16 03:30:23', '2025-12-17 19:46:28', '8418gG8A', '7325108'), - (1185, 2713, 'attending', '2024-06-15 18:56:29', '2025-12-17 19:46:28', '8418gG8A', '7326593'), - (1185, 2721, 'not_attending', '2024-06-18 22:40:21', '2025-12-17 19:46:29', '8418gG8A', '7331456'), - (1185, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '8418gG8A', '7331457'), - (1185, 2756, 'maybe', '2024-07-10 20:55:41', '2025-12-17 19:46:29', '8418gG8A', '7358329'), - (1185, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '8418gG8A', '7363643'), - (1185, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '8418gG8A', '7368606'), - (1185, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '8418gG8A', '7397462'), - (1185, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '8418gG8A', '7424275'), - (1185, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '8418gG8A', '7424276'), - (1185, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '8418gG8A', '7432751'), - (1185, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '8418gG8A', '7432752'), - (1185, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '8418gG8A', '7432753'), - (1185, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '8418gG8A', '7432754'), - (1185, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '8418gG8A', '7432755'), - (1185, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '8418gG8A', '7432756'), - (1185, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '8418gG8A', '7432758'), - (1185, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '8418gG8A', '7432759'), - (1185, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '8418gG8A', '7433834'), - (1185, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '8418gG8A', '7470197'), - (1185, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '8418gG8A', '7685613'), - (1185, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '8418gG8A', '7688194'), - (1185, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '8418gG8A', '7688196'), - (1185, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '8418gG8A', '7688289'), - (1185, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '8418gG8A', '7692763'), - (1185, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '8418gG8A', '7697552'), - (1185, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '8418gG8A', '7699878'), - (1185, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '8418gG8A', '7704043'), - (1185, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '8418gG8A', '7712467'), - (1185, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '8418gG8A', '7713585'), - (1185, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '8418gG8A', '7713586'), - (1185, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '8418gG8A', '7738518'), - (1185, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '8418gG8A', '7750632'), - (1185, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '8418gG8A', '7750636'), - (1185, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '8418gG8A', '7796540'), - (1185, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '8418gG8A', '7796541'), - (1185, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '8418gG8A', '7796542'), - (1185, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '8418gG8A', '7825913'), - (1185, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '8418gG8A', '7826209'), - (1185, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '8418gG8A', '7834742'), - (1185, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '8418gG8A', '7842108'), - (1185, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '8418gG8A', '7842902'), - (1185, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '8418gG8A', '7842903'), - (1185, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '8418gG8A', '7842904'), - (1185, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '8418gG8A', '7842905'), - (1185, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '8418gG8A', '7855719'), - (1185, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '8418gG8A', '7860683'), - (1185, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '8418gG8A', '7860684'), - (1185, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '8418gG8A', '7866095'), - (1185, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '8418gG8A', '7869170'), - (1185, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '8418gG8A', '7869188'), - (1185, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '8418gG8A', '7869201'), - (1185, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '8418gG8A', '7877465'), - (1185, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '8418gG8A', '7888250'), - (1185, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '8418gG8A', '7904777'), - (1185, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '8418gG8A', '8349164'), - (1185, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '8418gG8A', '8349545'), - (1185, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '8418gG8A', '8368028'), - (1185, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '8418gG8A', '8368029'), - (1185, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '8418gG8A', '8388462'), - (1185, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '8418gG8A', '8400273'), - (1185, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '8418gG8A', '8400275'), - (1185, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '8418gG8A', '8400276'), - (1185, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '8418gG8A', '8404977'), - (1185, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '8418gG8A', '8430783'), - (1185, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '8418gG8A', '8430784'), - (1185, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '8418gG8A', '8430799'), - (1185, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '8418gG8A', '8430800'), - (1185, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '8418gG8A', '8430801'), - (1185, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '8418gG8A', '8438709'), - (1185, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '8418gG8A', '8457738'), - (1185, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '8418gG8A', '8459566'), - (1185, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '8418gG8A', '8459567'), - (1185, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '8418gG8A', '8461032'), - (1185, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '8418gG8A', '8477877'), - (1185, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '8418gG8A', '8485688'), - (1185, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '8418gG8A', '8490587'), - (1185, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '8418gG8A', '8493552'), - (1185, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '8418gG8A', '8493553'), - (1185, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '8418gG8A', '8493554'), - (1185, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '8418gG8A', '8493555'), - (1185, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '8418gG8A', '8493556'), - (1185, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '8418gG8A', '8493557'), - (1185, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '8418gG8A', '8493558'), - (1185, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '8418gG8A', '8493559'), - (1185, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '8418gG8A', '8493560'), - (1185, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '8418gG8A', '8493561'), - (1185, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '8418gG8A', '8493572'), - (1185, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '8418gG8A', '8540725'), - (1185, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '8418gG8A', '8555421'), - (1186, 645, 'attending', '2021-05-09 21:03:39', '2025-12-17 19:47:46', 'amGR6vnd', '3539920'), - (1186, 646, 'attending', '2021-05-14 16:38:20', '2025-12-17 19:47:46', 'amGR6vnd', '3539921'), - (1186, 647, 'attending', '2021-05-17 21:04:52', '2025-12-17 19:47:46', 'amGR6vnd', '3539922'), - (1186, 648, 'attending', '2021-05-24 21:59:52', '2025-12-17 19:47:47', 'amGR6vnd', '3539923'), - (1186, 724, 'attending', '2021-05-09 18:41:59', '2025-12-17 19:47:46', 'amGR6vnd', '3661369'), - (1186, 725, 'attending', '2021-05-21 20:36:21', '2025-12-17 19:47:47', 'amGR6vnd', '3661372'), - (1186, 739, 'attending', '2021-05-07 13:59:28', '2025-12-17 19:47:46', 'amGR6vnd', '3680616'), - (1186, 741, 'attending', '2021-05-12 16:51:11', '2025-12-17 19:47:46', 'amGR6vnd', '3680618'), - (1186, 766, 'attending', '2021-05-09 02:45:24', '2025-12-17 19:47:46', 'amGR6vnd', '3721383'), - (1186, 785, 'maybe', '2021-05-11 18:18:12', '2025-12-17 19:47:46', 'amGR6vnd', '3779779'), - (1186, 787, 'not_attending', '2021-05-10 19:09:47', '2025-12-17 19:47:46', 'amGR6vnd', '3780558'), - (1186, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'amGR6vnd', '3793156'), - (1186, 796, 'attending', '2021-05-11 01:20:02', '2025-12-17 19:47:46', 'amGR6vnd', '3793862'), - (1186, 797, 'attending', '2021-05-25 01:53:36', '2025-12-17 19:47:47', 'amGR6vnd', '3796195'), - (1186, 798, 'attending', '2021-05-12 16:51:03', '2025-12-17 19:47:46', 'amGR6vnd', '3796262'), - (1186, 799, 'maybe', '2021-05-11 18:16:31', '2025-12-17 19:47:46', 'amGR6vnd', '3797767'), - (1186, 803, 'attending', '2021-05-12 16:51:08', '2025-12-17 19:47:46', 'amGR6vnd', '3804665'), - (1186, 804, 'attending', '2021-05-12 16:51:29', '2025-12-17 19:47:47', 'amGR6vnd', '3804775'), - (1186, 813, 'attending', '2021-05-14 16:38:13', '2025-12-17 19:47:46', 'amGR6vnd', '3810231'), - (1186, 815, 'attending', '2021-05-28 22:59:32', '2025-12-17 19:47:47', 'amGR6vnd', '3818136'), - (1186, 818, 'attending', '2021-05-31 16:50:37', '2025-12-17 19:47:47', 'amGR6vnd', '3833015'), - (1186, 819, 'attending', '2021-05-30 16:55:54', '2025-12-17 19:47:47', 'amGR6vnd', '3833017'), - (1186, 821, 'attending', '2021-05-28 16:09:43', '2025-12-17 19:47:47', 'amGR6vnd', '3963965'), - (1186, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amGR6vnd', '3974109'), - (1186, 824, 'not_attending', '2021-06-03 16:11:00', '2025-12-17 19:47:47', 'amGR6vnd', '3974112'), - (1186, 825, 'attending', '2021-06-03 16:20:49', '2025-12-17 19:47:47', 'amGR6vnd', '3975283'), - (1186, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGR6vnd', '3975311'), - (1186, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amGR6vnd', '3975312'), - (1186, 830, 'attending', '2021-06-03 16:11:04', '2025-12-17 19:47:47', 'amGR6vnd', '3976648'), - (1186, 831, 'attending', '2021-06-04 21:43:13', '2025-12-17 19:47:47', 'amGR6vnd', '3976649'), - (1186, 832, 'maybe', '2021-06-05 00:29:30', '2025-12-17 19:47:47', 'amGR6vnd', '3976650'), - (1186, 833, 'attending', '2021-06-03 16:14:56', '2025-12-17 19:47:47', 'amGR6vnd', '3990438'), - (1186, 838, 'maybe', '2021-06-09 23:01:03', '2025-12-17 19:47:47', 'amGR6vnd', '3994992'), - (1186, 839, 'not_attending', '2021-06-06 19:05:34', '2025-12-17 19:47:47', 'amGR6vnd', '4002121'), - (1186, 840, 'attending', '2021-06-08 00:51:12', '2025-12-17 19:47:47', 'amGR6vnd', '4007283'), - (1186, 841, 'not_attending', '2021-06-15 22:42:19', '2025-12-17 19:47:48', 'amGR6vnd', '4007434'), - (1186, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGR6vnd', '4014338'), - (1186, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amGR6vnd', '4021848'), - (1186, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amGR6vnd', '4136744'), - (1186, 870, 'maybe', '2021-07-02 16:46:43', '2025-12-17 19:47:39', 'amGR6vnd', '4136937'), - (1186, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'amGR6vnd', '4136938'), - (1186, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amGR6vnd', '4136947'), - (1186, 881, 'not_attending', '2021-06-18 18:41:23', '2025-12-17 19:47:38', 'amGR6vnd', '4205662'), - (1186, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGR6vnd', '4210314'), - (1186, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGR6vnd', '4225444'), - (1186, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amGR6vnd', '4239259'), - (1186, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGR6vnd', '4240316'), - (1186, 901, 'attending', '2021-07-31 19:08:07', '2025-12-17 19:47:40', 'amGR6vnd', '4240317'), - (1186, 902, 'attending', '2021-08-07 16:09:09', '2025-12-17 19:47:41', 'amGR6vnd', '4240318'), - (1186, 903, 'attending', '2021-08-08 02:02:44', '2025-12-17 19:47:42', 'amGR6vnd', '4240320'), - (1186, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amGR6vnd', '4250163'), - (1186, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGR6vnd', '4275957'), - (1186, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amGR6vnd', '4277819'), - (1186, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amGR6vnd', '4301723'), - (1186, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'amGR6vnd', '4302093'), - (1186, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amGR6vnd', '4304151'), - (1186, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'amGR6vnd', '4356801'), - (1186, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'amGR6vnd', '4366186'), - (1186, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'amGR6vnd', '4366187'), - (1186, 990, 'not_attending', '2021-09-04 21:12:12', '2025-12-17 19:47:43', 'amGR6vnd', '4420735'), - (1186, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'amGR6vnd', '4420738'), - (1186, 992, 'attending', '2021-09-17 18:06:27', '2025-12-17 19:47:33', 'amGR6vnd', '4420739'), - (1186, 993, 'attending', '2021-09-24 00:20:46', '2025-12-17 19:47:34', 'amGR6vnd', '4420741'), - (1186, 994, 'attending', '2021-10-02 20:48:20', '2025-12-17 19:47:34', 'amGR6vnd', '4420742'), - (1186, 995, 'attending', '2021-10-02 20:48:16', '2025-12-17 19:47:34', 'amGR6vnd', '4420744'), - (1186, 996, 'attending', '2021-10-02 20:48:11', '2025-12-17 19:47:35', 'amGR6vnd', '4420747'), - (1186, 997, 'attending', '2021-10-18 22:16:06', '2025-12-17 19:47:35', 'amGR6vnd', '4420748'), - (1186, 998, 'attending', '2021-10-28 00:28:58', '2025-12-17 19:47:36', 'amGR6vnd', '4420749'), - (1186, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'amGR6vnd', '4461883'), - (1186, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'amGR6vnd', '4508342'), - (1186, 1070, 'attending', '2021-10-01 22:33:37', '2025-12-17 19:47:34', 'amGR6vnd', '4512562'), - (1186, 1072, 'maybe', '2021-10-06 21:29:51', '2025-12-17 19:47:34', 'amGR6vnd', '4516287'), - (1186, 1078, 'attending', '2021-10-06 21:29:34', '2025-12-17 19:47:34', 'amGR6vnd', '4541281'), - (1186, 1082, 'attending', '2021-10-15 21:04:48', '2025-12-17 19:47:35', 'amGR6vnd', '4566762'), - (1186, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'amGR6vnd', '4568602'), - (1186, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'amGR6vnd', '4572153'), - (1186, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'amGR6vnd', '4585962'), - (1186, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'amGR6vnd', '4596356'), - (1186, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'amGR6vnd', '4598860'), - (1186, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'amGR6vnd', '4598861'), - (1186, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'amGR6vnd', '4602797'), - (1186, 1103, 'attending', '2021-11-07 22:53:48', '2025-12-17 19:47:36', 'amGR6vnd', '4616350'), - (1186, 1106, 'attending', '2021-11-12 20:56:15', '2025-12-17 19:47:36', 'amGR6vnd', '4620452'), - (1186, 1114, 'attending', '2021-11-13 22:52:05', '2025-12-17 19:47:36', 'amGR6vnd', '4637896'), - (1186, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'amGR6vnd', '4642994'), - (1186, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'amGR6vnd', '4642995'), - (1186, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'amGR6vnd', '4642996'), - (1186, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'amGR6vnd', '4642997'), - (1186, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'amGR6vnd', '4645687'), - (1186, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'amGR6vnd', '4645698'), - (1186, 1128, 'attending', '2021-11-19 20:25:27', '2025-12-17 19:47:37', 'amGR6vnd', '4645704'), - (1186, 1129, 'attending', '2021-11-26 21:18:35', '2025-12-17 19:47:37', 'amGR6vnd', '4645705'), - (1186, 1130, 'not_attending', '2021-12-05 00:21:36', '2025-12-17 19:47:37', 'amGR6vnd', '4658824'), - (1186, 1131, 'not_attending', '2021-12-23 18:17:10', '2025-12-17 19:47:31', 'amGR6vnd', '4658825'), - (1186, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'amGR6vnd', '4668385'), - (1186, 1135, 'maybe', '2021-11-26 21:18:54', '2025-12-17 19:47:37', 'amGR6vnd', '4670469'), - (1186, 1139, 'attending', '2021-12-03 15:18:32', '2025-12-17 19:47:37', 'amGR6vnd', '4675604'), - (1186, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amGR6vnd', '4694407'), - (1186, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'amGR6vnd', '4706262'), - (1186, 1173, 'attending', '2022-01-04 22:27:30', '2025-12-17 19:47:31', 'amGR6vnd', '4736495'), - (1186, 1174, 'attending', '2022-01-14 16:57:21', '2025-12-17 19:47:31', 'amGR6vnd', '4736496'), - (1186, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'amGR6vnd', '4736497'), - (1186, 1176, 'attending', '2022-02-05 02:00:11', '2025-12-17 19:47:32', 'amGR6vnd', '4736498'), - (1186, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amGR6vnd', '4736499'), - (1186, 1178, 'attending', '2022-01-26 02:54:35', '2025-12-17 19:47:32', 'amGR6vnd', '4736500'), - (1186, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'amGR6vnd', '4736503'), - (1186, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amGR6vnd', '4736504'), - (1186, 1185, 'attending', '2022-01-14 16:57:15', '2025-12-17 19:47:31', 'amGR6vnd', '4746789'), - (1186, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amGR6vnd', '4753929'), - (1186, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amGR6vnd', '5038850'), - (1186, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amGR6vnd', '5045826'), - (1186, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amGR6vnd', '5132533'), - (1186, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'amGR6vnd', '5186582'), - (1186, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'amGR6vnd', '5186583'), - (1186, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amGR6vnd', '5186585'), - (1186, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amGR6vnd', '5190437'), - (1186, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'amGR6vnd', '5215989'), - (1186, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGR6vnd', '6045684'), - (1187, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mbXGj2V4', '7424276'), - (1187, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'mbXGj2V4', '7432756'), - (1187, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'mbXGj2V4', '7432758'), - (1187, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'mbXGj2V4', '7682072'), - (1187, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'mbXGj2V4', '7685613'), - (1187, 2900, 'attending', '2024-11-07 22:12:14', '2025-12-17 19:46:26', 'mbXGj2V4', '7686090'), - (1187, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mbXGj2V4', '7688194'), - (1187, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mbXGj2V4', '7688196'), - (1187, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mbXGj2V4', '7688289'), - (1187, 2911, 'attending', '2024-11-11 04:01:12', '2025-12-17 19:46:27', 'mbXGj2V4', '7689876'), - (1187, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mbXGj2V4', '7692763'), - (1187, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mbXGj2V4', '7697552'), - (1187, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mbXGj2V4', '7699878'), - (1187, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mbXGj2V4', '7704043'), - (1187, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mbXGj2V4', '7712467'), - (1187, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mbXGj2V4', '7713585'), - (1187, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mbXGj2V4', '7713586'), - (1187, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'mbXGj2V4', '7738518'), - (1187, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mbXGj2V4', '7750636'), - (1187, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mbXGj2V4', '7796540'), - (1187, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mbXGj2V4', '7796541'), - (1187, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mbXGj2V4', '7796542'), - (1187, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mbXGj2V4', '7825913'), - (1187, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mbXGj2V4', '7826209'), - (1187, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mbXGj2V4', '7834742'), - (1187, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mbXGj2V4', '7842108'), - (1187, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mbXGj2V4', '7842902'), - (1187, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mbXGj2V4', '7842903'), - (1187, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mbXGj2V4', '7842904'), - (1187, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mbXGj2V4', '7842905'), - (1187, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mbXGj2V4', '7855719'), - (1187, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mbXGj2V4', '7860683'), - (1187, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mbXGj2V4', '7860684'), - (1187, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mbXGj2V4', '7866095'), - (1187, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mbXGj2V4', '7869170'), - (1187, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mbXGj2V4', '7869188'), - (1187, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mbXGj2V4', '7869201'), - (1187, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mbXGj2V4', '7877465'), - (1187, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'mbXGj2V4', '7878570'), - (1187, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mbXGj2V4', '7888250'), - (1187, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mbXGj2V4', '8349164'), - (1187, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mbXGj2V4', '8349545'), - (1187, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mbXGj2V4', '8353584'), - (1188, 395, 'attending', '2021-06-06 07:05:41', '2025-12-17 19:47:47', 'LmpJy094', '3236450'), - (1188, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'LmpJy094', '3974109'), - (1188, 827, 'attending', '2021-06-06 02:55:32', '2025-12-17 19:47:47', 'LmpJy094', '3975311'), - (1188, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpJy094', '3975312'), - (1188, 836, 'not_attending', '2021-06-04 00:46:16', '2025-12-17 19:47:47', 'LmpJy094', '3992492'), - (1188, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpJy094', '3994992'), - (1188, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpJy094', '4014338'), - (1188, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'LmpJy094', '4021848'), - (1188, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpJy094', '4136744'), - (1188, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJy094', '4136947'), - (1188, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJy094', '6045684'), - (1189, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd95eKEd', '6045684'), - (1190, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Ag5rGXnd', '5900202'), - (1190, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Ag5rGXnd', '5900203'), - (1190, 1917, 'not_attending', '2023-03-12 16:07:19', '2025-12-17 19:47:10', 'Ag5rGXnd', '5910528'), - (1190, 1943, 'attending', '2023-03-14 21:38:58', '2025-12-17 19:47:10', 'Ag5rGXnd', '5962091'), - (1190, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'Ag5rGXnd', '5962317'), - (1190, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'Ag5rGXnd', '5962318'), - (1190, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Ag5rGXnd', '5965933'), - (1190, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Ag5rGXnd', '5981515'), - (1190, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Ag5rGXnd', '5993516'), - (1190, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Ag5rGXnd', '5998939'), - (1190, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Ag5rGXnd', '6028191'), - (1190, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Ag5rGXnd', '6040066'), - (1190, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Ag5rGXnd', '6042717'), - (1190, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Ag5rGXnd', '6044838'), - (1190, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Ag5rGXnd', '6044839'), - (1190, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ag5rGXnd', '6045684'), - (1190, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Ag5rGXnd', '6050104'), - (1190, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Ag5rGXnd', '6053195'), - (1190, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Ag5rGXnd', '6053198'), - (1190, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Ag5rGXnd', '6056085'), - (1190, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Ag5rGXnd', '6056916'), - (1190, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Ag5rGXnd', '6059290'), - (1190, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Ag5rGXnd', '6060328'), - (1190, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Ag5rGXnd', '6061037'), - (1190, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Ag5rGXnd', '6061039'), - (1190, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Ag5rGXnd', '6067245'), - (1190, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Ag5rGXnd', '6068094'), - (1190, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Ag5rGXnd', '6068252'), - (1190, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Ag5rGXnd', '6068253'), - (1190, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Ag5rGXnd', '6068254'), - (1190, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Ag5rGXnd', '6068280'), - (1190, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Ag5rGXnd', '6069093'), - (1190, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'Ag5rGXnd', '6072528'), - (1190, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Ag5rGXnd', '6079840'), - (1190, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Ag5rGXnd', '6083398'), - (1190, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'Ag5rGXnd', '6093504'), - (1190, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Ag5rGXnd', '6097414'), - (1190, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Ag5rGXnd', '6097442'), - (1190, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Ag5rGXnd', '6097684'), - (1190, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Ag5rGXnd', '6098762'), - (1190, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Ag5rGXnd', '6101362'), - (1190, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'Ag5rGXnd', '6103752'), - (1190, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Ag5rGXnd', '6107314'), - (1191, 993, 'attending', '2021-09-25 08:06:08', '2025-12-17 19:47:34', '41orVa7m', '4420741'), - (1191, 994, 'attending', '2021-09-30 08:19:28', '2025-12-17 19:47:34', '41orVa7m', '4420742'), - (1191, 995, 'attending', '2021-10-03 22:40:04', '2025-12-17 19:47:34', '41orVa7m', '4420744'), - (1191, 996, 'attending', '2021-10-10 13:10:10', '2025-12-17 19:47:35', '41orVa7m', '4420747'), - (1191, 997, 'attending', '2021-10-23 22:55:07', '2025-12-17 19:47:35', '41orVa7m', '4420748'), - (1191, 998, 'attending', '2021-10-27 00:38:01', '2025-12-17 19:47:36', '41orVa7m', '4420749'), - (1191, 1005, 'attending', '2021-09-21 03:52:34', '2025-12-17 19:47:34', '41orVa7m', '4438807'), - (1191, 1031, 'not_attending', '2021-09-22 22:52:48', '2025-12-17 19:47:34', '41orVa7m', '4473789'), - (1191, 1036, 'not_attending', '2021-09-22 22:53:06', '2025-12-17 19:47:34', '41orVa7m', '4493166'), - (1191, 1037, 'not_attending', '2021-09-22 23:00:35', '2025-12-17 19:47:34', '41orVa7m', '4493233'), - (1191, 1054, 'attending', '2022-03-13 04:57:32', '2025-12-17 19:47:25', '41orVa7m', '4496619'), - (1191, 1059, 'attending', '2022-03-12 23:11:40', '2025-12-17 19:47:33', '41orVa7m', '4496626'), - (1191, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '41orVa7m', '4508342'), - (1191, 1068, 'maybe', '2021-09-30 22:20:58', '2025-12-17 19:47:34', '41orVa7m', '4511471'), - (1191, 1070, 'attending', '2021-09-30 08:19:36', '2025-12-17 19:47:34', '41orVa7m', '4512562'), - (1191, 1078, 'attending', '2021-10-04 22:06:08', '2025-12-17 19:47:34', '41orVa7m', '4541281'), - (1191, 1082, 'not_attending', '2021-10-16 00:16:28', '2025-12-17 19:47:35', '41orVa7m', '4566762'), - (1191, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '41orVa7m', '4568602'), - (1191, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '41orVa7m', '4572153'), - (1191, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '41orVa7m', '4585962'), - (1191, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '41orVa7m', '4596356'), - (1191, 1096, 'attending', '2021-10-27 01:09:05', '2025-12-17 19:47:36', '41orVa7m', '4596453'), - (1191, 1097, 'maybe', '2021-11-01 03:52:22', '2025-12-17 19:47:36', '41orVa7m', '4598860'), - (1191, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '41orVa7m', '4598861'), - (1191, 1099, 'attending', '2021-10-31 01:25:48', '2025-12-17 19:47:36', '41orVa7m', '4602797'), - (1191, 1103, 'attending', '2021-11-13 22:25:39', '2025-12-17 19:47:36', '41orVa7m', '4616350'), - (1191, 1106, 'maybe', '2021-11-10 05:46:49', '2025-12-17 19:47:36', '41orVa7m', '4620452'), - (1191, 1114, 'maybe', '2021-11-14 00:37:27', '2025-12-17 19:47:37', '41orVa7m', '4637896'), - (1191, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '41orVa7m', '4642994'), - (1191, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '41orVa7m', '4642995'), - (1191, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '41orVa7m', '4642996'), - (1191, 1119, 'attending', '2021-12-23 01:03:26', '2025-12-17 19:47:31', '41orVa7m', '4642997'), - (1191, 1126, 'attending', '2021-12-11 09:49:55', '2025-12-17 19:47:38', '41orVa7m', '4645687'), - (1191, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '41orVa7m', '4645698'), - (1191, 1128, 'maybe', '2021-11-16 22:23:54', '2025-12-17 19:47:37', '41orVa7m', '4645704'), - (1191, 1129, 'maybe', '2021-11-27 05:34:52', '2025-12-17 19:47:37', '41orVa7m', '4645705'), - (1191, 1130, 'attending', '2021-12-04 23:33:12', '2025-12-17 19:47:37', '41orVa7m', '4658824'), - (1191, 1131, 'maybe', '2021-12-14 06:00:33', '2025-12-17 19:47:31', '41orVa7m', '4658825'), - (1191, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '41orVa7m', '4668385'), - (1191, 1135, 'attending', '2021-11-27 05:34:32', '2025-12-17 19:47:37', '41orVa7m', '4670469'), - (1191, 1139, 'attending', '2021-11-29 02:22:16', '2025-12-17 19:47:37', '41orVa7m', '4675604'), - (1191, 1140, 'maybe', '2021-11-30 03:34:52', '2025-12-17 19:47:37', '41orVa7m', '4679701'), - (1191, 1144, 'attending', '2021-12-08 03:04:52', '2025-12-17 19:47:37', '41orVa7m', '4687090'), - (1191, 1145, 'maybe', '2021-12-06 22:39:29', '2025-12-17 19:47:38', '41orVa7m', '4691157'), - (1191, 1146, 'attending', '2021-12-08 06:49:37', '2025-12-17 19:47:38', '41orVa7m', '4692841'), - (1191, 1148, 'maybe', '2021-12-16 02:51:35', '2025-12-17 19:47:31', '41orVa7m', '4692843'), - (1191, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '41orVa7m', '4694407'), - (1191, 1152, 'maybe', '2022-01-09 12:42:48', '2025-12-17 19:47:31', '41orVa7m', '4708705'), - (1191, 1154, 'maybe', '2022-01-27 00:48:05', '2025-12-17 19:47:32', '41orVa7m', '4708708'), - (1191, 1155, 'not_attending', '2021-12-21 01:52:36', '2025-12-17 19:47:31', '41orVa7m', '4715119'), - (1191, 1156, 'attending', '2021-12-19 10:02:42', '2025-12-17 19:47:31', '41orVa7m', '4715207'), - (1191, 1158, 'maybe', '2021-12-20 03:23:50', '2025-12-17 19:47:31', '41orVa7m', '4715311'), - (1191, 1167, 'attending', '2022-01-07 00:35:20', '2025-12-17 19:47:31', '41orVa7m', '4731015'), - (1191, 1168, 'attending', '2022-01-07 00:35:50', '2025-12-17 19:47:31', '41orVa7m', '4731043'), - (1191, 1173, 'attending', '2022-01-04 23:36:11', '2025-12-17 19:47:31', '41orVa7m', '4736495'), - (1191, 1174, 'attending', '2022-01-09 12:42:25', '2025-12-17 19:47:31', '41orVa7m', '4736496'), - (1191, 1175, 'attending', '2022-01-22 11:40:10', '2025-12-17 19:47:32', '41orVa7m', '4736497'), - (1191, 1176, 'attending', '2022-01-30 09:36:35', '2025-12-17 19:47:32', '41orVa7m', '4736498'), - (1191, 1177, 'attending', '2022-02-12 04:59:18', '2025-12-17 19:47:32', '41orVa7m', '4736499'), - (1191, 1178, 'attending', '2022-01-22 22:32:15', '2025-12-17 19:47:32', '41orVa7m', '4736500'), - (1191, 1179, 'attending', '2022-02-19 03:41:32', '2025-12-17 19:47:32', '41orVa7m', '4736501'), - (1191, 1180, 'attending', '2022-02-20 04:42:32', '2025-12-17 19:47:33', '41orVa7m', '4736502'), - (1191, 1181, 'attending', '2022-02-26 07:00:51', '2025-12-17 19:47:33', '41orVa7m', '4736503'), - (1191, 1182, 'attending', '2022-03-06 21:54:34', '2025-12-17 19:47:33', '41orVa7m', '4736504'), - (1191, 1184, 'attending', '2022-01-09 12:42:03', '2025-12-17 19:47:31', '41orVa7m', '4742350'), - (1191, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '41orVa7m', '4746789'), - (1191, 1188, 'maybe', '2022-01-16 23:32:05', '2025-12-17 19:47:32', '41orVa7m', '4753929'), - (1191, 1190, 'maybe', '2022-01-13 00:10:55', '2025-12-17 19:47:31', '41orVa7m', '4757377'), - (1191, 1191, 'attending', '2022-01-11 23:46:06', '2025-12-17 19:47:31', '41orVa7m', '4757390'), - (1191, 1192, 'attending', '2022-01-21 00:57:51', '2025-12-17 19:47:32', '41orVa7m', '4758745'), - (1191, 1200, 'attending', '2022-01-18 05:03:56', '2025-12-17 19:47:32', '41orVa7m', '4766830'), - (1191, 1216, 'maybe', '2022-01-25 08:19:14', '2025-12-17 19:47:32', '41orVa7m', '4781137'), - (1191, 1220, 'maybe', '2022-01-28 00:27:02', '2025-12-17 19:47:32', '41orVa7m', '4790257'), - (1191, 1222, 'maybe', '2022-02-13 13:21:33', '2025-12-17 19:47:32', '41orVa7m', '5015628'), - (1191, 1224, 'maybe', '2022-01-31 00:07:50', '2025-12-17 19:47:32', '41orVa7m', '5016682'), - (1191, 1228, 'maybe', '2022-02-06 23:13:28', '2025-12-17 19:47:32', '41orVa7m', '5028238'), - (1191, 1229, 'attending', '2022-02-13 13:21:50', '2025-12-17 19:47:32', '41orVa7m', '5034963'), - (1191, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '41orVa7m', '5038850'), - (1191, 1234, 'maybe', '2022-02-13 13:21:44', '2025-12-17 19:47:32', '41orVa7m', '5042197'), - (1191, 1236, 'maybe', '2022-02-14 08:57:49', '2025-12-17 19:47:32', '41orVa7m', '5045826'), - (1191, 1238, 'maybe', '2022-02-23 11:59:32', '2025-12-17 19:47:32', '41orVa7m', '5052236'), - (1191, 1239, 'attending', '2022-02-26 06:57:47', '2025-12-17 19:47:33', '41orVa7m', '5052238'), - (1191, 1240, 'attending', '2022-03-16 23:19:31', '2025-12-17 19:47:33', '41orVa7m', '5052239'), - (1191, 1246, 'maybe', '2022-03-03 10:33:45', '2025-12-17 19:47:33', '41orVa7m', '5064727'), - (1191, 1250, 'maybe', '2022-03-04 21:53:33', '2025-12-17 19:47:33', '41orVa7m', '5069735'), - (1191, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '41orVa7m', '5132533'), - (1191, 1260, 'attending', '2022-03-02 00:02:45', '2025-12-17 19:47:33', '41orVa7m', '5142082'), - (1191, 1262, 'maybe', '2022-03-10 23:30:11', '2025-12-17 19:47:33', '41orVa7m', '5157773'), - (1191, 1265, 'attending', '2022-03-10 04:23:51', '2025-12-17 19:47:33', '41orVa7m', '5160862'), - (1191, 1272, 'attending', '2022-03-15 22:13:23', '2025-12-17 19:47:25', '41orVa7m', '5186582'), - (1191, 1273, 'attending', '2022-03-19 22:27:31', '2025-12-17 19:47:25', '41orVa7m', '5186583'), - (1191, 1274, 'attending', '2022-03-30 11:46:20', '2025-12-17 19:47:26', '41orVa7m', '5186585'), - (1191, 1280, 'maybe', '2022-03-18 14:27:13', '2025-12-17 19:47:25', '41orVa7m', '5189749'), - (1191, 1281, 'attending', '2022-04-09 07:45:48', '2025-12-17 19:47:27', '41orVa7m', '5190437'), - (1191, 1284, 'attending', '2022-04-12 07:03:34', '2025-12-17 19:47:27', '41orVa7m', '5195095'), - (1191, 1285, 'attending', '2022-03-25 06:59:42', '2025-12-17 19:47:25', '41orVa7m', '5196763'), - (1191, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41orVa7m', '5215989'), - (1191, 1301, 'attending', '2022-03-30 11:46:26', '2025-12-17 19:47:26', '41orVa7m', '5218175'), - (1191, 1306, 'maybe', '2022-04-05 08:40:51', '2025-12-17 19:47:26', '41orVa7m', '5223682'), - (1191, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41orVa7m', '5223686'), - (1191, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41orVa7m', '5227432'), - (1191, 1312, 'maybe', '2022-04-14 23:07:37', '2025-12-17 19:47:27', '41orVa7m', '5231459'), - (1191, 1313, 'attending', '2022-04-12 09:53:58', '2025-12-17 19:47:27', '41orVa7m', '5231461'), - (1191, 1315, 'maybe', '2022-04-17 11:23:57', '2025-12-17 19:47:27', '41orVa7m', '5237522'), - (1191, 1323, 'not_attending', '2022-04-15 13:01:52', '2025-12-17 19:47:27', '41orVa7m', '5238357'), - (1191, 1333, 'attending', '2022-04-15 11:08:19', '2025-12-17 19:47:27', '41orVa7m', '5243711'), - (1191, 1346, 'attending', '2022-04-17 22:16:54', '2025-12-17 19:47:27', '41orVa7m', '5247467'), - (1191, 1348, 'maybe', '2022-04-25 12:03:03', '2025-12-17 19:47:28', '41orVa7m', '5247605'), - (1191, 1351, 'maybe', '2022-05-02 05:39:51', '2025-12-17 19:47:28', '41orVa7m', '5251561'), - (1191, 1362, 'attending', '2022-04-25 22:54:57', '2025-12-17 19:47:28', '41orVa7m', '5260800'), - (1191, 1368, 'maybe', '2022-05-01 07:17:29', '2025-12-17 19:47:28', '41orVa7m', '5262783'), - (1191, 1370, 'attending', '2022-04-28 08:14:13', '2025-12-17 19:47:28', '41orVa7m', '5263775'), - (1191, 1372, 'maybe', '2022-05-04 22:46:54', '2025-12-17 19:47:28', '41orVa7m', '5264352'), - (1191, 1374, 'attending', '2022-05-06 10:30:07', '2025-12-17 19:47:28', '41orVa7m', '5269930'), - (1191, 1375, 'maybe', '2022-05-02 05:55:08', '2025-12-17 19:47:28', '41orVa7m', '5269932'), - (1191, 1378, 'attending', '2022-05-02 05:57:23', '2025-12-17 19:47:28', '41orVa7m', '5271448'), - (1191, 1379, 'attending', '2022-05-02 05:57:21', '2025-12-17 19:47:29', '41orVa7m', '5271449'), - (1191, 1380, 'attending', '2022-05-02 05:57:17', '2025-12-17 19:47:30', '41orVa7m', '5271450'), - (1191, 1381, 'attending', '2022-05-06 22:12:16', '2025-12-17 19:47:28', '41orVa7m', '5271453'), - (1191, 1383, 'attending', '2022-05-04 00:17:34', '2025-12-17 19:47:28', '41orVa7m', '5276469'), - (1191, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41orVa7m', '5278159'), - (1191, 1407, 'attending', '2022-06-04 02:02:27', '2025-12-17 19:47:30', '41orVa7m', '5363695'), - (1191, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41orVa7m', '5365960'), - (1191, 1412, 'not_attending', '2022-05-20 00:09:46', '2025-12-17 19:47:29', '41orVa7m', '5367532'), - (1191, 1413, 'attending', '2022-05-20 21:21:21', '2025-12-17 19:47:29', '41orVa7m', '5367533'), - (1191, 1415, 'attending', '2022-05-21 01:32:47', '2025-12-17 19:47:30', '41orVa7m', '5368973'), - (1191, 1417, 'not_attending', '2022-05-24 00:29:53', '2025-12-17 19:47:30', '41orVa7m', '5370465'), - (1191, 1423, 'attending', '2022-06-15 23:28:36', '2025-12-17 19:47:17', '41orVa7m', '5375727'), - (1191, 1426, 'maybe', '2022-05-24 11:29:00', '2025-12-17 19:47:30', '41orVa7m', '5375873'), - (1191, 1427, 'attending', '2022-05-25 22:27:21', '2025-12-17 19:47:30', '41orVa7m', '5376074'), - (1191, 1428, 'maybe', '2022-05-26 23:19:18', '2025-12-17 19:47:30', '41orVa7m', '5378247'), - (1191, 1431, 'attending', '2022-06-03 03:06:28', '2025-12-17 19:47:30', '41orVa7m', '5389605'), - (1191, 1438, 'maybe', '2022-06-01 22:43:31', '2025-12-17 19:47:30', '41orVa7m', '5395032'), - (1191, 1439, 'maybe', '2022-06-06 06:53:47', '2025-12-17 19:47:30', '41orVa7m', '5396072'), - (1191, 1442, 'attending', '2022-06-03 03:06:25', '2025-12-17 19:47:17', '41orVa7m', '5397265'), - (1191, 1451, 'attending', '2022-06-09 13:54:18', '2025-12-17 19:47:17', '41orVa7m', '5403967'), - (1191, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41orVa7m', '5404786'), - (1191, 1460, 'maybe', '2022-06-13 13:29:00', '2025-12-17 19:47:31', '41orVa7m', '5404817'), - (1191, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41orVa7m', '5405203'), - (1191, 1477, 'maybe', '2022-06-15 03:10:14', '2025-12-17 19:47:17', '41orVa7m', '5408766'), - (1191, 1478, 'not_attending', '2022-06-24 08:02:47', '2025-12-17 19:47:19', '41orVa7m', '5408794'), - (1191, 1480, 'maybe', '2022-06-21 11:20:58', '2025-12-17 19:47:19', '41orVa7m', '5411699'), - (1191, 1482, 'attending', '2022-06-19 10:19:42', '2025-12-17 19:47:19', '41orVa7m', '5412550'), - (1191, 1483, 'maybe', '2022-06-20 02:04:14', '2025-12-17 19:47:17', '41orVa7m', '5414556'), - (1191, 1484, 'maybe', '2022-06-21 13:40:49', '2025-12-17 19:47:17', '41orVa7m', '5415046'), - (1191, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41orVa7m', '5422086'), - (1191, 1498, 'maybe', '2022-07-02 14:19:41', '2025-12-17 19:47:19', '41orVa7m', '5422406'), - (1191, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41orVa7m', '5424565'), - (1191, 1504, 'maybe', '2022-07-06 07:48:54', '2025-12-17 19:47:19', '41orVa7m', '5426882'), - (1191, 1505, 'maybe', '2022-07-02 16:04:49', '2025-12-17 19:47:19', '41orVa7m', '5427083'), - (1191, 1508, 'maybe', '2022-07-13 13:55:04', '2025-12-17 19:47:19', '41orVa7m', '5433453'), - (1191, 1511, 'attending', '2022-07-07 03:39:21', '2025-12-17 19:47:19', '41orVa7m', '5437733'), - (1191, 1513, 'attending', '2022-07-09 06:09:59', '2025-12-17 19:47:19', '41orVa7m', '5441125'), - (1191, 1514, 'attending', '2022-07-18 07:09:58', '2025-12-17 19:47:20', '41orVa7m', '5441126'), - (1191, 1515, 'attending', '2022-08-03 03:57:19', '2025-12-17 19:47:21', '41orVa7m', '5441128'), - (1191, 1516, 'attending', '2022-08-10 07:48:45', '2025-12-17 19:47:23', '41orVa7m', '5441129'), - (1191, 1517, 'attending', '2022-08-18 12:22:20', '2025-12-17 19:47:23', '41orVa7m', '5441130'), - (1191, 1518, 'attending', '2022-08-23 08:53:49', '2025-12-17 19:47:24', '41orVa7m', '5441131'), - (1191, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41orVa7m', '5441132'), - (1191, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41orVa7m', '5446643'), - (1191, 1539, 'maybe', '2022-07-18 07:09:42', '2025-12-17 19:47:21', '41orVa7m', '5449671'), - (1191, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41orVa7m', '5453325'), - (1191, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41orVa7m', '5454516'), - (1191, 1544, 'attending', '2022-09-17 08:25:43', '2025-12-17 19:47:11', '41orVa7m', '5454517'), - (1191, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41orVa7m', '5454605'), - (1191, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41orVa7m', '5455037'), - (1191, 1561, 'maybe', '2022-08-08 06:21:12', '2025-12-17 19:47:22', '41orVa7m', '5461278'), - (1191, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41orVa7m', '5469480'), - (1191, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41orVa7m', '5471073'), - (1191, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41orVa7m', '5474663'), - (1191, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41orVa7m', '5482022'), - (1191, 1575, 'maybe', '2022-08-18 12:22:13', '2025-12-17 19:47:23', '41orVa7m', '5482250'), - (1191, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41orVa7m', '5482793'), - (1191, 1578, 'maybe', '2022-08-02 13:07:15', '2025-12-17 19:47:21', '41orVa7m', '5483073'), - (1191, 1580, 'maybe', '2022-08-10 05:09:53', '2025-12-17 19:47:22', '41orVa7m', '5488912'), - (1191, 1581, 'maybe', '2022-08-10 01:53:42', '2025-12-17 19:47:22', '41orVa7m', '5490302'), - (1191, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41orVa7m', '5492192'), - (1191, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41orVa7m', '5493139'), - (1191, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41orVa7m', '5493200'), - (1191, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41orVa7m', '5502188'), - (1191, 1606, 'not_attending', '2022-08-29 07:52:54', '2025-12-17 19:47:23', '41orVa7m', '5504585'), - (1191, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41orVa7m', '5505059'), - (1191, 1610, 'attending', '2022-08-22 03:36:11', '2025-12-17 19:47:23', '41orVa7m', '5506595'), - (1191, 1614, 'maybe', '2022-08-23 08:51:56', '2025-12-17 19:47:23', '41orVa7m', '5508371'), - (1191, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41orVa7m', '5509055'), - (1191, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41orVa7m', '5512862'), - (1191, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41orVa7m', '5513985'), - (1191, 1626, 'maybe', '2022-08-26 12:42:27', '2025-12-17 19:47:11', '41orVa7m', '5519981'), - (1191, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41orVa7m', '5522550'), - (1191, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41orVa7m', '5534683'), - (1191, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '41orVa7m', '5537735'), - (1191, 1638, 'maybe', '2022-09-01 09:20:28', '2025-12-17 19:47:24', '41orVa7m', '5540402'), - (1191, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41orVa7m', '5540859'), - (1191, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41orVa7m', '5546619'), - (1191, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41orVa7m', '5555245'), - (1191, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41orVa7m', '5557747'), - (1191, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41orVa7m', '5560255'), - (1191, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41orVa7m', '5562906'), - (1191, 1667, 'attending', '2022-09-24 09:51:40', '2025-12-17 19:47:11', '41orVa7m', '5563221'), - (1191, 1668, 'attending', '2022-09-24 09:51:46', '2025-12-17 19:47:12', '41orVa7m', '5563222'), - (1191, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41orVa7m', '5600604'), - (1191, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41orVa7m', '5605544'), - (1191, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', '41orVa7m', '5606737'), - (1191, 1719, 'attending', '2022-10-05 16:07:01', '2025-12-17 19:47:12', '41orVa7m', '5630958'), - (1191, 1720, 'attending', '2022-10-15 08:52:30', '2025-12-17 19:47:12', '41orVa7m', '5630959'), - (1191, 1721, 'attending', '2022-10-22 12:04:56', '2025-12-17 19:47:13', '41orVa7m', '5630960'), - (1191, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41orVa7m', '5630961'), - (1191, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41orVa7m', '5630962'), - (1191, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41orVa7m', '5630966'), - (1191, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41orVa7m', '5630967'), - (1191, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41orVa7m', '5630968'), - (1191, 1727, 'maybe', '2022-12-03 12:24:04', '2025-12-17 19:47:16', '41orVa7m', '5630969'), - (1191, 1732, 'maybe', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41orVa7m', '5635406'), - (1191, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41orVa7m', '5638765'), - (1191, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41orVa7m', '5640097'), - (1191, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41orVa7m', '5640843'), - (1191, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41orVa7m', '5641521'), - (1191, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41orVa7m', '5642818'), - (1191, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41orVa7m', '5652395'), - (1191, 1762, 'attending', '2022-11-28 07:06:53', '2025-12-17 19:47:16', '41orVa7m', '5670445'), - (1191, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41orVa7m', '5671637'), - (1191, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41orVa7m', '5672329'), - (1191, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41orVa7m', '5674057'), - (1191, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41orVa7m', '5674060'), - (1191, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41orVa7m', '5677461'), - (1191, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41orVa7m', '5698046'), - (1191, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41orVa7m', '5699760'), - (1191, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41orVa7m', '5741601'), - (1191, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41orVa7m', '5763458'), - (1191, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41orVa7m', '5774172'), - (1191, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '41orVa7m', '5818247'), - (1191, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41orVa7m', '5819471'), - (1191, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41orVa7m', '5827739'), - (1191, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41orVa7m', '5844306'), - (1191, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41orVa7m', '5850159'), - (1191, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41orVa7m', '5858999'), - (1191, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41orVa7m', '5871984'), - (1191, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41orVa7m', '5876354'), - (1191, 1864, 'attending', '2023-01-21 04:27:55', '2025-12-17 19:47:05', '41orVa7m', '5879675'), - (1191, 1865, 'attending', '2023-01-28 07:05:36', '2025-12-17 19:47:06', '41orVa7m', '5879676'), - (1191, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '41orVa7m', '5880939'), - (1191, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '41orVa7m', '5880940'), - (1191, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '41orVa7m', '5880942'), - (1191, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '41orVa7m', '5880943'), - (1191, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41orVa7m', '5887890'), - (1191, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41orVa7m', '5888598'), - (1191, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41orVa7m', '5893260'), - (1191, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '41orVa7m', '5899826'), - (1191, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '41orVa7m', '5900199'), - (1191, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '41orVa7m', '5900200'), - (1191, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '41orVa7m', '5900202'), - (1191, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '41orVa7m', '5900203'), - (1191, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '41orVa7m', '5901108'), - (1191, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '41orVa7m', '5901126'), - (1191, 1897, 'attending', '2023-02-11 02:07:29', '2025-12-17 19:47:07', '41orVa7m', '5901128'), - (1191, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '41orVa7m', '5909655'), - (1191, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '41orVa7m', '5910522'), - (1191, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '41orVa7m', '5910526'), - (1191, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '41orVa7m', '5910528'), - (1191, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '41orVa7m', '5916219'), - (1191, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '41orVa7m', '5936234'), - (1191, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '41orVa7m', '5958351'), - (1191, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '41orVa7m', '5959751'), - (1191, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '41orVa7m', '5959755'), - (1191, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '41orVa7m', '5960055'), - (1191, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '41orVa7m', '5961684'), - (1191, 1944, 'maybe', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '41orVa7m', '5962132'), - (1191, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '41orVa7m', '5962133'), - (1191, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '41orVa7m', '5962134'), - (1191, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '41orVa7m', '5962317'), - (1191, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '41orVa7m', '5962318'), - (1191, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '41orVa7m', '5965933'), - (1191, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '41orVa7m', '5967014'), - (1191, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '41orVa7m', '5972763'), - (1191, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '41orVa7m', '5972815'), - (1191, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '41orVa7m', '5974016'), - (1191, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '41orVa7m', '5981515'), - (1191, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '41orVa7m', '5993516'), - (1191, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '41orVa7m', '5998939'), - (1191, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '41orVa7m', '6028191'), - (1191, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '41orVa7m', '6040066'), - (1191, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '41orVa7m', '6042717'), - (1191, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '41orVa7m', '6044838'), - (1191, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '41orVa7m', '6044839'), - (1191, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41orVa7m', '6045684'), - (1191, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '41orVa7m', '6050104'), - (1191, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '41orVa7m', '6053195'), - (1191, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '41orVa7m', '6053198'), - (1191, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '41orVa7m', '6056085'), - (1191, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '41orVa7m', '6056916'), - (1191, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '41orVa7m', '6059290'), - (1191, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '41orVa7m', '6060328'), - (1191, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '41orVa7m', '6061037'), - (1191, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '41orVa7m', '6061039'), - (1191, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '41orVa7m', '6067245'), - (1191, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '41orVa7m', '6068094'), - (1191, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '41orVa7m', '6068252'), - (1191, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '41orVa7m', '6068253'), - (1191, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '41orVa7m', '6068254'), - (1191, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '41orVa7m', '6068280'), - (1191, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '41orVa7m', '6069093'), - (1191, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '41orVa7m', '6072528'), - (1191, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '41orVa7m', '6079840'), - (1191, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '41orVa7m', '6083398'), - (1191, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '41orVa7m', '6093504'), - (1191, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '41orVa7m', '6097414'), - (1191, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '41orVa7m', '6097442'), - (1191, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '41orVa7m', '6097684'), - (1191, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '41orVa7m', '6098762'), - (1191, 2064, 'maybe', '2023-06-19 10:14:36', '2025-12-17 19:46:50', '41orVa7m', '6099988'), - (1191, 2065, 'attending', '2023-05-22 09:55:34', '2025-12-17 19:46:49', '41orVa7m', '6101169'), - (1191, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '41orVa7m', '6101361'), - (1191, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '41orVa7m', '6101362'), - (1191, 2068, 'not_attending', '2023-05-16 00:00:15', '2025-12-17 19:47:03', '41orVa7m', '6102837'), - (1191, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '41orVa7m', '6107314'), - (1191, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '41orVa7m', '6120034'), - (1191, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '41orVa7m', '6136733'), - (1191, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '41orVa7m', '6137989'), - (1191, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '41orVa7m', '6150864'), - (1191, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '41orVa7m', '6155491'), - (1191, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '41orVa7m', '6164417'), - (1191, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '41orVa7m', '6166388'), - (1191, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '41orVa7m', '6176439'), - (1191, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '41orVa7m', '6182410'), - (1191, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '41orVa7m', '6185812'), - (1191, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '41orVa7m', '6187651'), - (1191, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '41orVa7m', '6187963'), - (1191, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '41orVa7m', '6187964'), - (1191, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '41orVa7m', '6187966'), - (1191, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '41orVa7m', '6187967'), - (1191, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '41orVa7m', '6187969'), - (1191, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '41orVa7m', '6334878'), - (1191, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '41orVa7m', '6337236'), - (1191, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '41orVa7m', '6337970'), - (1191, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '41orVa7m', '6338308'), - (1191, 2160, 'attending', '2023-07-29 15:34:16', '2025-12-17 19:46:54', '41orVa7m', '6338358'), - (1191, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '41orVa7m', '6340845'), - (1191, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '41orVa7m', '6341710'), - (1191, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '41orVa7m', '6342044'), - (1191, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '41orVa7m', '6342298'), - (1191, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '41orVa7m', '6343294'), - (1191, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '41orVa7m', '6347034'), - (1191, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '41orVa7m', '6347056'), - (1191, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '41orVa7m', '6353830'), - (1191, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '41orVa7m', '6353831'), - (1191, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '41orVa7m', '6357867'), - (1191, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '41orVa7m', '6358652'), - (1191, 2204, 'attending', '2023-08-20 00:40:15', '2025-12-17 19:46:55', '41orVa7m', '6361542'), - (1191, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '41orVa7m', '6361709'), - (1191, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '41orVa7m', '6361710'), - (1191, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '41orVa7m', '6361711'), - (1191, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '41orVa7m', '6361712'), - (1191, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '41orVa7m', '6361713'), - (1191, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '41orVa7m', '6382573'), - (1191, 2239, 'attending', '2023-09-01 01:39:23', '2025-12-17 19:46:56', '41orVa7m', '6387592'), - (1191, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '41orVa7m', '6388604'), - (1191, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '41orVa7m', '6394629'), - (1191, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '41orVa7m', '6394631'), - (1191, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '41orVa7m', '6440863'), - (1191, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '41orVa7m', '6445440'), - (1191, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '41orVa7m', '6453951'), - (1191, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '41orVa7m', '6461696'), - (1191, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '41orVa7m', '6462129'), - (1191, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '41orVa7m', '6463218'), - (1191, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '41orVa7m', '6472181'), - (1191, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41orVa7m', '6482693'), - (1191, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '41orVa7m', '6484200'), - (1191, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '41orVa7m', '6484680'), - (1191, 2310, 'attending', '2023-11-11 23:57:29', '2025-12-17 19:46:47', '41orVa7m', '6487709'), - (1191, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41orVa7m', '6507741'), - (1191, 2318, 'attending', '2023-10-31 18:41:47', '2025-12-17 19:46:47', '41orVa7m', '6508566'), - (1191, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41orVa7m', '6514659'), - (1191, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41orVa7m', '6514660'), - (1191, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41orVa7m', '6519103'), - (1191, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41orVa7m', '6535681'), - (1191, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41orVa7m', '6584747'), - (1191, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41orVa7m', '6587097'), - (1191, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41orVa7m', '6609022'), - (1191, 2370, 'maybe', '2023-12-13 12:46:48', '2025-12-17 19:46:36', '41orVa7m', '6623765'), - (1191, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41orVa7m', '6632757'), - (1191, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41orVa7m', '6644187'), - (1191, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41orVa7m', '6648951'), - (1191, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41orVa7m', '6648952'), - (1191, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41orVa7m', '6655401'), - (1191, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41orVa7m', '6661585'), - (1191, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41orVa7m', '6661588'), - (1191, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41orVa7m', '6661589'), - (1191, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41orVa7m', '6699906'), - (1191, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41orVa7m', '6699913'), - (1191, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41orVa7m', '6701109'), - (1191, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41orVa7m', '6705219'), - (1191, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41orVa7m', '6710153'), - (1191, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41orVa7m', '6711552'), - (1191, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '41orVa7m', '6711553'), - (1191, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41orVa7m', '6722688'), - (1191, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41orVa7m', '6730620'), - (1191, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '41orVa7m', '6730642'), - (1191, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41orVa7m', '6740364'), - (1191, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41orVa7m', '6743829'), - (1191, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41orVa7m', '7030380'), - (1191, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41orVa7m', '7033677'), - (1191, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '41orVa7m', '7035415'), - (1191, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '41orVa7m', '7074364'), - (1191, 2525, 'maybe', '2024-06-13 20:35:31', '2025-12-17 19:46:28', '41orVa7m', '7074365'), - (1191, 2529, 'maybe', '2024-05-23 01:42:36', '2025-12-17 19:46:35', '41orVa7m', '7074369'), - (1191, 2627, 'maybe', '2024-05-25 16:38:07', '2025-12-17 19:46:35', '41orVa7m', '7264724'), - (1191, 2628, 'maybe', '2024-06-01 21:20:43', '2025-12-17 19:46:36', '41orVa7m', '7264725'), - (1191, 2629, 'maybe', '2024-06-08 21:25:09', '2025-12-17 19:46:28', '41orVa7m', '7264726'), - (1191, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '41orVa7m', '7302674'), - (1191, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '41orVa7m', '7324073'), - (1191, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '41orVa7m', '7324074'), - (1191, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '41orVa7m', '7324075'), - (1191, 2691, 'maybe', '2024-07-18 11:20:59', '2025-12-17 19:46:30', '41orVa7m', '7324076'), - (1191, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '41orVa7m', '7324078'), - (1191, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '41orVa7m', '7324082'), - (1191, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '41orVa7m', '7331457'), - (1191, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '41orVa7m', '7356752'), - (1191, 2766, 'maybe', '2024-07-30 08:08:03', '2025-12-17 19:46:30', '41orVa7m', '7363643'), - (1191, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '41orVa7m', '7368606'), - (1191, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '41orVa7m', '7397462'), - (1191, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '41orVa7m', '7424275'), - (1191, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '41orVa7m', '7424276'), - (1191, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '41orVa7m', '7432751'), - (1191, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '41orVa7m', '7432752'), - (1191, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '41orVa7m', '7432753'), - (1191, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '41orVa7m', '7432754'), - (1191, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '41orVa7m', '7432755'), - (1191, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '41orVa7m', '7432756'), - (1191, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '41orVa7m', '7432758'), - (1191, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '41orVa7m', '7432759'), - (1191, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '41orVa7m', '7433834'), - (1191, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '41orVa7m', '7470197'), - (1191, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '41orVa7m', '7685613'), - (1191, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '41orVa7m', '7688194'), - (1191, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '41orVa7m', '7688196'), - (1191, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '41orVa7m', '7688289'), - (1191, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '41orVa7m', '7692763'), - (1191, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '41orVa7m', '7697552'), - (1191, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '41orVa7m', '7699878'), - (1191, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '41orVa7m', '7704043'), - (1191, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '41orVa7m', '7712467'), - (1191, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '41orVa7m', '7713585'), - (1191, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '41orVa7m', '7713586'), - (1191, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '41orVa7m', '7738518'), - (1191, 2962, 'not_attending', '2024-12-27 22:26:20', '2025-12-17 19:46:22', '41orVa7m', '7750632'), - (1191, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '41orVa7m', '7750636'), - (1191, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '41orVa7m', '7796540'), - (1191, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '41orVa7m', '7796541'), - (1191, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '41orVa7m', '7796542'), - (1192, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mLGq9Nwd', '6045684'), - (1193, 258, 'maybe', '2021-06-25 04:39:22', '2025-12-17 19:47:47', 'NmL3pO8d', '3149489'), - (1193, 262, 'attending', '2021-06-25 04:39:39', '2025-12-17 19:47:38', 'NmL3pO8d', '3149493'), - (1193, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'NmL3pO8d', '4021848'), - (1193, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'NmL3pO8d', '4136937'), - (1193, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'NmL3pO8d', '4136938'), - (1193, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmL3pO8d', '4225444'), - (1193, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'NmL3pO8d', '4229417'), - (1193, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'NmL3pO8d', '4229418'), - (1193, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmL3pO8d', '4239259'), - (1193, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmL3pO8d', '4250163'), - (1193, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'NmL3pO8d', '4275957'), - (1193, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmL3pO8d', '6045684'), - (1194, 262, 'not_attending', '2021-06-29 21:27:42', '2025-12-17 19:47:38', 'nm60xJ14', '3149493'), - (1194, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'nm60xJ14', '3236448'), - (1194, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'nm60xJ14', '3974109'), - (1194, 844, 'not_attending', '2021-06-17 15:28:12', '2025-12-17 19:47:38', 'nm60xJ14', '4014338'), - (1194, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'nm60xJ14', '4021848'), - (1194, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'nm60xJ14', '4136937'), - (1194, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'nm60xJ14', '4136938'), - (1194, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'nm60xJ14', '4136947'), - (1194, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nm60xJ14', '4210314'), - (1194, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'nm60xJ14', '4225444'), - (1194, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'nm60xJ14', '4229417'), - (1194, 892, 'not_attending', '2021-07-06 23:01:50', '2025-12-17 19:47:39', 'nm60xJ14', '4229418'), - (1194, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'nm60xJ14', '4229420'), - (1194, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'nm60xJ14', '4229423'), - (1194, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'nm60xJ14', '4239259'), - (1194, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'nm60xJ14', '4240316'), - (1194, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'nm60xJ14', '4240317'), - (1194, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'nm60xJ14', '4240318'), - (1194, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'nm60xJ14', '4240320'), - (1194, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'nm60xJ14', '4250163'), - (1194, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'nm60xJ14', '4275957'), - (1194, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nm60xJ14', '4277819'), - (1194, 923, 'not_attending', '2021-07-26 20:31:42', '2025-12-17 19:47:40', 'nm60xJ14', '4292773'), - (1194, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'nm60xJ14', '4301723'), - (1194, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'nm60xJ14', '4302093'), - (1194, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nm60xJ14', '4304151'), - (1194, 940, 'not_attending', '2021-07-30 16:29:43', '2025-12-17 19:47:40', 'nm60xJ14', '4309049'), - (1194, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'nm60xJ14', '4315713'), - (1194, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'nm60xJ14', '4315714'), - (1194, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'nm60xJ14', '4315726'), - (1194, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nm60xJ14', '4356801'), - (1194, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'nm60xJ14', '4366186'), - (1194, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'nm60xJ14', '4366187'), - (1194, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'nm60xJ14', '4420735'), - (1194, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nm60xJ14', '4420738'), - (1194, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nm60xJ14', '4420739'), - (1194, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm60xJ14', '4420741'), - (1194, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nm60xJ14', '4420744'), - (1194, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nm60xJ14', '4420747'), - (1194, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nm60xJ14', '4420748'), - (1194, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nm60xJ14', '4420749'), - (1194, 1054, 'maybe', '2022-03-19 17:32:22', '2025-12-17 19:47:25', 'nm60xJ14', '4496619'), - (1194, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm60xJ14', '4736497'), - (1194, 1177, 'attending', '2022-02-11 23:00:53', '2025-12-17 19:47:32', 'nm60xJ14', '4736499'), - (1194, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm60xJ14', '4736500'), - (1194, 1179, 'not_attending', '2022-02-16 16:03:33', '2025-12-17 19:47:32', 'nm60xJ14', '4736501'), - (1194, 1180, 'not_attending', '2022-02-27 00:46:27', '2025-12-17 19:47:33', 'nm60xJ14', '4736502'), - (1194, 1181, 'not_attending', '2022-02-27 00:46:44', '2025-12-17 19:47:33', 'nm60xJ14', '4736503'), - (1194, 1182, 'not_attending', '2022-03-11 00:05:18', '2025-12-17 19:47:33', 'nm60xJ14', '4736504'), - (1194, 1201, 'not_attending', '2022-01-21 00:15:15', '2025-12-17 19:47:32', 'nm60xJ14', '4766841'), - (1194, 1212, 'not_attending', '2022-01-27 21:37:57', '2025-12-17 19:47:32', 'nm60xJ14', '4780759'), - (1194, 1213, 'attending', '2022-01-27 21:38:20', '2025-12-17 19:47:32', 'nm60xJ14', '4780760'), - (1194, 1232, 'not_attending', '2022-02-09 22:29:44', '2025-12-17 19:47:32', 'nm60xJ14', '5038850'), - (1194, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nm60xJ14', '5045826'), - (1194, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm60xJ14', '5132533'), - (1194, 1272, 'attending', '2022-03-19 17:32:15', '2025-12-17 19:47:25', 'nm60xJ14', '5186582'), - (1194, 1273, 'attending', '2022-03-25 15:28:32', '2025-12-17 19:47:25', 'nm60xJ14', '5186583'), - (1194, 1274, 'maybe', '2022-03-22 22:32:41', '2025-12-17 19:47:26', 'nm60xJ14', '5186585'), - (1194, 1281, 'not_attending', '2022-04-08 23:49:42', '2025-12-17 19:47:27', 'nm60xJ14', '5190437'), - (1194, 1284, 'not_attending', '2022-04-12 23:32:11', '2025-12-17 19:47:27', 'nm60xJ14', '5195095'), - (1194, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm60xJ14', '5215989'), - (1194, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm60xJ14', '5223686'), - (1194, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'nm60xJ14', '5227432'), - (1194, 1346, 'not_attending', '2022-04-23 17:50:40', '2025-12-17 19:47:27', 'nm60xJ14', '5247467'), - (1194, 1362, 'not_attending', '2022-04-27 19:03:56', '2025-12-17 19:47:28', 'nm60xJ14', '5260800'), - (1194, 1374, 'not_attending', '2022-05-07 23:06:13', '2025-12-17 19:47:28', 'nm60xJ14', '5269930'), - (1194, 1378, 'not_attending', '2022-05-13 12:43:18', '2025-12-17 19:47:29', 'nm60xJ14', '5271448'), - (1194, 1379, 'not_attending', '2022-05-21 22:33:18', '2025-12-17 19:47:30', 'nm60xJ14', '5271449'), - (1194, 1380, 'not_attending', '2022-05-30 01:18:36', '2025-12-17 19:47:30', 'nm60xJ14', '5271450'), - (1194, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'nm60xJ14', '5276469'), - (1194, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm60xJ14', '5278159'), - (1194, 1407, 'maybe', '2022-05-30 01:18:42', '2025-12-17 19:47:30', 'nm60xJ14', '5363695'), - (1194, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm60xJ14', '5365960'), - (1194, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'nm60xJ14', '5368973'), - (1194, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm60xJ14', '5378247'), - (1194, 1431, 'not_attending', '2022-06-11 22:26:24', '2025-12-17 19:47:31', 'nm60xJ14', '5389605'), - (1194, 1442, 'not_attending', '2022-06-18 22:45:43', '2025-12-17 19:47:17', 'nm60xJ14', '5397265'), - (1194, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'nm60xJ14', '5403967'), - (1194, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm60xJ14', '5404786'), - (1194, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm60xJ14', '5405203'), - (1194, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'nm60xJ14', '5408794'), - (1194, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'nm60xJ14', '5411699'), - (1194, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm60xJ14', '5412550'), - (1194, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm60xJ14', '5415046'), - (1194, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm60xJ14', '5422086'), - (1194, 1498, 'not_attending', '2022-07-02 22:45:40', '2025-12-17 19:47:19', 'nm60xJ14', '5422406'), - (1194, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm60xJ14', '5424565'), - (1194, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm60xJ14', '5426882'), - (1194, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'nm60xJ14', '5427083'), - (1194, 1511, 'not_attending', '2022-07-06 23:39:28', '2025-12-17 19:47:19', 'nm60xJ14', '5437733'), - (1194, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm60xJ14', '5441125'), - (1194, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm60xJ14', '5441126'), - (1194, 1515, 'not_attending', '2022-08-03 21:17:14', '2025-12-17 19:47:21', 'nm60xJ14', '5441128'), - (1194, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm60xJ14', '5441131'), - (1194, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm60xJ14', '5441132'), - (1194, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'nm60xJ14', '5446643'), - (1194, 1534, 'not_attending', '2022-08-03 21:17:11', '2025-12-17 19:47:21', 'nm60xJ14', '5448759'), - (1194, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm60xJ14', '5453325'), - (1194, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm60xJ14', '5454516'), - (1194, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm60xJ14', '5454605'), - (1194, 1546, 'not_attending', '2022-07-25 19:41:54', '2025-12-17 19:47:20', 'nm60xJ14', '5454607'), - (1194, 1547, 'maybe', '2022-07-24 18:43:22', '2025-12-17 19:47:20', 'nm60xJ14', '5454608'), - (1194, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm60xJ14', '5455037'), - (1194, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm60xJ14', '5461278'), - (1194, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm60xJ14', '5469480'), - (1194, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'nm60xJ14', '5471073'), - (1194, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm60xJ14', '5474663'), - (1194, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm60xJ14', '5482022'), - (1194, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'nm60xJ14', '5482793'), - (1194, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm60xJ14', '5488912'), - (1194, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm60xJ14', '5492192'), - (1194, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm60xJ14', '5493139'), - (1194, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm60xJ14', '5493200'), - (1194, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm60xJ14', '5502188'), - (1194, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm60xJ14', '5505059'), - (1194, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm60xJ14', '5509055'), - (1194, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm60xJ14', '5512862'), - (1194, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm60xJ14', '5513985'), - (1194, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nm60xJ14', '5519981'), - (1194, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm60xJ14', '5522550'), - (1194, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm60xJ14', '5534683'), - (1194, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm60xJ14', '5537735'), - (1194, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm60xJ14', '5540859'), - (1194, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm60xJ14', '5546619'), - (1194, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm60xJ14', '5557747'), - (1194, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm60xJ14', '5560255'), - (1194, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm60xJ14', '5562906'), - (1194, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm60xJ14', '5600604'), - (1194, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm60xJ14', '5605544'), - (1194, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm60xJ14', '5630960'), - (1194, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm60xJ14', '5630961'), - (1194, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm60xJ14', '5630962'), - (1194, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm60xJ14', '5630966'), - (1194, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm60xJ14', '5630967'), - (1194, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm60xJ14', '5630968'), - (1194, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm60xJ14', '5635406'), - (1194, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm60xJ14', '5638765'), - (1194, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm60xJ14', '5640097'), - (1194, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm60xJ14', '5640843'), - (1194, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm60xJ14', '5641521'), - (1194, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm60xJ14', '5642818'), - (1194, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm60xJ14', '5652395'), - (1194, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm60xJ14', '5670445'), - (1194, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm60xJ14', '5671637'), - (1194, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm60xJ14', '5672329'), - (1194, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm60xJ14', '5674057'), - (1194, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm60xJ14', '5674060'), - (1194, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm60xJ14', '5677461'), - (1194, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm60xJ14', '5698046'), - (1194, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm60xJ14', '5699760'), - (1194, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm60xJ14', '5741601'), - (1194, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm60xJ14', '5763458'), - (1194, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm60xJ14', '5774172'), - (1194, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nm60xJ14', '5818247'), - (1194, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm60xJ14', '5819471'), - (1194, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'nm60xJ14', '5827739'), - (1194, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm60xJ14', '5844306'), - (1194, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm60xJ14', '5850159'), - (1194, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm60xJ14', '5858999'), - (1194, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm60xJ14', '5871984'), - (1194, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm60xJ14', '5876354'), - (1194, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm60xJ14', '5880939'), - (1194, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm60xJ14', '5880940'), - (1194, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm60xJ14', '5880942'), - (1194, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm60xJ14', '5880943'), - (1194, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm60xJ14', '5887890'), - (1194, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm60xJ14', '5888598'), - (1194, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm60xJ14', '5893260'), - (1194, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm60xJ14', '5899826'), - (1194, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm60xJ14', '5900199'), - (1194, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm60xJ14', '5900200'), - (1194, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm60xJ14', '5900202'), - (1194, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm60xJ14', '5900203'), - (1194, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm60xJ14', '5901108'), - (1194, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm60xJ14', '5901126'), - (1194, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm60xJ14', '5909655'), - (1194, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm60xJ14', '5910522'), - (1194, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm60xJ14', '5910526'), - (1194, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm60xJ14', '5910528'), - (1194, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm60xJ14', '5916219'), - (1194, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm60xJ14', '5936234'), - (1194, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm60xJ14', '5958351'), - (1194, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm60xJ14', '5959751'), - (1194, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm60xJ14', '5959755'), - (1194, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm60xJ14', '5960055'), - (1194, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm60xJ14', '5961684'), - (1194, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm60xJ14', '5962132'), - (1194, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nm60xJ14', '5962133'), - (1194, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm60xJ14', '5962134'), - (1194, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm60xJ14', '5962317'), - (1194, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm60xJ14', '5962318'), - (1194, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nm60xJ14', '5965933'), - (1194, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm60xJ14', '5967014'), - (1194, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm60xJ14', '5972815'), - (1194, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm60xJ14', '5974016'), - (1194, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm60xJ14', '5981515'), - (1194, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm60xJ14', '5993516'), - (1194, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm60xJ14', '5998939'), - (1194, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm60xJ14', '6028191'), - (1194, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm60xJ14', '6040066'), - (1194, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm60xJ14', '6042717'), - (1194, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm60xJ14', '6044838'), - (1194, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm60xJ14', '6044839'), - (1194, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm60xJ14', '6045684'), - (1194, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm60xJ14', '6050104'), - (1194, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm60xJ14', '6053195'), - (1194, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm60xJ14', '6053198'), - (1194, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm60xJ14', '6056085'), - (1194, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm60xJ14', '6056916'), - (1194, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm60xJ14', '6059290'), - (1194, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm60xJ14', '6060328'), - (1194, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm60xJ14', '6061037'), - (1194, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm60xJ14', '6061039'), - (1194, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm60xJ14', '6067245'), - (1194, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm60xJ14', '6068094'), - (1194, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm60xJ14', '6068252'), - (1194, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm60xJ14', '6068253'), - (1194, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm60xJ14', '6068254'), - (1194, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm60xJ14', '6068280'), - (1194, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm60xJ14', '6069093'), - (1194, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm60xJ14', '6072528'), - (1194, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm60xJ14', '6079840'), - (1194, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm60xJ14', '6083398'), - (1194, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm60xJ14', '6093504'), - (1194, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm60xJ14', '6097414'), - (1194, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm60xJ14', '6097442'), - (1194, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm60xJ14', '6097684'), - (1194, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm60xJ14', '6098762'), - (1194, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm60xJ14', '6101361'), - (1194, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm60xJ14', '6101362'), - (1194, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm60xJ14', '6107314'), - (1194, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm60xJ14', '6120034'), - (1194, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nm60xJ14', '6136733'), - (1194, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm60xJ14', '6137989'), - (1194, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm60xJ14', '6150864'), - (1194, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm60xJ14', '6155491'), - (1194, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm60xJ14', '6164417'), - (1194, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm60xJ14', '6166388'), - (1194, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm60xJ14', '6176439'), - (1194, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm60xJ14', '6182410'), - (1194, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm60xJ14', '6185812'), - (1194, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm60xJ14', '6187651'), - (1194, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm60xJ14', '6187963'), - (1194, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm60xJ14', '6187964'), - (1194, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm60xJ14', '6187966'), - (1194, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm60xJ14', '6187967'), - (1194, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm60xJ14', '6187969'), - (1194, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm60xJ14', '6334878'), - (1194, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm60xJ14', '6337236'), - (1194, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm60xJ14', '6337970'), - (1194, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm60xJ14', '6338308'), - (1194, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm60xJ14', '6341710'), - (1194, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm60xJ14', '6342044'), - (1194, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm60xJ14', '6342298'), - (1194, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm60xJ14', '6343294'), - (1194, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm60xJ14', '6347034'), - (1194, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm60xJ14', '6347056'), - (1194, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm60xJ14', '6353830'), - (1194, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm60xJ14', '6353831'), - (1194, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm60xJ14', '6357867'), - (1194, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm60xJ14', '6358652'), - (1194, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm60xJ14', '6361709'), - (1194, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm60xJ14', '6361710'), - (1194, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm60xJ14', '6361711'), - (1194, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm60xJ14', '6361712'), - (1194, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm60xJ14', '6361713'), - (1194, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nm60xJ14', '6382573'), - (1194, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm60xJ14', '6388604'), - (1194, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm60xJ14', '6394629'), - (1194, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm60xJ14', '6394631'), - (1194, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm60xJ14', '6440863'), - (1194, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm60xJ14', '6445440'), - (1194, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm60xJ14', '6453951'), - (1194, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm60xJ14', '6461696'), - (1194, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm60xJ14', '6462129'), - (1194, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm60xJ14', '6463218'), - (1194, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm60xJ14', '6472181'), - (1194, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm60xJ14', '6482693'), - (1194, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nm60xJ14', '6484200'), - (1194, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm60xJ14', '6484680'), - (1194, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm60xJ14', '6507741'), - (1194, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm60xJ14', '6514659'), - (1194, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm60xJ14', '6514660'), - (1194, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm60xJ14', '6519103'), - (1194, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm60xJ14', '6535681'), - (1194, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm60xJ14', '6584747'), - (1194, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm60xJ14', '6587097'), - (1194, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm60xJ14', '6609022'), - (1194, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nm60xJ14', '6632757'), - (1194, 2376, 'maybe', '2024-01-03 16:10:54', '2025-12-17 19:46:40', 'nm60xJ14', '6642900'), - (1194, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm60xJ14', '6644187'), - (1194, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm60xJ14', '6648951'), - (1194, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm60xJ14', '6648952'), - (1194, 2388, 'maybe', '2024-01-03 16:10:39', '2025-12-17 19:46:37', 'nm60xJ14', '6649244'), - (1194, 2391, 'not_attending', '2024-01-11 17:41:46', '2025-12-17 19:46:37', 'nm60xJ14', '6654138'), - (1194, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm60xJ14', '6655401'), - (1194, 2399, 'not_attending', '2024-01-11 17:41:49', '2025-12-17 19:46:38', 'nm60xJ14', '6657583'), - (1194, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm60xJ14', '6661585'), - (1194, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm60xJ14', '6661588'), - (1194, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm60xJ14', '6661589'), - (1194, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm60xJ14', '6699906'), - (1194, 2408, 'not_attending', '2024-01-27 17:21:42', '2025-12-17 19:46:40', 'nm60xJ14', '6699907'), - (1194, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm60xJ14', '6699913'), - (1194, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm60xJ14', '6701109'), - (1194, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm60xJ14', '6705219'), - (1194, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm60xJ14', '6710153'), - (1194, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm60xJ14', '6711552'), - (1194, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nm60xJ14', '6711553'), - (1194, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm60xJ14', '6722688'), - (1194, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm60xJ14', '6730620'), - (1194, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm60xJ14', '6740364'), - (1194, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm60xJ14', '6743829'), - (1194, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm60xJ14', '7030380'), - (1194, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nm60xJ14', '7033677'), - (1194, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm60xJ14', '7044715'), - (1194, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm60xJ14', '7050318'), - (1194, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm60xJ14', '7050319'), - (1194, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm60xJ14', '7050322'), - (1194, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm60xJ14', '7057804'), - (1194, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm60xJ14', '7072824'), - (1194, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm60xJ14', '7074348'), - (1194, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm60xJ14', '7074364'), - (1194, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nm60xJ14', '7089267'), - (1194, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm60xJ14', '7098747'), - (1194, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm60xJ14', '7113468'), - (1194, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm60xJ14', '7114856'), - (1194, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm60xJ14', '7114951'), - (1194, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm60xJ14', '7114955'), - (1194, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm60xJ14', '7114956'), - (1194, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm60xJ14', '7114957'), - (1194, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm60xJ14', '7159484'), - (1194, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm60xJ14', '7178446'), - (1194, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nm60xJ14', '7220467'), - (1194, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm60xJ14', '7240354'), - (1194, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm60xJ14', '7251633'), - (1194, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm60xJ14', '7324073'), - (1194, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm60xJ14', '7324074'), - (1194, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm60xJ14', '7324075'), - (1194, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm60xJ14', '7324078'), - (1194, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm60xJ14', '7324082'), - (1194, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm60xJ14', '7331457'), - (1194, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm60xJ14', '7363643'), - (1194, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm60xJ14', '7368606'), - (1194, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm60xJ14', '7397462'), - (1194, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm60xJ14', '7424275'), - (1194, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm60xJ14', '7432751'), - (1194, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm60xJ14', '7432752'), - (1194, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm60xJ14', '7432753'), - (1194, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm60xJ14', '7432754'), - (1194, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm60xJ14', '7432755'), - (1194, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm60xJ14', '7432756'), - (1194, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm60xJ14', '7432758'), - (1194, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm60xJ14', '7432759'), - (1194, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm60xJ14', '7433834'), - (1194, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nm60xJ14', '7470197'), - (1194, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm60xJ14', '7685613'), - (1194, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm60xJ14', '7688194'), - (1194, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm60xJ14', '7688196'), - (1194, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm60xJ14', '7688289'), - (1194, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm60xJ14', '7692763'), - (1194, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm60xJ14', '7697552'), - (1194, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm60xJ14', '7699878'), - (1194, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nm60xJ14', '7704043'), - (1194, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm60xJ14', '7712467'), - (1194, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm60xJ14', '7713585'), - (1194, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm60xJ14', '7713586'), - (1194, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm60xJ14', '7738518'), - (1194, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm60xJ14', '7750636'), - (1194, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm60xJ14', '7796540'), - (1194, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm60xJ14', '7796541'), - (1194, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm60xJ14', '7796542'), - (1194, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm60xJ14', '7825913'), - (1194, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm60xJ14', '7826209'), - (1194, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm60xJ14', '7834742'), - (1194, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm60xJ14', '7842108'), - (1194, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm60xJ14', '7842902'), - (1194, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm60xJ14', '7842903'), - (1194, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm60xJ14', '7842904'), - (1194, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm60xJ14', '7842905'), - (1194, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm60xJ14', '7855719'), - (1194, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm60xJ14', '7860683'), - (1194, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm60xJ14', '7860684'), - (1194, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm60xJ14', '7866095'), - (1194, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm60xJ14', '7869170'), - (1194, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm60xJ14', '7869188'), - (1194, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm60xJ14', '7869201'), - (1194, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm60xJ14', '7877465'), - (1194, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm60xJ14', '7888250'), - (1194, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm60xJ14', '7904777'), - (1194, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm60xJ14', '8349164'), - (1194, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm60xJ14', '8349545'), - (1194, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm60xJ14', '8368028'), - (1194, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm60xJ14', '8368029'), - (1194, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm60xJ14', '8388462'), - (1194, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm60xJ14', '8400273'), - (1194, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm60xJ14', '8400275'), - (1194, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nm60xJ14', '8400276'), - (1194, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm60xJ14', '8404977'), - (1194, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm60xJ14', '8430783'), - (1194, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm60xJ14', '8430784'), - (1194, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm60xJ14', '8430799'), - (1194, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm60xJ14', '8430800'), - (1194, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm60xJ14', '8430801'), - (1194, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm60xJ14', '8438709'), - (1194, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm60xJ14', '8457738'), - (1194, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm60xJ14', '8459566'), - (1194, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm60xJ14', '8459567'), - (1194, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm60xJ14', '8461032'), - (1194, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm60xJ14', '8477877'), - (1194, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm60xJ14', '8485688'), - (1194, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm60xJ14', '8490587'), - (1194, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm60xJ14', '8493552'), - (1194, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm60xJ14', '8493553'), - (1194, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm60xJ14', '8493554'), - (1194, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm60xJ14', '8493555'), - (1194, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm60xJ14', '8493556'), - (1194, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm60xJ14', '8493557'), - (1194, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm60xJ14', '8493558'), - (1194, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm60xJ14', '8493559'), - (1194, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm60xJ14', '8493560'), - (1194, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nm60xJ14', '8493561'), - (1194, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm60xJ14', '8493572'), - (1194, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm60xJ14', '8540725'), - (1194, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm60xJ14', '8555421'), - (1195, 1098, 'attending', '2021-11-08 01:01:22', '2025-12-17 19:47:36', 'Ae76Mjzd', '4598861'), - (1195, 1103, 'attending', '2021-11-10 20:30:15', '2025-12-17 19:47:36', 'Ae76Mjzd', '4616350'), - (1195, 1114, 'maybe', '2021-11-13 13:58:47', '2025-12-17 19:47:36', 'Ae76Mjzd', '4637896'), - (1195, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Ae76Mjzd', '4642994'), - (1195, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Ae76Mjzd', '4642995'), - (1195, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Ae76Mjzd', '4642996'), - (1195, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Ae76Mjzd', '4642997'), - (1195, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Ae76Mjzd', '4645687'), - (1195, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Ae76Mjzd', '4645698'), - (1195, 1128, 'attending', '2021-11-17 01:44:54', '2025-12-17 19:47:37', 'Ae76Mjzd', '4645704'), - (1195, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Ae76Mjzd', '4645705'), - (1195, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae76Mjzd', '4668385'), - (1195, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Ae76Mjzd', '4694407'), - (1195, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Ae76Mjzd', '4746789'), - (1195, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Ae76Mjzd', '4753929'), - (1195, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ae76Mjzd', '6045684'), - (1196, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mG2V1WYd', '6045684'), - (1197, 665, 'attending', '2021-09-02 09:15:16', '2025-12-17 19:47:43', 'mpKvzeqd', '3547143'), - (1197, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'mpKvzeqd', '4210314'), - (1197, 903, 'not_attending', '2021-08-17 17:29:07', '2025-12-17 19:47:42', 'mpKvzeqd', '4240320'), - (1197, 935, 'not_attending', '2021-08-17 17:29:05', '2025-12-17 19:47:41', 'mpKvzeqd', '4304151'), - (1197, 948, 'not_attending', '2021-08-17 17:29:01', '2025-12-17 19:47:41', 'mpKvzeqd', '4315714'), - (1197, 949, 'not_attending', '2021-08-17 17:28:56', '2025-12-17 19:47:42', 'mpKvzeqd', '4315726'), - (1197, 950, 'not_attending', '2021-08-10 22:12:00', '2025-12-17 19:47:42', 'mpKvzeqd', '4315730'), - (1197, 951, 'attending', '2021-08-10 22:13:03', '2025-12-17 19:47:43', 'mpKvzeqd', '4315731'), - (1197, 971, 'maybe', '2021-09-08 20:31:43', '2025-12-17 19:47:43', 'mpKvzeqd', '4356801'), - (1197, 973, 'maybe', '2021-08-17 17:28:48', '2025-12-17 19:47:42', 'mpKvzeqd', '4366186'), - (1197, 974, 'maybe', '2021-08-17 17:27:01', '2025-12-17 19:47:42', 'mpKvzeqd', '4366187'), - (1197, 990, 'attending', '2021-09-02 09:15:18', '2025-12-17 19:47:43', 'mpKvzeqd', '4420735'), - (1197, 991, 'attending', '2021-09-06 16:18:13', '2025-12-17 19:47:43', 'mpKvzeqd', '4420738'), - (1197, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'mpKvzeqd', '4420739'), - (1197, 993, 'attending', '2021-09-25 13:13:55', '2025-12-17 19:47:34', 'mpKvzeqd', '4420741'), - (1197, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'mpKvzeqd', '4420744'), - (1197, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'mpKvzeqd', '4420747'), - (1197, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'mpKvzeqd', '4420748'), - (1197, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'mpKvzeqd', '4420749'), - (1197, 1000, 'not_attending', '2021-09-02 09:15:26', '2025-12-17 19:47:43', 'mpKvzeqd', '4424456'), - (1197, 1001, 'attending', '2021-09-02 09:15:07', '2025-12-17 19:47:43', 'mpKvzeqd', '4424687'), - (1197, 1002, 'maybe', '2021-08-30 20:57:56', '2025-12-17 19:47:43', 'mpKvzeqd', '4424932'), - (1197, 1003, 'not_attending', '2021-09-06 11:18:35', '2025-12-17 19:47:43', 'mpKvzeqd', '4438802'), - (1197, 1014, 'not_attending', '2021-09-06 11:18:31', '2025-12-17 19:47:43', 'mpKvzeqd', '4439233'), - (1197, 1017, 'not_attending', '2021-09-06 11:18:40', '2025-12-17 19:47:43', 'mpKvzeqd', '4441822'), - (1197, 1018, 'not_attending', '2021-09-06 11:18:25', '2025-12-17 19:47:43', 'mpKvzeqd', '4448883'), - (1197, 1023, 'not_attending', '2021-09-14 09:34:45', '2025-12-17 19:47:43', 'mpKvzeqd', '4461883'), - (1197, 1067, 'maybe', '2021-09-24 21:46:34', '2025-12-17 19:47:34', 'mpKvzeqd', '4508342'), - (1197, 1070, 'attending', '2021-10-01 23:13:46', '2025-12-17 19:47:34', 'mpKvzeqd', '4512562'), - (1197, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mpKvzeqd', '4568602'), - (1197, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mpKvzeqd', '6045684'), - (1198, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd5jgo5Km', '7074364'), - (1198, 2627, 'not_attending', '2024-05-25 22:23:20', '2025-12-17 19:46:35', 'd5jgo5Km', '7264724'), - (1198, 2641, 'attending', '2024-05-18 01:38:45', '2025-12-17 19:46:35', 'd5jgo5Km', '7276107'), - (1198, 2644, 'maybe', '2024-05-23 18:02:52', '2025-12-17 19:46:35', 'd5jgo5Km', '7279039'), - (1198, 2646, 'maybe', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'd5jgo5Km', '7281768'), - (1198, 2651, 'attending', '2024-05-24 23:20:34', '2025-12-17 19:46:35', 'd5jgo5Km', '7288200'), - (1198, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd5jgo5Km', '7302674'), - (1198, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd5jgo5Km', '7324073'), - (1198, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd5jgo5Km', '7324074'), - (1198, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd5jgo5Km', '7324075'), - (1198, 2692, 'attending', '2024-07-27 22:37:29', '2025-12-17 19:46:30', 'd5jgo5Km', '7324077'), - (1198, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd5jgo5Km', '7324078'), - (1198, 2697, 'maybe', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd5jgo5Km', '7324082'), - (1198, 2699, 'maybe', '2024-06-12 21:15:04', '2025-12-17 19:46:28', 'd5jgo5Km', '7324385'), - (1198, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd5jgo5Km', '7331457'), - (1198, 2737, 'attending', '2024-07-02 21:48:48', '2025-12-17 19:46:29', 'd5jgo5Km', '7344070'), - (1198, 2742, 'attending', '2024-07-03 23:22:05', '2025-12-17 19:46:29', 'd5jgo5Km', '7345167'), - (1198, 2743, 'maybe', '2024-07-04 14:13:16', '2025-12-17 19:46:29', 'd5jgo5Km', '7345688'), - (1198, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'd5jgo5Km', '7356752'), - (1198, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd5jgo5Km', '7363643'), - (1198, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd5jgo5Km', '7368606'), - (1198, 2776, 'maybe', '2024-07-25 20:17:40', '2025-12-17 19:46:30', 'd5jgo5Km', '7370690'), - (1198, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd5jgo5Km', '7397462'), - (1198, 2806, 'attending', '2024-09-18 22:30:55', '2025-12-17 19:46:25', 'd5jgo5Km', '7404888'), - (1198, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd5jgo5Km', '7424275'), - (1198, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd5jgo5Km', '7424276'), - (1198, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd5jgo5Km', '7432751'), - (1198, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd5jgo5Km', '7432752'), - (1198, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd5jgo5Km', '7432753'), - (1198, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd5jgo5Km', '7432754'), - (1198, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd5jgo5Km', '7432755'), - (1198, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd5jgo5Km', '7432756'), - (1198, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd5jgo5Km', '7432758'), - (1198, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd5jgo5Km', '7432759'), - (1198, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd5jgo5Km', '7433834'), - (1198, 2839, 'attending', '2024-09-13 03:39:10', '2025-12-17 19:46:25', 'd5jgo5Km', '7439262'), - (1198, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd5jgo5Km', '7470197'), - (1198, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd5jgo5Km', '7685613'), - (1198, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd5jgo5Km', '7688194'), - (1198, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd5jgo5Km', '7688196'), - (1198, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd5jgo5Km', '7688289'), - (1198, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd5jgo5Km', '7692763'), - (1198, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd5jgo5Km', '7697552'), - (1198, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd5jgo5Km', '7699878'), - (1198, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd5jgo5Km', '7704043'), - (1198, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd5jgo5Km', '7712467'), - (1198, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd5jgo5Km', '7713585'), - (1198, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd5jgo5Km', '7713586'), - (1198, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd5jgo5Km', '7738518'), - (1198, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd5jgo5Km', '7750636'), - (1198, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd5jgo5Km', '7796540'), - (1198, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd5jgo5Km', '7796541'), - (1198, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd5jgo5Km', '7796542'), - (1199, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'xAYxbz0m', '4736497'), - (1199, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'xAYxbz0m', '4736499'), - (1199, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'xAYxbz0m', '4736500'), - (1199, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'xAYxbz0m', '4736503'), - (1199, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'xAYxbz0m', '4736504'), - (1199, 1185, 'not_attending', '2022-01-12 23:28:47', '2025-12-17 19:47:31', 'xAYxbz0m', '4746789'), - (1199, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xAYxbz0m', '4753929'), - (1199, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xAYxbz0m', '5038850'), - (1199, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xAYxbz0m', '5045826'), - (1199, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xAYxbz0m', '5132533'), - (1199, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYxbz0m', '6045684'), - (1200, 604, 'maybe', '2021-02-26 03:55:50', '2025-12-17 19:47:50', '6AXgn8Em', '3470305'), - (1200, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '6AXgn8Em', '3517815'), - (1200, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '6AXgn8Em', '3517816'), - (1200, 623, 'not_attending', '2021-02-26 11:21:08', '2025-12-17 19:47:51', '6AXgn8Em', '3523941'), - (1200, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '6AXgn8Em', '3533850'), - (1200, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '6AXgn8Em', '3536632'), - (1200, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '6AXgn8Em', '3536656'), - (1200, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '6AXgn8Em', '3539916'), - (1200, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '6AXgn8Em', '3539917'), - (1200, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '6AXgn8Em', '3539918'), - (1200, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '6AXgn8Em', '3539919'), - (1200, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '6AXgn8Em', '3539920'), - (1200, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '6AXgn8Em', '3539921'), - (1200, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '6AXgn8Em', '3539922'), - (1200, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '6AXgn8Em', '3539923'), - (1200, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '6AXgn8Em', '3539927'), - (1200, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '6AXgn8Em', '3582734'), - (1200, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXgn8Em', '3619523'), - (1200, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXgn8Em', '3674262'), - (1200, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXgn8Em', '3677402'), - (1200, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXgn8Em', '6045684'), - (1201, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AQbW1QN4', '5630967'), - (1201, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AQbW1QN4', '5630968'), - (1201, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AQbW1QN4', '5642818'), - (1201, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AQbW1QN4', '5670445'), - (1201, 1784, 'not_attending', '2022-11-16 19:58:39', '2025-12-17 19:47:16', 'AQbW1QN4', '5699760'), - (1201, 1788, 'not_attending', '2022-11-17 09:26:56', '2025-12-17 19:47:16', 'AQbW1QN4', '5727236'), - (1201, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AQbW1QN4', '5741601'), - (1201, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AQbW1QN4', '5763458'), - (1201, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AQbW1QN4', '5774172'), - (1201, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AQbW1QN4', '5818247'), - (1201, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AQbW1QN4', '5819471'), - (1201, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AQbW1QN4', '5827739'), - (1201, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AQbW1QN4', '5844306'), - (1201, 1846, 'not_attending', '2022-12-18 18:53:42', '2025-12-17 19:47:04', 'AQbW1QN4', '5845237'), - (1201, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AQbW1QN4', '5850159'), - (1201, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AQbW1QN4', '5858999'), - (1201, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AQbW1QN4', '5871984'), - (1201, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AQbW1QN4', '5876354'), - (1201, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQbW1QN4', '6045684'), - (1202, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd81KyXGm', '6514660'), - (1202, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd81KyXGm', '6584747'), - (1202, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd81KyXGm', '6587097'), - (1202, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', 'd81KyXGm', '6596617'), - (1202, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd81KyXGm', '6609022'), - (1202, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd81KyXGm', '6632757'), - (1202, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd81KyXGm', '6644187'), - (1202, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd81KyXGm', '6648951'), - (1202, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd81KyXGm', '6648952'), - (1202, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'd81KyXGm', '6651141'), - (1202, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd81KyXGm', '6655401'), - (1202, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd81KyXGm', '6661585'), - (1202, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd81KyXGm', '6661588'), - (1202, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd81KyXGm', '6661589'), - (1202, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd81KyXGm', '6699906'), - (1202, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd81KyXGm', '6699913'), - (1202, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd81KyXGm', '6701109'), - (1202, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd81KyXGm', '6705219'), - (1202, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd81KyXGm', '6710153'), - (1202, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd81KyXGm', '6711552'), - (1202, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd81KyXGm', '6711553'), - (1202, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd81KyXGm', '6722688'), - (1202, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd81KyXGm', '6730620'), - (1202, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd81KyXGm', '6730642'), - (1202, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd81KyXGm', '6740364'), - (1202, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd81KyXGm', '6743829'), - (1202, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd81KyXGm', '7030380'), - (1202, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd81KyXGm', '7033677'), - (1202, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd81KyXGm', '7035415'), - (1202, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd81KyXGm', '7044715'), - (1202, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd81KyXGm', '7050318'), - (1202, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd81KyXGm', '7050319'), - (1202, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd81KyXGm', '7050322'), - (1202, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd81KyXGm', '7057804'), - (1202, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd81KyXGm', '7072824'), - (1202, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd81KyXGm', '7074348'), - (1202, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd81KyXGm', '7089267'), - (1202, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd81KyXGm', '7098747'), - (1202, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd81KyXGm', '7113468'), - (1202, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd81KyXGm', '7114856'), - (1202, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd81KyXGm', '7114951'), - (1202, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd81KyXGm', '7114955'), - (1202, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd81KyXGm', '7114956'), - (1202, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd81KyXGm', '7153615'), - (1202, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd81KyXGm', '7159484'), - (1202, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd81KyXGm', '7178446'), - (1203, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dKPrJram', '5630968'), - (1203, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dKPrJram', '5642818'), - (1203, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dKPrJram', '5670445'), - (1203, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dKPrJram', '5774172'), - (1203, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dKPrJram', '5818247'), - (1203, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dKPrJram', '5819471'), - (1203, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dKPrJram', '5827739'), - (1203, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dKPrJram', '5844306'), - (1203, 1846, 'not_attending', '2022-12-18 18:53:46', '2025-12-17 19:47:04', 'dKPrJram', '5845237'), - (1203, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dKPrJram', '5850159'), - (1203, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dKPrJram', '5858999'), - (1203, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dKPrJram', '5871984'), - (1203, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dKPrJram', '5876354'), - (1203, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dKPrJram', '5880943'), - (1203, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dKPrJram', '5900202'), - (1203, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dKPrJram', '5900203'), - (1203, 1916, 'not_attending', '2023-02-26 20:49:52', '2025-12-17 19:47:08', 'dKPrJram', '5910526'), - (1203, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dKPrJram', '5910528'), - (1203, 1921, 'attending', '2023-02-26 18:02:44', '2025-12-17 19:47:08', 'dKPrJram', '5914092'), - (1203, 1936, 'not_attending', '2023-02-28 17:17:10', '2025-12-17 19:47:08', 'dKPrJram', '5959397'), - (1203, 1939, 'not_attending', '2023-02-28 17:16:41', '2025-12-17 19:47:08', 'dKPrJram', '5959755'), - (1203, 1941, 'not_attending', '2023-02-26 06:52:06', '2025-12-17 19:47:09', 'dKPrJram', '5961684'), - (1203, 1944, 'not_attending', '2023-02-28 17:11:36', '2025-12-17 19:47:09', 'dKPrJram', '5962132'), - (1203, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dKPrJram', '5962317'), - (1203, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dKPrJram', '5962318'), - (1203, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dKPrJram', '5965933'), - (1203, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dKPrJram', '5967014'), - (1203, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dKPrJram', '5972815'), - (1203, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dKPrJram', '5974016'), - (1203, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dKPrJram', '5975052'), - (1203, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dKPrJram', '5975054'), - (1203, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dKPrJram', '5981515'), - (1203, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dKPrJram', '5993516'), - (1203, 1973, 'attending', '2023-03-13 07:33:17', '2025-12-17 19:46:56', 'dKPrJram', '5993777'), - (1203, 1974, 'maybe', '2023-03-18 22:50:32', '2025-12-17 19:46:57', 'dKPrJram', '5993778'), - (1203, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dKPrJram', '5998939'), - (1203, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dKPrJram', '6028191'), - (1203, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dKPrJram', '6040066'), - (1203, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dKPrJram', '6042717'), - (1203, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dKPrJram', '6044838'), - (1203, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dKPrJram', '6044839'), - (1203, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKPrJram', '6045684'), - (1203, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dKPrJram', '6050104'), - (1203, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dKPrJram', '6053195'), - (1203, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dKPrJram', '6053198'), - (1203, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dKPrJram', '6056085'), - (1203, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dKPrJram', '6056916'), - (1203, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dKPrJram', '6059290'), - (1203, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dKPrJram', '6060328'), - (1203, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dKPrJram', '6061037'), - (1203, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dKPrJram', '6061039'), - (1203, 2020, 'not_attending', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'dKPrJram', '6065813'), - (1203, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dKPrJram', '6067245'), - (1203, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dKPrJram', '6068094'), - (1203, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dKPrJram', '6068252'), - (1203, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dKPrJram', '6068253'), - (1203, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dKPrJram', '6068254'), - (1203, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dKPrJram', '6068280'), - (1203, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dKPrJram', '6069093'), - (1203, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dKPrJram', '6072528'), - (1203, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dKPrJram', '6075556'), - (1203, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dKPrJram', '6079840'), - (1203, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dKPrJram', '6083398'), - (1203, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dKPrJram', '6093504'), - (1203, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dKPrJram', '6097414'), - (1203, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dKPrJram', '6097442'), - (1203, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dKPrJram', '6097684'), - (1203, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dKPrJram', '6098762'), - (1203, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dKPrJram', '6101362'), - (1203, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dKPrJram', '6107314'), - (1204, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AgkXJlRA', '4668385'), - (1204, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'AgkXJlRA', '4694407'), - (1204, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AgkXJlRA', '4746789'), - (1204, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AgkXJlRA', '4753929'), - (1204, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgkXJlRA', '6045684'), - (1205, 1379, 'attending', '2022-05-20 23:11:44', '2025-12-17 19:47:29', 'd5YPxwLd', '5271449'), - (1205, 1380, 'attending', '2022-05-28 22:45:43', '2025-12-17 19:47:30', 'd5YPxwLd', '5271450'), - (1205, 1393, 'attending', '2022-05-22 03:34:56', '2025-12-17 19:47:30', 'd5YPxwLd', '5280603'), - (1205, 1394, 'not_attending', '2022-05-27 03:55:53', '2025-12-17 19:47:30', 'd5YPxwLd', '5280667'), - (1205, 1407, 'not_attending', '2022-06-04 02:33:25', '2025-12-17 19:47:30', 'd5YPxwLd', '5363695'), - (1205, 1409, 'attending', '2022-05-20 23:11:18', '2025-12-17 19:47:30', 'd5YPxwLd', '5367032'), - (1205, 1415, 'not_attending', '2022-06-04 02:33:06', '2025-12-17 19:47:30', 'd5YPxwLd', '5368973'), - (1205, 1416, 'not_attending', '2022-05-24 20:13:08', '2025-12-17 19:47:30', 'd5YPxwLd', '5369628'), - (1205, 1418, 'not_attending', '2022-05-24 19:35:56', '2025-12-17 19:47:30', 'd5YPxwLd', '5372162'), - (1205, 1419, 'not_attending', '2022-06-08 22:52:41', '2025-12-17 19:47:30', 'd5YPxwLd', '5373081'), - (1205, 1420, 'attending', '2022-05-27 20:28:55', '2025-12-17 19:47:30', 'd5YPxwLd', '5374882'), - (1205, 1421, 'attending', '2022-05-30 21:49:01', '2025-12-17 19:47:30', 'd5YPxwLd', '5374885'), - (1205, 1422, 'attending', '2022-05-28 20:04:27', '2025-12-17 19:47:30', 'd5YPxwLd', '5375603'), - (1205, 1423, 'not_attending', '2022-06-16 01:44:38', '2025-12-17 19:47:17', 'd5YPxwLd', '5375727'), - (1205, 1424, 'attending', '2022-05-26 22:58:48', '2025-12-17 19:47:30', 'd5YPxwLd', '5375772'), - (1205, 1425, 'not_attending', '2022-05-26 21:45:22', '2025-12-17 19:47:30', 'd5YPxwLd', '5375861'), - (1205, 1426, 'not_attending', '2022-05-24 22:30:24', '2025-12-17 19:47:30', 'd5YPxwLd', '5375873'), - (1205, 1427, 'not_attending', '2022-05-24 22:30:42', '2025-12-17 19:47:30', 'd5YPxwLd', '5376074'), - (1205, 1428, 'maybe', '2022-05-30 02:24:44', '2025-12-17 19:47:30', 'd5YPxwLd', '5378247'), - (1205, 1429, 'attending', '2022-06-03 03:51:48', '2025-12-17 19:47:30', 'd5YPxwLd', '5388761'), - (1205, 1430, 'attending', '2022-05-30 02:23:50', '2025-12-17 19:47:30', 'd5YPxwLd', '5389402'), - (1205, 1431, 'attending', '2022-06-01 03:25:34', '2025-12-17 19:47:30', 'd5YPxwLd', '5389605'), - (1205, 1433, 'not_attending', '2022-06-01 03:23:50', '2025-12-17 19:47:30', 'd5YPxwLd', '5391667'), - (1205, 1436, 'attending', '2022-06-03 03:51:40', '2025-12-17 19:47:30', 'd5YPxwLd', '5394292'), - (1205, 1437, 'maybe', '2022-06-01 03:23:57', '2025-12-17 19:47:30', 'd5YPxwLd', '5394493'), - (1205, 1440, 'not_attending', '2022-06-08 04:20:55', '2025-12-17 19:47:30', 'd5YPxwLd', '5396080'), - (1205, 1442, 'not_attending', '2022-06-18 13:59:43', '2025-12-17 19:47:17', 'd5YPxwLd', '5397265'), - (1205, 1449, 'not_attending', '2022-06-14 16:30:21', '2025-12-17 19:47:31', 'd5YPxwLd', '5403335'), - (1205, 1450, 'not_attending', '2022-06-10 18:01:56', '2025-12-17 19:47:30', 'd5YPxwLd', '5403421'), - (1205, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd5YPxwLd', '5403967'), - (1205, 1454, 'attending', '2022-06-13 02:37:16', '2025-12-17 19:47:31', 'd5YPxwLd', '5404771'), - (1205, 1455, 'not_attending', '2022-06-13 02:36:56', '2025-12-17 19:47:31', 'd5YPxwLd', '5404772'), - (1205, 1458, 'not_attending', '2022-06-10 17:26:33', '2025-12-17 19:47:17', 'd5YPxwLd', '5404786'), - (1205, 1462, 'not_attending', '2022-06-14 05:03:10', '2025-12-17 19:47:17', 'd5YPxwLd', '5405203'), - (1205, 1463, 'not_attending', '2022-06-14 23:59:44', '2025-12-17 19:47:31', 'd5YPxwLd', '5405208'), - (1205, 1465, 'not_attending', '2022-06-13 05:53:08', '2025-12-17 19:47:31', 'd5YPxwLd', '5406355'), - (1205, 1470, 'attending', '2022-06-13 01:23:14', '2025-12-17 19:47:17', 'd5YPxwLd', '5407053'), - (1205, 1471, 'maybe', '2022-06-18 14:00:04', '2025-12-17 19:47:17', 'd5YPxwLd', '5407063'), - (1205, 1473, 'not_attending', '2022-06-14 23:59:38', '2025-12-17 19:47:31', 'd5YPxwLd', '5407267'), - (1205, 1475, 'attending', '2022-06-16 22:51:54', '2025-12-17 19:47:17', 'd5YPxwLd', '5408108'), - (1205, 1478, 'not_attending', '2022-06-24 22:45:24', '2025-12-17 19:47:19', 'd5YPxwLd', '5408794'), - (1205, 1479, 'attending', '2022-06-17 22:23:09', '2025-12-17 19:47:17', 'd5YPxwLd', '5410322'), - (1205, 1480, 'not_attending', '2022-06-21 22:34:03', '2025-12-17 19:47:19', 'd5YPxwLd', '5411699'), - (1205, 1481, 'not_attending', '2022-06-21 22:34:37', '2025-12-17 19:47:17', 'd5YPxwLd', '5412237'), - (1205, 1482, 'attending', '2022-06-21 02:51:58', '2025-12-17 19:47:19', 'd5YPxwLd', '5412550'), - (1205, 1484, 'maybe', '2022-06-21 02:51:50', '2025-12-17 19:47:17', 'd5YPxwLd', '5415046'), - (1205, 1487, 'not_attending', '2022-06-27 14:42:29', '2025-12-17 19:47:19', 'd5YPxwLd', '5419006'), - (1205, 1489, 'attending', '2022-07-06 14:36:49', '2025-12-17 19:47:19', 'd5YPxwLd', '5420155'), - (1205, 1490, 'maybe', '2022-06-24 18:04:24', '2025-12-17 19:47:19', 'd5YPxwLd', '5420156'), - (1205, 1491, 'attending', '2022-06-24 18:03:56', '2025-12-17 19:47:19', 'd5YPxwLd', '5420158'), - (1205, 1492, 'attending', '2022-06-26 03:26:04', '2025-12-17 19:47:19', 'd5YPxwLd', '5420175'), - (1205, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd5YPxwLd', '5422086'), - (1205, 1496, 'attending', '2022-06-26 15:04:03', '2025-12-17 19:47:19', 'd5YPxwLd', '5422404'), - (1205, 1497, 'attending', '2022-06-26 15:04:05', '2025-12-17 19:47:19', 'd5YPxwLd', '5422405'), - (1205, 1498, 'not_attending', '2022-07-02 22:25:13', '2025-12-17 19:47:19', 'd5YPxwLd', '5422406'), - (1205, 1500, 'not_attending', '2022-06-30 16:29:51', '2025-12-17 19:47:19', 'd5YPxwLd', '5423915'), - (1205, 1501, 'maybe', '2022-06-29 02:39:44', '2025-12-17 19:47:19', 'd5YPxwLd', '5424546'), - (1205, 1502, 'attending', '2022-06-28 17:19:00', '2025-12-17 19:47:19', 'd5YPxwLd', '5424565'), - (1205, 1504, 'not_attending', '2022-07-13 06:05:18', '2025-12-17 19:47:19', 'd5YPxwLd', '5426882'), - (1205, 1505, 'maybe', '2022-07-05 18:28:08', '2025-12-17 19:47:19', 'd5YPxwLd', '5427083'), - (1205, 1509, 'maybe', '2022-07-06 14:36:57', '2025-12-17 19:47:19', 'd5YPxwLd', '5434019'), - (1205, 1511, 'maybe', '2022-07-09 17:06:57', '2025-12-17 19:47:19', 'd5YPxwLd', '5437733'), - (1205, 1513, 'not_attending', '2022-07-09 12:33:49', '2025-12-17 19:47:20', 'd5YPxwLd', '5441125'), - (1205, 1514, 'not_attending', '2022-07-10 21:26:01', '2025-12-17 19:47:20', 'd5YPxwLd', '5441126'), - (1205, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd5YPxwLd', '5441128'), - (1205, 1516, 'not_attending', '2022-08-08 14:34:46', '2025-12-17 19:47:23', 'd5YPxwLd', '5441129'), - (1205, 1517, 'not_attending', '2022-08-18 01:41:46', '2025-12-17 19:47:23', 'd5YPxwLd', '5441130'), - (1205, 1518, 'maybe', '2022-08-29 14:20:14', '2025-12-17 19:47:24', 'd5YPxwLd', '5441131'), - (1205, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'd5YPxwLd', '5441132'), - (1205, 1520, 'not_attending', '2022-07-10 21:25:31', '2025-12-17 19:47:19', 'd5YPxwLd', '5441645'), - (1205, 1521, 'not_attending', '2022-07-13 02:41:34', '2025-12-17 19:47:19', 'd5YPxwLd', '5442180'), - (1205, 1522, 'maybe', '2022-07-10 21:25:50', '2025-12-17 19:47:20', 'd5YPxwLd', '5442832'), - (1205, 1525, 'not_attending', '2022-07-13 02:41:44', '2025-12-17 19:47:19', 'd5YPxwLd', '5444962'), - (1205, 1526, 'attending', '2022-07-13 06:05:48', '2025-12-17 19:47:20', 'd5YPxwLd', '5445059'), - (1205, 1528, 'not_attending', '2022-07-14 03:36:09', '2025-12-17 19:47:20', 'd5YPxwLd', '5446643'), - (1205, 1540, 'attending', '2022-07-18 17:10:02', '2025-12-17 19:47:20', 'd5YPxwLd', '5453325'), - (1205, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd5YPxwLd', '5454516'), - (1205, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd5YPxwLd', '5454605'), - (1205, 1547, 'not_attending', '2022-07-22 03:55:20', '2025-12-17 19:47:20', 'd5YPxwLd', '5454608'), - (1205, 1551, 'maybe', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd5YPxwLd', '5455037'), - (1205, 1558, 'maybe', '2022-09-14 02:18:28', '2025-12-17 19:47:10', 'd5YPxwLd', '5458730'), - (1205, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd5YPxwLd', '5461278'), - (1205, 1562, 'maybe', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd5YPxwLd', '5469480'), - (1205, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd5YPxwLd', '5471073'), - (1205, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd5YPxwLd', '5474663'), - (1205, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd5YPxwLd', '5482022'), - (1205, 1575, 'not_attending', '2022-08-18 01:41:54', '2025-12-17 19:47:23', 'd5YPxwLd', '5482250'), - (1205, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd5YPxwLd', '5482793'), - (1205, 1578, 'attending', '2022-08-03 02:26:00', '2025-12-17 19:47:21', 'd5YPxwLd', '5483073'), - (1205, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd5YPxwLd', '5488912'), - (1205, 1581, 'not_attending', '2022-08-11 20:15:39', '2025-12-17 19:47:22', 'd5YPxwLd', '5490302'), - (1205, 1586, 'maybe', '2022-08-08 14:35:02', '2025-12-17 19:47:23', 'd5YPxwLd', '5492019'), - (1205, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd5YPxwLd', '5492192'), - (1205, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd5YPxwLd', '5493139'), - (1205, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd5YPxwLd', '5493200'), - (1205, 1592, 'attending', '2022-08-10 13:19:10', '2025-12-17 19:47:22', 'd5YPxwLd', '5494031'), - (1205, 1595, 'maybe', '2022-08-10 13:19:31', '2025-12-17 19:47:22', 'd5YPxwLd', '5495736'), - (1205, 1603, 'not_attending', '2022-08-13 23:36:30', '2025-12-17 19:47:23', 'd5YPxwLd', '5497895'), - (1205, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd5YPxwLd', '5502188'), - (1205, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd5YPxwLd', '5505059'), - (1205, 1610, 'maybe', '2022-08-29 14:19:49', '2025-12-17 19:47:23', 'd5YPxwLd', '5506595'), - (1205, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd5YPxwLd', '5509055'), - (1205, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd5YPxwLd', '5512862'), - (1205, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd5YPxwLd', '5513985'), - (1205, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd5YPxwLd', '5519981'), - (1205, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd5YPxwLd', '5522550'), - (1205, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd5YPxwLd', '5534683'), - (1205, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd5YPxwLd', '5537735'), - (1205, 1637, 'not_attending', '2022-09-03 06:53:50', '2025-12-17 19:47:24', 'd5YPxwLd', '5539591'), - (1205, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd5YPxwLd', '5540859'), - (1205, 1643, 'maybe', '2022-09-03 06:54:26', '2025-12-17 19:47:11', 'd5YPxwLd', '5545856'), - (1205, 1644, 'maybe', '2022-09-03 06:54:10', '2025-12-17 19:47:11', 'd5YPxwLd', '5545857'), - (1205, 1645, 'not_attending', '2022-09-11 21:26:29', '2025-12-17 19:47:25', 'd5YPxwLd', '5546559'), - (1205, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd5YPxwLd', '5546619'), - (1205, 1647, 'maybe', '2022-09-18 01:58:20', '2025-12-17 19:47:11', 'd5YPxwLd', '5548660'), - (1205, 1651, 'attending', '2022-09-06 00:43:01', '2025-12-17 19:47:24', 'd5YPxwLd', '5551425'), - (1205, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd5YPxwLd', '5555245'), - (1205, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd5YPxwLd', '5557747'), - (1205, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd5YPxwLd', '5560255'), - (1205, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd5YPxwLd', '5562906'), - (1205, 1665, 'attending', '2022-09-11 21:26:37', '2025-12-17 19:47:25', 'd5YPxwLd', '5563133'), - (1205, 1666, 'not_attending', '2022-09-18 01:59:07', '2025-12-17 19:47:11', 'd5YPxwLd', '5563208'), - (1205, 1667, 'not_attending', '2022-09-24 23:21:08', '2025-12-17 19:47:11', 'd5YPxwLd', '5563221'), - (1205, 1670, 'maybe', '2022-09-18 01:58:13', '2025-12-17 19:47:11', 'd5YPxwLd', '5575076'), - (1205, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd5YPxwLd', '5600604'), - (1205, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd5YPxwLd', '5605544'), - (1205, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'd5YPxwLd', '5606737'), - (1205, 1719, 'not_attending', '2022-10-08 16:23:52', '2025-12-17 19:47:12', 'd5YPxwLd', '5630958'), - (1205, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd5YPxwLd', '5630960'), - (1205, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd5YPxwLd', '5630961'), - (1205, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd5YPxwLd', '5630962'), - (1205, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd5YPxwLd', '5630966'), - (1205, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd5YPxwLd', '5630967'), - (1205, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd5YPxwLd', '5630968'), - (1205, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd5YPxwLd', '5635406'), - (1205, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd5YPxwLd', '5638765'), - (1205, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd5YPxwLd', '5640097'), - (1205, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd5YPxwLd', '5640843'), - (1205, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd5YPxwLd', '5641521'), - (1205, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd5YPxwLd', '5642818'), - (1205, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd5YPxwLd', '5652395'), - (1205, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd5YPxwLd', '5670445'), - (1205, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd5YPxwLd', '5671637'), - (1205, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd5YPxwLd', '5672329'), - (1205, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd5YPxwLd', '5674057'), - (1205, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd5YPxwLd', '5674060'), - (1205, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd5YPxwLd', '5677461'), - (1205, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd5YPxwLd', '5698046'), - (1205, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd5YPxwLd', '5699760'), - (1205, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd5YPxwLd', '5741601'), - (1205, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd5YPxwLd', '5763458'), - (1205, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd5YPxwLd', '5774172'), - (1205, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'd5YPxwLd', '5818247'), - (1205, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd5YPxwLd', '5819471'), - (1205, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd5YPxwLd', '5827739'), - (1205, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd5YPxwLd', '5844306'), - (1205, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd5YPxwLd', '5850159'), - (1205, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd5YPxwLd', '5858999'), - (1205, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd5YPxwLd', '5871984'), - (1205, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd5YPxwLd', '5876354'), - (1205, 1864, 'not_attending', '2023-01-22 00:22:07', '2025-12-17 19:47:05', 'd5YPxwLd', '5879675'), - (1205, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd5YPxwLd', '5880939'), - (1205, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd5YPxwLd', '5887890'), - (1205, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd5YPxwLd', '5888598'), - (1205, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd5YPxwLd', '5893260'), - (1205, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd5YPxwLd', '6045684'), - (1206, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'R40NlObm', '3236465'), - (1206, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'R40NlObm', '3539916'), - (1206, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'R40NlObm', '3539918'), - (1206, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'R40NlObm', '3539919'), - (1206, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'R40NlObm', '3539920'), - (1206, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'R40NlObm', '3539921'), - (1206, 689, 'attending', '2021-03-25 01:59:43', '2025-12-17 19:47:44', 'R40NlObm', '3555564'), - (1206, 700, 'not_attending', '2021-03-30 21:39:53', '2025-12-17 19:47:44', 'R40NlObm', '3575725'), - (1206, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'R40NlObm', '3583262'), - (1206, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'R40NlObm', '3619523'), - (1206, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'R40NlObm', '3661369'), - (1206, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'R40NlObm', '3674262'), - (1206, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'R40NlObm', '3677402'), - (1206, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'R40NlObm', '3730212'), - (1206, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'R40NlObm', '3793156'), - (1206, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'R40NlObm', '3803310'), - (1206, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'R40NlObm', '3806392'), - (1206, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40NlObm', '6045684'), - (1207, 26, 'attending', '2020-04-04 00:37:10', '2025-12-17 19:47:57', '8418nM8A', '2958082'), - (1207, 30, 'not_attending', '2020-04-06 15:55:53', '2025-12-17 19:47:57', '8418nM8A', '2961895'), - (1207, 33, 'attending', '2020-04-07 22:45:59', '2025-12-17 19:47:57', '8418nM8A', '2963932'), - (1207, 40, 'maybe', '2020-04-09 15:23:29', '2025-12-17 19:47:57', '8418nM8A', '2970718'), - (1207, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', '8418nM8A', '2971546'), - (1207, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '8418nM8A', '2974534'), - (1207, 46, 'attending', '2020-04-08 09:32:17', '2025-12-17 19:47:57', '8418nM8A', '2974955'), - (1207, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', '8418nM8A', '2975384'), - (1207, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', '8418nM8A', '2975385'), - (1207, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', '8418nM8A', '2976575'), - (1207, 58, 'attending', '2020-04-16 18:39:55', '2025-12-17 19:47:57', '8418nM8A', '2977127'), - (1207, 60, 'maybe', '2020-04-20 11:08:59', '2025-12-17 19:47:57', '8418nM8A', '2977129'), - (1207, 61, 'attending', '2020-04-12 02:24:49', '2025-12-17 19:47:57', '8418nM8A', '2977130'), - (1207, 62, 'not_attending', '2020-05-12 22:21:29', '2025-12-17 19:47:57', '8418nM8A', '2977131'), - (1207, 64, 'attending', '2020-05-31 22:29:55', '2025-12-17 19:47:58', '8418nM8A', '2977133'), - (1207, 69, 'attending', '2020-06-28 19:03:55', '2025-12-17 19:47:55', '8418nM8A', '2977138'), - (1207, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '8418nM8A', '2977343'), - (1207, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '8418nM8A', '2977812'), - (1207, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', '8418nM8A', '2977931'), - (1207, 74, 'attending', '2020-04-15 01:56:55', '2025-12-17 19:47:57', '8418nM8A', '2978244'), - (1207, 75, 'attending', '2020-04-19 17:31:50', '2025-12-17 19:47:57', '8418nM8A', '2978245'), - (1207, 76, 'attending', '2020-05-02 22:26:51', '2025-12-17 19:47:57', '8418nM8A', '2978246'), - (1207, 77, 'attending', '2020-05-04 00:15:46', '2025-12-17 19:47:57', '8418nM8A', '2978247'), - (1207, 78, 'attending', '2020-05-17 21:44:54', '2025-12-17 19:47:57', '8418nM8A', '2978249'), - (1207, 79, 'attending', '2020-05-24 02:27:52', '2025-12-17 19:47:57', '8418nM8A', '2978250'), - (1207, 80, 'not_attending', '2020-06-03 11:12:08', '2025-12-17 19:47:58', '8418nM8A', '2978251'), - (1207, 81, 'attending', '2020-06-09 22:40:19', '2025-12-17 19:47:58', '8418nM8A', '2978252'), - (1207, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', '8418nM8A', '2978433'), - (1207, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '8418nM8A', '2978438'), - (1207, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '8418nM8A', '2980871'), - (1207, 85, 'attending', '2020-04-22 23:02:37', '2025-12-17 19:47:57', '8418nM8A', '2980872'), - (1207, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '8418nM8A', '2981388'), - (1207, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '8418nM8A', '2986743'), - (1207, 95, 'attending', '2020-04-19 18:21:35', '2025-12-17 19:47:57', '8418nM8A', '2987452'), - (1207, 96, 'attending', '2020-05-04 00:15:03', '2025-12-17 19:47:57', '8418nM8A', '2987453'), - (1207, 97, 'attending', '2020-05-04 00:16:18', '2025-12-17 19:47:57', '8418nM8A', '2987454'), - (1207, 98, 'attending', '2020-05-05 23:48:15', '2025-12-17 19:47:57', '8418nM8A', '2987455'), - (1207, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', '8418nM8A', '2990784'), - (1207, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', '8418nM8A', '2991471'), - (1207, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', '8418nM8A', '2993501'), - (1207, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '8418nM8A', '2994480'), - (1207, 115, 'attending', '2020-05-10 02:04:35', '2025-12-17 19:47:57', '8418nM8A', '3001217'), - (1207, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', '8418nM8A', '3023063'), - (1207, 130, 'attending', '2020-05-19 21:34:12', '2025-12-17 19:47:57', '8418nM8A', '3028781'), - (1207, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '8418nM8A', '3034321'), - (1207, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '8418nM8A', '3035881'), - (1207, 137, 'attending', '2020-05-31 13:21:36', '2025-12-17 19:47:58', '8418nM8A', '3042188'), - (1207, 138, 'maybe', '2020-05-30 21:04:45', '2025-12-17 19:47:58', '8418nM8A', '3042932'), - (1207, 141, 'attending', '2020-05-31 22:30:06', '2025-12-17 19:47:58', '8418nM8A', '3049830'), - (1207, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '8418nM8A', '3049983'), - (1207, 171, 'maybe', '2020-06-09 22:40:14', '2025-12-17 19:47:58', '8418nM8A', '3058743'), - (1207, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '8418nM8A', '3058959'), - (1207, 173, 'not_attending', '2020-06-17 12:09:43', '2025-12-17 19:47:58', '8418nM8A', '3067093'), - (1207, 175, 'attending', '2020-06-09 22:40:58', '2025-12-17 19:47:58', '8418nM8A', '3068305'), - (1207, 180, 'attending', '2020-06-15 18:03:47', '2025-12-17 19:47:58', '8418nM8A', '3074048'), - (1207, 181, 'maybe', '2020-06-17 12:09:49', '2025-12-17 19:47:58', '8418nM8A', '3074513'), - (1207, 182, 'attending', '2020-06-17 12:10:29', '2025-12-17 19:47:55', '8418nM8A', '3074514'), - (1207, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '8418nM8A', '3075228'), - (1207, 184, 'attending', '2020-06-15 19:58:52', '2025-12-17 19:47:58', '8418nM8A', '3075262'), - (1207, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '8418nM8A', '3075456'), - (1207, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '8418nM8A', '3083791'), - (1207, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '8418nM8A', '3085151'), - (1207, 190, 'not_attending', '2020-06-30 19:02:27', '2025-12-17 19:47:55', '8418nM8A', '3087258'), - (1207, 191, 'attending', '2020-06-30 19:02:41', '2025-12-17 19:47:55', '8418nM8A', '3087259'), - (1207, 192, 'not_attending', '2020-07-12 18:43:14', '2025-12-17 19:47:55', '8418nM8A', '3087260'), - (1207, 193, 'not_attending', '2020-07-19 21:20:23', '2025-12-17 19:47:55', '8418nM8A', '3087261'), - (1207, 194, 'not_attending', '2020-07-28 22:28:17', '2025-12-17 19:47:56', '8418nM8A', '3087262'), - (1207, 195, 'attending', '2020-08-06 13:24:19', '2025-12-17 19:47:56', '8418nM8A', '3087264'), - (1207, 196, 'not_attending', '2020-08-09 16:08:14', '2025-12-17 19:47:56', '8418nM8A', '3087265'), - (1207, 197, 'not_attending', '2020-08-14 22:16:29', '2025-12-17 19:47:56', '8418nM8A', '3087266'), - (1207, 198, 'not_attending', '2020-08-29 19:56:40', '2025-12-17 19:47:56', '8418nM8A', '3087267'), - (1207, 199, 'attending', '2020-09-05 17:35:13', '2025-12-17 19:47:56', '8418nM8A', '3087268'), - (1207, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '8418nM8A', '3088653'), - (1207, 205, 'attending', '2020-07-01 11:58:26', '2025-12-17 19:47:55', '8418nM8A', '3104804'), - (1207, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '8418nM8A', '3106813'), - (1207, 210, 'attending', '2020-06-30 19:02:12', '2025-12-17 19:47:55', '8418nM8A', '3108972'), - (1207, 223, 'attending', '2020-09-08 12:15:11', '2025-12-17 19:47:56', '8418nM8A', '3129980'), - (1207, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '8418nM8A', '3132817'), - (1207, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '8418nM8A', '3132820'), - (1207, 233, 'attending', '2020-07-19 21:19:56', '2025-12-17 19:47:55', '8418nM8A', '3139773'), - (1207, 248, 'not_attending', '2021-01-12 13:45:12', '2025-12-17 19:47:48', '8418nM8A', '3149479'), - (1207, 266, 'attending', '2020-07-27 19:34:17', '2025-12-17 19:47:55', '8418nM8A', '3152194'), - (1207, 267, 'attending', '2020-07-29 03:00:38', '2025-12-17 19:47:55', '8418nM8A', '3152781'), - (1207, 269, 'attending', '2020-07-29 03:01:29', '2025-12-17 19:47:55', '8418nM8A', '3153076'), - (1207, 270, 'maybe', '2020-08-09 16:08:20', '2025-12-17 19:47:56', '8418nM8A', '3154457'), - (1207, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '8418nM8A', '3155321'), - (1207, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '8418nM8A', '3162006'), - (1207, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '8418nM8A', '3163442'), - (1207, 281, 'maybe', '2020-08-09 16:05:30', '2025-12-17 19:47:56', '8418nM8A', '3166945'), - (1207, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '8418nM8A', '3169555'), - (1207, 290, 'not_attending', '2020-08-19 17:45:52', '2025-12-17 19:47:56', '8418nM8A', '3170251'), - (1207, 291, 'not_attending', '2020-08-19 17:45:57', '2025-12-17 19:47:56', '8418nM8A', '3170252'), - (1207, 293, 'not_attending', '2020-08-14 22:16:18', '2025-12-17 19:47:56', '8418nM8A', '3172832'), - (1207, 294, 'not_attending', '2020-08-14 22:16:47', '2025-12-17 19:47:56', '8418nM8A', '3172833'), - (1207, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '8418nM8A', '3172834'), - (1207, 296, 'attending', '2020-08-19 17:46:04', '2025-12-17 19:47:56', '8418nM8A', '3172876'), - (1207, 298, 'maybe', '2020-08-23 14:29:20', '2025-12-17 19:47:56', '8418nM8A', '3174556'), - (1207, 303, 'maybe', '2020-08-14 22:13:58', '2025-12-17 19:47:56', '8418nM8A', '3178444'), - (1207, 304, 'maybe', '2020-09-03 21:01:39', '2025-12-17 19:47:56', '8418nM8A', '3178916'), - (1207, 305, 'attending', '2020-08-14 22:14:14', '2025-12-17 19:47:56', '8418nM8A', '3179555'), - (1207, 307, 'not_attending', '2020-08-17 19:16:58', '2025-12-17 19:47:56', '8418nM8A', '3182590'), - (1207, 308, 'attending', '2020-08-19 17:33:48', '2025-12-17 19:47:56', '8418nM8A', '3183341'), - (1207, 311, 'not_attending', '2020-09-16 15:23:31', '2025-12-17 19:47:56', '8418nM8A', '3186057'), - (1207, 312, 'not_attending', '2020-09-08 12:14:57', '2025-12-17 19:47:56', '8418nM8A', '3187795'), - (1207, 314, 'not_attending', '2020-08-23 14:28:54', '2025-12-17 19:47:56', '8418nM8A', '3188480'), - (1207, 315, 'maybe', '2020-09-06 11:25:49', '2025-12-17 19:47:56', '8418nM8A', '3189085'), - (1207, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '8418nM8A', '3191735'), - (1207, 319, 'attending', '2020-08-30 14:13:15', '2025-12-17 19:47:56', '8418nM8A', '3194179'), - (1207, 322, 'not_attending', '2020-09-14 23:51:53', '2025-12-17 19:47:56', '8418nM8A', '3197080'), - (1207, 333, 'not_attending', '2020-09-20 22:18:25', '2025-12-17 19:47:52', '8418nM8A', '3199782'), - (1207, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '8418nM8A', '3200209'), - (1207, 339, 'not_attending', '2020-09-08 12:14:35', '2025-12-17 19:47:56', '8418nM8A', '3204469'), - (1207, 340, 'maybe', '2020-09-18 15:42:20', '2025-12-17 19:47:56', '8418nM8A', '3204470'), - (1207, 341, 'not_attending', '2020-09-21 17:54:15', '2025-12-17 19:47:52', '8418nM8A', '3204471'), - (1207, 342, 'not_attending', '2020-09-24 23:56:09', '2025-12-17 19:47:52', '8418nM8A', '3204472'), - (1207, 344, 'maybe', '2020-10-30 19:48:57', '2025-12-17 19:47:53', '8418nM8A', '3206906'), - (1207, 345, 'maybe', '2020-09-10 22:31:26', '2025-12-17 19:47:56', '8418nM8A', '3207423'), - (1207, 346, 'not_attending', '2020-09-14 11:14:29', '2025-12-17 19:47:56', '8418nM8A', '3207515'), - (1207, 348, 'not_attending', '2020-09-29 15:26:51', '2025-12-17 19:47:52', '8418nM8A', '3209159'), - (1207, 349, 'not_attending', '2020-09-14 23:51:51', '2025-12-17 19:47:56', '8418nM8A', '3209194'), - (1207, 351, 'not_attending', '2020-09-15 20:53:34', '2025-12-17 19:47:56', '8418nM8A', '3209257'), - (1207, 352, 'not_attending', '2020-09-12 22:06:19', '2025-12-17 19:47:56', '8418nM8A', '3210514'), - (1207, 355, 'attending', '2020-09-14 11:14:36', '2025-12-17 19:47:56', '8418nM8A', '3212571'), - (1207, 356, 'attending', '2020-09-14 11:59:51', '2025-12-17 19:47:51', '8418nM8A', '3212572'), - (1207, 357, 'attending', '2020-09-14 12:00:01', '2025-12-17 19:47:52', '8418nM8A', '3212573'), - (1207, 362, 'not_attending', '2020-09-23 21:39:24', '2025-12-17 19:47:52', '8418nM8A', '3214207'), - (1207, 363, 'not_attending', '2020-09-23 21:39:32', '2025-12-17 19:47:52', '8418nM8A', '3217037'), - (1207, 364, 'not_attending', '2020-09-21 21:51:47', '2025-12-17 19:47:56', '8418nM8A', '3217106'), - (1207, 365, 'maybe', '2020-09-18 16:01:30', '2025-12-17 19:47:51', '8418nM8A', '3218510'), - (1207, 366, 'not_attending', '2020-09-20 18:26:04', '2025-12-17 19:47:56', '8418nM8A', '3219750'), - (1207, 367, 'not_attending', '2020-09-24 23:55:34', '2025-12-17 19:47:51', '8418nM8A', '3219751'), - (1207, 375, 'maybe', '2020-10-02 16:33:54', '2025-12-17 19:47:52', '8418nM8A', '3222825'), - (1207, 380, 'not_attending', '2020-09-30 01:25:29', '2025-12-17 19:47:52', '8418nM8A', '3226281'), - (1207, 382, 'not_attending', '2020-10-12 21:01:06', '2025-12-17 19:47:52', '8418nM8A', '3226873'), - (1207, 384, 'attending', '2020-09-29 15:26:30', '2025-12-17 19:47:52', '8418nM8A', '3228696'), - (1207, 385, 'not_attending', '2020-09-29 09:00:26', '2025-12-17 19:47:52', '8418nM8A', '3228698'), - (1207, 386, 'not_attending', '2020-10-10 18:44:58', '2025-12-17 19:47:52', '8418nM8A', '3228699'), - (1207, 387, 'not_attending', '2020-10-11 18:30:08', '2025-12-17 19:47:52', '8418nM8A', '3228700'), - (1207, 388, 'attending', '2020-10-24 22:25:51', '2025-12-17 19:47:52', '8418nM8A', '3228701'), - (1207, 389, 'attending', '2020-09-30 20:20:43', '2025-12-17 19:47:52', '8418nM8A', '3231284'), - (1207, 390, 'not_attending', '2020-10-04 22:01:20', '2025-12-17 19:47:52', '8418nM8A', '3231510'), - (1207, 412, 'not_attending', '2020-10-05 20:25:15', '2025-12-17 19:47:52', '8418nM8A', '3236636'), - (1207, 413, 'not_attending', '2020-10-12 21:01:51', '2025-12-17 19:47:52', '8418nM8A', '3236670'), - (1207, 414, 'not_attending', '2020-10-12 21:01:27', '2025-12-17 19:47:52', '8418nM8A', '3237277'), - (1207, 415, 'maybe', '2020-10-08 00:29:40', '2025-12-17 19:47:52', '8418nM8A', '3238044'), - (1207, 416, 'maybe', '2020-10-06 23:13:14', '2025-12-17 19:47:52', '8418nM8A', '3238073'), - (1207, 417, 'maybe', '2020-10-11 18:29:49', '2025-12-17 19:47:52', '8418nM8A', '3238779'), - (1207, 418, 'not_attending', '2020-10-11 18:29:57', '2025-12-17 19:47:52', '8418nM8A', '3241728'), - (1207, 419, 'not_attending', '2020-10-11 18:29:53', '2025-12-17 19:47:52', '8418nM8A', '3242234'), - (1207, 420, 'not_attending', '2020-10-12 21:01:18', '2025-12-17 19:47:52', '8418nM8A', '3245293'), - (1207, 421, 'not_attending', '2020-10-12 21:01:55', '2025-12-17 19:47:52', '8418nM8A', '3245294'), - (1207, 424, 'not_attending', '2020-10-19 14:26:08', '2025-12-17 19:47:52', '8418nM8A', '3245751'), - (1207, 425, 'maybe', '2020-10-14 17:17:09', '2025-12-17 19:47:52', '8418nM8A', '3250097'), - (1207, 426, 'maybe', '2020-10-14 17:17:31', '2025-12-17 19:47:52', '8418nM8A', '3250232'), - (1207, 428, 'maybe', '2020-10-25 02:13:13', '2025-12-17 19:47:53', '8418nM8A', '3250332'), - (1207, 430, 'not_attending', '2020-10-21 22:55:06', '2025-12-17 19:47:52', '8418nM8A', '3253094'), - (1207, 438, 'maybe', '2020-10-28 23:21:22', '2025-12-17 19:47:53', '8418nM8A', '3256163'), - (1207, 439, 'not_attending', '2020-10-28 22:32:24', '2025-12-17 19:47:53', '8418nM8A', '3256164'), - (1207, 440, 'not_attending', '2020-11-06 21:46:37', '2025-12-17 19:47:53', '8418nM8A', '3256168'), - (1207, 441, 'not_attending', '2020-11-14 20:55:53', '2025-12-17 19:47:54', '8418nM8A', '3256169'), - (1207, 442, 'not_attending', '2020-10-22 23:05:04', '2025-12-17 19:47:52', '8418nM8A', '3260345'), - (1207, 443, 'not_attending', '2020-10-25 02:11:18', '2025-12-17 19:47:53', '8418nM8A', '3263578'), - (1207, 444, 'maybe', '2020-10-27 15:22:06', '2025-12-17 19:47:53', '8418nM8A', '3263745'), - (1207, 445, 'maybe', '2020-10-30 19:49:09', '2025-12-17 19:47:54', '8418nM8A', '3266138'), - (1207, 449, 'attending', '2020-11-06 21:46:46', '2025-12-17 19:47:53', '8418nM8A', '3272055'), - (1207, 451, 'maybe', '2020-11-02 19:22:51', '2025-12-17 19:47:53', '8418nM8A', '3272186'), - (1207, 454, 'maybe', '2020-11-06 21:47:06', '2025-12-17 19:47:54', '8418nM8A', '3275665'), - (1207, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '8418nM8A', '3276428'), - (1207, 458, 'maybe', '2020-11-08 23:42:05', '2025-12-17 19:47:53', '8418nM8A', '3279233'), - (1207, 459, 'not_attending', '2020-11-09 23:31:56', '2025-12-17 19:47:54', '8418nM8A', '3281467'), - (1207, 461, 'not_attending', '2020-11-09 23:25:56', '2025-12-17 19:47:53', '8418nM8A', '3281469'), - (1207, 462, 'attending', '2020-11-08 23:42:13', '2025-12-17 19:47:53', '8418nM8A', '3281470'), - (1207, 466, 'maybe', '2020-11-09 23:32:17', '2025-12-17 19:47:54', '8418nM8A', '3281829'), - (1207, 468, 'not_attending', '2020-11-21 00:33:31', '2025-12-17 19:47:54', '8418nM8A', '3285413'), - (1207, 469, 'not_attending', '2020-11-19 19:23:40', '2025-12-17 19:47:54', '8418nM8A', '3285414'), - (1207, 480, 'not_attending', '2020-11-21 00:33:27', '2025-12-17 19:47:54', '8418nM8A', '3295313'), - (1207, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '8418nM8A', '3297764'), - (1207, 484, 'not_attending', '2020-11-21 00:33:21', '2025-12-17 19:47:54', '8418nM8A', '3297792'), - (1207, 487, 'not_attending', '2020-12-01 01:47:53', '2025-12-17 19:47:54', '8418nM8A', '3311122'), - (1207, 493, 'maybe', '2020-12-01 01:48:07', '2025-12-17 19:47:54', '8418nM8A', '3313856'), - (1207, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '8418nM8A', '3314909'), - (1207, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '8418nM8A', '3314964'), - (1207, 501, 'not_attending', '2020-12-08 01:37:28', '2025-12-17 19:47:54', '8418nM8A', '3317834'), - (1207, 502, 'maybe', '2020-12-08 01:37:51', '2025-12-17 19:47:55', '8418nM8A', '3323365'), - (1207, 508, 'not_attending', '2021-01-13 10:23:46', '2025-12-17 19:47:48', '8418nM8A', '3324231'), - (1207, 513, 'maybe', '2020-12-15 00:22:56', '2025-12-17 19:47:55', '8418nM8A', '3329383'), - (1207, 517, 'attending', '2020-12-27 00:25:26', '2025-12-17 19:47:48', '8418nM8A', '3337137'), - (1207, 521, 'maybe', '2020-12-29 20:49:42', '2025-12-17 19:47:48', '8418nM8A', '3337454'), - (1207, 526, 'attending', '2020-12-27 00:25:19', '2025-12-17 19:47:48', '8418nM8A', '3351539'), - (1207, 529, 'attending', '2020-12-29 20:50:08', '2025-12-17 19:47:48', '8418nM8A', '3364568'), - (1207, 530, 'not_attending', '2021-01-04 19:36:14', '2025-12-17 19:47:48', '8418nM8A', '3373923'), - (1207, 532, 'not_attending', '2021-01-08 13:51:01', '2025-12-17 19:47:48', '8418nM8A', '3381412'), - (1207, 534, 'not_attending', '2021-01-08 13:51:18', '2025-12-17 19:47:48', '8418nM8A', '3384157'), - (1207, 535, 'not_attending', '2021-01-08 13:51:12', '2025-12-17 19:47:48', '8418nM8A', '3384729'), - (1207, 536, 'attending', '2021-01-07 13:40:17', '2025-12-17 19:47:48', '8418nM8A', '3386848'), - (1207, 537, 'not_attending', '2021-01-08 13:51:15', '2025-12-17 19:47:48', '8418nM8A', '3387153'), - (1207, 538, 'maybe', '2021-01-07 13:52:32', '2025-12-17 19:47:48', '8418nM8A', '3388151'), - (1207, 539, 'maybe', '2021-01-12 13:45:28', '2025-12-17 19:47:48', '8418nM8A', '3389158'), - (1207, 540, 'not_attending', '2021-01-07 13:40:32', '2025-12-17 19:47:48', '8418nM8A', '3389527'), - (1207, 543, 'not_attending', '2021-01-12 13:45:40', '2025-12-17 19:47:48', '8418nM8A', '3396499'), - (1207, 544, 'not_attending', '2021-01-12 13:45:15', '2025-12-17 19:47:48', '8418nM8A', '3396500'), - (1207, 548, 'attending', '2021-01-12 13:45:43', '2025-12-17 19:47:48', '8418nM8A', '3403650'), - (1207, 549, 'maybe', '2021-01-18 23:46:08', '2025-12-17 19:47:49', '8418nM8A', '3406988'), - (1207, 555, 'attending', '2021-01-23 20:08:25', '2025-12-17 19:47:49', '8418nM8A', '3416576'), - (1207, 556, 'maybe', '2021-01-26 14:27:53', '2025-12-17 19:47:49', '8418nM8A', '3417170'), - (1207, 557, 'maybe', '2021-01-20 01:55:39', '2025-12-17 19:47:49', '8418nM8A', '3418748'), - (1207, 558, 'maybe', '2021-01-20 17:23:54', '2025-12-17 19:47:49', '8418nM8A', '3418925'), - (1207, 559, 'maybe', '2021-01-25 22:24:31', '2025-12-17 19:47:49', '8418nM8A', '3421439'), - (1207, 560, 'attending', '2021-01-20 01:55:36', '2025-12-17 19:47:49', '8418nM8A', '3421715'), - (1207, 563, 'maybe', '2021-01-25 22:23:57', '2025-12-17 19:47:49', '8418nM8A', '3425913'), - (1207, 568, 'attending', '2021-01-25 22:24:37', '2025-12-17 19:47:50', '8418nM8A', '3430267'), - (1207, 569, 'maybe', '2021-01-27 22:47:33', '2025-12-17 19:47:49', '8418nM8A', '3432673'), - (1207, 570, 'not_attending', '2021-02-06 00:04:52', '2025-12-17 19:47:50', '8418nM8A', '3435538'), - (1207, 571, 'not_attending', '2021-02-13 21:50:11', '2025-12-17 19:47:50', '8418nM8A', '3435539'), - (1207, 577, 'not_attending', '2021-01-28 23:58:39', '2025-12-17 19:47:49', '8418nM8A', '3439167'), - (1207, 578, 'maybe', '2021-01-31 19:01:55', '2025-12-17 19:47:50', '8418nM8A', '3440043'), - (1207, 579, 'not_attending', '2021-02-06 21:31:43', '2025-12-17 19:47:50', '8418nM8A', '3440978'), - (1207, 580, 'not_attending', '2021-01-31 04:12:51', '2025-12-17 19:47:50', '8418nM8A', '3444240'), - (1207, 582, 'maybe', '2021-01-31 04:00:05', '2025-12-17 19:47:50', '8418nM8A', '3445769'), - (1207, 584, 'not_attending', '2021-02-04 12:06:17', '2025-12-17 19:47:50', '8418nM8A', '3449466'), - (1207, 591, 'maybe', '2021-02-08 00:50:51', '2025-12-17 19:47:50', '8418nM8A', '3465880'), - (1207, 598, 'maybe', '2021-02-08 00:51:05', '2025-12-17 19:47:50', '8418nM8A', '3468003'), - (1207, 599, 'not_attending', '2021-02-15 22:23:04', '2025-12-17 19:47:50', '8418nM8A', '3468117'), - (1207, 600, 'not_attending', '2021-02-22 00:29:03', '2025-12-17 19:47:50', '8418nM8A', '3468125'), - (1207, 601, 'maybe', '2021-02-08 23:41:45', '2025-12-17 19:47:50', '8418nM8A', '3468131'), - (1207, 602, 'not_attending', '2021-02-13 21:50:15', '2025-12-17 19:47:50', '8418nM8A', '3470303'), - (1207, 603, 'not_attending', '2021-02-19 23:14:17', '2025-12-17 19:47:50', '8418nM8A', '3470304'), - (1207, 604, 'attending', '2021-02-27 18:50:37', '2025-12-17 19:47:50', '8418nM8A', '3470305'), - (1207, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '8418nM8A', '3470991'), - (1207, 606, 'not_attending', '2021-02-10 00:21:24', '2025-12-17 19:47:50', '8418nM8A', '3470998'), - (1207, 607, 'maybe', '2021-02-15 22:23:21', '2025-12-17 19:47:50', '8418nM8A', '3471882'), - (1207, 608, 'not_attending', '2021-02-10 00:21:18', '2025-12-17 19:47:50', '8418nM8A', '3475332'), - (1207, 612, 'maybe', '2021-02-15 22:23:12', '2025-12-17 19:47:50', '8418nM8A', '3490040'), - (1207, 618, 'not_attending', '2021-02-20 20:03:33', '2025-12-17 19:47:50', '8418nM8A', '3503991'), - (1207, 621, 'attending', '2021-02-28 19:31:44', '2025-12-17 19:47:51', '8418nM8A', '3517815'), - (1207, 622, 'attending', '2021-03-05 01:19:40', '2025-12-17 19:47:51', '8418nM8A', '3517816'), - (1207, 623, 'not_attending', '2021-02-28 19:31:28', '2025-12-17 19:47:51', '8418nM8A', '3523941'), - (1207, 626, 'not_attending', '2021-03-06 20:27:28', '2025-12-17 19:47:51', '8418nM8A', '3533298'), - (1207, 627, 'not_attending', '2021-03-10 00:16:57', '2025-12-17 19:47:51', '8418nM8A', '3533303'), - (1207, 628, 'not_attending', '2021-03-14 22:38:17', '2025-12-17 19:47:51', '8418nM8A', '3533305'), - (1207, 629, 'attending', '2021-03-17 22:53:21', '2025-12-17 19:47:51', '8418nM8A', '3533307'), - (1207, 630, 'not_attending', '2021-02-28 23:39:19', '2025-12-17 19:47:51', '8418nM8A', '3533425'), - (1207, 631, 'maybe', '2021-03-05 21:55:16', '2025-12-17 19:47:51', '8418nM8A', '3533850'), - (1207, 632, 'maybe', '2021-03-05 01:18:55', '2025-12-17 19:47:51', '8418nM8A', '3533853'), - (1207, 638, 'maybe', '2021-03-10 00:18:04', '2025-12-17 19:47:44', '8418nM8A', '3536632'), - (1207, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8418nM8A', '3536656'), - (1207, 641, 'attending', '2021-04-02 18:36:54', '2025-12-17 19:47:44', '8418nM8A', '3539916'), - (1207, 642, 'maybe', '2021-04-10 21:27:28', '2025-12-17 19:47:44', '8418nM8A', '3539917'), - (1207, 643, 'attending', '2021-04-15 00:59:31', '2025-12-17 19:47:45', '8418nM8A', '3539918'), - (1207, 644, 'not_attending', '2021-04-24 18:31:44', '2025-12-17 19:47:46', '8418nM8A', '3539919'), - (1207, 645, 'not_attending', '2021-05-07 22:22:46', '2025-12-17 19:47:46', '8418nM8A', '3539920'), - (1207, 646, 'attending', '2021-05-12 23:27:50', '2025-12-17 19:47:46', '8418nM8A', '3539921'), - (1207, 647, 'not_attending', '2021-05-20 22:04:55', '2025-12-17 19:47:46', '8418nM8A', '3539922'), - (1207, 648, 'not_attending', '2021-05-27 20:59:22', '2025-12-17 19:47:47', '8418nM8A', '3539923'), - (1207, 649, 'maybe', '2021-03-20 20:00:37', '2025-12-17 19:47:51', '8418nM8A', '3539927'), - (1207, 650, 'attending', '2021-03-05 01:25:39', '2025-12-17 19:47:44', '8418nM8A', '3539928'), - (1207, 651, 'not_attending', '2021-03-07 11:59:06', '2025-12-17 19:47:51', '8418nM8A', '3541045'), - (1207, 680, 'maybe', '2021-03-10 00:17:04', '2025-12-17 19:47:51', '8418nM8A', '3547700'), - (1207, 683, 'not_attending', '2021-03-10 00:18:37', '2025-12-17 19:47:51', '8418nM8A', '3548818'), - (1207, 684, 'maybe', '2021-03-10 00:17:31', '2025-12-17 19:47:51', '8418nM8A', '3549257'), - (1207, 687, 'maybe', '2021-03-10 00:17:20', '2025-12-17 19:47:51', '8418nM8A', '3553405'), - (1207, 690, 'maybe', '2021-03-18 23:22:58', '2025-12-17 19:47:44', '8418nM8A', '3559954'), - (1207, 693, 'not_attending', '2021-03-14 22:38:20', '2025-12-17 19:47:51', '8418nM8A', '3565907'), - (1207, 695, 'maybe', '2021-03-14 22:38:38', '2025-12-17 19:47:51', '8418nM8A', '3567535'), - (1207, 696, 'maybe', '2021-03-14 22:38:55', '2025-12-17 19:47:51', '8418nM8A', '3567536'), - (1207, 703, 'maybe', '2021-04-04 20:36:40', '2025-12-17 19:47:44', '8418nM8A', '3578388'), - (1207, 706, 'maybe', '2021-04-04 20:37:16', '2025-12-17 19:47:45', '8418nM8A', '3582734'), - (1207, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8418nM8A', '3583262'), - (1207, 708, 'maybe', '2021-03-23 22:59:11', '2025-12-17 19:47:44', '8418nM8A', '3587850'), - (1207, 709, 'maybe', '2021-04-02 18:37:07', '2025-12-17 19:47:44', '8418nM8A', '3587852'), - (1207, 710, 'maybe', '2021-04-04 20:35:59', '2025-12-17 19:47:44', '8418nM8A', '3587853'), - (1207, 711, 'attending', '2021-04-01 23:11:11', '2025-12-17 19:47:44', '8418nM8A', '3588075'), - (1207, 715, 'maybe', '2021-03-28 18:30:44', '2025-12-17 19:47:44', '8418nM8A', '3604146'), - (1207, 717, 'maybe', '2021-03-27 15:39:22', '2025-12-17 19:47:44', '8418nM8A', '3619523'), - (1207, 719, 'not_attending', '2021-04-04 20:35:45', '2025-12-17 19:47:44', '8418nM8A', '3635405'), - (1207, 723, 'maybe', '2021-04-04 20:35:53', '2025-12-17 19:47:44', '8418nM8A', '3649179'), - (1207, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8418nM8A', '3661369'), - (1207, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8418nM8A', '3674262'), - (1207, 734, 'maybe', '2021-04-07 22:43:20', '2025-12-17 19:47:44', '8418nM8A', '3676806'), - (1207, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8418nM8A', '3677402'), - (1207, 736, 'maybe', '2021-04-08 10:48:08', '2025-12-17 19:47:44', '8418nM8A', '3677701'), - (1207, 737, 'not_attending', '2021-04-06 20:46:38', '2025-12-17 19:47:44', '8418nM8A', '3679349'), - (1207, 752, 'maybe', '2021-04-15 00:59:23', '2025-12-17 19:47:44', '8418nM8A', '3699422'), - (1207, 764, 'maybe', '2021-04-20 10:37:53', '2025-12-17 19:47:45', '8418nM8A', '3720507'), - (1207, 765, 'not_attending', '2021-04-20 10:37:43', '2025-12-17 19:47:45', '8418nM8A', '3720508'), - (1207, 771, 'not_attending', '2021-04-29 22:22:16', '2025-12-17 19:47:46', '8418nM8A', '3726420'), - (1207, 772, 'maybe', '2021-04-29 22:22:28', '2025-12-17 19:47:46', '8418nM8A', '3726421'), - (1207, 774, 'maybe', '2021-04-20 23:35:49', '2025-12-17 19:47:45', '8418nM8A', '3730212'), - (1207, 777, 'maybe', '2021-05-01 19:47:43', '2025-12-17 19:47:46', '8418nM8A', '3746248'), - (1207, 779, 'maybe', '2021-05-02 21:44:02', '2025-12-17 19:47:46', '8418nM8A', '3757118'), - (1207, 782, 'maybe', '2021-05-02 21:44:08', '2025-12-17 19:47:46', '8418nM8A', '3761843'), - (1207, 784, 'maybe', '2021-05-02 21:44:18', '2025-12-17 19:47:46', '8418nM8A', '3768775'), - (1207, 788, 'not_attending', '2021-05-07 22:22:35', '2025-12-17 19:47:46', '8418nM8A', '3781975'), - (1207, 791, 'maybe', '2021-05-07 22:22:59', '2025-12-17 19:47:46', '8418nM8A', '3792735'), - (1207, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8418nM8A', '3793156'), - (1207, 815, 'not_attending', '2021-05-27 20:59:17', '2025-12-17 19:47:47', '8418nM8A', '3818136'), - (1207, 816, 'maybe', '2021-05-19 18:55:05', '2025-12-17 19:47:46', '8418nM8A', '3826524'), - (1207, 823, 'not_attending', '2021-06-19 20:25:07', '2025-12-17 19:47:48', '8418nM8A', '3974109'), - (1207, 825, 'maybe', '2021-05-31 22:36:18', '2025-12-17 19:47:47', '8418nM8A', '3975283'), - (1207, 826, 'maybe', '2021-06-16 14:22:27', '2025-12-17 19:47:48', '8418nM8A', '3975310'), - (1207, 827, 'attending', '2021-06-04 18:24:26', '2025-12-17 19:47:47', '8418nM8A', '3975311'), - (1207, 828, 'not_attending', '2021-06-09 23:09:58', '2025-12-17 19:47:47', '8418nM8A', '3975312'), - (1207, 838, 'not_attending', '2021-06-06 23:36:48', '2025-12-17 19:47:47', '8418nM8A', '3994992'), - (1207, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '8418nM8A', '4014338'), - (1207, 867, 'not_attending', '2021-06-22 09:09:56', '2025-12-17 19:47:38', '8418nM8A', '4021848'), - (1207, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '8418nM8A', '4136744'), - (1207, 870, 'maybe', '2021-06-27 23:27:30', '2025-12-17 19:47:39', '8418nM8A', '4136937'), - (1207, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '8418nM8A', '4136938'), - (1207, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '8418nM8A', '4136947'), - (1207, 882, 'not_attending', '2021-06-22 09:10:04', '2025-12-17 19:47:38', '8418nM8A', '4207630'), - (1207, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '8418nM8A', '4210314'), - (1207, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8418nM8A', '4225444'), - (1207, 897, 'maybe', '2021-06-27 23:27:06', '2025-12-17 19:47:38', '8418nM8A', '4232132'), - (1207, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '8418nM8A', '4239259'), - (1207, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '8418nM8A', '4240316'), - (1207, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '8418nM8A', '4240317'), - (1207, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '8418nM8A', '4240318'), - (1207, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '8418nM8A', '4240320'), - (1207, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8418nM8A', '4250163'), - (1207, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '8418nM8A', '4275957'), - (1207, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '8418nM8A', '4277819'), - (1207, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '8418nM8A', '4301723'), - (1207, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '8418nM8A', '4302093'), - (1207, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '8418nM8A', '4304151'), - (1207, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '8418nM8A', '4345519'), - (1207, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '8418nM8A', '4356801'), - (1207, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '8418nM8A', '4358025'), - (1207, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '8418nM8A', '4366186'), - (1207, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '8418nM8A', '4366187'), - (1207, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '8418nM8A', '4402823'), - (1207, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '8418nM8A', '4420735'), - (1207, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '8418nM8A', '4420738'), - (1207, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '8418nM8A', '4420739'), - (1207, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '8418nM8A', '4420741'), - (1207, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '8418nM8A', '4420744'), - (1207, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '8418nM8A', '4420747'), - (1207, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '8418nM8A', '4420748'), - (1207, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '8418nM8A', '4420749'), - (1207, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '8418nM8A', '4461883'), - (1207, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '8418nM8A', '4508342'), - (1207, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '8418nM8A', '4568602'), - (1207, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '8418nM8A', '4572153'), - (1207, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '8418nM8A', '4585962'), - (1207, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '8418nM8A', '4596356'), - (1207, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '8418nM8A', '4598860'), - (1207, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '8418nM8A', '4598861'), - (1207, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '8418nM8A', '4602797'), - (1207, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '8418nM8A', '4637896'), - (1207, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '8418nM8A', '4642994'), - (1207, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '8418nM8A', '4642995'), - (1207, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '8418nM8A', '4642996'), - (1207, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '8418nM8A', '4642997'), - (1207, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '8418nM8A', '4645687'), - (1207, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '8418nM8A', '4645698'), - (1207, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '8418nM8A', '4645704'), - (1207, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '8418nM8A', '4645705'), - (1207, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '8418nM8A', '4668385'), - (1207, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '8418nM8A', '4694407'), - (1207, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '8418nM8A', '4736497'), - (1207, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '8418nM8A', '4736499'), - (1207, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '8418nM8A', '4736500'), - (1207, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '8418nM8A', '4736503'), - (1207, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '8418nM8A', '4736504'), - (1207, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '8418nM8A', '4746789'), - (1207, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '8418nM8A', '4753929'), - (1207, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '8418nM8A', '5038850'), - (1207, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '8418nM8A', '5045826'), - (1207, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '8418nM8A', '5132533'), - (1207, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '8418nM8A', '5186582'), - (1207, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '8418nM8A', '5186583'), - (1207, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '8418nM8A', '5186585'), - (1207, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '8418nM8A', '5190437'), - (1207, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '8418nM8A', '5215989'), - (1207, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8418nM8A', '6045684'), - (1208, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4Wb8b9pA', '5880942'), - (1208, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4Wb8b9pA', '5880943'), - (1208, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4Wb8b9pA', '5900200'), - (1208, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4Wb8b9pA', '5900202'), - (1208, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4Wb8b9pA', '5900203'), - (1208, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', '4Wb8b9pA', '5910522'), - (1208, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '4Wb8b9pA', '5910526'), - (1208, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '4Wb8b9pA', '5910528'), - (1208, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4Wb8b9pA', '5916219'), - (1208, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4Wb8b9pA', '5936234'), - (1208, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '4Wb8b9pA', '5936691'), - (1208, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4Wb8b9pA', '5958351'), - (1208, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4Wb8b9pA', '5959751'), - (1208, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4Wb8b9pA', '5959755'), - (1208, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4Wb8b9pA', '5960055'), - (1208, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4Wb8b9pA', '5961684'), - (1208, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4Wb8b9pA', '5962132'), - (1208, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4Wb8b9pA', '5962133'), - (1208, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4Wb8b9pA', '5962134'), - (1208, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4Wb8b9pA', '5962317'), - (1208, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4Wb8b9pA', '5962318'), - (1208, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4Wb8b9pA', '5965933'), - (1208, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4Wb8b9pA', '5967014'), - (1208, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4Wb8b9pA', '5972815'), - (1208, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4Wb8b9pA', '5974016'), - (1208, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4Wb8b9pA', '5981515'), - (1208, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4Wb8b9pA', '5993516'), - (1208, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4Wb8b9pA', '5998939'), - (1208, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4Wb8b9pA', '6028191'), - (1208, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4Wb8b9pA', '6040066'), - (1208, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4Wb8b9pA', '6042717'), - (1208, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4Wb8b9pA', '6045684'); +-- Dumping data for table milsim_website_development.calendar_events_signups: ~98,925 rows (approximately) +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (1, 1, 3241, 'attending', '2025-10-11 17:58:40', '2025-12-17 19:46:13', 'dlYNOzlm', '8493557'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (2, 1, 3242, 'attending', '2025-10-24 20:45:21', '2025-12-17 19:46:14', 'dlYNOzlm', '8493558'), + (3, 1, 3243, 'not_attending', '2025-10-18 00:21:30', '2025-12-17 19:46:14', 'dlYNOzlm', '8493559'), + (4, 1, 3253, 'not_attending', '2025-10-26 17:02:39', '2025-12-17 19:46:14', 'dlYNOzlm', '8493572'), + (5, 1, 3295, 'not_attending', '2025-11-01 22:20:22', '2025-12-17 19:46:14', 'dlYNOzlm', '8547541'), + (6, 1, 3300, 'not_attending', '2025-11-01 22:20:24', '2025-12-17 19:46:14', 'dlYNOzlm', '8549145'), + (7, 1, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dlYNOzlm', '8555421'), + (8, 2, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dBbJMp8d', '7074364'), + (9, 2, 2528, 'maybe', '2024-08-08 19:04:57', '2025-12-17 19:46:31', 'dBbJMp8d', '7074368'), + (10, 2, 2556, 'attending', '2024-04-19 02:04:56', '2025-12-17 19:46:34', 'dBbJMp8d', '7114955'), + (11, 2, 2557, 'not_attending', '2024-04-26 02:52:33', '2025-12-17 19:46:34', 'dBbJMp8d', '7114956'), + (12, 2, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dBbJMp8d', '7114957'), + (13, 2, 2585, 'not_attending', '2024-04-24 23:08:33', '2025-12-17 19:46:34', 'dBbJMp8d', '7175828'), + (14, 2, 2590, 'maybe', '2024-04-17 04:26:38', '2025-12-17 19:46:34', 'dBbJMp8d', '7178446'), + (15, 2, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dBbJMp8d', '7220467'), + (16, 2, 2603, 'attending', '2024-05-15 16:35:54', '2025-12-17 19:46:35', 'dBbJMp8d', '7225669'), + (17, 2, 2604, 'attending', '2024-05-29 10:11:27', '2025-12-17 19:46:36', 'dBbJMp8d', '7225670'), + (18, 2, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBbJMp8d', '7240354'), + (19, 2, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBbJMp8d', '7251633'), + (20, 2, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBbJMp8d', '7263048'), + (21, 2, 2626, 'attending', '2024-05-18 21:10:58', '2025-12-17 19:46:35', 'dBbJMp8d', '7264723'), + (22, 2, 2627, 'attending', '2024-05-24 00:07:47', '2025-12-17 19:46:35', 'dBbJMp8d', '7264724'), + (23, 2, 2628, 'attending', '2024-05-29 10:11:44', '2025-12-17 19:46:36', 'dBbJMp8d', '7264725'), + (24, 2, 2629, 'attending', '2024-06-05 19:15:46', '2025-12-17 19:46:28', 'dBbJMp8d', '7264726'), + (25, 2, 2630, 'attending', '2024-05-16 21:07:59', '2025-12-17 19:46:35', 'dBbJMp8d', '7264801'), + (26, 2, 2636, 'attending', '2024-05-26 17:48:18', '2025-12-17 19:46:35', 'dBbJMp8d', '7270323'), + (27, 2, 2637, 'attending', '2024-05-26 20:55:46', '2025-12-17 19:46:35', 'dBbJMp8d', '7270324'), + (28, 2, 2644, 'maybe', '2024-05-23 10:39:35', '2025-12-17 19:46:35', 'dBbJMp8d', '7279039'), + (29, 2, 2647, 'attending', '2024-06-09 17:55:06', '2025-12-17 19:46:28', 'dBbJMp8d', '7282057'), + (30, 2, 2652, 'maybe', '2024-05-26 13:52:29', '2025-12-17 19:46:36', 'dBbJMp8d', '7288339'), + (31, 2, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dBbJMp8d', '7302674'), + (32, 2, 2665, 'attending', '2024-06-07 19:45:02', '2025-12-17 19:46:36', 'dBbJMp8d', '7306370'), + (33, 2, 2667, 'attending', '2024-06-05 19:15:21', '2025-12-17 19:46:36', 'dBbJMp8d', '7307776'), + (34, 2, 2668, 'maybe', '2024-06-05 19:15:36', '2025-12-17 19:46:36', 'dBbJMp8d', '7308821'), + (35, 2, 2678, 'attending', '2024-06-10 13:47:10', '2025-12-17 19:46:28', 'dBbJMp8d', '7319489'), + (36, 2, 2679, 'maybe', '2024-06-10 13:41:28', '2025-12-17 19:46:29', 'dBbJMp8d', '7319490'), + (37, 2, 2682, 'attending', '2024-06-10 14:37:45', '2025-12-17 19:46:28', 'dBbJMp8d', '7321862'), + (38, 2, 2683, 'maybe', '2024-06-10 19:25:19', '2025-12-17 19:46:28', 'dBbJMp8d', '7321978'), + (39, 2, 2687, 'attending', '2024-06-12 13:44:17', '2025-12-17 19:46:28', 'dBbJMp8d', '7324019'), + (40, 2, 2688, 'attending', '2024-06-18 15:46:24', '2025-12-17 19:46:29', 'dBbJMp8d', '7324073'), + (41, 2, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dBbJMp8d', '7324074'), + (42, 2, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dBbJMp8d', '7324075'), + (43, 2, 2691, 'not_attending', '2024-07-15 11:23:24', '2025-12-17 19:46:30', 'dBbJMp8d', '7324076'), + (44, 2, 2692, 'not_attending', '2024-07-19 11:46:32', '2025-12-17 19:46:30', 'dBbJMp8d', '7324077'), + (45, 2, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dBbJMp8d', '7324078'), + (46, 2, 2694, 'attending', '2024-08-10 16:01:11', '2025-12-17 19:46:31', 'dBbJMp8d', '7324079'), + (47, 2, 2696, 'attending', '2024-08-24 21:24:45', '2025-12-17 19:46:32', 'dBbJMp8d', '7324081'), + (48, 2, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dBbJMp8d', '7324082'), + (49, 2, 2698, 'attending', '2024-09-07 12:16:18', '2025-12-17 19:46:24', 'dBbJMp8d', '7324083'), + (50, 2, 2699, 'attending', '2024-06-12 16:23:46', '2025-12-17 19:46:28', 'dBbJMp8d', '7324385'), + (51, 2, 2700, 'not_attending', '2024-06-13 01:27:49', '2025-12-17 19:46:28', 'dBbJMp8d', '7324388'), + (52, 2, 2701, 'attending', '2024-06-21 11:09:03', '2025-12-17 19:46:29', 'dBbJMp8d', '7324391'), + (53, 2, 2705, 'maybe', '2024-06-21 11:09:12', '2025-12-17 19:46:29', 'dBbJMp8d', '7324944'), + (54, 2, 2706, 'attending', '2024-06-16 15:20:22', '2025-12-17 19:46:28', 'dBbJMp8d', '7324947'), + (55, 2, 2711, 'attending', '2024-07-19 00:21:35', '2025-12-17 19:46:30', 'dBbJMp8d', '7326524'), + (56, 2, 2721, 'attending', '2024-06-18 22:32:13', '2025-12-17 19:46:29', 'dBbJMp8d', '7331456'), + (57, 2, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dBbJMp8d', '7331457'), + (58, 2, 2723, 'attending', '2024-06-21 11:07:54', '2025-12-17 19:46:29', 'dBbJMp8d', '7332389'), + (59, 2, 2724, 'attending', '2024-06-21 11:08:47', '2025-12-17 19:46:29', 'dBbJMp8d', '7332562'), + (60, 2, 2729, 'attending', '2024-06-21 21:28:22', '2025-12-17 19:46:29', 'dBbJMp8d', '7335092'), + (61, 2, 2731, 'attending', '2024-06-22 17:20:07', '2025-12-17 19:46:29', 'dBbJMp8d', '7335303'), + (62, 2, 2735, 'attending', '2024-06-28 16:50:58', '2025-12-17 19:46:29', 'dBbJMp8d', '7340369'), + (63, 2, 2737, 'attending', '2024-07-01 21:29:50', '2025-12-17 19:46:29', 'dBbJMp8d', '7344070'), + (64, 2, 2741, 'not_attending', '2024-06-30 23:44:52', '2025-12-17 19:46:30', 'dBbJMp8d', '7344592'), + (65, 2, 2742, 'attending', '2024-07-01 21:30:05', '2025-12-17 19:46:29', 'dBbJMp8d', '7345167'), + (66, 2, 2744, 'attending', '2024-07-03 16:29:49', '2025-12-17 19:46:29', 'dBbJMp8d', '7347764'), + (67, 2, 2746, 'maybe', '2024-07-11 21:55:59', '2025-12-17 19:46:29', 'dBbJMp8d', '7348713'), + (68, 2, 2747, 'attending', '2024-07-16 21:39:42', '2025-12-17 19:46:30', 'dBbJMp8d', '7353587'), + (69, 2, 2749, 'maybe', '2024-07-09 20:46:16', '2025-12-17 19:46:29', 'dBbJMp8d', '7355496'), + (70, 2, 2753, 'maybe', '2024-07-16 00:41:40', '2025-12-17 19:46:30', 'dBbJMp8d', '7355538'), + (71, 2, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dBbJMp8d', '7356752'), + (72, 2, 2755, 'attending', '2024-07-09 18:44:42', '2025-12-17 19:46:29', 'dBbJMp8d', '7357808'), + (73, 2, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dBbJMp8d', '7358733'), + (74, 2, 2759, 'not_attending', '2024-07-12 19:40:34', '2025-12-17 19:46:30', 'dBbJMp8d', '7359624'), + (75, 2, 2766, 'maybe', '2024-07-26 22:33:53', '2025-12-17 19:46:30', 'dBbJMp8d', '7363643'), + (76, 2, 2768, 'attending', '2024-07-18 22:49:10', '2025-12-17 19:46:30', 'dBbJMp8d', '7366031'), + (77, 2, 2769, 'attending', '2024-07-19 21:21:13', '2025-12-17 19:46:30', 'dBbJMp8d', '7366803'), + (78, 2, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dBbJMp8d', '7368606'), + (79, 2, 2786, 'maybe', '2024-08-06 16:40:02', '2025-12-17 19:46:31', 'dBbJMp8d', '7381403'), + (80, 2, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dBbJMp8d', '7397462'), + (81, 2, 2802, 'attending', '2024-08-26 13:45:48', '2025-12-17 19:46:32', 'dBbJMp8d', '7397463'), + (82, 2, 2806, 'attending', '2024-09-05 23:43:49', '2025-12-17 19:46:25', 'dBbJMp8d', '7404888'), + (83, 2, 2817, 'maybe', '2024-09-29 15:12:18', '2025-12-17 19:46:25', 'dBbJMp8d', '7424270'), + (84, 2, 2821, 'not_attending', '2024-10-09 14:05:55', '2025-12-17 19:46:26', 'dBbJMp8d', '7424275'), + (85, 2, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dBbJMp8d', '7424276'), + (86, 2, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dBbJMp8d', '7432751'), + (87, 2, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dBbJMp8d', '7432752'), + (88, 2, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dBbJMp8d', '7432753'), + (89, 2, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dBbJMp8d', '7432754'), + (90, 2, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dBbJMp8d', '7432755'), + (91, 2, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dBbJMp8d', '7432756'), + (92, 2, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dBbJMp8d', '7432758'), + (93, 2, 2831, 'maybe', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dBbJMp8d', '7432759'), + (94, 2, 2832, 'attending', '2024-09-09 20:22:44', '2025-12-17 19:46:24', 'dBbJMp8d', '7433324'), + (95, 2, 2833, 'maybe', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dBbJMp8d', '7433834'), + (96, 2, 2835, 'maybe', '2024-09-11 16:23:20', '2025-12-17 19:46:24', 'dBbJMp8d', '7437354'), + (97, 2, 2838, 'not_attending', '2024-09-18 18:14:31', '2025-12-17 19:46:25', 'dBbJMp8d', '7439182'), + (98, 2, 2839, 'maybe', '2024-09-13 10:29:26', '2025-12-17 19:46:25', 'dBbJMp8d', '7439262'), + (99, 2, 2840, 'attending', '2024-09-16 20:57:42', '2025-12-17 19:46:25', 'dBbJMp8d', '7444429'), + (100, 2, 2848, 'attending', '2024-09-24 16:38:48', '2025-12-17 19:46:25', 'dBbJMp8d', '7456145'), + (101, 2, 2858, 'attending', '2024-10-16 00:56:18', '2025-12-17 19:46:26', 'dBbJMp8d', '7469388'), + (102, 2, 2862, 'maybe', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dBbJMp8d', '7470197'), + (103, 2, 2864, 'maybe', '2024-10-16 00:57:47', '2025-12-17 19:46:26', 'dBbJMp8d', '7471199'), + (104, 2, 2865, 'attending', '2024-10-30 20:57:00', '2025-12-17 19:46:26', 'dBbJMp8d', '7471200'), + (105, 2, 2867, 'not_attending', '2024-11-26 22:27:18', '2025-12-17 19:46:21', 'dBbJMp8d', '7471202'), + (106, 2, 2869, 'attending', '2024-10-05 15:07:40', '2025-12-17 19:46:26', 'dBbJMp8d', '7474823'), + (107, 2, 2871, 'maybe', '2024-10-16 00:57:23', '2025-12-17 19:46:26', 'dBbJMp8d', '7480481'), + (108, 2, 2878, 'maybe', '2024-10-16 00:55:29', '2025-12-17 19:46:26', 'dBbJMp8d', '7633857'), + (109, 2, 2881, 'not_attending', '2024-10-31 21:51:44', '2025-12-17 19:46:26', 'dBbJMp8d', '7644047'), + (110, 2, 2883, 'attending', '2024-10-17 21:22:42', '2025-12-17 19:46:26', 'dBbJMp8d', '7649157'), + (111, 2, 2891, 'attending', '2024-10-26 20:48:50', '2025-12-17 19:46:26', 'dBbJMp8d', '7668163'), + (112, 2, 2892, 'attending', '2024-10-30 15:50:16', '2025-12-17 19:46:26', 'dBbJMp8d', '7672064'), + (113, 2, 2895, 'maybe', '2024-11-05 00:50:01', '2025-12-17 19:46:26', 'dBbJMp8d', '7682072'), + (114, 2, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dBbJMp8d', '7685613'), + (115, 2, 2899, 'maybe', '2024-11-13 13:28:42', '2025-12-17 19:46:27', 'dBbJMp8d', '7685616'), + (116, 2, 2900, 'maybe', '2024-11-10 15:29:19', '2025-12-17 19:46:26', 'dBbJMp8d', '7686090'), + (117, 2, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dBbJMp8d', '7688194'), + (118, 2, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dBbJMp8d', '7688196'), + (119, 2, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dBbJMp8d', '7688289'), + (120, 2, 2911, 'attending', '2024-11-11 12:35:15', '2025-12-17 19:46:27', 'dBbJMp8d', '7689876'), + (121, 2, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dBbJMp8d', '7692763'), + (122, 2, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dBbJMp8d', '7697552'), + (123, 2, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dBbJMp8d', '7699878'), + (124, 2, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dBbJMp8d', '7704043'), + (125, 2, 2920, 'attending', '2024-11-24 00:24:23', '2025-12-17 19:46:28', 'dBbJMp8d', '7708406'), + (126, 2, 2924, 'attending', '2024-11-27 00:01:55', '2025-12-17 19:46:28', 'dBbJMp8d', '7712467'), + (127, 2, 2925, 'attending', '2024-12-12 23:55:28', '2025-12-17 19:46:21', 'dBbJMp8d', '7713584'), + (128, 2, 2926, 'attending', '2024-12-05 23:16:34', '2025-12-17 19:46:21', 'dBbJMp8d', '7713585'), + (129, 2, 2927, 'maybe', '2024-12-17 02:17:08', '2025-12-17 19:46:22', 'dBbJMp8d', '7713586'), + (130, 2, 2930, 'maybe', '2024-12-09 02:26:56', '2025-12-17 19:46:21', 'dBbJMp8d', '7724554'), + (131, 2, 2947, 'attending', '2024-12-09 03:09:30', '2025-12-17 19:46:21', 'dBbJMp8d', '7727445'), + (132, 2, 2952, 'not_attending', '2024-12-15 21:33:09', '2025-12-17 19:46:21', 'dBbJMp8d', '7730167'), + (133, 2, 2958, 'maybe', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dBbJMp8d', '7738518'), + (134, 2, 2959, 'maybe', '2024-12-21 20:26:11', '2025-12-17 19:46:22', 'dBbJMp8d', '7747388'), + (135, 2, 2962, 'attending', '2024-12-26 22:25:16', '2025-12-17 19:46:22', 'dBbJMp8d', '7750632'), + (136, 2, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBbJMp8d', '7750636'), + (137, 2, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBbJMp8d', '7796540'), + (138, 2, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBbJMp8d', '7796541'), + (139, 2, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBbJMp8d', '7796542'), + (140, 2, 2967, 'attending', '2025-01-07 14:59:57', '2025-12-17 19:46:22', 'dBbJMp8d', '7797181'), + (141, 2, 2968, 'attending', '2025-01-12 21:40:19', '2025-12-17 19:46:22', 'dBbJMp8d', '7797967'), + (142, 2, 2969, 'attending', '2025-01-11 22:39:35', '2025-12-17 19:46:22', 'dBbJMp8d', '7800474'), + (143, 2, 2971, 'attending', '2025-01-23 15:06:02', '2025-12-17 19:46:22', 'dBbJMp8d', '7812230'), + (144, 2, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dBbJMp8d', '7825913'), + (145, 2, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dBbJMp8d', '7825920'), + (146, 2, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dBbJMp8d', '7826209'), + (147, 2, 2983, 'attending', '2025-02-01 16:58:29', '2025-12-17 19:46:23', 'dBbJMp8d', '7829499'), + (148, 2, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dBbJMp8d', '7834742'), + (149, 2, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dBbJMp8d', '7842108'), + (150, 2, 2990, 'attending', '2025-02-15 19:23:34', '2025-12-17 19:46:23', 'dBbJMp8d', '7842898'), + (151, 2, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dBbJMp8d', '7842902'), + (152, 2, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dBbJMp8d', '7842903'), + (153, 2, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dBbJMp8d', '7842904'), + (154, 2, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dBbJMp8d', '7842905'), + (155, 2, 2999, 'attending', '2025-02-13 01:17:28', '2025-12-17 19:46:23', 'dBbJMp8d', '7844784'), + (156, 2, 3000, 'not_attending', '2025-02-18 03:53:12', '2025-12-17 19:46:24', 'dBbJMp8d', '7852541'), + (157, 2, 3002, 'not_attending', '2025-02-22 15:17:49', '2025-12-17 19:46:24', 'dBbJMp8d', '7854212'), + (158, 2, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dBbJMp8d', '7855719'), + (159, 2, 3007, 'not_attending', '2025-02-25 04:49:52', '2025-12-17 19:46:24', 'dBbJMp8d', '7860683'), + (160, 2, 3008, 'not_attending', '2025-02-25 04:50:05', '2025-12-17 19:46:24', 'dBbJMp8d', '7860684'), + (161, 2, 3010, 'not_attending', '2025-03-01 01:20:05', '2025-12-17 19:46:18', 'dBbJMp8d', '7864879'), + (162, 2, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dBbJMp8d', '7866095'), + (163, 2, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dBbJMp8d', '7869170'), + (164, 2, 3015, 'maybe', '2025-04-21 07:32:52', '2025-12-17 19:46:20', 'dBbJMp8d', '7869186'), + (165, 2, 3016, 'attending', '2025-04-12 15:06:08', '2025-12-17 19:46:20', 'dBbJMp8d', '7869187'), + (166, 2, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dBbJMp8d', '7869188'), + (167, 2, 3018, 'not_attending', '2025-04-11 09:49:59', '2025-12-17 19:46:20', 'dBbJMp8d', '7869189'), + (168, 2, 3028, 'attending', '2025-04-24 19:33:30', '2025-12-17 19:46:20', 'dBbJMp8d', '7869199'), + (169, 2, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dBbJMp8d', '7869201'), + (170, 2, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dBbJMp8d', '7877465'), + (171, 2, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dBbJMp8d', '7878570'), + (172, 2, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dBbJMp8d', '7888250'), + (173, 2, 3075, 'maybe', '2025-04-17 21:39:43', '2025-12-17 19:46:20', 'dBbJMp8d', '7898896'), + (174, 2, 3087, 'not_attending', '2025-04-15 01:13:32', '2025-12-17 19:46:20', 'dBbJMp8d', '7903856'), + (175, 2, 3088, 'maybe', '2025-06-13 16:42:54', '2025-12-17 19:46:15', 'dBbJMp8d', '7904777'), + (176, 2, 3090, 'attending', '2025-04-17 21:39:15', '2025-12-17 19:46:20', 'dBbJMp8d', '7914315'), + (177, 2, 3091, 'attending', '2025-04-17 21:39:24', '2025-12-17 19:46:20', 'dBbJMp8d', '8340289'), + (178, 2, 3094, 'attending', '2025-05-05 10:12:28', '2025-12-17 19:46:21', 'dBbJMp8d', '8342292'), + (179, 2, 3095, 'attending', '2025-04-27 23:24:44', '2025-12-17 19:46:20', 'dBbJMp8d', '8342293'), + (180, 2, 3096, 'maybe', '2025-04-21 07:31:57', '2025-12-17 19:46:20', 'dBbJMp8d', '8342987'), + (181, 2, 3097, 'maybe', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dBbJMp8d', '8342993'), + (182, 2, 3100, 'attending', '2025-04-22 01:57:34', '2025-12-17 19:46:20', 'dBbJMp8d', '8343977'), + (183, 2, 3102, 'not_attending', '2025-04-27 17:27:24', '2025-12-17 19:46:20', 'dBbJMp8d', '8346008'), + (184, 2, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dBbJMp8d', '8349164'), + (185, 2, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dBbJMp8d', '8349545'), + (186, 2, 3106, 'attending', '2025-05-01 09:28:39', '2025-12-17 19:46:20', 'dBbJMp8d', '8349552'), + (187, 2, 3107, 'attending', '2025-05-02 02:16:00', '2025-12-17 19:46:20', 'dBbJMp8d', '8350107'), + (188, 2, 3108, 'attending', '2025-05-01 17:13:32', '2025-12-17 19:46:20', 'dBbJMp8d', '8351411'), + (189, 2, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dBbJMp8d', '8353584'), + (190, 2, 3114, 'maybe', '2025-05-05 10:11:01', '2025-12-17 19:46:20', 'dBbJMp8d', '8357180'), + (191, 2, 3126, 'maybe', '2025-05-14 02:45:33', '2025-12-17 19:46:21', 'dBbJMp8d', '8365614'), + (192, 2, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dBbJMp8d', '8368028'), + (193, 2, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dBbJMp8d', '8368029'), + (194, 2, 3133, 'attending', '2025-05-24 22:19:28', '2025-12-17 19:46:14', 'dBbJMp8d', '8368030'), + (195, 2, 3136, 'not_attending', '2025-05-20 21:46:29', '2025-12-17 19:46:21', 'dBbJMp8d', '8374152'), + (196, 2, 3137, 'not_attending', '2025-05-20 21:46:45', '2025-12-17 19:46:21', 'dBbJMp8d', '8374153'), + (197, 2, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dBbJMp8d', '8388462'), + (198, 2, 3150, 'maybe', '2025-06-21 13:06:55', '2025-12-17 19:46:15', 'dBbJMp8d', '8393174'), + (199, 2, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dBbJMp8d', '8400273'), + (200, 2, 3154, 'attending', '2025-06-26 21:35:18', '2025-12-17 19:46:15', 'dBbJMp8d', '8400274'), + (201, 2, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dBbJMp8d', '8400275'), + (202, 2, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dBbJMp8d', '8400276'), + (203, 2, 3160, 'maybe', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'dBbJMp8d', '8401411'), + (204, 2, 3165, 'attending', '2025-06-07 19:37:34', '2025-12-17 19:46:14', 'dBbJMp8d', '8404220'), + (205, 2, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dBbJMp8d', '8404977'), + (206, 2, 3170, 'attending', '2025-06-09 16:33:52', '2025-12-17 19:46:15', 'dBbJMp8d', '8405947'), + (207, 2, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dBbJMp8d', '8430783'), + (208, 2, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dBbJMp8d', '8430784'), + (209, 2, 3183, 'attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dBbJMp8d', '8430799'), + (210, 2, 3184, 'maybe', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dBbJMp8d', '8430800'), + (211, 2, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dBbJMp8d', '8430801'), + (212, 2, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dBbJMp8d', '8438709'), + (213, 2, 3192, 'maybe', '2025-07-16 17:10:57', '2025-12-17 19:46:17', 'dBbJMp8d', '8456429'), + (214, 2, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dBbJMp8d', '8457738'), + (215, 2, 3195, 'attending', '2025-08-06 21:40:09', '2025-12-17 19:46:17', 'dBbJMp8d', '8458118'), + (216, 2, 3196, 'attending', '2025-08-13 21:37:42', '2025-12-17 19:46:17', 'dBbJMp8d', '8458543'), + (217, 2, 3198, 'attending', '2025-08-20 22:00:11', '2025-12-17 19:46:18', 'dBbJMp8d', '8459268'), + (218, 2, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dBbJMp8d', '8459566'), + (219, 2, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dBbJMp8d', '8459567'), + (220, 2, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dBbJMp8d', '8461032'), + (221, 2, 3210, 'not_attending', '2025-08-27 20:54:11', '2025-12-17 19:46:18', 'dBbJMp8d', '8471162'), + (222, 2, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dBbJMp8d', '8477877'), + (223, 2, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dBbJMp8d', '8485688'), + (224, 2, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dBbJMp8d', '8490587'), + (225, 2, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dBbJMp8d', '8493552'), + (226, 2, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dBbJMp8d', '8493553'), + (227, 2, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dBbJMp8d', '8493554'), + (228, 2, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dBbJMp8d', '8493555'), + (229, 2, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dBbJMp8d', '8493556'), + (230, 2, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dBbJMp8d', '8493557'), + (231, 2, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dBbJMp8d', '8493558'), + (232, 2, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dBbJMp8d', '8493559'), + (233, 2, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dBbJMp8d', '8493560'), + (234, 2, 3245, 'maybe', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dBbJMp8d', '8493561'), + (235, 2, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dBbJMp8d', '8493572'), + (236, 2, 3258, 'attending', '2025-09-03 09:57:10', '2025-12-17 19:46:11', 'dBbJMp8d', '8510285'), + (237, 2, 3263, 'maybe', '2025-09-10 20:22:39', '2025-12-17 19:46:12', 'dBbJMp8d', '8514576'), + (238, 2, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dBbJMp8d', '8540725'), + (239, 2, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dBbJMp8d', '8555421'), + (240, 2, 3346, 'attending', '2026-01-02 12:07:04', '2026-01-02 12:07:04', NULL, NULL), + (241, 3, 3195, 'maybe', '2025-08-06 22:21:31', '2025-12-17 19:46:17', 'AnnplqbA', '8458118'), + (242, 3, 3198, 'maybe', '2025-08-20 17:07:42', '2025-12-17 19:46:18', 'AnnplqbA', '8459268'), + (243, 3, 3201, 'not_attending', '2025-08-07 04:50:15', '2025-12-17 19:46:17', 'AnnplqbA', '8459567'), + (244, 3, 3210, 'not_attending', '2025-08-27 05:39:45', '2025-12-17 19:46:18', 'AnnplqbA', '8471162'), + (245, 3, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnnplqbA', '8477877'), + (246, 3, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnnplqbA', '8485688'), + (247, 3, 3235, 'maybe', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnnplqbA', '8490587'), + (248, 3, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnnplqbA', '8493552'), + (249, 3, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnnplqbA', '8493553'), + (250, 3, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnnplqbA', '8493554'), + (251, 3, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnnplqbA', '8493555'), + (252, 3, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnnplqbA', '8493556'), + (253, 3, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnnplqbA', '8493557'), + (254, 3, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnnplqbA', '8493558'), + (255, 3, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnnplqbA', '8493559'), + (256, 3, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnnplqbA', '8493560'), + (257, 3, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnnplqbA', '8493561'), + (258, 3, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnnplqbA', '8493572'), + (259, 3, 3258, 'not_attending', '2025-09-03 18:44:28', '2025-12-17 19:46:11', 'AnnplqbA', '8510285'), + (260, 3, 3260, 'maybe', '2025-09-09 22:48:29', '2025-12-17 19:46:12', 'AnnplqbA', '8512640'), + (261, 3, 3263, 'maybe', '2025-09-10 17:32:02', '2025-12-17 19:46:12', 'AnnplqbA', '8514576'), + (262, 3, 3272, 'attending', '2025-09-18 03:24:34', '2025-12-17 19:46:12', 'AnnplqbA', '8524068'), + (263, 3, 3275, 'not_attending', '2025-09-24 20:41:30', '2025-12-17 19:46:12', 'AnnplqbA', '8527786'), + (264, 3, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnnplqbA', '8540725'), + (265, 3, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnnplqbA', '8555421'), + (266, 4, 2276, 'attending', '2023-10-14 02:59:16', '2025-12-17 19:46:46', '54k7D2w4', '6453951'), + (267, 4, 2296, 'maybe', '2023-10-23 21:41:44', '2025-12-17 19:46:47', '54k7D2w4', '6468393'), + (268, 4, 2299, 'attending', '2023-10-17 03:24:47', '2025-12-17 19:46:46', '54k7D2w4', '6472181'), + (269, 4, 2302, 'not_attending', '2023-10-23 21:35:18', '2025-12-17 19:46:46', '54k7D2w4', '6482535'), + (270, 4, 2303, 'attending', '2023-10-23 19:16:54', '2025-12-17 19:46:47', '54k7D2w4', '6482691'), + (271, 4, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '54k7D2w4', '6482693'), + (272, 4, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '54k7D2w4', '6484200'), + (273, 4, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '54k7D2w4', '6484680'), + (274, 4, 2310, 'maybe', '2023-11-01 21:19:06', '2025-12-17 19:46:47', '54k7D2w4', '6487709'), + (275, 4, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '54k7D2w4', '6507741'), + (276, 4, 2322, 'attending', '2023-11-13 10:23:31', '2025-12-17 19:46:48', '54k7D2w4', '6514659'), + (277, 4, 2323, 'attending', '2023-11-27 04:01:41', '2025-12-17 19:46:48', '54k7D2w4', '6514660'), + (278, 4, 2324, 'attending', '2023-12-04 22:55:36', '2025-12-17 19:46:49', '54k7D2w4', '6514662'), + (279, 4, 2325, 'attending', '2023-12-12 02:57:28', '2025-12-17 19:46:36', '54k7D2w4', '6514663'), + (280, 4, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '54k7D2w4', '6519103'), + (281, 4, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '54k7D2w4', '6535681'), + (282, 4, 2340, 'not_attending', '2023-11-20 06:30:04', '2025-12-17 19:46:48', '54k7D2w4', '6540279'), + (283, 4, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '54k7D2w4', '6584747'), + (284, 4, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '54k7D2w4', '6587097'), + (285, 4, 2353, 'attending', '2023-11-29 23:17:05', '2025-12-17 19:46:48', '54k7D2w4', '6588894'), + (286, 4, 2355, 'not_attending', '2023-11-30 23:56:25', '2025-12-17 19:46:49', '54k7D2w4', '6593339'), + (287, 4, 2356, 'maybe', '2023-12-09 22:26:47', '2025-12-17 19:46:36', '54k7D2w4', '6593340'), + (288, 4, 2357, 'attending', '2023-12-09 22:27:08', '2025-12-17 19:46:36', '54k7D2w4', '6593341'), + (289, 4, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '54k7D2w4', '6609022'), + (290, 4, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '54k7D2w4', '6632757'), + (291, 4, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '54k7D2w4', '6644187'), + (292, 4, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '54k7D2w4', '6648951'), + (293, 4, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '54k7D2w4', '6648952'), + (294, 4, 2388, 'not_attending', '2024-01-06 20:09:16', '2025-12-17 19:46:37', '54k7D2w4', '6649244'), + (295, 4, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '54k7D2w4', '6655401'), + (296, 4, 2399, 'maybe', '2024-01-07 22:23:40', '2025-12-17 19:46:38', '54k7D2w4', '6657583'), + (297, 4, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '54k7D2w4', '6661585'), + (298, 4, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '54k7D2w4', '6661588'), + (299, 4, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '54k7D2w4', '6661589'), + (300, 4, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '54k7D2w4', '6699906'), + (301, 4, 2408, 'attending', '2024-01-26 08:30:18', '2025-12-17 19:46:40', '54k7D2w4', '6699907'), + (302, 4, 2409, 'attending', '2024-02-02 14:42:42', '2025-12-17 19:46:41', '54k7D2w4', '6699909'), + (303, 4, 2410, 'attending', '2024-02-09 18:37:40', '2025-12-17 19:46:41', '54k7D2w4', '6699911'), + (304, 4, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '54k7D2w4', '6699913'), + (305, 4, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '54k7D2w4', '6701109'), + (306, 4, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '54k7D2w4', '6705219'), + (307, 4, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '54k7D2w4', '6710153'), + (308, 4, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '54k7D2w4', '6711552'), + (309, 4, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '54k7D2w4', '6711553'), + (310, 4, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '54k7D2w4', '6722688'), + (311, 4, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '54k7D2w4', '6730620'), + (312, 4, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '54k7D2w4', '6730642'), + (313, 4, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '54k7D2w4', '6740364'), + (314, 4, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '54k7D2w4', '6743829'), + (315, 4, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '54k7D2w4', '7030380'), + (316, 4, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '54k7D2w4', '7033677'), + (317, 4, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '54k7D2w4', '7035415'), + (318, 4, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '54k7D2w4', '7044715'), + (319, 4, 2482, 'maybe', '2024-03-08 00:08:19', '2025-12-17 19:46:44', '54k7D2w4', '7044719'), + (320, 4, 2487, 'maybe', '2024-03-16 17:23:03', '2025-12-17 19:46:33', '54k7D2w4', '7049279'), + (321, 4, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '54k7D2w4', '7050318'), + (322, 4, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '54k7D2w4', '7050319'), + (323, 4, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '54k7D2w4', '7050322'), + (324, 4, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '54k7D2w4', '7057804'), + (325, 4, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '54k7D2w4', '7059866'), + (326, 4, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '54k7D2w4', '7072824'), + (327, 4, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '54k7D2w4', '7074348'), + (328, 4, 2510, 'not_attending', '2024-03-16 17:22:47', '2025-12-17 19:46:33', '54k7D2w4', '7074350'), + (329, 4, 2518, 'maybe', '2024-07-25 15:23:40', '2025-12-17 19:46:30', '54k7D2w4', '7074358'), + (330, 4, 2521, 'maybe', '2024-06-15 18:57:24', '2025-12-17 19:46:29', '54k7D2w4', '7074361'), + (331, 4, 2522, 'not_attending', '2024-07-14 20:45:34', '2025-12-17 19:46:30', '54k7D2w4', '7074362'), + (332, 4, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '54k7D2w4', '7074364'), + (333, 4, 2525, 'maybe', '2024-06-10 14:46:49', '2025-12-17 19:46:28', '54k7D2w4', '7074365'), + (334, 4, 2526, 'not_attending', '2024-08-01 21:08:23', '2025-12-17 19:46:31', '54k7D2w4', '7074366'), + (335, 4, 2527, 'not_attending', '2024-06-23 15:37:19', '2025-12-17 19:46:29', '54k7D2w4', '7074367'), + (336, 4, 2528, 'maybe', '2024-08-06 22:20:50', '2025-12-17 19:46:31', '54k7D2w4', '7074368'), + (337, 4, 2530, 'attending', '2024-08-14 18:41:30', '2025-12-17 19:46:31', '54k7D2w4', '7074373'), + (338, 4, 2531, 'attending', '2024-08-25 23:54:13', '2025-12-17 19:46:32', '54k7D2w4', '7074378'), + (339, 4, 2532, 'not_attending', '2024-09-02 19:59:36', '2025-12-17 19:46:32', '54k7D2w4', '7074383'), + (340, 4, 2533, 'attending', '2024-08-19 05:37:55', '2025-12-17 19:46:32', '54k7D2w4', '7074384'), + (341, 4, 2537, 'not_attending', '2024-03-18 19:56:35', '2025-12-17 19:46:33', '54k7D2w4', '7085484'), + (342, 4, 2538, 'maybe', '2024-03-23 18:31:27', '2025-12-17 19:46:33', '54k7D2w4', '7085485'), + (343, 4, 2539, 'not_attending', '2024-03-23 21:31:42', '2025-12-17 19:46:33', '54k7D2w4', '7085486'), + (344, 4, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '54k7D2w4', '7089267'), + (345, 4, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '54k7D2w4', '7098747'), + (346, 4, 2553, 'not_attending', '2024-03-30 04:19:28', '2025-12-17 19:46:33', '54k7D2w4', '7113468'), + (347, 4, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '54k7D2w4', '7114856'), + (348, 4, 2555, 'attending', '2024-04-01 00:23:16', '2025-12-17 19:46:33', '54k7D2w4', '7114951'), + (349, 4, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '54k7D2w4', '7114955'), + (350, 4, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '54k7D2w4', '7114956'), + (351, 4, 2558, 'attending', '2024-04-21 01:25:23', '2025-12-17 19:46:35', '54k7D2w4', '7114957'), + (352, 4, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '54k7D2w4', '7153615'), + (353, 4, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '54k7D2w4', '7159484'), + (354, 4, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '54k7D2w4', '7178446'), + (355, 4, 2597, 'not_attending', '2024-04-21 23:04:18', '2025-12-17 19:46:34', '54k7D2w4', '7186726'), + (356, 4, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '54k7D2w4', '7220467'), + (357, 4, 2609, 'not_attending', '2024-05-05 21:07:29', '2025-12-17 19:46:35', '54k7D2w4', '7240354'), + (358, 4, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '54k7D2w4', '7251633'), + (359, 4, 2623, 'attending', '2024-05-10 14:15:51', '2025-12-17 19:46:35', '54k7D2w4', '7263048'), + (360, 4, 2626, 'not_attending', '2024-05-12 14:07:36', '2025-12-17 19:46:35', '54k7D2w4', '7264723'), + (361, 4, 2627, 'attending', '2024-05-21 12:30:51', '2025-12-17 19:46:35', '54k7D2w4', '7264724'), + (362, 4, 2628, 'attending', '2024-05-31 04:04:22', '2025-12-17 19:46:36', '54k7D2w4', '7264725'), + (363, 4, 2629, 'attending', '2024-06-02 21:37:48', '2025-12-17 19:46:28', '54k7D2w4', '7264726'), + (364, 4, 2636, 'not_attending', '2024-05-23 23:49:53', '2025-12-17 19:46:35', '54k7D2w4', '7270323'), + (365, 4, 2647, 'attending', '2024-06-02 18:51:49', '2025-12-17 19:46:28', '54k7D2w4', '7282057'), + (366, 4, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '54k7D2w4', '7302674'), + (367, 4, 2665, 'not_attending', '2024-06-05 21:51:30', '2025-12-17 19:46:36', '54k7D2w4', '7306370'), + (368, 4, 2666, 'attending', '2024-06-05 21:51:24', '2025-12-17 19:46:36', '54k7D2w4', '7307775'), + (369, 4, 2671, 'not_attending', '2024-06-09 20:17:55', '2025-12-17 19:46:28', '54k7D2w4', '7318256'), + (370, 4, 2675, 'maybe', '2024-08-04 01:58:11', '2025-12-17 19:46:31', '54k7D2w4', '7319481'), + (371, 4, 2678, 'attending', '2024-06-10 01:39:20', '2025-12-17 19:46:28', '54k7D2w4', '7319489'), + (372, 4, 2679, 'attending', '2024-06-12 15:20:16', '2025-12-17 19:46:29', '54k7D2w4', '7319490'), + (373, 4, 2683, 'not_attending', '2024-06-10 22:57:54', '2025-12-17 19:46:28', '54k7D2w4', '7321978'), + (374, 4, 2688, 'attending', '2024-06-21 20:21:47', '2025-12-17 19:46:29', '54k7D2w4', '7324073'), + (375, 4, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '54k7D2w4', '7324074'), + (376, 4, 2690, 'attending', '2024-07-07 02:26:20', '2025-12-17 19:46:30', '54k7D2w4', '7324075'), + (377, 4, 2691, 'attending', '2024-07-14 20:45:39', '2025-12-17 19:46:30', '54k7D2w4', '7324076'), + (378, 4, 2692, 'maybe', '2024-07-14 20:45:45', '2025-12-17 19:46:30', '54k7D2w4', '7324077'), + (379, 4, 2693, 'attending', '2024-07-25 15:23:53', '2025-12-17 19:46:31', '54k7D2w4', '7324078'), + (380, 4, 2694, 'attending', '2024-08-04 15:36:33', '2025-12-17 19:46:31', '54k7D2w4', '7324079'), + (381, 4, 2695, 'attending', '2024-08-10 22:25:17', '2025-12-17 19:46:31', '54k7D2w4', '7324080'), + (382, 4, 2696, 'attending', '2024-08-18 18:18:44', '2025-12-17 19:46:32', '54k7D2w4', '7324081'), + (383, 4, 2697, 'not_attending', '2024-08-27 01:05:01', '2025-12-17 19:46:32', '54k7D2w4', '7324082'), + (384, 4, 2698, 'attending', '2024-08-27 01:05:07', '2025-12-17 19:46:24', '54k7D2w4', '7324083'), + (385, 4, 2708, 'maybe', '2024-06-13 20:12:57', '2025-12-17 19:46:28', '54k7D2w4', '7325048'), + (386, 4, 2719, 'maybe', '2024-06-23 15:36:13', '2025-12-17 19:46:29', '54k7D2w4', '7331305'), + (387, 4, 2720, 'maybe', '2024-06-18 21:33:07', '2025-12-17 19:46:28', '54k7D2w4', '7331436'), + (388, 4, 2721, 'attending', '2024-06-19 00:58:38', '2025-12-17 19:46:29', '54k7D2w4', '7331456'), + (389, 4, 2722, 'attending', '2024-07-07 21:42:15', '2025-12-17 19:46:29', '54k7D2w4', '7331457'), + (390, 4, 2724, 'maybe', '2024-06-26 22:39:10', '2025-12-17 19:46:29', '54k7D2w4', '7332562'), + (391, 4, 2728, 'maybe', '2024-06-21 18:10:42', '2025-12-17 19:46:29', '54k7D2w4', '7334124'), + (392, 4, 2743, 'not_attending', '2024-07-01 22:28:29', '2025-12-17 19:46:29', '54k7D2w4', '7345688'), + (393, 4, 2753, 'maybe', '2024-07-09 19:12:59', '2025-12-17 19:46:30', '54k7D2w4', '7355538'), + (394, 4, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '54k7D2w4', '7356752'), + (395, 4, 2755, 'not_attending', '2024-07-10 13:27:09', '2025-12-17 19:46:29', '54k7D2w4', '7357808'), + (396, 4, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '54k7D2w4', '7363643'), + (397, 4, 2770, 'maybe', '2024-07-20 21:22:38', '2025-12-17 19:46:30', '54k7D2w4', '7368196'), + (398, 4, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '54k7D2w4', '7368606'), + (399, 4, 2785, 'attending', '2024-07-30 18:16:54', '2025-12-17 19:46:31', '54k7D2w4', '7380988'), + (400, 4, 2786, 'attending', '2024-08-06 19:45:30', '2025-12-17 19:46:31', '54k7D2w4', '7381403'), + (401, 4, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '54k7D2w4', '7397462'), + (402, 4, 2808, 'not_attending', '2024-08-27 01:01:29', '2025-12-17 19:46:32', '54k7D2w4', '7412860'), + (403, 4, 2811, 'attending', '2024-08-31 20:05:06', '2025-12-17 19:46:32', '54k7D2w4', '7418895'), + (404, 4, 2817, 'maybe', '2024-09-29 19:34:39', '2025-12-17 19:46:25', '54k7D2w4', '7424270'), + (405, 4, 2821, 'not_attending', '2024-10-06 15:03:14', '2025-12-17 19:46:26', '54k7D2w4', '7424275'), + (406, 4, 2822, 'maybe', '2024-11-04 15:44:28', '2025-12-17 19:46:26', '54k7D2w4', '7424276'), + (407, 4, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '54k7D2w4', '7432751'), + (408, 4, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '54k7D2w4', '7432752'), + (409, 4, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '54k7D2w4', '7432753'), + (410, 4, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '54k7D2w4', '7432754'), + (411, 4, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '54k7D2w4', '7432755'), + (412, 4, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '54k7D2w4', '7432756'), + (413, 4, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '54k7D2w4', '7432758'), + (414, 4, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '54k7D2w4', '7432759'), + (415, 4, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '54k7D2w4', '7433834'), + (416, 4, 2836, 'maybe', '2024-09-13 16:42:49', '2025-12-17 19:46:25', '54k7D2w4', '7438708'), + (417, 4, 2845, 'maybe', '2024-09-21 18:59:06', '2025-12-17 19:46:25', '54k7D2w4', '7452129'), + (418, 4, 2850, 'not_attending', '2024-09-29 16:21:14', '2025-12-17 19:46:25', '54k7D2w4', '7457153'), + (419, 4, 2855, 'not_attending', '2024-09-30 22:51:47', '2025-12-17 19:46:26', '54k7D2w4', '7469385'), + (420, 4, 2857, 'maybe', '2024-10-24 14:17:40', '2025-12-17 19:46:26', '54k7D2w4', '7469387'), + (421, 4, 2858, 'maybe', '2024-10-15 17:37:39', '2025-12-17 19:46:26', '54k7D2w4', '7469388'), + (422, 4, 2859, 'not_attending', '2024-10-31 14:07:52', '2025-12-17 19:46:26', '54k7D2w4', '7469389'), + (423, 4, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '54k7D2w4', '7470197'), + (424, 4, 2891, 'maybe', '2024-10-25 16:32:19', '2025-12-17 19:46:26', '54k7D2w4', '7668163'), + (425, 4, 2894, 'maybe', '2024-11-02 17:08:17', '2025-12-17 19:46:26', '54k7D2w4', '7680059'), + (426, 4, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '54k7D2w4', '7685613'), + (427, 4, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '54k7D2w4', '7688194'), + (428, 4, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '54k7D2w4', '7688196'), + (429, 4, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '54k7D2w4', '7688289'), + (430, 4, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', '54k7D2w4', '7692763'), + (431, 4, 2913, 'maybe', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '54k7D2w4', '7697552'), + (432, 4, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '54k7D2w4', '7699878'), + (433, 4, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '54k7D2w4', '7704043'), + (434, 4, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '54k7D2w4', '7712467'), + (435, 4, 2925, 'not_attending', '2024-12-03 00:52:11', '2025-12-17 19:46:21', '54k7D2w4', '7713584'), + (436, 4, 2926, 'maybe', '2024-12-03 00:52:14', '2025-12-17 19:46:21', '54k7D2w4', '7713585'), + (437, 4, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '54k7D2w4', '7713586'), + (438, 4, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '54k7D2w4', '7738518'), + (439, 4, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '54k7D2w4', '7750632'), + (440, 4, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '54k7D2w4', '7750636'), + (441, 4, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '54k7D2w4', '7796540'), + (442, 4, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '54k7D2w4', '7796541'), + (443, 4, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '54k7D2w4', '7796542'), + (444, 4, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '54k7D2w4', '7825913'), + (445, 4, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '54k7D2w4', '7826209'), + (446, 4, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '54k7D2w4', '7834742'), + (447, 4, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '54k7D2w4', '7842108'), + (448, 4, 2990, 'attending', '2025-02-14 23:27:28', '2025-12-17 19:46:23', '54k7D2w4', '7842898'), + (449, 4, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '54k7D2w4', '7842902'), + (450, 4, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '54k7D2w4', '7842903'), + (451, 4, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '54k7D2w4', '7842904'), + (452, 4, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '54k7D2w4', '7842905'), + (453, 4, 3002, 'attending', '2025-02-19 00:41:34', '2025-12-17 19:46:24', '54k7D2w4', '7854212'), + (454, 4, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '54k7D2w4', '7855719'), + (455, 4, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '54k7D2w4', '7860683'), + (456, 4, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '54k7D2w4', '7860684'), + (457, 4, 3011, 'attending', '2025-03-01 20:45:52', '2025-12-17 19:46:24', '54k7D2w4', '7865624'), + (458, 4, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '54k7D2w4', '7866095'), + (459, 4, 3013, 'maybe', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '54k7D2w4', '7869170'), + (460, 4, 3014, 'attending', '2025-03-30 16:13:09', '2025-12-17 19:46:19', '54k7D2w4', '7869185'), + (461, 4, 3015, 'attending', '2025-04-20 02:02:47', '2025-12-17 19:46:20', '54k7D2w4', '7869186'), + (462, 4, 3016, 'attending', '2025-04-13 22:40:32', '2025-12-17 19:46:20', '54k7D2w4', '7869187'), + (463, 4, 3017, 'attending', '2025-03-16 05:15:46', '2025-12-17 19:46:19', '54k7D2w4', '7869188'), + (464, 4, 3018, 'attending', '2025-04-06 03:54:52', '2025-12-17 19:46:20', '54k7D2w4', '7869189'), + (465, 4, 3028, 'attending', '2025-04-16 01:09:48', '2025-12-17 19:46:20', '54k7D2w4', '7869199'), + (466, 4, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '54k7D2w4', '7869201'), + (467, 4, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '54k7D2w4', '7877465'), + (468, 4, 3034, 'maybe', '2025-03-11 17:13:10', '2025-12-17 19:46:18', '54k7D2w4', '7878570'), + (469, 4, 3035, 'not_attending', '2025-03-11 23:40:16', '2025-12-17 19:46:19', '54k7D2w4', '7879085'), + (470, 4, 3036, 'maybe', '2025-03-13 16:12:36', '2025-12-17 19:46:19', '54k7D2w4', '7880952'), + (471, 4, 3043, 'maybe', '2025-03-15 19:18:39', '2025-12-17 19:46:19', '54k7D2w4', '7882587'), + (472, 4, 3044, 'maybe', '2025-03-28 20:55:43', '2025-12-17 19:46:19', '54k7D2w4', '7882690'), + (473, 4, 3045, 'attending', '2025-04-03 04:08:11', '2025-12-17 19:46:19', '54k7D2w4', '7882691'), + (474, 4, 3046, 'attending', '2025-04-09 01:05:30', '2025-12-17 19:46:20', '54k7D2w4', '7882692'), + (475, 4, 3047, 'attending', '2025-04-25 17:32:22', '2025-12-17 19:46:20', '54k7D2w4', '7882693'), + (476, 4, 3048, 'maybe', '2025-04-19 04:37:34', '2025-12-17 19:46:20', '54k7D2w4', '7882694'), + (477, 4, 3051, 'attending', '2025-03-16 23:20:50', '2025-12-17 19:46:19', '54k7D2w4', '7884023'), + (478, 4, 3052, 'attending', '2025-03-16 23:20:55', '2025-12-17 19:46:19', '54k7D2w4', '7884024'), + (479, 4, 3054, 'attending', '2025-03-17 00:16:43', '2025-12-17 19:46:19', '54k7D2w4', '7884168'), + (480, 4, 3055, 'maybe', '2025-03-25 15:18:17', '2025-12-17 19:46:19', '54k7D2w4', '7888118'), + (481, 4, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '54k7D2w4', '7888250'), + (482, 4, 3060, 'maybe', '2025-03-31 18:30:52', '2025-12-17 19:46:19', '54k7D2w4', '7892589'), + (483, 4, 3066, 'maybe', '2025-04-07 18:09:23', '2025-12-17 19:46:20', '54k7D2w4', '7894207'), + (484, 4, 3067, 'attending', '2025-03-31 23:48:59', '2025-12-17 19:46:19', '54k7D2w4', '7894745'), + (485, 4, 3072, 'maybe', '2025-04-03 16:42:04', '2025-12-17 19:46:19', '54k7D2w4', '7895449'), + (486, 4, 3078, 'attending', '2025-04-06 02:50:52', '2025-12-17 19:46:20', '54k7D2w4', '7901213'), + (487, 4, 3084, 'not_attending', '2025-04-09 23:19:16', '2025-12-17 19:46:20', '54k7D2w4', '7903687'), + (488, 4, 3088, 'not_attending', '2025-06-09 20:00:25', '2025-12-17 19:46:15', '54k7D2w4', '7904777'), + (489, 4, 3090, 'not_attending', '2025-04-17 02:02:09', '2025-12-17 19:46:20', '54k7D2w4', '7914315'), + (490, 4, 3093, 'maybe', '2025-04-23 21:30:24', '2025-12-17 19:46:20', '54k7D2w4', '8342248'), + (491, 4, 3094, 'not_attending', '2025-04-21 21:57:13', '2025-12-17 19:46:21', '54k7D2w4', '8342292'), + (492, 4, 3095, 'not_attending', '2025-04-21 21:57:11', '2025-12-17 19:46:20', '54k7D2w4', '8342293'), + (493, 4, 3098, 'attending', '2025-04-21 14:47:01', '2025-12-17 19:46:20', '54k7D2w4', '8343504'), + (494, 4, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '54k7D2w4', '8349164'), + (495, 4, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '54k7D2w4', '8349545'), + (496, 4, 3107, 'attending', '2025-04-27 22:47:18', '2025-12-17 19:46:20', '54k7D2w4', '8350107'), + (497, 4, 3109, 'attending', '2025-04-29 02:44:48', '2025-12-17 19:46:21', '54k7D2w4', '8352001'), + (498, 4, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '54k7D2w4', '8353584'), + (499, 4, 3121, 'attending', '2025-05-07 16:44:29', '2025-12-17 19:46:21', '54k7D2w4', '8362730'), + (500, 4, 3124, 'attending', '2025-05-09 02:03:19', '2025-12-17 19:46:21', '54k7D2w4', '8363566'), + (501, 4, 3131, 'attending', '2025-05-13 00:40:25', '2025-12-17 19:46:21', '54k7D2w4', '8368028'), + (502, 4, 3132, 'attending', '2025-05-13 00:40:27', '2025-12-17 19:46:21', '54k7D2w4', '8368029'), + (503, 4, 3133, 'attending', '2025-05-13 00:40:30', '2025-12-17 19:46:14', '54k7D2w4', '8368030'), + (504, 4, 3134, 'attending', '2025-05-13 01:01:21', '2025-12-17 19:46:21', '54k7D2w4', '8368031'), + (505, 4, 3136, 'maybe', '2025-05-19 22:27:59', '2025-12-17 19:46:21', '54k7D2w4', '8374152'), + (506, 4, 3137, 'not_attending', '2025-05-19 22:27:54', '2025-12-17 19:46:21', '54k7D2w4', '8374153'), + (507, 4, 3139, 'maybe', '2025-05-24 19:44:34', '2025-12-17 19:46:21', '54k7D2w4', '8377425'), + (508, 4, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '54k7D2w4', '8388462'), + (509, 4, 3150, 'not_attending', '2025-06-03 23:51:34', '2025-12-17 19:46:15', '54k7D2w4', '8393174'), + (510, 4, 3151, 'attending', '2025-05-31 19:15:12', '2025-12-17 19:46:14', '54k7D2w4', '8393497'), + (511, 4, 3152, 'attending', '2025-05-31 19:17:29', '2025-12-17 19:46:14', '54k7D2w4', '8393582'), + (512, 4, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '54k7D2w4', '8400273'), + (513, 4, 3154, 'not_attending', '2025-06-15 03:58:12', '2025-12-17 19:46:15', '54k7D2w4', '8400274'), + (514, 4, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '54k7D2w4', '8400275'), + (515, 4, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '54k7D2w4', '8400276'), + (516, 4, 3162, 'attending', '2025-06-04 16:41:09', '2025-12-17 19:46:15', '54k7D2w4', '8401599'), + (517, 4, 3165, 'attending', '2025-06-07 22:11:49', '2025-12-17 19:46:14', '54k7D2w4', '8404220'), + (518, 4, 3166, 'attending', '2025-06-07 22:16:24', '2025-12-17 19:46:15', '54k7D2w4', '8404242'), + (519, 4, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '54k7D2w4', '8404977'), + (520, 4, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '54k7D2w4', '8430783'), + (521, 4, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '54k7D2w4', '8430784'), + (522, 4, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '54k7D2w4', '8430799'), + (523, 4, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '54k7D2w4', '8430800'), + (524, 4, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '54k7D2w4', '8430801'), + (525, 4, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '54k7D2w4', '8438709'), + (526, 4, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '54k7D2w4', '8457738'), + (527, 4, 3196, 'maybe', '2025-08-10 00:41:56', '2025-12-17 19:46:17', '54k7D2w4', '8458543'), + (528, 4, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '54k7D2w4', '8459566'), + (529, 4, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '54k7D2w4', '8459567'), + (530, 4, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '54k7D2w4', '8461032'), + (531, 4, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '54k7D2w4', '8477877'), + (532, 4, 3219, 'not_attending', '2025-08-10 15:59:19', '2025-12-17 19:46:18', '54k7D2w4', '8482548'), + (533, 4, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', '54k7D2w4', '8485688'), + (534, 4, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '54k7D2w4', '8490587'), + (535, 4, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '54k7D2w4', '8493552'), + (536, 4, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '54k7D2w4', '8493553'), + (537, 4, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '54k7D2w4', '8493554'), + (538, 4, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '54k7D2w4', '8493555'), + (539, 4, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '54k7D2w4', '8493556'), + (540, 4, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '54k7D2w4', '8493557'), + (541, 4, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '54k7D2w4', '8493558'), + (542, 4, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '54k7D2w4', '8493559'), + (543, 4, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '54k7D2w4', '8493560'), + (544, 4, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '54k7D2w4', '8493561'), + (545, 4, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '54k7D2w4', '8493572'), + (546, 4, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '54k7D2w4', '8540725'), + (547, 4, 3302, 'maybe', '2025-11-16 00:04:48', '2025-12-17 19:46:14', '54k7D2w4', '8550022'), + (548, 4, 3304, 'attending', '2025-11-16 00:22:53', '2025-12-17 19:46:14', '54k7D2w4', '8550024'), + (549, 4, 3305, 'not_attending', '2025-11-26 20:08:21', '2025-12-17 19:46:11', '54k7D2w4', '8550025'), + (550, 4, 3306, 'maybe', '2025-12-11 22:37:59', '2025-12-17 19:46:11', '54k7D2w4', '8550026'), + (551, 4, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '54k7D2w4', '8555421'), + (552, 4, 3346, 'maybe', '2025-12-30 03:29:16', '2025-12-30 03:29:16', NULL, NULL), + (553, 5, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AYwOz8od', '5426882'), + (554, 5, 1512, 'not_attending', '2022-07-11 22:57:03', '2025-12-17 19:47:19', 'AYwOz8od', '5441112'), + (555, 5, 1513, 'attending', '2022-07-16 01:15:13', '2025-12-17 19:47:19', 'AYwOz8od', '5441125'), + (556, 5, 1514, 'not_attending', '2022-07-17 02:24:08', '2025-12-17 19:47:20', 'AYwOz8od', '5441126'), + (557, 5, 1515, 'attending', '2022-08-06 17:11:11', '2025-12-17 19:47:21', 'AYwOz8od', '5441128'), + (558, 5, 1516, 'not_attending', '2022-08-16 23:17:04', '2025-12-17 19:47:23', 'AYwOz8od', '5441129'), + (559, 5, 1517, 'not_attending', '2022-08-16 23:17:15', '2025-12-17 19:47:23', 'AYwOz8od', '5441130'), + (560, 5, 1518, 'not_attending', '2022-08-18 03:09:46', '2025-12-17 19:47:24', 'AYwOz8od', '5441131'), + (561, 5, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AYwOz8od', '5441132'), + (562, 5, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AYwOz8od', '5446643'), + (563, 5, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'AYwOz8od', '5449068'), + (564, 5, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AYwOz8od', '5453325'), + (565, 5, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AYwOz8od', '5454516'), + (566, 5, 1544, 'not_attending', '2022-09-16 02:51:40', '2025-12-17 19:47:11', 'AYwOz8od', '5454517'), + (567, 5, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AYwOz8od', '5454605'), + (568, 5, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AYwOz8od', '5455037'), + (569, 5, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AYwOz8od', '5461278'), + (570, 5, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AYwOz8od', '5469480'), + (571, 5, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AYwOz8od', '5471073'), + (572, 5, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AYwOz8od', '5474663'), + (573, 5, 1567, 'attending', '2022-08-02 17:50:50', '2025-12-17 19:47:21', 'AYwOz8od', '5477629'), + (574, 5, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AYwOz8od', '5482022'), + (575, 5, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AYwOz8od', '5482793'), + (576, 5, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AYwOz8od', '5488912'), + (577, 5, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AYwOz8od', '5492192'), + (578, 5, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AYwOz8od', '5493139'), + (579, 5, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AYwOz8od', '5493200'), + (580, 5, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AYwOz8od', '5502188'), + (581, 5, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AYwOz8od', '5505059'), + (582, 5, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AYwOz8od', '5509055'), + (583, 5, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AYwOz8od', '5512862'), + (584, 5, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AYwOz8od', '5513985'), + (585, 5, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'AYwOz8od', '5519981'), + (586, 5, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AYwOz8od', '5522550'), + (587, 5, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AYwOz8od', '5534683'), + (588, 5, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AYwOz8od', '5537735'), + (589, 5, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AYwOz8od', '5540859'), + (590, 5, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AYwOz8od', '5546619'), + (591, 5, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AYwOz8od', '5555245'), + (592, 5, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AYwOz8od', '5557747'), + (593, 5, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AYwOz8od', '5560255'), + (594, 5, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AYwOz8od', '5562906'), + (595, 5, 1667, 'not_attending', '2022-09-16 02:51:45', '2025-12-17 19:47:11', 'AYwOz8od', '5563221'), + (596, 5, 1668, 'attending', '2022-10-01 17:41:21', '2025-12-17 19:47:12', 'AYwOz8od', '5563222'), + (597, 5, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AYwOz8od', '5600604'), + (598, 5, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AYwOz8od', '5605544'), + (599, 5, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'AYwOz8od', '5606737'), + (600, 5, 1719, 'attending', '2022-10-08 01:42:45', '2025-12-17 19:47:12', 'AYwOz8od', '5630958'), + (601, 5, 1720, 'not_attending', '2022-10-11 15:40:12', '2025-12-17 19:47:12', 'AYwOz8od', '5630959'), + (602, 5, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AYwOz8od', '5630960'), + (603, 5, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AYwOz8od', '5630961'), + (604, 5, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AYwOz8od', '5630962'), + (605, 5, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AYwOz8od', '5630966'), + (606, 5, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AYwOz8od', '5630967'), + (607, 5, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AYwOz8od', '5630968'), + (608, 5, 1727, 'attending', '2022-12-03 03:59:13', '2025-12-17 19:47:16', 'AYwOz8od', '5630969'), + (609, 5, 1728, 'attending', '2022-12-11 21:13:43', '2025-12-17 19:47:17', 'AYwOz8od', '5630970'), + (610, 5, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AYwOz8od', '5635406'), + (611, 5, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AYwOz8od', '5638765'), + (612, 5, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AYwOz8od', '5640097'), + (613, 5, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AYwOz8od', '5640843'), + (614, 5, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AYwOz8od', '5641521'), + (615, 5, 1744, 'attending', '2022-11-23 01:01:19', '2025-12-17 19:47:16', 'AYwOz8od', '5642818'), + (616, 5, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AYwOz8od', '5652395'), + (617, 5, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AYwOz8od', '5670445'), + (618, 5, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AYwOz8od', '5671637'), + (619, 5, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AYwOz8od', '5672329'), + (620, 5, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AYwOz8od', '5674057'), + (621, 5, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AYwOz8od', '5674060'), + (622, 5, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AYwOz8od', '5677461'), + (623, 5, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AYwOz8od', '5698046'), + (624, 5, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AYwOz8od', '5699760'), + (625, 5, 1793, 'maybe', '2022-11-24 07:16:03', '2025-12-17 19:47:16', 'AYwOz8od', '5736365'), + (626, 5, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AYwOz8od', '5741601'), + (627, 5, 1797, 'attending', '2022-12-09 22:03:25', '2025-12-17 19:47:17', 'AYwOz8od', '5757486'), + (628, 5, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AYwOz8od', '5763458'), + (629, 5, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AYwOz8od', '5774172'), + (630, 5, 1826, 'not_attending', '2022-12-17 19:47:16', '2025-12-17 19:47:04', 'AYwOz8od', '5776768'), + (631, 5, 1832, 'not_attending', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'AYwOz8od', '5818247'), + (632, 5, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AYwOz8od', '5819471'), + (633, 5, 1837, 'attending', '2022-12-07 23:15:49', '2025-12-17 19:47:16', 'AYwOz8od', '5820146'), + (634, 5, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AYwOz8od', '5827739'), + (635, 5, 1843, 'attending', '2022-12-17 21:27:50', '2025-12-17 19:47:04', 'AYwOz8od', '5844304'), + (636, 5, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AYwOz8od', '5844306'), + (637, 5, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AYwOz8od', '5850159'), + (638, 5, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AYwOz8od', '5858999'), + (639, 5, 1852, 'attending', '2023-01-10 22:44:23', '2025-12-17 19:47:05', 'AYwOz8od', '5869898'), + (640, 5, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AYwOz8od', '5871984'), + (641, 5, 1859, 'maybe', '2023-01-20 18:11:02', '2025-12-17 19:47:05', 'AYwOz8od', '5876234'), + (642, 5, 1861, 'maybe', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AYwOz8od', '5876354'), + (643, 5, 1864, 'maybe', '2023-01-20 18:11:07', '2025-12-17 19:47:05', 'AYwOz8od', '5879675'), + (644, 5, 1865, 'attending', '2023-01-28 03:04:13', '2025-12-17 19:47:06', 'AYwOz8od', '5879676'), + (645, 5, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AYwOz8od', '5880939'), + (646, 5, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AYwOz8od', '5880940'), + (647, 5, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AYwOz8od', '5880942'), + (648, 5, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AYwOz8od', '5880943'), + (649, 5, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AYwOz8od', '5887890'), + (650, 5, 1875, 'maybe', '2023-01-27 20:50:51', '2025-12-17 19:47:06', 'AYwOz8od', '5887908'), + (651, 5, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AYwOz8od', '5888598'), + (652, 5, 1877, 'not_attending', '2023-01-22 21:46:41', '2025-12-17 19:47:05', 'AYwOz8od', '5888693'), + (653, 5, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AYwOz8od', '5893260'), + (654, 5, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AYwOz8od', '5899826'), + (655, 5, 1885, 'attending', '2023-02-24 19:37:34', '2025-12-17 19:47:08', 'AYwOz8od', '5899928'), + (656, 5, 1886, 'maybe', '2023-03-07 01:50:39', '2025-12-17 19:47:09', 'AYwOz8od', '5899930'), + (657, 5, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AYwOz8od', '5900199'), + (658, 5, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AYwOz8od', '5900200'), + (659, 5, 1891, 'attending', '2023-03-20 15:54:35', '2025-12-17 19:46:56', 'AYwOz8od', '5900202'), + (660, 5, 1892, 'maybe', '2023-03-16 19:56:17', '2025-12-17 19:46:56', 'AYwOz8od', '5900203'), + (661, 5, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AYwOz8od', '5901108'), + (662, 5, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AYwOz8od', '5901126'), + (663, 5, 1897, 'attending', '2023-02-10 23:44:01', '2025-12-17 19:47:07', 'AYwOz8od', '5901128'), + (664, 5, 1899, 'attending', '2023-02-10 23:48:42', '2025-12-17 19:47:07', 'AYwOz8od', '5901323'), + (665, 5, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AYwOz8od', '5909655'), + (666, 5, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AYwOz8od', '5910522'), + (667, 5, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AYwOz8od', '5910526'), + (668, 5, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AYwOz8od', '5910528'), + (669, 5, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AYwOz8od', '5916219'), + (670, 5, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AYwOz8od', '5936234'), + (671, 5, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AYwOz8od', '5958351'), + (672, 5, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AYwOz8od', '5959751'), + (673, 5, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AYwOz8od', '5959755'), + (674, 5, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AYwOz8od', '5960055'), + (675, 5, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AYwOz8od', '5961684'), + (676, 5, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'AYwOz8od', '5962132'), + (677, 5, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AYwOz8od', '5962133'), + (678, 5, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AYwOz8od', '5962134'), + (679, 5, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AYwOz8od', '5962317'), + (680, 5, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AYwOz8od', '5962318'), + (681, 5, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AYwOz8od', '5965933'), + (682, 5, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AYwOz8od', '5967014'), + (683, 5, 1955, 'attending', '2023-03-28 01:38:09', '2025-12-17 19:46:57', 'AYwOz8od', '5972529'), + (684, 5, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AYwOz8od', '5972815'), + (685, 5, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AYwOz8od', '5974016'), + (686, 5, 1965, 'maybe', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AYwOz8od', '5981515'), + (687, 5, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AYwOz8od', '5993516'), + (688, 5, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AYwOz8od', '5998939'), + (689, 5, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AYwOz8od', '6028191'), + (690, 5, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AYwOz8od', '6040066'), + (691, 5, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AYwOz8od', '6042717'), + (692, 5, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AYwOz8od', '6044838'), + (693, 5, 1987, 'attending', '2023-04-16 21:38:29', '2025-12-17 19:47:00', 'AYwOz8od', '6044839'), + (694, 5, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYwOz8od', '6045684'), + (695, 5, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AYwOz8od', '6050104'), + (696, 5, 1999, 'not_attending', '2023-04-18 18:48:50', '2025-12-17 19:47:00', 'AYwOz8od', '6052057'), + (697, 5, 2003, 'attending', '2023-05-15 21:07:29', '2025-12-17 19:47:03', 'AYwOz8od', '6052606'), + (698, 5, 2005, 'attending', '2023-04-04 22:31:25', '2025-12-17 19:46:58', 'AYwOz8od', '6053195'), + (699, 5, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AYwOz8od', '6053198'), + (700, 5, 2008, 'attending', '2023-04-07 17:24:47', '2025-12-17 19:46:58', 'AYwOz8od', '6055808'), + (701, 5, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'AYwOz8od', '6056085'), + (702, 5, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AYwOz8od', '6056916'), + (703, 5, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AYwOz8od', '6059290'), + (704, 5, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AYwOz8od', '6060328'), + (705, 5, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AYwOz8od', '6061037'), + (706, 5, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AYwOz8od', '6061039'), + (707, 5, 2019, 'not_attending', '2023-04-16 20:07:22', '2025-12-17 19:47:00', 'AYwOz8od', '6062934'), + (708, 5, 2021, 'not_attending', '2023-04-16 23:39:49', '2025-12-17 19:47:00', 'AYwOz8od', '6066316'), + (709, 5, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AYwOz8od', '6067245'), + (710, 5, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AYwOz8od', '6068094'), + (711, 5, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AYwOz8od', '6068252'), + (712, 5, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AYwOz8od', '6068253'), + (713, 5, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AYwOz8od', '6068254'), + (714, 5, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AYwOz8od', '6068280'), + (715, 5, 2032, 'attending', '2023-06-02 22:24:53', '2025-12-17 19:47:04', 'AYwOz8od', '6068281'), + (716, 5, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AYwOz8od', '6069093'), + (717, 5, 2040, 'attending', '2023-04-27 22:40:56', '2025-12-17 19:47:01', 'AYwOz8od', '6072453'), + (718, 5, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'AYwOz8od', '6072528'), + (719, 5, 2043, 'attending', '2023-04-25 16:43:41', '2025-12-17 19:47:01', 'AYwOz8od', '6073023'), + (720, 5, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AYwOz8od', '6079840'), + (721, 5, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AYwOz8od', '6083398'), + (722, 5, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AYwOz8od', '6093504'), + (723, 5, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AYwOz8od', '6097414'), + (724, 5, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AYwOz8od', '6097442'), + (725, 5, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AYwOz8od', '6097684'), + (726, 5, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AYwOz8od', '6098762'), + (727, 5, 2065, 'maybe', '2023-06-16 17:38:33', '2025-12-17 19:46:49', 'AYwOz8od', '6101169'), + (728, 5, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AYwOz8od', '6101361'), + (729, 5, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AYwOz8od', '6101362'), + (730, 5, 2070, 'attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AYwOz8od', '6103752'), + (731, 5, 2074, 'not_attending', '2023-05-19 22:05:21', '2025-12-17 19:47:03', 'AYwOz8od', '6107312'), + (732, 5, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AYwOz8od', '6107314'), + (733, 5, 2087, 'attending', '2023-05-31 03:52:59', '2025-12-17 19:47:04', 'AYwOz8od', '6120034'), + (734, 5, 2089, 'attending', '2023-06-05 05:17:47', '2025-12-17 19:47:04', 'AYwOz8od', '6125227'), + (735, 5, 2091, 'attending', '2023-06-04 03:47:18', '2025-12-17 19:47:04', 'AYwOz8od', '6130657'), + (736, 5, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AYwOz8od', '6136733'), + (737, 5, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AYwOz8od', '6137989'), + (738, 5, 2097, 'not_attending', '2023-06-07 17:47:38', '2025-12-17 19:47:04', 'AYwOz8od', '6139059'), + (739, 5, 2099, 'attending', '2023-06-14 18:35:16', '2025-12-17 19:46:49', 'AYwOz8od', '6143012'), + (740, 5, 2104, 'attending', '2023-06-19 22:23:20', '2025-12-17 19:46:50', 'AYwOz8od', '6149499'), + (741, 5, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AYwOz8od', '6150864'), + (742, 5, 2110, 'attending', '2023-06-19 22:23:14', '2025-12-17 19:46:50', 'AYwOz8od', '6155491'), + (743, 5, 2116, 'attending', '2023-07-03 21:46:17', '2025-12-17 19:46:51', 'AYwOz8od', '6163389'), + (744, 5, 2117, 'attending', '2023-06-26 05:46:14', '2025-12-17 19:46:50', 'AYwOz8od', '6163750'), + (745, 5, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AYwOz8od', '6164417'), + (746, 5, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AYwOz8od', '6166388'), + (747, 5, 2121, 'attending', '2023-06-29 00:51:20', '2025-12-17 19:46:50', 'AYwOz8od', '6176439'), + (748, 5, 2122, 'attending', '2023-06-30 19:35:12', '2025-12-17 19:46:51', 'AYwOz8od', '6176476'), + (749, 5, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AYwOz8od', '6182410'), + (750, 5, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AYwOz8od', '6185812'), + (751, 5, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AYwOz8od', '6187651'), + (752, 5, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AYwOz8od', '6187963'), + (753, 5, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AYwOz8od', '6187964'), + (754, 5, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AYwOz8od', '6187966'), + (755, 5, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AYwOz8od', '6187967'), + (756, 5, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AYwOz8od', '6187969'), + (757, 5, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AYwOz8od', '6334878'), + (758, 5, 2146, 'attending', '2023-07-17 05:47:21', '2025-12-17 19:46:53', 'AYwOz8od', '6335638'), + (759, 5, 2152, 'attending', '2023-07-13 17:31:21', '2025-12-17 19:46:52', 'AYwOz8od', '6337021'), + (760, 5, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AYwOz8od', '6337236'), + (761, 5, 2155, 'attending', '2023-07-16 20:49:50', '2025-12-17 19:46:53', 'AYwOz8od', '6337970'), + (762, 5, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AYwOz8od', '6338308'), + (763, 5, 2158, 'attending', '2023-07-23 07:26:59', '2025-12-17 19:46:53', 'AYwOz8od', '6338353'), + (764, 5, 2159, 'attending', '2023-07-17 05:47:19', '2025-12-17 19:46:53', 'AYwOz8od', '6338355'), + (765, 5, 2160, 'not_attending', '2023-07-19 19:34:24', '2025-12-17 19:46:54', 'AYwOz8od', '6338358'), + (766, 5, 2161, 'attending', '2023-07-15 19:18:15', '2025-12-17 19:46:52', 'AYwOz8od', '6340748'), + (767, 5, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'AYwOz8od', '6340845'), + (768, 5, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AYwOz8od', '6341710'), + (769, 5, 2165, 'attending', '2023-07-26 20:25:46', '2025-12-17 19:46:54', 'AYwOz8od', '6342044'), + (770, 5, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AYwOz8od', '6342298'), + (771, 5, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AYwOz8od', '6343294'), + (772, 5, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AYwOz8od', '6347034'), + (773, 5, 2177, 'not_attending', '2023-08-07 23:05:50', '2025-12-17 19:46:55', 'AYwOz8od', '6347053'), + (774, 5, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AYwOz8od', '6347056'), + (775, 5, 2183, 'not_attending', '2023-07-28 15:19:17', '2025-12-17 19:46:54', 'AYwOz8od', '6353008'), + (776, 5, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AYwOz8od', '6353830'), + (777, 5, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AYwOz8od', '6353831'), + (778, 5, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AYwOz8od', '6357867'), + (779, 5, 2190, 'attending', '2023-08-07 00:07:32', '2025-12-17 19:46:55', 'AYwOz8od', '6357892'), + (780, 5, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AYwOz8od', '6358652'), + (781, 5, 2195, 'attending', '2023-08-23 01:30:44', '2025-12-17 19:46:55', 'AYwOz8od', '6359397'), + (782, 5, 2196, 'not_attending', '2023-09-03 16:34:04', '2025-12-17 19:46:56', 'AYwOz8od', '6359398'), + (783, 5, 2199, 'attending', '2023-08-13 18:14:57', '2025-12-17 19:46:55', 'AYwOz8od', '6359849'), + (784, 5, 2200, 'attending', '2023-08-07 00:07:36', '2025-12-17 19:46:55', 'AYwOz8od', '6359850'), + (785, 5, 2204, 'not_attending', '2023-08-13 18:15:07', '2025-12-17 19:46:55', 'AYwOz8od', '6361542'), + (786, 5, 2206, 'not_attending', '2023-08-09 03:57:51', '2025-12-17 19:46:55', 'AYwOz8od', '6361659'), + (787, 5, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AYwOz8od', '6361709'), + (788, 5, 2209, 'attending', '2023-08-23 01:30:10', '2025-12-17 19:46:55', 'AYwOz8od', '6361710'), + (789, 5, 2210, 'attending', '2023-08-26 21:55:28', '2025-12-17 19:46:55', 'AYwOz8od', '6361711'), + (790, 5, 2211, 'not_attending', '2023-08-13 18:15:04', '2025-12-17 19:46:55', 'AYwOz8od', '6361712'), + (791, 5, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AYwOz8od', '6361713'), + (792, 5, 2214, 'maybe', '2023-08-12 20:33:14', '2025-12-17 19:46:55', 'AYwOz8od', '6363218'), + (793, 5, 2215, 'maybe', '2023-08-11 18:46:57', '2025-12-17 19:46:55', 'AYwOz8od', '6363479'), + (794, 5, 2216, 'attending', '2023-08-19 22:55:01', '2025-12-17 19:46:55', 'AYwOz8od', '6364123'), + (795, 5, 2217, 'maybe', '2023-08-12 20:33:20', '2025-12-17 19:46:55', 'AYwOz8od', '6364333'), + (796, 5, 2232, 'attending', '2023-08-23 01:37:22', '2025-12-17 19:46:55', 'AYwOz8od', '6374818'), + (797, 5, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AYwOz8od', '6382573'), + (798, 5, 2239, 'attending', '2023-08-31 18:06:33', '2025-12-17 19:46:56', 'AYwOz8od', '6387592'), + (799, 5, 2240, 'attending', '2023-09-06 04:13:35', '2025-12-17 19:46:56', 'AYwOz8od', '6388603'), + (800, 5, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AYwOz8od', '6388604'), + (801, 5, 2242, 'attending', '2023-09-22 18:33:10', '2025-12-17 19:46:45', 'AYwOz8od', '6388606'), + (802, 5, 2247, 'maybe', '2023-09-05 19:51:26', '2025-12-17 19:46:56', 'AYwOz8od', '6394628'), + (803, 5, 2248, 'maybe', '2023-09-13 00:10:06', '2025-12-17 19:46:44', 'AYwOz8od', '6394629'), + (804, 5, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AYwOz8od', '6394631'), + (805, 5, 2253, 'attending', '2023-09-26 01:11:53', '2025-12-17 19:46:45', 'AYwOz8od', '6401811'), + (806, 5, 2255, 'maybe', '2023-09-17 03:56:40', '2025-12-17 19:46:45', 'AYwOz8od', '6403562'), + (807, 5, 2265, 'attending', '2023-10-01 04:29:53', '2025-12-17 19:46:45', 'AYwOz8od', '6439625'), + (808, 5, 2266, 'maybe', '2023-10-07 20:01:22', '2025-12-17 19:46:45', 'AYwOz8od', '6439635'), + (809, 5, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AYwOz8od', '6440863'), + (810, 5, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AYwOz8od', '6445440'), + (811, 5, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AYwOz8od', '6453951'), + (812, 5, 2279, 'attending', '2023-10-11 16:12:33', '2025-12-17 19:46:46', 'AYwOz8od', '6455460'), + (813, 5, 2285, 'maybe', '2023-10-27 19:44:43', '2025-12-17 19:46:47', 'AYwOz8od', '6460929'), + (814, 5, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AYwOz8od', '6461696'), + (815, 5, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AYwOz8od', '6462129'), + (816, 5, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AYwOz8od', '6463218'), + (817, 5, 2299, 'attending', '2023-10-18 17:01:57', '2025-12-17 19:46:46', 'AYwOz8od', '6472181'), + (818, 5, 2302, 'not_attending', '2023-10-20 23:42:59', '2025-12-17 19:46:46', 'AYwOz8od', '6482535'), + (819, 5, 2303, 'attending', '2023-10-26 16:19:28', '2025-12-17 19:46:47', 'AYwOz8od', '6482691'), + (820, 5, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AYwOz8od', '6482693'), + (821, 5, 2306, 'attending', '2023-11-13 23:48:44', '2025-12-17 19:46:47', 'AYwOz8od', '6484200'), + (822, 5, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AYwOz8od', '6484680'), + (823, 5, 2310, 'attending', '2023-11-10 05:37:46', '2025-12-17 19:46:47', 'AYwOz8od', '6487709'), + (824, 5, 2313, 'attending', '2023-10-28 20:32:09', '2025-12-17 19:46:47', 'AYwOz8od', '6492612'), + (825, 5, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AYwOz8od', '6507741'), + (826, 5, 2322, 'attending', '2023-11-16 19:03:15', '2025-12-17 19:46:48', 'AYwOz8od', '6514659'), + (827, 5, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AYwOz8od', '6514660'), + (828, 5, 2324, 'attending', '2023-12-07 19:24:41', '2025-12-17 19:46:49', 'AYwOz8od', '6514662'), + (829, 5, 2325, 'not_attending', '2023-12-13 04:36:15', '2025-12-17 19:46:36', 'AYwOz8od', '6514663'), + (830, 5, 2331, 'not_attending', '2023-11-12 23:03:21', '2025-12-17 19:46:47', 'AYwOz8od', '6518640'), + (831, 5, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AYwOz8od', '6519103'), + (832, 5, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AYwOz8od', '6535681'), + (833, 5, 2338, 'not_attending', '2023-11-25 23:39:22', '2025-12-17 19:46:48', 'AYwOz8od', '6538868'), + (834, 5, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AYwOz8od', '6584747'), + (835, 5, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AYwOz8od', '6587097'), + (836, 5, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AYwOz8od', '6609022'), + (837, 5, 2364, 'attending', '2023-12-08 01:10:52', '2025-12-17 19:46:49', 'AYwOz8od', '6613011'), + (838, 5, 2366, 'attending', '2023-12-08 22:15:23', '2025-12-17 19:46:36', 'AYwOz8od', '6615304'), + (839, 5, 2370, 'maybe', '2023-12-13 06:27:40', '2025-12-17 19:46:36', 'AYwOz8od', '6623765'), + (840, 5, 2371, 'attending', '2023-12-15 05:58:24', '2025-12-17 19:46:36', 'AYwOz8od', '6624495'), + (841, 5, 2373, 'attending', '2023-12-20 01:45:47', '2025-12-17 19:46:38', 'AYwOz8od', '6632678'), + (842, 5, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AYwOz8od', '6632757'), + (843, 5, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AYwOz8od', '6644187'), + (844, 5, 2380, 'attending', '2023-12-31 03:53:26', '2025-12-17 19:46:37', 'AYwOz8od', '6645105'), + (845, 5, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AYwOz8od', '6648951'), + (846, 5, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AYwOz8od', '6648952'), + (847, 5, 2388, 'attending', '2024-01-05 23:06:51', '2025-12-17 19:46:37', 'AYwOz8od', '6649244'), + (848, 5, 2390, 'maybe', '2024-01-07 05:22:28', '2025-12-17 19:46:37', 'AYwOz8od', '6651141'), + (849, 5, 2391, 'not_attending', '2024-01-13 00:40:37', '2025-12-17 19:46:37', 'AYwOz8od', '6654138'), + (850, 5, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AYwOz8od', '6655401'), + (851, 5, 2397, 'not_attending', '2024-01-08 18:18:30', '2025-12-17 19:46:37', 'AYwOz8od', '6657379'), + (852, 5, 2398, 'not_attending', '2024-01-10 05:14:27', '2025-12-17 19:46:37', 'AYwOz8od', '6657381'), + (853, 5, 2399, 'attending', '2024-01-13 20:40:10', '2025-12-17 19:46:38', 'AYwOz8od', '6657583'), + (854, 5, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AYwOz8od', '6661585'), + (855, 5, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AYwOz8od', '6661588'), + (856, 5, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AYwOz8od', '6661589'), + (857, 5, 2404, 'attending', '2024-01-15 19:55:56', '2025-12-17 19:46:38', 'AYwOz8od', '6666858'), + (858, 5, 2406, 'not_attending', '2024-01-17 22:34:00', '2025-12-17 19:46:40', 'AYwOz8od', '6692344'), + (859, 5, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AYwOz8od', '6699906'), + (860, 5, 2408, 'attending', '2024-01-23 23:46:39', '2025-12-17 19:46:40', 'AYwOz8od', '6699907'), + (861, 5, 2409, 'attending', '2024-02-01 03:42:46', '2025-12-17 19:46:41', 'AYwOz8od', '6699909'), + (862, 5, 2410, 'attending', '2024-02-08 00:40:23', '2025-12-17 19:46:41', 'AYwOz8od', '6699911'), + (863, 5, 2411, 'attending', '2024-02-15 04:00:55', '2025-12-17 19:46:41', 'AYwOz8od', '6699913'), + (864, 5, 2414, 'maybe', '2024-01-18 01:45:20', '2025-12-17 19:46:40', 'AYwOz8od', '6701000'), + (865, 5, 2415, 'maybe', '2024-01-18 01:45:21', '2025-12-17 19:46:40', 'AYwOz8od', '6701001'), + (866, 5, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AYwOz8od', '6701109'), + (867, 5, 2421, 'not_attending', '2024-01-26 04:45:32', '2025-12-17 19:46:40', 'AYwOz8od', '6704598'), + (868, 5, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AYwOz8od', '6705219'), + (869, 5, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AYwOz8od', '6710153'), + (870, 5, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AYwOz8od', '6711552'), + (871, 5, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'AYwOz8od', '6711553'), + (872, 5, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AYwOz8od', '6722688'), + (873, 5, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AYwOz8od', '6730620'), + (874, 5, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AYwOz8od', '6730642'), + (875, 5, 2444, 'attending', '2024-02-09 18:59:35', '2025-12-17 19:46:41', 'AYwOz8od', '6734367'), + (876, 5, 2445, 'not_attending', '2024-02-16 03:44:01', '2025-12-17 19:46:41', 'AYwOz8od', '6734368'), + (877, 5, 2447, 'not_attending', '2024-03-10 18:04:18', '2025-12-17 19:46:32', 'AYwOz8od', '6734370'), + (878, 5, 2448, 'not_attending', '2024-03-27 02:22:30', '2025-12-17 19:46:33', 'AYwOz8od', '6734371'), + (879, 5, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AYwOz8od', '6740364'), + (880, 5, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AYwOz8od', '6743829'), + (881, 5, 2466, 'not_attending', '2024-02-13 23:39:45', '2025-12-17 19:46:41', 'AYwOz8od', '7026777'), + (882, 5, 2467, 'maybe', '2024-02-24 18:03:11', '2025-12-17 19:46:43', 'AYwOz8od', '7029987'), + (883, 5, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AYwOz8od', '7030380'), + (884, 5, 2471, 'attending', '2024-02-20 02:56:57', '2025-12-17 19:46:42', 'AYwOz8od', '7032425'), + (885, 5, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AYwOz8od', '7033677'), + (886, 5, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'AYwOz8od', '7035415'), + (887, 5, 2476, 'attending', '2024-02-27 00:50:07', '2025-12-17 19:46:43', 'AYwOz8od', '7035691'), + (888, 5, 2478, 'attending', '2024-02-23 01:15:16', '2025-12-17 19:46:43', 'AYwOz8od', '7036478'), + (889, 5, 2480, 'maybe', '2024-02-24 18:03:09', '2025-12-17 19:46:43', 'AYwOz8od', '7042160'), + (890, 5, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AYwOz8od', '7044715'), + (891, 5, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AYwOz8od', '7050318'), + (892, 5, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AYwOz8od', '7050319'), + (893, 5, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AYwOz8od', '7050322'), + (894, 5, 2498, 'attending', '2024-03-20 20:37:24', '2025-12-17 19:46:33', 'AYwOz8od', '7057662'), + (895, 5, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AYwOz8od', '7057804'), + (896, 5, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'AYwOz8od', '7059866'), + (897, 5, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AYwOz8od', '7072824'), + (898, 5, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AYwOz8od', '7074348'), + (899, 5, 2513, 'attending', '2024-04-18 15:59:18', '2025-12-17 19:46:34', 'AYwOz8od', '7074353'), + (900, 5, 2516, 'not_attending', '2024-05-02 20:16:45', '2025-12-17 19:46:35', 'AYwOz8od', '7074356'), + (901, 5, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AYwOz8od', '7074364'), + (902, 5, 2527, 'maybe', '2024-06-27 15:48:37', '2025-12-17 19:46:29', 'AYwOz8od', '7074367'), + (903, 5, 2528, 'attending', '2024-08-07 16:10:24', '2025-12-17 19:46:31', 'AYwOz8od', '7074368'), + (904, 5, 2533, 'attending', '2024-08-21 16:33:29', '2025-12-17 19:46:32', 'AYwOz8od', '7074384'), + (905, 5, 2534, 'maybe', '2024-03-13 16:29:27', '2025-12-17 19:46:32', 'AYwOz8od', '7076875'), + (906, 5, 2537, 'maybe', '2024-03-21 18:01:08', '2025-12-17 19:46:33', 'AYwOz8od', '7085484'), + (907, 5, 2538, 'maybe', '2024-03-28 21:13:17', '2025-12-17 19:46:33', 'AYwOz8od', '7085485'), + (908, 5, 2539, 'attending', '2024-04-03 21:45:00', '2025-12-17 19:46:33', 'AYwOz8od', '7085486'), + (909, 5, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AYwOz8od', '7089267'), + (910, 5, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AYwOz8od', '7098747'), + (911, 5, 2553, 'attending', '2024-03-29 18:44:38', '2025-12-17 19:46:33', 'AYwOz8od', '7113468'), + (912, 5, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AYwOz8od', '7114856'), + (913, 5, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AYwOz8od', '7114951'), + (914, 5, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AYwOz8od', '7114955'), + (915, 5, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AYwOz8od', '7114956'), + (916, 5, 2558, 'attending', '2024-05-01 17:54:47', '2025-12-17 19:46:35', 'AYwOz8od', '7114957'), + (917, 5, 2564, 'not_attending', '2024-04-09 00:05:02', '2025-12-17 19:46:33', 'AYwOz8od', '7134735'), + (918, 5, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AYwOz8od', '7153615'), + (919, 5, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AYwOz8od', '7159484'), + (920, 5, 2573, 'attending', '2024-04-09 00:02:24', '2025-12-17 19:46:34', 'AYwOz8od', '7160612'), + (921, 5, 2576, 'not_attending', '2024-04-24 01:11:42', '2025-12-17 19:46:34', 'AYwOz8od', '7164538'), + (922, 5, 2581, 'not_attending', '2024-04-21 21:23:37', '2025-12-17 19:46:34', 'AYwOz8od', '7169048'), + (923, 5, 2584, 'attending', '2024-04-21 02:24:30', '2025-12-17 19:46:34', 'AYwOz8od', '7175057'), + (924, 5, 2585, 'attending', '2024-04-21 21:23:34', '2025-12-17 19:46:34', 'AYwOz8od', '7175828'), + (925, 5, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AYwOz8od', '7178446'), + (926, 5, 2592, 'attending', '2024-04-20 01:54:28', '2025-12-17 19:46:34', 'AYwOz8od', '7180959'), + (927, 5, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AYwOz8od', '7220467'), + (928, 5, 2603, 'not_attending', '2024-05-11 20:54:14', '2025-12-17 19:46:35', 'AYwOz8od', '7225669'), + (929, 5, 2605, 'attending', '2024-05-03 21:51:19', '2025-12-17 19:46:35', 'AYwOz8od', '7229243'), + (930, 5, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AYwOz8od', '7240354'), + (931, 5, 2611, 'attending', '2024-05-05 20:39:30', '2025-12-17 19:46:35', 'AYwOz8od', '7247642'), + (932, 5, 2613, 'attending', '2024-05-05 20:39:34', '2025-12-17 19:46:35', 'AYwOz8od', '7247644'), + (933, 5, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AYwOz8od', '7251633'), + (934, 5, 2620, 'attending', '2024-05-07 16:47:49', '2025-12-17 19:46:35', 'AYwOz8od', '7258097'), + (935, 5, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'AYwOz8od', '7263048'), + (936, 5, 2626, 'attending', '2024-05-16 00:53:26', '2025-12-17 19:46:35', 'AYwOz8od', '7264723'), + (937, 5, 2627, 'not_attending', '2024-05-18 17:51:38', '2025-12-17 19:46:35', 'AYwOz8od', '7264724'), + (938, 5, 2630, 'not_attending', '2024-05-12 17:22:50', '2025-12-17 19:46:35', 'AYwOz8od', '7264801'), + (939, 5, 2643, 'attending', '2024-05-18 17:51:25', '2025-12-17 19:46:35', 'AYwOz8od', '7276587'), + (940, 5, 2646, 'not_attending', '2024-05-20 19:51:10', '2025-12-17 19:46:35', 'AYwOz8od', '7281768'), + (941, 5, 2647, 'attending', '2024-05-29 18:38:07', '2025-12-17 19:46:28', 'AYwOz8od', '7282057'), + (942, 5, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AYwOz8od', '7302674'), + (943, 5, 2674, 'maybe', '2024-07-07 03:40:13', '2025-12-17 19:46:29', 'AYwOz8od', '7319480'), + (944, 5, 2679, 'attending', '2024-06-20 01:26:48', '2025-12-17 19:46:29', 'AYwOz8od', '7319490'), + (945, 5, 2688, 'attending', '2024-06-25 03:59:36', '2025-12-17 19:46:29', 'AYwOz8od', '7324073'), + (946, 5, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AYwOz8od', '7324074'), + (947, 5, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AYwOz8od', '7324075'), + (948, 5, 2691, 'attending', '2024-07-17 16:15:22', '2025-12-17 19:46:30', 'AYwOz8od', '7324076'), + (949, 5, 2692, 'not_attending', '2024-07-23 20:09:24', '2025-12-17 19:46:30', 'AYwOz8od', '7324077'), + (950, 5, 2693, 'attending', '2024-08-01 02:42:40', '2025-12-17 19:46:31', 'AYwOz8od', '7324078'), + (951, 5, 2694, 'attending', '2024-08-05 23:05:00', '2025-12-17 19:46:31', 'AYwOz8od', '7324079'), + (952, 5, 2695, 'not_attending', '2024-08-15 18:24:59', '2025-12-17 19:46:31', 'AYwOz8od', '7324080'), + (953, 5, 2696, 'attending', '2024-08-22 21:49:50', '2025-12-17 19:46:32', 'AYwOz8od', '7324081'), + (954, 5, 2697, 'attending', '2024-08-30 19:28:16', '2025-12-17 19:46:32', 'AYwOz8od', '7324082'), + (955, 5, 2698, 'attending', '2024-09-05 22:43:33', '2025-12-17 19:46:24', 'AYwOz8od', '7324083'), + (956, 5, 2701, 'not_attending', '2024-06-25 03:59:34', '2025-12-17 19:46:29', 'AYwOz8od', '7324391'), + (957, 5, 2706, 'attending', '2024-06-14 20:10:14', '2025-12-17 19:46:28', 'AYwOz8od', '7324947'), + (958, 5, 2711, 'not_attending', '2024-07-17 03:02:56', '2025-12-17 19:46:30', 'AYwOz8od', '7326524'), + (959, 5, 2712, 'attending', '2024-07-30 15:09:30', '2025-12-17 19:46:31', 'AYwOz8od', '7326525'), + (960, 5, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AYwOz8od', '7331457'), + (961, 5, 2723, 'not_attending', '2024-06-20 01:26:45', '2025-12-17 19:46:29', 'AYwOz8od', '7332389'), + (962, 5, 2724, 'maybe', '2024-06-25 03:59:30', '2025-12-17 19:46:29', 'AYwOz8od', '7332562'), + (963, 5, 2729, 'attending', '2024-06-23 15:50:00', '2025-12-17 19:46:29', 'AYwOz8od', '7335092'), + (964, 5, 2736, 'attending', '2024-06-29 20:29:24', '2025-12-17 19:46:29', 'AYwOz8od', '7342038'), + (965, 5, 2737, 'not_attending', '2024-06-30 20:35:08', '2025-12-17 19:46:29', 'AYwOz8od', '7344070'), + (966, 5, 2739, 'maybe', '2024-07-01 16:25:48', '2025-12-17 19:46:29', 'AYwOz8od', '7344575'), + (967, 5, 2741, 'maybe', '2024-07-01 16:38:27', '2025-12-17 19:46:30', 'AYwOz8od', '7344592'), + (968, 5, 2742, 'attending', '2024-07-03 16:19:25', '2025-12-17 19:46:29', 'AYwOz8od', '7345167'), + (969, 5, 2746, 'maybe', '2024-07-08 19:20:20', '2025-12-17 19:46:29', 'AYwOz8od', '7348713'), + (970, 5, 2747, 'attending', '2024-07-17 03:02:47', '2025-12-17 19:46:30', 'AYwOz8od', '7353587'), + (971, 5, 2749, 'not_attending', '2024-07-07 21:57:22', '2025-12-17 19:46:29', 'AYwOz8od', '7355496'), + (972, 5, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AYwOz8od', '7356752'), + (973, 5, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AYwOz8od', '7363643'), + (974, 5, 2770, 'not_attending', '2024-07-20 21:09:59', '2025-12-17 19:46:30', 'AYwOz8od', '7368196'), + (975, 5, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AYwOz8od', '7368606'), + (976, 5, 2782, 'maybe', '2024-07-29 19:14:09', '2025-12-17 19:46:30', 'AYwOz8od', '7376725'), + (977, 5, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AYwOz8od', '7397462'), + (978, 5, 2802, 'maybe', '2024-09-02 04:39:45', '2025-12-17 19:46:32', 'AYwOz8od', '7397463'), + (979, 5, 2806, 'not_attending', '2024-09-14 21:51:15', '2025-12-17 19:46:25', 'AYwOz8od', '7404888'), + (980, 5, 2811, 'attending', '2024-08-31 21:30:08', '2025-12-17 19:46:32', 'AYwOz8od', '7418895'), + (981, 5, 2813, 'not_attending', '2024-09-04 16:42:34', '2025-12-17 19:46:24', 'AYwOz8od', '7424105'), + (982, 5, 2814, 'maybe', '2024-09-08 04:50:29', '2025-12-17 19:46:24', 'AYwOz8od', '7424267'), + (983, 5, 2821, 'attending', '2024-10-09 04:28:07', '2025-12-17 19:46:26', 'AYwOz8od', '7424275'), + (984, 5, 2822, 'maybe', '2024-11-10 00:27:43', '2025-12-17 19:46:26', 'AYwOz8od', '7424276'), + (985, 5, 2823, 'attending', '2024-09-06 14:01:21', '2025-12-17 19:46:24', 'AYwOz8od', '7430247'), + (986, 5, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AYwOz8od', '7432751'), + (987, 5, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AYwOz8od', '7432752'), + (988, 5, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AYwOz8od', '7432753'), + (989, 5, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AYwOz8od', '7432754'), + (990, 5, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AYwOz8od', '7432755'), + (991, 5, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AYwOz8od', '7432756'), + (992, 5, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AYwOz8od', '7432758'), + (993, 5, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AYwOz8od', '7432759'), + (994, 5, 2832, 'not_attending', '2024-09-09 20:33:00', '2025-12-17 19:46:24', 'AYwOz8od', '7433324'), + (995, 5, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AYwOz8od', '7433834'), + (996, 5, 2836, 'not_attending', '2024-09-12 22:35:03', '2025-12-17 19:46:25', 'AYwOz8od', '7438708'), + (997, 5, 2839, 'not_attending', '2024-09-25 01:46:39', '2025-12-17 19:46:25', 'AYwOz8od', '7439262'), + (998, 5, 2845, 'attending', '2024-09-21 18:49:26', '2025-12-17 19:46:25', 'AYwOz8od', '7452129'), + (999, 5, 2849, 'attending', '2024-09-25 00:51:28', '2025-12-17 19:46:25', 'AYwOz8od', '7457114'), + (1000, 5, 2851, 'attending', '2024-09-28 20:55:26', '2025-12-17 19:46:25', 'AYwOz8od', '7461883'), + (1001, 5, 2858, 'not_attending', '2024-10-13 04:50:40', '2025-12-17 19:46:26', 'AYwOz8od', '7469388'), + (1002, 5, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'AYwOz8od', '7470197'), + (1003, 5, 2865, 'maybe', '2024-10-20 19:23:32', '2025-12-17 19:46:26', 'AYwOz8od', '7471200'), + (1004, 5, 2867, 'not_attending', '2024-12-03 03:00:27', '2025-12-17 19:46:21', 'AYwOz8od', '7471202'), + (1005, 5, 2870, 'attending', '2024-10-05 20:57:01', '2025-12-17 19:46:26', 'AYwOz8od', '7475068'), + (1006, 5, 2886, 'attending', '2024-11-03 20:54:53', '2025-12-17 19:46:26', 'AYwOz8od', '7654498'), + (1007, 5, 2891, 'attending', '2024-10-26 18:52:17', '2025-12-17 19:46:26', 'AYwOz8od', '7668163'), + (1008, 5, 2892, 'not_attending', '2024-10-27 23:27:40', '2025-12-17 19:46:26', 'AYwOz8od', '7672064'), + (1009, 5, 2894, 'attending', '2024-11-02 18:42:13', '2025-12-17 19:46:26', 'AYwOz8od', '7680059'), + (1010, 5, 2896, 'not_attending', '2024-11-12 17:18:16', '2025-12-17 19:46:27', 'AYwOz8od', '7683647'), + (1011, 5, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AYwOz8od', '7685613'), + (1012, 5, 2900, 'not_attending', '2024-11-11 00:08:09', '2025-12-17 19:46:26', 'AYwOz8od', '7686090'), + (1013, 5, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AYwOz8od', '7688194'), + (1014, 5, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AYwOz8od', '7688196'), + (1015, 5, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AYwOz8od', '7688289'), + (1016, 5, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'AYwOz8od', '7692763'), + (1017, 5, 2913, 'maybe', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AYwOz8od', '7697552'), + (1018, 5, 2915, 'not_attending', '2024-11-19 20:14:28', '2025-12-17 19:46:27', 'AYwOz8od', '7698151'), + (1019, 5, 2916, 'not_attending', '2024-11-19 20:14:25', '2025-12-17 19:46:27', 'AYwOz8od', '7699006'), + (1020, 5, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AYwOz8od', '7699878'), + (1021, 5, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'AYwOz8od', '7704043'), + (1022, 5, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AYwOz8od', '7712467'), + (1023, 5, 2925, 'attending', '2024-12-10 02:15:23', '2025-12-17 19:46:21', 'AYwOz8od', '7713584'), + (1024, 5, 2926, 'not_attending', '2024-11-30 22:30:57', '2025-12-17 19:46:21', 'AYwOz8od', '7713585'), + (1025, 5, 2927, 'not_attending', '2024-12-15 19:32:58', '2025-12-17 19:46:22', 'AYwOz8od', '7713586'), + (1026, 5, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AYwOz8od', '7738518'), + (1027, 5, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AYwOz8od', '7750636'), + (1028, 5, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AYwOz8od', '7796540'), + (1029, 5, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AYwOz8od', '7796541'), + (1030, 5, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AYwOz8od', '7796542'), + (1031, 5, 2968, 'not_attending', '2025-01-09 05:17:00', '2025-12-17 19:46:22', 'AYwOz8od', '7797967'), + (1032, 5, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AYwOz8od', '7825913'), + (1033, 5, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AYwOz8od', '7826209'), + (1034, 5, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AYwOz8od', '7834742'), + (1035, 5, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'AYwOz8od', '7842108'), + (1036, 5, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AYwOz8od', '7842902'), + (1037, 5, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AYwOz8od', '7842903'), + (1038, 5, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AYwOz8od', '7842904'), + (1039, 5, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AYwOz8od', '7842905'), + (1040, 5, 3000, 'attending', '2025-02-17 19:37:31', '2025-12-17 19:46:24', 'AYwOz8od', '7852541'), + (1041, 5, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AYwOz8od', '7855719'), + (1042, 5, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AYwOz8od', '7860683'), + (1043, 5, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AYwOz8od', '7860684'), + (1044, 5, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AYwOz8od', '7866095'), + (1045, 5, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AYwOz8od', '7869170'), + (1046, 5, 3014, 'attending', '2025-03-31 17:05:56', '2025-12-17 19:46:19', 'AYwOz8od', '7869185'), + (1047, 5, 3016, 'attending', '2025-04-19 05:01:50', '2025-12-17 19:46:20', 'AYwOz8od', '7869187'), + (1048, 5, 3017, 'not_attending', '2025-03-22 21:04:46', '2025-12-17 19:46:19', 'AYwOz8od', '7869188'), + (1049, 5, 3018, 'attending', '2025-04-09 00:40:13', '2025-12-17 19:46:20', 'AYwOz8od', '7869189'), + (1050, 5, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AYwOz8od', '7869201'), + (1051, 5, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AYwOz8od', '7877465'), + (1052, 5, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AYwOz8od', '7878570'), + (1053, 5, 3046, 'attending', '2025-04-12 18:49:51', '2025-12-17 19:46:20', 'AYwOz8od', '7882692'), + (1054, 5, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AYwOz8od', '7888250'), + (1055, 5, 3065, 'attending', '2025-03-29 01:00:39', '2025-12-17 19:46:19', 'AYwOz8od', '7893676'), + (1056, 5, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AYwOz8od', '7904777'), + (1057, 5, 3094, 'not_attending', '2025-05-03 00:21:28', '2025-12-17 19:46:21', 'AYwOz8od', '8342292'), + (1058, 5, 3095, 'attending', '2025-04-28 14:33:18', '2025-12-17 19:46:20', 'AYwOz8od', '8342293'), + (1059, 5, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AYwOz8od', '8349164'), + (1060, 5, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AYwOz8od', '8349545'), + (1061, 5, 3108, 'attending', '2025-05-03 19:12:06', '2025-12-17 19:46:20', 'AYwOz8od', '8351411'), + (1062, 5, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AYwOz8od', '8353584'), + (1063, 5, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AYwOz8od', '8368028'), + (1064, 5, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AYwOz8od', '8368029'), + (1065, 5, 3133, 'attending', '2025-05-29 20:50:57', '2025-12-17 19:46:14', 'AYwOz8od', '8368030'), + (1066, 5, 3139, 'attending', '2025-05-24 21:37:35', '2025-12-17 19:46:21', 'AYwOz8od', '8377425'), + (1067, 5, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AYwOz8od', '8388462'), + (1068, 5, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AYwOz8od', '8400273'), + (1069, 5, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AYwOz8od', '8400274'), + (1070, 5, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AYwOz8od', '8400275'), + (1071, 5, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'AYwOz8od', '8400276'), + (1072, 5, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AYwOz8od', '8404977'), + (1073, 5, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AYwOz8od', '8430783'), + (1074, 5, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AYwOz8od', '8430784'), + (1075, 5, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AYwOz8od', '8430799'), + (1076, 5, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AYwOz8od', '8430800'), + (1077, 5, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AYwOz8od', '8430801'), + (1078, 5, 3186, 'maybe', '2025-07-01 00:41:26', '2025-12-17 19:46:16', 'AYwOz8od', '8431527'), + (1079, 5, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AYwOz8od', '8438709'), + (1080, 5, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AYwOz8od', '8457738'), + (1081, 5, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AYwOz8od', '8459566'), + (1082, 5, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AYwOz8od', '8459567'), + (1083, 5, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AYwOz8od', '8461032'), + (1084, 5, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AYwOz8od', '8477877'), + (1085, 5, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AYwOz8od', '8485688'), + (1086, 5, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AYwOz8od', '8490587'), + (1087, 5, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AYwOz8od', '8493552'), + (1088, 5, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AYwOz8od', '8493553'), + (1089, 5, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AYwOz8od', '8493554'), + (1090, 5, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AYwOz8od', '8493555'), + (1091, 5, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AYwOz8od', '8493556'), + (1092, 5, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AYwOz8od', '8493557'), + (1093, 5, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AYwOz8od', '8493558'), + (1094, 5, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AYwOz8od', '8493559'), + (1095, 5, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AYwOz8od', '8493560'), + (1096, 5, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'AYwOz8od', '8493561'), + (1097, 5, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AYwOz8od', '8493572'), + (1098, 5, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AYwOz8od', '8540725'), + (1099, 5, 3289, 'attending', '2025-10-21 20:17:02', '2025-12-17 19:46:14', 'AYwOz8od', '8542939'), + (1100, 5, 3295, 'attending', '2025-10-30 16:49:43', '2025-12-17 19:46:14', 'AYwOz8od', '8547541'), + (1101, 5, 3300, 'not_attending', '2025-11-08 17:28:56', '2025-12-17 19:46:14', 'AYwOz8od', '8549145'), + (1102, 5, 3302, 'not_attending', '2025-11-01 19:30:44', '2025-12-17 19:46:14', 'AYwOz8od', '8550022'), + (1103, 5, 3304, 'attending', '2025-11-18 06:57:45', '2025-12-17 19:46:14', 'AYwOz8od', '8550024'), + (1104, 5, 3305, 'attending', '2025-12-06 01:33:17', '2025-12-17 19:46:11', 'AYwOz8od', '8550025'), + (1105, 5, 3306, 'attending', '2025-12-13 17:50:22', '2025-12-17 19:46:11', 'AYwOz8od', '8550026'), + (1106, 5, 3307, 'attending', '2025-12-14 05:10:15', '2025-12-19 06:40:58', 'AYwOz8od', '8550027'), + (1107, 5, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AYwOz8od', '8555421'), + (1108, 5, 3346, 'not_attending', '2025-12-31 01:43:20', '2026-01-02 22:54:46', NULL, NULL), + (1109, 6, 246, 'not_attending', '2020-12-12 04:38:43', '2025-12-17 19:47:55', 'ndaRDaKm', '3149477'), + (1110, 6, 258, 'attending', '2021-06-01 22:43:16', '2025-12-17 19:47:47', 'ndaRDaKm', '3149489'), + (1111, 6, 409, 'not_attending', '2020-12-11 01:07:33', '2025-12-17 19:47:54', 'ndaRDaKm', '3236467'), + (1112, 6, 429, 'attending', '2020-12-06 17:17:04', '2025-12-17 19:47:54', 'ndaRDaKm', '3250523'), + (1113, 6, 493, 'not_attending', '2020-12-04 15:43:42', '2025-12-17 19:47:54', 'ndaRDaKm', '3313856'), + (1114, 6, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaRDaKm', '3314964'), + (1115, 6, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ndaRDaKm', '3323365'), + (1116, 6, 507, 'not_attending', '2020-12-17 23:33:22', '2025-12-17 19:47:48', 'ndaRDaKm', '3324148'), + (1117, 6, 513, 'attending', '2020-12-19 07:36:09', '2025-12-17 19:47:55', 'ndaRDaKm', '3329383'), + (1118, 6, 517, 'attending', '2021-01-07 05:54:01', '2025-12-17 19:47:48', 'ndaRDaKm', '3337137'), + (1119, 6, 522, 'attending', '2020-12-17 23:33:18', '2025-12-17 19:47:55', 'ndaRDaKm', '3342836'), + (1120, 6, 526, 'attending', '2020-12-29 16:53:40', '2025-12-17 19:47:48', 'ndaRDaKm', '3351539'), + (1121, 6, 529, 'attending', '2021-01-02 22:30:37', '2025-12-17 19:47:48', 'ndaRDaKm', '3364568'), + (1122, 6, 532, 'attending', '2021-01-05 22:20:50', '2025-12-17 19:47:48', 'ndaRDaKm', '3381412'), + (1123, 6, 534, 'attending', '2021-01-09 21:36:16', '2025-12-17 19:47:48', 'ndaRDaKm', '3384157'), + (1124, 6, 535, 'attending', '2021-01-05 22:19:51', '2025-12-17 19:47:48', 'ndaRDaKm', '3384729'), + (1125, 6, 536, 'attending', '2021-01-06 03:07:14', '2025-12-17 19:47:48', 'ndaRDaKm', '3386848'), + (1126, 6, 538, 'attending', '2021-01-10 18:16:51', '2025-12-17 19:47:48', 'ndaRDaKm', '3388151'), + (1127, 6, 540, 'attending', '2021-01-07 01:57:18', '2025-12-17 19:47:48', 'ndaRDaKm', '3389527'), + (1128, 6, 542, 'attending', '2021-01-10 18:17:20', '2025-12-17 19:47:48', 'ndaRDaKm', '3395013'), + (1129, 6, 543, 'attending', '2021-01-12 03:36:36', '2025-12-17 19:47:48', 'ndaRDaKm', '3396499'), + (1130, 6, 547, 'not_attending', '2021-01-23 20:10:47', '2025-12-17 19:47:49', 'ndaRDaKm', '3396504'), + (1131, 6, 548, 'attending', '2021-01-13 02:47:41', '2025-12-17 19:47:48', 'ndaRDaKm', '3403650'), + (1132, 6, 549, 'attending', '2021-01-16 17:40:36', '2025-12-17 19:47:48', 'ndaRDaKm', '3406988'), + (1133, 6, 550, 'not_attending', '2021-01-17 22:41:35', '2025-12-17 19:47:48', 'ndaRDaKm', '3407018'), + (1134, 6, 554, 'attending', '2021-01-21 00:57:46', '2025-12-17 19:47:49', 'ndaRDaKm', '3408338'), + (1135, 6, 555, 'attending', '2021-01-18 20:40:51', '2025-12-17 19:47:49', 'ndaRDaKm', '3416576'), + (1136, 6, 557, 'not_attending', '2021-01-21 00:57:52', '2025-12-17 19:47:49', 'ndaRDaKm', '3418748'), + (1137, 6, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'ndaRDaKm', '3418925'), + (1138, 6, 559, 'not_attending', '2021-01-29 18:28:22', '2025-12-17 19:47:49', 'ndaRDaKm', '3421439'), + (1139, 6, 561, 'not_attending', '2021-01-23 20:10:40', '2025-12-17 19:47:49', 'ndaRDaKm', '3421916'), + (1140, 6, 562, 'attending', '2021-01-23 17:58:19', '2025-12-17 19:47:49', 'ndaRDaKm', '3424911'), + (1141, 6, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'ndaRDaKm', '3426074'), + (1142, 6, 567, 'not_attending', '2021-01-30 18:43:15', '2025-12-17 19:47:50', 'ndaRDaKm', '3428895'), + (1143, 6, 568, 'attending', '2021-01-26 04:24:33', '2025-12-17 19:47:50', 'ndaRDaKm', '3430267'), + (1144, 6, 569, 'attending', '2021-01-27 22:09:44', '2025-12-17 19:47:49', 'ndaRDaKm', '3432673'), + (1145, 6, 570, 'not_attending', '2021-02-01 16:17:27', '2025-12-17 19:47:50', 'ndaRDaKm', '3435538'), + (1146, 6, 571, 'attending', '2021-02-10 01:16:43', '2025-12-17 19:47:50', 'ndaRDaKm', '3435539'), + (1147, 6, 576, 'not_attending', '2021-01-31 00:46:21', '2025-12-17 19:47:50', 'ndaRDaKm', '3438748'), + (1148, 6, 577, 'not_attending', '2021-01-28 18:10:10', '2025-12-17 19:47:49', 'ndaRDaKm', '3439167'), + (1149, 6, 578, 'attending', '2021-02-01 16:18:05', '2025-12-17 19:47:50', 'ndaRDaKm', '3440043'), + (1150, 6, 579, 'attending', '2021-02-03 18:23:18', '2025-12-17 19:47:50', 'ndaRDaKm', '3440978'), + (1151, 6, 580, 'attending', '2021-01-30 00:16:46', '2025-12-17 19:47:50', 'ndaRDaKm', '3444240'), + (1152, 6, 581, 'not_attending', '2021-02-01 22:00:00', '2025-12-17 19:47:50', 'ndaRDaKm', '3445029'), + (1153, 6, 582, 'not_attending', '2021-02-01 22:00:06', '2025-12-17 19:47:50', 'ndaRDaKm', '3445769'), + (1154, 6, 598, 'not_attending', '2021-02-09 19:47:46', '2025-12-17 19:47:50', 'ndaRDaKm', '3468003'), + (1155, 6, 600, 'not_attending', '2021-02-06 03:25:00', '2025-12-17 19:47:50', 'ndaRDaKm', '3468125'), + (1156, 6, 602, 'attending', '2021-02-07 07:20:10', '2025-12-17 19:47:50', 'ndaRDaKm', '3470303'), + (1157, 6, 603, 'attending', '2021-02-07 07:20:14', '2025-12-17 19:47:50', 'ndaRDaKm', '3470304'), + (1158, 6, 604, 'attending', '2021-02-27 19:41:15', '2025-12-17 19:47:50', 'ndaRDaKm', '3470305'), + (1159, 6, 605, 'not_attending', '2021-02-14 18:53:28', '2025-12-17 19:47:50', 'ndaRDaKm', '3470991'), + (1160, 6, 606, 'not_attending', '2021-02-10 01:16:29', '2025-12-17 19:47:50', 'ndaRDaKm', '3470998'), + (1161, 6, 607, 'not_attending', '2021-02-15 20:56:58', '2025-12-17 19:47:50', 'ndaRDaKm', '3471882'), + (1162, 6, 616, 'attending', '2021-02-15 22:29:04', '2025-12-17 19:47:50', 'ndaRDaKm', '3493478'), + (1163, 6, 618, 'attending', '2021-02-19 22:35:58', '2025-12-17 19:47:50', 'ndaRDaKm', '3503991'), + (1164, 6, 621, 'attending', '2021-03-01 02:58:30', '2025-12-17 19:47:51', 'ndaRDaKm', '3517815'), + (1165, 6, 622, 'attending', '2021-03-01 02:58:31', '2025-12-17 19:47:51', 'ndaRDaKm', '3517816'), + (1166, 6, 623, 'not_attending', '2021-02-28 21:50:42', '2025-12-17 19:47:51', 'ndaRDaKm', '3523941'), + (1167, 6, 631, 'not_attending', '2021-03-07 10:18:36', '2025-12-17 19:47:51', 'ndaRDaKm', '3533850'), + (1168, 6, 638, 'not_attending', '2021-04-04 14:24:32', '2025-12-17 19:47:44', 'ndaRDaKm', '3536632'), + (1169, 6, 639, 'not_attending', '2021-03-21 17:59:26', '2025-12-17 19:47:51', 'ndaRDaKm', '3536656'), + (1170, 6, 641, 'attending', '2021-03-06 22:19:30', '2025-12-17 19:47:44', 'ndaRDaKm', '3539916'), + (1171, 6, 642, 'attending', '2021-03-06 22:19:32', '2025-12-17 19:47:44', 'ndaRDaKm', '3539917'), + (1172, 6, 643, 'attending', '2021-04-05 21:55:08', '2025-12-17 19:47:45', 'ndaRDaKm', '3539918'), + (1173, 6, 644, 'attending', '2021-04-05 21:55:12', '2025-12-17 19:47:45', 'ndaRDaKm', '3539919'), + (1174, 6, 645, 'attending', '2021-05-02 03:52:21', '2025-12-17 19:47:46', 'ndaRDaKm', '3539920'), + (1175, 6, 646, 'attending', '2021-05-15 19:21:56', '2025-12-17 19:47:46', 'ndaRDaKm', '3539921'), + (1176, 6, 647, 'attending', '2021-05-22 15:06:30', '2025-12-17 19:47:46', 'ndaRDaKm', '3539922'), + (1177, 6, 648, 'attending', '2021-05-25 17:06:36', '2025-12-17 19:47:47', 'ndaRDaKm', '3539923'), + (1178, 6, 649, 'attending', '2021-03-06 22:19:34', '2025-12-17 19:47:51', 'ndaRDaKm', '3539927'), + (1179, 6, 650, 'attending', '2021-03-27 16:01:28', '2025-12-17 19:47:44', 'ndaRDaKm', '3539928'), + (1180, 6, 651, 'not_attending', '2021-03-10 22:57:06', '2025-12-17 19:47:51', 'ndaRDaKm', '3541045'), + (1181, 6, 657, 'attending', '2021-04-17 21:11:28', '2025-12-17 19:47:45', 'ndaRDaKm', '3547132'), + (1182, 6, 658, 'attending', '2021-06-12 21:27:35', '2025-12-17 19:47:47', 'ndaRDaKm', '3547134'), + (1183, 6, 661, 'attending', '2021-04-03 19:39:47', '2025-12-17 19:47:44', 'ndaRDaKm', '3547137'), + (1184, 6, 662, 'attending', '2021-04-24 21:01:58', '2025-12-17 19:47:45', 'ndaRDaKm', '3547138'), + (1185, 6, 664, 'attending', '2021-09-03 04:09:24', '2025-12-17 19:47:43', 'ndaRDaKm', '3547142'), + (1186, 6, 667, 'attending', '2021-08-28 21:09:59', '2025-12-17 19:47:42', 'ndaRDaKm', '3547145'), + (1187, 6, 669, 'attending', '2021-06-26 18:01:15', '2025-12-17 19:47:38', 'ndaRDaKm', '3547147'), + (1188, 6, 672, 'attending', '2021-05-22 15:06:32', '2025-12-17 19:47:46', 'ndaRDaKm', '3547150'), + (1189, 6, 673, 'attending', '2021-07-03 20:34:29', '2025-12-17 19:47:38', 'ndaRDaKm', '3547151'), + (1190, 6, 674, 'maybe', '2021-08-06 04:50:06', '2025-12-17 19:47:41', 'ndaRDaKm', '3547152'), + (1191, 6, 676, 'attending', '2021-07-24 17:11:08', '2025-12-17 19:47:40', 'ndaRDaKm', '3547154'), + (1192, 6, 685, 'not_attending', '2021-04-12 14:58:31', '2025-12-17 19:47:44', 'ndaRDaKm', '3551564'), + (1193, 6, 687, 'not_attending', '2021-03-11 23:06:06', '2025-12-17 19:47:51', 'ndaRDaKm', '3553405'), + (1194, 6, 691, 'not_attending', '2021-04-19 00:00:25', '2025-12-17 19:47:45', 'ndaRDaKm', '3561928'), + (1195, 6, 698, 'attending', '2021-03-15 14:10:37', '2025-12-17 19:47:44', 'ndaRDaKm', '3571867'), + (1196, 6, 706, 'not_attending', '2021-04-17 21:11:55', '2025-12-17 19:47:45', 'ndaRDaKm', '3582734'), + (1197, 6, 707, 'not_attending', '2021-04-25 21:15:28', '2025-12-17 19:47:46', 'ndaRDaKm', '3583262'), + (1198, 6, 715, 'attending', '2021-03-31 21:37:33', '2025-12-17 19:47:44', 'ndaRDaKm', '3604146'), + (1199, 6, 717, 'attending', '2021-03-26 17:02:34', '2025-12-17 19:47:44', 'ndaRDaKm', '3619523'), + (1200, 6, 718, 'attending', '2021-03-27 21:14:06', '2025-12-17 19:47:44', 'ndaRDaKm', '3626844'), + (1201, 6, 719, 'maybe', '2021-04-08 21:16:15', '2025-12-17 19:47:44', 'ndaRDaKm', '3635405'), + (1202, 6, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ndaRDaKm', '3661369'), + (1203, 6, 725, 'attending', '2021-05-23 18:15:46', '2025-12-17 19:47:47', 'ndaRDaKm', '3661372'), + (1204, 6, 727, 'attending', '2021-06-08 01:05:35', '2025-12-17 19:47:38', 'ndaRDaKm', '3661377'), + (1205, 6, 728, 'attending', '2021-04-14 17:07:22', '2025-12-17 19:47:44', 'ndaRDaKm', '3668073'), + (1206, 6, 731, 'not_attending', '2021-04-07 20:21:46', '2025-12-17 19:47:44', 'ndaRDaKm', '3674262'), + (1207, 6, 732, 'attending', '2021-04-17 21:12:37', '2025-12-17 19:47:45', 'ndaRDaKm', '3674268'), + (1208, 6, 733, 'not_attending', '2021-04-04 14:24:44', '2025-12-17 19:47:44', 'ndaRDaKm', '3675473'), + (1209, 6, 734, 'attending', '2021-04-06 18:00:24', '2025-12-17 19:47:44', 'ndaRDaKm', '3676806'), + (1210, 6, 735, 'not_attending', '2021-04-05 00:36:14', '2025-12-17 19:47:46', 'ndaRDaKm', '3677402'), + (1211, 6, 736, 'not_attending', '2021-04-09 18:01:04', '2025-12-17 19:47:44', 'ndaRDaKm', '3677701'), + (1212, 6, 737, 'not_attending', '2021-04-06 22:24:05', '2025-12-17 19:47:44', 'ndaRDaKm', '3679349'), + (1213, 6, 752, 'attending', '2021-04-11 03:19:06', '2025-12-17 19:47:44', 'ndaRDaKm', '3699422'), + (1214, 6, 753, 'attending', '2021-04-14 17:07:42', '2025-12-17 19:47:45', 'ndaRDaKm', '3701861'), + (1215, 6, 762, 'not_attending', '2021-04-18 03:23:32', '2025-12-17 19:47:45', 'ndaRDaKm', '3719118'), + (1216, 6, 766, 'attending', '2021-05-12 04:35:13', '2025-12-17 19:47:46', 'ndaRDaKm', '3721383'), + (1217, 6, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndaRDaKm', '3730212'), + (1218, 6, 777, 'attending', '2021-04-30 19:54:51', '2025-12-17 19:47:46', 'ndaRDaKm', '3746248'), + (1219, 6, 785, 'not_attending', '2021-05-16 18:05:19', '2025-12-17 19:47:46', 'ndaRDaKm', '3779779'), + (1220, 6, 788, 'attending', '2021-05-07 22:31:06', '2025-12-17 19:47:46', 'ndaRDaKm', '3781975'), + (1221, 6, 789, 'attending', '2021-05-23 23:36:22', '2025-12-17 19:47:47', 'ndaRDaKm', '3785818'), + (1222, 6, 792, 'attending', '2021-05-19 23:17:24', '2025-12-17 19:47:46', 'ndaRDaKm', '3793156'), + (1223, 6, 793, 'attending', '2021-06-02 17:17:02', '2025-12-17 19:47:47', 'ndaRDaKm', '3793537'), + (1224, 6, 794, 'not_attending', '2021-05-25 17:06:24', '2025-12-17 19:47:47', 'ndaRDaKm', '3793538'), + (1225, 6, 805, 'attending', '2021-06-08 01:05:33', '2025-12-17 19:47:47', 'ndaRDaKm', '3804777'), + (1226, 6, 808, 'attending', '2021-05-20 23:05:20', '2025-12-17 19:47:46', 'ndaRDaKm', '3807358'), + (1227, 6, 823, 'attending', '2021-06-05 17:02:27', '2025-12-17 19:47:48', 'ndaRDaKm', '3974109'), + (1228, 6, 827, 'attending', '2021-06-05 17:01:41', '2025-12-17 19:47:47', 'ndaRDaKm', '3975311'), + (1229, 6, 828, 'attending', '2021-06-08 01:05:40', '2025-12-17 19:47:47', 'ndaRDaKm', '3975312'), + (1230, 6, 838, 'not_attending', '2021-06-09 23:31:24', '2025-12-17 19:47:47', 'ndaRDaKm', '3994992'), + (1231, 6, 844, 'attending', '2021-06-10 21:31:09', '2025-12-17 19:47:38', 'ndaRDaKm', '4014338'), + (1232, 6, 857, 'attending', '2021-11-24 03:50:50', '2025-12-17 19:47:37', 'ndaRDaKm', '4015731'), + (1233, 6, 866, 'not_attending', '2021-06-21 21:07:16', '2025-12-17 19:47:38', 'ndaRDaKm', '4020424'), + (1234, 6, 867, 'attending', '2021-06-25 21:12:16', '2025-12-17 19:47:38', 'ndaRDaKm', '4021848'), + (1235, 6, 869, 'attending', '2021-06-26 22:23:29', '2025-12-17 19:47:38', 'ndaRDaKm', '4136744'), + (1236, 6, 870, 'attending', '2021-06-30 21:42:19', '2025-12-17 19:47:39', 'ndaRDaKm', '4136937'), + (1237, 6, 871, 'attending', '2021-07-05 03:59:49', '2025-12-17 19:47:39', 'ndaRDaKm', '4136938'), + (1238, 6, 872, 'attending', '2021-07-21 22:19:28', '2025-12-17 19:47:40', 'ndaRDaKm', '4136947'), + (1239, 6, 874, 'attending', '2021-06-23 17:59:56', '2025-12-17 19:47:38', 'ndaRDaKm', '4139815'), + (1240, 6, 876, 'attending', '2021-06-22 22:42:57', '2025-12-17 19:47:38', 'ndaRDaKm', '4139926'), + (1241, 6, 879, 'attending', '2021-06-28 14:14:36', '2025-12-17 19:47:38', 'ndaRDaKm', '4147806'), + (1242, 6, 880, 'attending', '2021-06-19 14:22:50', '2025-12-17 19:47:48', 'ndaRDaKm', '4205383'), + (1243, 6, 882, 'not_attending', '2021-06-25 21:45:25', '2025-12-17 19:47:38', 'ndaRDaKm', '4207630'), + (1244, 6, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndaRDaKm', '4210314'), + (1245, 6, 887, 'attending', '2021-07-07 17:24:43', '2025-12-17 19:47:39', 'ndaRDaKm', '4225444'), + (1246, 6, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndaRDaKm', '4239259'), + (1247, 6, 900, 'attending', '2021-07-18 19:28:02', '2025-12-17 19:47:40', 'ndaRDaKm', '4240316'), + (1248, 6, 901, 'attending', '2021-07-22 16:42:24', '2025-12-17 19:47:40', 'ndaRDaKm', '4240317'), + (1249, 6, 902, 'maybe', '2021-08-05 13:01:22', '2025-12-17 19:47:41', 'ndaRDaKm', '4240318'), + (1250, 6, 903, 'not_attending', '2021-08-08 17:38:45', '2025-12-17 19:47:42', 'ndaRDaKm', '4240320'), + (1251, 6, 905, 'attending', '2021-07-04 15:32:44', '2025-12-17 19:47:39', 'ndaRDaKm', '4250163'), + (1252, 6, 909, 'not_attending', '2021-07-10 19:43:28', '2025-12-17 19:47:39', 'ndaRDaKm', '4258187'), + (1253, 6, 913, 'attending', '2021-07-12 01:39:51', '2025-12-17 19:47:39', 'ndaRDaKm', '4273765'), + (1254, 6, 914, 'attending', '2021-07-19 17:23:06', '2025-12-17 19:47:39', 'ndaRDaKm', '4273767'), + (1255, 6, 915, 'attending', '2021-07-19 17:23:02', '2025-12-17 19:47:39', 'ndaRDaKm', '4273770'), + (1256, 6, 916, 'attending', '2021-07-20 22:04:36', '2025-12-17 19:47:40', 'ndaRDaKm', '4273772'), + (1257, 6, 917, 'not_attending', '2021-07-14 19:28:31', '2025-12-17 19:47:39', 'ndaRDaKm', '4274481'), + (1258, 6, 919, 'attending', '2021-07-14 04:36:02', '2025-12-17 19:47:39', 'ndaRDaKm', '4275957'), + (1259, 6, 920, 'attending', '2021-07-17 20:40:13', '2025-12-17 19:47:40', 'ndaRDaKm', '4277819'), + (1260, 6, 925, 'not_attending', '2021-08-16 21:27:31', '2025-12-17 19:47:42', 'ndaRDaKm', '4297210'), + (1261, 6, 926, 'not_attending', '2021-08-18 18:04:15', '2025-12-17 19:47:42', 'ndaRDaKm', '4297211'), + (1262, 6, 929, 'not_attending', '2021-08-02 18:10:06', '2025-12-17 19:47:41', 'ndaRDaKm', '4297223'), + (1263, 6, 930, 'attending', '2021-08-08 13:49:56', '2025-12-17 19:47:41', 'ndaRDaKm', '4300787'), + (1264, 6, 931, 'attending', '2021-07-27 22:46:41', '2025-12-17 19:47:40', 'ndaRDaKm', '4301535'), + (1265, 6, 933, 'not_attending', '2021-07-28 23:20:03', '2025-12-17 19:47:40', 'ndaRDaKm', '4301723'), + (1266, 6, 934, 'attending', '2021-08-04 04:08:23', '2025-12-17 19:47:40', 'ndaRDaKm', '4302093'), + (1267, 6, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndaRDaKm', '4304151'), + (1268, 6, 937, 'not_attending', '2021-07-27 22:46:38', '2025-12-17 19:47:40', 'ndaRDaKm', '4306596'), + (1269, 6, 938, 'attending', '2021-07-25 23:51:03', '2025-12-17 19:47:40', 'ndaRDaKm', '4306597'), + (1270, 6, 940, 'not_attending', '2021-07-28 15:55:26', '2025-12-17 19:47:40', 'ndaRDaKm', '4309049'), + (1271, 6, 942, 'attending', '2021-07-27 22:48:37', '2025-12-17 19:47:40', 'ndaRDaKm', '4310297'), + (1272, 6, 952, 'attending', '2021-07-28 21:12:19', '2025-12-17 19:47:41', 'ndaRDaKm', '4318286'), + (1273, 6, 957, 'attending', '2021-08-05 13:01:34', '2025-12-17 19:47:41', 'ndaRDaKm', '4338834'), + (1274, 6, 958, 'attending', '2021-08-06 21:48:08', '2025-12-17 19:47:41', 'ndaRDaKm', '4342996'), + (1275, 6, 961, 'not_attending', '2021-08-08 17:38:53', '2025-12-17 19:47:42', 'ndaRDaKm', '4345519'), + (1276, 6, 962, 'attending', '2021-08-08 17:40:16', '2025-12-17 19:47:41', 'ndaRDaKm', '4346305'), + (1277, 6, 963, 'not_attending', '2021-08-16 22:47:52', '2025-12-17 19:47:42', 'ndaRDaKm', '4353159'), + (1278, 6, 967, 'attending', '2021-08-12 18:57:20', '2025-12-17 19:47:42', 'ndaRDaKm', '4356164'), + (1279, 6, 971, 'not_attending', '2021-09-08 23:07:29', '2025-12-17 19:47:43', 'ndaRDaKm', '4356801'), + (1280, 6, 972, 'attending', '2021-08-13 23:37:43', '2025-12-17 19:47:42', 'ndaRDaKm', '4358025'), + (1281, 6, 973, 'maybe', '2021-08-21 17:42:35', '2025-12-17 19:47:42', 'ndaRDaKm', '4366186'), + (1282, 6, 974, 'attending', '2021-08-23 15:40:23', '2025-12-17 19:47:42', 'ndaRDaKm', '4366187'), + (1283, 6, 977, 'attending', '2021-08-19 16:08:29', '2025-12-17 19:47:42', 'ndaRDaKm', '4378479'), + (1284, 6, 978, 'not_attending', '2021-08-21 21:52:47', '2025-12-17 19:47:42', 'ndaRDaKm', '4378509'), + (1285, 6, 987, 'not_attending', '2021-09-01 16:54:30', '2025-12-17 19:47:43', 'ndaRDaKm', '4402634'), + (1286, 6, 988, 'attending', '2021-08-26 13:57:48', '2025-12-17 19:47:42', 'ndaRDaKm', '4402823'), + (1287, 6, 990, 'not_attending', '2021-08-30 23:48:22', '2025-12-17 19:47:43', 'ndaRDaKm', '4420735'), + (1288, 6, 991, 'attending', '2021-08-28 22:27:11', '2025-12-17 19:47:43', 'ndaRDaKm', '4420738'), + (1289, 6, 992, 'attending', '2021-08-28 22:28:44', '2025-12-17 19:47:33', 'ndaRDaKm', '4420739'), + (1290, 6, 993, 'attending', '2021-08-28 22:28:46', '2025-12-17 19:47:34', 'ndaRDaKm', '4420741'), + (1291, 6, 994, 'attending', '2021-09-28 22:55:16', '2025-12-17 19:47:34', 'ndaRDaKm', '4420742'), + (1292, 6, 995, 'not_attending', '2021-08-31 15:41:27', '2025-12-17 19:47:34', 'ndaRDaKm', '4420744'), + (1293, 6, 996, 'not_attending', '2021-10-16 04:45:47', '2025-12-17 19:47:35', 'ndaRDaKm', '4420747'), + (1294, 6, 997, 'not_attending', '2021-10-16 15:05:11', '2025-12-17 19:47:35', 'ndaRDaKm', '4420748'), + (1295, 6, 998, 'attending', '2021-08-28 22:28:53', '2025-12-17 19:47:36', 'ndaRDaKm', '4420749'), + (1296, 6, 999, 'attending', '2021-08-29 03:07:44', '2025-12-17 19:47:43', 'ndaRDaKm', '4421150'), + (1297, 6, 1016, 'attending', '2021-09-04 17:37:29', '2025-12-17 19:47:43', 'ndaRDaKm', '4441271'), + (1298, 6, 1021, 'not_attending', '2021-09-20 21:16:57', '2025-12-17 19:47:34', 'ndaRDaKm', '4451803'), + (1299, 6, 1022, 'attending', '2021-09-13 02:18:20', '2025-12-17 19:47:43', 'ndaRDaKm', '4458628'), + (1300, 6, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndaRDaKm', '4461883'), + (1301, 6, 1026, 'not_attending', '2021-09-13 02:30:47', '2025-12-17 19:47:43', 'ndaRDaKm', '4472951'), + (1302, 6, 1032, 'attending', '2021-09-13 04:07:54', '2025-12-17 19:47:34', 'ndaRDaKm', '4473825'), + (1303, 6, 1033, 'attending', '2021-09-16 15:50:07', '2025-12-17 19:47:43', 'ndaRDaKm', '4486006'), + (1304, 6, 1036, 'not_attending', '2021-09-22 22:45:26', '2025-12-17 19:47:34', 'ndaRDaKm', '4493166'), + (1305, 6, 1041, 'attending', '2021-12-02 16:22:45', '2025-12-17 19:47:37', 'ndaRDaKm', '4496606'), + (1306, 6, 1042, 'attending', '2021-11-25 21:27:26', '2025-12-17 19:47:37', 'ndaRDaKm', '4496607'), + (1307, 6, 1043, 'not_attending', '2021-10-18 23:15:49', '2025-12-17 19:47:35', 'ndaRDaKm', '4496608'), + (1308, 6, 1045, 'attending', '2021-10-18 23:15:55', '2025-12-17 19:47:36', 'ndaRDaKm', '4496610'), + (1309, 6, 1046, 'not_attending', '2021-10-16 04:45:36', '2025-12-17 19:47:35', 'ndaRDaKm', '4496611'), + (1310, 6, 1049, 'attending', '2022-01-21 22:58:25', '2025-12-17 19:47:32', 'ndaRDaKm', '4496614'), + (1311, 6, 1051, 'attending', '2022-01-30 02:37:14', '2025-12-17 19:47:32', 'ndaRDaKm', '4496616'), + (1312, 6, 1053, 'attending', '2022-02-13 17:29:24', '2025-12-17 19:47:32', 'ndaRDaKm', '4496618'), + (1313, 6, 1055, 'attending', '2022-01-01 03:38:52', '2025-12-17 19:47:31', 'ndaRDaKm', '4496621'), + (1314, 6, 1058, 'attending', '2022-02-26 23:58:47', '2025-12-17 19:47:33', 'ndaRDaKm', '4496625'), + (1315, 6, 1059, 'attending', '2022-03-12 22:04:02', '2025-12-17 19:47:33', 'ndaRDaKm', '4496626'), + (1316, 6, 1060, 'maybe', '2022-03-24 16:23:30', '2025-12-17 19:47:25', 'ndaRDaKm', '4496627'), + (1317, 6, 1061, 'attending', '2022-02-09 02:29:16', '2025-12-17 19:47:32', 'ndaRDaKm', '4496628'), + (1318, 6, 1062, 'attending', '2022-03-05 22:21:18', '2025-12-17 19:47:33', 'ndaRDaKm', '4496629'), + (1319, 6, 1063, 'attending', '2021-09-20 18:39:28', '2025-12-17 19:47:34', 'ndaRDaKm', '4496630'), + (1320, 6, 1064, 'not_attending', '2021-09-21 03:37:56', '2025-12-17 19:47:34', 'ndaRDaKm', '4499526'), + (1321, 6, 1066, 'attending', '2021-09-21 17:11:14', '2025-12-17 19:47:34', 'ndaRDaKm', '4506039'), + (1322, 6, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndaRDaKm', '4508342'), + (1323, 6, 1068, 'maybe', '2021-09-30 13:39:26', '2025-12-17 19:47:34', 'ndaRDaKm', '4511471'), + (1324, 6, 1072, 'maybe', '2021-10-04 01:19:47', '2025-12-17 19:47:34', 'ndaRDaKm', '4516287'), + (1325, 6, 1074, 'maybe', '2021-09-29 00:42:52', '2025-12-17 19:47:34', 'ndaRDaKm', '4528953'), + (1326, 6, 1075, 'attending', '2021-10-02 20:03:50', '2025-12-17 19:47:34', 'ndaRDaKm', '4536351'), + (1327, 6, 1077, 'not_attending', '2021-10-12 14:14:01', '2025-12-17 19:47:34', 'ndaRDaKm', '4540903'), + (1328, 6, 1079, 'not_attending', '2021-10-20 21:25:35', '2025-12-17 19:47:35', 'ndaRDaKm', '4563823'), + (1329, 6, 1082, 'maybe', '2021-10-12 14:07:35', '2025-12-17 19:47:35', 'ndaRDaKm', '4566762'), + (1330, 6, 1086, 'not_attending', '2021-10-14 06:57:15', '2025-12-17 19:47:35', 'ndaRDaKm', '4568602'), + (1331, 6, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndaRDaKm', '4572153'), + (1332, 6, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ndaRDaKm', '4585962'), + (1333, 6, 1094, 'attending', '2021-10-31 18:33:32', '2025-12-17 19:47:36', 'ndaRDaKm', '4587337'), + (1334, 6, 1095, 'not_attending', '2021-10-28 03:35:22', '2025-12-17 19:47:36', 'ndaRDaKm', '4596356'), + (1335, 6, 1097, 'not_attending', '2021-11-02 03:50:01', '2025-12-17 19:47:36', 'ndaRDaKm', '4598860'), + (1336, 6, 1098, 'maybe', '2021-11-09 00:03:43', '2025-12-17 19:47:36', 'ndaRDaKm', '4598861'), + (1337, 6, 1099, 'not_attending', '2021-11-06 22:45:32', '2025-12-17 19:47:36', 'ndaRDaKm', '4602797'), + (1338, 6, 1108, 'attending', '2021-11-17 19:59:18', '2025-12-17 19:47:37', 'ndaRDaKm', '4632276'), + (1339, 6, 1114, 'attending', '2021-11-12 00:55:17', '2025-12-17 19:47:36', 'ndaRDaKm', '4637896'), + (1340, 6, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndaRDaKm', '4642994'), + (1341, 6, 1117, 'attending', '2021-12-08 23:01:00', '2025-12-17 19:47:37', 'ndaRDaKm', '4642995'), + (1342, 6, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ndaRDaKm', '4642996'), + (1343, 6, 1119, 'maybe', '2022-01-01 03:43:40', '2025-12-17 19:47:31', 'ndaRDaKm', '4642997'), + (1344, 6, 1126, 'attending', '2021-12-11 22:51:13', '2025-12-17 19:47:38', 'ndaRDaKm', '4645687'), + (1345, 6, 1127, 'not_attending', '2021-12-12 15:09:36', '2025-12-17 19:47:38', 'ndaRDaKm', '4645698'), + (1346, 6, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndaRDaKm', '4645704'), + (1347, 6, 1129, 'attending', '2021-11-27 23:46:03', '2025-12-17 19:47:37', 'ndaRDaKm', '4645705'), + (1348, 6, 1130, 'attending', '2021-12-02 16:22:41', '2025-12-17 19:47:37', 'ndaRDaKm', '4658824'), + (1349, 6, 1131, 'attending', '2021-12-18 23:16:48', '2025-12-17 19:47:31', 'ndaRDaKm', '4658825'), + (1350, 6, 1134, 'attending', '2021-11-24 07:01:52', '2025-12-17 19:47:37', 'ndaRDaKm', '4668385'), + (1351, 6, 1135, 'not_attending', '2021-11-26 21:43:52', '2025-12-17 19:47:37', 'ndaRDaKm', '4670469'), + (1352, 6, 1143, 'attending', '2021-12-02 00:52:42', '2025-12-17 19:47:37', 'ndaRDaKm', '4683667'), + (1353, 6, 1149, 'not_attending', '2021-12-09 20:24:55', '2025-12-17 19:47:38', 'ndaRDaKm', '4694407'), + (1354, 6, 1151, 'attending', '2021-12-28 05:08:31', '2025-12-17 19:47:31', 'ndaRDaKm', '4708704'), + (1355, 6, 1152, 'attending', '2022-01-06 20:55:06', '2025-12-17 19:47:31', 'ndaRDaKm', '4708705'), + (1356, 6, 1153, 'maybe', '2022-01-19 23:00:29', '2025-12-17 19:47:32', 'ndaRDaKm', '4708707'), + (1357, 6, 1155, 'attending', '2021-12-20 23:32:18', '2025-12-17 19:47:31', 'ndaRDaKm', '4715119'), + (1358, 6, 1163, 'attending', '2021-12-28 05:08:48', '2025-12-17 19:47:31', 'ndaRDaKm', '4724206'), + (1359, 6, 1164, 'attending', '2021-12-27 23:24:29', '2025-12-17 19:47:31', 'ndaRDaKm', '4724208'), + (1360, 6, 1165, 'attending', '2021-12-27 23:24:30', '2025-12-17 19:47:31', 'ndaRDaKm', '4724210'), + (1361, 6, 1173, 'attending', '2022-01-08 22:52:14', '2025-12-17 19:47:31', 'ndaRDaKm', '4736495'), + (1362, 6, 1174, 'not_attending', '2022-01-11 21:20:30', '2025-12-17 19:47:31', 'ndaRDaKm', '4736496'), + (1363, 6, 1175, 'attending', '2022-01-22 22:51:16', '2025-12-17 19:47:32', 'ndaRDaKm', '4736497'), + (1364, 6, 1176, 'attending', '2022-01-06 20:54:55', '2025-12-17 19:47:32', 'ndaRDaKm', '4736498'), + (1365, 6, 1177, 'attending', '2022-02-09 02:29:13', '2025-12-17 19:47:32', 'ndaRDaKm', '4736499'), + (1366, 6, 1178, 'not_attending', '2022-01-30 00:29:34', '2025-12-17 19:47:32', 'ndaRDaKm', '4736500'), + (1367, 6, 1179, 'attending', '2022-02-13 17:29:22', '2025-12-17 19:47:32', 'ndaRDaKm', '4736501'), + (1368, 6, 1180, 'attending', '2022-02-26 22:16:31', '2025-12-17 19:47:33', 'ndaRDaKm', '4736502'), + (1369, 6, 1181, 'attending', '2022-03-05 22:21:16', '2025-12-17 19:47:33', 'ndaRDaKm', '4736503'), + (1370, 6, 1182, 'attending', '2022-03-12 22:04:00', '2025-12-17 19:47:33', 'ndaRDaKm', '4736504'), + (1371, 6, 1184, 'attending', '2022-01-06 04:18:36', '2025-12-17 19:47:31', 'ndaRDaKm', '4742350'), + (1372, 6, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndaRDaKm', '4746789'), + (1373, 6, 1188, 'maybe', '2022-01-16 20:18:40', '2025-12-17 19:47:32', 'ndaRDaKm', '4753929'), + (1374, 6, 1222, 'not_attending', '2022-02-17 00:45:14', '2025-12-17 19:47:32', 'ndaRDaKm', '5015628'), + (1375, 6, 1224, 'attending', '2022-01-30 20:35:33', '2025-12-17 19:47:32', 'ndaRDaKm', '5016682'), + (1376, 6, 1228, 'maybe', '2022-02-08 00:11:39', '2025-12-17 19:47:32', 'ndaRDaKm', '5028238'), + (1377, 6, 1232, 'not_attending', '2022-02-09 02:28:54', '2025-12-17 19:47:32', 'ndaRDaKm', '5038850'), + (1378, 6, 1236, 'attending', '2022-02-14 08:46:13', '2025-12-17 19:47:32', 'ndaRDaKm', '5045826'), + (1379, 6, 1237, 'attending', '2022-02-15 20:33:30', '2025-12-17 19:47:32', 'ndaRDaKm', '5050641'), + (1380, 6, 1238, 'not_attending', '2022-02-21 01:44:29', '2025-12-17 19:47:32', 'ndaRDaKm', '5052236'), + (1381, 6, 1239, 'not_attending', '2022-03-02 22:02:19', '2025-12-17 19:47:33', 'ndaRDaKm', '5052238'), + (1382, 6, 1242, 'maybe', '2022-03-29 23:52:01', '2025-12-17 19:47:25', 'ndaRDaKm', '5052241'), + (1383, 6, 1250, 'attending', '2022-02-27 00:08:19', '2025-12-17 19:47:33', 'ndaRDaKm', '5069735'), + (1384, 6, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndaRDaKm', '5132533'), + (1385, 6, 1260, 'attending', '2022-03-01 20:17:27', '2025-12-17 19:47:33', 'ndaRDaKm', '5142082'), + (1386, 6, 1264, 'not_attending', '2022-03-22 15:46:25', '2025-12-17 19:47:25', 'ndaRDaKm', '5160281'), + (1387, 6, 1265, 'not_attending', '2022-03-12 03:27:45', '2025-12-17 19:47:33', 'ndaRDaKm', '5160862'), + (1388, 6, 1272, 'not_attending', '2022-03-15 20:47:25', '2025-12-17 19:47:25', 'ndaRDaKm', '5186582'), + (1389, 6, 1273, 'maybe', '2022-03-24 16:23:28', '2025-12-17 19:47:25', 'ndaRDaKm', '5186583'), + (1390, 6, 1274, 'not_attending', '2022-03-15 20:49:04', '2025-12-17 19:47:26', 'ndaRDaKm', '5186585'), + (1391, 6, 1280, 'not_attending', '2022-03-18 00:36:29', '2025-12-17 19:47:25', 'ndaRDaKm', '5189749'), + (1392, 6, 1281, 'maybe', '2022-04-08 18:25:24', '2025-12-17 19:47:27', 'ndaRDaKm', '5190437'), + (1393, 6, 1284, 'attending', '2022-04-16 19:28:49', '2025-12-17 19:47:27', 'ndaRDaKm', '5195095'), + (1394, 6, 1291, 'not_attending', '2022-03-25 22:03:45', '2025-12-17 19:47:25', 'ndaRDaKm', '5200458'), + (1395, 6, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndaRDaKm', '5215989'), + (1396, 6, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ndaRDaKm', '5223686'), + (1397, 6, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ndaRDaKm', '5227432'), + (1398, 6, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'ndaRDaKm', '5231461'), + (1399, 6, 1315, 'attending', '2022-04-10 20:46:15', '2025-12-17 19:47:27', 'ndaRDaKm', '5237522'), + (1400, 6, 1345, 'attending', '2022-04-23 20:30:43', '2025-12-17 19:47:27', 'ndaRDaKm', '5247466'), + (1401, 6, 1346, 'attending', '2022-04-21 19:01:29', '2025-12-17 19:47:27', 'ndaRDaKm', '5247467'), + (1402, 6, 1362, 'maybe', '2022-04-25 19:12:07', '2025-12-17 19:47:28', 'ndaRDaKm', '5260800'), + (1403, 6, 1372, 'attending', '2022-05-04 22:31:08', '2025-12-17 19:47:28', 'ndaRDaKm', '5264352'), + (1404, 6, 1374, 'attending', '2022-05-02 01:58:33', '2025-12-17 19:47:28', 'ndaRDaKm', '5269930'), + (1405, 6, 1378, 'attending', '2022-05-02 02:27:30', '2025-12-17 19:47:28', 'ndaRDaKm', '5271448'), + (1406, 6, 1379, 'attending', '2022-05-06 17:04:51', '2025-12-17 19:47:29', 'ndaRDaKm', '5271449'), + (1407, 6, 1380, 'not_attending', '2022-05-22 23:45:34', '2025-12-17 19:47:30', 'ndaRDaKm', '5271450'), + (1408, 6, 1383, 'attending', '2022-05-13 22:07:11', '2025-12-17 19:47:28', 'ndaRDaKm', '5276469'), + (1409, 6, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ndaRDaKm', '5278159'), + (1410, 6, 1401, 'maybe', '2022-05-18 22:07:37', '2025-12-17 19:47:29', 'ndaRDaKm', '5286295'), + (1411, 6, 1403, 'attending', '2022-05-12 18:00:09', '2025-12-17 19:47:29', 'ndaRDaKm', '5288052'), + (1412, 6, 1407, 'attending', '2022-05-25 21:10:08', '2025-12-17 19:47:30', 'ndaRDaKm', '5363695'), + (1413, 6, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ndaRDaKm', '5365960'), + (1414, 6, 1410, 'not_attending', '2022-05-17 02:30:18', '2025-12-17 19:47:29', 'ndaRDaKm', '5367530'), + (1415, 6, 1411, 'not_attending', '2022-05-19 22:13:05', '2025-12-17 19:47:29', 'ndaRDaKm', '5367531'), + (1416, 6, 1412, 'attending', '2022-05-17 02:23:11', '2025-12-17 19:47:29', 'ndaRDaKm', '5367532'), + (1417, 6, 1413, 'not_attending', '2022-05-20 20:46:21', '2025-12-17 19:47:29', 'ndaRDaKm', '5367533'), + (1418, 6, 1414, 'maybe', '2022-05-21 01:09:21', '2025-12-17 19:47:29', 'ndaRDaKm', '5368445'), + (1419, 6, 1415, 'attending', '2022-05-25 21:10:04', '2025-12-17 19:47:30', 'ndaRDaKm', '5368973'), + (1420, 6, 1419, 'maybe', '2022-06-08 18:38:34', '2025-12-17 19:47:30', 'ndaRDaKm', '5373081'), + (1421, 6, 1427, 'maybe', '2022-05-25 22:29:33', '2025-12-17 19:47:30', 'ndaRDaKm', '5376074'), + (1422, 6, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ndaRDaKm', '5378247'), + (1423, 6, 1431, 'attending', '2022-06-03 03:43:21', '2025-12-17 19:47:30', 'ndaRDaKm', '5389605'), + (1424, 6, 1442, 'attending', '2022-06-03 03:43:18', '2025-12-17 19:47:17', 'ndaRDaKm', '5397265'), + (1425, 6, 1444, 'attending', '2022-06-11 19:45:15', '2025-12-17 19:47:30', 'ndaRDaKm', '5397614'), + (1426, 6, 1445, 'attending', '2022-06-18 18:54:37', '2025-12-17 19:47:17', 'ndaRDaKm', '5397615'), + (1427, 6, 1451, 'attending', '2022-06-10 03:02:54', '2025-12-17 19:47:17', 'ndaRDaKm', '5403967'), + (1428, 6, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ndaRDaKm', '5404786'), + (1429, 6, 1460, 'attending', '2022-06-13 15:15:57', '2025-12-17 19:47:31', 'ndaRDaKm', '5404817'), + (1430, 6, 1462, 'not_attending', '2022-06-10 21:54:05', '2025-12-17 19:47:17', 'ndaRDaKm', '5405203'), + (1431, 6, 1466, 'attending', '2022-06-12 21:31:31', '2025-12-17 19:47:17', 'ndaRDaKm', '5406427'), + (1432, 6, 1477, 'attending', '2022-06-15 17:39:42', '2025-12-17 19:47:17', 'ndaRDaKm', '5408766'), + (1433, 6, 1478, 'not_attending', '2022-06-15 18:07:12', '2025-12-17 19:47:19', 'ndaRDaKm', '5408794'), + (1434, 6, 1480, 'attending', '2022-06-26 21:38:48', '2025-12-17 19:47:19', 'ndaRDaKm', '5411699'), + (1435, 6, 1481, 'attending', '2022-06-18 22:18:05', '2025-12-17 19:47:17', 'ndaRDaKm', '5412237'), + (1436, 6, 1482, 'not_attending', '2022-06-20 02:30:50', '2025-12-17 19:47:19', 'ndaRDaKm', '5412550'), + (1437, 6, 1484, 'maybe', '2022-06-21 00:50:51', '2025-12-17 19:47:17', 'ndaRDaKm', '5415046'), + (1438, 6, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ndaRDaKm', '5422086'), + (1439, 6, 1498, 'not_attending', '2022-07-03 00:19:58', '2025-12-17 19:47:19', 'ndaRDaKm', '5422406'), + (1440, 6, 1502, 'not_attending', '2022-07-09 00:06:55', '2025-12-17 19:47:19', 'ndaRDaKm', '5424565'), + (1441, 6, 1504, 'attending', '2022-07-09 03:11:57', '2025-12-17 19:47:19', 'ndaRDaKm', '5426882'), + (1442, 6, 1505, 'not_attending', '2022-07-05 04:08:55', '2025-12-17 19:47:19', 'ndaRDaKm', '5427083'), + (1443, 6, 1508, 'maybe', '2022-07-13 06:10:41', '2025-12-17 19:47:19', 'ndaRDaKm', '5433453'), + (1444, 6, 1511, 'attending', '2022-07-09 18:47:51', '2025-12-17 19:47:19', 'ndaRDaKm', '5437733'), + (1445, 6, 1513, 'attending', '2022-07-09 18:47:44', '2025-12-17 19:47:19', 'ndaRDaKm', '5441125'), + (1446, 6, 1514, 'not_attending', '2022-07-09 18:55:51', '2025-12-17 19:47:20', 'ndaRDaKm', '5441126'), + (1447, 6, 1515, 'attending', '2022-07-09 18:55:55', '2025-12-17 19:47:21', 'ndaRDaKm', '5441128'), + (1448, 6, 1516, 'attending', '2022-08-19 19:58:03', '2025-12-17 19:47:23', 'ndaRDaKm', '5441129'), + (1449, 6, 1517, 'attending', '2022-08-27 21:02:42', '2025-12-17 19:47:23', 'ndaRDaKm', '5441130'), + (1450, 6, 1518, 'not_attending', '2022-08-27 03:09:15', '2025-12-17 19:47:24', 'ndaRDaKm', '5441131'), + (1451, 6, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ndaRDaKm', '5441132'), + (1452, 6, 1528, 'attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ndaRDaKm', '5446643'), + (1453, 6, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ndaRDaKm', '5453325'), + (1454, 6, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ndaRDaKm', '5454516'), + (1455, 6, 1544, 'maybe', '2022-09-15 00:33:14', '2025-12-17 19:47:11', 'ndaRDaKm', '5454517'), + (1456, 6, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ndaRDaKm', '5454605'), + (1457, 6, 1550, 'attending', '2022-07-19 20:17:50', '2025-12-17 19:47:20', 'ndaRDaKm', '5454803'), + (1458, 6, 1551, 'attending', '2022-07-19 21:18:30', '2025-12-17 19:47:20', 'ndaRDaKm', '5455037'), + (1459, 6, 1561, 'attending', '2022-08-01 20:37:36', '2025-12-17 19:47:22', 'ndaRDaKm', '5461278'), + (1460, 6, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ndaRDaKm', '5469480'), + (1461, 6, 1565, 'attending', '2022-07-26 02:25:05', '2025-12-17 19:47:21', 'ndaRDaKm', '5471073'), + (1462, 6, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ndaRDaKm', '5474663'), + (1463, 6, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ndaRDaKm', '5482022'), + (1464, 6, 1575, 'maybe', '2022-08-05 04:43:43', '2025-12-17 19:47:23', 'ndaRDaKm', '5482250'), + (1465, 6, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ndaRDaKm', '5482793'), + (1466, 6, 1578, 'attending', '2022-08-04 02:55:38', '2025-12-17 19:47:21', 'ndaRDaKm', '5483073'), + (1467, 6, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ndaRDaKm', '5488912'), + (1468, 6, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ndaRDaKm', '5492192'), + (1469, 6, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ndaRDaKm', '5493139'), + (1470, 6, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ndaRDaKm', '5493200'), + (1471, 6, 1593, 'maybe', '2022-08-13 02:38:50', '2025-12-17 19:47:22', 'ndaRDaKm', '5494043'), + (1472, 6, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ndaRDaKm', '5502188'), + (1473, 6, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndaRDaKm', '5505059'), + (1474, 6, 1615, 'maybe', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ndaRDaKm', '5509055'), + (1475, 6, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndaRDaKm', '5512862'), + (1476, 6, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndaRDaKm', '5513985'), + (1477, 6, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ndaRDaKm', '5519981'), + (1478, 6, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndaRDaKm', '5522550'), + (1479, 6, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndaRDaKm', '5534683'), + (1480, 6, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ndaRDaKm', '5537735'), + (1481, 6, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndaRDaKm', '5540859'), + (1482, 6, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndaRDaKm', '5546619'), + (1483, 6, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ndaRDaKm', '5555245'), + (1484, 6, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndaRDaKm', '5557747'), + (1485, 6, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndaRDaKm', '5560255'), + (1486, 6, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndaRDaKm', '5562906'), + (1487, 6, 1667, 'attending', '2022-09-24 16:02:41', '2025-12-17 19:47:11', 'ndaRDaKm', '5563221'), + (1488, 6, 1668, 'not_attending', '2022-10-01 07:45:46', '2025-12-17 19:47:12', 'ndaRDaKm', '5563222'), + (1489, 6, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndaRDaKm', '5600604'), + (1490, 6, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndaRDaKm', '5605544'), + (1491, 6, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'ndaRDaKm', '5606737'), + (1492, 6, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ndaRDaKm', '5630960'), + (1493, 6, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndaRDaKm', '5630961'), + (1494, 6, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndaRDaKm', '5630962'), + (1495, 6, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndaRDaKm', '5630966'), + (1496, 6, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ndaRDaKm', '5630967'), + (1497, 6, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndaRDaKm', '5630968'), + (1498, 6, 1727, 'not_attending', '2022-11-28 23:18:52', '2025-12-17 19:47:16', 'ndaRDaKm', '5630969'), + (1499, 6, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndaRDaKm', '5635406'), + (1500, 6, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndaRDaKm', '5638765'), + (1501, 6, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndaRDaKm', '5640097'), + (1502, 6, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ndaRDaKm', '5640843'), + (1503, 6, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndaRDaKm', '5641521'), + (1504, 6, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ndaRDaKm', '5642818'), + (1505, 6, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndaRDaKm', '5652395'), + (1506, 6, 1762, 'attending', '2022-10-24 02:32:17', '2025-12-17 19:47:16', 'ndaRDaKm', '5670445'), + (1507, 6, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndaRDaKm', '5671637'), + (1508, 6, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndaRDaKm', '5672329'), + (1509, 6, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndaRDaKm', '5674057'), + (1510, 6, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndaRDaKm', '5674060'), + (1511, 6, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndaRDaKm', '5677461'), + (1512, 6, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndaRDaKm', '5698046'), + (1513, 6, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ndaRDaKm', '5699760'), + (1514, 6, 1790, 'not_attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'ndaRDaKm', '5727424'), + (1515, 6, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndaRDaKm', '5741601'), + (1516, 6, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndaRDaKm', '5763458'), + (1517, 6, 1799, 'attending', '2022-11-26 23:56:54', '2025-12-17 19:47:16', 'ndaRDaKm', '5764666'), + (1518, 6, 1804, 'attending', '2023-01-24 22:39:59', '2025-12-17 19:47:06', 'ndaRDaKm', '5764674'), + (1519, 6, 1805, 'attending', '2023-01-31 18:59:56', '2025-12-17 19:47:06', 'ndaRDaKm', '5764675'), + (1520, 6, 1806, 'not_attending', '2023-01-13 01:26:39', '2025-12-17 19:47:05', 'ndaRDaKm', '5764676'), + (1521, 6, 1807, 'attending', '2023-01-13 08:40:19', '2025-12-17 19:47:05', 'ndaRDaKm', '5764677'), + (1522, 6, 1814, 'attending', '2023-02-14 22:45:28', '2025-12-17 19:47:08', 'ndaRDaKm', '5764684'), + (1523, 6, 1817, 'maybe', '2023-02-21 22:24:47', '2025-12-17 19:46:57', 'ndaRDaKm', '5764687'), + (1524, 6, 1820, 'attending', '2023-04-08 01:18:25', '2025-12-17 19:46:58', 'ndaRDaKm', '5764690'), + (1525, 6, 1821, 'not_attending', '2023-02-21 22:24:56', '2025-12-17 19:46:56', 'ndaRDaKm', '5764691'), + (1526, 6, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndaRDaKm', '5774172'), + (1527, 6, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ndaRDaKm', '5818247'), + (1528, 6, 1834, 'not_attending', '2022-12-10 02:15:11', '2025-12-17 19:47:17', 'ndaRDaKm', '5819470'), + (1529, 6, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndaRDaKm', '5819471'), + (1530, 6, 1841, 'attending', '2023-01-06 11:28:21', '2025-12-17 19:47:05', 'ndaRDaKm', '5827665'), + (1531, 6, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndaRDaKm', '5827739'), + (1532, 6, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndaRDaKm', '5844306'), + (1533, 6, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndaRDaKm', '5850159'), + (1534, 6, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndaRDaKm', '5858999'), + (1535, 6, 1851, 'attending', '2023-01-08 22:20:14', '2025-12-17 19:47:05', 'ndaRDaKm', '5869316'), + (1536, 6, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndaRDaKm', '5871984'), + (1537, 6, 1859, 'not_attending', '2023-01-13 01:26:47', '2025-12-17 19:47:05', 'ndaRDaKm', '5876234'), + (1538, 6, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndaRDaKm', '5876354'), + (1539, 6, 1864, 'not_attending', '2023-01-16 18:53:06', '2025-12-17 19:47:05', 'ndaRDaKm', '5879675'), + (1540, 6, 1865, 'attending', '2023-01-24 22:39:55', '2025-12-17 19:47:06', 'ndaRDaKm', '5879676'), + (1541, 6, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndaRDaKm', '5880939'), + (1542, 6, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ndaRDaKm', '5880940'), + (1543, 6, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndaRDaKm', '5880942'), + (1544, 6, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndaRDaKm', '5880943'), + (1545, 6, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndaRDaKm', '5887890'), + (1546, 6, 1875, 'maybe', '2023-01-24 22:39:46', '2025-12-17 19:47:06', 'ndaRDaKm', '5887908'), + (1547, 6, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndaRDaKm', '5888598'), + (1548, 6, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndaRDaKm', '5893260'), + (1549, 6, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndaRDaKm', '5899826'), + (1550, 6, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndaRDaKm', '5900199'), + (1551, 6, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ndaRDaKm', '5900200'), + (1552, 6, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndaRDaKm', '5900202'), + (1553, 6, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndaRDaKm', '5900203'), + (1554, 6, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndaRDaKm', '5901108'), + (1555, 6, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndaRDaKm', '5901126'), + (1556, 6, 1897, 'attending', '2023-02-06 17:18:45', '2025-12-17 19:47:07', 'ndaRDaKm', '5901128'), + (1557, 6, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndaRDaKm', '5909655'), + (1558, 6, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndaRDaKm', '5910522'), + (1559, 6, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndaRDaKm', '5910526'), + (1560, 6, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndaRDaKm', '5910528'), + (1561, 6, 1922, 'not_attending', '2023-02-14 22:45:24', '2025-12-17 19:47:07', 'ndaRDaKm', '5916219'), + (1562, 6, 1924, 'attending', '2023-02-16 17:39:14', '2025-12-17 19:47:07', 'ndaRDaKm', '5931095'), + (1563, 6, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndaRDaKm', '5936234'), + (1564, 6, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndaRDaKm', '5958351'), + (1565, 6, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndaRDaKm', '5959751'), + (1566, 6, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndaRDaKm', '5959755'), + (1567, 6, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndaRDaKm', '5960055'), + (1568, 6, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndaRDaKm', '5961684'), + (1569, 6, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndaRDaKm', '5962132'), + (1570, 6, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'ndaRDaKm', '5962133'), + (1571, 6, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndaRDaKm', '5962134'), + (1572, 6, 1947, 'not_attending', '2023-02-26 00:00:13', '2025-12-17 19:47:09', 'ndaRDaKm', '5962233'), + (1573, 6, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndaRDaKm', '5962317'), + (1574, 6, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndaRDaKm', '5962318'), + (1575, 6, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndaRDaKm', '5965933'), + (1576, 6, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndaRDaKm', '5967014'), + (1577, 6, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'ndaRDaKm', '5972763'), + (1578, 6, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndaRDaKm', '5972815'), + (1579, 6, 1959, 'attending', '2023-03-07 06:30:13', '2025-12-17 19:46:57', 'ndaRDaKm', '5972829'), + (1580, 6, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndaRDaKm', '5974016'), + (1581, 6, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndaRDaKm', '5981515'), + (1582, 6, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndaRDaKm', '5993516'), + (1583, 6, 1972, 'attending', '2023-03-19 06:27:03', '2025-12-17 19:46:56', 'ndaRDaKm', '5993776'), + (1584, 6, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndaRDaKm', '5998939'), + (1585, 6, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndaRDaKm', '6028191'), + (1586, 6, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndaRDaKm', '6040066'), + (1587, 6, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndaRDaKm', '6042717'), + (1588, 6, 1985, 'attending', '2023-03-26 21:28:30', '2025-12-17 19:46:57', 'ndaRDaKm', '6043041'), + (1589, 6, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndaRDaKm', '6044838'), + (1590, 6, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndaRDaKm', '6044839'), + (1591, 6, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaRDaKm', '6045684'), + (1592, 6, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndaRDaKm', '6050104'), + (1593, 6, 1996, 'attending', '2023-04-03 02:17:03', '2025-12-17 19:46:58', 'ndaRDaKm', '6050667'), + (1594, 6, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndaRDaKm', '6053195'), + (1595, 6, 2006, 'attending', '2023-04-08 21:51:08', '2025-12-17 19:46:59', 'ndaRDaKm', '6053198'), + (1596, 6, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndaRDaKm', '6056085'), + (1597, 6, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndaRDaKm', '6056916'), + (1598, 6, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndaRDaKm', '6059290'), + (1599, 6, 2013, 'maybe', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndaRDaKm', '6060328'), + (1600, 6, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndaRDaKm', '6061037'), + (1601, 6, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndaRDaKm', '6061039'), + (1602, 6, 2017, 'not_attending', '2023-04-11 23:17:51', '2025-12-17 19:46:59', 'ndaRDaKm', '6061099'), + (1603, 6, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndaRDaKm', '6067245'), + (1604, 6, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndaRDaKm', '6068094'), + (1605, 6, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndaRDaKm', '6068252'), + (1606, 6, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndaRDaKm', '6068253'), + (1607, 6, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndaRDaKm', '6068254'), + (1608, 6, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'ndaRDaKm', '6068280'), + (1609, 6, 2032, 'attending', '2023-05-31 03:40:29', '2025-12-17 19:47:04', 'ndaRDaKm', '6068281'), + (1610, 6, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndaRDaKm', '6069093'), + (1611, 6, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndaRDaKm', '6072528'), + (1612, 6, 2043, 'attending', '2023-04-25 23:33:46', '2025-12-17 19:47:01', 'ndaRDaKm', '6073023'), + (1613, 6, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'ndaRDaKm', '6075556'), + (1614, 6, 2046, 'not_attending', '2023-05-06 01:36:27', '2025-12-17 19:47:02', 'ndaRDaKm', '6076020'), + (1615, 6, 2047, 'attending', '2023-05-07 22:16:22', '2025-12-17 19:47:02', 'ndaRDaKm', '6076027'), + (1616, 6, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndaRDaKm', '6079840'), + (1617, 6, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndaRDaKm', '6083398'), + (1618, 6, 2052, 'attending', '2023-05-05 22:29:06', '2025-12-17 19:47:02', 'ndaRDaKm', '6088220'), + (1619, 6, 2053, 'attending', '2023-05-06 05:08:13', '2025-12-17 19:47:02', 'ndaRDaKm', '6092644'), + (1620, 6, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndaRDaKm', '6093504'), + (1621, 6, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndaRDaKm', '6097414'), + (1622, 6, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndaRDaKm', '6097442'), + (1623, 6, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndaRDaKm', '6097684'), + (1624, 6, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndaRDaKm', '6098762'), + (1625, 6, 2064, 'attending', '2023-06-03 09:55:47', '2025-12-17 19:46:50', 'ndaRDaKm', '6099988'), + (1626, 6, 2065, 'attending', '2023-05-18 23:18:19', '2025-12-17 19:46:49', 'ndaRDaKm', '6101169'), + (1627, 6, 2066, 'attending', '2023-06-03 20:00:27', '2025-12-17 19:47:04', 'ndaRDaKm', '6101361'), + (1628, 6, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndaRDaKm', '6101362'), + (1629, 6, 2070, 'attending', '2023-05-15 17:21:42', '2025-12-17 19:47:03', 'ndaRDaKm', '6103752'), + (1630, 6, 2074, 'attending', '2023-05-17 22:49:44', '2025-12-17 19:47:03', 'ndaRDaKm', '6107312'), + (1631, 6, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndaRDaKm', '6107314'), + (1632, 6, 2086, 'attending', '2023-06-01 22:08:38', '2025-12-17 19:47:04', 'ndaRDaKm', '6119877'), + (1633, 6, 2087, 'attending', '2023-05-28 04:21:41', '2025-12-17 19:47:04', 'ndaRDaKm', '6120034'), + (1634, 6, 2090, 'attending', '2023-06-01 05:44:32', '2025-12-17 19:47:04', 'ndaRDaKm', '6127961'), + (1635, 6, 2091, 'maybe', '2023-06-03 20:02:00', '2025-12-17 19:47:04', 'ndaRDaKm', '6130657'), + (1636, 6, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ndaRDaKm', '6136733'), + (1637, 6, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndaRDaKm', '6137989'), + (1638, 6, 2105, 'attending', '2023-06-18 06:44:30', '2025-12-17 19:46:50', 'ndaRDaKm', '6149551'), + (1639, 6, 2106, 'attending', '2023-06-18 06:44:24', '2025-12-17 19:46:50', 'ndaRDaKm', '6150479'), + (1640, 6, 2107, 'maybe', '2023-06-18 07:04:59', '2025-12-17 19:46:50', 'ndaRDaKm', '6150480'), + (1641, 6, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndaRDaKm', '6150864'), + (1642, 6, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndaRDaKm', '6155491'), + (1643, 6, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndaRDaKm', '6164417'), + (1644, 6, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndaRDaKm', '6166388'), + (1645, 6, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndaRDaKm', '6176439'), + (1646, 6, 2124, 'attending', '2023-07-05 02:36:11', '2025-12-17 19:46:51', 'ndaRDaKm', '6176988'), + (1647, 6, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'ndaRDaKm', '6180853'), + (1648, 6, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndaRDaKm', '6182410'), + (1649, 6, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndaRDaKm', '6185812'), + (1650, 6, 2132, 'attending', '2023-07-09 02:34:29', '2025-12-17 19:46:52', 'ndaRDaKm', '6187015'), + (1651, 6, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndaRDaKm', '6187651'), + (1652, 6, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndaRDaKm', '6187963'), + (1653, 6, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndaRDaKm', '6187964'), + (1654, 6, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndaRDaKm', '6187966'), + (1655, 6, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndaRDaKm', '6187967'), + (1656, 6, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndaRDaKm', '6187969'), + (1657, 6, 2143, 'not_attending', '2023-07-08 19:55:18', '2025-12-17 19:46:51', 'ndaRDaKm', '6334348'), + (1658, 6, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndaRDaKm', '6334878'), + (1659, 6, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndaRDaKm', '6337236'), + (1660, 6, 2155, 'maybe', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndaRDaKm', '6337970'), + (1661, 6, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndaRDaKm', '6338308'), + (1662, 6, 2159, 'not_attending', '2023-07-17 18:53:10', '2025-12-17 19:46:53', 'ndaRDaKm', '6338355'), + (1663, 6, 2160, 'not_attending', '2023-07-26 23:03:07', '2025-12-17 19:46:54', 'ndaRDaKm', '6338358'), + (1664, 6, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'ndaRDaKm', '6340845'), + (1665, 6, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndaRDaKm', '6341710'), + (1666, 6, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndaRDaKm', '6342044'), + (1667, 6, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndaRDaKm', '6342298'), + (1668, 6, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndaRDaKm', '6343294'), + (1669, 6, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndaRDaKm', '6347034'), + (1670, 6, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndaRDaKm', '6347056'), + (1671, 6, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndaRDaKm', '6353830'), + (1672, 6, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndaRDaKm', '6353831'), + (1673, 6, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndaRDaKm', '6357867'), + (1674, 6, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndaRDaKm', '6358652'), + (1675, 6, 2195, 'attending', '2023-08-23 18:00:15', '2025-12-17 19:46:55', 'ndaRDaKm', '6359397'), + (1676, 6, 2197, 'maybe', '2023-09-15 07:12:50', '2025-12-17 19:46:44', 'ndaRDaKm', '6359399'), + (1677, 6, 2198, 'not_attending', '2023-09-21 04:09:36', '2025-12-17 19:46:45', 'ndaRDaKm', '6359400'), + (1678, 6, 2199, 'attending', '2023-08-10 23:11:26', '2025-12-17 19:46:55', 'ndaRDaKm', '6359849'), + (1679, 6, 2204, 'not_attending', '2023-08-15 23:01:17', '2025-12-17 19:46:55', 'ndaRDaKm', '6361542'), + (1680, 6, 2206, 'attending', '2023-08-09 19:18:53', '2025-12-17 19:46:55', 'ndaRDaKm', '6361659'), + (1681, 6, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndaRDaKm', '6361709'), + (1682, 6, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndaRDaKm', '6361710'), + (1683, 6, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndaRDaKm', '6361711'), + (1684, 6, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndaRDaKm', '6361712'), + (1685, 6, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndaRDaKm', '6361713'), + (1686, 6, 2215, 'maybe', '2023-08-11 20:45:39', '2025-12-17 19:46:55', 'ndaRDaKm', '6363479'), + (1687, 6, 2232, 'attending', '2023-08-23 18:00:10', '2025-12-17 19:46:55', 'ndaRDaKm', '6374818'), + (1688, 6, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndaRDaKm', '6382573'), + (1689, 6, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'ndaRDaKm', '6383149'), + (1690, 6, 2239, 'attending', '2023-09-02 17:39:18', '2025-12-17 19:46:56', 'ndaRDaKm', '6387592'), + (1691, 6, 2240, 'not_attending', '2023-09-02 21:30:50', '2025-12-17 19:46:56', 'ndaRDaKm', '6388603'), + (1692, 6, 2241, 'maybe', '2023-09-02 21:42:35', '2025-12-17 19:46:44', 'ndaRDaKm', '6388604'), + (1693, 6, 2247, 'attending', '2023-09-06 22:12:52', '2025-12-17 19:46:56', 'ndaRDaKm', '6394628'), + (1694, 6, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndaRDaKm', '6394629'), + (1695, 6, 2249, 'attending', '2023-09-20 21:19:48', '2025-12-17 19:46:45', 'ndaRDaKm', '6394630'), + (1696, 6, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndaRDaKm', '6394631'), + (1697, 6, 2253, 'not_attending', '2023-09-30 04:39:13', '2025-12-17 19:46:45', 'ndaRDaKm', '6401811'), + (1698, 6, 2258, 'attending', '2023-09-21 08:13:56', '2025-12-17 19:46:45', 'ndaRDaKm', '6419492'), + (1699, 6, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndaRDaKm', '6440863'), + (1700, 6, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndaRDaKm', '6445440'), + (1701, 6, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndaRDaKm', '6453951'), + (1702, 6, 2285, 'not_attending', '2023-10-27 18:26:27', '2025-12-17 19:46:47', 'ndaRDaKm', '6460929'), + (1703, 6, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndaRDaKm', '6461696'), + (1704, 6, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndaRDaKm', '6462129'), + (1705, 6, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndaRDaKm', '6463218'), + (1706, 6, 2299, 'attending', '2023-10-16 18:06:08', '2025-12-17 19:46:46', 'ndaRDaKm', '6472181'), + (1707, 6, 2303, 'not_attending', '2023-10-27 04:48:42', '2025-12-17 19:46:47', 'ndaRDaKm', '6482691'), + (1708, 6, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndaRDaKm', '6482693'), + (1709, 6, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ndaRDaKm', '6484200'), + (1710, 6, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndaRDaKm', '6484680'), + (1711, 6, 2315, 'attending', '2023-11-07 00:00:47', '2025-12-17 19:46:47', 'ndaRDaKm', '6493666'), + (1712, 6, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndaRDaKm', '6507741'), + (1713, 6, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndaRDaKm', '6514659'), + (1714, 6, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndaRDaKm', '6514660'), + (1715, 6, 2326, 'maybe', '2023-11-01 17:34:48', '2025-12-17 19:46:48', 'ndaRDaKm', '6514805'), + (1716, 6, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndaRDaKm', '6519103'), + (1717, 6, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndaRDaKm', '6535681'), + (1718, 6, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndaRDaKm', '6584747'), + (1719, 6, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndaRDaKm', '6587097'), + (1720, 6, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndaRDaKm', '6609022'), + (1721, 6, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndaRDaKm', '6632757'), + (1722, 6, 2375, 'attending', '2023-12-20 23:34:13', '2025-12-17 19:46:36', 'ndaRDaKm', '6634548'), + (1723, 6, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndaRDaKm', '6644187'), + (1724, 6, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndaRDaKm', '6648951'), + (1725, 6, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndaRDaKm', '6648952'), + (1726, 6, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndaRDaKm', '6655401'), + (1727, 6, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndaRDaKm', '6661585'), + (1728, 6, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndaRDaKm', '6661588'), + (1729, 6, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndaRDaKm', '6661589'), + (1730, 6, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndaRDaKm', '6699906'), + (1731, 6, 2409, 'attending', '2024-01-29 17:41:55', '2025-12-17 19:46:41', 'ndaRDaKm', '6699909'), + (1732, 6, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ndaRDaKm', '6699913'), + (1733, 6, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndaRDaKm', '6701109'), + (1734, 6, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndaRDaKm', '6705219'), + (1735, 6, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndaRDaKm', '6710153'), + (1736, 6, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndaRDaKm', '6711552'), + (1737, 6, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ndaRDaKm', '6711553'), + (1738, 6, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ndaRDaKm', '6722688'), + (1739, 6, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ndaRDaKm', '6730620'), + (1740, 6, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ndaRDaKm', '6740364'), + (1741, 6, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ndaRDaKm', '6743829'), + (1742, 6, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ndaRDaKm', '7030380'), + (1743, 6, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ndaRDaKm', '7033677'), + (1744, 6, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ndaRDaKm', '7044715'), + (1745, 6, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ndaRDaKm', '7050318'), + (1746, 6, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ndaRDaKm', '7050319'), + (1747, 6, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ndaRDaKm', '7050322'), + (1748, 6, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ndaRDaKm', '7057804'), + (1749, 6, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ndaRDaKm', '7072824'), + (1750, 6, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ndaRDaKm', '7074348'), + (1751, 6, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndaRDaKm', '7074364'), + (1752, 6, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ndaRDaKm', '7089267'), + (1753, 6, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ndaRDaKm', '7098747'), + (1754, 6, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ndaRDaKm', '7113468'), + (1755, 6, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ndaRDaKm', '7114856'), + (1756, 6, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ndaRDaKm', '7114951'), + (1757, 6, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ndaRDaKm', '7114955'), + (1758, 6, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ndaRDaKm', '7114956'), + (1759, 6, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndaRDaKm', '7114957'), + (1760, 6, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndaRDaKm', '7159484'), + (1761, 6, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndaRDaKm', '7178446'), + (1762, 6, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ndaRDaKm', '7220467'), + (1763, 6, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndaRDaKm', '7240354'), + (1764, 6, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndaRDaKm', '7251633'), + (1765, 6, 2626, 'attending', '2024-05-18 22:27:44', '2025-12-17 19:46:35', 'ndaRDaKm', '7264723'), + (1766, 6, 2627, 'maybe', '2024-05-21 16:53:06', '2025-12-17 19:46:35', 'ndaRDaKm', '7264724'), + (1767, 6, 2628, 'not_attending', '2024-05-21 16:53:11', '2025-12-17 19:46:36', 'ndaRDaKm', '7264725'), + (1768, 6, 2629, 'not_attending', '2024-05-21 16:53:15', '2025-12-17 19:46:28', 'ndaRDaKm', '7264726'), + (1769, 6, 2647, 'maybe', '2024-06-09 17:50:02', '2025-12-17 19:46:28', 'ndaRDaKm', '7282057'), + (1770, 6, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'ndaRDaKm', '7302674'), + (1771, 6, 2671, 'attending', '2024-06-11 14:19:14', '2025-12-17 19:46:28', 'ndaRDaKm', '7318256'), + (1772, 6, 2672, 'maybe', '2024-06-09 17:50:11', '2025-12-17 19:46:28', 'ndaRDaKm', '7318459'), + (1773, 6, 2678, 'attending', '2024-06-14 21:12:52', '2025-12-17 19:46:28', 'ndaRDaKm', '7319489'), + (1774, 6, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndaRDaKm', '7324073'), + (1775, 6, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndaRDaKm', '7324074'), + (1776, 6, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndaRDaKm', '7324075'), + (1777, 6, 2691, 'attending', '2024-07-08 14:55:53', '2025-12-17 19:46:30', 'ndaRDaKm', '7324076'), + (1778, 6, 2692, 'maybe', '2024-07-08 14:55:59', '2025-12-17 19:46:30', 'ndaRDaKm', '7324077'), + (1779, 6, 2693, 'attending', '2024-07-21 04:17:31', '2025-12-17 19:46:31', 'ndaRDaKm', '7324078'), + (1780, 6, 2694, 'attending', '2024-07-21 04:17:33', '2025-12-17 19:46:31', 'ndaRDaKm', '7324079'), + (1781, 6, 2695, 'attending', '2024-08-17 01:09:14', '2025-12-17 19:46:31', 'ndaRDaKm', '7324080'), + (1782, 6, 2696, 'attending', '2024-08-17 15:44:37', '2025-12-17 19:46:32', 'ndaRDaKm', '7324081'), + (1783, 6, 2697, 'attending', '2024-08-31 06:16:45', '2025-12-17 19:46:32', 'ndaRDaKm', '7324082'), + (1784, 6, 2698, 'not_attending', '2024-09-07 00:46:29', '2025-12-17 19:46:24', 'ndaRDaKm', '7324083'), + (1785, 6, 2699, 'maybe', '2024-06-12 17:20:01', '2025-12-17 19:46:28', 'ndaRDaKm', '7324385'), + (1786, 6, 2700, 'attending', '2024-06-13 20:47:25', '2025-12-17 19:46:28', 'ndaRDaKm', '7324388'), + (1787, 6, 2701, 'maybe', '2024-06-26 03:19:15', '2025-12-17 19:46:29', 'ndaRDaKm', '7324391'), + (1788, 6, 2706, 'maybe', '2024-06-19 04:41:14', '2025-12-17 19:46:28', 'ndaRDaKm', '7324947'), + (1789, 6, 2722, 'attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'ndaRDaKm', '7331457'), + (1790, 6, 2723, 'maybe', '2024-06-21 02:00:49', '2025-12-17 19:46:29', 'ndaRDaKm', '7332389'), + (1791, 6, 2724, 'maybe', '2024-06-26 03:19:06', '2025-12-17 19:46:29', 'ndaRDaKm', '7332562'), + (1792, 6, 2726, 'attending', '2024-06-19 19:18:18', '2025-12-17 19:46:29', 'ndaRDaKm', '7332853'), + (1793, 6, 2741, 'maybe', '2024-07-08 14:56:27', '2025-12-17 19:46:30', 'ndaRDaKm', '7344592'), + (1794, 6, 2747, 'maybe', '2024-07-17 19:08:33', '2025-12-17 19:46:30', 'ndaRDaKm', '7353587'), + (1795, 6, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'ndaRDaKm', '7356752'), + (1796, 6, 2755, 'maybe', '2024-07-10 16:56:37', '2025-12-17 19:46:29', 'ndaRDaKm', '7357808'), + (1797, 6, 2766, 'attending', '2024-07-18 02:08:58', '2025-12-17 19:46:30', 'ndaRDaKm', '7363643'), + (1798, 6, 2767, 'maybe', '2024-07-18 02:08:56', '2025-12-17 19:46:30', 'ndaRDaKm', '7364726'), + (1799, 6, 2768, 'attending', '2024-07-18 02:07:00', '2025-12-17 19:46:30', 'ndaRDaKm', '7366031'), + (1800, 6, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndaRDaKm', '7368606'), + (1801, 6, 2782, 'maybe', '2024-07-28 15:54:06', '2025-12-17 19:46:30', 'ndaRDaKm', '7376725'), + (1802, 6, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndaRDaKm', '7397462'), + (1803, 6, 2802, 'attending', '2024-09-02 01:55:21', '2025-12-17 19:46:32', 'ndaRDaKm', '7397463'), + (1804, 6, 2806, 'maybe', '2024-09-14 16:17:20', '2025-12-17 19:46:25', 'ndaRDaKm', '7404888'), + (1805, 6, 2808, 'attending', '2024-08-31 06:16:55', '2025-12-17 19:46:32', 'ndaRDaKm', '7412860'), + (1806, 6, 2821, 'maybe', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndaRDaKm', '7424275'), + (1807, 6, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'ndaRDaKm', '7424276'), + (1808, 6, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndaRDaKm', '7432751'), + (1809, 6, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndaRDaKm', '7432752'), + (1810, 6, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndaRDaKm', '7432753'), + (1811, 6, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndaRDaKm', '7432754'), + (1812, 6, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndaRDaKm', '7432755'), + (1813, 6, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndaRDaKm', '7432756'), + (1814, 6, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndaRDaKm', '7432758'), + (1815, 6, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndaRDaKm', '7432759'), + (1816, 6, 2832, 'maybe', '2024-09-11 16:53:03', '2025-12-17 19:46:24', 'ndaRDaKm', '7433324'), + (1817, 6, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndaRDaKm', '7433834'), + (1818, 6, 2834, 'maybe', '2024-09-12 21:29:06', '2025-12-17 19:46:25', 'ndaRDaKm', '7433852'), + (1819, 6, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndaRDaKm', '7470197'), + (1820, 6, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndaRDaKm', '7685613'), + (1821, 6, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndaRDaKm', '7688194'), + (1822, 6, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndaRDaKm', '7688196'), + (1823, 6, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndaRDaKm', '7688289'), + (1824, 6, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'ndaRDaKm', '7692763'), + (1825, 6, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndaRDaKm', '7697552'), + (1826, 6, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndaRDaKm', '7699878'), + (1827, 6, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndaRDaKm', '7704043'), + (1828, 6, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndaRDaKm', '7712467'), + (1829, 6, 2925, 'attending', '2024-12-06 02:12:59', '2025-12-17 19:46:21', 'ndaRDaKm', '7713584'), + (1830, 6, 2926, 'attending', '2024-12-03 17:38:46', '2025-12-17 19:46:21', 'ndaRDaKm', '7713585'), + (1831, 6, 2927, 'attending', '2024-12-06 02:13:01', '2025-12-17 19:46:22', 'ndaRDaKm', '7713586'), + (1832, 6, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndaRDaKm', '7738518'), + (1833, 6, 2962, 'not_attending', '2024-12-25 12:51:13', '2025-12-17 19:46:22', 'ndaRDaKm', '7750632'), + (1834, 6, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndaRDaKm', '7750636'), + (1835, 6, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndaRDaKm', '7796540'), + (1836, 6, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndaRDaKm', '7796541'), + (1837, 6, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndaRDaKm', '7796542'), + (1838, 6, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndaRDaKm', '7825913'), + (1839, 6, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndaRDaKm', '7826209'), + (1840, 6, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndaRDaKm', '7834742'), + (1841, 6, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'ndaRDaKm', '7842108'), + (1842, 6, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndaRDaKm', '7842902'), + (1843, 6, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndaRDaKm', '7842903'), + (1844, 6, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndaRDaKm', '7842904'), + (1845, 6, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndaRDaKm', '7842905'), + (1846, 6, 3003, 'attending', '2025-02-19 15:28:26', '2025-12-17 19:46:24', 'ndaRDaKm', '7854589'), + (1847, 6, 3005, 'maybe', '2025-02-19 15:28:09', '2025-12-17 19:46:24', 'ndaRDaKm', '7854604'), + (1848, 6, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndaRDaKm', '7855719'), + (1849, 6, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndaRDaKm', '7860683'), + (1850, 6, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndaRDaKm', '7860684'), + (1851, 6, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndaRDaKm', '7866095'), + (1852, 6, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndaRDaKm', '7869170'), + (1853, 6, 3014, 'attending', '2025-04-05 18:42:02', '2025-12-17 19:46:20', 'ndaRDaKm', '7869185'), + (1854, 6, 3015, 'attending', '2025-04-05 18:42:12', '2025-12-17 19:46:20', 'ndaRDaKm', '7869186'), + (1855, 6, 3016, 'attending', '2025-04-05 18:42:10', '2025-12-17 19:46:20', 'ndaRDaKm', '7869187'), + (1856, 6, 3017, 'not_attending', '2025-03-12 20:41:12', '2025-12-17 19:46:19', 'ndaRDaKm', '7869188'), + (1857, 6, 3018, 'attending', '2025-04-05 18:42:04', '2025-12-17 19:46:20', 'ndaRDaKm', '7869189'), + (1858, 6, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndaRDaKm', '7869201'), + (1859, 6, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndaRDaKm', '7877465'), + (1860, 6, 3049, 'maybe', '2025-03-21 14:57:35', '2025-12-17 19:46:19', 'ndaRDaKm', '7883215'), + (1861, 6, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndaRDaKm', '7888250'), + (1862, 6, 3059, 'attending', '2025-03-26 11:29:19', '2025-12-17 19:46:19', 'ndaRDaKm', '7891868'), + (1863, 6, 3072, 'maybe', '2025-04-03 12:00:44', '2025-12-17 19:46:19', 'ndaRDaKm', '7895449'), + (1864, 6, 3084, 'maybe', '2025-04-08 23:48:58', '2025-12-17 19:46:20', 'ndaRDaKm', '7903687'), + (1865, 6, 3088, 'attending', '2025-06-09 13:53:07', '2025-12-17 19:46:15', 'ndaRDaKm', '7904777'), + (1866, 6, 3090, 'maybe', '2025-04-17 22:31:28', '2025-12-17 19:46:20', 'ndaRDaKm', '7914315'), + (1867, 6, 3093, 'maybe', '2025-04-22 20:47:29', '2025-12-17 19:46:20', 'ndaRDaKm', '8342248'), + (1868, 6, 3094, 'maybe', '2025-04-28 14:50:44', '2025-12-17 19:46:21', 'ndaRDaKm', '8342292'), + (1869, 6, 3095, 'attending', '2025-04-29 17:49:44', '2025-12-17 19:46:20', 'ndaRDaKm', '8342293'), + (1870, 6, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndaRDaKm', '8349164'), + (1871, 6, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndaRDaKm', '8349545'), + (1872, 6, 3111, 'attending', '2025-04-29 17:48:08', '2025-12-17 19:46:20', 'ndaRDaKm', '8353494'), + (1873, 6, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ndaRDaKm', '8353584'), + (1874, 6, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndaRDaKm', '8368028'), + (1875, 6, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndaRDaKm', '8368029'), + (1876, 6, 3133, 'attending', '2025-05-31 20:17:01', '2025-12-17 19:46:14', 'ndaRDaKm', '8368030'), + (1877, 6, 3136, 'maybe', '2025-05-21 11:42:52', '2025-12-17 19:46:21', 'ndaRDaKm', '8374152'), + (1878, 6, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndaRDaKm', '8388462'), + (1879, 6, 3150, 'maybe', '2025-06-19 22:07:37', '2025-12-17 19:46:15', 'ndaRDaKm', '8393174'), + (1880, 6, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndaRDaKm', '8400273'), + (1881, 6, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ndaRDaKm', '8400274'), + (1882, 6, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndaRDaKm', '8400275'), + (1883, 6, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ndaRDaKm', '8400276'), + (1884, 6, 3161, 'maybe', '2025-06-09 13:53:19', '2025-12-17 19:46:15', 'ndaRDaKm', '8401412'), + (1885, 6, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndaRDaKm', '8404977'), + (1886, 6, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndaRDaKm', '8430783'), + (1887, 6, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndaRDaKm', '8430784'), + (1888, 6, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndaRDaKm', '8430799'), + (1889, 6, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndaRDaKm', '8430800'), + (1890, 6, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndaRDaKm', '8430801'), + (1891, 6, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndaRDaKm', '8438709'), + (1892, 6, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndaRDaKm', '8457738'), + (1893, 6, 3195, 'attending', '2025-07-18 00:18:21', '2025-12-17 19:46:17', 'ndaRDaKm', '8458118'), + (1894, 6, 3196, 'attending', '2025-07-18 00:22:43', '2025-12-17 19:46:17', 'ndaRDaKm', '8458543'), + (1895, 6, 3198, 'attending', '2025-08-17 22:00:23', '2025-12-17 19:46:18', 'ndaRDaKm', '8459268'), + (1896, 6, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndaRDaKm', '8459566'), + (1897, 6, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndaRDaKm', '8459567'), + (1898, 6, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndaRDaKm', '8461032'), + (1899, 6, 3210, 'attending', '2025-08-25 13:46:08', '2025-12-17 19:46:18', 'ndaRDaKm', '8471162'), + (1900, 6, 3213, 'maybe', '2025-08-11 21:39:18', '2025-12-17 19:46:17', 'ndaRDaKm', '8477876'), + (1901, 6, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndaRDaKm', '8477877'), + (1902, 6, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'ndaRDaKm', '8485688'), + (1903, 6, 3235, 'maybe', '2025-08-18 22:29:28', '2025-12-17 19:46:18', 'ndaRDaKm', '8490587'), + (1904, 6, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ndaRDaKm', '8493552'), + (1905, 6, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ndaRDaKm', '8493553'), + (1906, 6, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ndaRDaKm', '8493554'), + (1907, 6, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ndaRDaKm', '8493555'), + (1908, 6, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ndaRDaKm', '8493556'), + (1909, 6, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ndaRDaKm', '8493557'), + (1910, 6, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ndaRDaKm', '8493558'), + (1911, 6, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ndaRDaKm', '8493559'), + (1912, 6, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ndaRDaKm', '8493560'), + (1913, 6, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'ndaRDaKm', '8493561'), + (1914, 6, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ndaRDaKm', '8493572'), + (1915, 6, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ndaRDaKm', '8540725'), + (1916, 6, 3289, 'attending', '2025-10-22 23:47:51', '2025-12-17 19:46:14', 'ndaRDaKm', '8542939'), + (1917, 6, 3305, 'maybe', '2025-12-06 13:02:22', '2025-12-17 19:46:11', 'ndaRDaKm', '8550025'), + (1918, 6, 3307, 'maybe', '2025-12-19 02:08:35', '2025-12-19 02:08:35', NULL, NULL), + (1919, 6, 3310, 'attending', '2025-12-01 23:05:54', '2025-12-17 19:46:11', 'ndaRDaKm', '8550410'), + (1920, 6, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndaRDaKm', '8555421'), + (1921, 6, 3346, 'attending', '2026-01-02 22:56:21', '2026-01-02 22:56:21', NULL, NULL), + (1922, 7, 1543, 'not_attending', '2023-07-21 15:32:44', '2025-12-17 19:47:21', 'dOxojqLm', '5454516'), + (1923, 7, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOxojqLm', '5900202'), + (1924, 7, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOxojqLm', '5900203'), + (1925, 7, 1917, 'not_attending', '2023-03-12 16:07:19', '2025-12-17 19:47:10', 'dOxojqLm', '5910528'), + (1926, 7, 1943, 'attending', '2023-03-11 17:55:54', '2025-12-17 19:47:10', 'dOxojqLm', '5962091'), + (1927, 7, 1946, 'not_attending', '2023-03-15 21:30:47', '2025-12-17 19:46:56', 'dOxojqLm', '5962134'), + (1928, 7, 1948, 'maybe', '2023-03-15 21:31:50', '2025-12-17 19:46:57', 'dOxojqLm', '5962317'), + (1929, 7, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dOxojqLm', '5962318'), + (1930, 7, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dOxojqLm', '5965933'), + (1931, 7, 1966, 'attending', '2023-03-11 17:56:03', '2025-12-17 19:47:10', 'dOxojqLm', '5983042'), + (1932, 7, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOxojqLm', '5993516'), + (1933, 7, 1974, 'maybe', '2023-03-21 14:20:50', '2025-12-17 19:46:57', 'dOxojqLm', '5993778'), + (1934, 7, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOxojqLm', '5998939'), + (1935, 7, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOxojqLm', '6028191'), + (1936, 7, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOxojqLm', '6040066'), + (1937, 7, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOxojqLm', '6042717'), + (1938, 7, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOxojqLm', '6044838'), + (1939, 7, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOxojqLm', '6044839'), + (1940, 7, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOxojqLm', '6045684'), + (1941, 7, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dOxojqLm', '6050104'), + (1942, 7, 1996, 'attending', '2023-04-02 21:11:03', '2025-12-17 19:46:58', 'dOxojqLm', '6050667'), + (1943, 7, 1998, 'not_attending', '2023-04-09 13:49:05', '2025-12-17 19:46:59', 'dOxojqLm', '6052056'), + (1944, 7, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOxojqLm', '6053195'), + (1945, 7, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOxojqLm', '6053198'), + (1946, 7, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOxojqLm', '6056085'), + (1947, 7, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOxojqLm', '6056916'), + (1948, 7, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOxojqLm', '6059290'), + (1949, 7, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOxojqLm', '6060328'), + (1950, 7, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOxojqLm', '6061037'), + (1951, 7, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOxojqLm', '6061039'), + (1952, 7, 2020, 'not_attending', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'dOxojqLm', '6065813'), + (1953, 7, 2021, 'attending', '2023-04-15 19:13:58', '2025-12-17 19:47:00', 'dOxojqLm', '6066316'), + (1954, 7, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOxojqLm', '6067245'), + (1955, 7, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOxojqLm', '6068094'), + (1956, 7, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOxojqLm', '6068252'), + (1957, 7, 2029, 'maybe', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOxojqLm', '6068253'), + (1958, 7, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOxojqLm', '6068254'), + (1959, 7, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dOxojqLm', '6068280'), + (1960, 7, 2032, 'attending', '2023-05-26 22:26:30', '2025-12-17 19:47:04', 'dOxojqLm', '6068281'), + (1961, 7, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOxojqLm', '6069093'), + (1962, 7, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dOxojqLm', '6072528'), + (1963, 7, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dOxojqLm', '6075556'), + (1964, 7, 2046, 'maybe', '2023-05-04 00:14:38', '2025-12-17 19:47:02', 'dOxojqLm', '6076020'), + (1965, 7, 2047, 'maybe', '2023-05-03 14:32:02', '2025-12-17 19:47:02', 'dOxojqLm', '6076027'), + (1966, 7, 2049, 'attending', '2023-04-29 17:38:54', '2025-12-17 19:47:01', 'dOxojqLm', '6079840'), + (1967, 7, 2050, 'attending', '2023-05-04 00:14:00', '2025-12-17 19:47:02', 'dOxojqLm', '6080489'), + (1968, 7, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOxojqLm', '6083398'), + (1969, 7, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOxojqLm', '6093504'), + (1970, 7, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOxojqLm', '6097414'), + (1971, 7, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOxojqLm', '6097442'), + (1972, 7, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOxojqLm', '6097684'), + (1973, 7, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOxojqLm', '6098762'), + (1974, 7, 2064, 'attending', '2023-06-08 21:07:36', '2025-12-17 19:46:50', 'dOxojqLm', '6099988'), + (1975, 7, 2065, 'attending', '2023-06-08 21:07:27', '2025-12-17 19:46:49', 'dOxojqLm', '6101169'), + (1976, 7, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOxojqLm', '6101361'), + (1977, 7, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOxojqLm', '6101362'), + (1978, 7, 2068, 'attending', '2023-05-13 17:55:44', '2025-12-17 19:47:03', 'dOxojqLm', '6102837'), + (1979, 7, 2069, 'maybe', '2023-05-14 21:46:22', '2025-12-17 19:47:03', 'dOxojqLm', '6103750'), + (1980, 7, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOxojqLm', '6107314'), + (1981, 7, 2078, 'maybe', '2023-05-22 21:21:45', '2025-12-17 19:47:03', 'dOxojqLm', '6114163'), + (1982, 7, 2080, 'maybe', '2023-05-22 22:46:38', '2025-12-17 19:47:04', 'dOxojqLm', '6114677'), + (1983, 7, 2083, 'maybe', '2023-05-22 22:50:28', '2025-12-17 19:47:04', 'dOxojqLm', '6115629'), + (1984, 7, 2086, 'attending', '2023-05-26 21:23:26', '2025-12-17 19:47:04', 'dOxojqLm', '6119877'), + (1985, 7, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOxojqLm', '6120034'), + (1986, 7, 2093, 'maybe', '2023-06-05 01:25:28', '2025-12-17 19:47:04', 'dOxojqLm', '6132598'), + (1987, 7, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dOxojqLm', '6136733'), + (1988, 7, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOxojqLm', '6137989'), + (1989, 7, 2097, 'attending', '2023-06-08 01:12:41', '2025-12-17 19:47:04', 'dOxojqLm', '6139059'), + (1990, 7, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOxojqLm', '6150864'), + (1991, 7, 2109, 'attending', '2023-06-19 19:22:43', '2025-12-17 19:46:50', 'dOxojqLm', '6152821'), + (1992, 7, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOxojqLm', '6155491'), + (1993, 7, 2111, 'maybe', '2023-06-19 19:22:50', '2025-12-17 19:46:50', 'dOxojqLm', '6156121'), + (1994, 7, 2114, 'maybe', '2023-06-25 14:45:31', '2025-12-17 19:46:50', 'dOxojqLm', '6158648'), + (1995, 7, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOxojqLm', '6164417'), + (1996, 7, 2119, 'maybe', '2023-06-26 14:55:21', '2025-12-17 19:46:50', 'dOxojqLm', '6165461'), + (1997, 7, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOxojqLm', '6166388'), + (1998, 7, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOxojqLm', '6176439'), + (1999, 7, 2122, 'maybe', '2023-06-28 20:12:10', '2025-12-17 19:46:51', 'dOxojqLm', '6176476'), + (2000, 7, 2123, 'attending', '2023-06-28 20:12:01', '2025-12-17 19:46:50', 'dOxojqLm', '6176502'), + (2001, 7, 2124, 'maybe', '2023-06-29 20:33:56', '2025-12-17 19:46:51', 'dOxojqLm', '6176988'), + (2002, 7, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOxojqLm', '6182410'), + (2003, 7, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOxojqLm', '6185812'), + (2004, 7, 2132, 'maybe', '2023-07-06 11:24:09', '2025-12-17 19:46:52', 'dOxojqLm', '6187015'), + (2005, 7, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOxojqLm', '6187651'), + (2006, 7, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOxojqLm', '6187963'), + (2007, 7, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOxojqLm', '6187964'), + (2008, 7, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOxojqLm', '6187966'), + (2009, 7, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOxojqLm', '6187967'), + (2010, 7, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOxojqLm', '6187969'), + (2011, 7, 2142, 'attending', '2023-07-09 13:24:12', '2025-12-17 19:46:52', 'dOxojqLm', '6333850'), + (2012, 7, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOxojqLm', '6334878'), + (2013, 7, 2147, 'maybe', '2023-07-12 19:37:05', '2025-12-17 19:46:52', 'dOxojqLm', '6335666'), + (2014, 7, 2151, 'maybe', '2023-07-09 23:36:07', '2025-12-17 19:46:52', 'dOxojqLm', '6335700'), + (2015, 7, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOxojqLm', '6337236'), + (2016, 7, 2154, 'attending', '2023-07-11 23:20:18', '2025-12-17 19:46:52', 'dOxojqLm', '6337689'), + (2017, 7, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOxojqLm', '6337970'), + (2018, 7, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOxojqLm', '6338308'), + (2019, 7, 2157, 'not_attending', '2023-07-12 21:54:30', '2025-12-17 19:46:52', 'dOxojqLm', '6338342'), + (2020, 7, 2158, 'not_attending', '2023-07-13 19:26:34', '2025-12-17 19:46:53', 'dOxojqLm', '6338353'), + (2021, 7, 2159, 'attending', '2023-07-13 19:26:23', '2025-12-17 19:46:53', 'dOxojqLm', '6338355'), + (2022, 7, 2160, 'attending', '2023-07-13 19:26:25', '2025-12-17 19:46:54', 'dOxojqLm', '6338358'), + (2023, 7, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOxojqLm', '6341710'), + (2024, 7, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOxojqLm', '6342044'), + (2025, 7, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOxojqLm', '6342298'), + (2026, 7, 2171, 'attending', '2023-07-18 01:30:02', '2025-12-17 19:46:54', 'dOxojqLm', '6342328'), + (2027, 7, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOxojqLm', '6343294'), + (2028, 7, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOxojqLm', '6347034'), + (2029, 7, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOxojqLm', '6347056'), + (2030, 7, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOxojqLm', '6353830'), + (2031, 7, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOxojqLm', '6353831'), + (2032, 7, 2189, 'maybe', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOxojqLm', '6357867'), + (2033, 7, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOxojqLm', '6358652'), + (2034, 7, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dOxojqLm', '6358668'), + (2035, 7, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dOxojqLm', '6358669'), + (2036, 7, 2204, 'attending', '2023-08-09 18:33:30', '2025-12-17 19:46:55', 'dOxojqLm', '6361542'), + (2037, 7, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOxojqLm', '6361709'), + (2038, 7, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dOxojqLm', '6361710'), + (2039, 7, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOxojqLm', '6361711'), + (2040, 7, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOxojqLm', '6361712'), + (2041, 7, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOxojqLm', '6361713'), + (2042, 7, 2213, 'attending', '2023-08-15 22:42:36', '2025-12-17 19:46:55', 'dOxojqLm', '6362935'), + (2043, 7, 2214, 'maybe', '2023-08-12 23:33:30', '2025-12-17 19:46:55', 'dOxojqLm', '6363218'), + (2044, 7, 2221, 'maybe', '2023-08-15 22:43:02', '2025-12-17 19:46:55', 'dOxojqLm', '6367357'), + (2045, 7, 2222, 'maybe', '2023-08-15 22:43:05', '2025-12-17 19:46:55', 'dOxojqLm', '6367358'), + (2046, 7, 2225, 'attending', '2023-08-20 11:28:28', '2025-12-17 19:46:55', 'dOxojqLm', '6368434'), + (2047, 7, 2232, 'attending', '2023-08-22 23:14:49', '2025-12-17 19:46:55', 'dOxojqLm', '6374818'), + (2048, 7, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOxojqLm', '6382573'), + (2049, 7, 2236, 'attending', '2023-08-25 17:20:48', '2025-12-17 19:46:55', 'dOxojqLm', '6382618'), + (2050, 7, 2239, 'attending', '2023-08-31 17:58:31', '2025-12-17 19:46:56', 'dOxojqLm', '6387592'), + (2051, 7, 2240, 'attending', '2023-09-09 22:07:45', '2025-12-17 19:46:56', 'dOxojqLm', '6388603'), + (2052, 7, 2241, 'attending', '2023-09-09 22:07:50', '2025-12-17 19:46:44', 'dOxojqLm', '6388604'), + (2053, 7, 2242, 'attending', '2023-09-23 00:32:36', '2025-12-17 19:46:45', 'dOxojqLm', '6388606'), + (2054, 7, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOxojqLm', '6394629'), + (2055, 7, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOxojqLm', '6394631'), + (2056, 7, 2253, 'attending', '2023-09-16 22:36:21', '2025-12-17 19:46:45', 'dOxojqLm', '6401811'), + (2057, 7, 2255, 'attending', '2023-09-12 23:14:07', '2025-12-17 19:46:45', 'dOxojqLm', '6403562'), + (2058, 7, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOxojqLm', '6440863'), + (2059, 7, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOxojqLm', '6445440'), + (2060, 7, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOxojqLm', '6453951'), + (2061, 7, 2277, 'attending', '2023-10-08 18:44:13', '2025-12-17 19:46:46', 'dOxojqLm', '6455211'), + (2062, 7, 2279, 'attending', '2023-10-08 18:56:47', '2025-12-17 19:46:46', 'dOxojqLm', '6455460'), + (2063, 7, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOxojqLm', '6461696'), + (2064, 7, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOxojqLm', '6462129'), + (2065, 7, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOxojqLm', '6463218'), + (2066, 7, 2295, 'attending', '2023-10-15 18:59:53', '2025-12-17 19:46:46', 'dOxojqLm', '6467832'), + (2067, 7, 2299, 'attending', '2023-10-20 15:32:35', '2025-12-17 19:46:46', 'dOxojqLm', '6472181'), + (2068, 7, 2303, 'attending', '2023-10-22 15:22:25', '2025-12-17 19:46:47', 'dOxojqLm', '6482691'), + (2069, 7, 2304, 'attending', '2023-10-27 21:30:22', '2025-12-17 19:46:47', 'dOxojqLm', '6482693'), + (2070, 7, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dOxojqLm', '6484200'), + (2071, 7, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOxojqLm', '6484680'), + (2072, 7, 2308, 'attending', '2023-10-23 13:44:36', '2025-12-17 19:46:47', 'dOxojqLm', '6485393'), + (2073, 7, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOxojqLm', '6507741'), + (2074, 7, 2322, 'attending', '2023-11-09 23:13:12', '2025-12-17 19:46:48', 'dOxojqLm', '6514659'), + (2075, 7, 2323, 'not_attending', '2023-11-19 18:08:27', '2025-12-17 19:46:49', 'dOxojqLm', '6514660'), + (2076, 7, 2324, 'attending', '2023-11-19 18:08:30', '2025-12-17 19:46:49', 'dOxojqLm', '6514662'), + (2077, 7, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOxojqLm', '6519103'), + (2078, 7, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOxojqLm', '6535681'), + (2079, 7, 2338, 'maybe', '2023-11-15 02:24:50', '2025-12-17 19:46:48', 'dOxojqLm', '6538868'), + (2080, 7, 2339, 'not_attending', '2023-11-09 23:13:39', '2025-12-17 19:46:47', 'dOxojqLm', '6539128'), + (2081, 7, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOxojqLm', '6584747'), + (2082, 7, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOxojqLm', '6587097'), + (2083, 7, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOxojqLm', '6609022'), + (2084, 7, 2372, 'not_attending', '2023-12-15 15:23:06', '2025-12-17 19:46:36', 'dOxojqLm', '6628243'), + (2085, 7, 2373, 'attending', '2023-12-26 19:36:41', '2025-12-17 19:46:38', 'dOxojqLm', '6632678'), + (2086, 7, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOxojqLm', '6632757'), + (2087, 7, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOxojqLm', '6644187'), + (2088, 7, 2380, 'attending', '2023-12-31 13:55:41', '2025-12-17 19:46:37', 'dOxojqLm', '6645105'), + (2089, 7, 2385, 'maybe', '2024-01-08 17:57:39', '2025-12-17 19:46:37', 'dOxojqLm', '6648943'), + (2090, 7, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOxojqLm', '6648951'), + (2091, 7, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOxojqLm', '6648952'), + (2092, 7, 2389, 'maybe', '2024-01-10 23:36:35', '2025-12-17 19:46:40', 'dOxojqLm', '6651094'), + (2093, 7, 2393, 'not_attending', '2024-01-13 23:06:37', '2025-12-17 19:46:38', 'dOxojqLm', '6654468'), + (2094, 7, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOxojqLm', '6655401'), + (2095, 7, 2397, 'maybe', '2024-01-08 17:57:24', '2025-12-17 19:46:37', 'dOxojqLm', '6657379'), + (2096, 7, 2399, 'not_attending', '2024-01-08 17:57:15', '2025-12-17 19:46:38', 'dOxojqLm', '6657583'), + (2097, 7, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOxojqLm', '6661585'), + (2098, 7, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOxojqLm', '6661588'), + (2099, 7, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOxojqLm', '6661589'), + (2100, 7, 2405, 'maybe', '2024-01-13 23:07:02', '2025-12-17 19:46:38', 'dOxojqLm', '6667332'), + (2101, 7, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOxojqLm', '6699906'), + (2102, 7, 2408, 'attending', '2024-01-15 03:51:54', '2025-12-17 19:46:40', 'dOxojqLm', '6699907'), + (2103, 7, 2409, 'not_attending', '2024-01-15 03:51:56', '2025-12-17 19:46:41', 'dOxojqLm', '6699909'), + (2104, 7, 2410, 'attending', '2024-01-15 03:51:58', '2025-12-17 19:46:41', 'dOxojqLm', '6699911'), + (2105, 7, 2411, 'attending', '2024-02-11 04:13:57', '2025-12-17 19:46:41', 'dOxojqLm', '6699913'), + (2106, 7, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOxojqLm', '6701109'), + (2107, 7, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dOxojqLm', '6704561'), + (2108, 7, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOxojqLm', '6705219'), + (2109, 7, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dOxojqLm', '6708410'), + (2110, 7, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOxojqLm', '6710153'), + (2111, 7, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOxojqLm', '6711552'), + (2112, 7, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOxojqLm', '6711553'), + (2113, 7, 2431, 'attending', '2024-01-23 21:27:42', '2025-12-17 19:46:41', 'dOxojqLm', '6712394'), + (2114, 7, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOxojqLm', '6722688'), + (2115, 7, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOxojqLm', '6730620'), + (2116, 7, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOxojqLm', '6730642'), + (2117, 7, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOxojqLm', '6740364'), + (2118, 7, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOxojqLm', '6743829'), + (2119, 7, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOxojqLm', '7030380'), + (2120, 7, 2471, 'attending', '2024-02-23 00:40:30', '2025-12-17 19:46:42', 'dOxojqLm', '7032425'), + (2121, 7, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOxojqLm', '7033677'), + (2122, 7, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOxojqLm', '7035415'), + (2123, 7, 2479, 'attending', '2024-02-23 00:41:10', '2025-12-17 19:46:43', 'dOxojqLm', '7037009'), + (2124, 7, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOxojqLm', '7044715'), + (2125, 7, 2487, 'attending', '2024-03-01 20:50:43', '2025-12-17 19:46:33', 'dOxojqLm', '7049279'), + (2126, 7, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOxojqLm', '7050318'), + (2127, 7, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOxojqLm', '7050319'), + (2128, 7, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOxojqLm', '7050322'), + (2129, 7, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOxojqLm', '7057804'), + (2130, 7, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOxojqLm', '7072824'), + (2131, 7, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOxojqLm', '7074348'), + (2132, 7, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dOxojqLm', '7074364'), + (2133, 7, 2537, 'maybe', '2024-03-23 14:43:14', '2025-12-17 19:46:33', 'dOxojqLm', '7085484'), + (2134, 7, 2539, 'maybe', '2024-03-31 17:05:25', '2025-12-17 19:46:33', 'dOxojqLm', '7085486'), + (2135, 7, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOxojqLm', '7089267'), + (2136, 7, 2544, 'maybe', '2024-03-23 14:43:41', '2025-12-17 19:46:33', 'dOxojqLm', '7096941'), + (2137, 7, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOxojqLm', '7098747'), + (2138, 7, 2553, 'maybe', '2024-03-30 02:50:15', '2025-12-17 19:46:33', 'dOxojqLm', '7113468'), + (2139, 7, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOxojqLm', '7114856'), + (2140, 7, 2555, 'attending', '2024-03-31 17:05:38', '2025-12-17 19:46:33', 'dOxojqLm', '7114951'), + (2141, 7, 2556, 'attending', '2024-03-31 17:05:46', '2025-12-17 19:46:34', 'dOxojqLm', '7114955'), + (2142, 7, 2557, 'attending', '2024-03-31 17:05:48', '2025-12-17 19:46:34', 'dOxojqLm', '7114956'), + (2143, 7, 2558, 'maybe', '2024-03-31 17:05:49', '2025-12-17 19:46:35', 'dOxojqLm', '7114957'), + (2144, 7, 2566, 'attending', '2024-04-07 14:39:13', '2025-12-17 19:46:34', 'dOxojqLm', '7140664'), + (2145, 7, 2567, 'attending', '2024-04-04 01:21:07', '2025-12-17 19:46:33', 'dOxojqLm', '7144962'), + (2146, 7, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOxojqLm', '7153615'), + (2147, 7, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOxojqLm', '7159484'), + (2148, 7, 2573, 'maybe', '2024-04-14 20:58:26', '2025-12-17 19:46:34', 'dOxojqLm', '7160612'), + (2149, 7, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOxojqLm', '7178446'), + (2150, 7, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOxojqLm', '7220467'), + (2151, 7, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dOxojqLm', '7240354'), + (2152, 7, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOxojqLm', '7251633'), + (2153, 7, 2626, 'maybe', '2024-05-13 17:29:53', '2025-12-17 19:46:35', 'dOxojqLm', '7264723'), + (2154, 7, 2628, 'attending', '2024-05-25 16:46:55', '2025-12-17 19:46:36', 'dOxojqLm', '7264725'), + (2155, 7, 2629, 'not_attending', '2024-06-08 16:56:27', '2025-12-17 19:46:28', 'dOxojqLm', '7264726'), + (2156, 7, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOxojqLm', '7302674'), + (2157, 7, 2678, 'attending', '2024-06-15 18:49:26', '2025-12-17 19:46:28', 'dOxojqLm', '7319489'), + (2158, 7, 2686, 'attending', '2024-06-11 13:17:04', '2025-12-17 19:46:29', 'dOxojqLm', '7323802'), + (2159, 7, 2688, 'attending', '2024-06-27 22:05:26', '2025-12-17 19:46:29', 'dOxojqLm', '7324073'), + (2160, 7, 2689, 'attending', '2024-06-27 22:05:31', '2025-12-17 19:46:29', 'dOxojqLm', '7324074'), + (2161, 7, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dOxojqLm', '7324075'), + (2162, 7, 2691, 'attending', '2024-07-08 21:06:08', '2025-12-17 19:46:30', 'dOxojqLm', '7324076'), + (2163, 7, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dOxojqLm', '7324078'), + (2164, 7, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dOxojqLm', '7324082'), + (2165, 7, 2710, 'attending', '2024-06-16 15:51:24', '2025-12-17 19:46:28', 'dOxojqLm', '7325108'), + (2166, 7, 2717, 'maybe', '2024-06-18 23:32:23', '2025-12-17 19:46:29', 'dOxojqLm', '7329149'), + (2167, 7, 2721, 'not_attending', '2024-06-18 22:59:31', '2025-12-17 19:46:29', 'dOxojqLm', '7331456'), + (2168, 7, 2722, 'attending', '2024-07-08 21:06:36', '2025-12-17 19:46:29', 'dOxojqLm', '7331457'), + (2169, 7, 2753, 'not_attending', '2024-07-13 22:20:30', '2025-12-17 19:46:30', 'dOxojqLm', '7355538'), + (2170, 7, 2761, 'attending', '2024-07-16 20:07:29', '2025-12-17 19:46:30', 'dOxojqLm', '7363412'), + (2171, 7, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dOxojqLm', '7363643'), + (2172, 7, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dOxojqLm', '7368606'), + (2173, 7, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dOxojqLm', '7397462'), + (2174, 7, 2821, 'maybe', '2024-09-18 21:41:46', '2025-12-17 19:46:26', 'dOxojqLm', '7424275'), + (2175, 7, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dOxojqLm', '7424276'), + (2176, 7, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dOxojqLm', '7432751'), + (2177, 7, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dOxojqLm', '7432752'), + (2178, 7, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dOxojqLm', '7432753'), + (2179, 7, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dOxojqLm', '7432754'), + (2180, 7, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dOxojqLm', '7432755'), + (2181, 7, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dOxojqLm', '7432756'), + (2182, 7, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOxojqLm', '7432758'), + (2183, 7, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dOxojqLm', '7432759'), + (2184, 7, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dOxojqLm', '7433834'), + (2185, 7, 2843, 'attending', '2024-09-23 22:50:13', '2025-12-17 19:46:25', 'dOxojqLm', '7450219'), + (2186, 7, 2850, 'maybe', '2024-09-29 01:54:46', '2025-12-17 19:46:25', 'dOxojqLm', '7457153'), + (2187, 7, 2860, 'maybe', '2024-10-05 22:02:04', '2025-12-17 19:46:26', 'dOxojqLm', '7469393'), + (2188, 7, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dOxojqLm', '7470197'), + (2189, 7, 2868, 'attending', '2024-10-05 22:01:36', '2025-12-17 19:46:26', 'dOxojqLm', '7474506'), + (2190, 7, 2875, 'maybe', '2024-10-09 21:25:34', '2025-12-17 19:46:26', 'dOxojqLm', '7482241'), + (2191, 7, 2885, 'attending', '2024-10-17 21:25:03', '2025-12-17 19:46:26', 'dOxojqLm', '7649944'), + (2192, 7, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dOxojqLm', '7685613'), + (2193, 7, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dOxojqLm', '7688194'), + (2194, 7, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dOxojqLm', '7688196'), + (2195, 7, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dOxojqLm', '7688289'), + (2196, 7, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dOxojqLm', '7692763'), + (2197, 7, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dOxojqLm', '7697552'), + (2198, 7, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dOxojqLm', '7699878'), + (2199, 7, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dOxojqLm', '7704043'), + (2200, 7, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dOxojqLm', '7712467'), + (2201, 7, 2925, 'maybe', '2024-12-14 23:41:02', '2025-12-17 19:46:21', 'dOxojqLm', '7713584'), + (2202, 7, 2926, 'not_attending', '2024-11-29 20:43:39', '2025-12-17 19:46:21', 'dOxojqLm', '7713585'), + (2203, 7, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dOxojqLm', '7713586'), + (2204, 7, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dOxojqLm', '7738518'), + (2205, 7, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dOxojqLm', '7750636'), + (2206, 7, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dOxojqLm', '7796540'), + (2207, 7, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dOxojqLm', '7796541'), + (2208, 7, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dOxojqLm', '7796542'), + (2209, 7, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dOxojqLm', '7825913'), + (2210, 7, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dOxojqLm', '7825920'), + (2211, 7, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dOxojqLm', '7826209'), + (2212, 7, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dOxojqLm', '7834742'), + (2213, 7, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dOxojqLm', '7842108'), + (2214, 7, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dOxojqLm', '7842902'), + (2215, 7, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dOxojqLm', '7842903'), + (2216, 7, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dOxojqLm', '7842904'), + (2217, 7, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dOxojqLm', '7842905'), + (2218, 7, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dOxojqLm', '7855719'), + (2219, 7, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dOxojqLm', '7860683'), + (2220, 7, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dOxojqLm', '7860684'), + (2221, 7, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dOxojqLm', '7866095'), + (2222, 7, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dOxojqLm', '7869170'), + (2223, 7, 3014, 'attending', '2025-03-22 21:05:38', '2025-12-17 19:46:19', 'dOxojqLm', '7869185'), + (2224, 7, 3015, 'maybe', '2025-04-05 21:54:41', '2025-12-17 19:46:20', 'dOxojqLm', '7869186'), + (2225, 7, 3016, 'attending', '2025-04-05 21:54:31', '2025-12-17 19:46:20', 'dOxojqLm', '7869187'), + (2226, 7, 3017, 'attending', '2025-03-22 21:05:36', '2025-12-17 19:46:19', 'dOxojqLm', '7869188'), + (2227, 7, 3028, 'attending', '2025-04-23 14:31:08', '2025-12-17 19:46:20', 'dOxojqLm', '7869199'), + (2228, 7, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dOxojqLm', '7869201'), + (2229, 7, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dOxojqLm', '7877465'), + (2230, 7, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dOxojqLm', '7888250'), + (2231, 7, 3070, 'not_attending', '2025-04-02 21:31:58', '2025-12-17 19:46:20', 'dOxojqLm', '7894829'), + (2232, 7, 3088, 'maybe', '2025-06-08 20:05:19', '2025-12-17 19:46:15', 'dOxojqLm', '7904777'), + (2233, 7, 3095, 'attending', '2025-05-03 22:17:04', '2025-12-17 19:46:20', 'dOxojqLm', '8342293'), + (2234, 7, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dOxojqLm', '8349164'), + (2235, 7, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dOxojqLm', '8349545'), + (2236, 7, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dOxojqLm', '8353584'), + (2237, 7, 3130, 'maybe', '2025-05-24 21:19:06', '2025-12-17 19:46:21', 'dOxojqLm', '8367403'), + (2238, 7, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dOxojqLm', '8368028'), + (2239, 7, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dOxojqLm', '8368029'), + (2240, 7, 3133, 'attending', '2025-05-28 22:47:01', '2025-12-17 19:46:14', 'dOxojqLm', '8368030'), + (2241, 7, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dOxojqLm', '8388462'), + (2242, 7, 3150, 'maybe', '2025-06-05 22:57:00', '2025-12-17 19:46:15', 'dOxojqLm', '8393174'), + (2243, 7, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dOxojqLm', '8400273'), + (2244, 7, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dOxojqLm', '8400274'), + (2245, 7, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dOxojqLm', '8400275'), + (2246, 7, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dOxojqLm', '8400276'), + (2247, 7, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dOxojqLm', '8404977'), + (2248, 7, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dOxojqLm', '8430783'), + (2249, 7, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dOxojqLm', '8430784'), + (2250, 7, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dOxojqLm', '8430799'), + (2251, 7, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dOxojqLm', '8430800'), + (2252, 7, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dOxojqLm', '8430801'), + (2253, 7, 3188, 'attending', '2025-07-09 20:49:31', '2025-12-17 19:46:17', 'dOxojqLm', '8438709'), + (2254, 7, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dOxojqLm', '8457738'), + (2255, 7, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dOxojqLm', '8459566'), + (2256, 7, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dOxojqLm', '8459567'), + (2257, 7, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dOxojqLm', '8459568'), + (2258, 7, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dOxojqLm', '8461032'), + (2259, 7, 3214, 'attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dOxojqLm', '8477877'), + (2260, 7, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dOxojqLm', '8485688'), + (2261, 7, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dOxojqLm', '8490587'), + (2262, 7, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dOxojqLm', '8493552'), + (2263, 7, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dOxojqLm', '8493553'), + (2264, 7, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dOxojqLm', '8493554'), + (2265, 7, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dOxojqLm', '8493555'), + (2266, 7, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dOxojqLm', '8493556'), + (2267, 7, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dOxojqLm', '8493557'), + (2268, 7, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dOxojqLm', '8493558'), + (2269, 7, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dOxojqLm', '8493559'), + (2270, 7, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dOxojqLm', '8493560'), + (2271, 7, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dOxojqLm', '8493561'), + (2272, 7, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dOxojqLm', '8493572'), + (2273, 7, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dOxojqLm', '8540725'), + (2274, 7, 3294, 'attending', '2025-10-18 16:52:31', '2025-12-17 19:46:14', 'dOxojqLm', '8546775'), + (2275, 7, 3302, 'attending', '2025-11-12 01:35:52', '2025-12-17 19:46:14', 'dOxojqLm', '8550022'), + (2276, 7, 3304, 'attending', '2025-11-12 01:35:55', '2025-12-17 19:46:14', 'dOxojqLm', '8550024'), + (2277, 7, 3305, 'attending', '2025-11-12 01:36:00', '2025-12-17 19:46:11', 'dOxojqLm', '8550025'), + (2278, 7, 3306, 'attending', '2025-12-01 20:47:45', '2025-12-17 19:46:11', 'dOxojqLm', '8550026'), + (2279, 7, 3307, 'not_attending', '2025-12-01 20:47:40', '2025-12-17 19:46:11', 'dOxojqLm', '8550027'), + (2280, 7, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dOxojqLm', '8555421'), + (2281, 8, 2522, 'attending', '2024-07-14 21:33:11', '2025-12-17 19:46:30', 'Arr7X9XA', '7074362'), + (2282, 8, 2531, 'attending', '2024-08-29 21:34:40', '2025-12-17 19:46:32', 'Arr7X9XA', '7074378'), + (2283, 8, 2532, 'attending', '2024-09-04 20:27:14', '2025-12-17 19:46:32', 'Arr7X9XA', '7074383'), + (2284, 8, 2533, 'not_attending', '2024-08-18 19:05:48', '2025-12-17 19:46:32', 'Arr7X9XA', '7074384'), + (2285, 8, 2691, 'attending', '2024-07-14 12:49:47', '2025-12-17 19:46:30', 'Arr7X9XA', '7324076'), + (2286, 8, 2692, 'attending', '2024-07-21 12:34:07', '2025-12-17 19:46:30', 'Arr7X9XA', '7324077'), + (2287, 8, 2693, 'attending', '2024-07-28 12:18:38', '2025-12-17 19:46:31', 'Arr7X9XA', '7324078'), + (2288, 8, 2694, 'attending', '2024-08-08 01:53:12', '2025-12-17 19:46:31', 'Arr7X9XA', '7324079'), + (2289, 8, 2695, 'attending', '2024-08-13 17:10:05', '2025-12-17 19:46:31', 'Arr7X9XA', '7324080'), + (2290, 8, 2696, 'attending', '2024-08-18 19:05:59', '2025-12-17 19:46:32', 'Arr7X9XA', '7324081'), + (2291, 8, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Arr7X9XA', '7324082'), + (2292, 8, 2698, 'attending', '2024-09-02 21:19:42', '2025-12-17 19:46:24', 'Arr7X9XA', '7324083'), + (2293, 8, 2712, 'attending', '2024-07-29 15:27:18', '2025-12-17 19:46:31', 'Arr7X9XA', '7326525'), + (2294, 8, 2722, 'not_attending', '2024-07-12 22:43:28', '2025-12-17 19:46:30', 'Arr7X9XA', '7331457'), + (2295, 8, 2757, 'attending', '2024-07-14 12:47:37', '2025-12-17 19:46:30', 'Arr7X9XA', '7358733'), + (2296, 8, 2759, 'attending', '2024-07-12 18:19:06', '2025-12-17 19:46:30', 'Arr7X9XA', '7359624'), + (2297, 8, 2764, 'attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'Arr7X9XA', '7363595'), + (2298, 8, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'Arr7X9XA', '7363643'), + (2299, 8, 2768, 'attending', '2024-07-18 15:49:59', '2025-12-17 19:46:30', 'Arr7X9XA', '7366031'), + (2300, 8, 2769, 'not_attending', '2024-07-20 13:17:08', '2025-12-17 19:46:30', 'Arr7X9XA', '7366803'), + (2301, 8, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Arr7X9XA', '7368606'), + (2302, 8, 2776, 'attending', '2024-07-23 18:34:04', '2025-12-17 19:46:30', 'Arr7X9XA', '7370690'), + (2303, 8, 2781, 'attending', '2024-07-28 12:19:16', '2025-12-17 19:46:30', 'Arr7X9XA', '7373194'), + (2304, 8, 2783, 'attending', '2024-08-03 15:31:51', '2025-12-17 19:46:31', 'Arr7X9XA', '7379699'), + (2305, 8, 2786, 'maybe', '2024-08-04 02:55:41', '2025-12-17 19:46:31', 'Arr7X9XA', '7381403'), + (2306, 8, 2799, 'attending', '2024-08-12 16:18:02', '2025-12-17 19:46:31', 'Arr7X9XA', '7395922'), + (2307, 8, 2800, 'not_attending', '2024-08-15 21:45:15', '2025-12-17 19:46:31', 'Arr7X9XA', '7397405'), + (2308, 8, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Arr7X9XA', '7397462'), + (2309, 8, 2803, 'attending', '2024-08-17 15:57:13', '2025-12-17 19:46:32', 'Arr7X9XA', '7397869'), + (2310, 8, 2805, 'attending', '2024-08-20 22:10:33', '2025-12-17 19:46:32', 'Arr7X9XA', '7403620'), + (2311, 8, 2813, 'attending', '2024-09-06 22:25:01', '2025-12-17 19:46:24', 'Arr7X9XA', '7424105'), + (2312, 8, 2821, 'attending', '2024-10-12 13:40:35', '2025-12-17 19:46:26', 'Arr7X9XA', '7424275'), + (2313, 8, 2822, 'attending', '2024-11-10 20:18:49', '2025-12-17 19:46:26', 'Arr7X9XA', '7424276'), + (2314, 8, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Arr7X9XA', '7432751'), + (2315, 8, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Arr7X9XA', '7432752'), + (2316, 8, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Arr7X9XA', '7432753'), + (2317, 8, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Arr7X9XA', '7432754'), + (2318, 8, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Arr7X9XA', '7432755'), + (2319, 8, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Arr7X9XA', '7432756'), + (2320, 8, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Arr7X9XA', '7432758'), + (2321, 8, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Arr7X9XA', '7432759'), + (2322, 8, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Arr7X9XA', '7433834'), + (2323, 8, 2834, 'attending', '2024-09-14 13:38:20', '2025-12-17 19:46:25', 'Arr7X9XA', '7433852'), + (2324, 8, 2839, 'not_attending', '2024-09-24 20:19:36', '2025-12-17 19:46:25', 'Arr7X9XA', '7439262'), + (2325, 8, 2844, 'attending', '2024-09-20 17:20:14', '2025-12-17 19:46:25', 'Arr7X9XA', '7450233'), + (2326, 8, 2855, 'attending', '2024-10-03 17:59:00', '2025-12-17 19:46:26', 'Arr7X9XA', '7469385'), + (2327, 8, 2861, 'attending', '2024-10-03 17:58:53', '2025-12-17 19:46:26', 'Arr7X9XA', '7469826'), + (2328, 8, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Arr7X9XA', '7470197'), + (2329, 8, 2867, 'attending', '2024-12-06 20:42:33', '2025-12-17 19:46:21', 'Arr7X9XA', '7471202'), + (2330, 8, 2878, 'attending', '2024-10-16 12:06:32', '2025-12-17 19:46:26', 'Arr7X9XA', '7633857'), + (2331, 8, 2880, 'attending', '2024-10-12 13:40:22', '2025-12-17 19:46:26', 'Arr7X9XA', '7636316'), + (2332, 8, 2881, 'attending', '2024-11-06 21:32:01', '2025-12-17 19:46:26', 'Arr7X9XA', '7644047'), + (2333, 8, 2883, 'attending', '2024-10-23 20:26:40', '2025-12-17 19:46:26', 'Arr7X9XA', '7649157'), + (2334, 8, 2889, 'attending', '2024-10-28 20:29:43', '2025-12-17 19:46:26', 'Arr7X9XA', '7660485'), + (2335, 8, 2892, 'attending', '2024-10-30 19:53:40', '2025-12-17 19:46:26', 'Arr7X9XA', '7672064'), + (2336, 8, 2893, 'attending', '2024-11-05 14:53:55', '2025-12-17 19:46:26', 'Arr7X9XA', '7672705'), + (2337, 8, 2896, 'attending', '2024-11-11 00:31:38', '2025-12-17 19:46:27', 'Arr7X9XA', '7683647'), + (2338, 8, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'Arr7X9XA', '7685613'), + (2339, 8, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Arr7X9XA', '7688194'), + (2340, 8, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Arr7X9XA', '7688196'), + (2341, 8, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Arr7X9XA', '7688289'), + (2342, 8, 2906, 'attending', '2024-11-09 22:08:28', '2025-12-17 19:46:26', 'Arr7X9XA', '7689366'), + (2343, 8, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Arr7X9XA', '7692763'), + (2344, 8, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Arr7X9XA', '7697552'), + (2345, 8, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Arr7X9XA', '7699878'), + (2346, 8, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Arr7X9XA', '7704043'), + (2347, 8, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Arr7X9XA', '7712467'), + (2348, 8, 2925, 'attending', '2024-12-05 18:12:14', '2025-12-17 19:46:21', 'Arr7X9XA', '7713584'), + (2349, 8, 2926, 'attending', '2024-12-05 18:12:09', '2025-12-17 19:46:21', 'Arr7X9XA', '7713585'), + (2350, 8, 2927, 'not_attending', '2024-12-05 18:12:16', '2025-12-17 19:46:22', 'Arr7X9XA', '7713586'), + (2351, 8, 2929, 'attending', '2024-12-08 20:37:56', '2025-12-17 19:46:21', 'Arr7X9XA', '7723465'), + (2352, 8, 2930, 'attending', '2024-12-07 00:51:27', '2025-12-17 19:46:21', 'Arr7X9XA', '7724554'), + (2353, 8, 2947, 'attending', '2024-12-09 21:15:56', '2025-12-17 19:46:21', 'Arr7X9XA', '7727445'), + (2354, 8, 2951, 'not_attending', '2024-12-11 22:27:25', '2025-12-17 19:46:21', 'Arr7X9XA', '7729509'), + (2355, 8, 2954, 'attending', '2024-12-14 22:55:46', '2025-12-17 19:46:21', 'Arr7X9XA', '7734260'), + (2356, 8, 2955, 'attending', '2024-12-15 20:42:32', '2025-12-17 19:46:21', 'Arr7X9XA', '7735094'), + (2357, 8, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Arr7X9XA', '7738518'), + (2358, 8, 2962, 'attending', '2024-12-26 02:55:48', '2025-12-17 19:46:22', 'Arr7X9XA', '7750632'), + (2359, 8, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Arr7X9XA', '7750636'), + (2360, 8, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Arr7X9XA', '7796540'), + (2361, 8, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Arr7X9XA', '7796541'), + (2362, 8, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Arr7X9XA', '7796542'), + (2363, 8, 2974, 'attending', '2025-01-18 20:44:45', '2025-12-17 19:46:22', 'Arr7X9XA', '7814958'), + (2364, 8, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Arr7X9XA', '7825913'), + (2365, 8, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Arr7X9XA', '7826209'), + (2366, 8, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Arr7X9XA', '7834742'), + (2367, 8, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'Arr7X9XA', '7842108'), + (2368, 8, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Arr7X9XA', '7842902'), + (2369, 8, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Arr7X9XA', '7842903'), + (2370, 8, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Arr7X9XA', '7842904'), + (2371, 8, 2994, 'maybe', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Arr7X9XA', '7842905'), + (2372, 8, 2999, 'attending', '2025-02-13 14:30:37', '2025-12-17 19:46:23', 'Arr7X9XA', '7844784'), + (2373, 8, 3001, 'attending', '2025-02-21 23:49:53', '2025-12-17 19:46:24', 'Arr7X9XA', '7854184'), + (2374, 8, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Arr7X9XA', '7855719'), + (2375, 8, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Arr7X9XA', '7860683'), + (2376, 8, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Arr7X9XA', '7860684'), + (2377, 8, 3009, 'attending', '2025-03-02 14:57:16', '2025-12-17 19:46:18', 'Arr7X9XA', '7864019'), + (2378, 8, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Arr7X9XA', '7866095'), + (2379, 8, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Arr7X9XA', '7869170'), + (2380, 8, 3015, 'not_attending', '2025-04-26 16:44:42', '2025-12-17 19:46:20', 'Arr7X9XA', '7869186'), + (2381, 8, 3016, 'attending', '2025-04-16 15:57:10', '2025-12-17 19:46:20', 'Arr7X9XA', '7869187'), + (2382, 8, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Arr7X9XA', '7869188'), + (2383, 8, 3018, 'attending', '2025-04-12 01:21:59', '2025-12-17 19:46:20', 'Arr7X9XA', '7869189'), + (2384, 8, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Arr7X9XA', '7869201'), + (2385, 8, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Arr7X9XA', '7877465'), + (2386, 8, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'Arr7X9XA', '7878570'), + (2387, 8, 3039, 'maybe', '2025-03-19 20:51:57', '2025-12-17 19:46:19', 'Arr7X9XA', '7881992'), + (2388, 8, 3042, 'attending', '2025-03-15 14:14:23', '2025-12-17 19:46:19', 'Arr7X9XA', '7882467'), + (2389, 8, 3046, 'attending', '2025-04-12 21:00:38', '2025-12-17 19:46:20', 'Arr7X9XA', '7882692'), + (2390, 8, 3054, 'attending', '2025-03-18 16:45:59', '2025-12-17 19:46:19', 'Arr7X9XA', '7884168'), + (2391, 8, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Arr7X9XA', '7888250'), + (2392, 8, 3061, 'attending', '2025-04-02 20:12:41', '2025-12-17 19:46:19', 'Arr7X9XA', '7892590'), + (2393, 8, 3074, 'attending', '2025-04-05 12:41:10', '2025-12-17 19:46:19', 'Arr7X9XA', '7897784'), + (2394, 8, 3075, 'maybe', '2025-04-18 13:20:19', '2025-12-17 19:46:20', 'Arr7X9XA', '7898896'), + (2395, 8, 3076, 'not_attending', '2025-04-05 21:24:48', '2025-12-17 19:46:20', 'Arr7X9XA', '7899007'), + (2396, 8, 3078, 'attending', '2025-04-06 14:35:02', '2025-12-17 19:46:20', 'Arr7X9XA', '7901213'), + (2397, 8, 3079, 'not_attending', '2025-04-06 17:28:05', '2025-12-17 19:46:20', 'Arr7X9XA', '7901439'), + (2398, 8, 3080, 'attending', '2025-04-06 16:39:24', '2025-12-17 19:46:20', 'Arr7X9XA', '7901441'), + (2399, 8, 3087, 'attending', '2025-04-16 15:05:38', '2025-12-17 19:46:20', 'Arr7X9XA', '7903856'), + (2400, 8, 3088, 'attending', '2025-06-09 19:54:23', '2025-12-17 19:46:15', 'Arr7X9XA', '7904777'), + (2401, 8, 3094, 'attending', '2025-05-07 22:28:13', '2025-12-17 19:46:21', 'Arr7X9XA', '8342292'), + (2402, 8, 3095, 'attending', '2025-04-29 14:49:57', '2025-12-17 19:46:20', 'Arr7X9XA', '8342293'), + (2403, 8, 3097, 'not_attending', '2025-04-25 12:22:11', '2025-12-17 19:46:20', 'Arr7X9XA', '8342993'), + (2404, 8, 3100, 'attending', '2025-04-22 12:42:46', '2025-12-17 19:46:20', 'Arr7X9XA', '8343977'), + (2405, 8, 3103, 'attending', '2025-04-26 16:44:35', '2025-12-17 19:46:20', 'Arr7X9XA', '8347770'), + (2406, 8, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Arr7X9XA', '8349164'), + (2407, 8, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Arr7X9XA', '8349545'), + (2408, 8, 3110, 'attending', '2025-04-30 16:55:08', '2025-12-17 19:46:20', 'Arr7X9XA', '8353484'), + (2409, 8, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'Arr7X9XA', '8353584'), + (2410, 8, 3119, 'attending', '2025-05-13 19:04:34', '2025-12-17 19:46:21', 'Arr7X9XA', '8360035'), + (2411, 8, 3120, 'attending', '2025-05-07 22:28:25', '2025-12-17 19:46:21', 'Arr7X9XA', '8360736'), + (2412, 8, 3121, 'attending', '2025-05-13 00:32:52', '2025-12-17 19:46:21', 'Arr7X9XA', '8362730'), + (2413, 8, 3122, 'attending', '2025-05-09 20:16:56', '2025-12-17 19:46:21', 'Arr7X9XA', '8362978'), + (2414, 8, 3123, 'attending', '2025-05-08 18:49:10', '2025-12-17 19:46:21', 'Arr7X9XA', '8363523'), + (2415, 8, 3124, 'maybe', '2025-05-09 20:17:05', '2025-12-17 19:46:21', 'Arr7X9XA', '8363566'), + (2416, 8, 3126, 'maybe', '2025-05-13 22:28:16', '2025-12-17 19:46:21', 'Arr7X9XA', '8365614'), + (2417, 8, 3127, 'attending', '2025-05-11 23:06:07', '2025-12-17 19:46:21', 'Arr7X9XA', '8365615'), + (2418, 8, 3129, 'attending', '2025-05-11 23:40:24', '2025-12-17 19:46:21', 'Arr7X9XA', '8366441'), + (2419, 8, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Arr7X9XA', '8368028'), + (2420, 8, 3132, 'not_attending', '2025-05-15 19:59:03', '2025-12-17 19:46:21', 'Arr7X9XA', '8368029'), + (2421, 8, 3133, 'attending', '2025-05-15 19:59:06', '2025-12-17 19:46:14', 'Arr7X9XA', '8368030'), + (2422, 8, 3135, 'not_attending', '2025-05-17 13:41:35', '2025-12-17 19:46:21', 'Arr7X9XA', '8373126'), + (2423, 8, 3136, 'maybe', '2025-05-21 19:35:02', '2025-12-17 19:46:21', 'Arr7X9XA', '8374152'), + (2424, 8, 3137, 'maybe', '2025-05-21 19:34:57', '2025-12-17 19:46:21', 'Arr7X9XA', '8374153'), + (2425, 8, 3138, 'attending', '2025-05-18 16:47:49', '2025-12-17 19:46:21', 'Arr7X9XA', '8376037'), + (2426, 8, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Arr7X9XA', '8388462'), + (2427, 8, 3150, 'attending', '2025-06-21 16:53:03', '2025-12-17 19:46:15', 'Arr7X9XA', '8393174'), + (2428, 8, 3151, 'attending', '2025-05-31 21:41:12', '2025-12-17 19:46:14', 'Arr7X9XA', '8393497'), + (2429, 8, 3153, 'maybe', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Arr7X9XA', '8400273'), + (2430, 8, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'Arr7X9XA', '8400274'), + (2431, 8, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Arr7X9XA', '8400275'), + (2432, 8, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Arr7X9XA', '8400276'), + (2433, 8, 3159, 'maybe', '2025-06-09 19:54:35', '2025-12-17 19:46:15', 'Arr7X9XA', '8401410'), + (2434, 8, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Arr7X9XA', '8404977'), + (2435, 8, 3173, 'attending', '2025-06-14 18:16:14', '2025-12-17 19:46:15', 'Arr7X9XA', '8410806'), + (2436, 8, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Arr7X9XA', '8430783'), + (2437, 8, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Arr7X9XA', '8430784'), + (2438, 8, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Arr7X9XA', '8430799'), + (2439, 8, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Arr7X9XA', '8430800'), + (2440, 8, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Arr7X9XA', '8430801'), + (2441, 8, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Arr7X9XA', '8438709'), + (2442, 8, 3190, 'maybe', '2025-07-18 15:36:45', '2025-12-17 19:46:17', 'Arr7X9XA', '8443962'), + (2443, 8, 3192, 'attending', '2025-07-15 16:07:18', '2025-12-17 19:46:17', 'Arr7X9XA', '8456429'), + (2444, 8, 3193, 'attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Arr7X9XA', '8457738'), + (2445, 8, 3194, 'maybe', '2025-07-17 22:37:32', '2025-12-17 19:46:17', 'Arr7X9XA', '8457740'), + (2446, 8, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Arr7X9XA', '8459566'), + (2447, 8, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Arr7X9XA', '8459567'), + (2448, 8, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Arr7X9XA', '8461032'), + (2449, 8, 3211, 'attending', '2025-08-08 14:47:53', '2025-12-17 19:46:17', 'Arr7X9XA', '8477785'), + (2450, 8, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Arr7X9XA', '8477877'), + (2451, 8, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'Arr7X9XA', '8485688'), + (2452, 8, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Arr7X9XA', '8490587'), + (2453, 8, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Arr7X9XA', '8493552'), + (2454, 8, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Arr7X9XA', '8493553'), + (2455, 8, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Arr7X9XA', '8493554'), + (2456, 8, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Arr7X9XA', '8493555'), + (2457, 8, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Arr7X9XA', '8493556'), + (2458, 8, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Arr7X9XA', '8493557'), + (2459, 8, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Arr7X9XA', '8493558'), + (2460, 8, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Arr7X9XA', '8493559'), + (2461, 8, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Arr7X9XA', '8493560'), + (2462, 8, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Arr7X9XA', '8493561'), + (2463, 8, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Arr7X9XA', '8493572'), + (2464, 8, 3269, 'not_attending', '2025-09-25 16:03:44', '2025-12-17 19:46:12', 'Arr7X9XA', '8514582'), + (2465, 8, 3272, 'attending', '2025-09-20 22:11:34', '2025-12-17 19:46:12', 'Arr7X9XA', '8524068'), + (2466, 8, 3275, 'attending', '2025-09-20 22:21:20', '2025-12-17 19:46:12', 'Arr7X9XA', '8527786'), + (2467, 8, 3277, 'attending', '2025-09-27 18:18:50', '2025-12-17 19:46:12', 'Arr7X9XA', '8533938'), + (2468, 8, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Arr7X9XA', '8540725'), + (2469, 8, 3295, 'attending', '2025-10-28 16:23:53', '2025-12-17 19:46:14', 'Arr7X9XA', '8547541'), + (2470, 8, 3300, 'not_attending', '2025-11-08 21:28:29', '2025-12-17 19:46:14', 'Arr7X9XA', '8549145'), + (2471, 8, 3304, 'attending', '2025-11-22 21:02:17', '2025-12-17 19:46:14', 'Arr7X9XA', '8550024'), + (2472, 8, 3305, 'attending', '2025-12-02 18:58:55', '2025-12-17 19:46:11', 'Arr7X9XA', '8550025'), + (2473, 8, 3306, 'not_attending', '2025-12-14 00:10:04', '2025-12-17 19:46:11', 'Arr7X9XA', '8550026'), + (2474, 8, 3314, 'attending', '2025-11-01 00:12:00', '2025-12-17 19:46:14', 'Arr7X9XA', '8551821'), + (2475, 8, 3315, 'attending', '2025-11-05 01:13:48', '2025-12-17 19:46:14', 'Arr7X9XA', '8552486'), + (2476, 8, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Arr7X9XA', '8555421'), + (2477, 8, 3326, 'attending', '2025-11-20 00:28:50', '2025-12-17 19:46:14', 'Arr7X9XA', '8556661'), + (2478, 8, 3327, 'attending', '2025-12-05 00:39:00', '2025-12-17 19:46:11', 'Arr7X9XA', '8557174'), + (2479, 8, 3331, 'attending', '2025-12-04 23:08:43', '2025-12-17 19:46:11', 'Arr7X9XA', '8562166'), + (2480, 8, 3334, 'attending', '2025-12-08 21:00:13', '2025-12-17 19:46:11', 'Arr7X9XA', '8563246'), + (2481, 8, 3336, 'attending', '2025-12-15 20:55:40', '2025-12-17 19:46:11', 'Arr7X9XA', '8563248'), + (2482, 8, 3337, 'attending', '2025-12-12 14:34:26', '2025-12-17 19:46:11', 'Arr7X9XA', '8563315'), + (2483, 8, 3343, 'attending', '2025-12-17 00:02:45', '2025-12-17 19:46:11', 'Arr7X9XA', '8564411'), + (2484, 8, 3346, 'attending', '2026-01-02 20:17:15', '2026-01-02 20:17:15', NULL, NULL), + (2485, 9, 3241, 'attending', '2025-10-11 20:11:01', '2025-12-17 19:46:13', 'dKw8DJ5d', '8493557'), + (2486, 9, 3242, 'attending', '2025-10-22 19:35:13', '2025-12-17 19:46:14', 'dKw8DJ5d', '8493558'), + (2487, 9, 3243, 'attending', '2025-10-14 19:49:49', '2025-12-17 19:46:14', 'dKw8DJ5d', '8493559'), + (2488, 9, 3253, 'not_attending', '2025-10-26 16:34:39', '2025-12-17 19:46:14', 'dKw8DJ5d', '8493572'), + (2489, 9, 3288, 'attending', '2025-10-11 09:04:09', '2025-12-17 19:46:13', 'dKw8DJ5d', '8542408'), + (2490, 9, 3289, 'not_attending', '2025-10-22 22:09:06', '2025-12-17 19:46:14', 'dKw8DJ5d', '8542939'), + (2491, 9, 3295, 'attending', '2025-10-29 21:05:57', '2025-12-17 19:46:14', 'dKw8DJ5d', '8547541'), + (2492, 9, 3300, 'attending', '2025-11-05 21:08:00', '2025-12-17 19:46:14', 'dKw8DJ5d', '8549145'), + (2493, 9, 3302, 'attending', '2025-11-11 21:49:24', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550022'), + (2494, 9, 3304, 'attending', '2025-11-18 00:16:58', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550024'), + (2495, 9, 3305, 'attending', '2025-12-02 23:12:34', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550025'), + (2496, 9, 3306, 'not_attending', '2025-12-07 04:37:28', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550026'), + (2497, 9, 3307, 'not_attending', '2025-12-18 23:24:23', '2025-12-20 21:09:13', NULL, NULL), + (2498, 9, 3308, 'not_attending', '2025-11-02 16:34:33', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550408'), + (2499, 9, 3309, 'not_attending', '2025-11-02 16:34:42', '2025-12-17 19:46:14', 'dKw8DJ5d', '8550409'), + (2500, 9, 3310, 'not_attending', '2025-11-08 16:35:53', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550410'), + (2501, 9, 3311, 'not_attending', '2025-12-02 23:11:57', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550412'), + (2502, 9, 3312, 'not_attending', '2025-12-02 23:12:02', '2025-12-17 19:46:11', 'dKw8DJ5d', '8550413'), + (2503, 9, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dKw8DJ5d', '8555421'), + (2504, 9, 3331, 'attending', '2025-12-02 21:10:47', '2025-12-17 19:46:11', 'dKw8DJ5d', '8562166'), + (2505, 9, 3333, 'attending', '2025-12-13 16:59:32', '2025-12-17 19:46:11', 'dKw8DJ5d', '8562500'), + (2506, 9, 3337, 'attending', '2025-12-07 04:37:22', '2025-12-17 19:46:11', 'dKw8DJ5d', '8563315'), + (2507, 9, 3346, 'attending', '2026-01-02 16:46:39', '2026-01-02 16:46:39', NULL, NULL), + (2508, 10, 3305, 'maybe', '2025-12-03 13:49:43', '2025-12-17 19:46:11', 'dKnJnJa4', '8550025'), + (2509, 10, 3310, 'attending', '2025-12-01 13:54:13', '2025-12-17 19:46:11', 'dKnJnJa4', '8550410'), + (2510, 10, 3311, 'maybe', '2025-12-04 20:49:07', '2025-12-17 19:46:11', 'dKnJnJa4', '8550412'), + (2511, 10, 3330, 'attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', 'dKnJnJa4', '8561720'), + (2512, 10, 3332, 'not_attending', '2025-12-03 13:49:37', '2025-12-17 19:46:11', 'dKnJnJa4', '8562248'), + (2513, 10, 3333, 'maybe', '2025-12-06 15:59:09', '2025-12-17 19:46:11', 'dKnJnJa4', '8562500'), + (2514, 11, 2136, 'not_attending', '2023-07-23 02:19:46', '2025-12-17 19:46:53', 'mjj86rgm', '6187966'), + (2515, 11, 2148, 'attending', '2023-07-23 02:18:56', '2025-12-17 19:46:53', 'mjj86rgm', '6335667'), + (2516, 11, 2159, 'attending', '2023-07-22 03:01:47', '2025-12-17 19:46:53', 'mjj86rgm', '6338355'), + (2517, 11, 2160, 'maybe', '2023-07-26 15:41:14', '2025-12-17 19:46:54', 'mjj86rgm', '6338358'), + (2518, 11, 2165, 'attending', '2023-08-01 18:11:10', '2025-12-17 19:46:54', 'mjj86rgm', '6342044'), + (2519, 11, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mjj86rgm', '6343294'), + (2520, 11, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mjj86rgm', '6347034'), + (2521, 11, 2177, 'attending', '2023-08-05 03:42:19', '2025-12-17 19:46:55', 'mjj86rgm', '6347053'), + (2522, 11, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mjj86rgm', '6347056'), + (2523, 11, 2180, 'attending', '2023-07-27 17:37:28', '2025-12-17 19:46:54', 'mjj86rgm', '6348788'), + (2524, 11, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mjj86rgm', '6353830'), + (2525, 11, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mjj86rgm', '6353831'), + (2526, 11, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mjj86rgm', '6357867'), + (2527, 11, 2190, 'attending', '2023-08-04 12:56:13', '2025-12-17 19:46:55', 'mjj86rgm', '6357892'), + (2528, 11, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mjj86rgm', '6358652'), + (2529, 11, 2196, 'not_attending', '2023-09-05 19:46:17', '2025-12-17 19:46:56', 'mjj86rgm', '6359398'), + (2530, 11, 2197, 'attending', '2023-09-13 12:52:03', '2025-12-17 19:46:44', 'mjj86rgm', '6359399'), + (2531, 11, 2199, 'attending', '2023-08-10 23:05:17', '2025-12-17 19:46:55', 'mjj86rgm', '6359849'), + (2532, 11, 2200, 'attending', '2023-08-08 13:28:54', '2025-12-17 19:46:55', 'mjj86rgm', '6359850'), + (2533, 11, 2202, 'attending', '2023-08-06 18:29:00', '2025-12-17 19:46:54', 'mjj86rgm', '6360509'), + (2534, 11, 2204, 'not_attending', '2023-08-18 01:24:50', '2025-12-17 19:46:55', 'mjj86rgm', '6361542'), + (2535, 11, 2206, 'attending', '2023-08-08 17:04:29', '2025-12-17 19:46:55', 'mjj86rgm', '6361659'), + (2536, 11, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'mjj86rgm', '6361709'), + (2537, 11, 2209, 'maybe', '2023-08-21 09:36:48', '2025-12-17 19:46:55', 'mjj86rgm', '6361710'), + (2538, 11, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mjj86rgm', '6361711'), + (2539, 11, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mjj86rgm', '6361712'), + (2540, 11, 2212, 'not_attending', '2023-09-24 01:42:18', '2025-12-17 19:46:45', 'mjj86rgm', '6361713'), + (2541, 11, 2214, 'attending', '2023-08-13 16:25:59', '2025-12-17 19:46:55', 'mjj86rgm', '6363218'), + (2542, 11, 2215, 'attending', '2023-08-11 11:45:03', '2025-12-17 19:46:55', 'mjj86rgm', '6363479'), + (2543, 11, 2217, 'maybe', '2023-08-14 18:37:01', '2025-12-17 19:46:55', 'mjj86rgm', '6364333'), + (2544, 11, 2220, 'maybe', '2023-08-28 04:54:19', '2025-12-17 19:46:56', 'mjj86rgm', '6367310'), + (2545, 11, 2227, 'attending', '2023-08-20 17:24:28', '2025-12-17 19:46:55', 'mjj86rgm', '6370581'), + (2546, 11, 2232, 'not_attending', '2023-08-24 02:33:58', '2025-12-17 19:46:55', 'mjj86rgm', '6374818'), + (2547, 11, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mjj86rgm', '6382573'), + (2548, 11, 2239, 'not_attending', '2023-08-31 18:00:06', '2025-12-17 19:46:56', 'mjj86rgm', '6387592'), + (2549, 11, 2240, 'attending', '2023-09-05 18:29:51', '2025-12-17 19:46:56', 'mjj86rgm', '6388603'), + (2550, 11, 2241, 'attending', '2023-09-05 15:39:26', '2025-12-17 19:46:44', 'mjj86rgm', '6388604'), + (2551, 11, 2242, 'attending', '2023-09-22 17:33:07', '2025-12-17 19:46:45', 'mjj86rgm', '6388606'), + (2552, 11, 2243, 'attending', '2023-09-05 11:29:34', '2025-12-17 19:46:56', 'mjj86rgm', '6393686'), + (2553, 11, 2244, 'attending', '2023-09-05 11:30:41', '2025-12-17 19:46:44', 'mjj86rgm', '6393700'), + (2554, 11, 2245, 'attending', '2023-09-14 23:09:21', '2025-12-17 19:46:45', 'mjj86rgm', '6393703'), + (2555, 11, 2247, 'attending', '2023-09-05 19:43:13', '2025-12-17 19:46:56', 'mjj86rgm', '6394628'), + (2556, 11, 2248, 'attending', '2023-09-07 16:19:07', '2025-12-17 19:46:44', 'mjj86rgm', '6394629'), + (2557, 11, 2249, 'attending', '2023-09-18 13:41:52', '2025-12-17 19:46:45', 'mjj86rgm', '6394630'), + (2558, 11, 2250, 'attending', '2023-09-18 22:30:46', '2025-12-17 19:46:45', 'mjj86rgm', '6394631'), + (2559, 11, 2252, 'maybe', '2023-09-10 19:59:23', '2025-12-17 19:46:45', 'mjj86rgm', '6396837'), + (2560, 11, 2253, 'attending', '2023-09-25 20:58:42', '2025-12-17 19:46:45', 'mjj86rgm', '6401811'), + (2561, 11, 2258, 'attending', '2023-09-24 01:41:37', '2025-12-17 19:46:45', 'mjj86rgm', '6419492'), + (2562, 11, 2259, 'not_attending', '2023-09-22 17:21:01', '2025-12-17 19:46:45', 'mjj86rgm', '6421257'), + (2563, 11, 2261, 'attending', '2023-09-28 23:46:10', '2025-12-17 19:46:45', 'mjj86rgm', '6427422'), + (2564, 11, 2262, 'attending', '2023-10-01 03:55:53', '2025-12-17 19:46:45', 'mjj86rgm', '6427423'), + (2565, 11, 2268, 'attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mjj86rgm', '6440863'), + (2566, 11, 2269, 'attending', '2023-10-03 14:29:20', '2025-12-17 19:46:45', 'mjj86rgm', '6442978'), + (2567, 11, 2270, 'attending', '2023-10-03 14:24:30', '2025-12-17 19:46:46', 'mjj86rgm', '6443067'), + (2568, 11, 2271, 'maybe', '2023-10-06 22:43:11', '2025-12-17 19:46:45', 'mjj86rgm', '6445375'), + (2569, 11, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mjj86rgm', '6445440'), + (2570, 11, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mjj86rgm', '6453951'), + (2571, 11, 2279, 'attending', '2023-10-08 20:04:54', '2025-12-17 19:46:46', 'mjj86rgm', '6455460'), + (2572, 11, 2284, 'attending', '2023-10-10 14:12:23', '2025-12-17 19:46:46', 'mjj86rgm', '6460928'), + (2573, 11, 2285, 'attending', '2023-10-15 23:07:12', '2025-12-17 19:46:47', 'mjj86rgm', '6460929'), + (2574, 11, 2286, 'attending', '2023-11-30 00:34:17', '2025-12-17 19:46:48', 'mjj86rgm', '6460930'), + (2575, 11, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mjj86rgm', '6461696'), + (2576, 11, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mjj86rgm', '6462129'), + (2577, 11, 2290, 'attending', '2023-10-15 20:17:29', '2025-12-17 19:46:46', 'mjj86rgm', '6462214'), + (2578, 11, 2291, 'attending', '2023-10-20 22:42:29', '2025-12-17 19:46:46', 'mjj86rgm', '6462215'), + (2579, 11, 2292, 'attending', '2023-10-30 22:35:41', '2025-12-17 19:46:47', 'mjj86rgm', '6462216'), + (2580, 11, 2293, 'attending', '2023-10-11 21:29:52', '2025-12-17 19:46:46', 'mjj86rgm', '6463218'), + (2581, 11, 2299, 'attending', '2023-10-17 11:56:33', '2025-12-17 19:46:46', 'mjj86rgm', '6472181'), + (2582, 11, 2300, 'maybe', '2023-10-15 23:07:32', '2025-12-17 19:46:47', 'mjj86rgm', '6472185'), + (2583, 11, 2302, 'attending', '2023-10-24 13:43:03', '2025-12-17 19:46:46', 'mjj86rgm', '6482535'), + (2584, 11, 2303, 'not_attending', '2023-10-24 15:43:20', '2025-12-17 19:46:47', 'mjj86rgm', '6482691'), + (2585, 11, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mjj86rgm', '6482693'), + (2586, 11, 2306, 'attending', '2023-11-15 16:14:57', '2025-12-17 19:46:47', 'mjj86rgm', '6484200'), + (2587, 11, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mjj86rgm', '6484680'), + (2588, 11, 2310, 'attending', '2023-11-06 14:23:44', '2025-12-17 19:46:47', 'mjj86rgm', '6487709'), + (2589, 11, 2311, 'attending', '2023-11-07 00:50:55', '2025-12-17 19:46:47', 'mjj86rgm', '6487725'), + (2590, 11, 2315, 'attending', '2023-11-06 02:15:30', '2025-12-17 19:46:47', 'mjj86rgm', '6493666'), + (2591, 11, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mjj86rgm', '6507741'), + (2592, 11, 2318, 'attending', '2023-10-30 15:02:20', '2025-12-17 19:46:47', 'mjj86rgm', '6508566'), + (2593, 11, 2319, 'not_attending', '2023-10-30 15:01:50', '2025-12-17 19:46:47', 'mjj86rgm', '6508567'), + (2594, 11, 2320, 'attending', '2023-11-07 04:43:16', '2025-12-17 19:46:47', 'mjj86rgm', '6508647'), + (2595, 11, 2322, 'attending', '2023-11-09 20:16:49', '2025-12-17 19:46:48', 'mjj86rgm', '6514659'), + (2596, 11, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mjj86rgm', '6514660'), + (2597, 11, 2324, 'attending', '2023-12-09 18:12:58', '2025-12-17 19:46:49', 'mjj86rgm', '6514662'), + (2598, 11, 2325, 'attending', '2023-12-10 23:18:31', '2025-12-17 19:46:36', 'mjj86rgm', '6514663'), + (2599, 11, 2329, 'maybe', '2023-11-05 21:14:33', '2025-12-17 19:46:47', 'mjj86rgm', '6517138'), + (2600, 11, 2331, 'attending', '2023-11-08 00:48:34', '2025-12-17 19:46:47', 'mjj86rgm', '6518640'), + (2601, 11, 2333, 'attending', '2023-11-06 02:52:27', '2025-12-17 19:46:47', 'mjj86rgm', '6519103'), + (2602, 11, 2335, 'attending', '2023-11-08 00:48:52', '2025-12-17 19:46:47', 'mjj86rgm', '6534890'), + (2603, 11, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mjj86rgm', '6535681'), + (2604, 11, 2338, 'attending', '2023-11-23 20:30:39', '2025-12-17 19:46:48', 'mjj86rgm', '6538868'), + (2605, 11, 2345, 'attending', '2023-11-23 20:31:15', '2025-12-17 19:46:48', 'mjj86rgm', '6582414'), + (2606, 11, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mjj86rgm', '6584747'), + (2607, 11, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mjj86rgm', '6587097'), + (2608, 11, 2357, 'maybe', '2023-12-18 19:04:56', '2025-12-17 19:46:36', 'mjj86rgm', '6593341'), + (2609, 11, 2362, 'not_attending', '2023-12-05 02:24:10', '2025-12-17 19:46:49', 'mjj86rgm', '6605708'), + (2610, 11, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mjj86rgm', '6609022'), + (2611, 11, 2364, 'attending', '2023-12-07 04:24:32', '2025-12-17 19:46:49', 'mjj86rgm', '6613011'), + (2612, 11, 2366, 'attending', '2023-12-10 23:18:02', '2025-12-17 19:46:36', 'mjj86rgm', '6615304'), + (2613, 11, 2370, 'attending', '2023-12-12 20:23:41', '2025-12-17 19:46:36', 'mjj86rgm', '6623765'), + (2614, 11, 2371, 'attending', '2023-12-13 04:09:59', '2025-12-17 19:46:36', 'mjj86rgm', '6624495'), + (2615, 11, 2373, 'attending', '2024-01-08 13:01:45', '2025-12-17 19:46:38', 'mjj86rgm', '6632678'), + (2616, 11, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mjj86rgm', '6632757'), + (2617, 11, 2377, 'not_attending', '2024-01-03 04:13:45', '2025-12-17 19:46:37', 'mjj86rgm', '6643448'), + (2618, 11, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mjj86rgm', '6644187'), + (2619, 11, 2382, 'not_attending', '2024-01-03 04:13:18', '2025-12-17 19:46:37', 'mjj86rgm', '6646401'), + (2620, 11, 2384, 'not_attending', '2024-01-03 04:13:28', '2025-12-17 19:46:37', 'mjj86rgm', '6648022'), + (2621, 11, 2385, 'not_attending', '2024-01-03 04:13:49', '2025-12-17 19:46:37', 'mjj86rgm', '6648943'), + (2622, 11, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mjj86rgm', '6648951'), + (2623, 11, 2387, 'not_attending', '2024-01-03 04:13:29', '2025-12-17 19:46:37', 'mjj86rgm', '6648952'), + (2624, 11, 2388, 'not_attending', '2024-01-03 04:13:41', '2025-12-17 19:46:37', 'mjj86rgm', '6649244'), + (2625, 11, 2391, 'attending', '2024-01-07 15:26:09', '2025-12-17 19:46:37', 'mjj86rgm', '6654138'), + (2626, 11, 2392, 'maybe', '2024-01-07 15:26:05', '2025-12-17 19:46:37', 'mjj86rgm', '6654412'), + (2627, 11, 2394, 'maybe', '2024-01-18 12:07:02', '2025-12-17 19:46:40', 'mjj86rgm', '6654470'), + (2628, 11, 2395, 'attending', '2024-01-08 05:08:59', '2025-12-17 19:46:38', 'mjj86rgm', '6654471'), + (2629, 11, 2396, 'attending', '2024-01-08 05:09:01', '2025-12-17 19:46:38', 'mjj86rgm', '6655401'), + (2630, 11, 2398, 'attending', '2024-01-07 15:25:53', '2025-12-17 19:46:37', 'mjj86rgm', '6657381'), + (2631, 11, 2399, 'attending', '2024-01-10 16:10:40', '2025-12-17 19:46:38', 'mjj86rgm', '6657583'), + (2632, 11, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mjj86rgm', '6661585'), + (2633, 11, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mjj86rgm', '6661588'), + (2634, 11, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mjj86rgm', '6661589'), + (2635, 11, 2406, 'maybe', '2024-01-15 05:56:59', '2025-12-17 19:46:40', 'mjj86rgm', '6692344'), + (2636, 11, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mjj86rgm', '6699906'), + (2637, 11, 2408, 'attending', '2024-01-15 05:56:52', '2025-12-17 19:46:40', 'mjj86rgm', '6699907'), + (2638, 11, 2409, 'attending', '2024-01-28 00:48:26', '2025-12-17 19:46:41', 'mjj86rgm', '6699909'), + (2639, 11, 2410, 'not_attending', '2024-02-05 15:05:32', '2025-12-17 19:46:41', 'mjj86rgm', '6699911'), + (2640, 11, 2411, 'not_attending', '2024-02-05 18:30:31', '2025-12-17 19:46:41', 'mjj86rgm', '6699913'), + (2641, 11, 2412, 'attending', '2024-02-20 18:48:13', '2025-12-17 19:46:43', 'mjj86rgm', '6700717'), + (2642, 11, 2414, 'not_attending', '2024-01-20 18:03:47', '2025-12-17 19:46:40', 'mjj86rgm', '6701000'), + (2643, 11, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mjj86rgm', '6701109'), + (2644, 11, 2419, 'not_attending', '2024-01-18 15:39:47', '2025-12-17 19:46:41', 'mjj86rgm', '6704505'), + (2645, 11, 2421, 'attending', '2024-01-22 04:37:54', '2025-12-17 19:46:40', 'mjj86rgm', '6704598'), + (2646, 11, 2423, 'attending', '2024-01-25 04:26:12', '2025-12-17 19:46:40', 'mjj86rgm', '6705141'), + (2647, 11, 2424, 'maybe', '2024-01-19 13:17:48', '2025-12-17 19:46:40', 'mjj86rgm', '6705143'), + (2648, 11, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mjj86rgm', '6705219'), + (2649, 11, 2426, 'not_attending', '2024-01-20 03:19:38', '2025-12-17 19:46:40', 'mjj86rgm', '6705569'), + (2650, 11, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mjj86rgm', '6710153'), + (2651, 11, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mjj86rgm', '6711552'), + (2652, 11, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mjj86rgm', '6711553'), + (2653, 11, 2431, 'attending', '2024-01-27 07:06:02', '2025-12-17 19:46:41', 'mjj86rgm', '6712394'), + (2654, 11, 2433, 'maybe', '2024-01-25 04:26:22', '2025-12-17 19:46:40', 'mjj86rgm', '6715688'), + (2655, 11, 2434, 'attending', '2024-01-26 23:55:13', '2025-12-17 19:46:40', 'mjj86rgm', '6716605'), + (2656, 11, 2437, 'attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mjj86rgm', '6722688'), + (2657, 11, 2438, 'attending', '2024-02-04 16:59:47', '2025-12-17 19:46:41', 'mjj86rgm', '6730201'), + (2658, 11, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mjj86rgm', '6730620'), + (2659, 11, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mjj86rgm', '6730642'), + (2660, 11, 2442, 'attending', '2024-02-02 19:19:22', '2025-12-17 19:46:41', 'mjj86rgm', '6732647'), + (2661, 11, 2444, 'attending', '2024-02-06 15:01:59', '2025-12-17 19:46:41', 'mjj86rgm', '6734367'), + (2662, 11, 2446, 'not_attending', '2024-03-01 15:40:12', '2025-12-17 19:46:43', 'mjj86rgm', '6734369'), + (2663, 11, 2447, 'attending', '2024-03-11 20:20:57', '2025-12-17 19:46:32', 'mjj86rgm', '6734370'), + (2664, 11, 2448, 'attending', '2024-03-26 17:49:55', '2025-12-17 19:46:33', 'mjj86rgm', '6734371'), + (2665, 11, 2453, 'attending', '2024-02-07 16:12:38', '2025-12-17 19:46:42', 'mjj86rgm', '6740364'), + (2666, 11, 2457, 'attending', '2024-02-08 18:14:37', '2025-12-17 19:46:41', 'mjj86rgm', '6742221'), + (2667, 11, 2458, 'maybe', '2024-02-09 22:09:57', '2025-12-17 19:46:41', 'mjj86rgm', '6743731'), + (2668, 11, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mjj86rgm', '6743829'), + (2669, 11, 2465, 'maybe', '2024-02-14 11:32:02', '2025-12-17 19:46:42', 'mjj86rgm', '7026725'), + (2670, 11, 2467, 'maybe', '2024-02-24 22:36:08', '2025-12-17 19:46:43', 'mjj86rgm', '7029987'), + (2671, 11, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mjj86rgm', '7030380'), + (2672, 11, 2471, 'attending', '2024-02-20 02:59:30', '2025-12-17 19:46:42', 'mjj86rgm', '7032425'), + (2673, 11, 2472, 'attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mjj86rgm', '7033677'), + (2674, 11, 2474, 'attending', '2024-02-20 21:42:56', '2025-12-17 19:46:43', 'mjj86rgm', '7035415'), + (2675, 11, 2475, 'maybe', '2024-02-27 21:37:28', '2025-12-17 19:46:43', 'mjj86rgm', '7035643'), + (2676, 11, 2476, 'attending', '2024-02-25 14:43:01', '2025-12-17 19:46:43', 'mjj86rgm', '7035691'), + (2677, 11, 2477, 'maybe', '2024-02-22 16:53:36', '2025-12-17 19:46:42', 'mjj86rgm', '7035692'), + (2678, 11, 2480, 'maybe', '2024-02-25 14:41:40', '2025-12-17 19:46:43', 'mjj86rgm', '7042160'), + (2679, 11, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mjj86rgm', '7044715'), + (2680, 11, 2482, 'not_attending', '2024-03-02 18:35:29', '2025-12-17 19:46:44', 'mjj86rgm', '7044719'), + (2681, 11, 2484, 'maybe', '2024-03-03 17:34:37', '2025-12-17 19:46:43', 'mjj86rgm', '7046836'), + (2682, 11, 2486, 'maybe', '2024-03-03 17:34:23', '2025-12-17 19:46:43', 'mjj86rgm', '7048277'), + (2683, 11, 2487, 'not_attending', '2024-03-11 02:04:24', '2025-12-17 19:46:33', 'mjj86rgm', '7049279'), + (2684, 11, 2489, 'attending', '2024-02-28 02:47:01', '2025-12-17 19:46:43', 'mjj86rgm', '7050161'), + (2685, 11, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mjj86rgm', '7050318'), + (2686, 11, 2491, 'attending', '2024-02-28 02:27:21', '2025-12-17 19:46:44', 'mjj86rgm', '7050319'), + (2687, 11, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mjj86rgm', '7050322'), + (2688, 11, 2497, 'maybe', '2024-03-04 20:07:04', '2025-12-17 19:46:43', 'mjj86rgm', '7057501'), + (2689, 11, 2498, 'attending', '2024-03-17 19:55:28', '2025-12-17 19:46:33', 'mjj86rgm', '7057662'), + (2690, 11, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mjj86rgm', '7057804'), + (2691, 11, 2500, 'attending', '2024-03-05 03:29:27', '2025-12-17 19:46:43', 'mjj86rgm', '7058603'), + (2692, 11, 2501, 'attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'mjj86rgm', '7059866'), + (2693, 11, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mjj86rgm', '7072824'), + (2694, 11, 2508, 'attending', '2024-03-12 16:27:09', '2025-12-17 19:46:32', 'mjj86rgm', '7074348'), + (2695, 11, 2509, 'not_attending', '2024-03-25 02:48:04', '2025-12-17 19:46:33', 'mjj86rgm', '7074349'), + (2696, 11, 2510, 'attending', '2024-03-15 02:25:39', '2025-12-17 19:46:33', 'mjj86rgm', '7074350'), + (2697, 11, 2511, 'attending', '2024-04-10 13:55:37', '2025-12-17 19:46:33', 'mjj86rgm', '7074351'), + (2698, 11, 2512, 'not_attending', '2024-04-02 18:10:15', '2025-12-17 19:46:33', 'mjj86rgm', '7074352'), + (2699, 11, 2513, 'attending', '2024-04-18 03:34:47', '2025-12-17 19:46:34', 'mjj86rgm', '7074353'), + (2700, 11, 2514, 'not_attending', '2024-04-25 21:27:06', '2025-12-17 19:46:34', 'mjj86rgm', '7074354'), + (2701, 11, 2516, 'attending', '2024-04-30 23:33:03', '2025-12-17 19:46:35', 'mjj86rgm', '7074356'), + (2702, 11, 2518, 'attending', '2024-07-19 14:55:57', '2025-12-17 19:46:30', 'mjj86rgm', '7074358'), + (2703, 11, 2520, 'attending', '2024-05-12 04:03:57', '2025-12-17 19:46:35', 'mjj86rgm', '7074360'), + (2704, 11, 2521, 'maybe', '2024-06-20 23:42:43', '2025-12-17 19:46:29', 'mjj86rgm', '7074361'), + (2705, 11, 2523, 'not_attending', '2024-05-23 13:24:31', '2025-12-17 19:46:36', 'mjj86rgm', '7074363'), + (2706, 11, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mjj86rgm', '7074364'), + (2707, 11, 2525, 'attending', '2024-06-10 02:26:59', '2025-12-17 19:46:28', 'mjj86rgm', '7074365'), + (2708, 11, 2528, 'not_attending', '2024-08-05 00:32:41', '2025-12-17 19:46:31', 'mjj86rgm', '7074368'), + (2709, 11, 2534, 'attending', '2024-03-13 16:22:26', '2025-12-17 19:46:32', 'mjj86rgm', '7076875'), + (2710, 11, 2536, 'attending', '2024-03-14 12:30:41', '2025-12-17 19:46:33', 'mjj86rgm', '7077689'), + (2711, 11, 2537, 'attending', '2024-03-22 14:17:05', '2025-12-17 19:46:33', 'mjj86rgm', '7085484'), + (2712, 11, 2538, 'not_attending', '2024-03-17 14:49:20', '2025-12-17 19:46:33', 'mjj86rgm', '7085485'), + (2713, 11, 2539, 'attending', '2024-03-19 23:46:01', '2025-12-17 19:46:33', 'mjj86rgm', '7085486'), + (2714, 11, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mjj86rgm', '7089267'), + (2715, 11, 2541, 'attending', '2024-03-17 14:20:09', '2025-12-17 19:46:33', 'mjj86rgm', '7089404'), + (2716, 11, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mjj86rgm', '7098747'), + (2717, 11, 2552, 'attending', '2024-03-27 22:08:44', '2025-12-17 19:46:33', 'mjj86rgm', '7111123'), + (2718, 11, 2553, 'attending', '2024-03-29 13:22:18', '2025-12-17 19:46:33', 'mjj86rgm', '7113468'), + (2719, 11, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mjj86rgm', '7114856'), + (2720, 11, 2555, 'attending', '2024-04-02 18:20:27', '2025-12-17 19:46:33', 'mjj86rgm', '7114951'), + (2721, 11, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mjj86rgm', '7114955'), + (2722, 11, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mjj86rgm', '7114956'), + (2723, 11, 2558, 'not_attending', '2024-04-03 00:19:22', '2025-12-17 19:46:35', 'mjj86rgm', '7114957'), + (2724, 11, 2561, 'attending', '2024-04-01 22:19:06', '2025-12-17 19:46:33', 'mjj86rgm', '7131267'), + (2725, 11, 2562, 'attending', '2024-04-02 18:10:28', '2025-12-17 19:46:33', 'mjj86rgm', '7134552'), + (2726, 11, 2563, 'attending', '2024-04-02 18:31:59', '2025-12-17 19:46:33', 'mjj86rgm', '7134734'), + (2727, 11, 2564, 'attending', '2024-04-08 22:59:21', '2025-12-17 19:46:33', 'mjj86rgm', '7134735'), + (2728, 11, 2565, 'attending', '2024-04-02 20:53:53', '2025-12-17 19:46:33', 'mjj86rgm', '7135074'), + (2729, 11, 2566, 'attending', '2024-04-03 01:42:06', '2025-12-17 19:46:34', 'mjj86rgm', '7140664'), + (2730, 11, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mjj86rgm', '7153615'), + (2731, 11, 2569, 'maybe', '2024-04-07 06:01:16', '2025-12-17 19:46:33', 'mjj86rgm', '7154056'), + (2732, 11, 2570, 'attending', '2024-04-07 17:43:19', '2025-12-17 19:46:33', 'mjj86rgm', '7159187'), + (2733, 11, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mjj86rgm', '7159484'), + (2734, 11, 2572, 'maybe', '2024-04-08 22:14:52', '2025-12-17 19:46:33', 'mjj86rgm', '7159522'), + (2735, 11, 2573, 'attending', '2024-04-09 15:36:28', '2025-12-17 19:46:34', 'mjj86rgm', '7160612'), + (2736, 11, 2575, 'not_attending', '2024-04-12 18:02:06', '2025-12-17 19:46:33', 'mjj86rgm', '7164534'), + (2737, 11, 2576, 'attending', '2024-04-26 21:53:54', '2025-12-17 19:46:34', 'mjj86rgm', '7164538'), + (2738, 11, 2577, 'attending', '2024-04-10 20:46:26', '2025-12-17 19:46:33', 'mjj86rgm', '7166293'), + (2739, 11, 2578, 'maybe', '2024-04-11 21:35:06', '2025-12-17 19:46:34', 'mjj86rgm', '7167016'), + (2740, 11, 2579, 'attending', '2024-04-11 13:33:46', '2025-12-17 19:46:33', 'mjj86rgm', '7167020'), + (2741, 11, 2581, 'not_attending', '2024-04-13 13:16:37', '2025-12-17 19:46:34', 'mjj86rgm', '7169048'), + (2742, 11, 2583, 'attending', '2024-04-14 18:43:59', '2025-12-17 19:46:34', 'mjj86rgm', '7172946'), + (2743, 11, 2584, 'attending', '2024-04-15 01:13:02', '2025-12-17 19:46:34', 'mjj86rgm', '7175057'), + (2744, 11, 2585, 'attending', '2024-04-17 23:43:19', '2025-12-17 19:46:34', 'mjj86rgm', '7175828'), + (2745, 11, 2586, 'attending', '2024-04-15 18:42:31', '2025-12-17 19:46:34', 'mjj86rgm', '7176151'), + (2746, 11, 2587, 'attending', '2024-04-15 18:42:36', '2025-12-17 19:46:34', 'mjj86rgm', '7176152'), + (2747, 11, 2588, 'not_attending', '2024-04-16 03:41:05', '2025-12-17 19:46:34', 'mjj86rgm', '7177233'), + (2748, 11, 2589, 'not_attending', '2024-04-18 13:33:51', '2025-12-17 19:46:34', 'mjj86rgm', '7177235'), + (2749, 11, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mjj86rgm', '7178446'), + (2750, 11, 2593, 'attending', '2024-04-19 01:48:25', '2025-12-17 19:46:34', 'mjj86rgm', '7181003'), + (2751, 11, 2596, 'attending', '2024-04-24 15:15:43', '2025-12-17 19:46:34', 'mjj86rgm', '7183788'), + (2752, 11, 2599, 'attending', '2024-04-22 13:02:21', '2025-12-17 19:46:34', 'mjj86rgm', '7189372'), + (2753, 11, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mjj86rgm', '7220467'), + (2754, 11, 2603, 'attending', '2024-04-29 14:10:55', '2025-12-17 19:46:35', 'mjj86rgm', '7225669'), + (2755, 11, 2604, 'attending', '2024-04-29 14:11:04', '2025-12-17 19:46:36', 'mjj86rgm', '7225670'), + (2756, 11, 2606, 'attending', '2024-04-28 15:47:51', '2025-12-17 19:46:35', 'mjj86rgm', '7230496'), + (2757, 11, 2609, 'attending', '2024-05-06 21:11:33', '2025-12-17 19:46:35', 'mjj86rgm', '7240354'), + (2758, 11, 2611, 'attending', '2024-05-05 14:45:30', '2025-12-17 19:46:35', 'mjj86rgm', '7247642'), + (2759, 11, 2612, 'attending', '2024-05-06 14:56:07', '2025-12-17 19:46:35', 'mjj86rgm', '7247643'), + (2760, 11, 2613, 'maybe', '2024-05-09 16:54:28', '2025-12-17 19:46:35', 'mjj86rgm', '7247644'), + (2761, 11, 2614, 'attending', '2024-05-02 16:40:08', '2025-12-17 19:46:35', 'mjj86rgm', '7247645'), + (2762, 11, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mjj86rgm', '7251633'), + (2763, 11, 2620, 'maybe', '2024-05-12 04:04:03', '2025-12-17 19:46:35', 'mjj86rgm', '7258097'), + (2764, 11, 2621, 'attending', '2024-05-07 01:27:34', '2025-12-17 19:46:35', 'mjj86rgm', '7258170'), + (2765, 11, 2622, 'attending', '2024-05-09 05:24:22', '2025-12-17 19:46:35', 'mjj86rgm', '7262064'), + (2766, 11, 2623, 'maybe', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mjj86rgm', '7263048'), + (2767, 11, 2626, 'not_attending', '2024-05-17 14:25:21', '2025-12-17 19:46:35', 'mjj86rgm', '7264723'), + (2768, 11, 2627, 'not_attending', '2024-05-23 16:39:39', '2025-12-17 19:46:35', 'mjj86rgm', '7264724'), + (2769, 11, 2628, 'attending', '2024-05-22 00:29:10', '2025-12-17 19:46:36', 'mjj86rgm', '7264725'), + (2770, 11, 2629, 'attending', '2024-05-23 11:59:27', '2025-12-17 19:46:28', 'mjj86rgm', '7264726'), + (2771, 11, 2630, 'attending', '2024-05-15 05:10:08', '2025-12-17 19:46:35', 'mjj86rgm', '7264801'), + (2772, 11, 2639, 'attending', '2024-05-16 14:50:42', '2025-12-17 19:46:35', 'mjj86rgm', '7273242'), + (2773, 11, 2642, 'attending', '2024-05-18 01:49:23', '2025-12-17 19:46:35', 'mjj86rgm', '7276108'), + (2774, 11, 2647, 'attending', '2024-05-27 21:25:05', '2025-12-17 19:46:28', 'mjj86rgm', '7282057'), + (2775, 11, 2651, 'not_attending', '2024-05-24 21:46:32', '2025-12-17 19:46:35', 'mjj86rgm', '7288200'), + (2776, 11, 2652, 'not_attending', '2024-05-24 21:44:04', '2025-12-17 19:46:36', 'mjj86rgm', '7288339'), + (2777, 11, 2654, 'attending', '2024-05-26 21:39:35', '2025-12-17 19:46:36', 'mjj86rgm', '7291219'), + (2778, 11, 2656, 'attending', '2024-05-27 01:14:25', '2025-12-17 19:46:36', 'mjj86rgm', '7291301'), + (2779, 11, 2657, 'attending', '2024-05-29 01:24:49', '2025-12-17 19:46:36', 'mjj86rgm', '7294438'), + (2780, 11, 2660, 'attending', '2024-06-01 21:35:12', '2025-12-17 19:46:36', 'mjj86rgm', '7301638'), + (2781, 11, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mjj86rgm', '7302674'), + (2782, 11, 2663, 'not_attending', '2024-06-03 00:52:57', '2025-12-17 19:46:36', 'mjj86rgm', '7303913'), + (2783, 11, 2666, 'not_attending', '2024-06-05 23:10:38', '2025-12-17 19:46:36', 'mjj86rgm', '7307775'), + (2784, 11, 2667, 'attending', '2024-06-05 11:50:27', '2025-12-17 19:46:36', 'mjj86rgm', '7307776'), + (2785, 11, 2668, 'not_attending', '2024-06-05 23:10:43', '2025-12-17 19:46:36', 'mjj86rgm', '7308821'), + (2786, 11, 2669, 'maybe', '2024-06-08 14:47:03', '2025-12-17 19:46:36', 'mjj86rgm', '7318057'), + (2787, 11, 2672, 'attending', '2024-06-09 16:55:43', '2025-12-17 19:46:28', 'mjj86rgm', '7318459'), + (2788, 11, 2678, 'attending', '2024-06-10 15:50:54', '2025-12-17 19:46:28', 'mjj86rgm', '7319489'), + (2789, 11, 2679, 'attending', '2024-06-11 19:11:09', '2025-12-17 19:46:29', 'mjj86rgm', '7319490'), + (2790, 11, 2681, 'attending', '2024-06-10 02:08:33', '2025-12-17 19:46:28', 'mjj86rgm', '7320409'), + (2791, 11, 2682, 'attending', '2024-06-10 12:53:34', '2025-12-17 19:46:28', 'mjj86rgm', '7321862'), + (2792, 11, 2683, 'attending', '2024-06-10 17:26:14', '2025-12-17 19:46:28', 'mjj86rgm', '7321978'), + (2793, 11, 2684, 'attending', '2024-06-11 18:31:41', '2025-12-17 19:46:28', 'mjj86rgm', '7322001'), + (2794, 11, 2687, 'attending', '2024-06-11 20:32:32', '2025-12-17 19:46:28', 'mjj86rgm', '7324019'), + (2795, 11, 2688, 'attending', '2024-06-12 16:05:07', '2025-12-17 19:46:29', 'mjj86rgm', '7324073'), + (2796, 11, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mjj86rgm', '7324074'), + (2797, 11, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mjj86rgm', '7324075'), + (2798, 11, 2691, 'attending', '2024-07-16 00:14:19', '2025-12-17 19:46:30', 'mjj86rgm', '7324076'), + (2799, 11, 2692, 'attending', '2024-07-22 20:57:45', '2025-12-17 19:46:30', 'mjj86rgm', '7324077'), + (2800, 11, 2693, 'not_attending', '2024-07-30 12:16:19', '2025-12-17 19:46:31', 'mjj86rgm', '7324078'), + (2801, 11, 2694, 'not_attending', '2024-08-01 22:17:53', '2025-12-17 19:46:31', 'mjj86rgm', '7324079'), + (2802, 11, 2696, 'not_attending', '2024-08-20 12:26:22', '2025-12-17 19:46:32', 'mjj86rgm', '7324081'), + (2803, 11, 2697, 'not_attending', '2024-08-27 00:00:09', '2025-12-17 19:46:32', 'mjj86rgm', '7324082'), + (2804, 11, 2698, 'not_attending', '2024-09-01 22:28:43', '2025-12-17 19:46:24', 'mjj86rgm', '7324083'), + (2805, 11, 2699, 'attending', '2024-06-12 15:25:06', '2025-12-17 19:46:28', 'mjj86rgm', '7324385'), + (2806, 11, 2700, 'not_attending', '2024-06-13 13:18:10', '2025-12-17 19:46:28', 'mjj86rgm', '7324388'), + (2807, 11, 2702, 'attending', '2024-06-12 22:18:29', '2025-12-17 19:46:28', 'mjj86rgm', '7324867'), + (2808, 11, 2706, 'attending', '2024-06-13 13:43:34', '2025-12-17 19:46:28', 'mjj86rgm', '7324947'), + (2809, 11, 2708, 'attending', '2024-06-13 20:23:03', '2025-12-17 19:46:28', 'mjj86rgm', '7325048'), + (2810, 11, 2711, 'attending', '2024-07-19 22:44:01', '2025-12-17 19:46:30', 'mjj86rgm', '7326524'), + (2811, 11, 2714, 'attending', '2024-06-15 14:30:05', '2025-12-17 19:46:28', 'mjj86rgm', '7326981'), + (2812, 11, 2716, 'attending', '2024-06-16 19:29:07', '2025-12-17 19:46:29', 'mjj86rgm', '7329096'), + (2813, 11, 2718, 'attending', '2024-06-18 17:50:20', '2025-12-17 19:46:28', 'mjj86rgm', '7330458'), + (2814, 11, 2721, 'attending', '2024-06-23 04:34:58', '2025-12-17 19:46:29', 'mjj86rgm', '7331456'), + (2815, 11, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mjj86rgm', '7331457'), + (2816, 11, 2723, 'attending', '2024-06-19 22:27:56', '2025-12-17 19:46:29', 'mjj86rgm', '7332389'), + (2817, 11, 2724, 'attending', '2024-06-19 17:53:29', '2025-12-17 19:46:29', 'mjj86rgm', '7332562'), + (2818, 11, 2725, 'attending', '2024-06-19 17:56:59', '2025-12-17 19:46:28', 'mjj86rgm', '7332564'), + (2819, 11, 2727, 'attending', '2024-06-19 21:22:10', '2025-12-17 19:46:29', 'mjj86rgm', '7332865'), + (2820, 11, 2728, 'not_attending', '2024-06-20 23:42:52', '2025-12-17 19:46:29', 'mjj86rgm', '7334124'), + (2821, 11, 2735, 'attending', '2024-06-28 14:05:29', '2025-12-17 19:46:29', 'mjj86rgm', '7340369'), + (2822, 11, 2737, 'maybe', '2024-07-01 15:01:06', '2025-12-17 19:46:29', 'mjj86rgm', '7344070'), + (2823, 11, 2739, 'attending', '2024-06-30 23:17:49', '2025-12-17 19:46:29', 'mjj86rgm', '7344575'), + (2824, 11, 2740, 'attending', '2024-07-01 12:31:52', '2025-12-17 19:46:29', 'mjj86rgm', '7344576'), + (2825, 11, 2742, 'attending', '2024-07-02 01:40:21', '2025-12-17 19:46:29', 'mjj86rgm', '7345167'), + (2826, 11, 2743, 'not_attending', '2024-07-04 01:29:28', '2025-12-17 19:46:29', 'mjj86rgm', '7345688'), + (2827, 11, 2744, 'attending', '2024-07-02 14:34:18', '2025-12-17 19:46:29', 'mjj86rgm', '7347764'), + (2828, 11, 2748, 'attending', '2024-07-05 22:35:44', '2025-12-17 19:46:29', 'mjj86rgm', '7353759'), + (2829, 11, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mjj86rgm', '7356752'), + (2830, 11, 2763, 'maybe', '2024-07-19 14:55:46', '2025-12-17 19:46:30', 'mjj86rgm', '7363594'), + (2831, 11, 2764, 'maybe', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'mjj86rgm', '7363595'), + (2832, 11, 2766, 'attending', '2024-07-22 20:58:37', '2025-12-17 19:46:30', 'mjj86rgm', '7363643'), + (2833, 11, 2767, 'attending', '2024-07-19 14:55:53', '2025-12-17 19:46:30', 'mjj86rgm', '7364726'), + (2834, 11, 2771, 'attending', '2024-07-21 18:22:08', '2025-12-17 19:46:30', 'mjj86rgm', '7368263'), + (2835, 11, 2772, 'attending', '2024-07-22 14:30:39', '2025-12-17 19:46:30', 'mjj86rgm', '7368267'), + (2836, 11, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mjj86rgm', '7368606'), + (2837, 11, 2776, 'attending', '2024-07-25 15:37:05', '2025-12-17 19:46:30', 'mjj86rgm', '7370690'), + (2838, 11, 2780, 'attending', '2024-07-26 13:44:54', '2025-12-17 19:46:30', 'mjj86rgm', '7371849'), + (2839, 11, 2782, 'maybe', '2024-07-28 18:45:31', '2025-12-17 19:46:30', 'mjj86rgm', '7376725'), + (2840, 11, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mjj86rgm', '7397462'), + (2841, 11, 2803, 'attending', '2024-08-20 11:46:31', '2025-12-17 19:46:32', 'mjj86rgm', '7397869'), + (2842, 11, 2806, 'attending', '2024-09-08 18:47:53', '2025-12-17 19:46:25', 'mjj86rgm', '7404888'), + (2843, 11, 2808, 'maybe', '2024-08-26 23:16:26', '2025-12-17 19:46:32', 'mjj86rgm', '7412860'), + (2844, 11, 2821, 'attending', '2024-09-30 14:35:01', '2025-12-17 19:46:26', 'mjj86rgm', '7424275'), + (2845, 11, 2822, 'attending', '2024-10-22 02:30:18', '2025-12-17 19:46:26', 'mjj86rgm', '7424276'), + (2846, 11, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mjj86rgm', '7432751'), + (2847, 11, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mjj86rgm', '7432752'), + (2848, 11, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mjj86rgm', '7432753'), + (2849, 11, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mjj86rgm', '7432754'), + (2850, 11, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mjj86rgm', '7432755'), + (2851, 11, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mjj86rgm', '7432756'), + (2852, 11, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mjj86rgm', '7432758'), + (2853, 11, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mjj86rgm', '7432759'), + (2854, 11, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mjj86rgm', '7433834'), + (2855, 11, 2838, 'not_attending', '2024-09-25 21:27:33', '2025-12-17 19:46:25', 'mjj86rgm', '7439182'), + (2856, 11, 2855, 'attending', '2024-10-01 11:49:55', '2025-12-17 19:46:26', 'mjj86rgm', '7469385'), + (2857, 11, 2856, 'maybe', '2024-10-10 18:37:30', '2025-12-17 19:46:26', 'mjj86rgm', '7469386'), + (2858, 11, 2857, 'not_attending', '2024-10-23 12:55:26', '2025-12-17 19:46:26', 'mjj86rgm', '7469387'), + (2859, 11, 2858, 'attending', '2024-10-16 23:21:12', '2025-12-17 19:46:26', 'mjj86rgm', '7469388'), + (2860, 11, 2861, 'attending', '2024-10-01 11:49:52', '2025-12-17 19:46:26', 'mjj86rgm', '7469826'), + (2861, 11, 2862, 'not_attending', '2024-09-30 20:16:44', '2025-12-17 19:46:25', 'mjj86rgm', '7470197'), + (2862, 11, 2863, 'not_attending', '2024-10-01 11:50:22', '2025-12-17 19:46:26', 'mjj86rgm', '7470275'), + (2863, 11, 2864, 'maybe', '2024-10-14 22:46:11', '2025-12-17 19:46:26', 'mjj86rgm', '7471199'), + (2864, 11, 2865, 'not_attending', '2024-10-28 15:05:55', '2025-12-17 19:46:26', 'mjj86rgm', '7471200'), + (2865, 11, 2867, 'attending', '2024-12-05 22:18:44', '2025-12-17 19:46:21', 'mjj86rgm', '7471202'), + (2866, 11, 2871, 'attending', '2024-10-14 22:46:03', '2025-12-17 19:46:26', 'mjj86rgm', '7480481'), + (2867, 11, 2878, 'attending', '2024-10-16 21:54:47', '2025-12-17 19:46:26', 'mjj86rgm', '7633857'), + (2868, 11, 2881, 'attending', '2024-11-02 13:20:25', '2025-12-17 19:46:26', 'mjj86rgm', '7644047'), + (2869, 11, 2882, 'not_attending', '2024-10-14 22:47:41', '2025-12-17 19:46:26', 'mjj86rgm', '7644822'), + (2870, 11, 2883, 'attending', '2024-10-17 01:04:51', '2025-12-17 19:46:26', 'mjj86rgm', '7649157'), + (2871, 11, 2886, 'not_attending', '2024-11-02 13:20:38', '2025-12-17 19:46:26', 'mjj86rgm', '7654498'), + (2872, 11, 2888, 'attending', '2024-10-21 09:35:16', '2025-12-17 19:46:26', 'mjj86rgm', '7654822'), + (2873, 11, 2891, 'maybe', '2024-10-25 17:12:39', '2025-12-17 19:46:26', 'mjj86rgm', '7668163'), + (2874, 11, 2892, 'not_attending', '2024-10-28 15:05:37', '2025-12-17 19:46:26', 'mjj86rgm', '7672064'), + (2875, 11, 2893, 'not_attending', '2024-11-02 02:24:25', '2025-12-17 19:46:26', 'mjj86rgm', '7672705'), + (2876, 11, 2895, 'attending', '2024-11-04 23:20:47', '2025-12-17 19:46:26', 'mjj86rgm', '7682072'), + (2877, 11, 2896, 'attending', '2024-11-09 04:37:19', '2025-12-17 19:46:27', 'mjj86rgm', '7683647'), + (2878, 11, 2897, 'maybe', '2024-11-15 17:09:12', '2025-12-17 19:46:27', 'mjj86rgm', '7683650'), + (2879, 11, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'mjj86rgm', '7685613'), + (2880, 11, 2900, 'attending', '2024-11-08 00:55:32', '2025-12-17 19:46:26', 'mjj86rgm', '7686090'), + (2881, 11, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mjj86rgm', '7688194'), + (2882, 11, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mjj86rgm', '7688196'), + (2883, 11, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mjj86rgm', '7688289'), + (2884, 11, 2911, 'attending', '2024-11-11 04:01:15', '2025-12-17 19:46:27', 'mjj86rgm', '7689876'), + (2885, 11, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'mjj86rgm', '7692763'), + (2886, 11, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mjj86rgm', '7697552'), + (2887, 11, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mjj86rgm', '7699878'), + (2888, 11, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mjj86rgm', '7704043'), + (2889, 11, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mjj86rgm', '7712467'), + (2890, 11, 2925, 'attending', '2024-12-09 22:01:56', '2025-12-17 19:46:21', 'mjj86rgm', '7713584'), + (2891, 11, 2926, 'attending', '2024-12-05 21:59:45', '2025-12-17 19:46:21', 'mjj86rgm', '7713585'), + (2892, 11, 2927, 'not_attending', '2024-12-14 00:47:41', '2025-12-17 19:46:22', 'mjj86rgm', '7713586'), + (2893, 11, 2930, 'attending', '2024-12-09 22:01:22', '2025-12-17 19:46:21', 'mjj86rgm', '7724554'), + (2894, 11, 2939, 'not_attending', '2025-02-15 21:01:14', '2025-12-17 19:46:24', 'mjj86rgm', '7725957'), + (2895, 11, 2952, 'attending', '2024-12-12 01:15:31', '2025-12-17 19:46:21', 'mjj86rgm', '7730167'), + (2896, 11, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mjj86rgm', '7738518'), + (2897, 11, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mjj86rgm', '7750636'), + (2898, 11, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mjj86rgm', '7796540'), + (2899, 11, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mjj86rgm', '7796541'), + (2900, 11, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mjj86rgm', '7796542'), + (2901, 11, 2971, 'attending', '2025-01-15 00:37:07', '2025-12-17 19:46:22', 'mjj86rgm', '7812230'), + (2902, 11, 2972, 'attending', '2025-01-21 16:17:30', '2025-12-17 19:46:22', 'mjj86rgm', '7812563'), + (2903, 11, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mjj86rgm', '7825913'), + (2904, 11, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'mjj86rgm', '7825920'), + (2905, 11, 2981, 'not_attending', '2025-01-29 17:00:37', '2025-12-17 19:46:22', 'mjj86rgm', '7826124'), + (2906, 11, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mjj86rgm', '7826209'), + (2907, 11, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mjj86rgm', '7834742'), + (2908, 11, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'mjj86rgm', '7842108'), + (2909, 11, 2990, 'attending', '2025-02-11 03:31:36', '2025-12-17 19:46:23', 'mjj86rgm', '7842898'), + (2910, 11, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mjj86rgm', '7842902'), + (2911, 11, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mjj86rgm', '7842903'), + (2912, 11, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mjj86rgm', '7842904'), + (2913, 11, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mjj86rgm', '7842905'), + (2914, 11, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'mjj86rgm', '7842906'), + (2915, 11, 2996, 'attending', '2025-02-25 01:49:53', '2025-12-17 19:46:24', 'mjj86rgm', '7842907'), + (2916, 11, 2998, 'attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'mjj86rgm', '7842909'), + (2917, 11, 3002, 'attending', '2025-02-20 03:03:51', '2025-12-17 19:46:24', 'mjj86rgm', '7854212'), + (2918, 11, 3004, 'maybe', '2025-02-20 02:33:50', '2025-12-17 19:46:24', 'mjj86rgm', '7854599'), + (2919, 11, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mjj86rgm', '7855719'), + (2920, 11, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mjj86rgm', '7860683'), + (2921, 11, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mjj86rgm', '7860684'), + (2922, 11, 3009, 'attending', '2025-02-27 16:09:13', '2025-12-17 19:46:18', 'mjj86rgm', '7864019'), + (2923, 11, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mjj86rgm', '7866095'), + (2924, 11, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mjj86rgm', '7869170'), + (2925, 11, 3014, 'maybe', '2025-03-31 21:59:46', '2025-12-17 19:46:20', 'mjj86rgm', '7869185'), + (2926, 11, 3017, 'attending', '2025-03-11 23:37:11', '2025-12-17 19:46:19', 'mjj86rgm', '7869188'), + (2927, 11, 3018, 'not_attending', '2025-04-08 17:37:38', '2025-12-17 19:46:20', 'mjj86rgm', '7869189'), + (2928, 11, 3023, 'attending', '2025-03-04 03:45:22', '2025-12-17 19:46:19', 'mjj86rgm', '7869194'), + (2929, 11, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'mjj86rgm', '7869195'), + (2930, 11, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mjj86rgm', '7869201'), + (2931, 11, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mjj86rgm', '7877465'), + (2932, 11, 3034, 'attending', '2025-03-11 21:43:55', '2025-12-17 19:46:18', 'mjj86rgm', '7878570'), + (2933, 11, 3036, 'attending', '2025-03-13 15:39:51', '2025-12-17 19:46:19', 'mjj86rgm', '7880952'), + (2934, 11, 3039, 'not_attending', '2025-03-18 21:48:57', '2025-12-17 19:46:19', 'mjj86rgm', '7881992'), + (2935, 11, 3054, 'attending', '2025-03-17 00:15:41', '2025-12-17 19:46:19', 'mjj86rgm', '7884168'), + (2936, 11, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mjj86rgm', '7888250'), + (2937, 11, 3057, 'attending', '2025-03-24 23:02:37', '2025-12-17 19:46:19', 'mjj86rgm', '7890059'), + (2938, 11, 3062, 'attending', '2025-03-29 19:01:01', '2025-12-17 19:46:19', 'mjj86rgm', '7892738'), + (2939, 11, 3083, 'attending', '2025-04-09 20:55:18', '2025-12-17 19:46:20', 'mjj86rgm', '7903308'), + (2940, 11, 3088, 'attending', '2025-06-06 16:34:18', '2025-12-17 19:46:15', 'mjj86rgm', '7904777'), + (2941, 11, 3089, 'not_attending', '2025-04-13 17:13:49', '2025-12-17 19:46:20', 'mjj86rgm', '7911208'), + (2942, 11, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjj86rgm', '8349164'), + (2943, 11, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjj86rgm', '8349545'), + (2944, 11, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mjj86rgm', '8353584'), + (2945, 11, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjj86rgm', '8368028'), + (2946, 11, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjj86rgm', '8368029'), + (2947, 11, 3133, 'attending', '2025-05-31 15:36:17', '2025-12-17 19:46:14', 'mjj86rgm', '8368030'), + (2948, 11, 3142, 'attending', '2025-05-28 19:28:59', '2025-12-17 19:46:21', 'mjj86rgm', '8387505'), + (2949, 11, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjj86rgm', '8388462'), + (2950, 11, 3150, 'maybe', '2025-06-06 16:34:21', '2025-12-17 19:46:15', 'mjj86rgm', '8393174'), + (2951, 11, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjj86rgm', '8400273'), + (2952, 11, 3154, 'attending', '2025-06-25 19:00:02', '2025-12-17 19:46:15', 'mjj86rgm', '8400274'), + (2953, 11, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjj86rgm', '8400275'), + (2954, 11, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mjj86rgm', '8400276'), + (2955, 11, 3160, 'maybe', '2025-06-06 16:34:01', '2025-12-17 19:46:15', 'mjj86rgm', '8401411'), + (2956, 11, 3161, 'not_attending', '2025-06-06 16:33:45', '2025-12-17 19:46:15', 'mjj86rgm', '8401412'), + (2957, 11, 3167, 'not_attending', '2025-06-09 20:47:02', '2025-12-17 19:46:15', 'mjj86rgm', '8404521'), + (2958, 11, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjj86rgm', '8404977'), + (2959, 11, 3171, 'attending', '2025-06-13 18:00:32', '2025-12-17 19:46:15', 'mjj86rgm', '8409765'), + (2960, 11, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mjj86rgm', '8430783'), + (2961, 11, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjj86rgm', '8430784'), + (2962, 11, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjj86rgm', '8430799'), + (2963, 11, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjj86rgm', '8430800'), + (2964, 11, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjj86rgm', '8430801'), + (2965, 11, 3188, 'attending', '2025-07-12 17:39:37', '2025-12-17 19:46:17', 'mjj86rgm', '8438709'), + (2966, 11, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjj86rgm', '8457738'), + (2967, 11, 3195, 'attending', '2025-08-05 22:22:47', '2025-12-17 19:46:17', 'mjj86rgm', '8458118'), + (2968, 11, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjj86rgm', '8459566'), + (2969, 11, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjj86rgm', '8459567'), + (2970, 11, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjj86rgm', '8461032'), + (2971, 11, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjj86rgm', '8477877'), + (2972, 11, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'mjj86rgm', '8485688'), + (2973, 11, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mjj86rgm', '8490587'), + (2974, 11, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mjj86rgm', '8493552'), + (2975, 11, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mjj86rgm', '8493553'), + (2976, 11, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mjj86rgm', '8493554'), + (2977, 11, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mjj86rgm', '8493555'), + (2978, 11, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mjj86rgm', '8493556'), + (2979, 11, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mjj86rgm', '8493557'), + (2980, 11, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mjj86rgm', '8493558'), + (2981, 11, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mjj86rgm', '8493559'), + (2982, 11, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mjj86rgm', '8493560'), + (2983, 11, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'mjj86rgm', '8493561'), + (2984, 11, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mjj86rgm', '8493572'), + (2985, 11, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mjj86rgm', '8540725'), + (2986, 11, 3295, 'not_attending', '2025-10-30 15:54:14', '2025-12-17 19:46:14', 'mjj86rgm', '8547541'), + (2987, 11, 3305, 'not_attending', '2025-12-07 00:18:33', '2025-12-17 19:46:11', 'mjj86rgm', '8550025'), + (2988, 11, 3306, 'attending', '2025-12-07 00:18:39', '2025-12-17 19:46:11', 'mjj86rgm', '8550026'), + (2989, 11, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mjj86rgm', '8555421'), + (2990, 12, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZaNBe4', '6484200'), + (2991, 12, 2310, 'attending', '2023-11-10 15:35:51', '2025-12-17 19:46:47', 'dKZaNBe4', '6487709'), + (2992, 12, 2320, 'maybe', '2023-11-09 23:45:59', '2025-12-17 19:46:47', 'dKZaNBe4', '6508647'), + (2993, 12, 2322, 'attending', '2023-11-12 08:28:32', '2025-12-17 19:46:48', 'dKZaNBe4', '6514659'), + (2994, 12, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZaNBe4', '6514660'), + (2995, 12, 2324, 'not_attending', '2023-12-03 04:20:53', '2025-12-17 19:46:49', 'dKZaNBe4', '6514662'), + (2996, 12, 2325, 'attending', '2023-12-05 04:57:29', '2025-12-17 19:46:36', 'dKZaNBe4', '6514663'), + (2997, 12, 2339, 'attending', '2023-11-10 20:16:54', '2025-12-17 19:46:47', 'dKZaNBe4', '6539128'), + (2998, 12, 2340, 'attending', '2023-11-12 08:28:12', '2025-12-17 19:46:48', 'dKZaNBe4', '6540279'), + (2999, 12, 2342, 'attending', '2023-11-13 19:45:17', '2025-12-17 19:46:47', 'dKZaNBe4', '6545076'), + (3000, 12, 2345, 'not_attending', '2023-11-29 22:56:36', '2025-12-17 19:46:48', 'dKZaNBe4', '6582414'), + (3001, 12, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZaNBe4', '6584747'), + (3002, 12, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZaNBe4', '6587097'), + (3003, 12, 2353, 'attending', '2023-11-26 21:59:23', '2025-12-17 19:46:48', 'dKZaNBe4', '6588894'), + (3004, 12, 2355, 'attending', '2023-11-30 23:55:51', '2025-12-17 19:46:49', 'dKZaNBe4', '6593339'), + (3005, 12, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZaNBe4', '6609022'), + (3006, 12, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZaNBe4', '6632757'), + (3007, 12, 2376, 'not_attending', '2024-01-21 05:48:18', '2025-12-17 19:46:40', 'dKZaNBe4', '6642900'), + (3008, 12, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZaNBe4', '6644187'), + (3009, 12, 2381, 'not_attending', '2024-01-02 02:51:27', '2025-12-17 19:46:37', 'dKZaNBe4', '6646398'), + (3010, 12, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZaNBe4', '6648951'), + (3011, 12, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZaNBe4', '6648952'), + (3012, 12, 2388, 'attending', '2024-01-03 05:39:48', '2025-12-17 19:46:37', 'dKZaNBe4', '6649244'), + (3013, 12, 2395, 'attending', '2024-01-16 00:15:23', '2025-12-17 19:46:38', 'dKZaNBe4', '6654471'), + (3014, 12, 2396, 'attending', '2024-01-16 00:15:36', '2025-12-17 19:46:38', 'dKZaNBe4', '6655401'), + (3015, 12, 2399, 'attending', '2024-01-09 15:33:04', '2025-12-17 19:46:37', 'dKZaNBe4', '6657583'), + (3016, 12, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZaNBe4', '6661585'), + (3017, 12, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZaNBe4', '6661588'), + (3018, 12, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZaNBe4', '6661589'), + (3019, 12, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZaNBe4', '6699906'), + (3020, 12, 2408, 'attending', '2024-01-21 05:46:57', '2025-12-17 19:46:40', 'dKZaNBe4', '6699907'), + (3021, 12, 2409, 'attending', '2024-01-30 15:35:02', '2025-12-17 19:46:41', 'dKZaNBe4', '6699909'), + (3022, 12, 2410, 'attending', '2024-02-06 22:29:23', '2025-12-17 19:46:41', 'dKZaNBe4', '6699911'), + (3023, 12, 2411, 'attending', '2024-02-12 05:31:11', '2025-12-17 19:46:41', 'dKZaNBe4', '6699913'), + (3024, 12, 2412, 'attending', '2024-02-20 01:47:51', '2025-12-17 19:46:43', 'dKZaNBe4', '6700717'), + (3025, 12, 2414, 'attending', '2024-01-20 19:40:57', '2025-12-17 19:46:40', 'dKZaNBe4', '6701000'), + (3026, 12, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZaNBe4', '6701109'), + (3027, 12, 2419, 'not_attending', '2024-01-21 05:49:52', '2025-12-17 19:46:41', 'dKZaNBe4', '6704505'), + (3028, 12, 2421, 'not_attending', '2024-01-21 05:52:43', '2025-12-17 19:46:40', 'dKZaNBe4', '6704598'), + (3029, 12, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZaNBe4', '6705219'), + (3030, 12, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZaNBe4', '6710153'), + (3031, 12, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZaNBe4', '6711552'), + (3032, 12, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZaNBe4', '6711553'), + (3033, 12, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKZaNBe4', '6722688'), + (3034, 12, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKZaNBe4', '6730620'), + (3035, 12, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKZaNBe4', '6730642'), + (3036, 12, 2445, 'attending', '2024-02-17 00:10:09', '2025-12-17 19:46:41', 'dKZaNBe4', '6734368'), + (3037, 12, 2447, 'attending', '2024-03-14 13:34:54', '2025-12-17 19:46:32', 'dKZaNBe4', '6734370'), + (3038, 12, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKZaNBe4', '6740364'), + (3039, 12, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKZaNBe4', '6743829'), + (3040, 12, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKZaNBe4', '7030380'), + (3041, 12, 2471, 'attending', '2024-02-24 00:59:25', '2025-12-17 19:46:42', 'dKZaNBe4', '7032425'), + (3042, 12, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKZaNBe4', '7033677'), + (3043, 12, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKZaNBe4', '7035415'), + (3044, 12, 2481, 'attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKZaNBe4', '7044715'), + (3045, 12, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKZaNBe4', '7050318'), + (3046, 12, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKZaNBe4', '7050319'), + (3047, 12, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKZaNBe4', '7050322'), + (3048, 12, 2498, 'attending', '2024-03-20 21:34:26', '2025-12-17 19:46:33', 'dKZaNBe4', '7057662'), + (3049, 12, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKZaNBe4', '7057804'), + (3050, 12, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dKZaNBe4', '7059866'), + (3051, 12, 2505, 'attending', '2024-03-19 21:12:18', '2025-12-17 19:46:33', 'dKZaNBe4', '7069163'), + (3052, 12, 2507, 'attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKZaNBe4', '7072824'), + (3053, 12, 2508, 'attending', '2024-03-13 14:18:51', '2025-12-17 19:46:32', 'dKZaNBe4', '7074348'), + (3054, 12, 2510, 'attending', '2024-03-21 23:48:08', '2025-12-17 19:46:33', 'dKZaNBe4', '7074350'), + (3055, 12, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dKZaNBe4', '7074364'), + (3056, 12, 2537, 'attending', '2024-03-22 13:37:49', '2025-12-17 19:46:33', 'dKZaNBe4', '7085484'), + (3057, 12, 2538, 'not_attending', '2024-03-24 16:58:38', '2025-12-17 19:46:33', 'dKZaNBe4', '7085485'), + (3058, 12, 2539, 'attending', '2024-04-05 01:29:45', '2025-12-17 19:46:33', 'dKZaNBe4', '7085486'), + (3059, 12, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKZaNBe4', '7089267'), + (3060, 12, 2541, 'attending', '2024-03-18 23:15:07', '2025-12-17 19:46:33', 'dKZaNBe4', '7089404'), + (3061, 12, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKZaNBe4', '7098747'), + (3062, 12, 2551, 'attending', '2024-03-31 17:44:41', '2025-12-17 19:46:33', 'dKZaNBe4', '7109912'), + (3063, 12, 2553, 'not_attending', '2024-03-29 19:05:11', '2025-12-17 19:46:33', 'dKZaNBe4', '7113468'), + (3064, 12, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKZaNBe4', '7114856'), + (3065, 12, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKZaNBe4', '7114951'), + (3066, 12, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKZaNBe4', '7114955'), + (3067, 12, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKZaNBe4', '7114956'), + (3068, 12, 2558, 'not_attending', '2024-04-20 18:25:19', '2025-12-17 19:46:35', 'dKZaNBe4', '7114957'), + (3069, 12, 2563, 'not_attending', '2024-04-09 13:39:02', '2025-12-17 19:46:33', 'dKZaNBe4', '7134734'), + (3070, 12, 2564, 'attending', '2024-04-09 13:38:38', '2025-12-17 19:46:33', 'dKZaNBe4', '7134735'), + (3071, 12, 2568, 'maybe', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKZaNBe4', '7153615'), + (3072, 12, 2570, 'attending', '2024-04-07 19:58:37', '2025-12-17 19:46:33', 'dKZaNBe4', '7159187'), + (3073, 12, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKZaNBe4', '7159484'), + (3074, 12, 2573, 'attending', '2024-04-14 02:10:44', '2025-12-17 19:46:34', 'dKZaNBe4', '7160612'), + (3075, 12, 2577, 'attending', '2024-04-11 14:36:43', '2025-12-17 19:46:33', 'dKZaNBe4', '7166293'), + (3076, 12, 2578, 'attending', '2024-04-11 21:35:15', '2025-12-17 19:46:34', 'dKZaNBe4', '7167016'), + (3077, 12, 2579, 'attending', '2024-04-12 20:39:08', '2025-12-17 19:46:33', 'dKZaNBe4', '7167020'), + (3078, 12, 2581, 'attending', '2024-04-18 03:35:06', '2025-12-17 19:46:34', 'dKZaNBe4', '7169048'), + (3079, 12, 2583, 'attending', '2024-04-15 21:12:29', '2025-12-17 19:46:34', 'dKZaNBe4', '7172946'), + (3080, 12, 2585, 'attending', '2024-04-21 23:45:36', '2025-12-17 19:46:34', 'dKZaNBe4', '7175828'), + (3081, 12, 2588, 'attending', '2024-04-16 16:00:09', '2025-12-17 19:46:34', 'dKZaNBe4', '7177233'), + (3082, 12, 2589, 'attending', '2024-04-16 16:00:11', '2025-12-17 19:46:34', 'dKZaNBe4', '7177235'), + (3083, 12, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKZaNBe4', '7178446'), + (3084, 12, 2592, 'attending', '2024-04-20 18:24:56', '2025-12-17 19:46:34', 'dKZaNBe4', '7180959'), + (3085, 12, 2596, 'attending', '2024-04-26 13:45:15', '2025-12-17 19:46:34', 'dKZaNBe4', '7183788'), + (3086, 12, 2597, 'maybe', '2024-04-26 19:19:59', '2025-12-17 19:46:34', 'dKZaNBe4', '7186726'), + (3087, 12, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dKZaNBe4', '7220467'), + (3088, 12, 2603, 'attending', '2024-05-15 03:03:17', '2025-12-17 19:46:35', 'dKZaNBe4', '7225669'), + (3089, 12, 2604, 'not_attending', '2024-05-28 13:01:46', '2025-12-17 19:46:36', 'dKZaNBe4', '7225670'), + (3090, 12, 2605, 'attending', '2024-05-03 17:05:29', '2025-12-17 19:46:35', 'dKZaNBe4', '7229243'), + (3091, 12, 2606, 'attending', '2024-04-28 15:47:40', '2025-12-17 19:46:35', 'dKZaNBe4', '7230496'), + (3092, 12, 2609, 'not_attending', '2024-05-02 21:07:42', '2025-12-17 19:46:35', 'dKZaNBe4', '7240354'), + (3093, 12, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dKZaNBe4', '7251633'), + (3094, 12, 2621, 'not_attending', '2024-05-07 01:41:06', '2025-12-17 19:46:35', 'dKZaNBe4', '7258170'), + (3095, 12, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dKZaNBe4', '7263048'), + (3096, 12, 2626, 'attending', '2024-05-15 03:03:35', '2025-12-17 19:46:35', 'dKZaNBe4', '7264723'), + (3097, 12, 2627, 'not_attending', '2024-05-19 03:13:51', '2025-12-17 19:46:35', 'dKZaNBe4', '7264724'), + (3098, 12, 2628, 'attending', '2024-05-19 03:13:57', '2025-12-17 19:46:36', 'dKZaNBe4', '7264725'), + (3099, 12, 2629, 'attending', '2024-05-19 03:14:35', '2025-12-17 19:46:28', 'dKZaNBe4', '7264726'), + (3100, 12, 2644, 'attending', '2024-05-20 13:51:13', '2025-12-17 19:46:35', 'dKZaNBe4', '7279039'), + (3101, 12, 2646, 'attending', '2024-05-20 15:58:17', '2025-12-17 19:46:35', 'dKZaNBe4', '7281768'), + (3102, 12, 2649, 'not_attending', '2024-05-21 17:55:21', '2025-12-17 19:46:35', 'dKZaNBe4', '7282950'), + (3103, 12, 2659, 'attending', '2024-06-01 20:45:37', '2025-12-17 19:46:36', 'dKZaNBe4', '7299599'), + (3104, 12, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dKZaNBe4', '7302674'), + (3105, 12, 2663, 'maybe', '2024-06-03 18:41:40', '2025-12-17 19:46:36', 'dKZaNBe4', '7303913'), + (3106, 12, 2667, 'attending', '2024-06-05 15:03:58', '2025-12-17 19:46:36', 'dKZaNBe4', '7307776'), + (3107, 12, 2675, 'not_attending', '2024-07-23 02:09:52', '2025-12-17 19:46:31', 'dKZaNBe4', '7319481'), + (3108, 12, 2678, 'attending', '2024-06-13 17:43:11', '2025-12-17 19:46:28', 'dKZaNBe4', '7319489'), + (3109, 12, 2679, 'maybe', '2024-06-22 20:42:16', '2025-12-17 19:46:29', 'dKZaNBe4', '7319490'), + (3110, 12, 2681, 'attending', '2024-06-10 05:36:03', '2025-12-17 19:46:28', 'dKZaNBe4', '7320409'), + (3111, 12, 2682, 'attending', '2024-06-10 18:29:25', '2025-12-17 19:46:28', 'dKZaNBe4', '7321862'), + (3112, 12, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'dKZaNBe4', '7324019'), + (3113, 12, 2688, 'attending', '2024-06-24 13:50:44', '2025-12-17 19:46:29', 'dKZaNBe4', '7324073'), + (3114, 12, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dKZaNBe4', '7324074'), + (3115, 12, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dKZaNBe4', '7324075'), + (3116, 12, 2691, 'attending', '2024-07-17 13:22:59', '2025-12-17 19:46:30', 'dKZaNBe4', '7324076'), + (3117, 12, 2692, 'maybe', '2024-07-27 21:32:39', '2025-12-17 19:46:30', 'dKZaNBe4', '7324077'), + (3118, 12, 2693, 'attending', '2024-07-23 02:09:45', '2025-12-17 19:46:31', 'dKZaNBe4', '7324078'), + (3119, 12, 2694, 'attending', '2024-08-06 20:27:28', '2025-12-17 19:46:31', 'dKZaNBe4', '7324079'), + (3120, 12, 2695, 'not_attending', '2024-08-13 02:50:15', '2025-12-17 19:46:31', 'dKZaNBe4', '7324080'), + (3121, 12, 2696, 'attending', '2024-08-23 03:28:03', '2025-12-17 19:46:32', 'dKZaNBe4', '7324081'), + (3122, 12, 2697, 'attending', '2024-08-30 22:08:44', '2025-12-17 19:46:32', 'dKZaNBe4', '7324082'), + (3123, 12, 2698, 'attending', '2024-08-06 20:27:41', '2025-12-17 19:46:24', 'dKZaNBe4', '7324083'), + (3124, 12, 2699, 'attending', '2024-06-12 15:10:33', '2025-12-17 19:46:28', 'dKZaNBe4', '7324385'), + (3125, 12, 2702, 'attending', '2024-06-13 15:16:03', '2025-12-17 19:46:28', 'dKZaNBe4', '7324867'), + (3126, 12, 2705, 'maybe', '2024-06-13 13:30:57', '2025-12-17 19:46:29', 'dKZaNBe4', '7324944'), + (3127, 12, 2706, 'attending', '2024-06-13 13:36:50', '2025-12-17 19:46:28', 'dKZaNBe4', '7324947'), + (3128, 12, 2707, 'maybe', '2024-06-13 15:03:07', '2025-12-17 19:46:28', 'dKZaNBe4', '7324952'), + (3129, 12, 2712, 'attending', '2024-08-02 22:55:07', '2025-12-17 19:46:31', 'dKZaNBe4', '7326525'), + (3130, 12, 2719, 'attending', '2024-06-18 20:54:21', '2025-12-17 19:46:29', 'dKZaNBe4', '7331305'), + (3131, 12, 2721, 'attending', '2024-06-18 23:05:19', '2025-12-17 19:46:29', 'dKZaNBe4', '7331456'), + (3132, 12, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dKZaNBe4', '7331457'), + (3133, 12, 2724, 'attending', '2024-06-26 20:38:44', '2025-12-17 19:46:29', 'dKZaNBe4', '7332562'), + (3134, 12, 2730, 'attending', '2024-06-22 06:53:37', '2025-12-17 19:46:29', 'dKZaNBe4', '7335193'), + (3135, 12, 2734, 'not_attending', '2024-06-27 17:35:01', '2025-12-17 19:46:29', 'dKZaNBe4', '7339440'), + (3136, 12, 2746, 'not_attending', '2024-07-11 21:18:15', '2025-12-17 19:46:29', 'dKZaNBe4', '7348713'), + (3137, 12, 2747, 'attending', '2024-07-17 22:13:15', '2025-12-17 19:46:30', 'dKZaNBe4', '7353587'), + (3138, 12, 2749, 'attending', '2024-07-07 18:43:20', '2025-12-17 19:46:29', 'dKZaNBe4', '7355496'), + (3139, 12, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dKZaNBe4', '7356752'), + (3140, 12, 2755, 'maybe', '2024-07-10 21:01:21', '2025-12-17 19:46:29', 'dKZaNBe4', '7357808'), + (3141, 12, 2757, 'attending', '2024-07-11 15:41:00', '2025-12-17 19:46:30', 'dKZaNBe4', '7358733'), + (3142, 12, 2758, 'attending', '2024-07-11 22:20:02', '2025-12-17 19:46:30', 'dKZaNBe4', '7358837'), + (3143, 12, 2759, 'attending', '2024-07-12 18:04:01', '2025-12-17 19:46:30', 'dKZaNBe4', '7359624'), + (3144, 12, 2760, 'not_attending', '2024-07-18 19:35:41', '2025-12-17 19:46:30', 'dKZaNBe4', '7359871'), + (3145, 12, 2763, 'attending', '2024-07-17 13:23:14', '2025-12-17 19:46:30', 'dKZaNBe4', '7363594'), + (3146, 12, 2764, 'attending', '2024-07-14 23:08:11', '2025-12-17 19:46:30', 'dKZaNBe4', '7363595'), + (3147, 12, 2766, 'attending', '2024-07-21 21:06:51', '2025-12-17 19:46:30', 'dKZaNBe4', '7363643'), + (3148, 12, 2767, 'maybe', '2024-07-22 20:48:05', '2025-12-17 19:46:30', 'dKZaNBe4', '7364726'), + (3149, 12, 2768, 'attending', '2024-07-18 00:38:14', '2025-12-17 19:46:30', 'dKZaNBe4', '7366031'), + (3150, 12, 2769, 'attending', '2024-07-19 21:32:50', '2025-12-17 19:46:30', 'dKZaNBe4', '7366803'), + (3151, 12, 2773, 'not_attending', '2024-07-21 21:06:21', '2025-12-17 19:46:31', 'dKZaNBe4', '7368605'), + (3152, 12, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dKZaNBe4', '7368606'), + (3153, 12, 2781, 'attending', '2024-07-25 21:16:51', '2025-12-17 19:46:30', 'dKZaNBe4', '7373194'), + (3154, 12, 2786, 'attending', '2024-08-02 02:15:12', '2025-12-17 19:46:31', 'dKZaNBe4', '7381403'), + (3155, 12, 2798, 'attending', '2024-08-11 23:27:39', '2025-12-17 19:46:31', 'dKZaNBe4', '7395910'), + (3156, 12, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dKZaNBe4', '7397462'), + (3157, 12, 2802, 'attending', '2024-09-02 01:02:56', '2025-12-17 19:46:32', 'dKZaNBe4', '7397463'), + (3158, 12, 2804, 'attending', '2024-08-19 02:51:06', '2025-12-17 19:46:32', 'dKZaNBe4', '7399270'), + (3159, 12, 2806, 'attending', '2024-08-21 21:36:32', '2025-12-17 19:46:25', 'dKZaNBe4', '7404888'), + (3160, 12, 2808, 'attending', '2024-08-28 03:09:52', '2025-12-17 19:46:32', 'dKZaNBe4', '7412860'), + (3161, 12, 2809, 'attending', '2024-08-30 05:27:39', '2025-12-17 19:46:32', 'dKZaNBe4', '7414808'), + (3162, 12, 2811, 'attending', '2024-08-31 02:57:43', '2025-12-17 19:46:32', 'dKZaNBe4', '7418895'), + (3163, 12, 2817, 'maybe', '2024-09-29 19:30:00', '2025-12-17 19:46:25', 'dKZaNBe4', '7424270'), + (3164, 12, 2819, 'attending', '2024-10-19 20:41:15', '2025-12-17 19:46:26', 'dKZaNBe4', '7424273'), + (3165, 12, 2821, 'attending', '2024-10-09 15:34:01', '2025-12-17 19:46:26', 'dKZaNBe4', '7424275'), + (3166, 12, 2822, 'not_attending', '2024-11-07 02:33:34', '2025-12-17 19:46:26', 'dKZaNBe4', '7424276'), + (3167, 12, 2823, 'attending', '2024-09-06 13:45:29', '2025-12-17 19:46:24', 'dKZaNBe4', '7430247'), + (3168, 12, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dKZaNBe4', '7432751'), + (3169, 12, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dKZaNBe4', '7432752'), + (3170, 12, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dKZaNBe4', '7432753'), + (3171, 12, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dKZaNBe4', '7432754'), + (3172, 12, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dKZaNBe4', '7432755'), + (3173, 12, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dKZaNBe4', '7432756'), + (3174, 12, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dKZaNBe4', '7432758'), + (3175, 12, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dKZaNBe4', '7432759'), + (3176, 12, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dKZaNBe4', '7433834'), + (3177, 12, 2834, 'attending', '2024-09-11 01:52:13', '2025-12-17 19:46:25', 'dKZaNBe4', '7433852'), + (3178, 12, 2836, 'attending', '2024-09-14 20:27:24', '2025-12-17 19:46:25', 'dKZaNBe4', '7438708'), + (3179, 12, 2839, 'not_attending', '2024-09-25 19:49:23', '2025-12-17 19:46:25', 'dKZaNBe4', '7439262'), + (3180, 12, 2841, 'not_attending', '2024-09-16 01:07:15', '2025-12-17 19:46:25', 'dKZaNBe4', '7444444'), + (3181, 12, 2844, 'not_attending', '2024-09-20 14:46:27', '2025-12-17 19:46:25', 'dKZaNBe4', '7450233'), + (3182, 12, 2845, 'attending', '2024-09-21 21:22:47', '2025-12-17 19:46:25', 'dKZaNBe4', '7452129'), + (3183, 12, 2850, 'not_attending', '2024-10-02 00:14:08', '2025-12-17 19:46:25', 'dKZaNBe4', '7457153'), + (3184, 12, 2861, 'attending', '2024-09-30 19:58:50', '2025-12-17 19:46:26', 'dKZaNBe4', '7469826'), + (3185, 12, 2862, 'attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dKZaNBe4', '7470197'), + (3186, 12, 2869, 'attending', '2024-10-02 23:14:24', '2025-12-17 19:46:26', 'dKZaNBe4', '7474823'), + (3187, 12, 2870, 'attending', '2024-10-03 22:25:43', '2025-12-17 19:46:26', 'dKZaNBe4', '7475068'), + (3188, 12, 2871, 'attending', '2024-10-06 04:40:16', '2025-12-17 19:46:26', 'dKZaNBe4', '7480481'), + (3189, 12, 2883, 'attending', '2024-10-17 04:52:14', '2025-12-17 19:46:26', 'dKZaNBe4', '7649157'), + (3190, 12, 2891, 'maybe', '2024-10-26 19:06:10', '2025-12-17 19:46:26', 'dKZaNBe4', '7668163'), + (3191, 12, 2894, 'attending', '2024-11-02 20:55:50', '2025-12-17 19:46:26', 'dKZaNBe4', '7680059'), + (3192, 12, 2897, 'attending', '2024-11-14 21:10:00', '2025-12-17 19:46:27', 'dKZaNBe4', '7683650'), + (3193, 12, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'dKZaNBe4', '7685613'), + (3194, 12, 2899, 'attending', '2024-11-11 14:31:48', '2025-12-17 19:46:27', 'dKZaNBe4', '7685616'), + (3195, 12, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dKZaNBe4', '7688194'), + (3196, 12, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dKZaNBe4', '7688196'), + (3197, 12, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dKZaNBe4', '7688289'), + (3198, 12, 2906, 'maybe', '2024-11-09 21:53:41', '2025-12-17 19:46:26', 'dKZaNBe4', '7689366'), + (3199, 12, 2909, 'attending', '2024-11-11 00:01:03', '2025-12-17 19:46:27', 'dKZaNBe4', '7689771'), + (3200, 12, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dKZaNBe4', '7692763'), + (3201, 12, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dKZaNBe4', '7697552'), + (3202, 12, 2916, 'attending', '2024-11-17 19:12:15', '2025-12-17 19:46:27', 'dKZaNBe4', '7699006'), + (3203, 12, 2917, 'attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dKZaNBe4', '7699878'), + (3204, 12, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dKZaNBe4', '7704043'), + (3205, 12, 2922, 'maybe', '2024-11-25 23:38:21', '2025-12-17 19:46:21', 'dKZaNBe4', '7710890'), + (3206, 12, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dKZaNBe4', '7712467'), + (3207, 12, 2925, 'attending', '2024-12-03 04:45:23', '2025-12-17 19:46:21', 'dKZaNBe4', '7713584'), + (3208, 12, 2926, 'not_attending', '2024-12-03 04:45:19', '2025-12-17 19:46:21', 'dKZaNBe4', '7713585'), + (3209, 12, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dKZaNBe4', '7713586'), + (3210, 12, 2953, 'attending', '2024-12-14 18:37:13', '2025-12-17 19:46:21', 'dKZaNBe4', '7733836'), + (3211, 12, 2954, 'attending', '2024-12-14 18:28:11', '2025-12-17 19:46:21', 'dKZaNBe4', '7734260'), + (3212, 12, 2957, 'attending', '2024-12-15 21:00:04', '2025-12-17 19:46:21', 'dKZaNBe4', '7735370'), + (3213, 12, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dKZaNBe4', '7738518'), + (3214, 12, 2962, 'not_attending', '2024-12-26 20:50:08', '2025-12-17 19:46:22', 'dKZaNBe4', '7750632'), + (3215, 12, 2963, 'attending', '2024-12-28 19:05:03', '2025-12-17 19:46:22', 'dKZaNBe4', '7750636'), + (3216, 12, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dKZaNBe4', '7796540'), + (3217, 12, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dKZaNBe4', '7796541'), + (3218, 12, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dKZaNBe4', '7796542'), + (3219, 12, 2972, 'attending', '2025-01-15 20:13:20', '2025-12-17 19:46:22', 'dKZaNBe4', '7812563'), + (3220, 12, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dKZaNBe4', '7825913'), + (3221, 12, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dKZaNBe4', '7825920'), + (3222, 12, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dKZaNBe4', '7826209'), + (3223, 12, 2984, 'maybe', '2025-02-02 19:42:43', '2025-12-17 19:46:23', 'dKZaNBe4', '7830134'), + (3224, 12, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dKZaNBe4', '7834742'), + (3225, 12, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dKZaNBe4', '7842108'), + (3226, 12, 2990, 'attending', '2025-02-15 06:06:07', '2025-12-17 19:46:23', 'dKZaNBe4', '7842898'), + (3227, 12, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dKZaNBe4', '7842902'), + (3228, 12, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dKZaNBe4', '7842903'), + (3229, 12, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dKZaNBe4', '7842904'), + (3230, 12, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dKZaNBe4', '7842905'), + (3231, 12, 3001, 'attending', '2025-02-18 16:45:49', '2025-12-17 19:46:24', 'dKZaNBe4', '7854184'), + (3232, 12, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dKZaNBe4', '7855719'), + (3233, 12, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dKZaNBe4', '7860683'), + (3234, 12, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dKZaNBe4', '7860684'), + (3235, 12, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dKZaNBe4', '7866095'), + (3236, 12, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dKZaNBe4', '7869170'), + (3237, 12, 3014, 'attending', '2025-04-01 01:23:50', '2025-12-17 19:46:19', 'dKZaNBe4', '7869185'), + (3238, 12, 3015, 'attending', '2025-04-18 14:33:14', '2025-12-17 19:46:20', 'dKZaNBe4', '7869186'), + (3239, 12, 3016, 'attending', '2025-04-18 14:33:09', '2025-12-17 19:46:20', 'dKZaNBe4', '7869187'), + (3240, 12, 3017, 'attending', '2025-03-25 01:04:03', '2025-12-17 19:46:19', 'dKZaNBe4', '7869188'), + (3241, 12, 3028, 'attending', '2025-04-27 17:52:37', '2025-12-17 19:46:20', 'dKZaNBe4', '7869199'), + (3242, 12, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dKZaNBe4', '7869201'), + (3243, 12, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dKZaNBe4', '7877465'), + (3244, 12, 3041, 'attending', '2025-03-14 04:33:14', '2025-12-17 19:46:19', 'dKZaNBe4', '7881995'), + (3245, 12, 3043, 'maybe', '2025-03-15 19:49:28', '2025-12-17 19:46:19', 'dKZaNBe4', '7882587'), + (3246, 12, 3049, 'attending', '2025-03-16 16:47:55', '2025-12-17 19:46:19', 'dKZaNBe4', '7883215'), + (3247, 12, 3050, 'maybe', '2025-03-17 13:06:53', '2025-12-17 19:46:19', 'dKZaNBe4', '7884021'), + (3248, 12, 3053, 'attending', '2025-03-17 00:11:15', '2025-12-17 19:46:19', 'dKZaNBe4', '7884030'), + (3249, 12, 3055, 'maybe', '2025-03-27 03:28:42', '2025-12-17 19:46:19', 'dKZaNBe4', '7888118'), + (3250, 12, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dKZaNBe4', '7888250'), + (3251, 12, 3058, 'not_attending', '2025-03-27 22:15:01', '2025-12-17 19:46:19', 'dKZaNBe4', '7891460'), + (3252, 12, 3072, 'maybe', '2025-04-03 00:06:18', '2025-12-17 19:46:19', 'dKZaNBe4', '7895449'), + (3253, 12, 3081, 'not_attending', '2025-04-08 12:33:06', '2025-12-17 19:46:20', 'dKZaNBe4', '7902801'), + (3254, 12, 3088, 'attending', '2025-06-10 18:55:31', '2025-12-17 19:46:15', 'dKZaNBe4', '7904777'), + (3255, 12, 3091, 'not_attending', '2025-04-18 14:34:01', '2025-12-17 19:46:20', 'dKZaNBe4', '8340289'), + (3256, 12, 3093, 'not_attending', '2025-04-20 16:59:35', '2025-12-17 19:46:20', 'dKZaNBe4', '8342248'), + (3257, 12, 3094, 'not_attending', '2025-05-05 11:43:29', '2025-12-17 19:46:21', 'dKZaNBe4', '8342292'), + (3258, 12, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dKZaNBe4', '8349164'), + (3259, 12, 3105, 'attending', '2025-06-16 02:18:02', '2025-12-17 19:46:15', 'dKZaNBe4', '8349545'), + (3260, 12, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dKZaNBe4', '8353584'), + (3261, 12, 3113, 'attending', '2025-05-01 01:57:52', '2025-12-17 19:46:20', 'dKZaNBe4', '8355089'), + (3262, 12, 3125, 'attending', '2025-05-09 21:29:55', '2025-12-17 19:46:21', 'dKZaNBe4', '8364293'), + (3263, 12, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dKZaNBe4', '8368028'), + (3264, 12, 3132, 'not_attending', '2025-05-18 21:55:13', '2025-12-17 19:46:21', 'dKZaNBe4', '8368029'), + (3265, 12, 3133, 'attending', '2025-05-23 04:37:23', '2025-12-17 19:46:14', 'dKZaNBe4', '8368030'), + (3266, 12, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dKZaNBe4', '8388462'), + (3267, 12, 3150, 'maybe', '2025-06-16 16:08:19', '2025-12-17 19:46:15', 'dKZaNBe4', '8393174'), + (3268, 12, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dKZaNBe4', '8400273'), + (3269, 12, 3154, 'attending', '2025-06-21 18:43:14', '2025-12-17 19:46:15', 'dKZaNBe4', '8400274'), + (3270, 12, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dKZaNBe4', '8400275'), + (3271, 12, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dKZaNBe4', '8400276'), + (3272, 12, 3157, 'attending', '2025-06-04 04:29:10', '2025-12-17 19:46:15', 'dKZaNBe4', '8401407'), + (3273, 12, 3158, 'attending', '2025-06-04 04:30:57', '2025-12-17 19:46:15', 'dKZaNBe4', '8401408'), + (3274, 12, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dKZaNBe4', '8404977'), + (3275, 12, 3176, 'attending', '2025-06-20 01:02:05', '2025-12-17 19:46:15', 'dKZaNBe4', '8416741'), + (3276, 12, 3179, 'not_attending', '2025-06-24 03:27:21', '2025-12-17 19:46:15', 'dKZaNBe4', '8421850'), + (3277, 12, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dKZaNBe4', '8430783'), + (3278, 12, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dKZaNBe4', '8430784'), + (3279, 12, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dKZaNBe4', '8430799'), + (3280, 12, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dKZaNBe4', '8430800'), + (3281, 12, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dKZaNBe4', '8430801'), + (3282, 12, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dKZaNBe4', '8438709'), + (3283, 12, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dKZaNBe4', '8457738'), + (3284, 12, 3200, 'attending', '2025-07-19 18:31:02', '2025-12-17 19:46:17', 'dKZaNBe4', '8459566'), + (3285, 12, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dKZaNBe4', '8459567'), + (3286, 12, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dKZaNBe4', '8461032'), + (3287, 12, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dKZaNBe4', '8477877'), + (3288, 12, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dKZaNBe4', '8485688'), + (3289, 12, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dKZaNBe4', '8490587'), + (3290, 12, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dKZaNBe4', '8493552'), + (3291, 12, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dKZaNBe4', '8493553'), + (3292, 12, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dKZaNBe4', '8493554'), + (3293, 12, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dKZaNBe4', '8493555'), + (3294, 12, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dKZaNBe4', '8493556'), + (3295, 12, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dKZaNBe4', '8493557'), + (3296, 12, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dKZaNBe4', '8493558'), + (3297, 12, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dKZaNBe4', '8493559'), + (3298, 12, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dKZaNBe4', '8493560'), + (3299, 12, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dKZaNBe4', '8493561'), + (3300, 12, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dKZaNBe4', '8493572'), + (3301, 12, 3272, 'maybe', '2025-09-18 19:54:23', '2025-12-17 19:46:12', 'dKZaNBe4', '8524068'), + (3302, 12, 3274, 'attending', '2025-09-20 21:23:32', '2025-12-17 19:46:12', 'dKZaNBe4', '8527784'), + (3303, 12, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dKZaNBe4', '8540725'), + (3304, 12, 3289, 'attending', '2025-10-23 01:54:52', '2025-12-17 19:46:14', 'dKZaNBe4', '8542939'), + (3305, 12, 3295, 'not_attending', '2025-10-26 19:56:53', '2025-12-17 19:46:14', 'dKZaNBe4', '8547541'), + (3306, 12, 3300, 'attending', '2025-10-26 19:57:04', '2025-12-17 19:46:14', 'dKZaNBe4', '8549145'), + (3307, 12, 3302, 'attending', '2025-11-09 05:28:59', '2025-12-17 19:46:14', 'dKZaNBe4', '8550022'), + (3308, 12, 3304, 'attending', '2025-11-22 21:31:03', '2025-12-17 19:46:14', 'dKZaNBe4', '8550024'), + (3309, 12, 3305, 'not_attending', '2025-12-03 00:39:01', '2025-12-17 19:46:11', 'dKZaNBe4', '8550025'), + (3310, 12, 3306, 'attending', '2025-12-13 22:34:10', '2025-12-17 19:46:11', 'dKZaNBe4', '8550026'), + (3311, 12, 3308, 'maybe', '2025-11-11 01:02:42', '2025-12-17 19:46:14', 'dKZaNBe4', '8550408'), + (3312, 12, 3316, 'attending', '2025-11-05 04:37:11', '2025-12-17 19:46:14', 'dKZaNBe4', '8552493'), + (3313, 12, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dKZaNBe4', '8555421'), + (3314, 12, 3323, 'attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'dKZaNBe4', '8555522'), + (3315, 12, 3325, 'maybe', '2025-11-20 00:18:52', '2025-12-17 19:46:14', 'dKZaNBe4', '8556660'), + (3316, 12, 3328, 'maybe', '2025-11-22 21:31:06', '2025-12-17 19:46:14', 'dKZaNBe4', '8557254'), + (3317, 12, 3346, 'attending', '2026-01-02 07:01:13', '2026-01-02 07:01:13', NULL, NULL), + (3318, 13, 1480, 'attending', '2022-06-24 22:08:08', '2025-12-17 19:47:19', 'ZdNrg9kd', '5411699'), + (3319, 13, 1482, 'not_attending', '2022-06-25 01:25:48', '2025-12-17 19:47:19', 'ZdNrg9kd', '5412550'), + (3320, 13, 1485, 'attending', '2022-06-23 20:49:37', '2025-12-17 19:47:17', 'ZdNrg9kd', '5416276'), + (3321, 13, 1488, 'attending', '2022-06-25 20:50:38', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420154'), + (3322, 13, 1489, 'maybe', '2022-07-06 18:56:27', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420155'), + (3323, 13, 1490, 'attending', '2022-07-03 06:12:13', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420156'), + (3324, 13, 1491, 'attending', '2022-07-03 06:12:35', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420158'), + (3325, 13, 1492, 'attending', '2022-07-05 03:07:30', '2025-12-17 19:47:19', 'ZdNrg9kd', '5420175'), + (3326, 13, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422086'), + (3327, 13, 1496, 'attending', '2022-06-26 16:41:21', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422404'), + (3328, 13, 1497, 'attending', '2022-06-26 16:41:27', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422405'), + (3329, 13, 1498, 'attending', '2022-07-02 19:57:57', '2025-12-17 19:47:19', 'ZdNrg9kd', '5422406'), + (3330, 13, 1500, 'maybe', '2022-07-06 03:02:41', '2025-12-17 19:47:19', 'ZdNrg9kd', '5423915'), + (3331, 13, 1501, 'maybe', '2022-06-29 22:47:55', '2025-12-17 19:47:19', 'ZdNrg9kd', '5424546'), + (3332, 13, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ZdNrg9kd', '5424565'), + (3333, 13, 1504, 'attending', '2022-07-01 23:27:43', '2025-12-17 19:47:19', 'ZdNrg9kd', '5426882'), + (3334, 13, 1505, 'attending', '2022-07-02 22:19:31', '2025-12-17 19:47:19', 'ZdNrg9kd', '5427083'), + (3335, 13, 1508, 'attending', '2022-07-02 22:18:37', '2025-12-17 19:47:19', 'ZdNrg9kd', '5433453'), + (3336, 13, 1509, 'maybe', '2022-07-06 03:02:31', '2025-12-17 19:47:19', 'ZdNrg9kd', '5434019'), + (3337, 13, 1511, 'attending', '2022-07-07 03:44:02', '2025-12-17 19:47:19', 'ZdNrg9kd', '5437733'), + (3338, 13, 1513, 'attending', '2022-07-10 03:06:35', '2025-12-17 19:47:19', 'ZdNrg9kd', '5441125'), + (3339, 13, 1514, 'attending', '2022-07-10 03:06:37', '2025-12-17 19:47:20', 'ZdNrg9kd', '5441126'), + (3340, 13, 1515, 'maybe', '2022-07-19 15:16:21', '2025-12-17 19:47:21', 'ZdNrg9kd', '5441128'), + (3341, 13, 1516, 'attending', '2022-08-16 01:59:40', '2025-12-17 19:47:23', 'ZdNrg9kd', '5441129'), + (3342, 13, 1517, 'attending', '2022-08-16 01:59:49', '2025-12-17 19:47:23', 'ZdNrg9kd', '5441130'), + (3343, 13, 1518, 'attending', '2022-08-22 02:10:40', '2025-12-17 19:47:24', 'ZdNrg9kd', '5441131'), + (3344, 13, 1519, 'attending', '2022-08-22 02:10:58', '2025-12-17 19:47:24', 'ZdNrg9kd', '5441132'), + (3345, 13, 1520, 'attending', '2022-07-10 03:04:23', '2025-12-17 19:47:19', 'ZdNrg9kd', '5441645'), + (3346, 13, 1522, 'attending', '2022-07-12 02:03:01', '2025-12-17 19:47:20', 'ZdNrg9kd', '5442832'), + (3347, 13, 1524, 'attending', '2022-07-11 17:49:47', '2025-12-17 19:47:19', 'ZdNrg9kd', '5443300'), + (3348, 13, 1525, 'not_attending', '2022-07-13 00:58:13', '2025-12-17 19:47:19', 'ZdNrg9kd', '5444962'), + (3349, 13, 1528, 'maybe', '2022-07-13 22:45:47', '2025-12-17 19:47:20', 'ZdNrg9kd', '5446643'), + (3350, 13, 1537, 'maybe', '2022-07-16 17:47:45', '2025-12-17 19:47:20', 'ZdNrg9kd', '5449117'), + (3351, 13, 1539, 'attending', '2022-07-19 15:16:12', '2025-12-17 19:47:21', 'ZdNrg9kd', '5449671'), + (3352, 13, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ZdNrg9kd', '5453325'), + (3353, 13, 1541, 'attending', '2022-07-19 15:16:02', '2025-12-17 19:47:20', 'ZdNrg9kd', '5453542'), + (3354, 13, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ZdNrg9kd', '5454516'), + (3355, 13, 1544, 'maybe', '2022-09-11 22:59:57', '2025-12-17 19:47:11', 'ZdNrg9kd', '5454517'), + (3356, 13, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ZdNrg9kd', '5454605'), + (3357, 13, 1546, 'maybe', '2022-07-27 01:38:39', '2025-12-17 19:47:20', 'ZdNrg9kd', '5454607'), + (3358, 13, 1551, 'maybe', '2022-07-19 22:37:55', '2025-12-17 19:47:20', 'ZdNrg9kd', '5455037'), + (3359, 13, 1553, 'maybe', '2022-07-19 23:29:00', '2025-12-17 19:47:20', 'ZdNrg9kd', '5455164'), + (3360, 13, 1557, 'attending', '2022-08-03 01:51:59', '2025-12-17 19:47:21', 'ZdNrg9kd', '5458729'), + (3361, 13, 1558, 'attending', '2022-09-14 03:06:03', '2025-12-17 19:47:10', 'ZdNrg9kd', '5458730'), + (3362, 13, 1559, 'attending', '2022-09-16 22:35:59', '2025-12-17 19:47:11', 'ZdNrg9kd', '5458731'), + (3363, 13, 1561, 'attending', '2022-08-02 02:50:05', '2025-12-17 19:47:22', 'ZdNrg9kd', '5461278'), + (3364, 13, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ZdNrg9kd', '5469480'), + (3365, 13, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ZdNrg9kd', '5471073'), + (3366, 13, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ZdNrg9kd', '5474663'), + (3367, 13, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ZdNrg9kd', '5482022'), + (3368, 13, 1575, 'attending', '2022-08-17 01:49:20', '2025-12-17 19:47:23', 'ZdNrg9kd', '5482250'), + (3369, 13, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ZdNrg9kd', '5482793'), + (3370, 13, 1580, 'attending', '2022-08-07 04:24:58', '2025-12-17 19:47:22', 'ZdNrg9kd', '5488912'), + (3371, 13, 1582, 'attending', '2022-08-16 01:59:35', '2025-12-17 19:47:23', 'ZdNrg9kd', '5492001'), + (3372, 13, 1583, 'attending', '2022-08-07 21:17:29', '2025-12-17 19:47:22', 'ZdNrg9kd', '5492002'), + (3373, 13, 1584, 'maybe', '2022-08-16 01:59:46', '2025-12-17 19:47:23', 'ZdNrg9kd', '5492004'), + (3374, 13, 1585, 'attending', '2022-08-07 21:17:20', '2025-12-17 19:47:22', 'ZdNrg9kd', '5492013'), + (3375, 13, 1586, 'attending', '2022-08-17 01:50:07', '2025-12-17 19:47:23', 'ZdNrg9kd', '5492019'), + (3376, 13, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ZdNrg9kd', '5492192'), + (3377, 13, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ZdNrg9kd', '5493139'), + (3378, 13, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'ZdNrg9kd', '5493200'), + (3379, 13, 1603, 'attending', '2022-08-16 01:59:21', '2025-12-17 19:47:23', 'ZdNrg9kd', '5497895'), + (3380, 13, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ZdNrg9kd', '5502188'), + (3381, 13, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ZdNrg9kd', '5505059'), + (3382, 13, 1609, 'attending', '2022-08-22 02:10:51', '2025-12-17 19:47:23', 'ZdNrg9kd', '5506590'), + (3383, 13, 1610, 'attending', '2022-08-22 02:10:13', '2025-12-17 19:47:23', 'ZdNrg9kd', '5506595'), + (3384, 13, 1615, 'maybe', '2022-08-22 02:10:25', '2025-12-17 19:47:23', 'ZdNrg9kd', '5509055'), + (3385, 13, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ZdNrg9kd', '5512862'), + (3386, 13, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ZdNrg9kd', '5513985'), + (3387, 13, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ZdNrg9kd', '5519981'), + (3388, 13, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ZdNrg9kd', '5522550'), + (3389, 13, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ZdNrg9kd', '5534683'), + (3390, 13, 1635, 'attending', '2022-09-05 23:33:28', '2025-12-17 19:47:10', 'ZdNrg9kd', '5537735'), + (3391, 13, 1637, 'attending', '2022-09-05 23:32:57', '2025-12-17 19:47:24', 'ZdNrg9kd', '5539591'), + (3392, 13, 1640, 'attending', '2022-09-05 23:33:24', '2025-12-17 19:47:10', 'ZdNrg9kd', '5540859'), + (3393, 13, 1642, 'maybe', '2022-09-05 23:33:09', '2025-12-17 19:47:24', 'ZdNrg9kd', '5544227'), + (3394, 13, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ZdNrg9kd', '5546619'), + (3395, 13, 1653, 'maybe', '2022-09-16 22:36:26', '2025-12-17 19:47:11', 'ZdNrg9kd', '5554400'), + (3396, 13, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ZdNrg9kd', '5555245'), + (3397, 13, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ZdNrg9kd', '5557747'), + (3398, 13, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ZdNrg9kd', '5560255'), + (3399, 13, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ZdNrg9kd', '5562906'), + (3400, 13, 1665, 'attending', '2022-09-12 21:24:37', '2025-12-17 19:47:25', 'ZdNrg9kd', '5563133'), + (3401, 13, 1666, 'maybe', '2022-09-20 01:53:42', '2025-12-17 19:47:11', 'ZdNrg9kd', '5563208'), + (3402, 13, 1667, 'attending', '2022-09-24 16:29:24', '2025-12-17 19:47:11', 'ZdNrg9kd', '5563221'), + (3403, 13, 1668, 'attending', '2022-10-01 17:56:11', '2025-12-17 19:47:12', 'ZdNrg9kd', '5563222'), + (3404, 13, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ZdNrg9kd', '5600604'), + (3405, 13, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ZdNrg9kd', '5605544'), + (3406, 13, 1699, 'attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'ZdNrg9kd', '5606737'), + (3407, 13, 1704, 'attending', '2022-10-06 22:34:32', '2025-12-17 19:47:12', 'ZdNrg9kd', '5610508'), + (3408, 13, 1713, 'attending', '2022-10-04 02:31:53', '2025-12-17 19:47:13', 'ZdNrg9kd', '5622108'), + (3409, 13, 1714, 'attending', '2022-10-04 02:31:55', '2025-12-17 19:47:14', 'ZdNrg9kd', '5622347'), + (3410, 13, 1717, 'attending', '2022-10-21 22:31:25', '2025-12-17 19:47:13', 'ZdNrg9kd', '5622842'), + (3411, 13, 1719, 'attending', '2022-10-07 13:14:11', '2025-12-17 19:47:12', 'ZdNrg9kd', '5630958'), + (3412, 13, 1720, 'attending', '2022-10-12 21:56:51', '2025-12-17 19:47:12', 'ZdNrg9kd', '5630959'), + (3413, 13, 1721, 'attending', '2022-10-12 21:57:09', '2025-12-17 19:47:13', 'ZdNrg9kd', '5630960'), + (3414, 13, 1722, 'maybe', '2022-10-12 21:57:11', '2025-12-17 19:47:14', 'ZdNrg9kd', '5630961'), + (3415, 13, 1723, 'attending', '2022-10-12 21:57:15', '2025-12-17 19:47:15', 'ZdNrg9kd', '5630962'), + (3416, 13, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ZdNrg9kd', '5630966'), + (3417, 13, 1725, 'attending', '2022-11-08 02:37:53', '2025-12-17 19:47:16', 'ZdNrg9kd', '5630967'), + (3418, 13, 1726, 'attending', '2022-11-08 02:37:55', '2025-12-17 19:47:16', 'ZdNrg9kd', '5630968'), + (3419, 13, 1727, 'attending', '2022-11-08 02:37:56', '2025-12-17 19:47:16', 'ZdNrg9kd', '5630969'), + (3420, 13, 1728, 'attending', '2022-12-05 03:36:33', '2025-12-17 19:47:17', 'ZdNrg9kd', '5630970'), + (3421, 13, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ZdNrg9kd', '5635406'), + (3422, 13, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ZdNrg9kd', '5638765'), + (3423, 13, 1739, 'maybe', '2022-10-14 02:18:04', '2025-12-17 19:47:14', 'ZdNrg9kd', '5640097'), + (3424, 13, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ZdNrg9kd', '5640843'), + (3425, 13, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ZdNrg9kd', '5641521'), + (3426, 13, 1744, 'attending', '2022-11-21 23:32:13', '2025-12-17 19:47:16', 'ZdNrg9kd', '5642818'), + (3427, 13, 1747, 'maybe', '2022-10-24 01:46:57', '2025-12-17 19:47:14', 'ZdNrg9kd', '5648009'), + (3428, 13, 1750, 'attending', '2022-10-16 03:59:20', '2025-12-17 19:47:15', 'ZdNrg9kd', '5652365'), + (3429, 13, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ZdNrg9kd', '5652395'), + (3430, 13, 1753, 'maybe', '2022-10-16 03:58:52', '2025-12-17 19:47:13', 'ZdNrg9kd', '5656228'), + (3431, 13, 1757, 'maybe', '2022-10-24 03:01:37', '2025-12-17 19:47:15', 'ZdNrg9kd', '5668974'), + (3432, 13, 1759, 'attending', '2022-10-22 18:55:00', '2025-12-17 19:47:13', 'ZdNrg9kd', '5669097'), + (3433, 13, 1762, 'attending', '2022-11-12 23:38:36', '2025-12-17 19:47:16', 'ZdNrg9kd', '5670445'), + (3434, 13, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ZdNrg9kd', '5671637'), + (3435, 13, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ZdNrg9kd', '5672329'), + (3436, 13, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ZdNrg9kd', '5674057'), + (3437, 13, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ZdNrg9kd', '5674060'), + (3438, 13, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ZdNrg9kd', '5677461'), + (3439, 13, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ZdNrg9kd', '5698046'), + (3440, 13, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'ZdNrg9kd', '5699760'), + (3441, 13, 1790, 'attending', '2022-11-08 02:37:50', '2025-12-17 19:47:15', 'ZdNrg9kd', '5727424'), + (3442, 13, 1793, 'attending', '2022-11-20 23:52:29', '2025-12-17 19:47:16', 'ZdNrg9kd', '5736365'), + (3443, 13, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ZdNrg9kd', '5741601'), + (3444, 13, 1797, 'attending', '2022-12-01 00:41:38', '2025-12-17 19:47:17', 'ZdNrg9kd', '5757486'), + (3445, 13, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ZdNrg9kd', '5763458'), + (3446, 13, 1800, 'attending', '2022-11-19 20:26:59', '2025-12-17 19:47:16', 'ZdNrg9kd', '5764667'), + (3447, 13, 1807, 'attending', '2023-01-11 00:46:24', '2025-12-17 19:47:05', 'ZdNrg9kd', '5764677'), + (3448, 13, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ZdNrg9kd', '5774172'), + (3449, 13, 1826, 'attending', '2022-12-04 18:50:53', '2025-12-17 19:47:04', 'ZdNrg9kd', '5776768'), + (3450, 13, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'ZdNrg9kd', '5818247'), + (3451, 13, 1834, 'attending', '2022-12-10 22:54:28', '2025-12-17 19:47:17', 'ZdNrg9kd', '5819470'), + (3452, 13, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ZdNrg9kd', '5819471'), + (3453, 13, 1837, 'attending', '2022-12-08 00:30:15', '2025-12-17 19:47:16', 'ZdNrg9kd', '5820146'), + (3454, 13, 1842, 'attending', '2022-12-09 03:46:15', '2025-12-17 19:47:04', 'ZdNrg9kd', '5827739'), + (3455, 13, 1843, 'attending', '2022-12-17 19:28:03', '2025-12-17 19:47:04', 'ZdNrg9kd', '5844304'), + (3456, 13, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ZdNrg9kd', '5844306'), + (3457, 13, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ZdNrg9kd', '5850159'), + (3458, 13, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ZdNrg9kd', '5858999'), + (3459, 13, 1851, 'not_attending', '2023-01-08 22:13:13', '2025-12-17 19:47:05', 'ZdNrg9kd', '5869316'), + (3460, 13, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ZdNrg9kd', '5871984'), + (3461, 13, 1856, 'attending', '2023-01-14 05:49:09', '2025-12-17 19:47:05', 'ZdNrg9kd', '5873970'), + (3462, 13, 1857, 'attending', '2023-01-17 04:54:18', '2025-12-17 19:47:05', 'ZdNrg9kd', '5873973'), + (3463, 13, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ZdNrg9kd', '5876354'), + (3464, 13, 1863, 'attending', '2023-01-29 19:36:16', '2025-12-17 19:47:06', 'ZdNrg9kd', '5877255'), + (3465, 13, 1864, 'attending', '2023-01-17 04:54:24', '2025-12-17 19:47:05', 'ZdNrg9kd', '5879675'), + (3466, 13, 1865, 'attending', '2023-01-17 04:54:22', '2025-12-17 19:47:06', 'ZdNrg9kd', '5879676'), + (3467, 13, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'ZdNrg9kd', '5880939'), + (3468, 13, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ZdNrg9kd', '5880940'), + (3469, 13, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ZdNrg9kd', '5880942'), + (3470, 13, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ZdNrg9kd', '5880943'), + (3471, 13, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ZdNrg9kd', '5887890'), + (3472, 13, 1875, 'attending', '2023-01-26 23:00:55', '2025-12-17 19:47:06', 'ZdNrg9kd', '5887908'), + (3473, 13, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ZdNrg9kd', '5888598'), + (3474, 13, 1878, 'attending', '2023-01-29 03:29:01', '2025-12-17 19:47:07', 'ZdNrg9kd', '5893000'), + (3475, 13, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ZdNrg9kd', '5893260'), + (3476, 13, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ZdNrg9kd', '5899826'), + (3477, 13, 1889, 'attending', '2023-02-01 05:26:45', '2025-12-17 19:47:07', 'ZdNrg9kd', '5900199'), + (3478, 13, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ZdNrg9kd', '5900200'), + (3479, 13, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ZdNrg9kd', '5900202'), + (3480, 13, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ZdNrg9kd', '5900203'), + (3481, 13, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ZdNrg9kd', '5901108'), + (3482, 13, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ZdNrg9kd', '5901126'), + (3483, 13, 1897, 'attending', '2023-02-01 05:26:40', '2025-12-17 19:47:07', 'ZdNrg9kd', '5901128'), + (3484, 13, 1898, 'attending', '2023-02-01 05:26:32', '2025-12-17 19:47:06', 'ZdNrg9kd', '5901263'), + (3485, 13, 1899, 'maybe', '2023-02-01 05:26:53', '2025-12-17 19:47:07', 'ZdNrg9kd', '5901323'), + (3486, 13, 1907, 'maybe', '2023-02-04 18:31:13', '2025-12-17 19:47:07', 'ZdNrg9kd', '5904716'), + (3487, 13, 1908, 'attending', '2023-02-04 18:30:33', '2025-12-17 19:47:07', 'ZdNrg9kd', '5905018'), + (3488, 13, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ZdNrg9kd', '5909655'), + (3489, 13, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ZdNrg9kd', '5910522'), + (3490, 13, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ZdNrg9kd', '5910526'), + (3491, 13, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ZdNrg9kd', '5910528'), + (3492, 13, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ZdNrg9kd', '5916219'), + (3493, 13, 1926, 'attending', '2023-02-27 23:50:03', '2025-12-17 19:47:08', 'ZdNrg9kd', '5932620'), + (3494, 13, 1927, 'attending', '2023-02-27 23:50:24', '2025-12-17 19:47:10', 'ZdNrg9kd', '5932621'), + (3495, 13, 1930, 'attending', '2023-02-20 19:22:43', '2025-12-17 19:47:08', 'ZdNrg9kd', '5933462'), + (3496, 13, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ZdNrg9kd', '5936234'), + (3497, 13, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ZdNrg9kd', '5958351'), + (3498, 13, 1936, 'attending', '2023-02-23 22:51:52', '2025-12-17 19:47:08', 'ZdNrg9kd', '5959397'), + (3499, 13, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ZdNrg9kd', '5959751'), + (3500, 13, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ZdNrg9kd', '5959755'), + (3501, 13, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ZdNrg9kd', '5960055'), + (3502, 13, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ZdNrg9kd', '5961684'), + (3503, 13, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'ZdNrg9kd', '5962132'), + (3504, 13, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'ZdNrg9kd', '5962133'), + (3505, 13, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ZdNrg9kd', '5962134'), + (3506, 13, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ZdNrg9kd', '5962317'), + (3507, 13, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ZdNrg9kd', '5962318'), + (3508, 13, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ZdNrg9kd', '5965933'), + (3509, 13, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ZdNrg9kd', '5967014'), + (3510, 13, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'ZdNrg9kd', '5972763'), + (3511, 13, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ZdNrg9kd', '5972815'), + (3512, 13, 1960, 'attending', '2023-03-06 14:33:32', '2025-12-17 19:47:09', 'ZdNrg9kd', '5973267'), + (3513, 13, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ZdNrg9kd', '5974016'), + (3514, 13, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ZdNrg9kd', '5981515'), + (3515, 13, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ZdNrg9kd', '5993516'), + (3516, 13, 1972, 'maybe', '2023-03-19 18:47:59', '2025-12-17 19:46:56', 'ZdNrg9kd', '5993776'), + (3517, 13, 1973, 'attending', '2023-03-14 21:13:45', '2025-12-17 19:46:56', 'ZdNrg9kd', '5993777'), + (3518, 13, 1974, 'attending', '2023-03-27 17:46:47', '2025-12-17 19:46:57', 'ZdNrg9kd', '5993778'), + (3519, 13, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ZdNrg9kd', '5998939'), + (3520, 13, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ZdNrg9kd', '6028191'), + (3521, 13, 1982, 'attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ZdNrg9kd', '6040066'), + (3522, 13, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ZdNrg9kd', '6042717'), + (3523, 13, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ZdNrg9kd', '6044838'), + (3524, 13, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ZdNrg9kd', '6044839'), + (3525, 13, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNrg9kd', '6045684'), + (3526, 13, 1994, 'maybe', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ZdNrg9kd', '6050104'), + (3527, 13, 2003, 'attending', '2023-05-16 17:05:32', '2025-12-17 19:47:03', 'ZdNrg9kd', '6052606'), + (3528, 13, 2004, 'not_attending', '2023-05-28 03:12:03', '2025-12-17 19:47:04', 'ZdNrg9kd', '6052607'), + (3529, 13, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ZdNrg9kd', '6053195'), + (3530, 13, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ZdNrg9kd', '6053198'), + (3531, 13, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ZdNrg9kd', '6056085'), + (3532, 13, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ZdNrg9kd', '6056916'), + (3533, 13, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ZdNrg9kd', '6059290'), + (3534, 13, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ZdNrg9kd', '6060328'), + (3535, 13, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ZdNrg9kd', '6061037'), + (3536, 13, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ZdNrg9kd', '6061039'), + (3537, 13, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ZdNrg9kd', '6067245'), + (3538, 13, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ZdNrg9kd', '6068094'), + (3539, 13, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ZdNrg9kd', '6068252'), + (3540, 13, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ZdNrg9kd', '6068253'), + (3541, 13, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ZdNrg9kd', '6068254'), + (3542, 13, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'ZdNrg9kd', '6068280'), + (3543, 13, 2032, 'attending', '2023-05-18 21:58:44', '2025-12-17 19:47:04', 'ZdNrg9kd', '6068281'), + (3544, 13, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ZdNrg9kd', '6069093'), + (3545, 13, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ZdNrg9kd', '6072528'), + (3546, 13, 2046, 'maybe', '2023-05-12 21:24:54', '2025-12-17 19:47:02', 'ZdNrg9kd', '6076020'), + (3547, 13, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ZdNrg9kd', '6079840'), + (3548, 13, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ZdNrg9kd', '6083398'), + (3549, 13, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ZdNrg9kd', '6093504'), + (3550, 13, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ZdNrg9kd', '6097414'), + (3551, 13, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ZdNrg9kd', '6097442'), + (3552, 13, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ZdNrg9kd', '6097684'), + (3553, 13, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ZdNrg9kd', '6098762'), + (3554, 13, 2064, 'attending', '2023-06-08 15:58:20', '2025-12-17 19:46:50', 'ZdNrg9kd', '6099988'), + (3555, 13, 2065, 'attending', '2023-06-08 15:58:17', '2025-12-17 19:46:49', 'ZdNrg9kd', '6101169'), + (3556, 13, 2066, 'attending', '2023-05-28 03:12:04', '2025-12-17 19:47:04', 'ZdNrg9kd', '6101361'), + (3557, 13, 2067, 'maybe', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ZdNrg9kd', '6101362'), + (3558, 13, 2070, 'attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'ZdNrg9kd', '6103752'), + (3559, 13, 2074, 'attending', '2023-05-18 21:58:18', '2025-12-17 19:47:03', 'ZdNrg9kd', '6107312'), + (3560, 13, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ZdNrg9kd', '6107314'), + (3561, 13, 2078, 'attending', '2023-05-23 19:40:38', '2025-12-17 19:47:03', 'ZdNrg9kd', '6114163'), + (3562, 13, 2086, 'maybe', '2023-05-28 03:11:53', '2025-12-17 19:47:04', 'ZdNrg9kd', '6119877'), + (3563, 13, 2087, 'maybe', '2023-05-28 03:11:45', '2025-12-17 19:47:04', 'ZdNrg9kd', '6120034'), + (3564, 13, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ZdNrg9kd', '6136733'), + (3565, 13, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ZdNrg9kd', '6137989'), + (3566, 13, 2105, 'maybe', '2023-06-17 20:59:28', '2025-12-17 19:46:50', 'ZdNrg9kd', '6149551'), + (3567, 13, 2106, 'maybe', '2023-06-18 21:04:03', '2025-12-17 19:46:50', 'ZdNrg9kd', '6150479'), + (3568, 13, 2108, 'maybe', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ZdNrg9kd', '6150864'), + (3569, 13, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ZdNrg9kd', '6155491'), + (3570, 13, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ZdNrg9kd', '6164417'), + (3571, 13, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ZdNrg9kd', '6166388'), + (3572, 13, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ZdNrg9kd', '6176439'), + (3573, 13, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'ZdNrg9kd', '6182410'), + (3574, 13, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ZdNrg9kd', '6185812'), + (3575, 13, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ZdNrg9kd', '6187651'), + (3576, 13, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ZdNrg9kd', '6187963'), + (3577, 13, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ZdNrg9kd', '6187964'), + (3578, 13, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ZdNrg9kd', '6187966'), + (3579, 13, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ZdNrg9kd', '6187967'), + (3580, 13, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ZdNrg9kd', '6187969'), + (3581, 13, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ZdNrg9kd', '6334878'), + (3582, 13, 2146, 'maybe', '2023-07-17 18:53:27', '2025-12-17 19:46:53', 'ZdNrg9kd', '6335638'), + (3583, 13, 2148, 'attending', '2023-07-24 21:18:08', '2025-12-17 19:46:53', 'ZdNrg9kd', '6335667'), + (3584, 13, 2152, 'maybe', '2023-07-12 19:28:41', '2025-12-17 19:46:52', 'ZdNrg9kd', '6337021'), + (3585, 13, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ZdNrg9kd', '6337236'), + (3586, 13, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ZdNrg9kd', '6337970'), + (3587, 13, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ZdNrg9kd', '6338308'), + (3588, 13, 2159, 'attending', '2023-07-17 18:53:33', '2025-12-17 19:46:53', 'ZdNrg9kd', '6338355'), + (3589, 13, 2160, 'maybe', '2023-07-29 17:57:12', '2025-12-17 19:46:54', 'ZdNrg9kd', '6338358'), + (3590, 13, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'ZdNrg9kd', '6340845'), + (3591, 13, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ZdNrg9kd', '6341710'), + (3592, 13, 2164, 'attending', '2023-07-27 01:53:12', '2025-12-17 19:46:54', 'ZdNrg9kd', '6341797'), + (3593, 13, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ZdNrg9kd', '6342044'), + (3594, 13, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ZdNrg9kd', '6342298'), + (3595, 13, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'ZdNrg9kd', '6343294'), + (3596, 13, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ZdNrg9kd', '6347034'), + (3597, 13, 2177, 'maybe', '2023-08-12 03:53:36', '2025-12-17 19:46:55', 'ZdNrg9kd', '6347053'), + (3598, 13, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ZdNrg9kd', '6347056'), + (3599, 13, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ZdNrg9kd', '6353830'), + (3600, 13, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ZdNrg9kd', '6353831'), + (3601, 13, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ZdNrg9kd', '6357867'), + (3602, 13, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ZdNrg9kd', '6358652'), + (3603, 13, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'ZdNrg9kd', '6359940'), + (3604, 13, 2204, 'not_attending', '2023-08-19 02:37:43', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361542'), + (3605, 13, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ZdNrg9kd', '6361709'), + (3606, 13, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361710'), + (3607, 13, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361711'), + (3608, 13, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ZdNrg9kd', '6361712'), + (3609, 13, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ZdNrg9kd', '6361713'), + (3610, 13, 2232, 'attending', '2023-08-24 21:29:30', '2025-12-17 19:46:55', 'ZdNrg9kd', '6374818'), + (3611, 13, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ZdNrg9kd', '6382573'), + (3612, 13, 2239, 'maybe', '2023-09-02 04:39:54', '2025-12-17 19:46:56', 'ZdNrg9kd', '6387592'), + (3613, 13, 2240, 'maybe', '2023-09-09 05:15:00', '2025-12-17 19:46:56', 'ZdNrg9kd', '6388603'), + (3614, 13, 2241, 'maybe', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ZdNrg9kd', '6388604'), + (3615, 13, 2242, 'not_attending', '2023-09-21 03:16:39', '2025-12-17 19:46:45', 'ZdNrg9kd', '6388606'), + (3616, 13, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ZdNrg9kd', '6394629'), + (3617, 13, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ZdNrg9kd', '6394631'), + (3618, 13, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ZdNrg9kd', '6440863'), + (3619, 13, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ZdNrg9kd', '6445440'), + (3620, 13, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ZdNrg9kd', '6453951'), + (3621, 13, 2279, 'attending', '2023-10-08 21:00:08', '2025-12-17 19:46:46', 'ZdNrg9kd', '6455460'), + (3622, 13, 2283, 'attending', '2023-10-11 15:51:53', '2025-12-17 19:46:46', 'ZdNrg9kd', '6455503'), + (3623, 13, 2284, 'maybe', '2023-10-13 15:42:51', '2025-12-17 19:46:46', 'ZdNrg9kd', '6460928'), + (3624, 13, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ZdNrg9kd', '6461696'), + (3625, 13, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ZdNrg9kd', '6462129'), + (3626, 13, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ZdNrg9kd', '6463218'), + (3627, 13, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ZdNrg9kd', '6472181'), + (3628, 13, 2303, 'attending', '2023-10-28 17:05:51', '2025-12-17 19:46:47', 'ZdNrg9kd', '6482691'), + (3629, 13, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ZdNrg9kd', '6482693'), + (3630, 13, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'ZdNrg9kd', '6484200'), + (3631, 13, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ZdNrg9kd', '6484680'), + (3632, 13, 2314, 'maybe', '2023-10-29 02:50:04', '2025-12-17 19:46:47', 'ZdNrg9kd', '6493665'), + (3633, 13, 2315, 'maybe', '2023-10-29 02:50:09', '2025-12-17 19:46:47', 'ZdNrg9kd', '6493666'), + (3634, 13, 2316, 'attending', '2023-10-29 02:50:15', '2025-12-17 19:46:48', 'ZdNrg9kd', '6493668'), + (3635, 13, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ZdNrg9kd', '6507741'), + (3636, 13, 2320, 'attending', '2023-11-02 21:30:27', '2025-12-17 19:46:47', 'ZdNrg9kd', '6508647'), + (3637, 13, 2322, 'maybe', '2023-11-02 21:30:45', '2025-12-17 19:46:48', 'ZdNrg9kd', '6514659'), + (3638, 13, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ZdNrg9kd', '6514660'), + (3639, 13, 2324, 'attending', '2023-12-07 04:57:48', '2025-12-17 19:46:49', 'ZdNrg9kd', '6514662'), + (3640, 13, 2325, 'maybe', '2023-12-15 03:18:13', '2025-12-17 19:46:36', 'ZdNrg9kd', '6514663'), + (3641, 13, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ZdNrg9kd', '6519103'), + (3642, 13, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ZdNrg9kd', '6535681'), + (3643, 13, 2345, 'maybe', '2023-11-22 19:01:41', '2025-12-17 19:46:48', 'ZdNrg9kd', '6582414'), + (3644, 13, 2350, 'attending', '2023-11-22 19:01:09', '2025-12-17 19:46:48', 'ZdNrg9kd', '6584352'), + (3645, 13, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ZdNrg9kd', '6584747'), + (3646, 13, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ZdNrg9kd', '6587097'), + (3647, 13, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ZdNrg9kd', '6609022'), + (3648, 13, 2364, 'maybe', '2023-12-07 04:57:42', '2025-12-17 19:46:49', 'ZdNrg9kd', '6613011'), + (3649, 13, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ZdNrg9kd', '6632757'), + (3650, 13, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ZdNrg9kd', '6644187'), + (3651, 13, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ZdNrg9kd', '6648951'), + (3652, 13, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ZdNrg9kd', '6648952'), + (3653, 13, 2388, 'maybe', '2024-01-06 17:48:27', '2025-12-17 19:46:37', 'ZdNrg9kd', '6649244'), + (3654, 13, 2396, 'maybe', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ZdNrg9kd', '6655401'), + (3655, 13, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ZdNrg9kd', '6661585'), + (3656, 13, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ZdNrg9kd', '6661588'), + (3657, 13, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ZdNrg9kd', '6661589'), + (3658, 13, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ZdNrg9kd', '6699906'), + (3659, 13, 2408, 'attending', '2024-01-25 22:16:19', '2025-12-17 19:46:40', 'ZdNrg9kd', '6699907'), + (3660, 13, 2409, 'maybe', '2024-02-03 06:21:47', '2025-12-17 19:46:41', 'ZdNrg9kd', '6699909'), + (3661, 13, 2410, 'attending', '2024-02-09 02:12:47', '2025-12-17 19:46:41', 'ZdNrg9kd', '6699911'), + (3662, 13, 2411, 'attending', '2024-02-09 02:12:49', '2025-12-17 19:46:41', 'ZdNrg9kd', '6699913'), + (3663, 13, 2412, 'not_attending', '2024-02-09 02:12:56', '2025-12-17 19:46:43', 'ZdNrg9kd', '6700717'), + (3664, 13, 2414, 'maybe', '2024-01-16 01:37:23', '2025-12-17 19:46:40', 'ZdNrg9kd', '6701000'), + (3665, 13, 2415, 'maybe', '2024-01-20 17:57:53', '2025-12-17 19:46:40', 'ZdNrg9kd', '6701001'), + (3666, 13, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ZdNrg9kd', '6701109'), + (3667, 13, 2423, 'attending', '2024-01-25 00:58:21', '2025-12-17 19:46:40', 'ZdNrg9kd', '6705141'), + (3668, 13, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ZdNrg9kd', '6705219'), + (3669, 13, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ZdNrg9kd', '6710153'), + (3670, 13, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ZdNrg9kd', '6711552'), + (3671, 13, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ZdNrg9kd', '6711553'), + (3672, 13, 2433, 'attending', '2024-01-25 00:58:26', '2025-12-17 19:46:40', 'ZdNrg9kd', '6715688'), + (3673, 13, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ZdNrg9kd', '6722688'), + (3674, 13, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ZdNrg9kd', '6730620'), + (3675, 13, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'ZdNrg9kd', '6730642'), + (3676, 13, 2450, 'maybe', '2024-02-09 02:13:06', '2025-12-17 19:46:41', 'ZdNrg9kd', '6738807'), + (3677, 13, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ZdNrg9kd', '6740364'), + (3678, 13, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ZdNrg9kd', '6743829'), + (3679, 13, 2467, 'attending', '2024-02-25 09:09:15', '2025-12-17 19:46:43', 'ZdNrg9kd', '7029987'), + (3680, 13, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ZdNrg9kd', '7030380'), + (3681, 13, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ZdNrg9kd', '7033677'), + (3682, 13, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'ZdNrg9kd', '7035415'), + (3683, 13, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ZdNrg9kd', '7044715'), + (3684, 13, 2487, 'maybe', '2024-03-21 04:35:18', '2025-12-17 19:46:33', 'ZdNrg9kd', '7049279'), + (3685, 13, 2490, 'maybe', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ZdNrg9kd', '7050318'), + (3686, 13, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ZdNrg9kd', '7050319'), + (3687, 13, 2492, 'maybe', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ZdNrg9kd', '7050322'), + (3688, 13, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ZdNrg9kd', '7057804'), + (3689, 13, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'ZdNrg9kd', '7059866'), + (3690, 13, 2505, 'attending', '2024-03-12 15:06:09', '2025-12-17 19:46:33', 'ZdNrg9kd', '7069163'), + (3691, 13, 2507, 'maybe', '2024-03-14 16:33:33', '2025-12-17 19:46:33', 'ZdNrg9kd', '7072824'), + (3692, 13, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ZdNrg9kd', '7074348'), + (3693, 13, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ZdNrg9kd', '7074364'), + (3694, 13, 2537, 'maybe', '2024-03-21 04:35:25', '2025-12-17 19:46:33', 'ZdNrg9kd', '7085484'), + (3695, 13, 2538, 'attending', '2024-03-21 04:35:29', '2025-12-17 19:46:33', 'ZdNrg9kd', '7085485'), + (3696, 13, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'ZdNrg9kd', '7089267'), + (3697, 13, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ZdNrg9kd', '7098747'), + (3698, 13, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ZdNrg9kd', '7113468'), + (3699, 13, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ZdNrg9kd', '7114856'), + (3700, 13, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'ZdNrg9kd', '7114951'), + (3701, 13, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ZdNrg9kd', '7114955'), + (3702, 13, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ZdNrg9kd', '7114956'), + (3703, 13, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ZdNrg9kd', '7114957'), + (3704, 13, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'ZdNrg9kd', '7153615'), + (3705, 13, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ZdNrg9kd', '7159484'), + (3706, 13, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ZdNrg9kd', '7178446'), + (3707, 13, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'ZdNrg9kd', '7220467'), + (3708, 13, 2605, 'attending', '2024-04-28 02:37:30', '2025-12-17 19:46:35', 'ZdNrg9kd', '7229243'), + (3709, 13, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ZdNrg9kd', '7240354'), + (3710, 13, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ZdNrg9kd', '7251633'), + (3711, 13, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'ZdNrg9kd', '7263048'), + (3712, 13, 2628, 'maybe', '2024-05-30 18:11:10', '2025-12-17 19:46:36', 'ZdNrg9kd', '7264725'), + (3713, 13, 2629, 'maybe', '2024-05-30 18:11:14', '2025-12-17 19:46:28', 'ZdNrg9kd', '7264726'), + (3714, 13, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'ZdNrg9kd', '7302674'), + (3715, 13, 2678, 'maybe', '2024-06-13 01:10:04', '2025-12-17 19:46:28', 'ZdNrg9kd', '7319489'), + (3716, 13, 2679, 'maybe', '2024-06-13 01:10:08', '2025-12-17 19:46:29', 'ZdNrg9kd', '7319490'), + (3717, 13, 2687, 'maybe', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'ZdNrg9kd', '7324019'), + (3718, 13, 2688, 'maybe', '2024-06-13 01:10:15', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324073'), + (3719, 13, 2689, 'attending', '2024-06-13 01:10:17', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324074'), + (3720, 13, 2690, 'maybe', '2024-07-06 15:52:40', '2025-12-17 19:46:30', 'ZdNrg9kd', '7324075'), + (3721, 13, 2691, 'maybe', '2024-07-15 22:20:03', '2025-12-17 19:46:30', 'ZdNrg9kd', '7324076'), + (3722, 13, 2692, 'not_attending', '2024-07-15 22:20:23', '2025-12-17 19:46:30', 'ZdNrg9kd', '7324077'), + (3723, 13, 2693, 'attending', '2024-07-27 22:12:35', '2025-12-17 19:46:31', 'ZdNrg9kd', '7324078'), + (3724, 13, 2695, 'not_attending', '2024-08-17 21:03:56', '2025-12-17 19:46:32', 'ZdNrg9kd', '7324080'), + (3725, 13, 2696, 'attending', '2024-08-17 21:04:00', '2025-12-17 19:46:32', 'ZdNrg9kd', '7324081'), + (3726, 13, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ZdNrg9kd', '7324082'), + (3727, 13, 2700, 'maybe', '2024-06-14 17:38:12', '2025-12-17 19:46:28', 'ZdNrg9kd', '7324388'), + (3728, 13, 2701, 'maybe', '2024-06-22 17:23:05', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324391'), + (3729, 13, 2705, 'attending', '2024-06-14 17:38:44', '2025-12-17 19:46:29', 'ZdNrg9kd', '7324944'), + (3730, 13, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ZdNrg9kd', '7331457'), + (3731, 13, 2731, 'attending', '2024-06-22 17:21:10', '2025-12-17 19:46:29', 'ZdNrg9kd', '7335303'), + (3732, 13, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'ZdNrg9kd', '7356752'), + (3733, 13, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'ZdNrg9kd', '7358733'), + (3734, 13, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'ZdNrg9kd', '7363595'), + (3735, 13, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ZdNrg9kd', '7363643'), + (3736, 13, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ZdNrg9kd', '7368606'), + (3737, 13, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ZdNrg9kd', '7397462'), + (3738, 13, 2821, 'maybe', '2024-10-02 00:27:55', '2025-12-17 19:46:26', 'ZdNrg9kd', '7424275'), + (3739, 13, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'ZdNrg9kd', '7424276'), + (3740, 13, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ZdNrg9kd', '7432751'), + (3741, 13, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ZdNrg9kd', '7432752'), + (3742, 13, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ZdNrg9kd', '7432753'), + (3743, 13, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432754'), + (3744, 13, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432755'), + (3745, 13, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432756'), + (3746, 13, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432758'), + (3747, 13, 2831, 'maybe', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ZdNrg9kd', '7432759'), + (3748, 13, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ZdNrg9kd', '7433834'), + (3749, 13, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ZdNrg9kd', '7470197'), + (3750, 13, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ZdNrg9kd', '7685613'), + (3751, 13, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ZdNrg9kd', '7688194'), + (3752, 13, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ZdNrg9kd', '7688196'), + (3753, 13, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ZdNrg9kd', '7688289'), + (3754, 13, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'ZdNrg9kd', '7692763'), + (3755, 13, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ZdNrg9kd', '7697552'), + (3756, 13, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ZdNrg9kd', '7699878'), + (3757, 13, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ZdNrg9kd', '7704043'), + (3758, 13, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ZdNrg9kd', '7712467'), + (3759, 13, 2926, 'maybe', '2024-12-07 15:34:29', '2025-12-17 19:46:21', 'ZdNrg9kd', '7713585'), + (3760, 13, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ZdNrg9kd', '7713586'), + (3761, 13, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ZdNrg9kd', '7738518'), + (3762, 13, 2962, 'maybe', '2024-12-25 18:48:15', '2025-12-17 19:46:22', 'ZdNrg9kd', '7750632'), + (3763, 13, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ZdNrg9kd', '7750636'), + (3764, 13, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ZdNrg9kd', '7796540'), + (3765, 13, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ZdNrg9kd', '7796541'), + (3766, 13, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ZdNrg9kd', '7796542'), + (3767, 13, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ZdNrg9kd', '7825913'), + (3768, 13, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ZdNrg9kd', '7826209'), + (3769, 13, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ZdNrg9kd', '7834742'), + (3770, 13, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ZdNrg9kd', '7842108'), + (3771, 13, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ZdNrg9kd', '7842902'), + (3772, 13, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ZdNrg9kd', '7842903'), + (3773, 13, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ZdNrg9kd', '7842904'), + (3774, 13, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ZdNrg9kd', '7842905'), + (3775, 13, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ZdNrg9kd', '7855719'), + (3776, 13, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ZdNrg9kd', '7860683'), + (3777, 13, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ZdNrg9kd', '7860684'), + (3778, 13, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ZdNrg9kd', '7866095'), + (3779, 13, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ZdNrg9kd', '7869170'), + (3780, 13, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ZdNrg9kd', '7869188'), + (3781, 13, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ZdNrg9kd', '7869201'), + (3782, 13, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ZdNrg9kd', '7877465'), + (3783, 13, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'ZdNrg9kd', '7878570'), + (3784, 13, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ZdNrg9kd', '7888250'), + (3785, 13, 3067, 'attending', '2025-04-01 21:31:04', '2025-12-17 19:46:19', 'ZdNrg9kd', '7894745'), + (3786, 13, 3077, 'attending', '2025-04-06 17:11:45', '2025-12-17 19:46:20', 'ZdNrg9kd', '7899510'), + (3787, 13, 3087, 'maybe', '2025-04-14 22:47:28', '2025-12-17 19:46:20', 'ZdNrg9kd', '7903856'), + (3788, 13, 3088, 'maybe', '2025-06-10 02:51:24', '2025-12-17 19:46:15', 'ZdNrg9kd', '7904777'), + (3789, 13, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ZdNrg9kd', '8349164'), + (3790, 13, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ZdNrg9kd', '8349545'), + (3791, 13, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ZdNrg9kd', '8353584'), + (3792, 13, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ZdNrg9kd', '8368028'), + (3793, 13, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ZdNrg9kd', '8368029'), + (3794, 13, 3133, 'maybe', '2025-05-23 19:52:28', '2025-12-17 19:46:14', 'ZdNrg9kd', '8368030'), + (3795, 13, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ZdNrg9kd', '8388462'), + (3796, 13, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ZdNrg9kd', '8400273'), + (3797, 13, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ZdNrg9kd', '8400274'), + (3798, 13, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ZdNrg9kd', '8400275'), + (3799, 13, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ZdNrg9kd', '8400276'), + (3800, 13, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ZdNrg9kd', '8404977'), + (3801, 13, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ZdNrg9kd', '8430783'), + (3802, 13, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ZdNrg9kd', '8430784'), + (3803, 13, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ZdNrg9kd', '8430799'), + (3804, 13, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ZdNrg9kd', '8430800'), + (3805, 13, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ZdNrg9kd', '8430801'), + (3806, 13, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ZdNrg9kd', '8438709'), + (3807, 13, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ZdNrg9kd', '8457738'), + (3808, 13, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ZdNrg9kd', '8459566'), + (3809, 13, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ZdNrg9kd', '8459567'), + (3810, 13, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ZdNrg9kd', '8461032'), + (3811, 13, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ZdNrg9kd', '8477877'), + (3812, 13, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ZdNrg9kd', '8485688'), + (3813, 13, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ZdNrg9kd', '8490587'), + (3814, 13, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ZdNrg9kd', '8493552'), + (3815, 13, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ZdNrg9kd', '8493553'), + (3816, 13, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ZdNrg9kd', '8493554'), + (3817, 13, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ZdNrg9kd', '8493555'), + (3818, 13, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ZdNrg9kd', '8493556'), + (3819, 13, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ZdNrg9kd', '8493557'), + (3820, 13, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ZdNrg9kd', '8493558'), + (3821, 13, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ZdNrg9kd', '8493559'), + (3822, 13, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ZdNrg9kd', '8493560'), + (3823, 13, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ZdNrg9kd', '8493561'), + (3824, 13, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ZdNrg9kd', '8493572'), + (3825, 13, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ZdNrg9kd', '8540725'), + (3826, 13, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ZdNrg9kd', '8555421'), + (3827, 13, 3346, 'not_attending', '2026-01-02 21:03:20', '2026-01-02 21:03:20', NULL, NULL), + (3828, 14, 3014, 'attending', '2025-04-01 04:53:18', '2025-12-17 19:46:19', 'dVoXyYym', '7869185'), + (3829, 14, 3016, 'attending', '2025-04-18 18:47:50', '2025-12-17 19:46:20', 'dVoXyYym', '7869187'), + (3830, 14, 3018, 'attending', '2025-04-12 01:15:07', '2025-12-17 19:46:20', 'dVoXyYym', '7869189'), + (3831, 14, 3067, 'attending', '2025-04-03 04:45:26', '2025-12-17 19:46:19', 'dVoXyYym', '7894745'), + (3832, 14, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dVoXyYym', '7897784'), + (3833, 14, 3078, 'not_attending', '2025-04-06 02:48:53', '2025-12-17 19:46:20', 'dVoXyYym', '7901213'), + (3834, 14, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dVoXyYym', '7904777'), + (3835, 14, 3098, 'attending', '2025-04-21 14:47:10', '2025-12-17 19:46:20', 'dVoXyYym', '8343504'), + (3836, 14, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVoXyYym', '8349164'), + (3837, 14, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVoXyYym', '8349545'), + (3838, 14, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVoXyYym', '8353584'), + (3839, 14, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dVoXyYym', '8368028'), + (3840, 14, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dVoXyYym', '8368029'), + (3841, 14, 3133, 'attending', '2025-05-31 17:51:01', '2025-12-17 19:46:14', 'dVoXyYym', '8368030'), + (3842, 14, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dVoXyYym', '8388462'), + (3843, 14, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dVoXyYym', '8400273'), + (3844, 14, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dVoXyYym', '8400274'), + (3845, 14, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dVoXyYym', '8400275'), + (3846, 14, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dVoXyYym', '8400276'), + (3847, 14, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dVoXyYym', '8404977'), + (3848, 14, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dVoXyYym', '8430783'), + (3849, 14, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dVoXyYym', '8430784'), + (3850, 14, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dVoXyYym', '8430799'), + (3851, 14, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dVoXyYym', '8430800'), + (3852, 14, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dVoXyYym', '8430801'), + (3853, 14, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dVoXyYym', '8438709'), + (3854, 14, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVoXyYym', '8457738'), + (3855, 14, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVoXyYym', '8459566'), + (3856, 14, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVoXyYym', '8459567'), + (3857, 14, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVoXyYym', '8461032'), + (3858, 14, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVoXyYym', '8477877'), + (3859, 14, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dVoXyYym', '8485688'), + (3860, 14, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dVoXyYym', '8490587'), + (3861, 14, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVoXyYym', '8493552'), + (3862, 14, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dVoXyYym', '8493553'), + (3863, 14, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVoXyYym', '8493554'), + (3864, 14, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVoXyYym', '8493555'), + (3865, 14, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVoXyYym', '8493556'), + (3866, 14, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVoXyYym', '8493557'), + (3867, 14, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVoXyYym', '8493558'), + (3868, 14, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVoXyYym', '8493559'), + (3869, 14, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVoXyYym', '8493560'), + (3870, 14, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dVoXyYym', '8493561'), + (3871, 14, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVoXyYym', '8493572'), + (3872, 14, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dVoXyYym', '8540725'), + (3873, 14, 3306, 'attending', '2025-12-13 22:17:13', '2025-12-17 19:46:11', 'dVoXyYym', '8550026'), + (3874, 14, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dVoXyYym', '8555421'), + (3875, 14, 3346, 'attending', '2026-01-02 22:08:01', '2026-01-02 22:08:01', NULL, NULL), + (3876, 15, 20, 'attending', '2020-05-12 19:12:13', '2025-12-17 19:47:57', 'EdVaaRZ4', '2958064'), + (3877, 15, 62, 'not_attending', '2020-05-12 23:23:45', '2025-12-17 19:47:57', 'EdVaaRZ4', '2977131'), + (3878, 15, 78, 'attending', '2020-05-23 21:06:53', '2025-12-17 19:47:57', 'EdVaaRZ4', '2978249'), + (3879, 15, 79, 'attending', '2020-05-30 21:43:48', '2025-12-17 19:47:57', 'EdVaaRZ4', '2978250'), + (3880, 15, 81, 'attending', '2020-06-13 22:07:15', '2025-12-17 19:47:58', 'EdVaaRZ4', '2978252'), + (3881, 15, 108, 'not_attending', '2020-05-17 17:51:17', '2025-12-17 19:47:57', 'EdVaaRZ4', '2993504'), + (3882, 15, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'EdVaaRZ4', '2994480'), + (3883, 15, 115, 'not_attending', '2020-05-17 17:21:36', '2025-12-17 19:47:57', 'EdVaaRZ4', '3001217'), + (3884, 15, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'EdVaaRZ4', '3023063'), + (3885, 15, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'EdVaaRZ4', '3034321'), + (3886, 15, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'EdVaaRZ4', '3035881'), + (3887, 15, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'EdVaaRZ4', '3049983'), + (3888, 15, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'EdVaaRZ4', '3058959'), + (3889, 15, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'EdVaaRZ4', '3067093'), + (3890, 15, 181, 'attending', '2020-06-15 22:02:53', '2025-12-17 19:47:58', 'EdVaaRZ4', '3074513'), + (3891, 15, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'EdVaaRZ4', '3075228'), + (3892, 15, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'EdVaaRZ4', '3075456'), + (3893, 15, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'EdVaaRZ4', '3083791'), + (3894, 15, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'EdVaaRZ4', '3085151'), + (3895, 15, 191, 'not_attending', '2020-07-09 19:28:15', '2025-12-17 19:47:55', 'EdVaaRZ4', '3087259'), + (3896, 15, 193, 'attending', '2020-07-25 18:32:06', '2025-12-17 19:47:55', 'EdVaaRZ4', '3087261'), + (3897, 15, 194, 'not_attending', '2020-07-31 00:32:44', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087262'), + (3898, 15, 195, 'attending', '2020-08-07 22:04:32', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087264'), + (3899, 15, 196, 'attending', '2020-08-11 21:54:20', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087265'), + (3900, 15, 197, 'attending', '2020-08-14 13:14:12', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087266'), + (3901, 15, 198, 'attending', '2020-08-25 20:12:52', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087267'), + (3902, 15, 199, 'not_attending', '2020-09-05 22:25:28', '2025-12-17 19:47:56', 'EdVaaRZ4', '3087268'), + (3903, 15, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'EdVaaRZ4', '3088653'), + (3904, 15, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'EdVaaRZ4', '3106813'), + (3905, 15, 223, 'attending', '2020-09-12 15:58:16', '2025-12-17 19:47:56', 'EdVaaRZ4', '3129980'), + (3906, 15, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'EdVaaRZ4', '3132817'), + (3907, 15, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'EdVaaRZ4', '3132820'), + (3908, 15, 249, 'not_attending', '2020-11-17 01:50:24', '2025-12-17 19:47:54', 'EdVaaRZ4', '3149480'), + (3909, 15, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'EdVaaRZ4', '3155321'), + (3910, 15, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'EdVaaRZ4', '3162006'), + (3911, 15, 274, 'not_attending', '2020-08-25 20:12:42', '2025-12-17 19:47:56', 'EdVaaRZ4', '3163404'), + (3912, 15, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'EdVaaRZ4', '3163442'), + (3913, 15, 287, 'not_attending', '2020-08-27 14:22:51', '2025-12-17 19:47:56', 'EdVaaRZ4', '3170247'), + (3914, 15, 293, 'not_attending', '2020-08-14 13:13:47', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172832'), + (3915, 15, 294, 'maybe', '2020-08-26 20:52:16', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172833'), + (3916, 15, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172834'), + (3917, 15, 296, 'attending', '2020-08-25 20:22:03', '2025-12-17 19:47:56', 'EdVaaRZ4', '3172876'), + (3918, 15, 298, 'not_attending', '2020-08-25 20:13:50', '2025-12-17 19:47:56', 'EdVaaRZ4', '3174556'), + (3919, 15, 303, 'attending', '2020-08-16 17:40:00', '2025-12-17 19:47:56', 'EdVaaRZ4', '3178444'), + (3920, 15, 308, 'not_attending', '2020-08-25 20:14:28', '2025-12-17 19:47:56', 'EdVaaRZ4', '3183341'), + (3921, 15, 311, 'not_attending', '2020-09-18 15:00:20', '2025-12-17 19:47:56', 'EdVaaRZ4', '3186057'), + (3922, 15, 312, 'attending', '2020-09-10 22:49:04', '2025-12-17 19:47:56', 'EdVaaRZ4', '3187795'), + (3923, 15, 315, 'attending', '2020-09-04 21:33:44', '2025-12-17 19:47:56', 'EdVaaRZ4', '3189085'), + (3924, 15, 317, 'not_attending', '2020-08-26 20:52:07', '2025-12-17 19:47:56', 'EdVaaRZ4', '3191735'), + (3925, 15, 335, 'not_attending', '2020-09-04 21:32:57', '2025-12-17 19:47:56', 'EdVaaRZ4', '3200209'), + (3926, 15, 342, 'not_attending', '2020-09-27 03:42:24', '2025-12-17 19:47:52', 'EdVaaRZ4', '3204472'), + (3927, 15, 348, 'not_attending', '2020-09-27 03:42:13', '2025-12-17 19:47:52', 'EdVaaRZ4', '3209159'), + (3928, 15, 362, 'attending', '2020-09-25 19:22:11', '2025-12-17 19:47:52', 'EdVaaRZ4', '3214207'), + (3929, 15, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'EdVaaRZ4', '3217037'), + (3930, 15, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'EdVaaRZ4', '3218510'), + (3931, 15, 375, 'not_attending', '2020-10-02 19:53:44', '2025-12-17 19:47:52', 'EdVaaRZ4', '3222825'), + (3932, 15, 385, 'attending', '2020-10-03 22:34:14', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228698'), + (3933, 15, 386, 'not_attending', '2020-10-02 19:53:50', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228699'), + (3934, 15, 387, 'not_attending', '2020-10-02 19:53:56', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228700'), + (3935, 15, 388, 'not_attending', '2020-10-02 19:53:59', '2025-12-17 19:47:52', 'EdVaaRZ4', '3228701'), + (3936, 15, 421, 'not_attending', '2020-10-19 11:44:11', '2025-12-17 19:47:52', 'EdVaaRZ4', '3245294'), + (3937, 15, 422, 'not_attending', '2020-10-19 11:44:39', '2025-12-17 19:47:53', 'EdVaaRZ4', '3245295'), + (3938, 15, 423, 'not_attending', '2020-10-19 11:44:56', '2025-12-17 19:47:53', 'EdVaaRZ4', '3245296'), + (3939, 15, 424, 'not_attending', '2020-10-19 11:44:01', '2025-12-17 19:47:52', 'EdVaaRZ4', '3245751'), + (3940, 15, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'EdVaaRZ4', '3250232'), + (3941, 15, 428, 'not_attending', '2020-10-19 11:44:27', '2025-12-17 19:47:53', 'EdVaaRZ4', '3250332'), + (3942, 15, 430, 'not_attending', '2020-10-19 11:44:07', '2025-12-17 19:47:52', 'EdVaaRZ4', '3253094'), + (3943, 15, 431, 'attending', '2020-10-27 23:25:52', '2025-12-17 19:47:53', 'EdVaaRZ4', '3253225'), + (3944, 15, 438, 'attending', '2020-10-27 23:27:05', '2025-12-17 19:47:53', 'EdVaaRZ4', '3256163'), + (3945, 15, 439, 'not_attending', '2020-10-27 23:26:53', '2025-12-17 19:47:53', 'EdVaaRZ4', '3256164'), + (3946, 15, 440, 'not_attending', '2020-10-19 11:45:01', '2025-12-17 19:47:53', 'EdVaaRZ4', '3256168'), + (3947, 15, 441, 'attending', '2020-11-05 17:51:34', '2025-12-17 19:47:54', 'EdVaaRZ4', '3256169'), + (3948, 15, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'EdVaaRZ4', '3263578'), + (3949, 15, 444, 'not_attending', '2020-10-28 02:16:43', '2025-12-17 19:47:53', 'EdVaaRZ4', '3263745'), + (3950, 15, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'EdVaaRZ4', '3266138'), + (3951, 15, 446, 'attending', '2020-10-27 20:10:19', '2025-12-17 19:47:53', 'EdVaaRZ4', '3267163'), + (3952, 15, 447, 'not_attending', '2020-10-27 23:26:55', '2025-12-17 19:47:53', 'EdVaaRZ4', '3267895'), + (3953, 15, 455, 'not_attending', '2020-11-05 17:51:09', '2025-12-17 19:47:53', 'EdVaaRZ4', '3276391'), + (3954, 15, 456, 'not_attending', '2020-11-17 01:46:02', '2025-12-17 19:47:54', 'EdVaaRZ4', '3276428'), + (3955, 15, 459, 'not_attending', '2020-11-17 01:46:55', '2025-12-17 19:47:54', 'EdVaaRZ4', '3281467'), + (3956, 15, 462, 'not_attending', '2020-11-15 00:36:50', '2025-12-17 19:47:54', 'EdVaaRZ4', '3281470'), + (3957, 15, 466, 'not_attending', '2020-11-17 01:46:40', '2025-12-17 19:47:54', 'EdVaaRZ4', '3281829'), + (3958, 15, 467, 'not_attending', '2020-11-17 01:50:23', '2025-12-17 19:47:54', 'EdVaaRZ4', '3282756'), + (3959, 15, 468, 'not_attending', '2020-11-17 01:46:35', '2025-12-17 19:47:54', 'EdVaaRZ4', '3285413'), + (3960, 15, 469, 'not_attending', '2020-11-21 16:17:38', '2025-12-17 19:47:54', 'EdVaaRZ4', '3285414'), + (3961, 15, 471, 'not_attending', '2020-11-17 01:50:27', '2025-12-17 19:47:54', 'EdVaaRZ4', '3285445'), + (3962, 15, 476, 'not_attending', '2020-11-17 01:50:17', '2025-12-17 19:47:54', 'EdVaaRZ4', '3286982'), + (3963, 15, 478, 'not_attending', '2020-11-17 01:50:19', '2025-12-17 19:47:54', 'EdVaaRZ4', '3290899'), + (3964, 15, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'EdVaaRZ4', '3297764'), + (3965, 15, 493, 'attending', '2020-12-05 14:44:16', '2025-12-17 19:47:54', 'EdVaaRZ4', '3313856'), + (3966, 15, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'EdVaaRZ4', '3314909'), + (3967, 15, 500, 'not_attending', '2020-12-19 00:35:26', '2025-12-17 19:47:55', 'EdVaaRZ4', '3314964'), + (3968, 15, 502, 'attending', '2020-12-10 19:19:11', '2025-12-17 19:47:55', 'EdVaaRZ4', '3323365'), + (3969, 15, 513, 'not_attending', '2020-12-19 02:08:53', '2025-12-17 19:47:55', 'EdVaaRZ4', '3329383'), + (3970, 15, 514, 'attending', '2020-12-10 19:19:09', '2025-12-17 19:47:55', 'EdVaaRZ4', '3329400'), + (3971, 15, 526, 'attending', '2021-01-02 06:01:26', '2025-12-17 19:47:48', 'EdVaaRZ4', '3351539'), + (3972, 15, 531, 'attending', '2021-01-02 20:53:50', '2025-12-17 19:47:48', 'EdVaaRZ4', '3378210'), + (3973, 15, 536, 'attending', '2021-01-08 23:23:47', '2025-12-17 19:47:48', 'EdVaaRZ4', '3386848'), + (3974, 15, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'EdVaaRZ4', '3389527'), + (3975, 15, 541, 'attending', '2021-01-08 23:23:46', '2025-12-17 19:47:48', 'EdVaaRZ4', '3391683'), + (3976, 15, 543, 'not_attending', '2021-01-12 03:15:06', '2025-12-17 19:47:48', 'EdVaaRZ4', '3396499'), + (3977, 15, 548, 'attending', '2021-01-14 02:55:27', '2025-12-17 19:47:48', 'EdVaaRZ4', '3403650'), + (3978, 15, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'EdVaaRZ4', '3406988'), + (3979, 15, 550, 'attending', '2021-01-13 02:13:44', '2025-12-17 19:47:48', 'EdVaaRZ4', '3407018'), + (3980, 15, 553, 'attending', '2021-01-14 02:55:25', '2025-12-17 19:47:48', 'EdVaaRZ4', '3407248'), + (3981, 15, 555, 'not_attending', '2021-01-23 05:47:47', '2025-12-17 19:47:49', 'EdVaaRZ4', '3416576'), + (3982, 15, 558, 'not_attending', '2021-01-22 01:56:51', '2025-12-17 19:47:49', 'EdVaaRZ4', '3418925'), + (3983, 15, 561, 'not_attending', '2021-01-23 05:47:41', '2025-12-17 19:47:49', 'EdVaaRZ4', '3421916'), + (3984, 15, 566, 'not_attending', '2021-01-30 23:02:40', '2025-12-17 19:47:50', 'EdVaaRZ4', '3427928'), + (3985, 15, 567, 'not_attending', '2021-01-30 23:02:44', '2025-12-17 19:47:50', 'EdVaaRZ4', '3428895'), + (3986, 15, 568, 'attending', '2021-01-27 16:25:34', '2025-12-17 19:47:50', 'EdVaaRZ4', '3430267'), + (3987, 15, 569, 'not_attending', '2021-01-27 22:23:22', '2025-12-17 19:47:49', 'EdVaaRZ4', '3432673'), + (3988, 15, 575, 'attending', '2021-01-27 16:25:33', '2025-12-17 19:47:50', 'EdVaaRZ4', '3437492'), + (3989, 15, 579, 'attending', '2021-02-05 16:00:41', '2025-12-17 19:47:50', 'EdVaaRZ4', '3440978'), + (3990, 15, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'EdVaaRZ4', '3468125'), + (3991, 15, 602, 'not_attending', '2021-02-13 20:28:50', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470303'), + (3992, 15, 603, 'attending', '2021-02-20 18:12:03', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470304'), + (3993, 15, 604, 'attending', '2021-02-25 03:03:12', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470305'), + (3994, 15, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'EdVaaRZ4', '3470991'), + (3995, 15, 607, 'attending', '2021-02-08 03:15:17', '2025-12-17 19:47:50', 'EdVaaRZ4', '3471882'), + (3996, 15, 609, 'not_attending', '2021-02-13 20:28:48', '2025-12-17 19:47:50', 'EdVaaRZ4', '3480916'), + (3997, 15, 615, 'not_attending', '2021-02-20 23:29:57', '2025-12-17 19:47:50', 'EdVaaRZ4', '3490045'), + (3998, 15, 618, 'not_attending', '2021-02-20 20:44:07', '2025-12-17 19:47:50', 'EdVaaRZ4', '3503991'), + (3999, 15, 619, 'attending', '2021-02-20 18:12:00', '2025-12-17 19:47:50', 'EdVaaRZ4', '3506310'), + (4000, 15, 621, 'attending', '2021-03-06 17:44:58', '2025-12-17 19:47:51', 'EdVaaRZ4', '3517815'), + (4001, 15, 622, 'attending', '2021-03-10 16:35:44', '2025-12-17 19:47:51', 'EdVaaRZ4', '3517816'), + (4002, 15, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'EdVaaRZ4', '3523941'), + (4003, 15, 624, 'attending', '2021-02-27 01:04:00', '2025-12-17 19:47:50', 'EdVaaRZ4', '3528556'), + (4004, 15, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'EdVaaRZ4', '3533850'), + (4005, 15, 632, 'attending', '2021-03-01 00:56:54', '2025-12-17 19:47:51', 'EdVaaRZ4', '3533853'), + (4006, 15, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'EdVaaRZ4', '3536632'), + (4007, 15, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'EdVaaRZ4', '3536656'), + (4008, 15, 641, 'attending', '2021-03-17 13:21:44', '2025-12-17 19:47:44', 'EdVaaRZ4', '3539916'), + (4009, 15, 642, 'attending', '2021-03-17 13:21:48', '2025-12-17 19:47:44', 'EdVaaRZ4', '3539917'), + (4010, 15, 643, 'attending', '2021-04-15 17:48:15', '2025-12-17 19:47:45', 'EdVaaRZ4', '3539918'), + (4011, 15, 644, 'not_attending', '2021-04-20 14:29:21', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539919'), + (4012, 15, 645, 'attending', '2021-03-22 18:00:17', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539920'), + (4013, 15, 646, 'attending', '2021-03-22 18:00:22', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539921'), + (4014, 15, 647, 'not_attending', '2021-03-22 18:00:37', '2025-12-17 19:47:46', 'EdVaaRZ4', '3539922'), + (4015, 15, 648, 'not_attending', '2021-05-15 20:32:59', '2025-12-17 19:47:47', 'EdVaaRZ4', '3539923'), + (4016, 15, 649, 'not_attending', '2021-03-10 16:35:55', '2025-12-17 19:47:51', 'EdVaaRZ4', '3539927'), + (4017, 15, 650, 'attending', '2021-03-17 13:21:38', '2025-12-17 19:47:44', 'EdVaaRZ4', '3539928'), + (4018, 15, 653, 'attending', '2021-03-06 17:45:31', '2025-12-17 19:47:51', 'EdVaaRZ4', '3546917'), + (4019, 15, 654, 'not_attending', '2021-03-09 00:10:54', '2025-12-17 19:47:51', 'EdVaaRZ4', '3546990'), + (4020, 15, 655, 'attending', '2021-03-10 16:35:42', '2025-12-17 19:47:51', 'EdVaaRZ4', '3547129'), + (4021, 15, 656, 'not_attending', '2021-03-10 16:35:50', '2025-12-17 19:47:51', 'EdVaaRZ4', '3547130'), + (4022, 15, 657, 'attending', '2021-04-15 17:48:13', '2025-12-17 19:47:45', 'EdVaaRZ4', '3547132'), + (4023, 15, 658, 'attending', '2021-06-06 19:03:03', '2025-12-17 19:47:47', 'EdVaaRZ4', '3547134'), + (4024, 15, 659, 'attending', '2021-03-17 13:21:46', '2025-12-17 19:47:44', 'EdVaaRZ4', '3547135'), + (4025, 15, 660, 'not_attending', '2021-07-08 23:24:43', '2025-12-17 19:47:39', 'EdVaaRZ4', '3547136'), + (4026, 15, 661, 'attending', '2021-03-17 13:21:43', '2025-12-17 19:47:44', 'EdVaaRZ4', '3547137'), + (4027, 15, 662, 'not_attending', '2021-04-20 14:29:18', '2025-12-17 19:47:45', 'EdVaaRZ4', '3547138'), + (4028, 15, 663, 'attending', '2021-03-22 18:00:48', '2025-12-17 19:47:46', 'EdVaaRZ4', '3547140'), + (4029, 15, 664, 'not_attending', '2021-09-10 18:09:21', '2025-12-17 19:47:43', 'EdVaaRZ4', '3547142'), + (4030, 15, 665, 'not_attending', '2021-09-04 13:36:54', '2025-12-17 19:47:43', 'EdVaaRZ4', '3547143'), + (4031, 15, 666, 'attending', '2021-08-07 22:08:15', '2025-12-17 19:47:42', 'EdVaaRZ4', '3547144'), + (4032, 15, 667, 'attending', '2021-08-28 17:24:09', '2025-12-17 19:47:42', 'EdVaaRZ4', '3547145'), + (4033, 15, 668, 'attending', '2021-03-22 18:00:47', '2025-12-17 19:47:46', 'EdVaaRZ4', '3547146'), + (4034, 15, 669, 'not_attending', '2021-06-13 02:35:38', '2025-12-17 19:47:38', 'EdVaaRZ4', '3547147'), + (4035, 15, 670, 'not_attending', '2021-06-11 00:40:55', '2025-12-17 19:47:48', 'EdVaaRZ4', '3547148'), + (4036, 15, 671, 'not_attending', '2021-07-17 21:29:46', '2025-12-17 19:47:39', 'EdVaaRZ4', '3547149'), + (4037, 15, 672, 'not_attending', '2021-03-22 18:00:40', '2025-12-17 19:47:46', 'EdVaaRZ4', '3547150'), + (4038, 15, 673, 'attending', '2021-06-30 22:18:55', '2025-12-17 19:47:38', 'EdVaaRZ4', '3547151'), + (4039, 15, 674, 'attending', '2021-08-05 18:38:55', '2025-12-17 19:47:41', 'EdVaaRZ4', '3547152'), + (4040, 15, 675, 'attending', '2021-07-31 17:18:45', '2025-12-17 19:47:40', 'EdVaaRZ4', '3547153'), + (4041, 15, 676, 'attending', '2021-07-22 23:50:23', '2025-12-17 19:47:40', 'EdVaaRZ4', '3547154'), + (4042, 15, 677, 'not_attending', '2021-05-15 20:33:01', '2025-12-17 19:47:47', 'EdVaaRZ4', '3547155'), + (4043, 15, 679, 'not_attending', '2021-03-30 01:58:32', '2025-12-17 19:47:44', 'EdVaaRZ4', '3547168'), + (4044, 15, 684, 'maybe', '2021-03-12 00:48:40', '2025-12-17 19:47:51', 'EdVaaRZ4', '3549257'), + (4045, 15, 685, 'attending', '2021-03-10 16:38:30', '2025-12-17 19:47:44', 'EdVaaRZ4', '3551564'), + (4046, 15, 687, 'not_attending', '2021-03-10 16:35:25', '2025-12-17 19:47:51', 'EdVaaRZ4', '3553405'), + (4047, 15, 705, 'attending', '2021-03-22 14:44:41', '2025-12-17 19:47:44', 'EdVaaRZ4', '3581895'), + (4048, 15, 706, 'attending', '2021-03-30 01:59:52', '2025-12-17 19:47:45', 'EdVaaRZ4', '3582734'), + (4049, 15, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'EdVaaRZ4', '3583262'), + (4050, 15, 711, 'attending', '2021-04-01 18:06:34', '2025-12-17 19:47:44', 'EdVaaRZ4', '3588075'), + (4051, 15, 717, 'not_attending', '2021-03-27 14:13:04', '2025-12-17 19:47:44', 'EdVaaRZ4', '3619523'), + (4052, 15, 718, 'attending', '2021-03-27 14:10:15', '2025-12-17 19:47:44', 'EdVaaRZ4', '3626844'), + (4053, 15, 722, 'maybe', '2021-04-02 20:56:56', '2025-12-17 19:47:44', 'EdVaaRZ4', '3646347'), + (4054, 15, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'EdVaaRZ4', '3661369'), + (4055, 15, 731, 'not_attending', '2021-04-07 02:03:33', '2025-12-17 19:47:44', 'EdVaaRZ4', '3674262'), + (4056, 15, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'EdVaaRZ4', '3677402'), + (4057, 15, 737, 'not_attending', '2021-04-05 20:11:03', '2025-12-17 19:47:44', 'EdVaaRZ4', '3679349'), + (4058, 15, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'EdVaaRZ4', '3730212'), + (4059, 15, 777, 'attending', '2021-04-30 01:24:39', '2025-12-17 19:47:46', 'EdVaaRZ4', '3746248'), + (4060, 15, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'EdVaaRZ4', '3793156'), + (4061, 15, 822, 'not_attending', '2021-06-03 01:51:55', '2025-12-17 19:47:47', 'EdVaaRZ4', '3969986'), + (4062, 15, 823, 'not_attending', '2021-06-11 00:40:53', '2025-12-17 19:47:48', 'EdVaaRZ4', '3974109'), + (4063, 15, 827, 'attending', '2021-06-04 23:06:44', '2025-12-17 19:47:47', 'EdVaaRZ4', '3975311'), + (4064, 15, 828, 'attending', '2021-06-06 19:02:59', '2025-12-17 19:47:47', 'EdVaaRZ4', '3975312'), + (4065, 15, 838, 'attending', '2021-06-06 17:32:06', '2025-12-17 19:47:47', 'EdVaaRZ4', '3994992'), + (4066, 15, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'EdVaaRZ4', '4014338'), + (4067, 15, 867, 'not_attending', '2021-06-13 02:35:41', '2025-12-17 19:47:38', 'EdVaaRZ4', '4021848'), + (4068, 15, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'EdVaaRZ4', '4136744'), + (4069, 15, 870, 'attending', '2021-06-30 22:18:53', '2025-12-17 19:47:39', 'EdVaaRZ4', '4136937'), + (4070, 15, 871, 'not_attending', '2021-07-08 23:24:47', '2025-12-17 19:47:39', 'EdVaaRZ4', '4136938'), + (4071, 15, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'EdVaaRZ4', '4136947'), + (4072, 15, 884, 'maybe', '2021-08-05 18:39:11', '2025-12-17 19:47:42', 'EdVaaRZ4', '4210314'), + (4073, 15, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'EdVaaRZ4', '4225444'), + (4074, 15, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'EdVaaRZ4', '4239259'), + (4075, 15, 900, 'attending', '2021-07-22 23:50:25', '2025-12-17 19:47:40', 'EdVaaRZ4', '4240316'), + (4076, 15, 901, 'attending', '2021-07-31 17:18:43', '2025-12-17 19:47:40', 'EdVaaRZ4', '4240317'), + (4077, 15, 902, 'attending', '2021-08-05 18:38:57', '2025-12-17 19:47:41', 'EdVaaRZ4', '4240318'), + (4078, 15, 903, 'attending', '2021-08-07 22:08:17', '2025-12-17 19:47:42', 'EdVaaRZ4', '4240320'), + (4079, 15, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'EdVaaRZ4', '4250163'), + (4080, 15, 906, 'not_attending', '2021-07-05 05:49:54', '2025-12-17 19:47:39', 'EdVaaRZ4', '4253431'), + (4081, 15, 917, 'maybe', '2021-07-12 00:12:22', '2025-12-17 19:47:39', 'EdVaaRZ4', '4274481'), + (4082, 15, 919, 'attending', '2021-07-16 01:42:54', '2025-12-17 19:47:39', 'EdVaaRZ4', '4275957'), + (4083, 15, 920, 'not_attending', '2021-07-20 01:49:37', '2025-12-17 19:47:40', 'EdVaaRZ4', '4277819'), + (4084, 15, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'EdVaaRZ4', '4301723'), + (4085, 15, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'EdVaaRZ4', '4302093'), + (4086, 15, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'EdVaaRZ4', '4304151'), + (4087, 15, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'EdVaaRZ4', '4345519'), + (4088, 15, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'EdVaaRZ4', '4356801'), + (4089, 15, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'EdVaaRZ4', '4358025'), + (4090, 15, 973, 'maybe', '2021-08-20 00:36:19', '2025-12-17 19:47:42', 'EdVaaRZ4', '4366186'), + (4091, 15, 974, 'attending', '2021-08-28 17:24:11', '2025-12-17 19:47:42', 'EdVaaRZ4', '4366187'), + (4092, 15, 988, 'not_attending', '2021-08-24 09:06:10', '2025-12-17 19:47:42', 'EdVaaRZ4', '4402823'), + (4093, 15, 989, 'attending', '2021-08-27 20:15:48', '2025-12-17 19:47:43', 'EdVaaRZ4', '4414282'), + (4094, 15, 990, 'not_attending', '2021-09-04 13:36:56', '2025-12-17 19:47:43', 'EdVaaRZ4', '4420735'), + (4095, 15, 991, 'not_attending', '2021-09-10 18:09:19', '2025-12-17 19:47:43', 'EdVaaRZ4', '4420738'), + (4096, 15, 992, 'not_attending', '2021-09-18 15:40:07', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420739'), + (4097, 15, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420741'), + (4098, 15, 994, 'not_attending', '2021-10-02 21:54:13', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420742'), + (4099, 15, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'EdVaaRZ4', '4420744'), + (4100, 15, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'EdVaaRZ4', '4420747'), + (4101, 15, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'EdVaaRZ4', '4420748'), + (4102, 15, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'EdVaaRZ4', '4420749'), + (4103, 15, 1017, 'attending', '2021-09-06 22:16:58', '2025-12-17 19:47:43', 'EdVaaRZ4', '4441822'), + (4104, 15, 1020, 'not_attending', '2021-09-08 01:28:44', '2025-12-17 19:47:43', 'EdVaaRZ4', '4451787'), + (4105, 15, 1021, 'maybe', '2021-09-09 22:34:51', '2025-12-17 19:47:34', 'EdVaaRZ4', '4451803'), + (4106, 15, 1023, 'not_attending', '2021-09-10 16:51:17', '2025-12-17 19:47:43', 'EdVaaRZ4', '4461883'), + (4107, 15, 1033, 'not_attending', '2021-09-18 15:39:58', '2025-12-17 19:47:43', 'EdVaaRZ4', '4486006'), + (4108, 15, 1040, 'not_attending', '2021-12-10 23:10:15', '2025-12-17 19:47:38', 'EdVaaRZ4', '4496605'), + (4109, 15, 1041, 'attending', '2021-12-04 23:57:06', '2025-12-17 19:47:37', 'EdVaaRZ4', '4496606'), + (4110, 15, 1042, 'not_attending', '2021-11-19 02:30:29', '2025-12-17 19:47:37', 'EdVaaRZ4', '4496607'), + (4111, 15, 1044, 'not_attending', '2021-11-04 22:05:33', '2025-12-17 19:47:36', 'EdVaaRZ4', '4496609'), + (4112, 15, 1048, 'attending', '2021-11-12 12:41:35', '2025-12-17 19:47:36', 'EdVaaRZ4', '4496613'), + (4113, 15, 1054, 'attending', '2022-03-19 21:48:02', '2025-12-17 19:47:25', 'EdVaaRZ4', '4496619'), + (4114, 15, 1055, 'attending', '2021-12-18 20:22:04', '2025-12-17 19:47:31', 'EdVaaRZ4', '4496621'), + (4115, 15, 1057, 'not_attending', '2021-11-19 02:30:22', '2025-12-17 19:47:37', 'EdVaaRZ4', '4496624'), + (4116, 15, 1058, 'attending', '2022-03-26 17:27:55', '2025-12-17 19:47:33', 'EdVaaRZ4', '4496625'), + (4117, 15, 1059, 'not_attending', '2022-03-10 14:12:09', '2025-12-17 19:47:33', 'EdVaaRZ4', '4496626'), + (4118, 15, 1060, 'attending', '2022-03-23 15:57:43', '2025-12-17 19:47:25', 'EdVaaRZ4', '4496627'), + (4119, 15, 1062, 'attending', '2022-03-05 16:32:16', '2025-12-17 19:47:33', 'EdVaaRZ4', '4496629'), + (4120, 15, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'EdVaaRZ4', '4508342'), + (4121, 15, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'EdVaaRZ4', '4568602'), + (4122, 15, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'EdVaaRZ4', '4572153'), + (4123, 15, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'EdVaaRZ4', '4585962'), + (4124, 15, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'EdVaaRZ4', '4596356'), + (4125, 15, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'EdVaaRZ4', '4598860'), + (4126, 15, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'EdVaaRZ4', '4598861'), + (4127, 15, 1099, 'not_attending', '2021-11-04 22:05:31', '2025-12-17 19:47:36', 'EdVaaRZ4', '4602797'), + (4128, 15, 1114, 'attending', '2021-11-12 12:41:37', '2025-12-17 19:47:36', 'EdVaaRZ4', '4637896'), + (4129, 15, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'EdVaaRZ4', '4642994'), + (4130, 15, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'EdVaaRZ4', '4642995'), + (4131, 15, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'EdVaaRZ4', '4642996'), + (4132, 15, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'EdVaaRZ4', '4642997'), + (4133, 15, 1126, 'not_attending', '2021-12-10 23:10:13', '2025-12-17 19:47:38', 'EdVaaRZ4', '4645687'), + (4134, 15, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'EdVaaRZ4', '4645698'), + (4135, 15, 1128, 'not_attending', '2021-11-19 02:30:24', '2025-12-17 19:47:37', 'EdVaaRZ4', '4645704'), + (4136, 15, 1129, 'not_attending', '2021-11-19 02:30:27', '2025-12-17 19:47:37', 'EdVaaRZ4', '4645705'), + (4137, 15, 1130, 'attending', '2021-12-04 23:57:04', '2025-12-17 19:47:37', 'EdVaaRZ4', '4658824'), + (4138, 15, 1131, 'attending', '2021-12-18 20:22:06', '2025-12-17 19:47:31', 'EdVaaRZ4', '4658825'), + (4139, 15, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'EdVaaRZ4', '4668385'), + (4140, 15, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'EdVaaRZ4', '4694407'), + (4141, 15, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'EdVaaRZ4', '4736497'), + (4142, 15, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'EdVaaRZ4', '4736499'), + (4143, 15, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'EdVaaRZ4', '4736500'), + (4144, 15, 1180, 'attending', '2022-02-26 19:53:42', '2025-12-17 19:47:33', 'EdVaaRZ4', '4736502'), + (4145, 15, 1181, 'attending', '2022-03-05 16:32:18', '2025-12-17 19:47:33', 'EdVaaRZ4', '4736503'), + (4146, 15, 1182, 'not_attending', '2022-03-10 14:12:07', '2025-12-17 19:47:33', 'EdVaaRZ4', '4736504'), + (4147, 15, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'EdVaaRZ4', '4746789'), + (4148, 15, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'EdVaaRZ4', '4753929'), + (4149, 15, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'EdVaaRZ4', '5038850'), + (4150, 15, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'EdVaaRZ4', '5045826'), + (4151, 15, 1259, 'not_attending', '2022-03-10 16:36:10', '2025-12-17 19:47:33', 'EdVaaRZ4', '5132533'), + (4152, 15, 1264, 'attending', '2022-03-06 19:42:52', '2025-12-17 19:47:25', 'EdVaaRZ4', '5160281'), + (4153, 15, 1265, 'not_attending', '2022-03-10 16:36:13', '2025-12-17 19:47:33', 'EdVaaRZ4', '5160862'), + (4154, 15, 1272, 'attending', '2022-03-19 21:47:59', '2025-12-17 19:47:25', 'EdVaaRZ4', '5186582'), + (4155, 15, 1273, 'attending', '2022-03-23 15:57:40', '2025-12-17 19:47:25', 'EdVaaRZ4', '5186583'), + (4156, 15, 1274, 'attending', '2022-04-02 20:05:50', '2025-12-17 19:47:26', 'EdVaaRZ4', '5186585'), + (4157, 15, 1275, 'attending', '2022-04-02 20:05:48', '2025-12-17 19:47:26', 'EdVaaRZ4', '5186587'), + (4158, 15, 1281, 'attending', '2022-04-09 00:08:55', '2025-12-17 19:47:27', 'EdVaaRZ4', '5190437'), + (4159, 15, 1284, 'attending', '2022-04-15 11:43:21', '2025-12-17 19:47:27', 'EdVaaRZ4', '5195095'), + (4160, 15, 1294, 'attending', '2022-04-03 21:28:18', '2025-12-17 19:47:26', 'EdVaaRZ4', '5214686'), + (4161, 15, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'EdVaaRZ4', '5215989'), + (4162, 15, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'EdVaaRZ4', '5223686'), + (4163, 15, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'EdVaaRZ4', '5227432'), + (4164, 15, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'EdVaaRZ4', '5231461'), + (4165, 15, 1338, 'attending', '2022-04-15 13:54:59', '2025-12-17 19:47:27', 'EdVaaRZ4', '5245270'), + (4166, 15, 1342, 'attending', '2022-04-16 20:37:52', '2025-12-17 19:47:27', 'EdVaaRZ4', '5246530'), + (4167, 15, 1344, 'attending', '2022-04-26 12:15:15', '2025-12-17 19:47:28', 'EdVaaRZ4', '5247465'), + (4168, 15, 1345, 'not_attending', '2022-04-17 20:17:52', '2025-12-17 19:47:27', 'EdVaaRZ4', '5247466'), + (4169, 15, 1346, 'not_attending', '2022-04-17 20:17:44', '2025-12-17 19:47:27', 'EdVaaRZ4', '5247467'), + (4170, 15, 1355, 'attending', '2022-04-21 17:53:21', '2025-12-17 19:47:27', 'EdVaaRZ4', '5252573'), + (4171, 15, 1362, 'attending', '2022-04-26 12:15:07', '2025-12-17 19:47:28', 'EdVaaRZ4', '5260800'), + (4172, 15, 1374, 'attending', '2022-05-06 15:40:15', '2025-12-17 19:47:28', 'EdVaaRZ4', '5269930'), + (4173, 15, 1378, 'not_attending', '2022-05-06 15:40:37', '2025-12-17 19:47:29', 'EdVaaRZ4', '5271448'), + (4174, 15, 1379, 'not_attending', '2022-05-06 15:40:40', '2025-12-17 19:47:29', 'EdVaaRZ4', '5271449'), + (4175, 15, 1380, 'attending', '2022-05-27 16:20:26', '2025-12-17 19:47:30', 'EdVaaRZ4', '5271450'), + (4176, 15, 1383, 'not_attending', '2022-05-12 16:37:57', '2025-12-17 19:47:28', 'EdVaaRZ4', '5276469'), + (4177, 15, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'EdVaaRZ4', '5278159'), + (4178, 15, 1391, 'attending', '2022-05-06 09:04:55', '2025-12-17 19:47:28', 'EdVaaRZ4', '5279531'), + (4179, 15, 1392, 'attending', '2022-05-06 09:04:58', '2025-12-17 19:47:28', 'EdVaaRZ4', '5279532'), + (4180, 15, 1395, 'attending', '2022-05-07 22:19:45', '2025-12-17 19:47:28', 'EdVaaRZ4', '5281102'), + (4181, 15, 1396, 'not_attending', '2022-05-11 01:54:19', '2025-12-17 19:47:28', 'EdVaaRZ4', '5281103'), + (4182, 15, 1397, 'not_attending', '2022-05-11 01:54:22', '2025-12-17 19:47:29', 'EdVaaRZ4', '5281104'), + (4183, 15, 1402, 'attending', '2022-05-12 16:38:55', '2025-12-17 19:47:30', 'EdVaaRZ4', '5287977'), + (4184, 15, 1407, 'attending', '2022-06-04 21:28:55', '2025-12-17 19:47:30', 'EdVaaRZ4', '5363695'), + (4185, 15, 1408, 'not_attending', '2022-05-20 14:12:54', '2025-12-17 19:47:29', 'EdVaaRZ4', '5365960'), + (4186, 15, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'EdVaaRZ4', '5368973'), + (4187, 15, 1419, 'not_attending', '2022-06-08 22:31:22', '2025-12-17 19:47:30', 'EdVaaRZ4', '5373081'), + (4188, 15, 1428, 'not_attending', '2022-06-10 22:45:52', '2025-12-17 19:47:30', 'EdVaaRZ4', '5378247'), + (4189, 15, 1431, 'attending', '2022-06-05 02:21:34', '2025-12-17 19:47:30', 'EdVaaRZ4', '5389605'), + (4190, 15, 1432, 'attending', '2022-05-30 21:33:07', '2025-12-17 19:47:30', 'EdVaaRZ4', '5391566'), + (4191, 15, 1442, 'not_attending', '2022-06-14 16:25:04', '2025-12-17 19:47:17', 'EdVaaRZ4', '5397265'), + (4192, 15, 1443, 'attending', '2022-06-04 21:28:58', '2025-12-17 19:47:30', 'EdVaaRZ4', '5397613'), + (4193, 15, 1444, 'attending', '2022-06-05 02:21:32', '2025-12-17 19:47:30', 'EdVaaRZ4', '5397614'), + (4194, 15, 1445, 'not_attending', '2022-06-14 16:25:03', '2025-12-17 19:47:17', 'EdVaaRZ4', '5397615'), + (4195, 15, 1451, 'not_attending', '2022-06-14 16:24:58', '2025-12-17 19:47:17', 'EdVaaRZ4', '5403967'), + (4196, 15, 1458, 'not_attending', '2022-06-16 13:20:36', '2025-12-17 19:47:17', 'EdVaaRZ4', '5404786'), + (4197, 15, 1462, 'not_attending', '2022-06-14 16:24:59', '2025-12-17 19:47:17', 'EdVaaRZ4', '5405203'), + (4198, 15, 1468, 'maybe', '2022-06-30 00:16:08', '2025-12-17 19:47:19', 'EdVaaRZ4', '5406832'), + (4199, 15, 1477, 'attending', '2022-06-21 23:53:41', '2025-12-17 19:47:17', 'EdVaaRZ4', '5408766'), + (4200, 15, 1478, 'not_attending', '2022-06-23 14:52:01', '2025-12-17 19:47:19', 'EdVaaRZ4', '5408794'), + (4201, 15, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'EdVaaRZ4', '5411699'), + (4202, 15, 1482, 'attending', '2022-06-23 14:52:54', '2025-12-17 19:47:19', 'EdVaaRZ4', '5412550'), + (4203, 15, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'EdVaaRZ4', '5415046'), + (4204, 15, 1493, 'attending', '2022-06-25 20:30:44', '2025-12-17 19:47:19', 'EdVaaRZ4', '5420218'), + (4205, 15, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'EdVaaRZ4', '5422086'), + (4206, 15, 1498, 'attending', '2022-06-27 16:23:41', '2025-12-17 19:47:19', 'EdVaaRZ4', '5422406'), + (4207, 15, 1499, 'attending', '2022-06-27 16:23:39', '2025-12-17 19:47:19', 'EdVaaRZ4', '5422407'), + (4208, 15, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'EdVaaRZ4', '5424565'), + (4209, 15, 1503, 'attending', '2022-06-29 18:21:03', '2025-12-17 19:47:19', 'EdVaaRZ4', '5426820'), + (4210, 15, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'EdVaaRZ4', '5426882'), + (4211, 15, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'EdVaaRZ4', '5427083'), + (4212, 15, 1507, 'attending', '2022-07-02 22:10:07', '2025-12-17 19:47:19', 'EdVaaRZ4', '5433100'), + (4213, 15, 1508, 'attending', '2022-07-13 20:21:10', '2025-12-17 19:47:19', 'EdVaaRZ4', '5433453'), + (4214, 15, 1511, 'not_attending', '2022-07-08 17:47:06', '2025-12-17 19:47:19', 'EdVaaRZ4', '5437733'), + (4215, 15, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'EdVaaRZ4', '5441125'), + (4216, 15, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'EdVaaRZ4', '5441126'), + (4217, 15, 1515, 'attending', '2022-08-06 13:38:40', '2025-12-17 19:47:21', 'EdVaaRZ4', '5441128'), + (4218, 15, 1516, 'attending', '2022-08-15 00:10:27', '2025-12-17 19:47:23', 'EdVaaRZ4', '5441129'), + (4219, 15, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'EdVaaRZ4', '5441131'), + (4220, 15, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'EdVaaRZ4', '5441132'), + (4221, 15, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'EdVaaRZ4', '5446643'), + (4222, 15, 1531, 'not_attending', '2022-07-16 02:18:37', '2025-12-17 19:47:19', 'EdVaaRZ4', '5448756'), + (4223, 15, 1532, 'attending', '2022-07-22 22:13:28', '2025-12-17 19:47:20', 'EdVaaRZ4', '5448757'), + (4224, 15, 1533, 'attending', '2022-07-19 17:33:32', '2025-12-17 19:47:21', 'EdVaaRZ4', '5448758'), + (4225, 15, 1534, 'maybe', '2022-08-06 13:38:43', '2025-12-17 19:47:21', 'EdVaaRZ4', '5448759'), + (4226, 15, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'EdVaaRZ4', '5453325'), + (4227, 15, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'EdVaaRZ4', '5454516'), + (4228, 15, 1544, 'attending', '2022-09-15 10:07:33', '2025-12-17 19:47:11', 'EdVaaRZ4', '5454517'), + (4229, 15, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'EdVaaRZ4', '5454605'), + (4230, 15, 1549, 'not_attending', '2022-07-21 20:35:38', '2025-12-17 19:47:20', 'EdVaaRZ4', '5454789'), + (4231, 15, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'EdVaaRZ4', '5455037'), + (4232, 15, 1555, 'attending', '2022-07-21 02:25:37', '2025-12-17 19:47:20', 'EdVaaRZ4', '5456489'), + (4233, 15, 1558, 'not_attending', '2022-08-22 23:07:12', '2025-12-17 19:47:10', 'EdVaaRZ4', '5458730'), + (4234, 15, 1560, 'attending', '2022-07-22 18:36:03', '2025-12-17 19:47:23', 'EdVaaRZ4', '5458768'), + (4235, 15, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'EdVaaRZ4', '5461278'), + (4236, 15, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'EdVaaRZ4', '5469480'), + (4237, 15, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'EdVaaRZ4', '5471073'), + (4238, 15, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'EdVaaRZ4', '5474663'), + (4239, 15, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'EdVaaRZ4', '5482022'), + (4240, 15, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'EdVaaRZ4', '5482793'), + (4241, 15, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'EdVaaRZ4', '5488912'), + (4242, 15, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'EdVaaRZ4', '5492192'), + (4243, 15, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'EdVaaRZ4', '5493139'), + (4244, 15, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'EdVaaRZ4', '5493200'), + (4245, 15, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'EdVaaRZ4', '5502188'), + (4246, 15, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'EdVaaRZ4', '5505059'), + (4247, 15, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'EdVaaRZ4', '5509055'), + (4248, 15, 1619, 'attending', '2022-08-22 23:07:36', '2025-12-17 19:47:23', 'EdVaaRZ4', '5512862'), + (4249, 15, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'EdVaaRZ4', '5513985'), + (4250, 15, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'EdVaaRZ4', '5519981'), + (4251, 15, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'EdVaaRZ4', '5522550'), + (4252, 15, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'EdVaaRZ4', '5534683'), + (4253, 15, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'EdVaaRZ4', '5537735'), + (4254, 15, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'EdVaaRZ4', '5540859'), + (4255, 15, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'EdVaaRZ4', '5546619'), + (4256, 15, 1652, 'attending', '2022-09-07 14:36:11', '2025-12-17 19:47:24', 'EdVaaRZ4', '5552671'), + (4257, 15, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'EdVaaRZ4', '5555245'), + (4258, 15, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'EdVaaRZ4', '5557747'), + (4259, 15, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'EdVaaRZ4', '5560255'), + (4260, 15, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'EdVaaRZ4', '5562906'), + (4261, 15, 1667, 'attending', '2022-09-22 18:49:56', '2025-12-17 19:47:11', 'EdVaaRZ4', '5563221'), + (4262, 15, 1668, 'attending', '2022-09-30 22:00:24', '2025-12-17 19:47:12', 'EdVaaRZ4', '5563222'), + (4263, 15, 1669, 'attending', '2022-09-12 02:07:00', '2025-12-17 19:47:10', 'EdVaaRZ4', '5564033'), + (4264, 15, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'EdVaaRZ4', '5600604'), + (4265, 15, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'EdVaaRZ4', '5605544'), + (4266, 15, 1699, 'attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'EdVaaRZ4', '5606737'), + (4267, 15, 1705, 'attending', '2022-09-29 21:10:42', '2025-12-17 19:47:12', 'EdVaaRZ4', '5612209'), + (4268, 15, 1717, 'attending', '2022-10-16 02:21:04', '2025-12-17 19:47:13', 'EdVaaRZ4', '5622842'), + (4269, 15, 1719, 'attending', '2022-10-07 10:43:36', '2025-12-17 19:47:12', 'EdVaaRZ4', '5630958'), + (4270, 15, 1720, 'attending', '2022-10-14 19:34:56', '2025-12-17 19:47:12', 'EdVaaRZ4', '5630959'), + (4271, 15, 1721, 'attending', '2022-10-21 09:03:25', '2025-12-17 19:47:13', 'EdVaaRZ4', '5630960'), + (4272, 15, 1722, 'not_attending', '2022-10-24 16:13:27', '2025-12-17 19:47:14', 'EdVaaRZ4', '5630961'), + (4273, 15, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'EdVaaRZ4', '5630962'), + (4274, 15, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'EdVaaRZ4', '5630966'), + (4275, 15, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'EdVaaRZ4', '5630967'), + (4276, 15, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'EdVaaRZ4', '5630968'), + (4277, 15, 1727, 'attending', '2022-12-02 01:24:30', '2025-12-17 19:47:16', 'EdVaaRZ4', '5630969'), + (4278, 15, 1728, 'attending', '2022-12-06 18:45:17', '2025-12-17 19:47:17', 'EdVaaRZ4', '5630970'), + (4279, 15, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'EdVaaRZ4', '5635406'), + (4280, 15, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'EdVaaRZ4', '5638765'), + (4281, 15, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'EdVaaRZ4', '5640097'), + (4282, 15, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'EdVaaRZ4', '5640843'), + (4283, 15, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'EdVaaRZ4', '5641521'), + (4284, 15, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'EdVaaRZ4', '5642818'), + (4285, 15, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'EdVaaRZ4', '5652395'), + (4286, 15, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'EdVaaRZ4', '5670445'), + (4287, 15, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'EdVaaRZ4', '5671637'), + (4288, 15, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'EdVaaRZ4', '5672329'), + (4289, 15, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'EdVaaRZ4', '5674057'), + (4290, 15, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'EdVaaRZ4', '5674060'), + (4291, 15, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'EdVaaRZ4', '5677461'), + (4292, 15, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'EdVaaRZ4', '5698046'), + (4293, 15, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'EdVaaRZ4', '5699760'), + (4294, 15, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'EdVaaRZ4', '5741601'), + (4295, 15, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'EdVaaRZ4', '5763458'), + (4296, 15, 1801, 'maybe', '2022-12-02 01:24:33', '2025-12-17 19:47:16', 'EdVaaRZ4', '5764668'), + (4297, 15, 1806, 'not_attending', '2023-01-21 13:59:41', '2025-12-17 19:47:05', 'EdVaaRZ4', '5764676'), + (4298, 15, 1807, 'maybe', '2023-01-12 23:08:47', '2025-12-17 19:47:05', 'EdVaaRZ4', '5764677'), + (4299, 15, 1808, 'not_attending', '2023-03-01 01:42:49', '2025-12-17 19:47:08', 'EdVaaRZ4', '5764678'), + (4300, 15, 1810, 'maybe', '2023-04-19 17:09:46', '2025-12-17 19:47:00', 'EdVaaRZ4', '5764680'), + (4301, 15, 1812, 'not_attending', '2023-03-01 01:43:23', '2025-12-17 19:47:09', 'EdVaaRZ4', '5764682'), + (4302, 15, 1815, 'not_attending', '2023-02-17 17:29:44', '2025-12-17 19:47:07', 'EdVaaRZ4', '5764685'), + (4303, 15, 1817, 'not_attending', '2023-03-08 01:14:05', '2025-12-17 19:46:57', 'EdVaaRZ4', '5764687'), + (4304, 15, 1818, 'not_attending', '2023-02-07 03:02:14', '2025-12-17 19:47:07', 'EdVaaRZ4', '5764688'), + (4305, 15, 1821, 'not_attending', '2023-03-01 01:43:36', '2025-12-17 19:46:56', 'EdVaaRZ4', '5764691'), + (4306, 15, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'EdVaaRZ4', '5774172'), + (4307, 15, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'EdVaaRZ4', '5818247'), + (4308, 15, 1834, 'attending', '2022-12-10 19:47:11', '2025-12-17 19:47:17', 'EdVaaRZ4', '5819470'), + (4309, 15, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'EdVaaRZ4', '5819471'), + (4310, 15, 1841, 'attending', '2022-12-09 19:25:14', '2025-12-17 19:47:05', 'EdVaaRZ4', '5827665'), + (4311, 15, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'EdVaaRZ4', '5827739'), + (4312, 15, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'EdVaaRZ4', '5844306'), + (4313, 15, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'EdVaaRZ4', '5850159'), + (4314, 15, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'EdVaaRZ4', '5858999'), + (4315, 15, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'EdVaaRZ4', '5871984'), + (4316, 15, 1860, 'not_attending', '2023-01-13 12:28:57', '2025-12-17 19:47:05', 'EdVaaRZ4', '5876309'), + (4317, 15, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'EdVaaRZ4', '5876354'), + (4318, 15, 1864, 'not_attending', '2023-01-21 13:59:39', '2025-12-17 19:47:05', 'EdVaaRZ4', '5879675'), + (4319, 15, 1865, 'attending', '2023-01-24 02:17:22', '2025-12-17 19:47:06', 'EdVaaRZ4', '5879676'), + (4320, 15, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'EdVaaRZ4', '5880939'), + (4321, 15, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'EdVaaRZ4', '5880940'), + (4322, 15, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'EdVaaRZ4', '5880942'), + (4323, 15, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'EdVaaRZ4', '5880943'), + (4324, 15, 1870, 'not_attending', '2023-01-21 13:59:43', '2025-12-17 19:47:05', 'EdVaaRZ4', '5881740'), + (4325, 15, 1873, 'not_attending', '2023-01-21 13:59:46', '2025-12-17 19:47:05', 'EdVaaRZ4', '5885295'), + (4326, 15, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'EdVaaRZ4', '5887890'), + (4327, 15, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'EdVaaRZ4', '5888598'), + (4328, 15, 1879, 'attending', '2023-01-25 01:00:36', '2025-12-17 19:47:06', 'EdVaaRZ4', '5893001'), + (4329, 15, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'EdVaaRZ4', '5893260'), + (4330, 15, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'EdVaaRZ4', '5899826'), + (4331, 15, 1888, 'maybe', '2023-02-17 17:29:59', '2025-12-17 19:47:07', 'EdVaaRZ4', '5900197'), + (4332, 15, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'EdVaaRZ4', '5900199'), + (4333, 15, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'EdVaaRZ4', '5900200'), + (4334, 15, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'EdVaaRZ4', '5900202'), + (4335, 15, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'EdVaaRZ4', '5900203'), + (4336, 15, 1894, 'attending', '2023-01-31 21:20:24', '2025-12-17 19:47:06', 'EdVaaRZ4', '5901100'), + (4337, 15, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'EdVaaRZ4', '5901108'), + (4338, 15, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'EdVaaRZ4', '5901126'), + (4339, 15, 1897, 'not_attending', '2023-02-02 14:44:01', '2025-12-17 19:47:07', 'EdVaaRZ4', '5901128'), + (4340, 15, 1899, 'not_attending', '2023-02-07 03:02:27', '2025-12-17 19:47:07', 'EdVaaRZ4', '5901323'), + (4341, 15, 1909, 'not_attending', '2023-02-07 03:02:25', '2025-12-17 19:47:07', 'EdVaaRZ4', '5906541'), + (4342, 15, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'EdVaaRZ4', '5909655'), + (4343, 15, 1912, 'attending', '2023-02-12 22:53:06', '2025-12-17 19:47:07', 'EdVaaRZ4', '5909808'), + (4344, 15, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'EdVaaRZ4', '5910522'), + (4345, 15, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'EdVaaRZ4', '5910526'), + (4346, 15, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'EdVaaRZ4', '5910528'), + (4347, 15, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'EdVaaRZ4', '5916219'), + (4348, 15, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'EdVaaRZ4', '5936234'), + (4349, 15, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'EdVaaRZ4', '5958351'), + (4350, 15, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'EdVaaRZ4', '5959751'), + (4351, 15, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'EdVaaRZ4', '5959755'), + (4352, 15, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'EdVaaRZ4', '5960055'), + (4353, 15, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'EdVaaRZ4', '5961684'), + (4354, 15, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'EdVaaRZ4', '5962132'), + (4355, 15, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'EdVaaRZ4', '5962133'), + (4356, 15, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'EdVaaRZ4', '5962134'), + (4357, 15, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'EdVaaRZ4', '5962317'), + (4358, 15, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'EdVaaRZ4', '5962318'), + (4359, 15, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'EdVaaRZ4', '5965933'), + (4360, 15, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'EdVaaRZ4', '5967014'), + (4361, 15, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'EdVaaRZ4', '5972763'), + (4362, 15, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'EdVaaRZ4', '5972815'), + (4363, 15, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'EdVaaRZ4', '5974016'), + (4364, 15, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'EdVaaRZ4', '5975052'), + (4365, 15, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'EdVaaRZ4', '5975054'), + (4366, 15, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'EdVaaRZ4', '5981515'), + (4367, 15, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'EdVaaRZ4', '5993516'), + (4368, 15, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'EdVaaRZ4', '5998939'), + (4369, 15, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'EdVaaRZ4', '6028191'), + (4370, 15, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'EdVaaRZ4', '6040066'), + (4371, 15, 1983, 'attending', '2023-03-23 23:38:11', '2025-12-17 19:46:59', 'EdVaaRZ4', '6040068'), + (4372, 15, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'EdVaaRZ4', '6042717'), + (4373, 15, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'EdVaaRZ4', '6044838'), + (4374, 15, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'EdVaaRZ4', '6044839'), + (4375, 15, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVaaRZ4', '6045684'), + (4376, 15, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'EdVaaRZ4', '6050104'), + (4377, 15, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'EdVaaRZ4', '6053195'), + (4378, 15, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'EdVaaRZ4', '6053198'), + (4379, 15, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'EdVaaRZ4', '6056085'), + (4380, 15, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'EdVaaRZ4', '6056916'), + (4381, 15, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'EdVaaRZ4', '6059290'), + (4382, 15, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'EdVaaRZ4', '6060328'), + (4383, 15, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'EdVaaRZ4', '6061037'), + (4384, 15, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'EdVaaRZ4', '6061039'), + (4385, 15, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'EdVaaRZ4', '6065813'), + (4386, 15, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'EdVaaRZ4', '6067245'), + (4387, 15, 2024, 'attending', '2023-04-19 00:02:24', '2025-12-17 19:47:00', 'EdVaaRZ4', '6067437'), + (4388, 15, 2027, 'attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'EdVaaRZ4', '6068094'), + (4389, 15, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'EdVaaRZ4', '6068252'), + (4390, 15, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'EdVaaRZ4', '6068253'), + (4391, 15, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'EdVaaRZ4', '6068254'), + (4392, 15, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'EdVaaRZ4', '6068280'), + (4393, 15, 2032, 'not_attending', '2023-05-18 16:21:30', '2025-12-17 19:47:04', 'EdVaaRZ4', '6068281'), + (4394, 15, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'EdVaaRZ4', '6069093'), + (4395, 15, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'EdVaaRZ4', '6072528'), + (4396, 15, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'EdVaaRZ4', '6075556'), + (4397, 15, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'EdVaaRZ4', '6079840'), + (4398, 15, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'EdVaaRZ4', '6083398'), + (4399, 15, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'EdVaaRZ4', '6093504'), + (4400, 15, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'EdVaaRZ4', '6097414'), + (4401, 15, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'EdVaaRZ4', '6097442'), + (4402, 15, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'EdVaaRZ4', '6097684'), + (4403, 15, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'EdVaaRZ4', '6098762'), + (4404, 15, 2064, 'not_attending', '2023-06-22 23:57:46', '2025-12-17 19:46:50', 'EdVaaRZ4', '6099988'), + (4405, 15, 2066, 'not_attending', '2023-05-25 00:10:52', '2025-12-17 19:47:04', 'EdVaaRZ4', '6101361'), + (4406, 15, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'EdVaaRZ4', '6101362'), + (4407, 15, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'EdVaaRZ4', '6107314'), + (4408, 15, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'EdVaaRZ4', '6120034'), + (4409, 15, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'EdVaaRZ4', '6136733'), + (4410, 15, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'EdVaaRZ4', '6137989'), + (4411, 15, 2098, 'attending', '2023-06-07 23:44:25', '2025-12-17 19:47:04', 'EdVaaRZ4', '6139831'), + (4412, 15, 2108, 'maybe', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'EdVaaRZ4', '6150864'), + (4413, 15, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'EdVaaRZ4', '6155491'), + (4414, 15, 2115, 'attending', '2023-06-23 00:00:49', '2025-12-17 19:46:50', 'EdVaaRZ4', '6161437'), + (4415, 15, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'EdVaaRZ4', '6164417'), + (4416, 15, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'EdVaaRZ4', '6166388'), + (4417, 15, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'EdVaaRZ4', '6176439'), + (4418, 15, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'EdVaaRZ4', '6182410'), + (4419, 15, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'EdVaaRZ4', '6185812'), + (4420, 15, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'EdVaaRZ4', '6187651'), + (4421, 15, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'EdVaaRZ4', '6187963'), + (4422, 15, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'EdVaaRZ4', '6187964'), + (4423, 15, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'EdVaaRZ4', '6187966'), + (4424, 15, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'EdVaaRZ4', '6187967'), + (4425, 15, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'EdVaaRZ4', '6187969'), + (4426, 15, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'EdVaaRZ4', '6334878'), + (4427, 15, 2152, 'attending', '2023-07-14 21:10:17', '2025-12-17 19:46:52', 'EdVaaRZ4', '6337021'), + (4428, 15, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'EdVaaRZ4', '6337236'), + (4429, 15, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'EdVaaRZ4', '6337970'), + (4430, 15, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'EdVaaRZ4', '6338308'), + (4431, 15, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'EdVaaRZ4', '6338342'), + (4432, 15, 2159, 'attending', '2023-07-22 11:26:01', '2025-12-17 19:46:53', 'EdVaaRZ4', '6338355'), + (4433, 15, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'EdVaaRZ4', '6341710'), + (4434, 15, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'EdVaaRZ4', '6342044'), + (4435, 15, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'EdVaaRZ4', '6342298'), + (4436, 15, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'EdVaaRZ4', '6343294'), + (4437, 15, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'EdVaaRZ4', '6347034'), + (4438, 15, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'EdVaaRZ4', '6347056'), + (4439, 15, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'EdVaaRZ4', '6353830'), + (4440, 15, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'EdVaaRZ4', '6353831'), + (4441, 15, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'EdVaaRZ4', '6357867'), + (4442, 15, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'EdVaaRZ4', '6358652'), + (4443, 15, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'EdVaaRZ4', '6358668'), + (4444, 15, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'EdVaaRZ4', '6358669'), + (4445, 15, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'EdVaaRZ4', '6361709'), + (4446, 15, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'EdVaaRZ4', '6361710'), + (4447, 15, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'EdVaaRZ4', '6361711'), + (4448, 15, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'EdVaaRZ4', '6361712'), + (4449, 15, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'EdVaaRZ4', '6361713'), + (4450, 15, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'EdVaaRZ4', '6382573'), + (4451, 15, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'EdVaaRZ4', '6388604'), + (4452, 15, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'EdVaaRZ4', '6394629'), + (4453, 15, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'EdVaaRZ4', '6394631'), + (4454, 15, 2253, 'attending', '2023-09-29 15:06:54', '2025-12-17 19:46:45', 'EdVaaRZ4', '6401811'), + (4455, 15, 2267, 'attending', '2023-09-29 22:06:03', '2025-12-17 19:46:45', 'EdVaaRZ4', '6440034'), + (4456, 15, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'EdVaaRZ4', '6440863'), + (4457, 15, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'EdVaaRZ4', '6445440'), + (4458, 15, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'EdVaaRZ4', '6453951'), + (4459, 15, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'EdVaaRZ4', '6461696'), + (4460, 15, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'EdVaaRZ4', '6462129'), + (4461, 15, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'EdVaaRZ4', '6463218'), + (4462, 15, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'EdVaaRZ4', '6472181'), + (4463, 15, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'EdVaaRZ4', '6482693'), + (4464, 15, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'EdVaaRZ4', '6484200'), + (4465, 15, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'EdVaaRZ4', '6484680'), + (4466, 15, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'EdVaaRZ4', '6507741'), + (4467, 15, 2322, 'attending', '2023-11-18 00:47:30', '2025-12-17 19:46:48', 'EdVaaRZ4', '6514659'), + (4468, 15, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'EdVaaRZ4', '6514660'), + (4469, 15, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'EdVaaRZ4', '6519103'), + (4470, 15, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'EdVaaRZ4', '6535681'), + (4471, 15, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'EdVaaRZ4', '6584747'), + (4472, 15, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'EdVaaRZ4', '6587097'), + (4473, 15, 2354, 'attending', '2023-11-26 19:07:54', '2025-12-17 19:46:48', 'EdVaaRZ4', '6591742'), + (4474, 15, 2360, 'attending', '2023-12-01 21:05:04', '2025-12-17 19:46:49', 'EdVaaRZ4', '6599341'), + (4475, 15, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'EdVaaRZ4', '6609022'), + (4476, 15, 2365, 'attending', '2023-12-24 00:21:28', '2025-12-17 19:46:37', 'EdVaaRZ4', '6613093'), + (4477, 15, 2373, 'attending', '2023-12-31 22:55:05', '2025-12-17 19:46:38', 'EdVaaRZ4', '6632678'), + (4478, 15, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'EdVaaRZ4', '6632757'), + (4479, 15, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'EdVaaRZ4', '6644187'), + (4480, 15, 2380, 'attending', '2023-12-30 21:10:25', '2025-12-17 19:46:37', 'EdVaaRZ4', '6645105'), + (4481, 15, 2381, 'attending', '2023-12-31 23:26:41', '2025-12-17 19:46:37', 'EdVaaRZ4', '6646398'), + (4482, 15, 2383, 'attending', '2024-01-02 00:29:29', '2025-12-17 19:46:37', 'EdVaaRZ4', '6647606'), + (4483, 15, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'EdVaaRZ4', '6648951'), + (4484, 15, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'EdVaaRZ4', '6648952'), + (4485, 15, 2388, 'attending', '2024-01-03 16:30:42', '2025-12-17 19:46:37', 'EdVaaRZ4', '6649244'), + (4486, 15, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'EdVaaRZ4', '6655401'), + (4487, 15, 2399, 'attending', '2024-01-10 01:32:16', '2025-12-17 19:46:38', 'EdVaaRZ4', '6657583'), + (4488, 15, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'EdVaaRZ4', '6661585'), + (4489, 15, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'EdVaaRZ4', '6661588'), + (4490, 15, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'EdVaaRZ4', '6661589'), + (4491, 15, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'EdVaaRZ4', '6699906'), + (4492, 15, 2408, 'not_attending', '2024-01-24 12:50:40', '2025-12-17 19:46:40', 'EdVaaRZ4', '6699907'), + (4493, 15, 2409, 'attending', '2024-01-31 21:32:43', '2025-12-17 19:46:41', 'EdVaaRZ4', '6699909'), + (4494, 15, 2411, 'attending', '2024-02-11 19:42:59', '2025-12-17 19:46:41', 'EdVaaRZ4', '6699913'), + (4495, 15, 2412, 'not_attending', '2024-02-20 12:48:20', '2025-12-17 19:46:43', 'EdVaaRZ4', '6700717'), + (4496, 15, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'EdVaaRZ4', '6701109'), + (4497, 15, 2419, 'attending', '2024-01-18 23:07:45', '2025-12-17 19:46:41', 'EdVaaRZ4', '6704505'), + (4498, 15, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'EdVaaRZ4', '6704561'), + (4499, 15, 2421, 'attending', '2024-01-26 21:40:06', '2025-12-17 19:46:40', 'EdVaaRZ4', '6704598'), + (4500, 15, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'EdVaaRZ4', '6705219'), + (4501, 15, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'EdVaaRZ4', '6708410'), + (4502, 15, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'EdVaaRZ4', '6710153'), + (4503, 15, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'EdVaaRZ4', '6711552'), + (4504, 15, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'EdVaaRZ4', '6711553'), + (4505, 15, 2432, 'not_attending', '2024-01-24 13:25:18', '2025-12-17 19:46:41', 'EdVaaRZ4', '6712822'), + (4506, 15, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'EdVaaRZ4', '6722688'), + (4507, 15, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'EdVaaRZ4', '6730620'), + (4508, 15, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'EdVaaRZ4', '6730642'), + (4509, 15, 2453, 'attending', '2024-02-07 02:49:07', '2025-12-17 19:46:42', 'EdVaaRZ4', '6740364'), + (4510, 15, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'EdVaaRZ4', '6743829'), + (4511, 15, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'EdVaaRZ4', '7030380'), + (4512, 15, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'EdVaaRZ4', '7033677'), + (4513, 15, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'EdVaaRZ4', '7035415'), + (4514, 15, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'EdVaaRZ4', '7044715'), + (4515, 15, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'EdVaaRZ4', '7050318'), + (4516, 15, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'EdVaaRZ4', '7050319'), + (4517, 15, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'EdVaaRZ4', '7050322'), + (4518, 15, 2498, 'attending', '2024-03-06 02:22:19', '2025-12-17 19:46:33', 'EdVaaRZ4', '7057662'), + (4519, 15, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'EdVaaRZ4', '7057804'), + (4520, 15, 2502, 'attending', '2024-03-06 02:22:16', '2025-12-17 19:46:33', 'EdVaaRZ4', '7061202'), + (4521, 15, 2504, 'attending', '2024-03-07 18:30:58', '2025-12-17 19:46:33', 'EdVaaRZ4', '7063296'), + (4522, 15, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'EdVaaRZ4', '7072824'), + (4523, 15, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'EdVaaRZ4', '7074348'), + (4524, 15, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'EdVaaRZ4', '7074364'), + (4525, 15, 2537, 'attending', '2024-03-21 23:22:01', '2025-12-17 19:46:33', 'EdVaaRZ4', '7085484'), + (4526, 15, 2538, 'attending', '2024-03-21 23:22:13', '2025-12-17 19:46:33', 'EdVaaRZ4', '7085485'), + (4527, 15, 2539, 'attending', '2024-04-03 22:48:54', '2025-12-17 19:46:33', 'EdVaaRZ4', '7085486'), + (4528, 15, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'EdVaaRZ4', '7089267'), + (4529, 15, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'EdVaaRZ4', '7098747'), + (4530, 15, 2553, 'attending', '2024-03-29 22:56:01', '2025-12-17 19:46:33', 'EdVaaRZ4', '7113468'), + (4531, 15, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'EdVaaRZ4', '7114856'), + (4532, 15, 2555, 'attending', '2024-03-31 02:41:06', '2025-12-17 19:46:33', 'EdVaaRZ4', '7114951'), + (4533, 15, 2556, 'attending', '2024-04-03 00:12:59', '2025-12-17 19:46:34', 'EdVaaRZ4', '7114955'), + (4534, 15, 2557, 'attending', '2024-04-03 00:12:17', '2025-12-17 19:46:34', 'EdVaaRZ4', '7114956'), + (4535, 15, 2558, 'attending', '2024-04-03 00:13:01', '2025-12-17 19:46:35', 'EdVaaRZ4', '7114957'), + (4536, 15, 2564, 'maybe', '2024-04-10 20:31:33', '2025-12-17 19:46:33', 'EdVaaRZ4', '7134735'), + (4537, 15, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'EdVaaRZ4', '7153615'), + (4538, 15, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'EdVaaRZ4', '7159484'), + (4539, 15, 2582, 'attending', '2024-04-12 21:56:19', '2025-12-17 19:46:34', 'EdVaaRZ4', '7169765'), + (4540, 15, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'EdVaaRZ4', '7178446'), + (4541, 15, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'EdVaaRZ4', '7220467'), + (4542, 15, 2609, 'not_attending', '2024-04-30 19:19:56', '2025-12-17 19:46:35', 'EdVaaRZ4', '7240354'), + (4543, 15, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'EdVaaRZ4', '7251633'), + (4544, 15, 2626, 'attending', '2024-05-12 03:35:29', '2025-12-17 19:46:35', 'EdVaaRZ4', '7264723'), + (4545, 15, 2627, 'attending', '2024-05-12 03:42:06', '2025-12-17 19:46:35', 'EdVaaRZ4', '7264724'), + (4546, 15, 2628, 'attending', '2024-05-12 03:42:10', '2025-12-17 19:46:36', 'EdVaaRZ4', '7264725'), + (4547, 15, 2629, 'attending', '2024-05-12 03:42:13', '2025-12-17 19:46:28', 'EdVaaRZ4', '7264726'), + (4548, 15, 2647, 'attending', '2024-05-26 21:04:16', '2025-12-17 19:46:28', 'EdVaaRZ4', '7282057'), + (4549, 15, 2650, 'attending', '2024-05-24 16:28:37', '2025-12-17 19:46:35', 'EdVaaRZ4', '7288199'), + (4550, 15, 2651, 'not_attending', '2024-05-24 22:48:45', '2025-12-17 19:46:35', 'EdVaaRZ4', '7288200'), + (4551, 15, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'EdVaaRZ4', '7302674'), + (4552, 15, 2662, 'attending', '2024-06-02 19:03:13', '2025-12-17 19:46:36', 'EdVaaRZ4', '7302815'), + (4553, 15, 2667, 'attending', '2024-06-05 12:14:40', '2025-12-17 19:46:36', 'EdVaaRZ4', '7307776'), + (4554, 15, 2668, 'attending', '2024-06-07 14:53:21', '2025-12-17 19:46:36', 'EdVaaRZ4', '7308821'), + (4555, 15, 2678, 'not_attending', '2024-06-10 15:38:30', '2025-12-17 19:46:28', 'EdVaaRZ4', '7319489'), + (4556, 15, 2679, 'attending', '2024-06-10 15:38:33', '2025-12-17 19:46:29', 'EdVaaRZ4', '7319490'), + (4557, 15, 2688, 'not_attending', '2024-06-19 16:41:06', '2025-12-17 19:46:29', 'EdVaaRZ4', '7324073'), + (4558, 15, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'EdVaaRZ4', '7324074'), + (4559, 15, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'EdVaaRZ4', '7324075'), + (4560, 15, 2691, 'attending', '2024-07-19 03:36:12', '2025-12-17 19:46:30', 'EdVaaRZ4', '7324076'), + (4561, 15, 2692, 'not_attending', '2024-07-07 16:12:55', '2025-12-17 19:46:30', 'EdVaaRZ4', '7324077'), + (4562, 15, 2693, 'not_attending', '2024-07-07 16:13:06', '2025-12-17 19:46:31', 'EdVaaRZ4', '7324078'), + (4563, 15, 2694, 'not_attending', '2024-07-28 00:06:48', '2025-12-17 19:46:31', 'EdVaaRZ4', '7324079'), + (4564, 15, 2695, 'attending', '2024-08-15 17:11:03', '2025-12-17 19:46:31', 'EdVaaRZ4', '7324080'), + (4565, 15, 2696, 'attending', '2024-08-15 17:11:06', '2025-12-17 19:46:32', 'EdVaaRZ4', '7324081'), + (4566, 15, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'EdVaaRZ4', '7324082'), + (4567, 15, 2717, 'attending', '2024-06-19 16:40:39', '2025-12-17 19:46:29', 'EdVaaRZ4', '7329149'), + (4568, 15, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'EdVaaRZ4', '7331457'), + (4569, 15, 2761, 'attending', '2024-07-17 13:35:16', '2025-12-17 19:46:30', 'EdVaaRZ4', '7363412'), + (4570, 15, 2762, 'attending', '2024-07-14 15:15:33', '2025-12-17 19:46:30', 'EdVaaRZ4', '7363413'), + (4571, 15, 2765, 'attending', '2024-07-15 00:24:46', '2025-12-17 19:46:30', 'EdVaaRZ4', '7363604'), + (4572, 15, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'EdVaaRZ4', '7363643'), + (4573, 15, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'EdVaaRZ4', '7368606'), + (4574, 15, 2775, 'attending', '2024-07-21 22:06:26', '2025-12-17 19:46:30', 'EdVaaRZ4', '7368642'), + (4575, 15, 2797, 'attending', '2024-08-10 14:00:56', '2025-12-17 19:46:31', 'EdVaaRZ4', '7392641'), + (4576, 15, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'EdVaaRZ4', '7397462'), + (4577, 15, 2821, 'attending', '2024-10-04 14:57:09', '2025-12-17 19:46:26', 'EdVaaRZ4', '7424275'), + (4578, 15, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'EdVaaRZ4', '7424276'), + (4579, 15, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'EdVaaRZ4', '7432751'), + (4580, 15, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'EdVaaRZ4', '7432752'), + (4581, 15, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'EdVaaRZ4', '7432753'), + (4582, 15, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432754'), + (4583, 15, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432755'), + (4584, 15, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432756'), + (4585, 15, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432758'), + (4586, 15, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'EdVaaRZ4', '7432759'), + (4587, 15, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'EdVaaRZ4', '7433834'), + (4588, 15, 2849, 'not_attending', '2024-09-30 14:33:40', '2025-12-17 19:46:25', 'EdVaaRZ4', '7457114'), + (4589, 15, 2850, 'not_attending', '2024-09-30 14:33:37', '2025-12-17 19:46:25', 'EdVaaRZ4', '7457153'), + (4590, 15, 2860, 'attending', '2024-09-30 14:34:37', '2025-12-17 19:46:26', 'EdVaaRZ4', '7469393'), + (4591, 15, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'EdVaaRZ4', '7470197'), + (4592, 15, 2879, 'attending', '2024-10-11 01:03:12', '2025-12-17 19:46:26', 'EdVaaRZ4', '7633863'), + (4593, 15, 2884, 'attending', '2024-10-17 10:05:28', '2025-12-17 19:46:26', 'EdVaaRZ4', '7649932'), + (4594, 15, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'EdVaaRZ4', '7685613'), + (4595, 15, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'EdVaaRZ4', '7688194'), + (4596, 15, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'EdVaaRZ4', '7688196'), + (4597, 15, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'EdVaaRZ4', '7688289'), + (4598, 15, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'EdVaaRZ4', '7692763'), + (4599, 15, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'EdVaaRZ4', '7697552'), + (4600, 15, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'EdVaaRZ4', '7699878'), + (4601, 15, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'EdVaaRZ4', '7704043'), + (4602, 15, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'EdVaaRZ4', '7712467'), + (4603, 15, 2925, 'not_attending', '2024-12-12 02:54:45', '2025-12-17 19:46:21', 'EdVaaRZ4', '7713584'), + (4604, 15, 2926, 'not_attending', '2024-12-07 01:52:17', '2025-12-17 19:46:21', 'EdVaaRZ4', '7713585'), + (4605, 15, 2927, 'attending', '2024-12-16 14:55:45', '2025-12-17 19:46:22', 'EdVaaRZ4', '7713586'), + (4606, 15, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'EdVaaRZ4', '7738518'), + (4607, 15, 2959, 'attending', '2024-12-22 17:21:05', '2025-12-17 19:46:22', 'EdVaaRZ4', '7747388'), + (4608, 15, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'EdVaaRZ4', '7750632'), + (4609, 15, 2963, 'attending', '2024-12-28 03:41:43', '2025-12-17 19:46:22', 'EdVaaRZ4', '7750636'), + (4610, 15, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'EdVaaRZ4', '7796540'), + (4611, 15, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'EdVaaRZ4', '7796541'), + (4612, 15, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'EdVaaRZ4', '7796542'), + (4613, 15, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'EdVaaRZ4', '7825913'), + (4614, 15, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'EdVaaRZ4', '7825920'), + (4615, 15, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'EdVaaRZ4', '7826209'), + (4616, 15, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'EdVaaRZ4', '7834742'), + (4617, 15, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'EdVaaRZ4', '7842108'), + (4618, 15, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'EdVaaRZ4', '7842902'), + (4619, 15, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'EdVaaRZ4', '7842903'), + (4620, 15, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'EdVaaRZ4', '7842904'), + (4621, 15, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'EdVaaRZ4', '7842905'), + (4622, 15, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'EdVaaRZ4', '7855719'), + (4623, 15, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'EdVaaRZ4', '7860683'), + (4624, 15, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'EdVaaRZ4', '7860684'), + (4625, 15, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'EdVaaRZ4', '7866095'), + (4626, 15, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'EdVaaRZ4', '7869170'), + (4627, 15, 3014, 'attending', '2025-03-31 15:25:44', '2025-12-17 19:46:19', 'EdVaaRZ4', '7869185'), + (4628, 15, 3015, 'not_attending', '2025-04-03 22:38:28', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869186'), + (4629, 15, 3016, 'not_attending', '2025-03-31 15:25:48', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869187'), + (4630, 15, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'EdVaaRZ4', '7869188'), + (4631, 15, 3018, 'not_attending', '2025-03-31 15:25:46', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869189'), + (4632, 15, 3028, 'not_attending', '2025-04-11 11:21:32', '2025-12-17 19:46:20', 'EdVaaRZ4', '7869199'), + (4633, 15, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'EdVaaRZ4', '7869201'), + (4634, 15, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'EdVaaRZ4', '7877465'), + (4635, 15, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'EdVaaRZ4', '7888250'), + (4636, 15, 3059, 'attending', '2025-03-26 11:29:01', '2025-12-17 19:46:19', 'EdVaaRZ4', '7891868'), + (4637, 15, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'EdVaaRZ4', '7904777'), + (4638, 15, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'EdVaaRZ4', '8349164'), + (4639, 15, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'EdVaaRZ4', '8349545'), + (4640, 15, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'EdVaaRZ4', '8353584'), + (4641, 15, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'EdVaaRZ4', '8368028'), + (4642, 15, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'EdVaaRZ4', '8368029'), + (4643, 15, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'EdVaaRZ4', '8388462'), + (4644, 15, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'EdVaaRZ4', '8400273'), + (4645, 15, 3154, 'attending', '2025-06-25 17:14:42', '2025-12-17 19:46:15', 'EdVaaRZ4', '8400274'), + (4646, 15, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'EdVaaRZ4', '8400275'), + (4647, 15, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'EdVaaRZ4', '8400276'), + (4648, 15, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'EdVaaRZ4', '8404977'), + (4649, 15, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'EdVaaRZ4', '8430783'), + (4650, 15, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'EdVaaRZ4', '8430784'), + (4651, 15, 3183, 'attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'EdVaaRZ4', '8430799'), + (4652, 15, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'EdVaaRZ4', '8430800'), + (4653, 15, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'EdVaaRZ4', '8430801'), + (4654, 15, 3188, 'attending', '2025-07-15 11:58:26', '2025-12-17 19:46:17', 'EdVaaRZ4', '8438709'), + (4655, 15, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'EdVaaRZ4', '8457738'), + (4656, 15, 3195, 'attending', '2025-08-06 22:02:50', '2025-12-17 19:46:17', 'EdVaaRZ4', '8458118'), + (4657, 15, 3196, 'attending', '2025-08-13 23:06:06', '2025-12-17 19:46:17', 'EdVaaRZ4', '8458543'), + (4658, 15, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'EdVaaRZ4', '8459566'), + (4659, 15, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'EdVaaRZ4', '8459567'), + (4660, 15, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'EdVaaRZ4', '8461032'), + (4661, 15, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'EdVaaRZ4', '8477877'), + (4662, 15, 3217, 'attending', '2025-08-08 15:56:00', '2025-12-17 19:46:17', 'EdVaaRZ4', '8481811'), + (4663, 15, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'EdVaaRZ4', '8485688'), + (4664, 15, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'EdVaaRZ4', '8490587'), + (4665, 15, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'EdVaaRZ4', '8493552'), + (4666, 15, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'EdVaaRZ4', '8493553'), + (4667, 15, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'EdVaaRZ4', '8493554'), + (4668, 15, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'EdVaaRZ4', '8493555'), + (4669, 15, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'EdVaaRZ4', '8493556'), + (4670, 15, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'EdVaaRZ4', '8493557'), + (4671, 15, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'EdVaaRZ4', '8493558'), + (4672, 15, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'EdVaaRZ4', '8493559'), + (4673, 15, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'EdVaaRZ4', '8493560'), + (4674, 15, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'EdVaaRZ4', '8493561'), + (4675, 15, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'EdVaaRZ4', '8493572'), + (4676, 15, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'EdVaaRZ4', '8540725'), + (4677, 15, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'EdVaaRZ4', '8555421'), + (4678, 16, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'O4ZrpPl4', '6044839'), + (4679, 16, 1994, 'attending', '2023-04-05 21:32:02', '2025-12-17 19:46:59', 'O4ZrpPl4', '6050104'), + (4680, 16, 1998, 'attending', '2023-04-10 22:48:48', '2025-12-17 19:46:59', 'O4ZrpPl4', '6052056'), + (4681, 16, 2002, 'attending', '2023-04-28 17:19:32', '2025-12-17 19:47:01', 'O4ZrpPl4', '6052605'), + (4682, 16, 2005, 'attending', '2023-04-05 22:52:52', '2025-12-17 19:46:58', 'O4ZrpPl4', '6053195'), + (4683, 16, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'O4ZrpPl4', '6053198'), + (4684, 16, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'O4ZrpPl4', '6056085'), + (4685, 16, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'O4ZrpPl4', '6056916'), + (4686, 16, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'O4ZrpPl4', '6059290'), + (4687, 16, 2013, 'maybe', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'O4ZrpPl4', '6060328'), + (4688, 16, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'O4ZrpPl4', '6061037'), + (4689, 16, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'O4ZrpPl4', '6061039'), + (4690, 16, 2019, 'attending', '2023-04-20 22:28:14', '2025-12-17 19:47:00', 'O4ZrpPl4', '6062934'), + (4691, 16, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'O4ZrpPl4', '6067245'), + (4692, 16, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'O4ZrpPl4', '6068094'), + (4693, 16, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'O4ZrpPl4', '6068252'), + (4694, 16, 2029, 'maybe', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'O4ZrpPl4', '6068253'), + (4695, 16, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'O4ZrpPl4', '6068254'), + (4696, 16, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'O4ZrpPl4', '6068280'), + (4697, 16, 2032, 'maybe', '2023-06-03 23:23:25', '2025-12-17 19:47:04', 'O4ZrpPl4', '6068281'), + (4698, 16, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'O4ZrpPl4', '6069093'), + (4699, 16, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'O4ZrpPl4', '6072528'), + (4700, 16, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'O4ZrpPl4', '6079840'), + (4701, 16, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'O4ZrpPl4', '6083398'), + (4702, 16, 2052, 'attending', '2023-05-06 01:56:24', '2025-12-17 19:47:02', 'O4ZrpPl4', '6088220'), + (4703, 16, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'O4ZrpPl4', '6093504'), + (4704, 16, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'O4ZrpPl4', '6097414'), + (4705, 16, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'O4ZrpPl4', '6097442'), + (4706, 16, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'O4ZrpPl4', '6097684'), + (4707, 16, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'O4ZrpPl4', '6098762'), + (4708, 16, 2064, 'attending', '2023-06-24 21:18:12', '2025-12-17 19:46:50', 'O4ZrpPl4', '6099988'), + (4709, 16, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'O4ZrpPl4', '6101361'), + (4710, 16, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'O4ZrpPl4', '6101362'), + (4711, 16, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'O4ZrpPl4', '6103752'), + (4712, 16, 2074, 'attending', '2023-05-24 18:49:11', '2025-12-17 19:47:03', 'O4ZrpPl4', '6107312'), + (4713, 16, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'O4ZrpPl4', '6107314'), + (4714, 16, 2087, 'maybe', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'O4ZrpPl4', '6120034'), + (4715, 16, 2089, 'attending', '2023-06-08 02:49:24', '2025-12-17 19:47:04', 'O4ZrpPl4', '6125227'), + (4716, 16, 2090, 'maybe', '2023-06-02 16:07:23', '2025-12-17 19:47:04', 'O4ZrpPl4', '6127961'), + (4717, 16, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'O4ZrpPl4', '6136733'), + (4718, 16, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'O4ZrpPl4', '6137989'), + (4719, 16, 2099, 'attending', '2023-06-15 20:33:14', '2025-12-17 19:46:49', 'O4ZrpPl4', '6143012'), + (4720, 16, 2105, 'attending', '2023-06-19 23:02:00', '2025-12-17 19:46:50', 'O4ZrpPl4', '6149551'), + (4721, 16, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'O4ZrpPl4', '6150864'), + (4722, 16, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'O4ZrpPl4', '6155491'), + (4723, 16, 2117, 'attending', '2023-06-25 06:53:23', '2025-12-17 19:46:50', 'O4ZrpPl4', '6163750'), + (4724, 16, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'O4ZrpPl4', '6164417'), + (4725, 16, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'O4ZrpPl4', '6166388'), + (4726, 16, 2121, 'maybe', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'O4ZrpPl4', '6176439'), + (4727, 16, 2122, 'attending', '2023-07-06 22:27:58', '2025-12-17 19:46:51', 'O4ZrpPl4', '6176476'), + (4728, 16, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'O4ZrpPl4', '6182410'), + (4729, 16, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'O4ZrpPl4', '6185812'), + (4730, 16, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'O4ZrpPl4', '6187651'), + (4731, 16, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'O4ZrpPl4', '6187963'), + (4732, 16, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'O4ZrpPl4', '6187964'), + (4733, 16, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'O4ZrpPl4', '6187966'), + (4734, 16, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'O4ZrpPl4', '6187967'), + (4735, 16, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'O4ZrpPl4', '6187969'), + (4736, 16, 2141, 'maybe', '2023-07-12 18:24:19', '2025-12-17 19:46:52', 'O4ZrpPl4', '6188819'), + (4737, 16, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'O4ZrpPl4', '6334878'), + (4738, 16, 2146, 'attending', '2023-07-21 22:56:44', '2025-12-17 19:46:53', 'O4ZrpPl4', '6335638'), + (4739, 16, 2152, 'attending', '2023-07-14 23:00:30', '2025-12-17 19:46:52', 'O4ZrpPl4', '6337021'), + (4740, 16, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'O4ZrpPl4', '6337236'), + (4741, 16, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'O4ZrpPl4', '6337970'), + (4742, 16, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'O4ZrpPl4', '6338308'), + (4743, 16, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'O4ZrpPl4', '6340845'), + (4744, 16, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'O4ZrpPl4', '6341710'), + (4745, 16, 2165, 'attending', '2023-08-02 17:03:18', '2025-12-17 19:46:54', 'O4ZrpPl4', '6342044'), + (4746, 16, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'O4ZrpPl4', '6342298'), + (4747, 16, 2168, 'maybe', '2023-07-17 22:13:49', '2025-12-17 19:46:52', 'O4ZrpPl4', '6342302'), + (4748, 16, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'O4ZrpPl4', '6343294'), + (4749, 16, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'O4ZrpPl4', '6347034'), + (4750, 16, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'O4ZrpPl4', '6347056'), + (4751, 16, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'O4ZrpPl4', '6353830'), + (4752, 16, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'O4ZrpPl4', '6353831'), + (4753, 16, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'O4ZrpPl4', '6357867'), + (4754, 16, 2191, 'maybe', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'O4ZrpPl4', '6358652'), + (4755, 16, 2195, 'maybe', '2023-08-22 20:05:57', '2025-12-17 19:46:55', 'O4ZrpPl4', '6359397'), + (4756, 16, 2199, 'attending', '2023-08-16 22:23:32', '2025-12-17 19:46:55', 'O4ZrpPl4', '6359849'), + (4757, 16, 2204, 'attending', '2023-08-19 20:58:39', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361542'), + (4758, 16, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'O4ZrpPl4', '6361709'), + (4759, 16, 2209, 'maybe', '2023-08-22 20:05:24', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361710'), + (4760, 16, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361711'), + (4761, 16, 2211, 'attending', '2023-08-18 10:03:28', '2025-12-17 19:46:55', 'O4ZrpPl4', '6361712'), + (4762, 16, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'O4ZrpPl4', '6361713'), + (4763, 16, 2221, 'maybe', '2023-08-20 21:41:23', '2025-12-17 19:46:55', 'O4ZrpPl4', '6367357'), + (4764, 16, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'O4ZrpPl4', '6382573'), + (4765, 16, 2239, 'maybe', '2023-09-02 19:13:24', '2025-12-17 19:46:56', 'O4ZrpPl4', '6387592'), + (4766, 16, 2240, 'maybe', '2023-09-09 20:00:59', '2025-12-17 19:46:56', 'O4ZrpPl4', '6388603'), + (4767, 16, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'O4ZrpPl4', '6388604'), + (4768, 16, 2247, 'attending', '2023-09-06 21:51:23', '2025-12-17 19:46:56', 'O4ZrpPl4', '6394628'), + (4769, 16, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'O4ZrpPl4', '6394629'), + (4770, 16, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'O4ZrpPl4', '6394631'), + (4771, 16, 2268, 'maybe', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'O4ZrpPl4', '6440863'), + (4772, 16, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'O4ZrpPl4', '6445440'), + (4773, 16, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'O4ZrpPl4', '6453951'), + (4774, 16, 2279, 'attending', '2023-10-12 19:28:31', '2025-12-17 19:46:46', 'O4ZrpPl4', '6455460'), + (4775, 16, 2284, 'attending', '2023-10-13 22:09:08', '2025-12-17 19:46:46', 'O4ZrpPl4', '6460928'), + (4776, 16, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'O4ZrpPl4', '6461696'), + (4777, 16, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'O4ZrpPl4', '6462129'), + (4778, 16, 2292, 'maybe', '2023-11-01 20:37:18', '2025-12-17 19:46:47', 'O4ZrpPl4', '6462216'), + (4779, 16, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'O4ZrpPl4', '6463218'), + (4780, 16, 2299, 'maybe', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'O4ZrpPl4', '6472181'), + (4781, 16, 2300, 'attending', '2023-10-29 02:17:29', '2025-12-17 19:46:47', 'O4ZrpPl4', '6472185'), + (4782, 16, 2303, 'attending', '2023-10-28 21:19:34', '2025-12-17 19:46:47', 'O4ZrpPl4', '6482691'), + (4783, 16, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'O4ZrpPl4', '6482693'), + (4784, 16, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'O4ZrpPl4', '6484200'), + (4785, 16, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'O4ZrpPl4', '6484680'), + (4786, 16, 2310, 'maybe', '2023-11-12 00:14:12', '2025-12-17 19:46:47', 'O4ZrpPl4', '6487709'), + (4787, 16, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'O4ZrpPl4', '6507741'), + (4788, 16, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'O4ZrpPl4', '6514659'), + (4789, 16, 2323, 'maybe', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'O4ZrpPl4', '6514660'), + (4790, 16, 2325, 'attending', '2023-12-16 22:42:46', '2025-12-17 19:46:36', 'O4ZrpPl4', '6514663'), + (4791, 16, 2331, 'attending', '2023-11-15 01:27:48', '2025-12-17 19:46:47', 'O4ZrpPl4', '6518640'), + (4792, 16, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'O4ZrpPl4', '6519103'), + (4793, 16, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'O4ZrpPl4', '6535681'), + (4794, 16, 2345, 'attending', '2023-11-29 19:20:03', '2025-12-17 19:46:48', 'O4ZrpPl4', '6582414'), + (4795, 16, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'O4ZrpPl4', '6584747'), + (4796, 16, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'O4ZrpPl4', '6587097'), + (4797, 16, 2362, 'maybe', '2023-12-07 07:42:32', '2025-12-17 19:46:49', 'O4ZrpPl4', '6605708'), + (4798, 16, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'O4ZrpPl4', '6609022'), + (4799, 16, 2366, 'maybe', '2023-12-12 23:15:22', '2025-12-17 19:46:36', 'O4ZrpPl4', '6615304'), + (4800, 16, 2370, 'maybe', '2023-12-13 04:15:43', '2025-12-17 19:46:36', 'O4ZrpPl4', '6623765'), + (4801, 16, 2374, 'maybe', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'O4ZrpPl4', '6632757'), + (4802, 16, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'O4ZrpPl4', '6644187'), + (4803, 16, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'O4ZrpPl4', '6648951'), + (4804, 16, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'O4ZrpPl4', '6648952'), + (4805, 16, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'O4ZrpPl4', '6655401'), + (4806, 16, 2398, 'maybe', '2024-01-10 21:30:13', '2025-12-17 19:46:37', 'O4ZrpPl4', '6657381'), + (4807, 16, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'O4ZrpPl4', '6661585'), + (4808, 16, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'O4ZrpPl4', '6661588'), + (4809, 16, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'O4ZrpPl4', '6661589'), + (4810, 16, 2406, 'attending', '2024-01-19 22:02:29', '2025-12-17 19:46:40', 'O4ZrpPl4', '6692344'), + (4811, 16, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'O4ZrpPl4', '6699906'), + (4812, 16, 2411, 'maybe', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'O4ZrpPl4', '6699913'), + (4813, 16, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'O4ZrpPl4', '6701109'), + (4814, 16, 2421, 'attending', '2024-01-27 00:27:22', '2025-12-17 19:46:40', 'O4ZrpPl4', '6704598'), + (4815, 16, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'O4ZrpPl4', '6705219'), + (4816, 16, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'O4ZrpPl4', '6710153'), + (4817, 16, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'O4ZrpPl4', '6711552'), + (4818, 16, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'O4ZrpPl4', '6711553'), + (4819, 16, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'O4ZrpPl4', '6722688'), + (4820, 16, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'O4ZrpPl4', '6730620'), + (4821, 16, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'O4ZrpPl4', '6730642'), + (4822, 16, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'O4ZrpPl4', '6740364'), + (4823, 16, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'O4ZrpPl4', '6743829'), + (4824, 16, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'O4ZrpPl4', '7030380'), + (4825, 16, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'O4ZrpPl4', '7033677'), + (4826, 16, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'O4ZrpPl4', '7035415'), + (4827, 16, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'O4ZrpPl4', '7044715'), + (4828, 16, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'O4ZrpPl4', '7050318'), + (4829, 16, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'O4ZrpPl4', '7050319'), + (4830, 16, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'O4ZrpPl4', '7050322'), + (4831, 16, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'O4ZrpPl4', '7057804'), + (4832, 16, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'O4ZrpPl4', '7059866'), + (4833, 16, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'O4ZrpPl4', '7072824'), + (4834, 16, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'O4ZrpPl4', '7074348'), + (4835, 16, 2521, 'maybe', '2024-06-20 22:47:00', '2025-12-17 19:46:29', 'O4ZrpPl4', '7074361'), + (4836, 16, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'O4ZrpPl4', '7074364'), + (4837, 16, 2534, 'attending', '2024-03-13 22:46:19', '2025-12-17 19:46:32', 'O4ZrpPl4', '7076875'), + (4838, 16, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'O4ZrpPl4', '7089267'), + (4839, 16, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'O4ZrpPl4', '7098747'), + (4840, 16, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'O4ZrpPl4', '7113468'), + (4841, 16, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'O4ZrpPl4', '7114856'), + (4842, 16, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'O4ZrpPl4', '7114951'), + (4843, 16, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'O4ZrpPl4', '7114955'), + (4844, 16, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'O4ZrpPl4', '7114956'), + (4845, 16, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'O4ZrpPl4', '7114957'), + (4846, 16, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'O4ZrpPl4', '7153615'), + (4847, 16, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'O4ZrpPl4', '7159484'), + (4848, 16, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'O4ZrpPl4', '7178446'), + (4849, 16, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'O4ZrpPl4', '7220467'), + (4850, 16, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'O4ZrpPl4', '7240354'), + (4851, 16, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'O4ZrpPl4', '7251633'), + (4852, 16, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'O4ZrpPl4', '7263048'), + (4853, 16, 2629, 'maybe', '2024-06-08 22:23:37', '2025-12-17 19:46:28', 'O4ZrpPl4', '7264726'), + (4854, 16, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'O4ZrpPl4', '7302674'), + (4855, 16, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'O4ZrpPl4', '7324073'), + (4856, 16, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'O4ZrpPl4', '7324074'), + (4857, 16, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'O4ZrpPl4', '7324075'), + (4858, 16, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'O4ZrpPl4', '7324078'), + (4859, 16, 2695, 'maybe', '2024-08-16 23:09:06', '2025-12-17 19:46:32', 'O4ZrpPl4', '7324080'), + (4860, 16, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'O4ZrpPl4', '7324082'), + (4861, 16, 2699, 'attending', '2024-06-12 22:27:52', '2025-12-17 19:46:28', 'O4ZrpPl4', '7324385'), + (4862, 16, 2712, 'maybe', '2024-08-02 17:49:42', '2025-12-17 19:46:31', 'O4ZrpPl4', '7326525'), + (4863, 16, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'O4ZrpPl4', '7331457'), + (4864, 16, 2724, 'attending', '2024-06-26 22:14:29', '2025-12-17 19:46:29', 'O4ZrpPl4', '7332562'), + (4865, 16, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'O4ZrpPl4', '7356752'), + (4866, 16, 2755, 'attending', '2024-07-10 20:52:24', '2025-12-17 19:46:29', 'O4ZrpPl4', '7357808'), + (4867, 16, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'O4ZrpPl4', '7363643'), + (4868, 16, 2767, 'attending', '2024-07-22 21:56:54', '2025-12-17 19:46:30', 'O4ZrpPl4', '7364726'), + (4869, 16, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'O4ZrpPl4', '7368606'), + (4870, 16, 2800, 'maybe', '2024-08-16 02:44:40', '2025-12-17 19:46:31', 'O4ZrpPl4', '7397405'), + (4871, 16, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'O4ZrpPl4', '7397462'), + (4872, 16, 2806, 'maybe', '2024-09-18 22:16:50', '2025-12-17 19:46:25', 'O4ZrpPl4', '7404888'), + (4873, 16, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'O4ZrpPl4', '7424275'), + (4874, 16, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'O4ZrpPl4', '7424276'), + (4875, 16, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'O4ZrpPl4', '7432751'), + (4876, 16, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'O4ZrpPl4', '7432752'), + (4877, 16, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'O4ZrpPl4', '7432753'), + (4878, 16, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432754'), + (4879, 16, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432755'), + (4880, 16, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432756'), + (4881, 16, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432758'), + (4882, 16, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'O4ZrpPl4', '7432759'), + (4883, 16, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'O4ZrpPl4', '7433834'), + (4884, 16, 2839, 'attending', '2024-09-25 22:13:40', '2025-12-17 19:46:25', 'O4ZrpPl4', '7439262'), + (4885, 16, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'O4ZrpPl4', '7470197'), + (4886, 16, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'O4ZrpPl4', '7685613'), + (4887, 16, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'O4ZrpPl4', '7688194'), + (4888, 16, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'O4ZrpPl4', '7688196'), + (4889, 16, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'O4ZrpPl4', '7688289'), + (4890, 16, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'O4ZrpPl4', '7692763'), + (4891, 16, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'O4ZrpPl4', '7697552'), + (4892, 16, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'O4ZrpPl4', '7699878'), + (4893, 16, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'O4ZrpPl4', '7704043'), + (4894, 16, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'O4ZrpPl4', '7712467'), + (4895, 16, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'O4ZrpPl4', '7713585'), + (4896, 16, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'O4ZrpPl4', '7713586'), + (4897, 16, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'O4ZrpPl4', '7738518'), + (4898, 16, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'O4ZrpPl4', '7750636'), + (4899, 16, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'O4ZrpPl4', '7796540'), + (4900, 16, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'O4ZrpPl4', '7796541'), + (4901, 16, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'O4ZrpPl4', '7796542'), + (4902, 16, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'O4ZrpPl4', '7825913'), + (4903, 16, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'O4ZrpPl4', '7826209'), + (4904, 16, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'O4ZrpPl4', '7834742'), + (4905, 16, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'O4ZrpPl4', '7842108'), + (4906, 16, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'O4ZrpPl4', '7842902'), + (4907, 16, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'O4ZrpPl4', '7842903'), + (4908, 16, 2993, 'maybe', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'O4ZrpPl4', '7842904'), + (4909, 16, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'O4ZrpPl4', '7842905'), + (4910, 16, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'O4ZrpPl4', '7855719'), + (4911, 16, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'O4ZrpPl4', '7860683'), + (4912, 16, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'O4ZrpPl4', '7860684'), + (4913, 16, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'O4ZrpPl4', '7866095'), + (4914, 16, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'O4ZrpPl4', '7869170'), + (4915, 16, 3014, 'attending', '2025-04-05 19:10:35', '2025-12-17 19:46:20', 'O4ZrpPl4', '7869185'), + (4916, 16, 3015, 'attending', '2025-04-26 22:40:32', '2025-12-17 19:46:20', 'O4ZrpPl4', '7869186'), + (4917, 16, 3016, 'attending', '2025-04-19 19:07:23', '2025-12-17 19:46:20', 'O4ZrpPl4', '7869187'), + (4918, 16, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'O4ZrpPl4', '7869188'), + (4919, 16, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'O4ZrpPl4', '7869201'), + (4920, 16, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'O4ZrpPl4', '7877465'), + (4921, 16, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'O4ZrpPl4', '7878570'), + (4922, 16, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'O4ZrpPl4', '7888250'), + (4923, 16, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'O4ZrpPl4', '7904777'), + (4924, 16, 3094, 'maybe', '2025-05-03 23:14:30', '2025-12-17 19:46:21', 'O4ZrpPl4', '8342292'), + (4925, 16, 3095, 'attending', '2025-05-03 22:55:01', '2025-12-17 19:46:20', 'O4ZrpPl4', '8342293'), + (4926, 16, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'O4ZrpPl4', '8349164'), + (4927, 16, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'O4ZrpPl4', '8349545'), + (4928, 16, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'O4ZrpPl4', '8353584'), + (4929, 16, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'O4ZrpPl4', '8368028'), + (4930, 16, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'O4ZrpPl4', '8368029'), + (4931, 16, 3136, 'maybe', '2025-05-21 21:01:37', '2025-12-17 19:46:21', 'O4ZrpPl4', '8374152'), + (4932, 16, 3137, 'maybe', '2025-05-21 21:01:27', '2025-12-17 19:46:21', 'O4ZrpPl4', '8374153'), + (4933, 16, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'O4ZrpPl4', '8388462'), + (4934, 16, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'O4ZrpPl4', '8400273'), + (4935, 16, 3154, 'maybe', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'O4ZrpPl4', '8400274'), + (4936, 16, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'O4ZrpPl4', '8400275'), + (4937, 16, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'O4ZrpPl4', '8400276'), + (4938, 16, 3169, 'attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'O4ZrpPl4', '8404977'), + (4939, 16, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'O4ZrpPl4', '8430783'), + (4940, 16, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'O4ZrpPl4', '8430784'), + (4941, 16, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'O4ZrpPl4', '8430799'), + (4942, 16, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'O4ZrpPl4', '8430800'), + (4943, 16, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'O4ZrpPl4', '8430801'), + (4944, 16, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'O4ZrpPl4', '8438709'), + (4945, 16, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'O4ZrpPl4', '8457738'), + (4946, 16, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'O4ZrpPl4', '8459566'), + (4947, 16, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'O4ZrpPl4', '8459567'), + (4948, 16, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'O4ZrpPl4', '8461032'), + (4949, 16, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'O4ZrpPl4', '8477877'), + (4950, 16, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'O4ZrpPl4', '8485688'), + (4951, 16, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'O4ZrpPl4', '8490587'), + (4952, 16, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'O4ZrpPl4', '8493552'), + (4953, 16, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'O4ZrpPl4', '8493553'), + (4954, 16, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'O4ZrpPl4', '8493554'), + (4955, 16, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'O4ZrpPl4', '8493555'), + (4956, 16, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'O4ZrpPl4', '8493556'), + (4957, 16, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'O4ZrpPl4', '8493557'), + (4958, 16, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'O4ZrpPl4', '8493558'), + (4959, 16, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'O4ZrpPl4', '8493559'), + (4960, 16, 3244, 'maybe', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'O4ZrpPl4', '8493560'), + (4961, 16, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'O4ZrpPl4', '8493561'), + (4962, 16, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'O4ZrpPl4', '8493572'), + (4963, 16, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'O4ZrpPl4', '8540725'), + (4964, 16, 3295, 'maybe', '2025-11-01 15:55:41', '2025-12-17 19:46:14', 'O4ZrpPl4', '8547541'), + (4965, 16, 3300, 'attending', '2025-11-08 21:57:29', '2025-12-17 19:46:14', 'O4ZrpPl4', '8549145'), + (4966, 16, 3302, 'attending', '2025-11-15 10:40:34', '2025-12-17 19:46:14', 'O4ZrpPl4', '8550022'), + (4967, 16, 3304, 'maybe', '2025-11-22 20:50:29', '2025-12-17 19:46:14', 'O4ZrpPl4', '8550024'), + (4968, 16, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'O4ZrpPl4', '8555421'), + (4969, 16, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'O4ZrpPl4', '8555522'), + (4970, 17, 2993, 'not_attending', '2025-03-14 23:27:13', '2025-12-17 19:46:19', 'dOKY6z8d', '7842904'), + (4971, 17, 3012, 'attending', '2025-03-21 15:39:58', '2025-12-17 19:46:19', 'dOKY6z8d', '7866095'), + (4972, 17, 3016, 'attending', '2025-04-18 01:56:37', '2025-12-17 19:46:20', 'dOKY6z8d', '7869187'), + (4973, 17, 3017, 'attending', '2025-03-25 00:56:02', '2025-12-17 19:46:19', 'dOKY6z8d', '7869188'), + (4974, 17, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'dOKY6z8d', '7880977'), + (4975, 17, 3038, 'attending', '2025-03-14 02:55:42', '2025-12-17 19:46:19', 'dOKY6z8d', '7881989'), + (4976, 17, 3055, 'attending', '2025-03-25 00:55:46', '2025-12-17 19:46:19', 'dOKY6z8d', '7888118'), + (4977, 17, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dOKY6z8d', '7888250'), + (4978, 17, 3061, 'attending', '2025-03-31 15:16:32', '2025-12-17 19:46:19', 'dOKY6z8d', '7892590'), + (4979, 17, 3072, 'attending', '2025-04-03 16:16:23', '2025-12-17 19:46:19', 'dOKY6z8d', '7895449'), + (4980, 17, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dOKY6z8d', '7904777'), + (4981, 17, 3090, 'attending', '2025-04-16 15:57:23', '2025-12-17 19:46:20', 'dOKY6z8d', '7914315'), + (4982, 17, 3094, 'attending', '2025-04-30 17:08:46', '2025-12-17 19:46:21', 'dOKY6z8d', '8342292'), + (4983, 17, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dOKY6z8d', '8349164'), + (4984, 17, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dOKY6z8d', '8349545'), + (4985, 17, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dOKY6z8d', '8353584'), + (4986, 17, 3126, 'attending', '2025-05-11 22:16:43', '2025-12-17 19:46:21', 'dOKY6z8d', '8365614'), + (4987, 17, 3131, 'attending', '2025-05-15 16:23:17', '2025-12-17 19:46:21', 'dOKY6z8d', '8368028'), + (4988, 17, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dOKY6z8d', '8368029'), + (4989, 17, 3133, 'attending', '2025-05-28 05:28:46', '2025-12-17 19:46:14', 'dOKY6z8d', '8368030'), + (4990, 17, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dOKY6z8d', '8388462'), + (4991, 17, 3152, 'attending', '2025-06-05 03:55:39', '2025-12-17 19:46:14', 'dOKY6z8d', '8393582'), + (4992, 17, 3153, 'attending', '2025-06-03 13:46:04', '2025-12-17 19:46:15', 'dOKY6z8d', '8400273'), + (4993, 17, 3154, 'attending', '2025-06-26 03:23:38', '2025-12-17 19:46:15', 'dOKY6z8d', '8400274'), + (4994, 17, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dOKY6z8d', '8400275'), + (4995, 17, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dOKY6z8d', '8400276'), + (4996, 17, 3167, 'attending', '2025-06-08 21:48:25', '2025-12-17 19:46:15', 'dOKY6z8d', '8404521'), + (4997, 17, 3168, 'attending', '2025-06-14 18:12:12', '2025-12-17 19:46:15', 'dOKY6z8d', '8404522'), + (4998, 17, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dOKY6z8d', '8404977'), + (4999, 17, 3175, 'attending', '2025-06-16 01:43:03', '2025-12-17 19:46:15', 'dOKY6z8d', '8410815'), + (5000, 17, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dOKY6z8d', '8430783'), + (5001, 17, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dOKY6z8d', '8430784'), + (5002, 17, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dOKY6z8d', '8430799'), + (5003, 17, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dOKY6z8d', '8430800'), + (5004, 17, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dOKY6z8d', '8430801'), + (5005, 17, 3186, 'attending', '2025-07-01 00:33:02', '2025-12-17 19:46:16', 'dOKY6z8d', '8431527'), + (5006, 17, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dOKY6z8d', '8438709'), + (5007, 17, 3192, 'attending', '2025-07-15 16:08:02', '2025-12-17 19:46:17', 'dOKY6z8d', '8456429'), + (5008, 17, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dOKY6z8d', '8457738'), + (5009, 17, 3195, 'attending', '2025-07-31 20:07:49', '2025-12-17 19:46:17', 'dOKY6z8d', '8458118'), + (5010, 17, 3196, 'attending', '2025-08-13 22:14:04', '2025-12-17 19:46:17', 'dOKY6z8d', '8458543'), + (5011, 17, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dOKY6z8d', '8459566'), + (5012, 17, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dOKY6z8d', '8459567'), + (5013, 17, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dOKY6z8d', '8461032'), + (5014, 17, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dOKY6z8d', '8477877'), + (5015, 17, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dOKY6z8d', '8485688'), + (5016, 17, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dOKY6z8d', '8490587'), + (5017, 17, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dOKY6z8d', '8493552'), + (5018, 17, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dOKY6z8d', '8493553'), + (5019, 17, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dOKY6z8d', '8493554'), + (5020, 17, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dOKY6z8d', '8493555'), + (5021, 17, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dOKY6z8d', '8493556'), + (5022, 17, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dOKY6z8d', '8493557'), + (5023, 17, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dOKY6z8d', '8493558'), + (5024, 17, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dOKY6z8d', '8493559'), + (5025, 17, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dOKY6z8d', '8493560'), + (5026, 17, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dOKY6z8d', '8493561'), + (5027, 17, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dOKY6z8d', '8493572'), + (5028, 17, 3258, 'not_attending', '2025-09-03 21:03:02', '2025-12-17 19:46:11', 'dOKY6z8d', '8510285'), + (5029, 17, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dOKY6z8d', '8540725'), + (5030, 17, 3295, 'attending', '2025-11-01 22:10:08', '2025-12-17 19:46:14', 'dOKY6z8d', '8547541'), + (5031, 17, 3300, 'attending', '2025-11-05 21:42:21', '2025-12-17 19:46:14', 'dOKY6z8d', '8549145'), + (5032, 17, 3302, 'attending', '2025-11-11 04:59:32', '2025-12-17 19:46:14', 'dOKY6z8d', '8550022'), + (5033, 17, 3304, 'not_attending', '2025-11-18 16:17:01', '2025-12-17 19:46:14', 'dOKY6z8d', '8550024'), + (5034, 17, 3305, 'attending', '2025-12-05 08:52:04', '2025-12-17 19:46:11', 'dOKY6z8d', '8550025'), + (5035, 17, 3306, 'attending', '2025-12-11 17:42:34', '2025-12-17 19:46:11', 'dOKY6z8d', '8550026'), + (5036, 17, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dOKY6z8d', '8555421'), + (5037, 18, 1480, 'attending', '2022-06-26 00:51:48', '2025-12-17 19:47:19', 'mpQ3lnqA', '5411699'), + (5038, 18, 1482, 'not_attending', '2022-06-25 01:25:48', '2025-12-17 19:47:19', 'mpQ3lnqA', '5412550'), + (5039, 18, 1485, 'attending', '2022-06-24 00:58:33', '2025-12-17 19:47:17', 'mpQ3lnqA', '5416276'), + (5040, 18, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mpQ3lnqA', '5422086'), + (5041, 18, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mpQ3lnqA', '5422406'), + (5042, 18, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mpQ3lnqA', '5424565'), + (5043, 18, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mpQ3lnqA', '5426882'), + (5044, 18, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mpQ3lnqA', '5427083'), + (5045, 18, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mpQ3lnqA', '5441125'), + (5046, 18, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mpQ3lnqA', '5441126'), + (5047, 18, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mpQ3lnqA', '5441128'), + (5048, 18, 1518, 'maybe', '2022-08-31 23:51:20', '2025-12-17 19:47:24', 'mpQ3lnqA', '5441131'), + (5049, 18, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mpQ3lnqA', '5441132'), + (5050, 18, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mpQ3lnqA', '5446643'), + (5051, 18, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'mpQ3lnqA', '5449068'), + (5052, 18, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mpQ3lnqA', '5453325'), + (5053, 18, 1542, 'attending', '2022-07-22 20:42:58', '2025-12-17 19:47:20', 'mpQ3lnqA', '5454064'), + (5054, 18, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mpQ3lnqA', '5454516'), + (5055, 18, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mpQ3lnqA', '5454605'), + (5056, 18, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mpQ3lnqA', '5455037'), + (5057, 18, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mpQ3lnqA', '5461278'), + (5058, 18, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mpQ3lnqA', '5469480'), + (5059, 18, 1563, 'not_attending', '2022-07-31 23:42:55', '2025-12-17 19:47:21', 'mpQ3lnqA', '5469889'), + (5060, 18, 1564, 'attending', '2022-07-31 23:43:01', '2025-12-17 19:47:21', 'mpQ3lnqA', '5469890'), + (5061, 18, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mpQ3lnqA', '5471073'), + (5062, 18, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mpQ3lnqA', '5474663'), + (5063, 18, 1570, 'attending', '2022-08-01 22:53:09', '2025-12-17 19:47:21', 'mpQ3lnqA', '5481830'), + (5064, 18, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mpQ3lnqA', '5482022'), + (5065, 18, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mpQ3lnqA', '5482793'), + (5066, 18, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mpQ3lnqA', '5488912'), + (5067, 18, 1581, 'attending', '2022-08-11 22:17:08', '2025-12-17 19:47:22', 'mpQ3lnqA', '5490302'), + (5068, 18, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mpQ3lnqA', '5492192'), + (5069, 18, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mpQ3lnqA', '5493139'), + (5070, 18, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mpQ3lnqA', '5493200'), + (5071, 18, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mpQ3lnqA', '5502188'), + (5072, 18, 1607, 'attending', '2022-08-20 21:10:46', '2025-12-17 19:47:23', 'mpQ3lnqA', '5504589'), + (5073, 18, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mpQ3lnqA', '5505059'), + (5074, 18, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mpQ3lnqA', '5509055'), + (5075, 18, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mpQ3lnqA', '5512862'), + (5076, 18, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mpQ3lnqA', '5513985'), + (5077, 18, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mpQ3lnqA', '5519981'), + (5078, 18, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mpQ3lnqA', '5522550'), + (5079, 18, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mpQ3lnqA', '5534683'), + (5080, 18, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mpQ3lnqA', '5537735'), + (5081, 18, 1636, 'attending', '2022-09-04 23:29:12', '2025-12-17 19:47:24', 'mpQ3lnqA', '5538454'), + (5082, 18, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mpQ3lnqA', '5540859'), + (5083, 18, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mpQ3lnqA', '5546619'), + (5084, 18, 1647, 'attending', '2022-09-18 20:41:10', '2025-12-17 19:47:11', 'mpQ3lnqA', '5548660'), + (5085, 18, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mpQ3lnqA', '5555245'), + (5086, 18, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mpQ3lnqA', '5557747'), + (5087, 18, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpQ3lnqA', '5560255'), + (5088, 18, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mpQ3lnqA', '5562906'), + (5089, 18, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mpQ3lnqA', '5600604'), + (5090, 18, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpQ3lnqA', '5605544'), + (5091, 18, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'mpQ3lnqA', '5606737'), + (5092, 18, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mpQ3lnqA', '5630960'), + (5093, 18, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mpQ3lnqA', '5630961'), + (5094, 18, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mpQ3lnqA', '5630962'), + (5095, 18, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mpQ3lnqA', '5630966'), + (5096, 18, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mpQ3lnqA', '5630967'), + (5097, 18, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mpQ3lnqA', '5630968'), + (5098, 18, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpQ3lnqA', '5635406'), + (5099, 18, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpQ3lnqA', '5638765'), + (5100, 18, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mpQ3lnqA', '5640097'), + (5101, 18, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mpQ3lnqA', '5640843'), + (5102, 18, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mpQ3lnqA', '5641521'), + (5103, 18, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mpQ3lnqA', '5642818'), + (5104, 18, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mpQ3lnqA', '5652395'), + (5105, 18, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mpQ3lnqA', '5670445'), + (5106, 18, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mpQ3lnqA', '5671637'), + (5107, 18, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mpQ3lnqA', '5672329'), + (5108, 18, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mpQ3lnqA', '5674057'), + (5109, 18, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mpQ3lnqA', '5674060'), + (5110, 18, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mpQ3lnqA', '5677461'), + (5111, 18, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mpQ3lnqA', '5698046'), + (5112, 18, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mpQ3lnqA', '5699760'), + (5113, 18, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mpQ3lnqA', '5741601'), + (5114, 18, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mpQ3lnqA', '5763458'), + (5115, 18, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mpQ3lnqA', '5774172'), + (5116, 18, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mpQ3lnqA', '5818247'), + (5117, 18, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mpQ3lnqA', '5819471'), + (5118, 18, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mpQ3lnqA', '5827739'), + (5119, 18, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mpQ3lnqA', '5844306'), + (5120, 18, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mpQ3lnqA', '5850159'), + (5121, 18, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mpQ3lnqA', '5858999'), + (5122, 18, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mpQ3lnqA', '5871984'), + (5123, 18, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mpQ3lnqA', '5876354'), + (5124, 18, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mpQ3lnqA', '5880939'), + (5125, 18, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mpQ3lnqA', '5880940'), + (5126, 18, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mpQ3lnqA', '5880942'), + (5127, 18, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mpQ3lnqA', '5880943'), + (5128, 18, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mpQ3lnqA', '5887890'), + (5129, 18, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mpQ3lnqA', '5888598'), + (5130, 18, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mpQ3lnqA', '5893260'), + (5131, 18, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mpQ3lnqA', '5899826'), + (5132, 18, 1888, 'maybe', '2023-02-17 22:08:54', '2025-12-17 19:47:07', 'mpQ3lnqA', '5900197'), + (5133, 18, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mpQ3lnqA', '5900199'), + (5134, 18, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mpQ3lnqA', '5900200'), + (5135, 18, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mpQ3lnqA', '5900202'), + (5136, 18, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mpQ3lnqA', '5900203'), + (5137, 18, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mpQ3lnqA', '5901108'), + (5138, 18, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mpQ3lnqA', '5901126'), + (5139, 18, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mpQ3lnqA', '5909655'), + (5140, 18, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mpQ3lnqA', '5910522'), + (5141, 18, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mpQ3lnqA', '5910526'), + (5142, 18, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mpQ3lnqA', '5910528'), + (5143, 18, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mpQ3lnqA', '5916219'), + (5144, 18, 1928, 'maybe', '2023-02-17 22:08:41', '2025-12-17 19:47:07', 'mpQ3lnqA', '5932627'), + (5145, 18, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mpQ3lnqA', '5936234'), + (5146, 18, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mpQ3lnqA', '5958351'), + (5147, 18, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mpQ3lnqA', '5959751'), + (5148, 18, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mpQ3lnqA', '5959755'), + (5149, 18, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mpQ3lnqA', '5960055'), + (5150, 18, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mpQ3lnqA', '5961684'), + (5151, 18, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mpQ3lnqA', '5962132'), + (5152, 18, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mpQ3lnqA', '5962133'), + (5153, 18, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mpQ3lnqA', '5962134'), + (5154, 18, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mpQ3lnqA', '5962317'), + (5155, 18, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mpQ3lnqA', '5962318'), + (5156, 18, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mpQ3lnqA', '5965933'), + (5157, 18, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mpQ3lnqA', '5967014'), + (5158, 18, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mpQ3lnqA', '5972815'), + (5159, 18, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mpQ3lnqA', '5974016'), + (5160, 18, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'mpQ3lnqA', '5975052'), + (5161, 18, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'mpQ3lnqA', '5975054'), + (5162, 18, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mpQ3lnqA', '5981515'), + (5163, 18, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mpQ3lnqA', '5993516'), + (5164, 18, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mpQ3lnqA', '5998939'), + (5165, 18, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mpQ3lnqA', '6028191'), + (5166, 18, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mpQ3lnqA', '6040066'), + (5167, 18, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mpQ3lnqA', '6042717'), + (5168, 18, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mpQ3lnqA', '6044838'), + (5169, 18, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mpQ3lnqA', '6044839'), + (5170, 18, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpQ3lnqA', '6045684'), + (5171, 18, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mpQ3lnqA', '6050104'), + (5172, 18, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mpQ3lnqA', '6053195'), + (5173, 18, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mpQ3lnqA', '6053198'), + (5174, 18, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mpQ3lnqA', '6056085'), + (5175, 18, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mpQ3lnqA', '6056916'), + (5176, 18, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mpQ3lnqA', '6059290'), + (5177, 18, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mpQ3lnqA', '6060328'), + (5178, 18, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mpQ3lnqA', '6061037'), + (5179, 18, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mpQ3lnqA', '6061039'), + (5180, 18, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mpQ3lnqA', '6067245'), + (5181, 18, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mpQ3lnqA', '6068094'), + (5182, 18, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mpQ3lnqA', '6068252'), + (5183, 18, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mpQ3lnqA', '6068253'), + (5184, 18, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mpQ3lnqA', '6068254'), + (5185, 18, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mpQ3lnqA', '6068280'), + (5186, 18, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mpQ3lnqA', '6069093'), + (5187, 18, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mpQ3lnqA', '6072528'), + (5188, 18, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'mpQ3lnqA', '6075556'), + (5189, 18, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mpQ3lnqA', '6079840'), + (5190, 18, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mpQ3lnqA', '6083398'), + (5191, 18, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mpQ3lnqA', '6093504'), + (5192, 18, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mpQ3lnqA', '6097414'), + (5193, 18, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mpQ3lnqA', '6097442'), + (5194, 18, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mpQ3lnqA', '6097684'), + (5195, 18, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mpQ3lnqA', '6098762'), + (5196, 18, 2065, 'maybe', '2023-06-17 14:10:15', '2025-12-17 19:46:49', 'mpQ3lnqA', '6101169'), + (5197, 18, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mpQ3lnqA', '6101361'), + (5198, 18, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mpQ3lnqA', '6101362'), + (5199, 18, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mpQ3lnqA', '6107314'), + (5200, 18, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mpQ3lnqA', '6120034'), + (5201, 18, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mpQ3lnqA', '6136733'), + (5202, 18, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mpQ3lnqA', '6137989'), + (5203, 18, 2103, 'maybe', '2023-06-17 22:54:31', '2025-12-17 19:46:50', 'mpQ3lnqA', '6149451'), + (5204, 18, 2104, 'attending', '2023-06-17 14:10:07', '2025-12-17 19:46:50', 'mpQ3lnqA', '6149499'), + (5205, 18, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mpQ3lnqA', '6150864'), + (5206, 18, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mpQ3lnqA', '6155491'), + (5207, 18, 2113, 'not_attending', '2023-06-23 01:13:01', '2025-12-17 19:46:50', 'mpQ3lnqA', '6156215'), + (5208, 18, 2114, 'attending', '2023-06-26 21:58:13', '2025-12-17 19:46:50', 'mpQ3lnqA', '6158648'), + (5209, 18, 2118, 'attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mpQ3lnqA', '6164417'), + (5210, 18, 2119, 'attending', '2023-06-27 22:45:11', '2025-12-17 19:46:50', 'mpQ3lnqA', '6165461'), + (5211, 18, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mpQ3lnqA', '6166388'), + (5212, 18, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mpQ3lnqA', '6176439'), + (5213, 18, 2122, 'maybe', '2023-06-29 22:53:04', '2025-12-17 19:46:51', 'mpQ3lnqA', '6176476'), + (5214, 18, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'mpQ3lnqA', '6182410'), + (5215, 18, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mpQ3lnqA', '6185812'), + (5216, 18, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mpQ3lnqA', '6187651'), + (5217, 18, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mpQ3lnqA', '6187963'), + (5218, 18, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mpQ3lnqA', '6187964'), + (5219, 18, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mpQ3lnqA', '6187966'), + (5220, 18, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mpQ3lnqA', '6187967'), + (5221, 18, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mpQ3lnqA', '6187969'), + (5222, 18, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mpQ3lnqA', '6334878'), + (5223, 18, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mpQ3lnqA', '6337236'), + (5224, 18, 2155, 'attending', '2023-07-14 00:55:45', '2025-12-17 19:46:53', 'mpQ3lnqA', '6337970'), + (5225, 18, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mpQ3lnqA', '6338308'), + (5226, 18, 2157, 'not_attending', '2023-07-12 21:56:12', '2025-12-17 19:46:52', 'mpQ3lnqA', '6338342'), + (5227, 18, 2159, 'not_attending', '2023-07-20 01:58:28', '2025-12-17 19:46:53', 'mpQ3lnqA', '6338355'), + (5228, 18, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mpQ3lnqA', '6341710'), + (5229, 18, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mpQ3lnqA', '6342044'), + (5230, 18, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mpQ3lnqA', '6342298'), + (5231, 18, 2169, 'attending', '2023-07-20 01:58:07', '2025-12-17 19:46:53', 'mpQ3lnqA', '6342306'), + (5232, 18, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mpQ3lnqA', '6343294'), + (5233, 18, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mpQ3lnqA', '6347034'), + (5234, 18, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mpQ3lnqA', '6347056'), + (5235, 18, 2179, 'not_attending', '2023-08-03 19:20:52', '2025-12-17 19:46:54', 'mpQ3lnqA', '6347591'), + (5236, 18, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mpQ3lnqA', '6353830'), + (5237, 18, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mpQ3lnqA', '6353831'), + (5238, 18, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mpQ3lnqA', '6357867'), + (5239, 18, 2190, 'not_attending', '2023-08-06 13:01:55', '2025-12-17 19:46:55', 'mpQ3lnqA', '6357892'), + (5240, 18, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mpQ3lnqA', '6358652'), + (5241, 18, 2193, 'attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'mpQ3lnqA', '6358668'), + (5242, 18, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'mpQ3lnqA', '6358669'), + (5243, 18, 2199, 'attending', '2023-08-11 02:58:08', '2025-12-17 19:46:55', 'mpQ3lnqA', '6359849'), + (5244, 18, 2200, 'attending', '2023-08-06 12:59:32', '2025-12-17 19:46:55', 'mpQ3lnqA', '6359850'), + (5245, 18, 2208, 'attending', '2023-08-09 13:05:47', '2025-12-17 19:46:54', 'mpQ3lnqA', '6361709'), + (5246, 18, 2209, 'attending', '2023-08-23 09:50:34', '2025-12-17 19:46:55', 'mpQ3lnqA', '6361710'), + (5247, 18, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mpQ3lnqA', '6361711'), + (5248, 18, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mpQ3lnqA', '6361712'), + (5249, 18, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mpQ3lnqA', '6361713'), + (5250, 18, 2213, 'attending', '2023-08-09 17:36:01', '2025-12-17 19:46:55', 'mpQ3lnqA', '6362935'), + (5251, 18, 2220, 'maybe', '2023-09-03 21:52:24', '2025-12-17 19:46:56', 'mpQ3lnqA', '6367310'), + (5252, 18, 2229, 'attending', '2023-08-20 19:13:13', '2025-12-17 19:46:55', 'mpQ3lnqA', '6373787'), + (5253, 18, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mpQ3lnqA', '6382573'), + (5254, 18, 2238, 'attending', '2023-09-01 17:34:26', '2025-12-17 19:46:56', 'mpQ3lnqA', '6387266'), + (5255, 18, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mpQ3lnqA', '6388604'), + (5256, 18, 2247, 'attending', '2023-09-05 19:39:10', '2025-12-17 19:46:56', 'mpQ3lnqA', '6394628'), + (5257, 18, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mpQ3lnqA', '6394629'), + (5258, 18, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mpQ3lnqA', '6394631'), + (5259, 18, 2251, 'maybe', '2023-09-05 20:31:49', '2025-12-17 19:46:56', 'mpQ3lnqA', '6395182'), + (5260, 18, 2263, 'not_attending', '2023-09-27 23:19:10', '2025-12-17 19:46:45', 'mpQ3lnqA', '6429351'), + (5261, 18, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mpQ3lnqA', '6440863'), + (5262, 18, 2270, 'attending', '2023-10-10 22:41:41', '2025-12-17 19:46:46', 'mpQ3lnqA', '6443067'), + (5263, 18, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mpQ3lnqA', '6445440'), + (5264, 18, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mpQ3lnqA', '6453951'), + (5265, 18, 2278, 'attending', '2023-10-08 16:28:22', '2025-12-17 19:46:45', 'mpQ3lnqA', '6455213'), + (5266, 18, 2280, 'attending', '2023-10-10 14:22:20', '2025-12-17 19:46:46', 'mpQ3lnqA', '6455470'), + (5267, 18, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mpQ3lnqA', '6461696'), + (5268, 18, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mpQ3lnqA', '6462129'), + (5269, 18, 2290, 'attending', '2023-10-18 22:18:47', '2025-12-17 19:46:46', 'mpQ3lnqA', '6462214'), + (5270, 18, 2292, 'attending', '2023-10-30 20:55:44', '2025-12-17 19:46:47', 'mpQ3lnqA', '6462216'), + (5271, 18, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mpQ3lnqA', '6463218'), + (5272, 18, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mpQ3lnqA', '6472181'), + (5273, 18, 2300, 'maybe', '2023-10-22 18:55:39', '2025-12-17 19:46:47', 'mpQ3lnqA', '6472185'), + (5274, 18, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mpQ3lnqA', '6482693'), + (5275, 18, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mpQ3lnqA', '6484200'), + (5276, 18, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mpQ3lnqA', '6484680'), + (5277, 18, 2310, 'maybe', '2023-10-24 21:16:12', '2025-12-17 19:46:47', 'mpQ3lnqA', '6487709'), + (5278, 18, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mpQ3lnqA', '6507741'), + (5279, 18, 2319, 'attending', '2023-10-30 20:55:27', '2025-12-17 19:46:47', 'mpQ3lnqA', '6508567'), + (5280, 18, 2322, 'not_attending', '2023-11-17 11:37:39', '2025-12-17 19:46:48', 'mpQ3lnqA', '6514659'), + (5281, 18, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mpQ3lnqA', '6514660'), + (5282, 18, 2325, 'attending', '2023-12-16 15:00:23', '2025-12-17 19:46:36', 'mpQ3lnqA', '6514663'), + (5283, 18, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mpQ3lnqA', '6519103'), + (5284, 18, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mpQ3lnqA', '6535681'), + (5285, 18, 2338, 'attending', '2023-11-25 15:46:12', '2025-12-17 19:46:48', 'mpQ3lnqA', '6538868'), + (5286, 18, 2341, 'maybe', '2023-11-12 21:12:48', '2025-12-17 19:46:48', 'mpQ3lnqA', '6543263'), + (5287, 18, 2347, 'attending', '2023-11-19 16:33:58', '2025-12-17 19:46:48', 'mpQ3lnqA', '6583053'), + (5288, 18, 2351, 'not_attending', '2023-11-21 02:07:08', '2025-12-17 19:46:48', 'mpQ3lnqA', '6584747'), + (5289, 18, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mpQ3lnqA', '6587097'), + (5290, 18, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mpQ3lnqA', '6609022'), + (5291, 18, 2368, 'maybe', '2023-12-12 11:09:45', '2025-12-17 19:46:36', 'mpQ3lnqA', '6621445'), + (5292, 18, 2370, 'maybe', '2023-12-14 00:43:29', '2025-12-17 19:46:36', 'mpQ3lnqA', '6623765'), + (5293, 18, 2372, 'maybe', '2023-12-16 00:40:25', '2025-12-17 19:46:36', 'mpQ3lnqA', '6628243'), + (5294, 18, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mpQ3lnqA', '6632757'), + (5295, 18, 2378, 'maybe', '2023-12-29 20:14:02', '2025-12-17 19:46:37', 'mpQ3lnqA', '6644006'), + (5296, 18, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mpQ3lnqA', '6644187'), + (5297, 18, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mpQ3lnqA', '6648951'), + (5298, 18, 2387, 'attending', '2024-01-04 03:43:39', '2025-12-17 19:46:37', 'mpQ3lnqA', '6648952'), + (5299, 18, 2388, 'not_attending', '2024-01-03 02:11:35', '2025-12-17 19:46:37', 'mpQ3lnqA', '6649244'), + (5300, 18, 2392, 'attending', '2024-01-08 21:22:16', '2025-12-17 19:46:37', 'mpQ3lnqA', '6654412'), + (5301, 18, 2393, 'not_attending', '2024-01-12 04:13:38', '2025-12-17 19:46:38', 'mpQ3lnqA', '6654468'), + (5302, 18, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mpQ3lnqA', '6655401'), + (5303, 18, 2399, 'not_attending', '2024-01-13 15:34:02', '2025-12-17 19:46:38', 'mpQ3lnqA', '6657583'), + (5304, 18, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mpQ3lnqA', '6661585'), + (5305, 18, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mpQ3lnqA', '6661588'), + (5306, 18, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mpQ3lnqA', '6661589'), + (5307, 18, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mpQ3lnqA', '6699906'), + (5308, 18, 2408, 'attending', '2024-01-26 11:46:01', '2025-12-17 19:46:40', 'mpQ3lnqA', '6699907'), + (5309, 18, 2409, 'attending', '2024-02-02 18:06:18', '2025-12-17 19:46:41', 'mpQ3lnqA', '6699909'), + (5310, 18, 2410, 'attending', '2024-02-06 20:52:17', '2025-12-17 19:46:41', 'mpQ3lnqA', '6699911'), + (5311, 18, 2411, 'not_attending', '2024-02-16 01:39:50', '2025-12-17 19:46:42', 'mpQ3lnqA', '6699913'), + (5312, 18, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mpQ3lnqA', '6701109'), + (5313, 18, 2417, 'attending', '2024-01-18 02:17:15', '2025-12-17 19:46:40', 'mpQ3lnqA', '6701905'), + (5314, 18, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'mpQ3lnqA', '6704561'), + (5315, 18, 2422, 'maybe', '2024-01-24 17:54:11', '2025-12-17 19:46:40', 'mpQ3lnqA', '6704650'), + (5316, 18, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mpQ3lnqA', '6705219'), + (5317, 18, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'mpQ3lnqA', '6708410'), + (5318, 18, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mpQ3lnqA', '6710153'), + (5319, 18, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mpQ3lnqA', '6711552'), + (5320, 18, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'mpQ3lnqA', '6711553'), + (5321, 18, 2435, 'maybe', '2024-01-27 17:25:27', '2025-12-17 19:46:41', 'mpQ3lnqA', '6721547'), + (5322, 18, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mpQ3lnqA', '6722688'), + (5323, 18, 2438, 'maybe', '2024-02-03 23:55:23', '2025-12-17 19:46:41', 'mpQ3lnqA', '6730201'), + (5324, 18, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mpQ3lnqA', '6730620'), + (5325, 18, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mpQ3lnqA', '6730642'), + (5326, 18, 2441, 'not_attending', '2024-02-01 02:16:05', '2025-12-17 19:46:41', 'mpQ3lnqA', '6731263'), + (5327, 18, 2453, 'attending', '2024-02-08 02:25:59', '2025-12-17 19:46:42', 'mpQ3lnqA', '6740364'), + (5328, 18, 2454, 'maybe', '2024-02-08 02:25:50', '2025-12-17 19:46:42', 'mpQ3lnqA', '6740921'), + (5329, 18, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mpQ3lnqA', '6743829'), + (5330, 18, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mpQ3lnqA', '7030380'), + (5331, 18, 2469, 'maybe', '2024-02-16 23:15:26', '2025-12-17 19:46:42', 'mpQ3lnqA', '7030632'), + (5332, 18, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mpQ3lnqA', '7033677'), + (5333, 18, 2473, 'attending', '2024-02-20 21:28:02', '2025-12-17 19:46:43', 'mpQ3lnqA', '7033724'), + (5334, 18, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mpQ3lnqA', '7035415'), + (5335, 18, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mpQ3lnqA', '7044715'), + (5336, 18, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mpQ3lnqA', '7050318'), + (5337, 18, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mpQ3lnqA', '7050319'), + (5338, 18, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mpQ3lnqA', '7050322'), + (5339, 18, 2495, 'not_attending', '2024-03-02 22:26:20', '2025-12-17 19:46:32', 'mpQ3lnqA', '7052982'), + (5340, 18, 2498, 'attending', '2024-03-19 00:41:20', '2025-12-17 19:46:33', 'mpQ3lnqA', '7057662'), + (5341, 18, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mpQ3lnqA', '7057804'), + (5342, 18, 2500, 'attending', '2024-03-06 02:23:17', '2025-12-17 19:46:43', 'mpQ3lnqA', '7058603'), + (5343, 18, 2502, 'maybe', '2024-03-06 02:23:05', '2025-12-17 19:46:33', 'mpQ3lnqA', '7061202'), + (5344, 18, 2503, 'not_attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'mpQ3lnqA', '7062500'), + (5345, 18, 2504, 'maybe', '2024-03-22 17:22:54', '2025-12-17 19:46:33', 'mpQ3lnqA', '7063296'), + (5346, 18, 2505, 'maybe', '2024-03-19 23:18:05', '2025-12-17 19:46:33', 'mpQ3lnqA', '7069163'), + (5347, 18, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mpQ3lnqA', '7072824'), + (5348, 18, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mpQ3lnqA', '7074348'), + (5349, 18, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mpQ3lnqA', '7074364'), + (5350, 18, 2526, 'maybe', '2024-07-30 15:00:19', '2025-12-17 19:46:31', 'mpQ3lnqA', '7074366'), + (5351, 18, 2532, 'maybe', '2024-09-04 02:35:32', '2025-12-17 19:46:32', 'mpQ3lnqA', '7074383'), + (5352, 18, 2534, 'maybe', '2024-03-13 21:54:44', '2025-12-17 19:46:32', 'mpQ3lnqA', '7076875'), + (5353, 18, 2536, 'not_attending', '2024-03-15 00:39:32', '2025-12-17 19:46:33', 'mpQ3lnqA', '7077689'), + (5354, 18, 2537, 'attending', '2024-03-23 14:29:54', '2025-12-17 19:46:33', 'mpQ3lnqA', '7085484'), + (5355, 18, 2538, 'not_attending', '2024-03-19 00:41:42', '2025-12-17 19:46:33', 'mpQ3lnqA', '7085485'), + (5356, 18, 2539, 'not_attending', '2024-04-06 19:34:40', '2025-12-17 19:46:33', 'mpQ3lnqA', '7085486'), + (5357, 18, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mpQ3lnqA', '7089267'), + (5358, 18, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mpQ3lnqA', '7098747'), + (5359, 18, 2551, 'not_attending', '2024-03-30 21:59:26', '2025-12-17 19:46:33', 'mpQ3lnqA', '7109912'), + (5360, 18, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mpQ3lnqA', '7113468'), + (5361, 18, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mpQ3lnqA', '7114856'), + (5362, 18, 2555, 'maybe', '2024-03-31 10:53:42', '2025-12-17 19:46:34', 'mpQ3lnqA', '7114951'), + (5363, 18, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mpQ3lnqA', '7114955'), + (5364, 18, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mpQ3lnqA', '7114956'), + (5365, 18, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mpQ3lnqA', '7114957'), + (5366, 18, 2564, 'attending', '2024-04-06 19:34:56', '2025-12-17 19:46:33', 'mpQ3lnqA', '7134735'), + (5367, 18, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mpQ3lnqA', '7153615'), + (5368, 18, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mpQ3lnqA', '7159484'), + (5369, 18, 2582, 'maybe', '2024-04-15 18:40:20', '2025-12-17 19:46:34', 'mpQ3lnqA', '7169765'), + (5370, 18, 2583, 'maybe', '2024-04-15 18:40:01', '2025-12-17 19:46:34', 'mpQ3lnqA', '7172946'), + (5371, 18, 2585, 'attending', '2024-04-21 15:44:02', '2025-12-17 19:46:34', 'mpQ3lnqA', '7175828'), + (5372, 18, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mpQ3lnqA', '7178446'), + (5373, 18, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mpQ3lnqA', '7220467'), + (5374, 18, 2603, 'maybe', '2024-05-15 12:19:08', '2025-12-17 19:46:35', 'mpQ3lnqA', '7225669'), + (5375, 18, 2604, 'attending', '2024-05-27 23:30:59', '2025-12-17 19:46:36', 'mpQ3lnqA', '7225670'), + (5376, 18, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mpQ3lnqA', '7240354'), + (5377, 18, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mpQ3lnqA', '7251633'), + (5378, 18, 2630, 'not_attending', '2024-05-16 22:52:58', '2025-12-17 19:46:35', 'mpQ3lnqA', '7264801'), + (5379, 18, 2632, 'maybe', '2024-05-14 20:15:37', '2025-12-17 19:46:35', 'mpQ3lnqA', '7269123'), + (5380, 18, 2655, 'attending', '2024-05-27 13:57:01', '2025-12-17 19:46:35', 'mpQ3lnqA', '7291225'), + (5381, 18, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mpQ3lnqA', '7302674'), + (5382, 18, 2671, 'maybe', '2024-06-09 21:50:46', '2025-12-17 19:46:28', 'mpQ3lnqA', '7318256'), + (5383, 18, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mpQ3lnqA', '7324073'), + (5384, 18, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mpQ3lnqA', '7324074'), + (5385, 18, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mpQ3lnqA', '7324075'), + (5386, 18, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mpQ3lnqA', '7324078'), + (5387, 18, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mpQ3lnqA', '7324082'), + (5388, 18, 2699, 'attending', '2024-06-12 14:48:30', '2025-12-17 19:46:28', 'mpQ3lnqA', '7324385'), + (5389, 18, 2706, 'attending', '2024-06-18 20:49:14', '2025-12-17 19:46:28', 'mpQ3lnqA', '7324947'), + (5390, 18, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mpQ3lnqA', '7331457'), + (5391, 18, 2724, 'attending', '2024-06-26 21:30:50', '2025-12-17 19:46:29', 'mpQ3lnqA', '7332562'), + (5392, 18, 2737, 'attending', '2024-06-30 15:09:22', '2025-12-17 19:46:29', 'mpQ3lnqA', '7344070'), + (5393, 18, 2742, 'attending', '2024-07-03 15:28:33', '2025-12-17 19:46:29', 'mpQ3lnqA', '7345167'), + (5394, 18, 2746, 'attending', '2024-07-08 21:52:03', '2025-12-17 19:46:29', 'mpQ3lnqA', '7348713'), + (5395, 18, 2747, 'not_attending', '2024-07-15 14:00:23', '2025-12-17 19:46:30', 'mpQ3lnqA', '7353587'), + (5396, 18, 2751, 'attending', '2024-07-07 21:25:19', '2025-12-17 19:46:29', 'mpQ3lnqA', '7355530'), + (5397, 18, 2752, 'attending', '2024-07-07 21:27:57', '2025-12-17 19:46:29', 'mpQ3lnqA', '7355531'), + (5398, 18, 2763, 'attending', '2024-07-15 14:00:05', '2025-12-17 19:46:30', 'mpQ3lnqA', '7363594'), + (5399, 18, 2766, 'attending', '2024-07-30 15:00:06', '2025-12-17 19:46:30', 'mpQ3lnqA', '7363643'), + (5400, 18, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mpQ3lnqA', '7368606'), + (5401, 18, 2781, 'maybe', '2024-07-28 18:45:37', '2025-12-17 19:46:30', 'mpQ3lnqA', '7373194'), + (5402, 18, 2786, 'attending', '2024-08-07 01:16:40', '2025-12-17 19:46:31', 'mpQ3lnqA', '7381403'), + (5403, 18, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mpQ3lnqA', '7397462'), + (5404, 18, 2802, 'attending', '2024-08-27 23:43:41', '2025-12-17 19:46:32', 'mpQ3lnqA', '7397463'), + (5405, 18, 2806, 'maybe', '2024-09-16 12:55:52', '2025-12-17 19:46:25', 'mpQ3lnqA', '7404888'), + (5406, 18, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mpQ3lnqA', '7424275'), + (5407, 18, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mpQ3lnqA', '7424276'), + (5408, 18, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mpQ3lnqA', '7432751'), + (5409, 18, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mpQ3lnqA', '7432752'), + (5410, 18, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mpQ3lnqA', '7432753'), + (5411, 18, 2827, 'maybe', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432754'), + (5412, 18, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432755'), + (5413, 18, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432756'), + (5414, 18, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432758'), + (5415, 18, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mpQ3lnqA', '7432759'), + (5416, 18, 2832, 'attending', '2024-09-09 22:09:48', '2025-12-17 19:46:24', 'mpQ3lnqA', '7433324'), + (5417, 18, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mpQ3lnqA', '7433834'), + (5418, 18, 2839, 'maybe', '2024-09-16 12:56:02', '2025-12-17 19:46:25', 'mpQ3lnqA', '7439262'), + (5419, 18, 2841, 'maybe', '2024-09-16 12:55:28', '2025-12-17 19:46:25', 'mpQ3lnqA', '7444444'), + (5420, 18, 2842, 'maybe', '2024-09-19 11:37:16', '2025-12-17 19:46:25', 'mpQ3lnqA', '7446133'), + (5421, 18, 2850, 'maybe', '2024-09-25 12:13:51', '2025-12-17 19:46:25', 'mpQ3lnqA', '7457153'), + (5422, 18, 2856, 'maybe', '2024-10-07 14:05:14', '2025-12-17 19:46:26', 'mpQ3lnqA', '7469386'), + (5423, 18, 2858, 'not_attending', '2024-10-15 20:03:41', '2025-12-17 19:46:26', 'mpQ3lnqA', '7469388'), + (5424, 18, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mpQ3lnqA', '7470197'), + (5425, 18, 2878, 'maybe', '2024-10-15 20:04:00', '2025-12-17 19:46:26', 'mpQ3lnqA', '7633857'), + (5426, 18, 2882, 'maybe', '2024-10-18 01:00:54', '2025-12-17 19:46:26', 'mpQ3lnqA', '7644822'), + (5427, 18, 2883, 'maybe', '2024-10-18 13:32:59', '2025-12-17 19:46:26', 'mpQ3lnqA', '7649157'), + (5428, 18, 2892, 'maybe', '2024-10-28 23:37:10', '2025-12-17 19:46:26', 'mpQ3lnqA', '7672064'), + (5429, 18, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mpQ3lnqA', '7685613'), + (5430, 18, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mpQ3lnqA', '7688194'), + (5431, 18, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mpQ3lnqA', '7688196'), + (5432, 18, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mpQ3lnqA', '7688289'), + (5433, 18, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mpQ3lnqA', '7692763'), + (5434, 18, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mpQ3lnqA', '7697552'), + (5435, 18, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mpQ3lnqA', '7699878'), + (5436, 18, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mpQ3lnqA', '7704043'), + (5437, 18, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mpQ3lnqA', '7712467'), + (5438, 18, 2925, 'attending', '2024-12-13 18:15:42', '2025-12-17 19:46:21', 'mpQ3lnqA', '7713584'), + (5439, 18, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mpQ3lnqA', '7713585'), + (5440, 18, 2927, 'attending', '2024-12-09 03:08:39', '2025-12-17 19:46:22', 'mpQ3lnqA', '7713586'), + (5441, 18, 2928, 'maybe', '2024-12-02 15:15:57', '2025-12-17 19:46:28', 'mpQ3lnqA', '7718132'), + (5442, 18, 2930, 'maybe', '2024-12-09 03:08:10', '2025-12-17 19:46:21', 'mpQ3lnqA', '7724554'), + (5443, 18, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mpQ3lnqA', '7738518'), + (5444, 18, 2959, 'attending', '2024-12-21 18:28:21', '2025-12-17 19:46:22', 'mpQ3lnqA', '7747388'), + (5445, 18, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mpQ3lnqA', '7750636'), + (5446, 18, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mpQ3lnqA', '7796540'), + (5447, 18, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mpQ3lnqA', '7796541'), + (5448, 18, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mpQ3lnqA', '7796542'), + (5449, 18, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mpQ3lnqA', '7825913'), + (5450, 18, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mpQ3lnqA', '7826209'), + (5451, 18, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mpQ3lnqA', '7834742'), + (5452, 18, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mpQ3lnqA', '7842108'), + (5453, 18, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mpQ3lnqA', '7842902'), + (5454, 18, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mpQ3lnqA', '7842903'), + (5455, 18, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mpQ3lnqA', '7842904'), + (5456, 18, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mpQ3lnqA', '7842905'), + (5457, 18, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mpQ3lnqA', '7855719'), + (5458, 18, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mpQ3lnqA', '7860683'), + (5459, 18, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mpQ3lnqA', '7860684'), + (5460, 18, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mpQ3lnqA', '7866095'), + (5461, 18, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mpQ3lnqA', '7869170'), + (5462, 18, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mpQ3lnqA', '7869188'), + (5463, 18, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mpQ3lnqA', '7869201'), + (5464, 18, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mpQ3lnqA', '7877465'), + (5465, 18, 3053, 'maybe', '2025-03-23 20:46:51', '2025-12-17 19:46:19', 'mpQ3lnqA', '7884030'), + (5466, 18, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mpQ3lnqA', '7888250'), + (5467, 18, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mpQ3lnqA', '7904777'), + (5468, 18, 3096, 'maybe', '2025-04-24 16:29:02', '2025-12-17 19:46:20', 'mpQ3lnqA', '8342987'), + (5469, 18, 3097, 'attending', '2025-04-24 16:29:35', '2025-12-17 19:46:20', 'mpQ3lnqA', '8342993'), + (5470, 18, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mpQ3lnqA', '8349164'), + (5471, 18, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mpQ3lnqA', '8349545'), + (5472, 18, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mpQ3lnqA', '8353584'), + (5473, 18, 3125, 'maybe', '2025-05-13 15:44:18', '2025-12-17 19:46:21', 'mpQ3lnqA', '8364293'), + (5474, 18, 3126, 'attending', '2025-05-13 15:02:16', '2025-12-17 19:46:21', 'mpQ3lnqA', '8365614'), + (5475, 18, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mpQ3lnqA', '8368028'), + (5476, 18, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mpQ3lnqA', '8368029'), + (5477, 18, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mpQ3lnqA', '8388462'), + (5478, 18, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mpQ3lnqA', '8400273'), + (5479, 18, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mpQ3lnqA', '8400274'), + (5480, 18, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mpQ3lnqA', '8400275'), + (5481, 18, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mpQ3lnqA', '8400276'), + (5482, 18, 3161, 'maybe', '2025-06-06 00:30:58', '2025-12-17 19:46:15', 'mpQ3lnqA', '8401412'), + (5483, 18, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mpQ3lnqA', '8404977'), + (5484, 18, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mpQ3lnqA', '8430783'), + (5485, 18, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mpQ3lnqA', '8430784'), + (5486, 18, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mpQ3lnqA', '8430799'), + (5487, 18, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mpQ3lnqA', '8430800'), + (5488, 18, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mpQ3lnqA', '8430801'), + (5489, 18, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mpQ3lnqA', '8438709'), + (5490, 18, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mpQ3lnqA', '8457738'), + (5491, 18, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mpQ3lnqA', '8459566'), + (5492, 18, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mpQ3lnqA', '8459567'), + (5493, 18, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mpQ3lnqA', '8461032'), + (5494, 18, 3210, 'attending', '2025-08-25 22:42:05', '2025-12-17 19:46:18', 'mpQ3lnqA', '8471162'), + (5495, 18, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mpQ3lnqA', '8477877'), + (5496, 18, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mpQ3lnqA', '8485688'), + (5497, 18, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mpQ3lnqA', '8490587'), + (5498, 18, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mpQ3lnqA', '8493552'), + (5499, 18, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mpQ3lnqA', '8493553'), + (5500, 18, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mpQ3lnqA', '8493554'), + (5501, 18, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mpQ3lnqA', '8493555'), + (5502, 18, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mpQ3lnqA', '8493556'), + (5503, 18, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mpQ3lnqA', '8493557'), + (5504, 18, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mpQ3lnqA', '8493558'), + (5505, 18, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mpQ3lnqA', '8493559'), + (5506, 18, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mpQ3lnqA', '8493560'), + (5507, 18, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mpQ3lnqA', '8493561'), + (5508, 18, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mpQ3lnqA', '8493572'), + (5509, 18, 3255, 'attending', '2025-08-25 01:42:23', '2025-12-17 19:46:18', 'mpQ3lnqA', '8495106'), + (5510, 18, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mpQ3lnqA', '8540725'), + (5511, 18, 3289, 'maybe', '2025-10-16 16:55:49', '2025-12-17 19:46:14', 'mpQ3lnqA', '8542939'), + (5512, 18, 3293, 'maybe', '2025-10-16 16:55:38', '2025-12-17 19:46:14', 'mpQ3lnqA', '8543836'), + (5513, 18, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mpQ3lnqA', '8555421'), + (5514, 19, 10, 'attending', '2020-03-28 19:47:44', '2025-12-17 19:47:56', 'GAneZjYm', '2958053'), + (5515, 19, 11, 'attending', '2020-03-29 00:51:51', '2025-12-17 19:47:57', 'GAneZjYm', '2958055'), + (5516, 19, 13, 'maybe', '2020-04-06 20:25:33', '2025-12-17 19:47:57', 'GAneZjYm', '2958057'), + (5517, 19, 14, 'maybe', '2020-04-04 18:08:57', '2025-12-17 19:47:57', 'GAneZjYm', '2958058'), + (5518, 19, 28, 'attending', '2020-04-02 17:34:50', '2025-12-17 19:47:56', 'GAneZjYm', '2960421'), + (5519, 19, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'GAneZjYm', '2961309'), + (5520, 19, 30, 'maybe', '2020-04-04 18:08:12', '2025-12-17 19:47:57', 'GAneZjYm', '2961895'), + (5521, 19, 33, 'maybe', '2020-04-04 18:08:32', '2025-12-17 19:47:57', 'GAneZjYm', '2963932'), + (5522, 19, 35, 'attending', '2020-03-29 00:52:19', '2025-12-17 19:47:56', 'GAneZjYm', '2969206'), + (5523, 19, 36, 'attending', '2020-04-04 00:27:06', '2025-12-17 19:47:57', 'GAneZjYm', '2969208'), + (5524, 19, 37, 'not_attending', '2020-03-31 00:09:40', '2025-12-17 19:47:56', 'GAneZjYm', '2969680'), + (5525, 19, 38, 'attending', '2020-04-03 22:48:10', '2025-12-17 19:47:56', 'GAneZjYm', '2969751'), + (5526, 19, 41, 'maybe', '2020-04-16 14:38:25', '2025-12-17 19:47:57', 'GAneZjYm', '2971546'), + (5527, 19, 42, 'maybe', '2020-04-04 18:07:41', '2025-12-17 19:47:57', 'GAneZjYm', '2973471'), + (5528, 19, 44, 'maybe', '2020-04-05 22:36:14', '2025-12-17 19:47:57', 'GAneZjYm', '2974534'), + (5529, 19, 45, 'maybe', '2020-04-06 20:25:22', '2025-12-17 19:47:57', 'GAneZjYm', '2974760'), + (5530, 19, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'GAneZjYm', '2974955'), + (5531, 19, 55, 'maybe', '2020-04-06 20:25:04', '2025-12-17 19:47:57', 'GAneZjYm', '2975384'), + (5532, 19, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'GAneZjYm', '2975385'), + (5533, 19, 57, 'maybe', '2020-04-09 02:55:48', '2025-12-17 19:47:57', 'GAneZjYm', '2976575'), + (5534, 19, 58, 'attending', '2020-04-21 22:54:52', '2025-12-17 19:47:57', 'GAneZjYm', '2977127'), + (5535, 19, 59, 'attending', '2020-05-04 18:11:48', '2025-12-17 19:47:57', 'GAneZjYm', '2977128'), + (5536, 19, 60, 'attending', '2020-04-28 18:48:27', '2025-12-17 19:47:57', 'GAneZjYm', '2977129'), + (5537, 19, 61, 'attending', '2020-04-14 20:06:30', '2025-12-17 19:47:57', 'GAneZjYm', '2977130'), + (5538, 19, 62, 'attending', '2020-05-12 21:11:20', '2025-12-17 19:47:57', 'GAneZjYm', '2977131'), + (5539, 19, 68, 'not_attending', '2020-06-22 06:36:19', '2025-12-17 19:47:58', 'GAneZjYm', '2977137'), + (5540, 19, 70, 'not_attending', '2020-04-10 17:41:10', '2025-12-17 19:47:57', 'GAneZjYm', '2977343'), + (5541, 19, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'GAneZjYm', '2977812'), + (5542, 19, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'GAneZjYm', '2977931'), + (5543, 19, 74, 'attending', '2020-04-14 20:02:10', '2025-12-17 19:47:57', 'GAneZjYm', '2978244'), + (5544, 19, 75, 'attending', '2020-04-19 19:57:32', '2025-12-17 19:47:57', 'GAneZjYm', '2978245'), + (5545, 19, 76, 'attending', '2020-05-01 03:22:48', '2025-12-17 19:47:57', 'GAneZjYm', '2978246'), + (5546, 19, 77, 'attending', '2020-05-06 19:53:56', '2025-12-17 19:47:57', 'GAneZjYm', '2978247'), + (5547, 19, 78, 'attending', '2020-05-15 14:22:26', '2025-12-17 19:47:57', 'GAneZjYm', '2978249'), + (5548, 19, 79, 'attending', '2020-05-28 14:33:58', '2025-12-17 19:47:57', 'GAneZjYm', '2978250'), + (5549, 19, 80, 'attending', '2020-06-06 22:35:56', '2025-12-17 19:47:58', 'GAneZjYm', '2978251'), + (5550, 19, 81, 'attending', '2020-06-13 03:18:40', '2025-12-17 19:47:58', 'GAneZjYm', '2978252'), + (5551, 19, 82, 'maybe', '2020-04-24 18:33:37', '2025-12-17 19:47:57', 'GAneZjYm', '2978433'), + (5552, 19, 83, 'attending', '2020-05-08 22:49:22', '2025-12-17 19:47:57', 'GAneZjYm', '2978438'), + (5553, 19, 84, 'maybe', '2020-04-20 16:24:09', '2025-12-17 19:47:57', 'GAneZjYm', '2980871'), + (5554, 19, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'GAneZjYm', '2981388'), + (5555, 19, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'GAneZjYm', '2986743'), + (5556, 19, 96, 'maybe', '2020-05-03 21:22:06', '2025-12-17 19:47:57', 'GAneZjYm', '2987453'), + (5557, 19, 100, 'attending', '2020-04-20 23:51:24', '2025-12-17 19:47:57', 'GAneZjYm', '2989142'), + (5558, 19, 101, 'attending', '2020-04-23 15:28:22', '2025-12-17 19:47:57', 'GAneZjYm', '2989975'), + (5559, 19, 104, 'not_attending', '2020-04-24 14:20:07', '2025-12-17 19:47:57', 'GAneZjYm', '2991471'), + (5560, 19, 106, 'maybe', '2020-05-01 03:22:46', '2025-12-17 19:47:57', 'GAneZjYm', '2993501'), + (5561, 19, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'GAneZjYm', '2994480'), + (5562, 19, 115, 'attending', '2020-05-14 16:37:23', '2025-12-17 19:47:57', 'GAneZjYm', '3001217'), + (5563, 19, 121, 'not_attending', '2020-05-26 14:12:27', '2025-12-17 19:47:57', 'GAneZjYm', '3023063'), + (5564, 19, 123, 'not_attending', '2020-05-25 22:01:07', '2025-12-17 19:47:57', 'GAneZjYm', '3023729'), + (5565, 19, 133, 'attending', '2020-06-24 22:47:42', '2025-12-17 19:47:58', 'GAneZjYm', '3034321'), + (5566, 19, 135, 'not_attending', '2020-05-26 14:12:24', '2025-12-17 19:47:57', 'GAneZjYm', '3034368'), + (5567, 19, 136, 'not_attending', '2020-05-25 00:06:09', '2025-12-17 19:47:57', 'GAneZjYm', '3035881'), + (5568, 19, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'GAneZjYm', '3049983'), + (5569, 19, 156, 'attending', '2020-09-11 18:57:48', '2025-12-17 19:47:56', 'GAneZjYm', '3058693'), + (5570, 19, 157, 'attending', '2020-09-18 16:23:10', '2025-12-17 19:47:56', 'GAneZjYm', '3058694'), + (5571, 19, 158, 'not_attending', '2020-09-26 02:18:37', '2025-12-17 19:47:52', 'GAneZjYm', '3058695'), + (5572, 19, 159, 'not_attending', '2020-10-03 16:50:43', '2025-12-17 19:47:52', 'GAneZjYm', '3058696'), + (5573, 19, 160, 'not_attending', '2020-10-22 04:06:20', '2025-12-17 19:47:52', 'GAneZjYm', '3058697'), + (5574, 19, 161, 'not_attending', '2020-10-09 20:36:27', '2025-12-17 19:47:52', 'GAneZjYm', '3058698'), + (5575, 19, 162, 'attending', '2020-10-13 03:40:39', '2025-12-17 19:47:52', 'GAneZjYm', '3058699'), + (5576, 19, 164, 'attending', '2020-11-12 00:24:15', '2025-12-17 19:47:54', 'GAneZjYm', '3058701'), + (5577, 19, 165, 'maybe', '2020-11-02 07:05:25', '2025-12-17 19:47:53', 'GAneZjYm', '3058702'), + (5578, 19, 166, 'attending', '2020-11-18 10:23:22', '2025-12-17 19:47:54', 'GAneZjYm', '3058704'), + (5579, 19, 167, 'attending', '2020-11-24 04:06:49', '2025-12-17 19:47:54', 'GAneZjYm', '3058705'), + (5580, 19, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'GAneZjYm', '3058959'), + (5581, 19, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'GAneZjYm', '3067093'), + (5582, 19, 176, 'not_attending', '2020-06-22 06:36:10', '2025-12-17 19:47:58', 'GAneZjYm', '3073192'), + (5583, 19, 181, 'not_attending', '2020-06-20 22:12:34', '2025-12-17 19:47:58', 'GAneZjYm', '3074513'), + (5584, 19, 182, 'attending', '2020-06-22 06:36:52', '2025-12-17 19:47:55', 'GAneZjYm', '3074514'), + (5585, 19, 183, 'not_attending', '2020-06-22 06:36:02', '2025-12-17 19:47:58', 'GAneZjYm', '3075228'), + (5586, 19, 184, 'not_attending', '2020-06-22 06:35:56', '2025-12-17 19:47:58', 'GAneZjYm', '3075262'), + (5587, 19, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'GAneZjYm', '3075456'), + (5588, 19, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'GAneZjYm', '3083791'), + (5589, 19, 187, 'not_attending', '2020-06-27 20:07:37', '2025-12-17 19:47:55', 'GAneZjYm', '3085151'), + (5590, 19, 191, 'attending', '2020-07-09 02:50:33', '2025-12-17 19:47:55', 'GAneZjYm', '3087259'), + (5591, 19, 192, 'attending', '2020-07-18 01:18:15', '2025-12-17 19:47:55', 'GAneZjYm', '3087260'), + (5592, 19, 193, 'not_attending', '2020-07-24 19:37:30', '2025-12-17 19:47:55', 'GAneZjYm', '3087261'), + (5593, 19, 194, 'attending', '2020-07-31 17:47:25', '2025-12-17 19:47:56', 'GAneZjYm', '3087262'), + (5594, 19, 195, 'attending', '2020-08-07 18:49:27', '2025-12-17 19:47:56', 'GAneZjYm', '3087264'), + (5595, 19, 196, 'attending', '2020-08-15 01:29:31', '2025-12-17 19:47:56', 'GAneZjYm', '3087265'), + (5596, 19, 197, 'attending', '2020-08-15 01:29:33', '2025-12-17 19:47:56', 'GAneZjYm', '3087266'), + (5597, 19, 198, 'not_attending', '2020-08-29 04:06:22', '2025-12-17 19:47:56', 'GAneZjYm', '3087267'), + (5598, 19, 199, 'attending', '2020-09-03 19:48:48', '2025-12-17 19:47:56', 'GAneZjYm', '3087268'), + (5599, 19, 200, 'attending', '2020-09-06 16:44:07', '2025-12-17 19:47:56', 'GAneZjYm', '3087269'), + (5600, 19, 201, 'maybe', '2020-06-22 06:36:33', '2025-12-17 19:47:55', 'GAneZjYm', '3088653'), + (5601, 19, 203, 'not_attending', '2020-06-22 06:35:43', '2025-12-17 19:47:58', 'GAneZjYm', '3091624'), + (5602, 19, 205, 'attending', '2020-07-09 21:22:01', '2025-12-17 19:47:55', 'GAneZjYm', '3104804'), + (5603, 19, 206, 'maybe', '2020-07-15 15:23:10', '2025-12-17 19:47:55', 'GAneZjYm', '3104806'), + (5604, 19, 208, 'not_attending', '2020-08-07 02:53:44', '2025-12-17 19:47:56', 'GAneZjYm', '3104808'), + (5605, 19, 209, 'not_attending', '2020-06-29 04:08:14', '2025-12-17 19:47:55', 'GAneZjYm', '3106813'), + (5606, 19, 214, 'not_attending', '2020-07-08 16:42:37', '2025-12-17 19:47:55', 'GAneZjYm', '3124139'), + (5607, 19, 223, 'attending', '2020-09-12 22:01:45', '2025-12-17 19:47:56', 'GAneZjYm', '3129980'), + (5608, 19, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'GAneZjYm', '3132817'), + (5609, 19, 227, 'maybe', '2020-07-16 16:19:40', '2025-12-17 19:47:55', 'GAneZjYm', '3132820'), + (5610, 19, 237, 'maybe', '2020-07-28 21:39:45', '2025-12-17 19:47:55', 'GAneZjYm', '3142085'), + (5611, 19, 268, 'maybe', '2020-07-30 07:49:00', '2025-12-17 19:47:55', 'GAneZjYm', '3153060'), + (5612, 19, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'GAneZjYm', '3155321'), + (5613, 19, 273, 'not_attending', '2020-08-07 02:53:25', '2025-12-17 19:47:56', 'GAneZjYm', '3162006'), + (5614, 19, 277, 'not_attending', '2020-08-07 02:53:34', '2025-12-17 19:47:56', 'GAneZjYm', '3163442'), + (5615, 19, 281, 'attending', '2020-08-07 18:50:16', '2025-12-17 19:47:56', 'GAneZjYm', '3166945'), + (5616, 19, 293, 'not_attending', '2020-08-16 03:34:38', '2025-12-17 19:47:56', 'GAneZjYm', '3172832'), + (5617, 19, 294, 'attending', '2020-08-27 00:46:10', '2025-12-17 19:47:56', 'GAneZjYm', '3172833'), + (5618, 19, 295, 'not_attending', '2020-08-16 03:34:48', '2025-12-17 19:47:56', 'GAneZjYm', '3172834'), + (5619, 19, 296, 'attending', '2020-09-11 22:42:53', '2025-12-17 19:47:56', 'GAneZjYm', '3172876'), + (5620, 19, 298, 'attending', '2020-08-28 20:15:03', '2025-12-17 19:47:56', 'GAneZjYm', '3174556'), + (5621, 19, 304, 'attending', '2020-09-07 19:35:10', '2025-12-17 19:47:56', 'GAneZjYm', '3178916'), + (5622, 19, 308, 'not_attending', '2020-09-03 21:51:27', '2025-12-17 19:47:56', 'GAneZjYm', '3183341'), + (5623, 19, 310, 'attending', '2020-08-23 17:58:06', '2025-12-17 19:47:56', 'GAneZjYm', '3186005'), + (5624, 19, 311, 'maybe', '2020-09-10 21:49:41', '2025-12-17 19:47:56', 'GAneZjYm', '3186057'), + (5625, 19, 317, 'maybe', '2020-08-27 00:45:52', '2025-12-17 19:47:56', 'GAneZjYm', '3191735'), + (5626, 19, 319, 'attending', '2020-08-31 23:13:15', '2025-12-17 19:47:56', 'GAneZjYm', '3194179'), + (5627, 19, 335, 'attending', '2020-09-03 19:55:50', '2025-12-17 19:47:56', 'GAneZjYm', '3200209'), + (5628, 19, 339, 'not_attending', '2020-09-10 00:44:33', '2025-12-17 19:47:56', 'GAneZjYm', '3204469'), + (5629, 19, 340, 'not_attending', '2020-09-18 16:22:56', '2025-12-17 19:47:56', 'GAneZjYm', '3204470'), + (5630, 19, 341, 'maybe', '2020-09-21 16:41:38', '2025-12-17 19:47:52', 'GAneZjYm', '3204471'), + (5631, 19, 342, 'maybe', '2020-09-29 20:46:39', '2025-12-17 19:47:52', 'GAneZjYm', '3204472'), + (5632, 19, 346, 'not_attending', '2020-09-15 21:48:25', '2025-12-17 19:47:56', 'GAneZjYm', '3207515'), + (5633, 19, 348, 'maybe', '2020-09-21 16:42:18', '2025-12-17 19:47:52', 'GAneZjYm', '3209159'), + (5634, 19, 351, 'not_attending', '2020-09-11 22:43:02', '2025-12-17 19:47:56', 'GAneZjYm', '3209257'), + (5635, 19, 355, 'maybe', '2020-09-16 22:37:27', '2025-12-17 19:47:56', 'GAneZjYm', '3212571'), + (5636, 19, 356, 'maybe', '2020-09-16 17:49:52', '2025-12-17 19:47:51', 'GAneZjYm', '3212572'), + (5637, 19, 361, 'maybe', '2020-09-14 18:49:58', '2025-12-17 19:47:56', 'GAneZjYm', '3213323'), + (5638, 19, 362, 'maybe', '2020-09-26 02:18:18', '2025-12-17 19:47:52', 'GAneZjYm', '3214207'), + (5639, 19, 363, 'maybe', '2020-09-21 16:41:56', '2025-12-17 19:47:52', 'GAneZjYm', '3217037'), + (5640, 19, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'GAneZjYm', '3218510'), + (5641, 19, 366, 'attending', '2020-09-21 16:41:05', '2025-12-17 19:47:56', 'GAneZjYm', '3219750'), + (5642, 19, 367, 'attending', '2020-09-21 16:41:20', '2025-12-17 19:47:51', 'GAneZjYm', '3219751'), + (5643, 19, 375, 'maybe', '2020-10-08 23:09:27', '2025-12-17 19:47:52', 'GAneZjYm', '3222825'), + (5644, 19, 385, 'not_attending', '2020-10-03 16:50:50', '2025-12-17 19:47:52', 'GAneZjYm', '3228698'), + (5645, 19, 386, 'not_attending', '2020-10-09 20:36:32', '2025-12-17 19:47:52', 'GAneZjYm', '3228699'), + (5646, 19, 387, 'attending', '2020-10-13 03:40:42', '2025-12-17 19:47:52', 'GAneZjYm', '3228700'), + (5647, 19, 388, 'maybe', '2020-10-22 04:06:26', '2025-12-17 19:47:52', 'GAneZjYm', '3228701'), + (5648, 19, 406, 'attending', '2021-04-01 20:39:00', '2025-12-17 19:47:44', 'GAneZjYm', '3236464'), + (5649, 19, 416, 'maybe', '2020-10-08 23:09:43', '2025-12-17 19:47:52', 'GAneZjYm', '3238073'), + (5650, 19, 420, 'not_attending', '2020-10-15 16:49:07', '2025-12-17 19:47:52', 'GAneZjYm', '3245293'), + (5651, 19, 421, 'maybe', '2020-10-22 04:06:11', '2025-12-17 19:47:52', 'GAneZjYm', '3245294'), + (5652, 19, 422, 'maybe', '2020-10-29 22:23:56', '2025-12-17 19:47:53', 'GAneZjYm', '3245295'), + (5653, 19, 423, 'attending', '2020-11-05 18:42:31', '2025-12-17 19:47:53', 'GAneZjYm', '3245296'), + (5654, 19, 424, 'maybe', '2020-10-12 04:27:20', '2025-12-17 19:47:52', 'GAneZjYm', '3245751'), + (5655, 19, 426, 'maybe', '2020-10-16 17:10:45', '2025-12-17 19:47:52', 'GAneZjYm', '3250232'), + (5656, 19, 429, 'attending', '2020-12-06 05:10:52', '2025-12-17 19:47:54', 'GAneZjYm', '3250523'), + (5657, 19, 431, 'maybe', '2020-10-24 15:03:39', '2025-12-17 19:47:53', 'GAneZjYm', '3253225'), + (5658, 19, 438, 'not_attending', '2020-10-24 15:03:59', '2025-12-17 19:47:53', 'GAneZjYm', '3256163'), + (5659, 19, 439, 'maybe', '2020-10-28 23:54:37', '2025-12-17 19:47:53', 'GAneZjYm', '3256164'), + (5660, 19, 440, 'maybe', '2020-10-22 04:06:49', '2025-12-17 19:47:53', 'GAneZjYm', '3256168'), + (5661, 19, 441, 'attending', '2020-11-12 00:24:17', '2025-12-17 19:47:54', 'GAneZjYm', '3256169'), + (5662, 19, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GAneZjYm', '3263578'), + (5663, 19, 445, 'not_attending', '2020-11-09 03:12:33', '2025-12-17 19:47:54', 'GAneZjYm', '3266138'), + (5664, 19, 446, 'not_attending', '2020-10-26 17:41:58', '2025-12-17 19:47:53', 'GAneZjYm', '3267163'), + (5665, 19, 452, 'maybe', '2020-11-30 01:03:46', '2025-12-17 19:47:54', 'GAneZjYm', '3272981'), + (5666, 19, 456, 'not_attending', '2020-11-17 01:00:40', '2025-12-17 19:47:54', 'GAneZjYm', '3276428'), + (5667, 19, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'GAneZjYm', '3281467'), + (5668, 19, 461, 'not_attending', '2020-11-08 05:11:50', '2025-12-17 19:47:53', 'GAneZjYm', '3281469'), + (5669, 19, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GAneZjYm', '3281470'), + (5670, 19, 464, 'not_attending', '2020-11-24 11:23:40', '2025-12-17 19:47:54', 'GAneZjYm', '3281554'), + (5671, 19, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GAneZjYm', '3281829'), + (5672, 19, 468, 'attending', '2020-11-18 10:23:19', '2025-12-17 19:47:54', 'GAneZjYm', '3285413'), + (5673, 19, 469, 'attending', '2020-11-24 04:06:51', '2025-12-17 19:47:54', 'GAneZjYm', '3285414'), + (5674, 19, 474, 'not_attending', '2020-11-12 00:24:06', '2025-12-17 19:47:54', 'GAneZjYm', '3286570'), + (5675, 19, 479, 'not_attending', '2020-11-19 01:18:18', '2025-12-17 19:47:54', 'GAneZjYm', '3295306'), + (5676, 19, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GAneZjYm', '3297764'), + (5677, 19, 487, 'maybe', '2020-11-29 20:48:18', '2025-12-17 19:47:54', 'GAneZjYm', '3311122'), + (5678, 19, 493, 'attending', '2020-11-29 20:48:22', '2025-12-17 19:47:54', 'GAneZjYm', '3313856'), + (5679, 19, 494, 'not_attending', '2020-11-29 20:48:04', '2025-12-17 19:47:54', 'GAneZjYm', '3313866'), + (5680, 19, 496, 'not_attending', '2020-12-10 18:06:01', '2025-12-17 19:47:54', 'GAneZjYm', '3314269'), + (5681, 19, 497, 'not_attending', '2020-12-09 20:28:20', '2025-12-17 19:47:55', 'GAneZjYm', '3314270'), + (5682, 19, 499, 'not_attending', '2020-12-09 20:28:07', '2025-12-17 19:47:55', 'GAneZjYm', '3314909'), + (5683, 19, 500, 'attending', '2020-12-18 21:48:40', '2025-12-17 19:47:55', 'GAneZjYm', '3314964'), + (5684, 19, 502, 'attending', '2020-12-08 23:19:16', '2025-12-17 19:47:55', 'GAneZjYm', '3323365'), + (5685, 19, 506, 'maybe', '2020-12-12 20:06:14', '2025-12-17 19:47:55', 'GAneZjYm', '3323375'), + (5686, 19, 513, 'attending', '2020-12-19 23:27:24', '2025-12-17 19:47:55', 'GAneZjYm', '3329383'), + (5687, 19, 516, 'maybe', '2020-12-20 23:05:43', '2025-12-17 19:47:48', 'GAneZjYm', '3334530'), + (5688, 19, 517, 'attending', '2021-01-08 00:36:27', '2025-12-17 19:47:48', 'GAneZjYm', '3337137'), + (5689, 19, 526, 'attending', '2020-12-31 00:38:26', '2025-12-17 19:47:48', 'GAneZjYm', '3351539'), + (5690, 19, 528, 'attending', '2021-01-03 03:33:34', '2025-12-17 19:47:48', 'GAneZjYm', '3363022'), + (5691, 19, 532, 'not_attending', '2021-01-08 23:26:05', '2025-12-17 19:47:48', 'GAneZjYm', '3381412'), + (5692, 19, 536, 'attending', '2021-01-08 23:30:54', '2025-12-17 19:47:48', 'GAneZjYm', '3386848'), + (5693, 19, 538, 'maybe', '2021-01-15 00:44:15', '2025-12-17 19:47:48', 'GAneZjYm', '3388151'), + (5694, 19, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GAneZjYm', '3389527'), + (5695, 19, 542, 'not_attending', '2021-01-11 03:30:52', '2025-12-17 19:47:48', 'GAneZjYm', '3395013'), + (5696, 19, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GAneZjYm', '3396499'), + (5697, 19, 548, 'attending', '2021-01-13 02:46:59', '2025-12-17 19:47:48', 'GAneZjYm', '3403650'), + (5698, 19, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GAneZjYm', '3406988'), + (5699, 19, 555, 'attending', '2021-01-22 23:38:35', '2025-12-17 19:47:49', 'GAneZjYm', '3416576'), + (5700, 19, 557, 'attending', '2021-01-21 00:58:09', '2025-12-17 19:47:49', 'GAneZjYm', '3418748'), + (5701, 19, 558, 'not_attending', '2021-01-19 05:21:41', '2025-12-17 19:47:49', 'GAneZjYm', '3418925'), + (5702, 19, 559, 'not_attending', '2021-01-28 08:04:14', '2025-12-17 19:47:49', 'GAneZjYm', '3421439'), + (5703, 19, 568, 'attending', '2021-01-29 04:59:00', '2025-12-17 19:47:50', 'GAneZjYm', '3430267'), + (5704, 19, 571, 'not_attending', '2021-02-13 02:05:10', '2025-12-17 19:47:50', 'GAneZjYm', '3435539'), + (5705, 19, 578, 'attending', '2021-02-03 20:40:21', '2025-12-17 19:47:50', 'GAneZjYm', '3440043'), + (5706, 19, 579, 'attending', '2021-01-30 23:33:10', '2025-12-17 19:47:50', 'GAneZjYm', '3440978'), + (5707, 19, 583, 'not_attending', '2021-02-01 13:33:09', '2025-12-17 19:47:50', 'GAneZjYm', '3449144'), + (5708, 19, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'GAneZjYm', '3468125'), + (5709, 19, 602, 'not_attending', '2021-02-10 06:06:31', '2025-12-17 19:47:50', 'GAneZjYm', '3470303'), + (5710, 19, 603, 'attending', '2021-02-20 17:57:03', '2025-12-17 19:47:50', 'GAneZjYm', '3470304'), + (5711, 19, 604, 'attending', '2021-02-23 05:20:18', '2025-12-17 19:47:50', 'GAneZjYm', '3470305'), + (5712, 19, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GAneZjYm', '3470991'), + (5713, 19, 621, 'maybe', '2021-03-06 08:08:30', '2025-12-17 19:47:51', 'GAneZjYm', '3517815'), + (5714, 19, 622, 'attending', '2021-03-09 08:42:00', '2025-12-17 19:47:51', 'GAneZjYm', '3517816'), + (5715, 19, 623, 'not_attending', '2021-02-27 18:51:13', '2025-12-17 19:47:51', 'GAneZjYm', '3523941'), + (5716, 19, 624, 'attending', '2021-02-27 11:56:57', '2025-12-17 19:47:50', 'GAneZjYm', '3528556'), + (5717, 19, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GAneZjYm', '3533850'), + (5718, 19, 635, 'attending', '2021-04-04 02:58:54', '2025-12-17 19:47:44', 'GAneZjYm', '3534719'), + (5719, 19, 637, 'maybe', '2021-03-18 22:36:47', '2025-12-17 19:47:51', 'GAneZjYm', '3536411'), + (5720, 19, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GAneZjYm', '3536632'), + (5721, 19, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GAneZjYm', '3536656'), + (5722, 19, 641, 'attending', '2021-04-01 22:56:54', '2025-12-17 19:47:44', 'GAneZjYm', '3539916'), + (5723, 19, 642, 'attending', '2021-04-10 16:35:08', '2025-12-17 19:47:44', 'GAneZjYm', '3539917'), + (5724, 19, 643, 'attending', '2021-04-13 08:13:06', '2025-12-17 19:47:45', 'GAneZjYm', '3539918'), + (5725, 19, 644, 'attending', '2021-04-14 07:39:40', '2025-12-17 19:47:45', 'GAneZjYm', '3539919'), + (5726, 19, 645, 'attending', '2021-05-08 21:58:23', '2025-12-17 19:47:46', 'GAneZjYm', '3539920'), + (5727, 19, 646, 'attending', '2021-05-15 12:00:42', '2025-12-17 19:47:46', 'GAneZjYm', '3539921'), + (5728, 19, 647, 'not_attending', '2021-05-22 20:56:02', '2025-12-17 19:47:46', 'GAneZjYm', '3539922'), + (5729, 19, 648, 'attending', '2021-05-29 19:20:58', '2025-12-17 19:47:47', 'GAneZjYm', '3539923'), + (5730, 19, 649, 'attending', '2021-03-18 22:36:35', '2025-12-17 19:47:51', 'GAneZjYm', '3539927'), + (5731, 19, 650, 'attending', '2021-03-27 20:44:20', '2025-12-17 19:47:44', 'GAneZjYm', '3539928'), + (5732, 19, 651, 'attending', '2021-03-09 18:40:32', '2025-12-17 19:47:51', 'GAneZjYm', '3541045'), + (5733, 19, 653, 'attending', '2021-03-06 23:53:56', '2025-12-17 19:47:51', 'GAneZjYm', '3546917'), + (5734, 19, 655, 'attending', '2021-03-12 06:24:54', '2025-12-17 19:47:51', 'GAneZjYm', '3547129'), + (5735, 19, 656, 'attending', '2021-03-18 22:36:37', '2025-12-17 19:47:51', 'GAneZjYm', '3547130'), + (5736, 19, 659, 'attending', '2021-04-06 13:06:27', '2025-12-17 19:47:44', 'GAneZjYm', '3547135'), + (5737, 19, 660, 'attending', '2021-07-08 02:08:25', '2025-12-17 19:47:39', 'GAneZjYm', '3547136'), + (5738, 19, 661, 'attending', '2021-04-01 22:56:59', '2025-12-17 19:47:44', 'GAneZjYm', '3547137'), + (5739, 19, 662, 'attending', '2021-04-14 07:39:44', '2025-12-17 19:47:45', 'GAneZjYm', '3547138'), + (5740, 19, 671, 'not_attending', '2021-07-17 16:07:43', '2025-12-17 19:47:39', 'GAneZjYm', '3547149'), + (5741, 19, 672, 'not_attending', '2021-05-22 20:56:07', '2025-12-17 19:47:46', 'GAneZjYm', '3547150'), + (5742, 19, 674, 'attending', '2021-08-06 06:17:16', '2025-12-17 19:47:41', 'GAneZjYm', '3547152'), + (5743, 19, 676, 'attending', '2021-07-24 01:52:19', '2025-12-17 19:47:40', 'GAneZjYm', '3547154'), + (5744, 19, 679, 'attending', '2021-03-09 09:03:04', '2025-12-17 19:47:44', 'GAneZjYm', '3547168'), + (5745, 19, 705, 'attending', '2021-03-26 03:35:29', '2025-12-17 19:47:44', 'GAneZjYm', '3581895'), + (5746, 19, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GAneZjYm', '3582734'), + (5747, 19, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GAneZjYm', '3583262'), + (5748, 19, 711, 'maybe', '2021-04-01 20:39:12', '2025-12-17 19:47:44', 'GAneZjYm', '3588075'), + (5749, 19, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GAneZjYm', '3619523'), + (5750, 19, 719, 'not_attending', '2021-04-08 04:15:21', '2025-12-17 19:47:44', 'GAneZjYm', '3635405'), + (5751, 19, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GAneZjYm', '3661369'), + (5752, 19, 731, 'not_attending', '2021-04-06 05:12:20', '2025-12-17 19:47:44', 'GAneZjYm', '3674262'), + (5753, 19, 733, 'not_attending', '2021-04-04 20:57:12', '2025-12-17 19:47:44', 'GAneZjYm', '3675473'), + (5754, 19, 735, 'maybe', '2021-04-05 03:04:49', '2025-12-17 19:47:46', 'GAneZjYm', '3677402'), + (5755, 19, 736, 'attending', '2021-04-05 04:02:42', '2025-12-17 19:47:44', 'GAneZjYm', '3677701'), + (5756, 19, 737, 'attending', '2021-04-05 16:42:31', '2025-12-17 19:47:44', 'GAneZjYm', '3679349'), + (5757, 19, 761, 'attending', '2021-05-14 22:40:57', '2025-12-17 19:47:46', 'GAneZjYm', '3716041'), + (5758, 19, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GAneZjYm', '3730212'), + (5759, 19, 777, 'attending', '2021-04-28 12:54:24', '2025-12-17 19:47:46', 'GAneZjYm', '3746248'), + (5760, 19, 783, 'not_attending', '2021-05-01 01:14:18', '2025-12-17 19:47:46', 'GAneZjYm', '3767471'), + (5761, 19, 785, 'attending', '2021-05-15 19:17:13', '2025-12-17 19:47:46', 'GAneZjYm', '3779779'), + (5762, 19, 786, 'not_attending', '2021-05-11 03:55:24', '2025-12-17 19:47:46', 'GAneZjYm', '3780093'), + (5763, 19, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GAneZjYm', '3793156'), + (5764, 19, 794, 'attending', '2021-05-26 23:16:49', '2025-12-17 19:47:47', 'GAneZjYm', '3793538'), + (5765, 19, 812, 'attending', '2021-05-18 01:54:00', '2025-12-17 19:47:46', 'GAneZjYm', '3808031'), + (5766, 19, 822, 'attending', '2021-06-06 09:00:05', '2025-12-17 19:47:47', 'GAneZjYm', '3969986'), + (5767, 19, 823, 'attending', '2021-06-19 20:38:25', '2025-12-17 19:47:48', 'GAneZjYm', '3974109'), + (5768, 19, 827, 'attending', '2021-06-02 04:28:41', '2025-12-17 19:47:47', 'GAneZjYm', '3975311'), + (5769, 19, 828, 'not_attending', '2021-06-12 21:48:15', '2025-12-17 19:47:47', 'GAneZjYm', '3975312'), + (5770, 19, 835, 'attending', '2021-06-06 09:02:38', '2025-12-17 19:47:47', 'GAneZjYm', '3992486'), + (5771, 19, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GAneZjYm', '3994992'), + (5772, 19, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GAneZjYm', '4014338'), + (5773, 19, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GAneZjYm', '4021848'), + (5774, 19, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GAneZjYm', '4136744'), + (5775, 19, 870, 'attending', '2021-07-03 21:20:18', '2025-12-17 19:47:39', 'GAneZjYm', '4136937'), + (5776, 19, 871, 'attending', '2021-07-07 21:07:39', '2025-12-17 19:47:39', 'GAneZjYm', '4136938'), + (5777, 19, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GAneZjYm', '4136947'), + (5778, 19, 884, 'attending', '2021-07-17 06:41:37', '2025-12-17 19:47:42', 'GAneZjYm', '4210314'), + (5779, 19, 885, 'maybe', '2021-06-27 22:30:28', '2025-12-17 19:47:38', 'GAneZjYm', '4222370'), + (5780, 19, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GAneZjYm', '4225444'), + (5781, 19, 897, 'attending', '2021-06-28 22:35:16', '2025-12-17 19:47:38', 'GAneZjYm', '4232132'), + (5782, 19, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GAneZjYm', '4239259'), + (5783, 19, 900, 'attending', '2021-07-21 05:31:09', '2025-12-17 19:47:40', 'GAneZjYm', '4240316'), + (5784, 19, 901, 'attending', '2021-07-31 06:07:55', '2025-12-17 19:47:40', 'GAneZjYm', '4240317'), + (5785, 19, 902, 'attending', '2021-08-06 06:17:13', '2025-12-17 19:47:41', 'GAneZjYm', '4240318'), + (5786, 19, 903, 'attending', '2021-08-11 05:30:09', '2025-12-17 19:47:42', 'GAneZjYm', '4240320'), + (5787, 19, 905, 'attending', '2021-07-07 22:13:48', '2025-12-17 19:47:39', 'GAneZjYm', '4250163'), + (5788, 19, 906, 'attending', '2021-07-10 03:24:17', '2025-12-17 19:47:39', 'GAneZjYm', '4253431'), + (5789, 19, 916, 'not_attending', '2021-07-21 05:23:32', '2025-12-17 19:47:40', 'GAneZjYm', '4273772'), + (5790, 19, 919, 'not_attending', '2021-07-17 16:07:38', '2025-12-17 19:47:39', 'GAneZjYm', '4275957'), + (5791, 19, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GAneZjYm', '4277819'), + (5792, 19, 926, 'not_attending', '2021-08-18 20:37:16', '2025-12-17 19:47:42', 'GAneZjYm', '4297211'), + (5793, 19, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GAneZjYm', '4301723'), + (5794, 19, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GAneZjYm', '4302093'), + (5795, 19, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GAneZjYm', '4304151'), + (5796, 19, 937, 'attending', '2021-07-24 01:52:40', '2025-12-17 19:47:40', 'GAneZjYm', '4306596'), + (5797, 19, 961, 'attending', '2021-08-08 06:10:17', '2025-12-17 19:47:41', 'GAneZjYm', '4345519'), + (5798, 19, 971, 'maybe', '2021-09-08 05:42:32', '2025-12-17 19:47:43', 'GAneZjYm', '4356801'), + (5799, 19, 972, 'maybe', '2021-08-20 22:55:53', '2025-12-17 19:47:42', 'GAneZjYm', '4358025'), + (5800, 19, 973, 'attending', '2021-08-21 21:59:36', '2025-12-17 19:47:42', 'GAneZjYm', '4366186'), + (5801, 19, 974, 'attending', '2021-08-24 01:35:09', '2025-12-17 19:47:42', 'GAneZjYm', '4366187'), + (5802, 19, 979, 'attending', '2021-08-18 19:48:25', '2025-12-17 19:47:42', 'GAneZjYm', '4379085'), + (5803, 19, 990, 'attending', '2021-08-28 22:31:51', '2025-12-17 19:47:43', 'GAneZjYm', '4420735'), + (5804, 19, 991, 'attending', '2021-08-28 22:31:53', '2025-12-17 19:47:43', 'GAneZjYm', '4420738'), + (5805, 19, 992, 'not_attending', '2021-09-15 22:29:34', '2025-12-17 19:47:34', 'GAneZjYm', '4420739'), + (5806, 19, 993, 'attending', '2021-08-28 22:31:56', '2025-12-17 19:47:34', 'GAneZjYm', '4420741'), + (5807, 19, 994, 'attending', '2021-10-02 02:33:57', '2025-12-17 19:47:34', 'GAneZjYm', '4420742'), + (5808, 19, 995, 'attending', '2021-08-28 22:31:57', '2025-12-17 19:47:34', 'GAneZjYm', '4420744'), + (5809, 19, 996, 'attending', '2021-08-28 22:32:00', '2025-12-17 19:47:35', 'GAneZjYm', '4420747'), + (5810, 19, 997, 'attending', '2021-08-28 22:32:02', '2025-12-17 19:47:35', 'GAneZjYm', '4420748'), + (5811, 19, 998, 'attending', '2021-08-28 22:32:04', '2025-12-17 19:47:36', 'GAneZjYm', '4420749'), + (5812, 19, 999, 'not_attending', '2021-08-30 17:32:06', '2025-12-17 19:47:43', 'GAneZjYm', '4421150'), + (5813, 19, 1016, 'not_attending', '2021-09-08 20:26:42', '2025-12-17 19:47:43', 'GAneZjYm', '4441271'), + (5814, 19, 1018, 'not_attending', '2021-09-06 05:42:06', '2025-12-17 19:47:43', 'GAneZjYm', '4448883'), + (5815, 19, 1022, 'attending', '2021-09-15 02:37:56', '2025-12-17 19:47:43', 'GAneZjYm', '4458628'), + (5816, 19, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GAneZjYm', '4461883'), + (5817, 19, 1033, 'not_attending', '2021-09-18 03:09:33', '2025-12-17 19:47:43', 'GAneZjYm', '4486006'), + (5818, 19, 1036, 'attending', '2021-09-22 21:50:49', '2025-12-17 19:47:34', 'GAneZjYm', '4493166'), + (5819, 19, 1040, 'maybe', '2021-12-11 22:42:48', '2025-12-17 19:47:38', 'GAneZjYm', '4496605'), + (5820, 19, 1064, 'attending', '2021-09-21 20:02:43', '2025-12-17 19:47:34', 'GAneZjYm', '4499526'), + (5821, 19, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GAneZjYm', '4508342'), + (5822, 19, 1074, 'attending', '2021-09-29 23:19:19', '2025-12-17 19:47:34', 'GAneZjYm', '4528953'), + (5823, 19, 1077, 'attending', '2021-10-12 19:42:16', '2025-12-17 19:47:34', 'GAneZjYm', '4540903'), + (5824, 19, 1085, 'attending', '2021-12-23 21:31:13', '2025-12-17 19:47:31', 'GAneZjYm', '4568542'), + (5825, 19, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GAneZjYm', '4568602'), + (5826, 19, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GAneZjYm', '4572153'), + (5827, 19, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GAneZjYm', '4585962'), + (5828, 19, 1094, 'not_attending', '2021-10-30 19:11:17', '2025-12-17 19:47:36', 'GAneZjYm', '4587337'), + (5829, 19, 1099, 'attending', '2021-11-06 22:29:46', '2025-12-17 19:47:36', 'GAneZjYm', '4602797'), + (5830, 19, 1102, 'maybe', '2021-11-05 03:18:34', '2025-12-17 19:47:37', 'GAneZjYm', '4612098'), + (5831, 19, 1105, 'maybe', '2021-11-10 22:19:41', '2025-12-17 19:47:36', 'GAneZjYm', '4618567'), + (5832, 19, 1108, 'attending', '2021-11-18 00:27:51', '2025-12-17 19:47:37', 'GAneZjYm', '4632276'), + (5833, 19, 1126, 'maybe', '2021-12-11 21:41:05', '2025-12-17 19:47:38', 'GAneZjYm', '4645687'), + (5834, 19, 1127, 'attending', '2021-11-28 03:30:01', '2025-12-17 19:47:38', 'GAneZjYm', '4645698'), + (5835, 19, 1130, 'attending', '2021-12-04 22:16:29', '2025-12-17 19:47:37', 'GAneZjYm', '4658824'), + (5836, 19, 1132, 'attending', '2021-11-23 00:54:40', '2025-12-17 19:47:37', 'GAneZjYm', '4660657'), + (5837, 19, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GAneZjYm', '4668385'), + (5838, 19, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GAneZjYm', '4694407'), + (5839, 19, 1164, 'attending', '2021-12-29 20:35:55', '2025-12-17 19:47:31', 'GAneZjYm', '4724208'), + (5840, 19, 1165, 'attending', '2021-12-29 20:35:56', '2025-12-17 19:47:31', 'GAneZjYm', '4724210'), + (5841, 19, 1175, 'attending', '2022-01-22 18:42:57', '2025-12-17 19:47:32', 'GAneZjYm', '4736497'), + (5842, 19, 1176, 'attending', '2022-02-05 23:46:32', '2025-12-17 19:47:32', 'GAneZjYm', '4736498'), + (5843, 19, 1177, 'attending', '2022-02-11 05:07:07', '2025-12-17 19:47:32', 'GAneZjYm', '4736499'), + (5844, 19, 1181, 'attending', '2022-03-01 16:20:05', '2025-12-17 19:47:33', 'GAneZjYm', '4736503'), + (5845, 19, 1182, 'attending', '2022-03-08 22:59:22', '2025-12-17 19:47:33', 'GAneZjYm', '4736504'), + (5846, 19, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GAneZjYm', '4746789'), + (5847, 19, 1203, 'attending', '2022-01-22 23:25:18', '2025-12-17 19:47:32', 'GAneZjYm', '4773535'), + (5848, 19, 1204, 'attending', '2022-02-13 21:19:57', '2025-12-17 19:47:32', 'GAneZjYm', '4773576'), + (5849, 19, 1205, 'not_attending', '2022-03-13 19:12:18', '2025-12-17 19:47:33', 'GAneZjYm', '4773577'), + (5850, 19, 1209, 'attending', '2022-01-22 22:50:37', '2025-12-17 19:47:32', 'GAneZjYm', '4776926'), + (5851, 19, 1219, 'attending', '2022-02-02 09:04:00', '2025-12-17 19:47:32', 'GAneZjYm', '4788466'), + (5852, 19, 1232, 'attending', '2022-02-09 23:19:57', '2025-12-17 19:47:32', 'GAneZjYm', '5038850'), + (5853, 19, 1236, 'not_attending', '2022-02-16 23:00:34', '2025-12-17 19:47:32', 'GAneZjYm', '5045826'), + (5854, 19, 1249, 'not_attending', '2022-03-08 22:58:53', '2025-12-17 19:47:33', 'GAneZjYm', '5068530'), + (5855, 19, 1254, 'attending', '2022-03-05 21:39:59', '2025-12-17 19:47:33', 'GAneZjYm', '5129129'), + (5856, 19, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GAneZjYm', '5132533'), + (5857, 19, 1265, 'not_attending', '2022-03-08 22:59:15', '2025-12-17 19:47:33', 'GAneZjYm', '5160862'), + (5858, 19, 1266, 'attending', '2022-03-12 23:18:12', '2025-12-17 19:47:33', 'GAneZjYm', '5166407'), + (5859, 19, 1272, 'not_attending', '2022-03-18 01:37:59', '2025-12-17 19:47:25', 'GAneZjYm', '5186582'), + (5860, 19, 1281, 'not_attending', '2022-04-09 22:14:32', '2025-12-17 19:47:27', 'GAneZjYm', '5190437'), + (5861, 19, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GAneZjYm', '5195095'), + (5862, 19, 1293, 'not_attending', '2022-04-09 16:57:35', '2025-12-17 19:47:27', 'GAneZjYm', '5214641'), + (5863, 19, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GAneZjYm', '5215989'), + (5864, 19, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GAneZjYm', '5223686'), + (5865, 19, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'GAneZjYm', '5227432'), + (5866, 19, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GAneZjYm', '5247467'), + (5867, 19, 1362, 'attending', '2022-04-30 19:57:10', '2025-12-17 19:47:28', 'GAneZjYm', '5260800'), + (5868, 19, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GAneZjYm', '5269930'), + (5869, 19, 1378, 'attending', '2022-05-14 11:13:17', '2025-12-17 19:47:29', 'GAneZjYm', '5271448'), + (5870, 19, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'GAneZjYm', '5271449'), + (5871, 19, 1380, 'not_attending', '2022-05-24 19:44:30', '2025-12-17 19:47:30', 'GAneZjYm', '5271450'), + (5872, 19, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'GAneZjYm', '5276469'), + (5873, 19, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GAneZjYm', '5278159'), + (5874, 19, 1396, 'attending', '2022-05-14 11:13:14', '2025-12-17 19:47:28', 'GAneZjYm', '5281103'), + (5875, 19, 1407, 'not_attending', '2022-06-03 17:38:11', '2025-12-17 19:47:30', 'GAneZjYm', '5363695'), + (5876, 19, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GAneZjYm', '5365960'), + (5877, 19, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'GAneZjYm', '5368973'), + (5878, 19, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GAneZjYm', '5378247'), + (5879, 19, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GAneZjYm', '5389605'), + (5880, 19, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GAneZjYm', '5397265'), + (5881, 19, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'GAneZjYm', '5403967'), + (5882, 19, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GAneZjYm', '5404786'), + (5883, 19, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GAneZjYm', '5405203'), + (5884, 19, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'GAneZjYm', '5411699'), + (5885, 19, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GAneZjYm', '5412550'), + (5886, 19, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GAneZjYm', '5415046'), + (5887, 19, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GAneZjYm', '5422086'), + (5888, 19, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GAneZjYm', '5422406'), + (5889, 19, 1561, 'not_attending', '2022-08-12 22:48:05', '2025-12-17 19:47:22', 'GAneZjYm', '5461278'), + (5890, 19, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GAneZjYm', '5502188'), + (5891, 19, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GAneZjYm', '5505059'), + (5892, 19, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GAneZjYm', '5509055'), + (5893, 19, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GAneZjYm', '5512862'), + (5894, 19, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GAneZjYm', '5513985'), + (5895, 19, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GAneZjYm', '5519981'), + (5896, 19, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GAneZjYm', '5522550'), + (5897, 19, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GAneZjYm', '5534683'), + (5898, 19, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GAneZjYm', '5537735'), + (5899, 19, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GAneZjYm', '5540859'), + (5900, 19, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GAneZjYm', '5546619'), + (5901, 19, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GAneZjYm', '5555245'), + (5902, 19, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GAneZjYm', '5557747'), + (5903, 19, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GAneZjYm', '5560255'), + (5904, 19, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GAneZjYm', '5562906'), + (5905, 19, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GAneZjYm', '5600604'), + (5906, 19, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GAneZjYm', '5605544'), + (5907, 19, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GAneZjYm', '5630960'), + (5908, 19, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GAneZjYm', '5630961'), + (5909, 19, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GAneZjYm', '5630962'), + (5910, 19, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GAneZjYm', '5630966'), + (5911, 19, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GAneZjYm', '5630967'), + (5912, 19, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GAneZjYm', '5630968'), + (5913, 19, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GAneZjYm', '5635406'), + (5914, 19, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GAneZjYm', '5638765'), + (5915, 19, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GAneZjYm', '5640097'), + (5916, 19, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GAneZjYm', '5640843'), + (5917, 19, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GAneZjYm', '5641521'), + (5918, 19, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GAneZjYm', '5642818'), + (5919, 19, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GAneZjYm', '5652395'), + (5920, 19, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GAneZjYm', '5670445'), + (5921, 19, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GAneZjYm', '5671637'), + (5922, 19, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GAneZjYm', '5672329'), + (5923, 19, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GAneZjYm', '5674057'), + (5924, 19, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GAneZjYm', '5674060'), + (5925, 19, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GAneZjYm', '5677461'), + (5926, 19, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GAneZjYm', '5698046'), + (5927, 19, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GAneZjYm', '5699760'), + (5928, 19, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GAneZjYm', '5741601'), + (5929, 19, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GAneZjYm', '5763458'), + (5930, 19, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GAneZjYm', '5774172'), + (5931, 19, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GAneZjYm', '5818247'), + (5932, 19, 1834, 'attending', '2022-12-11 23:56:09', '2025-12-17 19:47:17', 'GAneZjYm', '5819470'), + (5933, 19, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GAneZjYm', '5819471'), + (5934, 19, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GAneZjYm', '5827739'), + (5935, 19, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GAneZjYm', '5844306'), + (5936, 19, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GAneZjYm', '5850159'), + (5937, 19, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GAneZjYm', '5858999'), + (5938, 19, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GAneZjYm', '5871984'), + (5939, 19, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GAneZjYm', '5876354'), + (5940, 19, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GAneZjYm', '5880939'), + (5941, 19, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GAneZjYm', '5880940'), + (5942, 19, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GAneZjYm', '5880942'), + (5943, 19, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GAneZjYm', '5880943'), + (5944, 19, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GAneZjYm', '5887890'), + (5945, 19, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GAneZjYm', '5888598'), + (5946, 19, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GAneZjYm', '5893260'), + (5947, 19, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GAneZjYm', '5899826'), + (5948, 19, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GAneZjYm', '5900199'), + (5949, 19, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GAneZjYm', '5900200'), + (5950, 19, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GAneZjYm', '5900202'), + (5951, 19, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GAneZjYm', '5900203'), + (5952, 19, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GAneZjYm', '5901108'), + (5953, 19, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GAneZjYm', '5901126'), + (5954, 19, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GAneZjYm', '5909655'), + (5955, 19, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GAneZjYm', '5910522'), + (5956, 19, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GAneZjYm', '5910526'), + (5957, 19, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GAneZjYm', '5910528'), + (5958, 19, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GAneZjYm', '5916219'), + (5959, 19, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GAneZjYm', '5936234'), + (5960, 19, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GAneZjYm', '5958351'), + (5961, 19, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GAneZjYm', '5959751'), + (5962, 19, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GAneZjYm', '5959755'), + (5963, 19, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GAneZjYm', '5960055'), + (5964, 19, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GAneZjYm', '5961684'), + (5965, 19, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GAneZjYm', '5962132'), + (5966, 19, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GAneZjYm', '5962133'), + (5967, 19, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GAneZjYm', '5962134'), + (5968, 19, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GAneZjYm', '5962317'), + (5969, 19, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GAneZjYm', '5962318'), + (5970, 19, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'GAneZjYm', '5965933'), + (5971, 19, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GAneZjYm', '5967014'), + (5972, 19, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GAneZjYm', '5972815'), + (5973, 19, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GAneZjYm', '5974016'), + (5974, 19, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GAneZjYm', '5981515'), + (5975, 19, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GAneZjYm', '5993516'), + (5976, 19, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GAneZjYm', '5998939'), + (5977, 19, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GAneZjYm', '6028191'), + (5978, 19, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GAneZjYm', '6040066'), + (5979, 19, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GAneZjYm', '6042717'), + (5980, 19, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GAneZjYm', '6044838'), + (5981, 19, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GAneZjYm', '6044839'), + (5982, 19, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GAneZjYm', '6045684'), + (5983, 19, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GAneZjYm', '6050104'), + (5984, 19, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GAneZjYm', '6053195'), + (5985, 19, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GAneZjYm', '6053198'), + (5986, 19, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GAneZjYm', '6056085'), + (5987, 19, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GAneZjYm', '6056916'), + (5988, 19, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GAneZjYm', '6059290'), + (5989, 19, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GAneZjYm', '6061037'), + (5990, 19, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GAneZjYm', '6061039'), + (5991, 19, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GAneZjYm', '6067245'), + (5992, 19, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GAneZjYm', '6068094'), + (5993, 19, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GAneZjYm', '6068252'), + (5994, 19, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GAneZjYm', '6068253'), + (5995, 19, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GAneZjYm', '6068254'), + (5996, 19, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GAneZjYm', '6068280'), + (5997, 19, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GAneZjYm', '6069093'), + (5998, 19, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GAneZjYm', '6072528'), + (5999, 19, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GAneZjYm', '6079840'), + (6000, 19, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GAneZjYm', '6083398'), + (6001, 19, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GAneZjYm', '6093504'), + (6002, 19, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GAneZjYm', '6097414'), + (6003, 19, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GAneZjYm', '6097442'), + (6004, 19, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GAneZjYm', '6097684'), + (6005, 19, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GAneZjYm', '6098762'), + (6006, 19, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GAneZjYm', '6101362'), + (6007, 19, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GAneZjYm', '6107314'), + (6008, 19, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GAneZjYm', '6361713'), + (6009, 19, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GAneZjYm', '6388604'), + (6010, 19, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GAneZjYm', '6394629'), + (6011, 19, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GAneZjYm', '6394631'), + (6012, 19, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GAneZjYm', '6440863'), + (6013, 19, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GAneZjYm', '6445440'), + (6014, 19, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GAneZjYm', '6453951'), + (6015, 19, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GAneZjYm', '6461696'), + (6016, 19, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GAneZjYm', '6462129'), + (6017, 19, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GAneZjYm', '6463218'), + (6018, 19, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GAneZjYm', '6472181'), + (6019, 19, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GAneZjYm', '6482693'), + (6020, 19, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GAneZjYm', '6484200'), + (6021, 19, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GAneZjYm', '6484680'), + (6022, 19, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GAneZjYm', '6507741'), + (6023, 19, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GAneZjYm', '6514659'), + (6024, 19, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GAneZjYm', '6514660'), + (6025, 19, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GAneZjYm', '6519103'), + (6026, 19, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GAneZjYm', '6535681'), + (6027, 19, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GAneZjYm', '6584747'), + (6028, 19, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GAneZjYm', '6587097'), + (6029, 19, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GAneZjYm', '6609022'), + (6030, 19, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'GAneZjYm', '6632757'), + (6031, 19, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GAneZjYm', '6644187'), + (6032, 19, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GAneZjYm', '6648951'), + (6033, 19, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GAneZjYm', '6648952'), + (6034, 19, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GAneZjYm', '6661585'), + (6035, 19, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GAneZjYm', '6661588'), + (6036, 19, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GAneZjYm', '6661589'), + (6037, 19, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GAneZjYm', '6699906'), + (6038, 19, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAneZjYm', '7074364'), + (6039, 19, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GAneZjYm', '7114957'), + (6040, 19, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GAneZjYm', '7178446'), + (6041, 19, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GAneZjYm', '7220467'), + (6042, 19, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GAneZjYm', '7240354'), + (6043, 19, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GAneZjYm', '7251633'), + (6044, 19, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GAneZjYm', '7324073'), + (6045, 19, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAneZjYm', '7324074'), + (6046, 19, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAneZjYm', '7324075'), + (6047, 19, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GAneZjYm', '7324078'), + (6048, 19, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GAneZjYm', '7324082'), + (6049, 19, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GAneZjYm', '7331457'), + (6050, 19, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GAneZjYm', '7363643'), + (6051, 19, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAneZjYm', '7368606'), + (6052, 19, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GAneZjYm', '7397462'), + (6053, 19, 2821, 'attending', '2024-10-12 14:16:39', '2025-12-17 19:46:26', 'GAneZjYm', '7424275'), + (6054, 19, 2822, 'attending', '2024-11-10 14:51:38', '2025-12-17 19:46:26', 'GAneZjYm', '7424276'), + (6055, 19, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAneZjYm', '7432751'), + (6056, 19, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAneZjYm', '7432752'), + (6057, 19, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAneZjYm', '7432753'), + (6058, 19, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAneZjYm', '7432754'), + (6059, 19, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAneZjYm', '7432755'), + (6060, 19, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAneZjYm', '7432756'), + (6061, 19, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAneZjYm', '7432758'), + (6062, 19, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAneZjYm', '7432759'), + (6063, 19, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAneZjYm', '7433834'), + (6064, 19, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'GAneZjYm', '7470197'), + (6065, 19, 2891, 'attending', '2024-10-25 20:18:48', '2025-12-17 19:46:26', 'GAneZjYm', '7668163'), + (6066, 19, 2894, 'attending', '2024-11-02 16:57:28', '2025-12-17 19:46:26', 'GAneZjYm', '7680059'), + (6067, 19, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GAneZjYm', '7685613'), + (6068, 19, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAneZjYm', '7688194'), + (6069, 19, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAneZjYm', '7688196'), + (6070, 19, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAneZjYm', '7688289'), + (6071, 19, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAneZjYm', '7692763'), + (6072, 19, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAneZjYm', '7697552'), + (6073, 19, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAneZjYm', '7699878'), + (6074, 19, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'GAneZjYm', '7704043'), + (6075, 19, 2924, 'attending', '2024-11-26 14:29:59', '2025-12-17 19:46:28', 'GAneZjYm', '7712467'), + (6076, 19, 2925, 'attending', '2024-12-15 00:27:54', '2025-12-17 19:46:21', 'GAneZjYm', '7713584'), + (6077, 19, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GAneZjYm', '7713585'), + (6078, 19, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAneZjYm', '7713586'), + (6079, 19, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAneZjYm', '7738518'), + (6080, 19, 2962, 'attending', '2024-12-26 23:41:32', '2025-12-17 19:46:22', 'GAneZjYm', '7750632'), + (6081, 19, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAneZjYm', '7750636'), + (6082, 19, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAneZjYm', '7796540'), + (6083, 19, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAneZjYm', '7796541'), + (6084, 19, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAneZjYm', '7796542'), + (6085, 19, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAneZjYm', '7825913'), + (6086, 19, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', 'GAneZjYm', '7825920'), + (6087, 19, 2981, 'attending', '2025-01-29 16:58:41', '2025-12-17 19:46:22', 'GAneZjYm', '7826124'), + (6088, 19, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAneZjYm', '7834742'), + (6089, 19, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'GAneZjYm', '7842108'), + (6090, 19, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAneZjYm', '7842902'), + (6091, 19, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAneZjYm', '7842903'), + (6092, 19, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAneZjYm', '7842904'), + (6093, 19, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAneZjYm', '7842905'), + (6094, 19, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAneZjYm', '7855719'), + (6095, 19, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAneZjYm', '7860683'), + (6096, 19, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAneZjYm', '7860684'), + (6097, 19, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAneZjYm', '7866095'), + (6098, 19, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GAneZjYm', '7869170'), + (6099, 19, 3015, 'not_attending', '2025-04-21 11:43:53', '2025-12-17 19:46:20', 'GAneZjYm', '7869186'), + (6100, 19, 3016, 'attending', '2025-04-19 22:05:58', '2025-12-17 19:46:20', 'GAneZjYm', '7869187'), + (6101, 19, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GAneZjYm', '7869188'), + (6102, 19, 3022, 'not_attending', '2025-04-23 13:38:50', '2025-12-17 19:46:20', 'GAneZjYm', '7869193'), + (6103, 19, 3023, 'attending', '2025-03-17 13:45:19', '2025-12-17 19:46:19', 'GAneZjYm', '7869194'), + (6104, 19, 3028, 'attending', '2025-04-23 13:38:57', '2025-12-17 19:46:20', 'GAneZjYm', '7869199'), + (6105, 19, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAneZjYm', '7869201'), + (6106, 19, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAneZjYm', '7877465'), + (6107, 19, 3047, 'not_attending', '2025-04-23 13:38:28', '2025-12-17 19:46:20', 'GAneZjYm', '7882693'), + (6108, 19, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAneZjYm', '7888250'), + (6109, 19, 3061, 'attending', '2025-03-27 15:18:01', '2025-12-17 19:46:19', 'GAneZjYm', '7892590'), + (6110, 19, 3080, 'attending', '2025-04-06 16:39:16', '2025-12-17 19:46:20', 'GAneZjYm', '7901441'), + (6111, 19, 3088, 'attending', '2025-06-08 18:09:46', '2025-12-17 19:46:15', 'GAneZjYm', '7904777'), + (6112, 19, 3094, 'attending', '2025-05-06 21:37:07', '2025-12-17 19:46:21', 'GAneZjYm', '8342292'), + (6113, 19, 3095, 'attending', '2025-04-27 17:24:02', '2025-12-17 19:46:20', 'GAneZjYm', '8342293'), + (6114, 19, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAneZjYm', '8349164'), + (6115, 19, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAneZjYm', '8349545'), + (6116, 19, 3108, 'attending', '2025-05-03 15:59:54', '2025-12-17 19:46:20', 'GAneZjYm', '8351411'), + (6117, 19, 3110, 'not_attending', '2025-04-29 19:54:07', '2025-12-17 19:46:20', 'GAneZjYm', '8353484'), + (6118, 19, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'GAneZjYm', '8353584'), + (6119, 19, 3119, 'attending', '2025-05-13 13:48:34', '2025-12-17 19:46:21', 'GAneZjYm', '8360035'), + (6120, 19, 3126, 'maybe', '2025-05-11 04:02:43', '2025-12-17 19:46:21', 'GAneZjYm', '8365614'), + (6121, 19, 3131, 'not_attending', '2025-05-13 00:04:02', '2025-12-17 19:46:21', 'GAneZjYm', '8368028'), + (6122, 19, 3132, 'not_attending', '2025-05-19 22:23:19', '2025-12-17 19:46:21', 'GAneZjYm', '8368029'), + (6123, 19, 3133, 'attending', '2025-05-29 11:42:34', '2025-12-17 19:46:14', 'GAneZjYm', '8368030'), + (6124, 19, 3134, 'not_attending', '2025-05-13 00:04:31', '2025-12-17 19:46:21', 'GAneZjYm', '8368031'), + (6125, 19, 3139, 'attending', '2025-05-19 22:23:52', '2025-12-17 19:46:21', 'GAneZjYm', '8377425'), + (6126, 19, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAneZjYm', '8388462'), + (6127, 19, 3145, 'attending', '2025-05-31 20:45:07', '2025-12-17 19:46:14', 'GAneZjYm', '8393168'), + (6128, 19, 3147, 'attending', '2025-06-09 13:51:15', '2025-12-17 19:46:15', 'GAneZjYm', '8393170'), + (6129, 19, 3150, 'attending', '2025-06-18 22:08:59', '2025-12-17 19:46:15', 'GAneZjYm', '8393174'), + (6130, 19, 3151, 'attending', '2025-05-31 18:39:53', '2025-12-17 19:46:14', 'GAneZjYm', '8393497'), + (6131, 19, 3153, 'attending', '2025-06-03 21:16:46', '2025-12-17 19:46:15', 'GAneZjYm', '8400273'), + (6132, 19, 3154, 'attending', '2025-06-21 15:17:59', '2025-12-17 19:46:15', 'GAneZjYm', '8400274'), + (6133, 19, 3155, 'attending', '2025-07-01 21:04:22', '2025-12-17 19:46:16', 'GAneZjYm', '8400275'), + (6134, 19, 3156, 'attending', '2025-07-11 15:34:35', '2025-12-17 19:46:16', 'GAneZjYm', '8400276'), + (6135, 19, 3169, 'attending', '2025-06-08 18:09:24', '2025-12-17 19:46:15', 'GAneZjYm', '8404977'), + (6136, 19, 3183, 'attending', '2025-07-16 20:17:55', '2025-12-17 19:46:17', 'GAneZjYm', '8430799'), + (6137, 19, 3188, 'attending', '2025-07-12 22:46:15', '2025-12-17 19:46:17', 'GAneZjYm', '8438709'), + (6138, 19, 3193, 'attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAneZjYm', '8457738'), + (6139, 19, 3195, 'attending', '2025-08-06 22:42:06', '2025-12-17 19:46:17', 'GAneZjYm', '8458118'), + (6140, 19, 3196, 'not_attending', '2025-08-12 13:58:36', '2025-12-17 19:46:17', 'GAneZjYm', '8458543'), + (6141, 19, 3199, 'attending', '2025-07-19 13:47:59', '2025-12-17 19:46:17', 'GAneZjYm', '8459565'), + (6142, 19, 3200, 'attending', '2025-07-20 03:17:04', '2025-12-17 19:46:17', 'GAneZjYm', '8459566'), + (6143, 19, 3201, 'attending', '2025-08-09 15:38:15', '2025-12-17 19:46:17', 'GAneZjYm', '8459567'), + (6144, 19, 3202, 'attending', '2025-07-23 12:35:56', '2025-12-17 19:46:17', 'GAneZjYm', '8459568'), + (6145, 19, 3203, 'attending', '2025-07-20 03:17:17', '2025-12-17 19:46:17', 'GAneZjYm', '8461032'), + (6146, 19, 3213, 'maybe', '2025-08-12 13:58:45', '2025-12-17 19:46:17', 'GAneZjYm', '8477876'), + (6147, 19, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAneZjYm', '8477877'), + (6148, 19, 3217, 'not_attending', '2025-08-12 13:58:39', '2025-12-17 19:46:17', 'GAneZjYm', '8481811'), + (6149, 19, 3224, 'attending', '2025-09-07 01:55:10', '2025-12-17 19:46:12', 'GAneZjYm', '8485679'), + (6150, 19, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAneZjYm', '8485688'), + (6151, 19, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAneZjYm', '8490587'), + (6152, 19, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAneZjYm', '8493552'), + (6153, 19, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAneZjYm', '8493553'), + (6154, 19, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAneZjYm', '8493554'), + (6155, 19, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAneZjYm', '8493555'), + (6156, 19, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAneZjYm', '8493556'), + (6157, 19, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAneZjYm', '8493557'), + (6158, 19, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAneZjYm', '8493558'), + (6159, 19, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAneZjYm', '8493559'), + (6160, 19, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAneZjYm', '8493560'), + (6161, 19, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'GAneZjYm', '8493561'), + (6162, 19, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAneZjYm', '8493572'), + (6163, 19, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAneZjYm', '8540725'), + (6164, 19, 3295, 'attending', '2025-11-01 22:47:48', '2025-12-17 19:46:14', 'GAneZjYm', '8547541'), + (6165, 19, 3297, 'attending', '2025-10-21 03:10:35', '2025-12-17 19:46:14', 'GAneZjYm', '8548090'), + (6166, 19, 3300, 'attending', '2025-11-07 12:18:15', '2025-12-17 19:46:14', 'GAneZjYm', '8549145'), + (6167, 19, 3302, 'attending', '2025-11-08 17:37:08', '2025-12-17 19:46:14', 'GAneZjYm', '8550022'), + (6168, 19, 3304, 'attending', '2025-11-08 17:37:13', '2025-12-17 19:46:14', 'GAneZjYm', '8550024'), + (6169, 19, 3307, 'attending', '2025-12-15 18:43:40', '2025-12-17 19:46:11', 'GAneZjYm', '8550027'), + (6170, 19, 3311, 'attending', '2025-12-08 02:30:21', '2025-12-17 19:46:11', 'GAneZjYm', '8550412'), + (6171, 19, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAneZjYm', '8555421'), + (6172, 19, 3346, 'attending', '2025-12-29 02:16:50', '2025-12-29 02:16:50', NULL, NULL), + (6173, 19, 3347, 'attending', '2025-12-30 00:37:41', '2025-12-30 00:37:41', NULL, NULL), + (6174, 20, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dzbNypVd', '7074364'), + (6175, 20, 2688, 'attending', '2024-06-27 19:39:36', '2025-12-17 19:46:29', 'dzbNypVd', '7324073'), + (6176, 20, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dzbNypVd', '7324074'), + (6177, 20, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dzbNypVd', '7324075'), + (6178, 20, 2691, 'not_attending', '2024-07-20 18:39:17', '2025-12-17 19:46:30', 'dzbNypVd', '7324076'), + (6179, 20, 2692, 'not_attending', '2024-07-27 21:06:25', '2025-12-17 19:46:30', 'dzbNypVd', '7324077'), + (6180, 20, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dzbNypVd', '7324078'), + (6181, 20, 2696, 'attending', '2024-08-21 18:03:23', '2025-12-17 19:46:32', 'dzbNypVd', '7324081'), + (6182, 20, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dzbNypVd', '7324082'), + (6183, 20, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dzbNypVd', '7331457'), + (6184, 20, 2735, 'attending', '2024-06-28 14:00:55', '2025-12-17 19:46:29', 'dzbNypVd', '7340369'), + (6185, 20, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dzbNypVd', '7356752'), + (6186, 20, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dzbNypVd', '7363643'), + (6187, 20, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dzbNypVd', '7368606'), + (6188, 20, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dzbNypVd', '7397462'), + (6189, 20, 2821, 'maybe', '2024-10-07 19:50:26', '2025-12-17 19:46:26', 'dzbNypVd', '7424275'), + (6190, 20, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dzbNypVd', '7424276'), + (6191, 20, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dzbNypVd', '7432751'), + (6192, 20, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dzbNypVd', '7432752'), + (6193, 20, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dzbNypVd', '7432753'), + (6194, 20, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dzbNypVd', '7432754'), + (6195, 20, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dzbNypVd', '7432755'), + (6196, 20, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dzbNypVd', '7432756'), + (6197, 20, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dzbNypVd', '7432758'), + (6198, 20, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dzbNypVd', '7432759'), + (6199, 20, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dzbNypVd', '7433834'), + (6200, 20, 2834, 'not_attending', '2024-09-10 23:32:24', '2025-12-17 19:46:25', 'dzbNypVd', '7433852'), + (6201, 20, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dzbNypVd', '7470197'), + (6202, 20, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dzbNypVd', '7685613'), + (6203, 20, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dzbNypVd', '7688194'), + (6204, 20, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dzbNypVd', '7688196'), + (6205, 20, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dzbNypVd', '7688289'), + (6206, 20, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dzbNypVd', '7692763'), + (6207, 20, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dzbNypVd', '7697552'), + (6208, 20, 2916, 'not_attending', '2024-11-20 00:26:01', '2025-12-17 19:46:27', 'dzbNypVd', '7699006'), + (6209, 20, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dzbNypVd', '7699878'), + (6210, 20, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dzbNypVd', '7704043'), + (6211, 20, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dzbNypVd', '7712467'), + (6212, 20, 2925, 'attending', '2024-12-14 21:03:47', '2025-12-17 19:46:21', 'dzbNypVd', '7713584'), + (6213, 20, 2926, 'attending', '2024-12-03 16:40:18', '2025-12-17 19:46:21', 'dzbNypVd', '7713585'), + (6214, 20, 2927, 'not_attending', '2024-12-01 16:33:58', '2025-12-17 19:46:22', 'dzbNypVd', '7713586'), + (6215, 20, 2933, 'not_attending', '2024-12-15 03:03:30', '2025-12-17 19:46:22', 'dzbNypVd', '7725950'), + (6216, 20, 2937, 'not_attending', '2024-12-15 03:03:05', '2025-12-17 19:46:21', 'dzbNypVd', '7725955'), + (6217, 20, 2952, 'not_attending', '2024-12-15 03:03:14', '2025-12-17 19:46:21', 'dzbNypVd', '7730167'), + (6218, 20, 2953, 'not_attending', '2024-12-14 06:13:34', '2025-12-17 19:46:21', 'dzbNypVd', '7733836'), + (6219, 20, 2957, 'not_attending', '2024-12-16 00:08:27', '2025-12-17 19:46:21', 'dzbNypVd', '7735370'), + (6220, 20, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dzbNypVd', '7738518'), + (6221, 20, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dzbNypVd', '7750636'), + (6222, 20, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dzbNypVd', '7796540'), + (6223, 20, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dzbNypVd', '7796541'), + (6224, 20, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dzbNypVd', '7796542'), + (6225, 20, 2972, 'maybe', '2025-01-19 18:50:01', '2025-12-17 19:46:22', 'dzbNypVd', '7812563'), + (6226, 20, 2974, 'attending', '2025-01-18 23:24:13', '2025-12-17 19:46:22', 'dzbNypVd', '7814958'), + (6227, 20, 2975, 'maybe', '2025-01-25 21:10:58', '2025-12-17 19:46:22', 'dzbNypVd', '7823615'), + (6228, 20, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dzbNypVd', '7825913'), + (6229, 20, 2980, 'maybe', '2025-01-28 23:25:25', '2025-12-17 19:46:23', 'dzbNypVd', '7825920'), + (6230, 20, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dzbNypVd', '7826209'), + (6231, 20, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dzbNypVd', '7834742'), + (6232, 20, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dzbNypVd', '7842108'), + (6233, 20, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dzbNypVd', '7842902'), + (6234, 20, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dzbNypVd', '7842903'), + (6235, 20, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dzbNypVd', '7842904'), + (6236, 20, 2994, 'maybe', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dzbNypVd', '7842905'), + (6237, 20, 3000, 'maybe', '2025-02-21 01:23:39', '2025-12-17 19:46:24', 'dzbNypVd', '7852541'), + (6238, 20, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dzbNypVd', '7855719'), + (6239, 20, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dzbNypVd', '7860683'), + (6240, 20, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dzbNypVd', '7860684'), + (6241, 20, 3009, 'not_attending', '2025-02-28 22:31:43', '2025-12-17 19:46:18', 'dzbNypVd', '7864019'), + (6242, 20, 3010, 'maybe', '2025-02-28 23:41:00', '2025-12-17 19:46:18', 'dzbNypVd', '7864879'), + (6243, 20, 3011, 'attending', '2025-03-01 23:02:52', '2025-12-17 19:46:24', 'dzbNypVd', '7865624'), + (6244, 20, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dzbNypVd', '7866095'), + (6245, 20, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dzbNypVd', '7869170'), + (6246, 20, 3014, 'attending', '2025-03-31 21:05:59', '2025-12-17 19:46:19', 'dzbNypVd', '7869185'), + (6247, 20, 3015, 'attending', '2025-04-21 23:10:11', '2025-12-17 19:46:20', 'dzbNypVd', '7869186'), + (6248, 20, 3016, 'attending', '2025-04-06 20:33:08', '2025-12-17 19:46:20', 'dzbNypVd', '7869187'), + (6249, 20, 3017, 'attending', '2025-03-25 13:28:40', '2025-12-17 19:46:19', 'dzbNypVd', '7869188'), + (6250, 20, 3018, 'attending', '2025-04-06 20:33:37', '2025-12-17 19:46:20', 'dzbNypVd', '7869189'), + (6251, 20, 3028, 'attending', '2025-04-07 20:50:54', '2025-12-17 19:46:20', 'dzbNypVd', '7869199'), + (6252, 20, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dzbNypVd', '7869201'), + (6253, 20, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dzbNypVd', '7877465'), + (6254, 20, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dzbNypVd', '7878570'), + (6255, 20, 3046, 'attending', '2025-04-06 20:33:39', '2025-12-17 19:46:20', 'dzbNypVd', '7882692'), + (6256, 20, 3047, 'attending', '2025-04-26 19:51:05', '2025-12-17 19:46:20', 'dzbNypVd', '7882693'), + (6257, 20, 3048, 'attending', '2025-04-19 21:08:50', '2025-12-17 19:46:20', 'dzbNypVd', '7882694'), + (6258, 20, 3049, 'not_attending', '2025-03-17 21:51:04', '2025-12-17 19:46:19', 'dzbNypVd', '7883215'), + (6259, 20, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dzbNypVd', '7888250'), + (6260, 20, 3060, 'attending', '2025-03-27 14:16:18', '2025-12-17 19:46:19', 'dzbNypVd', '7892589'), + (6261, 20, 3061, 'attending', '2025-04-02 21:41:38', '2025-12-17 19:46:19', 'dzbNypVd', '7892590'), + (6262, 20, 3062, 'attending', '2025-03-27 22:11:32', '2025-12-17 19:46:19', 'dzbNypVd', '7892738'), + (6263, 20, 3063, 'attending', '2025-03-28 08:51:54', '2025-12-17 19:46:19', 'dzbNypVd', '7892801'), + (6264, 20, 3065, 'not_attending', '2025-04-03 20:14:35', '2025-12-17 19:46:19', 'dzbNypVd', '7893676'), + (6265, 20, 3075, 'attending', '2025-04-04 18:59:39', '2025-12-17 19:46:20', 'dzbNypVd', '7898896'), + (6266, 20, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dzbNypVd', '7904777'), + (6267, 20, 3091, 'not_attending', '2025-04-18 20:39:54', '2025-12-17 19:46:20', 'dzbNypVd', '8340289'), + (6268, 20, 3094, 'attending', '2025-04-21 23:10:15', '2025-12-17 19:46:21', 'dzbNypVd', '8342292'), + (6269, 20, 3095, 'attending', '2025-04-21 23:10:13', '2025-12-17 19:46:20', 'dzbNypVd', '8342293'), + (6270, 20, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dzbNypVd', '8349164'), + (6271, 20, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dzbNypVd', '8349545'), + (6272, 20, 3108, 'attending', '2025-04-29 22:36:19', '2025-12-17 19:46:20', 'dzbNypVd', '8351411'), + (6273, 20, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dzbNypVd', '8353584'), + (6274, 20, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dzbNypVd', '8368028'), + (6275, 20, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dzbNypVd', '8368029'), + (6276, 20, 3133, 'attending', '2025-05-27 23:25:00', '2025-12-17 19:46:14', 'dzbNypVd', '8368030'), + (6277, 20, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dzbNypVd', '8388462'), + (6278, 20, 3151, 'attending', '2025-05-31 22:00:33', '2025-12-17 19:46:14', 'dzbNypVd', '8393497'), + (6279, 20, 3153, 'attending', '2025-06-03 19:55:28', '2025-12-17 19:46:15', 'dzbNypVd', '8400273'), + (6280, 20, 3154, 'attending', '2025-06-26 10:43:57', '2025-12-17 19:46:15', 'dzbNypVd', '8400274'), + (6281, 20, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dzbNypVd', '8400275'), + (6282, 20, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dzbNypVd', '8400276'), + (6283, 20, 3167, 'attending', '2025-06-08 02:03:26', '2025-12-17 19:46:15', 'dzbNypVd', '8404521'), + (6284, 20, 3168, 'maybe', '2025-06-08 02:06:17', '2025-12-17 19:46:15', 'dzbNypVd', '8404522'), + (6285, 20, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dzbNypVd', '8404977'), + (6286, 20, 3175, 'attending', '2025-06-14 18:23:06', '2025-12-17 19:46:15', 'dzbNypVd', '8410815'), + (6287, 20, 3179, 'attending', '2025-06-27 20:19:24', '2025-12-17 19:46:15', 'dzbNypVd', '8421850'), + (6288, 20, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dzbNypVd', '8430783'), + (6289, 20, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dzbNypVd', '8430784'), + (6290, 20, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dzbNypVd', '8430799'), + (6291, 20, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dzbNypVd', '8430800'), + (6292, 20, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dzbNypVd', '8430801'), + (6293, 20, 3188, 'not_attending', '2025-07-07 22:13:40', '2025-12-17 19:46:17', 'dzbNypVd', '8438709'), + (6294, 20, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dzbNypVd', '8457738'), + (6295, 20, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dzbNypVd', '8459566'), + (6296, 20, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dzbNypVd', '8459567'), + (6297, 20, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dzbNypVd', '8459568'), + (6298, 20, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dzbNypVd', '8461032'), + (6299, 20, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dzbNypVd', '8477877'), + (6300, 20, 3224, 'attending', '2025-09-03 19:29:24', '2025-12-17 19:46:12', 'dzbNypVd', '8485679'), + (6301, 20, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dzbNypVd', '8485688'), + (6302, 20, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dzbNypVd', '8490587'), + (6303, 20, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dzbNypVd', '8493552'), + (6304, 20, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dzbNypVd', '8493553'), + (6305, 20, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dzbNypVd', '8493554'), + (6306, 20, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dzbNypVd', '8493555'), + (6307, 20, 3240, 'maybe', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dzbNypVd', '8493556'), + (6308, 20, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dzbNypVd', '8493557'), + (6309, 20, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dzbNypVd', '8493558'), + (6310, 20, 3243, 'maybe', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dzbNypVd', '8493559'), + (6311, 20, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dzbNypVd', '8493560'), + (6312, 20, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dzbNypVd', '8493561'), + (6313, 20, 3250, 'not_attending', '2025-10-25 20:30:10', '2025-12-17 19:46:14', 'dzbNypVd', '8493566'), + (6314, 20, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dzbNypVd', '8493572'), + (6315, 20, 3257, 'attending', '2025-08-28 20:56:31', '2025-12-17 19:46:11', 'dzbNypVd', '8502340'), + (6316, 20, 3259, 'not_attending', '2025-09-05 18:37:59', '2025-12-17 19:46:12', 'dzbNypVd', '8512638'), + (6317, 20, 3260, 'not_attending', '2025-09-05 18:37:55', '2025-12-17 19:46:12', 'dzbNypVd', '8512640'), + (6318, 20, 3261, 'not_attending', '2025-09-05 18:37:40', '2025-12-17 19:46:12', 'dzbNypVd', '8512641'), + (6319, 20, 3262, 'not_attending', '2025-09-05 18:37:44', '2025-12-17 19:46:12', 'dzbNypVd', '8512642'), + (6320, 20, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dzbNypVd', '8540725'), + (6321, 20, 3295, 'attending', '2025-10-28 20:59:29', '2025-12-17 19:46:14', 'dzbNypVd', '8547541'), + (6322, 20, 3300, 'attending', '2025-11-06 23:11:52', '2025-12-17 19:46:14', 'dzbNypVd', '8549145'), + (6323, 20, 3302, 'not_attending', '2025-11-04 17:23:53', '2025-12-17 19:46:14', 'dzbNypVd', '8550022'), + (6324, 20, 3304, 'attending', '2025-11-18 02:11:47', '2025-12-17 19:46:14', 'dzbNypVd', '8550024'), + (6325, 20, 3305, 'maybe', '2025-12-02 23:12:19', '2025-12-17 19:46:11', 'dzbNypVd', '8550025'), + (6326, 20, 3306, 'attending', '2025-12-09 02:30:53', '2025-12-17 19:46:11', 'dzbNypVd', '8550026'), + (6327, 20, 3307, 'attending', '2025-12-16 00:24:05', '2025-12-17 19:46:11', 'dzbNypVd', '8550027'), + (6328, 20, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dzbNypVd', '8555421'), + (6329, 20, 3338, 'not_attending', '2025-12-06 21:42:55', '2025-12-17 19:46:11', 'dzbNypVd', '8563316'), + (6330, 20, 3341, 'maybe', '2025-12-13 22:59:43', '2025-12-17 19:46:11', 'dzbNypVd', '8564397'), + (6331, 20, 3346, 'attending', '2025-12-30 00:21:24', '2025-12-30 00:21:26', NULL, NULL), + (6332, 21, 1052, 'not_attending', '2022-01-15 19:48:57', '2025-12-17 19:47:31', 'AnbyDDkA', '4496617'), + (6333, 21, 1151, 'attending', '2022-01-05 00:13:08', '2025-12-17 19:47:31', 'AnbyDDkA', '4708704'), + (6334, 21, 1152, 'attending', '2022-01-12 11:28:54', '2025-12-17 19:47:31', 'AnbyDDkA', '4708705'), + (6335, 21, 1153, 'attending', '2022-01-20 00:54:49', '2025-12-17 19:47:32', 'AnbyDDkA', '4708707'), + (6336, 21, 1154, 'not_attending', '2022-01-25 18:26:57', '2025-12-17 19:47:32', 'AnbyDDkA', '4708708'), + (6337, 21, 1159, 'attending', '2022-01-05 00:25:10', '2025-12-17 19:47:31', 'AnbyDDkA', '4717532'), + (6338, 21, 1162, 'attending', '2022-01-07 18:48:46', '2025-12-17 19:47:31', 'AnbyDDkA', '4718771'), + (6339, 21, 1166, 'not_attending', '2022-01-11 00:08:12', '2025-12-17 19:47:31', 'AnbyDDkA', '4725109'), + (6340, 21, 1167, 'attending', '2022-01-06 22:18:56', '2025-12-17 19:47:31', 'AnbyDDkA', '4731015'), + (6341, 21, 1170, 'not_attending', '2022-01-10 01:07:41', '2025-12-17 19:47:31', 'AnbyDDkA', '4731045'), + (6342, 21, 1171, 'attending', '2022-01-04 04:42:46', '2025-12-17 19:47:31', 'AnbyDDkA', '4733292'), + (6343, 21, 1173, 'attending', '2022-01-05 18:05:08', '2025-12-17 19:47:31', 'AnbyDDkA', '4736495'), + (6344, 21, 1174, 'attending', '2022-01-09 02:20:33', '2025-12-17 19:47:31', 'AnbyDDkA', '4736496'), + (6345, 21, 1175, 'attending', '2022-01-22 23:56:02', '2025-12-17 19:47:32', 'AnbyDDkA', '4736497'), + (6346, 21, 1176, 'attending', '2022-02-05 18:18:25', '2025-12-17 19:47:32', 'AnbyDDkA', '4736498'), + (6347, 21, 1177, 'not_attending', '2022-02-13 00:28:30', '2025-12-17 19:47:32', 'AnbyDDkA', '4736499'), + (6348, 21, 1178, 'not_attending', '2022-01-30 03:08:05', '2025-12-17 19:47:32', 'AnbyDDkA', '4736500'), + (6349, 21, 1179, 'maybe', '2022-02-17 22:11:20', '2025-12-17 19:47:32', 'AnbyDDkA', '4736501'), + (6350, 21, 1180, 'not_attending', '2022-02-27 05:44:19', '2025-12-17 19:47:33', 'AnbyDDkA', '4736502'), + (6351, 21, 1181, 'attending', '2022-03-05 23:29:05', '2025-12-17 19:47:33', 'AnbyDDkA', '4736503'), + (6352, 21, 1182, 'attending', '2022-03-12 23:33:34', '2025-12-17 19:47:33', 'AnbyDDkA', '4736504'), + (6353, 21, 1184, 'attending', '2022-01-15 01:57:57', '2025-12-17 19:47:31', 'AnbyDDkA', '4742350'), + (6354, 21, 1185, 'not_attending', '2022-01-14 04:59:21', '2025-12-17 19:47:31', 'AnbyDDkA', '4746789'), + (6355, 21, 1186, 'not_attending', '2022-01-15 19:48:54', '2025-12-17 19:47:31', 'AnbyDDkA', '4747800'), + (6356, 21, 1187, 'attending', '2022-01-11 01:06:39', '2025-12-17 19:47:31', 'AnbyDDkA', '4753907'), + (6357, 21, 1188, 'not_attending', '2022-01-11 04:07:48', '2025-12-17 19:47:32', 'AnbyDDkA', '4753929'), + (6358, 21, 1189, 'maybe', '2022-01-17 18:55:53', '2025-12-17 19:47:31', 'AnbyDDkA', '4753938'), + (6359, 21, 1190, 'not_attending', '2022-01-14 00:35:31', '2025-12-17 19:47:31', 'AnbyDDkA', '4757377'), + (6360, 21, 1191, 'not_attending', '2022-01-11 23:32:30', '2025-12-17 19:47:31', 'AnbyDDkA', '4757390'), + (6361, 21, 1192, 'not_attending', '2022-01-20 19:30:06', '2025-12-17 19:47:32', 'AnbyDDkA', '4758745'), + (6362, 21, 1193, 'maybe', '2022-01-13 03:16:00', '2025-12-17 19:47:32', 'AnbyDDkA', '4759563'), + (6363, 21, 1196, 'not_attending', '2022-01-20 19:29:56', '2025-12-17 19:47:32', 'AnbyDDkA', '4765583'), + (6364, 21, 1199, 'not_attending', '2022-01-25 08:11:10', '2025-12-17 19:47:32', 'AnbyDDkA', '4766802'), + (6365, 21, 1201, 'not_attending', '2022-01-20 19:30:10', '2025-12-17 19:47:32', 'AnbyDDkA', '4766841'), + (6366, 21, 1202, 'not_attending', '2022-01-30 09:46:19', '2025-12-17 19:47:32', 'AnbyDDkA', '4769423'), + (6367, 21, 1206, 'attending', '2022-04-10 22:43:17', '2025-12-17 19:47:27', 'AnbyDDkA', '4773578'), + (6368, 21, 1208, 'attending', '2022-01-23 02:41:14', '2025-12-17 19:47:32', 'AnbyDDkA', '4774419'), + (6369, 21, 1213, 'not_attending', '2022-02-06 23:00:00', '2025-12-17 19:47:32', 'AnbyDDkA', '4780760'), + (6370, 21, 1217, 'attending', '2022-01-30 12:47:14', '2025-12-17 19:47:32', 'AnbyDDkA', '4781139'), + (6371, 21, 1219, 'attending', '2022-02-02 22:06:29', '2025-12-17 19:47:32', 'AnbyDDkA', '4788466'), + (6372, 21, 1224, 'maybe', '2022-01-30 20:35:34', '2025-12-17 19:47:32', 'AnbyDDkA', '5016682'), + (6373, 21, 1228, 'attending', '2022-02-11 18:18:20', '2025-12-17 19:47:32', 'AnbyDDkA', '5028238'), + (6374, 21, 1232, 'attending', '2022-02-09 00:53:20', '2025-12-17 19:47:32', 'AnbyDDkA', '5038850'), + (6375, 21, 1234, 'attending', '2022-02-16 00:06:18', '2025-12-17 19:47:32', 'AnbyDDkA', '5042197'), + (6376, 21, 1236, 'not_attending', '2022-02-17 22:10:11', '2025-12-17 19:47:32', 'AnbyDDkA', '5045826'), + (6377, 21, 1239, 'attending', '2022-03-03 00:26:11', '2025-12-17 19:47:33', 'AnbyDDkA', '5052238'), + (6378, 21, 1240, 'attending', '2022-03-16 21:48:57', '2025-12-17 19:47:33', 'AnbyDDkA', '5052239'), + (6379, 21, 1241, 'not_attending', '2022-03-23 20:35:41', '2025-12-17 19:47:25', 'AnbyDDkA', '5052240'), + (6380, 21, 1242, 'attending', '2022-03-30 22:13:43', '2025-12-17 19:47:25', 'AnbyDDkA', '5052241'), + (6381, 21, 1243, 'not_attending', '2022-03-06 19:51:02', '2025-12-17 19:47:33', 'AnbyDDkA', '5058336'), + (6382, 21, 1246, 'attending', '2022-03-03 23:51:02', '2025-12-17 19:47:33', 'AnbyDDkA', '5064727'), + (6383, 21, 1249, 'attending', '2022-03-09 23:50:15', '2025-12-17 19:47:33', 'AnbyDDkA', '5068530'), + (6384, 21, 1250, 'maybe', '2022-03-04 00:09:50', '2025-12-17 19:47:33', 'AnbyDDkA', '5069735'), + (6385, 21, 1252, 'attending', '2022-03-05 01:01:44', '2025-12-17 19:47:33', 'AnbyDDkA', '5129121'), + (6386, 21, 1255, 'attending', '2022-02-28 20:03:23', '2025-12-17 19:47:33', 'AnbyDDkA', '5129140'), + (6387, 21, 1257, 'attending', '2022-03-01 05:58:47', '2025-12-17 19:47:33', 'AnbyDDkA', '5129274'), + (6388, 21, 1259, 'attending', '2022-03-11 23:27:18', '2025-12-17 19:47:33', 'AnbyDDkA', '5132533'), + (6389, 21, 1262, 'attending', '2022-03-11 20:58:05', '2025-12-17 19:47:33', 'AnbyDDkA', '5157773'), + (6390, 21, 1266, 'not_attending', '2022-03-14 23:45:21', '2025-12-17 19:47:33', 'AnbyDDkA', '5166407'), + (6391, 21, 1267, 'attending', '2022-03-16 22:20:51', '2025-12-17 19:47:25', 'AnbyDDkA', '5169578'), + (6392, 21, 1268, 'attending', '2022-03-15 22:06:56', '2025-12-17 19:47:33', 'AnbyDDkA', '5176296'), + (6393, 21, 1269, 'not_attending', '2022-03-18 21:54:47', '2025-12-17 19:47:25', 'AnbyDDkA', '5179439'), + (6394, 21, 1271, 'not_attending', '2022-03-18 21:54:18', '2025-12-17 19:47:25', 'AnbyDDkA', '5181648'), + (6395, 21, 1272, 'attending', '2022-03-19 18:00:18', '2025-12-17 19:47:25', 'AnbyDDkA', '5186582'), + (6396, 21, 1273, 'attending', '2022-03-26 18:16:44', '2025-12-17 19:47:25', 'AnbyDDkA', '5186583'), + (6397, 21, 1274, 'attending', '2022-04-02 07:00:33', '2025-12-17 19:47:26', 'AnbyDDkA', '5186585'), + (6398, 21, 1278, 'not_attending', '2022-03-17 21:01:45', '2025-12-17 19:47:33', 'AnbyDDkA', '5186920'), + (6399, 21, 1279, 'attending', '2022-03-16 10:07:41', '2025-12-17 19:47:25', 'AnbyDDkA', '5187212'), + (6400, 21, 1281, 'not_attending', '2022-04-09 20:57:36', '2025-12-17 19:47:27', 'AnbyDDkA', '5190437'), + (6401, 21, 1282, 'maybe', '2022-03-21 16:21:39', '2025-12-17 19:47:25', 'AnbyDDkA', '5191241'), + (6402, 21, 1284, 'not_attending', '2022-04-13 18:43:14', '2025-12-17 19:47:27', 'AnbyDDkA', '5195095'), + (6403, 21, 1288, 'not_attending', '2022-03-29 21:21:58', '2025-12-17 19:47:25', 'AnbyDDkA', '5199460'), + (6404, 21, 1290, 'maybe', '2022-03-29 13:56:00', '2025-12-17 19:47:25', 'AnbyDDkA', '5200196'), + (6405, 21, 1293, 'maybe', '2022-04-10 17:26:17', '2025-12-17 19:47:27', 'AnbyDDkA', '5214641'), + (6406, 21, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'AnbyDDkA', '5215989'), + (6407, 21, 1299, 'maybe', '2022-03-31 19:53:03', '2025-12-17 19:47:25', 'AnbyDDkA', '5217660'), + (6408, 21, 1302, 'maybe', '2022-04-08 20:38:40', '2025-12-17 19:47:27', 'AnbyDDkA', '5220867'), + (6409, 21, 1304, 'attending', '2022-04-06 22:47:00', '2025-12-17 19:47:26', 'AnbyDDkA', '5223468'), + (6410, 21, 1305, 'attending', '2022-04-10 22:43:14', '2025-12-17 19:47:27', 'AnbyDDkA', '5223673'), + (6411, 21, 1306, 'attending', '2022-04-05 22:29:51', '2025-12-17 19:47:26', 'AnbyDDkA', '5223682'), + (6412, 21, 1307, 'not_attending', '2022-04-07 22:45:57', '2025-12-17 19:47:27', 'AnbyDDkA', '5223686'), + (6413, 21, 1308, 'not_attending', '2022-04-13 03:29:30', '2025-12-17 19:47:27', 'AnbyDDkA', '5226703'), + (6414, 21, 1309, 'not_attending', '2022-04-07 22:45:50', '2025-12-17 19:47:26', 'AnbyDDkA', '5227432'), + (6415, 21, 1310, 'attending', '2022-04-08 01:33:43', '2025-12-17 19:47:27', 'AnbyDDkA', '5231071'), + (6416, 21, 1312, 'maybe', '2022-04-13 18:38:18', '2025-12-17 19:47:27', 'AnbyDDkA', '5231459'), + (6417, 21, 1313, 'not_attending', '2022-04-13 03:29:21', '2025-12-17 19:47:27', 'AnbyDDkA', '5231461'), + (6418, 21, 1314, 'attending', '2022-04-08 20:20:33', '2025-12-17 19:47:27', 'AnbyDDkA', '5233137'), + (6419, 21, 1319, 'not_attending', '2022-04-25 21:26:03', '2025-12-17 19:47:27', 'AnbyDDkA', '5238353'), + (6420, 21, 1321, 'attending', '2022-04-22 21:01:56', '2025-12-17 19:47:27', 'AnbyDDkA', '5238355'), + (6421, 21, 1322, 'attending', '2022-04-26 14:15:15', '2025-12-17 19:47:27', 'AnbyDDkA', '5238356'), + (6422, 21, 1327, 'not_attending', '2022-04-25 21:13:53', '2025-12-17 19:47:27', 'AnbyDDkA', '5238445'), + (6423, 21, 1328, 'maybe', '2022-04-13 18:38:26', '2025-12-17 19:47:27', 'AnbyDDkA', '5238759'), + (6424, 21, 1330, 'not_attending', '2022-04-13 18:43:52', '2025-12-17 19:47:27', 'AnbyDDkA', '5242155'), + (6425, 21, 1332, 'maybe', '2022-04-13 18:38:10', '2025-12-17 19:47:27', 'AnbyDDkA', '5243274'), + (6426, 21, 1333, 'attending', '2022-04-13 18:34:11', '2025-12-17 19:47:27', 'AnbyDDkA', '5243711'), + (6427, 21, 1341, 'not_attending', '2022-05-01 03:04:32', '2025-12-17 19:47:28', 'AnbyDDkA', '5245755'), + (6428, 21, 1345, 'attending', '2022-04-23 21:42:41', '2025-12-17 19:47:27', 'AnbyDDkA', '5247466'), + (6429, 21, 1346, 'attending', '2022-04-23 20:29:48', '2025-12-17 19:47:27', 'AnbyDDkA', '5247467'), + (6430, 21, 1348, 'not_attending', '2022-05-01 23:36:57', '2025-12-17 19:47:28', 'AnbyDDkA', '5247605'), + (6431, 21, 1350, 'attending', '2022-04-21 17:20:11', '2025-12-17 19:47:27', 'AnbyDDkA', '5249763'), + (6432, 21, 1357, 'maybe', '2022-04-25 21:15:21', '2025-12-17 19:47:27', 'AnbyDDkA', '5256017'), + (6433, 21, 1360, 'attending', '2022-04-27 00:11:09', '2025-12-17 19:47:27', 'AnbyDDkA', '5260197'), + (6434, 21, 1362, 'attending', '2022-04-27 19:43:04', '2025-12-17 19:47:28', 'AnbyDDkA', '5260800'), + (6435, 21, 1374, 'attending', '2022-05-05 19:12:34', '2025-12-17 19:47:28', 'AnbyDDkA', '5269930'), + (6436, 21, 1375, 'attending', '2022-05-05 22:37:59', '2025-12-17 19:47:28', 'AnbyDDkA', '5269932'), + (6437, 21, 1376, 'maybe', '2022-05-12 20:30:22', '2025-12-17 19:47:28', 'AnbyDDkA', '5271446'), + (6438, 21, 1378, 'maybe', '2022-05-11 07:24:08', '2025-12-17 19:47:29', 'AnbyDDkA', '5271448'), + (6439, 21, 1379, 'attending', '2022-05-21 01:16:08', '2025-12-17 19:47:29', 'AnbyDDkA', '5271449'), + (6440, 21, 1380, 'not_attending', '2022-05-28 22:59:24', '2025-12-17 19:47:30', 'AnbyDDkA', '5271450'), + (6441, 21, 1382, 'attending', '2022-05-09 22:56:11', '2025-12-17 19:47:28', 'AnbyDDkA', '5276350'), + (6442, 21, 1383, 'attending', '2022-05-05 19:15:05', '2025-12-17 19:47:28', 'AnbyDDkA', '5276469'), + (6443, 21, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AnbyDDkA', '5278159'), + (6444, 21, 1394, 'maybe', '2022-05-21 12:38:41', '2025-12-17 19:47:30', 'AnbyDDkA', '5280667'), + (6445, 21, 1395, 'attending', '2022-05-07 21:36:39', '2025-12-17 19:47:28', 'AnbyDDkA', '5281102'), + (6446, 21, 1396, 'maybe', '2022-05-11 07:24:15', '2025-12-17 19:47:28', 'AnbyDDkA', '5281103'), + (6447, 21, 1397, 'not_attending', '2022-05-21 21:28:47', '2025-12-17 19:47:29', 'AnbyDDkA', '5281104'), + (6448, 21, 1400, 'attending', '2022-05-16 21:31:35', '2025-12-17 19:47:29', 'AnbyDDkA', '5284864'), + (6449, 21, 1403, 'attending', '2022-05-20 22:48:57', '2025-12-17 19:47:29', 'AnbyDDkA', '5288052'), + (6450, 21, 1406, 'attending', '2022-05-15 21:44:07', '2025-12-17 19:47:29', 'AnbyDDkA', '5288619'), + (6451, 21, 1407, 'not_attending', '2022-06-02 22:36:52', '2025-12-17 19:47:30', 'AnbyDDkA', '5363695'), + (6452, 21, 1408, 'not_attending', '2022-05-20 21:45:33', '2025-12-17 19:47:29', 'AnbyDDkA', '5365960'), + (6453, 21, 1410, 'attending', '2022-05-17 02:58:18', '2025-12-17 19:47:29', 'AnbyDDkA', '5367530'), + (6454, 21, 1411, 'attending', '2022-05-17 03:00:49', '2025-12-17 19:47:29', 'AnbyDDkA', '5367531'), + (6455, 21, 1412, 'attending', '2022-05-17 02:59:27', '2025-12-17 19:47:29', 'AnbyDDkA', '5367532'), + (6456, 21, 1413, 'attending', '2022-05-17 03:03:38', '2025-12-17 19:47:29', 'AnbyDDkA', '5367533'), + (6457, 21, 1414, 'attending', '2022-05-21 01:46:16', '2025-12-17 19:47:29', 'AnbyDDkA', '5368445'), + (6458, 21, 1415, 'attending', '2022-05-19 17:35:16', '2025-12-17 19:47:30', 'AnbyDDkA', '5368973'), + (6459, 21, 1417, 'not_attending', '2022-05-22 17:29:14', '2025-12-17 19:47:30', 'AnbyDDkA', '5370465'), + (6460, 21, 1419, 'attending', '2022-06-08 02:40:26', '2025-12-17 19:47:30', 'AnbyDDkA', '5373081'), + (6461, 21, 1420, 'maybe', '2022-05-23 06:59:25', '2025-12-17 19:47:30', 'AnbyDDkA', '5374882'), + (6462, 21, 1421, 'attending', '2022-05-30 17:08:04', '2025-12-17 19:47:30', 'AnbyDDkA', '5374885'), + (6463, 21, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AnbyDDkA', '5378247'), + (6464, 21, 1429, 'attending', '2022-05-30 23:28:53', '2025-12-17 19:47:30', 'AnbyDDkA', '5388761'), + (6465, 21, 1430, 'not_attending', '2022-06-09 23:00:33', '2025-12-17 19:47:30', 'AnbyDDkA', '5389402'), + (6466, 21, 1431, 'attending', '2022-06-08 02:40:31', '2025-12-17 19:47:30', 'AnbyDDkA', '5389605'), + (6467, 21, 1432, 'maybe', '2022-06-02 22:37:28', '2025-12-17 19:47:30', 'AnbyDDkA', '5391566'), + (6468, 21, 1439, 'attending', '2022-06-02 22:37:15', '2025-12-17 19:47:30', 'AnbyDDkA', '5396072'), + (6469, 21, 1442, 'not_attending', '2022-06-18 22:32:56', '2025-12-17 19:47:17', 'AnbyDDkA', '5397265'), + (6470, 21, 1444, 'attending', '2022-06-08 02:40:34', '2025-12-17 19:47:30', 'AnbyDDkA', '5397614'), + (6471, 21, 1445, 'maybe', '2022-06-18 16:41:23', '2025-12-17 19:47:17', 'AnbyDDkA', '5397615'), + (6472, 21, 1446, 'not_attending', '2022-06-09 20:39:34', '2025-12-17 19:47:30', 'AnbyDDkA', '5399721'), + (6473, 21, 1448, 'attending', '2022-06-07 02:18:15', '2025-12-17 19:47:30', 'AnbyDDkA', '5401479'), + (6474, 21, 1450, 'attending', '2022-06-08 18:15:27', '2025-12-17 19:47:30', 'AnbyDDkA', '5403421'), + (6475, 21, 1451, 'not_attending', '2022-06-18 02:12:59', '2025-12-17 19:47:17', 'AnbyDDkA', '5403967'), + (6476, 21, 1452, 'not_attending', '2022-06-09 18:36:06', '2025-12-17 19:47:30', 'AnbyDDkA', '5404197'), + (6477, 21, 1454, 'maybe', '2022-06-12 17:01:09', '2025-12-17 19:47:31', 'AnbyDDkA', '5404771'), + (6478, 21, 1457, 'not_attending', '2022-06-12 23:31:21', '2025-12-17 19:47:31', 'AnbyDDkA', '5404780'), + (6479, 21, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AnbyDDkA', '5404786'), + (6480, 21, 1460, 'attending', '2022-06-13 23:00:29', '2025-12-17 19:47:31', 'AnbyDDkA', '5404817'), + (6481, 21, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AnbyDDkA', '5405203'), + (6482, 21, 1463, 'not_attending', '2022-06-15 00:07:39', '2025-12-17 19:47:31', 'AnbyDDkA', '5405208'), + (6483, 21, 1464, 'maybe', '2022-06-10 22:18:35', '2025-12-17 19:47:30', 'AnbyDDkA', '5405212'), + (6484, 21, 1465, 'attending', '2022-06-12 21:23:38', '2025-12-17 19:47:31', 'AnbyDDkA', '5406355'), + (6485, 21, 1466, 'not_attending', '2022-06-15 17:38:06', '2025-12-17 19:47:17', 'AnbyDDkA', '5406427'), + (6486, 21, 1469, 'maybe', '2022-06-20 19:56:51', '2025-12-17 19:47:17', 'AnbyDDkA', '5406838'), + (6487, 21, 1470, 'maybe', '2022-06-13 21:28:16', '2025-12-17 19:47:17', 'AnbyDDkA', '5407053'), + (6488, 21, 1473, 'maybe', '2022-06-14 21:20:26', '2025-12-17 19:47:31', 'AnbyDDkA', '5407267'), + (6489, 21, 1480, 'maybe', '2022-06-26 22:54:39', '2025-12-17 19:47:19', 'AnbyDDkA', '5411699'), + (6490, 21, 1482, 'maybe', '2022-06-23 18:54:03', '2025-12-17 19:47:19', 'AnbyDDkA', '5412550'), + (6491, 21, 1484, 'attending', '2022-06-22 19:43:01', '2025-12-17 19:47:17', 'AnbyDDkA', '5415046'), + (6492, 21, 1485, 'attending', '2022-06-21 18:05:18', '2025-12-17 19:47:17', 'AnbyDDkA', '5416276'), + (6493, 21, 1486, 'attending', '2022-07-01 01:46:50', '2025-12-17 19:47:19', 'AnbyDDkA', '5416339'), + (6494, 21, 1488, 'not_attending', '2022-07-01 22:36:16', '2025-12-17 19:47:19', 'AnbyDDkA', '5420154'), + (6495, 21, 1489, 'not_attending', '2022-07-01 22:36:19', '2025-12-17 19:47:19', 'AnbyDDkA', '5420155'), + (6496, 21, 1490, 'not_attending', '2022-07-01 22:36:27', '2025-12-17 19:47:19', 'AnbyDDkA', '5420156'), + (6497, 21, 1491, 'maybe', '2022-07-01 22:36:48', '2025-12-17 19:47:19', 'AnbyDDkA', '5420158'), + (6498, 21, 1492, 'not_attending', '2022-07-01 22:36:36', '2025-12-17 19:47:19', 'AnbyDDkA', '5420175'), + (6499, 21, 1495, 'not_attending', '2022-07-01 22:36:31', '2025-12-17 19:47:19', 'AnbyDDkA', '5422086'), + (6500, 21, 1496, 'not_attending', '2022-06-30 21:04:06', '2025-12-17 19:47:19', 'AnbyDDkA', '5422404'), + (6501, 21, 1498, 'not_attending', '2022-07-01 22:35:59', '2025-12-17 19:47:19', 'AnbyDDkA', '5422406'), + (6502, 21, 1499, 'not_attending', '2022-07-01 22:36:03', '2025-12-17 19:47:19', 'AnbyDDkA', '5422407'), + (6503, 21, 1500, 'not_attending', '2022-07-01 22:36:24', '2025-12-17 19:47:19', 'AnbyDDkA', '5423915'), + (6504, 21, 1501, 'not_attending', '2022-06-29 22:32:50', '2025-12-17 19:47:19', 'AnbyDDkA', '5424546'), + (6505, 21, 1502, 'maybe', '2022-07-01 22:36:43', '2025-12-17 19:47:19', 'AnbyDDkA', '5424565'), + (6506, 21, 1503, 'not_attending', '2022-07-01 22:36:12', '2025-12-17 19:47:19', 'AnbyDDkA', '5426820'), + (6507, 21, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AnbyDDkA', '5426882'), + (6508, 21, 1505, 'maybe', '2022-07-01 22:36:52', '2025-12-17 19:47:19', 'AnbyDDkA', '5427083'), + (6509, 21, 1508, 'maybe', '2022-07-13 23:08:38', '2025-12-17 19:47:19', 'AnbyDDkA', '5433453'), + (6510, 21, 1512, 'attending', '2022-07-12 17:01:31', '2025-12-17 19:47:19', 'AnbyDDkA', '5441112'), + (6511, 21, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AnbyDDkA', '5441125'), + (6512, 21, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AnbyDDkA', '5441126'), + (6513, 21, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AnbyDDkA', '5441128'), + (6514, 21, 1516, 'attending', '2022-08-21 04:20:17', '2025-12-17 19:47:23', 'AnbyDDkA', '5441129'), + (6515, 21, 1517, 'attending', '2022-08-26 09:45:17', '2025-12-17 19:47:23', 'AnbyDDkA', '5441130'), + (6516, 21, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AnbyDDkA', '5441131'), + (6517, 21, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AnbyDDkA', '5441132'), + (6518, 21, 1520, 'not_attending', '2022-07-12 17:01:48', '2025-12-17 19:47:19', 'AnbyDDkA', '5441645'), + (6519, 21, 1521, 'not_attending', '2022-07-12 22:49:41', '2025-12-17 19:47:19', 'AnbyDDkA', '5442180'), + (6520, 21, 1522, 'maybe', '2022-07-19 16:24:48', '2025-12-17 19:47:20', 'AnbyDDkA', '5442832'), + (6521, 21, 1524, 'not_attending', '2022-07-12 17:01:37', '2025-12-17 19:47:19', 'AnbyDDkA', '5443300'), + (6522, 21, 1526, 'not_attending', '2022-07-22 22:20:56', '2025-12-17 19:47:20', 'AnbyDDkA', '5445059'), + (6523, 21, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AnbyDDkA', '5446643'), + (6524, 21, 1532, 'attending', '2022-07-23 17:29:36', '2025-12-17 19:47:20', 'AnbyDDkA', '5448757'), + (6525, 21, 1535, 'attending', '2022-07-19 16:24:42', '2025-12-17 19:47:20', 'AnbyDDkA', '5448830'), + (6526, 21, 1537, 'attending', '2022-07-18 22:26:02', '2025-12-17 19:47:20', 'AnbyDDkA', '5449117'), + (6527, 21, 1538, 'maybe', '2022-07-31 20:57:06', '2025-12-17 19:47:21', 'AnbyDDkA', '5449565'), + (6528, 21, 1539, 'maybe', '2022-07-17 18:38:00', '2025-12-17 19:47:21', 'AnbyDDkA', '5449671'), + (6529, 21, 1540, 'not_attending', '2022-07-21 20:56:21', '2025-12-17 19:47:20', 'AnbyDDkA', '5453325'), + (6530, 21, 1542, 'attending', '2022-07-18 19:05:22', '2025-12-17 19:47:20', 'AnbyDDkA', '5454064'), + (6531, 21, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AnbyDDkA', '5454516'), + (6532, 21, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AnbyDDkA', '5454605'), + (6533, 21, 1546, 'attending', '2022-07-27 20:59:13', '2025-12-17 19:47:20', 'AnbyDDkA', '5454607'), + (6534, 21, 1549, 'maybe', '2022-07-19 18:51:10', '2025-12-17 19:47:20', 'AnbyDDkA', '5454789'), + (6535, 21, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AnbyDDkA', '5455037'), + (6536, 21, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AnbyDDkA', '5461278'), + (6537, 21, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AnbyDDkA', '5469480'), + (6538, 21, 1565, 'attending', '2022-07-25 23:34:24', '2025-12-17 19:47:21', 'AnbyDDkA', '5471073'), + (6539, 21, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AnbyDDkA', '5474663'), + (6540, 21, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AnbyDDkA', '5482022'), + (6541, 21, 1575, 'attending', '2022-08-26 17:34:52', '2025-12-17 19:47:23', 'AnbyDDkA', '5482250'), + (6542, 21, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AnbyDDkA', '5482793'), + (6543, 21, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AnbyDDkA', '5488912'), + (6544, 21, 1582, 'maybe', '2022-08-13 21:39:30', '2025-12-17 19:47:23', 'AnbyDDkA', '5492001'), + (6545, 21, 1586, 'not_attending', '2022-08-19 05:25:59', '2025-12-17 19:47:23', 'AnbyDDkA', '5492019'), + (6546, 21, 1587, 'maybe', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AnbyDDkA', '5492192'), + (6547, 21, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AnbyDDkA', '5493139'), + (6548, 21, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AnbyDDkA', '5493200'), + (6549, 21, 1593, 'attending', '2022-08-09 04:25:57', '2025-12-17 19:47:22', 'AnbyDDkA', '5494043'), + (6550, 21, 1602, 'attending', '2022-08-11 16:27:08', '2025-12-17 19:47:22', 'AnbyDDkA', '5497383'), + (6551, 21, 1603, 'not_attending', '2022-08-13 21:39:50', '2025-12-17 19:47:23', 'AnbyDDkA', '5497895'), + (6552, 21, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AnbyDDkA', '5502188'), + (6553, 21, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AnbyDDkA', '5505059'), + (6554, 21, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AnbyDDkA', '5509055'), + (6555, 21, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AnbyDDkA', '5512862'), + (6556, 21, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AnbyDDkA', '5513985'), + (6557, 21, 1625, 'attending', '2022-08-25 18:35:58', '2025-12-17 19:47:23', 'AnbyDDkA', '5519736'), + (6558, 21, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'AnbyDDkA', '5519981'), + (6559, 21, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AnbyDDkA', '5522550'), + (6560, 21, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AnbyDDkA', '5534683'), + (6561, 21, 1631, 'attending', '2022-08-27 14:12:56', '2025-12-17 19:47:23', 'AnbyDDkA', '5534684'), + (6562, 21, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AnbyDDkA', '5537735'), + (6563, 21, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AnbyDDkA', '5540859'), + (6564, 21, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AnbyDDkA', '5546619'), + (6565, 21, 1652, 'attending', '2022-09-10 22:07:47', '2025-12-17 19:47:24', 'AnbyDDkA', '5552671'), + (6566, 21, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AnbyDDkA', '5555245'), + (6567, 21, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AnbyDDkA', '5557747'), + (6568, 21, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AnbyDDkA', '5560255'), + (6569, 21, 1663, 'attending', '2022-09-10 13:23:01', '2025-12-17 19:47:24', 'AnbyDDkA', '5562345'), + (6570, 21, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AnbyDDkA', '5562906'), + (6571, 21, 1667, 'attending', '2022-09-24 15:49:57', '2025-12-17 19:47:11', 'AnbyDDkA', '5563221'), + (6572, 21, 1668, 'not_attending', '2022-10-01 11:33:07', '2025-12-17 19:47:12', 'AnbyDDkA', '5563222'), + (6573, 21, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AnbyDDkA', '5600604'), + (6574, 21, 1682, 'attending', '2022-09-24 21:35:35', '2025-12-17 19:47:11', 'AnbyDDkA', '5605317'), + (6575, 21, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AnbyDDkA', '5605544'), + (6576, 21, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'AnbyDDkA', '5606737'), + (6577, 21, 1700, 'maybe', '2022-10-01 11:33:03', '2025-12-17 19:47:12', 'AnbyDDkA', '5606814'), + (6578, 21, 1702, 'attending', '2022-09-30 05:50:56', '2025-12-17 19:47:12', 'AnbyDDkA', '5609173'), + (6579, 21, 1717, 'maybe', '2022-10-21 20:16:40', '2025-12-17 19:47:13', 'AnbyDDkA', '5622842'), + (6580, 21, 1718, 'maybe', '2022-10-18 20:30:15', '2025-12-17 19:47:12', 'AnbyDDkA', '5630907'), + (6581, 21, 1719, 'attending', '2022-10-05 17:41:59', '2025-12-17 19:47:12', 'AnbyDDkA', '5630958'), + (6582, 21, 1721, 'attending', '2022-10-18 20:31:22', '2025-12-17 19:47:13', 'AnbyDDkA', '5630960'), + (6583, 21, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AnbyDDkA', '5630961'), + (6584, 21, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AnbyDDkA', '5630962'), + (6585, 21, 1724, 'maybe', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AnbyDDkA', '5630966'), + (6586, 21, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AnbyDDkA', '5630967'), + (6587, 21, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AnbyDDkA', '5630968'), + (6588, 21, 1727, 'not_attending', '2022-12-02 16:07:50', '2025-12-17 19:47:16', 'AnbyDDkA', '5630969'), + (6589, 21, 1731, 'attending', '2022-10-07 14:58:01', '2025-12-17 19:47:12', 'AnbyDDkA', '5635226'), + (6590, 21, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AnbyDDkA', '5635406'), + (6591, 21, 1735, 'attending', '2022-10-08 17:06:25', '2025-12-17 19:47:12', 'AnbyDDkA', '5637484'), + (6592, 21, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AnbyDDkA', '5638765'), + (6593, 21, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AnbyDDkA', '5640097'), + (6594, 21, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AnbyDDkA', '5640843'), + (6595, 21, 1742, 'not_attending', '2022-10-18 20:30:36', '2025-12-17 19:47:13', 'AnbyDDkA', '5641245'), + (6596, 21, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AnbyDDkA', '5641521'), + (6597, 21, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AnbyDDkA', '5642818'), + (6598, 21, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AnbyDDkA', '5652395'), + (6599, 21, 1758, 'attending', '2022-10-21 12:56:27', '2025-12-17 19:47:13', 'AnbyDDkA', '5668976'), + (6600, 21, 1759, 'attending', '2022-10-21 15:07:34', '2025-12-17 19:47:13', 'AnbyDDkA', '5669097'), + (6601, 21, 1761, 'maybe', '2022-11-18 16:15:52', '2025-12-17 19:47:16', 'AnbyDDkA', '5670434'), + (6602, 21, 1762, 'attending', '2022-11-18 16:17:22', '2025-12-17 19:47:16', 'AnbyDDkA', '5670445'), + (6603, 21, 1764, 'not_attending', '2022-10-24 13:22:45', '2025-12-17 19:47:14', 'AnbyDDkA', '5671637'), + (6604, 21, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AnbyDDkA', '5672329'), + (6605, 21, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AnbyDDkA', '5674057'), + (6606, 21, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AnbyDDkA', '5674060'), + (6607, 21, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AnbyDDkA', '5677461'), + (6608, 21, 1775, 'attending', '2022-10-27 16:25:50', '2025-12-17 19:47:14', 'AnbyDDkA', '5679063'), + (6609, 21, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AnbyDDkA', '5698046'), + (6610, 21, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AnbyDDkA', '5699760'), + (6611, 21, 1790, 'attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'AnbyDDkA', '5727424'), + (6612, 21, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AnbyDDkA', '5741601'), + (6613, 21, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AnbyDDkA', '5763458'), + (6614, 21, 1805, 'maybe', '2023-01-31 10:33:00', '2025-12-17 19:47:06', 'AnbyDDkA', '5764675'), + (6615, 21, 1806, 'maybe', '2023-01-21 03:31:05', '2025-12-17 19:47:05', 'AnbyDDkA', '5764676'), + (6616, 21, 1807, 'maybe', '2023-01-10 02:34:21', '2025-12-17 19:47:05', 'AnbyDDkA', '5764677'), + (6617, 21, 1808, 'attending', '2023-03-04 08:54:30', '2025-12-17 19:47:08', 'AnbyDDkA', '5764678'), + (6618, 21, 1809, 'attending', '2023-04-15 16:10:24', '2025-12-17 19:46:59', 'AnbyDDkA', '5764679'), + (6619, 21, 1810, 'maybe', '2023-04-22 22:15:39', '2025-12-17 19:47:00', 'AnbyDDkA', '5764680'), + (6620, 21, 1811, 'attending', '2023-05-01 10:08:58', '2025-12-17 19:47:02', 'AnbyDDkA', '5764681'), + (6621, 21, 1812, 'attending', '2023-03-06 13:55:22', '2025-12-17 19:47:09', 'AnbyDDkA', '5764682'), + (6622, 21, 1813, 'attending', '2023-04-23 02:17:40', '2025-12-17 19:47:01', 'AnbyDDkA', '5764683'), + (6623, 21, 1816, 'attending', '2023-05-15 11:33:21', '2025-12-17 19:47:03', 'AnbyDDkA', '5764686'), + (6624, 21, 1818, 'not_attending', '2023-02-10 19:42:30', '2025-12-17 19:47:07', 'AnbyDDkA', '5764688'), + (6625, 21, 1819, 'attending', '2023-04-01 21:56:12', '2025-12-17 19:46:58', 'AnbyDDkA', '5764689'), + (6626, 21, 1820, 'attending', '2023-04-08 18:05:18', '2025-12-17 19:46:58', 'AnbyDDkA', '5764690'), + (6627, 21, 1821, 'maybe', '2023-03-16 22:32:32', '2025-12-17 19:46:56', 'AnbyDDkA', '5764691'), + (6628, 21, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AnbyDDkA', '5774172'), + (6629, 21, 1828, 'not_attending', '2022-11-28 21:34:53', '2025-12-17 19:47:16', 'AnbyDDkA', '5778865'), + (6630, 21, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'AnbyDDkA', '5818247'), + (6631, 21, 1834, 'not_attending', '2022-12-10 13:22:21', '2025-12-17 19:47:17', 'AnbyDDkA', '5819470'), + (6632, 21, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AnbyDDkA', '5819471'), + (6633, 21, 1841, 'attending', '2023-01-08 12:00:37', '2025-12-17 19:47:05', 'AnbyDDkA', '5827665'), + (6634, 21, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AnbyDDkA', '5827739'), + (6635, 21, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AnbyDDkA', '5844306'), + (6636, 21, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AnbyDDkA', '5850159'), + (6637, 21, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AnbyDDkA', '5858999'), + (6638, 21, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AnbyDDkA', '5871984'), + (6639, 21, 1855, 'maybe', '2023-01-13 17:23:48', '2025-12-17 19:47:05', 'AnbyDDkA', '5873968'), + (6640, 21, 1859, 'attending', '2023-01-21 00:52:55', '2025-12-17 19:47:05', 'AnbyDDkA', '5876234'), + (6641, 21, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AnbyDDkA', '5876354'), + (6642, 21, 1864, 'attending', '2023-01-16 17:23:43', '2025-12-17 19:47:05', 'AnbyDDkA', '5879675'), + (6643, 21, 1865, 'attending', '2023-01-28 17:28:42', '2025-12-17 19:47:06', 'AnbyDDkA', '5879676'), + (6644, 21, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AnbyDDkA', '5880939'), + (6645, 21, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AnbyDDkA', '5880940'), + (6646, 21, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AnbyDDkA', '5880942'), + (6647, 21, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AnbyDDkA', '5880943'), + (6648, 21, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AnbyDDkA', '5887890'), + (6649, 21, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AnbyDDkA', '5888598'), + (6650, 21, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AnbyDDkA', '5893260'), + (6651, 21, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AnbyDDkA', '5899826'), + (6652, 21, 1886, 'maybe', '2023-03-07 11:20:10', '2025-12-17 19:47:09', 'AnbyDDkA', '5899930'), + (6653, 21, 1888, 'maybe', '2023-02-17 18:48:01', '2025-12-17 19:47:07', 'AnbyDDkA', '5900197'), + (6654, 21, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AnbyDDkA', '5900199'), + (6655, 21, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AnbyDDkA', '5900200'), + (6656, 21, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AnbyDDkA', '5900202'), + (6657, 21, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AnbyDDkA', '5900203'), + (6658, 21, 1893, 'not_attending', '2023-02-01 00:51:30', '2025-12-17 19:47:06', 'AnbyDDkA', '5901055'), + (6659, 21, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AnbyDDkA', '5901108'), + (6660, 21, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AnbyDDkA', '5901126'), + (6661, 21, 1897, 'not_attending', '2023-02-05 17:01:02', '2025-12-17 19:47:07', 'AnbyDDkA', '5901128'), + (6662, 21, 1899, 'maybe', '2023-02-10 19:42:20', '2025-12-17 19:47:07', 'AnbyDDkA', '5901323'), + (6663, 21, 1900, 'attending', '2023-02-01 00:45:28', '2025-12-17 19:47:06', 'AnbyDDkA', '5901331'), + (6664, 21, 1906, 'not_attending', '2023-03-09 13:27:58', '2025-12-17 19:47:09', 'AnbyDDkA', '5904523'), + (6665, 21, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AnbyDDkA', '5909655'), + (6666, 21, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AnbyDDkA', '5910522'), + (6667, 21, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AnbyDDkA', '5910526'), + (6668, 21, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AnbyDDkA', '5910528'), + (6669, 21, 1922, 'maybe', '2023-02-13 00:49:06', '2025-12-17 19:47:07', 'AnbyDDkA', '5916219'), + (6670, 21, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AnbyDDkA', '5936234'), + (6671, 21, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AnbyDDkA', '5958351'), + (6672, 21, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AnbyDDkA', '5959751'), + (6673, 21, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AnbyDDkA', '5959755'), + (6674, 21, 1940, 'attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AnbyDDkA', '5960055'), + (6675, 21, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AnbyDDkA', '5961684'), + (6676, 21, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'AnbyDDkA', '5962132'), + (6677, 21, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'AnbyDDkA', '5962133'), + (6678, 21, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AnbyDDkA', '5962134'), + (6679, 21, 1947, 'not_attending', '2023-03-05 00:18:30', '2025-12-17 19:47:09', 'AnbyDDkA', '5962233'), + (6680, 21, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AnbyDDkA', '5962317'), + (6681, 21, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AnbyDDkA', '5962318'), + (6682, 21, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AnbyDDkA', '5965933'), + (6683, 21, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AnbyDDkA', '5967014'), + (6684, 21, 1956, 'maybe', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'AnbyDDkA', '5972763'), + (6685, 21, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AnbyDDkA', '5972815'), + (6686, 21, 1958, 'maybe', '2023-03-06 13:58:58', '2025-12-17 19:47:09', 'AnbyDDkA', '5972821'), + (6687, 21, 1960, 'attending', '2023-03-06 14:32:12', '2025-12-17 19:47:09', 'AnbyDDkA', '5973267'), + (6688, 21, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AnbyDDkA', '5974016'), + (6689, 21, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AnbyDDkA', '5981515'), + (6690, 21, 1967, 'attending', '2023-03-12 04:20:09', '2025-12-17 19:47:10', 'AnbyDDkA', '5985650'), + (6691, 21, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AnbyDDkA', '5993516'), + (6692, 21, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AnbyDDkA', '5998939'), + (6693, 21, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AnbyDDkA', '6028191'), + (6694, 21, 1979, 'maybe', '2023-03-18 22:21:42', '2025-12-17 19:46:56', 'AnbyDDkA', '6030009'), + (6695, 21, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AnbyDDkA', '6040066'), + (6696, 21, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AnbyDDkA', '6042717'), + (6697, 21, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AnbyDDkA', '6044838'), + (6698, 21, 1987, 'maybe', '2023-04-15 23:00:58', '2025-12-17 19:47:00', 'AnbyDDkA', '6044839'), + (6699, 21, 1988, 'maybe', '2023-04-26 14:25:01', '2025-12-17 19:47:01', 'AnbyDDkA', '6044840'), + (6700, 21, 1989, 'maybe', '2023-05-14 21:43:40', '2025-12-17 19:47:03', 'AnbyDDkA', '6044842'), + (6701, 21, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AnbyDDkA', '6045684'), + (6702, 21, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'AnbyDDkA', '6050104'), + (6703, 21, 2002, 'maybe', '2023-04-28 15:59:34', '2025-12-17 19:47:01', 'AnbyDDkA', '6052605'), + (6704, 21, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AnbyDDkA', '6053195'), + (6705, 21, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AnbyDDkA', '6053198'), + (6706, 21, 2010, 'maybe', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AnbyDDkA', '6056085'), + (6707, 21, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AnbyDDkA', '6056916'), + (6708, 21, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AnbyDDkA', '6059290'), + (6709, 21, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AnbyDDkA', '6060328'), + (6710, 21, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AnbyDDkA', '6061037'), + (6711, 21, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AnbyDDkA', '6061039'), + (6712, 21, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AnbyDDkA', '6067245'), + (6713, 21, 2025, 'attending', '2023-04-23 02:17:34', '2025-12-17 19:47:00', 'AnbyDDkA', '6067457'), + (6714, 21, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AnbyDDkA', '6068094'), + (6715, 21, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AnbyDDkA', '6068252'), + (6716, 21, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AnbyDDkA', '6068253'), + (6717, 21, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AnbyDDkA', '6068254'), + (6718, 21, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AnbyDDkA', '6068280'), + (6719, 21, 2032, 'not_attending', '2023-05-28 01:49:32', '2025-12-17 19:47:04', 'AnbyDDkA', '6068281'), + (6720, 21, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AnbyDDkA', '6069093'), + (6721, 21, 2035, 'not_attending', '2023-05-04 18:48:28', '2025-12-17 19:47:02', 'AnbyDDkA', '6070142'), + (6722, 21, 2038, 'maybe', '2023-04-28 15:59:28', '2025-12-17 19:47:01', 'AnbyDDkA', '6071944'), + (6723, 21, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'AnbyDDkA', '6072528'), + (6724, 21, 2042, 'attending', '2023-04-24 20:43:19', '2025-12-17 19:47:01', 'AnbyDDkA', '6072941'), + (6725, 21, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AnbyDDkA', '6079840'), + (6726, 21, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AnbyDDkA', '6083398'), + (6727, 21, 2054, 'maybe', '2023-05-14 21:43:45', '2025-12-17 19:47:03', 'AnbyDDkA', '6093445'), + (6728, 21, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AnbyDDkA', '6093504'), + (6729, 21, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AnbyDDkA', '6097414'), + (6730, 21, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AnbyDDkA', '6097442'), + (6731, 21, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AnbyDDkA', '6097684'), + (6732, 21, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AnbyDDkA', '6098762'), + (6733, 21, 2064, 'maybe', '2023-06-09 13:39:25', '2025-12-17 19:46:50', 'AnbyDDkA', '6099988'), + (6734, 21, 2065, 'maybe', '2023-06-16 04:47:42', '2025-12-17 19:46:49', 'AnbyDDkA', '6101169'), + (6735, 21, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AnbyDDkA', '6101361'), + (6736, 21, 2067, 'maybe', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AnbyDDkA', '6101362'), + (6737, 21, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AnbyDDkA', '6103752'), + (6738, 21, 2071, 'maybe', '2023-05-15 17:13:53', '2025-12-17 19:47:03', 'AnbyDDkA', '6104949'), + (6739, 21, 2073, 'attending', '2023-05-15 19:05:46', '2025-12-17 19:47:03', 'AnbyDDkA', '6106002'), + (6740, 21, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AnbyDDkA', '6107314'), + (6741, 21, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'AnbyDDkA', '6120034'), + (6742, 21, 2094, 'not_attending', '2023-06-09 13:39:11', '2025-12-17 19:47:04', 'AnbyDDkA', '6135924'), + (6743, 21, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AnbyDDkA', '6136733'), + (6744, 21, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AnbyDDkA', '6137989'), + (6745, 21, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AnbyDDkA', '6150864'), + (6746, 21, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'AnbyDDkA', '6155491'), + (6747, 21, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AnbyDDkA', '6164417'), + (6748, 21, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AnbyDDkA', '6166388'), + (6749, 21, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'AnbyDDkA', '6176439'), + (6750, 21, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AnbyDDkA', '6182410'), + (6751, 21, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AnbyDDkA', '6185812'), + (6752, 21, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AnbyDDkA', '6187651'), + (6753, 21, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AnbyDDkA', '6187963'), + (6754, 21, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AnbyDDkA', '6187964'), + (6755, 21, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AnbyDDkA', '6187966'), + (6756, 21, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AnbyDDkA', '6187967'), + (6757, 21, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AnbyDDkA', '6187969'), + (6758, 21, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AnbyDDkA', '6334878'), + (6759, 21, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AnbyDDkA', '6337236'), + (6760, 21, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AnbyDDkA', '6337970'), + (6761, 21, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AnbyDDkA', '6338308'), + (6762, 21, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'AnbyDDkA', '6340845'), + (6763, 21, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AnbyDDkA', '6341710'), + (6764, 21, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AnbyDDkA', '6342044'), + (6765, 21, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AnbyDDkA', '6342298'), + (6766, 21, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AnbyDDkA', '6343294'), + (6767, 21, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AnbyDDkA', '6347034'), + (6768, 21, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AnbyDDkA', '6347056'), + (6769, 21, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AnbyDDkA', '6353830'), + (6770, 21, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AnbyDDkA', '6353831'), + (6771, 21, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AnbyDDkA', '6357867'), + (6772, 21, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AnbyDDkA', '6358652'), + (6773, 21, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AnbyDDkA', '6361709'), + (6774, 21, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AnbyDDkA', '6361710'), + (6775, 21, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AnbyDDkA', '6361711'), + (6776, 21, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AnbyDDkA', '6361712'), + (6777, 21, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AnbyDDkA', '6361713'), + (6778, 21, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AnbyDDkA', '6382573'), + (6779, 21, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AnbyDDkA', '6388604'), + (6780, 21, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AnbyDDkA', '6394629'), + (6781, 21, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AnbyDDkA', '6394631'), + (6782, 21, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AnbyDDkA', '6440863'), + (6783, 21, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AnbyDDkA', '6445440'), + (6784, 21, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AnbyDDkA', '6453951'), + (6785, 21, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AnbyDDkA', '6461696'), + (6786, 21, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AnbyDDkA', '6462129'), + (6787, 21, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AnbyDDkA', '6463218'), + (6788, 21, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AnbyDDkA', '6472181'), + (6789, 21, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AnbyDDkA', '6482693'), + (6790, 21, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'AnbyDDkA', '6484200'), + (6791, 21, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'AnbyDDkA', '6484680'), + (6792, 21, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AnbyDDkA', '6507741'), + (6793, 21, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AnbyDDkA', '6514659'), + (6794, 21, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AnbyDDkA', '6514660'), + (6795, 21, 2324, 'attending', '2023-12-07 20:59:19', '2025-12-17 19:46:49', 'AnbyDDkA', '6514662'), + (6796, 21, 2325, 'attending', '2023-12-07 20:59:31', '2025-12-17 19:46:36', 'AnbyDDkA', '6514663'), + (6797, 21, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AnbyDDkA', '6519103'), + (6798, 21, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AnbyDDkA', '6535681'), + (6799, 21, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AnbyDDkA', '6584747'), + (6800, 21, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AnbyDDkA', '6587097'), + (6801, 21, 2356, 'maybe', '2023-12-09 22:49:55', '2025-12-17 19:46:36', 'AnbyDDkA', '6593340'), + (6802, 21, 2362, 'maybe', '2023-12-07 21:02:23', '2025-12-17 19:46:49', 'AnbyDDkA', '6605708'), + (6803, 21, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AnbyDDkA', '6609022'), + (6804, 21, 2366, 'maybe', '2023-12-07 22:41:31', '2025-12-17 19:46:36', 'AnbyDDkA', '6615304'), + (6805, 21, 2367, 'attending', '2023-12-09 22:39:14', '2025-12-17 19:46:49', 'AnbyDDkA', '6620890'), + (6806, 21, 2371, 'maybe', '2023-12-15 22:00:03', '2025-12-17 19:46:36', 'AnbyDDkA', '6624495'), + (6807, 21, 2373, 'attending', '2023-12-21 17:52:07', '2025-12-17 19:46:38', 'AnbyDDkA', '6632678'), + (6808, 21, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AnbyDDkA', '6632757'), + (6809, 21, 2376, 'not_attending', '2024-01-15 09:23:41', '2025-12-17 19:46:40', 'AnbyDDkA', '6642900'), + (6810, 21, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AnbyDDkA', '6644187'), + (6811, 21, 2380, 'attending', '2023-12-31 17:28:43', '2025-12-17 19:46:37', 'AnbyDDkA', '6645105'), + (6812, 21, 2381, 'maybe', '2024-01-01 16:49:40', '2025-12-17 19:46:37', 'AnbyDDkA', '6646398'), + (6813, 21, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AnbyDDkA', '6648951'), + (6814, 21, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AnbyDDkA', '6648952'), + (6815, 21, 2388, 'attending', '2024-01-03 19:27:06', '2025-12-17 19:46:37', 'AnbyDDkA', '6649244'), + (6816, 21, 2389, 'attending', '2024-01-03 20:03:26', '2025-12-17 19:46:40', 'AnbyDDkA', '6651094'), + (6817, 21, 2390, 'maybe', '2024-01-07 18:52:43', '2025-12-17 19:46:37', 'AnbyDDkA', '6651141'), + (6818, 21, 2393, 'not_attending', '2024-01-15 00:30:36', '2025-12-17 19:46:38', 'AnbyDDkA', '6654468'), + (6819, 21, 2394, 'not_attending', '2024-01-15 09:21:59', '2025-12-17 19:46:38', 'AnbyDDkA', '6654470'), + (6820, 21, 2395, 'not_attending', '2024-01-16 18:02:47', '2025-12-17 19:46:38', 'AnbyDDkA', '6654471'), + (6821, 21, 2396, 'not_attending', '2024-01-15 09:21:11', '2025-12-17 19:46:38', 'AnbyDDkA', '6655401'), + (6822, 21, 2399, 'maybe', '2024-01-13 23:46:42', '2025-12-17 19:46:38', 'AnbyDDkA', '6657583'), + (6823, 21, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AnbyDDkA', '6661585'), + (6824, 21, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AnbyDDkA', '6661588'), + (6825, 21, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AnbyDDkA', '6661589'), + (6826, 21, 2404, 'not_attending', '2024-01-15 09:21:36', '2025-12-17 19:46:38', 'AnbyDDkA', '6666858'), + (6827, 21, 2405, 'not_attending', '2024-01-15 09:22:03', '2025-12-17 19:46:38', 'AnbyDDkA', '6667332'), + (6828, 21, 2406, 'not_attending', '2024-01-15 09:23:01', '2025-12-17 19:46:40', 'AnbyDDkA', '6692344'), + (6829, 21, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AnbyDDkA', '6699906'), + (6830, 21, 2408, 'attending', '2024-01-15 09:23:24', '2025-12-17 19:46:40', 'AnbyDDkA', '6699907'), + (6831, 21, 2409, 'not_attending', '2024-02-01 17:57:46', '2025-12-17 19:46:41', 'AnbyDDkA', '6699909'), + (6832, 21, 2410, 'attending', '2024-02-05 14:43:23', '2025-12-17 19:46:41', 'AnbyDDkA', '6699911'), + (6833, 21, 2411, 'attending', '2024-02-13 05:40:07', '2025-12-17 19:46:41', 'AnbyDDkA', '6699913'), + (6834, 21, 2412, 'attending', '2024-02-19 16:50:51', '2025-12-17 19:46:43', 'AnbyDDkA', '6700717'), + (6835, 21, 2413, 'maybe', '2024-02-13 05:40:23', '2025-12-17 19:46:42', 'AnbyDDkA', '6700719'), + (6836, 21, 2414, 'attending', '2024-01-16 01:37:31', '2025-12-17 19:46:40', 'AnbyDDkA', '6701000'), + (6837, 21, 2415, 'attending', '2024-01-16 01:42:34', '2025-12-17 19:46:40', 'AnbyDDkA', '6701001'), + (6838, 21, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AnbyDDkA', '6701109'), + (6839, 21, 2419, 'maybe', '2024-01-18 15:36:18', '2025-12-17 19:46:41', 'AnbyDDkA', '6704505'), + (6840, 21, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AnbyDDkA', '6705219'), + (6841, 21, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AnbyDDkA', '6710153'), + (6842, 21, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AnbyDDkA', '6711552'), + (6843, 21, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AnbyDDkA', '6711553'), + (6844, 21, 2432, 'not_attending', '2024-02-03 11:47:26', '2025-12-17 19:46:41', 'AnbyDDkA', '6712822'), + (6845, 21, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AnbyDDkA', '6722688'), + (6846, 21, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AnbyDDkA', '6730620'), + (6847, 21, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AnbyDDkA', '6730642'), + (6848, 21, 2443, 'not_attending', '2024-02-03 11:47:20', '2025-12-17 19:46:41', 'AnbyDDkA', '6733775'), + (6849, 21, 2450, 'maybe', '2024-02-11 04:47:37', '2025-12-17 19:46:41', 'AnbyDDkA', '6738807'), + (6850, 21, 2452, 'maybe', '2024-02-13 14:13:02', '2025-12-17 19:46:41', 'AnbyDDkA', '6740361'), + (6851, 21, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AnbyDDkA', '6740364'), + (6852, 21, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AnbyDDkA', '6743829'), + (6853, 21, 2461, 'attending', '2024-02-10 20:13:30', '2025-12-17 19:46:41', 'AnbyDDkA', '6744245'), + (6854, 21, 2467, 'maybe', '2024-02-25 14:46:29', '2025-12-17 19:46:43', 'AnbyDDkA', '7029987'), + (6855, 21, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AnbyDDkA', '7030380'), + (6856, 21, 2471, 'not_attending', '2024-02-19 16:51:46', '2025-12-17 19:46:42', 'AnbyDDkA', '7032425'), + (6857, 21, 2472, 'not_attending', '2024-02-20 08:52:02', '2025-12-17 19:46:42', 'AnbyDDkA', '7033677'), + (6858, 21, 2474, 'attending', '2024-02-21 00:20:32', '2025-12-17 19:46:43', 'AnbyDDkA', '7035415'), + (6859, 21, 2475, 'not_attending', '2024-02-28 10:41:45', '2025-12-17 19:46:43', 'AnbyDDkA', '7035643'), + (6860, 21, 2478, 'attending', '2024-02-21 00:20:10', '2025-12-17 19:46:43', 'AnbyDDkA', '7036478'), + (6861, 21, 2480, 'attending', '2024-02-25 14:46:33', '2025-12-17 19:46:43', 'AnbyDDkA', '7042160'), + (6862, 21, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AnbyDDkA', '7044715'), + (6863, 21, 2489, 'not_attending', '2024-02-28 10:41:52', '2025-12-17 19:46:43', 'AnbyDDkA', '7050161'), + (6864, 21, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AnbyDDkA', '7050318'), + (6865, 21, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AnbyDDkA', '7050319'), + (6866, 21, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AnbyDDkA', '7050322'), + (6867, 21, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AnbyDDkA', '7057804'), + (6868, 21, 2500, 'maybe', '2024-03-06 21:18:23', '2025-12-17 19:46:43', 'AnbyDDkA', '7058603'), + (6869, 21, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'AnbyDDkA', '7059866'), + (6870, 21, 2504, 'not_attending', '2024-03-21 17:42:49', '2025-12-17 19:46:33', 'AnbyDDkA', '7063296'), + (6871, 21, 2505, 'maybe', '2024-03-21 17:42:44', '2025-12-17 19:46:33', 'AnbyDDkA', '7069163'), + (6872, 21, 2506, 'attending', '2024-03-09 23:51:00', '2025-12-17 19:46:44', 'AnbyDDkA', '7069242'), + (6873, 21, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AnbyDDkA', '7072824'), + (6874, 21, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AnbyDDkA', '7074348'), + (6875, 21, 2510, 'maybe', '2024-03-21 17:42:37', '2025-12-17 19:46:33', 'AnbyDDkA', '7074350'), + (6876, 21, 2511, 'maybe', '2024-04-11 22:25:06', '2025-12-17 19:46:33', 'AnbyDDkA', '7074351'), + (6877, 21, 2513, 'maybe', '2024-04-14 16:39:21', '2025-12-17 19:46:34', 'AnbyDDkA', '7074353'), + (6878, 21, 2522, 'maybe', '2024-07-15 19:42:03', '2025-12-17 19:46:30', 'AnbyDDkA', '7074362'), + (6879, 21, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AnbyDDkA', '7074364'), + (6880, 21, 2525, 'not_attending', '2024-06-13 20:33:31', '2025-12-17 19:46:28', 'AnbyDDkA', '7074365'), + (6881, 21, 2529, 'maybe', '2024-05-22 23:03:41', '2025-12-17 19:46:35', 'AnbyDDkA', '7074369'), + (6882, 21, 2532, 'not_attending', '2024-09-04 19:03:11', '2025-12-17 19:46:32', 'AnbyDDkA', '7074383'), + (6883, 21, 2539, 'attending', '2024-04-06 21:30:28', '2025-12-17 19:46:33', 'AnbyDDkA', '7085486'), + (6884, 21, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AnbyDDkA', '7089267'), + (6885, 21, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AnbyDDkA', '7098747'), + (6886, 21, 2551, 'attending', '2024-04-01 20:46:28', '2025-12-17 19:46:33', 'AnbyDDkA', '7109912'), + (6887, 21, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AnbyDDkA', '7113468'), + (6888, 21, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AnbyDDkA', '7114856'), + (6889, 21, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AnbyDDkA', '7114951'), + (6890, 21, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AnbyDDkA', '7114955'), + (6891, 21, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AnbyDDkA', '7114956'), + (6892, 21, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AnbyDDkA', '7114957'), + (6893, 21, 2564, 'maybe', '2024-04-10 20:14:40', '2025-12-17 19:46:33', 'AnbyDDkA', '7134735'), + (6894, 21, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AnbyDDkA', '7153615'), + (6895, 21, 2571, 'maybe', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AnbyDDkA', '7159484'), + (6896, 21, 2572, 'attending', '2024-04-13 10:55:40', '2025-12-17 19:46:33', 'AnbyDDkA', '7159522'), + (6897, 21, 2573, 'maybe', '2024-04-14 16:38:57', '2025-12-17 19:46:34', 'AnbyDDkA', '7160612'), + (6898, 21, 2574, 'attending', '2024-04-13 17:50:15', '2025-12-17 19:46:33', 'AnbyDDkA', '7163825'), + (6899, 21, 2578, 'not_attending', '2024-04-13 19:34:31', '2025-12-17 19:46:34', 'AnbyDDkA', '7167016'), + (6900, 21, 2580, 'not_attending', '2024-04-13 19:34:36', '2025-12-17 19:46:34', 'AnbyDDkA', '7167272'), + (6901, 21, 2583, 'not_attending', '2024-04-14 16:38:43', '2025-12-17 19:46:34', 'AnbyDDkA', '7172946'), + (6902, 21, 2584, 'not_attending', '2024-04-21 16:30:55', '2025-12-17 19:46:34', 'AnbyDDkA', '7175057'), + (6903, 21, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AnbyDDkA', '7178446'), + (6904, 21, 2591, 'maybe', '2024-04-19 21:47:13', '2025-12-17 19:46:34', 'AnbyDDkA', '7180957'), + (6905, 21, 2592, 'attending', '2024-04-20 00:02:57', '2025-12-17 19:46:34', 'AnbyDDkA', '7180959'), + (6906, 21, 2596, 'attending', '2024-04-21 13:02:56', '2025-12-17 19:46:34', 'AnbyDDkA', '7183788'), + (6907, 21, 2597, 'not_attending', '2024-04-26 21:57:00', '2025-12-17 19:46:34', 'AnbyDDkA', '7186726'), + (6908, 21, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AnbyDDkA', '7220467'), + (6909, 21, 2609, 'attending', '2024-05-06 19:29:54', '2025-12-17 19:46:35', 'AnbyDDkA', '7240354'), + (6910, 21, 2614, 'maybe', '2024-05-10 13:12:06', '2025-12-17 19:46:35', 'AnbyDDkA', '7247645'), + (6911, 21, 2615, 'not_attending', '2024-05-03 14:48:20', '2025-12-17 19:46:35', 'AnbyDDkA', '7249787'), + (6912, 21, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AnbyDDkA', '7251633'), + (6913, 21, 2619, 'maybe', '2024-05-10 13:12:09', '2025-12-17 19:46:35', 'AnbyDDkA', '7252965'), + (6914, 21, 2622, 'not_attending', '2024-05-10 13:12:16', '2025-12-17 19:46:35', 'AnbyDDkA', '7262064'), + (6915, 21, 2623, 'attending', '2024-05-10 13:07:31', '2025-12-17 19:46:35', 'AnbyDDkA', '7263048'), + (6916, 21, 2626, 'attending', '2024-05-13 18:42:23', '2025-12-17 19:46:35', 'AnbyDDkA', '7264723'), + (6917, 21, 2627, 'not_attending', '2024-05-13 18:32:35', '2025-12-17 19:46:35', 'AnbyDDkA', '7264724'), + (6918, 21, 2628, 'maybe', '2024-05-27 04:08:14', '2025-12-17 19:46:36', 'AnbyDDkA', '7264725'), + (6919, 21, 2629, 'attending', '2024-05-27 04:08:17', '2025-12-17 19:46:28', 'AnbyDDkA', '7264726'), + (6920, 21, 2643, 'attending', '2024-05-18 12:26:57', '2025-12-17 19:46:35', 'AnbyDDkA', '7276587'), + (6921, 21, 2647, 'attending', '2024-06-09 16:04:54', '2025-12-17 19:46:28', 'AnbyDDkA', '7282057'), + (6922, 21, 2649, 'attending', '2024-05-21 12:21:30', '2025-12-17 19:46:35', 'AnbyDDkA', '7282950'), + (6923, 21, 2653, 'attending', '2024-05-25 17:10:28', '2025-12-17 19:46:35', 'AnbyDDkA', '7289186'), + (6924, 21, 2659, 'maybe', '2024-06-01 18:41:24', '2025-12-17 19:46:36', 'AnbyDDkA', '7299599'), + (6925, 21, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AnbyDDkA', '7302674'), + (6926, 21, 2669, 'attending', '2024-06-08 19:54:54', '2025-12-17 19:46:36', 'AnbyDDkA', '7318057'), + (6927, 21, 2674, 'maybe', '2024-07-06 21:52:34', '2025-12-17 19:46:29', 'AnbyDDkA', '7319480'), + (6928, 21, 2676, 'attending', '2024-08-31 20:55:36', '2025-12-17 19:46:32', 'AnbyDDkA', '7319482'), + (6929, 21, 2678, 'not_attending', '2024-06-13 19:48:51', '2025-12-17 19:46:28', 'AnbyDDkA', '7319489'), + (6930, 21, 2679, 'maybe', '2024-06-16 17:40:28', '2025-12-17 19:46:29', 'AnbyDDkA', '7319490'), + (6931, 21, 2686, 'maybe', '2024-06-21 18:05:31', '2025-12-17 19:46:29', 'AnbyDDkA', '7323802'), + (6932, 21, 2688, 'maybe', '2024-06-16 17:40:21', '2025-12-17 19:46:29', 'AnbyDDkA', '7324073'), + (6933, 21, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AnbyDDkA', '7324074'), + (6934, 21, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AnbyDDkA', '7324075'), + (6935, 21, 2691, 'attending', '2024-07-13 18:49:56', '2025-12-17 19:46:30', 'AnbyDDkA', '7324076'), + (6936, 21, 2692, 'attending', '2024-07-27 14:28:39', '2025-12-17 19:46:30', 'AnbyDDkA', '7324077'), + (6937, 21, 2693, 'not_attending', '2024-07-27 23:04:28', '2025-12-17 19:46:31', 'AnbyDDkA', '7324078'), + (6938, 21, 2694, 'attending', '2024-08-09 12:40:36', '2025-12-17 19:46:31', 'AnbyDDkA', '7324079'), + (6939, 21, 2695, 'not_attending', '2024-08-11 20:27:05', '2025-12-17 19:46:31', 'AnbyDDkA', '7324080'), + (6940, 21, 2696, 'not_attending', '2024-08-22 12:26:19', '2025-12-17 19:46:32', 'AnbyDDkA', '7324081'), + (6941, 21, 2697, 'attending', '2024-08-27 16:14:48', '2025-12-17 19:46:32', 'AnbyDDkA', '7324082'), + (6942, 21, 2698, 'attending', '2024-09-01 12:08:50', '2025-12-17 19:46:24', 'AnbyDDkA', '7324083'), + (6943, 21, 2700, 'not_attending', '2024-06-14 14:26:26', '2025-12-17 19:46:28', 'AnbyDDkA', '7324388'), + (6944, 21, 2707, 'attending', '2024-06-13 14:47:50', '2025-12-17 19:46:28', 'AnbyDDkA', '7324952'), + (6945, 21, 2711, 'maybe', '2024-07-19 21:40:32', '2025-12-17 19:46:30', 'AnbyDDkA', '7326524'), + (6946, 21, 2716, 'maybe', '2024-06-21 18:12:43', '2025-12-17 19:46:29', 'AnbyDDkA', '7329096'), + (6947, 21, 2719, 'attending', '2024-06-18 18:09:29', '2025-12-17 19:46:29', 'AnbyDDkA', '7331305'), + (6948, 21, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AnbyDDkA', '7331457'), + (6949, 21, 2723, 'maybe', '2024-06-21 18:05:42', '2025-12-17 19:46:29', 'AnbyDDkA', '7332389'), + (6950, 21, 2736, 'not_attending', '2024-06-29 21:30:36', '2025-12-17 19:46:29', 'AnbyDDkA', '7342038'), + (6951, 21, 2749, 'maybe', '2024-07-09 12:46:30', '2025-12-17 19:46:29', 'AnbyDDkA', '7355496'), + (6952, 21, 2753, 'maybe', '2024-07-09 12:46:43', '2025-12-17 19:46:30', 'AnbyDDkA', '7355538'), + (6953, 21, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AnbyDDkA', '7356752'), + (6954, 21, 2755, 'not_attending', '2024-07-09 19:34:47', '2025-12-17 19:46:29', 'AnbyDDkA', '7357808'), + (6955, 21, 2757, 'not_attending', '2024-07-12 20:08:04', '2025-12-17 19:46:30', 'AnbyDDkA', '7358733'), + (6956, 21, 2759, 'attending', '2024-07-12 20:07:57', '2025-12-17 19:46:30', 'AnbyDDkA', '7359624'), + (6957, 21, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'AnbyDDkA', '7363643'), + (6958, 21, 2770, 'attending', '2024-07-20 20:27:02', '2025-12-17 19:46:30', 'AnbyDDkA', '7368196'), + (6959, 21, 2772, 'not_attending', '2024-07-23 13:42:41', '2025-12-17 19:46:30', 'AnbyDDkA', '7368267'), + (6960, 21, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AnbyDDkA', '7368606'), + (6961, 21, 2776, 'maybe', '2024-07-23 13:42:30', '2025-12-17 19:46:30', 'AnbyDDkA', '7370690'), + (6962, 21, 2781, 'not_attending', '2024-07-25 21:16:33', '2025-12-17 19:46:30', 'AnbyDDkA', '7373194'), + (6963, 21, 2785, 'maybe', '2024-07-31 05:28:32', '2025-12-17 19:46:31', 'AnbyDDkA', '7380988'), + (6964, 21, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AnbyDDkA', '7397462'), + (6965, 21, 2802, 'not_attending', '2024-09-02 10:19:46', '2025-12-17 19:46:32', 'AnbyDDkA', '7397463'), + (6966, 21, 2808, 'attending', '2024-08-27 16:14:37', '2025-12-17 19:46:32', 'AnbyDDkA', '7412860'), + (6967, 21, 2810, 'not_attending', '2024-09-01 12:08:41', '2025-12-17 19:46:32', 'AnbyDDkA', '7415553'), + (6968, 21, 2811, 'attending', '2024-08-30 23:32:07', '2025-12-17 19:46:32', 'AnbyDDkA', '7418895'), + (6969, 21, 2813, 'attending', '2024-09-03 15:31:18', '2025-12-17 19:46:24', 'AnbyDDkA', '7424105'), + (6970, 21, 2814, 'attending', '2024-09-07 00:10:13', '2025-12-17 19:46:24', 'AnbyDDkA', '7424267'), + (6971, 21, 2821, 'maybe', '2024-10-09 22:01:07', '2025-12-17 19:46:26', 'AnbyDDkA', '7424275'), + (6972, 21, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AnbyDDkA', '7424276'), + (6973, 21, 2823, 'maybe', '2024-09-07 12:26:07', '2025-12-17 19:46:24', 'AnbyDDkA', '7430247'), + (6974, 21, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AnbyDDkA', '7432751'), + (6975, 21, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AnbyDDkA', '7432752'), + (6976, 21, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AnbyDDkA', '7432753'), + (6977, 21, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AnbyDDkA', '7432754'), + (6978, 21, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AnbyDDkA', '7432755'), + (6979, 21, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AnbyDDkA', '7432756'), + (6980, 21, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AnbyDDkA', '7432758'), + (6981, 21, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AnbyDDkA', '7432759'), + (6982, 21, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AnbyDDkA', '7433834'), + (6983, 21, 2834, 'attending', '2024-09-11 01:52:43', '2025-12-17 19:46:25', 'AnbyDDkA', '7433852'), + (6984, 21, 2836, 'attending', '2024-09-12 18:31:42', '2025-12-17 19:46:25', 'AnbyDDkA', '7438708'), + (6985, 21, 2837, 'attending', '2024-09-12 18:57:03', '2025-12-17 19:46:25', 'AnbyDDkA', '7438711'), + (6986, 21, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AnbyDDkA', '7470197'), + (6987, 21, 2875, 'maybe', '2024-10-11 13:36:26', '2025-12-17 19:46:26', 'AnbyDDkA', '7482241'), + (6988, 21, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AnbyDDkA', '7685613'), + (6989, 21, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AnbyDDkA', '7688194'), + (6990, 21, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AnbyDDkA', '7688196'), + (6991, 21, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AnbyDDkA', '7688289'), + (6992, 21, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AnbyDDkA', '7692763'), + (6993, 21, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AnbyDDkA', '7697552'), + (6994, 21, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AnbyDDkA', '7699878'), + (6995, 21, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AnbyDDkA', '7704043'), + (6996, 21, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AnbyDDkA', '7712467'), + (6997, 21, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'AnbyDDkA', '7713585'), + (6998, 21, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AnbyDDkA', '7713586'), + (6999, 21, 2942, 'attending', '2025-02-16 17:12:45', '2025-12-17 19:46:24', 'AnbyDDkA', '7725960'), + (7000, 21, 2943, 'not_attending', '2025-02-16 17:12:53', '2025-12-17 19:46:18', 'AnbyDDkA', '7725961'), + (7001, 21, 2944, 'maybe', '2025-02-16 17:12:50', '2025-12-17 19:46:24', 'AnbyDDkA', '7725963'), + (7002, 21, 2945, 'maybe', '2025-02-16 17:12:57', '2025-12-17 19:46:19', 'AnbyDDkA', '7725964'), + (7003, 21, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AnbyDDkA', '7738518'), + (7004, 21, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AnbyDDkA', '7750636'), + (7005, 21, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AnbyDDkA', '7796540'), + (7006, 21, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AnbyDDkA', '7796541'), + (7007, 21, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AnbyDDkA', '7796542'), + (7008, 21, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AnbyDDkA', '7825913'), + (7009, 21, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AnbyDDkA', '7826209'), + (7010, 21, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AnbyDDkA', '7834742'), + (7011, 21, 2988, 'maybe', '2025-02-08 18:33:04', '2025-12-17 19:46:23', 'AnbyDDkA', '7839569'), + (7012, 21, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'AnbyDDkA', '7842108'), + (7013, 21, 2990, 'attending', '2025-02-11 12:44:38', '2025-12-17 19:46:23', 'AnbyDDkA', '7842898'), + (7014, 21, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AnbyDDkA', '7842902'), + (7015, 21, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AnbyDDkA', '7842903'), + (7016, 21, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AnbyDDkA', '7842904'), + (7017, 21, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AnbyDDkA', '7842905'), + (7018, 21, 3000, 'maybe', '2025-02-21 12:51:13', '2025-12-17 19:46:24', 'AnbyDDkA', '7852541'), + (7019, 21, 3001, 'attending', '2025-02-19 21:24:27', '2025-12-17 19:46:24', 'AnbyDDkA', '7854184'), + (7020, 21, 3002, 'attending', '2025-02-21 12:51:20', '2025-12-17 19:46:24', 'AnbyDDkA', '7854212'), + (7021, 21, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AnbyDDkA', '7855719'), + (7022, 21, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AnbyDDkA', '7860683'), + (7023, 21, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AnbyDDkA', '7860684'), + (7024, 21, 3011, 'maybe', '2025-03-01 23:41:55', '2025-12-17 19:46:24', 'AnbyDDkA', '7865624'), + (7025, 21, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AnbyDDkA', '7866095'), + (7026, 21, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AnbyDDkA', '7869170'), + (7027, 21, 3014, 'attending', '2025-04-04 03:48:37', '2025-12-17 19:46:19', 'AnbyDDkA', '7869185'), + (7028, 21, 3015, 'not_attending', '2025-04-18 15:49:43', '2025-12-17 19:46:20', 'AnbyDDkA', '7869186'), + (7029, 21, 3016, 'attending', '2025-04-17 07:52:41', '2025-12-17 19:46:20', 'AnbyDDkA', '7869187'), + (7030, 21, 3017, 'maybe', '2025-03-22 18:53:34', '2025-12-17 19:46:19', 'AnbyDDkA', '7869188'), + (7031, 21, 3018, 'attending', '2025-04-11 19:27:04', '2025-12-17 19:46:20', 'AnbyDDkA', '7869189'), + (7032, 21, 3020, 'attending', '2025-04-18 15:49:32', '2025-12-17 19:46:20', 'AnbyDDkA', '7869191'), + (7033, 21, 3021, 'maybe', '2025-04-12 21:23:09', '2025-12-17 19:46:20', 'AnbyDDkA', '7869192'), + (7034, 21, 3029, 'attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AnbyDDkA', '7869201'), + (7035, 21, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AnbyDDkA', '7877465'), + (7036, 21, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AnbyDDkA', '7878570'), + (7037, 21, 3045, 'not_attending', '2025-04-04 03:48:55', '2025-12-17 19:46:19', 'AnbyDDkA', '7882691'), + (7038, 21, 3046, 'attending', '2025-04-12 21:21:59', '2025-12-17 19:46:20', 'AnbyDDkA', '7882692'), + (7039, 21, 3047, 'not_attending', '2025-04-18 15:49:41', '2025-12-17 19:46:20', 'AnbyDDkA', '7882693'), + (7040, 21, 3048, 'attending', '2025-04-18 15:48:31', '2025-12-17 19:46:20', 'AnbyDDkA', '7882694'), + (7041, 21, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AnbyDDkA', '7888250'), + (7042, 21, 3083, 'attending', '2025-04-08 17:14:36', '2025-12-17 19:46:20', 'AnbyDDkA', '7903308'), + (7043, 21, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AnbyDDkA', '7904777'), + (7044, 21, 3091, 'maybe', '2025-04-18 15:48:04', '2025-12-17 19:46:20', 'AnbyDDkA', '8340289'), + (7045, 21, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AnbyDDkA', '8349164'), + (7046, 21, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AnbyDDkA', '8349545'), + (7047, 21, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AnbyDDkA', '8353584'), + (7048, 21, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AnbyDDkA', '8368028'), + (7049, 21, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AnbyDDkA', '8368029'), + (7050, 21, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AnbyDDkA', '8388462'), + (7051, 21, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AnbyDDkA', '8400273'), + (7052, 21, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AnbyDDkA', '8400274'), + (7053, 21, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AnbyDDkA', '8400275'), + (7054, 21, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'AnbyDDkA', '8400276'), + (7055, 21, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AnbyDDkA', '8404977'), + (7056, 21, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AnbyDDkA', '8430783'), + (7057, 21, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AnbyDDkA', '8430784'), + (7058, 21, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AnbyDDkA', '8430799'), + (7059, 21, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AnbyDDkA', '8430800'), + (7060, 21, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AnbyDDkA', '8430801'), + (7061, 21, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AnbyDDkA', '8438709'), + (7062, 21, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AnbyDDkA', '8457738'), + (7063, 21, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AnbyDDkA', '8459566'), + (7064, 21, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AnbyDDkA', '8459567'), + (7065, 21, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AnbyDDkA', '8461032'), + (7066, 21, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnbyDDkA', '8477877'), + (7067, 21, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnbyDDkA', '8485688'), + (7068, 21, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnbyDDkA', '8490587'), + (7069, 21, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnbyDDkA', '8493552'), + (7070, 21, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnbyDDkA', '8493553'), + (7071, 21, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnbyDDkA', '8493554'), + (7072, 21, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnbyDDkA', '8493555'), + (7073, 21, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnbyDDkA', '8493556'), + (7074, 21, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnbyDDkA', '8493557'), + (7075, 21, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnbyDDkA', '8493558'), + (7076, 21, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnbyDDkA', '8493559'), + (7077, 21, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnbyDDkA', '8493560'), + (7078, 21, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnbyDDkA', '8493561'), + (7079, 21, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnbyDDkA', '8493572'), + (7080, 21, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnbyDDkA', '8540725'), + (7081, 21, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnbyDDkA', '8555421'), + (7082, 22, 1152, 'attending', '2022-01-12 15:47:46', '2025-12-17 19:47:31', 'd5Dx1pO4', '4708705'), + (7083, 22, 1153, 'attending', '2022-01-17 23:37:50', '2025-12-17 19:47:32', 'd5Dx1pO4', '4708707'), + (7084, 22, 1154, 'maybe', '2022-01-24 01:22:34', '2025-12-17 19:47:32', 'd5Dx1pO4', '4708708'), + (7085, 22, 1173, 'attending', '2022-01-07 20:33:28', '2025-12-17 19:47:31', 'd5Dx1pO4', '4736495'), + (7086, 22, 1174, 'maybe', '2022-01-14 04:04:20', '2025-12-17 19:47:31', 'd5Dx1pO4', '4736496'), + (7087, 22, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd5Dx1pO4', '4736497'), + (7088, 22, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd5Dx1pO4', '4736499'), + (7089, 22, 1178, 'attending', '2022-01-25 01:05:52', '2025-12-17 19:47:32', 'd5Dx1pO4', '4736500'), + (7090, 22, 1180, 'attending', '2022-02-22 15:39:07', '2025-12-17 19:47:33', 'd5Dx1pO4', '4736502'), + (7091, 22, 1181, 'attending', '2022-03-02 20:34:32', '2025-12-17 19:47:33', 'd5Dx1pO4', '4736503'), + (7092, 22, 1182, 'attending', '2022-03-08 23:14:57', '2025-12-17 19:47:33', 'd5Dx1pO4', '4736504'), + (7093, 22, 1183, 'maybe', '2022-01-11 03:25:24', '2025-12-17 19:47:31', 'd5Dx1pO4', '4742171'), + (7094, 22, 1184, 'maybe', '2022-01-11 03:33:39', '2025-12-17 19:47:31', 'd5Dx1pO4', '4742350'), + (7095, 22, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'd5Dx1pO4', '4746789'), + (7096, 22, 1188, 'attending', '2022-01-17 20:35:09', '2025-12-17 19:47:31', 'd5Dx1pO4', '4753929'), + (7097, 22, 1190, 'attending', '2022-01-11 22:57:40', '2025-12-17 19:47:31', 'd5Dx1pO4', '4757377'), + (7098, 22, 1191, 'attending', '2022-01-12 00:34:24', '2025-12-17 19:47:31', 'd5Dx1pO4', '4757390'), + (7099, 22, 1192, 'attending', '2022-01-20 14:40:19', '2025-12-17 19:47:32', 'd5Dx1pO4', '4758745'), + (7100, 22, 1193, 'maybe', '2022-01-17 23:33:31', '2025-12-17 19:47:32', 'd5Dx1pO4', '4759563'), + (7101, 22, 1198, 'attending', '2022-01-24 01:22:26', '2025-12-17 19:47:32', 'd5Dx1pO4', '4766801'), + (7102, 22, 1199, 'attending', '2022-01-24 01:22:29', '2025-12-17 19:47:32', 'd5Dx1pO4', '4766802'), + (7103, 22, 1200, 'attending', '2022-01-17 23:33:10', '2025-12-17 19:47:32', 'd5Dx1pO4', '4766830'), + (7104, 22, 1202, 'attending', '2022-01-24 01:22:40', '2025-12-17 19:47:32', 'd5Dx1pO4', '4769423'), + (7105, 22, 1219, 'attending', '2022-01-31 17:23:38', '2025-12-17 19:47:32', 'd5Dx1pO4', '4788466'), + (7106, 22, 1224, 'attending', '2022-01-31 17:23:35', '2025-12-17 19:47:32', 'd5Dx1pO4', '5016682'), + (7107, 22, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd5Dx1pO4', '5038850'), + (7108, 22, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd5Dx1pO4', '5045826'), + (7109, 22, 1238, 'attending', '2022-02-22 15:39:15', '2025-12-17 19:47:32', 'd5Dx1pO4', '5052236'), + (7110, 22, 1239, 'attending', '2022-02-28 14:29:22', '2025-12-17 19:47:33', 'd5Dx1pO4', '5052238'), + (7111, 22, 1240, 'attending', '2022-03-14 00:40:38', '2025-12-17 19:47:33', 'd5Dx1pO4', '5052239'), + (7112, 22, 1241, 'attending', '2022-03-22 12:47:25', '2025-12-17 19:47:25', 'd5Dx1pO4', '5052240'), + (7113, 22, 1242, 'attending', '2022-03-29 21:20:31', '2025-12-17 19:47:25', 'd5Dx1pO4', '5052241'), + (7114, 22, 1243, 'attending', '2022-03-06 17:20:22', '2025-12-17 19:47:33', 'd5Dx1pO4', '5058336'), + (7115, 22, 1246, 'attending', '2022-02-23 19:04:22', '2025-12-17 19:47:33', 'd5Dx1pO4', '5064727'), + (7116, 22, 1248, 'maybe', '2022-02-23 19:04:01', '2025-12-17 19:47:33', 'd5Dx1pO4', '5065064'), + (7117, 22, 1249, 'maybe', '2022-03-09 21:41:55', '2025-12-17 19:47:33', 'd5Dx1pO4', '5068530'), + (7118, 22, 1250, 'maybe', '2022-03-03 22:26:25', '2025-12-17 19:47:33', 'd5Dx1pO4', '5069735'), + (7119, 22, 1253, 'attending', '2022-03-02 15:43:29', '2025-12-17 19:47:33', 'd5Dx1pO4', '5129122'), + (7120, 22, 1255, 'maybe', '2022-02-28 19:56:51', '2025-12-17 19:47:33', 'd5Dx1pO4', '5129140'), + (7121, 22, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd5Dx1pO4', '5132533'), + (7122, 22, 1261, 'attending', '2022-03-04 01:56:56', '2025-12-17 19:47:33', 'd5Dx1pO4', '5154274'), + (7123, 22, 1262, 'not_attending', '2022-03-10 17:43:25', '2025-12-17 19:47:33', 'd5Dx1pO4', '5157773'), + (7124, 22, 1264, 'attending', '2022-03-22 16:58:17', '2025-12-17 19:47:25', 'd5Dx1pO4', '5160281'), + (7125, 22, 1266, 'maybe', '2022-03-14 18:26:07', '2025-12-17 19:47:33', 'd5Dx1pO4', '5166407'), + (7126, 22, 1267, 'attending', '2022-03-12 22:18:28', '2025-12-17 19:47:25', 'd5Dx1pO4', '5169578'), + (7127, 22, 1269, 'attending', '2022-03-17 16:01:55', '2025-12-17 19:47:25', 'd5Dx1pO4', '5179439'), + (7128, 22, 1270, 'maybe', '2022-03-15 14:48:46', '2025-12-17 19:47:25', 'd5Dx1pO4', '5181277'), + (7129, 22, 1272, 'attending', '2022-03-15 23:39:09', '2025-12-17 19:47:25', 'd5Dx1pO4', '5186582'), + (7130, 22, 1273, 'attending', '2022-03-26 18:34:38', '2025-12-17 19:47:25', 'd5Dx1pO4', '5186583'), + (7131, 22, 1274, 'attending', '2022-03-31 01:30:37', '2025-12-17 19:47:26', 'd5Dx1pO4', '5186585'), + (7132, 22, 1276, 'maybe', '2022-03-27 16:05:12', '2025-12-17 19:47:25', 'd5Dx1pO4', '5186820'), + (7133, 22, 1278, 'attending', '2022-03-16 21:29:40', '2025-12-17 19:47:33', 'd5Dx1pO4', '5186920'), + (7134, 22, 1279, 'attending', '2022-03-16 21:29:09', '2025-12-17 19:47:25', 'd5Dx1pO4', '5187212'), + (7135, 22, 1281, 'attending', '2022-04-08 03:31:50', '2025-12-17 19:47:27', 'd5Dx1pO4', '5190437'), + (7136, 22, 1284, 'attending', '2022-04-13 14:13:28', '2025-12-17 19:47:27', 'd5Dx1pO4', '5195095'), + (7137, 22, 1287, 'attending', '2022-03-23 01:05:05', '2025-12-17 19:47:25', 'd5Dx1pO4', '5199425'), + (7138, 22, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'd5Dx1pO4', '5215989'), + (7139, 22, 1298, 'attending', '2022-03-29 12:16:15', '2025-12-17 19:47:25', 'd5Dx1pO4', '5216645'), + (7140, 22, 1304, 'maybe', '2022-04-04 16:40:55', '2025-12-17 19:47:26', 'd5Dx1pO4', '5223468'), + (7141, 22, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd5Dx1pO4', '5223686'), + (7142, 22, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd5Dx1pO4', '5227432'), + (7143, 22, 1314, 'maybe', '2022-04-08 20:31:37', '2025-12-17 19:47:27', 'd5Dx1pO4', '5233137'), + (7144, 22, 1315, 'maybe', '2022-04-18 19:44:43', '2025-12-17 19:47:27', 'd5Dx1pO4', '5237522'), + (7145, 22, 1317, 'attending', '2022-04-11 22:52:39', '2025-12-17 19:47:27', 'd5Dx1pO4', '5237543'), + (7146, 22, 1319, 'attending', '2022-04-11 13:27:45', '2025-12-17 19:47:27', 'd5Dx1pO4', '5238353'), + (7147, 22, 1320, 'attending', '2022-04-11 13:27:54', '2025-12-17 19:47:27', 'd5Dx1pO4', '5238354'), + (7148, 22, 1322, 'maybe', '2022-04-15 02:33:55', '2025-12-17 19:47:27', 'd5Dx1pO4', '5238356'), + (7149, 22, 1331, 'attending', '2022-04-12 23:44:26', '2025-12-17 19:47:27', 'd5Dx1pO4', '5242156'), + (7150, 22, 1337, 'attending', '2022-04-19 01:03:30', '2025-12-17 19:47:27', 'd5Dx1pO4', '5245036'), + (7151, 22, 1346, 'attending', '2022-04-18 19:44:36', '2025-12-17 19:47:27', 'd5Dx1pO4', '5247467'), + (7152, 22, 1360, 'maybe', '2022-04-26 18:52:12', '2025-12-17 19:47:27', 'd5Dx1pO4', '5260197'), + (7153, 22, 1362, 'attending', '2022-04-25 17:43:46', '2025-12-17 19:47:28', 'd5Dx1pO4', '5260800'), + (7154, 22, 1364, 'attending', '2022-05-01 20:22:34', '2025-12-17 19:47:28', 'd5Dx1pO4', '5261598'), + (7155, 22, 1365, 'attending', '2022-05-01 15:25:07', '2025-12-17 19:47:28', 'd5Dx1pO4', '5261600'), + (7156, 22, 1370, 'not_attending', '2022-04-29 17:12:15', '2025-12-17 19:47:28', 'd5Dx1pO4', '5263775'), + (7157, 22, 1371, 'attending', '2022-04-27 20:51:33', '2025-12-17 19:47:27', 'd5Dx1pO4', '5263784'), + (7158, 22, 1372, 'maybe', '2022-05-02 17:49:45', '2025-12-17 19:47:28', 'd5Dx1pO4', '5264352'), + (7159, 22, 1374, 'attending', '2022-05-02 01:40:34', '2025-12-17 19:47:28', 'd5Dx1pO4', '5269930'), + (7160, 22, 1378, 'maybe', '2022-05-05 21:29:56', '2025-12-17 19:47:29', 'd5Dx1pO4', '5271448'), + (7161, 22, 1379, 'attending', '2022-05-15 23:43:21', '2025-12-17 19:47:29', 'd5Dx1pO4', '5271449'), + (7162, 22, 1380, 'not_attending', '2022-05-15 23:43:34', '2025-12-17 19:47:30', 'd5Dx1pO4', '5271450'), + (7163, 22, 1381, 'attending', '2022-05-06 17:44:20', '2025-12-17 19:47:28', 'd5Dx1pO4', '5271453'), + (7164, 22, 1383, 'attending', '2022-05-13 18:09:06', '2025-12-17 19:47:28', 'd5Dx1pO4', '5276469'), + (7165, 22, 1385, 'maybe', '2022-05-11 13:04:11', '2025-12-17 19:47:28', 'd5Dx1pO4', '5277822'), + (7166, 22, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd5Dx1pO4', '5278159'), + (7167, 22, 1392, 'not_attending', '2022-05-10 14:19:39', '2025-12-17 19:47:28', 'd5Dx1pO4', '5279532'), + (7168, 22, 1403, 'attending', '2022-05-20 17:01:29', '2025-12-17 19:47:29', 'd5Dx1pO4', '5288052'), + (7169, 22, 1407, 'attending', '2022-05-30 01:25:03', '2025-12-17 19:47:30', 'd5Dx1pO4', '5363695'), + (7170, 22, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd5Dx1pO4', '5365960'), + (7171, 22, 1412, 'attending', '2022-05-19 21:32:04', '2025-12-17 19:47:29', 'd5Dx1pO4', '5367532'), + (7172, 22, 1413, 'attending', '2022-05-21 02:17:21', '2025-12-17 19:47:29', 'd5Dx1pO4', '5367533'), + (7173, 22, 1415, 'maybe', '2022-05-19 15:16:13', '2025-12-17 19:47:30', 'd5Dx1pO4', '5368973'), + (7174, 22, 1416, 'attending', '2022-05-19 17:47:48', '2025-12-17 19:47:30', 'd5Dx1pO4', '5369628'), + (7175, 22, 1424, 'maybe', '2022-05-26 19:04:24', '2025-12-17 19:47:30', 'd5Dx1pO4', '5375772'), + (7176, 22, 1427, 'maybe', '2022-05-24 15:40:05', '2025-12-17 19:47:30', 'd5Dx1pO4', '5376074'), + (7177, 22, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd5Dx1pO4', '5378247'), + (7178, 22, 1431, 'not_attending', '2022-06-11 02:22:25', '2025-12-17 19:47:31', 'd5Dx1pO4', '5389605'), + (7179, 22, 1436, 'attending', '2022-06-01 03:36:39', '2025-12-17 19:47:30', 'd5Dx1pO4', '5394292'), + (7180, 22, 1437, 'maybe', '2022-06-01 17:14:32', '2025-12-17 19:47:30', 'd5Dx1pO4', '5394493'), + (7181, 22, 1438, 'maybe', '2022-06-01 17:09:16', '2025-12-17 19:47:30', 'd5Dx1pO4', '5395032'), + (7182, 22, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd5Dx1pO4', '5397265'), + (7183, 22, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd5Dx1pO4', '5403967'), + (7184, 22, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd5Dx1pO4', '5404786'), + (7185, 22, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd5Dx1pO4', '5405203'), + (7186, 22, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'd5Dx1pO4', '5408794'), + (7187, 22, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd5Dx1pO4', '5411699'), + (7188, 22, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd5Dx1pO4', '5412550'), + (7189, 22, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd5Dx1pO4', '5415046'), + (7190, 22, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd5Dx1pO4', '5422086'), + (7191, 22, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd5Dx1pO4', '5422406'), + (7192, 22, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd5Dx1pO4', '5424565'), + (7193, 22, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd5Dx1pO4', '5426882'), + (7194, 22, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd5Dx1pO4', '5427083'), + (7195, 22, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd5Dx1pO4', '5441125'), + (7196, 22, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd5Dx1pO4', '5441126'), + (7197, 22, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd5Dx1pO4', '5441128'), + (7198, 22, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd5Dx1pO4', '5441131'), + (7199, 22, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'd5Dx1pO4', '5441132'), + (7200, 22, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd5Dx1pO4', '5446643'), + (7201, 22, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd5Dx1pO4', '5453325'), + (7202, 22, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd5Dx1pO4', '5454516'), + (7203, 22, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd5Dx1pO4', '5454605'), + (7204, 22, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd5Dx1pO4', '5455037'), + (7205, 22, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd5Dx1pO4', '5461278'), + (7206, 22, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd5Dx1pO4', '5469480'), + (7207, 22, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd5Dx1pO4', '5471073'), + (7208, 22, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd5Dx1pO4', '5474663'), + (7209, 22, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd5Dx1pO4', '5482022'), + (7210, 22, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd5Dx1pO4', '5482793'), + (7211, 22, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd5Dx1pO4', '5488912'), + (7212, 22, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd5Dx1pO4', '5492192'), + (7213, 22, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd5Dx1pO4', '5493139'), + (7214, 22, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd5Dx1pO4', '5493200'), + (7215, 22, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd5Dx1pO4', '5502188'), + (7216, 22, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd5Dx1pO4', '5505059'), + (7217, 22, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd5Dx1pO4', '5509055'), + (7218, 22, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd5Dx1pO4', '5512862'), + (7219, 22, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd5Dx1pO4', '5513985'), + (7220, 22, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'd5Dx1pO4', '5519981'), + (7221, 22, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd5Dx1pO4', '5522550'), + (7222, 22, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd5Dx1pO4', '5534683'), + (7223, 22, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd5Dx1pO4', '5537735'), + (7224, 22, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd5Dx1pO4', '5540859'), + (7225, 22, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd5Dx1pO4', '5546619'), + (7226, 22, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd5Dx1pO4', '5555245'), + (7227, 22, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd5Dx1pO4', '5557747'), + (7228, 22, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd5Dx1pO4', '5560255'), + (7229, 22, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd5Dx1pO4', '5562906'), + (7230, 22, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd5Dx1pO4', '5600604'), + (7231, 22, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd5Dx1pO4', '5605544'), + (7232, 22, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'd5Dx1pO4', '5606737'), + (7233, 22, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd5Dx1pO4', '5630960'), + (7234, 22, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd5Dx1pO4', '5630961'), + (7235, 22, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd5Dx1pO4', '5630962'), + (7236, 22, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd5Dx1pO4', '5630966'), + (7237, 22, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd5Dx1pO4', '5630967'), + (7238, 22, 1726, 'attending', '2022-11-16 18:18:05', '2025-12-17 19:47:16', 'd5Dx1pO4', '5630968'), + (7239, 22, 1727, 'maybe', '2022-11-28 23:51:31', '2025-12-17 19:47:16', 'd5Dx1pO4', '5630969'), + (7240, 22, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd5Dx1pO4', '5635406'), + (7241, 22, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd5Dx1pO4', '5638765'), + (7242, 22, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd5Dx1pO4', '5640097'), + (7243, 22, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd5Dx1pO4', '5640843'), + (7244, 22, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd5Dx1pO4', '5641521'), + (7245, 22, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd5Dx1pO4', '5642818'), + (7246, 22, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd5Dx1pO4', '5652395'), + (7247, 22, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd5Dx1pO4', '5670445'), + (7248, 22, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd5Dx1pO4', '5671637'), + (7249, 22, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd5Dx1pO4', '5672329'), + (7250, 22, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd5Dx1pO4', '5674057'), + (7251, 22, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd5Dx1pO4', '5674060'), + (7252, 22, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd5Dx1pO4', '5677461'), + (7253, 22, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd5Dx1pO4', '5698046'), + (7254, 22, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd5Dx1pO4', '5699760'), + (7255, 22, 1793, 'attending', '2022-11-23 14:43:29', '2025-12-17 19:47:16', 'd5Dx1pO4', '5736365'), + (7256, 22, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd5Dx1pO4', '5741601'), + (7257, 22, 1796, 'attending', '2022-12-01 23:57:16', '2025-12-17 19:47:16', 'd5Dx1pO4', '5756755'), + (7258, 22, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd5Dx1pO4', '5763458'), + (7259, 22, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd5Dx1pO4', '5774172'), + (7260, 22, 1831, 'attending', '2022-12-02 19:05:41', '2025-12-17 19:47:16', 'd5Dx1pO4', '5813239'), + (7261, 22, 1832, 'maybe', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'd5Dx1pO4', '5818247'), + (7262, 22, 1833, 'maybe', '2022-12-05 04:01:06', '2025-12-17 19:47:16', 'd5Dx1pO4', '5819465'), + (7263, 22, 1834, 'not_attending', '2022-12-09 20:19:20', '2025-12-17 19:47:17', 'd5Dx1pO4', '5819470'), + (7264, 22, 1835, 'maybe', '2022-12-23 03:48:27', '2025-12-17 19:47:05', 'd5Dx1pO4', '5819471'), + (7265, 22, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'd5Dx1pO4', '5827739'), + (7266, 22, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd5Dx1pO4', '5844306'), + (7267, 22, 1847, 'attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd5Dx1pO4', '5850159'), + (7268, 22, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd5Dx1pO4', '5858999'), + (7269, 22, 1852, 'attending', '2023-01-11 23:22:53', '2025-12-17 19:47:05', 'd5Dx1pO4', '5869898'), + (7270, 22, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd5Dx1pO4', '5871984'), + (7271, 22, 1859, 'maybe', '2023-01-20 21:43:57', '2025-12-17 19:47:05', 'd5Dx1pO4', '5876234'), + (7272, 22, 1861, 'attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd5Dx1pO4', '5876354'), + (7273, 22, 1863, 'attending', '2023-01-29 18:25:09', '2025-12-17 19:47:06', 'd5Dx1pO4', '5877255'), + (7274, 22, 1864, 'attending', '2023-01-20 22:03:33', '2025-12-17 19:47:05', 'd5Dx1pO4', '5879675'), + (7275, 22, 1865, 'attending', '2023-01-25 01:22:34', '2025-12-17 19:47:06', 'd5Dx1pO4', '5879676'), + (7276, 22, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd5Dx1pO4', '5880939'), + (7277, 22, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'd5Dx1pO4', '5880940'), + (7278, 22, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd5Dx1pO4', '5880942'), + (7279, 22, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd5Dx1pO4', '5880943'), + (7280, 22, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd5Dx1pO4', '5887890'), + (7281, 22, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd5Dx1pO4', '5888598'), + (7282, 22, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd5Dx1pO4', '5893260'), + (7283, 22, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'd5Dx1pO4', '5899826'), + (7284, 22, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'd5Dx1pO4', '5900199'), + (7285, 22, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd5Dx1pO4', '5900200'), + (7286, 22, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd5Dx1pO4', '5900202'), + (7287, 22, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd5Dx1pO4', '5900203'), + (7288, 22, 1895, 'maybe', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'd5Dx1pO4', '5901108'), + (7289, 22, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd5Dx1pO4', '5901126'), + (7290, 22, 1897, 'maybe', '2023-02-08 18:51:19', '2025-12-17 19:47:07', 'd5Dx1pO4', '5901128'), + (7291, 22, 1902, 'maybe', '2023-02-01 21:21:47', '2025-12-17 19:47:06', 'd5Dx1pO4', '5902254'), + (7292, 22, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'd5Dx1pO4', '5909655'), + (7293, 22, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'd5Dx1pO4', '5910522'), + (7294, 22, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'd5Dx1pO4', '5910526'), + (7295, 22, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'd5Dx1pO4', '5910528'), + (7296, 22, 1922, 'maybe', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd5Dx1pO4', '5916219'), + (7297, 22, 1931, 'not_attending', '2023-02-24 18:15:10', '2025-12-17 19:47:08', 'd5Dx1pO4', '5933464'), + (7298, 22, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd5Dx1pO4', '5936234'), + (7299, 22, 1935, 'attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd5Dx1pO4', '5958351'), + (7300, 22, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd5Dx1pO4', '5959751'), + (7301, 22, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd5Dx1pO4', '5959755'), + (7302, 22, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd5Dx1pO4', '5960055'), + (7303, 22, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd5Dx1pO4', '5961684'), + (7304, 22, 1944, 'maybe', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd5Dx1pO4', '5962132'), + (7305, 22, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'd5Dx1pO4', '5962133'), + (7306, 22, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd5Dx1pO4', '5962134'), + (7307, 22, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd5Dx1pO4', '5962317'), + (7308, 22, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd5Dx1pO4', '5962318'), + (7309, 22, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd5Dx1pO4', '5965933'), + (7310, 22, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd5Dx1pO4', '5967014'), + (7311, 22, 1957, 'attending', '2023-03-06 18:58:40', '2025-12-17 19:47:10', 'd5Dx1pO4', '5972815'), + (7312, 22, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd5Dx1pO4', '5974016'), + (7313, 22, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd5Dx1pO4', '5981515'), + (7314, 22, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd5Dx1pO4', '5993516'), + (7315, 22, 1972, 'not_attending', '2023-03-17 01:49:55', '2025-12-17 19:46:56', 'd5Dx1pO4', '5993776'), + (7316, 22, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd5Dx1pO4', '5998939'), + (7317, 22, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd5Dx1pO4', '6028191'), + (7318, 22, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd5Dx1pO4', '6040066'), + (7319, 22, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd5Dx1pO4', '6042717'), + (7320, 22, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd5Dx1pO4', '6044838'), + (7321, 22, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd5Dx1pO4', '6044839'), + (7322, 22, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd5Dx1pO4', '6045684'), + (7323, 22, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd5Dx1pO4', '6050104'), + (7324, 22, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd5Dx1pO4', '6053195'), + (7325, 22, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd5Dx1pO4', '6053198'), + (7326, 22, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd5Dx1pO4', '6056085'), + (7327, 22, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd5Dx1pO4', '6056916'), + (7328, 22, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd5Dx1pO4', '6059290'), + (7329, 22, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd5Dx1pO4', '6060328'), + (7330, 22, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd5Dx1pO4', '6061037'), + (7331, 22, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd5Dx1pO4', '6061039'), + (7332, 22, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd5Dx1pO4', '6067245'), + (7333, 22, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd5Dx1pO4', '6068094'), + (7334, 22, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd5Dx1pO4', '6068252'), + (7335, 22, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd5Dx1pO4', '6068253'), + (7336, 22, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd5Dx1pO4', '6068254'), + (7337, 22, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'd5Dx1pO4', '6068280'), + (7338, 22, 2032, 'attending', '2023-06-01 19:55:09', '2025-12-17 19:47:04', 'd5Dx1pO4', '6068281'), + (7339, 22, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd5Dx1pO4', '6069093'), + (7340, 22, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'd5Dx1pO4', '6072528'), + (7341, 22, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd5Dx1pO4', '6079840'), + (7342, 22, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd5Dx1pO4', '6083398'), + (7343, 22, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'd5Dx1pO4', '6093504'), + (7344, 22, 2059, 'maybe', '2023-05-11 14:08:02', '2025-12-17 19:47:02', 'd5Dx1pO4', '6097361'), + (7345, 22, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd5Dx1pO4', '6097414'), + (7346, 22, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd5Dx1pO4', '6097442'), + (7347, 22, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd5Dx1pO4', '6097684'), + (7348, 22, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd5Dx1pO4', '6098762'), + (7349, 22, 2064, 'attending', '2023-06-20 15:21:35', '2025-12-17 19:46:50', 'd5Dx1pO4', '6099988'), + (7350, 22, 2065, 'attending', '2023-06-11 15:25:02', '2025-12-17 19:46:49', 'd5Dx1pO4', '6101169'), + (7351, 22, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'd5Dx1pO4', '6101361'), + (7352, 22, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd5Dx1pO4', '6101362'), + (7353, 22, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd5Dx1pO4', '6103752'), + (7354, 22, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd5Dx1pO4', '6107314'), + (7355, 22, 2084, 'attending', '2023-05-26 15:27:19', '2025-12-17 19:47:04', 'd5Dx1pO4', '6117127'), + (7356, 22, 2086, 'not_attending', '2023-05-28 02:02:48', '2025-12-17 19:47:04', 'd5Dx1pO4', '6119877'), + (7357, 22, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd5Dx1pO4', '6120034'), + (7358, 22, 2090, 'not_attending', '2023-06-01 19:55:02', '2025-12-17 19:47:04', 'd5Dx1pO4', '6127961'), + (7359, 22, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'd5Dx1pO4', '6136733'), + (7360, 22, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'd5Dx1pO4', '6137989'), + (7361, 22, 2098, 'attending', '2023-06-09 11:47:58', '2025-12-17 19:47:04', 'd5Dx1pO4', '6139831'), + (7362, 22, 2102, 'attending', '2023-06-13 22:48:44', '2025-12-17 19:46:50', 'd5Dx1pO4', '6146559'), + (7363, 22, 2103, 'attending', '2023-06-19 20:31:51', '2025-12-17 19:46:50', 'd5Dx1pO4', '6149451'), + (7364, 22, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'd5Dx1pO4', '6150864'), + (7365, 22, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'd5Dx1pO4', '6155491'), + (7366, 22, 2111, 'not_attending', '2023-06-20 15:21:16', '2025-12-17 19:46:50', 'd5Dx1pO4', '6156121'), + (7367, 22, 2113, 'maybe', '2023-06-19 23:29:00', '2025-12-17 19:46:50', 'd5Dx1pO4', '6156215'), + (7368, 22, 2115, 'attending', '2023-06-23 20:43:58', '2025-12-17 19:46:50', 'd5Dx1pO4', '6161437'), + (7369, 22, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd5Dx1pO4', '6164417'), + (7370, 22, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd5Dx1pO4', '6166388'), + (7371, 22, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd5Dx1pO4', '6176439'), + (7372, 22, 2124, 'maybe', '2023-07-03 23:01:13', '2025-12-17 19:46:51', 'd5Dx1pO4', '6176988'), + (7373, 22, 2126, 'attending', '2023-06-30 00:12:28', '2025-12-17 19:46:51', 'd5Dx1pO4', '6177548'), + (7374, 22, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'd5Dx1pO4', '6182410'), + (7375, 22, 2129, 'maybe', '2023-07-03 00:49:07', '2025-12-17 19:46:51', 'd5Dx1pO4', '6182825'), + (7376, 22, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd5Dx1pO4', '6185812'), + (7377, 22, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd5Dx1pO4', '6187651'), + (7378, 22, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd5Dx1pO4', '6187963'), + (7379, 22, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd5Dx1pO4', '6187964'), + (7380, 22, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd5Dx1pO4', '6187966'), + (7381, 22, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd5Dx1pO4', '6187967'), + (7382, 22, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd5Dx1pO4', '6187969'), + (7383, 22, 2140, 'attending', '2023-07-08 17:27:15', '2025-12-17 19:46:52', 'd5Dx1pO4', '6188074'), + (7384, 22, 2142, 'maybe', '2023-07-09 20:43:48', '2025-12-17 19:46:52', 'd5Dx1pO4', '6333850'), + (7385, 22, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd5Dx1pO4', '6334878'), + (7386, 22, 2150, 'attending', '2023-07-09 22:30:36', '2025-12-17 19:46:52', 'd5Dx1pO4', '6335687'), + (7387, 22, 2153, 'maybe', '2023-07-15 02:36:22', '2025-12-17 19:46:52', 'd5Dx1pO4', '6337236'), + (7388, 22, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd5Dx1pO4', '6337970'), + (7389, 22, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd5Dx1pO4', '6338308'), + (7390, 22, 2157, 'maybe', '2023-07-15 13:16:08', '2025-12-17 19:46:52', 'd5Dx1pO4', '6338342'), + (7391, 22, 2159, 'attending', '2023-07-15 02:36:39', '2025-12-17 19:46:53', 'd5Dx1pO4', '6338355'), + (7392, 22, 2160, 'attending', '2023-07-15 02:37:03', '2025-12-17 19:46:54', 'd5Dx1pO4', '6338358'), + (7393, 22, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd5Dx1pO4', '6341710'), + (7394, 22, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd5Dx1pO4', '6342044'), + (7395, 22, 2167, 'maybe', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd5Dx1pO4', '6342298'), + (7396, 22, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'd5Dx1pO4', '6343294'), + (7397, 22, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd5Dx1pO4', '6347034'), + (7398, 22, 2177, 'maybe', '2023-08-02 14:32:01', '2025-12-17 19:46:55', 'd5Dx1pO4', '6347053'), + (7399, 22, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd5Dx1pO4', '6347056'), + (7400, 22, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd5Dx1pO4', '6353830'), + (7401, 22, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd5Dx1pO4', '6353831'), + (7402, 22, 2187, 'maybe', '2023-08-06 16:45:17', '2025-12-17 19:46:55', 'd5Dx1pO4', '6357559'), + (7403, 22, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd5Dx1pO4', '6357867'), + (7404, 22, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd5Dx1pO4', '6358652'), + (7405, 22, 2193, 'maybe', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'd5Dx1pO4', '6358668'), + (7406, 22, 2194, 'maybe', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'd5Dx1pO4', '6358669'), + (7407, 22, 2204, 'attending', '2023-08-10 11:00:50', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361542'), + (7408, 22, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd5Dx1pO4', '6361709'), + (7409, 22, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361710'), + (7410, 22, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361711'), + (7411, 22, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd5Dx1pO4', '6361712'), + (7412, 22, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd5Dx1pO4', '6361713'), + (7413, 22, 2231, 'maybe', '2023-08-21 13:04:30', '2025-12-17 19:46:55', 'd5Dx1pO4', '6374748'), + (7414, 22, 2232, 'maybe', '2023-08-22 03:07:11', '2025-12-17 19:46:55', 'd5Dx1pO4', '6374818'), + (7415, 22, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd5Dx1pO4', '6382573'), + (7416, 22, 2239, 'not_attending', '2023-09-01 14:57:04', '2025-12-17 19:46:56', 'd5Dx1pO4', '6387592'), + (7417, 22, 2240, 'attending', '2023-09-08 21:19:04', '2025-12-17 19:46:56', 'd5Dx1pO4', '6388603'), + (7418, 22, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd5Dx1pO4', '6388604'), + (7419, 22, 2242, 'attending', '2023-09-19 14:15:56', '2025-12-17 19:46:45', 'd5Dx1pO4', '6388606'), + (7420, 22, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd5Dx1pO4', '6394629'), + (7421, 22, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd5Dx1pO4', '6394631'), + (7422, 22, 2253, 'maybe', '2023-09-25 22:54:50', '2025-12-17 19:46:45', 'd5Dx1pO4', '6401811'), + (7423, 22, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd5Dx1pO4', '6440863'), + (7424, 22, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd5Dx1pO4', '6445440'), + (7425, 22, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd5Dx1pO4', '6453951'), + (7426, 22, 2280, 'maybe', '2023-10-10 15:42:16', '2025-12-17 19:46:46', 'd5Dx1pO4', '6455470'), + (7427, 22, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd5Dx1pO4', '6461696'), + (7428, 22, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd5Dx1pO4', '6462129'), + (7429, 22, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd5Dx1pO4', '6463218'), + (7430, 22, 2299, 'maybe', '2023-10-17 21:26:52', '2025-12-17 19:46:46', 'd5Dx1pO4', '6472181'), + (7431, 22, 2302, 'attending', '2023-10-23 12:03:53', '2025-12-17 19:46:46', 'd5Dx1pO4', '6482535'), + (7432, 22, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd5Dx1pO4', '6482693'), + (7433, 22, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd5Dx1pO4', '6484200'), + (7434, 22, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'd5Dx1pO4', '6484680'), + (7435, 22, 2310, 'attending', '2023-11-10 17:04:56', '2025-12-17 19:46:47', 'd5Dx1pO4', '6487709'), + (7436, 22, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd5Dx1pO4', '6507741'), + (7437, 22, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd5Dx1pO4', '6514659'), + (7438, 22, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd5Dx1pO4', '6514660'), + (7439, 22, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd5Dx1pO4', '6519103'), + (7440, 22, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd5Dx1pO4', '6535681'), + (7441, 22, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd5Dx1pO4', '6584747'), + (7442, 22, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd5Dx1pO4', '6587097'), + (7443, 22, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd5Dx1pO4', '6609022'), + (7444, 22, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd5Dx1pO4', '6632757'), + (7445, 22, 2377, 'attending', '2024-01-08 22:52:59', '2025-12-17 19:46:37', 'd5Dx1pO4', '6643448'), + (7446, 22, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd5Dx1pO4', '6644187'), + (7447, 22, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd5Dx1pO4', '6648951'), + (7448, 22, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd5Dx1pO4', '6648952'), + (7449, 22, 2388, 'attending', '2024-01-04 21:27:55', '2025-12-17 19:46:37', 'd5Dx1pO4', '6649244'), + (7450, 22, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd5Dx1pO4', '6655401'), + (7451, 22, 2397, 'attending', '2024-01-08 22:52:56', '2025-12-17 19:46:37', 'd5Dx1pO4', '6657379'), + (7452, 22, 2399, 'maybe', '2024-01-12 01:46:36', '2025-12-17 19:46:38', 'd5Dx1pO4', '6657583'), + (7453, 22, 2400, 'attending', '2024-01-11 20:53:49', '2025-12-17 19:46:37', 'd5Dx1pO4', '6659378'), + (7454, 22, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd5Dx1pO4', '6661585'), + (7455, 22, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd5Dx1pO4', '6661588'), + (7456, 22, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd5Dx1pO4', '6661589'), + (7457, 22, 2404, 'maybe', '2024-01-15 23:14:14', '2025-12-17 19:46:38', 'd5Dx1pO4', '6666858'), + (7458, 22, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd5Dx1pO4', '6699906'), + (7459, 22, 2408, 'attending', '2024-01-25 21:55:31', '2025-12-17 19:46:40', 'd5Dx1pO4', '6699907'), + (7460, 22, 2409, 'maybe', '2024-02-03 18:52:48', '2025-12-17 19:46:41', 'd5Dx1pO4', '6699909'), + (7461, 22, 2410, 'attending', '2024-02-07 12:44:39', '2025-12-17 19:46:41', 'd5Dx1pO4', '6699911'), + (7462, 22, 2411, 'attending', '2024-02-11 04:28:32', '2025-12-17 19:46:41', 'd5Dx1pO4', '6699913'), + (7463, 22, 2412, 'attending', '2024-02-11 04:28:40', '2025-12-17 19:46:43', 'd5Dx1pO4', '6700717'), + (7464, 22, 2414, 'maybe', '2024-01-20 18:35:30', '2025-12-17 19:46:40', 'd5Dx1pO4', '6701000'), + (7465, 22, 2415, 'maybe', '2024-01-20 18:35:32', '2025-12-17 19:46:40', 'd5Dx1pO4', '6701001'), + (7466, 22, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd5Dx1pO4', '6701109'), + (7467, 22, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd5Dx1pO4', '6705219'), + (7468, 22, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd5Dx1pO4', '6710153'), + (7469, 22, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd5Dx1pO4', '6711552'), + (7470, 22, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd5Dx1pO4', '6711553'), + (7471, 22, 2431, 'attending', '2024-02-02 00:28:39', '2025-12-17 19:46:41', 'd5Dx1pO4', '6712394'), + (7472, 22, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd5Dx1pO4', '6722688'), + (7473, 22, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd5Dx1pO4', '6730620'), + (7474, 22, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd5Dx1pO4', '6730642'), + (7475, 22, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd5Dx1pO4', '6740364'), + (7476, 22, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd5Dx1pO4', '6743829'), + (7477, 22, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd5Dx1pO4', '7030380'), + (7478, 22, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd5Dx1pO4', '7033677'), + (7479, 22, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd5Dx1pO4', '7035415'), + (7480, 22, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd5Dx1pO4', '7044715'), + (7481, 22, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd5Dx1pO4', '7050318'), + (7482, 22, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd5Dx1pO4', '7050319'), + (7483, 22, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd5Dx1pO4', '7050322'), + (7484, 22, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd5Dx1pO4', '7057804'), + (7485, 22, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'd5Dx1pO4', '7059866'), + (7486, 22, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd5Dx1pO4', '7072824'), + (7487, 22, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd5Dx1pO4', '7074348'), + (7488, 22, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd5Dx1pO4', '7074364'), + (7489, 22, 2529, 'maybe', '2024-05-23 17:43:46', '2025-12-17 19:46:35', 'd5Dx1pO4', '7074369'), + (7490, 22, 2537, 'attending', '2024-03-16 18:11:36', '2025-12-17 19:46:33', 'd5Dx1pO4', '7085484'), + (7491, 22, 2539, 'not_attending', '2024-04-02 17:12:51', '2025-12-17 19:46:33', 'd5Dx1pO4', '7085486'), + (7492, 22, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd5Dx1pO4', '7089267'), + (7493, 22, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd5Dx1pO4', '7098747'), + (7494, 22, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd5Dx1pO4', '7113468'), + (7495, 22, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd5Dx1pO4', '7114856'), + (7496, 22, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd5Dx1pO4', '7114951'), + (7497, 22, 2556, 'maybe', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd5Dx1pO4', '7114955'), + (7498, 22, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd5Dx1pO4', '7114956'), + (7499, 22, 2558, 'attending', '2024-05-01 23:23:40', '2025-12-17 19:46:35', 'd5Dx1pO4', '7114957'), + (7500, 22, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd5Dx1pO4', '7153615'), + (7501, 22, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd5Dx1pO4', '7159484'), + (7502, 22, 2585, 'maybe', '2024-04-24 20:41:23', '2025-12-17 19:46:34', 'd5Dx1pO4', '7175828'), + (7503, 22, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd5Dx1pO4', '7178446'), + (7504, 22, 2600, 'attending', '2024-04-28 21:55:21', '2025-12-17 19:46:35', 'd5Dx1pO4', '7196794'), + (7505, 22, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd5Dx1pO4', '7220467'), + (7506, 22, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd5Dx1pO4', '7240354'), + (7507, 22, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd5Dx1pO4', '7251633'), + (7508, 22, 2626, 'not_attending', '2024-05-14 20:08:34', '2025-12-17 19:46:35', 'd5Dx1pO4', '7264723'), + (7509, 22, 2627, 'maybe', '2024-05-25 12:55:49', '2025-12-17 19:46:35', 'd5Dx1pO4', '7264724'), + (7510, 22, 2628, 'not_attending', '2024-05-31 12:50:36', '2025-12-17 19:46:36', 'd5Dx1pO4', '7264725'), + (7511, 22, 2629, 'not_attending', '2024-06-03 23:15:38', '2025-12-17 19:46:28', 'd5Dx1pO4', '7264726'), + (7512, 22, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'd5Dx1pO4', '7302674'), + (7513, 22, 2667, 'maybe', '2024-06-05 18:07:17', '2025-12-17 19:46:36', 'd5Dx1pO4', '7307776'), + (7514, 22, 2678, 'maybe', '2024-06-15 20:56:24', '2025-12-17 19:46:28', 'd5Dx1pO4', '7319489'), + (7515, 22, 2688, 'maybe', '2024-06-24 22:22:16', '2025-12-17 19:46:29', 'd5Dx1pO4', '7324073'), + (7516, 22, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd5Dx1pO4', '7324074'), + (7517, 22, 2690, 'attending', '2024-07-07 02:55:55', '2025-12-17 19:46:30', 'd5Dx1pO4', '7324075'), + (7518, 22, 2691, 'attending', '2024-07-20 20:06:44', '2025-12-17 19:46:30', 'd5Dx1pO4', '7324076'), + (7519, 22, 2692, 'maybe', '2024-07-22 23:29:09', '2025-12-17 19:46:30', 'd5Dx1pO4', '7324077'), + (7520, 22, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd5Dx1pO4', '7324078'), + (7521, 22, 2694, 'attending', '2024-08-06 14:06:30', '2025-12-17 19:46:31', 'd5Dx1pO4', '7324079'), + (7522, 22, 2695, 'attending', '2024-08-17 19:56:41', '2025-12-17 19:46:31', 'd5Dx1pO4', '7324080'), + (7523, 22, 2696, 'attending', '2024-08-24 18:51:27', '2025-12-17 19:46:32', 'd5Dx1pO4', '7324081'), + (7524, 22, 2697, 'not_attending', '2024-08-26 12:32:31', '2025-12-17 19:46:32', 'd5Dx1pO4', '7324082'), + (7525, 22, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd5Dx1pO4', '7331457'), + (7526, 22, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'd5Dx1pO4', '7356752'), + (7527, 22, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd5Dx1pO4', '7363643'), + (7528, 22, 2767, 'attending', '2024-07-22 16:57:18', '2025-12-17 19:46:30', 'd5Dx1pO4', '7364726'), + (7529, 22, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd5Dx1pO4', '7368606'), + (7530, 22, 2785, 'attending', '2024-07-30 15:42:54', '2025-12-17 19:46:31', 'd5Dx1pO4', '7380988'), + (7531, 22, 2791, 'attending', '2024-08-06 23:20:56', '2025-12-17 19:46:31', 'd5Dx1pO4', '7390760'), + (7532, 22, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd5Dx1pO4', '7397462'), + (7533, 22, 2821, 'not_attending', '2024-10-06 02:30:13', '2025-12-17 19:46:26', 'd5Dx1pO4', '7424275'), + (7534, 22, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd5Dx1pO4', '7424276'), + (7535, 22, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd5Dx1pO4', '7432751'), + (7536, 22, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd5Dx1pO4', '7432752'), + (7537, 22, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd5Dx1pO4', '7432753'), + (7538, 22, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432754'), + (7539, 22, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432755'), + (7540, 22, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432756'), + (7541, 22, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432758'), + (7542, 22, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd5Dx1pO4', '7432759'), + (7543, 22, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd5Dx1pO4', '7433834'), + (7544, 22, 2862, 'maybe', '2024-10-01 03:40:45', '2025-12-17 19:46:25', 'd5Dx1pO4', '7470197'), + (7545, 22, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd5Dx1pO4', '7685613'), + (7546, 22, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd5Dx1pO4', '7688194'), + (7547, 22, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd5Dx1pO4', '7688196'), + (7548, 22, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd5Dx1pO4', '7688289'), + (7549, 22, 2912, 'maybe', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd5Dx1pO4', '7692763'), + (7550, 22, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd5Dx1pO4', '7697552'), + (7551, 22, 2915, 'attending', '2024-11-18 21:52:08', '2025-12-17 19:46:27', 'd5Dx1pO4', '7698151'), + (7552, 22, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd5Dx1pO4', '7699878'), + (7553, 22, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd5Dx1pO4', '7704043'), + (7554, 22, 2922, 'attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'd5Dx1pO4', '7710890'), + (7555, 22, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd5Dx1pO4', '7712467'), + (7556, 22, 2925, 'attending', '2024-12-13 17:20:39', '2025-12-17 19:46:21', 'd5Dx1pO4', '7713584'), + (7557, 22, 2926, 'not_attending', '2024-12-05 15:02:29', '2025-12-17 19:46:21', 'd5Dx1pO4', '7713585'), + (7558, 22, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd5Dx1pO4', '7713586'), + (7559, 22, 2929, 'not_attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'd5Dx1pO4', '7723465'), + (7560, 22, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd5Dx1pO4', '7738518'), + (7561, 22, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd5Dx1pO4', '7750636'), + (7562, 22, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd5Dx1pO4', '7796540'), + (7563, 22, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd5Dx1pO4', '7796541'), + (7564, 22, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd5Dx1pO4', '7796542'), + (7565, 22, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd5Dx1pO4', '7825913'), + (7566, 22, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd5Dx1pO4', '7826209'), + (7567, 22, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd5Dx1pO4', '7834742'), + (7568, 22, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd5Dx1pO4', '7842108'), + (7569, 22, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd5Dx1pO4', '7842902'), + (7570, 22, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd5Dx1pO4', '7842903'), + (7571, 22, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd5Dx1pO4', '7842904'), + (7572, 22, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd5Dx1pO4', '7842905'), + (7573, 22, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd5Dx1pO4', '7855719'), + (7574, 22, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd5Dx1pO4', '7860683'), + (7575, 22, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd5Dx1pO4', '7860684'), + (7576, 22, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd5Dx1pO4', '7866095'), + (7577, 22, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd5Dx1pO4', '7869170'), + (7578, 22, 3014, 'attending', '2025-04-05 14:24:10', '2025-12-17 19:46:20', 'd5Dx1pO4', '7869185'), + (7579, 22, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd5Dx1pO4', '7869188'), + (7580, 22, 3018, 'attending', '2025-04-12 16:20:21', '2025-12-17 19:46:20', 'd5Dx1pO4', '7869189'), + (7581, 22, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd5Dx1pO4', '7869201'), + (7582, 22, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd5Dx1pO4', '7877465'), + (7583, 22, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd5Dx1pO4', '7888250'), + (7584, 22, 3088, 'maybe', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd5Dx1pO4', '7904777'), + (7585, 22, 3094, 'not_attending', '2025-05-07 22:52:49', '2025-12-17 19:46:21', 'd5Dx1pO4', '8342292'), + (7586, 22, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd5Dx1pO4', '8349164'), + (7587, 22, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd5Dx1pO4', '8349545'), + (7588, 22, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd5Dx1pO4', '8353584'), + (7589, 22, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd5Dx1pO4', '8368028'), + (7590, 22, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd5Dx1pO4', '8368029'), + (7591, 22, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd5Dx1pO4', '8388462'), + (7592, 22, 3150, 'attending', '2025-06-19 16:35:21', '2025-12-17 19:46:15', 'd5Dx1pO4', '8393174'), + (7593, 22, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd5Dx1pO4', '8400273'), + (7594, 22, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd5Dx1pO4', '8400274'), + (7595, 22, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd5Dx1pO4', '8400275'), + (7596, 22, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd5Dx1pO4', '8400276'), + (7597, 22, 3158, 'not_attending', '2025-06-04 04:30:57', '2025-12-17 19:46:15', 'd5Dx1pO4', '8401408'), + (7598, 22, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd5Dx1pO4', '8404977'), + (7599, 22, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd5Dx1pO4', '8430783'), + (7600, 22, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd5Dx1pO4', '8430784'), + (7601, 22, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd5Dx1pO4', '8430799'), + (7602, 22, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd5Dx1pO4', '8430800'), + (7603, 22, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd5Dx1pO4', '8430801'), + (7604, 22, 3188, 'attending', '2025-07-09 14:30:12', '2025-12-17 19:46:17', 'd5Dx1pO4', '8438709'), + (7605, 22, 3190, 'maybe', '2025-07-17 14:09:21', '2025-12-17 19:46:17', 'd5Dx1pO4', '8443962'), + (7606, 22, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd5Dx1pO4', '8457738'), + (7607, 22, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd5Dx1pO4', '8459566'), + (7608, 22, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd5Dx1pO4', '8459567'), + (7609, 22, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd5Dx1pO4', '8461032'), + (7610, 22, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd5Dx1pO4', '8477877'), + (7611, 22, 3233, 'maybe', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd5Dx1pO4', '8485688'), + (7612, 22, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd5Dx1pO4', '8490587'), + (7613, 22, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd5Dx1pO4', '8493552'), + (7614, 22, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd5Dx1pO4', '8493553'), + (7615, 22, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd5Dx1pO4', '8493554'), + (7616, 22, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd5Dx1pO4', '8493555'), + (7617, 22, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd5Dx1pO4', '8493556'), + (7618, 22, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd5Dx1pO4', '8493557'), + (7619, 22, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd5Dx1pO4', '8493558'), + (7620, 22, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd5Dx1pO4', '8493559'), + (7621, 22, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd5Dx1pO4', '8493560'), + (7622, 22, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd5Dx1pO4', '8493561'), + (7623, 22, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd5Dx1pO4', '8493572'), + (7624, 22, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd5Dx1pO4', '8540725'), + (7625, 22, 3295, 'maybe', '2025-10-30 19:26:02', '2025-12-17 19:46:14', 'd5Dx1pO4', '8547541'), + (7626, 22, 3306, 'attending', '2025-12-13 04:43:31', '2025-12-17 19:46:11', 'd5Dx1pO4', '8550026'), + (7627, 22, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd5Dx1pO4', '8555421'), + (7628, 23, 2518, 'not_attending', '2024-07-22 04:59:47', '2025-12-17 19:46:30', 'AeBO3kP4', '7074358'), + (7629, 23, 2522, 'maybe', '2024-07-14 02:49:33', '2025-12-17 19:46:30', 'AeBO3kP4', '7074362'), + (7630, 23, 2524, 'attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AeBO3kP4', '7074364'), + (7631, 23, 2526, 'not_attending', '2024-07-31 22:07:49', '2025-12-17 19:46:31', 'AeBO3kP4', '7074366'), + (7632, 23, 2532, 'not_attending', '2024-09-02 14:21:06', '2025-12-17 19:46:32', 'AeBO3kP4', '7074383'), + (7633, 23, 2533, 'not_attending', '2024-08-18 02:25:04', '2025-12-17 19:46:32', 'AeBO3kP4', '7074384'), + (7634, 23, 2629, 'attending', '2024-06-05 15:32:41', '2025-12-17 19:46:28', 'AeBO3kP4', '7264726'), + (7635, 23, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'AeBO3kP4', '7302674'), + (7636, 23, 2663, 'attending', '2024-06-04 08:42:18', '2025-12-17 19:46:36', 'AeBO3kP4', '7303913'), + (7637, 23, 2668, 'attending', '2024-06-05 19:53:24', '2025-12-17 19:46:36', 'AeBO3kP4', '7308821'), + (7638, 23, 2678, 'attending', '2024-06-12 13:56:08', '2025-12-17 19:46:28', 'AeBO3kP4', '7319489'), + (7639, 23, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AeBO3kP4', '7324073'), + (7640, 23, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AeBO3kP4', '7324074'), + (7641, 23, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AeBO3kP4', '7324075'), + (7642, 23, 2691, 'attending', '2024-07-18 22:40:25', '2025-12-17 19:46:30', 'AeBO3kP4', '7324076'), + (7643, 23, 2692, 'maybe', '2024-07-26 07:32:06', '2025-12-17 19:46:30', 'AeBO3kP4', '7324077'), + (7644, 23, 2693, 'attending', '2024-07-21 03:55:25', '2025-12-17 19:46:31', 'AeBO3kP4', '7324078'), + (7645, 23, 2694, 'attending', '2024-08-08 22:07:02', '2025-12-17 19:46:31', 'AeBO3kP4', '7324079'), + (7646, 23, 2695, 'attending', '2024-08-13 01:55:25', '2025-12-17 19:46:31', 'AeBO3kP4', '7324080'), + (7647, 23, 2696, 'attending', '2024-08-18 02:25:13', '2025-12-17 19:46:32', 'AeBO3kP4', '7324081'), + (7648, 23, 2697, 'attending', '2024-08-30 07:14:05', '2025-12-17 19:46:32', 'AeBO3kP4', '7324082'), + (7649, 23, 2699, 'attending', '2024-06-12 18:54:59', '2025-12-17 19:46:28', 'AeBO3kP4', '7324385'), + (7650, 23, 2700, 'attending', '2024-06-14 14:31:33', '2025-12-17 19:46:28', 'AeBO3kP4', '7324388'), + (7651, 23, 2702, 'attending', '2024-06-13 02:08:38', '2025-12-17 19:46:28', 'AeBO3kP4', '7324867'), + (7652, 23, 2706, 'maybe', '2024-06-17 07:05:30', '2025-12-17 19:46:28', 'AeBO3kP4', '7324947'), + (7653, 23, 2711, 'attending', '2024-07-16 18:07:08', '2025-12-17 19:46:30', 'AeBO3kP4', '7326524'), + (7654, 23, 2712, 'attending', '2024-07-31 22:08:39', '2025-12-17 19:46:31', 'AeBO3kP4', '7326525'), + (7655, 23, 2721, 'maybe', '2024-06-19 03:03:53', '2025-12-17 19:46:29', 'AeBO3kP4', '7331456'), + (7656, 23, 2722, 'attending', '2024-07-08 02:33:26', '2025-12-17 19:46:29', 'AeBO3kP4', '7331457'), + (7657, 23, 2729, 'not_attending', '2024-06-21 21:29:55', '2025-12-17 19:46:29', 'AeBO3kP4', '7335092'), + (7658, 23, 2741, 'attending', '2024-06-30 23:33:56', '2025-12-17 19:46:30', 'AeBO3kP4', '7344592'), + (7659, 23, 2746, 'attending', '2024-07-11 20:49:48', '2025-12-17 19:46:29', 'AeBO3kP4', '7348713'), + (7660, 23, 2747, 'attending', '2024-07-16 13:42:40', '2025-12-17 19:46:30', 'AeBO3kP4', '7353587'), + (7661, 23, 2753, 'maybe', '2024-07-14 02:48:46', '2025-12-17 19:46:30', 'AeBO3kP4', '7355538'), + (7662, 23, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AeBO3kP4', '7356752'), + (7663, 23, 2755, 'attending', '2024-07-09 16:34:09', '2025-12-17 19:46:29', 'AeBO3kP4', '7357808'), + (7664, 23, 2757, 'maybe', '2024-07-14 02:48:04', '2025-12-17 19:46:30', 'AeBO3kP4', '7358733'), + (7665, 23, 2759, 'attending', '2024-07-12 17:06:56', '2025-12-17 19:46:30', 'AeBO3kP4', '7359624'), + (7666, 23, 2760, 'maybe', '2024-07-17 20:23:43', '2025-12-17 19:46:30', 'AeBO3kP4', '7359871'), + (7667, 23, 2766, 'attending', '2024-07-27 12:21:46', '2025-12-17 19:46:30', 'AeBO3kP4', '7363643'), + (7668, 23, 2767, 'attending', '2024-07-22 04:55:48', '2025-12-17 19:46:30', 'AeBO3kP4', '7364726'), + (7669, 23, 2768, 'maybe', '2024-07-18 03:25:42', '2025-12-17 19:46:30', 'AeBO3kP4', '7366031'), + (7670, 23, 2769, 'maybe', '2024-07-20 01:48:56', '2025-12-17 19:46:30', 'AeBO3kP4', '7366803'), + (7671, 23, 2771, 'attending', '2024-07-21 02:25:04', '2025-12-17 19:46:30', 'AeBO3kP4', '7368263'), + (7672, 23, 2772, 'attending', '2024-07-21 03:49:21', '2025-12-17 19:46:30', 'AeBO3kP4', '7368267'), + (7673, 23, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AeBO3kP4', '7368606'), + (7674, 23, 2777, 'maybe', '2024-07-24 22:09:28', '2025-12-17 19:46:30', 'AeBO3kP4', '7370870'), + (7675, 23, 2782, 'maybe', '2024-07-29 06:34:51', '2025-12-17 19:46:30', 'AeBO3kP4', '7376725'), + (7676, 23, 2783, 'attending', '2024-08-03 10:31:18', '2025-12-17 19:46:31', 'AeBO3kP4', '7379699'), + (7677, 23, 2791, 'not_attending', '2024-08-07 21:00:39', '2025-12-17 19:46:31', 'AeBO3kP4', '7390760'), + (7678, 23, 2792, 'attending', '2024-08-09 19:49:49', '2025-12-17 19:46:31', 'AeBO3kP4', '7390763'), + (7679, 23, 2798, 'maybe', '2024-08-12 16:09:40', '2025-12-17 19:46:31', 'AeBO3kP4', '7395910'), + (7680, 23, 2799, 'attending', '2024-08-12 14:13:33', '2025-12-17 19:46:31', 'AeBO3kP4', '7395922'), + (7681, 23, 2800, 'attending', '2024-08-16 03:51:12', '2025-12-17 19:46:31', 'AeBO3kP4', '7397405'), + (7682, 23, 2801, 'attending', '2024-08-13 22:01:27', '2025-12-17 19:46:32', 'AeBO3kP4', '7397462'), + (7683, 23, 2803, 'attending', '2024-08-14 14:37:12', '2025-12-17 19:46:32', 'AeBO3kP4', '7397869'), + (7684, 23, 2804, 'attending', '2024-08-16 20:08:57', '2025-12-17 19:46:32', 'AeBO3kP4', '7399270'), + (7685, 23, 2805, 'attending', '2024-08-20 13:51:05', '2025-12-17 19:46:32', 'AeBO3kP4', '7403620'), + (7686, 23, 2806, 'attending', '2024-09-14 16:55:56', '2025-12-17 19:46:25', 'AeBO3kP4', '7404888'), + (7687, 23, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AeBO3kP4', '7424275'), + (7688, 23, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AeBO3kP4', '7424276'), + (7689, 23, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AeBO3kP4', '7432751'), + (7690, 23, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AeBO3kP4', '7432752'), + (7691, 23, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AeBO3kP4', '7432753'), + (7692, 23, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AeBO3kP4', '7432754'), + (7693, 23, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AeBO3kP4', '7432755'), + (7694, 23, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AeBO3kP4', '7432756'), + (7695, 23, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AeBO3kP4', '7432758'), + (7696, 23, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AeBO3kP4', '7432759'), + (7697, 23, 2832, 'maybe', '2024-09-09 20:25:39', '2025-12-17 19:46:24', 'AeBO3kP4', '7433324'), + (7698, 23, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AeBO3kP4', '7433834'), + (7699, 23, 2835, 'maybe', '2024-09-11 15:31:28', '2025-12-17 19:46:24', 'AeBO3kP4', '7437354'), + (7700, 23, 2838, 'attending', '2024-09-19 17:59:01', '2025-12-17 19:46:25', 'AeBO3kP4', '7439182'), + (7701, 23, 2839, 'attending', '2024-09-22 18:02:30', '2025-12-17 19:46:25', 'AeBO3kP4', '7439262'), + (7702, 23, 2840, 'attending', '2024-09-16 07:28:26', '2025-12-17 19:46:25', 'AeBO3kP4', '7444429'), + (7703, 23, 2845, 'maybe', '2024-09-21 18:53:24', '2025-12-17 19:46:25', 'AeBO3kP4', '7452129'), + (7704, 23, 2847, 'attending', '2024-09-22 16:09:58', '2025-12-17 19:46:25', 'AeBO3kP4', '7452299'), + (7705, 23, 2849, 'attending', '2024-09-28 06:05:27', '2025-12-17 19:46:25', 'AeBO3kP4', '7457114'), + (7706, 23, 2850, 'attending', '2024-09-25 13:43:24', '2025-12-17 19:46:25', 'AeBO3kP4', '7457153'), + (7707, 23, 2858, 'attending', '2024-10-12 19:19:02', '2025-12-17 19:46:26', 'AeBO3kP4', '7469388'), + (7708, 23, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AeBO3kP4', '7470197'), + (7709, 23, 2865, 'maybe', '2024-11-01 16:25:13', '2025-12-17 19:46:26', 'AeBO3kP4', '7471200'), + (7710, 23, 2871, 'maybe', '2024-10-16 15:51:54', '2025-12-17 19:46:26', 'AeBO3kP4', '7480481'), + (7711, 23, 2874, 'attending', '2024-10-08 05:12:04', '2025-12-17 19:46:26', 'AeBO3kP4', '7482239'), + (7712, 23, 2878, 'maybe', '2024-10-16 12:16:07', '2025-12-17 19:46:26', 'AeBO3kP4', '7633857'), + (7713, 23, 2881, 'maybe', '2024-11-04 05:59:33', '2025-12-17 19:46:26', 'AeBO3kP4', '7644047'), + (7714, 23, 2883, 'maybe', '2024-10-19 04:28:00', '2025-12-17 19:46:26', 'AeBO3kP4', '7649157'), + (7715, 23, 2892, 'maybe', '2024-10-28 07:21:00', '2025-12-17 19:46:26', 'AeBO3kP4', '7672064'), + (7716, 23, 2893, 'attending', '2024-11-03 02:58:41', '2025-12-17 19:46:26', 'AeBO3kP4', '7672705'), + (7717, 23, 2895, 'not_attending', '2024-11-05 07:07:40', '2025-12-17 19:46:26', 'AeBO3kP4', '7682072'), + (7718, 23, 2896, 'not_attending', '2024-11-09 23:40:12', '2025-12-17 19:46:27', 'AeBO3kP4', '7683647'), + (7719, 23, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'AeBO3kP4', '7685613'), + (7720, 23, 2900, 'not_attending', '2024-11-09 23:37:22', '2025-12-17 19:46:26', 'AeBO3kP4', '7686090'), + (7721, 23, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AeBO3kP4', '7688194'), + (7722, 23, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AeBO3kP4', '7688196'), + (7723, 23, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AeBO3kP4', '7688289'), + (7724, 23, 2911, 'attending', '2024-11-11 04:01:12', '2025-12-17 19:46:27', 'AeBO3kP4', '7689876'), + (7725, 23, 2912, 'maybe', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'AeBO3kP4', '7692763'), + (7726, 23, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AeBO3kP4', '7697552'), + (7727, 23, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AeBO3kP4', '7699878'), + (7728, 23, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'AeBO3kP4', '7704043'), + (7729, 23, 2922, 'not_attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'AeBO3kP4', '7710890'), + (7730, 23, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AeBO3kP4', '7712467'), + (7731, 23, 2925, 'not_attending', '2024-12-02 21:55:54', '2025-12-17 19:46:21', 'AeBO3kP4', '7713584'), + (7732, 23, 2926, 'not_attending', '2024-12-02 21:55:47', '2025-12-17 19:46:21', 'AeBO3kP4', '7713585'), + (7733, 23, 2927, 'not_attending', '2024-12-02 21:55:58', '2025-12-17 19:46:22', 'AeBO3kP4', '7713586'), + (7734, 23, 2929, 'not_attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'AeBO3kP4', '7723465'), + (7735, 23, 2958, 'attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'AeBO3kP4', '7738518'), + (7736, 23, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AeBO3kP4', '7750636'), + (7737, 23, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AeBO3kP4', '7796540'), + (7738, 23, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AeBO3kP4', '7796541'), + (7739, 23, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AeBO3kP4', '7796542'), + (7740, 23, 2967, 'maybe', '2025-01-07 15:25:29', '2025-12-17 19:46:22', 'AeBO3kP4', '7797181'), + (7741, 23, 2975, 'maybe', '2025-01-25 22:42:14', '2025-12-17 19:46:22', 'AeBO3kP4', '7823615'), + (7742, 23, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AeBO3kP4', '7825913'), + (7743, 23, 2980, 'attending', '2025-01-29 04:45:56', '2025-12-17 19:46:22', 'AeBO3kP4', '7825920'), + (7744, 23, 2981, 'maybe', '2025-01-29 16:59:27', '2025-12-17 19:46:22', 'AeBO3kP4', '7826124'), + (7745, 23, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AeBO3kP4', '7826209'), + (7746, 23, 2983, 'maybe', '2025-02-01 18:09:43', '2025-12-17 19:46:23', 'AeBO3kP4', '7829499'), + (7747, 23, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AeBO3kP4', '7834742'), + (7748, 23, 2986, 'attending', '2025-02-04 18:22:32', '2025-12-17 19:46:23', 'AeBO3kP4', '7835405'), + (7749, 23, 2987, 'attending', '2025-02-07 14:30:12', '2025-12-17 19:46:23', 'AeBO3kP4', '7839568'), + (7750, 23, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AeBO3kP4', '7842108'), + (7751, 23, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AeBO3kP4', '7842902'), + (7752, 23, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AeBO3kP4', '7842903'), + (7753, 23, 2993, 'maybe', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AeBO3kP4', '7842904'), + (7754, 23, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AeBO3kP4', '7842905'), + (7755, 23, 2999, 'attending', '2025-02-13 02:45:14', '2025-12-17 19:46:23', 'AeBO3kP4', '7844784'), + (7756, 23, 3005, 'attending', '2025-02-19 00:20:33', '2025-12-17 19:46:24', 'AeBO3kP4', '7854604'), + (7757, 23, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AeBO3kP4', '7855719'), + (7758, 23, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AeBO3kP4', '7860683'), + (7759, 23, 3008, 'attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AeBO3kP4', '7860684'), + (7760, 23, 3009, 'maybe', '2025-02-27 18:35:23', '2025-12-17 19:46:18', 'AeBO3kP4', '7864019'), + (7761, 23, 3010, 'maybe', '2025-03-04 04:22:46', '2025-12-17 19:46:18', 'AeBO3kP4', '7864879'), + (7762, 23, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AeBO3kP4', '7866095'), + (7763, 23, 3013, 'attending', '2025-03-04 04:22:25', '2025-12-17 19:46:18', 'AeBO3kP4', '7869170'), + (7764, 23, 3015, 'not_attending', '2025-04-22 23:28:46', '2025-12-17 19:46:20', 'AeBO3kP4', '7869186'), + (7765, 23, 3016, 'attending', '2025-03-16 06:34:31', '2025-12-17 19:46:20', 'AeBO3kP4', '7869187'), + (7766, 23, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AeBO3kP4', '7869188'), + (7767, 23, 3018, 'attending', '2025-03-16 06:34:28', '2025-12-17 19:46:20', 'AeBO3kP4', '7869189'), + (7768, 23, 3028, 'attending', '2025-04-27 02:34:46', '2025-12-17 19:46:20', 'AeBO3kP4', '7869199'), + (7769, 23, 3029, 'attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AeBO3kP4', '7869201'), + (7770, 23, 3030, 'maybe', '2025-03-06 04:59:57', '2025-12-17 19:46:18', 'AeBO3kP4', '7872088'), + (7771, 23, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AeBO3kP4', '7877465'), + (7772, 23, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AeBO3kP4', '7878570'), + (7773, 23, 3036, 'attending', '2025-03-13 15:55:51', '2025-12-17 19:46:19', 'AeBO3kP4', '7880952'), + (7774, 23, 3037, 'attending', '2025-03-13 18:41:51', '2025-12-17 19:46:19', 'AeBO3kP4', '7880977'), + (7775, 23, 3039, 'attending', '2025-03-19 20:51:28', '2025-12-17 19:46:19', 'AeBO3kP4', '7881992'), + (7776, 23, 3041, 'not_attending', '2025-03-14 20:22:55', '2025-12-17 19:46:19', 'AeBO3kP4', '7881995'), + (7777, 23, 3046, 'maybe', '2025-04-08 10:43:56', '2025-12-17 19:46:20', 'AeBO3kP4', '7882692'), + (7778, 23, 3048, 'attending', '2025-04-19 19:19:47', '2025-12-17 19:46:20', 'AeBO3kP4', '7882694'), + (7779, 23, 3051, 'not_attending', '2025-03-20 22:07:16', '2025-12-17 19:46:19', 'AeBO3kP4', '7884023'), + (7780, 23, 3052, 'attending', '2025-03-20 22:07:22', '2025-12-17 19:46:19', 'AeBO3kP4', '7884024'), + (7781, 23, 3054, 'attending', '2025-03-17 03:44:16', '2025-12-17 19:46:19', 'AeBO3kP4', '7884168'), + (7782, 23, 3055, 'maybe', '2025-03-21 05:35:11', '2025-12-17 19:46:19', 'AeBO3kP4', '7888118'), + (7783, 23, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AeBO3kP4', '7888250'), + (7784, 23, 3057, 'attending', '2025-03-24 18:09:58', '2025-12-17 19:46:19', 'AeBO3kP4', '7890059'), + (7785, 23, 3062, 'maybe', '2025-03-29 23:02:11', '2025-12-17 19:46:19', 'AeBO3kP4', '7892738'), + (7786, 23, 3070, 'not_attending', '2025-04-06 06:24:02', '2025-12-17 19:46:20', 'AeBO3kP4', '7894829'), + (7787, 23, 3075, 'maybe', '2025-04-18 00:55:26', '2025-12-17 19:46:20', 'AeBO3kP4', '7898896'), + (7788, 23, 3085, 'maybe', '2025-04-08 19:18:38', '2025-12-17 19:46:20', 'AeBO3kP4', '7903688'), + (7789, 23, 3087, 'maybe', '2025-04-14 18:17:49', '2025-12-17 19:46:20', 'AeBO3kP4', '7903856'), + (7790, 23, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AeBO3kP4', '7904777'), + (7791, 23, 3090, 'not_attending', '2025-04-16 17:06:55', '2025-12-17 19:46:20', 'AeBO3kP4', '7914315'), + (7792, 23, 3091, 'attending', '2025-04-17 21:11:29', '2025-12-17 19:46:20', 'AeBO3kP4', '8340289'), + (7793, 23, 3094, 'attending', '2025-04-25 22:17:19', '2025-12-17 19:46:21', 'AeBO3kP4', '8342292'), + (7794, 23, 3095, 'not_attending', '2025-05-03 19:47:56', '2025-12-17 19:46:20', 'AeBO3kP4', '8342293'), + (7795, 23, 3097, 'not_attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'AeBO3kP4', '8342993'), + (7796, 23, 3102, 'maybe', '2025-04-27 02:34:55', '2025-12-17 19:46:20', 'AeBO3kP4', '8346008'), + (7797, 23, 3104, 'attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AeBO3kP4', '8349164'), + (7798, 23, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AeBO3kP4', '8349545'), + (7799, 23, 3106, 'not_attending', '2025-04-29 13:57:48', '2025-12-17 19:46:20', 'AeBO3kP4', '8349552'), + (7800, 23, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AeBO3kP4', '8353584'), + (7801, 23, 3114, 'attending', '2025-05-02 21:34:04', '2025-12-17 19:46:20', 'AeBO3kP4', '8357180'), + (7802, 23, 3123, 'not_attending', '2025-05-08 19:44:27', '2025-12-17 19:46:21', 'AeBO3kP4', '8363523'), + (7803, 23, 3124, 'maybe', '2025-05-09 21:17:41', '2025-12-17 19:46:21', 'AeBO3kP4', '8363566'), + (7804, 23, 3126, 'attending', '2025-05-12 09:08:59', '2025-12-17 19:46:21', 'AeBO3kP4', '8365614'), + (7805, 23, 3131, 'not_attending', '2025-05-13 04:27:18', '2025-12-17 19:46:21', 'AeBO3kP4', '8368028'), + (7806, 23, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AeBO3kP4', '8368029'), + (7807, 23, 3136, 'attending', '2025-05-19 03:07:10', '2025-12-17 19:46:21', 'AeBO3kP4', '8374152'), + (7808, 23, 3137, 'attending', '2025-05-19 03:04:55', '2025-12-17 19:46:21', 'AeBO3kP4', '8374153'), + (7809, 23, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AeBO3kP4', '8388462'), + (7810, 23, 3150, 'attending', '2025-06-15 00:27:53', '2025-12-17 19:46:15', 'AeBO3kP4', '8393174'), + (7811, 23, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AeBO3kP4', '8400273'), + (7812, 23, 3154, 'attending', '2025-06-15 00:32:52', '2025-12-17 19:46:15', 'AeBO3kP4', '8400274'), + (7813, 23, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AeBO3kP4', '8400275'), + (7814, 23, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AeBO3kP4', '8400276'), + (7815, 23, 3160, 'not_attending', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'AeBO3kP4', '8401411'), + (7816, 23, 3161, 'not_attending', '2025-06-04 09:04:49', '2025-12-17 19:46:15', 'AeBO3kP4', '8401412'), + (7817, 23, 3165, 'attending', '2025-06-07 20:48:42', '2025-12-17 19:46:14', 'AeBO3kP4', '8404220'), + (7818, 23, 3168, 'maybe', '2025-06-20 00:54:49', '2025-12-17 19:46:15', 'AeBO3kP4', '8404522'), + (7819, 23, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AeBO3kP4', '8404977'), + (7820, 23, 3181, 'maybe', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AeBO3kP4', '8430783'), + (7821, 23, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AeBO3kP4', '8430784'), + (7822, 23, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AeBO3kP4', '8430799'), + (7823, 23, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AeBO3kP4', '8430800'), + (7824, 23, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AeBO3kP4', '8430801'), + (7825, 23, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AeBO3kP4', '8438709'), + (7826, 23, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AeBO3kP4', '8457738'), + (7827, 23, 3195, 'attending', '2025-08-06 00:48:02', '2025-12-17 19:46:17', 'AeBO3kP4', '8458118'), + (7828, 23, 3196, 'attending', '2025-08-12 05:45:20', '2025-12-17 19:46:17', 'AeBO3kP4', '8458543'), + (7829, 23, 3198, 'attending', '2025-08-16 22:05:08', '2025-12-17 19:46:18', 'AeBO3kP4', '8459268'), + (7830, 23, 3200, 'maybe', '2025-07-19 18:56:36', '2025-12-17 19:46:17', 'AeBO3kP4', '8459566'), + (7831, 23, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AeBO3kP4', '8459567'), + (7832, 23, 3203, 'attending', '2025-07-20 02:36:20', '2025-12-17 19:46:17', 'AeBO3kP4', '8461032'), + (7833, 23, 3210, 'maybe', '2025-08-27 09:35:50', '2025-12-17 19:46:18', 'AeBO3kP4', '8471162'), + (7834, 23, 3211, 'maybe', '2025-08-08 15:54:45', '2025-12-17 19:46:17', 'AeBO3kP4', '8477785'), + (7835, 23, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AeBO3kP4', '8477877'), + (7836, 23, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AeBO3kP4', '8485688'), + (7837, 23, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AeBO3kP4', '8490587'), + (7838, 23, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AeBO3kP4', '8493552'), + (7839, 23, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AeBO3kP4', '8493553'), + (7840, 23, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AeBO3kP4', '8493554'), + (7841, 23, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AeBO3kP4', '8493555'), + (7842, 23, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AeBO3kP4', '8493556'), + (7843, 23, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AeBO3kP4', '8493557'), + (7844, 23, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AeBO3kP4', '8493558'), + (7845, 23, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AeBO3kP4', '8493559'), + (7846, 23, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AeBO3kP4', '8493560'), + (7847, 23, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AeBO3kP4', '8493561'), + (7848, 23, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AeBO3kP4', '8493572'), + (7849, 23, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AeBO3kP4', '8540725'), + (7850, 23, 3292, 'attending', '2025-10-15 05:53:19', '2025-12-17 19:46:14', 'AeBO3kP4', '8543835'), + (7851, 23, 3293, 'not_attending', '2025-10-15 09:51:41', '2025-12-17 19:46:14', 'AeBO3kP4', '8543836'), + (7852, 23, 3295, 'attending', '2025-11-01 15:05:05', '2025-12-17 19:46:14', 'AeBO3kP4', '8547541'), + (7853, 23, 3308, 'maybe', '2025-11-03 01:42:24', '2025-12-17 19:46:14', 'AeBO3kP4', '8550408'), + (7854, 23, 3309, 'attending', '2025-11-18 00:40:25', '2025-12-17 19:46:14', 'AeBO3kP4', '8550409'), + (7855, 23, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AeBO3kP4', '8555421'), + (7856, 23, 3346, 'not_attending', '2026-01-02 20:16:39', '2026-01-02 20:16:39', NULL, NULL), + (7857, 23, 3354, 'maybe', '2025-12-31 14:10:52', '2025-12-31 14:10:52', NULL, NULL), + (7858, 24, 3241, 'attending', '2025-10-09 04:29:24', '2025-12-17 19:46:13', 'mL2QO3a4', '8493557'), + (7859, 24, 3242, 'attending', '2025-10-25 04:48:07', '2025-12-17 19:46:14', 'mL2QO3a4', '8493558'), + (7860, 24, 3244, 'attending', '2025-10-02 05:08:53', '2025-12-17 19:46:13', 'mL2QO3a4', '8493560'), + (7861, 24, 3253, 'attending', '2025-10-25 22:26:44', '2025-12-17 19:46:14', 'mL2QO3a4', '8493572'), + (7862, 24, 3278, 'attending', '2025-09-30 14:58:18', '2025-12-17 19:46:13', 'mL2QO3a4', '8535533'), + (7863, 24, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mL2QO3a4', '8540725'), + (7864, 24, 3289, 'attending', '2025-10-25 04:49:41', '2025-12-17 19:46:14', 'mL2QO3a4', '8542939'), + (7865, 24, 3295, 'attending', '2025-10-29 03:03:24', '2025-12-17 19:46:14', 'mL2QO3a4', '8547541'), + (7866, 24, 3300, 'attending', '2025-11-08 00:23:40', '2025-12-17 19:46:14', 'mL2QO3a4', '8549145'), + (7867, 24, 3304, 'attending', '2025-11-20 00:49:32', '2025-12-17 19:46:14', 'mL2QO3a4', '8550024'), + (7868, 24, 3305, 'attending', '2025-12-04 04:30:21', '2025-12-17 19:46:11', 'mL2QO3a4', '8550025'), + (7869, 24, 3306, 'attending', '2025-12-13 06:37:30', '2025-12-17 19:46:11', 'mL2QO3a4', '8550026'), + (7870, 24, 3307, 'not_attending', '2025-12-15 06:36:36', '2025-12-17 19:46:11', 'mL2QO3a4', '8550027'), + (7871, 24, 3308, 'attending', '2025-11-11 07:39:38', '2025-12-17 19:46:14', 'mL2QO3a4', '8550408'), + (7872, 24, 3309, 'not_attending', '2025-11-17 08:07:10', '2025-12-17 19:46:14', 'mL2QO3a4', '8550409'), + (7873, 24, 3320, 'attending', '2025-11-13 00:50:04', '2025-12-17 19:46:14', 'mL2QO3a4', '8555219'), + (7874, 24, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mL2QO3a4', '8555421'), + (7875, 24, 3332, 'attending', '2025-12-04 04:30:04', '2025-12-17 19:46:11', 'mL2QO3a4', '8562248'), + (7876, 25, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4WB6BgnA', '6482693'), + (7877, 25, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4WB6BgnA', '6484200'), + (7878, 25, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4WB6BgnA', '6507741'), + (7879, 25, 2322, 'attending', '2023-11-14 02:57:13', '2025-12-17 19:46:48', '4WB6BgnA', '6514659'), + (7880, 25, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4WB6BgnA', '6514660'), + (7881, 25, 2324, 'attending', '2023-12-08 14:54:09', '2025-12-17 19:46:49', '4WB6BgnA', '6514662'), + (7882, 25, 2325, 'attending', '2023-12-05 03:01:35', '2025-12-17 19:46:36', '4WB6BgnA', '6514663'), + (7883, 25, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4WB6BgnA', '6519103'), + (7884, 25, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4WB6BgnA', '6535681'), + (7885, 25, 2340, 'attending', '2023-11-15 03:54:46', '2025-12-17 19:46:48', '4WB6BgnA', '6540279'), + (7886, 25, 2342, 'attending', '2023-11-13 19:45:22', '2025-12-17 19:46:47', '4WB6BgnA', '6545076'), + (7887, 25, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4WB6BgnA', '6584747'), + (7888, 25, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4WB6BgnA', '6587097'), + (7889, 25, 2353, 'attending', '2023-11-28 00:36:17', '2025-12-17 19:46:48', '4WB6BgnA', '6588894'), + (7890, 25, 2355, 'attending', '2023-11-28 00:35:55', '2025-12-17 19:46:49', '4WB6BgnA', '6593339'), + (7891, 25, 2356, 'attending', '2023-11-28 00:37:13', '2025-12-17 19:46:36', '4WB6BgnA', '6593340'), + (7892, 25, 2357, 'not_attending', '2023-11-28 00:37:21', '2025-12-17 19:46:36', '4WB6BgnA', '6593341'), + (7893, 25, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4WB6BgnA', '6609022'), + (7894, 25, 2373, 'attending', '2024-01-02 03:16:09', '2025-12-17 19:46:38', '4WB6BgnA', '6632678'), + (7895, 25, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4WB6BgnA', '6632757'), + (7896, 25, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4WB6BgnA', '6644187'), + (7897, 25, 2382, 'attending', '2024-01-02 03:16:44', '2025-12-17 19:46:37', '4WB6BgnA', '6646401'), + (7898, 25, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4WB6BgnA', '6648951'), + (7899, 25, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4WB6BgnA', '6648952'), + (7900, 25, 2388, 'attending', '2024-01-06 23:36:55', '2025-12-17 19:46:37', '4WB6BgnA', '6649244'), + (7901, 25, 2392, 'attending', '2024-01-05 01:34:52', '2025-12-17 19:46:37', '4WB6BgnA', '6654412'), + (7902, 25, 2393, 'attending', '2024-01-05 01:32:33', '2025-12-17 19:46:38', '4WB6BgnA', '6654468'), + (7903, 25, 2394, 'maybe', '2024-01-17 01:29:14', '2025-12-17 19:46:38', '4WB6BgnA', '6654470'), + (7904, 25, 2395, 'attending', '2024-01-05 01:32:37', '2025-12-17 19:46:38', '4WB6BgnA', '6654471'), + (7905, 25, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4WB6BgnA', '6655401'), + (7906, 25, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4WB6BgnA', '6661585'), + (7907, 25, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4WB6BgnA', '6661588'), + (7908, 25, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4WB6BgnA', '6661589'), + (7909, 25, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4WB6BgnA', '6699906'), + (7910, 25, 2408, 'attending', '2024-01-25 00:34:13', '2025-12-17 19:46:40', '4WB6BgnA', '6699907'), + (7911, 25, 2409, 'attending', '2024-01-31 11:24:22', '2025-12-17 19:46:41', '4WB6BgnA', '6699909'), + (7912, 25, 2410, 'attending', '2024-02-07 00:22:39', '2025-12-17 19:46:41', '4WB6BgnA', '6699911'), + (7913, 25, 2411, 'attending', '2024-02-14 10:44:01', '2025-12-17 19:46:41', '4WB6BgnA', '6699913'), + (7914, 25, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4WB6BgnA', '6701109'), + (7915, 25, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4WB6BgnA', '6705219'), + (7916, 25, 2426, 'maybe', '2024-01-21 07:11:03', '2025-12-17 19:46:40', '4WB6BgnA', '6705569'), + (7917, 25, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4WB6BgnA', '6710153'), + (7918, 25, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4WB6BgnA', '6711552'), + (7919, 25, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4WB6BgnA', '6711553'), + (7920, 25, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4WB6BgnA', '6722688'), + (7921, 25, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4WB6BgnA', '6730620'), + (7922, 25, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4WB6BgnA', '6730642'), + (7923, 25, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4WB6BgnA', '6740364'), + (7924, 25, 2455, 'maybe', '2024-02-08 14:49:38', '2025-12-17 19:46:41', '4WB6BgnA', '6741034'), + (7925, 25, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4WB6BgnA', '6743829'), + (7926, 25, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4WB6BgnA', '7030380'), + (7927, 25, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4WB6BgnA', '7033677'), + (7928, 25, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4WB6BgnA', '7035415'), + (7929, 25, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4WB6BgnA', '7044715'), + (7930, 25, 2482, 'maybe', '2024-03-07 01:05:04', '2025-12-17 19:46:44', '4WB6BgnA', '7044719'), + (7931, 25, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4WB6BgnA', '7050318'), + (7932, 25, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4WB6BgnA', '7050319'), + (7933, 25, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4WB6BgnA', '7050322'), + (7934, 25, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4WB6BgnA', '7057804'), + (7935, 25, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', '4WB6BgnA', '7059866'), + (7936, 25, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4WB6BgnA', '7072824'), + (7937, 25, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4WB6BgnA', '7074348'), + (7938, 25, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4WB6BgnA', '7074364'), + (7939, 25, 2525, 'maybe', '2024-06-13 20:48:50', '2025-12-17 19:46:28', '4WB6BgnA', '7074365'), + (7940, 25, 2536, 'maybe', '2024-03-16 05:35:49', '2025-12-17 19:46:33', '4WB6BgnA', '7077689'), + (7941, 25, 2537, 'attending', '2024-03-23 17:26:19', '2025-12-17 19:46:33', '4WB6BgnA', '7085484'), + (7942, 25, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4WB6BgnA', '7089267'), + (7943, 25, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4WB6BgnA', '7098747'), + (7944, 25, 2553, 'maybe', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4WB6BgnA', '7113468'), + (7945, 25, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4WB6BgnA', '7114856'), + (7946, 25, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4WB6BgnA', '7114951'), + (7947, 25, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4WB6BgnA', '7114955'), + (7948, 25, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4WB6BgnA', '7114956'), + (7949, 25, 2558, 'attending', '2024-04-16 20:44:50', '2025-12-17 19:46:35', '4WB6BgnA', '7114957'), + (7950, 25, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4WB6BgnA', '7153615'), + (7951, 25, 2571, 'maybe', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4WB6BgnA', '7159484'), + (7952, 25, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4WB6BgnA', '7178446'), + (7953, 25, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4WB6BgnA', '7220467'), + (7954, 25, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4WB6BgnA', '7240354'), + (7955, 25, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4WB6BgnA', '7251633'), + (7956, 25, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4WB6BgnA', '7263048'), + (7957, 25, 2626, 'attending', '2024-05-18 00:03:40', '2025-12-17 19:46:35', '4WB6BgnA', '7264723'), + (7958, 25, 2627, 'attending', '2024-05-22 02:58:08', '2025-12-17 19:46:35', '4WB6BgnA', '7264724'), + (7959, 25, 2628, 'attending', '2024-05-28 22:47:47', '2025-12-17 19:46:36', '4WB6BgnA', '7264725'), + (7960, 25, 2629, 'attending', '2024-05-28 22:47:49', '2025-12-17 19:46:28', '4WB6BgnA', '7264726'), + (7961, 25, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4WB6BgnA', '7302674'), + (7962, 25, 2671, 'attending', '2024-06-09 23:21:28', '2025-12-17 19:46:28', '4WB6BgnA', '7318256'), + (7963, 25, 2678, 'attending', '2024-06-12 20:13:19', '2025-12-17 19:46:28', '4WB6BgnA', '7319489'), + (7964, 25, 2679, 'attending', '2024-06-17 20:59:24', '2025-12-17 19:46:29', '4WB6BgnA', '7319490'), + (7965, 25, 2683, 'not_attending', '2024-06-11 01:23:18', '2025-12-17 19:46:28', '4WB6BgnA', '7321978'), + (7966, 25, 2687, 'attending', '2024-06-11 21:11:55', '2025-12-17 19:46:28', '4WB6BgnA', '7324019'), + (7967, 25, 2688, 'attending', '2024-06-25 22:36:02', '2025-12-17 19:46:29', '4WB6BgnA', '7324073'), + (7968, 25, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4WB6BgnA', '7324074'), + (7969, 25, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4WB6BgnA', '7324075'), + (7970, 25, 2691, 'attending', '2024-07-17 20:29:08', '2025-12-17 19:46:30', '4WB6BgnA', '7324076'), + (7971, 25, 2692, 'not_attending', '2024-07-21 02:54:52', '2025-12-17 19:46:30', '4WB6BgnA', '7324077'), + (7972, 25, 2693, 'maybe', '2024-08-01 02:56:36', '2025-12-17 19:46:31', '4WB6BgnA', '7324078'), + (7973, 25, 2694, 'attending', '2024-08-09 21:25:56', '2025-12-17 19:46:31', '4WB6BgnA', '7324079'), + (7974, 25, 2695, 'attending', '2024-08-17 04:06:10', '2025-12-17 19:46:31', '4WB6BgnA', '7324080'), + (7975, 25, 2696, 'attending', '2024-08-24 18:49:42', '2025-12-17 19:46:32', '4WB6BgnA', '7324081'), + (7976, 25, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4WB6BgnA', '7324082'), + (7977, 25, 2698, 'attending', '2024-09-04 01:56:32', '2025-12-17 19:46:24', '4WB6BgnA', '7324083'), + (7978, 25, 2702, 'attending', '2024-06-13 00:55:24', '2025-12-17 19:46:28', '4WB6BgnA', '7324867'), + (7979, 25, 2705, 'attending', '2024-06-13 20:49:43', '2025-12-17 19:46:29', '4WB6BgnA', '7324944'), + (7980, 25, 2706, 'attending', '2024-06-19 23:09:26', '2025-12-17 19:46:28', '4WB6BgnA', '7324947'), + (7981, 25, 2707, 'attending', '2024-06-13 20:49:24', '2025-12-17 19:46:28', '4WB6BgnA', '7324952'), + (7982, 25, 2719, 'attending', '2024-06-23 18:17:40', '2025-12-17 19:46:29', '4WB6BgnA', '7331305'), + (7983, 25, 2720, 'attending', '2024-06-18 20:57:01', '2025-12-17 19:46:28', '4WB6BgnA', '7331436'), + (7984, 25, 2721, 'attending', '2024-06-18 23:07:10', '2025-12-17 19:46:29', '4WB6BgnA', '7331456'), + (7985, 25, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4WB6BgnA', '7331457'), + (7986, 25, 2724, 'attending', '2024-06-26 21:18:39', '2025-12-17 19:46:29', '4WB6BgnA', '7332562'), + (7987, 25, 2726, 'attending', '2024-06-19 19:17:45', '2025-12-17 19:46:29', '4WB6BgnA', '7332853'), + (7988, 25, 2733, 'attending', '2024-06-26 00:30:49', '2025-12-17 19:46:29', '4WB6BgnA', '7338853'), + (7989, 25, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4WB6BgnA', '7356752'), + (7990, 25, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', '4WB6BgnA', '7363595'), + (7991, 25, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4WB6BgnA', '7363643'), + (7992, 25, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4WB6BgnA', '7368606'), + (7993, 25, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4WB6BgnA', '7397462'), + (7994, 25, 2821, 'not_attending', '2024-10-12 00:45:48', '2025-12-17 19:46:26', '4WB6BgnA', '7424275'), + (7995, 25, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4WB6BgnA', '7424276'), + (7996, 25, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4WB6BgnA', '7432751'), + (7997, 25, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4WB6BgnA', '7432752'), + (7998, 25, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4WB6BgnA', '7432753'), + (7999, 25, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4WB6BgnA', '7432754'), + (8000, 25, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4WB6BgnA', '7432755'), + (8001, 25, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4WB6BgnA', '7432756'), + (8002, 25, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4WB6BgnA', '7432758'), + (8003, 25, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4WB6BgnA', '7432759'), + (8004, 25, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4WB6BgnA', '7433834'), + (8005, 25, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4WB6BgnA', '7470197'), + (8006, 25, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4WB6BgnA', '7685613'), + (8007, 25, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4WB6BgnA', '7688194'), + (8008, 25, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4WB6BgnA', '7688196'), + (8009, 25, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4WB6BgnA', '7688289'), + (8010, 25, 2909, 'attending', '2024-11-10 21:20:50', '2025-12-17 19:46:27', '4WB6BgnA', '7689771'), + (8011, 25, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4WB6BgnA', '7692763'), + (8012, 25, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4WB6BgnA', '7697552'), + (8013, 25, 2916, 'attending', '2024-11-20 00:53:53', '2025-12-17 19:46:27', '4WB6BgnA', '7699006'), + (8014, 25, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4WB6BgnA', '7699878'), + (8015, 25, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4WB6BgnA', '7704043'), + (8016, 25, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4WB6BgnA', '7712467'), + (8017, 25, 2925, 'attending', '2024-12-12 01:17:45', '2025-12-17 19:46:21', '4WB6BgnA', '7713584'), + (8018, 25, 2926, 'maybe', '2024-12-07 05:00:27', '2025-12-17 19:46:21', '4WB6BgnA', '7713585'), + (8019, 25, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4WB6BgnA', '7713586'), + (8020, 25, 2951, 'attending', '2024-12-12 01:17:41', '2025-12-17 19:46:21', '4WB6BgnA', '7729509'), + (8021, 25, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4WB6BgnA', '7738518'), + (8022, 25, 2962, 'maybe', '2024-12-27 01:44:23', '2025-12-17 19:46:22', '4WB6BgnA', '7750632'), + (8023, 25, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4WB6BgnA', '7750636'), + (8024, 25, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4WB6BgnA', '7796540'), + (8025, 25, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4WB6BgnA', '7796541'), + (8026, 25, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4WB6BgnA', '7796542'), + (8027, 25, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4WB6BgnA', '7825913'), + (8028, 25, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4WB6BgnA', '7826209'), + (8029, 25, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4WB6BgnA', '7834742'), + (8030, 25, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '4WB6BgnA', '7842108'), + (8031, 25, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4WB6BgnA', '7842902'), + (8032, 25, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4WB6BgnA', '7842903'), + (8033, 25, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4WB6BgnA', '7842904'), + (8034, 25, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4WB6BgnA', '7842905'), + (8035, 25, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4WB6BgnA', '7855719'), + (8036, 25, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4WB6BgnA', '7860683'), + (8037, 25, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4WB6BgnA', '7860684'), + (8038, 25, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4WB6BgnA', '7866095'), + (8039, 25, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4WB6BgnA', '7869170'), + (8040, 25, 3014, 'attending', '2025-03-31 22:52:46', '2025-12-17 19:46:19', '4WB6BgnA', '7869185'), + (8041, 25, 3015, 'attending', '2025-04-25 01:43:06', '2025-12-17 19:46:20', '4WB6BgnA', '7869186'), + (8042, 25, 3016, 'attending', '2025-04-16 22:57:34', '2025-12-17 19:46:20', '4WB6BgnA', '7869187'), + (8043, 25, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4WB6BgnA', '7869188'), + (8044, 25, 3018, 'attending', '2025-04-09 00:05:04', '2025-12-17 19:46:20', '4WB6BgnA', '7869189'), + (8045, 25, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4WB6BgnA', '7869201'), + (8046, 25, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4WB6BgnA', '7877465'), + (8047, 25, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4WB6BgnA', '7878570'), + (8048, 25, 3042, 'attending', '2025-03-15 02:13:04', '2025-12-17 19:46:19', '4WB6BgnA', '7882467'), + (8049, 25, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4WB6BgnA', '7888250'), + (8050, 25, 3060, 'not_attending', '2025-03-27 14:16:18', '2025-12-17 19:46:19', '4WB6BgnA', '7892589'), + (8051, 25, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', '4WB6BgnA', '7903852'), + (8052, 25, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4WB6BgnA', '7904777'), + (8053, 25, 3095, 'attending', '2025-04-27 22:56:37', '2025-12-17 19:46:20', '4WB6BgnA', '8342293'), + (8054, 25, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4WB6BgnA', '8349164'), + (8055, 25, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4WB6BgnA', '8349545'), + (8056, 25, 3107, 'attending', '2025-04-27 23:26:09', '2025-12-17 19:46:20', '4WB6BgnA', '8350107'), + (8057, 25, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4WB6BgnA', '8353584'), + (8058, 25, 3127, 'maybe', '2025-05-13 01:23:42', '2025-12-17 19:46:21', '4WB6BgnA', '8365615'), + (8059, 25, 3131, 'attending', '2025-05-15 00:40:30', '2025-12-17 19:46:21', '4WB6BgnA', '8368028'), + (8060, 25, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4WB6BgnA', '8368029'), + (8061, 25, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4WB6BgnA', '8388462'), + (8062, 25, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4WB6BgnA', '8400273'), + (8063, 25, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4WB6BgnA', '8400274'), + (8064, 25, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4WB6BgnA', '8400275'), + (8065, 25, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4WB6BgnA', '8400276'), + (8066, 25, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4WB6BgnA', '8404977'), + (8067, 25, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4WB6BgnA', '8430783'), + (8068, 25, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4WB6BgnA', '8430784'), + (8069, 25, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4WB6BgnA', '8430799'), + (8070, 25, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4WB6BgnA', '8430800'), + (8071, 25, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4WB6BgnA', '8430801'), + (8072, 25, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4WB6BgnA', '8438709'), + (8073, 25, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4WB6BgnA', '8457738'), + (8074, 25, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4WB6BgnA', '8459566'), + (8075, 25, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4WB6BgnA', '8459567'), + (8076, 25, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4WB6BgnA', '8461032'), + (8077, 25, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4WB6BgnA', '8477877'), + (8078, 25, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4WB6BgnA', '8485688'), + (8079, 25, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4WB6BgnA', '8490587'), + (8080, 25, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4WB6BgnA', '8493552'), + (8081, 25, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4WB6BgnA', '8493553'), + (8082, 25, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4WB6BgnA', '8493554'), + (8083, 25, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4WB6BgnA', '8493555'), + (8084, 25, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4WB6BgnA', '8493556'), + (8085, 25, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4WB6BgnA', '8493557'), + (8086, 25, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4WB6BgnA', '8493558'), + (8087, 25, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4WB6BgnA', '8493559'), + (8088, 25, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4WB6BgnA', '8493560'), + (8089, 25, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4WB6BgnA', '8493561'), + (8090, 25, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4WB6BgnA', '8493572'), + (8091, 25, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '4WB6BgnA', '8540725'), + (8092, 25, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4WB6BgnA', '8555421'), + (8093, 26, 2518, 'attending', '2024-07-21 03:04:21', '2025-12-17 19:46:30', 'dJZQ6EMd', '7074358'), + (8094, 26, 2522, 'attending', '2024-07-17 01:59:16', '2025-12-17 19:46:30', 'dJZQ6EMd', '7074362'), + (8095, 26, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJZQ6EMd', '7074364'), + (8096, 26, 2527, 'maybe', '2024-06-26 01:20:50', '2025-12-17 19:46:29', 'dJZQ6EMd', '7074367'), + (8097, 26, 2531, 'not_attending', '2024-08-28 22:14:48', '2025-12-17 19:46:32', 'dJZQ6EMd', '7074378'), + (8098, 26, 2661, 'attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'dJZQ6EMd', '7302674'), + (8099, 26, 2678, 'attending', '2024-06-14 21:55:17', '2025-12-17 19:46:28', 'dJZQ6EMd', '7319489'), + (8100, 26, 2679, 'attending', '2024-06-20 01:22:14', '2025-12-17 19:46:29', 'dJZQ6EMd', '7319490'), + (8101, 26, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324073'), + (8102, 26, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324074'), + (8103, 26, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJZQ6EMd', '7324075'), + (8104, 26, 2691, 'attending', '2024-07-14 01:46:47', '2025-12-17 19:46:30', 'dJZQ6EMd', '7324076'), + (8105, 26, 2692, 'attending', '2024-07-21 18:01:56', '2025-12-17 19:46:30', 'dJZQ6EMd', '7324077'), + (8106, 26, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJZQ6EMd', '7324078'), + (8107, 26, 2694, 'attending', '2024-08-07 01:27:24', '2025-12-17 19:46:31', 'dJZQ6EMd', '7324079'), + (8108, 26, 2697, 'attending', '2024-08-27 16:00:01', '2025-12-17 19:46:32', 'dJZQ6EMd', '7324082'), + (8109, 26, 2698, 'attending', '2024-09-03 19:42:37', '2025-12-17 19:46:24', 'dJZQ6EMd', '7324083'), + (8110, 26, 2700, 'attending', '2024-06-14 21:46:57', '2025-12-17 19:46:28', 'dJZQ6EMd', '7324388'), + (8111, 26, 2701, 'maybe', '2024-06-28 18:32:14', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324391'), + (8112, 26, 2702, 'attending', '2024-06-13 18:33:33', '2025-12-17 19:46:28', 'dJZQ6EMd', '7324867'), + (8113, 26, 2705, 'not_attending', '2024-06-30 15:53:32', '2025-12-17 19:46:29', 'dJZQ6EMd', '7324944'), + (8114, 26, 2706, 'attending', '2024-06-19 00:51:19', '2025-12-17 19:46:28', 'dJZQ6EMd', '7324947'), + (8115, 26, 2719, 'attending', '2024-06-20 01:25:06', '2025-12-17 19:46:29', 'dJZQ6EMd', '7331305'), + (8116, 26, 2720, 'not_attending', '2024-06-18 21:05:50', '2025-12-17 19:46:28', 'dJZQ6EMd', '7331436'), + (8117, 26, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dJZQ6EMd', '7331457'), + (8118, 26, 2723, 'maybe', '2024-06-21 14:09:00', '2025-12-17 19:46:29', 'dJZQ6EMd', '7332389'), + (8119, 26, 2724, 'maybe', '2024-06-25 23:23:58', '2025-12-17 19:46:29', 'dJZQ6EMd', '7332562'), + (8120, 26, 2728, 'attending', '2024-06-21 22:30:15', '2025-12-17 19:46:29', 'dJZQ6EMd', '7334124'), + (8121, 26, 2733, 'attending', '2024-06-26 01:21:16', '2025-12-17 19:46:29', 'dJZQ6EMd', '7338853'), + (8122, 26, 2747, 'attending', '2024-07-17 22:52:00', '2025-12-17 19:46:30', 'dJZQ6EMd', '7353587'), + (8123, 26, 2749, 'attending', '2024-07-09 13:36:13', '2025-12-17 19:46:29', 'dJZQ6EMd', '7355496'), + (8124, 26, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJZQ6EMd', '7356752'), + (8125, 26, 2755, 'attending', '2024-07-10 22:36:19', '2025-12-17 19:46:29', 'dJZQ6EMd', '7357808'), + (8126, 26, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dJZQ6EMd', '7363595'), + (8127, 26, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dJZQ6EMd', '7363643'), + (8128, 26, 2767, 'attending', '2024-07-21 02:58:28', '2025-12-17 19:46:30', 'dJZQ6EMd', '7364726'), + (8129, 26, 2771, 'not_attending', '2024-07-21 02:57:28', '2025-12-17 19:46:30', 'dJZQ6EMd', '7368263'), + (8130, 26, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJZQ6EMd', '7368606'), + (8131, 26, 2786, 'attending', '2024-08-07 00:10:18', '2025-12-17 19:46:31', 'dJZQ6EMd', '7381403'), + (8132, 26, 2790, 'attending', '2024-08-05 20:25:19', '2025-12-17 19:46:31', 'dJZQ6EMd', '7384857'), + (8133, 26, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJZQ6EMd', '7397462'), + (8134, 26, 2806, 'attending', '2024-09-18 15:53:24', '2025-12-17 19:46:25', 'dJZQ6EMd', '7404888'), + (8135, 26, 2808, 'attending', '2024-08-27 22:32:21', '2025-12-17 19:46:32', 'dJZQ6EMd', '7412860'), + (8136, 26, 2821, 'attending', '2024-10-07 20:15:16', '2025-12-17 19:46:26', 'dJZQ6EMd', '7424275'), + (8137, 26, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJZQ6EMd', '7424276'), + (8138, 26, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJZQ6EMd', '7432751'), + (8139, 26, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJZQ6EMd', '7432752'), + (8140, 26, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJZQ6EMd', '7432753'), + (8141, 26, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432754'), + (8142, 26, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432755'), + (8143, 26, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432756'), + (8144, 26, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432758'), + (8145, 26, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJZQ6EMd', '7432759'), + (8146, 26, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dJZQ6EMd', '7433834'), + (8147, 26, 2839, 'attending', '2024-09-25 18:46:28', '2025-12-17 19:46:25', 'dJZQ6EMd', '7439262'), + (8148, 26, 2849, 'attending', '2024-09-30 22:24:07', '2025-12-17 19:46:25', 'dJZQ6EMd', '7457114'), + (8149, 26, 2850, 'attending', '2024-10-01 21:58:04', '2025-12-17 19:46:25', 'dJZQ6EMd', '7457153'), + (8150, 26, 2859, 'maybe', '2024-10-31 23:55:30', '2025-12-17 19:46:26', 'dJZQ6EMd', '7469389'), + (8151, 26, 2861, 'maybe', '2024-10-03 13:46:10', '2025-12-17 19:46:26', 'dJZQ6EMd', '7469826'), + (8152, 26, 2862, 'attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJZQ6EMd', '7470197'), + (8153, 26, 2870, 'attending', '2024-10-05 20:57:56', '2025-12-17 19:46:26', 'dJZQ6EMd', '7475068'), + (8154, 26, 2874, 'attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'dJZQ6EMd', '7482239'), + (8155, 26, 2875, 'attending', '2024-10-07 22:03:31', '2025-12-17 19:46:26', 'dJZQ6EMd', '7482241'), + (8156, 26, 2878, 'maybe', '2024-10-16 18:19:33', '2025-12-17 19:46:26', 'dJZQ6EMd', '7633857'), + (8157, 26, 2881, 'maybe', '2024-11-06 22:05:40', '2025-12-17 19:46:26', 'dJZQ6EMd', '7644047'), + (8158, 26, 2883, 'maybe', '2024-10-23 18:45:19', '2025-12-17 19:46:26', 'dJZQ6EMd', '7649157'), + (8159, 26, 2892, 'attending', '2024-10-30 22:05:22', '2025-12-17 19:46:26', 'dJZQ6EMd', '7672064'), + (8160, 26, 2893, 'attending', '2024-10-29 02:18:09', '2025-12-17 19:46:26', 'dJZQ6EMd', '7672705'), + (8161, 26, 2895, 'maybe', '2024-11-05 06:52:52', '2025-12-17 19:46:26', 'dJZQ6EMd', '7682072'), + (8162, 26, 2896, 'maybe', '2024-11-12 23:52:47', '2025-12-17 19:46:27', 'dJZQ6EMd', '7683647'), + (8163, 26, 2898, 'attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'dJZQ6EMd', '7685613'), + (8164, 26, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJZQ6EMd', '7688194'), + (8165, 26, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJZQ6EMd', '7688196'), + (8166, 26, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJZQ6EMd', '7688289'), + (8167, 26, 2912, 'maybe', '2024-11-15 01:04:33', '2025-12-17 19:46:27', 'dJZQ6EMd', '7692763'), + (8168, 26, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dJZQ6EMd', '7697552'), + (8169, 26, 2915, 'attending', '2024-11-22 00:16:45', '2025-12-17 19:46:27', 'dJZQ6EMd', '7698151'), + (8170, 26, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dJZQ6EMd', '7699878'), + (8171, 26, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'dJZQ6EMd', '7704043'), + (8172, 26, 2921, 'maybe', '2024-11-24 04:23:18', '2025-12-17 19:46:28', 'dJZQ6EMd', '7708460'), + (8173, 26, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dJZQ6EMd', '7712467'), + (8174, 26, 2925, 'attending', '2024-12-12 23:52:57', '2025-12-17 19:46:21', 'dJZQ6EMd', '7713584'), + (8175, 26, 2926, 'attending', '2024-12-03 06:21:27', '2025-12-17 19:46:21', 'dJZQ6EMd', '7713585'), + (8176, 26, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dJZQ6EMd', '7713586'), + (8177, 26, 2929, 'attending', '2024-12-09 21:10:54', '2025-12-17 19:46:21', 'dJZQ6EMd', '7723465'), + (8178, 26, 2930, 'attending', '2024-12-11 20:13:43', '2025-12-17 19:46:21', 'dJZQ6EMd', '7724554'), + (8179, 26, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dJZQ6EMd', '7738518'), + (8180, 26, 2959, 'maybe', '2024-12-24 00:23:32', '2025-12-17 19:46:22', 'dJZQ6EMd', '7747388'), + (8181, 26, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dJZQ6EMd', '7750636'), + (8182, 26, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dJZQ6EMd', '7796540'), + (8183, 26, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dJZQ6EMd', '7796541'), + (8184, 26, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dJZQ6EMd', '7796542'), + (8185, 26, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dJZQ6EMd', '7825913'), + (8186, 26, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dJZQ6EMd', '7825920'), + (8187, 26, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dJZQ6EMd', '7826209'), + (8188, 26, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dJZQ6EMd', '7834742'), + (8189, 26, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dJZQ6EMd', '7842108'), + (8190, 26, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dJZQ6EMd', '7842902'), + (8191, 26, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dJZQ6EMd', '7842903'), + (8192, 26, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dJZQ6EMd', '7842904'), + (8193, 26, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dJZQ6EMd', '7842905'), + (8194, 26, 2999, 'not_attending', '2025-02-13 02:49:33', '2025-12-17 19:46:23', 'dJZQ6EMd', '7844784'), + (8195, 26, 3001, 'attending', '2025-02-21 17:08:06', '2025-12-17 19:46:24', 'dJZQ6EMd', '7854184'), + (8196, 26, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dJZQ6EMd', '7855719'), + (8197, 26, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dJZQ6EMd', '7860683'), + (8198, 26, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dJZQ6EMd', '7860684'), + (8199, 26, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dJZQ6EMd', '7866095'), + (8200, 26, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dJZQ6EMd', '7869170'), + (8201, 26, 3014, 'attending', '2025-03-15 21:54:25', '2025-12-17 19:46:19', 'dJZQ6EMd', '7869185'), + (8202, 26, 3015, 'attending', '2025-04-22 02:30:22', '2025-12-17 19:46:20', 'dJZQ6EMd', '7869186'), + (8203, 26, 3017, 'attending', '2025-03-15 21:54:24', '2025-12-17 19:46:19', 'dJZQ6EMd', '7869188'), + (8204, 26, 3018, 'attending', '2025-04-05 03:20:43', '2025-12-17 19:46:20', 'dJZQ6EMd', '7869189'), + (8205, 26, 3028, 'maybe', '2025-04-07 18:22:34', '2025-12-17 19:46:20', 'dJZQ6EMd', '7869199'), + (8206, 26, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dJZQ6EMd', '7869201'), + (8207, 26, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dJZQ6EMd', '7877465'), + (8208, 26, 3034, 'attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dJZQ6EMd', '7878570'), + (8209, 26, 3045, 'maybe', '2025-04-05 03:20:51', '2025-12-17 19:46:19', 'dJZQ6EMd', '7882691'), + (8210, 26, 3046, 'maybe', '2025-04-12 01:49:02', '2025-12-17 19:46:20', 'dJZQ6EMd', '7882692'), + (8211, 26, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dJZQ6EMd', '7888250'), + (8212, 26, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dJZQ6EMd', '7904777'), + (8213, 26, 3094, 'attending', '2025-05-09 17:28:37', '2025-12-17 19:46:21', 'dJZQ6EMd', '8342292'), + (8214, 26, 3096, 'not_attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dJZQ6EMd', '8342987'), + (8215, 26, 3097, 'not_attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dJZQ6EMd', '8342993'), + (8216, 26, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dJZQ6EMd', '8349164'), + (8217, 26, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dJZQ6EMd', '8349545'), + (8218, 26, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dJZQ6EMd', '8353584'), + (8219, 26, 3124, 'maybe', '2025-05-12 23:23:58', '2025-12-17 19:46:21', 'dJZQ6EMd', '8363566'), + (8220, 26, 3131, 'attending', '2025-05-13 21:12:52', '2025-12-17 19:46:21', 'dJZQ6EMd', '8368028'), + (8221, 26, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dJZQ6EMd', '8368029'), + (8222, 26, 3133, 'maybe', '2025-05-21 04:06:34', '2025-12-17 19:46:14', 'dJZQ6EMd', '8368030'), + (8223, 26, 3136, 'maybe', '2025-05-21 19:00:36', '2025-12-17 19:46:21', 'dJZQ6EMd', '8374152'), + (8224, 26, 3137, 'attending', '2025-05-21 19:00:26', '2025-12-17 19:46:21', 'dJZQ6EMd', '8374153'), + (8225, 26, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dJZQ6EMd', '8388462'), + (8226, 26, 3150, 'attending', '2025-06-07 00:30:33', '2025-12-17 19:46:15', 'dJZQ6EMd', '8393174'), + (8227, 26, 3152, 'attending', '2025-06-03 13:41:15', '2025-12-17 19:46:14', 'dJZQ6EMd', '8393582'), + (8228, 26, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dJZQ6EMd', '8400273'), + (8229, 26, 3154, 'attending', '2025-06-07 00:30:19', '2025-12-17 19:46:15', 'dJZQ6EMd', '8400274'), + (8230, 26, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dJZQ6EMd', '8400275'), + (8231, 26, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dJZQ6EMd', '8400276'), + (8232, 26, 3157, 'attending', '2025-06-04 04:29:10', '2025-12-17 19:46:15', 'dJZQ6EMd', '8401407'), + (8233, 26, 3159, 'attending', '2025-06-04 04:33:31', '2025-12-17 19:46:15', 'dJZQ6EMd', '8401410'), + (8234, 26, 3160, 'attending', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'dJZQ6EMd', '8401411'), + (8235, 26, 3165, 'attending', '2025-06-07 20:08:43', '2025-12-17 19:46:14', 'dJZQ6EMd', '8404220'), + (8236, 26, 3166, 'not_attending', '2025-06-07 22:16:56', '2025-12-17 19:46:15', 'dJZQ6EMd', '8404242'), + (8237, 26, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dJZQ6EMd', '8404977'), + (8238, 26, 3176, 'attending', '2025-06-20 01:02:05', '2025-12-17 19:46:15', 'dJZQ6EMd', '8416741'), + (8239, 26, 3179, 'not_attending', '2025-06-24 03:27:21', '2025-12-17 19:46:15', 'dJZQ6EMd', '8421850'), + (8240, 26, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dJZQ6EMd', '8430783'), + (8241, 26, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dJZQ6EMd', '8430784'), + (8242, 26, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dJZQ6EMd', '8430799'), + (8243, 26, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dJZQ6EMd', '8430800'), + (8244, 26, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dJZQ6EMd', '8430801'), + (8245, 26, 3188, 'not_attending', '2025-07-11 15:17:46', '2025-12-17 19:46:17', 'dJZQ6EMd', '8438709'), + (8246, 26, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dJZQ6EMd', '8457738'), + (8247, 26, 3196, 'maybe', '2025-08-13 17:30:21', '2025-12-17 19:46:17', 'dJZQ6EMd', '8458543'), + (8248, 26, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dJZQ6EMd', '8459566'), + (8249, 26, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dJZQ6EMd', '8459567'), + (8250, 26, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dJZQ6EMd', '8461032'), + (8251, 26, 3205, 'maybe', '2025-07-24 12:06:28', '2025-12-17 19:46:17', 'dJZQ6EMd', '8461764'), + (8252, 26, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dJZQ6EMd', '8477877'), + (8253, 26, 3219, 'maybe', '2025-08-19 15:14:12', '2025-12-17 19:46:18', 'dJZQ6EMd', '8482548'), + (8254, 26, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dJZQ6EMd', '8485688'), + (8255, 26, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dJZQ6EMd', '8490587'), + (8256, 26, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dJZQ6EMd', '8493552'), + (8257, 26, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dJZQ6EMd', '8493553'), + (8258, 26, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dJZQ6EMd', '8493554'), + (8259, 26, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dJZQ6EMd', '8493555'), + (8260, 26, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dJZQ6EMd', '8493556'), + (8261, 26, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dJZQ6EMd', '8493557'), + (8262, 26, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dJZQ6EMd', '8493558'), + (8263, 26, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dJZQ6EMd', '8493559'), + (8264, 26, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dJZQ6EMd', '8493560'), + (8265, 26, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dJZQ6EMd', '8493561'), + (8266, 26, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dJZQ6EMd', '8493572'), + (8267, 26, 3272, 'maybe', '2025-09-18 04:50:15', '2025-12-17 19:46:12', 'dJZQ6EMd', '8524068'), + (8268, 26, 3284, 'maybe', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dJZQ6EMd', '8540725'), + (8269, 26, 3295, 'not_attending', '2025-10-29 15:01:06', '2025-12-17 19:46:14', 'dJZQ6EMd', '8547541'), + (8270, 26, 3300, 'attending', '2025-11-07 16:45:07', '2025-12-17 19:46:14', 'dJZQ6EMd', '8549145'), + (8271, 26, 3302, 'not_attending', '2025-11-10 19:53:36', '2025-12-17 19:46:14', 'dJZQ6EMd', '8550022'), + (8272, 26, 3304, 'not_attending', '2025-11-18 03:44:12', '2025-12-17 19:46:14', 'dJZQ6EMd', '8550024'), + (8273, 26, 3305, 'attending', '2025-12-02 17:01:52', '2025-12-17 19:46:11', 'dJZQ6EMd', '8550025'), + (8274, 26, 3306, 'attending', '2025-12-09 06:43:36', '2025-12-17 19:46:11', 'dJZQ6EMd', '8550026'), + (8275, 26, 3309, 'maybe', '2025-11-18 01:46:52', '2025-12-17 19:46:14', 'dJZQ6EMd', '8550409'), + (8276, 26, 3319, 'attending', '2025-11-11 18:26:27', '2025-12-17 19:46:14', 'dJZQ6EMd', '8553114'), + (8277, 26, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dJZQ6EMd', '8555421'), + (8278, 26, 3325, 'attending', '2025-11-20 00:18:52', '2025-12-17 19:46:14', 'dJZQ6EMd', '8556660'), + (8279, 26, 3327, 'maybe', '2025-12-04 00:45:27', '2025-12-17 19:46:11', 'dJZQ6EMd', '8557174'), + (8280, 26, 3339, 'attending', '2025-12-07 05:26:10', '2025-12-17 19:46:11', 'dJZQ6EMd', '8563326'), + (8281, 26, 3341, 'maybe', '2025-12-13 21:34:16', '2025-12-17 19:46:11', 'dJZQ6EMd', '8564397'), + (8282, 26, 3346, 'attending', '2026-01-01 14:21:49', '2026-01-01 14:21:49', NULL, NULL), + (8283, 27, 648, 'not_attending', '2021-05-26 01:24:51', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3539923'), + (8284, 27, 742, 'attending', '2021-06-12 18:18:29', '2025-12-17 19:47:48', 'VdxEJ2Xm', '3680622'), + (8285, 27, 743, 'attending', '2021-06-13 02:47:51', '2025-12-17 19:47:38', 'VdxEJ2Xm', '3680623'), + (8286, 27, 745, 'maybe', '2021-06-28 17:25:57', '2025-12-17 19:47:38', 'VdxEJ2Xm', '3680625'), + (8287, 27, 746, 'not_attending', '2021-07-09 23:36:36', '2025-12-17 19:47:39', 'VdxEJ2Xm', '3680626'), + (8288, 27, 823, 'not_attending', '2021-06-22 13:43:00', '2025-12-17 19:47:48', 'VdxEJ2Xm', '3974109'), + (8289, 27, 827, 'not_attending', '2021-06-04 20:27:25', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3975311'), + (8290, 27, 828, 'attending', '2021-06-12 18:17:23', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3975312'), + (8291, 27, 832, 'not_attending', '2021-06-04 20:29:13', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3976650'), + (8292, 27, 838, 'not_attending', '2021-06-12 18:15:24', '2025-12-17 19:47:47', 'VdxEJ2Xm', '3994992'), + (8293, 27, 844, 'not_attending', '2021-06-12 18:15:20', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4014338'), + (8294, 27, 867, 'attending', '2021-06-13 02:47:53', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4021848'), + (8295, 27, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4136744'), + (8296, 27, 870, 'attending', '2021-07-03 15:28:15', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4136937'), + (8297, 27, 871, 'attending', '2021-07-03 18:57:58', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4136938'), + (8298, 27, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4136947'), + (8299, 27, 884, 'not_attending', '2021-07-30 14:51:13', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4210314'), + (8300, 27, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4225444'), + (8301, 27, 889, 'attending', '2021-06-27 05:40:52', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4227492'), + (8302, 27, 896, 'not_attending', '2021-06-29 20:08:37', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4231145'), + (8303, 27, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4239259'), + (8304, 27, 900, 'attending', '2021-07-07 15:04:47', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4240316'), + (8305, 27, 901, 'attending', '2021-07-10 20:04:41', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4240317'), + (8306, 27, 902, 'attending', '2021-08-03 22:26:15', '2025-12-17 19:47:41', 'VdxEJ2Xm', '4240318'), + (8307, 27, 903, 'attending', '2021-07-30 14:51:02', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4240320'), + (8308, 27, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4250163'), + (8309, 27, 909, 'attending', '2021-07-07 15:01:49', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4258187'), + (8310, 27, 910, 'attending', '2021-07-07 15:03:03', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4258189'), + (8311, 27, 919, 'not_attending', '2021-07-14 19:08:54', '2025-12-17 19:47:39', 'VdxEJ2Xm', '4275957'), + (8312, 27, 920, 'not_attending', '2021-07-28 00:35:24', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4277819'), + (8313, 27, 922, 'attending', '2021-07-14 19:09:03', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4280811'), + (8314, 27, 933, 'not_attending', '2021-07-28 00:35:17', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4301723'), + (8315, 27, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VdxEJ2Xm', '4302093'), + (8316, 27, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VdxEJ2Xm', '4304151'), + (8317, 27, 969, 'attending', '2021-08-13 22:43:04', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4356699'), + (8318, 27, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4356801'), + (8319, 27, 973, 'not_attending', '2021-08-17 02:48:30', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4366186'), + (8320, 27, 974, 'not_attending', '2021-08-17 02:48:23', '2025-12-17 19:47:42', 'VdxEJ2Xm', '4366187'), + (8321, 27, 990, 'not_attending', '2021-09-01 17:04:14', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4420735'), + (8322, 27, 991, 'not_attending', '2021-09-01 17:04:26', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4420738'), + (8323, 27, 992, 'not_attending', '2021-09-18 22:50:36', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4420739'), + (8324, 27, 993, 'not_attending', '2021-09-25 21:34:22', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4420741'), + (8325, 27, 995, 'attending', '2021-09-01 17:04:53', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4420744'), + (8326, 27, 996, 'not_attending', '2021-10-30 16:39:56', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4420747'), + (8327, 27, 997, 'attending', '2021-09-01 17:05:00', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4420748'), + (8328, 27, 998, 'not_attending', '2021-10-30 16:41:10', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4420749'), + (8329, 27, 1012, 'not_attending', '2021-10-05 19:41:46', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4438816'), + (8330, 27, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VdxEJ2Xm', '4461883'), + (8331, 27, 1051, 'not_attending', '2022-02-04 03:53:01', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4496616'), + (8332, 27, 1053, 'attending', '2022-02-15 21:02:37', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4496618'), + (8333, 27, 1054, 'attending', '2022-03-17 13:24:27', '2025-12-17 19:47:25', 'VdxEJ2Xm', '4496619'), + (8334, 27, 1056, 'not_attending', '2021-11-27 20:50:57', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4496622'), + (8335, 27, 1058, 'maybe', '2022-02-14 15:27:43', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4496625'), + (8336, 27, 1059, 'attending', '2022-03-12 15:53:25', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4496626'), + (8337, 27, 1060, 'not_attending', '2022-03-23 05:57:44', '2025-12-17 19:47:25', 'VdxEJ2Xm', '4496627'), + (8338, 27, 1062, 'attending', '2022-03-04 05:45:34', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4496629'), + (8339, 27, 1067, 'not_attending', '2021-09-24 23:37:21', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4508342'), + (8340, 27, 1073, 'not_attending', '2021-10-01 21:33:38', '2025-12-17 19:47:34', 'VdxEJ2Xm', '4518993'), + (8341, 27, 1086, 'not_attending', '2021-10-13 22:01:13', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4568602'), + (8342, 27, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4585962'), + (8343, 27, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VdxEJ2Xm', '4596356'), + (8344, 27, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4598860'), + (8345, 27, 1098, 'not_attending', '2021-11-11 00:42:29', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4598861'), + (8346, 27, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4602797'), + (8347, 27, 1113, 'not_attending', '2021-11-27 20:49:50', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4635421'), + (8348, 27, 1114, 'not_attending', '2021-11-12 08:47:23', '2025-12-17 19:47:36', 'VdxEJ2Xm', '4637896'), + (8349, 27, 1116, 'not_attending', '2021-11-27 20:50:02', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4642994'), + (8350, 27, 1117, 'not_attending', '2021-11-16 03:39:20', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4642995'), + (8351, 27, 1118, 'not_attending', '2021-11-27 20:50:29', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4642996'), + (8352, 27, 1119, 'not_attending', '2021-11-27 20:50:42', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4642997'), + (8353, 27, 1126, 'attending', '2021-12-12 00:18:09', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4645687'), + (8354, 27, 1127, 'not_attending', '2021-11-27 20:50:18', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4645698'), + (8355, 27, 1128, 'attending', '2021-11-16 03:38:13', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4645704'), + (8356, 27, 1129, 'attending', '2021-11-16 03:39:34', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4645705'), + (8357, 27, 1130, 'attending', '2021-11-27 20:50:07', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4658824'), + (8358, 27, 1131, 'attending', '2021-11-27 20:50:35', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4658825'), + (8359, 27, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VdxEJ2Xm', '4668385'), + (8360, 27, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4694407'), + (8361, 27, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'VdxEJ2Xm', '4706262'), + (8362, 27, 1173, 'not_attending', '2022-01-08 05:37:39', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4736495'), + (8363, 27, 1174, 'attending', '2022-01-13 18:39:16', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4736496'), + (8364, 27, 1175, 'attending', '2022-01-15 23:04:15', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736497'), + (8365, 27, 1176, 'not_attending', '2022-02-04 03:53:03', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736498'), + (8366, 27, 1177, 'attending', '2022-02-10 15:57:13', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736499'), + (8367, 27, 1178, 'attending', '2022-01-26 00:20:50', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736500'), + (8368, 27, 1179, 'attending', '2022-02-15 21:02:38', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4736501'), + (8369, 27, 1180, 'maybe', '2022-02-14 15:27:24', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4736502'), + (8370, 27, 1181, 'attending', '2022-03-04 05:45:31', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4736503'), + (8371, 27, 1182, 'attending', '2022-03-12 15:53:27', '2025-12-17 19:47:33', 'VdxEJ2Xm', '4736504'), + (8372, 27, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VdxEJ2Xm', '4746789'), + (8373, 27, 1188, 'not_attending', '2022-01-15 23:04:05', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4753929'), + (8374, 27, 1196, 'attending', '2022-01-19 20:18:22', '2025-12-17 19:47:32', 'VdxEJ2Xm', '4765583'), + (8375, 27, 1206, 'attending', '2022-04-10 20:36:59', '2025-12-17 19:47:27', 'VdxEJ2Xm', '4773578'), + (8376, 27, 1225, 'not_attending', '2022-02-03 22:13:01', '2025-12-17 19:47:32', 'VdxEJ2Xm', '5019063'), + (8377, 27, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VdxEJ2Xm', '5038850'), + (8378, 27, 1236, 'not_attending', '2022-02-18 01:32:42', '2025-12-17 19:47:32', 'VdxEJ2Xm', '5045826'), + (8379, 27, 1254, 'attending', '2022-03-04 05:45:40', '2025-12-17 19:47:33', 'VdxEJ2Xm', '5129129'), + (8380, 27, 1259, 'attending', '2022-03-11 23:47:59', '2025-12-17 19:47:33', 'VdxEJ2Xm', '5132533'), + (8381, 27, 1272, 'attending', '2022-03-17 15:40:16', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5186582'), + (8382, 27, 1273, 'not_attending', '2022-03-23 05:57:36', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5186583'), + (8383, 27, 1274, 'attending', '2022-03-17 13:23:38', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5186585'), + (8384, 27, 1275, 'attending', '2022-03-17 13:25:15', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5186587'), + (8385, 27, 1277, 'not_attending', '2022-03-17 13:24:21', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5186865'), + (8386, 27, 1281, 'not_attending', '2022-04-08 20:57:30', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5190437'), + (8387, 27, 1284, 'attending', '2022-04-16 06:17:22', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5195095'), + (8388, 27, 1293, 'attending', '2022-04-10 20:36:53', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5214641'), + (8389, 27, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5215989'), + (8390, 27, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5223686'), + (8391, 27, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'VdxEJ2Xm', '5227432'), + (8392, 27, 1311, 'attending', '2022-04-10 20:36:55', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5231430'), + (8393, 27, 1313, 'maybe', '2022-04-08 20:57:31', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5231461'), + (8394, 27, 1344, 'attending', '2022-04-25 20:24:23', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5247465'), + (8395, 27, 1345, 'attending', '2022-04-20 16:29:19', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5247466'), + (8396, 27, 1346, 'attending', '2022-04-20 16:29:17', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5247467'), + (8397, 27, 1348, 'not_attending', '2022-05-01 22:45:25', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5247605'), + (8398, 27, 1349, 'not_attending', '2022-04-20 16:29:08', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5249631'), + (8399, 27, 1354, 'attending', '2022-04-21 17:41:38', '2025-12-17 19:47:27', 'VdxEJ2Xm', '5252569'), + (8400, 27, 1362, 'attending', '2022-04-25 20:23:16', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5260800'), + (8401, 27, 1374, 'attending', '2022-05-07 19:36:01', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5269930'), + (8402, 27, 1378, 'not_attending', '2022-05-05 14:40:47', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5271448'), + (8403, 27, 1379, 'attending', '2022-05-05 14:40:56', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5271449'), + (8404, 27, 1380, 'attending', '2022-05-28 18:14:47', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5271450'), + (8405, 27, 1383, 'attending', '2022-05-10 13:15:08', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5276469'), + (8406, 27, 1384, 'maybe', '2022-05-05 14:39:43', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5277078'), + (8407, 27, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5278159'), + (8408, 27, 1393, 'not_attending', '2022-05-27 15:17:43', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5280603'), + (8409, 27, 1394, 'not_attending', '2022-05-27 22:51:27', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5280667'), + (8410, 27, 1395, 'attending', '2022-05-07 19:36:00', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5281102'), + (8411, 27, 1396, 'not_attending', '2022-05-10 13:14:36', '2025-12-17 19:47:28', 'VdxEJ2Xm', '5281103'), + (8412, 27, 1397, 'attending', '2022-05-18 23:55:50', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5281104'), + (8413, 27, 1407, 'attending', '2022-05-28 18:15:14', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5363695'), + (8414, 27, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'VdxEJ2Xm', '5365960'), + (8415, 27, 1415, 'attending', '2022-06-01 17:05:50', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5368973'), + (8416, 27, 1422, 'not_attending', '2022-05-28 18:15:00', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5375603'), + (8417, 27, 1423, 'not_attending', '2022-06-15 22:07:33', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5375727'), + (8418, 27, 1425, 'not_attending', '2022-05-24 18:45:47', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5375861'), + (8419, 27, 1426, 'attending', '2022-05-24 04:26:54', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5375873'), + (8420, 27, 1428, 'not_attending', '2022-06-08 19:31:43', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5378247'), + (8421, 27, 1431, 'not_attending', '2022-05-30 03:01:55', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5389605'), + (8422, 27, 1442, 'attending', '2022-06-03 20:46:16', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5397265'), + (8423, 27, 1444, 'not_attending', '2022-06-08 19:31:52', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5397614'), + (8424, 27, 1445, 'attending', '2022-06-14 00:54:44', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5397615'), + (8425, 27, 1451, 'not_attending', '2022-06-17 16:08:09', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5403967'), + (8426, 27, 1452, 'not_attending', '2022-06-13 01:45:03', '2025-12-17 19:47:30', 'VdxEJ2Xm', '5404197'), + (8427, 27, 1458, 'maybe', '2022-06-10 15:10:33', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5404786'), + (8428, 27, 1461, 'attending', '2022-06-10 15:10:15', '2025-12-17 19:47:31', 'VdxEJ2Xm', '5405149'), + (8429, 27, 1462, 'not_attending', '2022-06-17 16:08:11', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5405203'), + (8430, 27, 1478, 'maybe', '2022-06-20 07:11:20', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5408794'), + (8431, 27, 1480, 'not_attending', '2022-06-26 22:45:48', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5411699'), + (8432, 27, 1482, 'attending', '2022-06-20 07:10:58', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5412550'), + (8433, 27, 1484, 'maybe', '2022-06-23 04:36:35', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5415046'), + (8434, 27, 1485, 'attending', '2022-06-22 12:52:54', '2025-12-17 19:47:17', 'VdxEJ2Xm', '5416276'), + (8435, 27, 1495, 'maybe', '2022-06-26 22:46:32', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5422086'), + (8436, 27, 1498, 'not_attending', '2022-07-03 01:08:38', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5422406'), + (8437, 27, 1499, 'not_attending', '2022-07-03 01:08:36', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5422407'), + (8438, 27, 1502, 'not_attending', '2022-07-08 22:21:04', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5424565'), + (8439, 27, 1504, 'not_attending', '2022-07-14 17:16:42', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5426882'), + (8440, 27, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5427083'), + (8441, 27, 1511, 'attending', '2022-07-06 23:59:15', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5437733'), + (8442, 27, 1513, 'attending', '2022-07-09 17:06:20', '2025-12-17 19:47:19', 'VdxEJ2Xm', '5441125'), + (8443, 27, 1514, 'attending', '2022-07-14 17:17:37', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5441126'), + (8444, 27, 1515, 'attending', '2022-07-14 17:17:56', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5441128'), + (8445, 27, 1516, 'attending', '2022-07-14 17:17:59', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5441129'), + (8446, 27, 1517, 'not_attending', '2022-07-14 17:18:02', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5441130'), + (8447, 27, 1518, 'attending', '2022-07-14 17:18:06', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5441131'), + (8448, 27, 1519, 'attending', '2022-07-14 17:18:10', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5441132'), + (8449, 27, 1527, 'not_attending', '2022-07-14 17:17:30', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5446425'), + (8450, 27, 1528, 'not_attending', '2022-07-14 17:16:47', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5446643'), + (8451, 27, 1530, 'not_attending', '2022-07-15 16:00:14', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5448612'), + (8452, 27, 1532, 'attending', '2022-07-21 21:38:46', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5448757'), + (8453, 27, 1533, 'maybe', '2022-07-19 16:06:02', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5448758'), + (8454, 27, 1534, 'maybe', '2022-08-02 15:12:35', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5448759'), + (8455, 27, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5453325'), + (8456, 27, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5454516'), + (8457, 27, 1544, 'not_attending', '2022-08-08 21:10:07', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5454517'), + (8458, 27, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5454605'), + (8459, 27, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5455037'), + (8460, 27, 1556, 'attending', '2022-07-22 00:36:17', '2025-12-17 19:47:20', 'VdxEJ2Xm', '5457734'), + (8461, 27, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5461278'), + (8462, 27, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5469480'), + (8463, 27, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5471073'), + (8464, 27, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5474663'), + (8465, 27, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5482022'), + (8466, 27, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'VdxEJ2Xm', '5482793'), + (8467, 27, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5488912'), + (8468, 27, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5492192'), + (8469, 27, 1588, 'maybe', '2022-08-08 21:09:30', '2025-12-17 19:47:22', 'VdxEJ2Xm', '5493139'), + (8470, 27, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5493200'), + (8471, 27, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5502188'), + (8472, 27, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5505059'), + (8473, 27, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5509055'), + (8474, 27, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5512862'), + (8475, 27, 1622, 'attending', '2022-08-23 02:35:51', '2025-12-17 19:47:23', 'VdxEJ2Xm', '5513677'), + (8476, 27, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5513985'), + (8477, 27, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5519981'), + (8478, 27, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5522550'), + (8479, 27, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5534683'), + (8480, 27, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5537735'), + (8481, 27, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5540859'), + (8482, 27, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5546619'), + (8483, 27, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'VdxEJ2Xm', '5555245'), + (8484, 27, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5557747'), + (8485, 27, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5560255'), + (8486, 27, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'VdxEJ2Xm', '5562906'), + (8487, 27, 1667, 'not_attending', '2022-09-24 20:33:39', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5563221'), + (8488, 27, 1668, 'not_attending', '2022-09-24 20:33:51', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5563222'), + (8489, 27, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'VdxEJ2Xm', '5600604'), + (8490, 27, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5605544'), + (8491, 27, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5606737'), + (8492, 27, 1719, 'not_attending', '2022-10-07 17:05:34', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5630958'), + (8493, 27, 1720, 'attending', '2022-10-12 19:56:33', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5630959'), + (8494, 27, 1721, 'attending', '2022-10-16 04:21:06', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5630960'), + (8495, 27, 1722, 'attending', '2022-10-24 16:37:37', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5630961'), + (8496, 27, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5630962'), + (8497, 27, 1724, 'attending', '2022-11-03 16:41:04', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5630966'), + (8498, 27, 1725, 'attending', '2022-11-03 16:41:13', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5630967'), + (8499, 27, 1726, 'attending', '2022-11-03 16:41:19', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5630968'), + (8500, 27, 1727, 'attending', '2022-11-03 16:41:39', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5630969'), + (8501, 27, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5635406'), + (8502, 27, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5638765'), + (8503, 27, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5640097'), + (8504, 27, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5640843'), + (8505, 27, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'VdxEJ2Xm', '5641521'), + (8506, 27, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5642818'), + (8507, 27, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5652395'), + (8508, 27, 1753, 'maybe', '2022-10-19 14:55:09', '2025-12-17 19:47:13', 'VdxEJ2Xm', '5656228'), + (8509, 27, 1762, 'maybe', '2022-11-28 15:08:15', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5670445'), + (8510, 27, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5671637'), + (8511, 27, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5672329'), + (8512, 27, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5674057'), + (8513, 27, 1767, 'maybe', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5674060'), + (8514, 27, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'VdxEJ2Xm', '5677461'), + (8515, 27, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'VdxEJ2Xm', '5698046'), + (8516, 27, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5699760'), + (8517, 27, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5741601'), + (8518, 27, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5763458'), + (8519, 27, 1807, 'attending', '2023-01-11 16:17:37', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5764677'), + (8520, 27, 1808, 'maybe', '2023-03-02 00:07:40', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5764678'), + (8521, 27, 1809, 'attending', '2023-04-12 00:51:09', '2025-12-17 19:46:59', 'VdxEJ2Xm', '5764679'), + (8522, 27, 1813, 'maybe', '2023-04-27 14:01:00', '2025-12-17 19:47:01', 'VdxEJ2Xm', '5764683'), + (8523, 27, 1814, 'attending', '2023-02-23 20:49:37', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5764684'), + (8524, 27, 1815, 'attending', '2023-02-19 00:04:37', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5764685'), + (8525, 27, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'VdxEJ2Xm', '5774172'), + (8526, 27, 1825, 'maybe', '2022-11-27 04:27:05', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5776760'), + (8527, 27, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'VdxEJ2Xm', '5818247'), + (8528, 27, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5819471'), + (8529, 27, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'VdxEJ2Xm', '5827739'), + (8530, 27, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5844306'), + (8531, 27, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5850159'), + (8532, 27, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5858999'), + (8533, 27, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5871984'), + (8534, 27, 1860, 'maybe', '2023-01-13 05:47:25', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5876309'), + (8535, 27, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5876354'), + (8536, 27, 1864, 'attending', '2023-01-22 00:34:14', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5879675'), + (8537, 27, 1865, 'attending', '2023-01-24 00:37:22', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5879676'), + (8538, 27, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5880939'), + (8539, 27, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5880940'), + (8540, 27, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5880942'), + (8541, 27, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5880943'), + (8542, 27, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'VdxEJ2Xm', '5887890'), + (8543, 27, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5888598'), + (8544, 27, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5893260'), + (8545, 27, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5899826'), + (8546, 27, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5900199'), + (8547, 27, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5900200'), + (8548, 27, 1891, 'maybe', '2023-03-22 01:34:46', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5900202'), + (8549, 27, 1892, 'attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5900203'), + (8550, 27, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5901108'), + (8551, 27, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'VdxEJ2Xm', '5901126'), + (8552, 27, 1897, 'not_attending', '2023-01-31 22:40:51', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5901128'), + (8553, 27, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5909655'), + (8554, 27, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5910522'), + (8555, 27, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5910526'), + (8556, 27, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5910528'), + (8557, 27, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'VdxEJ2Xm', '5916219'), + (8558, 27, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5936234'), + (8559, 27, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5958351'), + (8560, 27, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5959751'), + (8561, 27, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5959755'), + (8562, 27, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5960055'), + (8563, 27, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5961684'), + (8564, 27, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5962132'), + (8565, 27, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5962133'), + (8566, 27, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5962134'), + (8567, 27, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'VdxEJ2Xm', '5962317'), + (8568, 27, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'VdxEJ2Xm', '5962318'), + (8569, 27, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5965933'), + (8570, 27, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'VdxEJ2Xm', '5967014'), + (8571, 27, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5972763'), + (8572, 27, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5972815'), + (8573, 27, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5974016'), + (8574, 27, 1962, 'attending', '2023-03-08 01:59:20', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5975052'), + (8575, 27, 1963, 'attending', '2023-03-08 02:08:47', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5975054'), + (8576, 27, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'VdxEJ2Xm', '5981515'), + (8577, 27, 1966, 'maybe', '2023-03-12 18:07:07', '2025-12-17 19:47:10', 'VdxEJ2Xm', '5983042'), + (8578, 27, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5993516'), + (8579, 27, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'VdxEJ2Xm', '5998939'), + (8580, 27, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6028191'), + (8581, 27, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'VdxEJ2Xm', '6040066'), + (8582, 27, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'VdxEJ2Xm', '6042717'), + (8583, 27, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6044838'), + (8584, 27, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6044839'), + (8585, 27, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'VdxEJ2Xm', '6045684'), + (8586, 27, 1991, 'attending', '2023-03-30 15:01:29', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6047354'), + (8587, 27, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6050104'), + (8588, 27, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'VdxEJ2Xm', '6053195'), + (8589, 27, 2006, 'maybe', '2023-04-05 16:28:21', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6053198'), + (8590, 27, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6056085'), + (8591, 27, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6056916'), + (8592, 27, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6059290'), + (8593, 27, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6060328'), + (8594, 27, 2014, 'attending', '2023-04-12 00:46:40', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6060337'), + (8595, 27, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6061037'), + (8596, 27, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6061039'), + (8597, 27, 2018, 'attending', '2023-04-12 00:50:53', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6061171'), + (8598, 27, 2020, 'attending', '2023-04-14 17:13:58', '2025-12-17 19:46:59', 'VdxEJ2Xm', '6065813'), + (8599, 27, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6067245'), + (8600, 27, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6068094'), + (8601, 27, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6068252'), + (8602, 27, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6068253'), + (8603, 27, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6068254'), + (8604, 27, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6068280'), + (8605, 27, 2032, 'attending', '2023-04-24 23:03:06', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6068281'), + (8606, 27, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'VdxEJ2Xm', '6069093'), + (8607, 27, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6072528'), + (8608, 27, 2043, 'maybe', '2023-04-26 17:37:47', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6073023'), + (8609, 27, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6075556'), + (8610, 27, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'VdxEJ2Xm', '6079840'), + (8611, 27, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6083398'), + (8612, 27, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6093504'), + (8613, 27, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6097414'), + (8614, 27, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6097442'), + (8615, 27, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'VdxEJ2Xm', '6097684'), + (8616, 27, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6098762'), + (8617, 27, 2064, 'not_attending', '2023-06-20 02:16:34', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6099988'), + (8618, 27, 2065, 'attending', '2023-06-17 23:24:46', '2025-12-17 19:46:49', 'VdxEJ2Xm', '6101169'), + (8619, 27, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6101361'), + (8620, 27, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6101362'), + (8621, 27, 2071, 'attending', '2023-05-15 03:17:23', '2025-12-17 19:47:03', 'VdxEJ2Xm', '6104949'), + (8622, 27, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6107314'), + (8623, 27, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6119877'), + (8624, 27, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6120034'), + (8625, 27, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6135924'), + (8626, 27, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6136733'), + (8627, 27, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'VdxEJ2Xm', '6137989'), + (8628, 27, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6150864'), + (8629, 27, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6155491'), + (8630, 27, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6164417'), + (8631, 27, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6166388'), + (8632, 27, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'VdxEJ2Xm', '6176439'), + (8633, 27, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6182410'), + (8634, 27, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6185812'), + (8635, 27, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'VdxEJ2Xm', '6187651'), + (8636, 27, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6187963'), + (8637, 27, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6187964'), + (8638, 27, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6187966'), + (8639, 27, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6187967'), + (8640, 27, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6187969'), + (8641, 27, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6334878'), + (8642, 27, 2147, 'not_attending', '2023-07-16 20:16:01', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6335666'), + (8643, 27, 2150, 'attending', '2023-07-09 21:55:06', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6335687'), + (8644, 27, 2151, 'maybe', '2023-07-10 23:49:10', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6335700'), + (8645, 27, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6337236'), + (8646, 27, 2154, 'attending', '2023-07-12 21:44:18', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6337689'), + (8647, 27, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6337970'), + (8648, 27, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6338308'), + (8649, 27, 2157, 'attending', '2023-07-12 21:52:35', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6338342'), + (8650, 27, 2158, 'attending', '2023-07-12 23:26:16', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6338353'), + (8651, 27, 2159, 'attending', '2023-07-16 17:49:24', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6338355'), + (8652, 27, 2160, 'not_attending', '2023-07-18 02:14:53', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6338358'), + (8653, 27, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6341710'), + (8654, 27, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6342044'), + (8655, 27, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6342298'), + (8656, 27, 2168, 'attending', '2023-07-17 19:28:03', '2025-12-17 19:46:52', 'VdxEJ2Xm', '6342302'), + (8657, 27, 2169, 'attending', '2023-07-17 19:37:44', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6342306'), + (8658, 27, 2170, 'attending', '2023-07-17 19:40:19', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6342307'), + (8659, 27, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6343294'), + (8660, 27, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6347034'), + (8661, 27, 2177, 'not_attending', '2023-08-07 21:02:36', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6347053'), + (8662, 27, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'VdxEJ2Xm', '6347056'), + (8663, 27, 2181, 'attending', '2023-07-25 19:43:59', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6349354'), + (8664, 27, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6353830'), + (8665, 27, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6353831'), + (8666, 27, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6357867'), + (8667, 27, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6358652'), + (8668, 27, 2193, 'attending', '2023-08-03 22:01:03', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6358668'), + (8669, 27, 2194, 'attending', '2023-08-03 22:03:22', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6358669'), + (8670, 27, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'VdxEJ2Xm', '6361709'), + (8671, 27, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6361710'), + (8672, 27, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6361711'), + (8673, 27, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6361712'), + (8674, 27, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6361713'), + (8675, 27, 2216, 'attending', '2023-08-19 16:47:28', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6364123'), + (8676, 27, 2232, 'attending', '2023-08-23 12:34:29', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6374818'), + (8677, 27, 2235, 'attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'VdxEJ2Xm', '6382573'), + (8678, 27, 2239, 'attending', '2023-08-31 18:08:44', '2025-12-17 19:46:56', 'VdxEJ2Xm', '6387592'), + (8679, 27, 2240, 'attending', '2023-09-08 19:57:08', '2025-12-17 19:46:56', 'VdxEJ2Xm', '6388603'), + (8680, 27, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'VdxEJ2Xm', '6388604'), + (8681, 27, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'VdxEJ2Xm', '6394629'), + (8682, 27, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6394631'), + (8683, 27, 2253, 'attending', '2023-09-30 22:48:28', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6401811'), + (8684, 27, 2255, 'attending', '2023-09-17 18:24:03', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6403562'), + (8685, 27, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6440863'), + (8686, 27, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'VdxEJ2Xm', '6445440'), + (8687, 27, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6453951'), + (8688, 27, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6461696'), + (8689, 27, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6462129'), + (8690, 27, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6463218'), + (8691, 27, 2299, 'attending', '2023-10-21 00:33:07', '2025-12-17 19:46:46', 'VdxEJ2Xm', '6472181'), + (8692, 27, 2303, 'attending', '2023-10-23 17:39:19', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6482691'), + (8693, 27, 2304, 'attending', '2023-10-23 17:39:34', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6482693'), + (8694, 27, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6484200'), + (8695, 27, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6484680'), + (8696, 27, 2310, 'not_attending', '2023-11-01 22:34:48', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6487709'), + (8697, 27, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6507741'), + (8698, 27, 2322, 'attending', '2023-11-01 22:34:51', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6514659'), + (8699, 27, 2323, 'attending', '2023-11-01 22:40:00', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6514660'), + (8700, 27, 2324, 'attending', '2023-11-01 22:40:02', '2025-12-17 19:46:49', 'VdxEJ2Xm', '6514662'), + (8701, 27, 2325, 'not_attending', '2023-11-01 22:40:05', '2025-12-17 19:46:36', 'VdxEJ2Xm', '6514663'), + (8702, 27, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'VdxEJ2Xm', '6519103'), + (8703, 27, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6535681'), + (8704, 27, 2338, 'attending', '2023-11-21 18:35:46', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6538868'), + (8705, 27, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6584747'), + (8706, 27, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6587097'), + (8707, 27, 2358, 'attending', '2023-11-29 18:57:29', '2025-12-17 19:46:48', 'VdxEJ2Xm', '6595321'), + (8708, 27, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'VdxEJ2Xm', '6609022'), + (8709, 27, 2373, 'attending', '2024-01-04 19:51:59', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6632678'), + (8710, 27, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'VdxEJ2Xm', '6632757'), + (8711, 27, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6644187'), + (8712, 27, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6648951'), + (8713, 27, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6648952'), + (8714, 27, 2388, 'attending', '2024-01-04 19:51:31', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6649244'), + (8715, 27, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6655401'), + (8716, 27, 2399, 'not_attending', '2024-01-09 14:31:38', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6657583'), + (8717, 27, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'VdxEJ2Xm', '6661585'), + (8718, 27, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'VdxEJ2Xm', '6661588'), + (8719, 27, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6661589'), + (8720, 27, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6699906'), + (8721, 27, 2408, 'attending', '2024-01-27 05:28:16', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6699907'), + (8722, 27, 2409, 'attending', '2024-01-31 21:51:25', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6699909'), + (8723, 27, 2410, 'maybe', '2024-02-07 22:47:49', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6699911'), + (8724, 27, 2411, 'attending', '2024-02-13 13:51:12', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6699913'), + (8725, 27, 2412, 'maybe', '2024-02-20 01:11:22', '2025-12-17 19:46:43', 'VdxEJ2Xm', '6700717'), + (8726, 27, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6701109'), + (8727, 27, 2420, 'attending', '2024-01-18 15:50:48', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6704561'), + (8728, 27, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6705219'), + (8729, 27, 2427, 'attending', '2024-01-20 18:57:15', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6708410'), + (8730, 27, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6710153'), + (8731, 27, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6711552'), + (8732, 27, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'VdxEJ2Xm', '6711553'), + (8733, 27, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6722688'), + (8734, 27, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6730620'), + (8735, 27, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6730642'), + (8736, 27, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'VdxEJ2Xm', '6740364'), + (8737, 27, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'VdxEJ2Xm', '6743829'), + (8738, 27, 2467, 'attending', '2024-02-25 21:52:13', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7029987'), + (8739, 27, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7030380'), + (8740, 27, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'VdxEJ2Xm', '7033677'), + (8741, 27, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7035415'), + (8742, 27, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7044715'), + (8743, 27, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7050318'), + (8744, 27, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'VdxEJ2Xm', '7050319'), + (8745, 27, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7050322'), + (8746, 27, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'VdxEJ2Xm', '7057804'), + (8747, 27, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7072824'), + (8748, 27, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7074348'), + (8749, 27, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7074364'), + (8750, 27, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7089267'), + (8751, 27, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7098747'), + (8752, 27, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7113468'), + (8753, 27, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7114856'), + (8754, 27, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7114951'), + (8755, 27, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7114955'), + (8756, 27, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7114956'), + (8757, 27, 2558, 'attending', '2024-04-15 15:38:12', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7114957'), + (8758, 27, 2567, 'attending', '2024-04-06 19:25:22', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7144962'), + (8759, 27, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7153615'), + (8760, 27, 2569, 'attending', '2024-04-07 19:39:18', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7154056'), + (8761, 27, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'VdxEJ2Xm', '7159484'), + (8762, 27, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7178446'), + (8763, 27, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'VdxEJ2Xm', '7220467'), + (8764, 27, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7240354'), + (8765, 27, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7251633'), + (8766, 27, 2626, 'attending', '2024-05-18 02:50:34', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7264723'), + (8767, 27, 2627, 'attending', '2024-05-20 14:22:28', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7264724'), + (8768, 27, 2628, 'attending', '2024-05-30 17:52:00', '2025-12-17 19:46:36', 'VdxEJ2Xm', '7264725'), + (8769, 27, 2629, 'attending', '2024-06-06 22:01:40', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7264726'), + (8770, 27, 2647, 'attending', '2024-05-21 01:30:14', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7282057'), + (8771, 27, 2650, 'maybe', '2024-05-24 16:28:58', '2025-12-17 19:46:35', 'VdxEJ2Xm', '7288199'), + (8772, 27, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7302674'), + (8773, 27, 2662, 'attending', '2024-06-02 18:58:55', '2025-12-17 19:46:36', 'VdxEJ2Xm', '7302815'), + (8774, 27, 2672, 'attending', '2024-06-09 16:31:29', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7318459'), + (8775, 27, 2674, 'attending', '2024-06-17 20:10:04', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7319480'), + (8776, 27, 2675, 'attending', '2024-06-17 20:09:53', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7319481'), + (8777, 27, 2676, 'attending', '2024-06-17 20:09:46', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7319482'), + (8778, 27, 2677, 'attending', '2024-09-04 03:53:45', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7319483'), + (8779, 27, 2678, 'not_attending', '2024-06-14 00:39:46', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7319489'), + (8780, 27, 2679, 'not_attending', '2024-06-17 20:08:52', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7319490'), + (8781, 27, 2681, 'attending', '2024-06-10 03:24:09', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7320409'), + (8782, 27, 2686, 'attending', '2024-06-11 13:49:52', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7323802'), + (8783, 27, 2688, 'not_attending', '2024-06-17 20:08:56', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7324073'), + (8784, 27, 2689, 'attending', '2024-06-17 20:09:04', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7324074'), + (8785, 27, 2690, 'attending', '2024-06-17 20:09:08', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7324075'), + (8786, 27, 2691, 'attending', '2024-06-17 20:09:11', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7324076'), + (8787, 27, 2692, 'not_attending', '2024-06-17 20:09:14', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7324077'), + (8788, 27, 2693, 'attending', '2024-06-17 20:09:20', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7324078'), + (8789, 27, 2694, 'attending', '2024-06-17 20:09:22', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7324079'), + (8790, 27, 2695, 'attending', '2024-06-17 20:09:26', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7324080'), + (8791, 27, 2696, 'not_attending', '2024-06-17 20:09:28', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7324081'), + (8792, 27, 2697, 'attending', '2024-06-17 20:09:32', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7324082'), + (8793, 27, 2698, 'attending', '2024-06-17 20:09:39', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7324083'), + (8794, 27, 2701, 'maybe', '2024-06-17 20:10:41', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7324391'), + (8795, 27, 2709, 'attending', '2024-06-14 00:39:42', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7325107'), + (8796, 27, 2710, 'attending', '2024-06-14 00:39:26', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7325108'), + (8797, 27, 2711, 'maybe', '2024-06-17 20:10:08', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7326524'), + (8798, 27, 2712, 'maybe', '2024-06-17 20:10:00', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7326525'), + (8799, 27, 2722, 'maybe', '2024-07-08 16:50:07', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7331457'), + (8800, 27, 2723, 'not_attending', '2024-06-20 19:09:07', '2025-12-17 19:46:29', 'VdxEJ2Xm', '7332389'), + (8801, 27, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7363643'), + (8802, 27, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'VdxEJ2Xm', '7368606'), + (8803, 27, 2792, 'attending', '2024-08-07 00:33:27', '2025-12-17 19:46:31', 'VdxEJ2Xm', '7390763'), + (8804, 27, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7397462'), + (8805, 27, 2808, 'attending', '2024-08-27 22:19:31', '2025-12-17 19:46:32', 'VdxEJ2Xm', '7412860'), + (8806, 27, 2814, 'attending', '2024-09-04 03:53:26', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7424267'), + (8807, 27, 2815, 'not_attending', '2024-09-04 03:53:30', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7424268'), + (8808, 27, 2816, 'attending', '2024-09-04 03:53:34', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7424269'), + (8809, 27, 2817, 'attending', '2024-09-04 03:53:37', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7424270'), + (8810, 27, 2818, 'attending', '2024-09-04 03:53:56', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424272'), + (8811, 27, 2819, 'attending', '2024-09-04 03:54:00', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424273'), + (8812, 27, 2820, 'maybe', '2024-09-04 03:54:01', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424274'), + (8813, 27, 2821, 'attending', '2024-09-08 03:29:15', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424275'), + (8814, 27, 2822, 'attending', '2024-09-04 03:54:09', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7424276'), + (8815, 27, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7432751'), + (8816, 27, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7432752'), + (8817, 27, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7432753'), + (8818, 27, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432754'), + (8819, 27, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432755'), + (8820, 27, 2829, 'maybe', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432756'), + (8821, 27, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432758'), + (8822, 27, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7432759'), + (8823, 27, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7433834'), + (8824, 27, 2834, 'not_attending', '2024-09-11 01:52:43', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7433852'), + (8825, 27, 2836, 'attending', '2024-09-13 06:02:11', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7438708'), + (8826, 27, 2837, 'attending', '2024-09-12 18:57:15', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7438711'), + (8827, 27, 2839, 'maybe', '2024-09-13 06:01:52', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7439262'), + (8828, 27, 2846, 'attending', '2024-09-21 20:31:49', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7452148'), + (8829, 27, 2853, 'attending', '2024-10-17 17:23:43', '2025-12-17 19:46:26', 'VdxEJ2Xm', '7465683'), + (8830, 27, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'VdxEJ2Xm', '7470197'), + (8831, 27, 2867, 'not_attending', '2024-12-06 20:36:50', '2025-12-17 19:46:21', 'VdxEJ2Xm', '7471202'), + (8832, 27, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7685613'), + (8833, 27, 2903, 'not_attending', '2024-11-08 23:55:48', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7688194'), + (8834, 27, 2904, 'attending', '2024-11-08 23:55:52', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7688196'), + (8835, 27, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7688289'), + (8836, 27, 2908, 'attending', '2024-11-11 01:12:25', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7689420'), + (8837, 27, 2910, 'attending', '2024-11-11 01:12:33', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7689867'), + (8838, 27, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7692763'), + (8839, 27, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7697552'), + (8840, 27, 2914, 'maybe', '2024-11-16 23:09:37', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7697743'), + (8841, 27, 2917, 'attending', '2024-11-18 19:22:21', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7699878'), + (8842, 27, 2919, 'attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'VdxEJ2Xm', '7704043'), + (8843, 27, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'VdxEJ2Xm', '7712467'), + (8844, 27, 2925, 'not_attending', '2024-12-06 20:36:28', '2025-12-17 19:46:21', 'VdxEJ2Xm', '7713584'), + (8845, 27, 2926, 'attending', '2024-12-03 04:16:03', '2025-12-17 19:46:21', 'VdxEJ2Xm', '7713585'), + (8846, 27, 2927, 'attending', '2024-12-06 20:36:25', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7713586'), + (8847, 27, 2935, 'attending', '2025-02-01 19:06:38', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7725953'), + (8848, 27, 2938, 'attending', '2025-01-18 23:56:17', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7725956'), + (8849, 27, 2939, 'attending', '2025-02-11 04:00:00', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7725957'), + (8850, 27, 2940, 'attending', '2025-01-18 23:56:26', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7725958'), + (8851, 27, 2941, 'attending', '2025-02-07 19:25:35', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7725959'), + (8852, 27, 2942, 'attending', '2025-02-11 03:59:53', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7725960'), + (8853, 27, 2943, 'attending', '2025-02-11 03:59:46', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7725961'), + (8854, 27, 2944, 'attending', '2025-02-11 03:59:48', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7725963'), + (8855, 27, 2945, 'attending', '2025-02-11 04:03:57', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7725964'), + (8856, 27, 2946, 'attending', '2025-03-04 03:32:53', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7725965'), + (8857, 27, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7738518'), + (8858, 27, 2962, 'attending', '2024-12-23 22:21:54', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7750632'), + (8859, 27, 2963, 'attending', '2024-12-28 19:08:53', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7750636'), + (8860, 27, 2964, 'attending', '2025-01-07 04:32:54', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7796540'), + (8861, 27, 2965, 'attending', '2025-01-18 23:56:15', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7796541'), + (8862, 27, 2966, 'attending', '2025-01-18 23:56:25', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7796542'), + (8863, 27, 2979, 'attending', '2025-01-28 22:22:25', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7825913'), + (8864, 27, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'VdxEJ2Xm', '7825920'), + (8865, 27, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7826209'), + (8866, 27, 2985, 'attending', '2025-02-03 21:29:04', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7834742'), + (8867, 27, 2988, 'attending', '2025-02-07 14:33:49', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7839569'), + (8868, 27, 2989, 'attending', '2025-02-10 19:51:22', '2025-12-17 19:46:23', 'VdxEJ2Xm', '7842108'), + (8869, 27, 2991, 'attending', '2025-02-11 03:59:54', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842902'), + (8870, 27, 2992, 'maybe', '2025-02-11 03:59:49', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842903'), + (8871, 27, 2993, 'attending', '2025-02-11 04:03:50', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7842904'), + (8872, 27, 2994, 'attending', '2025-02-11 03:59:42', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7842905'), + (8873, 27, 2995, 'attending', '2025-02-11 04:03:17', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842906'), + (8874, 27, 2996, 'attending', '2025-02-11 04:03:25', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7842907'), + (8875, 27, 2997, 'attending', '2025-02-11 04:03:26', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7842908'), + (8876, 27, 2998, 'attending', '2025-02-11 04:03:39', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7842909'), + (8877, 27, 3005, 'maybe', '2025-02-19 21:15:56', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7854604'), + (8878, 27, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7855719'), + (8879, 27, 3007, 'attending', '2025-02-24 17:45:45', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7860683'), + (8880, 27, 3008, 'attending', '2025-02-24 17:45:43', '2025-12-17 19:46:24', 'VdxEJ2Xm', '7860684'), + (8881, 27, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7866095'), + (8882, 27, 3013, 'maybe', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7869170'), + (8883, 27, 3014, 'attending', '2025-03-06 15:55:06', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869185'), + (8884, 27, 3015, 'not_attending', '2025-03-06 15:55:13', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869186'), + (8885, 27, 3016, 'attending', '2025-03-06 15:55:10', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869187'), + (8886, 27, 3017, 'attending', '2025-03-06 15:54:58', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869188'), + (8887, 27, 3018, 'attending', '2025-03-06 15:55:08', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869189'), + (8888, 27, 3019, 'attending', '2025-03-06 15:55:23', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869190'), + (8889, 27, 3020, 'attending', '2025-03-06 15:55:19', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869191'), + (8890, 27, 3021, 'attending', '2025-03-06 15:55:21', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869192'), + (8891, 27, 3022, 'attending', '2025-03-06 15:55:15', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869193'), + (8892, 27, 3023, 'attending', '2025-03-04 03:44:26', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869194'), + (8893, 27, 3024, 'attending', '2025-03-04 03:55:39', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7869195'), + (8894, 27, 3025, 'attending', '2025-03-06 15:55:27', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869196'), + (8895, 27, 3026, 'attending', '2025-03-06 15:55:29', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869197'), + (8896, 27, 3027, 'attending', '2025-03-06 15:55:25', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869198'), + (8897, 27, 3028, 'attending', '2025-03-06 15:55:31', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7869199'), + (8898, 27, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'VdxEJ2Xm', '7869201'), + (8899, 27, 3033, 'maybe', '2025-03-11 05:12:19', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7877465'), + (8900, 27, 3055, 'attending', '2025-03-27 16:23:26', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7888118'), + (8901, 27, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'VdxEJ2Xm', '7888250'), + (8902, 27, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'VdxEJ2Xm', '7904777'), + (8903, 27, 3090, 'maybe', '2025-04-17 22:04:18', '2025-12-17 19:46:20', 'VdxEJ2Xm', '7914315'), + (8904, 27, 3094, 'attending', '2025-04-21 21:08:49', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8342292'), + (8905, 27, 3095, 'attending', '2025-04-21 21:08:48', '2025-12-17 19:46:20', 'VdxEJ2Xm', '8342293'), + (8906, 27, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8349164'), + (8907, 27, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8349545'), + (8908, 27, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8353584'), + (8909, 27, 3131, 'attending', '2025-05-14 02:40:57', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8368028'), + (8910, 27, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8368029'), + (8911, 27, 3133, 'attending', '2025-05-30 17:06:13', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8368030'), + (8912, 27, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'VdxEJ2Xm', '8388462'), + (8913, 27, 3150, 'not_attending', '2025-06-20 17:21:09', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8393174'), + (8914, 27, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8400273'), + (8915, 27, 3154, 'attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8400274'), + (8916, 27, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8400275'), + (8917, 27, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8400276'), + (8918, 27, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'VdxEJ2Xm', '8404977'), + (8919, 27, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8430783'), + (8920, 27, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'VdxEJ2Xm', '8430784'), + (8921, 27, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8430799'), + (8922, 27, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8430800'), + (8923, 27, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8430801'), + (8924, 27, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8438709'), + (8925, 27, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8457738'), + (8926, 27, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8459566'), + (8927, 27, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8459567'), + (8928, 27, 3202, 'attending', '2025-07-23 12:56:54', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8459568'), + (8929, 27, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8461032'), + (8930, 27, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8477877'), + (8931, 27, 3233, 'attending', '2025-08-12 12:51:10', '2025-12-17 19:46:17', 'VdxEJ2Xm', '8485688'), + (8932, 27, 3235, 'maybe', '2025-08-19 19:30:34', '2025-12-17 19:46:18', 'VdxEJ2Xm', '8490587'), + (8933, 27, 3236, 'attending', '2025-08-19 19:29:45', '2025-12-17 19:46:18', 'VdxEJ2Xm', '8493552'), + (8934, 27, 3237, 'attending', '2025-08-19 19:30:15', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8493553'), + (8935, 27, 3238, 'not_attending', '2025-08-19 19:30:02', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8493554'), + (8936, 27, 3239, 'attending', '2025-08-19 19:31:36', '2025-12-17 19:46:12', 'VdxEJ2Xm', '8493555'), + (8937, 27, 3240, 'attending', '2025-08-19 19:33:45', '2025-12-17 19:46:12', 'VdxEJ2Xm', '8493556'), + (8938, 27, 3241, 'attending', '2025-08-19 19:37:37', '2025-12-17 19:46:13', 'VdxEJ2Xm', '8493557'), + (8939, 27, 3242, 'attending', '2025-08-19 19:37:16', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8493558'), + (8940, 27, 3243, 'attending', '2025-08-19 19:37:51', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8493559'), + (8941, 27, 3244, 'attending', '2025-08-19 19:34:54', '2025-12-17 19:46:13', 'VdxEJ2Xm', '8493560'), + (8942, 27, 3245, 'attending', '2025-08-19 19:35:09', '2025-12-17 19:46:12', 'VdxEJ2Xm', '8493561'), + (8943, 27, 3253, 'attending', '2025-08-19 19:44:15', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8493572'), + (8944, 27, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'VdxEJ2Xm', '8540725'), + (8945, 27, 3289, 'attending', '2025-10-21 01:25:53', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8542939'), + (8946, 27, 3295, 'not_attending', '2025-10-28 20:50:48', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8547541'), + (8947, 27, 3305, 'attending', '2025-12-01 22:39:09', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8550025'), + (8948, 27, 3306, 'attending', '2025-12-01 22:39:30', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8550026'), + (8949, 27, 3307, 'attending', '2025-12-01 22:39:40', '2025-12-17 19:46:11', 'VdxEJ2Xm', '8550027'), + (8950, 27, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'VdxEJ2Xm', '8555421'), + (8951, 27, 3346, 'attending', '2025-12-30 11:42:49', '2025-12-30 11:42:49', NULL, NULL), + (8952, 27, 3347, 'attending', '2025-12-30 11:43:01', '2025-12-30 11:43:01', NULL, NULL), + (8953, 28, 1182, 'attending', '2022-03-10 05:19:45', '2025-12-17 19:47:33', '2d28vkMA', '4736504'), + (8954, 28, 1207, 'attending', '2022-05-06 17:11:53', '2025-12-17 19:47:28', '2d28vkMA', '4773579'), + (8955, 28, 1240, 'attending', '2022-03-12 20:39:21', '2025-12-17 19:47:33', '2d28vkMA', '5052239'), + (8956, 28, 1241, 'maybe', '2022-03-22 11:56:35', '2025-12-17 19:47:25', '2d28vkMA', '5052240'), + (8957, 28, 1242, 'maybe', '2022-03-29 15:58:23', '2025-12-17 19:47:25', '2d28vkMA', '5052241'), + (8958, 28, 1249, 'attending', '2022-03-09 03:23:36', '2025-12-17 19:47:33', '2d28vkMA', '5068530'), + (8959, 28, 1259, 'attending', '2022-03-10 05:19:36', '2025-12-17 19:47:33', '2d28vkMA', '5132533'), + (8960, 28, 1262, 'maybe', '2022-03-10 05:23:23', '2025-12-17 19:47:33', '2d28vkMA', '5157773'), + (8961, 28, 1263, 'attending', '2022-03-07 21:20:34', '2025-12-17 19:47:33', '2d28vkMA', '5158145'), + (8962, 28, 1264, 'maybe', '2022-03-22 11:56:29', '2025-12-17 19:47:25', '2d28vkMA', '5160281'), + (8963, 28, 1266, 'attending', '2022-03-09 03:19:47', '2025-12-17 19:47:33', '2d28vkMA', '5166407'), + (8964, 28, 1267, 'attending', '2022-03-17 22:53:52', '2025-12-17 19:47:25', '2d28vkMA', '5169578'), + (8965, 28, 1269, 'attending', '2022-03-18 22:13:18', '2025-12-17 19:47:25', '2d28vkMA', '5179439'), + (8966, 28, 1270, 'attending', '2022-03-17 01:20:17', '2025-12-17 19:47:25', '2d28vkMA', '5181277'), + (8967, 28, 1271, 'not_attending', '2022-03-18 17:40:18', '2025-12-17 19:47:25', '2d28vkMA', '5181648'), + (8968, 28, 1272, 'attending', '2022-03-17 03:05:06', '2025-12-17 19:47:25', '2d28vkMA', '5186582'), + (8969, 28, 1273, 'attending', '2022-03-26 17:08:12', '2025-12-17 19:47:25', '2d28vkMA', '5186583'), + (8970, 28, 1274, 'attending', '2022-03-27 03:11:39', '2025-12-17 19:47:26', '2d28vkMA', '5186585'), + (8971, 28, 1276, 'attending', '2022-03-27 21:08:27', '2025-12-17 19:47:25', '2d28vkMA', '5186820'), + (8972, 28, 1277, 'not_attending', '2022-03-18 17:40:22', '2025-12-17 19:47:25', '2d28vkMA', '5186865'), + (8973, 28, 1278, 'not_attending', '2022-03-16 21:42:33', '2025-12-17 19:47:33', '2d28vkMA', '5186920'), + (8974, 28, 1279, 'attending', '2022-03-16 21:42:13', '2025-12-17 19:47:25', '2d28vkMA', '5187212'), + (8975, 28, 1281, 'attending', '2022-04-09 18:52:41', '2025-12-17 19:47:27', '2d28vkMA', '5190437'), + (8976, 28, 1282, 'attending', '2022-03-18 03:00:11', '2025-12-17 19:47:25', '2d28vkMA', '5191241'), + (8977, 28, 1283, 'attending', '2022-03-19 19:59:40', '2025-12-17 19:47:25', '2d28vkMA', '5193533'), + (8978, 28, 1284, 'attending', '2022-03-30 17:49:34', '2025-12-17 19:47:27', '2d28vkMA', '5195095'), + (8979, 28, 1287, 'attending', '2022-03-28 20:44:58', '2025-12-17 19:47:25', '2d28vkMA', '5199425'), + (8980, 28, 1288, 'not_attending', '2022-03-29 15:58:19', '2025-12-17 19:47:25', '2d28vkMA', '5199460'), + (8981, 28, 1289, 'maybe', '2022-03-29 15:58:39', '2025-12-17 19:47:25', '2d28vkMA', '5200190'), + (8982, 28, 1290, 'attending', '2022-03-29 15:58:07', '2025-12-17 19:47:25', '2d28vkMA', '5200196'), + (8983, 28, 1294, 'attending', '2022-03-30 17:49:07', '2025-12-17 19:47:26', '2d28vkMA', '5214686'), + (8984, 28, 1296, 'attending', '2022-03-29 15:58:51', '2025-12-17 19:47:26', '2d28vkMA', '5215985'), + (8985, 28, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '2d28vkMA', '5215989'), + (8986, 28, 1299, 'not_attending', '2022-03-31 19:33:01', '2025-12-17 19:47:25', '2d28vkMA', '5217660'), + (8987, 28, 1300, 'not_attending', '2022-03-31 19:32:58', '2025-12-17 19:47:25', '2d28vkMA', '5217936'), + (8988, 28, 1305, 'not_attending', '2022-04-09 18:52:53', '2025-12-17 19:47:27', '2d28vkMA', '5223673'), + (8989, 28, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '2d28vkMA', '5223686'), + (8990, 28, 1308, 'not_attending', '2022-04-13 16:18:48', '2025-12-17 19:47:27', '2d28vkMA', '5226703'), + (8991, 28, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '2d28vkMA', '5227432'), + (8992, 28, 1311, 'not_attending', '2022-04-09 18:52:48', '2025-12-17 19:47:27', '2d28vkMA', '5231430'), + (8993, 28, 1312, 'not_attending', '2022-04-13 16:19:23', '2025-12-17 19:47:27', '2d28vkMA', '5231459'), + (8994, 28, 1313, 'not_attending', '2022-04-09 18:53:07', '2025-12-17 19:47:27', '2d28vkMA', '5231461'), + (8995, 28, 1314, 'not_attending', '2022-04-09 18:53:02', '2025-12-17 19:47:27', '2d28vkMA', '5233137'), + (8996, 28, 1315, 'not_attending', '2022-04-23 00:04:15', '2025-12-17 19:47:27', '2d28vkMA', '5237522'), + (8997, 28, 1316, 'not_attending', '2022-04-13 16:18:54', '2025-12-17 19:47:27', '2d28vkMA', '5237536'), + (8998, 28, 1318, 'not_attending', '2022-04-13 16:18:56', '2025-12-17 19:47:27', '2d28vkMA', '5238343'), + (8999, 28, 1321, 'not_attending', '2022-04-13 16:19:46', '2025-12-17 19:47:27', '2d28vkMA', '5238355'), + (9000, 28, 1322, 'not_attending', '2022-04-26 21:21:10', '2025-12-17 19:47:27', '2d28vkMA', '5238356'), + (9001, 28, 1328, 'not_attending', '2022-04-13 16:19:27', '2025-12-17 19:47:27', '2d28vkMA', '5238759'), + (9002, 28, 1329, 'not_attending', '2022-04-13 16:19:00', '2025-12-17 19:47:27', '2d28vkMA', '5240135'), + (9003, 28, 1330, 'not_attending', '2022-04-13 16:19:35', '2025-12-17 19:47:27', '2d28vkMA', '5242155'), + (9004, 28, 1331, 'not_attending', '2022-04-13 16:19:38', '2025-12-17 19:47:27', '2d28vkMA', '5242156'), + (9005, 28, 1332, 'not_attending', '2022-04-13 16:19:25', '2025-12-17 19:47:27', '2d28vkMA', '5243274'), + (9006, 28, 1336, 'not_attending', '2022-04-15 01:46:28', '2025-12-17 19:47:27', '2d28vkMA', '5244915'), + (9007, 28, 1337, 'attending', '2022-04-19 16:35:01', '2025-12-17 19:47:27', '2d28vkMA', '5245036'), + (9008, 28, 1340, 'not_attending', '2022-04-26 20:56:07', '2025-12-17 19:47:27', '2d28vkMA', '5245754'), + (9009, 28, 1344, 'attending', '2022-04-26 20:56:22', '2025-12-17 19:47:28', '2d28vkMA', '5247465'), + (9010, 28, 1346, 'attending', '2022-04-23 00:05:36', '2025-12-17 19:47:27', '2d28vkMA', '5247467'), + (9011, 28, 1349, 'not_attending', '2022-04-19 16:35:05', '2025-12-17 19:47:27', '2d28vkMA', '5249631'), + (9012, 28, 1354, 'attending', '2022-04-23 15:24:21', '2025-12-17 19:47:27', '2d28vkMA', '5252569'), + (9013, 28, 1355, 'not_attending', '2022-04-26 20:56:17', '2025-12-17 19:47:28', '2d28vkMA', '5252573'), + (9014, 28, 1357, 'attending', '2022-04-24 18:05:13', '2025-12-17 19:47:27', '2d28vkMA', '5256017'), + (9015, 28, 1358, 'attending', '2022-04-26 21:50:26', '2025-12-17 19:47:27', '2d28vkMA', '5258022'), + (9016, 28, 1359, 'not_attending', '2022-05-04 17:13:47', '2025-12-17 19:47:28', '2d28vkMA', '5258360'), + (9017, 28, 1360, 'not_attending', '2022-04-26 20:55:51', '2025-12-17 19:47:27', '2d28vkMA', '5260197'), + (9018, 28, 1362, 'attending', '2022-04-25 18:59:07', '2025-12-17 19:47:28', '2d28vkMA', '5260800'), + (9019, 28, 1363, 'not_attending', '2022-04-26 20:56:12', '2025-12-17 19:47:28', '2d28vkMA', '5261577'), + (9020, 28, 1366, 'not_attending', '2022-04-26 20:56:03', '2025-12-17 19:47:27', '2d28vkMA', '5262344'), + (9021, 28, 1368, 'not_attending', '2022-05-06 09:42:22', '2025-12-17 19:47:28', '2d28vkMA', '5262783'), + (9022, 28, 1369, 'maybe', '2022-05-06 09:43:07', '2025-12-17 19:47:28', '2d28vkMA', '5262809'), + (9023, 28, 1371, 'not_attending', '2022-04-27 19:04:27', '2025-12-17 19:47:27', '2d28vkMA', '5263784'), + (9024, 28, 1372, 'maybe', '2022-05-04 17:13:53', '2025-12-17 19:47:28', '2d28vkMA', '5264352'), + (9025, 28, 1374, 'attending', '2022-04-30 19:51:58', '2025-12-17 19:47:28', '2d28vkMA', '5269930'), + (9026, 28, 1375, 'not_attending', '2022-05-04 17:14:13', '2025-12-17 19:47:28', '2d28vkMA', '5269932'), + (9027, 28, 1376, 'not_attending', '2022-05-06 09:43:38', '2025-12-17 19:47:28', '2d28vkMA', '5271446'), + (9028, 28, 1377, 'not_attending', '2022-05-06 09:43:41', '2025-12-17 19:47:28', '2d28vkMA', '5271447'), + (9029, 28, 1378, 'attending', '2022-05-06 09:43:46', '2025-12-17 19:47:28', '2d28vkMA', '5271448'), + (9030, 28, 1379, 'attending', '2022-05-10 02:10:57', '2025-12-17 19:47:29', '2d28vkMA', '5271449'), + (9031, 28, 1380, 'attending', '2022-05-28 17:32:33', '2025-12-17 19:47:30', '2d28vkMA', '5271450'), + (9032, 28, 1381, 'attending', '2022-05-05 03:15:22', '2025-12-17 19:47:28', '2d28vkMA', '5271453'), + (9033, 28, 1382, 'not_attending', '2022-05-06 09:43:04', '2025-12-17 19:47:28', '2d28vkMA', '5276350'), + (9034, 28, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '2d28vkMA', '5276469'), + (9035, 28, 1384, 'attending', '2022-05-04 18:19:38', '2025-12-17 19:47:28', '2d28vkMA', '5277078'), + (9036, 28, 1385, 'attending', '2022-05-06 09:41:09', '2025-12-17 19:47:28', '2d28vkMA', '5277822'), + (9037, 28, 1386, 'not_attending', '2022-05-05 15:14:23', '2025-12-17 19:47:28', '2d28vkMA', '5278159'), + (9038, 28, 1388, 'not_attending', '2022-05-06 09:42:13', '2025-12-17 19:47:28', '2d28vkMA', '5278201'), + (9039, 28, 1389, 'not_attending', '2022-05-06 17:12:17', '2025-12-17 19:47:28', '2d28vkMA', '5278202'), + (9040, 28, 1391, 'not_attending', '2022-05-06 17:12:21', '2025-12-17 19:47:28', '2d28vkMA', '5279531'), + (9041, 28, 1393, 'not_attending', '2022-05-17 21:11:04', '2025-12-17 19:47:30', '2d28vkMA', '5280603'), + (9042, 28, 1394, 'not_attending', '2022-05-17 21:10:42', '2025-12-17 19:47:30', '2d28vkMA', '5280667'), + (9043, 28, 1396, 'attending', '2022-05-14 21:51:26', '2025-12-17 19:47:28', '2d28vkMA', '5281103'), + (9044, 28, 1397, 'attending', '2022-05-17 21:10:32', '2025-12-17 19:47:29', '2d28vkMA', '5281104'), + (9045, 28, 1399, 'attending', '2022-05-12 22:42:33', '2025-12-17 19:47:28', '2d28vkMA', '5281796'), + (9046, 28, 1401, 'not_attending', '2022-05-17 21:10:06', '2025-12-17 19:47:29', '2d28vkMA', '5286295'), + (9047, 28, 1402, 'not_attending', '2022-05-17 21:10:40', '2025-12-17 19:47:30', '2d28vkMA', '5287977'), + (9048, 28, 1403, 'not_attending', '2022-05-17 21:10:24', '2025-12-17 19:47:29', '2d28vkMA', '5288052'), + (9049, 28, 1404, 'not_attending', '2022-05-17 21:10:02', '2025-12-17 19:47:29', '2d28vkMA', '5288114'), + (9050, 28, 1405, 'not_attending', '2022-05-17 21:10:15', '2025-12-17 19:47:29', '2d28vkMA', '5288115'), + (9051, 28, 1407, 'not_attending', '2022-05-27 02:03:23', '2025-12-17 19:47:30', '2d28vkMA', '5363695'), + (9052, 28, 1408, 'not_attending', '2022-05-17 21:10:20', '2025-12-17 19:47:29', '2d28vkMA', '5365960'), + (9053, 28, 1409, 'not_attending', '2022-05-17 21:10:46', '2025-12-17 19:47:30', '2d28vkMA', '5367032'), + (9054, 28, 1414, 'attending', '2022-05-18 05:31:14', '2025-12-17 19:47:29', '2d28vkMA', '5368445'), + (9055, 28, 1415, 'not_attending', '2022-05-23 13:01:45', '2025-12-17 19:47:30', '2d28vkMA', '5368973'), + (9056, 28, 1416, 'not_attending', '2022-05-27 02:03:11', '2025-12-17 19:47:30', '2d28vkMA', '5369628'), + (9057, 28, 1417, 'not_attending', '2022-05-23 13:01:14', '2025-12-17 19:47:30', '2d28vkMA', '5370465'), + (9058, 28, 1419, 'not_attending', '2022-06-03 02:44:28', '2025-12-17 19:47:30', '2d28vkMA', '5373081'), + (9059, 28, 1420, 'not_attending', '2022-05-24 20:01:52', '2025-12-17 19:47:30', '2d28vkMA', '5374882'), + (9060, 28, 1421, 'not_attending', '2022-05-27 02:03:14', '2025-12-17 19:47:30', '2d28vkMA', '5374885'), + (9061, 28, 1422, 'not_attending', '2022-05-24 20:01:57', '2025-12-17 19:47:30', '2d28vkMA', '5375603'), + (9062, 28, 1423, 'not_attending', '2022-06-03 02:44:48', '2025-12-17 19:47:17', '2d28vkMA', '5375727'), + (9063, 28, 1424, 'not_attending', '2022-05-24 20:01:43', '2025-12-17 19:47:30', '2d28vkMA', '5375772'), + (9064, 28, 1425, 'not_attending', '2022-05-24 20:01:47', '2025-12-17 19:47:30', '2d28vkMA', '5375861'), + (9065, 28, 1426, 'not_attending', '2022-05-24 20:01:39', '2025-12-17 19:47:30', '2d28vkMA', '5375873'), + (9066, 28, 1427, 'not_attending', '2022-05-24 20:01:31', '2025-12-17 19:47:30', '2d28vkMA', '5376074'), + (9067, 28, 1428, 'not_attending', '2022-05-27 02:02:59', '2025-12-17 19:47:30', '2d28vkMA', '5378247'), + (9068, 28, 1430, 'not_attending', '2022-06-09 02:49:18', '2025-12-17 19:47:30', '2d28vkMA', '5389402'), + (9069, 28, 1431, 'attending', '2022-06-03 02:44:02', '2025-12-17 19:47:30', '2d28vkMA', '5389605'), + (9070, 28, 1432, 'not_attending', '2022-06-03 02:44:14', '2025-12-17 19:47:30', '2d28vkMA', '5391566'), + (9071, 28, 1433, 'not_attending', '2022-06-03 02:44:16', '2025-12-17 19:47:30', '2d28vkMA', '5391667'), + (9072, 28, 1435, 'not_attending', '2022-06-03 02:44:10', '2025-12-17 19:47:30', '2d28vkMA', '5394015'), + (9073, 28, 1439, 'not_attending', '2022-06-03 02:44:35', '2025-12-17 19:47:30', '2d28vkMA', '5396072'), + (9074, 28, 1440, 'not_attending', '2022-06-03 02:44:32', '2025-12-17 19:47:30', '2d28vkMA', '5396080'), + (9075, 28, 1441, 'not_attending', '2022-06-03 02:44:41', '2025-12-17 19:47:30', '2d28vkMA', '5397171'), + (9076, 28, 1442, 'attending', '2022-06-03 02:46:21', '2025-12-17 19:47:17', '2d28vkMA', '5397265'), + (9077, 28, 1444, 'attending', '2022-06-09 02:49:38', '2025-12-17 19:47:30', '2d28vkMA', '5397614'), + (9078, 28, 1446, 'not_attending', '2022-06-09 02:49:12', '2025-12-17 19:47:30', '2d28vkMA', '5399721'), + (9079, 28, 1447, 'not_attending', '2022-06-09 02:49:21', '2025-12-17 19:47:30', '2d28vkMA', '5401089'), + (9080, 28, 1449, 'not_attending', '2022-06-09 02:49:49', '2025-12-17 19:47:31', '2d28vkMA', '5403335'), + (9081, 28, 1450, 'not_attending', '2022-06-09 02:49:25', '2025-12-17 19:47:30', '2d28vkMA', '5403421'), + (9082, 28, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '2d28vkMA', '5403967'), + (9083, 28, 1452, 'attending', '2022-06-09 14:59:07', '2025-12-17 19:47:30', '2d28vkMA', '5404197'), + (9084, 28, 1453, 'not_attending', '2022-06-12 03:04:14', '2025-12-17 19:47:31', '2d28vkMA', '5404745'), + (9085, 28, 1454, 'not_attending', '2022-06-12 03:04:10', '2025-12-17 19:47:31', '2d28vkMA', '5404771'), + (9086, 28, 1456, 'not_attending', '2022-06-12 23:19:49', '2025-12-17 19:47:17', '2d28vkMA', '5404779'), + (9087, 28, 1457, 'not_attending', '2022-06-12 03:04:05', '2025-12-17 19:47:31', '2d28vkMA', '5404780'), + (9088, 28, 1458, 'attending', '2022-06-10 16:37:19', '2025-12-17 19:47:17', '2d28vkMA', '5404786'), + (9089, 28, 1459, 'not_attending', '2022-06-10 16:37:37', '2025-12-17 19:47:17', '2d28vkMA', '5404793'), + (9090, 28, 1461, 'not_attending', '2022-06-12 23:19:54', '2025-12-17 19:47:31', '2d28vkMA', '5405149'), + (9091, 28, 1462, 'not_attending', '2022-06-12 23:19:35', '2025-12-17 19:47:17', '2d28vkMA', '5405203'), + (9092, 28, 1463, 'not_attending', '2022-06-12 23:19:56', '2025-12-17 19:47:31', '2d28vkMA', '5405208'), + (9093, 28, 1465, 'attending', '2022-06-12 04:08:00', '2025-12-17 19:47:31', '2d28vkMA', '5406355'), + (9094, 28, 1466, 'not_attending', '2022-06-12 23:19:47', '2025-12-17 19:47:17', '2d28vkMA', '5406427'), + (9095, 28, 1468, 'maybe', '2022-06-29 18:50:23', '2025-12-17 19:47:19', '2d28vkMA', '5406832'), + (9096, 28, 1469, 'not_attending', '2022-06-12 23:20:13', '2025-12-17 19:47:17', '2d28vkMA', '5406838'), + (9097, 28, 1470, 'not_attending', '2022-06-12 23:19:25', '2025-12-17 19:47:17', '2d28vkMA', '5407053'), + (9098, 28, 1480, 'attending', '2022-06-26 22:46:01', '2025-12-17 19:47:19', '2d28vkMA', '5411699'), + (9099, 28, 1482, 'attending', '2022-06-19 19:35:53', '2025-12-17 19:47:19', '2d28vkMA', '5412550'), + (9100, 28, 1483, 'attending', '2022-06-20 12:07:45', '2025-12-17 19:47:17', '2d28vkMA', '5414556'), + (9101, 28, 1484, 'attending', '2022-06-23 01:55:06', '2025-12-17 19:47:17', '2d28vkMA', '5415046'), + (9102, 28, 1486, 'not_attending', '2022-07-01 00:10:35', '2025-12-17 19:47:19', '2d28vkMA', '5416339'), + (9103, 28, 1494, 'not_attending', '2022-06-25 15:19:20', '2025-12-17 19:47:19', '2d28vkMA', '5421626'), + (9104, 28, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '2d28vkMA', '5422086'), + (9105, 28, 1497, 'attending', '2022-07-01 00:10:31', '2025-12-17 19:47:19', '2d28vkMA', '5422405'), + (9106, 28, 1498, 'not_attending', '2022-07-02 18:30:09', '2025-12-17 19:47:19', '2d28vkMA', '5422406'), + (9107, 28, 1499, 'not_attending', '2022-07-02 18:30:06', '2025-12-17 19:47:19', '2d28vkMA', '5422407'), + (9108, 28, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '2d28vkMA', '5424565'), + (9109, 28, 1503, 'not_attending', '2022-06-29 18:50:27', '2025-12-17 19:47:19', '2d28vkMA', '5426820'), + (9110, 28, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '2d28vkMA', '5426882'), + (9111, 28, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '2d28vkMA', '5427083'), + (9112, 28, 1508, 'not_attending', '2022-07-14 00:17:39', '2025-12-17 19:47:19', '2d28vkMA', '5433453'), + (9113, 28, 1512, 'maybe', '2022-07-14 00:17:26', '2025-12-17 19:47:19', '2d28vkMA', '5441112'), + (9114, 28, 1513, 'attending', '2022-07-14 00:11:51', '2025-12-17 19:47:19', '2d28vkMA', '5441125'), + (9115, 28, 1514, 'maybe', '2022-07-18 19:48:22', '2025-12-17 19:47:20', '2d28vkMA', '5441126'), + (9116, 28, 1515, 'attending', '2022-08-06 21:56:53', '2025-12-17 19:47:21', '2d28vkMA', '5441128'), + (9117, 28, 1516, 'not_attending', '2022-08-14 15:58:49', '2025-12-17 19:47:23', '2d28vkMA', '5441129'), + (9118, 28, 1518, 'attending', '2022-08-31 21:12:31', '2025-12-17 19:47:24', '2d28vkMA', '5441131'), + (9119, 28, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '2d28vkMA', '5441132'), + (9120, 28, 1522, 'not_attending', '2022-07-18 19:47:57', '2025-12-17 19:47:20', '2d28vkMA', '5442832'), + (9121, 28, 1526, 'not_attending', '2022-07-18 19:48:14', '2025-12-17 19:47:20', '2d28vkMA', '5445059'), + (9122, 28, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '2d28vkMA', '5446643'), + (9123, 28, 1532, 'maybe', '2022-07-18 19:48:20', '2025-12-17 19:47:20', '2d28vkMA', '5448757'), + (9124, 28, 1535, 'not_attending', '2022-07-18 19:47:53', '2025-12-17 19:47:20', '2d28vkMA', '5448830'), + (9125, 28, 1536, 'not_attending', '2022-07-18 19:47:50', '2025-12-17 19:47:20', '2d28vkMA', '5449068'), + (9126, 28, 1537, 'not_attending', '2022-07-18 19:48:00', '2025-12-17 19:47:20', '2d28vkMA', '5449117'), + (9127, 28, 1539, 'not_attending', '2022-07-27 20:28:09', '2025-12-17 19:47:21', '2d28vkMA', '5449671'), + (9128, 28, 1540, 'not_attending', '2022-07-18 19:48:11', '2025-12-17 19:47:20', '2d28vkMA', '5453325'), + (9129, 28, 1541, 'not_attending', '2022-07-24 14:41:09', '2025-12-17 19:47:20', '2d28vkMA', '5453542'), + (9130, 28, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '2d28vkMA', '5454516'), + (9131, 28, 1544, 'attending', '2022-09-14 20:27:17', '2025-12-17 19:47:11', '2d28vkMA', '5454517'), + (9132, 28, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '2d28vkMA', '5454605'), + (9133, 28, 1546, 'attending', '2022-07-27 20:28:01', '2025-12-17 19:47:20', '2d28vkMA', '5454607'), + (9134, 28, 1547, 'attending', '2022-07-26 00:48:55', '2025-12-17 19:47:20', '2d28vkMA', '5454608'), + (9135, 28, 1549, 'not_attending', '2022-07-24 14:40:56', '2025-12-17 19:47:20', '2d28vkMA', '5454789'), + (9136, 28, 1550, 'not_attending', '2022-07-24 14:41:23', '2025-12-17 19:47:20', '2d28vkMA', '5454803'), + (9137, 28, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '2d28vkMA', '5455037'), + (9138, 28, 1552, 'not_attending', '2022-07-24 14:41:37', '2025-12-17 19:47:20', '2d28vkMA', '5455149'), + (9139, 28, 1560, 'not_attending', '2022-08-16 15:52:26', '2025-12-17 19:47:23', '2d28vkMA', '5458768'), + (9140, 28, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '2d28vkMA', '5461278'), + (9141, 28, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '2d28vkMA', '5469480'), + (9142, 28, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '2d28vkMA', '5471073'), + (9143, 28, 1566, 'attending', '2022-07-27 20:27:42', '2025-12-17 19:47:20', '2d28vkMA', '5474663'), + (9144, 28, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '2d28vkMA', '5482022'), + (9145, 28, 1575, 'not_attending', '2022-08-16 15:52:53', '2025-12-17 19:47:23', '2d28vkMA', '5482250'), + (9146, 28, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '2d28vkMA', '5482793'), + (9147, 28, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '2d28vkMA', '5488912'), + (9148, 28, 1581, 'attending', '2022-08-11 02:57:48', '2025-12-17 19:47:22', '2d28vkMA', '5490302'), + (9149, 28, 1582, 'not_attending', '2022-08-16 15:52:31', '2025-12-17 19:47:23', '2d28vkMA', '5492001'), + (9150, 28, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '2d28vkMA', '5492192'), + (9151, 28, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '2d28vkMA', '5493139'), + (9152, 28, 1589, 'not_attending', '2022-08-16 15:52:41', '2025-12-17 19:47:23', '2d28vkMA', '5493159'), + (9153, 28, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '2d28vkMA', '5493200'), + (9154, 28, 1591, 'not_attending', '2022-08-14 15:57:26', '2025-12-17 19:47:22', '2d28vkMA', '5493764'), + (9155, 28, 1593, 'maybe', '2022-08-11 02:58:52', '2025-12-17 19:47:22', '2d28vkMA', '5494043'), + (9156, 28, 1595, 'not_attending', '2022-08-11 02:57:52', '2025-12-17 19:47:22', '2d28vkMA', '5495736'), + (9157, 28, 1597, 'not_attending', '2022-08-14 15:57:09', '2025-12-17 19:47:22', '2d28vkMA', '5496566'), + (9158, 28, 1598, 'not_attending', '2022-08-14 15:57:36', '2025-12-17 19:47:22', '2d28vkMA', '5496567'), + (9159, 28, 1601, 'not_attending', '2022-08-11 03:19:36', '2025-12-17 19:47:22', '2d28vkMA', '5496589'), + (9160, 28, 1603, 'not_attending', '2022-08-12 03:23:47', '2025-12-17 19:47:23', '2d28vkMA', '5497895'), + (9161, 28, 1604, 'maybe', '2022-08-14 15:57:52', '2025-12-17 19:47:22', '2d28vkMA', '5501504'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (9162, 28, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '2d28vkMA', '5502188'), + (9163, 28, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '2d28vkMA', '5505059'), + (9164, 28, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '2d28vkMA', '5509055'), + (9165, 28, 1618, 'not_attending', '2022-08-24 12:32:09', '2025-12-17 19:47:23', '2d28vkMA', '5512005'), + (9166, 28, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '2d28vkMA', '5512862'), + (9167, 28, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '2d28vkMA', '5513985'), + (9168, 28, 1626, 'attending', '2022-08-25 23:12:14', '2025-12-17 19:47:11', '2d28vkMA', '5519981'), + (9169, 28, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '2d28vkMA', '5522550'), + (9170, 28, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '2d28vkMA', '5534683'), + (9171, 28, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '2d28vkMA', '5537735'), + (9172, 28, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '2d28vkMA', '5540859'), + (9173, 28, 1642, 'attending', '2022-09-07 20:29:07', '2025-12-17 19:47:24', '2d28vkMA', '5544227'), + (9174, 28, 1645, 'attending', '2022-09-03 20:12:54', '2025-12-17 19:47:25', '2d28vkMA', '5546559'), + (9175, 28, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '2d28vkMA', '5546619'), + (9176, 28, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '2d28vkMA', '5555245'), + (9177, 28, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '2d28vkMA', '5557747'), + (9178, 28, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '2d28vkMA', '5560255'), + (9179, 28, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '2d28vkMA', '5562906'), + (9180, 28, 1665, 'attending', '2022-09-10 21:04:04', '2025-12-17 19:47:25', '2d28vkMA', '5563133'), + (9181, 28, 1667, 'attending', '2022-09-24 05:18:59', '2025-12-17 19:47:11', '2d28vkMA', '5563221'), + (9182, 28, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '2d28vkMA', '5600604'), + (9183, 28, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '2d28vkMA', '5605544'), + (9184, 28, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '2d28vkMA', '5606737'), + (9185, 28, 1702, 'attending', '2022-10-02 19:34:38', '2025-12-17 19:47:12', '2d28vkMA', '5609173'), + (9186, 28, 1711, 'attending', '2022-10-06 21:37:31', '2025-12-17 19:47:12', '2d28vkMA', '5621883'), + (9187, 28, 1719, 'attending', '2022-10-07 15:10:39', '2025-12-17 19:47:12', '2d28vkMA', '5630958'), + (9188, 28, 1720, 'attending', '2022-10-15 17:53:23', '2025-12-17 19:47:12', '2d28vkMA', '5630959'), + (9189, 28, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '2d28vkMA', '5630960'), + (9190, 28, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '2d28vkMA', '5630961'), + (9191, 28, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '2d28vkMA', '5630962'), + (9192, 28, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '2d28vkMA', '5630966'), + (9193, 28, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '2d28vkMA', '5630967'), + (9194, 28, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '2d28vkMA', '5630968'), + (9195, 28, 1727, 'not_attending', '2022-11-29 21:44:17', '2025-12-17 19:47:16', '2d28vkMA', '5630969'), + (9196, 28, 1728, 'attending', '2022-11-27 16:27:06', '2025-12-17 19:47:17', '2d28vkMA', '5630970'), + (9197, 28, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '2d28vkMA', '5635406'), + (9198, 28, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '2d28vkMA', '5638765'), + (9199, 28, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '2d28vkMA', '5640097'), + (9200, 28, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '2d28vkMA', '5640843'), + (9201, 28, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '2d28vkMA', '5641521'), + (9202, 28, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '2d28vkMA', '5642818'), + (9203, 28, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '2d28vkMA', '5652395'), + (9204, 28, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '2d28vkMA', '5670445'), + (9205, 28, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '2d28vkMA', '5671637'), + (9206, 28, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '2d28vkMA', '5672329'), + (9207, 28, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '2d28vkMA', '5674057'), + (9208, 28, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '2d28vkMA', '5674060'), + (9209, 28, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', '2d28vkMA', '5677461'), + (9210, 28, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '2d28vkMA', '5698046'), + (9211, 28, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '2d28vkMA', '5699760'), + (9212, 28, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '2d28vkMA', '5741601'), + (9213, 28, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '2d28vkMA', '5763458'), + (9214, 28, 1805, 'attending', '2023-02-03 00:05:51', '2025-12-17 19:47:06', '2d28vkMA', '5764675'), + (9215, 28, 1806, 'attending', '2023-01-17 14:56:47', '2025-12-17 19:47:05', '2d28vkMA', '5764676'), + (9216, 28, 1807, 'attending', '2023-01-11 03:37:06', '2025-12-17 19:47:05', '2d28vkMA', '5764677'), + (9217, 28, 1811, 'maybe', '2023-05-06 16:14:55', '2025-12-17 19:47:02', '2d28vkMA', '5764681'), + (9218, 28, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '2d28vkMA', '5774172'), + (9219, 28, 1827, 'attending', '2022-11-27 06:45:17', '2025-12-17 19:47:16', '2d28vkMA', '5776786'), + (9220, 28, 1829, 'maybe', '2022-11-29 21:44:46', '2025-12-17 19:47:16', '2d28vkMA', '5778867'), + (9221, 28, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '2d28vkMA', '5818247'), + (9222, 28, 1833, 'not_attending', '2022-12-05 05:22:21', '2025-12-17 19:47:16', '2d28vkMA', '5819465'), + (9223, 28, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '2d28vkMA', '5819471'), + (9224, 28, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '2d28vkMA', '5827739'), + (9225, 28, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '2d28vkMA', '5844306'), + (9226, 28, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '2d28vkMA', '5850159'), + (9227, 28, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '2d28vkMA', '5858999'), + (9228, 28, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '2d28vkMA', '5871984'), + (9229, 28, 1858, 'attending', '2023-01-12 19:06:22', '2025-12-17 19:47:05', '2d28vkMA', '5875044'), + (9230, 28, 1860, 'attending', '2023-01-13 05:49:20', '2025-12-17 19:47:05', '2d28vkMA', '5876309'), + (9231, 28, 1861, 'not_attending', '2023-01-14 04:29:02', '2025-12-17 19:47:05', '2d28vkMA', '5876354'), + (9232, 28, 1864, 'attending', '2023-01-17 14:56:48', '2025-12-17 19:47:05', '2d28vkMA', '5879675'), + (9233, 28, 1865, 'attending', '2023-01-25 04:33:28', '2025-12-17 19:47:06', '2d28vkMA', '5879676'), + (9234, 28, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '2d28vkMA', '5880939'), + (9235, 28, 1867, 'attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '2d28vkMA', '5880940'), + (9236, 28, 1868, 'not_attending', '2023-02-17 17:40:16', '2025-12-17 19:47:07', '2d28vkMA', '5880942'), + (9237, 28, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '2d28vkMA', '5880943'), + (9238, 28, 1870, 'attending', '2023-01-17 19:14:15', '2025-12-17 19:47:05', '2d28vkMA', '5881740'), + (9239, 28, 1871, 'attending', '2023-01-18 05:57:49', '2025-12-17 19:47:05', '2d28vkMA', '5883502'), + (9240, 28, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '2d28vkMA', '5887890'), + (9241, 28, 1875, 'not_attending', '2023-01-25 04:33:20', '2025-12-17 19:47:06', '2d28vkMA', '5887908'), + (9242, 28, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '2d28vkMA', '5888598'), + (9243, 28, 1879, 'attending', '2023-01-24 22:14:56', '2025-12-17 19:47:06', '2d28vkMA', '5893001'), + (9244, 28, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '2d28vkMA', '5893260'), + (9245, 28, 1882, 'attending', '2023-01-29 18:21:07', '2025-12-17 19:47:06', '2d28vkMA', '5898447'), + (9246, 28, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '2d28vkMA', '5899826'), + (9247, 28, 1885, 'not_attending', '2023-02-17 17:40:26', '2025-12-17 19:47:08', '2d28vkMA', '5899928'), + (9248, 28, 1888, 'attending', '2023-02-17 23:26:58', '2025-12-17 19:47:07', '2d28vkMA', '5900197'), + (9249, 28, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '2d28vkMA', '5900199'), + (9250, 28, 1890, 'not_attending', '2023-02-17 17:40:20', '2025-12-17 19:47:08', '2d28vkMA', '5900200'), + (9251, 28, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '2d28vkMA', '5900202'), + (9252, 28, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '2d28vkMA', '5900203'), + (9253, 28, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '2d28vkMA', '5901108'), + (9254, 28, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '2d28vkMA', '5901126'), + (9255, 28, 1897, 'attending', '2023-02-07 20:12:33', '2025-12-17 19:47:07', '2d28vkMA', '5901128'), + (9256, 28, 1898, 'attending', '2023-01-31 23:39:17', '2025-12-17 19:47:06', '2d28vkMA', '5901263'), + (9257, 28, 1902, 'attending', '2023-02-03 00:05:46', '2025-12-17 19:47:06', '2d28vkMA', '5902254'), + (9258, 28, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '2d28vkMA', '5909655'), + (9259, 28, 1913, 'maybe', '2023-02-07 20:12:21', '2025-12-17 19:47:07', '2d28vkMA', '5910300'), + (9260, 28, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '2d28vkMA', '5910522'), + (9261, 28, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '2d28vkMA', '5910526'), + (9262, 28, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '2d28vkMA', '5910528'), + (9263, 28, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '2d28vkMA', '5916219'), + (9264, 28, 1923, 'attending', '2023-02-16 05:26:46', '2025-12-17 19:47:07', '2d28vkMA', '5930436'), + (9265, 28, 1924, 'not_attending', '2023-02-19 05:54:06', '2025-12-17 19:47:07', '2d28vkMA', '5931095'), + (9266, 28, 1925, 'not_attending', '2023-02-18 18:35:37', '2025-12-17 19:47:08', '2d28vkMA', '5932619'), + (9267, 28, 1928, 'not_attending', '2023-02-19 05:54:18', '2025-12-17 19:47:07', '2d28vkMA', '5932627'), + (9268, 28, 1929, 'not_attending', '2023-02-18 18:35:33', '2025-12-17 19:47:07', '2d28vkMA', '5932628'), + (9269, 28, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '2d28vkMA', '5936234'), + (9270, 28, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '2d28vkMA', '5958351'), + (9271, 28, 1938, 'maybe', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '2d28vkMA', '5959751'), + (9272, 28, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '2d28vkMA', '5959755'), + (9273, 28, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '2d28vkMA', '5960055'), + (9274, 28, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '2d28vkMA', '5961684'), + (9275, 28, 1942, 'not_attending', '2023-02-27 22:54:39', '2025-12-17 19:47:08', '2d28vkMA', '5962085'), + (9276, 28, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '2d28vkMA', '5962132'), + (9277, 28, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '2d28vkMA', '5962133'), + (9278, 28, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '2d28vkMA', '5962134'), + (9279, 28, 1947, 'attending', '2023-03-05 18:18:49', '2025-12-17 19:47:09', '2d28vkMA', '5962233'), + (9280, 28, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '2d28vkMA', '5962317'), + (9281, 28, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '2d28vkMA', '5962318'), + (9282, 28, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', '2d28vkMA', '5965933'), + (9283, 28, 1953, 'attending', '2023-03-01 20:41:47', '2025-12-17 19:47:09', '2d28vkMA', '5966307'), + (9284, 28, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '2d28vkMA', '5967014'), + (9285, 28, 1956, 'attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '2d28vkMA', '5972763'), + (9286, 28, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '2d28vkMA', '5972815'), + (9287, 28, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '2d28vkMA', '5974016'), + (9288, 28, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '2d28vkMA', '5981515'), + (9289, 28, 1966, 'attending', '2023-03-12 15:16:51', '2025-12-17 19:47:10', '2d28vkMA', '5983042'), + (9290, 28, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '2d28vkMA', '5993516'), + (9291, 28, 1972, 'not_attending', '2023-03-18 01:48:34', '2025-12-17 19:46:56', '2d28vkMA', '5993776'), + (9292, 28, 1973, 'not_attending', '2023-03-18 01:48:30', '2025-12-17 19:46:56', '2d28vkMA', '5993777'), + (9293, 28, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '2d28vkMA', '5998939'), + (9294, 28, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '2d28vkMA', '6028191'), + (9295, 28, 1979, 'not_attending', '2023-03-18 01:48:27', '2025-12-17 19:46:56', '2d28vkMA', '6030009'), + (9296, 28, 1980, 'not_attending', '2023-03-22 19:35:18', '2025-12-17 19:46:57', '2d28vkMA', '6036032'), + (9297, 28, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '2d28vkMA', '6040066'), + (9298, 28, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '2d28vkMA', '6042717'), + (9299, 28, 1985, 'attending', '2023-03-26 18:06:35', '2025-12-17 19:46:57', '2d28vkMA', '6043041'), + (9300, 28, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '2d28vkMA', '6044838'), + (9301, 28, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '2d28vkMA', '6044839'), + (9302, 28, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d28vkMA', '6045684'), + (9303, 28, 1991, 'attending', '2023-03-30 14:48:11', '2025-12-17 19:46:58', '2d28vkMA', '6047354'), + (9304, 28, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '2d28vkMA', '6050104'), + (9305, 28, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '2d28vkMA', '6053195'), + (9306, 28, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '2d28vkMA', '6053198'), + (9307, 28, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '2d28vkMA', '6056085'), + (9308, 28, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '2d28vkMA', '6056916'), + (9309, 28, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '2d28vkMA', '6059290'), + (9310, 28, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '2d28vkMA', '6060328'), + (9311, 28, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '2d28vkMA', '6061037'), + (9312, 28, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '2d28vkMA', '6061039'), + (9313, 28, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '2d28vkMA', '6067245'), + (9314, 28, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '2d28vkMA', '6068094'), + (9315, 28, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '2d28vkMA', '6068252'), + (9316, 28, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '2d28vkMA', '6068253'), + (9317, 28, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '2d28vkMA', '6068254'), + (9318, 28, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '2d28vkMA', '6068280'), + (9319, 28, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '2d28vkMA', '6069093'), + (9320, 28, 2039, 'attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', '2d28vkMA', '6072398'), + (9321, 28, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '2d28vkMA', '6072528'), + (9322, 28, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', '2d28vkMA', '6073678'), + (9323, 28, 2045, 'attending', '2023-04-30 02:00:56', '2025-12-17 19:47:01', '2d28vkMA', '6075556'), + (9324, 28, 2048, 'attending', '2023-05-03 02:39:22', '2025-12-17 19:47:03', '2d28vkMA', '6076415'), + (9325, 28, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '2d28vkMA', '6079840'), + (9326, 28, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '2d28vkMA', '6083398'), + (9327, 28, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '2d28vkMA', '6093504'), + (9328, 28, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '2d28vkMA', '6097414'), + (9329, 28, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '2d28vkMA', '6097442'), + (9330, 28, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '2d28vkMA', '6097684'), + (9331, 28, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '2d28vkMA', '6098762'), + (9332, 28, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '2d28vkMA', '6101361'), + (9333, 28, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '2d28vkMA', '6101362'), + (9334, 28, 2074, 'attending', '2023-05-20 00:08:19', '2025-12-17 19:47:03', '2d28vkMA', '6107312'), + (9335, 28, 2075, 'not_attending', '2023-05-17 22:42:51', '2025-12-17 19:46:50', '2d28vkMA', '6107314'), + (9336, 28, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '2d28vkMA', '6120034'), + (9337, 28, 2094, 'not_attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', '2d28vkMA', '6135924'), + (9338, 28, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '2d28vkMA', '6136733'), + (9339, 28, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '2d28vkMA', '6137989'), + (9340, 28, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '2d28vkMA', '6150864'), + (9341, 28, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '2d28vkMA', '6155491'), + (9342, 28, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '2d28vkMA', '6164417'), + (9343, 28, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '2d28vkMA', '6166388'), + (9344, 28, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '2d28vkMA', '6176439'), + (9345, 28, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '2d28vkMA', '6182410'), + (9346, 28, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '2d28vkMA', '6185812'), + (9347, 28, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '2d28vkMA', '6187651'), + (9348, 28, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '2d28vkMA', '6187963'), + (9349, 28, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '2d28vkMA', '6187964'), + (9350, 28, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '2d28vkMA', '6187966'), + (9351, 28, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '2d28vkMA', '6187967'), + (9352, 28, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '2d28vkMA', '6187969'), + (9353, 28, 2140, 'not_attending', '2023-07-13 21:00:43', '2025-12-17 19:46:52', '2d28vkMA', '6188074'), + (9354, 28, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '2d28vkMA', '6334878'), + (9355, 28, 2145, 'not_attending', '2023-07-13 21:00:45', '2025-12-17 19:46:52', '2d28vkMA', '6334903'), + (9356, 28, 2147, 'not_attending', '2023-07-13 21:01:02', '2025-12-17 19:46:52', '2d28vkMA', '6335666'), + (9357, 28, 2149, 'attending', '2023-07-09 21:43:40', '2025-12-17 19:46:53', '2d28vkMA', '6335682'), + (9358, 28, 2151, 'not_attending', '2023-07-09 22:57:13', '2025-12-17 19:46:52', '2d28vkMA', '6335700'), + (9359, 28, 2152, 'attending', '2023-07-11 22:50:36', '2025-12-17 19:46:52', '2d28vkMA', '6337021'), + (9360, 28, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '2d28vkMA', '6337236'), + (9361, 28, 2154, 'not_attending', '2023-07-11 22:52:40', '2025-12-17 19:46:52', '2d28vkMA', '6337689'), + (9362, 28, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '2d28vkMA', '6337970'), + (9363, 28, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '2d28vkMA', '6338308'), + (9364, 28, 2159, 'not_attending', '2023-07-18 19:09:42', '2025-12-17 19:46:53', '2d28vkMA', '6338355'), + (9365, 28, 2160, 'attending', '2023-07-29 21:09:07', '2025-12-17 19:46:54', '2d28vkMA', '6338358'), + (9366, 28, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '2d28vkMA', '6341710'), + (9367, 28, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '2d28vkMA', '6342044'), + (9368, 28, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '2d28vkMA', '6342298'), + (9369, 28, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '2d28vkMA', '6343294'), + (9370, 28, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '2d28vkMA', '6347034'), + (9371, 28, 2177, 'not_attending', '2023-08-09 23:22:24', '2025-12-17 19:46:55', '2d28vkMA', '6347053'), + (9372, 28, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '2d28vkMA', '6347056'), + (9373, 28, 2184, 'not_attending', '2023-07-29 21:09:08', '2025-12-17 19:46:54', '2d28vkMA', '6353825'), + (9374, 28, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '2d28vkMA', '6353830'), + (9375, 28, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '2d28vkMA', '6353831'), + (9376, 28, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '2d28vkMA', '6357867'), + (9377, 28, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '2d28vkMA', '6358652'), + (9378, 28, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '2d28vkMA', '6358668'), + (9379, 28, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '2d28vkMA', '6358669'), + (9380, 28, 2195, 'attending', '2023-08-25 22:45:50', '2025-12-17 19:46:55', '2d28vkMA', '6359397'), + (9381, 28, 2199, 'attending', '2023-08-05 15:55:14', '2025-12-17 19:46:55', '2d28vkMA', '6359849'), + (9382, 28, 2200, 'attending', '2023-08-05 16:00:11', '2025-12-17 19:46:55', '2d28vkMA', '6359850'), + (9383, 28, 2203, 'not_attending', '2023-08-10 14:03:37', '2025-12-17 19:46:55', '2d28vkMA', '6361524'), + (9384, 28, 2204, 'not_attending', '2023-08-10 14:03:56', '2025-12-17 19:46:55', '2d28vkMA', '6361542'), + (9385, 28, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '2d28vkMA', '6361709'), + (9386, 28, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '2d28vkMA', '6361710'), + (9387, 28, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '2d28vkMA', '6361711'), + (9388, 28, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '2d28vkMA', '6361712'), + (9389, 28, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '2d28vkMA', '6361713'), + (9390, 28, 2213, 'attending', '2023-08-09 17:40:57', '2025-12-17 19:46:55', '2d28vkMA', '6362935'), + (9391, 28, 2216, 'attending', '2023-08-20 19:30:47', '2025-12-17 19:46:55', '2d28vkMA', '6364123'), + (9392, 28, 2234, 'attending', '2023-08-28 14:37:55', '2025-12-17 19:46:56', '2d28vkMA', '6382559'), + (9393, 28, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '2d28vkMA', '6382573'), + (9394, 28, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '2d28vkMA', '6388604'), + (9395, 28, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '2d28vkMA', '6394629'), + (9396, 28, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '2d28vkMA', '6394631'), + (9397, 28, 2256, 'attending', '2023-09-21 14:34:41', '2025-12-17 19:46:45', '2d28vkMA', '6404369'), + (9398, 28, 2265, 'not_attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', '2d28vkMA', '6439625'), + (9399, 28, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '2d28vkMA', '6440863'), + (9400, 28, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '2d28vkMA', '6445440'), + (9401, 28, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '2d28vkMA', '6453951'), + (9402, 28, 2279, 'attending', '2023-10-12 22:52:49', '2025-12-17 19:46:46', '2d28vkMA', '6455460'), + (9403, 28, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '2d28vkMA', '6461696'), + (9404, 28, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '2d28vkMA', '6462129'), + (9405, 28, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '2d28vkMA', '6463218'), + (9406, 28, 2295, 'attending', '2023-10-16 13:24:20', '2025-12-17 19:46:46', '2d28vkMA', '6467832'), + (9407, 28, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '2d28vkMA', '6472181'), + (9408, 28, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', '2d28vkMA', '6474276'), + (9409, 28, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '2d28vkMA', '6482693'), + (9410, 28, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '2d28vkMA', '6484200'), + (9411, 28, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '2d28vkMA', '6484680'), + (9412, 28, 2310, 'attending', '2023-10-29 02:38:38', '2025-12-17 19:46:47', '2d28vkMA', '6487709'), + (9413, 28, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '2d28vkMA', '6507741'), + (9414, 28, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '2d28vkMA', '6514659'), + (9415, 28, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '2d28vkMA', '6514660'), + (9416, 28, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '2d28vkMA', '6519103'), + (9417, 28, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '2d28vkMA', '6535681'), + (9418, 28, 2338, 'not_attending', '2023-11-21 22:10:50', '2025-12-17 19:46:48', '2d28vkMA', '6538868'), + (9419, 28, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '2d28vkMA', '6584747'), + (9420, 28, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '2d28vkMA', '6587097'), + (9421, 28, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '2d28vkMA', '6609022'), + (9422, 28, 2372, 'not_attending', '2023-12-15 15:23:06', '2025-12-17 19:46:36', '2d28vkMA', '6628243'), + (9423, 28, 2373, 'attending', '2024-01-10 14:04:43', '2025-12-17 19:46:38', '2d28vkMA', '6632678'), + (9424, 28, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '2d28vkMA', '6632757'), + (9425, 28, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '2d28vkMA', '6644187'), + (9426, 28, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '2d28vkMA', '6648951'), + (9427, 28, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '2d28vkMA', '6648952'), + (9428, 28, 2388, 'attending', '2024-01-05 23:25:55', '2025-12-17 19:46:37', '2d28vkMA', '6649244'), + (9429, 28, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '2d28vkMA', '6655401'), + (9430, 28, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '2d28vkMA', '6661585'), + (9431, 28, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '2d28vkMA', '6661588'), + (9432, 28, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '2d28vkMA', '6661589'), + (9433, 28, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '2d28vkMA', '6699906'), + (9434, 28, 2408, 'attending', '2024-01-22 20:07:43', '2025-12-17 19:46:40', '2d28vkMA', '6699907'), + (9435, 28, 2410, 'attending', '2024-02-08 16:34:10', '2025-12-17 19:46:41', '2d28vkMA', '6699911'), + (9436, 28, 2411, 'attending', '2024-02-15 22:27:57', '2025-12-17 19:46:41', '2d28vkMA', '6699913'), + (9437, 28, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '2d28vkMA', '6701109'), + (9438, 28, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '2d28vkMA', '6704561'), + (9439, 28, 2425, 'attending', '2024-01-19 05:06:48', '2025-12-17 19:46:40', '2d28vkMA', '6705219'), + (9440, 28, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '2d28vkMA', '6710153'), + (9441, 28, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '2d28vkMA', '6711552'), + (9442, 28, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '2d28vkMA', '6711553'), + (9443, 28, 2431, 'attending', '2024-01-28 04:22:00', '2025-12-17 19:46:41', '2d28vkMA', '6712394'), + (9444, 28, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '2d28vkMA', '6722688'), + (9445, 28, 2438, 'attending', '2024-02-04 02:47:17', '2025-12-17 19:46:41', '2d28vkMA', '6730201'), + (9446, 28, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '2d28vkMA', '6730620'), + (9447, 28, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '2d28vkMA', '6730642'), + (9448, 28, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '2d28vkMA', '6740364'), + (9449, 28, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '2d28vkMA', '6743829'), + (9450, 28, 2467, 'maybe', '2024-02-21 15:36:38', '2025-12-17 19:46:43', '2d28vkMA', '7029987'), + (9451, 28, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '2d28vkMA', '7030380'), + (9452, 28, 2471, 'maybe', '2024-02-21 15:35:38', '2025-12-17 19:46:42', '2d28vkMA', '7032425'), + (9453, 28, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '2d28vkMA', '7033677'), + (9454, 28, 2474, 'not_attending', '2024-02-21 15:36:06', '2025-12-17 19:46:43', '2d28vkMA', '7035415'), + (9455, 28, 2479, 'attending', '2024-02-21 02:45:32', '2025-12-17 19:46:43', '2d28vkMA', '7037009'), + (9456, 28, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '2d28vkMA', '7044715'), + (9457, 28, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '2d28vkMA', '7050318'), + (9458, 28, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '2d28vkMA', '7050319'), + (9459, 28, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '2d28vkMA', '7050322'), + (9460, 28, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '2d28vkMA', '7057804'), + (9461, 28, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '2d28vkMA', '7072824'), + (9462, 28, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '2d28vkMA', '7074348'), + (9463, 28, 2511, 'attending', '2024-04-11 23:29:30', '2025-12-17 19:46:33', '2d28vkMA', '7074351'), + (9464, 28, 2512, 'maybe', '2024-03-29 16:32:32', '2025-12-17 19:46:33', '2d28vkMA', '7074352'), + (9465, 28, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '2d28vkMA', '7074364'), + (9466, 28, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '2d28vkMA', '7089267'), + (9467, 28, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '2d28vkMA', '7098747'), + (9468, 28, 2553, 'attending', '2024-03-29 11:42:20', '2025-12-17 19:46:33', '2d28vkMA', '7113468'), + (9469, 28, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '2d28vkMA', '7114856'), + (9470, 28, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '2d28vkMA', '7114951'), + (9471, 28, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '2d28vkMA', '7114955'), + (9472, 28, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '2d28vkMA', '7114956'), + (9473, 28, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '2d28vkMA', '7114957'), + (9474, 28, 2564, 'attending', '2024-04-03 01:28:53', '2025-12-17 19:46:33', '2d28vkMA', '7134735'), + (9475, 28, 2567, 'attending', '2024-04-04 01:56:00', '2025-12-17 19:46:33', '2d28vkMA', '7144962'), + (9476, 28, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '2d28vkMA', '7153615'), + (9477, 28, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '2d28vkMA', '7159484'), + (9478, 28, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '2d28vkMA', '7178446'), + (9479, 28, 2598, 'attending', '2024-04-21 22:45:02', '2025-12-17 19:46:34', '2d28vkMA', '7186731'), + (9480, 28, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '2d28vkMA', '7220467'), + (9481, 28, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '2d28vkMA', '7240354'), + (9482, 28, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '2d28vkMA', '7251633'), + (9483, 28, 2626, 'attending', '2024-05-17 13:09:12', '2025-12-17 19:46:35', '2d28vkMA', '7264723'), + (9484, 28, 2628, 'attending', '2024-05-30 22:18:35', '2025-12-17 19:46:36', '2d28vkMA', '7264725'), + (9485, 28, 2648, 'attending', '2024-05-20 23:53:49', '2025-12-17 19:46:35', '2d28vkMA', '7282283'), + (9486, 28, 2655, 'attending', '2024-05-26 21:46:43', '2025-12-17 19:46:35', '2d28vkMA', '7291225'), + (9487, 28, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '2d28vkMA', '7302674'), + (9488, 28, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '2d28vkMA', '7324073'), + (9489, 28, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '2d28vkMA', '7324074'), + (9490, 28, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '2d28vkMA', '7324075'), + (9491, 28, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '2d28vkMA', '7324078'), + (9492, 28, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '2d28vkMA', '7324082'), + (9493, 28, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '2d28vkMA', '7331457'), + (9494, 28, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '2d28vkMA', '7363643'), + (9495, 28, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '2d28vkMA', '7368606'), + (9496, 28, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '2d28vkMA', '7397462'), + (9497, 28, 2821, 'attending', '2024-10-07 16:32:47', '2025-12-17 19:46:26', '2d28vkMA', '7424275'), + (9498, 28, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '2d28vkMA', '7424276'), + (9499, 28, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '2d28vkMA', '7432751'), + (9500, 28, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '2d28vkMA', '7432752'), + (9501, 28, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '2d28vkMA', '7432753'), + (9502, 28, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '2d28vkMA', '7432754'), + (9503, 28, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '2d28vkMA', '7432755'), + (9504, 28, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '2d28vkMA', '7432756'), + (9505, 28, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '2d28vkMA', '7432758'), + (9506, 28, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '2d28vkMA', '7432759'), + (9507, 28, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '2d28vkMA', '7433834'), + (9508, 28, 2839, 'attending', '2024-09-25 13:42:47', '2025-12-17 19:46:25', '2d28vkMA', '7439262'), + (9509, 28, 2858, 'attending', '2024-10-11 19:25:00', '2025-12-17 19:46:26', '2d28vkMA', '7469388'), + (9510, 28, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '2d28vkMA', '7470197'), + (9511, 28, 2892, 'attending', '2024-10-27 21:32:27', '2025-12-17 19:46:26', '2d28vkMA', '7672064'), + (9512, 28, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '2d28vkMA', '7685613'), + (9513, 28, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '2d28vkMA', '7688194'), + (9514, 28, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '2d28vkMA', '7688196'), + (9515, 28, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '2d28vkMA', '7688289'), + (9516, 28, 2908, 'not_attending', '2024-11-11 01:14:50', '2025-12-17 19:46:27', '2d28vkMA', '7689420'), + (9517, 28, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '2d28vkMA', '7692763'), + (9518, 28, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '2d28vkMA', '7697552'), + (9519, 28, 2915, 'attending', '2024-11-17 05:48:35', '2025-12-17 19:46:27', '2d28vkMA', '7698151'), + (9520, 28, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '2d28vkMA', '7699878'), + (9521, 28, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '2d28vkMA', '7704043'), + (9522, 28, 2922, 'not_attending', '2024-11-25 22:47:46', '2025-12-17 19:46:21', '2d28vkMA', '7710890'), + (9523, 28, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '2d28vkMA', '7712467'), + (9524, 28, 2926, 'attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '2d28vkMA', '7713585'), + (9525, 28, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '2d28vkMA', '7713586'), + (9526, 28, 2929, 'not_attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', '2d28vkMA', '7723465'), + (9527, 28, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '2d28vkMA', '7738518'), + (9528, 28, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '2d28vkMA', '7750632'), + (9529, 28, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '2d28vkMA', '7750636'), + (9530, 28, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '2d28vkMA', '7796540'), + (9531, 28, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '2d28vkMA', '7796541'), + (9532, 28, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '2d28vkMA', '7796542'), + (9533, 28, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '2d28vkMA', '7825913'), + (9534, 28, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', '2d28vkMA', '7825920'), + (9535, 28, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '2d28vkMA', '7826209'), + (9536, 28, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '2d28vkMA', '7834742'), + (9537, 28, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '2d28vkMA', '7842108'), + (9538, 28, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '2d28vkMA', '7842902'), + (9539, 28, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '2d28vkMA', '7842903'), + (9540, 28, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '2d28vkMA', '7842904'), + (9541, 28, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '2d28vkMA', '7842905'), + (9542, 28, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', '2d28vkMA', '7842906'), + (9543, 28, 2998, 'not_attending', '2025-03-04 03:56:37', '2025-12-17 19:46:18', '2d28vkMA', '7842909'), + (9544, 28, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '2d28vkMA', '7855719'), + (9545, 28, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '2d28vkMA', '7860683'), + (9546, 28, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '2d28vkMA', '7860684'), + (9547, 28, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '2d28vkMA', '7866095'), + (9548, 28, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '2d28vkMA', '7869170'), + (9549, 28, 3015, 'attending', '2025-04-22 15:27:17', '2025-12-17 19:46:20', '2d28vkMA', '7869186'), + (9550, 28, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '2d28vkMA', '7869188'), + (9551, 28, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', '2d28vkMA', '7869194'), + (9552, 28, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', '2d28vkMA', '7869195'), + (9553, 28, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '2d28vkMA', '7869201'), + (9554, 28, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '2d28vkMA', '7877465'), + (9555, 28, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '2d28vkMA', '7888250'), + (9556, 28, 3072, 'maybe', '2025-04-03 16:47:31', '2025-12-17 19:46:19', '2d28vkMA', '7895449'), + (9557, 28, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '2d28vkMA', '7904777'), + (9558, 28, 3094, 'not_attending', '2025-05-10 15:50:16', '2025-12-17 19:46:21', '2d28vkMA', '8342292'), + (9559, 28, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '2d28vkMA', '8349164'), + (9560, 28, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '2d28vkMA', '8349545'), + (9561, 28, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '2d28vkMA', '8353584'), + (9562, 28, 3131, 'attending', '2025-05-15 16:38:43', '2025-12-17 19:46:21', '2d28vkMA', '8368028'), + (9563, 28, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '2d28vkMA', '8368029'), + (9564, 28, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '2d28vkMA', '8388462'), + (9565, 28, 3153, 'attending', '2025-06-03 11:50:05', '2025-12-17 19:46:15', '2d28vkMA', '8400273'), + (9566, 28, 3154, 'attending', '2025-06-27 02:33:54', '2025-12-17 19:46:15', '2d28vkMA', '8400274'), + (9567, 28, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '2d28vkMA', '8400275'), + (9568, 28, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '2d28vkMA', '8400276'), + (9569, 28, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '2d28vkMA', '8404977'), + (9570, 28, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '2d28vkMA', '8430783'), + (9571, 28, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '2d28vkMA', '8430784'), + (9572, 28, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '2d28vkMA', '8430799'), + (9573, 28, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '2d28vkMA', '8430800'), + (9574, 28, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '2d28vkMA', '8430801'), + (9575, 28, 3188, 'attending', '2025-07-06 01:49:51', '2025-12-17 19:46:17', '2d28vkMA', '8438709'), + (9576, 28, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '2d28vkMA', '8457738'), + (9577, 28, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '2d28vkMA', '8459566'), + (9578, 28, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '2d28vkMA', '8459567'), + (9579, 28, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', '2d28vkMA', '8459568'), + (9580, 28, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '2d28vkMA', '8461032'), + (9581, 28, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '2d28vkMA', '8477877'), + (9582, 28, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '2d28vkMA', '8485688'), + (9583, 28, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '2d28vkMA', '8490587'), + (9584, 28, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '2d28vkMA', '8493552'), + (9585, 28, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '2d28vkMA', '8493553'), + (9586, 28, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '2d28vkMA', '8493554'), + (9587, 28, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '2d28vkMA', '8493555'), + (9588, 28, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '2d28vkMA', '8493556'), + (9589, 28, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '2d28vkMA', '8493557'), + (9590, 28, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '2d28vkMA', '8493558'), + (9591, 28, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '2d28vkMA', '8493559'), + (9592, 28, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '2d28vkMA', '8493560'), + (9593, 28, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '2d28vkMA', '8493561'), + (9594, 28, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '2d28vkMA', '8493572'), + (9595, 28, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '2d28vkMA', '8540725'), + (9596, 28, 3289, 'attending', '2025-10-24 18:54:34', '2025-12-17 19:46:14', '2d28vkMA', '8542939'), + (9597, 28, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '2d28vkMA', '8555421'), + (9598, 28, 3325, 'maybe', '2025-11-24 00:28:22', '2025-12-17 19:46:14', '2d28vkMA', '8556660'), + (9599, 28, 3327, 'maybe', '2025-11-27 22:45:33', '2025-12-17 19:46:11', '2d28vkMA', '8557174'), + (9600, 29, 3304, 'attending', '2025-11-22 11:58:38', '2025-12-17 19:46:14', 'dJVbgOwd', '8550024'), + (9601, 29, 3305, 'attending', '2025-12-05 08:37:47', '2025-12-17 19:46:11', 'dJVbgOwd', '8550025'), + (9602, 29, 3306, 'attending', '2025-12-13 02:48:56', '2025-12-17 19:46:11', 'dJVbgOwd', '8550026'), + (9603, 29, 3324, 'attending', '2025-11-18 00:10:55', '2025-12-17 19:46:14', 'dJVbgOwd', '8556406'), + (9604, 29, 3327, 'attending', '2025-11-24 07:43:08', '2025-12-17 19:46:11', 'dJVbgOwd', '8557174'), + (9605, 29, 3346, 'attending', '2026-01-02 05:07:56', '2026-01-02 05:07:56', NULL, NULL), + (9606, 30, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ArbMKbqA', '7904777'), + (9607, 30, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', 'ArbMKbqA', '8387505'), + (9608, 30, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ArbMKbqA', '8388462'), + (9609, 30, 3150, 'attending', '2025-06-21 18:23:51', '2025-12-17 19:46:15', 'ArbMKbqA', '8393174'), + (9610, 30, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ArbMKbqA', '8400273'), + (9611, 30, 3154, 'attending', '2025-06-28 18:14:39', '2025-12-17 19:46:15', 'ArbMKbqA', '8400274'), + (9612, 30, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ArbMKbqA', '8400275'), + (9613, 30, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ArbMKbqA', '8400276'), + (9614, 30, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ArbMKbqA', '8404977'), + (9615, 30, 3170, 'not_attending', '2025-06-09 16:34:14', '2025-12-17 19:46:15', 'ArbMKbqA', '8405947'), + (9616, 30, 3171, 'not_attending', '2025-06-13 18:00:16', '2025-12-17 19:46:15', 'ArbMKbqA', '8409765'), + (9617, 30, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ArbMKbqA', '8430783'), + (9618, 30, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ArbMKbqA', '8430784'), + (9619, 30, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ArbMKbqA', '8430799'), + (9620, 30, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ArbMKbqA', '8430800'), + (9621, 30, 3185, 'maybe', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ArbMKbqA', '8430801'), + (9622, 30, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ArbMKbqA', '8438709'), + (9623, 30, 3192, 'maybe', '2025-07-15 16:08:02', '2025-12-17 19:46:17', 'ArbMKbqA', '8456429'), + (9624, 30, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ArbMKbqA', '8457738'), + (9625, 30, 3194, 'attending', '2025-07-18 21:46:22', '2025-12-17 19:46:17', 'ArbMKbqA', '8457740'), + (9626, 30, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ArbMKbqA', '8459566'), + (9627, 30, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ArbMKbqA', '8459567'), + (9628, 30, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ArbMKbqA', '8461032'), + (9629, 30, 3209, 'attending', '2025-07-28 02:11:23', '2025-12-17 19:46:17', 'ArbMKbqA', '8467750'), + (9630, 30, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ArbMKbqA', '8477877'), + (9631, 30, 3216, 'attending', '2025-08-08 02:45:44', '2025-12-17 19:46:17', 'ArbMKbqA', '8481608'), + (9632, 30, 3217, 'maybe', '2025-08-09 19:24:20', '2025-12-17 19:46:17', 'ArbMKbqA', '8481811'), + (9633, 30, 3219, 'maybe', '2025-08-11 20:07:28', '2025-12-17 19:46:18', 'ArbMKbqA', '8482548'), + (9634, 30, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ArbMKbqA', '8485688'), + (9635, 30, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ArbMKbqA', '8490587'), + (9636, 30, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ArbMKbqA', '8493552'), + (9637, 30, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ArbMKbqA', '8493553'), + (9638, 30, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ArbMKbqA', '8493554'), + (9639, 30, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ArbMKbqA', '8493555'), + (9640, 30, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ArbMKbqA', '8493556'), + (9641, 30, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ArbMKbqA', '8493557'), + (9642, 30, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ArbMKbqA', '8493558'), + (9643, 30, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ArbMKbqA', '8493559'), + (9644, 30, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ArbMKbqA', '8493560'), + (9645, 30, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ArbMKbqA', '8493561'), + (9646, 30, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ArbMKbqA', '8493572'), + (9647, 30, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ArbMKbqA', '8540725'), + (9648, 30, 3295, 'not_attending', '2025-10-29 02:14:11', '2025-12-17 19:46:14', 'ArbMKbqA', '8547541'), + (9649, 30, 3296, 'attending', '2025-10-23 13:49:12', '2025-12-17 19:46:14', 'ArbMKbqA', '8547711'), + (9650, 30, 3301, 'maybe', '2025-11-27 07:14:00', '2025-12-17 19:46:11', 'ArbMKbqA', '8550021'), + (9651, 30, 3310, 'maybe', '2025-11-27 07:13:34', '2025-12-17 19:46:11', 'ArbMKbqA', '8550410'), + (9652, 30, 3311, 'maybe', '2025-11-27 07:13:53', '2025-12-17 19:46:11', 'ArbMKbqA', '8550412'), + (9653, 30, 3312, 'maybe', '2025-11-27 07:13:56', '2025-12-17 19:46:11', 'ArbMKbqA', '8550413'), + (9654, 30, 3314, 'attending', '2025-11-04 22:02:51', '2025-12-17 19:46:14', 'ArbMKbqA', '8551821'), + (9655, 30, 3315, 'not_attending', '2025-11-05 01:14:00', '2025-12-17 19:46:14', 'ArbMKbqA', '8552486'), + (9656, 30, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ArbMKbqA', '8555421'), + (9657, 31, 3295, 'attending', '2025-10-28 08:24:32', '2025-12-17 19:46:14', '4Z6z17l4', '8547541'), + (9658, 31, 3300, 'attending', '2025-11-05 12:37:31', '2025-12-17 19:46:14', '4Z6z17l4', '8549145'), + (9659, 31, 3302, 'attending', '2025-11-12 10:57:51', '2025-12-17 19:46:14', '4Z6z17l4', '8550022'), + (9660, 31, 3304, 'not_attending', '2025-11-22 07:52:52', '2025-12-17 19:46:14', '4Z6z17l4', '8550024'), + (9661, 31, 3305, 'attending', '2025-12-06 18:40:42', '2025-12-17 19:46:11', '4Z6z17l4', '8550025'), + (9662, 31, 3311, 'maybe', '2025-12-09 17:39:30', '2025-12-17 19:46:11', '4Z6z17l4', '8550412'), + (9663, 31, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4Z6z17l4', '8555421'), + (9664, 31, 3346, 'maybe', '2026-01-01 23:21:39', '2026-01-01 23:21:39', NULL, NULL), + (9665, 32, 3298, 'not_attending', '2025-10-21 21:28:55', '2025-12-17 19:46:14', '401W2ORd', '8548211'), + (9666, 32, 3321, 'attending', '2025-11-14 01:03:34', '2025-12-17 19:46:14', '401W2ORd', '8555418'), + (9667, 32, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '401W2ORd', '8555421'), + (9668, 33, 3015, 'attending', '2025-04-24 21:13:23', '2025-12-17 19:46:20', 'mjVP59Nm', '7869186'), + (9669, 33, 3016, 'attending', '2025-04-19 22:04:14', '2025-12-17 19:46:20', 'mjVP59Nm', '7869187'), + (9670, 33, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mjVP59Nm', '7904777'), + (9671, 33, 3094, 'attending', '2025-05-10 20:01:32', '2025-12-17 19:46:21', 'mjVP59Nm', '8342292'), + (9672, 33, 3095, 'attending', '2025-05-01 19:15:57', '2025-12-17 19:46:20', 'mjVP59Nm', '8342293'), + (9673, 33, 3103, 'attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'mjVP59Nm', '8347770'), + (9674, 33, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjVP59Nm', '8349164'), + (9675, 33, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjVP59Nm', '8349545'), + (9676, 33, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mjVP59Nm', '8353584'), + (9677, 33, 3116, 'attending', '2025-05-03 18:35:37', '2025-12-17 19:46:20', 'mjVP59Nm', '8358252'), + (9678, 33, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjVP59Nm', '8368028'), + (9679, 33, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjVP59Nm', '8368029'), + (9680, 33, 3133, 'attending', '2025-05-31 20:15:31', '2025-12-17 19:46:14', 'mjVP59Nm', '8368030'), + (9681, 33, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjVP59Nm', '8388462'), + (9682, 33, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjVP59Nm', '8400273'), + (9683, 33, 3154, 'not_attending', '2025-06-26 04:45:46', '2025-12-17 19:46:15', 'mjVP59Nm', '8400274'), + (9684, 33, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjVP59Nm', '8400275'), + (9685, 33, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mjVP59Nm', '8400276'), + (9686, 33, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjVP59Nm', '8404977'), + (9687, 33, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mjVP59Nm', '8430783'), + (9688, 33, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjVP59Nm', '8430784'), + (9689, 33, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjVP59Nm', '8430799'), + (9690, 33, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjVP59Nm', '8430800'), + (9691, 33, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjVP59Nm', '8430801'), + (9692, 33, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mjVP59Nm', '8438709'), + (9693, 33, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjVP59Nm', '8457738'), + (9694, 33, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjVP59Nm', '8459566'), + (9695, 33, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjVP59Nm', '8459567'), + (9696, 33, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjVP59Nm', '8461032'), + (9697, 33, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjVP59Nm', '8477877'), + (9698, 33, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mjVP59Nm', '8485688'), + (9699, 33, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mjVP59Nm', '8490587'), + (9700, 33, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mjVP59Nm', '8493552'), + (9701, 33, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'mjVP59Nm', '8493553'), + (9702, 33, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mjVP59Nm', '8493554'), + (9703, 33, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mjVP59Nm', '8493555'), + (9704, 33, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mjVP59Nm', '8493556'), + (9705, 33, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mjVP59Nm', '8493557'), + (9706, 33, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mjVP59Nm', '8493558'), + (9707, 33, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mjVP59Nm', '8493559'), + (9708, 33, 3244, 'maybe', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mjVP59Nm', '8493560'), + (9709, 33, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'mjVP59Nm', '8493561'), + (9710, 33, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mjVP59Nm', '8493572'), + (9711, 33, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mjVP59Nm', '8540725'), + (9712, 33, 3302, 'not_attending', '2025-11-09 06:22:12', '2025-12-17 19:46:14', 'mjVP59Nm', '8550022'), + (9713, 33, 3304, 'attending', '2025-11-22 08:19:51', '2025-12-17 19:46:14', 'mjVP59Nm', '8550024'), + (9714, 33, 3305, 'attending', '2025-12-04 04:33:21', '2025-12-17 19:46:11', 'mjVP59Nm', '8550025'), + (9715, 33, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mjVP59Nm', '8555421'), + (9716, 34, 3015, 'attending', '2025-04-24 07:57:09', '2025-12-17 19:46:20', 'dVo6zbpm', '7869186'), + (9717, 34, 3022, 'not_attending', '2025-04-25 00:04:33', '2025-12-17 19:46:20', 'dVo6zbpm', '7869193'), + (9718, 34, 3088, 'attending', '2025-06-09 08:18:24', '2025-12-17 19:46:15', 'dVo6zbpm', '7904777'), + (9719, 34, 3094, 'attending', '2025-04-30 23:11:22', '2025-12-17 19:46:21', 'dVo6zbpm', '8342292'), + (9720, 34, 3095, 'attending', '2025-04-24 07:57:29', '2025-12-17 19:46:20', 'dVo6zbpm', '8342293'), + (9721, 34, 3096, 'maybe', '2025-04-22 20:29:52', '2025-12-17 19:46:20', 'dVo6zbpm', '8342987'), + (9722, 34, 3097, 'not_attending', '2025-04-22 20:29:21', '2025-12-17 19:46:20', 'dVo6zbpm', '8342993'), + (9723, 34, 3100, 'attending', '2025-04-22 01:57:34', '2025-12-17 19:46:20', 'dVo6zbpm', '8343977'), + (9724, 34, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVo6zbpm', '8349164'), + (9725, 34, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVo6zbpm', '8349545'), + (9726, 34, 3106, 'attending', '2025-04-27 18:14:47', '2025-12-17 19:46:20', 'dVo6zbpm', '8349552'), + (9727, 34, 3107, 'maybe', '2025-04-27 22:56:39', '2025-12-17 19:46:20', 'dVo6zbpm', '8350107'), + (9728, 34, 3109, 'maybe', '2025-05-04 23:06:16', '2025-12-17 19:46:21', 'dVo6zbpm', '8352001'), + (9729, 34, 3110, 'maybe', '2025-04-30 23:10:59', '2025-12-17 19:46:20', 'dVo6zbpm', '8353484'), + (9730, 34, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVo6zbpm', '8353584'), + (9731, 34, 3114, 'not_attending', '2025-05-03 08:10:31', '2025-12-17 19:46:20', 'dVo6zbpm', '8357180'), + (9732, 34, 3119, 'attending', '2025-05-07 07:44:52', '2025-12-17 19:46:21', 'dVo6zbpm', '8360035'), + (9733, 34, 3120, 'not_attending', '2025-05-07 07:44:01', '2025-12-17 19:46:21', 'dVo6zbpm', '8360736'), + (9734, 34, 3121, 'maybe', '2025-05-07 16:58:24', '2025-12-17 19:46:21', 'dVo6zbpm', '8362730'), + (9735, 34, 3122, 'maybe', '2025-05-12 09:17:41', '2025-12-17 19:46:21', 'dVo6zbpm', '8362978'), + (9736, 34, 3123, 'not_attending', '2025-05-09 08:29:12', '2025-12-17 19:46:21', 'dVo6zbpm', '8363523'), + (9737, 34, 3124, 'attending', '2025-05-09 02:03:30', '2025-12-17 19:46:21', 'dVo6zbpm', '8363566'), + (9738, 34, 3127, 'not_attending', '2025-05-12 09:17:48', '2025-12-17 19:46:21', 'dVo6zbpm', '8365615'), + (9739, 34, 3131, 'attending', '2025-05-13 08:02:15', '2025-12-17 19:46:21', 'dVo6zbpm', '8368028'), + (9740, 34, 3132, 'attending', '2025-05-19 17:32:01', '2025-12-17 19:46:21', 'dVo6zbpm', '8368029'), + (9741, 34, 3133, 'attending', '2025-05-24 19:55:23', '2025-12-17 19:46:14', 'dVo6zbpm', '8368030'), + (9742, 34, 3135, 'maybe', '2025-05-19 17:31:59', '2025-12-17 19:46:21', 'dVo6zbpm', '8373126'), + (9743, 34, 3138, 'attending', '2025-05-18 16:48:23', '2025-12-17 19:46:21', 'dVo6zbpm', '8376037'), + (9744, 34, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dVo6zbpm', '8388462'), + (9745, 34, 3150, 'not_attending', '2025-06-06 22:40:42', '2025-12-17 19:46:15', 'dVo6zbpm', '8393174'), + (9746, 34, 3152, 'attending', '2025-05-31 19:17:49', '2025-12-17 19:46:14', 'dVo6zbpm', '8393582'), + (9747, 34, 3153, 'attending', '2025-06-03 20:03:15', '2025-12-17 19:46:15', 'dVo6zbpm', '8400273'), + (9748, 34, 3154, 'attending', '2025-06-21 19:59:36', '2025-12-17 19:46:15', 'dVo6zbpm', '8400274'), + (9749, 34, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dVo6zbpm', '8400275'), + (9750, 34, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dVo6zbpm', '8400276'), + (9751, 34, 3157, 'maybe', '2025-06-06 22:33:38', '2025-12-17 19:46:15', 'dVo6zbpm', '8401407'), + (9752, 34, 3159, 'maybe', '2025-06-06 22:39:48', '2025-12-17 19:46:15', 'dVo6zbpm', '8401410'), + (9753, 34, 3161, 'maybe', '2025-06-06 22:19:54', '2025-12-17 19:46:15', 'dVo6zbpm', '8401412'), + (9754, 34, 3162, 'not_attending', '2025-06-17 07:08:30', '2025-12-17 19:46:15', 'dVo6zbpm', '8401599'), + (9755, 34, 3164, 'attending', '2025-06-06 00:50:56', '2025-12-17 19:46:15', 'dVo6zbpm', '8403121'), + (9756, 34, 3166, 'maybe', '2025-06-07 22:16:51', '2025-12-17 19:46:15', 'dVo6zbpm', '8404242'), + (9757, 34, 3169, 'not_attending', '2025-06-09 08:17:48', '2025-12-17 19:46:15', 'dVo6zbpm', '8404977'), + (9758, 34, 3172, 'not_attending', '2025-06-17 07:08:36', '2025-12-17 19:46:15', 'dVo6zbpm', '8410181'), + (9759, 34, 3175, 'maybe', '2025-06-15 01:27:05', '2025-12-17 19:46:15', 'dVo6zbpm', '8410815'), + (9760, 34, 3176, 'maybe', '2025-06-21 19:59:23', '2025-12-17 19:46:15', 'dVo6zbpm', '8416741'), + (9761, 34, 3179, 'maybe', '2025-06-24 17:41:28', '2025-12-17 19:46:15', 'dVo6zbpm', '8421850'), + (9762, 34, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dVo6zbpm', '8430783'), + (9763, 34, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dVo6zbpm', '8430784'), + (9764, 34, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dVo6zbpm', '8430799'), + (9765, 34, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dVo6zbpm', '8430800'), + (9766, 34, 3185, 'maybe', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dVo6zbpm', '8430801'), + (9767, 34, 3186, 'attending', '2025-07-01 01:03:11', '2025-12-17 19:46:16', 'dVo6zbpm', '8431527'), + (9768, 34, 3188, 'attending', '2025-07-14 09:04:17', '2025-12-17 19:46:17', 'dVo6zbpm', '8438709'), + (9769, 34, 3189, 'maybe', '2025-07-08 21:35:33', '2025-12-17 19:46:16', 'dVo6zbpm', '8438849'), + (9770, 34, 3190, 'not_attending', '2025-07-14 09:04:12', '2025-12-17 19:46:17', 'dVo6zbpm', '8443962'), + (9771, 34, 3192, 'attending', '2025-07-15 16:08:02', '2025-12-17 19:46:17', 'dVo6zbpm', '8456429'), + (9772, 34, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVo6zbpm', '8457738'), + (9773, 34, 3195, 'attending', '2025-07-21 07:45:47', '2025-12-17 19:46:17', 'dVo6zbpm', '8458118'), + (9774, 34, 3196, 'attending', '2025-08-07 21:50:42', '2025-12-17 19:46:17', 'dVo6zbpm', '8458543'), + (9775, 34, 3197, 'attending', '2025-07-18 02:28:13', '2025-12-17 19:46:17', 'dVo6zbpm', '8458825'), + (9776, 34, 3198, 'not_attending', '2025-08-17 11:50:31', '2025-12-17 19:46:18', 'dVo6zbpm', '8459268'), + (9777, 34, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVo6zbpm', '8459566'), + (9778, 34, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVo6zbpm', '8459567'), + (9779, 34, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVo6zbpm', '8461032'), + (9780, 34, 3205, 'not_attending', '2025-07-20 22:49:05', '2025-12-17 19:46:17', 'dVo6zbpm', '8461764'), + (9781, 34, 3208, 'maybe', '2025-07-28 23:13:52', '2025-12-17 19:46:17', 'dVo6zbpm', '8467717'), + (9782, 34, 3210, 'attending', '2025-08-17 11:50:27', '2025-12-17 19:46:18', 'dVo6zbpm', '8471162'), + (9783, 34, 3211, 'not_attending', '2025-08-07 21:45:03', '2025-12-17 19:46:17', 'dVo6zbpm', '8477785'), + (9784, 34, 3213, 'maybe', '2025-08-11 19:32:37', '2025-12-17 19:46:17', 'dVo6zbpm', '8477876'), + (9785, 34, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVo6zbpm', '8477877'), + (9786, 34, 3217, 'not_attending', '2025-08-12 15:23:35', '2025-12-17 19:46:17', 'dVo6zbpm', '8481811'), + (9787, 34, 3219, 'not_attending', '2025-08-17 11:50:42', '2025-12-17 19:46:18', 'dVo6zbpm', '8482548'), + (9788, 34, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dVo6zbpm', '8485688'), + (9789, 34, 3235, 'maybe', '2025-08-18 17:52:27', '2025-12-17 19:46:18', 'dVo6zbpm', '8490587'), + (9790, 34, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVo6zbpm', '8493552'), + (9791, 34, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dVo6zbpm', '8493553'), + (9792, 34, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVo6zbpm', '8493554'), + (9793, 34, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVo6zbpm', '8493555'), + (9794, 34, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVo6zbpm', '8493556'), + (9795, 34, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVo6zbpm', '8493557'), + (9796, 34, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVo6zbpm', '8493558'), + (9797, 34, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVo6zbpm', '8493559'), + (9798, 34, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVo6zbpm', '8493560'), + (9799, 34, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dVo6zbpm', '8493561'), + (9800, 34, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVo6zbpm', '8493572'), + (9801, 34, 3261, 'attending', '2025-09-15 07:00:05', '2025-12-17 19:46:12', 'dVo6zbpm', '8512641'), + (9802, 34, 3262, 'attending', '2025-09-15 07:00:35', '2025-12-17 19:46:12', 'dVo6zbpm', '8512642'), + (9803, 34, 3264, 'not_attending', '2025-09-15 07:00:20', '2025-12-17 19:46:12', 'dVo6zbpm', '8514577'), + (9804, 34, 3266, 'attending', '2025-09-27 20:20:43', '2025-12-17 19:46:13', 'dVo6zbpm', '8514579'), + (9805, 34, 3272, 'maybe', '2025-09-22 08:15:01', '2025-12-17 19:46:12', 'dVo6zbpm', '8524068'), + (9806, 34, 3274, 'maybe', '2025-09-22 08:15:12', '2025-12-17 19:46:12', 'dVo6zbpm', '8527784'), + (9807, 34, 3280, 'maybe', '2025-10-01 22:56:34', '2025-12-17 19:46:13', 'dVo6zbpm', '8535686'), + (9808, 34, 3281, 'attending', '2025-10-01 22:56:40', '2025-12-17 19:46:14', 'dVo6zbpm', '8535687'), + (9809, 34, 3282, 'not_attending', '2025-10-05 19:06:25', '2025-12-17 19:46:13', 'dVo6zbpm', '8537571'), + (9810, 34, 3283, 'maybe', '2025-10-05 19:06:45', '2025-12-17 19:46:14', 'dVo6zbpm', '8538077'), + (9811, 34, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dVo6zbpm', '8540725'), + (9812, 34, 3285, 'not_attending', '2025-10-08 21:01:18', '2025-12-17 19:46:13', 'dVo6zbpm', '8540726'), + (9813, 34, 3286, 'attending', '2025-10-08 21:15:32', '2025-12-17 19:46:14', 'dVo6zbpm', '8540728'), + (9814, 34, 3287, 'attending', '2025-10-12 22:50:58', '2025-12-17 19:46:14', 'dVo6zbpm', '8540729'), + (9815, 34, 3289, 'not_attending', '2025-10-17 01:20:11', '2025-12-17 19:46:14', 'dVo6zbpm', '8542939'), + (9816, 34, 3292, 'not_attending', '2025-10-16 08:24:51', '2025-12-17 19:46:14', 'dVo6zbpm', '8543835'), + (9817, 34, 3293, 'attending', '2025-10-16 08:24:55', '2025-12-17 19:46:14', 'dVo6zbpm', '8543836'), + (9818, 34, 3294, 'attending', '2025-10-18 21:23:27', '2025-12-17 19:46:14', 'dVo6zbpm', '8546775'), + (9819, 34, 3295, 'not_attending', '2025-10-28 20:50:29', '2025-12-17 19:46:14', 'dVo6zbpm', '8547541'), + (9820, 34, 3300, 'maybe', '2025-10-30 21:02:51', '2025-12-17 19:46:14', 'dVo6zbpm', '8549145'), + (9821, 34, 3302, 'attending', '2025-10-29 00:11:44', '2025-12-17 19:46:14', 'dVo6zbpm', '8550022'), + (9822, 34, 3304, 'not_attending', '2025-11-18 10:05:30', '2025-12-17 19:46:14', 'dVo6zbpm', '8550024'), + (9823, 34, 3306, 'not_attending', '2025-12-02 17:11:31', '2025-12-17 19:46:11', 'dVo6zbpm', '8550026'), + (9824, 34, 3307, 'attending', '2025-12-15 20:50:26', '2025-12-17 19:46:11', 'dVo6zbpm', '8550027'), + (9825, 34, 3308, 'not_attending', '2025-10-28 20:50:18', '2025-12-17 19:46:14', 'dVo6zbpm', '8550408'), + (9826, 34, 3309, 'attending', '2025-11-16 04:12:57', '2025-12-17 19:46:14', 'dVo6zbpm', '8550409'), + (9827, 34, 3310, 'attending', '2025-11-19 22:32:29', '2025-12-17 19:46:11', 'dVo6zbpm', '8550410'), + (9828, 34, 3311, 'not_attending', '2025-12-08 10:47:26', '2025-12-17 19:46:11', 'dVo6zbpm', '8550412'), + (9829, 34, 3313, 'not_attending', '2025-10-30 21:02:58', '2025-12-17 19:46:14', 'dVo6zbpm', '8550896'), + (9830, 34, 3319, 'attending', '2025-11-08 20:12:17', '2025-12-17 19:46:14', 'dVo6zbpm', '8553114'), + (9831, 34, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dVo6zbpm', '8555421'), + (9832, 34, 3327, 'not_attending', '2025-11-24 12:50:30', '2025-12-17 19:46:11', 'dVo6zbpm', '8557174'), + (9833, 34, 3334, 'not_attending', '2025-12-08 10:47:23', '2025-12-17 19:46:11', 'dVo6zbpm', '8563246'), + (9834, 34, 3343, 'maybe', '2025-12-15 20:50:52', '2025-12-17 19:46:11', 'dVo6zbpm', '8564411'), + (9835, 34, 3346, 'attending', '2025-12-31 23:04:39', '2025-12-31 23:04:39', NULL, NULL), + (9836, 35, 2410, 'attending', '2024-02-08 01:32:14', '2025-12-17 19:46:41', 'dxKzV994', '6699911'), + (9837, 35, 2411, 'attending', '2024-02-11 04:29:25', '2025-12-17 19:46:41', 'dxKzV994', '6699913'), + (9838, 35, 2412, 'attending', '2024-02-11 05:08:26', '2025-12-17 19:46:43', 'dxKzV994', '6700717'), + (9839, 35, 2449, 'not_attending', '2024-02-16 04:17:07', '2025-12-17 19:46:42', 'dxKzV994', '6735833'), + (9840, 35, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxKzV994', '6740364'), + (9841, 35, 2454, 'attending', '2024-02-16 04:17:11', '2025-12-17 19:46:42', 'dxKzV994', '6740921'), + (9842, 35, 2455, 'attending', '2024-02-08 05:15:52', '2025-12-17 19:46:41', 'dxKzV994', '6741034'), + (9843, 35, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxKzV994', '6743829'), + (9844, 35, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxKzV994', '7030380'), + (9845, 35, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxKzV994', '7033677'), + (9846, 35, 2474, 'attending', '2024-02-20 22:03:04', '2025-12-17 19:46:43', 'dxKzV994', '7035415'), + (9847, 35, 2475, 'not_attending', '2024-02-21 01:20:22', '2025-12-17 19:46:43', 'dxKzV994', '7035643'), + (9848, 35, 2476, 'attending', '2024-02-21 01:20:19', '2025-12-17 19:46:43', 'dxKzV994', '7035691'), + (9849, 35, 2477, 'attending', '2024-02-20 22:01:59', '2025-12-17 19:46:42', 'dxKzV994', '7035692'), + (9850, 35, 2481, 'attending', '2024-02-25 03:47:57', '2025-12-17 19:46:43', 'dxKzV994', '7044715'), + (9851, 35, 2482, 'attending', '2024-02-25 03:47:59', '2025-12-17 19:46:44', 'dxKzV994', '7044719'), + (9852, 35, 2484, 'attending', '2024-02-26 17:54:24', '2025-12-17 19:46:43', 'dxKzV994', '7046836'), + (9853, 35, 2486, 'attending', '2024-03-04 05:44:02', '2025-12-17 19:46:43', 'dxKzV994', '7048277'), + (9854, 35, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxKzV994', '7050318'), + (9855, 35, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxKzV994', '7050319'), + (9856, 35, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxKzV994', '7050322'), + (9857, 35, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxKzV994', '7057804'), + (9858, 35, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dxKzV994', '7059866'), + (9859, 35, 2505, 'maybe', '2024-03-17 02:17:29', '2025-12-17 19:46:33', 'dxKzV994', '7069163'), + (9860, 35, 2507, 'attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxKzV994', '7072824'), + (9861, 35, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxKzV994', '7074348'), + (9862, 35, 2509, 'attending', '2024-03-25 21:16:33', '2025-12-17 19:46:33', 'dxKzV994', '7074349'), + (9863, 35, 2512, 'attending', '2024-04-04 23:56:05', '2025-12-17 19:46:33', 'dxKzV994', '7074352'), + (9864, 35, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxKzV994', '7074364'), + (9865, 35, 2537, 'attending', '2024-03-23 14:50:01', '2025-12-17 19:46:33', 'dxKzV994', '7085484'), + (9866, 35, 2539, 'attending', '2024-04-04 23:31:51', '2025-12-17 19:46:33', 'dxKzV994', '7085486'), + (9867, 35, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxKzV994', '7089267'), + (9868, 35, 2541, 'maybe', '2024-03-17 14:27:01', '2025-12-17 19:46:33', 'dxKzV994', '7089404'), + (9869, 35, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxKzV994', '7098747'), + (9870, 35, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxKzV994', '7113468'), + (9871, 35, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxKzV994', '7114856'), + (9872, 35, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxKzV994', '7114951'), + (9873, 35, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxKzV994', '7114955'), + (9874, 35, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxKzV994', '7114956'), + (9875, 35, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxKzV994', '7114957'), + (9876, 35, 2562, 'attending', '2024-04-02 19:19:57', '2025-12-17 19:46:33', 'dxKzV994', '7134552'), + (9877, 35, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxKzV994', '7153615'), + (9878, 35, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxKzV994', '7159484'), + (9879, 35, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxKzV994', '7178446'), + (9880, 35, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxKzV994', '7220467'), + (9881, 35, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxKzV994', '7240354'), + (9882, 35, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxKzV994', '7251633'), + (9883, 35, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dxKzV994', '7263048'), + (9884, 35, 2626, 'attending', '2024-05-18 19:05:20', '2025-12-17 19:46:35', 'dxKzV994', '7264723'), + (9885, 35, 2627, 'attending', '2024-05-25 20:15:02', '2025-12-17 19:46:35', 'dxKzV994', '7264724'), + (9886, 35, 2628, 'attending', '2024-06-01 16:05:45', '2025-12-17 19:46:36', 'dxKzV994', '7264725'), + (9887, 35, 2629, 'attending', '2024-06-04 21:11:45', '2025-12-17 19:46:28', 'dxKzV994', '7264726'), + (9888, 35, 2649, 'attending', '2024-05-28 12:28:47', '2025-12-17 19:46:35', 'dxKzV994', '7282950'), + (9889, 35, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxKzV994', '7302674'), + (9890, 35, 2663, 'attending', '2024-06-04 16:16:34', '2025-12-17 19:46:36', 'dxKzV994', '7303913'), + (9891, 35, 2678, 'not_attending', '2024-06-15 19:51:53', '2025-12-17 19:46:28', 'dxKzV994', '7319489'), + (9892, 35, 2679, 'attending', '2024-06-18 15:57:01', '2025-12-17 19:46:29', 'dxKzV994', '7319490'), + (9893, 35, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxKzV994', '7324073'), + (9894, 35, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxKzV994', '7324074'), + (9895, 35, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxKzV994', '7324075'), + (9896, 35, 2691, 'attending', '2024-07-20 06:56:06', '2025-12-17 19:46:30', 'dxKzV994', '7324076'), + (9897, 35, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxKzV994', '7324078'), + (9898, 35, 2694, 'maybe', '2024-08-10 14:14:39', '2025-12-17 19:46:31', 'dxKzV994', '7324079'), + (9899, 35, 2695, 'attending', '2024-08-16 15:14:06', '2025-12-17 19:46:31', 'dxKzV994', '7324080'), + (9900, 35, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxKzV994', '7324082'), + (9901, 35, 2698, 'attending', '2024-09-07 20:57:56', '2025-12-17 19:46:24', 'dxKzV994', '7324083'), + (9902, 35, 2716, 'attending', '2024-06-17 00:01:56', '2025-12-17 19:46:29', 'dxKzV994', '7329096'), + (9903, 35, 2718, 'not_attending', '2024-06-18 15:56:53', '2025-12-17 19:46:28', 'dxKzV994', '7330458'), + (9904, 35, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxKzV994', '7331457'), + (9905, 35, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxKzV994', '7356752'), + (9906, 35, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxKzV994', '7363643'), + (9907, 35, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxKzV994', '7368606'), + (9908, 35, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxKzV994', '7397462'), + (9909, 35, 2821, 'not_attending', '2024-10-06 00:14:27', '2025-12-17 19:46:26', 'dxKzV994', '7424275'), + (9910, 35, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxKzV994', '7424276'), + (9911, 35, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxKzV994', '7432751'), + (9912, 35, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxKzV994', '7432752'), + (9913, 35, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxKzV994', '7432753'), + (9914, 35, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxKzV994', '7432754'), + (9915, 35, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxKzV994', '7432755'), + (9916, 35, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxKzV994', '7432756'), + (9917, 35, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxKzV994', '7432758'), + (9918, 35, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxKzV994', '7432759'), + (9919, 35, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxKzV994', '7433834'), + (9920, 35, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxKzV994', '7470197'), + (9921, 35, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxKzV994', '7685613'), + (9922, 35, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxKzV994', '7688194'), + (9923, 35, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxKzV994', '7688196'), + (9924, 35, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxKzV994', '7688289'), + (9925, 35, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dxKzV994', '7692763'), + (9926, 35, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxKzV994', '7697552'), + (9927, 35, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxKzV994', '7699878'), + (9928, 35, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxKzV994', '7704043'), + (9929, 35, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxKzV994', '7712467'), + (9930, 35, 2925, 'maybe', '2024-12-12 02:16:54', '2025-12-17 19:46:21', 'dxKzV994', '7713584'), + (9931, 35, 2926, 'attending', '2024-12-07 01:06:32', '2025-12-17 19:46:21', 'dxKzV994', '7713585'), + (9932, 35, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxKzV994', '7713586'), + (9933, 35, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxKzV994', '7738518'), + (9934, 35, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxKzV994', '7750636'), + (9935, 35, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxKzV994', '7796540'), + (9936, 35, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxKzV994', '7796541'), + (9937, 35, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxKzV994', '7796542'), + (9938, 35, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxKzV994', '7825913'), + (9939, 35, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxKzV994', '7826209'), + (9940, 35, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxKzV994', '7834742'), + (9941, 35, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dxKzV994', '7842108'), + (9942, 35, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxKzV994', '7842902'), + (9943, 35, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxKzV994', '7842903'), + (9944, 35, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxKzV994', '7842904'), + (9945, 35, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxKzV994', '7842905'), + (9946, 35, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxKzV994', '7855719'), + (9947, 35, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxKzV994', '7860683'), + (9948, 35, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxKzV994', '7860684'), + (9949, 35, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxKzV994', '7866095'), + (9950, 35, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxKzV994', '7869170'), + (9951, 35, 3014, 'attending', '2025-04-05 21:24:35', '2025-12-17 19:46:20', 'dxKzV994', '7869185'), + (9952, 35, 3015, 'attending', '2025-04-20 02:08:43', '2025-12-17 19:46:20', 'dxKzV994', '7869186'), + (9953, 35, 3016, 'attending', '2025-04-16 15:01:19', '2025-12-17 19:46:20', 'dxKzV994', '7869187'), + (9954, 35, 3017, 'attending', '2025-03-22 19:12:27', '2025-12-17 19:46:19', 'dxKzV994', '7869188'), + (9955, 35, 3018, 'attending', '2025-04-12 20:10:41', '2025-12-17 19:46:20', 'dxKzV994', '7869189'), + (9956, 35, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxKzV994', '7869201'), + (9957, 35, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxKzV994', '7877465'), + (9958, 35, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dxKzV994', '7878570'), + (9959, 35, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxKzV994', '7888250'), + (9960, 35, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxKzV994', '7904777'), + (9961, 35, 3095, 'not_attending', '2025-05-02 13:20:12', '2025-12-17 19:46:20', 'dxKzV994', '8342293'), + (9962, 35, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxKzV994', '8349164'), + (9963, 35, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxKzV994', '8349545'), + (9964, 35, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxKzV994', '8353584'), + (9965, 35, 3131, 'attending', '2025-05-15 03:07:33', '2025-12-17 19:46:21', 'dxKzV994', '8368028'), + (9966, 35, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxKzV994', '8368029'), + (9967, 35, 3133, 'attending', '2025-05-31 21:50:48', '2025-12-17 19:46:14', 'dxKzV994', '8368030'), + (9968, 35, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxKzV994', '8388462'), + (9969, 35, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxKzV994', '8400273'), + (9970, 35, 3154, 'attending', '2025-06-26 22:36:27', '2025-12-17 19:46:15', 'dxKzV994', '8400274'), + (9971, 35, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxKzV994', '8400275'), + (9972, 35, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dxKzV994', '8400276'), + (9973, 35, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxKzV994', '8404977'), + (9974, 35, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxKzV994', '8430783'), + (9975, 35, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxKzV994', '8430784'), + (9976, 35, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxKzV994', '8430799'), + (9977, 35, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxKzV994', '8430800'), + (9978, 35, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxKzV994', '8430801'), + (9979, 35, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxKzV994', '8438709'), + (9980, 35, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxKzV994', '8457738'), + (9981, 35, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxKzV994', '8459566'), + (9982, 35, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxKzV994', '8459567'), + (9983, 35, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxKzV994', '8461032'), + (9984, 35, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxKzV994', '8477877'), + (9985, 35, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxKzV994', '8485688'), + (9986, 35, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxKzV994', '8490587'), + (9987, 35, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxKzV994', '8493552'), + (9988, 35, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxKzV994', '8493553'), + (9989, 35, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxKzV994', '8493554'), + (9990, 35, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxKzV994', '8493555'), + (9991, 35, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxKzV994', '8493556'), + (9992, 35, 3241, 'maybe', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxKzV994', '8493557'), + (9993, 35, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxKzV994', '8493558'), + (9994, 35, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxKzV994', '8493559'), + (9995, 35, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxKzV994', '8493560'), + (9996, 35, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxKzV994', '8493561'), + (9997, 35, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxKzV994', '8493572'), + (9998, 35, 3275, 'not_attending', '2025-09-20 22:37:17', '2025-12-17 19:46:12', 'dxKzV994', '8527786'), + (9999, 35, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxKzV994', '8540725'), + (10000, 35, 3295, 'not_attending', '2025-10-30 21:52:22', '2025-12-17 19:46:14', 'dxKzV994', '8547541'), + (10001, 35, 3300, 'maybe', '2025-10-30 21:52:33', '2025-12-17 19:46:14', 'dxKzV994', '8549145'), + (10002, 35, 3302, 'attending', '2025-11-13 01:58:51', '2025-12-17 19:46:14', 'dxKzV994', '8550022'), + (10003, 35, 3304, 'attending', '2025-11-16 04:15:56', '2025-12-17 19:46:14', 'dxKzV994', '8550024'), + (10004, 35, 3305, 'attending', '2025-11-25 02:18:49', '2025-12-17 19:46:11', 'dxKzV994', '8550025'), + (10005, 35, 3306, 'attending', '2025-12-12 20:32:26', '2025-12-17 19:46:11', 'dxKzV994', '8550026'), + (10006, 35, 3307, 'not_attending', '2025-12-18 02:21:16', '2025-12-18 02:21:16', NULL, NULL), + (10007, 35, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxKzV994', '8555421'), + (10008, 35, 3346, 'attending', '2026-01-02 22:35:58', '2026-01-02 22:35:58', NULL, NULL), + (10009, 36, 3242, 'not_attending', '2025-10-25 16:35:59', '2025-12-17 19:46:14', '4EKLYLXm', '8493558'), + (10010, 36, 3243, 'attending', '2025-10-15 22:00:26', '2025-12-17 19:46:14', '4EKLYLXm', '8493559'), + (10011, 36, 3289, 'maybe', '2025-10-23 20:00:28', '2025-12-17 19:46:14', '4EKLYLXm', '8542939'), + (10012, 36, 3298, 'not_attending', '2025-10-21 21:28:55', '2025-12-17 19:46:14', '4EKLYLXm', '8548211'), + (10013, 36, 3300, 'attending', '2025-11-08 19:43:20', '2025-12-17 19:46:14', '4EKLYLXm', '8549145'), + (10014, 36, 3302, 'attending', '2025-11-12 22:45:24', '2025-12-17 19:46:14', '4EKLYLXm', '8550022'), + (10015, 36, 3304, 'not_attending', '2025-11-18 02:36:32', '2025-12-17 19:46:14', '4EKLYLXm', '8550024'), + (10016, 36, 3316, 'attending', '2025-11-05 04:37:28', '2025-12-17 19:46:14', '4EKLYLXm', '8552493'), + (10017, 36, 3321, 'attending', '2025-11-14 01:03:34', '2025-12-17 19:46:14', '4EKLYLXm', '8555418'), + (10018, 36, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4EKLYLXm', '8555421'), + (10019, 37, 2806, 'attending', '2024-09-17 17:38:00', '2025-12-17 19:46:25', 'dJxQEoqA', '7404888'), + (10020, 37, 2821, 'attending', '2024-09-19 18:38:06', '2025-12-17 19:46:26', 'dJxQEoqA', '7424275'), + (10021, 37, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJxQEoqA', '7424276'), + (10022, 37, 2825, 'attending', '2024-09-17 17:38:09', '2025-12-17 19:46:25', 'dJxQEoqA', '7432752'), + (10023, 37, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', 'dJxQEoqA', '7432753'), + (10024, 37, 2827, 'attending', '2024-09-29 01:56:56', '2025-12-17 19:46:26', 'dJxQEoqA', '7432754'), + (10025, 37, 2828, 'attending', '2024-10-13 22:29:18', '2025-12-17 19:46:26', 'dJxQEoqA', '7432755'), + (10026, 37, 2829, 'attending', '2024-10-13 22:29:20', '2025-12-17 19:46:26', 'dJxQEoqA', '7432756'), + (10027, 37, 2830, 'not_attending', '2024-10-13 22:29:22', '2025-12-17 19:46:26', 'dJxQEoqA', '7432758'), + (10028, 37, 2831, 'attending', '2024-10-13 22:29:14', '2025-12-17 19:46:26', 'dJxQEoqA', '7432759'), + (10029, 37, 2838, 'not_attending', '2024-09-27 17:51:34', '2025-12-17 19:46:25', 'dJxQEoqA', '7439182'), + (10030, 37, 2839, 'maybe', '2024-09-21 22:23:57', '2025-12-17 19:46:25', 'dJxQEoqA', '7439262'), + (10031, 37, 2841, 'maybe', '2024-09-17 17:36:04', '2025-12-17 19:46:25', 'dJxQEoqA', '7444444'), + (10032, 37, 2843, 'maybe', '2024-09-19 22:43:30', '2025-12-17 19:46:25', 'dJxQEoqA', '7450219'), + (10033, 37, 2849, 'attending', '2024-09-29 01:56:08', '2025-12-17 19:46:25', 'dJxQEoqA', '7457114'), + (10034, 37, 2850, 'maybe', '2024-09-29 01:56:48', '2025-12-17 19:46:25', 'dJxQEoqA', '7457153'), + (10035, 37, 2855, 'maybe', '2024-09-30 18:02:18', '2025-12-17 19:46:26', 'dJxQEoqA', '7469385'), + (10036, 37, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJxQEoqA', '7470197'), + (10037, 37, 2863, 'maybe', '2024-10-01 05:48:18', '2025-12-17 19:46:26', 'dJxQEoqA', '7470275'), + (10038, 37, 2868, 'maybe', '2024-10-06 00:50:41', '2025-12-17 19:46:26', 'dJxQEoqA', '7474506'), + (10039, 37, 2874, 'maybe', '2024-10-12 22:44:13', '2025-12-17 19:46:26', 'dJxQEoqA', '7482239'), + (10040, 37, 2896, 'attending', '2024-11-11 20:30:58', '2025-12-17 19:46:27', 'dJxQEoqA', '7683647'), + (10041, 37, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dJxQEoqA', '7685613'), + (10042, 37, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJxQEoqA', '7688194'), + (10043, 37, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJxQEoqA', '7688196'), + (10044, 37, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJxQEoqA', '7688289'), + (10045, 37, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dJxQEoqA', '7692763'), + (10046, 37, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dJxQEoqA', '7697552'), + (10047, 37, 2916, 'maybe', '2024-11-18 03:34:26', '2025-12-17 19:46:27', 'dJxQEoqA', '7699006'), + (10048, 37, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dJxQEoqA', '7699878'), + (10049, 37, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dJxQEoqA', '7704043'), + (10050, 37, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dJxQEoqA', '7712467'), + (10051, 37, 2926, 'attending', '2024-12-02 02:25:03', '2025-12-17 19:46:21', 'dJxQEoqA', '7713585'), + (10052, 37, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dJxQEoqA', '7713586'), + (10053, 37, 2929, 'maybe', '2024-12-08 04:19:19', '2025-12-17 19:46:21', 'dJxQEoqA', '7723465'), + (10054, 37, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'dJxQEoqA', '7738518'), + (10055, 37, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dJxQEoqA', '7750636'), + (10056, 37, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dJxQEoqA', '7796540'), + (10057, 37, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dJxQEoqA', '7796541'), + (10058, 37, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dJxQEoqA', '7796542'), + (10059, 37, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dJxQEoqA', '7825913'), + (10060, 37, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dJxQEoqA', '7826209'), + (10061, 37, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dJxQEoqA', '7834742'), + (10062, 37, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dJxQEoqA', '7842108'), + (10063, 37, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dJxQEoqA', '7842902'), + (10064, 37, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dJxQEoqA', '7842903'), + (10065, 37, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dJxQEoqA', '7842904'), + (10066, 37, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dJxQEoqA', '7842905'), + (10067, 37, 3000, 'attending', '2025-02-21 00:22:30', '2025-12-17 19:46:24', 'dJxQEoqA', '7852541'), + (10068, 37, 3001, 'attending', '2025-02-21 00:22:19', '2025-12-17 19:46:24', 'dJxQEoqA', '7854184'), + (10069, 37, 3003, 'maybe', '2025-02-20 21:10:40', '2025-12-17 19:46:24', 'dJxQEoqA', '7854589'), + (10070, 37, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dJxQEoqA', '7855719'), + (10071, 37, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dJxQEoqA', '7860683'), + (10072, 37, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dJxQEoqA', '7860684'), + (10073, 37, 3009, 'attending', '2025-03-02 07:12:43', '2025-12-17 19:46:18', 'dJxQEoqA', '7864019'), + (10074, 37, 3010, 'attending', '2025-03-07 23:18:25', '2025-12-17 19:46:18', 'dJxQEoqA', '7864879'), + (10075, 37, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dJxQEoqA', '7866095'), + (10076, 37, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dJxQEoqA', '7869170'), + (10077, 37, 3014, 'attending', '2025-04-01 15:24:31', '2025-12-17 19:46:19', 'dJxQEoqA', '7869185'), + (10078, 37, 3015, 'attending', '2025-04-04 20:22:41', '2025-12-17 19:46:20', 'dJxQEoqA', '7869186'), + (10079, 37, 3016, 'attending', '2025-04-04 20:22:40', '2025-12-17 19:46:20', 'dJxQEoqA', '7869187'), + (10080, 37, 3017, 'attending', '2025-03-25 02:08:28', '2025-12-17 19:46:19', 'dJxQEoqA', '7869188'), + (10081, 37, 3018, 'attending', '2025-03-31 02:59:26', '2025-12-17 19:46:20', 'dJxQEoqA', '7869189'), + (10082, 37, 3028, 'attending', '2025-04-07 15:22:09', '2025-12-17 19:46:20', 'dJxQEoqA', '7869199'), + (10083, 37, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dJxQEoqA', '7869201'), + (10084, 37, 3031, 'maybe', '2025-03-07 05:14:48', '2025-12-17 19:46:18', 'dJxQEoqA', '7875371'), + (10085, 37, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dJxQEoqA', '7877465'), + (10086, 37, 3036, 'maybe', '2025-03-13 20:50:50', '2025-12-17 19:46:19', 'dJxQEoqA', '7880952'), + (10087, 37, 3039, 'maybe', '2025-03-19 03:34:28', '2025-12-17 19:46:19', 'dJxQEoqA', '7881992'), + (10088, 37, 3041, 'maybe', '2025-03-14 03:08:21', '2025-12-17 19:46:19', 'dJxQEoqA', '7881995'), + (10089, 37, 3045, 'maybe', '2025-04-01 15:24:26', '2025-12-17 19:46:19', 'dJxQEoqA', '7882691'), + (10090, 37, 3051, 'maybe', '2025-03-18 22:07:16', '2025-12-17 19:46:19', 'dJxQEoqA', '7884023'), + (10091, 37, 3054, 'maybe', '2025-03-18 20:38:47', '2025-12-17 19:46:19', 'dJxQEoqA', '7884168'), + (10092, 37, 3055, 'maybe', '2025-03-26 22:36:49', '2025-12-17 19:46:19', 'dJxQEoqA', '7888118'), + (10093, 37, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dJxQEoqA', '7888250'), + (10094, 37, 3060, 'attending', '2025-03-29 00:31:54', '2025-12-17 19:46:19', 'dJxQEoqA', '7892589'), + (10095, 37, 3061, 'attending', '2025-03-27 15:18:01', '2025-12-17 19:46:19', 'dJxQEoqA', '7892590'), + (10096, 37, 3063, 'attending', '2025-03-29 00:46:23', '2025-12-17 19:46:19', 'dJxQEoqA', '7892801'), + (10097, 37, 3065, 'attending', '2025-03-29 00:37:32', '2025-12-17 19:46:19', 'dJxQEoqA', '7893676'), + (10098, 37, 3067, 'maybe', '2025-03-31 03:00:16', '2025-12-17 19:46:19', 'dJxQEoqA', '7894745'), + (10099, 37, 3070, 'attending', '2025-03-30 23:33:39', '2025-12-17 19:46:20', 'dJxQEoqA', '7894829'), + (10100, 37, 3071, 'maybe', '2025-04-01 07:09:56', '2025-12-17 19:46:19', 'dJxQEoqA', '7895429'), + (10101, 37, 3072, 'attending', '2025-04-03 16:43:28', '2025-12-17 19:46:19', 'dJxQEoqA', '7895449'), + (10102, 37, 3074, 'maybe', '2025-04-04 20:22:04', '2025-12-17 19:46:19', 'dJxQEoqA', '7897784'), + (10103, 37, 3075, 'maybe', '2025-04-09 22:14:43', '2025-12-17 19:46:20', 'dJxQEoqA', '7898896'), + (10104, 37, 3077, 'attending', '2025-04-05 22:08:41', '2025-12-17 19:46:20', 'dJxQEoqA', '7899510'), + (10105, 37, 3080, 'attending', '2025-04-09 22:14:10', '2025-12-17 19:46:20', 'dJxQEoqA', '7901441'), + (10106, 37, 3081, 'maybe', '2025-04-09 00:22:02', '2025-12-17 19:46:20', 'dJxQEoqA', '7902801'), + (10107, 37, 3084, 'attending', '2025-04-09 00:21:45', '2025-12-17 19:46:20', 'dJxQEoqA', '7903687'), + (10108, 37, 3085, 'attending', '2025-04-12 14:47:17', '2025-12-17 19:46:20', 'dJxQEoqA', '7903688'), + (10109, 37, 3087, 'attending', '2025-04-09 23:15:18', '2025-12-17 19:46:20', 'dJxQEoqA', '7903856'), + (10110, 37, 3088, 'attending', '2025-06-09 20:32:12', '2025-12-17 19:46:15', 'dJxQEoqA', '7904777'), + (10111, 37, 3089, 'maybe', '2025-04-14 17:02:45', '2025-12-17 19:46:20', 'dJxQEoqA', '7911208'), + (10112, 37, 3090, 'attending', '2025-04-16 23:02:35', '2025-12-17 19:46:20', 'dJxQEoqA', '7914315'), + (10113, 37, 3091, 'not_attending', '2025-04-17 21:52:28', '2025-12-17 19:46:20', 'dJxQEoqA', '8340289'), + (10114, 37, 3094, 'attending', '2025-04-22 22:14:26', '2025-12-17 19:46:21', 'dJxQEoqA', '8342292'), + (10115, 37, 3095, 'attending', '2025-04-28 14:35:13', '2025-12-17 19:46:20', 'dJxQEoqA', '8342293'), + (10116, 37, 3096, 'maybe', '2025-04-21 03:33:26', '2025-12-17 19:46:20', 'dJxQEoqA', '8342987'), + (10117, 37, 3097, 'maybe', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dJxQEoqA', '8342993'), + (10118, 37, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dJxQEoqA', '8349164'), + (10119, 37, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dJxQEoqA', '8349545'), + (10120, 37, 3106, 'attending', '2025-04-27 05:18:32', '2025-12-17 19:46:20', 'dJxQEoqA', '8349552'), + (10121, 37, 3107, 'maybe', '2025-04-28 14:35:05', '2025-12-17 19:46:20', 'dJxQEoqA', '8350107'), + (10122, 37, 3110, 'attending', '2025-04-29 19:54:07', '2025-12-17 19:46:20', 'dJxQEoqA', '8353484'), + (10123, 37, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dJxQEoqA', '8353584'), + (10124, 37, 3116, 'attending', '2025-05-03 18:35:21', '2025-12-17 19:46:20', 'dJxQEoqA', '8358252'), + (10125, 37, 3119, 'not_attending', '2025-05-05 20:54:14', '2025-12-17 19:46:21', 'dJxQEoqA', '8360035'), + (10126, 37, 3122, 'attending', '2025-05-11 02:35:58', '2025-12-17 19:46:21', 'dJxQEoqA', '8362978'), + (10127, 37, 3124, 'attending', '2025-05-11 02:35:46', '2025-12-17 19:46:21', 'dJxQEoqA', '8363566'), + (10128, 37, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dJxQEoqA', '8368028'), + (10129, 37, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dJxQEoqA', '8368029'), + (10130, 37, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dJxQEoqA', '8388462'), + (10131, 37, 3150, 'attending', '2025-06-05 22:37:53', '2025-12-17 19:46:15', 'dJxQEoqA', '8393174'), + (10132, 37, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dJxQEoqA', '8400273'), + (10133, 37, 3154, 'maybe', '2025-06-28 01:12:22', '2025-12-17 19:46:15', 'dJxQEoqA', '8400274'), + (10134, 37, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dJxQEoqA', '8400275'), + (10135, 37, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dJxQEoqA', '8400276'), + (10136, 37, 3160, 'maybe', '2025-06-05 22:36:51', '2025-12-17 19:46:15', 'dJxQEoqA', '8401411'), + (10137, 37, 3168, 'maybe', '2025-06-18 04:57:04', '2025-12-17 19:46:15', 'dJxQEoqA', '8404522'), + (10138, 37, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dJxQEoqA', '8404977'), + (10139, 37, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dJxQEoqA', '8430783'), + (10140, 37, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dJxQEoqA', '8430784'), + (10141, 37, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dJxQEoqA', '8430799'), + (10142, 37, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dJxQEoqA', '8430800'), + (10143, 37, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dJxQEoqA', '8430801'), + (10144, 37, 3188, 'maybe', '2025-07-13 01:22:40', '2025-12-17 19:46:17', 'dJxQEoqA', '8438709'), + (10145, 37, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dJxQEoqA', '8457738'), + (10146, 37, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dJxQEoqA', '8459566'), + (10147, 37, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dJxQEoqA', '8459567'), + (10148, 37, 3203, 'maybe', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dJxQEoqA', '8461032'), + (10149, 37, 3214, 'attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dJxQEoqA', '8477877'), + (10150, 37, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dJxQEoqA', '8485688'), + (10151, 37, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dJxQEoqA', '8490587'), + (10152, 37, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dJxQEoqA', '8493552'), + (10153, 37, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dJxQEoqA', '8493553'), + (10154, 37, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dJxQEoqA', '8493554'), + (10155, 37, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dJxQEoqA', '8493555'), + (10156, 37, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dJxQEoqA', '8493556'), + (10157, 37, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dJxQEoqA', '8493557'), + (10158, 37, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dJxQEoqA', '8493558'), + (10159, 37, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dJxQEoqA', '8493559'), + (10160, 37, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dJxQEoqA', '8493560'), + (10161, 37, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dJxQEoqA', '8493561'), + (10162, 37, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dJxQEoqA', '8493572'), + (10163, 37, 3255, 'attending', '2025-08-21 21:17:00', '2025-12-17 19:46:18', 'dJxQEoqA', '8495106'), + (10164, 37, 3259, 'maybe', '2025-09-09 20:57:35', '2025-12-17 19:46:12', 'dJxQEoqA', '8512638'), + (10165, 37, 3262, 'maybe', '2025-09-09 20:16:10', '2025-12-17 19:46:12', 'dJxQEoqA', '8512642'), + (10166, 37, 3263, 'maybe', '2025-09-09 20:57:14', '2025-12-17 19:46:12', 'dJxQEoqA', '8514576'), + (10167, 37, 3272, 'attending', '2025-09-17 22:55:01', '2025-12-17 19:46:12', 'dJxQEoqA', '8524068'), + (10168, 37, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dJxQEoqA', '8540725'), + (10169, 37, 3293, 'maybe', '2025-10-22 07:21:27', '2025-12-17 19:46:14', 'dJxQEoqA', '8543836'), + (10170, 37, 3295, 'attending', '2025-10-28 20:58:32', '2025-12-17 19:46:14', 'dJxQEoqA', '8547541'), + (10171, 37, 3300, 'attending', '2025-11-03 10:38:04', '2025-12-17 19:46:14', 'dJxQEoqA', '8549145'), + (10172, 37, 3302, 'attending', '2025-11-11 00:35:24', '2025-12-17 19:46:14', 'dJxQEoqA', '8550022'), + (10173, 37, 3304, 'maybe', '2025-11-11 00:35:25', '2025-12-17 19:46:14', 'dJxQEoqA', '8550024'), + (10174, 37, 3305, 'attending', '2025-12-02 12:01:39', '2025-12-17 19:46:11', 'dJxQEoqA', '8550025'), + (10175, 37, 3313, 'attending', '2025-10-30 03:18:25', '2025-12-17 19:46:14', 'dJxQEoqA', '8550896'), + (10176, 37, 3317, 'attending', '2025-11-06 00:20:17', '2025-12-17 19:46:14', 'dJxQEoqA', '8552943'), + (10177, 37, 3319, 'maybe', '2025-11-11 00:46:34', '2025-12-17 19:46:14', 'dJxQEoqA', '8553114'), + (10178, 37, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dJxQEoqA', '8555421'), + (10179, 37, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'dJxQEoqA', '8555522'), + (10180, 37, 3324, 'attending', '2025-11-18 00:04:04', '2025-12-17 19:46:14', 'dJxQEoqA', '8556406'), + (10181, 37, 3331, 'attending', '2025-12-02 02:42:36', '2025-12-17 19:46:11', 'dJxQEoqA', '8562166'), + (10182, 37, 3335, 'maybe', '2025-12-07 20:33:36', '2025-12-17 19:46:11', 'dJxQEoqA', '8563247'), + (10183, 37, 3336, 'maybe', '2025-12-07 03:57:45', '2025-12-17 19:46:11', 'dJxQEoqA', '8563248'), + (10184, 37, 3337, 'attending', '2025-12-07 03:57:32', '2025-12-17 19:46:11', 'dJxQEoqA', '8563315'), + (10185, 37, 3338, 'attending', '2025-12-06 22:55:49', '2025-12-17 19:46:11', 'dJxQEoqA', '8563316'), + (10186, 38, 4, 'attending', '2020-03-21 22:32:11', '2025-12-17 19:47:58', 'VmyeBRym', '2958046'), + (10187, 38, 5, 'attending', '2020-03-21 22:31:56', '2025-12-17 19:47:58', 'VmyeBRym', '2958047'), + (10188, 38, 10, 'attending', '2020-03-28 21:45:27', '2025-12-17 19:47:56', 'VmyeBRym', '2958053'), + (10189, 38, 16, 'attending', '2020-03-27 22:58:15', '2025-12-17 19:47:56', 'VmyeBRym', '2958060'), + (10190, 38, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'VmyeBRym', '2961309'), + (10191, 38, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'VmyeBRym', '2961895'), + (10192, 38, 36, 'attending', '2020-04-05 00:59:26', '2025-12-17 19:47:57', 'VmyeBRym', '2969208'), + (10193, 38, 37, 'attending', '2020-03-31 12:38:43', '2025-12-17 19:47:56', 'VmyeBRym', '2969680'), + (10194, 38, 39, 'attending', '2020-04-05 00:59:20', '2025-12-17 19:47:56', 'VmyeBRym', '2970637'), + (10195, 38, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'VmyeBRym', '2971546'), + (10196, 38, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'VmyeBRym', '2974534'), + (10197, 38, 46, 'attending', '2020-04-11 21:29:32', '2025-12-17 19:47:57', 'VmyeBRym', '2974955'), + (10198, 38, 55, 'maybe', '2020-04-06 20:58:46', '2025-12-17 19:47:57', 'VmyeBRym', '2975384'), + (10199, 38, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'VmyeBRym', '2975385'), + (10200, 38, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'VmyeBRym', '2976575'), + (10201, 38, 60, 'maybe', '2020-04-28 22:28:53', '2025-12-17 19:47:57', 'VmyeBRym', '2977129'), + (10202, 38, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'VmyeBRym', '2977343'), + (10203, 38, 71, 'attending', '2020-04-11 21:29:33', '2025-12-17 19:47:57', 'VmyeBRym', '2977526'), + (10204, 38, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'VmyeBRym', '2977812'), + (10205, 38, 73, 'attending', '2020-04-17 23:21:38', '2025-12-17 19:47:57', 'VmyeBRym', '2977931'), + (10206, 38, 74, 'attending', '2020-04-17 23:21:45', '2025-12-17 19:47:57', 'VmyeBRym', '2978244'), + (10207, 38, 75, 'attending', '2020-04-25 17:15:01', '2025-12-17 19:47:57', 'VmyeBRym', '2978245'), + (10208, 38, 76, 'attending', '2020-05-02 19:19:07', '2025-12-17 19:47:57', 'VmyeBRym', '2978246'), + (10209, 38, 77, 'attending', '2020-05-09 17:59:57', '2025-12-17 19:47:57', 'VmyeBRym', '2978247'), + (10210, 38, 78, 'attending', '2020-05-22 16:37:20', '2025-12-17 19:47:57', 'VmyeBRym', '2978249'), + (10211, 38, 79, 'attending', '2020-05-28 14:00:11', '2025-12-17 19:47:57', 'VmyeBRym', '2978250'), + (10212, 38, 80, 'attending', '2020-06-06 22:45:28', '2025-12-17 19:47:58', 'VmyeBRym', '2978251'), + (10213, 38, 81, 'attending', '2020-06-13 21:45:51', '2025-12-17 19:47:58', 'VmyeBRym', '2978252'), + (10214, 38, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'VmyeBRym', '2978433'), + (10215, 38, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'VmyeBRym', '2978438'), + (10216, 38, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'VmyeBRym', '2980871'), + (10217, 38, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'VmyeBRym', '2981388'), + (10218, 38, 88, 'maybe', '2020-04-17 23:21:51', '2025-12-17 19:47:57', 'VmyeBRym', '2982603'), + (10219, 38, 89, 'attending', '2020-05-02 19:19:09', '2025-12-17 19:47:57', 'VmyeBRym', '2982604'), + (10220, 38, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'VmyeBRym', '2986743'), + (10221, 38, 104, 'attending', '2020-04-24 14:40:41', '2025-12-17 19:47:57', 'VmyeBRym', '2991471'), + (10222, 38, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'VmyeBRym', '2993501'), + (10223, 38, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'VmyeBRym', '2994480'), + (10224, 38, 115, 'attending', '2020-05-15 17:11:58', '2025-12-17 19:47:57', 'VmyeBRym', '3001217'), + (10225, 38, 119, 'maybe', '2020-05-09 18:00:02', '2025-12-17 19:47:57', 'VmyeBRym', '3015486'), + (10226, 38, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'VmyeBRym', '3023063'), + (10227, 38, 125, 'maybe', '2020-05-22 16:37:10', '2025-12-17 19:47:57', 'VmyeBRym', '3023987'), + (10228, 38, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'VmyeBRym', '3034321'), + (10229, 38, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'VmyeBRym', '3035881'), + (10230, 38, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'VmyeBRym', '3049983'), + (10231, 38, 144, 'maybe', '2020-06-06 18:48:45', '2025-12-17 19:47:58', 'VmyeBRym', '3058679'), + (10232, 38, 145, 'attending', '2020-06-13 21:45:49', '2025-12-17 19:47:58', 'VmyeBRym', '3058680'), + (10233, 38, 147, 'not_attending', '2020-08-19 19:05:07', '2025-12-17 19:47:56', 'VmyeBRym', '3058684'), + (10234, 38, 148, 'attending', '2020-07-11 19:45:49', '2025-12-17 19:47:55', 'VmyeBRym', '3058685'), + (10235, 38, 151, 'maybe', '2020-08-29 00:45:14', '2025-12-17 19:47:56', 'VmyeBRym', '3058688'), + (10236, 38, 152, 'maybe', '2020-09-05 15:18:14', '2025-12-17 19:47:56', 'VmyeBRym', '3058689'), + (10237, 38, 158, 'attending', '2020-09-26 21:58:52', '2025-12-17 19:47:52', 'VmyeBRym', '3058695'), + (10238, 38, 159, 'maybe', '2020-10-03 21:51:29', '2025-12-17 19:47:52', 'VmyeBRym', '3058696'), + (10239, 38, 160, 'maybe', '2020-10-24 16:23:39', '2025-12-17 19:47:52', 'VmyeBRym', '3058697'), + (10240, 38, 161, 'maybe', '2020-10-09 22:42:11', '2025-12-17 19:47:52', 'VmyeBRym', '3058698'), + (10241, 38, 162, 'maybe', '2020-10-17 16:26:45', '2025-12-17 19:47:52', 'VmyeBRym', '3058699'), + (10242, 38, 165, 'attending', '2020-11-07 23:47:35', '2025-12-17 19:47:53', 'VmyeBRym', '3058702'), + (10243, 38, 167, 'maybe', '2020-11-28 17:51:19', '2025-12-17 19:47:54', 'VmyeBRym', '3058705'), + (10244, 38, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'VmyeBRym', '3058959'), + (10245, 38, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'VmyeBRym', '3067093'), + (10246, 38, 182, 'maybe', '2020-06-27 02:53:35', '2025-12-17 19:47:55', 'VmyeBRym', '3074514'), + (10247, 38, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'VmyeBRym', '3075228'), + (10248, 38, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'VmyeBRym', '3075456'), + (10249, 38, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'VmyeBRym', '3083791'), + (10250, 38, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'VmyeBRym', '3085151'), + (10251, 38, 190, 'not_attending', '2020-07-04 21:35:50', '2025-12-17 19:47:55', 'VmyeBRym', '3087258'), + (10252, 38, 191, 'attending', '2020-07-11 19:45:50', '2025-12-17 19:47:55', 'VmyeBRym', '3087259'), + (10253, 38, 192, 'maybe', '2020-07-13 03:31:51', '2025-12-17 19:47:55', 'VmyeBRym', '3087260'), + (10254, 38, 194, 'maybe', '2020-08-01 20:31:44', '2025-12-17 19:47:55', 'VmyeBRym', '3087262'), + (10255, 38, 196, 'attending', '2020-08-15 19:13:05', '2025-12-17 19:47:56', 'VmyeBRym', '3087265'), + (10256, 38, 197, 'not_attending', '2020-08-19 00:44:16', '2025-12-17 19:47:56', 'VmyeBRym', '3087266'), + (10257, 38, 198, 'attending', '2020-08-29 22:06:54', '2025-12-17 19:47:56', 'VmyeBRym', '3087267'), + (10258, 38, 199, 'attending', '2020-09-04 03:53:41', '2025-12-17 19:47:56', 'VmyeBRym', '3087268'), + (10259, 38, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'VmyeBRym', '3088653'), + (10260, 38, 203, 'attending', '2020-06-22 21:36:30', '2025-12-17 19:47:58', 'VmyeBRym', '3091624'), + (10261, 38, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'VmyeBRym', '3106813'), + (10262, 38, 221, 'attending', '2020-09-17 23:29:15', '2025-12-17 19:47:56', 'VmyeBRym', '3129265'), + (10263, 38, 223, 'attending', '2020-09-13 03:29:07', '2025-12-17 19:47:56', 'VmyeBRym', '3129980'), + (10264, 38, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'VmyeBRym', '3132817'), + (10265, 38, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'VmyeBRym', '3132820'), + (10266, 38, 245, 'attending', '2020-12-02 04:38:19', '2025-12-17 19:47:54', 'VmyeBRym', '3149476'), + (10267, 38, 258, 'attending', '2021-06-01 15:04:24', '2025-12-17 19:47:47', 'VmyeBRym', '3149489'), + (10268, 38, 260, 'attending', '2021-06-15 23:22:51', '2025-12-17 19:47:47', 'VmyeBRym', '3149491'), + (10269, 38, 262, 'attending', '2021-06-29 21:06:32', '2025-12-17 19:47:38', 'VmyeBRym', '3149493'), + (10270, 38, 268, 'attending', '2020-07-28 22:18:31', '2025-12-17 19:47:55', 'VmyeBRym', '3153060'), + (10271, 38, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'VmyeBRym', '3155321'), + (10272, 38, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'VmyeBRym', '3162006'), + (10273, 38, 275, 'attending', '2020-08-03 20:02:43', '2025-12-17 19:47:56', 'VmyeBRym', '3163405'), + (10274, 38, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'VmyeBRym', '3163442'), + (10275, 38, 281, 'attending', '2020-08-09 03:05:58', '2025-12-17 19:47:56', 'VmyeBRym', '3166945'), + (10276, 38, 293, 'not_attending', '2020-08-19 19:04:23', '2025-12-17 19:47:56', 'VmyeBRym', '3172832'), + (10277, 38, 294, 'maybe', '2020-08-26 23:13:59', '2025-12-17 19:47:56', 'VmyeBRym', '3172833'), + (10278, 38, 295, 'attending', '2020-09-02 23:56:24', '2025-12-17 19:47:56', 'VmyeBRym', '3172834'), + (10279, 38, 296, 'attending', '2020-09-12 03:33:10', '2025-12-17 19:47:56', 'VmyeBRym', '3172876'), + (10280, 38, 300, 'attending', '2020-08-12 22:42:39', '2025-12-17 19:47:56', 'VmyeBRym', '3177986'), + (10281, 38, 304, 'maybe', '2020-09-08 02:20:50', '2025-12-17 19:47:56', 'VmyeBRym', '3178916'), + (10282, 38, 305, 'not_attending', '2020-08-17 14:13:36', '2025-12-17 19:47:56', 'VmyeBRym', '3179555'), + (10283, 38, 311, 'maybe', '2020-09-19 14:05:35', '2025-12-17 19:47:56', 'VmyeBRym', '3186057'), + (10284, 38, 316, 'attending', '2020-08-26 02:06:59', '2025-12-17 19:47:56', 'VmyeBRym', '3191519'), + (10285, 38, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'VmyeBRym', '3191735'), + (10286, 38, 319, 'not_attending', '2020-08-31 22:48:18', '2025-12-17 19:47:56', 'VmyeBRym', '3194179'), + (10287, 38, 334, 'not_attending', '2020-10-05 14:30:16', '2025-12-17 19:47:52', 'VmyeBRym', '3199784'), + (10288, 38, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'VmyeBRym', '3200209'), + (10289, 38, 337, 'attending', '2020-09-10 00:32:15', '2025-12-17 19:47:56', 'VmyeBRym', '3201771'), + (10290, 38, 339, 'maybe', '2020-09-10 00:32:19', '2025-12-17 19:47:56', 'VmyeBRym', '3204469'), + (10291, 38, 340, 'attending', '2020-09-19 02:58:27', '2025-12-17 19:47:56', 'VmyeBRym', '3204470'), + (10292, 38, 341, 'maybe', '2020-09-25 19:21:39', '2025-12-17 19:47:52', 'VmyeBRym', '3204471'), + (10293, 38, 342, 'attending', '2020-10-02 23:44:53', '2025-12-17 19:47:52', 'VmyeBRym', '3204472'), + (10294, 38, 353, 'attending', '2020-09-13 21:15:06', '2025-12-17 19:47:56', 'VmyeBRym', '3210789'), + (10295, 38, 354, 'attending', '2020-09-20 23:26:21', '2025-12-17 19:47:56', 'VmyeBRym', '3212570'), + (10296, 38, 355, 'attending', '2020-09-17 00:20:57', '2025-12-17 19:47:56', 'VmyeBRym', '3212571'), + (10297, 38, 356, 'maybe', '2020-09-23 22:37:56', '2025-12-17 19:47:51', 'VmyeBRym', '3212572'), + (10298, 38, 361, 'attending', '2020-09-14 20:28:10', '2025-12-17 19:47:56', 'VmyeBRym', '3213323'), + (10299, 38, 362, 'maybe', '2020-09-25 19:23:28', '2025-12-17 19:47:52', 'VmyeBRym', '3214207'), + (10300, 38, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'VmyeBRym', '3217037'), + (10301, 38, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'VmyeBRym', '3218510'), + (10302, 38, 370, 'not_attending', '2020-10-14 23:25:59', '2025-12-17 19:47:52', 'VmyeBRym', '3221405'), + (10303, 38, 379, 'maybe', '2020-10-04 19:02:47', '2025-12-17 19:47:52', 'VmyeBRym', '3226266'), + (10304, 38, 385, 'attending', '2020-10-03 20:48:21', '2025-12-17 19:47:52', 'VmyeBRym', '3228698'), + (10305, 38, 386, 'attending', '2020-10-11 05:23:10', '2025-12-17 19:47:52', 'VmyeBRym', '3228699'), + (10306, 38, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'VmyeBRym', '3228700'), + (10307, 38, 388, 'maybe', '2020-10-24 16:24:08', '2025-12-17 19:47:52', 'VmyeBRym', '3228701'), + (10308, 38, 393, 'attending', '2021-06-24 16:46:11', '2025-12-17 19:47:38', 'VmyeBRym', '3236448'), + (10309, 38, 408, 'attending', '2021-02-19 00:54:52', '2025-12-17 19:47:50', 'VmyeBRym', '3236466'), + (10310, 38, 410, 'not_attending', '2020-11-26 23:30:30', '2025-12-17 19:47:54', 'VmyeBRym', '3236469'), + (10311, 38, 414, 'not_attending', '2020-10-17 00:02:56', '2025-12-17 19:47:52', 'VmyeBRym', '3237277'), + (10312, 38, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'VmyeBRym', '3245751'), + (10313, 38, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'VmyeBRym', '3250232'), + (10314, 38, 427, 'attending', '2020-10-14 21:56:07', '2025-12-17 19:47:53', 'VmyeBRym', '3250233'), + (10315, 38, 429, 'attending', '2020-11-27 21:25:02', '2025-12-17 19:47:54', 'VmyeBRym', '3250523'), + (10316, 38, 438, 'attending', '2020-10-31 22:47:43', '2025-12-17 19:47:53', 'VmyeBRym', '3256163'), + (10317, 38, 440, 'attending', '2020-11-07 23:29:58', '2025-12-17 19:47:53', 'VmyeBRym', '3256168'), + (10318, 38, 441, 'attending', '2020-11-15 00:38:01', '2025-12-17 19:47:54', 'VmyeBRym', '3256169'), + (10319, 38, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:52', 'VmyeBRym', '3263578'), + (10320, 38, 445, 'maybe', '2020-11-12 23:41:37', '2025-12-17 19:47:54', 'VmyeBRym', '3266138'), + (10321, 38, 456, 'maybe', '2020-11-17 00:54:22', '2025-12-17 19:47:54', 'VmyeBRym', '3276428'), + (10322, 38, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'VmyeBRym', '3281467'), + (10323, 38, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'VmyeBRym', '3281470'), + (10324, 38, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'VmyeBRym', '3281829'), + (10325, 38, 468, 'attending', '2020-11-21 23:16:05', '2025-12-17 19:47:54', 'VmyeBRym', '3285413'), + (10326, 38, 469, 'maybe', '2020-11-28 17:51:26', '2025-12-17 19:47:54', 'VmyeBRym', '3285414'), + (10327, 38, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'VmyeBRym', '3297764'), + (10328, 38, 484, 'attending', '2020-11-20 00:27:28', '2025-12-17 19:47:54', 'VmyeBRym', '3297792'), + (10329, 38, 489, 'not_attending', '2020-11-27 21:24:42', '2025-12-17 19:47:54', 'VmyeBRym', '3313022'), + (10330, 38, 493, 'attending', '2020-12-05 04:01:51', '2025-12-17 19:47:54', 'VmyeBRym', '3313856'), + (10331, 38, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'VmyeBRym', '3314909'), + (10332, 38, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'VmyeBRym', '3314964'), + (10333, 38, 502, 'maybe', '2020-12-12 19:46:53', '2025-12-17 19:47:55', 'VmyeBRym', '3323365'), + (10334, 38, 513, 'attending', '2020-12-20 00:09:25', '2025-12-17 19:47:55', 'VmyeBRym', '3329383'), + (10335, 38, 526, 'maybe', '2021-01-01 19:15:28', '2025-12-17 19:47:48', 'VmyeBRym', '3351539'), + (10336, 38, 536, 'attending', '2021-01-06 17:07:10', '2025-12-17 19:47:48', 'VmyeBRym', '3386848'), + (10337, 38, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'VmyeBRym', '3389527'), + (10338, 38, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'VmyeBRym', '3396499'), + (10339, 38, 548, 'attending', '2021-01-16 22:20:14', '2025-12-17 19:47:48', 'VmyeBRym', '3403650'), + (10340, 38, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:48', 'VmyeBRym', '3406988'), + (10341, 38, 555, 'attending', '2021-01-23 20:08:31', '2025-12-17 19:47:49', 'VmyeBRym', '3416576'), + (10342, 38, 558, 'maybe', '2021-01-23 00:57:29', '2025-12-17 19:47:49', 'VmyeBRym', '3418925'), + (10343, 38, 567, 'maybe', '2021-01-30 22:20:17', '2025-12-17 19:47:50', 'VmyeBRym', '3428895'), + (10344, 38, 568, 'maybe', '2021-01-31 00:01:20', '2025-12-17 19:47:50', 'VmyeBRym', '3430267'), + (10345, 38, 569, 'not_attending', '2021-01-27 04:55:40', '2025-12-17 19:47:49', 'VmyeBRym', '3432673'), + (10346, 38, 579, 'attending', '2021-02-07 00:22:20', '2025-12-17 19:47:50', 'VmyeBRym', '3440978'), + (10347, 38, 580, 'not_attending', '2021-01-31 21:14:28', '2025-12-17 19:47:50', 'VmyeBRym', '3444240'), + (10348, 38, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'VmyeBRym', '3468125'), + (10349, 38, 602, 'maybe', '2021-02-12 14:50:39', '2025-12-17 19:47:50', 'VmyeBRym', '3470303'), + (10350, 38, 603, 'attending', '2021-02-20 20:06:05', '2025-12-17 19:47:50', 'VmyeBRym', '3470304'), + (10351, 38, 604, 'attending', '2021-02-27 23:10:00', '2025-12-17 19:47:50', 'VmyeBRym', '3470305'), + (10352, 38, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VmyeBRym', '3470991'), + (10353, 38, 609, 'maybe', '2021-02-12 14:50:36', '2025-12-17 19:47:50', 'VmyeBRym', '3480916'), + (10354, 38, 619, 'maybe', '2021-02-20 20:06:02', '2025-12-17 19:47:50', 'VmyeBRym', '3506310'), + (10355, 38, 621, 'maybe', '2021-03-06 13:54:41', '2025-12-17 19:47:51', 'VmyeBRym', '3517815'), + (10356, 38, 622, 'not_attending', '2021-03-13 19:00:58', '2025-12-17 19:47:51', 'VmyeBRym', '3517816'), + (10357, 38, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'VmyeBRym', '3523941'), + (10358, 38, 624, 'attending', '2021-02-27 23:09:59', '2025-12-17 19:47:50', 'VmyeBRym', '3528556'), + (10359, 38, 626, 'not_attending', '2021-03-06 13:54:35', '2025-12-17 19:47:51', 'VmyeBRym', '3533298'), + (10360, 38, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VmyeBRym', '3533850'), + (10361, 38, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VmyeBRym', '3536632'), + (10362, 38, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VmyeBRym', '3536656'), + (10363, 38, 641, 'maybe', '2021-04-02 16:47:58', '2025-12-17 19:47:44', 'VmyeBRym', '3539916'), + (10364, 38, 642, 'maybe', '2021-04-10 17:22:24', '2025-12-17 19:47:44', 'VmyeBRym', '3539917'), + (10365, 38, 643, 'maybe', '2021-04-17 18:17:11', '2025-12-17 19:47:45', 'VmyeBRym', '3539918'), + (10366, 38, 644, 'maybe', '2021-04-24 16:59:31', '2025-12-17 19:47:45', 'VmyeBRym', '3539919'), + (10367, 38, 645, 'not_attending', '2021-05-08 14:38:30', '2025-12-17 19:47:46', 'VmyeBRym', '3539920'), + (10368, 38, 646, 'attending', '2021-05-15 20:33:23', '2025-12-17 19:47:46', 'VmyeBRym', '3539921'), + (10369, 38, 647, 'maybe', '2021-05-22 16:37:19', '2025-12-17 19:47:46', 'VmyeBRym', '3539922'), + (10370, 38, 648, 'maybe', '2021-05-28 15:59:46', '2025-12-17 19:47:47', 'VmyeBRym', '3539923'), + (10371, 38, 649, 'attending', '2021-03-20 22:48:00', '2025-12-17 19:47:51', 'VmyeBRym', '3539927'), + (10372, 38, 657, 'maybe', '2021-04-17 18:17:14', '2025-12-17 19:47:45', 'VmyeBRym', '3547132'), + (10373, 38, 659, 'maybe', '2021-04-10 22:01:19', '2025-12-17 19:47:44', 'VmyeBRym', '3547135'), + (10374, 38, 662, 'maybe', '2021-04-24 16:59:23', '2025-12-17 19:47:45', 'VmyeBRym', '3547138'), + (10375, 38, 663, 'not_attending', '2021-05-05 01:08:47', '2025-12-17 19:47:46', 'VmyeBRym', '3547140'), + (10376, 38, 664, 'maybe', '2021-09-11 20:42:11', '2025-12-17 19:47:43', 'VmyeBRym', '3547142'), + (10377, 38, 666, 'attending', '2021-08-14 21:33:02', '2025-12-17 19:47:42', 'VmyeBRym', '3547144'), + (10378, 38, 667, 'maybe', '2021-08-28 20:33:49', '2025-12-17 19:47:42', 'VmyeBRym', '3547145'), + (10379, 38, 669, 'attending', '2021-06-26 21:19:30', '2025-12-17 19:47:38', 'VmyeBRym', '3547147'), + (10380, 38, 671, 'maybe', '2021-07-17 05:27:57', '2025-12-17 19:47:39', 'VmyeBRym', '3547149'), + (10381, 38, 672, 'maybe', '2021-05-22 16:37:23', '2025-12-17 19:47:46', 'VmyeBRym', '3547150'), + (10382, 38, 674, 'maybe', '2021-08-07 14:44:14', '2025-12-17 19:47:41', 'VmyeBRym', '3547152'), + (10383, 38, 675, 'not_attending', '2021-07-31 04:03:41', '2025-12-17 19:47:40', 'VmyeBRym', '3547153'), + (10384, 38, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VmyeBRym', '3582734'), + (10385, 38, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'VmyeBRym', '3583262'), + (10386, 38, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VmyeBRym', '3619523'), + (10387, 38, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'VmyeBRym', '3661369'), + (10388, 38, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VmyeBRym', '3674262'), + (10389, 38, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VmyeBRym', '3677402'), + (10390, 38, 756, 'attending', '2021-04-13 03:18:10', '2025-12-17 19:47:46', 'VmyeBRym', '3704795'), + (10391, 38, 774, 'not_attending', '2021-04-22 01:09:53', '2025-12-17 19:47:45', 'VmyeBRym', '3730212'), + (10392, 38, 783, 'attending', '2021-05-03 21:30:41', '2025-12-17 19:47:46', 'VmyeBRym', '3767471'), + (10393, 38, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'VmyeBRym', '3793156'), + (10394, 38, 822, 'not_attending', '2021-06-03 01:52:19', '2025-12-17 19:47:47', 'VmyeBRym', '3969986'), + (10395, 38, 823, 'not_attending', '2021-06-17 04:11:28', '2025-12-17 19:47:48', 'VmyeBRym', '3974109'), + (10396, 38, 827, 'not_attending', '2021-06-01 18:15:18', '2025-12-17 19:47:47', 'VmyeBRym', '3975311'), + (10397, 38, 828, 'attending', '2021-06-12 22:19:48', '2025-12-17 19:47:47', 'VmyeBRym', '3975312'), + (10398, 38, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VmyeBRym', '3994992'), + (10399, 38, 844, 'attending', '2021-06-23 22:56:27', '2025-12-17 19:47:38', 'VmyeBRym', '4014338'), + (10400, 38, 867, 'attending', '2021-06-26 21:19:32', '2025-12-17 19:47:38', 'VmyeBRym', '4021848'), + (10401, 38, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmyeBRym', '4136744'), + (10402, 38, 870, 'not_attending', '2021-07-02 23:04:20', '2025-12-17 19:47:38', 'VmyeBRym', '4136937'), + (10403, 38, 871, 'attending', '2021-07-10 16:55:28', '2025-12-17 19:47:39', 'VmyeBRym', '4136938'), + (10404, 38, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VmyeBRym', '4136947'), + (10405, 38, 879, 'maybe', '2021-06-28 21:02:28', '2025-12-17 19:47:38', 'VmyeBRym', '4147806'), + (10406, 38, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'VmyeBRym', '4210314'), + (10407, 38, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VmyeBRym', '4225444'), + (10408, 38, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VmyeBRym', '4239259'), + (10409, 38, 900, 'maybe', '2021-07-24 21:34:59', '2025-12-17 19:47:40', 'VmyeBRym', '4240316'), + (10410, 38, 901, 'maybe', '2021-07-31 04:02:55', '2025-12-17 19:47:40', 'VmyeBRym', '4240317'), + (10411, 38, 902, 'maybe', '2021-08-07 14:44:17', '2025-12-17 19:47:41', 'VmyeBRym', '4240318'), + (10412, 38, 903, 'attending', '2021-08-14 21:32:54', '2025-12-17 19:47:42', 'VmyeBRym', '4240320'), + (10413, 38, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VmyeBRym', '4250163'), + (10414, 38, 906, 'attending', '2021-07-11 16:56:08', '2025-12-17 19:47:39', 'VmyeBRym', '4253431'), + (10415, 38, 919, 'maybe', '2021-07-17 05:27:53', '2025-12-17 19:47:39', 'VmyeBRym', '4275957'), + (10416, 38, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'VmyeBRym', '4277819'), + (10417, 38, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'VmyeBRym', '4301723'), + (10418, 38, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VmyeBRym', '4302093'), + (10419, 38, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VmyeBRym', '4304151'), + (10420, 38, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'VmyeBRym', '4345519'), + (10421, 38, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VmyeBRym', '4356801'), + (10422, 38, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'VmyeBRym', '4358025'), + (10423, 38, 973, 'maybe', '2021-08-21 21:45:08', '2025-12-17 19:47:42', 'VmyeBRym', '4366186'), + (10424, 38, 974, 'maybe', '2021-08-28 04:11:23', '2025-12-17 19:47:42', 'VmyeBRym', '4366187'), + (10425, 38, 983, 'attending', '2021-08-20 19:44:22', '2025-12-17 19:47:42', 'VmyeBRym', '4390051'), + (10426, 38, 988, 'maybe', '2021-08-27 21:08:06', '2025-12-17 19:47:42', 'VmyeBRym', '4402823'), + (10427, 38, 990, 'maybe', '2021-09-04 06:36:37', '2025-12-17 19:47:43', 'VmyeBRym', '4420735'), + (10428, 38, 991, 'attending', '2021-09-11 20:42:06', '2025-12-17 19:47:43', 'VmyeBRym', '4420738'), + (10429, 38, 992, 'not_attending', '2021-09-10 05:26:03', '2025-12-17 19:47:33', 'VmyeBRym', '4420739'), + (10430, 38, 993, 'attending', '2021-09-25 17:54:49', '2025-12-17 19:47:34', 'VmyeBRym', '4420741'), + (10431, 38, 994, 'maybe', '2021-10-02 21:58:08', '2025-12-17 19:47:34', 'VmyeBRym', '4420742'), + (10432, 38, 995, 'maybe', '2021-10-09 16:15:32', '2025-12-17 19:47:34', 'VmyeBRym', '4420744'), + (10433, 38, 996, 'attending', '2021-10-16 19:48:25', '2025-12-17 19:47:35', 'VmyeBRym', '4420747'), + (10434, 38, 997, 'not_attending', '2021-10-17 02:31:09', '2025-12-17 19:47:35', 'VmyeBRym', '4420748'), + (10435, 38, 998, 'attending', '2021-10-30 22:29:32', '2025-12-17 19:47:36', 'VmyeBRym', '4420749'), + (10436, 38, 1001, 'attending', '2021-08-30 00:59:31', '2025-12-17 19:47:43', 'VmyeBRym', '4424687'), + (10437, 38, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VmyeBRym', '4461883'), + (10438, 38, 1038, 'not_attending', '2021-09-25 21:10:50', '2025-12-17 19:47:34', 'VmyeBRym', '4496603'), + (10439, 38, 1041, 'not_attending', '2021-11-28 21:03:03', '2025-12-17 19:47:37', 'VmyeBRym', '4496606'), + (10440, 38, 1043, 'not_attending', '2021-10-17 02:31:04', '2025-12-17 19:47:35', 'VmyeBRym', '4496608'), + (10441, 38, 1044, 'attending', '2021-11-06 19:41:34', '2025-12-17 19:47:36', 'VmyeBRym', '4496609'), + (10442, 38, 1045, 'maybe', '2021-10-30 04:53:17', '2025-12-17 19:47:36', 'VmyeBRym', '4496610'), + (10443, 38, 1046, 'maybe', '2021-10-16 19:48:23', '2025-12-17 19:47:35', 'VmyeBRym', '4496611'), + (10444, 38, 1047, 'maybe', '2021-10-09 16:15:29', '2025-12-17 19:47:34', 'VmyeBRym', '4496612'), + (10445, 38, 1049, 'attending', '2022-01-22 19:35:27', '2025-12-17 19:47:32', 'VmyeBRym', '4496614'), + (10446, 38, 1050, 'attending', '2022-01-29 20:51:38', '2025-12-17 19:47:32', 'VmyeBRym', '4496615'), + (10447, 38, 1051, 'maybe', '2022-02-05 07:04:25', '2025-12-17 19:47:32', 'VmyeBRym', '4496616'), + (10448, 38, 1053, 'maybe', '2022-02-19 18:02:50', '2025-12-17 19:47:32', 'VmyeBRym', '4496618'), + (10449, 38, 1054, 'attending', '2022-03-18 16:48:31', '2025-12-17 19:47:25', 'VmyeBRym', '4496619'), + (10450, 38, 1055, 'maybe', '2021-12-18 19:54:50', '2025-12-17 19:47:31', 'VmyeBRym', '4496621'), + (10451, 38, 1056, 'maybe', '2022-01-08 22:09:02', '2025-12-17 19:47:31', 'VmyeBRym', '4496622'), + (10452, 38, 1057, 'not_attending', '2021-11-17 21:11:08', '2025-12-17 19:47:37', 'VmyeBRym', '4496624'), + (10453, 38, 1058, 'maybe', '2022-02-26 17:37:05', '2025-12-17 19:47:33', 'VmyeBRym', '4496625'), + (10454, 38, 1059, 'attending', '2022-03-12 19:46:31', '2025-12-17 19:47:33', 'VmyeBRym', '4496626'), + (10455, 38, 1060, 'maybe', '2022-03-26 05:30:25', '2025-12-17 19:47:25', 'VmyeBRym', '4496627'), + (10456, 38, 1061, 'maybe', '2022-02-12 17:51:59', '2025-12-17 19:47:32', 'VmyeBRym', '4496628'), + (10457, 38, 1062, 'not_attending', '2022-03-01 17:56:20', '2025-12-17 19:47:33', 'VmyeBRym', '4496629'), + (10458, 38, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'VmyeBRym', '4508342'), + (10459, 38, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:34', 'VmyeBRym', '4568602'), + (10460, 38, 1087, 'not_attending', '2021-10-16 19:48:34', '2025-12-17 19:47:35', 'VmyeBRym', '4572153'), + (10461, 38, 1089, 'maybe', '2021-10-18 19:23:06', '2025-12-17 19:47:35', 'VmyeBRym', '4574712'), + (10462, 38, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VmyeBRym', '4585962'), + (10463, 38, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VmyeBRym', '4596356'), + (10464, 38, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VmyeBRym', '4598860'), + (10465, 38, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'VmyeBRym', '4598861'), + (10466, 38, 1099, 'attending', '2021-11-06 19:41:35', '2025-12-17 19:47:36', 'VmyeBRym', '4602797'), + (10467, 38, 1103, 'maybe', '2021-11-13 21:17:50', '2025-12-17 19:47:36', 'VmyeBRym', '4616350'), + (10468, 38, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'VmyeBRym', '4637896'), + (10469, 38, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'VmyeBRym', '4642994'), + (10470, 38, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'VmyeBRym', '4642995'), + (10471, 38, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'VmyeBRym', '4642996'), + (10472, 38, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'VmyeBRym', '4642997'), + (10473, 38, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'VmyeBRym', '4645687'), + (10474, 38, 1127, 'attending', '2021-12-12 05:22:06', '2025-12-17 19:47:38', 'VmyeBRym', '4645698'), + (10475, 38, 1128, 'attending', '2021-11-20 23:43:40', '2025-12-17 19:47:37', 'VmyeBRym', '4645704'), + (10476, 38, 1129, 'attending', '2021-11-27 21:58:50', '2025-12-17 19:47:37', 'VmyeBRym', '4645705'), + (10477, 38, 1130, 'maybe', '2021-12-04 19:58:40', '2025-12-17 19:47:37', 'VmyeBRym', '4658824'), + (10478, 38, 1131, 'attending', '2021-12-18 23:27:03', '2025-12-17 19:47:31', 'VmyeBRym', '4658825'), + (10479, 38, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VmyeBRym', '4668385'), + (10480, 38, 1138, 'attending', '2021-11-30 00:43:59', '2025-12-17 19:47:37', 'VmyeBRym', '4675407'), + (10481, 38, 1145, 'not_attending', '2021-12-09 23:25:24', '2025-12-17 19:47:38', 'VmyeBRym', '4691157'), + (10482, 38, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VmyeBRym', '4694407'), + (10483, 38, 1162, 'maybe', '2022-01-07 23:29:41', '2025-12-17 19:47:31', 'VmyeBRym', '4718771'), + (10484, 38, 1164, 'attending', '2022-01-03 16:06:06', '2025-12-17 19:47:31', 'VmyeBRym', '4724208'), + (10485, 38, 1165, 'attending', '2022-01-03 16:06:07', '2025-12-17 19:47:31', 'VmyeBRym', '4724210'), + (10486, 38, 1167, 'maybe', '2022-01-07 00:41:46', '2025-12-17 19:47:31', 'VmyeBRym', '4731015'), + (10487, 38, 1173, 'attending', '2022-01-08 22:08:59', '2025-12-17 19:47:31', 'VmyeBRym', '4736495'), + (10488, 38, 1174, 'attending', '2022-01-15 19:09:26', '2025-12-17 19:47:31', 'VmyeBRym', '4736496'), + (10489, 38, 1175, 'attending', '2022-01-22 19:35:28', '2025-12-17 19:47:32', 'VmyeBRym', '4736497'), + (10490, 38, 1176, 'attending', '2022-02-04 02:04:11', '2025-12-17 19:47:32', 'VmyeBRym', '4736498'), + (10491, 38, 1177, 'attending', '2022-02-12 17:52:02', '2025-12-17 19:47:32', 'VmyeBRym', '4736499'), + (10492, 38, 1178, 'attending', '2022-01-29 20:51:34', '2025-12-17 19:47:32', 'VmyeBRym', '4736500'), + (10493, 38, 1179, 'attending', '2022-02-19 18:02:55', '2025-12-17 19:47:32', 'VmyeBRym', '4736501'), + (10494, 38, 1180, 'attending', '2022-02-26 23:45:46', '2025-12-17 19:47:33', 'VmyeBRym', '4736502'), + (10495, 38, 1181, 'not_attending', '2022-03-01 17:56:23', '2025-12-17 19:47:33', 'VmyeBRym', '4736503'), + (10496, 38, 1182, 'attending', '2022-03-12 19:46:33', '2025-12-17 19:47:33', 'VmyeBRym', '4736504'), + (10497, 38, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VmyeBRym', '4746789'), + (10498, 38, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'VmyeBRym', '4753929'), + (10499, 38, 1206, 'attending', '2022-04-10 19:26:41', '2025-12-17 19:47:27', 'VmyeBRym', '4773578'), + (10500, 38, 1207, 'maybe', '2022-05-08 20:57:27', '2025-12-17 19:47:28', 'VmyeBRym', '4773579'), + (10501, 38, 1215, 'attending', '2022-02-26 00:38:53', '2025-12-17 19:47:33', 'VmyeBRym', '4780763'), + (10502, 38, 1220, 'maybe', '2022-01-29 01:49:51', '2025-12-17 19:47:32', 'VmyeBRym', '4790257'), + (10503, 38, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VmyeBRym', '5038850'), + (10504, 38, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VmyeBRym', '5045826'), + (10505, 38, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VmyeBRym', '5132533'), + (10506, 38, 1272, 'attending', '2022-03-18 16:48:28', '2025-12-17 19:47:25', 'VmyeBRym', '5186582'), + (10507, 38, 1273, 'attending', '2022-03-26 22:10:15', '2025-12-17 19:47:25', 'VmyeBRym', '5186583'), + (10508, 38, 1274, 'attending', '2022-04-02 13:04:41', '2025-12-17 19:47:26', 'VmyeBRym', '5186585'), + (10509, 38, 1275, 'maybe', '2022-04-02 13:04:45', '2025-12-17 19:47:26', 'VmyeBRym', '5186587'), + (10510, 38, 1276, 'maybe', '2022-03-27 20:51:56', '2025-12-17 19:47:25', 'VmyeBRym', '5186820'), + (10511, 38, 1281, 'maybe', '2022-04-09 17:30:26', '2025-12-17 19:47:27', 'VmyeBRym', '5190437'), + (10512, 38, 1282, 'attending', '2022-03-18 00:26:12', '2025-12-17 19:47:25', 'VmyeBRym', '5191241'), + (10513, 38, 1284, 'attending', '2022-04-16 21:28:53', '2025-12-17 19:47:27', 'VmyeBRym', '5195095'), + (10514, 38, 1288, 'maybe', '2022-03-29 21:20:19', '2025-12-17 19:47:25', 'VmyeBRym', '5199460'), + (10515, 38, 1293, 'attending', '2022-04-10 19:26:39', '2025-12-17 19:47:27', 'VmyeBRym', '5214641'), + (10516, 38, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'VmyeBRym', '5215989'), + (10517, 38, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'VmyeBRym', '5223686'), + (10518, 38, 1309, 'attending', '2022-04-06 03:43:12', '2025-12-17 19:47:26', 'VmyeBRym', '5227432'), + (10519, 38, 1310, 'attending', '2022-04-07 22:17:33', '2025-12-17 19:47:27', 'VmyeBRym', '5231071'), + (10520, 38, 1312, 'attending', '2022-04-12 03:05:47', '2025-12-17 19:47:27', 'VmyeBRym', '5231459'), + (10521, 38, 1313, 'attending', '2022-04-12 23:20:26', '2025-12-17 19:47:27', 'VmyeBRym', '5231461'), + (10522, 38, 1336, 'attending', '2022-04-19 23:20:53', '2025-12-17 19:47:27', 'VmyeBRym', '5244915'), + (10523, 38, 1345, 'maybe', '2022-04-23 15:21:09', '2025-12-17 19:47:27', 'VmyeBRym', '5247466'), + (10524, 38, 1346, 'attending', '2022-04-23 15:21:12', '2025-12-17 19:47:27', 'VmyeBRym', '5247467'), + (10525, 38, 1362, 'attending', '2022-04-25 19:24:53', '2025-12-17 19:47:28', 'VmyeBRym', '5260800'), + (10526, 38, 1374, 'attending', '2022-05-07 21:01:12', '2025-12-17 19:47:28', 'VmyeBRym', '5269930'), + (10527, 38, 1378, 'attending', '2022-05-13 18:23:10', '2025-12-17 19:47:28', 'VmyeBRym', '5271448'), + (10528, 38, 1379, 'attending', '2022-05-20 22:50:08', '2025-12-17 19:47:29', 'VmyeBRym', '5271449'), + (10529, 38, 1380, 'not_attending', '2022-05-28 02:08:27', '2025-12-17 19:47:30', 'VmyeBRym', '5271450'), + (10530, 38, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'VmyeBRym', '5276469'), + (10531, 38, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'VmyeBRym', '5278159'), + (10532, 38, 1395, 'maybe', '2022-05-07 21:01:14', '2025-12-17 19:47:28', 'VmyeBRym', '5281102'), + (10533, 38, 1397, 'attending', '2022-05-20 22:50:07', '2025-12-17 19:47:29', 'VmyeBRym', '5281104'), + (10534, 38, 1407, 'attending', '2022-06-03 23:50:38', '2025-12-17 19:47:30', 'VmyeBRym', '5363695'), + (10535, 38, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'VmyeBRym', '5365960'), + (10536, 38, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'VmyeBRym', '5368973'), + (10537, 38, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'VmyeBRym', '5378247'), + (10538, 38, 1431, 'attending', '2022-06-09 15:22:41', '2025-12-17 19:47:30', 'VmyeBRym', '5389605'), + (10539, 38, 1442, 'attending', '2022-06-18 15:37:50', '2025-12-17 19:47:17', 'VmyeBRym', '5397265'), + (10540, 38, 1444, 'maybe', '2022-06-09 15:22:43', '2025-12-17 19:47:30', 'VmyeBRym', '5397614'), + (10541, 38, 1445, 'maybe', '2022-06-18 15:37:53', '2025-12-17 19:47:17', 'VmyeBRym', '5397615'), + (10542, 38, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'VmyeBRym', '5403967'), + (10543, 38, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'VmyeBRym', '5404786'), + (10544, 38, 1460, 'maybe', '2022-06-13 22:21:34', '2025-12-17 19:47:31', 'VmyeBRym', '5404817'), + (10545, 38, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'VmyeBRym', '5405203'), + (10546, 38, 1477, 'attending', '2022-06-22 00:00:00', '2025-12-17 19:47:17', 'VmyeBRym', '5408766'), + (10547, 38, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'VmyeBRym', '5411699'), + (10548, 38, 1482, 'attending', '2022-06-23 18:37:04', '2025-12-17 19:47:19', 'VmyeBRym', '5412550'), + (10549, 38, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'VmyeBRym', '5415046'), + (10550, 38, 1493, 'maybe', '2022-06-25 20:33:34', '2025-12-17 19:47:19', 'VmyeBRym', '5420218'), + (10551, 38, 1494, 'not_attending', '2022-06-25 15:19:20', '2025-12-17 19:47:19', 'VmyeBRym', '5421626'), + (10552, 38, 1495, 'attending', '2022-07-05 23:49:26', '2025-12-17 19:47:19', 'VmyeBRym', '5422086'), + (10553, 38, 1498, 'not_attending', '2022-07-02 04:24:56', '2025-12-17 19:47:19', 'VmyeBRym', '5422406'), + (10554, 38, 1499, 'not_attending', '2022-07-02 04:25:06', '2025-12-17 19:47:19', 'VmyeBRym', '5422407'), + (10555, 38, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'VmyeBRym', '5424565'), + (10556, 38, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'VmyeBRym', '5426882'), + (10557, 38, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'VmyeBRym', '5427083'), + (10558, 38, 1509, 'attending', '2022-07-05 18:53:23', '2025-12-17 19:47:19', 'VmyeBRym', '5434019'), + (10559, 38, 1511, 'attending', '2022-07-09 20:10:19', '2025-12-17 19:47:19', 'VmyeBRym', '5437733'), + (10560, 38, 1513, 'attending', '2022-07-14 15:00:00', '2025-12-17 19:47:19', 'VmyeBRym', '5441125'), + (10561, 38, 1514, 'attending', '2022-07-21 20:09:25', '2025-12-17 19:47:20', 'VmyeBRym', '5441126'), + (10562, 38, 1515, 'attending', '2022-08-05 00:40:00', '2025-12-17 19:47:21', 'VmyeBRym', '5441128'), + (10563, 38, 1516, 'attending', '2022-08-20 03:41:06', '2025-12-17 19:47:23', 'VmyeBRym', '5441129'), + (10564, 38, 1517, 'attending', '2022-08-25 15:13:55', '2025-12-17 19:47:23', 'VmyeBRym', '5441130'), + (10565, 38, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'VmyeBRym', '5441131'), + (10566, 38, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'VmyeBRym', '5441132'), + (10567, 38, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'VmyeBRym', '5446643'), + (10568, 38, 1532, 'maybe', '2022-07-23 19:13:24', '2025-12-17 19:47:20', 'VmyeBRym', '5448757'), + (10569, 38, 1536, 'attending', '2022-07-21 22:47:55', '2025-12-17 19:47:20', 'VmyeBRym', '5449068'), + (10570, 38, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'VmyeBRym', '5453325'), + (10571, 38, 1541, 'attending', '2022-07-25 18:12:15', '2025-12-17 19:47:20', 'VmyeBRym', '5453542'), + (10572, 38, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'VmyeBRym', '5454516'), + (10573, 38, 1544, 'not_attending', '2022-09-11 14:11:20', '2025-12-17 19:47:11', 'VmyeBRym', '5454517'), + (10574, 38, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'VmyeBRym', '5454605'), + (10575, 38, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'VmyeBRym', '5455037'), + (10576, 38, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'VmyeBRym', '5461278'), + (10577, 38, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'VmyeBRym', '5469480'), + (10578, 38, 1565, 'attending', '2022-08-07 17:30:58', '2025-12-17 19:47:21', 'VmyeBRym', '5471073'), + (10579, 38, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'VmyeBRym', '5474663'), + (10580, 38, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'VmyeBRym', '5482022'), + (10581, 38, 1572, 'not_attending', '2022-08-01 19:50:19', '2025-12-17 19:47:22', 'VmyeBRym', '5482078'), + (10582, 38, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'VmyeBRym', '5482793'), + (10583, 38, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'VmyeBRym', '5488912'), + (10584, 38, 1586, 'attending', '2022-08-18 23:08:41', '2025-12-17 19:47:23', 'VmyeBRym', '5492019'), + (10585, 38, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'VmyeBRym', '5492192'), + (10586, 38, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'VmyeBRym', '5493139'), + (10587, 38, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'VmyeBRym', '5493200'), + (10588, 38, 1593, 'attending', '2022-08-09 03:56:19', '2025-12-17 19:47:22', 'VmyeBRym', '5494043'), + (10589, 38, 1603, 'attending', '2022-08-19 22:07:50', '2025-12-17 19:47:23', 'VmyeBRym', '5497895'), + (10590, 38, 1604, 'maybe', '2022-08-17 22:24:50', '2025-12-17 19:47:22', 'VmyeBRym', '5501504'), + (10591, 38, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'VmyeBRym', '5502188'), + (10592, 38, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'VmyeBRym', '5505059'), + (10593, 38, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'VmyeBRym', '5509055'), + (10594, 38, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'VmyeBRym', '5512862'), + (10595, 38, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'VmyeBRym', '5513985'), + (10596, 38, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'VmyeBRym', '5519981'), + (10597, 38, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'VmyeBRym', '5522550'), + (10598, 38, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'VmyeBRym', '5534683'), + (10599, 38, 1634, 'attending', '2022-08-29 00:11:24', '2025-12-17 19:47:23', 'VmyeBRym', '5536950'), + (10600, 38, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'VmyeBRym', '5537735'), + (10601, 38, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'VmyeBRym', '5540859'), + (10602, 38, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'VmyeBRym', '5546619'), + (10603, 38, 1652, 'maybe', '2022-09-10 18:57:50', '2025-12-17 19:47:24', 'VmyeBRym', '5552671'), + (10604, 38, 1658, 'attending', '2022-09-06 15:31:39', '2025-12-17 19:47:24', 'VmyeBRym', '5555245'), + (10605, 38, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'VmyeBRym', '5557747'), + (10606, 38, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'VmyeBRym', '5560255'), + (10607, 38, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'VmyeBRym', '5562906'), + (10608, 38, 1667, 'maybe', '2022-09-24 16:08:26', '2025-12-17 19:47:11', 'VmyeBRym', '5563221'), + (10609, 38, 1668, 'attending', '2022-10-01 20:44:13', '2025-12-17 19:47:12', 'VmyeBRym', '5563222'), + (10610, 38, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'VmyeBRym', '5600604'), + (10611, 38, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'VmyeBRym', '5605544'), + (10612, 38, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'VmyeBRym', '5606737'), + (10613, 38, 1707, 'not_attending', '2022-10-14 04:02:17', '2025-12-17 19:47:12', 'VmyeBRym', '5613104'), + (10614, 38, 1719, 'attending', '2022-10-05 16:08:10', '2025-12-17 19:47:12', 'VmyeBRym', '5630958'), + (10615, 38, 1720, 'attending', '2022-10-14 19:01:02', '2025-12-17 19:47:12', 'VmyeBRym', '5630959'), + (10616, 38, 1721, 'attending', '2022-10-21 15:17:49', '2025-12-17 19:47:13', 'VmyeBRym', '5630960'), + (10617, 38, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'VmyeBRym', '5630961'), + (10618, 38, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'VmyeBRym', '5630962'), + (10619, 38, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'VmyeBRym', '5630966'), + (10620, 38, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'VmyeBRym', '5630967'), + (10621, 38, 1726, 'maybe', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'VmyeBRym', '5630968'), + (10622, 38, 1727, 'attending', '2022-12-03 14:25:21', '2025-12-17 19:47:16', 'VmyeBRym', '5630969'), + (10623, 38, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'VmyeBRym', '5635406'), + (10624, 38, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'VmyeBRym', '5638765'), + (10625, 38, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'VmyeBRym', '5640097'), + (10626, 38, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'VmyeBRym', '5640843'), + (10627, 38, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'VmyeBRym', '5641521'), + (10628, 38, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'VmyeBRym', '5642818'), + (10629, 38, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'VmyeBRym', '5652395'), + (10630, 38, 1759, 'maybe', '2022-10-21 15:17:52', '2025-12-17 19:47:13', 'VmyeBRym', '5669097'), + (10631, 38, 1760, 'attending', '2022-10-21 22:18:06', '2025-12-17 19:47:13', 'VmyeBRym', '5669463'), + (10632, 38, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'VmyeBRym', '5670445'), + (10633, 38, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'VmyeBRym', '5671637'), + (10634, 38, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'VmyeBRym', '5672329'), + (10635, 38, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'VmyeBRym', '5674057'), + (10636, 38, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'VmyeBRym', '5674060'), + (10637, 38, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'VmyeBRym', '5677461'), + (10638, 38, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'VmyeBRym', '5698046'), + (10639, 38, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'VmyeBRym', '5699760'), + (10640, 38, 1790, 'attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'VmyeBRym', '5727424'), + (10641, 38, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'VmyeBRym', '5741601'), + (10642, 38, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'VmyeBRym', '5763458'), + (10643, 38, 1804, 'maybe', '2023-01-28 19:38:17', '2025-12-17 19:47:06', 'VmyeBRym', '5764674'), + (10644, 38, 1805, 'attending', '2023-02-04 22:55:27', '2025-12-17 19:47:06', 'VmyeBRym', '5764675'), + (10645, 38, 1809, 'attending', '2023-04-15 18:38:09', '2025-12-17 19:46:59', 'VmyeBRym', '5764679'), + (10646, 38, 1813, 'maybe', '2023-04-29 15:44:55', '2025-12-17 19:47:01', 'VmyeBRym', '5764683'), + (10647, 38, 1815, 'not_attending', '2023-02-17 02:06:59', '2025-12-17 19:47:07', 'VmyeBRym', '5764685'), + (10648, 38, 1821, 'maybe', '2023-03-18 15:54:33', '2025-12-17 19:46:56', 'VmyeBRym', '5764691'), + (10649, 38, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'VmyeBRym', '5774172'), + (10650, 38, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'VmyeBRym', '5818247'), + (10651, 38, 1834, 'not_attending', '2022-12-10 05:42:41', '2025-12-17 19:47:17', 'VmyeBRym', '5819470'), + (10652, 38, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'VmyeBRym', '5819471'), + (10653, 38, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'VmyeBRym', '5827739'), + (10654, 38, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'VmyeBRym', '5844306'), + (10655, 38, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'VmyeBRym', '5850159'), + (10656, 38, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'VmyeBRym', '5858999'), + (10657, 38, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'VmyeBRym', '5871984'), + (10658, 38, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'VmyeBRym', '5876354'), + (10659, 38, 1864, 'attending', '2023-01-21 00:40:01', '2025-12-17 19:47:05', 'VmyeBRym', '5879675'), + (10660, 38, 1865, 'attending', '2023-01-28 03:48:31', '2025-12-17 19:47:06', 'VmyeBRym', '5879676'), + (10661, 38, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'VmyeBRym', '5880939'), + (10662, 38, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'VmyeBRym', '5880940'), + (10663, 38, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'VmyeBRym', '5880942'), + (10664, 38, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'VmyeBRym', '5880943'), + (10665, 38, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'VmyeBRym', '5887890'), + (10666, 38, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'VmyeBRym', '5888598'), + (10667, 38, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'VmyeBRym', '5893260'), + (10668, 38, 1881, 'attending', '2023-02-08 18:45:27', '2025-12-17 19:47:07', 'VmyeBRym', '5894218'), + (10669, 38, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'VmyeBRym', '5899826'), + (10670, 38, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'VmyeBRym', '5900199'), + (10671, 38, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:07', 'VmyeBRym', '5900200'), + (10672, 38, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'VmyeBRym', '5900202'), + (10673, 38, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'VmyeBRym', '5900203'), + (10674, 38, 1893, 'attending', '2023-01-31 23:50:22', '2025-12-17 19:47:06', 'VmyeBRym', '5901055'), + (10675, 38, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'VmyeBRym', '5901108'), + (10676, 38, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'VmyeBRym', '5901126'), + (10677, 38, 1897, 'attending', '2023-02-08 18:44:24', '2025-12-17 19:47:07', 'VmyeBRym', '5901128'), + (10678, 38, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'VmyeBRym', '5909655'), + (10679, 38, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'VmyeBRym', '5910522'), + (10680, 38, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'VmyeBRym', '5910526'), + (10681, 38, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'VmyeBRym', '5910528'), + (10682, 38, 1922, 'not_attending', '2023-02-13 05:52:16', '2025-12-17 19:47:07', 'VmyeBRym', '5916219'), + (10683, 38, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'VmyeBRym', '5936234'), + (10684, 38, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'VmyeBRym', '5958351'), + (10685, 38, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'VmyeBRym', '5959751'), + (10686, 38, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'VmyeBRym', '5959755'), + (10687, 38, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'VmyeBRym', '5960055'), + (10688, 38, 1941, 'attending', '2023-02-25 03:28:06', '2025-12-17 19:47:09', 'VmyeBRym', '5961684'), + (10689, 38, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'VmyeBRym', '5962132'), + (10690, 38, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'VmyeBRym', '5962133'), + (10691, 38, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'VmyeBRym', '5962134'), + (10692, 38, 1947, 'attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'VmyeBRym', '5962233'), + (10693, 38, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'VmyeBRym', '5962317'), + (10694, 38, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'VmyeBRym', '5962318'), + (10695, 38, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'VmyeBRym', '5965933'), + (10696, 38, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'VmyeBRym', '5967014'), + (10697, 38, 1956, 'attending', '2023-03-06 04:33:13', '2025-12-17 19:47:09', 'VmyeBRym', '5972763'), + (10698, 38, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'VmyeBRym', '5972815'), + (10699, 38, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'VmyeBRym', '5974016'), + (10700, 38, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'VmyeBRym', '5981515'), + (10701, 38, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'VmyeBRym', '5993516'), + (10702, 38, 1972, 'maybe', '2023-03-19 23:25:19', '2025-12-17 19:46:56', 'VmyeBRym', '5993776'), + (10703, 38, 1973, 'attending', '2023-03-17 21:33:17', '2025-12-17 19:46:56', 'VmyeBRym', '5993777'), + (10704, 38, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'VmyeBRym', '5998939'), + (10705, 38, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'VmyeBRym', '6028191'), + (10706, 38, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'VmyeBRym', '6040066'), + (10707, 38, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'VmyeBRym', '6042717'), + (10708, 38, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'VmyeBRym', '6044838'), + (10709, 38, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'VmyeBRym', '6044839'), + (10710, 38, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'VmyeBRym', '6045684'), + (10711, 38, 1994, 'maybe', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'VmyeBRym', '6050104'), + (10712, 38, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'VmyeBRym', '6053195'), + (10713, 38, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'VmyeBRym', '6053198'), + (10714, 38, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'VmyeBRym', '6056085'), + (10715, 38, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'VmyeBRym', '6056916'), + (10716, 38, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'VmyeBRym', '6059290'), + (10717, 38, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'VmyeBRym', '6060328'), + (10718, 38, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'VmyeBRym', '6061037'), + (10719, 38, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'VmyeBRym', '6061039'), + (10720, 38, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'VmyeBRym', '6067245'), + (10721, 38, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'VmyeBRym', '6068094'), + (10722, 38, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'VmyeBRym', '6068252'), + (10723, 38, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'VmyeBRym', '6068253'), + (10724, 38, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'VmyeBRym', '6068254'), + (10725, 38, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'VmyeBRym', '6068280'), + (10726, 38, 2032, 'not_attending', '2023-05-28 03:49:18', '2025-12-17 19:47:04', 'VmyeBRym', '6068281'), + (10727, 38, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'VmyeBRym', '6069093'), + (10728, 38, 2039, 'not_attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'VmyeBRym', '6072398'), + (10729, 38, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'VmyeBRym', '6072528'), + (10730, 38, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', 'VmyeBRym', '6073678'), + (10731, 38, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'VmyeBRym', '6079840'), + (10732, 38, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'VmyeBRym', '6083398'), + (10733, 38, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'VmyeBRym', '6093504'), + (10734, 38, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'VmyeBRym', '6097414'), + (10735, 38, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'VmyeBRym', '6097442'), + (10736, 38, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'VmyeBRym', '6097684'), + (10737, 38, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'VmyeBRym', '6098762'), + (10738, 38, 2064, 'maybe', '2023-06-24 05:10:28', '2025-12-17 19:46:50', 'VmyeBRym', '6099988'), + (10739, 38, 2065, 'attending', '2023-06-17 15:55:04', '2025-12-17 19:46:49', 'VmyeBRym', '6101169'), + (10740, 38, 2066, 'maybe', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'VmyeBRym', '6101361'), + (10741, 38, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'VmyeBRym', '6101362'), + (10742, 38, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'VmyeBRym', '6107314'), + (10743, 38, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'VmyeBRym', '6120034'), + (10744, 38, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'VmyeBRym', '6136733'), + (10745, 38, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'VmyeBRym', '6137989'), + (10746, 38, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'VmyeBRym', '6150864'), + (10747, 38, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'VmyeBRym', '6155491'), + (10748, 38, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'VmyeBRym', '6164417'), + (10749, 38, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'VmyeBRym', '6166388'), + (10750, 38, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'VmyeBRym', '6176439'), + (10751, 38, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'VmyeBRym', '6182410'), + (10752, 38, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'VmyeBRym', '6185812'), + (10753, 38, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'VmyeBRym', '6187651'), + (10754, 38, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'VmyeBRym', '6187963'), + (10755, 38, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'VmyeBRym', '6187964'), + (10756, 38, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'VmyeBRym', '6187966'), + (10757, 38, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'VmyeBRym', '6187967'), + (10758, 38, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'VmyeBRym', '6187969'), + (10759, 38, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'VmyeBRym', '6334878'), + (10760, 38, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:52', 'VmyeBRym', '6337236'), + (10761, 38, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'VmyeBRym', '6337970'), + (10762, 38, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'VmyeBRym', '6338308'), + (10763, 38, 2159, 'attending', '2023-07-20 19:00:45', '2025-12-17 19:46:53', 'VmyeBRym', '6338355'), + (10764, 38, 2160, 'not_attending', '2023-07-17 18:46:56', '2025-12-17 19:46:54', 'VmyeBRym', '6338358'), + (10765, 38, 2161, 'maybe', '2023-07-15 19:11:38', '2025-12-17 19:46:52', 'VmyeBRym', '6340748'), + (10766, 38, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'VmyeBRym', '6340845'), + (10767, 38, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'VmyeBRym', '6341710'), + (10768, 38, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'VmyeBRym', '6342044'), + (10769, 38, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'VmyeBRym', '6342298'), + (10770, 38, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'VmyeBRym', '6343294'), + (10771, 38, 2175, 'not_attending', '2023-07-22 18:59:02', '2025-12-17 19:46:53', 'VmyeBRym', '6346982'), + (10772, 38, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'VmyeBRym', '6347034'), + (10773, 38, 2177, 'attending', '2023-08-12 12:44:53', '2025-12-17 19:46:55', 'VmyeBRym', '6347053'), + (10774, 38, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'VmyeBRym', '6347056'), + (10775, 38, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'VmyeBRym', '6353830'), + (10776, 38, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'VmyeBRym', '6353831'), + (10777, 38, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'VmyeBRym', '6357867'), + (10778, 38, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'VmyeBRym', '6358652'), + (10779, 38, 2204, 'attending', '2023-08-14 22:13:46', '2025-12-17 19:46:55', 'VmyeBRym', '6361542'), + (10780, 38, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'VmyeBRym', '6361709'), + (10781, 38, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'VmyeBRym', '6361710'), + (10782, 38, 2210, 'maybe', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'VmyeBRym', '6361711'), + (10783, 38, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'VmyeBRym', '6361712'), + (10784, 38, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'VmyeBRym', '6361713'), + (10785, 38, 2216, 'attending', '2023-08-19 01:46:32', '2025-12-17 19:46:55', 'VmyeBRym', '6364123'), + (10786, 38, 2227, 'attending', '2023-08-19 02:04:23', '2025-12-17 19:46:55', 'VmyeBRym', '6370581'), + (10787, 38, 2228, 'not_attending', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'VmyeBRym', '6372777'), + (10788, 38, 2232, 'attending', '2023-08-26 15:40:49', '2025-12-17 19:46:55', 'VmyeBRym', '6374818'), + (10789, 38, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'VmyeBRym', '6382573'), + (10790, 38, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'VmyeBRym', '6383149'), + (10791, 38, 2239, 'attending', '2023-09-02 20:14:04', '2025-12-17 19:46:56', 'VmyeBRym', '6387592'), + (10792, 38, 2240, 'attending', '2023-09-09 03:33:00', '2025-12-17 19:46:56', 'VmyeBRym', '6388603'), + (10793, 38, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'VmyeBRym', '6388604'), + (10794, 38, 2242, 'maybe', '2023-09-23 20:33:27', '2025-12-17 19:46:45', 'VmyeBRym', '6388606'), + (10795, 38, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'VmyeBRym', '6394629'), + (10796, 38, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'VmyeBRym', '6394631'), + (10797, 38, 2253, 'not_attending', '2023-09-25 02:49:10', '2025-12-17 19:46:45', 'VmyeBRym', '6401811'), + (10798, 38, 2255, 'maybe', '2023-09-13 22:37:09', '2025-12-17 19:46:45', 'VmyeBRym', '6403562'), + (10799, 38, 2265, 'maybe', '2023-10-01 19:57:14', '2025-12-17 19:46:45', 'VmyeBRym', '6439625'), + (10800, 38, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'VmyeBRym', '6440863'), + (10801, 38, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'VmyeBRym', '6445440'), + (10802, 38, 2273, 'attending', '2023-10-05 23:17:11', '2025-12-17 19:46:45', 'VmyeBRym', '6448282'), + (10803, 38, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'VmyeBRym', '6453951'), + (10804, 38, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'VmyeBRym', '6461696'), + (10805, 38, 2288, 'attending', '2023-10-11 05:12:35', '2025-12-17 19:46:46', 'VmyeBRym', '6462068'), + (10806, 38, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'VmyeBRym', '6462129'), + (10807, 38, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'VmyeBRym', '6463218'), + (10808, 38, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'VmyeBRym', '6472181'), + (10809, 38, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', 'VmyeBRym', '6474276'), + (10810, 38, 2303, 'maybe', '2023-10-28 06:33:40', '2025-12-17 19:46:47', 'VmyeBRym', '6482691'), + (10811, 38, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'VmyeBRym', '6482693'), + (10812, 38, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'VmyeBRym', '6484200'), + (10813, 38, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'VmyeBRym', '6484680'), + (10814, 38, 2310, 'maybe', '2023-11-11 19:47:57', '2025-12-17 19:46:47', 'VmyeBRym', '6487709'), + (10815, 38, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'VmyeBRym', '6507741'), + (10816, 38, 2322, 'attending', '2023-11-18 19:11:27', '2025-12-17 19:46:48', 'VmyeBRym', '6514659'), + (10817, 38, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:48', 'VmyeBRym', '6514660'), + (10818, 38, 2324, 'attending', '2023-12-09 07:15:57', '2025-12-17 19:46:49', 'VmyeBRym', '6514662'), + (10819, 38, 2325, 'attending', '2023-12-16 20:26:08', '2025-12-17 19:46:36', 'VmyeBRym', '6514663'), + (10820, 38, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'VmyeBRym', '6519103'), + (10821, 38, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'VmyeBRym', '6535681'), + (10822, 38, 2339, 'attending', '2023-11-09 20:10:29', '2025-12-17 19:46:47', 'VmyeBRym', '6539128'), + (10823, 38, 2346, 'not_attending', '2023-11-18 22:27:54', '2025-12-17 19:46:48', 'VmyeBRym', '6582418'), + (10824, 38, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'VmyeBRym', '6584747'), + (10825, 38, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'VmyeBRym', '6587097'), + (10826, 38, 2359, 'attending', '2023-11-30 17:20:50', '2025-12-17 19:46:48', 'VmyeBRym', '6596617'), + (10827, 38, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'VmyeBRym', '6609022'), + (10828, 38, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'VmyeBRym', '6632757'), + (10829, 38, 2377, 'attending', '2023-12-29 21:52:24', '2025-12-17 19:46:37', 'VmyeBRym', '6643448'), + (10830, 38, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'VmyeBRym', '6644187'), + (10831, 38, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'VmyeBRym', '6648951'), + (10832, 38, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'VmyeBRym', '6648952'), + (10833, 38, 2388, 'maybe', '2024-01-05 16:22:39', '2025-12-17 19:46:37', 'VmyeBRym', '6649244'), + (10834, 38, 2395, 'maybe', '2024-01-17 01:12:56', '2025-12-17 19:46:38', 'VmyeBRym', '6654471'), + (10835, 38, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'VmyeBRym', '6655401'), + (10836, 38, 2399, 'attending', '2024-01-14 00:32:06', '2025-12-17 19:46:37', 'VmyeBRym', '6657583'), + (10837, 38, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'VmyeBRym', '6661585'), + (10838, 38, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'VmyeBRym', '6661588'), + (10839, 38, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'VmyeBRym', '6661589'), + (10840, 38, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'VmyeBRym', '6699906'), + (10841, 38, 2408, 'attending', '2024-01-27 06:11:03', '2025-12-17 19:46:40', 'VmyeBRym', '6699907'), + (10842, 38, 2409, 'attending', '2024-02-03 04:45:32', '2025-12-17 19:46:41', 'VmyeBRym', '6699909'), + (10843, 38, 2410, 'attending', '2024-02-08 00:34:41', '2025-12-17 19:46:41', 'VmyeBRym', '6699911'), + (10844, 38, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'VmyeBRym', '6699913'), + (10845, 38, 2413, 'attending', '2024-02-18 20:52:44', '2025-12-17 19:46:42', 'VmyeBRym', '6700719'), + (10846, 38, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'VmyeBRym', '6701109'), + (10847, 38, 2417, 'attending', '2024-01-22 02:50:56', '2025-12-17 19:46:40', 'VmyeBRym', '6701905'), + (10848, 38, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'VmyeBRym', '6705219'), + (10849, 38, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'VmyeBRym', '6710153'), + (10850, 38, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'VmyeBRym', '6711552'), + (10851, 38, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'VmyeBRym', '6711553'), + (10852, 38, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'VmyeBRym', '6722688'), + (10853, 38, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'VmyeBRym', '6730620'), + (10854, 38, 2440, 'attending', '2024-01-31 07:48:05', '2025-12-17 19:46:41', 'VmyeBRym', '6730642'), + (10855, 38, 2450, 'not_attending', '2024-02-11 18:06:32', '2025-12-17 19:46:41', 'VmyeBRym', '6738807'), + (10856, 38, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'VmyeBRym', '6740364'), + (10857, 38, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'VmyeBRym', '6743829'), + (10858, 38, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'VmyeBRym', '7030380'), + (10859, 38, 2471, 'attending', '2024-02-18 19:55:16', '2025-12-17 19:46:42', 'VmyeBRym', '7032425'), + (10860, 38, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'VmyeBRym', '7033677'), + (10861, 38, 2474, 'attending', '2024-02-24 16:11:30', '2025-12-17 19:46:43', 'VmyeBRym', '7035415'), + (10862, 38, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'VmyeBRym', '7044715'), + (10863, 38, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'VmyeBRym', '7050318'), + (10864, 38, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'VmyeBRym', '7050319'), + (10865, 38, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'VmyeBRym', '7050322'), + (10866, 38, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'VmyeBRym', '7057804'), + (10867, 38, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'VmyeBRym', '7059866'), + (10868, 38, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'VmyeBRym', '7072824'), + (10869, 38, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'VmyeBRym', '7074348'), + (10870, 38, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'VmyeBRym', '7074364'), + (10871, 38, 2528, 'attending', '2024-08-09 01:40:55', '2025-12-17 19:46:31', 'VmyeBRym', '7074368'), + (10872, 38, 2532, 'not_attending', '2024-09-05 21:46:46', '2025-12-17 19:46:32', 'VmyeBRym', '7074383'), + (10873, 38, 2535, 'maybe', '2024-03-16 20:06:32', '2025-12-17 19:46:32', 'VmyeBRym', '7076879'), + (10874, 38, 2536, 'attending', '2024-03-17 02:14:34', '2025-12-17 19:46:33', 'VmyeBRym', '7077689'), + (10875, 38, 2537, 'not_attending', '2024-03-19 04:43:20', '2025-12-17 19:46:33', 'VmyeBRym', '7085484'), + (10876, 38, 2538, 'maybe', '2024-03-29 02:48:21', '2025-12-17 19:46:33', 'VmyeBRym', '7085485'), + (10877, 38, 2539, 'not_attending', '2024-03-19 04:43:26', '2025-12-17 19:46:33', 'VmyeBRym', '7085486'), + (10878, 38, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'VmyeBRym', '7089267'), + (10879, 38, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'VmyeBRym', '7098747'), + (10880, 38, 2553, 'maybe', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'VmyeBRym', '7113468'), + (10881, 38, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'VmyeBRym', '7114856'), + (10882, 38, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'VmyeBRym', '7114951'), + (10883, 38, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'VmyeBRym', '7114955'), + (10884, 38, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'VmyeBRym', '7114956'), + (10885, 38, 2558, 'maybe', '2024-04-30 16:28:04', '2025-12-17 19:46:35', 'VmyeBRym', '7114957'), + (10886, 38, 2563, 'attending', '2024-04-03 23:00:50', '2025-12-17 19:46:33', 'VmyeBRym', '7134734'), + (10887, 38, 2566, 'attending', '2024-04-03 23:00:54', '2025-12-17 19:46:34', 'VmyeBRym', '7140664'), + (10888, 38, 2568, 'not_attending', '2024-04-05 18:50:48', '2025-12-17 19:46:33', 'VmyeBRym', '7153615'), + (10889, 38, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'VmyeBRym', '7159484'), + (10890, 38, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'VmyeBRym', '7178446'), + (10891, 38, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'VmyeBRym', '7220467'), + (10892, 38, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'VmyeBRym', '7240354'), + (10893, 38, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'VmyeBRym', '7251633'), + (10894, 38, 2626, 'attending', '2024-05-17 14:08:45', '2025-12-17 19:46:35', 'VmyeBRym', '7264723'), + (10895, 38, 2627, 'attending', '2024-05-25 16:31:03', '2025-12-17 19:46:35', 'VmyeBRym', '7264724'), + (10896, 38, 2628, 'attending', '2024-05-31 00:56:41', '2025-12-17 19:46:36', 'VmyeBRym', '7264725'), + (10897, 38, 2629, 'attending', '2024-06-08 04:11:17', '2025-12-17 19:46:28', 'VmyeBRym', '7264726'), + (10898, 38, 2632, 'attending', '2024-05-13 22:59:59', '2025-12-17 19:46:35', 'VmyeBRym', '7269123'), + (10899, 38, 2647, 'attending', '2024-06-09 19:36:51', '2025-12-17 19:46:28', 'VmyeBRym', '7282057'), + (10900, 38, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'VmyeBRym', '7302674'), + (10901, 38, 2678, 'attending', '2024-06-15 06:20:39', '2025-12-17 19:46:28', 'VmyeBRym', '7319489'), + (10902, 38, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'VmyeBRym', '7324073'), + (10903, 38, 2689, 'maybe', '2024-06-20 14:33:22', '2025-12-17 19:46:29', 'VmyeBRym', '7324074'), + (10904, 38, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'VmyeBRym', '7324075'), + (10905, 38, 2691, 'attending', '2024-07-20 18:04:27', '2025-12-17 19:46:30', 'VmyeBRym', '7324076'), + (10906, 38, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'VmyeBRym', '7324078'), + (10907, 38, 2694, 'attending', '2024-08-10 01:34:42', '2025-12-17 19:46:31', 'VmyeBRym', '7324079'), + (10908, 38, 2695, 'attending', '2024-08-13 17:45:59', '2025-12-17 19:46:31', 'VmyeBRym', '7324080'), + (10909, 38, 2696, 'not_attending', '2024-08-13 17:46:01', '2025-12-17 19:46:32', 'VmyeBRym', '7324081'), + (10910, 38, 2697, 'not_attending', '2024-08-31 16:59:23', '2025-12-17 19:46:32', 'VmyeBRym', '7324082'), + (10911, 38, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'VmyeBRym', '7331457'), + (10912, 38, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'VmyeBRym', '7363643'), + (10913, 38, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'VmyeBRym', '7368606'), + (10914, 38, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'VmyeBRym', '7397462'), + (10915, 38, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'VmyeBRym', '7424275'), + (10916, 38, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'VmyeBRym', '7432751'), + (10917, 38, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'VmyeBRym', '7432752'), + (10918, 38, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'VmyeBRym', '7432753'), + (10919, 38, 2827, 'maybe', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'VmyeBRym', '7432754'), + (10920, 38, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'VmyeBRym', '7432755'), + (10921, 38, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'VmyeBRym', '7432756'), + (10922, 38, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'VmyeBRym', '7432758'), + (10923, 38, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'VmyeBRym', '7432759'), + (10924, 38, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'VmyeBRym', '7433834'), + (10925, 38, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'VmyeBRym', '7470197'), + (10926, 38, 2870, 'attending', '2024-10-05 21:26:46', '2025-12-17 19:46:26', 'VmyeBRym', '7475068'), + (10927, 38, 2874, 'attending', '2024-10-07 21:43:31', '2025-12-17 19:46:26', 'VmyeBRym', '7482239'), + (10928, 38, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'VmyeBRym', '7685613'), + (10929, 38, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'VmyeBRym', '7688194'), + (10930, 38, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'VmyeBRym', '7688196'), + (10931, 38, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'VmyeBRym', '7688289'), + (10932, 38, 2908, 'not_attending', '2024-11-11 01:14:39', '2025-12-17 19:46:27', 'VmyeBRym', '7689420'), + (10933, 38, 2910, 'not_attending', '2024-11-11 01:13:52', '2025-12-17 19:46:27', 'VmyeBRym', '7689867'), + (10934, 38, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'VmyeBRym', '7692763'), + (10935, 38, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'VmyeBRym', '7697552'), + (10936, 38, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'VmyeBRym', '7699878'), + (10937, 38, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'VmyeBRym', '7704043'), + (10938, 38, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'VmyeBRym', '7712467'), + (10939, 38, 2925, 'attending', '2024-12-12 05:09:32', '2025-12-17 19:46:21', 'VmyeBRym', '7713584'), + (10940, 38, 2926, 'maybe', '2024-12-04 15:03:42', '2025-12-17 19:46:21', 'VmyeBRym', '7713585'), + (10941, 38, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'VmyeBRym', '7713586'), + (10942, 38, 2942, 'attending', '2025-02-22 22:39:00', '2025-12-17 19:46:24', 'VmyeBRym', '7725960'), + (10943, 38, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'VmyeBRym', '7738518'), + (10944, 38, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'VmyeBRym', '7750632'), + (10945, 38, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'VmyeBRym', '7750636'), + (10946, 38, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'VmyeBRym', '7796540'), + (10947, 38, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'VmyeBRym', '7796541'), + (10948, 38, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'VmyeBRym', '7796542'), + (10949, 38, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'VmyeBRym', '7825913'), + (10950, 38, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'VmyeBRym', '7826209'), + (10951, 38, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'VmyeBRym', '7834742'), + (10952, 38, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'VmyeBRym', '7842108'), + (10953, 38, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'VmyeBRym', '7842902'), + (10954, 38, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'VmyeBRym', '7842903'), + (10955, 38, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'VmyeBRym', '7842904'), + (10956, 38, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'VmyeBRym', '7842905'), + (10957, 38, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'VmyeBRym', '7842909'), + (10958, 38, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'VmyeBRym', '7855719'), + (10959, 38, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'VmyeBRym', '7860683'), + (10960, 38, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'VmyeBRym', '7860684'), + (10961, 38, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'VmyeBRym', '7866095'), + (10962, 38, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'VmyeBRym', '7869170'), + (10963, 38, 3014, 'attending', '2025-04-05 18:42:47', '2025-12-17 19:46:19', 'VmyeBRym', '7869185'), + (10964, 38, 3015, 'attending', '2025-04-26 21:35:04', '2025-12-17 19:46:20', 'VmyeBRym', '7869186'), + (10965, 38, 3016, 'attending', '2025-04-17 01:43:32', '2025-12-17 19:46:20', 'VmyeBRym', '7869187'), + (10966, 38, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'VmyeBRym', '7869188'), + (10967, 38, 3018, 'not_attending', '2025-04-12 18:20:33', '2025-12-17 19:46:20', 'VmyeBRym', '7869189'), + (10968, 38, 3019, 'attending', '2025-04-05 18:42:43', '2025-12-17 19:46:20', 'VmyeBRym', '7869190'), + (10969, 38, 3021, 'maybe', '2025-04-12 18:20:35', '2025-12-17 19:46:20', 'VmyeBRym', '7869192'), + (10970, 38, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'VmyeBRym', '7869194'), + (10971, 38, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'VmyeBRym', '7869195'), + (10972, 38, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'VmyeBRym', '7869201'), + (10973, 38, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'VmyeBRym', '7877465'), + (10974, 38, 3046, 'not_attending', '2025-04-12 18:20:31', '2025-12-17 19:46:20', 'VmyeBRym', '7882692'), + (10975, 38, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'VmyeBRym', '7888250'), + (10976, 38, 3088, 'maybe', '2025-06-10 14:17:58', '2025-12-17 19:46:15', 'VmyeBRym', '7904777'), + (10977, 38, 3095, 'attending', '2025-05-03 21:59:48', '2025-12-17 19:46:20', 'VmyeBRym', '8342293'), + (10978, 38, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'VmyeBRym', '8349164'), + (10979, 38, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'VmyeBRym', '8349545'), + (10980, 38, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'VmyeBRym', '8353584'), + (10981, 38, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'VmyeBRym', '8368028'), + (10982, 38, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'VmyeBRym', '8368029'), + (10983, 38, 3133, 'attending', '2025-05-29 15:01:42', '2025-12-17 19:46:14', 'VmyeBRym', '8368030'), + (10984, 38, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'VmyeBRym', '8388462'), + (10985, 38, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:14', 'VmyeBRym', '8400273'), + (10986, 38, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'VmyeBRym', '8400275'), + (10987, 38, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'VmyeBRym', '8400276'), + (10988, 38, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'VmyeBRym', '8404977'), + (10989, 38, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'VmyeBRym', '8430783'), + (10990, 38, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'VmyeBRym', '8430784'), + (10991, 38, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'VmyeBRym', '8430799'), + (10992, 38, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'VmyeBRym', '8430800'), + (10993, 38, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'VmyeBRym', '8430801'), + (10994, 38, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'VmyeBRym', '8438709'), + (10995, 38, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'VmyeBRym', '8457738'), + (10996, 38, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'VmyeBRym', '8459566'), + (10997, 38, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'VmyeBRym', '8459567'), + (10998, 38, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'VmyeBRym', '8459568'), + (10999, 38, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'VmyeBRym', '8461032'), + (11000, 38, 3212, 'attending', '2025-08-05 00:07:23', '2025-12-17 19:46:17', 'VmyeBRym', '8477787'), + (11001, 38, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'VmyeBRym', '8477877'), + (11002, 38, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'VmyeBRym', '8485688'), + (11003, 38, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'VmyeBRym', '8490587'), + (11004, 38, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'VmyeBRym', '8493552'), + (11005, 38, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'VmyeBRym', '8493553'), + (11006, 38, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'VmyeBRym', '8493554'), + (11007, 38, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'VmyeBRym', '8493555'), + (11008, 38, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'VmyeBRym', '8493556'), + (11009, 38, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'VmyeBRym', '8493557'), + (11010, 38, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'VmyeBRym', '8493558'), + (11011, 38, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'VmyeBRym', '8493559'), + (11012, 38, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'VmyeBRym', '8493560'), + (11013, 38, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'VmyeBRym', '8493561'), + (11014, 38, 3246, 'not_attending', '2025-09-08 15:05:05', '2025-12-17 19:46:13', 'VmyeBRym', '8493562'), + (11015, 38, 3247, 'not_attending', '2025-09-08 15:05:25', '2025-12-17 19:46:14', 'VmyeBRym', '8493563'), + (11016, 38, 3248, 'not_attending', '2025-09-08 15:05:17', '2025-12-17 19:46:13', 'VmyeBRym', '8493564'), + (11017, 38, 3249, 'not_attending', '2025-09-08 15:05:20', '2025-12-17 19:46:13', 'VmyeBRym', '8493565'), + (11018, 38, 3250, 'not_attending', '2025-09-08 15:05:30', '2025-12-17 19:46:14', 'VmyeBRym', '8493566'), + (11019, 38, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'VmyeBRym', '8493572'), + (11020, 38, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'VmyeBRym', '8540725'), + (11021, 38, 3300, 'not_attending', '2025-11-07 18:21:44', '2025-12-17 19:46:14', 'VmyeBRym', '8549145'), + (11022, 38, 3302, 'maybe', '2025-11-15 23:08:55', '2025-12-17 19:46:14', 'VmyeBRym', '8550022'), + (11023, 38, 3304, 'maybe', '2025-11-23 00:06:28', '2025-12-17 19:46:14', 'VmyeBRym', '8550024'), + (11024, 38, 3305, 'attending', '2025-12-02 22:25:17', '2025-12-17 19:46:11', 'VmyeBRym', '8550025'), + (11025, 38, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'VmyeBRym', '8555421'), + (11026, 38, 3346, 'maybe', '2025-12-30 20:56:07', '2025-12-30 20:56:07', NULL, NULL), + (11027, 39, 247, 'attending', '2020-12-29 23:52:25', '2025-12-17 19:47:48', 'kdKMreZA', '3149478'), + (11028, 39, 518, 'not_attending', '2021-01-07 00:52:33', '2025-12-17 19:47:48', 'kdKMreZA', '3337138'), + (11029, 39, 521, 'not_attending', '2021-01-01 17:56:03', '2025-12-17 19:47:48', 'kdKMreZA', '3337454'), + (11030, 39, 526, 'attending', '2020-12-30 05:08:34', '2025-12-17 19:47:48', 'kdKMreZA', '3351539'), + (11031, 39, 535, 'attending', '2021-01-09 17:36:46', '2025-12-17 19:47:48', 'kdKMreZA', '3384729'), + (11032, 39, 536, 'attending', '2021-01-08 20:35:40', '2025-12-17 19:47:48', 'kdKMreZA', '3386848'), + (11033, 39, 540, 'not_attending', '2021-01-09 17:35:56', '2025-12-17 19:47:48', 'kdKMreZA', '3389527'), + (11034, 39, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdKMreZA', '3396499'), + (11035, 39, 548, 'attending', '2021-01-13 18:10:20', '2025-12-17 19:47:48', 'kdKMreZA', '3403650'), + (11036, 39, 549, 'not_attending', '2021-01-18 23:46:49', '2025-12-17 19:47:49', 'kdKMreZA', '3406988'), + (11037, 39, 551, 'attending', '2021-01-16 15:41:08', '2025-12-17 19:47:49', 'kdKMreZA', '3407219'), + (11038, 39, 555, 'not_attending', '2021-01-22 04:28:14', '2025-12-17 19:47:49', 'kdKMreZA', '3416576'), + (11039, 39, 558, 'not_attending', '2021-01-22 20:44:51', '2025-12-17 19:47:49', 'kdKMreZA', '3418925'), + (11040, 39, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'kdKMreZA', '3426074'), + (11041, 39, 568, 'attending', '2021-01-29 22:21:23', '2025-12-17 19:47:50', 'kdKMreZA', '3430267'), + (11042, 39, 569, 'attending', '2021-01-26 14:36:29', '2025-12-17 19:47:49', 'kdKMreZA', '3432673'), + (11043, 39, 570, 'attending', '2021-02-05 03:25:36', '2025-12-17 19:47:50', 'kdKMreZA', '3435538'), + (11044, 39, 571, 'attending', '2021-02-11 23:07:52', '2025-12-17 19:47:50', 'kdKMreZA', '3435539'), + (11045, 39, 576, 'attending', '2021-01-30 02:57:39', '2025-12-17 19:47:50', 'kdKMreZA', '3438748'), + (11046, 39, 577, 'attending', '2021-01-28 05:31:02', '2025-12-17 19:47:49', 'kdKMreZA', '3439167'), + (11047, 39, 578, 'attending', '2021-02-03 14:35:03', '2025-12-17 19:47:50', 'kdKMreZA', '3440043'), + (11048, 39, 579, 'attending', '2021-02-06 19:19:57', '2025-12-17 19:47:50', 'kdKMreZA', '3440978'), + (11049, 39, 580, 'attending', '2021-01-31 05:19:07', '2025-12-17 19:47:50', 'kdKMreZA', '3444240'), + (11050, 39, 581, 'not_attending', '2021-02-01 21:22:58', '2025-12-17 19:47:50', 'kdKMreZA', '3445029'), + (11051, 39, 582, 'not_attending', '2021-02-01 14:35:10', '2025-12-17 19:47:50', 'kdKMreZA', '3445769'), + (11052, 39, 591, 'attending', '2021-02-05 03:26:24', '2025-12-17 19:47:50', 'kdKMreZA', '3465880'), + (11053, 39, 598, 'attending', '2021-02-09 20:26:37', '2025-12-17 19:47:50', 'kdKMreZA', '3468003'), + (11054, 39, 599, 'not_attending', '2021-02-16 22:37:29', '2025-12-17 19:47:50', 'kdKMreZA', '3468117'), + (11055, 39, 600, 'attending', '2021-02-22 00:29:49', '2025-12-17 19:47:50', 'kdKMreZA', '3468125'), + (11056, 39, 602, 'attending', '2021-02-07 17:02:11', '2025-12-17 19:47:50', 'kdKMreZA', '3470303'), + (11057, 39, 603, 'attending', '2021-02-20 19:07:24', '2025-12-17 19:47:50', 'kdKMreZA', '3470304'), + (11058, 39, 604, 'not_attending', '2021-02-24 18:31:12', '2025-12-17 19:47:50', 'kdKMreZA', '3470305'), + (11059, 39, 605, 'attending', '2021-02-14 23:38:20', '2025-12-17 19:47:50', 'kdKMreZA', '3470991'), + (11060, 39, 607, 'attending', '2021-02-19 21:11:22', '2025-12-17 19:47:50', 'kdKMreZA', '3471882'), + (11061, 39, 612, 'not_attending', '2021-02-18 00:29:34', '2025-12-17 19:47:50', 'kdKMreZA', '3490040'), + (11062, 39, 616, 'attending', '2021-02-21 00:46:02', '2025-12-17 19:47:50', 'kdKMreZA', '3493478'), + (11063, 39, 618, 'attending', '2021-02-20 20:11:16', '2025-12-17 19:47:50', 'kdKMreZA', '3503991'), + (11064, 39, 621, 'attending', '2021-03-05 01:21:11', '2025-12-17 19:47:51', 'kdKMreZA', '3517815'), + (11065, 39, 622, 'attending', '2021-03-14 00:24:18', '2025-12-17 19:47:51', 'kdKMreZA', '3517816'), + (11066, 39, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdKMreZA', '3523941'), + (11067, 39, 631, 'attending', '2021-03-07 23:50:41', '2025-12-17 19:47:51', 'kdKMreZA', '3533850'), + (11068, 39, 638, 'not_attending', '2021-04-04 16:39:23', '2025-12-17 19:47:44', 'kdKMreZA', '3536632'), + (11069, 39, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKMreZA', '3536656'), + (11070, 39, 641, 'attending', '2021-03-29 19:52:45', '2025-12-17 19:47:44', 'kdKMreZA', '3539916'), + (11071, 39, 642, 'maybe', '2021-04-08 23:43:19', '2025-12-17 19:47:44', 'kdKMreZA', '3539917'), + (11072, 39, 643, 'attending', '2021-04-15 01:47:32', '2025-12-17 19:47:45', 'kdKMreZA', '3539918'), + (11073, 39, 644, 'not_attending', '2021-04-23 21:08:23', '2025-12-17 19:47:46', 'kdKMreZA', '3539919'), + (11074, 39, 645, 'attending', '2021-05-05 22:34:25', '2025-12-17 19:47:46', 'kdKMreZA', '3539920'), + (11075, 39, 646, 'attending', '2021-05-12 01:53:32', '2025-12-17 19:47:46', 'kdKMreZA', '3539921'), + (11076, 39, 647, 'attending', '2021-05-18 20:20:09', '2025-12-17 19:47:46', 'kdKMreZA', '3539922'), + (11077, 39, 648, 'attending', '2021-05-25 20:20:31', '2025-12-17 19:47:47', 'kdKMreZA', '3539923'), + (11078, 39, 649, 'not_attending', '2021-03-18 22:24:51', '2025-12-17 19:47:51', 'kdKMreZA', '3539927'), + (11079, 39, 650, 'not_attending', '2021-03-26 20:40:47', '2025-12-17 19:47:44', 'kdKMreZA', '3539928'), + (11080, 39, 651, 'not_attending', '2021-03-10 22:36:15', '2025-12-17 19:47:51', 'kdKMreZA', '3541045'), + (11081, 39, 685, 'attending', '2021-04-12 20:48:03', '2025-12-17 19:47:44', 'kdKMreZA', '3551564'), + (11082, 39, 703, 'maybe', '2021-04-11 16:22:19', '2025-12-17 19:47:44', 'kdKMreZA', '3578388'), + (11083, 39, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKMreZA', '3582734'), + (11084, 39, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKMreZA', '3583262'), + (11085, 39, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKMreZA', '3619523'), + (11086, 39, 719, 'maybe', '2021-04-08 23:01:59', '2025-12-17 19:47:44', 'kdKMreZA', '3635405'), + (11087, 39, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKMreZA', '3661369'), + (11088, 39, 728, 'attending', '2021-04-12 20:54:25', '2025-12-17 19:47:44', 'kdKMreZA', '3668073'), + (11089, 39, 729, 'attending', '2021-04-26 18:26:07', '2025-12-17 19:47:46', 'kdKMreZA', '3668075'), + (11090, 39, 730, 'not_attending', '2021-05-05 22:34:03', '2025-12-17 19:47:46', 'kdKMreZA', '3668076'), + (11091, 39, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKMreZA', '3674262'), + (11092, 39, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKMreZA', '3677402'), + (11093, 39, 736, 'maybe', '2021-04-08 23:43:10', '2025-12-17 19:47:44', 'kdKMreZA', '3677701'), + (11094, 39, 760, 'maybe', '2021-05-14 12:09:37', '2025-12-17 19:47:46', 'kdKMreZA', '3716035'), + (11095, 39, 761, 'attending', '2021-05-14 21:19:39', '2025-12-17 19:47:46', 'kdKMreZA', '3716041'), + (11096, 39, 764, 'not_attending', '2021-04-23 21:08:11', '2025-12-17 19:47:45', 'kdKMreZA', '3720507'), + (11097, 39, 765, 'not_attending', '2021-04-22 20:59:36', '2025-12-17 19:47:45', 'kdKMreZA', '3720508'), + (11098, 39, 766, 'maybe', '2021-05-08 20:51:15', '2025-12-17 19:47:46', 'kdKMreZA', '3721383'), + (11099, 39, 774, 'not_attending', '2021-04-22 20:59:19', '2025-12-17 19:47:45', 'kdKMreZA', '3730212'), + (11100, 39, 777, 'not_attending', '2021-05-01 00:52:47', '2025-12-17 19:47:46', 'kdKMreZA', '3746248'), + (11101, 39, 781, 'maybe', '2021-05-03 22:02:13', '2025-12-17 19:47:46', 'kdKMreZA', '3760130'), + (11102, 39, 782, 'attending', '2021-05-03 19:27:32', '2025-12-17 19:47:46', 'kdKMreZA', '3761843'), + (11103, 39, 785, 'maybe', '2021-05-14 12:10:28', '2025-12-17 19:47:46', 'kdKMreZA', '3779779'), + (11104, 39, 789, 'maybe', '2021-05-19 16:34:41', '2025-12-17 19:47:47', 'kdKMreZA', '3785818'), + (11105, 39, 790, 'not_attending', '2021-05-07 22:10:28', '2025-12-17 19:47:46', 'kdKMreZA', '3789923'), + (11106, 39, 791, 'attending', '2021-05-10 22:51:04', '2025-12-17 19:47:46', 'kdKMreZA', '3792735'), + (11107, 39, 792, 'attending', '2021-05-19 16:35:19', '2025-12-17 19:47:46', 'kdKMreZA', '3793156'), + (11108, 39, 793, 'attending', '2021-06-02 01:57:07', '2025-12-17 19:47:47', 'kdKMreZA', '3793537'), + (11109, 39, 794, 'attending', '2021-05-23 15:31:45', '2025-12-17 19:47:47', 'kdKMreZA', '3793538'), + (11110, 39, 795, 'not_attending', '2021-06-07 23:56:53', '2025-12-17 19:47:47', 'kdKMreZA', '3793539'), + (11111, 39, 796, 'maybe', '2021-05-17 12:33:30', '2025-12-17 19:47:46', 'kdKMreZA', '3793862'), + (11112, 39, 798, 'not_attending', '2021-05-20 21:36:35', '2025-12-17 19:47:46', 'kdKMreZA', '3796262'), + (11113, 39, 808, 'maybe', '2021-05-16 02:56:09', '2025-12-17 19:47:46', 'kdKMreZA', '3807358'), + (11114, 39, 821, 'maybe', '2021-05-28 10:47:40', '2025-12-17 19:47:47', 'kdKMreZA', '3963965'), + (11115, 39, 823, 'attending', '2021-06-13 23:04:50', '2025-12-17 19:47:48', 'kdKMreZA', '3974109'), + (11116, 39, 827, 'maybe', '2021-06-05 16:17:55', '2025-12-17 19:47:47', 'kdKMreZA', '3975311'), + (11117, 39, 828, 'not_attending', '2021-06-08 23:32:24', '2025-12-17 19:47:47', 'kdKMreZA', '3975312'), + (11118, 39, 838, 'not_attending', '2021-06-09 23:14:59', '2025-12-17 19:47:47', 'kdKMreZA', '3994992'), + (11119, 39, 841, 'not_attending', '2021-06-15 20:12:19', '2025-12-17 19:47:48', 'kdKMreZA', '4007434'), + (11120, 39, 844, 'attending', '2021-06-23 17:42:32', '2025-12-17 19:47:38', 'kdKMreZA', '4014338'), + (11121, 39, 850, 'not_attending', '2021-08-25 22:45:31', '2025-12-17 19:47:42', 'kdKMreZA', '4015722'), + (11122, 39, 867, 'attending', '2021-06-23 10:30:40', '2025-12-17 19:47:38', 'kdKMreZA', '4021848'), + (11123, 39, 869, 'attending', '2021-06-30 21:21:10', '2025-12-17 19:47:38', 'kdKMreZA', '4136744'), + (11124, 39, 870, 'attending', '2021-06-30 12:38:50', '2025-12-17 19:47:39', 'kdKMreZA', '4136937'), + (11125, 39, 871, 'attending', '2021-07-10 16:12:48', '2025-12-17 19:47:39', 'kdKMreZA', '4136938'), + (11126, 39, 872, 'attending', '2021-07-20 09:57:10', '2025-12-17 19:47:40', 'kdKMreZA', '4136947'), + (11127, 39, 875, 'attending', '2021-06-26 18:44:56', '2025-12-17 19:47:38', 'kdKMreZA', '4139816'), + (11128, 39, 880, 'maybe', '2021-06-19 15:46:12', '2025-12-17 19:47:48', 'kdKMreZA', '4205383'), + (11129, 39, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdKMreZA', '4210314'), + (11130, 39, 885, 'not_attending', '2021-06-27 22:31:28', '2025-12-17 19:47:38', 'kdKMreZA', '4222370'), + (11131, 39, 887, 'attending', '2021-07-10 16:14:50', '2025-12-17 19:47:39', 'kdKMreZA', '4225444'), + (11132, 39, 898, 'maybe', '2021-06-30 12:35:32', '2025-12-17 19:47:38', 'kdKMreZA', '4236746'), + (11133, 39, 899, 'maybe', '2021-06-30 22:48:17', '2025-12-17 19:47:39', 'kdKMreZA', '4239259'), + (11134, 39, 900, 'not_attending', '2021-07-20 09:57:58', '2025-12-17 19:47:40', 'kdKMreZA', '4240316'), + (11135, 39, 901, 'attending', '2021-07-31 14:38:15', '2025-12-17 19:47:40', 'kdKMreZA', '4240317'), + (11136, 39, 902, 'attending', '2021-08-07 17:47:23', '2025-12-17 19:47:41', 'kdKMreZA', '4240318'), + (11137, 39, 903, 'not_attending', '2021-08-09 19:12:09', '2025-12-17 19:47:42', 'kdKMreZA', '4240320'), + (11138, 39, 905, 'not_attending', '2021-07-07 10:18:12', '2025-12-17 19:47:39', 'kdKMreZA', '4250163'), + (11139, 39, 917, 'not_attending', '2021-07-14 23:17:50', '2025-12-17 19:47:39', 'kdKMreZA', '4274481'), + (11140, 39, 919, 'not_attending', '2021-07-17 13:52:47', '2025-12-17 19:47:39', 'kdKMreZA', '4275957'), + (11141, 39, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdKMreZA', '4277819'), + (11142, 39, 933, 'attending', '2021-07-26 21:51:01', '2025-12-17 19:47:40', 'kdKMreZA', '4301723'), + (11143, 39, 934, 'maybe', '2021-08-02 00:16:46', '2025-12-17 19:47:40', 'kdKMreZA', '4302093'), + (11144, 39, 935, 'not_attending', '2021-08-11 21:54:33', '2025-12-17 19:47:41', 'kdKMreZA', '4304151'), + (11145, 39, 937, 'maybe', '2021-07-26 21:50:43', '2025-12-17 19:47:40', 'kdKMreZA', '4306596'), + (11146, 39, 952, 'attending', '2021-08-02 00:16:09', '2025-12-17 19:47:41', 'kdKMreZA', '4318286'), + (11147, 39, 955, 'maybe', '2021-08-09 21:46:41', '2025-12-17 19:47:41', 'kdKMreZA', '4331588'), + (11148, 39, 961, 'not_attending', '2021-08-13 20:47:27', '2025-12-17 19:47:42', 'kdKMreZA', '4345519'), + (11149, 39, 964, 'maybe', '2021-08-21 20:08:26', '2025-12-17 19:47:42', 'kdKMreZA', '4353160'), + (11150, 39, 971, 'maybe', '2021-09-08 19:31:53', '2025-12-17 19:47:43', 'kdKMreZA', '4356801'), + (11151, 39, 972, 'not_attending', '2021-08-19 19:50:11', '2025-12-17 19:47:42', 'kdKMreZA', '4358025'), + (11152, 39, 973, 'not_attending', '2021-08-18 00:38:40', '2025-12-17 19:47:42', 'kdKMreZA', '4366186'), + (11153, 39, 974, 'attending', '2021-08-28 22:01:10', '2025-12-17 19:47:42', 'kdKMreZA', '4366187'), + (11154, 39, 985, 'not_attending', '2021-08-21 17:35:18', '2025-12-17 19:47:42', 'kdKMreZA', '4391748'), + (11155, 39, 986, 'attending', '2021-08-21 20:08:06', '2025-12-17 19:47:42', 'kdKMreZA', '4394209'), + (11156, 39, 987, 'attending', '2021-08-30 20:22:24', '2025-12-17 19:47:43', 'kdKMreZA', '4402634'), + (11157, 39, 988, 'attending', '2021-08-26 18:15:52', '2025-12-17 19:47:42', 'kdKMreZA', '4402823'), + (11158, 39, 989, 'maybe', '2021-09-01 22:12:56', '2025-12-17 19:47:43', 'kdKMreZA', '4414282'), + (11159, 39, 990, 'attending', '2021-08-30 02:40:42', '2025-12-17 19:47:43', 'kdKMreZA', '4420735'), + (11160, 39, 991, 'not_attending', '2021-09-01 15:19:48', '2025-12-17 19:47:43', 'kdKMreZA', '4420738'), + (11161, 39, 992, 'attending', '2021-09-18 13:39:18', '2025-12-17 19:47:33', 'kdKMreZA', '4420739'), + (11162, 39, 993, 'attending', '2021-09-16 22:34:50', '2025-12-17 19:47:34', 'kdKMreZA', '4420741'), + (11163, 39, 994, 'attending', '2021-10-02 21:26:26', '2025-12-17 19:47:34', 'kdKMreZA', '4420742'), + (11164, 39, 995, 'attending', '2021-10-04 19:43:29', '2025-12-17 19:47:34', 'kdKMreZA', '4420744'), + (11165, 39, 996, 'attending', '2021-10-15 22:38:16', '2025-12-17 19:47:35', 'kdKMreZA', '4420747'), + (11166, 39, 997, 'attending', '2021-10-23 17:07:06', '2025-12-17 19:47:35', 'kdKMreZA', '4420748'), + (11167, 39, 998, 'attending', '2021-10-30 21:16:17', '2025-12-17 19:47:36', 'kdKMreZA', '4420749'), + (11168, 39, 1016, 'not_attending', '2021-09-09 22:28:08', '2025-12-17 19:47:43', 'kdKMreZA', '4441271'), + (11169, 39, 1019, 'not_attending', '2021-09-16 22:32:41', '2025-12-17 19:47:43', 'kdKMreZA', '4450515'), + (11170, 39, 1021, 'attending', '2021-09-20 22:32:46', '2025-12-17 19:47:34', 'kdKMreZA', '4451803'), + (11171, 39, 1022, 'attending', '2021-09-12 23:32:10', '2025-12-17 19:47:43', 'kdKMreZA', '4458628'), + (11172, 39, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKMreZA', '4461883'), + (11173, 39, 1036, 'attending', '2021-09-20 20:29:17', '2025-12-17 19:47:34', 'kdKMreZA', '4493166'), + (11174, 39, 1040, 'maybe', '2021-12-11 22:25:44', '2025-12-17 19:47:38', 'kdKMreZA', '4496605'), + (11175, 39, 1041, 'attending', '2021-12-04 23:42:17', '2025-12-17 19:47:37', 'kdKMreZA', '4496606'), + (11176, 39, 1049, 'maybe', '2022-01-22 20:40:36', '2025-12-17 19:47:32', 'kdKMreZA', '4496614'), + (11177, 39, 1050, 'attending', '2022-01-29 04:31:38', '2025-12-17 19:47:32', 'kdKMreZA', '4496615'), + (11178, 39, 1051, 'attending', '2022-02-05 06:10:23', '2025-12-17 19:47:32', 'kdKMreZA', '4496616'), + (11179, 39, 1052, 'attending', '2022-01-11 16:19:06', '2025-12-17 19:47:31', 'kdKMreZA', '4496617'), + (11180, 39, 1053, 'not_attending', '2022-02-14 05:09:56', '2025-12-17 19:47:32', 'kdKMreZA', '4496618'), + (11181, 39, 1054, 'attending', '2022-03-17 11:57:18', '2025-12-17 19:47:25', 'kdKMreZA', '4496619'), + (11182, 39, 1055, 'attending', '2021-12-18 18:20:09', '2025-12-17 19:47:31', 'kdKMreZA', '4496621'), + (11183, 39, 1056, 'attending', '2022-01-04 20:58:35', '2025-12-17 19:47:31', 'kdKMreZA', '4496622'), + (11184, 39, 1058, 'maybe', '2022-02-26 16:21:26', '2025-12-17 19:47:33', 'kdKMreZA', '4496625'), + (11185, 39, 1059, 'not_attending', '2022-03-10 14:46:25', '2025-12-17 19:47:33', 'kdKMreZA', '4496626'), + (11186, 39, 1060, 'not_attending', '2022-03-22 11:35:30', '2025-12-17 19:47:25', 'kdKMreZA', '4496627'), + (11187, 39, 1061, 'not_attending', '2022-02-06 06:34:37', '2025-12-17 19:47:32', 'kdKMreZA', '4496628'), + (11188, 39, 1062, 'not_attending', '2022-02-28 22:10:29', '2025-12-17 19:47:33', 'kdKMreZA', '4496629'), + (11189, 39, 1066, 'attending', '2021-09-25 19:02:21', '2025-12-17 19:47:34', 'kdKMreZA', '4506039'), + (11190, 39, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKMreZA', '4508342'), + (11191, 39, 1068, 'maybe', '2021-09-27 10:59:52', '2025-12-17 19:47:34', 'kdKMreZA', '4511471'), + (11192, 39, 1071, 'not_attending', '2021-10-04 22:53:59', '2025-12-17 19:47:34', 'kdKMreZA', '4516078'), + (11193, 39, 1072, 'attending', '2021-10-06 13:58:52', '2025-12-17 19:47:34', 'kdKMreZA', '4516287'), + (11194, 39, 1074, 'attending', '2021-09-29 02:06:32', '2025-12-17 19:47:34', 'kdKMreZA', '4528953'), + (11195, 39, 1077, 'attending', '2021-10-13 22:59:40', '2025-12-17 19:47:34', 'kdKMreZA', '4540903'), + (11196, 39, 1078, 'not_attending', '2021-10-07 21:20:22', '2025-12-17 19:47:34', 'kdKMreZA', '4541281'), + (11197, 39, 1079, 'attending', '2021-10-20 01:00:54', '2025-12-17 19:47:35', 'kdKMreZA', '4563823'), + (11198, 39, 1082, 'attending', '2021-10-12 15:19:56', '2025-12-17 19:47:35', 'kdKMreZA', '4566762'), + (11199, 39, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKMreZA', '4568602'), + (11200, 39, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKMreZA', '4572153'), + (11201, 39, 1089, 'not_attending', '2021-10-18 22:49:29', '2025-12-17 19:47:35', 'kdKMreZA', '4574712'), + (11202, 39, 1090, 'maybe', '2021-10-16 16:39:45', '2025-12-17 19:47:35', 'kdKMreZA', '4574713'), + (11203, 39, 1092, 'not_attending', '2021-10-21 22:54:10', '2025-12-17 19:47:35', 'kdKMreZA', '4582837'), + (11204, 39, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'kdKMreZA', '4585962'), + (11205, 39, 1094, 'attending', '2021-10-31 22:31:18', '2025-12-17 19:47:36', 'kdKMreZA', '4587337'), + (11206, 39, 1095, 'attending', '2021-10-27 22:28:39', '2025-12-17 19:47:35', 'kdKMreZA', '4596356'), + (11207, 39, 1096, 'maybe', '2021-10-29 19:40:19', '2025-12-17 19:47:36', 'kdKMreZA', '4596453'), + (11208, 39, 1097, 'attending', '2021-11-03 21:38:21', '2025-12-17 19:47:36', 'kdKMreZA', '4598860'), + (11209, 39, 1098, 'attending', '2021-11-10 16:49:11', '2025-12-17 19:47:36', 'kdKMreZA', '4598861'), + (11210, 39, 1099, 'not_attending', '2021-11-03 21:39:27', '2025-12-17 19:47:36', 'kdKMreZA', '4602797'), + (11211, 39, 1108, 'attending', '2021-11-16 14:43:10', '2025-12-17 19:47:37', 'kdKMreZA', '4632276'), + (11212, 39, 1114, 'attending', '2021-11-12 00:23:40', '2025-12-17 19:47:36', 'kdKMreZA', '4637896'), + (11213, 39, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKMreZA', '4642994'), + (11214, 39, 1117, 'attending', '2021-12-09 00:45:56', '2025-12-17 19:47:37', 'kdKMreZA', '4642995'), + (11215, 39, 1118, 'attending', '2021-12-08 20:32:43', '2025-12-17 19:47:38', 'kdKMreZA', '4642996'), + (11216, 39, 1119, 'not_attending', '2021-12-22 17:02:49', '2025-12-17 19:47:31', 'kdKMreZA', '4642997'), + (11217, 39, 1122, 'attending', '2021-12-02 20:28:32', '2025-12-17 19:47:37', 'kdKMreZA', '4644023'), + (11218, 39, 1123, 'attending', '2021-12-10 23:24:15', '2025-12-17 19:47:38', 'kdKMreZA', '4644024'), + (11219, 39, 1124, 'maybe', '2021-12-13 17:37:23', '2025-12-17 19:47:38', 'kdKMreZA', '4644025'), + (11220, 39, 1126, 'attending', '2021-12-10 14:04:47', '2025-12-17 19:47:38', 'kdKMreZA', '4645687'), + (11221, 39, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKMreZA', '4645698'), + (11222, 39, 1128, 'attending', '2021-11-20 18:28:22', '2025-12-17 19:47:37', 'kdKMreZA', '4645704'), + (11223, 39, 1129, 'attending', '2021-11-26 19:23:01', '2025-12-17 19:47:37', 'kdKMreZA', '4645705'), + (11224, 39, 1130, 'attending', '2021-12-04 23:42:25', '2025-12-17 19:47:37', 'kdKMreZA', '4658824'), + (11225, 39, 1131, 'attending', '2021-12-18 18:20:23', '2025-12-17 19:47:31', 'kdKMreZA', '4658825'), + (11226, 39, 1132, 'attending', '2021-11-22 03:07:19', '2025-12-17 19:47:37', 'kdKMreZA', '4660657'), + (11227, 39, 1134, 'attending', '2021-11-24 14:30:06', '2025-12-17 19:47:37', 'kdKMreZA', '4668385'), + (11228, 39, 1135, 'attending', '2021-11-26 19:22:47', '2025-12-17 19:47:37', 'kdKMreZA', '4670469'), + (11229, 39, 1137, 'maybe', '2021-11-28 20:56:33', '2025-12-17 19:47:37', 'kdKMreZA', '4674797'), + (11230, 39, 1138, 'maybe', '2021-11-29 19:05:20', '2025-12-17 19:47:37', 'kdKMreZA', '4675407'), + (11231, 39, 1139, 'attending', '2021-12-02 23:51:59', '2025-12-17 19:47:37', 'kdKMreZA', '4675604'), + (11232, 39, 1140, 'not_attending', '2021-12-04 02:00:51', '2025-12-17 19:47:37', 'kdKMreZA', '4679701'), + (11233, 39, 1143, 'attending', '2021-12-01 21:57:15', '2025-12-17 19:47:37', 'kdKMreZA', '4683667'), + (11234, 39, 1144, 'not_attending', '2021-12-08 00:51:43', '2025-12-17 19:47:37', 'kdKMreZA', '4687090'), + (11235, 39, 1145, 'attending', '2021-12-09 23:15:06', '2025-12-17 19:47:38', 'kdKMreZA', '4691157'), + (11236, 39, 1146, 'not_attending', '2021-12-10 23:24:04', '2025-12-17 19:47:38', 'kdKMreZA', '4692841'), + (11237, 39, 1148, 'attending', '2021-12-17 23:55:38', '2025-12-17 19:47:31', 'kdKMreZA', '4692843'), + (11238, 39, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKMreZA', '4694407'), + (11239, 39, 1151, 'attending', '2022-01-04 20:38:47', '2025-12-17 19:47:31', 'kdKMreZA', '4708704'), + (11240, 39, 1152, 'attending', '2022-01-08 20:54:00', '2025-12-17 19:47:31', 'kdKMreZA', '4708705'), + (11241, 39, 1153, 'attending', '2022-01-13 04:40:46', '2025-12-17 19:47:32', 'kdKMreZA', '4708707'), + (11242, 39, 1154, 'attending', '2022-01-26 16:16:42', '2025-12-17 19:47:32', 'kdKMreZA', '4708708'), + (11243, 39, 1155, 'maybe', '2021-12-20 19:18:53', '2025-12-17 19:47:31', 'kdKMreZA', '4715119'), + (11244, 39, 1156, 'attending', '2021-12-18 21:47:43', '2025-12-17 19:47:31', 'kdKMreZA', '4715207'), + (11245, 39, 1163, 'attending', '2021-12-27 22:41:19', '2025-12-17 19:47:31', 'kdKMreZA', '4724206'), + (11246, 39, 1164, 'attending', '2022-01-03 17:12:33', '2025-12-17 19:47:31', 'kdKMreZA', '4724208'), + (11247, 39, 1165, 'attending', '2022-01-03 17:12:49', '2025-12-17 19:47:31', 'kdKMreZA', '4724210'), + (11248, 39, 1173, 'attending', '2022-01-04 20:58:40', '2025-12-17 19:47:31', 'kdKMreZA', '4736495'), + (11249, 39, 1174, 'attending', '2022-01-11 16:19:13', '2025-12-17 19:47:31', 'kdKMreZA', '4736496'), + (11250, 39, 1175, 'attending', '2022-01-22 23:47:57', '2025-12-17 19:47:32', 'kdKMreZA', '4736497'), + (11251, 39, 1176, 'attending', '2022-02-05 06:10:33', '2025-12-17 19:47:32', 'kdKMreZA', '4736498'), + (11252, 39, 1177, 'not_attending', '2022-02-06 06:34:41', '2025-12-17 19:47:32', 'kdKMreZA', '4736499'), + (11253, 39, 1178, 'attending', '2022-01-29 04:31:44', '2025-12-17 19:47:32', 'kdKMreZA', '4736500'), + (11254, 39, 1179, 'not_attending', '2022-02-14 05:10:00', '2025-12-17 19:47:32', 'kdKMreZA', '4736501'), + (11255, 39, 1180, 'maybe', '2022-02-26 16:21:19', '2025-12-17 19:47:33', 'kdKMreZA', '4736502'), + (11256, 39, 1181, 'not_attending', '2022-02-28 22:10:34', '2025-12-17 19:47:33', 'kdKMreZA', '4736503'), + (11257, 39, 1182, 'not_attending', '2022-03-10 14:46:18', '2025-12-17 19:47:33', 'kdKMreZA', '4736504'), + (11258, 39, 1183, 'attending', '2022-01-11 23:38:30', '2025-12-17 19:47:31', 'kdKMreZA', '4742171'), + (11259, 39, 1184, 'attending', '2022-01-15 00:24:08', '2025-12-17 19:47:31', 'kdKMreZA', '4742350'), + (11260, 39, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKMreZA', '4746789'), + (11261, 39, 1188, 'maybe', '2022-01-11 16:20:08', '2025-12-17 19:47:32', 'kdKMreZA', '4753929'), + (11262, 39, 1200, 'maybe', '2022-01-18 19:09:17', '2025-12-17 19:47:32', 'kdKMreZA', '4766830'), + (11263, 39, 1201, 'not_attending', '2022-01-21 00:08:31', '2025-12-17 19:47:32', 'kdKMreZA', '4766841'), + (11264, 39, 1202, 'not_attending', '2022-01-26 20:25:16', '2025-12-17 19:47:32', 'kdKMreZA', '4769423'), + (11265, 39, 1211, 'maybe', '2022-01-26 20:25:40', '2025-12-17 19:47:32', 'kdKMreZA', '4780754'), + (11266, 39, 1212, 'attending', '2022-01-31 23:53:40', '2025-12-17 19:47:32', 'kdKMreZA', '4780759'), + (11267, 39, 1213, 'attending', '2022-02-07 00:59:50', '2025-12-17 19:47:32', 'kdKMreZA', '4780760'), + (11268, 39, 1214, 'not_attending', '2022-02-17 23:47:55', '2025-12-17 19:47:32', 'kdKMreZA', '4780761'), + (11269, 39, 1219, 'attending', '2022-01-31 15:09:32', '2025-12-17 19:47:32', 'kdKMreZA', '4788466'), + (11270, 39, 1222, 'maybe', '2022-02-15 14:33:22', '2025-12-17 19:47:32', 'kdKMreZA', '5015628'), + (11271, 39, 1224, 'not_attending', '2022-01-31 23:55:45', '2025-12-17 19:47:32', 'kdKMreZA', '5016682'), + (11272, 39, 1228, 'attending', '2022-02-11 16:51:33', '2025-12-17 19:47:32', 'kdKMreZA', '5028238'), + (11273, 39, 1229, 'maybe', '2022-02-14 05:09:41', '2025-12-17 19:47:32', 'kdKMreZA', '5034963'), + (11274, 39, 1232, 'maybe', '2022-02-09 03:49:00', '2025-12-17 19:47:32', 'kdKMreZA', '5038850'), + (11275, 39, 1234, 'maybe', '2022-02-14 05:08:46', '2025-12-17 19:47:32', 'kdKMreZA', '5042197'), + (11276, 39, 1236, 'maybe', '2022-02-16 03:50:35', '2025-12-17 19:47:32', 'kdKMreZA', '5045826'), + (11277, 39, 1238, 'maybe', '2022-02-23 19:59:55', '2025-12-17 19:47:32', 'kdKMreZA', '5052236'), + (11278, 39, 1239, 'not_attending', '2022-03-03 00:49:42', '2025-12-17 19:47:33', 'kdKMreZA', '5052238'), + (11279, 39, 1240, 'maybe', '2022-03-16 00:53:50', '2025-12-17 19:47:33', 'kdKMreZA', '5052239'), + (11280, 39, 1242, 'attending', '2022-03-30 22:25:14', '2025-12-17 19:47:25', 'kdKMreZA', '5052241'), + (11281, 39, 1246, 'maybe', '2022-02-28 22:10:22', '2025-12-17 19:47:33', 'kdKMreZA', '5064727'), + (11282, 39, 1257, 'attending', '2022-02-28 21:15:12', '2025-12-17 19:47:33', 'kdKMreZA', '5129274'), + (11283, 39, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKMreZA', '5132533'), + (11284, 39, 1266, 'attending', '2022-03-12 21:52:57', '2025-12-17 19:47:33', 'kdKMreZA', '5166407'), + (11285, 39, 1267, 'maybe', '2022-03-17 11:57:00', '2025-12-17 19:47:25', 'kdKMreZA', '5169578'), + (11286, 39, 1268, 'attending', '2022-03-12 21:35:45', '2025-12-17 19:47:33', 'kdKMreZA', '5176296'), + (11287, 39, 1272, 'attending', '2022-03-17 11:57:46', '2025-12-17 19:47:25', 'kdKMreZA', '5186582'), + (11288, 39, 1273, 'not_attending', '2022-03-22 11:35:25', '2025-12-17 19:47:25', 'kdKMreZA', '5186583'), + (11289, 39, 1274, 'attending', '2022-03-28 17:40:50', '2025-12-17 19:47:26', 'kdKMreZA', '5186585'), + (11290, 39, 1275, 'attending', '2022-03-28 17:40:45', '2025-12-17 19:47:26', 'kdKMreZA', '5186587'), + (11291, 39, 1276, 'maybe', '2022-03-26 14:07:05', '2025-12-17 19:47:25', 'kdKMreZA', '5186820'), + (11292, 39, 1281, 'attending', '2022-04-09 19:04:39', '2025-12-17 19:47:27', 'kdKMreZA', '5190437'), + (11293, 39, 1284, 'maybe', '2022-04-16 15:05:21', '2025-12-17 19:47:27', 'kdKMreZA', '5195095'), + (11294, 39, 1285, 'not_attending', '2022-03-22 11:35:19', '2025-12-17 19:47:25', 'kdKMreZA', '5196763'), + (11295, 39, 1288, 'maybe', '2022-03-28 17:40:24', '2025-12-17 19:47:25', 'kdKMreZA', '5199460'), + (11296, 39, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKMreZA', '5215989'), + (11297, 39, 1304, 'maybe', '2022-04-06 16:17:30', '2025-12-17 19:47:26', 'kdKMreZA', '5223468'), + (11298, 39, 1305, 'maybe', '2022-04-10 20:41:45', '2025-12-17 19:47:27', 'kdKMreZA', '5223673'), + (11299, 39, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdKMreZA', '5223686'), + (11300, 39, 1308, 'not_attending', '2022-04-13 21:53:48', '2025-12-17 19:47:27', 'kdKMreZA', '5226703'), + (11301, 39, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'kdKMreZA', '5227432'), + (11302, 39, 1313, 'attending', '2022-04-11 01:53:42', '2025-12-17 19:47:27', 'kdKMreZA', '5231461'), + (11303, 39, 1314, 'not_attending', '2022-04-11 21:04:14', '2025-12-17 19:47:27', 'kdKMreZA', '5233137'), + (11304, 39, 1315, 'not_attending', '2022-04-22 22:36:34', '2025-12-17 19:47:27', 'kdKMreZA', '5237522'), + (11305, 39, 1317, 'attending', '2022-04-11 21:04:18', '2025-12-17 19:47:27', 'kdKMreZA', '5237543'), + (11306, 39, 1330, 'maybe', '2022-04-18 11:49:16', '2025-12-17 19:47:27', 'kdKMreZA', '5242155'), + (11307, 39, 1337, 'not_attending', '2022-04-20 15:47:31', '2025-12-17 19:47:27', 'kdKMreZA', '5245036'), + (11308, 39, 1344, 'not_attending', '2022-04-29 23:39:20', '2025-12-17 19:47:28', 'kdKMreZA', '5247465'), + (11309, 39, 1345, 'attending', '2022-04-22 18:43:32', '2025-12-17 19:47:27', 'kdKMreZA', '5247466'), + (11310, 39, 1346, 'attending', '2022-04-22 18:42:51', '2025-12-17 19:47:27', 'kdKMreZA', '5247467'), + (11311, 39, 1353, 'attending', '2022-04-24 15:58:09', '2025-12-17 19:47:27', 'kdKMreZA', '5251777'), + (11312, 39, 1355, 'not_attending', '2022-04-29 14:27:22', '2025-12-17 19:47:28', 'kdKMreZA', '5252573'), + (11313, 39, 1358, 'attending', '2022-04-24 13:24:32', '2025-12-17 19:47:27', 'kdKMreZA', '5258022'), + (11314, 39, 1361, 'attending', '2022-04-25 14:42:13', '2025-12-17 19:47:28', 'kdKMreZA', '5260491'), + (11315, 39, 1362, 'not_attending', '2022-04-29 23:39:25', '2025-12-17 19:47:28', 'kdKMreZA', '5260800'), + (11316, 39, 1368, 'attending', '2022-05-06 22:53:32', '2025-12-17 19:47:28', 'kdKMreZA', '5262783'), + (11317, 39, 1371, 'not_attending', '2022-04-27 21:02:45', '2025-12-17 19:47:27', 'kdKMreZA', '5263784'), + (11318, 39, 1372, 'maybe', '2022-05-01 19:10:23', '2025-12-17 19:47:28', 'kdKMreZA', '5264352'), + (11319, 39, 1374, 'not_attending', '2022-05-06 23:02:42', '2025-12-17 19:47:28', 'kdKMreZA', '5269930'), + (11320, 39, 1378, 'attending', '2022-05-10 01:36:58', '2025-12-17 19:47:28', 'kdKMreZA', '5271448'), + (11321, 39, 1379, 'attending', '2022-05-10 01:36:27', '2025-12-17 19:47:29', 'kdKMreZA', '5271449'), + (11322, 39, 1380, 'attending', '2022-05-28 20:18:58', '2025-12-17 19:47:30', 'kdKMreZA', '5271450'), + (11323, 39, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'kdKMreZA', '5276469'), + (11324, 39, 1385, 'not_attending', '2022-05-11 12:33:28', '2025-12-17 19:47:28', 'kdKMreZA', '5277822'), + (11325, 39, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdKMreZA', '5278159'), + (11326, 39, 1388, 'attending', '2022-05-06 18:49:20', '2025-12-17 19:47:28', 'kdKMreZA', '5278201'), + (11327, 39, 1396, 'attending', '2022-05-13 18:00:25', '2025-12-17 19:47:28', 'kdKMreZA', '5281103'), + (11328, 39, 1397, 'attending', '2022-05-18 01:00:47', '2025-12-17 19:47:29', 'kdKMreZA', '5281104'), + (11329, 39, 1400, 'attending', '2022-05-10 01:51:40', '2025-12-17 19:47:29', 'kdKMreZA', '5284864'), + (11330, 39, 1401, 'not_attending', '2022-05-16 18:45:52', '2025-12-17 19:47:29', 'kdKMreZA', '5286295'), + (11331, 39, 1407, 'attending', '2022-06-04 19:18:03', '2025-12-17 19:47:30', 'kdKMreZA', '5363695'), + (11332, 39, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdKMreZA', '5365960'), + (11333, 39, 1409, 'attending', '2022-05-22 02:40:20', '2025-12-17 19:47:30', 'kdKMreZA', '5367032'), + (11334, 39, 1415, 'maybe', '2022-05-31 10:21:18', '2025-12-17 19:47:30', 'kdKMreZA', '5368973'), + (11335, 39, 1423, 'not_attending', '2022-06-15 22:10:16', '2025-12-17 19:47:17', 'kdKMreZA', '5375727'), + (11336, 39, 1427, 'not_attending', '2022-05-24 21:32:48', '2025-12-17 19:47:30', 'kdKMreZA', '5376074'), + (11337, 39, 1428, 'not_attending', '2022-06-06 14:56:31', '2025-12-17 19:47:30', 'kdKMreZA', '5378247'), + (11338, 39, 1431, 'not_attending', '2022-06-11 14:22:07', '2025-12-17 19:47:31', 'kdKMreZA', '5389605'), + (11339, 39, 1438, 'maybe', '2022-06-01 19:55:25', '2025-12-17 19:47:30', 'kdKMreZA', '5395032'), + (11340, 39, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdKMreZA', '5397265'), + (11341, 39, 1444, 'not_attending', '2022-06-11 14:22:14', '2025-12-17 19:47:30', 'kdKMreZA', '5397614'), + (11342, 39, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'kdKMreZA', '5403967'), + (11343, 39, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdKMreZA', '5404786'), + (11344, 39, 1460, 'maybe', '2022-06-13 10:29:25', '2025-12-17 19:47:31', 'kdKMreZA', '5404817'), + (11345, 39, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdKMreZA', '5405203'), + (11346, 39, 1477, 'attending', '2022-06-21 22:58:53', '2025-12-17 19:47:17', 'kdKMreZA', '5408766'), + (11347, 39, 1478, 'attending', '2022-06-24 18:38:18', '2025-12-17 19:47:17', 'kdKMreZA', '5408794'), + (11348, 39, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'kdKMreZA', '5411699'), + (11349, 39, 1482, 'not_attending', '2022-06-24 18:37:48', '2025-12-17 19:47:19', 'kdKMreZA', '5412550'), + (11350, 39, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdKMreZA', '5415046'), + (11351, 39, 1493, 'not_attending', '2022-06-25 18:21:33', '2025-12-17 19:47:19', 'kdKMreZA', '5420218'), + (11352, 39, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdKMreZA', '5422086'), + (11353, 39, 1498, 'attending', '2022-07-01 15:39:21', '2025-12-17 19:47:19', 'kdKMreZA', '5422406'), + (11354, 39, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdKMreZA', '5424565'), + (11355, 39, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdKMreZA', '5426882'), + (11356, 39, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'kdKMreZA', '5427083'), + (11357, 39, 1508, 'maybe', '2022-07-12 18:48:08', '2025-12-17 19:47:19', 'kdKMreZA', '5433453'), + (11358, 39, 1511, 'not_attending', '2022-07-09 20:10:55', '2025-12-17 19:47:19', 'kdKMreZA', '5437733'), + (11359, 39, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdKMreZA', '5441125'), + (11360, 39, 1514, 'maybe', '2022-07-22 18:01:25', '2025-12-17 19:47:20', 'kdKMreZA', '5441126'), + (11361, 39, 1515, 'attending', '2022-08-02 01:31:30', '2025-12-17 19:47:21', 'kdKMreZA', '5441128'), + (11362, 39, 1516, 'not_attending', '2022-08-19 19:31:31', '2025-12-17 19:47:23', 'kdKMreZA', '5441129'), + (11363, 39, 1517, 'attending', '2022-08-26 20:52:37', '2025-12-17 19:47:23', 'kdKMreZA', '5441130'), + (11364, 39, 1518, 'maybe', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdKMreZA', '5441131'), + (11365, 39, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'kdKMreZA', '5441132'), + (11366, 39, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'kdKMreZA', '5446643'), + (11367, 39, 1531, 'attending', '2022-07-16 18:46:05', '2025-12-17 19:47:19', 'kdKMreZA', '5448756'), + (11368, 39, 1532, 'maybe', '2022-07-23 17:25:55', '2025-12-17 19:47:20', 'kdKMreZA', '5448757'), + (11369, 39, 1533, 'not_attending', '2022-07-29 09:23:25', '2025-12-17 19:47:21', 'kdKMreZA', '5448758'), + (11370, 39, 1534, 'attending', '2022-08-02 01:31:26', '2025-12-17 19:47:21', 'kdKMreZA', '5448759'), + (11371, 39, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdKMreZA', '5453325'), + (11372, 39, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdKMreZA', '5454516'), + (11373, 39, 1544, 'attending', '2022-09-17 12:05:39', '2025-12-17 19:47:11', 'kdKMreZA', '5454517'), + (11374, 39, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdKMreZA', '5454605'), + (11375, 39, 1547, 'maybe', '2022-07-26 19:21:33', '2025-12-17 19:47:20', 'kdKMreZA', '5454608'), + (11376, 39, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdKMreZA', '5455037'), + (11377, 39, 1552, 'attending', '2022-07-19 22:39:15', '2025-12-17 19:47:20', 'kdKMreZA', '5455149'), + (11378, 39, 1559, 'maybe', '2022-09-28 16:59:16', '2025-12-17 19:47:11', 'kdKMreZA', '5458731'), + (11379, 39, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdKMreZA', '5461278'), + (11380, 39, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdKMreZA', '5469480'), + (11381, 39, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'kdKMreZA', '5471073'), + (11382, 39, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdKMreZA', '5474663'), + (11383, 39, 1567, 'attending', '2022-07-31 16:47:23', '2025-12-17 19:47:21', 'kdKMreZA', '5477629'), + (11384, 39, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdKMreZA', '5482022'), + (11385, 39, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'kdKMreZA', '5482793'), + (11386, 39, 1580, 'maybe', '2022-08-08 10:58:18', '2025-12-17 19:47:22', 'kdKMreZA', '5488912'), + (11387, 39, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdKMreZA', '5492192'), + (11388, 39, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdKMreZA', '5493139'), + (11389, 39, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdKMreZA', '5493200'), + (11390, 39, 1591, 'attending', '2022-08-08 23:18:45', '2025-12-17 19:47:22', 'kdKMreZA', '5493764'), + (11391, 39, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdKMreZA', '5502188'), + (11392, 39, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdKMreZA', '5505059'), + (11393, 39, 1609, 'maybe', '2022-08-29 14:09:07', '2025-12-17 19:47:23', 'kdKMreZA', '5506590'), + (11394, 39, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdKMreZA', '5509055'), + (11395, 39, 1618, 'attending', '2022-08-28 20:43:08', '2025-12-17 19:47:23', 'kdKMreZA', '5512005'), + (11396, 39, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdKMreZA', '5512862'), + (11397, 39, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdKMreZA', '5513985'), + (11398, 39, 1626, 'not_attending', '2022-08-26 00:34:27', '2025-12-17 19:47:11', 'kdKMreZA', '5519981'), + (11399, 39, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdKMreZA', '5522550'), + (11400, 39, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdKMreZA', '5534683'), + (11401, 39, 1631, 'attending', '2022-08-27 15:13:24', '2025-12-17 19:47:23', 'kdKMreZA', '5534684'), + (11402, 39, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdKMreZA', '5537735'), + (11403, 39, 1636, 'attending', '2022-09-04 23:33:36', '2025-12-17 19:47:24', 'kdKMreZA', '5538454'), + (11404, 39, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdKMreZA', '5540859'), + (11405, 39, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdKMreZA', '5546619'), + (11406, 39, 1648, 'maybe', '2022-09-09 17:57:03', '2025-12-17 19:47:24', 'kdKMreZA', '5548974'), + (11407, 39, 1649, 'maybe', '2022-09-03 17:43:05', '2025-12-17 19:47:24', 'kdKMreZA', '5549346'), + (11408, 39, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'kdKMreZA', '5555245'), + (11409, 39, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdKMreZA', '5557747'), + (11410, 39, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdKMreZA', '5560255'), + (11411, 39, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdKMreZA', '5562906'), + (11412, 39, 1666, 'not_attending', '2022-09-27 22:40:51', '2025-12-17 19:47:11', 'kdKMreZA', '5563208'), + (11413, 39, 1667, 'attending', '2022-09-24 18:30:09', '2025-12-17 19:47:11', 'kdKMreZA', '5563221'), + (11414, 39, 1668, 'not_attending', '2022-10-01 15:28:23', '2025-12-17 19:47:12', 'kdKMreZA', '5563222'), + (11415, 39, 1672, 'attending', '2022-09-17 12:05:44', '2025-12-17 19:47:11', 'kdKMreZA', '5586237'), + (11416, 39, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdKMreZA', '5600604'), + (11417, 39, 1679, 'not_attending', '2022-10-04 22:13:16', '2025-12-17 19:47:12', 'kdKMreZA', '5601099'), + (11418, 39, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdKMreZA', '5605544'), + (11419, 39, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'kdKMreZA', '5606737'), + (11420, 39, 1704, 'attending', '2022-10-07 01:29:28', '2025-12-17 19:47:12', 'kdKMreZA', '5610508'), + (11421, 39, 1708, 'attending', '2022-10-05 21:56:17', '2025-12-17 19:47:12', 'kdKMreZA', '5617648'), + (11422, 39, 1719, 'attending', '2022-10-08 16:30:24', '2025-12-17 19:47:12', 'kdKMreZA', '5630958'), + (11423, 39, 1720, 'not_attending', '2022-10-14 12:42:14', '2025-12-17 19:47:12', 'kdKMreZA', '5630959'), + (11424, 39, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdKMreZA', '5630960'), + (11425, 39, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdKMreZA', '5630961'), + (11426, 39, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdKMreZA', '5630962'), + (11427, 39, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdKMreZA', '5630966'), + (11428, 39, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdKMreZA', '5630967'), + (11429, 39, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdKMreZA', '5630968'), + (11430, 39, 1727, 'not_attending', '2022-11-28 22:38:23', '2025-12-17 19:47:16', 'kdKMreZA', '5630969'), + (11431, 39, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdKMreZA', '5635406'), + (11432, 39, 1735, 'attending', '2022-10-08 17:30:06', '2025-12-17 19:47:12', 'kdKMreZA', '5637484'), + (11433, 39, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdKMreZA', '5638765'), + (11434, 39, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdKMreZA', '5640097'), + (11435, 39, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdKMreZA', '5640843'), + (11436, 39, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdKMreZA', '5641521'), + (11437, 39, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdKMreZA', '5642818'), + (11438, 39, 1747, 'maybe', '2022-10-25 12:26:42', '2025-12-17 19:47:14', 'kdKMreZA', '5648009'), + (11439, 39, 1750, 'not_attending', '2022-11-04 02:29:37', '2025-12-17 19:47:15', 'kdKMreZA', '5652365'), + (11440, 39, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdKMreZA', '5652395'), + (11441, 39, 1759, 'attending', '2022-10-22 17:06:52', '2025-12-17 19:47:13', 'kdKMreZA', '5669097'), + (11442, 39, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdKMreZA', '5670445'), + (11443, 39, 1763, 'maybe', '2022-11-11 21:46:31', '2025-12-17 19:47:15', 'kdKMreZA', '5670803'), + (11444, 39, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdKMreZA', '5671637'), + (11445, 39, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdKMreZA', '5672329'), + (11446, 39, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdKMreZA', '5674057'), + (11447, 39, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdKMreZA', '5674060'), + (11448, 39, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdKMreZA', '5677461'), + (11449, 39, 1776, 'maybe', '2022-11-08 20:04:03', '2025-12-17 19:47:15', 'kdKMreZA', '5691067'), + (11450, 39, 1781, 'maybe', '2022-11-02 17:21:34', '2025-12-17 19:47:15', 'kdKMreZA', '5696178'), + (11451, 39, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdKMreZA', '5698046'), + (11452, 39, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdKMreZA', '5699760'), + (11453, 39, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdKMreZA', '5741601'), + (11454, 39, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdKMreZA', '5763458'), + (11455, 39, 1799, 'attending', '2022-11-26 18:52:10', '2025-12-17 19:47:16', 'kdKMreZA', '5764666'), + (11456, 39, 1800, 'not_attending', '2022-11-19 20:43:46', '2025-12-17 19:47:16', 'kdKMreZA', '5764667'), + (11457, 39, 1801, 'not_attending', '2022-11-28 22:38:08', '2025-12-17 19:47:16', 'kdKMreZA', '5764668'), + (11458, 39, 1802, 'not_attending', '2022-12-10 15:20:12', '2025-12-17 19:47:17', 'kdKMreZA', '5764669'), + (11459, 39, 1804, 'attending', '2023-01-27 17:03:44', '2025-12-17 19:47:06', 'kdKMreZA', '5764674'), + (11460, 39, 1805, 'attending', '2023-02-02 22:16:25', '2025-12-17 19:47:06', 'kdKMreZA', '5764675'), + (11461, 39, 1806, 'attending', '2023-01-20 14:22:37', '2025-12-17 19:47:05', 'kdKMreZA', '5764676'), + (11462, 39, 1807, 'attending', '2023-01-12 22:01:11', '2025-12-17 19:47:05', 'kdKMreZA', '5764677'), + (11463, 39, 1808, 'attending', '2023-03-01 14:24:43', '2025-12-17 19:47:08', 'kdKMreZA', '5764678'), + (11464, 39, 1809, 'attending', '2023-04-15 14:38:08', '2025-12-17 19:46:59', 'kdKMreZA', '5764679'), + (11465, 39, 1810, 'attending', '2023-04-22 11:57:36', '2025-12-17 19:47:00', 'kdKMreZA', '5764680'), + (11466, 39, 1811, 'not_attending', '2023-05-06 15:33:28', '2025-12-17 19:47:02', 'kdKMreZA', '5764681'), + (11467, 39, 1812, 'attending', '2023-03-11 19:36:18', '2025-12-17 19:47:09', 'kdKMreZA', '5764682'), + (11468, 39, 1814, 'attending', '2023-02-25 19:01:14', '2025-12-17 19:47:08', 'kdKMreZA', '5764684'), + (11469, 39, 1815, 'not_attending', '2023-02-18 15:51:27', '2025-12-17 19:47:07', 'kdKMreZA', '5764685'), + (11470, 39, 1816, 'not_attending', '2023-05-20 15:28:19', '2025-12-17 19:47:03', 'kdKMreZA', '5764686'), + (11471, 39, 1818, 'not_attending', '2023-02-10 19:27:24', '2025-12-17 19:47:07', 'kdKMreZA', '5764688'), + (11472, 39, 1819, 'attending', '2023-03-31 23:23:08', '2025-12-17 19:46:58', 'kdKMreZA', '5764689'), + (11473, 39, 1820, 'not_attending', '2023-04-07 19:13:44', '2025-12-17 19:46:58', 'kdKMreZA', '5764690'), + (11474, 39, 1821, 'attending', '2023-03-17 11:42:17', '2025-12-17 19:46:56', 'kdKMreZA', '5764691'), + (11475, 39, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdKMreZA', '5774172'), + (11476, 39, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'kdKMreZA', '5818247'), + (11477, 39, 1833, 'maybe', '2022-12-05 14:23:19', '2025-12-17 19:47:16', 'kdKMreZA', '5819465'), + (11478, 39, 1834, 'not_attending', '2022-12-10 15:20:07', '2025-12-17 19:47:17', 'kdKMreZA', '5819470'), + (11479, 39, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdKMreZA', '5819471'), + (11480, 39, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdKMreZA', '5827739'), + (11481, 39, 1843, 'maybe', '2022-12-17 21:46:54', '2025-12-17 19:47:04', 'kdKMreZA', '5844304'), + (11482, 39, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdKMreZA', '5844306'), + (11483, 39, 1847, 'maybe', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdKMreZA', '5850159'), + (11484, 39, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdKMreZA', '5858999'), + (11485, 39, 1852, 'not_attending', '2023-01-11 21:05:57', '2025-12-17 19:47:05', 'kdKMreZA', '5869898'), + (11486, 39, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdKMreZA', '5871984'), + (11487, 39, 1855, 'maybe', '2023-01-12 21:57:04', '2025-12-17 19:47:05', 'kdKMreZA', '5873968'), + (11488, 39, 1859, 'maybe', '2023-01-20 19:47:52', '2025-12-17 19:47:05', 'kdKMreZA', '5876234'), + (11489, 39, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdKMreZA', '5876354'), + (11490, 39, 1864, 'attending', '2023-01-20 14:22:41', '2025-12-17 19:47:05', 'kdKMreZA', '5879675'), + (11491, 39, 1865, 'attending', '2023-01-27 17:03:48', '2025-12-17 19:47:06', 'kdKMreZA', '5879676'), + (11492, 39, 1866, 'maybe', '2023-01-24 14:37:17', '2025-12-17 19:47:05', 'kdKMreZA', '5880939'), + (11493, 39, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdKMreZA', '5880940'), + (11494, 39, 1868, 'maybe', '2023-02-21 21:15:42', '2025-12-17 19:47:07', 'kdKMreZA', '5880942'), + (11495, 39, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdKMreZA', '5880943'), + (11496, 39, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdKMreZA', '5887890'), + (11497, 39, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdKMreZA', '5888598'), + (11498, 39, 1879, 'attending', '2023-01-25 04:36:10', '2025-12-17 19:47:06', 'kdKMreZA', '5893001'), + (11499, 39, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdKMreZA', '5893260'), + (11500, 39, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdKMreZA', '5899826'), + (11501, 39, 1886, 'maybe', '2023-03-08 21:38:54', '2025-12-17 19:47:09', 'kdKMreZA', '5899930'), + (11502, 39, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdKMreZA', '5900199'), + (11503, 39, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdKMreZA', '5900200'), + (11504, 39, 1891, 'maybe', '2023-03-22 14:55:48', '2025-12-17 19:46:56', 'kdKMreZA', '5900202'), + (11505, 39, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdKMreZA', '5900203'), + (11506, 39, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdKMreZA', '5901108'), + (11507, 39, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdKMreZA', '5901126'), + (11508, 39, 1897, 'not_attending', '2023-02-10 19:27:27', '2025-12-17 19:47:07', 'kdKMreZA', '5901128'), + (11509, 39, 1898, 'maybe', '2023-02-01 21:08:32', '2025-12-17 19:47:06', 'kdKMreZA', '5901263'), + (11510, 39, 1900, 'maybe', '2023-02-02 22:16:08', '2025-12-17 19:47:06', 'kdKMreZA', '5901331'), + (11511, 39, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdKMreZA', '5909655'), + (11512, 39, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdKMreZA', '5910522'), + (11513, 39, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdKMreZA', '5910526'), + (11514, 39, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdKMreZA', '5910528'), + (11515, 39, 1920, 'maybe', '2023-02-13 01:49:57', '2025-12-17 19:47:07', 'kdKMreZA', '5914091'), + (11516, 39, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdKMreZA', '5916219'), + (11517, 39, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdKMreZA', '5936234'), + (11518, 39, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdKMreZA', '5958351'), + (11519, 39, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdKMreZA', '5959751'), + (11520, 39, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdKMreZA', '5959755'), + (11521, 39, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdKMreZA', '5960055'), + (11522, 39, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdKMreZA', '5961684'), + (11523, 39, 1943, 'maybe', '2023-03-13 12:45:34', '2025-12-17 19:47:10', 'kdKMreZA', '5962091'), + (11524, 39, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'kdKMreZA', '5962132'), + (11525, 39, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'kdKMreZA', '5962133'), + (11526, 39, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdKMreZA', '5962134'), + (11527, 39, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdKMreZA', '5962317'), + (11528, 39, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdKMreZA', '5962318'), + (11529, 39, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'kdKMreZA', '5965933'), + (11530, 39, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdKMreZA', '5967014'), + (11531, 39, 1955, 'maybe', '2023-03-29 15:18:17', '2025-12-17 19:46:57', 'kdKMreZA', '5972529'), + (11532, 39, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'kdKMreZA', '5972763'), + (11533, 39, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdKMreZA', '5972815'), + (11534, 39, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdKMreZA', '5974016'), + (11535, 39, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdKMreZA', '5981515'), + (11536, 39, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdKMreZA', '5993516'), + (11537, 39, 1971, 'maybe', '2023-03-20 15:03:06', '2025-12-17 19:46:56', 'kdKMreZA', '5993765'), + (11538, 39, 1972, 'not_attending', '2023-03-13 19:42:39', '2025-12-17 19:46:56', 'kdKMreZA', '5993776'), + (11539, 39, 1975, 'not_attending', '2023-03-26 15:55:41', '2025-12-17 19:46:57', 'kdKMreZA', '5995351'), + (11540, 39, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdKMreZA', '5998939'), + (11541, 39, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdKMreZA', '6028191'), + (11542, 39, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdKMreZA', '6040066'), + (11543, 39, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdKMreZA', '6042717'), + (11544, 39, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdKMreZA', '6044838'), + (11545, 39, 1987, 'maybe', '2023-04-18 17:48:52', '2025-12-17 19:47:00', 'kdKMreZA', '6044839'), + (11546, 39, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKMreZA', '6045684'), + (11547, 39, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdKMreZA', '6050104'), + (11548, 39, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdKMreZA', '6053195'), + (11549, 39, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdKMreZA', '6053198'), + (11550, 39, 2007, 'attending', '2023-04-07 03:16:18', '2025-12-17 19:46:58', 'kdKMreZA', '6055291'), + (11551, 39, 2008, 'maybe', '2023-04-07 19:49:52', '2025-12-17 19:46:58', 'kdKMreZA', '6055808'), + (11552, 39, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdKMreZA', '6056085'), + (11553, 39, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdKMreZA', '6056916'), + (11554, 39, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdKMreZA', '6059290'), + (11555, 39, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdKMreZA', '6060328'), + (11556, 39, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdKMreZA', '6061037'), + (11557, 39, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdKMreZA', '6061039'), + (11558, 39, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdKMreZA', '6067245'), + (11559, 39, 2025, 'attending', '2023-04-23 17:10:44', '2025-12-17 19:47:00', 'kdKMreZA', '6067457'), + (11560, 39, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdKMreZA', '6068094'), + (11561, 39, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdKMreZA', '6068252'), + (11562, 39, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdKMreZA', '6068253'), + (11563, 39, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdKMreZA', '6068254'), + (11564, 39, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'kdKMreZA', '6068280'), + (11565, 39, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdKMreZA', '6069093'), + (11566, 39, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdKMreZA', '6072528'), + (11567, 39, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdKMreZA', '6079840'), + (11568, 39, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdKMreZA', '6083398'), + (11569, 39, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdKMreZA', '6093504'), + (11570, 39, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdKMreZA', '6097414'), + (11571, 39, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdKMreZA', '6097442'), + (11572, 39, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdKMreZA', '6097684'), + (11573, 39, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdKMreZA', '6098762'), + (11574, 39, 2064, 'attending', '2023-06-24 16:43:47', '2025-12-17 19:46:50', 'kdKMreZA', '6099988'), + (11575, 39, 2065, 'attending', '2023-06-17 21:45:23', '2025-12-17 19:46:49', 'kdKMreZA', '6101169'), + (11576, 39, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdKMreZA', '6101361'), + (11577, 39, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdKMreZA', '6101362'), + (11578, 39, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'kdKMreZA', '6103752'), + (11579, 39, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdKMreZA', '6107314'), + (11580, 39, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdKMreZA', '6120034'), + (11581, 39, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'kdKMreZA', '6136733'), + (11582, 39, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdKMreZA', '6137989'), + (11583, 39, 2106, 'attending', '2023-06-20 22:52:04', '2025-12-17 19:46:50', 'kdKMreZA', '6150479'), + (11584, 39, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdKMreZA', '6150864'), + (11585, 39, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdKMreZA', '6155491'), + (11586, 39, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdKMreZA', '6164417'), + (11587, 39, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdKMreZA', '6166388'), + (11588, 39, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdKMreZA', '6176439'), + (11589, 39, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'kdKMreZA', '6180853'), + (11590, 39, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdKMreZA', '6182410'), + (11591, 39, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdKMreZA', '6185812'), + (11592, 39, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdKMreZA', '6187651'), + (11593, 39, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdKMreZA', '6187963'), + (11594, 39, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdKMreZA', '6187964'), + (11595, 39, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdKMreZA', '6187966'), + (11596, 39, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdKMreZA', '6187967'), + (11597, 39, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdKMreZA', '6187969'), + (11598, 39, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdKMreZA', '6334878'), + (11599, 39, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdKMreZA', '6337236'), + (11600, 39, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdKMreZA', '6337970'), + (11601, 39, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdKMreZA', '6338308'), + (11602, 39, 2159, 'maybe', '2023-07-21 14:09:03', '2025-12-17 19:46:53', 'kdKMreZA', '6338355'), + (11603, 39, 2160, 'attending', '2023-07-29 22:36:21', '2025-12-17 19:46:54', 'kdKMreZA', '6338358'), + (11604, 39, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'kdKMreZA', '6340845'), + (11605, 39, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdKMreZA', '6341710'), + (11606, 39, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdKMreZA', '6342044'), + (11607, 39, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdKMreZA', '6342298'), + (11608, 39, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdKMreZA', '6343294'), + (11609, 39, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdKMreZA', '6347034'), + (11610, 39, 2177, 'maybe', '2023-08-12 13:06:45', '2025-12-17 19:46:55', 'kdKMreZA', '6347053'), + (11611, 39, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdKMreZA', '6347056'), + (11612, 39, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdKMreZA', '6353830'), + (11613, 39, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdKMreZA', '6353831'), + (11614, 39, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdKMreZA', '6357867'), + (11615, 39, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdKMreZA', '6358652'), + (11616, 39, 2200, 'maybe', '2023-08-07 19:47:01', '2025-12-17 19:46:55', 'kdKMreZA', '6359850'), + (11617, 39, 2204, 'maybe', '2023-08-19 15:57:24', '2025-12-17 19:46:55', 'kdKMreZA', '6361542'), + (11618, 39, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdKMreZA', '6361709'), + (11619, 39, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdKMreZA', '6361710'), + (11620, 39, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdKMreZA', '6361711'), + (11621, 39, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdKMreZA', '6361712'), + (11622, 39, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdKMreZA', '6361713'), + (11623, 39, 2232, 'maybe', '2023-08-23 12:48:38', '2025-12-17 19:46:55', 'kdKMreZA', '6374818'), + (11624, 39, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdKMreZA', '6382573'), + (11625, 39, 2239, 'not_attending', '2023-08-31 18:14:24', '2025-12-17 19:46:56', 'kdKMreZA', '6387592'), + (11626, 39, 2240, 'not_attending', '2023-09-05 22:21:08', '2025-12-17 19:46:56', 'kdKMreZA', '6388603'), + (11627, 39, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdKMreZA', '6388604'), + (11628, 39, 2242, 'maybe', '2023-09-23 17:09:09', '2025-12-17 19:46:45', 'kdKMreZA', '6388606'), + (11629, 39, 2243, 'maybe', '2023-09-05 22:20:57', '2025-12-17 19:46:56', 'kdKMreZA', '6393686'), + (11630, 39, 2244, 'maybe', '2023-09-11 16:45:46', '2025-12-17 19:46:44', 'kdKMreZA', '6393700'), + (11631, 39, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdKMreZA', '6394629'), + (11632, 39, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdKMreZA', '6394631'), + (11633, 39, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdKMreZA', '6440863'), + (11634, 39, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdKMreZA', '6445440'), + (11635, 39, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdKMreZA', '6453951'), + (11636, 39, 2279, 'maybe', '2023-10-09 17:02:58', '2025-12-17 19:46:46', 'kdKMreZA', '6455460'), + (11637, 39, 2285, 'attending', '2023-10-27 22:41:44', '2025-12-17 19:46:47', 'kdKMreZA', '6460929'), + (11638, 39, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdKMreZA', '6461696'), + (11639, 39, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdKMreZA', '6462129'), + (11640, 39, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdKMreZA', '6463218'), + (11641, 39, 2296, 'maybe', '2023-10-26 18:46:40', '2025-12-17 19:46:47', 'kdKMreZA', '6468393'), + (11642, 39, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdKMreZA', '6472181'), + (11643, 39, 2303, 'not_attending', '2023-10-28 18:01:39', '2025-12-17 19:46:47', 'kdKMreZA', '6482691'), + (11644, 39, 2304, 'maybe', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdKMreZA', '6482693'), + (11645, 39, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdKMreZA', '6484200'), + (11646, 39, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdKMreZA', '6484680'), + (11647, 39, 2310, 'attending', '2023-11-11 21:30:20', '2025-12-17 19:46:47', 'kdKMreZA', '6487709'), + (11648, 39, 2311, 'maybe', '2023-11-05 22:55:05', '2025-12-17 19:46:47', 'kdKMreZA', '6487725'), + (11649, 39, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdKMreZA', '6507741'), + (11650, 39, 2322, 'attending', '2023-11-16 16:56:29', '2025-12-17 19:46:48', 'kdKMreZA', '6514659'), + (11651, 39, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdKMreZA', '6514660'), + (11652, 39, 2324, 'not_attending', '2023-12-09 17:22:51', '2025-12-17 19:46:49', 'kdKMreZA', '6514662'), + (11653, 39, 2325, 'maybe', '2023-12-16 19:02:54', '2025-12-17 19:46:36', 'kdKMreZA', '6514663'), + (11654, 39, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdKMreZA', '6519103'), + (11655, 39, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdKMreZA', '6535681'), + (11656, 39, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdKMreZA', '6584747'), + (11657, 39, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdKMreZA', '6587097'), + (11658, 39, 2362, 'maybe', '2023-12-04 12:36:40', '2025-12-17 19:46:49', 'kdKMreZA', '6605708'), + (11659, 39, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdKMreZA', '6609022'), + (11660, 39, 2365, 'not_attending', '2023-12-23 21:31:24', '2025-12-17 19:46:37', 'kdKMreZA', '6613093'), + (11661, 39, 2371, 'maybe', '2023-12-15 17:17:58', '2025-12-17 19:46:36', 'kdKMreZA', '6624495'), + (11662, 39, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'kdKMreZA', '6632757'), + (11663, 39, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdKMreZA', '6644187'), + (11664, 39, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdKMreZA', '6648951'), + (11665, 39, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdKMreZA', '6648952'), + (11666, 39, 2388, 'maybe', '2024-01-06 21:08:13', '2025-12-17 19:46:37', 'kdKMreZA', '6649244'), + (11667, 39, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdKMreZA', '6655401'), + (11668, 39, 2399, 'not_attending', '2024-01-13 18:19:55', '2025-12-17 19:46:38', 'kdKMreZA', '6657583'), + (11669, 39, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdKMreZA', '6661585'), + (11670, 39, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdKMreZA', '6661588'), + (11671, 39, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdKMreZA', '6661589'), + (11672, 39, 2406, 'attending', '2024-01-20 00:57:11', '2025-12-17 19:46:40', 'kdKMreZA', '6692344'), + (11673, 39, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdKMreZA', '6699906'), + (11674, 39, 2408, 'attending', '2024-01-26 19:14:23', '2025-12-17 19:46:40', 'kdKMreZA', '6699907'), + (11675, 39, 2409, 'not_attending', '2024-02-03 15:28:20', '2025-12-17 19:46:41', 'kdKMreZA', '6699909'), + (11676, 39, 2410, 'not_attending', '2024-02-11 00:59:58', '2025-12-17 19:46:41', 'kdKMreZA', '6699911'), + (11677, 39, 2411, 'not_attending', '2024-02-16 19:50:46', '2025-12-17 19:46:42', 'kdKMreZA', '6699913'), + (11678, 39, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdKMreZA', '6701109'), + (11679, 39, 2424, 'not_attending', '2024-01-20 00:56:42', '2025-12-17 19:46:40', 'kdKMreZA', '6705143'), + (11680, 39, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdKMreZA', '6705219'), + (11681, 39, 2426, 'maybe', '2024-01-20 18:29:35', '2025-12-17 19:46:40', 'kdKMreZA', '6705569'), + (11682, 39, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdKMreZA', '6710153'), + (11683, 39, 2429, 'maybe', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdKMreZA', '6711552'), + (11684, 39, 2430, 'maybe', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdKMreZA', '6711553'), + (11685, 39, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdKMreZA', '6722688'), + (11686, 39, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdKMreZA', '6730620'), + (11687, 39, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'kdKMreZA', '6730642'), + (11688, 39, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdKMreZA', '6740364'), + (11689, 39, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdKMreZA', '6743829'), + (11690, 39, 2462, 'attending', '2024-02-12 20:49:51', '2025-12-17 19:46:41', 'kdKMreZA', '6744701'), + (11691, 39, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdKMreZA', '7030380'), + (11692, 39, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'kdKMreZA', '7033677'), + (11693, 39, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'kdKMreZA', '7035415'), + (11694, 39, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdKMreZA', '7044715'), + (11695, 39, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdKMreZA', '7050318'), + (11696, 39, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdKMreZA', '7050319'), + (11697, 39, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdKMreZA', '7050322'), + (11698, 39, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdKMreZA', '7057804'), + (11699, 39, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'kdKMreZA', '7059866'), + (11700, 39, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdKMreZA', '7072824'), + (11701, 39, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdKMreZA', '7074348'), + (11702, 39, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdKMreZA', '7074364'), + (11703, 39, 2531, 'maybe', '2024-08-29 16:47:27', '2025-12-17 19:46:32', 'kdKMreZA', '7074378'), + (11704, 39, 2537, 'not_attending', '2024-03-23 17:20:22', '2025-12-17 19:46:33', 'kdKMreZA', '7085484'), + (11705, 39, 2539, 'not_attending', '2024-04-04 16:18:28', '2025-12-17 19:46:33', 'kdKMreZA', '7085486'), + (11706, 39, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdKMreZA', '7089267'), + (11707, 39, 2541, 'maybe', '2024-03-18 18:02:00', '2025-12-17 19:46:33', 'kdKMreZA', '7089404'), + (11708, 39, 2548, 'maybe', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdKMreZA', '7098747'), + (11709, 39, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdKMreZA', '7113468'), + (11710, 39, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdKMreZA', '7114856'), + (11711, 39, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdKMreZA', '7114951'), + (11712, 39, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdKMreZA', '7114955'), + (11713, 39, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdKMreZA', '7114956'), + (11714, 39, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdKMreZA', '7114957'), + (11715, 39, 2564, 'maybe', '2024-04-08 14:50:35', '2025-12-17 19:46:33', 'kdKMreZA', '7134735'), + (11716, 39, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'kdKMreZA', '7153615'), + (11717, 39, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdKMreZA', '7159484'), + (11718, 39, 2584, 'maybe', '2024-04-21 16:13:06', '2025-12-17 19:46:34', 'kdKMreZA', '7175057'), + (11719, 39, 2585, 'attending', '2024-04-24 18:03:49', '2025-12-17 19:46:34', 'kdKMreZA', '7175828'), + (11720, 39, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdKMreZA', '7178446'), + (11721, 39, 2601, 'maybe', '2024-04-24 18:03:42', '2025-12-17 19:46:34', 'kdKMreZA', '7197023'), + (11722, 39, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'kdKMreZA', '7220467'), + (11723, 39, 2604, 'attending', '2024-05-29 22:08:58', '2025-12-17 19:46:36', 'kdKMreZA', '7225670'), + (11724, 39, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdKMreZA', '7240354'), + (11725, 39, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdKMreZA', '7251633'), + (11726, 39, 2623, 'maybe', '2024-05-10 13:48:26', '2025-12-17 19:46:35', 'kdKMreZA', '7263048'), + (11727, 39, 2627, 'attending', '2024-05-25 16:57:57', '2025-12-17 19:46:35', 'kdKMreZA', '7264724'), + (11728, 39, 2628, 'maybe', '2024-06-01 20:51:45', '2025-12-17 19:46:36', 'kdKMreZA', '7264725'), + (11729, 39, 2629, 'not_attending', '2024-06-07 16:04:58', '2025-12-17 19:46:28', 'kdKMreZA', '7264726'), + (11730, 39, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'kdKMreZA', '7302674'), + (11731, 39, 2678, 'not_attending', '2024-06-15 15:34:51', '2025-12-17 19:46:28', 'kdKMreZA', '7319489'), + (11732, 39, 2679, 'maybe', '2024-06-22 20:24:04', '2025-12-17 19:46:29', 'kdKMreZA', '7319490'), + (11733, 39, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdKMreZA', '7324073'), + (11734, 39, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdKMreZA', '7324074'), + (11735, 39, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdKMreZA', '7324075'), + (11736, 39, 2691, 'attending', '2024-07-20 18:07:44', '2025-12-17 19:46:30', 'kdKMreZA', '7324076'), + (11737, 39, 2692, 'not_attending', '2024-07-25 20:37:11', '2025-12-17 19:46:30', 'kdKMreZA', '7324077'), + (11738, 39, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdKMreZA', '7324078'), + (11739, 39, 2694, 'not_attending', '2024-08-09 18:24:07', '2025-12-17 19:46:31', 'kdKMreZA', '7324079'), + (11740, 39, 2695, 'attending', '2024-08-16 09:59:25', '2025-12-17 19:46:31', 'kdKMreZA', '7324080'), + (11741, 39, 2696, 'attending', '2024-08-24 16:17:25', '2025-12-17 19:46:32', 'kdKMreZA', '7324081'), + (11742, 39, 2697, 'attending', '2024-08-29 16:47:51', '2025-12-17 19:46:32', 'kdKMreZA', '7324082'), + (11743, 39, 2698, 'not_attending', '2024-09-05 19:20:21', '2025-12-17 19:46:24', 'kdKMreZA', '7324083'), + (11744, 39, 2699, 'attending', '2024-06-12 21:57:55', '2025-12-17 19:46:28', 'kdKMreZA', '7324385'), + (11745, 39, 2706, 'attending', '2024-06-19 17:44:26', '2025-12-17 19:46:28', 'kdKMreZA', '7324947'), + (11746, 39, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdKMreZA', '7331457'), + (11747, 39, 2743, 'maybe', '2024-07-05 13:28:36', '2025-12-17 19:46:29', 'kdKMreZA', '7345688'), + (11748, 39, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'kdKMreZA', '7356752'), + (11749, 39, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdKMreZA', '7363643'), + (11750, 39, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdKMreZA', '7368606'), + (11751, 39, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdKMreZA', '7397462'), + (11752, 39, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdKMreZA', '7424275'), + (11753, 39, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'kdKMreZA', '7424276'), + (11754, 39, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdKMreZA', '7432751'), + (11755, 39, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdKMreZA', '7432752'), + (11756, 39, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdKMreZA', '7432753'), + (11757, 39, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdKMreZA', '7432754'), + (11758, 39, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdKMreZA', '7432755'), + (11759, 39, 2829, 'maybe', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdKMreZA', '7432756'), + (11760, 39, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdKMreZA', '7432758'), + (11761, 39, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdKMreZA', '7432759'), + (11762, 39, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdKMreZA', '7433834'), + (11763, 39, 2839, 'not_attending', '2024-09-25 17:59:31', '2025-12-17 19:46:25', 'kdKMreZA', '7439262'), + (11764, 39, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'kdKMreZA', '7470197'), + (11765, 39, 2878, 'maybe', '2024-10-16 18:19:36', '2025-12-17 19:46:26', 'kdKMreZA', '7633857'), + (11766, 39, 2883, 'maybe', '2024-10-23 22:09:37', '2025-12-17 19:46:26', 'kdKMreZA', '7649157'), + (11767, 39, 2892, 'not_attending', '2024-10-30 19:04:02', '2025-12-17 19:46:26', 'kdKMreZA', '7672064'), + (11768, 39, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdKMreZA', '7685613'), + (11769, 39, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdKMreZA', '7688194'), + (11770, 39, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdKMreZA', '7688196'), + (11771, 39, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdKMreZA', '7688289'), + (11772, 39, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdKMreZA', '7692763'), + (11773, 39, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdKMreZA', '7697552'), + (11774, 39, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdKMreZA', '7699878'), + (11775, 39, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdKMreZA', '7704043'), + (11776, 39, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdKMreZA', '7712467'), + (11777, 39, 2925, 'attending', '2024-12-14 13:34:58', '2025-12-17 19:46:21', 'kdKMreZA', '7713584'), + (11778, 39, 2926, 'not_attending', '2024-12-06 19:32:42', '2025-12-17 19:46:21', 'kdKMreZA', '7713585'), + (11779, 39, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdKMreZA', '7713586'), + (11780, 39, 2930, 'maybe', '2024-12-09 23:02:03', '2025-12-17 19:46:21', 'kdKMreZA', '7724554'), + (11781, 39, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdKMreZA', '7738518'), + (11782, 39, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'kdKMreZA', '7750632'), + (11783, 39, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdKMreZA', '7750636'), + (11784, 39, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdKMreZA', '7796540'), + (11785, 39, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdKMreZA', '7796541'), + (11786, 39, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdKMreZA', '7796542'), + (11787, 39, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdKMreZA', '7825913'), + (11788, 39, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdKMreZA', '7826209'), + (11789, 39, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdKMreZA', '7834742'), + (11790, 39, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'kdKMreZA', '7842108'), + (11791, 39, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdKMreZA', '7842902'), + (11792, 39, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdKMreZA', '7842903'), + (11793, 39, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdKMreZA', '7842904'), + (11794, 39, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdKMreZA', '7842905'), + (11795, 39, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdKMreZA', '7855719'), + (11796, 39, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdKMreZA', '7860683'), + (11797, 39, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdKMreZA', '7860684'), + (11798, 39, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdKMreZA', '7866095'), + (11799, 39, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdKMreZA', '7869170'), + (11800, 39, 3014, 'attending', '2025-04-05 16:08:31', '2025-12-17 19:46:20', 'kdKMreZA', '7869185'), + (11801, 39, 3015, 'attending', '2025-04-26 14:08:12', '2025-12-17 19:46:20', 'kdKMreZA', '7869186'), + (11802, 39, 3016, 'attending', '2025-04-19 16:40:10', '2025-12-17 19:46:20', 'kdKMreZA', '7869187'), + (11803, 39, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdKMreZA', '7869188'), + (11804, 39, 3018, 'attending', '2025-04-12 17:33:40', '2025-12-17 19:46:20', 'kdKMreZA', '7869189'), + (11805, 39, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdKMreZA', '7869201'), + (11806, 39, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdKMreZA', '7877465'), + (11807, 39, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'kdKMreZA', '7878570'), + (11808, 39, 3055, 'maybe', '2025-03-27 20:03:22', '2025-12-17 19:46:19', 'kdKMreZA', '7888118'), + (11809, 39, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdKMreZA', '7888250'), + (11810, 39, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdKMreZA', '7904777'), + (11811, 39, 3094, 'attending', '2025-05-10 15:29:51', '2025-12-17 19:46:21', 'kdKMreZA', '8342292'), + (11812, 39, 3095, 'not_attending', '2025-05-03 12:31:10', '2025-12-17 19:46:20', 'kdKMreZA', '8342293'), + (11813, 39, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdKMreZA', '8349164'), + (11814, 39, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdKMreZA', '8349545'), + (11815, 39, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'kdKMreZA', '8353584'), + (11816, 39, 3126, 'attending', '2025-05-14 20:23:42', '2025-12-17 19:46:21', 'kdKMreZA', '8365614'), + (11817, 39, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdKMreZA', '8368028'), + (11818, 39, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdKMreZA', '8368029'), + (11819, 39, 3133, 'attending', '2025-05-30 20:37:58', '2025-12-17 19:46:14', 'kdKMreZA', '8368030'), + (11820, 39, 3136, 'maybe', '2025-05-21 19:10:34', '2025-12-17 19:46:21', 'kdKMreZA', '8374152'), + (11821, 39, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdKMreZA', '8388462'), + (11822, 39, 3150, 'maybe', '2025-06-21 00:06:19', '2025-12-17 19:46:15', 'kdKMreZA', '8393174'), + (11823, 39, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdKMreZA', '8400273'), + (11824, 39, 3154, 'not_attending', '2025-06-26 21:02:45', '2025-12-17 19:46:15', 'kdKMreZA', '8400274'), + (11825, 39, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdKMreZA', '8400275'), + (11826, 39, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'kdKMreZA', '8400276'), + (11827, 39, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdKMreZA', '8404977'), + (11828, 39, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdKMreZA', '8430783'), + (11829, 39, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdKMreZA', '8430784'), + (11830, 39, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdKMreZA', '8430799'), + (11831, 39, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdKMreZA', '8430800'), + (11832, 39, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdKMreZA', '8430801'), + (11833, 39, 3186, 'attending', '2025-07-02 12:31:01', '2025-12-17 19:46:16', 'kdKMreZA', '8431527'), + (11834, 39, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdKMreZA', '8438709'), + (11835, 39, 3189, 'not_attending', '2025-07-10 20:28:51', '2025-12-17 19:46:16', 'kdKMreZA', '8438849'), + (11836, 39, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdKMreZA', '8457738'), + (11837, 39, 3195, 'attending', '2025-08-06 20:29:05', '2025-12-17 19:46:17', 'kdKMreZA', '8458118'), + (11838, 39, 3196, 'attending', '2025-08-13 14:16:12', '2025-12-17 19:46:17', 'kdKMreZA', '8458543'), + (11839, 39, 3198, 'maybe', '2025-08-20 18:58:46', '2025-12-17 19:46:18', 'kdKMreZA', '8459268'), + (11840, 39, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdKMreZA', '8459566'), + (11841, 39, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdKMreZA', '8459567'), + (11842, 39, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdKMreZA', '8461032'), + (11843, 39, 3210, 'maybe', '2025-08-27 11:41:15', '2025-12-17 19:46:18', 'kdKMreZA', '8471162'), + (11844, 39, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdKMreZA', '8477877'), + (11845, 39, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdKMreZA', '8485688'), + (11846, 39, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdKMreZA', '8490587'), + (11847, 39, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdKMreZA', '8493552'), + (11848, 39, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdKMreZA', '8493553'), + (11849, 39, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdKMreZA', '8493554'), + (11850, 39, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdKMreZA', '8493555'), + (11851, 39, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdKMreZA', '8493556'), + (11852, 39, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdKMreZA', '8493557'), + (11853, 39, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdKMreZA', '8493558'), + (11854, 39, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdKMreZA', '8493559'), + (11855, 39, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdKMreZA', '8493560'), + (11856, 39, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdKMreZA', '8493561'), + (11857, 39, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdKMreZA', '8493572'), + (11858, 39, 3263, 'maybe', '2025-09-10 21:33:59', '2025-12-17 19:46:12', 'kdKMreZA', '8514576'), + (11859, 39, 3264, 'maybe', '2025-09-17 20:47:46', '2025-12-17 19:46:12', 'kdKMreZA', '8514577'), + (11860, 39, 3266, 'maybe', '2025-10-01 21:25:36', '2025-12-17 19:46:13', 'kdKMreZA', '8514579'), + (11861, 39, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdKMreZA', '8540725'), + (11862, 39, 3289, 'not_attending', '2025-10-21 20:12:40', '2025-12-17 19:46:14', 'kdKMreZA', '8542939'), + (11863, 39, 3295, 'attending', '2025-11-01 21:17:18', '2025-12-17 19:46:14', 'kdKMreZA', '8547541'), + (11864, 39, 3300, 'attending', '2025-11-08 17:43:26', '2025-12-17 19:46:14', 'kdKMreZA', '8549145'), + (11865, 39, 3302, 'not_attending', '2025-11-14 16:39:38', '2025-12-17 19:46:14', 'kdKMreZA', '8550022'), + (11866, 39, 3304, 'attending', '2025-11-17 23:41:20', '2025-12-17 19:46:14', 'kdKMreZA', '8550024'), + (11867, 39, 3305, 'attending', '2025-12-06 20:02:07', '2025-12-17 19:46:11', 'kdKMreZA', '8550025'), + (11868, 39, 3306, 'attending', '2025-12-13 17:22:15', '2025-12-17 19:46:11', 'kdKMreZA', '8550026'), + (11869, 39, 3307, 'maybe', '2025-12-18 01:22:14', '2025-12-18 01:22:14', NULL, NULL), + (11870, 39, 3308, 'attending', '2025-11-11 22:55:26', '2025-12-17 19:46:14', 'kdKMreZA', '8550408'), + (11871, 39, 3311, 'attending', '2025-12-10 00:56:01', '2025-12-17 19:46:11', 'kdKMreZA', '8550412'), + (11872, 39, 3313, 'attending', '2025-11-05 22:24:40', '2025-12-17 19:46:14', 'kdKMreZA', '8550896'), + (11873, 39, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdKMreZA', '8555421'), + (11874, 39, 3327, 'attending', '2025-12-05 00:57:13', '2025-12-17 19:46:11', 'kdKMreZA', '8557174'), + (11875, 39, 3346, 'attending', '2026-01-02 16:53:38', '2026-01-02 16:53:38', NULL, NULL), + (11876, 40, 3237, 'attending', '2025-09-05 01:26:58', '2025-12-17 19:46:11', 'xAYyPO0A', '8493553'), + (11877, 40, 3242, 'attending', '2025-10-24 23:14:15', '2025-12-17 19:46:14', 'xAYyPO0A', '8493558'), + (11878, 40, 3253, 'attending', '2025-10-15 00:04:49', '2025-12-17 19:46:14', 'xAYyPO0A', '8493572'), + (11879, 40, 3276, 'attending', '2025-09-22 20:54:02', '2025-12-17 19:46:12', 'xAYyPO0A', '8529058'), + (11880, 40, 3284, 'attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAYyPO0A', '8540725'), + (11881, 40, 3286, 'not_attending', '2025-10-15 00:04:20', '2025-12-17 19:46:14', 'xAYyPO0A', '8540728'), + (11882, 40, 3287, 'maybe', '2025-10-15 00:04:02', '2025-12-17 19:46:14', 'xAYyPO0A', '8540729'), + (11883, 40, 3289, 'attending', '2025-10-21 23:44:09', '2025-12-17 19:46:14', 'xAYyPO0A', '8542939'), + (11884, 40, 3293, 'attending', '2025-10-15 05:54:23', '2025-12-17 19:46:14', 'xAYyPO0A', '8543836'), + (11885, 40, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAYyPO0A', '8555421'), + (11886, 40, 3346, 'not_attending', '2026-01-02 22:05:34', '2026-01-02 22:05:34', NULL, NULL), + (11887, 41, 2210, 'maybe', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxMXk3Om', '6361711'), + (11888, 41, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxMXk3Om', '6361713'), + (11889, 41, 2239, 'maybe', '2023-09-02 21:49:40', '2025-12-17 19:46:56', 'dxMXk3Om', '6387592'), + (11890, 41, 2240, 'attending', '2023-09-09 01:18:29', '2025-12-17 19:46:56', 'dxMXk3Om', '6388603'), + (11891, 41, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxMXk3Om', '6388604'), + (11892, 41, 2242, 'attending', '2023-09-23 15:25:35', '2025-12-17 19:46:45', 'dxMXk3Om', '6388606'), + (11893, 41, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxMXk3Om', '6394629'), + (11894, 41, 2249, 'attending', '2023-09-20 20:11:40', '2025-12-17 19:46:45', 'dxMXk3Om', '6394630'), + (11895, 41, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxMXk3Om', '6394631'), + (11896, 41, 2253, 'attending', '2023-09-30 03:48:12', '2025-12-17 19:46:45', 'dxMXk3Om', '6401811'), + (11897, 41, 2259, 'attending', '2023-09-23 01:21:34', '2025-12-17 19:46:45', 'dxMXk3Om', '6421257'), + (11898, 41, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxMXk3Om', '6440863'), + (11899, 41, 2270, 'attending', '2023-10-10 21:20:09', '2025-12-17 19:46:46', 'dxMXk3Om', '6443067'), + (11900, 41, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dxMXk3Om', '6445440'), + (11901, 41, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dxMXk3Om', '6453951'), + (11902, 41, 2279, 'maybe', '2023-10-12 14:14:18', '2025-12-17 19:46:46', 'dxMXk3Om', '6455460'), + (11903, 41, 2285, 'attending', '2023-10-27 22:09:45', '2025-12-17 19:46:47', 'dxMXk3Om', '6460929'), + (11904, 41, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dxMXk3Om', '6461696'), + (11905, 41, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dxMXk3Om', '6462129'), + (11906, 41, 2290, 'attending', '2023-10-18 20:18:42', '2025-12-17 19:46:46', 'dxMXk3Om', '6462214'), + (11907, 41, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dxMXk3Om', '6463218'), + (11908, 41, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dxMXk3Om', '6472181'), + (11909, 41, 2302, 'attending', '2023-10-23 22:27:01', '2025-12-17 19:46:46', 'dxMXk3Om', '6482535'), + (11910, 41, 2303, 'attending', '2023-10-28 12:48:48', '2025-12-17 19:46:47', 'dxMXk3Om', '6482691'), + (11911, 41, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxMXk3Om', '6482693'), + (11912, 41, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dxMXk3Om', '6484200'), + (11913, 41, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dxMXk3Om', '6484680'), + (11914, 41, 2310, 'not_attending', '2023-11-11 00:00:32', '2025-12-17 19:46:47', 'dxMXk3Om', '6487709'), + (11915, 41, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxMXk3Om', '6507741'), + (11916, 41, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxMXk3Om', '6514659'), + (11917, 41, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMXk3Om', '6514660'), + (11918, 41, 2324, 'not_attending', '2023-12-09 18:00:44', '2025-12-17 19:46:49', 'dxMXk3Om', '6514662'), + (11919, 41, 2325, 'attending', '2023-12-16 16:39:08', '2025-12-17 19:46:36', 'dxMXk3Om', '6514663'), + (11920, 41, 2331, 'attending', '2023-11-15 00:47:02', '2025-12-17 19:46:47', 'dxMXk3Om', '6518640'), + (11921, 41, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxMXk3Om', '6519103'), + (11922, 41, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dxMXk3Om', '6535681'), + (11923, 41, 2338, 'attending', '2023-11-25 19:11:09', '2025-12-17 19:46:48', 'dxMXk3Om', '6538868'), + (11924, 41, 2345, 'attending', '2023-11-29 21:19:00', '2025-12-17 19:46:48', 'dxMXk3Om', '6582414'), + (11925, 41, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxMXk3Om', '6584747'), + (11926, 41, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMXk3Om', '6587097'), + (11927, 41, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMXk3Om', '6609022'), + (11928, 41, 2365, 'maybe', '2023-12-23 00:24:54', '2025-12-17 19:46:37', 'dxMXk3Om', '6613093'), + (11929, 41, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMXk3Om', '6632757'), + (11930, 41, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMXk3Om', '6644187'), + (11931, 41, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMXk3Om', '6648951'), + (11932, 41, 2387, 'maybe', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMXk3Om', '6648952'), + (11933, 41, 2388, 'attending', '2024-01-06 03:16:13', '2025-12-17 19:46:37', 'dxMXk3Om', '6649244'), + (11934, 41, 2391, 'maybe', '2024-01-12 20:29:24', '2025-12-17 19:46:37', 'dxMXk3Om', '6654138'), + (11935, 41, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMXk3Om', '6655401'), + (11936, 41, 2399, 'maybe', '2024-01-13 15:20:27', '2025-12-17 19:46:38', 'dxMXk3Om', '6657583'), + (11937, 41, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMXk3Om', '6661585'), + (11938, 41, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMXk3Om', '6661588'), + (11939, 41, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMXk3Om', '6661589'), + (11940, 41, 2406, 'maybe', '2024-01-19 14:30:22', '2025-12-17 19:46:40', 'dxMXk3Om', '6692344'), + (11941, 41, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMXk3Om', '6699906'), + (11942, 41, 2408, 'maybe', '2024-01-27 17:21:25', '2025-12-17 19:46:40', 'dxMXk3Om', '6699907'), + (11943, 41, 2409, 'maybe', '2024-02-03 21:33:11', '2025-12-17 19:46:41', 'dxMXk3Om', '6699909'), + (11944, 41, 2410, 'attending', '2024-02-11 00:42:26', '2025-12-17 19:46:41', 'dxMXk3Om', '6699911'), + (11945, 41, 2411, 'maybe', '2024-02-09 23:02:29', '2025-12-17 19:46:42', 'dxMXk3Om', '6699913'), + (11946, 41, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMXk3Om', '6701109'), + (11947, 41, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMXk3Om', '6705219'), + (11948, 41, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMXk3Om', '6710153'), + (11949, 41, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMXk3Om', '6711552'), + (11950, 41, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMXk3Om', '6711553'), + (11951, 41, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMXk3Om', '6722688'), + (11952, 41, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMXk3Om', '6730620'), + (11953, 41, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMXk3Om', '6730642'), + (11954, 41, 2444, 'maybe', '2024-02-09 23:02:13', '2025-12-17 19:46:41', 'dxMXk3Om', '6734367'), + (11955, 41, 2447, 'not_attending', '2024-03-15 13:52:07', '2025-12-17 19:46:32', 'dxMXk3Om', '6734370'), + (11956, 41, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMXk3Om', '6740364'), + (11957, 41, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMXk3Om', '6743829'), + (11958, 41, 2466, 'maybe', '2024-02-14 14:46:27', '2025-12-17 19:46:41', 'dxMXk3Om', '7026777'), + (11959, 41, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMXk3Om', '7030380'), + (11960, 41, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMXk3Om', '7033677'), + (11961, 41, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMXk3Om', '7035415'), + (11962, 41, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMXk3Om', '7044715'), + (11963, 41, 2484, 'maybe', '2024-03-05 21:33:50', '2025-12-17 19:46:43', 'dxMXk3Om', '7046836'), + (11964, 41, 2489, 'attending', '2024-02-27 23:07:15', '2025-12-17 19:46:43', 'dxMXk3Om', '7050161'), + (11965, 41, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMXk3Om', '7050318'), + (11966, 41, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMXk3Om', '7050319'), + (11967, 41, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMXk3Om', '7050322'), + (11968, 41, 2498, 'attending', '2024-03-20 15:34:02', '2025-12-17 19:46:33', 'dxMXk3Om', '7057662'), + (11969, 41, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMXk3Om', '7057804'), + (11970, 41, 2500, 'maybe', '2024-03-06 02:16:59', '2025-12-17 19:46:43', 'dxMXk3Om', '7058603'), + (11971, 41, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dxMXk3Om', '7059866'), + (11972, 41, 2503, 'attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'dxMXk3Om', '7062500'), + (11973, 41, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMXk3Om', '7072824'), + (11974, 41, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMXk3Om', '7074348'), + (11975, 41, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxMXk3Om', '7074364'), + (11976, 41, 2534, 'maybe', '2024-03-13 22:48:56', '2025-12-17 19:46:32', 'dxMXk3Om', '7076875'), + (11977, 41, 2539, 'attending', '2024-04-06 21:19:22', '2025-12-17 19:46:33', 'dxMXk3Om', '7085486'), + (11978, 41, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMXk3Om', '7089267'), + (11979, 41, 2541, 'attending', '2024-03-18 12:57:39', '2025-12-17 19:46:33', 'dxMXk3Om', '7089404'), + (11980, 41, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMXk3Om', '7098747'), + (11981, 41, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxMXk3Om', '7113468'), + (11982, 41, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMXk3Om', '7114856'), + (11983, 41, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMXk3Om', '7114951'), + (11984, 41, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxMXk3Om', '7114955'), + (11985, 41, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMXk3Om', '7114956'), + (11986, 41, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMXk3Om', '7114957'), + (11987, 41, 2564, 'maybe', '2024-04-10 20:44:07', '2025-12-17 19:46:33', 'dxMXk3Om', '7134735'), + (11988, 41, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMXk3Om', '7153615'), + (11989, 41, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMXk3Om', '7159484'), + (11990, 41, 2576, 'attending', '2024-04-26 14:40:27', '2025-12-17 19:46:34', 'dxMXk3Om', '7164538'), + (11991, 41, 2578, 'maybe', '2024-04-12 23:45:18', '2025-12-17 19:46:34', 'dxMXk3Om', '7167016'), + (11992, 41, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMXk3Om', '7178446'), + (11993, 41, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMXk3Om', '7220467'), + (11994, 41, 2603, 'maybe', '2024-05-15 15:34:54', '2025-12-17 19:46:35', 'dxMXk3Om', '7225669'), + (11995, 41, 2604, 'maybe', '2024-05-28 22:58:26', '2025-12-17 19:46:36', 'dxMXk3Om', '7225670'), + (11996, 41, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMXk3Om', '7240354'), + (11997, 41, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMXk3Om', '7251633'), + (11998, 41, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dxMXk3Om', '7263048'), + (11999, 41, 2626, 'attending', '2024-05-17 02:06:47', '2025-12-17 19:46:35', 'dxMXk3Om', '7264723'), + (12000, 41, 2627, 'attending', '2024-05-24 22:58:17', '2025-12-17 19:46:35', 'dxMXk3Om', '7264724'), + (12001, 41, 2628, 'attending', '2024-06-01 13:30:57', '2025-12-17 19:46:36', 'dxMXk3Om', '7264725'), + (12002, 41, 2629, 'attending', '2024-06-07 22:58:35', '2025-12-17 19:46:28', 'dxMXk3Om', '7264726'), + (12003, 41, 2630, 'maybe', '2024-05-16 21:46:16', '2025-12-17 19:46:35', 'dxMXk3Om', '7264801'), + (12004, 41, 2647, 'maybe', '2024-06-09 19:49:59', '2025-12-17 19:46:28', 'dxMXk3Om', '7282057'), + (12005, 41, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMXk3Om', '7302674'), + (12006, 41, 2667, 'maybe', '2024-06-05 15:56:31', '2025-12-17 19:46:36', 'dxMXk3Om', '7307776'), + (12007, 41, 2668, 'maybe', '2024-06-07 22:23:53', '2025-12-17 19:46:36', 'dxMXk3Om', '7308821'), + (12008, 41, 2678, 'attending', '2024-06-15 03:03:28', '2025-12-17 19:46:28', 'dxMXk3Om', '7319489'), + (12009, 41, 2679, 'attending', '2024-06-21 11:34:43', '2025-12-17 19:46:29', 'dxMXk3Om', '7319490'), + (12010, 41, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxMXk3Om', '7324073'), + (12011, 41, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxMXk3Om', '7324074'), + (12012, 41, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxMXk3Om', '7324075'), + (12013, 41, 2691, 'attending', '2024-07-19 21:06:53', '2025-12-17 19:46:30', 'dxMXk3Om', '7324076'), + (12014, 41, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxMXk3Om', '7324078'), + (12015, 41, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxMXk3Om', '7324082'), + (12016, 41, 2699, 'attending', '2024-06-12 19:16:59', '2025-12-17 19:46:28', 'dxMXk3Om', '7324385'), + (12017, 41, 2700, 'maybe', '2024-06-14 18:32:31', '2025-12-17 19:46:28', 'dxMXk3Om', '7324388'), + (12018, 41, 2706, 'attending', '2024-06-19 21:10:39', '2025-12-17 19:46:28', 'dxMXk3Om', '7324947'), + (12019, 41, 2719, 'maybe', '2024-06-23 03:14:56', '2025-12-17 19:46:29', 'dxMXk3Om', '7331305'), + (12020, 41, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxMXk3Om', '7331457'), + (12021, 41, 2723, 'maybe', '2024-06-21 11:34:11', '2025-12-17 19:46:29', 'dxMXk3Om', '7332389'), + (12022, 41, 2742, 'maybe', '2024-07-03 20:35:02', '2025-12-17 19:46:29', 'dxMXk3Om', '7345167'), + (12023, 41, 2743, 'maybe', '2024-07-05 19:02:07', '2025-12-17 19:46:29', 'dxMXk3Om', '7345688'), + (12024, 41, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxMXk3Om', '7356752'), + (12025, 41, 2755, 'maybe', '2024-07-10 19:20:52', '2025-12-17 19:46:29', 'dxMXk3Om', '7357808'), + (12026, 41, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxMXk3Om', '7363643'), + (12027, 41, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxMXk3Om', '7368606'), + (12028, 41, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxMXk3Om', '7397462'), + (12029, 41, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxMXk3Om', '7424275'), + (12030, 41, 2822, 'attending', '2024-11-10 21:55:01', '2025-12-17 19:46:26', 'dxMXk3Om', '7424276'), + (12031, 41, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxMXk3Om', '7432751'), + (12032, 41, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxMXk3Om', '7432752'), + (12033, 41, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxMXk3Om', '7432753'), + (12034, 41, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxMXk3Om', '7432754'), + (12035, 41, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxMXk3Om', '7432755'), + (12036, 41, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxMXk3Om', '7432756'), + (12037, 41, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxMXk3Om', '7432758'), + (12038, 41, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxMXk3Om', '7432759'), + (12039, 41, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxMXk3Om', '7433834'), + (12040, 41, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxMXk3Om', '7470197'), + (12041, 41, 2881, 'maybe', '2024-11-06 18:55:49', '2025-12-17 19:46:26', 'dxMXk3Om', '7644047'), + (12042, 41, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxMXk3Om', '7685613'), + (12043, 41, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxMXk3Om', '7688194'), + (12044, 41, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxMXk3Om', '7688196'), + (12045, 41, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxMXk3Om', '7688289'), + (12046, 41, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dxMXk3Om', '7692763'), + (12047, 41, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxMXk3Om', '7697552'), + (12048, 41, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxMXk3Om', '7699878'), + (12049, 41, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxMXk3Om', '7704043'), + (12050, 41, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxMXk3Om', '7712467'), + (12051, 41, 2925, 'maybe', '2024-12-12 16:40:52', '2025-12-17 19:46:21', 'dxMXk3Om', '7713584'), + (12052, 41, 2926, 'attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxMXk3Om', '7713585'), + (12053, 41, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxMXk3Om', '7713586'), + (12054, 41, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMXk3Om', '7738518'), + (12055, 41, 2959, 'maybe', '2024-12-23 17:41:34', '2025-12-17 19:46:22', 'dxMXk3Om', '7747388'), + (12056, 41, 2962, 'maybe', '2024-12-27 14:45:59', '2025-12-17 19:46:22', 'dxMXk3Om', '7750632'), + (12057, 41, 2963, 'maybe', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMXk3Om', '7750636'), + (12058, 41, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMXk3Om', '7796540'), + (12059, 41, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMXk3Om', '7796541'), + (12060, 41, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMXk3Om', '7796542'), + (12061, 41, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxMXk3Om', '7825913'), + (12062, 41, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxMXk3Om', '7826209'), + (12063, 41, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxMXk3Om', '7834742'), + (12064, 41, 2988, 'not_attending', '2025-02-07 14:33:49', '2025-12-17 19:46:23', 'dxMXk3Om', '7839569'), + (12065, 41, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dxMXk3Om', '7842108'), + (12066, 41, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxMXk3Om', '7842902'), + (12067, 41, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxMXk3Om', '7842903'), + (12068, 41, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxMXk3Om', '7842904'), + (12069, 41, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxMXk3Om', '7842905'), + (12070, 41, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxMXk3Om', '7855719'), + (12071, 41, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxMXk3Om', '7860683'), + (12072, 41, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxMXk3Om', '7860684'), + (12073, 41, 3010, 'maybe', '2025-03-08 14:32:52', '2025-12-17 19:46:18', 'dxMXk3Om', '7864879'), + (12074, 41, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxMXk3Om', '7866095'), + (12075, 41, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxMXk3Om', '7869170'), + (12076, 41, 3014, 'attending', '2025-04-05 17:34:45', '2025-12-17 19:46:20', 'dxMXk3Om', '7869185'), + (12077, 41, 3015, 'attending', '2025-04-21 17:02:14', '2025-12-17 19:46:20', 'dxMXk3Om', '7869186'), + (12078, 41, 3016, 'attending', '2025-04-13 01:54:21', '2025-12-17 19:46:20', 'dxMXk3Om', '7869187'), + (12079, 41, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxMXk3Om', '7869188'), + (12080, 41, 3018, 'attending', '2025-04-09 00:07:27', '2025-12-17 19:46:20', 'dxMXk3Om', '7869189'), + (12081, 41, 3028, 'maybe', '2025-04-20 02:08:50', '2025-12-17 19:46:20', 'dxMXk3Om', '7869199'), + (12082, 41, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxMXk3Om', '7869201'), + (12083, 41, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxMXk3Om', '7877465'), + (12084, 41, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dxMXk3Om', '7878570'), + (12085, 41, 3048, 'maybe', '2025-04-19 20:39:27', '2025-12-17 19:46:20', 'dxMXk3Om', '7882694'), + (12086, 41, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxMXk3Om', '7888250'), + (12087, 41, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxMXk3Om', '7904777'), + (12088, 41, 3095, 'maybe', '2025-04-28 00:41:13', '2025-12-17 19:46:20', 'dxMXk3Om', '8342293'), + (12089, 41, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxMXk3Om', '8349164'), + (12090, 41, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxMXk3Om', '8349545'), + (12091, 41, 3106, 'attending', '2025-04-27 20:10:45', '2025-12-17 19:46:20', 'dxMXk3Om', '8349552'), + (12092, 41, 3107, 'maybe', '2025-05-02 13:19:35', '2025-12-17 19:46:20', 'dxMXk3Om', '8350107'), + (12093, 41, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxMXk3Om', '8353584'), + (12094, 41, 3131, 'attending', '2025-05-13 14:58:23', '2025-12-17 19:46:21', 'dxMXk3Om', '8368028'), + (12095, 41, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxMXk3Om', '8368029'), + (12096, 41, 3133, 'attending', '2025-05-28 12:21:13', '2025-12-17 19:46:14', 'dxMXk3Om', '8368030'), + (12097, 41, 3136, 'maybe', '2025-05-20 19:11:41', '2025-12-17 19:46:21', 'dxMXk3Om', '8374152'), + (12098, 41, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxMXk3Om', '8388462'), + (12099, 41, 3153, 'maybe', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxMXk3Om', '8400273'), + (12100, 41, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dxMXk3Om', '8400274'), + (12101, 41, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxMXk3Om', '8400275'), + (12102, 41, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dxMXk3Om', '8400276'), + (12103, 41, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxMXk3Om', '8404977'), + (12104, 41, 3173, 'attending', '2025-06-14 20:59:04', '2025-12-17 19:46:15', 'dxMXk3Om', '8410806'), + (12105, 41, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxMXk3Om', '8430783'), + (12106, 41, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxMXk3Om', '8430784'), + (12107, 41, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxMXk3Om', '8430799'), + (12108, 41, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxMXk3Om', '8430800'), + (12109, 41, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxMXk3Om', '8430801'), + (12110, 41, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxMXk3Om', '8438709'), + (12111, 41, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxMXk3Om', '8457738'), + (12112, 41, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxMXk3Om', '8459566'), + (12113, 41, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxMXk3Om', '8459567'), + (12114, 41, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxMXk3Om', '8461032'), + (12115, 41, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxMXk3Om', '8477877'), + (12116, 41, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxMXk3Om', '8485688'), + (12117, 41, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxMXk3Om', '8490587'), + (12118, 41, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxMXk3Om', '8493552'), + (12119, 41, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxMXk3Om', '8493553'), + (12120, 41, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxMXk3Om', '8493554'), + (12121, 41, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxMXk3Om', '8493555'), + (12122, 41, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxMXk3Om', '8493556'), + (12123, 41, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxMXk3Om', '8493557'), + (12124, 41, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxMXk3Om', '8493558'), + (12125, 41, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxMXk3Om', '8493559'), + (12126, 41, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxMXk3Om', '8493560'), + (12127, 41, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxMXk3Om', '8493561'), + (12128, 41, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxMXk3Om', '8493572'), + (12129, 41, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxMXk3Om', '8540725'), + (12130, 41, 3302, 'attending', '2025-11-16 00:43:41', '2025-12-17 19:46:14', 'dxMXk3Om', '8550022'), + (12131, 41, 3304, 'maybe', '2025-11-22 15:17:29', '2025-12-17 19:46:14', 'dxMXk3Om', '8550024'), + (12132, 41, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxMXk3Om', '8555421'), + (12133, 42, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVDLp6ZA', '6337970'), + (12134, 42, 2159, 'attending', '2023-07-22 12:38:55', '2025-12-17 19:46:53', 'dVDLp6ZA', '6338355'), + (12135, 42, 2160, 'attending', '2023-07-23 02:53:01', '2025-12-17 19:46:54', 'dVDLp6ZA', '6338358'), + (12136, 42, 2165, 'attending', '2023-07-29 18:02:02', '2025-12-17 19:46:54', 'dVDLp6ZA', '6342044'), + (12137, 42, 2166, 'not_attending', '2023-07-24 02:34:52', '2025-12-17 19:46:54', 'dVDLp6ZA', '6342115'), + (12138, 42, 2169, 'attending', '2023-07-22 02:31:19', '2025-12-17 19:46:53', 'dVDLp6ZA', '6342306'), + (12139, 42, 2170, 'not_attending', '2023-07-22 02:31:25', '2025-12-17 19:46:53', 'dVDLp6ZA', '6342307'), + (12140, 42, 2172, 'attending', '2023-07-19 14:43:50', '2025-12-17 19:46:53', 'dVDLp6ZA', '6342591'), + (12141, 42, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dVDLp6ZA', '6343294'), + (12142, 42, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVDLp6ZA', '6347034'), + (12143, 42, 2177, 'attending', '2023-08-10 02:40:05', '2025-12-17 19:46:55', 'dVDLp6ZA', '6347053'), + (12144, 42, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVDLp6ZA', '6347056'), + (12145, 42, 2179, 'attending', '2023-07-24 02:18:36', '2025-12-17 19:46:54', 'dVDLp6ZA', '6347591'), + (12146, 42, 2180, 'attending', '2023-07-25 13:10:42', '2025-12-17 19:46:54', 'dVDLp6ZA', '6348788'), + (12147, 42, 2181, 'attending', '2023-07-25 19:23:09', '2025-12-17 19:46:54', 'dVDLp6ZA', '6349354'), + (12148, 42, 2182, 'maybe', '2023-07-25 21:29:47', '2025-12-17 19:46:53', 'dVDLp6ZA', '6349618'), + (12149, 42, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVDLp6ZA', '6353830'), + (12150, 42, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVDLp6ZA', '6353831'), + (12151, 42, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVDLp6ZA', '6357867'), + (12152, 42, 2190, 'not_attending', '2023-08-03 02:31:39', '2025-12-17 19:46:55', 'dVDLp6ZA', '6357892'), + (12153, 42, 2191, 'maybe', '2023-08-03 21:47:09', '2025-12-17 19:46:54', 'dVDLp6ZA', '6358652'), + (12154, 42, 2193, 'attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dVDLp6ZA', '6358668'), + (12155, 42, 2194, 'attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dVDLp6ZA', '6358669'), + (12156, 42, 2195, 'attending', '2023-08-05 13:24:44', '2025-12-17 19:46:55', 'dVDLp6ZA', '6359397'), + (12157, 42, 2196, 'maybe', '2023-09-08 22:07:21', '2025-12-17 19:46:56', 'dVDLp6ZA', '6359398'), + (12158, 42, 2197, 'attending', '2023-09-09 01:21:19', '2025-12-17 19:46:44', 'dVDLp6ZA', '6359399'), + (12159, 42, 2198, 'attending', '2023-09-16 19:43:23', '2025-12-17 19:46:45', 'dVDLp6ZA', '6359400'), + (12160, 42, 2199, 'attending', '2023-08-06 02:50:22', '2025-12-17 19:46:55', 'dVDLp6ZA', '6359849'), + (12161, 42, 2200, 'attending', '2023-08-06 02:50:16', '2025-12-17 19:46:55', 'dVDLp6ZA', '6359850'), + (12162, 42, 2202, 'attending', '2023-08-06 18:32:42', '2025-12-17 19:46:54', 'dVDLp6ZA', '6360509'), + (12163, 42, 2204, 'attending', '2023-08-09 22:13:17', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361542'), + (12164, 42, 2206, 'attending', '2023-08-08 12:43:34', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361659'), + (12165, 42, 2208, 'attending', '2023-08-08 12:43:58', '2025-12-17 19:46:54', 'dVDLp6ZA', '6361709'), + (12166, 42, 2209, 'attending', '2023-08-20 16:19:56', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361710'), + (12167, 42, 2210, 'attending', '2023-08-24 19:31:45', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361711'), + (12168, 42, 2211, 'attending', '2023-08-14 12:53:52', '2025-12-17 19:46:55', 'dVDLp6ZA', '6361712'), + (12169, 42, 2212, 'attending', '2023-09-20 16:14:38', '2025-12-17 19:46:45', 'dVDLp6ZA', '6361713'), + (12170, 42, 2213, 'attending', '2023-08-09 17:36:20', '2025-12-17 19:46:55', 'dVDLp6ZA', '6362935'), + (12171, 42, 2215, 'attending', '2023-08-10 22:59:48', '2025-12-17 19:46:55', 'dVDLp6ZA', '6363479'), + (12172, 42, 2218, 'attending', '2023-08-15 02:36:40', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367308'), + (12173, 42, 2219, 'attending', '2023-08-15 14:24:12', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367309'), + (12174, 42, 2220, 'attending', '2023-08-18 13:54:53', '2025-12-17 19:46:56', 'dVDLp6ZA', '6367310'), + (12175, 42, 2221, 'not_attending', '2023-08-15 02:36:48', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367357'), + (12176, 42, 2222, 'not_attending', '2023-08-15 20:02:26', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367358'), + (12177, 42, 2224, 'attending', '2023-08-15 19:59:02', '2025-12-17 19:46:55', 'dVDLp6ZA', '6367635'), + (12178, 42, 2227, 'attending', '2023-08-20 19:17:32', '2025-12-17 19:46:55', 'dVDLp6ZA', '6370581'), + (12179, 42, 2229, 'attending', '2023-08-20 19:11:50', '2025-12-17 19:46:55', 'dVDLp6ZA', '6373787'), + (12180, 42, 2232, 'attending', '2023-08-22 12:32:37', '2025-12-17 19:46:55', 'dVDLp6ZA', '6374818'), + (12181, 42, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVDLp6ZA', '6382573'), + (12182, 42, 2236, 'maybe', '2023-08-28 20:28:20', '2025-12-17 19:46:55', 'dVDLp6ZA', '6382618'), + (12183, 42, 2238, 'attending', '2023-08-31 12:55:50', '2025-12-17 19:46:56', 'dVDLp6ZA', '6387266'), + (12184, 42, 2239, 'not_attending', '2023-08-31 17:59:37', '2025-12-17 19:46:56', 'dVDLp6ZA', '6387592'), + (12185, 42, 2240, 'attending', '2023-09-04 04:21:07', '2025-12-17 19:46:56', 'dVDLp6ZA', '6388603'), + (12186, 42, 2241, 'attending', '2023-09-10 02:59:08', '2025-12-17 19:46:44', 'dVDLp6ZA', '6388604'), + (12187, 42, 2242, 'attending', '2023-09-17 19:49:39', '2025-12-17 19:46:45', 'dVDLp6ZA', '6388606'), + (12188, 42, 2243, 'attending', '2023-09-04 23:05:33', '2025-12-17 19:46:56', 'dVDLp6ZA', '6393686'), + (12189, 42, 2244, 'attending', '2023-09-05 15:58:49', '2025-12-17 19:46:44', 'dVDLp6ZA', '6393700'), + (12190, 42, 2245, 'attending', '2023-09-25 16:01:32', '2025-12-17 19:46:45', 'dVDLp6ZA', '6393703'), + (12191, 42, 2247, 'attending', '2023-09-05 19:37:29', '2025-12-17 19:46:56', 'dVDLp6ZA', '6394628'), + (12192, 42, 2248, 'attending', '2023-09-10 02:58:58', '2025-12-17 19:46:44', 'dVDLp6ZA', '6394629'), + (12193, 42, 2249, 'attending', '2023-09-14 02:48:11', '2025-12-17 19:46:45', 'dVDLp6ZA', '6394630'), + (12194, 42, 2250, 'attending', '2023-09-20 16:14:32', '2025-12-17 19:46:45', 'dVDLp6ZA', '6394631'), + (12195, 42, 2251, 'attending', '2023-09-05 20:28:55', '2025-12-17 19:46:56', 'dVDLp6ZA', '6395182'), + (12196, 42, 2252, 'attending', '2023-09-25 02:34:26', '2025-12-17 19:46:45', 'dVDLp6ZA', '6396837'), + (12197, 42, 2253, 'attending', '2023-09-15 20:01:06', '2025-12-17 19:46:45', 'dVDLp6ZA', '6401811'), + (12198, 42, 2256, 'attending', '2023-09-13 00:21:50', '2025-12-17 19:46:45', 'dVDLp6ZA', '6404369'), + (12199, 42, 2259, 'attending', '2023-09-22 02:33:59', '2025-12-17 19:46:45', 'dVDLp6ZA', '6421257'), + (12200, 42, 2263, 'attending', '2023-09-25 22:36:32', '2025-12-17 19:46:45', 'dVDLp6ZA', '6429351'), + (12201, 42, 2265, 'attending', '2023-10-01 03:43:33', '2025-12-17 19:46:45', 'dVDLp6ZA', '6439625'), + (12202, 42, 2267, 'maybe', '2023-10-03 02:06:15', '2025-12-17 19:46:45', 'dVDLp6ZA', '6440034'), + (12203, 42, 2268, 'attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVDLp6ZA', '6440863'), + (12204, 42, 2270, 'attending', '2023-10-03 02:02:39', '2025-12-17 19:46:46', 'dVDLp6ZA', '6443067'), + (12205, 42, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVDLp6ZA', '6445440'), + (12206, 42, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVDLp6ZA', '6453951'), + (12207, 42, 2277, 'maybe', '2023-10-08 16:13:26', '2025-12-17 19:46:46', 'dVDLp6ZA', '6455211'), + (12208, 42, 2279, 'attending', '2023-10-08 19:43:46', '2025-12-17 19:46:46', 'dVDLp6ZA', '6455460'), + (12209, 42, 2284, 'attending', '2023-10-10 18:31:20', '2025-12-17 19:46:46', 'dVDLp6ZA', '6460928'), + (12210, 42, 2285, 'attending', '2023-10-15 20:50:58', '2025-12-17 19:46:47', 'dVDLp6ZA', '6460929'), + (12211, 42, 2286, 'maybe', '2023-11-24 02:52:22', '2025-12-17 19:46:48', 'dVDLp6ZA', '6460930'), + (12212, 42, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVDLp6ZA', '6461696'), + (12213, 42, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVDLp6ZA', '6462129'), + (12214, 42, 2290, 'attending', '2023-10-11 22:04:06', '2025-12-17 19:46:46', 'dVDLp6ZA', '6462214'), + (12215, 42, 2291, 'attending', '2023-10-11 22:04:17', '2025-12-17 19:46:46', 'dVDLp6ZA', '6462215'), + (12216, 42, 2292, 'attending', '2023-10-19 20:30:04', '2025-12-17 19:46:47', 'dVDLp6ZA', '6462216'), + (12217, 42, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVDLp6ZA', '6463218'), + (12218, 42, 2294, 'attending', '2023-10-12 14:20:11', '2025-12-17 19:46:46', 'dVDLp6ZA', '6465907'), + (12219, 42, 2295, 'not_attending', '2023-10-15 04:03:17', '2025-12-17 19:46:46', 'dVDLp6ZA', '6467832'), + (12220, 42, 2299, 'attending', '2023-10-15 20:51:09', '2025-12-17 19:46:46', 'dVDLp6ZA', '6472181'), + (12221, 42, 2301, 'maybe', '2023-10-23 02:41:07', '2025-12-17 19:46:46', 'dVDLp6ZA', '6474276'), + (12222, 42, 2302, 'attending', '2023-10-23 04:08:06', '2025-12-17 19:46:46', 'dVDLp6ZA', '6482535'), + (12223, 42, 2303, 'attending', '2023-10-22 20:26:33', '2025-12-17 19:46:47', 'dVDLp6ZA', '6482691'), + (12224, 42, 2304, 'attending', '2023-10-30 00:37:43', '2025-12-17 19:46:47', 'dVDLp6ZA', '6482693'), + (12225, 42, 2306, 'attending', '2023-11-07 04:50:38', '2025-12-17 19:46:47', 'dVDLp6ZA', '6484200'), + (12226, 42, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVDLp6ZA', '6484680'), + (12227, 42, 2308, 'not_attending', '2023-10-23 12:47:21', '2025-12-17 19:46:47', 'dVDLp6ZA', '6485393'), + (12228, 42, 2310, 'attending', '2023-10-29 21:12:51', '2025-12-17 19:46:47', 'dVDLp6ZA', '6487709'), + (12229, 42, 2314, 'not_attending', '2023-11-02 12:11:08', '2025-12-17 19:46:47', 'dVDLp6ZA', '6493665'), + (12230, 42, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVDLp6ZA', '6507741'), + (12231, 42, 2320, 'maybe', '2023-11-08 18:01:39', '2025-12-17 19:46:47', 'dVDLp6ZA', '6508647'), + (12232, 42, 2322, 'attending', '2023-11-07 04:51:00', '2025-12-17 19:46:48', 'dVDLp6ZA', '6514659'), + (12233, 42, 2323, 'attending', '2023-11-19 04:46:02', '2025-12-17 19:46:48', 'dVDLp6ZA', '6514660'), + (12234, 42, 2324, 'attending', '2023-12-05 20:57:27', '2025-12-17 19:46:49', 'dVDLp6ZA', '6514662'), + (12235, 42, 2325, 'attending', '2023-12-08 04:01:57', '2025-12-17 19:46:36', 'dVDLp6ZA', '6514663'), + (12236, 42, 2327, 'maybe', '2023-11-01 20:59:55', '2025-12-17 19:46:47', 'dVDLp6ZA', '6515494'), + (12237, 42, 2329, 'maybe', '2023-11-02 16:18:39', '2025-12-17 19:46:47', 'dVDLp6ZA', '6517138'), + (12238, 42, 2331, 'attending', '2023-11-05 18:27:21', '2025-12-17 19:46:47', 'dVDLp6ZA', '6518640'), + (12239, 42, 2333, 'attending', '2023-11-04 21:01:05', '2025-12-17 19:46:47', 'dVDLp6ZA', '6519103'), + (12240, 42, 2335, 'attending', '2023-11-08 04:10:25', '2025-12-17 19:46:47', 'dVDLp6ZA', '6534890'), + (12241, 42, 2337, 'attending', '2023-11-08 01:15:09', '2025-12-17 19:46:48', 'dVDLp6ZA', '6535681'), + (12242, 42, 2338, 'maybe', '2023-11-10 14:15:55', '2025-12-17 19:46:48', 'dVDLp6ZA', '6538868'), + (12243, 42, 2343, 'maybe', '2023-11-19 21:36:35', '2025-12-17 19:46:48', 'dVDLp6ZA', '6574728'), + (12244, 42, 2345, 'maybe', '2023-11-21 01:42:08', '2025-12-17 19:46:48', 'dVDLp6ZA', '6582414'), + (12245, 42, 2347, 'attending', '2023-11-19 16:00:44', '2025-12-17 19:46:48', 'dVDLp6ZA', '6583053'), + (12246, 42, 2350, 'attending', '2023-11-22 05:22:54', '2025-12-17 19:46:48', 'dVDLp6ZA', '6584352'), + (12247, 42, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVDLp6ZA', '6584747'), + (12248, 42, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVDLp6ZA', '6587097'), + (12249, 42, 2354, 'maybe', '2023-11-26 19:18:04', '2025-12-17 19:46:48', 'dVDLp6ZA', '6591742'), + (12250, 42, 2356, 'maybe', '2023-12-10 21:28:07', '2025-12-17 19:46:36', 'dVDLp6ZA', '6593340'), + (12251, 42, 2358, 'attending', '2023-11-29 18:59:48', '2025-12-17 19:46:48', 'dVDLp6ZA', '6595321'), + (12252, 42, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVDLp6ZA', '6609022'), + (12253, 42, 2364, 'attending', '2023-12-07 04:28:59', '2025-12-17 19:46:49', 'dVDLp6ZA', '6613011'), + (12254, 42, 2366, 'attending', '2023-12-08 21:13:48', '2025-12-17 19:46:36', 'dVDLp6ZA', '6615304'), + (12255, 42, 2368, 'attending', '2023-12-11 02:20:03', '2025-12-17 19:46:36', 'dVDLp6ZA', '6621445'), + (12256, 42, 2370, 'attending', '2023-12-12 13:45:27', '2025-12-17 19:46:36', 'dVDLp6ZA', '6623765'), + (12257, 42, 2371, 'attending', '2023-12-13 02:17:52', '2025-12-17 19:46:36', 'dVDLp6ZA', '6624495'), + (12258, 42, 2372, 'maybe', '2023-12-15 21:19:35', '2025-12-17 19:46:36', 'dVDLp6ZA', '6628243'), + (12259, 42, 2373, 'attending', '2023-12-18 23:13:40', '2025-12-17 19:46:38', 'dVDLp6ZA', '6632678'), + (12260, 42, 2374, 'attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVDLp6ZA', '6632757'), + (12261, 42, 2375, 'attending', '2023-12-20 17:20:30', '2025-12-17 19:46:36', 'dVDLp6ZA', '6634548'), + (12262, 42, 2378, 'maybe', '2024-01-01 23:15:57', '2025-12-17 19:46:37', 'dVDLp6ZA', '6644006'), + (12263, 42, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVDLp6ZA', '6644187'), + (12264, 42, 2380, 'attending', '2023-12-30 21:25:52', '2025-12-17 19:46:37', 'dVDLp6ZA', '6645105'), + (12265, 42, 2381, 'attending', '2024-01-02 02:15:58', '2025-12-17 19:46:37', 'dVDLp6ZA', '6646398'), + (12266, 42, 2382, 'maybe', '2024-01-01 23:16:05', '2025-12-17 19:46:37', 'dVDLp6ZA', '6646401'), + (12267, 42, 2385, 'maybe', '2024-01-03 03:13:02', '2025-12-17 19:46:37', 'dVDLp6ZA', '6648943'), + (12268, 42, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVDLp6ZA', '6648951'), + (12269, 42, 2387, 'attending', '2024-01-03 01:57:16', '2025-12-17 19:46:37', 'dVDLp6ZA', '6648952'), + (12270, 42, 2388, 'attending', '2024-01-03 02:20:00', '2025-12-17 19:46:37', 'dVDLp6ZA', '6649244'), + (12271, 42, 2391, 'attending', '2024-01-09 02:05:50', '2025-12-17 19:46:37', 'dVDLp6ZA', '6654138'), + (12272, 42, 2392, 'maybe', '2024-01-11 16:19:58', '2025-12-17 19:46:37', 'dVDLp6ZA', '6654412'), + (12273, 42, 2395, 'attending', '2024-01-04 23:53:48', '2025-12-17 19:46:38', 'dVDLp6ZA', '6654471'), + (12274, 42, 2396, 'maybe', '2024-01-16 05:04:32', '2025-12-17 19:46:38', 'dVDLp6ZA', '6655401'), + (12275, 42, 2397, 'attending', '2024-01-07 05:19:54', '2025-12-17 19:46:37', 'dVDLp6ZA', '6657379'), + (12276, 42, 2398, 'maybe', '2024-01-10 15:16:21', '2025-12-17 19:46:37', 'dVDLp6ZA', '6657381'), + (12277, 42, 2399, 'attending', '2024-01-07 18:30:32', '2025-12-17 19:46:37', 'dVDLp6ZA', '6657583'), + (12278, 42, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVDLp6ZA', '6661585'), + (12279, 42, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVDLp6ZA', '6661588'), + (12280, 42, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVDLp6ZA', '6661589'), + (12281, 42, 2406, 'maybe', '2024-01-14 15:42:47', '2025-12-17 19:46:40', 'dVDLp6ZA', '6692344'), + (12282, 42, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVDLp6ZA', '6699906'), + (12283, 42, 2408, 'attending', '2024-01-16 05:08:03', '2025-12-17 19:46:40', 'dVDLp6ZA', '6699907'), + (12284, 42, 2409, 'attending', '2024-01-29 18:20:43', '2025-12-17 19:46:41', 'dVDLp6ZA', '6699909'), + (12285, 42, 2410, 'attending', '2024-02-04 22:30:26', '2025-12-17 19:46:41', 'dVDLp6ZA', '6699911'), + (12286, 42, 2411, 'attending', '2024-02-04 22:30:51', '2025-12-17 19:46:41', 'dVDLp6ZA', '6699913'), + (12287, 42, 2412, 'not_attending', '2024-02-02 21:58:39', '2025-12-17 19:46:43', 'dVDLp6ZA', '6700717'), + (12288, 42, 2415, 'not_attending', '2024-01-18 04:41:06', '2025-12-17 19:46:40', 'dVDLp6ZA', '6701001'), + (12289, 42, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVDLp6ZA', '6701109'), + (12290, 42, 2420, 'maybe', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dVDLp6ZA', '6704561'), + (12291, 42, 2421, 'attending', '2024-01-21 22:45:46', '2025-12-17 19:46:40', 'dVDLp6ZA', '6704598'), + (12292, 42, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVDLp6ZA', '6705219'), + (12293, 42, 2426, 'attending', '2024-01-19 20:05:26', '2025-12-17 19:46:40', 'dVDLp6ZA', '6705569'), + (12294, 42, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dVDLp6ZA', '6708410'), + (12295, 42, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVDLp6ZA', '6710153'), + (12296, 42, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVDLp6ZA', '6711552'), + (12297, 42, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVDLp6ZA', '6711553'), + (12298, 42, 2431, 'maybe', '2024-01-23 03:42:44', '2025-12-17 19:46:41', 'dVDLp6ZA', '6712394'), + (12299, 42, 2434, 'attending', '2024-01-25 23:45:02', '2025-12-17 19:46:40', 'dVDLp6ZA', '6716605'), + (12300, 42, 2436, 'attending', '2024-01-27 19:52:19', '2025-12-17 19:46:40', 'dVDLp6ZA', '6722687'), + (12301, 42, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVDLp6ZA', '6722688'), + (12302, 42, 2438, 'maybe', '2024-02-01 21:20:45', '2025-12-17 19:46:41', 'dVDLp6ZA', '6730201'), + (12303, 42, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVDLp6ZA', '6730620'), + (12304, 42, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVDLp6ZA', '6730642'), + (12305, 42, 2442, 'maybe', '2024-02-02 21:58:45', '2025-12-17 19:46:41', 'dVDLp6ZA', '6732647'), + (12306, 42, 2444, 'attending', '2024-02-04 22:30:18', '2025-12-17 19:46:41', 'dVDLp6ZA', '6734367'), + (12307, 42, 2445, 'attending', '2024-02-11 04:51:18', '2025-12-17 19:46:41', 'dVDLp6ZA', '6734368'), + (12308, 42, 2446, 'maybe', '2024-02-23 16:05:30', '2025-12-17 19:46:43', 'dVDLp6ZA', '6734369'), + (12309, 42, 2447, 'attending', '2024-03-05 05:19:52', '2025-12-17 19:46:32', 'dVDLp6ZA', '6734370'), + (12310, 42, 2448, 'attending', '2024-03-21 03:33:43', '2025-12-17 19:46:33', 'dVDLp6ZA', '6734371'), + (12311, 42, 2453, 'attending', '2024-02-08 13:38:21', '2025-12-17 19:46:42', 'dVDLp6ZA', '6740364'), + (12312, 42, 2454, 'maybe', '2024-02-18 04:57:12', '2025-12-17 19:46:42', 'dVDLp6ZA', '6740921'), + (12313, 42, 2458, 'not_attending', '2024-02-09 21:17:10', '2025-12-17 19:46:41', 'dVDLp6ZA', '6743731'), + (12314, 42, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVDLp6ZA', '6743829'), + (12315, 42, 2466, 'attending', '2024-02-13 22:13:55', '2025-12-17 19:46:41', 'dVDLp6ZA', '7026777'), + (12316, 42, 2467, 'attending', '2024-02-17 13:41:47', '2025-12-17 19:46:43', 'dVDLp6ZA', '7029987'), + (12317, 42, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVDLp6ZA', '7030380'), + (12318, 42, 2471, 'attending', '2024-02-20 02:21:22', '2025-12-17 19:46:42', 'dVDLp6ZA', '7032425'), + (12319, 42, 2472, 'attending', '2024-02-20 02:21:08', '2025-12-17 19:46:42', 'dVDLp6ZA', '7033677'), + (12320, 42, 2474, 'attending', '2024-02-20 21:15:51', '2025-12-17 19:46:43', 'dVDLp6ZA', '7035415'), + (12321, 42, 2479, 'not_attending', '2024-02-21 04:19:06', '2025-12-17 19:46:43', 'dVDLp6ZA', '7037009'), + (12322, 42, 2481, 'not_attending', '2024-02-24 21:23:55', '2025-12-17 19:46:43', 'dVDLp6ZA', '7044715'), + (12323, 42, 2487, 'maybe', '2024-02-29 03:22:18', '2025-12-17 19:46:33', 'dVDLp6ZA', '7049279'), + (12324, 42, 2489, 'not_attending', '2024-02-27 23:59:51', '2025-12-17 19:46:43', 'dVDLp6ZA', '7050161'), + (12325, 42, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVDLp6ZA', '7050318'), + (12326, 42, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVDLp6ZA', '7050319'), + (12327, 42, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVDLp6ZA', '7050322'), + (12328, 42, 2493, 'attending', '2024-03-10 12:39:00', '2025-12-17 19:46:32', 'dVDLp6ZA', '7052471'), + (12329, 42, 2498, 'attending', '2024-03-14 23:20:01', '2025-12-17 19:46:33', 'dVDLp6ZA', '7057662'), + (12330, 42, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dVDLp6ZA', '7057804'), + (12331, 42, 2500, 'maybe', '2024-03-05 01:41:18', '2025-12-17 19:46:43', 'dVDLp6ZA', '7058603'), + (12332, 42, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVDLp6ZA', '7072824'), + (12333, 42, 2508, 'attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVDLp6ZA', '7074348'), + (12334, 42, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dVDLp6ZA', '7074364'), + (12335, 42, 2534, 'maybe', '2024-03-13 16:18:52', '2025-12-17 19:46:32', 'dVDLp6ZA', '7076875'), + (12336, 42, 2537, 'not_attending', '2024-03-18 15:56:13', '2025-12-17 19:46:33', 'dVDLp6ZA', '7085484'), + (12337, 42, 2538, 'attending', '2024-03-21 03:33:33', '2025-12-17 19:46:33', 'dVDLp6ZA', '7085485'), + (12338, 42, 2539, 'not_attending', '2024-03-22 17:38:09', '2025-12-17 19:46:33', 'dVDLp6ZA', '7085486'), + (12339, 42, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVDLp6ZA', '7089267'), + (12340, 42, 2541, 'attending', '2024-03-17 02:24:20', '2025-12-17 19:46:33', 'dVDLp6ZA', '7089404'), + (12341, 42, 2548, 'attending', '2024-03-23 18:28:19', '2025-12-17 19:46:33', 'dVDLp6ZA', '7098747'), + (12342, 42, 2549, 'attending', '2024-03-26 14:58:02', '2025-12-17 19:46:33', 'dVDLp6ZA', '7099657'), + (12343, 42, 2552, 'maybe', '2024-03-27 22:31:58', '2025-12-17 19:46:33', 'dVDLp6ZA', '7111123'), + (12344, 42, 2553, 'attending', '2024-03-29 11:57:38', '2025-12-17 19:46:33', 'dVDLp6ZA', '7113468'), + (12345, 42, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVDLp6ZA', '7114856'), + (12346, 42, 2555, 'attending', '2024-03-31 03:45:05', '2025-12-17 19:46:33', 'dVDLp6ZA', '7114951'), + (12347, 42, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVDLp6ZA', '7114955'), + (12348, 42, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVDLp6ZA', '7114956'), + (12349, 42, 2558, 'attending', '2024-04-28 02:38:16', '2025-12-17 19:46:35', 'dVDLp6ZA', '7114957'), + (12350, 42, 2564, 'attending', '2024-04-02 19:16:46', '2025-12-17 19:46:33', 'dVDLp6ZA', '7134735'), + (12351, 42, 2567, 'attending', '2024-04-04 01:13:14', '2025-12-17 19:46:33', 'dVDLp6ZA', '7144962'), + (12352, 42, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVDLp6ZA', '7153615'), + (12353, 42, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVDLp6ZA', '7159484'), + (12354, 42, 2573, 'maybe', '2024-04-08 22:59:10', '2025-12-17 19:46:34', 'dVDLp6ZA', '7160612'), + (12355, 42, 2575, 'maybe', '2024-04-10 03:18:51', '2025-12-17 19:46:33', 'dVDLp6ZA', '7164534'), + (12356, 42, 2576, 'not_attending', '2024-04-23 02:44:00', '2025-12-17 19:46:34', 'dVDLp6ZA', '7164538'), + (12357, 42, 2584, 'not_attending', '2024-04-16 13:13:40', '2025-12-17 19:46:34', 'dVDLp6ZA', '7175057'), + (12358, 42, 2585, 'maybe', '2024-04-18 03:24:03', '2025-12-17 19:46:34', 'dVDLp6ZA', '7175828'), + (12359, 42, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVDLp6ZA', '7178446'), + (12360, 42, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dVDLp6ZA', '7220467'), + (12361, 42, 2603, 'attending', '2024-05-09 02:38:41', '2025-12-17 19:46:35', 'dVDLp6ZA', '7225669'), + (12362, 42, 2604, 'attending', '2024-05-26 21:25:06', '2025-12-17 19:46:36', 'dVDLp6ZA', '7225670'), + (12363, 42, 2609, 'not_attending', '2024-04-30 01:20:10', '2025-12-17 19:46:35', 'dVDLp6ZA', '7240354'), + (12364, 42, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dVDLp6ZA', '7251633'), + (12365, 42, 2620, 'maybe', '2024-05-09 02:38:47', '2025-12-17 19:46:35', 'dVDLp6ZA', '7258097'), + (12366, 42, 2626, 'attending', '2024-05-14 17:29:55', '2025-12-17 19:46:35', 'dVDLp6ZA', '7264723'), + (12367, 42, 2628, 'attending', '2024-05-24 02:33:49', '2025-12-17 19:46:36', 'dVDLp6ZA', '7264725'), + (12368, 42, 2629, 'not_attending', '2024-05-24 02:33:47', '2025-12-17 19:46:28', 'dVDLp6ZA', '7264726'), + (12369, 42, 2630, 'maybe', '2024-05-12 13:27:17', '2025-12-17 19:46:35', 'dVDLp6ZA', '7264801'), + (12370, 42, 2638, 'attending', '2024-05-15 21:42:18', '2025-12-17 19:46:35', 'dVDLp6ZA', '7273117'), + (12371, 42, 2647, 'attending', '2024-05-25 01:13:19', '2025-12-17 19:46:28', 'dVDLp6ZA', '7282057'), + (12372, 42, 2650, 'attending', '2024-05-24 16:28:40', '2025-12-17 19:46:35', 'dVDLp6ZA', '7288199'), + (12373, 42, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dVDLp6ZA', '7302674'), + (12374, 42, 2678, 'maybe', '2024-06-11 11:48:14', '2025-12-17 19:46:28', 'dVDLp6ZA', '7319489'), + (12375, 42, 2679, 'not_attending', '2024-06-11 11:48:22', '2025-12-17 19:46:29', 'dVDLp6ZA', '7319490'), + (12376, 42, 2688, 'not_attending', '2024-06-22 14:25:24', '2025-12-17 19:46:29', 'dVDLp6ZA', '7324073'), + (12377, 42, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dVDLp6ZA', '7324074'), + (12378, 42, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dVDLp6ZA', '7324075'), + (12379, 42, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dVDLp6ZA', '7324078'), + (12380, 42, 2696, 'attending', '2024-08-18 21:43:40', '2025-12-17 19:46:32', 'dVDLp6ZA', '7324081'), + (12381, 42, 2697, 'attending', '2024-08-20 17:00:37', '2025-12-17 19:46:32', 'dVDLp6ZA', '7324082'), + (12382, 42, 2698, 'attending', '2024-09-04 01:06:14', '2025-12-17 19:46:24', 'dVDLp6ZA', '7324083'), + (12383, 42, 2701, 'maybe', '2024-06-21 22:54:26', '2025-12-17 19:46:29', 'dVDLp6ZA', '7324391'), + (12384, 42, 2706, 'maybe', '2024-06-13 20:22:09', '2025-12-17 19:46:28', 'dVDLp6ZA', '7324947'), + (12385, 42, 2707, 'not_attending', '2024-06-13 20:17:58', '2025-12-17 19:46:28', 'dVDLp6ZA', '7324952'), + (12386, 42, 2710, 'maybe', '2024-06-14 00:46:34', '2025-12-17 19:46:28', 'dVDLp6ZA', '7325108'), + (12387, 42, 2719, 'attending', '2024-06-18 18:13:52', '2025-12-17 19:46:29', 'dVDLp6ZA', '7331305'), + (12388, 42, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dVDLp6ZA', '7331457'), + (12389, 42, 2724, 'maybe', '2024-06-23 13:35:50', '2025-12-17 19:46:29', 'dVDLp6ZA', '7332562'), + (12390, 42, 2742, 'maybe', '2024-07-01 17:27:52', '2025-12-17 19:46:29', 'dVDLp6ZA', '7345167'), + (12391, 42, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dVDLp6ZA', '7363643'), + (12392, 42, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dVDLp6ZA', '7368606'), + (12393, 42, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dVDLp6ZA', '7397462'), + (12394, 42, 2806, 'maybe', '2024-09-09 04:13:14', '2025-12-17 19:46:25', 'dVDLp6ZA', '7404888'), + (12395, 42, 2808, 'attending', '2024-08-27 03:32:21', '2025-12-17 19:46:32', 'dVDLp6ZA', '7412860'), + (12396, 42, 2814, 'attending', '2024-09-08 15:48:43', '2025-12-17 19:46:24', 'dVDLp6ZA', '7424267'), + (12397, 42, 2817, 'maybe', '2024-09-29 16:08:34', '2025-12-17 19:46:25', 'dVDLp6ZA', '7424270'), + (12398, 42, 2821, 'attending', '2024-10-08 18:44:36', '2025-12-17 19:46:26', 'dVDLp6ZA', '7424275'), + (12399, 42, 2822, 'attending', '2024-10-21 23:34:36', '2025-12-17 19:46:26', 'dVDLp6ZA', '7424276'), + (12400, 42, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dVDLp6ZA', '7432751'), + (12401, 42, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dVDLp6ZA', '7432752'), + (12402, 42, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dVDLp6ZA', '7432753'), + (12403, 42, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432754'), + (12404, 42, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432755'), + (12405, 42, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432756'), + (12406, 42, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432758'), + (12407, 42, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dVDLp6ZA', '7432759'), + (12408, 42, 2832, 'attending', '2024-09-09 20:36:42', '2025-12-17 19:46:24', 'dVDLp6ZA', '7433324'), + (12409, 42, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dVDLp6ZA', '7433834'), + (12410, 42, 2836, 'attending', '2024-09-14 12:45:02', '2025-12-17 19:46:25', 'dVDLp6ZA', '7438708'), + (12411, 42, 2839, 'attending', '2024-09-13 03:38:42', '2025-12-17 19:46:25', 'dVDLp6ZA', '7439262'), + (12412, 42, 2843, 'maybe', '2024-09-20 16:22:13', '2025-12-17 19:46:25', 'dVDLp6ZA', '7450219'), + (12413, 42, 2845, 'not_attending', '2024-09-21 18:45:15', '2025-12-17 19:46:25', 'dVDLp6ZA', '7452129'), + (12414, 42, 2851, 'attending', '2024-09-28 20:40:31', '2025-12-17 19:46:25', 'dVDLp6ZA', '7461883'), + (12415, 42, 2857, 'maybe', '2024-10-23 20:17:17', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469387'), + (12416, 42, 2858, 'attending', '2024-10-11 19:38:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469388'), + (12417, 42, 2860, 'maybe', '2024-10-01 20:31:47', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469393'), + (12418, 42, 2861, 'maybe', '2024-09-30 23:32:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7469826'), + (12419, 42, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dVDLp6ZA', '7470197'), + (12420, 42, 2870, 'attending', '2024-10-05 21:22:31', '2025-12-17 19:46:26', 'dVDLp6ZA', '7475068'), + (12421, 42, 2871, 'maybe', '2024-10-14 00:48:57', '2025-12-17 19:46:26', 'dVDLp6ZA', '7480481'), + (12422, 42, 2878, 'maybe', '2024-10-10 22:59:48', '2025-12-17 19:46:26', 'dVDLp6ZA', '7633857'), + (12423, 42, 2881, 'maybe', '2024-10-27 13:18:32', '2025-12-17 19:46:26', 'dVDLp6ZA', '7644047'), + (12424, 42, 2883, 'maybe', '2024-10-17 01:05:57', '2025-12-17 19:46:26', 'dVDLp6ZA', '7649157'), + (12425, 42, 2885, 'attending', '2024-10-17 14:52:57', '2025-12-17 19:46:26', 'dVDLp6ZA', '7649944'), + (12426, 42, 2886, 'maybe', '2024-11-02 00:45:47', '2025-12-17 19:46:26', 'dVDLp6ZA', '7654498'), + (12427, 42, 2891, 'attending', '2024-10-25 15:58:18', '2025-12-17 19:46:26', 'dVDLp6ZA', '7668163'), + (12428, 42, 2892, 'not_attending', '2024-10-27 21:26:55', '2025-12-17 19:46:26', 'dVDLp6ZA', '7672064'), + (12429, 42, 2894, 'attending', '2024-11-02 19:34:35', '2025-12-17 19:46:26', 'dVDLp6ZA', '7680059'), + (12430, 42, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dVDLp6ZA', '7685613'), + (12431, 42, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dVDLp6ZA', '7688194'), + (12432, 42, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dVDLp6ZA', '7688196'), + (12433, 42, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dVDLp6ZA', '7688289'), + (12434, 42, 2906, 'attending', '2024-11-09 22:18:05', '2025-12-17 19:46:26', 'dVDLp6ZA', '7689366'), + (12435, 42, 2909, 'maybe', '2024-11-11 02:06:45', '2025-12-17 19:46:27', 'dVDLp6ZA', '7689771'), + (12436, 42, 2912, 'maybe', '2024-11-17 03:44:51', '2025-12-17 19:46:27', 'dVDLp6ZA', '7692763'), + (12437, 42, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dVDLp6ZA', '7697552'), + (12438, 42, 2915, 'maybe', '2024-11-17 17:02:52', '2025-12-17 19:46:27', 'dVDLp6ZA', '7698151'), + (12439, 42, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dVDLp6ZA', '7699878'), + (12440, 42, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dVDLp6ZA', '7704043'), + (12441, 42, 2924, 'maybe', '2024-11-26 15:52:05', '2025-12-17 19:46:28', 'dVDLp6ZA', '7712467'), + (12442, 42, 2925, 'attending', '2024-12-09 19:16:25', '2025-12-17 19:46:21', 'dVDLp6ZA', '7713584'), + (12443, 42, 2926, 'attending', '2024-12-03 04:18:10', '2025-12-17 19:46:21', 'dVDLp6ZA', '7713585'), + (12444, 42, 2927, 'attending', '2024-12-04 00:38:19', '2025-12-17 19:46:22', 'dVDLp6ZA', '7713586'), + (12445, 42, 2930, 'maybe', '2024-12-07 20:14:01', '2025-12-17 19:46:21', 'dVDLp6ZA', '7724554'), + (12446, 42, 2931, 'attending', '2024-12-07 20:13:50', '2025-12-17 19:46:21', 'dVDLp6ZA', '7725490'), + (12447, 42, 2954, 'attending', '2024-12-14 20:20:09', '2025-12-17 19:46:21', 'dVDLp6ZA', '7734260'), + (12448, 42, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dVDLp6ZA', '7738518'), + (12449, 42, 2962, 'maybe', '2024-12-25 04:41:48', '2025-12-17 19:46:22', 'dVDLp6ZA', '7750632'), + (12450, 42, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dVDLp6ZA', '7750636'), + (12451, 42, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dVDLp6ZA', '7796540'), + (12452, 42, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dVDLp6ZA', '7796541'), + (12453, 42, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dVDLp6ZA', '7796542'), + (12454, 42, 2968, 'attending', '2025-01-08 21:38:31', '2025-12-17 19:46:22', 'dVDLp6ZA', '7797967'), + (12455, 42, 2974, 'attending', '2025-01-18 18:59:10', '2025-12-17 19:46:22', 'dVDLp6ZA', '7814958'), + (12456, 42, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dVDLp6ZA', '7825913'), + (12457, 42, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dVDLp6ZA', '7826209'), + (12458, 42, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dVDLp6ZA', '7834742'), + (12459, 42, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842108'), + (12460, 42, 2990, 'attending', '2025-02-15 16:22:06', '2025-12-17 19:46:23', 'dVDLp6ZA', '7842898'), + (12461, 42, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842902'), + (12462, 42, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842903'), + (12463, 42, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dVDLp6ZA', '7842904'), + (12464, 42, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dVDLp6ZA', '7842905'), + (12465, 42, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842906'), + (12466, 42, 2996, 'attending', '2025-02-25 00:54:56', '2025-12-17 19:46:24', 'dVDLp6ZA', '7842907'), + (12467, 42, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'dVDLp6ZA', '7842909'), + (12468, 42, 3005, 'maybe', '2025-02-19 01:24:23', '2025-12-17 19:46:24', 'dVDLp6ZA', '7854604'), + (12469, 42, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dVDLp6ZA', '7855719'), + (12470, 42, 3007, 'attending', '2025-02-24 20:31:20', '2025-12-17 19:46:24', 'dVDLp6ZA', '7860683'), + (12471, 42, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dVDLp6ZA', '7860684'), + (12472, 42, 3011, 'attending', '2025-03-01 21:43:51', '2025-12-17 19:46:24', 'dVDLp6ZA', '7865624'), + (12473, 42, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dVDLp6ZA', '7866095'), + (12474, 42, 3013, 'maybe', '2025-03-04 03:13:27', '2025-12-17 19:46:18', 'dVDLp6ZA', '7869170'), + (12475, 42, 3014, 'attending', '2025-03-30 20:26:45', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869185'), + (12476, 42, 3015, 'attending', '2025-04-21 12:44:48', '2025-12-17 19:46:20', 'dVDLp6ZA', '7869186'), + (12477, 42, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869188'), + (12478, 42, 3023, 'attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869194'), + (12479, 42, 3024, 'attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'dVDLp6ZA', '7869195'), + (12480, 42, 3028, 'attending', '2025-04-03 02:07:47', '2025-12-17 19:46:20', 'dVDLp6ZA', '7869199'), + (12481, 42, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dVDLp6ZA', '7869201'), + (12482, 42, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dVDLp6ZA', '7877465'), + (12483, 42, 3036, 'maybe', '2025-03-13 22:28:28', '2025-12-17 19:46:19', 'dVDLp6ZA', '7880952'), + (12484, 42, 3043, 'attending', '2025-03-15 19:33:48', '2025-12-17 19:46:19', 'dVDLp6ZA', '7882587'), + (12485, 42, 3044, 'attending', '2025-03-26 02:51:46', '2025-12-17 19:46:19', 'dVDLp6ZA', '7882690'), + (12486, 42, 3045, 'attending', '2025-04-04 22:16:24', '2025-12-17 19:46:19', 'dVDLp6ZA', '7882691'), + (12487, 42, 3046, 'attending', '2025-04-12 21:07:03', '2025-12-17 19:46:20', 'dVDLp6ZA', '7882692'), + (12488, 42, 3047, 'attending', '2025-04-26 21:17:24', '2025-12-17 19:46:20', 'dVDLp6ZA', '7882693'), + (12489, 42, 3055, 'attending', '2025-03-26 01:50:19', '2025-12-17 19:46:19', 'dVDLp6ZA', '7888118'), + (12490, 42, 3056, 'maybe', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dVDLp6ZA', '7888250'), + (12491, 42, 3072, 'attending', '2025-04-03 01:41:01', '2025-12-17 19:46:19', 'dVDLp6ZA', '7895449'), + (12492, 42, 3085, 'not_attending', '2025-04-09 22:38:44', '2025-12-17 19:46:20', 'dVDLp6ZA', '7903688'), + (12493, 42, 3086, 'maybe', '2025-04-09 22:38:28', '2025-12-17 19:46:20', 'dVDLp6ZA', '7903852'), + (12494, 42, 3088, 'attending', '2025-06-03 17:13:02', '2025-12-17 19:46:15', 'dVDLp6ZA', '7904777'), + (12495, 42, 3090, 'maybe', '2025-04-16 13:28:15', '2025-12-17 19:46:20', 'dVDLp6ZA', '7914315'), + (12496, 42, 3094, 'attending', '2025-05-03 19:51:56', '2025-12-17 19:46:21', 'dVDLp6ZA', '8342292'), + (12497, 42, 3095, 'attending', '2025-04-28 22:55:40', '2025-12-17 19:46:20', 'dVDLp6ZA', '8342293'), + (12498, 42, 3104, 'attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVDLp6ZA', '8349164'), + (12499, 42, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVDLp6ZA', '8349545'), + (12500, 42, 3108, 'attending', '2025-05-03 19:51:21', '2025-12-17 19:46:20', 'dVDLp6ZA', '8351411'), + (12501, 42, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVDLp6ZA', '8353584'), + (12502, 42, 3126, 'attending', '2025-05-11 16:31:11', '2025-12-17 19:46:21', 'dVDLp6ZA', '8365614'), + (12503, 42, 3130, 'not_attending', '2025-05-12 12:36:37', '2025-12-17 19:46:21', 'dVDLp6ZA', '8367403'), + (12504, 42, 3131, 'attending', '2025-05-13 00:08:34', '2025-12-17 19:46:21', 'dVDLp6ZA', '8368028'), + (12505, 42, 3132, 'attending', '2025-05-18 14:49:44', '2025-12-17 19:46:21', 'dVDLp6ZA', '8368029'), + (12506, 42, 3134, 'attending', '2025-05-13 00:39:35', '2025-12-17 19:46:21', 'dVDLp6ZA', '8368031'), + (12507, 42, 3136, 'attending', '2025-05-18 14:49:16', '2025-12-17 19:46:21', 'dVDLp6ZA', '8374152'), + (12508, 42, 3139, 'attending', '2025-05-24 21:07:22', '2025-12-17 19:46:21', 'dVDLp6ZA', '8377425'), + (12509, 42, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dVDLp6ZA', '8388462'), + (12510, 42, 3150, 'attending', '2025-06-06 01:01:22', '2025-12-17 19:46:15', 'dVDLp6ZA', '8393174'), + (12511, 42, 3151, 'attending', '2025-05-31 18:52:24', '2025-12-17 19:46:14', 'dVDLp6ZA', '8393497'), + (12512, 42, 3153, 'maybe', '2025-06-03 17:12:56', '2025-12-17 19:46:15', 'dVDLp6ZA', '8400273'), + (12513, 42, 3154, 'attending', '2025-06-26 02:13:33', '2025-12-17 19:46:15', 'dVDLp6ZA', '8400274'), + (12514, 42, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dVDLp6ZA', '8400275'), + (12515, 42, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dVDLp6ZA', '8400276'), + (12516, 42, 3157, 'maybe', '2025-06-05 20:42:07', '2025-12-17 19:46:15', 'dVDLp6ZA', '8401407'), + (12517, 42, 3169, 'maybe', '2025-06-08 18:09:28', '2025-12-17 19:46:15', 'dVDLp6ZA', '8404977'), + (12518, 42, 3181, 'maybe', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dVDLp6ZA', '8430783'), + (12519, 42, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dVDLp6ZA', '8430784'), + (12520, 42, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dVDLp6ZA', '8430799'), + (12521, 42, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dVDLp6ZA', '8430800'), + (12522, 42, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dVDLp6ZA', '8430801'), + (12523, 42, 3188, 'maybe', '2025-07-13 19:07:59', '2025-12-17 19:46:17', 'dVDLp6ZA', '8438709'), + (12524, 42, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVDLp6ZA', '8457738'), + (12525, 42, 3195, 'maybe', '2025-07-27 00:32:05', '2025-12-17 19:46:17', 'dVDLp6ZA', '8458118'), + (12526, 42, 3196, 'maybe', '2025-08-09 19:21:27', '2025-12-17 19:46:17', 'dVDLp6ZA', '8458543'), + (12527, 42, 3198, 'attending', '2025-08-14 17:20:10', '2025-12-17 19:46:18', 'dVDLp6ZA', '8459268'), + (12528, 42, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVDLp6ZA', '8459566'), + (12529, 42, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVDLp6ZA', '8459567'), + (12530, 42, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dVDLp6ZA', '8459568'), + (12531, 42, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVDLp6ZA', '8461032'), + (12532, 42, 3210, 'attending', '2025-08-20 23:22:15', '2025-12-17 19:46:18', 'dVDLp6ZA', '8471162'), + (12533, 42, 3214, 'attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVDLp6ZA', '8477877'), + (12534, 42, 3225, 'attending', '2025-08-19 00:52:55', '2025-12-17 19:46:18', 'dVDLp6ZA', '8485680'), + (12535, 42, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'dVDLp6ZA', '8485688'), + (12536, 42, 3235, 'maybe', '2025-08-17 15:19:33', '2025-12-17 19:46:18', 'dVDLp6ZA', '8490587'), + (12537, 42, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVDLp6ZA', '8493552'), + (12538, 42, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dVDLp6ZA', '8493553'), + (12539, 42, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVDLp6ZA', '8493554'), + (12540, 42, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVDLp6ZA', '8493555'), + (12541, 42, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVDLp6ZA', '8493556'), + (12542, 42, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVDLp6ZA', '8493557'), + (12543, 42, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVDLp6ZA', '8493558'), + (12544, 42, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVDLp6ZA', '8493559'), + (12545, 42, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVDLp6ZA', '8493560'), + (12546, 42, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dVDLp6ZA', '8493561'), + (12547, 42, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVDLp6ZA', '8493572'), + (12548, 42, 3258, 'maybe', '2025-09-02 00:44:58', '2025-12-17 19:46:11', 'dVDLp6ZA', '8510285'), + (12549, 42, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dVDLp6ZA', '8540725'), + (12550, 42, 3289, 'attending', '2025-10-14 12:13:40', '2025-12-17 19:46:14', 'dVDLp6ZA', '8542939'), + (12551, 42, 3295, 'attending', '2025-10-28 21:07:19', '2025-12-17 19:46:14', 'dVDLp6ZA', '8547541'), + (12552, 42, 3300, 'attending', '2025-11-07 10:54:48', '2025-12-17 19:46:14', 'dVDLp6ZA', '8549145'), + (12553, 42, 3302, 'attending', '2025-11-08 11:45:49', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550022'), + (12554, 42, 3304, 'not_attending', '2025-11-08 11:45:53', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550024'), + (12555, 42, 3305, 'attending', '2025-12-03 00:55:09', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550025'), + (12556, 42, 3306, 'not_attending', '2025-12-07 22:38:09', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550026'), + (12557, 42, 3307, 'attending', '2025-12-13 20:30:57', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550027'), + (12558, 42, 3308, 'attending', '2025-11-09 22:16:14', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550408'), + (12559, 42, 3309, 'attending', '2025-11-14 22:56:07', '2025-12-17 19:46:14', 'dVDLp6ZA', '8550409'), + (12560, 42, 3310, 'attending', '2025-11-24 03:20:27', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550410'), + (12561, 42, 3311, 'not_attending', '2025-12-08 01:50:07', '2025-12-17 19:46:11', 'dVDLp6ZA', '8550412'), + (12562, 42, 3318, 'not_attending', '2025-11-07 02:02:38', '2025-12-17 19:46:14', 'dVDLp6ZA', '8553025'), + (12563, 42, 3319, 'not_attending', '2025-11-08 01:36:31', '2025-12-17 19:46:14', 'dVDLp6ZA', '8553114'), + (12564, 42, 3320, 'maybe', '2025-11-13 00:23:32', '2025-12-17 19:46:14', 'dVDLp6ZA', '8555219'), + (12565, 42, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dVDLp6ZA', '8555421'), + (12566, 42, 3323, 'attending', '2025-11-15 12:00:42', '2025-12-17 19:46:14', 'dVDLp6ZA', '8555522'), + (12567, 42, 3332, 'maybe', '2025-12-02 21:38:23', '2025-12-17 19:46:11', 'dVDLp6ZA', '8562248'), + (12568, 42, 3345, 'attending', '2025-12-20 21:03:07', '2025-12-20 21:03:07', NULL, NULL), + (12569, 43, 10, 'attending', '2020-03-25 23:38:55', '2025-12-17 19:47:56', 'x4oeVOJm', '2958053'), + (12570, 43, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'x4oeVOJm', '2961309'), + (12571, 43, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'x4oeVOJm', '2961895'), + (12572, 43, 34, 'attending', '2020-03-25 23:14:10', '2025-12-17 19:47:56', 'x4oeVOJm', '2966259'), + (12573, 43, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'x4oeVOJm', '2969208'), + (12574, 43, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'x4oeVOJm', '2971546'), + (12575, 43, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'x4oeVOJm', '2974534'), + (12576, 43, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'x4oeVOJm', '2974955'), + (12577, 43, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'x4oeVOJm', '2975384'), + (12578, 43, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'x4oeVOJm', '2975385'), + (12579, 43, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'x4oeVOJm', '2976575'), + (12580, 43, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'x4oeVOJm', '2977343'), + (12581, 43, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'x4oeVOJm', '2977812'), + (12582, 43, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'x4oeVOJm', '2977931'), + (12583, 43, 74, 'attending', '2020-04-18 00:24:39', '2025-12-17 19:47:57', 'x4oeVOJm', '2978244'), + (12584, 43, 75, 'attending', '2020-04-25 17:17:48', '2025-12-17 19:47:57', 'x4oeVOJm', '2978245'), + (12585, 43, 76, 'attending', '2020-04-18 00:24:43', '2025-12-17 19:47:57', 'x4oeVOJm', '2978246'), + (12586, 43, 77, 'attending', '2020-04-18 00:24:48', '2025-12-17 19:47:57', 'x4oeVOJm', '2978247'), + (12587, 43, 78, 'not_attending', '2020-05-19 18:49:52', '2025-12-17 19:47:57', 'x4oeVOJm', '2978249'), + (12588, 43, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'x4oeVOJm', '2978250'), + (12589, 43, 82, 'attending', '2020-04-10 22:33:23', '2025-12-17 19:47:57', 'x4oeVOJm', '2978433'), + (12590, 43, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'x4oeVOJm', '2978438'), + (12591, 43, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'x4oeVOJm', '2980871'), + (12592, 43, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'x4oeVOJm', '2981388'), + (12593, 43, 92, 'attending', '2020-04-19 07:02:28', '2025-12-17 19:47:57', 'x4oeVOJm', '2986743'), + (12594, 43, 103, 'attending', '2020-04-24 12:39:50', '2025-12-17 19:47:57', 'x4oeVOJm', '2991407'), + (12595, 43, 104, 'attending', '2020-04-24 13:41:50', '2025-12-17 19:47:57', 'x4oeVOJm', '2991471'), + (12596, 43, 106, 'attending', '2020-04-26 22:32:42', '2025-12-17 19:47:57', 'x4oeVOJm', '2993501'), + (12597, 43, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'x4oeVOJm', '2994480'), + (12598, 43, 110, 'not_attending', '2020-05-03 15:13:01', '2025-12-17 19:47:57', 'x4oeVOJm', '2994906'), + (12599, 43, 114, 'not_attending', '2020-04-28 14:40:24', '2025-12-17 19:47:57', 'x4oeVOJm', '2994911'), + (12600, 43, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', 'x4oeVOJm', '3001217'), + (12601, 43, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'x4oeVOJm', '3023063'), + (12602, 43, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'x4oeVOJm', '3034321'), + (12603, 43, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'x4oeVOJm', '3035881'), + (12604, 43, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'x4oeVOJm', '3049983'), + (12605, 43, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'x4oeVOJm', '3058959'), + (12606, 43, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'x4oeVOJm', '3067093'), + (12607, 43, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'x4oeVOJm', '3075228'), + (12608, 43, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'x4oeVOJm', '3075456'), + (12609, 43, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'x4oeVOJm', '3083791'), + (12610, 43, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'x4oeVOJm', '3085151'), + (12611, 43, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'x4oeVOJm', '3087265'), + (12612, 43, 197, 'attending', '2020-08-21 00:20:28', '2025-12-17 19:47:56', 'x4oeVOJm', '3087266'), + (12613, 43, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'x4oeVOJm', '3087267'), + (12614, 43, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'x4oeVOJm', '3087268'), + (12615, 43, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'x4oeVOJm', '3088653'), + (12616, 43, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'x4oeVOJm', '3106813'), + (12617, 43, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'x4oeVOJm', '3129980'), + (12618, 43, 225, 'attending', '2020-07-13 21:33:15', '2025-12-17 19:47:55', 'x4oeVOJm', '3132378'), + (12619, 43, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'x4oeVOJm', '3132817'), + (12620, 43, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'x4oeVOJm', '3132820'), + (12621, 43, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'x4oeVOJm', '3155321'), + (12622, 43, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'x4oeVOJm', '3162006'), + (12623, 43, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'x4oeVOJm', '3163442'), + (12624, 43, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'x4oeVOJm', '3172832'), + (12625, 43, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'x4oeVOJm', '3172833'), + (12626, 43, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'x4oeVOJm', '3172834'), + (12627, 43, 296, 'attending', '2020-08-10 02:04:42', '2025-12-17 19:47:56', 'x4oeVOJm', '3172876'), + (12628, 43, 305, 'attending', '2020-08-14 14:27:01', '2025-12-17 19:47:56', 'x4oeVOJm', '3179555'), + (12629, 43, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'x4oeVOJm', '3186057'), + (12630, 43, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'x4oeVOJm', '3191735'), + (12631, 43, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'x4oeVOJm', '3200209'), + (12632, 43, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', 'x4oeVOJm', '3214207'), + (12633, 43, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'x4oeVOJm', '3217037'), + (12634, 43, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'x4oeVOJm', '3218510'), + (12635, 43, 379, 'attending', '2020-09-26 00:17:56', '2025-12-17 19:47:52', 'x4oeVOJm', '3226266'), + (12636, 43, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'x4oeVOJm', '3228698'), + (12637, 43, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'x4oeVOJm', '3228699'), + (12638, 43, 387, 'attending', '2020-10-17 16:01:40', '2025-12-17 19:47:52', 'x4oeVOJm', '3228700'), + (12639, 43, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'x4oeVOJm', '3228701'), + (12640, 43, 424, 'attending', '2020-10-12 00:53:47', '2025-12-17 19:47:52', 'x4oeVOJm', '3245751'), + (12641, 43, 427, 'attending', '2020-10-14 16:13:55', '2025-12-17 19:47:53', 'x4oeVOJm', '3250233'), + (12642, 43, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'x4oeVOJm', '3256168'), + (12643, 43, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'x4oeVOJm', '3263578'), + (12644, 43, 456, 'attending', '2020-11-05 05:32:38', '2025-12-17 19:47:54', 'x4oeVOJm', '3276428'), + (12645, 43, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'x4oeVOJm', '3281467'), + (12646, 43, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'x4oeVOJm', '3281470'), + (12647, 43, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'x4oeVOJm', '3281829'), + (12648, 43, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'x4oeVOJm', '3285413'), + (12649, 43, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'x4oeVOJm', '3285414'), + (12650, 43, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'x4oeVOJm', '3297764'), + (12651, 43, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'x4oeVOJm', '3313856'), + (12652, 43, 499, 'attending', '2020-11-30 03:46:08', '2025-12-17 19:47:55', 'x4oeVOJm', '3314909'), + (12653, 43, 500, 'attending', '2020-12-14 02:14:48', '2025-12-17 19:47:55', 'x4oeVOJm', '3314964'), + (12654, 43, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'x4oeVOJm', '3323365'), + (12655, 43, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'x4oeVOJm', '3329383'), + (12656, 43, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'x4oeVOJm', '3351539'), + (12657, 43, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'x4oeVOJm', '3386848'), + (12658, 43, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'x4oeVOJm', '3389527'), + (12659, 43, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'x4oeVOJm', '3396499'), + (12660, 43, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'x4oeVOJm', '3403650'), + (12661, 43, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'x4oeVOJm', '3406988'), + (12662, 43, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'x4oeVOJm', '3416576'), + (12663, 43, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'x4oeVOJm', '3426074'), + (12664, 43, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'x4oeVOJm', '3430267'), + (12665, 43, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'x4oeVOJm', '3470303'), + (12666, 43, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'x4oeVOJm', '3470305'), + (12667, 43, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'x4oeVOJm', '3470991'), + (12668, 43, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'x4oeVOJm', '3517815'), + (12669, 43, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'x4oeVOJm', '3517816'), + (12670, 43, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'x4oeVOJm', '3523941'), + (12671, 43, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'x4oeVOJm', '3533850'), + (12672, 43, 637, 'attending', '2021-03-01 17:30:57', '2025-12-17 19:47:51', 'x4oeVOJm', '3536411'), + (12673, 43, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'x4oeVOJm', '3536632'), + (12674, 43, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'x4oeVOJm', '3536656'), + (12675, 43, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'x4oeVOJm', '3539916'), + (12676, 43, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'x4oeVOJm', '3539917'), + (12677, 43, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'x4oeVOJm', '3539918'), + (12678, 43, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'x4oeVOJm', '3539919'), + (12679, 43, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'x4oeVOJm', '3539920'), + (12680, 43, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'x4oeVOJm', '3539921'), + (12681, 43, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'x4oeVOJm', '3539922'), + (12682, 43, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'x4oeVOJm', '3539923'), + (12683, 43, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'x4oeVOJm', '3539927'), + (12684, 43, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'x4oeVOJm', '3582734'), + (12685, 43, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'x4oeVOJm', '3583262'), + (12686, 43, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'x4oeVOJm', '3619523'), + (12687, 43, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'x4oeVOJm', '3661369'), + (12688, 43, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'x4oeVOJm', '3674262'), + (12689, 43, 761, 'attending', '2021-04-16 12:30:47', '2025-12-17 19:47:46', 'x4oeVOJm', '3716041'), + (12690, 43, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'x4oeVOJm', '3730212'), + (12691, 43, 784, 'attending', '2021-05-01 15:15:08', '2025-12-17 19:47:46', 'x4oeVOJm', '3768775'), + (12692, 43, 792, 'attending', '2021-05-07 17:54:27', '2025-12-17 19:47:46', 'x4oeVOJm', '3793156'), + (12693, 43, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'x4oeVOJm', '3974109'), + (12694, 43, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'x4oeVOJm', '3975311'), + (12695, 43, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'x4oeVOJm', '3975312'), + (12696, 43, 835, 'not_attending', '2021-06-04 00:28:36', '2025-12-17 19:47:47', 'x4oeVOJm', '3992486'), + (12697, 43, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'x4oeVOJm', '3994992'), + (12698, 43, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'x4oeVOJm', '4014338'), + (12699, 43, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'x4oeVOJm', '4021848'), + (12700, 43, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'x4oeVOJm', '4136744'), + (12701, 43, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'x4oeVOJm', '4136937'), + (12702, 43, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'x4oeVOJm', '4136938'), + (12703, 43, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'x4oeVOJm', '4136947'), + (12704, 43, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oeVOJm', '4210314'), + (12705, 43, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oeVOJm', '4225444'), + (12706, 43, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'x4oeVOJm', '4239259'), + (12707, 43, 900, 'maybe', '2021-07-24 13:14:38', '2025-12-17 19:47:40', 'x4oeVOJm', '4240316'), + (12708, 43, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oeVOJm', '4240317'), + (12709, 43, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'x4oeVOJm', '4240318'), + (12710, 43, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'x4oeVOJm', '4240320'), + (12711, 43, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'x4oeVOJm', '4250163'), + (12712, 43, 906, 'not_attending', '2021-07-05 05:49:09', '2025-12-17 19:47:39', 'x4oeVOJm', '4253431'), + (12713, 43, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oeVOJm', '4275957'), + (12714, 43, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oeVOJm', '4277819'), + (12715, 43, 932, 'attending', '2021-07-22 22:55:33', '2025-12-17 19:47:42', 'x4oeVOJm', '4301664'), + (12716, 43, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oeVOJm', '4301723'), + (12717, 43, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'x4oeVOJm', '4302093'), + (12718, 43, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oeVOJm', '4304151'), + (12719, 43, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'x4oeVOJm', '4356801'), + (12720, 43, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'x4oeVOJm', '4366186'), + (12721, 43, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'x4oeVOJm', '4366187'), + (12722, 43, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'x4oeVOJm', '4420735'), + (12723, 43, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'x4oeVOJm', '4420738'), + (12724, 43, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'x4oeVOJm', '4420739'), + (12725, 43, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'x4oeVOJm', '4420741'), + (12726, 43, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'x4oeVOJm', '4420744'), + (12727, 43, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'x4oeVOJm', '4420747'), + (12728, 43, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'x4oeVOJm', '4420748'), + (12729, 43, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'x4oeVOJm', '4420749'), + (12730, 43, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'x4oeVOJm', '4461883'), + (12731, 43, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'x4oeVOJm', '4508342'), + (12732, 43, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'x4oeVOJm', '4568602'), + (12733, 43, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'x4oeVOJm', '4572153'), + (12734, 43, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'x4oeVOJm', '4585962'), + (12735, 43, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'x4oeVOJm', '4596356'), + (12736, 43, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'x4oeVOJm', '4598860'), + (12737, 43, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'x4oeVOJm', '4598861'), + (12738, 43, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'x4oeVOJm', '4602797'), + (12739, 43, 1102, 'attending', '2021-11-14 21:21:27', '2025-12-17 19:47:37', 'x4oeVOJm', '4612098'), + (12740, 43, 1114, 'not_attending', '2021-11-14 00:08:37', '2025-12-17 19:47:36', 'x4oeVOJm', '4637896'), + (12741, 43, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'x4oeVOJm', '4642994'), + (12742, 43, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'x4oeVOJm', '4642995'), + (12743, 43, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'x4oeVOJm', '4642996'), + (12744, 43, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'x4oeVOJm', '4642997'), + (12745, 43, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'x4oeVOJm', '4645687'), + (12746, 43, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'x4oeVOJm', '4645698'), + (12747, 43, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'x4oeVOJm', '4645704'), + (12748, 43, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'x4oeVOJm', '4645705'), + (12749, 43, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'x4oeVOJm', '4668385'), + (12750, 43, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'x4oeVOJm', '4694407'), + (12751, 43, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'x4oeVOJm', '4736497'), + (12752, 43, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'x4oeVOJm', '4736499'), + (12753, 43, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'x4oeVOJm', '4736500'), + (12754, 43, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'x4oeVOJm', '4736503'), + (12755, 43, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'x4oeVOJm', '4736504'), + (12756, 43, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'x4oeVOJm', '4746789'), + (12757, 43, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'x4oeVOJm', '4753929'), + (12758, 43, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'x4oeVOJm', '5038850'), + (12759, 43, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'x4oeVOJm', '5045826'), + (12760, 43, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'x4oeVOJm', '5132533'), + (12761, 43, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'x4oeVOJm', '5186582'), + (12762, 43, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'x4oeVOJm', '5186583'), + (12763, 43, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'x4oeVOJm', '5186585'), + (12764, 43, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'x4oeVOJm', '5190437'), + (12765, 43, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'x4oeVOJm', '5215989'), + (12766, 43, 1346, 'not_attending', '2022-04-23 21:49:08', '2025-12-17 19:47:27', 'x4oeVOJm', '5247467'), + (12767, 43, 1362, 'attending', '2022-04-27 00:53:37', '2025-12-17 19:47:28', 'x4oeVOJm', '5260800'), + (12768, 43, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'x4oeVOJm', '5269930'), + (12769, 43, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'x4oeVOJm', '5271448'), + (12770, 43, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'x4oeVOJm', '5271449'), + (12771, 43, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'x4oeVOJm', '5276469'), + (12772, 43, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'x4oeVOJm', '5278159'), + (12773, 43, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'x4oeVOJm', '5363695'), + (12774, 43, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'x4oeVOJm', '5365960'), + (12775, 43, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'x4oeVOJm', '5368973'), + (12776, 43, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'x4oeVOJm', '5378247'), + (12777, 43, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'x4oeVOJm', '5389605'), + (12778, 43, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'x4oeVOJm', '5397265'), + (12779, 43, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'x4oeVOJm', '5403967'), + (12780, 43, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'x4oeVOJm', '5405203'), + (12781, 43, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'x4oeVOJm', '5408794'), + (12782, 43, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'x4oeVOJm', '5411699'), + (12783, 43, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'x4oeVOJm', '5412550'), + (12784, 43, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'x4oeVOJm', '5415046'), + (12785, 43, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'x4oeVOJm', '5422086'), + (12786, 43, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'x4oeVOJm', '5422406'), + (12787, 43, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'x4oeVOJm', '5424565'), + (12788, 43, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'x4oeVOJm', '5426882'), + (12789, 43, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'x4oeVOJm', '5427083'), + (12790, 43, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'x4oeVOJm', '5441125'), + (12791, 43, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'x4oeVOJm', '5441126'), + (12792, 43, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'x4oeVOJm', '5441128'), + (12793, 43, 1517, 'attending', '2022-08-26 22:10:44', '2025-12-17 19:47:23', 'x4oeVOJm', '5441130'), + (12794, 43, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'x4oeVOJm', '5441131'), + (12795, 43, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'x4oeVOJm', '5441132'), + (12796, 43, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'x4oeVOJm', '5446643'), + (12797, 43, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'x4oeVOJm', '5453325'), + (12798, 43, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'x4oeVOJm', '5454516'), + (12799, 43, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'x4oeVOJm', '5454605'), + (12800, 43, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'x4oeVOJm', '5455037'), + (12801, 43, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'x4oeVOJm', '5461278'), + (12802, 43, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'x4oeVOJm', '5469480'), + (12803, 43, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'x4oeVOJm', '5471073'), + (12804, 43, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'x4oeVOJm', '5474663'), + (12805, 43, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'x4oeVOJm', '5482022'), + (12806, 43, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'x4oeVOJm', '5482793'), + (12807, 43, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'x4oeVOJm', '5488912'), + (12808, 43, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'x4oeVOJm', '5492192'), + (12809, 43, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'x4oeVOJm', '5493139'), + (12810, 43, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'x4oeVOJm', '5493200'), + (12811, 43, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'x4oeVOJm', '5502188'), + (12812, 43, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'x4oeVOJm', '5505059'), + (12813, 43, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'x4oeVOJm', '5509055'), + (12814, 43, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'x4oeVOJm', '5512862'), + (12815, 43, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'x4oeVOJm', '5513985'), + (12816, 43, 1626, 'attending', '2022-08-26 00:31:12', '2025-12-17 19:47:11', 'x4oeVOJm', '5519981'), + (12817, 43, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'x4oeVOJm', '5522550'), + (12818, 43, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'x4oeVOJm', '5534683'), + (12819, 43, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'x4oeVOJm', '5537735'), + (12820, 43, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'x4oeVOJm', '5540859'), + (12821, 43, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'x4oeVOJm', '5546619'), + (12822, 43, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'x4oeVOJm', '5555245'), + (12823, 43, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'x4oeVOJm', '5557747'), + (12824, 43, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'x4oeVOJm', '5560255'), + (12825, 43, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'x4oeVOJm', '5562906'), + (12826, 43, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'x4oeVOJm', '5600604'), + (12827, 43, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'x4oeVOJm', '5605544'), + (12828, 43, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'x4oeVOJm', '5630960'), + (12829, 43, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'x4oeVOJm', '5630961'), + (12830, 43, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'x4oeVOJm', '5630962'), + (12831, 43, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'x4oeVOJm', '5630966'), + (12832, 43, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'x4oeVOJm', '5630967'), + (12833, 43, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'x4oeVOJm', '5630968'), + (12834, 43, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'x4oeVOJm', '5635406'), + (12835, 43, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'x4oeVOJm', '5638765'), + (12836, 43, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'x4oeVOJm', '5640097'), + (12837, 43, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'x4oeVOJm', '5640843'), + (12838, 43, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'x4oeVOJm', '5641521'), + (12839, 43, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'x4oeVOJm', '5642818'), + (12840, 43, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'x4oeVOJm', '5652395'), + (12841, 43, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'x4oeVOJm', '5670445'), + (12842, 43, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'x4oeVOJm', '5671637'), + (12843, 43, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'x4oeVOJm', '5672329'), + (12844, 43, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'x4oeVOJm', '5674057'), + (12845, 43, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'x4oeVOJm', '5674060'), + (12846, 43, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'x4oeVOJm', '5677461'), + (12847, 43, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'x4oeVOJm', '5698046'), + (12848, 43, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'x4oeVOJm', '5699760'), + (12849, 43, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'x4oeVOJm', '5741601'), + (12850, 43, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'x4oeVOJm', '5763458'), + (12851, 43, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'x4oeVOJm', '5774172'), + (12852, 43, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'x4oeVOJm', '5818247'), + (12853, 43, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'x4oeVOJm', '5819471'), + (12854, 43, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'x4oeVOJm', '5827739'), + (12855, 43, 1844, 'attending', '2022-12-18 00:27:56', '2025-12-17 19:47:05', 'x4oeVOJm', '5844306'), + (12856, 43, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'x4oeVOJm', '5850159'), + (12857, 43, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'x4oeVOJm', '5858999'), + (12858, 43, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'x4oeVOJm', '5871984'), + (12859, 43, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'x4oeVOJm', '5876354'), + (12860, 43, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'x4oeVOJm', '5880939'), + (12861, 43, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'x4oeVOJm', '5880940'), + (12862, 43, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'x4oeVOJm', '5880942'), + (12863, 43, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'x4oeVOJm', '5880943'), + (12864, 43, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'x4oeVOJm', '5887890'), + (12865, 43, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'x4oeVOJm', '5888598'), + (12866, 43, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'x4oeVOJm', '5893260'), + (12867, 43, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'x4oeVOJm', '5899826'), + (12868, 43, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'x4oeVOJm', '5900199'), + (12869, 43, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'x4oeVOJm', '5900200'), + (12870, 43, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'x4oeVOJm', '5900202'), + (12871, 43, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'x4oeVOJm', '5900203'), + (12872, 43, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'x4oeVOJm', '5901108'), + (12873, 43, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'x4oeVOJm', '5901126'), + (12874, 43, 1897, 'attending', '2023-02-11 00:55:35', '2025-12-17 19:47:07', 'x4oeVOJm', '5901128'), + (12875, 43, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'x4oeVOJm', '5909655'), + (12876, 43, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'x4oeVOJm', '5910522'), + (12877, 43, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'x4oeVOJm', '5910526'), + (12878, 43, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'x4oeVOJm', '5910528'), + (12879, 43, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'x4oeVOJm', '5916219'), + (12880, 43, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'x4oeVOJm', '5936234'), + (12881, 43, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'x4oeVOJm', '5958351'), + (12882, 43, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'x4oeVOJm', '5959751'), + (12883, 43, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'x4oeVOJm', '5959755'), + (12884, 43, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'x4oeVOJm', '5960055'), + (12885, 43, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'x4oeVOJm', '5961684'), + (12886, 43, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'x4oeVOJm', '5962132'), + (12887, 43, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'x4oeVOJm', '5962133'), + (12888, 43, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'x4oeVOJm', '5962134'), + (12889, 43, 1947, 'not_attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'x4oeVOJm', '5962233'), + (12890, 43, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'x4oeVOJm', '5962317'), + (12891, 43, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'x4oeVOJm', '5962318'), + (12892, 43, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'x4oeVOJm', '5965933'), + (12893, 43, 1953, 'attending', '2023-03-01 20:39:23', '2025-12-17 19:47:09', 'x4oeVOJm', '5966307'), + (12894, 43, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'x4oeVOJm', '5967014'), + (12895, 43, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'x4oeVOJm', '5972763'), + (12896, 43, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'x4oeVOJm', '5972815'), + (12897, 43, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'x4oeVOJm', '5974016'), + (12898, 43, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'x4oeVOJm', '5981515'), + (12899, 43, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'x4oeVOJm', '5993516'), + (12900, 43, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'x4oeVOJm', '5998939'), + (12901, 43, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'x4oeVOJm', '6028191'), + (12902, 43, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'x4oeVOJm', '6040066'), + (12903, 43, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'x4oeVOJm', '6042717'), + (12904, 43, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'x4oeVOJm', '6044838'), + (12905, 43, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'x4oeVOJm', '6044839'), + (12906, 43, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oeVOJm', '6045684'), + (12907, 43, 1991, 'attending', '2023-03-30 14:47:04', '2025-12-17 19:46:58', 'x4oeVOJm', '6047354'), + (12908, 43, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'x4oeVOJm', '6050104'), + (12909, 43, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'x4oeVOJm', '6053195'), + (12910, 43, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'x4oeVOJm', '6053198'), + (12911, 43, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'x4oeVOJm', '6056085'), + (12912, 43, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'x4oeVOJm', '6056916'), + (12913, 43, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'x4oeVOJm', '6059290'), + (12914, 43, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'x4oeVOJm', '6060328'), + (12915, 43, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'x4oeVOJm', '6061037'), + (12916, 43, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'x4oeVOJm', '6061039'), + (12917, 43, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'x4oeVOJm', '6065813'), + (12918, 43, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'x4oeVOJm', '6067245'), + (12919, 43, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'x4oeVOJm', '6068094'), + (12920, 43, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'x4oeVOJm', '6068252'), + (12921, 43, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'x4oeVOJm', '6068253'), + (12922, 43, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'x4oeVOJm', '6068254'), + (12923, 43, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'x4oeVOJm', '6068280'), + (12924, 43, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'x4oeVOJm', '6069093'), + (12925, 43, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'x4oeVOJm', '6072528'), + (12926, 43, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', 'x4oeVOJm', '6073678'), + (12927, 43, 2045, 'attending', '2023-04-27 13:13:49', '2025-12-17 19:47:01', 'x4oeVOJm', '6075556'), + (12928, 43, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'x4oeVOJm', '6079840'), + (12929, 43, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'x4oeVOJm', '6083398'), + (12930, 43, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'x4oeVOJm', '6093504'), + (12931, 43, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'x4oeVOJm', '6097414'), + (12932, 43, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'x4oeVOJm', '6097442'), + (12933, 43, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'x4oeVOJm', '6097684'), + (12934, 43, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'x4oeVOJm', '6098762'), + (12935, 43, 2064, 'attending', '2023-06-20 14:40:23', '2025-12-17 19:46:50', 'x4oeVOJm', '6099988'), + (12936, 43, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'x4oeVOJm', '6101361'), + (12937, 43, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'x4oeVOJm', '6101362'), + (12938, 43, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', 'x4oeVOJm', '6119877'), + (12939, 43, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'x4oeVOJm', '6120034'), + (12940, 43, 2094, 'not_attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'x4oeVOJm', '6135924'), + (12941, 43, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'x4oeVOJm', '6136733'), + (12942, 43, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'x4oeVOJm', '6137989'), + (12943, 43, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'x4oeVOJm', '6150864'), + (12944, 43, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'x4oeVOJm', '6155491'), + (12945, 43, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'x4oeVOJm', '6164417'), + (12946, 43, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'x4oeVOJm', '6166388'), + (12947, 43, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'x4oeVOJm', '6176439'), + (12948, 43, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'x4oeVOJm', '6182410'), + (12949, 43, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'x4oeVOJm', '6185812'), + (12950, 43, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'x4oeVOJm', '6187651'), + (12951, 43, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'x4oeVOJm', '6187963'), + (12952, 43, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'x4oeVOJm', '6187964'), + (12953, 43, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'x4oeVOJm', '6187966'), + (12954, 43, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'x4oeVOJm', '6187967'), + (12955, 43, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'x4oeVOJm', '6187969'), + (12956, 43, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'x4oeVOJm', '6334878'), + (12957, 43, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'x4oeVOJm', '6337236'), + (12958, 43, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'x4oeVOJm', '6337970'), + (12959, 43, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'x4oeVOJm', '6338308'), + (12960, 43, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'x4oeVOJm', '6341710'), + (12961, 43, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'x4oeVOJm', '6342044'), + (12962, 43, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'x4oeVOJm', '6342298'), + (12963, 43, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'x4oeVOJm', '6343294'), + (12964, 43, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'x4oeVOJm', '6347034'), + (12965, 43, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'x4oeVOJm', '6347056'), + (12966, 43, 2183, 'attending', '2023-07-29 21:03:51', '2025-12-17 19:46:54', 'x4oeVOJm', '6353008'), + (12967, 43, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'x4oeVOJm', '6353830'), + (12968, 43, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'x4oeVOJm', '6353831'), + (12969, 43, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'x4oeVOJm', '6357867'), + (12970, 43, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'x4oeVOJm', '6358652'), + (12971, 43, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'x4oeVOJm', '6361709'), + (12972, 43, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'x4oeVOJm', '6361710'), + (12973, 43, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'x4oeVOJm', '6361711'), + (12974, 43, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'x4oeVOJm', '6361712'), + (12975, 43, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'x4oeVOJm', '6361713'), + (12976, 43, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'x4oeVOJm', '6394629'), + (12977, 43, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'x4oeVOJm', '6394631'), + (12978, 43, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'x4oeVOJm', '6440863'), + (12979, 43, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'x4oeVOJm', '6445440'), + (12980, 43, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'x4oeVOJm', '6453951'), + (12981, 43, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'x4oeVOJm', '6461696'), + (12982, 43, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'x4oeVOJm', '6462129'), + (12983, 43, 2291, 'attending', '2023-10-20 15:50:06', '2025-12-17 19:46:46', 'x4oeVOJm', '6462215'), + (12984, 43, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'x4oeVOJm', '6463218'), + (12985, 43, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'x4oeVOJm', '6472181'), + (12986, 43, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'x4oeVOJm', '6482693'), + (12987, 43, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'x4oeVOJm', '6484200'), + (12988, 43, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'x4oeVOJm', '6484680'), + (12989, 43, 2310, 'attending', '2023-10-29 03:30:07', '2025-12-17 19:46:47', 'x4oeVOJm', '6487709'), + (12990, 43, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'x4oeVOJm', '6507741'), + (12991, 43, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'x4oeVOJm', '6514659'), + (12992, 43, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'x4oeVOJm', '6514660'), + (12993, 43, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'x4oeVOJm', '6519103'), + (12994, 43, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'x4oeVOJm', '6535681'), + (12995, 43, 2351, 'attending', '2023-11-21 02:14:06', '2025-12-17 19:46:48', 'x4oeVOJm', '6584747'), + (12996, 43, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'x4oeVOJm', '6587097'), + (12997, 43, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'x4oeVOJm', '6609022'), + (12998, 43, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'x4oeVOJm', '6632757'), + (12999, 43, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'x4oeVOJm', '6644187'), + (13000, 43, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'x4oeVOJm', '6648951'), + (13001, 43, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'x4oeVOJm', '6648952'), + (13002, 43, 2388, 'attending', '2024-01-06 02:58:57', '2025-12-17 19:46:37', 'x4oeVOJm', '6649244'), + (13003, 43, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'x4oeVOJm', '6655401'), + (13004, 43, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'x4oeVOJm', '6661585'), + (13005, 43, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'x4oeVOJm', '6661588'), + (13006, 43, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'x4oeVOJm', '6661589'), + (13007, 43, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'x4oeVOJm', '6699906'), + (13008, 43, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'x4oeVOJm', '6699913'), + (13009, 43, 2413, 'attending', '2024-02-08 02:21:50', '2025-12-17 19:46:42', 'x4oeVOJm', '6700719'), + (13010, 43, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'x4oeVOJm', '6701109'), + (13011, 43, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'x4oeVOJm', '6705219'), + (13012, 43, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'x4oeVOJm', '6710153'), + (13013, 43, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'x4oeVOJm', '6711552'), + (13014, 43, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'x4oeVOJm', '6711553'), + (13015, 43, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'x4oeVOJm', '6722688'), + (13016, 43, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'x4oeVOJm', '6730620'), + (13017, 43, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'x4oeVOJm', '6730642'), + (13018, 43, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'x4oeVOJm', '6740364'), + (13019, 43, 2454, 'attending', '2024-02-08 02:27:20', '2025-12-17 19:46:42', 'x4oeVOJm', '6740921'), + (13020, 43, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'x4oeVOJm', '6743829'), + (13021, 43, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'x4oeVOJm', '7030380'), + (13022, 43, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'x4oeVOJm', '7033677'), + (13023, 43, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'x4oeVOJm', '7035415'), + (13024, 43, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'x4oeVOJm', '7044715'), + (13025, 43, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'x4oeVOJm', '7050318'), + (13026, 43, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'x4oeVOJm', '7050319'), + (13027, 43, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'x4oeVOJm', '7050322'), + (13028, 43, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'x4oeVOJm', '7057804'), + (13029, 43, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'x4oeVOJm', '7072824'), + (13030, 43, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'x4oeVOJm', '7074348'), + (13031, 43, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'x4oeVOJm', '7074364'), + (13032, 43, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'x4oeVOJm', '7089267'), + (13033, 43, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'x4oeVOJm', '7098747'), + (13034, 43, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'x4oeVOJm', '7113468'), + (13035, 43, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'x4oeVOJm', '7114856'), + (13036, 43, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'x4oeVOJm', '7114951'), + (13037, 43, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'x4oeVOJm', '7114955'), + (13038, 43, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'x4oeVOJm', '7114956'), + (13039, 43, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'x4oeVOJm', '7114957'), + (13040, 43, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'x4oeVOJm', '7153615'), + (13041, 43, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'x4oeVOJm', '7159484'), + (13042, 43, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'x4oeVOJm', '7178446'), + (13043, 43, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'x4oeVOJm', '7220467'), + (13044, 43, 2605, 'attending', '2024-04-29 03:45:06', '2025-12-17 19:46:35', 'x4oeVOJm', '7229243'), + (13045, 43, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'x4oeVOJm', '7240354'), + (13046, 43, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'x4oeVOJm', '7251633'), + (13047, 43, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'x4oeVOJm', '7302674'), + (13048, 43, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'x4oeVOJm', '7324073'), + (13049, 43, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'x4oeVOJm', '7324074'), + (13050, 43, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'x4oeVOJm', '7324075'), + (13051, 43, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'x4oeVOJm', '7324078'), + (13052, 43, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'x4oeVOJm', '7324082'), + (13053, 43, 2722, 'attending', '2024-06-18 22:36:45', '2025-12-17 19:46:29', 'x4oeVOJm', '7331457'), + (13054, 43, 2753, 'attending', '2024-07-08 21:47:20', '2025-12-17 19:46:30', 'x4oeVOJm', '7355538'), + (13055, 43, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'x4oeVOJm', '7363643'), + (13056, 43, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'x4oeVOJm', '7368606'), + (13057, 43, 2787, 'attending', '2024-08-01 22:02:27', '2025-12-17 19:46:32', 'x4oeVOJm', '7381568'), + (13058, 43, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'x4oeVOJm', '7397462'), + (13059, 43, 2805, 'attending', '2024-08-20 14:00:40', '2025-12-17 19:46:32', 'x4oeVOJm', '7403620'), + (13060, 43, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'x4oeVOJm', '7424275'), + (13061, 43, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'x4oeVOJm', '7424276'), + (13062, 43, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'x4oeVOJm', '7432751'), + (13063, 43, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'x4oeVOJm', '7432752'), + (13064, 43, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'x4oeVOJm', '7432753'), + (13065, 43, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'x4oeVOJm', '7432754'), + (13066, 43, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'x4oeVOJm', '7432755'), + (13067, 43, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'x4oeVOJm', '7432756'), + (13068, 43, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'x4oeVOJm', '7432758'), + (13069, 43, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'x4oeVOJm', '7432759'), + (13070, 43, 2832, 'attending', '2024-09-09 20:27:36', '2025-12-17 19:46:24', 'x4oeVOJm', '7433324'), + (13071, 43, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'x4oeVOJm', '7433834'), + (13072, 43, 2837, 'not_attending', '2024-09-12 18:57:43', '2025-12-17 19:46:25', 'x4oeVOJm', '7438711'), + (13073, 43, 2843, 'maybe', '2024-09-22 19:48:44', '2025-12-17 19:46:25', 'x4oeVOJm', '7450219'), + (13074, 43, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'x4oeVOJm', '7470197'), + (13075, 43, 2873, 'attending', '2024-12-10 05:16:40', '2025-12-17 19:46:22', 'x4oeVOJm', '7480850'), + (13076, 43, 2878, 'attending', '2024-10-10 22:56:05', '2025-12-17 19:46:26', 'x4oeVOJm', '7633857'), + (13077, 43, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'x4oeVOJm', '7685613'), + (13078, 43, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'x4oeVOJm', '7688194'), + (13079, 43, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'x4oeVOJm', '7688196'), + (13080, 43, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'x4oeVOJm', '7688289'), + (13081, 43, 2908, 'not_attending', '2024-11-11 01:14:44', '2025-12-17 19:46:27', 'x4oeVOJm', '7689420'), + (13082, 43, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'x4oeVOJm', '7692763'), + (13083, 43, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'x4oeVOJm', '7697552'), + (13084, 43, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'x4oeVOJm', '7699878'), + (13085, 43, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'x4oeVOJm', '7704043'), + (13086, 43, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'x4oeVOJm', '7712467'), + (13087, 43, 2925, 'attending', '2024-12-10 18:07:34', '2025-12-17 19:46:21', 'x4oeVOJm', '7713584'), + (13088, 43, 2926, 'attending', '2024-12-04 07:36:35', '2025-12-17 19:46:21', 'x4oeVOJm', '7713585'), + (13089, 43, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'x4oeVOJm', '7713586'), + (13090, 43, 2942, 'not_attending', '2025-02-20 21:11:16', '2025-12-17 19:46:24', 'x4oeVOJm', '7725960'), + (13091, 43, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'x4oeVOJm', '7738518'), + (13092, 43, 2962, 'attending', '2024-12-25 03:15:39', '2025-12-17 19:46:22', 'x4oeVOJm', '7750632'), + (13093, 43, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'x4oeVOJm', '7750636'), + (13094, 43, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'x4oeVOJm', '7796540'), + (13095, 43, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'x4oeVOJm', '7796541'), + (13096, 43, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'x4oeVOJm', '7796542'), + (13097, 43, 2968, 'attending', '2025-01-08 20:09:55', '2025-12-17 19:46:22', 'x4oeVOJm', '7797967'), + (13098, 43, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'x4oeVOJm', '7825913'), + (13099, 43, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'x4oeVOJm', '7826209'), + (13100, 43, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'x4oeVOJm', '7834742'), + (13101, 43, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'x4oeVOJm', '7842108'), + (13102, 43, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'x4oeVOJm', '7842902'), + (13103, 43, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'x4oeVOJm', '7842903'), + (13104, 43, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'x4oeVOJm', '7842904'), + (13105, 43, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'x4oeVOJm', '7842905'), + (13106, 43, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'x4oeVOJm', '7842906'), + (13107, 43, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'x4oeVOJm', '7842909'), + (13108, 43, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'x4oeVOJm', '7855719'), + (13109, 43, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'x4oeVOJm', '7860683'), + (13110, 43, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'x4oeVOJm', '7860684'), + (13111, 43, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'x4oeVOJm', '7866095'), + (13112, 43, 3013, 'attending', '2025-03-04 04:05:12', '2025-12-17 19:46:18', 'x4oeVOJm', '7869170'), + (13113, 43, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'x4oeVOJm', '7869188'), + (13114, 43, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'x4oeVOJm', '7869194'), + (13115, 43, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'x4oeVOJm', '7869195'), + (13116, 43, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'x4oeVOJm', '7877465'), + (13117, 43, 3056, 'attending', '2025-03-21 15:24:13', '2025-12-17 19:46:19', 'x4oeVOJm', '7888250'), + (13118, 43, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'x4oeVOJm', '7903852'), + (13119, 43, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'x4oeVOJm', '7904777'), + (13120, 43, 3095, 'attending', '2025-05-03 18:01:47', '2025-12-17 19:46:20', 'x4oeVOJm', '8342293'), + (13121, 43, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'x4oeVOJm', '8349164'), + (13122, 43, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'x4oeVOJm', '8349545'), + (13123, 43, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'x4oeVOJm', '8353584'), + (13124, 43, 3114, 'maybe', '2025-05-05 11:59:34', '2025-12-17 19:46:20', 'x4oeVOJm', '8357180'), + (13125, 43, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'x4oeVOJm', '8368028'), + (13126, 43, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'x4oeVOJm', '8368029'), + (13127, 43, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'x4oeVOJm', '8400273'), + (13128, 43, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'x4oeVOJm', '8400274'), + (13129, 43, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'x4oeVOJm', '8400275'), + (13130, 43, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'x4oeVOJm', '8400276'), + (13131, 43, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'x4oeVOJm', '8404977'), + (13132, 43, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'x4oeVOJm', '8430783'), + (13133, 43, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'x4oeVOJm', '8430784'), + (13134, 43, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'x4oeVOJm', '8430799'), + (13135, 43, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'x4oeVOJm', '8430800'), + (13136, 43, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'x4oeVOJm', '8430801'), + (13137, 43, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'x4oeVOJm', '8438709'), + (13138, 43, 3193, 'attending', '2025-07-17 22:37:24', '2025-12-17 19:46:17', 'x4oeVOJm', '8457738'), + (13139, 43, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'x4oeVOJm', '8459566'), + (13140, 43, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'x4oeVOJm', '8459567'), + (13141, 43, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'x4oeVOJm', '8459568'), + (13142, 43, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'x4oeVOJm', '8461032'), + (13143, 43, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'x4oeVOJm', '8477877'), + (13144, 43, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'x4oeVOJm', '8485688'), + (13145, 43, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'x4oeVOJm', '8490587'), + (13146, 43, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'x4oeVOJm', '8493552'), + (13147, 43, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'x4oeVOJm', '8493553'), + (13148, 43, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'x4oeVOJm', '8493554'), + (13149, 43, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'x4oeVOJm', '8493555'), + (13150, 43, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'x4oeVOJm', '8493556'), + (13151, 43, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'x4oeVOJm', '8493557'), + (13152, 43, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'x4oeVOJm', '8493558'), + (13153, 43, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'x4oeVOJm', '8493559'), + (13154, 43, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'x4oeVOJm', '8493560'), + (13155, 43, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'x4oeVOJm', '8493561'), + (13156, 43, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'x4oeVOJm', '8493572'), + (13157, 43, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'x4oeVOJm', '8540725'), + (13158, 43, 3300, 'attending', '2025-11-07 12:15:00', '2025-12-17 19:46:14', 'x4oeVOJm', '8549145'), + (13159, 43, 3302, 'attending', '2025-11-14 03:41:59', '2025-12-17 19:46:14', 'x4oeVOJm', '8550022'), + (13160, 43, 3304, 'attending', '2025-11-16 16:37:21', '2025-12-17 19:46:14', 'x4oeVOJm', '8550024'), + (13161, 43, 3307, 'attending', '2025-12-15 14:52:06', '2025-12-17 19:46:11', 'x4oeVOJm', '8550027'), + (13162, 43, 3308, 'attending', '2025-11-11 23:33:25', '2025-12-17 19:46:14', 'x4oeVOJm', '8550408'), + (13163, 43, 3309, 'attending', '2025-11-16 16:36:56', '2025-12-17 19:46:14', 'x4oeVOJm', '8550409'), + (13164, 43, 3310, 'attending', '2025-11-30 21:20:24', '2025-12-17 19:46:11', 'x4oeVOJm', '8550410'), + (13165, 43, 3311, 'attending', '2025-12-09 03:06:55', '2025-12-17 19:46:11', 'x4oeVOJm', '8550412'), + (13166, 43, 3318, 'not_attending', '2025-11-07 02:02:31', '2025-12-17 19:46:14', 'x4oeVOJm', '8553025'), + (13167, 43, 3320, 'attending', '2025-11-16 16:37:10', '2025-12-17 19:46:14', 'x4oeVOJm', '8555219'), + (13168, 43, 3340, 'attending', '2025-12-09 03:00:08', '2025-12-17 19:46:11', 'x4oeVOJm', '8563371'), + (13169, 43, 3346, 'attending', '2026-01-02 13:23:34', '2026-01-02 13:23:34', NULL, NULL), + (13170, 44, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd5Y0BbOd', '7904777'), + (13171, 44, 3107, 'attending', '2025-05-02 05:06:59', '2025-12-17 19:46:20', 'd5Y0BbOd', '8350107'), + (13172, 44, 3109, 'attending', '2025-05-06 09:37:55', '2025-12-17 19:46:21', 'd5Y0BbOd', '8352001'), + (13173, 44, 3114, 'not_attending', '2025-05-02 21:35:08', '2025-12-17 19:46:20', 'd5Y0BbOd', '8357180'), + (13174, 44, 3120, 'maybe', '2025-05-06 09:38:08', '2025-12-17 19:46:21', 'd5Y0BbOd', '8360736'), + (13175, 44, 3121, 'maybe', '2025-05-11 06:41:27', '2025-12-17 19:46:21', 'd5Y0BbOd', '8362730'), + (13176, 44, 3122, 'not_attending', '2025-05-11 06:41:32', '2025-12-17 19:46:21', 'd5Y0BbOd', '8362978'), + (13177, 44, 3129, 'attending', '2025-05-13 05:51:40', '2025-12-17 19:46:21', 'd5Y0BbOd', '8366441'), + (13178, 44, 3131, 'not_attending', '2025-05-13 05:51:29', '2025-12-17 19:46:21', 'd5Y0BbOd', '8368028'), + (13179, 44, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd5Y0BbOd', '8368029'), + (13180, 44, 3133, 'not_attending', '2025-05-26 02:55:14', '2025-12-17 19:46:14', 'd5Y0BbOd', '8368030'), + (13181, 44, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd5Y0BbOd', '8388462'), + (13182, 44, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd5Y0BbOd', '8400273'), + (13183, 44, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd5Y0BbOd', '8400274'), + (13184, 44, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd5Y0BbOd', '8400275'), + (13185, 44, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd5Y0BbOd', '8400276'), + (13186, 44, 3166, 'attending', '2025-06-10 15:33:31', '2025-12-17 19:46:15', 'd5Y0BbOd', '8404242'), + (13187, 44, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd5Y0BbOd', '8404977'), + (13188, 44, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd5Y0BbOd', '8430783'), + (13189, 44, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd5Y0BbOd', '8430784'), + (13190, 44, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd5Y0BbOd', '8430799'), + (13191, 44, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd5Y0BbOd', '8430800'), + (13192, 44, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd5Y0BbOd', '8430801'), + (13193, 44, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd5Y0BbOd', '8438709'), + (13194, 44, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd5Y0BbOd', '8457738'), + (13195, 44, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd5Y0BbOd', '8459566'), + (13196, 44, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd5Y0BbOd', '8459567'), + (13197, 44, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd5Y0BbOd', '8461032'), + (13198, 44, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd5Y0BbOd', '8477877'), + (13199, 44, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd5Y0BbOd', '8485688'), + (13200, 44, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd5Y0BbOd', '8490587'), + (13201, 44, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd5Y0BbOd', '8493552'), + (13202, 44, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd5Y0BbOd', '8493553'), + (13203, 44, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd5Y0BbOd', '8493554'), + (13204, 44, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd5Y0BbOd', '8493555'), + (13205, 44, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd5Y0BbOd', '8493556'), + (13206, 44, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd5Y0BbOd', '8493557'), + (13207, 44, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd5Y0BbOd', '8493558'), + (13208, 44, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd5Y0BbOd', '8493559'), + (13209, 44, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd5Y0BbOd', '8493560'), + (13210, 44, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd5Y0BbOd', '8493561'), + (13211, 44, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd5Y0BbOd', '8493572'), + (13212, 44, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd5Y0BbOd', '8540725'), + (13213, 44, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd5Y0BbOd', '8555421'), + (13214, 45, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd9oPaqqA', '6164417'), + (13215, 45, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd9oPaqqA', '6166388'), + (13216, 45, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd9oPaqqA', '6176439'), + (13217, 45, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'd9oPaqqA', '6182410'), + (13218, 45, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd9oPaqqA', '6185812'), + (13219, 45, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd9oPaqqA', '6187651'), + (13220, 45, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd9oPaqqA', '6187963'), + (13221, 45, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd9oPaqqA', '6187964'), + (13222, 45, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd9oPaqqA', '6187966'), + (13223, 45, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd9oPaqqA', '6187967'), + (13224, 45, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd9oPaqqA', '6187969'), + (13225, 45, 2142, 'maybe', '2023-07-16 14:42:13', '2025-12-17 19:46:52', 'd9oPaqqA', '6333850'), + (13226, 45, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd9oPaqqA', '6334878'), + (13227, 45, 2149, 'maybe', '2023-07-16 14:42:31', '2025-12-17 19:46:53', 'd9oPaqqA', '6335682'), + (13228, 45, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd9oPaqqA', '6337236'), + (13229, 45, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd9oPaqqA', '6337970'), + (13230, 45, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd9oPaqqA', '6338308'), + (13231, 45, 2159, 'attending', '2023-07-21 17:27:55', '2025-12-17 19:46:53', 'd9oPaqqA', '6338355'), + (13232, 45, 2160, 'attending', '2023-07-29 17:34:10', '2025-12-17 19:46:54', 'd9oPaqqA', '6338358'), + (13233, 45, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'd9oPaqqA', '6340845'), + (13234, 45, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd9oPaqqA', '6341710'), + (13235, 45, 2165, 'attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd9oPaqqA', '6342044'), + (13236, 45, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd9oPaqqA', '6342298'), + (13237, 45, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd9oPaqqA', '6343294'), + (13238, 45, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd9oPaqqA', '6347034'), + (13239, 45, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd9oPaqqA', '6347056'), + (13240, 45, 2183, 'maybe', '2023-07-29 17:34:06', '2025-12-17 19:46:54', 'd9oPaqqA', '6353008'), + (13241, 45, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd9oPaqqA', '6353830'), + (13242, 45, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd9oPaqqA', '6353831'), + (13243, 45, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd9oPaqqA', '6357867'), + (13244, 45, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd9oPaqqA', '6358652'), + (13245, 45, 2204, 'attending', '2023-08-16 17:22:00', '2025-12-17 19:46:55', 'd9oPaqqA', '6361542'), + (13246, 45, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd9oPaqqA', '6361709'), + (13247, 45, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd9oPaqqA', '6361710'), + (13248, 45, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd9oPaqqA', '6361711'), + (13249, 45, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd9oPaqqA', '6361712'), + (13250, 45, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd9oPaqqA', '6361713'), + (13251, 45, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd9oPaqqA', '6382573'), + (13252, 45, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd9oPaqqA', '6388604'), + (13253, 45, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd9oPaqqA', '6394629'), + (13254, 45, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd9oPaqqA', '6394631'), + (13255, 45, 2252, 'maybe', '2023-09-25 16:36:39', '2025-12-17 19:46:45', 'd9oPaqqA', '6396837'), + (13256, 45, 2253, 'attending', '2023-09-30 22:41:19', '2025-12-17 19:46:45', 'd9oPaqqA', '6401811'), + (13257, 45, 2263, 'maybe', '2023-09-30 18:25:59', '2025-12-17 19:46:45', 'd9oPaqqA', '6429351'), + (13258, 45, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd9oPaqqA', '6440863'), + (13259, 45, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd9oPaqqA', '6445440'), + (13260, 45, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd9oPaqqA', '6453951'), + (13261, 45, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd9oPaqqA', '6461696'), + (13262, 45, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd9oPaqqA', '6462129'), + (13263, 45, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd9oPaqqA', '6463218'), + (13264, 45, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd9oPaqqA', '6472181'), + (13265, 45, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd9oPaqqA', '6482693'), + (13266, 45, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd9oPaqqA', '6484200'), + (13267, 45, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'd9oPaqqA', '6484680'), + (13268, 45, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd9oPaqqA', '6507741'), + (13269, 45, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd9oPaqqA', '6514659'), + (13270, 45, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd9oPaqqA', '6514660'), + (13271, 45, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd9oPaqqA', '6519103'), + (13272, 45, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd9oPaqqA', '6535681'), + (13273, 45, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd9oPaqqA', '6584747'), + (13274, 45, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd9oPaqqA', '6587097'), + (13275, 45, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd9oPaqqA', '6609022'), + (13276, 45, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd9oPaqqA', '6632757'), + (13277, 45, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd9oPaqqA', '6644187'), + (13278, 45, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd9oPaqqA', '6648951'), + (13279, 45, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd9oPaqqA', '6648952'), + (13280, 45, 2388, 'attending', '2024-01-03 04:59:26', '2025-12-17 19:46:37', 'd9oPaqqA', '6649244'), + (13281, 45, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd9oPaqqA', '6655401'), + (13282, 45, 2399, 'attending', '2024-01-14 00:33:07', '2025-12-17 19:46:38', 'd9oPaqqA', '6657583'), + (13283, 45, 2400, 'attending', '2024-01-08 15:02:46', '2025-12-17 19:46:37', 'd9oPaqqA', '6659378'), + (13284, 45, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd9oPaqqA', '6661585'), + (13285, 45, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd9oPaqqA', '6661588'), + (13286, 45, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd9oPaqqA', '6661589'), + (13287, 45, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd9oPaqqA', '6699906'), + (13288, 45, 2410, 'attending', '2024-02-10 21:31:57', '2025-12-17 19:46:41', 'd9oPaqqA', '6699911'), + (13289, 45, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'd9oPaqqA', '6699913'), + (13290, 45, 2416, 'maybe', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd9oPaqqA', '6701109'), + (13291, 45, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd9oPaqqA', '6705219'), + (13292, 45, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd9oPaqqA', '6710153'), + (13293, 45, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd9oPaqqA', '6711552'), + (13294, 45, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'd9oPaqqA', '6711553'), + (13295, 45, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd9oPaqqA', '6722688'), + (13296, 45, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd9oPaqqA', '6730620'), + (13297, 45, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd9oPaqqA', '6730642'), + (13298, 45, 2448, 'maybe', '2024-03-29 12:48:19', '2025-12-17 19:46:33', 'd9oPaqqA', '6734371'), + (13299, 45, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd9oPaqqA', '6740364'), + (13300, 45, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd9oPaqqA', '6743829'), + (13301, 45, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd9oPaqqA', '7030380'), + (13302, 45, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd9oPaqqA', '7033677'), + (13303, 45, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd9oPaqqA', '7035415'), + (13304, 45, 2475, 'attending', '2024-02-29 00:49:09', '2025-12-17 19:46:43', 'd9oPaqqA', '7035643'), + (13305, 45, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd9oPaqqA', '7044715'), + (13306, 45, 2487, 'maybe', '2024-03-22 21:47:26', '2025-12-17 19:46:33', 'd9oPaqqA', '7049279'), + (13307, 45, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd9oPaqqA', '7050318'), + (13308, 45, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd9oPaqqA', '7050319'), + (13309, 45, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd9oPaqqA', '7050322'), + (13310, 45, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd9oPaqqA', '7057804'), + (13311, 45, 2500, 'maybe', '2024-03-06 23:21:27', '2025-12-17 19:46:43', 'd9oPaqqA', '7058603'), + (13312, 45, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd9oPaqqA', '7072824'), + (13313, 45, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd9oPaqqA', '7074348'), + (13314, 45, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd9oPaqqA', '7074364'), + (13315, 45, 2534, 'maybe', '2024-03-13 22:07:13', '2025-12-17 19:46:32', 'd9oPaqqA', '7076875'), + (13316, 45, 2539, 'attending', '2024-04-06 22:52:57', '2025-12-17 19:46:33', 'd9oPaqqA', '7085486'), + (13317, 45, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd9oPaqqA', '7089267'), + (13318, 45, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd9oPaqqA', '7098747'), + (13319, 45, 2553, 'attending', '2024-03-29 12:48:12', '2025-12-17 19:46:33', 'd9oPaqqA', '7113468'), + (13320, 45, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd9oPaqqA', '7114856'), + (13321, 45, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd9oPaqqA', '7114951'), + (13322, 45, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd9oPaqqA', '7114955'), + (13323, 45, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd9oPaqqA', '7114956'), + (13324, 45, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd9oPaqqA', '7114957'), + (13325, 45, 2562, 'attending', '2024-04-02 18:54:32', '2025-12-17 19:46:33', 'd9oPaqqA', '7134552'), + (13326, 45, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd9oPaqqA', '7153615'), + (13327, 45, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd9oPaqqA', '7159484'), + (13328, 45, 2573, 'maybe', '2024-04-16 21:28:10', '2025-12-17 19:46:34', 'd9oPaqqA', '7160612'), + (13329, 45, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd9oPaqqA', '7178446'), + (13330, 45, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd9oPaqqA', '7220467'), + (13331, 45, 2607, 'attending', '2024-04-29 20:43:11', '2025-12-17 19:46:35', 'd9oPaqqA', '7240136'), + (13332, 45, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd9oPaqqA', '7240354'), + (13333, 45, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd9oPaqqA', '7251633'), + (13334, 45, 2626, 'attending', '2024-05-18 10:51:26', '2025-12-17 19:46:35', 'd9oPaqqA', '7264723'), + (13335, 45, 2628, 'attending', '2024-05-31 20:31:28', '2025-12-17 19:46:36', 'd9oPaqqA', '7264725'), + (13336, 45, 2652, 'attending', '2024-05-31 23:08:48', '2025-12-17 19:46:36', 'd9oPaqqA', '7288339'), + (13337, 45, 2671, 'maybe', '2024-06-10 09:46:51', '2025-12-17 19:46:28', 'd9oPaqqA', '7318256'), + (13338, 45, 2678, 'attending', '2024-06-15 15:41:36', '2025-12-17 19:46:28', 'd9oPaqqA', '7319489'), + (13339, 45, 2679, 'attending', '2024-06-19 15:51:00', '2025-12-17 19:46:29', 'd9oPaqqA', '7319490'), + (13340, 45, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd9oPaqqA', '7324073'), + (13341, 45, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd9oPaqqA', '7324074'), + (13342, 45, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd9oPaqqA', '7324075'), + (13343, 45, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd9oPaqqA', '7324078'), + (13344, 45, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd9oPaqqA', '7324082'), + (13345, 45, 2706, 'attending', '2024-06-19 15:50:55', '2025-12-17 19:46:28', 'd9oPaqqA', '7324947'), + (13346, 45, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd9oPaqqA', '7331457'), + (13347, 45, 2726, 'attending', '2024-06-19 21:15:08', '2025-12-17 19:46:29', 'd9oPaqqA', '7332853'), + (13348, 45, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd9oPaqqA', '7363643'), + (13349, 45, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd9oPaqqA', '7368606'), + (13350, 45, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd9oPaqqA', '7397462'), + (13351, 45, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd9oPaqqA', '7424275'), + (13352, 45, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd9oPaqqA', '7424276'), + (13353, 45, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd9oPaqqA', '7432751'), + (13354, 45, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd9oPaqqA', '7432752'), + (13355, 45, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd9oPaqqA', '7432753'), + (13356, 45, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd9oPaqqA', '7432754'), + (13357, 45, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd9oPaqqA', '7432755'), + (13358, 45, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd9oPaqqA', '7432756'), + (13359, 45, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd9oPaqqA', '7432758'), + (13360, 45, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd9oPaqqA', '7432759'), + (13361, 45, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd9oPaqqA', '7433834'), + (13362, 45, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd9oPaqqA', '7470197'), + (13363, 45, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd9oPaqqA', '7685613'), + (13364, 45, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd9oPaqqA', '7688194'), + (13365, 45, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd9oPaqqA', '7688196'), + (13366, 45, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd9oPaqqA', '7688289'), + (13367, 45, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd9oPaqqA', '7692763'), + (13368, 45, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd9oPaqqA', '7697552'), + (13369, 45, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd9oPaqqA', '7699878'), + (13370, 45, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd9oPaqqA', '7704043'), + (13371, 45, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd9oPaqqA', '7712467'), + (13372, 45, 2925, 'attending', '2024-12-15 00:03:16', '2025-12-17 19:46:21', 'd9oPaqqA', '7713584'), + (13373, 45, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd9oPaqqA', '7713585'), + (13374, 45, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd9oPaqqA', '7713586'), + (13375, 45, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd9oPaqqA', '7738518'), + (13376, 45, 2962, 'not_attending', '2024-12-27 09:48:26', '2025-12-17 19:46:22', 'd9oPaqqA', '7750632'), + (13377, 45, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd9oPaqqA', '7750636'), + (13378, 45, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd9oPaqqA', '7796540'), + (13379, 45, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd9oPaqqA', '7796541'), + (13380, 45, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd9oPaqqA', '7796542'), + (13381, 45, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd9oPaqqA', '7825913'), + (13382, 45, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd9oPaqqA', '7826209'), + (13383, 45, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd9oPaqqA', '7834742'), + (13384, 45, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd9oPaqqA', '7842108'), + (13385, 45, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd9oPaqqA', '7842902'), + (13386, 45, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd9oPaqqA', '7842903'), + (13387, 45, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd9oPaqqA', '7842904'), + (13388, 45, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd9oPaqqA', '7842905'), + (13389, 45, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd9oPaqqA', '7855719'), + (13390, 45, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd9oPaqqA', '7860683'), + (13391, 45, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd9oPaqqA', '7860684'), + (13392, 45, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd9oPaqqA', '7866095'), + (13393, 45, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd9oPaqqA', '7869170'), + (13394, 45, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd9oPaqqA', '7869188'), + (13395, 45, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd9oPaqqA', '7869201'), + (13396, 45, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd9oPaqqA', '7877465'), + (13397, 45, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd9oPaqqA', '7888250'), + (13398, 45, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd9oPaqqA', '7904777'), + (13399, 45, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd9oPaqqA', '8349164'), + (13400, 45, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd9oPaqqA', '8349545'), + (13401, 45, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd9oPaqqA', '8353584'), + (13402, 45, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd9oPaqqA', '8368028'), + (13403, 45, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd9oPaqqA', '8368029'), + (13404, 45, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd9oPaqqA', '8388462'), + (13405, 45, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd9oPaqqA', '8400273'), + (13406, 45, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd9oPaqqA', '8400274'), + (13407, 45, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd9oPaqqA', '8400275'), + (13408, 45, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd9oPaqqA', '8400276'), + (13409, 45, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd9oPaqqA', '8404977'), + (13410, 45, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd9oPaqqA', '8430783'), + (13411, 45, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd9oPaqqA', '8430784'), + (13412, 45, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd9oPaqqA', '8430799'), + (13413, 45, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd9oPaqqA', '8430800'), + (13414, 45, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd9oPaqqA', '8430801'), + (13415, 45, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd9oPaqqA', '8438709'), + (13416, 45, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd9oPaqqA', '8457738'), + (13417, 45, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd9oPaqqA', '8459566'), + (13418, 45, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd9oPaqqA', '8459567'), + (13419, 45, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd9oPaqqA', '8461032'), + (13420, 45, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd9oPaqqA', '8477877'), + (13421, 45, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd9oPaqqA', '8485688'), + (13422, 45, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd9oPaqqA', '8490587'), + (13423, 45, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd9oPaqqA', '8493552'), + (13424, 45, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd9oPaqqA', '8493553'), + (13425, 45, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd9oPaqqA', '8493554'), + (13426, 45, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd9oPaqqA', '8493555'), + (13427, 45, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd9oPaqqA', '8493556'), + (13428, 45, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd9oPaqqA', '8493557'), + (13429, 45, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd9oPaqqA', '8493558'), + (13430, 45, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd9oPaqqA', '8493559'), + (13431, 45, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd9oPaqqA', '8493560'), + (13432, 45, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd9oPaqqA', '8493561'), + (13433, 45, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd9oPaqqA', '8493572'), + (13434, 45, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd9oPaqqA', '8540725'), + (13435, 45, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd9oPaqqA', '8555421'), + (13436, 46, 3088, 'not_attending', '2025-05-30 04:57:38', '2025-12-17 19:46:15', 'd3R13PZ4', '7904777'), + (13437, 46, 3104, 'not_attending', '2025-05-30 04:57:28', '2025-12-17 19:46:15', 'd3R13PZ4', '8349164'), + (13438, 46, 3105, 'not_attending', '2025-05-30 04:57:34', '2025-12-17 19:46:15', 'd3R13PZ4', '8349545'), + (13439, 46, 3132, 'attending', '2025-05-22 12:28:40', '2025-12-17 19:46:21', 'd3R13PZ4', '8368029'), + (13440, 46, 3133, 'attending', '2025-05-22 12:29:21', '2025-12-17 19:46:14', 'd3R13PZ4', '8368030'), + (13441, 46, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd3R13PZ4', '8388462'), + (13442, 46, 3146, 'not_attending', '2025-06-02 02:49:34', '2025-12-17 19:46:15', 'd3R13PZ4', '8393169'), + (13443, 46, 3147, 'not_attending', '2025-06-02 02:49:53', '2025-12-17 19:46:15', 'd3R13PZ4', '8393170'), + (13444, 46, 3148, 'not_attending', '2025-06-02 02:49:56', '2025-12-17 19:46:15', 'd3R13PZ4', '8393171'), + (13445, 46, 3149, 'not_attending', '2025-06-02 02:49:57', '2025-12-17 19:46:16', 'd3R13PZ4', '8393173'), + (13446, 46, 3150, 'not_attending', '2025-06-02 02:49:41', '2025-12-17 19:46:15', 'd3R13PZ4', '8393174'), + (13447, 46, 3152, 'not_attending', '2025-06-02 02:49:32', '2025-12-17 19:46:14', 'd3R13PZ4', '8393582'), + (13448, 46, 3153, 'maybe', '2025-06-03 20:40:29', '2025-12-17 19:46:15', 'd3R13PZ4', '8400273'), + (13449, 46, 3154, 'attending', '2025-06-04 05:48:46', '2025-12-17 19:46:15', 'd3R13PZ4', '8400274'), + (13450, 46, 3155, 'attending', '2025-06-04 05:48:53', '2025-12-17 19:46:16', 'd3R13PZ4', '8400275'), + (13451, 46, 3156, 'attending', '2025-06-04 05:48:57', '2025-12-17 19:46:16', 'd3R13PZ4', '8400276'), + (13452, 46, 3157, 'not_attending', '2025-06-04 05:48:31', '2025-12-17 19:46:15', 'd3R13PZ4', '8401407'), + (13453, 46, 3158, 'not_attending', '2025-06-04 05:48:34', '2025-12-17 19:46:15', 'd3R13PZ4', '8401408'), + (13454, 46, 3159, 'not_attending', '2025-06-04 05:48:36', '2025-12-17 19:46:15', 'd3R13PZ4', '8401410'), + (13455, 46, 3160, 'not_attending', '2025-06-04 05:48:39', '2025-12-17 19:46:15', 'd3R13PZ4', '8401411'), + (13456, 46, 3161, 'not_attending', '2025-06-04 05:48:26', '2025-12-17 19:46:15', 'd3R13PZ4', '8401412'), + (13457, 46, 3162, 'not_attending', '2025-06-05 02:00:45', '2025-12-17 19:46:15', 'd3R13PZ4', '8401599'), + (13458, 46, 3163, 'not_attending', '2025-06-05 22:56:31', '2025-12-17 19:46:15', 'd3R13PZ4', '8402899'), + (13459, 46, 3164, 'maybe', '2025-06-06 06:07:38', '2025-12-17 19:46:15', 'd3R13PZ4', '8403121'), + (13460, 46, 3166, 'not_attending', '2025-06-08 22:40:14', '2025-12-17 19:46:15', 'd3R13PZ4', '8404242'), + (13461, 46, 3167, 'not_attending', '2025-06-08 22:40:41', '2025-12-17 19:46:15', 'd3R13PZ4', '8404521'), + (13462, 46, 3168, 'not_attending', '2025-06-08 22:40:58', '2025-12-17 19:46:15', 'd3R13PZ4', '8404522'), + (13463, 46, 3169, 'maybe', '2025-06-08 22:40:23', '2025-12-17 19:46:15', 'd3R13PZ4', '8404977'), + (13464, 46, 3170, 'not_attending', '2025-06-10 19:08:38', '2025-12-17 19:46:15', 'd3R13PZ4', '8405947'), + (13465, 46, 3171, 'not_attending', '2025-06-13 20:52:43', '2025-12-17 19:46:15', 'd3R13PZ4', '8409765'), + (13466, 46, 3172, 'not_attending', '2025-06-14 22:19:11', '2025-12-17 19:46:15', 'd3R13PZ4', '8410181'), + (13467, 46, 3173, 'not_attending', '2025-06-14 22:18:46', '2025-12-17 19:46:15', 'd3R13PZ4', '8410806'), + (13468, 46, 3175, 'not_attending', '2025-06-14 22:19:16', '2025-12-17 19:46:15', 'd3R13PZ4', '8410815'), + (13469, 46, 3176, 'not_attending', '2025-06-20 11:33:43', '2025-12-17 19:46:15', 'd3R13PZ4', '8416741'), + (13470, 46, 3177, 'not_attending', '2025-06-20 20:03:18', '2025-12-17 19:46:15', 'd3R13PZ4', '8417592'), + (13471, 46, 3178, 'not_attending', '2025-06-24 03:32:56', '2025-12-17 19:46:15', 'd3R13PZ4', '8421848'), + (13472, 46, 3179, 'not_attending', '2025-06-24 03:33:02', '2025-12-17 19:46:15', 'd3R13PZ4', '8421850'), + (13473, 46, 3180, 'not_attending', '2025-06-25 01:02:38', '2025-12-17 19:46:15', 'd3R13PZ4', '8422682'), + (13474, 46, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd3R13PZ4', '8430783'), + (13475, 46, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd3R13PZ4', '8430784'), + (13476, 46, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd3R13PZ4', '8430799'), + (13477, 46, 3184, 'maybe', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd3R13PZ4', '8430800'), + (13478, 46, 3185, 'maybe', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd3R13PZ4', '8430801'), + (13479, 46, 3186, 'not_attending', '2025-07-01 00:33:35', '2025-12-17 19:46:16', 'd3R13PZ4', '8431527'), + (13480, 46, 3187, 'not_attending', '2025-07-03 20:04:47', '2025-12-17 19:46:16', 'd3R13PZ4', '8434478'), + (13481, 46, 3188, 'attending', '2025-07-06 21:03:50', '2025-12-17 19:46:17', 'd3R13PZ4', '8438709'), + (13482, 46, 3189, 'not_attending', '2025-07-06 21:03:46', '2025-12-17 19:46:16', 'd3R13PZ4', '8438849'), + (13483, 46, 3190, 'not_attending', '2025-07-12 20:01:21', '2025-12-17 19:46:17', 'd3R13PZ4', '8443962'), + (13484, 46, 3191, 'not_attending', '2025-07-14 19:56:19', '2025-12-17 19:46:17', 'd3R13PZ4', '8444983'), + (13485, 46, 3192, 'not_attending', '2025-07-15 20:02:14', '2025-12-17 19:46:17', 'd3R13PZ4', '8456429'), + (13486, 46, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd3R13PZ4', '8457738'), + (13487, 46, 3194, 'not_attending', '2025-07-17 23:09:33', '2025-12-17 19:46:17', 'd3R13PZ4', '8457740'), + (13488, 46, 3195, 'attending', '2025-07-17 23:28:07', '2025-12-17 19:46:17', 'd3R13PZ4', '8458118'), + (13489, 46, 3196, 'attending', '2025-07-18 00:22:16', '2025-12-17 19:46:17', 'd3R13PZ4', '8458543'), + (13490, 46, 3197, 'not_attending', '2025-07-18 02:41:38', '2025-12-17 19:46:17', 'd3R13PZ4', '8458825'), + (13491, 46, 3198, 'attending', '2025-07-18 07:49:06', '2025-12-17 19:46:18', 'd3R13PZ4', '8459268'), + (13492, 46, 3199, 'not_attending', '2025-07-19 11:24:33', '2025-12-17 19:46:17', 'd3R13PZ4', '8459565'), + (13493, 46, 3200, 'not_attending', '2025-07-19 11:24:40', '2025-12-17 19:46:17', 'd3R13PZ4', '8459566'), + (13494, 46, 3201, 'maybe', '2025-07-19 11:24:45', '2025-12-17 19:46:17', 'd3R13PZ4', '8459567'), + (13495, 46, 3202, 'not_attending', '2025-07-19 11:24:38', '2025-12-17 19:46:17', 'd3R13PZ4', '8459568'), + (13496, 46, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd3R13PZ4', '8461032'), + (13497, 46, 3204, 'not_attending', '2025-07-20 03:28:06', '2025-12-17 19:46:17', 'd3R13PZ4', '8461035'), + (13498, 46, 3205, 'attending', '2025-07-20 21:25:52', '2025-12-17 19:46:17', 'd3R13PZ4', '8461764'), + (13499, 46, 3206, 'maybe', '2025-07-23 03:29:57', '2025-12-17 19:46:17', 'd3R13PZ4', '8462943'), + (13500, 46, 3207, 'not_attending', '2025-07-25 22:12:19', '2025-12-17 19:46:17', 'd3R13PZ4', '8466820'), + (13501, 46, 3208, 'not_attending', '2025-07-27 04:47:38', '2025-12-17 19:46:17', 'd3R13PZ4', '8467717'), + (13502, 46, 3209, 'not_attending', '2025-07-27 20:10:36', '2025-12-17 19:46:17', 'd3R13PZ4', '8467750'), + (13503, 46, 3210, 'attending', '2025-07-30 03:16:21', '2025-12-17 19:46:18', 'd3R13PZ4', '8471162'), + (13504, 46, 3211, 'maybe', '2025-08-04 23:55:48', '2025-12-17 19:46:17', 'd3R13PZ4', '8477785'), + (13505, 46, 3212, 'not_attending', '2025-08-04 23:55:43', '2025-12-17 19:46:17', 'd3R13PZ4', '8477787'), + (13506, 46, 3213, 'maybe', '2025-08-05 09:30:23', '2025-12-17 19:46:17', 'd3R13PZ4', '8477876'), + (13507, 46, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd3R13PZ4', '8477877'), + (13508, 46, 3215, 'maybe', '2025-08-05 09:30:25', '2025-12-17 19:46:18', 'd3R13PZ4', '8477880'), + (13509, 46, 3216, 'not_attending', '2025-08-08 10:16:35', '2025-12-17 19:46:17', 'd3R13PZ4', '8481608'), + (13510, 46, 3217, 'not_attending', '2025-08-08 19:08:55', '2025-12-17 19:46:17', 'd3R13PZ4', '8481811'), + (13511, 46, 3218, 'not_attending', '2025-08-09 19:03:28', '2025-12-17 19:46:17', 'd3R13PZ4', '8481869'), + (13512, 46, 3219, 'not_attending', '2025-08-12 13:22:42', '2025-12-17 19:46:18', 'd3R13PZ4', '8482548'), + (13513, 46, 3220, 'not_attending', '2025-08-12 13:23:13', '2025-12-17 19:46:18', 'd3R13PZ4', '8485675'), + (13514, 46, 3221, 'not_attending', '2025-08-12 13:22:59', '2025-12-17 19:46:18', 'd3R13PZ4', '8485676'), + (13515, 46, 3222, 'not_attending', '2025-08-12 13:23:17', '2025-12-17 19:46:11', 'd3R13PZ4', '8485677'), + (13516, 46, 3223, 'not_attending', '2025-08-12 13:23:24', '2025-12-17 19:46:12', 'd3R13PZ4', '8485678'), + (13517, 46, 3224, 'not_attending', '2025-08-12 13:23:22', '2025-12-17 19:46:12', 'd3R13PZ4', '8485679'), + (13518, 46, 3225, 'not_attending', '2025-08-12 13:22:53', '2025-12-17 19:46:18', 'd3R13PZ4', '8485680'), + (13519, 46, 3226, 'not_attending', '2025-08-12 13:23:23', '2025-12-17 19:46:12', 'd3R13PZ4', '8485681'), + (13520, 46, 3227, 'not_attending', '2025-08-12 13:23:27', '2025-12-17 19:46:12', 'd3R13PZ4', '8485682'), + (13521, 46, 3228, 'not_attending', '2025-08-12 13:23:19', '2025-12-17 19:46:11', 'd3R13PZ4', '8485683'), + (13522, 46, 3229, 'not_attending', '2025-08-12 13:23:14', '2025-12-17 19:46:18', 'd3R13PZ4', '8485684'), + (13523, 46, 3230, 'not_attending', '2025-08-12 13:23:28', '2025-12-17 19:46:12', 'd3R13PZ4', '8485685'), + (13524, 46, 3231, 'not_attending', '2025-08-12 13:23:34', '2025-12-17 19:46:13', 'd3R13PZ4', '8485686'), + (13525, 46, 3232, 'not_attending', '2025-08-12 13:23:32', '2025-12-17 19:46:13', 'd3R13PZ4', '8485687'), + (13526, 46, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd3R13PZ4', '8485688'), + (13527, 46, 3235, 'not_attending', '2025-08-17 18:57:07', '2025-12-17 19:46:18', 'd3R13PZ4', '8490587'), + (13528, 46, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd3R13PZ4', '8493552'), + (13529, 46, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd3R13PZ4', '8493553'), + (13530, 46, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd3R13PZ4', '8493554'), + (13531, 46, 3239, 'maybe', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd3R13PZ4', '8493555'), + (13532, 46, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd3R13PZ4', '8493556'), + (13533, 46, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd3R13PZ4', '8493557'), + (13534, 46, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd3R13PZ4', '8493558'), + (13535, 46, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd3R13PZ4', '8493559'), + (13536, 46, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd3R13PZ4', '8493560'), + (13537, 46, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'd3R13PZ4', '8493561'), + (13538, 46, 3246, 'not_attending', '2025-08-19 21:41:29', '2025-12-17 19:46:13', 'd3R13PZ4', '8493562'), + (13539, 46, 3247, 'not_attending', '2025-08-19 21:41:18', '2025-12-17 19:46:14', 'd3R13PZ4', '8493563'), + (13540, 46, 3248, 'not_attending', '2025-08-19 21:41:26', '2025-12-17 19:46:13', 'd3R13PZ4', '8493564'), + (13541, 46, 3249, 'not_attending', '2025-08-19 21:41:23', '2025-12-17 19:46:13', 'd3R13PZ4', '8493565'), + (13542, 46, 3250, 'not_attending', '2025-08-19 21:41:14', '2025-12-17 19:46:14', 'd3R13PZ4', '8493566'), + (13543, 46, 3251, 'not_attending', '2025-08-19 21:41:20', '2025-12-17 19:46:14', 'd3R13PZ4', '8493568'), + (13544, 46, 3252, 'not_attending', '2025-08-19 21:41:16', '2025-12-17 19:46:14', 'd3R13PZ4', '8493569'), + (13545, 46, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd3R13PZ4', '8493572'), + (13546, 46, 3254, 'not_attending', '2025-08-19 21:40:57', '2025-12-17 19:46:14', 'd3R13PZ4', '8493575'), + (13547, 46, 3255, 'not_attending', '2025-08-22 19:40:31', '2025-12-17 19:46:18', 'd3R13PZ4', '8495106'), + (13548, 46, 3256, 'not_attending', '2025-08-28 22:58:11', '2025-12-17 19:46:11', 'd3R13PZ4', '8501354'), + (13549, 46, 3257, 'not_attending', '2025-08-28 22:58:07', '2025-12-17 19:46:11', 'd3R13PZ4', '8502340'), + (13550, 46, 3258, 'not_attending', '2025-09-02 11:50:09', '2025-12-17 19:46:11', 'd3R13PZ4', '8510285'), + (13551, 46, 3261, 'not_attending', '2025-09-13 11:45:58', '2025-12-17 19:46:12', 'd3R13PZ4', '8512641'), + (13552, 46, 3262, 'not_attending', '2025-09-13 11:46:04', '2025-12-17 19:46:12', 'd3R13PZ4', '8512642'), + (13553, 46, 3264, 'not_attending', '2025-09-13 11:46:02', '2025-12-17 19:46:12', 'd3R13PZ4', '8514577'), + (13554, 46, 3265, 'not_attending', '2025-09-13 11:46:11', '2025-12-17 19:46:12', 'd3R13PZ4', '8514578'), + (13555, 46, 3266, 'not_attending', '2025-09-13 11:46:17', '2025-12-17 19:46:13', 'd3R13PZ4', '8514579'), + (13556, 46, 3268, 'not_attending', '2025-09-13 11:46:06', '2025-12-17 19:46:12', 'd3R13PZ4', '8514581'), + (13557, 46, 3269, 'not_attending', '2025-09-13 11:46:13', '2025-12-17 19:46:12', 'd3R13PZ4', '8514582'), + (13558, 46, 3270, 'not_attending', '2025-09-13 11:46:19', '2025-12-17 19:46:13', 'd3R13PZ4', '8514583'), + (13559, 46, 3271, 'not_attending', '2025-09-16 21:19:27', '2025-12-17 19:46:12', 'd3R13PZ4', '8521430'), + (13560, 46, 3272, 'not_attending', '2025-09-17 22:52:53', '2025-12-17 19:46:12', 'd3R13PZ4', '8524068'), + (13561, 46, 3273, 'not_attending', '2025-09-19 04:13:13', '2025-12-17 19:46:12', 'd3R13PZ4', '8525831'), + (13562, 46, 3274, 'not_attending', '2025-09-20 21:40:43', '2025-12-17 19:46:12', 'd3R13PZ4', '8527784'), + (13563, 46, 3275, 'not_attending', '2025-09-20 22:22:32', '2025-12-17 19:46:12', 'd3R13PZ4', '8527786'), + (13564, 46, 3276, 'not_attending', '2025-09-22 21:00:21', '2025-12-17 19:46:12', 'd3R13PZ4', '8529058'), + (13565, 46, 3277, 'not_attending', '2025-09-27 21:32:06', '2025-12-17 19:46:12', 'd3R13PZ4', '8533938'), + (13566, 46, 3278, 'not_attending', '2025-09-30 18:39:55', '2025-12-17 19:46:13', 'd3R13PZ4', '8535533'), + (13567, 46, 3279, 'attending', '2025-10-01 08:35:29', '2025-12-17 19:46:13', 'd3R13PZ4', '8535685'), + (13568, 46, 3280, 'attending', '2025-10-01 08:35:30', '2025-12-17 19:46:13', 'd3R13PZ4', '8535686'), + (13569, 46, 3281, 'attending', '2025-10-01 08:35:32', '2025-12-17 19:46:14', 'd3R13PZ4', '8535687'), + (13570, 46, 3282, 'not_attending', '2025-10-04 20:39:33', '2025-12-17 19:46:13', 'd3R13PZ4', '8537571'), + (13571, 46, 3283, 'not_attending', '2025-10-05 13:40:01', '2025-12-17 19:46:14', 'd3R13PZ4', '8538077'), + (13572, 46, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd3R13PZ4', '8540725'), + (13573, 46, 3285, 'not_attending', '2025-10-08 21:07:05', '2025-12-17 19:46:13', 'd3R13PZ4', '8540726'), + (13574, 46, 3286, 'not_attending', '2025-10-08 21:07:00', '2025-12-17 19:46:14', 'd3R13PZ4', '8540728'), + (13575, 46, 3287, 'not_attending', '2025-10-08 21:07:16', '2025-12-17 19:46:14', 'd3R13PZ4', '8540729'), + (13576, 46, 3288, 'not_attending', '2025-10-11 05:46:24', '2025-12-17 19:46:13', 'd3R13PZ4', '8542408'), + (13577, 46, 3289, 'not_attending', '2025-10-12 03:41:31', '2025-12-17 19:46:14', 'd3R13PZ4', '8542939'), + (13578, 46, 3290, 'not_attending', '2025-10-12 04:39:17', '2025-12-17 19:46:13', 'd3R13PZ4', '8542943'), + (13579, 46, 3291, 'not_attending', '2025-10-14 23:18:10', '2025-12-17 19:46:14', 'd3R13PZ4', '8543782'), + (13580, 46, 3292, 'not_attending', '2025-10-16 00:46:43', '2025-12-17 19:46:14', 'd3R13PZ4', '8543835'), + (13581, 46, 3293, 'not_attending', '2025-10-15 07:45:59', '2025-12-17 19:46:14', 'd3R13PZ4', '8543836'), + (13582, 46, 3294, 'not_attending', '2025-10-18 20:17:27', '2025-12-17 19:46:14', 'd3R13PZ4', '8546775'), + (13583, 46, 3295, 'attending', '2025-10-19 05:41:12', '2025-12-17 19:46:14', 'd3R13PZ4', '8547541'), + (13584, 46, 3296, 'not_attending', '2025-10-20 21:07:25', '2025-12-17 19:46:14', 'd3R13PZ4', '8547711'), + (13585, 46, 3297, 'not_attending', '2025-10-21 03:10:23', '2025-12-17 19:46:14', 'd3R13PZ4', '8548090'), + (13586, 46, 3298, 'not_attending', '2025-10-21 22:41:27', '2025-12-17 19:46:14', 'd3R13PZ4', '8548211'), + (13587, 46, 3299, 'not_attending', '2025-10-25 04:07:28', '2025-12-17 19:46:14', 'd3R13PZ4', '8548493'), + (13588, 46, 3300, 'not_attending', '2025-10-26 04:04:29', '2025-12-17 19:46:14', 'd3R13PZ4', '8549145'), + (13589, 46, 3302, 'attending', '2025-10-28 00:45:44', '2025-12-17 19:46:14', 'd3R13PZ4', '8550022'), + (13590, 46, 3304, 'attending', '2025-10-28 00:46:21', '2025-12-17 19:46:14', 'd3R13PZ4', '8550024'), + (13591, 46, 3305, 'attending', '2025-10-28 00:55:49', '2025-12-17 19:46:11', 'd3R13PZ4', '8550025'), + (13592, 46, 3306, 'attending', '2025-10-28 00:56:01', '2025-12-17 19:46:11', 'd3R13PZ4', '8550026'), + (13593, 46, 3308, 'attending', '2025-10-28 04:25:31', '2025-12-17 19:46:14', 'd3R13PZ4', '8550408'), + (13594, 46, 3309, 'attending', '2025-10-28 04:28:11', '2025-12-17 19:46:14', 'd3R13PZ4', '8550409'), + (13595, 46, 3310, 'attending', '2025-10-28 04:31:06', '2025-12-17 19:46:11', 'd3R13PZ4', '8550410'), + (13596, 46, 3311, 'attending', '2025-10-28 04:31:05', '2025-12-17 19:46:11', 'd3R13PZ4', '8550412'), + (13597, 46, 3312, 'not_attending', '2025-10-28 04:31:03', '2025-12-17 19:46:11', 'd3R13PZ4', '8550413'), + (13598, 46, 3313, 'not_attending', '2025-10-30 02:23:10', '2025-12-17 19:46:14', 'd3R13PZ4', '8550896'), + (13599, 46, 3314, 'not_attending', '2025-11-01 00:13:32', '2025-12-17 19:46:14', 'd3R13PZ4', '8551821'), + (13600, 46, 3315, 'not_attending', '2025-11-05 13:03:21', '2025-12-17 19:46:14', 'd3R13PZ4', '8552486'), + (13601, 46, 3316, 'not_attending', '2025-11-05 13:03:25', '2025-12-17 19:46:14', 'd3R13PZ4', '8552493'), + (13602, 46, 3317, 'not_attending', '2025-11-06 00:50:51', '2025-12-17 19:46:14', 'd3R13PZ4', '8552943'), + (13603, 46, 3318, 'maybe', '2025-11-07 02:02:31', '2025-12-17 19:46:14', 'd3R13PZ4', '8553025'), + (13604, 46, 3319, 'not_attending', '2025-11-09 08:24:36', '2025-12-17 19:46:14', 'd3R13PZ4', '8553114'), + (13605, 46, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd3R13PZ4', '8555421'), + (13606, 46, 3333, 'not_attending', '2025-12-04 09:19:14', '2025-12-17 19:46:11', 'd3R13PZ4', '8562500'), + (13607, 46, 3340, 'attending', '2025-12-09 02:59:38', '2025-12-17 19:46:11', 'd3R13PZ4', '8563371'), + (13608, 46, 3346, 'attending', '2025-12-25 22:35:17', '2025-12-25 22:35:20', NULL, NULL), + (13609, 46, 3347, 'attending', '2025-12-25 22:37:37', '2025-12-25 22:37:37', NULL, NULL), + (13610, 46, 3348, 'attending', '2025-12-25 22:37:32', '2025-12-25 22:37:32', NULL, NULL), + (13611, 46, 3349, 'attending', '2025-12-25 22:38:21', '2025-12-25 22:38:21', NULL, NULL), + (13612, 46, 3350, 'attending', '2025-12-25 22:39:02', '2025-12-25 22:39:02', NULL, NULL), + (13613, 46, 3351, 'attending', '2025-12-25 22:39:57', '2025-12-25 22:39:57', NULL, NULL), + (13614, 46, 3352, 'maybe', '2025-12-25 22:42:58', '2025-12-25 22:42:58', NULL, NULL), + (13615, 46, 3353, 'maybe', '2025-12-25 22:43:02', '2025-12-25 22:43:02', NULL, NULL), + (13616, 46, 3354, 'attending', '2025-12-25 22:42:39', '2025-12-25 22:42:39', NULL, NULL), + (13617, 46, 3355, 'attending', '2025-12-25 22:44:38', '2025-12-25 22:44:38', NULL, NULL), + (13618, 46, 3356, 'attending', '2025-12-25 22:44:42', '2025-12-25 22:44:42', NULL, NULL), + (13619, 46, 3357, 'attending', '2025-12-25 22:46:03', '2025-12-25 22:46:03', NULL, NULL), + (13620, 46, 3358, 'attending', '2025-12-25 22:47:01', '2025-12-25 22:47:01', NULL, NULL), + (13621, 47, 3304, 'attending', '2025-11-19 22:13:14', '2025-12-17 19:46:14', 'd2rMEvod', '8550024'), + (13622, 47, 3305, 'attending', '2025-12-02 04:36:04', '2025-12-17 19:46:11', 'd2rMEvod', '8550025'), + (13623, 47, 3306, 'attending', '2025-12-09 04:06:14', '2025-12-17 19:46:11', 'd2rMEvod', '8550026'), + (13624, 47, 3307, 'attending', '2025-12-16 01:34:28', '2025-12-20 20:29:30', 'd2rMEvod', '8550027'), + (13625, 47, 3310, 'attending', '2025-11-20 05:37:39', '2025-12-17 19:46:11', 'd2rMEvod', '8550410'), + (13626, 47, 3311, 'attending', '2025-12-05 05:07:44', '2025-12-17 19:46:11', 'd2rMEvod', '8550412'), + (13627, 47, 3324, 'attending', '2025-11-19 17:14:38', '2025-12-17 19:46:14', 'd2rMEvod', '8556406'), + (13628, 47, 3325, 'maybe', '2025-11-20 05:40:54', '2025-12-17 19:46:14', 'd2rMEvod', '8556660'), + (13629, 47, 3326, 'maybe', '2025-11-20 21:45:58', '2025-12-17 19:46:14', 'd2rMEvod', '8556661'), + (13630, 47, 3327, 'attending', '2025-11-21 01:39:45', '2025-12-17 19:46:11', 'd2rMEvod', '8557174'), + (13631, 47, 3331, 'attending', '2025-12-02 04:36:22', '2025-12-17 19:46:11', 'd2rMEvod', '8562166'), + (13632, 47, 3333, 'attending', '2025-12-06 03:20:39', '2025-12-17 19:46:11', 'd2rMEvod', '8562500'), + (13633, 47, 3334, 'attending', '2025-12-05 05:05:39', '2025-12-17 19:46:11', 'd2rMEvod', '8563246'), + (13634, 47, 3335, 'attending', '2025-12-05 05:07:19', '2025-12-17 19:46:11', 'd2rMEvod', '8563247'), + (13635, 47, 3336, 'maybe', '2025-12-05 05:07:51', '2025-12-17 19:46:11', 'd2rMEvod', '8563248'), + (13636, 47, 3337, 'maybe', '2025-12-07 04:10:12', '2025-12-17 19:46:11', 'd2rMEvod', '8563315'), + (13637, 47, 3346, 'attending', '2025-12-30 04:23:00', '2025-12-30 04:23:00', NULL, NULL), + (13638, 48, 571, 'attending', '2021-02-12 18:28:52', '2025-12-17 19:47:50', 'oAgrkRqm', '3435539'), + (13639, 48, 573, 'maybe', '2021-02-18 07:55:47', '2025-12-17 19:47:50', 'oAgrkRqm', '3435542'), + (13640, 48, 574, 'maybe', '2021-03-02 03:55:38', '2025-12-17 19:47:51', 'oAgrkRqm', '3435543'), + (13641, 48, 582, 'not_attending', '2021-02-28 21:41:23', '2025-12-17 19:47:50', 'oAgrkRqm', '3445769'), + (13642, 48, 587, 'not_attending', '2021-02-15 16:53:51', '2025-12-17 19:47:50', 'oAgrkRqm', '3449470'), + (13643, 48, 592, 'maybe', '2021-02-18 07:55:18', '2025-12-17 19:47:50', 'oAgrkRqm', '3467757'), + (13644, 48, 594, 'maybe', '2021-02-15 17:09:47', '2025-12-17 19:47:51', 'oAgrkRqm', '3467759'), + (13645, 48, 595, 'maybe', '2021-03-06 06:57:18', '2025-12-17 19:47:51', 'oAgrkRqm', '3467761'), + (13646, 48, 596, 'maybe', '2021-03-06 06:57:11', '2025-12-17 19:47:51', 'oAgrkRqm', '3467762'), + (13647, 48, 597, 'not_attending', '2021-03-12 19:28:37', '2025-12-17 19:47:51', 'oAgrkRqm', '3467764'), + (13648, 48, 599, 'attending', '2021-02-15 16:53:25', '2025-12-17 19:47:50', 'oAgrkRqm', '3468117'), + (13649, 48, 600, 'maybe', '2021-02-18 07:53:10', '2025-12-17 19:47:50', 'oAgrkRqm', '3468125'), + (13650, 48, 601, 'not_attending', '2021-02-15 19:57:44', '2025-12-17 19:47:50', 'oAgrkRqm', '3468131'), + (13651, 48, 602, 'attending', '2021-02-12 18:28:57', '2025-12-17 19:47:50', 'oAgrkRqm', '3470303'), + (13652, 48, 603, 'attending', '2021-02-15 01:51:18', '2025-12-17 19:47:50', 'oAgrkRqm', '3470304'), + (13653, 48, 604, 'attending', '2021-02-21 10:17:40', '2025-12-17 19:47:50', 'oAgrkRqm', '3470305'), + (13654, 48, 605, 'attending', '2021-02-14 02:37:23', '2025-12-17 19:47:50', 'oAgrkRqm', '3470991'), + (13655, 48, 607, 'maybe', '2021-02-18 07:54:20', '2025-12-17 19:47:50', 'oAgrkRqm', '3471882'), + (13656, 48, 610, 'attending', '2021-02-12 18:28:07', '2025-12-17 19:47:50', 'oAgrkRqm', '3482159'), + (13657, 48, 611, 'attending', '2021-02-15 19:16:22', '2025-12-17 19:47:50', 'oAgrkRqm', '3482659'), + (13658, 48, 612, 'attending', '2021-02-15 01:49:43', '2025-12-17 19:47:50', 'oAgrkRqm', '3490040'), + (13659, 48, 613, 'attending', '2021-02-15 01:49:48', '2025-12-17 19:47:50', 'oAgrkRqm', '3490041'), + (13660, 48, 614, 'attending', '2021-02-15 01:50:10', '2025-12-17 19:47:51', 'oAgrkRqm', '3490042'), + (13661, 48, 615, 'attending', '2021-02-15 16:59:17', '2025-12-17 19:47:50', 'oAgrkRqm', '3490045'), + (13662, 48, 616, 'maybe', '2021-02-18 21:30:14', '2025-12-17 19:47:50', 'oAgrkRqm', '3493478'), + (13663, 48, 618, 'attending', '2021-02-20 09:01:47', '2025-12-17 19:47:50', 'oAgrkRqm', '3503991'), + (13664, 48, 620, 'maybe', '2021-02-22 23:59:25', '2025-12-17 19:47:50', 'oAgrkRqm', '3513703'), + (13665, 48, 621, 'attending', '2021-02-24 16:29:54', '2025-12-17 19:47:51', 'oAgrkRqm', '3517815'), + (13666, 48, 622, 'attending', '2021-02-24 16:29:59', '2025-12-17 19:47:51', 'oAgrkRqm', '3517816'), + (13667, 48, 623, 'attending', '2021-02-25 23:36:20', '2025-12-17 19:47:50', 'oAgrkRqm', '3523941'), + (13668, 48, 625, 'attending', '2021-02-28 21:06:40', '2025-12-17 19:47:51', 'oAgrkRqm', '3533296'), + (13669, 48, 626, 'attending', '2021-02-28 21:06:49', '2025-12-17 19:47:51', 'oAgrkRqm', '3533298'), + (13670, 48, 627, 'maybe', '2021-02-28 21:39:05', '2025-12-17 19:47:51', 'oAgrkRqm', '3533303'), + (13671, 48, 628, 'maybe', '2021-02-28 21:38:57', '2025-12-17 19:47:51', 'oAgrkRqm', '3533305'), + (13672, 48, 629, 'maybe', '2021-02-28 21:39:31', '2025-12-17 19:47:51', 'oAgrkRqm', '3533307'), + (13673, 48, 631, 'attending', '2021-03-01 05:19:00', '2025-12-17 19:47:51', 'oAgrkRqm', '3533850'), + (13674, 48, 633, 'maybe', '2021-03-14 08:00:00', '2025-12-17 19:47:44', 'oAgrkRqm', '3534717'), + (13675, 48, 637, 'maybe', '2021-03-02 15:30:19', '2025-12-17 19:47:51', 'oAgrkRqm', '3536411'), + (13676, 48, 638, 'attending', '2021-04-04 01:52:58', '2025-12-17 19:47:44', 'oAgrkRqm', '3536632'), + (13677, 48, 639, 'attending', '2021-03-20 02:51:35', '2025-12-17 19:47:51', 'oAgrkRqm', '3536656'), + (13678, 48, 640, 'attending', '2021-03-03 02:19:53', '2025-12-17 19:47:51', 'oAgrkRqm', '3538866'), + (13679, 48, 641, 'attending', '2021-04-03 15:41:04', '2025-12-17 19:47:44', 'oAgrkRqm', '3539916'), + (13680, 48, 642, 'attending', '2021-04-10 22:34:49', '2025-12-17 19:47:44', 'oAgrkRqm', '3539917'), + (13681, 48, 643, 'attending', '2021-04-17 15:36:10', '2025-12-17 19:47:45', 'oAgrkRqm', '3539918'), + (13682, 48, 644, 'attending', '2021-04-21 15:20:54', '2025-12-17 19:47:45', 'oAgrkRqm', '3539919'), + (13683, 48, 645, 'attending', '2021-05-02 13:40:44', '2025-12-17 19:47:46', 'oAgrkRqm', '3539920'), + (13684, 48, 646, 'attending', '2021-05-13 23:23:25', '2025-12-17 19:47:46', 'oAgrkRqm', '3539921'), + (13685, 48, 647, 'attending', '2021-05-21 09:41:25', '2025-12-17 19:47:46', 'oAgrkRqm', '3539922'), + (13686, 48, 648, 'attending', '2021-05-27 20:56:43', '2025-12-17 19:47:47', 'oAgrkRqm', '3539923'), + (13687, 48, 649, 'maybe', '2021-03-03 20:22:27', '2025-12-17 19:47:51', 'oAgrkRqm', '3539927'), + (13688, 48, 650, 'attending', '2021-03-27 08:34:35', '2025-12-17 19:47:44', 'oAgrkRqm', '3539928'), + (13689, 48, 651, 'attending', '2021-03-10 17:40:40', '2025-12-17 19:47:51', 'oAgrkRqm', '3541045'), + (13690, 48, 652, 'attending', '2021-03-07 19:53:18', '2025-12-17 19:47:51', 'oAgrkRqm', '3544466'), + (13691, 48, 679, 'maybe', '2021-03-10 13:24:11', '2025-12-17 19:47:44', 'oAgrkRqm', '3547168'), + (13692, 48, 681, 'attending', '2021-03-07 22:03:42', '2025-12-17 19:47:43', 'oAgrkRqm', '3548803'), + (13693, 48, 684, 'attending', '2021-03-12 19:39:13', '2025-12-17 19:47:51', 'oAgrkRqm', '3549257'), + (13694, 48, 685, 'not_attending', '2021-04-12 23:15:42', '2025-12-17 19:47:44', 'oAgrkRqm', '3551564'), + (13695, 48, 686, 'maybe', '2021-03-10 13:23:32', '2025-12-17 19:47:51', 'oAgrkRqm', '3553333'), + (13696, 48, 687, 'maybe', '2021-03-12 01:59:22', '2025-12-17 19:47:51', 'oAgrkRqm', '3553405'), + (13697, 48, 690, 'maybe', '2021-03-11 15:03:22', '2025-12-17 19:47:43', 'oAgrkRqm', '3559954'), + (13698, 48, 691, 'maybe', '2021-03-16 15:26:56', '2025-12-17 19:47:45', 'oAgrkRqm', '3561928'), + (13699, 48, 695, 'attending', '2021-03-18 19:54:23', '2025-12-17 19:47:51', 'oAgrkRqm', '3567535'), + (13700, 48, 696, 'maybe', '2021-03-14 08:00:00', '2025-12-17 19:47:51', 'oAgrkRqm', '3567536'), + (13701, 48, 697, 'maybe', '2021-03-14 08:00:00', '2025-12-17 19:47:44', 'oAgrkRqm', '3567537'), + (13702, 48, 698, 'attending', '2021-03-16 15:26:16', '2025-12-17 19:47:44', 'oAgrkRqm', '3571867'), + (13703, 48, 703, 'maybe', '2021-03-19 17:20:44', '2025-12-17 19:47:44', 'oAgrkRqm', '3578388'), + (13704, 48, 704, 'maybe', '2021-03-19 17:20:19', '2025-12-17 19:47:44', 'oAgrkRqm', '3581429'), + (13705, 48, 705, 'maybe', '2021-03-19 17:20:13', '2025-12-17 19:47:44', 'oAgrkRqm', '3581895'), + (13706, 48, 706, 'attending', '2021-04-18 17:45:29', '2025-12-17 19:47:45', 'oAgrkRqm', '3582734'), + (13707, 48, 707, 'attending', '2021-04-23 18:13:02', '2025-12-17 19:47:46', 'oAgrkRqm', '3583262'), + (13708, 48, 708, 'maybe', '2021-03-25 23:29:35', '2025-12-17 19:47:44', 'oAgrkRqm', '3587850'), + (13709, 48, 711, 'maybe', '2021-03-29 21:45:58', '2025-12-17 19:47:44', 'oAgrkRqm', '3588075'), + (13710, 48, 715, 'maybe', '2021-03-25 16:30:16', '2025-12-17 19:47:44', 'oAgrkRqm', '3604146'), + (13711, 48, 717, 'maybe', '2021-03-25 16:29:47', '2025-12-17 19:47:44', 'oAgrkRqm', '3619523'), + (13712, 48, 724, 'attending', '2021-05-09 06:25:05', '2025-12-17 19:47:46', 'oAgrkRqm', '3661369'), + (13713, 48, 725, 'attending', '2021-05-09 23:51:18', '2025-12-17 19:47:47', 'oAgrkRqm', '3661372'), + (13714, 48, 727, 'attending', '2021-06-04 20:30:42', '2025-12-17 19:47:38', 'oAgrkRqm', '3661377'), + (13715, 48, 728, 'maybe', '2021-04-12 23:16:24', '2025-12-17 19:47:44', 'oAgrkRqm', '3668073'), + (13716, 48, 729, 'maybe', '2021-04-12 23:16:29', '2025-12-17 19:47:46', 'oAgrkRqm', '3668075'), + (13717, 48, 730, 'not_attending', '2021-05-05 22:23:58', '2025-12-17 19:47:46', 'oAgrkRqm', '3668076'), + (13718, 48, 731, 'not_attending', '2021-04-04 01:51:16', '2025-12-17 19:47:44', 'oAgrkRqm', '3674262'), + (13719, 48, 732, 'not_attending', '2021-04-21 15:20:38', '2025-12-17 19:47:45', 'oAgrkRqm', '3674268'), + (13720, 48, 735, 'not_attending', '2021-05-02 13:38:42', '2025-12-17 19:47:46', 'oAgrkRqm', '3677402'), + (13721, 48, 761, 'maybe', '2021-05-01 14:39:29', '2025-12-17 19:47:46', 'oAgrkRqm', '3716041'), + (13722, 48, 764, 'maybe', '2021-04-23 18:12:40', '2025-12-17 19:47:45', 'oAgrkRqm', '3720507'), + (13723, 48, 766, 'maybe', '2021-05-01 14:39:18', '2025-12-17 19:47:46', 'oAgrkRqm', '3721383'), + (13724, 48, 774, 'maybe', '2021-04-21 15:20:10', '2025-12-17 19:47:45', 'oAgrkRqm', '3730212'), + (13725, 48, 777, 'attending', '2021-05-01 15:00:56', '2025-12-17 19:47:46', 'oAgrkRqm', '3746248'), + (13726, 48, 779, 'attending', '2021-05-02 13:38:49', '2025-12-17 19:47:46', 'oAgrkRqm', '3757118'), + (13727, 48, 781, 'attending', '2021-05-06 23:35:43', '2025-12-17 19:47:46', 'oAgrkRqm', '3760130'), + (13728, 48, 790, 'attending', '2021-05-07 21:39:11', '2025-12-17 19:47:46', 'oAgrkRqm', '3789923'), + (13729, 48, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAgrkRqm', '3793156'), + (13730, 48, 794, 'maybe', '2021-05-26 22:37:32', '2025-12-17 19:47:47', 'oAgrkRqm', '3793538'), + (13731, 48, 795, 'maybe', '2021-06-04 20:30:04', '2025-12-17 19:47:47', 'oAgrkRqm', '3793539'), + (13732, 48, 796, 'maybe', '2021-05-08 02:43:45', '2025-12-17 19:47:46', 'oAgrkRqm', '3793862'), + (13733, 48, 805, 'attending', '2021-06-04 20:30:24', '2025-12-17 19:47:47', 'oAgrkRqm', '3804777'), + (13734, 48, 819, 'not_attending', '2021-05-30 21:57:08', '2025-12-17 19:47:47', 'oAgrkRqm', '3833017'), + (13735, 48, 823, 'attending', '2021-06-17 13:08:56', '2025-12-17 19:47:48', 'oAgrkRqm', '3974109'), + (13736, 48, 824, 'maybe', '2021-05-30 07:28:37', '2025-12-17 19:47:47', 'oAgrkRqm', '3974112'), + (13737, 48, 827, 'attending', '2021-06-04 20:27:03', '2025-12-17 19:47:47', 'oAgrkRqm', '3975311'), + (13738, 48, 828, 'not_attending', '2021-06-03 14:38:31', '2025-12-17 19:47:47', 'oAgrkRqm', '3975312'), + (13739, 48, 837, 'maybe', '2021-06-04 20:30:32', '2025-12-17 19:47:48', 'oAgrkRqm', '3992545'), + (13740, 48, 838, 'maybe', '2021-06-06 22:03:15', '2025-12-17 19:47:47', 'oAgrkRqm', '3994992'), + (13741, 48, 841, 'maybe', '2021-06-09 03:50:40', '2025-12-17 19:47:48', 'oAgrkRqm', '4007434'), + (13742, 48, 844, 'maybe', '2021-06-23 21:59:38', '2025-12-17 19:47:38', 'oAgrkRqm', '4014338'), + (13743, 48, 845, 'not_attending', '2021-06-30 18:33:16', '2025-12-17 19:47:38', 'oAgrkRqm', '4015717'), + (13744, 48, 859, 'maybe', '2021-06-10 18:43:12', '2025-12-17 19:47:48', 'oAgrkRqm', '4015993'), + (13745, 48, 867, 'attending', '2021-06-25 22:39:04', '2025-12-17 19:47:38', 'oAgrkRqm', '4021848'), + (13746, 48, 869, 'maybe', '2021-06-30 18:33:45', '2025-12-17 19:47:38', 'oAgrkRqm', '4136744'), + (13747, 48, 870, 'attending', '2021-06-28 13:54:18', '2025-12-17 19:47:38', 'oAgrkRqm', '4136937'), + (13748, 48, 871, 'attending', '2021-07-10 18:15:29', '2025-12-17 19:47:39', 'oAgrkRqm', '4136938'), + (13749, 48, 872, 'maybe', '2021-06-19 10:42:02', '2025-12-17 19:47:40', 'oAgrkRqm', '4136947'), + (13750, 48, 874, 'maybe', '2021-06-16 13:18:08', '2025-12-17 19:47:38', 'oAgrkRqm', '4139815'), + (13751, 48, 875, 'maybe', '2021-06-16 13:18:24', '2025-12-17 19:47:38', 'oAgrkRqm', '4139816'), + (13752, 48, 876, 'maybe', '2021-06-19 10:41:09', '2025-12-17 19:47:38', 'oAgrkRqm', '4139926'), + (13753, 48, 879, 'maybe', '2021-06-17 13:08:32', '2025-12-17 19:47:38', 'oAgrkRqm', '4147806'), + (13754, 48, 883, 'maybe', '2021-06-21 15:09:02', '2025-12-17 19:47:38', 'oAgrkRqm', '4209121'), + (13755, 48, 884, 'not_attending', '2021-08-11 11:15:35', '2025-12-17 19:47:42', 'oAgrkRqm', '4210314'), + (13756, 48, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAgrkRqm', '4225444'), + (13757, 48, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAgrkRqm', '4239259'), + (13758, 48, 900, 'attending', '2021-07-24 10:53:57', '2025-12-17 19:47:40', 'oAgrkRqm', '4240316'), + (13759, 48, 901, 'attending', '2021-07-31 20:28:14', '2025-12-17 19:47:40', 'oAgrkRqm', '4240317'), + (13760, 48, 902, 'attending', '2021-08-07 20:11:50', '2025-12-17 19:47:41', 'oAgrkRqm', '4240318'), + (13761, 48, 903, 'attending', '2021-08-13 23:20:46', '2025-12-17 19:47:42', 'oAgrkRqm', '4240320'), + (13762, 48, 905, 'maybe', '2021-07-05 13:14:09', '2025-12-17 19:47:39', 'oAgrkRqm', '4250163'), + (13763, 48, 908, 'maybe', '2021-07-12 07:07:34', '2025-12-17 19:47:39', 'oAgrkRqm', '4257613'), + (13764, 48, 916, 'attending', '2021-07-22 23:04:32', '2025-12-17 19:47:40', 'oAgrkRqm', '4273772'), + (13765, 48, 917, 'attending', '2021-07-14 12:22:23', '2025-12-17 19:47:39', 'oAgrkRqm', '4274481'), + (13766, 48, 919, 'maybe', '2021-07-17 20:17:24', '2025-12-17 19:47:39', 'oAgrkRqm', '4275957'), + (13767, 48, 920, 'attending', '2021-07-18 21:58:51', '2025-12-17 19:47:40', 'oAgrkRqm', '4277819'), + (13768, 48, 921, 'maybe', '2021-07-14 12:22:19', '2025-12-17 19:47:39', 'oAgrkRqm', '4278368'), + (13769, 48, 926, 'attending', '2021-08-18 22:18:17', '2025-12-17 19:47:42', 'oAgrkRqm', '4297211'), + (13770, 48, 930, 'maybe', '2021-07-22 21:19:43', '2025-12-17 19:47:41', 'oAgrkRqm', '4300787'), + (13771, 48, 931, 'maybe', '2021-07-26 00:05:52', '2025-12-17 19:47:40', 'oAgrkRqm', '4301535'), + (13772, 48, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAgrkRqm', '4301723'), + (13773, 48, 934, 'not_attending', '2021-08-03 18:01:30', '2025-12-17 19:47:41', 'oAgrkRqm', '4302093'), + (13774, 48, 935, 'not_attending', '2021-08-13 23:20:24', '2025-12-17 19:47:41', 'oAgrkRqm', '4304151'), + (13775, 48, 961, 'not_attending', '2021-08-11 11:15:14', '2025-12-17 19:47:42', 'oAgrkRqm', '4345519'), + (13776, 48, 965, 'maybe', '2021-08-17 19:46:43', '2025-12-17 19:47:42', 'oAgrkRqm', '4353703'), + (13777, 48, 971, 'not_attending', '2021-09-08 14:09:42', '2025-12-17 19:47:43', 'oAgrkRqm', '4356801'), + (13778, 48, 972, 'not_attending', '2021-08-20 19:58:04', '2025-12-17 19:47:42', 'oAgrkRqm', '4358025'), + (13779, 48, 973, 'maybe', '2021-08-20 19:58:34', '2025-12-17 19:47:42', 'oAgrkRqm', '4366186'), + (13780, 48, 974, 'not_attending', '2021-08-21 15:57:35', '2025-12-17 19:47:42', 'oAgrkRqm', '4366187'), + (13781, 48, 976, 'maybe', '2021-08-17 19:46:39', '2025-12-17 19:47:42', 'oAgrkRqm', '4373933'), + (13782, 48, 980, 'maybe', '2021-08-20 19:58:16', '2025-12-17 19:47:42', 'oAgrkRqm', '4380358'), + (13783, 48, 987, 'maybe', '2021-08-29 17:31:34', '2025-12-17 19:47:43', 'oAgrkRqm', '4402634'), + (13784, 48, 988, 'not_attending', '2021-08-24 13:55:13', '2025-12-17 19:47:42', 'oAgrkRqm', '4402823'), + (13785, 48, 990, 'attending', '2021-09-03 03:05:22', '2025-12-17 19:47:43', 'oAgrkRqm', '4420735'), + (13786, 48, 991, 'not_attending', '2021-09-08 13:22:04', '2025-12-17 19:47:43', 'oAgrkRqm', '4420738'), + (13787, 48, 992, 'attending', '2021-09-18 19:04:41', '2025-12-17 19:47:33', 'oAgrkRqm', '4420739'), + (13788, 48, 993, 'attending', '2021-09-23 00:00:26', '2025-12-17 19:47:34', 'oAgrkRqm', '4420741'), + (13789, 48, 994, 'not_attending', '2021-10-02 03:54:34', '2025-12-17 19:47:34', 'oAgrkRqm', '4420742'), + (13790, 48, 995, 'not_attending', '2021-10-07 04:08:14', '2025-12-17 19:47:34', 'oAgrkRqm', '4420744'), + (13791, 48, 996, 'attending', '2021-10-16 14:42:06', '2025-12-17 19:47:35', 'oAgrkRqm', '4420747'), + (13792, 48, 997, 'not_attending', '2021-10-23 07:01:07', '2025-12-17 19:47:35', 'oAgrkRqm', '4420748'), + (13793, 48, 998, 'maybe', '2021-08-29 17:31:11', '2025-12-17 19:47:36', 'oAgrkRqm', '4420749'), + (13794, 48, 1016, 'attending', '2021-09-03 17:14:14', '2025-12-17 19:47:43', 'oAgrkRqm', '4441271'), + (13795, 48, 1017, 'not_attending', '2021-09-06 23:16:09', '2025-12-17 19:47:43', 'oAgrkRqm', '4441822'), + (13796, 48, 1020, 'not_attending', '2021-09-13 22:45:20', '2025-12-17 19:47:43', 'oAgrkRqm', '4451787'), + (13797, 48, 1021, 'not_attending', '2021-09-19 23:56:29', '2025-12-17 19:47:34', 'oAgrkRqm', '4451803'), + (13798, 48, 1023, 'not_attending', '2021-09-10 01:00:45', '2025-12-17 19:47:43', 'oAgrkRqm', '4461883'), + (13799, 48, 1032, 'maybe', '2021-09-19 23:56:00', '2025-12-17 19:47:34', 'oAgrkRqm', '4473825'), + (13800, 48, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAgrkRqm', '4508342'), + (13801, 48, 1072, 'maybe', '2021-10-02 18:24:33', '2025-12-17 19:47:34', 'oAgrkRqm', '4516287'), + (13802, 48, 1074, 'maybe', '2021-09-29 20:01:20', '2025-12-17 19:47:34', 'oAgrkRqm', '4528953'), + (13803, 48, 1077, 'maybe', '2021-10-12 00:15:37', '2025-12-17 19:47:34', 'oAgrkRqm', '4540903'), + (13804, 48, 1079, 'maybe', '2021-10-20 17:37:04', '2025-12-17 19:47:35', 'oAgrkRqm', '4563823'), + (13805, 48, 1083, 'maybe', '2021-10-12 00:15:19', '2025-12-17 19:47:34', 'oAgrkRqm', '4566768'), + (13806, 48, 1084, 'not_attending', '2021-10-16 14:04:35', '2025-12-17 19:47:35', 'oAgrkRqm', '4566769'), + (13807, 48, 1085, 'not_attending', '2021-12-23 16:38:18', '2025-12-17 19:47:31', 'oAgrkRqm', '4568542'), + (13808, 48, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAgrkRqm', '4568602'), + (13809, 48, 1087, 'not_attending', '2021-10-16 14:04:39', '2025-12-17 19:47:35', 'oAgrkRqm', '4572153'), + (13810, 48, 1092, 'not_attending', '2021-10-21 18:35:07', '2025-12-17 19:47:35', 'oAgrkRqm', '4582837'), + (13811, 48, 1093, 'not_attending', '2021-10-20 23:15:10', '2025-12-17 19:47:35', 'oAgrkRqm', '4585962'), + (13812, 48, 1094, 'attending', '2021-10-31 17:06:57', '2025-12-17 19:47:36', 'oAgrkRqm', '4587337'), + (13813, 48, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'oAgrkRqm', '4596356'), + (13814, 48, 1097, 'maybe', '2021-10-28 14:34:12', '2025-12-17 19:47:36', 'oAgrkRqm', '4598860'), + (13815, 48, 1098, 'attending', '2021-11-10 21:12:39', '2025-12-17 19:47:36', 'oAgrkRqm', '4598861'), + (13816, 48, 1099, 'maybe', '2021-10-31 17:06:31', '2025-12-17 19:47:36', 'oAgrkRqm', '4602797'), + (13817, 48, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'oAgrkRqm', '4637896'), + (13818, 48, 1116, 'maybe', '2021-11-14 07:58:36', '2025-12-17 19:47:37', 'oAgrkRqm', '4642994'), + (13819, 48, 1117, 'attending', '2021-12-08 20:56:53', '2025-12-17 19:47:37', 'oAgrkRqm', '4642995'), + (13820, 48, 1118, 'maybe', '2021-11-14 07:58:33', '2025-12-17 19:47:38', 'oAgrkRqm', '4642996'), + (13821, 48, 1119, 'maybe', '2021-11-14 07:58:31', '2025-12-17 19:47:31', 'oAgrkRqm', '4642997'), + (13822, 48, 1126, 'maybe', '2021-11-14 23:42:42', '2025-12-17 19:47:38', 'oAgrkRqm', '4645687'), + (13823, 48, 1127, 'maybe', '2021-11-14 23:42:40', '2025-12-17 19:47:38', 'oAgrkRqm', '4645698'), + (13824, 48, 1128, 'attending', '2021-11-19 20:33:41', '2025-12-17 19:47:37', 'oAgrkRqm', '4645704'), + (13825, 48, 1129, 'attending', '2021-11-27 13:22:15', '2025-12-17 19:47:37', 'oAgrkRqm', '4645705'), + (13826, 48, 1130, 'attending', '2021-12-04 08:47:19', '2025-12-17 19:47:37', 'oAgrkRqm', '4658824'), + (13827, 48, 1131, 'attending', '2021-12-13 01:04:32', '2025-12-17 19:47:31', 'oAgrkRqm', '4658825'), + (13828, 48, 1133, 'not_attending', '2021-11-24 00:45:34', '2025-12-17 19:47:37', 'oAgrkRqm', '4661671'), + (13829, 48, 1134, 'not_attending', '2021-11-24 17:39:50', '2025-12-17 19:47:37', 'oAgrkRqm', '4668385'), + (13830, 48, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAgrkRqm', '4694407'), + (13831, 48, 1152, 'attending', '2022-01-12 22:03:32', '2025-12-17 19:47:31', 'oAgrkRqm', '4708705'), + (13832, 48, 1155, 'maybe', '2021-12-20 22:42:05', '2025-12-17 19:47:31', 'oAgrkRqm', '4715119'), + (13833, 48, 1159, 'maybe', '2022-01-04 04:07:58', '2025-12-17 19:47:31', 'oAgrkRqm', '4717532'), + (13834, 48, 1170, 'maybe', '2022-01-10 00:18:23', '2025-12-17 19:47:31', 'oAgrkRqm', '4731045'), + (13835, 48, 1172, 'not_attending', '2022-01-19 00:45:32', '2025-12-17 19:47:32', 'oAgrkRqm', '4735348'), + (13836, 48, 1173, 'attending', '2022-01-08 22:31:42', '2025-12-17 19:47:31', 'oAgrkRqm', '4736495'), + (13837, 48, 1174, 'attending', '2022-01-12 18:17:26', '2025-12-17 19:47:31', 'oAgrkRqm', '4736496'), + (13838, 48, 1175, 'attending', '2022-01-22 18:52:59', '2025-12-17 19:47:32', 'oAgrkRqm', '4736497'), + (13839, 48, 1176, 'attending', '2022-02-05 19:10:50', '2025-12-17 19:47:32', 'oAgrkRqm', '4736498'), + (13840, 48, 1177, 'attending', '2022-02-09 01:42:47', '2025-12-17 19:47:32', 'oAgrkRqm', '4736499'), + (13841, 48, 1178, 'attending', '2022-01-27 19:36:39', '2025-12-17 19:47:32', 'oAgrkRqm', '4736500'), + (13842, 48, 1179, 'attending', '2022-02-19 08:21:06', '2025-12-17 19:47:32', 'oAgrkRqm', '4736501'), + (13843, 48, 1181, 'attending', '2022-03-02 15:31:47', '2025-12-17 19:47:33', 'oAgrkRqm', '4736503'), + (13844, 48, 1182, 'attending', '2022-03-11 16:39:08', '2025-12-17 19:47:33', 'oAgrkRqm', '4736504'), + (13845, 48, 1185, 'not_attending', '2022-01-12 22:53:50', '2025-12-17 19:47:31', 'oAgrkRqm', '4746789'), + (13846, 48, 1188, 'not_attending', '2022-01-12 22:53:27', '2025-12-17 19:47:32', 'oAgrkRqm', '4753929'), + (13847, 48, 1202, 'not_attending', '2022-01-27 23:54:06', '2025-12-17 19:47:32', 'oAgrkRqm', '4769423'), + (13848, 48, 1206, 'attending', '2022-04-08 21:57:36', '2025-12-17 19:47:27', 'oAgrkRqm', '4773578'), + (13849, 48, 1207, 'attending', '2022-05-08 21:49:59', '2025-12-17 19:47:28', 'oAgrkRqm', '4773579'), + (13850, 48, 1216, 'not_attending', '2022-01-27 19:37:39', '2025-12-17 19:47:32', 'oAgrkRqm', '4781137'), + (13851, 48, 1217, 'attending', '2022-01-27 19:36:52', '2025-12-17 19:47:32', 'oAgrkRqm', '4781139'), + (13852, 48, 1229, 'attending', '2022-02-18 04:58:44', '2025-12-17 19:47:32', 'oAgrkRqm', '5034963'), + (13853, 48, 1232, 'not_attending', '2022-02-09 01:42:19', '2025-12-17 19:47:32', 'oAgrkRqm', '5038850'), + (13854, 48, 1236, 'maybe', '2022-02-16 23:54:01', '2025-12-17 19:47:32', 'oAgrkRqm', '5045826'), + (13855, 48, 1239, 'maybe', '2022-03-02 15:31:31', '2025-12-17 19:47:33', 'oAgrkRqm', '5052238'), + (13856, 48, 1252, 'not_attending', '2022-03-04 23:27:11', '2025-12-17 19:47:33', 'oAgrkRqm', '5129121'), + (13857, 48, 1253, 'attending', '2022-02-28 20:05:36', '2025-12-17 19:47:33', 'oAgrkRqm', '5129122'), + (13858, 48, 1259, 'not_attending', '2022-03-01 18:17:28', '2025-12-17 19:47:33', 'oAgrkRqm', '5132533'), + (13859, 48, 1261, 'not_attending', '2022-03-07 23:45:27', '2025-12-17 19:47:33', 'oAgrkRqm', '5154274'), + (13860, 48, 1266, 'attending', '2022-03-14 23:45:28', '2025-12-17 19:47:33', 'oAgrkRqm', '5166407'), + (13861, 48, 1267, 'not_attending', '2022-03-17 15:07:44', '2025-12-17 19:47:25', 'oAgrkRqm', '5169578'), + (13862, 48, 1269, 'maybe', '2022-03-13 21:43:32', '2025-12-17 19:47:25', 'oAgrkRqm', '5179439'), + (13863, 48, 1270, 'maybe', '2022-03-17 15:08:10', '2025-12-17 19:47:25', 'oAgrkRqm', '5181277'), + (13864, 48, 1272, 'attending', '2022-03-17 15:08:12', '2025-12-17 19:47:25', 'oAgrkRqm', '5186582'), + (13865, 48, 1273, 'attending', '2022-03-26 16:34:47', '2025-12-17 19:47:25', 'oAgrkRqm', '5186583'), + (13866, 48, 1274, 'attending', '2022-03-29 16:49:28', '2025-12-17 19:47:26', 'oAgrkRqm', '5186585'), + (13867, 48, 1276, 'maybe', '2022-03-17 15:08:25', '2025-12-17 19:47:25', 'oAgrkRqm', '5186820'), + (13868, 48, 1278, 'not_attending', '2022-03-17 15:07:37', '2025-12-17 19:47:33', 'oAgrkRqm', '5186920'), + (13869, 48, 1281, 'attending', '2022-04-09 17:35:23', '2025-12-17 19:47:27', 'oAgrkRqm', '5190437'), + (13870, 48, 1284, 'attending', '2022-04-11 20:09:53', '2025-12-17 19:47:27', 'oAgrkRqm', '5195095'), + (13871, 48, 1287, 'attending', '2022-03-23 04:23:21', '2025-12-17 19:47:25', 'oAgrkRqm', '5199425'), + (13872, 48, 1293, 'attending', '2022-03-27 21:08:21', '2025-12-17 19:47:27', 'oAgrkRqm', '5214641'), + (13873, 48, 1297, 'not_attending', '2022-03-29 16:49:21', '2025-12-17 19:47:26', 'oAgrkRqm', '5215989'), + (13874, 48, 1298, 'attending', '2022-03-29 16:49:08', '2025-12-17 19:47:25', 'oAgrkRqm', '5216645'), + (13875, 48, 1307, 'not_attending', '2022-04-05 23:35:54', '2025-12-17 19:47:27', 'oAgrkRqm', '5223686'), + (13876, 48, 1309, 'maybe', '2022-04-06 19:07:13', '2025-12-17 19:47:26', 'oAgrkRqm', '5227432'), + (13877, 48, 1312, 'maybe', '2022-04-11 20:09:49', '2025-12-17 19:47:27', 'oAgrkRqm', '5231459'), + (13878, 48, 1313, 'maybe', '2022-04-11 20:09:38', '2025-12-17 19:47:27', 'oAgrkRqm', '5231461'), + (13879, 48, 1316, 'maybe', '2022-04-11 20:09:02', '2025-12-17 19:47:27', 'oAgrkRqm', '5237536'), + (13880, 48, 1322, 'attending', '2022-04-26 15:14:49', '2025-12-17 19:47:27', 'oAgrkRqm', '5238356'), + (13881, 48, 1325, 'not_attending', '2022-04-12 17:13:41', '2025-12-17 19:47:28', 'oAgrkRqm', '5238361'), + (13882, 48, 1337, 'attending', '2022-04-20 18:42:22', '2025-12-17 19:47:27', 'oAgrkRqm', '5245036'), + (13883, 48, 1346, 'attending', '2022-04-17 16:40:53', '2025-12-17 19:47:27', 'oAgrkRqm', '5247467'), + (13884, 48, 1351, 'maybe', '2022-05-02 13:46:41', '2025-12-17 19:47:28', 'oAgrkRqm', '5251561'), + (13885, 48, 1354, 'maybe', '2022-04-22 14:59:27', '2025-12-17 19:47:27', 'oAgrkRqm', '5252569'), + (13886, 48, 1362, 'attending', '2022-04-25 17:29:24', '2025-12-17 19:47:28', 'oAgrkRqm', '5260800'), + (13887, 48, 1369, 'maybe', '2022-05-10 21:19:35', '2025-12-17 19:47:28', 'oAgrkRqm', '5262809'), + (13888, 48, 1370, 'attending', '2022-04-28 13:59:46', '2025-12-17 19:47:28', 'oAgrkRqm', '5263775'), + (13889, 48, 1374, 'attending', '2022-05-02 06:07:21', '2025-12-17 19:47:28', 'oAgrkRqm', '5269930'), + (13890, 48, 1378, 'attending', '2022-05-07 05:37:37', '2025-12-17 19:47:28', 'oAgrkRqm', '5271448'), + (13891, 48, 1379, 'attending', '2022-05-07 05:37:50', '2025-12-17 19:47:29', 'oAgrkRqm', '5271449'), + (13892, 48, 1380, 'attending', '2022-05-18 19:33:12', '2025-12-17 19:47:30', 'oAgrkRqm', '5271450'), + (13893, 48, 1381, 'attending', '2022-05-05 17:55:22', '2025-12-17 19:47:28', 'oAgrkRqm', '5271453'), + (13894, 48, 1383, 'not_attending', '2022-05-10 21:19:47', '2025-12-17 19:47:28', 'oAgrkRqm', '5276469'), + (13895, 48, 1384, 'attending', '2022-05-05 13:22:48', '2025-12-17 19:47:28', 'oAgrkRqm', '5277078'), + (13896, 48, 1385, 'not_attending', '2022-05-11 04:54:38', '2025-12-17 19:47:28', 'oAgrkRqm', '5277822'), + (13897, 48, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'oAgrkRqm', '5278159'), + (13898, 48, 1396, 'attending', '2022-05-10 21:20:29', '2025-12-17 19:47:28', 'oAgrkRqm', '5281103'), + (13899, 48, 1397, 'attending', '2022-05-10 21:20:35', '2025-12-17 19:47:29', 'oAgrkRqm', '5281104'), + (13900, 48, 1407, 'attending', '2022-05-15 19:50:53', '2025-12-17 19:47:30', 'oAgrkRqm', '5363695'), + (13901, 48, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'oAgrkRqm', '5365960'), + (13902, 48, 1414, 'maybe', '2022-05-18 19:32:39', '2025-12-17 19:47:29', 'oAgrkRqm', '5368445'), + (13903, 48, 1415, 'attending', '2022-06-03 22:46:13', '2025-12-17 19:47:30', 'oAgrkRqm', '5368973'), + (13904, 48, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'oAgrkRqm', '5378247'), + (13905, 48, 1431, 'attending', '2022-06-03 03:04:24', '2025-12-17 19:47:30', 'oAgrkRqm', '5389605'), + (13906, 48, 1442, 'attending', '2022-06-03 03:04:26', '2025-12-17 19:47:17', 'oAgrkRqm', '5397265'), + (13907, 48, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'oAgrkRqm', '5403967'), + (13908, 48, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'oAgrkRqm', '5404786'), + (13909, 48, 1460, 'maybe', '2022-06-13 12:57:20', '2025-12-17 19:47:31', 'oAgrkRqm', '5404817'), + (13910, 48, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'oAgrkRqm', '5405203'), + (13911, 48, 1465, 'attending', '2022-06-12 02:59:02', '2025-12-17 19:47:31', 'oAgrkRqm', '5406355'), + (13912, 48, 1470, 'not_attending', '2022-06-18 17:45:27', '2025-12-17 19:47:17', 'oAgrkRqm', '5407053'), + (13913, 48, 1478, 'maybe', '2022-06-22 02:02:48', '2025-12-17 19:47:19', 'oAgrkRqm', '5408794'), + (13914, 48, 1480, 'maybe', '2022-06-22 00:57:17', '2025-12-17 19:47:19', 'oAgrkRqm', '5411699'), + (13915, 48, 1482, 'attending', '2022-06-24 13:12:57', '2025-12-17 19:47:19', 'oAgrkRqm', '5412550'), + (13916, 48, 1483, 'not_attending', '2022-06-23 20:02:40', '2025-12-17 19:47:17', 'oAgrkRqm', '5414556'), + (13917, 48, 1484, 'maybe', '2022-06-22 17:19:47', '2025-12-17 19:47:17', 'oAgrkRqm', '5415046'), + (13918, 48, 1494, 'attending', '2022-06-25 15:18:05', '2025-12-17 19:47:19', 'oAgrkRqm', '5421626'), + (13919, 48, 1495, 'attending', '2022-06-26 03:24:01', '2025-12-17 19:47:19', 'oAgrkRqm', '5422086'), + (13920, 48, 1498, 'not_attending', '2022-06-27 18:08:10', '2025-12-17 19:47:19', 'oAgrkRqm', '5422406'), + (13921, 48, 1502, 'not_attending', '2022-07-09 01:20:23', '2025-12-17 19:47:19', 'oAgrkRqm', '5424565'), + (13922, 48, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'oAgrkRqm', '5426882'), + (13923, 48, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'oAgrkRqm', '5427083'), + (13924, 48, 1511, 'attending', '2022-07-06 23:37:41', '2025-12-17 19:47:19', 'oAgrkRqm', '5437733'), + (13925, 48, 1513, 'attending', '2022-07-09 18:57:01', '2025-12-17 19:47:19', 'oAgrkRqm', '5441125'), + (13926, 48, 1514, 'attending', '2022-07-09 18:57:02', '2025-12-17 19:47:20', 'oAgrkRqm', '5441126'), + (13927, 48, 1515, 'attending', '2022-08-04 23:51:50', '2025-12-17 19:47:21', 'oAgrkRqm', '5441128'), + (13928, 48, 1516, 'attending', '2022-08-14 08:10:45', '2025-12-17 19:47:23', 'oAgrkRqm', '5441129'), + (13929, 48, 1517, 'attending', '2022-08-21 05:31:32', '2025-12-17 19:47:23', 'oAgrkRqm', '5441130'), + (13930, 48, 1518, 'attending', '2022-08-22 02:50:25', '2025-12-17 19:47:24', 'oAgrkRqm', '5441131'), + (13931, 48, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'oAgrkRqm', '5441132'), + (13932, 48, 1521, 'not_attending', '2022-07-12 20:40:53', '2025-12-17 19:47:19', 'oAgrkRqm', '5442180'), + (13933, 48, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'oAgrkRqm', '5446643'), + (13934, 48, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'oAgrkRqm', '5453325'), + (13935, 48, 1543, 'attending', '2022-07-19 02:19:15', '2025-12-17 19:47:21', 'oAgrkRqm', '5454516'), + (13936, 48, 1544, 'attending', '2022-09-13 18:57:24', '2025-12-17 19:47:11', 'oAgrkRqm', '5454517'), + (13937, 48, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'oAgrkRqm', '5454605'), + (13938, 48, 1546, 'attending', '2022-07-19 13:55:51', '2025-12-17 19:47:20', 'oAgrkRqm', '5454607'), + (13939, 48, 1547, 'not_attending', '2022-07-19 17:22:30', '2025-12-17 19:47:20', 'oAgrkRqm', '5454608'), + (13940, 48, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'oAgrkRqm', '5455037'), + (13941, 48, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'oAgrkRqm', '5461278'), + (13942, 48, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'oAgrkRqm', '5469480'), + (13943, 48, 1565, 'attending', '2022-07-25 22:41:03', '2025-12-17 19:47:21', 'oAgrkRqm', '5471073'), + (13944, 48, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'oAgrkRqm', '5474663'), + (13945, 48, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'oAgrkRqm', '5482022'), + (13946, 48, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'oAgrkRqm', '5482793'), + (13947, 48, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'oAgrkRqm', '5488912'), + (13948, 48, 1587, 'maybe', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'oAgrkRqm', '5492192'), + (13949, 48, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'oAgrkRqm', '5493139'), + (13950, 48, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'oAgrkRqm', '5493200'), + (13951, 48, 1605, 'not_attending', '2022-08-15 02:16:03', '2025-12-17 19:47:23', 'oAgrkRqm', '5502188'), + (13952, 48, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'oAgrkRqm', '5505059'), + (13953, 48, 1610, 'maybe', '2022-08-22 02:49:58', '2025-12-17 19:47:23', 'oAgrkRqm', '5506595'), + (13954, 48, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'oAgrkRqm', '5509055'), + (13955, 48, 1618, 'attending', '2022-08-25 00:58:21', '2025-12-17 19:47:23', 'oAgrkRqm', '5512005'), + (13956, 48, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'oAgrkRqm', '5512862'), + (13957, 48, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'oAgrkRqm', '5513985'), + (13958, 48, 1626, 'not_attending', '2022-08-25 22:34:46', '2025-12-17 19:47:11', 'oAgrkRqm', '5519981'), + (13959, 48, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'oAgrkRqm', '5522550'), + (13960, 48, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'oAgrkRqm', '5534683'), + (13961, 48, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'oAgrkRqm', '5537735'), + (13962, 48, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'oAgrkRqm', '5540859'), + (13963, 48, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'oAgrkRqm', '5546619'), + (13964, 48, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'oAgrkRqm', '5555245'), + (13965, 48, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'oAgrkRqm', '5557747'), + (13966, 48, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'oAgrkRqm', '5560255'), + (13967, 48, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'oAgrkRqm', '5562906'), + (13968, 48, 1667, 'not_attending', '2022-09-24 16:41:34', '2025-12-17 19:47:11', 'oAgrkRqm', '5563221'), + (13969, 48, 1668, 'attending', '2022-09-25 04:30:43', '2025-12-17 19:47:12', 'oAgrkRqm', '5563222'), + (13970, 48, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'oAgrkRqm', '5600604'), + (13971, 48, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'oAgrkRqm', '5605544'), + (13972, 48, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'oAgrkRqm', '5606737'), + (13973, 48, 1702, 'attending', '2022-10-10 19:38:58', '2025-12-17 19:47:12', 'oAgrkRqm', '5609173'), + (13974, 48, 1708, 'attending', '2022-10-05 22:55:30', '2025-12-17 19:47:12', 'oAgrkRqm', '5617648'), + (13975, 48, 1711, 'maybe', '2022-10-06 19:59:33', '2025-12-17 19:47:12', 'oAgrkRqm', '5621883'), + (13976, 48, 1714, 'maybe', '2022-10-16 20:36:43', '2025-12-17 19:47:14', 'oAgrkRqm', '5622347'), + (13977, 48, 1719, 'attending', '2022-10-06 20:19:29', '2025-12-17 19:47:12', 'oAgrkRqm', '5630958'), + (13978, 48, 1720, 'attending', '2022-10-08 22:19:01', '2025-12-17 19:47:12', 'oAgrkRqm', '5630959'), + (13979, 48, 1721, 'attending', '2022-10-16 20:36:23', '2025-12-17 19:47:13', 'oAgrkRqm', '5630960'), + (13980, 48, 1722, 'attending', '2022-10-16 20:37:11', '2025-12-17 19:47:14', 'oAgrkRqm', '5630961'), + (13981, 48, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'oAgrkRqm', '5630962'), + (13982, 48, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'oAgrkRqm', '5630966'), + (13983, 48, 1725, 'attending', '2022-11-13 04:14:56', '2025-12-17 19:47:16', 'oAgrkRqm', '5630967'), + (13984, 48, 1726, 'attending', '2022-11-13 04:15:00', '2025-12-17 19:47:16', 'oAgrkRqm', '5630968'), + (13985, 48, 1727, 'attending', '2022-11-13 04:15:02', '2025-12-17 19:47:16', 'oAgrkRqm', '5630969'), + (13986, 48, 1728, 'attending', '2022-11-27 04:06:52', '2025-12-17 19:47:17', 'oAgrkRqm', '5630970'), + (13987, 48, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'oAgrkRqm', '5635406'), + (13988, 48, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'oAgrkRqm', '5638765'), + (13989, 48, 1739, 'maybe', '2022-10-16 20:36:58', '2025-12-17 19:47:14', 'oAgrkRqm', '5640097'), + (13990, 48, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'oAgrkRqm', '5640843'), + (13991, 48, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'oAgrkRqm', '5641521'), + (13992, 48, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'oAgrkRqm', '5642818'), + (13993, 48, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'oAgrkRqm', '5652395'), + (13994, 48, 1757, 'not_attending', '2022-10-23 20:55:34', '2025-12-17 19:47:15', 'oAgrkRqm', '5668974'), + (13995, 48, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'oAgrkRqm', '5670445'), + (13996, 48, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'oAgrkRqm', '5671637'), + (13997, 48, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'oAgrkRqm', '5672329'), + (13998, 48, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'oAgrkRqm', '5674057'), + (13999, 48, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'oAgrkRqm', '5674060'), + (14000, 48, 1770, 'not_attending', '2022-10-28 17:53:06', '2025-12-17 19:47:14', 'oAgrkRqm', '5676936'), + (14001, 48, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'oAgrkRqm', '5677461'), + (14002, 48, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'oAgrkRqm', '5698046'), + (14003, 48, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'oAgrkRqm', '5699760'), + (14004, 48, 1785, 'attending', '2022-11-15 23:43:42', '2025-12-17 19:47:15', 'oAgrkRqm', '5702414'), + (14005, 48, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'oAgrkRqm', '5741601'), + (14006, 48, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'oAgrkRqm', '5763458'), + (14007, 48, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'oAgrkRqm', '5774172'), + (14008, 48, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'oAgrkRqm', '5818247'), + (14009, 48, 1834, 'not_attending', '2022-12-07 02:49:23', '2025-12-17 19:47:17', 'oAgrkRqm', '5819470'), + (14010, 48, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'oAgrkRqm', '5819471'), + (14011, 48, 1841, 'attending', '2023-01-08 19:25:07', '2025-12-17 19:47:05', 'oAgrkRqm', '5827665'), + (14012, 48, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'oAgrkRqm', '5827739'), + (14013, 48, 1843, 'attending', '2022-12-17 21:53:20', '2025-12-17 19:47:04', 'oAgrkRqm', '5844304'), + (14014, 48, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'oAgrkRqm', '5844306'), + (14015, 48, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'oAgrkRqm', '5850159'), + (14016, 48, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'oAgrkRqm', '5858999'), + (14017, 48, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'oAgrkRqm', '5871984'), + (14018, 48, 1860, 'attending', '2023-01-13 06:08:12', '2025-12-17 19:47:05', 'oAgrkRqm', '5876309'), + (14019, 48, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'oAgrkRqm', '5876354'), + (14020, 48, 1864, 'attending', '2023-01-17 16:16:45', '2025-12-17 19:47:05', 'oAgrkRqm', '5879675'), + (14021, 48, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'oAgrkRqm', '5880939'), + (14022, 48, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'oAgrkRqm', '5880940'), + (14023, 48, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'oAgrkRqm', '5880942'), + (14024, 48, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'oAgrkRqm', '5880943'), + (14025, 48, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'oAgrkRqm', '5887890'), + (14026, 48, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'oAgrkRqm', '5888598'), + (14027, 48, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'oAgrkRqm', '5893260'), + (14028, 48, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'oAgrkRqm', '5899826'), + (14029, 48, 1886, 'maybe', '2023-03-06 22:40:40', '2025-12-17 19:47:09', 'oAgrkRqm', '5899930'), + (14030, 48, 1888, 'attending', '2023-02-17 17:34:48', '2025-12-17 19:47:07', 'oAgrkRqm', '5900197'), + (14031, 48, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'oAgrkRqm', '5900199'), + (14032, 48, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'oAgrkRqm', '5900200'), + (14033, 48, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'oAgrkRqm', '5900202'), + (14034, 48, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'oAgrkRqm', '5900203'), + (14035, 48, 1895, 'maybe', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'oAgrkRqm', '5901108'), + (14036, 48, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'oAgrkRqm', '5901126'), + (14037, 48, 1899, 'not_attending', '2023-02-10 20:38:32', '2025-12-17 19:47:07', 'oAgrkRqm', '5901323'), + (14038, 48, 1902, 'attending', '2023-02-01 19:48:18', '2025-12-17 19:47:06', 'oAgrkRqm', '5902254'), + (14039, 48, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'oAgrkRqm', '5909655'), + (14040, 48, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'oAgrkRqm', '5910522'), + (14041, 48, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'oAgrkRqm', '5910526'), + (14042, 48, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'oAgrkRqm', '5910528'), + (14043, 48, 1922, 'attending', '2023-02-13 22:43:19', '2025-12-17 19:47:07', 'oAgrkRqm', '5916219'), + (14044, 48, 1928, 'maybe', '2023-02-18 03:11:12', '2025-12-17 19:47:07', 'oAgrkRqm', '5932627'), + (14045, 48, 1933, 'attending', '2023-02-21 17:59:33', '2025-12-17 19:47:08', 'oAgrkRqm', '5936234'), + (14046, 48, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'oAgrkRqm', '5958351'), + (14047, 48, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'oAgrkRqm', '5959751'), + (14048, 48, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'oAgrkRqm', '5959755'), + (14049, 48, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'oAgrkRqm', '5960055'), + (14050, 48, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'oAgrkRqm', '5961684'), + (14051, 48, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'oAgrkRqm', '5962132'), + (14052, 48, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'oAgrkRqm', '5962133'), + (14053, 48, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'oAgrkRqm', '5962134'), + (14054, 48, 1947, 'attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'oAgrkRqm', '5962233'), + (14055, 48, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'oAgrkRqm', '5962317'), + (14056, 48, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'oAgrkRqm', '5962318'), + (14057, 48, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'oAgrkRqm', '5965933'), + (14058, 48, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'oAgrkRqm', '5967014'), + (14059, 48, 1956, 'maybe', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'oAgrkRqm', '5972763'), + (14060, 48, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'oAgrkRqm', '5972815'), + (14061, 48, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'oAgrkRqm', '5974016'), + (14062, 48, 1964, 'attending', '2023-03-08 23:51:25', '2025-12-17 19:47:09', 'oAgrkRqm', '5977129'), + (14063, 48, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'oAgrkRqm', '5981515'), + (14064, 48, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'oAgrkRqm', '5993516'), + (14065, 48, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'oAgrkRqm', '5998939'), + (14066, 48, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'oAgrkRqm', '6028191'), + (14067, 48, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'oAgrkRqm', '6040066'), + (14068, 48, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'oAgrkRqm', '6042717'), + (14069, 48, 1986, 'attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'oAgrkRqm', '6044838'), + (14070, 48, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'oAgrkRqm', '6044839'), + (14071, 48, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgrkRqm', '6045684'), + (14072, 48, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'oAgrkRqm', '6050104'), + (14073, 48, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'oAgrkRqm', '6053195'), + (14074, 48, 2006, 'maybe', '2023-04-10 04:38:32', '2025-12-17 19:46:59', 'oAgrkRqm', '6053198'), + (14075, 48, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'oAgrkRqm', '6056085'), + (14076, 48, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'oAgrkRqm', '6056916'), + (14077, 48, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'oAgrkRqm', '6059290'), + (14078, 48, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'oAgrkRqm', '6060328'), + (14079, 48, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'oAgrkRqm', '6061037'), + (14080, 48, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'oAgrkRqm', '6061039'), + (14081, 48, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'oAgrkRqm', '6061099'), + (14082, 48, 2019, 'attending', '2023-04-15 21:26:55', '2025-12-17 19:47:00', 'oAgrkRqm', '6062934'), + (14083, 48, 2020, 'maybe', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'oAgrkRqm', '6065813'), + (14084, 48, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'oAgrkRqm', '6067245'), + (14085, 48, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'oAgrkRqm', '6068094'), + (14086, 48, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'oAgrkRqm', '6068252'), + (14087, 48, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'oAgrkRqm', '6068253'), + (14088, 48, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'oAgrkRqm', '6068254'), + (14089, 48, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'oAgrkRqm', '6068280'), + (14090, 48, 2032, 'attending', '2023-06-03 18:15:54', '2025-12-17 19:47:04', 'oAgrkRqm', '6068281'), + (14091, 48, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'oAgrkRqm', '6069093'), + (14092, 48, 2039, 'not_attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'oAgrkRqm', '6072398'), + (14093, 48, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'oAgrkRqm', '6072528'), + (14094, 48, 2044, 'attending', '2023-05-14 20:51:54', '2025-12-17 19:47:03', 'oAgrkRqm', '6073678'), + (14095, 48, 2048, 'maybe', '2023-04-28 13:01:23', '2025-12-17 19:47:03', 'oAgrkRqm', '6076415'), + (14096, 48, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'oAgrkRqm', '6079840'), + (14097, 48, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'oAgrkRqm', '6083398'), + (14098, 48, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'oAgrkRqm', '6093504'), + (14099, 48, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'oAgrkRqm', '6097414'), + (14100, 48, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'oAgrkRqm', '6097442'), + (14101, 48, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'oAgrkRqm', '6097684'), + (14102, 48, 2063, 'attending', '2023-05-09 20:38:36', '2025-12-17 19:47:03', 'oAgrkRqm', '6098762'), + (14103, 48, 2065, 'attending', '2023-05-20 10:20:25', '2025-12-17 19:46:49', 'oAgrkRqm', '6101169'), + (14104, 48, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'oAgrkRqm', '6101361'), + (14105, 48, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'oAgrkRqm', '6101362'), + (14106, 48, 2070, 'not_attending', '2023-05-17 12:00:40', '2025-12-17 19:47:03', 'oAgrkRqm', '6103752'), + (14107, 48, 2073, 'maybe', '2023-05-15 23:28:55', '2025-12-17 19:47:03', 'oAgrkRqm', '6106002'), + (14108, 48, 2074, 'maybe', '2023-05-21 22:15:41', '2025-12-17 19:47:03', 'oAgrkRqm', '6107312'), + (14109, 48, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'oAgrkRqm', '6107314'), + (14110, 48, 2076, 'attending', '2023-05-19 06:43:17', '2025-12-17 19:47:03', 'oAgrkRqm', '6108350'), + (14111, 48, 2080, 'attending', '2023-05-22 04:17:43', '2025-12-17 19:47:04', 'oAgrkRqm', '6114677'), + (14112, 48, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'oAgrkRqm', '6120034'), + (14113, 48, 2090, 'not_attending', '2023-06-02 05:32:50', '2025-12-17 19:47:04', 'oAgrkRqm', '6127961'), + (14114, 48, 2094, 'attending', '2023-06-05 12:40:26', '2025-12-17 19:47:04', 'oAgrkRqm', '6135924'), + (14115, 48, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'oAgrkRqm', '6136733'), + (14116, 48, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'oAgrkRqm', '6137989'), + (14117, 48, 2104, 'not_attending', '2023-06-18 14:19:26', '2025-12-17 19:46:50', 'oAgrkRqm', '6149499'), + (14118, 48, 2106, 'maybe', '2023-06-18 14:19:13', '2025-12-17 19:46:50', 'oAgrkRqm', '6150479'), + (14119, 48, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'oAgrkRqm', '6150864'), + (14120, 48, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'oAgrkRqm', '6155491'), + (14121, 48, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'oAgrkRqm', '6164417'), + (14122, 48, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'oAgrkRqm', '6166388'), + (14123, 48, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'oAgrkRqm', '6176439'), + (14124, 48, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'oAgrkRqm', '6182410'), + (14125, 48, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'oAgrkRqm', '6185812'), + (14126, 48, 2133, 'attending', '2023-07-06 16:56:53', '2025-12-17 19:46:51', 'oAgrkRqm', '6187651'), + (14127, 48, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'oAgrkRqm', '6187963'), + (14128, 48, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'oAgrkRqm', '6187964'), + (14129, 48, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'oAgrkRqm', '6187966'), + (14130, 48, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'oAgrkRqm', '6187967'), + (14131, 48, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'oAgrkRqm', '6187969'), + (14132, 48, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'oAgrkRqm', '6334878'), + (14133, 48, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'oAgrkRqm', '6337236'), + (14134, 48, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'oAgrkRqm', '6337970'), + (14135, 48, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'oAgrkRqm', '6338308'), + (14136, 48, 2158, 'attending', '2023-07-22 18:54:56', '2025-12-17 19:46:53', 'oAgrkRqm', '6338353'), + (14137, 48, 2159, 'attending', '2023-07-17 19:47:13', '2025-12-17 19:46:53', 'oAgrkRqm', '6338355'), + (14138, 48, 2160, 'attending', '2023-07-17 19:47:19', '2025-12-17 19:46:54', 'oAgrkRqm', '6338358'), + (14139, 48, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'oAgrkRqm', '6341710'), + (14140, 48, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'oAgrkRqm', '6342044'), + (14141, 48, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'oAgrkRqm', '6342298'), + (14142, 48, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'oAgrkRqm', '6343294'), + (14143, 48, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'oAgrkRqm', '6347034'), + (14144, 48, 2177, 'maybe', '2023-08-12 22:29:14', '2025-12-17 19:46:55', 'oAgrkRqm', '6347053'), + (14145, 48, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'oAgrkRqm', '6347056'), + (14146, 48, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'oAgrkRqm', '6353830'), + (14147, 48, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'oAgrkRqm', '6353831'), + (14148, 48, 2187, 'attending', '2023-08-06 06:19:54', '2025-12-17 19:46:55', 'oAgrkRqm', '6357559'), + (14149, 48, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'oAgrkRqm', '6357867'), + (14150, 48, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'oAgrkRqm', '6358652'), + (14151, 48, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'oAgrkRqm', '6358668'), + (14152, 48, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'oAgrkRqm', '6358669'), + (14153, 48, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'oAgrkRqm', '6361709'), + (14154, 48, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'oAgrkRqm', '6361710'), + (14155, 48, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'oAgrkRqm', '6361711'), + (14156, 48, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'oAgrkRqm', '6361712'), + (14157, 48, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'oAgrkRqm', '6361713'), + (14158, 48, 2216, 'attending', '2023-08-19 17:03:47', '2025-12-17 19:46:55', 'oAgrkRqm', '6364123'), + (14159, 48, 2231, 'not_attending', '2023-08-21 18:03:04', '2025-12-17 19:46:55', 'oAgrkRqm', '6374748'), + (14160, 48, 2232, 'attending', '2023-08-23 21:47:56', '2025-12-17 19:46:55', 'oAgrkRqm', '6374818'), + (14161, 48, 2235, 'attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'oAgrkRqm', '6382573'), + (14162, 48, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'oAgrkRqm', '6388604'), + (14163, 48, 2242, 'attending', '2023-09-22 07:22:01', '2025-12-17 19:46:45', 'oAgrkRqm', '6388606'), + (14164, 48, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'oAgrkRqm', '6394629'), + (14165, 48, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'oAgrkRqm', '6394631'), + (14166, 48, 2253, 'attending', '2023-09-22 07:22:17', '2025-12-17 19:46:45', 'oAgrkRqm', '6401811'), + (14167, 48, 2259, 'attending', '2023-09-22 01:29:43', '2025-12-17 19:46:45', 'oAgrkRqm', '6421257'), + (14168, 48, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'oAgrkRqm', '6440863'), + (14169, 48, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'oAgrkRqm', '6445440'), + (14170, 48, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'oAgrkRqm', '6453951'), + (14171, 48, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'oAgrkRqm', '6461696'), + (14172, 48, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'oAgrkRqm', '6462129'), + (14173, 48, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'oAgrkRqm', '6463218'), + (14174, 48, 2299, 'attending', '2023-10-16 20:44:41', '2025-12-17 19:46:46', 'oAgrkRqm', '6472181'), + (14175, 48, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'oAgrkRqm', '6482693'), + (14176, 48, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'oAgrkRqm', '6484200'), + (14177, 48, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'oAgrkRqm', '6484680'), + (14178, 48, 2310, 'not_attending', '2023-11-09 08:10:00', '2025-12-17 19:46:47', 'oAgrkRqm', '6487709'), + (14179, 48, 2315, 'attending', '2023-11-05 03:14:05', '2025-12-17 19:46:47', 'oAgrkRqm', '6493666'), + (14180, 48, 2316, 'attending', '2023-11-05 03:14:08', '2025-12-17 19:46:48', 'oAgrkRqm', '6493668'), + (14181, 48, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'oAgrkRqm', '6507741'), + (14182, 48, 2318, 'maybe', '2023-10-31 03:58:13', '2025-12-17 19:46:47', 'oAgrkRqm', '6508566'), + (14183, 48, 2320, 'attending', '2023-11-05 03:14:07', '2025-12-17 19:46:47', 'oAgrkRqm', '6508647'), + (14184, 48, 2322, 'attending', '2023-11-09 08:13:39', '2025-12-17 19:46:48', 'oAgrkRqm', '6514659'), + (14185, 48, 2323, 'attending', '2023-11-09 08:13:40', '2025-12-17 19:46:48', 'oAgrkRqm', '6514660'), + (14186, 48, 2324, 'not_attending', '2023-11-09 08:13:43', '2025-12-17 19:46:49', 'oAgrkRqm', '6514662'), + (14187, 48, 2325, 'attending', '2023-11-09 08:13:55', '2025-12-17 19:46:36', 'oAgrkRqm', '6514663'), + (14188, 48, 2327, 'maybe', '2023-11-01 21:08:25', '2025-12-17 19:46:47', 'oAgrkRqm', '6515494'), + (14189, 48, 2330, 'not_attending', '2023-11-07 06:01:49', '2025-12-17 19:46:47', 'oAgrkRqm', '6517941'), + (14190, 48, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'oAgrkRqm', '6519103'), + (14191, 48, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'oAgrkRqm', '6535681'), + (14192, 48, 2338, 'maybe', '2023-11-25 22:53:29', '2025-12-17 19:46:48', 'oAgrkRqm', '6538868'), + (14193, 48, 2340, 'attending', '2023-11-17 23:37:17', '2025-12-17 19:46:48', 'oAgrkRqm', '6540279'), + (14194, 48, 2350, 'attending', '2023-11-20 22:37:39', '2025-12-17 19:46:48', 'oAgrkRqm', '6584352'), + (14195, 48, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'oAgrkRqm', '6584747'), + (14196, 48, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'oAgrkRqm', '6587097'), + (14197, 48, 2353, 'attending', '2023-11-23 01:56:36', '2025-12-17 19:46:48', 'oAgrkRqm', '6588894'), + (14198, 48, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'oAgrkRqm', '6609022'), + (14199, 48, 2373, 'maybe', '2024-01-14 07:47:34', '2025-12-17 19:46:38', 'oAgrkRqm', '6632678'), + (14200, 48, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'oAgrkRqm', '6632757'), + (14201, 48, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAgrkRqm', '6644187'), + (14202, 48, 2380, 'attending', '2023-12-31 01:38:33', '2025-12-17 19:46:37', 'oAgrkRqm', '6645105'), + (14203, 48, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAgrkRqm', '6648951'), + (14204, 48, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAgrkRqm', '6648952'), + (14205, 48, 2388, 'attending', '2024-01-03 02:54:59', '2025-12-17 19:46:37', 'oAgrkRqm', '6649244'), + (14206, 48, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAgrkRqm', '6655401'), + (14207, 48, 2399, 'attending', '2024-01-13 20:23:19', '2025-12-17 19:46:38', 'oAgrkRqm', '6657583'), + (14208, 48, 2400, 'not_attending', '2024-01-09 00:06:14', '2025-12-17 19:46:37', 'oAgrkRqm', '6659378'), + (14209, 48, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAgrkRqm', '6661585'), + (14210, 48, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAgrkRqm', '6661588'), + (14211, 48, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAgrkRqm', '6661589'), + (14212, 48, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAgrkRqm', '6699906'), + (14213, 48, 2408, 'attending', '2024-01-21 18:49:08', '2025-12-17 19:46:40', 'oAgrkRqm', '6699907'), + (14214, 48, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'oAgrkRqm', '6699913'), + (14215, 48, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAgrkRqm', '6701109'), + (14216, 48, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAgrkRqm', '6705219'), + (14217, 48, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAgrkRqm', '6710153'), + (14218, 48, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAgrkRqm', '6711552'), + (14219, 48, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'oAgrkRqm', '6711553'), + (14220, 48, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAgrkRqm', '6722688'), + (14221, 48, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAgrkRqm', '6730620'), + (14222, 48, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'oAgrkRqm', '6730642'), + (14223, 48, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAgrkRqm', '6740364'), + (14224, 48, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAgrkRqm', '6743829'), + (14225, 48, 2467, 'maybe', '2024-02-25 17:32:48', '2025-12-17 19:46:43', 'oAgrkRqm', '7029987'), + (14226, 48, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAgrkRqm', '7030380'), + (14227, 48, 2471, 'maybe', '2024-02-20 03:11:48', '2025-12-17 19:46:42', 'oAgrkRqm', '7032425'), + (14228, 48, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'oAgrkRqm', '7033677'), + (14229, 48, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'oAgrkRqm', '7035415'), + (14230, 48, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAgrkRqm', '7044715'), + (14231, 48, 2487, 'not_attending', '2024-03-17 19:55:10', '2025-12-17 19:46:33', 'oAgrkRqm', '7049279'), + (14232, 48, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAgrkRqm', '7050318'), + (14233, 48, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAgrkRqm', '7050319'), + (14234, 48, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAgrkRqm', '7050322'), + (14235, 48, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAgrkRqm', '7057804'), + (14236, 48, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAgrkRqm', '7072824'), + (14237, 48, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAgrkRqm', '7074348'), + (14238, 48, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'oAgrkRqm', '7074364'), + (14239, 48, 2528, 'attending', '2024-08-08 23:03:21', '2025-12-17 19:46:31', 'oAgrkRqm', '7074368'), + (14240, 48, 2533, 'maybe', '2024-08-22 12:27:57', '2025-12-17 19:46:32', 'oAgrkRqm', '7074384'), + (14241, 48, 2537, 'not_attending', '2024-03-17 19:55:13', '2025-12-17 19:46:33', 'oAgrkRqm', '7085484'), + (14242, 48, 2538, 'maybe', '2024-03-17 19:55:29', '2025-12-17 19:46:33', 'oAgrkRqm', '7085485'), + (14243, 48, 2539, 'attending', '2024-03-17 19:55:35', '2025-12-17 19:46:33', 'oAgrkRqm', '7085486'), + (14244, 48, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAgrkRqm', '7089267'), + (14245, 48, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAgrkRqm', '7098747'), + (14246, 48, 2553, 'maybe', '2024-03-29 23:15:36', '2025-12-17 19:46:33', 'oAgrkRqm', '7113468'), + (14247, 48, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAgrkRqm', '7114856'), + (14248, 48, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAgrkRqm', '7114951'), + (14249, 48, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAgrkRqm', '7114955'), + (14250, 48, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAgrkRqm', '7114956'), + (14251, 48, 2558, 'attending', '2024-04-03 23:30:55', '2025-12-17 19:46:35', 'oAgrkRqm', '7114957'), + (14252, 48, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'oAgrkRqm', '7153615'), + (14253, 48, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAgrkRqm', '7159484'), + (14254, 48, 2573, 'maybe', '2024-04-08 23:40:30', '2025-12-17 19:46:34', 'oAgrkRqm', '7160612'), + (14255, 48, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAgrkRqm', '7178446'), + (14256, 48, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'oAgrkRqm', '7220467'), + (14257, 48, 2609, 'not_attending', '2024-04-30 01:20:10', '2025-12-17 19:46:35', 'oAgrkRqm', '7240354'), + (14258, 48, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'oAgrkRqm', '7251633'), + (14259, 48, 2626, 'attending', '2024-05-14 14:27:04', '2025-12-17 19:46:35', 'oAgrkRqm', '7264723'), + (14260, 48, 2638, 'attending', '2024-05-15 21:42:13', '2025-12-17 19:46:35', 'oAgrkRqm', '7273117'), + (14261, 48, 2647, 'attending', '2024-06-08 18:58:16', '2025-12-17 19:46:28', 'oAgrkRqm', '7282057'), + (14262, 48, 2655, 'not_attending', '2024-05-26 22:13:15', '2025-12-17 19:46:35', 'oAgrkRqm', '7291225'), + (14263, 48, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'oAgrkRqm', '7302674'), + (14264, 48, 2676, 'attending', '2024-08-31 06:45:39', '2025-12-17 19:46:32', 'oAgrkRqm', '7319482'), + (14265, 48, 2678, 'not_attending', '2024-06-14 13:24:38', '2025-12-17 19:46:28', 'oAgrkRqm', '7319489'), + (14266, 48, 2679, 'maybe', '2024-06-20 03:34:12', '2025-12-17 19:46:29', 'oAgrkRqm', '7319490'), + (14267, 48, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'oAgrkRqm', '7324073'), + (14268, 48, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'oAgrkRqm', '7324074'), + (14269, 48, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'oAgrkRqm', '7324075'), + (14270, 48, 2691, 'attending', '2024-07-16 13:50:47', '2025-12-17 19:46:30', 'oAgrkRqm', '7324076'), + (14271, 48, 2692, 'maybe', '2024-07-16 13:50:50', '2025-12-17 19:46:30', 'oAgrkRqm', '7324077'), + (14272, 48, 2693, 'attending', '2024-07-16 13:50:54', '2025-12-17 19:46:31', 'oAgrkRqm', '7324078'), + (14273, 48, 2694, 'attending', '2024-07-16 13:50:55', '2025-12-17 19:46:31', 'oAgrkRqm', '7324079'), + (14274, 48, 2695, 'attending', '2024-07-16 13:50:58', '2025-12-17 19:46:31', 'oAgrkRqm', '7324080'), + (14275, 48, 2696, 'attending', '2024-07-16 13:51:00', '2025-12-17 19:46:32', 'oAgrkRqm', '7324081'), + (14276, 48, 2697, 'attending', '2024-08-31 06:45:27', '2025-12-17 19:46:32', 'oAgrkRqm', '7324082'), + (14277, 48, 2698, 'attending', '2024-09-07 17:14:07', '2025-12-17 19:46:24', 'oAgrkRqm', '7324083'), + (14278, 48, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'oAgrkRqm', '7331457'), + (14279, 48, 2753, 'maybe', '2024-07-08 22:33:36', '2025-12-17 19:46:30', 'oAgrkRqm', '7355538'), + (14280, 48, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'oAgrkRqm', '7356752'), + (14281, 48, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'oAgrkRqm', '7363643'), + (14282, 48, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'oAgrkRqm', '7368606'), + (14283, 48, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'oAgrkRqm', '7397462'), + (14284, 48, 2805, 'maybe', '2024-08-20 14:23:56', '2025-12-17 19:46:32', 'oAgrkRqm', '7403620'), + (14285, 48, 2808, 'attending', '2024-08-31 06:45:37', '2025-12-17 19:46:32', 'oAgrkRqm', '7412860'), + (14286, 48, 2811, 'not_attending', '2024-08-31 06:45:33', '2025-12-17 19:46:32', 'oAgrkRqm', '7418895'), + (14287, 48, 2821, 'attending', '2024-09-08 03:15:16', '2025-12-17 19:46:26', 'oAgrkRqm', '7424275'), + (14288, 48, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'oAgrkRqm', '7424276'), + (14289, 48, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'oAgrkRqm', '7432751'), + (14290, 48, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'oAgrkRqm', '7432752'), + (14291, 48, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'oAgrkRqm', '7432753'), + (14292, 48, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'oAgrkRqm', '7432754'), + (14293, 48, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'oAgrkRqm', '7432755'), + (14294, 48, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'oAgrkRqm', '7432756'), + (14295, 48, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'oAgrkRqm', '7432758'), + (14296, 48, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'oAgrkRqm', '7432759'), + (14297, 48, 2832, 'maybe', '2024-09-11 16:11:27', '2025-12-17 19:46:24', 'oAgrkRqm', '7433324'), + (14298, 48, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'oAgrkRqm', '7433834'), + (14299, 48, 2858, 'attending', '2024-10-17 14:54:39', '2025-12-17 19:46:26', 'oAgrkRqm', '7469388'), + (14300, 48, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'oAgrkRqm', '7470197'), + (14301, 48, 2870, 'attending', '2024-10-05 21:20:17', '2025-12-17 19:46:26', 'oAgrkRqm', '7475068'), + (14302, 48, 2873, 'attending', '2024-12-11 20:16:58', '2025-12-17 19:46:22', 'oAgrkRqm', '7480850'), + (14303, 48, 2885, 'attending', '2024-10-17 14:54:35', '2025-12-17 19:46:26', 'oAgrkRqm', '7649944'), + (14304, 48, 2892, 'attending', '2024-10-30 23:13:54', '2025-12-17 19:46:26', 'oAgrkRqm', '7672064'), + (14305, 48, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'oAgrkRqm', '7685613'), + (14306, 48, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'oAgrkRqm', '7688194'), + (14307, 48, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'oAgrkRqm', '7688196'), + (14308, 48, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'oAgrkRqm', '7688289'), + (14309, 48, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'oAgrkRqm', '7692763'), + (14310, 48, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'oAgrkRqm', '7697552'), + (14311, 48, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'oAgrkRqm', '7699878'), + (14312, 48, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'oAgrkRqm', '7704043'), + (14313, 48, 2924, 'attending', '2024-11-26 15:16:31', '2025-12-17 19:46:28', 'oAgrkRqm', '7712467'), + (14314, 48, 2925, 'attending', '2024-12-11 20:16:51', '2025-12-17 19:46:21', 'oAgrkRqm', '7713584'), + (14315, 48, 2926, 'attending', '2024-12-03 14:56:30', '2025-12-17 19:46:21', 'oAgrkRqm', '7713585'), + (14316, 48, 2927, 'attending', '2024-12-11 20:16:53', '2025-12-17 19:46:22', 'oAgrkRqm', '7713586'), + (14317, 48, 2948, 'attending', '2024-12-11 20:17:01', '2025-12-17 19:46:22', 'oAgrkRqm', '7728212'), + (14318, 48, 2949, 'attending', '2024-12-11 20:17:15', '2025-12-17 19:46:22', 'oAgrkRqm', '7728213'), + (14319, 48, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'oAgrkRqm', '7738518'), + (14320, 48, 2959, 'maybe', '2024-12-20 22:17:19', '2025-12-17 19:46:22', 'oAgrkRqm', '7747388'), + (14321, 48, 2962, 'maybe', '2024-12-24 00:39:15', '2025-12-17 19:46:22', 'oAgrkRqm', '7750632'), + (14322, 48, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'oAgrkRqm', '7750636'), + (14323, 48, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'oAgrkRqm', '7796540'), + (14324, 48, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'oAgrkRqm', '7796541'), + (14325, 48, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'oAgrkRqm', '7796542'), + (14326, 48, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'oAgrkRqm', '7825913'), + (14327, 48, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'oAgrkRqm', '7826209'), + (14328, 48, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'oAgrkRqm', '7834742'), + (14329, 48, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'oAgrkRqm', '7842108'), + (14330, 48, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'oAgrkRqm', '7842902'), + (14331, 48, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'oAgrkRqm', '7842903'), + (14332, 48, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'oAgrkRqm', '7842904'), + (14333, 48, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'oAgrkRqm', '7842905'), + (14334, 48, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'oAgrkRqm', '7855719'), + (14335, 48, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'oAgrkRqm', '7860683'), + (14336, 48, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'oAgrkRqm', '7860684'), + (14337, 48, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'oAgrkRqm', '7866095'), + (14338, 48, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'oAgrkRqm', '7869170'), + (14339, 48, 3014, 'attending', '2025-04-05 15:16:16', '2025-12-17 19:46:20', 'oAgrkRqm', '7869185'), + (14340, 48, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'oAgrkRqm', '7869188'), + (14341, 48, 3028, 'attending', '2025-04-27 15:56:34', '2025-12-17 19:46:20', 'oAgrkRqm', '7869199'), + (14342, 48, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'oAgrkRqm', '7869201'), + (14343, 48, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'oAgrkRqm', '7877465'), + (14344, 48, 3055, 'not_attending', '2025-03-27 16:26:07', '2025-12-17 19:46:19', 'oAgrkRqm', '7888118'), + (14345, 48, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'oAgrkRqm', '7888250'), + (14346, 48, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'oAgrkRqm', '7903852'), + (14347, 48, 3088, 'attending', '2025-06-13 04:33:22', '2025-12-17 19:46:15', 'oAgrkRqm', '7904777'), + (14348, 48, 3094, 'attending', '2025-05-08 18:16:39', '2025-12-17 19:46:21', 'oAgrkRqm', '8342292'), + (14349, 48, 3095, 'attending', '2025-05-03 23:19:58', '2025-12-17 19:46:20', 'oAgrkRqm', '8342293'), + (14350, 48, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'oAgrkRqm', '8349164'), + (14351, 48, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'oAgrkRqm', '8349545'), + (14352, 48, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'oAgrkRqm', '8353584'), + (14353, 48, 3113, 'not_attending', '2025-05-01 20:50:55', '2025-12-17 19:46:20', 'oAgrkRqm', '8355089'), + (14354, 48, 3131, 'attending', '2025-05-15 00:40:02', '2025-12-17 19:46:21', 'oAgrkRqm', '8368028'), + (14355, 48, 3132, 'attending', '2025-05-15 00:40:05', '2025-12-17 19:46:21', 'oAgrkRqm', '8368029'), + (14356, 48, 3133, 'attending', '2025-05-15 00:40:08', '2025-12-17 19:46:14', 'oAgrkRqm', '8368030'), + (14357, 48, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'oAgrkRqm', '8388462'), + (14358, 48, 3150, 'maybe', '2025-06-21 22:19:10', '2025-12-17 19:46:15', 'oAgrkRqm', '8393174'), + (14359, 48, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'oAgrkRqm', '8400273'), + (14360, 48, 3154, 'maybe', '2025-06-23 22:39:33', '2025-12-17 19:46:15', 'oAgrkRqm', '8400274'), + (14361, 48, 3155, 'maybe', '2025-06-23 22:39:42', '2025-12-17 19:46:16', 'oAgrkRqm', '8400275'), + (14362, 48, 3156, 'maybe', '2025-06-23 22:39:49', '2025-12-17 19:46:16', 'oAgrkRqm', '8400276'), + (14363, 48, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'oAgrkRqm', '8404977'), + (14364, 48, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'oAgrkRqm', '8430783'), + (14365, 48, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'oAgrkRqm', '8430784'), + (14366, 48, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'oAgrkRqm', '8430799'), + (14367, 48, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'oAgrkRqm', '8430800'), + (14368, 48, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'oAgrkRqm', '8430801'), + (14369, 48, 3188, 'attending', '2025-07-14 23:58:41', '2025-12-17 19:46:17', 'oAgrkRqm', '8438709'), + (14370, 48, 3190, 'not_attending', '2025-07-13 23:07:38', '2025-12-17 19:46:17', 'oAgrkRqm', '8443962'), + (14371, 48, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'oAgrkRqm', '8457738'), + (14372, 48, 3195, 'attending', '2025-08-03 21:20:37', '2025-12-17 19:46:17', 'oAgrkRqm', '8458118'), + (14373, 48, 3196, 'attending', '2025-08-12 00:10:29', '2025-12-17 19:46:17', 'oAgrkRqm', '8458543'), + (14374, 48, 3198, 'maybe', '2025-08-20 13:18:06', '2025-12-17 19:46:18', 'oAgrkRqm', '8459268'), + (14375, 48, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'oAgrkRqm', '8459566'), + (14376, 48, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'oAgrkRqm', '8459567'), + (14377, 48, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'oAgrkRqm', '8461032'), + (14378, 48, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'oAgrkRqm', '8477877'), + (14379, 48, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'oAgrkRqm', '8485688'), + (14380, 48, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'oAgrkRqm', '8490587'), + (14381, 48, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'oAgrkRqm', '8493552'), + (14382, 48, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'oAgrkRqm', '8493553'), + (14383, 48, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'oAgrkRqm', '8493554'), + (14384, 48, 3239, 'maybe', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'oAgrkRqm', '8493555'), + (14385, 48, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'oAgrkRqm', '8493556'), + (14386, 48, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'oAgrkRqm', '8493557'), + (14387, 48, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'oAgrkRqm', '8493558'), + (14388, 48, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'oAgrkRqm', '8493559'), + (14389, 48, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'oAgrkRqm', '8493560'), + (14390, 48, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'oAgrkRqm', '8493561'), + (14391, 48, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'oAgrkRqm', '8493572'), + (14392, 48, 3263, 'not_attending', '2025-09-10 13:48:51', '2025-12-17 19:46:12', 'oAgrkRqm', '8514576'), + (14393, 48, 3283, 'not_attending', '2025-10-15 04:47:38', '2025-12-17 19:46:14', 'oAgrkRqm', '8538077'), + (14394, 48, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'oAgrkRqm', '8540725'), + (14395, 48, 3295, 'attending', '2025-10-29 11:07:39', '2025-12-17 19:46:14', 'oAgrkRqm', '8547541'), + (14396, 48, 3300, 'attending', '2025-10-29 11:07:49', '2025-12-17 19:46:14', 'oAgrkRqm', '8549145'), + (14397, 48, 3302, 'attending', '2025-10-29 11:07:56', '2025-12-17 19:46:14', 'oAgrkRqm', '8550022'), + (14398, 48, 3304, 'attending', '2025-10-29 11:07:58', '2025-12-17 19:46:14', 'oAgrkRqm', '8550024'), + (14399, 48, 3305, 'attending', '2025-10-29 11:08:00', '2025-12-17 19:46:11', 'oAgrkRqm', '8550025'), + (14400, 48, 3306, 'attending', '2025-10-29 11:08:23', '2025-12-17 19:46:11', 'oAgrkRqm', '8550026'), + (14401, 48, 3307, 'attending', '2025-10-29 11:08:25', '2025-12-18 00:56:58', 'oAgrkRqm', '8550027'), + (14402, 48, 3308, 'attending', '2025-10-29 11:07:35', '2025-12-17 19:46:14', 'oAgrkRqm', '8550408'), + (14403, 48, 3309, 'attending', '2025-10-29 11:08:05', '2025-12-17 19:46:14', 'oAgrkRqm', '8550409'), + (14404, 48, 3310, 'attending', '2025-10-29 11:08:07', '2025-12-17 19:46:11', 'oAgrkRqm', '8550410'), + (14405, 48, 3311, 'attending', '2025-10-29 11:08:13', '2025-12-17 19:46:11', 'oAgrkRqm', '8550412'), + (14406, 48, 3312, 'attending', '2025-10-29 11:08:14', '2025-12-17 19:46:11', 'oAgrkRqm', '8550413'), + (14407, 48, 3318, 'not_attending', '2025-11-07 02:02:46', '2025-12-17 19:46:14', 'oAgrkRqm', '8553025'), + (14408, 48, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'oAgrkRqm', '8555421'), + (14409, 49, 2965, 'not_attending', '2025-01-18 22:12:13', '2025-12-17 19:46:22', '4ZE2DlrA', '7796541'), + (14410, 49, 2966, 'attending', '2025-01-25 12:45:25', '2025-12-17 19:46:22', '4ZE2DlrA', '7796542'), + (14411, 49, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4ZE2DlrA', '7825913'), + (14412, 49, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4ZE2DlrA', '7826209'), + (14413, 49, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4ZE2DlrA', '7834742'), + (14414, 49, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4ZE2DlrA', '7842108'), + (14415, 49, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4ZE2DlrA', '7842902'), + (14416, 49, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4ZE2DlrA', '7842903'), + (14417, 49, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4ZE2DlrA', '7842904'), + (14418, 49, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4ZE2DlrA', '7842905'), + (14419, 49, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4ZE2DlrA', '7855719'), + (14420, 49, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4ZE2DlrA', '7860683'), + (14421, 49, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4ZE2DlrA', '7860684'), + (14422, 49, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4ZE2DlrA', '7866095'), + (14423, 49, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4ZE2DlrA', '7869170'), + (14424, 49, 3015, 'not_attending', '2025-04-25 12:58:00', '2025-12-17 19:46:20', '4ZE2DlrA', '7869186'), + (14425, 49, 3016, 'attending', '2025-04-19 22:04:42', '2025-12-17 19:46:20', '4ZE2DlrA', '7869187'), + (14426, 49, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4ZE2DlrA', '7869188'), + (14427, 49, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4ZE2DlrA', '7869201'), + (14428, 49, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4ZE2DlrA', '7877465'), + (14429, 49, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:19', '4ZE2DlrA', '7878570'), + (14430, 49, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4ZE2DlrA', '7888250'), + (14431, 49, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4ZE2DlrA', '7904777'), + (14432, 49, 3094, 'attending', '2025-05-07 19:07:28', '2025-12-17 19:46:21', '4ZE2DlrA', '8342292'), + (14433, 49, 3095, 'not_attending', '2025-04-28 17:54:30', '2025-12-17 19:46:20', '4ZE2DlrA', '8342293'), + (14434, 49, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4ZE2DlrA', '8349164'), + (14435, 49, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4ZE2DlrA', '8349545'), + (14436, 49, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4ZE2DlrA', '8353584'), + (14437, 49, 3131, 'maybe', '2025-05-15 02:45:16', '2025-12-17 19:46:21', '4ZE2DlrA', '8368028'), + (14438, 49, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4ZE2DlrA', '8368029'), + (14439, 49, 3133, 'attending', '2025-05-29 11:43:29', '2025-12-17 19:46:14', '4ZE2DlrA', '8368030'), + (14440, 49, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4ZE2DlrA', '8388462'), + (14441, 49, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4ZE2DlrA', '8400273'), + (14442, 49, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4ZE2DlrA', '8400274'), + (14443, 49, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4ZE2DlrA', '8400275'), + (14444, 49, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4ZE2DlrA', '8400276'), + (14445, 49, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4ZE2DlrA', '8404977'), + (14446, 49, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '4ZE2DlrA', '8430783'), + (14447, 49, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4ZE2DlrA', '8430784'), + (14448, 49, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4ZE2DlrA', '8430799'), + (14449, 49, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4ZE2DlrA', '8430800'), + (14450, 49, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4ZE2DlrA', '8430801'), + (14451, 49, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4ZE2DlrA', '8438709'), + (14452, 49, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4ZE2DlrA', '8457738'), + (14453, 49, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4ZE2DlrA', '8459566'), + (14454, 49, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4ZE2DlrA', '8459567'), + (14455, 49, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4ZE2DlrA', '8461032'), + (14456, 49, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4ZE2DlrA', '8477877'), + (14457, 49, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4ZE2DlrA', '8485688'), + (14458, 49, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4ZE2DlrA', '8490587'), + (14459, 49, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4ZE2DlrA', '8493552'), + (14460, 49, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4ZE2DlrA', '8493553'), + (14461, 49, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4ZE2DlrA', '8493554'), + (14462, 49, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4ZE2DlrA', '8493555'), + (14463, 49, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4ZE2DlrA', '8493556'), + (14464, 49, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4ZE2DlrA', '8493557'), + (14465, 49, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4ZE2DlrA', '8493558'), + (14466, 49, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4ZE2DlrA', '8493559'), + (14467, 49, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4ZE2DlrA', '8493560'), + (14468, 49, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4ZE2DlrA', '8493561'), + (14469, 49, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4ZE2DlrA', '8493572'), + (14470, 49, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4ZE2DlrA', '8540725'), + (14471, 49, 3300, 'not_attending', '2025-11-08 15:53:39', '2025-12-17 19:46:14', '4ZE2DlrA', '8549145'), + (14472, 49, 3305, 'attending', '2025-12-04 01:20:13', '2025-12-17 19:46:11', '4ZE2DlrA', '8550025'), + (14473, 49, 3306, 'attending', '2025-12-11 20:39:59', '2025-12-17 19:46:11', '4ZE2DlrA', '8550026'), + (14474, 49, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4ZE2DlrA', '8555421'), + (14475, 49, 3346, 'maybe', '2025-12-30 00:47:05', '2025-12-30 00:47:05', NULL, NULL), + (14476, 50, 3015, 'attending', '2025-04-24 01:36:11', '2025-12-17 19:46:20', 'AnjQqeyA', '7869186'), + (14477, 50, 3016, 'attending', '2025-04-17 01:41:57', '2025-12-17 19:46:20', 'AnjQqeyA', '7869187'), + (14478, 50, 3075, 'attending', '2025-04-17 22:52:36', '2025-12-17 19:46:20', 'AnjQqeyA', '7898896'), + (14479, 50, 3087, 'attending', '2025-04-15 18:41:37', '2025-12-17 19:46:20', 'AnjQqeyA', '7903856'), + (14480, 50, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AnjQqeyA', '7904777'), + (14481, 50, 3091, 'maybe', '2025-04-17 22:56:46', '2025-12-17 19:46:20', 'AnjQqeyA', '8340289'), + (14482, 50, 3092, 'attending', '2025-04-17 22:56:33', '2025-12-17 19:46:20', 'AnjQqeyA', '8340351'), + (14483, 50, 3093, 'attending', '2025-04-23 00:05:07', '2025-12-17 19:46:20', 'AnjQqeyA', '8342248'), + (14484, 50, 3094, 'maybe', '2025-05-07 22:10:10', '2025-12-17 19:46:21', 'AnjQqeyA', '8342292'), + (14485, 50, 3095, 'attending', '2025-05-02 17:34:36', '2025-12-17 19:46:20', 'AnjQqeyA', '8342293'), + (14486, 50, 3096, 'attending', '2025-04-24 01:35:28', '2025-12-17 19:46:20', 'AnjQqeyA', '8342987'), + (14487, 50, 3101, 'attending', '2025-04-24 01:36:04', '2025-12-17 19:46:20', 'AnjQqeyA', '8345032'), + (14488, 50, 3102, 'attending', '2025-04-24 01:34:49', '2025-12-17 19:46:20', 'AnjQqeyA', '8346008'), + (14489, 50, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AnjQqeyA', '8349164'), + (14490, 50, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AnjQqeyA', '8349545'), + (14491, 50, 3106, 'not_attending', '2025-04-29 20:12:30', '2025-12-17 19:46:20', 'AnjQqeyA', '8349552'), + (14492, 50, 3109, 'attending', '2025-05-07 06:00:05', '2025-12-17 19:46:21', 'AnjQqeyA', '8352001'), + (14493, 50, 3110, 'attending', '2025-05-07 05:59:58', '2025-12-17 19:46:20', 'AnjQqeyA', '8353484'), + (14494, 50, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AnjQqeyA', '8353584'), + (14495, 50, 3113, 'attending', '2025-05-01 19:28:46', '2025-12-17 19:46:20', 'AnjQqeyA', '8355089'), + (14496, 50, 3119, 'attending', '2025-05-12 23:01:26', '2025-12-17 19:46:21', 'AnjQqeyA', '8360035'), + (14497, 50, 3120, 'not_attending', '2025-05-07 06:00:27', '2025-12-17 19:46:21', 'AnjQqeyA', '8360736'), + (14498, 50, 3121, 'not_attending', '2025-05-12 23:34:59', '2025-12-17 19:46:21', 'AnjQqeyA', '8362730'), + (14499, 50, 3122, 'attending', '2025-05-12 23:01:33', '2025-12-17 19:46:21', 'AnjQqeyA', '8362978'), + (14500, 50, 3124, 'attending', '2025-05-12 23:01:00', '2025-12-17 19:46:21', 'AnjQqeyA', '8363566'), + (14501, 50, 3130, 'attending', '2025-05-27 06:41:44', '2025-12-17 19:46:21', 'AnjQqeyA', '8367403'), + (14502, 50, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AnjQqeyA', '8368028'), + (14503, 50, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AnjQqeyA', '8368029'), + (14504, 50, 3133, 'attending', '2025-05-31 22:29:37', '2025-12-17 19:46:14', 'AnjQqeyA', '8368030'), + (14505, 50, 3138, 'attending', '2025-05-25 01:31:54', '2025-12-17 19:46:21', 'AnjQqeyA', '8376037'), + (14506, 50, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AnjQqeyA', '8388462'), + (14507, 50, 3150, 'attending', '2025-06-21 21:05:57', '2025-12-17 19:46:15', 'AnjQqeyA', '8393174'), + (14508, 50, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AnjQqeyA', '8400273'), + (14509, 50, 3154, 'attending', '2025-06-28 19:40:04', '2025-12-17 19:46:15', 'AnjQqeyA', '8400274'), + (14510, 50, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AnjQqeyA', '8400275'), + (14511, 50, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AnjQqeyA', '8400276'), + (14512, 50, 3160, 'maybe', '2025-06-12 20:13:03', '2025-12-17 19:46:15', 'AnjQqeyA', '8401411'), + (14513, 50, 3161, 'attending', '2025-06-08 02:05:45', '2025-12-17 19:46:15', 'AnjQqeyA', '8401412'), + (14514, 50, 3164, 'attending', '2025-06-08 02:06:16', '2025-12-17 19:46:15', 'AnjQqeyA', '8403121'), + (14515, 50, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AnjQqeyA', '8404977'), + (14516, 50, 3172, 'maybe', '2025-06-19 04:23:17', '2025-12-17 19:46:15', 'AnjQqeyA', '8410181'), + (14517, 50, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AnjQqeyA', '8430783'), + (14518, 50, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AnjQqeyA', '8430784'), + (14519, 50, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AnjQqeyA', '8430799'), + (14520, 50, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AnjQqeyA', '8430800'), + (14521, 50, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AnjQqeyA', '8430801'), + (14522, 50, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AnjQqeyA', '8438709'), + (14523, 50, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AnjQqeyA', '8457738'), + (14524, 50, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AnjQqeyA', '8459566'), + (14525, 50, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AnjQqeyA', '8459567'), + (14526, 50, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AnjQqeyA', '8461032'), + (14527, 50, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnjQqeyA', '8477877'), + (14528, 50, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnjQqeyA', '8485688'), + (14529, 50, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnjQqeyA', '8490587'), + (14530, 50, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnjQqeyA', '8493552'), + (14531, 50, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnjQqeyA', '8493553'), + (14532, 50, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnjQqeyA', '8493554'), + (14533, 50, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnjQqeyA', '8493555'), + (14534, 50, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnjQqeyA', '8493556'), + (14535, 50, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnjQqeyA', '8493557'), + (14536, 50, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnjQqeyA', '8493558'), + (14537, 50, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnjQqeyA', '8493559'), + (14538, 50, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnjQqeyA', '8493560'), + (14539, 50, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnjQqeyA', '8493561'), + (14540, 50, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnjQqeyA', '8493572'), + (14541, 50, 3279, 'attending', '2025-10-02 19:03:38', '2025-12-17 19:46:13', 'AnjQqeyA', '8535685'), + (14542, 50, 3280, 'attending', '2025-10-09 17:59:41', '2025-12-17 19:46:13', 'AnjQqeyA', '8535686'), + (14543, 50, 3282, 'attending', '2025-10-06 21:29:17', '2025-12-17 19:46:13', 'AnjQqeyA', '8537571'), + (14544, 50, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnjQqeyA', '8540725'), + (14545, 50, 3285, 'not_attending', '2025-10-08 18:56:32', '2025-12-17 19:46:13', 'AnjQqeyA', '8540726'), + (14546, 50, 3291, 'attending', '2025-10-16 18:20:07', '2025-12-17 19:46:14', 'AnjQqeyA', '8543782'), + (14547, 50, 3300, 'attending', '2025-11-07 17:07:11', '2025-12-17 19:46:14', 'AnjQqeyA', '8549145'), + (14548, 50, 3302, 'attending', '2025-11-14 04:39:04', '2025-12-17 19:46:14', 'AnjQqeyA', '8550022'), + (14549, 50, 3304, 'attending', '2025-11-21 21:21:51', '2025-12-17 19:46:14', 'AnjQqeyA', '8550024'), + (14550, 50, 3305, 'attending', '2025-12-07 00:47:00', '2025-12-17 19:46:11', 'AnjQqeyA', '8550025'), + (14551, 50, 3307, 'maybe', '2025-12-16 01:43:16', '2025-12-17 19:46:11', 'AnjQqeyA', '8550027'), + (14552, 50, 3319, 'attending', '2025-11-14 00:08:26', '2025-12-17 19:46:14', 'AnjQqeyA', '8553114'), + (14553, 50, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnjQqeyA', '8555421'), + (14554, 50, 3334, 'attending', '2025-12-08 21:43:20', '2025-12-17 19:46:11', 'AnjQqeyA', '8563246'), + (14555, 50, 3335, 'attending', '2025-12-12 01:10:14', '2025-12-17 19:46:11', 'AnjQqeyA', '8563247'), + (14556, 50, 3346, 'attending', '2025-12-30 00:26:43', '2025-12-30 00:26:43', NULL, NULL), + (14557, 51, 2492, 'attending', '2024-03-13 22:22:57', '2025-12-17 19:46:32', '1ArLNqYd', '7050322'), + (14558, 51, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '1ArLNqYd', '7072824'), + (14559, 51, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '1ArLNqYd', '7074364'), + (14560, 51, 2536, 'attending', '2024-03-17 02:21:47', '2025-12-17 19:46:33', '1ArLNqYd', '7077689'), + (14561, 51, 2537, 'not_attending', '2024-03-23 21:32:46', '2025-12-17 19:46:33', '1ArLNqYd', '7085484'), + (14562, 51, 2539, 'maybe', '2024-04-06 16:12:48', '2025-12-17 19:46:33', '1ArLNqYd', '7085486'), + (14563, 51, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '1ArLNqYd', '7089267'), + (14564, 51, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '1ArLNqYd', '7098747'), + (14565, 51, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '1ArLNqYd', '7113468'), + (14566, 51, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '1ArLNqYd', '7114856'), + (14567, 51, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '1ArLNqYd', '7114951'), + (14568, 51, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '1ArLNqYd', '7114955'), + (14569, 51, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '1ArLNqYd', '7114956'), + (14570, 51, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '1ArLNqYd', '7114957'), + (14571, 51, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '1ArLNqYd', '7153615'), + (14572, 51, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '1ArLNqYd', '7159484'), + (14573, 51, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '1ArLNqYd', '7178446'), + (14574, 51, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '1ArLNqYd', '7220467'), + (14575, 51, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '1ArLNqYd', '7240354'), + (14576, 51, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '1ArLNqYd', '7251633'), + (14577, 51, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '1ArLNqYd', '7263048'), + (14578, 51, 2627, 'not_attending', '2024-05-25 20:51:43', '2025-12-17 19:46:35', '1ArLNqYd', '7264724'), + (14579, 51, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '1ArLNqYd', '7302674'), + (14580, 51, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '1ArLNqYd', '7324073'), + (14581, 51, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '1ArLNqYd', '7324074'), + (14582, 51, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '1ArLNqYd', '7324075'), + (14583, 51, 2691, 'attending', '2024-07-20 13:26:49', '2025-12-17 19:46:30', '1ArLNqYd', '7324076'), + (14584, 51, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '1ArLNqYd', '7324078'), + (14585, 51, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '1ArLNqYd', '7324082'), + (14586, 51, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '1ArLNqYd', '7331457'), + (14587, 51, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '1ArLNqYd', '7356752'), + (14588, 51, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '1ArLNqYd', '7363643'), + (14589, 51, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '1ArLNqYd', '7368606'), + (14590, 51, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '1ArLNqYd', '7397462'), + (14591, 51, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '1ArLNqYd', '7424275'), + (14592, 51, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '1ArLNqYd', '7424276'), + (14593, 51, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '1ArLNqYd', '7432751'), + (14594, 51, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '1ArLNqYd', '7432752'), + (14595, 51, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '1ArLNqYd', '7432753'), + (14596, 51, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '1ArLNqYd', '7432754'), + (14597, 51, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '1ArLNqYd', '7432755'), + (14598, 51, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '1ArLNqYd', '7432756'), + (14599, 51, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '1ArLNqYd', '7432758'), + (14600, 51, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '1ArLNqYd', '7432759'), + (14601, 51, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '1ArLNqYd', '7433834'), + (14602, 51, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '1ArLNqYd', '7470197'), + (14603, 51, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '1ArLNqYd', '7685613'), + (14604, 51, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '1ArLNqYd', '7688194'), + (14605, 51, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '1ArLNqYd', '7688196'), + (14606, 51, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '1ArLNqYd', '7688289'), + (14607, 51, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '1ArLNqYd', '7692763'), + (14608, 51, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '1ArLNqYd', '7697552'), + (14609, 51, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '1ArLNqYd', '7699878'), + (14610, 51, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '1ArLNqYd', '7704043'), + (14611, 51, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1ArLNqYd', '7712467'), + (14612, 51, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1ArLNqYd', '7713585'), + (14613, 51, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1ArLNqYd', '7713586'), + (14614, 51, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '1ArLNqYd', '7738518'), + (14615, 51, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '1ArLNqYd', '7750632'), + (14616, 51, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1ArLNqYd', '7750636'), + (14617, 51, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1ArLNqYd', '7796540'), + (14618, 51, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1ArLNqYd', '7796541'), + (14619, 51, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1ArLNqYd', '7796542'), + (14620, 51, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1ArLNqYd', '7825913'), + (14621, 51, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1ArLNqYd', '7826209'), + (14622, 51, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1ArLNqYd', '7834742'), + (14623, 51, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1ArLNqYd', '7842108'), + (14624, 51, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1ArLNqYd', '7842902'), + (14625, 51, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1ArLNqYd', '7842903'), + (14626, 51, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1ArLNqYd', '7842904'), + (14627, 51, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1ArLNqYd', '7842905'), + (14628, 51, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1ArLNqYd', '7855719'), + (14629, 51, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1ArLNqYd', '7860683'), + (14630, 51, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1ArLNqYd', '7860684'), + (14631, 51, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1ArLNqYd', '7866095'), + (14632, 51, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1ArLNqYd', '7869170'), + (14633, 51, 3014, 'attending', '2025-04-04 15:48:59', '2025-12-17 19:46:19', '1ArLNqYd', '7869185'), + (14634, 51, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArLNqYd', '7869188'), + (14635, 51, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1ArLNqYd', '7869201'), + (14636, 51, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1ArLNqYd', '7877465'), + (14637, 51, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '1ArLNqYd', '7878570'), + (14638, 51, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1ArLNqYd', '7888250'), + (14639, 51, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1ArLNqYd', '7904777'), + (14640, 51, 3094, 'attending', '2025-05-10 22:28:18', '2025-12-17 19:46:21', '1ArLNqYd', '8342292'), + (14641, 51, 3095, 'attending', '2025-05-03 21:15:03', '2025-12-17 19:46:20', '1ArLNqYd', '8342293'), + (14642, 51, 3104, 'attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArLNqYd', '8349164'), + (14643, 51, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArLNqYd', '8349545'), + (14644, 51, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '1ArLNqYd', '8353584'), + (14645, 51, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1ArLNqYd', '8368028'), + (14646, 51, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1ArLNqYd', '8368029'), + (14647, 51, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1ArLNqYd', '8388462'), + (14648, 51, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1ArLNqYd', '8400273'), + (14649, 51, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '1ArLNqYd', '8400274'), + (14650, 51, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1ArLNqYd', '8400275'), + (14651, 51, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '1ArLNqYd', '8400276'), + (14652, 51, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1ArLNqYd', '8404977'), + (14653, 51, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1ArLNqYd', '8430783'), + (14654, 51, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1ArLNqYd', '8430784'), + (14655, 51, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1ArLNqYd', '8430799'), + (14656, 51, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1ArLNqYd', '8430800'), + (14657, 51, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1ArLNqYd', '8430801'), + (14658, 51, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1ArLNqYd', '8438709'), + (14659, 51, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1ArLNqYd', '8457738'), + (14660, 51, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1ArLNqYd', '8459566'), + (14661, 51, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1ArLNqYd', '8459567'), + (14662, 51, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1ArLNqYd', '8461032'), + (14663, 51, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1ArLNqYd', '8477877'), + (14664, 51, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1ArLNqYd', '8485688'), + (14665, 51, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '1ArLNqYd', '8490587'), + (14666, 51, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '1ArLNqYd', '8493552'), + (14667, 51, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '1ArLNqYd', '8493553'), + (14668, 51, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '1ArLNqYd', '8493554'), + (14669, 51, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '1ArLNqYd', '8493555'), + (14670, 51, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '1ArLNqYd', '8493556'), + (14671, 51, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '1ArLNqYd', '8493557'), + (14672, 51, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '1ArLNqYd', '8493558'), + (14673, 51, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '1ArLNqYd', '8493559'), + (14674, 51, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '1ArLNqYd', '8493560'), + (14675, 51, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '1ArLNqYd', '8493561'), + (14676, 51, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '1ArLNqYd', '8493572'), + (14677, 51, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '1ArLNqYd', '8540725'), + (14678, 51, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '1ArLNqYd', '8555421'), + (14679, 52, 3306, 'maybe', '2025-12-09 00:28:05', '2025-12-17 19:46:11', 'mpL0jgQm', '8550026'), + (14680, 52, 3339, 'attending', '2025-12-07 05:26:10', '2025-12-17 19:46:11', 'mpL0jgQm', '8563326'), + (14681, 52, 3346, 'attending', '2025-12-31 18:58:34', '2025-12-31 18:58:34', NULL, NULL), + (14682, 53, 1207, 'not_attending', '2022-05-05 22:24:41', '2025-12-17 19:47:28', 'dzkzQzym', '4773579'), + (14683, 53, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dzkzQzym', '5195095'), + (14684, 53, 1314, 'attending', '2022-04-10 23:33:59', '2025-12-17 19:47:27', 'dzkzQzym', '5233137'), + (14685, 53, 1319, 'attending', '2022-04-11 14:29:10', '2025-12-17 19:47:27', 'dzkzQzym', '5238353'), + (14686, 53, 1320, 'attending', '2022-04-11 14:29:21', '2025-12-17 19:47:27', 'dzkzQzym', '5238354'), + (14687, 53, 1324, 'attending', '2022-04-14 21:12:40', '2025-12-17 19:47:27', 'dzkzQzym', '5238360'), + (14688, 53, 1330, 'attending', '2022-04-13 00:45:48', '2025-12-17 19:47:27', 'dzkzQzym', '5242155'), + (14689, 53, 1336, 'attending', '2022-04-15 21:01:07', '2025-12-17 19:47:27', 'dzkzQzym', '5244915'), + (14690, 53, 1337, 'maybe', '2022-04-20 22:18:57', '2025-12-17 19:47:27', 'dzkzQzym', '5245036'), + (14691, 53, 1346, 'maybe', '2022-04-19 23:40:30', '2025-12-17 19:47:27', 'dzkzQzym', '5247467'), + (14692, 53, 1359, 'not_attending', '2022-05-01 21:13:58', '2025-12-17 19:47:28', 'dzkzQzym', '5258360'), + (14693, 53, 1360, 'maybe', '2022-04-26 12:18:54', '2025-12-17 19:47:27', 'dzkzQzym', '5260197'), + (14694, 53, 1362, 'not_attending', '2022-04-26 02:23:33', '2025-12-17 19:47:28', 'dzkzQzym', '5260800'), + (14695, 53, 1364, 'attending', '2022-04-26 12:21:01', '2025-12-17 19:47:28', 'dzkzQzym', '5261598'), + (14696, 53, 1368, 'not_attending', '2022-05-06 20:36:10', '2025-12-17 19:47:28', 'dzkzQzym', '5262783'), + (14697, 53, 1369, 'not_attending', '2022-05-10 23:49:46', '2025-12-17 19:47:28', 'dzkzQzym', '5262809'), + (14698, 53, 1371, 'maybe', '2022-04-27 20:31:40', '2025-12-17 19:47:27', 'dzkzQzym', '5263784'), + (14699, 53, 1374, 'attending', '2022-04-30 21:01:25', '2025-12-17 19:47:28', 'dzkzQzym', '5269930'), + (14700, 53, 1375, 'attending', '2022-05-05 21:47:57', '2025-12-17 19:47:28', 'dzkzQzym', '5269932'), + (14701, 53, 1376, 'not_attending', '2022-05-05 22:25:28', '2025-12-17 19:47:28', 'dzkzQzym', '5271446'), + (14702, 53, 1377, 'not_attending', '2022-05-05 22:25:35', '2025-12-17 19:47:28', 'dzkzQzym', '5271447'), + (14703, 53, 1378, 'not_attending', '2022-05-05 22:23:25', '2025-12-17 19:47:29', 'dzkzQzym', '5271448'), + (14704, 53, 1379, 'attending', '2022-05-02 17:39:17', '2025-12-17 19:47:29', 'dzkzQzym', '5271449'), + (14705, 53, 1380, 'attending', '2022-05-28 20:17:54', '2025-12-17 19:47:30', 'dzkzQzym', '5271450'), + (14706, 53, 1381, 'not_attending', '2022-05-05 22:24:35', '2025-12-17 19:47:28', 'dzkzQzym', '5271453'), + (14707, 53, 1382, 'not_attending', '2022-05-05 22:24:59', '2025-12-17 19:47:28', 'dzkzQzym', '5276350'), + (14708, 53, 1383, 'not_attending', '2022-05-05 22:25:41', '2025-12-17 19:47:28', 'dzkzQzym', '5276469'), + (14709, 53, 1384, 'maybe', '2022-05-04 20:07:02', '2025-12-17 19:47:28', 'dzkzQzym', '5277078'), + (14710, 53, 1385, 'not_attending', '2022-05-05 22:23:44', '2025-12-17 19:47:28', 'dzkzQzym', '5277822'), + (14711, 53, 1386, 'not_attending', '2022-05-06 20:35:41', '2025-12-17 19:47:28', 'dzkzQzym', '5278159'), + (14712, 53, 1387, 'not_attending', '2022-05-05 22:25:15', '2025-12-17 19:47:28', 'dzkzQzym', '5278173'), + (14713, 53, 1388, 'not_attending', '2022-05-05 22:23:59', '2025-12-17 19:47:28', 'dzkzQzym', '5278201'), + (14714, 53, 1389, 'not_attending', '2022-05-05 22:24:46', '2025-12-17 19:47:28', 'dzkzQzym', '5278202'), + (14715, 53, 1393, 'not_attending', '2022-05-21 02:44:24', '2025-12-17 19:47:30', 'dzkzQzym', '5280603'), + (14716, 53, 1394, 'not_attending', '2022-05-16 04:07:30', '2025-12-17 19:47:30', 'dzkzQzym', '5280667'), + (14717, 53, 1401, 'not_attending', '2022-05-18 20:46:50', '2025-12-17 19:47:29', 'dzkzQzym', '5286295'), + (14718, 53, 1402, 'not_attending', '2022-05-17 20:05:13', '2025-12-17 19:47:30', 'dzkzQzym', '5287977'), + (14719, 53, 1403, 'not_attending', '2022-05-20 21:51:18', '2025-12-17 19:47:29', 'dzkzQzym', '5288052'), + (14720, 53, 1404, 'attending', '2022-05-15 19:47:09', '2025-12-17 19:47:29', 'dzkzQzym', '5288114'), + (14721, 53, 1405, 'maybe', '2022-05-19 22:57:29', '2025-12-17 19:47:29', 'dzkzQzym', '5288115'), + (14722, 53, 1407, 'attending', '2022-06-02 19:35:18', '2025-12-17 19:47:30', 'dzkzQzym', '5363695'), + (14723, 53, 1408, 'not_attending', '2022-05-20 21:51:15', '2025-12-17 19:47:29', 'dzkzQzym', '5365960'), + (14724, 53, 1409, 'maybe', '2022-05-22 15:55:11', '2025-12-17 19:47:30', 'dzkzQzym', '5367032'), + (14725, 53, 1414, 'attending', '2022-05-18 10:13:32', '2025-12-17 19:47:29', 'dzkzQzym', '5368445'), + (14726, 53, 1415, 'not_attending', '2022-05-19 21:47:21', '2025-12-17 19:47:30', 'dzkzQzym', '5368973'), + (14727, 53, 1416, 'attending', '2022-05-28 21:07:42', '2025-12-17 19:47:30', 'dzkzQzym', '5369628'), + (14728, 53, 1417, 'not_attending', '2022-05-24 00:10:38', '2025-12-17 19:47:30', 'dzkzQzym', '5370465'), + (14729, 53, 1418, 'not_attending', '2022-05-22 02:50:51', '2025-12-17 19:47:30', 'dzkzQzym', '5372162'), + (14730, 53, 1419, 'not_attending', '2022-05-31 19:15:40', '2025-12-17 19:47:30', 'dzkzQzym', '5373081'), + (14731, 53, 1420, 'attending', '2022-05-27 09:10:15', '2025-12-17 19:47:30', 'dzkzQzym', '5374882'), + (14732, 53, 1421, 'attending', '2022-05-23 01:35:19', '2025-12-17 19:47:30', 'dzkzQzym', '5374885'), + (14733, 53, 1422, 'not_attending', '2022-05-23 20:53:26', '2025-12-17 19:47:30', 'dzkzQzym', '5375603'), + (14734, 53, 1423, 'not_attending', '2022-05-31 19:15:55', '2025-12-17 19:47:17', 'dzkzQzym', '5375727'), + (14735, 53, 1424, 'attending', '2022-05-26 19:22:48', '2025-12-17 19:47:30', 'dzkzQzym', '5375772'), + (14736, 53, 1425, 'attending', '2022-05-26 19:22:35', '2025-12-17 19:47:30', 'dzkzQzym', '5375861'), + (14737, 53, 1427, 'attending', '2022-05-25 21:47:01', '2025-12-17 19:47:30', 'dzkzQzym', '5376074'), + (14738, 53, 1428, 'not_attending', '2022-06-01 10:33:22', '2025-12-17 19:47:30', 'dzkzQzym', '5378247'), + (14739, 53, 1429, 'attending', '2022-05-29 04:45:11', '2025-12-17 19:47:30', 'dzkzQzym', '5388761'), + (14740, 53, 1430, 'not_attending', '2022-06-01 10:33:29', '2025-12-17 19:47:30', 'dzkzQzym', '5389402'), + (14741, 53, 1431, 'not_attending', '2022-05-31 19:15:31', '2025-12-17 19:47:30', 'dzkzQzym', '5389605'), + (14742, 53, 1432, 'not_attending', '2022-06-01 10:33:10', '2025-12-17 19:47:30', 'dzkzQzym', '5391566'), + (14743, 53, 1434, 'not_attending', '2022-06-01 10:32:35', '2025-12-17 19:47:30', 'dzkzQzym', '5393861'), + (14744, 53, 1435, 'not_attending', '2022-06-01 10:32:44', '2025-12-17 19:47:30', 'dzkzQzym', '5394015'), + (14745, 53, 1436, 'not_attending', '2022-06-01 10:32:51', '2025-12-17 19:47:30', 'dzkzQzym', '5394292'), + (14746, 53, 1437, 'not_attending', '2022-06-01 10:33:03', '2025-12-17 19:47:30', 'dzkzQzym', '5394493'), + (14747, 53, 1439, 'not_attending', '2022-06-01 20:02:38', '2025-12-17 19:47:30', 'dzkzQzym', '5396072'), + (14748, 53, 1440, 'not_attending', '2022-06-07 19:35:05', '2025-12-17 19:47:30', 'dzkzQzym', '5396080'), + (14749, 53, 1442, 'attending', '2022-06-03 08:35:58', '2025-12-17 19:47:17', 'dzkzQzym', '5397265'), + (14750, 53, 1446, 'not_attending', '2022-06-05 06:47:41', '2025-12-17 19:47:30', 'dzkzQzym', '5399721'), + (14751, 53, 1447, 'not_attending', '2022-06-07 19:35:15', '2025-12-17 19:47:30', 'dzkzQzym', '5401089'), + (14752, 53, 1449, 'not_attending', '2022-06-13 04:03:47', '2025-12-17 19:47:31', 'dzkzQzym', '5403335'), + (14753, 53, 1451, 'maybe', '2022-06-17 09:43:48', '2025-12-17 19:47:17', 'dzkzQzym', '5403967'), + (14754, 53, 1454, 'not_attending', '2022-06-12 09:08:01', '2025-12-17 19:47:31', 'dzkzQzym', '5404771'), + (14755, 53, 1455, 'maybe', '2022-06-10 10:09:33', '2025-12-17 19:47:31', 'dzkzQzym', '5404772'), + (14756, 53, 1457, 'not_attending', '2022-06-12 09:07:53', '2025-12-17 19:47:31', 'dzkzQzym', '5404780'), + (14757, 53, 1458, 'maybe', '2022-06-10 10:05:12', '2025-12-17 19:47:17', 'dzkzQzym', '5404786'), + (14758, 53, 1461, 'not_attending', '2022-06-13 04:04:10', '2025-12-17 19:47:31', 'dzkzQzym', '5405149'), + (14759, 53, 1462, 'not_attending', '2022-06-10 19:18:27', '2025-12-17 19:47:17', 'dzkzQzym', '5405203'), + (14760, 53, 1463, 'not_attending', '2022-06-13 04:03:57', '2025-12-17 19:47:31', 'dzkzQzym', '5405208'), + (14761, 53, 1465, 'not_attending', '2022-06-12 09:07:46', '2025-12-17 19:47:31', 'dzkzQzym', '5406355'), + (14762, 53, 1469, 'not_attending', '2022-06-17 10:16:36', '2025-12-17 19:47:17', 'dzkzQzym', '5406838'), + (14763, 53, 1470, 'attending', '2022-06-13 04:07:30', '2025-12-17 19:47:17', 'dzkzQzym', '5407053'), + (14764, 53, 1471, 'not_attending', '2022-06-18 22:24:10', '2025-12-17 19:47:17', 'dzkzQzym', '5407063'), + (14765, 53, 1472, 'not_attending', '2022-06-21 19:50:40', '2025-12-17 19:47:17', 'dzkzQzym', '5407065'), + (14766, 53, 1473, 'not_attending', '2022-06-13 04:03:37', '2025-12-17 19:47:31', 'dzkzQzym', '5407267'), + (14767, 53, 1474, 'not_attending', '2022-06-15 01:50:24', '2025-12-17 19:47:19', 'dzkzQzym', '5408029'), + (14768, 53, 1475, 'not_attending', '2022-06-16 22:31:12', '2025-12-17 19:47:17', 'dzkzQzym', '5408108'), + (14769, 53, 1476, 'not_attending', '2022-06-17 10:16:44', '2025-12-17 19:47:17', 'dzkzQzym', '5408130'), + (14770, 53, 1478, 'not_attending', '2022-06-15 01:50:14', '2025-12-17 19:47:19', 'dzkzQzym', '5408794'), + (14771, 53, 1479, 'attending', '2022-06-17 09:43:58', '2025-12-17 19:47:17', 'dzkzQzym', '5410322'), + (14772, 53, 1480, 'not_attending', '2022-06-21 19:50:51', '2025-12-17 19:47:19', 'dzkzQzym', '5411699'), + (14773, 53, 1481, 'not_attending', '2022-06-21 09:53:55', '2025-12-17 19:47:17', 'dzkzQzym', '5412237'), + (14774, 53, 1482, 'not_attending', '2022-06-20 08:19:43', '2025-12-17 19:47:19', 'dzkzQzym', '5412550'), + (14775, 53, 1483, 'not_attending', '2022-06-20 08:19:56', '2025-12-17 19:47:17', 'dzkzQzym', '5414556'), + (14776, 53, 1484, 'not_attending', '2022-06-21 09:52:50', '2025-12-17 19:47:17', 'dzkzQzym', '5415046'), + (14777, 53, 1485, 'not_attending', '2022-06-21 19:50:29', '2025-12-17 19:47:17', 'dzkzQzym', '5416276'), + (14778, 53, 1486, 'not_attending', '2022-06-22 03:25:38', '2025-12-17 19:47:19', 'dzkzQzym', '5416339'), + (14779, 53, 1487, 'not_attending', '2022-06-25 20:44:04', '2025-12-17 19:47:19', 'dzkzQzym', '5419006'), + (14780, 53, 1488, 'attending', '2022-06-25 20:44:22', '2025-12-17 19:47:19', 'dzkzQzym', '5420154'), + (14781, 53, 1489, 'not_attending', '2022-06-25 20:44:46', '2025-12-17 19:47:19', 'dzkzQzym', '5420155'), + (14782, 53, 1490, 'not_attending', '2022-06-25 20:44:56', '2025-12-17 19:47:19', 'dzkzQzym', '5420156'), + (14783, 53, 1491, 'not_attending', '2022-06-25 20:45:10', '2025-12-17 19:47:19', 'dzkzQzym', '5420158'), + (14784, 53, 1492, 'not_attending', '2022-06-25 20:45:03', '2025-12-17 19:47:19', 'dzkzQzym', '5420175'), + (14785, 53, 1495, 'not_attending', '2022-06-26 08:46:15', '2025-12-17 19:47:19', 'dzkzQzym', '5422086'), + (14786, 53, 1496, 'not_attending', '2022-06-26 20:38:57', '2025-12-17 19:47:19', 'dzkzQzym', '5422404'), + (14787, 53, 1497, 'not_attending', '2022-06-26 20:39:07', '2025-12-17 19:47:19', 'dzkzQzym', '5422405'), + (14788, 53, 1498, 'attending', '2022-06-26 20:38:29', '2025-12-17 19:47:19', 'dzkzQzym', '5422406'), + (14789, 53, 1500, 'not_attending', '2022-06-28 02:33:13', '2025-12-17 19:47:19', 'dzkzQzym', '5423915'), + (14790, 53, 1501, 'not_attending', '2022-06-28 17:28:10', '2025-12-17 19:47:19', 'dzkzQzym', '5424546'), + (14791, 53, 1502, 'not_attending', '2022-06-28 17:29:51', '2025-12-17 19:47:19', 'dzkzQzym', '5424565'), + (14792, 53, 1503, 'attending', '2022-07-02 19:16:12', '2025-12-17 19:47:19', 'dzkzQzym', '5426820'), + (14793, 53, 1504, 'not_attending', '2022-06-30 20:55:36', '2025-12-17 19:47:19', 'dzkzQzym', '5426882'), + (14794, 53, 1505, 'not_attending', '2022-06-30 20:55:12', '2025-12-17 19:47:19', 'dzkzQzym', '5427083'), + (14795, 53, 1506, 'maybe', '2022-07-02 19:08:09', '2025-12-17 19:47:19', 'dzkzQzym', '5429935'), + (14796, 53, 1509, 'not_attending', '2022-07-06 12:18:50', '2025-12-17 19:47:19', 'dzkzQzym', '5434019'), + (14797, 53, 1511, 'not_attending', '2022-07-09 20:32:24', '2025-12-17 19:47:19', 'dzkzQzym', '5437733'), + (14798, 53, 1513, 'attending', '2022-07-09 08:55:56', '2025-12-17 19:47:19', 'dzkzQzym', '5441125'), + (14799, 53, 1514, 'not_attending', '2022-07-09 08:56:06', '2025-12-17 19:47:20', 'dzkzQzym', '5441126'), + (14800, 53, 1515, 'not_attending', '2022-07-09 08:56:31', '2025-12-17 19:47:21', 'dzkzQzym', '5441128'), + (14801, 53, 1516, 'not_attending', '2022-07-09 11:30:09', '2025-12-17 19:47:23', 'dzkzQzym', '5441129'), + (14802, 53, 1517, 'attending', '2022-07-09 11:30:26', '2025-12-17 19:47:23', 'dzkzQzym', '5441130'), + (14803, 53, 1518, 'not_attending', '2022-07-09 11:30:54', '2025-12-17 19:47:24', 'dzkzQzym', '5441131'), + (14804, 53, 1519, 'attending', '2022-07-09 11:31:13', '2025-12-17 19:47:24', 'dzkzQzym', '5441132'), + (14805, 53, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dzkzQzym', '5446643'), + (14806, 53, 1537, 'maybe', '2022-07-18 21:27:29', '2025-12-17 19:47:20', 'dzkzQzym', '5449117'), + (14807, 53, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dzkzQzym', '5453325'), + (14808, 53, 1541, 'not_attending', '2022-07-21 10:52:35', '2025-12-17 19:47:20', 'dzkzQzym', '5453542'), + (14809, 53, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dzkzQzym', '5454516'), + (14810, 53, 1544, 'not_attending', '2022-08-14 13:03:09', '2025-12-17 19:47:11', 'dzkzQzym', '5454517'), + (14811, 53, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dzkzQzym', '5454605'), + (14812, 53, 1546, 'not_attending', '2022-07-21 10:52:51', '2025-12-17 19:47:20', 'dzkzQzym', '5454607'), + (14813, 53, 1547, 'maybe', '2022-07-20 05:17:20', '2025-12-17 19:47:20', 'dzkzQzym', '5454608'), + (14814, 53, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dzkzQzym', '5455037'), + (14815, 53, 1560, 'not_attending', '2022-08-07 19:52:35', '2025-12-17 19:47:23', 'dzkzQzym', '5458768'), + (14816, 53, 1561, 'attending', '2022-07-26 18:27:35', '2025-12-17 19:47:22', 'dzkzQzym', '5461278'), + (14817, 53, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dzkzQzym', '5469480'), + (14818, 53, 1565, 'maybe', '2022-07-25 23:03:39', '2025-12-17 19:47:21', 'dzkzQzym', '5471073'), + (14819, 53, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dzkzQzym', '5474663'), + (14820, 53, 1569, 'not_attending', '2022-08-02 23:35:43', '2025-12-17 19:47:21', 'dzkzQzym', '5481507'), + (14821, 53, 1570, 'not_attending', '2022-08-02 23:35:22', '2025-12-17 19:47:21', 'dzkzQzym', '5481830'), + (14822, 53, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dzkzQzym', '5482022'), + (14823, 53, 1572, 'not_attending', '2022-08-02 23:35:57', '2025-12-17 19:47:22', 'dzkzQzym', '5482078'), + (14824, 53, 1573, 'not_attending', '2022-08-01 20:22:29', '2025-12-17 19:47:22', 'dzkzQzym', '5482152'), + (14825, 53, 1574, 'attending', '2022-08-01 20:22:40', '2025-12-17 19:47:22', 'dzkzQzym', '5482153'), + (14826, 53, 1575, 'not_attending', '2022-08-07 19:52:43', '2025-12-17 19:47:23', 'dzkzQzym', '5482250'), + (14827, 53, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dzkzQzym', '5482793'), + (14828, 53, 1578, 'not_attending', '2022-08-02 23:35:12', '2025-12-17 19:47:21', 'dzkzQzym', '5483073'), + (14829, 53, 1579, 'not_attending', '2022-08-04 11:26:08', '2025-12-17 19:47:22', 'dzkzQzym', '5486019'), + (14830, 53, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dzkzQzym', '5488912'), + (14831, 53, 1581, 'attending', '2022-08-07 19:51:42', '2025-12-17 19:47:22', 'dzkzQzym', '5490302'), + (14832, 53, 1582, 'not_attending', '2022-08-16 22:24:39', '2025-12-17 19:47:23', 'dzkzQzym', '5492001'), + (14833, 53, 1583, 'not_attending', '2022-08-08 12:04:13', '2025-12-17 19:47:22', 'dzkzQzym', '5492002'), + (14834, 53, 1584, 'maybe', '2022-08-18 10:04:49', '2025-12-17 19:47:23', 'dzkzQzym', '5492004'), + (14835, 53, 1586, 'not_attending', '2022-08-17 08:26:05', '2025-12-17 19:47:23', 'dzkzQzym', '5492019'), + (14836, 53, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dzkzQzym', '5492192'), + (14837, 53, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dzkzQzym', '5493139'), + (14838, 53, 1589, 'not_attending', '2022-08-17 08:26:18', '2025-12-17 19:47:23', 'dzkzQzym', '5493159'), + (14839, 53, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dzkzQzym', '5493200'), + (14840, 53, 1591, 'attending', '2022-08-10 17:33:44', '2025-12-17 19:47:22', 'dzkzQzym', '5493764'), + (14841, 53, 1593, 'maybe', '2022-08-10 17:33:23', '2025-12-17 19:47:22', 'dzkzQzym', '5494043'), + (14842, 53, 1595, 'maybe', '2022-08-10 14:27:52', '2025-12-17 19:47:22', 'dzkzQzym', '5495736'), + (14843, 53, 1599, 'maybe', '2022-08-14 13:01:48', '2025-12-17 19:47:23', 'dzkzQzym', '5496568'), + (14844, 53, 1601, 'not_attending', '2022-08-14 21:52:18', '2025-12-17 19:47:22', 'dzkzQzym', '5496589'), + (14845, 53, 1602, 'maybe', '2022-08-13 02:09:45', '2025-12-17 19:47:22', 'dzkzQzym', '5497383'), + (14846, 53, 1603, 'not_attending', '2022-08-17 08:25:48', '2025-12-17 19:47:23', 'dzkzQzym', '5497895'), + (14847, 53, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dzkzQzym', '5502188'), + (14848, 53, 1606, 'maybe', '2022-08-18 10:02:06', '2025-12-17 19:47:23', 'dzkzQzym', '5504585'), + (14849, 53, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dzkzQzym', '5505059'), + (14850, 53, 1611, 'attending', '2022-08-18 09:58:48', '2025-12-17 19:47:24', 'dzkzQzym', '5507652'), + (14851, 53, 1612, 'attending', '2022-08-18 10:03:56', '2025-12-17 19:47:12', 'dzkzQzym', '5507653'), + (14852, 53, 1613, 'attending', '2022-08-18 10:04:03', '2025-12-17 19:47:14', 'dzkzQzym', '5507654'), + (14853, 53, 1614, 'maybe', '2022-08-19 10:51:35', '2025-12-17 19:47:23', 'dzkzQzym', '5508371'), + (14854, 53, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dzkzQzym', '5509055'), + (14855, 53, 1618, 'not_attending', '2022-08-23 22:12:44', '2025-12-17 19:47:23', 'dzkzQzym', '5512005'), + (14856, 53, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dzkzQzym', '5512862'), + (14857, 53, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dzkzQzym', '5513985'), + (14858, 53, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dzkzQzym', '5519981'), + (14859, 53, 1627, 'not_attending', '2022-08-31 20:40:29', '2025-12-17 19:47:24', 'dzkzQzym', '5521552'), + (14860, 53, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dzkzQzym', '5522550'), + (14861, 53, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dzkzQzym', '5534683'), + (14862, 53, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dzkzQzym', '5537735'), + (14863, 53, 1636, 'not_attending', '2022-08-31 20:41:06', '2025-12-17 19:47:24', 'dzkzQzym', '5538454'), + (14864, 53, 1638, 'not_attending', '2022-08-31 20:40:35', '2025-12-17 19:47:24', 'dzkzQzym', '5540402'), + (14865, 53, 1639, 'not_attending', '2022-08-31 20:40:53', '2025-12-17 19:47:24', 'dzkzQzym', '5540403'), + (14866, 53, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dzkzQzym', '5540859'), + (14867, 53, 1642, 'attending', '2022-09-01 08:44:17', '2025-12-17 19:47:24', 'dzkzQzym', '5544227'), + (14868, 53, 1643, 'maybe', '2022-09-09 09:24:06', '2025-12-17 19:47:11', 'dzkzQzym', '5545856'), + (14869, 53, 1645, 'not_attending', '2022-09-04 18:28:34', '2025-12-17 19:47:25', 'dzkzQzym', '5546559'), + (14870, 53, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dzkzQzym', '5546619'), + (14871, 53, 1648, 'maybe', '2022-09-04 18:30:30', '2025-12-17 19:47:24', 'dzkzQzym', '5548974'), + (14872, 53, 1651, 'maybe', '2022-09-04 18:28:42', '2025-12-17 19:47:24', 'dzkzQzym', '5551425'), + (14873, 53, 1652, 'maybe', '2022-09-10 02:17:03', '2025-12-17 19:47:24', 'dzkzQzym', '5552671'), + (14874, 53, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dzkzQzym', '5555245'), + (14875, 53, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dzkzQzym', '5557747'), + (14876, 53, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dzkzQzym', '5560255'), + (14877, 53, 1663, 'maybe', '2022-09-10 15:27:08', '2025-12-17 19:47:24', 'dzkzQzym', '5562345'), + (14878, 53, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dzkzQzym', '5562906'), + (14879, 53, 1665, 'not_attending', '2022-09-11 02:41:07', '2025-12-17 19:47:25', 'dzkzQzym', '5563133'), + (14880, 53, 1667, 'attending', '2022-09-15 07:44:14', '2025-12-17 19:47:11', 'dzkzQzym', '5563221'), + (14881, 53, 1668, 'not_attending', '2022-09-15 09:02:06', '2025-12-17 19:47:12', 'dzkzQzym', '5563222'), + (14882, 53, 1671, 'not_attending', '2022-09-15 20:53:17', '2025-12-17 19:47:10', 'dzkzQzym', '5585041'), + (14883, 53, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dzkzQzym', '5600604'), + (14884, 53, 1680, 'attending', '2022-09-27 19:32:55', '2025-12-17 19:47:11', 'dzkzQzym', '5601577'), + (14885, 53, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dzkzQzym', '5605544'), + (14886, 53, 1699, 'attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'dzkzQzym', '5606737'), + (14887, 53, 1705, 'attending', '2022-09-30 02:21:55', '2025-12-17 19:47:12', 'dzkzQzym', '5612209'), + (14888, 53, 1716, 'not_attending', '2022-10-06 20:07:02', '2025-12-17 19:47:12', 'dzkzQzym', '5622429'), + (14889, 53, 1719, 'not_attending', '2022-10-05 09:45:50', '2025-12-17 19:47:12', 'dzkzQzym', '5630958'), + (14890, 53, 1720, 'attending', '2022-10-05 09:45:54', '2025-12-17 19:47:12', 'dzkzQzym', '5630959'), + (14891, 53, 1721, 'attending', '2022-10-05 09:45:57', '2025-12-17 19:47:13', 'dzkzQzym', '5630960'), + (14892, 53, 1722, 'not_attending', '2022-10-05 09:46:03', '2025-12-17 19:47:14', 'dzkzQzym', '5630961'), + (14893, 53, 1723, 'attending', '2022-10-16 17:40:44', '2025-12-17 19:47:15', 'dzkzQzym', '5630962'), + (14894, 53, 1724, 'not_attending', '2022-10-16 17:41:00', '2025-12-17 19:47:15', 'dzkzQzym', '5630966'), + (14895, 53, 1725, 'attending', '2022-10-16 17:41:11', '2025-12-17 19:47:16', 'dzkzQzym', '5630967'), + (14896, 53, 1726, 'not_attending', '2022-10-16 17:41:15', '2025-12-17 19:47:16', 'dzkzQzym', '5630968'), + (14897, 53, 1727, 'attending', '2022-10-16 17:41:25', '2025-12-17 19:47:16', 'dzkzQzym', '5630969'), + (14898, 53, 1728, 'attending', '2022-11-28 21:43:46', '2025-12-17 19:47:17', 'dzkzQzym', '5630970'), + (14899, 53, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dzkzQzym', '5635406'), + (14900, 53, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dzkzQzym', '5638765'), + (14901, 53, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dzkzQzym', '5640097'), + (14902, 53, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dzkzQzym', '5640843'), + (14903, 53, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dzkzQzym', '5641521'), + (14904, 53, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dzkzQzym', '5642818'), + (14905, 53, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dzkzQzym', '5652395'), + (14906, 53, 1753, 'not_attending', '2022-10-16 17:39:57', '2025-12-17 19:47:13', 'dzkzQzym', '5656228'), + (14907, 53, 1761, 'attending', '2022-11-18 16:17:55', '2025-12-17 19:47:16', 'dzkzQzym', '5670434'), + (14908, 53, 1762, 'not_attending', '2022-11-28 21:46:02', '2025-12-17 19:47:16', 'dzkzQzym', '5670445'), + (14909, 53, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dzkzQzym', '5671637'), + (14910, 53, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dzkzQzym', '5672329'), + (14911, 53, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dzkzQzym', '5674057'), + (14912, 53, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dzkzQzym', '5674060'), + (14913, 53, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dzkzQzym', '5677461'), + (14914, 53, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dzkzQzym', '5698046'), + (14915, 53, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dzkzQzym', '5699760'), + (14916, 53, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dzkzQzym', '5741601'), + (14917, 53, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dzkzQzym', '5763458'), + (14918, 53, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dzkzQzym', '5774172'), + (14919, 53, 1827, 'maybe', '2022-11-28 21:45:08', '2025-12-17 19:47:16', 'dzkzQzym', '5776786'), + (14920, 53, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dzkzQzym', '5818247'), + (14921, 53, 1834, 'not_attending', '2022-12-05 10:41:37', '2025-12-17 19:47:17', 'dzkzQzym', '5819470'), + (14922, 53, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dzkzQzym', '5819471'), + (14923, 53, 1837, 'maybe', '2022-12-05 22:36:41', '2025-12-17 19:47:16', 'dzkzQzym', '5820146'), + (14924, 53, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'dzkzQzym', '5827739'), + (14925, 53, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dzkzQzym', '5844306'), + (14926, 53, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dzkzQzym', '5850159'), + (14927, 53, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dzkzQzym', '5858999'), + (14928, 53, 1852, 'not_attending', '2023-01-10 21:09:49', '2025-12-17 19:47:05', 'dzkzQzym', '5869898'), + (14929, 53, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dzkzQzym', '5871984'), + (14930, 53, 1860, 'not_attending', '2023-01-15 00:30:36', '2025-12-17 19:47:05', 'dzkzQzym', '5876309'), + (14931, 53, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dzkzQzym', '5876354'), + (14932, 53, 1864, 'not_attending', '2023-01-20 11:56:45', '2025-12-17 19:47:05', 'dzkzQzym', '5879675'), + (14933, 53, 1865, 'attending', '2023-01-20 11:57:02', '2025-12-17 19:47:06', 'dzkzQzym', '5879676'), + (14934, 53, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dzkzQzym', '5880939'), + (14935, 53, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dzkzQzym', '5880940'), + (14936, 53, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dzkzQzym', '5880942'), + (14937, 53, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dzkzQzym', '5880943'), + (14938, 53, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dzkzQzym', '5887890'), + (14939, 53, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dzkzQzym', '5888598'), + (14940, 53, 1879, 'maybe', '2023-01-29 14:06:24', '2025-12-17 19:47:06', 'dzkzQzym', '5893001'), + (14941, 53, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dzkzQzym', '5893260'), + (14942, 53, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dzkzQzym', '5899826'), + (14943, 53, 1888, 'maybe', '2023-02-17 16:52:55', '2025-12-17 19:47:07', 'dzkzQzym', '5900197'), + (14944, 53, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dzkzQzym', '5900199'), + (14945, 53, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dzkzQzym', '5900200'), + (14946, 53, 1891, 'not_attending', '2023-03-08 20:55:52', '2025-12-17 19:46:56', 'dzkzQzym', '5900202'), + (14947, 53, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dzkzQzym', '5900203'), + (14948, 53, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dzkzQzym', '5901108'), + (14949, 53, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dzkzQzym', '5901126'), + (14950, 53, 1897, 'attending', '2023-02-07 18:01:18', '2025-12-17 19:47:07', 'dzkzQzym', '5901128'), + (14951, 53, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dzkzQzym', '5909655'), + (14952, 53, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dzkzQzym', '5910522'), + (14953, 53, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dzkzQzym', '5910526'), + (14954, 53, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dzkzQzym', '5910528'), + (14955, 53, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dzkzQzym', '5916219'), + (14956, 53, 1930, 'attending', '2023-02-18 14:42:17', '2025-12-17 19:47:08', 'dzkzQzym', '5933462'), + (14957, 53, 1931, 'maybe', '2023-02-18 14:42:21', '2025-12-17 19:47:08', 'dzkzQzym', '5933464'), + (14958, 53, 1933, 'attending', '2023-02-21 13:39:51', '2025-12-17 19:47:08', 'dzkzQzym', '5936234'), + (14959, 53, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dzkzQzym', '5958351'), + (14960, 53, 1938, 'maybe', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dzkzQzym', '5959751'), + (14961, 53, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dzkzQzym', '5959755'), + (14962, 53, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dzkzQzym', '5960055'), + (14963, 53, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dzkzQzym', '5961684'), + (14964, 53, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dzkzQzym', '5962132'), + (14965, 53, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dzkzQzym', '5962133'), + (14966, 53, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dzkzQzym', '5962134'), + (14967, 53, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dzkzQzym', '5962317'), + (14968, 53, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dzkzQzym', '5962318'), + (14969, 53, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dzkzQzym', '5965933'), + (14970, 53, 1953, 'maybe', '2023-03-02 07:14:15', '2025-12-17 19:47:09', 'dzkzQzym', '5966307'), + (14971, 53, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dzkzQzym', '5967014'), + (14972, 53, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dzkzQzym', '5972815'), + (14973, 53, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dzkzQzym', '5974016'), + (14974, 53, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dzkzQzym', '5975052'), + (14975, 53, 1963, 'attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dzkzQzym', '5975054'), + (14976, 53, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dzkzQzym', '5981515'), + (14977, 53, 1966, 'attending', '2023-03-11 18:56:39', '2025-12-17 19:47:10', 'dzkzQzym', '5983042'), + (14978, 53, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dzkzQzym', '5993516'), + (14979, 53, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dzkzQzym', '5998939'), + (14980, 53, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dzkzQzym', '6028191'), + (14981, 53, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dzkzQzym', '6040066'), + (14982, 53, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dzkzQzym', '6042717'), + (14983, 53, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dzkzQzym', '6044838'), + (14984, 53, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dzkzQzym', '6044839'), + (14985, 53, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzkzQzym', '6045684'), + (14986, 53, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dzkzQzym', '6050104'), + (14987, 53, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dzkzQzym', '6053195'), + (14988, 53, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dzkzQzym', '6053198'), + (14989, 53, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dzkzQzym', '6056085'), + (14990, 53, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dzkzQzym', '6056916'), + (14991, 53, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dzkzQzym', '6059290'), + (14992, 53, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dzkzQzym', '6060328'), + (14993, 53, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dzkzQzym', '6061037'), + (14994, 53, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dzkzQzym', '6061039'), + (14995, 53, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dzkzQzym', '6067245'), + (14996, 53, 2025, 'maybe', '2023-04-17 11:30:52', '2025-12-17 19:47:00', 'dzkzQzym', '6067457'), + (14997, 53, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dzkzQzym', '6068094'), + (14998, 53, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dzkzQzym', '6068252'), + (14999, 53, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dzkzQzym', '6068253'), + (15000, 53, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dzkzQzym', '6068254'), + (15001, 53, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dzkzQzym', '6068280'), + (15002, 53, 2032, 'attending', '2023-04-18 11:44:46', '2025-12-17 19:47:04', 'dzkzQzym', '6068281'), + (15003, 53, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dzkzQzym', '6069093'), + (15004, 53, 2034, 'maybe', '2023-04-24 11:18:02', '2025-12-17 19:47:00', 'dzkzQzym', '6069372'), + (15005, 53, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dzkzQzym', '6072528'), + (15006, 53, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dzkzQzym', '6075556'), + (15007, 53, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dzkzQzym', '6079840'), + (15008, 53, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dzkzQzym', '6083398'), + (15009, 53, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dzkzQzym', '6093504'), + (15010, 53, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dzkzQzym', '6097414'), + (15011, 53, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dzkzQzym', '6097442'), + (15012, 53, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dzkzQzym', '6097684'), + (15013, 53, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dzkzQzym', '6098762'), + (15014, 53, 2065, 'attending', '2023-06-13 17:13:46', '2025-12-17 19:46:49', 'dzkzQzym', '6101169'), + (15015, 53, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dzkzQzym', '6101361'), + (15016, 53, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dzkzQzym', '6101362'), + (15017, 53, 2068, 'attending', '2023-05-13 17:55:47', '2025-12-17 19:47:03', 'dzkzQzym', '6102837'), + (15018, 53, 2071, 'attending', '2023-05-15 04:14:10', '2025-12-17 19:47:03', 'dzkzQzym', '6104949'), + (15019, 53, 2074, 'maybe', '2023-05-20 09:17:24', '2025-12-17 19:47:03', 'dzkzQzym', '6107312'), + (15020, 53, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dzkzQzym', '6107314'), + (15021, 53, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', 'dzkzQzym', '6119877'), + (15022, 53, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dzkzQzym', '6120034'), + (15023, 53, 2093, 'attending', '2023-06-04 02:39:45', '2025-12-17 19:47:04', 'dzkzQzym', '6132598'), + (15024, 53, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dzkzQzym', '6136733'), + (15025, 53, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dzkzQzym', '6137989'), + (15026, 53, 2103, 'attending', '2023-06-19 20:00:20', '2025-12-17 19:46:50', 'dzkzQzym', '6149451'), + (15027, 53, 2105, 'maybe', '2023-06-17 21:57:10', '2025-12-17 19:46:50', 'dzkzQzym', '6149551'), + (15028, 53, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dzkzQzym', '6150864'), + (15029, 53, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dzkzQzym', '6155491'), + (15030, 53, 2114, 'attending', '2023-06-26 22:23:15', '2025-12-17 19:46:50', 'dzkzQzym', '6158648'), + (15031, 53, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dzkzQzym', '6164417'), + (15032, 53, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dzkzQzym', '6166388'), + (15033, 53, 2121, 'maybe', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dzkzQzym', '6176439'), + (15034, 53, 2123, 'attending', '2023-06-28 21:33:41', '2025-12-17 19:46:50', 'dzkzQzym', '6176502'), + (15035, 53, 2126, 'maybe', '2023-06-30 02:26:51', '2025-12-17 19:46:51', 'dzkzQzym', '6177548'), + (15036, 53, 2127, 'attending', '2023-07-01 20:59:30', '2025-12-17 19:46:50', 'dzkzQzym', '6180853'), + (15037, 53, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dzkzQzym', '6182410'), + (15038, 53, 2130, 'not_attending', '2023-07-03 22:10:04', '2025-12-17 19:46:51', 'dzkzQzym', '6183891'), + (15039, 53, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dzkzQzym', '6185812'), + (15040, 53, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dzkzQzym', '6187651'), + (15041, 53, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dzkzQzym', '6187963'), + (15042, 53, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dzkzQzym', '6187964'), + (15043, 53, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dzkzQzym', '6187966'), + (15044, 53, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dzkzQzym', '6187967'), + (15045, 53, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dzkzQzym', '6187969'), + (15046, 53, 2140, 'maybe', '2023-07-10 10:28:16', '2025-12-17 19:46:52', 'dzkzQzym', '6188074'), + (15047, 53, 2142, 'maybe', '2023-07-07 20:57:55', '2025-12-17 19:46:52', 'dzkzQzym', '6333850'), + (15048, 53, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dzkzQzym', '6334878'), + (15049, 53, 2151, 'attending', '2023-07-10 10:28:47', '2025-12-17 19:46:52', 'dzkzQzym', '6335700'), + (15050, 53, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dzkzQzym', '6337236'), + (15051, 53, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dzkzQzym', '6337970'), + (15052, 53, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dzkzQzym', '6338308'), + (15053, 53, 2159, 'not_attending', '2023-07-13 16:04:04', '2025-12-17 19:46:53', 'dzkzQzym', '6338355'), + (15054, 53, 2160, 'attending', '2023-07-13 16:04:08', '2025-12-17 19:46:54', 'dzkzQzym', '6338358'), + (15055, 53, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dzkzQzym', '6341710'), + (15056, 53, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dzkzQzym', '6342044'), + (15057, 53, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dzkzQzym', '6342298'), + (15058, 53, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dzkzQzym', '6343294'), + (15059, 53, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dzkzQzym', '6347034'), + (15060, 53, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dzkzQzym', '6347056'), + (15061, 53, 2183, 'maybe', '2023-07-28 13:28:29', '2025-12-17 19:46:54', 'dzkzQzym', '6353008'), + (15062, 53, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dzkzQzym', '6353830'), + (15063, 53, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dzkzQzym', '6353831'), + (15064, 53, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dzkzQzym', '6357867'), + (15065, 53, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dzkzQzym', '6358652'), + (15066, 53, 2193, 'maybe', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dzkzQzym', '6358668'), + (15067, 53, 2194, 'maybe', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dzkzQzym', '6358669'), + (15068, 53, 2198, 'maybe', '2023-09-09 22:25:00', '2025-12-17 19:46:45', 'dzkzQzym', '6359400'), + (15069, 53, 2204, 'attending', '2023-08-18 22:54:30', '2025-12-17 19:46:55', 'dzkzQzym', '6361542'), + (15070, 53, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dzkzQzym', '6361709'), + (15071, 53, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dzkzQzym', '6361710'), + (15072, 53, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dzkzQzym', '6361711'), + (15073, 53, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dzkzQzym', '6361712'), + (15074, 53, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dzkzQzym', '6361713'), + (15075, 53, 2232, 'attending', '2023-08-23 10:41:16', '2025-12-17 19:46:55', 'dzkzQzym', '6374818'), + (15076, 53, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dzkzQzym', '6382573'), + (15077, 53, 2240, 'attending', '2023-09-07 12:35:55', '2025-12-17 19:46:56', 'dzkzQzym', '6388603'), + (15078, 53, 2241, 'not_attending', '2023-09-09 22:23:07', '2025-12-17 19:46:44', 'dzkzQzym', '6388604'), + (15079, 53, 2242, 'attending', '2023-09-21 00:12:43', '2025-12-17 19:46:45', 'dzkzQzym', '6388606'), + (15080, 53, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dzkzQzym', '6394629'), + (15081, 53, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dzkzQzym', '6394631'), + (15082, 53, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dzkzQzym', '6440863'), + (15083, 53, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dzkzQzym', '6445440'), + (15084, 53, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dzkzQzym', '6453951'), + (15085, 53, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dzkzQzym', '6461696'), + (15086, 53, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dzkzQzym', '6462129'), + (15087, 53, 2290, 'maybe', '2023-10-18 16:39:31', '2025-12-17 19:46:46', 'dzkzQzym', '6462214'), + (15088, 53, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dzkzQzym', '6463218'), + (15089, 53, 2299, 'attending', '2023-10-15 20:24:13', '2025-12-17 19:46:46', 'dzkzQzym', '6472181'), + (15090, 53, 2304, 'attending', '2023-10-24 11:31:38', '2025-12-17 19:46:47', 'dzkzQzym', '6482693'), + (15091, 53, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dzkzQzym', '6484200'), + (15092, 53, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dzkzQzym', '6484680'), + (15093, 53, 2310, 'not_attending', '2023-11-04 17:24:30', '2025-12-17 19:46:47', 'dzkzQzym', '6487709'), + (15094, 53, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dzkzQzym', '6507741'), + (15095, 53, 2322, 'attending', '2023-11-04 17:24:37', '2025-12-17 19:46:48', 'dzkzQzym', '6514659'), + (15096, 53, 2323, 'attending', '2023-11-04 17:24:45', '2025-12-17 19:46:48', 'dzkzQzym', '6514660'), + (15097, 53, 2324, 'not_attending', '2023-11-04 17:24:48', '2025-12-17 19:46:49', 'dzkzQzym', '6514662'), + (15098, 53, 2325, 'attending', '2023-11-25 20:21:14', '2025-12-17 19:46:36', 'dzkzQzym', '6514663'), + (15099, 53, 2326, 'attending', '2023-11-04 17:24:08', '2025-12-17 19:46:48', 'dzkzQzym', '6514805'), + (15100, 53, 2329, 'attending', '2023-11-04 17:10:59', '2025-12-17 19:46:47', 'dzkzQzym', '6517138'), + (15101, 53, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dzkzQzym', '6519103'), + (15102, 53, 2334, 'maybe', '2023-11-06 05:12:49', '2025-12-17 19:46:48', 'dzkzQzym', '6529252'), + (15103, 53, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dzkzQzym', '6535681'), + (15104, 53, 2338, 'maybe', '2023-11-13 10:47:29', '2025-12-17 19:46:48', 'dzkzQzym', '6538868'), + (15105, 53, 2340, 'not_attending', '2023-11-21 04:09:44', '2025-12-17 19:46:48', 'dzkzQzym', '6540279'), + (15106, 53, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dzkzQzym', '6584747'), + (15107, 53, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dzkzQzym', '6587097'), + (15108, 53, 2357, 'maybe', '2023-11-28 00:25:40', '2025-12-17 19:46:36', 'dzkzQzym', '6593341'), + (15109, 53, 2358, 'not_attending', '2023-11-29 22:49:45', '2025-12-17 19:46:48', 'dzkzQzym', '6595321'), + (15110, 53, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dzkzQzym', '6609022'), + (15111, 53, 2365, 'attending', '2023-12-19 00:48:41', '2025-12-17 19:46:37', 'dzkzQzym', '6613093'), + (15112, 53, 2373, 'maybe', '2024-01-13 23:25:00', '2025-12-17 19:46:38', 'dzkzQzym', '6632678'), + (15113, 53, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dzkzQzym', '6632757'), + (15114, 53, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dzkzQzym', '6644187'), + (15115, 53, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dzkzQzym', '6648951'), + (15116, 53, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dzkzQzym', '6648952'), + (15117, 53, 2395, 'maybe', '2024-01-13 23:24:35', '2025-12-17 19:46:38', 'dzkzQzym', '6654471'), + (15118, 53, 2396, 'maybe', '2024-01-13 23:24:48', '2025-12-17 19:46:38', 'dzkzQzym', '6655401'), + (15119, 53, 2399, 'not_attending', '2024-01-10 04:52:48', '2025-12-17 19:46:38', 'dzkzQzym', '6657583'), + (15120, 53, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dzkzQzym', '6661585'), + (15121, 53, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dzkzQzym', '6661588'), + (15122, 53, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dzkzQzym', '6661589'), + (15123, 53, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dzkzQzym', '6699906'), + (15124, 53, 2408, 'attending', '2024-01-15 04:53:31', '2025-12-17 19:46:40', 'dzkzQzym', '6699907'), + (15125, 53, 2409, 'attending', '2024-01-15 04:53:36', '2025-12-17 19:46:41', 'dzkzQzym', '6699909'), + (15126, 53, 2410, 'attending', '2024-01-15 04:53:41', '2025-12-17 19:46:41', 'dzkzQzym', '6699911'), + (15127, 53, 2411, 'attending', '2024-02-02 00:31:41', '2025-12-17 19:46:41', 'dzkzQzym', '6699913'), + (15128, 53, 2412, 'attending', '2024-02-20 04:26:29', '2025-12-17 19:46:43', 'dzkzQzym', '6700717'), + (15129, 53, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dzkzQzym', '6701109'), + (15130, 53, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dzkzQzym', '6705219'), + (15131, 53, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dzkzQzym', '6710153'), + (15132, 53, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dzkzQzym', '6711552'), + (15133, 53, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dzkzQzym', '6711553'), + (15134, 53, 2431, 'not_attending', '2024-02-02 00:31:23', '2025-12-17 19:46:41', 'dzkzQzym', '6712394'), + (15135, 53, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dzkzQzym', '6722688'), + (15136, 53, 2438, 'maybe', '2024-02-02 00:31:33', '2025-12-17 19:46:41', 'dzkzQzym', '6730201'), + (15137, 53, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dzkzQzym', '6730620'), + (15138, 53, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dzkzQzym', '6730642'), + (15139, 53, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dzkzQzym', '6740364'), + (15140, 53, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dzkzQzym', '6743829'), + (15141, 53, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dzkzQzym', '7030380'), + (15142, 53, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'dzkzQzym', '7033677'), + (15143, 53, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dzkzQzym', '7035415'), + (15144, 53, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dzkzQzym', '7044715'), + (15145, 53, 2486, 'maybe', '2024-03-04 05:21:25', '2025-12-17 19:46:43', 'dzkzQzym', '7048277'), + (15146, 53, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dzkzQzym', '7050318'), + (15147, 53, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dzkzQzym', '7050319'), + (15148, 53, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dzkzQzym', '7050322'), + (15149, 53, 2493, 'not_attending', '2024-03-10 04:44:17', '2025-12-17 19:46:32', 'dzkzQzym', '7052471'), + (15150, 53, 2495, 'maybe', '2024-03-05 21:47:21', '2025-12-17 19:46:32', 'dzkzQzym', '7052982'), + (15151, 53, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dzkzQzym', '7057804'), + (15152, 53, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dzkzQzym', '7059866'), + (15153, 53, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dzkzQzym', '7072824'), + (15154, 53, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dzkzQzym', '7074348'), + (15155, 53, 2524, 'attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dzkzQzym', '7074364'), + (15156, 53, 2526, 'attending', '2024-08-01 01:44:42', '2025-12-17 19:46:31', 'dzkzQzym', '7074366'), + (15157, 53, 2538, 'attending', '2024-03-26 23:54:20', '2025-12-17 19:46:33', 'dzkzQzym', '7085485'), + (15158, 53, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dzkzQzym', '7089267'), + (15159, 53, 2542, 'attending', '2024-03-24 23:06:32', '2025-12-17 19:46:33', 'dzkzQzym', '7090025'), + (15160, 53, 2545, 'attending', '2024-03-24 23:06:25', '2025-12-17 19:46:33', 'dzkzQzym', '7096942'), + (15161, 53, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dzkzQzym', '7098747'), + (15162, 53, 2553, 'attending', '2024-03-29 19:58:22', '2025-12-17 19:46:33', 'dzkzQzym', '7113468'), + (15163, 53, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dzkzQzym', '7114856'), + (15164, 53, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dzkzQzym', '7114951'), + (15165, 53, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dzkzQzym', '7114955'), + (15166, 53, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dzkzQzym', '7114956'), + (15167, 53, 2558, 'maybe', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dzkzQzym', '7114957'), + (15168, 53, 2564, 'maybe', '2024-04-10 19:39:33', '2025-12-17 19:46:33', 'dzkzQzym', '7134735'), + (15169, 53, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dzkzQzym', '7153615'), + (15170, 53, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dzkzQzym', '7159484'), + (15171, 53, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzkzQzym', '7178446'), + (15172, 53, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dzkzQzym', '7220467'), + (15173, 53, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dzkzQzym', '7240354'), + (15174, 53, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dzkzQzym', '7251633'), + (15175, 53, 2624, 'attending', '2024-05-12 10:03:50', '2025-12-17 19:46:35', 'dzkzQzym', '7263301'), + (15176, 53, 2626, 'attending', '2024-05-18 03:10:55', '2025-12-17 19:46:35', 'dzkzQzym', '7264723'), + (15177, 53, 2627, 'attending', '2024-05-18 03:11:08', '2025-12-17 19:46:35', 'dzkzQzym', '7264724'), + (15178, 53, 2628, 'not_attending', '2024-05-18 03:11:03', '2025-12-17 19:46:36', 'dzkzQzym', '7264725'), + (15179, 53, 2629, 'attending', '2024-05-18 03:11:05', '2025-12-17 19:46:28', 'dzkzQzym', '7264726'), + (15180, 53, 2647, 'attending', '2024-06-09 04:42:55', '2025-12-17 19:46:28', 'dzkzQzym', '7282057'), + (15181, 53, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dzkzQzym', '7302674'), + (15182, 53, 2673, 'attending', '2024-06-09 21:46:21', '2025-12-17 19:46:28', 'dzkzQzym', '7319473'), + (15183, 53, 2678, 'attending', '2024-06-09 21:44:59', '2025-12-17 19:46:28', 'dzkzQzym', '7319489'), + (15184, 53, 2679, 'attending', '2024-06-21 21:14:34', '2025-12-17 19:46:29', 'dzkzQzym', '7319490'), + (15185, 53, 2682, 'attending', '2024-06-10 21:38:30', '2025-12-17 19:46:28', 'dzkzQzym', '7321862'), + (15186, 53, 2685, 'attending', '2024-06-10 23:12:34', '2025-12-17 19:46:28', 'dzkzQzym', '7322675'), + (15187, 53, 2686, 'attending', '2024-06-11 10:09:32', '2025-12-17 19:46:29', 'dzkzQzym', '7323802'), + (15188, 53, 2688, 'attending', '2024-06-12 20:59:59', '2025-12-17 19:46:29', 'dzkzQzym', '7324073'), + (15189, 53, 2689, 'attending', '2024-06-17 19:38:24', '2025-12-17 19:46:29', 'dzkzQzym', '7324074'), + (15190, 53, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dzkzQzym', '7324075'), + (15191, 53, 2691, 'attending', '2024-07-14 14:41:52', '2025-12-17 19:46:30', 'dzkzQzym', '7324076'), + (15192, 53, 2693, 'attending', '2024-08-01 01:43:12', '2025-12-17 19:46:31', 'dzkzQzym', '7324078'), + (15193, 53, 2694, 'attending', '2024-08-01 01:43:29', '2025-12-17 19:46:31', 'dzkzQzym', '7324079'), + (15194, 53, 2695, 'attending', '2024-08-01 01:43:39', '2025-12-17 19:46:31', 'dzkzQzym', '7324080'), + (15195, 53, 2696, 'attending', '2024-08-01 01:43:41', '2025-12-17 19:46:32', 'dzkzQzym', '7324081'), + (15196, 53, 2697, 'not_attending', '2024-08-28 23:38:26', '2025-12-17 19:46:32', 'dzkzQzym', '7324082'), + (15197, 53, 2702, 'attending', '2024-06-12 22:18:15', '2025-12-17 19:46:28', 'dzkzQzym', '7324867'), + (15198, 53, 2706, 'maybe', '2024-06-19 01:21:05', '2025-12-17 19:46:28', 'dzkzQzym', '7324947'), + (15199, 53, 2721, 'attending', '2024-06-19 01:20:46', '2025-12-17 19:46:29', 'dzkzQzym', '7331456'), + (15200, 53, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dzkzQzym', '7331457'), + (15201, 53, 2732, 'not_attending', '2024-06-24 01:06:20', '2025-12-17 19:46:29', 'dzkzQzym', '7337207'), + (15202, 53, 2750, 'attending', '2024-07-07 20:55:42', '2025-12-17 19:46:30', 'dzkzQzym', '7355526'), + (15203, 53, 2753, 'attending', '2024-07-08 21:47:08', '2025-12-17 19:46:30', 'dzkzQzym', '7355538'), + (15204, 53, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dzkzQzym', '7363643'), + (15205, 53, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dzkzQzym', '7368606'), + (15206, 53, 2796, 'attending', '2024-08-15 00:29:55', '2025-12-17 19:46:31', 'dzkzQzym', '7391451'), + (15207, 53, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dzkzQzym', '7397462'), + (15208, 53, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dzkzQzym', '7424275'), + (15209, 53, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dzkzQzym', '7424276'), + (15210, 53, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dzkzQzym', '7432751'), + (15211, 53, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dzkzQzym', '7432752'), + (15212, 53, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dzkzQzym', '7432753'), + (15213, 53, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dzkzQzym', '7432754'), + (15214, 53, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dzkzQzym', '7432755'), + (15215, 53, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dzkzQzym', '7432756'), + (15216, 53, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dzkzQzym', '7432758'), + (15217, 53, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dzkzQzym', '7432759'), + (15218, 53, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dzkzQzym', '7433834'), + (15219, 53, 2837, 'not_attending', '2024-09-12 18:57:25', '2025-12-17 19:46:25', 'dzkzQzym', '7438711'), + (15220, 53, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dzkzQzym', '7470197'), + (15221, 53, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dzkzQzym', '7685613'), + (15222, 53, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dzkzQzym', '7688194'), + (15223, 53, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dzkzQzym', '7688196'), + (15224, 53, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dzkzQzym', '7688289'), + (15225, 53, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dzkzQzym', '7692763'), + (15226, 53, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dzkzQzym', '7697552'), + (15227, 53, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dzkzQzym', '7699878'), + (15228, 53, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dzkzQzym', '7704043'), + (15229, 53, 2922, 'attending', '2024-11-25 22:44:08', '2025-12-17 19:46:21', 'dzkzQzym', '7710890'), + (15230, 53, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dzkzQzym', '7712467'), + (15231, 53, 2926, 'attending', '2024-12-07 06:51:10', '2025-12-17 19:46:21', 'dzkzQzym', '7713585'), + (15232, 53, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dzkzQzym', '7713586'), + (15233, 53, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dzkzQzym', '7738518'), + (15234, 53, 2962, 'maybe', '2024-12-27 17:31:14', '2025-12-17 19:46:22', 'dzkzQzym', '7750632'), + (15235, 53, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dzkzQzym', '7750636'), + (15236, 53, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dzkzQzym', '7796540'), + (15237, 53, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dzkzQzym', '7796541'), + (15238, 53, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dzkzQzym', '7796542'), + (15239, 53, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dzkzQzym', '7825913'), + (15240, 53, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dzkzQzym', '7825920'), + (15241, 53, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dzkzQzym', '7826209'), + (15242, 53, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dzkzQzym', '7834742'), + (15243, 53, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dzkzQzym', '7842108'), + (15244, 53, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dzkzQzym', '7842902'), + (15245, 53, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dzkzQzym', '7842903'), + (15246, 53, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dzkzQzym', '7842904'), + (15247, 53, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dzkzQzym', '7842905'), + (15248, 53, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dzkzQzym', '7855719'), + (15249, 53, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dzkzQzym', '7860683'), + (15250, 53, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dzkzQzym', '7860684'), + (15251, 53, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dzkzQzym', '7866095'), + (15252, 53, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dzkzQzym', '7869170'), + (15253, 53, 3014, 'attending', '2025-04-02 17:43:08', '2025-12-17 19:46:19', 'dzkzQzym', '7869185'), + (15254, 53, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dzkzQzym', '7869188'), + (15255, 53, 3018, 'maybe', '2025-04-08 16:26:12', '2025-12-17 19:46:20', 'dzkzQzym', '7869189'), + (15256, 53, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dzkzQzym', '7869201'), + (15257, 53, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dzkzQzym', '7877465'), + (15258, 53, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dzkzQzym', '7888250'), + (15259, 53, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dzkzQzym', '7904777'), + (15260, 53, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dzkzQzym', '8349164'), + (15261, 53, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dzkzQzym', '8349545'), + (15262, 53, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dzkzQzym', '8353584'), + (15263, 53, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dzkzQzym', '8368028'), + (15264, 53, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dzkzQzym', '8368029'), + (15265, 53, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dzkzQzym', '8388462'), + (15266, 53, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dzkzQzym', '8400273'), + (15267, 53, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dzkzQzym', '8400274'), + (15268, 53, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dzkzQzym', '8400275'), + (15269, 53, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dzkzQzym', '8400276'), + (15270, 53, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dzkzQzym', '8404977'), + (15271, 53, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dzkzQzym', '8430783'), + (15272, 53, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dzkzQzym', '8430784'), + (15273, 53, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dzkzQzym', '8430799'), + (15274, 53, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dzkzQzym', '8430800'), + (15275, 53, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dzkzQzym', '8430801'), + (15276, 53, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dzkzQzym', '8438709'), + (15277, 53, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dzkzQzym', '8457738'), + (15278, 53, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dzkzQzym', '8459566'), + (15279, 53, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dzkzQzym', '8459567'), + (15280, 53, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'dzkzQzym', '8459568'), + (15281, 53, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dzkzQzym', '8461032'), + (15282, 53, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dzkzQzym', '8477877'), + (15283, 53, 3215, 'maybe', '2025-08-17 03:17:18', '2025-12-17 19:46:18', 'dzkzQzym', '8477880'), + (15284, 53, 3219, 'not_attending', '2025-08-17 03:17:38', '2025-12-17 19:46:18', 'dzkzQzym', '8482548'), + (15285, 53, 3222, 'not_attending', '2025-08-29 11:58:42', '2025-12-17 19:46:11', 'dzkzQzym', '8485677'), + (15286, 53, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'dzkzQzym', '8485688'), + (15287, 53, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dzkzQzym', '8490587'), + (15288, 53, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dzkzQzym', '8493552'), + (15289, 53, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dzkzQzym', '8493553'), + (15290, 53, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dzkzQzym', '8493554'), + (15291, 53, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dzkzQzym', '8493555'), + (15292, 53, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dzkzQzym', '8493556'), + (15293, 53, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dzkzQzym', '8493557'), + (15294, 53, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dzkzQzym', '8493558'), + (15295, 53, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dzkzQzym', '8493559'), + (15296, 53, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dzkzQzym', '8493560'), + (15297, 53, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dzkzQzym', '8493561'), + (15298, 53, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dzkzQzym', '8493572'), + (15299, 53, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dzkzQzym', '8540725'), + (15300, 53, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dzkzQzym', '8555421'), + (15301, 54, 2821, 'not_attending', '2024-10-09 22:34:19', '2025-12-17 19:46:26', '4oqqKeJm', '7424275'), + (15302, 54, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4oqqKeJm', '7424276'), + (15303, 54, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', '4oqqKeJm', '7432753'), + (15304, 54, 2827, 'not_attending', '2024-09-30 15:46:43', '2025-12-17 19:46:26', '4oqqKeJm', '7432754'), + (15305, 54, 2828, 'maybe', '2024-10-09 22:34:24', '2025-12-17 19:46:26', '4oqqKeJm', '7432755'), + (15306, 54, 2829, 'attending', '2024-10-09 22:34:27', '2025-12-17 19:46:26', '4oqqKeJm', '7432756'), + (15307, 54, 2830, 'maybe', '2024-10-09 22:34:30', '2025-12-17 19:46:26', '4oqqKeJm', '7432758'), + (15308, 54, 2831, 'not_attending', '2024-10-09 22:34:32', '2025-12-17 19:46:26', '4oqqKeJm', '7432759'), + (15309, 54, 2857, 'maybe', '2024-10-19 06:50:04', '2025-12-17 19:46:26', '4oqqKeJm', '7469387'), + (15310, 54, 2858, 'maybe', '2024-10-09 22:34:35', '2025-12-17 19:46:26', '4oqqKeJm', '7469388'), + (15311, 54, 2859, 'attending', '2024-10-25 21:47:12', '2025-12-17 19:46:26', '4oqqKeJm', '7469389'), + (15312, 54, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4oqqKeJm', '7470197'), + (15313, 54, 2865, 'maybe', '2024-10-25 21:47:10', '2025-12-17 19:46:26', '4oqqKeJm', '7471200'), + (15314, 54, 2867, 'maybe', '2024-12-06 21:06:04', '2025-12-17 19:46:21', '4oqqKeJm', '7471202'), + (15315, 54, 2869, 'attending', '2024-10-02 23:14:23', '2025-12-17 19:46:26', '4oqqKeJm', '7474823'), + (15316, 54, 2874, 'maybe', '2024-10-09 22:34:38', '2025-12-17 19:46:26', '4oqqKeJm', '7482239'), + (15317, 54, 2886, 'attending', '2024-10-25 21:47:27', '2025-12-17 19:46:26', '4oqqKeJm', '7654498'), + (15318, 54, 2889, 'attending', '2024-10-24 22:32:36', '2025-12-17 19:46:26', '4oqqKeJm', '7660485'), + (15319, 54, 2893, 'maybe', '2024-11-04 19:33:30', '2025-12-17 19:46:26', '4oqqKeJm', '7672705'), + (15320, 54, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4oqqKeJm', '7685613'), + (15321, 54, 2899, 'attending', '2024-11-09 17:48:06', '2025-12-17 19:46:27', '4oqqKeJm', '7685616'), + (15322, 54, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4oqqKeJm', '7688194'), + (15323, 54, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4oqqKeJm', '7688196'), + (15324, 54, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4oqqKeJm', '7688289'), + (15325, 54, 2909, 'maybe', '2024-11-12 22:57:34', '2025-12-17 19:46:27', '4oqqKeJm', '7689771'), + (15326, 54, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4oqqKeJm', '7692763'), + (15327, 54, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4oqqKeJm', '7697552'), + (15328, 54, 2916, 'attending', '2024-11-17 23:18:24', '2025-12-17 19:46:27', '4oqqKeJm', '7699006'), + (15329, 54, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4oqqKeJm', '7699878'), + (15330, 54, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4oqqKeJm', '7704043'), + (15331, 54, 2924, 'maybe', '2024-11-27 00:41:58', '2025-12-17 19:46:28', '4oqqKeJm', '7712467'), + (15332, 54, 2925, 'attending', '2024-12-03 18:12:18', '2025-12-17 19:46:21', '4oqqKeJm', '7713584'), + (15333, 54, 2926, 'attending', '2024-12-03 18:12:11', '2025-12-17 19:46:21', '4oqqKeJm', '7713585'), + (15334, 54, 2927, 'attending', '2024-12-03 18:12:19', '2025-12-17 19:46:22', '4oqqKeJm', '7713586'), + (15335, 54, 2930, 'maybe', '2024-12-07 01:16:42', '2025-12-17 19:46:21', '4oqqKeJm', '7724554'), + (15336, 54, 2953, 'maybe', '2024-12-14 17:17:15', '2025-12-17 19:46:21', '4oqqKeJm', '7733836'), + (15337, 54, 2957, 'maybe', '2024-12-16 18:00:59', '2025-12-17 19:46:21', '4oqqKeJm', '7735370'), + (15338, 54, 2958, 'maybe', '2024-12-18 21:23:26', '2025-12-17 19:46:21', '4oqqKeJm', '7738518'), + (15339, 54, 2959, 'attending', '2024-12-21 21:57:14', '2025-12-17 19:46:22', '4oqqKeJm', '7747388'), + (15340, 54, 2962, 'not_attending', '2024-12-24 18:51:36', '2025-12-17 19:46:22', '4oqqKeJm', '7750632'), + (15341, 54, 2963, 'not_attending', '2024-12-24 18:51:48', '2025-12-17 19:46:22', '4oqqKeJm', '7750636'), + (15342, 54, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4oqqKeJm', '7796540'), + (15343, 54, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4oqqKeJm', '7796541'), + (15344, 54, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4oqqKeJm', '7796542'), + (15345, 54, 2968, 'maybe', '2025-01-08 22:58:17', '2025-12-17 19:46:22', '4oqqKeJm', '7797967'), + (15346, 54, 2970, 'maybe', '2025-01-12 22:55:16', '2025-12-17 19:46:22', '4oqqKeJm', '7800991'), + (15347, 54, 2971, 'maybe', '2025-01-17 18:19:12', '2025-12-17 19:46:22', '4oqqKeJm', '7812230'), + (15348, 54, 2972, 'attending', '2025-01-17 18:19:09', '2025-12-17 19:46:22', '4oqqKeJm', '7812563'), + (15349, 54, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4oqqKeJm', '7825913'), + (15350, 54, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4oqqKeJm', '7826209'), + (15351, 54, 2984, 'maybe', '2025-02-06 03:51:11', '2025-12-17 19:46:23', '4oqqKeJm', '7830134'), + (15352, 54, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4oqqKeJm', '7834742'), + (15353, 54, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '4oqqKeJm', '7842108'), + (15354, 54, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4oqqKeJm', '7842902'), + (15355, 54, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4oqqKeJm', '7842903'), + (15356, 54, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4oqqKeJm', '7842904'), + (15357, 54, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4oqqKeJm', '7842905'), + (15358, 54, 3000, 'attending', '2025-02-17 19:37:40', '2025-12-17 19:46:24', '4oqqKeJm', '7852541'), + (15359, 54, 3001, 'maybe', '2025-02-20 01:30:14', '2025-12-17 19:46:24', '4oqqKeJm', '7854184'), + (15360, 54, 3004, 'attending', '2025-02-20 01:29:06', '2025-12-17 19:46:24', '4oqqKeJm', '7854599'), + (15361, 54, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4oqqKeJm', '7855719'), + (15362, 54, 3007, 'maybe', '2025-02-24 23:00:59', '2025-12-17 19:46:24', '4oqqKeJm', '7860683'), + (15363, 54, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4oqqKeJm', '7860684'), + (15364, 54, 3009, 'attending', '2025-02-28 04:51:49', '2025-12-17 19:46:18', '4oqqKeJm', '7864019'), + (15365, 54, 3010, 'attending', '2025-03-02 20:41:40', '2025-12-17 19:46:18', '4oqqKeJm', '7864879'), + (15366, 54, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4oqqKeJm', '7866095'), + (15367, 54, 3013, 'attending', '2025-03-05 18:29:17', '2025-12-17 19:46:18', '4oqqKeJm', '7869170'), + (15368, 54, 3014, 'not_attending', '2025-03-21 21:24:19', '2025-12-17 19:46:20', '4oqqKeJm', '7869185'), + (15369, 54, 3015, 'attending', '2025-03-29 15:41:54', '2025-12-17 19:46:20', '4oqqKeJm', '7869186'), + (15370, 54, 3016, 'attending', '2025-03-29 15:41:52', '2025-12-17 19:46:20', '4oqqKeJm', '7869187'), + (15371, 54, 3017, 'not_attending', '2025-03-20 22:37:22', '2025-12-17 19:46:19', '4oqqKeJm', '7869188'), + (15372, 54, 3018, 'attending', '2025-03-29 15:41:50', '2025-12-17 19:46:20', '4oqqKeJm', '7869189'), + (15373, 54, 3028, 'attending', '2025-04-01 22:39:03', '2025-12-17 19:46:20', '4oqqKeJm', '7869199'), + (15374, 54, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4oqqKeJm', '7869201'), + (15375, 54, 3033, 'attending', '2025-03-11 02:32:21', '2025-12-17 19:46:19', '4oqqKeJm', '7877465'), + (15376, 54, 3034, 'maybe', '2025-03-11 22:24:26', '2025-12-17 19:46:18', '4oqqKeJm', '7878570'), + (15377, 54, 3036, 'attending', '2025-03-13 20:26:12', '2025-12-17 19:46:19', '4oqqKeJm', '7880952'), + (15378, 54, 3038, 'attending', '2025-03-14 02:55:37', '2025-12-17 19:46:19', '4oqqKeJm', '7881989'), + (15379, 54, 3039, 'attending', '2025-03-14 13:14:53', '2025-12-17 19:46:19', '4oqqKeJm', '7881992'), + (15380, 54, 3040, 'attending', '2025-03-14 03:06:02', '2025-12-17 19:46:19', '4oqqKeJm', '7881994'), + (15381, 54, 3041, 'maybe', '2025-03-14 13:15:10', '2025-12-17 19:46:19', '4oqqKeJm', '7881995'), + (15382, 54, 3049, 'not_attending', '2025-03-16 23:00:39', '2025-12-17 19:46:19', '4oqqKeJm', '7883215'), + (15383, 54, 3050, 'not_attending', '2025-03-16 22:57:56', '2025-12-17 19:46:19', '4oqqKeJm', '7884021'), + (15384, 54, 3051, 'attending', '2025-03-16 23:11:00', '2025-12-17 19:46:19', '4oqqKeJm', '7884023'), + (15385, 54, 3052, 'attending', '2025-03-16 23:15:31', '2025-12-17 19:46:19', '4oqqKeJm', '7884024'), + (15386, 54, 3054, 'attending', '2025-03-17 00:47:32', '2025-12-17 19:46:19', '4oqqKeJm', '7884168'), + (15387, 54, 3055, 'attending', '2025-03-21 21:24:02', '2025-12-17 19:46:19', '4oqqKeJm', '7888118'), + (15388, 54, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4oqqKeJm', '7888250'), + (15389, 54, 3058, 'attending', '2025-03-27 22:33:46', '2025-12-17 19:46:19', '4oqqKeJm', '7891460'), + (15390, 54, 3064, 'attending', '2025-03-28 14:09:30', '2025-12-17 19:46:19', '4oqqKeJm', '7892835'), + (15391, 54, 3066, 'maybe', '2025-03-31 14:44:08', '2025-12-17 19:46:20', '4oqqKeJm', '7894207'), + (15392, 54, 3068, 'attending', '2025-03-30 22:46:58', '2025-12-17 19:46:19', '4oqqKeJm', '7894823'), + (15393, 54, 3069, 'attending', '2025-03-31 02:22:29', '2025-12-17 19:46:19', '4oqqKeJm', '7894828'), + (15394, 54, 3070, 'attending', '2025-03-30 23:33:39', '2025-12-17 19:46:20', '4oqqKeJm', '7894829'), + (15395, 54, 3072, 'attending', '2025-04-01 23:07:37', '2025-12-17 19:46:19', '4oqqKeJm', '7895449'), + (15396, 54, 3076, 'attending', '2025-04-05 05:50:53', '2025-12-17 19:46:20', '4oqqKeJm', '7899007'), + (15397, 54, 3081, 'maybe', '2025-04-07 19:48:03', '2025-12-17 19:46:20', '4oqqKeJm', '7902801'), + (15398, 54, 3082, 'attending', '2025-04-09 23:04:13', '2025-12-17 19:46:20', '4oqqKeJm', '7902819'), + (15399, 54, 3084, 'attending', '2025-04-09 14:57:53', '2025-12-17 19:46:20', '4oqqKeJm', '7903687'), + (15400, 54, 3085, 'maybe', '2025-04-11 02:29:59', '2025-12-17 19:46:20', '4oqqKeJm', '7903688'), + (15401, 54, 3088, 'not_attending', '2025-06-12 16:47:01', '2025-12-17 19:46:15', '4oqqKeJm', '7904777'), + (15402, 54, 3090, 'attending', '2025-04-15 23:16:21', '2025-12-17 19:46:20', '4oqqKeJm', '7914315'), + (15403, 54, 3093, 'maybe', '2025-04-19 22:24:21', '2025-12-17 19:46:20', '4oqqKeJm', '8342248'), + (15404, 54, 3094, 'not_attending', '2025-05-10 02:35:42', '2025-12-17 19:46:21', '4oqqKeJm', '8342292'), + (15405, 54, 3095, 'not_attending', '2025-04-27 23:39:25', '2025-12-17 19:46:20', '4oqqKeJm', '8342293'), + (15406, 54, 3096, 'attending', '2025-04-21 08:11:27', '2025-12-17 19:46:20', '4oqqKeJm', '8342987'), + (15407, 54, 3097, 'attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', '4oqqKeJm', '8342993'), + (15408, 54, 3101, 'attending', '2025-04-22 20:00:42', '2025-12-17 19:46:20', '4oqqKeJm', '8345032'), + (15409, 54, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4oqqKeJm', '8349164'), + (15410, 54, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4oqqKeJm', '8349545'), + (15411, 54, 3109, 'maybe', '2025-05-02 00:33:05', '2025-12-17 19:46:21', '4oqqKeJm', '8352001'), + (15412, 54, 3110, 'attending', '2025-04-29 19:54:07', '2025-12-17 19:46:20', '4oqqKeJm', '8353484'), + (15413, 54, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4oqqKeJm', '8353584'), + (15414, 54, 3119, 'maybe', '2025-05-11 00:30:31', '2025-12-17 19:46:21', '4oqqKeJm', '8360035'), + (15415, 54, 3121, 'maybe', '2025-05-10 12:31:20', '2025-12-17 19:46:21', '4oqqKeJm', '8362730'), + (15416, 54, 3122, 'not_attending', '2025-05-07 22:17:52', '2025-12-17 19:46:21', '4oqqKeJm', '8362978'), + (15417, 54, 3126, 'not_attending', '2025-05-14 19:11:46', '2025-12-17 19:46:21', '4oqqKeJm', '8365614'), + (15418, 54, 3131, 'attending', '2025-05-13 00:18:27', '2025-12-17 19:46:21', '4oqqKeJm', '8368028'), + (15419, 54, 3132, 'attending', '2025-05-18 02:26:29', '2025-12-17 19:46:21', '4oqqKeJm', '8368029'), + (15420, 54, 3133, 'attending', '2025-05-25 02:35:45', '2025-12-17 19:46:14', '4oqqKeJm', '8368030'), + (15421, 54, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4oqqKeJm', '8388462'), + (15422, 54, 3150, 'not_attending', '2025-06-18 10:20:12', '2025-12-17 19:46:15', '4oqqKeJm', '8393174'), + (15423, 54, 3153, 'attending', '2025-06-03 17:37:59', '2025-12-17 19:46:15', '4oqqKeJm', '8400273'), + (15424, 54, 3154, 'not_attending', '2025-06-14 10:05:06', '2025-12-17 19:46:15', '4oqqKeJm', '8400274'), + (15425, 54, 3155, 'not_attending', '2025-06-28 17:33:40', '2025-12-17 19:46:16', '4oqqKeJm', '8400275'), + (15426, 54, 3156, 'not_attending', '2025-06-28 17:33:46', '2025-12-17 19:46:16', '4oqqKeJm', '8400276'), + (15427, 54, 3159, 'maybe', '2025-06-04 16:08:54', '2025-12-17 19:46:15', '4oqqKeJm', '8401410'), + (15428, 54, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4oqqKeJm', '8404977'), + (15429, 54, 3172, 'not_attending', '2025-06-18 10:21:29', '2025-12-17 19:46:15', '4oqqKeJm', '8410181'), + (15430, 54, 3176, 'maybe', '2025-06-22 00:14:56', '2025-12-17 19:46:15', '4oqqKeJm', '8416741'), + (15431, 54, 3180, 'maybe', '2025-06-25 10:54:36', '2025-12-17 19:46:15', '4oqqKeJm', '8422682'), + (15432, 54, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '4oqqKeJm', '8430783'), + (15433, 54, 3182, 'maybe', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4oqqKeJm', '8430784'), + (15434, 54, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4oqqKeJm', '8430799'), + (15435, 54, 3184, 'maybe', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4oqqKeJm', '8430800'), + (15436, 54, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4oqqKeJm', '8430801'), + (15437, 54, 3186, 'not_attending', '2025-07-01 01:23:11', '2025-12-17 19:46:16', '4oqqKeJm', '8431527'), + (15438, 54, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4oqqKeJm', '8438709'), + (15439, 54, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4oqqKeJm', '8457738'), + (15440, 54, 3195, 'attending', '2025-07-26 22:03:33', '2025-12-17 19:46:17', '4oqqKeJm', '8458118'), + (15441, 54, 3196, 'attending', '2025-07-30 18:01:27', '2025-12-17 19:46:17', '4oqqKeJm', '8458543'), + (15442, 54, 3198, 'maybe', '2025-07-30 18:02:29', '2025-12-17 19:46:18', '4oqqKeJm', '8459268'), + (15443, 54, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4oqqKeJm', '8459566'), + (15444, 54, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4oqqKeJm', '8459567'), + (15445, 54, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4oqqKeJm', '8461032'), + (15446, 54, 3208, 'maybe', '2025-07-29 04:42:29', '2025-12-17 19:46:17', '4oqqKeJm', '8467717'), + (15447, 54, 3210, 'maybe', '2025-07-30 18:02:37', '2025-12-17 19:46:18', '4oqqKeJm', '8471162'), + (15448, 54, 3211, 'not_attending', '2025-08-04 23:47:28', '2025-12-17 19:46:17', '4oqqKeJm', '8477785'), + (15449, 54, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4oqqKeJm', '8477877'), + (15450, 54, 3217, 'not_attending', '2025-08-11 06:24:30', '2025-12-17 19:46:17', '4oqqKeJm', '8481811'), + (15451, 54, 3219, 'maybe', '2025-08-12 19:49:46', '2025-12-17 19:46:18', '4oqqKeJm', '8482548'), + (15452, 54, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4oqqKeJm', '8485688'), + (15453, 54, 3235, 'maybe', '2025-08-17 21:29:37', '2025-12-17 19:46:18', '4oqqKeJm', '8490587'), + (15454, 54, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4oqqKeJm', '8493552'), + (15455, 54, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4oqqKeJm', '8493553'), + (15456, 54, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4oqqKeJm', '8493554'), + (15457, 54, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4oqqKeJm', '8493555'), + (15458, 54, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4oqqKeJm', '8493556'), + (15459, 54, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4oqqKeJm', '8493557'), + (15460, 54, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4oqqKeJm', '8493558'), + (15461, 54, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4oqqKeJm', '8493559'), + (15462, 54, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4oqqKeJm', '8493560'), + (15463, 54, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '4oqqKeJm', '8493561'), + (15464, 54, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4oqqKeJm', '8493572'), + (15465, 54, 3257, 'maybe', '2025-08-28 05:53:02', '2025-12-17 19:46:11', '4oqqKeJm', '8502340'), + (15466, 54, 3258, 'not_attending', '2025-09-03 19:18:08', '2025-12-17 19:46:11', '4oqqKeJm', '8510285'), + (15467, 54, 3262, 'maybe', '2025-09-05 14:01:49', '2025-12-17 19:46:12', '4oqqKeJm', '8512642'), + (15468, 54, 3271, 'maybe', '2025-09-15 21:16:32', '2025-12-17 19:46:12', '4oqqKeJm', '8521430'), + (15469, 54, 3279, 'not_attending', '2025-10-02 15:38:56', '2025-12-17 19:46:13', '4oqqKeJm', '8535685'), + (15470, 54, 3280, 'maybe', '2025-10-01 14:53:14', '2025-12-17 19:46:13', '4oqqKeJm', '8535686'), + (15471, 54, 3281, 'maybe', '2025-10-01 14:53:18', '2025-12-17 19:46:14', '4oqqKeJm', '8535687'), + (15472, 54, 3282, 'maybe', '2025-10-05 18:07:35', '2025-12-17 19:46:13', '4oqqKeJm', '8537571'), + (15473, 54, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4oqqKeJm', '8540725'), + (15474, 54, 3285, 'not_attending', '2025-10-09 01:26:14', '2025-12-17 19:46:13', '4oqqKeJm', '8540726'), + (15475, 54, 3289, 'attending', '2025-10-12 18:56:05', '2025-12-17 19:46:14', '4oqqKeJm', '8542939'), + (15476, 54, 3295, 'not_attending', '2025-11-01 14:44:57', '2025-12-17 19:46:14', '4oqqKeJm', '8547541'), + (15477, 54, 3300, 'attending', '2025-10-28 14:28:33', '2025-12-17 19:46:14', '4oqqKeJm', '8549145'), + (15478, 54, 3302, 'attending', '2025-11-01 14:45:19', '2025-12-17 19:46:14', '4oqqKeJm', '8550022'), + (15479, 54, 3304, 'maybe', '2025-11-01 14:45:24', '2025-12-17 19:46:14', '4oqqKeJm', '8550024'), + (15480, 54, 3305, 'maybe', '2025-12-02 15:59:18', '2025-12-17 19:46:11', '4oqqKeJm', '8550025'), + (15481, 54, 3308, 'not_attending', '2025-11-02 01:18:32', '2025-12-17 19:46:14', '4oqqKeJm', '8550408'), + (15482, 54, 3309, 'not_attending', '2025-11-02 01:18:35', '2025-12-17 19:46:14', '4oqqKeJm', '8550409'), + (15483, 54, 3311, 'not_attending', '2025-12-04 16:15:27', '2025-12-17 19:46:11', '4oqqKeJm', '8550412'), + (15484, 54, 3313, 'not_attending', '2025-11-02 14:43:47', '2025-12-17 19:46:14', '4oqqKeJm', '8550896'), + (15485, 54, 3314, 'not_attending', '2025-11-02 14:43:43', '2025-12-17 19:46:14', '4oqqKeJm', '8551821'), + (15486, 54, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4oqqKeJm', '8555421'), + (15487, 54, 3336, 'maybe', '2025-12-12 18:10:41', '2025-12-17 19:46:11', '4oqqKeJm', '8563248'), + (15488, 56, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'v4Do21MA', '7074364'), + (15489, 56, 2688, 'attending', '2024-06-21 09:55:35', '2025-12-17 19:46:29', 'v4Do21MA', '7324073'), + (15490, 56, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'v4Do21MA', '7324074'), + (15491, 56, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'v4Do21MA', '7324075'), + (15492, 56, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'v4Do21MA', '7324078'), + (15493, 56, 2696, 'attending', '2024-08-22 22:32:45', '2025-12-17 19:46:32', 'v4Do21MA', '7324081'), + (15494, 56, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'v4Do21MA', '7324082'), + (15495, 56, 2705, 'attending', '2024-06-29 00:59:39', '2025-12-17 19:46:29', 'v4Do21MA', '7324944'), + (15496, 56, 2719, 'attending', '2024-06-23 17:56:31', '2025-12-17 19:46:29', 'v4Do21MA', '7331305'), + (15497, 56, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'v4Do21MA', '7331457'), + (15498, 56, 2723, 'attending', '2024-06-19 21:47:52', '2025-12-17 19:46:29', 'v4Do21MA', '7332389'), + (15499, 56, 2725, 'not_attending', '2024-06-19 19:53:35', '2025-12-17 19:46:28', 'v4Do21MA', '7332564'), + (15500, 56, 2733, 'attending', '2024-06-26 14:58:31', '2025-12-17 19:46:29', 'v4Do21MA', '7338853'), + (15501, 56, 2734, 'attending', '2024-07-04 23:54:08', '2025-12-17 19:46:29', 'v4Do21MA', '7339440'), + (15502, 56, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'v4Do21MA', '7356752'), + (15503, 56, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'v4Do21MA', '7363643'), + (15504, 56, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'v4Do21MA', '7368606'), + (15505, 56, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'v4Do21MA', '7397462'), + (15506, 56, 2808, 'attending', '2024-09-01 17:11:54', '2025-12-17 19:46:32', 'v4Do21MA', '7412860'), + (15507, 56, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'v4Do21MA', '7424275'), + (15508, 56, 2822, 'attending', '2024-11-10 16:20:50', '2025-12-17 19:46:26', 'v4Do21MA', '7424276'), + (15509, 56, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'v4Do21MA', '7432751'), + (15510, 56, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'v4Do21MA', '7432752'), + (15511, 56, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'v4Do21MA', '7432753'), + (15512, 56, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'v4Do21MA', '7432754'), + (15513, 56, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'v4Do21MA', '7432755'), + (15514, 56, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'v4Do21MA', '7432756'), + (15515, 56, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'v4Do21MA', '7432758'), + (15516, 56, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'v4Do21MA', '7432759'), + (15517, 56, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'v4Do21MA', '7433834'), + (15518, 56, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'v4Do21MA', '7470197'), + (15519, 56, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'v4Do21MA', '7685613'), + (15520, 56, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'v4Do21MA', '7688194'), + (15521, 56, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'v4Do21MA', '7688196'), + (15522, 56, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'v4Do21MA', '7688289'), + (15523, 56, 2909, 'attending', '2024-11-10 21:21:05', '2025-12-17 19:46:27', 'v4Do21MA', '7689771'), + (15524, 56, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'v4Do21MA', '7692763'), + (15525, 56, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'v4Do21MA', '7697552'), + (15526, 56, 2915, 'attending', '2024-11-22 00:35:35', '2025-12-17 19:46:27', 'v4Do21MA', '7698151'), + (15527, 56, 2917, 'attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'v4Do21MA', '7699878'), + (15528, 56, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'v4Do21MA', '7704043'), + (15529, 56, 2920, 'attending', '2024-11-23 23:04:56', '2025-12-17 19:46:28', 'v4Do21MA', '7708406'), + (15530, 56, 2921, 'attending', '2024-11-25 02:27:24', '2025-12-17 19:46:28', 'v4Do21MA', '7708460'), + (15531, 56, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'v4Do21MA', '7712467'), + (15532, 56, 2925, 'attending', '2024-12-11 13:18:35', '2025-12-17 19:46:21', 'v4Do21MA', '7713584'), + (15533, 56, 2926, 'attending', '2024-12-06 19:58:06', '2025-12-17 19:46:21', 'v4Do21MA', '7713585'), + (15534, 56, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'v4Do21MA', '7713586'), + (15535, 56, 2937, 'attending', '2024-12-14 18:04:59', '2025-12-17 19:46:21', 'v4Do21MA', '7725955'), + (15536, 56, 2941, 'attending', '2025-02-07 13:44:32', '2025-12-17 19:46:23', 'v4Do21MA', '7725959'), + (15537, 56, 2946, 'attending', '2025-03-25 12:09:17', '2025-12-17 19:46:19', 'v4Do21MA', '7725965'), + (15538, 56, 2947, 'attending', '2024-12-10 19:39:15', '2025-12-17 19:46:21', 'v4Do21MA', '7727445'), + (15539, 56, 2951, 'attending', '2024-12-11 13:18:27', '2025-12-17 19:46:21', 'v4Do21MA', '7729509'), + (15540, 56, 2952, 'attending', '2024-12-12 15:53:21', '2025-12-17 19:46:21', 'v4Do21MA', '7730167'), + (15541, 56, 2953, 'attending', '2024-12-15 04:41:47', '2025-12-17 19:46:21', 'v4Do21MA', '7733836'), + (15542, 56, 2954, 'attending', '2024-12-14 18:04:53', '2025-12-17 19:46:21', 'v4Do21MA', '7734260'), + (15543, 56, 2957, 'attending', '2024-12-16 17:03:12', '2025-12-17 19:46:21', 'v4Do21MA', '7735370'), + (15544, 56, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'v4Do21MA', '7738518'), + (15545, 56, 2962, 'not_attending', '2024-12-27 22:26:20', '2025-12-17 19:46:22', 'v4Do21MA', '7750632'), + (15546, 56, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'v4Do21MA', '7750636'), + (15547, 56, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'v4Do21MA', '7796540'), + (15548, 56, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'v4Do21MA', '7796541'), + (15549, 56, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'v4Do21MA', '7796542'), + (15550, 56, 2967, 'attending', '2025-01-08 22:09:21', '2025-12-17 19:46:22', 'v4Do21MA', '7797181'), + (15551, 56, 2968, 'maybe', '2025-01-08 20:13:27', '2025-12-17 19:46:22', 'v4Do21MA', '7797967'), + (15552, 56, 2971, 'not_attending', '2025-01-15 00:36:58', '2025-12-17 19:46:22', 'v4Do21MA', '7812230'), + (15553, 56, 2972, 'attending', '2025-01-15 20:13:33', '2025-12-17 19:46:22', 'v4Do21MA', '7812563'), + (15554, 56, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'v4Do21MA', '7825913'), + (15555, 56, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'v4Do21MA', '7826209'), + (15556, 56, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'v4Do21MA', '7834742'), + (15557, 56, 2986, 'attending', '2025-02-07 20:58:30', '2025-12-17 19:46:23', 'v4Do21MA', '7835405'), + (15558, 56, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'v4Do21MA', '7842108'), + (15559, 56, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'v4Do21MA', '7842902'), + (15560, 56, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'v4Do21MA', '7842903'), + (15561, 56, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'v4Do21MA', '7842904'), + (15562, 56, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'v4Do21MA', '7842905'), + (15563, 56, 3000, 'maybe', '2025-02-22 19:45:45', '2025-12-17 19:46:24', 'v4Do21MA', '7852541'), + (15564, 56, 3004, 'attending', '2025-02-19 12:09:59', '2025-12-17 19:46:24', 'v4Do21MA', '7854599'), + (15565, 56, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'v4Do21MA', '7855719'), + (15566, 56, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'v4Do21MA', '7860683'), + (15567, 56, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'v4Do21MA', '7860684'), + (15568, 56, 3009, 'maybe', '2025-03-02 03:53:56', '2025-12-17 19:46:18', 'v4Do21MA', '7864019'), + (15569, 56, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'v4Do21MA', '7866095'), + (15570, 56, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'v4Do21MA', '7869170'), + (15571, 56, 3014, 'attending', '2025-03-31 22:46:42', '2025-12-17 19:46:19', 'v4Do21MA', '7869185'), + (15572, 56, 3015, 'attending', '2025-04-23 23:42:49', '2025-12-17 19:46:20', 'v4Do21MA', '7869186'), + (15573, 56, 3016, 'attending', '2025-04-17 21:01:20', '2025-12-17 19:46:20', 'v4Do21MA', '7869187'), + (15574, 56, 3017, 'attending', '2025-03-25 12:09:12', '2025-12-17 19:46:19', 'v4Do21MA', '7869188'), + (15575, 56, 3018, 'attending', '2025-04-09 12:05:32', '2025-12-17 19:46:20', 'v4Do21MA', '7869189'), + (15576, 56, 3020, 'attending', '2025-04-17 21:01:23', '2025-12-17 19:46:20', 'v4Do21MA', '7869191'), + (15577, 56, 3028, 'attending', '2025-03-29 15:48:20', '2025-12-17 19:46:20', 'v4Do21MA', '7869199'), + (15578, 56, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'v4Do21MA', '7869201'), + (15579, 56, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'v4Do21MA', '7877465'), + (15580, 56, 3034, 'attending', '2025-03-11 16:57:33', '2025-12-17 19:46:18', 'v4Do21MA', '7878570'), + (15581, 56, 3036, 'attending', '2025-03-13 22:46:29', '2025-12-17 19:46:19', 'v4Do21MA', '7880952'), + (15582, 56, 3038, 'attending', '2025-03-14 11:09:53', '2025-12-17 19:46:19', 'v4Do21MA', '7881989'), + (15583, 56, 3039, 'attending', '2025-03-14 09:30:37', '2025-12-17 19:46:19', 'v4Do21MA', '7881992'), + (15584, 56, 3040, 'attending', '2025-03-14 09:30:33', '2025-12-17 19:46:19', 'v4Do21MA', '7881994'), + (15585, 56, 3041, 'maybe', '2025-03-15 00:18:49', '2025-12-17 19:46:19', 'v4Do21MA', '7881995'), + (15586, 56, 3042, 'attending', '2025-03-15 01:12:21', '2025-12-17 19:46:19', 'v4Do21MA', '7882467'), + (15587, 56, 3043, 'attending', '2025-03-15 19:14:47', '2025-12-17 19:46:19', 'v4Do21MA', '7882587'), + (15588, 56, 3044, 'attending', '2025-03-25 12:09:14', '2025-12-17 19:46:19', 'v4Do21MA', '7882690'), + (15589, 56, 3045, 'attending', '2025-03-31 22:46:45', '2025-12-17 19:46:19', 'v4Do21MA', '7882691'), + (15590, 56, 3046, 'attending', '2025-04-09 12:05:33', '2025-12-17 19:46:20', 'v4Do21MA', '7882692'), + (15591, 56, 3048, 'attending', '2025-04-17 21:01:18', '2025-12-17 19:46:20', 'v4Do21MA', '7882694'), + (15592, 56, 3051, 'attending', '2025-03-16 23:10:27', '2025-12-17 19:46:19', 'v4Do21MA', '7884023'), + (15593, 56, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'v4Do21MA', '7888250'), + (15594, 56, 3067, 'attending', '2025-04-04 22:40:47', '2025-12-17 19:46:19', 'v4Do21MA', '7894745'), + (15595, 56, 3068, 'attending', '2025-03-30 22:46:58', '2025-12-17 19:46:19', 'v4Do21MA', '7894823'), + (15596, 56, 3069, 'attending', '2025-03-30 23:38:57', '2025-12-17 19:46:19', 'v4Do21MA', '7894828'), + (15597, 56, 3070, 'attending', '2025-03-30 23:33:39', '2025-12-17 19:46:20', 'v4Do21MA', '7894829'), + (15598, 56, 3072, 'attending', '2025-04-03 20:19:08', '2025-12-17 19:46:19', 'v4Do21MA', '7895449'), + (15599, 56, 3074, 'attending', '2025-04-05 14:32:47', '2025-12-17 19:46:19', 'v4Do21MA', '7897784'), + (15600, 56, 3075, 'attending', '2025-04-17 21:00:53', '2025-12-17 19:46:20', 'v4Do21MA', '7898896'), + (15601, 56, 3076, 'attending', '2025-04-05 05:50:53', '2025-12-17 19:46:20', 'v4Do21MA', '7899007'), + (15602, 56, 3086, 'attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'v4Do21MA', '7903852'), + (15603, 56, 3088, 'attending', '2025-06-13 18:36:53', '2025-12-17 19:46:15', 'v4Do21MA', '7904777'), + (15604, 56, 3094, 'attending', '2025-05-10 17:58:30', '2025-12-17 19:46:21', 'v4Do21MA', '8342292'), + (15605, 56, 3095, 'attending', '2025-04-30 03:07:24', '2025-12-17 19:46:20', 'v4Do21MA', '8342293'), + (15606, 56, 3101, 'attending', '2025-04-22 19:53:57', '2025-12-17 19:46:20', 'v4Do21MA', '8345032'), + (15607, 56, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'v4Do21MA', '8349164'), + (15608, 56, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'v4Do21MA', '8349545'), + (15609, 56, 3108, 'attending', '2025-04-30 03:07:26', '2025-12-17 19:46:20', 'v4Do21MA', '8351411'), + (15610, 56, 3112, 'attending', '2025-05-07 01:02:46', '2025-12-17 19:46:21', 'v4Do21MA', '8353584'), + (15611, 56, 3120, 'attending', '2025-05-07 22:28:52', '2025-12-17 19:46:21', 'v4Do21MA', '8360736'), + (15612, 56, 3123, 'attending', '2025-05-09 20:55:30', '2025-12-17 19:46:21', 'v4Do21MA', '8363523'), + (15613, 56, 3127, 'attending', '2025-05-16 23:39:28', '2025-12-17 19:46:21', 'v4Do21MA', '8365615'), + (15614, 56, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'v4Do21MA', '8368028'), + (15615, 56, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'v4Do21MA', '8368029'), + (15616, 56, 3133, 'attending', '2025-05-29 13:33:10', '2025-12-17 19:46:14', 'v4Do21MA', '8368030'), + (15617, 56, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'v4Do21MA', '8388462'), + (15618, 56, 3144, 'attending', '2025-05-30 20:25:04', '2025-12-17 19:46:14', 'v4Do21MA', '8393073'), + (15619, 56, 3150, 'not_attending', '2025-06-21 22:57:32', '2025-12-17 19:46:15', 'v4Do21MA', '8393174'), + (15620, 56, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'v4Do21MA', '8400273'), + (15621, 56, 3154, 'attending', '2025-06-26 05:39:05', '2025-12-17 19:46:15', 'v4Do21MA', '8400274'), + (15622, 56, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'v4Do21MA', '8400275'), + (15623, 56, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'v4Do21MA', '8400276'), + (15624, 56, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'v4Do21MA', '8404977'), + (15625, 56, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'v4Do21MA', '8430783'), + (15626, 56, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'v4Do21MA', '8430784'), + (15627, 56, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'v4Do21MA', '8430799'), + (15628, 56, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'v4Do21MA', '8430800'), + (15629, 56, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'v4Do21MA', '8430801'), + (15630, 56, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'v4Do21MA', '8438709'), + (15631, 56, 3190, 'attending', '2025-07-12 19:44:54', '2025-12-17 19:46:17', 'v4Do21MA', '8443962'), + (15632, 56, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'v4Do21MA', '8457738'), + (15633, 56, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'v4Do21MA', '8459566'), + (15634, 56, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'v4Do21MA', '8459567'), + (15635, 56, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'v4Do21MA', '8461032'), + (15636, 56, 3206, 'attending', '2025-07-22 17:48:17', '2025-12-17 19:46:17', 'v4Do21MA', '8462943'), + (15637, 56, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'v4Do21MA', '8477877'), + (15638, 56, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'v4Do21MA', '8485688'), + (15639, 56, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'v4Do21MA', '8490587'), + (15640, 56, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'v4Do21MA', '8493552'), + (15641, 56, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'v4Do21MA', '8493553'), + (15642, 56, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'v4Do21MA', '8493554'), + (15643, 56, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'v4Do21MA', '8493555'), + (15644, 56, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'v4Do21MA', '8493556'), + (15645, 56, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'v4Do21MA', '8493557'), + (15646, 56, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'v4Do21MA', '8493558'), + (15647, 56, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'v4Do21MA', '8493559'), + (15648, 56, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'v4Do21MA', '8493560'), + (15649, 56, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'v4Do21MA', '8493561'), + (15650, 56, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'v4Do21MA', '8493572'), + (15651, 56, 3283, 'attending', '2025-10-05 03:08:09', '2025-12-17 19:46:14', 'v4Do21MA', '8538077'), + (15652, 56, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'v4Do21MA', '8540725'), + (15653, 56, 3289, 'attending', '2025-10-24 18:40:48', '2025-12-17 19:46:14', 'v4Do21MA', '8542939'), + (15654, 56, 3290, 'attending', '2025-10-13 20:30:29', '2025-12-17 19:46:13', 'v4Do21MA', '8542943'), + (15655, 56, 3294, 'attending', '2025-10-18 16:09:04', '2025-12-17 19:46:14', 'v4Do21MA', '8546775'), + (15656, 56, 3295, 'not_attending', '2025-11-01 22:52:33', '2025-12-17 19:46:14', 'v4Do21MA', '8547541'), + (15657, 56, 3300, 'attending', '2025-11-05 05:17:00', '2025-12-17 19:46:14', 'v4Do21MA', '8549145'), + (15658, 56, 3302, 'attending', '2025-11-16 00:22:46', '2025-12-17 19:46:14', 'v4Do21MA', '8550022'), + (15659, 56, 3304, 'attending', '2025-11-23 00:13:18', '2025-12-17 19:46:14', 'v4Do21MA', '8550024'), + (15660, 56, 3305, 'attending', '2025-12-04 08:00:20', '2025-12-17 19:46:11', 'v4Do21MA', '8550025'), + (15661, 56, 3306, 'attending', '2025-12-11 17:31:36', '2025-12-17 19:46:11', 'v4Do21MA', '8550026'), + (15662, 56, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'v4Do21MA', '8555421'), + (15663, 56, 3333, 'attending', '2025-12-04 05:05:01', '2025-12-17 19:46:11', 'v4Do21MA', '8562500'), + (15664, 56, 3343, 'attending', '2025-12-14 04:42:09', '2025-12-17 19:46:11', 'v4Do21MA', '8564411'), + (15665, 56, 3346, 'attending', '2025-12-30 00:27:56', '2025-12-30 00:27:56', NULL, NULL), + (15666, 57, 393, 'attending', '2021-06-22 23:31:30', '2025-12-17 19:47:38', 'xAY1yRaA', '3236448'), + (15667, 57, 745, 'attending', '2021-07-02 22:04:53', '2025-12-17 19:47:38', 'xAY1yRaA', '3680625'), + (15668, 57, 746, 'attending', '2021-07-09 19:59:17', '2025-12-17 19:47:39', 'xAY1yRaA', '3680626'), + (15669, 57, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xAY1yRaA', '4021848'), + (15670, 57, 869, 'attending', '2021-06-29 00:37:00', '2025-12-17 19:47:38', 'xAY1yRaA', '4136744'), + (15671, 57, 870, 'attending', '2021-07-02 21:19:36', '2025-12-17 19:47:39', 'xAY1yRaA', '4136937'), + (15672, 57, 871, 'attending', '2021-07-05 10:14:49', '2025-12-17 19:47:39', 'xAY1yRaA', '4136938'), + (15673, 57, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'xAY1yRaA', '4136947'), + (15674, 57, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'xAY1yRaA', '4210314'), + (15675, 57, 885, 'attending', '2021-06-27 22:44:40', '2025-12-17 19:47:38', 'xAY1yRaA', '4222370'), + (15676, 57, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xAY1yRaA', '4225444'), + (15677, 57, 896, 'attending', '2021-06-29 00:37:08', '2025-12-17 19:47:38', 'xAY1yRaA', '4231145'), + (15678, 57, 897, 'not_attending', '2021-06-28 09:55:03', '2025-12-17 19:47:38', 'xAY1yRaA', '4232132'), + (15679, 57, 899, 'maybe', '2021-07-04 15:08:29', '2025-12-17 19:47:39', 'xAY1yRaA', '4239259'), + (15680, 57, 900, 'attending', '2021-07-18 22:15:57', '2025-12-17 19:47:40', 'xAY1yRaA', '4240316'), + (15681, 57, 901, 'attending', '2021-07-30 21:25:44', '2025-12-17 19:47:40', 'xAY1yRaA', '4240317'), + (15682, 57, 902, 'attending', '2021-08-04 10:03:57', '2025-12-17 19:47:41', 'xAY1yRaA', '4240318'), + (15683, 57, 903, 'attending', '2021-08-09 09:50:09', '2025-12-17 19:47:42', 'xAY1yRaA', '4240320'), + (15684, 57, 905, 'not_attending', '2021-07-05 10:15:07', '2025-12-17 19:47:39', 'xAY1yRaA', '4250163'), + (15685, 57, 909, 'attending', '2021-07-10 19:34:30', '2025-12-17 19:47:39', 'xAY1yRaA', '4258187'), + (15686, 57, 910, 'attending', '2021-07-10 21:10:48', '2025-12-17 19:47:39', 'xAY1yRaA', '4258189'), + (15687, 57, 918, 'attending', '2021-07-12 19:37:43', '2025-12-17 19:47:39', 'xAY1yRaA', '4274486'), + (15688, 57, 919, 'maybe', '2021-07-17 16:22:39', '2025-12-17 19:47:39', 'xAY1yRaA', '4275957'), + (15689, 57, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xAY1yRaA', '4277819'), + (15690, 57, 922, 'attending', '2021-07-23 10:42:20', '2025-12-17 19:47:40', 'xAY1yRaA', '4280811'), + (15691, 57, 926, 'attending', '2021-08-16 16:34:28', '2025-12-17 19:47:42', 'xAY1yRaA', '4297211'), + (15692, 57, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xAY1yRaA', '4301723'), + (15693, 57, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xAY1yRaA', '4302093'), + (15694, 57, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xAY1yRaA', '4304151'), + (15695, 57, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'xAY1yRaA', '4345519'), + (15696, 57, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'xAY1yRaA', '4356801'), + (15697, 57, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xAY1yRaA', '4358025'), + (15698, 57, 973, 'attending', '2021-08-19 11:56:32', '2025-12-17 19:47:42', 'xAY1yRaA', '4366186'), + (15699, 57, 974, 'attending', '2021-08-23 11:46:21', '2025-12-17 19:47:42', 'xAY1yRaA', '4366187'), + (15700, 57, 977, 'maybe', '2021-08-20 15:50:57', '2025-12-17 19:47:42', 'xAY1yRaA', '4378479'), + (15701, 57, 978, 'attending', '2021-08-21 20:04:14', '2025-12-17 19:47:42', 'xAY1yRaA', '4378509'), + (15702, 57, 986, 'attending', '2021-08-22 17:28:16', '2025-12-17 19:47:42', 'xAY1yRaA', '4394209'), + (15703, 57, 988, 'not_attending', '2021-08-27 20:48:57', '2025-12-17 19:47:42', 'xAY1yRaA', '4402823'), + (15704, 57, 990, 'attending', '2021-08-28 22:56:10', '2025-12-17 19:47:43', 'xAY1yRaA', '4420735'), + (15705, 57, 991, 'attending', '2021-08-28 22:56:13', '2025-12-17 19:47:43', 'xAY1yRaA', '4420738'), + (15706, 57, 992, 'attending', '2021-09-15 10:07:07', '2025-12-17 19:47:33', 'xAY1yRaA', '4420739'), + (15707, 57, 993, 'attending', '2021-09-24 22:00:34', '2025-12-17 19:47:34', 'xAY1yRaA', '4420741'), + (15708, 57, 994, 'attending', '2021-09-28 22:03:18', '2025-12-17 19:47:34', 'xAY1yRaA', '4420742'), + (15709, 57, 995, 'attending', '2021-10-09 09:06:58', '2025-12-17 19:47:34', 'xAY1yRaA', '4420744'), + (15710, 57, 996, 'attending', '2021-10-02 15:53:42', '2025-12-17 19:47:35', 'xAY1yRaA', '4420747'), + (15711, 57, 997, 'attending', '2021-10-11 09:50:17', '2025-12-17 19:47:35', 'xAY1yRaA', '4420748'), + (15712, 57, 998, 'attending', '2021-10-11 09:50:19', '2025-12-17 19:47:36', 'xAY1yRaA', '4420749'), + (15713, 57, 999, 'not_attending', '2021-08-31 14:29:18', '2025-12-17 19:47:43', 'xAY1yRaA', '4421150'), + (15714, 57, 1017, 'not_attending', '2021-09-06 20:11:47', '2025-12-17 19:47:43', 'xAY1yRaA', '4441822'), + (15715, 57, 1019, 'not_attending', '2021-09-16 21:54:43', '2025-12-17 19:47:43', 'xAY1yRaA', '4450515'), + (15716, 57, 1022, 'attending', '2021-09-15 22:01:29', '2025-12-17 19:47:43', 'xAY1yRaA', '4458628'), + (15717, 57, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'xAY1yRaA', '4461883'), + (15718, 57, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'xAY1yRaA', '4508342'), + (15719, 57, 1072, 'attending', '2021-10-06 20:13:38', '2025-12-17 19:47:34', 'xAY1yRaA', '4516287'), + (15720, 57, 1074, 'attending', '2021-09-29 09:28:40', '2025-12-17 19:47:34', 'xAY1yRaA', '4528953'), + (15721, 57, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'xAY1yRaA', '4568602'), + (15722, 57, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'xAY1yRaA', '4572153'), + (15723, 57, 1092, 'attending', '2021-10-21 19:51:45', '2025-12-17 19:47:35', 'xAY1yRaA', '4582837'), + (15724, 57, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xAY1yRaA', '4585962'), + (15725, 57, 1095, 'attending', '2021-10-27 21:05:25', '2025-12-17 19:47:35', 'xAY1yRaA', '4596356'), + (15726, 57, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xAY1yRaA', '4598860'), + (15727, 57, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xAY1yRaA', '4598861'), + (15728, 57, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'xAY1yRaA', '4602797'), + (15729, 57, 1114, 'attending', '2021-11-11 22:47:19', '2025-12-17 19:47:36', 'xAY1yRaA', '4637896'), + (15730, 57, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xAY1yRaA', '4642994'), + (15731, 57, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'xAY1yRaA', '4642995'), + (15732, 57, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xAY1yRaA', '4642996'), + (15733, 57, 1119, 'attending', '2021-12-19 16:58:56', '2025-12-17 19:47:31', 'xAY1yRaA', '4642997'), + (15734, 57, 1126, 'attending', '2021-12-11 20:30:55', '2025-12-17 19:47:38', 'xAY1yRaA', '4645687'), + (15735, 57, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xAY1yRaA', '4645698'), + (15736, 57, 1128, 'attending', '2021-11-18 00:22:29', '2025-12-17 19:47:37', 'xAY1yRaA', '4645704'), + (15737, 57, 1129, 'not_attending', '2021-11-27 22:17:34', '2025-12-17 19:47:37', 'xAY1yRaA', '4645705'), + (15738, 57, 1130, 'not_attending', '2021-12-04 22:10:05', '2025-12-17 19:47:37', 'xAY1yRaA', '4658824'), + (15739, 57, 1131, 'maybe', '2021-12-18 22:32:15', '2025-12-17 19:47:31', 'xAY1yRaA', '4658825'), + (15740, 57, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'xAY1yRaA', '4668385'), + (15741, 57, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'xAY1yRaA', '4694407'), + (15742, 57, 1151, 'attending', '2022-01-02 22:14:57', '2025-12-17 19:47:31', 'xAY1yRaA', '4708704'), + (15743, 57, 1173, 'attending', '2022-01-08 20:25:36', '2025-12-17 19:47:31', 'xAY1yRaA', '4736495'), + (15744, 57, 1174, 'attending', '2022-01-14 11:43:25', '2025-12-17 19:47:31', 'xAY1yRaA', '4736496'), + (15745, 57, 1175, 'attending', '2022-01-22 12:01:31', '2025-12-17 19:47:32', 'xAY1yRaA', '4736497'), + (15746, 57, 1176, 'attending', '2022-02-05 19:21:02', '2025-12-17 19:47:32', 'xAY1yRaA', '4736498'), + (15747, 57, 1177, 'attending', '2022-02-11 19:44:38', '2025-12-17 19:47:32', 'xAY1yRaA', '4736499'), + (15748, 57, 1178, 'attending', '2022-01-28 00:26:49', '2025-12-17 19:47:32', 'xAY1yRaA', '4736500'), + (15749, 57, 1181, 'not_attending', '2022-03-05 16:26:07', '2025-12-17 19:47:33', 'xAY1yRaA', '4736503'), + (15750, 57, 1182, 'attending', '2022-03-11 22:58:13', '2025-12-17 19:47:33', 'xAY1yRaA', '4736504'), + (15751, 57, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xAY1yRaA', '4746789'), + (15752, 57, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xAY1yRaA', '4753929'), + (15753, 57, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xAY1yRaA', '5038850'), + (15754, 57, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xAY1yRaA', '5045826'), + (15755, 57, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xAY1yRaA', '5132533'), + (15756, 57, 1272, 'maybe', '2022-03-17 20:54:38', '2025-12-17 19:47:25', 'xAY1yRaA', '5186582'), + (15757, 57, 1273, 'attending', '2022-03-25 20:20:43', '2025-12-17 19:47:25', 'xAY1yRaA', '5186583'), + (15758, 57, 1274, 'attending', '2022-04-02 18:20:49', '2025-12-17 19:47:26', 'xAY1yRaA', '5186585'), + (15759, 57, 1281, 'attending', '2022-04-06 20:19:41', '2025-12-17 19:47:27', 'xAY1yRaA', '5190437'), + (15760, 57, 1284, 'attending', '2022-04-16 10:59:30', '2025-12-17 19:47:27', 'xAY1yRaA', '5195095'), + (15761, 57, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xAY1yRaA', '5215989'), + (15762, 57, 1305, 'attending', '2022-04-10 22:33:52', '2025-12-17 19:47:27', 'xAY1yRaA', '5223673'), + (15763, 57, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'xAY1yRaA', '5223686'), + (15764, 57, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'xAY1yRaA', '5227432'), + (15765, 57, 1346, 'attending', '2022-04-20 20:37:46', '2025-12-17 19:47:27', 'xAY1yRaA', '5247467'), + (15766, 57, 1357, 'attending', '2022-04-25 19:53:06', '2025-12-17 19:47:27', 'xAY1yRaA', '5256017'), + (15767, 57, 1362, 'attending', '2022-04-25 19:52:52', '2025-12-17 19:47:28', 'xAY1yRaA', '5260800'), + (15768, 57, 1364, 'attending', '2022-05-03 20:26:12', '2025-12-17 19:47:28', 'xAY1yRaA', '5261598'), + (15769, 57, 1374, 'attending', '2022-05-03 20:23:45', '2025-12-17 19:47:28', 'xAY1yRaA', '5269930'), + (15770, 57, 1378, 'attending', '2022-05-07 16:59:37', '2025-12-17 19:47:28', 'xAY1yRaA', '5271448'), + (15771, 57, 1379, 'attending', '2022-05-18 20:31:54', '2025-12-17 19:47:29', 'xAY1yRaA', '5271449'), + (15772, 57, 1383, 'attending', '2022-05-13 21:04:32', '2025-12-17 19:47:28', 'xAY1yRaA', '5276469'), + (15773, 57, 1385, 'attending', '2022-05-11 22:45:50', '2025-12-17 19:47:28', 'xAY1yRaA', '5277822'), + (15774, 57, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'xAY1yRaA', '5278159'), + (15775, 57, 1401, 'attending', '2022-05-18 20:47:19', '2025-12-17 19:47:29', 'xAY1yRaA', '5286295'), + (15776, 57, 1407, 'attending', '2022-06-03 21:38:23', '2025-12-17 19:47:30', 'xAY1yRaA', '5363695'), + (15777, 57, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'xAY1yRaA', '5365960'), + (15778, 57, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'xAY1yRaA', '5368973'), + (15779, 57, 1423, 'attending', '2022-06-03 21:38:39', '2025-12-17 19:47:17', 'xAY1yRaA', '5375727'), + (15780, 57, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'xAY1yRaA', '5378247'), + (15781, 57, 1431, 'attending', '2022-06-03 21:38:28', '2025-12-17 19:47:30', 'xAY1yRaA', '5389605'), + (15782, 57, 1442, 'attending', '2022-06-03 21:38:30', '2025-12-17 19:47:17', 'xAY1yRaA', '5397265'), + (15783, 57, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'xAY1yRaA', '5403967'), + (15784, 57, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'xAY1yRaA', '5404786'), + (15785, 57, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'xAY1yRaA', '5405203'), + (15786, 57, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'xAY1yRaA', '5408794'), + (15787, 57, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'xAY1yRaA', '5411699'), + (15788, 57, 1482, 'attending', '2022-06-25 15:16:43', '2025-12-17 19:47:19', 'xAY1yRaA', '5412550'), + (15789, 57, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'xAY1yRaA', '5415046'), + (15790, 57, 1491, 'attending', '2022-07-08 20:09:13', '2025-12-17 19:47:19', 'xAY1yRaA', '5420158'), + (15791, 57, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'xAY1yRaA', '5422086'), + (15792, 57, 1498, 'attending', '2022-06-27 00:09:30', '2025-12-17 19:47:19', 'xAY1yRaA', '5422406'), + (15793, 57, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'xAY1yRaA', '5424565'), + (15794, 57, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'xAY1yRaA', '5426882'), + (15795, 57, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'xAY1yRaA', '5427083'), + (15796, 57, 1508, 'attending', '2022-07-02 20:48:12', '2025-12-17 19:47:19', 'xAY1yRaA', '5433453'), + (15797, 57, 1511, 'attending', '2022-07-08 20:09:17', '2025-12-17 19:47:19', 'xAY1yRaA', '5437733'), + (15798, 57, 1513, 'attending', '2022-07-09 09:20:42', '2025-12-17 19:47:19', 'xAY1yRaA', '5441125'), + (15799, 57, 1514, 'attending', '2022-07-09 09:27:40', '2025-12-17 19:47:20', 'xAY1yRaA', '5441126'), + (15800, 57, 1515, 'attending', '2022-08-06 18:28:45', '2025-12-17 19:47:21', 'xAY1yRaA', '5441128'), + (15801, 57, 1516, 'attending', '2022-08-19 09:23:43', '2025-12-17 19:47:23', 'xAY1yRaA', '5441129'), + (15802, 57, 1517, 'attending', '2022-08-19 09:23:44', '2025-12-17 19:47:23', 'xAY1yRaA', '5441130'), + (15803, 57, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'xAY1yRaA', '5441131'), + (15804, 57, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'xAY1yRaA', '5441132'), + (15805, 57, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'xAY1yRaA', '5446643'), + (15806, 57, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'xAY1yRaA', '5453325'), + (15807, 57, 1541, 'attending', '2022-07-25 20:31:02', '2025-12-17 19:47:20', 'xAY1yRaA', '5453542'), + (15808, 57, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'xAY1yRaA', '5454516'), + (15809, 57, 1544, 'maybe', '2022-09-11 15:34:54', '2025-12-17 19:47:11', 'xAY1yRaA', '5454517'), + (15810, 57, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'xAY1yRaA', '5454605'), + (15811, 57, 1551, 'attending', '2022-07-19 21:20:08', '2025-12-17 19:47:20', 'xAY1yRaA', '5455037'), + (15812, 57, 1557, 'attending', '2022-07-23 15:48:48', '2025-12-17 19:47:21', 'xAY1yRaA', '5458729'), + (15813, 57, 1558, 'attending', '2022-07-23 21:31:58', '2025-12-17 19:47:10', 'xAY1yRaA', '5458730'), + (15814, 57, 1559, 'attending', '2022-07-23 21:31:56', '2025-12-17 19:47:11', 'xAY1yRaA', '5458731'), + (15815, 57, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'xAY1yRaA', '5461278'), + (15816, 57, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'xAY1yRaA', '5469480'), + (15817, 57, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'xAY1yRaA', '5471073'), + (15818, 57, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'xAY1yRaA', '5474663'), + (15819, 57, 1569, 'attending', '2022-08-05 18:21:02', '2025-12-17 19:47:21', 'xAY1yRaA', '5481507'), + (15820, 57, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'xAY1yRaA', '5482022'), + (15821, 57, 1575, 'attending', '2022-08-26 16:14:34', '2025-12-17 19:47:23', 'xAY1yRaA', '5482250'), + (15822, 57, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'xAY1yRaA', '5482793'), + (15823, 57, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'xAY1yRaA', '5488912'), + (15824, 57, 1582, 'maybe', '2022-08-19 09:23:23', '2025-12-17 19:47:23', 'xAY1yRaA', '5492001'), + (15825, 57, 1584, 'not_attending', '2022-08-19 09:23:25', '2025-12-17 19:47:23', 'xAY1yRaA', '5492004'), + (15826, 57, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'xAY1yRaA', '5492192'), + (15827, 57, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'xAY1yRaA', '5493139'), + (15828, 57, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'xAY1yRaA', '5493200'), + (15829, 57, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'xAY1yRaA', '5502188'), + (15830, 57, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'xAY1yRaA', '5505059'), + (15831, 57, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'xAY1yRaA', '5509055'), + (15832, 57, 1618, 'attending', '2022-08-28 19:11:45', '2025-12-17 19:47:23', 'xAY1yRaA', '5512005'), + (15833, 57, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'xAY1yRaA', '5512862'), + (15834, 57, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'xAY1yRaA', '5513985'), + (15835, 57, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'xAY1yRaA', '5519981'), + (15836, 57, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'xAY1yRaA', '5522550'), + (15837, 57, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'xAY1yRaA', '5534683'), + (15838, 57, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'xAY1yRaA', '5537735'), + (15839, 57, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'xAY1yRaA', '5540859'), + (15840, 57, 1641, 'attending', '2022-09-01 22:04:20', '2025-12-17 19:47:24', 'xAY1yRaA', '5544226'), + (15841, 57, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'xAY1yRaA', '5546619'), + (15842, 57, 1648, 'attending', '2022-09-09 16:41:24', '2025-12-17 19:47:24', 'xAY1yRaA', '5548974'), + (15843, 57, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'xAY1yRaA', '5555245'), + (15844, 57, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'xAY1yRaA', '5557747'), + (15845, 57, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'xAY1yRaA', '5560255'), + (15846, 57, 1664, 'maybe', '2022-09-10 17:35:57', '2025-12-17 19:47:25', 'xAY1yRaA', '5562906'), + (15847, 57, 1667, 'attending', '2022-09-21 22:17:10', '2025-12-17 19:47:11', 'xAY1yRaA', '5563221'), + (15848, 57, 1668, 'attending', '2022-09-25 09:41:07', '2025-12-17 19:47:12', 'xAY1yRaA', '5563222'), + (15849, 57, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'xAY1yRaA', '5600604'), + (15850, 57, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'xAY1yRaA', '5605544'), + (15851, 57, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'xAY1yRaA', '5606737'), + (15852, 57, 1708, 'attending', '2022-10-01 15:52:19', '2025-12-17 19:47:12', 'xAY1yRaA', '5617648'), + (15853, 57, 1719, 'attending', '2022-10-06 20:50:20', '2025-12-17 19:47:12', 'xAY1yRaA', '5630958'), + (15854, 57, 1720, 'attending', '2022-10-07 23:50:54', '2025-12-17 19:47:12', 'xAY1yRaA', '5630959'), + (15855, 57, 1721, 'attending', '2022-10-07 23:50:56', '2025-12-17 19:47:13', 'xAY1yRaA', '5630960'), + (15856, 57, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'xAY1yRaA', '5630961'), + (15857, 57, 1723, 'not_attending', '2022-11-01 21:27:12', '2025-12-17 19:47:15', 'xAY1yRaA', '5630962'), + (15858, 57, 1724, 'attending', '2022-11-05 14:20:27', '2025-12-17 19:47:15', 'xAY1yRaA', '5630966'), + (15859, 57, 1725, 'attending', '2022-11-05 14:20:29', '2025-12-17 19:47:16', 'xAY1yRaA', '5630967'), + (15860, 57, 1726, 'attending', '2022-11-20 19:46:35', '2025-12-17 19:47:16', 'xAY1yRaA', '5630968'), + (15861, 57, 1727, 'attending', '2022-12-02 21:00:04', '2025-12-17 19:47:16', 'xAY1yRaA', '5630969'), + (15862, 57, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'xAY1yRaA', '5635406'), + (15863, 57, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'xAY1yRaA', '5638765'), + (15864, 57, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'xAY1yRaA', '5640097'), + (15865, 57, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'xAY1yRaA', '5640843'), + (15866, 57, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'xAY1yRaA', '5641521'), + (15867, 57, 1744, 'not_attending', '2022-11-23 21:29:02', '2025-12-17 19:47:16', 'xAY1yRaA', '5642818'), + (15868, 57, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'xAY1yRaA', '5652395'), + (15869, 57, 1761, 'attending', '2022-11-18 16:48:03', '2025-12-17 19:47:16', 'xAY1yRaA', '5670434'), + (15870, 57, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'xAY1yRaA', '5670445'), + (15871, 57, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'xAY1yRaA', '5671637'), + (15872, 57, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'xAY1yRaA', '5672329'), + (15873, 57, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'xAY1yRaA', '5674057'), + (15874, 57, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'xAY1yRaA', '5674060'), + (15875, 57, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'xAY1yRaA', '5677461'), + (15876, 57, 1776, 'attending', '2022-11-05 14:20:35', '2025-12-17 19:47:15', 'xAY1yRaA', '5691067'), + (15877, 57, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'xAY1yRaA', '5698046'), + (15878, 57, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'xAY1yRaA', '5699760'), + (15879, 57, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'xAY1yRaA', '5741601'), + (15880, 57, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'xAY1yRaA', '5763458'), + (15881, 57, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'xAY1yRaA', '5774172'), + (15882, 57, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'xAY1yRaA', '5818247'), + (15883, 57, 1834, 'attending', '2022-12-09 22:40:57', '2025-12-17 19:47:17', 'xAY1yRaA', '5819470'), + (15884, 57, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'xAY1yRaA', '5819471'), + (15885, 57, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'xAY1yRaA', '5827739'), + (15886, 57, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xAY1yRaA', '5844306'), + (15887, 57, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xAY1yRaA', '5850159'), + (15888, 57, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xAY1yRaA', '5858999'), + (15889, 57, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xAY1yRaA', '5871984'), + (15890, 57, 1859, 'attending', '2023-01-12 23:38:06', '2025-12-17 19:47:05', 'xAY1yRaA', '5876234'), + (15891, 57, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xAY1yRaA', '5876354'), + (15892, 57, 1864, 'attending', '2023-01-18 21:54:57', '2025-12-17 19:47:05', 'xAY1yRaA', '5879675'), + (15893, 57, 1865, 'attending', '2023-01-24 22:37:46', '2025-12-17 19:47:06', 'xAY1yRaA', '5879676'), + (15894, 57, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xAY1yRaA', '5880939'), + (15895, 57, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xAY1yRaA', '5880940'), + (15896, 57, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xAY1yRaA', '5880942'), + (15897, 57, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xAY1yRaA', '5880943'), + (15898, 57, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xAY1yRaA', '5887890'), + (15899, 57, 1875, 'attending', '2023-01-22 18:46:52', '2025-12-17 19:47:06', 'xAY1yRaA', '5887908'), + (15900, 57, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xAY1yRaA', '5888598'), + (15901, 57, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xAY1yRaA', '5893260'), + (15902, 57, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xAY1yRaA', '5899826'), + (15903, 57, 1885, 'attending', '2023-02-12 15:32:46', '2025-12-17 19:47:08', 'xAY1yRaA', '5899928'), + (15904, 57, 1886, 'attending', '2023-03-02 01:34:29', '2025-12-17 19:47:09', 'xAY1yRaA', '5899930'), + (15905, 57, 1888, 'attending', '2023-02-17 16:22:26', '2025-12-17 19:47:07', 'xAY1yRaA', '5900197'), + (15906, 57, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xAY1yRaA', '5900199'), + (15907, 57, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xAY1yRaA', '5900200'), + (15908, 57, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xAY1yRaA', '5900202'), + (15909, 57, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xAY1yRaA', '5900203'), + (15910, 57, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xAY1yRaA', '5901108'), + (15911, 57, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xAY1yRaA', '5901126'), + (15912, 57, 1897, 'attending', '2023-02-08 00:35:09', '2025-12-17 19:47:07', 'xAY1yRaA', '5901128'), + (15913, 57, 1899, 'maybe', '2023-02-08 00:35:38', '2025-12-17 19:47:07', 'xAY1yRaA', '5901323'), + (15914, 57, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xAY1yRaA', '5909655'), + (15915, 57, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xAY1yRaA', '5910522'), + (15916, 57, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xAY1yRaA', '5910526'), + (15917, 57, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xAY1yRaA', '5910528'), + (15918, 57, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xAY1yRaA', '5916219'), + (15919, 57, 1923, 'attending', '2023-02-16 23:46:18', '2025-12-17 19:47:07', 'xAY1yRaA', '5930436'), + (15920, 57, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xAY1yRaA', '5936234'), + (15921, 57, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xAY1yRaA', '5958351'), + (15922, 57, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xAY1yRaA', '5959751'), + (15923, 57, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xAY1yRaA', '5959755'), + (15924, 57, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xAY1yRaA', '5960055'), + (15925, 57, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xAY1yRaA', '5961684'), + (15926, 57, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'xAY1yRaA', '5962132'), + (15927, 57, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'xAY1yRaA', '5962133'), + (15928, 57, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xAY1yRaA', '5962134'), + (15929, 57, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xAY1yRaA', '5962317'), + (15930, 57, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xAY1yRaA', '5962318'), + (15931, 57, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'xAY1yRaA', '5965933'), + (15932, 57, 1953, 'attending', '2023-03-01 21:53:16', '2025-12-17 19:47:09', 'xAY1yRaA', '5966307'), + (15933, 57, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xAY1yRaA', '5967014'), + (15934, 57, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xAY1yRaA', '5972815'), + (15935, 57, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xAY1yRaA', '5974016'), + (15936, 57, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xAY1yRaA', '5981515'), + (15937, 57, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xAY1yRaA', '5993516'), + (15938, 57, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xAY1yRaA', '5998939'), + (15939, 57, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xAY1yRaA', '6028191'), + (15940, 57, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xAY1yRaA', '6040066'), + (15941, 57, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xAY1yRaA', '6042717'), + (15942, 57, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xAY1yRaA', '6044838'), + (15943, 57, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xAY1yRaA', '6044839'), + (15944, 57, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'xAY1yRaA', '6045684'), + (15945, 57, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xAY1yRaA', '6050104'), + (15946, 57, 1996, 'attending', '2023-04-02 21:57:05', '2025-12-17 19:46:58', 'xAY1yRaA', '6050667'), + (15947, 57, 2003, 'attending', '2023-05-14 17:31:11', '2025-12-17 19:47:03', 'xAY1yRaA', '6052606'), + (15948, 57, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xAY1yRaA', '6053195'), + (15949, 57, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xAY1yRaA', '6053198'), + (15950, 57, 2008, 'attending', '2023-04-07 21:52:39', '2025-12-17 19:46:58', 'xAY1yRaA', '6055808'), + (15951, 57, 2010, 'maybe', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xAY1yRaA', '6056085'), + (15952, 57, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xAY1yRaA', '6056916'), + (15953, 57, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xAY1yRaA', '6059290'), + (15954, 57, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xAY1yRaA', '6060328'), + (15955, 57, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xAY1yRaA', '6061037'), + (15956, 57, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xAY1yRaA', '6061039'), + (15957, 57, 2020, 'not_attending', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'xAY1yRaA', '6065813'), + (15958, 57, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xAY1yRaA', '6067245'), + (15959, 57, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xAY1yRaA', '6068094'), + (15960, 57, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xAY1yRaA', '6068252'), + (15961, 57, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xAY1yRaA', '6068253'), + (15962, 57, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xAY1yRaA', '6068254'), + (15963, 57, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'xAY1yRaA', '6068280'), + (15964, 57, 2032, 'attending', '2023-06-01 22:36:40', '2025-12-17 19:47:04', 'xAY1yRaA', '6068281'), + (15965, 57, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xAY1yRaA', '6069093'), + (15966, 57, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xAY1yRaA', '6072528'), + (15967, 57, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'xAY1yRaA', '6075556'), + (15968, 57, 2048, 'maybe', '2023-05-14 17:30:48', '2025-12-17 19:47:03', 'xAY1yRaA', '6076415'), + (15969, 57, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xAY1yRaA', '6079840'), + (15970, 57, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xAY1yRaA', '6083398'), + (15971, 57, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xAY1yRaA', '6093504'), + (15972, 57, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xAY1yRaA', '6097414'), + (15973, 57, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xAY1yRaA', '6097442'), + (15974, 57, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xAY1yRaA', '6097684'), + (15975, 57, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xAY1yRaA', '6098762'), + (15976, 57, 2064, 'attending', '2023-06-24 18:18:36', '2025-12-17 19:46:50', 'xAY1yRaA', '6099988'), + (15977, 57, 2065, 'not_attending', '2023-06-15 21:48:54', '2025-12-17 19:46:49', 'xAY1yRaA', '6101169'), + (15978, 57, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xAY1yRaA', '6101361'), + (15979, 57, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xAY1yRaA', '6101362'), + (15980, 57, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xAY1yRaA', '6107314'), + (15981, 57, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xAY1yRaA', '6120034'), + (15982, 57, 2091, 'attending', '2023-06-04 18:15:30', '2025-12-17 19:47:04', 'xAY1yRaA', '6130657'), + (15983, 57, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'xAY1yRaA', '6136733'), + (15984, 57, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xAY1yRaA', '6137989'), + (15985, 57, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xAY1yRaA', '6150864'), + (15986, 57, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xAY1yRaA', '6155491'), + (15987, 57, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xAY1yRaA', '6164417'), + (15988, 57, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xAY1yRaA', '6166388'), + (15989, 57, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xAY1yRaA', '6176439'), + (15990, 57, 2123, 'attending', '2023-06-29 21:13:35', '2025-12-17 19:46:50', 'xAY1yRaA', '6176502'), + (15991, 57, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xAY1yRaA', '6182410'), + (15992, 57, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xAY1yRaA', '6185812'), + (15993, 57, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xAY1yRaA', '6187651'), + (15994, 57, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xAY1yRaA', '6187963'), + (15995, 57, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xAY1yRaA', '6187964'), + (15996, 57, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xAY1yRaA', '6187966'), + (15997, 57, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xAY1yRaA', '6187967'), + (15998, 57, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xAY1yRaA', '6187969'), + (15999, 57, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xAY1yRaA', '6334878'), + (16000, 57, 2146, 'attending', '2023-07-14 08:57:02', '2025-12-17 19:46:53', 'xAY1yRaA', '6335638'), + (16001, 57, 2152, 'attending', '2023-07-13 20:14:10', '2025-12-17 19:46:52', 'xAY1yRaA', '6337021'), + (16002, 57, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xAY1yRaA', '6337236'), + (16003, 57, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xAY1yRaA', '6337970'), + (16004, 57, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xAY1yRaA', '6338308'), + (16005, 57, 2159, 'attending', '2023-07-16 17:26:41', '2025-12-17 19:46:53', 'xAY1yRaA', '6338355'), + (16006, 57, 2160, 'attending', '2023-07-16 17:26:43', '2025-12-17 19:46:54', 'xAY1yRaA', '6338358'), + (16007, 57, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xAY1yRaA', '6341710'), + (16008, 57, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xAY1yRaA', '6342044'), + (16009, 57, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xAY1yRaA', '6342298'), + (16010, 57, 2168, 'not_attending', '2023-07-17 20:14:56', '2025-12-17 19:46:52', 'xAY1yRaA', '6342302'), + (16011, 57, 2169, 'attending', '2023-07-24 19:55:41', '2025-12-17 19:46:53', 'xAY1yRaA', '6342306'), + (16012, 57, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xAY1yRaA', '6343294'), + (16013, 57, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xAY1yRaA', '6347034'), + (16014, 57, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xAY1yRaA', '6347056'), + (16015, 57, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xAY1yRaA', '6353830'), + (16016, 57, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xAY1yRaA', '6353831'), + (16017, 57, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xAY1yRaA', '6357867'), + (16018, 57, 2191, 'attending', '2023-08-03 21:49:01', '2025-12-17 19:46:54', 'xAY1yRaA', '6358652'), + (16019, 57, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'xAY1yRaA', '6358668'), + (16020, 57, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'xAY1yRaA', '6358669'), + (16021, 57, 2195, 'attending', '2023-08-25 13:45:16', '2025-12-17 19:46:55', 'xAY1yRaA', '6359397'), + (16022, 57, 2196, 'attending', '2023-09-03 14:09:19', '2025-12-17 19:46:56', 'xAY1yRaA', '6359398'), + (16023, 57, 2197, 'attending', '2023-09-09 19:35:44', '2025-12-17 19:46:44', 'xAY1yRaA', '6359399'), + (16024, 57, 2198, 'attending', '2023-09-21 20:41:50', '2025-12-17 19:46:45', 'xAY1yRaA', '6359400'), + (16025, 57, 2200, 'attending', '2023-08-09 20:54:25', '2025-12-17 19:46:55', 'xAY1yRaA', '6359850'), + (16026, 57, 2204, 'attending', '2023-08-12 12:21:24', '2025-12-17 19:46:55', 'xAY1yRaA', '6361542'), + (16027, 57, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xAY1yRaA', '6361709'), + (16028, 57, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xAY1yRaA', '6361710'), + (16029, 57, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xAY1yRaA', '6361711'), + (16030, 57, 2211, 'attending', '2023-08-12 12:21:20', '2025-12-17 19:46:55', 'xAY1yRaA', '6361712'), + (16031, 57, 2212, 'attending', '2023-09-23 09:38:52', '2025-12-17 19:46:45', 'xAY1yRaA', '6361713'), + (16032, 57, 2232, 'attending', '2023-08-23 20:23:04', '2025-12-17 19:46:55', 'xAY1yRaA', '6374818'), + (16033, 57, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'xAY1yRaA', '6382573'), + (16034, 57, 2239, 'attending', '2023-08-31 23:04:14', '2025-12-17 19:46:56', 'xAY1yRaA', '6387592'), + (16035, 57, 2240, 'attending', '2023-09-07 16:27:53', '2025-12-17 19:46:56', 'xAY1yRaA', '6388603'), + (16036, 57, 2241, 'attending', '2023-09-07 16:27:56', '2025-12-17 19:46:44', 'xAY1yRaA', '6388604'), + (16037, 57, 2242, 'attending', '2023-09-22 15:06:21', '2025-12-17 19:46:45', 'xAY1yRaA', '6388606'), + (16038, 57, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xAY1yRaA', '6394629'), + (16039, 57, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xAY1yRaA', '6394631'), + (16040, 57, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xAY1yRaA', '6440863'), + (16041, 57, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xAY1yRaA', '6445440'), + (16042, 57, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xAY1yRaA', '6453951'), + (16043, 57, 2284, 'attending', '2023-10-09 23:17:07', '2025-12-17 19:46:46', 'xAY1yRaA', '6460928'), + (16044, 57, 2285, 'attending', '2023-10-15 23:16:56', '2025-12-17 19:46:47', 'xAY1yRaA', '6460929'), + (16045, 57, 2286, 'attending', '2023-11-30 00:04:57', '2025-12-17 19:46:48', 'xAY1yRaA', '6460930'), + (16046, 57, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xAY1yRaA', '6461696'), + (16047, 57, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xAY1yRaA', '6462129'), + (16048, 57, 2291, 'attending', '2023-10-18 20:49:06', '2025-12-17 19:46:46', 'xAY1yRaA', '6462215'), + (16049, 57, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xAY1yRaA', '6463218'), + (16050, 57, 2299, 'attending', '2023-10-20 10:55:24', '2025-12-17 19:46:46', 'xAY1yRaA', '6472181'), + (16051, 57, 2303, 'attending', '2023-10-23 20:33:56', '2025-12-17 19:46:47', 'xAY1yRaA', '6482691'), + (16052, 57, 2304, 'attending', '2023-10-28 21:26:44', '2025-12-17 19:46:47', 'xAY1yRaA', '6482693'), + (16053, 57, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'xAY1yRaA', '6484200'), + (16054, 57, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xAY1yRaA', '6484680'), + (16055, 57, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xAY1yRaA', '6507741'), + (16056, 57, 2321, 'attending', '2023-11-02 20:53:41', '2025-12-17 19:46:47', 'xAY1yRaA', '6512075'), + (16057, 57, 2322, 'attending', '2023-11-05 12:40:37', '2025-12-17 19:46:48', 'xAY1yRaA', '6514659'), + (16058, 57, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xAY1yRaA', '6514660'), + (16059, 57, 2324, 'attending', '2023-12-09 21:46:53', '2025-12-17 19:46:49', 'xAY1yRaA', '6514662'), + (16060, 57, 2325, 'attending', '2023-12-09 21:46:59', '2025-12-17 19:46:36', 'xAY1yRaA', '6514663'), + (16061, 57, 2326, 'attending', '2023-11-05 15:27:10', '2025-12-17 19:46:48', 'xAY1yRaA', '6514805'), + (16062, 57, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xAY1yRaA', '6519103'), + (16063, 57, 2335, 'maybe', '2023-11-10 01:56:18', '2025-12-17 19:46:47', 'xAY1yRaA', '6534890'), + (16064, 57, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xAY1yRaA', '6535681'), + (16065, 57, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xAY1yRaA', '6584747'), + (16066, 57, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xAY1yRaA', '6587097'), + (16067, 57, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xAY1yRaA', '6609022'), + (16068, 57, 2364, 'attending', '2023-12-07 23:32:20', '2025-12-17 19:46:49', 'xAY1yRaA', '6613011'), + (16069, 57, 2371, 'attending', '2023-12-12 22:34:15', '2025-12-17 19:46:36', 'xAY1yRaA', '6624495'), + (16070, 57, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xAY1yRaA', '6632757'), + (16071, 57, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xAY1yRaA', '6644187'), + (16072, 57, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xAY1yRaA', '6648951'), + (16073, 57, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xAY1yRaA', '6648952'), + (16074, 57, 2388, 'attending', '2024-01-04 22:56:38', '2025-12-17 19:46:37', 'xAY1yRaA', '6649244'), + (16075, 57, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xAY1yRaA', '6655401'), + (16076, 57, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xAY1yRaA', '6661585'), + (16077, 57, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xAY1yRaA', '6661588'), + (16078, 57, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xAY1yRaA', '6661589'), + (16079, 57, 2406, 'attending', '2024-01-20 00:31:37', '2025-12-17 19:46:40', 'xAY1yRaA', '6692344'), + (16080, 57, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xAY1yRaA', '6699906'), + (16081, 57, 2408, 'attending', '2024-01-20 21:00:13', '2025-12-17 19:46:40', 'xAY1yRaA', '6699907'), + (16082, 57, 2409, 'attending', '2024-01-20 21:00:15', '2025-12-17 19:46:41', 'xAY1yRaA', '6699909'), + (16083, 57, 2410, 'attending', '2024-01-20 21:00:18', '2025-12-17 19:46:41', 'xAY1yRaA', '6699911'), + (16084, 57, 2411, 'attending', '2024-02-16 16:27:09', '2025-12-17 19:46:41', 'xAY1yRaA', '6699913'), + (16085, 57, 2412, 'not_attending', '2024-02-16 16:27:14', '2025-12-17 19:46:43', 'xAY1yRaA', '6700717'), + (16086, 57, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xAY1yRaA', '6701109'), + (16087, 57, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'xAY1yRaA', '6704561'), + (16088, 57, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xAY1yRaA', '6705219'), + (16089, 57, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'xAY1yRaA', '6708410'), + (16090, 57, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xAY1yRaA', '6710153'), + (16091, 57, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xAY1yRaA', '6711552'), + (16092, 57, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xAY1yRaA', '6711553'), + (16093, 57, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xAY1yRaA', '6722688'), + (16094, 57, 2438, 'attending', '2024-02-05 23:12:00', '2025-12-17 19:46:41', 'xAY1yRaA', '6730201'), + (16095, 57, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xAY1yRaA', '6730620'), + (16096, 57, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xAY1yRaA', '6730642'), + (16097, 57, 2446, 'attending', '2024-02-27 22:41:19', '2025-12-17 19:46:43', 'xAY1yRaA', '6734369'), + (16098, 57, 2447, 'attending', '2024-03-09 21:29:17', '2025-12-17 19:46:32', 'xAY1yRaA', '6734370'), + (16099, 57, 2448, 'attending', '2024-03-23 20:17:33', '2025-12-17 19:46:33', 'xAY1yRaA', '6734371'), + (16100, 57, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xAY1yRaA', '6740364'), + (16101, 57, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xAY1yRaA', '6743829'), + (16102, 57, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xAY1yRaA', '7030380'), + (16103, 57, 2471, 'attending', '2024-02-18 20:39:50', '2025-12-17 19:46:42', 'xAY1yRaA', '7032425'), + (16104, 57, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xAY1yRaA', '7033677'), + (16105, 57, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xAY1yRaA', '7035415'), + (16106, 57, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xAY1yRaA', '7044715'), + (16107, 57, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xAY1yRaA', '7050318'), + (16108, 57, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xAY1yRaA', '7050319'), + (16109, 57, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xAY1yRaA', '7050322'), + (16110, 57, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xAY1yRaA', '7057804'), + (16111, 57, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xAY1yRaA', '7072824'), + (16112, 57, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xAY1yRaA', '7074348'), + (16113, 57, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xAY1yRaA', '7074364'), + (16114, 57, 2526, 'attending', '2024-08-01 17:51:02', '2025-12-17 19:46:31', 'xAY1yRaA', '7074366'), + (16115, 57, 2535, 'attending', '2024-03-16 00:51:57', '2025-12-17 19:46:32', 'xAY1yRaA', '7076879'), + (16116, 57, 2537, 'attending', '2024-03-17 15:46:30', '2025-12-17 19:46:33', 'xAY1yRaA', '7085484'), + (16117, 57, 2538, 'attending', '2024-03-17 15:46:44', '2025-12-17 19:46:33', 'xAY1yRaA', '7085485'), + (16118, 57, 2539, 'attending', '2024-04-03 21:43:12', '2025-12-17 19:46:33', 'xAY1yRaA', '7085486'), + (16119, 57, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'xAY1yRaA', '7089267'), + (16120, 57, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xAY1yRaA', '7098747'), + (16121, 57, 2553, 'attending', '2024-03-29 18:47:38', '2025-12-17 19:46:33', 'xAY1yRaA', '7113468'), + (16122, 57, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xAY1yRaA', '7114856'), + (16123, 57, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xAY1yRaA', '7114951'), + (16124, 57, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xAY1yRaA', '7114955'), + (16125, 57, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xAY1yRaA', '7114956'), + (16126, 57, 2558, 'attending', '2024-04-26 22:10:39', '2025-12-17 19:46:35', 'xAY1yRaA', '7114957'), + (16127, 57, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xAY1yRaA', '7153615'), + (16128, 57, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xAY1yRaA', '7159484'), + (16129, 57, 2575, 'attending', '2024-04-11 20:17:43', '2025-12-17 19:46:33', 'xAY1yRaA', '7164534'), + (16130, 57, 2576, 'attending', '2024-04-25 20:03:54', '2025-12-17 19:46:34', 'xAY1yRaA', '7164538'), + (16131, 57, 2579, 'attending', '2024-04-11 20:16:09', '2025-12-17 19:46:33', 'xAY1yRaA', '7167020'), + (16132, 57, 2584, 'attending', '2024-04-18 19:52:58', '2025-12-17 19:46:34', 'xAY1yRaA', '7175057'), + (16133, 57, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xAY1yRaA', '7178446'), + (16134, 57, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'xAY1yRaA', '7220467'), + (16135, 57, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xAY1yRaA', '7240354'), + (16136, 57, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xAY1yRaA', '7251633'), + (16137, 57, 2626, 'attending', '2024-05-17 16:10:53', '2025-12-17 19:46:35', 'xAY1yRaA', '7264723'), + (16138, 57, 2627, 'attending', '2024-05-17 16:10:56', '2025-12-17 19:46:35', 'xAY1yRaA', '7264724'), + (16139, 57, 2628, 'attending', '2024-05-17 16:10:58', '2025-12-17 19:46:36', 'xAY1yRaA', '7264725'), + (16140, 57, 2629, 'attending', '2024-05-17 16:10:59', '2025-12-17 19:46:28', 'xAY1yRaA', '7264726'), + (16141, 57, 2630, 'attending', '2024-05-16 15:10:59', '2025-12-17 19:46:35', 'xAY1yRaA', '7264801'), + (16142, 57, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'xAY1yRaA', '7302674'), + (16143, 57, 2678, 'attending', '2024-06-14 18:44:43', '2025-12-17 19:46:28', 'xAY1yRaA', '7319489'), + (16144, 57, 2688, 'attending', '2024-06-14 18:44:55', '2025-12-17 19:46:29', 'xAY1yRaA', '7324073'), + (16145, 57, 2689, 'attending', '2024-06-14 18:44:57', '2025-12-17 19:46:29', 'xAY1yRaA', '7324074'), + (16146, 57, 2690, 'attending', '2024-07-01 08:31:38', '2025-12-17 19:46:30', 'xAY1yRaA', '7324075'), + (16147, 57, 2691, 'attending', '2024-07-01 08:31:39', '2025-12-17 19:46:30', 'xAY1yRaA', '7324076'), + (16148, 57, 2693, 'attending', '2024-07-01 08:31:42', '2025-12-17 19:46:31', 'xAY1yRaA', '7324078'), + (16149, 57, 2694, 'attending', '2024-07-01 08:31:44', '2025-12-17 19:46:31', 'xAY1yRaA', '7324079'), + (16150, 57, 2695, 'maybe', '2024-08-10 21:01:04', '2025-12-17 19:46:31', 'xAY1yRaA', '7324080'), + (16151, 57, 2696, 'attending', '2024-08-10 21:01:08', '2025-12-17 19:46:32', 'xAY1yRaA', '7324081'), + (16152, 57, 2697, 'attending', '2024-08-10 21:01:10', '2025-12-17 19:46:32', 'xAY1yRaA', '7324082'), + (16153, 57, 2712, 'attending', '2024-08-01 17:50:51', '2025-12-17 19:46:31', 'xAY1yRaA', '7326525'), + (16154, 57, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xAY1yRaA', '7331457'), + (16155, 57, 2723, 'attending', '2024-06-19 21:04:10', '2025-12-17 19:46:29', 'xAY1yRaA', '7332389'), + (16156, 57, 2740, 'not_attending', '2024-06-30 22:48:53', '2025-12-17 19:46:29', 'xAY1yRaA', '7344576'), + (16157, 57, 2742, 'attending', '2024-07-03 20:31:13', '2025-12-17 19:46:29', 'xAY1yRaA', '7345167'), + (16158, 57, 2743, 'not_attending', '2024-07-04 21:34:02', '2025-12-17 19:46:29', 'xAY1yRaA', '7345688'), + (16159, 57, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xAY1yRaA', '7363643'), + (16160, 57, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xAY1yRaA', '7368606'), + (16161, 57, 2796, 'attending', '2024-08-16 13:34:09', '2025-12-17 19:46:31', 'xAY1yRaA', '7391451'), + (16162, 57, 2800, 'attending', '2024-08-13 23:44:51', '2025-12-17 19:46:31', 'xAY1yRaA', '7397405'), + (16163, 57, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xAY1yRaA', '7397462'), + (16164, 57, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xAY1yRaA', '7424275'), + (16165, 57, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'xAY1yRaA', '7424276'), + (16166, 57, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xAY1yRaA', '7432751'), + (16167, 57, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xAY1yRaA', '7432752'), + (16168, 57, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xAY1yRaA', '7432753'), + (16169, 57, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xAY1yRaA', '7432754'), + (16170, 57, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xAY1yRaA', '7432755'), + (16171, 57, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xAY1yRaA', '7432756'), + (16172, 57, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xAY1yRaA', '7432758'), + (16173, 57, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xAY1yRaA', '7432759'), + (16174, 57, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xAY1yRaA', '7433834'), + (16175, 57, 2838, 'attending', '2024-09-14 21:09:09', '2025-12-17 19:46:25', 'xAY1yRaA', '7439182'), + (16176, 57, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'xAY1yRaA', '7470197'), + (16177, 57, 2865, 'attending', '2024-10-27 17:14:53', '2025-12-17 19:46:26', 'xAY1yRaA', '7471200'), + (16178, 57, 2867, 'attending', '2024-12-02 00:36:51', '2025-12-17 19:46:21', 'xAY1yRaA', '7471202'), + (16179, 57, 2886, 'attending', '2024-11-07 02:40:18', '2025-12-17 19:46:26', 'xAY1yRaA', '7654498'), + (16180, 57, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xAY1yRaA', '7685613'), + (16181, 57, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xAY1yRaA', '7688194'), + (16182, 57, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xAY1yRaA', '7688196'), + (16183, 57, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xAY1yRaA', '7688289'), + (16184, 57, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xAY1yRaA', '7692763'), + (16185, 57, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xAY1yRaA', '7697552'), + (16186, 57, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xAY1yRaA', '7699878'), + (16187, 57, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'xAY1yRaA', '7704043'), + (16188, 57, 2924, 'attending', '2024-11-26 22:00:03', '2025-12-17 19:46:28', 'xAY1yRaA', '7712467'), + (16189, 57, 2925, 'attending', '2024-12-02 00:36:44', '2025-12-17 19:46:21', 'xAY1yRaA', '7713584'), + (16190, 57, 2926, 'attending', '2024-12-02 00:36:42', '2025-12-17 19:46:21', 'xAY1yRaA', '7713585'), + (16191, 57, 2927, 'attending', '2024-12-02 00:36:46', '2025-12-17 19:46:22', 'xAY1yRaA', '7713586'), + (16192, 57, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xAY1yRaA', '7738518'), + (16193, 57, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', 'xAY1yRaA', '7750632'), + (16194, 57, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xAY1yRaA', '7750636'), + (16195, 57, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xAY1yRaA', '7796540'), + (16196, 57, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xAY1yRaA', '7796541'), + (16197, 57, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xAY1yRaA', '7796542'), + (16198, 57, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xAY1yRaA', '7825913'), + (16199, 57, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xAY1yRaA', '7826209'), + (16200, 57, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xAY1yRaA', '7834742'), + (16201, 57, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'xAY1yRaA', '7842108'), + (16202, 57, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xAY1yRaA', '7842902'), + (16203, 57, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xAY1yRaA', '7842903'), + (16204, 57, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xAY1yRaA', '7842904'), + (16205, 57, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xAY1yRaA', '7842905'), + (16206, 57, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xAY1yRaA', '7855719'), + (16207, 57, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xAY1yRaA', '7860683'), + (16208, 57, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xAY1yRaA', '7860684'), + (16209, 57, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xAY1yRaA', '7866095'), + (16210, 57, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xAY1yRaA', '7869170'), + (16211, 57, 3014, 'attending', '2025-04-05 14:06:33', '2025-12-17 19:46:20', 'xAY1yRaA', '7869185'), + (16212, 57, 3015, 'attending', '2025-04-05 14:06:39', '2025-12-17 19:46:20', 'xAY1yRaA', '7869186'), + (16213, 57, 3016, 'attending', '2025-04-05 14:06:38', '2025-12-17 19:46:20', 'xAY1yRaA', '7869187'), + (16214, 57, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xAY1yRaA', '7869188'), + (16215, 57, 3018, 'attending', '2025-04-05 14:06:36', '2025-12-17 19:46:20', 'xAY1yRaA', '7869189'), + (16216, 57, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xAY1yRaA', '7869201'), + (16217, 57, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xAY1yRaA', '7877465'), + (16218, 57, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xAY1yRaA', '7888250'), + (16219, 57, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xAY1yRaA', '7904777'), + (16220, 57, 3094, 'not_attending', '2025-04-21 21:51:15', '2025-12-17 19:46:21', 'xAY1yRaA', '8342292'), + (16221, 57, 3095, 'attending', '2025-04-21 21:51:13', '2025-12-17 19:46:20', 'xAY1yRaA', '8342293'), + (16222, 57, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xAY1yRaA', '8349164'), + (16223, 57, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xAY1yRaA', '8349545'), + (16224, 57, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'xAY1yRaA', '8353584'), + (16225, 57, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xAY1yRaA', '8368028'), + (16226, 57, 3132, 'attending', '2025-05-17 00:55:49', '2025-12-17 19:46:21', 'xAY1yRaA', '8368029'), + (16227, 57, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xAY1yRaA', '8388462'), + (16228, 57, 3150, 'not_attending', '2025-06-06 23:42:03', '2025-12-17 19:46:15', 'xAY1yRaA', '8393174'), + (16229, 57, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xAY1yRaA', '8400273'), + (16230, 57, 3154, 'attending', '2025-06-06 23:42:11', '2025-12-17 19:46:15', 'xAY1yRaA', '8400274'), + (16231, 57, 3155, 'not_attending', '2025-06-06 23:42:12', '2025-12-17 19:46:16', 'xAY1yRaA', '8400275'), + (16232, 57, 3156, 'attending', '2025-06-06 23:42:13', '2025-12-17 19:46:16', 'xAY1yRaA', '8400276'), + (16233, 57, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xAY1yRaA', '8404977'), + (16234, 57, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xAY1yRaA', '8430783'), + (16235, 57, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xAY1yRaA', '8430784'), + (16236, 57, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xAY1yRaA', '8430799'), + (16237, 57, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xAY1yRaA', '8430800'), + (16238, 57, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xAY1yRaA', '8430801'), + (16239, 57, 3188, 'attending', '2025-07-12 22:46:21', '2025-12-17 19:46:17', 'xAY1yRaA', '8438709'), + (16240, 57, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xAY1yRaA', '8457738'), + (16241, 57, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xAY1yRaA', '8459566'), + (16242, 57, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xAY1yRaA', '8459567'), + (16243, 57, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xAY1yRaA', '8461032'), + (16244, 57, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xAY1yRaA', '8477877'), + (16245, 57, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xAY1yRaA', '8485688'), + (16246, 57, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xAY1yRaA', '8490587'), + (16247, 57, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xAY1yRaA', '8493552'), + (16248, 57, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xAY1yRaA', '8493553'), + (16249, 57, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xAY1yRaA', '8493554'), + (16250, 57, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xAY1yRaA', '8493555'), + (16251, 57, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xAY1yRaA', '8493556'), + (16252, 57, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xAY1yRaA', '8493557'), + (16253, 57, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xAY1yRaA', '8493558'), + (16254, 57, 3243, 'maybe', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xAY1yRaA', '8493559'), + (16255, 57, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xAY1yRaA', '8493560'), + (16256, 57, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'xAY1yRaA', '8493561'), + (16257, 57, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xAY1yRaA', '8493572'), + (16258, 57, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAY1yRaA', '8540725'), + (16259, 57, 3295, 'not_attending', '2025-10-25 22:18:26', '2025-12-17 19:46:14', 'xAY1yRaA', '8547541'), + (16260, 57, 3300, 'attending', '2025-10-31 11:03:33', '2025-12-17 19:46:14', 'xAY1yRaA', '8549145'), + (16261, 57, 3302, 'attending', '2025-10-31 11:03:47', '2025-12-17 19:46:14', 'xAY1yRaA', '8550022'), + (16262, 57, 3304, 'attending', '2025-10-31 11:03:49', '2025-12-17 19:46:14', 'xAY1yRaA', '8550024'), + (16263, 57, 3306, 'attending', '2025-12-12 13:09:48', '2025-12-17 19:46:11', 'xAY1yRaA', '8550026'), + (16264, 57, 3307, 'attending', '2025-12-12 13:09:54', '2025-12-17 19:46:11', 'xAY1yRaA', '8550027'), + (16265, 57, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAY1yRaA', '8555421'), + (16266, 57, 3346, 'attending', '2025-12-27 17:20:59', '2025-12-27 17:20:59', NULL, NULL), + (16267, 57, 3347, 'attending', '2025-12-27 17:21:04', '2025-12-27 17:21:04', NULL, NULL), + (16268, 57, 3348, 'attending', '2025-12-27 17:21:06', '2025-12-27 17:21:06', NULL, NULL), + (16269, 57, 3349, 'attending', '2025-12-27 17:21:16', '2025-12-27 17:21:16', NULL, NULL), + (16270, 57, 3350, 'attending', '2025-12-27 17:21:20', '2025-12-27 17:21:20', NULL, NULL), + (16271, 57, 3351, 'attending', '2025-12-27 17:21:24', '2025-12-27 17:21:24', NULL, NULL), + (16272, 58, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GmjRr03m', '5441128'), + (16273, 58, 1516, 'attending', '2022-08-14 12:01:44', '2025-12-17 19:47:23', 'GmjRr03m', '5441129'), + (16274, 58, 1517, 'attending', '2022-08-22 16:57:00', '2025-12-17 19:47:23', 'GmjRr03m', '5441130'), + (16275, 58, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjRr03m', '5441131'), + (16276, 58, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjRr03m', '5441132'), + (16277, 58, 1544, 'attending', '2022-09-17 23:00:17', '2025-12-17 19:47:11', 'GmjRr03m', '5454517'), + (16278, 58, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjRr03m', '5461278'), + (16279, 58, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GmjRr03m', '5469480'), + (16280, 58, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'GmjRr03m', '5471073'), + (16281, 58, 1567, 'attending', '2022-08-03 19:15:16', '2025-12-17 19:47:21', 'GmjRr03m', '5477629'), + (16282, 58, 1575, 'attending', '2022-08-22 16:56:48', '2025-12-17 19:47:23', 'GmjRr03m', '5482250'), + (16283, 58, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'GmjRr03m', '5482793'), + (16284, 58, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjRr03m', '5488912'), + (16285, 58, 1582, 'attending', '2022-08-14 12:01:42', '2025-12-17 19:47:23', 'GmjRr03m', '5492001'), + (16286, 58, 1584, 'maybe', '2022-08-22 16:56:58', '2025-12-17 19:47:23', 'GmjRr03m', '5492004'), + (16287, 58, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjRr03m', '5492192'), + (16288, 58, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjRr03m', '5493139'), + (16289, 58, 1589, 'attending', '2022-08-14 12:02:04', '2025-12-17 19:47:23', 'GmjRr03m', '5493159'), + (16290, 58, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjRr03m', '5493200'), + (16291, 58, 1595, 'attending', '2022-08-12 19:44:10', '2025-12-17 19:47:22', 'GmjRr03m', '5495736'), + (16292, 58, 1598, 'attending', '2022-08-15 00:51:17', '2025-12-17 19:47:22', 'GmjRr03m', '5496567'), + (16293, 58, 1603, 'attending', '2022-08-16 21:13:27', '2025-12-17 19:47:23', 'GmjRr03m', '5497895'), + (16294, 58, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjRr03m', '5502188'), + (16295, 58, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjRr03m', '5505059'), + (16296, 58, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', 'GmjRr03m', '5509055'), + (16297, 58, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjRr03m', '5512862'), + (16298, 58, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjRr03m', '5513985'), + (16299, 58, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'GmjRr03m', '5519981'), + (16300, 58, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjRr03m', '5522550'), + (16301, 58, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjRr03m', '5534683'), + (16302, 58, 1635, 'maybe', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjRr03m', '5537735'), + (16303, 58, 1636, 'attending', '2022-09-01 19:34:17', '2025-12-17 19:47:24', 'GmjRr03m', '5538454'), + (16304, 58, 1640, 'maybe', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjRr03m', '5540859'), + (16305, 58, 1641, 'attending', '2022-09-01 19:34:06', '2025-12-17 19:47:24', 'GmjRr03m', '5544226'), + (16306, 58, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjRr03m', '5546619'), + (16307, 58, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GmjRr03m', '5555245'), + (16308, 58, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjRr03m', '5557747'), + (16309, 58, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjRr03m', '5560255'), + (16310, 58, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjRr03m', '5562906'), + (16311, 58, 1667, 'maybe', '2022-09-24 19:24:23', '2025-12-17 19:47:11', 'GmjRr03m', '5563221'), + (16312, 58, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjRr03m', '5600604'), + (16313, 58, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjRr03m', '5605544'), + (16314, 58, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', 'GmjRr03m', '5606737'), + (16315, 58, 1707, 'attending', '2022-10-11 18:00:11', '2025-12-17 19:47:12', 'GmjRr03m', '5613104'), + (16316, 58, 1712, 'attending', '2022-10-11 18:00:07', '2025-12-17 19:47:12', 'GmjRr03m', '5622073'), + (16317, 58, 1714, 'maybe', '2022-10-26 19:50:52', '2025-12-17 19:47:14', 'GmjRr03m', '5622347'), + (16318, 58, 1717, 'attending', '2022-10-18 01:21:02', '2025-12-17 19:47:13', 'GmjRr03m', '5622842'), + (16319, 58, 1720, 'attending', '2022-10-12 15:35:14', '2025-12-17 19:47:12', 'GmjRr03m', '5630959'), + (16320, 58, 1721, 'attending', '2022-10-17 13:11:16', '2025-12-17 19:47:13', 'GmjRr03m', '5630960'), + (16321, 58, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjRr03m', '5630961'), + (16322, 58, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjRr03m', '5630962'), + (16323, 58, 1724, 'attending', '2022-11-06 23:30:38', '2025-12-17 19:47:15', 'GmjRr03m', '5630966'), + (16324, 58, 1725, 'attending', '2022-11-06 23:30:58', '2025-12-17 19:47:16', 'GmjRr03m', '5630967'), + (16325, 58, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjRr03m', '5630968'), + (16326, 58, 1727, 'attending', '2022-11-29 21:21:49', '2025-12-17 19:47:16', 'GmjRr03m', '5630969'), + (16327, 58, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjRr03m', '5635406'), + (16328, 58, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjRr03m', '5638765'), + (16329, 58, 1739, 'attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjRr03m', '5640097'), + (16330, 58, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjRr03m', '5640843'), + (16331, 58, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjRr03m', '5641521'), + (16332, 58, 1744, 'attending', '2022-11-23 00:49:09', '2025-12-17 19:47:16', 'GmjRr03m', '5642818'), + (16333, 58, 1751, 'attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjRr03m', '5652395'), + (16334, 58, 1761, 'attending', '2022-11-14 18:56:50', '2025-12-17 19:47:16', 'GmjRr03m', '5670434'), + (16335, 58, 1762, 'attending', '2022-11-29 21:21:40', '2025-12-17 19:47:16', 'GmjRr03m', '5670445'), + (16336, 58, 1763, 'attending', '2022-11-06 23:30:22', '2025-12-17 19:47:15', 'GmjRr03m', '5670803'), + (16337, 58, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjRr03m', '5671637'), + (16338, 58, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjRr03m', '5672329'), + (16339, 58, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjRr03m', '5674057'), + (16340, 58, 1767, 'attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjRr03m', '5674060'), + (16341, 58, 1770, 'attending', '2022-10-28 15:37:20', '2025-12-17 19:47:14', 'GmjRr03m', '5676936'), + (16342, 58, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GmjRr03m', '5677461'), + (16343, 58, 1776, 'attending', '2022-11-10 00:43:37', '2025-12-17 19:47:15', 'GmjRr03m', '5691067'), + (16344, 58, 1780, 'attending', '2022-11-06 23:30:16', '2025-12-17 19:47:15', 'GmjRr03m', '5696082'), + (16345, 58, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjRr03m', '5698046'), + (16346, 58, 1784, 'attending', '2022-11-06 23:30:47', '2025-12-17 19:47:15', 'GmjRr03m', '5699760'), + (16347, 58, 1793, 'maybe', '2022-11-25 21:58:17', '2025-12-17 19:47:16', 'GmjRr03m', '5736365'), + (16348, 58, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjRr03m', '5741601'), + (16349, 58, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjRr03m', '5763458'), + (16350, 58, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjRr03m', '5774172'), + (16351, 58, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'GmjRr03m', '5818247'), + (16352, 58, 1834, 'maybe', '2022-12-10 17:59:50', '2025-12-17 19:47:17', 'GmjRr03m', '5819470'), + (16353, 58, 1835, 'maybe', '2023-01-06 02:56:05', '2025-12-17 19:47:05', 'GmjRr03m', '5819471'), + (16354, 58, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GmjRr03m', '5827739'), + (16355, 58, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjRr03m', '5844306'), + (16356, 58, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjRr03m', '5850159'), + (16357, 58, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjRr03m', '5858999'), + (16358, 58, 1851, 'maybe', '2023-01-08 23:20:37', '2025-12-17 19:47:05', 'GmjRr03m', '5869316'), + (16359, 58, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjRr03m', '5871984'), + (16360, 58, 1859, 'attending', '2023-01-20 20:16:52', '2025-12-17 19:47:05', 'GmjRr03m', '5876234'), + (16361, 58, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjRr03m', '5876354'), + (16362, 58, 1864, 'attending', '2023-01-20 20:17:08', '2025-12-17 19:47:05', 'GmjRr03m', '5879675'), + (16363, 58, 1865, 'attending', '2023-01-28 00:16:15', '2025-12-17 19:47:06', 'GmjRr03m', '5879676'), + (16364, 58, 1866, 'maybe', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjRr03m', '5880939'), + (16365, 58, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjRr03m', '5880940'), + (16366, 58, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GmjRr03m', '5880942'), + (16367, 58, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjRr03m', '5880943'), + (16368, 58, 1872, 'maybe', '2023-01-20 23:59:52', '2025-12-17 19:47:05', 'GmjRr03m', '5883546'), + (16369, 58, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjRr03m', '5887890'), + (16370, 58, 1875, 'attending', '2023-01-23 19:33:04', '2025-12-17 19:47:06', 'GmjRr03m', '5887908'), + (16371, 58, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjRr03m', '5888598'), + (16372, 58, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjRr03m', '5893260'), + (16373, 58, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjRr03m', '5899826'), + (16374, 58, 1885, 'attending', '2023-02-23 23:33:56', '2025-12-17 19:47:08', 'GmjRr03m', '5899928'), + (16375, 58, 1888, 'attending', '2023-02-17 15:39:57', '2025-12-17 19:47:07', 'GmjRr03m', '5900197'), + (16376, 58, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjRr03m', '5900199'), + (16377, 58, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjRr03m', '5900200'), + (16378, 58, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjRr03m', '5900202'), + (16379, 58, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjRr03m', '5900203'), + (16380, 58, 1895, 'maybe', '2023-01-31 21:46:41', '2025-12-17 19:47:06', 'GmjRr03m', '5901108'), + (16381, 58, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjRr03m', '5901126'), + (16382, 58, 1897, 'attending', '2023-02-11 16:28:26', '2025-12-17 19:47:07', 'GmjRr03m', '5901128'), + (16383, 58, 1899, 'maybe', '2023-02-11 00:14:55', '2025-12-17 19:47:07', 'GmjRr03m', '5901323'), + (16384, 58, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjRr03m', '5909655'), + (16385, 58, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjRr03m', '5910522'), + (16386, 58, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjRr03m', '5910526'), + (16387, 58, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjRr03m', '5910528'), + (16388, 58, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjRr03m', '5916219'), + (16389, 58, 1924, 'maybe', '2023-02-17 15:40:05', '2025-12-17 19:47:07', 'GmjRr03m', '5931095'), + (16390, 58, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GmjRr03m', '5936234'), + (16391, 58, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjRr03m', '5958351'), + (16392, 58, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjRr03m', '5959751'), + (16393, 58, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjRr03m', '5959755'), + (16394, 58, 1940, 'attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjRr03m', '5960055'), + (16395, 58, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjRr03m', '5961684'), + (16396, 58, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'GmjRr03m', '5962132'), + (16397, 58, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GmjRr03m', '5962133'), + (16398, 58, 1946, 'maybe', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjRr03m', '5962134'), + (16399, 58, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjRr03m', '5962317'), + (16400, 58, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjRr03m', '5962318'), + (16401, 58, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'GmjRr03m', '5965933'), + (16402, 58, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjRr03m', '5967014'), + (16403, 58, 1955, 'maybe', '2023-03-29 22:52:53', '2025-12-17 19:46:57', 'GmjRr03m', '5972529'), + (16404, 58, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjRr03m', '5972815'), + (16405, 58, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjRr03m', '5974016'), + (16406, 58, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjRr03m', '5981515'), + (16407, 58, 1968, 'maybe', '2023-03-12 23:14:58', '2025-12-17 19:47:10', 'GmjRr03m', '5993515'), + (16408, 58, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjRr03m', '5993516'), + (16409, 58, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjRr03m', '5998939'), + (16410, 58, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjRr03m', '6028191'), + (16411, 58, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjRr03m', '6040066'), + (16412, 58, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjRr03m', '6042717'), + (16413, 58, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjRr03m', '6044838'), + (16414, 58, 1987, 'maybe', '2023-04-15 14:56:22', '2025-12-17 19:47:00', 'GmjRr03m', '6044839'), + (16415, 58, 1988, 'attending', '2023-04-15 14:56:24', '2025-12-17 19:47:01', 'GmjRr03m', '6044840'), + (16416, 58, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjRr03m', '6045684'), + (16417, 58, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjRr03m', '6050104'), + (16418, 58, 1998, 'attending', '2023-04-08 18:19:30', '2025-12-17 19:46:59', 'GmjRr03m', '6052056'), + (16419, 58, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjRr03m', '6053195'), + (16420, 58, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjRr03m', '6053198'), + (16421, 58, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjRr03m', '6056085'), + (16422, 58, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjRr03m', '6056916'), + (16423, 58, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjRr03m', '6059290'), + (16424, 58, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjRr03m', '6060328'), + (16425, 58, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjRr03m', '6061037'), + (16426, 58, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjRr03m', '6061039'), + (16427, 58, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjRr03m', '6067245'), + (16428, 58, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjRr03m', '6068094'), + (16429, 58, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjRr03m', '6068252'), + (16430, 58, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjRr03m', '6068253'), + (16431, 58, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjRr03m', '6068254'), + (16432, 58, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'GmjRr03m', '6068280'), + (16433, 58, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjRr03m', '6069093'), + (16434, 58, 2038, 'maybe', '2023-04-28 18:24:46', '2025-12-17 19:47:01', 'GmjRr03m', '6071944'), + (16435, 58, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'GmjRr03m', '6072528'), + (16436, 58, 2046, 'maybe', '2023-05-12 19:10:29', '2025-12-17 19:47:02', 'GmjRr03m', '6076020'), + (16437, 58, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjRr03m', '6079840'), + (16438, 58, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjRr03m', '6083398'), + (16439, 58, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GmjRr03m', '6093504'), + (16440, 58, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjRr03m', '6097414'), + (16441, 58, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjRr03m', '6097442'), + (16442, 58, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjRr03m', '6097684'), + (16443, 58, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjRr03m', '6098762'), + (16444, 58, 2065, 'attending', '2023-06-16 03:33:31', '2025-12-17 19:46:49', 'GmjRr03m', '6101169'), + (16445, 58, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjRr03m', '6101361'), + (16446, 58, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjRr03m', '6101362'), + (16447, 58, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'GmjRr03m', '6103752'), + (16448, 58, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjRr03m', '6107314'), + (16449, 58, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GmjRr03m', '6120034'), + (16450, 58, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'GmjRr03m', '6136733'), + (16451, 58, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjRr03m', '6137989'), + (16452, 58, 2102, 'attending', '2023-06-16 03:33:38', '2025-12-17 19:46:50', 'GmjRr03m', '6146559'), + (16453, 58, 2104, 'maybe', '2023-06-22 22:07:32', '2025-12-17 19:46:50', 'GmjRr03m', '6149499'), + (16454, 58, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjRr03m', '6150864'), + (16455, 58, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjRr03m', '6155491'), + (16456, 58, 2116, 'maybe', '2023-07-05 20:33:03', '2025-12-17 19:46:51', 'GmjRr03m', '6163389'), + (16457, 58, 2118, 'maybe', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjRr03m', '6164417'), + (16458, 58, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjRr03m', '6166388'), + (16459, 58, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjRr03m', '6176439'), + (16460, 58, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'GmjRr03m', '6182410'), + (16461, 58, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjRr03m', '6185812'), + (16462, 58, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjRr03m', '6187651'), + (16463, 58, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjRr03m', '6187963'), + (16464, 58, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjRr03m', '6187964'), + (16465, 58, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjRr03m', '6187966'), + (16466, 58, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjRr03m', '6187967'), + (16467, 58, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjRr03m', '6187969'), + (16468, 58, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjRr03m', '6334878'), + (16469, 58, 2146, 'maybe', '2023-07-09 21:35:00', '2025-12-17 19:46:53', 'GmjRr03m', '6335638'), + (16470, 58, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjRr03m', '6337236'), + (16471, 58, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjRr03m', '6337970'), + (16472, 58, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjRr03m', '6338308'), + (16473, 58, 2159, 'attending', '2023-07-16 20:43:18', '2025-12-17 19:46:53', 'GmjRr03m', '6338355'), + (16474, 58, 2160, 'attending', '2023-07-29 22:36:54', '2025-12-17 19:46:54', 'GmjRr03m', '6338358'), + (16475, 58, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'GmjRr03m', '6340845'), + (16476, 58, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjRr03m', '6341710'), + (16477, 58, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjRr03m', '6342044'), + (16478, 58, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjRr03m', '6342298'), + (16479, 58, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'GmjRr03m', '6343294'), + (16480, 58, 2176, 'maybe', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjRr03m', '6347034'), + (16481, 58, 2177, 'maybe', '2023-08-12 19:50:27', '2025-12-17 19:46:55', 'GmjRr03m', '6347053'), + (16482, 58, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjRr03m', '6347056'), + (16483, 58, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjRr03m', '6353830'), + (16484, 58, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjRr03m', '6353831'), + (16485, 58, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjRr03m', '6357867'), + (16486, 58, 2191, 'maybe', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjRr03m', '6358652'), + (16487, 58, 2197, 'maybe', '2023-09-15 14:00:03', '2025-12-17 19:46:44', 'GmjRr03m', '6359399'), + (16488, 58, 2198, 'attending', '2023-09-22 14:17:29', '2025-12-17 19:46:45', 'GmjRr03m', '6359400'), + (16489, 58, 2199, 'maybe', '2023-08-16 22:55:17', '2025-12-17 19:46:55', 'GmjRr03m', '6359849'), + (16490, 58, 2200, 'maybe', '2023-08-10 00:41:59', '2025-12-17 19:46:55', 'GmjRr03m', '6359850'), + (16491, 58, 2201, 'attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'GmjRr03m', '6359940'), + (16492, 58, 2204, 'attending', '2023-08-18 12:36:45', '2025-12-17 19:46:55', 'GmjRr03m', '6361542'), + (16493, 58, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjRr03m', '6361709'), + (16494, 58, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjRr03m', '6361710'), + (16495, 58, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjRr03m', '6361711'), + (16496, 58, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjRr03m', '6361712'), + (16497, 58, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjRr03m', '6361713'), + (16498, 58, 2232, 'attending', '2023-08-23 22:27:55', '2025-12-17 19:46:55', 'GmjRr03m', '6374818'), + (16499, 58, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GmjRr03m', '6382573'), + (16500, 58, 2239, 'attending', '2023-09-02 15:48:05', '2025-12-17 19:46:56', 'GmjRr03m', '6387592'), + (16501, 58, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'GmjRr03m', '6388604'), + (16502, 58, 2242, 'attending', '2023-09-18 20:01:52', '2025-12-17 19:46:45', 'GmjRr03m', '6388606'), + (16503, 58, 2244, 'maybe', '2023-09-11 23:28:52', '2025-12-17 19:46:44', 'GmjRr03m', '6393700'), + (16504, 58, 2248, 'maybe', '2023-09-11 23:28:34', '2025-12-17 19:46:44', 'GmjRr03m', '6394629'), + (16505, 58, 2249, 'maybe', '2023-09-20 00:28:12', '2025-12-17 19:46:45', 'GmjRr03m', '6394630'), + (16506, 58, 2250, 'maybe', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjRr03m', '6394631'), + (16507, 58, 2253, 'not_attending', '2023-09-25 20:56:02', '2025-12-17 19:46:45', 'GmjRr03m', '6401811'), + (16508, 58, 2259, 'maybe', '2023-09-22 14:22:28', '2025-12-17 19:46:45', 'GmjRr03m', '6421257'), + (16509, 58, 2261, 'maybe', '2023-09-28 21:10:33', '2025-12-17 19:46:45', 'GmjRr03m', '6427422'), + (16510, 58, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjRr03m', '6440863'), + (16511, 58, 2269, 'maybe', '2023-10-02 18:39:09', '2025-12-17 19:46:45', 'GmjRr03m', '6442978'), + (16512, 58, 2270, 'attending', '2023-10-10 22:43:29', '2025-12-17 19:46:46', 'GmjRr03m', '6443067'), + (16513, 58, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjRr03m', '6445440'), + (16514, 58, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjRr03m', '6453951'), + (16515, 58, 2285, 'not_attending', '2023-10-19 20:09:13', '2025-12-17 19:46:47', 'GmjRr03m', '6460929'), + (16516, 58, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjRr03m', '6461696'), + (16517, 58, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjRr03m', '6462129'), + (16518, 58, 2291, 'maybe', '2023-10-19 00:01:35', '2025-12-17 19:46:46', 'GmjRr03m', '6462215'), + (16519, 58, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjRr03m', '6463218'), + (16520, 58, 2299, 'maybe', '2023-10-19 00:01:31', '2025-12-17 19:46:46', 'GmjRr03m', '6472181'), + (16521, 58, 2302, 'not_attending', '2023-10-24 23:04:49', '2025-12-17 19:46:46', 'GmjRr03m', '6482535'), + (16522, 58, 2303, 'not_attending', '2023-10-24 23:05:08', '2025-12-17 19:46:47', 'GmjRr03m', '6482691'), + (16523, 58, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjRr03m', '6482693'), + (16524, 58, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'GmjRr03m', '6484200'), + (16525, 58, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'GmjRr03m', '6484680'), + (16526, 58, 2310, 'attending', '2023-11-08 01:07:40', '2025-12-17 19:46:47', 'GmjRr03m', '6487709'), + (16527, 58, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjRr03m', '6507741'), + (16528, 58, 2318, 'attending', '2023-10-31 22:55:41', '2025-12-17 19:46:47', 'GmjRr03m', '6508566'), + (16529, 58, 2322, 'attending', '2023-11-12 16:29:44', '2025-12-17 19:46:48', 'GmjRr03m', '6514659'), + (16530, 58, 2323, 'attending', '2023-11-27 17:40:28', '2025-12-17 19:46:48', 'GmjRr03m', '6514660'), + (16531, 58, 2324, 'attending', '2023-12-04 23:52:59', '2025-12-17 19:46:49', 'GmjRr03m', '6514662'), + (16532, 58, 2325, 'attending', '2023-12-14 00:22:45', '2025-12-17 19:46:36', 'GmjRr03m', '6514663'), + (16533, 58, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjRr03m', '6519103'), + (16534, 58, 2335, 'attending', '2023-11-11 00:54:17', '2025-12-17 19:46:47', 'GmjRr03m', '6534890'), + (16535, 58, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjRr03m', '6535681'), + (16536, 58, 2338, 'maybe', '2023-11-15 22:18:55', '2025-12-17 19:46:48', 'GmjRr03m', '6538868'), + (16537, 58, 2340, 'maybe', '2023-11-21 20:12:44', '2025-12-17 19:46:48', 'GmjRr03m', '6540279'), + (16538, 58, 2343, 'maybe', '2023-11-19 16:57:25', '2025-12-17 19:46:48', 'GmjRr03m', '6574728'), + (16539, 58, 2345, 'maybe', '2023-11-29 22:12:28', '2025-12-17 19:46:48', 'GmjRr03m', '6582414'), + (16540, 58, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjRr03m', '6584747'), + (16541, 58, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjRr03m', '6587097'), + (16542, 58, 2362, 'maybe', '2023-12-04 23:52:56', '2025-12-17 19:46:49', 'GmjRr03m', '6605708'), + (16543, 58, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjRr03m', '6609022'), + (16544, 58, 2365, 'maybe', '2023-12-23 15:59:33', '2025-12-17 19:46:37', 'GmjRr03m', '6613093'), + (16545, 58, 2371, 'maybe', '2023-12-14 00:22:41', '2025-12-17 19:46:36', 'GmjRr03m', '6624495'), + (16546, 58, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GmjRr03m', '6632757'), + (16547, 58, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjRr03m', '6644187'), + (16548, 58, 2381, 'maybe', '2024-01-01 19:18:13', '2025-12-17 19:46:37', 'GmjRr03m', '6646398'), + (16549, 58, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjRr03m', '6648951'), + (16550, 58, 2387, 'attending', '2024-01-04 00:59:26', '2025-12-17 19:46:37', 'GmjRr03m', '6648952'), + (16551, 58, 2388, 'maybe', '2024-01-05 20:22:46', '2025-12-17 19:46:37', 'GmjRr03m', '6649244'), + (16552, 58, 2392, 'attending', '2024-01-09 21:13:32', '2025-12-17 19:46:37', 'GmjRr03m', '6654412'), + (16553, 58, 2394, 'not_attending', '2024-01-15 22:14:10', '2025-12-17 19:46:38', 'GmjRr03m', '6654470'), + (16554, 58, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjRr03m', '6655401'), + (16555, 58, 2399, 'attending', '2024-01-08 23:26:02', '2025-12-17 19:46:37', 'GmjRr03m', '6657583'), + (16556, 58, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjRr03m', '6661585'), + (16557, 58, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjRr03m', '6661588'), + (16558, 58, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjRr03m', '6661589'), + (16559, 58, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjRr03m', '6699906'), + (16560, 58, 2408, 'attending', '2024-01-22 02:48:36', '2025-12-17 19:46:40', 'GmjRr03m', '6699907'), + (16561, 58, 2409, 'not_attending', '2024-02-01 00:19:32', '2025-12-17 19:46:41', 'GmjRr03m', '6699909'), + (16562, 58, 2411, 'attending', '2024-02-15 18:22:43', '2025-12-17 19:46:41', 'GmjRr03m', '6699913'), + (16563, 58, 2412, 'attending', '2024-02-20 02:41:56', '2025-12-17 19:46:43', 'GmjRr03m', '6700717'), + (16564, 58, 2415, 'maybe', '2024-01-20 23:15:30', '2025-12-17 19:46:40', 'GmjRr03m', '6701001'), + (16565, 58, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjRr03m', '6701109'), + (16566, 58, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjRr03m', '6705219'), + (16567, 58, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjRr03m', '6710153'), + (16568, 58, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjRr03m', '6711552'), + (16569, 58, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GmjRr03m', '6711553'), + (16570, 58, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjRr03m', '6722688'), + (16571, 58, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjRr03m', '6730620'), + (16572, 58, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'GmjRr03m', '6730642'), + (16573, 58, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjRr03m', '6740364'), + (16574, 58, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjRr03m', '6743829'), + (16575, 58, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjRr03m', '7030380'), + (16576, 58, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GmjRr03m', '7033677'), + (16577, 58, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'GmjRr03m', '7035415'), + (16578, 58, 2475, 'attending', '2024-02-27 01:02:19', '2025-12-17 19:46:43', 'GmjRr03m', '7035643'), + (16579, 58, 2478, 'maybe', '2024-02-21 00:19:47', '2025-12-17 19:46:43', 'GmjRr03m', '7036478'), + (16580, 58, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjRr03m', '7044715'), + (16581, 58, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjRr03m', '7050318'), + (16582, 58, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjRr03m', '7050319'), + (16583, 58, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjRr03m', '7050322'), + (16584, 58, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjRr03m', '7057804'), + (16585, 58, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'GmjRr03m', '7059866'), + (16586, 58, 2506, 'attending', '2024-03-09 20:10:00', '2025-12-17 19:46:44', 'GmjRr03m', '7069242'), + (16587, 58, 2507, 'attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjRr03m', '7072824'), + (16588, 58, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjRr03m', '7074348'), + (16589, 58, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GmjRr03m', '7074364'), + (16590, 58, 2537, 'maybe', '2024-03-22 19:07:36', '2025-12-17 19:46:33', 'GmjRr03m', '7085484'), + (16591, 58, 2539, 'maybe', '2024-04-06 22:05:06', '2025-12-17 19:46:33', 'GmjRr03m', '7085486'), + (16592, 58, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'GmjRr03m', '7089267'), + (16593, 58, 2541, 'attending', '2024-03-18 19:14:49', '2025-12-17 19:46:33', 'GmjRr03m', '7089404'), + (16594, 58, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjRr03m', '7098747'), + (16595, 58, 2553, 'maybe', '2024-03-29 13:05:46', '2025-12-17 19:46:33', 'GmjRr03m', '7113468'), + (16596, 58, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjRr03m', '7114856'), + (16597, 58, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjRr03m', '7114951'), + (16598, 58, 2556, 'maybe', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjRr03m', '7114955'), + (16599, 58, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjRr03m', '7114956'), + (16600, 58, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GmjRr03m', '7114957'), + (16601, 58, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'GmjRr03m', '7153615'), + (16602, 58, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjRr03m', '7159484'), + (16603, 58, 2572, 'maybe', '2024-04-13 01:12:24', '2025-12-17 19:46:33', 'GmjRr03m', '7159522'), + (16604, 58, 2573, 'maybe', '2024-04-14 21:06:26', '2025-12-17 19:46:34', 'GmjRr03m', '7160612'), + (16605, 58, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjRr03m', '7178446'), + (16606, 58, 2596, 'not_attending', '2024-04-26 04:48:05', '2025-12-17 19:46:34', 'GmjRr03m', '7183788'), + (16607, 58, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'GmjRr03m', '7220467'), + (16608, 58, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjRr03m', '7240354'), + (16609, 58, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjRr03m', '7251633'), + (16610, 58, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'GmjRr03m', '7263048'), + (16611, 58, 2626, 'maybe', '2024-05-16 23:15:39', '2025-12-17 19:46:35', 'GmjRr03m', '7264723'), + (16612, 58, 2644, 'maybe', '2024-05-20 20:00:36', '2025-12-17 19:46:35', 'GmjRr03m', '7279039'), + (16613, 58, 2646, 'attending', '2024-05-20 20:00:49', '2025-12-17 19:46:35', 'GmjRr03m', '7281768'), + (16614, 58, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'GmjRr03m', '7302674'), + (16615, 58, 2666, 'attending', '2024-06-06 02:13:26', '2025-12-17 19:46:36', 'GmjRr03m', '7307775'), + (16616, 58, 2678, 'maybe', '2024-06-11 22:18:36', '2025-12-17 19:46:28', 'GmjRr03m', '7319489'), + (16617, 58, 2682, 'attending', '2024-06-10 22:33:34', '2025-12-17 19:46:28', 'GmjRr03m', '7321862'), + (16618, 58, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjRr03m', '7324073'), + (16619, 58, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjRr03m', '7324074'), + (16620, 58, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GmjRr03m', '7324075'), + (16621, 58, 2692, 'maybe', '2024-07-27 11:39:31', '2025-12-17 19:46:30', 'GmjRr03m', '7324077'), + (16622, 58, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GmjRr03m', '7324078'), + (16623, 58, 2694, 'not_attending', '2024-08-09 18:56:06', '2025-12-17 19:46:31', 'GmjRr03m', '7324079'), + (16624, 58, 2695, 'maybe', '2024-08-17 22:13:00', '2025-12-17 19:46:32', 'GmjRr03m', '7324080'), + (16625, 58, 2696, 'attending', '2024-08-23 02:31:34', '2025-12-17 19:46:32', 'GmjRr03m', '7324081'), + (16626, 58, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GmjRr03m', '7324082'), + (16627, 58, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GmjRr03m', '7331457'), + (16628, 58, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'GmjRr03m', '7356752'), + (16629, 58, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'GmjRr03m', '7363643'), + (16630, 58, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GmjRr03m', '7368606'), + (16631, 58, 2783, 'attending', '2024-08-03 15:37:52', '2025-12-17 19:46:31', 'GmjRr03m', '7379699'), + (16632, 58, 2801, 'maybe', '2024-08-19 20:53:17', '2025-12-17 19:46:32', 'GmjRr03m', '7397462'), + (16633, 58, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GmjRr03m', '7424275'), + (16634, 58, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'GmjRr03m', '7424276'), + (16635, 58, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GmjRr03m', '7432751'), + (16636, 58, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GmjRr03m', '7432752'), + (16637, 58, 2826, 'maybe', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GmjRr03m', '7432753'), + (16638, 58, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GmjRr03m', '7432754'), + (16639, 58, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GmjRr03m', '7432755'), + (16640, 58, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GmjRr03m', '7432756'), + (16641, 58, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GmjRr03m', '7432758'), + (16642, 58, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GmjRr03m', '7432759'), + (16643, 58, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GmjRr03m', '7433834'), + (16644, 58, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GmjRr03m', '7470197'), + (16645, 58, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GmjRr03m', '7685613'), + (16646, 58, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GmjRr03m', '7688194'), + (16647, 58, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GmjRr03m', '7688196'), + (16648, 58, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GmjRr03m', '7688289'), + (16649, 58, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'GmjRr03m', '7692763'), + (16650, 58, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GmjRr03m', '7697552'), + (16651, 58, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GmjRr03m', '7699878'), + (16652, 58, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GmjRr03m', '7704043'), + (16653, 58, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GmjRr03m', '7712467'), + (16654, 58, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GmjRr03m', '7713585'), + (16655, 58, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GmjRr03m', '7713586'), + (16656, 58, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GmjRr03m', '7738518'), + (16657, 58, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GmjRr03m', '7750636'), + (16658, 58, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GmjRr03m', '7796540'), + (16659, 58, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GmjRr03m', '7796541'), + (16660, 58, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GmjRr03m', '7796542'), + (16661, 58, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GmjRr03m', '7825913'), + (16662, 58, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GmjRr03m', '7826209'), + (16663, 58, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GmjRr03m', '7834742'), + (16664, 58, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GmjRr03m', '7842108'), + (16665, 58, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GmjRr03m', '7842902'), + (16666, 58, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GmjRr03m', '7842903'), + (16667, 58, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GmjRr03m', '7842904'), + (16668, 58, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GmjRr03m', '7842905'), + (16669, 58, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GmjRr03m', '7855719'), + (16670, 58, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GmjRr03m', '7860683'), + (16671, 58, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GmjRr03m', '7860684'), + (16672, 58, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GmjRr03m', '7866095'), + (16673, 58, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GmjRr03m', '7869170'), + (16674, 58, 3014, 'maybe', '2025-03-30 17:04:21', '2025-12-17 19:46:20', 'GmjRr03m', '7869185'), + (16675, 58, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GmjRr03m', '7869188'), + (16676, 58, 3018, 'attending', '2025-04-10 16:46:00', '2025-12-17 19:46:20', 'GmjRr03m', '7869189'), + (16677, 58, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GmjRr03m', '7869201'), + (16678, 58, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GmjRr03m', '7877465'), + (16679, 58, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'GmjRr03m', '7878570'), + (16680, 58, 3043, 'attending', '2025-03-15 20:09:49', '2025-12-17 19:46:19', 'GmjRr03m', '7882587'), + (16681, 58, 3055, 'maybe', '2025-03-27 22:23:48', '2025-12-17 19:46:19', 'GmjRr03m', '7888118'), + (16682, 58, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GmjRr03m', '7888250'), + (16683, 58, 3088, 'attending', '2025-06-09 20:31:56', '2025-12-17 19:46:15', 'GmjRr03m', '7904777'), + (16684, 58, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GmjRr03m', '8349164'), + (16685, 58, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GmjRr03m', '8349545'), + (16686, 58, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'GmjRr03m', '8353584'), + (16687, 58, 3131, 'not_attending', '2025-05-15 00:40:27', '2025-12-17 19:46:21', 'GmjRr03m', '8368028'), + (16688, 58, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GmjRr03m', '8368029'), + (16689, 58, 3133, 'attending', '2025-05-27 23:23:32', '2025-12-17 19:46:14', 'GmjRr03m', '8368030'), + (16690, 58, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GmjRr03m', '8388462'), + (16691, 58, 3153, 'maybe', '2025-06-03 20:00:09', '2025-12-17 19:46:15', 'GmjRr03m', '8400273'), + (16692, 58, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'GmjRr03m', '8400274'), + (16693, 58, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GmjRr03m', '8400275'), + (16694, 58, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'GmjRr03m', '8400276'), + (16695, 58, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GmjRr03m', '8404977'), + (16696, 58, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GmjRr03m', '8430783'), + (16697, 58, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GmjRr03m', '8430784'), + (16698, 58, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GmjRr03m', '8430799'), + (16699, 58, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GmjRr03m', '8430800'), + (16700, 58, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GmjRr03m', '8430801'), + (16701, 58, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GmjRr03m', '8438709'), + (16702, 58, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GmjRr03m', '8457738'), + (16703, 58, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GmjRr03m', '8459566'), + (16704, 58, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GmjRr03m', '8459567'), + (16705, 58, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GmjRr03m', '8461032'), + (16706, 58, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GmjRr03m', '8477877'), + (16707, 58, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GmjRr03m', '8485688'), + (16708, 58, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GmjRr03m', '8490587'), + (16709, 58, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GmjRr03m', '8493552'), + (16710, 58, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GmjRr03m', '8493553'), + (16711, 58, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GmjRr03m', '8493554'), + (16712, 58, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GmjRr03m', '8493555'), + (16713, 58, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GmjRr03m', '8493556'), + (16714, 58, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GmjRr03m', '8493557'), + (16715, 58, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GmjRr03m', '8493558'), + (16716, 58, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GmjRr03m', '8493559'), + (16717, 58, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GmjRr03m', '8493560'), + (16718, 58, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GmjRr03m', '8493561'), + (16719, 58, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GmjRr03m', '8493572'), + (16720, 58, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GmjRr03m', '8540725'), + (16721, 58, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GmjRr03m', '8555421'), + (16722, 59, 2146, 'maybe', '2023-07-21 04:39:53', '2025-12-17 19:46:53', 'dxMJoEXm', '6335638'), + (16723, 59, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:52', 'dxMJoEXm', '6337236'), + (16724, 59, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxMJoEXm', '6337970'), + (16725, 59, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'dxMJoEXm', '6338308'), + (16726, 59, 2159, 'attending', '2023-07-19 22:45:48', '2025-12-17 19:46:53', 'dxMJoEXm', '6338355'), + (16727, 59, 2160, 'not_attending', '2023-07-27 17:30:21', '2025-12-17 19:46:54', 'dxMJoEXm', '6338358'), + (16728, 59, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxMJoEXm', '6341710'), + (16729, 59, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxMJoEXm', '6342044'), + (16730, 59, 2167, 'attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxMJoEXm', '6342298'), + (16731, 59, 2169, 'maybe', '2023-07-21 02:45:15', '2025-12-17 19:46:53', 'dxMJoEXm', '6342306'), + (16732, 59, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxMJoEXm', '6342591'), + (16733, 59, 2173, 'attending', '2023-07-18 16:54:21', '2025-12-17 19:46:53', 'dxMJoEXm', '6342769'), + (16734, 59, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dxMJoEXm', '6343294'), + (16735, 59, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxMJoEXm', '6347034'), + (16736, 59, 2177, 'attending', '2023-08-12 20:32:31', '2025-12-17 19:46:55', 'dxMJoEXm', '6347053'), + (16737, 59, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxMJoEXm', '6347056'), + (16738, 59, 2179, 'attending', '2023-07-24 03:28:36', '2025-12-17 19:46:54', 'dxMJoEXm', '6347591'), + (16739, 59, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxMJoEXm', '6353830'), + (16740, 59, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxMJoEXm', '6353831'), + (16741, 59, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxMJoEXm', '6357867'), + (16742, 59, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxMJoEXm', '6358652'), + (16743, 59, 2193, 'attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dxMJoEXm', '6358668'), + (16744, 59, 2194, 'attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dxMJoEXm', '6358669'), + (16745, 59, 2204, 'attending', '2023-08-10 22:26:28', '2025-12-17 19:46:55', 'dxMJoEXm', '6361542'), + (16746, 59, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxMJoEXm', '6361709'), + (16747, 59, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxMJoEXm', '6361710'), + (16748, 59, 2210, 'maybe', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxMJoEXm', '6361711'), + (16749, 59, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxMJoEXm', '6361712'), + (16750, 59, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxMJoEXm', '6361713'), + (16751, 59, 2218, 'maybe', '2023-08-14 22:10:14', '2025-12-17 19:46:55', 'dxMJoEXm', '6367308'), + (16752, 59, 2219, 'maybe', '2023-08-14 22:10:58', '2025-12-17 19:46:55', 'dxMJoEXm', '6367309'), + (16753, 59, 2224, 'attending', '2023-08-15 18:46:24', '2025-12-17 19:46:55', 'dxMJoEXm', '6367635'), + (16754, 59, 2229, 'maybe', '2023-08-20 19:11:50', '2025-12-17 19:46:55', 'dxMJoEXm', '6373787'), + (16755, 59, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxMJoEXm', '6382573'), + (16756, 59, 2239, 'attending', '2023-08-31 17:59:16', '2025-12-17 19:46:56', 'dxMJoEXm', '6387592'), + (16757, 59, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxMJoEXm', '6388604'), + (16758, 59, 2247, 'attending', '2023-09-06 22:23:01', '2025-12-17 19:46:56', 'dxMJoEXm', '6394628'), + (16759, 59, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxMJoEXm', '6394629'), + (16760, 59, 2249, 'attending', '2023-09-20 22:52:51', '2025-12-17 19:46:45', 'dxMJoEXm', '6394630'), + (16761, 59, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxMJoEXm', '6394631'), + (16762, 59, 2251, 'attending', '2023-09-05 20:27:49', '2025-12-17 19:46:56', 'dxMJoEXm', '6395182'), + (16763, 59, 2253, 'maybe', '2023-09-25 17:58:11', '2025-12-17 19:46:45', 'dxMJoEXm', '6401811'), + (16764, 59, 2256, 'maybe', '2023-09-18 23:22:07', '2025-12-17 19:46:45', 'dxMJoEXm', '6404369'), + (16765, 59, 2259, 'attending', '2023-09-23 00:58:29', '2025-12-17 19:46:45', 'dxMJoEXm', '6421257'), + (16766, 59, 2263, 'attending', '2023-09-27 13:31:08', '2025-12-17 19:46:45', 'dxMJoEXm', '6429351'), + (16767, 59, 2267, 'attending', '2023-09-29 22:00:04', '2025-12-17 19:46:45', 'dxMJoEXm', '6440034'), + (16768, 59, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxMJoEXm', '6440863'), + (16769, 59, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dxMJoEXm', '6445440'), + (16770, 59, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dxMJoEXm', '6453951'), + (16771, 59, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dxMJoEXm', '6461696'), + (16772, 59, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dxMJoEXm', '6462129'), + (16773, 59, 2290, 'attending', '2023-10-18 17:55:38', '2025-12-17 19:46:46', 'dxMJoEXm', '6462214'), + (16774, 59, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dxMJoEXm', '6463218'), + (16775, 59, 2294, 'attending', '2023-10-13 00:58:17', '2025-12-17 19:46:46', 'dxMJoEXm', '6465907'), + (16776, 59, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dxMJoEXm', '6472181'), + (16777, 59, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxMJoEXm', '6482693'), + (16778, 59, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dxMJoEXm', '6484200'), + (16779, 59, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dxMJoEXm', '6484680'), + (16780, 59, 2317, 'attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxMJoEXm', '6507741'), + (16781, 59, 2318, 'maybe', '2023-10-30 14:44:27', '2025-12-17 19:46:47', 'dxMJoEXm', '6508566'), + (16782, 59, 2319, 'maybe', '2023-10-30 14:44:52', '2025-12-17 19:46:47', 'dxMJoEXm', '6508567'), + (16783, 59, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxMJoEXm', '6514659'), + (16784, 59, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMJoEXm', '6514660'), + (16785, 59, 2329, 'attending', '2023-11-07 14:42:20', '2025-12-17 19:46:47', 'dxMJoEXm', '6517138'), + (16786, 59, 2330, 'attending', '2023-11-03 08:46:54', '2025-12-17 19:46:47', 'dxMJoEXm', '6517941'), + (16787, 59, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxMJoEXm', '6519103'), + (16788, 59, 2337, 'attending', '2023-11-08 01:08:22', '2025-12-17 19:46:48', 'dxMJoEXm', '6535681'), + (16789, 59, 2341, 'maybe', '2023-11-13 19:52:38', '2025-12-17 19:46:48', 'dxMJoEXm', '6543263'), + (16790, 59, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxMJoEXm', '6584747'), + (16791, 59, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMJoEXm', '6587097'), + (16792, 59, 2360, 'maybe', '2023-12-02 03:04:11', '2025-12-17 19:46:49', 'dxMJoEXm', '6599341'), + (16793, 59, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMJoEXm', '6609022'), + (16794, 59, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMJoEXm', '6632757'), + (16795, 59, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMJoEXm', '6644187'), + (16796, 59, 2383, 'attending', '2024-01-02 00:29:36', '2025-12-17 19:46:37', 'dxMJoEXm', '6647606'), + (16797, 59, 2384, 'attending', '2024-01-02 04:26:38', '2025-12-17 19:46:37', 'dxMJoEXm', '6648022'), + (16798, 59, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMJoEXm', '6648951'), + (16799, 59, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMJoEXm', '6648952'), + (16800, 59, 2388, 'maybe', '2024-01-04 21:41:49', '2025-12-17 19:46:37', 'dxMJoEXm', '6649244'), + (16801, 59, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMJoEXm', '6655401'), + (16802, 59, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMJoEXm', '6661585'), + (16803, 59, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMJoEXm', '6661588'), + (16804, 59, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMJoEXm', '6661589'), + (16805, 59, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMJoEXm', '6699906'), + (16806, 59, 2408, 'maybe', '2024-01-25 20:31:15', '2025-12-17 19:46:40', 'dxMJoEXm', '6699907'), + (16807, 59, 2410, 'maybe', '2024-02-10 02:56:35', '2025-12-17 19:46:41', 'dxMJoEXm', '6699911'), + (16808, 59, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxMJoEXm', '6699913'), + (16809, 59, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMJoEXm', '6701109'), + (16810, 59, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dxMJoEXm', '6704561'), + (16811, 59, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMJoEXm', '6705219'), + (16812, 59, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dxMJoEXm', '6708410'), + (16813, 59, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMJoEXm', '6710153'), + (16814, 59, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMJoEXm', '6711552'), + (16815, 59, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMJoEXm', '6711553'), + (16816, 59, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMJoEXm', '6722688'), + (16817, 59, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMJoEXm', '6730620'), + (16818, 59, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMJoEXm', '6730642'), + (16819, 59, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMJoEXm', '6740364'), + (16820, 59, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMJoEXm', '6743829'), + (16821, 59, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMJoEXm', '7030380'), + (16822, 59, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMJoEXm', '7033677'), + (16823, 59, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMJoEXm', '7035415'), + (16824, 59, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMJoEXm', '7044715'), + (16825, 59, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMJoEXm', '7050318'), + (16826, 59, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMJoEXm', '7050319'), + (16827, 59, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMJoEXm', '7050322'), + (16828, 59, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMJoEXm', '7057804'), + (16829, 59, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMJoEXm', '7072824'), + (16830, 59, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMJoEXm', '7074348'), + (16831, 59, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMJoEXm', '7089267'), + (16832, 59, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMJoEXm', '7098747'), + (16833, 59, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxMJoEXm', '7113468'), + (16834, 59, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMJoEXm', '7114856'), + (16835, 59, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMJoEXm', '7114951'), + (16836, 59, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxMJoEXm', '7114955'), + (16837, 59, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMJoEXm', '7114956'), + (16838, 59, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMJoEXm', '7114957'), + (16839, 59, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMJoEXm', '7153615'), + (16840, 59, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMJoEXm', '7159484'), + (16841, 59, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMJoEXm', '7178446'), + (16842, 59, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMJoEXm', '7220467'), + (16843, 59, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMJoEXm', '7240354'), + (16844, 59, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMJoEXm', '7251633'), + (16845, 59, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMJoEXm', '7302674'), + (16846, 59, 2925, 'attending', '2024-12-10 03:40:39', '2025-12-17 19:46:21', 'dxMJoEXm', '7713584'), + (16847, 59, 2927, 'attending', '2024-12-16 00:24:26', '2025-12-17 19:46:22', 'dxMJoEXm', '7713586'), + (16848, 59, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMJoEXm', '7738518'), + (16849, 59, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMJoEXm', '7750636'), + (16850, 59, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMJoEXm', '7796540'), + (16851, 59, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMJoEXm', '7796541'), + (16852, 59, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMJoEXm', '7796542'), + (16853, 59, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxMJoEXm', '7825913'), + (16854, 59, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxMJoEXm', '7826209'), + (16855, 59, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxMJoEXm', '7834742'), + (16856, 59, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dxMJoEXm', '7842108'), + (16857, 59, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxMJoEXm', '7842902'), + (16858, 59, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxMJoEXm', '7842903'), + (16859, 59, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxMJoEXm', '7842904'), + (16860, 59, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxMJoEXm', '7842905'), + (16861, 59, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxMJoEXm', '7855719'), + (16862, 59, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxMJoEXm', '7860683'), + (16863, 59, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxMJoEXm', '7860684'), + (16864, 59, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxMJoEXm', '7866095'), + (16865, 59, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxMJoEXm', '7869170'), + (16866, 59, 3015, 'attending', '2025-04-23 06:10:34', '2025-12-17 19:46:20', 'dxMJoEXm', '7869186'), + (16867, 59, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxMJoEXm', '7869188'), + (16868, 59, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxMJoEXm', '7869201'), + (16869, 59, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxMJoEXm', '7877465'), + (16870, 59, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxMJoEXm', '7888250'), + (16871, 59, 3070, 'attending', '2025-04-02 02:44:30', '2025-12-17 19:46:20', 'dxMJoEXm', '7894829'), + (16872, 59, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxMJoEXm', '7904777'), + (16873, 59, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxMJoEXm', '8349164'), + (16874, 59, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxMJoEXm', '8349545'), + (16875, 59, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxMJoEXm', '8353584'), + (16876, 59, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dxMJoEXm', '8368028'), + (16877, 59, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxMJoEXm', '8368029'), + (16878, 59, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxMJoEXm', '8388462'), + (16879, 59, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxMJoEXm', '8400273'), + (16880, 59, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dxMJoEXm', '8400274'), + (16881, 59, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxMJoEXm', '8400275'), + (16882, 59, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dxMJoEXm', '8400276'), + (16883, 59, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxMJoEXm', '8404977'), + (16884, 59, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxMJoEXm', '8430783'), + (16885, 59, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxMJoEXm', '8430784'), + (16886, 59, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxMJoEXm', '8430799'), + (16887, 59, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxMJoEXm', '8430800'), + (16888, 59, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxMJoEXm', '8430801'), + (16889, 59, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxMJoEXm', '8438709'), + (16890, 59, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxMJoEXm', '8457738'), + (16891, 59, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxMJoEXm', '8459566'), + (16892, 59, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxMJoEXm', '8459567'), + (16893, 59, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxMJoEXm', '8461032'), + (16894, 59, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxMJoEXm', '8477877'), + (16895, 59, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxMJoEXm', '8485688'), + (16896, 59, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxMJoEXm', '8490587'), + (16897, 59, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxMJoEXm', '8493552'), + (16898, 59, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxMJoEXm', '8493553'), + (16899, 59, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxMJoEXm', '8493554'), + (16900, 59, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxMJoEXm', '8493555'), + (16901, 59, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxMJoEXm', '8493556'), + (16902, 59, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxMJoEXm', '8493557'), + (16903, 59, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxMJoEXm', '8493558'), + (16904, 59, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxMJoEXm', '8493559'), + (16905, 59, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxMJoEXm', '8493560'), + (16906, 59, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxMJoEXm', '8493561'), + (16907, 59, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxMJoEXm', '8493572'), + (16908, 59, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxMJoEXm', '8540725'), + (16909, 59, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxMJoEXm', '8555421'), + (16910, 60, 497, 'attending', '2020-12-17 21:40:56', '2025-12-17 19:47:55', '8mR9wNYd', '3314270'), + (16911, 60, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '8mR9wNYd', '3314964'), + (16912, 60, 502, 'attending', '2020-12-12 23:08:32', '2025-12-17 19:47:55', '8mR9wNYd', '3323365'), + (16913, 60, 513, 'attending', '2020-12-20 00:49:16', '2025-12-17 19:47:55', '8mR9wNYd', '3329383'), + (16914, 60, 518, 'not_attending', '2021-01-06 23:58:02', '2025-12-17 19:47:48', '8mR9wNYd', '3337138'), + (16915, 60, 519, 'attending', '2020-12-20 21:04:33', '2025-12-17 19:47:55', '8mR9wNYd', '3337448'), + (16916, 60, 525, 'attending', '2020-12-22 03:16:56', '2025-12-17 19:47:48', '8mR9wNYd', '3350467'), + (16917, 60, 526, 'attending', '2020-12-29 18:17:14', '2025-12-17 19:47:48', '8mR9wNYd', '3351539'), + (16918, 60, 529, 'attending', '2021-01-03 22:51:08', '2025-12-17 19:47:48', '8mR9wNYd', '3364568'), + (16919, 60, 532, 'attending', '2021-01-08 14:08:56', '2025-12-17 19:47:48', '8mR9wNYd', '3381412'), + (16920, 60, 534, 'attending', '2021-01-05 04:34:22', '2025-12-17 19:47:48', '8mR9wNYd', '3384157'), + (16921, 60, 536, 'attending', '2021-01-07 17:21:11', '2025-12-17 19:47:48', '8mR9wNYd', '3386848'), + (16922, 60, 538, 'maybe', '2021-01-12 03:57:02', '2025-12-17 19:47:48', '8mR9wNYd', '3388151'), + (16923, 60, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '8mR9wNYd', '3389527'), + (16924, 60, 542, 'attending', '2021-01-11 02:41:06', '2025-12-17 19:47:48', '8mR9wNYd', '3395013'), + (16925, 60, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '8mR9wNYd', '3396499'), + (16926, 60, 548, 'not_attending', '2021-01-12 03:54:40', '2025-12-17 19:47:48', '8mR9wNYd', '3403650'), + (16927, 60, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '8mR9wNYd', '3406988'), + (16928, 60, 555, 'attending', '2021-01-20 18:34:43', '2025-12-17 19:47:49', '8mR9wNYd', '3416576'), + (16929, 60, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '8mR9wNYd', '3418925'), + (16930, 60, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', '8mR9wNYd', '3426074'), + (16931, 60, 565, 'attending', '2021-01-26 19:25:49', '2025-12-17 19:47:49', '8mR9wNYd', '3426083'), + (16932, 60, 567, 'attending', '2021-01-26 19:37:06', '2025-12-17 19:47:50', '8mR9wNYd', '3428895'), + (16933, 60, 568, 'attending', '2021-01-26 19:37:09', '2025-12-17 19:47:50', '8mR9wNYd', '3430267'), + (16934, 60, 569, 'attending', '2021-01-26 19:25:40', '2025-12-17 19:47:49', '8mR9wNYd', '3432673'), + (16935, 60, 571, 'maybe', '2021-02-12 17:40:37', '2025-12-17 19:47:50', '8mR9wNYd', '3435539'), + (16936, 60, 576, 'attending', '2021-01-29 08:41:54', '2025-12-17 19:47:50', '8mR9wNYd', '3438748'), + (16937, 60, 579, 'attending', '2021-02-01 22:50:23', '2025-12-17 19:47:50', '8mR9wNYd', '3440978'), + (16938, 60, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '8mR9wNYd', '3468125'), + (16939, 60, 602, 'attending', '2021-02-07 23:32:58', '2025-12-17 19:47:50', '8mR9wNYd', '3470303'), + (16940, 60, 603, 'attending', '2021-02-20 21:47:26', '2025-12-17 19:47:50', '8mR9wNYd', '3470304'), + (16941, 60, 604, 'attending', '2021-02-24 00:18:30', '2025-12-17 19:47:50', '8mR9wNYd', '3470305'), + (16942, 60, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '8mR9wNYd', '3470991'), + (16943, 60, 608, 'attending', '2021-02-10 21:16:33', '2025-12-17 19:47:50', '8mR9wNYd', '3475332'), + (16944, 60, 621, 'attending', '2021-03-02 21:31:25', '2025-12-17 19:47:51', '8mR9wNYd', '3517815'), + (16945, 60, 622, 'attending', '2021-03-10 14:51:58', '2025-12-17 19:47:51', '8mR9wNYd', '3517816'), + (16946, 60, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '8mR9wNYd', '3523941'), + (16947, 60, 631, 'not_attending', '2021-03-02 21:31:19', '2025-12-17 19:47:51', '8mR9wNYd', '3533850'), + (16948, 60, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8mR9wNYd', '3536632'), + (16949, 60, 639, 'not_attending', '2021-03-02 21:31:07', '2025-12-17 19:47:51', '8mR9wNYd', '3536656'), + (16950, 60, 641, 'attending', '2021-04-01 05:08:31', '2025-12-17 19:47:44', '8mR9wNYd', '3539916'), + (16951, 60, 642, 'attending', '2021-04-09 21:09:17', '2025-12-17 19:47:44', '8mR9wNYd', '3539917'), + (16952, 60, 643, 'attending', '2021-04-15 00:19:40', '2025-12-17 19:47:45', '8mR9wNYd', '3539918'), + (16953, 60, 644, 'attending', '2021-04-24 05:56:10', '2025-12-17 19:47:45', '8mR9wNYd', '3539919'), + (16954, 60, 645, 'attending', '2021-05-07 17:55:43', '2025-12-17 19:47:46', '8mR9wNYd', '3539920'), + (16955, 60, 646, 'attending', '2021-05-11 18:52:41', '2025-12-17 19:47:46', '8mR9wNYd', '3539921'), + (16956, 60, 647, 'attending', '2021-05-21 17:32:22', '2025-12-17 19:47:46', '8mR9wNYd', '3539922'), + (16957, 60, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8mR9wNYd', '3539923'), + (16958, 60, 649, 'attending', '2021-03-20 00:00:34', '2025-12-17 19:47:51', '8mR9wNYd', '3539927'), + (16959, 60, 650, 'attending', '2021-03-27 17:34:47', '2025-12-17 19:47:44', '8mR9wNYd', '3539928'), + (16960, 60, 687, 'not_attending', '2021-03-11 20:49:45', '2025-12-17 19:47:51', '8mR9wNYd', '3553405'), + (16961, 60, 690, 'attending', '2021-03-23 20:03:51', '2025-12-17 19:47:43', '8mR9wNYd', '3559954'), + (16962, 60, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8mR9wNYd', '3582734'), + (16963, 60, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8mR9wNYd', '3583262'), + (16964, 60, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8mR9wNYd', '3619523'), + (16965, 60, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8mR9wNYd', '3661369'), + (16966, 60, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8mR9wNYd', '3674262'), + (16967, 60, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8mR9wNYd', '3677402'), + (16968, 60, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '8mR9wNYd', '3730212'), + (16969, 60, 777, 'attending', '2021-04-28 20:50:00', '2025-12-17 19:47:46', '8mR9wNYd', '3746248'), + (16970, 60, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8mR9wNYd', '3793156'), + (16971, 60, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '8mR9wNYd', '3974109'), + (16972, 60, 827, 'attending', '2021-06-03 18:13:05', '2025-12-17 19:47:47', '8mR9wNYd', '3975311'), + (16973, 60, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '8mR9wNYd', '3975312'), + (16974, 60, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '8mR9wNYd', '3994992'), + (16975, 60, 844, 'attending', '2021-06-12 00:52:14', '2025-12-17 19:47:38', '8mR9wNYd', '4014338'), + (16976, 60, 867, 'attending', '2021-06-26 15:12:54', '2025-12-17 19:47:38', '8mR9wNYd', '4021848'), + (16977, 60, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '8mR9wNYd', '4136744'), + (16978, 60, 870, 'attending', '2021-07-03 21:53:44', '2025-12-17 19:47:39', '8mR9wNYd', '4136937'), + (16979, 60, 871, 'attending', '2021-07-09 22:16:25', '2025-12-17 19:47:39', '8mR9wNYd', '4136938'), + (16980, 60, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '8mR9wNYd', '4136947'), + (16981, 60, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '8mR9wNYd', '4210314'), + (16982, 60, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8mR9wNYd', '4225444'), + (16983, 60, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '8mR9wNYd', '4239259'), + (16984, 60, 900, 'not_attending', '2021-07-24 22:04:22', '2025-12-17 19:47:40', '8mR9wNYd', '4240316'), + (16985, 60, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '8mR9wNYd', '4240317'), + (16986, 60, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '8mR9wNYd', '4240318'), + (16987, 60, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '8mR9wNYd', '4240320'), + (16988, 60, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8mR9wNYd', '4250163'), + (16989, 60, 919, 'attending', '2021-07-17 12:44:17', '2025-12-17 19:47:39', '8mR9wNYd', '4275957'), + (16990, 60, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '8mR9wNYd', '4277819'), + (16991, 60, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '8mR9wNYd', '4301723'), + (16992, 60, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '8mR9wNYd', '4302093'), + (16993, 60, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '8mR9wNYd', '4304151'), + (16994, 60, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '8mR9wNYd', '4345519'), + (16995, 60, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '8mR9wNYd', '4356801'), + (16996, 60, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '8mR9wNYd', '4358025'), + (16997, 60, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '8mR9wNYd', '4366186'), + (16998, 60, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '8mR9wNYd', '4366187'), + (16999, 60, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '8mR9wNYd', '4402823'), + (17000, 60, 990, 'attending', '2021-09-04 21:10:54', '2025-12-17 19:47:43', '8mR9wNYd', '4420735'), + (17001, 60, 991, 'attending', '2021-09-11 21:51:43', '2025-12-17 19:47:43', '8mR9wNYd', '4420738'), + (17002, 60, 992, 'attending', '2021-09-18 21:38:33', '2025-12-17 19:47:33', '8mR9wNYd', '4420739'), + (17003, 60, 993, 'attending', '2021-09-25 20:34:44', '2025-12-17 19:47:34', '8mR9wNYd', '4420741'), + (17004, 60, 994, 'attending', '2021-10-01 01:08:50', '2025-12-17 19:47:34', '8mR9wNYd', '4420742'), + (17005, 60, 995, 'attending', '2021-10-09 20:04:45', '2025-12-17 19:47:34', '8mR9wNYd', '4420744'), + (17006, 60, 996, 'attending', '2021-10-16 02:22:55', '2025-12-17 19:47:35', '8mR9wNYd', '4420747'), + (17007, 60, 997, 'attending', '2021-10-23 19:56:16', '2025-12-17 19:47:35', '8mR9wNYd', '4420748'), + (17008, 60, 998, 'attending', '2021-10-30 15:55:28', '2025-12-17 19:47:36', '8mR9wNYd', '4420749'), + (17009, 60, 1016, 'attending', '2021-09-05 01:53:59', '2025-12-17 19:47:43', '8mR9wNYd', '4441271'), + (17010, 60, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '8mR9wNYd', '4461883'), + (17011, 60, 1040, 'attending', '2021-12-11 18:40:37', '2025-12-17 19:47:38', '8mR9wNYd', '4496605'), + (17012, 60, 1049, 'attending', '2022-01-22 23:00:52', '2025-12-17 19:47:32', '8mR9wNYd', '4496614'), + (17013, 60, 1050, 'attending', '2022-01-29 19:31:35', '2025-12-17 19:47:32', '8mR9wNYd', '4496615'), + (17014, 60, 1051, 'not_attending', '2022-02-05 16:04:40', '2025-12-17 19:47:32', '8mR9wNYd', '4496616'), + (17015, 60, 1052, 'attending', '2022-01-14 16:52:04', '2025-12-17 19:47:31', '8mR9wNYd', '4496617'), + (17016, 60, 1056, 'attending', '2022-01-08 23:29:28', '2025-12-17 19:47:31', '8mR9wNYd', '4496622'), + (17017, 60, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '8mR9wNYd', '4508342'), + (17018, 60, 1068, 'attending', '2021-09-30 22:17:49', '2025-12-17 19:47:34', '8mR9wNYd', '4511471'), + (17019, 60, 1070, 'attending', '2021-10-01 22:36:45', '2025-12-17 19:47:34', '8mR9wNYd', '4512562'), + (17020, 60, 1072, 'attending', '2021-10-06 20:22:09', '2025-12-17 19:47:34', '8mR9wNYd', '4516287'), + (17021, 60, 1074, 'attending', '2021-09-29 20:41:42', '2025-12-17 19:47:34', '8mR9wNYd', '4528953'), + (17022, 60, 1079, 'attending', '2021-10-20 21:11:34', '2025-12-17 19:47:35', '8mR9wNYd', '4563823'), + (17023, 60, 1082, 'attending', '2021-10-15 20:26:52', '2025-12-17 19:47:35', '8mR9wNYd', '4566762'), + (17024, 60, 1085, 'attending', '2021-12-23 23:43:42', '2025-12-17 19:47:31', '8mR9wNYd', '4568542'), + (17025, 60, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '8mR9wNYd', '4568602'), + (17026, 60, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '8mR9wNYd', '4572153'), + (17027, 60, 1092, 'attending', '2021-10-21 21:52:50', '2025-12-17 19:47:35', '8mR9wNYd', '4582837'), + (17028, 60, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', '8mR9wNYd', '4585962'), + (17029, 60, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '8mR9wNYd', '4596356'), + (17030, 60, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '8mR9wNYd', '4598860'), + (17031, 60, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '8mR9wNYd', '4598861'), + (17032, 60, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '8mR9wNYd', '4602797'), + (17033, 60, 1103, 'attending', '2021-11-13 20:36:17', '2025-12-17 19:47:36', '8mR9wNYd', '4616350'), + (17034, 60, 1108, 'attending', '2021-11-18 00:44:36', '2025-12-17 19:47:37', '8mR9wNYd', '4632276'), + (17035, 60, 1114, 'attending', '2021-11-13 20:36:11', '2025-12-17 19:47:36', '8mR9wNYd', '4637896'), + (17036, 60, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '8mR9wNYd', '4642994'), + (17037, 60, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '8mR9wNYd', '4642995'), + (17038, 60, 1118, 'attending', '2021-12-16 00:34:23', '2025-12-17 19:47:38', '8mR9wNYd', '4642996'), + (17039, 60, 1119, 'attending', '2021-12-22 23:31:54', '2025-12-17 19:47:31', '8mR9wNYd', '4642997'), + (17040, 60, 1126, 'attending', '2021-12-11 18:40:33', '2025-12-17 19:47:38', '8mR9wNYd', '4645687'), + (17041, 60, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '8mR9wNYd', '4645698'), + (17042, 60, 1128, 'attending', '2021-11-20 04:19:31', '2025-12-17 19:47:37', '8mR9wNYd', '4645704'), + (17043, 60, 1129, 'attending', '2021-11-27 22:36:33', '2025-12-17 19:47:37', '8mR9wNYd', '4645705'), + (17044, 60, 1130, 'attending', '2021-12-04 20:52:36', '2025-12-17 19:47:37', '8mR9wNYd', '4658824'), + (17045, 60, 1131, 'attending', '2021-12-18 19:22:38', '2025-12-17 19:47:31', '8mR9wNYd', '4658825'), + (17046, 60, 1132, 'attending', '2021-11-22 23:05:01', '2025-12-17 19:47:37', '8mR9wNYd', '4660657'), + (17047, 60, 1134, 'attending', '2021-11-24 20:33:27', '2025-12-17 19:47:37', '8mR9wNYd', '4668385'), + (17048, 60, 1135, 'attending', '2021-11-26 23:41:47', '2025-12-17 19:47:37', '8mR9wNYd', '4670469'), + (17049, 60, 1136, 'not_attending', '2021-11-26 00:09:49', '2025-12-17 19:47:37', '8mR9wNYd', '4670473'), + (17050, 60, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '8mR9wNYd', '4694407'), + (17051, 60, 1151, 'attending', '2022-01-06 01:01:11', '2025-12-17 19:47:31', '8mR9wNYd', '4708704'), + (17052, 60, 1152, 'attending', '2022-01-13 00:40:58', '2025-12-17 19:47:31', '8mR9wNYd', '4708705'), + (17053, 60, 1153, 'attending', '2022-01-20 00:51:08', '2025-12-17 19:47:32', '8mR9wNYd', '4708707'), + (17054, 60, 1156, 'attending', '2021-12-21 23:13:45', '2025-12-17 19:47:31', '8mR9wNYd', '4715207'), + (17055, 60, 1173, 'attending', '2022-01-04 16:10:24', '2025-12-17 19:47:31', '8mR9wNYd', '4736495'), + (17056, 60, 1174, 'attending', '2022-01-14 16:52:02', '2025-12-17 19:47:31', '8mR9wNYd', '4736496'), + (17057, 60, 1175, 'attending', '2022-01-22 23:00:53', '2025-12-17 19:47:32', '8mR9wNYd', '4736497'), + (17058, 60, 1176, 'not_attending', '2022-02-05 16:04:33', '2025-12-17 19:47:32', '8mR9wNYd', '4736498'), + (17059, 60, 1177, 'attending', '2022-02-12 23:46:16', '2025-12-17 19:47:32', '8mR9wNYd', '4736499'), + (17060, 60, 1178, 'attending', '2022-01-29 19:31:32', '2025-12-17 19:47:32', '8mR9wNYd', '4736500'), + (17061, 60, 1181, 'attending', '2022-03-05 20:28:20', '2025-12-17 19:47:33', '8mR9wNYd', '4736503'), + (17062, 60, 1182, 'attending', '2022-03-12 20:34:51', '2025-12-17 19:47:33', '8mR9wNYd', '4736504'), + (17063, 60, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '8mR9wNYd', '4746789'), + (17064, 60, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '8mR9wNYd', '4753929'), + (17065, 60, 1211, 'maybe', '2022-01-28 17:57:58', '2025-12-17 19:47:32', '8mR9wNYd', '4780754'), + (17066, 60, 1212, 'attending', '2022-02-03 19:36:05', '2025-12-17 19:47:32', '8mR9wNYd', '4780759'), + (17067, 60, 1215, 'attending', '2022-02-18 22:28:20', '2025-12-17 19:47:33', '8mR9wNYd', '4780763'), + (17068, 60, 1219, 'attending', '2022-02-02 23:59:06', '2025-12-17 19:47:32', '8mR9wNYd', '4788466'), + (17069, 60, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '8mR9wNYd', '5038850'), + (17070, 60, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '8mR9wNYd', '5045826'), + (17071, 60, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '8mR9wNYd', '5132533'), + (17072, 60, 1272, 'attending', '2022-03-19 17:00:26', '2025-12-17 19:47:25', '8mR9wNYd', '5186582'), + (17073, 60, 1273, 'attending', '2022-03-26 15:50:58', '2025-12-17 19:47:25', '8mR9wNYd', '5186583'), + (17074, 60, 1274, 'attending', '2022-04-02 19:30:59', '2025-12-17 19:47:26', '8mR9wNYd', '5186585'), + (17075, 60, 1281, 'attending', '2022-04-09 22:12:59', '2025-12-17 19:47:27', '8mR9wNYd', '5190437'), + (17076, 60, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '8mR9wNYd', '5195095'), + (17077, 60, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '8mR9wNYd', '5215989'), + (17078, 60, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '8mR9wNYd', '5223686'), + (17079, 60, 1308, 'attending', '2022-04-13 22:33:34', '2025-12-17 19:47:27', '8mR9wNYd', '5226703'), + (17080, 60, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '8mR9wNYd', '5227432'), + (17081, 60, 1313, 'attending', '2022-04-12 01:44:15', '2025-12-17 19:47:27', '8mR9wNYd', '5231461'), + (17082, 60, 1318, 'attending', '2022-04-14 22:07:35', '2025-12-17 19:47:27', '8mR9wNYd', '5238343'), + (17083, 60, 1332, 'not_attending', '2022-04-14 22:56:04', '2025-12-17 19:47:27', '8mR9wNYd', '5243274'), + (17084, 60, 1337, 'attending', '2022-04-20 21:04:38', '2025-12-17 19:47:27', '8mR9wNYd', '5245036'), + (17085, 60, 1346, 'attending', '2022-04-23 21:45:31', '2025-12-17 19:47:27', '8mR9wNYd', '5247467'), + (17086, 60, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', '8mR9wNYd', '5249631'), + (17087, 60, 1354, 'not_attending', '2022-04-21 18:07:01', '2025-12-17 19:47:27', '8mR9wNYd', '5252569'), + (17088, 60, 1356, 'attending', '2022-04-22 01:32:41', '2025-12-17 19:47:27', '8mR9wNYd', '5252913'), + (17089, 60, 1362, 'attending', '2022-04-27 21:02:10', '2025-12-17 19:47:28', '8mR9wNYd', '5260800'), + (17090, 60, 1371, 'attending', '2022-04-27 21:02:07', '2025-12-17 19:47:27', '8mR9wNYd', '5263784'), + (17091, 60, 1374, 'maybe', '2022-05-07 16:19:39', '2025-12-17 19:47:28', '8mR9wNYd', '5269930'), + (17092, 60, 1378, 'attending', '2022-05-14 14:56:23', '2025-12-17 19:47:29', '8mR9wNYd', '5271448'), + (17093, 60, 1379, 'attending', '2022-05-20 12:06:07', '2025-12-17 19:47:29', '8mR9wNYd', '5271449'), + (17094, 60, 1380, 'attending', '2022-05-28 15:52:57', '2025-12-17 19:47:30', '8mR9wNYd', '5271450'), + (17095, 60, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '8mR9wNYd', '5276469'), + (17096, 60, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '8mR9wNYd', '5278159'), + (17097, 60, 1407, 'attending', '2022-06-01 19:25:02', '2025-12-17 19:47:30', '8mR9wNYd', '5363695'), + (17098, 60, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '8mR9wNYd', '5365960'), + (17099, 60, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '8mR9wNYd', '5368973'), + (17100, 60, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '8mR9wNYd', '5378247'), + (17101, 60, 1431, 'attending', '2022-06-11 19:45:04', '2025-12-17 19:47:30', '8mR9wNYd', '5389605'), + (17102, 60, 1442, 'attending', '2022-06-18 17:36:07', '2025-12-17 19:47:17', '8mR9wNYd', '5397265'), + (17103, 60, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '8mR9wNYd', '5403967'), + (17104, 60, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '8mR9wNYd', '5404786'), + (17105, 60, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '8mR9wNYd', '5405203'), + (17106, 60, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '8mR9wNYd', '5408794'), + (17107, 60, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '8mR9wNYd', '5411699'), + (17108, 60, 1482, 'attending', '2022-06-25 18:33:45', '2025-12-17 19:47:19', '8mR9wNYd', '5412550'), + (17109, 60, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '8mR9wNYd', '5415046'), + (17110, 60, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '8mR9wNYd', '5422086'), + (17111, 60, 1498, 'attending', '2022-07-02 21:54:54', '2025-12-17 19:47:19', '8mR9wNYd', '5422406'), + (17112, 60, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '8mR9wNYd', '5424565'), + (17113, 60, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '8mR9wNYd', '5426882'), + (17114, 60, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '8mR9wNYd', '5427083'), + (17115, 60, 1508, 'attending', '2022-07-13 22:40:57', '2025-12-17 19:47:19', '8mR9wNYd', '5433453'), + (17116, 60, 1511, 'attending', '2022-07-09 20:45:19', '2025-12-17 19:47:19', '8mR9wNYd', '5437733'), + (17117, 60, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '8mR9wNYd', '5441125'), + (17118, 60, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '8mR9wNYd', '5441126'), + (17119, 60, 1515, 'attending', '2022-08-06 22:05:15', '2025-12-17 19:47:21', '8mR9wNYd', '5441128'), + (17120, 60, 1516, 'maybe', '2022-08-20 21:48:56', '2025-12-17 19:47:23', '8mR9wNYd', '5441129'), + (17121, 60, 1517, 'attending', '2022-08-27 19:18:02', '2025-12-17 19:47:23', '8mR9wNYd', '5441130'), + (17122, 60, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '8mR9wNYd', '5441131'), + (17123, 60, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '8mR9wNYd', '5441132'), + (17124, 60, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '8mR9wNYd', '5446643'), + (17125, 60, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '8mR9wNYd', '5453325'), + (17126, 60, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '8mR9wNYd', '5454516'), + (17127, 60, 1544, 'attending', '2022-09-17 16:17:59', '2025-12-17 19:47:11', '8mR9wNYd', '5454517'), + (17128, 60, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '8mR9wNYd', '5454605'), + (17129, 60, 1546, 'attending', '2022-07-27 22:00:51', '2025-12-17 19:47:20', '8mR9wNYd', '5454607'), + (17130, 60, 1551, 'attending', '2022-07-19 22:44:10', '2025-12-17 19:47:20', '8mR9wNYd', '5455037'), + (17131, 60, 1557, 'attending', '2022-08-03 21:17:19', '2025-12-17 19:47:21', '8mR9wNYd', '5458729'), + (17132, 60, 1558, 'attending', '2022-09-13 21:02:55', '2025-12-17 19:47:10', '8mR9wNYd', '5458730'), + (17133, 60, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '8mR9wNYd', '5461278'), + (17134, 60, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '8mR9wNYd', '5469480'), + (17135, 60, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '8mR9wNYd', '5471073'), + (17136, 60, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '8mR9wNYd', '5474663'), + (17137, 60, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '8mR9wNYd', '5482022'), + (17138, 60, 1575, 'attending', '2022-08-26 22:45:29', '2025-12-17 19:47:23', '8mR9wNYd', '5482250'), + (17139, 60, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '8mR9wNYd', '5482793'), + (17140, 60, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '8mR9wNYd', '5488912'), + (17141, 60, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '8mR9wNYd', '5492192'), + (17142, 60, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '8mR9wNYd', '5493139'), + (17143, 60, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '8mR9wNYd', '5493200'), + (17144, 60, 1592, 'attending', '2022-08-10 16:21:19', '2025-12-17 19:47:22', '8mR9wNYd', '5494031'), + (17145, 60, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '8mR9wNYd', '5502188'), + (17146, 60, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '8mR9wNYd', '5505059'), + (17147, 60, 1610, 'attending', '2022-08-26 20:06:19', '2025-12-17 19:47:23', '8mR9wNYd', '5506595'), + (17148, 60, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '8mR9wNYd', '5509055'), + (17149, 60, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '8mR9wNYd', '5512862'), + (17150, 60, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '8mR9wNYd', '5513985'), + (17151, 60, 1626, 'attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '8mR9wNYd', '5519981'), + (17152, 60, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '8mR9wNYd', '5522550'), + (17153, 60, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '8mR9wNYd', '5534683'), + (17154, 60, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '8mR9wNYd', '5537735'), + (17155, 60, 1640, 'attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '8mR9wNYd', '5540859'), + (17156, 60, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '8mR9wNYd', '5546619'), + (17157, 60, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '8mR9wNYd', '5555245'), + (17158, 60, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '8mR9wNYd', '5557747'), + (17159, 60, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '8mR9wNYd', '5560255'), + (17160, 60, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '8mR9wNYd', '5562906'), + (17161, 60, 1667, 'attending', '2022-09-24 18:42:30', '2025-12-17 19:47:11', '8mR9wNYd', '5563221'), + (17162, 60, 1668, 'attending', '2022-09-25 03:23:26', '2025-12-17 19:47:12', '8mR9wNYd', '5563222'), + (17163, 60, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '8mR9wNYd', '5600604'), + (17164, 60, 1679, 'attending', '2022-10-04 21:56:21', '2025-12-17 19:47:12', '8mR9wNYd', '5601099'), + (17165, 60, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '8mR9wNYd', '5605544'), + (17166, 60, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', '8mR9wNYd', '5606737'), + (17167, 60, 1717, 'attending', '2022-10-21 20:03:09', '2025-12-17 19:47:13', '8mR9wNYd', '5622842'), + (17168, 60, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', '8mR9wNYd', '5630907'), + (17169, 60, 1719, 'attending', '2022-10-07 21:58:50', '2025-12-17 19:47:12', '8mR9wNYd', '5630958'), + (17170, 60, 1720, 'attending', '2022-10-15 18:11:24', '2025-12-17 19:47:12', '8mR9wNYd', '5630959'), + (17171, 60, 1721, 'not_attending', '2022-10-17 20:09:46', '2025-12-17 19:47:13', '8mR9wNYd', '5630960'), + (17172, 60, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '8mR9wNYd', '5630961'), + (17173, 60, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '8mR9wNYd', '5630962'), + (17174, 60, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '8mR9wNYd', '5630966'), + (17175, 60, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '8mR9wNYd', '5630967'), + (17176, 60, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '8mR9wNYd', '5630968'), + (17177, 60, 1727, 'attending', '2022-12-03 18:49:00', '2025-12-17 19:47:16', '8mR9wNYd', '5630969'), + (17178, 60, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '8mR9wNYd', '5635406'), + (17179, 60, 1733, 'attending', '2022-10-11 15:46:46', '2025-12-17 19:47:12', '8mR9wNYd', '5635411'), + (17180, 60, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '8mR9wNYd', '5638765'), + (17181, 60, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '8mR9wNYd', '5640097'), + (17182, 60, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '8mR9wNYd', '5640843'), + (17183, 60, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '8mR9wNYd', '5641521'), + (17184, 60, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '8mR9wNYd', '5642818'), + (17185, 60, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '8mR9wNYd', '5652395'), + (17186, 60, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '8mR9wNYd', '5670445'), + (17187, 60, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '8mR9wNYd', '5671637'), + (17188, 60, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '8mR9wNYd', '5672329'), + (17189, 60, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '8mR9wNYd', '5674057'), + (17190, 60, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '8mR9wNYd', '5674060'), + (17191, 60, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '8mR9wNYd', '5677461'), + (17192, 60, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '8mR9wNYd', '5698046'), + (17193, 60, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '8mR9wNYd', '5699760'), + (17194, 60, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '8mR9wNYd', '5741601'), + (17195, 60, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '8mR9wNYd', '5763458'), + (17196, 60, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '8mR9wNYd', '5774172'), + (17197, 60, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '8mR9wNYd', '5818247'), + (17198, 60, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '8mR9wNYd', '5819471'), + (17199, 60, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '8mR9wNYd', '5827739'), + (17200, 60, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '8mR9wNYd', '5844306'), + (17201, 60, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '8mR9wNYd', '5850159'), + (17202, 60, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '8mR9wNYd', '5858999'), + (17203, 60, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '8mR9wNYd', '5871984'), + (17204, 60, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '8mR9wNYd', '5876354'), + (17205, 60, 1864, 'attending', '2023-01-20 21:32:26', '2025-12-17 19:47:05', '8mR9wNYd', '5879675'), + (17206, 60, 1865, 'not_attending', '2023-01-28 15:07:02', '2025-12-17 19:47:06', '8mR9wNYd', '5879676'), + (17207, 60, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '8mR9wNYd', '5880939'), + (17208, 60, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '8mR9wNYd', '5887890'), + (17209, 60, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '8mR9wNYd', '5888598'), + (17210, 60, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '8mR9wNYd', '5893260'), + (17211, 60, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '8mR9wNYd', '5899826'), + (17212, 60, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '8mR9wNYd', '5901108'), + (17213, 60, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '8mR9wNYd', '5901126'), + (17214, 60, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mR9wNYd', '6045684'), + (17215, 60, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8mR9wNYd', '6067245'), + (17216, 60, 2060, 'not_attending', '2023-05-20 22:43:24', '2025-12-17 19:47:03', '8mR9wNYd', '6097414'), + (17217, 60, 2061, 'not_attending', '2023-05-11 23:34:43', '2025-12-17 19:47:02', '8mR9wNYd', '6097442'), + (17218, 60, 2064, 'maybe', '2023-06-24 16:25:28', '2025-12-17 19:46:50', '8mR9wNYd', '6099988'), + (17219, 60, 2065, 'maybe', '2023-06-16 22:32:59', '2025-12-17 19:46:49', '8mR9wNYd', '6101169'), + (17220, 60, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '8mR9wNYd', '6101361'), + (17221, 60, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8mR9wNYd', '6101362'), + (17222, 60, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '8mR9wNYd', '6103752'), + (17223, 60, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8mR9wNYd', '6107314'), + (17224, 60, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '8mR9wNYd', '6120034'), + (17225, 60, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '8mR9wNYd', '6136733'), + (17226, 60, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '8mR9wNYd', '6137989'), + (17227, 60, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '8mR9wNYd', '6150864'), + (17228, 60, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '8mR9wNYd', '6155491'), + (17229, 60, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '8mR9wNYd', '6164417'), + (17230, 60, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '8mR9wNYd', '6166388'), + (17231, 60, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '8mR9wNYd', '6176439'), + (17232, 60, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '8mR9wNYd', '6182410'), + (17233, 60, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '8mR9wNYd', '6185812'), + (17234, 60, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '8mR9wNYd', '6187651'), + (17235, 60, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '8mR9wNYd', '6187963'), + (17236, 60, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '8mR9wNYd', '6187964'), + (17237, 60, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '8mR9wNYd', '6187966'), + (17238, 60, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '8mR9wNYd', '6187967'), + (17239, 60, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '8mR9wNYd', '6187969'), + (17240, 60, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '8mR9wNYd', '6334878'), + (17241, 60, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '8mR9wNYd', '6337236'), + (17242, 60, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '8mR9wNYd', '6337970'), + (17243, 60, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '8mR9wNYd', '6338308'), + (17244, 60, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '8mR9wNYd', '6340845'), + (17245, 60, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '8mR9wNYd', '6341710'), + (17246, 60, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '8mR9wNYd', '6342044'), + (17247, 60, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '8mR9wNYd', '6342298'), + (17248, 60, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '8mR9wNYd', '6343294'), + (17249, 60, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '8mR9wNYd', '6347034'), + (17250, 60, 2177, 'attending', '2023-08-12 20:36:56', '2025-12-17 19:46:55', '8mR9wNYd', '6347053'), + (17251, 60, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '8mR9wNYd', '6347056'), + (17252, 60, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '8mR9wNYd', '6353830'), + (17253, 60, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '8mR9wNYd', '6353831'), + (17254, 60, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '8mR9wNYd', '6357867'), + (17255, 60, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '8mR9wNYd', '6358652'), + (17256, 60, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '8mR9wNYd', '6361709'), + (17257, 60, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '8mR9wNYd', '6361710'), + (17258, 60, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '8mR9wNYd', '6361711'), + (17259, 60, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '8mR9wNYd', '6361712'), + (17260, 60, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '8mR9wNYd', '6361713'), + (17261, 60, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '8mR9wNYd', '6382573'), + (17262, 60, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '8mR9wNYd', '6388604'), + (17263, 60, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '8mR9wNYd', '6394629'), + (17264, 60, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '8mR9wNYd', '6394631'), + (17265, 60, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '8mR9wNYd', '6440863'), + (17266, 60, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '8mR9wNYd', '6445440'), + (17267, 60, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '8mR9wNYd', '6453951'), + (17268, 60, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '8mR9wNYd', '6461696'), + (17269, 60, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '8mR9wNYd', '6462129'), + (17270, 60, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '8mR9wNYd', '6463218'), + (17271, 60, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '8mR9wNYd', '6472181'), + (17272, 60, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '8mR9wNYd', '6482693'), + (17273, 60, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '8mR9wNYd', '6484200'), + (17274, 60, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '8mR9wNYd', '6484680'), + (17275, 60, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '8mR9wNYd', '6507741'), + (17276, 60, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '8mR9wNYd', '6514659'), + (17277, 60, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '8mR9wNYd', '6514660'), + (17278, 60, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '8mR9wNYd', '6519103'), + (17279, 60, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '8mR9wNYd', '6535681'), + (17280, 60, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '8mR9wNYd', '6584747'), + (17281, 60, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '8mR9wNYd', '6587097'), + (17282, 60, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '8mR9wNYd', '6609022'), + (17283, 60, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '8mR9wNYd', '6632757'), + (17284, 60, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '8mR9wNYd', '6644187'), + (17285, 60, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '8mR9wNYd', '6648951'), + (17286, 60, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '8mR9wNYd', '6648952'), + (17287, 60, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '8mR9wNYd', '6655401'), + (17288, 60, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '8mR9wNYd', '6661585'), + (17289, 60, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '8mR9wNYd', '6661588'), + (17290, 60, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '8mR9wNYd', '6661589'), + (17291, 60, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '8mR9wNYd', '6699906'), + (17292, 60, 2410, 'attending', '2024-02-10 18:59:10', '2025-12-17 19:46:41', '8mR9wNYd', '6699911'), + (17293, 60, 2411, 'attending', '2024-02-15 18:15:38', '2025-12-17 19:46:41', '8mR9wNYd', '6699913'), + (17294, 60, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '8mR9wNYd', '6701109'), + (17295, 60, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '8mR9wNYd', '6705219'), + (17296, 60, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '8mR9wNYd', '6710153'), + (17297, 60, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '8mR9wNYd', '6711552'), + (17298, 60, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '8mR9wNYd', '6711553'), + (17299, 60, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '8mR9wNYd', '6722688'), + (17300, 60, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '8mR9wNYd', '6730620'), + (17301, 60, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '8mR9wNYd', '6730642'), + (17302, 60, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '8mR9wNYd', '6740364'), + (17303, 60, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '8mR9wNYd', '6743829'), + (17304, 60, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '8mR9wNYd', '7030380'), + (17305, 60, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '8mR9wNYd', '7033677'), + (17306, 60, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '8mR9wNYd', '7035415'), + (17307, 60, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '8mR9wNYd', '7044715'), + (17308, 60, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '8mR9wNYd', '7050318'), + (17309, 60, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '8mR9wNYd', '7050319'), + (17310, 60, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '8mR9wNYd', '7050322'), + (17311, 60, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '8mR9wNYd', '7057804'), + (17312, 60, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '8mR9wNYd', '7059866'), + (17313, 60, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '8mR9wNYd', '7072824'), + (17314, 60, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '8mR9wNYd', '7074348'), + (17315, 60, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '8mR9wNYd', '7074364'), + (17316, 60, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '8mR9wNYd', '7089267'), + (17317, 60, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '8mR9wNYd', '7098747'), + (17318, 60, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '8mR9wNYd', '7113468'), + (17319, 60, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '8mR9wNYd', '7114856'), + (17320, 60, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '8mR9wNYd', '7114951'), + (17321, 60, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '8mR9wNYd', '7114955'), + (17322, 60, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '8mR9wNYd', '7114956'), + (17323, 60, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '8mR9wNYd', '7114957'), + (17324, 60, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '8mR9wNYd', '7153615'), + (17325, 60, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '8mR9wNYd', '7159484'), + (17326, 60, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '8mR9wNYd', '7178446'), + (17327, 60, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '8mR9wNYd', '7220467'), + (17328, 60, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '8mR9wNYd', '7240354'), + (17329, 60, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '8mR9wNYd', '7251633'), + (17330, 60, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '8mR9wNYd', '7263048'), + (17331, 60, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '8mR9wNYd', '7302674'), + (17332, 60, 2679, 'attending', '2024-06-22 18:31:37', '2025-12-17 19:46:29', '8mR9wNYd', '7319490'), + (17333, 60, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '8mR9wNYd', '7324073'), + (17334, 60, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '8mR9wNYd', '7324074'), + (17335, 60, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '8mR9wNYd', '7324075'), + (17336, 60, 2691, 'attending', '2024-07-20 22:06:25', '2025-12-17 19:46:30', '8mR9wNYd', '7324076'), + (17337, 60, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '8mR9wNYd', '7324078'), + (17338, 60, 2695, 'attending', '2024-08-17 17:42:35', '2025-12-17 19:46:31', '8mR9wNYd', '7324080'), + (17339, 60, 2696, 'attending', '2024-08-24 20:37:29', '2025-12-17 19:46:32', '8mR9wNYd', '7324081'), + (17340, 60, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '8mR9wNYd', '7324082'), + (17341, 60, 2698, 'maybe', '2024-09-06 12:12:22', '2025-12-17 19:46:24', '8mR9wNYd', '7324083'), + (17342, 60, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '8mR9wNYd', '7331457'), + (17343, 60, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '8mR9wNYd', '7356752'), + (17344, 60, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '8mR9wNYd', '7363643'), + (17345, 60, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '8mR9wNYd', '7368606'), + (17346, 60, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '8mR9wNYd', '7397462'), + (17347, 60, 2821, 'maybe', '2024-10-08 14:06:06', '2025-12-17 19:46:26', '8mR9wNYd', '7424275'), + (17348, 60, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '8mR9wNYd', '7424276'), + (17349, 60, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '8mR9wNYd', '7432751'), + (17350, 60, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '8mR9wNYd', '7432752'), + (17351, 60, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '8mR9wNYd', '7432753'), + (17352, 60, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '8mR9wNYd', '7432754'), + (17353, 60, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '8mR9wNYd', '7432755'), + (17354, 60, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '8mR9wNYd', '7432756'), + (17355, 60, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '8mR9wNYd', '7432758'), + (17356, 60, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '8mR9wNYd', '7432759'), + (17357, 60, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '8mR9wNYd', '7433834'), + (17358, 60, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '8mR9wNYd', '7470197'), + (17359, 60, 2878, 'maybe', '2024-10-16 21:09:30', '2025-12-17 19:46:26', '8mR9wNYd', '7633857'), + (17360, 60, 2881, 'attending', '2024-10-29 03:20:35', '2025-12-17 19:46:26', '8mR9wNYd', '7644047'), + (17361, 60, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '8mR9wNYd', '7685613'), + (17362, 60, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '8mR9wNYd', '7688194'), + (17363, 60, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '8mR9wNYd', '7688196'), + (17364, 60, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '8mR9wNYd', '7688289'), + (17365, 60, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '8mR9wNYd', '7692763'), + (17366, 60, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '8mR9wNYd', '7697552'), + (17367, 60, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '8mR9wNYd', '7699878'), + (17368, 60, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '8mR9wNYd', '7704043'), + (17369, 60, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '8mR9wNYd', '7712467'), + (17370, 60, 2926, 'attending', '2024-12-07 21:58:52', '2025-12-17 19:46:21', '8mR9wNYd', '7713585'), + (17371, 60, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '8mR9wNYd', '7713586'), + (17372, 60, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '8mR9wNYd', '7738518'), + (17373, 60, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '8mR9wNYd', '7750632'), + (17374, 60, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '8mR9wNYd', '7750636'), + (17375, 60, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '8mR9wNYd', '7796540'), + (17376, 60, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '8mR9wNYd', '7796541'), + (17377, 60, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '8mR9wNYd', '7796542'), + (17378, 60, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '8mR9wNYd', '7825913'), + (17379, 60, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '8mR9wNYd', '7826209'), + (17380, 60, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '8mR9wNYd', '7834742'), + (17381, 60, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '8mR9wNYd', '7842108'), + (17382, 60, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '8mR9wNYd', '7842902'), + (17383, 60, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '8mR9wNYd', '7842903'), + (17384, 60, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '8mR9wNYd', '7842904'), + (17385, 60, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '8mR9wNYd', '7842905'), + (17386, 60, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '8mR9wNYd', '7855719'), + (17387, 60, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '8mR9wNYd', '7860683'), + (17388, 60, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '8mR9wNYd', '7860684'), + (17389, 60, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '8mR9wNYd', '7866095'), + (17390, 60, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '8mR9wNYd', '7869170'), + (17391, 60, 3014, 'attending', '2025-04-01 17:20:47', '2025-12-17 19:46:19', '8mR9wNYd', '7869185'), + (17392, 60, 3015, 'attending', '2025-04-21 16:31:35', '2025-12-17 19:46:20', '8mR9wNYd', '7869186'), + (17393, 60, 3016, 'attending', '2025-04-16 13:18:55', '2025-12-17 19:46:20', '8mR9wNYd', '7869187'), + (17394, 60, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '8mR9wNYd', '7869188'), + (17395, 60, 3018, 'attending', '2025-04-09 20:33:10', '2025-12-17 19:46:20', '8mR9wNYd', '7869189'), + (17396, 60, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '8mR9wNYd', '7869201'), + (17397, 60, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '8mR9wNYd', '7877465'), + (17398, 60, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '8mR9wNYd', '7878570'), + (17399, 60, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '8mR9wNYd', '7888250'), + (17400, 60, 3088, 'maybe', '2025-06-12 14:42:46', '2025-12-17 19:46:15', '8mR9wNYd', '7904777'), + (17401, 60, 3094, 'maybe', '2025-05-10 12:55:02', '2025-12-17 19:46:21', '8mR9wNYd', '8342292'), + (17402, 60, 3095, 'attending', '2025-04-29 14:21:22', '2025-12-17 19:46:20', '8mR9wNYd', '8342293'), + (17403, 60, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '8mR9wNYd', '8349164'), + (17404, 60, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '8mR9wNYd', '8349545'), + (17405, 60, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '8mR9wNYd', '8353584'), + (17406, 60, 3131, 'not_attending', '2025-05-15 12:41:49', '2025-12-17 19:46:21', '8mR9wNYd', '8368028'), + (17407, 60, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '8mR9wNYd', '8368029'), + (17408, 60, 3133, 'maybe', '2025-05-29 14:53:43', '2025-12-17 19:46:14', '8mR9wNYd', '8368030'), + (17409, 60, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '8mR9wNYd', '8388462'), + (17410, 60, 3150, 'attending', '2025-06-21 16:32:48', '2025-12-17 19:46:15', '8mR9wNYd', '8393174'), + (17411, 60, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '8mR9wNYd', '8400273'), + (17412, 60, 3154, 'attending', '2025-06-28 18:06:03', '2025-12-17 19:46:15', '8mR9wNYd', '8400274'), + (17413, 60, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '8mR9wNYd', '8400275'), + (17414, 60, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '8mR9wNYd', '8400276'), + (17415, 60, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '8mR9wNYd', '8404977'), + (17416, 60, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '8mR9wNYd', '8430783'), + (17417, 60, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '8mR9wNYd', '8430784'), + (17418, 60, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '8mR9wNYd', '8430799'), + (17419, 60, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '8mR9wNYd', '8430800'), + (17420, 60, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '8mR9wNYd', '8430801'), + (17421, 60, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '8mR9wNYd', '8438709'), + (17422, 60, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '8mR9wNYd', '8457738'), + (17423, 60, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '8mR9wNYd', '8459566'), + (17424, 60, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '8mR9wNYd', '8459567'), + (17425, 60, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '8mR9wNYd', '8461032'), + (17426, 60, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '8mR9wNYd', '8477877'), + (17427, 60, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '8mR9wNYd', '8485688'), + (17428, 60, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '8mR9wNYd', '8490587'), + (17429, 60, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '8mR9wNYd', '8493552'), + (17430, 60, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '8mR9wNYd', '8493553'), + (17431, 60, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '8mR9wNYd', '8493554'), + (17432, 60, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '8mR9wNYd', '8493555'), + (17433, 60, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '8mR9wNYd', '8493556'), + (17434, 60, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '8mR9wNYd', '8493557'), + (17435, 60, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '8mR9wNYd', '8493558'), + (17436, 60, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '8mR9wNYd', '8493559'), + (17437, 60, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '8mR9wNYd', '8493560'), + (17438, 60, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '8mR9wNYd', '8493561'), + (17439, 60, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '8mR9wNYd', '8493572'), + (17440, 60, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '8mR9wNYd', '8540725'), + (17441, 60, 3305, 'attending', '2025-12-06 20:19:17', '2025-12-17 19:46:11', '8mR9wNYd', '8550025'), + (17442, 60, 3306, 'attending', '2025-12-13 18:55:19', '2025-12-17 19:46:11', '8mR9wNYd', '8550026'), + (17443, 60, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '8mR9wNYd', '8555421'), + (17444, 60, 3346, 'attending', '2026-01-02 21:47:44', '2026-01-02 21:47:44', NULL, NULL), + (17445, 61, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOpMqqEm', '5630967'), + (17446, 61, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOpMqqEm', '5630968'), + (17447, 61, 1727, 'attending', '2022-11-28 01:58:09', '2025-12-17 19:47:16', 'dOpMqqEm', '5630969'), + (17448, 61, 1744, 'maybe', '2022-11-23 16:42:10', '2025-12-17 19:47:16', 'dOpMqqEm', '5642818'), + (17449, 61, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOpMqqEm', '5670445'), + (17450, 61, 1784, 'not_attending', '2022-11-16 19:58:39', '2025-12-17 19:47:16', 'dOpMqqEm', '5699760'), + (17451, 61, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOpMqqEm', '5741601'), + (17452, 61, 1795, 'attending', '2022-11-16 18:40:21', '2025-12-17 19:47:16', 'dOpMqqEm', '5754366'), + (17453, 61, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOpMqqEm', '5763458'), + (17454, 61, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOpMqqEm', '5774172'), + (17455, 61, 1826, 'attending', '2022-11-28 02:00:09', '2025-12-17 19:47:04', 'dOpMqqEm', '5776768'), + (17456, 61, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOpMqqEm', '5818247'), + (17457, 61, 1834, 'maybe', '2022-12-10 18:12:57', '2025-12-17 19:47:17', 'dOpMqqEm', '5819470'), + (17458, 61, 1835, 'maybe', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOpMqqEm', '5819471'), + (17459, 61, 1839, 'attending', '2022-12-06 04:37:28', '2025-12-17 19:47:04', 'dOpMqqEm', '5821920'), + (17460, 61, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOpMqqEm', '5827739'), + (17461, 61, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOpMqqEm', '5844306'), + (17462, 61, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOpMqqEm', '5850159'), + (17463, 61, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOpMqqEm', '5858999'), + (17464, 61, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOpMqqEm', '5871984'), + (17465, 61, 1861, 'maybe', '2023-01-17 16:10:08', '2025-12-17 19:47:05', 'dOpMqqEm', '5876354'), + (17466, 61, 1864, 'attending', '2023-01-17 04:44:23', '2025-12-17 19:47:05', 'dOpMqqEm', '5879675'), + (17467, 61, 1865, 'attending', '2023-01-26 12:02:56', '2025-12-17 19:47:06', 'dOpMqqEm', '5879676'), + (17468, 61, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dOpMqqEm', '5880939'), + (17469, 61, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dOpMqqEm', '5880940'), + (17470, 61, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dOpMqqEm', '5880942'), + (17471, 61, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dOpMqqEm', '5880943'), + (17472, 61, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOpMqqEm', '5887890'), + (17473, 61, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOpMqqEm', '5888598'), + (17474, 61, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOpMqqEm', '5893260'), + (17475, 61, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dOpMqqEm', '5899826'), + (17476, 61, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dOpMqqEm', '5900199'), + (17477, 61, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dOpMqqEm', '5900200'), + (17478, 61, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOpMqqEm', '5900202'), + (17479, 61, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOpMqqEm', '5900203'), + (17480, 61, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dOpMqqEm', '5901108'), + (17481, 61, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dOpMqqEm', '5901126'), + (17482, 61, 1897, 'attending', '2023-02-07 12:19:03', '2025-12-17 19:47:07', 'dOpMqqEm', '5901128'), + (17483, 61, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dOpMqqEm', '5909655'), + (17484, 61, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dOpMqqEm', '5910522'), + (17485, 61, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dOpMqqEm', '5910526'), + (17486, 61, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dOpMqqEm', '5910528'), + (17487, 61, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dOpMqqEm', '5916219'), + (17488, 61, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dOpMqqEm', '5936234'), + (17489, 61, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dOpMqqEm', '5958351'), + (17490, 61, 1936, 'attending', '2023-02-26 00:16:58', '2025-12-17 19:47:08', 'dOpMqqEm', '5959397'), + (17491, 61, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dOpMqqEm', '5959751'), + (17492, 61, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dOpMqqEm', '5959755'), + (17493, 61, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dOpMqqEm', '5960055'), + (17494, 61, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dOpMqqEm', '5961684'), + (17495, 61, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dOpMqqEm', '5962132'), + (17496, 61, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dOpMqqEm', '5962133'), + (17497, 61, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dOpMqqEm', '5962134'), + (17498, 61, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dOpMqqEm', '5962317'), + (17499, 61, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dOpMqqEm', '5962318'), + (17500, 61, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dOpMqqEm', '5965933'), + (17501, 61, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dOpMqqEm', '5967014'), + (17502, 61, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dOpMqqEm', '5972815'), + (17503, 61, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dOpMqqEm', '5974016'), + (17504, 61, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dOpMqqEm', '5981515'), + (17505, 61, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOpMqqEm', '5993516'), + (17506, 61, 1973, 'maybe', '2023-03-18 14:16:32', '2025-12-17 19:46:56', 'dOpMqqEm', '5993777'), + (17507, 61, 1974, 'maybe', '2023-03-30 20:50:03', '2025-12-17 19:46:57', 'dOpMqqEm', '5993778'), + (17508, 61, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOpMqqEm', '5998939'), + (17509, 61, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOpMqqEm', '6028191'), + (17510, 61, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOpMqqEm', '6040066'), + (17511, 61, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOpMqqEm', '6042717'), + (17512, 61, 1986, 'maybe', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOpMqqEm', '6044838'), + (17513, 61, 1987, 'maybe', '2023-04-18 16:05:24', '2025-12-17 19:47:00', 'dOpMqqEm', '6044839'), + (17514, 61, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOpMqqEm', '6045684'), + (17515, 61, 1992, 'maybe', '2023-04-01 15:22:29', '2025-12-17 19:46:58', 'dOpMqqEm', '6048742'), + (17516, 61, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dOpMqqEm', '6050104'), + (17517, 61, 1999, 'maybe', '2023-04-18 16:05:38', '2025-12-17 19:47:00', 'dOpMqqEm', '6052057'), + (17518, 61, 2002, 'maybe', '2023-04-28 21:43:05', '2025-12-17 19:47:01', 'dOpMqqEm', '6052605'), + (17519, 61, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOpMqqEm', '6053195'), + (17520, 61, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOpMqqEm', '6053198'), + (17521, 61, 2008, 'maybe', '2023-04-07 16:42:47', '2025-12-17 19:46:58', 'dOpMqqEm', '6055808'), + (17522, 61, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOpMqqEm', '6056085'), + (17523, 61, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOpMqqEm', '6056916'), + (17524, 61, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOpMqqEm', '6059290'), + (17525, 61, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOpMqqEm', '6060328'), + (17526, 61, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOpMqqEm', '6061037'), + (17527, 61, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOpMqqEm', '6061039'), + (17528, 61, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOpMqqEm', '6067245'), + (17529, 61, 2026, 'attending', '2023-04-24 14:03:18', '2025-12-17 19:47:01', 'dOpMqqEm', '6068078'), + (17530, 61, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOpMqqEm', '6068094'), + (17531, 61, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOpMqqEm', '6068252'), + (17532, 61, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOpMqqEm', '6068253'), + (17533, 61, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOpMqqEm', '6068254'), + (17534, 61, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dOpMqqEm', '6068280'), + (17535, 61, 2032, 'attending', '2023-06-02 17:39:22', '2025-12-17 19:47:04', 'dOpMqqEm', '6068281'), + (17536, 61, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOpMqqEm', '6069093'), + (17537, 61, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOpMqqEm', '6072528'), + (17538, 61, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOpMqqEm', '6079840'), + (17539, 61, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOpMqqEm', '6083398'), + (17540, 61, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dOpMqqEm', '6093504'), + (17541, 61, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOpMqqEm', '6097414'), + (17542, 61, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOpMqqEm', '6097442'), + (17543, 61, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOpMqqEm', '6097684'), + (17544, 61, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOpMqqEm', '6098762'), + (17545, 61, 2064, 'maybe', '2023-06-24 15:14:23', '2025-12-17 19:46:50', 'dOpMqqEm', '6099988'), + (17546, 61, 2065, 'attending', '2023-06-15 23:48:50', '2025-12-17 19:46:49', 'dOpMqqEm', '6101169'), + (17547, 61, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOpMqqEm', '6101361'), + (17548, 61, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOpMqqEm', '6101362'), + (17549, 61, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dOpMqqEm', '6103752'), + (17550, 61, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOpMqqEm', '6107314'), + (17551, 61, 2085, 'attending', '2023-05-30 23:03:03', '2025-12-17 19:47:04', 'dOpMqqEm', '6118068'), + (17552, 61, 2087, 'attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOpMqqEm', '6120034'), + (17553, 61, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dOpMqqEm', '6136733'), + (17554, 61, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOpMqqEm', '6137989'), + (17555, 61, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOpMqqEm', '6150864'), + (17556, 61, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOpMqqEm', '6155491'), + (17557, 61, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOpMqqEm', '6164417'), + (17558, 61, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOpMqqEm', '6166388'), + (17559, 61, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOpMqqEm', '6176439'), + (17560, 61, 2122, 'attending', '2023-06-27 22:03:23', '2025-12-17 19:46:51', 'dOpMqqEm', '6176476'), + (17561, 61, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dOpMqqEm', '6180853'), + (17562, 61, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOpMqqEm', '6182410'), + (17563, 61, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOpMqqEm', '6185812'), + (17564, 61, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOpMqqEm', '6187651'), + (17565, 61, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOpMqqEm', '6187963'), + (17566, 61, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOpMqqEm', '6187964'), + (17567, 61, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOpMqqEm', '6187966'), + (17568, 61, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOpMqqEm', '6187967'), + (17569, 61, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOpMqqEm', '6187969'), + (17570, 61, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOpMqqEm', '6334878'), + (17571, 61, 2152, 'maybe', '2023-07-14 21:43:35', '2025-12-17 19:46:52', 'dOpMqqEm', '6337021'), + (17572, 61, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOpMqqEm', '6337236'), + (17573, 61, 2155, 'maybe', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOpMqqEm', '6337970'), + (17574, 61, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOpMqqEm', '6338308'), + (17575, 61, 2159, 'attending', '2023-07-19 14:55:59', '2025-12-17 19:46:53', 'dOpMqqEm', '6338355'), + (17576, 61, 2160, 'attending', '2023-07-29 14:37:12', '2025-12-17 19:46:54', 'dOpMqqEm', '6338358'), + (17577, 61, 2161, 'attending', '2023-07-15 19:11:38', '2025-12-17 19:46:52', 'dOpMqqEm', '6340748'), + (17578, 61, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dOpMqqEm', '6340845'), + (17579, 61, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOpMqqEm', '6341710'), + (17580, 61, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOpMqqEm', '6342044'), + (17581, 61, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOpMqqEm', '6342298'), + (17582, 61, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOpMqqEm', '6343294'), + (17583, 61, 2175, 'not_attending', '2023-07-22 18:59:02', '2025-12-17 19:46:53', 'dOpMqqEm', '6346982'), + (17584, 61, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOpMqqEm', '6347034'), + (17585, 61, 2177, 'attending', '2023-08-11 19:36:58', '2025-12-17 19:46:55', 'dOpMqqEm', '6347053'), + (17586, 61, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOpMqqEm', '6347056'), + (17587, 61, 2184, 'attending', '2023-07-29 20:37:46', '2025-12-17 19:46:54', 'dOpMqqEm', '6353825'), + (17588, 61, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOpMqqEm', '6353830'), + (17589, 61, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOpMqqEm', '6353831'), + (17590, 61, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOpMqqEm', '6357867'), + (17591, 61, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOpMqqEm', '6358652'), + (17592, 61, 2196, 'attending', '2023-08-29 23:11:00', '2025-12-17 19:46:56', 'dOpMqqEm', '6359398'), + (17593, 61, 2197, 'attending', '2023-09-13 03:13:42', '2025-12-17 19:46:44', 'dOpMqqEm', '6359399'), + (17594, 61, 2198, 'attending', '2023-09-13 03:13:45', '2025-12-17 19:46:45', 'dOpMqqEm', '6359400'), + (17595, 61, 2200, 'attending', '2023-08-10 23:02:56', '2025-12-17 19:46:55', 'dOpMqqEm', '6359850'), + (17596, 61, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'dOpMqqEm', '6359940'), + (17597, 61, 2204, 'attending', '2023-08-16 14:06:46', '2025-12-17 19:46:55', 'dOpMqqEm', '6361542'), + (17598, 61, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOpMqqEm', '6361709'), + (17599, 61, 2209, 'attending', '2023-08-23 14:13:43', '2025-12-17 19:46:55', 'dOpMqqEm', '6361710'), + (17600, 61, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOpMqqEm', '6361711'), + (17601, 61, 2211, 'attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOpMqqEm', '6361712'), + (17602, 61, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOpMqqEm', '6361713'), + (17603, 61, 2214, 'attending', '2023-08-12 02:50:01', '2025-12-17 19:46:55', 'dOpMqqEm', '6363218'), + (17604, 61, 2218, 'attending', '2023-08-16 23:56:33', '2025-12-17 19:46:55', 'dOpMqqEm', '6367308'), + (17605, 61, 2220, 'attending', '2023-09-04 22:55:32', '2025-12-17 19:46:56', 'dOpMqqEm', '6367310'), + (17606, 61, 2228, 'not_attending', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'dOpMqqEm', '6372777'), + (17607, 61, 2232, 'attending', '2023-08-22 23:29:42', '2025-12-17 19:46:55', 'dOpMqqEm', '6374818'), + (17608, 61, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOpMqqEm', '6382573'), + (17609, 61, 2239, 'attending', '2023-09-01 18:32:10', '2025-12-17 19:46:56', 'dOpMqqEm', '6387592'), + (17610, 61, 2240, 'attending', '2023-09-08 18:13:54', '2025-12-17 19:46:56', 'dOpMqqEm', '6388603'), + (17611, 61, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOpMqqEm', '6388604'), + (17612, 61, 2242, 'attending', '2023-09-23 05:41:05', '2025-12-17 19:46:45', 'dOpMqqEm', '6388606'), + (17613, 61, 2243, 'maybe', '2023-09-07 21:31:20', '2025-12-17 19:46:56', 'dOpMqqEm', '6393686'), + (17614, 61, 2244, 'attending', '2023-09-08 06:38:57', '2025-12-17 19:46:44', 'dOpMqqEm', '6393700'), + (17615, 61, 2245, 'attending', '2023-09-08 06:37:03', '2025-12-17 19:46:45', 'dOpMqqEm', '6393703'), + (17616, 61, 2247, 'attending', '2023-09-06 20:45:23', '2025-12-17 19:46:56', 'dOpMqqEm', '6394628'), + (17617, 61, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOpMqqEm', '6394629'), + (17618, 61, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOpMqqEm', '6394631'), + (17619, 61, 2253, 'attending', '2023-09-30 17:05:53', '2025-12-17 19:46:45', 'dOpMqqEm', '6401811'), + (17620, 61, 2257, 'attending', '2023-09-16 21:58:20', '2025-12-17 19:46:44', 'dOpMqqEm', '6408068'), + (17621, 61, 2263, 'attending', '2023-09-25 22:45:22', '2025-12-17 19:46:45', 'dOpMqqEm', '6429351'), + (17622, 61, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOpMqqEm', '6440863'), + (17623, 61, 2270, 'attending', '2023-10-02 22:42:13', '2025-12-17 19:46:46', 'dOpMqqEm', '6443067'), + (17624, 61, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOpMqqEm', '6445440'), + (17625, 61, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOpMqqEm', '6453951'), + (17626, 61, 2283, 'attending', '2023-10-09 18:15:49', '2025-12-17 19:46:46', 'dOpMqqEm', '6455503'), + (17627, 61, 2284, 'attending', '2023-10-11 00:08:31', '2025-12-17 19:46:46', 'dOpMqqEm', '6460928'), + (17628, 61, 2285, 'attending', '2023-10-16 02:07:34', '2025-12-17 19:46:47', 'dOpMqqEm', '6460929'), + (17629, 61, 2286, 'attending', '2023-11-30 00:41:37', '2025-12-17 19:46:48', 'dOpMqqEm', '6460930'), + (17630, 61, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOpMqqEm', '6461696'), + (17631, 61, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOpMqqEm', '6462129'), + (17632, 61, 2290, 'attending', '2023-10-18 13:08:22', '2025-12-17 19:46:46', 'dOpMqqEm', '6462214'), + (17633, 61, 2291, 'maybe', '2023-10-19 02:00:23', '2025-12-17 19:46:46', 'dOpMqqEm', '6462215'), + (17634, 61, 2293, 'attending', '2023-10-11 21:27:46', '2025-12-17 19:46:46', 'dOpMqqEm', '6463218'), + (17635, 61, 2299, 'attending', '2023-10-18 22:42:11', '2025-12-17 19:46:46', 'dOpMqqEm', '6472181'), + (17636, 61, 2303, 'attending', '2023-10-27 02:17:37', '2025-12-17 19:46:47', 'dOpMqqEm', '6482691'), + (17637, 61, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOpMqqEm', '6482693'), + (17638, 61, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dOpMqqEm', '6484200'), + (17639, 61, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOpMqqEm', '6484680'), + (17640, 61, 2310, 'attending', '2023-11-05 02:36:22', '2025-12-17 19:46:47', 'dOpMqqEm', '6487709'), + (17641, 61, 2314, 'attending', '2023-10-29 20:53:08', '2025-12-17 19:46:47', 'dOpMqqEm', '6493665'), + (17642, 61, 2315, 'attending', '2023-10-29 20:53:22', '2025-12-17 19:46:47', 'dOpMqqEm', '6493666'), + (17643, 61, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOpMqqEm', '6507741'), + (17644, 61, 2320, 'attending', '2023-10-30 20:32:05', '2025-12-17 19:46:47', 'dOpMqqEm', '6508647'), + (17645, 61, 2322, 'attending', '2023-11-13 06:45:47', '2025-12-17 19:46:48', 'dOpMqqEm', '6514659'), + (17646, 61, 2323, 'attending', '2023-11-27 04:13:51', '2025-12-17 19:46:48', 'dOpMqqEm', '6514660'), + (17647, 61, 2324, 'attending', '2023-12-07 22:29:57', '2025-12-17 19:46:49', 'dOpMqqEm', '6514662'), + (17648, 61, 2325, 'attending', '2023-12-07 22:29:59', '2025-12-17 19:46:36', 'dOpMqqEm', '6514663'), + (17649, 61, 2331, 'attending', '2023-11-09 04:19:36', '2025-12-17 19:46:47', 'dOpMqqEm', '6518640'), + (17650, 61, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOpMqqEm', '6519103'), + (17651, 61, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOpMqqEm', '6535681'), + (17652, 61, 2340, 'attending', '2023-11-21 18:23:00', '2025-12-17 19:46:48', 'dOpMqqEm', '6540279'), + (17653, 61, 2345, 'attending', '2023-11-29 22:23:45', '2025-12-17 19:46:48', 'dOpMqqEm', '6582414'), + (17654, 61, 2350, 'attending', '2023-11-21 02:01:13', '2025-12-17 19:46:48', 'dOpMqqEm', '6584352'), + (17655, 61, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOpMqqEm', '6584747'), + (17656, 61, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOpMqqEm', '6587097'), + (17657, 61, 2353, 'maybe', '2023-11-29 23:20:10', '2025-12-17 19:46:48', 'dOpMqqEm', '6588894'), + (17658, 61, 2355, 'maybe', '2023-12-01 00:44:06', '2025-12-17 19:46:49', 'dOpMqqEm', '6593339'), + (17659, 61, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOpMqqEm', '6609022'), + (17660, 61, 2364, 'attending', '2023-12-08 14:09:30', '2025-12-17 19:46:49', 'dOpMqqEm', '6613011'), + (17661, 61, 2367, 'attending', '2023-12-09 22:32:29', '2025-12-17 19:46:49', 'dOpMqqEm', '6620890'), + (17662, 61, 2371, 'attending', '2023-12-13 21:55:50', '2025-12-17 19:46:36', 'dOpMqqEm', '6624495'), + (17663, 61, 2373, 'attending', '2024-01-10 23:00:54', '2025-12-17 19:46:38', 'dOpMqqEm', '6632678'), + (17664, 61, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOpMqqEm', '6632757'), + (17665, 61, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOpMqqEm', '6644187'), + (17666, 61, 2380, 'attending', '2023-12-31 02:02:02', '2025-12-17 19:46:37', 'dOpMqqEm', '6645105'), + (17667, 61, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOpMqqEm', '6648951'), + (17668, 61, 2387, 'attending', '2024-01-03 00:46:25', '2025-12-17 19:46:37', 'dOpMqqEm', '6648952'), + (17669, 61, 2388, 'attending', '2024-01-04 03:36:44', '2025-12-17 19:46:37', 'dOpMqqEm', '6649244'), + (17670, 61, 2391, 'attending', '2024-01-08 00:43:26', '2025-12-17 19:46:37', 'dOpMqqEm', '6654138'), + (17671, 61, 2392, 'attending', '2024-01-06 16:19:15', '2025-12-17 19:46:37', 'dOpMqqEm', '6654412'), + (17672, 61, 2394, 'attending', '2024-01-06 16:19:16', '2025-12-17 19:46:38', 'dOpMqqEm', '6654470'), + (17673, 61, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOpMqqEm', '6655401'), + (17674, 61, 2399, 'attending', '2024-01-08 00:43:32', '2025-12-17 19:46:37', 'dOpMqqEm', '6657583'), + (17675, 61, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOpMqqEm', '6661585'), + (17676, 61, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOpMqqEm', '6661588'), + (17677, 61, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOpMqqEm', '6661589'), + (17678, 61, 2406, 'attending', '2024-01-16 01:47:53', '2025-12-17 19:46:40', 'dOpMqqEm', '6692344'), + (17679, 61, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOpMqqEm', '6699906'), + (17680, 61, 2408, 'attending', '2024-01-15 05:16:54', '2025-12-17 19:46:40', 'dOpMqqEm', '6699907'), + (17681, 61, 2409, 'attending', '2024-01-15 05:16:56', '2025-12-17 19:46:41', 'dOpMqqEm', '6699909'), + (17682, 61, 2410, 'attending', '2024-01-15 05:16:58', '2025-12-17 19:46:41', 'dOpMqqEm', '6699911'), + (17683, 61, 2411, 'attending', '2024-02-03 16:27:15', '2025-12-17 19:46:41', 'dOpMqqEm', '6699913'), + (17684, 61, 2412, 'attending', '2024-02-18 22:24:22', '2025-12-17 19:46:43', 'dOpMqqEm', '6700717'), + (17685, 61, 2413, 'maybe', '2024-02-18 19:56:36', '2025-12-17 19:46:42', 'dOpMqqEm', '6700719'), + (17686, 61, 2414, 'maybe', '2024-01-18 01:18:31', '2025-12-17 19:46:40', 'dOpMqqEm', '6701000'), + (17687, 61, 2415, 'attending', '2024-01-18 01:18:35', '2025-12-17 19:46:40', 'dOpMqqEm', '6701001'), + (17688, 61, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOpMqqEm', '6701109'), + (17689, 61, 2421, 'attending', '2024-01-26 01:09:53', '2025-12-17 19:46:40', 'dOpMqqEm', '6704598'), + (17690, 61, 2423, 'attending', '2024-01-19 01:26:02', '2025-12-17 19:46:40', 'dOpMqqEm', '6705141'), + (17691, 61, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOpMqqEm', '6705219'), + (17692, 61, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOpMqqEm', '6710153'), + (17693, 61, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOpMqqEm', '6711552'), + (17694, 61, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dOpMqqEm', '6711553'), + (17695, 61, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOpMqqEm', '6722688'), + (17696, 61, 2438, 'attending', '2024-02-07 23:26:11', '2025-12-17 19:46:41', 'dOpMqqEm', '6730201'), + (17697, 61, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOpMqqEm', '6730620'), + (17698, 61, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOpMqqEm', '6730642'), + (17699, 61, 2444, 'attending', '2024-02-04 14:48:19', '2025-12-17 19:46:41', 'dOpMqqEm', '6734367'), + (17700, 61, 2445, 'attending', '2024-02-04 14:48:21', '2025-12-17 19:46:41', 'dOpMqqEm', '6734368'), + (17701, 61, 2446, 'attending', '2024-03-01 03:58:17', '2025-12-17 19:46:43', 'dOpMqqEm', '6734369'), + (17702, 61, 2447, 'attending', '2024-03-13 14:57:23', '2025-12-17 19:46:32', 'dOpMqqEm', '6734370'), + (17703, 61, 2448, 'attending', '2024-03-26 14:43:49', '2025-12-17 19:46:33', 'dOpMqqEm', '6734371'), + (17704, 61, 2450, 'attending', '2024-02-05 18:28:22', '2025-12-17 19:46:41', 'dOpMqqEm', '6738807'), + (17705, 61, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOpMqqEm', '6740364'), + (17706, 61, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOpMqqEm', '6743829'), + (17707, 61, 2466, 'maybe', '2024-02-14 03:42:19', '2025-12-17 19:46:41', 'dOpMqqEm', '7026777'), + (17708, 61, 2467, 'maybe', '2024-02-25 04:16:27', '2025-12-17 19:46:43', 'dOpMqqEm', '7029987'), + (17709, 61, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOpMqqEm', '7030380'), + (17710, 61, 2472, 'attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOpMqqEm', '7033677'), + (17711, 61, 2474, 'attending', '2024-02-21 03:23:18', '2025-12-17 19:46:43', 'dOpMqqEm', '7035415'), + (17712, 61, 2478, 'attending', '2024-02-24 22:21:05', '2025-12-17 19:46:43', 'dOpMqqEm', '7036478'), + (17713, 61, 2480, 'maybe', '2024-02-25 04:16:35', '2025-12-17 19:46:43', 'dOpMqqEm', '7042160'), + (17714, 61, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOpMqqEm', '7044715'), + (17715, 61, 2484, 'attending', '2024-03-01 03:58:47', '2025-12-17 19:46:43', 'dOpMqqEm', '7046836'), + (17716, 61, 2489, 'attending', '2024-02-28 05:31:07', '2025-12-17 19:46:43', 'dOpMqqEm', '7050161'), + (17717, 61, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOpMqqEm', '7050318'), + (17718, 61, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOpMqqEm', '7050319'), + (17719, 61, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOpMqqEm', '7050322'), + (17720, 61, 2496, 'attending', '2024-03-02 22:32:54', '2025-12-17 19:46:43', 'dOpMqqEm', '7055967'), + (17721, 61, 2498, 'attending', '2024-03-19 04:36:08', '2025-12-17 19:46:33', 'dOpMqqEm', '7057662'), + (17722, 61, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOpMqqEm', '7057804'), + (17723, 61, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dOpMqqEm', '7059866'), + (17724, 61, 2505, 'attending', '2024-03-09 17:30:30', '2025-12-17 19:46:33', 'dOpMqqEm', '7069163'), + (17725, 61, 2507, 'attending', '2024-03-12 15:21:38', '2025-12-17 19:46:33', 'dOpMqqEm', '7072824'), + (17726, 61, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOpMqqEm', '7074348'), + (17727, 61, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dOpMqqEm', '7074364'), + (17728, 61, 2529, 'attending', '2024-05-22 23:44:14', '2025-12-17 19:46:35', 'dOpMqqEm', '7074369'), + (17729, 61, 2534, 'attending', '2024-03-13 16:18:33', '2025-12-17 19:46:32', 'dOpMqqEm', '7076875'), + (17730, 61, 2537, 'maybe', '2024-03-23 01:21:52', '2025-12-17 19:46:33', 'dOpMqqEm', '7085484'), + (17731, 61, 2538, 'attending', '2024-03-19 06:10:48', '2025-12-17 19:46:33', 'dOpMqqEm', '7085485'), + (17732, 61, 2539, 'attending', '2024-03-31 02:09:11', '2025-12-17 19:46:33', 'dOpMqqEm', '7085486'), + (17733, 61, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOpMqqEm', '7089267'), + (17734, 61, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOpMqqEm', '7098747'), + (17735, 61, 2553, 'attending', '2024-03-29 18:47:25', '2025-12-17 19:46:33', 'dOpMqqEm', '7113468'), + (17736, 61, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOpMqqEm', '7114856'), + (17737, 61, 2555, 'attending', '2024-04-02 21:31:57', '2025-12-17 19:46:33', 'dOpMqqEm', '7114951'), + (17738, 61, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOpMqqEm', '7114955'), + (17739, 61, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOpMqqEm', '7114956'), + (17740, 61, 2558, 'attending', '2024-04-03 01:09:16', '2025-12-17 19:46:35', 'dOpMqqEm', '7114957'), + (17741, 61, 2563, 'maybe', '2024-04-08 21:54:55', '2025-12-17 19:46:33', 'dOpMqqEm', '7134734'), + (17742, 61, 2564, 'maybe', '2024-04-07 12:40:50', '2025-12-17 19:46:33', 'dOpMqqEm', '7134735'), + (17743, 61, 2566, 'maybe', '2024-04-12 04:16:55', '2025-12-17 19:46:34', 'dOpMqqEm', '7140664'), + (17744, 61, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOpMqqEm', '7153615'), + (17745, 61, 2571, 'attending', '2024-04-08 17:47:55', '2025-12-17 19:46:33', 'dOpMqqEm', '7159484'), + (17746, 61, 2572, 'attending', '2024-04-13 19:27:14', '2025-12-17 19:46:33', 'dOpMqqEm', '7159522'), + (17747, 61, 2573, 'maybe', '2024-04-14 02:09:11', '2025-12-17 19:46:34', 'dOpMqqEm', '7160612'), + (17748, 61, 2575, 'attending', '2024-04-11 11:25:56', '2025-12-17 19:46:33', 'dOpMqqEm', '7164534'), + (17749, 61, 2580, 'maybe', '2024-04-11 22:55:32', '2025-12-17 19:46:34', 'dOpMqqEm', '7167272'), + (17750, 61, 2585, 'maybe', '2024-04-24 13:55:42', '2025-12-17 19:46:34', 'dOpMqqEm', '7175828'), + (17751, 61, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOpMqqEm', '7178446'), + (17752, 61, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOpMqqEm', '7220467'), + (17753, 61, 2604, 'attending', '2024-05-29 01:14:52', '2025-12-17 19:46:36', 'dOpMqqEm', '7225670'), + (17754, 61, 2609, 'attending', '2024-05-06 14:02:45', '2025-12-17 19:46:35', 'dOpMqqEm', '7240354'), + (17755, 61, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOpMqqEm', '7251633'), + (17756, 61, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dOpMqqEm', '7263048'), + (17757, 61, 2626, 'attending', '2024-05-16 01:16:57', '2025-12-17 19:46:35', 'dOpMqqEm', '7264723'), + (17758, 61, 2627, 'attending', '2024-05-21 22:47:10', '2025-12-17 19:46:35', 'dOpMqqEm', '7264724'), + (17759, 61, 2628, 'attending', '2024-05-30 02:03:51', '2025-12-17 19:46:36', 'dOpMqqEm', '7264725'), + (17760, 61, 2629, 'attending', '2024-06-03 02:14:50', '2025-12-17 19:46:28', 'dOpMqqEm', '7264726'), + (17761, 61, 2630, 'attending', '2024-05-15 19:34:50', '2025-12-17 19:46:35', 'dOpMqqEm', '7264801'), + (17762, 61, 2644, 'attending', '2024-05-19 13:44:24', '2025-12-17 19:46:35', 'dOpMqqEm', '7279039'), + (17763, 61, 2647, 'attending', '2024-06-03 17:53:11', '2025-12-17 19:46:28', 'dOpMqqEm', '7282057'), + (17764, 61, 2653, 'attending', '2024-05-25 21:00:47', '2025-12-17 19:46:35', 'dOpMqqEm', '7289186'), + (17765, 61, 2654, 'attending', '2024-05-28 00:07:11', '2025-12-17 19:46:36', 'dOpMqqEm', '7291219'), + (17766, 61, 2659, 'attending', '2024-06-01 21:54:55', '2025-12-17 19:46:36', 'dOpMqqEm', '7299599'), + (17767, 61, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOpMqqEm', '7302674'), + (17768, 61, 2664, 'attending', '2024-06-04 14:38:02', '2025-12-17 19:46:36', 'dOpMqqEm', '7306358'), + (17769, 61, 2665, 'attending', '2024-06-04 14:53:04', '2025-12-17 19:46:36', 'dOpMqqEm', '7306370'), + (17770, 61, 2666, 'attending', '2024-06-05 13:56:28', '2025-12-17 19:46:36', 'dOpMqqEm', '7307775'), + (17771, 61, 2668, 'maybe', '2024-06-07 03:05:11', '2025-12-17 19:46:36', 'dOpMqqEm', '7308821'), + (17772, 61, 2678, 'maybe', '2024-06-15 03:39:03', '2025-12-17 19:46:28', 'dOpMqqEm', '7319489'), + (17773, 61, 2679, 'attending', '2024-06-16 23:17:42', '2025-12-17 19:46:29', 'dOpMqqEm', '7319490'), + (17774, 61, 2687, 'attending', '2024-06-11 19:36:27', '2025-12-17 19:46:28', 'dOpMqqEm', '7324019'), + (17775, 61, 2688, 'attending', '2024-06-24 03:07:38', '2025-12-17 19:46:29', 'dOpMqqEm', '7324073'), + (17776, 61, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dOpMqqEm', '7324074'), + (17777, 61, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dOpMqqEm', '7324075'), + (17778, 61, 2691, 'attending', '2024-07-18 02:41:27', '2025-12-17 19:46:30', 'dOpMqqEm', '7324076'), + (17779, 61, 2692, 'attending', '2024-07-27 05:40:37', '2025-12-17 19:46:30', 'dOpMqqEm', '7324077'), + (17780, 61, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dOpMqqEm', '7324078'), + (17781, 61, 2694, 'attending', '2024-08-07 22:54:01', '2025-12-17 19:46:31', 'dOpMqqEm', '7324079'), + (17782, 61, 2697, 'attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dOpMqqEm', '7324082'), + (17783, 61, 2698, 'attending', '2024-09-04 14:56:28', '2025-12-17 19:46:24', 'dOpMqqEm', '7324083'), + (17784, 61, 2700, 'attending', '2024-06-14 18:24:34', '2025-12-17 19:46:28', 'dOpMqqEm', '7324388'), + (17785, 61, 2705, 'attending', '2024-06-21 01:32:19', '2025-12-17 19:46:29', 'dOpMqqEm', '7324944'), + (17786, 61, 2707, 'attending', '2024-06-17 20:06:30', '2025-12-17 19:46:28', 'dOpMqqEm', '7324952'), + (17787, 61, 2711, 'attending', '2024-07-19 17:32:53', '2025-12-17 19:46:30', 'dOpMqqEm', '7326524'), + (17788, 61, 2712, 'attending', '2024-08-02 14:14:15', '2025-12-17 19:46:31', 'dOpMqqEm', '7326525'), + (17789, 61, 2720, 'maybe', '2024-06-18 21:37:33', '2025-12-17 19:46:28', 'dOpMqqEm', '7331436'), + (17790, 61, 2721, 'maybe', '2024-06-21 01:31:50', '2025-12-17 19:46:29', 'dOpMqqEm', '7331456'), + (17791, 61, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dOpMqqEm', '7331457'), + (17792, 61, 2723, 'attending', '2024-06-21 19:25:47', '2025-12-17 19:46:29', 'dOpMqqEm', '7332389'), + (17793, 61, 2724, 'attending', '2024-06-26 22:00:29', '2025-12-17 19:46:29', 'dOpMqqEm', '7332562'), + (17794, 61, 2737, 'attending', '2024-07-02 22:43:56', '2025-12-17 19:46:29', 'dOpMqqEm', '7344070'), + (17795, 61, 2738, 'maybe', '2024-07-05 12:13:41', '2025-12-17 19:46:29', 'dOpMqqEm', '7344085'), + (17796, 61, 2745, 'attending', '2024-07-25 20:13:02', '2025-12-17 19:46:30', 'dOpMqqEm', '7348712'), + (17797, 61, 2747, 'maybe', '2024-07-17 20:04:51', '2025-12-17 19:46:30', 'dOpMqqEm', '7353587'), + (17798, 61, 2749, 'attending', '2024-07-07 20:14:12', '2025-12-17 19:46:29', 'dOpMqqEm', '7355496'), + (17799, 61, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dOpMqqEm', '7356752'), + (17800, 61, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dOpMqqEm', '7358733'), + (17801, 61, 2764, 'attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dOpMqqEm', '7363595'), + (17802, 61, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dOpMqqEm', '7363643'), + (17803, 61, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dOpMqqEm', '7368606'), + (17804, 61, 2776, 'attending', '2024-07-24 16:47:45', '2025-12-17 19:46:30', 'dOpMqqEm', '7370690'), + (17805, 61, 2777, 'attending', '2024-07-24 16:47:47', '2025-12-17 19:46:30', 'dOpMqqEm', '7370870'), + (17806, 61, 2783, 'attending', '2024-07-29 22:06:56', '2025-12-17 19:46:31', 'dOpMqqEm', '7379699'), + (17807, 61, 2784, 'attending', '2024-07-30 16:01:57', '2025-12-17 19:46:31', 'dOpMqqEm', '7380872'), + (17808, 61, 2788, 'attending', '2024-08-02 22:44:16', '2025-12-17 19:46:31', 'dOpMqqEm', '7384036'), + (17809, 61, 2794, 'not_attending', '2024-08-08 01:51:03', '2025-12-17 19:46:31', 'dOpMqqEm', '7391173'), + (17810, 61, 2802, 'attending', '2024-09-02 06:36:32', '2025-12-17 19:46:32', 'dOpMqqEm', '7397463'), + (17811, 61, 2806, 'attending', '2024-09-17 14:56:47', '2025-12-17 19:46:25', 'dOpMqqEm', '7404888'), + (17812, 61, 2821, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOpMqqEm', '7424275'), + (17813, 61, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dOpMqqEm', '7424276'), + (17814, 61, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dOpMqqEm', '7432751'), + (17815, 61, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dOpMqqEm', '7432752'), + (17816, 61, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dOpMqqEm', '7432753'), + (17817, 61, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dOpMqqEm', '7432754'), + (17818, 61, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dOpMqqEm', '7432755'), + (17819, 61, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dOpMqqEm', '7432756'), + (17820, 61, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOpMqqEm', '7432758'), + (17821, 61, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dOpMqqEm', '7432759'), + (17822, 61, 2832, 'attending', '2024-09-11 22:44:11', '2025-12-17 19:46:24', 'dOpMqqEm', '7433324'), + (17823, 61, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dOpMqqEm', '7433834'), + (17824, 61, 2834, 'attending', '2024-09-10 21:37:44', '2025-12-17 19:46:25', 'dOpMqqEm', '7433852'), + (17825, 61, 2844, 'attending', '2024-09-20 20:24:39', '2025-12-17 19:46:25', 'dOpMqqEm', '7450233'), + (17826, 61, 2856, 'attending', '2024-10-10 22:16:53', '2025-12-17 19:46:26', 'dOpMqqEm', '7469386'), + (17827, 61, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dOpMqqEm', '7470197'), + (17828, 61, 2878, 'maybe', '2024-10-16 20:57:05', '2025-12-17 19:46:26', 'dOpMqqEm', '7633857'), + (17829, 61, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dOpMqqEm', '7685613'), + (17830, 61, 2899, 'attending', '2024-11-07 17:16:51', '2025-12-17 19:46:27', 'dOpMqqEm', '7685616'), + (17831, 61, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dOpMqqEm', '7688194'), + (17832, 61, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dOpMqqEm', '7688196'), + (17833, 61, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dOpMqqEm', '7688289'), + (17834, 61, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dOpMqqEm', '7692763'), + (17835, 61, 2913, 'attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dOpMqqEm', '7697552'), + (17836, 61, 2916, 'attending', '2024-11-17 16:58:49', '2025-12-17 19:46:27', 'dOpMqqEm', '7699006'), + (17837, 61, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dOpMqqEm', '7699878'), + (17838, 61, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dOpMqqEm', '7704043'), + (17839, 61, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dOpMqqEm', '7712467'), + (17840, 61, 2925, 'attending', '2024-12-08 12:42:17', '2025-12-17 19:46:21', 'dOpMqqEm', '7713584'), + (17841, 61, 2926, 'attending', '2024-12-03 20:10:47', '2025-12-17 19:46:21', 'dOpMqqEm', '7713585'), + (17842, 61, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dOpMqqEm', '7713586'), + (17843, 61, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dOpMqqEm', '7738518'), + (17844, 61, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dOpMqqEm', '7750636'), + (17845, 61, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dOpMqqEm', '7796540'), + (17846, 61, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dOpMqqEm', '7796541'), + (17847, 61, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dOpMqqEm', '7796542'), + (17848, 61, 2972, 'attending', '2025-01-16 22:06:36', '2025-12-17 19:46:22', 'dOpMqqEm', '7812563'), + (17849, 61, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dOpMqqEm', '7825913'), + (17850, 61, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dOpMqqEm', '7825920'), + (17851, 61, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dOpMqqEm', '7826209'), + (17852, 61, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dOpMqqEm', '7834742'), + (17853, 61, 2988, 'attending', '2025-02-07 14:33:49', '2025-12-17 19:46:23', 'dOpMqqEm', '7839569'), + (17854, 61, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dOpMqqEm', '7842108'), + (17855, 61, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dOpMqqEm', '7842902'), + (17856, 61, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dOpMqqEm', '7842903'), + (17857, 61, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dOpMqqEm', '7842904'), + (17858, 61, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dOpMqqEm', '7842905'), + (17859, 61, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dOpMqqEm', '7855719'), + (17860, 61, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dOpMqqEm', '7860683'), + (17861, 61, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dOpMqqEm', '7860684'), + (17862, 61, 3010, 'attending', '2025-02-28 23:06:22', '2025-12-17 19:46:18', 'dOpMqqEm', '7864879'), + (17863, 61, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dOpMqqEm', '7866095'), + (17864, 61, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dOpMqqEm', '7869170'), + (17865, 61, 3014, 'attending', '2025-03-26 03:02:11', '2025-12-17 19:46:19', 'dOpMqqEm', '7869185'), + (17866, 61, 3015, 'attending', '2025-03-26 03:02:25', '2025-12-17 19:46:20', 'dOpMqqEm', '7869186'), + (17867, 61, 3016, 'attending', '2025-03-26 03:02:20', '2025-12-17 19:46:20', 'dOpMqqEm', '7869187'), + (17868, 61, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dOpMqqEm', '7869188'), + (17869, 61, 3018, 'attending', '2025-03-26 03:02:16', '2025-12-17 19:46:20', 'dOpMqqEm', '7869189'), + (17870, 61, 3028, 'attending', '2025-04-20 02:51:45', '2025-12-17 19:46:20', 'dOpMqqEm', '7869199'), + (17871, 61, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dOpMqqEm', '7869201'), + (17872, 61, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dOpMqqEm', '7877465'), + (17873, 61, 3034, 'attending', '2025-03-11 22:18:14', '2025-12-17 19:46:18', 'dOpMqqEm', '7878570'), + (17874, 61, 3036, 'attending', '2025-03-13 15:34:16', '2025-12-17 19:46:19', 'dOpMqqEm', '7880952'), + (17875, 61, 3039, 'attending', '2025-03-14 03:00:25', '2025-12-17 19:46:19', 'dOpMqqEm', '7881992'), + (17876, 61, 3048, 'attending', '2025-04-19 13:32:04', '2025-12-17 19:46:20', 'dOpMqqEm', '7882694'), + (17877, 61, 3054, 'maybe', '2025-03-17 00:16:03', '2025-12-17 19:46:19', 'dOpMqqEm', '7884168'), + (17878, 61, 3055, 'attending', '2025-03-20 22:36:04', '2025-12-17 19:46:19', 'dOpMqqEm', '7888118'), + (17879, 61, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dOpMqqEm', '7888250'), + (17880, 61, 3060, 'attending', '2025-03-27 14:13:21', '2025-12-17 19:46:19', 'dOpMqqEm', '7892589'), + (17881, 61, 3061, 'attending', '2025-03-27 15:06:03', '2025-12-17 19:46:19', 'dOpMqqEm', '7892590'), + (17882, 61, 3071, 'attending', '2025-03-31 20:39:51', '2025-12-17 19:46:19', 'dOpMqqEm', '7895429'), + (17883, 61, 3072, 'attending', '2025-04-03 03:52:44', '2025-12-17 19:46:19', 'dOpMqqEm', '7895449'), + (17884, 61, 3073, 'attending', '2025-04-03 20:28:01', '2025-12-17 19:46:19', 'dOpMqqEm', '7897303'), + (17885, 61, 3075, 'maybe', '2025-04-06 14:43:10', '2025-12-17 19:46:20', 'dOpMqqEm', '7898896'), + (17886, 61, 3080, 'attending', '2025-04-06 16:24:04', '2025-12-17 19:46:20', 'dOpMqqEm', '7901441'), + (17887, 61, 3084, 'attending', '2025-04-08 19:11:02', '2025-12-17 19:46:20', 'dOpMqqEm', '7903687'), + (17888, 61, 3085, 'attending', '2025-04-08 19:11:04', '2025-12-17 19:46:20', 'dOpMqqEm', '7903688'), + (17889, 61, 3088, 'attending', '2025-06-03 13:50:06', '2025-12-17 19:46:15', 'dOpMqqEm', '7904777'), + (17890, 61, 3090, 'attending', '2025-04-16 00:37:30', '2025-12-17 19:46:20', 'dOpMqqEm', '7914315'), + (17891, 61, 3094, 'attending', '2025-05-06 19:35:09', '2025-12-17 19:46:21', 'dOpMqqEm', '8342292'), + (17892, 61, 3095, 'attending', '2025-05-03 18:18:25', '2025-12-17 19:46:20', 'dOpMqqEm', '8342293'), + (17893, 61, 3096, 'attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dOpMqqEm', '8342987'), + (17894, 61, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dOpMqqEm', '8349164'), + (17895, 61, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dOpMqqEm', '8349545'), + (17896, 61, 3110, 'attending', '2025-04-29 19:52:29', '2025-12-17 19:46:20', 'dOpMqqEm', '8353484'), + (17897, 61, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dOpMqqEm', '8353584'), + (17898, 61, 3122, 'attending', '2025-05-08 14:24:14', '2025-12-17 19:46:21', 'dOpMqqEm', '8362978'), + (17899, 61, 3123, 'attending', '2025-05-08 18:49:23', '2025-12-17 19:46:21', 'dOpMqqEm', '8363523'), + (17900, 61, 3127, 'attending', '2025-05-11 03:58:21', '2025-12-17 19:46:21', 'dOpMqqEm', '8365615'), + (17901, 61, 3131, 'attending', '2025-05-14 01:27:58', '2025-12-17 19:46:21', 'dOpMqqEm', '8368028'), + (17902, 61, 3132, 'attending', '2025-05-19 14:58:14', '2025-12-17 19:46:21', 'dOpMqqEm', '8368029'), + (17903, 61, 3133, 'attending', '2025-05-19 14:58:16', '2025-12-17 19:46:14', 'dOpMqqEm', '8368030'), + (17904, 61, 3134, 'attending', '2025-05-17 22:23:49', '2025-12-17 19:46:21', 'dOpMqqEm', '8368031'), + (17905, 61, 3135, 'attending', '2025-05-17 19:47:01', '2025-12-17 19:46:21', 'dOpMqqEm', '8373126'), + (17906, 61, 3137, 'attending', '2025-05-19 14:57:42', '2025-12-17 19:46:21', 'dOpMqqEm', '8374153'), + (17907, 61, 3138, 'attending', '2025-05-18 16:48:23', '2025-12-17 19:46:21', 'dOpMqqEm', '8376037'), + (17908, 61, 3139, 'attending', '2025-05-24 21:55:59', '2025-12-17 19:46:21', 'dOpMqqEm', '8377425'), + (17909, 61, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dOpMqqEm', '8388462'), + (17910, 61, 3144, 'attending', '2025-05-30 20:25:04', '2025-12-17 19:46:14', 'dOpMqqEm', '8393073'), + (17911, 61, 3150, 'attending', '2025-06-03 13:50:13', '2025-12-17 19:46:15', 'dOpMqqEm', '8393174'), + (17912, 61, 3153, 'attending', '2025-06-03 13:49:54', '2025-12-17 19:46:15', 'dOpMqqEm', '8400273'), + (17913, 61, 3154, 'attending', '2025-06-26 04:44:07', '2025-12-17 19:46:15', 'dOpMqqEm', '8400274'), + (17914, 61, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dOpMqqEm', '8400275'), + (17915, 61, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dOpMqqEm', '8400276'), + (17916, 61, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dOpMqqEm', '8404977'), + (17917, 61, 3173, 'attending', '2025-06-14 17:02:54', '2025-12-17 19:46:15', 'dOpMqqEm', '8410806'), + (17918, 61, 3178, 'attending', '2025-06-24 22:05:02', '2025-12-17 19:46:15', 'dOpMqqEm', '8421848'), + (17919, 61, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dOpMqqEm', '8430783'), + (17920, 61, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dOpMqqEm', '8430784'), + (17921, 61, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dOpMqqEm', '8430799'), + (17922, 61, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dOpMqqEm', '8430800'), + (17923, 61, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dOpMqqEm', '8430801'), + (17924, 61, 3188, 'attending', '2025-07-08 18:23:58', '2025-12-17 19:46:17', 'dOpMqqEm', '8438709'), + (17925, 61, 3189, 'attending', '2025-07-10 22:09:54', '2025-12-17 19:46:16', 'dOpMqqEm', '8438849'), + (17926, 61, 3192, 'maybe', '2025-07-15 17:12:51', '2025-12-17 19:46:17', 'dOpMqqEm', '8456429'), + (17927, 61, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dOpMqqEm', '8457738'), + (17928, 61, 3194, 'attending', '2025-07-17 22:37:09', '2025-12-17 19:46:17', 'dOpMqqEm', '8457740'), + (17929, 61, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dOpMqqEm', '8459566'), + (17930, 61, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dOpMqqEm', '8459567'), + (17931, 61, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dOpMqqEm', '8461032'), + (17932, 61, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dOpMqqEm', '8477877'), + (17933, 61, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dOpMqqEm', '8485688'), + (17934, 61, 3235, 'attending', '2025-08-18 22:28:37', '2025-12-17 19:46:18', 'dOpMqqEm', '8490587'), + (17935, 61, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dOpMqqEm', '8493552'), + (17936, 61, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dOpMqqEm', '8493553'), + (17937, 61, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dOpMqqEm', '8493554'), + (17938, 61, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dOpMqqEm', '8493555'), + (17939, 61, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dOpMqqEm', '8493556'), + (17940, 61, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dOpMqqEm', '8493557'), + (17941, 61, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dOpMqqEm', '8493558'), + (17942, 61, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dOpMqqEm', '8493559'), + (17943, 61, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dOpMqqEm', '8493560'), + (17944, 61, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dOpMqqEm', '8493561'), + (17945, 61, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dOpMqqEm', '8493572'), + (17946, 61, 3257, 'attending', '2025-08-28 20:56:22', '2025-12-17 19:46:11', 'dOpMqqEm', '8502340'), + (17947, 61, 3258, 'attending', '2025-09-02 14:30:00', '2025-12-17 19:46:11', 'dOpMqqEm', '8510285'), + (17948, 61, 3263, 'attending', '2025-09-07 13:51:41', '2025-12-17 19:46:12', 'dOpMqqEm', '8514576'), + (17949, 61, 3272, 'attending', '2025-09-18 03:24:34', '2025-12-17 19:46:12', 'dOpMqqEm', '8524068'), + (17950, 61, 3275, 'not_attending', '2025-09-20 22:38:53', '2025-12-17 19:46:12', 'dOpMqqEm', '8527786'), + (17951, 61, 3277, 'attending', '2025-09-27 21:46:36', '2025-12-17 19:46:12', 'dOpMqqEm', '8533938'), + (17952, 61, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dOpMqqEm', '8540725'), + (17953, 61, 3289, 'attending', '2025-10-20 14:49:02', '2025-12-17 19:46:14', 'dOpMqqEm', '8542939'), + (17954, 61, 3295, 'attending', '2025-10-28 20:58:07', '2025-12-17 19:46:14', 'dOpMqqEm', '8547541'), + (17955, 61, 3300, 'attending', '2025-11-06 00:51:52', '2025-12-17 19:46:14', 'dOpMqqEm', '8549145'), + (17956, 61, 3302, 'attending', '2025-11-06 00:51:45', '2025-12-17 19:46:14', 'dOpMqqEm', '8550022'), + (17957, 61, 3304, 'attending', '2025-11-06 00:51:47', '2025-12-17 19:46:14', 'dOpMqqEm', '8550024'), + (17958, 61, 3305, 'attending', '2025-11-18 20:56:37', '2025-12-17 19:46:11', 'dOpMqqEm', '8550025'), + (17959, 61, 3306, 'attending', '2025-12-02 05:09:10', '2025-12-17 19:46:11', 'dOpMqqEm', '8550026'), + (17960, 61, 3307, 'attending', '2025-12-14 22:37:45', '2025-12-20 23:44:01', 'dOpMqqEm', '8550027'), + (17961, 61, 3308, 'attending', '2025-11-11 06:01:11', '2025-12-17 19:46:14', 'dOpMqqEm', '8550408'), + (17962, 61, 3309, 'attending', '2025-11-18 20:56:06', '2025-12-17 19:46:14', 'dOpMqqEm', '8550409'), + (17963, 61, 3310, 'attending', '2025-11-18 20:56:34', '2025-12-17 19:46:11', 'dOpMqqEm', '8550410'), + (17964, 61, 3311, 'attending', '2025-12-08 01:35:13', '2025-12-17 19:46:11', 'dOpMqqEm', '8550412'), + (17965, 61, 3318, 'not_attending', '2025-11-07 02:02:31', '2025-12-17 19:46:14', 'dOpMqqEm', '8553025'), + (17966, 61, 3322, 'maybe', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dOpMqqEm', '8555421'), + (17967, 61, 3323, 'attending', '2025-11-15 06:42:33', '2025-12-17 19:46:14', 'dOpMqqEm', '8555522'), + (17968, 61, 3326, 'not_attending', '2025-11-20 00:28:50', '2025-12-17 19:46:14', 'dOpMqqEm', '8556661'), + (17969, 61, 3328, 'attending', '2025-11-21 09:03:48', '2025-12-17 19:46:14', 'dOpMqqEm', '8557254'), + (17970, 61, 3329, 'attending', '2025-11-23 02:55:44', '2025-12-17 19:46:14', 'dOpMqqEm', '8558286'), + (17971, 61, 3331, 'maybe', '2025-12-05 01:52:54', '2025-12-17 19:46:11', 'dOpMqqEm', '8562166'), + (17972, 61, 3338, 'attending', '2025-12-06 21:41:54', '2025-12-17 19:46:11', 'dOpMqqEm', '8563316'), + (17973, 61, 3340, 'attending', '2025-12-12 18:35:35', '2025-12-17 19:46:11', 'dOpMqqEm', '8563371'), + (17974, 61, 3341, 'attending', '2025-12-13 17:31:06', '2025-12-17 19:46:11', 'dOpMqqEm', '8564397'), + (17975, 61, 3342, 'attending', '2025-12-13 17:31:05', '2025-12-17 19:46:11', 'dOpMqqEm', '8564398'), + (17976, 61, 3346, 'attending', '2025-12-30 00:17:02', '2026-01-02 20:07:00', NULL, NULL), + (17977, 62, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dO6Jw0n4', '7074364'), + (17978, 62, 2609, 'not_attending', '2024-05-11 02:57:10', '2025-12-17 19:46:35', 'dO6Jw0n4', '7240354'), + (17979, 62, 2625, 'attending', '2024-05-12 18:00:03', '2025-12-17 19:46:35', 'dO6Jw0n4', '7263302'), + (17980, 62, 2626, 'attending', '2024-05-12 03:47:35', '2025-12-17 19:46:35', 'dO6Jw0n4', '7264723'), + (17981, 62, 2627, 'attending', '2024-05-20 00:17:00', '2025-12-17 19:46:35', 'dO6Jw0n4', '7264724'), + (17982, 62, 2628, 'attending', '2024-05-20 01:38:35', '2025-12-17 19:46:36', 'dO6Jw0n4', '7264725'), + (17983, 62, 2629, 'attending', '2024-05-20 01:38:39', '2025-12-17 19:46:28', 'dO6Jw0n4', '7264726'), + (17984, 62, 2631, 'attending', '2024-05-12 15:47:11', '2025-12-17 19:46:35', 'dO6Jw0n4', '7265589'), + (17985, 62, 2634, 'attending', '2024-05-15 17:02:00', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270321'), + (17986, 62, 2635, 'attending', '2024-05-15 17:02:05', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270322'), + (17987, 62, 2636, 'attending', '2024-05-16 03:33:28', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270323'), + (17988, 62, 2637, 'attending', '2024-05-16 03:33:30', '2025-12-17 19:46:35', 'dO6Jw0n4', '7270324'), + (17989, 62, 2647, 'attending', '2024-05-29 03:42:09', '2025-12-17 19:46:28', 'dO6Jw0n4', '7282057'), + (17990, 62, 2661, 'attending', '2024-06-02 16:01:35', '2025-12-17 19:46:28', 'dO6Jw0n4', '7302674'), + (17991, 62, 2675, 'attending', '2024-07-28 22:43:30', '2025-12-17 19:46:31', 'dO6Jw0n4', '7319481'), + (17992, 62, 2677, 'attending', '2024-09-22 04:06:12', '2025-12-17 19:46:26', 'dO6Jw0n4', '7319483'), + (17993, 62, 2678, 'attending', '2024-06-10 11:57:30', '2025-12-17 19:46:28', 'dO6Jw0n4', '7319489'), + (17994, 62, 2688, 'attending', '2024-06-22 16:23:57', '2025-12-17 19:46:29', 'dO6Jw0n4', '7324073'), + (17995, 62, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dO6Jw0n4', '7324074'), + (17996, 62, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dO6Jw0n4', '7324075'), + (17997, 62, 2691, 'maybe', '2024-07-18 02:21:20', '2025-12-17 19:46:30', 'dO6Jw0n4', '7324076'), + (17998, 62, 2692, 'not_attending', '2024-07-27 22:42:54', '2025-12-17 19:46:30', 'dO6Jw0n4', '7324077'), + (17999, 62, 2693, 'attending', '2024-07-28 22:42:57', '2025-12-17 19:46:31', 'dO6Jw0n4', '7324078'), + (18000, 62, 2694, 'not_attending', '2024-07-28 22:43:41', '2025-12-17 19:46:31', 'dO6Jw0n4', '7324079'), + (18001, 62, 2695, 'attending', '2024-08-15 16:42:45', '2025-12-17 19:46:31', 'dO6Jw0n4', '7324080'), + (18002, 62, 2696, 'attending', '2024-08-23 12:23:27', '2025-12-17 19:46:32', 'dO6Jw0n4', '7324081'), + (18003, 62, 2697, 'attending', '2024-08-26 05:06:55', '2025-12-17 19:46:32', 'dO6Jw0n4', '7324082'), + (18004, 62, 2705, 'attending', '2024-06-19 00:06:38', '2025-12-17 19:46:29', 'dO6Jw0n4', '7324944'), + (18005, 62, 2706, 'maybe', '2024-06-17 03:04:23', '2025-12-17 19:46:28', 'dO6Jw0n4', '7324947'), + (18006, 62, 2708, 'maybe', '2024-06-13 20:20:43', '2025-12-17 19:46:28', 'dO6Jw0n4', '7325048'), + (18007, 62, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dO6Jw0n4', '7331457'), + (18008, 62, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dO6Jw0n4', '7356752'), + (18009, 62, 2764, 'attending', '2024-07-28 20:59:12', '2025-12-17 19:46:30', 'dO6Jw0n4', '7363595'), + (18010, 62, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dO6Jw0n4', '7363643'), + (18011, 62, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dO6Jw0n4', '7368606'), + (18012, 62, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dO6Jw0n4', '7397462'), + (18013, 62, 2808, 'attending', '2024-08-29 05:34:31', '2025-12-17 19:46:32', 'dO6Jw0n4', '7412860'), + (18014, 62, 2816, 'attending', '2024-09-15 20:14:30', '2025-12-17 19:46:25', 'dO6Jw0n4', '7424269'), + (18015, 62, 2817, 'attending', '2024-09-15 20:14:41', '2025-12-17 19:46:25', 'dO6Jw0n4', '7424270'), + (18016, 62, 2818, 'attending', '2024-09-22 04:06:21', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424272'), + (18017, 62, 2819, 'attending', '2024-09-22 04:06:24', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424273'), + (18018, 62, 2820, 'attending', '2024-09-22 04:06:29', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424274'), + (18019, 62, 2821, 'attending', '2024-09-22 04:06:42', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424275'), + (18020, 62, 2822, 'attending', '2024-11-07 22:02:53', '2025-12-17 19:46:26', 'dO6Jw0n4', '7424276'), + (18021, 62, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dO6Jw0n4', '7432751'), + (18022, 62, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dO6Jw0n4', '7432752'), + (18023, 62, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dO6Jw0n4', '7432753'), + (18024, 62, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432754'), + (18025, 62, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432755'), + (18026, 62, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432756'), + (18027, 62, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432758'), + (18028, 62, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dO6Jw0n4', '7432759'), + (18029, 62, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dO6Jw0n4', '7433834'), + (18030, 62, 2834, 'maybe', '2024-09-12 04:30:25', '2025-12-17 19:46:25', 'dO6Jw0n4', '7433852'), + (18031, 62, 2835, 'attending', '2024-09-12 04:31:38', '2025-12-17 19:46:24', 'dO6Jw0n4', '7437354'), + (18032, 62, 2837, 'attending', '2024-09-13 04:54:31', '2025-12-17 19:46:25', 'dO6Jw0n4', '7438711'), + (18033, 62, 2847, 'attending', '2024-09-22 04:05:46', '2025-12-17 19:46:25', 'dO6Jw0n4', '7452299'), + (18034, 62, 2853, 'attending', '2024-11-07 22:02:48', '2025-12-17 19:46:26', 'dO6Jw0n4', '7465683'), + (18035, 62, 2858, 'attending', '2024-10-17 21:59:12', '2025-12-17 19:46:26', 'dO6Jw0n4', '7469388'), + (18036, 62, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dO6Jw0n4', '7470197'), + (18037, 62, 2870, 'attending', '2024-10-04 14:04:52', '2025-12-17 19:46:26', 'dO6Jw0n4', '7475068'), + (18038, 62, 2874, 'attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'dO6Jw0n4', '7482239'), + (18039, 62, 2878, 'maybe', '2024-10-13 13:59:16', '2025-12-17 19:46:26', 'dO6Jw0n4', '7633857'), + (18040, 62, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dO6Jw0n4', '7685613'), + (18041, 62, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dO6Jw0n4', '7688194'), + (18042, 62, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dO6Jw0n4', '7688196'), + (18043, 62, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dO6Jw0n4', '7688289'), + (18044, 62, 2909, 'not_attending', '2024-11-10 21:20:50', '2025-12-17 19:46:27', 'dO6Jw0n4', '7689771'), + (18045, 62, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dO6Jw0n4', '7692763'), + (18046, 62, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dO6Jw0n4', '7697552'), + (18047, 62, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dO6Jw0n4', '7699878'), + (18048, 62, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dO6Jw0n4', '7704043'), + (18049, 62, 2921, 'attending', '2024-11-24 01:01:43', '2025-12-17 19:46:28', 'dO6Jw0n4', '7708460'), + (18050, 62, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dO6Jw0n4', '7712467'), + (18051, 62, 2925, 'attending', '2024-12-08 17:12:02', '2025-12-17 19:46:21', 'dO6Jw0n4', '7713584'), + (18052, 62, 2926, 'attending', '2024-12-06 21:55:15', '2025-12-17 19:46:21', 'dO6Jw0n4', '7713585'), + (18053, 62, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dO6Jw0n4', '7713586'), + (18054, 62, 2934, 'attending', '2025-01-10 20:13:20', '2025-12-17 19:46:22', 'dO6Jw0n4', '7725952'), + (18055, 62, 2937, 'attending', '2024-12-08 17:12:06', '2025-12-17 19:46:21', 'dO6Jw0n4', '7725955'), + (18056, 62, 2939, 'maybe', '2025-02-15 17:00:10', '2025-12-17 19:46:24', 'dO6Jw0n4', '7725957'), + (18057, 62, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dO6Jw0n4', '7738518'), + (18058, 62, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dO6Jw0n4', '7750636'), + (18059, 62, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dO6Jw0n4', '7796540'), + (18060, 62, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dO6Jw0n4', '7796541'), + (18061, 62, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dO6Jw0n4', '7796542'), + (18062, 62, 2968, 'maybe', '2025-01-08 21:39:33', '2025-12-17 19:46:22', 'dO6Jw0n4', '7797967'), + (18063, 62, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dO6Jw0n4', '7825913'), + (18064, 62, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dO6Jw0n4', '7826209'), + (18065, 62, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dO6Jw0n4', '7834742'), + (18066, 62, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dO6Jw0n4', '7842108'), + (18067, 62, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dO6Jw0n4', '7842902'), + (18068, 62, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dO6Jw0n4', '7842903'), + (18069, 62, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dO6Jw0n4', '7842904'), + (18070, 62, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dO6Jw0n4', '7842905'), + (18071, 62, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dO6Jw0n4', '7855719'), + (18072, 62, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dO6Jw0n4', '7860683'), + (18073, 62, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dO6Jw0n4', '7860684'), + (18074, 62, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dO6Jw0n4', '7866095'), + (18075, 62, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dO6Jw0n4', '7869170'), + (18076, 62, 3014, 'maybe', '2025-04-05 14:40:06', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869185'), + (18077, 62, 3015, 'not_attending', '2025-04-26 21:12:48', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869186'), + (18078, 62, 3016, 'maybe', '2025-04-16 23:08:27', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869187'), + (18079, 62, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dO6Jw0n4', '7869188'), + (18080, 62, 3018, 'attending', '2025-04-12 16:02:06', '2025-12-17 19:46:20', 'dO6Jw0n4', '7869189'), + (18081, 62, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dO6Jw0n4', '7869201'), + (18082, 62, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dO6Jw0n4', '7877465'), + (18083, 62, 3034, 'not_attending', '2025-03-11 16:55:48', '2025-12-17 19:46:18', 'dO6Jw0n4', '7878570'), + (18084, 62, 3040, 'not_attending', '2025-03-14 03:06:02', '2025-12-17 19:46:19', 'dO6Jw0n4', '7881994'), + (18085, 62, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dO6Jw0n4', '7888250'), + (18086, 62, 3083, 'not_attending', '2025-04-08 17:17:42', '2025-12-17 19:46:20', 'dO6Jw0n4', '7903308'), + (18087, 62, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dO6Jw0n4', '7904777'), + (18088, 62, 3094, 'maybe', '2025-05-08 16:03:41', '2025-12-17 19:46:21', 'dO6Jw0n4', '8342292'), + (18089, 62, 3095, 'maybe', '2025-05-03 19:10:17', '2025-12-17 19:46:20', 'dO6Jw0n4', '8342293'), + (18090, 62, 3096, 'not_attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dO6Jw0n4', '8342987'), + (18091, 62, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dO6Jw0n4', '8349164'), + (18092, 62, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dO6Jw0n4', '8349545'), + (18093, 62, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dO6Jw0n4', '8353584'), + (18094, 62, 3131, 'maybe', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dO6Jw0n4', '8368028'), + (18095, 62, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dO6Jw0n4', '8368029'), + (18096, 62, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dO6Jw0n4', '8388462'), + (18097, 62, 3150, 'maybe', '2025-06-21 17:00:16', '2025-12-17 19:46:15', 'dO6Jw0n4', '8393174'), + (18098, 62, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dO6Jw0n4', '8400273'), + (18099, 62, 3154, 'attending', '2025-06-27 12:38:41', '2025-12-17 19:46:15', 'dO6Jw0n4', '8400274'), + (18100, 62, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dO6Jw0n4', '8400275'), + (18101, 62, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dO6Jw0n4', '8400276'), + (18102, 62, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dO6Jw0n4', '8404977'), + (18103, 62, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dO6Jw0n4', '8430783'), + (18104, 62, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dO6Jw0n4', '8430784'), + (18105, 62, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dO6Jw0n4', '8430799'), + (18106, 62, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dO6Jw0n4', '8430800'), + (18107, 62, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dO6Jw0n4', '8430801'), + (18108, 62, 3187, 'attending', '2025-07-03 23:29:38', '2025-12-17 19:46:16', 'dO6Jw0n4', '8434478'), + (18109, 62, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dO6Jw0n4', '8438709'), + (18110, 62, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dO6Jw0n4', '8457738'), + (18111, 62, 3197, 'maybe', '2025-07-24 23:19:11', '2025-12-17 19:46:17', 'dO6Jw0n4', '8458825'), + (18112, 62, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dO6Jw0n4', '8459566'), + (18113, 62, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dO6Jw0n4', '8459567'), + (18114, 62, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dO6Jw0n4', '8461032'), + (18115, 62, 3206, 'maybe', '2025-07-22 17:48:47', '2025-12-17 19:46:17', 'dO6Jw0n4', '8462943'), + (18116, 62, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dO6Jw0n4', '8477877'), + (18117, 62, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dO6Jw0n4', '8485688'), + (18118, 62, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dO6Jw0n4', '8490587'), + (18119, 62, 3236, 'maybe', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dO6Jw0n4', '8493552'), + (18120, 62, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dO6Jw0n4', '8493553'), + (18121, 62, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dO6Jw0n4', '8493554'), + (18122, 62, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dO6Jw0n4', '8493555'), + (18123, 62, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dO6Jw0n4', '8493556'), + (18124, 62, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dO6Jw0n4', '8493557'), + (18125, 62, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dO6Jw0n4', '8493558'), + (18126, 62, 3243, 'maybe', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dO6Jw0n4', '8493559'), + (18127, 62, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dO6Jw0n4', '8493560'), + (18128, 62, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dO6Jw0n4', '8493561'), + (18129, 62, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dO6Jw0n4', '8493572'), + (18130, 62, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dO6Jw0n4', '8540725'), + (18131, 62, 3295, 'maybe', '2025-11-01 06:56:43', '2025-12-17 19:46:14', 'dO6Jw0n4', '8547541'), + (18132, 62, 3302, 'attending', '2025-11-11 16:52:46', '2025-12-17 19:46:14', 'dO6Jw0n4', '8550022'), + (18133, 62, 3304, 'not_attending', '2025-11-22 15:03:26', '2025-12-17 19:46:14', 'dO6Jw0n4', '8550024'), + (18134, 62, 3306, 'not_attending', '2025-12-11 17:23:57', '2025-12-17 19:46:11', 'dO6Jw0n4', '8550026'), + (18135, 62, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dO6Jw0n4', '8555421'), + (18136, 63, 3284, 'maybe', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '401wK9Ed', '8540725'), + (18137, 63, 3288, 'not_attending', '2025-10-11 05:44:36', '2025-12-17 19:46:13', '401wK9Ed', '8542408'), + (18138, 63, 3290, 'attending', '2025-10-12 22:59:40', '2025-12-17 19:46:13', '401wK9Ed', '8542943'), + (18139, 63, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '401wK9Ed', '8555421'), + (18140, 64, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mLzK5gZ4', '7713586'), + (18141, 64, 2955, 'attending', '2024-12-15 20:02:05', '2025-12-17 19:46:21', 'mLzK5gZ4', '7735094'), + (18142, 64, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mLzK5gZ4', '7738518'), + (18143, 64, 2962, 'attending', '2024-12-27 00:10:39', '2025-12-17 19:46:22', 'mLzK5gZ4', '7750632'), + (18144, 64, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mLzK5gZ4', '7750636'), + (18145, 64, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mLzK5gZ4', '7796540'), + (18146, 64, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mLzK5gZ4', '7796541'), + (18147, 64, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mLzK5gZ4', '7796542'), + (18148, 64, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mLzK5gZ4', '7825913'), + (18149, 64, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mLzK5gZ4', '7826209'), + (18150, 64, 2983, 'attending', '2025-02-01 16:58:26', '2025-12-17 19:46:23', 'mLzK5gZ4', '7829499'), + (18151, 64, 2984, 'attending', '2025-02-04 01:16:36', '2025-12-17 19:46:23', 'mLzK5gZ4', '7830134'), + (18152, 64, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mLzK5gZ4', '7834742'), + (18153, 64, 2987, 'not_attending', '2025-02-07 14:30:12', '2025-12-17 19:46:23', 'mLzK5gZ4', '7839568'), + (18154, 64, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mLzK5gZ4', '7842108'), + (18155, 64, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mLzK5gZ4', '7842902'), + (18156, 64, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mLzK5gZ4', '7842903'), + (18157, 64, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mLzK5gZ4', '7842904'), + (18158, 64, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mLzK5gZ4', '7842905'), + (18159, 64, 2999, 'not_attending', '2025-02-13 02:45:14', '2025-12-17 19:46:23', 'mLzK5gZ4', '7844784'), + (18160, 64, 3002, 'not_attending', '2025-02-22 23:34:12', '2025-12-17 19:46:24', 'mLzK5gZ4', '7854212'), + (18161, 64, 3006, 'attending', '2025-02-20 02:23:03', '2025-12-17 19:46:24', 'mLzK5gZ4', '7855719'), + (18162, 64, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mLzK5gZ4', '7860683'), + (18163, 64, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mLzK5gZ4', '7860684'), + (18164, 64, 3010, 'not_attending', '2025-03-01 01:20:05', '2025-12-17 19:46:18', 'mLzK5gZ4', '7864879'), + (18165, 64, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mLzK5gZ4', '7866095'), + (18166, 64, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mLzK5gZ4', '7869170'), + (18167, 64, 3014, 'attending', '2025-04-05 18:17:20', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869185'), + (18168, 64, 3015, 'attending', '2025-04-05 18:17:32', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869186'), + (18169, 64, 3016, 'attending', '2025-04-05 18:17:29', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869187'), + (18170, 64, 3017, 'attending', '2025-03-22 02:43:10', '2025-12-17 19:46:19', 'mLzK5gZ4', '7869188'), + (18171, 64, 3018, 'attending', '2025-04-05 18:17:27', '2025-12-17 19:46:20', 'mLzK5gZ4', '7869189'), + (18172, 64, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mLzK5gZ4', '7869201'), + (18173, 64, 3030, 'attending', '2025-03-06 19:10:17', '2025-12-17 19:46:18', 'mLzK5gZ4', '7872088'), + (18174, 64, 3031, 'attending', '2025-03-07 04:51:10', '2025-12-17 19:46:18', 'mLzK5gZ4', '7875371'), + (18175, 64, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mLzK5gZ4', '7877465'), + (18176, 64, 3037, 'maybe', '2025-03-13 16:58:04', '2025-12-17 19:46:19', 'mLzK5gZ4', '7880977'), + (18177, 64, 3038, 'attending', '2025-03-14 02:15:32', '2025-12-17 19:46:19', 'mLzK5gZ4', '7881989'), + (18178, 64, 3039, 'maybe', '2025-03-16 23:18:23', '2025-12-17 19:46:19', 'mLzK5gZ4', '7881992'), + (18179, 64, 3041, 'not_attending', '2025-03-16 16:13:35', '2025-12-17 19:46:19', 'mLzK5gZ4', '7881995'), + (18180, 64, 3049, 'attending', '2025-03-16 23:17:13', '2025-12-17 19:46:19', 'mLzK5gZ4', '7883215'), + (18181, 64, 3050, 'attending', '2025-03-16 22:59:47', '2025-12-17 19:46:19', 'mLzK5gZ4', '7884021'), + (18182, 64, 3055, 'maybe', '2025-03-22 02:42:54', '2025-12-17 19:46:19', 'mLzK5gZ4', '7888118'), + (18183, 64, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mLzK5gZ4', '7888250'), + (18184, 64, 3058, 'attending', '2025-03-27 00:37:09', '2025-12-17 19:46:19', 'mLzK5gZ4', '7891460'), + (18185, 64, 3060, 'maybe', '2025-03-30 20:20:55', '2025-12-17 19:46:19', 'mLzK5gZ4', '7892589'), + (18186, 64, 3064, 'attending', '2025-03-29 15:51:53', '2025-12-17 19:46:19', 'mLzK5gZ4', '7892835'), + (18187, 64, 3067, 'attending', '2025-03-31 18:38:07', '2025-12-17 19:46:19', 'mLzK5gZ4', '7894745'), + (18188, 64, 3072, 'attending', '2025-04-03 20:45:41', '2025-12-17 19:46:19', 'mLzK5gZ4', '7895449'), + (18189, 64, 3074, 'attending', '2025-04-05 18:20:09', '2025-12-17 19:46:19', 'mLzK5gZ4', '7897784'), + (18190, 64, 3077, 'attending', '2025-04-07 06:57:12', '2025-12-17 19:46:20', 'mLzK5gZ4', '7899510'), + (18191, 64, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mLzK5gZ4', '7904777'), + (18192, 64, 3090, 'maybe', '2025-04-15 23:22:52', '2025-12-17 19:46:20', 'mLzK5gZ4', '7914315'), + (18193, 64, 3094, 'not_attending', '2025-04-27 21:08:19', '2025-12-17 19:46:21', 'mLzK5gZ4', '8342292'), + (18194, 64, 3095, 'not_attending', '2025-04-27 21:08:13', '2025-12-17 19:46:20', 'mLzK5gZ4', '8342293'), + (18195, 64, 3102, 'attending', '2025-04-26 17:28:03', '2025-12-17 19:46:20', 'mLzK5gZ4', '8346008'), + (18196, 64, 3103, 'attending', '2025-04-26 15:28:43', '2025-12-17 19:46:20', 'mLzK5gZ4', '8347770'), + (18197, 64, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mLzK5gZ4', '8349164'), + (18198, 64, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mLzK5gZ4', '8349545'), + (18199, 64, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mLzK5gZ4', '8353584'), + (18200, 64, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mLzK5gZ4', '8368028'), + (18201, 64, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mLzK5gZ4', '8368029'), + (18202, 64, 3136, 'attending', '2025-05-17 21:57:47', '2025-12-17 19:46:21', 'mLzK5gZ4', '8374152'), + (18203, 64, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mLzK5gZ4', '8388462'), + (18204, 64, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mLzK5gZ4', '8400273'), + (18205, 64, 3154, 'attending', '2025-06-26 18:35:43', '2025-12-17 19:46:15', 'mLzK5gZ4', '8400274'), + (18206, 64, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mLzK5gZ4', '8400275'), + (18207, 64, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mLzK5gZ4', '8400276'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (18208, 64, 3157, 'attending', '2025-06-04 04:29:10', '2025-12-17 19:46:15', 'mLzK5gZ4', '8401407'), + (18209, 64, 3159, 'attending', '2025-06-05 18:48:23', '2025-12-17 19:46:15', 'mLzK5gZ4', '8401410'), + (18210, 64, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mLzK5gZ4', '8404977'), + (18211, 64, 3176, 'attending', '2025-06-20 01:02:05', '2025-12-17 19:46:15', 'mLzK5gZ4', '8416741'), + (18212, 64, 3179, 'not_attending', '2025-06-24 03:27:21', '2025-12-17 19:46:15', 'mLzK5gZ4', '8421850'), + (18213, 64, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mLzK5gZ4', '8430783'), + (18214, 64, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mLzK5gZ4', '8430784'), + (18215, 64, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mLzK5gZ4', '8430799'), + (18216, 64, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mLzK5gZ4', '8430800'), + (18217, 64, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mLzK5gZ4', '8430801'), + (18218, 64, 3187, 'attending', '2025-07-03 16:40:43', '2025-12-17 19:46:16', 'mLzK5gZ4', '8434478'), + (18219, 64, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mLzK5gZ4', '8438709'), + (18220, 64, 3191, 'attending', '2025-07-15 17:40:26', '2025-12-17 19:46:17', 'mLzK5gZ4', '8444983'), + (18221, 64, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mLzK5gZ4', '8457738'), + (18222, 64, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mLzK5gZ4', '8459566'), + (18223, 64, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mLzK5gZ4', '8459567'), + (18224, 64, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mLzK5gZ4', '8461032'), + (18225, 64, 3205, 'not_attending', '2025-07-20 21:25:34', '2025-12-17 19:46:17', 'mLzK5gZ4', '8461764'), + (18226, 64, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mLzK5gZ4', '8477877'), + (18227, 64, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mLzK5gZ4', '8485688'), + (18228, 64, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mLzK5gZ4', '8490587'), + (18229, 64, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mLzK5gZ4', '8493552'), + (18230, 64, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mLzK5gZ4', '8493553'), + (18231, 64, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mLzK5gZ4', '8493554'), + (18232, 64, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mLzK5gZ4', '8493555'), + (18233, 64, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mLzK5gZ4', '8493556'), + (18234, 64, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mLzK5gZ4', '8493557'), + (18235, 64, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mLzK5gZ4', '8493558'), + (18236, 64, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mLzK5gZ4', '8493559'), + (18237, 64, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mLzK5gZ4', '8493560'), + (18238, 64, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mLzK5gZ4', '8493561'), + (18239, 64, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mLzK5gZ4', '8493572'), + (18240, 64, 3271, 'maybe', '2025-09-17 19:24:48', '2025-12-17 19:46:12', 'mLzK5gZ4', '8521430'), + (18241, 64, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mLzK5gZ4', '8540725'), + (18242, 64, 3296, 'attending', '2025-10-23 18:03:26', '2025-12-17 19:46:14', 'mLzK5gZ4', '8547711'), + (18243, 64, 3302, 'attending', '2025-11-12 15:59:03', '2025-12-17 19:46:14', 'mLzK5gZ4', '8550022'), + (18244, 64, 3307, 'attending', '2025-12-15 17:07:27', '2025-12-17 19:46:11', 'mLzK5gZ4', '8550027'), + (18245, 64, 3321, 'attending', '2025-11-14 01:03:34', '2025-12-17 19:46:14', 'mLzK5gZ4', '8555418'), + (18246, 64, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mLzK5gZ4', '8555421'), + (18247, 64, 3330, 'attending', '2025-11-30 19:26:44', '2025-12-17 19:46:11', 'mLzK5gZ4', '8561720'), + (18248, 64, 3346, 'attending', '2025-12-30 02:21:23', '2025-12-30 02:21:23', NULL, NULL), + (18249, 64, 3347, 'attending', '2025-12-30 02:21:33', '2025-12-30 02:21:33', NULL, NULL), + (18250, 65, 3305, 'attending', '2025-12-02 02:47:12', '2025-12-17 19:46:11', 'dazMLRZm', '8550025'), + (18251, 65, 3306, 'attending', '2025-12-13 02:32:37', '2025-12-17 19:46:11', 'dazMLRZm', '8550026'), + (18252, 65, 3307, 'attending', '2025-12-16 08:13:42', '2025-12-18 22:55:00', 'dazMLRZm', '8550027'), + (18253, 65, 3330, 'attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', 'dazMLRZm', '8561720'), + (18254, 65, 3336, 'attending', '2025-12-16 00:54:24', '2025-12-17 19:46:11', 'dazMLRZm', '8563248'), + (18255, 65, 3346, 'attending', '2025-12-31 23:26:17', '2025-12-31 23:26:17', NULL, NULL), + (18256, 66, 3195, 'not_attending', '2025-08-03 06:40:10', '2025-12-17 19:46:17', 'nm6a881d', '8458118'), + (18257, 66, 3200, 'attending', '2025-08-02 01:05:03', '2025-12-17 19:46:17', 'nm6a881d', '8459566'), + (18258, 66, 3201, 'attending', '2025-08-03 06:40:15', '2025-12-17 19:46:17', 'nm6a881d', '8459567'), + (18259, 66, 3203, 'attending', '2025-07-24 04:43:36', '2025-12-17 19:46:17', 'nm6a881d', '8461032'), + (18260, 66, 3207, 'attending', '2025-07-25 18:53:40', '2025-12-17 19:46:17', 'nm6a881d', '8466820'), + (18261, 66, 3211, 'attending', '2025-08-05 02:23:10', '2025-12-17 19:46:17', 'nm6a881d', '8477785'), + (18262, 66, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm6a881d', '8477877'), + (18263, 66, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'nm6a881d', '8485688'), + (18264, 66, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm6a881d', '8490587'), + (18265, 66, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm6a881d', '8493552'), + (18266, 66, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm6a881d', '8493553'), + (18267, 66, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm6a881d', '8493554'), + (18268, 66, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm6a881d', '8493555'), + (18269, 66, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm6a881d', '8493556'), + (18270, 66, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm6a881d', '8493557'), + (18271, 66, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm6a881d', '8493558'), + (18272, 66, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm6a881d', '8493559'), + (18273, 66, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm6a881d', '8493560'), + (18274, 66, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'nm6a881d', '8493561'), + (18275, 66, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm6a881d', '8493572'), + (18276, 66, 3257, 'attending', '2025-08-28 22:55:14', '2025-12-17 19:46:11', 'nm6a881d', '8502340'), + (18277, 66, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'nm6a881d', '8540725'), + (18278, 66, 3289, 'attending', '2025-10-24 23:55:40', '2025-12-17 19:46:14', 'nm6a881d', '8542939'), + (18279, 66, 3300, 'not_attending', '2025-11-05 01:03:23', '2025-12-17 19:46:14', 'nm6a881d', '8549145'), + (18280, 66, 3302, 'attending', '2025-11-10 01:11:30', '2025-12-17 19:46:14', 'nm6a881d', '8550022'), + (18281, 66, 3304, 'attending', '2025-11-16 04:38:32', '2025-12-17 19:46:14', 'nm6a881d', '8550024'), + (18282, 66, 3305, 'not_attending', '2025-12-01 08:05:25', '2025-12-17 19:46:11', 'nm6a881d', '8550025'), + (18283, 66, 3307, 'attending', '2025-12-18 08:07:29', '2025-12-20 04:09:27', NULL, NULL), + (18284, 66, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm6a881d', '8555421'), + (18285, 66, 3346, 'attending', '2026-01-03 03:50:32', '2026-01-03 03:50:32', NULL, NULL), + (18286, 66, 3350, 'not_attending', '2026-01-03 03:50:51', '2026-01-03 03:50:51', NULL, NULL), + (18287, 66, 3354, 'not_attending', '2026-01-03 03:50:57', '2026-01-03 03:50:57', NULL, NULL), + (18288, 66, 3355, 'not_attending', '2026-01-03 03:51:01', '2026-01-03 03:51:01', NULL, NULL), + (18289, 67, 2821, 'attending', '2024-10-11 01:06:43', '2025-12-17 19:46:26', 'mRBRe9Ym', '7424275'), + (18290, 67, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mRBRe9Ym', '7424276'), + (18291, 67, 2825, 'attending', '2024-09-21 05:25:04', '2025-12-17 19:46:25', 'mRBRe9Ym', '7432752'), + (18292, 67, 2826, 'attending', '2024-09-26 20:32:59', '2025-12-17 19:46:25', 'mRBRe9Ym', '7432753'), + (18293, 67, 2827, 'attending', '2024-10-04 11:09:05', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432754'), + (18294, 67, 2828, 'not_attending', '2024-10-14 09:54:40', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432755'), + (18295, 67, 2829, 'attending', '2024-10-14 09:54:47', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432756'), + (18296, 67, 2830, 'attending', '2024-10-14 09:55:23', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432758'), + (18297, 67, 2831, 'attending', '2024-11-09 13:15:57', '2025-12-17 19:46:26', 'mRBRe9Ym', '7432759'), + (18298, 67, 2839, 'maybe', '2024-09-25 15:58:07', '2025-12-17 19:46:25', 'mRBRe9Ym', '7439262'), + (18299, 67, 2858, 'maybe', '2024-10-14 09:54:35', '2025-12-17 19:46:26', 'mRBRe9Ym', '7469388'), + (18300, 67, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mRBRe9Ym', '7470197'), + (18301, 67, 2864, 'maybe', '2024-10-14 09:54:17', '2025-12-17 19:46:26', 'mRBRe9Ym', '7471199'), + (18302, 67, 2865, 'attending', '2024-11-01 01:25:05', '2025-12-17 19:46:26', 'mRBRe9Ym', '7471200'), + (18303, 67, 2871, 'attending', '2024-10-14 09:54:23', '2025-12-17 19:46:26', 'mRBRe9Ym', '7480481'), + (18304, 67, 2878, 'maybe', '2024-10-14 09:54:27', '2025-12-17 19:46:26', 'mRBRe9Ym', '7633857'), + (18305, 67, 2881, 'attending', '2024-11-06 04:27:44', '2025-12-17 19:46:26', 'mRBRe9Ym', '7644047'), + (18306, 67, 2883, 'attending', '2024-10-22 04:20:58', '2025-12-17 19:46:26', 'mRBRe9Ym', '7649157'), + (18307, 67, 2888, 'attending', '2024-10-21 07:59:30', '2025-12-17 19:46:26', 'mRBRe9Ym', '7654822'), + (18308, 67, 2889, 'attending', '2024-10-22 03:07:34', '2025-12-17 19:46:26', 'mRBRe9Ym', '7660485'), + (18309, 67, 2893, 'attending', '2024-10-29 02:22:27', '2025-12-17 19:46:26', 'mRBRe9Ym', '7672705'), + (18310, 67, 2896, 'attending', '2024-11-12 16:27:23', '2025-12-17 19:46:27', 'mRBRe9Ym', '7683647'), + (18311, 67, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mRBRe9Ym', '7685613'), + (18312, 67, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mRBRe9Ym', '7688194'), + (18313, 67, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mRBRe9Ym', '7688196'), + (18314, 67, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mRBRe9Ym', '7688289'), + (18315, 67, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'mRBRe9Ym', '7692763'), + (18316, 67, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mRBRe9Ym', '7697552'), + (18317, 67, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mRBRe9Ym', '7699878'), + (18318, 67, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mRBRe9Ym', '7704043'), + (18319, 67, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mRBRe9Ym', '7712467'), + (18320, 67, 2926, 'attending', '2024-12-07 02:33:27', '2025-12-17 19:46:21', 'mRBRe9Ym', '7713585'), + (18321, 67, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mRBRe9Ym', '7713586'), + (18322, 67, 2930, 'maybe', '2024-12-10 14:24:02', '2025-12-17 19:46:21', 'mRBRe9Ym', '7724554'), + (18323, 67, 2955, 'attending', '2024-12-16 22:21:42', '2025-12-17 19:46:21', 'mRBRe9Ym', '7735094'), + (18324, 67, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mRBRe9Ym', '7738518'), + (18325, 67, 2962, 'not_attending', '2024-12-27 22:26:25', '2025-12-17 19:46:22', 'mRBRe9Ym', '7750632'), + (18326, 67, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mRBRe9Ym', '7750636'), + (18327, 67, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mRBRe9Ym', '7796540'), + (18328, 67, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mRBRe9Ym', '7796541'), + (18329, 67, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mRBRe9Ym', '7796542'), + (18330, 67, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mRBRe9Ym', '7825913'), + (18331, 67, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mRBRe9Ym', '7826209'), + (18332, 67, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mRBRe9Ym', '7834742'), + (18333, 67, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mRBRe9Ym', '7842108'), + (18334, 67, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mRBRe9Ym', '7842902'), + (18335, 67, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mRBRe9Ym', '7842903'), + (18336, 67, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mRBRe9Ym', '7842904'), + (18337, 67, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mRBRe9Ym', '7842905'), + (18338, 67, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mRBRe9Ym', '7855719'), + (18339, 67, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mRBRe9Ym', '7860683'), + (18340, 67, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mRBRe9Ym', '7860684'), + (18341, 67, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mRBRe9Ym', '7866095'), + (18342, 67, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mRBRe9Ym', '7869170'), + (18343, 67, 3014, 'maybe', '2025-04-05 21:56:37', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869185'), + (18344, 67, 3015, 'not_attending', '2025-04-26 20:05:15', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869186'), + (18345, 67, 3016, 'attending', '2025-04-15 00:12:53', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869187'), + (18346, 67, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mRBRe9Ym', '7869188'), + (18347, 67, 3018, 'not_attending', '2025-04-12 02:17:08', '2025-12-17 19:46:20', 'mRBRe9Ym', '7869189'), + (18348, 67, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mRBRe9Ym', '7869201'), + (18349, 67, 3033, 'attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mRBRe9Ym', '7877465'), + (18350, 67, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mRBRe9Ym', '7888250'), + (18351, 67, 3060, 'attending', '2025-04-04 00:07:03', '2025-12-17 19:46:19', 'mRBRe9Ym', '7892589'), + (18352, 67, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mRBRe9Ym', '7904777'), + (18353, 67, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mRBRe9Ym', '8349164'), + (18354, 67, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mRBRe9Ym', '8349545'), + (18355, 67, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mRBRe9Ym', '8353584'), + (18356, 67, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mRBRe9Ym', '8368028'), + (18357, 67, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mRBRe9Ym', '8368029'), + (18358, 67, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mRBRe9Ym', '8388462'), + (18359, 67, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mRBRe9Ym', '8400273'), + (18360, 67, 3154, 'maybe', '2025-06-27 22:01:06', '2025-12-17 19:46:15', 'mRBRe9Ym', '8400274'), + (18361, 67, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mRBRe9Ym', '8400275'), + (18362, 67, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mRBRe9Ym', '8400276'), + (18363, 67, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mRBRe9Ym', '8404977'), + (18364, 67, 3178, 'attending', '2025-06-24 03:14:58', '2025-12-17 19:46:15', 'mRBRe9Ym', '8421848'), + (18365, 67, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mRBRe9Ym', '8430783'), + (18366, 67, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mRBRe9Ym', '8430784'), + (18367, 67, 3183, 'maybe', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mRBRe9Ym', '8430799'), + (18368, 67, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mRBRe9Ym', '8430800'), + (18369, 67, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mRBRe9Ym', '8430801'), + (18370, 67, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mRBRe9Ym', '8438709'), + (18371, 67, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mRBRe9Ym', '8457738'), + (18372, 67, 3195, 'attending', '2025-07-18 00:25:36', '2025-12-17 19:46:17', 'mRBRe9Ym', '8458118'), + (18373, 67, 3196, 'attending', '2025-07-18 00:56:04', '2025-12-17 19:46:17', 'mRBRe9Ym', '8458543'), + (18374, 67, 3197, 'maybe', '2025-07-22 05:23:01', '2025-12-17 19:46:17', 'mRBRe9Ym', '8458825'), + (18375, 67, 3198, 'attending', '2025-07-18 07:53:22', '2025-12-17 19:46:18', 'mRBRe9Ym', '8459268'), + (18376, 67, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mRBRe9Ym', '8459566'), + (18377, 67, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mRBRe9Ym', '8459567'), + (18378, 67, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mRBRe9Ym', '8461032'), + (18379, 67, 3210, 'attending', '2025-07-30 03:16:51', '2025-12-17 19:46:18', 'mRBRe9Ym', '8471162'), + (18380, 67, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mRBRe9Ym', '8477877'), + (18381, 67, 3216, 'attending', '2025-08-09 01:54:51', '2025-12-17 19:46:17', 'mRBRe9Ym', '8481608'), + (18382, 67, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mRBRe9Ym', '8485688'), + (18383, 67, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mRBRe9Ym', '8490587'), + (18384, 67, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mRBRe9Ym', '8493552'), + (18385, 67, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mRBRe9Ym', '8493553'), + (18386, 67, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mRBRe9Ym', '8493554'), + (18387, 67, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mRBRe9Ym', '8493555'), + (18388, 67, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mRBRe9Ym', '8493556'), + (18389, 67, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mRBRe9Ym', '8493557'), + (18390, 67, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mRBRe9Ym', '8493558'), + (18391, 67, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mRBRe9Ym', '8493559'), + (18392, 67, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mRBRe9Ym', '8493560'), + (18393, 67, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mRBRe9Ym', '8493561'), + (18394, 67, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mRBRe9Ym', '8493572'), + (18395, 67, 3272, 'attending', '2025-09-18 03:24:36', '2025-12-17 19:46:12', 'mRBRe9Ym', '8524068'), + (18396, 67, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mRBRe9Ym', '8540725'), + (18397, 67, 3289, 'attending', '2025-10-25 00:31:44', '2025-12-17 19:46:14', 'mRBRe9Ym', '8542939'), + (18398, 67, 3295, 'attending', '2025-10-29 00:58:21', '2025-12-17 19:46:14', 'mRBRe9Ym', '8547541'), + (18399, 67, 3302, 'attending', '2025-11-14 00:05:48', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550022'), + (18400, 67, 3304, 'attending', '2025-11-22 00:49:25', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550024'), + (18401, 67, 3305, 'attending', '2025-12-06 01:35:54', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550025'), + (18402, 67, 3306, 'attending', '2025-12-13 02:31:14', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550026'), + (18403, 67, 3307, 'attending', '2025-12-18 22:24:33', '2025-12-18 22:24:33', NULL, NULL), + (18404, 67, 3308, 'attending', '2025-11-09 22:15:51', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550408'), + (18405, 67, 3309, 'attending', '2025-11-17 00:06:07', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550409'), + (18406, 67, 3310, 'attending', '2025-12-01 01:47:58', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550410'), + (18407, 67, 3311, 'maybe', '2025-12-09 04:31:18', '2025-12-17 19:46:11', 'mRBRe9Ym', '8550412'), + (18408, 67, 3313, 'maybe', '2025-11-05 22:40:43', '2025-12-17 19:46:14', 'mRBRe9Ym', '8550896'), + (18409, 67, 3317, 'attending', '2025-11-13 00:38:38', '2025-12-17 19:46:14', 'mRBRe9Ym', '8552943'), + (18410, 67, 3319, 'maybe', '2025-11-08 01:36:42', '2025-12-17 19:46:14', 'mRBRe9Ym', '8553114'), + (18411, 67, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mRBRe9Ym', '8555421'), + (18412, 67, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'mRBRe9Ym', '8555522'), + (18413, 67, 3343, 'attending', '2025-12-14 04:42:15', '2025-12-17 19:46:11', 'mRBRe9Ym', '8564411'), + (18414, 67, 3346, 'attending', '2025-12-30 02:02:30', '2025-12-30 02:02:32', NULL, NULL), + (18415, 68, 3014, 'maybe', '2025-04-04 04:00:31', '2025-12-17 19:46:20', 'mq6lQajA', '7869185'), + (18416, 68, 3015, 'maybe', '2025-04-26 17:32:27', '2025-12-17 19:46:20', 'mq6lQajA', '7869186'), + (18417, 68, 3016, 'maybe', '2025-04-19 12:02:24', '2025-12-17 19:46:20', 'mq6lQajA', '7869187'), + (18418, 68, 3018, 'maybe', '2025-04-12 15:30:52', '2025-12-17 19:46:20', 'mq6lQajA', '7869189'), + (18419, 68, 3067, 'maybe', '2025-04-04 04:00:39', '2025-12-17 19:46:19', 'mq6lQajA', '7894745'), + (18420, 68, 3070, 'not_attending', '2025-04-09 08:37:39', '2025-12-17 19:46:20', 'mq6lQajA', '7894829'), + (18421, 68, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'mq6lQajA', '7897784'), + (18422, 68, 3079, 'maybe', '2025-04-06 16:08:31', '2025-12-17 19:46:20', 'mq6lQajA', '7901439'), + (18423, 68, 3080, 'maybe', '2025-04-07 07:12:07', '2025-12-17 19:46:20', 'mq6lQajA', '7901441'), + (18424, 68, 3083, 'maybe', '2025-04-09 07:08:34', '2025-12-17 19:46:20', 'mq6lQajA', '7903308'), + (18425, 68, 3084, 'maybe', '2025-04-09 07:09:03', '2025-12-17 19:46:20', 'mq6lQajA', '7903687'), + (18426, 68, 3085, 'not_attending', '2025-04-12 04:04:22', '2025-12-17 19:46:20', 'mq6lQajA', '7903688'), + (18427, 68, 3088, 'maybe', '2025-06-13 00:38:38', '2025-12-17 19:46:15', 'mq6lQajA', '7904777'), + (18428, 68, 3089, 'attending', '2025-04-13 17:13:49', '2025-12-17 19:46:20', 'mq6lQajA', '7911208'), + (18429, 68, 3094, 'maybe', '2025-05-10 17:25:28', '2025-12-17 19:46:21', 'mq6lQajA', '8342292'), + (18430, 68, 3095, 'attending', '2025-05-03 17:31:12', '2025-12-17 19:46:20', 'mq6lQajA', '8342293'), + (18431, 68, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mq6lQajA', '8349164'), + (18432, 68, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mq6lQajA', '8349545'), + (18433, 68, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mq6lQajA', '8353584'), + (18434, 68, 3126, 'maybe', '2025-05-14 19:57:22', '2025-12-17 19:46:21', 'mq6lQajA', '8365614'), + (18435, 68, 3131, 'maybe', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mq6lQajA', '8368028'), + (18436, 68, 3132, 'maybe', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mq6lQajA', '8368029'), + (18437, 68, 3133, 'attending', '2025-05-31 21:20:05', '2025-12-17 19:46:14', 'mq6lQajA', '8368030'), + (18438, 68, 3143, 'maybe', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mq6lQajA', '8388462'), + (18439, 68, 3150, 'maybe', '2025-06-21 22:05:54', '2025-12-17 19:46:15', 'mq6lQajA', '8393174'), + (18440, 68, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mq6lQajA', '8400273'), + (18441, 68, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mq6lQajA', '8400274'), + (18442, 68, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mq6lQajA', '8400275'), + (18443, 68, 3156, 'maybe', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mq6lQajA', '8400276'), + (18444, 68, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mq6lQajA', '8404977'), + (18445, 68, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mq6lQajA', '8430783'), + (18446, 68, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mq6lQajA', '8430784'), + (18447, 68, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mq6lQajA', '8430799'), + (18448, 68, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mq6lQajA', '8430800'), + (18449, 68, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mq6lQajA', '8430801'), + (18450, 68, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mq6lQajA', '8438709'), + (18451, 68, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mq6lQajA', '8457738'), + (18452, 68, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mq6lQajA', '8459566'), + (18453, 68, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mq6lQajA', '8459567'), + (18454, 68, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mq6lQajA', '8461032'), + (18455, 68, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mq6lQajA', '8477877'), + (18456, 68, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mq6lQajA', '8485688'), + (18457, 68, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mq6lQajA', '8490587'), + (18458, 68, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mq6lQajA', '8493552'), + (18459, 68, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mq6lQajA', '8493553'), + (18460, 68, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mq6lQajA', '8493554'), + (18461, 68, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mq6lQajA', '8493555'), + (18462, 68, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mq6lQajA', '8493556'), + (18463, 68, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mq6lQajA', '8493557'), + (18464, 68, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mq6lQajA', '8493558'), + (18465, 68, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mq6lQajA', '8493559'), + (18466, 68, 3244, 'maybe', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mq6lQajA', '8493560'), + (18467, 68, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mq6lQajA', '8493561'), + (18468, 68, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mq6lQajA', '8493572'), + (18469, 68, 3258, 'attending', '2025-09-03 20:16:41', '2025-12-17 19:46:11', 'mq6lQajA', '8510285'), + (18470, 68, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mq6lQajA', '8540725'), + (18471, 68, 3304, 'maybe', '2025-11-22 21:46:03', '2025-12-17 19:46:14', 'mq6lQajA', '8550024'), + (18472, 68, 3305, 'maybe', '2025-12-06 21:19:36', '2025-12-17 19:46:11', 'mq6lQajA', '8550025'), + (18473, 68, 3306, 'attending', '2025-12-13 22:19:40', '2025-12-17 19:46:11', 'mq6lQajA', '8550026'), + (18474, 68, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mq6lQajA', '8555421'), + (18475, 68, 3346, 'maybe', '2026-01-02 12:14:49', '2026-01-02 12:14:49', NULL, NULL), + (18476, 69, 3237, 'attending', '2025-09-02 21:26:41', '2025-12-17 19:46:11', 'dljWe8OA', '8493553'), + (18477, 69, 3240, 'attending', '2025-09-07 01:59:42', '2025-12-17 19:46:12', 'dljWe8OA', '8493556'), + (18478, 69, 3241, 'not_attending', '2025-10-03 22:16:58', '2025-12-17 19:46:13', 'dljWe8OA', '8493557'), + (18479, 69, 3244, 'attending', '2025-09-29 10:41:02', '2025-12-17 19:46:13', 'dljWe8OA', '8493560'), + (18480, 69, 3245, 'attending', '2025-09-20 14:09:10', '2025-12-17 19:46:12', 'dljWe8OA', '8493561'), + (18481, 69, 3258, 'attending', '2025-09-02 20:41:58', '2025-12-17 19:46:11', 'dljWe8OA', '8510285'), + (18482, 69, 3259, 'attending', '2025-09-06 13:49:44', '2025-12-17 19:46:12', 'dljWe8OA', '8512638'), + (18483, 69, 3260, 'attending', '2025-09-06 13:49:42', '2025-12-17 19:46:12', 'dljWe8OA', '8512640'), + (18484, 69, 3261, 'attending', '2025-09-06 13:49:46', '2025-12-17 19:46:12', 'dljWe8OA', '8512641'), + (18485, 69, 3262, 'attending', '2025-09-06 13:49:48', '2025-12-17 19:46:12', 'dljWe8OA', '8512642'), + (18486, 69, 3263, 'attending', '2025-09-07 14:30:51', '2025-12-17 19:46:12', 'dljWe8OA', '8514576'), + (18487, 69, 3264, 'attending', '2025-09-15 17:43:28', '2025-12-17 19:46:12', 'dljWe8OA', '8514577'), + (18488, 69, 3265, 'attending', '2025-09-22 18:30:17', '2025-12-17 19:46:12', 'dljWe8OA', '8514578'), + (18489, 69, 3266, 'attending', '2025-09-29 10:41:15', '2025-12-17 19:46:13', 'dljWe8OA', '8514579'), + (18490, 69, 3271, 'attending', '2025-09-20 13:59:10', '2025-12-17 19:46:12', 'dljWe8OA', '8521430'), + (18491, 69, 3272, 'attending', '2025-09-17 22:50:56', '2025-12-17 19:46:12', 'dljWe8OA', '8524068'), + (18492, 69, 3273, 'attending', '2025-09-19 02:47:34', '2025-12-17 19:46:12', 'dljWe8OA', '8525831'), + (18493, 69, 3275, 'attending', '2025-09-22 18:20:43', '2025-12-17 19:46:12', 'dljWe8OA', '8527786'), + (18494, 69, 3276, 'not_attending', '2025-09-22 18:20:47', '2025-12-17 19:46:12', 'dljWe8OA', '8529058'), + (18495, 69, 3280, 'attending', '2025-10-09 17:47:48', '2025-12-17 19:46:13', 'dljWe8OA', '8535686'), + (18496, 69, 3281, 'not_attending', '2025-10-11 14:34:29', '2025-12-17 19:46:14', 'dljWe8OA', '8535687'), + (18497, 69, 3282, 'attending', '2025-10-04 20:21:46', '2025-12-17 19:46:13', 'dljWe8OA', '8537571'), + (18498, 69, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dljWe8OA', '8540725'), + (18499, 69, 3285, 'not_attending', '2025-10-08 18:56:32', '2025-12-17 19:46:13', 'dljWe8OA', '8540726'), + (18500, 69, 3286, 'attending', '2025-10-11 14:34:35', '2025-12-17 19:46:14', 'dljWe8OA', '8540728'), + (18501, 69, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dljWe8OA', '8555421'), + (18502, 70, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dz7V5Ebm', '7842108'), + (18503, 70, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dz7V5Ebm', '7842902'), + (18504, 70, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dz7V5Ebm', '7842903'), + (18505, 70, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dz7V5Ebm', '7842904'), + (18506, 70, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dz7V5Ebm', '7842905'), + (18507, 70, 2999, 'attending', '2025-02-13 02:18:05', '2025-12-17 19:46:23', 'dz7V5Ebm', '7844784'), + (18508, 70, 3001, 'maybe', '2025-02-21 03:09:07', '2025-12-17 19:46:24', 'dz7V5Ebm', '7854184'), + (18509, 70, 3003, 'attending', '2025-02-18 23:45:12', '2025-12-17 19:46:24', 'dz7V5Ebm', '7854589'), + (18510, 70, 3006, 'attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dz7V5Ebm', '7855719'), + (18511, 70, 3007, 'maybe', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dz7V5Ebm', '7860683'), + (18512, 70, 3008, 'attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dz7V5Ebm', '7860684'), + (18513, 70, 3009, 'maybe', '2025-02-28 23:04:13', '2025-12-17 19:46:18', 'dz7V5Ebm', '7864019'), + (18514, 70, 3010, 'maybe', '2025-03-01 01:20:05', '2025-12-17 19:46:18', 'dz7V5Ebm', '7864879'), + (18515, 70, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dz7V5Ebm', '7866095'), + (18516, 70, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dz7V5Ebm', '7869170'), + (18517, 70, 3014, 'attending', '2025-03-31 22:50:22', '2025-12-17 19:46:19', 'dz7V5Ebm', '7869185'), + (18518, 70, 3015, 'attending', '2025-04-22 22:14:00', '2025-12-17 19:46:20', 'dz7V5Ebm', '7869186'), + (18519, 70, 3016, 'attending', '2025-04-08 00:27:46', '2025-12-17 19:46:20', 'dz7V5Ebm', '7869187'), + (18520, 70, 3017, 'attending', '2025-03-25 22:48:11', '2025-12-17 19:46:19', 'dz7V5Ebm', '7869188'), + (18521, 70, 3018, 'attending', '2025-04-03 20:22:47', '2025-12-17 19:46:20', 'dz7V5Ebm', '7869189'), + (18522, 70, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dz7V5Ebm', '7869201'), + (18523, 70, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dz7V5Ebm', '7877465'), + (18524, 70, 3034, 'attending', '2025-03-11 22:18:53', '2025-12-17 19:46:18', 'dz7V5Ebm', '7878570'), + (18525, 70, 3039, 'maybe', '2025-03-19 21:07:13', '2025-12-17 19:46:19', 'dz7V5Ebm', '7881992'), + (18526, 70, 3040, 'maybe', '2025-03-17 23:03:50', '2025-12-17 19:46:19', 'dz7V5Ebm', '7881994'), + (18527, 70, 3041, 'maybe', '2025-03-16 22:54:37', '2025-12-17 19:46:19', 'dz7V5Ebm', '7881995'), + (18528, 70, 3051, 'attending', '2025-03-16 23:10:54', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884023'), + (18529, 70, 3052, 'maybe', '2025-03-17 22:45:02', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884024'), + (18530, 70, 3053, 'maybe', '2025-03-17 23:04:02', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884030'), + (18531, 70, 3054, 'maybe', '2025-03-17 22:13:08', '2025-12-17 19:46:19', 'dz7V5Ebm', '7884168'), + (18532, 70, 3055, 'attending', '2025-03-25 22:48:07', '2025-12-17 19:46:19', 'dz7V5Ebm', '7888118'), + (18533, 70, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dz7V5Ebm', '7888250'), + (18534, 70, 3060, 'maybe', '2025-03-30 02:30:06', '2025-12-17 19:46:19', 'dz7V5Ebm', '7892589'), + (18535, 70, 3061, 'not_attending', '2025-03-28 20:47:32', '2025-12-17 19:46:19', 'dz7V5Ebm', '7892590'), + (18536, 70, 3065, 'attending', '2025-03-29 00:40:23', '2025-12-17 19:46:19', 'dz7V5Ebm', '7893676'), + (18537, 70, 3066, 'maybe', '2025-03-30 23:23:21', '2025-12-17 19:46:20', 'dz7V5Ebm', '7894207'), + (18538, 70, 3069, 'maybe', '2025-04-02 21:20:21', '2025-12-17 19:46:19', 'dz7V5Ebm', '7894828'), + (18539, 70, 3070, 'not_attending', '2025-03-30 23:34:30', '2025-12-17 19:46:20', 'dz7V5Ebm', '7894829'), + (18540, 70, 3075, 'maybe', '2025-04-08 00:26:35', '2025-12-17 19:46:20', 'dz7V5Ebm', '7898896'), + (18541, 70, 3080, 'attending', '2025-04-06 16:39:16', '2025-12-17 19:46:20', 'dz7V5Ebm', '7901441'), + (18542, 70, 3081, 'maybe', '2025-04-08 00:26:44', '2025-12-17 19:46:20', 'dz7V5Ebm', '7902801'), + (18543, 70, 3083, 'maybe', '2025-04-08 20:17:16', '2025-12-17 19:46:20', 'dz7V5Ebm', '7903308'), + (18544, 70, 3084, 'maybe', '2025-04-08 20:17:21', '2025-12-17 19:46:20', 'dz7V5Ebm', '7903687'), + (18545, 70, 3088, 'attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dz7V5Ebm', '7904777'), + (18546, 70, 3090, 'maybe', '2025-04-16 20:40:20', '2025-12-17 19:46:20', 'dz7V5Ebm', '7914315'), + (18547, 70, 3093, 'maybe', '2025-04-21 01:14:42', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342248'), + (18548, 70, 3094, 'attending', '2025-05-07 23:07:59', '2025-12-17 19:46:21', 'dz7V5Ebm', '8342292'), + (18549, 70, 3095, 'attending', '2025-04-30 21:54:48', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342293'), + (18550, 70, 3096, 'not_attending', '2025-04-21 03:29:22', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342987'), + (18551, 70, 3097, 'maybe', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dz7V5Ebm', '8342993'), + (18552, 70, 3104, 'maybe', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dz7V5Ebm', '8349164'), + (18553, 70, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dz7V5Ebm', '8349545'), + (18554, 70, 3109, 'attending', '2025-05-07 23:08:34', '2025-12-17 19:46:21', 'dz7V5Ebm', '8352001'), + (18555, 70, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dz7V5Ebm', '8353584'), + (18556, 70, 3119, 'attending', '2025-05-05 20:54:14', '2025-12-17 19:46:21', 'dz7V5Ebm', '8360035'), + (18557, 70, 3121, 'maybe', '2025-05-12 22:51:26', '2025-12-17 19:46:21', 'dz7V5Ebm', '8362730'), + (18558, 70, 3122, 'maybe', '2025-05-08 21:33:08', '2025-12-17 19:46:21', 'dz7V5Ebm', '8362978'), + (18559, 70, 3131, 'attending', '2025-05-15 01:19:59', '2025-12-17 19:46:21', 'dz7V5Ebm', '8368028'), + (18560, 70, 3132, 'attending', '2025-05-15 22:47:14', '2025-12-17 19:46:21', 'dz7V5Ebm', '8368029'), + (18561, 70, 3133, 'attending', '2025-05-15 22:47:15', '2025-12-17 19:46:14', 'dz7V5Ebm', '8368030'), + (18562, 70, 3137, 'maybe', '2025-05-17 20:05:46', '2025-12-17 19:46:21', 'dz7V5Ebm', '8374153'), + (18563, 70, 3138, 'maybe', '2025-05-18 20:40:42', '2025-12-17 19:46:21', 'dz7V5Ebm', '8376037'), + (18564, 70, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dz7V5Ebm', '8388462'), + (18565, 70, 3150, 'maybe', '2025-06-21 20:35:37', '2025-12-17 19:46:15', 'dz7V5Ebm', '8393174'), + (18566, 70, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dz7V5Ebm', '8400273'), + (18567, 70, 3154, 'attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dz7V5Ebm', '8400274'), + (18568, 70, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dz7V5Ebm', '8400275'), + (18569, 70, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dz7V5Ebm', '8400276'), + (18570, 70, 3157, 'maybe', '2025-06-05 00:00:24', '2025-12-17 19:46:15', 'dz7V5Ebm', '8401407'), + (18571, 70, 3160, 'attending', '2025-06-04 04:36:52', '2025-12-17 19:46:15', 'dz7V5Ebm', '8401411'), + (18572, 70, 3163, 'not_attending', '2025-06-07 22:20:43', '2025-12-17 19:46:15', 'dz7V5Ebm', '8402899'), + (18573, 70, 3164, 'maybe', '2025-06-08 15:55:29', '2025-12-17 19:46:15', 'dz7V5Ebm', '8403121'), + (18574, 70, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dz7V5Ebm', '8404977'), + (18575, 70, 3176, 'maybe', '2025-06-23 23:19:16', '2025-12-17 19:46:15', 'dz7V5Ebm', '8416741'), + (18576, 70, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dz7V5Ebm', '8430783'), + (18577, 70, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dz7V5Ebm', '8430784'), + (18578, 70, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dz7V5Ebm', '8430799'), + (18579, 70, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dz7V5Ebm', '8430800'), + (18580, 70, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dz7V5Ebm', '8430801'), + (18581, 70, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dz7V5Ebm', '8438709'), + (18582, 70, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dz7V5Ebm', '8457738'), + (18583, 70, 3194, 'attending', '2025-07-18 22:12:20', '2025-12-17 19:46:17', 'dz7V5Ebm', '8457740'), + (18584, 70, 3197, 'attending', '2025-07-19 17:32:54', '2025-12-17 19:46:17', 'dz7V5Ebm', '8458825'), + (18585, 70, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dz7V5Ebm', '8459566'), + (18586, 70, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dz7V5Ebm', '8459567'), + (18587, 70, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dz7V5Ebm', '8461032'), + (18588, 70, 3205, 'maybe', '2025-07-20 23:48:22', '2025-12-17 19:46:17', 'dz7V5Ebm', '8461764'), + (18589, 70, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dz7V5Ebm', '8477877'), + (18590, 70, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dz7V5Ebm', '8485688'), + (18591, 70, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dz7V5Ebm', '8490587'), + (18592, 70, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dz7V5Ebm', '8493552'), + (18593, 70, 3237, 'maybe', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dz7V5Ebm', '8493553'), + (18594, 70, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dz7V5Ebm', '8493554'), + (18595, 70, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dz7V5Ebm', '8493555'), + (18596, 70, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dz7V5Ebm', '8493556'), + (18597, 70, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dz7V5Ebm', '8493557'), + (18598, 70, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dz7V5Ebm', '8493558'), + (18599, 70, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dz7V5Ebm', '8493559'), + (18600, 70, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dz7V5Ebm', '8493560'), + (18601, 70, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dz7V5Ebm', '8493561'), + (18602, 70, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dz7V5Ebm', '8493572'), + (18603, 70, 3257, 'maybe', '2025-08-27 23:53:23', '2025-12-17 19:46:11', 'dz7V5Ebm', '8502340'), + (18604, 70, 3258, 'maybe', '2025-09-03 22:52:25', '2025-12-17 19:46:11', 'dz7V5Ebm', '8510285'), + (18605, 70, 3274, 'maybe', '2025-09-20 21:23:38', '2025-12-17 19:46:12', 'dz7V5Ebm', '8527784'), + (18606, 70, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dz7V5Ebm', '8540725'), + (18607, 70, 3295, 'maybe', '2025-10-31 20:59:30', '2025-12-17 19:46:14', 'dz7V5Ebm', '8547541'), + (18608, 70, 3302, 'not_attending', '2025-11-06 00:51:33', '2025-12-17 19:46:14', 'dz7V5Ebm', '8550022'), + (18609, 70, 3304, 'not_attending', '2025-11-06 00:51:38', '2025-12-17 19:46:14', 'dz7V5Ebm', '8550024'), + (18610, 70, 3305, 'maybe', '2025-12-02 02:40:13', '2025-12-17 19:46:11', 'dz7V5Ebm', '8550025'), + (18611, 70, 3306, 'maybe', '2025-12-07 18:30:52', '2025-12-17 19:46:11', 'dz7V5Ebm', '8550026'), + (18612, 70, 3307, 'not_attending', '2025-12-20 21:32:38', '2025-12-20 21:32:39', NULL, NULL), + (18613, 70, 3313, 'attending', '2025-10-30 21:58:16', '2025-12-17 19:46:14', 'dz7V5Ebm', '8550896'), + (18614, 70, 3314, 'maybe', '2025-11-04 01:00:15', '2025-12-17 19:46:14', 'dz7V5Ebm', '8551821'), + (18615, 70, 3317, 'attending', '2025-11-07 00:56:02', '2025-12-17 19:46:14', 'dz7V5Ebm', '8552943'), + (18616, 70, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dz7V5Ebm', '8555421'), + (18617, 70, 3327, 'maybe', '2025-12-02 02:41:28', '2025-12-17 19:46:11', 'dz7V5Ebm', '8557174'), + (18618, 70, 3331, 'attending', '2025-12-02 02:41:33', '2025-12-17 19:46:11', 'dz7V5Ebm', '8562166'), + (18619, 70, 3335, 'maybe', '2025-12-11 22:37:30', '2025-12-17 19:46:11', 'dz7V5Ebm', '8563247'), + (18620, 70, 3336, 'maybe', '2025-12-15 01:31:17', '2025-12-17 19:46:11', 'dz7V5Ebm', '8563248'), + (18621, 70, 3337, 'maybe', '2025-12-07 18:30:28', '2025-12-17 19:46:11', 'dz7V5Ebm', '8563315'), + (18622, 70, 3346, 'maybe', '2026-01-01 21:54:32', '2026-01-01 21:54:33', NULL, NULL), + (18623, 71, 1824, 'not_attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'GmjM985d', '5774172'), + (18624, 71, 1832, 'not_attending', '2022-12-03 19:14:16', '2025-12-17 19:47:16', 'GmjM985d', '5818247'), + (18625, 71, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjM985d', '5819471'), + (18626, 71, 1836, 'attending', '2022-12-07 15:09:52', '2025-12-17 19:47:16', 'GmjM985d', '5819484'), + (18627, 71, 1837, 'attending', '2022-12-07 18:12:02', '2025-12-17 19:47:16', 'GmjM985d', '5820146'), + (18628, 71, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GmjM985d', '5827739'), + (18629, 71, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjM985d', '5844306'), + (18630, 71, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjM985d', '5850159'), + (18631, 71, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjM985d', '5858999'), + (18632, 71, 1851, 'attending', '2023-01-09 01:02:40', '2025-12-17 19:47:05', 'GmjM985d', '5869316'), + (18633, 71, 1852, 'maybe', '2023-01-11 22:06:32', '2025-12-17 19:47:05', 'GmjM985d', '5869898'), + (18634, 71, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjM985d', '5871984'), + (18635, 71, 1859, 'attending', '2023-01-18 00:07:56', '2025-12-17 19:47:05', 'GmjM985d', '5876234'), + (18636, 71, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjM985d', '5876354'), + (18637, 71, 1864, 'attending', '2023-01-19 01:03:27', '2025-12-17 19:47:05', 'GmjM985d', '5879675'), + (18638, 71, 1865, 'attending', '2023-01-24 21:06:34', '2025-12-17 19:47:06', 'GmjM985d', '5879676'), + (18639, 71, 1866, 'attending', '2023-01-22 04:54:14', '2025-12-17 19:47:05', 'GmjM985d', '5880939'), + (18640, 71, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjM985d', '5880940'), + (18641, 71, 1868, 'attending', '2023-02-21 21:48:54', '2025-12-17 19:47:07', 'GmjM985d', '5880942'), + (18642, 71, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjM985d', '5880943'), + (18643, 71, 1871, 'attending', '2023-01-19 14:46:12', '2025-12-17 19:47:05', 'GmjM985d', '5883502'), + (18644, 71, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjM985d', '5887890'), + (18645, 71, 1875, 'attending', '2023-01-24 21:06:28', '2025-12-17 19:47:06', 'GmjM985d', '5887908'), + (18646, 71, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjM985d', '5888598'), + (18647, 71, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjM985d', '5893260'), + (18648, 71, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjM985d', '5899826'), + (18649, 71, 1885, 'attending', '2023-02-22 18:40:12', '2025-12-17 19:47:08', 'GmjM985d', '5899928'), + (18650, 71, 1886, 'attending', '2023-03-06 22:45:39', '2025-12-17 19:47:09', 'GmjM985d', '5899930'), + (18651, 71, 1888, 'attending', '2023-02-16 04:30:39', '2025-12-17 19:47:07', 'GmjM985d', '5900197'), + (18652, 71, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjM985d', '5900199'), + (18653, 71, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjM985d', '5900200'), + (18654, 71, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjM985d', '5900202'), + (18655, 71, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjM985d', '5900203'), + (18656, 71, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GmjM985d', '5901108'), + (18657, 71, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjM985d', '5901126'), + (18658, 71, 1897, 'attending', '2023-02-06 22:26:22', '2025-12-17 19:47:07', 'GmjM985d', '5901128'), + (18659, 71, 1899, 'attending', '2023-02-06 22:26:28', '2025-12-17 19:47:07', 'GmjM985d', '5901323'), + (18660, 71, 1905, 'not_attending', '2023-02-04 23:04:01', '2025-12-17 19:47:06', 'GmjM985d', '5904479'), + (18661, 71, 1906, 'attending', '2023-03-10 16:00:08', '2025-12-17 19:47:09', 'GmjM985d', '5904523'), + (18662, 71, 1908, 'attending', '2023-02-16 04:35:19', '2025-12-17 19:47:07', 'GmjM985d', '5905018'), + (18663, 71, 1910, 'attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjM985d', '5909655'), + (18664, 71, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjM985d', '5910522'), + (18665, 71, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjM985d', '5910526'), + (18666, 71, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjM985d', '5910528'), + (18667, 71, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjM985d', '5916219'), + (18668, 71, 1926, 'attending', '2023-02-26 00:31:58', '2025-12-17 19:47:08', 'GmjM985d', '5932620'), + (18669, 71, 1929, 'attending', '2023-02-20 19:12:56', '2025-12-17 19:47:07', 'GmjM985d', '5932628'), + (18670, 71, 1933, 'attending', '2023-02-20 22:24:14', '2025-12-17 19:47:08', 'GmjM985d', '5936234'), + (18671, 71, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjM985d', '5958351'), + (18672, 71, 1936, 'not_attending', '2023-02-26 00:31:42', '2025-12-17 19:47:08', 'GmjM985d', '5959397'), + (18673, 71, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjM985d', '5959751'), + (18674, 71, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjM985d', '5959755'), + (18675, 71, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjM985d', '5960055'), + (18676, 71, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjM985d', '5961684'), + (18677, 71, 1942, 'attending', '2023-03-01 18:53:49', '2025-12-17 19:47:08', 'GmjM985d', '5962085'), + (18678, 71, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'GmjM985d', '5962132'), + (18679, 71, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'GmjM985d', '5962133'), + (18680, 71, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjM985d', '5962134'), + (18681, 71, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjM985d', '5962317'), + (18682, 71, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjM985d', '5962318'), + (18683, 71, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GmjM985d', '5965933'), + (18684, 71, 1952, 'attending', '2023-03-02 21:55:31', '2025-12-17 19:47:08', 'GmjM985d', '5965937'), + (18685, 71, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjM985d', '5967014'), + (18686, 71, 1955, 'attending', '2023-03-29 15:22:22', '2025-12-17 19:46:57', 'GmjM985d', '5972529'), + (18687, 71, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjM985d', '5972815'), + (18688, 71, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjM985d', '5974016'), + (18689, 71, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjM985d', '5981515'), + (18690, 71, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjM985d', '5993516'), + (18691, 71, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjM985d', '5998939'), + (18692, 71, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjM985d', '6028191'), + (18693, 71, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjM985d', '6040066'), + (18694, 71, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjM985d', '6042717'), + (18695, 71, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjM985d', '6044838'), + (18696, 71, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GmjM985d', '6044839'), + (18697, 71, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'GmjM985d', '6045684'), + (18698, 71, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjM985d', '6050104'), + (18699, 71, 2002, 'attending', '2023-04-28 21:33:31', '2025-12-17 19:47:01', 'GmjM985d', '6052605'), + (18700, 71, 2003, 'attending', '2023-05-18 22:42:48', '2025-12-17 19:47:03', 'GmjM985d', '6052606'), + (18701, 71, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjM985d', '6053195'), + (18702, 71, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjM985d', '6053198'), + (18703, 71, 2008, 'attending', '2023-04-07 20:47:31', '2025-12-17 19:46:58', 'GmjM985d', '6055808'), + (18704, 71, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjM985d', '6056085'), + (18705, 71, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjM985d', '6056916'), + (18706, 71, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjM985d', '6059290'), + (18707, 71, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjM985d', '6060328'), + (18708, 71, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjM985d', '6061037'), + (18709, 71, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjM985d', '6061039'), + (18710, 71, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjM985d', '6067245'), + (18711, 71, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjM985d', '6068094'), + (18712, 71, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjM985d', '6068252'), + (18713, 71, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjM985d', '6068253'), + (18714, 71, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjM985d', '6068254'), + (18715, 71, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'GmjM985d', '6068280'), + (18716, 71, 2032, 'attending', '2023-05-31 01:46:20', '2025-12-17 19:47:04', 'GmjM985d', '6068281'), + (18717, 71, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjM985d', '6069093'), + (18718, 71, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'GmjM985d', '6072528'), + (18719, 71, 2046, 'maybe', '2023-05-12 16:01:54', '2025-12-17 19:47:02', 'GmjM985d', '6076020'), + (18720, 71, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjM985d', '6079840'), + (18721, 71, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjM985d', '6083398'), + (18722, 71, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'GmjM985d', '6093504'), + (18723, 71, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjM985d', '6097414'), + (18724, 71, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjM985d', '6097442'), + (18725, 71, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjM985d', '6097684'), + (18726, 71, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjM985d', '6098762'), + (18727, 71, 2065, 'attending', '2023-06-16 16:07:26', '2025-12-17 19:46:49', 'GmjM985d', '6101169'), + (18728, 71, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjM985d', '6101361'), + (18729, 71, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjM985d', '6101362'), + (18730, 71, 2069, 'attending', '2023-05-18 19:21:02', '2025-12-17 19:47:03', 'GmjM985d', '6103750'), + (18731, 71, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'GmjM985d', '6103752'), + (18732, 71, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjM985d', '6107314'), + (18733, 71, 2087, 'attending', '2023-05-31 01:46:15', '2025-12-17 19:47:04', 'GmjM985d', '6120034'), + (18734, 71, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'GmjM985d', '6136733'), + (18735, 71, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjM985d', '6137989'), + (18736, 71, 2097, 'maybe', '2023-06-12 14:23:27', '2025-12-17 19:47:04', 'GmjM985d', '6139059'), + (18737, 71, 2108, 'attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjM985d', '6150864'), + (18738, 71, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjM985d', '6155491'), + (18739, 71, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjM985d', '6164417'), + (18740, 71, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjM985d', '6166388'), + (18741, 71, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjM985d', '6176439'), + (18742, 71, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'GmjM985d', '6182410'), + (18743, 71, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjM985d', '6185812'), + (18744, 71, 2132, 'attending', '2023-07-09 22:53:38', '2025-12-17 19:46:52', 'GmjM985d', '6187015'), + (18745, 71, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjM985d', '6187651'), + (18746, 71, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjM985d', '6187963'), + (18747, 71, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjM985d', '6187964'), + (18748, 71, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjM985d', '6187966'), + (18749, 71, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjM985d', '6187967'), + (18750, 71, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjM985d', '6187969'), + (18751, 71, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjM985d', '6334878'), + (18752, 71, 2149, 'attending', '2023-07-18 16:56:52', '2025-12-17 19:46:53', 'GmjM985d', '6335682'), + (18753, 71, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjM985d', '6337236'), + (18754, 71, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjM985d', '6337970'), + (18755, 71, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjM985d', '6338308'), + (18756, 71, 2159, 'attending', '2023-07-21 00:28:46', '2025-12-17 19:46:53', 'GmjM985d', '6338355'), + (18757, 71, 2160, 'attending', '2023-07-27 13:29:08', '2025-12-17 19:46:54', 'GmjM985d', '6338358'), + (18758, 71, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'GmjM985d', '6340845'), + (18759, 71, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjM985d', '6341710'), + (18760, 71, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjM985d', '6342044'), + (18761, 71, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjM985d', '6342298'), + (18762, 71, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'GmjM985d', '6343294'), + (18763, 71, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjM985d', '6347034'), + (18764, 71, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjM985d', '6347056'), + (18765, 71, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjM985d', '6353830'), + (18766, 71, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjM985d', '6353831'), + (18767, 71, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjM985d', '6357867'), + (18768, 71, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjM985d', '6358652'), + (18769, 71, 2197, 'attending', '2023-09-15 14:13:18', '2025-12-17 19:46:44', 'GmjM985d', '6359399'), + (18770, 71, 2204, 'not_attending', '2023-08-19 10:14:42', '2025-12-17 19:46:55', 'GmjM985d', '6361542'), + (18771, 71, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjM985d', '6361709'), + (18772, 71, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjM985d', '6361710'), + (18773, 71, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjM985d', '6361711'), + (18774, 71, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjM985d', '6361712'), + (18775, 71, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjM985d', '6361713'), + (18776, 71, 2219, 'not_attending', '2023-08-28 08:04:59', '2025-12-17 19:46:55', 'GmjM985d', '6367309'), + (18777, 71, 2235, 'attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GmjM985d', '6382573'), + (18778, 71, 2236, 'attending', '2023-08-31 19:15:40', '2025-12-17 19:46:55', 'GmjM985d', '6382618'), + (18779, 71, 2239, 'attending', '2023-08-31 20:47:01', '2025-12-17 19:46:56', 'GmjM985d', '6387592'), + (18780, 71, 2240, 'attending', '2023-09-09 17:39:38', '2025-12-17 19:46:56', 'GmjM985d', '6388603'), + (18781, 71, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GmjM985d', '6388604'), + (18782, 71, 2243, 'maybe', '2023-09-07 19:40:50', '2025-12-17 19:46:56', 'GmjM985d', '6393686'), + (18783, 71, 2247, 'attending', '2023-09-06 19:56:44', '2025-12-17 19:46:56', 'GmjM985d', '6394628'), + (18784, 71, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GmjM985d', '6394629'), + (18785, 71, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjM985d', '6394631'), + (18786, 71, 2262, 'attending', '2023-10-01 22:16:29', '2025-12-17 19:46:45', 'GmjM985d', '6427423'), + (18787, 71, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjM985d', '6440863'), + (18788, 71, 2269, 'attending', '2023-10-05 21:25:03', '2025-12-17 19:46:45', 'GmjM985d', '6442978'), + (18789, 71, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjM985d', '6445440'), + (18790, 71, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjM985d', '6453951'), + (18791, 71, 2279, 'not_attending', '2023-10-11 15:13:39', '2025-12-17 19:46:46', 'GmjM985d', '6455460'), + (18792, 71, 2285, 'attending', '2023-10-27 01:45:31', '2025-12-17 19:46:47', 'GmjM985d', '6460929'), + (18793, 71, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjM985d', '6461696'), + (18794, 71, 2289, 'attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjM985d', '6462129'), + (18795, 71, 2290, 'attending', '2023-10-18 14:36:30', '2025-12-17 19:46:46', 'GmjM985d', '6462214'), + (18796, 71, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjM985d', '6463218'), + (18797, 71, 2296, 'attending', '2023-10-26 12:10:38', '2025-12-17 19:46:47', 'GmjM985d', '6468393'), + (18798, 71, 2299, 'maybe', '2023-10-19 02:03:53', '2025-12-17 19:46:46', 'GmjM985d', '6472181'), + (18799, 71, 2302, 'attending', '2023-10-22 19:29:40', '2025-12-17 19:46:46', 'GmjM985d', '6482535'), + (18800, 71, 2303, 'attending', '2023-10-27 19:12:35', '2025-12-17 19:46:47', 'GmjM985d', '6482691'), + (18801, 71, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjM985d', '6482693'), + (18802, 71, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'GmjM985d', '6484200'), + (18803, 71, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'GmjM985d', '6484680'), + (18804, 71, 2310, 'attending', '2023-11-11 19:42:06', '2025-12-17 19:46:47', 'GmjM985d', '6487709'), + (18805, 71, 2315, 'attending', '2023-11-06 21:41:38', '2025-12-17 19:46:47', 'GmjM985d', '6493666'), + (18806, 71, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjM985d', '6507741'), + (18807, 71, 2322, 'attending', '2023-11-17 23:31:40', '2025-12-17 19:46:48', 'GmjM985d', '6514659'), + (18808, 71, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GmjM985d', '6514660'), + (18809, 71, 2325, 'maybe', '2023-12-16 04:55:32', '2025-12-17 19:46:36', 'GmjM985d', '6514663'), + (18810, 71, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjM985d', '6519103'), + (18811, 71, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjM985d', '6535681'), + (18812, 71, 2345, 'attending', '2023-11-29 20:57:49', '2025-12-17 19:46:48', 'GmjM985d', '6582414'), + (18813, 71, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjM985d', '6584747'), + (18814, 71, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjM985d', '6587097'), + (18815, 71, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjM985d', '6609022'), + (18816, 71, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GmjM985d', '6632757'), + (18817, 71, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjM985d', '6644187'), + (18818, 71, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjM985d', '6648951'), + (18819, 71, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GmjM985d', '6648952'), + (18820, 71, 2388, 'attending', '2024-01-06 13:25:04', '2025-12-17 19:46:37', 'GmjM985d', '6649244'), + (18821, 71, 2391, 'attending', '2024-01-12 04:30:07', '2025-12-17 19:46:37', 'GmjM985d', '6654138'), + (18822, 71, 2392, 'attending', '2024-01-12 00:46:41', '2025-12-17 19:46:37', 'GmjM985d', '6654412'), + (18823, 71, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjM985d', '6655401'), + (18824, 71, 2399, 'not_attending', '2024-01-13 21:55:46', '2025-12-17 19:46:38', 'GmjM985d', '6657583'), + (18825, 71, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjM985d', '6661585'), + (18826, 71, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjM985d', '6661588'), + (18827, 71, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjM985d', '6661589'), + (18828, 71, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjM985d', '6699906'), + (18829, 71, 2409, 'attending', '2024-02-03 23:00:52', '2025-12-17 19:46:41', 'GmjM985d', '6699909'), + (18830, 71, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GmjM985d', '6699913'), + (18831, 71, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjM985d', '6701109'), + (18832, 71, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjM985d', '6705219'), + (18833, 71, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjM985d', '6710153'), + (18834, 71, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjM985d', '6711552'), + (18835, 71, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'GmjM985d', '6711553'), + (18836, 71, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjM985d', '6722688'), + (18837, 71, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjM985d', '6730620'), + (18838, 71, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'GmjM985d', '6730642'), + (18839, 71, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjM985d', '6740364'), + (18840, 71, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjM985d', '6743829'), + (18841, 71, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjM985d', '7030380'), + (18842, 71, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GmjM985d', '7033677'), + (18843, 71, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'GmjM985d', '7035415'), + (18844, 71, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjM985d', '7044715'), + (18845, 71, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjM985d', '7050318'), + (18846, 71, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjM985d', '7050319'), + (18847, 71, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjM985d', '7050322'), + (18848, 71, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjM985d', '7057804'), + (18849, 71, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'GmjM985d', '7059866'), + (18850, 71, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjM985d', '7072824'), + (18851, 71, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjM985d', '7074348'), + (18852, 71, 2516, 'maybe', '2024-05-02 18:44:20', '2025-12-17 19:46:35', 'GmjM985d', '7074356'), + (18853, 71, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GmjM985d', '7074364'), + (18854, 71, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'GmjM985d', '7089267'), + (18855, 71, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjM985d', '7098747'), + (18856, 71, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GmjM985d', '7113468'), + (18857, 71, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjM985d', '7114856'), + (18858, 71, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjM985d', '7114951'), + (18859, 71, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjM985d', '7114955'), + (18860, 71, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjM985d', '7114956'), + (18861, 71, 2558, 'not_attending', '2024-05-02 18:47:36', '2025-12-17 19:46:35', 'GmjM985d', '7114957'), + (18862, 71, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'GmjM985d', '7153615'), + (18863, 71, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjM985d', '7159484'), + (18864, 71, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjM985d', '7178446'), + (18865, 71, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'GmjM985d', '7220467'), + (18866, 71, 2605, 'attending', '2024-05-02 18:44:34', '2025-12-17 19:46:35', 'GmjM985d', '7229243'), + (18867, 71, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjM985d', '7240354'), + (18868, 71, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjM985d', '7251633'), + (18869, 71, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'GmjM985d', '7263048'), + (18870, 71, 2626, 'attending', '2024-05-18 21:44:07', '2025-12-17 19:46:35', 'GmjM985d', '7264723'), + (18871, 71, 2629, 'attending', '2024-06-08 18:38:51', '2025-12-17 19:46:28', 'GmjM985d', '7264726'), + (18872, 71, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'GmjM985d', '7302674'), + (18873, 71, 2678, 'not_attending', '2024-06-15 18:55:33', '2025-12-17 19:46:28', 'GmjM985d', '7319489'), + (18874, 71, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjM985d', '7324073'), + (18875, 71, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjM985d', '7324074'), + (18876, 71, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GmjM985d', '7324075'), + (18877, 71, 2691, 'attending', '2024-07-20 20:02:23', '2025-12-17 19:46:30', 'GmjM985d', '7324076'), + (18878, 71, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GmjM985d', '7324078'), + (18879, 71, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GmjM985d', '7324082'), + (18880, 71, 2699, 'attending', '2024-06-12 22:34:16', '2025-12-17 19:46:28', 'GmjM985d', '7324385'), + (18881, 71, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GmjM985d', '7331457'), + (18882, 71, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'GmjM985d', '7356752'), + (18883, 71, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'GmjM985d', '7363643'), + (18884, 71, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GmjM985d', '7368606'), + (18885, 71, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GmjM985d', '7397462'), + (18886, 71, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GmjM985d', '7424275'), + (18887, 71, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'GmjM985d', '7424276'), + (18888, 71, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GmjM985d', '7432751'), + (18889, 71, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GmjM985d', '7432752'), + (18890, 71, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GmjM985d', '7432753'), + (18891, 71, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GmjM985d', '7432754'), + (18892, 71, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GmjM985d', '7432755'), + (18893, 71, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GmjM985d', '7432756'), + (18894, 71, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GmjM985d', '7432758'), + (18895, 71, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GmjM985d', '7432759'), + (18896, 71, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GmjM985d', '7433834'), + (18897, 71, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GmjM985d', '7470197'), + (18898, 71, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GmjM985d', '7685613'), + (18899, 71, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GmjM985d', '7688194'), + (18900, 71, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GmjM985d', '7688196'), + (18901, 71, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GmjM985d', '7688289'), + (18902, 71, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GmjM985d', '7692763'), + (18903, 71, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GmjM985d', '7697552'), + (18904, 71, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GmjM985d', '7699878'), + (18905, 71, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GmjM985d', '7704043'), + (18906, 71, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GmjM985d', '7712467'), + (18907, 71, 2925, 'attending', '2024-12-13 19:08:50', '2025-12-17 19:46:21', 'GmjM985d', '7713584'), + (18908, 71, 2926, 'attending', '2024-12-06 00:44:47', '2025-12-17 19:46:21', 'GmjM985d', '7713585'), + (18909, 71, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GmjM985d', '7713586'), + (18910, 71, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GmjM985d', '7738518'), + (18911, 71, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GmjM985d', '7750636'), + (18912, 71, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GmjM985d', '7796540'), + (18913, 71, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GmjM985d', '7796541'), + (18914, 71, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GmjM985d', '7796542'), + (18915, 71, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GmjM985d', '7825913'), + (18916, 71, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GmjM985d', '7826209'), + (18917, 71, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GmjM985d', '7834742'), + (18918, 71, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'GmjM985d', '7842108'), + (18919, 71, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GmjM985d', '7842902'), + (18920, 71, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GmjM985d', '7842903'), + (18921, 71, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GmjM985d', '7842904'), + (18922, 71, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GmjM985d', '7842905'), + (18923, 71, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GmjM985d', '7855719'), + (18924, 71, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GmjM985d', '7860683'), + (18925, 71, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GmjM985d', '7860684'), + (18926, 71, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GmjM985d', '7866095'), + (18927, 71, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GmjM985d', '7869170'), + (18928, 71, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GmjM985d', '7869188'), + (18929, 71, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GmjM985d', '7869201'), + (18930, 71, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GmjM985d', '7877465'), + (18931, 71, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'GmjM985d', '7878570'), + (18932, 71, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GmjM985d', '7888250'), + (18933, 71, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GmjM985d', '7904777'), + (18934, 71, 3094, 'attending', '2025-05-10 20:01:56', '2025-12-17 19:46:21', 'GmjM985d', '8342292'), + (18935, 71, 3095, 'attending', '2025-05-02 19:55:09', '2025-12-17 19:46:20', 'GmjM985d', '8342293'), + (18936, 71, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GmjM985d', '8349164'), + (18937, 71, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GmjM985d', '8349545'), + (18938, 71, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'GmjM985d', '8353584'), + (18939, 71, 3126, 'attending', '2025-05-13 19:53:53', '2025-12-17 19:46:21', 'GmjM985d', '8365614'), + (18940, 71, 3131, 'attending', '2025-05-14 20:52:47', '2025-12-17 19:46:21', 'GmjM985d', '8368028'), + (18941, 71, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GmjM985d', '8368029'), + (18942, 71, 3133, 'attending', '2025-05-31 18:17:36', '2025-12-17 19:46:14', 'GmjM985d', '8368030'), + (18943, 71, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GmjM985d', '8388462'), + (18944, 71, 3150, 'attending', '2025-06-21 17:29:28', '2025-12-17 19:46:15', 'GmjM985d', '8393174'), + (18945, 71, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GmjM985d', '8400273'), + (18946, 71, 3154, 'attending', '2025-06-27 23:10:32', '2025-12-17 19:46:15', 'GmjM985d', '8400274'), + (18947, 71, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GmjM985d', '8400275'), + (18948, 71, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'GmjM985d', '8400276'), + (18949, 71, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GmjM985d', '8404977'), + (18950, 71, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GmjM985d', '8430783'), + (18951, 71, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GmjM985d', '8430784'), + (18952, 71, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GmjM985d', '8430799'), + (18953, 71, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GmjM985d', '8430800'), + (18954, 71, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GmjM985d', '8430801'), + (18955, 71, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GmjM985d', '8438709'), + (18956, 71, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GmjM985d', '8457738'), + (18957, 71, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GmjM985d', '8459566'), + (18958, 71, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GmjM985d', '8459567'), + (18959, 71, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GmjM985d', '8461032'), + (18960, 71, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GmjM985d', '8477877'), + (18961, 71, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:17', 'GmjM985d', '8485688'), + (18962, 71, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GmjM985d', '8490587'), + (18963, 71, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GmjM985d', '8493552'), + (18964, 71, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GmjM985d', '8493553'), + (18965, 71, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GmjM985d', '8493554'), + (18966, 71, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GmjM985d', '8493555'), + (18967, 71, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GmjM985d', '8493556'), + (18968, 71, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GmjM985d', '8493557'), + (18969, 71, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GmjM985d', '8493558'), + (18970, 71, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GmjM985d', '8493559'), + (18971, 71, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GmjM985d', '8493560'), + (18972, 71, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GmjM985d', '8493561'), + (18973, 71, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GmjM985d', '8493572'), + (18974, 71, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GmjM985d', '8540725'), + (18975, 71, 3300, 'attending', '2025-11-07 21:53:21', '2025-12-17 19:46:14', 'GmjM985d', '8549145'), + (18976, 71, 3302, 'attending', '2025-11-15 20:29:36', '2025-12-17 19:46:14', 'GmjM985d', '8550022'), + (18977, 71, 3304, 'attending', '2025-11-22 21:19:59', '2025-12-17 19:46:14', 'GmjM985d', '8550024'), + (18978, 71, 3306, 'not_attending', '2025-12-09 18:20:15', '2025-12-17 19:46:11', 'GmjM985d', '8550026'), + (18979, 71, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GmjM985d', '8555421'), + (18980, 71, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', 'GmjM985d', '8555522'), + (18981, 72, 3300, 'attending', '2025-11-09 00:32:13', '2025-12-17 19:46:14', 'd5b07J1m', '8549145'), + (18982, 72, 3302, 'attending', '2025-11-14 12:59:45', '2025-12-17 19:46:14', 'd5b07J1m', '8550022'), + (18983, 72, 3308, 'attending', '2025-11-11 05:28:00', '2025-12-17 19:46:14', 'd5b07J1m', '8550408'), + (18984, 72, 3309, 'attending', '2025-11-17 00:57:21', '2025-12-17 19:46:14', 'd5b07J1m', '8550409'), + (18985, 72, 3316, 'attending', '2025-11-05 04:37:28', '2025-12-17 19:46:14', 'd5b07J1m', '8552493'), + (18986, 72, 3319, 'attending', '2025-11-14 01:06:59', '2025-12-17 19:46:14', 'd5b07J1m', '8553114'), + (18987, 72, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd5b07J1m', '8555421'), + (18988, 72, 3326, 'attending', '2025-11-20 00:28:50', '2025-12-17 19:46:14', 'd5b07J1m', '8556661'), + (18989, 73, 3015, 'attending', '2025-04-23 01:08:50', '2025-12-17 19:46:20', '841PEgPA', '7869186'), + (18990, 73, 3016, 'attending', '2025-04-19 02:01:28', '2025-12-17 19:46:20', '841PEgPA', '7869187'), + (18991, 73, 3088, 'attending', '2025-06-09 21:29:03', '2025-12-17 19:46:15', '841PEgPA', '7904777'), + (18992, 73, 3094, 'attending', '2025-05-10 21:34:01', '2025-12-17 19:46:21', '841PEgPA', '8342292'), + (18993, 73, 3095, 'attending', '2025-04-28 01:40:56', '2025-12-17 19:46:20', '841PEgPA', '8342293'), + (18994, 73, 3108, 'attending', '2025-05-01 01:58:39', '2025-12-17 19:46:20', '841PEgPA', '8351411'), + (18995, 73, 3112, 'maybe', '2025-05-07 20:56:27', '2025-12-17 19:46:21', '841PEgPA', '8353584'), + (18996, 73, 3113, 'attending', '2025-05-01 21:18:44', '2025-12-17 19:46:20', '841PEgPA', '8355089'), + (18997, 73, 3119, 'attending', '2025-05-13 19:32:52', '2025-12-17 19:46:21', '841PEgPA', '8360035'), + (18998, 73, 3126, 'attending', '2025-05-14 02:50:24', '2025-12-17 19:46:21', '841PEgPA', '8365614'), + (18999, 73, 3128, 'maybe', '2025-05-13 16:42:12', '2025-12-17 19:46:21', '841PEgPA', '8366077'), + (19000, 73, 3131, 'attending', '2025-05-15 04:11:14', '2025-12-17 19:46:21', '841PEgPA', '8368028'), + (19001, 73, 3132, 'attending', '2025-05-23 19:27:25', '2025-12-17 19:46:21', '841PEgPA', '8368029'), + (19002, 73, 3134, 'attending', '2025-05-15 04:11:03', '2025-12-17 19:46:21', '841PEgPA', '8368031'), + (19003, 73, 3136, 'attending', '2025-05-21 19:54:41', '2025-12-17 19:46:21', '841PEgPA', '8374152'), + (19004, 73, 3137, 'attending', '2025-05-21 19:54:32', '2025-12-17 19:46:21', '841PEgPA', '8374153'), + (19005, 73, 3139, 'attending', '2025-05-23 19:27:20', '2025-12-17 19:46:21', '841PEgPA', '8377425'), + (19006, 73, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '841PEgPA', '8388462'), + (19007, 73, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '841PEgPA', '8400273'), + (19008, 73, 3154, 'not_attending', '2025-06-17 04:55:06', '2025-12-17 19:46:15', '841PEgPA', '8400274'), + (19009, 73, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '841PEgPA', '8400275'), + (19010, 73, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '841PEgPA', '8400276'), + (19011, 73, 3159, 'maybe', '2025-06-09 21:29:57', '2025-12-17 19:46:15', '841PEgPA', '8401410'), + (19012, 73, 3169, 'attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '841PEgPA', '8404977'), + (19013, 73, 3172, 'not_attending', '2025-06-17 05:09:39', '2025-12-17 19:46:15', '841PEgPA', '8410181'), + (19014, 73, 3173, 'attending', '2025-06-14 20:27:43', '2025-12-17 19:46:15', '841PEgPA', '8410806'), + (19015, 73, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '841PEgPA', '8430783'), + (19016, 73, 3182, 'attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '841PEgPA', '8430784'), + (19017, 73, 3183, 'attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '841PEgPA', '8430799'), + (19018, 73, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '841PEgPA', '8430800'), + (19019, 73, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '841PEgPA', '8430801'), + (19020, 73, 3186, 'attending', '2025-07-03 21:00:22', '2025-12-17 19:46:16', '841PEgPA', '8431527'), + (19021, 73, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '841PEgPA', '8438709'), + (19022, 73, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '841PEgPA', '8457738'), + (19023, 73, 3194, 'not_attending', '2025-07-17 22:37:32', '2025-12-17 19:46:17', '841PEgPA', '8457740'), + (19024, 73, 3196, 'attending', '2025-08-13 20:13:07', '2025-12-17 19:46:17', '841PEgPA', '8458543'), + (19025, 73, 3198, 'maybe', '2025-08-18 16:03:11', '2025-12-17 19:46:18', '841PEgPA', '8459268'), + (19026, 73, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '841PEgPA', '8459566'), + (19027, 73, 3201, 'maybe', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '841PEgPA', '8459567'), + (19028, 73, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '841PEgPA', '8461032'), + (19029, 73, 3208, 'attending', '2025-07-31 17:33:12', '2025-12-17 19:46:17', '841PEgPA', '8467717'), + (19030, 73, 3214, 'maybe', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '841PEgPA', '8477877'), + (19031, 73, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '841PEgPA', '8485688'), + (19032, 73, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '841PEgPA', '8490587'), + (19033, 73, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '841PEgPA', '8493552'), + (19034, 73, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '841PEgPA', '8493553'), + (19035, 73, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '841PEgPA', '8493554'), + (19036, 73, 3239, 'attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '841PEgPA', '8493555'), + (19037, 73, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '841PEgPA', '8493556'), + (19038, 73, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '841PEgPA', '8493557'), + (19039, 73, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '841PEgPA', '8493558'), + (19040, 73, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '841PEgPA', '8493559'), + (19041, 73, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '841PEgPA', '8493560'), + (19042, 73, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '841PEgPA', '8493561'), + (19043, 73, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '841PEgPA', '8493572'), + (19044, 73, 3255, 'maybe', '2025-08-26 11:40:57', '2025-12-17 19:46:18', '841PEgPA', '8495106'), + (19045, 73, 3256, 'maybe', '2025-08-27 17:49:41', '2025-12-17 19:46:11', '841PEgPA', '8501354'), + (19046, 73, 3258, 'attending', '2025-09-03 18:34:13', '2025-12-17 19:46:11', '841PEgPA', '8510285'), + (19047, 73, 3259, 'maybe', '2025-09-08 03:11:49', '2025-12-17 19:46:12', '841PEgPA', '8512638'), + (19048, 73, 3260, 'attending', '2025-09-08 03:11:33', '2025-12-17 19:46:12', '841PEgPA', '8512640'), + (19049, 73, 3261, 'attending', '2025-09-16 22:16:29', '2025-12-17 19:46:12', '841PEgPA', '8512641'), + (19050, 73, 3262, 'maybe', '2025-09-18 19:44:16', '2025-12-17 19:46:12', '841PEgPA', '8512642'), + (19051, 73, 3263, 'attending', '2025-09-10 16:00:30', '2025-12-17 19:46:12', '841PEgPA', '8514576'), + (19052, 73, 3265, 'attending', '2025-09-24 20:34:59', '2025-12-17 19:46:12', '841PEgPA', '8514578'), + (19053, 73, 3266, 'attending', '2025-09-30 00:12:54', '2025-12-17 19:46:13', '841PEgPA', '8514579'), + (19054, 73, 3268, 'maybe', '2025-09-18 22:25:17', '2025-12-17 19:46:12', '841PEgPA', '8514581'), + (19055, 73, 3271, 'maybe', '2025-09-22 19:46:43', '2025-12-17 19:46:12', '841PEgPA', '8521430'), + (19056, 73, 3279, 'attending', '2025-10-01 23:38:14', '2025-12-17 19:46:13', '841PEgPA', '8535685'), + (19057, 73, 3282, 'attending', '2025-10-06 18:58:22', '2025-12-17 19:46:13', '841PEgPA', '8537571'), + (19058, 73, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '841PEgPA', '8540725'), + (19059, 73, 3289, 'attending', '2025-10-20 19:06:24', '2025-12-17 19:46:14', '841PEgPA', '8542939'), + (19060, 73, 3292, 'attending', '2025-10-21 21:38:29', '2025-12-17 19:46:14', '841PEgPA', '8543835'), + (19061, 73, 3295, 'maybe', '2025-10-29 03:15:31', '2025-12-17 19:46:14', '841PEgPA', '8547541'), + (19062, 73, 3300, 'not_attending', '2025-11-05 05:29:38', '2025-12-17 19:46:14', '841PEgPA', '8549145'), + (19063, 73, 3305, 'attending', '2025-12-01 04:45:59', '2025-12-17 19:46:11', '841PEgPA', '8550025'), + (19064, 73, 3306, 'attending', '2025-12-10 22:59:29', '2025-12-17 19:46:11', '841PEgPA', '8550026'), + (19065, 73, 3307, 'attending', '2025-12-15 09:33:46', '2025-12-20 02:13:20', '841PEgPA', '8550027'), + (19066, 73, 3308, 'maybe', '2025-11-10 22:38:09', '2025-12-17 19:46:14', '841PEgPA', '8550408'), + (19067, 73, 3309, 'attending', '2025-11-17 00:11:58', '2025-12-17 19:46:14', '841PEgPA', '8550409'), + (19068, 73, 3310, 'attending', '2025-12-01 04:45:31', '2025-12-17 19:46:11', '841PEgPA', '8550410'), + (19069, 73, 3311, 'attending', '2025-12-08 04:50:27', '2025-12-17 19:46:11', '841PEgPA', '8550412'), + (19070, 73, 3313, 'attending', '2025-11-05 23:56:51', '2025-12-17 19:46:14', '841PEgPA', '8550896'), + (19071, 73, 3317, 'maybe', '2025-11-10 22:38:14', '2025-12-17 19:46:14', '841PEgPA', '8552943'), + (19072, 73, 3319, 'attending', '2025-11-08 01:20:04', '2025-12-17 19:46:14', '841PEgPA', '8553114'), + (19073, 73, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '841PEgPA', '8555421'), + (19074, 73, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', '841PEgPA', '8555522'), + (19075, 73, 3327, 'attending', '2025-12-04 20:57:38', '2025-12-17 19:46:11', '841PEgPA', '8557174'), + (19076, 73, 3334, 'attending', '2025-12-08 18:12:46', '2025-12-17 19:46:11', '841PEgPA', '8563246'), + (19077, 73, 3335, 'attending', '2025-12-11 22:25:11', '2025-12-17 19:46:11', '841PEgPA', '8563247'), + (19078, 73, 3336, 'attending', '2025-12-15 22:42:16', '2025-12-17 19:46:11', '841PEgPA', '8563248'), + (19079, 73, 3346, 'attending', '2026-01-02 04:08:30', '2026-01-02 04:08:30', NULL, NULL), + (19080, 74, 646, 'attending', '2021-05-12 20:55:10', '2025-12-17 19:47:46', 'amG6Ynrd', '3539921'), + (19081, 74, 647, 'attending', '2021-05-17 20:53:45', '2025-12-17 19:47:46', 'amG6Ynrd', '3539922'), + (19082, 74, 648, 'attending', '2021-05-24 22:45:28', '2025-12-17 19:47:47', 'amG6Ynrd', '3539923'), + (19083, 74, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amG6Ynrd', '3974109'), + (19084, 74, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amG6Ynrd', '3975311'), + (19085, 74, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amG6Ynrd', '3975312'), + (19086, 74, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amG6Ynrd', '3994992'), + (19087, 74, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amG6Ynrd', '4014338'), + (19088, 74, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amG6Ynrd', '4021848'), + (19089, 74, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amG6Ynrd', '4136744'), + (19090, 74, 870, 'attending', '2021-06-29 22:35:06', '2025-12-17 19:47:38', 'amG6Ynrd', '4136937'), + (19091, 74, 871, 'attending', '2021-07-06 19:21:23', '2025-12-17 19:47:39', 'amG6Ynrd', '4136938'), + (19092, 74, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amG6Ynrd', '4136947'), + (19093, 74, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amG6Ynrd', '4210314'), + (19094, 74, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amG6Ynrd', '4225444'), + (19095, 74, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amG6Ynrd', '4239259'), + (19096, 74, 900, 'attending', '2021-07-18 20:15:30', '2025-12-17 19:47:40', 'amG6Ynrd', '4240316'), + (19097, 74, 901, 'attending', '2021-07-31 17:55:35', '2025-12-17 19:47:40', 'amG6Ynrd', '4240317'), + (19098, 74, 902, 'attending', '2021-08-04 21:43:39', '2025-12-17 19:47:41', 'amG6Ynrd', '4240318'), + (19099, 74, 903, 'not_attending', '2021-08-13 16:21:28', '2025-12-17 19:47:42', 'amG6Ynrd', '4240320'), + (19100, 74, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amG6Ynrd', '4250163'), + (19101, 74, 919, 'attending', '2021-07-17 23:16:00', '2025-12-17 19:47:39', 'amG6Ynrd', '4275957'), + (19102, 74, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amG6Ynrd', '4277819'), + (19103, 74, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amG6Ynrd', '4301723'), + (19104, 74, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'amG6Ynrd', '4302093'), + (19105, 74, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amG6Ynrd', '4304151'), + (19106, 74, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'amG6Ynrd', '4345519'), + (19107, 74, 971, 'not_attending', '2021-09-08 22:58:52', '2025-12-17 19:47:43', 'amG6Ynrd', '4356801'), + (19108, 74, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'amG6Ynrd', '4358025'), + (19109, 74, 973, 'attending', '2021-08-21 15:29:52', '2025-12-17 19:47:42', 'amG6Ynrd', '4366186'), + (19110, 74, 974, 'attending', '2021-08-28 14:59:15', '2025-12-17 19:47:42', 'amG6Ynrd', '4366187'), + (19111, 74, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'amG6Ynrd', '4402823'), + (19112, 74, 990, 'not_attending', '2021-08-29 14:05:19', '2025-12-17 19:47:43', 'amG6Ynrd', '4420735'), + (19113, 74, 991, 'attending', '2021-08-29 14:05:58', '2025-12-17 19:47:43', 'amG6Ynrd', '4420738'), + (19114, 74, 992, 'attending', '2021-09-18 22:16:58', '2025-12-17 19:47:33', 'amG6Ynrd', '4420739'), + (19115, 74, 993, 'attending', '2021-09-25 21:11:56', '2025-12-17 19:47:34', 'amG6Ynrd', '4420741'), + (19116, 74, 994, 'not_attending', '2021-10-02 01:35:02', '2025-12-17 19:47:34', 'amG6Ynrd', '4420742'), + (19117, 74, 995, 'not_attending', '2021-10-06 22:20:01', '2025-12-17 19:47:34', 'amG6Ynrd', '4420744'), + (19118, 74, 996, 'maybe', '2021-10-16 22:10:34', '2025-12-17 19:47:35', 'amG6Ynrd', '4420747'), + (19119, 74, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'amG6Ynrd', '4420748'), + (19120, 74, 998, 'maybe', '2021-10-30 22:13:01', '2025-12-17 19:47:36', 'amG6Ynrd', '4420749'), + (19121, 74, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'amG6Ynrd', '4461883'), + (19122, 74, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'amG6Ynrd', '4508342'), + (19123, 74, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'amG6Ynrd', '4568602'), + (19124, 74, 1087, 'maybe', '2021-10-15 18:11:45', '2025-12-17 19:47:35', 'amG6Ynrd', '4572153'), + (19125, 74, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'amG6Ynrd', '4585962'), + (19126, 74, 1094, 'attending', '2021-10-31 22:32:28', '2025-12-17 19:47:36', 'amG6Ynrd', '4587337'), + (19127, 74, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'amG6Ynrd', '4596356'), + (19128, 74, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'amG6Ynrd', '4598860'), + (19129, 74, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'amG6Ynrd', '4598861'), + (19130, 74, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'amG6Ynrd', '4602797'), + (19131, 74, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'amG6Ynrd', '4637896'), + (19132, 74, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'amG6Ynrd', '4642994'), + (19133, 74, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'amG6Ynrd', '4642995'), + (19134, 74, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'amG6Ynrd', '4642996'), + (19135, 74, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'amG6Ynrd', '4642997'), + (19136, 74, 1126, 'attending', '2021-12-11 18:46:37', '2025-12-17 19:47:38', 'amG6Ynrd', '4645687'), + (19137, 74, 1127, 'attending', '2021-12-12 20:52:27', '2025-12-17 19:47:38', 'amG6Ynrd', '4645698'), + (19138, 74, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'amG6Ynrd', '4645704'), + (19139, 74, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'amG6Ynrd', '4645705'), + (19140, 74, 1130, 'attending', '2021-12-04 22:58:27', '2025-12-17 19:47:37', 'amG6Ynrd', '4658824'), + (19141, 74, 1131, 'not_attending', '2021-12-19 00:33:23', '2025-12-17 19:47:31', 'amG6Ynrd', '4658825'), + (19142, 74, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'amG6Ynrd', '4668385'), + (19143, 74, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amG6Ynrd', '4694407'), + (19144, 74, 1173, 'attending', '2022-01-08 14:28:14', '2025-12-17 19:47:31', 'amG6Ynrd', '4736495'), + (19145, 74, 1174, 'attending', '2022-01-16 00:21:27', '2025-12-17 19:47:31', 'amG6Ynrd', '4736496'), + (19146, 74, 1175, 'attending', '2022-01-21 19:51:53', '2025-12-17 19:47:32', 'amG6Ynrd', '4736497'), + (19147, 74, 1176, 'attending', '2022-02-06 00:02:32', '2025-12-17 19:47:32', 'amG6Ynrd', '4736498'), + (19148, 74, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amG6Ynrd', '4736499'), + (19149, 74, 1178, 'maybe', '2022-01-29 04:59:54', '2025-12-17 19:47:32', 'amG6Ynrd', '4736500'), + (19150, 74, 1181, 'attending', '2022-03-05 12:30:57', '2025-12-17 19:47:33', 'amG6Ynrd', '4736503'), + (19151, 74, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amG6Ynrd', '4736504'), + (19152, 74, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'amG6Ynrd', '4746789'), + (19153, 74, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amG6Ynrd', '4753929'), + (19154, 74, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amG6Ynrd', '5038850'), + (19155, 74, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amG6Ynrd', '5045826'), + (19156, 74, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amG6Ynrd', '5132533'), + (19157, 74, 1272, 'maybe', '2022-03-18 19:52:05', '2025-12-17 19:47:25', 'amG6Ynrd', '5186582'), + (19158, 74, 1273, 'maybe', '2022-03-20 10:01:16', '2025-12-17 19:47:25', 'amG6Ynrd', '5186583'), + (19159, 74, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amG6Ynrd', '5186585'), + (19160, 74, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amG6Ynrd', '5190437'), + (19161, 74, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'amG6Ynrd', '5195095'), + (19162, 74, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'amG6Ynrd', '5215989'), + (19163, 74, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'amG6Ynrd', '5223686'), + (19164, 74, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'amG6Ynrd', '5227432'), + (19165, 74, 1336, 'maybe', '2022-04-19 16:33:19', '2025-12-17 19:47:27', 'amG6Ynrd', '5244915'), + (19166, 74, 1346, 'maybe', '2022-04-20 00:05:45', '2025-12-17 19:47:27', 'amG6Ynrd', '5247467'), + (19167, 74, 1362, 'attending', '2022-04-29 17:28:49', '2025-12-17 19:47:28', 'amG6Ynrd', '5260800'), + (19168, 74, 1374, 'not_attending', '2022-05-07 21:46:13', '2025-12-17 19:47:28', 'amG6Ynrd', '5269930'), + (19169, 74, 1378, 'not_attending', '2022-05-14 15:03:35', '2025-12-17 19:47:29', 'amG6Ynrd', '5271448'), + (19170, 74, 1379, 'not_attending', '2022-05-21 23:01:38', '2025-12-17 19:47:30', 'amG6Ynrd', '5271449'), + (19171, 74, 1383, 'maybe', '2022-05-04 01:02:55', '2025-12-17 19:47:28', 'amG6Ynrd', '5276469'), + (19172, 74, 1384, 'not_attending', '2022-05-07 21:46:17', '2025-12-17 19:47:28', 'amG6Ynrd', '5277078'), + (19173, 74, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'amG6Ynrd', '5278159'), + (19174, 74, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'amG6Ynrd', '5363695'), + (19175, 74, 1408, 'not_attending', '2022-05-20 21:57:31', '2025-12-17 19:47:29', 'amG6Ynrd', '5365960'), + (19176, 74, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'amG6Ynrd', '5368973'), + (19177, 74, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'amG6Ynrd', '5378247'), + (19178, 74, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'amG6Ynrd', '5389605'), + (19179, 74, 1442, 'attending', '2022-06-18 12:02:49', '2025-12-17 19:47:17', 'amG6Ynrd', '5397265'), + (19180, 74, 1451, 'not_attending', '2022-06-17 16:03:24', '2025-12-17 19:47:17', 'amG6Ynrd', '5403967'), + (19181, 74, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'amG6Ynrd', '5404786'), + (19182, 74, 1462, 'not_attending', '2022-06-17 16:03:27', '2025-12-17 19:47:17', 'amG6Ynrd', '5405203'), + (19183, 74, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'amG6Ynrd', '5411699'), + (19184, 74, 1482, 'not_attending', '2022-06-25 15:30:57', '2025-12-17 19:47:19', 'amG6Ynrd', '5412550'), + (19185, 74, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'amG6Ynrd', '5415046'), + (19186, 74, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'amG6Ynrd', '5422086'), + (19187, 74, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'amG6Ynrd', '5422406'), + (19188, 74, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'amG6Ynrd', '5424565'), + (19189, 74, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'amG6Ynrd', '5426882'), + (19190, 74, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'amG6Ynrd', '5427083'), + (19191, 74, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'amG6Ynrd', '5441125'), + (19192, 74, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'amG6Ynrd', '5441126'), + (19193, 74, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'amG6Ynrd', '5446643'), + (19194, 74, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'amG6Ynrd', '5453325'), + (19195, 74, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'amG6Ynrd', '5454516'), + (19196, 74, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'amG6Ynrd', '5454605'), + (19197, 74, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'amG6Ynrd', '5455037'), + (19198, 74, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'amG6Ynrd', '5471073'), + (19199, 74, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'amG6Ynrd', '5474663'), + (19200, 74, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'amG6Ynrd', '5482022'), + (19201, 74, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amG6Ynrd', '6045684'), + (19202, 74, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'amG6Ynrd', '6361713'), + (19203, 74, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'amG6Ynrd', '6388604'), + (19204, 74, 2242, 'attending', '2023-09-22 23:30:43', '2025-12-17 19:46:45', 'amG6Ynrd', '6388606'), + (19205, 74, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'amG6Ynrd', '6394629'), + (19206, 74, 2250, 'maybe', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'amG6Ynrd', '6394631'), + (19207, 74, 2253, 'attending', '2023-09-26 21:35:15', '2025-12-17 19:46:45', 'amG6Ynrd', '6401811'), + (19208, 74, 2254, 'attending', '2023-09-10 21:29:34', '2025-12-17 19:46:44', 'amG6Ynrd', '6401889'), + (19209, 74, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'amG6Ynrd', '6440863'), + (19210, 74, 2270, 'attending', '2023-10-10 21:20:44', '2025-12-17 19:46:46', 'amG6Ynrd', '6443067'), + (19211, 74, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'amG6Ynrd', '6445440'), + (19212, 74, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'amG6Ynrd', '6453951'), + (19213, 74, 2283, 'maybe', '2023-10-10 22:55:48', '2025-12-17 19:46:46', 'amG6Ynrd', '6455503'), + (19214, 74, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'amG6Ynrd', '6461696'), + (19215, 74, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'amG6Ynrd', '6462129'), + (19216, 74, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'amG6Ynrd', '6463218'), + (19217, 74, 2299, 'attending', '2023-10-20 21:54:28', '2025-12-17 19:46:46', 'amG6Ynrd', '6472181'), + (19218, 74, 2303, 'attending', '2023-10-26 20:57:01', '2025-12-17 19:46:47', 'amG6Ynrd', '6482691'), + (19219, 74, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'amG6Ynrd', '6482693'), + (19220, 74, 2306, 'maybe', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'amG6Ynrd', '6484200'), + (19221, 74, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'amG6Ynrd', '6484680'), + (19222, 74, 2310, 'not_attending', '2023-11-11 19:57:59', '2025-12-17 19:46:47', 'amG6Ynrd', '6487709'), + (19223, 74, 2314, 'not_attending', '2023-11-01 22:15:33', '2025-12-17 19:46:47', 'amG6Ynrd', '6493665'), + (19224, 74, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'amG6Ynrd', '6507741'), + (19225, 74, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'amG6Ynrd', '6514659'), + (19226, 74, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'amG6Ynrd', '6514660'), + (19227, 74, 2324, 'attending', '2023-12-09 21:43:37', '2025-12-17 19:46:49', 'amG6Ynrd', '6514662'), + (19228, 74, 2325, 'attending', '2023-12-15 11:35:41', '2025-12-17 19:46:36', 'amG6Ynrd', '6514663'), + (19229, 74, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'amG6Ynrd', '6519103'), + (19230, 74, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'amG6Ynrd', '6535681'), + (19231, 74, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'amG6Ynrd', '6584747'), + (19232, 74, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'amG6Ynrd', '6587097'), + (19233, 74, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'amG6Ynrd', '6609022'), + (19234, 74, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'amG6Ynrd', '6632757'), + (19235, 74, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'amG6Ynrd', '6644187'), + (19236, 74, 2386, 'maybe', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'amG6Ynrd', '6648951'), + (19237, 74, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'amG6Ynrd', '6648952'), + (19238, 74, 2388, 'maybe', '2024-01-05 11:50:53', '2025-12-17 19:46:37', 'amG6Ynrd', '6649244'), + (19239, 74, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'amG6Ynrd', '6655401'), + (19240, 74, 2399, 'maybe', '2024-01-13 20:04:48', '2025-12-17 19:46:38', 'amG6Ynrd', '6657583'), + (19241, 74, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'amG6Ynrd', '6661585'), + (19242, 74, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'amG6Ynrd', '6661588'), + (19243, 74, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'amG6Ynrd', '6661589'), + (19244, 74, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'amG6Ynrd', '6699906'), + (19245, 74, 2408, 'attending', '2024-01-27 17:48:51', '2025-12-17 19:46:40', 'amG6Ynrd', '6699907'), + (19246, 74, 2409, 'not_attending', '2024-01-31 20:24:49', '2025-12-17 19:46:41', 'amG6Ynrd', '6699909'), + (19247, 74, 2410, 'attending', '2024-02-09 23:20:48', '2025-12-17 19:46:41', 'amG6Ynrd', '6699911'), + (19248, 74, 2411, 'attending', '2024-02-16 15:44:11', '2025-12-17 19:46:41', 'amG6Ynrd', '6699913'), + (19249, 74, 2412, 'not_attending', '2024-02-20 11:51:47', '2025-12-17 19:46:43', 'amG6Ynrd', '6700717'), + (19250, 74, 2414, 'attending', '2024-01-20 17:54:09', '2025-12-17 19:46:40', 'amG6Ynrd', '6701000'), + (19251, 74, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'amG6Ynrd', '6701109'), + (19252, 74, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'amG6Ynrd', '6705219'), + (19253, 74, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'amG6Ynrd', '6710153'), + (19254, 74, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'amG6Ynrd', '6711552'), + (19255, 74, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'amG6Ynrd', '6711553'), + (19256, 74, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'amG6Ynrd', '6722688'), + (19257, 74, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'amG6Ynrd', '6730620'), + (19258, 74, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'amG6Ynrd', '6730642'), + (19259, 74, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'amG6Ynrd', '6740364'), + (19260, 74, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'amG6Ynrd', '6743829'), + (19261, 74, 2465, 'not_attending', '2024-02-17 22:18:49', '2025-12-17 19:46:42', 'amG6Ynrd', '7026725'), + (19262, 74, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'amG6Ynrd', '7030380'), + (19263, 74, 2469, 'maybe', '2024-02-17 22:17:38', '2025-12-17 19:46:42', 'amG6Ynrd', '7030632'), + (19264, 74, 2471, 'maybe', '2024-02-19 01:04:34', '2025-12-17 19:46:42', 'amG6Ynrd', '7032425'), + (19265, 74, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'amG6Ynrd', '7033677'), + (19266, 74, 2474, 'attending', '2024-02-20 21:49:45', '2025-12-17 19:46:43', 'amG6Ynrd', '7035415'), + (19267, 74, 2475, 'maybe', '2024-02-23 03:33:01', '2025-12-17 19:46:43', 'amG6Ynrd', '7035643'), + (19268, 74, 2477, 'maybe', '2024-02-22 22:52:38', '2025-12-17 19:46:42', 'amG6Ynrd', '7035692'), + (19269, 74, 2481, 'maybe', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'amG6Ynrd', '7044715'), + (19270, 74, 2482, 'not_attending', '2024-03-07 01:06:19', '2025-12-17 19:46:44', 'amG6Ynrd', '7044719'), + (19271, 74, 2483, 'not_attending', '2024-02-24 21:49:12', '2025-12-17 19:46:32', 'amG6Ynrd', '7044720'), + (19272, 74, 2485, 'attending', '2024-02-26 23:56:04', '2025-12-17 19:46:43', 'amG6Ynrd', '7048111'), + (19273, 74, 2486, 'maybe', '2024-03-04 23:28:23', '2025-12-17 19:46:43', 'amG6Ynrd', '7048277'), + (19274, 74, 2487, 'maybe', '2024-03-17 20:20:11', '2025-12-17 19:46:33', 'amG6Ynrd', '7049279'), + (19275, 74, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'amG6Ynrd', '7050318'), + (19276, 74, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'amG6Ynrd', '7050319'), + (19277, 74, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'amG6Ynrd', '7050322'), + (19278, 74, 2493, 'not_attending', '2024-03-10 21:05:39', '2025-12-17 19:46:32', 'amG6Ynrd', '7052471'), + (19279, 74, 2494, 'not_attending', '2024-03-10 21:05:42', '2025-12-17 19:46:32', 'amG6Ynrd', '7052472'), + (19280, 74, 2499, 'attending', '2024-03-07 01:05:52', '2025-12-17 19:46:43', 'amG6Ynrd', '7057804'), + (19281, 74, 2502, 'maybe', '2024-03-17 20:19:39', '2025-12-17 19:46:33', 'amG6Ynrd', '7061202'), + (19282, 74, 2503, 'not_attending', '2024-03-07 01:09:11', '2025-12-17 19:46:32', 'amG6Ynrd', '7062500'), + (19283, 74, 2505, 'maybe', '2024-03-17 20:19:57', '2025-12-17 19:46:33', 'amG6Ynrd', '7069163'), + (19284, 74, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'amG6Ynrd', '7072824'), + (19285, 74, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'amG6Ynrd', '7074348'), + (19286, 74, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'amG6Ynrd', '7074364'), + (19287, 74, 2525, 'maybe', '2024-06-10 16:59:37', '2025-12-17 19:46:28', 'amG6Ynrd', '7074365'), + (19288, 74, 2534, 'maybe', '2024-03-13 16:22:34', '2025-12-17 19:46:32', 'amG6Ynrd', '7076875'), + (19289, 74, 2539, 'attending', '2024-04-05 18:33:49', '2025-12-17 19:46:33', 'amG6Ynrd', '7085486'), + (19290, 74, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'amG6Ynrd', '7089267'), + (19291, 74, 2541, 'maybe', '2024-03-17 20:19:16', '2025-12-17 19:46:33', 'amG6Ynrd', '7089404'), + (19292, 74, 2548, 'maybe', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'amG6Ynrd', '7098747'), + (19293, 74, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'amG6Ynrd', '7113468'), + (19294, 74, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'amG6Ynrd', '7114856'), + (19295, 74, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'amG6Ynrd', '7114951'), + (19296, 74, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'amG6Ynrd', '7114955'), + (19297, 74, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'amG6Ynrd', '7114956'), + (19298, 74, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'amG6Ynrd', '7114957'), + (19299, 74, 2566, 'maybe', '2024-04-05 18:35:25', '2025-12-17 19:46:34', 'amG6Ynrd', '7140664'), + (19300, 74, 2567, 'maybe', '2024-04-05 18:34:22', '2025-12-17 19:46:33', 'amG6Ynrd', '7144962'), + (19301, 74, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'amG6Ynrd', '7153615'), + (19302, 74, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'amG6Ynrd', '7159484'), + (19303, 74, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'amG6Ynrd', '7178446'), + (19304, 74, 2597, 'maybe', '2024-04-23 20:00:49', '2025-12-17 19:46:34', 'amG6Ynrd', '7186726'), + (19305, 74, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'amG6Ynrd', '7220467'), + (19306, 74, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'amG6Ynrd', '7240354'), + (19307, 74, 2613, 'maybe', '2024-05-05 12:55:48', '2025-12-17 19:46:35', 'amG6Ynrd', '7247644'), + (19308, 74, 2614, 'maybe', '2024-05-05 12:55:54', '2025-12-17 19:46:35', 'amG6Ynrd', '7247645'), + (19309, 74, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'amG6Ynrd', '7251633'), + (19310, 74, 2626, 'attending', '2024-05-18 11:20:56', '2025-12-17 19:46:35', 'amG6Ynrd', '7264723'), + (19311, 74, 2627, 'attending', '2024-05-20 08:45:38', '2025-12-17 19:46:35', 'amG6Ynrd', '7264724'), + (19312, 74, 2628, 'attending', '2024-05-29 00:35:17', '2025-12-17 19:46:36', 'amG6Ynrd', '7264725'), + (19313, 74, 2629, 'attending', '2024-06-07 21:26:09', '2025-12-17 19:46:28', 'amG6Ynrd', '7264726'), + (19314, 74, 2636, 'maybe', '2024-05-20 08:45:44', '2025-12-17 19:46:35', 'amG6Ynrd', '7270323'), + (19315, 74, 2637, 'maybe', '2024-05-20 08:45:46', '2025-12-17 19:46:35', 'amG6Ynrd', '7270324'), + (19316, 74, 2647, 'attending', '2024-05-21 16:58:41', '2025-12-17 19:46:28', 'amG6Ynrd', '7282057'), + (19317, 74, 2649, 'maybe', '2024-05-25 13:02:51', '2025-12-17 19:46:35', 'amG6Ynrd', '7282950'), + (19318, 74, 2652, 'maybe', '2024-05-29 00:34:52', '2025-12-17 19:46:36', 'amG6Ynrd', '7288339'), + (19319, 74, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'amG6Ynrd', '7302674'), + (19320, 74, 2672, 'maybe', '2024-06-09 16:03:14', '2025-12-17 19:46:28', 'amG6Ynrd', '7318459'), + (19321, 74, 2674, 'maybe', '2024-07-01 18:21:06', '2025-12-17 19:46:29', 'amG6Ynrd', '7319480'), + (19322, 74, 2678, 'attending', '2024-06-15 16:05:34', '2025-12-17 19:46:28', 'amG6Ynrd', '7319489'), + (19323, 74, 2679, 'attending', '2024-06-20 12:28:01', '2025-12-17 19:46:29', 'amG6Ynrd', '7319490'), + (19324, 74, 2681, 'maybe', '2024-06-10 16:59:03', '2025-12-17 19:46:28', 'amG6Ynrd', '7320409'), + (19325, 74, 2686, 'maybe', '2024-06-20 12:27:49', '2025-12-17 19:46:29', 'amG6Ynrd', '7323802'), + (19326, 74, 2688, 'attending', '2024-06-24 21:39:50', '2025-12-17 19:46:29', 'amG6Ynrd', '7324073'), + (19327, 74, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'amG6Ynrd', '7324074'), + (19328, 74, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'amG6Ynrd', '7324075'), + (19329, 74, 2691, 'not_attending', '2024-07-11 11:51:44', '2025-12-17 19:46:30', 'amG6Ynrd', '7324076'), + (19330, 74, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'amG6Ynrd', '7324078'), + (19331, 74, 2694, 'maybe', '2024-08-07 15:52:56', '2025-12-17 19:46:31', 'amG6Ynrd', '7324079'), + (19332, 74, 2696, 'attending', '2024-08-24 22:12:13', '2025-12-17 19:46:32', 'amG6Ynrd', '7324081'), + (19333, 74, 2697, 'maybe', '2024-08-30 10:26:55', '2025-12-17 19:46:32', 'amG6Ynrd', '7324082'), + (19334, 74, 2701, 'maybe', '2024-06-26 20:10:00', '2025-12-17 19:46:29', 'amG6Ynrd', '7324391'), + (19335, 74, 2705, 'maybe', '2024-06-26 22:03:28', '2025-12-17 19:46:29', 'amG6Ynrd', '7324944'), + (19336, 74, 2717, 'maybe', '2024-06-24 21:39:44', '2025-12-17 19:46:29', 'amG6Ynrd', '7329149'), + (19337, 74, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'amG6Ynrd', '7331457'), + (19338, 74, 2733, 'maybe', '2024-06-26 00:43:26', '2025-12-17 19:46:29', 'amG6Ynrd', '7338853'), + (19339, 74, 2738, 'maybe', '2024-07-01 18:20:27', '2025-12-17 19:46:29', 'amG6Ynrd', '7344085'), + (19340, 74, 2763, 'maybe', '2024-07-18 16:02:12', '2025-12-17 19:46:30', 'amG6Ynrd', '7363594'), + (19341, 74, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'amG6Ynrd', '7363643'), + (19342, 74, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'amG6Ynrd', '7368606'), + (19343, 74, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'amG6Ynrd', '7397462'), + (19344, 74, 2816, 'maybe', '2024-09-19 00:10:38', '2025-12-17 19:46:25', 'amG6Ynrd', '7424269'), + (19345, 74, 2821, 'attending', '2024-10-12 15:57:48', '2025-12-17 19:46:26', 'amG6Ynrd', '7424275'), + (19346, 74, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'amG6Ynrd', '7424276'), + (19347, 74, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'amG6Ynrd', '7432751'), + (19348, 74, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'amG6Ynrd', '7432752'), + (19349, 74, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'amG6Ynrd', '7432753'), + (19350, 74, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'amG6Ynrd', '7432754'), + (19351, 74, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'amG6Ynrd', '7432755'), + (19352, 74, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'amG6Ynrd', '7432756'), + (19353, 74, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'amG6Ynrd', '7432758'), + (19354, 74, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'amG6Ynrd', '7432759'), + (19355, 74, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'amG6Ynrd', '7433834'), + (19356, 74, 2834, 'maybe', '2024-09-14 14:39:10', '2025-12-17 19:46:25', 'amG6Ynrd', '7433852'), + (19357, 74, 2843, 'maybe', '2024-09-20 16:11:10', '2025-12-17 19:46:25', 'amG6Ynrd', '7450219'), + (19358, 74, 2860, 'maybe', '2024-10-08 22:21:11', '2025-12-17 19:46:26', 'amG6Ynrd', '7469393'), + (19359, 74, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'amG6Ynrd', '7470197'), + (19360, 74, 2876, 'maybe', '2024-10-08 22:20:55', '2025-12-17 19:46:26', 'amG6Ynrd', '7490980'), + (19361, 74, 2897, 'maybe', '2024-11-16 14:05:39', '2025-12-17 19:46:27', 'amG6Ynrd', '7683650'), + (19362, 74, 2898, 'maybe', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'amG6Ynrd', '7685613'), + (19363, 74, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'amG6Ynrd', '7688194'), + (19364, 74, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'amG6Ynrd', '7688196'), + (19365, 74, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'amG6Ynrd', '7688289'), + (19366, 74, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'amG6Ynrd', '7692763'), + (19367, 74, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'amG6Ynrd', '7697552'), + (19368, 74, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'amG6Ynrd', '7699878'), + (19369, 74, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'amG6Ynrd', '7704043'), + (19370, 74, 2922, 'not_attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'amG6Ynrd', '7710890'), + (19371, 74, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'amG6Ynrd', '7712467'), + (19372, 74, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'amG6Ynrd', '7713585'), + (19373, 74, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'amG6Ynrd', '7713586'), + (19374, 74, 2929, 'maybe', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'amG6Ynrd', '7723465'), + (19375, 74, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'amG6Ynrd', '7738518'), + (19376, 74, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', 'amG6Ynrd', '7750632'), + (19377, 74, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'amG6Ynrd', '7750636'), + (19378, 74, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'amG6Ynrd', '7796540'), + (19379, 74, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'amG6Ynrd', '7796541'), + (19380, 74, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'amG6Ynrd', '7796542'), + (19381, 74, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'amG6Ynrd', '7825913'), + (19382, 74, 2982, 'attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'amG6Ynrd', '7826209'), + (19383, 74, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'amG6Ynrd', '7834742'), + (19384, 74, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'amG6Ynrd', '7842108'), + (19385, 74, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'amG6Ynrd', '7842902'), + (19386, 74, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'amG6Ynrd', '7842903'), + (19387, 74, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'amG6Ynrd', '7842904'), + (19388, 74, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'amG6Ynrd', '7842905'), + (19389, 74, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'amG6Ynrd', '7855719'), + (19390, 74, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'amG6Ynrd', '7860683'), + (19391, 74, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'amG6Ynrd', '7860684'), + (19392, 74, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'amG6Ynrd', '7866095'), + (19393, 74, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'amG6Ynrd', '7869170'), + (19394, 74, 3014, 'attending', '2025-04-05 14:30:51', '2025-12-17 19:46:20', 'amG6Ynrd', '7869185'), + (19395, 74, 3015, 'not_attending', '2025-04-26 19:09:54', '2025-12-17 19:46:20', 'amG6Ynrd', '7869186'), + (19396, 74, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'amG6Ynrd', '7869188'), + (19397, 74, 3018, 'not_attending', '2025-04-12 20:49:47', '2025-12-17 19:46:20', 'amG6Ynrd', '7869189'), + (19398, 74, 3028, 'maybe', '2025-04-26 13:49:53', '2025-12-17 19:46:20', 'amG6Ynrd', '7869199'), + (19399, 74, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'amG6Ynrd', '7869201'), + (19400, 74, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'amG6Ynrd', '7877465'), + (19401, 74, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'amG6Ynrd', '7888250'), + (19402, 74, 3072, 'maybe', '2025-04-01 14:00:54', '2025-12-17 19:46:19', 'amG6Ynrd', '7895449'), + (19403, 74, 3081, 'maybe', '2025-04-11 20:52:51', '2025-12-17 19:46:20', 'amG6Ynrd', '7902801'), + (19404, 74, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'amG6Ynrd', '7904777'), + (19405, 74, 3095, 'not_attending', '2025-04-29 15:15:48', '2025-12-17 19:46:20', 'amG6Ynrd', '8342293'), + (19406, 74, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'amG6Ynrd', '8349164'), + (19407, 74, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'amG6Ynrd', '8349545'), + (19408, 74, 3110, 'maybe', '2025-05-07 01:51:58', '2025-12-17 19:46:21', 'amG6Ynrd', '8353484'), + (19409, 74, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'amG6Ynrd', '8353584'), + (19410, 74, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'amG6Ynrd', '8368028'), + (19411, 74, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'amG6Ynrd', '8368029'), + (19412, 74, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'amG6Ynrd', '8388462'), + (19413, 74, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'amG6Ynrd', '8400273'), + (19414, 74, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'amG6Ynrd', '8400274'), + (19415, 74, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'amG6Ynrd', '8400275'), + (19416, 74, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'amG6Ynrd', '8400276'), + (19417, 74, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'amG6Ynrd', '8404977'), + (19418, 74, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'amG6Ynrd', '8430783'), + (19419, 74, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'amG6Ynrd', '8430784'), + (19420, 74, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'amG6Ynrd', '8430799'), + (19421, 74, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'amG6Ynrd', '8430800'), + (19422, 74, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'amG6Ynrd', '8430801'), + (19423, 74, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'amG6Ynrd', '8438709'), + (19424, 74, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'amG6Ynrd', '8457738'), + (19425, 74, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'amG6Ynrd', '8459566'), + (19426, 74, 3201, 'attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'amG6Ynrd', '8459567'), + (19427, 74, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'amG6Ynrd', '8461032'), + (19428, 74, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'amG6Ynrd', '8477877'), + (19429, 74, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'amG6Ynrd', '8485688'), + (19430, 74, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'amG6Ynrd', '8490587'), + (19431, 74, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'amG6Ynrd', '8493552'), + (19432, 74, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'amG6Ynrd', '8493553'), + (19433, 74, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'amG6Ynrd', '8493554'), + (19434, 74, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'amG6Ynrd', '8493555'), + (19435, 74, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'amG6Ynrd', '8493556'), + (19436, 74, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'amG6Ynrd', '8493557'), + (19437, 74, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'amG6Ynrd', '8493558'), + (19438, 74, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'amG6Ynrd', '8493559'), + (19439, 74, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'amG6Ynrd', '8493560'), + (19440, 74, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'amG6Ynrd', '8493561'), + (19441, 74, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'amG6Ynrd', '8493572'), + (19442, 74, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'amG6Ynrd', '8540725'), + (19443, 74, 3302, 'attending', '2025-11-13 22:08:26', '2025-12-17 19:46:14', 'amG6Ynrd', '8550022'), + (19444, 74, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'amG6Ynrd', '8555421'), + (19445, 75, 3201, 'attending', '2025-08-09 21:33:56', '2025-12-17 19:46:17', '4Wpw0zEd', '8459567'), + (19446, 75, 3211, 'attending', '2025-08-08 20:28:43', '2025-12-17 19:46:17', '4Wpw0zEd', '8477785'), + (19447, 75, 3218, 'not_attending', '2025-08-09 00:21:03', '2025-12-17 19:46:17', '4Wpw0zEd', '8481869'), + (19448, 75, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4Wpw0zEd', '8485688'), + (19449, 75, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4Wpw0zEd', '8490587'), + (19450, 75, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4Wpw0zEd', '8493552'), + (19451, 75, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4Wpw0zEd', '8493553'), + (19452, 75, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4Wpw0zEd', '8493554'), + (19453, 75, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4Wpw0zEd', '8493555'), + (19454, 75, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4Wpw0zEd', '8493556'), + (19455, 75, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4Wpw0zEd', '8493557'), + (19456, 75, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4Wpw0zEd', '8493558'), + (19457, 75, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4Wpw0zEd', '8493559'), + (19458, 75, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4Wpw0zEd', '8493560'), + (19459, 75, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '4Wpw0zEd', '8493561'), + (19460, 75, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4Wpw0zEd', '8493572'), + (19461, 75, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4Wpw0zEd', '8540725'), + (19462, 75, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4Wpw0zEd', '8555421'), + (19463, 76, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mp1j1klA', '8438709'), + (19464, 76, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mp1j1klA', '8457738'), + (19465, 76, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mp1j1klA', '8459566'), + (19466, 76, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mp1j1klA', '8459567'), + (19467, 76, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mp1j1klA', '8461032'), + (19468, 76, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mp1j1klA', '8477877'), + (19469, 76, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mp1j1klA', '8485688'), + (19470, 76, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mp1j1klA', '8490587'), + (19471, 76, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mp1j1klA', '8493552'), + (19472, 76, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mp1j1klA', '8493553'), + (19473, 76, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mp1j1klA', '8493554'), + (19474, 76, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mp1j1klA', '8493555'), + (19475, 76, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mp1j1klA', '8493556'), + (19476, 76, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mp1j1klA', '8493557'), + (19477, 76, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mp1j1klA', '8493558'), + (19478, 76, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mp1j1klA', '8493559'), + (19479, 76, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mp1j1klA', '8493560'), + (19480, 76, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mp1j1klA', '8493561'), + (19481, 76, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mp1j1klA', '8493572'), + (19482, 76, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mp1j1klA', '8540725'), + (19483, 76, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mp1j1klA', '8555421'), + (19484, 77, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AYg6GRGd', '7074364'), + (19485, 77, 2604, 'attending', '2024-05-29 01:15:44', '2025-12-17 19:46:36', 'AYg6GRGd', '7225670'), + (19486, 77, 2628, 'not_attending', '2024-05-31 00:56:26', '2025-12-17 19:46:36', 'AYg6GRGd', '7264725'), + (19487, 77, 2629, 'attending', '2024-06-08 12:20:11', '2025-12-17 19:46:28', 'AYg6GRGd', '7264726'), + (19488, 77, 2647, 'attending', '2024-06-09 18:39:47', '2025-12-17 19:46:28', 'AYg6GRGd', '7282057'), + (19489, 77, 2654, 'maybe', '2024-05-28 17:57:16', '2025-12-17 19:46:36', 'AYg6GRGd', '7291219'), + (19490, 77, 2657, 'attending', '2024-05-29 01:20:06', '2025-12-17 19:46:36', 'AYg6GRGd', '7294438'), + (19491, 77, 2658, 'attending', '2024-06-01 19:49:45', '2025-12-17 19:46:36', 'AYg6GRGd', '7298846'), + (19492, 77, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AYg6GRGd', '7302674'), + (19493, 77, 2662, 'not_attending', '2024-06-05 04:03:00', '2025-12-17 19:46:36', 'AYg6GRGd', '7302815'), + (19494, 77, 2667, 'attending', '2024-06-05 14:30:36', '2025-12-17 19:46:36', 'AYg6GRGd', '7307776'), + (19495, 77, 2671, 'attending', '2024-06-09 18:45:29', '2025-12-17 19:46:28', 'AYg6GRGd', '7318256'), + (19496, 77, 2688, 'attending', '2024-06-24 18:48:49', '2025-12-17 19:46:29', 'AYg6GRGd', '7324073'), + (19497, 77, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AYg6GRGd', '7324074'), + (19498, 77, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AYg6GRGd', '7324075'), + (19499, 77, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AYg6GRGd', '7324078'), + (19500, 77, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AYg6GRGd', '7324082'), + (19501, 77, 2699, 'attending', '2024-06-12 22:45:07', '2025-12-17 19:46:28', 'AYg6GRGd', '7324385'), + (19502, 77, 2706, 'attending', '2024-06-19 15:17:00', '2025-12-17 19:46:28', 'AYg6GRGd', '7324947'), + (19503, 77, 2707, 'maybe', '2024-06-13 20:30:14', '2025-12-17 19:46:28', 'AYg6GRGd', '7324952'), + (19504, 77, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AYg6GRGd', '7331457'), + (19505, 77, 2724, 'attending', '2024-06-19 17:48:24', '2025-12-17 19:46:29', 'AYg6GRGd', '7332562'), + (19506, 77, 2755, 'not_attending', '2024-07-10 15:51:31', '2025-12-17 19:46:29', 'AYg6GRGd', '7357808'), + (19507, 77, 2756, 'attending', '2024-07-09 23:06:53', '2025-12-17 19:46:29', 'AYg6GRGd', '7358329'), + (19508, 77, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AYg6GRGd', '7363643'), + (19509, 77, 2773, 'not_attending', '2024-07-21 18:44:50', '2025-12-17 19:46:31', 'AYg6GRGd', '7368605'), + (19510, 77, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AYg6GRGd', '7368606'), + (19511, 77, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AYg6GRGd', '7397462'), + (19512, 77, 2806, 'attending', '2024-09-15 23:36:24', '2025-12-17 19:46:25', 'AYg6GRGd', '7404888'), + (19513, 77, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AYg6GRGd', '7424275'), + (19514, 77, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AYg6GRGd', '7424276'), + (19515, 77, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AYg6GRGd', '7432751'), + (19516, 77, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AYg6GRGd', '7432752'), + (19517, 77, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AYg6GRGd', '7432753'), + (19518, 77, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AYg6GRGd', '7432754'), + (19519, 77, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AYg6GRGd', '7432755'), + (19520, 77, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AYg6GRGd', '7432756'), + (19521, 77, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AYg6GRGd', '7432758'), + (19522, 77, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AYg6GRGd', '7432759'), + (19523, 77, 2832, 'attending', '2024-09-11 16:15:22', '2025-12-17 19:46:24', 'AYg6GRGd', '7433324'), + (19524, 77, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AYg6GRGd', '7433834'), + (19525, 77, 2839, 'not_attending', '2024-09-24 16:31:16', '2025-12-17 19:46:25', 'AYg6GRGd', '7439262'), + (19526, 77, 2842, 'attending', '2024-09-16 22:29:39', '2025-12-17 19:46:25', 'AYg6GRGd', '7446133'), + (19527, 77, 2850, 'attending', '2024-10-01 16:27:54', '2025-12-17 19:46:25', 'AYg6GRGd', '7457153'), + (19528, 77, 2854, 'not_attending', '2024-10-03 20:58:18', '2025-12-17 19:46:26', 'AYg6GRGd', '7465684'), + (19529, 77, 2855, 'attending', '2024-10-03 20:49:59', '2025-12-17 19:46:26', 'AYg6GRGd', '7469385'), + (19530, 77, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AYg6GRGd', '7470197'), + (19531, 77, 2863, 'attending', '2024-10-01 16:54:11', '2025-12-17 19:46:26', 'AYg6GRGd', '7470275'), + (19532, 77, 2868, 'attending', '2024-10-03 21:08:42', '2025-12-17 19:46:26', 'AYg6GRGd', '7474506'), + (19533, 77, 2869, 'not_attending', '2024-10-03 20:58:07', '2025-12-17 19:46:26', 'AYg6GRGd', '7474823'), + (19534, 77, 2870, 'not_attending', '2024-10-03 20:58:12', '2025-12-17 19:46:26', 'AYg6GRGd', '7475068'), + (19535, 77, 2875, 'attending', '2024-10-07 23:04:57', '2025-12-17 19:46:26', 'AYg6GRGd', '7482241'), + (19536, 77, 2883, 'attending', '2024-10-21 22:34:01', '2025-12-17 19:46:26', 'AYg6GRGd', '7649157'), + (19537, 77, 2888, 'attending', '2024-10-21 22:34:05', '2025-12-17 19:46:26', 'AYg6GRGd', '7654822'), + (19538, 77, 2889, 'attending', '2024-10-22 02:19:51', '2025-12-17 19:46:26', 'AYg6GRGd', '7660485'), + (19539, 77, 2893, 'attending', '2024-11-03 02:16:23', '2025-12-17 19:46:26', 'AYg6GRGd', '7672705'), + (19540, 77, 2896, 'not_attending', '2024-11-13 00:01:04', '2025-12-17 19:46:27', 'AYg6GRGd', '7683647'), + (19541, 77, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AYg6GRGd', '7685613'), + (19542, 77, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AYg6GRGd', '7688194'), + (19543, 77, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AYg6GRGd', '7688196'), + (19544, 77, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AYg6GRGd', '7688289'), + (19545, 77, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AYg6GRGd', '7692763'), + (19546, 77, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AYg6GRGd', '7697552'), + (19547, 77, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AYg6GRGd', '7699878'), + (19548, 77, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AYg6GRGd', '7704043'), + (19549, 77, 2922, 'attending', '2024-11-25 22:47:40', '2025-12-17 19:46:21', 'AYg6GRGd', '7710890'), + (19550, 77, 2924, 'attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AYg6GRGd', '7712467'), + (19551, 77, 2925, 'attending', '2024-12-10 02:53:56', '2025-12-17 19:46:21', 'AYg6GRGd', '7713584'), + (19552, 77, 2926, 'attending', '2024-12-04 01:28:43', '2025-12-17 19:46:21', 'AYg6GRGd', '7713585'), + (19553, 77, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AYg6GRGd', '7713586'), + (19554, 77, 2929, 'attending', '2024-12-06 08:40:44', '2025-12-17 19:46:21', 'AYg6GRGd', '7723465'), + (19555, 77, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AYg6GRGd', '7738518'), + (19556, 77, 2962, 'attending', '2024-12-27 22:29:40', '2025-12-17 19:46:22', 'AYg6GRGd', '7750632'), + (19557, 77, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AYg6GRGd', '7750636'), + (19558, 77, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AYg6GRGd', '7796540'), + (19559, 77, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AYg6GRGd', '7796541'), + (19560, 77, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AYg6GRGd', '7796542'), + (19561, 77, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AYg6GRGd', '7825913'), + (19562, 77, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AYg6GRGd', '7826209'), + (19563, 77, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AYg6GRGd', '7834742'), + (19564, 77, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AYg6GRGd', '7842108'), + (19565, 77, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AYg6GRGd', '7842902'), + (19566, 77, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AYg6GRGd', '7842903'), + (19567, 77, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AYg6GRGd', '7842904'), + (19568, 77, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AYg6GRGd', '7842905'), + (19569, 77, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AYg6GRGd', '7855719'), + (19570, 77, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AYg6GRGd', '7860683'), + (19571, 77, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AYg6GRGd', '7860684'), + (19572, 77, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AYg6GRGd', '7866095'), + (19573, 77, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AYg6GRGd', '7869170'), + (19574, 77, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AYg6GRGd', '7869188'), + (19575, 77, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AYg6GRGd', '7869201'), + (19576, 77, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AYg6GRGd', '7877465'), + (19577, 77, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AYg6GRGd', '7888250'), + (19578, 77, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AYg6GRGd', '7904777'), + (19579, 77, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AYg6GRGd', '8349164'), + (19580, 77, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AYg6GRGd', '8349545'), + (19581, 77, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AYg6GRGd', '8353584'), + (19582, 77, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AYg6GRGd', '8368028'), + (19583, 77, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AYg6GRGd', '8368029'), + (19584, 77, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AYg6GRGd', '8388462'), + (19585, 77, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AYg6GRGd', '8400273'), + (19586, 77, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AYg6GRGd', '8400274'), + (19587, 77, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AYg6GRGd', '8400275'), + (19588, 77, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AYg6GRGd', '8400276'), + (19589, 77, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AYg6GRGd', '8404977'), + (19590, 77, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AYg6GRGd', '8430783'), + (19591, 77, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AYg6GRGd', '8430784'), + (19592, 77, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AYg6GRGd', '8430799'), + (19593, 77, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AYg6GRGd', '8430800'), + (19594, 77, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AYg6GRGd', '8430801'), + (19595, 77, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AYg6GRGd', '8438709'), + (19596, 77, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AYg6GRGd', '8457738'), + (19597, 77, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AYg6GRGd', '8459566'), + (19598, 77, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AYg6GRGd', '8459567'), + (19599, 77, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AYg6GRGd', '8461032'), + (19600, 77, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AYg6GRGd', '8477877'), + (19601, 77, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AYg6GRGd', '8485688'), + (19602, 77, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AYg6GRGd', '8490587'), + (19603, 77, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AYg6GRGd', '8493552'), + (19604, 77, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AYg6GRGd', '8493553'), + (19605, 77, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AYg6GRGd', '8493554'), + (19606, 77, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AYg6GRGd', '8493555'), + (19607, 77, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AYg6GRGd', '8493556'), + (19608, 77, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AYg6GRGd', '8493557'), + (19609, 77, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AYg6GRGd', '8493558'), + (19610, 77, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AYg6GRGd', '8493559'), + (19611, 77, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AYg6GRGd', '8493560'), + (19612, 77, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AYg6GRGd', '8493561'), + (19613, 77, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AYg6GRGd', '8493572'), + (19614, 77, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AYg6GRGd', '8540725'), + (19615, 77, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AYg6GRGd', '8555421'), + (19616, 78, 2695, 'attending', '2024-08-17 17:14:18', '2025-12-17 19:46:31', 'mGWO76km', '7324080'), + (19617, 78, 2696, 'maybe', '2024-08-24 18:48:11', '2025-12-17 19:46:32', 'mGWO76km', '7324081'), + (19618, 78, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mGWO76km', '7324082'), + (19619, 78, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mGWO76km', '7397462'), + (19620, 78, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mGWO76km', '7424275'), + (19621, 78, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mGWO76km', '7424276'), + (19622, 78, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mGWO76km', '7432751'), + (19623, 78, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mGWO76km', '7432752'), + (19624, 78, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mGWO76km', '7432753'), + (19625, 78, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mGWO76km', '7432754'), + (19626, 78, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mGWO76km', '7432755'), + (19627, 78, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mGWO76km', '7432756'), + (19628, 78, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mGWO76km', '7432758'), + (19629, 78, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mGWO76km', '7432759'), + (19630, 78, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mGWO76km', '7433834'), + (19631, 78, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mGWO76km', '7470197'), + (19632, 78, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mGWO76km', '7685613'), + (19633, 78, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mGWO76km', '7688194'), + (19634, 78, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mGWO76km', '7688196'), + (19635, 78, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mGWO76km', '7688289'), + (19636, 78, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mGWO76km', '7692763'), + (19637, 78, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mGWO76km', '7697552'), + (19638, 78, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mGWO76km', '7699878'), + (19639, 78, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mGWO76km', '7704043'), + (19640, 78, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mGWO76km', '7712467'), + (19641, 78, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mGWO76km', '7713585'), + (19642, 78, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mGWO76km', '7713586'), + (19643, 78, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mGWO76km', '7738518'), + (19644, 78, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mGWO76km', '7750636'), + (19645, 78, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mGWO76km', '7796540'), + (19646, 78, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mGWO76km', '7796541'), + (19647, 78, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mGWO76km', '7796542'), + (19648, 78, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mGWO76km', '7825913'), + (19649, 78, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mGWO76km', '7826209'), + (19650, 78, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mGWO76km', '7834742'), + (19651, 78, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mGWO76km', '7842108'), + (19652, 78, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mGWO76km', '7842902'), + (19653, 78, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mGWO76km', '7842903'), + (19654, 78, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mGWO76km', '7842904'), + (19655, 78, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mGWO76km', '7842905'), + (19656, 78, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mGWO76km', '7855719'), + (19657, 78, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mGWO76km', '7860683'), + (19658, 78, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mGWO76km', '7860684'), + (19659, 78, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mGWO76km', '7866095'), + (19660, 78, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mGWO76km', '7869170'), + (19661, 78, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mGWO76km', '7869188'), + (19662, 78, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mGWO76km', '7869201'), + (19663, 78, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mGWO76km', '7877465'), + (19664, 78, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mGWO76km', '7888250'), + (19665, 78, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mGWO76km', '7904777'), + (19666, 78, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mGWO76km', '8349164'), + (19667, 78, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mGWO76km', '8349545'), + (19668, 78, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mGWO76km', '8353584'), + (19669, 78, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mGWO76km', '8368028'), + (19670, 78, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mGWO76km', '8368029'), + (19671, 78, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mGWO76km', '8388462'), + (19672, 78, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mGWO76km', '8400273'), + (19673, 78, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mGWO76km', '8400274'), + (19674, 78, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mGWO76km', '8400275'), + (19675, 78, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mGWO76km', '8400276'), + (19676, 78, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mGWO76km', '8404977'), + (19677, 78, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mGWO76km', '8430783'), + (19678, 78, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mGWO76km', '8430784'), + (19679, 78, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mGWO76km', '8430799'), + (19680, 78, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mGWO76km', '8430800'), + (19681, 78, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mGWO76km', '8430801'), + (19682, 78, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mGWO76km', '8438709'), + (19683, 78, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mGWO76km', '8457738'), + (19684, 78, 3200, 'attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mGWO76km', '8459566'), + (19685, 78, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mGWO76km', '8459567'), + (19686, 78, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mGWO76km', '8461032'), + (19687, 78, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mGWO76km', '8477877'), + (19688, 78, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mGWO76km', '8485688'), + (19689, 78, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mGWO76km', '8490587'), + (19690, 78, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mGWO76km', '8493552'), + (19691, 78, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'mGWO76km', '8493553'), + (19692, 78, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mGWO76km', '8493554'), + (19693, 78, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mGWO76km', '8493555'), + (19694, 78, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mGWO76km', '8493556'), + (19695, 78, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mGWO76km', '8493557'), + (19696, 78, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mGWO76km', '8493558'), + (19697, 78, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mGWO76km', '8493559'), + (19698, 78, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mGWO76km', '8493560'), + (19699, 78, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mGWO76km', '8493561'), + (19700, 78, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mGWO76km', '8493572'), + (19701, 78, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'mGWO76km', '8540725'), + (19702, 78, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mGWO76km', '8555421'), + (19703, 79, 3088, 'not_attending', '2025-06-14 16:24:53', '2025-12-17 19:46:15', 'ydw10ZjA', '7904777'), + (19704, 79, 3131, 'attending', '2025-05-13 01:04:28', '2025-12-17 19:46:21', 'ydw10ZjA', '8368028'), + (19705, 79, 3132, 'not_attending', '2025-05-22 17:01:40', '2025-12-17 19:46:21', 'ydw10ZjA', '8368029'), + (19706, 79, 3133, 'attending', '2025-05-28 02:57:28', '2025-12-17 19:46:14', 'ydw10ZjA', '8368030'), + (19707, 79, 3153, 'not_attending', '2025-06-04 14:00:27', '2025-12-17 19:46:15', 'ydw10ZjA', '8400273'), + (19708, 79, 3154, 'not_attending', '2025-06-28 21:03:04', '2025-12-17 19:46:15', 'ydw10ZjA', '8400274'), + (19709, 79, 3155, 'maybe', '2025-07-02 16:23:49', '2025-12-17 19:46:16', 'ydw10ZjA', '8400275'), + (19710, 79, 3188, 'not_attending', '2025-07-17 16:37:27', '2025-12-17 19:46:17', 'ydw10ZjA', '8438709'), + (19711, 79, 3200, 'not_attending', '2025-08-01 00:49:36', '2025-12-17 19:46:17', 'ydw10ZjA', '8459566'), + (19712, 79, 3203, 'not_attending', '2025-07-23 03:14:06', '2025-12-17 19:46:17', 'ydw10ZjA', '8461032'), + (19713, 79, 3236, 'not_attending', '2025-08-21 07:53:50', '2025-12-17 19:46:18', 'ydw10ZjA', '8493552'), + (19714, 79, 3237, 'not_attending', '2025-09-03 23:25:54', '2025-12-17 19:46:12', 'ydw10ZjA', '8493553'), + (19715, 79, 3238, 'not_attending', '2025-08-29 18:20:26', '2025-12-17 19:46:11', 'ydw10ZjA', '8493554'), + (19716, 79, 3240, 'maybe', '2025-09-10 01:12:12', '2025-12-17 19:46:12', 'ydw10ZjA', '8493556'), + (19717, 80, 2513, 'attending', '2024-04-18 16:02:52', '2025-12-17 19:46:34', 'mLo70Lad', '7074353'), + (19718, 80, 2514, 'maybe', '2024-04-22 15:32:31', '2025-12-17 19:46:34', 'mLo70Lad', '7074354'), + (19719, 80, 2516, 'attending', '2024-05-02 16:39:25', '2025-12-17 19:46:35', 'mLo70Lad', '7074356'), + (19720, 80, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mLo70Lad', '7074364'), + (19721, 80, 2529, 'maybe', '2024-05-23 02:38:34', '2025-12-17 19:46:35', 'mLo70Lad', '7074369'), + (19722, 80, 2555, 'attending', '2024-04-09 21:11:39', '2025-12-17 19:46:34', 'mLo70Lad', '7114951'), + (19723, 80, 2556, 'attending', '2024-04-15 16:07:39', '2025-12-17 19:46:34', 'mLo70Lad', '7114955'), + (19724, 80, 2557, 'attending', '2024-04-22 15:37:07', '2025-12-17 19:46:34', 'mLo70Lad', '7114956'), + (19725, 80, 2558, 'attending', '2024-05-02 17:45:22', '2025-12-17 19:46:35', 'mLo70Lad', '7114957'), + (19726, 80, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mLo70Lad', '7153615'), + (19727, 80, 2570, 'attending', '2024-04-07 17:50:58', '2025-12-17 19:46:33', 'mLo70Lad', '7159187'), + (19728, 80, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mLo70Lad', '7159484'), + (19729, 80, 2581, 'not_attending', '2024-04-22 16:10:21', '2025-12-17 19:46:34', 'mLo70Lad', '7169048'), + (19730, 80, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mLo70Lad', '7178446'), + (19731, 80, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'mLo70Lad', '7220467'), + (19732, 80, 2604, 'attending', '2024-05-29 16:00:34', '2025-12-17 19:46:36', 'mLo70Lad', '7225670'), + (19733, 80, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mLo70Lad', '7240354'), + (19734, 80, 2611, 'maybe', '2024-05-06 22:28:33', '2025-12-17 19:46:35', 'mLo70Lad', '7247642'), + (19735, 80, 2613, 'maybe', '2024-05-09 20:18:02', '2025-12-17 19:46:35', 'mLo70Lad', '7247644'), + (19736, 80, 2614, 'maybe', '2024-05-10 02:20:49', '2025-12-17 19:46:35', 'mLo70Lad', '7247645'), + (19737, 80, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mLo70Lad', '7251633'), + (19738, 80, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mLo70Lad', '7263048'), + (19739, 80, 2625, 'maybe', '2024-05-12 22:37:38', '2025-12-17 19:46:35', 'mLo70Lad', '7263302'), + (19740, 80, 2626, 'attending', '2024-05-17 02:11:00', '2025-12-17 19:46:35', 'mLo70Lad', '7264723'), + (19741, 80, 2627, 'attending', '2024-05-25 16:05:44', '2025-12-17 19:46:35', 'mLo70Lad', '7264724'), + (19742, 80, 2628, 'attending', '2024-05-31 15:46:23', '2025-12-17 19:46:36', 'mLo70Lad', '7264725'), + (19743, 80, 2629, 'attending', '2024-06-08 01:28:28', '2025-12-17 19:46:28', 'mLo70Lad', '7264726'), + (19744, 80, 2630, 'attending', '2024-05-16 23:05:34', '2025-12-17 19:46:35', 'mLo70Lad', '7264801'), + (19745, 80, 2634, 'maybe', '2024-05-19 15:40:06', '2025-12-17 19:46:35', 'mLo70Lad', '7270321'), + (19746, 80, 2635, 'attending', '2024-05-19 03:39:02', '2025-12-17 19:46:35', 'mLo70Lad', '7270322'), + (19747, 80, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mLo70Lad', '7302674'), + (19748, 80, 2678, 'attending', '2024-06-15 01:48:11', '2025-12-17 19:46:28', 'mLo70Lad', '7319489'), + (19749, 80, 2679, 'attending', '2024-06-22 00:24:18', '2025-12-17 19:46:29', 'mLo70Lad', '7319490'), + (19750, 80, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mLo70Lad', '7324073'), + (19751, 80, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mLo70Lad', '7324074'), + (19752, 80, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mLo70Lad', '7324075'), + (19753, 80, 2691, 'attending', '2024-07-19 00:46:23', '2025-12-17 19:46:30', 'mLo70Lad', '7324076'), + (19754, 80, 2692, 'not_attending', '2024-07-07 15:43:52', '2025-12-17 19:46:30', 'mLo70Lad', '7324077'), + (19755, 80, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mLo70Lad', '7324078'), + (19756, 80, 2694, 'attending', '2024-08-10 01:36:59', '2025-12-17 19:46:31', 'mLo70Lad', '7324079'), + (19757, 80, 2695, 'attending', '2024-08-17 00:20:36', '2025-12-17 19:46:31', 'mLo70Lad', '7324080'), + (19758, 80, 2696, 'attending', '2024-08-24 15:48:31', '2025-12-17 19:46:32', 'mLo70Lad', '7324081'), + (19759, 80, 2697, 'attending', '2024-08-26 16:06:33', '2025-12-17 19:46:32', 'mLo70Lad', '7324082'), + (19760, 80, 2698, 'attending', '2024-09-07 16:00:30', '2025-12-17 19:46:24', 'mLo70Lad', '7324083'), + (19761, 80, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mLo70Lad', '7331457'), + (19762, 80, 2743, 'attending', '2024-07-06 00:00:03', '2025-12-17 19:46:29', 'mLo70Lad', '7345688'), + (19763, 80, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mLo70Lad', '7356752'), + (19764, 80, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mLo70Lad', '7363643'), + (19765, 80, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mLo70Lad', '7368606'), + (19766, 80, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mLo70Lad', '7397462'), + (19767, 80, 2821, 'attending', '2024-10-10 00:30:24', '2025-12-17 19:46:26', 'mLo70Lad', '7424275'), + (19768, 80, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mLo70Lad', '7424276'), + (19769, 80, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mLo70Lad', '7432751'), + (19770, 80, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mLo70Lad', '7432752'), + (19771, 80, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mLo70Lad', '7432753'), + (19772, 80, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mLo70Lad', '7432754'), + (19773, 80, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mLo70Lad', '7432755'), + (19774, 80, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mLo70Lad', '7432756'), + (19775, 80, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mLo70Lad', '7432758'), + (19776, 80, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mLo70Lad', '7432759'), + (19777, 80, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mLo70Lad', '7433834'), + (19778, 80, 2849, 'maybe', '2024-09-29 01:53:00', '2025-12-17 19:46:25', 'mLo70Lad', '7457114'), + (19779, 80, 2858, 'attending', '2024-10-17 23:24:08', '2025-12-17 19:46:26', 'mLo70Lad', '7469388'), + (19780, 80, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mLo70Lad', '7470197'), + (19781, 80, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mLo70Lad', '7685613'), + (19782, 80, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mLo70Lad', '7688194'), + (19783, 80, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mLo70Lad', '7688196'), + (19784, 80, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mLo70Lad', '7688289'), + (19785, 80, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mLo70Lad', '7692763'), + (19786, 80, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mLo70Lad', '7697552'), + (19787, 80, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mLo70Lad', '7699878'), + (19788, 80, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mLo70Lad', '7704043'), + (19789, 80, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mLo70Lad', '7712467'), + (19790, 80, 2925, 'attending', '2024-12-10 01:52:04', '2025-12-17 19:46:21', 'mLo70Lad', '7713584'), + (19791, 80, 2926, 'attending', '2024-12-05 20:28:25', '2025-12-17 19:46:21', 'mLo70Lad', '7713585'), + (19792, 80, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mLo70Lad', '7713586'), + (19793, 80, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mLo70Lad', '7738518'), + (19794, 80, 2962, 'attending', '2024-12-27 17:40:05', '2025-12-17 19:46:22', 'mLo70Lad', '7750632'), + (19795, 80, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mLo70Lad', '7750636'), + (19796, 80, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mLo70Lad', '7796540'), + (19797, 80, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mLo70Lad', '7796541'), + (19798, 80, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mLo70Lad', '7796542'), + (19799, 80, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mLo70Lad', '7825913'), + (19800, 80, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'mLo70Lad', '7825920'), + (19801, 80, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mLo70Lad', '7826209'), + (19802, 80, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mLo70Lad', '7834742'), + (19803, 80, 2988, 'attending', '2025-02-08 03:36:59', '2025-12-17 19:46:23', 'mLo70Lad', '7839569'), + (19804, 80, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'mLo70Lad', '7842108'), + (19805, 80, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mLo70Lad', '7842902'), + (19806, 80, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mLo70Lad', '7842903'), + (19807, 80, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mLo70Lad', '7842904'), + (19808, 80, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mLo70Lad', '7842905'), + (19809, 80, 2999, 'not_attending', '2025-02-13 02:50:14', '2025-12-17 19:46:23', 'mLo70Lad', '7844784'), + (19810, 80, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mLo70Lad', '7855719'), + (19811, 80, 3007, 'attending', '2025-02-25 04:02:38', '2025-12-17 19:46:24', 'mLo70Lad', '7860683'), + (19812, 80, 3008, 'maybe', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mLo70Lad', '7860684'), + (19813, 80, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mLo70Lad', '7866095'), + (19814, 80, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mLo70Lad', '7869170'), + (19815, 80, 3014, 'attending', '2025-04-01 16:36:20', '2025-12-17 19:46:19', 'mLo70Lad', '7869185'), + (19816, 80, 3015, 'attending', '2025-04-22 15:51:49', '2025-12-17 19:46:20', 'mLo70Lad', '7869186'), + (19817, 80, 3016, 'attending', '2025-04-15 00:12:05', '2025-12-17 19:46:20', 'mLo70Lad', '7869187'), + (19818, 80, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mLo70Lad', '7869188'), + (19819, 80, 3018, 'attending', '2025-04-08 22:50:32', '2025-12-17 19:46:20', 'mLo70Lad', '7869189'), + (19820, 80, 3028, 'attending', '2025-04-27 03:12:37', '2025-12-17 19:46:20', 'mLo70Lad', '7869199'), + (19821, 80, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mLo70Lad', '7869201'), + (19822, 80, 3033, 'attending', '2025-03-11 02:32:15', '2025-12-17 19:46:19', 'mLo70Lad', '7877465'), + (19823, 80, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'mLo70Lad', '7878570'), + (19824, 80, 3050, 'attending', '2025-03-16 22:53:40', '2025-12-17 19:46:19', 'mLo70Lad', '7884021'), + (19825, 80, 3053, 'attending', '2025-03-16 23:27:28', '2025-12-17 19:46:19', 'mLo70Lad', '7884030'), + (19826, 80, 3055, 'maybe', '2025-03-27 16:26:07', '2025-12-17 19:46:19', 'mLo70Lad', '7888118'), + (19827, 80, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mLo70Lad', '7888250'), + (19828, 80, 3072, 'maybe', '2025-04-03 16:47:25', '2025-12-17 19:46:19', 'mLo70Lad', '7895449'), + (19829, 80, 3088, 'attending', '2025-06-11 20:56:28', '2025-12-17 19:46:15', 'mLo70Lad', '7904777'), + (19830, 80, 3090, 'maybe', '2025-04-16 16:09:45', '2025-12-17 19:46:20', 'mLo70Lad', '7914315'), + (19831, 80, 3094, 'not_attending', '2025-05-06 16:41:11', '2025-12-17 19:46:21', 'mLo70Lad', '8342292'), + (19832, 80, 3095, 'attending', '2025-04-27 16:17:09', '2025-12-17 19:46:20', 'mLo70Lad', '8342293'), + (19833, 80, 3099, 'attending', '2025-04-22 01:36:21', '2025-12-17 19:46:20', 'mLo70Lad', '8343522'), + (19834, 80, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mLo70Lad', '8349164'), + (19835, 80, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mLo70Lad', '8349545'), + (19836, 80, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mLo70Lad', '8353584'), + (19837, 80, 3113, 'attending', '2025-05-01 00:52:12', '2025-12-17 19:46:20', 'mLo70Lad', '8355089'), + (19838, 80, 3131, 'not_attending', '2025-05-13 01:08:50', '2025-12-17 19:46:21', 'mLo70Lad', '8368028'), + (19839, 80, 3132, 'not_attending', '2025-05-13 01:08:55', '2025-12-17 19:46:21', 'mLo70Lad', '8368029'), + (19840, 80, 3133, 'not_attending', '2025-05-27 20:28:58', '2025-12-17 19:46:14', 'mLo70Lad', '8368030'), + (19841, 80, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mLo70Lad', '8388462'), + (19842, 80, 3150, 'not_attending', '2025-06-15 17:56:43', '2025-12-17 19:46:15', 'mLo70Lad', '8393174'), + (19843, 80, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mLo70Lad', '8400273'), + (19844, 80, 3154, 'attending', '2025-06-23 00:43:35', '2025-12-17 19:46:15', 'mLo70Lad', '8400274'), + (19845, 80, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mLo70Lad', '8400275'), + (19846, 80, 3156, 'attending', '2025-06-17 15:35:27', '2025-12-17 19:46:16', 'mLo70Lad', '8400276'), + (19847, 80, 3158, 'attending', '2025-06-04 04:30:57', '2025-12-17 19:46:15', 'mLo70Lad', '8401408'), + (19848, 80, 3169, 'maybe', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mLo70Lad', '8404977'), + (19849, 80, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mLo70Lad', '8430783'), + (19850, 80, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mLo70Lad', '8430784'), + (19851, 80, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mLo70Lad', '8430799'), + (19852, 80, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mLo70Lad', '8430800'), + (19853, 80, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mLo70Lad', '8430801'), + (19854, 80, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mLo70Lad', '8438709'), + (19855, 80, 3193, 'attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mLo70Lad', '8457738'), + (19856, 80, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mLo70Lad', '8459566'), + (19857, 80, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mLo70Lad', '8459567'), + (19858, 80, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mLo70Lad', '8461032'), + (19859, 80, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mLo70Lad', '8477877'), + (19860, 80, 3216, 'attending', '2025-08-08 02:45:49', '2025-12-17 19:46:17', 'mLo70Lad', '8481608'), + (19861, 80, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mLo70Lad', '8485688'), + (19862, 80, 3235, 'maybe', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mLo70Lad', '8490587'), + (19863, 80, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mLo70Lad', '8493552'), + (19864, 80, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mLo70Lad', '8493553'), + (19865, 80, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mLo70Lad', '8493554'), + (19866, 80, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mLo70Lad', '8493555'), + (19867, 80, 3240, 'attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mLo70Lad', '8493556'), + (19868, 80, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mLo70Lad', '8493557'), + (19869, 80, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mLo70Lad', '8493558'), + (19870, 80, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mLo70Lad', '8493559'), + (19871, 80, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mLo70Lad', '8493560'), + (19872, 80, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mLo70Lad', '8493561'), + (19873, 80, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mLo70Lad', '8493572'), + (19874, 80, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mLo70Lad', '8540725'), + (19875, 80, 3295, 'not_attending', '2025-10-29 16:16:10', '2025-12-17 19:46:14', 'mLo70Lad', '8547541'), + (19876, 80, 3300, 'not_attending', '2025-10-26 21:23:22', '2025-12-17 19:46:14', 'mLo70Lad', '8549145'), + (19877, 80, 3302, 'attending', '2025-11-09 18:09:06', '2025-12-17 19:46:14', 'mLo70Lad', '8550022'), + (19878, 80, 3304, 'attending', '2025-11-19 03:36:01', '2025-12-17 19:46:14', 'mLo70Lad', '8550024'), + (19879, 80, 3305, 'maybe', '2025-11-26 00:36:30', '2025-12-17 19:46:11', 'mLo70Lad', '8550025'), + (19880, 80, 3306, 'attending', '2025-12-07 18:11:07', '2025-12-17 19:46:11', 'mLo70Lad', '8550026'), + (19881, 80, 3307, 'attending', '2025-12-16 02:30:06', '2025-12-17 19:46:11', 'mLo70Lad', '8550027'), + (19882, 80, 3311, 'maybe', '2025-12-09 18:19:29', '2025-12-17 19:46:11', 'mLo70Lad', '8550412'), + (19883, 80, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mLo70Lad', '8555421'), + (19884, 80, 3346, 'attending', '2025-12-30 01:54:06', '2025-12-30 01:54:06', NULL, NULL), + (19885, 81, 395, 'attending', '2021-06-08 21:45:33', '2025-12-17 19:47:47', '841br9Ed', '3236450'), + (19886, 81, 665, 'attending', '2021-09-04 22:08:54', '2025-12-17 19:47:43', '841br9Ed', '3547143'), + (19887, 81, 666, 'attending', '2021-08-09 00:08:37', '2025-12-17 19:47:42', '841br9Ed', '3547144'), + (19888, 81, 667, 'attending', '2021-08-26 18:57:23', '2025-12-17 19:47:42', '841br9Ed', '3547145'), + (19889, 81, 805, 'attending', '2021-06-13 20:55:57', '2025-12-17 19:47:47', '841br9Ed', '3804777'), + (19890, 81, 823, 'maybe', '2021-06-26 20:33:24', '2025-12-17 19:47:48', '841br9Ed', '3974109'), + (19891, 81, 828, 'attending', '2021-06-12 19:18:35', '2025-12-17 19:47:47', '841br9Ed', '3975312'), + (19892, 81, 837, 'attending', '2021-06-15 21:58:37', '2025-12-17 19:47:48', '841br9Ed', '3992545'), + (19893, 81, 841, 'attending', '2021-06-12 05:19:46', '2025-12-17 19:47:48', '841br9Ed', '4007434'), + (19894, 81, 844, 'attending', '2021-06-12 21:23:39', '2025-12-17 19:47:38', '841br9Ed', '4014338'), + (19895, 81, 845, 'not_attending', '2021-06-29 19:49:23', '2025-12-17 19:47:38', '841br9Ed', '4015717'), + (19896, 81, 850, 'attending', '2021-08-24 15:16:23', '2025-12-17 19:47:42', '841br9Ed', '4015722'), + (19897, 81, 857, 'not_attending', '2021-11-24 03:57:30', '2025-12-17 19:47:37', '841br9Ed', '4015731'), + (19898, 81, 866, 'maybe', '2021-06-21 20:02:36', '2025-12-17 19:47:38', '841br9Ed', '4020424'), + (19899, 81, 867, 'attending', '2021-06-17 18:50:46', '2025-12-17 19:47:38', '841br9Ed', '4021848'), + (19900, 81, 869, 'maybe', '2021-06-30 12:13:44', '2025-12-17 19:47:38', '841br9Ed', '4136744'), + (19901, 81, 870, 'attending', '2021-06-20 21:40:55', '2025-12-17 19:47:38', '841br9Ed', '4136937'), + (19902, 81, 871, 'attending', '2021-06-20 21:41:00', '2025-12-17 19:47:39', '841br9Ed', '4136938'), + (19903, 81, 872, 'attending', '2021-07-21 15:12:42', '2025-12-17 19:47:40', '841br9Ed', '4136947'), + (19904, 81, 873, 'attending', '2021-06-14 22:24:45', '2025-12-17 19:47:48', '841br9Ed', '4138297'), + (19905, 81, 874, 'attending', '2021-06-20 21:40:24', '2025-12-17 19:47:38', '841br9Ed', '4139815'), + (19906, 81, 875, 'attending', '2021-06-27 02:28:57', '2025-12-17 19:47:38', '841br9Ed', '4139816'), + (19907, 81, 876, 'not_attending', '2021-06-22 20:33:48', '2025-12-17 19:47:38', '841br9Ed', '4139926'), + (19908, 81, 878, 'attending', '2021-06-16 01:17:14', '2025-12-17 19:47:38', '841br9Ed', '4143331'), + (19909, 81, 879, 'maybe', '2021-06-27 02:27:39', '2025-12-17 19:47:38', '841br9Ed', '4147806'), + (19910, 81, 880, 'attending', '2021-06-19 21:20:01', '2025-12-17 19:47:48', '841br9Ed', '4205383'), + (19911, 81, 882, 'maybe', '2021-06-20 21:41:21', '2025-12-17 19:47:38', '841br9Ed', '4207630'), + (19912, 81, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '841br9Ed', '4210314'), + (19913, 81, 885, 'maybe', '2021-06-27 02:29:41', '2025-12-17 19:47:38', '841br9Ed', '4222370'), + (19914, 81, 887, 'not_attending', '2021-07-14 21:55:36', '2025-12-17 19:47:39', '841br9Ed', '4225444'), + (19915, 81, 890, 'maybe', '2021-06-29 01:59:49', '2025-12-17 19:47:38', '841br9Ed', '4228666'), + (19916, 81, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '841br9Ed', '4239259'), + (19917, 81, 900, 'attending', '2021-07-19 21:12:35', '2025-12-17 19:47:40', '841br9Ed', '4240316'), + (19918, 81, 901, 'attending', '2021-07-26 20:13:59', '2025-12-17 19:47:40', '841br9Ed', '4240317'), + (19919, 81, 902, 'attending', '2021-08-03 15:30:32', '2025-12-17 19:47:41', '841br9Ed', '4240318'), + (19920, 81, 903, 'attending', '2021-08-09 00:08:39', '2025-12-17 19:47:42', '841br9Ed', '4240320'), + (19921, 81, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '841br9Ed', '4250163'), + (19922, 81, 911, 'not_attending', '2021-07-12 19:55:03', '2025-12-17 19:47:39', '841br9Ed', '4264465'), + (19923, 81, 913, 'attending', '2021-07-12 19:55:06', '2025-12-17 19:47:39', '841br9Ed', '4273765'), + (19924, 81, 914, 'maybe', '2021-07-15 19:59:56', '2025-12-17 19:47:39', '841br9Ed', '4273767'), + (19925, 81, 915, 'maybe', '2021-07-19 21:13:26', '2025-12-17 19:47:39', '841br9Ed', '4273770'), + (19926, 81, 917, 'attending', '2021-07-12 19:55:55', '2025-12-17 19:47:39', '841br9Ed', '4274481'), + (19927, 81, 919, 'attending', '2021-07-12 19:57:36', '2025-12-17 19:47:39', '841br9Ed', '4275957'), + (19928, 81, 920, 'maybe', '2021-07-25 18:41:37', '2025-12-17 19:47:40', '841br9Ed', '4277819'), + (19929, 81, 926, 'attending', '2021-08-16 14:08:28', '2025-12-17 19:47:42', '841br9Ed', '4297211'), + (19930, 81, 927, 'maybe', '2021-07-29 22:22:31', '2025-12-17 19:47:40', '841br9Ed', '4297216'), + (19931, 81, 928, 'attending', '2021-07-26 20:12:20', '2025-12-17 19:47:40', '841br9Ed', '4297218'), + (19932, 81, 929, 'maybe', '2021-08-05 21:48:19', '2025-12-17 19:47:41', '841br9Ed', '4297223'), + (19933, 81, 933, 'maybe', '2021-07-27 22:08:01', '2025-12-17 19:47:40', '841br9Ed', '4301723'), + (19934, 81, 934, 'maybe', '2021-08-04 20:00:58', '2025-12-17 19:47:41', '841br9Ed', '4302093'), + (19935, 81, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '841br9Ed', '4304151'), + (19936, 81, 937, 'maybe', '2021-07-27 18:53:45', '2025-12-17 19:47:40', '841br9Ed', '4306596'), + (19937, 81, 938, 'maybe', '2021-07-26 22:02:05', '2025-12-17 19:47:40', '841br9Ed', '4306597'), + (19938, 81, 946, 'attending', '2021-07-27 22:07:45', '2025-12-17 19:47:40', '841br9Ed', '4314835'), + (19939, 81, 952, 'maybe', '2021-08-05 21:48:17', '2025-12-17 19:47:41', '841br9Ed', '4318286'), + (19940, 81, 955, 'maybe', '2021-08-09 00:07:29', '2025-12-17 19:47:41', '841br9Ed', '4331588'), + (19941, 81, 960, 'attending', '2021-08-09 00:07:51', '2025-12-17 19:47:41', '841br9Ed', '4344519'), + (19942, 81, 961, 'not_attending', '2021-08-09 00:08:08', '2025-12-17 19:47:42', '841br9Ed', '4345519'), + (19943, 81, 963, 'attending', '2021-08-15 21:41:03', '2025-12-17 19:47:42', '841br9Ed', '4353159'), + (19944, 81, 964, 'attending', '2021-08-23 16:01:07', '2025-12-17 19:47:42', '841br9Ed', '4353160'), + (19945, 81, 971, 'maybe', '2021-09-08 20:38:46', '2025-12-17 19:47:43', '841br9Ed', '4356801'), + (19946, 81, 972, 'not_attending', '2021-08-20 20:44:09', '2025-12-17 19:47:42', '841br9Ed', '4358025'), + (19947, 81, 973, 'attending', '2021-08-15 21:41:07', '2025-12-17 19:47:42', '841br9Ed', '4366186'), + (19948, 81, 974, 'attending', '2021-08-16 14:09:05', '2025-12-17 19:47:42', '841br9Ed', '4366187'), + (19949, 81, 976, 'attending', '2021-08-17 20:34:36', '2025-12-17 19:47:42', '841br9Ed', '4373933'), + (19950, 81, 981, 'maybe', '2021-08-23 16:01:28', '2025-12-17 19:47:42', '841br9Ed', '4387305'), + (19951, 81, 987, 'attending', '2021-08-28 22:32:27', '2025-12-17 19:47:43', '841br9Ed', '4402634'), + (19952, 81, 988, 'maybe', '2021-08-27 20:51:30', '2025-12-17 19:47:42', '841br9Ed', '4402823'), + (19953, 81, 989, 'maybe', '2021-09-09 20:55:33', '2025-12-17 19:47:43', '841br9Ed', '4414282'), + (19954, 81, 990, 'attending', '2021-08-28 22:31:50', '2025-12-17 19:47:43', '841br9Ed', '4420735'), + (19955, 81, 991, 'attending', '2021-08-28 22:32:12', '2025-12-17 19:47:43', '841br9Ed', '4420738'), + (19956, 81, 992, 'not_attending', '2021-09-18 16:32:48', '2025-12-17 19:47:34', '841br9Ed', '4420739'), + (19957, 81, 993, 'attending', '2021-09-20 15:45:53', '2025-12-17 19:47:34', '841br9Ed', '4420741'), + (19958, 81, 994, 'maybe', '2021-10-02 14:56:33', '2025-12-17 19:47:34', '841br9Ed', '4420742'), + (19959, 81, 995, 'attending', '2021-10-09 15:10:51', '2025-12-17 19:47:34', '841br9Ed', '4420744'), + (19960, 81, 996, 'attending', '2021-10-11 22:55:26', '2025-12-17 19:47:35', '841br9Ed', '4420747'), + (19961, 81, 997, 'attending', '2021-10-20 21:17:33', '2025-12-17 19:47:35', '841br9Ed', '4420748'), + (19962, 81, 998, 'attending', '2021-10-30 21:23:40', '2025-12-17 19:47:36', '841br9Ed', '4420749'), + (19963, 81, 1016, 'attending', '2021-09-03 18:26:07', '2025-12-17 19:47:43', '841br9Ed', '4441271'), + (19964, 81, 1019, 'maybe', '2021-09-16 18:15:32', '2025-12-17 19:47:43', '841br9Ed', '4450515'), + (19965, 81, 1020, 'attending', '2021-09-08 20:40:09', '2025-12-17 19:47:43', '841br9Ed', '4451787'), + (19966, 81, 1021, 'maybe', '2021-09-20 21:37:05', '2025-12-17 19:47:34', '841br9Ed', '4451803'), + (19967, 81, 1022, 'maybe', '2021-09-15 10:32:59', '2025-12-17 19:47:43', '841br9Ed', '4458628'), + (19968, 81, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '841br9Ed', '4461883'), + (19969, 81, 1033, 'maybe', '2021-09-18 14:03:18', '2025-12-17 19:47:43', '841br9Ed', '4486006'), + (19970, 81, 1036, 'maybe', '2021-09-19 17:56:28', '2025-12-17 19:47:34', '841br9Ed', '4493166'), + (19971, 81, 1038, 'attending', '2021-09-20 15:45:55', '2025-12-17 19:47:34', '841br9Ed', '4496603'), + (19972, 81, 1042, 'attending', '2021-11-27 20:52:47', '2025-12-17 19:47:37', '841br9Ed', '4496607'), + (19973, 81, 1043, 'attending', '2021-10-21 21:03:59', '2025-12-17 19:47:35', '841br9Ed', '4496608'), + (19974, 81, 1045, 'attending', '2021-10-30 21:23:41', '2025-12-17 19:47:36', '841br9Ed', '4496610'), + (19975, 81, 1046, 'attending', '2021-10-16 15:20:45', '2025-12-17 19:47:35', '841br9Ed', '4496611'), + (19976, 81, 1047, 'attending', '2021-10-09 15:10:53', '2025-12-17 19:47:34', '841br9Ed', '4496612'), + (19977, 81, 1048, 'attending', '2021-11-08 23:47:10', '2025-12-17 19:47:36', '841br9Ed', '4496613'), + (19978, 81, 1049, 'attending', '2022-01-19 22:07:40', '2025-12-17 19:47:32', '841br9Ed', '4496614'), + (19979, 81, 1050, 'maybe', '2022-01-29 19:58:46', '2025-12-17 19:47:32', '841br9Ed', '4496615'), + (19980, 81, 1052, 'attending', '2022-01-14 16:33:22', '2025-12-17 19:47:31', '841br9Ed', '4496617'), + (19981, 81, 1053, 'attending', '2022-02-19 14:51:51', '2025-12-17 19:47:32', '841br9Ed', '4496618'), + (19982, 81, 1054, 'attending', '2022-03-18 14:39:37', '2025-12-17 19:47:25', '841br9Ed', '4496619'), + (19983, 81, 1055, 'not_attending', '2021-12-16 03:54:16', '2025-12-17 19:47:31', '841br9Ed', '4496621'), + (19984, 81, 1056, 'attending', '2022-01-03 03:11:36', '2025-12-17 19:47:31', '841br9Ed', '4496622'), + (19985, 81, 1057, 'attending', '2021-11-20 17:08:18', '2025-12-17 19:47:37', '841br9Ed', '4496624'), + (19986, 81, 1058, 'attending', '2022-02-24 17:18:12', '2025-12-17 19:47:33', '841br9Ed', '4496625'), + (19987, 81, 1059, 'not_attending', '2022-03-10 20:53:04', '2025-12-17 19:47:33', '841br9Ed', '4496626'), + (19988, 81, 1060, 'not_attending', '2022-03-25 15:35:49', '2025-12-17 19:47:25', '841br9Ed', '4496627'), + (19989, 81, 1061, 'attending', '2022-02-10 10:59:09', '2025-12-17 19:47:32', '841br9Ed', '4496628'), + (19990, 81, 1062, 'attending', '2022-03-03 23:45:35', '2025-12-17 19:47:33', '841br9Ed', '4496629'), + (19991, 81, 1063, 'attending', '2021-09-21 14:54:05', '2025-12-17 19:47:34', '841br9Ed', '4496630'), + (19992, 81, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '841br9Ed', '4508342'), + (19993, 81, 1074, 'maybe', '2021-09-29 20:03:24', '2025-12-17 19:47:34', '841br9Ed', '4528953'), + (19994, 81, 1077, 'maybe', '2021-10-11 14:20:29', '2025-12-17 19:47:34', '841br9Ed', '4540903'), + (19995, 81, 1079, 'maybe', '2021-10-20 21:16:50', '2025-12-17 19:47:35', '841br9Ed', '4563823'), + (19996, 81, 1082, 'maybe', '2021-10-15 17:37:06', '2025-12-17 19:47:35', '841br9Ed', '4566762'), + (19997, 81, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '841br9Ed', '4568602'), + (19998, 81, 1087, 'attending', '2021-10-15 08:38:15', '2025-12-17 19:47:35', '841br9Ed', '4572153'), + (19999, 81, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '841br9Ed', '4585962'), + (20000, 81, 1094, 'attending', '2021-10-30 16:04:01', '2025-12-17 19:47:36', '841br9Ed', '4587337'), + (20001, 81, 1095, 'maybe', '2021-10-27 21:32:24', '2025-12-17 19:47:36', '841br9Ed', '4596356'), + (20002, 81, 1097, 'attending', '2021-10-30 16:03:40', '2025-12-17 19:47:36', '841br9Ed', '4598860'), + (20003, 81, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '841br9Ed', '4598861'), + (20004, 81, 1099, 'attending', '2021-10-31 10:19:46', '2025-12-17 19:47:36', '841br9Ed', '4602797'), + (20005, 81, 1100, 'maybe', '2021-11-02 22:08:45', '2025-12-17 19:47:36', '841br9Ed', '4607305'), + (20006, 81, 1101, 'maybe', '2021-11-02 22:08:49', '2025-12-17 19:47:36', '841br9Ed', '4607339'), + (20007, 81, 1102, 'maybe', '2021-11-13 17:59:31', '2025-12-17 19:47:37', '841br9Ed', '4612098'), + (20008, 81, 1104, 'attending', '2021-11-08 23:47:08', '2025-12-17 19:47:36', '841br9Ed', '4618310'), + (20009, 81, 1108, 'attending', '2021-11-18 00:30:25', '2025-12-17 19:47:37', '841br9Ed', '4632276'), + (20010, 81, 1114, 'attending', '2021-11-12 01:19:38', '2025-12-17 19:47:36', '841br9Ed', '4637896'), + (20011, 81, 1116, 'attending', '2021-11-24 03:58:08', '2025-12-17 19:47:37', '841br9Ed', '4642994'), + (20012, 81, 1117, 'attending', '2021-12-09 00:37:48', '2025-12-17 19:47:37', '841br9Ed', '4642995'), + (20013, 81, 1118, 'attending', '2021-12-16 00:52:56', '2025-12-17 19:47:38', '841br9Ed', '4642996'), + (20014, 81, 1119, 'attending', '2021-12-20 17:43:59', '2025-12-17 19:47:31', '841br9Ed', '4642997'), + (20015, 81, 1122, 'attending', '2021-11-29 02:21:47', '2025-12-17 19:47:37', '841br9Ed', '4644023'), + (20016, 81, 1126, 'not_attending', '2021-12-09 21:10:04', '2025-12-17 19:47:38', '841br9Ed', '4645687'), + (20017, 81, 1127, 'attending', '2021-11-14 22:26:27', '2025-12-17 19:47:38', '841br9Ed', '4645698'), + (20018, 81, 1128, 'attending', '2021-11-14 22:31:53', '2025-12-17 19:47:37', '841br9Ed', '4645704'), + (20019, 81, 1129, 'attending', '2021-11-27 20:52:45', '2025-12-17 19:47:37', '841br9Ed', '4645705'), + (20020, 81, 1130, 'attending', '2021-11-30 05:41:27', '2025-12-17 19:47:37', '841br9Ed', '4658824'), + (20021, 81, 1131, 'not_attending', '2021-12-16 03:54:22', '2025-12-17 19:47:31', '841br9Ed', '4658825'), + (20022, 81, 1132, 'maybe', '2021-11-21 23:21:41', '2025-12-17 19:47:37', '841br9Ed', '4660657'), + (20023, 81, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '841br9Ed', '4668385'), + (20024, 81, 1137, 'attending', '2021-11-28 19:28:02', '2025-12-17 19:47:37', '841br9Ed', '4674797'), + (20025, 81, 1138, 'attending', '2021-11-28 19:28:07', '2025-12-17 19:47:37', '841br9Ed', '4675407'), + (20026, 81, 1139, 'maybe', '2021-12-02 23:13:00', '2025-12-17 19:47:37', '841br9Ed', '4675604'), + (20027, 81, 1140, 'maybe', '2021-12-04 02:03:44', '2025-12-17 19:47:37', '841br9Ed', '4679701'), + (20028, 81, 1143, 'attending', '2021-12-01 21:47:59', '2025-12-17 19:47:37', '841br9Ed', '4683667'), + (20029, 81, 1144, 'not_attending', '2021-12-07 22:27:17', '2025-12-17 19:47:37', '841br9Ed', '4687090'), + (20030, 81, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '841br9Ed', '4694407'), + (20031, 81, 1152, 'attending', '2022-01-07 01:19:43', '2025-12-17 19:47:31', '841br9Ed', '4708705'), + (20032, 81, 1153, 'attending', '2022-01-19 22:07:29', '2025-12-17 19:47:32', '841br9Ed', '4708707'), + (20033, 81, 1163, 'attending', '2022-01-02 13:37:57', '2025-12-17 19:47:31', '841br9Ed', '4724206'), + (20034, 81, 1173, 'attending', '2022-01-07 01:19:31', '2025-12-17 19:47:31', '841br9Ed', '4736495'), + (20035, 81, 1174, 'attending', '2022-01-14 16:32:28', '2025-12-17 19:47:31', '841br9Ed', '4736496'), + (20036, 81, 1175, 'attending', '2022-01-19 22:07:37', '2025-12-17 19:47:32', '841br9Ed', '4736497'), + (20037, 81, 1176, 'attending', '2022-02-05 16:56:48', '2025-12-17 19:47:32', '841br9Ed', '4736498'), + (20038, 81, 1177, 'attending', '2022-02-10 10:59:11', '2025-12-17 19:47:32', '841br9Ed', '4736499'), + (20039, 81, 1178, 'maybe', '2022-01-29 19:58:49', '2025-12-17 19:47:32', '841br9Ed', '4736500'), + (20040, 81, 1179, 'attending', '2022-02-19 14:51:50', '2025-12-17 19:47:32', '841br9Ed', '4736501'), + (20041, 81, 1180, 'attending', '2022-02-24 17:18:13', '2025-12-17 19:47:33', '841br9Ed', '4736502'), + (20042, 81, 1181, 'attending', '2022-03-02 14:04:39', '2025-12-17 19:47:33', '841br9Ed', '4736503'), + (20043, 81, 1182, 'not_attending', '2022-03-10 20:53:09', '2025-12-17 19:47:33', '841br9Ed', '4736504'), + (20044, 81, 1184, 'maybe', '2022-01-14 22:15:29', '2025-12-17 19:47:31', '841br9Ed', '4742350'), + (20045, 81, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '841br9Ed', '4746789'), + (20046, 81, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '841br9Ed', '4753929'), + (20047, 81, 1190, 'maybe', '2022-01-12 21:47:12', '2025-12-17 19:47:31', '841br9Ed', '4757377'), + (20048, 81, 1201, 'maybe', '2022-01-19 22:07:51', '2025-12-17 19:47:32', '841br9Ed', '4766841'), + (20049, 81, 1203, 'attending', '2022-01-22 00:47:13', '2025-12-17 19:47:32', '841br9Ed', '4773535'), + (20050, 81, 1206, 'attending', '2022-03-27 11:48:42', '2025-12-17 19:47:27', '841br9Ed', '4773578'), + (20051, 81, 1207, 'attending', '2022-05-02 17:22:09', '2025-12-17 19:47:28', '841br9Ed', '4773579'), + (20052, 81, 1215, 'maybe', '2022-02-24 21:54:12', '2025-12-17 19:47:33', '841br9Ed', '4780763'), + (20053, 81, 1216, 'maybe', '2022-01-29 19:58:53', '2025-12-17 19:47:32', '841br9Ed', '4781137'), + (20054, 81, 1232, 'not_attending', '2022-02-09 22:28:47', '2025-12-17 19:47:32', '841br9Ed', '5038850'), + (20055, 81, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '841br9Ed', '5045826'), + (20056, 81, 1238, 'not_attending', '2022-02-23 18:25:15', '2025-12-17 19:47:32', '841br9Ed', '5052236'), + (20057, 81, 1240, 'attending', '2022-03-14 02:02:36', '2025-12-17 19:47:33', '841br9Ed', '5052239'), + (20058, 81, 1241, 'maybe', '2022-03-23 22:09:51', '2025-12-17 19:47:25', '841br9Ed', '5052240'), + (20059, 81, 1242, 'maybe', '2022-03-30 22:31:31', '2025-12-17 19:47:25', '841br9Ed', '5052241'), + (20060, 81, 1243, 'attending', '2022-03-06 19:45:30', '2025-12-17 19:47:33', '841br9Ed', '5058336'), + (20061, 81, 1245, 'maybe', '2022-02-24 21:55:34', '2025-12-17 19:47:33', '841br9Ed', '5061301'), + (20062, 81, 1248, 'attending', '2022-02-23 18:42:22', '2025-12-17 19:47:33', '841br9Ed', '5065064'), + (20063, 81, 1249, 'attending', '2022-03-10 00:17:57', '2025-12-17 19:47:33', '841br9Ed', '5068530'), + (20064, 81, 1250, 'attending', '2022-03-03 23:45:16', '2025-12-17 19:47:33', '841br9Ed', '5069735'), + (20065, 81, 1253, 'maybe', '2022-03-03 23:46:16', '2025-12-17 19:47:33', '841br9Ed', '5129122'), + (20066, 81, 1259, 'maybe', '2022-03-03 23:47:17', '2025-12-17 19:47:33', '841br9Ed', '5132533'), + (20067, 81, 1261, 'maybe', '2022-03-03 23:46:52', '2025-12-17 19:47:33', '841br9Ed', '5154274'), + (20068, 81, 1264, 'attending', '2022-03-16 22:46:56', '2025-12-17 19:47:25', '841br9Ed', '5160281'), + (20069, 81, 1266, 'maybe', '2022-03-14 02:02:31', '2025-12-17 19:47:33', '841br9Ed', '5166407'), + (20070, 81, 1269, 'attending', '2022-03-18 14:40:07', '2025-12-17 19:47:25', '841br9Ed', '5179439'), + (20071, 81, 1270, 'maybe', '2022-03-18 14:40:26', '2025-12-17 19:47:25', '841br9Ed', '5181277'), + (20072, 81, 1271, 'maybe', '2022-03-18 14:39:50', '2025-12-17 19:47:25', '841br9Ed', '5181648'), + (20073, 81, 1272, 'attending', '2022-03-16 22:46:38', '2025-12-17 19:47:25', '841br9Ed', '5186582'), + (20074, 81, 1273, 'not_attending', '2022-03-25 15:35:52', '2025-12-17 19:47:25', '841br9Ed', '5186583'), + (20075, 81, 1274, 'attending', '2022-04-01 18:43:23', '2025-12-17 19:47:26', '841br9Ed', '5186585'), + (20076, 81, 1275, 'attending', '2022-04-01 18:43:22', '2025-12-17 19:47:26', '841br9Ed', '5186587'), + (20077, 81, 1281, 'attending', '2022-04-05 20:06:48', '2025-12-17 19:47:27', '841br9Ed', '5190437'), + (20078, 81, 1282, 'attending', '2022-03-18 14:40:33', '2025-12-17 19:47:25', '841br9Ed', '5191241'), + (20079, 81, 1284, 'attending', '2022-04-16 21:54:31', '2025-12-17 19:47:27', '841br9Ed', '5195095'), + (20080, 81, 1287, 'attending', '2022-03-23 01:05:02', '2025-12-17 19:47:25', '841br9Ed', '5199425'), + (20081, 81, 1288, 'attending', '2022-03-23 01:16:59', '2025-12-17 19:47:25', '841br9Ed', '5199460'), + (20082, 81, 1293, 'attending', '2022-03-28 18:59:46', '2025-12-17 19:47:27', '841br9Ed', '5214641'), + (20083, 81, 1295, 'attending', '2022-03-28 14:10:29', '2025-12-17 19:47:25', '841br9Ed', '5215609'), + (20084, 81, 1297, 'maybe', '2022-03-28 21:23:53', '2025-12-17 19:47:26', '841br9Ed', '5215989'), + (20085, 81, 1299, 'attending', '2022-03-30 01:14:16', '2025-12-17 19:47:25', '841br9Ed', '5217660'), + (20086, 81, 1301, 'attending', '2022-03-30 22:32:02', '2025-12-17 19:47:26', '841br9Ed', '5218175'), + (20087, 81, 1304, 'not_attending', '2022-04-06 21:31:50', '2025-12-17 19:47:26', '841br9Ed', '5223468'), + (20088, 81, 1305, 'maybe', '2022-04-10 22:48:17', '2025-12-17 19:47:27', '841br9Ed', '5223673'), + (20089, 81, 1306, 'attending', '2022-04-05 20:05:34', '2025-12-17 19:47:26', '841br9Ed', '5223682'), + (20090, 81, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '841br9Ed', '5223686'), + (20091, 81, 1308, 'not_attending', '2022-04-13 19:06:35', '2025-12-17 19:47:27', '841br9Ed', '5226703'), + (20092, 81, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '841br9Ed', '5227432'), + (20093, 81, 1310, 'attending', '2022-04-07 17:48:30', '2025-12-17 19:47:27', '841br9Ed', '5231071'), + (20094, 81, 1312, 'attending', '2022-04-08 03:10:45', '2025-12-17 19:47:27', '841br9Ed', '5231459'), + (20095, 81, 1313, 'attending', '2022-04-08 03:24:47', '2025-12-17 19:47:27', '841br9Ed', '5231461'), + (20096, 81, 1315, 'attending', '2022-04-11 12:38:16', '2025-12-17 19:47:27', '841br9Ed', '5237522'), + (20097, 81, 1330, 'not_attending', '2022-04-18 21:21:10', '2025-12-17 19:47:27', '841br9Ed', '5242155'), + (20098, 81, 1334, 'not_attending', '2022-04-14 18:09:09', '2025-12-17 19:47:27', '841br9Ed', '5244797'), + (20099, 81, 1337, 'attending', '2022-04-18 00:02:08', '2025-12-17 19:47:27', '841br9Ed', '5245036'), + (20100, 81, 1344, 'attending', '2022-04-17 16:32:14', '2025-12-17 19:47:28', '841br9Ed', '5247465'), + (20101, 81, 1346, 'attending', '2022-04-17 16:39:54', '2025-12-17 19:47:27', '841br9Ed', '5247467'), + (20102, 81, 1353, 'attending', '2022-04-21 16:23:23', '2025-12-17 19:47:27', '841br9Ed', '5251777'), + (20103, 81, 1357, 'attending', '2022-04-25 17:33:36', '2025-12-17 19:47:27', '841br9Ed', '5256017'), + (20104, 81, 1362, 'attending', '2022-04-25 17:31:06', '2025-12-17 19:47:28', '841br9Ed', '5260800'), + (20105, 81, 1368, 'attending', '2022-05-01 20:34:06', '2025-12-17 19:47:28', '841br9Ed', '5262783'), + (20106, 81, 1374, 'attending', '2022-05-02 17:22:01', '2025-12-17 19:47:28', '841br9Ed', '5269930'), + (20107, 81, 1375, 'attending', '2022-05-02 17:20:45', '2025-12-17 19:47:28', '841br9Ed', '5269932'), + (20108, 81, 1378, 'attending', '2022-05-10 20:01:21', '2025-12-17 19:47:28', '841br9Ed', '5271448'), + (20109, 81, 1379, 'attending', '2022-05-15 02:47:35', '2025-12-17 19:47:29', '841br9Ed', '5271449'), + (20110, 81, 1380, 'not_attending', '2022-05-15 02:48:03', '2025-12-17 19:47:30', '841br9Ed', '5271450'), + (20111, 81, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '841br9Ed', '5276469'), + (20112, 81, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '841br9Ed', '5278159'), + (20113, 81, 1394, 'not_attending', '2022-05-18 19:41:33', '2025-12-17 19:47:30', '841br9Ed', '5280667'), + (20114, 81, 1395, 'attending', '2022-05-07 16:06:26', '2025-12-17 19:47:28', '841br9Ed', '5281102'), + (20115, 81, 1397, 'attending', '2022-05-17 12:05:46', '2025-12-17 19:47:29', '841br9Ed', '5281104'), + (20116, 81, 1407, 'attending', '2022-06-01 15:49:28', '2025-12-17 19:47:30', '841br9Ed', '5363695'), + (20117, 81, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '841br9Ed', '5365960'), + (20118, 81, 1414, 'not_attending', '2022-05-20 23:58:31', '2025-12-17 19:47:29', '841br9Ed', '5368445'), + (20119, 81, 1415, 'maybe', '2022-06-03 14:50:31', '2025-12-17 19:47:30', '841br9Ed', '5368973'), + (20120, 81, 1428, 'attending', '2022-06-05 23:32:02', '2025-12-17 19:47:30', '841br9Ed', '5378247'), + (20121, 81, 1431, 'attending', '2022-06-03 14:49:28', '2025-12-17 19:47:30', '841br9Ed', '5389605'), + (20122, 81, 1441, 'not_attending', '2022-06-05 16:28:53', '2025-12-17 19:47:30', '841br9Ed', '5397171'), + (20123, 81, 1442, 'attending', '2022-06-05 23:32:41', '2025-12-17 19:47:17', '841br9Ed', '5397265'), + (20124, 81, 1443, 'attending', '2022-06-03 14:52:38', '2025-12-17 19:47:30', '841br9Ed', '5397613'), + (20125, 81, 1444, 'attending', '2022-06-05 23:32:38', '2025-12-17 19:47:30', '841br9Ed', '5397614'), + (20126, 81, 1445, 'attending', '2022-06-10 10:26:36', '2025-12-17 19:47:17', '841br9Ed', '5397615'), + (20127, 81, 1451, 'maybe', '2022-06-17 22:13:29', '2025-12-17 19:47:17', '841br9Ed', '5403967'), + (20128, 81, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '841br9Ed', '5404786'), + (20129, 81, 1459, 'attending', '2022-06-10 10:26:51', '2025-12-17 19:47:17', '841br9Ed', '5404793'), + (20130, 81, 1460, 'attending', '2022-06-12 20:36:02', '2025-12-17 19:47:31', '841br9Ed', '5404817'), + (20131, 81, 1462, 'not_attending', '2022-06-12 22:16:31', '2025-12-17 19:47:17', '841br9Ed', '5405203'), + (20132, 81, 1465, 'attending', '2022-06-12 03:06:46', '2025-12-17 19:47:31', '841br9Ed', '5406355'), + (20133, 81, 1478, 'maybe', '2022-06-24 21:24:57', '2025-12-17 19:47:19', '841br9Ed', '5408794'), + (20134, 81, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '841br9Ed', '5411699'), + (20135, 81, 1482, 'attending', '2022-06-20 03:03:19', '2025-12-17 19:47:19', '841br9Ed', '5412550'), + (20136, 81, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '841br9Ed', '5415046'), + (20137, 81, 1493, 'attending', '2022-06-24 19:22:58', '2025-12-17 19:47:19', '841br9Ed', '5420218'), + (20138, 81, 1494, 'not_attending', '2022-06-25 15:22:37', '2025-12-17 19:47:19', '841br9Ed', '5421626'), + (20139, 81, 1495, 'attending', '2022-06-27 19:28:37', '2025-12-17 19:47:19', '841br9Ed', '5422086'), + (20140, 81, 1498, 'not_attending', '2022-06-27 19:28:33', '2025-12-17 19:47:19', '841br9Ed', '5422406'), + (20141, 81, 1499, 'not_attending', '2022-06-27 18:11:26', '2025-12-17 19:47:19', '841br9Ed', '5422407'), + (20142, 81, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '841br9Ed', '5424565'), + (20143, 81, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '841br9Ed', '5426882'), + (20144, 81, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '841br9Ed', '5427083'), + (20145, 81, 1511, 'not_attending', '2022-07-06 23:43:26', '2025-12-17 19:47:19', '841br9Ed', '5437733'), + (20146, 81, 1513, 'attending', '2022-07-09 16:17:19', '2025-12-17 19:47:19', '841br9Ed', '5441125'), + (20147, 81, 1514, 'attending', '2022-07-19 13:23:00', '2025-12-17 19:47:20', '841br9Ed', '5441126'), + (20148, 81, 1515, 'attending', '2022-08-04 18:57:26', '2025-12-17 19:47:21', '841br9Ed', '5441128'), + (20149, 81, 1516, 'not_attending', '2022-08-19 23:29:40', '2025-12-17 19:47:23', '841br9Ed', '5441129'), + (20150, 81, 1517, 'not_attending', '2022-08-23 20:13:15', '2025-12-17 19:47:23', '841br9Ed', '5441130'), + (20151, 81, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '841br9Ed', '5441131'), + (20152, 81, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '841br9Ed', '5441132'), + (20153, 81, 1522, 'attending', '2022-07-18 14:15:14', '2025-12-17 19:47:20', '841br9Ed', '5442832'), + (20154, 81, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '841br9Ed', '5446643'), + (20155, 81, 1531, 'attending', '2022-07-16 12:37:49', '2025-12-17 19:47:19', '841br9Ed', '5448756'), + (20156, 81, 1532, 'attending', '2022-07-18 14:14:59', '2025-12-17 19:47:20', '841br9Ed', '5448757'), + (20157, 81, 1534, 'attending', '2022-08-04 18:57:25', '2025-12-17 19:47:21', '841br9Ed', '5448759'), + (20158, 81, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '841br9Ed', '5453325'), + (20159, 81, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '841br9Ed', '5454516'), + (20160, 81, 1544, 'attending', '2022-09-13 23:47:25', '2025-12-17 19:47:11', '841br9Ed', '5454517'), + (20161, 81, 1545, 'maybe', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '841br9Ed', '5454605'), + (20162, 81, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '841br9Ed', '5455037'), + (20163, 81, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '841br9Ed', '5461278'), + (20164, 81, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '841br9Ed', '5469480'), + (20165, 81, 1565, 'attending', '2022-07-27 00:31:08', '2025-12-17 19:47:21', '841br9Ed', '5471073'), + (20166, 81, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '841br9Ed', '5474663'), + (20167, 81, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '841br9Ed', '5482022'), + (20168, 81, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '841br9Ed', '5482793'), + (20169, 81, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '841br9Ed', '5488912'), + (20170, 81, 1583, 'attending', '2022-08-10 00:32:19', '2025-12-17 19:47:22', '841br9Ed', '5492002'), + (20171, 81, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '841br9Ed', '5492192'), + (20172, 81, 1588, 'not_attending', '2022-08-08 19:40:40', '2025-12-17 19:47:22', '841br9Ed', '5493139'), + (20173, 81, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '841br9Ed', '5493200'), + (20174, 81, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '841br9Ed', '5502188'), + (20175, 81, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '841br9Ed', '5505059'), + (20176, 81, 1609, 'maybe', '2022-08-25 20:16:05', '2025-12-17 19:47:23', '841br9Ed', '5506590'), + (20177, 81, 1610, 'maybe', '2022-08-25 20:16:28', '2025-12-17 19:47:23', '841br9Ed', '5506595'), + (20178, 81, 1612, 'not_attending', '2022-09-26 19:57:04', '2025-12-17 19:47:12', '841br9Ed', '5507653'), + (20179, 81, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '841br9Ed', '5509055'), + (20180, 81, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '841br9Ed', '5512862'), + (20181, 81, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '841br9Ed', '5513985'), + (20182, 81, 1626, 'attending', '2022-08-26 00:29:00', '2025-12-17 19:47:11', '841br9Ed', '5519981'), + (20183, 81, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '841br9Ed', '5522550'), + (20184, 81, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '841br9Ed', '5534683'), + (20185, 81, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '841br9Ed', '5537735'), + (20186, 81, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '841br9Ed', '5540859'), + (20187, 81, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '841br9Ed', '5546619'), + (20188, 81, 1649, 'attending', '2022-09-03 15:36:37', '2025-12-17 19:47:24', '841br9Ed', '5549346'), + (20189, 81, 1652, 'maybe', '2022-09-08 14:16:56', '2025-12-17 19:47:24', '841br9Ed', '5552671'), + (20190, 81, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '841br9Ed', '5555245'), + (20191, 81, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '841br9Ed', '5557747'), + (20192, 81, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '841br9Ed', '5560255'), + (20193, 81, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '841br9Ed', '5562906'), + (20194, 81, 1667, 'maybe', '2022-09-24 18:10:32', '2025-12-17 19:47:11', '841br9Ed', '5563221'), + (20195, 81, 1668, 'not_attending', '2022-10-01 22:06:42', '2025-12-17 19:47:12', '841br9Ed', '5563222'), + (20196, 81, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '841br9Ed', '5600604'), + (20197, 81, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '841br9Ed', '5605544'), + (20198, 81, 1699, 'maybe', '2022-09-26 12:15:58', '2025-12-17 19:47:12', '841br9Ed', '5606737'), + (20199, 81, 1705, 'attending', '2022-09-29 21:29:18', '2025-12-17 19:47:12', '841br9Ed', '5612209'), + (20200, 81, 1716, 'attending', '2022-10-03 20:58:10', '2025-12-17 19:47:12', '841br9Ed', '5622429'), + (20201, 81, 1719, 'attending', '2022-10-07 18:25:50', '2025-12-17 19:47:12', '841br9Ed', '5630958'), + (20202, 81, 1720, 'attending', '2022-10-14 19:37:29', '2025-12-17 19:47:12', '841br9Ed', '5630959'), + (20203, 81, 1721, 'attending', '2022-10-22 14:18:29', '2025-12-17 19:47:13', '841br9Ed', '5630960'), + (20204, 81, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '841br9Ed', '5630961'), + (20205, 81, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '841br9Ed', '5630962'), + (20206, 81, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '841br9Ed', '5630966'), + (20207, 81, 1725, 'attending', '2022-11-12 01:18:33', '2025-12-17 19:47:16', '841br9Ed', '5630967'), + (20208, 81, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '841br9Ed', '5630968'), + (20209, 81, 1727, 'attending', '2022-11-21 23:16:55', '2025-12-17 19:47:16', '841br9Ed', '5630969'), + (20210, 81, 1728, 'attending', '2022-12-05 02:49:04', '2025-12-17 19:47:17', '841br9Ed', '5630970'), + (20211, 81, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '841br9Ed', '5635406'), + (20212, 81, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '841br9Ed', '5638765'), + (20213, 81, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '841br9Ed', '5640097'), + (20214, 81, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '841br9Ed', '5640843'), + (20215, 81, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '841br9Ed', '5641521'), + (20216, 81, 1744, 'attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '841br9Ed', '5642818'), + (20217, 81, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '841br9Ed', '5652395'), + (20218, 81, 1753, 'maybe', '2022-10-16 14:00:34', '2025-12-17 19:47:13', '841br9Ed', '5656228'), + (20219, 81, 1759, 'attending', '2022-10-22 20:56:18', '2025-12-17 19:47:13', '841br9Ed', '5669097'), + (20220, 81, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '841br9Ed', '5670445'), + (20221, 81, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '841br9Ed', '5671637'), + (20222, 81, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '841br9Ed', '5672329'), + (20223, 81, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '841br9Ed', '5674057'), + (20224, 81, 1767, 'maybe', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '841br9Ed', '5674060'), + (20225, 81, 1769, 'maybe', '2022-11-03 22:25:55', '2025-12-17 19:47:15', '841br9Ed', '5676351'), + (20226, 81, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '841br9Ed', '5677461'), + (20227, 81, 1776, 'maybe', '2022-11-09 21:05:17', '2025-12-17 19:47:15', '841br9Ed', '5691067'), + (20228, 81, 1777, 'attending', '2022-11-07 22:35:40', '2025-12-17 19:47:15', '841br9Ed', '5693021'), + (20229, 81, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '841br9Ed', '5698046'), + (20230, 81, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '841br9Ed', '5699760'), + (20231, 81, 1790, 'maybe', '2022-11-12 01:18:00', '2025-12-17 19:47:15', '841br9Ed', '5727424'), + (20232, 81, 1793, 'maybe', '2022-11-21 23:16:49', '2025-12-17 19:47:16', '841br9Ed', '5736365'), + (20233, 81, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '841br9Ed', '5741601'), + (20234, 81, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '841br9Ed', '5763458'), + (20235, 81, 1813, 'attending', '2023-04-29 21:53:12', '2025-12-17 19:47:01', '841br9Ed', '5764683'), + (20236, 81, 1815, 'attending', '2023-02-17 15:01:19', '2025-12-17 19:47:07', '841br9Ed', '5764685'), + (20237, 81, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '841br9Ed', '5774172'), + (20238, 81, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '841br9Ed', '5818247'), + (20239, 81, 1834, 'maybe', '2022-12-10 13:42:48', '2025-12-17 19:47:17', '841br9Ed', '5819470'), + (20240, 81, 1835, 'attending', '2023-01-04 03:00:50', '2025-12-17 19:47:05', '841br9Ed', '5819471'), + (20241, 81, 1841, 'attending', '2022-12-23 15:57:09', '2025-12-17 19:47:05', '841br9Ed', '5827665'), + (20242, 81, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '841br9Ed', '5827739'), + (20243, 81, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '841br9Ed', '5844306'), + (20244, 81, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '841br9Ed', '5850159'), + (20245, 81, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '841br9Ed', '5858999'), + (20246, 81, 1852, 'maybe', '2023-01-11 20:35:32', '2025-12-17 19:47:05', '841br9Ed', '5869898'), + (20247, 81, 1853, 'attending', '2023-01-10 02:34:14', '2025-12-17 19:47:05', '841br9Ed', '5871984'), + (20248, 81, 1856, 'maybe', '2023-01-17 16:13:45', '2025-12-17 19:47:05', '841br9Ed', '5873970'), + (20249, 81, 1860, 'maybe', '2023-01-16 17:10:51', '2025-12-17 19:47:05', '841br9Ed', '5876309'), + (20250, 81, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '841br9Ed', '5876354'), + (20251, 81, 1864, 'attending', '2023-01-16 17:10:45', '2025-12-17 19:47:05', '841br9Ed', '5879675'), + (20252, 81, 1865, 'attending', '2023-01-26 12:25:58', '2025-12-17 19:47:06', '841br9Ed', '5879676'), + (20253, 81, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '841br9Ed', '5880939'), + (20254, 81, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '841br9Ed', '5880940'), + (20255, 81, 1868, 'maybe', '2023-02-19 16:39:32', '2025-12-17 19:47:07', '841br9Ed', '5880942'), + (20256, 81, 1869, 'maybe', '2023-02-28 19:47:14', '2025-12-17 19:47:09', '841br9Ed', '5880943'), + (20257, 81, 1872, 'maybe', '2023-01-20 20:18:45', '2025-12-17 19:47:05', '841br9Ed', '5883546'), + (20258, 81, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '841br9Ed', '5887890'), + (20259, 81, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '841br9Ed', '5888598'), + (20260, 81, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '841br9Ed', '5893260'), + (20261, 81, 1881, 'attending', '2023-01-25 03:49:39', '2025-12-17 19:47:07', '841br9Ed', '5894218'), + (20262, 81, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '841br9Ed', '5899826'), + (20263, 81, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '841br9Ed', '5900199'), + (20264, 81, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '841br9Ed', '5900200'), + (20265, 81, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '841br9Ed', '5900202'), + (20266, 81, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '841br9Ed', '5900203'), + (20267, 81, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '841br9Ed', '5901108'), + (20268, 81, 1897, 'attending', '2023-02-10 14:29:22', '2025-12-17 19:47:07', '841br9Ed', '5901128'), + (20269, 81, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '841br9Ed', '5909655'), + (20270, 81, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '841br9Ed', '5910522'), + (20271, 81, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '841br9Ed', '5910526'), + (20272, 81, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '841br9Ed', '5910528'), + (20273, 81, 1920, 'attending', '2023-02-14 00:24:42', '2025-12-17 19:47:07', '841br9Ed', '5914091'), + (20274, 81, 1922, 'attending', '2023-02-12 18:27:32', '2025-12-17 19:47:07', '841br9Ed', '5916219'), + (20275, 81, 1923, 'attending', '2023-02-18 18:31:09', '2025-12-17 19:47:07', '841br9Ed', '5930436'), + (20276, 81, 1933, 'attending', '2023-02-20 16:56:35', '2025-12-17 19:47:08', '841br9Ed', '5936234'), + (20277, 81, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '841br9Ed', '5958351'), + (20278, 81, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '841br9Ed', '5959751'), + (20279, 81, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '841br9Ed', '5959755'), + (20280, 81, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '841br9Ed', '5960055'), + (20281, 81, 1941, 'maybe', '2023-02-25 23:34:41', '2025-12-17 19:47:09', '841br9Ed', '5961684'), + (20282, 81, 1944, 'attending', '2023-02-26 03:03:03', '2025-12-17 19:47:09', '841br9Ed', '5962132'), + (20283, 81, 1945, 'attending', '2023-02-27 21:22:18', '2025-12-17 19:47:09', '841br9Ed', '5962133'), + (20284, 81, 1946, 'attending', '2023-02-27 21:22:26', '2025-12-17 19:46:56', '841br9Ed', '5962134'), + (20285, 81, 1947, 'attending', '2023-02-25 23:59:31', '2025-12-17 19:47:09', '841br9Ed', '5962233'), + (20286, 81, 1948, 'attending', '2023-02-27 21:22:35', '2025-12-17 19:46:57', '841br9Ed', '5962317'), + (20287, 81, 1949, 'not_attending', '2023-02-26 04:44:40', '2025-12-17 19:46:59', '841br9Ed', '5962318'), + (20288, 81, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '841br9Ed', '5965933'), + (20289, 81, 1953, 'maybe', '2023-03-01 20:57:20', '2025-12-17 19:47:09', '841br9Ed', '5966307'), + (20290, 81, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '841br9Ed', '5967014'), + (20291, 81, 1956, 'attending', '2023-03-06 04:33:10', '2025-12-17 19:47:09', '841br9Ed', '5972763'), + (20292, 81, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '841br9Ed', '5972815'), + (20293, 81, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '841br9Ed', '5974016'), + (20294, 81, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '841br9Ed', '5981515'), + (20295, 81, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '841br9Ed', '5993516'), + (20296, 81, 1972, 'attending', '2023-03-16 01:28:27', '2025-12-17 19:46:56', '841br9Ed', '5993776'), + (20297, 81, 1973, 'maybe', '2023-03-19 03:22:20', '2025-12-17 19:46:56', '841br9Ed', '5993777'), + (20298, 81, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '841br9Ed', '5998939'), + (20299, 81, 1978, 'maybe', '2023-03-26 07:35:24', '2025-12-17 19:46:58', '841br9Ed', '6028191'), + (20300, 81, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '841br9Ed', '6040066'), + (20301, 81, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '841br9Ed', '6042717'), + (20302, 81, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '841br9Ed', '6044838'), + (20303, 81, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '841br9Ed', '6044839'), + (20304, 81, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841br9Ed', '6045684'), + (20305, 81, 1992, 'attending', '2023-04-01 00:28:29', '2025-12-17 19:46:58', '841br9Ed', '6048742'), + (20306, 81, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '841br9Ed', '6050104'), + (20307, 81, 1997, 'attending', '2023-04-03 13:31:12', '2025-12-17 19:46:58', '841br9Ed', '6051604'), + (20308, 81, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '841br9Ed', '6053195'), + (20309, 81, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '841br9Ed', '6053198'), + (20310, 81, 2010, 'attending', '2023-04-07 18:33:36', '2025-12-17 19:46:59', '841br9Ed', '6056085'), + (20311, 81, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '841br9Ed', '6056916'), + (20312, 81, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '841br9Ed', '6059290'), + (20313, 81, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '841br9Ed', '6060328'), + (20314, 81, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '841br9Ed', '6061037'), + (20315, 81, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '841br9Ed', '6061039'), + (20316, 81, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', '841br9Ed', '6061099'), + (20317, 81, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '841br9Ed', '6067245'), + (20318, 81, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '841br9Ed', '6068094'), + (20319, 81, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '841br9Ed', '6068252'), + (20320, 81, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '841br9Ed', '6068253'), + (20321, 81, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '841br9Ed', '6068254'), + (20322, 81, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '841br9Ed', '6068280'), + (20323, 81, 2032, 'attending', '2023-05-20 21:20:46', '2025-12-17 19:47:04', '841br9Ed', '6068281'), + (20324, 81, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '841br9Ed', '6069093'), + (20325, 81, 2039, 'attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', '841br9Ed', '6072398'), + (20326, 81, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '841br9Ed', '6072528'), + (20327, 81, 2043, 'maybe', '2023-04-25 22:03:35', '2025-12-17 19:47:01', '841br9Ed', '6073023'), + (20328, 81, 2044, 'attending', '2023-04-26 00:28:45', '2025-12-17 19:47:03', '841br9Ed', '6073678'), + (20329, 81, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '841br9Ed', '6079840'), + (20330, 81, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '841br9Ed', '6083398'), + (20331, 81, 2056, 'attending', '2023-05-09 19:49:34', '2025-12-17 19:47:02', '841br9Ed', '6093504'), + (20332, 81, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '841br9Ed', '6097414'), + (20333, 81, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '841br9Ed', '6097442'), + (20334, 81, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '841br9Ed', '6097684'), + (20335, 81, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '841br9Ed', '6098762'), + (20336, 81, 2064, 'attending', '2023-06-24 16:20:23', '2025-12-17 19:46:50', '841br9Ed', '6099988'), + (20337, 81, 2065, 'attending', '2023-05-20 21:20:35', '2025-12-17 19:46:49', '841br9Ed', '6101169'), + (20338, 81, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '841br9Ed', '6101361'), + (20339, 81, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '841br9Ed', '6101362'), + (20340, 81, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '841br9Ed', '6103752'), + (20341, 81, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '841br9Ed', '6107314'), + (20342, 81, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '841br9Ed', '6120034'), + (20343, 81, 2089, 'maybe', '2023-06-07 23:57:16', '2025-12-17 19:47:04', '841br9Ed', '6125227'), + (20344, 81, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', '841br9Ed', '6135924'), + (20345, 81, 2095, 'attending', '2023-06-05 20:05:26', '2025-12-17 19:46:51', '841br9Ed', '6136733'), + (20346, 81, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '841br9Ed', '6137989'), + (20347, 81, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '841br9Ed', '6150864'), + (20348, 81, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '841br9Ed', '6155491'), + (20349, 81, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '841br9Ed', '6164417'), + (20350, 81, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '841br9Ed', '6166388'), + (20351, 81, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '841br9Ed', '6176439'), + (20352, 81, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '841br9Ed', '6182410'), + (20353, 81, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '841br9Ed', '6185812'), + (20354, 81, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '841br9Ed', '6187651'), + (20355, 81, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '841br9Ed', '6187963'), + (20356, 81, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '841br9Ed', '6187964'), + (20357, 81, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '841br9Ed', '6187966'), + (20358, 81, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '841br9Ed', '6187967'), + (20359, 81, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '841br9Ed', '6187969'), + (20360, 81, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '841br9Ed', '6334878'), + (20361, 81, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '841br9Ed', '6337236'), + (20362, 81, 2154, 'maybe', '2023-07-11 23:11:58', '2025-12-17 19:46:52', '841br9Ed', '6337689'), + (20363, 81, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '841br9Ed', '6337970'), + (20364, 81, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '841br9Ed', '6338308'), + (20365, 81, 2157, 'not_attending', '2023-07-12 21:54:13', '2025-12-17 19:46:52', '841br9Ed', '6338342'), + (20366, 81, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '841br9Ed', '6341710'), + (20367, 81, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '841br9Ed', '6342044'), + (20368, 81, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '841br9Ed', '6342298'), + (20369, 81, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '841br9Ed', '6343294'), + (20370, 81, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '841br9Ed', '6347034'), + (20371, 81, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '841br9Ed', '6347056'), + (20372, 81, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '841br9Ed', '6353830'), + (20373, 81, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '841br9Ed', '6353831'), + (20374, 81, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '841br9Ed', '6357867'), + (20375, 81, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '841br9Ed', '6358652'), + (20376, 81, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '841br9Ed', '6358668'), + (20377, 81, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '841br9Ed', '6358669'), + (20378, 81, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '841br9Ed', '6361709'), + (20379, 81, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '841br9Ed', '6361710'), + (20380, 81, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '841br9Ed', '6361711'), + (20381, 81, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '841br9Ed', '6361712'), + (20382, 81, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '841br9Ed', '6361713'), + (20383, 81, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '841br9Ed', '6382573'), + (20384, 81, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '841br9Ed', '6388604'), + (20385, 81, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '841br9Ed', '6394629'), + (20386, 81, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '841br9Ed', '6394631'), + (20387, 81, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '841br9Ed', '6440863'), + (20388, 81, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '841br9Ed', '6445440'), + (20389, 81, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '841br9Ed', '6453951'), + (20390, 81, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '841br9Ed', '6461696'), + (20391, 81, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '841br9Ed', '6462129'), + (20392, 81, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '841br9Ed', '6463218'), + (20393, 81, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '841br9Ed', '6472181'), + (20394, 81, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', '841br9Ed', '6474276'), + (20395, 81, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '841br9Ed', '6482693'), + (20396, 81, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '841br9Ed', '6484200'), + (20397, 81, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '841br9Ed', '6484680'), + (20398, 81, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '841br9Ed', '6507741'), + (20399, 81, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '841br9Ed', '6514659'), + (20400, 81, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '841br9Ed', '6514660'), + (20401, 81, 2324, 'not_attending', '2023-12-09 19:40:29', '2025-12-17 19:46:49', '841br9Ed', '6514662'), + (20402, 81, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '841br9Ed', '6519103'), + (20403, 81, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '841br9Ed', '6535681'), + (20404, 81, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '841br9Ed', '6584747'), + (20405, 81, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '841br9Ed', '6587097'), + (20406, 81, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '841br9Ed', '6609022'), + (20407, 81, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '841br9Ed', '6644187'), + (20408, 81, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '841br9Ed', '6648951'), + (20409, 81, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '841br9Ed', '6648952'), + (20410, 81, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '841br9Ed', '6655401'), + (20411, 81, 2399, 'attending', '2024-01-13 18:46:29', '2025-12-17 19:46:38', '841br9Ed', '6657583'), + (20412, 81, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '841br9Ed', '6661585'), + (20413, 81, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '841br9Ed', '6661588'), + (20414, 81, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '841br9Ed', '6661589'), + (20415, 81, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '841br9Ed', '6699906'), + (20416, 81, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '841br9Ed', '6699913'), + (20417, 81, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '841br9Ed', '6701109'), + (20418, 81, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '841br9Ed', '6705219'), + (20419, 81, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '841br9Ed', '6710153'), + (20420, 81, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '841br9Ed', '6711552'), + (20421, 81, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '841br9Ed', '6711553'), + (20422, 81, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '841br9Ed', '6722688'), + (20423, 81, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '841br9Ed', '6730620'), + (20424, 81, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '841br9Ed', '6740364'), + (20425, 81, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '841br9Ed', '6743829'), + (20426, 81, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '841br9Ed', '7030380'), + (20427, 81, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '841br9Ed', '7033677'), + (20428, 81, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '841br9Ed', '7044715'), + (20429, 81, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '841br9Ed', '7050318'), + (20430, 81, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '841br9Ed', '7050319'), + (20431, 81, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '841br9Ed', '7050322'), + (20432, 81, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '841br9Ed', '7057804'), + (20433, 81, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '841br9Ed', '7072824'), + (20434, 81, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '841br9Ed', '7074348'), + (20435, 81, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '841br9Ed', '7074364'), + (20436, 81, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '841br9Ed', '7089267'), + (20437, 81, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '841br9Ed', '7098747'), + (20438, 81, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '841br9Ed', '7113468'), + (20439, 81, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '841br9Ed', '7114856'), + (20440, 81, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '841br9Ed', '7114951'), + (20441, 81, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '841br9Ed', '7114955'), + (20442, 81, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '841br9Ed', '7114956'), + (20443, 81, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '841br9Ed', '7114957'), + (20444, 81, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '841br9Ed', '7159484'), + (20445, 81, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '841br9Ed', '7178446'), + (20446, 81, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '841br9Ed', '7220467'), + (20447, 81, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '841br9Ed', '7240354'), + (20448, 81, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '841br9Ed', '7251633'), + (20449, 81, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '841br9Ed', '7324073'), + (20450, 81, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '841br9Ed', '7324074'), + (20451, 81, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '841br9Ed', '7324075'), + (20452, 81, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '841br9Ed', '7324078'), + (20453, 81, 2697, 'attending', '2024-08-30 23:54:52', '2025-12-17 19:46:32', '841br9Ed', '7324082'), + (20454, 81, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '841br9Ed', '7331457'), + (20455, 81, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '841br9Ed', '7363643'), + (20456, 81, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '841br9Ed', '7368606'), + (20457, 81, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '841br9Ed', '7397462'), + (20458, 81, 2808, 'attending', '2024-08-30 22:27:47', '2025-12-17 19:46:32', '841br9Ed', '7412860'), + (20459, 81, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '841br9Ed', '7424275'), + (20460, 81, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '841br9Ed', '7424276'), + (20461, 81, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '841br9Ed', '7432751'), + (20462, 81, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '841br9Ed', '7432752'), + (20463, 81, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '841br9Ed', '7432753'), + (20464, 81, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '841br9Ed', '7432754'), + (20465, 81, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '841br9Ed', '7432755'), + (20466, 81, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '841br9Ed', '7432756'), + (20467, 81, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '841br9Ed', '7432758'), + (20468, 81, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '841br9Ed', '7432759'), + (20469, 81, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '841br9Ed', '7433834'), + (20470, 81, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '841br9Ed', '7470197'), + (20471, 81, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '841br9Ed', '7685613'), + (20472, 81, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '841br9Ed', '7688194'), + (20473, 81, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '841br9Ed', '7688196'), + (20474, 81, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '841br9Ed', '7688289'), + (20475, 81, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '841br9Ed', '7692763'), + (20476, 81, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '841br9Ed', '7697552'), + (20477, 81, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '841br9Ed', '7699878'), + (20478, 81, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '841br9Ed', '7704043'), + (20479, 81, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '841br9Ed', '7712467'), + (20480, 81, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '841br9Ed', '7713585'), + (20481, 81, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '841br9Ed', '7713586'), + (20482, 81, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '841br9Ed', '7738518'), + (20483, 81, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', '841br9Ed', '7750632'), + (20484, 81, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '841br9Ed', '7750636'), + (20485, 81, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '841br9Ed', '7796540'), + (20486, 81, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '841br9Ed', '7796541'), + (20487, 81, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '841br9Ed', '7796542'), + (20488, 81, 2979, 'maybe', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '841br9Ed', '7825913'), + (20489, 81, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '841br9Ed', '7826209'), + (20490, 81, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '841br9Ed', '7834742'), + (20491, 81, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '841br9Ed', '7842108'), + (20492, 81, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '841br9Ed', '7842902'), + (20493, 81, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '841br9Ed', '7842903'), + (20494, 81, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '841br9Ed', '7842904'), + (20495, 81, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '841br9Ed', '7842905'), + (20496, 81, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '841br9Ed', '7855719'), + (20497, 81, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '841br9Ed', '7860683'), + (20498, 81, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '841br9Ed', '7860684'), + (20499, 81, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '841br9Ed', '7866095'), + (20500, 81, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '841br9Ed', '7869170'), + (20501, 81, 3014, 'not_attending', '2025-03-31 23:13:03', '2025-12-17 19:46:20', '841br9Ed', '7869185'), + (20502, 81, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '841br9Ed', '7869188'), + (20503, 81, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '841br9Ed', '7869201'), + (20504, 81, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '841br9Ed', '7877465'), + (20505, 81, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '841br9Ed', '7878570'), + (20506, 81, 3055, 'maybe', '2025-03-27 22:56:55', '2025-12-17 19:46:19', '841br9Ed', '7888118'), + (20507, 81, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '841br9Ed', '7888250'), + (20508, 81, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '841br9Ed', '7904777'), + (20509, 81, 3095, 'attending', '2025-05-03 22:33:57', '2025-12-17 19:46:20', '841br9Ed', '8342293'), + (20510, 81, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '841br9Ed', '8349164'), + (20511, 81, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '841br9Ed', '8349545'), + (20512, 81, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '841br9Ed', '8353584'), + (20513, 81, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '841br9Ed', '8368028'), + (20514, 81, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '841br9Ed', '8368029'), + (20515, 81, 3133, 'not_attending', '2025-05-29 14:36:06', '2025-12-17 19:46:14', '841br9Ed', '8368030'), + (20516, 81, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '841br9Ed', '8388462'), + (20517, 81, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '841br9Ed', '8400273'), + (20518, 81, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '841br9Ed', '8400274'), + (20519, 81, 3155, 'attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '841br9Ed', '8400275'), + (20520, 81, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '841br9Ed', '8400276'), + (20521, 81, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '841br9Ed', '8404977'), + (20522, 81, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '841br9Ed', '8430783'), + (20523, 81, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '841br9Ed', '8430784'), + (20524, 81, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '841br9Ed', '8430799'), + (20525, 81, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '841br9Ed', '8430800'), + (20526, 81, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '841br9Ed', '8430801'), + (20527, 81, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '841br9Ed', '8438709'), + (20528, 81, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '841br9Ed', '8457738'), + (20529, 81, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '841br9Ed', '8459566'), + (20530, 81, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '841br9Ed', '8459567'), + (20531, 81, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '841br9Ed', '8461032'), + (20532, 81, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '841br9Ed', '8477877'), + (20533, 81, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '841br9Ed', '8485688'), + (20534, 81, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '841br9Ed', '8490587'), + (20535, 81, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '841br9Ed', '8493552'), + (20536, 81, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '841br9Ed', '8493553'), + (20537, 81, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '841br9Ed', '8493554'), + (20538, 81, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '841br9Ed', '8493555'), + (20539, 81, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '841br9Ed', '8493556'), + (20540, 81, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '841br9Ed', '8493557'), + (20541, 81, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '841br9Ed', '8493558'), + (20542, 81, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '841br9Ed', '8493559'), + (20543, 81, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '841br9Ed', '8493560'), + (20544, 81, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '841br9Ed', '8493561'), + (20545, 81, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '841br9Ed', '8493572'), + (20546, 81, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '841br9Ed', '8540725'), + (20547, 81, 3295, 'maybe', '2025-11-01 21:43:02', '2025-12-17 19:46:14', '841br9Ed', '8547541'), + (20548, 81, 3302, 'attending', '2025-11-13 07:14:13', '2025-12-17 19:46:14', '841br9Ed', '8550022'), + (20549, 81, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '841br9Ed', '8555421'), + (20550, 81, 3323, 'not_attending', '2025-11-15 21:10:44', '2025-12-17 19:46:14', '841br9Ed', '8555522'), + (20551, 82, 245, 'attending', '2020-12-01 00:30:24', '2025-12-17 19:47:54', 'kdK0eo5m', '3149476'), + (20552, 82, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'kdK0eo5m', '3285414'), + (20553, 82, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'kdK0eo5m', '3313856'), + (20554, 82, 496, 'attending', '2020-12-10 22:46:44', '2025-12-17 19:47:54', 'kdK0eo5m', '3314269'), + (20555, 82, 497, 'not_attending', '2020-12-18 00:31:39', '2025-12-17 19:47:55', 'kdK0eo5m', '3314270'), + (20556, 82, 499, 'attending', '2020-12-12 00:59:15', '2025-12-17 19:47:55', 'kdK0eo5m', '3314909'), + (20557, 82, 500, 'maybe', '2020-12-19 00:25:12', '2025-12-17 19:47:55', 'kdK0eo5m', '3314964'), + (20558, 82, 501, 'attending', '2020-12-09 00:27:13', '2025-12-17 19:47:54', 'kdK0eo5m', '3317834'), + (20559, 82, 502, 'attending', '2020-12-11 06:51:42', '2025-12-17 19:47:55', 'kdK0eo5m', '3323365'), + (20560, 82, 506, 'attending', '2020-12-14 00:48:42', '2025-12-17 19:47:55', 'kdK0eo5m', '3323375'), + (20561, 82, 513, 'attending', '2020-12-19 19:29:40', '2025-12-17 19:47:55', 'kdK0eo5m', '3329383'), + (20562, 82, 517, 'maybe', '2021-01-04 21:11:25', '2025-12-17 19:47:48', 'kdK0eo5m', '3337137'), + (20563, 82, 518, 'maybe', '2021-01-04 21:11:06', '2025-12-17 19:47:48', 'kdK0eo5m', '3337138'), + (20564, 82, 526, 'attending', '2020-12-31 12:30:21', '2025-12-17 19:47:48', 'kdK0eo5m', '3351539'), + (20565, 82, 529, 'maybe', '2021-01-04 21:10:53', '2025-12-17 19:47:48', 'kdK0eo5m', '3364568'), + (20566, 82, 532, 'maybe', '2021-01-08 06:41:28', '2025-12-17 19:47:48', 'kdK0eo5m', '3381412'), + (20567, 82, 534, 'attending', '2021-01-08 06:41:34', '2025-12-17 19:47:48', 'kdK0eo5m', '3384157'), + (20568, 82, 536, 'attending', '2021-01-08 06:41:36', '2025-12-17 19:47:48', 'kdK0eo5m', '3386848'), + (20569, 82, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdK0eo5m', '3389527'), + (20570, 82, 542, 'attending', '2021-01-11 21:13:22', '2025-12-17 19:47:48', 'kdK0eo5m', '3395013'), + (20571, 82, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdK0eo5m', '3396499'), + (20572, 82, 548, 'attending', '2021-01-14 04:58:42', '2025-12-17 19:47:48', 'kdK0eo5m', '3403650'), + (20573, 82, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdK0eo5m', '3406988'), + (20574, 82, 550, 'attending', '2021-01-18 00:43:48', '2025-12-17 19:47:48', 'kdK0eo5m', '3407018'), + (20575, 82, 555, 'attending', '2021-01-23 19:50:42', '2025-12-17 19:47:49', 'kdK0eo5m', '3416576'), + (20576, 82, 556, 'maybe', '2021-01-25 20:02:54', '2025-12-17 19:47:49', 'kdK0eo5m', '3417170'), + (20577, 82, 557, 'maybe', '2021-01-19 18:52:24', '2025-12-17 19:47:49', 'kdK0eo5m', '3418748'), + (20578, 82, 558, 'maybe', '2021-01-20 04:34:58', '2025-12-17 19:47:49', 'kdK0eo5m', '3418925'), + (20579, 82, 562, 'attending', '2021-01-23 18:27:47', '2025-12-17 19:47:49', 'kdK0eo5m', '3424911'), + (20580, 82, 564, 'not_attending', '2021-01-24 08:44:18', '2025-12-17 19:47:49', 'kdK0eo5m', '3426074'), + (20581, 82, 567, 'attending', '2021-01-24 08:50:46', '2025-12-17 19:47:50', 'kdK0eo5m', '3428895'), + (20582, 82, 568, 'attending', '2021-01-26 00:38:36', '2025-12-17 19:47:50', 'kdK0eo5m', '3430267'), + (20583, 82, 569, 'maybe', '2021-01-27 22:08:56', '2025-12-17 19:47:49', 'kdK0eo5m', '3432673'), + (20584, 82, 571, 'maybe', '2021-02-12 05:09:04', '2025-12-17 19:47:50', 'kdK0eo5m', '3435539'), + (20585, 82, 577, 'maybe', '2021-01-29 05:03:59', '2025-12-17 19:47:49', 'kdK0eo5m', '3439167'), + (20586, 82, 579, 'attending', '2021-02-06 21:52:09', '2025-12-17 19:47:50', 'kdK0eo5m', '3440978'), + (20587, 82, 580, 'maybe', '2021-01-31 19:43:38', '2025-12-17 19:47:50', 'kdK0eo5m', '3444240'), + (20588, 82, 591, 'maybe', '2021-02-08 20:06:10', '2025-12-17 19:47:50', 'kdK0eo5m', '3465880'), + (20589, 82, 599, 'maybe', '2021-02-11 22:59:44', '2025-12-17 19:47:50', 'kdK0eo5m', '3468117'), + (20590, 82, 600, 'maybe', '2021-02-21 10:33:40', '2025-12-17 19:47:50', 'kdK0eo5m', '3468125'), + (20591, 82, 602, 'attending', '2021-02-10 01:05:48', '2025-12-17 19:47:50', 'kdK0eo5m', '3470303'), + (20592, 82, 603, 'attending', '2021-02-20 20:20:31', '2025-12-17 19:47:50', 'kdK0eo5m', '3470304'), + (20593, 82, 604, 'attending', '2021-02-27 01:29:13', '2025-12-17 19:47:50', 'kdK0eo5m', '3470305'), + (20594, 82, 605, 'attending', '2021-02-15 02:00:54', '2025-12-17 19:47:50', 'kdK0eo5m', '3470991'), + (20595, 82, 612, 'attending', '2021-02-18 03:49:08', '2025-12-17 19:47:50', 'kdK0eo5m', '3490040'), + (20596, 82, 613, 'maybe', '2021-02-24 03:02:55', '2025-12-17 19:47:50', 'kdK0eo5m', '3490041'), + (20597, 82, 614, 'attending', '2021-03-04 00:45:10', '2025-12-17 19:47:51', 'kdK0eo5m', '3490042'), + (20598, 82, 616, 'attending', '2021-02-21 20:09:24', '2025-12-17 19:47:50', 'kdK0eo5m', '3493478'), + (20599, 82, 621, 'attending', '2021-03-04 09:45:32', '2025-12-17 19:47:51', 'kdK0eo5m', '3517815'), + (20600, 82, 622, 'attending', '2021-03-10 01:15:24', '2025-12-17 19:47:51', 'kdK0eo5m', '3517816'), + (20601, 82, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdK0eo5m', '3523941'), + (20602, 82, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdK0eo5m', '3533850'), + (20603, 82, 637, 'attending', '2021-03-01 21:33:46', '2025-12-17 19:47:51', 'kdK0eo5m', '3536411'), + (20604, 82, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdK0eo5m', '3536632'), + (20605, 82, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdK0eo5m', '3536656'), + (20606, 82, 641, 'attending', '2021-04-03 04:46:25', '2025-12-17 19:47:44', 'kdK0eo5m', '3539916'), + (20607, 82, 642, 'attending', '2021-04-10 03:14:53', '2025-12-17 19:47:44', 'kdK0eo5m', '3539917'), + (20608, 82, 643, 'attending', '2021-04-15 23:09:09', '2025-12-17 19:47:45', 'kdK0eo5m', '3539918'), + (20609, 82, 644, 'attending', '2021-04-23 21:29:52', '2025-12-17 19:47:45', 'kdK0eo5m', '3539919'), + (20610, 82, 645, 'attending', '2021-05-08 04:10:03', '2025-12-17 19:47:46', 'kdK0eo5m', '3539920'), + (20611, 82, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdK0eo5m', '3539921'), + (20612, 82, 647, 'attending', '2021-05-21 17:10:55', '2025-12-17 19:47:46', 'kdK0eo5m', '3539922'), + (20613, 82, 648, 'attending', '2021-05-28 16:11:29', '2025-12-17 19:47:47', 'kdK0eo5m', '3539923'), + (20614, 82, 649, 'maybe', '2021-03-20 06:00:47', '2025-12-17 19:47:51', 'kdK0eo5m', '3539927'), + (20615, 82, 650, 'attending', '2021-03-27 17:30:22', '2025-12-17 19:47:44', 'kdK0eo5m', '3539928'), + (20616, 82, 687, 'attending', '2021-03-12 01:45:06', '2025-12-17 19:47:51', 'kdK0eo5m', '3553405'), + (20617, 82, 699, 'maybe', '2021-03-26 03:40:56', '2025-12-17 19:47:44', 'kdK0eo5m', '3572241'), + (20618, 82, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdK0eo5m', '3582734'), + (20619, 82, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdK0eo5m', '3583262'), + (20620, 82, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdK0eo5m', '3619523'), + (20621, 82, 719, 'maybe', '2021-04-08 22:31:24', '2025-12-17 19:47:44', 'kdK0eo5m', '3635405'), + (20622, 82, 722, 'maybe', '2021-04-02 21:56:44', '2025-12-17 19:47:44', 'kdK0eo5m', '3646347'), + (20623, 82, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdK0eo5m', '3661369'), + (20624, 82, 731, 'maybe', '2021-04-05 22:42:52', '2025-12-17 19:47:44', 'kdK0eo5m', '3674262'), + (20625, 82, 735, 'maybe', '2021-04-05 21:11:35', '2025-12-17 19:47:46', 'kdK0eo5m', '3677402'), + (20626, 82, 737, 'attending', '2021-04-06 22:05:13', '2025-12-17 19:47:44', 'kdK0eo5m', '3679349'), + (20627, 82, 752, 'attending', '2021-04-15 23:12:58', '2025-12-17 19:47:44', 'kdK0eo5m', '3699422'), + (20628, 82, 774, 'maybe', '2021-04-21 21:02:59', '2025-12-17 19:47:45', 'kdK0eo5m', '3730212'), + (20629, 82, 777, 'attending', '2021-05-01 21:08:03', '2025-12-17 19:47:46', 'kdK0eo5m', '3746248'), + (20630, 82, 779, 'maybe', '2021-05-03 21:03:20', '2025-12-17 19:47:46', 'kdK0eo5m', '3757118'), + (20631, 82, 782, 'maybe', '2021-05-04 06:00:22', '2025-12-17 19:47:46', 'kdK0eo5m', '3761843'), + (20632, 82, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdK0eo5m', '3793156'), + (20633, 82, 793, 'attending', '2021-06-01 22:16:28', '2025-12-17 19:47:47', 'kdK0eo5m', '3793537'), + (20634, 82, 794, 'attending', '2021-05-20 07:28:21', '2025-12-17 19:47:47', 'kdK0eo5m', '3793538'), + (20635, 82, 808, 'maybe', '2021-05-20 19:51:35', '2025-12-17 19:47:46', 'kdK0eo5m', '3807358'), + (20636, 82, 823, 'attending', '2021-06-17 03:17:20', '2025-12-17 19:47:48', 'kdK0eo5m', '3974109'), + (20637, 82, 827, 'attending', '2021-06-05 18:55:05', '2025-12-17 19:47:47', 'kdK0eo5m', '3975311'), + (20638, 82, 828, 'attending', '2021-06-12 05:11:04', '2025-12-17 19:47:47', 'kdK0eo5m', '3975312'), + (20639, 82, 834, 'maybe', '2021-06-08 00:19:59', '2025-12-17 19:47:47', 'kdK0eo5m', '3990439'), + (20640, 82, 837, 'attending', '2021-06-17 22:36:55', '2025-12-17 19:47:48', 'kdK0eo5m', '3992545'), + (20641, 82, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdK0eo5m', '3994992'), + (20642, 82, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdK0eo5m', '4014338'), + (20643, 82, 866, 'maybe', '2021-06-15 22:36:29', '2025-12-17 19:47:38', 'kdK0eo5m', '4020424'), + (20644, 82, 867, 'not_attending', '2021-06-24 08:13:25', '2025-12-17 19:47:38', 'kdK0eo5m', '4021848'), + (20645, 82, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdK0eo5m', '4136744'), + (20646, 82, 870, 'attending', '2021-07-02 03:08:44', '2025-12-17 19:47:39', 'kdK0eo5m', '4136937'), + (20647, 82, 871, 'attending', '2021-07-07 22:21:38', '2025-12-17 19:47:39', 'kdK0eo5m', '4136938'), + (20648, 82, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdK0eo5m', '4136947'), + (20649, 82, 876, 'attending', '2021-06-22 23:48:10', '2025-12-17 19:47:38', 'kdK0eo5m', '4139926'), + (20650, 82, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdK0eo5m', '4210314'), + (20651, 82, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdK0eo5m', '4225444'), + (20652, 82, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdK0eo5m', '4239259'), + (20653, 82, 900, 'attending', '2021-07-24 17:00:32', '2025-12-17 19:47:40', 'kdK0eo5m', '4240316'), + (20654, 82, 901, 'attending', '2021-07-30 23:06:03', '2025-12-17 19:47:40', 'kdK0eo5m', '4240317'), + (20655, 82, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdK0eo5m', '4240318'), + (20656, 82, 903, 'attending', '2021-08-12 17:20:09', '2025-12-17 19:47:42', 'kdK0eo5m', '4240320'), + (20657, 82, 905, 'attending', '2021-07-07 22:20:47', '2025-12-17 19:47:39', 'kdK0eo5m', '4250163'), + (20658, 82, 919, 'attending', '2021-07-17 22:27:00', '2025-12-17 19:47:39', 'kdK0eo5m', '4275957'), + (20659, 82, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdK0eo5m', '4277819'), + (20660, 82, 933, 'attending', '2021-07-28 22:49:04', '2025-12-17 19:47:40', 'kdK0eo5m', '4301723'), + (20661, 82, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdK0eo5m', '4302093'), + (20662, 82, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdK0eo5m', '4304151'), + (20663, 82, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'kdK0eo5m', '4345519'), + (20664, 82, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdK0eo5m', '4356801'), + (20665, 82, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'kdK0eo5m', '4358025'), + (20666, 82, 973, 'attending', '2021-08-21 17:26:47', '2025-12-17 19:47:42', 'kdK0eo5m', '4366186'), + (20667, 82, 974, 'attending', '2021-08-27 21:24:52', '2025-12-17 19:47:42', 'kdK0eo5m', '4366187'), + (20668, 82, 988, 'maybe', '2021-08-27 19:10:20', '2025-12-17 19:47:42', 'kdK0eo5m', '4402823'), + (20669, 82, 990, 'attending', '2021-09-04 18:39:25', '2025-12-17 19:47:43', 'kdK0eo5m', '4420735'), + (20670, 82, 991, 'attending', '2021-09-11 19:34:13', '2025-12-17 19:47:43', 'kdK0eo5m', '4420738'), + (20671, 82, 992, 'attending', '2021-09-18 17:49:51', '2025-12-17 19:47:33', 'kdK0eo5m', '4420739'), + (20672, 82, 993, 'attending', '2021-09-25 18:24:02', '2025-12-17 19:47:34', 'kdK0eo5m', '4420741'), + (20673, 82, 994, 'not_attending', '2021-10-02 20:05:25', '2025-12-17 19:47:34', 'kdK0eo5m', '4420742'), + (20674, 82, 995, 'attending', '2021-10-09 09:11:01', '2025-12-17 19:47:34', 'kdK0eo5m', '4420744'), + (20675, 82, 996, 'attending', '2021-10-15 17:52:36', '2025-12-17 19:47:35', 'kdK0eo5m', '4420747'), + (20676, 82, 997, 'not_attending', '2021-10-23 21:26:09', '2025-12-17 19:47:35', 'kdK0eo5m', '4420748'), + (20677, 82, 998, 'attending', '2021-10-30 02:15:41', '2025-12-17 19:47:36', 'kdK0eo5m', '4420749'), + (20678, 82, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdK0eo5m', '4461883'), + (20679, 82, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdK0eo5m', '4508342'), + (20680, 82, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdK0eo5m', '4568602'), + (20681, 82, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdK0eo5m', '4572153'), + (20682, 82, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'kdK0eo5m', '4585962'), + (20683, 82, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'kdK0eo5m', '4596356'), + (20684, 82, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdK0eo5m', '4598860'), + (20685, 82, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdK0eo5m', '4598861'), + (20686, 82, 1099, 'not_attending', '2021-11-06 20:23:49', '2025-12-17 19:47:36', 'kdK0eo5m', '4602797'), + (20687, 82, 1114, 'not_attending', '2021-11-13 21:55:21', '2025-12-17 19:47:36', 'kdK0eo5m', '4637896'), + (20688, 82, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdK0eo5m', '4642994'), + (20689, 82, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'kdK0eo5m', '4642995'), + (20690, 82, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdK0eo5m', '4642996'), + (20691, 82, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdK0eo5m', '4642997'), + (20692, 82, 1126, 'not_attending', '2021-12-11 17:54:30', '2025-12-17 19:47:38', 'kdK0eo5m', '4645687'), + (20693, 82, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdK0eo5m', '4645698'), + (20694, 82, 1128, 'not_attending', '2021-11-20 21:53:55', '2025-12-17 19:47:37', 'kdK0eo5m', '4645704'), + (20695, 82, 1129, 'not_attending', '2021-11-28 00:22:53', '2025-12-17 19:47:37', 'kdK0eo5m', '4645705'), + (20696, 82, 1130, 'not_attending', '2021-12-04 22:04:23', '2025-12-17 19:47:37', 'kdK0eo5m', '4658824'), + (20697, 82, 1131, 'attending', '2021-12-19 00:42:16', '2025-12-17 19:47:31', 'kdK0eo5m', '4658825'), + (20698, 82, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdK0eo5m', '4668385'), + (20699, 82, 1146, 'maybe', '2021-12-08 06:32:47', '2025-12-17 19:47:38', 'kdK0eo5m', '4692841'), + (20700, 82, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdK0eo5m', '4694407'), + (20701, 82, 1151, 'maybe', '2022-01-06 00:49:23', '2025-12-17 19:47:31', 'kdK0eo5m', '4708704'), + (20702, 82, 1173, 'attending', '2022-01-09 00:23:32', '2025-12-17 19:47:31', 'kdK0eo5m', '4736495'), + (20703, 82, 1174, 'attending', '2022-01-15 22:13:46', '2025-12-17 19:47:31', 'kdK0eo5m', '4736496'), + (20704, 82, 1175, 'attending', '2022-01-22 22:00:33', '2025-12-17 19:47:32', 'kdK0eo5m', '4736497'), + (20705, 82, 1176, 'attending', '2022-02-05 22:44:21', '2025-12-17 19:47:32', 'kdK0eo5m', '4736498'), + (20706, 82, 1177, 'attending', '2022-02-12 22:52:46', '2025-12-17 19:47:32', 'kdK0eo5m', '4736499'), + (20707, 82, 1178, 'attending', '2022-01-29 22:36:48', '2025-12-17 19:47:32', 'kdK0eo5m', '4736500'), + (20708, 82, 1179, 'attending', '2022-02-19 22:34:36', '2025-12-17 19:47:32', 'kdK0eo5m', '4736501'), + (20709, 82, 1180, 'attending', '2022-02-26 23:55:14', '2025-12-17 19:47:33', 'kdK0eo5m', '4736502'), + (20710, 82, 1181, 'attending', '2022-03-06 00:02:02', '2025-12-17 19:47:33', 'kdK0eo5m', '4736503'), + (20711, 82, 1182, 'attending', '2022-03-12 21:50:57', '2025-12-17 19:47:33', 'kdK0eo5m', '4736504'), + (20712, 82, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdK0eo5m', '4746789'), + (20713, 82, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdK0eo5m', '4753929'), + (20714, 82, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdK0eo5m', '5038850'), + (20715, 82, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdK0eo5m', '5045826'), + (20716, 82, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdK0eo5m', '5132533'), + (20717, 82, 1272, 'attending', '2022-03-19 20:53:53', '2025-12-17 19:47:25', 'kdK0eo5m', '5186582'), + (20718, 82, 1273, 'attending', '2022-03-26 04:31:14', '2025-12-17 19:47:25', 'kdK0eo5m', '5186583'), + (20719, 82, 1274, 'attending', '2022-04-02 19:41:26', '2025-12-17 19:47:26', 'kdK0eo5m', '5186585'), + (20720, 82, 1281, 'not_attending', '2022-04-09 22:01:30', '2025-12-17 19:47:27', 'kdK0eo5m', '5190437'), + (20721, 82, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdK0eo5m', '5195095'), + (20722, 82, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdK0eo5m', '5215989'), + (20723, 82, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdK0eo5m', '5223686'), + (20724, 82, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'kdK0eo5m', '5227432'), + (20725, 82, 1346, 'not_attending', '2022-04-23 22:21:30', '2025-12-17 19:47:27', 'kdK0eo5m', '5247467'), + (20726, 82, 1362, 'attending', '2022-04-30 18:40:27', '2025-12-17 19:47:28', 'kdK0eo5m', '5260800'), + (20727, 82, 1374, 'attending', '2022-05-07 20:21:55', '2025-12-17 19:47:28', 'kdK0eo5m', '5269930'), + (20728, 82, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdK0eo5m', '5271448'), + (20729, 82, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'kdK0eo5m', '5271449'), + (20730, 82, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'kdK0eo5m', '5276469'), + (20731, 82, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdK0eo5m', '5278159'), + (20732, 82, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdK0eo5m', '5363695'), + (20733, 82, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdK0eo5m', '5365960'), + (20734, 82, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'kdK0eo5m', '5368973'), + (20735, 82, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdK0eo5m', '5378247'), + (20736, 82, 1431, 'attending', '2022-06-11 19:25:07', '2025-12-17 19:47:30', 'kdK0eo5m', '5389605'), + (20737, 82, 1442, 'not_attending', '2022-06-18 22:08:05', '2025-12-17 19:47:17', 'kdK0eo5m', '5397265'), + (20738, 82, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'kdK0eo5m', '5403967'), + (20739, 82, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdK0eo5m', '5404786'), + (20740, 82, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdK0eo5m', '5405203'), + (20741, 82, 1478, 'not_attending', '2022-06-23 17:45:38', '2025-12-17 19:47:19', 'kdK0eo5m', '5408794'), + (20742, 82, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'kdK0eo5m', '5411699'), + (20743, 82, 1482, 'not_attending', '2022-06-25 22:20:15', '2025-12-17 19:47:19', 'kdK0eo5m', '5412550'), + (20744, 82, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdK0eo5m', '5415046'), + (20745, 82, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdK0eo5m', '5422086'), + (20746, 82, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdK0eo5m', '5422406'), + (20747, 82, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdK0eo5m', '5424565'), + (20748, 82, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdK0eo5m', '5426882'), + (20749, 82, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'kdK0eo5m', '5427083'), + (20750, 82, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdK0eo5m', '5441125'), + (20751, 82, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdK0eo5m', '5441126'), + (20752, 82, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdK0eo5m', '5441128'), + (20753, 82, 1516, 'attending', '2022-08-20 19:12:34', '2025-12-17 19:47:23', 'kdK0eo5m', '5441129'), + (20754, 82, 1517, 'attending', '2022-08-06 01:33:01', '2025-12-17 19:47:23', 'kdK0eo5m', '5441130'), + (20755, 82, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdK0eo5m', '5441131'), + (20756, 82, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdK0eo5m', '5441132'), + (20757, 82, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'kdK0eo5m', '5446643'), + (20758, 82, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdK0eo5m', '5453325'), + (20759, 82, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdK0eo5m', '5454516'), + (20760, 82, 1544, 'attending', '2022-09-17 21:21:50', '2025-12-17 19:47:11', 'kdK0eo5m', '5454517'), + (20761, 82, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdK0eo5m', '5454605'), + (20762, 82, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdK0eo5m', '5455037'), + (20763, 82, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdK0eo5m', '5461278'), + (20764, 82, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdK0eo5m', '5469480'), + (20765, 82, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'kdK0eo5m', '5471073'), + (20766, 82, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdK0eo5m', '5474663'), + (20767, 82, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdK0eo5m', '5482022'), + (20768, 82, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'kdK0eo5m', '5482793'), + (20769, 82, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdK0eo5m', '5488912'), + (20770, 82, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdK0eo5m', '5492192'), + (20771, 82, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdK0eo5m', '5493139'), + (20772, 82, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdK0eo5m', '5493200'), + (20773, 82, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdK0eo5m', '5502188'), + (20774, 82, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdK0eo5m', '5505059'), + (20775, 82, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdK0eo5m', '5509055'), + (20776, 82, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdK0eo5m', '5512862'), + (20777, 82, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdK0eo5m', '5513985'), + (20778, 82, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdK0eo5m', '5519981'), + (20779, 82, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdK0eo5m', '5522550'), + (20780, 82, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdK0eo5m', '5534683'), + (20781, 82, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdK0eo5m', '5537735'), + (20782, 82, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdK0eo5m', '5540859'), + (20783, 82, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdK0eo5m', '5546619'), + (20784, 82, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'kdK0eo5m', '5555245'), + (20785, 82, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdK0eo5m', '5557747'), + (20786, 82, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdK0eo5m', '5560255'), + (20787, 82, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdK0eo5m', '5562906'), + (20788, 82, 1667, 'attending', '2022-09-24 21:44:40', '2025-12-17 19:47:11', 'kdK0eo5m', '5563221'), + (20789, 82, 1668, 'attending', '2022-10-01 20:58:15', '2025-12-17 19:47:12', 'kdK0eo5m', '5563222'), + (20790, 82, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdK0eo5m', '5600604'), + (20791, 82, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdK0eo5m', '5605544'), + (20792, 82, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'kdK0eo5m', '5606737'), + (20793, 82, 1719, 'attending', '2022-10-08 18:55:31', '2025-12-17 19:47:12', 'kdK0eo5m', '5630958'), + (20794, 82, 1720, 'attending', '2022-10-15 21:56:52', '2025-12-17 19:47:12', 'kdK0eo5m', '5630959'), + (20795, 82, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdK0eo5m', '5630960'), + (20796, 82, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdK0eo5m', '5630961'), + (20797, 82, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdK0eo5m', '5630962'), + (20798, 82, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdK0eo5m', '5630966'), + (20799, 82, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdK0eo5m', '5630967'), + (20800, 82, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdK0eo5m', '5630968'), + (20801, 82, 1727, 'attending', '2022-12-03 22:19:46', '2025-12-17 19:47:16', 'kdK0eo5m', '5630969'), + (20802, 82, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdK0eo5m', '5635406'), + (20803, 82, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdK0eo5m', '5638765'), + (20804, 82, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdK0eo5m', '5640097'), + (20805, 82, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdK0eo5m', '5640843'), + (20806, 82, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdK0eo5m', '5641521'), + (20807, 82, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdK0eo5m', '5642818'), + (20808, 82, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdK0eo5m', '5652395'), + (20809, 82, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdK0eo5m', '5670445'), + (20810, 82, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdK0eo5m', '5671637'), + (20811, 82, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdK0eo5m', '5672329'), + (20812, 82, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdK0eo5m', '5674057'), + (20813, 82, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdK0eo5m', '5674060'), + (20814, 82, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdK0eo5m', '5677461'), + (20815, 82, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdK0eo5m', '5698046'), + (20816, 82, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdK0eo5m', '5699760'), + (20817, 82, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdK0eo5m', '5741601'), + (20818, 82, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdK0eo5m', '5763458'), + (20819, 82, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdK0eo5m', '5774172'), + (20820, 82, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdK0eo5m', '5818247'), + (20821, 82, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdK0eo5m', '5819471'), + (20822, 82, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdK0eo5m', '5827739'), + (20823, 82, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdK0eo5m', '5844306'), + (20824, 82, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdK0eo5m', '5850159'), + (20825, 82, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdK0eo5m', '5858999'), + (20826, 82, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdK0eo5m', '5871984'), + (20827, 82, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdK0eo5m', '5876354'), + (20828, 82, 1864, 'attending', '2023-01-21 22:11:28', '2025-12-17 19:47:05', 'kdK0eo5m', '5879675'), + (20829, 82, 1865, 'attending', '2023-01-28 23:56:06', '2025-12-17 19:47:06', 'kdK0eo5m', '5879676'), + (20830, 82, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdK0eo5m', '5880939'), + (20831, 82, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdK0eo5m', '5880940'), + (20832, 82, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdK0eo5m', '5880942'), + (20833, 82, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdK0eo5m', '5880943'), + (20834, 82, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdK0eo5m', '5887890'), + (20835, 82, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdK0eo5m', '5888598'), + (20836, 82, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdK0eo5m', '5893260'), + (20837, 82, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdK0eo5m', '5899826'), + (20838, 82, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdK0eo5m', '5900199'), + (20839, 82, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdK0eo5m', '5900200'), + (20840, 82, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdK0eo5m', '5900202'), + (20841, 82, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdK0eo5m', '5900203'), + (20842, 82, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdK0eo5m', '5901108'), + (20843, 82, 1896, 'maybe', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdK0eo5m', '5901126'), + (20844, 82, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdK0eo5m', '5909655'), + (20845, 82, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdK0eo5m', '5910522'), + (20846, 82, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdK0eo5m', '5910526'), + (20847, 82, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdK0eo5m', '5910528'), + (20848, 82, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdK0eo5m', '5916219'), + (20849, 82, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdK0eo5m', '5936234'), + (20850, 82, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdK0eo5m', '5958351'), + (20851, 82, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdK0eo5m', '5959751'), + (20852, 82, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdK0eo5m', '5959755'), + (20853, 82, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdK0eo5m', '5960055'), + (20854, 82, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdK0eo5m', '5961684'), + (20855, 82, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdK0eo5m', '5962132'), + (20856, 82, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'kdK0eo5m', '5962133'), + (20857, 82, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdK0eo5m', '5962134'), + (20858, 82, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdK0eo5m', '5962317'), + (20859, 82, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdK0eo5m', '5962318'), + (20860, 82, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdK0eo5m', '5965933'), + (20861, 82, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdK0eo5m', '5967014'), + (20862, 82, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdK0eo5m', '5972815'), + (20863, 82, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdK0eo5m', '5974016'), + (20864, 82, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdK0eo5m', '5981515'), + (20865, 82, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdK0eo5m', '5993516'), + (20866, 82, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdK0eo5m', '5998939'), + (20867, 82, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdK0eo5m', '6028191'), + (20868, 82, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdK0eo5m', '6040066'), + (20869, 82, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdK0eo5m', '6042717'), + (20870, 82, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdK0eo5m', '6044838'), + (20871, 82, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdK0eo5m', '6044839'), + (20872, 82, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0eo5m', '6045684'), + (20873, 82, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdK0eo5m', '6050104'), + (20874, 82, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdK0eo5m', '6053195'), + (20875, 82, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdK0eo5m', '6053198'), + (20876, 82, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdK0eo5m', '6056085'), + (20877, 82, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdK0eo5m', '6056916'), + (20878, 82, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdK0eo5m', '6059290'), + (20879, 82, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdK0eo5m', '6060328'), + (20880, 82, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdK0eo5m', '6061037'), + (20881, 82, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdK0eo5m', '6061039'), + (20882, 82, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdK0eo5m', '6067245'), + (20883, 82, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdK0eo5m', '6068094'), + (20884, 82, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdK0eo5m', '6068252'), + (20885, 82, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdK0eo5m', '6068253'), + (20886, 82, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdK0eo5m', '6068254'), + (20887, 82, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdK0eo5m', '6068280'), + (20888, 82, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdK0eo5m', '6069093'), + (20889, 82, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdK0eo5m', '6072528'), + (20890, 82, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdK0eo5m', '6079840'), + (20891, 82, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdK0eo5m', '6083398'), + (20892, 82, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdK0eo5m', '6093504'), + (20893, 82, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdK0eo5m', '6097414'), + (20894, 82, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdK0eo5m', '6097442'), + (20895, 82, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdK0eo5m', '6097684'), + (20896, 82, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdK0eo5m', '6098762'), + (20897, 82, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdK0eo5m', '6101361'), + (20898, 82, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdK0eo5m', '6101362'), + (20899, 82, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'kdK0eo5m', '6103752'), + (20900, 82, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdK0eo5m', '6107314'), + (20901, 82, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdK0eo5m', '6120034'), + (20902, 82, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'kdK0eo5m', '6136733'), + (20903, 82, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdK0eo5m', '6137989'), + (20904, 82, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdK0eo5m', '6150864'), + (20905, 82, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdK0eo5m', '6155491'), + (20906, 82, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdK0eo5m', '6164417'), + (20907, 82, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdK0eo5m', '6166388'), + (20908, 82, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdK0eo5m', '6176439'), + (20909, 82, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdK0eo5m', '6182410'), + (20910, 82, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdK0eo5m', '6185812'), + (20911, 82, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdK0eo5m', '6187651'), + (20912, 82, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdK0eo5m', '6187963'), + (20913, 82, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdK0eo5m', '6187964'), + (20914, 82, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdK0eo5m', '6187966'), + (20915, 82, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdK0eo5m', '6187967'), + (20916, 82, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdK0eo5m', '6187969'), + (20917, 82, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdK0eo5m', '6334878'), + (20918, 82, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdK0eo5m', '6337236'), + (20919, 82, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdK0eo5m', '6337970'), + (20920, 82, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdK0eo5m', '6338308'), + (20921, 82, 2159, 'attending', '2023-07-22 21:40:54', '2025-12-17 19:46:53', 'kdK0eo5m', '6338355'), + (20922, 82, 2160, 'attending', '2023-07-29 21:28:25', '2025-12-17 19:46:54', 'kdK0eo5m', '6338358'), + (20923, 82, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'kdK0eo5m', '6340845'), + (20924, 82, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdK0eo5m', '6341710'), + (20925, 82, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdK0eo5m', '6342044'), + (20926, 82, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdK0eo5m', '6342298'), + (20927, 82, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdK0eo5m', '6343294'), + (20928, 82, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdK0eo5m', '6347034'), + (20929, 82, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdK0eo5m', '6347056'), + (20930, 82, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdK0eo5m', '6353830'), + (20931, 82, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdK0eo5m', '6353831'), + (20932, 82, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdK0eo5m', '6357867'), + (20933, 82, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdK0eo5m', '6358652'), + (20934, 82, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdK0eo5m', '6361709'), + (20935, 82, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdK0eo5m', '6361710'), + (20936, 82, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdK0eo5m', '6361711'), + (20937, 82, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdK0eo5m', '6361712'), + (20938, 82, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdK0eo5m', '6361713'), + (20939, 82, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdK0eo5m', '6382573'), + (20940, 82, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'kdK0eo5m', '6388604'), + (20941, 82, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdK0eo5m', '6394629'), + (20942, 82, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdK0eo5m', '6394631'), + (20943, 82, 2253, 'maybe', '2023-09-30 22:52:42', '2025-12-17 19:46:45', 'kdK0eo5m', '6401811'), + (20944, 82, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdK0eo5m', '6440863'), + (20945, 82, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdK0eo5m', '6445440'), + (20946, 82, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdK0eo5m', '6453951'), + (20947, 82, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdK0eo5m', '6461696'), + (20948, 82, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdK0eo5m', '6462129'), + (20949, 82, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdK0eo5m', '6463218'), + (20950, 82, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdK0eo5m', '6472181'), + (20951, 82, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdK0eo5m', '6482693'), + (20952, 82, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdK0eo5m', '6484200'), + (20953, 82, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdK0eo5m', '6484680'), + (20954, 82, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdK0eo5m', '6507741'), + (20955, 82, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdK0eo5m', '6514659'), + (20956, 82, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdK0eo5m', '6514660'), + (20957, 82, 2324, 'attending', '2023-12-09 23:34:55', '2025-12-17 19:46:49', 'kdK0eo5m', '6514662'), + (20958, 82, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdK0eo5m', '6519103'), + (20959, 82, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdK0eo5m', '6535681'), + (20960, 82, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdK0eo5m', '6584747'), + (20961, 82, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdK0eo5m', '6587097'), + (20962, 82, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdK0eo5m', '6609022'), + (20963, 82, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'kdK0eo5m', '6632757'), + (20964, 82, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdK0eo5m', '6644187'), + (20965, 82, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdK0eo5m', '6648951'), + (20966, 82, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdK0eo5m', '6648952'), + (20967, 82, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdK0eo5m', '6655401'), + (20968, 82, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdK0eo5m', '6661585'), + (20969, 82, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdK0eo5m', '6661588'), + (20970, 82, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdK0eo5m', '6661589'), + (20971, 82, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdK0eo5m', '6699906'), + (20972, 82, 2408, 'attending', '2024-01-27 23:01:12', '2025-12-17 19:46:40', 'kdK0eo5m', '6699907'), + (20973, 82, 2410, 'attending', '2024-02-10 21:57:56', '2025-12-17 19:46:41', 'kdK0eo5m', '6699911'), + (20974, 82, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdK0eo5m', '6699913'), + (20975, 82, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdK0eo5m', '6701109'), + (20976, 82, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdK0eo5m', '6705219'), + (20977, 82, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdK0eo5m', '6710153'), + (20978, 82, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdK0eo5m', '6711552'), + (20979, 82, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdK0eo5m', '6711553'), + (20980, 82, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdK0eo5m', '6722688'), + (20981, 82, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdK0eo5m', '6730620'), + (20982, 82, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'kdK0eo5m', '6730642'), + (20983, 82, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdK0eo5m', '6740364'), + (20984, 82, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdK0eo5m', '6743829'), + (20985, 82, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdK0eo5m', '7030380'), + (20986, 82, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'kdK0eo5m', '7033677'), + (20987, 82, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'kdK0eo5m', '7035415'), + (20988, 82, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdK0eo5m', '7044715'), + (20989, 82, 2484, 'maybe', '2024-03-01 20:30:40', '2025-12-17 19:46:43', 'kdK0eo5m', '7046836'), + (20990, 82, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdK0eo5m', '7050318'), + (20991, 82, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdK0eo5m', '7050319'), + (20992, 82, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdK0eo5m', '7050322'), + (20993, 82, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdK0eo5m', '7057804'), + (20994, 82, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'kdK0eo5m', '7059866'), + (20995, 82, 2505, 'attending', '2024-03-19 00:08:40', '2025-12-17 19:46:33', 'kdK0eo5m', '7069163'), + (20996, 82, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdK0eo5m', '7072824'), + (20997, 82, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdK0eo5m', '7074348'), + (20998, 82, 2509, 'maybe', '2024-03-28 23:08:25', '2025-12-17 19:46:33', 'kdK0eo5m', '7074349'), + (20999, 82, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdK0eo5m', '7074364'), + (21000, 82, 2534, 'attending', '2024-03-13 22:24:52', '2025-12-17 19:46:32', 'kdK0eo5m', '7076875'), + (21001, 82, 2538, 'attending', '2024-03-28 21:05:45', '2025-12-17 19:46:33', 'kdK0eo5m', '7085485'), + (21002, 82, 2539, 'attending', '2024-04-06 21:01:42', '2025-12-17 19:46:33', 'kdK0eo5m', '7085486'), + (21003, 82, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdK0eo5m', '7089267'), + (21004, 82, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdK0eo5m', '7098747'), + (21005, 82, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdK0eo5m', '7113468'), + (21006, 82, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdK0eo5m', '7114856'), + (21007, 82, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'kdK0eo5m', '7114951'), + (21008, 82, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdK0eo5m', '7114955'), + (21009, 82, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdK0eo5m', '7114956'), + (21010, 82, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdK0eo5m', '7114957'), + (21011, 82, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'kdK0eo5m', '7153615'), + (21012, 82, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdK0eo5m', '7159484'), + (21013, 82, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdK0eo5m', '7178446'), + (21014, 82, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdK0eo5m', '7220467'), + (21015, 82, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdK0eo5m', '7240354'), + (21016, 82, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdK0eo5m', '7251633'), + (21017, 82, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'kdK0eo5m', '7263048'), + (21018, 82, 2626, 'attending', '2024-05-18 21:59:51', '2025-12-17 19:46:35', 'kdK0eo5m', '7264723'), + (21019, 82, 2627, 'attending', '2024-05-25 22:21:38', '2025-12-17 19:46:35', 'kdK0eo5m', '7264724'), + (21020, 82, 2628, 'attending', '2024-06-01 21:21:57', '2025-12-17 19:46:36', 'kdK0eo5m', '7264725'), + (21021, 82, 2629, 'attending', '2024-06-08 20:51:31', '2025-12-17 19:46:28', 'kdK0eo5m', '7264726'), + (21022, 82, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'kdK0eo5m', '7302674'), + (21023, 82, 2667, 'attending', '2024-06-05 23:13:14', '2025-12-17 19:46:36', 'kdK0eo5m', '7307776'), + (21024, 82, 2678, 'attending', '2024-06-15 21:59:24', '2025-12-17 19:46:28', 'kdK0eo5m', '7319489'), + (21025, 82, 2679, 'attending', '2024-06-22 20:45:52', '2025-12-17 19:46:29', 'kdK0eo5m', '7319490'), + (21026, 82, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdK0eo5m', '7324073'), + (21027, 82, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdK0eo5m', '7324074'), + (21028, 82, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdK0eo5m', '7324075'), + (21029, 82, 2691, 'not_attending', '2024-07-19 09:54:52', '2025-12-17 19:46:30', 'kdK0eo5m', '7324076'), + (21030, 82, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdK0eo5m', '7324078'), + (21031, 82, 2694, 'not_attending', '2024-08-10 18:03:26', '2025-12-17 19:46:31', 'kdK0eo5m', '7324079'), + (21032, 82, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdK0eo5m', '7324082'), + (21033, 82, 2700, 'maybe', '2024-06-14 19:38:05', '2025-12-17 19:46:28', 'kdK0eo5m', '7324388'), + (21034, 82, 2706, 'attending', '2024-06-19 22:12:39', '2025-12-17 19:46:28', 'kdK0eo5m', '7324947'), + (21035, 82, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdK0eo5m', '7331457'), + (21036, 82, 2723, 'attending', '2024-06-21 22:08:21', '2025-12-17 19:46:29', 'kdK0eo5m', '7332389'), + (21037, 82, 2724, 'attending', '2024-06-26 22:11:57', '2025-12-17 19:46:29', 'kdK0eo5m', '7332562'), + (21038, 82, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'kdK0eo5m', '7356752'), + (21039, 82, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdK0eo5m', '7363643'), + (21040, 82, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdK0eo5m', '7368606'), + (21041, 82, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdK0eo5m', '7397462'), + (21042, 82, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdK0eo5m', '7424275'), + (21043, 82, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'kdK0eo5m', '7424276'), + (21044, 82, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdK0eo5m', '7432751'), + (21045, 82, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdK0eo5m', '7432752'), + (21046, 82, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdK0eo5m', '7432753'), + (21047, 82, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdK0eo5m', '7432754'), + (21048, 82, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdK0eo5m', '7432755'), + (21049, 82, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdK0eo5m', '7432756'), + (21050, 82, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdK0eo5m', '7432758'), + (21051, 82, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdK0eo5m', '7432759'), + (21052, 82, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdK0eo5m', '7433834'), + (21053, 82, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'kdK0eo5m', '7470197'), + (21054, 82, 2865, 'attending', '2024-11-01 21:31:35', '2025-12-17 19:46:26', 'kdK0eo5m', '7471200'), + (21055, 82, 2870, 'attending', '2024-10-05 21:18:03', '2025-12-17 19:46:26', 'kdK0eo5m', '7475068'), + (21056, 82, 2886, 'maybe', '2024-11-08 21:59:18', '2025-12-17 19:46:26', 'kdK0eo5m', '7654498'), + (21057, 82, 2898, 'maybe', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdK0eo5m', '7685613'), + (21058, 82, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdK0eo5m', '7688194'), + (21059, 82, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdK0eo5m', '7688196'), + (21060, 82, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdK0eo5m', '7688289'), + (21061, 82, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdK0eo5m', '7692763'), + (21062, 82, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdK0eo5m', '7697552'), + (21063, 82, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdK0eo5m', '7699878'), + (21064, 82, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdK0eo5m', '7704043'), + (21065, 82, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdK0eo5m', '7712467'), + (21066, 82, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdK0eo5m', '7713585'), + (21067, 82, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdK0eo5m', '7713586'), + (21068, 82, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdK0eo5m', '7738518'), + (21069, 82, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'kdK0eo5m', '7750632'), + (21070, 82, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdK0eo5m', '7750636'), + (21071, 82, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdK0eo5m', '7796540'), + (21072, 82, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdK0eo5m', '7796541'), + (21073, 82, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdK0eo5m', '7796542'), + (21074, 82, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdK0eo5m', '7825913'), + (21075, 82, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdK0eo5m', '7826209'), + (21076, 82, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdK0eo5m', '7834742'), + (21077, 82, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'kdK0eo5m', '7842108'), + (21078, 82, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdK0eo5m', '7842902'), + (21079, 82, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdK0eo5m', '7842903'), + (21080, 82, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdK0eo5m', '7842904'), + (21081, 82, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdK0eo5m', '7842905'), + (21082, 82, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdK0eo5m', '7855719'), + (21083, 82, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdK0eo5m', '7860683'), + (21084, 82, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdK0eo5m', '7860684'), + (21085, 82, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdK0eo5m', '7866095'), + (21086, 82, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdK0eo5m', '7869170'), + (21087, 82, 3014, 'attending', '2025-04-05 20:55:03', '2025-12-17 19:46:20', 'kdK0eo5m', '7869185'), + (21088, 82, 3015, 'attending', '2025-04-25 22:27:12', '2025-12-17 19:46:20', 'kdK0eo5m', '7869186'), + (21089, 82, 3016, 'attending', '2025-04-19 19:31:57', '2025-12-17 19:46:20', 'kdK0eo5m', '7869187'), + (21090, 82, 3017, 'attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdK0eo5m', '7869188'), + (21091, 82, 3018, 'attending', '2025-04-12 20:00:15', '2025-12-17 19:46:20', 'kdK0eo5m', '7869189'), + (21092, 82, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdK0eo5m', '7869201'), + (21093, 82, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdK0eo5m', '7877465'), + (21094, 82, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'kdK0eo5m', '7878570'), + (21095, 82, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdK0eo5m', '7888250'), + (21096, 82, 3088, 'attending', '2025-06-12 17:39:10', '2025-12-17 19:46:15', 'kdK0eo5m', '7904777'), + (21097, 82, 3094, 'attending', '2025-05-10 20:57:06', '2025-12-17 19:46:21', 'kdK0eo5m', '8342292'), + (21098, 82, 3095, 'attending', '2025-04-30 02:17:38', '2025-12-17 19:46:20', 'kdK0eo5m', '8342293'), + (21099, 82, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdK0eo5m', '8349164'), + (21100, 82, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdK0eo5m', '8349545'), + (21101, 82, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'kdK0eo5m', '8353584'), + (21102, 82, 3126, 'attending', '2025-05-14 18:02:01', '2025-12-17 19:46:21', 'kdK0eo5m', '8365614'), + (21103, 82, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdK0eo5m', '8368028'), + (21104, 82, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdK0eo5m', '8368029'), + (21105, 82, 3133, 'attending', '2025-05-30 15:52:07', '2025-12-17 19:46:14', 'kdK0eo5m', '8368030'), + (21106, 82, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdK0eo5m', '8388462'), + (21107, 82, 3150, 'maybe', '2025-06-21 21:57:30', '2025-12-17 19:46:15', 'kdK0eo5m', '8393174'), + (21108, 82, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdK0eo5m', '8400273'), + (21109, 82, 3154, 'attending', '2025-06-28 00:40:53', '2025-12-17 19:46:15', 'kdK0eo5m', '8400274'), + (21110, 82, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdK0eo5m', '8400275'), + (21111, 82, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'kdK0eo5m', '8400276'), + (21112, 82, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdK0eo5m', '8404977'), + (21113, 82, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdK0eo5m', '8430783'), + (21114, 82, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdK0eo5m', '8430784'), + (21115, 82, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdK0eo5m', '8430799'), + (21116, 82, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdK0eo5m', '8430800'), + (21117, 82, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdK0eo5m', '8430801'), + (21118, 82, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdK0eo5m', '8438709'), + (21119, 82, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdK0eo5m', '8457738'), + (21120, 82, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdK0eo5m', '8459566'), + (21121, 82, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdK0eo5m', '8459567'), + (21122, 82, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdK0eo5m', '8461032'), + (21123, 82, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdK0eo5m', '8477877'), + (21124, 82, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdK0eo5m', '8485688'), + (21125, 82, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdK0eo5m', '8490587'), + (21126, 82, 3236, 'attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdK0eo5m', '8493552'), + (21127, 82, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdK0eo5m', '8493553'), + (21128, 82, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdK0eo5m', '8493554'), + (21129, 82, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdK0eo5m', '8493555'), + (21130, 82, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdK0eo5m', '8493556'), + (21131, 82, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdK0eo5m', '8493557'), + (21132, 82, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdK0eo5m', '8493558'), + (21133, 82, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdK0eo5m', '8493559'), + (21134, 82, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdK0eo5m', '8493560'), + (21135, 82, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdK0eo5m', '8493561'), + (21136, 82, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdK0eo5m', '8493572'), + (21137, 82, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdK0eo5m', '8540725'), + (21138, 82, 3302, 'attending', '2025-11-13 21:56:20', '2025-12-17 19:46:14', 'kdK0eo5m', '8550022'), + (21139, 82, 3306, 'attending', '2025-12-13 01:15:28', '2025-12-17 19:46:11', 'kdK0eo5m', '8550026'), + (21140, 82, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdK0eo5m', '8555421'), + (21141, 167, 196, 'not_attending', '2020-08-15 23:34:31', '2025-12-17 19:47:56', '1ArKKVX4', '3087265'), + (21142, 167, 197, 'attending', '2020-08-15 23:36:21', '2025-12-17 19:47:56', '1ArKKVX4', '3087266'), + (21143, 167, 198, 'not_attending', '2020-08-21 01:53:11', '2025-12-17 19:47:56', '1ArKKVX4', '3087267'), + (21144, 167, 199, 'attending', '2020-08-27 21:11:21', '2025-12-17 19:47:56', '1ArKKVX4', '3087268'), + (21145, 167, 219, 'attending', '2020-08-13 23:18:53', '2025-12-17 19:47:56', '1ArKKVX4', '3129263'), + (21146, 167, 223, 'attending', '2020-09-04 22:06:32', '2025-12-17 19:47:56', '1ArKKVX4', '3129980'), + (21147, 167, 293, 'not_attending', '2020-08-14 20:29:51', '2025-12-17 19:47:56', '1ArKKVX4', '3172832'), + (21148, 167, 294, 'not_attending', '2020-08-21 01:57:01', '2025-12-17 19:47:56', '1ArKKVX4', '3172833'), + (21149, 167, 295, 'attending', '2020-08-22 23:47:01', '2025-12-17 19:47:56', '1ArKKVX4', '3172834'), + (21150, 167, 304, 'attending', '2020-09-01 14:05:11', '2025-12-17 19:47:56', '1ArKKVX4', '3178916'), + (21151, 167, 306, 'not_attending', '2020-08-21 16:08:35', '2025-12-17 19:47:56', '1ArKKVX4', '3179777'), + (21152, 167, 308, 'attending', '2020-08-27 21:11:57', '2025-12-17 19:47:56', '1ArKKVX4', '3183341'), + (21153, 167, 311, 'not_attending', '2020-09-19 23:01:00', '2025-12-17 19:47:56', '1ArKKVX4', '3186057'), + (21154, 167, 312, 'not_attending', '2020-09-10 21:55:41', '2025-12-17 19:47:56', '1ArKKVX4', '3187795'), + (21155, 167, 315, 'maybe', '2020-09-07 14:30:51', '2025-12-17 19:47:56', '1ArKKVX4', '3189085'), + (21156, 167, 317, 'not_attending', '2020-08-27 21:10:41', '2025-12-17 19:47:56', '1ArKKVX4', '3191735'), + (21157, 167, 330, 'not_attending', '2020-09-05 14:04:53', '2025-12-17 19:47:56', '1ArKKVX4', '3197322'), + (21158, 167, 335, 'attending', '2020-09-02 13:47:45', '2025-12-17 19:47:56', '1ArKKVX4', '3200209'), + (21159, 167, 339, 'attending', '2020-09-07 14:30:41', '2025-12-17 19:47:56', '1ArKKVX4', '3204469'), + (21160, 167, 340, 'not_attending', '2020-09-18 20:52:32', '2025-12-17 19:47:56', '1ArKKVX4', '3204470'), + (21161, 167, 341, 'not_attending', '2020-09-25 14:48:20', '2025-12-17 19:47:52', '1ArKKVX4', '3204471'), + (21162, 167, 342, 'not_attending', '2020-10-02 22:12:16', '2025-12-17 19:47:52', '1ArKKVX4', '3204472'), + (21163, 167, 344, 'attending', '2020-10-05 21:23:18', '2025-12-17 19:47:53', '1ArKKVX4', '3206906'), + (21164, 167, 345, 'not_attending', '2020-09-13 03:01:42', '2025-12-17 19:47:56', '1ArKKVX4', '3207423'), + (21165, 167, 348, 'attending', '2020-09-25 04:30:56', '2025-12-17 19:47:52', '1ArKKVX4', '3209159'), + (21166, 167, 349, 'not_attending', '2020-09-13 21:36:06', '2025-12-17 19:47:56', '1ArKKVX4', '3209194'), + (21167, 167, 354, 'not_attending', '2020-09-19 23:06:32', '2025-12-17 19:47:56', '1ArKKVX4', '3212570'), + (21168, 167, 362, 'attending', '2020-09-26 21:27:09', '2025-12-17 19:47:52', '1ArKKVX4', '3214207'), + (21169, 167, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '1ArKKVX4', '3217037'), + (21170, 167, 365, 'not_attending', '2020-09-24 15:45:59', '2025-12-17 19:47:52', '1ArKKVX4', '3218510'), + (21171, 167, 375, 'not_attending', '2020-10-08 22:16:32', '2025-12-17 19:47:52', '1ArKKVX4', '3222825'), + (21172, 167, 381, 'attending', '2020-09-26 18:52:26', '2025-12-17 19:47:52', '1ArKKVX4', '3226871'), + (21173, 167, 382, 'attending', '2020-09-27 22:14:14', '2025-12-17 19:47:52', '1ArKKVX4', '3226873'), + (21174, 167, 385, 'attending', '2020-09-29 13:24:41', '2025-12-17 19:47:52', '1ArKKVX4', '3228698'), + (21175, 167, 386, 'attending', '2020-09-29 13:24:43', '2025-12-17 19:47:52', '1ArKKVX4', '3228699'), + (21176, 167, 387, 'attending', '2020-10-16 01:15:41', '2025-12-17 19:47:52', '1ArKKVX4', '3228700'), + (21177, 167, 388, 'not_attending', '2020-10-16 01:15:46', '2025-12-17 19:47:52', '1ArKKVX4', '3228701'), + (21178, 167, 390, 'attending', '2020-10-01 14:59:04', '2025-12-17 19:47:52', '1ArKKVX4', '3231510'), + (21179, 167, 414, 'attending', '2020-10-18 18:35:39', '2025-12-17 19:47:52', '1ArKKVX4', '3237277'), + (21180, 167, 416, 'attending', '2020-10-09 18:09:41', '2025-12-17 19:47:52', '1ArKKVX4', '3238073'), + (21181, 167, 417, 'not_attending', '2020-10-12 14:17:31', '2025-12-17 19:47:52', '1ArKKVX4', '3238779'), + (21182, 167, 418, 'attending', '2020-10-14 13:43:10', '2025-12-17 19:47:52', '1ArKKVX4', '3241728'), + (21183, 167, 420, 'attending', '2020-10-12 14:17:47', '2025-12-17 19:47:52', '1ArKKVX4', '3245293'), + (21184, 167, 421, 'attending', '2020-10-12 14:17:48', '2025-12-17 19:47:52', '1ArKKVX4', '3245294'), + (21185, 167, 422, 'attending', '2020-10-12 14:17:50', '2025-12-17 19:47:53', '1ArKKVX4', '3245295'), + (21186, 167, 423, 'attending', '2020-10-12 14:17:53', '2025-12-17 19:47:53', '1ArKKVX4', '3245296'), + (21187, 167, 424, 'maybe', '2020-10-18 17:22:24', '2025-12-17 19:47:52', '1ArKKVX4', '3245751'), + (21188, 167, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '1ArKKVX4', '3250232'), + (21189, 167, 428, 'not_attending', '2020-10-22 21:32:29', '2025-12-17 19:47:53', '1ArKKVX4', '3250332'), + (21190, 167, 430, 'not_attending', '2020-10-18 03:12:41', '2025-12-17 19:47:52', '1ArKKVX4', '3253094'), + (21191, 167, 431, 'not_attending', '2020-10-27 22:50:09', '2025-12-17 19:47:53', '1ArKKVX4', '3253225'), + (21192, 167, 435, 'attending', '2020-10-18 03:13:14', '2025-12-17 19:47:52', '1ArKKVX4', '3254790'), + (21193, 167, 438, 'not_attending', '2020-10-18 15:21:23', '2025-12-17 19:47:53', '1ArKKVX4', '3256163'), + (21194, 167, 439, 'not_attending', '2020-10-18 18:35:52', '2025-12-17 19:47:53', '1ArKKVX4', '3256164'), + (21195, 167, 440, 'attending', '2020-10-18 17:16:31', '2025-12-17 19:47:53', '1ArKKVX4', '3256168'), + (21196, 167, 441, 'attending', '2020-11-08 04:20:45', '2025-12-17 19:47:54', '1ArKKVX4', '3256169'), + (21197, 167, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', '1ArKKVX4', '3263578'), + (21198, 167, 444, 'maybe', '2020-10-24 13:16:53', '2025-12-17 19:47:53', '1ArKKVX4', '3263745'), + (21199, 167, 445, 'attending', '2020-11-08 04:21:23', '2025-12-17 19:47:54', '1ArKKVX4', '3266138'), + (21200, 167, 448, 'attending', '2020-10-30 23:02:50', '2025-12-17 19:47:53', '1ArKKVX4', '3271831'), + (21201, 167, 449, 'not_attending', '2020-11-08 04:21:04', '2025-12-17 19:47:53', '1ArKKVX4', '3272055'), + (21202, 167, 452, 'not_attending', '2020-11-26 22:47:07', '2025-12-17 19:47:54', '1ArKKVX4', '3272981'), + (21203, 167, 456, 'maybe', '2020-11-08 19:49:59', '2025-12-17 19:47:54', '1ArKKVX4', '3276428'), + (21204, 167, 458, 'not_attending', '2020-11-10 06:02:23', '2025-12-17 19:47:53', '1ArKKVX4', '3279233'), + (21205, 167, 459, 'not_attending', '2020-11-15 00:48:10', '2025-12-17 19:47:54', '1ArKKVX4', '3281467'), + (21206, 167, 461, 'not_attending', '2020-11-09 15:28:46', '2025-12-17 19:47:53', '1ArKKVX4', '3281469'), + (21207, 167, 462, 'attending', '2020-11-08 16:00:17', '2025-12-17 19:47:53', '1ArKKVX4', '3281470'), + (21208, 167, 466, 'not_attending', '2020-11-24 00:45:22', '2025-12-17 19:47:54', '1ArKKVX4', '3281829'), + (21209, 167, 467, 'not_attending', '2020-11-16 15:38:02', '2025-12-17 19:47:54', '1ArKKVX4', '3282756'), + (21210, 167, 468, 'not_attending', '2020-11-21 23:10:30', '2025-12-17 19:47:54', '1ArKKVX4', '3285413'), + (21211, 167, 469, 'not_attending', '2020-11-28 23:16:53', '2025-12-17 19:47:54', '1ArKKVX4', '3285414'), + (21212, 167, 475, 'maybe', '2020-11-22 15:47:08', '2025-12-17 19:47:54', '1ArKKVX4', '3286760'), + (21213, 167, 478, 'maybe', '2020-11-17 15:12:14', '2025-12-17 19:47:54', '1ArKKVX4', '3290899'), + (21214, 167, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '1ArKKVX4', '3297764'), + (21215, 167, 485, 'attending', '2020-11-26 22:46:53', '2025-12-17 19:47:54', '1ArKKVX4', '3299698'), + (21216, 167, 486, 'maybe', '2020-11-23 14:26:17', '2025-12-17 19:47:54', '1ArKKVX4', '3300281'), + (21217, 167, 488, 'not_attending', '2020-11-26 22:47:22', '2025-12-17 19:47:54', '1ArKKVX4', '3312757'), + (21218, 167, 489, 'not_attending', '2020-11-27 23:39:07', '2025-12-17 19:47:54', '1ArKKVX4', '3313022'), + (21219, 167, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '1ArKKVX4', '3313856'), + (21220, 167, 496, 'maybe', '2020-12-07 03:43:39', '2025-12-17 19:47:54', '1ArKKVX4', '3314269'), + (21221, 167, 499, 'maybe', '2020-12-08 15:54:14', '2025-12-17 19:47:55', '1ArKKVX4', '3314909'), + (21222, 167, 500, 'maybe', '2020-12-15 14:06:40', '2025-12-17 19:47:55', '1ArKKVX4', '3314964'), + (21223, 167, 501, 'maybe', '2020-12-07 15:44:54', '2025-12-17 19:47:54', '1ArKKVX4', '3317834'), + (21224, 167, 502, 'attending', '2020-12-07 03:43:33', '2025-12-17 19:47:55', '1ArKKVX4', '3323365'), + (21225, 167, 506, 'maybe', '2020-12-13 00:07:14', '2025-12-17 19:47:55', '1ArKKVX4', '3323375'), + (21226, 167, 513, 'attending', '2020-12-14 15:51:17', '2025-12-17 19:47:55', '1ArKKVX4', '3329383'), + (21227, 167, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '1ArKKVX4', '3351539'), + (21228, 167, 993, 'attending', '2021-09-24 14:50:00', '2025-12-17 19:47:34', '1ArKKVX4', '4420741'), + (21229, 167, 994, 'attending', '2021-10-01 15:42:58', '2025-12-17 19:47:34', '1ArKKVX4', '4420742'), + (21230, 167, 995, 'attending', '2021-10-01 15:42:56', '2025-12-17 19:47:34', '1ArKKVX4', '4420744'), + (21231, 167, 996, 'not_attending', '2021-10-16 16:49:48', '2025-12-17 19:47:35', '1ArKKVX4', '4420747'), + (21232, 167, 997, 'not_attending', '2021-10-22 10:44:05', '2025-12-17 19:47:35', '1ArKKVX4', '4420748'), + (21233, 167, 1066, 'attending', '2021-09-25 19:09:17', '2025-12-17 19:47:34', '1ArKKVX4', '4506039'), + (21234, 167, 1068, 'maybe', '2021-09-26 01:43:13', '2025-12-17 19:47:34', '1ArKKVX4', '4511471'), + (21235, 167, 1069, 'attending', '2021-09-24 16:34:05', '2025-12-17 19:47:34', '1ArKKVX4', '4512090'), + (21236, 167, 1070, 'maybe', '2021-10-01 00:04:20', '2025-12-17 19:47:34', '1ArKKVX4', '4512562'), + (21237, 167, 1072, 'maybe', '2021-10-01 15:42:52', '2025-12-17 19:47:34', '1ArKKVX4', '4516287'), + (21238, 167, 1074, 'attending', '2021-09-30 00:19:34', '2025-12-17 19:47:34', '1ArKKVX4', '4528953'), + (21239, 167, 1075, 'not_attending', '2021-10-09 00:20:53', '2025-12-17 19:47:34', '1ArKKVX4', '4536351'), + (21240, 167, 1077, 'maybe', '2021-10-11 19:28:27', '2025-12-17 19:47:34', '1ArKKVX4', '4540903'), + (21241, 167, 1078, 'maybe', '2021-10-05 19:39:34', '2025-12-17 19:47:34', '1ArKKVX4', '4541281'), + (21242, 167, 1082, 'maybe', '2021-10-13 16:55:49', '2025-12-17 19:47:35', '1ArKKVX4', '4566762'), + (21243, 167, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '1ArKKVX4', '4568602'), + (21244, 167, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '1ArKKVX4', '4572153'), + (21245, 167, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '1ArKKVX4', '4585962'), + (21246, 167, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '1ArKKVX4', '4596356'), + (21247, 167, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '1ArKKVX4', '4598860'), + (21248, 167, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '1ArKKVX4', '4598861'), + (21249, 167, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '1ArKKVX4', '4602797'), + (21250, 167, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '1ArKKVX4', '4637896'), + (21251, 167, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '1ArKKVX4', '4642994'), + (21252, 167, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '1ArKKVX4', '4642995'), + (21253, 167, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '1ArKKVX4', '4642996'), + (21254, 167, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '1ArKKVX4', '4642997'), + (21255, 167, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '1ArKKVX4', '4645687'), + (21256, 167, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '1ArKKVX4', '4645698'), + (21257, 167, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '1ArKKVX4', '4645704'), + (21258, 167, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '1ArKKVX4', '4645705'), + (21259, 167, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '1ArKKVX4', '4668385'), + (21260, 167, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '1ArKKVX4', '4694407'), + (21261, 167, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '1ArKKVX4', '4736497'), + (21262, 167, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '1ArKKVX4', '4736499'), + (21263, 167, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '1ArKKVX4', '4736500'), + (21264, 167, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '1ArKKVX4', '4736503'), + (21265, 167, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '1ArKKVX4', '4736504'), + (21266, 167, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '1ArKKVX4', '4746789'), + (21267, 167, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '1ArKKVX4', '4753929'), + (21268, 167, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '1ArKKVX4', '5038850'), + (21269, 167, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '1ArKKVX4', '5045826'), + (21270, 167, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '1ArKKVX4', '5132533'), + (21271, 167, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '1ArKKVX4', '5186582'), + (21272, 167, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '1ArKKVX4', '5186583'), + (21273, 167, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '1ArKKVX4', '5186585'), + (21274, 167, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '1ArKKVX4', '5190437'), + (21275, 167, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '1ArKKVX4', '5195095'), + (21276, 167, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '1ArKKVX4', '5215989'), + (21277, 167, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '1ArKKVX4', '5223686'), + (21278, 167, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '1ArKKVX4', '5247467'), + (21279, 167, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '1ArKKVX4', '5260800'), + (21280, 167, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '1ArKKVX4', '5269930'), + (21281, 167, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '1ArKKVX4', '5271448'), + (21282, 167, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '1ArKKVX4', '5271449'), + (21283, 167, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '1ArKKVX4', '5278159'), + (21284, 167, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '1ArKKVX4', '5363695'), + (21285, 167, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '1ArKKVX4', '5365960'), + (21286, 167, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '1ArKKVX4', '5378247'), + (21287, 167, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '1ArKKVX4', '5389605'), + (21288, 167, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '1ArKKVX4', '5397265'), + (21289, 167, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '1ArKKVX4', '5404786'), + (21290, 167, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '1ArKKVX4', '5405203'), + (21291, 167, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '1ArKKVX4', '5412550'), + (21292, 167, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '1ArKKVX4', '5415046'), + (21293, 167, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '1ArKKVX4', '5422086'), + (21294, 167, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '1ArKKVX4', '5422406'), + (21295, 167, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '1ArKKVX4', '5424565'), + (21296, 167, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '1ArKKVX4', '5426882'), + (21297, 167, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '1ArKKVX4', '5441125'), + (21298, 167, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '1ArKKVX4', '5441126'), + (21299, 167, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '1ArKKVX4', '5441128'), + (21300, 167, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '1ArKKVX4', '5441131'), + (21301, 167, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '1ArKKVX4', '5441132'), + (21302, 167, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '1ArKKVX4', '5453325'), + (21303, 167, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '1ArKKVX4', '5454516'), + (21304, 167, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '1ArKKVX4', '5454605'), + (21305, 167, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '1ArKKVX4', '5455037'), + (21306, 167, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '1ArKKVX4', '5461278'), + (21307, 167, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '1ArKKVX4', '5469480'), + (21308, 167, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '1ArKKVX4', '5474663'), + (21309, 167, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '1ArKKVX4', '5482022'), + (21310, 167, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '1ArKKVX4', '5488912'), + (21311, 167, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '1ArKKVX4', '5492192'), + (21312, 167, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '1ArKKVX4', '5493139'), + (21313, 167, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '1ArKKVX4', '5493200'), + (21314, 167, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '1ArKKVX4', '5502188'), + (21315, 167, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '1ArKKVX4', '5505059'), + (21316, 167, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '1ArKKVX4', '5509055'), + (21317, 167, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '1ArKKVX4', '5512862'), + (21318, 167, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '1ArKKVX4', '5513985'), + (21319, 167, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '1ArKKVX4', '5519981'), + (21320, 167, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '1ArKKVX4', '5522550'), + (21321, 167, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '1ArKKVX4', '5534683'), + (21322, 167, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '1ArKKVX4', '5537735'), + (21323, 167, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '1ArKKVX4', '5540859'), + (21324, 167, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '1ArKKVX4', '5546619'), + (21325, 167, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '1ArKKVX4', '5557747'), + (21326, 167, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '1ArKKVX4', '5560255'), + (21327, 167, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '1ArKKVX4', '5562906'), + (21328, 167, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '1ArKKVX4', '5600604'), + (21329, 167, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '1ArKKVX4', '5605544'), + (21330, 167, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '1ArKKVX4', '5630960'), + (21331, 167, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '1ArKKVX4', '5630961'), + (21332, 167, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '1ArKKVX4', '5630962'), + (21333, 167, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '1ArKKVX4', '5630966'), + (21334, 167, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '1ArKKVX4', '5630967'), + (21335, 167, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '1ArKKVX4', '5630968'), + (21336, 167, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '1ArKKVX4', '5635406'), + (21337, 167, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '1ArKKVX4', '5638765'), + (21338, 167, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '1ArKKVX4', '5640097'), + (21339, 167, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '1ArKKVX4', '5640843'), + (21340, 167, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '1ArKKVX4', '5641521'), + (21341, 167, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '1ArKKVX4', '5642818'), + (21342, 167, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '1ArKKVX4', '5652395'), + (21343, 167, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '1ArKKVX4', '5670445'), + (21344, 167, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '1ArKKVX4', '5671637'), + (21345, 167, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '1ArKKVX4', '5672329'), + (21346, 167, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '1ArKKVX4', '5674057'), + (21347, 167, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '1ArKKVX4', '5674060'), + (21348, 167, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '1ArKKVX4', '5677461'), + (21349, 167, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '1ArKKVX4', '5698046'), + (21350, 167, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '1ArKKVX4', '5699760'), + (21351, 167, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '1ArKKVX4', '5741601'), + (21352, 167, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '1ArKKVX4', '5763458'), + (21353, 167, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '1ArKKVX4', '5774172'), + (21354, 167, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '1ArKKVX4', '5818247'), + (21355, 167, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '1ArKKVX4', '5819471'), + (21356, 167, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '1ArKKVX4', '5827739'), + (21357, 167, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '1ArKKVX4', '5844306'), + (21358, 167, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '1ArKKVX4', '5850159'), + (21359, 167, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '1ArKKVX4', '5858999'), + (21360, 167, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '1ArKKVX4', '5871984'), + (21361, 167, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '1ArKKVX4', '5876354'), + (21362, 167, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '1ArKKVX4', '5880939'), + (21363, 167, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '1ArKKVX4', '5880940'), + (21364, 167, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '1ArKKVX4', '5880942'), + (21365, 167, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '1ArKKVX4', '5880943'), + (21366, 167, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '1ArKKVX4', '5887890'), + (21367, 167, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '1ArKKVX4', '5888598'), + (21368, 167, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '1ArKKVX4', '5893260'), + (21369, 167, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '1ArKKVX4', '5899826'), + (21370, 167, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '1ArKKVX4', '5900199'), + (21371, 167, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '1ArKKVX4', '5900200'), + (21372, 167, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '1ArKKVX4', '5900202'), + (21373, 167, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '1ArKKVX4', '5900203'), + (21374, 167, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '1ArKKVX4', '5901108'), + (21375, 167, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '1ArKKVX4', '5901126'), + (21376, 167, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '1ArKKVX4', '5901606'), + (21377, 167, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '1ArKKVX4', '5909655'), + (21378, 167, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '1ArKKVX4', '5910522'), + (21379, 167, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '1ArKKVX4', '5910526'), + (21380, 167, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '1ArKKVX4', '5910528'), + (21381, 167, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '1ArKKVX4', '5916219'), + (21382, 167, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '1ArKKVX4', '5936234'), + (21383, 167, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '1ArKKVX4', '5958351'), + (21384, 167, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '1ArKKVX4', '5959751'), + (21385, 167, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '1ArKKVX4', '5959755'), + (21386, 167, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '1ArKKVX4', '5960055'), + (21387, 167, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '1ArKKVX4', '5961684'), + (21388, 167, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '1ArKKVX4', '5962132'), + (21389, 167, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '1ArKKVX4', '5962133'), + (21390, 167, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '1ArKKVX4', '5962134'), + (21391, 167, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '1ArKKVX4', '5962317'), + (21392, 167, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '1ArKKVX4', '5962318'), + (21393, 167, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '1ArKKVX4', '5965933'), + (21394, 167, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '1ArKKVX4', '5967014'), + (21395, 167, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '1ArKKVX4', '5972815'), + (21396, 167, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '1ArKKVX4', '5974016'), + (21397, 167, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '1ArKKVX4', '5981515'), + (21398, 167, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '1ArKKVX4', '5993516'), + (21399, 167, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '1ArKKVX4', '5998939'), + (21400, 167, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '1ArKKVX4', '6028191'), + (21401, 167, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '1ArKKVX4', '6040066'), + (21402, 167, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '1ArKKVX4', '6042717'), + (21403, 167, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '1ArKKVX4', '6044838'), + (21404, 167, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '1ArKKVX4', '6044839'), + (21405, 167, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArKKVX4', '6045684'), + (21406, 167, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '1ArKKVX4', '6050104'), + (21407, 167, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '1ArKKVX4', '6053195'), + (21408, 167, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '1ArKKVX4', '6053198'), + (21409, 167, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '1ArKKVX4', '6056085'), + (21410, 167, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '1ArKKVX4', '6056916'), + (21411, 167, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '1ArKKVX4', '6059290'), + (21412, 167, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '1ArKKVX4', '6060328'), + (21413, 167, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '1ArKKVX4', '6061037'), + (21414, 167, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '1ArKKVX4', '6061039'), + (21415, 167, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '1ArKKVX4', '6067245'), + (21416, 167, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '1ArKKVX4', '6068094'), + (21417, 167, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '1ArKKVX4', '6068252'), + (21418, 167, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '1ArKKVX4', '6068253'), + (21419, 167, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '1ArKKVX4', '6068254'), + (21420, 167, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '1ArKKVX4', '6068280'), + (21421, 167, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '1ArKKVX4', '6069093'), + (21422, 167, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '1ArKKVX4', '6072528'), + (21423, 167, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '1ArKKVX4', '6079840'), + (21424, 167, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '1ArKKVX4', '6083398'), + (21425, 167, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '1ArKKVX4', '6093504'), + (21426, 167, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '1ArKKVX4', '6097414'), + (21427, 167, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '1ArKKVX4', '6097442'), + (21428, 167, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '1ArKKVX4', '6097684'), + (21429, 167, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '1ArKKVX4', '6098762'), + (21430, 167, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '1ArKKVX4', '6101361'), + (21431, 167, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '1ArKKVX4', '6101362'), + (21432, 167, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '1ArKKVX4', '6107314'), + (21433, 167, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '1ArKKVX4', '6120034'), + (21434, 167, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '1ArKKVX4', '6136733'), + (21435, 167, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '1ArKKVX4', '6137989'), + (21436, 167, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '1ArKKVX4', '6150864'), + (21437, 167, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '1ArKKVX4', '6155491'), + (21438, 167, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '1ArKKVX4', '6164417'), + (21439, 167, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '1ArKKVX4', '6166388'), + (21440, 167, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '1ArKKVX4', '6176439'), + (21441, 167, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '1ArKKVX4', '6182410'), + (21442, 167, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '1ArKKVX4', '6185812'), + (21443, 167, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '1ArKKVX4', '6187651'), + (21444, 167, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '1ArKKVX4', '6187963'), + (21445, 167, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '1ArKKVX4', '6187964'), + (21446, 167, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '1ArKKVX4', '6187966'), + (21447, 167, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '1ArKKVX4', '6187967'), + (21448, 167, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '1ArKKVX4', '6187969'), + (21449, 167, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '1ArKKVX4', '6334878'), + (21450, 167, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '1ArKKVX4', '6337236'), + (21451, 167, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '1ArKKVX4', '6337970'), + (21452, 167, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '1ArKKVX4', '6338308'), + (21453, 167, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '1ArKKVX4', '6341710'), + (21454, 167, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '1ArKKVX4', '6342044'), + (21455, 167, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '1ArKKVX4', '6342298'), + (21456, 167, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '1ArKKVX4', '6343294'), + (21457, 167, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '1ArKKVX4', '6347034'), + (21458, 167, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '1ArKKVX4', '6347056'), + (21459, 167, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '1ArKKVX4', '6353830'), + (21460, 167, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '1ArKKVX4', '6353831'), + (21461, 167, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '1ArKKVX4', '6357867'), + (21462, 167, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '1ArKKVX4', '6358652'), + (21463, 167, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '1ArKKVX4', '6361709'), + (21464, 167, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '1ArKKVX4', '6361710'), + (21465, 167, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '1ArKKVX4', '6361711'), + (21466, 167, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '1ArKKVX4', '6361712'), + (21467, 167, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '1ArKKVX4', '6361713'), + (21468, 167, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '1ArKKVX4', '6382573'), + (21469, 167, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '1ArKKVX4', '6388604'), + (21470, 167, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '1ArKKVX4', '6394629'), + (21471, 167, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '1ArKKVX4', '6394631'), + (21472, 167, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '1ArKKVX4', '6440863'), + (21473, 167, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '1ArKKVX4', '6445440'), + (21474, 167, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '1ArKKVX4', '6453951'), + (21475, 167, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '1ArKKVX4', '6461696'), + (21476, 167, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '1ArKKVX4', '6462129'), + (21477, 167, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '1ArKKVX4', '6463218'), + (21478, 167, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '1ArKKVX4', '6472181'), + (21479, 167, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '1ArKKVX4', '6482693'), + (21480, 167, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '1ArKKVX4', '6484200'), + (21481, 167, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '1ArKKVX4', '6484680'), + (21482, 167, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '1ArKKVX4', '6507741'), + (21483, 167, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '1ArKKVX4', '6514659'), + (21484, 167, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '1ArKKVX4', '6514660'), + (21485, 167, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '1ArKKVX4', '6519103'), + (21486, 167, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '1ArKKVX4', '6535681'), + (21487, 167, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '1ArKKVX4', '6584747'), + (21488, 167, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '1ArKKVX4', '6587097'), + (21489, 167, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '1ArKKVX4', '6609022'), + (21490, 167, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '1ArKKVX4', '6632757'), + (21491, 167, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '1ArKKVX4', '6644187'), + (21492, 167, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '1ArKKVX4', '6648951'), + (21493, 167, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '1ArKKVX4', '6648952'), + (21494, 167, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '1ArKKVX4', '6655401'), + (21495, 167, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '1ArKKVX4', '6661585'), + (21496, 167, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '1ArKKVX4', '6661588'), + (21497, 167, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '1ArKKVX4', '6661589'), + (21498, 167, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '1ArKKVX4', '6699906'), + (21499, 167, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '1ArKKVX4', '6699913'), + (21500, 167, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '1ArKKVX4', '6701109'), + (21501, 167, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '1ArKKVX4', '6705219'), + (21502, 167, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '1ArKKVX4', '6710153'), + (21503, 167, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '1ArKKVX4', '6711552'), + (21504, 167, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '1ArKKVX4', '6711553'), + (21505, 167, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '1ArKKVX4', '6722688'), + (21506, 167, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '1ArKKVX4', '6730620'), + (21507, 167, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '1ArKKVX4', '6740364'), + (21508, 167, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '1ArKKVX4', '6743829'), + (21509, 167, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '1ArKKVX4', '7030380'), + (21510, 167, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '1ArKKVX4', '7033677'), + (21511, 167, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '1ArKKVX4', '7044715'), + (21512, 167, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '1ArKKVX4', '7050318'), + (21513, 167, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '1ArKKVX4', '7050319'), + (21514, 167, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '1ArKKVX4', '7050322'), + (21515, 167, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '1ArKKVX4', '7057804'), + (21516, 167, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '1ArKKVX4', '7072824'), + (21517, 167, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '1ArKKVX4', '7074348'), + (21518, 167, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '1ArKKVX4', '7074364'), + (21519, 167, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '1ArKKVX4', '7089267'), + (21520, 167, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '1ArKKVX4', '7098747'), + (21521, 167, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '1ArKKVX4', '7113468'), + (21522, 167, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '1ArKKVX4', '7114856'), + (21523, 167, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '1ArKKVX4', '7114951'), + (21524, 167, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '1ArKKVX4', '7114955'), + (21525, 167, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '1ArKKVX4', '7114956'), + (21526, 167, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '1ArKKVX4', '7114957'), + (21527, 167, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '1ArKKVX4', '7159484'), + (21528, 167, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '1ArKKVX4', '7178446'), + (21529, 167, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '1ArKKVX4', '7220467'), + (21530, 167, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '1ArKKVX4', '7240354'), + (21531, 167, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '1ArKKVX4', '7251633'), + (21532, 167, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '1ArKKVX4', '7324073'), + (21533, 167, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '1ArKKVX4', '7324074'), + (21534, 167, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '1ArKKVX4', '7324075'), + (21535, 167, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '1ArKKVX4', '7324078'), + (21536, 167, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '1ArKKVX4', '7324082'), + (21537, 167, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '1ArKKVX4', '7331457'), + (21538, 167, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '1ArKKVX4', '7363643'), + (21539, 167, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '1ArKKVX4', '7368606'), + (21540, 167, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '1ArKKVX4', '7397462'), + (21541, 167, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '1ArKKVX4', '7424275'), + (21542, 167, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '1ArKKVX4', '7432751'), + (21543, 167, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '1ArKKVX4', '7432752'), + (21544, 167, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '1ArKKVX4', '7432753'), + (21545, 167, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '1ArKKVX4', '7432754'), + (21546, 167, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '1ArKKVX4', '7432755'), + (21547, 167, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '1ArKKVX4', '7432756'), + (21548, 167, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '1ArKKVX4', '7432758'), + (21549, 167, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '1ArKKVX4', '7432759'), + (21550, 167, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '1ArKKVX4', '7433834'), + (21551, 167, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '1ArKKVX4', '7470197'), + (21552, 167, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '1ArKKVX4', '7685613'), + (21553, 167, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '1ArKKVX4', '7688194'), + (21554, 167, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '1ArKKVX4', '7688196'), + (21555, 167, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '1ArKKVX4', '7688289'), + (21556, 167, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '1ArKKVX4', '7692763'), + (21557, 167, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '1ArKKVX4', '7697552'), + (21558, 167, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '1ArKKVX4', '7699878'), + (21559, 167, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '1ArKKVX4', '7704043'), + (21560, 167, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1ArKKVX4', '7712467'), + (21561, 167, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1ArKKVX4', '7713585'), + (21562, 167, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1ArKKVX4', '7713586'), + (21563, 167, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '1ArKKVX4', '7738518'), + (21564, 167, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1ArKKVX4', '7750636'), + (21565, 167, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1ArKKVX4', '7796540'), + (21566, 167, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1ArKKVX4', '7796541'), + (21567, 167, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1ArKKVX4', '7796542'), + (21568, 167, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1ArKKVX4', '7825913'), + (21569, 167, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1ArKKVX4', '7826209'), + (21570, 167, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1ArKKVX4', '7834742'), + (21571, 167, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1ArKKVX4', '7842108'), + (21572, 167, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1ArKKVX4', '7842902'), + (21573, 167, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1ArKKVX4', '7842903'), + (21574, 167, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1ArKKVX4', '7842904'), + (21575, 167, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1ArKKVX4', '7842905'), + (21576, 167, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1ArKKVX4', '7855719'), + (21577, 167, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1ArKKVX4', '7860683'), + (21578, 167, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1ArKKVX4', '7860684'), + (21579, 167, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1ArKKVX4', '7866095'), + (21580, 167, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1ArKKVX4', '7869170'), + (21581, 167, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArKKVX4', '7869188'), + (21582, 167, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1ArKKVX4', '7869201'), + (21583, 167, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1ArKKVX4', '7877465'), + (21584, 167, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1ArKKVX4', '7888250'), + (21585, 167, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1ArKKVX4', '7904777'), + (21586, 167, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArKKVX4', '8349164'), + (21587, 167, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArKKVX4', '8349545'), + (21588, 167, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1ArKKVX4', '8368028'), + (21589, 167, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1ArKKVX4', '8368029'), + (21590, 167, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1ArKKVX4', '8388462'), + (21591, 167, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1ArKKVX4', '8400273'), + (21592, 167, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1ArKKVX4', '8400275'), + (21593, 167, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '1ArKKVX4', '8400276'), + (21594, 167, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1ArKKVX4', '8404977'), + (21595, 167, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1ArKKVX4', '8430783'), + (21596, 167, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1ArKKVX4', '8430784'), + (21597, 167, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1ArKKVX4', '8430799'), + (21598, 167, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1ArKKVX4', '8430800'), + (21599, 167, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1ArKKVX4', '8430801'), + (21600, 167, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1ArKKVX4', '8438709'), + (21601, 167, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1ArKKVX4', '8457738'), + (21602, 167, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1ArKKVX4', '8459566'), + (21603, 167, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1ArKKVX4', '8459567'), + (21604, 167, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1ArKKVX4', '8461032'), + (21605, 167, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1ArKKVX4', '8477877'), + (21606, 167, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1ArKKVX4', '8485688'), + (21607, 167, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '1ArKKVX4', '8490587'), + (21608, 167, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '1ArKKVX4', '8493552'), + (21609, 167, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '1ArKKVX4', '8493553'), + (21610, 167, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '1ArKKVX4', '8493554'), + (21611, 167, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '1ArKKVX4', '8493555'), + (21612, 167, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '1ArKKVX4', '8493556'), + (21613, 167, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '1ArKKVX4', '8493557'), + (21614, 167, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '1ArKKVX4', '8493558'), + (21615, 167, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '1ArKKVX4', '8493559'), + (21616, 167, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '1ArKKVX4', '8493560'), + (21617, 167, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '1ArKKVX4', '8493561'), + (21618, 167, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '1ArKKVX4', '8493572'), + (21619, 167, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '1ArKKVX4', '8540725'), + (21620, 167, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '1ArKKVX4', '8555421'), + (21621, 168, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'Qd53g9VA', '3149489'), + (21622, 168, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'Qd53g9VA', '3149491'), + (21623, 168, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'Qd53g9VA', '3236450'), + (21624, 168, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'Qd53g9VA', '3236452'), + (21625, 168, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Qd53g9VA', '3539921'), + (21626, 168, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Qd53g9VA', '3539922'), + (21627, 168, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Qd53g9VA', '3539923'), + (21628, 168, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Qd53g9VA', '3806392'), + (21629, 168, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'Qd53g9VA', '3963335'), + (21630, 168, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Qd53g9VA', '3975311'), + (21631, 168, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Qd53g9VA', '3975312'), + (21632, 168, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Qd53g9VA', '3994992'), + (21633, 168, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Qd53g9VA', '4014338'), + (21634, 168, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Qd53g9VA', '4136744'), + (21635, 168, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd53g9VA', '6045684'), + (21636, 169, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'my10reWm', '5880940'), + (21637, 169, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'my10reWm', '5880942'), + (21638, 169, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'my10reWm', '5880943'), + (21639, 169, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'my10reWm', '5900199'), + (21640, 169, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'my10reWm', '5900200'), + (21641, 169, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'my10reWm', '5900202'), + (21642, 169, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'my10reWm', '5900203'), + (21643, 169, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'my10reWm', '5909655'), + (21644, 169, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'my10reWm', '5910522'), + (21645, 169, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'my10reWm', '5910526'), + (21646, 169, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'my10reWm', '5910528'), + (21647, 169, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'my10reWm', '5916219'), + (21648, 169, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'my10reWm', '5936234'), + (21649, 169, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'my10reWm', '5936691'), + (21650, 169, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'my10reWm', '5958351'), + (21651, 169, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'my10reWm', '5959751'), + (21652, 169, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'my10reWm', '5959755'), + (21653, 169, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'my10reWm', '5960055'), + (21654, 169, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'my10reWm', '5961684'), + (21655, 169, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'my10reWm', '5962132'), + (21656, 169, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'my10reWm', '5962133'), + (21657, 169, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'my10reWm', '5962134'), + (21658, 169, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'my10reWm', '5962317'), + (21659, 169, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'my10reWm', '5962318'), + (21660, 169, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'my10reWm', '5965933'), + (21661, 169, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'my10reWm', '5967014'), + (21662, 169, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'my10reWm', '5972815'), + (21663, 169, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'my10reWm', '5974016'), + (21664, 169, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'my10reWm', '5981515'), + (21665, 169, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'my10reWm', '5993516'), + (21666, 169, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'my10reWm', '5998939'), + (21667, 169, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'my10reWm', '6028191'), + (21668, 169, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'my10reWm', '6040066'), + (21669, 169, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'my10reWm', '6042717'), + (21670, 169, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'my10reWm', '6045684'), + (21671, 170, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AXonw1Em', '7834742'), + (21672, 170, 2986, 'not_attending', '2025-02-04 20:56:50', '2025-12-17 19:46:23', 'AXonw1Em', '7835405'), + (21673, 170, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AXonw1Em', '7842108'), + (21674, 170, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AXonw1Em', '7842902'), + (21675, 170, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AXonw1Em', '7842903'), + (21676, 170, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AXonw1Em', '7842904'), + (21677, 170, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AXonw1Em', '7842905'), + (21678, 170, 2999, 'attending', '2025-02-13 02:18:05', '2025-12-17 19:46:23', 'AXonw1Em', '7844784'), + (21679, 170, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AXonw1Em', '7855719'), + (21680, 170, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AXonw1Em', '7860683'), + (21681, 170, 3008, 'attending', '2025-02-24 19:23:45', '2025-12-17 19:46:24', 'AXonw1Em', '7860684'), + (21682, 170, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AXonw1Em', '7866095'), + (21683, 170, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AXonw1Em', '7869170'), + (21684, 170, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AXonw1Em', '7869188'), + (21685, 170, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AXonw1Em', '7869201'), + (21686, 170, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AXonw1Em', '7877465'), + (21687, 170, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AXonw1Em', '7878570'), + (21688, 170, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AXonw1Em', '7888250'), + (21689, 170, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AXonw1Em', '7904777'), + (21690, 170, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AXonw1Em', '8349164'), + (21691, 170, 3105, 'attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AXonw1Em', '8349545'), + (21692, 170, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AXonw1Em', '8353584'), + (21693, 170, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AXonw1Em', '8368028'), + (21694, 170, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AXonw1Em', '8368029'), + (21695, 170, 3143, 'attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AXonw1Em', '8388462'), + (21696, 170, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AXonw1Em', '8400273'), + (21697, 170, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AXonw1Em', '8400274'), + (21698, 170, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AXonw1Em', '8400275'), + (21699, 170, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AXonw1Em', '8400276'), + (21700, 170, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AXonw1Em', '8404977'), + (21701, 170, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AXonw1Em', '8430783'), + (21702, 170, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AXonw1Em', '8430784'), + (21703, 170, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AXonw1Em', '8430799'), + (21704, 170, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AXonw1Em', '8430800'), + (21705, 170, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AXonw1Em', '8430801'), + (21706, 170, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AXonw1Em', '8438709'), + (21707, 170, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AXonw1Em', '8457738'), + (21708, 170, 3196, 'attending', '2025-08-13 21:54:28', '2025-12-17 19:46:17', 'AXonw1Em', '8458543'), + (21709, 170, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AXonw1Em', '8459566'), + (21710, 170, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AXonw1Em', '8459567'), + (21711, 170, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AXonw1Em', '8461032'), + (21712, 170, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AXonw1Em', '8477877'), + (21713, 170, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AXonw1Em', '8485688'), + (21714, 171, 1515, 'attending', '2022-08-06 06:54:10', '2025-12-17 19:47:21', 'AQRN1X04', '5441128'), + (21715, 171, 1516, 'attending', '2022-08-20 11:37:07', '2025-12-17 19:47:23', 'AQRN1X04', '5441129'), + (21716, 171, 1517, 'attending', '2022-08-27 23:19:24', '2025-12-17 19:47:23', 'AQRN1X04', '5441130'), + (21717, 171, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AQRN1X04', '5441131'), + (21718, 171, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'AQRN1X04', '5441132'), + (21719, 171, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AQRN1X04', '5461278'), + (21720, 171, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AQRN1X04', '5469480'), + (21721, 171, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'AQRN1X04', '5471073'), + (21722, 171, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AQRN1X04', '5482022'), + (21723, 171, 1574, 'attending', '2022-08-09 11:51:05', '2025-12-17 19:47:22', 'AQRN1X04', '5482153'), + (21724, 171, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AQRN1X04', '5482793'), + (21725, 171, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AQRN1X04', '5488912'), + (21726, 171, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AQRN1X04', '5492192'), + (21727, 171, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AQRN1X04', '5493139'), + (21728, 171, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AQRN1X04', '5493200'), + (21729, 171, 1594, 'attending', '2022-08-09 23:46:44', '2025-12-17 19:47:22', 'AQRN1X04', '5495523'), + (21730, 171, 1598, 'attending', '2022-08-13 01:30:42', '2025-12-17 19:47:22', 'AQRN1X04', '5496567'), + (21731, 171, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AQRN1X04', '5502188'), + (21732, 171, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AQRN1X04', '5505059'), + (21733, 171, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AQRN1X04', '5509055'), + (21734, 171, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AQRN1X04', '5512862'), + (21735, 171, 1621, 'not_attending', '2022-08-23 08:37:50', '2025-12-17 19:47:23', 'AQRN1X04', '5513531'), + (21736, 171, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AQRN1X04', '5513985'), + (21737, 171, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'AQRN1X04', '5519981'), + (21738, 171, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AQRN1X04', '5522550'), + (21739, 171, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AQRN1X04', '5534683'), + (21740, 171, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AQRN1X04', '5537735'), + (21741, 171, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AQRN1X04', '5540859'), + (21742, 171, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AQRN1X04', '5546619'), + (21743, 171, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AQRN1X04', '5555245'), + (21744, 171, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AQRN1X04', '5557747'), + (21745, 171, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AQRN1X04', '5560255'), + (21746, 171, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AQRN1X04', '5562906'), + (21747, 171, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AQRN1X04', '5600604'), + (21748, 171, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AQRN1X04', '5605544'), + (21749, 171, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', 'AQRN1X04', '5606737'), + (21750, 171, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AQRN1X04', '5630960'), + (21751, 171, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AQRN1X04', '5630961'), + (21752, 171, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AQRN1X04', '5630962'), + (21753, 171, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AQRN1X04', '5630966'), + (21754, 171, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AQRN1X04', '5630967'), + (21755, 171, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AQRN1X04', '5630968'), + (21756, 171, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AQRN1X04', '5635406'), + (21757, 171, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AQRN1X04', '5638765'), + (21758, 171, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AQRN1X04', '5640097'), + (21759, 171, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AQRN1X04', '5640843'), + (21760, 171, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AQRN1X04', '5641521'), + (21761, 171, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AQRN1X04', '5642818'), + (21762, 171, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AQRN1X04', '5652395'), + (21763, 171, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AQRN1X04', '5670445'), + (21764, 171, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AQRN1X04', '5671637'), + (21765, 171, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AQRN1X04', '5672329'), + (21766, 171, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AQRN1X04', '5674057'), + (21767, 171, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AQRN1X04', '5674060'), + (21768, 171, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AQRN1X04', '5677461'), + (21769, 171, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AQRN1X04', '5698046'), + (21770, 171, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AQRN1X04', '5699760'), + (21771, 171, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AQRN1X04', '5741601'), + (21772, 171, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AQRN1X04', '5763458'), + (21773, 171, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AQRN1X04', '5774172'), + (21774, 171, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AQRN1X04', '5818247'), + (21775, 171, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AQRN1X04', '5819471'), + (21776, 171, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AQRN1X04', '5827739'), + (21777, 171, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AQRN1X04', '5844306'), + (21778, 171, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AQRN1X04', '5850159'), + (21779, 171, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AQRN1X04', '5858999'), + (21780, 171, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AQRN1X04', '5871984'), + (21781, 171, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AQRN1X04', '5876354'), + (21782, 171, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AQRN1X04', '5880939'), + (21783, 171, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AQRN1X04', '5887890'), + (21784, 171, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AQRN1X04', '5888598'), + (21785, 171, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AQRN1X04', '5893260'), + (21786, 171, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQRN1X04', '6045684'), + (21787, 172, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '64vqJ0WA', '5269930'), + (21788, 172, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '64vqJ0WA', '5271448'), + (21789, 172, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '64vqJ0WA', '5271449'), + (21790, 172, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '64vqJ0WA', '5276469'), + (21791, 172, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '64vqJ0WA', '5278159'), + (21792, 172, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '64vqJ0WA', '5363695'), + (21793, 172, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '64vqJ0WA', '5365960'), + (21794, 172, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '64vqJ0WA', '5368973'), + (21795, 172, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '64vqJ0WA', '5378247'), + (21796, 172, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '64vqJ0WA', '5389605'), + (21797, 172, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '64vqJ0WA', '5397265'), + (21798, 172, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '64vqJ0WA', '6045684'), + (21799, 173, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', '401ExNRd', '8529058'), + (21800, 173, 3278, 'not_attending', '2025-09-30 15:01:05', '2025-12-17 19:46:13', '401ExNRd', '8535533'), + (21801, 173, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '401ExNRd', '8540725'), + (21802, 173, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '401ExNRd', '8555421'), + (21803, 173, 3324, 'not_attending', '2025-11-18 00:10:55', '2025-12-17 19:46:14', '401ExNRd', '8556406'), + (21804, 173, 3330, 'not_attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', '401ExNRd', '8561720'), + (21805, 174, 408, 'attending', '2021-02-06 00:26:43', '2025-12-17 19:47:50', 'rdOP6W8m', '3236466'), + (21806, 174, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'rdOP6W8m', '3236467'), + (21807, 174, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'rdOP6W8m', '3314964'), + (21808, 174, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'rdOP6W8m', '3323365'), + (21809, 174, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'rdOP6W8m', '3324148'), + (21810, 174, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'rdOP6W8m', '3329383'), + (21811, 174, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'rdOP6W8m', '3351539'), + (21812, 174, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'rdOP6W8m', '3386848'), + (21813, 174, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'rdOP6W8m', '3389527'), + (21814, 174, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'rdOP6W8m', '3396499'), + (21815, 174, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'rdOP6W8m', '3403650'), + (21816, 174, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'rdOP6W8m', '3406988'), + (21817, 174, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'rdOP6W8m', '3416576'), + (21818, 174, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'rdOP6W8m', '3426074'), + (21819, 174, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'rdOP6W8m', '3430267'), + (21820, 174, 570, 'attending', '2021-02-06 01:07:19', '2025-12-17 19:47:50', 'rdOP6W8m', '3435538'), + (21821, 174, 571, 'attending', '2021-02-13 22:54:16', '2025-12-17 19:47:50', 'rdOP6W8m', '3435539'), + (21822, 174, 572, 'attending', '2021-02-06 01:07:21', '2025-12-17 19:47:50', 'rdOP6W8m', '3435540'), + (21823, 174, 589, 'not_attending', '2021-02-19 14:57:23', '2025-12-17 19:47:50', 'rdOP6W8m', '3449473'), + (21824, 174, 592, 'not_attending', '2021-02-25 18:36:27', '2025-12-17 19:47:50', 'rdOP6W8m', '3467757'), + (21825, 174, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'rdOP6W8m', '3468125'), + (21826, 174, 602, 'attending', '2021-02-13 23:33:55', '2025-12-17 19:47:50', 'rdOP6W8m', '3470303'), + (21827, 174, 603, 'attending', '2021-02-19 14:57:36', '2025-12-17 19:47:50', 'rdOP6W8m', '3470304'), + (21828, 174, 604, 'attending', '2021-02-23 02:51:18', '2025-12-17 19:47:50', 'rdOP6W8m', '3470305'), + (21829, 174, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOP6W8m', '3470991'), + (21830, 174, 607, 'not_attending', '2021-02-19 14:57:27', '2025-12-17 19:47:50', 'rdOP6W8m', '3471882'), + (21831, 174, 608, 'not_attending', '2021-02-11 01:00:11', '2025-12-17 19:47:50', 'rdOP6W8m', '3475332'), + (21832, 174, 615, 'attending', '2021-02-19 14:57:03', '2025-12-17 19:47:50', 'rdOP6W8m', '3490045'), + (21833, 174, 616, 'not_attending', '2021-02-21 20:44:05', '2025-12-17 19:47:50', 'rdOP6W8m', '3493478'), + (21834, 174, 621, 'attending', '2021-03-01 01:05:52', '2025-12-17 19:47:51', 'rdOP6W8m', '3517815'), + (21835, 174, 622, 'attending', '2021-03-01 01:05:56', '2025-12-17 19:47:51', 'rdOP6W8m', '3517816'), + (21836, 174, 623, 'attending', '2021-02-25 18:37:07', '2025-12-17 19:47:50', 'rdOP6W8m', '3523941'), + (21837, 174, 631, 'maybe', '2021-03-01 01:06:09', '2025-12-17 19:47:51', 'rdOP6W8m', '3533850'), + (21838, 174, 637, 'maybe', '2021-03-03 15:58:57', '2025-12-17 19:47:51', 'rdOP6W8m', '3536411'), + (21839, 174, 638, 'attending', '2021-03-01 19:23:55', '2025-12-17 19:47:44', 'rdOP6W8m', '3536632'), + (21840, 174, 639, 'attending', '2021-03-01 19:48:35', '2025-12-17 19:47:51', 'rdOP6W8m', '3536656'), + (21841, 174, 641, 'attending', '2021-03-03 16:02:29', '2025-12-17 19:47:44', 'rdOP6W8m', '3539916'), + (21842, 174, 642, 'attending', '2021-03-03 16:02:27', '2025-12-17 19:47:44', 'rdOP6W8m', '3539917'), + (21843, 174, 643, 'attending', '2021-03-03 16:02:25', '2025-12-17 19:47:45', 'rdOP6W8m', '3539918'), + (21844, 174, 644, 'attending', '2021-04-24 15:21:19', '2025-12-17 19:47:45', 'rdOP6W8m', '3539919'), + (21845, 174, 645, 'maybe', '2021-05-04 10:00:11', '2025-12-17 19:47:46', 'rdOP6W8m', '3539920'), + (21846, 174, 646, 'maybe', '2021-05-04 10:00:19', '2025-12-17 19:47:46', 'rdOP6W8m', '3539921'), + (21847, 174, 647, 'attending', '2021-05-22 21:02:11', '2025-12-17 19:47:46', 'rdOP6W8m', '3539922'), + (21848, 174, 648, 'attending', '2021-05-28 10:18:17', '2025-12-17 19:47:47', 'rdOP6W8m', '3539923'), + (21849, 174, 649, 'not_attending', '2021-03-20 22:28:09', '2025-12-17 19:47:51', 'rdOP6W8m', '3539927'), + (21850, 174, 650, 'attending', '2021-03-27 20:44:08', '2025-12-17 19:47:44', 'rdOP6W8m', '3539928'), + (21851, 174, 664, 'maybe', '2021-09-11 20:46:40', '2025-12-17 19:47:43', 'rdOP6W8m', '3547142'), + (21852, 174, 665, 'not_attending', '2021-09-04 20:29:35', '2025-12-17 19:47:43', 'rdOP6W8m', '3547143'), + (21853, 174, 667, 'attending', '2021-08-28 16:19:56', '2025-12-17 19:47:42', 'rdOP6W8m', '3547145'), + (21854, 174, 703, 'not_attending', '2021-04-12 16:08:46', '2025-12-17 19:47:44', 'rdOP6W8m', '3578388'), + (21855, 174, 706, 'attending', '2021-03-19 17:56:55', '2025-12-17 19:47:45', 'rdOP6W8m', '3582734'), + (21856, 174, 707, 'attending', '2021-04-24 15:21:22', '2025-12-17 19:47:46', 'rdOP6W8m', '3583262'), + (21857, 174, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOP6W8m', '3619523'), + (21858, 174, 724, 'attending', '2021-05-09 21:06:34', '2025-12-17 19:47:46', 'rdOP6W8m', '3661369'), + (21859, 174, 725, 'attending', '2021-04-13 11:17:50', '2025-12-17 19:47:47', 'rdOP6W8m', '3661372'), + (21860, 174, 727, 'attending', '2021-05-24 01:25:57', '2025-12-17 19:47:38', 'rdOP6W8m', '3661377'), + (21861, 174, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'rdOP6W8m', '3674262'), + (21862, 174, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'rdOP6W8m', '3677402'), + (21863, 174, 761, 'maybe', '2021-05-04 10:00:01', '2025-12-17 19:47:46', 'rdOP6W8m', '3716041'), + (21864, 174, 767, 'maybe', '2021-04-18 23:54:20', '2025-12-17 19:47:46', 'rdOP6W8m', '3722476'), + (21865, 174, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOP6W8m', '3730212'), + (21866, 174, 777, 'not_attending', '2021-05-01 17:16:32', '2025-12-17 19:47:46', 'rdOP6W8m', '3746248'), + (21867, 174, 789, 'attending', '2021-05-28 10:18:19', '2025-12-17 19:47:47', 'rdOP6W8m', '3785818'), + (21868, 174, 792, 'maybe', '2021-05-09 14:06:22', '2025-12-17 19:47:46', 'rdOP6W8m', '3793156'), + (21869, 174, 805, 'attending', '2021-05-24 01:25:55', '2025-12-17 19:47:47', 'rdOP6W8m', '3804777'), + (21870, 174, 823, 'attending', '2021-06-02 01:04:36', '2025-12-17 19:47:48', 'rdOP6W8m', '3974109'), + (21871, 174, 827, 'attending', '2021-06-05 21:47:37', '2025-12-17 19:47:47', 'rdOP6W8m', '3975311'), + (21872, 174, 828, 'not_attending', '2021-06-12 22:29:46', '2025-12-17 19:47:47', 'rdOP6W8m', '3975312'), + (21873, 174, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOP6W8m', '3994992'), + (21874, 174, 844, 'maybe', '2021-06-10 15:09:55', '2025-12-17 19:47:38', 'rdOP6W8m', '4014338'), + (21875, 174, 846, 'attending', '2021-06-10 23:19:39', '2025-12-17 19:47:39', 'rdOP6W8m', '4015718'), + (21876, 174, 867, 'not_attending', '2021-06-16 11:44:49', '2025-12-17 19:47:38', 'rdOP6W8m', '4021848'), + (21877, 174, 868, 'maybe', '2021-06-16 11:44:19', '2025-12-17 19:47:48', 'rdOP6W8m', '4022012'), + (21878, 174, 869, 'not_attending', '2021-06-30 23:32:22', '2025-12-17 19:47:38', 'rdOP6W8m', '4136744'), + (21879, 174, 870, 'attending', '2021-07-03 22:46:27', '2025-12-17 19:47:39', 'rdOP6W8m', '4136937'), + (21880, 174, 871, 'maybe', '2021-07-07 16:44:48', '2025-12-17 19:47:39', 'rdOP6W8m', '4136938'), + (21881, 174, 872, 'maybe', '2021-06-22 18:06:04', '2025-12-17 19:47:40', 'rdOP6W8m', '4136947'), + (21882, 174, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOP6W8m', '4210314'), + (21883, 174, 887, 'maybe', '2021-07-15 13:32:47', '2025-12-17 19:47:39', 'rdOP6W8m', '4225444'), + (21884, 174, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdOP6W8m', '4239259'), + (21885, 174, 900, 'not_attending', '2021-07-25 12:07:29', '2025-12-17 19:47:40', 'rdOP6W8m', '4240316'), + (21886, 174, 901, 'attending', '2021-07-31 14:50:01', '2025-12-17 19:47:40', 'rdOP6W8m', '4240317'), + (21887, 174, 902, 'attending', '2021-08-07 19:20:56', '2025-12-17 19:47:41', 'rdOP6W8m', '4240318'), + (21888, 174, 903, 'maybe', '2021-08-14 17:59:20', '2025-12-17 19:47:42', 'rdOP6W8m', '4240320'), + (21889, 174, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdOP6W8m', '4250163'), + (21890, 174, 919, 'attending', '2021-07-15 13:32:12', '2025-12-17 19:47:39', 'rdOP6W8m', '4275957'), + (21891, 174, 920, 'attending', '2021-07-15 13:33:07', '2025-12-17 19:47:40', 'rdOP6W8m', '4277819'), + (21892, 174, 926, 'attending', '2021-08-18 22:55:59', '2025-12-17 19:47:42', 'rdOP6W8m', '4297211'), + (21893, 174, 930, 'maybe', '2021-07-26 16:43:14', '2025-12-17 19:47:41', 'rdOP6W8m', '4300787'), + (21894, 174, 933, 'not_attending', '2021-07-25 12:07:46', '2025-12-17 19:47:40', 'rdOP6W8m', '4301723'), + (21895, 174, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'rdOP6W8m', '4302093'), + (21896, 174, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOP6W8m', '4304151'), + (21897, 174, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'rdOP6W8m', '4345519'), + (21898, 174, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOP6W8m', '4356801'), + (21899, 174, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'rdOP6W8m', '4358025'), + (21900, 174, 973, 'attending', '2021-08-21 22:47:02', '2025-12-17 19:47:42', 'rdOP6W8m', '4366186'), + (21901, 174, 974, 'not_attending', '2021-08-28 16:20:01', '2025-12-17 19:47:43', 'rdOP6W8m', '4366187'), + (21902, 174, 976, 'maybe', '2021-08-20 15:35:41', '2025-12-17 19:47:42', 'rdOP6W8m', '4373933'), + (21903, 174, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'rdOP6W8m', '4402823'), + (21904, 174, 990, 'not_attending', '2021-09-04 20:29:24', '2025-12-17 19:47:43', 'rdOP6W8m', '4420735'), + (21905, 174, 991, 'maybe', '2021-09-11 20:46:48', '2025-12-17 19:47:43', 'rdOP6W8m', '4420738'), + (21906, 174, 992, 'attending', '2021-09-02 13:54:18', '2025-12-17 19:47:33', 'rdOP6W8m', '4420739'), + (21907, 174, 993, 'attending', '2021-09-02 13:54:20', '2025-12-17 19:47:34', 'rdOP6W8m', '4420741'), + (21908, 174, 994, 'not_attending', '2021-09-26 02:23:09', '2025-12-17 19:47:34', 'rdOP6W8m', '4420742'), + (21909, 174, 995, 'attending', '2021-10-09 15:14:22', '2025-12-17 19:47:34', 'rdOP6W8m', '4420744'), + (21910, 174, 996, 'attending', '2021-09-18 02:23:23', '2025-12-17 19:47:35', 'rdOP6W8m', '4420747'), + (21911, 174, 997, 'attending', '2021-09-18 02:23:26', '2025-12-17 19:47:35', 'rdOP6W8m', '4420748'), + (21912, 174, 998, 'attending', '2021-09-18 02:23:28', '2025-12-17 19:47:36', 'rdOP6W8m', '4420749'), + (21913, 174, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'rdOP6W8m', '4461883'), + (21914, 174, 1032, 'maybe', '2021-09-16 14:33:14', '2025-12-17 19:47:34', 'rdOP6W8m', '4473825'), + (21915, 174, 1033, 'attending', '2021-09-18 02:21:42', '2025-12-17 19:47:43', 'rdOP6W8m', '4486006'), + (21916, 174, 1038, 'attending', '2021-09-24 01:34:49', '2025-12-17 19:47:34', 'rdOP6W8m', '4496603'), + (21917, 174, 1039, 'not_attending', '2021-09-26 02:23:06', '2025-12-17 19:47:34', 'rdOP6W8m', '4496604'), + (21918, 174, 1040, 'maybe', '2021-12-06 02:46:13', '2025-12-17 19:47:38', 'rdOP6W8m', '4496605'), + (21919, 174, 1042, 'maybe', '2021-11-15 21:56:31', '2025-12-17 19:47:37', 'rdOP6W8m', '4496607'), + (21920, 174, 1044, 'not_attending', '2021-11-07 16:20:40', '2025-12-17 19:47:36', 'rdOP6W8m', '4496609'), + (21921, 174, 1048, 'maybe', '2021-11-12 23:58:49', '2025-12-17 19:47:36', 'rdOP6W8m', '4496613'), + (21922, 174, 1050, 'attending', '2022-01-29 20:48:50', '2025-12-17 19:47:32', 'rdOP6W8m', '4496615'), + (21923, 174, 1053, 'attending', '2022-02-13 21:41:51', '2025-12-17 19:47:32', 'rdOP6W8m', '4496618'), + (21924, 174, 1054, 'not_attending', '2022-03-13 04:41:25', '2025-12-17 19:47:25', 'rdOP6W8m', '4496619'), + (21925, 174, 1055, 'attending', '2021-12-18 22:59:20', '2025-12-17 19:47:31', 'rdOP6W8m', '4496621'), + (21926, 174, 1057, 'maybe', '2021-11-15 21:56:27', '2025-12-17 19:47:37', 'rdOP6W8m', '4496624'), + (21927, 174, 1058, 'attending', '2022-02-13 21:41:55', '2025-12-17 19:47:33', 'rdOP6W8m', '4496625'), + (21928, 174, 1059, 'maybe', '2022-03-12 16:22:17', '2025-12-17 19:47:33', 'rdOP6W8m', '4496626'), + (21929, 174, 1060, 'not_attending', '2022-03-13 04:41:31', '2025-12-17 19:47:25', 'rdOP6W8m', '4496627'), + (21930, 174, 1061, 'attending', '2022-02-10 16:04:05', '2025-12-17 19:47:32', 'rdOP6W8m', '4496628'), + (21931, 174, 1062, 'attending', '2022-02-20 15:36:10', '2025-12-17 19:47:33', 'rdOP6W8m', '4496629'), + (21932, 174, 1065, 'not_attending', '2021-09-21 15:45:23', '2025-12-17 19:47:34', 'rdOP6W8m', '4505800'), + (21933, 174, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'rdOP6W8m', '4508342'), + (21934, 174, 1071, 'attending', '2021-09-27 01:51:52', '2025-12-17 19:47:34', 'rdOP6W8m', '4516078'), + (21935, 174, 1073, 'not_attending', '2021-09-29 11:33:45', '2025-12-17 19:47:34', 'rdOP6W8m', '4518993'), + (21936, 174, 1076, 'maybe', '2021-10-07 00:22:46', '2025-12-17 19:47:34', 'rdOP6W8m', '4539147'), + (21937, 174, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'rdOP6W8m', '4568602'), + (21938, 174, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'rdOP6W8m', '4572153'), + (21939, 174, 1088, 'attending', '2021-10-20 22:59:07', '2025-12-17 19:47:35', 'rdOP6W8m', '4574382'), + (21940, 174, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'rdOP6W8m', '4585962'), + (21941, 174, 1094, 'attending', '2021-10-28 00:12:13', '2025-12-17 19:47:36', 'rdOP6W8m', '4587337'), + (21942, 174, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'rdOP6W8m', '4596356'), + (21943, 174, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'rdOP6W8m', '4598860'), + (21944, 174, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'rdOP6W8m', '4598861'), + (21945, 174, 1099, 'attending', '2021-10-31 17:19:28', '2025-12-17 19:47:36', 'rdOP6W8m', '4602797'), + (21946, 174, 1101, 'attending', '2021-11-01 22:25:15', '2025-12-17 19:47:36', 'rdOP6W8m', '4607339'), + (21947, 174, 1103, 'maybe', '2021-11-12 23:58:27', '2025-12-17 19:47:36', 'rdOP6W8m', '4616350'), + (21948, 174, 1104, 'maybe', '2021-11-12 23:58:37', '2025-12-17 19:47:36', 'rdOP6W8m', '4618310'), + (21949, 174, 1109, 'not_attending', '2021-11-20 22:43:33', '2025-12-17 19:47:37', 'rdOP6W8m', '4635221'), + (21950, 174, 1110, 'not_attending', '2021-11-20 22:43:36', '2025-12-17 19:47:37', 'rdOP6W8m', '4635224'), + (21951, 174, 1113, 'not_attending', '2021-11-27 21:53:21', '2025-12-17 19:47:37', 'rdOP6W8m', '4635421'), + (21952, 174, 1114, 'maybe', '2021-11-12 23:57:36', '2025-12-17 19:47:36', 'rdOP6W8m', '4637896'), + (21953, 174, 1115, 'not_attending', '2021-11-17 00:48:20', '2025-12-17 19:47:37', 'rdOP6W8m', '4638673'), + (21954, 174, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'rdOP6W8m', '4642994'), + (21955, 174, 1117, 'attending', '2021-12-09 00:16:44', '2025-12-17 19:47:37', 'rdOP6W8m', '4642995'), + (21956, 174, 1118, 'maybe', '2021-12-15 23:31:59', '2025-12-17 19:47:38', 'rdOP6W8m', '4642996'), + (21957, 174, 1119, 'maybe', '2021-12-19 19:44:06', '2025-12-17 19:47:31', 'rdOP6W8m', '4642997'), + (21958, 174, 1126, 'attending', '2021-11-27 21:53:46', '2025-12-17 19:47:38', 'rdOP6W8m', '4645687'), + (21959, 174, 1127, 'maybe', '2021-12-02 17:30:46', '2025-12-17 19:47:38', 'rdOP6W8m', '4645698'), + (21960, 174, 1128, 'attending', '2021-11-15 13:13:32', '2025-12-17 19:47:37', 'rdOP6W8m', '4645704'), + (21961, 174, 1129, 'not_attending', '2021-12-02 17:29:38', '2025-12-17 19:47:37', 'rdOP6W8m', '4645705'), + (21962, 174, 1130, 'attending', '2021-11-26 18:17:41', '2025-12-17 19:47:37', 'rdOP6W8m', '4658824'), + (21963, 174, 1131, 'attending', '2021-11-27 21:53:49', '2025-12-17 19:47:31', 'rdOP6W8m', '4658825'), + (21964, 174, 1134, 'maybe', '2021-11-26 18:11:02', '2025-12-17 19:47:37', 'rdOP6W8m', '4668385'), + (21965, 174, 1135, 'not_attending', '2021-11-26 18:16:50', '2025-12-17 19:47:37', 'rdOP6W8m', '4670469'), + (21966, 174, 1142, 'maybe', '2021-12-02 17:30:15', '2025-12-17 19:47:37', 'rdOP6W8m', '4681923'), + (21967, 174, 1145, 'maybe', '2021-12-07 03:01:24', '2025-12-17 19:47:38', 'rdOP6W8m', '4691157'), + (21968, 174, 1146, 'maybe', '2021-12-07 03:01:28', '2025-12-17 19:47:38', 'rdOP6W8m', '4692841'), + (21969, 174, 1148, 'maybe', '2021-12-17 23:49:46', '2025-12-17 19:47:31', 'rdOP6W8m', '4692843'), + (21970, 174, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'rdOP6W8m', '4694407'), + (21971, 174, 1150, 'attending', '2021-12-13 00:53:16', '2025-12-17 19:47:38', 'rdOP6W8m', '4706262'), + (21972, 174, 1151, 'maybe', '2021-12-27 16:06:54', '2025-12-17 19:47:31', 'rdOP6W8m', '4708704'), + (21973, 174, 1154, 'maybe', '2022-01-26 23:43:58', '2025-12-17 19:47:32', 'rdOP6W8m', '4708708'), + (21974, 174, 1173, 'attending', '2022-01-08 16:49:50', '2025-12-17 19:47:31', 'rdOP6W8m', '4736495'), + (21975, 174, 1174, 'attending', '2022-01-08 16:50:05', '2025-12-17 19:47:31', 'rdOP6W8m', '4736496'), + (21976, 174, 1175, 'attending', '2022-01-08 16:50:07', '2025-12-17 19:47:32', 'rdOP6W8m', '4736497'), + (21977, 174, 1176, 'attending', '2022-02-05 04:10:11', '2025-12-17 19:47:32', 'rdOP6W8m', '4736498'), + (21978, 174, 1177, 'attending', '2022-02-10 16:04:08', '2025-12-17 19:47:32', 'rdOP6W8m', '4736499'), + (21979, 174, 1178, 'attending', '2022-01-08 16:50:08', '2025-12-17 19:47:32', 'rdOP6W8m', '4736500'), + (21980, 174, 1179, 'attending', '2022-02-13 21:41:53', '2025-12-17 19:47:32', 'rdOP6W8m', '4736501'), + (21981, 174, 1180, 'attending', '2022-02-13 21:41:56', '2025-12-17 19:47:33', 'rdOP6W8m', '4736502'), + (21982, 174, 1181, 'attending', '2022-02-20 15:36:09', '2025-12-17 19:47:33', 'rdOP6W8m', '4736503'), + (21983, 174, 1182, 'attending', '2022-03-08 19:03:16', '2025-12-17 19:47:33', 'rdOP6W8m', '4736504'), + (21984, 174, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'rdOP6W8m', '4746789'), + (21985, 174, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'rdOP6W8m', '4753929'), + (21986, 174, 1189, 'maybe', '2022-01-16 18:03:17', '2025-12-17 19:47:31', 'rdOP6W8m', '4753938'), + (21987, 174, 1207, 'not_attending', '2022-05-06 02:32:49', '2025-12-17 19:47:28', 'rdOP6W8m', '4773579'), + (21988, 174, 1219, 'maybe', '2022-01-29 20:49:27', '2025-12-17 19:47:32', 'rdOP6W8m', '4788466'), + (21989, 174, 1222, 'maybe', '2022-02-16 17:45:56', '2025-12-17 19:47:32', 'rdOP6W8m', '5015628'), + (21990, 174, 1225, 'not_attending', '2022-02-04 22:51:44', '2025-12-17 19:47:32', 'rdOP6W8m', '5019063'), + (21991, 174, 1228, 'attending', '2022-02-11 23:06:19', '2025-12-17 19:47:32', 'rdOP6W8m', '5028238'), + (21992, 174, 1232, 'not_attending', '2022-02-10 15:57:58', '2025-12-17 19:47:32', 'rdOP6W8m', '5038850'), + (21993, 174, 1233, 'maybe', '2022-02-10 16:03:45', '2025-12-17 19:47:32', 'rdOP6W8m', '5038910'), + (21994, 174, 1234, 'maybe', '2022-02-13 22:05:26', '2025-12-17 19:47:32', 'rdOP6W8m', '5042197'), + (21995, 174, 1236, 'attending', '2022-02-16 03:12:09', '2025-12-17 19:47:32', 'rdOP6W8m', '5045826'), + (21996, 174, 1238, 'maybe', '2022-02-20 15:35:25', '2025-12-17 19:47:32', 'rdOP6W8m', '5052236'), + (21997, 174, 1239, 'attending', '2022-03-02 18:00:47', '2025-12-17 19:47:33', 'rdOP6W8m', '5052238'), + (21998, 174, 1240, 'maybe', '2022-03-09 21:06:47', '2025-12-17 19:47:33', 'rdOP6W8m', '5052239'), + (21999, 174, 1241, 'maybe', '2022-03-22 01:07:27', '2025-12-17 19:47:25', 'rdOP6W8m', '5052240'), + (22000, 174, 1242, 'attending', '2022-03-30 22:36:07', '2025-12-17 19:47:25', 'rdOP6W8m', '5052241'), + (22001, 174, 1243, 'not_attending', '2022-03-06 20:09:26', '2025-12-17 19:47:33', 'rdOP6W8m', '5058336'), + (22002, 174, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'rdOP6W8m', '5132533'), + (22003, 174, 1260, 'not_attending', '2022-03-02 18:00:42', '2025-12-17 19:47:33', 'rdOP6W8m', '5142082'), + (22004, 174, 1262, 'maybe', '2022-03-09 21:12:42', '2025-12-17 19:47:33', 'rdOP6W8m', '5157773'), + (22005, 174, 1264, 'not_attending', '2022-03-13 04:41:53', '2025-12-17 19:47:25', 'rdOP6W8m', '5160281'), + (22006, 174, 1266, 'not_attending', '2022-03-13 04:41:35', '2025-12-17 19:47:33', 'rdOP6W8m', '5166407'), + (22007, 174, 1267, 'not_attending', '2022-03-13 04:41:47', '2025-12-17 19:47:25', 'rdOP6W8m', '5169578'), + (22008, 174, 1268, 'not_attending', '2022-03-13 04:41:39', '2025-12-17 19:47:33', 'rdOP6W8m', '5176296'), + (22009, 174, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'rdOP6W8m', '5186582'), + (22010, 174, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'rdOP6W8m', '5186583'), + (22011, 174, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'rdOP6W8m', '5186585'), + (22012, 174, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'rdOP6W8m', '5190437'), + (22013, 174, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'rdOP6W8m', '5195095'), + (22014, 174, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'rdOP6W8m', '5215989'), + (22015, 174, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'rdOP6W8m', '5223686'), + (22016, 174, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'rdOP6W8m', '5227432'), + (22017, 174, 1311, 'not_attending', '2022-04-08 02:44:27', '2025-12-17 19:47:27', 'rdOP6W8m', '5231430'), + (22018, 174, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'rdOP6W8m', '5231461'), + (22019, 174, 1343, 'not_attending', '2022-05-06 02:32:33', '2025-12-17 19:47:28', 'rdOP6W8m', '5247200'), + (22020, 174, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'rdOP6W8m', '5247467'), + (22021, 174, 1354, 'not_attending', '2022-04-21 18:07:01', '2025-12-17 19:47:27', 'rdOP6W8m', '5252569'), + (22022, 174, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'rdOP6W8m', '5260800'), + (22023, 174, 1369, 'not_attending', '2022-05-06 02:33:01', '2025-12-17 19:47:28', 'rdOP6W8m', '5262809'), + (22024, 174, 1374, 'not_attending', '2022-05-06 02:32:46', '2025-12-17 19:47:28', 'rdOP6W8m', '5269930'), + (22025, 174, 1376, 'not_attending', '2022-05-06 02:33:12', '2025-12-17 19:47:28', 'rdOP6W8m', '5271446'), + (22026, 174, 1377, 'not_attending', '2022-05-06 02:33:16', '2025-12-17 19:47:28', 'rdOP6W8m', '5271447'), + (22027, 174, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'rdOP6W8m', '5271448'), + (22028, 174, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'rdOP6W8m', '5271449'), + (22029, 174, 1380, 'not_attending', '2022-05-27 01:40:26', '2025-12-17 19:47:30', 'rdOP6W8m', '5271450'), + (22030, 174, 1381, 'not_attending', '2022-05-06 02:32:36', '2025-12-17 19:47:28', 'rdOP6W8m', '5271453'), + (22031, 174, 1382, 'not_attending', '2022-05-06 02:32:57', '2025-12-17 19:47:28', 'rdOP6W8m', '5276350'), + (22032, 174, 1383, 'not_attending', '2022-05-06 02:33:20', '2025-12-17 19:47:28', 'rdOP6W8m', '5276469'), + (22033, 174, 1385, 'not_attending', '2022-05-06 02:33:09', '2025-12-17 19:47:28', 'rdOP6W8m', '5277822'), + (22034, 174, 1386, 'not_attending', '2022-05-06 02:32:30', '2025-12-17 19:47:28', 'rdOP6W8m', '5278159'), + (22035, 174, 1387, 'not_attending', '2022-05-06 02:33:05', '2025-12-17 19:47:28', 'rdOP6W8m', '5278173'), + (22036, 174, 1388, 'not_attending', '2022-05-06 02:32:26', '2025-12-17 19:47:28', 'rdOP6W8m', '5278201'), + (22037, 174, 1389, 'not_attending', '2022-05-06 02:32:53', '2025-12-17 19:47:28', 'rdOP6W8m', '5278202'), + (22038, 174, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'rdOP6W8m', '5363695'), + (22039, 174, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'rdOP6W8m', '5365960'), + (22040, 174, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'rdOP6W8m', '5368973'), + (22041, 174, 1416, 'not_attending', '2022-05-27 01:40:30', '2025-12-17 19:47:30', 'rdOP6W8m', '5369628'), + (22042, 174, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'rdOP6W8m', '5378247'), + (22043, 174, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'rdOP6W8m', '5389605'), + (22044, 174, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'rdOP6W8m', '5397265'), + (22045, 174, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'rdOP6W8m', '5403967'), + (22046, 174, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'rdOP6W8m', '5404786'), + (22047, 174, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'rdOP6W8m', '5405203'), + (22048, 174, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'rdOP6W8m', '5411699'), + (22049, 174, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'rdOP6W8m', '5412550'), + (22050, 174, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'rdOP6W8m', '5415046'), + (22051, 174, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'rdOP6W8m', '5422086'), + (22052, 174, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'rdOP6W8m', '5422406'), + (22053, 174, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'rdOP6W8m', '5424565'), + (22054, 174, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'rdOP6W8m', '5426882'), + (22055, 174, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'rdOP6W8m', '5427083'), + (22056, 174, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'rdOP6W8m', '5441125'), + (22057, 174, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'rdOP6W8m', '5441126'), + (22058, 174, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'rdOP6W8m', '5441128'), + (22059, 174, 1517, 'attending', '2022-08-22 13:37:12', '2025-12-17 19:47:23', 'rdOP6W8m', '5441130'), + (22060, 174, 1518, 'attending', '2022-08-31 22:34:35', '2025-12-17 19:47:24', 'rdOP6W8m', '5441131'), + (22061, 174, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'rdOP6W8m', '5441132'), + (22062, 174, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'rdOP6W8m', '5446643'), + (22063, 174, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'rdOP6W8m', '5453325'), + (22064, 174, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'rdOP6W8m', '5454516'), + (22065, 174, 1544, 'not_attending', '2022-09-11 18:20:44', '2025-12-17 19:47:11', 'rdOP6W8m', '5454517'), + (22066, 174, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'rdOP6W8m', '5454605'), + (22067, 174, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'rdOP6W8m', '5455037'), + (22068, 174, 1559, 'maybe', '2022-09-28 21:38:40', '2025-12-17 19:47:11', 'rdOP6W8m', '5458731'), + (22069, 174, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'rdOP6W8m', '5461278'), + (22070, 174, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'rdOP6W8m', '5469480'), + (22071, 174, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'rdOP6W8m', '5471073'), + (22072, 174, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'rdOP6W8m', '5474663'), + (22073, 174, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'rdOP6W8m', '5482022'), + (22074, 174, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'rdOP6W8m', '5482793'), + (22075, 174, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'rdOP6W8m', '5488912'), + (22076, 174, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'rdOP6W8m', '5492192'), + (22077, 174, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'rdOP6W8m', '5493139'), + (22078, 174, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'rdOP6W8m', '5493200'), + (22079, 174, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'rdOP6W8m', '5502188'), + (22080, 174, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'rdOP6W8m', '5505059'), + (22081, 174, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'rdOP6W8m', '5509055'), + (22082, 174, 1616, 'attending', '2022-08-22 13:40:53', '2025-12-17 19:47:23', 'rdOP6W8m', '5509478'), + (22083, 174, 1618, 'maybe', '2022-08-22 13:37:08', '2025-12-17 19:47:23', 'rdOP6W8m', '5512005'), + (22084, 174, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'rdOP6W8m', '5512862'), + (22085, 174, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'rdOP6W8m', '5513985'), + (22086, 174, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'rdOP6W8m', '5519981'), + (22087, 174, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'rdOP6W8m', '5522550'), + (22088, 174, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'rdOP6W8m', '5534683'), + (22089, 174, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'rdOP6W8m', '5537735'), + (22090, 174, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'rdOP6W8m', '5540859'), + (22091, 174, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'rdOP6W8m', '5546619'), + (22092, 174, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'rdOP6W8m', '5555245'), + (22093, 174, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'rdOP6W8m', '5557747'), + (22094, 174, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'rdOP6W8m', '5560255'), + (22095, 174, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'rdOP6W8m', '5562906'), + (22096, 174, 1668, 'maybe', '2022-10-01 13:40:26', '2025-12-17 19:47:12', 'rdOP6W8m', '5563222'), + (22097, 174, 1673, 'maybe', '2022-09-29 22:05:35', '2025-12-17 19:47:11', 'rdOP6W8m', '5592454'), + (22098, 174, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'rdOP6W8m', '5600604'), + (22099, 174, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'rdOP6W8m', '5605544'), + (22100, 174, 1699, 'maybe', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'rdOP6W8m', '5606737'), + (22101, 174, 1703, 'maybe', '2022-10-05 20:51:06', '2025-12-17 19:47:12', 'rdOP6W8m', '5609176'), + (22102, 174, 1708, 'maybe', '2022-10-05 20:51:35', '2025-12-17 19:47:12', 'rdOP6W8m', '5617648'), + (22103, 174, 1711, 'maybe', '2022-10-05 20:52:58', '2025-12-17 19:47:12', 'rdOP6W8m', '5621883'), + (22104, 174, 1717, 'attending', '2022-10-20 21:59:39', '2025-12-17 19:47:13', 'rdOP6W8m', '5622842'), + (22105, 174, 1719, 'attending', '2022-10-05 20:54:19', '2025-12-17 19:47:12', 'rdOP6W8m', '5630958'), + (22106, 174, 1720, 'attending', '2022-10-10 13:14:57', '2025-12-17 19:47:12', 'rdOP6W8m', '5630959'), + (22107, 174, 1721, 'attending', '2022-10-18 23:26:17', '2025-12-17 19:47:13', 'rdOP6W8m', '5630960'), + (22108, 174, 1722, 'attending', '2022-10-20 22:00:05', '2025-12-17 19:47:14', 'rdOP6W8m', '5630961'), + (22109, 174, 1723, 'maybe', '2022-11-01 20:20:07', '2025-12-17 19:47:15', 'rdOP6W8m', '5630962'), + (22110, 174, 1724, 'attending', '2022-11-01 20:21:14', '2025-12-17 19:47:15', 'rdOP6W8m', '5630966'), + (22111, 174, 1725, 'attending', '2022-11-01 20:21:19', '2025-12-17 19:47:16', 'rdOP6W8m', '5630967'), + (22112, 174, 1726, 'maybe', '2022-11-01 20:21:21', '2025-12-17 19:47:16', 'rdOP6W8m', '5630968'), + (22113, 174, 1727, 'maybe', '2022-11-01 20:21:23', '2025-12-17 19:47:16', 'rdOP6W8m', '5630969'), + (22114, 174, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'rdOP6W8m', '5635406'), + (22115, 174, 1733, 'not_attending', '2022-10-09 02:54:50', '2025-12-17 19:47:12', 'rdOP6W8m', '5635411'), + (22116, 174, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'rdOP6W8m', '5638765'), + (22117, 174, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'rdOP6W8m', '5640097'), + (22118, 174, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'rdOP6W8m', '5640843'), + (22119, 174, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'rdOP6W8m', '5641521'), + (22120, 174, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'rdOP6W8m', '5642818'), + (22121, 174, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'rdOP6W8m', '5652395'), + (22122, 174, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'rdOP6W8m', '5670445'), + (22123, 174, 1763, 'maybe', '2022-11-01 20:21:03', '2025-12-17 19:47:15', 'rdOP6W8m', '5670803'), + (22124, 174, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'rdOP6W8m', '5671637'), + (22125, 174, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'rdOP6W8m', '5672329'), + (22126, 174, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'rdOP6W8m', '5674057'), + (22127, 174, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'rdOP6W8m', '5674060'), + (22128, 174, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'rdOP6W8m', '5677461'), + (22129, 174, 1776, 'maybe', '2022-11-01 20:20:54', '2025-12-17 19:47:15', 'rdOP6W8m', '5691067'), + (22130, 174, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'rdOP6W8m', '5698046'), + (22131, 174, 1783, 'maybe', '2022-11-15 23:27:33', '2025-12-17 19:47:16', 'rdOP6W8m', '5698621'), + (22132, 174, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'rdOP6W8m', '5699760'), + (22133, 174, 1785, 'maybe', '2022-11-15 23:27:49', '2025-12-17 19:47:15', 'rdOP6W8m', '5702414'), + (22134, 174, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'rdOP6W8m', '5741601'), + (22135, 174, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'rdOP6W8m', '5763458'), + (22136, 174, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'rdOP6W8m', '5774172'), + (22137, 174, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'rdOP6W8m', '5818247'), + (22138, 174, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'rdOP6W8m', '5819471'), + (22139, 174, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'rdOP6W8m', '5827739'), + (22140, 174, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'rdOP6W8m', '5844306'), + (22141, 174, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'rdOP6W8m', '5850159'), + (22142, 174, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'rdOP6W8m', '5858999'), + (22143, 174, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'rdOP6W8m', '5871984'), + (22144, 174, 1859, 'maybe', '2023-01-19 23:10:49', '2025-12-17 19:47:05', 'rdOP6W8m', '5876234'), + (22145, 174, 1860, 'maybe', '2023-01-18 22:22:39', '2025-12-17 19:47:05', 'rdOP6W8m', '5876309'), + (22146, 174, 1861, 'maybe', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'rdOP6W8m', '5876354'), + (22147, 174, 1864, 'maybe', '2023-01-19 23:11:07', '2025-12-17 19:47:05', 'rdOP6W8m', '5879675'), + (22148, 174, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'rdOP6W8m', '5880939'), + (22149, 174, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'rdOP6W8m', '5880940'), + (22150, 174, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'rdOP6W8m', '5880942'), + (22151, 174, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'rdOP6W8m', '5880943'), + (22152, 174, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'rdOP6W8m', '5887890'), + (22153, 174, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'rdOP6W8m', '5888598'), + (22154, 174, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'rdOP6W8m', '5893260'), + (22155, 174, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'rdOP6W8m', '5899826'), + (22156, 174, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'rdOP6W8m', '5900199'), + (22157, 174, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'rdOP6W8m', '5900200'), + (22158, 174, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'rdOP6W8m', '5900202'), + (22159, 174, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'rdOP6W8m', '5900203'), + (22160, 174, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'rdOP6W8m', '5901108'), + (22161, 174, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'rdOP6W8m', '5901126'), + (22162, 174, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'rdOP6W8m', '5909655'), + (22163, 174, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'rdOP6W8m', '5910522'), + (22164, 174, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'rdOP6W8m', '5910526'), + (22165, 174, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'rdOP6W8m', '5910528'), + (22166, 174, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'rdOP6W8m', '5916219'), + (22167, 174, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'rdOP6W8m', '5936234'), + (22168, 174, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'rdOP6W8m', '5958351'), + (22169, 174, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'rdOP6W8m', '5959751'), + (22170, 174, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'rdOP6W8m', '5959755'), + (22171, 174, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'rdOP6W8m', '5960055'), + (22172, 174, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'rdOP6W8m', '5961684'), + (22173, 174, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'rdOP6W8m', '5962132'), + (22174, 174, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'rdOP6W8m', '5962133'), + (22175, 174, 1946, 'maybe', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'rdOP6W8m', '5962134'), + (22176, 174, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'rdOP6W8m', '5962317'), + (22177, 174, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'rdOP6W8m', '5962318'), + (22178, 174, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'rdOP6W8m', '5965933'), + (22179, 174, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'rdOP6W8m', '5967014'), + (22180, 174, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'rdOP6W8m', '5972815'), + (22181, 174, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'rdOP6W8m', '5974016'), + (22182, 174, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'rdOP6W8m', '5975052'), + (22183, 174, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'rdOP6W8m', '5975054'), + (22184, 174, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'rdOP6W8m', '5981515'), + (22185, 174, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'rdOP6W8m', '5993516'), + (22186, 174, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'rdOP6W8m', '5998939'), + (22187, 174, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'rdOP6W8m', '6028191'), + (22188, 174, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'rdOP6W8m', '6040066'), + (22189, 174, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'rdOP6W8m', '6042717'), + (22190, 174, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'rdOP6W8m', '6044838'), + (22191, 174, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'rdOP6W8m', '6044839'), + (22192, 174, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOP6W8m', '6045684'), + (22193, 174, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'rdOP6W8m', '6050104'), + (22194, 174, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'rdOP6W8m', '6053195'), + (22195, 174, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'rdOP6W8m', '6053198'), + (22196, 174, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'rdOP6W8m', '6056085'), + (22197, 174, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'rdOP6W8m', '6056916'), + (22198, 174, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'rdOP6W8m', '6059290'), + (22199, 174, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'rdOP6W8m', '6060328'), + (22200, 174, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'rdOP6W8m', '6061037'), + (22201, 174, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'rdOP6W8m', '6061039'), + (22202, 174, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'rdOP6W8m', '6065813'), + (22203, 174, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'rdOP6W8m', '6067245'), + (22204, 174, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'rdOP6W8m', '6068094'), + (22205, 174, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'rdOP6W8m', '6068252'), + (22206, 174, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'rdOP6W8m', '6068253'), + (22207, 174, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'rdOP6W8m', '6068254'), + (22208, 174, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'rdOP6W8m', '6068280'), + (22209, 174, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'rdOP6W8m', '6069093'), + (22210, 174, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'rdOP6W8m', '6072528'), + (22211, 174, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'rdOP6W8m', '6075556'), + (22212, 174, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'rdOP6W8m', '6079840'), + (22213, 174, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'rdOP6W8m', '6083398'), + (22214, 174, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'rdOP6W8m', '6093504'), + (22215, 174, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'rdOP6W8m', '6097414'), + (22216, 174, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'rdOP6W8m', '6097442'), + (22217, 174, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'rdOP6W8m', '6097684'), + (22218, 174, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'rdOP6W8m', '6098762'), + (22219, 174, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'rdOP6W8m', '6101362'), + (22220, 174, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'rdOP6W8m', '6107314'), + (22221, 174, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'rdOP6W8m', '6337970'), + (22222, 174, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'rdOP6W8m', '6342044'), + (22223, 174, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'rdOP6W8m', '6343294'), + (22224, 174, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'rdOP6W8m', '6347034'), + (22225, 174, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'rdOP6W8m', '6347056'), + (22226, 174, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'rdOP6W8m', '6353830'), + (22227, 174, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'rdOP6W8m', '6353831'), + (22228, 174, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'rdOP6W8m', '6357867'), + (22229, 174, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'rdOP6W8m', '6358652'), + (22230, 174, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'rdOP6W8m', '6361709'), + (22231, 174, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'rdOP6W8m', '6361710'), + (22232, 174, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'rdOP6W8m', '6361711'), + (22233, 174, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'rdOP6W8m', '6361712'), + (22234, 174, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'rdOP6W8m', '6361713'), + (22235, 174, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'rdOP6W8m', '6382573'), + (22236, 174, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'rdOP6W8m', '6388604'), + (22237, 174, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'rdOP6W8m', '6394629'), + (22238, 174, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'rdOP6W8m', '6394631'), + (22239, 174, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'rdOP6W8m', '6440863'), + (22240, 174, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'rdOP6W8m', '6445440'), + (22241, 174, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'rdOP6W8m', '6453951'), + (22242, 174, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'rdOP6W8m', '6461696'), + (22243, 174, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'rdOP6W8m', '6462129'), + (22244, 174, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'rdOP6W8m', '6463218'), + (22245, 174, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'rdOP6W8m', '6472181'), + (22246, 174, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'rdOP6W8m', '6482693'), + (22247, 174, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'rdOP6W8m', '6484200'), + (22248, 174, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'rdOP6W8m', '6484680'), + (22249, 174, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'rdOP6W8m', '6507741'), + (22250, 174, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'rdOP6W8m', '6514659'), + (22251, 174, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'rdOP6W8m', '6514660'), + (22252, 174, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'rdOP6W8m', '6519103'), + (22253, 174, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'rdOP6W8m', '6535681'), + (22254, 174, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'rdOP6W8m', '6584747'), + (22255, 174, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'rdOP6W8m', '6587097'), + (22256, 174, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'rdOP6W8m', '6609022'), + (22257, 174, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'rdOP6W8m', '6632757'), + (22258, 174, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'rdOP6W8m', '6644187'), + (22259, 174, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'rdOP6W8m', '6648951'), + (22260, 174, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'rdOP6W8m', '6648952'), + (22261, 174, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'rdOP6W8m', '6655401'), + (22262, 174, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'rdOP6W8m', '6661585'), + (22263, 174, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'rdOP6W8m', '6661588'), + (22264, 174, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'rdOP6W8m', '6661589'), + (22265, 174, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'rdOP6W8m', '6699906'), + (22266, 174, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'rdOP6W8m', '6699913'), + (22267, 174, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'rdOP6W8m', '6701109'), + (22268, 174, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'rdOP6W8m', '6705219'), + (22269, 174, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'rdOP6W8m', '6710153'), + (22270, 174, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'rdOP6W8m', '6711552'), + (22271, 174, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'rdOP6W8m', '6711553'), + (22272, 174, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'rdOP6W8m', '6722688'), + (22273, 174, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'rdOP6W8m', '6730620'), + (22274, 174, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'rdOP6W8m', '6740364'), + (22275, 174, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'rdOP6W8m', '6743829'), + (22276, 174, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'rdOP6W8m', '7030380'), + (22277, 174, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'rdOP6W8m', '7033677'), + (22278, 174, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'rdOP6W8m', '7044715'), + (22279, 174, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'rdOP6W8m', '7050318'), + (22280, 174, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'rdOP6W8m', '7050319'), + (22281, 174, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'rdOP6W8m', '7050322'), + (22282, 174, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'rdOP6W8m', '7057804'), + (22283, 174, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'rdOP6W8m', '7072824'), + (22284, 174, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'rdOP6W8m', '7074348'), + (22285, 174, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'rdOP6W8m', '7074364'), + (22286, 174, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'rdOP6W8m', '7089267'), + (22287, 174, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'rdOP6W8m', '7098747'), + (22288, 174, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'rdOP6W8m', '7113468'), + (22289, 174, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'rdOP6W8m', '7114856'), + (22290, 174, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'rdOP6W8m', '7114951'), + (22291, 174, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'rdOP6W8m', '7114955'), + (22292, 174, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'rdOP6W8m', '7114956'), + (22293, 174, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'rdOP6W8m', '7114957'), + (22294, 174, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'rdOP6W8m', '7159484'), + (22295, 174, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'rdOP6W8m', '7178446'), + (22296, 174, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'rdOP6W8m', '7220467'), + (22297, 174, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'rdOP6W8m', '7240354'), + (22298, 174, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'rdOP6W8m', '7251633'), + (22299, 174, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'rdOP6W8m', '7324073'), + (22300, 174, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'rdOP6W8m', '7324074'), + (22301, 174, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'rdOP6W8m', '7324075'), + (22302, 174, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'rdOP6W8m', '7324078'), + (22303, 174, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'rdOP6W8m', '7324082'), + (22304, 174, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'rdOP6W8m', '7331457'), + (22305, 174, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'rdOP6W8m', '7363643'), + (22306, 174, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'rdOP6W8m', '7368606'), + (22307, 174, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'rdOP6W8m', '7397462'), + (22308, 174, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'rdOP6W8m', '7424275'), + (22309, 174, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'rdOP6W8m', '7432751'), + (22310, 174, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'rdOP6W8m', '7432752'), + (22311, 174, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'rdOP6W8m', '7432753'), + (22312, 174, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'rdOP6W8m', '7432754'), + (22313, 174, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'rdOP6W8m', '7432755'), + (22314, 174, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'rdOP6W8m', '7432756'), + (22315, 174, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'rdOP6W8m', '7432758'), + (22316, 174, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'rdOP6W8m', '7432759'), + (22317, 174, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'rdOP6W8m', '7433834'), + (22318, 174, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'rdOP6W8m', '7470197'), + (22319, 174, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'rdOP6W8m', '7685613'), + (22320, 174, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'rdOP6W8m', '7688194'), + (22321, 174, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'rdOP6W8m', '7688196'), + (22322, 174, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'rdOP6W8m', '7688289'), + (22323, 174, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'rdOP6W8m', '7692763'), + (22324, 174, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'rdOP6W8m', '7697552'), + (22325, 174, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'rdOP6W8m', '7699878'), + (22326, 174, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'rdOP6W8m', '7704043'), + (22327, 174, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'rdOP6W8m', '7712467'), + (22328, 174, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'rdOP6W8m', '7713585'), + (22329, 174, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'rdOP6W8m', '7713586'), + (22330, 174, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'rdOP6W8m', '7738518'), + (22331, 174, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'rdOP6W8m', '7750636'), + (22332, 174, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'rdOP6W8m', '7796540'), + (22333, 174, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'rdOP6W8m', '7796541'), + (22334, 174, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'rdOP6W8m', '7796542'), + (22335, 174, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'rdOP6W8m', '7825913'), + (22336, 174, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'rdOP6W8m', '7826209'), + (22337, 174, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'rdOP6W8m', '7834742'), + (22338, 174, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'rdOP6W8m', '7842108'), + (22339, 174, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'rdOP6W8m', '7842902'), + (22340, 174, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'rdOP6W8m', '7842903'), + (22341, 174, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'rdOP6W8m', '7842904'), + (22342, 174, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'rdOP6W8m', '7842905'), + (22343, 174, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'rdOP6W8m', '7855719'), + (22344, 174, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'rdOP6W8m', '7860683'), + (22345, 174, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'rdOP6W8m', '7860684'), + (22346, 174, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'rdOP6W8m', '7866095'), + (22347, 174, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'rdOP6W8m', '7869170'), + (22348, 174, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'rdOP6W8m', '7869188'), + (22349, 174, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'rdOP6W8m', '7869201'), + (22350, 174, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'rdOP6W8m', '7877465'), + (22351, 174, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'rdOP6W8m', '7888250'), + (22352, 174, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'rdOP6W8m', '7904777'), + (22353, 174, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'rdOP6W8m', '8349164'), + (22354, 174, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'rdOP6W8m', '8349545'), + (22355, 174, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'rdOP6W8m', '8368028'), + (22356, 174, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'rdOP6W8m', '8368029'), + (22357, 174, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'rdOP6W8m', '8388462'), + (22358, 174, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'rdOP6W8m', '8400273'), + (22359, 174, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'rdOP6W8m', '8400275'), + (22360, 174, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'rdOP6W8m', '8400276'), + (22361, 174, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'rdOP6W8m', '8404977'), + (22362, 174, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'rdOP6W8m', '8430783'), + (22363, 174, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'rdOP6W8m', '8430784'), + (22364, 174, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'rdOP6W8m', '8430799'), + (22365, 174, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'rdOP6W8m', '8430800'), + (22366, 174, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'rdOP6W8m', '8430801'), + (22367, 174, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'rdOP6W8m', '8438709'), + (22368, 174, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'rdOP6W8m', '8457738'), + (22369, 174, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'rdOP6W8m', '8459566'), + (22370, 174, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'rdOP6W8m', '8459567'), + (22371, 174, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'rdOP6W8m', '8461032'), + (22372, 174, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'rdOP6W8m', '8477877'), + (22373, 174, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'rdOP6W8m', '8485688'), + (22374, 174, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'rdOP6W8m', '8490587'), + (22375, 174, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'rdOP6W8m', '8493552'), + (22376, 174, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'rdOP6W8m', '8493553'), + (22377, 174, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'rdOP6W8m', '8493554'), + (22378, 174, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'rdOP6W8m', '8493555'), + (22379, 174, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'rdOP6W8m', '8493556'), + (22380, 174, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'rdOP6W8m', '8493557'), + (22381, 174, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'rdOP6W8m', '8493558'), + (22382, 174, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'rdOP6W8m', '8493559'), + (22383, 174, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'rdOP6W8m', '8493560'), + (22384, 174, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'rdOP6W8m', '8493561'), + (22385, 174, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'rdOP6W8m', '8493572'), + (22386, 174, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'rdOP6W8m', '8540725'), + (22387, 174, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'rdOP6W8m', '8555421'), + (22388, 175, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dxD095Gd', '4694407'), + (22389, 175, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dxD095Gd', '4736497'), + (22390, 175, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dxD095Gd', '4736500'), + (22391, 175, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dxD095Gd', '4746789'), + (22392, 175, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dxD095Gd', '4753929'), + (22393, 175, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dxD095Gd', '6045684'), + (22394, 176, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mMbOKBYA', '5880940'), + (22395, 176, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mMbOKBYA', '5880942'), + (22396, 176, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mMbOKBYA', '5880943'), + (22397, 176, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mMbOKBYA', '5900199'), + (22398, 176, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mMbOKBYA', '5900200'), + (22399, 176, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mMbOKBYA', '5900202'), + (22400, 176, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mMbOKBYA', '5900203'), + (22401, 176, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mMbOKBYA', '5901108'), + (22402, 176, 1896, 'attending', '2023-02-03 03:29:49', '2025-12-17 19:47:06', 'mMbOKBYA', '5901126'), + (22403, 176, 1897, 'maybe', '2023-02-10 21:11:10', '2025-12-17 19:47:07', 'mMbOKBYA', '5901128'), + (22404, 176, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mMbOKBYA', '5909655'), + (22405, 176, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mMbOKBYA', '5910522'), + (22406, 176, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mMbOKBYA', '5910526'), + (22407, 176, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mMbOKBYA', '5910528'), + (22408, 176, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mMbOKBYA', '5916219'), + (22409, 176, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mMbOKBYA', '5936234'), + (22410, 176, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mMbOKBYA', '5958351'), + (22411, 176, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mMbOKBYA', '5959751'), + (22412, 176, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mMbOKBYA', '5959755'), + (22413, 176, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mMbOKBYA', '5960055'), + (22414, 176, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mMbOKBYA', '5961684'), + (22415, 176, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mMbOKBYA', '5962132'), + (22416, 176, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mMbOKBYA', '5962133'), + (22417, 176, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mMbOKBYA', '5962134'), + (22418, 176, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mMbOKBYA', '5962317'), + (22419, 176, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mMbOKBYA', '5962318'), + (22420, 176, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mMbOKBYA', '5965933'), + (22421, 176, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mMbOKBYA', '5967014'), + (22422, 176, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mMbOKBYA', '5972815'), + (22423, 176, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mMbOKBYA', '5974016'), + (22424, 176, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mMbOKBYA', '5981515'), + (22425, 176, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mMbOKBYA', '5993516'), + (22426, 176, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mMbOKBYA', '5998939'), + (22427, 176, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mMbOKBYA', '6028191'), + (22428, 176, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mMbOKBYA', '6040066'), + (22429, 176, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mMbOKBYA', '6042717'), + (22430, 176, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mMbOKBYA', '6044838'), + (22431, 176, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mMbOKBYA', '6044839'), + (22432, 176, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mMbOKBYA', '6045684'), + (22433, 176, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mMbOKBYA', '6050104'), + (22434, 176, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mMbOKBYA', '6053195'), + (22435, 176, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mMbOKBYA', '6053198'), + (22436, 176, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mMbOKBYA', '6056085'), + (22437, 176, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mMbOKBYA', '6056916'), + (22438, 176, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mMbOKBYA', '6059290'), + (22439, 176, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mMbOKBYA', '6060328'), + (22440, 176, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mMbOKBYA', '6061037'), + (22441, 176, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mMbOKBYA', '6061039'), + (22442, 176, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mMbOKBYA', '6067245'), + (22443, 176, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mMbOKBYA', '6068094'), + (22444, 176, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mMbOKBYA', '6068252'), + (22445, 176, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mMbOKBYA', '6068253'), + (22446, 176, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mMbOKBYA', '6068254'), + (22447, 176, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mMbOKBYA', '6068280'), + (22448, 176, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mMbOKBYA', '6069093'), + (22449, 176, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mMbOKBYA', '6072528'), + (22450, 176, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mMbOKBYA', '6079840'), + (22451, 176, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mMbOKBYA', '6083398'), + (22452, 176, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mMbOKBYA', '6093504'), + (22453, 176, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mMbOKBYA', '6097414'), + (22454, 176, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mMbOKBYA', '6097442'), + (22455, 176, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mMbOKBYA', '6097684'), + (22456, 176, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mMbOKBYA', '6098762'), + (22457, 176, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mMbOKBYA', '6101362'), + (22458, 176, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mMbOKBYA', '6103752'), + (22459, 176, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mMbOKBYA', '6107314'), + (22460, 177, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4WP20JPd', '4356801'), + (22461, 177, 973, 'attending', '2021-08-21 11:43:39', '2025-12-17 19:47:42', '4WP20JPd', '4366186'), + (22462, 177, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:42', '4WP20JPd', '4366187'), + (22463, 177, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4WP20JPd', '4420735'), + (22464, 177, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4WP20JPd', '4420738'), + (22465, 177, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', '4WP20JPd', '4420739'), + (22466, 177, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4WP20JPd', '4420741'), + (22467, 177, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4WP20JPd', '4420744'), + (22468, 177, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4WP20JPd', '4420747'), + (22469, 177, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4WP20JPd', '4420748'), + (22470, 177, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4WP20JPd', '4420749'), + (22471, 177, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4WP20JPd', '4461883'), + (22472, 177, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4WP20JPd', '4508342'), + (22473, 177, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4WP20JPd', '4568602'), + (22474, 177, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4WP20JPd', '4572153'), + (22475, 177, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4WP20JPd', '4585962'), + (22476, 177, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4WP20JPd', '4596356'), + (22477, 177, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4WP20JPd', '4598860'), + (22478, 177, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4WP20JPd', '4598861'), + (22479, 177, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4WP20JPd', '4602797'), + (22480, 177, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4WP20JPd', '4637896'), + (22481, 177, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4WP20JPd', '4642994'), + (22482, 177, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4WP20JPd', '4642995'), + (22483, 177, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4WP20JPd', '4642996'), + (22484, 177, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4WP20JPd', '4642997'), + (22485, 177, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4WP20JPd', '4645687'), + (22486, 177, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4WP20JPd', '4645698'), + (22487, 177, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4WP20JPd', '4645704'), + (22488, 177, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4WP20JPd', '4645705'), + (22489, 177, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4WP20JPd', '4668385'), + (22490, 177, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WP20JPd', '6045684'), + (22491, 178, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'AQRkr1a4', '5513985'), + (22492, 178, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'AQRkr1a4', '5534683'), + (22493, 178, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AQRkr1a4', '5537735'), + (22494, 178, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AQRkr1a4', '5540859'), + (22495, 178, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AQRkr1a4', '5555245'), + (22496, 178, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AQRkr1a4', '5557747'), + (22497, 178, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AQRkr1a4', '5560255'), + (22498, 178, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AQRkr1a4', '5562906'), + (22499, 178, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AQRkr1a4', '5600604'), + (22500, 178, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AQRkr1a4', '5605544'), + (22501, 178, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AQRkr1a4', '5635406'), + (22502, 178, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AQRkr1a4', '5638765'), + (22503, 178, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'AQRkr1a4', '5640843'), + (22504, 178, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQRkr1a4', '6045684'), + (22505, 179, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', 'mj6BxZbm', '5426882'), + (22506, 179, 1513, 'attending', '2022-07-16 01:15:13', '2025-12-17 19:47:19', 'mj6BxZbm', '5441125'), + (22507, 179, 1514, 'attending', '2022-07-22 02:27:59', '2025-12-17 19:47:20', 'mj6BxZbm', '5441126'), + (22508, 179, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mj6BxZbm', '5441128'), + (22509, 179, 1516, 'attending', '2022-08-20 20:47:33', '2025-12-17 19:47:23', 'mj6BxZbm', '5441129'), + (22510, 179, 1517, 'attending', '2022-08-26 18:54:18', '2025-12-17 19:47:23', 'mj6BxZbm', '5441130'), + (22511, 179, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mj6BxZbm', '5441131'), + (22512, 179, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mj6BxZbm', '5441132'), + (22513, 179, 1528, 'not_attending', '2022-07-17 17:31:19', '2025-12-17 19:47:20', 'mj6BxZbm', '5446643'), + (22514, 179, 1536, 'attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'mj6BxZbm', '5449068'), + (22515, 179, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mj6BxZbm', '5453325'), + (22516, 179, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mj6BxZbm', '5454516'), + (22517, 179, 1544, 'attending', '2022-09-17 18:02:23', '2025-12-17 19:47:11', 'mj6BxZbm', '5454517'), + (22518, 179, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mj6BxZbm', '5454605'), + (22519, 179, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mj6BxZbm', '5455037'), + (22520, 179, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mj6BxZbm', '5461278'), + (22521, 179, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mj6BxZbm', '5469480'), + (22522, 179, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mj6BxZbm', '5471073'), + (22523, 179, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mj6BxZbm', '5474663'), + (22524, 179, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mj6BxZbm', '5482022'), + (22525, 179, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mj6BxZbm', '5482793'), + (22526, 179, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mj6BxZbm', '5488912'), + (22527, 179, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mj6BxZbm', '5492192'), + (22528, 179, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mj6BxZbm', '5493139'), + (22529, 179, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mj6BxZbm', '5493200'), + (22530, 179, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mj6BxZbm', '5502188'), + (22531, 179, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mj6BxZbm', '5505059'), + (22532, 179, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mj6BxZbm', '5509055'), + (22533, 179, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mj6BxZbm', '5512862'), + (22534, 179, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mj6BxZbm', '5513985'), + (22535, 179, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mj6BxZbm', '5519981'), + (22536, 179, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mj6BxZbm', '5522550'), + (22537, 179, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mj6BxZbm', '5534683'), + (22538, 179, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mj6BxZbm', '5537735'), + (22539, 179, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mj6BxZbm', '5540859'), + (22540, 179, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mj6BxZbm', '5546619'), + (22541, 179, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mj6BxZbm', '5555245'), + (22542, 179, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mj6BxZbm', '5557747'), + (22543, 179, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mj6BxZbm', '5560255'), + (22544, 179, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mj6BxZbm', '5562906'), + (22545, 179, 1668, 'attending', '2022-10-01 17:43:01', '2025-12-17 19:47:12', 'mj6BxZbm', '5563222'), + (22546, 179, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mj6BxZbm', '5600604'), + (22547, 179, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mj6BxZbm', '5605544'), + (22548, 179, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'mj6BxZbm', '5606737'), + (22549, 179, 1719, 'attending', '2022-10-07 14:56:13', '2025-12-17 19:47:12', 'mj6BxZbm', '5630958'), + (22550, 179, 1720, 'attending', '2022-10-15 19:14:21', '2025-12-17 19:47:12', 'mj6BxZbm', '5630959'), + (22551, 179, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mj6BxZbm', '5630960'), + (22552, 179, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mj6BxZbm', '5630961'), + (22553, 179, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mj6BxZbm', '5630962'), + (22554, 179, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mj6BxZbm', '5630966'), + (22555, 179, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mj6BxZbm', '5630967'), + (22556, 179, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mj6BxZbm', '5630968'), + (22557, 179, 1727, 'attending', '2022-12-03 04:00:26', '2025-12-17 19:47:16', 'mj6BxZbm', '5630969'), + (22558, 179, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mj6BxZbm', '5635406'), + (22559, 179, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mj6BxZbm', '5638765'), + (22560, 179, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mj6BxZbm', '5640097'), + (22561, 179, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mj6BxZbm', '5640843'), + (22562, 179, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mj6BxZbm', '5641521'), + (22563, 179, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mj6BxZbm', '5642818'), + (22564, 179, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mj6BxZbm', '5652395'), + (22565, 179, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mj6BxZbm', '5670445'), + (22566, 179, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mj6BxZbm', '5671637'), + (22567, 179, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mj6BxZbm', '5672329'), + (22568, 179, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mj6BxZbm', '5674057'), + (22569, 179, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mj6BxZbm', '5674060'), + (22570, 179, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mj6BxZbm', '5677461'), + (22571, 179, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mj6BxZbm', '5698046'), + (22572, 179, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mj6BxZbm', '5699760'), + (22573, 179, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mj6BxZbm', '5741601'), + (22574, 179, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mj6BxZbm', '5763458'), + (22575, 179, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mj6BxZbm', '5774172'), + (22576, 179, 1832, 'not_attending', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'mj6BxZbm', '5818247'), + (22577, 179, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mj6BxZbm', '5819471'), + (22578, 179, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mj6BxZbm', '5827739'), + (22579, 179, 1843, 'attending', '2022-12-18 00:01:06', '2025-12-17 19:47:04', 'mj6BxZbm', '5844304'), + (22580, 179, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mj6BxZbm', '5844306'), + (22581, 179, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mj6BxZbm', '5850159'), + (22582, 179, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mj6BxZbm', '5858999'), + (22583, 179, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mj6BxZbm', '5871984'), + (22584, 179, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mj6BxZbm', '5876354'), + (22585, 179, 1864, 'attending', '2023-01-21 21:48:13', '2025-12-17 19:47:05', 'mj6BxZbm', '5879675'), + (22586, 179, 1865, 'attending', '2023-01-28 19:13:39', '2025-12-17 19:47:06', 'mj6BxZbm', '5879676'), + (22587, 179, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mj6BxZbm', '5880939'), + (22588, 179, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mj6BxZbm', '5880940'), + (22589, 179, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mj6BxZbm', '5880942'), + (22590, 179, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mj6BxZbm', '5880943'), + (22591, 179, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mj6BxZbm', '5887890'), + (22592, 179, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mj6BxZbm', '5888598'), + (22593, 179, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mj6BxZbm', '5893260'), + (22594, 179, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mj6BxZbm', '5899826'), + (22595, 179, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mj6BxZbm', '5900199'), + (22596, 179, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mj6BxZbm', '5900200'), + (22597, 179, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mj6BxZbm', '5900202'), + (22598, 179, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mj6BxZbm', '5900203'), + (22599, 179, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mj6BxZbm', '5901108'), + (22600, 179, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mj6BxZbm', '5901126'), + (22601, 179, 1897, 'attending', '2023-02-11 22:28:29', '2025-12-17 19:47:07', 'mj6BxZbm', '5901128'), + (22602, 179, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mj6BxZbm', '5909655'), + (22603, 179, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mj6BxZbm', '5910522'), + (22604, 179, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mj6BxZbm', '5910526'), + (22605, 179, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mj6BxZbm', '5910528'), + (22606, 179, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mj6BxZbm', '5916219'), + (22607, 179, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mj6BxZbm', '5936234'), + (22608, 179, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mj6BxZbm', '5958351'), + (22609, 179, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mj6BxZbm', '5959751'), + (22610, 179, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mj6BxZbm', '5959755'), + (22611, 179, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mj6BxZbm', '5960055'), + (22612, 179, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mj6BxZbm', '5961684'), + (22613, 179, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mj6BxZbm', '5962132'), + (22614, 179, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mj6BxZbm', '5962133'), + (22615, 179, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mj6BxZbm', '5962134'), + (22616, 179, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mj6BxZbm', '5962317'), + (22617, 179, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mj6BxZbm', '5962318'), + (22618, 179, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mj6BxZbm', '5965933'), + (22619, 179, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mj6BxZbm', '5967014'), + (22620, 179, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mj6BxZbm', '5972815'), + (22621, 179, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mj6BxZbm', '5974016'), + (22622, 179, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mj6BxZbm', '5981515'), + (22623, 179, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mj6BxZbm', '5993516'), + (22624, 179, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mj6BxZbm', '5998939'), + (22625, 179, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mj6BxZbm', '6028191'), + (22626, 179, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mj6BxZbm', '6040066'), + (22627, 179, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mj6BxZbm', '6042717'), + (22628, 179, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mj6BxZbm', '6044838'), + (22629, 179, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mj6BxZbm', '6044839'), + (22630, 179, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj6BxZbm', '6045684'), + (22631, 179, 1991, 'not_attending', '2023-04-01 22:27:06', '2025-12-17 19:46:58', 'mj6BxZbm', '6047354'), + (22632, 179, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mj6BxZbm', '6050104'), + (22633, 179, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mj6BxZbm', '6053195'), + (22634, 179, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mj6BxZbm', '6053198'), + (22635, 179, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mj6BxZbm', '6056085'), + (22636, 179, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mj6BxZbm', '6056916'), + (22637, 179, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mj6BxZbm', '6059290'), + (22638, 179, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mj6BxZbm', '6060328'), + (22639, 179, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mj6BxZbm', '6061037'), + (22640, 179, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mj6BxZbm', '6061039'), + (22641, 179, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mj6BxZbm', '6067245'), + (22642, 179, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mj6BxZbm', '6068094'), + (22643, 179, 2028, 'maybe', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mj6BxZbm', '6068252'), + (22644, 179, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mj6BxZbm', '6068253'), + (22645, 179, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mj6BxZbm', '6068254'), + (22646, 179, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'mj6BxZbm', '6068280'), + (22647, 179, 2032, 'attending', '2023-06-03 22:20:58', '2025-12-17 19:47:04', 'mj6BxZbm', '6068281'), + (22648, 179, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mj6BxZbm', '6069093'), + (22649, 179, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mj6BxZbm', '6072528'), + (22650, 179, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mj6BxZbm', '6079840'), + (22651, 179, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mj6BxZbm', '6083398'), + (22652, 179, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'mj6BxZbm', '6093504'), + (22653, 179, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mj6BxZbm', '6097414'), + (22654, 179, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mj6BxZbm', '6097442'), + (22655, 179, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mj6BxZbm', '6097684'), + (22656, 179, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mj6BxZbm', '6098762'), + (22657, 179, 2064, 'not_attending', '2023-06-24 12:27:52', '2025-12-17 19:46:50', 'mj6BxZbm', '6099988'), + (22658, 179, 2065, 'attending', '2023-06-17 17:06:59', '2025-12-17 19:46:49', 'mj6BxZbm', '6101169'), + (22659, 179, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mj6BxZbm', '6101361'), + (22660, 179, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mj6BxZbm', '6101362'), + (22661, 179, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mj6BxZbm', '6103752'), + (22662, 179, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mj6BxZbm', '6107314'), + (22663, 179, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mj6BxZbm', '6120034'), + (22664, 179, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mj6BxZbm', '6136733'), + (22665, 179, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mj6BxZbm', '6137989'), + (22666, 179, 2097, 'attending', '2023-06-10 19:18:24', '2025-12-17 19:47:04', 'mj6BxZbm', '6139059'), + (22667, 179, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mj6BxZbm', '6150864'), + (22668, 179, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mj6BxZbm', '6155491'), + (22669, 179, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mj6BxZbm', '6164417'), + (22670, 179, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mj6BxZbm', '6166388'), + (22671, 179, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mj6BxZbm', '6176439'), + (22672, 179, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'mj6BxZbm', '6182410'), + (22673, 179, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mj6BxZbm', '6185812'), + (22674, 179, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mj6BxZbm', '6187651'), + (22675, 179, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mj6BxZbm', '6187963'), + (22676, 179, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mj6BxZbm', '6187964'), + (22677, 179, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mj6BxZbm', '6187966'), + (22678, 179, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mj6BxZbm', '6187967'), + (22679, 179, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mj6BxZbm', '6187969'), + (22680, 179, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mj6BxZbm', '6334878'), + (22681, 179, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mj6BxZbm', '6337236'), + (22682, 179, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mj6BxZbm', '6337970'), + (22683, 179, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mj6BxZbm', '6338308'), + (22684, 179, 2159, 'attending', '2023-07-22 18:58:56', '2025-12-17 19:46:53', 'mj6BxZbm', '6338355'), + (22685, 179, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mj6BxZbm', '6340845'), + (22686, 179, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mj6BxZbm', '6341710'), + (22687, 179, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mj6BxZbm', '6342044'), + (22688, 179, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mj6BxZbm', '6342298'), + (22689, 179, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mj6BxZbm', '6343294'), + (22690, 179, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mj6BxZbm', '6347034'), + (22691, 179, 2177, 'attending', '2023-08-12 18:39:22', '2025-12-17 19:46:55', 'mj6BxZbm', '6347053'), + (22692, 179, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mj6BxZbm', '6347056'), + (22693, 179, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mj6BxZbm', '6353830'), + (22694, 179, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mj6BxZbm', '6353831'), + (22695, 179, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mj6BxZbm', '6357867'), + (22696, 179, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mj6BxZbm', '6358652'), + (22697, 179, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mj6BxZbm', '6361709'), + (22698, 179, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mj6BxZbm', '6361710'), + (22699, 179, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mj6BxZbm', '6361711'), + (22700, 179, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mj6BxZbm', '6361712'), + (22701, 179, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mj6BxZbm', '6361713'), + (22702, 179, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mj6BxZbm', '6382573'), + (22703, 179, 2239, 'attending', '2023-09-02 14:30:23', '2025-12-17 19:46:56', 'mj6BxZbm', '6387592'), + (22704, 179, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mj6BxZbm', '6388604'), + (22705, 179, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mj6BxZbm', '6394629'), + (22706, 179, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mj6BxZbm', '6394631'), + (22707, 179, 2253, 'attending', '2023-09-30 21:31:45', '2025-12-17 19:46:45', 'mj6BxZbm', '6401811'), + (22708, 179, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mj6BxZbm', '6440863'), + (22709, 179, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mj6BxZbm', '6445440'), + (22710, 179, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mj6BxZbm', '6453951'), + (22711, 179, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mj6BxZbm', '6461696'), + (22712, 179, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mj6BxZbm', '6462129'), + (22713, 179, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mj6BxZbm', '6463218'), + (22714, 179, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mj6BxZbm', '6472181'), + (22715, 179, 2303, 'attending', '2023-10-28 19:04:35', '2025-12-17 19:46:47', 'mj6BxZbm', '6482691'), + (22716, 179, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mj6BxZbm', '6482693'), + (22717, 179, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mj6BxZbm', '6484200'), + (22718, 179, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mj6BxZbm', '6484680'), + (22719, 179, 2310, 'not_attending', '2023-11-10 21:07:26', '2025-12-17 19:46:47', 'mj6BxZbm', '6487709'), + (22720, 179, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mj6BxZbm', '6507741'), + (22721, 179, 2322, 'attending', '2023-11-18 19:54:19', '2025-12-17 19:46:48', 'mj6BxZbm', '6514659'), + (22722, 179, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mj6BxZbm', '6514660'), + (22723, 179, 2324, 'not_attending', '2023-12-09 23:41:06', '2025-12-17 19:46:49', 'mj6BxZbm', '6514662'), + (22724, 179, 2325, 'not_attending', '2023-12-16 21:13:01', '2025-12-17 19:46:36', 'mj6BxZbm', '6514663'), + (22725, 179, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mj6BxZbm', '6519103'), + (22726, 179, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mj6BxZbm', '6535681'), + (22727, 179, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mj6BxZbm', '6584747'), + (22728, 179, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mj6BxZbm', '6587097'), + (22729, 179, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mj6BxZbm', '6609022'), + (22730, 179, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mj6BxZbm', '6632757'), + (22731, 179, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mj6BxZbm', '6644187'), + (22732, 179, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mj6BxZbm', '6648951'), + (22733, 179, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mj6BxZbm', '6648952'), + (22734, 179, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mj6BxZbm', '6655401'), + (22735, 179, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mj6BxZbm', '6661585'), + (22736, 179, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mj6BxZbm', '6661588'), + (22737, 179, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mj6BxZbm', '6661589'), + (22738, 179, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mj6BxZbm', '6699906'), + (22739, 179, 2408, 'attending', '2024-01-27 18:21:41', '2025-12-17 19:46:40', 'mj6BxZbm', '6699907'), + (22740, 179, 2409, 'attending', '2024-02-03 20:32:59', '2025-12-17 19:46:41', 'mj6BxZbm', '6699909'), + (22741, 179, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'mj6BxZbm', '6699913'), + (22742, 179, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mj6BxZbm', '6701109'), + (22743, 179, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mj6BxZbm', '6705219'), + (22744, 179, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mj6BxZbm', '6710153'), + (22745, 179, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mj6BxZbm', '6711552'), + (22746, 179, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'mj6BxZbm', '6711553'), + (22747, 179, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mj6BxZbm', '6722688'), + (22748, 179, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mj6BxZbm', '6730620'), + (22749, 179, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mj6BxZbm', '6730642'), + (22750, 179, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mj6BxZbm', '6740364'), + (22751, 179, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mj6BxZbm', '6743829'), + (22752, 179, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mj6BxZbm', '7030380'), + (22753, 179, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mj6BxZbm', '7033677'), + (22754, 179, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mj6BxZbm', '7035415'), + (22755, 179, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mj6BxZbm', '7044715'), + (22756, 179, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mj6BxZbm', '7050318'), + (22757, 179, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mj6BxZbm', '7050319'), + (22758, 179, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mj6BxZbm', '7050322'), + (22759, 179, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mj6BxZbm', '7057804'), + (22760, 179, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'mj6BxZbm', '7059866'), + (22761, 179, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mj6BxZbm', '7072824'), + (22762, 179, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mj6BxZbm', '7074348'), + (22763, 179, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mj6BxZbm', '7074364'), + (22764, 179, 2539, 'not_attending', '2024-04-06 21:46:53', '2025-12-17 19:46:33', 'mj6BxZbm', '7085486'), + (22765, 179, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mj6BxZbm', '7089267'), + (22766, 179, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mj6BxZbm', '7098747'), + (22767, 179, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mj6BxZbm', '7113468'), + (22768, 179, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mj6BxZbm', '7114856'), + (22769, 179, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mj6BxZbm', '7114951'), + (22770, 179, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mj6BxZbm', '7114955'), + (22771, 179, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mj6BxZbm', '7114956'), + (22772, 179, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mj6BxZbm', '7114957'), + (22773, 179, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mj6BxZbm', '7153615'), + (22774, 179, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mj6BxZbm', '7159484'), + (22775, 179, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mj6BxZbm', '7178446'), + (22776, 179, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mj6BxZbm', '7220467'), + (22777, 179, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mj6BxZbm', '7240354'), + (22778, 179, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mj6BxZbm', '7251633'), + (22779, 179, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mj6BxZbm', '7263048'), + (22780, 179, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mj6BxZbm', '7302674'), + (22781, 179, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mj6BxZbm', '7324073'), + (22782, 179, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mj6BxZbm', '7324074'), + (22783, 179, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mj6BxZbm', '7324075'), + (22784, 179, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mj6BxZbm', '7324078'), + (22785, 179, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mj6BxZbm', '7324082'), + (22786, 179, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mj6BxZbm', '7331457'), + (22787, 179, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mj6BxZbm', '7356752'), + (22788, 179, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mj6BxZbm', '7363643'), + (22789, 179, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mj6BxZbm', '7368606'), + (22790, 179, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mj6BxZbm', '7397462'), + (22791, 179, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mj6BxZbm', '7424275'), + (22792, 179, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mj6BxZbm', '7424276'), + (22793, 179, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mj6BxZbm', '7432751'), + (22794, 179, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mj6BxZbm', '7432752'), + (22795, 179, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mj6BxZbm', '7432753'), + (22796, 179, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mj6BxZbm', '7432754'), + (22797, 179, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mj6BxZbm', '7432755'), + (22798, 179, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mj6BxZbm', '7432756'), + (22799, 179, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mj6BxZbm', '7432758'), + (22800, 179, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mj6BxZbm', '7432759'), + (22801, 179, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mj6BxZbm', '7433834'), + (22802, 179, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mj6BxZbm', '7470197'), + (22803, 179, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mj6BxZbm', '7685613'), + (22804, 179, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mj6BxZbm', '7688194'), + (22805, 179, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mj6BxZbm', '7688196'), + (22806, 179, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mj6BxZbm', '7688289'), + (22807, 180, 1714, 'attending', '2022-10-27 19:54:07', '2025-12-17 19:47:14', 'AYVQOGo4', '5622347'), + (22808, 180, 1722, 'not_attending', '2022-10-27 16:45:54', '2025-12-17 19:47:14', 'AYVQOGo4', '5630961'), + (22809, 180, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AYVQOGo4', '5630962'), + (22810, 180, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AYVQOGo4', '5630966'), + (22811, 180, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AYVQOGo4', '5630967'), + (22812, 180, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AYVQOGo4', '5630968'), + (22813, 180, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AYVQOGo4', '5642818'), + (22814, 180, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AYVQOGo4', '5698046'), + (22815, 180, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'AYVQOGo4', '5699760'), + (22816, 180, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AYVQOGo4', '5741601'), + (22817, 180, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AYVQOGo4', '5763458'), + (22818, 180, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AYVQOGo4', '5774172'), + (22819, 180, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYVQOGo4', '6045684'), + (22820, 181, 2517, 'maybe', '2024-06-27 20:14:16', '2025-12-17 19:46:29', 'mqnGJx1A', '7074357'), + (22821, 181, 2521, 'attending', '2024-06-20 20:58:36', '2025-12-17 19:46:29', 'mqnGJx1A', '7074361'), + (22822, 181, 2523, 'attending', '2024-06-03 20:00:08', '2025-12-17 19:46:36', 'mqnGJx1A', '7074363'), + (22823, 181, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mqnGJx1A', '7074364'), + (22824, 181, 2525, 'attending', '2024-06-10 11:31:35', '2025-12-17 19:46:28', 'mqnGJx1A', '7074365'), + (22825, 181, 2526, 'attending', '2024-08-01 21:03:58', '2025-12-17 19:46:31', 'mqnGJx1A', '7074366'), + (22826, 181, 2527, 'attending', '2024-06-27 20:14:34', '2025-12-17 19:46:29', 'mqnGJx1A', '7074367'), + (22827, 181, 2628, 'attending', '2024-06-01 21:39:54', '2025-12-17 19:46:36', 'mqnGJx1A', '7264725'), + (22828, 181, 2629, 'attending', '2024-06-03 20:00:16', '2025-12-17 19:46:28', 'mqnGJx1A', '7264726'), + (22829, 181, 2647, 'attending', '2024-06-05 11:50:11', '2025-12-17 19:46:28', 'mqnGJx1A', '7282057'), + (22830, 181, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'mqnGJx1A', '7291219'), + (22831, 181, 2660, 'attending', '2024-06-01 21:40:00', '2025-12-17 19:46:36', 'mqnGJx1A', '7301638'), + (22832, 181, 2661, 'maybe', '2024-06-07 20:45:57', '2025-12-17 19:46:28', 'mqnGJx1A', '7302674'), + (22833, 181, 2665, 'attending', '2024-06-04 14:53:00', '2025-12-17 19:46:36', 'mqnGJx1A', '7306370'), + (22834, 181, 2666, 'maybe', '2024-06-06 19:09:00', '2025-12-17 19:46:36', 'mqnGJx1A', '7307775'), + (22835, 181, 2678, 'attending', '2024-06-10 11:31:40', '2025-12-17 19:46:28', 'mqnGJx1A', '7319489'), + (22836, 181, 2679, 'attending', '2024-06-22 20:36:11', '2025-12-17 19:46:29', 'mqnGJx1A', '7319490'), + (22837, 181, 2683, 'attending', '2024-06-10 19:21:29', '2025-12-17 19:46:28', 'mqnGJx1A', '7321978'), + (22838, 181, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mqnGJx1A', '7324073'), + (22839, 181, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mqnGJx1A', '7324074'), + (22840, 181, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mqnGJx1A', '7324075'), + (22841, 181, 2691, 'attending', '2024-07-20 21:32:26', '2025-12-17 19:46:30', 'mqnGJx1A', '7324076'), + (22842, 181, 2692, 'attending', '2024-07-27 22:44:35', '2025-12-17 19:46:30', 'mqnGJx1A', '7324077'), + (22843, 181, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mqnGJx1A', '7324078'), + (22844, 181, 2694, 'not_attending', '2024-08-09 23:14:14', '2025-12-17 19:46:31', 'mqnGJx1A', '7324079'), + (22845, 181, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mqnGJx1A', '7324082'), + (22846, 181, 2700, 'maybe', '2024-06-13 10:58:12', '2025-12-17 19:46:28', 'mqnGJx1A', '7324388'), + (22847, 181, 2716, 'not_attending', '2024-06-22 20:36:14', '2025-12-17 19:46:29', 'mqnGJx1A', '7329096'), + (22848, 181, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mqnGJx1A', '7331457'), + (22849, 181, 2729, 'attending', '2024-06-21 21:32:28', '2025-12-17 19:46:29', 'mqnGJx1A', '7335092'), + (22850, 181, 2738, 'not_attending', '2024-06-30 23:55:17', '2025-12-17 19:46:29', 'mqnGJx1A', '7344085'), + (22851, 181, 2741, 'not_attending', '2024-06-30 23:33:56', '2025-12-17 19:46:30', 'mqnGJx1A', '7344592'), + (22852, 181, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mqnGJx1A', '7356752'), + (22853, 181, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mqnGJx1A', '7363643'), + (22854, 181, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mqnGJx1A', '7368606'), + (22855, 181, 2791, 'not_attending', '2024-08-09 23:14:22', '2025-12-17 19:46:31', 'mqnGJx1A', '7390760'), + (22856, 181, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mqnGJx1A', '7397462'), + (22857, 181, 2813, 'not_attending', '2024-09-06 16:46:16', '2025-12-17 19:46:24', 'mqnGJx1A', '7424105'), + (22858, 181, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mqnGJx1A', '7424275'), + (22859, 181, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mqnGJx1A', '7432751'), + (22860, 181, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mqnGJx1A', '7432752'), + (22861, 181, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mqnGJx1A', '7432753'), + (22862, 181, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mqnGJx1A', '7432754'), + (22863, 181, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mqnGJx1A', '7432755'), + (22864, 181, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mqnGJx1A', '7432756'), + (22865, 181, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mqnGJx1A', '7432758'), + (22866, 181, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mqnGJx1A', '7432759'), + (22867, 181, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mqnGJx1A', '7433834'), + (22868, 181, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mqnGJx1A', '7470197'), + (22869, 182, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybLjMgA', '7324075'), + (22870, 182, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybLjMgA', '7324078'), + (22871, 182, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mybLjMgA', '7331457'), + (22872, 182, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mybLjMgA', '7359624'), + (22873, 182, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mybLjMgA', '7363643'), + (22874, 182, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybLjMgA', '7368606'), + (22875, 183, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dzO1KBpm', '4694407'), + (22876, 183, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dzO1KBpm', '4736497'), + (22877, 183, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dzO1KBpm', '4736500'), + (22878, 183, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dzO1KBpm', '4746789'), + (22879, 183, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dzO1KBpm', '4753929'), + (22880, 183, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dzO1KBpm', '6045684'), + (22881, 184, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'VdxQr0Gm', '6045684'), + (22882, 185, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzOY0rRm', '6045684'), + (22883, 186, 767, 'not_attending', '2021-05-01 15:11:35', '2025-12-17 19:47:46', '2d2Ev3M4', '3722476'), + (22884, 186, 777, 'not_attending', '2021-05-01 15:10:40', '2025-12-17 19:47:46', '2d2Ev3M4', '3746248'), + (22885, 186, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2Ev3M4', '6045684'), + (22886, 187, 196, 'not_attending', '2020-08-15 19:53:37', '2025-12-17 19:47:56', 'ndaMxJad', '3087265'), + (22887, 187, 197, 'maybe', '2020-08-22 02:54:30', '2025-12-17 19:47:56', 'ndaMxJad', '3087266'), + (22888, 187, 198, 'not_attending', '2020-08-29 17:18:29', '2025-12-17 19:47:56', 'ndaMxJad', '3087267'), + (22889, 187, 199, 'not_attending', '2020-09-04 14:11:19', '2025-12-17 19:47:56', 'ndaMxJad', '3087268'), + (22890, 187, 219, 'attending', '2020-08-16 04:32:04', '2025-12-17 19:47:56', 'ndaMxJad', '3129263'), + (22891, 187, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'ndaMxJad', '3129980'), + (22892, 187, 239, 'maybe', '2020-08-25 02:25:53', '2025-12-17 19:47:56', 'ndaMxJad', '3149470'), + (22893, 187, 285, 'attending', '2020-08-25 00:07:44', '2025-12-17 19:47:56', 'ndaMxJad', '3170245'), + (22894, 187, 286, 'attending', '2020-08-25 02:26:06', '2025-12-17 19:47:56', 'ndaMxJad', '3170246'), + (22895, 187, 287, 'attending', '2020-08-28 23:21:08', '2025-12-17 19:47:56', 'ndaMxJad', '3170247'), + (22896, 187, 288, 'attending', '2020-09-02 23:57:18', '2025-12-17 19:47:56', 'ndaMxJad', '3170249'), + (22897, 187, 289, 'attending', '2020-09-04 23:33:08', '2025-12-17 19:47:56', 'ndaMxJad', '3170250'), + (22898, 187, 291, 'attending', '2020-09-11 01:22:28', '2025-12-17 19:47:56', 'ndaMxJad', '3170252'), + (22899, 187, 293, 'not_attending', '2020-08-14 20:29:51', '2025-12-17 19:47:56', 'ndaMxJad', '3172832'), + (22900, 187, 294, 'not_attending', '2020-08-14 20:29:58', '2025-12-17 19:47:56', 'ndaMxJad', '3172833'), + (22901, 187, 295, 'not_attending', '2020-08-14 20:30:10', '2025-12-17 19:47:56', 'ndaMxJad', '3172834'), + (22902, 187, 309, 'attending', '2020-08-21 01:58:37', '2025-12-17 19:47:56', 'ndaMxJad', '3185332'), + (22903, 187, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'ndaMxJad', '3186057'), + (22904, 187, 313, 'attending', '2020-08-23 02:51:04', '2025-12-17 19:47:56', 'ndaMxJad', '3188127'), + (22905, 187, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'ndaMxJad', '3191735'), + (22906, 187, 318, 'maybe', '2020-08-31 16:56:55', '2025-12-17 19:47:56', 'ndaMxJad', '3193885'), + (22907, 187, 321, 'not_attending', '2020-09-06 21:57:19', '2025-12-17 19:47:56', 'ndaMxJad', '3197077'), + (22908, 187, 324, 'maybe', '2020-09-18 13:56:29', '2025-12-17 19:47:56', 'ndaMxJad', '3197082'), + (22909, 187, 325, 'maybe', '2020-09-18 13:56:38', '2025-12-17 19:47:51', 'ndaMxJad', '3197083'), + (22910, 187, 331, 'maybe', '2020-09-01 14:59:52', '2025-12-17 19:47:56', 'ndaMxJad', '3198871'), + (22911, 187, 332, 'attending', '2020-09-10 00:20:18', '2025-12-17 19:47:56', 'ndaMxJad', '3198873'), + (22912, 187, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'ndaMxJad', '3200209'), + (22913, 187, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', 'ndaMxJad', '3200495'), + (22914, 187, 343, 'not_attending', '2020-09-21 22:56:44', '2025-12-17 19:47:56', 'ndaMxJad', '3206759'), + (22915, 187, 344, 'maybe', '2020-09-12 04:37:15', '2025-12-17 19:47:53', 'ndaMxJad', '3206906'), + (22916, 187, 362, 'not_attending', '2020-09-25 19:23:20', '2025-12-17 19:47:52', 'ndaMxJad', '3214207'), + (22917, 187, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'ndaMxJad', '3217037'), + (22918, 187, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'ndaMxJad', '3218510'), + (22919, 187, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', 'ndaMxJad', '3221403'), + (22920, 187, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'ndaMxJad', '3228698'), + (22921, 187, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'ndaMxJad', '3228699'), + (22922, 187, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'ndaMxJad', '3228700'), + (22923, 187, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'ndaMxJad', '3228701'), + (22924, 187, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'ndaMxJad', '3245751'), + (22925, 187, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'ndaMxJad', '3250232'), + (22926, 187, 432, 'maybe', '2020-10-27 22:24:41', '2025-12-17 19:47:53', 'ndaMxJad', '3254416'), + (22927, 187, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'ndaMxJad', '3256168'), + (22928, 187, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'ndaMxJad', '3263578'), + (22929, 187, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'ndaMxJad', '3276428'), + (22930, 187, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ndaMxJad', '3281467'), + (22931, 187, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'ndaMxJad', '3281470'), + (22932, 187, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'ndaMxJad', '3281829'), + (22933, 187, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'ndaMxJad', '3285413'), + (22934, 187, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'ndaMxJad', '3285414'), + (22935, 187, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ndaMxJad', '3297764'), + (22936, 187, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'ndaMxJad', '3313856'), + (22937, 187, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ndaMxJad', '3314909'), + (22938, 187, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaMxJad', '3314964'), + (22939, 187, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ndaMxJad', '3323365'), + (22940, 187, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'ndaMxJad', '3329383'), + (22941, 187, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndaMxJad', '3351539'), + (22942, 187, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndaMxJad', '3386848'), + (22943, 187, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndaMxJad', '3389527'), + (22944, 187, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndaMxJad', '3396499'), + (22945, 187, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndaMxJad', '3403650'), + (22946, 187, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaMxJad', '3406988'), + (22947, 187, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'ndaMxJad', '3408338'), + (22948, 187, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndaMxJad', '3416576'), + (22949, 187, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaMxJad', '6045684'), + (22950, 188, 2122, 'attending', '2023-07-05 22:09:03', '2025-12-17 19:46:51', 'xd96qyZm', '6176476'), + (22951, 188, 2125, 'not_attending', '2023-07-02 02:53:23', '2025-12-17 19:46:51', 'xd96qyZm', '6177485'), + (22952, 188, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xd96qyZm', '6182410'), + (22953, 188, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xd96qyZm', '6185812'), + (22954, 188, 2132, 'maybe', '2023-07-08 15:23:58', '2025-12-17 19:46:52', 'xd96qyZm', '6187015'), + (22955, 188, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xd96qyZm', '6187651'), + (22956, 188, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xd96qyZm', '6187963'), + (22957, 188, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xd96qyZm', '6187964'), + (22958, 188, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xd96qyZm', '6187966'), + (22959, 188, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xd96qyZm', '6187967'), + (22960, 188, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xd96qyZm', '6187969'), + (22961, 188, 2141, 'attending', '2023-07-08 15:23:01', '2025-12-17 19:46:52', 'xd96qyZm', '6188819'), + (22962, 188, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xd96qyZm', '6334878'), + (22963, 188, 2146, 'attending', '2023-07-20 23:05:32', '2025-12-17 19:46:53', 'xd96qyZm', '6335638'), + (22964, 188, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xd96qyZm', '6337236'), + (22965, 188, 2154, 'maybe', '2023-07-12 22:03:58', '2025-12-17 19:46:52', 'xd96qyZm', '6337689'), + (22966, 188, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xd96qyZm', '6337970'), + (22967, 188, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xd96qyZm', '6338308'), + (22968, 188, 2157, 'not_attending', '2023-07-12 21:54:30', '2025-12-17 19:46:52', 'xd96qyZm', '6338342'), + (22969, 188, 2159, 'maybe', '2023-07-18 20:59:57', '2025-12-17 19:46:53', 'xd96qyZm', '6338355'), + (22970, 188, 2160, 'attending', '2023-07-29 18:10:32', '2025-12-17 19:46:54', 'xd96qyZm', '6338358'), + (22971, 188, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xd96qyZm', '6341710'), + (22972, 188, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xd96qyZm', '6342044'), + (22973, 188, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xd96qyZm', '6342298'), + (22974, 188, 2171, 'attending', '2023-07-28 18:52:30', '2025-12-17 19:46:54', 'xd96qyZm', '6342328'), + (22975, 188, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xd96qyZm', '6343294'), + (22976, 188, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xd96qyZm', '6347034'), + (22977, 188, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xd96qyZm', '6347056'), + (22978, 188, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xd96qyZm', '6353830'), + (22979, 188, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xd96qyZm', '6353831'), + (22980, 188, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xd96qyZm', '6357867'), + (22981, 188, 2190, 'attending', '2023-08-07 22:39:49', '2025-12-17 19:46:55', 'xd96qyZm', '6357892'), + (22982, 188, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xd96qyZm', '6358652'), + (22983, 188, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'xd96qyZm', '6358668'), + (22984, 188, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'xd96qyZm', '6358669'), + (22985, 188, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xd96qyZm', '6361709'), + (22986, 188, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xd96qyZm', '6361710'), + (22987, 188, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xd96qyZm', '6361711'), + (22988, 188, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xd96qyZm', '6361712'), + (22989, 188, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xd96qyZm', '6361713'), + (22990, 188, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'xd96qyZm', '6382573'), + (22991, 188, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'xd96qyZm', '6388604'), + (22992, 188, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xd96qyZm', '6394629'), + (22993, 188, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xd96qyZm', '6394631'), + (22994, 188, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xd96qyZm', '6440863'), + (22995, 188, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xd96qyZm', '6445440'), + (22996, 188, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xd96qyZm', '6453951'), + (22997, 188, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xd96qyZm', '6461696'), + (22998, 188, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xd96qyZm', '6462129'), + (22999, 188, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xd96qyZm', '6463218'), + (23000, 188, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'xd96qyZm', '6472181'), + (23001, 188, 2304, 'maybe', '2023-10-28 02:20:59', '2025-12-17 19:46:47', 'xd96qyZm', '6482693'), + (23002, 188, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'xd96qyZm', '6484200'), + (23003, 188, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xd96qyZm', '6484680'), + (23004, 188, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xd96qyZm', '6507741'), + (23005, 188, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'xd96qyZm', '6514659'), + (23006, 188, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xd96qyZm', '6514660'), + (23007, 188, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xd96qyZm', '6519103'), + (23008, 188, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xd96qyZm', '6535681'), + (23009, 188, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xd96qyZm', '6584747'), + (23010, 188, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xd96qyZm', '6587097'), + (23011, 188, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xd96qyZm', '6609022'), + (23012, 188, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xd96qyZm', '6632757'), + (23013, 188, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xd96qyZm', '6644187'), + (23014, 188, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xd96qyZm', '6648951'), + (23015, 188, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xd96qyZm', '6648952'), + (23016, 188, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xd96qyZm', '6655401'), + (23017, 188, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xd96qyZm', '6661585'), + (23018, 188, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xd96qyZm', '6661588'), + (23019, 188, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xd96qyZm', '6661589'), + (23020, 188, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xd96qyZm', '6699906'), + (23021, 188, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'xd96qyZm', '6699913'), + (23022, 188, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xd96qyZm', '6701109'), + (23023, 188, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'xd96qyZm', '6704561'), + (23024, 188, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xd96qyZm', '6705219'), + (23025, 188, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'xd96qyZm', '6708410'), + (23026, 188, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xd96qyZm', '6710153'), + (23027, 188, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xd96qyZm', '6711552'), + (23028, 188, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xd96qyZm', '6711553'), + (23029, 188, 2435, 'not_attending', '2024-01-27 02:47:43', '2025-12-17 19:46:41', 'xd96qyZm', '6721547'), + (23030, 188, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xd96qyZm', '6722688'), + (23031, 188, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xd96qyZm', '6730620'), + (23032, 188, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xd96qyZm', '6730642'), + (23033, 188, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xd96qyZm', '6740364'), + (23034, 188, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xd96qyZm', '6743829'), + (23035, 188, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xd96qyZm', '7030380'), + (23036, 188, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xd96qyZm', '7033677'), + (23037, 188, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xd96qyZm', '7035415'), + (23038, 188, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xd96qyZm', '7044715'), + (23039, 188, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xd96qyZm', '7050318'), + (23040, 188, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xd96qyZm', '7050319'), + (23041, 188, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xd96qyZm', '7050322'), + (23042, 188, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xd96qyZm', '7057804'), + (23043, 188, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xd96qyZm', '7072824'), + (23044, 188, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xd96qyZm', '7074348'), + (23045, 188, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'xd96qyZm', '7089267'), + (23046, 188, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xd96qyZm', '7098747'), + (23047, 188, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xd96qyZm', '7113468'), + (23048, 188, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xd96qyZm', '7114856'), + (23049, 188, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xd96qyZm', '7114951'), + (23050, 188, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xd96qyZm', '7114955'), + (23051, 188, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xd96qyZm', '7114956'), + (23052, 188, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xd96qyZm', '7153615'), + (23053, 188, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xd96qyZm', '7159484'), + (23054, 189, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E5a3p04', '6045684'), + (23055, 190, 1865, 'attending', '2023-01-28 15:03:23', '2025-12-17 19:47:06', 'dKb1r7Y4', '5879676'), + (23056, 190, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dKb1r7Y4', '5880939'), + (23057, 190, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dKb1r7Y4', '5880940'), + (23058, 190, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dKb1r7Y4', '5880942'), + (23059, 190, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dKb1r7Y4', '5887890'), + (23060, 190, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dKb1r7Y4', '5888598'), + (23061, 190, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dKb1r7Y4', '5893260'), + (23062, 190, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dKb1r7Y4', '5899826'), + (23063, 190, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dKb1r7Y4', '5900199'), + (23064, 190, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dKb1r7Y4', '5900200'), + (23065, 190, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901055'), + (23066, 190, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901108'), + (23067, 190, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901126'), + (23068, 190, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'dKb1r7Y4', '5901606'), + (23069, 190, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dKb1r7Y4', '5909655'), + (23070, 190, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dKb1r7Y4', '5910522'), + (23071, 190, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dKb1r7Y4', '5910526'), + (23072, 190, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dKb1r7Y4', '5910528'), + (23073, 190, 1920, 'not_attending', '2023-02-13 14:43:47', '2025-12-17 19:47:07', 'dKb1r7Y4', '5914091'), + (23074, 190, 1921, 'maybe', '2023-02-27 15:45:00', '2025-12-17 19:47:08', 'dKb1r7Y4', '5914092'), + (23075, 190, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dKb1r7Y4', '5916219'), + (23076, 190, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dKb1r7Y4', '5936234'), + (23077, 190, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'dKb1r7Y4', '5936691'), + (23078, 190, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dKb1r7Y4', '5958351'), + (23079, 190, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dKb1r7Y4', '5959751'), + (23080, 190, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dKb1r7Y4', '5959755'), + (23081, 190, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dKb1r7Y4', '5960055'), + (23082, 190, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dKb1r7Y4', '5961684'), + (23083, 190, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dKb1r7Y4', '5962132'), + (23084, 190, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dKb1r7Y4', '5962133'), + (23085, 190, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dKb1r7Y4', '5962134'), + (23086, 190, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dKb1r7Y4', '5962317'), + (23087, 190, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dKb1r7Y4', '5962318'), + (23088, 190, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKb1r7Y4', '6045684'), + (23089, 191, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Agkj0pjA', '4736497'), + (23090, 191, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Agkj0pjA', '4736499'), + (23091, 191, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Agkj0pjA', '4736500'), + (23092, 191, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Agkj0pjA', '4736503'), + (23093, 191, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Agkj0pjA', '4736504'), + (23094, 191, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Agkj0pjA', '5038850'), + (23095, 191, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Agkj0pjA', '5045826'), + (23096, 191, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Agkj0pjA', '5132533'), + (23097, 191, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Agkj0pjA', '6045684'), + (23098, 192, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybg8agA', '7074364'), + (23099, 192, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'mybg8agA', '7301638'), + (23100, 192, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybg8agA', '7324073'), + (23101, 192, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybg8agA', '7324074'), + (23102, 192, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybg8agA', '7324075'), + (23103, 192, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybg8agA', '7324078'), + (23104, 192, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybg8agA', '7324082'), + (23105, 192, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mybg8agA', '7324867'), + (23106, 192, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mybg8agA', '7331457'), + (23107, 192, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'mybg8agA', '7332564'), + (23108, 192, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'mybg8agA', '7335193'), + (23109, 192, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mybg8agA', '7359624'), + (23110, 192, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mybg8agA', '7363643'), + (23111, 192, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybg8agA', '7368606'), + (23112, 192, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybg8agA', '7397462'), + (23113, 192, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybg8agA', '7424275'), + (23114, 192, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybg8agA', '7432751'), + (23115, 192, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybg8agA', '7432752'), + (23116, 192, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybg8agA', '7432753'), + (23117, 192, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybg8agA', '7432754'), + (23118, 192, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybg8agA', '7432755'), + (23119, 192, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybg8agA', '7432756'), + (23120, 192, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybg8agA', '7432758'), + (23121, 192, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybg8agA', '7432759'), + (23122, 192, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mybg8agA', '7433834'), + (23123, 192, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybg8agA', '7470197'), + (23124, 192, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybg8agA', '7685613'), + (23125, 192, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybg8agA', '7688194'), + (23126, 192, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybg8agA', '7688196'), + (23127, 192, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybg8agA', '7688289'), + (23128, 193, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dzO9pjam', '4420744'), + (23129, 193, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dzO9pjam', '4420747'), + (23130, 193, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dzO9pjam', '4568602'), + (23131, 193, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dzO9pjam', '4572153'), + (23132, 193, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dzO9pjam', '4585962'), + (23133, 193, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dzO9pjam', '4596356'), + (23134, 193, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dzO9pjam', '4598860'), + (23135, 193, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dzO9pjam', '4598861'), + (23136, 193, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dzO9pjam', '4602797'), + (23137, 193, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dzO9pjam', '4637896'), + (23138, 193, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dzO9pjam', '4642994'), + (23139, 193, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dzO9pjam', '4642995'), + (23140, 193, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dzO9pjam', '4642996'), + (23141, 193, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dzO9pjam', '4642997'), + (23142, 193, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dzO9pjam', '4645687'), + (23143, 193, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dzO9pjam', '4645698'), + (23144, 193, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dzO9pjam', '4645704'), + (23145, 193, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dzO9pjam', '4645705'), + (23146, 193, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dzO9pjam', '4668385'), + (23147, 193, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzO9pjam', '6045684'), + (23148, 194, 262, 'attending', '2021-06-26 19:33:20', '2025-12-17 19:47:38', 'amGy6jL4', '3149493'), + (23149, 194, 727, 'maybe', '2021-06-27 03:17:19', '2025-12-17 19:47:38', 'amGy6jL4', '3661377'), + (23150, 194, 845, 'maybe', '2021-06-27 23:27:49', '2025-12-17 19:47:38', 'amGy6jL4', '4015717'), + (23151, 194, 867, 'maybe', '2021-06-26 20:08:12', '2025-12-17 19:47:38', 'amGy6jL4', '4021848'), + (23152, 194, 869, 'attending', '2021-06-30 04:50:27', '2025-12-17 19:47:38', 'amGy6jL4', '4136744'), + (23153, 194, 870, 'maybe', '2021-06-27 23:28:03', '2025-12-17 19:47:39', 'amGy6jL4', '4136937'), + (23154, 194, 871, 'attending', '2021-07-05 15:58:45', '2025-12-17 19:47:39', 'amGy6jL4', '4136938'), + (23155, 194, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'amGy6jL4', '4136947'), + (23156, 194, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGy6jL4', '4210314'), + (23157, 194, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGy6jL4', '4225444'), + (23158, 194, 899, 'maybe', '2021-07-02 18:14:14', '2025-12-17 19:47:39', 'amGy6jL4', '4239259'), + (23159, 194, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGy6jL4', '4240316'), + (23160, 194, 905, 'attending', '2021-07-05 15:58:09', '2025-12-17 19:47:39', 'amGy6jL4', '4250163'), + (23161, 194, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGy6jL4', '4275957'), + (23162, 194, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGy6jL4', '6045684'), + (23163, 195, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40kgWbKA', '6045684'), + (23164, 196, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'AQ9PRZgA', '4420744'), + (23165, 196, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'AQ9PRZgA', '4420747'), + (23166, 196, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AQ9PRZgA', '4568602'), + (23167, 196, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'AQ9PRZgA', '4572153'), + (23168, 196, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'AQ9PRZgA', '4585962'), + (23169, 196, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'AQ9PRZgA', '4596356'), + (23170, 196, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AQ9PRZgA', '4598860'), + (23171, 196, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AQ9PRZgA', '4598861'), + (23172, 196, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'AQ9PRZgA', '4602797'), + (23173, 196, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AQ9PRZgA', '4637896'), + (23174, 196, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AQ9PRZgA', '4642994'), + (23175, 196, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AQ9PRZgA', '4642995'), + (23176, 196, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AQ9PRZgA', '4642996'), + (23177, 196, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AQ9PRZgA', '4642997'), + (23178, 196, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AQ9PRZgA', '4645687'), + (23179, 196, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AQ9PRZgA', '4645698'), + (23180, 196, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AQ9PRZgA', '4645704'), + (23181, 196, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AQ9PRZgA', '4645705'), + (23182, 196, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AQ9PRZgA', '4668385'), + (23183, 196, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ9PRZgA', '6045684'), + (23184, 197, 2514, 'attending', '2024-04-20 04:09:44', '2025-12-17 19:46:34', 'Agvo9ggm', '7074354'), + (23185, 197, 2515, 'not_attending', '2024-04-30 01:43:32', '2025-12-17 19:46:35', 'Agvo9ggm', '7074355'), + (23186, 197, 2516, 'attending', '2024-04-24 04:37:47', '2025-12-17 19:46:35', 'Agvo9ggm', '7074356'), + (23187, 197, 2519, 'attending', '2024-04-30 01:43:20', '2025-12-17 19:46:36', 'Agvo9ggm', '7074359'), + (23188, 197, 2520, 'maybe', '2024-04-30 01:43:17', '2025-12-17 19:46:35', 'Agvo9ggm', '7074360'), + (23189, 197, 2521, 'attending', '2024-04-30 01:43:23', '2025-12-17 19:46:29', 'Agvo9ggm', '7074361'), + (23190, 197, 2523, 'attending', '2024-04-30 01:43:22', '2025-12-17 19:46:36', 'Agvo9ggm', '7074363'), + (23191, 197, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Agvo9ggm', '7074364'), + (23192, 197, 2525, 'attending', '2024-04-30 01:43:22', '2025-12-17 19:46:28', 'Agvo9ggm', '7074365'), + (23193, 197, 2529, 'attending', '2024-04-30 01:43:18', '2025-12-17 19:46:35', 'Agvo9ggm', '7074369'), + (23194, 197, 2556, 'not_attending', '2024-04-20 04:06:11', '2025-12-17 19:46:34', 'Agvo9ggm', '7114955'), + (23195, 197, 2557, 'attending', '2024-04-20 04:07:08', '2025-12-17 19:46:34', 'Agvo9ggm', '7114956'), + (23196, 197, 2558, 'attending', '2024-04-20 04:10:45', '2025-12-17 19:46:35', 'Agvo9ggm', '7114957'), + (23197, 197, 2576, 'maybe', '2024-04-24 04:37:28', '2025-12-17 19:46:34', 'Agvo9ggm', '7164538'), + (23198, 197, 2581, 'attending', '2024-04-20 04:09:21', '2025-12-17 19:46:34', 'Agvo9ggm', '7169048'), + (23199, 197, 2584, 'not_attending', '2024-04-20 04:06:24', '2025-12-17 19:46:34', 'Agvo9ggm', '7175057'), + (23200, 197, 2585, 'maybe', '2024-04-20 04:06:39', '2025-12-17 19:46:34', 'Agvo9ggm', '7175828'), + (23201, 197, 2595, 'attending', '2024-04-20 04:09:43', '2025-12-17 19:46:34', 'Agvo9ggm', '7182252'), + (23202, 197, 2597, 'attending', '2024-04-22 14:13:58', '2025-12-17 19:46:34', 'Agvo9ggm', '7186726'), + (23203, 197, 2599, 'attending', '2024-04-22 13:04:25', '2025-12-17 19:46:34', 'Agvo9ggm', '7189372'), + (23204, 197, 2600, 'maybe', '2024-04-24 02:21:36', '2025-12-17 19:46:35', 'Agvo9ggm', '7196794'), + (23205, 197, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Agvo9ggm', '7220467'), + (23206, 197, 2603, 'maybe', '2024-04-30 01:43:14', '2025-12-17 19:46:35', 'Agvo9ggm', '7225669'), + (23207, 197, 2604, 'attending', '2024-04-30 01:43:20', '2025-12-17 19:46:36', 'Agvo9ggm', '7225670'), + (23208, 197, 2605, 'not_attending', '2024-04-28 03:44:39', '2025-12-17 19:46:35', 'Agvo9ggm', '7229243'), + (23209, 197, 2607, 'not_attending', '2024-04-29 20:42:42', '2025-12-17 19:46:35', 'Agvo9ggm', '7240136'), + (23210, 197, 2608, 'not_attending', '2024-04-30 01:25:58', '2025-12-17 19:46:35', 'Agvo9ggm', '7240272'), + (23211, 197, 2609, 'not_attending', '2024-04-30 01:43:04', '2025-12-17 19:46:35', 'Agvo9ggm', '7240354'), + (23212, 197, 2611, 'not_attending', '2024-05-02 23:08:30', '2025-12-17 19:46:35', 'Agvo9ggm', '7247642'), + (23213, 197, 2612, 'not_attending', '2024-05-02 23:08:31', '2025-12-17 19:46:35', 'Agvo9ggm', '7247643'), + (23214, 197, 2613, 'not_attending', '2024-05-02 23:08:32', '2025-12-17 19:46:35', 'Agvo9ggm', '7247644'), + (23215, 197, 2614, 'not_attending', '2024-05-02 23:08:34', '2025-12-17 19:46:35', 'Agvo9ggm', '7247645'), + (23216, 197, 2617, 'attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Agvo9ggm', '7251633'), + (23217, 197, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'Agvo9ggm', '7263048'), + (23218, 197, 2624, 'attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', 'Agvo9ggm', '7263301'), + (23219, 197, 2625, 'not_attending', '2024-05-10 22:39:46', '2025-12-17 19:46:35', 'Agvo9ggm', '7263302'), + (23220, 197, 2626, 'not_attending', '2024-05-12 19:50:07', '2025-12-17 19:46:35', 'Agvo9ggm', '7264723'), + (23221, 197, 2627, 'attending', '2024-05-12 19:50:09', '2025-12-17 19:46:35', 'Agvo9ggm', '7264724'), + (23222, 197, 2628, 'attending', '2024-05-12 19:50:10', '2025-12-17 19:46:36', 'Agvo9ggm', '7264725'), + (23223, 197, 2629, 'attending', '2024-05-12 19:50:11', '2025-12-17 19:46:28', 'Agvo9ggm', '7264726'), + (23224, 197, 2634, 'not_attending', '2024-05-14 23:15:15', '2025-12-17 19:46:35', 'Agvo9ggm', '7270321'), + (23225, 197, 2635, 'not_attending', '2024-05-14 23:15:16', '2025-12-17 19:46:35', 'Agvo9ggm', '7270322'), + (23226, 197, 2636, 'not_attending', '2024-05-14 23:15:23', '2025-12-17 19:46:35', 'Agvo9ggm', '7270323'), + (23227, 197, 2637, 'not_attending', '2024-05-14 23:15:23', '2025-12-17 19:46:35', 'Agvo9ggm', '7270324'), + (23228, 197, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'Agvo9ggm', '7302674'), + (23229, 197, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Agvo9ggm', '7324073'), + (23230, 197, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Agvo9ggm', '7324074'), + (23231, 197, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Agvo9ggm', '7324075'), + (23232, 197, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Agvo9ggm', '7324078'), + (23233, 197, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Agvo9ggm', '7324082'), + (23234, 197, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'Agvo9ggm', '7331457'), + (23235, 197, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'Agvo9ggm', '7356752'), + (23236, 197, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'Agvo9ggm', '7363643'), + (23237, 197, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Agvo9ggm', '7368606'), + (23238, 197, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Agvo9ggm', '7397462'), + (23239, 197, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Agvo9ggm', '7424275'), + (23240, 197, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Agvo9ggm', '7424276'), + (23241, 197, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Agvo9ggm', '7432751'), + (23242, 197, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Agvo9ggm', '7432752'), + (23243, 197, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Agvo9ggm', '7432753'), + (23244, 197, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Agvo9ggm', '7432754'), + (23245, 197, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Agvo9ggm', '7432755'), + (23246, 197, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Agvo9ggm', '7432756'), + (23247, 197, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Agvo9ggm', '7432758'), + (23248, 197, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Agvo9ggm', '7432759'), + (23249, 197, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Agvo9ggm', '7433834'), + (23250, 197, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Agvo9ggm', '7470197'), + (23251, 197, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Agvo9ggm', '7685613'), + (23252, 197, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Agvo9ggm', '7688194'), + (23253, 197, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Agvo9ggm', '7688196'), + (23254, 197, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Agvo9ggm', '7688289'), + (23255, 198, 258, 'attending', '2021-06-01 22:40:16', '2025-12-17 19:47:47', 'GmjorN3A', '3149489'), + (23256, 198, 745, 'not_attending', '2021-07-02 23:36:47', '2025-12-17 19:47:38', 'GmjorN3A', '3680625'), + (23257, 198, 823, 'attending', '2021-06-15 20:34:49', '2025-12-17 19:47:48', 'GmjorN3A', '3974109'), + (23258, 198, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjorN3A', '3975311'), + (23259, 198, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjorN3A', '3975312'), + (23260, 198, 838, 'attending', '2021-06-06 20:00:05', '2025-12-17 19:47:47', 'GmjorN3A', '3994992'), + (23261, 198, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjorN3A', '4014338'), + (23262, 198, 857, 'not_attending', '2021-11-24 20:17:47', '2025-12-17 19:47:37', 'GmjorN3A', '4015731'), + (23263, 198, 867, 'attending', '2021-06-26 17:40:06', '2025-12-17 19:47:38', 'GmjorN3A', '4021848'), + (23264, 198, 869, 'attending', '2021-06-30 18:12:01', '2025-12-17 19:47:38', 'GmjorN3A', '4136744'), + (23265, 198, 870, 'attending', '2021-06-29 20:57:40', '2025-12-17 19:47:38', 'GmjorN3A', '4136937'), + (23266, 198, 871, 'attending', '2021-07-05 18:38:09', '2025-12-17 19:47:39', 'GmjorN3A', '4136938'), + (23267, 198, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjorN3A', '4136947'), + (23268, 198, 875, 'not_attending', '2021-07-01 02:11:16', '2025-12-17 19:47:38', 'GmjorN3A', '4139816'), + (23269, 198, 879, 'maybe', '2021-06-28 20:40:47', '2025-12-17 19:47:38', 'GmjorN3A', '4147806'), + (23270, 198, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjorN3A', '4210314'), + (23271, 198, 885, 'attending', '2021-06-26 20:59:02', '2025-12-17 19:47:38', 'GmjorN3A', '4222370'), + (23272, 198, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjorN3A', '4225444'), + (23273, 198, 896, 'attending', '2021-06-29 22:30:57', '2025-12-17 19:47:38', 'GmjorN3A', '4231145'), + (23274, 198, 898, 'not_attending', '2021-06-30 03:41:43', '2025-12-17 19:47:38', 'GmjorN3A', '4236746'), + (23275, 198, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjorN3A', '4239259'), + (23276, 198, 900, 'attending', '2021-07-24 17:33:53', '2025-12-17 19:47:40', 'GmjorN3A', '4240316'), + (23277, 198, 901, 'attending', '2021-07-31 21:05:34', '2025-12-17 19:47:40', 'GmjorN3A', '4240317'), + (23278, 198, 902, 'attending', '2021-08-07 15:25:26', '2025-12-17 19:47:41', 'GmjorN3A', '4240318'), + (23279, 198, 903, 'attending', '2021-08-13 20:22:38', '2025-12-17 19:47:42', 'GmjorN3A', '4240320'), + (23280, 198, 905, 'attending', '2021-07-07 20:49:29', '2025-12-17 19:47:39', 'GmjorN3A', '4250163'), + (23281, 198, 909, 'attending', '2021-07-10 19:56:00', '2025-12-17 19:47:39', 'GmjorN3A', '4258187'), + (23282, 198, 911, 'not_attending', '2021-07-13 21:21:34', '2025-12-17 19:47:39', 'GmjorN3A', '4264465'), + (23283, 198, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjorN3A', '4275957'), + (23284, 198, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjorN3A', '4277819'), + (23285, 198, 926, 'attending', '2021-08-17 20:02:15', '2025-12-17 19:47:42', 'GmjorN3A', '4297211'), + (23286, 198, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjorN3A', '4301723'), + (23287, 198, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GmjorN3A', '4302093'), + (23288, 198, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjorN3A', '4304151'), + (23289, 198, 961, 'not_attending', '2021-08-13 20:46:22', '2025-12-17 19:47:42', 'GmjorN3A', '4345519'), + (23290, 198, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjorN3A', '4356801'), + (23291, 198, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'GmjorN3A', '4358025'), + (23292, 198, 973, 'attending', '2021-08-21 20:44:56', '2025-12-17 19:47:42', 'GmjorN3A', '4366186'), + (23293, 198, 974, 'attending', '2021-08-28 21:19:53', '2025-12-17 19:47:42', 'GmjorN3A', '4366187'), + (23294, 198, 985, 'attending', '2021-08-21 02:37:59', '2025-12-17 19:47:42', 'GmjorN3A', '4391748'), + (23295, 198, 988, 'attending', '2021-08-27 22:23:47', '2025-12-17 19:47:42', 'GmjorN3A', '4402823'), + (23296, 198, 989, 'attending', '2021-09-09 02:07:58', '2025-12-17 19:47:43', 'GmjorN3A', '4414282'), + (23297, 198, 990, 'attending', '2021-09-04 03:00:08', '2025-12-17 19:47:43', 'GmjorN3A', '4420735'), + (23298, 198, 991, 'attending', '2021-09-09 02:08:23', '2025-12-17 19:47:43', 'GmjorN3A', '4420738'), + (23299, 198, 992, 'attending', '2021-09-18 18:15:24', '2025-12-17 19:47:33', 'GmjorN3A', '4420739'), + (23300, 198, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjorN3A', '4420741'), + (23301, 198, 994, 'attending', '2021-10-02 18:55:41', '2025-12-17 19:47:34', 'GmjorN3A', '4420742'), + (23302, 198, 995, 'attending', '2021-10-09 16:06:06', '2025-12-17 19:47:34', 'GmjorN3A', '4420744'), + (23303, 198, 996, 'attending', '2021-10-16 20:31:35', '2025-12-17 19:47:35', 'GmjorN3A', '4420747'), + (23304, 198, 997, 'attending', '2021-10-23 19:45:37', '2025-12-17 19:47:35', 'GmjorN3A', '4420748'), + (23305, 198, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjorN3A', '4420749'), + (23306, 198, 1019, 'maybe', '2021-09-16 22:27:54', '2025-12-17 19:47:43', 'GmjorN3A', '4450515'), + (23307, 198, 1020, 'attending', '2021-09-13 22:57:57', '2025-12-17 19:47:43', 'GmjorN3A', '4451787'), + (23308, 198, 1022, 'attending', '2021-09-15 21:33:51', '2025-12-17 19:47:43', 'GmjorN3A', '4458628'), + (23309, 198, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GmjorN3A', '4461883'), + (23310, 198, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GmjorN3A', '4508342'), + (23311, 198, 1074, 'attending', '2021-09-29 21:08:57', '2025-12-17 19:47:34', 'GmjorN3A', '4528953'), + (23312, 198, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GmjorN3A', '4568602'), + (23313, 198, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GmjorN3A', '4572153'), + (23314, 198, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GmjorN3A', '4585962'), + (23315, 198, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'GmjorN3A', '4596356'), + (23316, 198, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GmjorN3A', '4598860'), + (23317, 198, 1098, 'attending', '2021-11-08 03:18:23', '2025-12-17 19:47:36', 'GmjorN3A', '4598861'), + (23318, 198, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GmjorN3A', '4602797'), + (23319, 198, 1106, 'attending', '2021-11-10 03:29:52', '2025-12-17 19:47:36', 'GmjorN3A', '4620452'), + (23320, 198, 1107, 'not_attending', '2021-11-16 19:43:11', '2025-12-17 19:47:37', 'GmjorN3A', '4620697'), + (23321, 198, 1114, 'attending', '2021-11-12 23:30:14', '2025-12-17 19:47:36', 'GmjorN3A', '4637896'), + (23322, 198, 1116, 'not_attending', '2021-12-01 22:12:00', '2025-12-17 19:47:37', 'GmjorN3A', '4642994'), + (23323, 198, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'GmjorN3A', '4642995'), + (23324, 198, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GmjorN3A', '4642996'), + (23325, 198, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GmjorN3A', '4642997'), + (23326, 198, 1126, 'not_attending', '2021-12-12 00:31:51', '2025-12-17 19:47:38', 'GmjorN3A', '4645687'), + (23327, 198, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GmjorN3A', '4645698'), + (23328, 198, 1128, 'attending', '2021-11-20 20:20:53', '2025-12-17 19:47:37', 'GmjorN3A', '4645704'), + (23329, 198, 1129, 'attending', '2021-11-24 19:36:00', '2025-12-17 19:47:37', 'GmjorN3A', '4645705'), + (23330, 198, 1130, 'attending', '2021-12-04 20:25:39', '2025-12-17 19:47:37', 'GmjorN3A', '4658824'), + (23331, 198, 1134, 'not_attending', '2021-11-24 20:17:50', '2025-12-17 19:47:37', 'GmjorN3A', '4668385'), + (23332, 198, 1138, 'attending', '2021-11-29 21:29:19', '2025-12-17 19:47:37', 'GmjorN3A', '4675407'), + (23333, 198, 1139, 'attending', '2021-11-29 07:25:33', '2025-12-17 19:47:37', 'GmjorN3A', '4675604'), + (23334, 198, 1140, 'attending', '2021-11-30 03:52:55', '2025-12-17 19:47:37', 'GmjorN3A', '4679701'), + (23335, 198, 1142, 'attending', '2021-12-06 18:07:51', '2025-12-17 19:47:37', 'GmjorN3A', '4681923'), + (23336, 198, 1144, 'attending', '2021-12-06 18:07:34', '2025-12-17 19:47:37', 'GmjorN3A', '4687090'), + (23337, 198, 1146, 'not_attending', '2021-12-09 04:06:43', '2025-12-17 19:47:38', 'GmjorN3A', '4692841'), + (23338, 198, 1148, 'not_attending', '2021-12-17 23:47:33', '2025-12-17 19:47:31', 'GmjorN3A', '4692843'), + (23339, 198, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GmjorN3A', '4694407'), + (23340, 198, 1156, 'attending', '2021-12-18 21:32:17', '2025-12-17 19:47:31', 'GmjorN3A', '4715207'), + (23341, 198, 1164, 'attending', '2022-01-03 20:10:15', '2025-12-17 19:47:31', 'GmjorN3A', '4724208'), + (23342, 198, 1165, 'attending', '2022-01-03 20:10:16', '2025-12-17 19:47:31', 'GmjorN3A', '4724210'), + (23343, 198, 1174, 'attending', '2022-01-12 20:36:43', '2025-12-17 19:47:31', 'GmjorN3A', '4736496'), + (23344, 198, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GmjorN3A', '4736497'), + (23345, 198, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GmjorN3A', '4736499'), + (23346, 198, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GmjorN3A', '4736500'), + (23347, 198, 1179, 'attending', '2022-02-19 22:11:05', '2025-12-17 19:47:32', 'GmjorN3A', '4736501'), + (23348, 198, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GmjorN3A', '4736503'), + (23349, 198, 1182, 'not_attending', '2022-03-12 23:02:28', '2025-12-17 19:47:33', 'GmjorN3A', '4736504'), + (23350, 198, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GmjorN3A', '4746789'), + (23351, 198, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'GmjorN3A', '4753929'), + (23352, 198, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GmjorN3A', '5038850'), + (23353, 198, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GmjorN3A', '5045826'), + (23354, 198, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GmjorN3A', '5132533'), + (23355, 198, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GmjorN3A', '5186582'), + (23356, 198, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GmjorN3A', '5186583'), + (23357, 198, 1274, 'attending', '2022-04-02 16:58:35', '2025-12-17 19:47:26', 'GmjorN3A', '5186585'), + (23358, 198, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GmjorN3A', '5190437'), + (23359, 198, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GmjorN3A', '5195095'), + (23360, 198, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GmjorN3A', '5215989'), + (23361, 198, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GmjorN3A', '5223686'), + (23362, 198, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'GmjorN3A', '5227432'), + (23363, 198, 1346, 'attending', '2022-04-23 21:09:52', '2025-12-17 19:47:27', 'GmjorN3A', '5247467'), + (23364, 198, 1362, 'attending', '2022-04-30 20:03:26', '2025-12-17 19:47:28', 'GmjorN3A', '5260800'), + (23365, 198, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GmjorN3A', '5269930'), + (23366, 198, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GmjorN3A', '5271448'), + (23367, 198, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'GmjorN3A', '5271449'), + (23368, 198, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'GmjorN3A', '5276469'), + (23369, 198, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GmjorN3A', '5278159'), + (23370, 198, 1407, 'attending', '2022-06-03 22:44:17', '2025-12-17 19:47:30', 'GmjorN3A', '5363695'), + (23371, 198, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GmjorN3A', '5365960'), + (23372, 198, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'GmjorN3A', '5368973'), + (23373, 198, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GmjorN3A', '5378247'), + (23374, 198, 1431, 'attending', '2022-06-11 19:46:14', '2025-12-17 19:47:30', 'GmjorN3A', '5389605'), + (23375, 198, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GmjorN3A', '5397265'), + (23376, 198, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'GmjorN3A', '5403967'), + (23377, 198, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GmjorN3A', '5404786'), + (23378, 198, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GmjorN3A', '5405203'), + (23379, 198, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'GmjorN3A', '5408794'), + (23380, 198, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'GmjorN3A', '5411699'), + (23381, 198, 1482, 'attending', '2022-06-25 18:23:01', '2025-12-17 19:47:19', 'GmjorN3A', '5412550'), + (23382, 198, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GmjorN3A', '5415046'), + (23383, 198, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GmjorN3A', '5422086'), + (23384, 198, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GmjorN3A', '5422406'), + (23385, 198, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GmjorN3A', '5424565'), + (23386, 198, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GmjorN3A', '5426882'), + (23387, 198, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'GmjorN3A', '5427083'), + (23388, 198, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GmjorN3A', '5441125'), + (23389, 198, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GmjorN3A', '5441126'), + (23390, 198, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GmjorN3A', '5441128'), + (23391, 198, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjorN3A', '5441131'), + (23392, 198, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjorN3A', '5441132'), + (23393, 198, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'GmjorN3A', '5446643'), + (23394, 198, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GmjorN3A', '5453325'), + (23395, 198, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GmjorN3A', '5454516'), + (23396, 198, 1544, 'attending', '2022-09-17 18:16:52', '2025-12-17 19:47:11', 'GmjorN3A', '5454517'), + (23397, 198, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GmjorN3A', '5454605'), + (23398, 198, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GmjorN3A', '5455037'), + (23399, 198, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjorN3A', '5461278'), + (23400, 198, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GmjorN3A', '5469480'), + (23401, 198, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'GmjorN3A', '5471073'), + (23402, 198, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GmjorN3A', '5474663'), + (23403, 198, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GmjorN3A', '5482022'), + (23404, 198, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'GmjorN3A', '5482793'), + (23405, 198, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjorN3A', '5488912'), + (23406, 198, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjorN3A', '5492192'), + (23407, 198, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjorN3A', '5493139'), + (23408, 198, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjorN3A', '5493200'), + (23409, 198, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjorN3A', '5502188'), + (23410, 198, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjorN3A', '5505059'), + (23411, 198, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GmjorN3A', '5509055'), + (23412, 198, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjorN3A', '5512862'), + (23413, 198, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjorN3A', '5513985'), + (23414, 198, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'GmjorN3A', '5519981'), + (23415, 198, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjorN3A', '5522550'), + (23416, 198, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjorN3A', '5534683'), + (23417, 198, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjorN3A', '5537735'), + (23418, 198, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjorN3A', '5540859'), + (23419, 198, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjorN3A', '5546619'), + (23420, 198, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GmjorN3A', '5555245'), + (23421, 198, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjorN3A', '5557747'), + (23422, 198, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjorN3A', '5560255'), + (23423, 198, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjorN3A', '5562906'), + (23424, 198, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjorN3A', '5600604'), + (23425, 198, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjorN3A', '5605544'), + (23426, 198, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'GmjorN3A', '5606737'), + (23427, 198, 1712, 'not_attending', '2022-10-13 22:25:20', '2025-12-17 19:47:12', 'GmjorN3A', '5622073'), + (23428, 198, 1719, 'attending', '2022-10-08 15:57:25', '2025-12-17 19:47:12', 'GmjorN3A', '5630958'), + (23429, 198, 1720, 'attending', '2022-10-15 19:53:32', '2025-12-17 19:47:12', 'GmjorN3A', '5630959'), + (23430, 198, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GmjorN3A', '5630960'), + (23431, 198, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjorN3A', '5630961'), + (23432, 198, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjorN3A', '5630962'), + (23433, 198, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GmjorN3A', '5630966'), + (23434, 198, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GmjorN3A', '5630967'), + (23435, 198, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjorN3A', '5630968'), + (23436, 198, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjorN3A', '5635406'), + (23437, 198, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjorN3A', '5638765'), + (23438, 198, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjorN3A', '5640097'), + (23439, 198, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjorN3A', '5640843'), + (23440, 198, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjorN3A', '5641521'), + (23441, 198, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GmjorN3A', '5642818'), + (23442, 198, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjorN3A', '5652395'), + (23443, 198, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GmjorN3A', '5670445'), + (23444, 198, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjorN3A', '5671637'), + (23445, 198, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjorN3A', '5672329'), + (23446, 198, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjorN3A', '5674057'), + (23447, 198, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjorN3A', '5674060'), + (23448, 198, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GmjorN3A', '5677461'), + (23449, 198, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjorN3A', '5698046'), + (23450, 198, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GmjorN3A', '5699760'), + (23451, 198, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjorN3A', '5741601'), + (23452, 198, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjorN3A', '5763458'), + (23453, 198, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjorN3A', '5774172'), + (23454, 198, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'GmjorN3A', '5818247'), + (23455, 198, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjorN3A', '5819471'), + (23456, 198, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'GmjorN3A', '5827739'), + (23457, 198, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjorN3A', '5844306'), + (23458, 198, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjorN3A', '5850159'), + (23459, 198, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjorN3A', '5858999'), + (23460, 198, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjorN3A', '5871984'), + (23461, 198, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjorN3A', '5876354'), + (23462, 198, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjorN3A', '5880939'), + (23463, 198, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjorN3A', '5887890'), + (23464, 198, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjorN3A', '5888598'), + (23465, 198, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjorN3A', '5893260'), + (23466, 198, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjorN3A', '6045684'), + (23467, 199, 249, 'not_attending', '2020-11-17 23:13:35', '2025-12-17 19:47:54', 'LmpjJqQ4', '3149480'), + (23468, 199, 410, 'attending', '2020-11-22 05:42:25', '2025-12-17 19:47:54', 'LmpjJqQ4', '3236469'), + (23469, 199, 452, 'not_attending', '2020-11-27 05:58:03', '2025-12-17 19:47:54', 'LmpjJqQ4', '3272981'), + (23470, 199, 468, 'attending', '2020-11-15 21:52:41', '2025-12-17 19:47:54', 'LmpjJqQ4', '3285413'), + (23471, 199, 469, 'attending', '2020-11-22 05:42:34', '2025-12-17 19:47:54', 'LmpjJqQ4', '3285414'), + (23472, 199, 481, 'not_attending', '2020-11-20 01:34:51', '2025-12-17 19:47:54', 'LmpjJqQ4', '3297764'), + (23473, 199, 487, 'not_attending', '2020-11-27 05:58:11', '2025-12-17 19:47:54', 'LmpjJqQ4', '3311122'), + (23474, 199, 488, 'not_attending', '2020-12-02 03:54:22', '2025-12-17 19:47:54', 'LmpjJqQ4', '3312757'), + (23475, 199, 493, 'attending', '2020-11-29 16:29:06', '2025-12-17 19:47:54', 'LmpjJqQ4', '3313856'), + (23476, 199, 494, 'attending', '2020-11-29 17:27:39', '2025-12-17 19:47:54', 'LmpjJqQ4', '3313866'), + (23477, 199, 496, 'attending', '2020-11-29 21:47:34', '2025-12-17 19:47:54', 'LmpjJqQ4', '3314269'), + (23478, 199, 497, 'attending', '2020-11-29 21:47:38', '2025-12-17 19:47:55', 'LmpjJqQ4', '3314270'), + (23479, 199, 498, 'attending', '2020-11-29 22:25:38', '2025-12-17 19:47:54', 'LmpjJqQ4', '3314302'), + (23480, 199, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'LmpjJqQ4', '3314909'), + (23481, 199, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'LmpjJqQ4', '3314964'), + (23482, 199, 501, 'attending', '2020-12-02 03:58:51', '2025-12-17 19:47:54', 'LmpjJqQ4', '3317834'), + (23483, 199, 502, 'attending', '2020-12-09 06:12:45', '2025-12-17 19:47:55', 'LmpjJqQ4', '3323365'), + (23484, 199, 506, 'attending', '2020-12-13 21:45:41', '2025-12-17 19:47:55', 'LmpjJqQ4', '3323375'), + (23485, 199, 513, 'attending', '2020-12-14 14:53:55', '2025-12-17 19:47:55', 'LmpjJqQ4', '3329383'), + (23486, 199, 516, 'maybe', '2020-12-15 02:00:40', '2025-12-17 19:47:48', 'LmpjJqQ4', '3334530'), + (23487, 199, 517, 'maybe', '2020-12-15 02:00:01', '2025-12-17 19:47:48', 'LmpjJqQ4', '3337137'), + (23488, 199, 518, 'maybe', '2020-12-15 02:00:05', '2025-12-17 19:47:48', 'LmpjJqQ4', '3337138'), + (23489, 199, 519, 'not_attending', '2020-12-22 00:22:05', '2025-12-17 19:47:55', 'LmpjJqQ4', '3337448'), + (23490, 199, 520, 'not_attending', '2020-12-20 21:48:59', '2025-12-17 19:47:55', 'LmpjJqQ4', '3337453'), + (23491, 199, 521, 'not_attending', '2020-12-21 15:08:32', '2025-12-17 19:47:48', 'LmpjJqQ4', '3337454'), + (23492, 199, 526, 'maybe', '2020-12-27 23:30:23', '2025-12-17 19:47:48', 'LmpjJqQ4', '3351539'), + (23493, 199, 529, 'not_attending', '2021-01-05 18:05:48', '2025-12-17 19:47:48', 'LmpjJqQ4', '3364568'), + (23494, 199, 530, 'not_attending', '2021-01-03 06:21:24', '2025-12-17 19:47:48', 'LmpjJqQ4', '3373923'), + (23495, 199, 532, 'maybe', '2021-01-03 06:21:10', '2025-12-17 19:47:48', 'LmpjJqQ4', '3381412'), + (23496, 199, 534, 'maybe', '2021-01-05 04:33:38', '2025-12-17 19:47:48', 'LmpjJqQ4', '3384157'), + (23497, 199, 536, 'maybe', '2021-01-10 00:06:03', '2025-12-17 19:47:48', 'LmpjJqQ4', '3386848'), + (23498, 199, 538, 'not_attending', '2021-01-11 16:19:44', '2025-12-17 19:47:48', 'LmpjJqQ4', '3388151'), + (23499, 199, 540, 'maybe', '2021-01-07 21:20:24', '2025-12-17 19:47:48', 'LmpjJqQ4', '3389527'), + (23500, 199, 542, 'attending', '2021-01-12 03:02:37', '2025-12-17 19:47:48', 'LmpjJqQ4', '3395013'), + (23501, 199, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'LmpjJqQ4', '3396499'), + (23502, 199, 548, 'maybe', '2021-01-13 16:29:40', '2025-12-17 19:47:48', 'LmpjJqQ4', '3403650'), + (23503, 199, 549, 'not_attending', '2021-01-19 04:13:12', '2025-12-17 19:47:49', 'LmpjJqQ4', '3406988'), + (23504, 199, 550, 'not_attending', '2021-01-17 18:12:36', '2025-12-17 19:47:48', 'LmpjJqQ4', '3407018'), + (23505, 199, 551, 'maybe', '2021-01-15 17:57:40', '2025-12-17 19:47:49', 'LmpjJqQ4', '3407219'), + (23506, 199, 555, 'not_attending', '2021-01-24 00:43:16', '2025-12-17 19:47:49', 'LmpjJqQ4', '3416576'), + (23507, 199, 556, 'not_attending', '2021-01-24 20:34:46', '2025-12-17 19:47:49', 'LmpjJqQ4', '3417170'), + (23508, 199, 558, 'maybe', '2021-01-19 16:05:51', '2025-12-17 19:47:49', 'LmpjJqQ4', '3418925'), + (23509, 199, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'LmpjJqQ4', '3426074'), + (23510, 199, 567, 'maybe', '2021-01-24 20:32:33', '2025-12-17 19:47:50', 'LmpjJqQ4', '3428895'), + (23511, 199, 568, 'maybe', '2021-01-24 20:32:41', '2025-12-17 19:47:50', 'LmpjJqQ4', '3430267'), + (23512, 199, 569, 'not_attending', '2021-01-26 02:09:40', '2025-12-17 19:47:49', 'LmpjJqQ4', '3432673'), + (23513, 199, 570, 'maybe', '2021-01-26 15:55:17', '2025-12-17 19:47:50', 'LmpjJqQ4', '3435538'), + (23514, 199, 571, 'maybe', '2021-02-12 17:39:06', '2025-12-17 19:47:50', 'LmpjJqQ4', '3435539'), + (23515, 199, 579, 'maybe', '2021-01-31 21:00:06', '2025-12-17 19:47:50', 'LmpjJqQ4', '3440978'), + (23516, 199, 591, 'maybe', '2021-02-05 01:31:20', '2025-12-17 19:47:50', 'LmpjJqQ4', '3465880'), + (23517, 199, 600, 'not_attending', '2021-02-16 00:49:37', '2025-12-17 19:47:50', 'LmpjJqQ4', '3468125'), + (23518, 199, 602, 'maybe', '2021-02-11 00:08:18', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470303'), + (23519, 199, 603, 'maybe', '2021-02-11 00:08:21', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470304'), + (23520, 199, 604, 'maybe', '2021-02-11 00:08:23', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470305'), + (23521, 199, 605, 'not_attending', '2021-02-08 22:17:01', '2025-12-17 19:47:50', 'LmpjJqQ4', '3470991'), + (23522, 199, 607, 'not_attending', '2021-02-16 00:49:16', '2025-12-17 19:47:50', 'LmpjJqQ4', '3471882'), + (23523, 199, 611, 'not_attending', '2021-02-16 00:49:22', '2025-12-17 19:47:50', 'LmpjJqQ4', '3482659'), + (23524, 199, 615, 'maybe', '2021-02-16 00:47:44', '2025-12-17 19:47:50', 'LmpjJqQ4', '3490045'), + (23525, 199, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'LmpjJqQ4', '3517815'), + (23526, 199, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'LmpjJqQ4', '3517816'), + (23527, 199, 623, 'not_attending', '2021-02-26 00:31:58', '2025-12-17 19:47:51', 'LmpjJqQ4', '3523941'), + (23528, 199, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'LmpjJqQ4', '3533850'), + (23529, 199, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'LmpjJqQ4', '3536632'), + (23530, 199, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'LmpjJqQ4', '3536656'), + (23531, 199, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'LmpjJqQ4', '3539916'), + (23532, 199, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'LmpjJqQ4', '3539917'), + (23533, 199, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'LmpjJqQ4', '3539918'), + (23534, 199, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539919'), + (23535, 199, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539920'), + (23536, 199, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539921'), + (23537, 199, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'LmpjJqQ4', '3539922'), + (23538, 199, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'LmpjJqQ4', '3539923'), + (23539, 199, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'LmpjJqQ4', '3539927'), + (23540, 199, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'LmpjJqQ4', '3582734'), + (23541, 199, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'LmpjJqQ4', '3583262'), + (23542, 199, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'LmpjJqQ4', '3619523'), + (23543, 199, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'LmpjJqQ4', '3661369'), + (23544, 199, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'LmpjJqQ4', '3674262'), + (23545, 199, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'LmpjJqQ4', '3677402'), + (23546, 199, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'LmpjJqQ4', '3730212'), + (23547, 199, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'LmpjJqQ4', '3793156'), + (23548, 199, 823, 'not_attending', '2021-06-17 00:50:41', '2025-12-17 19:47:48', 'LmpjJqQ4', '3974109'), + (23549, 199, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'LmpjJqQ4', '3975311'), + (23550, 199, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpjJqQ4', '3975312'), + (23551, 199, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpjJqQ4', '3994992'), + (23552, 199, 841, 'not_attending', '2021-06-15 19:02:35', '2025-12-17 19:47:48', 'LmpjJqQ4', '4007434'), + (23553, 199, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpjJqQ4', '4014338'), + (23554, 199, 867, 'attending', '2021-06-24 21:12:42', '2025-12-17 19:47:38', 'LmpjJqQ4', '4021848'), + (23555, 199, 868, 'attending', '2021-06-18 23:52:51', '2025-12-17 19:47:48', 'LmpjJqQ4', '4022012'), + (23556, 199, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpjJqQ4', '4136744'), + (23557, 199, 870, 'not_attending', '2021-07-02 22:01:55', '2025-12-17 19:47:39', 'LmpjJqQ4', '4136937'), + (23558, 199, 871, 'not_attending', '2021-07-10 21:04:54', '2025-12-17 19:47:39', 'LmpjJqQ4', '4136938'), + (23559, 199, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpjJqQ4', '4136947'), + (23560, 199, 873, 'not_attending', '2021-06-17 00:50:38', '2025-12-17 19:47:48', 'LmpjJqQ4', '4138297'), + (23561, 199, 874, 'not_attending', '2021-06-24 23:07:47', '2025-12-17 19:47:38', 'LmpjJqQ4', '4139815'), + (23562, 199, 876, 'maybe', '2021-06-17 00:51:24', '2025-12-17 19:47:38', 'LmpjJqQ4', '4139926'), + (23563, 199, 878, 'maybe', '2021-06-17 00:51:09', '2025-12-17 19:47:38', 'LmpjJqQ4', '4143331'), + (23564, 199, 879, 'not_attending', '2021-06-28 22:00:54', '2025-12-17 19:47:38', 'LmpjJqQ4', '4147806'), + (23565, 199, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpjJqQ4', '4210314'), + (23566, 199, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpjJqQ4', '4225444'), + (23567, 199, 898, 'maybe', '2021-06-30 15:06:10', '2025-12-17 19:47:38', 'LmpjJqQ4', '4236746'), + (23568, 199, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpjJqQ4', '4239259'), + (23569, 199, 900, 'attending', '2021-07-22 20:42:59', '2025-12-17 19:47:40', 'LmpjJqQ4', '4240316'), + (23570, 199, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'LmpjJqQ4', '4240317'), + (23571, 199, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'LmpjJqQ4', '4240318'), + (23572, 199, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'LmpjJqQ4', '4240320'), + (23573, 199, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpjJqQ4', '4250163'), + (23574, 199, 917, 'maybe', '2021-07-12 12:54:04', '2025-12-17 19:47:39', 'LmpjJqQ4', '4274481'), + (23575, 199, 919, 'maybe', '2021-07-17 20:56:09', '2025-12-17 19:47:39', 'LmpjJqQ4', '4275957'), + (23576, 199, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpjJqQ4', '4277819'), + (23577, 199, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpjJqQ4', '4301723'), + (23578, 199, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpjJqQ4', '4302093'), + (23579, 199, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpjJqQ4', '4304151'), + (23580, 199, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'LmpjJqQ4', '4345519'), + (23581, 199, 971, 'not_attending', '2021-09-08 23:15:37', '2025-12-17 19:47:43', 'LmpjJqQ4', '4356801'), + (23582, 199, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpjJqQ4', '4358025'), + (23583, 199, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'LmpjJqQ4', '4366186'), + (23584, 199, 974, 'attending', '2021-08-24 15:44:48', '2025-12-17 19:47:42', 'LmpjJqQ4', '4366187'), + (23585, 199, 987, 'attending', '2021-09-01 21:33:02', '2025-12-17 19:47:43', 'LmpjJqQ4', '4402634'), + (23586, 199, 988, 'maybe', '2021-08-27 00:06:51', '2025-12-17 19:47:42', 'LmpjJqQ4', '4402823'), + (23587, 199, 989, 'maybe', '2021-08-28 22:28:21', '2025-12-17 19:47:43', 'LmpjJqQ4', '4414282'), + (23588, 199, 990, 'attending', '2021-09-04 00:19:07', '2025-12-17 19:47:43', 'LmpjJqQ4', '4420735'), + (23589, 199, 991, 'attending', '2021-09-11 21:57:18', '2025-12-17 19:47:43', 'LmpjJqQ4', '4420738'), + (23590, 199, 992, 'attending', '2021-09-18 18:13:38', '2025-12-17 19:47:33', 'LmpjJqQ4', '4420739'), + (23591, 199, 993, 'attending', '2021-09-25 03:10:26', '2025-12-17 19:47:34', 'LmpjJqQ4', '4420741'), + (23592, 199, 994, 'attending', '2021-10-02 21:01:06', '2025-12-17 19:47:34', 'LmpjJqQ4', '4420742'), + (23593, 199, 995, 'not_attending', '2021-10-09 20:37:18', '2025-12-17 19:47:34', 'LmpjJqQ4', '4420744'), + (23594, 199, 996, 'not_attending', '2021-10-16 22:29:43', '2025-12-17 19:47:35', 'LmpjJqQ4', '4420747'), + (23595, 199, 997, 'not_attending', '2021-10-23 21:18:57', '2025-12-17 19:47:35', 'LmpjJqQ4', '4420748'), + (23596, 199, 998, 'attending', '2021-10-30 19:57:14', '2025-12-17 19:47:36', 'LmpjJqQ4', '4420749'), + (23597, 199, 1001, 'maybe', '2021-08-30 13:38:36', '2025-12-17 19:47:43', 'LmpjJqQ4', '4424687'), + (23598, 199, 1002, 'attending', '2021-08-30 13:37:57', '2025-12-17 19:47:43', 'LmpjJqQ4', '4424932'), + (23599, 199, 1016, 'attending', '2021-09-04 00:18:40', '2025-12-17 19:47:43', 'LmpjJqQ4', '4441271'), + (23600, 199, 1017, 'attending', '2021-09-06 23:16:10', '2025-12-17 19:47:43', 'LmpjJqQ4', '4441822'), + (23601, 199, 1020, 'attending', '2021-09-06 15:38:03', '2025-12-17 19:47:43', 'LmpjJqQ4', '4451787'), + (23602, 199, 1021, 'attending', '2021-09-20 22:16:02', '2025-12-17 19:47:34', 'LmpjJqQ4', '4451803'), + (23603, 199, 1023, 'maybe', '2021-09-13 20:31:00', '2025-12-17 19:47:43', 'LmpjJqQ4', '4461883'), + (23604, 199, 1025, 'maybe', '2021-09-14 20:35:30', '2025-12-17 19:47:43', 'LmpjJqQ4', '4462052'), + (23605, 199, 1029, 'maybe', '2021-09-13 02:51:24', '2025-12-17 19:47:43', 'LmpjJqQ4', '4473063'), + (23606, 199, 1030, 'not_attending', '2021-09-18 18:14:10', '2025-12-17 19:47:34', 'LmpjJqQ4', '4473064'), + (23607, 199, 1035, 'not_attending', '2021-09-20 19:45:43', '2025-12-17 19:47:34', 'LmpjJqQ4', '4492184'), + (23608, 199, 1036, 'maybe', '2021-09-18 18:13:59', '2025-12-17 19:47:34', 'LmpjJqQ4', '4493166'), + (23609, 199, 1066, 'attending', '2021-09-25 14:58:40', '2025-12-17 19:47:34', 'LmpjJqQ4', '4506039'), + (23610, 199, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpjJqQ4', '4508342'), + (23611, 199, 1068, 'attending', '2021-09-30 21:40:36', '2025-12-17 19:47:34', 'LmpjJqQ4', '4511471'), + (23612, 199, 1070, 'not_attending', '2021-10-01 22:53:59', '2025-12-17 19:47:34', 'LmpjJqQ4', '4512562'), + (23613, 199, 1074, 'attending', '2021-09-29 20:41:21', '2025-12-17 19:47:34', 'LmpjJqQ4', '4528953'), + (23614, 199, 1079, 'attending', '2021-10-20 21:37:47', '2025-12-17 19:47:35', 'LmpjJqQ4', '4563823'), + (23615, 199, 1082, 'maybe', '2021-10-12 00:04:26', '2025-12-17 19:47:35', 'LmpjJqQ4', '4566762'), + (23616, 199, 1085, 'attending', '2021-12-23 21:35:09', '2025-12-17 19:47:31', 'LmpjJqQ4', '4568542'), + (23617, 199, 1086, 'not_attending', '2021-10-14 19:58:47', '2025-12-17 19:47:35', 'LmpjJqQ4', '4568602'), + (23618, 199, 1087, 'not_attending', '2021-10-15 11:04:46', '2025-12-17 19:47:35', 'LmpjJqQ4', '4572153'), + (23619, 199, 1092, 'not_attending', '2021-10-21 21:56:52', '2025-12-17 19:47:35', 'LmpjJqQ4', '4582837'), + (23620, 199, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpjJqQ4', '4585962'), + (23621, 199, 1094, 'maybe', '2021-10-21 03:49:24', '2025-12-17 19:47:36', 'LmpjJqQ4', '4587337'), + (23622, 199, 1095, 'not_attending', '2021-10-27 21:43:31', '2025-12-17 19:47:36', 'LmpjJqQ4', '4596356'), + (23623, 199, 1097, 'not_attending', '2021-11-03 18:07:26', '2025-12-17 19:47:36', 'LmpjJqQ4', '4598860'), + (23624, 199, 1098, 'not_attending', '2021-11-09 16:17:26', '2025-12-17 19:47:36', 'LmpjJqQ4', '4598861'), + (23625, 199, 1099, 'attending', '2021-11-06 22:32:31', '2025-12-17 19:47:36', 'LmpjJqQ4', '4602797'), + (23626, 199, 1107, 'not_attending', '2021-11-17 00:45:32', '2025-12-17 19:47:37', 'LmpjJqQ4', '4620697'), + (23627, 199, 1114, 'maybe', '2021-11-12 02:27:35', '2025-12-17 19:47:36', 'LmpjJqQ4', '4637896'), + (23628, 199, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpjJqQ4', '4642994'), + (23629, 199, 1117, 'maybe', '2021-12-02 17:00:48', '2025-12-17 19:47:38', 'LmpjJqQ4', '4642995'), + (23630, 199, 1118, 'maybe', '2021-12-02 17:01:06', '2025-12-17 19:47:38', 'LmpjJqQ4', '4642996'), + (23631, 199, 1119, 'maybe', '2021-12-02 17:01:09', '2025-12-17 19:47:31', 'LmpjJqQ4', '4642997'), + (23632, 199, 1126, 'not_attending', '2021-12-11 23:44:54', '2025-12-17 19:47:38', 'LmpjJqQ4', '4645687'), + (23633, 199, 1127, 'maybe', '2021-12-02 17:00:59', '2025-12-17 19:47:38', 'LmpjJqQ4', '4645698'), + (23634, 199, 1128, 'not_attending', '2021-11-20 20:14:53', '2025-12-17 19:47:37', 'LmpjJqQ4', '4645704'), + (23635, 199, 1129, 'maybe', '2021-11-22 00:51:08', '2025-12-17 19:47:37', 'LmpjJqQ4', '4645705'), + (23636, 199, 1132, 'not_attending', '2021-11-22 23:26:02', '2025-12-17 19:47:37', 'LmpjJqQ4', '4660657'), + (23637, 199, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpjJqQ4', '4668385'), + (23638, 199, 1140, 'maybe', '2021-12-02 17:00:25', '2025-12-17 19:47:37', 'LmpjJqQ4', '4679701'), + (23639, 199, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpjJqQ4', '4694407'), + (23640, 199, 1164, 'maybe', '2021-12-28 06:24:57', '2025-12-17 19:47:31', 'LmpjJqQ4', '4724208'), + (23641, 199, 1165, 'maybe', '2021-12-28 06:25:03', '2025-12-17 19:47:31', 'LmpjJqQ4', '4724210'), + (23642, 199, 1167, 'not_attending', '2022-01-03 18:40:29', '2025-12-17 19:47:31', 'LmpjJqQ4', '4731015'), + (23643, 199, 1170, 'maybe', '2022-01-03 18:40:16', '2025-12-17 19:47:31', 'LmpjJqQ4', '4731045'), + (23644, 199, 1174, 'attending', '2022-01-15 23:43:51', '2025-12-17 19:47:31', 'LmpjJqQ4', '4736496'), + (23645, 199, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'LmpjJqQ4', '4736497'), + (23646, 199, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpjJqQ4', '4736499'), + (23647, 199, 1178, 'not_attending', '2022-01-29 22:17:12', '2025-12-17 19:47:32', 'LmpjJqQ4', '4736500'), + (23648, 199, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'LmpjJqQ4', '4736503'), + (23649, 199, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpjJqQ4', '4736504'), + (23650, 199, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpjJqQ4', '4746789'), + (23651, 199, 1188, 'maybe', '2022-01-15 19:54:44', '2025-12-17 19:47:32', 'LmpjJqQ4', '4753929'), + (23652, 199, 1193, 'maybe', '2022-01-15 19:54:56', '2025-12-17 19:47:32', 'LmpjJqQ4', '4759563'), + (23653, 199, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpjJqQ4', '5038850'), + (23654, 199, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpjJqQ4', '5045826'), + (23655, 199, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpjJqQ4', '5132533'), + (23656, 199, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'LmpjJqQ4', '5186582'), + (23657, 199, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpjJqQ4', '5186583'), + (23658, 199, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'LmpjJqQ4', '5186585'), + (23659, 199, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpjJqQ4', '5190437'), + (23660, 199, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'LmpjJqQ4', '5195095'), + (23661, 199, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpjJqQ4', '5215989'), + (23662, 199, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'LmpjJqQ4', '5223686'), + (23663, 199, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'LmpjJqQ4', '5227432'), + (23664, 199, 1346, 'not_attending', '2022-04-23 22:07:17', '2025-12-17 19:47:27', 'LmpjJqQ4', '5247467'), + (23665, 199, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'LmpjJqQ4', '5260800'), + (23666, 199, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'LmpjJqQ4', '5269930'), + (23667, 199, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'LmpjJqQ4', '5271448'), + (23668, 199, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'LmpjJqQ4', '5271449'), + (23669, 199, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'LmpjJqQ4', '5276469'), + (23670, 199, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'LmpjJqQ4', '5278159'), + (23671, 199, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'LmpjJqQ4', '5363695'), + (23672, 199, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'LmpjJqQ4', '5365960'), + (23673, 199, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'LmpjJqQ4', '5368973'), + (23674, 199, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpjJqQ4', '6045684'), + (23675, 200, 1177, 'attending', '2022-02-18 14:59:08', '2025-12-17 19:47:32', 'mj6EzlNm', '4736499'), + (23676, 200, 1231, 'attending', '2022-02-18 14:58:41', '2025-12-17 19:47:33', 'mj6EzlNm', '5037637'), + (23677, 200, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mj6EzlNm', '6045684'), + (23678, 201, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4E5gqyX4', '4637896'), + (23679, 201, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4E5gqyX4', '4642994'), + (23680, 201, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4E5gqyX4', '4642995'), + (23681, 201, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4E5gqyX4', '4642996'), + (23682, 201, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4E5gqyX4', '4642997'), + (23683, 201, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4E5gqyX4', '4645687'), + (23684, 201, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4E5gqyX4', '4645698'), + (23685, 201, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4E5gqyX4', '4645704'), + (23686, 201, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4E5gqyX4', '4645705'), + (23687, 201, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4E5gqyX4', '4668385'), + (23688, 201, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E5gqyX4', '6045684'), + (23689, 202, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKG7GGNd', '6045684'), + (23690, 203, 996, 'attending', '2021-10-12 19:32:55', '2025-12-17 19:47:35', 'dVB17ryd', '4420747'), + (23691, 203, 997, 'attending', '2021-10-23 18:11:34', '2025-12-17 19:47:35', 'dVB17ryd', '4420748'), + (23692, 203, 998, 'attending', '2021-10-30 17:46:53', '2025-12-17 19:47:36', 'dVB17ryd', '4420749'), + (23693, 203, 1009, 'attending', '2021-10-11 00:19:23', '2025-12-17 19:47:34', 'dVB17ryd', '4438811'), + (23694, 203, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dVB17ryd', '4568602'), + (23695, 203, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVB17ryd', '4572153'), + (23696, 203, 1088, 'attending', '2021-10-23 19:57:17', '2025-12-17 19:47:35', 'dVB17ryd', '4574382'), + (23697, 203, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dVB17ryd', '4585962'), + (23698, 203, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dVB17ryd', '4596356'), + (23699, 203, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dVB17ryd', '4598860'), + (23700, 203, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dVB17ryd', '4598861'), + (23701, 203, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dVB17ryd', '4602797'), + (23702, 203, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dVB17ryd', '4637896'), + (23703, 203, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dVB17ryd', '4642994'), + (23704, 203, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dVB17ryd', '4642995'), + (23705, 203, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dVB17ryd', '4642996'), + (23706, 203, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dVB17ryd', '4642997'), + (23707, 203, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dVB17ryd', '4645687'), + (23708, 203, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dVB17ryd', '4645698'), + (23709, 203, 1128, 'attending', '2021-11-20 03:09:28', '2025-12-17 19:47:37', 'dVB17ryd', '4645704'), + (23710, 203, 1129, 'attending', '2021-11-27 19:01:02', '2025-12-17 19:47:37', 'dVB17ryd', '4645705'), + (23711, 203, 1130, 'not_attending', '2021-12-04 18:16:54', '2025-12-17 19:47:37', 'dVB17ryd', '4658824'), + (23712, 203, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dVB17ryd', '4668385'), + (23713, 203, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dVB17ryd', '4694407'), + (23714, 203, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'dVB17ryd', '4706262'), + (23715, 203, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dVB17ryd', '4736497'), + (23716, 203, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dVB17ryd', '4736499'), + (23717, 203, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dVB17ryd', '4736500'), + (23718, 203, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dVB17ryd', '4736503'), + (23719, 203, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dVB17ryd', '4736504'), + (23720, 203, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVB17ryd', '4746789'), + (23721, 203, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dVB17ryd', '4753929'), + (23722, 203, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dVB17ryd', '5038850'), + (23723, 203, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dVB17ryd', '5045826'), + (23724, 203, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVB17ryd', '5132533'), + (23725, 203, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dVB17ryd', '5186582'), + (23726, 203, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dVB17ryd', '5186583'), + (23727, 203, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dVB17ryd', '5186585'), + (23728, 203, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVB17ryd', '5190437'), + (23729, 203, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVB17ryd', '5215989'), + (23730, 203, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVB17ryd', '6045684'), + (23731, 204, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'QdJxR7nA', '5630961'), + (23732, 204, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'QdJxR7nA', '5630962'), + (23733, 204, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'QdJxR7nA', '5630966'), + (23734, 204, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'QdJxR7nA', '5630967'), + (23735, 204, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'QdJxR7nA', '5630968'), + (23736, 204, 1738, 'maybe', '2022-10-25 17:37:20', '2025-12-17 19:47:14', 'QdJxR7nA', '5638765'), + (23737, 204, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'QdJxR7nA', '5640097'), + (23738, 204, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'QdJxR7nA', '5642818'), + (23739, 204, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'QdJxR7nA', '5670445'), + (23740, 204, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'QdJxR7nA', '5671637'), + (23741, 204, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'QdJxR7nA', '5672329'), + (23742, 204, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'QdJxR7nA', '5674057'), + (23743, 204, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'QdJxR7nA', '5674060'), + (23744, 204, 1772, 'maybe', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'QdJxR7nA', '5677461'), + (23745, 204, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'QdJxR7nA', '5698046'), + (23746, 204, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'QdJxR7nA', '5699760'), + (23747, 204, 1786, 'not_attending', '2022-11-08 23:40:43', '2025-12-17 19:47:15', 'QdJxR7nA', '5727232'), + (23748, 204, 1788, 'attending', '2022-11-17 12:26:34', '2025-12-17 19:47:16', 'QdJxR7nA', '5727236'), + (23749, 204, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'QdJxR7nA', '5741601'), + (23750, 204, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'QdJxR7nA', '5763458'), + (23751, 204, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'QdJxR7nA', '5774172'), + (23752, 204, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'QdJxR7nA', '5818247'), + (23753, 204, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'QdJxR7nA', '5819471'), + (23754, 204, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'QdJxR7nA', '5827739'), + (23755, 204, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'QdJxR7nA', '5844306'), + (23756, 204, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'QdJxR7nA', '5850159'), + (23757, 204, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'QdJxR7nA', '5858999'), + (23758, 204, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'QdJxR7nA', '5871984'), + (23759, 204, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'QdJxR7nA', '5876354'), + (23760, 204, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'QdJxR7nA', '5880939'), + (23761, 204, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'QdJxR7nA', '5887890'), + (23762, 204, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'QdJxR7nA', '5888598'), + (23763, 204, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'QdJxR7nA', '5893260'), + (23764, 204, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'QdJxR7nA', '6045684'), + (23765, 205, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4DpLWeo4', '6514660'), + (23766, 205, 2352, 'not_attending', '2023-11-22 19:12:21', '2025-12-17 19:46:48', '4DpLWeo4', '6587097'), + (23767, 205, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', '4DpLWeo4', '6596617'), + (23768, 205, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4DpLWeo4', '6609022'), + (23769, 205, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4DpLWeo4', '6632757'), + (23770, 205, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4DpLWeo4', '6644187'), + (23771, 205, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4DpLWeo4', '6648951'), + (23772, 205, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4DpLWeo4', '6648952'), + (23773, 205, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', '4DpLWeo4', '6651141'), + (23774, 205, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4DpLWeo4', '6655401'), + (23775, 205, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4DpLWeo4', '6661585'), + (23776, 205, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4DpLWeo4', '6661588'), + (23777, 205, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4DpLWeo4', '6661589'), + (23778, 205, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4DpLWeo4', '6699906'), + (23779, 205, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4DpLWeo4', '6699913'), + (23780, 205, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4DpLWeo4', '6701109'), + (23781, 205, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4DpLWeo4', '6705219'), + (23782, 205, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4DpLWeo4', '6710153'), + (23783, 205, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4DpLWeo4', '6711552'), + (23784, 205, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4DpLWeo4', '6711553'), + (23785, 205, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4DpLWeo4', '6722688'), + (23786, 205, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4DpLWeo4', '6730620'), + (23787, 205, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4DpLWeo4', '6730642'), + (23788, 205, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4DpLWeo4', '6740364'), + (23789, 205, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4DpLWeo4', '6743829'), + (23790, 205, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4DpLWeo4', '7030380'), + (23791, 205, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4DpLWeo4', '7033677'), + (23792, 205, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4DpLWeo4', '7035415'), + (23793, 205, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4DpLWeo4', '7044715'), + (23794, 205, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4DpLWeo4', '7050318'), + (23795, 205, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4DpLWeo4', '7050319'), + (23796, 205, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4DpLWeo4', '7050322'), + (23797, 205, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4DpLWeo4', '7057804'), + (23798, 205, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4DpLWeo4', '7072824'), + (23799, 205, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4DpLWeo4', '7074348'), + (23800, 205, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4DpLWeo4', '7089267'), + (23801, 205, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4DpLWeo4', '7098747'), + (23802, 205, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4DpLWeo4', '7113468'), + (23803, 205, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4DpLWeo4', '7114856'), + (23804, 205, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4DpLWeo4', '7114951'), + (23805, 205, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4DpLWeo4', '7114955'), + (23806, 205, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4DpLWeo4', '7114956'), + (23807, 205, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4DpLWeo4', '7153615'), + (23808, 205, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4DpLWeo4', '7159484'), + (23809, 205, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4DpLWeo4', '7178446'), + (23810, 206, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'LmpJy8N4', '3974109'), + (23811, 206, 827, 'attending', '2021-06-04 20:53:38', '2025-12-17 19:47:47', 'LmpJy8N4', '3975311'), + (23812, 206, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpJy8N4', '3975312'), + (23813, 206, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpJy8N4', '3994992'), + (23814, 206, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpJy8N4', '4014338'), + (23815, 206, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'LmpJy8N4', '4021848'), + (23816, 206, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpJy8N4', '4136744'), + (23817, 206, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'LmpJy8N4', '4136937'), + (23818, 206, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'LmpJy8N4', '4136938'), + (23819, 206, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJy8N4', '4136947'), + (23820, 206, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpJy8N4', '4225444'), + (23821, 206, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpJy8N4', '4239259'), + (23822, 206, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpJy8N4', '4250163'), + (23823, 206, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJy8N4', '6045684'), + (23824, 207, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd8qQgVpm', '7324078'), + (23825, 207, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd8qQgVpm', '7324082'), + (23826, 207, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd8qQgVpm', '7363643'), + (23827, 207, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd8qQgVpm', '7397462'), + (23828, 207, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd8qQgVpm', '7424275'), + (23829, 207, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd8qQgVpm', '7432751'), + (23830, 207, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd8qQgVpm', '7432752'), + (23831, 207, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd8qQgVpm', '7432753'), + (23832, 207, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd8qQgVpm', '7432754'), + (23833, 207, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd8qQgVpm', '7432755'), + (23834, 207, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd8qQgVpm', '7432756'), + (23835, 207, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd8qQgVpm', '7432758'), + (23836, 207, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd8qQgVpm', '7432759'), + (23837, 207, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd8qQgVpm', '7433834'), + (23838, 207, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd8qQgVpm', '7470197'), + (23839, 207, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd8qQgVpm', '7685613'), + (23840, 207, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd8qQgVpm', '7688194'), + (23841, 207, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd8qQgVpm', '7688196'), + (23842, 207, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd8qQgVpm', '7688289'), + (23843, 208, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZ81694', '6514660'), + (23844, 208, 2352, 'not_attending', '2023-11-22 19:12:21', '2025-12-17 19:46:48', 'dKZ81694', '6587097'), + (23845, 208, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZ81694', '6609022'), + (23846, 208, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZ81694', '6632757'), + (23847, 208, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZ81694', '6644187'), + (23848, 208, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZ81694', '6648951'), + (23849, 208, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZ81694', '6648952'), + (23850, 208, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZ81694', '6655401'), + (23851, 208, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZ81694', '6661585'), + (23852, 208, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZ81694', '6661588'), + (23853, 208, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZ81694', '6661589'), + (23854, 208, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZ81694', '6699906'), + (23855, 208, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dKZ81694', '6699913'), + (23856, 208, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZ81694', '6701109'), + (23857, 208, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZ81694', '6705219'), + (23858, 208, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZ81694', '6710153'), + (23859, 208, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZ81694', '6711552'), + (23860, 208, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZ81694', '6711553'), + (23861, 208, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKZ81694', '6722688'), + (23862, 208, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKZ81694', '6730620'), + (23863, 208, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKZ81694', '6730642'), + (23864, 208, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKZ81694', '6740364'), + (23865, 208, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKZ81694', '6743829'), + (23866, 208, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKZ81694', '7030380'), + (23867, 208, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKZ81694', '7033677'), + (23868, 208, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKZ81694', '7035415'), + (23869, 208, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKZ81694', '7044715'), + (23870, 208, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKZ81694', '7050318'), + (23871, 208, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKZ81694', '7050319'), + (23872, 208, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKZ81694', '7050322'), + (23873, 208, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKZ81694', '7057804'), + (23874, 208, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKZ81694', '7072824'), + (23875, 208, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dKZ81694', '7074348'), + (23876, 208, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKZ81694', '7089267'), + (23877, 208, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKZ81694', '7098747'), + (23878, 208, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dKZ81694', '7113468'), + (23879, 208, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKZ81694', '7114856'), + (23880, 208, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKZ81694', '7114951'), + (23881, 208, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKZ81694', '7114955'), + (23882, 208, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKZ81694', '7114956'), + (23883, 208, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKZ81694', '7153615'), + (23884, 208, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKZ81694', '7159484'), + (23885, 208, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKZ81694', '7178446'), + (23886, 209, 2065, 'attending', '2023-06-17 17:21:00', '2025-12-17 19:46:49', 'dzgb7Mpm', '6101169'), + (23887, 209, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dzgb7Mpm', '6101361'), + (23888, 209, 2075, 'maybe', '2023-06-30 02:22:49', '2025-12-17 19:46:50', 'dzgb7Mpm', '6107314'), + (23889, 209, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dzgb7Mpm', '6136733'), + (23890, 209, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dzgb7Mpm', '6137989'), + (23891, 209, 2098, 'not_attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dzgb7Mpm', '6139831'), + (23892, 209, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dzgb7Mpm', '6150864'), + (23893, 209, 2109, 'attending', '2023-06-19 05:59:02', '2025-12-17 19:46:50', 'dzgb7Mpm', '6152821'), + (23894, 209, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dzgb7Mpm', '6155491'), + (23895, 209, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dzgb7Mpm', '6164417'), + (23896, 209, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dzgb7Mpm', '6166388'), + (23897, 209, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dzgb7Mpm', '6176439'), + (23898, 209, 2122, 'attending', '2023-06-30 22:16:33', '2025-12-17 19:46:51', 'dzgb7Mpm', '6176476'), + (23899, 209, 2124, 'attending', '2023-07-04 11:01:12', '2025-12-17 19:46:51', 'dzgb7Mpm', '6176988'), + (23900, 209, 2128, 'maybe', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dzgb7Mpm', '6182410'), + (23901, 209, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dzgb7Mpm', '6185812'), + (23902, 209, 2132, 'attending', '2023-07-06 02:13:03', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187015'), + (23903, 209, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dzgb7Mpm', '6187651'), + (23904, 209, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187963'), + (23905, 209, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187964'), + (23906, 209, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dzgb7Mpm', '6187966'), + (23907, 209, 2137, 'attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dzgb7Mpm', '6187967'), + (23908, 209, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dzgb7Mpm', '6187969'), + (23909, 209, 2139, 'attending', '2023-07-09 02:53:03', '2025-12-17 19:46:52', 'dzgb7Mpm', '6188027'), + (23910, 209, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dzgb7Mpm', '6334878'), + (23911, 209, 2146, 'attending', '2023-07-18 00:00:55', '2025-12-17 19:46:53', 'dzgb7Mpm', '6335638'), + (23912, 209, 2148, 'attending', '2023-07-11 11:17:11', '2025-12-17 19:46:53', 'dzgb7Mpm', '6335667'), + (23913, 209, 2152, 'attending', '2023-07-13 03:12:17', '2025-12-17 19:46:52', 'dzgb7Mpm', '6337021'), + (23914, 209, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dzgb7Mpm', '6337236'), + (23915, 209, 2155, 'attending', '2023-07-17 23:59:56', '2025-12-17 19:46:53', 'dzgb7Mpm', '6337970'), + (23916, 209, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dzgb7Mpm', '6338308'), + (23917, 209, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dzgb7Mpm', '6340845'), + (23918, 209, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dzgb7Mpm', '6341710'), + (23919, 209, 2164, 'maybe', '2023-07-19 19:40:17', '2025-12-17 19:46:54', 'dzgb7Mpm', '6341797'), + (23920, 209, 2165, 'attending', '2023-08-01 07:53:58', '2025-12-17 19:46:54', 'dzgb7Mpm', '6342044'), + (23921, 209, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dzgb7Mpm', '6342298'), + (23922, 209, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dzgb7Mpm', '6343294'), + (23923, 209, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dzgb7Mpm', '6347034'), + (23924, 209, 2177, 'attending', '2023-08-04 02:01:28', '2025-12-17 19:46:55', 'dzgb7Mpm', '6347053'), + (23925, 209, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dzgb7Mpm', '6347056'), + (23926, 209, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dzgb7Mpm', '6353830'), + (23927, 209, 2186, 'attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dzgb7Mpm', '6353831'), + (23928, 209, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dzgb7Mpm', '6357867'), + (23929, 209, 2190, 'attending', '2023-08-07 04:28:01', '2025-12-17 19:46:55', 'dzgb7Mpm', '6357892'), + (23930, 209, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dzgb7Mpm', '6358652'), + (23931, 209, 2195, 'attending', '2023-08-20 23:18:10', '2025-12-17 19:46:55', 'dzgb7Mpm', '6359397'), + (23932, 209, 2196, 'attending', '2023-09-03 16:26:15', '2025-12-17 19:46:56', 'dzgb7Mpm', '6359398'), + (23933, 209, 2197, 'attending', '2023-09-15 14:07:11', '2025-12-17 19:46:44', 'dzgb7Mpm', '6359399'), + (23934, 209, 2198, 'attending', '2023-09-18 03:38:30', '2025-12-17 19:46:45', 'dzgb7Mpm', '6359400'), + (23935, 209, 2199, 'attending', '2023-08-08 01:44:39', '2025-12-17 19:46:55', 'dzgb7Mpm', '6359849'), + (23936, 209, 2200, 'attending', '2023-08-10 17:00:02', '2025-12-17 19:46:55', 'dzgb7Mpm', '6359850'), + (23937, 209, 2202, 'attending', '2023-08-06 19:02:11', '2025-12-17 19:46:54', 'dzgb7Mpm', '6360509'), + (23938, 209, 2204, 'attending', '2023-08-14 22:44:51', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361542'), + (23939, 209, 2206, 'attending', '2023-08-08 14:47:18', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361659'), + (23940, 209, 2208, 'maybe', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dzgb7Mpm', '6361709'), + (23941, 209, 2209, 'maybe', '2023-08-20 23:17:53', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361710'), + (23942, 209, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361711'), + (23943, 209, 2211, 'attending', '2023-08-14 02:29:38', '2025-12-17 19:46:55', 'dzgb7Mpm', '6361712'), + (23944, 209, 2212, 'attending', '2023-09-18 03:39:19', '2025-12-17 19:46:45', 'dzgb7Mpm', '6361713'), + (23945, 209, 2214, 'attending', '2023-08-10 22:18:16', '2025-12-17 19:46:55', 'dzgb7Mpm', '6363218'), + (23946, 209, 2215, 'attending', '2023-08-11 22:04:22', '2025-12-17 19:46:55', 'dzgb7Mpm', '6363479'), + (23947, 209, 2217, 'attending', '2023-08-14 02:28:51', '2025-12-17 19:46:55', 'dzgb7Mpm', '6364333'), + (23948, 209, 2220, 'attending', '2023-09-04 22:52:10', '2025-12-17 19:46:56', 'dzgb7Mpm', '6367310'), + (23949, 209, 2225, 'attending', '2023-08-29 05:08:54', '2025-12-17 19:46:55', 'dzgb7Mpm', '6368434'), + (23950, 209, 2227, 'attending', '2023-08-20 23:17:42', '2025-12-17 19:46:55', 'dzgb7Mpm', '6370581'), + (23951, 209, 2232, 'attending', '2023-08-23 19:24:36', '2025-12-17 19:46:55', 'dzgb7Mpm', '6374818'), + (23952, 209, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dzgb7Mpm', '6382573'), + (23953, 209, 2239, 'maybe', '2023-09-01 00:37:17', '2025-12-17 19:46:56', 'dzgb7Mpm', '6387592'), + (23954, 209, 2240, 'attending', '2023-09-05 02:42:39', '2025-12-17 19:46:56', 'dzgb7Mpm', '6388603'), + (23955, 209, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dzgb7Mpm', '6388604'), + (23956, 209, 2242, 'maybe', '2023-09-21 21:45:07', '2025-12-17 19:46:45', 'dzgb7Mpm', '6388606'), + (23957, 209, 2244, 'attending', '2023-09-05 02:42:34', '2025-12-17 19:46:44', 'dzgb7Mpm', '6393700'), + (23958, 209, 2245, 'attending', '2023-09-18 03:39:05', '2025-12-17 19:46:45', 'dzgb7Mpm', '6393703'), + (23959, 209, 2247, 'attending', '2023-09-05 19:25:24', '2025-12-17 19:46:56', 'dzgb7Mpm', '6394628'), + (23960, 209, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dzgb7Mpm', '6394629'), + (23961, 209, 2249, 'attending', '2023-09-18 03:38:27', '2025-12-17 19:46:45', 'dzgb7Mpm', '6394630'), + (23962, 209, 2250, 'maybe', '2023-09-18 03:39:14', '2025-12-17 19:46:45', 'dzgb7Mpm', '6394631'), + (23963, 209, 2252, 'attending', '2023-09-18 03:38:58', '2025-12-17 19:46:45', 'dzgb7Mpm', '6396837'), + (23964, 209, 2253, 'attending', '2023-09-27 09:09:07', '2025-12-17 19:46:45', 'dzgb7Mpm', '6401811'), + (23965, 209, 2258, 'attending', '2023-09-21 08:13:43', '2025-12-17 19:46:45', 'dzgb7Mpm', '6419492'), + (23966, 209, 2261, 'attending', '2023-09-27 06:46:08', '2025-12-17 19:46:45', 'dzgb7Mpm', '6427422'), + (23967, 209, 2262, 'attending', '2023-10-01 17:47:11', '2025-12-17 19:46:45', 'dzgb7Mpm', '6427423'), + (23968, 209, 2265, 'attending', '2023-10-01 17:49:00', '2025-12-17 19:46:45', 'dzgb7Mpm', '6439625'), + (23969, 209, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dzgb7Mpm', '6440863'), + (23970, 209, 2269, 'attending', '2023-10-05 20:41:57', '2025-12-17 19:46:45', 'dzgb7Mpm', '6442978'), + (23971, 209, 2271, 'attending', '2023-10-03 00:44:09', '2025-12-17 19:46:45', 'dzgb7Mpm', '6445375'), + (23972, 209, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dzgb7Mpm', '6445440'), + (23973, 209, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dzgb7Mpm', '6453951'), + (23974, 209, 2279, 'attending', '2023-10-10 13:57:34', '2025-12-17 19:46:46', 'dzgb7Mpm', '6455460'), + (23975, 209, 2283, 'maybe', '2023-10-10 14:07:08', '2025-12-17 19:46:46', 'dzgb7Mpm', '6455503'), + (23976, 209, 2284, 'maybe', '2023-10-10 14:02:28', '2025-12-17 19:46:46', 'dzgb7Mpm', '6460928'), + (23977, 209, 2285, 'attending', '2023-10-10 14:07:35', '2025-12-17 19:46:47', 'dzgb7Mpm', '6460929'), + (23978, 209, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dzgb7Mpm', '6461696'), + (23979, 209, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dzgb7Mpm', '6462129'), + (23980, 209, 2290, 'attending', '2023-10-11 09:03:41', '2025-12-17 19:46:46', 'dzgb7Mpm', '6462214'), + (23981, 209, 2291, 'not_attending', '2023-10-15 20:16:14', '2025-12-17 19:46:46', 'dzgb7Mpm', '6462215'), + (23982, 209, 2292, 'attending', '2023-10-31 20:17:17', '2025-12-17 19:46:47', 'dzgb7Mpm', '6462216'), + (23983, 209, 2293, 'attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dzgb7Mpm', '6463218'), + (23984, 209, 2296, 'attending', '2023-10-23 12:20:40', '2025-12-17 19:46:47', 'dzgb7Mpm', '6468393'), + (23985, 209, 2299, 'attending', '2023-10-15 20:16:21', '2025-12-17 19:46:46', 'dzgb7Mpm', '6472181'), + (23986, 209, 2300, 'attending', '2023-10-23 12:22:27', '2025-12-17 19:46:47', 'dzgb7Mpm', '6472185'), + (23987, 209, 2302, 'attending', '2023-10-22 22:52:01', '2025-12-17 19:46:46', 'dzgb7Mpm', '6482535'), + (23988, 209, 2303, 'attending', '2023-10-23 12:20:55', '2025-12-17 19:46:47', 'dzgb7Mpm', '6482691'), + (23989, 209, 2304, 'attending', '2023-10-31 20:18:28', '2025-12-17 19:46:47', 'dzgb7Mpm', '6482693'), + (23990, 209, 2306, 'attending', '2023-11-14 00:58:18', '2025-12-17 19:46:47', 'dzgb7Mpm', '6484200'), + (23991, 209, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dzgb7Mpm', '6484680'), + (23992, 209, 2310, 'attending', '2023-11-11 16:13:20', '2025-12-17 19:46:47', 'dzgb7Mpm', '6487709'), + (23993, 209, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dzgb7Mpm', '6507741'), + (23994, 209, 2322, 'attending', '2023-11-12 07:36:19', '2025-12-17 19:46:48', 'dzgb7Mpm', '6514659'), + (23995, 209, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dzgb7Mpm', '6514660'), + (23996, 209, 2324, 'not_attending', '2023-12-02 19:25:28', '2025-12-17 19:46:49', 'dzgb7Mpm', '6514662'), + (23997, 209, 2325, 'attending', '2023-12-12 02:48:47', '2025-12-17 19:46:36', 'dzgb7Mpm', '6514663'), + (23998, 209, 2329, 'attending', '2023-11-02 15:52:14', '2025-12-17 19:46:47', 'dzgb7Mpm', '6517138'), + (23999, 209, 2333, 'maybe', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dzgb7Mpm', '6519103'), + (24000, 209, 2335, 'attending', '2023-11-11 00:54:08', '2025-12-17 19:46:47', 'dzgb7Mpm', '6534890'), + (24001, 209, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dzgb7Mpm', '6535681'), + (24002, 209, 2338, 'maybe', '2023-11-12 07:36:44', '2025-12-17 19:46:48', 'dzgb7Mpm', '6538868'), + (24003, 209, 2345, 'attending', '2023-11-21 07:26:45', '2025-12-17 19:46:48', 'dzgb7Mpm', '6582414'), + (24004, 209, 2350, 'attending', '2023-11-21 07:26:07', '2025-12-17 19:46:48', 'dzgb7Mpm', '6584352'), + (24005, 209, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dzgb7Mpm', '6584747'), + (24006, 209, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dzgb7Mpm', '6587097'), + (24007, 209, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dzgb7Mpm', '6609022'), + (24008, 209, 2366, 'attending', '2023-12-08 22:15:25', '2025-12-17 19:46:36', 'dzgb7Mpm', '6615304'), + (24009, 209, 2373, 'attending', '2024-01-14 18:10:29', '2025-12-17 19:46:38', 'dzgb7Mpm', '6632678'), + (24010, 209, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dzgb7Mpm', '6632757'), + (24011, 209, 2375, 'attending', '2023-12-20 20:49:34', '2025-12-17 19:46:36', 'dzgb7Mpm', '6634548'), + (24012, 209, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dzgb7Mpm', '6644187'), + (24013, 209, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dzgb7Mpm', '6648951'), + (24014, 209, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dzgb7Mpm', '6648952'), + (24015, 209, 2388, 'attending', '2024-01-06 08:30:53', '2025-12-17 19:46:37', 'dzgb7Mpm', '6649244'), + (24016, 209, 2391, 'attending', '2024-01-12 08:37:12', '2025-12-17 19:46:37', 'dzgb7Mpm', '6654138'), + (24017, 209, 2392, 'attending', '2024-01-11 23:25:03', '2025-12-17 19:46:37', 'dzgb7Mpm', '6654412'), + (24018, 209, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dzgb7Mpm', '6655401'), + (24019, 209, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dzgb7Mpm', '6661585'), + (24020, 209, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dzgb7Mpm', '6661588'), + (24021, 209, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dzgb7Mpm', '6661589'), + (24022, 209, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dzgb7Mpm', '6699906'), + (24023, 209, 2408, 'attending', '2024-01-18 03:09:43', '2025-12-17 19:46:40', 'dzgb7Mpm', '6699907'), + (24024, 209, 2409, 'attending', '2024-01-18 03:09:46', '2025-12-17 19:46:41', 'dzgb7Mpm', '6699909'), + (24025, 209, 2410, 'attending', '2024-01-18 03:09:49', '2025-12-17 19:46:41', 'dzgb7Mpm', '6699911'), + (24026, 209, 2411, 'attending', '2024-02-06 01:27:58', '2025-12-17 19:46:41', 'dzgb7Mpm', '6699913'), + (24027, 209, 2412, 'maybe', '2024-02-12 19:17:17', '2025-12-17 19:46:43', 'dzgb7Mpm', '6700717'), + (24028, 209, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dzgb7Mpm', '6701109'), + (24029, 209, 2424, 'attending', '2024-01-19 03:07:24', '2025-12-17 19:46:40', 'dzgb7Mpm', '6705143'), + (24030, 209, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dzgb7Mpm', '6705219'), + (24031, 209, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dzgb7Mpm', '6710153'), + (24032, 209, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dzgb7Mpm', '6711552'), + (24033, 209, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dzgb7Mpm', '6711553'), + (24034, 209, 2431, 'maybe', '2024-01-30 00:09:19', '2025-12-17 19:46:41', 'dzgb7Mpm', '6712394'), + (24035, 209, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dzgb7Mpm', '6722688'), + (24036, 209, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dzgb7Mpm', '6730620'), + (24037, 209, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dzgb7Mpm', '6730642'), + (24038, 209, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dzgb7Mpm', '6740364'), + (24039, 209, 2457, 'attending', '2024-02-08 17:31:26', '2025-12-17 19:46:41', 'dzgb7Mpm', '6742221'), + (24040, 209, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dzgb7Mpm', '6743829'), + (24041, 209, 2462, 'attending', '2024-02-12 19:16:35', '2025-12-17 19:46:41', 'dzgb7Mpm', '6744701'), + (24042, 209, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dzgb7Mpm', '7030380'), + (24043, 209, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'dzgb7Mpm', '7033677'), + (24044, 209, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dzgb7Mpm', '7035415'), + (24045, 209, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dzgb7Mpm', '7044715'), + (24046, 209, 2484, 'attending', '2024-02-26 03:10:27', '2025-12-17 19:46:43', 'dzgb7Mpm', '7046836'), + (24047, 209, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dzgb7Mpm', '7050318'), + (24048, 209, 2491, 'attending', '2024-02-28 02:25:37', '2025-12-17 19:46:44', 'dzgb7Mpm', '7050319'), + (24049, 209, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dzgb7Mpm', '7050322'), + (24050, 209, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dzgb7Mpm', '7057804'), + (24051, 209, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dzgb7Mpm', '7059866'), + (24052, 209, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dzgb7Mpm', '7072824'), + (24053, 209, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dzgb7Mpm', '7074348'), + (24054, 209, 2513, 'maybe', '2024-04-15 15:08:23', '2025-12-17 19:46:34', 'dzgb7Mpm', '7074353'), + (24055, 209, 2522, 'attending', '2024-07-18 21:02:32', '2025-12-17 19:46:30', 'dzgb7Mpm', '7074362'), + (24056, 209, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dzgb7Mpm', '7074364'), + (24057, 209, 2537, 'maybe', '2024-03-23 02:52:22', '2025-12-17 19:46:33', 'dzgb7Mpm', '7085484'), + (24058, 209, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dzgb7Mpm', '7089267'), + (24059, 209, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dzgb7Mpm', '7098747'), + (24060, 209, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dzgb7Mpm', '7113468'), + (24061, 209, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dzgb7Mpm', '7114856'), + (24062, 209, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dzgb7Mpm', '7114951'), + (24063, 209, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dzgb7Mpm', '7114955'), + (24064, 209, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dzgb7Mpm', '7114956'), + (24065, 209, 2558, 'maybe', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dzgb7Mpm', '7114957'), + (24066, 209, 2566, 'attending', '2024-04-15 15:07:50', '2025-12-17 19:46:34', 'dzgb7Mpm', '7140664'), + (24067, 209, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dzgb7Mpm', '7153615'), + (24068, 209, 2570, 'attending', '2024-04-07 19:07:21', '2025-12-17 19:46:33', 'dzgb7Mpm', '7159187'), + (24069, 209, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dzgb7Mpm', '7159484'), + (24070, 209, 2573, 'attending', '2024-04-14 02:10:01', '2025-12-17 19:46:34', 'dzgb7Mpm', '7160612'), + (24071, 209, 2581, 'attending', '2024-04-18 03:10:01', '2025-12-17 19:46:34', 'dzgb7Mpm', '7169048'), + (24072, 209, 2585, 'attending', '2024-04-15 15:11:49', '2025-12-17 19:46:34', 'dzgb7Mpm', '7175828'), + (24073, 209, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzgb7Mpm', '7178446'), + (24074, 209, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dzgb7Mpm', '7220467'), + (24075, 209, 2603, 'attending', '2024-05-13 04:51:00', '2025-12-17 19:46:35', 'dzgb7Mpm', '7225669'), + (24076, 209, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dzgb7Mpm', '7240354'), + (24077, 209, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dzgb7Mpm', '7251633'), + (24078, 209, 2623, 'attending', '2024-05-11 20:13:01', '2025-12-17 19:46:35', 'dzgb7Mpm', '7263048'), + (24079, 209, 2626, 'not_attending', '2024-05-13 04:51:23', '2025-12-17 19:46:35', 'dzgb7Mpm', '7264723'), + (24080, 209, 2627, 'attending', '2024-05-25 21:44:05', '2025-12-17 19:46:35', 'dzgb7Mpm', '7264724'), + (24081, 209, 2628, 'attending', '2024-05-30 18:50:51', '2025-12-17 19:46:36', 'dzgb7Mpm', '7264725'), + (24082, 209, 2629, 'attending', '2024-06-08 04:09:05', '2025-12-17 19:46:28', 'dzgb7Mpm', '7264726'), + (24083, 209, 2636, 'maybe', '2024-05-19 15:29:17', '2025-12-17 19:46:35', 'dzgb7Mpm', '7270323'), + (24084, 209, 2637, 'maybe', '2024-05-19 15:29:19', '2025-12-17 19:46:35', 'dzgb7Mpm', '7270324'), + (24085, 209, 2644, 'maybe', '2024-05-19 15:25:09', '2025-12-17 19:46:35', 'dzgb7Mpm', '7279039'), + (24086, 209, 2649, 'maybe', '2024-05-27 20:34:59', '2025-12-17 19:46:35', 'dzgb7Mpm', '7282950'), + (24087, 209, 2656, 'attending', '2024-05-30 18:50:29', '2025-12-17 19:46:36', 'dzgb7Mpm', '7291301'), + (24088, 209, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dzgb7Mpm', '7302674'), + (24089, 209, 2665, 'attending', '2024-06-06 20:18:20', '2025-12-17 19:46:36', 'dzgb7Mpm', '7306370'), + (24090, 209, 2667, 'attending', '2024-06-05 23:14:27', '2025-12-17 19:46:36', 'dzgb7Mpm', '7307776'), + (24091, 209, 2675, 'attending', '2024-08-04 16:44:53', '2025-12-17 19:46:31', 'dzgb7Mpm', '7319481'), + (24092, 209, 2678, 'attending', '2024-06-15 05:51:53', '2025-12-17 19:46:28', 'dzgb7Mpm', '7319489'), + (24093, 209, 2679, 'not_attending', '2024-06-17 11:29:54', '2025-12-17 19:46:29', 'dzgb7Mpm', '7319490'), + (24094, 209, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'dzgb7Mpm', '7324019'), + (24095, 209, 2688, 'attending', '2024-06-15 05:52:17', '2025-12-17 19:46:29', 'dzgb7Mpm', '7324073'), + (24096, 209, 2689, 'attending', '2024-06-15 05:52:19', '2025-12-17 19:46:29', 'dzgb7Mpm', '7324074'), + (24097, 209, 2690, 'attending', '2024-06-17 11:30:59', '2025-12-17 19:46:30', 'dzgb7Mpm', '7324075'), + (24098, 209, 2691, 'attending', '2024-06-17 11:31:01', '2025-12-17 19:46:30', 'dzgb7Mpm', '7324076'), + (24099, 209, 2692, 'maybe', '2024-06-17 11:31:06', '2025-12-17 19:46:30', 'dzgb7Mpm', '7324077'), + (24100, 209, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dzgb7Mpm', '7324078'), + (24101, 209, 2694, 'attending', '2024-08-01 21:26:18', '2025-12-17 19:46:31', 'dzgb7Mpm', '7324079'), + (24102, 209, 2695, 'maybe', '2024-08-01 21:26:23', '2025-12-17 19:46:31', 'dzgb7Mpm', '7324080'), + (24103, 209, 2696, 'attending', '2024-08-01 21:26:25', '2025-12-17 19:46:32', 'dzgb7Mpm', '7324081'), + (24104, 209, 2697, 'attending', '2024-08-30 17:37:38', '2025-12-17 19:46:32', 'dzgb7Mpm', '7324082'), + (24105, 209, 2698, 'not_attending', '2024-09-03 17:37:52', '2025-12-17 19:46:24', 'dzgb7Mpm', '7324083'), + (24106, 209, 2705, 'attending', '2024-06-13 13:28:13', '2025-12-17 19:46:29', 'dzgb7Mpm', '7324944'), + (24107, 209, 2706, 'attending', '2024-06-17 23:57:30', '2025-12-17 19:46:28', 'dzgb7Mpm', '7324947'), + (24108, 209, 2722, 'attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dzgb7Mpm', '7331457'), + (24109, 209, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'dzgb7Mpm', '7335193'), + (24110, 209, 2731, 'attending', '2024-06-25 17:31:38', '2025-12-17 19:46:29', 'dzgb7Mpm', '7335303'), + (24111, 209, 2742, 'attending', '2024-07-03 22:39:11', '2025-12-17 19:46:29', 'dzgb7Mpm', '7345167'), + (24112, 209, 2743, 'attending', '2024-07-05 22:31:44', '2025-12-17 19:46:29', 'dzgb7Mpm', '7345688'), + (24113, 209, 2749, 'attending', '2024-07-07 18:42:30', '2025-12-17 19:46:29', 'dzgb7Mpm', '7355496'), + (24114, 209, 2754, 'attending', '2024-07-14 22:59:55', '2025-12-17 19:46:30', 'dzgb7Mpm', '7356752'), + (24115, 209, 2755, 'attending', '2024-07-10 22:19:21', '2025-12-17 19:46:29', 'dzgb7Mpm', '7357808'), + (24116, 209, 2757, 'attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dzgb7Mpm', '7358733'), + (24117, 209, 2763, 'attending', '2024-07-17 01:29:11', '2025-12-17 19:46:30', 'dzgb7Mpm', '7363594'), + (24118, 209, 2764, 'attending', '2024-07-14 23:08:18', '2025-12-17 19:46:30', 'dzgb7Mpm', '7363595'), + (24119, 209, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dzgb7Mpm', '7363643'), + (24120, 209, 2767, 'attending', '2024-07-17 01:29:08', '2025-12-17 19:46:30', 'dzgb7Mpm', '7364726'), + (24121, 209, 2768, 'attending', '2024-07-18 00:36:40', '2025-12-17 19:46:30', 'dzgb7Mpm', '7366031'), + (24122, 209, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dzgb7Mpm', '7368606'), + (24123, 209, 2776, 'maybe', '2024-07-25 21:05:43', '2025-12-17 19:46:30', 'dzgb7Mpm', '7370690'), + (24124, 209, 2783, 'attending', '2024-07-29 22:07:08', '2025-12-17 19:46:31', 'dzgb7Mpm', '7379699'), + (24125, 209, 2801, 'attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dzgb7Mpm', '7397462'), + (24126, 209, 2808, 'attending', '2024-09-01 09:29:20', '2025-12-17 19:46:32', 'dzgb7Mpm', '7412860'), + (24127, 209, 2809, 'attending', '2024-08-30 17:37:46', '2025-12-17 19:46:32', 'dzgb7Mpm', '7414808'), + (24128, 209, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dzgb7Mpm', '7424275'), + (24129, 209, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dzgb7Mpm', '7424276'), + (24130, 209, 2824, 'maybe', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dzgb7Mpm', '7432751'), + (24131, 209, 2825, 'maybe', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dzgb7Mpm', '7432752'), + (24132, 209, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dzgb7Mpm', '7432753'), + (24133, 209, 2827, 'maybe', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432754'), + (24134, 209, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432755'), + (24135, 209, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432756'), + (24136, 209, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432758'), + (24137, 209, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dzgb7Mpm', '7432759'), + (24138, 209, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dzgb7Mpm', '7433834'), + (24139, 209, 2847, 'not_attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', 'dzgb7Mpm', '7452299'), + (24140, 209, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dzgb7Mpm', '7470197'), + (24141, 209, 2870, 'maybe', '2024-10-05 17:31:08', '2025-12-17 19:46:26', 'dzgb7Mpm', '7475068'), + (24142, 209, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dzgb7Mpm', '7685613'), + (24143, 209, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dzgb7Mpm', '7688194'), + (24144, 209, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dzgb7Mpm', '7688196'), + (24145, 209, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dzgb7Mpm', '7688289'), + (24146, 209, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dzgb7Mpm', '7692763'), + (24147, 209, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dzgb7Mpm', '7697552'), + (24148, 209, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dzgb7Mpm', '7699878'), + (24149, 209, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dzgb7Mpm', '7704043'), + (24150, 209, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dzgb7Mpm', '7712467'), + (24151, 209, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dzgb7Mpm', '7713585'), + (24152, 209, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dzgb7Mpm', '7713586'), + (24153, 209, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dzgb7Mpm', '7738518'), + (24154, 209, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dzgb7Mpm', '7750636'), + (24155, 209, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dzgb7Mpm', '7796540'), + (24156, 209, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dzgb7Mpm', '7796541'), + (24157, 209, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dzgb7Mpm', '7796542'), + (24158, 210, 884, 'not_attending', '2021-08-13 22:24:14', '2025-12-17 19:47:42', 'AQ91XjxA', '4210314'), + (24159, 210, 903, 'attending', '2021-08-13 21:25:40', '2025-12-17 19:47:42', 'AQ91XjxA', '4240320'), + (24160, 210, 926, 'attending', '2021-08-18 02:48:22', '2025-12-17 19:47:42', 'AQ91XjxA', '4297211'), + (24161, 210, 948, 'attending', '2021-08-12 22:28:23', '2025-12-17 19:47:41', 'AQ91XjxA', '4315714'), + (24162, 210, 971, 'not_attending', '2021-09-09 03:09:19', '2025-12-17 19:47:43', 'AQ91XjxA', '4356801'), + (24163, 210, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'AQ91XjxA', '4358025'), + (24164, 210, 973, 'not_attending', '2021-08-21 20:37:52', '2025-12-17 19:47:42', 'AQ91XjxA', '4366186'), + (24165, 210, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'AQ91XjxA', '4366187'), + (24166, 210, 985, 'attending', '2021-08-21 17:04:47', '2025-12-17 19:47:42', 'AQ91XjxA', '4391748'), + (24167, 210, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'AQ91XjxA', '4402823'), + (24168, 210, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'AQ91XjxA', '4420735'), + (24169, 210, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'AQ91XjxA', '4420738'), + (24170, 210, 992, 'attending', '2021-09-18 21:54:41', '2025-12-17 19:47:33', 'AQ91XjxA', '4420739'), + (24171, 210, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'AQ91XjxA', '4420741'), + (24172, 210, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'AQ91XjxA', '4420744'), + (24173, 210, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'AQ91XjxA', '4420747'), + (24174, 210, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'AQ91XjxA', '4420748'), + (24175, 210, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'AQ91XjxA', '4420749'), + (24176, 210, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AQ91XjxA', '4461883'), + (24177, 210, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AQ91XjxA', '4508342'), + (24178, 210, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AQ91XjxA', '4568602'), + (24179, 210, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AQ91XjxA', '6045684'), + (24180, 211, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', '40k5NaEA', '4420739'), + (24181, 211, 993, 'not_attending', '2021-09-27 00:25:15', '2025-12-17 19:47:34', '40k5NaEA', '4420741'), + (24182, 211, 994, 'attending', '2021-10-02 21:43:05', '2025-12-17 19:47:34', '40k5NaEA', '4420742'), + (24183, 211, 995, 'attending', '2021-10-04 19:55:26', '2025-12-17 19:47:34', '40k5NaEA', '4420744'), + (24184, 211, 996, 'attending', '2021-10-10 16:54:22', '2025-12-17 19:47:35', '40k5NaEA', '4420747'), + (24185, 211, 997, 'not_attending', '2021-10-23 20:23:29', '2025-12-17 19:47:35', '40k5NaEA', '4420748'), + (24186, 211, 998, 'not_attending', '2021-10-29 14:14:52', '2025-12-17 19:47:36', '40k5NaEA', '4420749'), + (24187, 211, 1005, 'attending', '2021-09-17 03:45:11', '2025-12-17 19:47:34', '40k5NaEA', '4438807'), + (24188, 211, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '40k5NaEA', '4508342'), + (24189, 211, 1070, 'attending', '2021-09-30 22:39:38', '2025-12-17 19:47:34', '40k5NaEA', '4512562'), + (24190, 211, 1078, 'attending', '2021-10-07 17:15:05', '2025-12-17 19:47:34', '40k5NaEA', '4541281'), + (24191, 211, 1086, 'attending', '2021-10-13 19:21:24', '2025-12-17 19:47:34', '40k5NaEA', '4568602'), + (24192, 211, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '40k5NaEA', '4572153'), + (24193, 211, 1093, 'not_attending', '2021-10-22 15:44:30', '2025-12-17 19:47:35', '40k5NaEA', '4585962'), + (24194, 211, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '40k5NaEA', '4596356'), + (24195, 211, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '40k5NaEA', '4598860'), + (24196, 211, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '40k5NaEA', '4598861'), + (24197, 211, 1099, 'not_attending', '2021-11-10 20:17:36', '2025-12-17 19:47:36', '40k5NaEA', '4602797'), + (24198, 211, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '40k5NaEA', '4637896'), + (24199, 211, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '40k5NaEA', '4642994'), + (24200, 211, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '40k5NaEA', '4642995'), + (24201, 211, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '40k5NaEA', '4642996'), + (24202, 211, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '40k5NaEA', '4642997'), + (24203, 211, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '40k5NaEA', '4645687'), + (24204, 211, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '40k5NaEA', '4645698'), + (24205, 211, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '40k5NaEA', '4645704'), + (24206, 211, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '40k5NaEA', '4645705'), + (24207, 211, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '40k5NaEA', '4668385'), + (24208, 211, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '40k5NaEA', '4694407'), + (24209, 211, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '40k5NaEA', '4736497'), + (24210, 211, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '40k5NaEA', '4736499'), + (24211, 211, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '40k5NaEA', '4736500'), + (24212, 211, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '40k5NaEA', '4736503'), + (24213, 211, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '40k5NaEA', '4736504'), + (24214, 211, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '40k5NaEA', '4746789'), + (24215, 211, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '40k5NaEA', '4753929'), + (24216, 211, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '40k5NaEA', '5038850'), + (24217, 211, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '40k5NaEA', '5045826'), + (24218, 211, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '40k5NaEA', '5132533'), + (24219, 211, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '40k5NaEA', '5186582'), + (24220, 211, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '40k5NaEA', '5186583'), + (24221, 211, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '40k5NaEA', '5186585'), + (24222, 211, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '40k5NaEA', '5190437'), + (24223, 211, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '40k5NaEA', '5215989'), + (24224, 211, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40k5NaEA', '6045684'), + (24225, 212, 650, 'maybe', '2022-03-16 23:19:39', '2025-12-17 19:47:44', 'dVbr7epd', '3539928'), + (24226, 212, 699, 'attending', '2022-03-16 23:19:24', '2025-12-17 19:47:44', 'dVbr7epd', '3572241'), + (24227, 212, 712, 'attending', '2022-03-16 23:19:12', '2025-12-17 19:47:44', 'dVbr7epd', '3604056'), + (24228, 212, 1240, 'maybe', '2022-03-16 09:57:12', '2025-12-17 19:47:33', 'dVbr7epd', '5052239'), + (24229, 212, 1259, 'attending', '2022-03-14 17:48:24', '2025-12-17 19:47:33', 'dVbr7epd', '5132533'), + (24230, 212, 1264, 'maybe', '2022-03-15 11:41:09', '2025-12-17 19:47:25', 'dVbr7epd', '5160281'), + (24231, 212, 1266, 'maybe', '2022-03-14 17:47:59', '2025-12-17 19:47:33', 'dVbr7epd', '5166407'), + (24232, 212, 1268, 'attending', '2022-03-13 23:22:05', '2025-12-17 19:47:33', 'dVbr7epd', '5176296'), + (24233, 212, 1270, 'attending', '2022-03-20 00:28:47', '2025-12-17 19:47:25', 'dVbr7epd', '5181277'), + (24234, 212, 1271, 'attending', '2022-03-15 11:40:11', '2025-12-17 19:47:25', 'dVbr7epd', '5181648'), + (24235, 212, 1272, 'maybe', '2022-03-16 22:18:08', '2025-12-17 19:47:25', 'dVbr7epd', '5186582'), + (24236, 212, 1273, 'attending', '2022-03-20 22:10:49', '2025-12-17 19:47:25', 'dVbr7epd', '5186583'), + (24237, 212, 1274, 'maybe', '2022-04-02 17:49:22', '2025-12-17 19:47:26', 'dVbr7epd', '5186585'), + (24238, 212, 1276, 'maybe', '2022-03-26 16:09:42', '2025-12-17 19:47:25', 'dVbr7epd', '5186820'), + (24239, 212, 1277, 'maybe', '2022-03-16 00:48:30', '2025-12-17 19:47:25', 'dVbr7epd', '5186865'), + (24240, 212, 1279, 'maybe', '2022-03-16 09:44:42', '2025-12-17 19:47:25', 'dVbr7epd', '5187212'), + (24241, 212, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVbr7epd', '5190437'), + (24242, 212, 1282, 'attending', '2022-03-19 13:57:35', '2025-12-17 19:47:25', 'dVbr7epd', '5191241'), + (24243, 212, 1284, 'maybe', '2022-04-02 17:45:41', '2025-12-17 19:47:27', 'dVbr7epd', '5195095'), + (24244, 212, 1289, 'attending', '2022-03-23 19:17:59', '2025-12-17 19:47:25', 'dVbr7epd', '5200190'), + (24245, 212, 1290, 'attending', '2022-03-23 19:18:09', '2025-12-17 19:47:25', 'dVbr7epd', '5200196'), + (24246, 212, 1292, 'attending', '2022-03-28 16:46:55', '2025-12-17 19:47:25', 'dVbr7epd', '5214043'), + (24247, 212, 1293, 'maybe', '2022-03-27 20:57:06', '2025-12-17 19:47:27', 'dVbr7epd', '5214641'), + (24248, 212, 1294, 'attending', '2022-04-02 09:19:17', '2025-12-17 19:47:26', 'dVbr7epd', '5214686'), + (24249, 212, 1296, 'maybe', '2022-04-02 17:48:40', '2025-12-17 19:47:26', 'dVbr7epd', '5215985'), + (24250, 212, 1297, 'attending', '2022-03-28 16:46:21', '2025-12-17 19:47:25', 'dVbr7epd', '5215989'), + (24251, 212, 1302, 'not_attending', '2022-04-02 17:48:18', '2025-12-17 19:47:27', 'dVbr7epd', '5220867'), + (24252, 212, 1303, 'maybe', '2022-04-07 05:41:37', '2025-12-17 19:47:27', 'dVbr7epd', '5222531'), + (24253, 212, 1304, 'maybe', '2022-04-05 01:33:54', '2025-12-17 19:47:26', 'dVbr7epd', '5223468'), + (24254, 212, 1307, 'maybe', '2022-04-04 22:07:20', '2025-12-17 19:47:26', 'dVbr7epd', '5223686'), + (24255, 212, 1308, 'maybe', '2022-04-13 19:55:52', '2025-12-17 19:47:27', 'dVbr7epd', '5226703'), + (24256, 212, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVbr7epd', '5227432'), + (24257, 212, 1316, 'attending', '2022-04-12 13:23:14', '2025-12-17 19:47:27', 'dVbr7epd', '5237536'), + (24258, 212, 1318, 'maybe', '2022-04-12 13:23:39', '2025-12-17 19:47:27', 'dVbr7epd', '5238343'), + (24259, 212, 1321, 'maybe', '2022-04-12 13:23:48', '2025-12-17 19:47:27', 'dVbr7epd', '5238355'), + (24260, 212, 1322, 'attending', '2022-04-12 13:24:22', '2025-12-17 19:47:27', 'dVbr7epd', '5238356'), + (24261, 212, 1328, 'maybe', '2022-04-12 13:52:40', '2025-12-17 19:47:27', 'dVbr7epd', '5238759'), + (24262, 212, 1332, 'maybe', '2022-04-15 18:19:59', '2025-12-17 19:47:27', 'dVbr7epd', '5243274'), + (24263, 212, 1336, 'attending', '2022-04-17 15:35:29', '2025-12-17 19:47:27', 'dVbr7epd', '5244915'), + (24264, 212, 1337, 'attending', '2022-04-18 19:39:39', '2025-12-17 19:47:27', 'dVbr7epd', '5245036'), + (24265, 212, 1341, 'maybe', '2022-04-17 01:51:23', '2025-12-17 19:47:28', 'dVbr7epd', '5245755'), + (24266, 212, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dVbr7epd', '5247467'), + (24267, 212, 1347, 'maybe', '2022-04-18 19:39:58', '2025-12-17 19:47:27', 'dVbr7epd', '5247537'), + (24268, 212, 1349, 'maybe', '2022-04-21 22:25:36', '2025-12-17 19:47:27', 'dVbr7epd', '5249631'), + (24269, 212, 1351, 'maybe', '2022-04-22 21:12:39', '2025-12-17 19:47:28', 'dVbr7epd', '5251561'), + (24270, 212, 1359, 'maybe', '2022-04-25 09:06:26', '2025-12-17 19:47:28', 'dVbr7epd', '5258360'), + (24271, 212, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dVbr7epd', '5260800'), + (24272, 212, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dVbr7epd', '5269930'), + (24273, 212, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dVbr7epd', '5271448'), + (24274, 212, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dVbr7epd', '5271449'), + (24275, 212, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dVbr7epd', '5276469'), + (24276, 212, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'dVbr7epd', '5277078'), + (24277, 212, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVbr7epd', '5278159'), + (24278, 212, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dVbr7epd', '5363695'), + (24279, 212, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVbr7epd', '5365960'), + (24280, 212, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dVbr7epd', '5368973'), + (24281, 212, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVbr7epd', '5378247'), + (24282, 212, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dVbr7epd', '5389605'), + (24283, 212, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dVbr7epd', '5397265'), + (24284, 212, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dVbr7epd', '5403967'), + (24285, 212, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVbr7epd', '5404786'), + (24286, 212, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVbr7epd', '5405203'), + (24287, 212, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dVbr7epd', '5411699'), + (24288, 212, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dVbr7epd', '5412550'), + (24289, 212, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dVbr7epd', '5415046'), + (24290, 212, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVbr7epd', '5422086'), + (24291, 212, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dVbr7epd', '5422406'), + (24292, 212, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVbr7epd', '5424565'), + (24293, 212, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVbr7epd', '5426882'), + (24294, 212, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dVbr7epd', '5427083'), + (24295, 212, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dVbr7epd', '5441125'), + (24296, 212, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dVbr7epd', '5441126'), + (24297, 212, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVbr7epd', '5441128'), + (24298, 212, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVbr7epd', '5441131'), + (24299, 212, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVbr7epd', '5441132'), + (24300, 212, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVbr7epd', '5446643'), + (24301, 212, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVbr7epd', '5453325'), + (24302, 212, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVbr7epd', '5454516'), + (24303, 212, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVbr7epd', '5454605'), + (24304, 212, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVbr7epd', '5455037'), + (24305, 212, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVbr7epd', '5461278'), + (24306, 212, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVbr7epd', '5469480'), + (24307, 212, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVbr7epd', '5471073'), + (24308, 212, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVbr7epd', '5474663'), + (24309, 212, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVbr7epd', '5482022'), + (24310, 212, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVbr7epd', '5482793'), + (24311, 212, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVbr7epd', '5488912'), + (24312, 212, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVbr7epd', '5492192'), + (24313, 212, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVbr7epd', '5493139'), + (24314, 212, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVbr7epd', '5493200'), + (24315, 212, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVbr7epd', '5502188'), + (24316, 212, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVbr7epd', '5505059'), + (24317, 212, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVbr7epd', '5509055'), + (24318, 212, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVbr7epd', '5512862'), + (24319, 212, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVbr7epd', '5513985'), + (24320, 212, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dVbr7epd', '5519981'), + (24321, 212, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVbr7epd', '5522550'), + (24322, 212, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVbr7epd', '5534683'), + (24323, 212, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVbr7epd', '5537735'), + (24324, 212, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVbr7epd', '5540859'), + (24325, 212, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVbr7epd', '5546619'), + (24326, 212, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVbr7epd', '5555245'), + (24327, 212, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVbr7epd', '5557747'), + (24328, 212, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVbr7epd', '5560255'), + (24329, 212, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVbr7epd', '5562906'), + (24330, 212, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVbr7epd', '5600604'), + (24331, 212, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVbr7epd', '5605544'), + (24332, 212, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'dVbr7epd', '5606737'), + (24333, 212, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVbr7epd', '5630960'), + (24334, 212, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVbr7epd', '5630961'), + (24335, 212, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVbr7epd', '5630962'), + (24336, 212, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVbr7epd', '5630966'), + (24337, 212, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVbr7epd', '5630967'), + (24338, 212, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVbr7epd', '5630968'), + (24339, 212, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVbr7epd', '5635406'), + (24340, 212, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVbr7epd', '5638765'), + (24341, 212, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVbr7epd', '5640097'), + (24342, 212, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVbr7epd', '5640843'), + (24343, 212, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVbr7epd', '5641521'), + (24344, 212, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVbr7epd', '5642818'), + (24345, 212, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVbr7epd', '5652395'), + (24346, 212, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVbr7epd', '5670445'), + (24347, 212, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVbr7epd', '5671637'), + (24348, 212, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVbr7epd', '5672329'), + (24349, 212, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVbr7epd', '5674057'), + (24350, 212, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVbr7epd', '5674060'), + (24351, 212, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVbr7epd', '5677461'), + (24352, 212, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVbr7epd', '5698046'), + (24353, 212, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVbr7epd', '5699760'), + (24354, 212, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVbr7epd', '5741601'), + (24355, 212, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVbr7epd', '5763458'), + (24356, 212, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVbr7epd', '5774172'), + (24357, 212, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVbr7epd', '5818247'), + (24358, 212, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVbr7epd', '5819471'), + (24359, 212, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVbr7epd', '5827739'), + (24360, 212, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVbr7epd', '5844306'), + (24361, 212, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVbr7epd', '5850159'), + (24362, 212, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVbr7epd', '5858999'), + (24363, 212, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVbr7epd', '5871984'), + (24364, 212, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVbr7epd', '5876354'), + (24365, 212, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVbr7epd', '5880939'), + (24366, 212, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dVbr7epd', '5880940'), + (24367, 212, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVbr7epd', '5880942'), + (24368, 212, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVbr7epd', '5880943'), + (24369, 212, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVbr7epd', '5887890'), + (24370, 212, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVbr7epd', '5888598'), + (24371, 212, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVbr7epd', '5893260'), + (24372, 212, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dVbr7epd', '5899826'), + (24373, 212, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dVbr7epd', '5900199'), + (24374, 212, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVbr7epd', '5900200'), + (24375, 212, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVbr7epd', '5900202'), + (24376, 212, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVbr7epd', '5900203'), + (24377, 212, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dVbr7epd', '5901108'), + (24378, 212, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dVbr7epd', '5901126'), + (24379, 212, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dVbr7epd', '5909655'), + (24380, 212, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dVbr7epd', '5910522'), + (24381, 212, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dVbr7epd', '5910526'), + (24382, 212, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dVbr7epd', '5910528'), + (24383, 212, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dVbr7epd', '5916219'), + (24384, 212, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVbr7epd', '5936234'), + (24385, 212, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVbr7epd', '5958351'), + (24386, 212, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVbr7epd', '5959751'), + (24387, 212, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVbr7epd', '5959755'), + (24388, 212, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVbr7epd', '5960055'), + (24389, 212, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVbr7epd', '5961684'), + (24390, 212, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVbr7epd', '5962132'), + (24391, 212, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVbr7epd', '5962133'), + (24392, 212, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVbr7epd', '5962134'), + (24393, 212, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVbr7epd', '5962317'), + (24394, 212, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVbr7epd', '5962318'), + (24395, 212, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVbr7epd', '5965933'), + (24396, 212, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVbr7epd', '5967014'), + (24397, 212, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVbr7epd', '5972815'), + (24398, 212, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVbr7epd', '5974016'), + (24399, 212, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dVbr7epd', '5975052'), + (24400, 212, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dVbr7epd', '5975054'), + (24401, 212, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVbr7epd', '5981515'), + (24402, 212, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVbr7epd', '5993516'), + (24403, 212, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVbr7epd', '5998939'), + (24404, 212, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVbr7epd', '6028191'), + (24405, 212, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVbr7epd', '6040066'), + (24406, 212, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVbr7epd', '6042717'), + (24407, 212, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVbr7epd', '6044838'), + (24408, 212, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVbr7epd', '6044839'), + (24409, 212, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbr7epd', '6045684'), + (24410, 212, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVbr7epd', '6050104'), + (24411, 212, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVbr7epd', '6053195'), + (24412, 212, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVbr7epd', '6053198'), + (24413, 212, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVbr7epd', '6056085'), + (24414, 212, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVbr7epd', '6056916'), + (24415, 212, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVbr7epd', '6059290'), + (24416, 212, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVbr7epd', '6060328'), + (24417, 212, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVbr7epd', '6061037'), + (24418, 212, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVbr7epd', '6061039'), + (24419, 212, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVbr7epd', '6067245'), + (24420, 212, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVbr7epd', '6068094'), + (24421, 212, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVbr7epd', '6068252'), + (24422, 212, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVbr7epd', '6068253'), + (24423, 212, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVbr7epd', '6068254'), + (24424, 212, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVbr7epd', '6068280'), + (24425, 212, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVbr7epd', '6069093'), + (24426, 212, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dVbr7epd', '6072528'), + (24427, 212, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dVbr7epd', '6075556'), + (24428, 212, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVbr7epd', '6079840'), + (24429, 212, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVbr7epd', '6083398'), + (24430, 212, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVbr7epd', '6093504'), + (24431, 212, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVbr7epd', '6097414'), + (24432, 212, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVbr7epd', '6097442'), + (24433, 212, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVbr7epd', '6097684'), + (24434, 212, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVbr7epd', '6098762'), + (24435, 212, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVbr7epd', '6101362'), + (24436, 212, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVbr7epd', '6107314'), + (24437, 213, 406, 'attending', '2021-04-22 15:43:30', '2025-12-17 19:47:44', 'pmbpnwE4', '3236464'), + (24438, 213, 644, 'attending', '2021-04-22 22:45:06', '2025-12-17 19:47:45', 'pmbpnwE4', '3539919'), + (24439, 213, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'pmbpnwE4', '3539920'), + (24440, 213, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'pmbpnwE4', '3539921'), + (24441, 213, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'pmbpnwE4', '3539922'), + (24442, 213, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'pmbpnwE4', '3539923'), + (24443, 213, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'pmbpnwE4', '3583262'), + (24444, 213, 768, 'attending', '2021-04-26 22:35:00', '2025-12-17 19:47:46', 'pmbpnwE4', '3724124'), + (24445, 213, 775, 'attending', '2021-04-22 03:45:41', '2025-12-17 19:47:45', 'pmbpnwE4', '3731062'), + (24446, 213, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'pmbpnwE4', '3793156'), + (24447, 213, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmbpnwE4', '3975311'), + (24448, 213, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbpnwE4', '3994992'), + (24449, 213, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbpnwE4', '6045684'), + (24450, 214, 971, 'attending', '2021-09-08 19:13:55', '2025-12-17 19:47:43', 'dBnl00wd', '4356801'), + (24451, 214, 991, 'attending', '2021-09-08 09:48:38', '2025-12-17 19:47:43', 'dBnl00wd', '4420738'), + (24452, 214, 992, 'not_attending', '2021-09-19 01:31:23', '2025-12-17 19:47:34', 'dBnl00wd', '4420739'), + (24453, 214, 993, 'attending', '2021-09-09 22:57:54', '2025-12-17 19:47:34', 'dBnl00wd', '4420741'), + (24454, 214, 994, 'attending', '2021-10-02 18:13:45', '2025-12-17 19:47:34', 'dBnl00wd', '4420742'), + (24455, 214, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dBnl00wd', '4420744'), + (24456, 214, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dBnl00wd', '4420747'), + (24457, 214, 1004, 'attending', '2021-09-08 09:48:55', '2025-12-17 19:47:43', 'dBnl00wd', '4438804'), + (24458, 214, 1019, 'attending', '2021-09-09 22:57:25', '2025-12-17 19:47:43', 'dBnl00wd', '4450515'), + (24459, 214, 1020, 'maybe', '2021-09-13 14:10:05', '2025-12-17 19:47:43', 'dBnl00wd', '4451787'), + (24460, 214, 1022, 'attending', '2021-09-09 22:57:15', '2025-12-17 19:47:43', 'dBnl00wd', '4458628'), + (24461, 214, 1023, 'not_attending', '2021-09-09 22:55:39', '2025-12-17 19:47:43', 'dBnl00wd', '4461883'), + (24462, 214, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dBnl00wd', '4508342'), + (24463, 214, 1072, 'attending', '2021-10-06 23:24:25', '2025-12-17 19:47:34', 'dBnl00wd', '4516287'), + (24464, 214, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dBnl00wd', '4568602'), + (24465, 214, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dBnl00wd', '6045684'), + (24466, 215, 221, 'attending', '2020-09-15 21:53:55', '2025-12-17 19:47:56', 'GmjM1Vad', '3129265'), + (24467, 215, 311, 'attending', '2020-09-18 15:00:39', '2025-12-17 19:47:56', 'GmjM1Vad', '3186057'), + (24468, 215, 340, 'attending', '2020-09-18 15:00:52', '2025-12-17 19:47:56', 'GmjM1Vad', '3204470'), + (24469, 215, 341, 'maybe', '2020-09-25 20:59:59', '2025-12-17 19:47:52', 'GmjM1Vad', '3204471'), + (24470, 215, 342, 'attending', '2020-10-02 19:37:12', '2025-12-17 19:47:52', 'GmjM1Vad', '3204472'), + (24471, 215, 344, 'maybe', '2020-11-01 17:06:13', '2025-12-17 19:47:53', 'GmjM1Vad', '3206906'), + (24472, 215, 348, 'maybe', '2020-09-27 03:24:59', '2025-12-17 19:47:52', 'GmjM1Vad', '3209159'), + (24473, 215, 362, 'attending', '2020-09-20 16:19:33', '2025-12-17 19:47:52', 'GmjM1Vad', '3214207'), + (24474, 215, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'GmjM1Vad', '3217037'), + (24475, 215, 364, 'maybe', '2020-09-19 16:10:52', '2025-12-17 19:47:56', 'GmjM1Vad', '3217106'), + (24476, 215, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'GmjM1Vad', '3218510'), + (24477, 215, 375, 'maybe', '2020-10-05 02:50:43', '2025-12-17 19:47:52', 'GmjM1Vad', '3222825'), + (24478, 215, 382, 'maybe', '2020-09-27 21:57:48', '2025-12-17 19:47:52', 'GmjM1Vad', '3226873'), + (24479, 215, 385, 'attending', '2020-09-28 23:18:04', '2025-12-17 19:47:52', 'GmjM1Vad', '3228698'), + (24480, 215, 386, 'attending', '2020-10-09 17:04:36', '2025-12-17 19:47:52', 'GmjM1Vad', '3228699'), + (24481, 215, 387, 'not_attending', '2020-10-17 18:27:03', '2025-12-17 19:47:52', 'GmjM1Vad', '3228700'), + (24482, 215, 388, 'attending', '2020-10-24 13:59:21', '2025-12-17 19:47:52', 'GmjM1Vad', '3228701'), + (24483, 215, 390, 'maybe', '2020-10-01 18:19:50', '2025-12-17 19:47:52', 'GmjM1Vad', '3231510'), + (24484, 215, 411, 'maybe', '2020-10-04 22:14:43', '2025-12-17 19:47:52', 'GmjM1Vad', '3236596'), + (24485, 215, 414, 'not_attending', '2020-10-18 20:04:32', '2025-12-17 19:47:52', 'GmjM1Vad', '3237277'), + (24486, 215, 415, 'maybe', '2020-10-12 16:43:09', '2025-12-17 19:47:52', 'GmjM1Vad', '3238044'), + (24487, 215, 416, 'maybe', '2020-10-09 20:39:27', '2025-12-17 19:47:52', 'GmjM1Vad', '3238073'), + (24488, 215, 417, 'maybe', '2020-10-08 19:52:01', '2025-12-17 19:47:52', 'GmjM1Vad', '3238779'), + (24489, 215, 420, 'attending', '2020-10-15 22:54:55', '2025-12-17 19:47:52', 'GmjM1Vad', '3245293'), + (24490, 215, 421, 'maybe', '2020-10-23 22:59:03', '2025-12-17 19:47:52', 'GmjM1Vad', '3245294'), + (24491, 215, 422, 'maybe', '2020-10-29 22:10:31', '2025-12-17 19:47:53', 'GmjM1Vad', '3245295'), + (24492, 215, 423, 'maybe', '2020-11-05 23:56:00', '2025-12-17 19:47:53', 'GmjM1Vad', '3245296'), + (24493, 215, 424, 'maybe', '2020-10-12 01:12:00', '2025-12-17 19:47:52', 'GmjM1Vad', '3245751'), + (24494, 215, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GmjM1Vad', '3250232'), + (24495, 215, 428, 'maybe', '2020-10-26 20:03:30', '2025-12-17 19:47:53', 'GmjM1Vad', '3250332'), + (24496, 215, 438, 'maybe', '2020-10-31 20:34:10', '2025-12-17 19:47:53', 'GmjM1Vad', '3256163'), + (24497, 215, 439, 'maybe', '2020-10-28 18:26:17', '2025-12-17 19:47:53', 'GmjM1Vad', '3256164'), + (24498, 215, 440, 'maybe', '2020-10-18 16:39:59', '2025-12-17 19:47:53', 'GmjM1Vad', '3256168'), + (24499, 215, 441, 'maybe', '2020-11-14 16:17:42', '2025-12-17 19:47:54', 'GmjM1Vad', '3256169'), + (24500, 215, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GmjM1Vad', '3263578'), + (24501, 215, 445, 'maybe', '2020-11-12 19:47:51', '2025-12-17 19:47:54', 'GmjM1Vad', '3266138'), + (24502, 215, 447, 'maybe', '2020-10-28 00:43:18', '2025-12-17 19:47:53', 'GmjM1Vad', '3267895'), + (24503, 215, 456, 'maybe', '2020-11-05 15:17:35', '2025-12-17 19:47:54', 'GmjM1Vad', '3276428'), + (24504, 215, 459, 'maybe', '2020-11-10 00:12:43', '2025-12-17 19:47:54', 'GmjM1Vad', '3281467'), + (24505, 215, 461, 'maybe', '2020-11-10 00:13:00', '2025-12-17 19:47:53', 'GmjM1Vad', '3281469'), + (24506, 215, 462, 'not_attending', '2020-11-11 22:51:00', '2025-12-17 19:47:54', 'GmjM1Vad', '3281470'), + (24507, 215, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GmjM1Vad', '3281829'), + (24508, 215, 468, 'maybe', '2020-11-11 22:51:10', '2025-12-17 19:47:54', 'GmjM1Vad', '3285413'), + (24509, 215, 469, 'maybe', '2020-11-11 22:51:08', '2025-12-17 19:47:54', 'GmjM1Vad', '3285414'), + (24510, 215, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GmjM1Vad', '3297764'), + (24511, 215, 493, 'maybe', '2020-12-05 15:31:35', '2025-12-17 19:47:54', 'GmjM1Vad', '3313856'), + (24512, 215, 497, 'maybe', '2020-12-15 00:20:07', '2025-12-17 19:47:55', 'GmjM1Vad', '3314270'), + (24513, 215, 499, 'maybe', '2020-12-05 15:31:42', '2025-12-17 19:47:55', 'GmjM1Vad', '3314909'), + (24514, 215, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GmjM1Vad', '3314964'), + (24515, 215, 502, 'not_attending', '2020-12-12 20:34:05', '2025-12-17 19:47:55', 'GmjM1Vad', '3323365'), + (24516, 215, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GmjM1Vad', '3329383'), + (24517, 215, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GmjM1Vad', '3351539'), + (24518, 215, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GmjM1Vad', '3386848'), + (24519, 215, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GmjM1Vad', '3389527'), + (24520, 215, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GmjM1Vad', '3396499'), + (24521, 215, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GmjM1Vad', '3403650'), + (24522, 215, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GmjM1Vad', '3406988'), + (24523, 215, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GmjM1Vad', '3416576'), + (24524, 215, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'GmjM1Vad', '3418925'), + (24525, 215, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'GmjM1Vad', '3430267'), + (24526, 215, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'GmjM1Vad', '3470303'), + (24527, 215, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'GmjM1Vad', '3470305'), + (24528, 215, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GmjM1Vad', '3470991'), + (24529, 215, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'GmjM1Vad', '3517815'), + (24530, 215, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'GmjM1Vad', '3517816'), + (24531, 215, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'GmjM1Vad', '3523941'), + (24532, 215, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GmjM1Vad', '3533850'), + (24533, 215, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GmjM1Vad', '3536632'), + (24534, 215, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GmjM1Vad', '3536656'), + (24535, 215, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'GmjM1Vad', '3539916'), + (24536, 215, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'GmjM1Vad', '3539917'), + (24537, 215, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'GmjM1Vad', '3539918'), + (24538, 215, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'GmjM1Vad', '3539919'), + (24539, 215, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'GmjM1Vad', '3539920'), + (24540, 215, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'GmjM1Vad', '3539921'), + (24541, 215, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'GmjM1Vad', '3539922'), + (24542, 215, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'GmjM1Vad', '3539923'), + (24543, 215, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GmjM1Vad', '3539927'), + (24544, 215, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GmjM1Vad', '3582734'), + (24545, 215, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GmjM1Vad', '3583262'), + (24546, 215, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GmjM1Vad', '3619523'), + (24547, 215, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GmjM1Vad', '3661369'), + (24548, 215, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GmjM1Vad', '3674262'), + (24549, 215, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GmjM1Vad', '3677402'), + (24550, 215, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GmjM1Vad', '3730212'), + (24551, 215, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GmjM1Vad', '3793156'), + (24552, 215, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjM1Vad', '3974109'), + (24553, 215, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjM1Vad', '3975311'), + (24554, 215, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjM1Vad', '3975312'), + (24555, 215, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjM1Vad', '3994992'), + (24556, 215, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjM1Vad', '4014338'), + (24557, 215, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GmjM1Vad', '4021848'), + (24558, 215, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjM1Vad', '4136744'), + (24559, 215, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GmjM1Vad', '4136937'), + (24560, 215, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GmjM1Vad', '4136938'), + (24561, 215, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjM1Vad', '4136947'), + (24562, 215, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjM1Vad', '4210314'), + (24563, 215, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjM1Vad', '4225444'), + (24564, 215, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjM1Vad', '4239259'), + (24565, 215, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GmjM1Vad', '4240316'), + (24566, 215, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GmjM1Vad', '4240317'), + (24567, 215, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GmjM1Vad', '4240318'), + (24568, 215, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GmjM1Vad', '4240320'), + (24569, 215, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GmjM1Vad', '4250163'), + (24570, 215, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjM1Vad', '4275957'), + (24571, 215, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjM1Vad', '4277819'), + (24572, 215, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjM1Vad', '4301723'), + (24573, 215, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GmjM1Vad', '4302093'), + (24574, 215, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjM1Vad', '4304151'), + (24575, 215, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjM1Vad', '4356801'), + (24576, 215, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GmjM1Vad', '4366186'), + (24577, 215, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GmjM1Vad', '4366187'), + (24578, 215, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GmjM1Vad', '4420735'), + (24579, 215, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GmjM1Vad', '4420738'), + (24580, 215, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GmjM1Vad', '4420739'), + (24581, 215, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjM1Vad', '4420741'), + (24582, 215, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GmjM1Vad', '4420744'), + (24583, 215, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GmjM1Vad', '4420747'), + (24584, 215, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GmjM1Vad', '4420748'), + (24585, 215, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjM1Vad', '4420749'), + (24586, 215, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GmjM1Vad', '4461883'), + (24587, 215, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GmjM1Vad', '4508342'), + (24588, 215, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GmjM1Vad', '4568602'), + (24589, 215, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GmjM1Vad', '4572153'), + (24590, 215, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GmjM1Vad', '4585962'), + (24591, 215, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'GmjM1Vad', '4596356'), + (24592, 215, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GmjM1Vad', '4598860'), + (24593, 215, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'GmjM1Vad', '4598861'), + (24594, 215, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GmjM1Vad', '4602797'), + (24595, 215, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'GmjM1Vad', '4637896'), + (24596, 215, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'GmjM1Vad', '4642994'), + (24597, 215, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'GmjM1Vad', '4642995'), + (24598, 215, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GmjM1Vad', '4642996'), + (24599, 215, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GmjM1Vad', '4642997'), + (24600, 215, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'GmjM1Vad', '4645687'), + (24601, 215, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GmjM1Vad', '4645698'), + (24602, 215, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'GmjM1Vad', '4645704'), + (24603, 215, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'GmjM1Vad', '4645705'), + (24604, 215, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GmjM1Vad', '4668385'), + (24605, 215, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GmjM1Vad', '4694407'), + (24606, 215, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GmjM1Vad', '4736497'), + (24607, 215, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GmjM1Vad', '4736499'), + (24608, 215, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GmjM1Vad', '4736500'), + (24609, 215, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GmjM1Vad', '4736503'), + (24610, 215, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'GmjM1Vad', '4736504'), + (24611, 215, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GmjM1Vad', '4746789'), + (24612, 215, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'GmjM1Vad', '4753929'), + (24613, 215, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GmjM1Vad', '5038850'), + (24614, 215, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GmjM1Vad', '5045826'), + (24615, 215, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GmjM1Vad', '5132533'), + (24616, 215, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GmjM1Vad', '5186582'), + (24617, 215, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GmjM1Vad', '5186583'), + (24618, 215, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'GmjM1Vad', '5186585'), + (24619, 215, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GmjM1Vad', '5190437'), + (24620, 215, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GmjM1Vad', '5195095'), + (24621, 215, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GmjM1Vad', '5215989'), + (24622, 215, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GmjM1Vad', '5223686'), + (24623, 215, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GmjM1Vad', '5247467'), + (24624, 215, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'GmjM1Vad', '5260800'), + (24625, 215, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GmjM1Vad', '5269930'), + (24626, 215, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GmjM1Vad', '5271448'), + (24627, 215, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'GmjM1Vad', '5271449'), + (24628, 215, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GmjM1Vad', '5278159'), + (24629, 215, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'GmjM1Vad', '5363695'), + (24630, 215, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GmjM1Vad', '5365960'), + (24631, 215, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GmjM1Vad', '5378247'), + (24632, 215, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GmjM1Vad', '5389605'), + (24633, 215, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GmjM1Vad', '5397265'), + (24634, 215, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GmjM1Vad', '5404786'), + (24635, 215, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GmjM1Vad', '5405203'), + (24636, 215, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GmjM1Vad', '5412550'), + (24637, 215, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GmjM1Vad', '5415046'), + (24638, 215, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GmjM1Vad', '5422086'), + (24639, 215, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GmjM1Vad', '5422406'), + (24640, 215, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GmjM1Vad', '5424565'), + (24641, 215, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GmjM1Vad', '5426882'), + (24642, 215, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GmjM1Vad', '5441125'), + (24643, 215, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GmjM1Vad', '5441126'), + (24644, 215, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GmjM1Vad', '5441128'), + (24645, 215, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjM1Vad', '5441131'), + (24646, 215, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjM1Vad', '5441132'), + (24647, 215, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GmjM1Vad', '5453325'), + (24648, 215, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GmjM1Vad', '5454516'), + (24649, 215, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GmjM1Vad', '5454605'), + (24650, 215, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GmjM1Vad', '5455037'), + (24651, 215, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjM1Vad', '5461278'), + (24652, 215, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GmjM1Vad', '5469480'), + (24653, 215, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GmjM1Vad', '5474663'), + (24654, 215, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GmjM1Vad', '5482022'), + (24655, 215, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjM1Vad', '5488912'), + (24656, 215, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjM1Vad', '5492192'), + (24657, 215, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjM1Vad', '5493139'), + (24658, 215, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjM1Vad', '5493200'), + (24659, 215, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjM1Vad', '5502188'), + (24660, 215, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjM1Vad', '5505059'), + (24661, 215, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GmjM1Vad', '5509055'), + (24662, 215, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjM1Vad', '5512862'), + (24663, 215, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjM1Vad', '5513985'), + (24664, 215, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GmjM1Vad', '5519981'), + (24665, 215, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjM1Vad', '5522550'), + (24666, 215, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjM1Vad', '5534683'), + (24667, 215, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjM1Vad', '5537735'), + (24668, 215, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjM1Vad', '5540859'), + (24669, 215, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjM1Vad', '5546619'), + (24670, 215, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjM1Vad', '5557747'), + (24671, 215, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjM1Vad', '5560255'), + (24672, 215, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjM1Vad', '5562906'), + (24673, 215, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjM1Vad', '5600604'), + (24674, 215, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjM1Vad', '5605544'), + (24675, 215, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GmjM1Vad', '5630960'), + (24676, 215, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjM1Vad', '5630961'), + (24677, 215, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjM1Vad', '5630962'), + (24678, 215, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GmjM1Vad', '5630966'), + (24679, 215, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GmjM1Vad', '5630967'), + (24680, 215, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjM1Vad', '5630968'), + (24681, 215, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjM1Vad', '5635406'), + (24682, 215, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjM1Vad', '5638765'), + (24683, 215, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjM1Vad', '5640097'), + (24684, 215, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjM1Vad', '5640843'), + (24685, 215, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjM1Vad', '5641521'), + (24686, 215, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GmjM1Vad', '5642818'), + (24687, 215, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjM1Vad', '5652395'), + (24688, 215, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GmjM1Vad', '5670445'), + (24689, 215, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjM1Vad', '5671637'), + (24690, 215, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjM1Vad', '5672329'), + (24691, 215, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjM1Vad', '5674057'), + (24692, 215, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjM1Vad', '5674060'), + (24693, 215, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GmjM1Vad', '5677461'), + (24694, 215, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjM1Vad', '5698046'), + (24695, 215, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GmjM1Vad', '5699760'), + (24696, 215, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjM1Vad', '5741601'), + (24697, 215, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjM1Vad', '5763458'), + (24698, 215, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjM1Vad', '5774172'), + (24699, 215, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GmjM1Vad', '5818247'), + (24700, 215, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjM1Vad', '5819471'), + (24701, 215, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'GmjM1Vad', '5827739'), + (24702, 215, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjM1Vad', '5844306'), + (24703, 215, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjM1Vad', '5850159'), + (24704, 215, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjM1Vad', '5858999'), + (24705, 215, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjM1Vad', '5871984'), + (24706, 215, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjM1Vad', '5876354'), + (24707, 215, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjM1Vad', '5880939'), + (24708, 215, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjM1Vad', '5880940'), + (24709, 215, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GmjM1Vad', '5880942'), + (24710, 215, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjM1Vad', '5880943'), + (24711, 215, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjM1Vad', '5887890'), + (24712, 215, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjM1Vad', '5888598'), + (24713, 215, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjM1Vad', '5893260'), + (24714, 215, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjM1Vad', '5899826'), + (24715, 215, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjM1Vad', '5900199'), + (24716, 215, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjM1Vad', '5900200'), + (24717, 215, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjM1Vad', '5900202'), + (24718, 215, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjM1Vad', '5900203'), + (24719, 215, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GmjM1Vad', '5901108'), + (24720, 215, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjM1Vad', '5901126'), + (24721, 215, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'GmjM1Vad', '5901606'), + (24722, 215, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjM1Vad', '5909655'), + (24723, 215, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjM1Vad', '5910522'), + (24724, 215, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjM1Vad', '5910526'), + (24725, 215, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjM1Vad', '5910528'), + (24726, 215, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjM1Vad', '5916219'), + (24727, 215, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GmjM1Vad', '5936234'), + (24728, 215, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjM1Vad', '5958351'), + (24729, 215, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjM1Vad', '5959751'), + (24730, 215, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjM1Vad', '5959755'), + (24731, 215, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjM1Vad', '5960055'), + (24732, 215, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjM1Vad', '5961684'), + (24733, 215, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GmjM1Vad', '5962132'), + (24734, 215, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GmjM1Vad', '5962133'), + (24735, 215, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjM1Vad', '5962134'), + (24736, 215, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjM1Vad', '5962317'), + (24737, 215, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjM1Vad', '5962318'), + (24738, 215, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GmjM1Vad', '5965933'), + (24739, 215, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjM1Vad', '5967014'), + (24740, 215, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjM1Vad', '5972815'), + (24741, 215, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjM1Vad', '5974016'), + (24742, 215, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjM1Vad', '5981515'), + (24743, 215, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjM1Vad', '5993516'), + (24744, 215, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjM1Vad', '5998939'), + (24745, 215, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjM1Vad', '6028191'), + (24746, 215, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjM1Vad', '6040066'), + (24747, 215, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjM1Vad', '6042717'), + (24748, 215, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjM1Vad', '6044838'), + (24749, 215, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GmjM1Vad', '6044839'), + (24750, 215, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjM1Vad', '6045684'), + (24751, 215, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjM1Vad', '6050104'), + (24752, 215, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjM1Vad', '6053195'), + (24753, 215, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjM1Vad', '6053198'), + (24754, 215, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjM1Vad', '6056085'), + (24755, 215, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjM1Vad', '6056916'), + (24756, 215, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjM1Vad', '6059290'), + (24757, 215, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjM1Vad', '6060328'), + (24758, 215, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjM1Vad', '6061037'), + (24759, 215, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjM1Vad', '6061039'), + (24760, 215, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjM1Vad', '6067245'), + (24761, 215, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjM1Vad', '6068094'), + (24762, 215, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjM1Vad', '6068252'), + (24763, 215, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjM1Vad', '6068253'), + (24764, 215, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjM1Vad', '6068254'), + (24765, 215, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GmjM1Vad', '6068280'), + (24766, 215, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjM1Vad', '6069093'), + (24767, 215, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GmjM1Vad', '6072528'), + (24768, 215, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjM1Vad', '6079840'), + (24769, 215, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjM1Vad', '6083398'), + (24770, 215, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GmjM1Vad', '6093504'), + (24771, 215, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjM1Vad', '6097414'), + (24772, 215, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjM1Vad', '6097442'), + (24773, 215, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjM1Vad', '6097684'), + (24774, 215, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjM1Vad', '6098762'), + (24775, 215, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjM1Vad', '6101361'), + (24776, 215, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjM1Vad', '6101362'), + (24777, 215, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjM1Vad', '6107314'), + (24778, 215, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GmjM1Vad', '6120034'), + (24779, 215, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GmjM1Vad', '6136733'), + (24780, 215, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjM1Vad', '6137989'), + (24781, 215, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjM1Vad', '6150864'), + (24782, 215, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjM1Vad', '6155491'), + (24783, 215, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjM1Vad', '6164417'), + (24784, 215, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjM1Vad', '6166388'), + (24785, 215, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjM1Vad', '6176439'), + (24786, 215, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GmjM1Vad', '6182410'), + (24787, 215, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjM1Vad', '6185812'), + (24788, 215, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjM1Vad', '6187651'), + (24789, 215, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjM1Vad', '6187963'), + (24790, 215, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjM1Vad', '6187964'), + (24791, 215, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjM1Vad', '6187966'), + (24792, 215, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjM1Vad', '6187967'), + (24793, 215, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjM1Vad', '6187969'), + (24794, 215, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjM1Vad', '6334878'), + (24795, 215, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjM1Vad', '6337236'), + (24796, 215, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjM1Vad', '6337970'), + (24797, 215, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjM1Vad', '6338308'), + (24798, 215, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjM1Vad', '6341710'), + (24799, 215, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjM1Vad', '6342044'), + (24800, 215, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjM1Vad', '6342298'), + (24801, 215, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GmjM1Vad', '6343294'), + (24802, 215, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjM1Vad', '6347034'), + (24803, 215, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjM1Vad', '6347056'), + (24804, 215, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjM1Vad', '6353830'), + (24805, 215, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjM1Vad', '6353831'), + (24806, 215, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjM1Vad', '6357867'), + (24807, 215, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjM1Vad', '6358652'), + (24808, 215, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjM1Vad', '6361709'), + (24809, 215, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjM1Vad', '6361710'), + (24810, 215, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjM1Vad', '6361711'), + (24811, 215, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjM1Vad', '6361712'), + (24812, 215, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjM1Vad', '6361713'), + (24813, 215, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GmjM1Vad', '6382573'), + (24814, 215, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GmjM1Vad', '6388604'), + (24815, 215, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GmjM1Vad', '6394629'), + (24816, 215, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjM1Vad', '6394631'), + (24817, 215, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjM1Vad', '6440863'), + (24818, 215, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjM1Vad', '6445440'), + (24819, 215, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjM1Vad', '6453951'), + (24820, 215, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjM1Vad', '6461696'), + (24821, 215, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjM1Vad', '6462129'), + (24822, 215, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjM1Vad', '6463218'), + (24823, 215, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GmjM1Vad', '6472181'), + (24824, 215, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjM1Vad', '6482693'), + (24825, 215, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GmjM1Vad', '6484200'), + (24826, 215, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GmjM1Vad', '6484680'), + (24827, 215, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjM1Vad', '6507741'), + (24828, 215, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GmjM1Vad', '6514659'), + (24829, 215, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GmjM1Vad', '6514660'), + (24830, 215, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjM1Vad', '6519103'), + (24831, 215, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjM1Vad', '6535681'), + (24832, 215, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjM1Vad', '6584747'), + (24833, 215, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjM1Vad', '6587097'), + (24834, 215, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjM1Vad', '6609022'), + (24835, 215, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GmjM1Vad', '6632757'), + (24836, 215, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjM1Vad', '6644187'), + (24837, 215, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjM1Vad', '6648951'), + (24838, 215, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GmjM1Vad', '6648952'), + (24839, 215, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjM1Vad', '6655401'), + (24840, 215, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjM1Vad', '6661585'), + (24841, 215, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjM1Vad', '6661588'), + (24842, 215, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjM1Vad', '6661589'), + (24843, 215, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjM1Vad', '6699906'), + (24844, 215, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GmjM1Vad', '6699913'), + (24845, 215, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjM1Vad', '6701109'), + (24846, 215, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjM1Vad', '6705219'), + (24847, 215, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjM1Vad', '6710153'), + (24848, 215, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjM1Vad', '6711552'), + (24849, 215, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GmjM1Vad', '6711553'), + (24850, 215, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjM1Vad', '6722688'), + (24851, 215, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjM1Vad', '6730620'), + (24852, 215, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjM1Vad', '6740364'), + (24853, 215, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjM1Vad', '6743829'), + (24854, 215, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjM1Vad', '7030380'), + (24855, 215, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GmjM1Vad', '7033677'), + (24856, 215, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjM1Vad', '7044715'), + (24857, 215, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjM1Vad', '7050318'), + (24858, 215, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjM1Vad', '7050319'), + (24859, 215, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjM1Vad', '7050322'), + (24860, 215, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjM1Vad', '7057804'), + (24861, 215, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjM1Vad', '7072824'), + (24862, 215, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjM1Vad', '7074348'), + (24863, 215, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GmjM1Vad', '7074364'), + (24864, 215, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GmjM1Vad', '7089267'), + (24865, 215, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjM1Vad', '7098747'), + (24866, 215, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GmjM1Vad', '7113468'), + (24867, 215, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjM1Vad', '7114856'), + (24868, 215, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjM1Vad', '7114951'), + (24869, 215, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjM1Vad', '7114955'), + (24870, 215, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjM1Vad', '7114956'), + (24871, 215, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GmjM1Vad', '7114957'), + (24872, 215, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjM1Vad', '7159484'), + (24873, 215, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjM1Vad', '7178446'), + (24874, 215, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GmjM1Vad', '7220467'), + (24875, 215, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjM1Vad', '7240354'), + (24876, 215, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjM1Vad', '7251633'), + (24877, 215, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjM1Vad', '7324073'), + (24878, 215, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjM1Vad', '7324074'), + (24879, 215, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GmjM1Vad', '7324075'), + (24880, 215, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GmjM1Vad', '7324078'), + (24881, 215, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GmjM1Vad', '7324082'), + (24882, 215, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GmjM1Vad', '7331457'), + (24883, 215, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GmjM1Vad', '7363643'), + (24884, 215, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GmjM1Vad', '7368606'), + (24885, 215, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GmjM1Vad', '7397462'), + (24886, 215, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GmjM1Vad', '7424275'), + (24887, 215, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GmjM1Vad', '7432751'), + (24888, 215, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GmjM1Vad', '7432752'), + (24889, 215, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GmjM1Vad', '7432753'), + (24890, 215, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GmjM1Vad', '7432754'), + (24891, 215, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GmjM1Vad', '7432755'), + (24892, 215, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GmjM1Vad', '7432756'), + (24893, 215, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GmjM1Vad', '7432758'), + (24894, 215, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GmjM1Vad', '7432759'), + (24895, 215, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GmjM1Vad', '7433834'), + (24896, 215, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GmjM1Vad', '7470197'), + (24897, 215, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GmjM1Vad', '7685613'), + (24898, 215, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GmjM1Vad', '7688194'), + (24899, 215, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GmjM1Vad', '7688196'), + (24900, 215, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GmjM1Vad', '7688289'), + (24901, 215, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GmjM1Vad', '7692763'), + (24902, 215, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GmjM1Vad', '7697552'), + (24903, 215, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GmjM1Vad', '7699878'), + (24904, 215, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GmjM1Vad', '7704043'), + (24905, 215, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GmjM1Vad', '7712467'), + (24906, 215, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GmjM1Vad', '7713585'), + (24907, 215, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GmjM1Vad', '7713586'), + (24908, 215, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GmjM1Vad', '7738518'), + (24909, 215, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GmjM1Vad', '7750636'), + (24910, 215, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GmjM1Vad', '7796540'), + (24911, 215, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GmjM1Vad', '7796541'), + (24912, 215, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GmjM1Vad', '7796542'), + (24913, 215, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GmjM1Vad', '7825913'), + (24914, 215, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GmjM1Vad', '7826209'), + (24915, 215, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GmjM1Vad', '7834742'), + (24916, 215, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GmjM1Vad', '7842108'), + (24917, 215, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GmjM1Vad', '7842902'), + (24918, 215, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GmjM1Vad', '7842903'), + (24919, 215, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GmjM1Vad', '7842904'), + (24920, 215, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GmjM1Vad', '7842905'), + (24921, 215, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GmjM1Vad', '7855719'), + (24922, 215, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GmjM1Vad', '7860683'), + (24923, 215, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GmjM1Vad', '7860684'), + (24924, 215, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GmjM1Vad', '7866095'), + (24925, 215, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GmjM1Vad', '7869170'), + (24926, 215, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GmjM1Vad', '7869188'), + (24927, 215, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GmjM1Vad', '7869201'), + (24928, 215, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GmjM1Vad', '7877465'), + (24929, 215, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GmjM1Vad', '7888250'), + (24930, 215, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GmjM1Vad', '7904777'), + (24931, 215, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GmjM1Vad', '8349164'), + (24932, 215, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GmjM1Vad', '8349545'), + (24933, 215, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GmjM1Vad', '8368028'), + (24934, 215, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GmjM1Vad', '8368029'), + (24935, 215, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GmjM1Vad', '8388462'), + (24936, 215, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GmjM1Vad', '8400273'), + (24937, 215, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GmjM1Vad', '8400275'), + (24938, 215, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'GmjM1Vad', '8400276'), + (24939, 215, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GmjM1Vad', '8404977'), + (24940, 215, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GmjM1Vad', '8430783'), + (24941, 215, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GmjM1Vad', '8430784'), + (24942, 215, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GmjM1Vad', '8430799'), + (24943, 215, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GmjM1Vad', '8430800'), + (24944, 215, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GmjM1Vad', '8430801'), + (24945, 215, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GmjM1Vad', '8438709'), + (24946, 215, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GmjM1Vad', '8457738'), + (24947, 215, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GmjM1Vad', '8459566'), + (24948, 215, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GmjM1Vad', '8459567'), + (24949, 215, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GmjM1Vad', '8461032'), + (24950, 215, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GmjM1Vad', '8477877'), + (24951, 215, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GmjM1Vad', '8485688'), + (24952, 215, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GmjM1Vad', '8490587'), + (24953, 215, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GmjM1Vad', '8493552'), + (24954, 215, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GmjM1Vad', '8493553'), + (24955, 215, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GmjM1Vad', '8493554'), + (24956, 215, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GmjM1Vad', '8493555'), + (24957, 215, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GmjM1Vad', '8493556'), + (24958, 215, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GmjM1Vad', '8493557'), + (24959, 215, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GmjM1Vad', '8493558'), + (24960, 215, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GmjM1Vad', '8493559'), + (24961, 215, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GmjM1Vad', '8493560'), + (24962, 215, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GmjM1Vad', '8493561'), + (24963, 215, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GmjM1Vad', '8493572'), + (24964, 215, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GmjM1Vad', '8540725'), + (24965, 215, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GmjM1Vad', '8555421'), + (24966, 216, 30, 'attending', '2020-04-05 05:04:35', '2025-12-17 19:47:57', '6AXQbev4', '2961895'), + (24967, 216, 36, 'not_attending', '2020-04-02 04:22:07', '2025-12-17 19:47:57', '6AXQbev4', '2969208'), + (24968, 216, 37, 'attending', '2020-03-29 14:59:55', '2025-12-17 19:47:56', '6AXQbev4', '2969680'), + (24969, 216, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', '6AXQbev4', '2971546'), + (24970, 216, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '6AXQbev4', '2974534'), + (24971, 216, 46, 'attending', '2020-04-11 18:33:04', '2025-12-17 19:47:57', '6AXQbev4', '2974955'), + (24972, 216, 55, 'attending', '2020-04-06 15:50:11', '2025-12-17 19:47:57', '6AXQbev4', '2975384'), + (24973, 216, 56, 'attending', '2020-04-06 16:01:12', '2025-12-17 19:47:57', '6AXQbev4', '2975385'), + (24974, 216, 57, 'attending', '2020-04-27 16:02:28', '2025-12-17 19:47:57', '6AXQbev4', '2976575'), + (24975, 216, 59, 'not_attending', '2020-04-27 16:03:41', '2025-12-17 19:47:57', '6AXQbev4', '2977128'), + (24976, 216, 60, 'not_attending', '2020-04-27 16:02:37', '2025-12-17 19:47:57', '6AXQbev4', '2977129'), + (24977, 216, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '6AXQbev4', '2977343'), + (24978, 216, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '6AXQbev4', '2977812'), + (24979, 216, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', '6AXQbev4', '2977931'), + (24980, 216, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', '6AXQbev4', '2978244'), + (24981, 216, 75, 'attending', '2020-04-22 01:55:09', '2025-12-17 19:47:57', '6AXQbev4', '2978245'), + (24982, 216, 76, 'not_attending', '2020-04-27 16:03:10', '2025-12-17 19:47:57', '6AXQbev4', '2978246'), + (24983, 216, 77, 'attending', '2020-05-09 22:35:45', '2025-12-17 19:47:57', '6AXQbev4', '2978247'), + (24984, 216, 78, 'attending', '2020-05-23 01:53:14', '2025-12-17 19:47:57', '6AXQbev4', '2978249'), + (24985, 216, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', '6AXQbev4', '2978250'), + (24986, 216, 80, 'attending', '2020-06-02 19:30:57', '2025-12-17 19:47:58', '6AXQbev4', '2978251'), + (24987, 216, 81, 'not_attending', '2020-06-02 19:31:41', '2025-12-17 19:47:58', '6AXQbev4', '2978252'), + (24988, 216, 82, 'not_attending', '2020-04-23 06:44:43', '2025-12-17 19:47:57', '6AXQbev4', '2978433'), + (24989, 216, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '6AXQbev4', '2978438'), + (24990, 216, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '6AXQbev4', '2980871'), + (24991, 216, 85, 'not_attending', '2020-04-22 22:41:26', '2025-12-17 19:47:57', '6AXQbev4', '2980872'), + (24992, 216, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '6AXQbev4', '2981388'), + (24993, 216, 91, 'attending', '2020-04-27 16:03:04', '2025-12-17 19:47:57', '6AXQbev4', '2985130'), + (24994, 216, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '6AXQbev4', '2986743'), + (24995, 216, 95, 'not_attending', '2020-04-27 16:02:52', '2025-12-17 19:47:57', '6AXQbev4', '2987452'), + (24996, 216, 99, 'not_attending', '2020-04-27 16:03:21', '2025-12-17 19:47:57', '6AXQbev4', '2988545'), + (24997, 216, 102, 'attending', '2020-04-28 14:40:42', '2025-12-17 19:47:57', '6AXQbev4', '2990784'), + (24998, 216, 103, 'attending', '2020-04-27 16:03:29', '2025-12-17 19:47:57', '6AXQbev4', '2991407'), + (24999, 216, 104, 'attending', '2020-04-24 17:17:30', '2025-12-17 19:47:57', '6AXQbev4', '2991471'), + (25000, 216, 106, 'not_attending', '2020-04-27 16:02:14', '2025-12-17 19:47:57', '6AXQbev4', '2993501'), + (25001, 216, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '6AXQbev4', '2994480'), + (25002, 216, 114, 'attending', '2020-04-28 14:40:15', '2025-12-17 19:47:57', '6AXQbev4', '2994911'), + (25003, 216, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', '6AXQbev4', '3001217'), + (25004, 216, 121, 'attending', '2020-05-27 05:23:54', '2025-12-17 19:47:57', '6AXQbev4', '3023063'), + (25005, 216, 133, 'attending', '2020-06-26 00:56:32', '2025-12-17 19:47:58', '6AXQbev4', '3034321'), + (25006, 216, 134, 'attending', '2020-05-24 00:06:05', '2025-12-17 19:47:57', '6AXQbev4', '3034367'), + (25007, 216, 135, 'attending', '2020-05-24 00:11:02', '2025-12-17 19:47:57', '6AXQbev4', '3034368'), + (25008, 216, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '6AXQbev4', '3035881'), + (25009, 216, 142, 'attending', '2020-05-31 22:53:41', '2025-12-17 19:47:57', '6AXQbev4', '3049860'), + (25010, 216, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '6AXQbev4', '3049983'), + (25011, 216, 168, 'attending', '2020-06-06 17:51:55', '2025-12-17 19:47:58', '6AXQbev4', '3058740'), + (25012, 216, 170, 'attending', '2020-06-06 18:07:29', '2025-12-17 19:47:58', '6AXQbev4', '3058742'), + (25013, 216, 171, 'attending', '2020-06-06 18:09:27', '2025-12-17 19:47:58', '6AXQbev4', '3058743'), + (25014, 216, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '6AXQbev4', '3058959'), + (25015, 216, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', '6AXQbev4', '3067093'), + (25016, 216, 181, 'attending', '2020-06-20 22:15:25', '2025-12-17 19:47:58', '6AXQbev4', '3074513'), + (25017, 216, 182, 'not_attending', '2020-06-27 16:40:01', '2025-12-17 19:47:55', '6AXQbev4', '3074514'), + (25018, 216, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '6AXQbev4', '3075228'), + (25019, 216, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '6AXQbev4', '3075456'), + (25020, 216, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '6AXQbev4', '3083791'), + (25021, 216, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '6AXQbev4', '3085151'), + (25022, 216, 192, 'maybe', '2020-07-18 06:24:16', '2025-12-17 19:47:55', '6AXQbev4', '3087260'), + (25023, 216, 194, 'attending', '2020-07-28 16:28:07', '2025-12-17 19:47:56', '6AXQbev4', '3087262'), + (25024, 216, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '6AXQbev4', '3087265'), + (25025, 216, 197, 'not_attending', '2020-08-20 23:26:49', '2025-12-17 19:47:56', '6AXQbev4', '3087266'), + (25026, 216, 198, 'not_attending', '2020-08-26 15:06:23', '2025-12-17 19:47:56', '6AXQbev4', '3087267'), + (25027, 216, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', '6AXQbev4', '3087268'), + (25028, 216, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '6AXQbev4', '3088653'), + (25029, 216, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '6AXQbev4', '3106813'), + (25030, 216, 223, 'not_attending', '2020-09-12 21:27:59', '2025-12-17 19:47:56', '6AXQbev4', '3129980'), + (25031, 216, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '6AXQbev4', '3132817'), + (25032, 216, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '6AXQbev4', '3132820'), + (25033, 216, 228, 'attending', '2020-07-13 20:05:36', '2025-12-17 19:47:55', '6AXQbev4', '3132821'), + (25034, 216, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '6AXQbev4', '3155321'), + (25035, 216, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '6AXQbev4', '3162006'), + (25036, 216, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '6AXQbev4', '3163442'), + (25037, 216, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '6AXQbev4', '3169555'), + (25038, 216, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', '6AXQbev4', '3169556'), + (25039, 216, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '6AXQbev4', '3172832'), + (25040, 216, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '6AXQbev4', '3172833'), + (25041, 216, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '6AXQbev4', '3172834'), + (25042, 216, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '6AXQbev4', '3172876'), + (25043, 216, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', '6AXQbev4', '3186057'), + (25044, 216, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '6AXQbev4', '3191735'), + (25045, 216, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', '6AXQbev4', '3193885'), + (25046, 216, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '6AXQbev4', '3200209'), + (25047, 216, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', '6AXQbev4', '3200495'), + (25048, 216, 343, 'not_attending', '2020-09-21 22:56:44', '2025-12-17 19:47:56', '6AXQbev4', '3206759'), + (25049, 216, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', '6AXQbev4', '3214207'), + (25050, 216, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '6AXQbev4', '3217037'), + (25051, 216, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '6AXQbev4', '3218510'), + (25052, 216, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', '6AXQbev4', '3221403'), + (25053, 216, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', '6AXQbev4', '3228698'), + (25054, 216, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', '6AXQbev4', '3228699'), + (25055, 216, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', '6AXQbev4', '3228700'), + (25056, 216, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', '6AXQbev4', '3228701'), + (25057, 216, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', '6AXQbev4', '3245751'), + (25058, 216, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '6AXQbev4', '3250232'), + (25059, 216, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', '6AXQbev4', '3256168'), + (25060, 216, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXQbev4', '6045684'), + (25061, 216, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '6AXQbev4', '7904777'), + (25062, 216, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '6AXQbev4', '8349164'), + (25063, 216, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '6AXQbev4', '8349545'), + (25064, 216, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '6AXQbev4', '8368028'), + (25065, 216, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '6AXQbev4', '8368029'), + (25066, 216, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '6AXQbev4', '8388462'), + (25067, 216, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '6AXQbev4', '8400273'), + (25068, 216, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '6AXQbev4', '8400275'), + (25069, 216, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '6AXQbev4', '8400276'), + (25070, 216, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '6AXQbev4', '8404977'), + (25071, 216, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '6AXQbev4', '8430783'), + (25072, 216, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '6AXQbev4', '8430784'), + (25073, 216, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '6AXQbev4', '8430799'), + (25074, 216, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '6AXQbev4', '8430800'), + (25075, 216, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '6AXQbev4', '8430801'), + (25076, 216, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '6AXQbev4', '8438709'), + (25077, 216, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '6AXQbev4', '8457738'), + (25078, 216, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '6AXQbev4', '8459566'), + (25079, 216, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '6AXQbev4', '8459567'), + (25080, 216, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '6AXQbev4', '8461032'), + (25081, 216, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '6AXQbev4', '8477877'), + (25082, 216, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '6AXQbev4', '8485688'), + (25083, 216, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '6AXQbev4', '8490587'), + (25084, 216, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '6AXQbev4', '8493552'), + (25085, 216, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '6AXQbev4', '8493553'), + (25086, 216, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '6AXQbev4', '8493554'), + (25087, 216, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '6AXQbev4', '8493555'), + (25088, 216, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '6AXQbev4', '8493556'), + (25089, 216, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '6AXQbev4', '8493557'), + (25090, 216, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '6AXQbev4', '8493558'), + (25091, 216, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '6AXQbev4', '8493559'), + (25092, 216, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '6AXQbev4', '8493560'), + (25093, 216, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '6AXQbev4', '8493561'), + (25094, 216, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '6AXQbev4', '8493572'), + (25095, 216, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '6AXQbev4', '8540725'), + (25096, 216, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '6AXQbev4', '8555421'), + (25097, 217, 393, 'attending', '2021-06-24 21:57:05', '2025-12-17 19:47:38', 'x4o8e3nd', '3236448'), + (25098, 217, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'x4o8e3nd', '4021848'), + (25099, 217, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4o8e3nd', '6045684'), + (25100, 218, 397, 'attending', '2021-05-24 22:42:00', '2025-12-17 19:47:47', 'LmpJz8N4', '3236452'), + (25101, 218, 648, 'attending', '2021-05-28 03:03:27', '2025-12-17 19:47:47', 'LmpJz8N4', '3539923'), + (25102, 218, 742, 'attending', '2021-06-18 21:46:47', '2025-12-17 19:47:48', 'LmpJz8N4', '3680622'), + (25103, 218, 744, 'not_attending', '2021-06-07 12:48:32', '2025-12-17 19:47:47', 'LmpJz8N4', '3680624'), + (25104, 218, 821, 'attending', '2021-05-29 00:40:41', '2025-12-17 19:47:47', 'LmpJz8N4', '3963965'), + (25105, 218, 823, 'attending', '2021-06-12 14:56:05', '2025-12-17 19:47:48', 'LmpJz8N4', '3974109'), + (25106, 218, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'LmpJz8N4', '3975311'), + (25107, 218, 828, 'not_attending', '2021-06-12 14:55:25', '2025-12-17 19:47:47', 'LmpJz8N4', '3975312'), + (25108, 218, 830, 'attending', '2021-06-03 15:26:00', '2025-12-17 19:47:47', 'LmpJz8N4', '3976648'), + (25109, 218, 831, 'attending', '2021-06-03 15:26:04', '2025-12-17 19:47:47', 'LmpJz8N4', '3976649'), + (25110, 218, 832, 'attending', '2021-06-03 15:26:08', '2025-12-17 19:47:47', 'LmpJz8N4', '3976650'), + (25111, 218, 838, 'maybe', '2021-06-06 18:32:56', '2025-12-17 19:47:47', 'LmpJz8N4', '3994992'), + (25112, 218, 844, 'attending', '2021-06-23 22:17:59', '2025-12-17 19:47:38', 'LmpJz8N4', '4014338'), + (25113, 218, 867, 'attending', '2021-06-23 18:34:11', '2025-12-17 19:47:38', 'LmpJz8N4', '4021848'), + (25114, 218, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpJz8N4', '4136744'), + (25115, 218, 870, 'not_attending', '2021-07-03 19:22:57', '2025-12-17 19:47:39', 'LmpJz8N4', '4136937'), + (25116, 218, 871, 'not_attending', '2021-07-10 20:31:18', '2025-12-17 19:47:39', 'LmpJz8N4', '4136938'), + (25117, 218, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJz8N4', '4136947'), + (25118, 218, 877, 'attending', '2021-06-16 16:57:29', '2025-12-17 19:47:48', 'LmpJz8N4', '4140575'), + (25119, 218, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpJz8N4', '4210314'), + (25120, 218, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpJz8N4', '4225444'), + (25121, 218, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpJz8N4', '4239259'), + (25122, 218, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'LmpJz8N4', '4240316'), + (25123, 218, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'LmpJz8N4', '4240317'), + (25124, 218, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'LmpJz8N4', '4240318'), + (25125, 218, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'LmpJz8N4', '4240320'), + (25126, 218, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpJz8N4', '4250163'), + (25127, 218, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'LmpJz8N4', '4275957'), + (25128, 218, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpJz8N4', '4277819'), + (25129, 218, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpJz8N4', '4301723'), + (25130, 218, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpJz8N4', '4302093'), + (25131, 218, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpJz8N4', '4304151'), + (25132, 218, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'LmpJz8N4', '4356801'), + (25133, 218, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'LmpJz8N4', '4366186'), + (25134, 218, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'LmpJz8N4', '4366187'), + (25135, 218, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'LmpJz8N4', '4420735'), + (25136, 218, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'LmpJz8N4', '4420738'), + (25137, 218, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'LmpJz8N4', '4420739'), + (25138, 218, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'LmpJz8N4', '4420741'), + (25139, 218, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'LmpJz8N4', '4420744'), + (25140, 218, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'LmpJz8N4', '4420747'), + (25141, 218, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'LmpJz8N4', '4420748'), + (25142, 218, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'LmpJz8N4', '4420749'), + (25143, 218, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'LmpJz8N4', '4461883'), + (25144, 218, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpJz8N4', '4508342'), + (25145, 218, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpJz8N4', '4568602'), + (25146, 218, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'LmpJz8N4', '4572153'), + (25147, 218, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpJz8N4', '4585962'), + (25148, 218, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'LmpJz8N4', '4596356'), + (25149, 218, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpJz8N4', '4598860'), + (25150, 218, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpJz8N4', '4598861'), + (25151, 218, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'LmpJz8N4', '4602797'), + (25152, 218, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'LmpJz8N4', '4637896'), + (25153, 218, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpJz8N4', '4642994'), + (25154, 218, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'LmpJz8N4', '4642995'), + (25155, 218, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpJz8N4', '4642996'), + (25156, 218, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpJz8N4', '4642997'), + (25157, 218, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'LmpJz8N4', '4645687'), + (25158, 218, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpJz8N4', '4645698'), + (25159, 218, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'LmpJz8N4', '4645704'), + (25160, 218, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'LmpJz8N4', '4645705'), + (25161, 218, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpJz8N4', '4668385'), + (25162, 218, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpJz8N4', '4694407'), + (25163, 218, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'LmpJz8N4', '4706262'), + (25164, 218, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'LmpJz8N4', '4736497'), + (25165, 218, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpJz8N4', '4736499'), + (25166, 218, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'LmpJz8N4', '4736500'), + (25167, 218, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'LmpJz8N4', '4736503'), + (25168, 218, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpJz8N4', '4736504'), + (25169, 218, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpJz8N4', '4746789'), + (25170, 218, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'LmpJz8N4', '4753929'), + (25171, 218, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpJz8N4', '5038850'), + (25172, 218, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpJz8N4', '5045826'), + (25173, 218, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpJz8N4', '5132533'), + (25174, 218, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'LmpJz8N4', '5186582'), + (25175, 218, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpJz8N4', '5186583'), + (25176, 218, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'LmpJz8N4', '5186585'), + (25177, 218, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpJz8N4', '5190437'), + (25178, 218, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpJz8N4', '5215989'), + (25179, 218, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJz8N4', '6045684'), + (25180, 219, 2904, 'attending', '2024-11-24 00:35:52', '2025-12-17 19:46:28', 'm6Yzl7Rd', '7688196'), + (25181, 219, 2920, 'not_attending', '2024-11-23 23:12:56', '2025-12-17 19:46:28', 'm6Yzl7Rd', '7708406'), + (25182, 219, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6Yzl7Rd', '7712467'), + (25183, 219, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6Yzl7Rd', '7713585'), + (25184, 219, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7713586'), + (25185, 219, 2947, 'not_attending', '2024-12-09 03:11:05', '2025-12-17 19:46:21', 'm6Yzl7Rd', '7727445'), + (25186, 219, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7738518'), + (25187, 219, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7750636'), + (25188, 219, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7796540'), + (25189, 219, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7796541'), + (25190, 219, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7796542'), + (25191, 219, 2967, 'not_attending', '2025-01-07 14:57:05', '2025-12-17 19:46:22', 'm6Yzl7Rd', '7797181'), + (25192, 219, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7825913'), + (25193, 219, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7826209'), + (25194, 219, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7834742'), + (25195, 219, 2986, 'not_attending', '2025-02-07 22:00:58', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7835405'), + (25196, 219, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7842108'), + (25197, 219, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7842902'), + (25198, 219, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7842903'), + (25199, 219, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6Yzl7Rd', '7842904'), + (25200, 219, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7842905'), + (25201, 219, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'm6Yzl7Rd', '7844784'), + (25202, 219, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7855719'), + (25203, 219, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7860683'), + (25204, 219, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6Yzl7Rd', '7860684'), + (25205, 219, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6Yzl7Rd', '7866095'), + (25206, 219, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7869170'), + (25207, 219, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7869201'), + (25208, 219, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'm6Yzl7Rd', '7872088'), + (25209, 220, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'xAYL689m', '3149489'), + (25210, 220, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'xAYL689m', '3149491'), + (25211, 220, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'xAYL689m', '3236450'), + (25212, 220, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'xAYL689m', '3236452'), + (25213, 220, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'xAYL689m', '3539921'), + (25214, 220, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xAYL689m', '3539922'), + (25215, 220, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'xAYL689m', '3539923'), + (25216, 220, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'xAYL689m', '3806392'), + (25217, 220, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'xAYL689m', '3963335'), + (25218, 220, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xAYL689m', '3975311'), + (25219, 220, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xAYL689m', '3975312'), + (25220, 220, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xAYL689m', '3994992'), + (25221, 220, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xAYL689m', '4014338'), + (25222, 220, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xAYL689m', '4136744'), + (25223, 220, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYL689m', '6045684'), + (25224, 221, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dODP7NPm', '4637896'), + (25225, 221, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dODP7NPm', '4642994'), + (25226, 221, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'dODP7NPm', '4642995'), + (25227, 221, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dODP7NPm', '4642996'), + (25228, 221, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dODP7NPm', '4642997'), + (25229, 221, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dODP7NPm', '4645687'), + (25230, 221, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dODP7NPm', '4645698'), + (25231, 221, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dODP7NPm', '4645704'), + (25232, 221, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dODP7NPm', '4645705'), + (25233, 221, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dODP7NPm', '4668385'), + (25234, 221, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dODP7NPm', '6045684'), + (25235, 222, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dVBvL8pd', '4736497'), + (25236, 222, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dVBvL8pd', '4736500'), + (25237, 222, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVBvL8pd', '4746789'), + (25238, 222, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dVBvL8pd', '4753929'), + (25239, 222, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBvL8pd', '6045684'), + (25240, 223, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dK39RzZd', '6045684'), + (25241, 224, 2521, 'attending', '2024-06-20 09:17:38', '2025-12-17 19:46:29', 'dJQe07w4', '7074361'), + (25242, 224, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJQe07w4', '7074364'), + (25243, 224, 2525, 'attending', '2024-06-13 08:26:32', '2025-12-17 19:46:28', 'dJQe07w4', '7074365'), + (25244, 224, 2527, 'maybe', '2024-06-27 23:14:46', '2025-12-17 19:46:29', 'dJQe07w4', '7074367'), + (25245, 224, 2629, 'attending', '2024-06-08 20:53:48', '2025-12-17 19:46:28', 'dJQe07w4', '7264726'), + (25246, 224, 2647, 'attending', '2024-06-09 05:09:48', '2025-12-17 19:46:28', 'dJQe07w4', '7282057'), + (25247, 224, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'dJQe07w4', '7302674'), + (25248, 224, 2671, 'attending', '2024-06-10 09:04:44', '2025-12-17 19:46:28', 'dJQe07w4', '7318256'), + (25249, 224, 2678, 'attending', '2024-06-15 02:50:33', '2025-12-17 19:46:28', 'dJQe07w4', '7319489'), + (25250, 224, 2679, 'attending', '2024-06-22 02:18:30', '2025-12-17 19:46:29', 'dJQe07w4', '7319490'), + (25251, 224, 2683, 'attending', '2024-06-15 02:51:00', '2025-12-17 19:46:28', 'dJQe07w4', '7321978'), + (25252, 224, 2688, 'attending', '2024-06-23 03:55:12', '2025-12-17 19:46:29', 'dJQe07w4', '7324073'), + (25253, 224, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJQe07w4', '7324074'), + (25254, 224, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJQe07w4', '7324075'), + (25255, 224, 2691, 'attending', '2024-07-20 02:36:26', '2025-12-17 19:46:30', 'dJQe07w4', '7324076'), + (25256, 224, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJQe07w4', '7324078'), + (25257, 224, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dJQe07w4', '7324082'), + (25258, 224, 2699, 'maybe', '2024-06-12 20:10:35', '2025-12-17 19:46:28', 'dJQe07w4', '7324385'), + (25259, 224, 2700, 'maybe', '2024-06-14 03:20:46', '2025-12-17 19:46:28', 'dJQe07w4', '7324388'), + (25260, 224, 2701, 'maybe', '2024-06-27 23:16:42', '2025-12-17 19:46:29', 'dJQe07w4', '7324391'), + (25261, 224, 2706, 'attending', '2024-06-19 21:21:11', '2025-12-17 19:46:28', 'dJQe07w4', '7324947'), + (25262, 224, 2720, 'attending', '2024-06-18 20:58:15', '2025-12-17 19:46:28', 'dJQe07w4', '7331436'), + (25263, 224, 2721, 'attending', '2024-06-21 15:53:47', '2025-12-17 19:46:29', 'dJQe07w4', '7331456'), + (25264, 224, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dJQe07w4', '7331457'), + (25265, 224, 2723, 'maybe', '2024-06-21 21:15:53', '2025-12-17 19:46:29', 'dJQe07w4', '7332389'), + (25266, 224, 2724, 'maybe', '2024-06-26 10:35:34', '2025-12-17 19:46:29', 'dJQe07w4', '7332562'), + (25267, 224, 2728, 'attending', '2024-06-21 11:27:30', '2025-12-17 19:46:29', 'dJQe07w4', '7334124'), + (25268, 224, 2729, 'maybe', '2024-06-23 03:55:34', '2025-12-17 19:46:29', 'dJQe07w4', '7335092'), + (25269, 224, 2742, 'maybe', '2024-07-03 22:18:35', '2025-12-17 19:46:29', 'dJQe07w4', '7345167'), + (25270, 224, 2753, 'maybe', '2024-07-16 08:07:27', '2025-12-17 19:46:30', 'dJQe07w4', '7355538'), + (25271, 224, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJQe07w4', '7356752'), + (25272, 224, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dJQe07w4', '7363643'), + (25273, 224, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJQe07w4', '7368606'), + (25274, 224, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJQe07w4', '7397462'), + (25275, 224, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dJQe07w4', '7424275'), + (25276, 224, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJQe07w4', '7424276'), + (25277, 224, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJQe07w4', '7432751'), + (25278, 224, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJQe07w4', '7432752'), + (25279, 224, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJQe07w4', '7432753'), + (25280, 224, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJQe07w4', '7432754'), + (25281, 224, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJQe07w4', '7432755'), + (25282, 224, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJQe07w4', '7432756'), + (25283, 224, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJQe07w4', '7432758'), + (25284, 224, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJQe07w4', '7432759'), + (25285, 224, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dJQe07w4', '7433834'), + (25286, 224, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJQe07w4', '7470197'), + (25287, 224, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dJQe07w4', '7685613'), + (25288, 224, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJQe07w4', '7688194'), + (25289, 224, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJQe07w4', '7688196'), + (25290, 224, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJQe07w4', '7688289'), + (25291, 225, 871, 'maybe', '2021-07-05 17:23:40', '2025-12-17 19:47:39', 'pmbejZKd', '4136938'), + (25292, 225, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'pmbejZKd', '4136947'), + (25293, 225, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbejZKd', '4210314'), + (25294, 225, 887, 'maybe', '2021-07-11 19:19:15', '2025-12-17 19:47:39', 'pmbejZKd', '4225444'), + (25295, 225, 892, 'attending', '2021-07-05 17:23:27', '2025-12-17 19:47:39', 'pmbejZKd', '4229418'), + (25296, 225, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'pmbejZKd', '4229420'), + (25297, 225, 894, 'maybe', '2021-07-20 13:08:00', '2025-12-17 19:47:40', 'pmbejZKd', '4229423'), + (25298, 225, 895, 'maybe', '2021-07-10 18:29:05', '2025-12-17 19:47:39', 'pmbejZKd', '4229424'), + (25299, 225, 900, 'not_attending', '2021-07-18 20:46:11', '2025-12-17 19:47:40', 'pmbejZKd', '4240316'), + (25300, 225, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbejZKd', '4240317'), + (25301, 225, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbejZKd', '4240318'), + (25302, 225, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbejZKd', '4240320'), + (25303, 225, 919, 'not_attending', '2021-07-14 09:44:12', '2025-12-17 19:47:39', 'pmbejZKd', '4275957'), + (25304, 225, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbejZKd', '4277819'), + (25305, 225, 923, 'not_attending', '2021-07-20 10:48:17', '2025-12-17 19:47:40', 'pmbejZKd', '4292773'), + (25306, 225, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbejZKd', '4301723'), + (25307, 225, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbejZKd', '4302093'), + (25308, 225, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbejZKd', '4304151'), + (25309, 225, 940, 'not_attending', '2021-07-30 16:29:50', '2025-12-17 19:47:40', 'pmbejZKd', '4309049'), + (25310, 225, 947, 'maybe', '2021-07-30 16:49:55', '2025-12-17 19:47:41', 'pmbejZKd', '4315713'), + (25311, 225, 948, 'not_attending', '2021-08-11 05:28:23', '2025-12-17 19:47:41', 'pmbejZKd', '4315714'), + (25312, 225, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'pmbejZKd', '4315726'), + (25313, 225, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbejZKd', '4356801'), + (25314, 225, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbejZKd', '4366186'), + (25315, 225, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbejZKd', '4366187'), + (25316, 225, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbejZKd', '4420735'), + (25317, 225, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbejZKd', '4420738'), + (25318, 225, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbejZKd', '4420739'), + (25319, 225, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbejZKd', '4420741'), + (25320, 225, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbejZKd', '4420744'), + (25321, 225, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbejZKd', '4420747'), + (25322, 225, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbejZKd', '4420748'), + (25323, 225, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbejZKd', '4420749'), + (25324, 225, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbejZKd', '6045684'), + (25325, 226, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'da7pZrDA', '7074364'), + (25326, 226, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'da7pZrDA', '7324073'), + (25327, 226, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'da7pZrDA', '7324074'), + (25328, 226, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'da7pZrDA', '7324075'), + (25329, 226, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'da7pZrDA', '7324078'), + (25330, 226, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'da7pZrDA', '7331457'), + (25331, 226, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'da7pZrDA', '7332564'), + (25332, 226, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'da7pZrDA', '7335193'), + (25333, 226, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'da7pZrDA', '7344575'), + (25334, 226, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'da7pZrDA', '7359624'), + (25335, 226, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'da7pZrDA', '7363643'), + (25336, 226, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'da7pZrDA', '7368606'), + (25337, 227, 1374, 'attending', '2022-05-02 21:34:39', '2025-12-17 19:47:28', 'dBWaRaPm', '5269930'), + (25338, 227, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dBWaRaPm', '5271448'), + (25339, 227, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dBWaRaPm', '5271449'), + (25340, 227, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dBWaRaPm', '5276469'), + (25341, 227, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dBWaRaPm', '5278159'), + (25342, 227, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dBWaRaPm', '5363695'), + (25343, 227, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dBWaRaPm', '5365960'), + (25344, 227, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dBWaRaPm', '5368973'), + (25345, 227, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dBWaRaPm', '5378247'), + (25346, 227, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dBWaRaPm', '5389605'), + (25347, 227, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dBWaRaPm', '5397265'), + (25348, 227, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBWaRaPm', '6045684'), + (25349, 228, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dOpbaM8m', '5630962'), + (25350, 228, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOpbaM8m', '5630966'), + (25351, 228, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOpbaM8m', '5630967'), + (25352, 228, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOpbaM8m', '5630968'), + (25353, 228, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOpbaM8m', '5642818'), + (25354, 228, 1778, 'maybe', '2022-11-02 02:07:36', '2025-12-17 19:47:15', 'dOpbaM8m', '5694251'), + (25355, 228, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOpbaM8m', '5698046'), + (25356, 228, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dOpbaM8m', '5699760'), + (25357, 228, 1786, 'not_attending', '2022-11-08 23:41:42', '2025-12-17 19:47:15', 'dOpbaM8m', '5727232'), + (25358, 228, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOpbaM8m', '5741601'), + (25359, 228, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOpbaM8m', '5763458'), + (25360, 228, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOpbaM8m', '5774172'), + (25361, 228, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOpbaM8m', '6045684'), + (25362, 229, 871, 'attending', '2021-07-10 19:45:44', '2025-12-17 19:47:39', 'N4E0NnWA', '4136938'), + (25363, 229, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'N4E0NnWA', '4136947'), + (25364, 229, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'N4E0NnWA', '4210314'), + (25365, 229, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'N4E0NnWA', '4225444'), + (25366, 229, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'N4E0NnWA', '4229420'), + (25367, 229, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'N4E0NnWA', '4229423'), + (25368, 229, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'N4E0NnWA', '4240316'), + (25369, 229, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'N4E0NnWA', '4275957'), + (25370, 229, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'N4E0NnWA', '4292773'), + (25371, 229, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4E0NnWA', '6045684'), + (25372, 230, 1480, 'not_attending', '2022-06-22 22:19:47', '2025-12-17 19:47:19', 'dx6oqzOA', '5411699'), + (25373, 230, 1482, 'not_attending', '2022-06-25 01:25:48', '2025-12-17 19:47:19', 'dx6oqzOA', '5412550'), + (25374, 230, 1485, 'attending', '2022-06-23 22:08:11', '2025-12-17 19:47:17', 'dx6oqzOA', '5416276'), + (25375, 230, 1486, 'not_attending', '2022-06-23 22:08:22', '2025-12-17 19:47:19', 'dx6oqzOA', '5416339'), + (25376, 230, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dx6oqzOA', '5422086'), + (25377, 230, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dx6oqzOA', '5422406'), + (25378, 230, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dx6oqzOA', '5424565'), + (25379, 230, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dx6oqzOA', '5426882'), + (25380, 230, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dx6oqzOA', '5427083'), + (25381, 230, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dx6oqzOA', '5441125'), + (25382, 230, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dx6oqzOA', '5441126'), + (25383, 230, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dx6oqzOA', '5441128'), + (25384, 230, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dx6oqzOA', '5446643'), + (25385, 230, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dx6oqzOA', '5453325'), + (25386, 230, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dx6oqzOA', '5454516'), + (25387, 230, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dx6oqzOA', '5454605'), + (25388, 230, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dx6oqzOA', '5455037'), + (25389, 230, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dx6oqzOA', '5461278'), + (25390, 230, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dx6oqzOA', '5469480'), + (25391, 230, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dx6oqzOA', '5471073'), + (25392, 230, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dx6oqzOA', '5474663'), + (25393, 230, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dx6oqzOA', '5482022'), + (25394, 230, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dx6oqzOA', '5482793'), + (25395, 230, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dx6oqzOA', '5488912'), + (25396, 230, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dx6oqzOA', '5492192'), + (25397, 230, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dx6oqzOA', '5493139'), + (25398, 230, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dx6oqzOA', '5493200'), + (25399, 230, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dx6oqzOA', '5502188'), + (25400, 230, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dx6oqzOA', '5512862'), + (25401, 230, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dx6oqzOA', '5513985'), + (25402, 230, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx6oqzOA', '6045684'), + (25403, 231, 251, 'maybe', '2021-01-26 03:16:24', '2025-12-17 19:47:49', 'v4DPq664', '3149482'), + (25404, 231, 400, 'attending', '2021-01-27 01:59:39', '2025-12-17 19:47:50', 'v4DPq664', '3236455'), + (25405, 231, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'v4DPq664', '3430267'), + (25406, 231, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'v4DPq664', '3468125'), + (25407, 231, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'v4DPq664', '3470303'), + (25408, 231, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'v4DPq664', '3470991'), + (25409, 231, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DPq664', '6045684'), + (25410, 232, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Aen3RgV4', '7424275'), + (25411, 232, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', 'Aen3RgV4', '7432753'), + (25412, 232, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'Aen3RgV4', '7432756'), + (25413, 232, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'Aen3RgV4', '7432758'), + (25414, 232, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Aen3RgV4', '7470197'), + (25415, 232, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Aen3RgV4', '7685613'), + (25416, 232, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Aen3RgV4', '7688194'), + (25417, 232, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Aen3RgV4', '7688196'), + (25418, 232, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Aen3RgV4', '7688289'), + (25419, 233, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'myDzWVJd', '4356801'), + (25420, 233, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'myDzWVJd', '4420738'), + (25421, 233, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'myDzWVJd', '4420739'), + (25422, 233, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'myDzWVJd', '4420741'), + (25423, 233, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'myDzWVJd', '4420744'), + (25424, 233, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'myDzWVJd', '4420747'), + (25425, 233, 1003, 'attending', '2021-09-06 20:35:33', '2025-12-17 19:47:43', 'myDzWVJd', '4438802'), + (25426, 233, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'myDzWVJd', '4461883'), + (25427, 233, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'myDzWVJd', '4508342'), + (25428, 233, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'myDzWVJd', '4568602'), + (25429, 233, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'myDzWVJd', '4572153'), + (25430, 233, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'myDzWVJd', '4585962'), + (25431, 233, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'myDzWVJd', '4596356'), + (25432, 233, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'myDzWVJd', '4598860'), + (25433, 233, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'myDzWVJd', '4598861'), + (25434, 233, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'myDzWVJd', '4602797'), + (25435, 233, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'myDzWVJd', '4637896'), + (25436, 233, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'myDzWVJd', '4642994'), + (25437, 233, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'myDzWVJd', '4642995'), + (25438, 233, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'myDzWVJd', '4642996'), + (25439, 233, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'myDzWVJd', '4642997'), + (25440, 233, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'myDzWVJd', '4645687'), + (25441, 233, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'myDzWVJd', '4645698'), + (25442, 233, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'myDzWVJd', '4645704'), + (25443, 233, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'myDzWVJd', '4645705'), + (25444, 233, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'myDzWVJd', '4668385'), + (25445, 233, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'myDzWVJd', '6045684'), + (25446, 234, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'd9n8lJem', '4420744'), + (25447, 234, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'd9n8lJem', '4420747'), + (25448, 234, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd9n8lJem', '4568602'), + (25449, 234, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'd9n8lJem', '4572153'), + (25450, 234, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'd9n8lJem', '4585962'), + (25451, 234, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'd9n8lJem', '4596356'), + (25452, 234, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'd9n8lJem', '4598860'), + (25453, 234, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'd9n8lJem', '4598861'), + (25454, 234, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'd9n8lJem', '4602797'), + (25455, 234, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'd9n8lJem', '4637896'), + (25456, 234, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'd9n8lJem', '4642994'), + (25457, 234, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'd9n8lJem', '4642995'), + (25458, 234, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'd9n8lJem', '4642996'), + (25459, 234, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'd9n8lJem', '4642997'), + (25460, 234, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd9n8lJem', '4645687'), + (25461, 234, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd9n8lJem', '4645698'), + (25462, 234, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd9n8lJem', '4645704'), + (25463, 234, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd9n8lJem', '4645705'), + (25464, 234, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'd9n8lJem', '4668385'), + (25465, 234, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9n8lJem', '6045684'), + (25466, 235, 250, 'attending', '2021-02-09 21:58:22', '2025-12-17 19:47:50', 'w4Wk1xp4', '3149481'), + (25467, 235, 602, 'maybe', '2021-02-13 23:35:08', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470303'), + (25468, 235, 603, 'attending', '2021-02-19 23:30:55', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470304'), + (25469, 235, 604, 'not_attending', '2021-02-25 08:41:13', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470305'), + (25470, 235, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'w4Wk1xp4', '3470991'), + (25471, 235, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'w4Wk1xp4', '3517815'), + (25472, 235, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'w4Wk1xp4', '3523941'), + (25473, 235, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4Wk1xp4', '3533850'), + (25474, 235, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4Wk1xp4', '3536632'), + (25475, 235, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'w4Wk1xp4', '3536656'), + (25476, 235, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'w4Wk1xp4', '3539916'), + (25477, 235, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'w4Wk1xp4', '3539917'), + (25478, 235, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'w4Wk1xp4', '3539918'), + (25479, 235, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539919'), + (25480, 235, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539920'), + (25481, 235, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539921'), + (25482, 235, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4Wk1xp4', '3539922'), + (25483, 235, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'w4Wk1xp4', '3539923'), + (25484, 235, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4Wk1xp4', '6045684'), + (25485, 236, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ6ZJwd', '6045684'), + (25486, 237, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7zOvzPd', '6045684'), + (25487, 238, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'mq1eqrLm', '4420744'), + (25488, 238, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mq1eqrLm', '4420747'), + (25489, 238, 997, 'attending', '2021-10-22 14:45:12', '2025-12-17 19:47:35', 'mq1eqrLm', '4420748'), + (25490, 238, 998, 'attending', '2021-10-29 14:30:08', '2025-12-17 19:47:36', 'mq1eqrLm', '4420749'), + (25491, 238, 1006, 'not_attending', '2021-10-01 20:29:04', '2025-12-17 19:47:34', 'mq1eqrLm', '4438808'), + (25492, 238, 1008, 'attending', '2021-10-12 18:29:44', '2025-12-17 19:47:35', 'mq1eqrLm', '4438810'), + (25493, 238, 1009, 'not_attending', '2021-10-11 22:45:41', '2025-12-17 19:47:34', 'mq1eqrLm', '4438811'), + (25494, 238, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mq1eqrLm', '4568602'), + (25495, 238, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mq1eqrLm', '4572153'), + (25496, 238, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mq1eqrLm', '4585962'), + (25497, 238, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mq1eqrLm', '4596356'), + (25498, 238, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'mq1eqrLm', '4598860'), + (25499, 238, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'mq1eqrLm', '4598861'), + (25500, 238, 1099, 'not_attending', '2021-11-06 20:57:05', '2025-12-17 19:47:36', 'mq1eqrLm', '4602797'), + (25501, 238, 1114, 'not_attending', '2021-11-14 00:26:51', '2025-12-17 19:47:36', 'mq1eqrLm', '4637896'), + (25502, 238, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mq1eqrLm', '4642994'), + (25503, 238, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mq1eqrLm', '4642995'), + (25504, 238, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mq1eqrLm', '4642996'), + (25505, 238, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mq1eqrLm', '4642997'), + (25506, 238, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mq1eqrLm', '4645687'), + (25507, 238, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mq1eqrLm', '4645698'), + (25508, 238, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mq1eqrLm', '4645704'), + (25509, 238, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mq1eqrLm', '4645705'), + (25510, 238, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mq1eqrLm', '4668385'), + (25511, 238, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mq1eqrLm', '4694407'), + (25512, 238, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mq1eqrLm', '4736497'), + (25513, 238, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mq1eqrLm', '4736499'), + (25514, 238, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mq1eqrLm', '4736500'), + (25515, 238, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mq1eqrLm', '4736503'), + (25516, 238, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mq1eqrLm', '4736504'), + (25517, 238, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mq1eqrLm', '4746789'), + (25518, 238, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mq1eqrLm', '4753929'), + (25519, 238, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mq1eqrLm', '5038850'), + (25520, 238, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mq1eqrLm', '5045826'), + (25521, 238, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mq1eqrLm', '5132533'), + (25522, 238, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mq1eqrLm', '5186582'), + (25523, 238, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mq1eqrLm', '5186583'), + (25524, 238, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mq1eqrLm', '5186585'), + (25525, 238, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mq1eqrLm', '5190437'), + (25526, 238, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mq1eqrLm', '5215989'), + (25527, 238, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mq1eqrLm', '6045684'), + (25528, 239, 247, 'attending', '2020-12-29 22:14:10', '2025-12-17 19:47:48', '8mRz3zlm', '3149478'), + (25529, 239, 400, 'not_attending', '2021-02-05 01:10:20', '2025-12-17 19:47:50', '8mRz3zlm', '3236455'), + (25530, 239, 408, 'not_attending', '2021-02-04 19:35:16', '2025-12-17 19:47:50', '8mRz3zlm', '3236466'), + (25531, 239, 526, 'attending', '2021-01-02 22:45:47', '2025-12-17 19:47:48', '8mRz3zlm', '3351539'), + (25532, 239, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '8mRz3zlm', '3386848'), + (25533, 239, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '8mRz3zlm', '3389527'), + (25534, 239, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '8mRz3zlm', '3396499'), + (25535, 239, 548, 'attending', '2021-01-16 21:35:14', '2025-12-17 19:47:48', '8mRz3zlm', '3403650'), + (25536, 239, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '8mRz3zlm', '3406988'), + (25537, 239, 551, 'attending', '2021-01-20 00:00:24', '2025-12-17 19:47:49', '8mRz3zlm', '3407219'), + (25538, 239, 555, 'attending', '2021-01-20 00:00:01', '2025-12-17 19:47:49', '8mRz3zlm', '3416576'), + (25539, 239, 556, 'not_attending', '2021-01-27 00:08:55', '2025-12-17 19:47:49', '8mRz3zlm', '3417170'), + (25540, 239, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '8mRz3zlm', '3418925'), + (25541, 239, 562, 'attending', '2021-01-23 20:38:33', '2025-12-17 19:47:49', '8mRz3zlm', '3424911'), + (25542, 239, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', '8mRz3zlm', '3426074'), + (25543, 239, 567, 'attending', '2021-01-27 23:17:33', '2025-12-17 19:47:50', '8mRz3zlm', '3428895'), + (25544, 239, 568, 'attending', '2021-01-27 22:55:34', '2025-12-17 19:47:50', '8mRz3zlm', '3430267'), + (25545, 239, 569, 'attending', '2021-01-27 00:08:03', '2025-12-17 19:47:49', '8mRz3zlm', '3432673'), + (25546, 239, 570, 'attending', '2021-02-05 15:12:37', '2025-12-17 19:47:50', '8mRz3zlm', '3435538'), + (25547, 239, 576, 'not_attending', '2021-02-01 04:53:18', '2025-12-17 19:47:50', '8mRz3zlm', '3438748'), + (25548, 239, 577, 'attending', '2021-01-29 22:29:17', '2025-12-17 19:47:49', '8mRz3zlm', '3439167'), + (25549, 239, 578, 'not_attending', '2021-02-01 04:52:34', '2025-12-17 19:47:50', '8mRz3zlm', '3440043'), + (25550, 239, 579, 'maybe', '2021-02-05 18:53:01', '2025-12-17 19:47:50', '8mRz3zlm', '3440978'), + (25551, 239, 580, 'attending', '2021-01-30 18:38:45', '2025-12-17 19:47:50', '8mRz3zlm', '3444240'), + (25552, 239, 581, 'attending', '2021-01-30 03:55:15', '2025-12-17 19:47:50', '8mRz3zlm', '3445029'), + (25553, 239, 582, 'not_attending', '2021-02-01 04:52:26', '2025-12-17 19:47:50', '8mRz3zlm', '3445769'), + (25554, 239, 587, 'maybe', '2021-02-15 23:56:19', '2025-12-17 19:47:50', '8mRz3zlm', '3449470'), + (25555, 239, 588, 'attending', '2021-02-02 18:08:01', '2025-12-17 19:47:50', '8mRz3zlm', '3449471'), + (25556, 239, 589, 'maybe', '2021-02-19 03:15:02', '2025-12-17 19:47:50', '8mRz3zlm', '3449473'), + (25557, 239, 591, 'not_attending', '2021-02-08 22:18:41', '2025-12-17 19:47:50', '8mRz3zlm', '3465880'), + (25558, 239, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '8mRz3zlm', '3468125'), + (25559, 239, 602, 'attending', '2021-02-07 17:45:45', '2025-12-17 19:47:50', '8mRz3zlm', '3470303'), + (25560, 239, 603, 'not_attending', '2021-02-20 21:01:25', '2025-12-17 19:47:50', '8mRz3zlm', '3470304'), + (25561, 239, 604, 'attending', '2021-02-07 17:45:49', '2025-12-17 19:47:50', '8mRz3zlm', '3470305'), + (25562, 239, 605, 'not_attending', '2021-02-15 00:51:50', '2025-12-17 19:47:50', '8mRz3zlm', '3470991'), + (25563, 239, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '8mRz3zlm', '3517815'), + (25564, 239, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '8mRz3zlm', '3517816'), + (25565, 239, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '8mRz3zlm', '3523941'), + (25566, 239, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '8mRz3zlm', '3533850'), + (25567, 239, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8mRz3zlm', '3536632'), + (25568, 239, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8mRz3zlm', '3536656'), + (25569, 239, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '8mRz3zlm', '3539916'), + (25570, 239, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '8mRz3zlm', '3539917'), + (25571, 239, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '8mRz3zlm', '3539918'), + (25572, 239, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '8mRz3zlm', '3539919'), + (25573, 239, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '8mRz3zlm', '3539920'), + (25574, 239, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '8mRz3zlm', '3539921'), + (25575, 239, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '8mRz3zlm', '3539922'), + (25576, 239, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8mRz3zlm', '3539923'), + (25577, 239, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8mRz3zlm', '3539927'), + (25578, 239, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8mRz3zlm', '3582734'), + (25579, 239, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8mRz3zlm', '3619523'), + (25580, 239, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRz3zlm', '6045684'), + (25581, 240, 400, 'attending', '2021-02-02 01:54:10', '2025-12-17 19:47:50', 'rdOr5j84', '3236455'), + (25582, 240, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'rdOr5j84', '3468125'), + (25583, 240, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'rdOr5j84', '3470303'), + (25584, 240, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'rdOr5j84', '3470305'), + (25585, 240, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOr5j84', '3470991'), + (25586, 240, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'rdOr5j84', '3517815'), + (25587, 240, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'rdOr5j84', '3517816'), + (25588, 240, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'rdOr5j84', '3523941'), + (25589, 240, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOr5j84', '3533850'), + (25590, 240, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOr5j84', '3536632'), + (25591, 240, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'rdOr5j84', '3536656'), + (25592, 240, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'rdOr5j84', '3539916'), + (25593, 240, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'rdOr5j84', '3539917'), + (25594, 240, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOr5j84', '3539918'), + (25595, 240, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'rdOr5j84', '3539919'), + (25596, 240, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'rdOr5j84', '3539920'), + (25597, 240, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'rdOr5j84', '3539921'), + (25598, 240, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'rdOr5j84', '3539922'), + (25599, 240, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'rdOr5j84', '3539923'), + (25600, 240, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOr5j84', '3539927'), + (25601, 240, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOr5j84', '3582734'), + (25602, 240, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOr5j84', '3619523'), + (25603, 240, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOr5j84', '6045684'), + (25604, 241, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amG67wLd', '4694407'), + (25605, 241, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'amG67wLd', '4736497'), + (25606, 241, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amG67wLd', '4736499'), + (25607, 241, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'amG67wLd', '4736500'), + (25608, 241, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'amG67wLd', '4736503'), + (25609, 241, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amG67wLd', '4736504'), + (25610, 241, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'amG67wLd', '4746789'), + (25611, 241, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amG67wLd', '4753929'), + (25612, 241, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amG67wLd', '5038850'), + (25613, 241, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amG67wLd', '5045826'), + (25614, 241, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amG67wLd', '5132533'), + (25615, 241, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'amG67wLd', '5186582'), + (25616, 241, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'amG67wLd', '5186583'), + (25617, 241, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amG67wLd', '5186585'), + (25618, 241, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amG67wLd', '5190437'), + (25619, 241, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'amG67wLd', '5195095'), + (25620, 241, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'amG67wLd', '5215989'), + (25621, 241, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'amG67wLd', '5223686'), + (25622, 241, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'amG67wLd', '5247467'), + (25623, 241, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'amG67wLd', '5260800'), + (25624, 241, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'amG67wLd', '5269930'), + (25625, 241, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'amG67wLd', '5271448'), + (25626, 241, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'amG67wLd', '5271449'), + (25627, 241, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'amG67wLd', '5278159'), + (25628, 241, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'amG67wLd', '5363695'), + (25629, 241, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'amG67wLd', '5365960'), + (25630, 241, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'amG67wLd', '5378247'), + (25631, 241, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'amG67wLd', '5389605'), + (25632, 241, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'amG67wLd', '5397265'), + (25633, 241, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'amG67wLd', '5404786'), + (25634, 241, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'amG67wLd', '5405203'), + (25635, 241, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'amG67wLd', '5412550'), + (25636, 241, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'amG67wLd', '5415046'), + (25637, 241, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'amG67wLd', '5422086'), + (25638, 241, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'amG67wLd', '5422406'), + (25639, 241, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'amG67wLd', '5424565'), + (25640, 241, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'amG67wLd', '5426882'), + (25641, 241, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'amG67wLd', '5441125'), + (25642, 241, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'amG67wLd', '5441126'), + (25643, 241, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'amG67wLd', '5441128'), + (25644, 241, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'amG67wLd', '5441131'), + (25645, 241, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'amG67wLd', '5441132'), + (25646, 241, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'amG67wLd', '5453325'), + (25647, 241, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'amG67wLd', '5454516'), + (25648, 241, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'amG67wLd', '5454605'), + (25649, 241, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'amG67wLd', '5455037'), + (25650, 241, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'amG67wLd', '5461278'), + (25651, 241, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'amG67wLd', '5469480'), + (25652, 241, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'amG67wLd', '5474663'), + (25653, 241, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'amG67wLd', '5482022'), + (25654, 241, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'amG67wLd', '5488912'), + (25655, 241, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'amG67wLd', '5492192'), + (25656, 241, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'amG67wLd', '5493139'), + (25657, 241, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'amG67wLd', '5493200'), + (25658, 241, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'amG67wLd', '5502188'), + (25659, 241, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'amG67wLd', '5505059'), + (25660, 241, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'amG67wLd', '5509055'), + (25661, 241, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'amG67wLd', '5512862'), + (25662, 241, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'amG67wLd', '5513985'), + (25663, 241, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'amG67wLd', '5519981'), + (25664, 241, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'amG67wLd', '5522550'), + (25665, 241, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'amG67wLd', '5534683'), + (25666, 241, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'amG67wLd', '5537735'), + (25667, 241, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'amG67wLd', '5540859'), + (25668, 241, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'amG67wLd', '5546619'), + (25669, 241, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'amG67wLd', '5557747'), + (25670, 241, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'amG67wLd', '5560255'), + (25671, 241, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'amG67wLd', '5562906'), + (25672, 241, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'amG67wLd', '5600604'), + (25673, 241, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'amG67wLd', '5605544'), + (25674, 241, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'amG67wLd', '5630960'), + (25675, 241, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'amG67wLd', '5630961'), + (25676, 241, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'amG67wLd', '5630962'), + (25677, 241, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'amG67wLd', '5630966'), + (25678, 241, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'amG67wLd', '5630967'), + (25679, 241, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'amG67wLd', '5630968'), + (25680, 241, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'amG67wLd', '5635406'), + (25681, 241, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'amG67wLd', '5638765'), + (25682, 241, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'amG67wLd', '5640097'), + (25683, 241, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'amG67wLd', '5640843'), + (25684, 241, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'amG67wLd', '5641521'), + (25685, 241, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'amG67wLd', '5642818'), + (25686, 241, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'amG67wLd', '5652395'), + (25687, 241, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'amG67wLd', '5670445'), + (25688, 241, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'amG67wLd', '5671637'), + (25689, 241, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'amG67wLd', '5672329'), + (25690, 241, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'amG67wLd', '5674057'), + (25691, 241, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'amG67wLd', '5674060'), + (25692, 241, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'amG67wLd', '5677461'), + (25693, 241, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'amG67wLd', '5698046'), + (25694, 241, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'amG67wLd', '5699760'), + (25695, 241, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'amG67wLd', '5741601'), + (25696, 241, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'amG67wLd', '5763458'), + (25697, 241, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'amG67wLd', '5774172'), + (25698, 241, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'amG67wLd', '5818247'), + (25699, 241, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'amG67wLd', '5819471'), + (25700, 241, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'amG67wLd', '5827739'), + (25701, 241, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'amG67wLd', '5844306'), + (25702, 241, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'amG67wLd', '5850159'), + (25703, 241, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'amG67wLd', '5858999'), + (25704, 241, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'amG67wLd', '5871984'), + (25705, 241, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'amG67wLd', '5876354'), + (25706, 241, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'amG67wLd', '5880939'), + (25707, 241, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'amG67wLd', '5880940'), + (25708, 241, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'amG67wLd', '5880942'), + (25709, 241, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'amG67wLd', '5880943'), + (25710, 241, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'amG67wLd', '5887890'), + (25711, 241, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'amG67wLd', '5888598'), + (25712, 241, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'amG67wLd', '5893260'), + (25713, 241, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'amG67wLd', '5899826'), + (25714, 241, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'amG67wLd', '5900199'), + (25715, 241, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'amG67wLd', '5900200'), + (25716, 241, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'amG67wLd', '5900202'), + (25717, 241, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'amG67wLd', '5900203'), + (25718, 241, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'amG67wLd', '5901108'), + (25719, 241, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'amG67wLd', '5901126'), + (25720, 241, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'amG67wLd', '5901606'), + (25721, 241, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'amG67wLd', '5909655'), + (25722, 241, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'amG67wLd', '5910522'), + (25723, 241, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'amG67wLd', '5910526'), + (25724, 241, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'amG67wLd', '5910528'), + (25725, 241, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'amG67wLd', '5916219'), + (25726, 241, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'amG67wLd', '5936234'), + (25727, 241, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'amG67wLd', '5958351'), + (25728, 241, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'amG67wLd', '5959751'), + (25729, 241, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'amG67wLd', '5959755'), + (25730, 241, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'amG67wLd', '5960055'), + (25731, 241, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'amG67wLd', '5961684'), + (25732, 241, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'amG67wLd', '5962132'), + (25733, 241, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'amG67wLd', '5962133'), + (25734, 241, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'amG67wLd', '5962134'), + (25735, 241, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'amG67wLd', '5962317'), + (25736, 241, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'amG67wLd', '5962318'), + (25737, 241, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'amG67wLd', '5965933'), + (25738, 241, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'amG67wLd', '5967014'), + (25739, 241, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'amG67wLd', '5972815'), + (25740, 241, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'amG67wLd', '5974016'), + (25741, 241, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'amG67wLd', '5981515'), + (25742, 241, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'amG67wLd', '5993516'), + (25743, 241, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'amG67wLd', '5998939'), + (25744, 241, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'amG67wLd', '6028191'), + (25745, 241, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'amG67wLd', '6040066'), + (25746, 241, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'amG67wLd', '6042717'), + (25747, 241, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'amG67wLd', '6044838'), + (25748, 241, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'amG67wLd', '6044839'), + (25749, 241, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amG67wLd', '6045684'), + (25750, 241, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'amG67wLd', '6050104'), + (25751, 241, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'amG67wLd', '6053195'), + (25752, 241, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'amG67wLd', '6053198'), + (25753, 241, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'amG67wLd', '6056085'), + (25754, 241, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'amG67wLd', '6056916'), + (25755, 241, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'amG67wLd', '6059290'), + (25756, 241, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'amG67wLd', '6060328'), + (25757, 241, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'amG67wLd', '6061037'), + (25758, 241, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'amG67wLd', '6061039'), + (25759, 241, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'amG67wLd', '6067245'), + (25760, 241, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'amG67wLd', '6068094'), + (25761, 241, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'amG67wLd', '6068252'), + (25762, 241, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'amG67wLd', '6068253'), + (25763, 241, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'amG67wLd', '6068254'), + (25764, 241, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'amG67wLd', '6068280'), + (25765, 241, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'amG67wLd', '6069093'), + (25766, 241, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'amG67wLd', '6072528'), + (25767, 241, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'amG67wLd', '6079840'), + (25768, 241, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'amG67wLd', '6083398'), + (25769, 241, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'amG67wLd', '6093504'), + (25770, 241, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'amG67wLd', '6097414'), + (25771, 241, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'amG67wLd', '6097442'), + (25772, 241, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'amG67wLd', '6097684'), + (25773, 241, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'amG67wLd', '6098762'), + (25774, 241, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'amG67wLd', '6101361'), + (25775, 241, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'amG67wLd', '6101362'), + (25776, 241, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'amG67wLd', '6107314'), + (25777, 241, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'amG67wLd', '6120034'), + (25778, 241, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'amG67wLd', '6136733'), + (25779, 241, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'amG67wLd', '6137989'), + (25780, 241, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'amG67wLd', '6150864'), + (25781, 241, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'amG67wLd', '6155491'), + (25782, 241, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'amG67wLd', '6164417'), + (25783, 241, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'amG67wLd', '6166388'), + (25784, 241, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'amG67wLd', '6176439'), + (25785, 241, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'amG67wLd', '6182410'), + (25786, 241, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'amG67wLd', '6185812'), + (25787, 241, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'amG67wLd', '6187651'), + (25788, 241, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'amG67wLd', '6187963'), + (25789, 241, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'amG67wLd', '6187964'), + (25790, 241, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'amG67wLd', '6187966'), + (25791, 241, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'amG67wLd', '6187967'), + (25792, 241, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'amG67wLd', '6187969'), + (25793, 241, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'amG67wLd', '6334878'), + (25794, 241, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'amG67wLd', '6337236'), + (25795, 241, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'amG67wLd', '6337970'), + (25796, 241, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'amG67wLd', '6338308'), + (25797, 241, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'amG67wLd', '6341710'), + (25798, 241, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'amG67wLd', '6342044'), + (25799, 241, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'amG67wLd', '6342298'), + (25800, 241, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'amG67wLd', '6343294'), + (25801, 241, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'amG67wLd', '6347034'), + (25802, 241, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'amG67wLd', '6347056'), + (25803, 241, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'amG67wLd', '6353830'), + (25804, 241, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'amG67wLd', '6353831'), + (25805, 241, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'amG67wLd', '6357867'), + (25806, 241, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'amG67wLd', '6358652'), + (25807, 241, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'amG67wLd', '6361709'), + (25808, 241, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'amG67wLd', '6361710'), + (25809, 241, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'amG67wLd', '6361711'), + (25810, 241, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'amG67wLd', '6361712'), + (25811, 241, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'amG67wLd', '6361713'), + (25812, 241, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'amG67wLd', '6382573'), + (25813, 241, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'amG67wLd', '6388604'), + (25814, 241, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'amG67wLd', '6394629'), + (25815, 241, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'amG67wLd', '6394631'), + (25816, 241, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'amG67wLd', '6440863'), + (25817, 241, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'amG67wLd', '6445440'), + (25818, 241, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'amG67wLd', '6453951'), + (25819, 241, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'amG67wLd', '6461696'), + (25820, 241, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'amG67wLd', '6462129'), + (25821, 241, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'amG67wLd', '6463218'), + (25822, 241, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'amG67wLd', '6472181'), + (25823, 241, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'amG67wLd', '6482693'), + (25824, 241, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'amG67wLd', '6484200'), + (25825, 241, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'amG67wLd', '6484680'), + (25826, 241, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'amG67wLd', '6507741'), + (25827, 241, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'amG67wLd', '6514659'), + (25828, 241, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'amG67wLd', '6514660'), + (25829, 241, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'amG67wLd', '6519103'), + (25830, 241, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'amG67wLd', '6535681'), + (25831, 241, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'amG67wLd', '6584747'), + (25832, 241, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'amG67wLd', '6587097'), + (25833, 241, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'amG67wLd', '6609022'), + (25834, 241, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'amG67wLd', '6632757'), + (25835, 241, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'amG67wLd', '6644187'), + (25836, 241, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'amG67wLd', '6648951'), + (25837, 241, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'amG67wLd', '6648952'), + (25838, 241, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'amG67wLd', '6655401'), + (25839, 241, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'amG67wLd', '6661585'), + (25840, 241, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'amG67wLd', '6661588'), + (25841, 241, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'amG67wLd', '6661589'), + (25842, 241, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'amG67wLd', '6699906'), + (25843, 241, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'amG67wLd', '6699913'), + (25844, 241, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'amG67wLd', '6701109'), + (25845, 241, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'amG67wLd', '6705219'), + (25846, 241, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'amG67wLd', '6710153'), + (25847, 241, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'amG67wLd', '6711552'), + (25848, 241, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'amG67wLd', '6711553'), + (25849, 241, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'amG67wLd', '6722688'), + (25850, 241, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'amG67wLd', '6730620'), + (25851, 241, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'amG67wLd', '6740364'), + (25852, 241, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'amG67wLd', '6743829'), + (25853, 241, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'amG67wLd', '7030380'), + (25854, 241, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'amG67wLd', '7033677'), + (25855, 241, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'amG67wLd', '7044715'), + (25856, 241, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'amG67wLd', '7050318'), + (25857, 241, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'amG67wLd', '7050319'), + (25858, 241, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'amG67wLd', '7050322'), + (25859, 241, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'amG67wLd', '7057804'), + (25860, 241, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'amG67wLd', '7072824'), + (25861, 241, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'amG67wLd', '7074348'), + (25862, 241, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'amG67wLd', '7074364'), + (25863, 241, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'amG67wLd', '7089267'), + (25864, 241, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'amG67wLd', '7098747'), + (25865, 241, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'amG67wLd', '7113468'), + (25866, 241, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'amG67wLd', '7114856'), + (25867, 241, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'amG67wLd', '7114951'), + (25868, 241, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'amG67wLd', '7114955'), + (25869, 241, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'amG67wLd', '7114956'), + (25870, 241, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'amG67wLd', '7114957'), + (25871, 241, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'amG67wLd', '7159484'), + (25872, 241, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'amG67wLd', '7178446'), + (25873, 241, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'amG67wLd', '7220467'), + (25874, 241, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'amG67wLd', '7240354'), + (25875, 241, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'amG67wLd', '7251633'), + (25876, 241, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'amG67wLd', '7324073'), + (25877, 241, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'amG67wLd', '7324074'), + (25878, 241, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'amG67wLd', '7324075'), + (25879, 241, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'amG67wLd', '7324078'), + (25880, 241, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'amG67wLd', '7324082'), + (25881, 241, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'amG67wLd', '7331457'), + (25882, 241, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'amG67wLd', '7363643'), + (25883, 241, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'amG67wLd', '7368606'), + (25884, 241, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'amG67wLd', '7397462'), + (25885, 241, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'amG67wLd', '7424275'), + (25886, 241, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'amG67wLd', '7432751'), + (25887, 241, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'amG67wLd', '7432752'), + (25888, 241, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'amG67wLd', '7432753'), + (25889, 241, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'amG67wLd', '7432754'), + (25890, 241, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'amG67wLd', '7432755'), + (25891, 241, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'amG67wLd', '7432756'), + (25892, 241, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'amG67wLd', '7432758'), + (25893, 241, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'amG67wLd', '7432759'), + (25894, 241, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'amG67wLd', '7433834'), + (25895, 241, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'amG67wLd', '7470197'), + (25896, 241, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'amG67wLd', '7685613'), + (25897, 241, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'amG67wLd', '7688194'), + (25898, 241, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'amG67wLd', '7688196'), + (25899, 241, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'amG67wLd', '7688289'), + (25900, 241, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'amG67wLd', '7692763'), + (25901, 241, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'amG67wLd', '7697552'), + (25902, 241, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'amG67wLd', '7699878'), + (25903, 241, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'amG67wLd', '7704043'), + (25904, 241, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'amG67wLd', '7712467'), + (25905, 241, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'amG67wLd', '7713585'), + (25906, 241, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'amG67wLd', '7713586'), + (25907, 241, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'amG67wLd', '7738518'), + (25908, 241, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'amG67wLd', '7750636'), + (25909, 241, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'amG67wLd', '7796540'), + (25910, 241, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'amG67wLd', '7796541'), + (25911, 241, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'amG67wLd', '7796542'), + (25912, 241, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'amG67wLd', '7825913'), + (25913, 241, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'amG67wLd', '7826209'), + (25914, 241, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'amG67wLd', '7834742'), + (25915, 241, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'amG67wLd', '7842108'), + (25916, 241, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'amG67wLd', '7842902'), + (25917, 241, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'amG67wLd', '7842903'), + (25918, 241, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'amG67wLd', '7842904'), + (25919, 241, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'amG67wLd', '7842905'), + (25920, 241, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'amG67wLd', '7855719'), + (25921, 241, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'amG67wLd', '7860683'), + (25922, 241, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'amG67wLd', '7860684'), + (25923, 241, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'amG67wLd', '7866095'), + (25924, 241, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'amG67wLd', '7869170'), + (25925, 241, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'amG67wLd', '7869188'), + (25926, 241, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'amG67wLd', '7869201'), + (25927, 241, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'amG67wLd', '7877465'), + (25928, 241, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'amG67wLd', '7888250'), + (25929, 241, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'amG67wLd', '7904777'), + (25930, 241, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'amG67wLd', '8349164'), + (25931, 241, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'amG67wLd', '8349545'), + (25932, 241, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'amG67wLd', '8368028'), + (25933, 241, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'amG67wLd', '8368029'), + (25934, 241, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'amG67wLd', '8388462'), + (25935, 241, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'amG67wLd', '8400273'), + (25936, 241, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'amG67wLd', '8400275'), + (25937, 241, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'amG67wLd', '8400276'), + (25938, 241, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'amG67wLd', '8404977'), + (25939, 241, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'amG67wLd', '8430783'), + (25940, 241, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'amG67wLd', '8430784'), + (25941, 241, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'amG67wLd', '8430799'), + (25942, 241, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'amG67wLd', '8430800'), + (25943, 241, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'amG67wLd', '8430801'), + (25944, 241, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'amG67wLd', '8438709'), + (25945, 241, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'amG67wLd', '8457738'), + (25946, 241, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'amG67wLd', '8459566'), + (25947, 241, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'amG67wLd', '8459567'), + (25948, 241, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'amG67wLd', '8461032'), + (25949, 241, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'amG67wLd', '8477877'), + (25950, 241, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'amG67wLd', '8485688'), + (25951, 241, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'amG67wLd', '8490587'), + (25952, 241, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'amG67wLd', '8493552'), + (25953, 241, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'amG67wLd', '8493553'), + (25954, 241, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'amG67wLd', '8493554'), + (25955, 241, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'amG67wLd', '8493555'), + (25956, 241, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'amG67wLd', '8493556'), + (25957, 241, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'amG67wLd', '8493557'), + (25958, 241, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'amG67wLd', '8493558'), + (25959, 241, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'amG67wLd', '8493559'), + (25960, 241, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'amG67wLd', '8493560'), + (25961, 241, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'amG67wLd', '8493561'), + (25962, 241, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'amG67wLd', '8493572'), + (25963, 241, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'amG67wLd', '8540725'), + (25964, 241, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'amG67wLd', '8555421'), + (25965, 242, 1659, 'attending', '2022-09-23 02:40:11', '2025-12-17 19:47:11', 'd8L5Oo0d', '5557747'), + (25966, 242, 1667, 'attending', '2022-09-24 20:54:44', '2025-12-17 19:47:11', 'd8L5Oo0d', '5563221'), + (25967, 242, 1668, 'not_attending', '2022-10-01 19:48:22', '2025-12-17 19:47:12', 'd8L5Oo0d', '5563222'), + (25968, 242, 1676, 'attending', '2022-09-21 13:23:56', '2025-12-17 19:47:11', 'd8L5Oo0d', '5596181'), + (25969, 242, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd8L5Oo0d', '5600604'), + (25970, 242, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd8L5Oo0d', '5605544'), + (25971, 242, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'd8L5Oo0d', '5606737'), + (25972, 242, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd8L5Oo0d', '5630960'), + (25973, 242, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd8L5Oo0d', '5630961'), + (25974, 242, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd8L5Oo0d', '5630962'), + (25975, 242, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd8L5Oo0d', '5630966'), + (25976, 242, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd8L5Oo0d', '5630967'), + (25977, 242, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd8L5Oo0d', '5630968'), + (25978, 242, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd8L5Oo0d', '5635406'), + (25979, 242, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd8L5Oo0d', '5638765'), + (25980, 242, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd8L5Oo0d', '5640097'), + (25981, 242, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'd8L5Oo0d', '5640843'), + (25982, 242, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd8L5Oo0d', '5641521'), + (25983, 242, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd8L5Oo0d', '5642818'), + (25984, 242, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd8L5Oo0d', '5652395'), + (25985, 242, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd8L5Oo0d', '5670445'), + (25986, 242, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd8L5Oo0d', '5671637'), + (25987, 242, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd8L5Oo0d', '5672329'), + (25988, 242, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd8L5Oo0d', '5674057'), + (25989, 242, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd8L5Oo0d', '5674060'), + (25990, 242, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd8L5Oo0d', '5677461'), + (25991, 242, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd8L5Oo0d', '5698046'), + (25992, 242, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd8L5Oo0d', '5699760'), + (25993, 242, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd8L5Oo0d', '5741601'), + (25994, 242, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd8L5Oo0d', '5763458'), + (25995, 242, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd8L5Oo0d', '5774172'), + (25996, 242, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd8L5Oo0d', '5818247'), + (25997, 242, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd8L5Oo0d', '5819471'), + (25998, 242, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd8L5Oo0d', '5827739'), + (25999, 242, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd8L5Oo0d', '5844306'), + (26000, 242, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd8L5Oo0d', '5850159'), + (26001, 242, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd8L5Oo0d', '5858999'), + (26002, 242, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd8L5Oo0d', '5871984'), + (26003, 242, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd8L5Oo0d', '5876354'), + (26004, 242, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd8L5Oo0d', '5880939'), + (26005, 242, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd8L5Oo0d', '5887890'), + (26006, 242, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd8L5Oo0d', '5888598'), + (26007, 242, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd8L5Oo0d', '5893260'), + (26008, 242, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8L5Oo0d', '6045684'), + (26009, 243, 1442, 'attending', '2022-06-18 17:22:23', '2025-12-17 19:47:17', 'O4Zobld1', '5397265'), + (26010, 243, 1459, 'maybe', '2022-06-20 00:05:56', '2025-12-17 19:47:17', 'O4Zobld1', '5404793'), + (26011, 243, 1476, 'maybe', '2022-06-19 17:45:02', '2025-12-17 19:47:17', 'O4Zobld1', '5408130'), + (26012, 243, 1480, 'attending', '2022-06-19 03:16:17', '2025-12-17 19:47:19', 'O4Zobld1', '5411699'), + (26013, 243, 1482, 'attending', '2022-06-22 01:49:51', '2025-12-17 19:47:19', 'O4Zobld1', '5412550'), + (26014, 243, 1483, 'maybe', '2022-06-22 02:54:03', '2025-12-17 19:47:17', 'O4Zobld1', '5414556'), + (26015, 243, 1484, 'attending', '2022-06-22 20:58:14', '2025-12-17 19:47:17', 'O4Zobld1', '5415046'), + (26016, 243, 1485, 'maybe', '2022-06-21 20:15:51', '2025-12-17 19:47:17', 'O4Zobld1', '5416276'), + (26017, 243, 1486, 'attending', '2022-06-28 23:34:35', '2025-12-17 19:47:19', 'O4Zobld1', '5416339'), + (26018, 243, 1488, 'maybe', '2022-06-30 06:52:24', '2025-12-17 19:47:19', 'O4Zobld1', '5420154'), + (26019, 243, 1489, 'maybe', '2022-06-30 05:40:51', '2025-12-17 19:47:19', 'O4Zobld1', '5420155'), + (26020, 243, 1495, 'maybe', '2022-07-05 04:11:57', '2025-12-17 19:47:19', 'O4Zobld1', '5422086'), + (26021, 243, 1496, 'maybe', '2022-06-28 19:50:13', '2025-12-17 19:47:19', 'O4Zobld1', '5422404'), + (26022, 243, 1497, 'maybe', '2022-06-28 23:34:36', '2025-12-17 19:47:19', 'O4Zobld1', '5422405'), + (26023, 243, 1498, 'attending', '2022-07-01 01:36:42', '2025-12-17 19:47:19', 'O4Zobld1', '5422406'), + (26024, 243, 1500, 'maybe', '2022-07-05 04:11:17', '2025-12-17 19:47:19', 'O4Zobld1', '5423915'), + (26025, 243, 1501, 'maybe', '2022-06-28 23:34:43', '2025-12-17 19:47:19', 'O4Zobld1', '5424546'), + (26026, 243, 1502, 'maybe', '2022-07-05 04:11:24', '2025-12-17 19:47:19', 'O4Zobld1', '5424565'), + (26027, 243, 1504, 'attending', '2022-07-02 20:58:09', '2025-12-17 19:47:19', 'O4Zobld1', '5426882'), + (26028, 243, 1505, 'maybe', '2022-07-02 20:58:34', '2025-12-17 19:47:19', 'O4Zobld1', '5427083'), + (26029, 243, 1508, 'attending', '2022-07-02 20:57:59', '2025-12-17 19:47:19', 'O4Zobld1', '5433453'), + (26030, 243, 1509, 'maybe', '2022-07-06 02:02:28', '2025-12-17 19:47:19', 'O4Zobld1', '5434019'), + (26031, 243, 1513, 'attending', '2022-07-12 23:26:11', '2025-12-17 19:47:19', 'O4Zobld1', '5441125'), + (26032, 243, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'O4Zobld1', '5441126'), + (26033, 243, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'O4Zobld1', '5441128'), + (26034, 243, 1516, 'attending', '2022-08-16 23:43:25', '2025-12-17 19:47:23', 'O4Zobld1', '5441129'), + (26035, 243, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'O4Zobld1', '5441131'), + (26036, 243, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'O4Zobld1', '5441132'), + (26037, 243, 1520, 'attending', '2022-07-12 05:20:28', '2025-12-17 19:47:19', 'O4Zobld1', '5441645'), + (26038, 243, 1522, 'attending', '2022-07-11 17:50:39', '2025-12-17 19:47:20', 'O4Zobld1', '5442832'), + (26039, 243, 1525, 'attending', '2022-07-12 23:26:35', '2025-12-17 19:47:19', 'O4Zobld1', '5444962'), + (26040, 243, 1528, 'maybe', '2022-07-13 22:43:39', '2025-12-17 19:47:20', 'O4Zobld1', '5446643'), + (26041, 243, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'O4Zobld1', '5453325'), + (26042, 243, 1541, 'attending', '2022-07-24 04:08:29', '2025-12-17 19:47:20', 'O4Zobld1', '5453542'), + (26043, 243, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'O4Zobld1', '5454516'), + (26044, 243, 1544, 'attending', '2022-09-17 21:47:31', '2025-12-17 19:47:11', 'O4Zobld1', '5454517'), + (26045, 243, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'O4Zobld1', '5454605'), + (26046, 243, 1547, 'maybe', '2022-07-26 03:57:41', '2025-12-17 19:47:20', 'O4Zobld1', '5454608'), + (26047, 243, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'O4Zobld1', '5455037'), + (26048, 243, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'O4Zobld1', '5461278'), + (26049, 243, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'O4Zobld1', '5469480'), + (26050, 243, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'O4Zobld1', '5471073'), + (26051, 243, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'O4Zobld1', '5474663'), + (26052, 243, 1570, 'attending', '2022-08-31 21:02:48', '2025-12-17 19:47:21', 'O4Zobld1', '5481830'), + (26053, 243, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'O4Zobld1', '5482022'), + (26054, 243, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'O4Zobld1', '5482793'), + (26055, 243, 1580, 'attending', '2022-08-09 22:26:58', '2025-12-17 19:47:22', 'O4Zobld1', '5488912'), + (26056, 243, 1581, 'attending', '2022-08-11 19:46:00', '2025-12-17 19:47:22', 'O4Zobld1', '5490302'), + (26057, 243, 1586, 'attending', '2022-08-16 23:43:10', '2025-12-17 19:47:23', 'O4Zobld1', '5492019'), + (26058, 243, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'O4Zobld1', '5492192'), + (26059, 243, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'O4Zobld1', '5493139'), + (26060, 243, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'O4Zobld1', '5493200'), + (26061, 243, 1592, 'attending', '2022-08-10 20:59:09', '2025-12-17 19:47:22', 'O4Zobld1', '5494031'), + (26062, 243, 1593, 'maybe', '2022-08-13 02:19:50', '2025-12-17 19:47:22', 'O4Zobld1', '5494043'), + (26063, 243, 1595, 'attending', '2022-08-12 03:31:12', '2025-12-17 19:47:22', 'O4Zobld1', '5495736'), + (26064, 243, 1597, 'maybe', '2022-08-13 04:21:52', '2025-12-17 19:47:22', 'O4Zobld1', '5496566'), + (26065, 243, 1598, 'attending', '2022-08-13 04:22:00', '2025-12-17 19:47:22', 'O4Zobld1', '5496567'), + (26066, 243, 1603, 'maybe', '2022-08-13 04:22:27', '2025-12-17 19:47:23', 'O4Zobld1', '5497895'), + (26067, 243, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'O4Zobld1', '5502188'), + (26068, 243, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'O4Zobld1', '5505059'), + (26069, 243, 1609, 'attending', '2022-08-29 01:03:27', '2025-12-17 19:47:23', 'O4Zobld1', '5506590'), + (26070, 243, 1610, 'maybe', '2022-08-29 01:03:47', '2025-12-17 19:47:23', 'O4Zobld1', '5506595'), + (26071, 243, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'O4Zobld1', '5509055'), + (26072, 243, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'O4Zobld1', '5512862'), + (26073, 243, 1620, 'attending', '2022-08-25 20:54:22', '2025-12-17 19:47:23', 'O4Zobld1', '5513046'), + (26074, 243, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'O4Zobld1', '5513985'), + (26075, 243, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'O4Zobld1', '5519981'), + (26076, 243, 1627, 'attending', '2022-09-02 01:00:19', '2025-12-17 19:47:24', 'O4Zobld1', '5521552'), + (26077, 243, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'O4Zobld1', '5522550'), + (26078, 243, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'O4Zobld1', '5534683'), + (26079, 243, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'O4Zobld1', '5537735'), + (26080, 243, 1636, 'maybe', '2022-09-04 22:41:51', '2025-12-17 19:47:24', 'O4Zobld1', '5538454'), + (26081, 243, 1638, 'attending', '2022-09-01 18:19:43', '2025-12-17 19:47:24', 'O4Zobld1', '5540402'), + (26082, 243, 1639, 'attending', '2022-09-01 23:32:22', '2025-12-17 19:47:24', 'O4Zobld1', '5540403'), + (26083, 243, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'O4Zobld1', '5540859'), + (26084, 243, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'O4Zobld1', '5546619'), + (26085, 243, 1652, 'attending', '2022-09-10 20:32:26', '2025-12-17 19:47:24', 'O4Zobld1', '5552671'), + (26086, 243, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'O4Zobld1', '5555245'), + (26087, 243, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'O4Zobld1', '5557747'), + (26088, 243, 1661, 'attending', '2022-09-09 00:19:23', '2025-12-17 19:47:24', 'O4Zobld1', '5560254'), + (26089, 243, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'O4Zobld1', '5560255'), + (26090, 243, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'O4Zobld1', '5562906'), + (26091, 243, 1667, 'attending', '2022-09-24 21:57:01', '2025-12-17 19:47:11', 'O4Zobld1', '5563221'), + (26092, 243, 1668, 'attending', '2022-10-01 21:34:36', '2025-12-17 19:47:12', 'O4Zobld1', '5563222'), + (26093, 243, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'O4Zobld1', '5600604'), + (26094, 243, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'O4Zobld1', '5605544'), + (26095, 243, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'O4Zobld1', '5606737'), + (26096, 243, 1714, 'attending', '2022-10-27 23:10:39', '2025-12-17 19:47:14', 'O4Zobld1', '5622347'), + (26097, 243, 1720, 'attending', '2022-10-15 18:05:14', '2025-12-17 19:47:12', 'O4Zobld1', '5630959'), + (26098, 243, 1721, 'attending', '2022-10-21 04:06:20', '2025-12-17 19:47:13', 'O4Zobld1', '5630960'), + (26099, 243, 1722, 'attending', '2022-10-24 20:56:22', '2025-12-17 19:47:14', 'O4Zobld1', '5630961'), + (26100, 243, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'O4Zobld1', '5630962'), + (26101, 243, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'O4Zobld1', '5630966'), + (26102, 243, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'O4Zobld1', '5630967'), + (26103, 243, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'O4Zobld1', '5630968'), + (26104, 243, 1727, 'attending', '2022-12-02 02:56:22', '2025-12-17 19:47:16', 'O4Zobld1', '5630969'), + (26105, 243, 1728, 'attending', '2022-11-27 04:11:22', '2025-12-17 19:47:17', 'O4Zobld1', '5630970'), + (26106, 243, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'O4Zobld1', '5635406'), + (26107, 243, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'O4Zobld1', '5638765'), + (26108, 243, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'O4Zobld1', '5640097'), + (26109, 243, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'O4Zobld1', '5640843'), + (26110, 243, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'O4Zobld1', '5641521'), + (26111, 243, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'O4Zobld1', '5642818'), + (26112, 243, 1747, 'attending', '2022-10-18 23:32:38', '2025-12-17 19:47:13', 'O4Zobld1', '5648009'), + (26113, 243, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'O4Zobld1', '5652395'), + (26114, 243, 1757, 'maybe', '2022-11-03 22:06:37', '2025-12-17 19:47:15', 'O4Zobld1', '5668974'), + (26115, 243, 1762, 'attending', '2022-12-02 00:13:20', '2025-12-17 19:47:16', 'O4Zobld1', '5670445'), + (26116, 243, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'O4Zobld1', '5671637'), + (26117, 243, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'O4Zobld1', '5672329'), + (26118, 243, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'O4Zobld1', '5674057'), + (26119, 243, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'O4Zobld1', '5674060'), + (26120, 243, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'O4Zobld1', '5677461'), + (26121, 243, 1776, 'attending', '2022-11-08 23:23:02', '2025-12-17 19:47:15', 'O4Zobld1', '5691067'), + (26122, 243, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'O4Zobld1', '5698046'), + (26123, 243, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'O4Zobld1', '5699760'), + (26124, 243, 1793, 'maybe', '2022-11-23 22:32:36', '2025-12-17 19:47:16', 'O4Zobld1', '5736365'), + (26125, 243, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'O4Zobld1', '5741601'), + (26126, 243, 1796, 'attending', '2022-12-01 05:27:49', '2025-12-17 19:47:16', 'O4Zobld1', '5756755'), + (26127, 243, 1797, 'maybe', '2022-12-08 06:51:58', '2025-12-17 19:47:17', 'O4Zobld1', '5757486'), + (26128, 243, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'O4Zobld1', '5763458'), + (26129, 243, 1802, 'attending', '2022-12-08 06:52:02', '2025-12-17 19:47:17', 'O4Zobld1', '5764669'), + (26130, 243, 1803, 'attending', '2023-01-04 05:48:14', '2025-12-17 19:47:05', 'O4Zobld1', '5764673'), + (26131, 243, 1806, 'attending', '2023-01-21 03:59:54', '2025-12-17 19:47:05', 'O4Zobld1', '5764676'), + (26132, 243, 1807, 'attending', '2023-01-12 03:59:03', '2025-12-17 19:47:05', 'O4Zobld1', '5764677'), + (26133, 243, 1820, 'not_attending', '2023-04-05 21:23:37', '2025-12-17 19:46:58', 'O4Zobld1', '5764690'), + (26134, 243, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'O4Zobld1', '5774172'), + (26135, 243, 1825, 'attending', '2022-12-09 00:56:03', '2025-12-17 19:47:16', 'O4Zobld1', '5776760'), + (26136, 243, 1826, 'attending', '2022-12-20 02:59:58', '2025-12-17 19:47:04', 'O4Zobld1', '5776768'), + (26137, 243, 1828, 'attending', '2022-11-28 20:40:15', '2025-12-17 19:47:16', 'O4Zobld1', '5778865'), + (26138, 243, 1829, 'maybe', '2022-12-02 05:41:12', '2025-12-17 19:47:16', 'O4Zobld1', '5778867'), + (26139, 243, 1831, 'maybe', '2022-12-02 05:54:27', '2025-12-17 19:47:16', 'O4Zobld1', '5813239'), + (26140, 243, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'O4Zobld1', '5818247'), + (26141, 243, 1833, 'maybe', '2022-12-06 06:24:42', '2025-12-17 19:47:16', 'O4Zobld1', '5819465'), + (26142, 243, 1834, 'maybe', '2022-12-08 06:52:03', '2025-12-17 19:47:17', 'O4Zobld1', '5819470'), + (26143, 243, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'O4Zobld1', '5819471'), + (26144, 243, 1836, 'attending', '2022-12-05 17:24:33', '2025-12-17 19:47:16', 'O4Zobld1', '5819484'), + (26145, 243, 1837, 'attending', '2022-12-07 23:16:52', '2025-12-17 19:47:16', 'O4Zobld1', '5820146'), + (26146, 243, 1838, 'attending', '2022-12-05 23:38:54', '2025-12-17 19:47:16', 'O4Zobld1', '5821722'), + (26147, 243, 1839, 'attending', '2022-12-21 23:33:00', '2025-12-17 19:47:04', 'O4Zobld1', '5821920'), + (26148, 243, 1840, 'maybe', '2022-12-08 06:39:13', '2025-12-17 19:47:17', 'O4Zobld1', '5822288'), + (26149, 243, 1841, 'attending', '2022-12-29 03:06:06', '2025-12-17 19:47:05', 'O4Zobld1', '5827665'), + (26150, 243, 1842, 'maybe', '2022-12-09 03:45:41', '2025-12-17 19:47:04', 'O4Zobld1', '5827739'), + (26151, 243, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'O4Zobld1', '5844306'), + (26152, 243, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'O4Zobld1', '5850159'), + (26153, 243, 1849, 'maybe', '2023-01-04 05:48:05', '2025-12-17 19:47:05', 'O4Zobld1', '5852467'), + (26154, 243, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'O4Zobld1', '5858999'), + (26155, 243, 1852, 'attending', '2023-01-11 04:08:21', '2025-12-17 19:47:05', 'O4Zobld1', '5869898'), + (26156, 243, 1853, 'maybe', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'O4Zobld1', '5871984'), + (26157, 243, 1859, 'attending', '2023-01-20 03:51:34', '2025-12-17 19:47:05', 'O4Zobld1', '5876234'), + (26158, 243, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'O4Zobld1', '5876354'), + (26159, 243, 1864, 'attending', '2023-01-21 03:59:53', '2025-12-17 19:47:05', 'O4Zobld1', '5879675'), + (26160, 243, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'O4Zobld1', '5880939'), + (26161, 243, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'O4Zobld1', '5880940'), + (26162, 243, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'O4Zobld1', '5880942'), + (26163, 243, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'O4Zobld1', '5880943'), + (26164, 243, 1872, 'attending', '2023-01-20 03:51:55', '2025-12-17 19:47:05', 'O4Zobld1', '5883546'), + (26165, 243, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'O4Zobld1', '5887890'), + (26166, 243, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'O4Zobld1', '5888598'), + (26167, 243, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'O4Zobld1', '5893260'), + (26168, 243, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'O4Zobld1', '5899826'), + (26169, 243, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'O4Zobld1', '5900199'), + (26170, 243, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'O4Zobld1', '5900200'), + (26171, 243, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'O4Zobld1', '5900202'), + (26172, 243, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'O4Zobld1', '5900203'), + (26173, 243, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'O4Zobld1', '5901108'), + (26174, 243, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'O4Zobld1', '5901126'), + (26175, 243, 1897, 'attending', '2023-02-10 06:22:25', '2025-12-17 19:47:07', 'O4Zobld1', '5901128'), + (26176, 243, 1905, 'maybe', '2023-02-05 21:20:51', '2025-12-17 19:47:06', 'O4Zobld1', '5904479'), + (26177, 243, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'O4Zobld1', '5909655'), + (26178, 243, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'O4Zobld1', '5910522'), + (26179, 243, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'O4Zobld1', '5910526'), + (26180, 243, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'O4Zobld1', '5910528'), + (26181, 243, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'O4Zobld1', '5916219'), + (26182, 243, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'O4Zobld1', '5936234'), + (26183, 243, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'O4Zobld1', '5958351'), + (26184, 243, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'O4Zobld1', '5959751'), + (26185, 243, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'O4Zobld1', '5959755'), + (26186, 243, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'O4Zobld1', '5960055'), + (26187, 243, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'O4Zobld1', '5961684'), + (26188, 243, 1942, 'attending', '2023-03-01 02:24:19', '2025-12-17 19:47:08', 'O4Zobld1', '5962085'), + (26189, 243, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'O4Zobld1', '5962132'), + (26190, 243, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'O4Zobld1', '5962133'), + (26191, 243, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'O4Zobld1', '5962134'), + (26192, 243, 1947, 'attending', '2023-03-05 03:54:57', '2025-12-17 19:47:09', 'O4Zobld1', '5962233'), + (26193, 243, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'O4Zobld1', '5962317'), + (26194, 243, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'O4Zobld1', '5962318'), + (26195, 243, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'O4Zobld1', '5965933'), + (26196, 243, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'O4Zobld1', '5967014'), + (26197, 243, 1955, 'attending', '2023-03-29 22:20:03', '2025-12-17 19:46:57', 'O4Zobld1', '5972529'), + (26198, 243, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'O4Zobld1', '5972763'), + (26199, 243, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'O4Zobld1', '5972815'), + (26200, 243, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'O4Zobld1', '5974016'), + (26201, 243, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'O4Zobld1', '5981515'), + (26202, 243, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'O4Zobld1', '5993516'), + (26203, 243, 1973, 'attending', '2023-03-15 03:19:34', '2025-12-17 19:46:56', 'O4Zobld1', '5993777'), + (26204, 243, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'O4Zobld1', '5998939'), + (26205, 243, 1978, 'maybe', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'O4Zobld1', '6028191'), + (26206, 243, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'O4Zobld1', '6040066'), + (26207, 243, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'O4Zobld1', '6042717'), + (26208, 243, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'O4Zobld1', '6044838'), + (26209, 243, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'O4Zobld1', '6044839'), + (26210, 243, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'O4Zobld1', '6045684'), + (26211, 243, 1992, 'attending', '2023-04-01 01:03:27', '2025-12-17 19:46:58', 'O4Zobld1', '6048742'), + (26212, 243, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'O4Zobld1', '6050104'), + (26213, 243, 1997, 'attending', '2023-04-05 21:23:35', '2025-12-17 19:46:58', 'O4Zobld1', '6051604'), + (26214, 243, 1999, 'maybe', '2023-04-11 01:50:15', '2025-12-17 19:47:00', 'O4Zobld1', '6052057'), + (26215, 243, 2000, 'attending', '2023-04-04 02:22:15', '2025-12-17 19:46:58', 'O4Zobld1', '6052107'), + (26216, 243, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'O4Zobld1', '6053195'), + (26217, 243, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'O4Zobld1', '6053198'), + (26218, 243, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'O4Zobld1', '6056085'), + (26219, 243, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'O4Zobld1', '6056916'), + (26220, 243, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'O4Zobld1', '6059290'), + (26221, 243, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'O4Zobld1', '6060328'), + (26222, 243, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'O4Zobld1', '6061037'), + (26223, 243, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'O4Zobld1', '6061039'), + (26224, 243, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'O4Zobld1', '6061099'), + (26225, 243, 2021, 'attending', '2023-04-16 23:54:52', '2025-12-17 19:47:00', 'O4Zobld1', '6066316'), + (26226, 243, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'O4Zobld1', '6067245'), + (26227, 243, 2025, 'maybe', '2023-04-23 03:52:10', '2025-12-17 19:47:00', 'O4Zobld1', '6067457'), + (26228, 243, 2026, 'maybe', '2023-04-23 21:14:21', '2025-12-17 19:47:01', 'O4Zobld1', '6068078'), + (26229, 243, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'O4Zobld1', '6068094'), + (26230, 243, 2028, 'maybe', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'O4Zobld1', '6068252'), + (26231, 243, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'O4Zobld1', '6068253'), + (26232, 243, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'O4Zobld1', '6068254'), + (26233, 243, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'O4Zobld1', '6068280'), + (26234, 243, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'O4Zobld1', '6069093'), + (26235, 243, 2037, 'attending', '2023-04-23 21:13:28', '2025-12-17 19:47:01', 'O4Zobld1', '6071943'), + (26236, 243, 2039, 'maybe', '2023-04-23 21:14:03', '2025-12-17 19:47:01', 'O4Zobld1', '6072398'), + (26237, 243, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'O4Zobld1', '6072528'), + (26238, 243, 2043, 'maybe', '2023-04-26 02:41:39', '2025-12-17 19:47:01', 'O4Zobld1', '6073023'), + (26239, 243, 2045, 'maybe', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'O4Zobld1', '6075556'), + (26240, 243, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'O4Zobld1', '6079840'), + (26241, 243, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'O4Zobld1', '6083398'), + (26242, 243, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'O4Zobld1', '6093504'), + (26243, 243, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'O4Zobld1', '6097414'), + (26244, 243, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'O4Zobld1', '6097442'), + (26245, 243, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'O4Zobld1', '6097684'), + (26246, 243, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'O4Zobld1', '6098762'), + (26247, 243, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'O4Zobld1', '6101362'), + (26248, 243, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'O4Zobld1', '6107314'), + (26249, 244, 1116, 'attending', '2021-11-29 22:33:07', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4642994'), + (26250, 244, 1122, 'not_attending', '2021-11-25 06:39:59', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4644023'), + (26251, 244, 1126, 'attending', '2021-12-12 00:48:35', '2025-12-17 19:47:38', 'Ae7wW0Wd', '4645687'), + (26252, 244, 1129, 'maybe', '2021-11-26 19:07:31', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4645705'), + (26253, 244, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4668385'), + (26254, 244, 1135, 'attending', '2021-11-25 19:45:25', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4670469'), + (26255, 244, 1139, 'attending', '2021-11-29 00:05:54', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4675604'), + (26256, 244, 1140, 'attending', '2021-11-30 20:37:46', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4679701'), + (26257, 244, 1143, 'attending', '2021-12-01 21:50:03', '2025-12-17 19:47:37', 'Ae7wW0Wd', '4683667'), + (26258, 244, 1146, 'attending', '2021-12-08 00:52:41', '2025-12-17 19:47:38', 'Ae7wW0Wd', '4692841'), + (26259, 244, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Ae7wW0Wd', '4694407'), + (26260, 244, 1157, 'attending', '2021-12-19 14:36:22', '2025-12-17 19:47:31', 'Ae7wW0Wd', '4715208'), + (26261, 244, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4736497'), + (26262, 244, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4736499'), + (26263, 244, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4736500'), + (26264, 244, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Ae7wW0Wd', '4736503'), + (26265, 244, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Ae7wW0Wd', '4736504'), + (26266, 244, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Ae7wW0Wd', '4746789'), + (26267, 244, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Ae7wW0Wd', '4753929'), + (26268, 244, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Ae7wW0Wd', '5038850'), + (26269, 244, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Ae7wW0Wd', '5045826'), + (26270, 244, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Ae7wW0Wd', '5132533'), + (26271, 244, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Ae7wW0Wd', '5186582'), + (26272, 244, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Ae7wW0Wd', '5186583'), + (26273, 244, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Ae7wW0Wd', '5186585'), + (26274, 244, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Ae7wW0Wd', '5190437'), + (26275, 244, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Ae7wW0Wd', '5215989'), + (26276, 244, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ae7wW0Wd', '6045684'), + (26277, 245, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dKwYOlBd', '7324075'), + (26278, 245, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dKwYOlBd', '7324078'), + (26279, 245, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dKwYOlBd', '7324082'), + (26280, 245, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dKwYOlBd', '7331457'), + (26281, 245, 2734, 'attending', '2024-07-05 22:39:31', '2025-12-17 19:46:29', 'dKwYOlBd', '7339440'), + (26282, 245, 2748, 'attending', '2024-07-05 22:35:52', '2025-12-17 19:46:29', 'dKwYOlBd', '7353759'), + (26283, 245, 2750, 'attending', '2024-07-10 09:56:03', '2025-12-17 19:46:30', 'dKwYOlBd', '7355526'), + (26284, 245, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dKwYOlBd', '7363643'), + (26285, 245, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dKwYOlBd', '7368606'), + (26286, 245, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dKwYOlBd', '7397462'), + (26287, 245, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dKwYOlBd', '7424275'), + (26288, 245, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dKwYOlBd', '7424276'), + (26289, 245, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dKwYOlBd', '7432751'), + (26290, 245, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dKwYOlBd', '7432752'), + (26291, 245, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dKwYOlBd', '7432753'), + (26292, 245, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dKwYOlBd', '7432754'), + (26293, 245, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dKwYOlBd', '7432755'), + (26294, 245, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dKwYOlBd', '7432756'), + (26295, 245, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dKwYOlBd', '7432758'), + (26296, 245, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dKwYOlBd', '7432759'), + (26297, 245, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dKwYOlBd', '7433834'), + (26298, 245, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dKwYOlBd', '7470197'), + (26299, 245, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dKwYOlBd', '7685613'), + (26300, 245, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dKwYOlBd', '7688194'), + (26301, 245, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dKwYOlBd', '7688196'), + (26302, 245, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dKwYOlBd', '7688289'), + (26303, 246, 2516, 'maybe', '2024-05-02 13:47:26', '2025-12-17 19:46:35', 'dxObDGD4', '7074356'), + (26304, 246, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxObDGD4', '7074364'), + (26305, 246, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dxObDGD4', '7114956'), + (26306, 246, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxObDGD4', '7114957'), + (26307, 246, 2576, 'maybe', '2024-04-23 19:30:05', '2025-12-17 19:46:34', 'dxObDGD4', '7164538'), + (26308, 246, 2585, 'maybe', '2024-04-22 20:00:37', '2025-12-17 19:46:34', 'dxObDGD4', '7175828'), + (26309, 246, 2591, 'attending', '2024-04-19 21:43:28', '2025-12-17 19:46:34', 'dxObDGD4', '7180957'), + (26310, 246, 2593, 'attending', '2024-04-19 01:42:06', '2025-12-17 19:46:34', 'dxObDGD4', '7181003'), + (26311, 246, 2597, 'attending', '2024-04-23 19:29:58', '2025-12-17 19:46:34', 'dxObDGD4', '7186726'), + (26312, 246, 2598, 'attending', '2024-04-22 22:06:26', '2025-12-17 19:46:34', 'dxObDGD4', '7186731'), + (26313, 246, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxObDGD4', '7220467'), + (26314, 246, 2603, 'attending', '2024-05-15 01:49:36', '2025-12-17 19:46:35', 'dxObDGD4', '7225669'), + (26315, 246, 2604, 'maybe', '2024-05-28 18:29:15', '2025-12-17 19:46:36', 'dxObDGD4', '7225670'), + (26316, 246, 2607, 'attending', '2024-04-30 00:26:15', '2025-12-17 19:46:35', 'dxObDGD4', '7240136'), + (26317, 246, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxObDGD4', '7240354'), + (26318, 246, 2611, 'attending', '2024-05-02 22:41:04', '2025-12-17 19:46:35', 'dxObDGD4', '7247642'), + (26319, 246, 2612, 'maybe', '2024-05-02 22:41:06', '2025-12-17 19:46:35', 'dxObDGD4', '7247643'), + (26320, 246, 2613, 'maybe', '2024-05-02 22:41:09', '2025-12-17 19:46:35', 'dxObDGD4', '7247644'), + (26321, 246, 2614, 'maybe', '2024-05-02 22:41:11', '2025-12-17 19:46:35', 'dxObDGD4', '7247645'), + (26322, 246, 2617, 'maybe', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxObDGD4', '7251633'), + (26323, 246, 2619, 'attending', '2024-05-09 17:34:09', '2025-12-17 19:46:35', 'dxObDGD4', '7252965'), + (26324, 246, 2624, 'not_attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', 'dxObDGD4', '7263301'), + (26325, 246, 2626, 'attending', '2024-05-15 01:50:39', '2025-12-17 19:46:35', 'dxObDGD4', '7264723'), + (26326, 246, 2627, 'attending', '2024-05-22 03:44:29', '2025-12-17 19:46:35', 'dxObDGD4', '7264724'), + (26327, 246, 2628, 'attending', '2024-05-31 14:30:45', '2025-12-17 19:46:36', 'dxObDGD4', '7264725'), + (26328, 246, 2629, 'attending', '2024-06-08 22:02:05', '2025-12-17 19:46:28', 'dxObDGD4', '7264726'), + (26329, 246, 2630, 'attending', '2024-05-15 01:50:28', '2025-12-17 19:46:35', 'dxObDGD4', '7264801'), + (26330, 246, 2650, 'maybe', '2024-05-28 18:28:27', '2025-12-17 19:46:36', 'dxObDGD4', '7288199'), + (26331, 246, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxObDGD4', '7302674'), + (26332, 246, 2662, 'attending', '2024-06-02 19:11:57', '2025-12-17 19:46:36', 'dxObDGD4', '7302815'), + (26333, 246, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxObDGD4', '7324073'), + (26334, 246, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxObDGD4', '7324074'), + (26335, 246, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxObDGD4', '7324075'), + (26336, 246, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxObDGD4', '7324078'), + (26337, 246, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxObDGD4', '7324082'), + (26338, 246, 2700, 'maybe', '2024-06-13 23:35:26', '2025-12-17 19:46:28', 'dxObDGD4', '7324388'), + (26339, 246, 2706, 'attending', '2024-06-19 18:45:48', '2025-12-17 19:46:28', 'dxObDGD4', '7324947'), + (26340, 246, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxObDGD4', '7331457'), + (26341, 246, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxObDGD4', '7363643'), + (26342, 246, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxObDGD4', '7368606'), + (26343, 246, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxObDGD4', '7397462'), + (26344, 246, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxObDGD4', '7424275'), + (26345, 246, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxObDGD4', '7424276'), + (26346, 246, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxObDGD4', '7432751'), + (26347, 246, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxObDGD4', '7432752'), + (26348, 246, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxObDGD4', '7432753'), + (26349, 246, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxObDGD4', '7432754'), + (26350, 246, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxObDGD4', '7432755'), + (26351, 246, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxObDGD4', '7432756'), + (26352, 246, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxObDGD4', '7432758'), + (26353, 246, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxObDGD4', '7432759'), + (26354, 246, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxObDGD4', '7433834'), + (26355, 246, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxObDGD4', '7470197'), + (26356, 246, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxObDGD4', '7685613'), + (26357, 246, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxObDGD4', '7688194'), + (26358, 246, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxObDGD4', '7688196'), + (26359, 246, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxObDGD4', '7688289'), + (26360, 247, 1176, 'maybe', '2022-02-03 08:02:02', '2025-12-17 19:47:32', 'ydwM1N5A', '4736498'), + (26361, 247, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ydwM1N5A', '4736499'), + (26362, 247, 1178, 'attending', '2022-01-29 21:23:13', '2025-12-17 19:47:32', 'ydwM1N5A', '4736500'), + (26363, 247, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ydwM1N5A', '4736503'), + (26364, 247, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ydwM1N5A', '4736504'), + (26365, 247, 1202, 'attending', '2022-01-25 08:23:57', '2025-12-17 19:47:32', 'ydwM1N5A', '4769423'), + (26366, 247, 1211, 'attending', '2022-01-25 00:27:37', '2025-12-17 19:47:32', 'ydwM1N5A', '4780754'), + (26367, 247, 1216, 'attending', '2022-01-25 08:23:39', '2025-12-17 19:47:32', 'ydwM1N5A', '4781137'), + (26368, 247, 1217, 'not_attending', '2022-01-29 23:22:42', '2025-12-17 19:47:32', 'ydwM1N5A', '4781139'), + (26369, 247, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ydwM1N5A', '5038850'), + (26370, 247, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ydwM1N5A', '5045826'), + (26371, 247, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ydwM1N5A', '5132533'), + (26372, 247, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ydwM1N5A', '5186582'), + (26373, 247, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ydwM1N5A', '5186583'), + (26374, 247, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ydwM1N5A', '5186585'), + (26375, 247, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ydwM1N5A', '5190437'), + (26376, 247, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ydwM1N5A', '5215989'), + (26377, 247, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwM1N5A', '6045684'), + (26378, 248, 1181, 'attending', '2022-03-05 22:10:36', '2025-12-17 19:47:33', 'ArQxe8wm', '4736503'), + (26379, 248, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ArQxe8wm', '4736504'), + (26380, 248, 1212, 'maybe', '2022-02-21 23:54:22', '2025-12-17 19:47:32', 'ArQxe8wm', '4780759'), + (26381, 248, 1215, 'not_attending', '2022-02-26 01:47:54', '2025-12-17 19:47:33', 'ArQxe8wm', '4780763'), + (26382, 248, 1246, 'attending', '2022-03-03 13:01:00', '2025-12-17 19:47:33', 'ArQxe8wm', '5064727'), + (26383, 248, 1249, 'attending', '2022-03-07 23:06:49', '2025-12-17 19:47:33', 'ArQxe8wm', '5068530'), + (26384, 248, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ArQxe8wm', '5132533'), + (26385, 248, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ArQxe8wm', '5186582'), + (26386, 248, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ArQxe8wm', '5186583'), + (26387, 248, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ArQxe8wm', '5186585'), + (26388, 248, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ArQxe8wm', '5190437'), + (26389, 248, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ArQxe8wm', '5195095'), + (26390, 248, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ArQxe8wm', '5215989'), + (26391, 248, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ArQxe8wm', '5223686'), + (26392, 248, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ArQxe8wm', '5227432'), + (26393, 248, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ArQxe8wm', '5247467'), + (26394, 248, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ArQxe8wm', '5260800'), + (26395, 248, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ArQxe8wm', '5269930'), + (26396, 248, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ArQxe8wm', '5271448'), + (26397, 248, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'ArQxe8wm', '5271449'), + (26398, 248, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ArQxe8wm', '5276469'), + (26399, 248, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ArQxe8wm', '5278159'), + (26400, 248, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ArQxe8wm', '5363695'), + (26401, 248, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQxe8wm', '5365960'), + (26402, 248, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQxe8wm', '5368973'), + (26403, 248, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ArQxe8wm', '5378247'), + (26404, 248, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ArQxe8wm', '5389605'), + (26405, 248, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ArQxe8wm', '5397265'), + (26406, 248, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ArQxe8wm', '5403967'), + (26407, 248, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ArQxe8wm', '5404786'), + (26408, 248, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ArQxe8wm', '5405203'), + (26409, 248, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'ArQxe8wm', '5408794'), + (26410, 248, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ArQxe8wm', '5411699'), + (26411, 248, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ArQxe8wm', '5412550'), + (26412, 248, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ArQxe8wm', '5415046'), + (26413, 248, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ArQxe8wm', '5422086'), + (26414, 248, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ArQxe8wm', '5422406'), + (26415, 248, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ArQxe8wm', '5424565'), + (26416, 248, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQxe8wm', '5426882'), + (26417, 248, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ArQxe8wm', '5427083'), + (26418, 248, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ArQxe8wm', '5441125'), + (26419, 248, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ArQxe8wm', '5441126'), + (26420, 248, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ArQxe8wm', '5441128'), + (26421, 248, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ArQxe8wm', '5441131'), + (26422, 248, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ArQxe8wm', '5441132'), + (26423, 248, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQxe8wm', '5446643'), + (26424, 248, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQxe8wm', '5453325'), + (26425, 248, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQxe8wm', '5454516'), + (26426, 248, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQxe8wm', '5454605'), + (26427, 248, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQxe8wm', '5455037'), + (26428, 248, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQxe8wm', '5461278'), + (26429, 248, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQxe8wm', '5469480'), + (26430, 248, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQxe8wm', '5471073'), + (26431, 248, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ArQxe8wm', '5474663'), + (26432, 248, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQxe8wm', '5482022'), + (26433, 248, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQxe8wm', '5482793'), + (26434, 248, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQxe8wm', '5488912'), + (26435, 248, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQxe8wm', '5492192'), + (26436, 248, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQxe8wm', '5493139'), + (26437, 248, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQxe8wm', '5493200'), + (26438, 248, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQxe8wm', '5502188'), + (26439, 248, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ArQxe8wm', '5505059'), + (26440, 248, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ArQxe8wm', '5509055'), + (26441, 248, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ArQxe8wm', '5512862'), + (26442, 248, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ArQxe8wm', '5513985'), + (26443, 248, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ArQxe8wm', '5519981'), + (26444, 248, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ArQxe8wm', '5522550'), + (26445, 248, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ArQxe8wm', '5534683'), + (26446, 248, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ArQxe8wm', '5546619'), + (26447, 248, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ArQxe8wm', '5555245'), + (26448, 248, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ArQxe8wm', '5557747'), + (26449, 248, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArQxe8wm', '6045684'), + (26450, 249, 401, 'attending', '2021-05-11 19:42:16', '2025-12-17 19:47:46', 'xd9BzWZm', '3236456'), + (26451, 249, 646, 'not_attending', '2021-05-15 11:18:28', '2025-12-17 19:47:46', 'xd9BzWZm', '3539921'), + (26452, 249, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xd9BzWZm', '3539922'), + (26453, 249, 648, 'attending', '2021-05-28 22:53:21', '2025-12-17 19:47:47', 'xd9BzWZm', '3539923'), + (26454, 249, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xd9BzWZm', '3974109'), + (26455, 249, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xd9BzWZm', '3975311'), + (26456, 249, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xd9BzWZm', '3975312'), + (26457, 249, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xd9BzWZm', '3994992'), + (26458, 249, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd9BzWZm', '4014338'), + (26459, 249, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xd9BzWZm', '4021848'), + (26460, 249, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd9BzWZm', '4136744'), + (26461, 249, 870, 'not_attending', '2021-07-03 18:50:30', '2025-12-17 19:47:39', 'xd9BzWZm', '4136937'), + (26462, 249, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd9BzWZm', '4136938'), + (26463, 249, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd9BzWZm', '4136947'), + (26464, 249, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'xd9BzWZm', '4210314'), + (26465, 249, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd9BzWZm', '4225444'), + (26466, 249, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd9BzWZm', '4239259'), + (26467, 249, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'xd9BzWZm', '4240316'), + (26468, 249, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'xd9BzWZm', '4240317'), + (26469, 249, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'xd9BzWZm', '4240318'), + (26470, 249, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'xd9BzWZm', '4240320'), + (26471, 249, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd9BzWZm', '4250163'), + (26472, 249, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'xd9BzWZm', '4275957'), + (26473, 249, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xd9BzWZm', '4277819'), + (26474, 249, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xd9BzWZm', '4301723'), + (26475, 249, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xd9BzWZm', '4302093'), + (26476, 249, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xd9BzWZm', '4304151'), + (26477, 249, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'xd9BzWZm', '4345519'), + (26478, 249, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xd9BzWZm', '4358025'), + (26479, 249, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'xd9BzWZm', '4366186'), + (26480, 249, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'xd9BzWZm', '4366187'), + (26481, 249, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9BzWZm', '6045684'), + (26482, 250, 423, 'attending', '2020-11-06 00:32:36', '2025-12-17 19:47:53', '6AXqYJY4', '3245296'), + (26483, 250, 440, 'attending', '2020-11-08 00:19:29', '2025-12-17 19:47:53', '6AXqYJY4', '3256168'), + (26484, 250, 441, 'attending', '2020-11-08 21:01:37', '2025-12-17 19:47:54', '6AXqYJY4', '3256169'), + (26485, 250, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', '6AXqYJY4', '3266138'), + (26486, 250, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '6AXqYJY4', '3281467'), + (26487, 250, 462, 'attending', '2020-11-08 05:46:12', '2025-12-17 19:47:53', '6AXqYJY4', '3281470'), + (26488, 250, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '6AXqYJY4', '3281829'), + (26489, 250, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '6AXqYJY4', '3285413'), + (26490, 250, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '6AXqYJY4', '3285414'), + (26491, 250, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '6AXqYJY4', '3297764'), + (26492, 250, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '6AXqYJY4', '3313856'), + (26493, 250, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '6AXqYJY4', '3314909'), + (26494, 250, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '6AXqYJY4', '3314964'), + (26495, 250, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '6AXqYJY4', '3323365'), + (26496, 250, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '6AXqYJY4', '3329383'), + (26497, 250, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '6AXqYJY4', '3351539'), + (26498, 250, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '6AXqYJY4', '3386848'), + (26499, 250, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '6AXqYJY4', '3389527'), + (26500, 250, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '6AXqYJY4', '3396499'), + (26501, 250, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '6AXqYJY4', '3403650'), + (26502, 250, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '6AXqYJY4', '3406988'), + (26503, 250, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '6AXqYJY4', '3416576'), + (26504, 250, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '6AXqYJY4', '3418925'), + (26505, 250, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', '6AXqYJY4', '3426074'), + (26506, 250, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', '6AXqYJY4', '3430267'), + (26507, 250, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '6AXqYJY4', '3470305'), + (26508, 250, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '6AXqYJY4', '3470991'), + (26509, 250, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '6AXqYJY4', '3517815'), + (26510, 250, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '6AXqYJY4', '3517816'), + (26511, 250, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '6AXqYJY4', '3523941'), + (26512, 250, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '6AXqYJY4', '3533850'), + (26513, 250, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '6AXqYJY4', '3536632'), + (26514, 250, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '6AXqYJY4', '3536656'), + (26515, 250, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '6AXqYJY4', '3539916'), + (26516, 250, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '6AXqYJY4', '3539917'), + (26517, 250, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '6AXqYJY4', '3539918'), + (26518, 250, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '6AXqYJY4', '3539919'), + (26519, 250, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '6AXqYJY4', '3539920'), + (26520, 250, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '6AXqYJY4', '3539921'), + (26521, 250, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '6AXqYJY4', '3539922'), + (26522, 250, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '6AXqYJY4', '3539923'), + (26523, 250, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '6AXqYJY4', '3539927'), + (26524, 250, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '6AXqYJY4', '3582734'), + (26525, 250, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '6AXqYJY4', '3583262'), + (26526, 250, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXqYJY4', '3619523'), + (26527, 250, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '6AXqYJY4', '3661369'), + (26528, 250, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXqYJY4', '3674262'), + (26529, 250, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXqYJY4', '3677402'), + (26530, 250, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXqYJY4', '3730212'), + (26531, 250, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXqYJY4', '3793156'), + (26532, 250, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXqYJY4', '3974109'), + (26533, 250, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXqYJY4', '3975311'), + (26534, 250, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXqYJY4', '3975312'), + (26535, 250, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXqYJY4', '3994992'), + (26536, 250, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXqYJY4', '4014338'), + (26537, 250, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXqYJY4', '4021848'), + (26538, 250, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXqYJY4', '4136744'), + (26539, 250, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXqYJY4', '4136937'), + (26540, 250, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXqYJY4', '4136938'), + (26541, 250, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXqYJY4', '4136947'), + (26542, 250, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXqYJY4', '4210314'), + (26543, 250, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXqYJY4', '4225444'), + (26544, 250, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXqYJY4', '4239259'), + (26545, 250, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXqYJY4', '4240316'), + (26546, 250, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXqYJY4', '4240317'), + (26547, 250, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXqYJY4', '4240318'), + (26548, 250, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXqYJY4', '4240320'), + (26549, 250, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXqYJY4', '4250163'), + (26550, 250, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXqYJY4', '4275957'), + (26551, 250, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXqYJY4', '4277819'), + (26552, 250, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXqYJY4', '4301723'), + (26553, 250, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXqYJY4', '4302093'), + (26554, 250, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXqYJY4', '4304151'), + (26555, 250, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXqYJY4', '4356801'), + (26556, 250, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXqYJY4', '4366186'), + (26557, 250, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXqYJY4', '4366187'), + (26558, 250, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AXqYJY4', '4420735'), + (26559, 250, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AXqYJY4', '4420738'), + (26560, 250, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AXqYJY4', '4420739'), + (26561, 250, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AXqYJY4', '4420741'), + (26562, 250, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXqYJY4', '4420744'), + (26563, 250, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXqYJY4', '4420747'), + (26564, 250, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AXqYJY4', '4420748'), + (26565, 250, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXqYJY4', '4420749'), + (26566, 250, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXqYJY4', '4461883'), + (26567, 250, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXqYJY4', '4508342'), + (26568, 250, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXqYJY4', '4568602'), + (26569, 250, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AXqYJY4', '4572153'), + (26570, 250, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AXqYJY4', '4585962'), + (26571, 250, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '6AXqYJY4', '4596356'), + (26572, 250, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AXqYJY4', '4598860'), + (26573, 250, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AXqYJY4', '4598861'), + (26574, 250, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '6AXqYJY4', '4602797'), + (26575, 250, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '6AXqYJY4', '4637896'), + (26576, 250, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AXqYJY4', '4642994'), + (26577, 250, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AXqYJY4', '4642995'), + (26578, 250, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AXqYJY4', '4642996'), + (26579, 250, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AXqYJY4', '4642997'), + (26580, 250, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '6AXqYJY4', '4645687'), + (26581, 250, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '6AXqYJY4', '4645698'), + (26582, 250, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '6AXqYJY4', '4645704'), + (26583, 250, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '6AXqYJY4', '4645705'), + (26584, 250, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '6AXqYJY4', '4668385'), + (26585, 250, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '6AXqYJY4', '4694407'), + (26586, 250, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '6AXqYJY4', '4736497'), + (26587, 250, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '6AXqYJY4', '4736499'), + (26588, 250, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '6AXqYJY4', '4736500'), + (26589, 250, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '6AXqYJY4', '4736503'), + (26590, 250, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '6AXqYJY4', '4736504'), + (26591, 250, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '6AXqYJY4', '4746789'), + (26592, 250, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '6AXqYJY4', '4753929'), + (26593, 250, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '6AXqYJY4', '5038850'), + (26594, 250, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '6AXqYJY4', '5045826'), + (26595, 250, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '6AXqYJY4', '5132533'), + (26596, 250, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '6AXqYJY4', '5186582'), + (26597, 250, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '6AXqYJY4', '5186583'), + (26598, 250, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '6AXqYJY4', '5186585'), + (26599, 250, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '6AXqYJY4', '5190437'), + (26600, 250, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '6AXqYJY4', '5195095'), + (26601, 250, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '6AXqYJY4', '5215989'), + (26602, 250, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '6AXqYJY4', '5223686'), + (26603, 250, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '6AXqYJY4', '5247467'), + (26604, 250, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '6AXqYJY4', '5260800'), + (26605, 250, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '6AXqYJY4', '5269930'), + (26606, 250, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '6AXqYJY4', '5271448'), + (26607, 250, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '6AXqYJY4', '5271449'), + (26608, 250, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '6AXqYJY4', '5278159'), + (26609, 250, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '6AXqYJY4', '5363695'), + (26610, 250, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '6AXqYJY4', '5365960'), + (26611, 250, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '6AXqYJY4', '5378247'), + (26612, 250, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '6AXqYJY4', '5389605'), + (26613, 250, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '6AXqYJY4', '5397265'), + (26614, 250, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '6AXqYJY4', '5404786'), + (26615, 250, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '6AXqYJY4', '5405203'), + (26616, 250, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '6AXqYJY4', '5412550'), + (26617, 250, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '6AXqYJY4', '5415046'), + (26618, 250, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '6AXqYJY4', '5422086'), + (26619, 250, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '6AXqYJY4', '5422406'), + (26620, 250, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '6AXqYJY4', '5424565'), + (26621, 250, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '6AXqYJY4', '5426882'), + (26622, 250, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '6AXqYJY4', '5441125'), + (26623, 250, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '6AXqYJY4', '5441126'), + (26624, 250, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '6AXqYJY4', '5441128'), + (26625, 250, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '6AXqYJY4', '5441131'), + (26626, 250, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '6AXqYJY4', '5441132'), + (26627, 250, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '6AXqYJY4', '5453325'), + (26628, 250, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '6AXqYJY4', '5454516'), + (26629, 250, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '6AXqYJY4', '5454605'), + (26630, 250, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '6AXqYJY4', '5455037'), + (26631, 250, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '6AXqYJY4', '5461278'), + (26632, 250, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '6AXqYJY4', '5469480'), + (26633, 250, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '6AXqYJY4', '5474663'), + (26634, 250, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '6AXqYJY4', '5482022'), + (26635, 250, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '6AXqYJY4', '5488912'), + (26636, 250, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '6AXqYJY4', '5492192'), + (26637, 250, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '6AXqYJY4', '5493139'), + (26638, 250, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '6AXqYJY4', '5493200'), + (26639, 250, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '6AXqYJY4', '5502188'), + (26640, 250, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '6AXqYJY4', '5505059'), + (26641, 250, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '6AXqYJY4', '5509055'), + (26642, 250, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '6AXqYJY4', '5512862'), + (26643, 250, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '6AXqYJY4', '5513985'), + (26644, 250, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '6AXqYJY4', '5519981'), + (26645, 250, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '6AXqYJY4', '5522550'), + (26646, 250, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '6AXqYJY4', '5534683'), + (26647, 250, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '6AXqYJY4', '5537735'), + (26648, 250, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '6AXqYJY4', '5540859'), + (26649, 250, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '6AXqYJY4', '5546619'), + (26650, 250, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '6AXqYJY4', '5557747'), + (26651, 250, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '6AXqYJY4', '5560255'), + (26652, 250, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '6AXqYJY4', '5562906'), + (26653, 250, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '6AXqYJY4', '5600604'), + (26654, 250, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '6AXqYJY4', '5605544'), + (26655, 250, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '6AXqYJY4', '5630960'), + (26656, 250, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '6AXqYJY4', '5630961'), + (26657, 250, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '6AXqYJY4', '5630962'), + (26658, 250, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '6AXqYJY4', '5630966'), + (26659, 250, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '6AXqYJY4', '5630967'), + (26660, 250, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '6AXqYJY4', '5630968'), + (26661, 250, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '6AXqYJY4', '5635406'), + (26662, 250, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '6AXqYJY4', '5638765'), + (26663, 250, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '6AXqYJY4', '5640097'), + (26664, 250, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '6AXqYJY4', '5640843'), + (26665, 250, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '6AXqYJY4', '5641521'), + (26666, 250, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '6AXqYJY4', '5642818'), + (26667, 250, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '6AXqYJY4', '5652395'), + (26668, 250, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '6AXqYJY4', '5670445'), + (26669, 250, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '6AXqYJY4', '5671637'), + (26670, 250, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '6AXqYJY4', '5672329'), + (26671, 250, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '6AXqYJY4', '5674057'), + (26672, 250, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '6AXqYJY4', '5674060'), + (26673, 250, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '6AXqYJY4', '5677461'), + (26674, 250, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '6AXqYJY4', '5698046'), + (26675, 250, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '6AXqYJY4', '5699760'), + (26676, 250, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '6AXqYJY4', '5741601'), + (26677, 250, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '6AXqYJY4', '5763458'), + (26678, 250, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '6AXqYJY4', '5774172'), + (26679, 250, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '6AXqYJY4', '5818247'), + (26680, 250, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '6AXqYJY4', '5819471'), + (26681, 250, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '6AXqYJY4', '5827739'), + (26682, 250, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '6AXqYJY4', '5844306'), + (26683, 250, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '6AXqYJY4', '5850159'), + (26684, 250, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '6AXqYJY4', '5858999'), + (26685, 250, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '6AXqYJY4', '5871984'), + (26686, 250, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '6AXqYJY4', '5876354'), + (26687, 250, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '6AXqYJY4', '5880939'), + (26688, 250, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '6AXqYJY4', '5880940'), + (26689, 250, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '6AXqYJY4', '5880942'), + (26690, 250, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '6AXqYJY4', '5880943'), + (26691, 250, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '6AXqYJY4', '5887890'), + (26692, 250, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '6AXqYJY4', '5888598'), + (26693, 250, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '6AXqYJY4', '5893260'), + (26694, 250, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '6AXqYJY4', '5899826'), + (26695, 250, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '6AXqYJY4', '5900199'), + (26696, 250, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '6AXqYJY4', '5900200'), + (26697, 250, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '6AXqYJY4', '5900202'), + (26698, 250, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '6AXqYJY4', '5900203'), + (26699, 250, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '6AXqYJY4', '5901108'), + (26700, 250, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '6AXqYJY4', '5901126'), + (26701, 250, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '6AXqYJY4', '5901606'), + (26702, 250, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '6AXqYJY4', '5909655'), + (26703, 250, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '6AXqYJY4', '5910522'), + (26704, 250, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '6AXqYJY4', '5910526'), + (26705, 250, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '6AXqYJY4', '5910528'), + (26706, 250, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '6AXqYJY4', '5916219'), + (26707, 250, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '6AXqYJY4', '5936234'), + (26708, 250, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '6AXqYJY4', '5958351'), + (26709, 250, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '6AXqYJY4', '5959751'), + (26710, 250, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '6AXqYJY4', '5959755'), + (26711, 250, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '6AXqYJY4', '5960055'), + (26712, 250, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '6AXqYJY4', '5961684'), + (26713, 250, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '6AXqYJY4', '5962132'), + (26714, 250, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '6AXqYJY4', '5962133'), + (26715, 250, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '6AXqYJY4', '5962134'), + (26716, 250, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '6AXqYJY4', '5962317'), + (26717, 250, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '6AXqYJY4', '5962318'), + (26718, 250, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '6AXqYJY4', '5965933'), + (26719, 250, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '6AXqYJY4', '5967014'), + (26720, 250, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '6AXqYJY4', '5972815'), + (26721, 250, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '6AXqYJY4', '5974016'), + (26722, 250, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '6AXqYJY4', '5981515'), + (26723, 250, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '6AXqYJY4', '5993516'), + (26724, 250, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '6AXqYJY4', '5998939'), + (26725, 250, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '6AXqYJY4', '6028191'), + (26726, 250, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '6AXqYJY4', '6040066'), + (26727, 250, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '6AXqYJY4', '6042717'), + (26728, 250, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '6AXqYJY4', '6044838'), + (26729, 250, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '6AXqYJY4', '6044839'), + (26730, 250, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXqYJY4', '6045684'), + (26731, 250, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '6AXqYJY4', '6050104'), + (26732, 250, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '6AXqYJY4', '6053195'), + (26733, 250, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '6AXqYJY4', '6053198'), + (26734, 250, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '6AXqYJY4', '6056085'), + (26735, 250, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '6AXqYJY4', '6056916'), + (26736, 250, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '6AXqYJY4', '6059290'), + (26737, 250, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '6AXqYJY4', '6060328'), + (26738, 250, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '6AXqYJY4', '6061037'), + (26739, 250, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '6AXqYJY4', '6061039'), + (26740, 250, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '6AXqYJY4', '6067245'), + (26741, 250, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '6AXqYJY4', '6068094'), + (26742, 250, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '6AXqYJY4', '6068252'), + (26743, 250, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '6AXqYJY4', '6068253'), + (26744, 250, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '6AXqYJY4', '6068254'), + (26745, 250, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '6AXqYJY4', '6068280'), + (26746, 250, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '6AXqYJY4', '6069093'), + (26747, 250, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '6AXqYJY4', '6072528'), + (26748, 250, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '6AXqYJY4', '6079840'), + (26749, 250, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '6AXqYJY4', '6083398'), + (26750, 250, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '6AXqYJY4', '6093504'), + (26751, 250, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '6AXqYJY4', '6097414'), + (26752, 250, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '6AXqYJY4', '6097442'), + (26753, 250, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '6AXqYJY4', '6097684'), + (26754, 250, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '6AXqYJY4', '6098762'), + (26755, 250, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '6AXqYJY4', '6101361'), + (26756, 250, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '6AXqYJY4', '6101362'), + (26757, 250, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '6AXqYJY4', '6107314'), + (26758, 250, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '6AXqYJY4', '6120034'), + (26759, 250, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '6AXqYJY4', '6136733'), + (26760, 250, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '6AXqYJY4', '6137989'), + (26761, 250, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '6AXqYJY4', '6150864'), + (26762, 250, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '6AXqYJY4', '6155491'), + (26763, 250, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '6AXqYJY4', '6164417'), + (26764, 250, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '6AXqYJY4', '6166388'), + (26765, 250, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '6AXqYJY4', '6176439'), + (26766, 250, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '6AXqYJY4', '6182410'), + (26767, 250, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '6AXqYJY4', '6185812'), + (26768, 250, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '6AXqYJY4', '6187651'), + (26769, 250, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '6AXqYJY4', '6187963'), + (26770, 250, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '6AXqYJY4', '6187964'), + (26771, 250, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '6AXqYJY4', '6187966'), + (26772, 250, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '6AXqYJY4', '6187967'), + (26773, 250, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '6AXqYJY4', '6187969'), + (26774, 250, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '6AXqYJY4', '6334878'), + (26775, 250, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '6AXqYJY4', '6337236'), + (26776, 250, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '6AXqYJY4', '6337970'), + (26777, 250, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '6AXqYJY4', '6338308'), + (26778, 250, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '6AXqYJY4', '6341710'), + (26779, 250, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '6AXqYJY4', '6342044'), + (26780, 250, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '6AXqYJY4', '6342298'), + (26781, 250, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '6AXqYJY4', '6343294'), + (26782, 250, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '6AXqYJY4', '6347034'), + (26783, 250, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '6AXqYJY4', '6347056'), + (26784, 250, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '6AXqYJY4', '6353830'), + (26785, 250, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '6AXqYJY4', '6353831'), + (26786, 250, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '6AXqYJY4', '6357867'), + (26787, 250, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '6AXqYJY4', '6358652'), + (26788, 250, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '6AXqYJY4', '6361709'), + (26789, 250, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '6AXqYJY4', '6361710'), + (26790, 250, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '6AXqYJY4', '6361711'), + (26791, 250, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '6AXqYJY4', '6361712'), + (26792, 250, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '6AXqYJY4', '6361713'), + (26793, 250, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '6AXqYJY4', '6382573'), + (26794, 250, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '6AXqYJY4', '6388604'), + (26795, 250, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '6AXqYJY4', '6394629'), + (26796, 250, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '6AXqYJY4', '6394631'), + (26797, 250, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '6AXqYJY4', '6440863'), + (26798, 250, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '6AXqYJY4', '6445440'), + (26799, 250, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '6AXqYJY4', '6453951'), + (26800, 250, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '6AXqYJY4', '6461696'), + (26801, 250, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '6AXqYJY4', '6462129'), + (26802, 250, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '6AXqYJY4', '6463218'), + (26803, 250, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '6AXqYJY4', '6472181'), + (26804, 250, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '6AXqYJY4', '6482693'), + (26805, 250, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '6AXqYJY4', '6484200'), + (26806, 250, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '6AXqYJY4', '6484680'), + (26807, 250, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '6AXqYJY4', '6507741'), + (26808, 250, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '6AXqYJY4', '6514659'), + (26809, 250, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '6AXqYJY4', '6514660'), + (26810, 250, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '6AXqYJY4', '6519103'), + (26811, 250, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '6AXqYJY4', '6535681'), + (26812, 250, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '6AXqYJY4', '6584747'), + (26813, 250, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '6AXqYJY4', '6587097'), + (26814, 250, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '6AXqYJY4', '6609022'), + (26815, 250, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '6AXqYJY4', '6632757'), + (26816, 250, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '6AXqYJY4', '6644187'), + (26817, 250, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '6AXqYJY4', '6648951'), + (26818, 250, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '6AXqYJY4', '6648952'), + (26819, 250, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '6AXqYJY4', '6655401'), + (26820, 250, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '6AXqYJY4', '6661585'), + (26821, 250, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '6AXqYJY4', '6661588'), + (26822, 250, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '6AXqYJY4', '6661589'), + (26823, 250, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '6AXqYJY4', '6699906'), + (26824, 250, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '6AXqYJY4', '6699913'), + (26825, 250, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '6AXqYJY4', '6701109'), + (26826, 250, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '6AXqYJY4', '6705219'), + (26827, 250, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '6AXqYJY4', '6710153'), + (26828, 250, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '6AXqYJY4', '6711552'), + (26829, 250, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '6AXqYJY4', '6711553'), + (26830, 250, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '6AXqYJY4', '6722688'), + (26831, 250, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '6AXqYJY4', '6730620'), + (26832, 250, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '6AXqYJY4', '6740364'), + (26833, 250, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '6AXqYJY4', '6743829'), + (26834, 250, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '6AXqYJY4', '7030380'), + (26835, 250, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '6AXqYJY4', '7033677'), + (26836, 250, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '6AXqYJY4', '7044715'), + (26837, 250, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '6AXqYJY4', '7050318'), + (26838, 250, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '6AXqYJY4', '7050319'), + (26839, 250, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '6AXqYJY4', '7050322'), + (26840, 250, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '6AXqYJY4', '7057804'), + (26841, 250, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '6AXqYJY4', '7072824'), + (26842, 250, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '6AXqYJY4', '7074348'), + (26843, 250, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '6AXqYJY4', '7074364'), + (26844, 250, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '6AXqYJY4', '7089267'), + (26845, 250, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '6AXqYJY4', '7098747'), + (26846, 250, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '6AXqYJY4', '7113468'), + (26847, 250, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '6AXqYJY4', '7114856'), + (26848, 250, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '6AXqYJY4', '7114951'), + (26849, 250, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '6AXqYJY4', '7114955'), + (26850, 250, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '6AXqYJY4', '7114956'), + (26851, 250, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '6AXqYJY4', '7114957'), + (26852, 250, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '6AXqYJY4', '7159484'), + (26853, 250, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '6AXqYJY4', '7178446'), + (26854, 250, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '6AXqYJY4', '7220467'), + (26855, 250, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '6AXqYJY4', '7240354'), + (26856, 250, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '6AXqYJY4', '7251633'), + (26857, 250, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '6AXqYJY4', '7324073'), + (26858, 250, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '6AXqYJY4', '7324074'), + (26859, 250, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '6AXqYJY4', '7324075'), + (26860, 250, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '6AXqYJY4', '7324078'), + (26861, 250, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '6AXqYJY4', '7324082'), + (26862, 250, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '6AXqYJY4', '7331457'), + (26863, 250, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '6AXqYJY4', '7363643'), + (26864, 250, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '6AXqYJY4', '7368606'), + (26865, 250, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '6AXqYJY4', '7397462'), + (26866, 250, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '6AXqYJY4', '7424275'), + (26867, 250, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '6AXqYJY4', '7432751'), + (26868, 250, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '6AXqYJY4', '7432752'), + (26869, 250, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '6AXqYJY4', '7432753'), + (26870, 250, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '6AXqYJY4', '7432754'), + (26871, 250, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '6AXqYJY4', '7432755'), + (26872, 250, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '6AXqYJY4', '7432756'), + (26873, 250, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '6AXqYJY4', '7432758'), + (26874, 250, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '6AXqYJY4', '7432759'), + (26875, 250, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '6AXqYJY4', '7433834'), + (26876, 250, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '6AXqYJY4', '7470197'), + (26877, 250, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '6AXqYJY4', '7685613'), + (26878, 250, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '6AXqYJY4', '7688194'), + (26879, 250, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '6AXqYJY4', '7688196'), + (26880, 250, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '6AXqYJY4', '7688289'), + (26881, 250, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '6AXqYJY4', '7692763'), + (26882, 250, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '6AXqYJY4', '7697552'), + (26883, 250, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '6AXqYJY4', '7699878'), + (26884, 250, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '6AXqYJY4', '7704043'), + (26885, 250, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '6AXqYJY4', '7712467'), + (26886, 250, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '6AXqYJY4', '7713585'), + (26887, 250, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '6AXqYJY4', '7713586'), + (26888, 250, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '6AXqYJY4', '7738518'), + (26889, 250, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '6AXqYJY4', '7750636'), + (26890, 250, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '6AXqYJY4', '7796540'), + (26891, 250, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '6AXqYJY4', '7796541'), + (26892, 250, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '6AXqYJY4', '7796542'), + (26893, 250, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '6AXqYJY4', '7825913'), + (26894, 250, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '6AXqYJY4', '7826209'), + (26895, 250, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '6AXqYJY4', '7834742'), + (26896, 250, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '6AXqYJY4', '7842108'), + (26897, 250, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '6AXqYJY4', '7842902'), + (26898, 250, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '6AXqYJY4', '7842903'), + (26899, 250, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '6AXqYJY4', '7842904'), + (26900, 250, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '6AXqYJY4', '7842905'), + (26901, 250, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '6AXqYJY4', '7855719'), + (26902, 250, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '6AXqYJY4', '7860683'), + (26903, 250, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '6AXqYJY4', '7860684'), + (26904, 250, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '6AXqYJY4', '7866095'), + (26905, 250, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '6AXqYJY4', '7869170'), + (26906, 250, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '6AXqYJY4', '7869188'), + (26907, 250, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '6AXqYJY4', '7869201'), + (26908, 250, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '6AXqYJY4', '7877465'), + (26909, 250, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '6AXqYJY4', '7888250'), + (26910, 250, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '6AXqYJY4', '7904777'), + (26911, 250, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '6AXqYJY4', '8349164'), + (26912, 250, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '6AXqYJY4', '8349545'), + (26913, 250, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '6AXqYJY4', '8368028'), + (26914, 250, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '6AXqYJY4', '8368029'), + (26915, 250, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '6AXqYJY4', '8388462'), + (26916, 250, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '6AXqYJY4', '8400273'), + (26917, 250, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '6AXqYJY4', '8400275'), + (26918, 250, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '6AXqYJY4', '8400276'), + (26919, 250, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '6AXqYJY4', '8404977'), + (26920, 250, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '6AXqYJY4', '8430783'), + (26921, 250, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '6AXqYJY4', '8430784'), + (26922, 250, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '6AXqYJY4', '8430799'), + (26923, 250, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '6AXqYJY4', '8430800'), + (26924, 250, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '6AXqYJY4', '8430801'), + (26925, 250, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '6AXqYJY4', '8438709'), + (26926, 250, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '6AXqYJY4', '8457738'), + (26927, 250, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '6AXqYJY4', '8459566'), + (26928, 250, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '6AXqYJY4', '8459567'), + (26929, 250, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '6AXqYJY4', '8461032'), + (26930, 250, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '6AXqYJY4', '8477877'), + (26931, 250, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '6AXqYJY4', '8485688'), + (26932, 250, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '6AXqYJY4', '8490587'), + (26933, 250, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '6AXqYJY4', '8493552'), + (26934, 250, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '6AXqYJY4', '8493553'), + (26935, 250, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '6AXqYJY4', '8493554'), + (26936, 250, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '6AXqYJY4', '8493555'), + (26937, 250, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '6AXqYJY4', '8493556'), + (26938, 250, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '6AXqYJY4', '8493557'), + (26939, 250, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '6AXqYJY4', '8493558'), + (26940, 250, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '6AXqYJY4', '8493559'), + (26941, 250, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '6AXqYJY4', '8493560'), + (26942, 250, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '6AXqYJY4', '8493561'), + (26943, 250, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '6AXqYJY4', '8493572'), + (26944, 250, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '6AXqYJY4', '8540725'), + (26945, 250, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '6AXqYJY4', '8555421'), + (26946, 251, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3ROYLe4', '6045684'), + (26947, 252, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40J3LKm', '6045684'), + (26948, 253, 260, 'attending', '2021-06-13 18:48:03', '2025-12-17 19:47:47', 'ndaVPZKm', '3149491'), + (26949, 253, 743, 'attending', '2021-06-20 04:23:26', '2025-12-17 19:47:38', 'ndaVPZKm', '3680623'), + (26950, 253, 823, 'attending', '2021-06-16 03:47:48', '2025-12-17 19:47:48', 'ndaVPZKm', '3974109'), + (26951, 253, 844, 'not_attending', '2021-06-14 18:34:52', '2025-12-17 19:47:38', 'ndaVPZKm', '4014338'), + (26952, 253, 867, 'attending', '2021-06-20 03:44:54', '2025-12-17 19:47:38', 'ndaVPZKm', '4021848'), + (26953, 253, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ndaVPZKm', '4136744'), + (26954, 253, 870, 'not_attending', '2021-07-01 14:25:39', '2025-12-17 19:47:39', 'ndaVPZKm', '4136937'), + (26955, 253, 871, 'attending', '2021-07-05 14:19:01', '2025-12-17 19:47:39', 'ndaVPZKm', '4136938'), + (26956, 253, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndaVPZKm', '4136947'), + (26957, 253, 874, 'attending', '2021-06-19 18:08:40', '2025-12-17 19:47:38', 'ndaVPZKm', '4139815'), + (26958, 253, 875, 'attending', '2021-06-27 02:42:24', '2025-12-17 19:47:38', 'ndaVPZKm', '4139816'), + (26959, 253, 879, 'attending', '2021-06-28 22:17:00', '2025-12-17 19:47:38', 'ndaVPZKm', '4147806'), + (26960, 253, 880, 'attending', '2021-06-18 13:43:11', '2025-12-17 19:47:48', 'ndaVPZKm', '4205383'), + (26961, 253, 883, 'not_attending', '2021-06-22 11:47:11', '2025-12-17 19:47:38', 'ndaVPZKm', '4209121'), + (26962, 253, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndaVPZKm', '4210314'), + (26963, 253, 885, 'not_attending', '2021-06-27 20:17:41', '2025-12-17 19:47:38', 'ndaVPZKm', '4222370'), + (26964, 253, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndaVPZKm', '4225444'), + (26965, 253, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndaVPZKm', '4239259'), + (26966, 253, 900, 'not_attending', '2021-07-24 16:58:22', '2025-12-17 19:47:40', 'ndaVPZKm', '4240316'), + (26967, 253, 901, 'attending', '2021-07-30 02:24:09', '2025-12-17 19:47:40', 'ndaVPZKm', '4240317'), + (26968, 253, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndaVPZKm', '4240318'), + (26969, 253, 903, 'attending', '2021-08-10 20:10:41', '2025-12-17 19:47:42', 'ndaVPZKm', '4240320'), + (26970, 253, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndaVPZKm', '4250163'), + (26971, 253, 909, 'attending', '2021-07-10 19:50:27', '2025-12-17 19:47:39', 'ndaVPZKm', '4258187'), + (26972, 253, 910, 'not_attending', '2021-07-17 21:05:13', '2025-12-17 19:47:39', 'ndaVPZKm', '4258189'), + (26973, 253, 916, 'not_attending', '2021-07-22 03:58:54', '2025-12-17 19:47:40', 'ndaVPZKm', '4273772'), + (26974, 253, 917, 'attending', '2021-07-12 12:38:24', '2025-12-17 19:47:39', 'ndaVPZKm', '4274481'), + (26975, 253, 918, 'attending', '2021-07-12 22:47:38', '2025-12-17 19:47:39', 'ndaVPZKm', '4274486'), + (26976, 253, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndaVPZKm', '4275957'), + (26977, 253, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndaVPZKm', '4277819'), + (26978, 253, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndaVPZKm', '4301723'), + (26979, 253, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ndaVPZKm', '4302093'), + (26980, 253, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndaVPZKm', '4304151'), + (26981, 253, 946, 'attending', '2021-08-01 02:36:53', '2025-12-17 19:47:40', 'ndaVPZKm', '4314835'), + (26982, 253, 955, 'attending', '2021-08-03 03:10:39', '2025-12-17 19:47:41', 'ndaVPZKm', '4331588'), + (26983, 253, 960, 'attending', '2021-08-11 18:26:01', '2025-12-17 19:47:41', 'ndaVPZKm', '4344519'), + (26984, 253, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndaVPZKm', '4345519'), + (26985, 253, 970, 'not_attending', '2021-08-13 22:52:56', '2025-12-17 19:47:42', 'ndaVPZKm', '4356798'), + (26986, 253, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndaVPZKm', '4356801'), + (26987, 253, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndaVPZKm', '4358025'), + (26988, 253, 973, 'attending', '2021-08-17 12:41:24', '2025-12-17 19:47:42', 'ndaVPZKm', '4366186'), + (26989, 253, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndaVPZKm', '4366187'), + (26990, 253, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndaVPZKm', '4402823'), + (26991, 253, 990, 'maybe', '2021-08-30 14:12:57', '2025-12-17 19:47:43', 'ndaVPZKm', '4420735'), + (26992, 253, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ndaVPZKm', '4420738'), + (26993, 253, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndaVPZKm', '4420739'), + (26994, 253, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndaVPZKm', '4420741'), + (26995, 253, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndaVPZKm', '4420744'), + (26996, 253, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndaVPZKm', '4420747'), + (26997, 253, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndaVPZKm', '4420748'), + (26998, 253, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndaVPZKm', '4420749'), + (26999, 253, 1020, 'not_attending', '2021-09-13 19:11:25', '2025-12-17 19:47:43', 'ndaVPZKm', '4451787'), + (27000, 253, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndaVPZKm', '4461883'), + (27001, 253, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndaVPZKm', '4508342'), + (27002, 253, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndaVPZKm', '4568602'), + (27003, 253, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ndaVPZKm', '4668385'), + (27004, 253, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndaVPZKm', '4694407'), + (27005, 253, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ndaVPZKm', '4736497'), + (27006, 253, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndaVPZKm', '4736500'), + (27007, 253, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndaVPZKm', '4746789'), + (27008, 253, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ndaVPZKm', '4753929'), + (27009, 253, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndaVPZKm', '5038850'), + (27010, 253, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaVPZKm', '6045684'), + (27011, 254, 871, 'not_attending', '2021-07-05 05:53:31', '2025-12-17 19:47:39', 'x4oRKGoA', '4136938'), + (27012, 254, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'x4oRKGoA', '4136947'), + (27013, 254, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oRKGoA', '4210314'), + (27014, 254, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oRKGoA', '4225444'), + (27015, 254, 892, 'maybe', '2021-07-05 01:20:48', '2025-12-17 19:47:39', 'x4oRKGoA', '4229418'), + (27016, 254, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'x4oRKGoA', '4229420'), + (27017, 254, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'x4oRKGoA', '4229423'), + (27018, 254, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'x4oRKGoA', '4240316'), + (27019, 254, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oRKGoA', '4240317'), + (27020, 254, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'x4oRKGoA', '4240318'), + (27021, 254, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'x4oRKGoA', '4240320'), + (27022, 254, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oRKGoA', '4275957'), + (27023, 254, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oRKGoA', '4277819'), + (27024, 254, 923, 'not_attending', '2021-07-20 02:30:47', '2025-12-17 19:47:40', 'x4oRKGoA', '4292773'), + (27025, 254, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oRKGoA', '4301723'), + (27026, 254, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'x4oRKGoA', '4302093'), + (27027, 254, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oRKGoA', '4304151'), + (27028, 254, 940, 'not_attending', '2021-07-30 16:29:29', '2025-12-17 19:47:40', 'x4oRKGoA', '4309049'), + (27029, 254, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'x4oRKGoA', '4315713'), + (27030, 254, 948, 'not_attending', '2021-08-11 05:28:23', '2025-12-17 19:47:41', 'x4oRKGoA', '4315714'), + (27031, 254, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'x4oRKGoA', '4315726'), + (27032, 254, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'x4oRKGoA', '4356801'), + (27033, 254, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'x4oRKGoA', '4366186'), + (27034, 254, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'x4oRKGoA', '4366187'), + (27035, 254, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'x4oRKGoA', '4420735'), + (27036, 254, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'x4oRKGoA', '4420738'), + (27037, 254, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'x4oRKGoA', '4420739'), + (27038, 254, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'x4oRKGoA', '4420741'), + (27039, 254, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'x4oRKGoA', '4420744'), + (27040, 254, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'x4oRKGoA', '4420747'), + (27041, 254, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'x4oRKGoA', '4420748'), + (27042, 254, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'x4oRKGoA', '4420749'), + (27043, 254, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oRKGoA', '6045684'), + (27044, 255, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlO6PYV4', '6045684'), + (27045, 256, 3233, 'attending', '2025-08-15 20:15:27', '2025-12-17 19:46:18', 'AnJZbzJA', '8485688'), + (27046, 256, 3234, 'attending', '2025-08-15 02:56:47', '2025-12-17 19:46:17', 'AnJZbzJA', '8488773'), + (27047, 256, 3235, 'not_attending', '2025-08-19 15:28:45', '2025-12-17 19:46:18', 'AnJZbzJA', '8490587'), + (27048, 256, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnJZbzJA', '8493552'), + (27049, 256, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnJZbzJA', '8493553'), + (27050, 256, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnJZbzJA', '8493554'), + (27051, 256, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnJZbzJA', '8493555'), + (27052, 256, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnJZbzJA', '8493556'), + (27053, 256, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnJZbzJA', '8493557'), + (27054, 256, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnJZbzJA', '8493558'), + (27055, 256, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnJZbzJA', '8493559'), + (27056, 256, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnJZbzJA', '8493560'), + (27057, 256, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'AnJZbzJA', '8493561'), + (27058, 256, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnJZbzJA', '8493572'), + (27059, 256, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'AnJZbzJA', '8540725'), + (27060, 256, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnJZbzJA', '8555421'), + (27061, 257, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'oAgMxVyd', '6045684'), + (27062, 258, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLgQ1yd', '5424565'), + (27063, 258, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLgQ1yd', '5426882'), + (27064, 258, 1505, 'not_attending', '2022-07-06 01:20:19', '2025-12-17 19:47:19', 'NmLgQ1yd', '5427083'), + (27065, 258, 1512, 'maybe', '2022-07-12 17:02:29', '2025-12-17 19:47:19', 'NmLgQ1yd', '5441112'), + (27066, 258, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLgQ1yd', '5441125'), + (27067, 258, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmLgQ1yd', '5441126'), + (27068, 258, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmLgQ1yd', '5441128'), + (27069, 258, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLgQ1yd', '5446643'), + (27070, 258, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'NmLgQ1yd', '5449068'), + (27071, 258, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLgQ1yd', '5453325'), + (27072, 258, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLgQ1yd', '5454516'), + (27073, 258, 1544, 'attending', '2022-09-17 02:45:18', '2025-12-17 19:47:11', 'NmLgQ1yd', '5454517'), + (27074, 258, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLgQ1yd', '5454605'), + (27075, 258, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLgQ1yd', '5455037'), + (27076, 258, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLgQ1yd', '5461278'), + (27077, 258, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLgQ1yd', '5469480'), + (27078, 258, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLgQ1yd', '5471073'), + (27079, 258, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'NmLgQ1yd', '5474663'), + (27080, 258, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLgQ1yd', '5482022'), + (27081, 258, 1574, 'attending', '2022-08-08 16:13:57', '2025-12-17 19:47:22', 'NmLgQ1yd', '5482153'), + (27082, 258, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLgQ1yd', '5482793'), + (27083, 258, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLgQ1yd', '5488912'), + (27084, 258, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLgQ1yd', '5492192'), + (27085, 258, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLgQ1yd', '5493139'), + (27086, 258, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLgQ1yd', '5493200'), + (27087, 258, 1598, 'attending', '2022-08-11 16:28:12', '2025-12-17 19:47:22', 'NmLgQ1yd', '5496567'), + (27088, 258, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLgQ1yd', '5502188'), + (27089, 258, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLgQ1yd', '5512862'), + (27090, 258, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLgQ1yd', '5513985'), + (27091, 258, 1630, 'attending', '2022-09-13 17:58:54', '2025-12-17 19:47:10', 'NmLgQ1yd', '5534683'), + (27092, 258, 1635, 'attending', '2022-09-16 11:01:12', '2025-12-17 19:47:10', 'NmLgQ1yd', '5537735'), + (27093, 258, 1640, 'not_attending', '2022-09-15 22:05:31', '2025-12-17 19:47:10', 'NmLgQ1yd', '5540859'), + (27094, 258, 1643, 'maybe', '2022-09-22 15:56:14', '2025-12-17 19:47:11', 'NmLgQ1yd', '5545856'), + (27095, 258, 1644, 'attending', '2022-09-19 22:53:28', '2025-12-17 19:47:11', 'NmLgQ1yd', '5545857'), + (27096, 258, 1647, 'maybe', '2022-09-18 09:37:24', '2025-12-17 19:47:11', 'NmLgQ1yd', '5548660'), + (27097, 258, 1662, 'attending', '2022-09-20 06:31:33', '2025-12-17 19:47:11', 'NmLgQ1yd', '5560255'), + (27098, 258, 1666, 'attending', '2022-09-22 15:56:26', '2025-12-17 19:47:11', 'NmLgQ1yd', '5563208'), + (27099, 258, 1677, 'attending', '2022-09-22 15:56:04', '2025-12-17 19:47:11', 'NmLgQ1yd', '5600604'), + (27100, 258, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLgQ1yd', '5605544'), + (27101, 258, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'NmLgQ1yd', '5606737'), + (27102, 258, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLgQ1yd', '5630960'), + (27103, 258, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLgQ1yd', '5630961'), + (27104, 258, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLgQ1yd', '5630962'), + (27105, 258, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLgQ1yd', '5630966'), + (27106, 258, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLgQ1yd', '5630967'), + (27107, 258, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLgQ1yd', '5630968'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (27108, 258, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLgQ1yd', '5635406'), + (27109, 258, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLgQ1yd', '5638765'), + (27110, 258, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLgQ1yd', '5640097'), + (27111, 258, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLgQ1yd', '5640843'), + (27112, 258, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLgQ1yd', '5641521'), + (27113, 258, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLgQ1yd', '5642818'), + (27114, 258, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLgQ1yd', '5652395'), + (27115, 258, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLgQ1yd', '5670445'), + (27116, 258, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLgQ1yd', '5671637'), + (27117, 258, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLgQ1yd', '5672329'), + (27118, 258, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLgQ1yd', '5674057'), + (27119, 258, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLgQ1yd', '5674060'), + (27120, 258, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLgQ1yd', '5677461'), + (27121, 258, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLgQ1yd', '5698046'), + (27122, 258, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLgQ1yd', '5699760'), + (27123, 258, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLgQ1yd', '5741601'), + (27124, 258, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLgQ1yd', '5763458'), + (27125, 258, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLgQ1yd', '5774172'), + (27126, 258, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'NmLgQ1yd', '5818247'), + (27127, 258, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLgQ1yd', '5819471'), + (27128, 258, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLgQ1yd', '5827739'), + (27129, 258, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLgQ1yd', '5844306'), + (27130, 258, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLgQ1yd', '5850159'), + (27131, 258, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLgQ1yd', '5858999'), + (27132, 258, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLgQ1yd', '5871984'), + (27133, 258, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLgQ1yd', '5876354'), + (27134, 258, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'NmLgQ1yd', '5880939'), + (27135, 258, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLgQ1yd', '5880940'), + (27136, 258, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLgQ1yd', '5880942'), + (27137, 258, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'NmLgQ1yd', '5880943'), + (27138, 258, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLgQ1yd', '5887890'), + (27139, 258, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLgQ1yd', '5888598'), + (27140, 258, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLgQ1yd', '5893260'), + (27141, 258, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLgQ1yd', '5899826'), + (27142, 258, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLgQ1yd', '5900199'), + (27143, 258, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLgQ1yd', '5900200'), + (27144, 258, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'NmLgQ1yd', '5900202'), + (27145, 258, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLgQ1yd', '5900203'), + (27146, 258, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLgQ1yd', '5901108'), + (27147, 258, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLgQ1yd', '5901126'), + (27148, 258, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLgQ1yd', '5909655'), + (27149, 258, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLgQ1yd', '5910522'), + (27150, 258, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLgQ1yd', '5910526'), + (27151, 258, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLgQ1yd', '5910528'), + (27152, 258, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLgQ1yd', '5916219'), + (27153, 258, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'NmLgQ1yd', '5936234'), + (27154, 258, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLgQ1yd', '5958351'), + (27155, 258, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'NmLgQ1yd', '5959751'), + (27156, 258, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'NmLgQ1yd', '5959755'), + (27157, 258, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'NmLgQ1yd', '5960055'), + (27158, 258, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLgQ1yd', '5961684'), + (27159, 258, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'NmLgQ1yd', '5962132'), + (27160, 258, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'NmLgQ1yd', '5962133'), + (27161, 258, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLgQ1yd', '5962134'), + (27162, 258, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLgQ1yd', '5962317'), + (27163, 258, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLgQ1yd', '5962318'), + (27164, 258, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'NmLgQ1yd', '5965933'), + (27165, 258, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLgQ1yd', '5967014'), + (27166, 258, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLgQ1yd', '5972815'), + (27167, 258, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'NmLgQ1yd', '5974016'), + (27168, 258, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLgQ1yd', '5981515'), + (27169, 258, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'NmLgQ1yd', '5993516'), + (27170, 258, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'NmLgQ1yd', '5998939'), + (27171, 258, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLgQ1yd', '6028191'), + (27172, 258, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'NmLgQ1yd', '6040066'), + (27173, 258, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'NmLgQ1yd', '6042717'), + (27174, 258, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLgQ1yd', '6044838'), + (27175, 258, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLgQ1yd', '6044839'), + (27176, 258, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'NmLgQ1yd', '6045684'), + (27177, 258, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLgQ1yd', '6050104'), + (27178, 258, 1999, 'maybe', '2023-04-15 21:44:58', '2025-12-17 19:47:00', 'NmLgQ1yd', '6052057'), + (27179, 258, 2002, 'attending', '2023-04-25 05:16:56', '2025-12-17 19:47:01', 'NmLgQ1yd', '6052605'), + (27180, 258, 2003, 'maybe', '2023-05-15 01:14:43', '2025-12-17 19:47:03', 'NmLgQ1yd', '6052606'), + (27181, 258, 2004, 'maybe', '2023-05-16 06:05:45', '2025-12-17 19:47:04', 'NmLgQ1yd', '6052607'), + (27182, 258, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLgQ1yd', '6053195'), + (27183, 258, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'NmLgQ1yd', '6053198'), + (27184, 258, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'NmLgQ1yd', '6056085'), + (27185, 258, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLgQ1yd', '6056916'), + (27186, 258, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLgQ1yd', '6059290'), + (27187, 258, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLgQ1yd', '6060328'), + (27188, 258, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLgQ1yd', '6061037'), + (27189, 258, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLgQ1yd', '6061039'), + (27190, 258, 2019, 'attending', '2023-04-15 21:44:26', '2025-12-17 19:47:00', 'NmLgQ1yd', '6062934'), + (27191, 258, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLgQ1yd', '6067245'), + (27192, 258, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLgQ1yd', '6068094'), + (27193, 258, 2028, 'maybe', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'NmLgQ1yd', '6068252'), + (27194, 258, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'NmLgQ1yd', '6068253'), + (27195, 258, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'NmLgQ1yd', '6068254'), + (27196, 258, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'NmLgQ1yd', '6068280'), + (27197, 258, 2032, 'maybe', '2023-05-16 06:05:29', '2025-12-17 19:47:04', 'NmLgQ1yd', '6068281'), + (27198, 258, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLgQ1yd', '6069093'), + (27199, 258, 2035, 'maybe', '2023-05-04 04:02:37', '2025-12-17 19:47:02', 'NmLgQ1yd', '6070142'), + (27200, 258, 2039, 'not_attending', '2023-04-25 05:21:47', '2025-12-17 19:47:01', 'NmLgQ1yd', '6072398'), + (27201, 258, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'NmLgQ1yd', '6072528'), + (27202, 258, 2042, 'maybe', '2023-04-27 06:35:53', '2025-12-17 19:47:01', 'NmLgQ1yd', '6072941'), + (27203, 258, 2043, 'maybe', '2023-04-25 05:18:35', '2025-12-17 19:47:01', 'NmLgQ1yd', '6073023'), + (27204, 258, 2049, 'maybe', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'NmLgQ1yd', '6079840'), + (27205, 258, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLgQ1yd', '6083398'), + (27206, 258, 2052, 'attending', '2023-05-06 02:22:23', '2025-12-17 19:47:02', 'NmLgQ1yd', '6088220'), + (27207, 258, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'NmLgQ1yd', '6093504'), + (27208, 258, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'NmLgQ1yd', '6097414'), + (27209, 258, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLgQ1yd', '6097442'), + (27210, 258, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLgQ1yd', '6097684'), + (27211, 258, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLgQ1yd', '6098762'), + (27212, 258, 2065, 'maybe', '2023-06-15 17:50:22', '2025-12-17 19:46:49', 'NmLgQ1yd', '6101169'), + (27213, 258, 2066, 'maybe', '2023-05-16 06:05:34', '2025-12-17 19:47:04', 'NmLgQ1yd', '6101361'), + (27214, 258, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLgQ1yd', '6101362'), + (27215, 258, 2070, 'maybe', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'NmLgQ1yd', '6103752'), + (27216, 258, 2074, 'attending', '2023-05-24 03:24:07', '2025-12-17 19:47:03', 'NmLgQ1yd', '6107312'), + (27217, 258, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLgQ1yd', '6107314'), + (27218, 258, 2080, 'not_attending', '2023-05-29 19:53:27', '2025-12-17 19:47:04', 'NmLgQ1yd', '6114677'), + (27219, 258, 2087, 'maybe', '2023-05-29 02:09:39', '2025-12-17 19:47:04', 'NmLgQ1yd', '6120034'), + (27220, 258, 2089, 'attending', '2023-06-06 05:32:07', '2025-12-17 19:47:04', 'NmLgQ1yd', '6125227'), + (27221, 258, 2090, 'attending', '2023-06-02 20:45:42', '2025-12-17 19:47:04', 'NmLgQ1yd', '6127961'), + (27222, 258, 2091, 'maybe', '2023-06-04 04:39:27', '2025-12-17 19:47:04', 'NmLgQ1yd', '6130657'), + (27223, 258, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'NmLgQ1yd', '6136733'), + (27224, 258, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'NmLgQ1yd', '6137989'), + (27225, 258, 2099, 'attending', '2023-06-15 21:59:23', '2025-12-17 19:46:49', 'NmLgQ1yd', '6143012'), + (27226, 258, 2101, 'not_attending', '2023-06-17 02:28:01', '2025-12-17 19:46:49', 'NmLgQ1yd', '6144741'), + (27227, 258, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'NmLgQ1yd', '6150864'), + (27228, 258, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'NmLgQ1yd', '6155491'), + (27229, 258, 2115, 'not_attending', '2023-06-29 04:42:32', '2025-12-17 19:46:50', 'NmLgQ1yd', '6161437'), + (27230, 258, 2116, 'maybe', '2023-07-01 20:25:34', '2025-12-17 19:46:51', 'NmLgQ1yd', '6163389'), + (27231, 258, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'NmLgQ1yd', '6164417'), + (27232, 258, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'NmLgQ1yd', '6166388'), + (27233, 258, 2121, 'maybe', '2023-06-28 12:48:59', '2025-12-17 19:46:50', 'NmLgQ1yd', '6176439'), + (27234, 258, 2124, 'maybe', '2023-06-29 22:19:37', '2025-12-17 19:46:51', 'NmLgQ1yd', '6176988'), + (27235, 258, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'NmLgQ1yd', '6182410'), + (27236, 258, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'NmLgQ1yd', '6185812'), + (27237, 258, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'NmLgQ1yd', '6187651'), + (27238, 258, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'NmLgQ1yd', '6187963'), + (27239, 258, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'NmLgQ1yd', '6187964'), + (27240, 258, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'NmLgQ1yd', '6187966'), + (27241, 258, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'NmLgQ1yd', '6187967'), + (27242, 258, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'NmLgQ1yd', '6187969'), + (27243, 258, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'NmLgQ1yd', '6334878'), + (27244, 258, 2146, 'maybe', '2023-07-17 06:07:51', '2025-12-17 19:46:53', 'NmLgQ1yd', '6335638'), + (27245, 258, 2152, 'attending', '2023-07-14 22:56:01', '2025-12-17 19:46:52', 'NmLgQ1yd', '6337021'), + (27246, 258, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'NmLgQ1yd', '6337236'), + (27247, 258, 2155, 'attending', '2023-07-17 06:07:27', '2025-12-17 19:46:53', 'NmLgQ1yd', '6337970'), + (27248, 258, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'NmLgQ1yd', '6338308'), + (27249, 258, 2158, 'maybe', '2023-07-20 22:10:32', '2025-12-17 19:46:53', 'NmLgQ1yd', '6338353'), + (27250, 258, 2159, 'attending', '2023-07-17 06:08:07', '2025-12-17 19:46:53', 'NmLgQ1yd', '6338355'), + (27251, 258, 2160, 'maybe', '2023-07-20 22:11:10', '2025-12-17 19:46:54', 'NmLgQ1yd', '6338358'), + (27252, 258, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'NmLgQ1yd', '6340845'), + (27253, 258, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'NmLgQ1yd', '6341710'), + (27254, 258, 2164, 'maybe', '2023-07-27 04:28:17', '2025-12-17 19:46:54', 'NmLgQ1yd', '6341797'), + (27255, 258, 2165, 'attending', '2023-08-01 14:27:03', '2025-12-17 19:46:54', 'NmLgQ1yd', '6342044'), + (27256, 258, 2166, 'not_attending', '2023-07-20 22:10:57', '2025-12-17 19:46:54', 'NmLgQ1yd', '6342115'), + (27257, 258, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'NmLgQ1yd', '6342298'), + (27258, 258, 2171, 'maybe', '2023-07-27 04:31:23', '2025-12-17 19:46:54', 'NmLgQ1yd', '6342328'), + (27259, 258, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'NmLgQ1yd', '6343294'), + (27260, 258, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'NmLgQ1yd', '6347034'), + (27261, 258, 2177, 'not_attending', '2023-08-01 14:27:30', '2025-12-17 19:46:55', 'NmLgQ1yd', '6347053'), + (27262, 258, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'NmLgQ1yd', '6347056'), + (27263, 258, 2180, 'attending', '2023-07-25 16:25:36', '2025-12-17 19:46:54', 'NmLgQ1yd', '6348788'), + (27264, 258, 2185, 'maybe', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'NmLgQ1yd', '6353830'), + (27265, 258, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'NmLgQ1yd', '6353831'), + (27266, 258, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'NmLgQ1yd', '6357867'), + (27267, 258, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'NmLgQ1yd', '6358652'), + (27268, 258, 2195, 'attending', '2023-08-21 15:54:16', '2025-12-17 19:46:55', 'NmLgQ1yd', '6359397'), + (27269, 258, 2196, 'attending', '2023-09-08 02:13:01', '2025-12-17 19:46:56', 'NmLgQ1yd', '6359398'), + (27270, 258, 2197, 'attending', '2023-09-10 05:03:52', '2025-12-17 19:46:44', 'NmLgQ1yd', '6359399'), + (27271, 258, 2198, 'maybe', '2023-09-17 21:28:14', '2025-12-17 19:46:45', 'NmLgQ1yd', '6359400'), + (27272, 258, 2200, 'maybe', '2023-08-09 06:46:17', '2025-12-17 19:46:55', 'NmLgQ1yd', '6359850'), + (27273, 258, 2204, 'maybe', '2023-08-19 02:19:07', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361542'), + (27274, 258, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361709'), + (27275, 258, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361710'), + (27276, 258, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361711'), + (27277, 258, 2211, 'attending', '2023-08-18 05:42:34', '2025-12-17 19:46:55', 'NmLgQ1yd', '6361712'), + (27278, 258, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'NmLgQ1yd', '6361713'), + (27279, 258, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'NmLgQ1yd', '6382573'), + (27280, 258, 2236, 'maybe', '2023-08-30 20:00:24', '2025-12-17 19:46:55', 'NmLgQ1yd', '6382618'), + (27281, 258, 2239, 'attending', '2023-08-31 20:12:57', '2025-12-17 19:46:56', 'NmLgQ1yd', '6387592'), + (27282, 258, 2241, 'attending', '2023-09-10 05:04:11', '2025-12-17 19:46:44', 'NmLgQ1yd', '6388604'), + (27283, 258, 2243, 'attending', '2023-09-07 05:14:45', '2025-12-17 19:46:56', 'NmLgQ1yd', '6393686'), + (27284, 258, 2248, 'not_attending', '2023-09-10 05:04:53', '2025-12-17 19:46:44', 'NmLgQ1yd', '6394629'), + (27285, 258, 2249, 'attending', '2023-09-17 21:27:46', '2025-12-17 19:46:45', 'NmLgQ1yd', '6394630'), + (27286, 258, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'NmLgQ1yd', '6394631'), + (27287, 258, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'NmLgQ1yd', '6440863'), + (27288, 258, 2271, 'attending', '2023-10-06 16:43:03', '2025-12-17 19:46:45', 'NmLgQ1yd', '6445375'), + (27289, 258, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLgQ1yd', '6445440'), + (27290, 258, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLgQ1yd', '6453951'), + (27291, 258, 2283, 'maybe', '2023-10-10 15:45:07', '2025-12-17 19:46:46', 'NmLgQ1yd', '6455503'), + (27292, 258, 2285, 'maybe', '2023-10-23 13:16:47', '2025-12-17 19:46:47', 'NmLgQ1yd', '6460929'), + (27293, 258, 2286, 'maybe', '2023-11-28 17:35:23', '2025-12-17 19:46:48', 'NmLgQ1yd', '6460930'), + (27294, 258, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'NmLgQ1yd', '6461696'), + (27295, 258, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'NmLgQ1yd', '6462129'), + (27296, 258, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLgQ1yd', '6463218'), + (27297, 258, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'NmLgQ1yd', '6472181'), + (27298, 258, 2304, 'maybe', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'NmLgQ1yd', '6482693'), + (27299, 258, 2306, 'attending', '2023-11-15 18:49:02', '2025-12-17 19:46:47', 'NmLgQ1yd', '6484200'), + (27300, 258, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'NmLgQ1yd', '6484680'), + (27301, 258, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'NmLgQ1yd', '6507741'), + (27302, 258, 2320, 'maybe', '2023-11-07 16:44:49', '2025-12-17 19:46:47', 'NmLgQ1yd', '6508647'), + (27303, 258, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'NmLgQ1yd', '6514659'), + (27304, 258, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'NmLgQ1yd', '6514660'), + (27305, 258, 2324, 'maybe', '2023-12-07 17:57:33', '2025-12-17 19:46:49', 'NmLgQ1yd', '6514662'), + (27306, 258, 2333, 'attending', '2023-11-07 16:44:38', '2025-12-17 19:46:47', 'NmLgQ1yd', '6519103'), + (27307, 258, 2337, 'maybe', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'NmLgQ1yd', '6535681'), + (27308, 258, 2338, 'maybe', '2023-11-24 06:57:16', '2025-12-17 19:46:48', 'NmLgQ1yd', '6538868'), + (27309, 258, 2345, 'attending', '2023-11-28 17:35:10', '2025-12-17 19:46:48', 'NmLgQ1yd', '6582414'), + (27310, 258, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLgQ1yd', '6584747'), + (27311, 258, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLgQ1yd', '6587097'), + (27312, 258, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLgQ1yd', '6609022'), + (27313, 258, 2365, 'maybe', '2023-12-22 19:00:42', '2025-12-17 19:46:37', 'NmLgQ1yd', '6613093'), + (27314, 258, 2366, 'maybe', '2023-12-12 23:16:15', '2025-12-17 19:46:36', 'NmLgQ1yd', '6615304'), + (27315, 258, 2370, 'attending', '2023-12-12 17:41:00', '2025-12-17 19:46:36', 'NmLgQ1yd', '6623765'), + (27316, 258, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'NmLgQ1yd', '6632757'), + (27317, 258, 2378, 'attending', '2024-01-01 20:19:10', '2025-12-17 19:46:37', 'NmLgQ1yd', '6644006'), + (27318, 258, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLgQ1yd', '6644187'), + (27319, 258, 2382, 'not_attending', '2024-01-01 20:17:42', '2025-12-17 19:46:37', 'NmLgQ1yd', '6646401'), + (27320, 258, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLgQ1yd', '6648951'), + (27321, 258, 2387, 'attending', '2024-01-04 03:38:40', '2025-12-17 19:46:37', 'NmLgQ1yd', '6648952'), + (27322, 258, 2391, 'attending', '2024-01-08 07:40:37', '2025-12-17 19:46:37', 'NmLgQ1yd', '6654138'), + (27323, 258, 2394, 'attending', '2024-01-17 04:40:03', '2025-12-17 19:46:38', 'NmLgQ1yd', '6654470'), + (27324, 258, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'NmLgQ1yd', '6655401'), + (27325, 258, 2398, 'attending', '2024-01-08 07:40:16', '2025-12-17 19:46:37', 'NmLgQ1yd', '6657381'), + (27326, 258, 2399, 'not_attending', '2024-01-13 10:55:19', '2025-12-17 19:46:38', 'NmLgQ1yd', '6657583'), + (27327, 258, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'NmLgQ1yd', '6661585'), + (27328, 258, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'NmLgQ1yd', '6661588'), + (27329, 258, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'NmLgQ1yd', '6661589'), + (27330, 258, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLgQ1yd', '6699906'), + (27331, 258, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'NmLgQ1yd', '6699913'), + (27332, 258, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'NmLgQ1yd', '6701109'), + (27333, 258, 2423, 'maybe', '2024-01-22 05:21:32', '2025-12-17 19:46:40', 'NmLgQ1yd', '6705141'), + (27334, 258, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLgQ1yd', '6705219'), + (27335, 258, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLgQ1yd', '6710153'), + (27336, 258, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLgQ1yd', '6711552'), + (27337, 258, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'NmLgQ1yd', '6711553'), + (27338, 258, 2431, 'maybe', '2024-01-28 07:01:42', '2025-12-17 19:46:41', 'NmLgQ1yd', '6712394'), + (27339, 258, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'NmLgQ1yd', '6722688'), + (27340, 258, 2438, 'attending', '2024-02-05 05:13:24', '2025-12-17 19:46:41', 'NmLgQ1yd', '6730201'), + (27341, 258, 2439, 'maybe', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'NmLgQ1yd', '6730620'), + (27342, 258, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'NmLgQ1yd', '6730642'), + (27343, 258, 2445, 'attending', '2024-02-15 06:57:18', '2025-12-17 19:46:41', 'NmLgQ1yd', '6734368'), + (27344, 258, 2446, 'attending', '2024-02-27 06:42:03', '2025-12-17 19:46:43', 'NmLgQ1yd', '6734369'), + (27345, 258, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'NmLgQ1yd', '6740364'), + (27346, 258, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'NmLgQ1yd', '6743829'), + (27347, 258, 2465, 'not_attending', '2024-02-20 10:32:27', '2025-12-17 19:46:42', 'NmLgQ1yd', '7026725'), + (27348, 258, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'NmLgQ1yd', '7030380'), + (27349, 258, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'NmLgQ1yd', '7033677'), + (27350, 258, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'NmLgQ1yd', '7035415'), + (27351, 258, 2477, 'not_attending', '2024-02-21 08:19:58', '2025-12-17 19:46:42', 'NmLgQ1yd', '7035692'), + (27352, 258, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'NmLgQ1yd', '7044715'), + (27353, 258, 2490, 'maybe', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'NmLgQ1yd', '7050318'), + (27354, 258, 2491, 'maybe', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'NmLgQ1yd', '7050319'), + (27355, 258, 2492, 'maybe', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'NmLgQ1yd', '7050322'), + (27356, 258, 2499, 'maybe', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'NmLgQ1yd', '7057804'), + (27357, 258, 2501, 'maybe', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'NmLgQ1yd', '7059866'), + (27358, 258, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'NmLgQ1yd', '7072824'), + (27359, 258, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'NmLgQ1yd', '7074348'), + (27360, 258, 2516, 'not_attending', '2024-04-30 05:37:04', '2025-12-17 19:46:35', 'NmLgQ1yd', '7074356'), + (27361, 258, 2522, 'maybe', '2024-07-18 14:50:21', '2025-12-17 19:46:30', 'NmLgQ1yd', '7074362'), + (27362, 258, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'NmLgQ1yd', '7074364'), + (27363, 258, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'NmLgQ1yd', '7089267'), + (27364, 258, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'NmLgQ1yd', '7098747'), + (27365, 258, 2552, 'attending', '2024-03-27 21:56:33', '2025-12-17 19:46:33', 'NmLgQ1yd', '7111123'), + (27366, 258, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'NmLgQ1yd', '7113468'), + (27367, 258, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'NmLgQ1yd', '7114856'), + (27368, 258, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'NmLgQ1yd', '7114951'), + (27369, 258, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'NmLgQ1yd', '7114955'), + (27370, 258, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'NmLgQ1yd', '7114956'), + (27371, 258, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'NmLgQ1yd', '7114957'), + (27372, 258, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'NmLgQ1yd', '7153615'), + (27373, 258, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'NmLgQ1yd', '7159484'), + (27374, 258, 2575, 'maybe', '2024-04-12 14:34:36', '2025-12-17 19:46:33', 'NmLgQ1yd', '7164534'), + (27375, 258, 2585, 'maybe', '2024-04-21 04:58:54', '2025-12-17 19:46:34', 'NmLgQ1yd', '7175828'), + (27376, 258, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'NmLgQ1yd', '7178446'), + (27377, 258, 2595, 'maybe', '2024-04-22 05:36:42', '2025-12-17 19:46:34', 'NmLgQ1yd', '7182252'), + (27378, 258, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'NmLgQ1yd', '7220467'), + (27379, 258, 2603, 'maybe', '2024-05-12 17:49:30', '2025-12-17 19:46:35', 'NmLgQ1yd', '7225669'), + (27380, 258, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'NmLgQ1yd', '7240354'), + (27381, 258, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'NmLgQ1yd', '7251633'), + (27382, 258, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'NmLgQ1yd', '7263048'), + (27383, 258, 2628, 'maybe', '2024-05-29 16:23:21', '2025-12-17 19:46:36', 'NmLgQ1yd', '7264725'), + (27384, 258, 2630, 'maybe', '2024-05-12 17:50:06', '2025-12-17 19:46:35', 'NmLgQ1yd', '7264801'), + (27385, 258, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'NmLgQ1yd', '7302674'), + (27386, 258, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'NmLgQ1yd', '7324073'), + (27387, 258, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'NmLgQ1yd', '7324074'), + (27388, 258, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'NmLgQ1yd', '7324075'), + (27389, 258, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'NmLgQ1yd', '7324078'), + (27390, 258, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'NmLgQ1yd', '7324082'), + (27391, 258, 2701, 'maybe', '2024-06-26 02:44:25', '2025-12-17 19:46:29', 'NmLgQ1yd', '7324391'), + (27392, 258, 2706, 'attending', '2024-06-18 02:24:40', '2025-12-17 19:46:28', 'NmLgQ1yd', '7324947'), + (27393, 258, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'NmLgQ1yd', '7331457'), + (27394, 258, 2746, 'maybe', '2024-07-08 15:02:17', '2025-12-17 19:46:29', 'NmLgQ1yd', '7348713'), + (27395, 258, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'NmLgQ1yd', '7356752'), + (27396, 258, 2755, 'maybe', '2024-07-10 02:47:42', '2025-12-17 19:46:29', 'NmLgQ1yd', '7357808'), + (27397, 258, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'NmLgQ1yd', '7363643'), + (27398, 258, 2772, 'maybe', '2024-07-23 00:08:17', '2025-12-17 19:46:30', 'NmLgQ1yd', '7368267'), + (27399, 258, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'NmLgQ1yd', '7368606'), + (27400, 258, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'NmLgQ1yd', '7397462'), + (27401, 258, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'NmLgQ1yd', '7424275'), + (27402, 258, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'NmLgQ1yd', '7424276'), + (27403, 258, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'NmLgQ1yd', '7432751'), + (27404, 258, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'NmLgQ1yd', '7432752'), + (27405, 258, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'NmLgQ1yd', '7432753'), + (27406, 258, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432754'), + (27407, 258, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432755'), + (27408, 258, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432756'), + (27409, 258, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432758'), + (27410, 258, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'NmLgQ1yd', '7432759'), + (27411, 258, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'NmLgQ1yd', '7433834'), + (27412, 258, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'NmLgQ1yd', '7470197'), + (27413, 258, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'NmLgQ1yd', '7685613'), + (27414, 258, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'NmLgQ1yd', '7688194'), + (27415, 258, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'NmLgQ1yd', '7688196'), + (27416, 258, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'NmLgQ1yd', '7688289'), + (27417, 258, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'NmLgQ1yd', '7692763'), + (27418, 258, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'NmLgQ1yd', '7697552'), + (27419, 258, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'NmLgQ1yd', '7699878'), + (27420, 258, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'NmLgQ1yd', '7704043'), + (27421, 258, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'NmLgQ1yd', '7712467'), + (27422, 258, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'NmLgQ1yd', '7713585'), + (27423, 258, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'NmLgQ1yd', '7713586'), + (27424, 258, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'NmLgQ1yd', '7738518'), + (27425, 258, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'NmLgQ1yd', '7750636'), + (27426, 258, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'NmLgQ1yd', '7796540'), + (27427, 258, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'NmLgQ1yd', '7796541'), + (27428, 258, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'NmLgQ1yd', '7796542'), + (27429, 258, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'NmLgQ1yd', '7825913'), + (27430, 258, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'NmLgQ1yd', '7826209'), + (27431, 258, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'NmLgQ1yd', '7834742'), + (27432, 258, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'NmLgQ1yd', '7842108'), + (27433, 258, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'NmLgQ1yd', '7842902'), + (27434, 258, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'NmLgQ1yd', '7842903'), + (27435, 258, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'NmLgQ1yd', '7842904'), + (27436, 258, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'NmLgQ1yd', '7842905'), + (27437, 258, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'NmLgQ1yd', '7855719'), + (27438, 258, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'NmLgQ1yd', '7860683'), + (27439, 258, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'NmLgQ1yd', '7860684'), + (27440, 258, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'NmLgQ1yd', '7866095'), + (27441, 258, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'NmLgQ1yd', '7869170'), + (27442, 258, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'NmLgQ1yd', '7869188'), + (27443, 258, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'NmLgQ1yd', '7869201'), + (27444, 258, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'NmLgQ1yd', '7877465'), + (27445, 258, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'NmLgQ1yd', '7888250'), + (27446, 258, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'NmLgQ1yd', '7904777'), + (27447, 258, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'NmLgQ1yd', '8349164'), + (27448, 258, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'NmLgQ1yd', '8349545'), + (27449, 258, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'NmLgQ1yd', '8368028'), + (27450, 258, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'NmLgQ1yd', '8368029'), + (27451, 258, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'NmLgQ1yd', '8388462'), + (27452, 258, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'NmLgQ1yd', '8400273'), + (27453, 258, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'NmLgQ1yd', '8400275'), + (27454, 258, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'NmLgQ1yd', '8400276'), + (27455, 258, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'NmLgQ1yd', '8404977'), + (27456, 258, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'NmLgQ1yd', '8430783'), + (27457, 258, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'NmLgQ1yd', '8430784'), + (27458, 258, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'NmLgQ1yd', '8430799'), + (27459, 258, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'NmLgQ1yd', '8430800'), + (27460, 258, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'NmLgQ1yd', '8430801'), + (27461, 258, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'NmLgQ1yd', '8438709'), + (27462, 258, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'NmLgQ1yd', '8457738'), + (27463, 258, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'NmLgQ1yd', '8459566'), + (27464, 258, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'NmLgQ1yd', '8459567'), + (27465, 258, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'NmLgQ1yd', '8461032'), + (27466, 258, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'NmLgQ1yd', '8477877'), + (27467, 258, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'NmLgQ1yd', '8485688'), + (27468, 258, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'NmLgQ1yd', '8490587'), + (27469, 258, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'NmLgQ1yd', '8493552'), + (27470, 258, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'NmLgQ1yd', '8493553'), + (27471, 258, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'NmLgQ1yd', '8493554'), + (27472, 258, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'NmLgQ1yd', '8493555'), + (27473, 258, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'NmLgQ1yd', '8493556'), + (27474, 258, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'NmLgQ1yd', '8493557'), + (27475, 258, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'NmLgQ1yd', '8493558'), + (27476, 258, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'NmLgQ1yd', '8493559'), + (27477, 258, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'NmLgQ1yd', '8493560'), + (27478, 258, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'NmLgQ1yd', '8493561'), + (27479, 258, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'NmLgQ1yd', '8493572'), + (27480, 258, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'NmLgQ1yd', '8540725'), + (27481, 258, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'NmLgQ1yd', '8555421'), + (27482, 259, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4Dn2vDLm', '4736503'), + (27483, 259, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '4Dn2vDLm', '5199460'), + (27484, 259, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4Dn2vDLm', '6045684'), + (27485, 260, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'm7jRy8Md', '6655401'), + (27486, 260, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'm7jRy8Md', '6699906'), + (27487, 260, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'm7jRy8Md', '6699913'), + (27488, 260, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'm7jRy8Md', '6701109'), + (27489, 260, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'm7jRy8Md', '6705219'), + (27490, 260, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'm7jRy8Md', '6710153'), + (27491, 260, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'm7jRy8Md', '6711552'), + (27492, 260, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'm7jRy8Md', '6711553'), + (27493, 260, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'm7jRy8Md', '6722688'), + (27494, 260, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'm7jRy8Md', '6730620'), + (27495, 260, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'm7jRy8Md', '6730642'), + (27496, 260, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'm7jRy8Md', '6740364'), + (27497, 260, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'm7jRy8Md', '6743829'), + (27498, 260, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'm7jRy8Md', '7030380'), + (27499, 260, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'm7jRy8Md', '7033677'), + (27500, 260, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'm7jRy8Md', '7035415'), + (27501, 260, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'm7jRy8Md', '7044715'), + (27502, 260, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'm7jRy8Md', '7050318'), + (27503, 260, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'm7jRy8Md', '7050319'), + (27504, 260, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'm7jRy8Md', '7050322'), + (27505, 260, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'm7jRy8Md', '7057804'), + (27506, 260, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'm7jRy8Md', '7072824'), + (27507, 260, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'm7jRy8Md', '7074348'), + (27508, 260, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'm7jRy8Md', '7089267'), + (27509, 260, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'm7jRy8Md', '7098747'), + (27510, 260, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'm7jRy8Md', '7113468'), + (27511, 260, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'm7jRy8Md', '7114856'), + (27512, 260, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'm7jRy8Md', '7114951'), + (27513, 260, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'm7jRy8Md', '7114955'), + (27514, 260, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'm7jRy8Md', '7114956'), + (27515, 260, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'm7jRy8Md', '7153615'), + (27516, 260, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'm7jRy8Md', '7159484'), + (27517, 260, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'm7jRy8Md', '7178446'), + (27518, 261, 399, 'attending', '2020-11-12 09:34:58', '2025-12-17 19:47:54', 'nm6bX13m', '3236454'), + (27519, 261, 441, 'maybe', '2020-11-15 01:53:30', '2025-12-17 19:47:54', 'nm6bX13m', '3256169'), + (27520, 261, 469, 'attending', '2020-11-27 06:34:43', '2025-12-17 19:47:54', 'nm6bX13m', '3285414'), + (27521, 261, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'nm6bX13m', '3297764'), + (27522, 261, 484, 'not_attending', '2020-11-21 01:10:23', '2025-12-17 19:47:54', 'nm6bX13m', '3297792'), + (27523, 261, 490, 'attending', '2020-11-29 20:18:54', '2025-12-17 19:47:54', 'nm6bX13m', '3313532'), + (27524, 261, 491, 'attending', '2020-11-29 20:18:43', '2025-12-17 19:47:55', 'nm6bX13m', '3313533'), + (27525, 261, 492, 'attending', '2020-11-29 20:18:48', '2025-12-17 19:47:54', 'nm6bX13m', '3313731'), + (27526, 261, 493, 'maybe', '2020-11-29 20:18:17', '2025-12-17 19:47:54', 'nm6bX13m', '3313856'), + (27527, 261, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'nm6bX13m', '3314909'), + (27528, 261, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'nm6bX13m', '3314964'), + (27529, 261, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'nm6bX13m', '3323365'), + (27530, 261, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'nm6bX13m', '3329383'), + (27531, 261, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'nm6bX13m', '3351539'), + (27532, 261, 529, 'attending', '2021-01-06 03:31:40', '2025-12-17 19:47:48', 'nm6bX13m', '3364568'), + (27533, 261, 532, 'attending', '2021-01-07 19:21:58', '2025-12-17 19:47:48', 'nm6bX13m', '3381412'), + (27534, 261, 534, 'attending', '2021-01-09 21:53:27', '2025-12-17 19:47:48', 'nm6bX13m', '3384157'), + (27535, 261, 535, 'attending', '2021-01-09 21:06:30', '2025-12-17 19:47:48', 'nm6bX13m', '3384729'), + (27536, 261, 536, 'attending', '2021-01-06 03:30:46', '2025-12-17 19:47:48', 'nm6bX13m', '3386848'), + (27537, 261, 540, 'attending', '2021-01-10 14:20:08', '2025-12-17 19:47:48', 'nm6bX13m', '3389527'), + (27538, 261, 542, 'not_attending', '2021-01-11 03:00:50', '2025-12-17 19:47:48', 'nm6bX13m', '3395013'), + (27539, 261, 543, 'attending', '2021-01-11 03:01:44', '2025-12-17 19:47:48', 'nm6bX13m', '3396499'), + (27540, 261, 546, 'attending', '2021-01-22 02:35:50', '2025-12-17 19:47:49', 'nm6bX13m', '3396503'), + (27541, 261, 547, 'not_attending', '2021-01-22 00:09:41', '2025-12-17 19:47:49', 'nm6bX13m', '3396504'), + (27542, 261, 548, 'maybe', '2021-01-16 02:28:55', '2025-12-17 19:47:48', 'nm6bX13m', '3403650'), + (27543, 261, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nm6bX13m', '3406988'), + (27544, 261, 555, 'attending', '2021-01-20 01:00:19', '2025-12-17 19:47:49', 'nm6bX13m', '3416576'), + (27545, 261, 556, 'not_attending', '2021-01-20 01:12:04', '2025-12-17 19:47:49', 'nm6bX13m', '3417170'), + (27546, 261, 558, 'maybe', '2021-01-20 12:21:42', '2025-12-17 19:47:49', 'nm6bX13m', '3418925'), + (27547, 261, 561, 'attending', '2021-01-20 12:19:32', '2025-12-17 19:47:49', 'nm6bX13m', '3421916'), + (27548, 261, 562, 'not_attending', '2021-01-22 00:09:29', '2025-12-17 19:47:49', 'nm6bX13m', '3424911'), + (27549, 261, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'nm6bX13m', '3426074'), + (27550, 261, 568, 'not_attending', '2021-01-31 00:45:53', '2025-12-17 19:47:50', 'nm6bX13m', '3430267'), + (27551, 261, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'nm6bX13m', '3432673'), + (27552, 261, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'nm6bX13m', '3468125'), + (27553, 261, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'nm6bX13m', '3470303'), + (27554, 261, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'nm6bX13m', '3470305'), + (27555, 261, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'nm6bX13m', '3470991'), + (27556, 261, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'nm6bX13m', '3517815'), + (27557, 261, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'nm6bX13m', '3517816'), + (27558, 261, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'nm6bX13m', '3523941'), + (27559, 261, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'nm6bX13m', '3533850'), + (27560, 261, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'nm6bX13m', '3536632'), + (27561, 261, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'nm6bX13m', '3536656'), + (27562, 261, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'nm6bX13m', '3539916'), + (27563, 261, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'nm6bX13m', '3539917'), + (27564, 261, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'nm6bX13m', '3539918'), + (27565, 261, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'nm6bX13m', '3539919'), + (27566, 261, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'nm6bX13m', '3539920'), + (27567, 261, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'nm6bX13m', '3539921'), + (27568, 261, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'nm6bX13m', '3539922'), + (27569, 261, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'nm6bX13m', '3539923'), + (27570, 261, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'nm6bX13m', '3539927'), + (27571, 261, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'nm6bX13m', '3582734'), + (27572, 261, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'nm6bX13m', '3583262'), + (27573, 261, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'nm6bX13m', '3619523'), + (27574, 261, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'nm6bX13m', '3661369'), + (27575, 261, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'nm6bX13m', '3674262'), + (27576, 261, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'nm6bX13m', '3677402'), + (27577, 261, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'nm6bX13m', '3730212'), + (27578, 261, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6bX13m', '6045684'), + (27579, 262, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZBJje4', '6482693'), + (27580, 262, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZBJje4', '6484200'), + (27581, 262, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'dKZBJje4', '6484680'), + (27582, 262, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZBJje4', '6507741'), + (27583, 262, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZBJje4', '6514659'), + (27584, 262, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZBJje4', '6514660'), + (27585, 262, 2328, 'not_attending', '2023-11-03 19:15:50', '2025-12-17 19:46:47', 'dKZBJje4', '6515504'), + (27586, 262, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZBJje4', '6519103'), + (27587, 262, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZBJje4', '6535681'), + (27588, 262, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'dKZBJje4', '6545076'), + (27589, 262, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZBJje4', '6584747'), + (27590, 262, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZBJje4', '6587097'), + (27591, 262, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZBJje4', '6609022'), + (27592, 262, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZBJje4', '6632757'), + (27593, 262, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZBJje4', '6644187'), + (27594, 262, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZBJje4', '6648951'), + (27595, 262, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZBJje4', '6648952'), + (27596, 262, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dKZBJje4', '6651141'), + (27597, 262, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZBJje4', '6655401'), + (27598, 262, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZBJje4', '6661585'), + (27599, 262, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZBJje4', '6661588'), + (27600, 262, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZBJje4', '6661589'), + (27601, 262, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZBJje4', '6699906'), + (27602, 262, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dKZBJje4', '6699913'), + (27603, 262, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZBJje4', '6701109'), + (27604, 262, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZBJje4', '6705219'), + (27605, 262, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZBJje4', '6710153'), + (27606, 262, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZBJje4', '6711552'), + (27607, 262, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZBJje4', '6711553'), + (27608, 262, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKZBJje4', '6722688'), + (27609, 262, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKZBJje4', '6730620'), + (27610, 262, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKZBJje4', '6730642'), + (27611, 262, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKZBJje4', '6740364'), + (27612, 262, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKZBJje4', '6743829'), + (27613, 262, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKZBJje4', '7030380'), + (27614, 262, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKZBJje4', '7033677'), + (27615, 262, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKZBJje4', '7035415'), + (27616, 262, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKZBJje4', '7044715'), + (27617, 262, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKZBJje4', '7050318'), + (27618, 262, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKZBJje4', '7050319'), + (27619, 262, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKZBJje4', '7050322'), + (27620, 262, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKZBJje4', '7057804'), + (27621, 262, 2502, 'not_attending', '2024-03-06 02:24:36', '2025-12-17 19:46:33', 'dKZBJje4', '7061202'), + (27622, 262, 2503, 'not_attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'dKZBJje4', '7062500'), + (27623, 262, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKZBJje4', '7072824'), + (27624, 262, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dKZBJje4', '7074348'), + (27625, 262, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKZBJje4', '7089267'), + (27626, 262, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKZBJje4', '7098747'), + (27627, 262, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dKZBJje4', '7113468'), + (27628, 262, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKZBJje4', '7114856'), + (27629, 262, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKZBJje4', '7114951'), + (27630, 262, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKZBJje4', '7114955'), + (27631, 262, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKZBJje4', '7114956'), + (27632, 262, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKZBJje4', '7153615'), + (27633, 262, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKZBJje4', '7159484'), + (27634, 262, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKZBJje4', '7178446'), + (27635, 263, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'nm6yEkGd', '3386848'), + (27636, 263, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'nm6yEkGd', '3389527'), + (27637, 263, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'nm6yEkGd', '3396499'), + (27638, 263, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'nm6yEkGd', '3403650'), + (27639, 263, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nm6yEkGd', '3406988'), + (27640, 263, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'nm6yEkGd', '3416576'), + (27641, 263, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'nm6yEkGd', '3426074'), + (27642, 263, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'nm6yEkGd', '3430267'), + (27643, 263, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'nm6yEkGd', '3468125'), + (27644, 263, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'nm6yEkGd', '3470303'), + (27645, 263, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'nm6yEkGd', '3470991'), + (27646, 263, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6yEkGd', '6045684'), + (27647, 264, 645, 'attending', '2021-04-28 02:48:05', '2025-12-17 19:47:46', 'oAQv9DN4', '3539920'), + (27648, 264, 646, 'attending', '2021-05-09 19:42:39', '2025-12-17 19:47:46', 'oAQv9DN4', '3539921'), + (27649, 264, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'oAQv9DN4', '3539922'), + (27650, 264, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'oAQv9DN4', '3539923'), + (27651, 264, 663, 'not_attending', '2021-05-04 19:47:57', '2025-12-17 19:47:46', 'oAQv9DN4', '3547140'), + (27652, 264, 707, 'attending', '2021-04-25 19:22:13', '2025-12-17 19:47:46', 'oAQv9DN4', '3583262'), + (27653, 264, 724, 'attending', '2021-05-04 19:47:49', '2025-12-17 19:47:46', 'oAQv9DN4', '3661369'), + (27654, 264, 729, 'maybe', '2021-04-28 14:26:15', '2025-12-17 19:47:46', 'oAQv9DN4', '3668075'), + (27655, 264, 756, 'attending', '2021-04-26 00:50:34', '2025-12-17 19:47:46', 'oAQv9DN4', '3704795'), + (27656, 264, 761, 'attending', '2021-05-09 19:42:33', '2025-12-17 19:47:46', 'oAQv9DN4', '3716041'), + (27657, 264, 767, 'attending', '2021-04-27 00:06:37', '2025-12-17 19:47:46', 'oAQv9DN4', '3722476'), + (27658, 264, 773, 'attending', '2021-04-26 00:50:42', '2025-12-17 19:47:46', 'oAQv9DN4', '3729399'), + (27659, 264, 777, 'attending', '2021-04-28 02:47:17', '2025-12-17 19:47:46', 'oAQv9DN4', '3746248'), + (27660, 264, 780, 'attending', '2021-05-04 19:47:52', '2025-12-17 19:47:46', 'oAQv9DN4', '3757175'), + (27661, 264, 784, 'attending', '2021-05-04 19:41:55', '2025-12-17 19:47:46', 'oAQv9DN4', '3768775'), + (27662, 264, 791, 'attending', '2021-05-09 19:42:09', '2025-12-17 19:47:46', 'oAQv9DN4', '3792735'), + (27663, 264, 792, 'attending', '2021-05-08 01:21:16', '2025-12-17 19:47:46', 'oAQv9DN4', '3793156'), + (27664, 264, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'oAQv9DN4', '3974109'), + (27665, 264, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAQv9DN4', '3975311'), + (27666, 264, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'oAQv9DN4', '3975312'), + (27667, 264, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQv9DN4', '3994992'), + (27668, 264, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'oAQv9DN4', '4014338'), + (27669, 264, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'oAQv9DN4', '4021848'), + (27670, 264, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAQv9DN4', '4136744'), + (27671, 264, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAQv9DN4', '4136937'), + (27672, 264, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAQv9DN4', '4136938'), + (27673, 264, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAQv9DN4', '4136947'), + (27674, 264, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAQv9DN4', '4239259'), + (27675, 264, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQv9DN4', '4250163'), + (27676, 264, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQv9DN4', '6045684'), + (27677, 265, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'kdKjenY4', '3149489'), + (27678, 265, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'kdKjenY4', '3149491'), + (27679, 265, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'kdKjenY4', '3236450'), + (27680, 265, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'kdKjenY4', '3236452'), + (27681, 265, 646, 'not_attending', '2021-05-14 05:34:22', '2025-12-17 19:47:46', 'kdKjenY4', '3539921'), + (27682, 265, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'kdKjenY4', '3539922'), + (27683, 265, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'kdKjenY4', '3539923'), + (27684, 265, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'kdKjenY4', '3806392'), + (27685, 265, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'kdKjenY4', '3963335'), + (27686, 265, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdKjenY4', '3975311'), + (27687, 265, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKjenY4', '3975312'), + (27688, 265, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKjenY4', '3994992'), + (27689, 265, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKjenY4', '4014338'), + (27690, 265, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKjenY4', '4136744'), + (27691, 265, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKjenY4', '6045684'), + (27692, 266, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v81gJWm', '6045684'), + (27693, 267, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', '4PNnq6Mm', '5426882'), + (27694, 267, 1512, 'attending', '2022-07-15 01:57:19', '2025-12-17 19:47:19', '4PNnq6Mm', '5441112'), + (27695, 267, 1513, 'attending', '2022-07-16 00:59:25', '2025-12-17 19:47:19', '4PNnq6Mm', '5441125'), + (27696, 267, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4PNnq6Mm', '5441126'), + (27697, 267, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4PNnq6Mm', '5441128'), + (27698, 267, 1528, 'not_attending', '2022-07-17 17:31:19', '2025-12-17 19:47:20', '4PNnq6Mm', '5446643'), + (27699, 267, 1535, 'not_attending', '2022-07-17 16:14:59', '2025-12-17 19:47:20', '4PNnq6Mm', '5448830'), + (27700, 267, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', '4PNnq6Mm', '5449068'), + (27701, 267, 1537, 'attending', '2022-07-17 16:14:53', '2025-12-17 19:47:20', '4PNnq6Mm', '5449117'), + (27702, 267, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4PNnq6Mm', '5453325'), + (27703, 267, 1541, 'not_attending', '2022-07-19 02:46:57', '2025-12-17 19:47:20', '4PNnq6Mm', '5453542'), + (27704, 267, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4PNnq6Mm', '5454516'), + (27705, 267, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4PNnq6Mm', '5454605'), + (27706, 267, 1546, 'not_attending', '2022-07-25 15:30:52', '2025-12-17 19:47:20', '4PNnq6Mm', '5454607'), + (27707, 267, 1549, 'attending', '2022-07-23 01:47:55', '2025-12-17 19:47:20', '4PNnq6Mm', '5454789'), + (27708, 267, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4PNnq6Mm', '5455037'), + (27709, 267, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4PNnq6Mm', '5461278'), + (27710, 267, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4PNnq6Mm', '5469480'), + (27711, 267, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4PNnq6Mm', '5471073'), + (27712, 267, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '4PNnq6Mm', '5474663'), + (27713, 267, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4PNnq6Mm', '5482022'), + (27714, 267, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4PNnq6Mm', '5482793'), + (27715, 267, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4PNnq6Mm', '5488912'), + (27716, 267, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4PNnq6Mm', '5492192'), + (27717, 267, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4PNnq6Mm', '5493139'), + (27718, 267, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4PNnq6Mm', '5493200'), + (27719, 267, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4PNnq6Mm', '5502188'), + (27720, 267, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4PNnq6Mm', '5512862'), + (27721, 267, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4PNnq6Mm', '5513985'), + (27722, 267, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNnq6Mm', '6045684'), + (27723, 268, 2925, 'not_attending', '2024-12-10 05:51:39', '2025-12-17 19:46:21', 'm6qyjWLd', '7713584'), + (27724, 268, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6qyjWLd', '7713586'), + (27725, 268, 2947, 'not_attending', '2024-12-09 03:11:24', '2025-12-17 19:46:21', 'm6qyjWLd', '7727445'), + (27726, 268, 2952, 'attending', '2024-12-11 16:38:02', '2025-12-17 19:46:21', 'm6qyjWLd', '7730167'), + (27727, 268, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'm6qyjWLd', '7738518'), + (27728, 268, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6qyjWLd', '7750636'), + (27729, 268, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6qyjWLd', '7796540'), + (27730, 268, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6qyjWLd', '7796541'), + (27731, 268, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6qyjWLd', '7796542'), + (27732, 268, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6qyjWLd', '7825913'), + (27733, 268, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6qyjWLd', '7826209'), + (27734, 268, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6qyjWLd', '7834742'), + (27735, 268, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6qyjWLd', '7842108'), + (27736, 268, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6qyjWLd', '7842902'), + (27737, 268, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6qyjWLd', '7842903'), + (27738, 268, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6qyjWLd', '7842904'), + (27739, 268, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6qyjWLd', '7842905'), + (27740, 268, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6qyjWLd', '7855719'), + (27741, 268, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6qyjWLd', '7860683'), + (27742, 268, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6qyjWLd', '7860684'), + (27743, 268, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6qyjWLd', '7866095'), + (27744, 268, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6qyjWLd', '7869170'), + (27745, 268, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'm6qyjWLd', '7869188'), + (27746, 268, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6qyjWLd', '7869201'), + (27747, 268, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'm6qyjWLd', '7877465'), + (27748, 268, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'm6qyjWLd', '7878570'), + (27749, 268, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'm6qyjWLd', '7888250'), + (27750, 268, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'm6qyjWLd', '8349164'), + (27751, 268, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'm6qyjWLd', '8349545'), + (27752, 268, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'm6qyjWLd', '8353584'), + (27753, 269, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybqnRwA', '7074364'), + (27754, 269, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'mybqnRwA', '7302674'), + (27755, 269, 2678, 'maybe', '2024-06-14 13:41:01', '2025-12-17 19:46:28', 'mybqnRwA', '7319489'), + (27756, 269, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybqnRwA', '7324073'), + (27757, 269, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybqnRwA', '7324074'), + (27758, 269, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybqnRwA', '7324075'), + (27759, 269, 2691, 'attending', '2024-07-19 22:18:53', '2025-12-17 19:46:30', 'mybqnRwA', '7324076'), + (27760, 269, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybqnRwA', '7324078'), + (27761, 269, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybqnRwA', '7324082'), + (27762, 269, 2702, 'attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mybqnRwA', '7324867'), + (27763, 269, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mybqnRwA', '7331457'), + (27764, 269, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mybqnRwA', '7356752'), + (27765, 269, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mybqnRwA', '7363643'), + (27766, 269, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybqnRwA', '7368606'), + (27767, 269, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybqnRwA', '7397462'), + (27768, 269, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybqnRwA', '7424275'), + (27769, 269, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mybqnRwA', '7424276'), + (27770, 269, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybqnRwA', '7432751'), + (27771, 269, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybqnRwA', '7432752'), + (27772, 269, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybqnRwA', '7432753'), + (27773, 269, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybqnRwA', '7432754'), + (27774, 269, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybqnRwA', '7432755'), + (27775, 269, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybqnRwA', '7432756'), + (27776, 269, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybqnRwA', '7432758'), + (27777, 269, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybqnRwA', '7432759'), + (27778, 269, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mybqnRwA', '7433834'), + (27779, 269, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybqnRwA', '7470197'), + (27780, 269, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybqnRwA', '7685613'), + (27781, 269, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybqnRwA', '7688194'), + (27782, 269, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybqnRwA', '7688196'), + (27783, 269, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybqnRwA', '7688289'), + (27784, 270, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mLDwX28m', '6045684'), + (27785, 271, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', 'm7QaMGl4', '4420739'), + (27786, 271, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'm7QaMGl4', '4420741'), + (27787, 271, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'm7QaMGl4', '4420744'), + (27788, 271, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'm7QaMGl4', '4420747'), + (27789, 271, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm7QaMGl4', '4508342'), + (27790, 271, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm7QaMGl4', '4568602'), + (27791, 271, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm7QaMGl4', '4572153'), + (27792, 271, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'm7QaMGl4', '4585962'), + (27793, 271, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm7QaMGl4', '4596356'), + (27794, 271, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm7QaMGl4', '4598860'), + (27795, 271, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm7QaMGl4', '4598861'), + (27796, 271, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm7QaMGl4', '4602797'), + (27797, 271, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm7QaMGl4', '4637896'), + (27798, 271, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm7QaMGl4', '4642994'), + (27799, 271, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm7QaMGl4', '4642995'), + (27800, 271, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm7QaMGl4', '4642996'), + (27801, 271, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm7QaMGl4', '4642997'), + (27802, 271, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm7QaMGl4', '4645687'), + (27803, 271, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm7QaMGl4', '4645698'), + (27804, 271, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm7QaMGl4', '4645704'), + (27805, 271, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm7QaMGl4', '4645705'), + (27806, 271, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm7QaMGl4', '4668385'), + (27807, 271, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7QaMGl4', '6045684'), + (27808, 272, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4knNDqLA', '5441131'), + (27809, 272, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4knNDqLA', '5441132'), + (27810, 272, 1562, 'not_attending', '2022-08-17 14:05:38', '2025-12-17 19:47:22', '4knNDqLA', '5469480'), + (27811, 272, 1575, 'attending', '2022-08-26 22:20:19', '2025-12-17 19:47:23', '4knNDqLA', '5482250'), + (27812, 272, 1591, 'attending', '2022-08-15 19:20:15', '2025-12-17 19:47:22', '4knNDqLA', '5493764'), + (27813, 272, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4knNDqLA', '5505059'), + (27814, 272, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4knNDqLA', '5509055'), + (27815, 272, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4knNDqLA', '5512862'), + (27816, 272, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4knNDqLA', '5513985'), + (27817, 272, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '4knNDqLA', '5519981'), + (27818, 272, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4knNDqLA', '5522550'), + (27819, 272, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4knNDqLA', '5534683'), + (27820, 272, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4knNDqLA', '5537735'), + (27821, 272, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4knNDqLA', '5540859'), + (27822, 272, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4knNDqLA', '5546619'), + (27823, 272, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4knNDqLA', '5555245'), + (27824, 272, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4knNDqLA', '5557747'), + (27825, 272, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4knNDqLA', '5560255'), + (27826, 272, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4knNDqLA', '5562906'), + (27827, 272, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4knNDqLA', '5600604'), + (27828, 272, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4knNDqLA', '5605544'), + (27829, 272, 1699, 'not_attending', '2022-09-26 12:18:45', '2025-12-17 19:47:12', '4knNDqLA', '5606737'), + (27830, 272, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4knNDqLA', '5630960'), + (27831, 272, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4knNDqLA', '5630961'), + (27832, 272, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4knNDqLA', '5630962'), + (27833, 272, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4knNDqLA', '5630966'), + (27834, 272, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4knNDqLA', '5630967'), + (27835, 272, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4knNDqLA', '5630968'), + (27836, 272, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4knNDqLA', '5635406'), + (27837, 272, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4knNDqLA', '5638765'), + (27838, 272, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4knNDqLA', '5640097'), + (27839, 272, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4knNDqLA', '5640843'), + (27840, 272, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4knNDqLA', '5641521'), + (27841, 272, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4knNDqLA', '5642818'), + (27842, 272, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4knNDqLA', '5652395'), + (27843, 272, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4knNDqLA', '5670445'), + (27844, 272, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4knNDqLA', '5671637'), + (27845, 272, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4knNDqLA', '5672329'), + (27846, 272, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4knNDqLA', '5674057'), + (27847, 272, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4knNDqLA', '5674060'), + (27848, 272, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4knNDqLA', '5677461'), + (27849, 272, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4knNDqLA', '5698046'), + (27850, 272, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4knNDqLA', '5699760'), + (27851, 272, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4knNDqLA', '5741601'), + (27852, 272, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4knNDqLA', '5763458'), + (27853, 272, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4knNDqLA', '5774172'), + (27854, 272, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4knNDqLA', '5818247'), + (27855, 272, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4knNDqLA', '5819471'), + (27856, 272, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4knNDqLA', '5827739'), + (27857, 272, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4knNDqLA', '5844306'), + (27858, 272, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4knNDqLA', '5850159'), + (27859, 272, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4knNDqLA', '5858999'), + (27860, 272, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4knNDqLA', '5871984'), + (27861, 272, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4knNDqLA', '5876354'), + (27862, 272, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4knNDqLA', '5880939'), + (27863, 272, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4knNDqLA', '5887890'), + (27864, 272, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4knNDqLA', '5888598'), + (27865, 272, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4knNDqLA', '5893260'), + (27866, 272, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4knNDqLA', '6045684'), + (27867, 273, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4Z7Znnrd', '6101361'), + (27868, 273, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '4Z7Znnrd', '6136733'), + (27869, 273, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4Z7Znnrd', '6137989'), + (27870, 273, 2098, 'not_attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', '4Z7Znnrd', '6139831'), + (27871, 273, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4Z7Znnrd', '6150864'), + (27872, 273, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4Z7Znnrd', '6155491'), + (27873, 273, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4Z7Znnrd', '6164417'), + (27874, 273, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4Z7Znnrd', '6166388'), + (27875, 273, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4Z7Znnrd', '6176439'), + (27876, 273, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', '4Z7Znnrd', '6177485'), + (27877, 273, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4Z7Znnrd', '6182410'), + (27878, 273, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4Z7Znnrd', '6185812'), + (27879, 273, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4Z7Znnrd', '6187651'), + (27880, 273, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4Z7Znnrd', '6187963'), + (27881, 273, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4Z7Znnrd', '6187964'), + (27882, 273, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4Z7Znnrd', '6187966'), + (27883, 273, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4Z7Znnrd', '6187967'), + (27884, 273, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4Z7Znnrd', '6187969'), + (27885, 273, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4Z7Znnrd', '6334878'), + (27886, 274, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mG7jyBwm', '6044839'), + (27887, 274, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mG7jyBwm', '6053198'), + (27888, 274, 2011, 'not_attending', '2023-04-10 18:04:05', '2025-12-17 19:46:59', 'mG7jyBwm', '6056916'), + (27889, 274, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mG7jyBwm', '6059290'), + (27890, 274, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mG7jyBwm', '6060328'), + (27891, 274, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mG7jyBwm', '6061037'), + (27892, 274, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mG7jyBwm', '6061039'), + (27893, 274, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mG7jyBwm', '6067245'), + (27894, 274, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mG7jyBwm', '6068094'), + (27895, 274, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mG7jyBwm', '6068252'), + (27896, 274, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mG7jyBwm', '6068253'), + (27897, 274, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mG7jyBwm', '6068254'), + (27898, 274, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'mG7jyBwm', '6068280'), + (27899, 274, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mG7jyBwm', '6069093'), + (27900, 274, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mG7jyBwm', '6072528'), + (27901, 274, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mG7jyBwm', '6079840'), + (27902, 274, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mG7jyBwm', '6083398'), + (27903, 274, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'mG7jyBwm', '6093504'), + (27904, 274, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mG7jyBwm', '6097414'), + (27905, 274, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mG7jyBwm', '6097442'), + (27906, 274, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mG7jyBwm', '6097684'), + (27907, 274, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mG7jyBwm', '6098762'), + (27908, 274, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mG7jyBwm', '6101362'), + (27909, 274, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mG7jyBwm', '6107314'), + (27910, 274, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mG7jyBwm', '6120034'), + (27911, 275, 2521, 'maybe', '2024-06-18 01:19:04', '2025-12-17 19:46:29', 'mybqKV6A', '7074361'), + (27912, 275, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybqKV6A', '7074364'), + (27913, 275, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'mybqKV6A', '7302674'), + (27914, 275, 2678, 'attending', '2024-06-15 17:46:21', '2025-12-17 19:46:28', 'mybqKV6A', '7319489'), + (27915, 275, 2683, 'attending', '2024-06-16 01:55:17', '2025-12-17 19:46:28', 'mybqKV6A', '7321978'), + (27916, 275, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybqKV6A', '7324073'), + (27917, 275, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybqKV6A', '7324074'), + (27918, 275, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybqKV6A', '7324075'), + (27919, 275, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybqKV6A', '7324078'), + (27920, 275, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybqKV6A', '7324082'), + (27921, 275, 2706, 'attending', '2024-06-18 01:20:06', '2025-12-17 19:46:28', 'mybqKV6A', '7324947'), + (27922, 275, 2720, 'attending', '2024-06-18 20:56:00', '2025-12-17 19:46:28', 'mybqKV6A', '7331436'), + (27923, 275, 2721, 'attending', '2024-06-18 22:51:11', '2025-12-17 19:46:29', 'mybqKV6A', '7331456'), + (27924, 275, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mybqKV6A', '7331457'), + (27925, 275, 2723, 'not_attending', '2024-06-21 18:54:14', '2025-12-17 19:46:29', 'mybqKV6A', '7332389'), + (27926, 275, 2746, 'attending', '2024-07-09 22:42:55', '2025-12-17 19:46:29', 'mybqKV6A', '7348713'), + (27927, 275, 2747, 'not_attending', '2024-07-17 16:52:24', '2025-12-17 19:46:30', 'mybqKV6A', '7353587'), + (27928, 275, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mybqKV6A', '7356752'), + (27929, 275, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mybqKV6A', '7363643'), + (27930, 275, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybqKV6A', '7368606'), + (27931, 275, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybqKV6A', '7397462'), + (27932, 275, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybqKV6A', '7424275'), + (27933, 275, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mybqKV6A', '7424276'), + (27934, 275, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybqKV6A', '7432751'), + (27935, 275, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybqKV6A', '7432752'), + (27936, 275, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybqKV6A', '7432753'), + (27937, 275, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybqKV6A', '7432754'), + (27938, 275, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybqKV6A', '7432755'), + (27939, 275, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybqKV6A', '7432756'), + (27940, 275, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybqKV6A', '7432758'), + (27941, 275, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybqKV6A', '7432759'), + (27942, 275, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mybqKV6A', '7433834'), + (27943, 275, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybqKV6A', '7470197'), + (27944, 275, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybqKV6A', '7685613'), + (27945, 275, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybqKV6A', '7688194'), + (27946, 275, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybqKV6A', '7688196'), + (27947, 275, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybqKV6A', '7688289'), + (27948, 276, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dJVD5EQd', '7904777'), + (27949, 276, 3094, 'attending', '2025-05-04 10:40:46', '2025-12-17 19:46:21', 'dJVD5EQd', '8342292'), + (27950, 276, 3106, 'attending', '2025-05-01 02:34:22', '2025-12-17 19:46:20', 'dJVD5EQd', '8349552'), + (27951, 276, 3110, 'maybe', '2025-05-04 10:41:10', '2025-12-17 19:46:20', 'dJVD5EQd', '8353484'), + (27952, 276, 3112, 'maybe', '2025-05-04 10:41:01', '2025-12-17 19:46:21', 'dJVD5EQd', '8353584'), + (27953, 276, 3126, 'not_attending', '2025-05-12 14:56:40', '2025-12-17 19:46:21', 'dJVD5EQd', '8365614'), + (27954, 276, 3131, 'attending', '2025-05-14 22:18:48', '2025-12-17 19:46:21', 'dJVD5EQd', '8368028'), + (27955, 276, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dJVD5EQd', '8368029'), + (27956, 276, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dJVD5EQd', '8388462'), + (27957, 276, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dJVD5EQd', '8400273'), + (27958, 276, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'dJVD5EQd', '8400274'), + (27959, 276, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dJVD5EQd', '8400275'), + (27960, 276, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'dJVD5EQd', '8400276'), + (27961, 276, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dJVD5EQd', '8404977'), + (27962, 276, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'dJVD5EQd', '8430783'), + (27963, 276, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dJVD5EQd', '8430784'), + (27964, 276, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dJVD5EQd', '8430799'), + (27965, 276, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dJVD5EQd', '8430800'), + (27966, 276, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dJVD5EQd', '8430801'), + (27967, 276, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dJVD5EQd', '8438709'), + (27968, 276, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dJVD5EQd', '8457738'), + (27969, 276, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dJVD5EQd', '8459566'), + (27970, 276, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dJVD5EQd', '8459567'), + (27971, 276, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dJVD5EQd', '8461032'), + (27972, 276, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dJVD5EQd', '8477877'), + (27973, 276, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dJVD5EQd', '8485688'), + (27974, 276, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dJVD5EQd', '8490587'), + (27975, 276, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dJVD5EQd', '8493552'), + (27976, 276, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dJVD5EQd', '8493553'), + (27977, 276, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dJVD5EQd', '8493554'), + (27978, 276, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dJVD5EQd', '8493555'), + (27979, 276, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dJVD5EQd', '8493556'), + (27980, 276, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dJVD5EQd', '8493557'), + (27981, 276, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dJVD5EQd', '8493558'), + (27982, 276, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dJVD5EQd', '8493559'), + (27983, 276, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dJVD5EQd', '8493560'), + (27984, 276, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dJVD5EQd', '8493561'), + (27985, 276, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dJVD5EQd', '8493572'), + (27986, 276, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'dJVD5EQd', '8540725'), + (27987, 276, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dJVD5EQd', '8555421'), + (27988, 277, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mLLBzXZm', '6482693'), + (27989, 277, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mLLBzXZm', '6484200'), + (27990, 277, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'mLLBzXZm', '6484680'), + (27991, 277, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mLLBzXZm', '6507741'), + (27992, 277, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mLLBzXZm', '6514659'), + (27993, 277, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mLLBzXZm', '6514660'), + (27994, 277, 2328, 'attending', '2023-11-03 19:15:50', '2025-12-17 19:46:47', 'mLLBzXZm', '6515504'), + (27995, 277, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mLLBzXZm', '6519103'), + (27996, 277, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mLLBzXZm', '6535681'), + (27997, 277, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mLLBzXZm', '6545076'), + (27998, 277, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mLLBzXZm', '6584747'), + (27999, 277, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mLLBzXZm', '6587097'), + (28000, 277, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mLLBzXZm', '6609022'), + (28001, 277, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mLLBzXZm', '6632757'), + (28002, 277, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mLLBzXZm', '6644187'), + (28003, 277, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mLLBzXZm', '6648951'), + (28004, 277, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mLLBzXZm', '6648952'), + (28005, 277, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mLLBzXZm', '6651141'), + (28006, 277, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mLLBzXZm', '6655401'), + (28007, 277, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mLLBzXZm', '6661585'), + (28008, 277, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mLLBzXZm', '6661588'), + (28009, 277, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mLLBzXZm', '6661589'), + (28010, 277, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mLLBzXZm', '6699906'), + (28011, 277, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mLLBzXZm', '6699913'), + (28012, 277, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mLLBzXZm', '6701109'), + (28013, 277, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mLLBzXZm', '6705219'), + (28014, 277, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mLLBzXZm', '6710153'), + (28015, 277, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mLLBzXZm', '6711552'), + (28016, 277, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mLLBzXZm', '6711553'), + (28017, 277, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mLLBzXZm', '6722688'), + (28018, 277, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mLLBzXZm', '6730620'), + (28019, 277, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mLLBzXZm', '6730642'), + (28020, 277, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mLLBzXZm', '6740364'), + (28021, 277, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mLLBzXZm', '6743829'), + (28022, 277, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mLLBzXZm', '7030380'), + (28023, 277, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mLLBzXZm', '7033677'), + (28024, 277, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mLLBzXZm', '7035415'), + (28025, 277, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mLLBzXZm', '7044715'), + (28026, 277, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mLLBzXZm', '7050318'), + (28027, 277, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mLLBzXZm', '7050319'), + (28028, 277, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mLLBzXZm', '7050322'), + (28029, 277, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mLLBzXZm', '7057804'), + (28030, 277, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mLLBzXZm', '7072824'), + (28031, 277, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mLLBzXZm', '7074348'), + (28032, 277, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mLLBzXZm', '7089267'), + (28033, 277, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mLLBzXZm', '7098747'), + (28034, 277, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mLLBzXZm', '7113468'), + (28035, 277, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mLLBzXZm', '7114856'), + (28036, 277, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mLLBzXZm', '7114951'), + (28037, 277, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mLLBzXZm', '7114955'), + (28038, 277, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mLLBzXZm', '7114956'), + (28039, 277, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mLLBzXZm', '7153615'), + (28040, 277, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mLLBzXZm', '7159484'), + (28041, 277, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mLLBzXZm', '7178446'), + (28042, 278, 1097, 'attending', '2021-11-03 05:34:40', '2025-12-17 19:47:36', 'AYzJ2nw4', '4598860'), + (28043, 278, 1098, 'attending', '2021-11-04 02:34:28', '2025-12-17 19:47:36', 'AYzJ2nw4', '4598861'), + (28044, 278, 1103, 'attending', '2021-11-07 16:20:23', '2025-12-17 19:47:36', 'AYzJ2nw4', '4616350'), + (28045, 278, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AYzJ2nw4', '4637896'), + (28046, 278, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AYzJ2nw4', '4642994'), + (28047, 278, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'AYzJ2nw4', '4642995'), + (28048, 278, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AYzJ2nw4', '4642996'), + (28049, 278, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AYzJ2nw4', '4642997'), + (28050, 278, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AYzJ2nw4', '4645687'), + (28051, 278, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AYzJ2nw4', '4645698'), + (28052, 278, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AYzJ2nw4', '4645704'), + (28053, 278, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AYzJ2nw4', '4645705'), + (28054, 278, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AYzJ2nw4', '4668385'), + (28055, 278, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'AYzJ2nw4', '4694407'), + (28056, 278, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYzJ2nw4', '6045684'), + (28057, 279, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dN9VnnW4', '4736503'), + (28058, 279, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dN9VnnW4', '4736504'), + (28059, 279, 1257, 'attending', '2022-03-01 00:21:23', '2025-12-17 19:47:33', 'dN9VnnW4', '5129274'), + (28060, 279, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dN9VnnW4', '5132533'), + (28061, 279, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dN9VnnW4', '5186582'), + (28062, 279, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dN9VnnW4', '5186583'), + (28063, 279, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dN9VnnW4', '5186585'), + (28064, 279, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dN9VnnW4', '5190437'), + (28065, 279, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dN9VnnW4', '5215989'), + (28066, 279, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dN9VnnW4', '6045684'), + (28067, 280, 538, 'attending', '2022-01-12 00:31:05', '2025-12-17 19:47:48', '4ZkX9bLd', '3388151'), + (28068, 280, 864, 'not_attending', '2021-11-14 03:27:52', '2025-12-17 19:47:37', '4ZkX9bLd', '4015998'), + (28069, 280, 1079, 'attending', '2021-10-21 03:52:03', '2025-12-17 19:47:35', '4ZkX9bLd', '4563823'), + (28070, 280, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '4ZkX9bLd', '4585962'), + (28071, 280, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4ZkX9bLd', '4596356'), + (28072, 280, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4ZkX9bLd', '4598860'), + (28073, 280, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4ZkX9bLd', '4598861'), + (28074, 280, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4ZkX9bLd', '4602797'), + (28075, 280, 1103, 'attending', '2021-11-13 21:18:21', '2025-12-17 19:47:36', '4ZkX9bLd', '4616350'), + (28076, 280, 1114, 'attending', '2021-11-14 00:05:50', '2025-12-17 19:47:36', '4ZkX9bLd', '4637896'), + (28077, 280, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4ZkX9bLd', '4642994'), + (28078, 280, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4ZkX9bLd', '4642995'), + (28079, 280, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4ZkX9bLd', '4642996'), + (28080, 280, 1119, 'attending', '2021-12-23 00:58:08', '2025-12-17 19:47:31', '4ZkX9bLd', '4642997'), + (28081, 280, 1120, 'attending', '2021-11-14 03:27:32', '2025-12-17 19:47:37', '4ZkX9bLd', '4644021'), + (28082, 280, 1126, 'attending', '2021-12-11 23:39:29', '2025-12-17 19:47:38', '4ZkX9bLd', '4645687'), + (28083, 280, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4ZkX9bLd', '4645698'), + (28084, 280, 1128, 'attending', '2021-11-18 18:46:13', '2025-12-17 19:47:37', '4ZkX9bLd', '4645704'), + (28085, 280, 1129, 'attending', '2021-11-24 21:01:36', '2025-12-17 19:47:37', '4ZkX9bLd', '4645705'), + (28086, 280, 1130, 'attending', '2021-12-04 17:38:18', '2025-12-17 19:47:37', '4ZkX9bLd', '4658824'), + (28087, 280, 1131, 'not_attending', '2021-12-18 17:04:27', '2025-12-17 19:47:31', '4ZkX9bLd', '4658825'), + (28088, 280, 1132, 'attending', '2021-11-23 00:01:41', '2025-12-17 19:47:37', '4ZkX9bLd', '4660657'), + (28089, 280, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4ZkX9bLd', '4668385'), + (28090, 280, 1139, 'maybe', '2021-12-01 21:34:06', '2025-12-17 19:47:37', '4ZkX9bLd', '4675604'), + (28091, 280, 1140, 'maybe', '2021-12-01 21:34:09', '2025-12-17 19:47:37', '4ZkX9bLd', '4679701'), + (28092, 280, 1147, 'attending', '2021-12-12 15:06:09', '2025-12-17 19:47:38', '4ZkX9bLd', '4692842'), + (28093, 280, 1148, 'attending', '2021-12-16 04:40:47', '2025-12-17 19:47:31', '4ZkX9bLd', '4692843'), + (28094, 280, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4ZkX9bLd', '4694407'), + (28095, 280, 1152, 'not_attending', '2022-01-11 03:28:50', '2025-12-17 19:47:31', '4ZkX9bLd', '4708705'), + (28096, 280, 1153, 'not_attending', '2022-01-19 02:01:57', '2025-12-17 19:47:32', '4ZkX9bLd', '4708707'), + (28097, 280, 1154, 'not_attending', '2022-01-23 21:33:18', '2025-12-17 19:47:32', '4ZkX9bLd', '4708708'), + (28098, 280, 1155, 'attending', '2021-12-18 17:04:38', '2025-12-17 19:47:31', '4ZkX9bLd', '4715119'), + (28099, 280, 1156, 'attending', '2021-12-20 23:53:01', '2025-12-17 19:47:31', '4ZkX9bLd', '4715207'), + (28100, 280, 1164, 'attending', '2021-12-28 00:54:21', '2025-12-17 19:47:31', '4ZkX9bLd', '4724208'), + (28101, 280, 1165, 'not_attending', '2021-12-28 00:54:24', '2025-12-17 19:47:31', '4ZkX9bLd', '4724210'), + (28102, 280, 1167, 'not_attending', '2022-01-06 23:52:49', '2025-12-17 19:47:31', '4ZkX9bLd', '4731015'), + (28103, 280, 1170, 'not_attending', '2022-01-09 23:48:42', '2025-12-17 19:47:31', '4ZkX9bLd', '4731045'), + (28104, 280, 1173, 'attending', '2022-01-08 20:58:27', '2025-12-17 19:47:31', '4ZkX9bLd', '4736495'), + (28105, 280, 1174, 'attending', '2022-01-12 00:33:02', '2025-12-17 19:47:31', '4ZkX9bLd', '4736496'), + (28106, 280, 1175, 'attending', '2022-01-23 00:19:51', '2025-12-17 19:47:32', '4ZkX9bLd', '4736497'), + (28107, 280, 1176, 'attending', '2022-02-01 00:32:00', '2025-12-17 19:47:32', '4ZkX9bLd', '4736498'), + (28108, 280, 1177, 'attending', '2022-02-08 14:21:19', '2025-12-17 19:47:32', '4ZkX9bLd', '4736499'), + (28109, 280, 1178, 'attending', '2022-01-23 06:32:14', '2025-12-17 19:47:32', '4ZkX9bLd', '4736500'), + (28110, 280, 1179, 'attending', '2022-02-16 02:31:04', '2025-12-17 19:47:32', '4ZkX9bLd', '4736501'), + (28111, 280, 1180, 'attending', '2022-02-23 03:06:14', '2025-12-17 19:47:33', '4ZkX9bLd', '4736502'), + (28112, 280, 1181, 'not_attending', '2022-03-05 20:14:42', '2025-12-17 19:47:33', '4ZkX9bLd', '4736503'), + (28113, 280, 1182, 'attending', '2022-03-07 18:30:26', '2025-12-17 19:47:33', '4ZkX9bLd', '4736504'), + (28114, 280, 1184, 'attending', '2022-01-15 00:50:47', '2025-12-17 19:47:31', '4ZkX9bLd', '4742350'), + (28115, 280, 1185, 'not_attending', '2022-01-12 13:39:58', '2025-12-17 19:47:31', '4ZkX9bLd', '4746789'), + (28116, 280, 1188, 'attending', '2022-01-17 18:47:17', '2025-12-17 19:47:31', '4ZkX9bLd', '4753929'), + (28117, 280, 1197, 'not_attending', '2022-01-25 13:26:32', '2025-12-17 19:47:32', '4ZkX9bLd', '4766799'), + (28118, 280, 1198, 'not_attending', '2022-01-24 23:49:09', '2025-12-17 19:47:32', '4ZkX9bLd', '4766801'), + (28119, 280, 1199, 'attending', '2022-01-24 21:33:42', '2025-12-17 19:47:32', '4ZkX9bLd', '4766802'), + (28120, 280, 1200, 'attending', '2022-01-18 02:25:33', '2025-12-17 19:47:32', '4ZkX9bLd', '4766830'), + (28121, 280, 1202, 'attending', '2022-01-19 18:26:43', '2025-12-17 19:47:32', '4ZkX9bLd', '4769423'), + (28122, 280, 1217, 'not_attending', '2022-01-30 20:34:53', '2025-12-17 19:47:32', '4ZkX9bLd', '4781139'), + (28123, 280, 1219, 'not_attending', '2022-02-01 22:22:46', '2025-12-17 19:47:32', '4ZkX9bLd', '4788466'), + (28124, 280, 1221, 'not_attending', '2022-01-29 21:45:22', '2025-12-17 19:47:32', '4ZkX9bLd', '4790261'), + (28125, 280, 1222, 'not_attending', '2022-02-16 02:30:30', '2025-12-17 19:47:32', '4ZkX9bLd', '5015628'), + (28126, 280, 1224, 'attending', '2022-01-31 15:52:43', '2025-12-17 19:47:32', '4ZkX9bLd', '5016682'), + (28127, 280, 1228, 'not_attending', '2022-02-08 18:37:21', '2025-12-17 19:47:32', '4ZkX9bLd', '5028238'), + (28128, 280, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4ZkX9bLd', '5038850'), + (28129, 280, 1234, 'attending', '2022-02-13 02:42:13', '2025-12-17 19:47:32', '4ZkX9bLd', '5042197'), + (28130, 280, 1236, 'attending', '2022-02-16 02:29:32', '2025-12-17 19:47:32', '4ZkX9bLd', '5045826'), + (28131, 280, 1237, 'not_attending', '2022-02-16 04:00:33', '2025-12-17 19:47:32', '4ZkX9bLd', '5050641'), + (28132, 280, 1238, 'maybe', '2022-02-24 01:13:36', '2025-12-17 19:47:32', '4ZkX9bLd', '5052236'), + (28133, 280, 1240, 'not_attending', '2022-03-14 21:03:24', '2025-12-17 19:47:33', '4ZkX9bLd', '5052239'), + (28134, 280, 1241, 'not_attending', '2022-03-23 16:55:09', '2025-12-17 19:47:25', '4ZkX9bLd', '5052240'), + (28135, 280, 1242, 'not_attending', '2022-03-29 20:27:07', '2025-12-17 19:47:25', '4ZkX9bLd', '5052241'), + (28136, 280, 1248, 'attending', '2022-02-23 18:49:47', '2025-12-17 19:47:33', '4ZkX9bLd', '5065064'), + (28137, 280, 1255, 'attending', '2022-03-01 02:15:42', '2025-12-17 19:47:33', '4ZkX9bLd', '5129140'), + (28138, 280, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4ZkX9bLd', '5132533'), + (28139, 280, 1262, 'attending', '2022-03-10 14:02:07', '2025-12-17 19:47:33', '4ZkX9bLd', '5157773'), + (28140, 280, 1264, 'not_attending', '2022-03-22 23:20:50', '2025-12-17 19:47:25', '4ZkX9bLd', '5160281'), + (28141, 280, 1266, 'not_attending', '2022-03-15 00:14:41', '2025-12-17 19:47:33', '4ZkX9bLd', '5166407'), + (28142, 280, 1270, 'not_attending', '2022-03-20 16:21:19', '2025-12-17 19:47:25', '4ZkX9bLd', '5181277'), + (28143, 280, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4ZkX9bLd', '5186582'), + (28144, 280, 1273, 'attending', '2022-03-26 21:40:22', '2025-12-17 19:47:25', '4ZkX9bLd', '5186583'), + (28145, 280, 1274, 'attending', '2022-04-02 13:55:42', '2025-12-17 19:47:26', '4ZkX9bLd', '5186585'), + (28146, 280, 1276, 'attending', '2022-03-27 00:35:54', '2025-12-17 19:47:25', '4ZkX9bLd', '5186820'), + (28147, 280, 1279, 'not_attending', '2022-03-20 20:54:06', '2025-12-17 19:47:25', '4ZkX9bLd', '5187212'), + (28148, 280, 1281, 'attending', '2022-04-04 17:32:36', '2025-12-17 19:47:27', '4ZkX9bLd', '5190437'), + (28149, 280, 1284, 'not_attending', '2022-04-16 19:09:05', '2025-12-17 19:47:27', '4ZkX9bLd', '5195095'), + (28150, 280, 1294, 'attending', '2022-03-30 03:19:11', '2025-12-17 19:47:26', '4ZkX9bLd', '5214686'), + (28151, 280, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4ZkX9bLd', '5215989'), + (28152, 280, 1302, 'not_attending', '2022-04-03 03:54:41', '2025-12-17 19:47:27', '4ZkX9bLd', '5220867'), + (28153, 280, 1304, 'not_attending', '2022-04-04 12:56:57', '2025-12-17 19:47:26', '4ZkX9bLd', '5223468'), + (28154, 280, 1305, 'attending', '2022-04-04 17:33:28', '2025-12-17 19:47:27', '4ZkX9bLd', '5223673'), + (28155, 280, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4ZkX9bLd', '5223686'), + (28156, 280, 1308, 'not_attending', '2022-04-08 20:36:21', '2025-12-17 19:47:27', '4ZkX9bLd', '5226703'), + (28157, 280, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4ZkX9bLd', '5227432'), + (28158, 280, 1315, 'not_attending', '2022-04-22 01:17:23', '2025-12-17 19:47:27', '4ZkX9bLd', '5237522'), + (28159, 280, 1317, 'not_attending', '2022-04-11 04:09:30', '2025-12-17 19:47:27', '4ZkX9bLd', '5237543'), + (28160, 280, 1320, 'not_attending', '2022-04-24 22:46:25', '2025-12-17 19:47:27', '4ZkX9bLd', '5238354'), + (28161, 280, 1322, 'not_attending', '2022-04-26 00:04:38', '2025-12-17 19:47:27', '4ZkX9bLd', '5238356'), + (28162, 280, 1324, 'maybe', '2022-04-15 03:16:46', '2025-12-17 19:47:27', '4ZkX9bLd', '5238360'), + (28163, 280, 1326, 'attending', '2022-05-01 01:47:27', '2025-12-17 19:47:28', '4ZkX9bLd', '5238362'), + (28164, 280, 1336, 'attending', '2022-04-15 02:25:17', '2025-12-17 19:47:27', '4ZkX9bLd', '5244915'), + (28165, 280, 1337, 'attending', '2022-04-15 02:25:27', '2025-12-17 19:47:27', '4ZkX9bLd', '5245036'), + (28166, 280, 1346, 'attending', '2022-04-17 20:01:15', '2025-12-17 19:47:27', '4ZkX9bLd', '5247467'), + (28167, 280, 1348, 'maybe', '2022-05-01 17:49:57', '2025-12-17 19:47:28', '4ZkX9bLd', '5247605'), + (28168, 280, 1350, 'not_attending', '2022-04-19 20:22:52', '2025-12-17 19:47:27', '4ZkX9bLd', '5249763'), + (28169, 280, 1357, 'attending', '2022-04-25 17:54:54', '2025-12-17 19:47:27', '4ZkX9bLd', '5256017'), + (28170, 280, 1362, 'not_attending', '2022-04-25 23:30:23', '2025-12-17 19:47:28', '4ZkX9bLd', '5260800'), + (28171, 280, 1374, 'attending', '2022-04-30 21:27:01', '2025-12-17 19:47:28', '4ZkX9bLd', '5269930'), + (28172, 280, 1375, 'not_attending', '2022-05-05 23:49:41', '2025-12-17 19:47:28', '4ZkX9bLd', '5269932'), + (28173, 280, 1378, 'attending', '2022-05-08 14:18:49', '2025-12-17 19:47:28', '4ZkX9bLd', '5271448'), + (28174, 280, 1379, 'attending', '2022-05-20 12:30:27', '2025-12-17 19:47:29', '4ZkX9bLd', '5271449'), + (28175, 280, 1380, 'not_attending', '2022-05-08 14:19:23', '2025-12-17 19:47:30', '4ZkX9bLd', '5271450'), + (28176, 280, 1383, 'not_attending', '2022-05-08 22:10:10', '2025-12-17 19:47:28', '4ZkX9bLd', '5276469'), + (28177, 280, 1385, 'not_attending', '2022-05-07 19:43:58', '2025-12-17 19:47:28', '4ZkX9bLd', '5277822'), + (28178, 280, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4ZkX9bLd', '5278159'), + (28179, 280, 1392, 'not_attending', '2022-05-10 22:45:25', '2025-12-17 19:47:28', '4ZkX9bLd', '5279532'), + (28180, 280, 1401, 'not_attending', '2022-05-11 09:36:39', '2025-12-17 19:47:29', '4ZkX9bLd', '5286295'), + (28181, 280, 1403, 'not_attending', '2022-05-17 03:40:22', '2025-12-17 19:47:29', '4ZkX9bLd', '5288052'), + (28182, 280, 1407, 'attending', '2022-05-15 13:21:27', '2025-12-17 19:47:30', '4ZkX9bLd', '5363695'), + (28183, 280, 1408, 'not_attending', '2022-05-20 02:45:57', '2025-12-17 19:47:29', '4ZkX9bLd', '5365960'), + (28184, 280, 1414, 'not_attending', '2022-05-20 13:54:07', '2025-12-17 19:47:29', '4ZkX9bLd', '5368445'), + (28185, 280, 1415, 'attending', '2022-05-19 16:13:18', '2025-12-17 19:47:30', '4ZkX9bLd', '5368973'), + (28186, 280, 1419, 'not_attending', '2022-05-26 22:42:32', '2025-12-17 19:47:30', '4ZkX9bLd', '5373081'), + (28187, 280, 1423, 'not_attending', '2022-06-16 00:31:57', '2025-12-17 19:47:17', '4ZkX9bLd', '5375727'), + (28188, 280, 1428, 'not_attending', '2022-06-06 17:08:57', '2025-12-17 19:47:30', '4ZkX9bLd', '5378247'), + (28189, 280, 1431, 'attending', '2022-06-03 03:16:29', '2025-12-17 19:47:30', '4ZkX9bLd', '5389605'), + (28190, 280, 1441, 'not_attending', '2022-06-05 13:42:17', '2025-12-17 19:47:30', '4ZkX9bLd', '5397171'), + (28191, 280, 1442, 'not_attending', '2022-06-19 02:53:26', '2025-12-17 19:47:17', '4ZkX9bLd', '5397265'), + (28192, 280, 1446, 'not_attending', '2022-06-09 04:39:39', '2025-12-17 19:47:30', '4ZkX9bLd', '5399721'), + (28193, 280, 1451, 'attending', '2022-06-09 21:32:48', '2025-12-17 19:47:17', '4ZkX9bLd', '5403967'), + (28194, 280, 1455, 'not_attending', '2022-06-10 01:40:25', '2025-12-17 19:47:31', '4ZkX9bLd', '5404772'), + (28195, 280, 1458, 'not_attending', '2022-06-18 22:35:57', '2025-12-17 19:47:17', '4ZkX9bLd', '5404786'), + (28196, 280, 1462, 'not_attending', '2022-06-11 03:34:54', '2025-12-17 19:47:17', '4ZkX9bLd', '5405203'), + (28197, 280, 1463, 'not_attending', '2022-06-12 19:24:44', '2025-12-17 19:47:31', '4ZkX9bLd', '5405208'), + (28198, 280, 1466, 'not_attending', '2022-06-16 03:20:45', '2025-12-17 19:47:17', '4ZkX9bLd', '5406427'), + (28199, 280, 1470, 'not_attending', '2022-06-13 01:59:52', '2025-12-17 19:47:17', '4ZkX9bLd', '5407053'), + (28200, 280, 1473, 'not_attending', '2022-06-13 12:19:40', '2025-12-17 19:47:31', '4ZkX9bLd', '5407267'), + (28201, 280, 1476, 'attending', '2022-06-15 18:31:02', '2025-12-17 19:47:17', '4ZkX9bLd', '5408130'), + (28202, 280, 1478, 'attending', '2022-06-15 17:48:05', '2025-12-17 19:47:17', '4ZkX9bLd', '5408794'), + (28203, 280, 1480, 'attending', '2022-06-20 17:45:31', '2025-12-17 19:47:19', '4ZkX9bLd', '5411699'), + (28204, 280, 1482, 'attending', '2022-06-19 19:51:00', '2025-12-17 19:47:19', '4ZkX9bLd', '5412550'), + (28205, 280, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4ZkX9bLd', '5415046'), + (28206, 280, 1485, 'not_attending', '2022-06-21 20:24:20', '2025-12-17 19:47:17', '4ZkX9bLd', '5416276'), + (28207, 280, 1495, 'not_attending', '2022-06-27 01:52:19', '2025-12-17 19:47:19', '4ZkX9bLd', '5422086'), + (28208, 280, 1498, 'not_attending', '2022-06-29 17:43:48', '2025-12-17 19:47:19', '4ZkX9bLd', '5422406'), + (28209, 280, 1499, 'not_attending', '2022-06-29 17:43:51', '2025-12-17 19:47:19', '4ZkX9bLd', '5422407'), + (28210, 280, 1501, 'maybe', '2022-06-29 22:28:55', '2025-12-17 19:47:19', '4ZkX9bLd', '5424546'), + (28211, 280, 1502, 'not_attending', '2022-07-08 21:51:49', '2025-12-17 19:47:19', '4ZkX9bLd', '5424565'), + (28212, 280, 1504, 'attending', '2022-07-04 16:49:13', '2025-12-17 19:47:19', '4ZkX9bLd', '5426882'), + (28213, 280, 1505, 'attending', '2022-07-01 01:31:26', '2025-12-17 19:47:19', '4ZkX9bLd', '5427083'), + (28214, 280, 1507, 'not_attending', '2022-07-04 16:50:19', '2025-12-17 19:47:19', '4ZkX9bLd', '5433100'), + (28215, 280, 1508, 'attending', '2022-07-04 16:49:39', '2025-12-17 19:47:19', '4ZkX9bLd', '5433453'), + (28216, 280, 1511, 'not_attending', '2022-07-06 23:39:05', '2025-12-17 19:47:19', '4ZkX9bLd', '5437733'), + (28217, 280, 1513, 'not_attending', '2022-07-11 04:42:43', '2025-12-17 19:47:20', '4ZkX9bLd', '5441125'), + (28218, 280, 1514, 'attending', '2022-07-09 06:09:14', '2025-12-17 19:47:20', '4ZkX9bLd', '5441126'), + (28219, 280, 1515, 'attending', '2022-07-09 06:09:20', '2025-12-17 19:47:21', '4ZkX9bLd', '5441128'), + (28220, 280, 1516, 'attending', '2022-08-01 00:07:19', '2025-12-17 19:47:23', '4ZkX9bLd', '5441129'), + (28221, 280, 1517, 'not_attending', '2022-08-11 15:38:47', '2025-12-17 19:47:23', '4ZkX9bLd', '5441130'), + (28222, 280, 1518, 'attending', '2022-08-24 18:38:42', '2025-12-17 19:47:24', '4ZkX9bLd', '5441131'), + (28223, 280, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '4ZkX9bLd', '5441132'), + (28224, 280, 1520, 'not_attending', '2022-07-11 23:29:30', '2025-12-17 19:47:19', '4ZkX9bLd', '5441645'), + (28225, 280, 1522, 'attending', '2022-07-10 19:51:56', '2025-12-17 19:47:20', '4ZkX9bLd', '5442832'), + (28226, 280, 1524, 'maybe', '2022-07-11 21:22:10', '2025-12-17 19:47:19', '4ZkX9bLd', '5443300'), + (28227, 280, 1528, 'attending', '2022-07-13 23:05:18', '2025-12-17 19:47:20', '4ZkX9bLd', '5446643'), + (28228, 280, 1529, 'not_attending', '2022-07-15 16:09:27', '2025-12-17 19:47:19', '4ZkX9bLd', '5447079'), + (28229, 280, 1531, 'not_attending', '2022-07-16 18:48:44', '2025-12-17 19:47:19', '4ZkX9bLd', '5448756'), + (28230, 280, 1533, 'attending', '2022-07-30 19:29:21', '2025-12-17 19:47:21', '4ZkX9bLd', '5448758'), + (28231, 280, 1536, 'maybe', '2022-07-16 18:49:28', '2025-12-17 19:47:20', '4ZkX9bLd', '5449068'), + (28232, 280, 1539, 'not_attending', '2022-07-17 23:16:37', '2025-12-17 19:47:21', '4ZkX9bLd', '5449671'), + (28233, 280, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4ZkX9bLd', '5453325'), + (28234, 280, 1541, 'maybe', '2022-07-18 17:58:27', '2025-12-17 19:47:20', '4ZkX9bLd', '5453542'), + (28235, 280, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4ZkX9bLd', '5454516'), + (28236, 280, 1544, 'attending', '2022-09-13 01:06:38', '2025-12-17 19:47:11', '4ZkX9bLd', '5454517'), + (28237, 280, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4ZkX9bLd', '5454605'), + (28238, 280, 1546, 'not_attending', '2022-07-19 16:30:23', '2025-12-17 19:47:20', '4ZkX9bLd', '5454607'), + (28239, 280, 1547, 'not_attending', '2022-07-20 18:43:51', '2025-12-17 19:47:20', '4ZkX9bLd', '5454608'), + (28240, 280, 1550, 'maybe', '2022-07-22 00:23:44', '2025-12-17 19:47:20', '4ZkX9bLd', '5454803'), + (28241, 280, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4ZkX9bLd', '5455037'), + (28242, 280, 1557, 'not_attending', '2022-08-01 00:06:27', '2025-12-17 19:47:21', '4ZkX9bLd', '5458729'), + (28243, 280, 1558, 'not_attending', '2022-09-13 01:06:31', '2025-12-17 19:47:10', '4ZkX9bLd', '5458730'), + (28244, 280, 1559, 'not_attending', '2022-09-24 12:49:36', '2025-12-17 19:47:11', '4ZkX9bLd', '5458731'), + (28245, 280, 1561, 'not_attending', '2022-07-28 21:09:57', '2025-12-17 19:47:22', '4ZkX9bLd', '5461278'), + (28246, 280, 1562, 'not_attending', '2022-08-01 00:07:26', '2025-12-17 19:47:22', '4ZkX9bLd', '5469480'), + (28247, 280, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4ZkX9bLd', '5471073'), + (28248, 280, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4ZkX9bLd', '5474663'), + (28249, 280, 1567, 'attending', '2022-08-01 00:05:59', '2025-12-17 19:47:21', '4ZkX9bLd', '5477629'), + (28250, 280, 1568, 'not_attending', '2022-08-01 01:38:59', '2025-12-17 19:47:21', '4ZkX9bLd', '5480628'), + (28251, 280, 1569, 'maybe', '2022-08-01 17:27:49', '2025-12-17 19:47:21', '4ZkX9bLd', '5481507'), + (28252, 280, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4ZkX9bLd', '5482022'), + (28253, 280, 1572, 'not_attending', '2022-08-02 16:24:08', '2025-12-17 19:47:22', '4ZkX9bLd', '5482078'), + (28254, 280, 1575, 'not_attending', '2022-08-05 02:05:56', '2025-12-17 19:47:23', '4ZkX9bLd', '5482250'), + (28255, 280, 1577, 'attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4ZkX9bLd', '5482793'), + (28256, 280, 1579, 'not_attending', '2022-08-04 02:50:18', '2025-12-17 19:47:22', '4ZkX9bLd', '5486019'), + (28257, 280, 1580, 'attending', '2022-08-07 02:12:47', '2025-12-17 19:47:22', '4ZkX9bLd', '5488912'), + (28258, 280, 1581, 'not_attending', '2022-08-07 18:29:50', '2025-12-17 19:47:22', '4ZkX9bLd', '5490302'), + (28259, 280, 1586, 'attending', '2022-08-09 19:44:57', '2025-12-17 19:47:23', '4ZkX9bLd', '5492019'), + (28260, 280, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4ZkX9bLd', '5492192'), + (28261, 280, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4ZkX9bLd', '5493139'), + (28262, 280, 1589, 'attending', '2022-08-12 18:19:19', '2025-12-17 19:47:23', '4ZkX9bLd', '5493159'), + (28263, 280, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', '4ZkX9bLd', '5493200'), + (28264, 280, 1593, 'maybe', '2022-08-10 17:49:41', '2025-12-17 19:47:22', '4ZkX9bLd', '5494043'), + (28265, 280, 1595, 'not_attending', '2022-08-10 01:09:42', '2025-12-17 19:47:22', '4ZkX9bLd', '5495736'), + (28266, 280, 1603, 'not_attending', '2022-08-19 20:53:51', '2025-12-17 19:47:23', '4ZkX9bLd', '5497895'), + (28267, 280, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4ZkX9bLd', '5502188'), + (28268, 280, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4ZkX9bLd', '5505059'), + (28269, 280, 1609, 'attending', '2022-08-18 13:00:13', '2025-12-17 19:47:23', '4ZkX9bLd', '5506590'), + (28270, 280, 1610, 'attending', '2022-08-18 13:00:23', '2025-12-17 19:47:23', '4ZkX9bLd', '5506595'), + (28271, 280, 1615, 'not_attending', '2022-08-25 23:57:11', '2025-12-17 19:47:23', '4ZkX9bLd', '5509055'), + (28272, 280, 1618, 'attending', '2022-08-22 03:52:04', '2025-12-17 19:47:23', '4ZkX9bLd', '5512005'), + (28273, 280, 1619, 'not_attending', '2022-08-23 22:28:55', '2025-12-17 19:47:23', '4ZkX9bLd', '5512862'), + (28274, 280, 1620, 'not_attending', '2022-08-23 02:32:43', '2025-12-17 19:47:23', '4ZkX9bLd', '5513046'), + (28275, 280, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4ZkX9bLd', '5513985'), + (28276, 280, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', '4ZkX9bLd', '5519981'), + (28277, 280, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4ZkX9bLd', '5522550'), + (28278, 280, 1630, 'attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4ZkX9bLd', '5534683'), + (28279, 280, 1635, 'not_attending', '2022-09-13 01:06:35', '2025-12-17 19:47:10', '4ZkX9bLd', '5537735'), + (28280, 280, 1637, 'attending', '2022-08-31 03:33:20', '2025-12-17 19:47:24', '4ZkX9bLd', '5539591'), + (28281, 280, 1640, 'maybe', '2022-09-13 01:06:33', '2025-12-17 19:47:10', '4ZkX9bLd', '5540859'), + (28282, 280, 1643, 'not_attending', '2022-09-18 15:52:30', '2025-12-17 19:47:11', '4ZkX9bLd', '5545856'), + (28283, 280, 1644, 'attending', '2022-09-13 01:06:21', '2025-12-17 19:47:11', '4ZkX9bLd', '5545857'), + (28284, 280, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4ZkX9bLd', '5546619'), + (28285, 280, 1647, 'not_attending', '2022-09-13 21:43:18', '2025-12-17 19:47:11', '4ZkX9bLd', '5548660'), + (28286, 280, 1653, 'maybe', '2022-09-19 17:28:27', '2025-12-17 19:47:11', '4ZkX9bLd', '5554400'), + (28287, 280, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4ZkX9bLd', '5555245'), + (28288, 280, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4ZkX9bLd', '5557747'), + (28289, 280, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4ZkX9bLd', '5560255'), + (28290, 280, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4ZkX9bLd', '5562906'), + (28291, 280, 1665, 'attending', '2022-09-13 01:06:27', '2025-12-17 19:47:25', '4ZkX9bLd', '5563133'), + (28292, 280, 1667, 'attending', '2022-09-20 17:49:24', '2025-12-17 19:47:11', '4ZkX9bLd', '5563221'), + (28293, 280, 1668, 'not_attending', '2022-09-25 03:07:52', '2025-12-17 19:47:12', '4ZkX9bLd', '5563222'), + (28294, 280, 1673, 'not_attending', '2022-09-29 03:55:55', '2025-12-17 19:47:11', '4ZkX9bLd', '5592454'), + (28295, 280, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4ZkX9bLd', '5600604'), + (28296, 280, 1679, 'attending', '2022-10-03 17:41:06', '2025-12-17 19:47:12', '4ZkX9bLd', '5601099'), + (28297, 280, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4ZkX9bLd', '5605544'), + (28298, 280, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', '4ZkX9bLd', '5606737'), + (28299, 280, 1704, 'not_attending', '2022-10-06 22:18:38', '2025-12-17 19:47:12', '4ZkX9bLd', '5610508'), + (28300, 280, 1718, 'attending', '2022-10-18 23:10:16', '2025-12-17 19:47:12', '4ZkX9bLd', '5630907'), + (28301, 280, 1719, 'attending', '2022-10-05 17:32:40', '2025-12-17 19:47:12', '4ZkX9bLd', '5630958'), + (28302, 280, 1720, 'attending', '2022-10-05 17:32:44', '2025-12-17 19:47:12', '4ZkX9bLd', '5630959'), + (28303, 280, 1721, 'not_attending', '2022-10-05 17:32:47', '2025-12-17 19:47:13', '4ZkX9bLd', '5630960'), + (28304, 280, 1722, 'attending', '2022-10-14 21:49:45', '2025-12-17 19:47:14', '4ZkX9bLd', '5630961'), + (28305, 280, 1723, 'attending', '2022-10-31 17:47:03', '2025-12-17 19:47:15', '4ZkX9bLd', '5630962'), + (28306, 280, 1724, 'attending', '2022-10-31 17:47:07', '2025-12-17 19:47:15', '4ZkX9bLd', '5630966'), + (28307, 280, 1725, 'attending', '2022-10-31 17:47:11', '2025-12-17 19:47:16', '4ZkX9bLd', '5630967'), + (28308, 280, 1726, 'attending', '2022-11-14 03:48:21', '2025-12-17 19:47:16', '4ZkX9bLd', '5630968'), + (28309, 280, 1727, 'attending', '2022-11-29 18:44:09', '2025-12-17 19:47:16', '4ZkX9bLd', '5630969'), + (28310, 280, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4ZkX9bLd', '5635406'), + (28311, 280, 1736, 'not_attending', '2022-10-24 01:18:03', '2025-12-17 19:47:15', '4ZkX9bLd', '5638456'), + (28312, 280, 1737, 'not_attending', '2022-11-23 23:57:32', '2025-12-17 19:47:16', '4ZkX9bLd', '5638457'), + (28313, 280, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4ZkX9bLd', '5638765'), + (28314, 280, 1739, 'not_attending', '2022-10-21 20:51:48', '2025-12-17 19:47:14', '4ZkX9bLd', '5640097'), + (28315, 280, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4ZkX9bLd', '5640843'), + (28316, 280, 1742, 'not_attending', '2022-10-10 18:30:16', '2025-12-17 19:47:13', '4ZkX9bLd', '5641245'), + (28317, 280, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4ZkX9bLd', '5641521'), + (28318, 280, 1744, 'not_attending', '2022-11-23 18:37:24', '2025-12-17 19:47:16', '4ZkX9bLd', '5642818'), + (28319, 280, 1745, 'not_attending', '2022-10-11 17:40:25', '2025-12-17 19:47:12', '4ZkX9bLd', '5643088'), + (28320, 280, 1747, 'attending', '2022-10-12 20:43:59', '2025-12-17 19:47:13', '4ZkX9bLd', '5648009'), + (28321, 280, 1750, 'not_attending', '2022-11-04 12:10:55', '2025-12-17 19:47:15', '4ZkX9bLd', '5652365'), + (28322, 280, 1751, 'not_attending', '2022-10-16 17:45:57', '2025-12-17 19:47:13', '4ZkX9bLd', '5652395'), + (28323, 280, 1756, 'not_attending', '2022-10-19 03:36:43', '2025-12-17 19:47:13', '4ZkX9bLd', '5663338'), + (28324, 280, 1757, 'maybe', '2022-10-25 20:25:25', '2025-12-17 19:47:15', '4ZkX9bLd', '5668974'), + (28325, 280, 1761, 'not_attending', '2022-11-14 03:48:39', '2025-12-17 19:47:16', '4ZkX9bLd', '5670434'), + (28326, 280, 1762, 'attending', '2022-11-20 23:48:26', '2025-12-17 19:47:16', '4ZkX9bLd', '5670445'), + (28327, 280, 1763, 'not_attending', '2022-11-06 17:40:28', '2025-12-17 19:47:15', '4ZkX9bLd', '5670803'), + (28328, 280, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4ZkX9bLd', '5671637'), + (28329, 280, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4ZkX9bLd', '5672329'), + (28330, 280, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4ZkX9bLd', '5674057'), + (28331, 280, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4ZkX9bLd', '5674060'), + (28332, 280, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', '4ZkX9bLd', '5677461'), + (28333, 280, 1776, 'maybe', '2022-11-01 03:45:17', '2025-12-17 19:47:15', '4ZkX9bLd', '5691067'), + (28334, 280, 1780, 'attending', '2022-11-01 22:16:38', '2025-12-17 19:47:15', '4ZkX9bLd', '5696082'), + (28335, 280, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4ZkX9bLd', '5698046'), + (28336, 280, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4ZkX9bLd', '5699760'), + (28337, 280, 1790, 'not_attending', '2022-11-12 19:51:54', '2025-12-17 19:47:15', '4ZkX9bLd', '5727424'), + (28338, 280, 1793, 'maybe', '2022-11-24 04:31:21', '2025-12-17 19:47:16', '4ZkX9bLd', '5736365'), + (28339, 280, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4ZkX9bLd', '5741601'), + (28340, 280, 1796, 'not_attending', '2022-11-29 18:44:04', '2025-12-17 19:47:16', '4ZkX9bLd', '5756755'), + (28341, 280, 1797, 'not_attending', '2022-12-07 13:30:20', '2025-12-17 19:47:17', '4ZkX9bLd', '5757486'), + (28342, 280, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4ZkX9bLd', '5763458'), + (28343, 280, 1806, 'not_attending', '2023-01-21 23:40:15', '2025-12-17 19:47:05', '4ZkX9bLd', '5764676'), + (28344, 280, 1808, 'not_attending', '2023-03-04 18:36:14', '2025-12-17 19:47:08', '4ZkX9bLd', '5764678'), + (28345, 280, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4ZkX9bLd', '5774172'), + (28346, 280, 1826, 'not_attending', '2022-12-07 13:31:05', '2025-12-17 19:47:04', '4ZkX9bLd', '5776768'), + (28347, 280, 1828, 'not_attending', '2022-11-29 18:44:02', '2025-12-17 19:47:16', '4ZkX9bLd', '5778865'), + (28348, 280, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '4ZkX9bLd', '5818247'), + (28349, 280, 1834, 'attending', '2022-12-07 13:30:41', '2025-12-17 19:47:17', '4ZkX9bLd', '5819470'), + (28350, 280, 1835, 'not_attending', '2022-12-07 13:30:33', '2025-12-17 19:47:05', '4ZkX9bLd', '5819471'), + (28351, 280, 1837, 'not_attending', '2022-12-07 13:30:03', '2025-12-17 19:47:16', '4ZkX9bLd', '5820146'), + (28352, 280, 1839, 'not_attending', '2022-12-19 18:41:34', '2025-12-17 19:47:04', '4ZkX9bLd', '5821920'), + (28353, 280, 1841, 'attending', '2022-12-26 21:49:46', '2025-12-17 19:47:05', '4ZkX9bLd', '5827665'), + (28354, 280, 1842, 'attending', '2022-12-12 01:47:23', '2025-12-17 19:47:04', '4ZkX9bLd', '5827739'), + (28355, 280, 1843, 'not_attending', '2022-12-18 01:22:10', '2025-12-17 19:47:04', '4ZkX9bLd', '5844304'), + (28356, 280, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4ZkX9bLd', '5844306'), + (28357, 280, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4ZkX9bLd', '5850159'), + (28358, 280, 1848, 'not_attending', '2023-01-04 02:25:08', '2025-12-17 19:47:05', '4ZkX9bLd', '5852466'), + (28359, 280, 1849, 'maybe', '2023-01-04 02:25:03', '2025-12-17 19:47:05', '4ZkX9bLd', '5852467'), + (28360, 280, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4ZkX9bLd', '5858999'), + (28361, 280, 1852, 'not_attending', '2023-01-09 14:35:33', '2025-12-17 19:47:05', '4ZkX9bLd', '5869898'), + (28362, 280, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4ZkX9bLd', '5871984'), + (28363, 280, 1859, 'not_attending', '2023-01-21 16:25:03', '2025-12-17 19:47:05', '4ZkX9bLd', '5876234'), + (28364, 280, 1861, 'not_attending', '2023-01-15 16:00:52', '2025-12-17 19:47:05', '4ZkX9bLd', '5876354'), + (28365, 280, 1864, 'attending', '2023-01-17 10:58:41', '2025-12-17 19:47:05', '4ZkX9bLd', '5879675'), + (28366, 280, 1865, 'attending', '2023-01-24 21:34:02', '2025-12-17 19:47:06', '4ZkX9bLd', '5879676'), + (28367, 280, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '4ZkX9bLd', '5880939'), + (28368, 280, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4ZkX9bLd', '5880940'), + (28369, 280, 1868, 'not_attending', '2023-02-21 23:43:45', '2025-12-17 19:47:07', '4ZkX9bLd', '5880942'), + (28370, 280, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4ZkX9bLd', '5880943'), + (28371, 280, 1873, 'not_attending', '2023-01-20 13:03:37', '2025-12-17 19:47:05', '4ZkX9bLd', '5885295'), + (28372, 280, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4ZkX9bLd', '5887890'), + (28373, 280, 1875, 'not_attending', '2023-01-28 01:04:53', '2025-12-17 19:47:06', '4ZkX9bLd', '5887908'), + (28374, 280, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4ZkX9bLd', '5888598'), + (28375, 280, 1878, 'attending', '2023-01-24 19:17:42', '2025-12-17 19:47:07', '4ZkX9bLd', '5893000'), + (28376, 280, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4ZkX9bLd', '5893260'), + (28377, 280, 1882, 'attending', '2023-01-30 23:23:20', '2025-12-17 19:47:06', '4ZkX9bLd', '5898447'), + (28378, 280, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4ZkX9bLd', '5899826'), + (28379, 280, 1885, 'not_attending', '2023-02-11 03:35:27', '2025-12-17 19:47:08', '4ZkX9bLd', '5899928'), + (28380, 280, 1886, 'not_attending', '2023-02-25 21:07:57', '2025-12-17 19:47:09', '4ZkX9bLd', '5899930'), + (28381, 280, 1888, 'not_attending', '2023-02-04 04:16:11', '2025-12-17 19:47:07', '4ZkX9bLd', '5900197'), + (28382, 280, 1889, 'not_attending', '2023-02-01 18:25:16', '2025-12-17 19:47:07', '4ZkX9bLd', '5900199'), + (28383, 280, 1890, 'attending', '2023-02-02 18:06:03', '2025-12-17 19:47:08', '4ZkX9bLd', '5900200'), + (28384, 280, 1891, 'not_attending', '2023-03-14 20:57:27', '2025-12-17 19:46:56', '4ZkX9bLd', '5900202'), + (28385, 280, 1892, 'not_attending', '2023-03-12 19:25:04', '2025-12-17 19:46:56', '4ZkX9bLd', '5900203'), + (28386, 280, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4ZkX9bLd', '5901108'), + (28387, 280, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4ZkX9bLd', '5901126'), + (28388, 280, 1897, 'not_attending', '2023-02-07 01:57:03', '2025-12-17 19:47:07', '4ZkX9bLd', '5901128'), + (28389, 280, 1898, 'not_attending', '2023-02-01 00:01:55', '2025-12-17 19:47:06', '4ZkX9bLd', '5901263'), + (28390, 280, 1899, 'not_attending', '2023-02-07 01:57:11', '2025-12-17 19:47:07', '4ZkX9bLd', '5901323'), + (28391, 280, 1908, 'not_attending', '2023-02-05 16:06:15', '2025-12-17 19:47:07', '4ZkX9bLd', '5905018'), + (28392, 280, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4ZkX9bLd', '5909655'), + (28393, 280, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4ZkX9bLd', '5910522'), + (28394, 280, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4ZkX9bLd', '5910526'), + (28395, 280, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4ZkX9bLd', '5910528'), + (28396, 280, 1922, 'not_attending', '2023-02-13 14:16:07', '2025-12-17 19:47:07', '4ZkX9bLd', '5916219'), + (28397, 280, 1927, 'not_attending', '2023-03-17 04:15:17', '2025-12-17 19:47:10', '4ZkX9bLd', '5932621'), + (28398, 280, 1929, 'maybe', '2023-02-18 19:38:06', '2025-12-17 19:47:07', '4ZkX9bLd', '5932628'), + (28399, 280, 1933, 'attending', '2023-02-20 21:16:17', '2025-12-17 19:47:08', '4ZkX9bLd', '5936234'), + (28400, 280, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4ZkX9bLd', '5958351'), + (28401, 280, 1936, 'not_attending', '2023-02-23 17:46:47', '2025-12-17 19:47:08', '4ZkX9bLd', '5959397'), + (28402, 280, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4ZkX9bLd', '5959751'), + (28403, 280, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4ZkX9bLd', '5959755'), + (28404, 280, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4ZkX9bLd', '5960055'), + (28405, 280, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4ZkX9bLd', '5961684'), + (28406, 280, 1942, 'not_attending', '2023-02-26 03:52:49', '2025-12-17 19:47:08', '4ZkX9bLd', '5962085'), + (28407, 280, 1943, 'not_attending', '2023-03-04 23:19:42', '2025-12-17 19:47:10', '4ZkX9bLd', '5962091'), + (28408, 280, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '4ZkX9bLd', '5962132'), + (28409, 280, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '4ZkX9bLd', '5962133'), + (28410, 280, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4ZkX9bLd', '5962134'), + (28411, 280, 1947, 'not_attending', '2023-03-06 04:58:35', '2025-12-17 19:47:09', '4ZkX9bLd', '5962233'), + (28412, 280, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4ZkX9bLd', '5962317'), + (28413, 280, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4ZkX9bLd', '5962318'), + (28414, 280, 1951, 'not_attending', '2023-03-05 18:07:21', '2025-12-17 19:46:56', '4ZkX9bLd', '5965933'), + (28415, 280, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4ZkX9bLd', '5967014'), + (28416, 280, 1955, 'not_attending', '2023-03-14 20:57:31', '2025-12-17 19:46:57', '4ZkX9bLd', '5972529'), + (28417, 280, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '4ZkX9bLd', '5972763'), + (28418, 280, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4ZkX9bLd', '5972815'), + (28419, 280, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4ZkX9bLd', '5974016'), + (28420, 280, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4ZkX9bLd', '5981515'), + (28421, 280, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4ZkX9bLd', '5993516'), + (28422, 280, 1972, 'not_attending', '2023-03-14 20:58:06', '2025-12-17 19:46:56', '4ZkX9bLd', '5993776'), + (28423, 280, 1973, 'maybe', '2023-03-14 20:57:51', '2025-12-17 19:46:56', '4ZkX9bLd', '5993777'), + (28424, 280, 1974, 'maybe', '2023-03-13 17:56:06', '2025-12-17 19:46:57', '4ZkX9bLd', '5993778'), + (28425, 280, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4ZkX9bLd', '5998939'), + (28426, 280, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4ZkX9bLd', '6028191'), + (28427, 280, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4ZkX9bLd', '6040066'), + (28428, 280, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4ZkX9bLd', '6042717'), + (28429, 280, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4ZkX9bLd', '6044838'), + (28430, 280, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4ZkX9bLd', '6044839'), + (28431, 280, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZkX9bLd', '6045684'), + (28432, 280, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4ZkX9bLd', '6050104'), + (28433, 280, 1998, 'maybe', '2023-04-05 14:39:04', '2025-12-17 19:46:59', '4ZkX9bLd', '6052056'), + (28434, 280, 1999, 'not_attending', '2023-04-19 13:15:00', '2025-12-17 19:47:00', '4ZkX9bLd', '6052057'), + (28435, 280, 2002, 'not_attending', '2023-04-19 13:17:27', '2025-12-17 19:47:01', '4ZkX9bLd', '6052605'), + (28436, 280, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4ZkX9bLd', '6053195'), + (28437, 280, 2006, 'not_attending', '2023-04-07 18:13:46', '2025-12-17 19:46:59', '4ZkX9bLd', '6053198'), + (28438, 280, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4ZkX9bLd', '6056085'), + (28439, 280, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4ZkX9bLd', '6056916'), + (28440, 280, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4ZkX9bLd', '6059290'), + (28441, 280, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4ZkX9bLd', '6060328'), + (28442, 280, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4ZkX9bLd', '6061037'), + (28443, 280, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4ZkX9bLd', '6061039'), + (28444, 280, 2022, 'maybe', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4ZkX9bLd', '6067245'), + (28445, 280, 2025, 'not_attending', '2023-04-19 13:15:48', '2025-12-17 19:47:00', '4ZkX9bLd', '6067457'), + (28446, 280, 2026, 'not_attending', '2023-04-19 13:15:22', '2025-12-17 19:47:01', '4ZkX9bLd', '6068078'), + (28447, 280, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4ZkX9bLd', '6068094'), + (28448, 280, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4ZkX9bLd', '6068252'), + (28449, 280, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4ZkX9bLd', '6068253'), + (28450, 280, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4ZkX9bLd', '6068254'), + (28451, 280, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4ZkX9bLd', '6068280'), + (28452, 280, 2032, 'attending', '2023-06-01 19:44:28', '2025-12-17 19:47:04', '4ZkX9bLd', '6068281'), + (28453, 280, 2033, 'maybe', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4ZkX9bLd', '6069093'), + (28454, 280, 2036, 'attending', '2023-04-21 03:05:44', '2025-12-17 19:47:01', '4ZkX9bLd', '6070780'), + (28455, 280, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4ZkX9bLd', '6072528'), + (28456, 280, 2046, 'not_attending', '2023-05-11 04:59:27', '2025-12-17 19:47:02', '4ZkX9bLd', '6076020'), + (28457, 280, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4ZkX9bLd', '6079840'), + (28458, 280, 2050, 'not_attending', '2023-05-01 15:04:39', '2025-12-17 19:47:02', '4ZkX9bLd', '6080489'), + (28459, 280, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4ZkX9bLd', '6083398'), + (28460, 280, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4ZkX9bLd', '6093504'), + (28461, 280, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4ZkX9bLd', '6097414'), + (28462, 280, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4ZkX9bLd', '6097442'), + (28463, 280, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4ZkX9bLd', '6097684'), + (28464, 280, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4ZkX9bLd', '6098762'), + (28465, 280, 2064, 'not_attending', '2023-06-19 00:50:38', '2025-12-17 19:46:50', '4ZkX9bLd', '6099988'), + (28466, 280, 2065, 'not_attending', '2023-06-12 12:44:48', '2025-12-17 19:46:49', '4ZkX9bLd', '6101169'), + (28467, 280, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4ZkX9bLd', '6101361'), + (28468, 280, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4ZkX9bLd', '6101362'), + (28469, 280, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4ZkX9bLd', '6103752'), + (28470, 280, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4ZkX9bLd', '6107314'), + (28471, 280, 2078, 'maybe', '2023-05-21 13:34:45', '2025-12-17 19:47:03', '4ZkX9bLd', '6114163'), + (28472, 280, 2080, 'not_attending', '2023-05-27 17:17:28', '2025-12-17 19:47:04', '4ZkX9bLd', '6114677'), + (28473, 280, 2086, 'not_attending', '2023-05-26 16:00:21', '2025-12-17 19:47:04', '4ZkX9bLd', '6119877'), + (28474, 280, 2087, 'not_attending', '2023-05-30 19:21:41', '2025-12-17 19:47:04', '4ZkX9bLd', '6120034'), + (28475, 280, 2089, 'not_attending', '2023-06-05 03:57:17', '2025-12-17 19:47:04', '4ZkX9bLd', '6125227'), + (28476, 280, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4ZkX9bLd', '6136733'), + (28477, 280, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4ZkX9bLd', '6137989'), + (28478, 280, 2097, 'attending', '2023-06-07 16:07:19', '2025-12-17 19:47:04', '4ZkX9bLd', '6139059'), + (28479, 280, 2104, 'attending', '2023-06-18 23:14:58', '2025-12-17 19:46:50', '4ZkX9bLd', '6149499'), + (28480, 280, 2105, 'not_attending', '2023-06-19 20:38:59', '2025-12-17 19:46:50', '4ZkX9bLd', '6149551'), + (28481, 280, 2106, 'not_attending', '2023-06-20 18:09:50', '2025-12-17 19:46:50', '4ZkX9bLd', '6150479'), + (28482, 280, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4ZkX9bLd', '6150864'), + (28483, 280, 2110, 'not_attending', '2023-06-20 18:09:58', '2025-12-17 19:46:50', '4ZkX9bLd', '6155491'), + (28484, 280, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4ZkX9bLd', '6164417'), + (28485, 280, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4ZkX9bLd', '6166388'), + (28486, 280, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4ZkX9bLd', '6176439'), + (28487, 280, 2122, 'not_attending', '2023-07-03 00:36:11', '2025-12-17 19:46:51', '4ZkX9bLd', '6176476'), + (28488, 280, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '4ZkX9bLd', '6182410'), + (28489, 280, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4ZkX9bLd', '6185812'), + (28490, 280, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4ZkX9bLd', '6187651'), + (28491, 280, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4ZkX9bLd', '6187963'), + (28492, 280, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4ZkX9bLd', '6187964'), + (28493, 280, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4ZkX9bLd', '6187966'), + (28494, 280, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4ZkX9bLd', '6187967'), + (28495, 280, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4ZkX9bLd', '6187969'), + (28496, 280, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4ZkX9bLd', '6334878'), + (28497, 280, 2147, 'not_attending', '2023-07-16 20:11:24', '2025-12-17 19:46:52', '4ZkX9bLd', '6335666'), + (28498, 280, 2148, 'not_attending', '2023-07-21 15:03:28', '2025-12-17 19:46:53', '4ZkX9bLd', '6335667'), + (28499, 280, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4ZkX9bLd', '6337236'), + (28500, 280, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4ZkX9bLd', '6337970'), + (28501, 280, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4ZkX9bLd', '6338308'), + (28502, 280, 2159, 'attending', '2023-07-21 15:03:07', '2025-12-17 19:46:53', '4ZkX9bLd', '6338355'), + (28503, 280, 2160, 'attending', '2023-07-29 18:19:22', '2025-12-17 19:46:54', '4ZkX9bLd', '6338358'), + (28504, 280, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4ZkX9bLd', '6340845'), + (28505, 280, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4ZkX9bLd', '6341710'), + (28506, 280, 2164, 'not_attending', '2023-07-24 22:20:25', '2025-12-17 19:46:54', '4ZkX9bLd', '6341797'), + (28507, 280, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4ZkX9bLd', '6342044'), + (28508, 280, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4ZkX9bLd', '6342298'), + (28509, 280, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '4ZkX9bLd', '6343294'), + (28510, 280, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4ZkX9bLd', '6347034'), + (28511, 280, 2177, 'not_attending', '2023-08-04 20:15:32', '2025-12-17 19:46:55', '4ZkX9bLd', '6347053'), + (28512, 280, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4ZkX9bLd', '6347056'), + (28513, 280, 2180, 'not_attending', '2023-07-27 15:21:00', '2025-12-17 19:46:54', '4ZkX9bLd', '6348788'), + (28514, 280, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4ZkX9bLd', '6353830'), + (28515, 280, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4ZkX9bLd', '6353831'), + (28516, 280, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4ZkX9bLd', '6357867'), + (28517, 280, 2190, 'attending', '2023-08-03 12:28:01', '2025-12-17 19:46:55', '4ZkX9bLd', '6357892'), + (28518, 280, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4ZkX9bLd', '6358652'), + (28519, 280, 2200, 'attending', '2023-08-10 02:24:49', '2025-12-17 19:46:55', '4ZkX9bLd', '6359850'), + (28520, 280, 2204, 'not_attending', '2023-08-13 20:55:06', '2025-12-17 19:46:55', '4ZkX9bLd', '6361542'), + (28521, 280, 2206, 'not_attending', '2023-08-08 20:18:06', '2025-12-17 19:46:55', '4ZkX9bLd', '6361659'), + (28522, 280, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4ZkX9bLd', '6361709'), + (28523, 280, 2209, 'maybe', '2023-08-23 14:03:27', '2025-12-17 19:46:55', '4ZkX9bLd', '6361710'), + (28524, 280, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4ZkX9bLd', '6361711'), + (28525, 280, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4ZkX9bLd', '6361712'), + (28526, 280, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4ZkX9bLd', '6361713'), + (28527, 280, 2214, 'attending', '2023-08-10 02:25:06', '2025-12-17 19:46:55', '4ZkX9bLd', '6363218'), + (28528, 280, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4ZkX9bLd', '6382573'), + (28529, 280, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4ZkX9bLd', '6388604'), + (28530, 280, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4ZkX9bLd', '6394629'), + (28531, 280, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4ZkX9bLd', '6394631'), + (28532, 280, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4ZkX9bLd', '6440863'), + (28533, 280, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4ZkX9bLd', '6445440'), + (28534, 280, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4ZkX9bLd', '6453951'), + (28535, 280, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4ZkX9bLd', '6461696'), + (28536, 280, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4ZkX9bLd', '6462129'), + (28537, 280, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4ZkX9bLd', '6463218'), + (28538, 280, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4ZkX9bLd', '6472181'), + (28539, 280, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4ZkX9bLd', '6482693'), + (28540, 280, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4ZkX9bLd', '6484200'), + (28541, 280, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '4ZkX9bLd', '6484680'), + (28542, 280, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4ZkX9bLd', '6507741'), + (28543, 280, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4ZkX9bLd', '6514659'), + (28544, 280, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4ZkX9bLd', '6514660'), + (28545, 280, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4ZkX9bLd', '6519103'), + (28546, 280, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4ZkX9bLd', '6535681'), + (28547, 280, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4ZkX9bLd', '6584747'), + (28548, 280, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4ZkX9bLd', '6587097'), + (28549, 280, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4ZkX9bLd', '6609022'), + (28550, 280, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4ZkX9bLd', '6632757'), + (28551, 280, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4ZkX9bLd', '6644187'), + (28552, 280, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4ZkX9bLd', '6648951'), + (28553, 280, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4ZkX9bLd', '6648952'), + (28554, 280, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4ZkX9bLd', '6655401'), + (28555, 280, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4ZkX9bLd', '6661585'), + (28556, 280, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4ZkX9bLd', '6661588'), + (28557, 280, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4ZkX9bLd', '6661589'), + (28558, 280, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4ZkX9bLd', '6699906'), + (28559, 280, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4ZkX9bLd', '6699913'), + (28560, 280, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4ZkX9bLd', '6701109'), + (28561, 280, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4ZkX9bLd', '6705219'), + (28562, 280, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4ZkX9bLd', '6710153'), + (28563, 280, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4ZkX9bLd', '6711552'), + (28564, 280, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4ZkX9bLd', '6711553'), + (28565, 280, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4ZkX9bLd', '6722688'), + (28566, 280, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4ZkX9bLd', '6730620'), + (28567, 280, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4ZkX9bLd', '6730642'), + (28568, 280, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4ZkX9bLd', '6740364'), + (28569, 280, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4ZkX9bLd', '6743829'), + (28570, 280, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4ZkX9bLd', '7030380'), + (28571, 280, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4ZkX9bLd', '7033677'), + (28572, 280, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4ZkX9bLd', '7035415'), + (28573, 280, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4ZkX9bLd', '7044715'), + (28574, 280, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4ZkX9bLd', '7050318'), + (28575, 280, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4ZkX9bLd', '7050319'), + (28576, 280, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4ZkX9bLd', '7050322'), + (28577, 280, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4ZkX9bLd', '7057804'), + (28578, 280, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '4ZkX9bLd', '7059866'), + (28579, 280, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4ZkX9bLd', '7072824'), + (28580, 280, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4ZkX9bLd', '7074348'), + (28581, 280, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4ZkX9bLd', '7074364'), + (28582, 280, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4ZkX9bLd', '7089267'), + (28583, 280, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4ZkX9bLd', '7098747'), + (28584, 280, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4ZkX9bLd', '7113468'), + (28585, 280, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4ZkX9bLd', '7114856'), + (28586, 280, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4ZkX9bLd', '7114951'), + (28587, 280, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4ZkX9bLd', '7114955'), + (28588, 280, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4ZkX9bLd', '7114956'), + (28589, 280, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4ZkX9bLd', '7114957'), + (28590, 280, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4ZkX9bLd', '7153615'), + (28591, 280, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4ZkX9bLd', '7159484'), + (28592, 280, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4ZkX9bLd', '7178446'), + (28593, 280, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4ZkX9bLd', '7220467'), + (28594, 280, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4ZkX9bLd', '7240354'), + (28595, 280, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4ZkX9bLd', '7251633'), + (28596, 280, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4ZkX9bLd', '7263048'), + (28597, 280, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4ZkX9bLd', '7302674'), + (28598, 280, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4ZkX9bLd', '7324073'), + (28599, 280, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4ZkX9bLd', '7324074'), + (28600, 280, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4ZkX9bLd', '7324075'), + (28601, 280, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4ZkX9bLd', '7324078'), + (28602, 280, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4ZkX9bLd', '7324082'), + (28603, 280, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4ZkX9bLd', '7331457'), + (28604, 280, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4ZkX9bLd', '7356752'), + (28605, 280, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '4ZkX9bLd', '7363643'), + (28606, 280, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4ZkX9bLd', '7368606'), + (28607, 280, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4ZkX9bLd', '7397462'), + (28608, 280, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4ZkX9bLd', '7424275'), + (28609, 280, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4ZkX9bLd', '7424276'), + (28610, 280, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4ZkX9bLd', '7432751'), + (28611, 280, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4ZkX9bLd', '7432752'), + (28612, 280, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4ZkX9bLd', '7432753'), + (28613, 280, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4ZkX9bLd', '7432754'), + (28614, 280, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4ZkX9bLd', '7432755'), + (28615, 280, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4ZkX9bLd', '7432756'), + (28616, 280, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4ZkX9bLd', '7432758'), + (28617, 280, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4ZkX9bLd', '7432759'), + (28618, 280, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4ZkX9bLd', '7433834'), + (28619, 280, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4ZkX9bLd', '7470197'), + (28620, 280, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4ZkX9bLd', '7685613'), + (28621, 280, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4ZkX9bLd', '7688194'), + (28622, 280, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4ZkX9bLd', '7688196'), + (28623, 280, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4ZkX9bLd', '7688289'), + (28624, 281, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mqEaZO5m', '5195095'), + (28625, 281, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mqEaZO5m', '5247467'), + (28626, 281, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mqEaZO5m', '5260800'), + (28627, 281, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mqEaZO5m', '5269930'), + (28628, 281, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mqEaZO5m', '5271448'), + (28629, 281, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'mqEaZO5m', '5271449'), + (28630, 281, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mqEaZO5m', '5276469'), + (28631, 281, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mqEaZO5m', '5278159'), + (28632, 281, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mqEaZO5m', '5363695'), + (28633, 281, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mqEaZO5m', '5365960'), + (28634, 281, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mqEaZO5m', '5368973'), + (28635, 281, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mqEaZO5m', '5378247'), + (28636, 281, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mqEaZO5m', '5389605'), + (28637, 281, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mqEaZO5m', '5397265'), + (28638, 281, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mqEaZO5m', '6045684'), + (28639, 282, 262, 'attending', '2021-06-29 21:35:18', '2025-12-17 19:47:38', 'w4WeBkqm', '3149493'), + (28640, 282, 746, 'not_attending', '2021-07-10 00:10:18', '2025-12-17 19:47:39', 'w4WeBkqm', '3680626'), + (28641, 282, 870, 'attending', '2021-06-30 15:16:24', '2025-12-17 19:47:39', 'w4WeBkqm', '4136937'), + (28642, 282, 871, 'not_attending', '2021-07-11 12:37:49', '2025-12-17 19:47:39', 'w4WeBkqm', '4136938'), + (28643, 282, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'w4WeBkqm', '4136947'), + (28644, 282, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4WeBkqm', '4210314'), + (28645, 282, 887, 'not_attending', '2021-07-14 23:17:00', '2025-12-17 19:47:39', 'w4WeBkqm', '4225444'), + (28646, 282, 891, 'maybe', '2021-06-30 15:16:44', '2025-12-17 19:47:38', 'w4WeBkqm', '4229417'), + (28647, 282, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'w4WeBkqm', '4229418'), + (28648, 282, 899, 'not_attending', '2021-07-05 23:30:58', '2025-12-17 19:47:39', 'w4WeBkqm', '4239259'), + (28649, 282, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4WeBkqm', '4240316'), + (28650, 282, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4WeBkqm', '4240317'), + (28651, 282, 902, 'not_attending', '2021-08-07 22:51:19', '2025-12-17 19:47:41', 'w4WeBkqm', '4240318'), + (28652, 282, 903, 'attending', '2021-08-09 19:24:19', '2025-12-17 19:47:42', 'w4WeBkqm', '4240320'), + (28653, 282, 905, 'attending', '2021-07-05 18:57:16', '2025-12-17 19:47:39', 'w4WeBkqm', '4250163'), + (28654, 282, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4WeBkqm', '4275957'), + (28655, 282, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4WeBkqm', '4277819'), + (28656, 282, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4WeBkqm', '4301723'), + (28657, 282, 934, 'maybe', '2021-08-03 14:37:47', '2025-12-17 19:47:41', 'w4WeBkqm', '4302093'), + (28658, 282, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4WeBkqm', '4304151'), + (28659, 282, 952, 'maybe', '2021-08-04 23:39:54', '2025-12-17 19:47:41', 'w4WeBkqm', '4318286'), + (28660, 282, 954, 'maybe', '2021-08-09 19:23:55', '2025-12-17 19:47:41', 'w4WeBkqm', '4331303'), + (28661, 282, 967, 'maybe', '2021-08-12 01:20:04', '2025-12-17 19:47:42', 'w4WeBkqm', '4356164'), + (28662, 282, 971, 'not_attending', '2021-09-08 23:15:33', '2025-12-17 19:47:43', 'w4WeBkqm', '4356801'), + (28663, 282, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4WeBkqm', '4366186'), + (28664, 282, 974, 'not_attending', '2021-08-28 20:43:38', '2025-12-17 19:47:43', 'w4WeBkqm', '4366187'), + (28665, 282, 981, 'maybe', '2021-08-25 11:49:46', '2025-12-17 19:47:42', 'w4WeBkqm', '4387305'), + (28666, 282, 989, 'not_attending', '2021-09-09 13:33:27', '2025-12-17 19:47:43', 'w4WeBkqm', '4414282'), + (28667, 282, 990, 'attending', '2021-09-02 15:16:15', '2025-12-17 19:47:43', 'w4WeBkqm', '4420735'), + (28668, 282, 991, 'attending', '2021-09-05 13:50:19', '2025-12-17 19:47:43', 'w4WeBkqm', '4420738'), + (28669, 282, 992, 'not_attending', '2021-09-25 23:51:51', '2025-12-17 19:47:34', 'w4WeBkqm', '4420739'), + (28670, 282, 993, 'not_attending', '2021-10-16 23:32:42', '2025-12-17 19:47:34', 'w4WeBkqm', '4420741'), + (28671, 282, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'w4WeBkqm', '4420744'), + (28672, 282, 996, 'not_attending', '2021-10-16 23:32:50', '2025-12-17 19:47:35', 'w4WeBkqm', '4420747'), + (28673, 282, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'w4WeBkqm', '4420748'), + (28674, 282, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4WeBkqm', '4420749'), + (28675, 282, 999, 'not_attending', '2021-09-01 00:49:12', '2025-12-17 19:47:43', 'w4WeBkqm', '4421150'), + (28676, 282, 1013, 'maybe', '2021-09-05 13:49:16', '2025-12-17 19:47:43', 'w4WeBkqm', '4438817'), + (28677, 282, 1014, 'not_attending', '2021-09-06 22:16:00', '2025-12-17 19:47:43', 'w4WeBkqm', '4439233'), + (28678, 282, 1016, 'not_attending', '2021-09-09 13:33:08', '2025-12-17 19:47:43', 'w4WeBkqm', '4441271'), + (28679, 282, 1020, 'maybe', '2021-09-09 13:33:38', '2025-12-17 19:47:43', 'w4WeBkqm', '4451787'), + (28680, 282, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4WeBkqm', '4461883'), + (28681, 282, 1034, 'not_attending', '2021-09-17 16:28:31', '2025-12-17 19:47:43', 'w4WeBkqm', '4486265'), + (28682, 282, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4WeBkqm', '4508342'), + (28683, 282, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4WeBkqm', '4568602'), + (28684, 282, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4WeBkqm', '4585962'), + (28685, 282, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'w4WeBkqm', '4596356'), + (28686, 282, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4WeBkqm', '4598860'), + (28687, 282, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4WeBkqm', '4598861'), + (28688, 282, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'w4WeBkqm', '4602797'), + (28689, 282, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'w4WeBkqm', '4637896'), + (28690, 282, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'w4WeBkqm', '4642994'), + (28691, 282, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'w4WeBkqm', '4642995'), + (28692, 282, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'w4WeBkqm', '4642996'), + (28693, 282, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'w4WeBkqm', '4642997'), + (28694, 282, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'w4WeBkqm', '4645687'), + (28695, 282, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'w4WeBkqm', '4645698'), + (28696, 282, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'w4WeBkqm', '4645704'), + (28697, 282, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'w4WeBkqm', '4645705'), + (28698, 282, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'w4WeBkqm', '4668385'), + (28699, 282, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'w4WeBkqm', '4694407'), + (28700, 282, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'w4WeBkqm', '4706262'), + (28701, 282, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4WeBkqm', '4736497'), + (28702, 282, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4WeBkqm', '4736499'), + (28703, 282, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4WeBkqm', '4736500'), + (28704, 282, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4WeBkqm', '4736503'), + (28705, 282, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4WeBkqm', '4736504'), + (28706, 282, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'w4WeBkqm', '4746789'), + (28707, 282, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'w4WeBkqm', '4753929'), + (28708, 282, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4WeBkqm', '5038850'), + (28709, 282, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4WeBkqm', '5045826'), + (28710, 282, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4WeBkqm', '5132533'), + (28711, 282, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4WeBkqm', '5186582'), + (28712, 282, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4WeBkqm', '5186583'), + (28713, 282, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4WeBkqm', '5186585'), + (28714, 282, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4WeBkqm', '5190437'), + (28715, 282, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4WeBkqm', '5215989'), + (28716, 282, 1518, 'attending', '2022-08-31 13:17:52', '2025-12-17 19:47:24', 'w4WeBkqm', '5441131'), + (28717, 282, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'w4WeBkqm', '5441132'), + (28718, 282, 1544, 'attending', '2022-09-13 23:11:58', '2025-12-17 19:47:11', 'w4WeBkqm', '5454517'), + (28719, 282, 1558, 'maybe', '2022-09-13 23:11:32', '2025-12-17 19:47:10', 'w4WeBkqm', '5458730'), + (28720, 282, 1561, 'not_attending', '2022-08-11 04:53:05', '2025-12-17 19:47:22', 'w4WeBkqm', '5461278'), + (28721, 282, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'w4WeBkqm', '5488912'), + (28722, 282, 1591, 'attending', '2022-08-11 01:40:04', '2025-12-17 19:47:22', 'w4WeBkqm', '5493764'), + (28723, 282, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'w4WeBkqm', '5502188'), + (28724, 282, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'w4WeBkqm', '5505059'), + (28725, 282, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'w4WeBkqm', '5509055'), + (28726, 282, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'w4WeBkqm', '5512862'), + (28727, 282, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'w4WeBkqm', '5513985'), + (28728, 282, 1626, 'maybe', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'w4WeBkqm', '5519981'), + (28729, 282, 1628, 'attending', '2022-08-27 17:09:03', '2025-12-17 19:47:23', 'w4WeBkqm', '5522500'), + (28730, 282, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'w4WeBkqm', '5522550'), + (28731, 282, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'w4WeBkqm', '5534683'), + (28732, 282, 1635, 'maybe', '2022-09-13 23:11:51', '2025-12-17 19:47:10', 'w4WeBkqm', '5537735'), + (28733, 282, 1640, 'maybe', '2022-09-13 23:11:41', '2025-12-17 19:47:10', 'w4WeBkqm', '5540859'), + (28734, 282, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'w4WeBkqm', '5546619'), + (28735, 282, 1647, 'attending', '2022-09-13 23:11:16', '2025-12-17 19:47:11', 'w4WeBkqm', '5548660'), + (28736, 282, 1648, 'maybe', '2022-09-09 18:41:33', '2025-12-17 19:47:24', 'w4WeBkqm', '5548974'), + (28737, 282, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'w4WeBkqm', '5555245'), + (28738, 282, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'w4WeBkqm', '5557747'), + (28739, 282, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'w4WeBkqm', '5560255'), + (28740, 282, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'w4WeBkqm', '5562906'), + (28741, 282, 1667, 'not_attending', '2022-09-24 07:52:42', '2025-12-17 19:47:11', 'w4WeBkqm', '5563221'), + (28742, 282, 1674, 'attending', '2022-09-25 18:11:49', '2025-12-17 19:47:12', 'w4WeBkqm', '5593112'), + (28743, 282, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'w4WeBkqm', '5600604'), + (28744, 282, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'w4WeBkqm', '5605544'), + (28745, 282, 1697, 'not_attending', '2022-09-25 18:11:32', '2025-12-17 19:47:12', 'w4WeBkqm', '5605560'), + (28746, 282, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'w4WeBkqm', '5606737'), + (28747, 282, 1713, 'maybe', '2022-10-17 22:00:52', '2025-12-17 19:47:13', 'w4WeBkqm', '5622108'), + (28748, 282, 1719, 'maybe', '2022-10-05 19:43:52', '2025-12-17 19:47:12', 'w4WeBkqm', '5630958'), + (28749, 282, 1720, 'not_attending', '2022-10-05 19:44:00', '2025-12-17 19:47:12', 'w4WeBkqm', '5630959'), + (28750, 282, 1721, 'maybe', '2022-10-05 19:44:05', '2025-12-17 19:47:13', 'w4WeBkqm', '5630960'), + (28751, 282, 1722, 'maybe', '2022-10-05 19:44:10', '2025-12-17 19:47:14', 'w4WeBkqm', '5630961'), + (28752, 282, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'w4WeBkqm', '5630962'), + (28753, 282, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'w4WeBkqm', '5630966'), + (28754, 282, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'w4WeBkqm', '5630967'), + (28755, 282, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'w4WeBkqm', '5630968'), + (28756, 282, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'w4WeBkqm', '5635406'), + (28757, 282, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'w4WeBkqm', '5638765'), + (28758, 282, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'w4WeBkqm', '5640097'), + (28759, 282, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'w4WeBkqm', '5640843'), + (28760, 282, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'w4WeBkqm', '5641521'), + (28761, 282, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'w4WeBkqm', '5642818'), + (28762, 282, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'w4WeBkqm', '5652395'), + (28763, 282, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'w4WeBkqm', '5670445'), + (28764, 282, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'w4WeBkqm', '5671637'), + (28765, 282, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'w4WeBkqm', '5672329'), + (28766, 282, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'w4WeBkqm', '5674057'), + (28767, 282, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'w4WeBkqm', '5674060'), + (28768, 282, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'w4WeBkqm', '5677461'), + (28769, 282, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'w4WeBkqm', '5698046'), + (28770, 282, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'w4WeBkqm', '5699760'), + (28771, 282, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'w4WeBkqm', '5741601'), + (28772, 282, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'w4WeBkqm', '5763458'), + (28773, 282, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'w4WeBkqm', '5774172'), + (28774, 282, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'w4WeBkqm', '5818247'), + (28775, 282, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'w4WeBkqm', '5819471'), + (28776, 282, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'w4WeBkqm', '5827739'), + (28777, 282, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'w4WeBkqm', '5844306'), + (28778, 282, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'w4WeBkqm', '5850159'), + (28779, 282, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'w4WeBkqm', '5858999'), + (28780, 282, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'w4WeBkqm', '5871984'), + (28781, 282, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'w4WeBkqm', '5876354'), + (28782, 282, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'w4WeBkqm', '5880939'), + (28783, 282, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'w4WeBkqm', '5880940'), + (28784, 282, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'w4WeBkqm', '5880942'), + (28785, 282, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'w4WeBkqm', '5880943'), + (28786, 282, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'w4WeBkqm', '5887890'), + (28787, 282, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'w4WeBkqm', '5888598'), + (28788, 282, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'w4WeBkqm', '5893260'), + (28789, 282, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'w4WeBkqm', '5899826'), + (28790, 282, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'w4WeBkqm', '5900199'), + (28791, 282, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'w4WeBkqm', '5900200'), + (28792, 282, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'w4WeBkqm', '5900202'), + (28793, 282, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'w4WeBkqm', '5900203'), + (28794, 282, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'w4WeBkqm', '5901108'), + (28795, 282, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'w4WeBkqm', '5901126'), + (28796, 282, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'w4WeBkqm', '5909655'), + (28797, 282, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'w4WeBkqm', '5910522'), + (28798, 282, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'w4WeBkqm', '5910526'), + (28799, 282, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'w4WeBkqm', '5910528'), + (28800, 282, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'w4WeBkqm', '5916219'), + (28801, 282, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'w4WeBkqm', '5936234'), + (28802, 282, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'w4WeBkqm', '5958351'), + (28803, 282, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'w4WeBkqm', '5959751'), + (28804, 282, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'w4WeBkqm', '5959755'), + (28805, 282, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'w4WeBkqm', '5960055'), + (28806, 282, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'w4WeBkqm', '5961684'), + (28807, 282, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'w4WeBkqm', '5962132'), + (28808, 282, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'w4WeBkqm', '5962133'), + (28809, 282, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'w4WeBkqm', '5962134'), + (28810, 282, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'w4WeBkqm', '5962317'), + (28811, 282, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'w4WeBkqm', '5962318'), + (28812, 282, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'w4WeBkqm', '5965933'), + (28813, 282, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'w4WeBkqm', '5967014'), + (28814, 282, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'w4WeBkqm', '5972815'), + (28815, 282, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'w4WeBkqm', '5974016'), + (28816, 282, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'w4WeBkqm', '5981515'), + (28817, 282, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'w4WeBkqm', '5993516'), + (28818, 282, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'w4WeBkqm', '5998939'), + (28819, 282, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'w4WeBkqm', '6028191'), + (28820, 282, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'w4WeBkqm', '6040066'), + (28821, 282, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'w4WeBkqm', '6042717'), + (28822, 282, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'w4WeBkqm', '6044838'), + (28823, 282, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'w4WeBkqm', '6044839'), + (28824, 282, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WeBkqm', '6045684'), + (28825, 282, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'w4WeBkqm', '6050104'), + (28826, 282, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'w4WeBkqm', '6053195'), + (28827, 282, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'w4WeBkqm', '6053198'), + (28828, 282, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'w4WeBkqm', '6056085'), + (28829, 282, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'w4WeBkqm', '6056916'), + (28830, 282, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'w4WeBkqm', '6059290'), + (28831, 282, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'w4WeBkqm', '6060328'), + (28832, 282, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'w4WeBkqm', '6061037'), + (28833, 282, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'w4WeBkqm', '6061039'), + (28834, 282, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'w4WeBkqm', '6067245'), + (28835, 282, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'w4WeBkqm', '6068094'), + (28836, 282, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'w4WeBkqm', '6068252'), + (28837, 282, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'w4WeBkqm', '6068253'), + (28838, 282, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'w4WeBkqm', '6068254'), + (28839, 282, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'w4WeBkqm', '6068280'), + (28840, 282, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'w4WeBkqm', '6069093'), + (28841, 282, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'w4WeBkqm', '6072528'), + (28842, 282, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'w4WeBkqm', '6079840'), + (28843, 282, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'w4WeBkqm', '6083398'), + (28844, 282, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'w4WeBkqm', '6093504'), + (28845, 282, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'w4WeBkqm', '6097414'), + (28846, 282, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'w4WeBkqm', '6097442'), + (28847, 282, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'w4WeBkqm', '6097684'), + (28848, 282, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'w4WeBkqm', '6098762'), + (28849, 282, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'w4WeBkqm', '6101361'), + (28850, 282, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'w4WeBkqm', '6101362'), + (28851, 282, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'w4WeBkqm', '6107314'), + (28852, 282, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'w4WeBkqm', '6120034'), + (28853, 282, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'w4WeBkqm', '6136733'), + (28854, 282, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'w4WeBkqm', '6137989'), + (28855, 282, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'w4WeBkqm', '6150864'), + (28856, 282, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'w4WeBkqm', '6155491'), + (28857, 282, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'w4WeBkqm', '6164417'), + (28858, 282, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'w4WeBkqm', '6166388'), + (28859, 282, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'w4WeBkqm', '6176439'), + (28860, 282, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'w4WeBkqm', '6182410'), + (28861, 282, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'w4WeBkqm', '6185812'), + (28862, 282, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'w4WeBkqm', '6187651'), + (28863, 282, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'w4WeBkqm', '6187963'), + (28864, 282, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'w4WeBkqm', '6187964'), + (28865, 282, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'w4WeBkqm', '6187966'), + (28866, 282, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'w4WeBkqm', '6187967'), + (28867, 282, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'w4WeBkqm', '6187969'), + (28868, 282, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'w4WeBkqm', '6334878'), + (28869, 282, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'w4WeBkqm', '6337236'), + (28870, 282, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'w4WeBkqm', '6337970'), + (28871, 282, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'w4WeBkqm', '6338308'), + (28872, 282, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'w4WeBkqm', '6341710'), + (28873, 282, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'w4WeBkqm', '6342044'), + (28874, 282, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'w4WeBkqm', '6342298'), + (28875, 282, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'w4WeBkqm', '6343294'), + (28876, 282, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'w4WeBkqm', '6347034'), + (28877, 282, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'w4WeBkqm', '6347056'), + (28878, 282, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'w4WeBkqm', '6353830'), + (28879, 282, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'w4WeBkqm', '6353831'), + (28880, 282, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'w4WeBkqm', '6357867'), + (28881, 282, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'w4WeBkqm', '6358652'), + (28882, 282, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'w4WeBkqm', '6361709'), + (28883, 282, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'w4WeBkqm', '6361710'), + (28884, 282, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'w4WeBkqm', '6361711'), + (28885, 282, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'w4WeBkqm', '6361712'), + (28886, 282, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'w4WeBkqm', '6361713'), + (28887, 282, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'w4WeBkqm', '6382573'), + (28888, 282, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'w4WeBkqm', '6388604'), + (28889, 282, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'w4WeBkqm', '6394629'), + (28890, 282, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'w4WeBkqm', '6394631'), + (28891, 282, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'w4WeBkqm', '6440863'), + (28892, 282, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'w4WeBkqm', '6445440'), + (28893, 282, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'w4WeBkqm', '6453951'), + (28894, 282, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'w4WeBkqm', '6461696'), + (28895, 282, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'w4WeBkqm', '6462129'), + (28896, 282, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'w4WeBkqm', '6463218'), + (28897, 282, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'w4WeBkqm', '6472181'), + (28898, 282, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'w4WeBkqm', '6482693'), + (28899, 282, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'w4WeBkqm', '6484200'), + (28900, 282, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'w4WeBkqm', '6484680'), + (28901, 282, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'w4WeBkqm', '6507741'), + (28902, 282, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'w4WeBkqm', '6514659'), + (28903, 282, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'w4WeBkqm', '6514660'), + (28904, 282, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'w4WeBkqm', '6519103'), + (28905, 282, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'w4WeBkqm', '6535681'), + (28906, 282, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'w4WeBkqm', '6584747'), + (28907, 282, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'w4WeBkqm', '6587097'), + (28908, 282, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'w4WeBkqm', '6609022'), + (28909, 282, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'w4WeBkqm', '6632757'), + (28910, 282, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'w4WeBkqm', '6644187'), + (28911, 282, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'w4WeBkqm', '6648951'), + (28912, 282, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'w4WeBkqm', '6648952'), + (28913, 282, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'w4WeBkqm', '6655401'), + (28914, 282, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'w4WeBkqm', '6661585'), + (28915, 282, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'w4WeBkqm', '6661588'), + (28916, 282, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'w4WeBkqm', '6661589'), + (28917, 282, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'w4WeBkqm', '6699906'), + (28918, 282, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'w4WeBkqm', '6699913'), + (28919, 282, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'w4WeBkqm', '6701109'), + (28920, 282, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'w4WeBkqm', '6705219'), + (28921, 282, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'w4WeBkqm', '6710153'), + (28922, 282, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'w4WeBkqm', '6711552'), + (28923, 282, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'w4WeBkqm', '6711553'), + (28924, 282, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'w4WeBkqm', '6722688'), + (28925, 282, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'w4WeBkqm', '6730620'), + (28926, 282, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'w4WeBkqm', '6740364'), + (28927, 282, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'w4WeBkqm', '6743829'), + (28928, 282, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'w4WeBkqm', '7030380'), + (28929, 282, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'w4WeBkqm', '7033677'), + (28930, 282, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'w4WeBkqm', '7044715'), + (28931, 282, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'w4WeBkqm', '7050318'), + (28932, 282, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'w4WeBkqm', '7050319'), + (28933, 282, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'w4WeBkqm', '7050322'), + (28934, 282, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'w4WeBkqm', '7057804'), + (28935, 282, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'w4WeBkqm', '7072824'), + (28936, 282, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'w4WeBkqm', '7074348'), + (28937, 282, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'w4WeBkqm', '7074364'), + (28938, 282, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'w4WeBkqm', '7089267'), + (28939, 282, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'w4WeBkqm', '7098747'), + (28940, 282, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'w4WeBkqm', '7113468'), + (28941, 282, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'w4WeBkqm', '7114856'), + (28942, 282, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'w4WeBkqm', '7114951'), + (28943, 282, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'w4WeBkqm', '7114955'), + (28944, 282, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'w4WeBkqm', '7114956'), + (28945, 282, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'w4WeBkqm', '7114957'), + (28946, 282, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'w4WeBkqm', '7159484'), + (28947, 282, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'w4WeBkqm', '7178446'), + (28948, 282, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'w4WeBkqm', '7220467'), + (28949, 282, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'w4WeBkqm', '7240354'), + (28950, 282, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'w4WeBkqm', '7251633'), + (28951, 282, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'w4WeBkqm', '7324073'), + (28952, 282, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'w4WeBkqm', '7324074'), + (28953, 282, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'w4WeBkqm', '7324075'), + (28954, 282, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'w4WeBkqm', '7324078'), + (28955, 282, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'w4WeBkqm', '7324082'), + (28956, 282, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'w4WeBkqm', '7331457'), + (28957, 282, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'w4WeBkqm', '7363643'), + (28958, 282, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'w4WeBkqm', '7368606'), + (28959, 282, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'w4WeBkqm', '7397462'), + (28960, 282, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'w4WeBkqm', '7424275'), + (28961, 282, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'w4WeBkqm', '7432751'), + (28962, 282, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'w4WeBkqm', '7432752'), + (28963, 282, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'w4WeBkqm', '7432753'), + (28964, 282, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'w4WeBkqm', '7432754'), + (28965, 282, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'w4WeBkqm', '7432755'), + (28966, 282, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'w4WeBkqm', '7432756'), + (28967, 282, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'w4WeBkqm', '7432758'), + (28968, 282, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'w4WeBkqm', '7432759'), + (28969, 282, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'w4WeBkqm', '7433834'), + (28970, 282, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'w4WeBkqm', '7470197'), + (28971, 282, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'w4WeBkqm', '7685613'), + (28972, 282, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'w4WeBkqm', '7688194'), + (28973, 282, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'w4WeBkqm', '7688196'), + (28974, 282, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'w4WeBkqm', '7688289'), + (28975, 282, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'w4WeBkqm', '7692763'), + (28976, 282, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'w4WeBkqm', '7697552'), + (28977, 282, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'w4WeBkqm', '7699878'), + (28978, 282, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'w4WeBkqm', '7704043'), + (28979, 282, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'w4WeBkqm', '7712467'), + (28980, 282, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'w4WeBkqm', '7713585'), + (28981, 282, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'w4WeBkqm', '7713586'), + (28982, 282, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'w4WeBkqm', '7738518'), + (28983, 282, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'w4WeBkqm', '7750636'), + (28984, 282, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'w4WeBkqm', '7796540'), + (28985, 282, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'w4WeBkqm', '7796541'), + (28986, 282, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'w4WeBkqm', '7796542'), + (28987, 282, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'w4WeBkqm', '7825913'), + (28988, 282, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'w4WeBkqm', '7826209'), + (28989, 282, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'w4WeBkqm', '7834742'), + (28990, 282, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'w4WeBkqm', '7842108'), + (28991, 282, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'w4WeBkqm', '7842902'), + (28992, 282, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'w4WeBkqm', '7842903'), + (28993, 282, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'w4WeBkqm', '7842904'), + (28994, 282, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'w4WeBkqm', '7842905'), + (28995, 282, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'w4WeBkqm', '7855719'), + (28996, 282, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'w4WeBkqm', '7860683'), + (28997, 282, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'w4WeBkqm', '7860684'), + (28998, 282, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'w4WeBkqm', '7866095'), + (28999, 282, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'w4WeBkqm', '7869170'), + (29000, 282, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'w4WeBkqm', '7869188'), + (29001, 282, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'w4WeBkqm', '7869201'), + (29002, 282, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'w4WeBkqm', '7877465'), + (29003, 282, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'w4WeBkqm', '7888250'), + (29004, 282, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'w4WeBkqm', '7904777'), + (29005, 282, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'w4WeBkqm', '8349164'), + (29006, 282, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'w4WeBkqm', '8349545'), + (29007, 282, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'w4WeBkqm', '8368028'), + (29008, 282, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'w4WeBkqm', '8368029'), + (29009, 282, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'w4WeBkqm', '8388462'), + (29010, 282, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'w4WeBkqm', '8400273'), + (29011, 282, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'w4WeBkqm', '8400275'), + (29012, 282, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'w4WeBkqm', '8400276'), + (29013, 282, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'w4WeBkqm', '8404977'), + (29014, 282, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'w4WeBkqm', '8430783'), + (29015, 282, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'w4WeBkqm', '8430784'), + (29016, 282, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'w4WeBkqm', '8430799'), + (29017, 282, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'w4WeBkqm', '8430800'), + (29018, 282, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'w4WeBkqm', '8430801'), + (29019, 282, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'w4WeBkqm', '8438709'), + (29020, 282, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'w4WeBkqm', '8457738'), + (29021, 282, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'w4WeBkqm', '8459566'), + (29022, 282, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'w4WeBkqm', '8459567'), + (29023, 282, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'w4WeBkqm', '8461032'), + (29024, 282, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'w4WeBkqm', '8477877'), + (29025, 282, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'w4WeBkqm', '8485688'), + (29026, 282, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'w4WeBkqm', '8490587'), + (29027, 282, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'w4WeBkqm', '8493552'), + (29028, 282, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'w4WeBkqm', '8493553'), + (29029, 282, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'w4WeBkqm', '8493554'), + (29030, 282, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'w4WeBkqm', '8493555'), + (29031, 282, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'w4WeBkqm', '8493556'), + (29032, 282, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'w4WeBkqm', '8493557'), + (29033, 282, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'w4WeBkqm', '8493558'), + (29034, 282, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'w4WeBkqm', '8493559'), + (29035, 282, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'w4WeBkqm', '8493560'), + (29036, 282, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'w4WeBkqm', '8493561'), + (29037, 282, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'w4WeBkqm', '8493572'), + (29038, 282, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'w4WeBkqm', '8540725'), + (29039, 282, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'w4WeBkqm', '8555421'), + (29040, 283, 260, 'maybe', '2021-06-15 21:32:58', '2025-12-17 19:47:48', 'v4D0GyL4', '3149491'), + (29041, 283, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'v4D0GyL4', '3149493'), + (29042, 283, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'v4D0GyL4', '3236448'), + (29043, 283, 395, 'maybe', '2021-06-09 03:39:35', '2025-12-17 19:47:47', 'v4D0GyL4', '3236450'), + (29044, 283, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'v4D0GyL4', '3974109'), + (29045, 283, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'v4D0GyL4', '3975311'), + (29046, 283, 828, 'not_attending', '2021-06-12 22:45:35', '2025-12-17 19:47:47', 'v4D0GyL4', '3975312'), + (29047, 283, 838, 'maybe', '2021-06-09 15:36:46', '2025-12-17 19:47:47', 'v4D0GyL4', '3994992'), + (29048, 283, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4D0GyL4', '4014338'), + (29049, 283, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'v4D0GyL4', '4021848'), + (29050, 283, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4D0GyL4', '4136744'), + (29051, 283, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'v4D0GyL4', '4136937'), + (29052, 283, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'v4D0GyL4', '4136938'), + (29053, 283, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'v4D0GyL4', '4136947'), + (29054, 283, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4D0GyL4', '4225444'), + (29055, 283, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'v4D0GyL4', '4229417'), + (29056, 283, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'v4D0GyL4', '4229418'), + (29057, 283, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'v4D0GyL4', '4239259'), + (29058, 283, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4D0GyL4', '4250163'), + (29059, 283, 1009, 'attending', '2021-10-11 14:46:19', '2025-12-17 19:47:34', 'v4D0GyL4', '4438811'), + (29060, 283, 1077, 'maybe', '2021-10-13 15:38:58', '2025-12-17 19:47:34', 'v4D0GyL4', '4540903'), + (29061, 283, 1082, 'attending', '2021-10-15 21:20:28', '2025-12-17 19:47:35', 'v4D0GyL4', '4566762'), + (29062, 283, 1086, 'attending', '2021-10-15 21:11:46', '2025-12-17 19:47:34', 'v4D0GyL4', '4568602'), + (29063, 283, 1153, 'maybe', '2022-01-19 02:52:10', '2025-12-17 19:47:32', 'v4D0GyL4', '4708707'), + (29064, 283, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'v4D0GyL4', '4736497'), + (29065, 283, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'v4D0GyL4', '4736499'), + (29066, 283, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'v4D0GyL4', '4736500'), + (29067, 283, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'v4D0GyL4', '4736503'), + (29068, 283, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'v4D0GyL4', '4736504'), + (29069, 283, 1196, 'attending', '2022-01-20 01:12:37', '2025-12-17 19:47:32', 'v4D0GyL4', '4765583'), + (29070, 283, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4D0GyL4', '5038850'), + (29071, 283, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4D0GyL4', '5045826'), + (29072, 283, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4D0GyL4', '5132533'), + (29073, 283, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'v4D0GyL4', '5186582'), + (29074, 283, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'v4D0GyL4', '5186583'), + (29075, 283, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'v4D0GyL4', '5186585'), + (29076, 283, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4D0GyL4', '5190437'), + (29077, 283, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4D0GyL4', '5215989'), + (29078, 283, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4D0GyL4', '6045684'), + (29079, 284, 665, 'not_attending', '2021-09-04 22:05:32', '2025-12-17 19:47:43', 'AYzjRPe4', '3547143'), + (29080, 284, 951, 'attending', '2021-08-29 19:58:57', '2025-12-17 19:47:43', 'AYzjRPe4', '4315731'), + (29081, 284, 971, 'attending', '2021-09-08 16:44:46', '2025-12-17 19:47:43', 'AYzjRPe4', '4356801'), + (29082, 284, 987, 'attending', '2021-09-01 15:17:55', '2025-12-17 19:47:43', 'AYzjRPe4', '4402634'), + (29083, 284, 989, 'attending', '2021-09-10 19:39:10', '2025-12-17 19:47:43', 'AYzjRPe4', '4414282'), + (29084, 284, 990, 'not_attending', '2021-09-04 22:05:47', '2025-12-17 19:47:43', 'AYzjRPe4', '4420735'), + (29085, 284, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'AYzjRPe4', '4420738'), + (29086, 284, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'AYzjRPe4', '4420739'), + (29087, 284, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'AYzjRPe4', '4420741'), + (29088, 284, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'AYzjRPe4', '4420744'), + (29089, 284, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'AYzjRPe4', '4420747'), + (29090, 284, 1002, 'attending', '2021-08-30 17:39:13', '2025-12-17 19:47:43', 'AYzjRPe4', '4424932'), + (29091, 284, 1017, 'not_attending', '2021-09-06 23:25:25', '2025-12-17 19:47:43', 'AYzjRPe4', '4441822'), + (29092, 284, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AYzjRPe4', '4461883'), + (29093, 284, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AYzjRPe4', '4508342'), + (29094, 284, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AYzjRPe4', '4568602'), + (29095, 284, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AYzjRPe4', '6045684'), + (29096, 285, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ArngEwYA', '7904777'), + (29097, 285, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ArngEwYA', '8368028'), + (29098, 285, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ArngEwYA', '8368029'), + (29099, 285, 3140, 'not_attending', '2025-05-21 04:07:31', '2025-12-17 19:46:21', 'ArngEwYA', '8380399'), + (29100, 285, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', 'ArngEwYA', '8387505'), + (29101, 285, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ArngEwYA', '8388462'), + (29102, 285, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ArngEwYA', '8400273'), + (29103, 285, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ArngEwYA', '8400274'), + (29104, 285, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ArngEwYA', '8400275'), + (29105, 285, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ArngEwYA', '8400276'), + (29106, 285, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ArngEwYA', '8404977'), + (29107, 285, 3171, 'not_attending', '2025-06-13 18:00:16', '2025-12-17 19:46:15', 'ArngEwYA', '8409765'), + (29108, 285, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'ArngEwYA', '8430783'), + (29109, 285, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ArngEwYA', '8430784'), + (29110, 285, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ArngEwYA', '8430799'), + (29111, 285, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ArngEwYA', '8430800'), + (29112, 285, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ArngEwYA', '8430801'), + (29113, 285, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ArngEwYA', '8438709'), + (29114, 285, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ArngEwYA', '8457738'), + (29115, 285, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ArngEwYA', '8459566'), + (29116, 285, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ArngEwYA', '8459567'), + (29117, 285, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ArngEwYA', '8461032'), + (29118, 285, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ArngEwYA', '8477877'), + (29119, 285, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ArngEwYA', '8485688'), + (29120, 285, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ArngEwYA', '8490587'), + (29121, 285, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ArngEwYA', '8493552'), + (29122, 285, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'ArngEwYA', '8493553'), + (29123, 285, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ArngEwYA', '8493554'), + (29124, 285, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ArngEwYA', '8493555'), + (29125, 285, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ArngEwYA', '8493556'), + (29126, 285, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ArngEwYA', '8493557'), + (29127, 285, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ArngEwYA', '8493558'), + (29128, 285, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ArngEwYA', '8493559'), + (29129, 285, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ArngEwYA', '8493560'), + (29130, 285, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'ArngEwYA', '8493561'), + (29131, 285, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ArngEwYA', '8493572'), + (29132, 285, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'ArngEwYA', '8529058'), + (29133, 286, 1241, 'maybe', '2022-03-23 23:08:13', '2025-12-17 19:47:25', 'dw8QYw0m', '5052240'), + (29134, 286, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'dw8QYw0m', '5186585'), + (29135, 286, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dw8QYw0m', '5195095'), + (29136, 286, 1285, 'attending', '2022-03-25 21:50:56', '2025-12-17 19:47:25', 'dw8QYw0m', '5196763'), + (29137, 286, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dw8QYw0m', '5215989'), + (29138, 286, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dw8QYw0m', '5223686'), + (29139, 286, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dw8QYw0m', '5227432'), + (29140, 286, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dw8QYw0m', '5247467'), + (29141, 286, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dw8QYw0m', '5260800'), + (29142, 286, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dw8QYw0m', '5269930'), + (29143, 286, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dw8QYw0m', '5271448'), + (29144, 286, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dw8QYw0m', '5271449'), + (29145, 286, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dw8QYw0m', '5276469'), + (29146, 286, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dw8QYw0m', '5278159'), + (29147, 286, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dw8QYw0m', '6045684'), + (29148, 287, 622, 'attending', '2021-03-08 16:49:20', '2025-12-17 19:47:51', 'Pm7NE5ld', '3517816'), + (29149, 287, 638, 'attending', '2021-04-03 20:27:10', '2025-12-17 19:47:44', 'Pm7NE5ld', '3536632'), + (29150, 287, 639, 'maybe', '2021-03-20 18:28:23', '2025-12-17 19:47:51', 'Pm7NE5ld', '3536656'), + (29151, 287, 641, 'attending', '2021-04-02 11:59:29', '2025-12-17 19:47:44', 'Pm7NE5ld', '3539916'), + (29152, 287, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Pm7NE5ld', '3539918'), + (29153, 287, 644, 'attending', '2021-04-24 16:23:19', '2025-12-17 19:47:45', 'Pm7NE5ld', '3539919'), + (29154, 287, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm7NE5ld', '3539920'), + (29155, 287, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm7NE5ld', '3539921'), + (29156, 287, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Pm7NE5ld', '3539922'), + (29157, 287, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Pm7NE5ld', '3539923'), + (29158, 287, 649, 'attending', '2021-03-08 16:49:48', '2025-12-17 19:47:51', 'Pm7NE5ld', '3539927'), + (29159, 287, 650, 'not_attending', '2021-03-27 21:01:00', '2025-12-17 19:47:44', 'Pm7NE5ld', '3539928'), + (29160, 287, 654, 'attending', '2021-03-08 13:20:34', '2025-12-17 19:47:51', 'Pm7NE5ld', '3546990'), + (29161, 287, 692, 'attending', '2021-03-13 23:08:29', '2025-12-17 19:47:51', 'Pm7NE5ld', '3561995'), + (29162, 287, 705, 'not_attending', '2021-04-02 11:59:20', '2025-12-17 19:47:44', 'Pm7NE5ld', '3581895'), + (29163, 287, 706, 'attending', '2021-03-27 14:39:00', '2025-12-17 19:47:45', 'Pm7NE5ld', '3582734'), + (29164, 287, 707, 'maybe', '2021-04-25 16:33:38', '2025-12-17 19:47:46', 'Pm7NE5ld', '3583262'), + (29165, 287, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Pm7NE5ld', '3619523'), + (29166, 287, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7NE5ld', '3661369'), + (29167, 287, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7NE5ld', '3674262'), + (29168, 287, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm7NE5ld', '3677402'), + (29169, 287, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7NE5ld', '3730212'), + (29170, 287, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7NE5ld', '3793156'), + (29171, 287, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7NE5ld', '3975311'), + (29172, 287, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7NE5ld', '3994992'), + (29173, 287, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7NE5ld', '6045684'), + (29174, 288, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlOQvPX4', '6045684'), + (29175, 289, 850, 'attending', '2021-08-25 18:09:28', '2025-12-17 19:47:42', 'nm6wWxgA', '4015722'), + (29176, 289, 950, 'not_attending', '2021-08-21 07:35:16', '2025-12-17 19:47:42', 'nm6wWxgA', '4315730'), + (29177, 289, 965, 'maybe', '2021-08-19 03:08:59', '2025-12-17 19:47:42', 'nm6wWxgA', '4353703'), + (29178, 289, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nm6wWxgA', '4356801'), + (29179, 289, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'nm6wWxgA', '4366186'), + (29180, 289, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'nm6wWxgA', '4366187'), + (29181, 289, 977, 'attending', '2021-08-20 18:57:52', '2025-12-17 19:47:42', 'nm6wWxgA', '4378479'), + (29182, 289, 980, 'not_attending', '2021-08-21 18:48:36', '2025-12-17 19:47:42', 'nm6wWxgA', '4380358'), + (29183, 289, 981, 'maybe', '2021-08-27 21:53:02', '2025-12-17 19:47:42', 'nm6wWxgA', '4387305'), + (29184, 289, 983, 'attending', '2021-08-20 22:43:11', '2025-12-17 19:47:42', 'nm6wWxgA', '4390051'), + (29185, 289, 990, 'not_attending', '2021-08-30 23:33:28', '2025-12-17 19:47:43', 'nm6wWxgA', '4420735'), + (29186, 289, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nm6wWxgA', '4420738'), + (29187, 289, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'nm6wWxgA', '4420739'), + (29188, 289, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm6wWxgA', '4420741'), + (29189, 289, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nm6wWxgA', '4420744'), + (29190, 289, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nm6wWxgA', '4420747'), + (29191, 289, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nm6wWxgA', '4420748'), + (29192, 289, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nm6wWxgA', '4420749'), + (29193, 289, 1015, 'maybe', '2021-09-10 16:17:22', '2025-12-17 19:47:43', 'nm6wWxgA', '4440800'), + (29194, 289, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nm6wWxgA', '4461883'), + (29195, 289, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nm6wWxgA', '4508342'), + (29196, 289, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nm6wWxgA', '4568602'), + (29197, 289, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nm6wWxgA', '4572153'), + (29198, 289, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'nm6wWxgA', '4585962'), + (29199, 289, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'nm6wWxgA', '4596356'), + (29200, 289, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nm6wWxgA', '4598860'), + (29201, 289, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'nm6wWxgA', '4598861'), + (29202, 289, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'nm6wWxgA', '4602797'), + (29203, 289, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'nm6wWxgA', '4637896'), + (29204, 289, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nm6wWxgA', '4642994'), + (29205, 289, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'nm6wWxgA', '4642995'), + (29206, 289, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'nm6wWxgA', '4642996'), + (29207, 289, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'nm6wWxgA', '4642997'), + (29208, 289, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'nm6wWxgA', '4645687'), + (29209, 289, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nm6wWxgA', '4645698'), + (29210, 289, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'nm6wWxgA', '4645704'), + (29211, 289, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'nm6wWxgA', '4645705'), + (29212, 289, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nm6wWxgA', '4668385'), + (29213, 289, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nm6wWxgA', '4694407'), + (29214, 289, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm6wWxgA', '4736497'), + (29215, 289, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nm6wWxgA', '4736499'), + (29216, 289, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm6wWxgA', '4736500'), + (29217, 289, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nm6wWxgA', '4736503'), + (29218, 289, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nm6wWxgA', '4736504'), + (29219, 289, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nm6wWxgA', '4746789'), + (29220, 289, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'nm6wWxgA', '4753929'), + (29221, 289, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nm6wWxgA', '5038850'), + (29222, 289, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nm6wWxgA', '5045826'), + (29223, 289, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm6wWxgA', '5132533'), + (29224, 289, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'nm6wWxgA', '5186582'), + (29225, 289, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nm6wWxgA', '5186583'), + (29226, 289, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nm6wWxgA', '5186585'), + (29227, 289, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'nm6wWxgA', '5190437'), + (29228, 289, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nm6wWxgA', '5195095'), + (29229, 289, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm6wWxgA', '5215989'), + (29230, 289, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm6wWxgA', '5223686'), + (29231, 289, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nm6wWxgA', '5247467'), + (29232, 289, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nm6wWxgA', '5260800'), + (29233, 289, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nm6wWxgA', '5269930'), + (29234, 289, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nm6wWxgA', '5271448'), + (29235, 289, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'nm6wWxgA', '5271449'), + (29236, 289, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm6wWxgA', '5278159'), + (29237, 289, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'nm6wWxgA', '5363695'), + (29238, 289, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm6wWxgA', '5365960'), + (29239, 289, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm6wWxgA', '5378247'), + (29240, 289, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'nm6wWxgA', '5389605'), + (29241, 289, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nm6wWxgA', '5397265'), + (29242, 289, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm6wWxgA', '5404786'), + (29243, 289, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm6wWxgA', '5405203'), + (29244, 289, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm6wWxgA', '5412550'), + (29245, 289, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm6wWxgA', '5415046'), + (29246, 289, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm6wWxgA', '5422086'), + (29247, 289, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nm6wWxgA', '5422406'), + (29248, 289, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm6wWxgA', '5424565'), + (29249, 289, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm6wWxgA', '5426882'), + (29250, 289, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm6wWxgA', '5441125'), + (29251, 289, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm6wWxgA', '5441126'), + (29252, 289, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nm6wWxgA', '5441128'), + (29253, 289, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm6wWxgA', '5441131'), + (29254, 289, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm6wWxgA', '5441132'), + (29255, 289, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm6wWxgA', '5453325'), + (29256, 289, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm6wWxgA', '5454516'), + (29257, 289, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm6wWxgA', '5454605'), + (29258, 289, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm6wWxgA', '5455037'), + (29259, 289, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm6wWxgA', '5461278'), + (29260, 289, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm6wWxgA', '5469480'), + (29261, 289, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm6wWxgA', '5474663'), + (29262, 289, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm6wWxgA', '5482022'), + (29263, 289, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm6wWxgA', '5488912'), + (29264, 289, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm6wWxgA', '5492192'), + (29265, 289, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm6wWxgA', '5493139'), + (29266, 289, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm6wWxgA', '5493200'), + (29267, 289, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm6wWxgA', '5502188'), + (29268, 289, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm6wWxgA', '5505059'), + (29269, 289, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm6wWxgA', '5509055'), + (29270, 289, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm6wWxgA', '5512862'), + (29271, 289, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm6wWxgA', '5513985'), + (29272, 289, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nm6wWxgA', '5519981'), + (29273, 289, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm6wWxgA', '5522550'), + (29274, 289, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm6wWxgA', '5534683'), + (29275, 289, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm6wWxgA', '5537735'), + (29276, 289, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm6wWxgA', '5540859'), + (29277, 289, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm6wWxgA', '5546619'), + (29278, 289, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm6wWxgA', '5557747'), + (29279, 289, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm6wWxgA', '5560255'), + (29280, 289, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm6wWxgA', '5562906'), + (29281, 289, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm6wWxgA', '5600604'), + (29282, 289, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm6wWxgA', '5605544'), + (29283, 289, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'nm6wWxgA', '5606737'), + (29284, 289, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm6wWxgA', '5630960'), + (29285, 289, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm6wWxgA', '5630961'), + (29286, 289, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm6wWxgA', '5630962'), + (29287, 289, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm6wWxgA', '5630966'), + (29288, 289, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm6wWxgA', '5630967'), + (29289, 289, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm6wWxgA', '5630968'), + (29290, 289, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm6wWxgA', '5635406'), + (29291, 289, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm6wWxgA', '5638765'), + (29292, 289, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm6wWxgA', '5640097'), + (29293, 289, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm6wWxgA', '5640843'), + (29294, 289, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm6wWxgA', '5641521'), + (29295, 289, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm6wWxgA', '5642818'), + (29296, 289, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm6wWxgA', '5652395'), + (29297, 289, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm6wWxgA', '5670445'), + (29298, 289, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm6wWxgA', '5671637'), + (29299, 289, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm6wWxgA', '5672329'), + (29300, 289, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm6wWxgA', '5674057'), + (29301, 289, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm6wWxgA', '5674060'), + (29302, 289, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm6wWxgA', '5677461'), + (29303, 289, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm6wWxgA', '5698046'), + (29304, 289, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm6wWxgA', '5699760'), + (29305, 289, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm6wWxgA', '5741601'), + (29306, 289, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm6wWxgA', '5763458'), + (29307, 289, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm6wWxgA', '5774172'), + (29308, 289, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nm6wWxgA', '5818247'), + (29309, 289, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm6wWxgA', '5819471'), + (29310, 289, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'nm6wWxgA', '5827739'), + (29311, 289, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm6wWxgA', '5844306'), + (29312, 289, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm6wWxgA', '5850159'), + (29313, 289, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm6wWxgA', '5858999'), + (29314, 289, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm6wWxgA', '5871984'), + (29315, 289, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm6wWxgA', '5876354'), + (29316, 289, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm6wWxgA', '5880939'), + (29317, 289, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm6wWxgA', '5880940'), + (29318, 289, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm6wWxgA', '5880942'), + (29319, 289, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm6wWxgA', '5880943'), + (29320, 289, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm6wWxgA', '5887890'), + (29321, 289, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm6wWxgA', '5888598'), + (29322, 289, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm6wWxgA', '5893260'), + (29323, 289, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm6wWxgA', '5899826'), + (29324, 289, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm6wWxgA', '5900199'), + (29325, 289, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm6wWxgA', '5900200'), + (29326, 289, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm6wWxgA', '5900202'), + (29327, 289, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm6wWxgA', '5900203'), + (29328, 289, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm6wWxgA', '5901108'), + (29329, 289, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm6wWxgA', '5901126'), + (29330, 289, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm6wWxgA', '5909655'), + (29331, 289, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm6wWxgA', '5910522'), + (29332, 289, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm6wWxgA', '5910526'), + (29333, 289, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm6wWxgA', '5910528'), + (29334, 289, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm6wWxgA', '5916219'), + (29335, 289, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm6wWxgA', '5936234'), + (29336, 289, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm6wWxgA', '5958351'), + (29337, 289, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm6wWxgA', '5959751'), + (29338, 289, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm6wWxgA', '5959755'), + (29339, 289, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm6wWxgA', '5960055'), + (29340, 289, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm6wWxgA', '5961684'), + (29341, 289, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm6wWxgA', '5962132'), + (29342, 289, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nm6wWxgA', '5962133'), + (29343, 289, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm6wWxgA', '5962134'), + (29344, 289, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm6wWxgA', '5962317'), + (29345, 289, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm6wWxgA', '5962318'), + (29346, 289, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nm6wWxgA', '5965933'), + (29347, 289, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm6wWxgA', '5967014'), + (29348, 289, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm6wWxgA', '5972815'), + (29349, 289, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm6wWxgA', '5974016'), + (29350, 289, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm6wWxgA', '5981515'), + (29351, 289, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm6wWxgA', '5993516'), + (29352, 289, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm6wWxgA', '5998939'), + (29353, 289, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm6wWxgA', '6028191'), + (29354, 289, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm6wWxgA', '6040066'), + (29355, 289, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm6wWxgA', '6042717'), + (29356, 289, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm6wWxgA', '6044838'), + (29357, 289, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm6wWxgA', '6044839'), + (29358, 289, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6wWxgA', '6045684'), + (29359, 289, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm6wWxgA', '6050104'), + (29360, 289, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm6wWxgA', '6053195'), + (29361, 289, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm6wWxgA', '6053198'), + (29362, 289, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm6wWxgA', '6056085'), + (29363, 289, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm6wWxgA', '6056916'), + (29364, 289, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm6wWxgA', '6059290'), + (29365, 289, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm6wWxgA', '6060328'), + (29366, 289, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm6wWxgA', '6061037'), + (29367, 289, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm6wWxgA', '6061039'), + (29368, 289, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm6wWxgA', '6067245'), + (29369, 289, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm6wWxgA', '6068094'), + (29370, 289, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm6wWxgA', '6068252'), + (29371, 289, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm6wWxgA', '6068253'), + (29372, 289, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm6wWxgA', '6068254'), + (29373, 289, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm6wWxgA', '6068280'), + (29374, 289, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm6wWxgA', '6069093'), + (29375, 289, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm6wWxgA', '6072528'), + (29376, 289, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm6wWxgA', '6079840'), + (29377, 289, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm6wWxgA', '6083398'), + (29378, 289, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm6wWxgA', '6093504'), + (29379, 289, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm6wWxgA', '6097414'), + (29380, 289, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm6wWxgA', '6097442'), + (29381, 289, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm6wWxgA', '6097684'), + (29382, 289, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm6wWxgA', '6098762'), + (29383, 289, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm6wWxgA', '6101361'), + (29384, 289, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm6wWxgA', '6101362'), + (29385, 289, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm6wWxgA', '6107314'), + (29386, 289, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm6wWxgA', '6120034'), + (29387, 289, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nm6wWxgA', '6136733'), + (29388, 289, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm6wWxgA', '6137989'), + (29389, 289, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm6wWxgA', '6150864'), + (29390, 289, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm6wWxgA', '6155491'), + (29391, 289, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm6wWxgA', '6164417'), + (29392, 289, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm6wWxgA', '6166388'), + (29393, 289, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm6wWxgA', '6176439'), + (29394, 289, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm6wWxgA', '6182410'), + (29395, 289, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm6wWxgA', '6185812'), + (29396, 289, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm6wWxgA', '6187651'), + (29397, 289, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm6wWxgA', '6187963'), + (29398, 289, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm6wWxgA', '6187964'), + (29399, 289, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm6wWxgA', '6187966'), + (29400, 289, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm6wWxgA', '6187967'), + (29401, 289, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm6wWxgA', '6187969'), + (29402, 289, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm6wWxgA', '6334878'), + (29403, 289, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm6wWxgA', '6337236'), + (29404, 289, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm6wWxgA', '6337970'), + (29405, 289, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm6wWxgA', '6338308'), + (29406, 289, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm6wWxgA', '6341710'), + (29407, 289, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm6wWxgA', '6342044'), + (29408, 289, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm6wWxgA', '6342298'), + (29409, 289, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm6wWxgA', '6343294'), + (29410, 289, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm6wWxgA', '6347034'), + (29411, 289, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm6wWxgA', '6347056'), + (29412, 289, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm6wWxgA', '6353830'), + (29413, 289, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm6wWxgA', '6353831'), + (29414, 289, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm6wWxgA', '6357867'), + (29415, 289, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm6wWxgA', '6358652'), + (29416, 289, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm6wWxgA', '6361709'), + (29417, 289, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm6wWxgA', '6361710'), + (29418, 289, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm6wWxgA', '6361711'), + (29419, 289, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm6wWxgA', '6361712'), + (29420, 289, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm6wWxgA', '6361713'), + (29421, 289, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nm6wWxgA', '6382573'), + (29422, 289, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm6wWxgA', '6388604'), + (29423, 289, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm6wWxgA', '6394629'), + (29424, 289, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm6wWxgA', '6394631'), + (29425, 289, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm6wWxgA', '6440863'), + (29426, 289, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm6wWxgA', '6445440'), + (29427, 289, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm6wWxgA', '6453951'), + (29428, 289, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm6wWxgA', '6461696'), + (29429, 289, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm6wWxgA', '6462129'), + (29430, 289, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm6wWxgA', '6463218'), + (29431, 289, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm6wWxgA', '6472181'), + (29432, 289, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm6wWxgA', '6482693'), + (29433, 289, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nm6wWxgA', '6484200'), + (29434, 289, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm6wWxgA', '6484680'), + (29435, 289, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm6wWxgA', '6507741'), + (29436, 289, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm6wWxgA', '6514659'), + (29437, 289, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm6wWxgA', '6514660'), + (29438, 289, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm6wWxgA', '6519103'), + (29439, 289, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm6wWxgA', '6535681'), + (29440, 289, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm6wWxgA', '6584747'), + (29441, 289, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm6wWxgA', '6587097'), + (29442, 289, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm6wWxgA', '6609022'), + (29443, 289, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nm6wWxgA', '6632757'), + (29444, 289, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm6wWxgA', '6644187'), + (29445, 289, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm6wWxgA', '6648951'), + (29446, 289, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm6wWxgA', '6648952'), + (29447, 289, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm6wWxgA', '6655401'), + (29448, 289, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm6wWxgA', '6661585'), + (29449, 289, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm6wWxgA', '6661588'), + (29450, 289, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm6wWxgA', '6661589'), + (29451, 289, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm6wWxgA', '6699906'), + (29452, 289, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm6wWxgA', '6699913'), + (29453, 289, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm6wWxgA', '6701109'), + (29454, 289, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm6wWxgA', '6705219'), + (29455, 289, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm6wWxgA', '6710153'), + (29456, 289, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm6wWxgA', '6711552'), + (29457, 289, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nm6wWxgA', '6711553'), + (29458, 289, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm6wWxgA', '6722688'), + (29459, 289, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm6wWxgA', '6730620'), + (29460, 289, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm6wWxgA', '6740364'), + (29461, 289, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm6wWxgA', '6743829'), + (29462, 289, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm6wWxgA', '7030380'), + (29463, 289, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nm6wWxgA', '7033677'), + (29464, 289, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm6wWxgA', '7044715'), + (29465, 289, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm6wWxgA', '7050318'), + (29466, 289, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm6wWxgA', '7050319'), + (29467, 289, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm6wWxgA', '7050322'), + (29468, 289, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm6wWxgA', '7057804'), + (29469, 289, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm6wWxgA', '7072824'), + (29470, 289, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm6wWxgA', '7074348'), + (29471, 289, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm6wWxgA', '7074364'), + (29472, 289, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nm6wWxgA', '7089267'), + (29473, 289, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm6wWxgA', '7098747'), + (29474, 289, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm6wWxgA', '7113468'), + (29475, 289, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm6wWxgA', '7114856'), + (29476, 289, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm6wWxgA', '7114951'), + (29477, 289, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm6wWxgA', '7114955'), + (29478, 289, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm6wWxgA', '7114956'), + (29479, 289, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm6wWxgA', '7114957'), + (29480, 289, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm6wWxgA', '7159484'), + (29481, 289, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm6wWxgA', '7178446'), + (29482, 289, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nm6wWxgA', '7220467'), + (29483, 289, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm6wWxgA', '7240354'), + (29484, 289, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm6wWxgA', '7251633'), + (29485, 289, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm6wWxgA', '7324073'), + (29486, 289, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm6wWxgA', '7324074'), + (29487, 289, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm6wWxgA', '7324075'), + (29488, 289, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm6wWxgA', '7324078'), + (29489, 289, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm6wWxgA', '7324082'), + (29490, 289, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm6wWxgA', '7331457'), + (29491, 289, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm6wWxgA', '7363643'), + (29492, 289, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm6wWxgA', '7368606'), + (29493, 289, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm6wWxgA', '7397462'), + (29494, 289, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm6wWxgA', '7424275'), + (29495, 289, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm6wWxgA', '7432751'), + (29496, 289, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm6wWxgA', '7432752'), + (29497, 289, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm6wWxgA', '7432753'), + (29498, 289, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm6wWxgA', '7432754'), + (29499, 289, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm6wWxgA', '7432755'), + (29500, 289, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm6wWxgA', '7432756'), + (29501, 289, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm6wWxgA', '7432758'), + (29502, 289, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm6wWxgA', '7432759'), + (29503, 289, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm6wWxgA', '7433834'), + (29504, 289, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nm6wWxgA', '7470197'), + (29505, 289, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm6wWxgA', '7685613'), + (29506, 289, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm6wWxgA', '7688194'), + (29507, 289, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm6wWxgA', '7688196'), + (29508, 289, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm6wWxgA', '7688289'), + (29509, 289, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm6wWxgA', '7692763'), + (29510, 289, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm6wWxgA', '7697552'), + (29511, 289, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm6wWxgA', '7699878'), + (29512, 289, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nm6wWxgA', '7704043'), + (29513, 289, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm6wWxgA', '7712467'), + (29514, 289, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm6wWxgA', '7713585'), + (29515, 289, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm6wWxgA', '7713586'), + (29516, 289, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm6wWxgA', '7738518'), + (29517, 289, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm6wWxgA', '7750636'), + (29518, 289, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm6wWxgA', '7796540'), + (29519, 289, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm6wWxgA', '7796541'), + (29520, 289, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm6wWxgA', '7796542'), + (29521, 289, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm6wWxgA', '7825913'), + (29522, 289, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm6wWxgA', '7826209'), + (29523, 289, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm6wWxgA', '7834742'), + (29524, 289, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm6wWxgA', '7842108'), + (29525, 289, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm6wWxgA', '7842902'), + (29526, 289, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm6wWxgA', '7842903'), + (29527, 289, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm6wWxgA', '7842904'), + (29528, 289, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm6wWxgA', '7842905'), + (29529, 289, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm6wWxgA', '7855719'), + (29530, 289, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm6wWxgA', '7860683'), + (29531, 289, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm6wWxgA', '7860684'), + (29532, 289, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm6wWxgA', '7866095'), + (29533, 289, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm6wWxgA', '7869170'), + (29534, 289, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm6wWxgA', '7869188'), + (29535, 289, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm6wWxgA', '7869201'), + (29536, 289, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm6wWxgA', '7877465'), + (29537, 289, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm6wWxgA', '7888250'), + (29538, 289, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm6wWxgA', '7904777'), + (29539, 289, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm6wWxgA', '8349164'), + (29540, 289, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm6wWxgA', '8349545'), + (29541, 289, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm6wWxgA', '8368028'), + (29542, 289, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm6wWxgA', '8368029'), + (29543, 289, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm6wWxgA', '8388462'), + (29544, 289, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm6wWxgA', '8400273'), + (29545, 289, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm6wWxgA', '8400275'), + (29546, 289, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nm6wWxgA', '8400276'), + (29547, 289, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm6wWxgA', '8404977'), + (29548, 289, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm6wWxgA', '8430783'), + (29549, 289, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm6wWxgA', '8430784'), + (29550, 289, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm6wWxgA', '8430799'), + (29551, 289, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm6wWxgA', '8430800'), + (29552, 289, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm6wWxgA', '8430801'), + (29553, 289, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm6wWxgA', '8438709'), + (29554, 289, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm6wWxgA', '8457738'), + (29555, 289, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm6wWxgA', '8459566'), + (29556, 289, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm6wWxgA', '8459567'), + (29557, 289, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm6wWxgA', '8461032'), + (29558, 289, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm6wWxgA', '8477877'), + (29559, 289, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm6wWxgA', '8485688'), + (29560, 289, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm6wWxgA', '8490587'), + (29561, 289, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm6wWxgA', '8493552'), + (29562, 289, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm6wWxgA', '8493553'), + (29563, 289, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm6wWxgA', '8493554'), + (29564, 289, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm6wWxgA', '8493555'), + (29565, 289, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm6wWxgA', '8493556'), + (29566, 289, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm6wWxgA', '8493557'), + (29567, 289, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm6wWxgA', '8493558'), + (29568, 289, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm6wWxgA', '8493559'), + (29569, 289, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm6wWxgA', '8493560'), + (29570, 289, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nm6wWxgA', '8493561'), + (29571, 289, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm6wWxgA', '8493572'), + (29572, 289, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm6wWxgA', '8540725'), + (29573, 289, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm6wWxgA', '8555421'), + (29574, 290, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4EZ368Wd', '7074364'), + (29575, 290, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4EZ368Wd', '7324073'), + (29576, 290, 2689, 'attending', '2024-06-27 13:35:30', '2025-12-17 19:46:29', '4EZ368Wd', '7324074'), + (29577, 290, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4EZ368Wd', '7324075'), + (29578, 290, 2691, 'attending', '2024-07-20 21:23:13', '2025-12-17 19:46:30', '4EZ368Wd', '7324076'), + (29579, 290, 2692, 'maybe', '2024-07-27 18:59:42', '2025-12-17 19:46:30', '4EZ368Wd', '7324077'), + (29580, 290, 2693, 'maybe', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4EZ368Wd', '7324078'), + (29581, 290, 2694, 'attending', '2024-08-10 15:53:36', '2025-12-17 19:46:31', '4EZ368Wd', '7324079'), + (29582, 290, 2697, 'not_attending', '2024-08-31 17:07:51', '2025-12-17 19:46:32', '4EZ368Wd', '7324082'), + (29583, 290, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '4EZ368Wd', '7331457'), + (29584, 290, 2737, 'attending', '2024-07-02 18:33:11', '2025-12-17 19:46:29', '4EZ368Wd', '7344070'), + (29585, 290, 2739, 'attending', '2024-06-30 23:17:56', '2025-12-17 19:46:29', '4EZ368Wd', '7344575'), + (29586, 290, 2740, 'attending', '2024-07-01 18:48:03', '2025-12-17 19:46:29', '4EZ368Wd', '7344576'), + (29587, 290, 2743, 'attending', '2024-07-05 18:04:26', '2025-12-17 19:46:29', '4EZ368Wd', '7345688'), + (29588, 290, 2754, 'maybe', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4EZ368Wd', '7356752'), + (29589, 290, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '4EZ368Wd', '7363643'), + (29590, 290, 2772, 'maybe', '2024-07-21 17:43:12', '2025-12-17 19:46:30', '4EZ368Wd', '7368267'), + (29591, 290, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4EZ368Wd', '7368606'), + (29592, 290, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4EZ368Wd', '7397462'), + (29593, 290, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4EZ368Wd', '7424275'), + (29594, 290, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4EZ368Wd', '7424276'), + (29595, 290, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4EZ368Wd', '7432751'), + (29596, 290, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4EZ368Wd', '7432752'), + (29597, 290, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4EZ368Wd', '7432753'), + (29598, 290, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4EZ368Wd', '7432754'), + (29599, 290, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4EZ368Wd', '7432755'), + (29600, 290, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4EZ368Wd', '7432756'), + (29601, 290, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4EZ368Wd', '7432758'), + (29602, 290, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4EZ368Wd', '7432759'), + (29603, 290, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '4EZ368Wd', '7433834'), + (29604, 290, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4EZ368Wd', '7470197'), + (29605, 290, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4EZ368Wd', '7685613'), + (29606, 290, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4EZ368Wd', '7688194'), + (29607, 290, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4EZ368Wd', '7688196'), + (29608, 290, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4EZ368Wd', '7688289'), + (29609, 290, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4EZ368Wd', '7692763'), + (29610, 290, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4EZ368Wd', '7697552'), + (29611, 290, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4EZ368Wd', '7699878'), + (29612, 290, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4EZ368Wd', '7704043'), + (29613, 290, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4EZ368Wd', '7712467'), + (29614, 290, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4EZ368Wd', '7713585'), + (29615, 290, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4EZ368Wd', '7713586'), + (29616, 290, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4EZ368Wd', '7738518'), + (29617, 290, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4EZ368Wd', '7750636'), + (29618, 290, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4EZ368Wd', '7796540'), + (29619, 290, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4EZ368Wd', '7796541'), + (29620, 290, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4EZ368Wd', '7796542'), + (29621, 291, 1148, 'attending', '2021-12-17 23:19:14', '2025-12-17 19:47:31', 'VmMOryY4', '4692843'), + (29622, 291, 1156, 'attending', '2021-12-21 01:51:21', '2025-12-17 19:47:31', 'VmMOryY4', '4715207'), + (29623, 291, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'VmMOryY4', '4736497'), + (29624, 291, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'VmMOryY4', '4736499'), + (29625, 291, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'VmMOryY4', '4736500'), + (29626, 291, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'VmMOryY4', '4736503'), + (29627, 291, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'VmMOryY4', '4736504'), + (29628, 291, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VmMOryY4', '4746789'), + (29629, 291, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'VmMOryY4', '4753929'), + (29630, 291, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VmMOryY4', '5038850'), + (29631, 291, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VmMOryY4', '5045826'), + (29632, 291, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VmMOryY4', '5132533'), + (29633, 291, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMOryY4', '6045684'), + (29634, 292, 1643, 'not_attending', '2022-09-26 23:10:09', '2025-12-17 19:47:11', 'dOjwMey4', '5545856'), + (29635, 292, 1668, 'attending', '2022-09-28 21:00:17', '2025-12-17 19:47:12', 'dOjwMey4', '5563222'), + (29636, 292, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dOjwMey4', '5600604'), + (29637, 292, 1680, 'attending', '2022-09-26 21:44:32', '2025-12-17 19:47:11', 'dOjwMey4', '5601577'), + (29638, 292, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dOjwMey4', '5605544'), + (29639, 292, 1698, 'attending', '2022-09-26 22:46:14', '2025-12-17 19:47:11', 'dOjwMey4', '5606366'), + (29640, 292, 1699, 'attending', '2022-10-04 12:48:09', '2025-12-17 19:47:12', 'dOjwMey4', '5606737'), + (29641, 292, 1700, 'attending', '2022-09-30 12:59:37', '2025-12-17 19:47:12', 'dOjwMey4', '5606814'), + (29642, 292, 1701, 'not_attending', '2022-09-26 21:43:31', '2025-12-17 19:47:11', 'dOjwMey4', '5607857'), + (29643, 292, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dOjwMey4', '5630960'), + (29644, 292, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dOjwMey4', '5630961'), + (29645, 292, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dOjwMey4', '5630962'), + (29646, 292, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOjwMey4', '5630966'), + (29647, 292, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOjwMey4', '5630967'), + (29648, 292, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOjwMey4', '5630968'), + (29649, 292, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dOjwMey4', '5635406'), + (29650, 292, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dOjwMey4', '5638765'), + (29651, 292, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dOjwMey4', '5640097'), + (29652, 292, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dOjwMey4', '5640843'), + (29653, 292, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dOjwMey4', '5641521'), + (29654, 292, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOjwMey4', '5642818'), + (29655, 292, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dOjwMey4', '5652395'), + (29656, 292, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOjwMey4', '5670445'), + (29657, 292, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dOjwMey4', '5671637'), + (29658, 292, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dOjwMey4', '5672329'), + (29659, 292, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dOjwMey4', '5674057'), + (29660, 292, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dOjwMey4', '5674060'), + (29661, 292, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dOjwMey4', '5677461'), + (29662, 292, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOjwMey4', '5698046'), + (29663, 292, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dOjwMey4', '5699760'), + (29664, 292, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOjwMey4', '5741601'), + (29665, 292, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOjwMey4', '5763458'), + (29666, 292, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOjwMey4', '5774172'), + (29667, 292, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOjwMey4', '5818247'), + (29668, 292, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOjwMey4', '5819471'), + (29669, 292, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOjwMey4', '5827739'), + (29670, 292, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOjwMey4', '5844306'), + (29671, 292, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOjwMey4', '5850159'), + (29672, 292, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOjwMey4', '5858999'), + (29673, 292, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOjwMey4', '5871984'), + (29674, 292, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOjwMey4', '5876354'), + (29675, 292, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOjwMey4', '5880939'), + (29676, 292, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dOjwMey4', '5880940'), + (29677, 292, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dOjwMey4', '5880942'), + (29678, 292, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dOjwMey4', '5880943'), + (29679, 292, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOjwMey4', '5887890'), + (29680, 292, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOjwMey4', '5888598'), + (29681, 292, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOjwMey4', '5893260'), + (29682, 292, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dOjwMey4', '5899826'), + (29683, 292, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dOjwMey4', '5900199'), + (29684, 292, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dOjwMey4', '5900200'), + (29685, 292, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOjwMey4', '5900202'), + (29686, 292, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOjwMey4', '5900203'), + (29687, 292, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dOjwMey4', '5901108'), + (29688, 292, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dOjwMey4', '5901126'), + (29689, 292, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dOjwMey4', '5909655'), + (29690, 292, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dOjwMey4', '5910522'), + (29691, 292, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dOjwMey4', '5910526'), + (29692, 292, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dOjwMey4', '5910528'), + (29693, 292, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dOjwMey4', '5916219'), + (29694, 292, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dOjwMey4', '5936234'), + (29695, 292, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dOjwMey4', '5958351'), + (29696, 292, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dOjwMey4', '5959751'), + (29697, 292, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dOjwMey4', '5959755'), + (29698, 292, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dOjwMey4', '5960055'), + (29699, 292, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dOjwMey4', '5961684'), + (29700, 292, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dOjwMey4', '5962132'), + (29701, 292, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dOjwMey4', '5962133'), + (29702, 292, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dOjwMey4', '5962134'), + (29703, 292, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dOjwMey4', '5962317'), + (29704, 292, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dOjwMey4', '5962318'), + (29705, 292, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dOjwMey4', '5965933'), + (29706, 292, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dOjwMey4', '5967014'), + (29707, 292, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dOjwMey4', '5972815'), + (29708, 292, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dOjwMey4', '5974016'), + (29709, 292, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dOjwMey4', '5975052'), + (29710, 292, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dOjwMey4', '5975054'), + (29711, 292, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dOjwMey4', '5981515'), + (29712, 292, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOjwMey4', '5993516'), + (29713, 292, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOjwMey4', '5998939'), + (29714, 292, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOjwMey4', '6028191'), + (29715, 292, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOjwMey4', '6040066'), + (29716, 292, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOjwMey4', '6042717'), + (29717, 292, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOjwMey4', '6044838'), + (29718, 292, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOjwMey4', '6044839'), + (29719, 292, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOjwMey4', '6045684'), + (29720, 292, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dOjwMey4', '6050104'), + (29721, 292, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOjwMey4', '6053195'), + (29722, 292, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOjwMey4', '6053198'), + (29723, 292, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOjwMey4', '6056085'), + (29724, 292, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOjwMey4', '6056916'), + (29725, 292, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOjwMey4', '6059290'), + (29726, 292, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOjwMey4', '6060328'), + (29727, 292, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOjwMey4', '6061037'), + (29728, 292, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOjwMey4', '6061039'), + (29729, 292, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOjwMey4', '6067245'), + (29730, 292, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOjwMey4', '6068094'), + (29731, 292, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOjwMey4', '6068252'), + (29732, 292, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOjwMey4', '6068253'), + (29733, 292, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOjwMey4', '6068254'), + (29734, 292, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dOjwMey4', '6068280'), + (29735, 292, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOjwMey4', '6069093'), + (29736, 292, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOjwMey4', '6072528'), + (29737, 292, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dOjwMey4', '6075556'), + (29738, 292, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOjwMey4', '6079840'), + (29739, 292, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOjwMey4', '6083398'), + (29740, 292, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOjwMey4', '6093504'), + (29741, 292, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOjwMey4', '6097414'), + (29742, 292, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOjwMey4', '6097442'), + (29743, 292, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOjwMey4', '6097684'), + (29744, 292, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOjwMey4', '6098762'), + (29745, 292, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOjwMey4', '6101362'), + (29746, 292, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOjwMey4', '6107314'), + (29747, 293, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AXZe87vd', '7074364'), + (29748, 293, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AXZe87vd', '7324073'), + (29749, 293, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AXZe87vd', '7324074'), + (29750, 293, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AXZe87vd', '7324075'), + (29751, 293, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AXZe87vd', '7324078'), + (29752, 293, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'AXZe87vd', '7324867'), + (29753, 293, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AXZe87vd', '7331457'), + (29754, 293, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'AXZe87vd', '7332564'), + (29755, 293, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'AXZe87vd', '7335193'), + (29756, 293, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'AXZe87vd', '7359624'), + (29757, 293, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AXZe87vd', '7363643'), + (29758, 293, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AXZe87vd', '7368606'), + (29759, 294, 849, 'not_attending', '2021-07-28 23:52:53', '2025-12-17 19:47:40', '6AXe2Q64', '4015721'), + (29760, 294, 870, 'not_attending', '2021-07-03 01:49:22', '2025-12-17 19:47:39', '6AXe2Q64', '4136937'), + (29761, 294, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXe2Q64', '4136938'), + (29762, 294, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', '6AXe2Q64', '4136947'), + (29763, 294, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXe2Q64', '4210314'), + (29764, 294, 887, 'attending', '2021-07-14 22:30:47', '2025-12-17 19:47:39', '6AXe2Q64', '4225444'), + (29765, 294, 891, 'attending', '2021-07-02 19:55:49', '2025-12-17 19:47:38', '6AXe2Q64', '4229417'), + (29766, 294, 892, 'attending', '2021-07-04 02:49:50', '2025-12-17 19:47:39', '6AXe2Q64', '4229418'), + (29767, 294, 894, 'not_attending', '2021-07-14 22:34:16', '2025-12-17 19:47:39', '6AXe2Q64', '4229423'), + (29768, 294, 895, 'attending', '2021-07-03 00:56:07', '2025-12-17 19:47:39', '6AXe2Q64', '4229424'), + (29769, 294, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXe2Q64', '4239259'), + (29770, 294, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXe2Q64', '4240316'), + (29771, 294, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXe2Q64', '4240317'), + (29772, 294, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXe2Q64', '4240318'), + (29773, 294, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXe2Q64', '4240320'), + (29774, 294, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXe2Q64', '4250163'), + (29775, 294, 908, 'not_attending', '2021-07-15 22:16:22', '2025-12-17 19:47:39', '6AXe2Q64', '4257613'), + (29776, 294, 910, 'maybe', '2021-07-13 01:10:30', '2025-12-17 19:47:39', '6AXe2Q64', '4258189'), + (29777, 294, 912, 'attending', '2021-07-13 01:00:06', '2025-12-17 19:47:39', '6AXe2Q64', '4271104'), + (29778, 294, 914, 'maybe', '2021-07-17 21:25:10', '2025-12-17 19:47:39', '6AXe2Q64', '4273767'), + (29779, 294, 918, 'attending', '2021-07-12 22:34:19', '2025-12-17 19:47:39', '6AXe2Q64', '4274486'), + (29780, 294, 919, 'attending', '2021-07-14 15:31:43', '2025-12-17 19:47:39', '6AXe2Q64', '4275957'), + (29781, 294, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXe2Q64', '4277819'), + (29782, 294, 921, 'attending', '2021-07-14 00:55:02', '2025-12-17 19:47:39', '6AXe2Q64', '4278368'), + (29783, 294, 927, 'attending', '2021-07-27 00:20:10', '2025-12-17 19:47:40', '6AXe2Q64', '4297216'), + (29784, 294, 929, 'maybe', '2021-08-03 01:08:13', '2025-12-17 19:47:41', '6AXe2Q64', '4297223'), + (29785, 294, 933, 'not_attending', '2021-07-28 23:53:17', '2025-12-17 19:47:40', '6AXe2Q64', '4301723'), + (29786, 294, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXe2Q64', '4302093'), + (29787, 294, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXe2Q64', '4304151'), + (29788, 294, 938, 'attending', '2021-07-25 22:46:06', '2025-12-17 19:47:40', '6AXe2Q64', '4306597'), + (29789, 294, 952, 'maybe', '2021-08-03 01:07:52', '2025-12-17 19:47:41', '6AXe2Q64', '4318286'), + (29790, 294, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '6AXe2Q64', '4345519'), + (29791, 294, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXe2Q64', '4356801'), + (29792, 294, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '6AXe2Q64', '4358025'), + (29793, 294, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXe2Q64', '4366186'), + (29794, 294, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXe2Q64', '4366187'), + (29795, 294, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '6AXe2Q64', '4402823'), + (29796, 294, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AXe2Q64', '4420735'), + (29797, 294, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AXe2Q64', '4420738'), + (29798, 294, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AXe2Q64', '4420739'), + (29799, 294, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AXe2Q64', '4420741'), + (29800, 294, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXe2Q64', '4420744'), + (29801, 294, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXe2Q64', '4420747'), + (29802, 294, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AXe2Q64', '4420748'), + (29803, 294, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXe2Q64', '4420749'), + (29804, 294, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXe2Q64', '4461883'), + (29805, 294, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXe2Q64', '4508342'), + (29806, 294, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXe2Q64', '4568602'), + (29807, 294, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXe2Q64', '6045684'), + (29808, 295, 513, 'attending', '2020-12-20 00:09:18', '2025-12-17 19:47:55', 'rdOPwZym', '3329383'), + (29809, 295, 522, 'attending', '2020-12-16 21:26:42', '2025-12-17 19:47:55', 'rdOPwZym', '3342836'), + (29810, 295, 526, 'attending', '2021-01-03 00:17:23', '2025-12-17 19:47:48', 'rdOPwZym', '3351539'), + (29811, 295, 532, 'attending', '2021-01-08 18:38:45', '2025-12-17 19:47:48', 'rdOPwZym', '3381412'), + (29812, 295, 535, 'attending', '2021-01-09 20:26:16', '2025-12-17 19:47:48', 'rdOPwZym', '3384729'), + (29813, 295, 536, 'attending', '2021-01-06 17:21:05', '2025-12-17 19:47:48', 'rdOPwZym', '3386848'), + (29814, 295, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'rdOPwZym', '3389527'), + (29815, 295, 542, 'attending', '2021-01-12 00:21:11', '2025-12-17 19:47:48', 'rdOPwZym', '3395013'), + (29816, 295, 543, 'attending', '2021-01-15 21:01:47', '2025-12-17 19:47:48', 'rdOPwZym', '3396499'), + (29817, 295, 548, 'attending', '2021-01-13 18:17:50', '2025-12-17 19:47:48', 'rdOPwZym', '3403650'), + (29818, 295, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'rdOPwZym', '3406988'), + (29819, 295, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'rdOPwZym', '3416576'), + (29820, 295, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'rdOPwZym', '3418925'), + (29821, 295, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'rdOPwZym', '3430267'), + (29822, 295, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'rdOPwZym', '3432673'), + (29823, 295, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'rdOPwZym', '3468125'), + (29824, 295, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'rdOPwZym', '3470303'), + (29825, 295, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'rdOPwZym', '3470305'), + (29826, 295, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOPwZym', '3470991'), + (29827, 295, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'rdOPwZym', '3517815'), + (29828, 295, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'rdOPwZym', '3517816'), + (29829, 295, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'rdOPwZym', '3523941'), + (29830, 295, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOPwZym', '3533850'), + (29831, 295, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOPwZym', '3536632'), + (29832, 295, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'rdOPwZym', '3536656'), + (29833, 295, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'rdOPwZym', '3539916'), + (29834, 295, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'rdOPwZym', '3539917'), + (29835, 295, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOPwZym', '3539918'), + (29836, 295, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'rdOPwZym', '3539919'), + (29837, 295, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'rdOPwZym', '3539920'), + (29838, 295, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'rdOPwZym', '3539921'), + (29839, 295, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'rdOPwZym', '3539922'), + (29840, 295, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'rdOPwZym', '3539923'), + (29841, 295, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOPwZym', '3539927'), + (29842, 295, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOPwZym', '3582734'), + (29843, 295, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'rdOPwZym', '3583262'), + (29844, 295, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOPwZym', '3619523'), + (29845, 295, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'rdOPwZym', '3661369'), + (29846, 295, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'rdOPwZym', '3674262'), + (29847, 295, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'rdOPwZym', '3677402'), + (29848, 295, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOPwZym', '3730212'), + (29849, 295, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOPwZym', '6045684'), + (29850, 296, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'EdVWLErm', '3470305'), + (29851, 296, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'EdVWLErm', '3517815'), + (29852, 296, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'EdVWLErm', '3523941'), + (29853, 296, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'EdVWLErm', '3533850'), + (29854, 296, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'EdVWLErm', '3536632'), + (29855, 296, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'EdVWLErm', '3536656'), + (29856, 296, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'EdVWLErm', '3539916'), + (29857, 296, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'EdVWLErm', '3539917'), + (29858, 296, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'EdVWLErm', '3539918'), + (29859, 296, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'EdVWLErm', '3539919'), + (29860, 296, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'EdVWLErm', '3539920'), + (29861, 296, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'EdVWLErm', '3539921'), + (29862, 296, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'EdVWLErm', '3539922'), + (29863, 296, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'EdVWLErm', '3539923'), + (29864, 296, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVWLErm', '6045684'), + (29865, 297, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6ozY30A', '5426882'), + (29866, 297, 1512, 'attending', '2022-07-12 22:31:16', '2025-12-17 19:47:19', 'm6ozY30A', '5441112'), + (29867, 297, 1513, 'attending', '2022-07-13 10:59:43', '2025-12-17 19:47:19', 'm6ozY30A', '5441125'), + (29868, 297, 1514, 'attending', '2022-07-19 07:50:35', '2025-12-17 19:47:20', 'm6ozY30A', '5441126'), + (29869, 297, 1515, 'attending', '2022-08-05 07:50:30', '2025-12-17 19:47:21', 'm6ozY30A', '5441128'), + (29870, 297, 1516, 'attending', '2022-08-19 08:06:09', '2025-12-17 19:47:23', 'm6ozY30A', '5441129'), + (29871, 297, 1517, 'attending', '2022-08-19 08:06:20', '2025-12-17 19:47:23', 'm6ozY30A', '5441130'), + (29872, 297, 1518, 'not_attending', '2022-09-01 15:10:57', '2025-12-17 19:47:24', 'm6ozY30A', '5441131'), + (29873, 297, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6ozY30A', '5441132'), + (29874, 297, 1526, 'maybe', '2022-07-16 00:13:30', '2025-12-17 19:47:20', 'm6ozY30A', '5445059'), + (29875, 297, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6ozY30A', '5446643'), + (29876, 297, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'm6ozY30A', '5449068'), + (29877, 297, 1540, 'not_attending', '2022-07-22 16:19:25', '2025-12-17 19:47:20', 'm6ozY30A', '5453325'), + (29878, 297, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6ozY30A', '5454516'), + (29879, 297, 1544, 'not_attending', '2022-09-17 20:01:46', '2025-12-17 19:47:11', 'm6ozY30A', '5454517'), + (29880, 297, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6ozY30A', '5454605'), + (29881, 297, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6ozY30A', '5455037'), + (29882, 297, 1561, 'maybe', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6ozY30A', '5461278'), + (29883, 297, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6ozY30A', '5469480'), + (29884, 297, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6ozY30A', '5471073'), + (29885, 297, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'm6ozY30A', '5474663'), + (29886, 297, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6ozY30A', '5482022'), + (29887, 297, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6ozY30A', '5482793'), + (29888, 297, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6ozY30A', '5488912'), + (29889, 297, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6ozY30A', '5492192'), + (29890, 297, 1588, 'attending', '2022-08-09 15:31:13', '2025-12-17 19:47:22', 'm6ozY30A', '5493139'), + (29891, 297, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6ozY30A', '5493200'), + (29892, 297, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6ozY30A', '5502188'), + (29893, 297, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6ozY30A', '5505059'), + (29894, 297, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6ozY30A', '5509055'), + (29895, 297, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6ozY30A', '5512862'), + (29896, 297, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6ozY30A', '5513985'), + (29897, 297, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'm6ozY30A', '5519981'), + (29898, 297, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6ozY30A', '5522550'), + (29899, 297, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6ozY30A', '5534683'), + (29900, 297, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6ozY30A', '5537735'), + (29901, 297, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6ozY30A', '5540859'), + (29902, 297, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6ozY30A', '5546619'), + (29903, 297, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6ozY30A', '5555245'), + (29904, 297, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6ozY30A', '5557747'), + (29905, 297, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6ozY30A', '5560255'), + (29906, 297, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6ozY30A', '5562906'), + (29907, 297, 1667, 'attending', '2022-09-24 19:16:23', '2025-12-17 19:47:11', 'm6ozY30A', '5563221'), + (29908, 297, 1668, 'attending', '2022-10-01 01:23:21', '2025-12-17 19:47:12', 'm6ozY30A', '5563222'), + (29909, 297, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6ozY30A', '5600604'), + (29910, 297, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6ozY30A', '5605544'), + (29911, 297, 1699, 'attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'm6ozY30A', '5606737'), + (29912, 297, 1719, 'attending', '2022-10-05 07:56:09', '2025-12-17 19:47:12', 'm6ozY30A', '5630958'), + (29913, 297, 1720, 'attending', '2022-10-05 08:01:57', '2025-12-17 19:47:12', 'm6ozY30A', '5630959'), + (29914, 297, 1721, 'not_attending', '2022-10-17 07:12:44', '2025-12-17 19:47:13', 'm6ozY30A', '5630960'), + (29915, 297, 1722, 'not_attending', '2022-10-24 14:45:57', '2025-12-17 19:47:14', 'm6ozY30A', '5630961'), + (29916, 297, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6ozY30A', '5630962'), + (29917, 297, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6ozY30A', '5630966'), + (29918, 297, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6ozY30A', '5630967'), + (29919, 297, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm6ozY30A', '5630968'), + (29920, 297, 1727, 'not_attending', '2022-12-03 22:25:03', '2025-12-17 19:47:16', 'm6ozY30A', '5630969'), + (29921, 297, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6ozY30A', '5635406'), + (29922, 297, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6ozY30A', '5638765'), + (29923, 297, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6ozY30A', '5640097'), + (29924, 297, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6ozY30A', '5640843'), + (29925, 297, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6ozY30A', '5641521'), + (29926, 297, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6ozY30A', '5642818'), + (29927, 297, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6ozY30A', '5652395'), + (29928, 297, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6ozY30A', '5670445'), + (29929, 297, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6ozY30A', '5671637'), + (29930, 297, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6ozY30A', '5672329'), + (29931, 297, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6ozY30A', '5674057'), + (29932, 297, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6ozY30A', '5674060'), + (29933, 297, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6ozY30A', '5677461'), + (29934, 297, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6ozY30A', '5698046'), + (29935, 297, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6ozY30A', '5699760'), + (29936, 297, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6ozY30A', '5741601'), + (29937, 297, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6ozY30A', '5763458'), + (29938, 297, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6ozY30A', '5774172'), + (29939, 297, 1832, 'not_attending', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'm6ozY30A', '5818247'), + (29940, 297, 1834, 'not_attending', '2022-12-10 09:03:28', '2025-12-17 19:47:17', 'm6ozY30A', '5819470'), + (29941, 297, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6ozY30A', '5819471'), + (29942, 297, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6ozY30A', '5827739'), + (29943, 297, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6ozY30A', '5844306'), + (29944, 297, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6ozY30A', '5850159'), + (29945, 297, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6ozY30A', '5858999'), + (29946, 297, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6ozY30A', '5871984'), + (29947, 297, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6ozY30A', '5876354'), + (29948, 297, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm6ozY30A', '5880939'), + (29949, 297, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6ozY30A', '5887890'), + (29950, 297, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6ozY30A', '5888598'), + (29951, 297, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6ozY30A', '5893260'), + (29952, 297, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6ozY30A', '6045684'), + (29953, 298, 311, 'not_attending', '2020-09-14 14:45:56', '2025-12-17 19:47:56', 'QdJY2Pn4', '3186057'), + (29954, 298, 327, 'attending', '2020-09-26 14:22:35', '2025-12-17 19:47:52', 'QdJY2Pn4', '3197085'), + (29955, 298, 328, 'attending', '2020-09-26 14:22:47', '2025-12-17 19:47:52', 'QdJY2Pn4', '3197086'), + (29956, 298, 333, 'attending', '2020-10-05 22:40:52', '2025-12-17 19:47:52', 'QdJY2Pn4', '3199782'), + (29957, 298, 334, 'attending', '2020-10-08 20:04:45', '2025-12-17 19:47:52', 'QdJY2Pn4', '3199784'), + (29958, 298, 342, 'attending', '2020-10-02 21:48:37', '2025-12-17 19:47:52', 'QdJY2Pn4', '3204472'), + (29959, 298, 347, 'maybe', '2020-09-24 19:44:26', '2025-12-17 19:47:51', 'QdJY2Pn4', '3207930'), + (29960, 298, 348, 'attending', '2020-09-25 16:02:17', '2025-12-17 19:47:52', 'QdJY2Pn4', '3209159'), + (29961, 298, 357, 'maybe', '2020-09-30 03:11:43', '2025-12-17 19:47:52', 'QdJY2Pn4', '3212573'), + (29962, 298, 362, 'attending', '2020-09-26 01:14:13', '2025-12-17 19:47:52', 'QdJY2Pn4', '3214207'), + (29963, 298, 363, 'not_attending', '2020-09-28 00:17:53', '2025-12-17 19:47:52', 'QdJY2Pn4', '3217037'), + (29964, 298, 365, 'maybe', '2020-09-24 19:44:21', '2025-12-17 19:47:52', 'QdJY2Pn4', '3218510'), + (29965, 298, 369, 'attending', '2020-10-12 21:04:53', '2025-12-17 19:47:52', 'QdJY2Pn4', '3221404'), + (29966, 298, 383, 'attending', '2020-09-28 00:17:20', '2025-12-17 19:47:52', 'QdJY2Pn4', '3227946'), + (29967, 298, 385, 'attending', '2020-10-03 15:24:48', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228698'), + (29968, 298, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228699'), + (29969, 298, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228700'), + (29970, 298, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'QdJY2Pn4', '3228701'), + (29971, 298, 412, 'not_attending', '2020-10-07 23:03:59', '2025-12-17 19:47:52', 'QdJY2Pn4', '3236636'), + (29972, 298, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'QdJY2Pn4', '3245751'), + (29973, 298, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'QdJY2Pn4', '3250232'), + (29974, 298, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'QdJY2Pn4', '3256168'), + (29975, 298, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'QdJY2Pn4', '3263578'), + (29976, 298, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'QdJY2Pn4', '3276428'), + (29977, 298, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'QdJY2Pn4', '3281467'), + (29978, 298, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'QdJY2Pn4', '3281470'), + (29979, 298, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'QdJY2Pn4', '3281829'), + (29980, 298, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'QdJY2Pn4', '3285413'), + (29981, 298, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'QdJY2Pn4', '3285414'), + (29982, 298, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'QdJY2Pn4', '3297764'), + (29983, 298, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'QdJY2Pn4', '3313856'), + (29984, 298, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'QdJY2Pn4', '3314909'), + (29985, 298, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'QdJY2Pn4', '3314964'), + (29986, 298, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'QdJY2Pn4', '3323365'), + (29987, 298, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'QdJY2Pn4', '3329383'), + (29988, 298, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'QdJY2Pn4', '3351539'), + (29989, 298, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'QdJY2Pn4', '3386848'), + (29990, 298, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'QdJY2Pn4', '3389527'), + (29991, 298, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'QdJY2Pn4', '3396499'), + (29992, 298, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'QdJY2Pn4', '3403650'), + (29993, 298, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'QdJY2Pn4', '3406988'), + (29994, 298, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'QdJY2Pn4', '3408338'), + (29995, 298, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'QdJY2Pn4', '3416576'), + (29996, 298, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJY2Pn4', '6045684'), + (29997, 299, 2376, 'attending', '2024-01-03 22:53:14', '2025-12-17 19:46:40', 'xAYQZxGA', '6642900'), + (29998, 299, 2377, 'attending', '2024-01-03 22:52:52', '2025-12-17 19:46:37', 'xAYQZxGA', '6643448'), + (29999, 299, 2379, 'attending', '2024-01-03 22:52:24', '2025-12-17 19:46:37', 'xAYQZxGA', '6644187'), + (30000, 299, 2385, 'attending', '2024-01-03 22:52:55', '2025-12-17 19:46:37', 'xAYQZxGA', '6648943'), + (30001, 299, 2386, 'attending', '2024-01-03 22:50:43', '2025-12-17 19:46:37', 'xAYQZxGA', '6648951'), + (30002, 299, 2387, 'attending', '2024-01-03 22:52:12', '2025-12-17 19:46:37', 'xAYQZxGA', '6648952'), + (30003, 299, 2388, 'attending', '2024-01-03 22:52:35', '2025-12-17 19:46:37', 'xAYQZxGA', '6649244'), + (30004, 299, 2389, 'attending', '2024-01-03 22:53:11', '2025-12-17 19:46:40', 'xAYQZxGA', '6651094'), + (30005, 299, 2390, 'maybe', '2024-01-03 22:52:39', '2025-12-17 19:46:37', 'xAYQZxGA', '6651141'), + (30006, 299, 2392, 'attending', '2024-01-09 18:01:00', '2025-12-17 19:46:37', 'xAYQZxGA', '6654412'), + (30007, 299, 2393, 'maybe', '2024-01-09 09:42:16', '2025-12-17 19:46:38', 'xAYQZxGA', '6654468'), + (30008, 299, 2394, 'maybe', '2024-01-09 18:03:37', '2025-12-17 19:46:38', 'xAYQZxGA', '6654470'), + (30009, 299, 2396, 'attending', '2024-01-16 21:54:29', '2025-12-17 19:46:38', 'xAYQZxGA', '6655401'), + (30010, 299, 2397, 'attending', '2024-01-08 22:39:05', '2025-12-17 19:46:37', 'xAYQZxGA', '6657379'), + (30011, 299, 2398, 'attending', '2024-01-11 03:57:23', '2025-12-17 19:46:37', 'xAYQZxGA', '6657381'), + (30012, 299, 2399, 'attending', '2024-01-09 18:03:14', '2025-12-17 19:46:37', 'xAYQZxGA', '6657583'), + (30013, 299, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xAYQZxGA', '6661585'), + (30014, 299, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xAYQZxGA', '6661588'), + (30015, 299, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xAYQZxGA', '6661589'), + (30016, 299, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xAYQZxGA', '6699906'), + (30017, 299, 2408, 'not_attending', '2024-01-21 00:44:34', '2025-12-17 19:46:40', 'xAYQZxGA', '6699907'), + (30018, 299, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'xAYQZxGA', '6699913'), + (30019, 299, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xAYQZxGA', '6701109'), + (30020, 299, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xAYQZxGA', '6705219'), + (30021, 299, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xAYQZxGA', '6710153'), + (30022, 299, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xAYQZxGA', '6711552'), + (30023, 299, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'xAYQZxGA', '6711553'), + (30024, 299, 2435, 'not_attending', '2024-01-29 19:35:31', '2025-12-17 19:46:41', 'xAYQZxGA', '6721547'), + (30025, 299, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xAYQZxGA', '6722688'), + (30026, 299, 2438, 'attending', '2024-02-07 19:10:20', '2025-12-17 19:46:41', 'xAYQZxGA', '6730201'), + (30027, 299, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xAYQZxGA', '6730620'), + (30028, 299, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xAYQZxGA', '6730642'), + (30029, 299, 2449, 'attending', '2024-02-19 23:07:19', '2025-12-17 19:46:42', 'xAYQZxGA', '6735833'), + (30030, 299, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xAYQZxGA', '6740364'), + (30031, 299, 2454, 'attending', '2024-02-20 22:47:28', '2025-12-17 19:46:42', 'xAYQZxGA', '6740921'), + (30032, 299, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xAYQZxGA', '6743829'), + (30033, 299, 2462, 'attending', '2024-02-12 19:56:25', '2025-12-17 19:46:41', 'xAYQZxGA', '6744701'), + (30034, 299, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xAYQZxGA', '7030380'), + (30035, 299, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'xAYQZxGA', '7033677'), + (30036, 299, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xAYQZxGA', '7035415'), + (30037, 299, 2475, 'attending', '2024-02-29 00:02:34', '2025-12-17 19:46:43', 'xAYQZxGA', '7035643'), + (30038, 299, 2476, 'attending', '2024-02-27 12:38:55', '2025-12-17 19:46:43', 'xAYQZxGA', '7035691'), + (30039, 299, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xAYQZxGA', '7044715'), + (30040, 299, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xAYQZxGA', '7050318'), + (30041, 299, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xAYQZxGA', '7050319'), + (30042, 299, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xAYQZxGA', '7050322'), + (30043, 299, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xAYQZxGA', '7057804'), + (30044, 299, 2500, 'maybe', '2024-03-06 23:19:05', '2025-12-17 19:46:43', 'xAYQZxGA', '7058603'), + (30045, 299, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'xAYQZxGA', '7059866'), + (30046, 299, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xAYQZxGA', '7072824'), + (30047, 299, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xAYQZxGA', '7074348'), + (30048, 299, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xAYQZxGA', '7074364'), + (30049, 299, 2537, 'not_attending', '2024-03-23 14:30:34', '2025-12-17 19:46:33', 'xAYQZxGA', '7085484'), + (30050, 299, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'xAYQZxGA', '7089267'), + (30051, 299, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xAYQZxGA', '7098747'), + (30052, 299, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xAYQZxGA', '7113468'), + (30053, 299, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xAYQZxGA', '7114856'), + (30054, 299, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xAYQZxGA', '7114951'), + (30055, 299, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xAYQZxGA', '7114955'), + (30056, 299, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xAYQZxGA', '7114956'), + (30057, 299, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xAYQZxGA', '7114957'), + (30058, 299, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xAYQZxGA', '7153615'), + (30059, 299, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xAYQZxGA', '7159484'), + (30060, 299, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xAYQZxGA', '7178446'), + (30061, 299, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'xAYQZxGA', '7220467'), + (30062, 299, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xAYQZxGA', '7240354'), + (30063, 299, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xAYQZxGA', '7251633'), + (30064, 299, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'xAYQZxGA', '7263048'), + (30065, 299, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'xAYQZxGA', '7302674'), + (30066, 299, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xAYQZxGA', '7324073'), + (30067, 299, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xAYQZxGA', '7324074'), + (30068, 299, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xAYQZxGA', '7324075'), + (30069, 299, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'xAYQZxGA', '7324078'), + (30070, 299, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xAYQZxGA', '7324082'), + (30071, 299, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xAYQZxGA', '7331457'), + (30072, 299, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xAYQZxGA', '7363643'), + (30073, 299, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xAYQZxGA', '7368606'), + (30074, 299, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xAYQZxGA', '7397462'), + (30075, 299, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xAYQZxGA', '7424275'), + (30076, 299, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xAYQZxGA', '7432751'), + (30077, 299, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xAYQZxGA', '7432752'), + (30078, 299, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xAYQZxGA', '7432753'), + (30079, 299, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xAYQZxGA', '7432754'), + (30080, 299, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xAYQZxGA', '7432755'), + (30081, 299, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xAYQZxGA', '7432756'), + (30082, 299, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xAYQZxGA', '7432758'), + (30083, 299, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xAYQZxGA', '7432759'), + (30084, 299, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xAYQZxGA', '7433834'), + (30085, 299, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'xAYQZxGA', '7470197'), + (30086, 299, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xAYQZxGA', '7685613'), + (30087, 299, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xAYQZxGA', '7688194'), + (30088, 299, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xAYQZxGA', '7688196'), + (30089, 299, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xAYQZxGA', '7688289'), + (30090, 299, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xAYQZxGA', '7692763'), + (30091, 299, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xAYQZxGA', '7697552'), + (30092, 299, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xAYQZxGA', '7699878'), + (30093, 299, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'xAYQZxGA', '7704043'), + (30094, 299, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'xAYQZxGA', '7712467'), + (30095, 299, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'xAYQZxGA', '7713585'), + (30096, 299, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'xAYQZxGA', '7713586'), + (30097, 299, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xAYQZxGA', '7738518'), + (30098, 299, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xAYQZxGA', '7750636'), + (30099, 299, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xAYQZxGA', '7796540'), + (30100, 299, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xAYQZxGA', '7796541'), + (30101, 299, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xAYQZxGA', '7796542'), + (30102, 299, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xAYQZxGA', '7825913'), + (30103, 299, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xAYQZxGA', '7826209'), + (30104, 299, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xAYQZxGA', '7834742'), + (30105, 299, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'xAYQZxGA', '7842108'), + (30106, 299, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xAYQZxGA', '7842902'), + (30107, 299, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xAYQZxGA', '7842903'), + (30108, 299, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xAYQZxGA', '7842904'), + (30109, 299, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xAYQZxGA', '7842905'), + (30110, 299, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xAYQZxGA', '7855719'), + (30111, 299, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xAYQZxGA', '7860683'), + (30112, 299, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xAYQZxGA', '7860684'), + (30113, 299, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xAYQZxGA', '7866095'), + (30114, 299, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xAYQZxGA', '7869170'), + (30115, 299, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xAYQZxGA', '7869188'), + (30116, 299, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xAYQZxGA', '7869201'), + (30117, 299, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xAYQZxGA', '7877465'), + (30118, 299, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xAYQZxGA', '7888250'), + (30119, 299, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xAYQZxGA', '7904777'), + (30120, 299, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xAYQZxGA', '8349164'), + (30121, 299, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xAYQZxGA', '8349545'), + (30122, 299, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xAYQZxGA', '8368028'), + (30123, 299, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'xAYQZxGA', '8368029'), + (30124, 299, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xAYQZxGA', '8388462'), + (30125, 299, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xAYQZxGA', '8400273'), + (30126, 299, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'xAYQZxGA', '8400275'), + (30127, 299, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'xAYQZxGA', '8400276'), + (30128, 299, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xAYQZxGA', '8404977'), + (30129, 299, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xAYQZxGA', '8430783'), + (30130, 299, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xAYQZxGA', '8430784'), + (30131, 299, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xAYQZxGA', '8430799'), + (30132, 299, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xAYQZxGA', '8430800'), + (30133, 299, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xAYQZxGA', '8430801'), + (30134, 299, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'xAYQZxGA', '8438709'), + (30135, 299, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xAYQZxGA', '8457738'), + (30136, 299, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xAYQZxGA', '8459566'), + (30137, 299, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xAYQZxGA', '8459567'), + (30138, 299, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xAYQZxGA', '8461032'), + (30139, 299, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xAYQZxGA', '8477877'), + (30140, 299, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xAYQZxGA', '8485688'), + (30141, 299, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xAYQZxGA', '8490587'), + (30142, 299, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xAYQZxGA', '8493552'), + (30143, 299, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xAYQZxGA', '8493553'), + (30144, 299, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xAYQZxGA', '8493554'), + (30145, 299, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xAYQZxGA', '8493555'), + (30146, 299, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xAYQZxGA', '8493556'), + (30147, 299, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xAYQZxGA', '8493557'), + (30148, 299, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xAYQZxGA', '8493558'), + (30149, 299, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xAYQZxGA', '8493559'), + (30150, 299, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xAYQZxGA', '8493560'), + (30151, 299, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'xAYQZxGA', '8493561'), + (30152, 299, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xAYQZxGA', '8493572'), + (30153, 299, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAYQZxGA', '8540725'), + (30154, 299, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAYQZxGA', '8555421'), + (30155, 300, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ndaxPMZ4', '5441131'), + (30156, 300, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ndaxPMZ4', '5441132'), + (30157, 300, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndaxPMZ4', '5505059'), + (30158, 300, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ndaxPMZ4', '5509055'), + (30159, 300, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndaxPMZ4', '5512862'), + (30160, 300, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndaxPMZ4', '5513985'), + (30161, 300, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ndaxPMZ4', '5519981'), + (30162, 300, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndaxPMZ4', '5522550'), + (30163, 300, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndaxPMZ4', '5534683'), + (30164, 300, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ndaxPMZ4', '5537735'), + (30165, 300, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndaxPMZ4', '5540859'), + (30166, 300, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndaxPMZ4', '5546619'), + (30167, 300, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndaxPMZ4', '5557747'), + (30168, 300, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndaxPMZ4', '5560255'), + (30169, 300, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndaxPMZ4', '5562906'), + (30170, 300, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndaxPMZ4', '5600604'), + (30171, 300, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndaxPMZ4', '5605544'), + (30172, 300, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ndaxPMZ4', '5630960'), + (30173, 300, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndaxPMZ4', '5630961'), + (30174, 300, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndaxPMZ4', '5630962'), + (30175, 300, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndaxPMZ4', '5630966'), + (30176, 300, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ndaxPMZ4', '5630967'), + (30177, 300, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndaxPMZ4', '5630968'), + (30178, 300, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndaxPMZ4', '5635406'), + (30179, 300, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndaxPMZ4', '5638765'), + (30180, 300, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndaxPMZ4', '5640097'), + (30181, 300, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ndaxPMZ4', '5640843'), + (30182, 300, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndaxPMZ4', '5641521'), + (30183, 300, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ndaxPMZ4', '5642818'), + (30184, 300, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndaxPMZ4', '5652395'), + (30185, 300, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ndaxPMZ4', '5670445'), + (30186, 300, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndaxPMZ4', '5671637'), + (30187, 300, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndaxPMZ4', '5672329'), + (30188, 300, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndaxPMZ4', '5674057'), + (30189, 300, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndaxPMZ4', '5674060'), + (30190, 300, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndaxPMZ4', '5677461'), + (30191, 300, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndaxPMZ4', '5698046'), + (30192, 300, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ndaxPMZ4', '5699760'), + (30193, 300, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndaxPMZ4', '5741601'), + (30194, 300, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndaxPMZ4', '5763458'), + (30195, 300, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndaxPMZ4', '5774172'), + (30196, 300, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ndaxPMZ4', '5818247'), + (30197, 300, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndaxPMZ4', '5819471'), + (30198, 300, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndaxPMZ4', '5827739'), + (30199, 300, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndaxPMZ4', '5844306'), + (30200, 300, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndaxPMZ4', '5850159'), + (30201, 300, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndaxPMZ4', '5858999'), + (30202, 300, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndaxPMZ4', '5871984'), + (30203, 300, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndaxPMZ4', '5876354'), + (30204, 300, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndaxPMZ4', '5880939'), + (30205, 300, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ndaxPMZ4', '5880940'), + (30206, 300, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndaxPMZ4', '5880942'), + (30207, 300, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndaxPMZ4', '5880943'), + (30208, 300, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndaxPMZ4', '5887890'), + (30209, 300, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndaxPMZ4', '5888598'), + (30210, 300, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndaxPMZ4', '5893260'), + (30211, 300, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndaxPMZ4', '5899826'), + (30212, 300, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndaxPMZ4', '5900199'), + (30213, 300, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ndaxPMZ4', '5900200'), + (30214, 300, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndaxPMZ4', '5900202'), + (30215, 300, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndaxPMZ4', '5900203'), + (30216, 300, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndaxPMZ4', '5901108'), + (30217, 300, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndaxPMZ4', '5901126'), + (30218, 300, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndaxPMZ4', '5909655'), + (30219, 300, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndaxPMZ4', '5910522'), + (30220, 300, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndaxPMZ4', '5910526'), + (30221, 300, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndaxPMZ4', '5910528'), + (30222, 300, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ndaxPMZ4', '5916219'), + (30223, 300, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndaxPMZ4', '5936234'), + (30224, 300, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndaxPMZ4', '5958351'), + (30225, 300, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndaxPMZ4', '5959751'), + (30226, 300, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndaxPMZ4', '5959755'), + (30227, 300, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndaxPMZ4', '5960055'), + (30228, 300, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndaxPMZ4', '5961684'), + (30229, 300, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndaxPMZ4', '5962132'), + (30230, 300, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ndaxPMZ4', '5962133'), + (30231, 300, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndaxPMZ4', '5962134'), + (30232, 300, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndaxPMZ4', '5962317'), + (30233, 300, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndaxPMZ4', '5962318'), + (30234, 300, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndaxPMZ4', '5965933'), + (30235, 300, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndaxPMZ4', '5967014'), + (30236, 300, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndaxPMZ4', '5972815'), + (30237, 300, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndaxPMZ4', '5974016'), + (30238, 300, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndaxPMZ4', '5981515'), + (30239, 300, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndaxPMZ4', '5993516'), + (30240, 300, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndaxPMZ4', '5998939'), + (30241, 300, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndaxPMZ4', '6028191'), + (30242, 300, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndaxPMZ4', '6040066'), + (30243, 300, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndaxPMZ4', '6042717'), + (30244, 300, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndaxPMZ4', '6044838'), + (30245, 300, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndaxPMZ4', '6044839'), + (30246, 300, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaxPMZ4', '6045684'), + (30247, 300, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndaxPMZ4', '6050104'), + (30248, 300, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndaxPMZ4', '6053195'), + (30249, 300, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndaxPMZ4', '6053198'), + (30250, 300, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndaxPMZ4', '6056085'), + (30251, 300, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndaxPMZ4', '6056916'), + (30252, 300, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndaxPMZ4', '6059290'), + (30253, 300, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndaxPMZ4', '6060328'), + (30254, 300, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndaxPMZ4', '6061037'), + (30255, 300, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndaxPMZ4', '6061039'), + (30256, 300, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndaxPMZ4', '6067245'), + (30257, 300, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndaxPMZ4', '6068094'), + (30258, 300, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndaxPMZ4', '6068252'), + (30259, 300, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndaxPMZ4', '6068253'), + (30260, 300, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndaxPMZ4', '6068254'), + (30261, 300, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndaxPMZ4', '6068280'), + (30262, 300, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndaxPMZ4', '6069093'), + (30263, 300, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndaxPMZ4', '6072528'), + (30264, 300, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndaxPMZ4', '6079840'), + (30265, 300, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndaxPMZ4', '6083398'), + (30266, 300, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndaxPMZ4', '6093504'), + (30267, 300, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndaxPMZ4', '6097414'), + (30268, 300, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndaxPMZ4', '6097442'), + (30269, 300, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndaxPMZ4', '6097684'), + (30270, 300, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndaxPMZ4', '6098762'), + (30271, 300, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ndaxPMZ4', '6101361'), + (30272, 300, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndaxPMZ4', '6101362'), + (30273, 300, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndaxPMZ4', '6107314'), + (30274, 300, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndaxPMZ4', '6120034'), + (30275, 300, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'ndaxPMZ4', '6136733'), + (30276, 300, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndaxPMZ4', '6137989'), + (30277, 300, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndaxPMZ4', '6150864'), + (30278, 300, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndaxPMZ4', '6155491'), + (30279, 300, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndaxPMZ4', '6164417'), + (30280, 300, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndaxPMZ4', '6166388'), + (30281, 300, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndaxPMZ4', '6176439'), + (30282, 300, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndaxPMZ4', '6182410'), + (30283, 300, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndaxPMZ4', '6185812'), + (30284, 300, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndaxPMZ4', '6187651'), + (30285, 300, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndaxPMZ4', '6187963'), + (30286, 300, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndaxPMZ4', '6187964'), + (30287, 300, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndaxPMZ4', '6187966'), + (30288, 300, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndaxPMZ4', '6187967'), + (30289, 300, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndaxPMZ4', '6187969'), + (30290, 300, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndaxPMZ4', '6334878'), + (30291, 300, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndaxPMZ4', '6337236'), + (30292, 300, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndaxPMZ4', '6337970'), + (30293, 300, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndaxPMZ4', '6338308'), + (30294, 300, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndaxPMZ4', '6341710'), + (30295, 300, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndaxPMZ4', '6342044'), + (30296, 300, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndaxPMZ4', '6342298'), + (30297, 300, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndaxPMZ4', '6343294'), + (30298, 300, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndaxPMZ4', '6347034'), + (30299, 300, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndaxPMZ4', '6347056'), + (30300, 300, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndaxPMZ4', '6353830'), + (30301, 300, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndaxPMZ4', '6353831'), + (30302, 300, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndaxPMZ4', '6357867'), + (30303, 300, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndaxPMZ4', '6358652'), + (30304, 300, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndaxPMZ4', '6361709'), + (30305, 300, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndaxPMZ4', '6361710'), + (30306, 300, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndaxPMZ4', '6361711'), + (30307, 300, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndaxPMZ4', '6361712'), + (30308, 300, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndaxPMZ4', '6361713'), + (30309, 300, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndaxPMZ4', '6382573'), + (30310, 300, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ndaxPMZ4', '6388604'), + (30311, 300, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndaxPMZ4', '6394629'), + (30312, 300, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndaxPMZ4', '6394631'), + (30313, 300, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndaxPMZ4', '6440863'), + (30314, 300, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndaxPMZ4', '6445440'), + (30315, 300, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndaxPMZ4', '6453951'), + (30316, 300, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndaxPMZ4', '6461696'), + (30317, 300, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndaxPMZ4', '6462129'), + (30318, 300, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndaxPMZ4', '6463218'), + (30319, 300, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ndaxPMZ4', '6472181'), + (30320, 300, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndaxPMZ4', '6482693'), + (30321, 300, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ndaxPMZ4', '6484200'), + (30322, 300, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndaxPMZ4', '6484680'), + (30323, 300, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndaxPMZ4', '6507741'), + (30324, 300, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndaxPMZ4', '6514659'), + (30325, 300, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndaxPMZ4', '6514660'), + (30326, 300, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndaxPMZ4', '6519103'), + (30327, 300, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndaxPMZ4', '6535681'), + (30328, 300, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndaxPMZ4', '6584747'), + (30329, 300, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndaxPMZ4', '6587097'), + (30330, 300, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndaxPMZ4', '6609022'), + (30331, 300, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndaxPMZ4', '6632757'), + (30332, 300, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndaxPMZ4', '6644187'), + (30333, 300, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndaxPMZ4', '6648951'), + (30334, 300, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndaxPMZ4', '6648952'), + (30335, 300, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndaxPMZ4', '6655401'), + (30336, 300, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndaxPMZ4', '6661585'), + (30337, 300, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndaxPMZ4', '6661588'), + (30338, 300, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndaxPMZ4', '6661589'), + (30339, 300, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndaxPMZ4', '6699906'), + (30340, 300, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ndaxPMZ4', '6699913'), + (30341, 300, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndaxPMZ4', '6701109'), + (30342, 300, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndaxPMZ4', '6705219'), + (30343, 300, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndaxPMZ4', '6710153'), + (30344, 300, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndaxPMZ4', '6711552'), + (30345, 300, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ndaxPMZ4', '6711553'), + (30346, 300, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ndaxPMZ4', '6722688'), + (30347, 300, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ndaxPMZ4', '6730620'), + (30348, 300, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ndaxPMZ4', '6740364'), + (30349, 300, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ndaxPMZ4', '6743829'), + (30350, 300, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ndaxPMZ4', '7030380'), + (30351, 300, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ndaxPMZ4', '7033677'), + (30352, 300, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ndaxPMZ4', '7044715'), + (30353, 300, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ndaxPMZ4', '7050318'), + (30354, 300, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ndaxPMZ4', '7050319'), + (30355, 300, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ndaxPMZ4', '7050322'), + (30356, 300, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ndaxPMZ4', '7057804'), + (30357, 300, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ndaxPMZ4', '7072824'), + (30358, 300, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ndaxPMZ4', '7074348'), + (30359, 300, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndaxPMZ4', '7074364'), + (30360, 300, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ndaxPMZ4', '7089267'), + (30361, 300, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ndaxPMZ4', '7098747'), + (30362, 300, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ndaxPMZ4', '7113468'), + (30363, 300, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ndaxPMZ4', '7114856'), + (30364, 300, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ndaxPMZ4', '7114951'), + (30365, 300, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ndaxPMZ4', '7114955'), + (30366, 300, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ndaxPMZ4', '7114956'), + (30367, 300, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndaxPMZ4', '7114957'), + (30368, 300, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndaxPMZ4', '7159484'), + (30369, 300, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndaxPMZ4', '7178446'), + (30370, 300, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ndaxPMZ4', '7220467'), + (30371, 300, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndaxPMZ4', '7240354'), + (30372, 300, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndaxPMZ4', '7251633'), + (30373, 300, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndaxPMZ4', '7324073'), + (30374, 300, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndaxPMZ4', '7324074'), + (30375, 300, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndaxPMZ4', '7324075'), + (30376, 300, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ndaxPMZ4', '7324078'), + (30377, 300, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ndaxPMZ4', '7324082'), + (30378, 300, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ndaxPMZ4', '7331457'), + (30379, 300, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ndaxPMZ4', '7363643'), + (30380, 300, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndaxPMZ4', '7368606'), + (30381, 300, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndaxPMZ4', '7397462'), + (30382, 300, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndaxPMZ4', '7424275'), + (30383, 300, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndaxPMZ4', '7432751'), + (30384, 300, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndaxPMZ4', '7432752'), + (30385, 300, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndaxPMZ4', '7432753'), + (30386, 300, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432754'), + (30387, 300, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432755'), + (30388, 300, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432756'), + (30389, 300, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432758'), + (30390, 300, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndaxPMZ4', '7432759'), + (30391, 300, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndaxPMZ4', '7433834'), + (30392, 300, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndaxPMZ4', '7470197'), + (30393, 300, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndaxPMZ4', '7685613'), + (30394, 300, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndaxPMZ4', '7688194'), + (30395, 300, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndaxPMZ4', '7688196'), + (30396, 300, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndaxPMZ4', '7688289'), + (30397, 300, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ndaxPMZ4', '7692763'), + (30398, 300, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndaxPMZ4', '7697552'), + (30399, 300, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndaxPMZ4', '7699878'), + (30400, 300, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndaxPMZ4', '7704043'), + (30401, 300, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndaxPMZ4', '7712467'), + (30402, 300, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ndaxPMZ4', '7713585'), + (30403, 300, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ndaxPMZ4', '7713586'), + (30404, 300, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndaxPMZ4', '7738518'), + (30405, 300, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndaxPMZ4', '7750636'), + (30406, 300, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndaxPMZ4', '7796540'), + (30407, 300, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndaxPMZ4', '7796541'), + (30408, 300, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndaxPMZ4', '7796542'), + (30409, 300, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndaxPMZ4', '7825913'), + (30410, 300, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndaxPMZ4', '7826209'), + (30411, 300, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndaxPMZ4', '7834742'), + (30412, 300, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ndaxPMZ4', '7842108'), + (30413, 300, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndaxPMZ4', '7842902'), + (30414, 300, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndaxPMZ4', '7842903'), + (30415, 300, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndaxPMZ4', '7842904'), + (30416, 300, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndaxPMZ4', '7842905'), + (30417, 300, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndaxPMZ4', '7855719'), + (30418, 300, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndaxPMZ4', '7860683'), + (30419, 300, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndaxPMZ4', '7860684'), + (30420, 300, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndaxPMZ4', '7866095'), + (30421, 300, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndaxPMZ4', '7869170'), + (30422, 300, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ndaxPMZ4', '7869188'), + (30423, 300, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndaxPMZ4', '7869201'), + (30424, 300, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndaxPMZ4', '7877465'), + (30425, 300, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndaxPMZ4', '7888250'), + (30426, 300, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ndaxPMZ4', '7904777'), + (30427, 300, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndaxPMZ4', '8349164'), + (30428, 300, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndaxPMZ4', '8349545'), + (30429, 300, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndaxPMZ4', '8368028'), + (30430, 300, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndaxPMZ4', '8368029'), + (30431, 300, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndaxPMZ4', '8388462'), + (30432, 300, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndaxPMZ4', '8400273'), + (30433, 300, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndaxPMZ4', '8400275'), + (30434, 300, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ndaxPMZ4', '8400276'), + (30435, 300, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndaxPMZ4', '8404977'), + (30436, 300, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndaxPMZ4', '8430783'), + (30437, 300, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndaxPMZ4', '8430784'), + (30438, 300, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndaxPMZ4', '8430799'), + (30439, 300, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndaxPMZ4', '8430800'), + (30440, 300, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndaxPMZ4', '8430801'), + (30441, 300, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndaxPMZ4', '8438709'), + (30442, 300, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndaxPMZ4', '8457738'), + (30443, 300, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndaxPMZ4', '8459566'), + (30444, 300, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndaxPMZ4', '8459567'), + (30445, 300, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndaxPMZ4', '8461032'), + (30446, 300, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndaxPMZ4', '8477877'), + (30447, 300, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ndaxPMZ4', '8485688'), + (30448, 300, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ndaxPMZ4', '8490587'), + (30449, 300, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ndaxPMZ4', '8493552'), + (30450, 300, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ndaxPMZ4', '8493553'), + (30451, 300, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ndaxPMZ4', '8493554'), + (30452, 300, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ndaxPMZ4', '8493555'), + (30453, 300, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ndaxPMZ4', '8493556'), + (30454, 300, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ndaxPMZ4', '8493557'), + (30455, 300, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ndaxPMZ4', '8493558'), + (30456, 300, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ndaxPMZ4', '8493559'), + (30457, 300, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ndaxPMZ4', '8493560'), + (30458, 300, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ndaxPMZ4', '8493561'), + (30459, 300, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ndaxPMZ4', '8493572'), + (30460, 300, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ndaxPMZ4', '8540725'), + (30461, 300, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndaxPMZ4', '8555421'), + (30462, 301, 403, 'attending', '2021-02-25 02:10:40', '2025-12-17 19:47:51', '54koj9p4', '3236458'), + (30463, 301, 573, 'attending', '2021-02-26 23:03:34', '2025-12-17 19:47:50', '54koj9p4', '3435542'), + (30464, 301, 574, 'attending', '2021-03-06 00:34:26', '2025-12-17 19:47:51', '54koj9p4', '3435543'), + (30465, 301, 595, 'attending', '2021-03-08 21:57:10', '2025-12-17 19:47:51', '54koj9p4', '3467761'), + (30466, 301, 604, 'attending', '2021-02-27 03:52:51', '2025-12-17 19:47:50', '54koj9p4', '3470305'), + (30467, 301, 621, 'attending', '2021-03-03 07:14:01', '2025-12-17 19:47:51', '54koj9p4', '3517815'), + (30468, 301, 622, 'attending', '2021-03-08 21:39:05', '2025-12-17 19:47:51', '54koj9p4', '3517816'), + (30469, 301, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '54koj9p4', '3523941'), + (30470, 301, 630, 'attending', '2021-03-02 19:22:16', '2025-12-17 19:47:51', '54koj9p4', '3533425'), + (30471, 301, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54koj9p4', '3533850'), + (30472, 301, 633, 'attending', '2021-03-22 04:30:12', '2025-12-17 19:47:44', '54koj9p4', '3534717'), + (30473, 301, 634, 'maybe', '2021-04-02 04:24:53', '2025-12-17 19:47:44', '54koj9p4', '3534718'), + (30474, 301, 635, 'attending', '2021-04-09 20:19:07', '2025-12-17 19:47:44', '54koj9p4', '3534719'), + (30475, 301, 636, 'maybe', '2021-04-16 22:29:44', '2025-12-17 19:47:45', '54koj9p4', '3534720'), + (30476, 301, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '54koj9p4', '3536632'), + (30477, 301, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '54koj9p4', '3536656'), + (30478, 301, 641, 'attending', '2021-03-25 21:55:43', '2025-12-17 19:47:44', '54koj9p4', '3539916'), + (30479, 301, 642, 'attending', '2021-04-10 17:35:01', '2025-12-17 19:47:44', '54koj9p4', '3539917'), + (30480, 301, 643, 'attending', '2021-04-14 17:51:51', '2025-12-17 19:47:45', '54koj9p4', '3539918'), + (30481, 301, 644, 'not_attending', '2021-04-20 21:25:58', '2025-12-17 19:47:46', '54koj9p4', '3539919'), + (30482, 301, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54koj9p4', '3539920'), + (30483, 301, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54koj9p4', '3539921'), + (30484, 301, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54koj9p4', '3539922'), + (30485, 301, 648, 'attending', '2021-05-29 02:34:49', '2025-12-17 19:47:47', '54koj9p4', '3539923'), + (30486, 301, 649, 'attending', '2021-03-16 17:06:31', '2025-12-17 19:47:51', '54koj9p4', '3539927'), + (30487, 301, 650, 'attending', '2021-03-27 03:48:44', '2025-12-17 19:47:44', '54koj9p4', '3539928'), + (30488, 301, 678, 'attending', '2021-03-11 08:24:24', '2025-12-17 19:47:51', '54koj9p4', '3547158'), + (30489, 301, 684, 'not_attending', '2021-03-11 08:24:50', '2025-12-17 19:47:51', '54koj9p4', '3549257'), + (30490, 301, 692, 'attending', '2021-03-13 18:59:47', '2025-12-17 19:47:51', '54koj9p4', '3561995'), + (30491, 301, 704, 'maybe', '2021-03-29 17:09:53', '2025-12-17 19:47:44', '54koj9p4', '3581429'), + (30492, 301, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54koj9p4', '3582734'), + (30493, 301, 707, 'maybe', '2021-04-11 06:04:03', '2025-12-17 19:47:46', '54koj9p4', '3583262'), + (30494, 301, 708, 'maybe', '2021-03-25 19:04:08', '2025-12-17 19:47:44', '54koj9p4', '3587850'), + (30495, 301, 709, 'maybe', '2021-04-04 23:46:43', '2025-12-17 19:47:44', '54koj9p4', '3587852'), + (30496, 301, 710, 'maybe', '2021-04-04 23:46:47', '2025-12-17 19:47:44', '54koj9p4', '3587853'), + (30497, 301, 712, 'attending', '2021-03-29 17:09:41', '2025-12-17 19:47:44', '54koj9p4', '3604056'), + (30498, 301, 713, 'attending', '2021-03-29 17:10:04', '2025-12-17 19:47:44', '54koj9p4', '3604061'), + (30499, 301, 714, 'attending', '2021-03-29 17:10:12', '2025-12-17 19:47:44', '54koj9p4', '3604063'), + (30500, 301, 717, 'maybe', '2021-03-25 18:22:46', '2025-12-17 19:47:44', '54koj9p4', '3619523'), + (30501, 301, 724, 'maybe', '2021-04-11 06:03:56', '2025-12-17 19:47:46', '54koj9p4', '3661369'), + (30502, 301, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54koj9p4', '3674262'), + (30503, 301, 734, 'maybe', '2021-04-04 23:45:38', '2025-12-17 19:47:44', '54koj9p4', '3676806'), + (30504, 301, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54koj9p4', '3677402'), + (30505, 301, 742, 'maybe', '2021-06-14 15:41:27', '2025-12-17 19:47:48', '54koj9p4', '3680622'), + (30506, 301, 748, 'maybe', '2021-04-07 21:45:47', '2025-12-17 19:47:44', '54koj9p4', '3685353'), + (30507, 301, 752, 'attending', '2021-04-15 23:09:20', '2025-12-17 19:47:44', '54koj9p4', '3699422'), + (30508, 301, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54koj9p4', '3730212'), + (30509, 301, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '54koj9p4', '3793156'), + (30510, 301, 823, 'not_attending', '2021-06-19 17:25:38', '2025-12-17 19:47:48', '54koj9p4', '3974109'), + (30511, 301, 827, 'attending', '2021-06-05 21:05:30', '2025-12-17 19:47:47', '54koj9p4', '3975311'), + (30512, 301, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '54koj9p4', '3975312'), + (30513, 301, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54koj9p4', '3994992'), + (30514, 301, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '54koj9p4', '4014338'), + (30515, 301, 867, 'not_attending', '2021-06-26 18:04:59', '2025-12-17 19:47:38', '54koj9p4', '4021848'), + (30516, 301, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '54koj9p4', '4136744'), + (30517, 301, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '54koj9p4', '4136937'), + (30518, 301, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '54koj9p4', '4136938'), + (30519, 301, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '54koj9p4', '4136947'), + (30520, 301, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54koj9p4', '4210314'), + (30521, 301, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54koj9p4', '4225444'), + (30522, 301, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54koj9p4', '4239259'), + (30523, 301, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '54koj9p4', '4240316'), + (30524, 301, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '54koj9p4', '4240317'), + (30525, 301, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '54koj9p4', '4240318'), + (30526, 301, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '54koj9p4', '4240320'), + (30527, 301, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '54koj9p4', '4250163'), + (30528, 301, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54koj9p4', '4275957'), + (30529, 301, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54koj9p4', '4277819'), + (30530, 301, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54koj9p4', '4301723'), + (30531, 301, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '54koj9p4', '4302093'), + (30532, 301, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '54koj9p4', '4304151'), + (30533, 301, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54koj9p4', '4356801'), + (30534, 301, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '54koj9p4', '4366186'), + (30535, 301, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '54koj9p4', '4366187'), + (30536, 301, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '54koj9p4', '4420735'), + (30537, 301, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '54koj9p4', '4420738'), + (30538, 301, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '54koj9p4', '4420739'), + (30539, 301, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '54koj9p4', '4420741'), + (30540, 301, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '54koj9p4', '4420744'), + (30541, 301, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '54koj9p4', '4420747'), + (30542, 301, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '54koj9p4', '4420748'), + (30543, 301, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '54koj9p4', '4420749'), + (30544, 301, 1017, 'attending', '2021-09-06 01:21:14', '2025-12-17 19:47:43', '54koj9p4', '4441822'), + (30545, 301, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '54koj9p4', '4461883'), + (30546, 301, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '54koj9p4', '4508342'), + (30547, 301, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '54koj9p4', '4568602'), + (30548, 301, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '54koj9p4', '4572153'), + (30549, 301, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', '54koj9p4', '4585962'), + (30550, 301, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '54koj9p4', '4596356'), + (30551, 301, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '54koj9p4', '4598860'), + (30552, 301, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '54koj9p4', '4598861'), + (30553, 301, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '54koj9p4', '4602797'), + (30554, 301, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '54koj9p4', '4637896'), + (30555, 301, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '54koj9p4', '4642994'), + (30556, 301, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '54koj9p4', '4642995'), + (30557, 301, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '54koj9p4', '4642996'), + (30558, 301, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '54koj9p4', '4642997'), + (30559, 301, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '54koj9p4', '4645687'), + (30560, 301, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '54koj9p4', '4645698'), + (30561, 301, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '54koj9p4', '4645704'), + (30562, 301, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '54koj9p4', '4645705'), + (30563, 301, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '54koj9p4', '4668385'), + (30564, 301, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '54koj9p4', '4694407'), + (30565, 301, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '54koj9p4', '4706262'), + (30566, 301, 1153, 'attending', '2022-01-20 00:16:49', '2025-12-17 19:47:32', '54koj9p4', '4708707'), + (30567, 301, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '54koj9p4', '4736497'), + (30568, 301, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '54koj9p4', '4736499'), + (30569, 301, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '54koj9p4', '4736500'), + (30570, 301, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '54koj9p4', '4736503'), + (30571, 301, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '54koj9p4', '4736504'), + (30572, 301, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '54koj9p4', '4746789'), + (30573, 301, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '54koj9p4', '4753929'), + (30574, 301, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '54koj9p4', '5038850'), + (30575, 301, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '54koj9p4', '5045826'), + (30576, 301, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '54koj9p4', '5132533'), + (30577, 301, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '54koj9p4', '5186582'), + (30578, 301, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '54koj9p4', '5186583'), + (30579, 301, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '54koj9p4', '5186585'), + (30580, 301, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '54koj9p4', '5190437'), + (30581, 301, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '54koj9p4', '5195095'), + (30582, 301, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '54koj9p4', '5215989'), + (30583, 301, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '54koj9p4', '5223686'), + (30584, 301, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '54koj9p4', '5227432'), + (30585, 301, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '54koj9p4', '5247467'), + (30586, 301, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '54koj9p4', '5260800'), + (30587, 301, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '54koj9p4', '5269930'), + (30588, 301, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '54koj9p4', '5271448'), + (30589, 301, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '54koj9p4', '5271449'), + (30590, 301, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '54koj9p4', '5276469'), + (30591, 301, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '54koj9p4', '5278159'), + (30592, 301, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '54koj9p4', '5363695'), + (30593, 301, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '54koj9p4', '5365960'), + (30594, 301, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '54koj9p4', '5368973'), + (30595, 301, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '54koj9p4', '5378247'), + (30596, 301, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', '54koj9p4', '5389605'), + (30597, 301, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '54koj9p4', '5397265'), + (30598, 301, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '54koj9p4', '5403967'), + (30599, 301, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '54koj9p4', '5404786'), + (30600, 301, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '54koj9p4', '5405203'), + (30601, 301, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '54koj9p4', '5411699'), + (30602, 301, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '54koj9p4', '5412550'), + (30603, 301, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '54koj9p4', '5415046'), + (30604, 301, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '54koj9p4', '5422086'), + (30605, 301, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '54koj9p4', '5422406'), + (30606, 301, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '54koj9p4', '5424565'), + (30607, 301, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '54koj9p4', '5426882'), + (30608, 301, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '54koj9p4', '5427083'), + (30609, 301, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '54koj9p4', '5441125'), + (30610, 301, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '54koj9p4', '5441126'), + (30611, 301, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '54koj9p4', '5441128'), + (30612, 301, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '54koj9p4', '5446643'), + (30613, 301, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '54koj9p4', '5453325'), + (30614, 301, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '54koj9p4', '5454516'), + (30615, 301, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '54koj9p4', '5454605'), + (30616, 301, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '54koj9p4', '5455037'), + (30617, 301, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '54koj9p4', '5461278'), + (30618, 301, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '54koj9p4', '5469480'), + (30619, 301, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '54koj9p4', '5471073'), + (30620, 301, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '54koj9p4', '5474663'), + (30621, 301, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '54koj9p4', '5482022'), + (30622, 301, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '54koj9p4', '5482793'), + (30623, 301, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '54koj9p4', '5488912'), + (30624, 301, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '54koj9p4', '5492192'), + (30625, 301, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '54koj9p4', '5493139'), + (30626, 301, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '54koj9p4', '5493200'), + (30627, 301, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '54koj9p4', '5502188'), + (30628, 301, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '54koj9p4', '5512862'), + (30629, 301, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '54koj9p4', '5513985'), + (30630, 301, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54koj9p4', '6045684'), + (30631, 302, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mR1ej6Ed', '7074364'), + (30632, 302, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mR1ej6Ed', '7324073'), + (30633, 302, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mR1ej6Ed', '7324074'), + (30634, 302, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mR1ej6Ed', '7324075'), + (30635, 302, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mR1ej6Ed', '7324078'), + (30636, 302, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mR1ej6Ed', '7324867'), + (30637, 302, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mR1ej6Ed', '7331457'), + (30638, 302, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'mR1ej6Ed', '7332564'), + (30639, 302, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'mR1ej6Ed', '7335193'), + (30640, 302, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mR1ej6Ed', '7359624'), + (30641, 302, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mR1ej6Ed', '7363643'), + (30642, 302, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mR1ej6Ed', '7368606'), + (30643, 303, 408, 'attending', '2021-02-19 00:06:55', '2025-12-17 19:47:50', 'Pm7ky95m', '3236466'), + (30644, 303, 599, 'attending', '2021-02-17 00:56:42', '2025-12-17 19:47:50', 'Pm7ky95m', '3468117'), + (30645, 303, 600, 'attending', '2021-02-22 00:25:27', '2025-12-17 19:47:50', 'Pm7ky95m', '3468125'), + (30646, 303, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'Pm7ky95m', '3470305'), + (30647, 303, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'Pm7ky95m', '3470991'), + (30648, 303, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'Pm7ky95m', '3517815'), + (30649, 303, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'Pm7ky95m', '3517816'), + (30650, 303, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'Pm7ky95m', '3523941'), + (30651, 303, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Pm7ky95m', '3533850'), + (30652, 303, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Pm7ky95m', '3536632'), + (30653, 303, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Pm7ky95m', '3536656'), + (30654, 303, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Pm7ky95m', '3539916'), + (30655, 303, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Pm7ky95m', '3539917'), + (30656, 303, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Pm7ky95m', '3539918'), + (30657, 303, 644, 'attending', '2021-04-24 22:53:26', '2025-12-17 19:47:45', 'Pm7ky95m', '3539919'), + (30658, 303, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Pm7ky95m', '3539920'), + (30659, 303, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Pm7ky95m', '3539921'), + (30660, 303, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Pm7ky95m', '3539922'), + (30661, 303, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Pm7ky95m', '3539923'), + (30662, 303, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Pm7ky95m', '3539927'), + (30663, 303, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Pm7ky95m', '3582734'), + (30664, 303, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm7ky95m', '3583262'), + (30665, 303, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Pm7ky95m', '3619523'), + (30666, 303, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7ky95m', '3661369'), + (30667, 303, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7ky95m', '3674262'), + (30668, 303, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm7ky95m', '3677402'), + (30669, 303, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7ky95m', '3730212'), + (30670, 303, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7ky95m', '3793156'), + (30671, 303, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Pm7ky95m', '3974109'), + (30672, 303, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7ky95m', '3975311'), + (30673, 303, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Pm7ky95m', '3975312'), + (30674, 303, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7ky95m', '3994992'), + (30675, 303, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Pm7ky95m', '4014338'), + (30676, 303, 867, 'attending', '2021-06-26 22:18:44', '2025-12-17 19:47:38', 'Pm7ky95m', '4021848'), + (30677, 303, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Pm7ky95m', '4136744'), + (30678, 303, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Pm7ky95m', '4136937'), + (30679, 303, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Pm7ky95m', '4136938'), + (30680, 303, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Pm7ky95m', '4136947'), + (30681, 303, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Pm7ky95m', '4210314'), + (30682, 303, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Pm7ky95m', '4225444'), + (30683, 303, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Pm7ky95m', '4239259'), + (30684, 303, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Pm7ky95m', '4240316'), + (30685, 303, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Pm7ky95m', '4240317'), + (30686, 303, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Pm7ky95m', '4240318'), + (30687, 303, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Pm7ky95m', '4240320'), + (30688, 303, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Pm7ky95m', '4250163'), + (30689, 303, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Pm7ky95m', '4275957'), + (30690, 303, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Pm7ky95m', '4277819'), + (30691, 303, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Pm7ky95m', '4301723'), + (30692, 303, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'Pm7ky95m', '4302093'), + (30693, 303, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Pm7ky95m', '4304151'), + (30694, 303, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'Pm7ky95m', '4345519'), + (30695, 303, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Pm7ky95m', '4356801'), + (30696, 303, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'Pm7ky95m', '4358025'), + (30697, 303, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Pm7ky95m', '4366186'), + (30698, 303, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Pm7ky95m', '4366187'), + (30699, 303, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'Pm7ky95m', '4402823'), + (30700, 303, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Pm7ky95m', '4420735'), + (30701, 303, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Pm7ky95m', '4420738'), + (30702, 303, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Pm7ky95m', '4420739'), + (30703, 303, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Pm7ky95m', '4420741'), + (30704, 303, 995, 'attending', '2021-10-09 15:47:28', '2025-12-17 19:47:34', 'Pm7ky95m', '4420744'), + (30705, 303, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Pm7ky95m', '4420747'), + (30706, 303, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Pm7ky95m', '4420748'), + (30707, 303, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Pm7ky95m', '4420749'), + (30708, 303, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Pm7ky95m', '4461883'), + (30709, 303, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Pm7ky95m', '4508342'), + (30710, 303, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Pm7ky95m', '4568602'), + (30711, 303, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Pm7ky95m', '4572153'), + (30712, 303, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'Pm7ky95m', '4585962'), + (30713, 303, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Pm7ky95m', '4596356'), + (30714, 303, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Pm7ky95m', '4598860'), + (30715, 303, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Pm7ky95m', '4598861'), + (30716, 303, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Pm7ky95m', '4602797'), + (30717, 303, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Pm7ky95m', '4637896'), + (30718, 303, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Pm7ky95m', '4642994'), + (30719, 303, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Pm7ky95m', '4642995'), + (30720, 303, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Pm7ky95m', '4642996'), + (30721, 303, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Pm7ky95m', '4642997'), + (30722, 303, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Pm7ky95m', '4645687'), + (30723, 303, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Pm7ky95m', '4645698'), + (30724, 303, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Pm7ky95m', '4645704'), + (30725, 303, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Pm7ky95m', '4645705'), + (30726, 303, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Pm7ky95m', '4668385'), + (30727, 303, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Pm7ky95m', '4694407'), + (30728, 303, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Pm7ky95m', '4736497'), + (30729, 303, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Pm7ky95m', '4736499'), + (30730, 303, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Pm7ky95m', '4736500'), + (30731, 303, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Pm7ky95m', '4736503'), + (30732, 303, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Pm7ky95m', '4736504'), + (30733, 303, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Pm7ky95m', '4746789'), + (30734, 303, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Pm7ky95m', '4753929'), + (30735, 303, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Pm7ky95m', '5038850'), + (30736, 303, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Pm7ky95m', '5045826'), + (30737, 303, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Pm7ky95m', '5132533'), + (30738, 303, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Pm7ky95m', '5186582'), + (30739, 303, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Pm7ky95m', '5186583'), + (30740, 303, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Pm7ky95m', '5186585'), + (30741, 303, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Pm7ky95m', '5190437'), + (30742, 303, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Pm7ky95m', '5195095'), + (30743, 303, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Pm7ky95m', '5215989'), + (30744, 303, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Pm7ky95m', '5223686'), + (30745, 303, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Pm7ky95m', '5247467'), + (30746, 303, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Pm7ky95m', '5260800'), + (30747, 303, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Pm7ky95m', '5269930'), + (30748, 303, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Pm7ky95m', '5271448'), + (30749, 303, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'Pm7ky95m', '5271449'), + (30750, 303, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Pm7ky95m', '5278159'), + (30751, 303, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Pm7ky95m', '5363695'), + (30752, 303, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Pm7ky95m', '5365960'), + (30753, 303, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Pm7ky95m', '5378247'), + (30754, 303, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'Pm7ky95m', '5389605'), + (30755, 303, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Pm7ky95m', '5397265'), + (30756, 303, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Pm7ky95m', '5404786'), + (30757, 303, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Pm7ky95m', '5405203'), + (30758, 303, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Pm7ky95m', '5412550'), + (30759, 303, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Pm7ky95m', '5415046'), + (30760, 303, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Pm7ky95m', '5422086'), + (30761, 303, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Pm7ky95m', '5422406'), + (30762, 303, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Pm7ky95m', '5424565'), + (30763, 303, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Pm7ky95m', '5426882'), + (30764, 303, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Pm7ky95m', '5441125'), + (30765, 303, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Pm7ky95m', '5441126'), + (30766, 303, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Pm7ky95m', '5441128'), + (30767, 303, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Pm7ky95m', '5441131'), + (30768, 303, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Pm7ky95m', '5441132'), + (30769, 303, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Pm7ky95m', '5453325'), + (30770, 303, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Pm7ky95m', '5454516'), + (30771, 303, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Pm7ky95m', '5454605'), + (30772, 303, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Pm7ky95m', '5455037'), + (30773, 303, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Pm7ky95m', '5461278'), + (30774, 303, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Pm7ky95m', '5469480'), + (30775, 303, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Pm7ky95m', '5474663'), + (30776, 303, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Pm7ky95m', '5482022'), + (30777, 303, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Pm7ky95m', '5488912'), + (30778, 303, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Pm7ky95m', '5492192'), + (30779, 303, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Pm7ky95m', '5493139'), + (30780, 303, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Pm7ky95m', '5493200'), + (30781, 303, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Pm7ky95m', '5502188'), + (30782, 303, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Pm7ky95m', '5505059'), + (30783, 303, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Pm7ky95m', '5509055'), + (30784, 303, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Pm7ky95m', '5512862'), + (30785, 303, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Pm7ky95m', '5513985'), + (30786, 303, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'Pm7ky95m', '5519981'), + (30787, 303, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Pm7ky95m', '5522550'), + (30788, 303, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Pm7ky95m', '5534683'), + (30789, 303, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Pm7ky95m', '5537735'), + (30790, 303, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Pm7ky95m', '5540859'), + (30791, 303, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Pm7ky95m', '5546619'), + (30792, 303, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Pm7ky95m', '5557747'), + (30793, 303, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Pm7ky95m', '5560255'), + (30794, 303, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Pm7ky95m', '5562906'), + (30795, 303, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Pm7ky95m', '5600604'), + (30796, 303, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Pm7ky95m', '5605544'), + (30797, 303, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Pm7ky95m', '5630960'), + (30798, 303, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Pm7ky95m', '5630961'), + (30799, 303, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Pm7ky95m', '5630962'), + (30800, 303, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Pm7ky95m', '5630966'), + (30801, 303, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Pm7ky95m', '5630967'), + (30802, 303, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Pm7ky95m', '5630968'), + (30803, 303, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Pm7ky95m', '5635406'), + (30804, 303, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Pm7ky95m', '5638765'), + (30805, 303, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Pm7ky95m', '5640097'), + (30806, 303, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Pm7ky95m', '5640843'), + (30807, 303, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Pm7ky95m', '5641521'), + (30808, 303, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Pm7ky95m', '5642818'), + (30809, 303, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Pm7ky95m', '5652395'), + (30810, 303, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Pm7ky95m', '5670445'), + (30811, 303, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Pm7ky95m', '5671637'), + (30812, 303, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Pm7ky95m', '5672329'), + (30813, 303, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Pm7ky95m', '5674057'), + (30814, 303, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Pm7ky95m', '5674060'), + (30815, 303, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Pm7ky95m', '5677461'), + (30816, 303, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Pm7ky95m', '5698046'), + (30817, 303, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Pm7ky95m', '5699760'), + (30818, 303, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Pm7ky95m', '5741601'), + (30819, 303, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Pm7ky95m', '5763458'), + (30820, 303, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Pm7ky95m', '5774172'), + (30821, 303, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'Pm7ky95m', '5818247'), + (30822, 303, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Pm7ky95m', '5819471'), + (30823, 303, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Pm7ky95m', '5827739'), + (30824, 303, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Pm7ky95m', '5844306'), + (30825, 303, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Pm7ky95m', '5850159'), + (30826, 303, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Pm7ky95m', '5858999'), + (30827, 303, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Pm7ky95m', '5871984'), + (30828, 303, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Pm7ky95m', '5876354'), + (30829, 303, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Pm7ky95m', '5880939'), + (30830, 303, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Pm7ky95m', '5880940'), + (30831, 303, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Pm7ky95m', '5880942'), + (30832, 303, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Pm7ky95m', '5880943'), + (30833, 303, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Pm7ky95m', '5887890'), + (30834, 303, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Pm7ky95m', '5888598'), + (30835, 303, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Pm7ky95m', '5893260'), + (30836, 303, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Pm7ky95m', '5899826'), + (30837, 303, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Pm7ky95m', '5900199'), + (30838, 303, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Pm7ky95m', '5900200'), + (30839, 303, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Pm7ky95m', '5900202'), + (30840, 303, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Pm7ky95m', '5900203'), + (30841, 303, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Pm7ky95m', '5901108'), + (30842, 303, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Pm7ky95m', '5901126'), + (30843, 303, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Pm7ky95m', '5909655'), + (30844, 303, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Pm7ky95m', '5910522'), + (30845, 303, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Pm7ky95m', '5910526'), + (30846, 303, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Pm7ky95m', '5910528'), + (30847, 303, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Pm7ky95m', '5916219'), + (30848, 303, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Pm7ky95m', '5936234'), + (30849, 303, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Pm7ky95m', '5958351'), + (30850, 303, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Pm7ky95m', '5959751'), + (30851, 303, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Pm7ky95m', '5959755'), + (30852, 303, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Pm7ky95m', '5960055'), + (30853, 303, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Pm7ky95m', '5961684'), + (30854, 303, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Pm7ky95m', '5962132'), + (30855, 303, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Pm7ky95m', '5962133'), + (30856, 303, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Pm7ky95m', '5962134'), + (30857, 303, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Pm7ky95m', '5962317'), + (30858, 303, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Pm7ky95m', '5962318'), + (30859, 303, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Pm7ky95m', '5965933'), + (30860, 303, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Pm7ky95m', '5967014'), + (30861, 303, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Pm7ky95m', '5972815'), + (30862, 303, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Pm7ky95m', '5974016'), + (30863, 303, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Pm7ky95m', '5981515'), + (30864, 303, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Pm7ky95m', '5993516'), + (30865, 303, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Pm7ky95m', '5998939'), + (30866, 303, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Pm7ky95m', '6028191'), + (30867, 303, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Pm7ky95m', '6040066'), + (30868, 303, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Pm7ky95m', '6042717'), + (30869, 303, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Pm7ky95m', '6044838'), + (30870, 303, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Pm7ky95m', '6044839'), + (30871, 303, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7ky95m', '6045684'), + (30872, 303, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Pm7ky95m', '6050104'), + (30873, 303, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Pm7ky95m', '6053195'), + (30874, 303, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Pm7ky95m', '6053198'), + (30875, 303, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Pm7ky95m', '6056085'), + (30876, 303, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Pm7ky95m', '6056916'), + (30877, 303, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Pm7ky95m', '6059290'), + (30878, 303, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Pm7ky95m', '6060328'), + (30879, 303, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Pm7ky95m', '6061037'), + (30880, 303, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Pm7ky95m', '6061039'), + (30881, 303, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Pm7ky95m', '6067245'), + (30882, 303, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Pm7ky95m', '6068094'), + (30883, 303, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Pm7ky95m', '6068252'), + (30884, 303, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Pm7ky95m', '6068253'), + (30885, 303, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Pm7ky95m', '6068254'), + (30886, 303, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Pm7ky95m', '6068280'), + (30887, 303, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Pm7ky95m', '6069093'), + (30888, 303, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Pm7ky95m', '6072528'), + (30889, 303, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Pm7ky95m', '6079840'), + (30890, 303, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Pm7ky95m', '6083398'), + (30891, 303, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Pm7ky95m', '6093504'), + (30892, 303, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Pm7ky95m', '6097414'), + (30893, 303, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Pm7ky95m', '6097442'), + (30894, 303, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Pm7ky95m', '6097684'), + (30895, 303, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Pm7ky95m', '6098762'), + (30896, 303, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Pm7ky95m', '6101361'), + (30897, 303, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Pm7ky95m', '6101362'), + (30898, 303, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Pm7ky95m', '6107314'), + (30899, 303, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Pm7ky95m', '6120034'), + (30900, 303, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'Pm7ky95m', '6136733'), + (30901, 303, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Pm7ky95m', '6137989'), + (30902, 303, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Pm7ky95m', '6150864'), + (30903, 303, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Pm7ky95m', '6155491'), + (30904, 303, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Pm7ky95m', '6164417'), + (30905, 303, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Pm7ky95m', '6166388'), + (30906, 303, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Pm7ky95m', '6176439'), + (30907, 303, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Pm7ky95m', '6182410'), + (30908, 303, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Pm7ky95m', '6185812'), + (30909, 303, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Pm7ky95m', '6187651'), + (30910, 303, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Pm7ky95m', '6187963'), + (30911, 303, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Pm7ky95m', '6187964'), + (30912, 303, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Pm7ky95m', '6187966'), + (30913, 303, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Pm7ky95m', '6187967'), + (30914, 303, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Pm7ky95m', '6187969'), + (30915, 303, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Pm7ky95m', '6334878'), + (30916, 303, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Pm7ky95m', '6337236'), + (30917, 303, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Pm7ky95m', '6337970'), + (30918, 303, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Pm7ky95m', '6338308'), + (30919, 303, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Pm7ky95m', '6341710'), + (30920, 303, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Pm7ky95m', '6342044'), + (30921, 303, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Pm7ky95m', '6342298'), + (30922, 303, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Pm7ky95m', '6343294'), + (30923, 303, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Pm7ky95m', '6347034'), + (30924, 303, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Pm7ky95m', '6347056'), + (30925, 303, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Pm7ky95m', '6353830'), + (30926, 303, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Pm7ky95m', '6353831'), + (30927, 303, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Pm7ky95m', '6357867'), + (30928, 303, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Pm7ky95m', '6358652'), + (30929, 303, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Pm7ky95m', '6361709'), + (30930, 303, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Pm7ky95m', '6361710'), + (30931, 303, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Pm7ky95m', '6361711'), + (30932, 303, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Pm7ky95m', '6361712'), + (30933, 303, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Pm7ky95m', '6361713'), + (30934, 303, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Pm7ky95m', '6382573'), + (30935, 303, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Pm7ky95m', '6388604'), + (30936, 303, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Pm7ky95m', '6394629'), + (30937, 303, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Pm7ky95m', '6394631'), + (30938, 303, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Pm7ky95m', '6440863'), + (30939, 303, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Pm7ky95m', '6445440'), + (30940, 303, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Pm7ky95m', '6453951'), + (30941, 303, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Pm7ky95m', '6461696'), + (30942, 303, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Pm7ky95m', '6462129'), + (30943, 303, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Pm7ky95m', '6463218'), + (30944, 303, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Pm7ky95m', '6472181'), + (30945, 303, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Pm7ky95m', '6482693'), + (30946, 303, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Pm7ky95m', '6484200'), + (30947, 303, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Pm7ky95m', '6484680'), + (30948, 303, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Pm7ky95m', '6507741'), + (30949, 303, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Pm7ky95m', '6514659'), + (30950, 303, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Pm7ky95m', '6514660'), + (30951, 303, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Pm7ky95m', '6519103'), + (30952, 303, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Pm7ky95m', '6535681'), + (30953, 303, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Pm7ky95m', '6584747'), + (30954, 303, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Pm7ky95m', '6587097'), + (30955, 303, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Pm7ky95m', '6609022'), + (30956, 303, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Pm7ky95m', '6632757'), + (30957, 303, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Pm7ky95m', '6644187'), + (30958, 303, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Pm7ky95m', '6648951'), + (30959, 303, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Pm7ky95m', '6648952'), + (30960, 303, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Pm7ky95m', '6655401'), + (30961, 303, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Pm7ky95m', '6661585'), + (30962, 303, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Pm7ky95m', '6661588'), + (30963, 303, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Pm7ky95m', '6661589'), + (30964, 303, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Pm7ky95m', '6699906'), + (30965, 303, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Pm7ky95m', '6699913'), + (30966, 303, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Pm7ky95m', '6701109'), + (30967, 303, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Pm7ky95m', '6705219'), + (30968, 303, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Pm7ky95m', '6710153'), + (30969, 303, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Pm7ky95m', '6711552'), + (30970, 303, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'Pm7ky95m', '6711553'), + (30971, 303, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Pm7ky95m', '6722688'), + (30972, 303, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Pm7ky95m', '6730620'), + (30973, 303, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Pm7ky95m', '6740364'), + (30974, 303, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Pm7ky95m', '6743829'), + (30975, 303, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Pm7ky95m', '7030380'), + (30976, 303, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Pm7ky95m', '7033677'), + (30977, 303, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Pm7ky95m', '7044715'), + (30978, 303, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Pm7ky95m', '7050318'), + (30979, 303, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Pm7ky95m', '7050319'), + (30980, 303, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Pm7ky95m', '7050322'), + (30981, 303, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Pm7ky95m', '7057804'), + (30982, 303, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Pm7ky95m', '7072824'), + (30983, 303, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Pm7ky95m', '7074348'), + (30984, 303, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Pm7ky95m', '7074364'), + (30985, 303, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Pm7ky95m', '7089267'), + (30986, 303, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Pm7ky95m', '7098747'), + (30987, 303, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Pm7ky95m', '7113468'), + (30988, 303, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Pm7ky95m', '7114856'), + (30989, 303, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Pm7ky95m', '7114951'), + (30990, 303, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Pm7ky95m', '7114955'), + (30991, 303, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Pm7ky95m', '7114956'), + (30992, 303, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Pm7ky95m', '7114957'), + (30993, 303, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Pm7ky95m', '7159484'), + (30994, 303, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Pm7ky95m', '7178446'), + (30995, 303, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Pm7ky95m', '7220467'), + (30996, 303, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Pm7ky95m', '7240354'), + (30997, 303, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Pm7ky95m', '7251633'), + (30998, 303, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Pm7ky95m', '7324073'), + (30999, 303, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Pm7ky95m', '7324074'), + (31000, 303, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Pm7ky95m', '7324075'), + (31001, 303, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Pm7ky95m', '7324078'), + (31002, 303, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Pm7ky95m', '7324082'), + (31003, 303, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Pm7ky95m', '7331457'), + (31004, 303, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Pm7ky95m', '7363643'), + (31005, 303, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Pm7ky95m', '7368606'), + (31006, 303, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Pm7ky95m', '7397462'), + (31007, 303, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Pm7ky95m', '7424275'), + (31008, 303, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Pm7ky95m', '7432751'), + (31009, 303, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Pm7ky95m', '7432752'), + (31010, 303, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Pm7ky95m', '7432753'), + (31011, 303, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Pm7ky95m', '7432754'), + (31012, 303, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Pm7ky95m', '7432755'), + (31013, 303, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Pm7ky95m', '7432756'), + (31014, 303, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Pm7ky95m', '7432758'), + (31015, 303, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Pm7ky95m', '7432759'), + (31016, 303, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Pm7ky95m', '7433834'), + (31017, 303, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Pm7ky95m', '7470197'), + (31018, 303, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Pm7ky95m', '7685613'), + (31019, 303, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Pm7ky95m', '7688194'), + (31020, 303, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Pm7ky95m', '7688196'), + (31021, 303, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Pm7ky95m', '7688289'), + (31022, 303, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Pm7ky95m', '7692763'), + (31023, 303, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Pm7ky95m', '7697552'), + (31024, 303, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Pm7ky95m', '7699878'), + (31025, 303, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Pm7ky95m', '7704043'), + (31026, 303, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Pm7ky95m', '7712467'), + (31027, 303, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Pm7ky95m', '7713585'), + (31028, 303, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Pm7ky95m', '7713586'), + (31029, 303, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Pm7ky95m', '7738518'), + (31030, 303, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Pm7ky95m', '7750636'), + (31031, 303, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Pm7ky95m', '7796540'), + (31032, 303, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Pm7ky95m', '7796541'), + (31033, 303, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Pm7ky95m', '7796542'), + (31034, 303, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Pm7ky95m', '7825913'), + (31035, 303, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Pm7ky95m', '7826209'), + (31036, 303, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Pm7ky95m', '7834742'), + (31037, 303, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Pm7ky95m', '7842108'), + (31038, 303, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Pm7ky95m', '7842902'), + (31039, 303, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Pm7ky95m', '7842903'), + (31040, 303, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Pm7ky95m', '7842904'), + (31041, 303, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Pm7ky95m', '7842905'), + (31042, 303, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Pm7ky95m', '7855719'), + (31043, 303, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Pm7ky95m', '7860683'), + (31044, 303, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Pm7ky95m', '7860684'), + (31045, 303, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Pm7ky95m', '7866095'), + (31046, 303, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Pm7ky95m', '7869170'), + (31047, 303, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Pm7ky95m', '7869188'), + (31048, 303, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Pm7ky95m', '7869201'), + (31049, 303, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Pm7ky95m', '7877465'), + (31050, 303, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Pm7ky95m', '7888250'), + (31051, 303, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Pm7ky95m', '7904777'), + (31052, 303, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Pm7ky95m', '8349164'), + (31053, 303, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Pm7ky95m', '8349545'), + (31054, 303, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Pm7ky95m', '8368028'), + (31055, 303, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Pm7ky95m', '8368029'), + (31056, 303, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Pm7ky95m', '8388462'), + (31057, 303, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Pm7ky95m', '8400273'), + (31058, 303, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Pm7ky95m', '8400275'), + (31059, 303, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Pm7ky95m', '8400276'), + (31060, 303, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Pm7ky95m', '8404977'), + (31061, 303, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Pm7ky95m', '8430783'), + (31062, 303, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Pm7ky95m', '8430784'), + (31063, 303, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Pm7ky95m', '8430799'), + (31064, 303, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Pm7ky95m', '8430800'), + (31065, 303, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Pm7ky95m', '8430801'), + (31066, 303, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Pm7ky95m', '8438709'), + (31067, 303, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Pm7ky95m', '8457738'), + (31068, 303, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Pm7ky95m', '8459566'), + (31069, 303, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Pm7ky95m', '8459567'), + (31070, 303, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Pm7ky95m', '8461032'), + (31071, 303, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Pm7ky95m', '8477877'), + (31072, 303, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Pm7ky95m', '8485688'), + (31073, 303, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Pm7ky95m', '8490587'), + (31074, 303, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Pm7ky95m', '8493552'), + (31075, 303, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Pm7ky95m', '8493553'), + (31076, 303, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Pm7ky95m', '8493554'), + (31077, 303, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Pm7ky95m', '8493555'), + (31078, 303, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Pm7ky95m', '8493556'), + (31079, 303, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Pm7ky95m', '8493557'), + (31080, 303, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Pm7ky95m', '8493558'), + (31081, 303, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Pm7ky95m', '8493559'), + (31082, 303, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Pm7ky95m', '8493560'), + (31083, 303, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Pm7ky95m', '8493561'), + (31084, 303, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Pm7ky95m', '8493572'), + (31085, 303, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Pm7ky95m', '8540725'), + (31086, 303, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Pm7ky95m', '8555421'), + (31087, 304, 2066, 'not_attending', '2023-06-09 18:33:39', '2025-12-17 19:47:04', 'dKZwYbN4', '6101361'), + (31088, 304, 2098, 'attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dKZwYbN4', '6139831'), + (31089, 304, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dKZwYbN4', '6150864'), + (31090, 304, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKZwYbN4', '6155491'), + (31091, 304, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKZwYbN4', '6164417'), + (31092, 304, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKZwYbN4', '6166388'), + (31093, 304, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKZwYbN4', '6176439'), + (31094, 304, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKZwYbN4', '6182410'), + (31095, 304, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKZwYbN4', '6185812'), + (31096, 304, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKZwYbN4', '6187651'), + (31097, 304, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKZwYbN4', '6187963'), + (31098, 304, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKZwYbN4', '6187964'), + (31099, 304, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKZwYbN4', '6187966'), + (31100, 304, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKZwYbN4', '6187967'), + (31101, 304, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKZwYbN4', '6187969'), + (31102, 304, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKZwYbN4', '6334878'), + (31103, 304, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dKZwYbN4', '6337236'), + (31104, 304, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKZwYbN4', '6337970'), + (31105, 304, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dKZwYbN4', '6338308'), + (31106, 304, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dKZwYbN4', '6340845'), + (31107, 304, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dKZwYbN4', '6341710'), + (31108, 304, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKZwYbN4', '6342044'), + (31109, 304, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKZwYbN4', '6342298'), + (31110, 304, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dKZwYbN4', '6343294'), + (31111, 304, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKZwYbN4', '6347034'), + (31112, 304, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKZwYbN4', '6347056'), + (31113, 304, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKZwYbN4', '6353830'), + (31114, 304, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKZwYbN4', '6353831'), + (31115, 304, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKZwYbN4', '6357867'), + (31116, 304, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKZwYbN4', '6358652'), + (31117, 304, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKZwYbN4', '6361709'), + (31118, 304, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKZwYbN4', '6361710'), + (31119, 304, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKZwYbN4', '6361711'), + (31120, 304, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dKZwYbN4', '6361712'), + (31121, 304, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKZwYbN4', '6361713'), + (31122, 304, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKZwYbN4', '6382573'), + (31123, 304, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dKZwYbN4', '6388604'), + (31124, 304, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKZwYbN4', '6394629'), + (31125, 304, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKZwYbN4', '6394631'), + (31126, 304, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKZwYbN4', '6440863'), + (31127, 304, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKZwYbN4', '6445440'), + (31128, 304, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKZwYbN4', '6453951'), + (31129, 304, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKZwYbN4', '6461696'), + (31130, 304, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKZwYbN4', '6462129'), + (31131, 304, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKZwYbN4', '6463218'), + (31132, 304, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dKZwYbN4', '6472181'), + (31133, 304, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZwYbN4', '6482693'), + (31134, 304, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZwYbN4', '6484200'), + (31135, 304, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKZwYbN4', '6484680'), + (31136, 304, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZwYbN4', '6507741'), + (31137, 304, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZwYbN4', '6514659'), + (31138, 304, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZwYbN4', '6514660'), + (31139, 304, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZwYbN4', '6519103'), + (31140, 304, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZwYbN4', '6535681'), + (31141, 304, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZwYbN4', '6584747'), + (31142, 304, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZwYbN4', '6587097'), + (31143, 304, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZwYbN4', '6609022'), + (31144, 304, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZwYbN4', '6632757'), + (31145, 304, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZwYbN4', '6644187'), + (31146, 304, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZwYbN4', '6648951'), + (31147, 304, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZwYbN4', '6648952'), + (31148, 304, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZwYbN4', '6655401'), + (31149, 304, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZwYbN4', '6661585'), + (31150, 304, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZwYbN4', '6661588'), + (31151, 304, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZwYbN4', '6661589'), + (31152, 304, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZwYbN4', '6699906'), + (31153, 304, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZwYbN4', '6701109'), + (31154, 304, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZwYbN4', '6705219'), + (31155, 304, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZwYbN4', '6710153'), + (31156, 304, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZwYbN4', '6711552'), + (31157, 304, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZwYbN4', '6711553'), + (31158, 305, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dwYPBJaA', '4356801'), + (31159, 305, 991, 'attending', '2021-09-11 19:18:30', '2025-12-17 19:47:43', 'dwYPBJaA', '4420738'), + (31160, 305, 992, 'not_attending', '2021-09-18 20:53:26', '2025-12-17 19:47:34', 'dwYPBJaA', '4420739'), + (31161, 305, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dwYPBJaA', '4420741'), + (31162, 305, 994, 'not_attending', '2021-10-01 20:54:46', '2025-12-17 19:47:34', 'dwYPBJaA', '4420742'), + (31163, 305, 995, 'maybe', '2021-10-01 20:55:08', '2025-12-17 19:47:34', 'dwYPBJaA', '4420744'), + (31164, 305, 996, 'not_attending', '2021-10-01 20:55:17', '2025-12-17 19:47:35', 'dwYPBJaA', '4420747'), + (31165, 305, 1003, 'attending', '2021-09-03 16:51:49', '2025-12-17 19:47:43', 'dwYPBJaA', '4438802'), + (31166, 305, 1019, 'not_attending', '2021-09-15 22:17:55', '2025-12-17 19:47:43', 'dwYPBJaA', '4450515'), + (31167, 305, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dwYPBJaA', '4461883'), + (31168, 305, 1066, 'not_attending', '2021-09-25 18:06:43', '2025-12-17 19:47:34', 'dwYPBJaA', '4506039'), + (31169, 305, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dwYPBJaA', '4508342'), + (31170, 305, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dwYPBJaA', '4568602'), + (31171, 305, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dwYPBJaA', '6045684'), + (31172, 306, 1242, 'not_attending', '2022-04-01 15:01:50', '2025-12-17 19:47:25', 'dx632oDA', '5052241'), + (31173, 306, 1274, 'maybe', '2022-03-31 22:50:02', '2025-12-17 19:47:26', 'dx632oDA', '5186585'), + (31174, 306, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dx632oDA', '5195095'), + (31175, 306, 1288, 'not_attending', '2022-04-01 15:01:36', '2025-12-17 19:47:25', 'dx632oDA', '5199460'), + (31176, 306, 1306, 'attending', '2022-04-04 17:53:14', '2025-12-17 19:47:26', 'dx632oDA', '5223682'), + (31177, 306, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dx632oDA', '5223686'), + (31178, 306, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dx632oDA', '5227432'), + (31179, 306, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dx632oDA', '5247467'), + (31180, 306, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dx632oDA', '5260800'), + (31181, 306, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dx632oDA', '5269930'), + (31182, 306, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dx632oDA', '5271448'), + (31183, 306, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dx632oDA', '5271449'), + (31184, 306, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dx632oDA', '5276469'), + (31185, 306, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx632oDA', '5278159'), + (31186, 306, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx632oDA', '6045684'), + (31187, 307, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '54ko9aX4', '3517815'), + (31188, 307, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '54ko9aX4', '3523941'), + (31189, 307, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54ko9aX4', '3533850'), + (31190, 307, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '54ko9aX4', '3536632'), + (31191, 307, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '54ko9aX4', '3536656'), + (31192, 307, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '54ko9aX4', '3539916'), + (31193, 307, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '54ko9aX4', '3539917'), + (31194, 307, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '54ko9aX4', '3539918'), + (31195, 307, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '54ko9aX4', '3539919'), + (31196, 307, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54ko9aX4', '3539920'), + (31197, 307, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54ko9aX4', '3539921'), + (31198, 307, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54ko9aX4', '3539922'), + (31199, 307, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '54ko9aX4', '3539923'), + (31200, 307, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54ko9aX4', '6045684'), + (31201, 308, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbqMKNPd', '6045684'), + (31202, 309, 69, 'attending', '2020-07-02 16:43:17', '2025-12-17 19:47:55', '6AXveo6d', '2977138'), + (31203, 309, 133, 'attending', '2020-06-24 20:19:57', '2025-12-17 19:47:58', '6AXveo6d', '3034321'), + (31204, 309, 139, 'attending', '2020-06-18 01:59:01', '2025-12-17 19:47:58', '6AXveo6d', '3046190'), + (31205, 309, 173, 'not_attending', '2020-06-19 15:59:39', '2025-12-17 19:47:58', '6AXveo6d', '3067093'), + (31206, 309, 179, 'maybe', '2020-06-18 02:00:00', '2025-12-17 19:47:58', '6AXveo6d', '3073687'), + (31207, 309, 181, 'attending', '2020-06-19 01:37:41', '2025-12-17 19:47:58', '6AXveo6d', '3074513'), + (31208, 309, 182, 'attending', '2020-06-24 14:27:11', '2025-12-17 19:47:55', '6AXveo6d', '3074514'), + (31209, 309, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '6AXveo6d', '3083791'), + (31210, 309, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '6AXveo6d', '3085151'), + (31211, 309, 190, 'attending', '2020-07-04 23:04:20', '2025-12-17 19:47:55', '6AXveo6d', '3087258'), + (31212, 309, 191, 'attending', '2020-07-03 02:44:26', '2025-12-17 19:47:55', '6AXveo6d', '3087259'), + (31213, 309, 192, 'attending', '2020-07-14 17:33:08', '2025-12-17 19:47:55', '6AXveo6d', '3087260'), + (31214, 309, 193, 'attending', '2020-07-24 12:53:47', '2025-12-17 19:47:55', '6AXveo6d', '3087261'), + (31215, 309, 194, 'attending', '2020-07-26 17:25:18', '2025-12-17 19:47:55', '6AXveo6d', '3087262'), + (31216, 309, 195, 'attending', '2020-08-02 23:31:54', '2025-12-17 19:47:56', '6AXveo6d', '3087264'), + (31217, 309, 196, 'attending', '2020-08-09 02:53:15', '2025-12-17 19:47:56', '6AXveo6d', '3087265'), + (31218, 309, 197, 'attending', '2020-08-16 17:29:41', '2025-12-17 19:47:56', '6AXveo6d', '3087266'), + (31219, 309, 198, 'attending', '2020-08-24 15:31:58', '2025-12-17 19:47:56', '6AXveo6d', '3087267'), + (31220, 309, 199, 'attending', '2020-09-01 15:07:52', '2025-12-17 19:47:56', '6AXveo6d', '3087268'), + (31221, 309, 201, 'attending', '2020-06-25 18:59:08', '2025-12-17 19:47:55', '6AXveo6d', '3088653'), + (31222, 309, 204, 'attending', '2020-06-26 16:05:54', '2025-12-17 19:47:55', '6AXveo6d', '3102758'), + (31223, 309, 205, 'maybe', '2020-07-08 12:28:52', '2025-12-17 19:47:55', '6AXveo6d', '3104804'), + (31224, 309, 209, 'maybe', '2020-06-29 12:18:55', '2025-12-17 19:47:55', '6AXveo6d', '3106813'), + (31225, 309, 210, 'maybe', '2020-07-02 16:54:48', '2025-12-17 19:47:55', '6AXveo6d', '3108972'), + (31226, 309, 214, 'not_attending', '2020-07-08 21:27:53', '2025-12-17 19:47:55', '6AXveo6d', '3124139'), + (31227, 309, 216, 'attending', '2020-07-09 19:49:57', '2025-12-17 19:47:55', '6AXveo6d', '3126500'), + (31228, 309, 217, 'maybe', '2020-07-08 17:37:11', '2025-12-17 19:47:55', '6AXveo6d', '3126684'), + (31229, 309, 223, 'attending', '2020-09-08 23:06:19', '2025-12-17 19:47:56', '6AXveo6d', '3129980'), + (31230, 309, 224, 'attending', '2020-07-19 18:25:30', '2025-12-17 19:47:55', '6AXveo6d', '3130712'), + (31231, 309, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '6AXveo6d', '3132817'), + (31232, 309, 227, 'maybe', '2020-07-15 20:17:49', '2025-12-17 19:47:55', '6AXveo6d', '3132820'), + (31233, 309, 229, 'attending', '2020-07-15 20:17:28', '2025-12-17 19:47:55', '6AXveo6d', '3134135'), + (31234, 309, 230, 'attending', '2020-07-26 21:12:36', '2025-12-17 19:47:55', '6AXveo6d', '3139232'), + (31235, 309, 231, 'maybe', '2020-07-19 20:28:29', '2025-12-17 19:47:55', '6AXveo6d', '3139762'), + (31236, 309, 232, 'not_attending', '2020-07-20 22:43:10', '2025-12-17 19:47:55', '6AXveo6d', '3139770'), + (31237, 309, 233, 'attending', '2020-07-22 12:21:17', '2025-12-17 19:47:55', '6AXveo6d', '3139773'), + (31238, 309, 265, 'attending', '2020-07-28 01:42:01', '2025-12-17 19:47:55', '6AXveo6d', '3150806'), + (31239, 309, 269, 'attending', '2020-07-29 00:37:59', '2025-12-17 19:47:55', '6AXveo6d', '3153076'), + (31240, 309, 270, 'maybe', '2020-08-11 17:04:20', '2025-12-17 19:47:56', '6AXveo6d', '3154457'), + (31241, 309, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '6AXveo6d', '3155321'), + (31242, 309, 273, 'attending', '2020-08-02 23:31:40', '2025-12-17 19:47:56', '6AXveo6d', '3162006'), + (31243, 309, 275, 'attending', '2020-08-03 20:04:55', '2025-12-17 19:47:56', '6AXveo6d', '3163405'), + (31244, 309, 277, 'not_attending', '2020-08-03 23:57:12', '2025-12-17 19:47:56', '6AXveo6d', '3163442'), + (31245, 309, 281, 'attending', '2020-08-09 20:06:42', '2025-12-17 19:47:56', '6AXveo6d', '3166945'), + (31246, 309, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '6AXveo6d', '3169555'), + (31247, 309, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', '6AXveo6d', '3169556'), + (31248, 309, 288, 'attending', '2020-08-28 17:54:42', '2025-12-17 19:47:56', '6AXveo6d', '3170249'), + (31249, 309, 293, 'attending', '2020-08-19 23:11:03', '2025-12-17 19:47:56', '6AXveo6d', '3172832'), + (31250, 309, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '6AXveo6d', '3172833'), + (31251, 309, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '6AXveo6d', '3172834'), + (31252, 309, 296, 'attending', '2020-09-08 23:06:08', '2025-12-17 19:47:56', '6AXveo6d', '3172876'), + (31253, 309, 297, 'attending', '2020-08-11 17:03:38', '2025-12-17 19:47:56', '6AXveo6d', '3173937'), + (31254, 309, 300, 'attending', '2020-08-12 22:42:33', '2025-12-17 19:47:56', '6AXveo6d', '3177986'), + (31255, 309, 301, 'attending', '2020-08-18 00:12:23', '2025-12-17 19:47:56', '6AXveo6d', '3178027'), + (31256, 309, 302, 'attending', '2020-08-18 00:12:18', '2025-12-17 19:47:56', '6AXveo6d', '3178028'), + (31257, 309, 304, 'maybe', '2020-09-07 19:36:19', '2025-12-17 19:47:56', '6AXveo6d', '3178916'), + (31258, 309, 306, 'attending', '2020-08-21 22:45:53', '2025-12-17 19:47:56', '6AXveo6d', '3179777'), + (31259, 309, 311, 'attending', '2020-09-11 01:07:58', '2025-12-17 19:47:56', '6AXveo6d', '3186057'), + (31260, 309, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '6AXveo6d', '3191735'), + (31261, 309, 318, 'attending', '2020-08-29 01:40:20', '2025-12-17 19:47:56', '6AXveo6d', '3193885'), + (31262, 309, 320, 'attending', '2020-08-30 02:59:50', '2025-12-17 19:47:56', '6AXveo6d', '3195552'), + (31263, 309, 331, 'attending', '2020-09-01 14:57:46', '2025-12-17 19:47:56', '6AXveo6d', '3198871'), + (31264, 309, 335, 'not_attending', '2020-09-05 00:16:36', '2025-12-17 19:47:56', '6AXveo6d', '3200209'), + (31265, 309, 336, 'attending', '2020-09-11 22:33:38', '2025-12-17 19:47:56', '6AXveo6d', '3200495'), + (31266, 309, 340, 'attending', '2020-09-18 23:12:34', '2025-12-17 19:47:56', '6AXveo6d', '3204470'), + (31267, 309, 343, 'maybe', '2020-09-22 22:45:57', '2025-12-17 19:47:56', '6AXveo6d', '3206759'), + (31268, 309, 346, 'not_attending', '2020-09-13 21:43:22', '2025-12-17 19:47:56', '6AXveo6d', '3207515'), + (31269, 309, 347, 'attending', '2020-09-24 12:58:33', '2025-12-17 19:47:51', '6AXveo6d', '3207930'), + (31270, 309, 358, 'attending', '2020-09-13 21:46:19', '2025-12-17 19:47:56', '6AXveo6d', '3212579'), + (31271, 309, 359, 'not_attending', '2020-09-20 19:51:49', '2025-12-17 19:47:56', '6AXveo6d', '3212624'), + (31272, 309, 362, 'attending', '2020-09-24 12:58:15', '2025-12-17 19:47:52', '6AXveo6d', '3214207'), + (31273, 309, 363, 'maybe', '2020-09-17 22:22:47', '2025-12-17 19:47:52', '6AXveo6d', '3217037'), + (31274, 309, 365, 'not_attending', '2020-09-18 17:37:24', '2025-12-17 19:47:51', '6AXveo6d', '3218510'), + (31275, 309, 368, 'attending', '2020-09-29 23:34:16', '2025-12-17 19:47:52', '6AXveo6d', '3221403'), + (31276, 309, 376, 'attending', '2020-10-12 23:22:24', '2025-12-17 19:47:52', '6AXveo6d', '3222827'), + (31277, 309, 385, 'attending', '2020-09-29 01:57:02', '2025-12-17 19:47:52', '6AXveo6d', '3228698'), + (31278, 309, 386, 'attending', '2020-09-29 01:56:58', '2025-12-17 19:47:52', '6AXveo6d', '3228699'), + (31279, 309, 387, 'attending', '2020-09-29 01:56:55', '2025-12-17 19:47:52', '6AXveo6d', '3228700'), + (31280, 309, 388, 'attending', '2020-09-29 01:56:47', '2025-12-17 19:47:52', '6AXveo6d', '3228701'), + (31281, 309, 424, 'maybe', '2020-10-12 01:10:08', '2025-12-17 19:47:52', '6AXveo6d', '3245751'), + (31282, 309, 426, 'not_attending', '2020-10-14 23:04:42', '2025-12-17 19:47:52', '6AXveo6d', '3250232'), + (31283, 309, 429, 'attending', '2020-12-06 19:41:55', '2025-12-17 19:47:54', '6AXveo6d', '3250523'), + (31284, 309, 436, 'maybe', '2020-10-18 18:45:24', '2025-12-17 19:47:52', '6AXveo6d', '3256119'), + (31285, 309, 438, 'not_attending', '2020-10-18 18:45:44', '2025-12-17 19:47:53', '6AXveo6d', '3256163'), + (31286, 309, 440, 'attending', '2020-10-18 18:45:11', '2025-12-17 19:47:53', '6AXveo6d', '3256168'), + (31287, 309, 441, 'attending', '2020-11-07 20:08:16', '2025-12-17 19:47:54', '6AXveo6d', '3256169'), + (31288, 309, 443, 'not_attending', '2020-10-24 00:23:01', '2025-12-17 19:47:53', '6AXveo6d', '3263578'), + (31289, 309, 456, 'maybe', '2020-11-06 00:51:00', '2025-12-17 19:47:54', '6AXveo6d', '3276428'), + (31290, 309, 459, 'maybe', '2020-11-08 21:04:43', '2025-12-17 19:47:54', '6AXveo6d', '3281467'), + (31291, 309, 462, 'not_attending', '2020-11-08 21:04:37', '2025-12-17 19:47:54', '6AXveo6d', '3281470'), + (31292, 309, 463, 'maybe', '2020-11-13 20:37:40', '2025-12-17 19:47:54', '6AXveo6d', '3281553'), + (31293, 309, 466, 'maybe', '2020-11-08 21:04:33', '2025-12-17 19:47:54', '6AXveo6d', '3281829'), + (31294, 309, 468, 'attending', '2020-11-21 18:46:01', '2025-12-17 19:47:54', '6AXveo6d', '3285413'), + (31295, 309, 469, 'attending', '2020-11-10 23:07:26', '2025-12-17 19:47:54', '6AXveo6d', '3285414'), + (31296, 309, 477, 'not_attending', '2020-12-04 23:47:47', '2025-12-17 19:47:54', '6AXveo6d', '3289559'), + (31297, 309, 479, 'attending', '2020-11-18 19:51:17', '2025-12-17 19:47:54', '6AXveo6d', '3295306'), + (31298, 309, 481, 'maybe', '2020-11-19 23:30:23', '2025-12-17 19:47:54', '6AXveo6d', '3297764'), + (31299, 309, 484, 'not_attending', '2020-11-21 00:49:16', '2025-12-17 19:47:54', '6AXveo6d', '3297792'), + (31300, 309, 493, 'attending', '2020-12-02 17:43:17', '2025-12-17 19:47:54', '6AXveo6d', '3313856'), + (31301, 309, 499, 'attending', '2020-12-12 00:30:56', '2025-12-17 19:47:55', '6AXveo6d', '3314909'), + (31302, 309, 500, 'maybe', '2020-12-11 16:50:02', '2025-12-17 19:47:55', '6AXveo6d', '3314964'), + (31303, 309, 502, 'attending', '2020-12-11 16:49:51', '2025-12-17 19:47:55', '6AXveo6d', '3323365'), + (31304, 309, 513, 'attending', '2020-12-12 00:34:20', '2025-12-17 19:47:55', '6AXveo6d', '3329383'), + (31305, 309, 517, 'maybe', '2020-12-15 01:34:41', '2025-12-17 19:47:48', '6AXveo6d', '3337137'), + (31306, 309, 526, 'attending', '2020-12-24 01:23:26', '2025-12-17 19:47:48', '6AXveo6d', '3351539'), + (31307, 309, 529, 'maybe', '2021-01-02 00:06:31', '2025-12-17 19:47:48', '6AXveo6d', '3364568'), + (31308, 309, 536, 'attending', '2021-01-07 16:52:10', '2025-12-17 19:47:48', '6AXveo6d', '3386848'), + (31309, 309, 540, 'attending', '2021-01-07 16:50:32', '2025-12-17 19:47:48', '6AXveo6d', '3389527'), + (31310, 309, 542, 'attending', '2021-01-12 00:54:01', '2025-12-17 19:47:48', '6AXveo6d', '3395013'), + (31311, 309, 543, 'attending', '2021-01-12 00:53:18', '2025-12-17 19:47:48', '6AXveo6d', '3396499'), + (31312, 309, 548, 'attending', '2021-01-12 00:52:49', '2025-12-17 19:47:48', '6AXveo6d', '3403650'), + (31313, 309, 549, 'maybe', '2021-01-16 20:51:59', '2025-12-17 19:47:49', '6AXveo6d', '3406988'), + (31314, 309, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', '6AXveo6d', '3408338'), + (31315, 309, 555, 'attending', '2021-01-19 19:53:14', '2025-12-17 19:47:49', '6AXveo6d', '3416576'), + (31316, 309, 568, 'attending', '2021-01-26 01:56:05', '2025-12-17 19:47:50', '6AXveo6d', '3430267'), + (31317, 309, 571, 'attending', '2021-02-10 00:34:35', '2025-12-17 19:47:50', '6AXveo6d', '3435539'), + (31318, 309, 579, 'attending', '2021-01-30 17:58:00', '2025-12-17 19:47:50', '6AXveo6d', '3440978'), + (31319, 309, 602, 'attending', '2021-02-10 00:33:48', '2025-12-17 19:47:50', '6AXveo6d', '3470303'), + (31320, 309, 603, 'attending', '2021-02-13 00:44:49', '2025-12-17 19:47:50', '6AXveo6d', '3470304'), + (31321, 309, 604, 'attending', '2021-02-27 23:03:54', '2025-12-17 19:47:50', '6AXveo6d', '3470305'), + (31322, 309, 605, 'maybe', '2021-02-07 21:57:40', '2025-12-17 19:47:50', '6AXveo6d', '3470991'), + (31323, 309, 612, 'attending', '2021-02-17 01:27:22', '2025-12-17 19:47:50', '6AXveo6d', '3490040'), + (31324, 309, 613, 'attending', '2021-02-18 19:52:43', '2025-12-17 19:47:50', '6AXveo6d', '3490041'), + (31325, 309, 614, 'attending', '2021-03-03 00:47:25', '2025-12-17 19:47:51', '6AXveo6d', '3490042'), + (31326, 309, 621, 'attending', '2021-03-03 00:47:18', '2025-12-17 19:47:51', '6AXveo6d', '3517815'), + (31327, 309, 622, 'attending', '2021-03-06 03:53:50', '2025-12-17 19:47:51', '6AXveo6d', '3517816'), + (31328, 309, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '6AXveo6d', '3523941'), + (31329, 309, 631, 'not_attending', '2021-03-03 00:46:40', '2025-12-17 19:47:51', '6AXveo6d', '3533850'), + (31330, 309, 634, 'attending', '2021-03-31 17:09:15', '2025-12-17 19:47:44', '6AXveo6d', '3534718'), + (31331, 309, 638, 'not_attending', '2021-03-03 00:45:43', '2025-12-17 19:47:44', '6AXveo6d', '3536632'), + (31332, 309, 639, 'not_attending', '2021-03-03 00:44:57', '2025-12-17 19:47:51', '6AXveo6d', '3536656'), + (31333, 309, 641, 'attending', '2021-03-31 17:09:08', '2025-12-17 19:47:44', '6AXveo6d', '3539916'), + (31334, 309, 642, 'attending', '2021-04-06 19:21:28', '2025-12-17 19:47:44', '6AXveo6d', '3539917'), + (31335, 309, 643, 'attending', '2021-04-13 23:28:40', '2025-12-17 19:47:45', '6AXveo6d', '3539918'), + (31336, 309, 644, 'attending', '2021-04-21 23:26:25', '2025-12-17 19:47:45', '6AXveo6d', '3539919'), + (31337, 309, 645, 'maybe', '2021-05-07 22:43:47', '2025-12-17 19:47:46', '6AXveo6d', '3539920'), + (31338, 309, 646, 'attending', '2021-05-11 13:17:31', '2025-12-17 19:47:46', '6AXveo6d', '3539921'), + (31339, 309, 647, 'attending', '2021-05-22 15:39:22', '2025-12-17 19:47:46', '6AXveo6d', '3539922'), + (31340, 309, 648, 'attending', '2021-05-29 19:20:41', '2025-12-17 19:47:47', '6AXveo6d', '3539923'), + (31341, 309, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '6AXveo6d', '3539927'), + (31342, 309, 650, 'attending', '2021-03-27 18:14:08', '2025-12-17 19:47:44', '6AXveo6d', '3539928'), + (31343, 309, 652, 'attending', '2021-03-07 21:12:39', '2025-12-17 19:47:51', '6AXveo6d', '3544466'), + (31344, 309, 680, 'attending', '2021-03-10 23:39:45', '2025-12-17 19:47:51', '6AXveo6d', '3547700'), + (31345, 309, 683, 'attending', '2021-03-10 01:38:54', '2025-12-17 19:47:51', '6AXveo6d', '3548818'), + (31346, 309, 684, 'maybe', '2021-03-12 23:18:14', '2025-12-17 19:47:51', '6AXveo6d', '3549257'), + (31347, 309, 705, 'attending', '2021-03-27 18:14:15', '2025-12-17 19:47:44', '6AXveo6d', '3581895'), + (31348, 309, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '6AXveo6d', '3582734'), + (31349, 309, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '6AXveo6d', '3583262'), + (31350, 309, 711, 'attending', '2021-03-31 17:09:34', '2025-12-17 19:47:44', '6AXveo6d', '3588075'), + (31351, 309, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXveo6d', '3619523'), + (31352, 309, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '6AXveo6d', '3661369'), + (31353, 309, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXveo6d', '3674262'), + (31354, 309, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXveo6d', '3677402'), + (31355, 309, 744, 'attending', '2021-06-04 21:05:16', '2025-12-17 19:47:47', '6AXveo6d', '3680624'), + (31356, 309, 752, 'attending', '2021-04-15 23:03:47', '2025-12-17 19:47:44', '6AXveo6d', '3699422'), + (31357, 309, 761, 'maybe', '2021-05-14 22:13:57', '2025-12-17 19:47:46', '6AXveo6d', '3716041'), + (31358, 309, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXveo6d', '3730212'), + (31359, 309, 788, 'attending', '2021-05-07 22:43:19', '2025-12-17 19:47:46', '6AXveo6d', '3781975'), + (31360, 309, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXveo6d', '3793156'), + (31361, 309, 822, 'not_attending', '2021-06-03 01:52:12', '2025-12-17 19:47:47', '6AXveo6d', '3969986'), + (31362, 309, 823, 'attending', '2021-06-19 14:45:05', '2025-12-17 19:47:48', '6AXveo6d', '3974109'), + (31363, 309, 827, 'attending', '2021-06-04 21:05:23', '2025-12-17 19:47:47', '6AXveo6d', '3975311'), + (31364, 309, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXveo6d', '3975312'), + (31365, 309, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXveo6d', '3994992'), + (31366, 309, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXveo6d', '4014338'), + (31367, 309, 867, 'attending', '2021-06-26 01:20:49', '2025-12-17 19:47:38', '6AXveo6d', '4021848'), + (31368, 309, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXveo6d', '4136744'), + (31369, 309, 870, 'attending', '2021-07-01 01:18:19', '2025-12-17 19:47:39', '6AXveo6d', '4136937'), + (31370, 309, 871, 'attending', '2021-07-03 00:09:14', '2025-12-17 19:47:39', '6AXveo6d', '4136938'), + (31371, 309, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXveo6d', '4136947'), + (31372, 309, 884, 'attending', '2021-07-21 20:37:46', '2025-12-17 19:47:42', '6AXveo6d', '4210314'), + (31373, 309, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXveo6d', '4225444'), + (31374, 309, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXveo6d', '4239259'), + (31375, 309, 900, 'attending', '2021-07-21 20:38:08', '2025-12-17 19:47:40', '6AXveo6d', '4240316'), + (31376, 309, 901, 'not_attending', '2021-07-21 20:38:16', '2025-12-17 19:47:40', '6AXveo6d', '4240317'), + (31377, 309, 902, 'attending', '2021-07-21 20:38:26', '2025-12-17 19:47:41', '6AXveo6d', '4240318'), + (31378, 309, 903, 'attending', '2021-08-03 22:41:42', '2025-12-17 19:47:42', '6AXveo6d', '4240320'), + (31379, 309, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXveo6d', '4250163'), + (31380, 309, 906, 'not_attending', '2021-07-05 05:49:09', '2025-12-17 19:47:39', '6AXveo6d', '4253431'), + (31381, 309, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXveo6d', '4275957'), + (31382, 309, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXveo6d', '4277819'), + (31383, 309, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXveo6d', '4301723'), + (31384, 309, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXveo6d', '4302093'), + (31385, 309, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXveo6d', '4304151'), + (31386, 309, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXveo6d', '4356801'), + (31387, 309, 973, 'attending', '2021-08-15 21:28:38', '2025-12-17 19:47:42', '6AXveo6d', '4366186'), + (31388, 309, 974, 'attending', '2021-08-15 21:27:59', '2025-12-17 19:47:42', '6AXveo6d', '4366187'), + (31389, 309, 979, 'attending', '2021-08-21 19:19:26', '2025-12-17 19:47:42', '6AXveo6d', '4379085'), + (31390, 309, 980, 'attending', '2021-08-18 22:30:57', '2025-12-17 19:47:42', '6AXveo6d', '4380358'), + (31391, 309, 990, 'attending', '2021-08-28 22:26:56', '2025-12-17 19:47:43', '6AXveo6d', '4420735'), + (31392, 309, 991, 'attending', '2021-08-28 22:27:12', '2025-12-17 19:47:43', '6AXveo6d', '4420738'), + (31393, 309, 992, 'attending', '2021-08-28 22:27:33', '2025-12-17 19:47:33', '6AXveo6d', '4420739'), + (31394, 309, 993, 'attending', '2021-08-28 22:27:44', '2025-12-17 19:47:34', '6AXveo6d', '4420741'), + (31395, 309, 995, 'attending', '2021-08-28 22:28:16', '2025-12-17 19:47:34', '6AXveo6d', '4420744'), + (31396, 309, 996, 'attending', '2021-08-28 22:28:20', '2025-12-17 19:47:35', '6AXveo6d', '4420747'), + (31397, 309, 997, 'maybe', '2021-10-19 23:50:34', '2025-12-17 19:47:35', '6AXveo6d', '4420748'), + (31398, 309, 998, 'attending', '2021-08-28 22:28:31', '2025-12-17 19:47:36', '6AXveo6d', '4420749'), + (31399, 309, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXveo6d', '4461883'), + (31400, 309, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXveo6d', '4508342'), + (31401, 309, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXveo6d', '4568602'), + (31402, 309, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AXveo6d', '4572153'), + (31403, 309, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AXveo6d', '4585962'), + (31404, 309, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '6AXveo6d', '4596356'), + (31405, 309, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AXveo6d', '4598860'), + (31406, 309, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AXveo6d', '4598861'), + (31407, 309, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '6AXveo6d', '4602797'), + (31408, 309, 1102, 'attending', '2021-11-07 23:01:10', '2025-12-17 19:47:37', '6AXveo6d', '4612098'), + (31409, 309, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '6AXveo6d', '4637896'), + (31410, 309, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AXveo6d', '4642994'), + (31411, 309, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AXveo6d', '4642995'), + (31412, 309, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AXveo6d', '4642996'), + (31413, 309, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AXveo6d', '4642997'), + (31414, 309, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '6AXveo6d', '4645687'), + (31415, 309, 1127, 'attending', '2021-11-20 18:27:31', '2025-12-17 19:47:38', '6AXveo6d', '4645698'), + (31416, 309, 1128, 'attending', '2021-11-20 18:26:54', '2025-12-17 19:47:37', '6AXveo6d', '4645704'), + (31417, 309, 1129, 'attending', '2021-11-20 18:27:01', '2025-12-17 19:47:37', '6AXveo6d', '4645705'), + (31418, 309, 1130, 'attending', '2021-11-20 18:27:06', '2025-12-17 19:47:37', '6AXveo6d', '4658824'), + (31419, 309, 1134, 'maybe', '2021-11-26 20:50:57', '2025-12-17 19:47:37', '6AXveo6d', '4668385'), + (31420, 309, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '6AXveo6d', '4694407'), + (31421, 309, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXveo6d', '6045684'), + (31422, 310, 993, 'attending', '2021-09-25 21:18:56', '2025-12-17 19:47:34', 'dlO8V9Y4', '4420741'), + (31423, 310, 995, 'maybe', '2021-10-04 00:20:03', '2025-12-17 19:47:34', 'dlO8V9Y4', '4420744'), + (31424, 310, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dlO8V9Y4', '4420747'), + (31425, 310, 1005, 'attending', '2021-09-23 21:52:32', '2025-12-17 19:47:34', 'dlO8V9Y4', '4438807'), + (31426, 310, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlO8V9Y4', '4508342'), + (31427, 310, 1072, 'maybe', '2021-10-04 00:19:35', '2025-12-17 19:47:34', 'dlO8V9Y4', '4516287'), + (31428, 310, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dlO8V9Y4', '4568602'), + (31429, 310, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dlO8V9Y4', '4572153'), + (31430, 310, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dlO8V9Y4', '4585962'), + (31431, 310, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dlO8V9Y4', '4596356'), + (31432, 310, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dlO8V9Y4', '4598860'), + (31433, 310, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dlO8V9Y4', '4598861'), + (31434, 310, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dlO8V9Y4', '4602797'), + (31435, 310, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dlO8V9Y4', '4637896'), + (31436, 310, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dlO8V9Y4', '4642994'), + (31437, 310, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dlO8V9Y4', '4642995'), + (31438, 310, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dlO8V9Y4', '4642996'), + (31439, 310, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dlO8V9Y4', '4642997'), + (31440, 310, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dlO8V9Y4', '4645687'), + (31441, 310, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dlO8V9Y4', '4645698'), + (31442, 310, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dlO8V9Y4', '4645704'), + (31443, 310, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dlO8V9Y4', '4645705'), + (31444, 310, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dlO8V9Y4', '4668385'), + (31445, 310, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dlO8V9Y4', '4694407'), + (31446, 310, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dlO8V9Y4', '4736497'), + (31447, 310, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dlO8V9Y4', '4736499'), + (31448, 310, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dlO8V9Y4', '4736500'), + (31449, 310, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dlO8V9Y4', '4736503'), + (31450, 310, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dlO8V9Y4', '4736504'), + (31451, 310, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dlO8V9Y4', '4746789'), + (31452, 310, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dlO8V9Y4', '4753929'), + (31453, 310, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dlO8V9Y4', '5038850'), + (31454, 310, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dlO8V9Y4', '5045826'), + (31455, 310, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dlO8V9Y4', '5132533'), + (31456, 310, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dlO8V9Y4', '5186582'), + (31457, 310, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dlO8V9Y4', '5186583'), + (31458, 310, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dlO8V9Y4', '5186585'), + (31459, 310, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dlO8V9Y4', '5190437'), + (31460, 310, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dlO8V9Y4', '5215989'), + (31461, 310, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlO8V9Y4', '6045684'), + (31462, 311, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', '8mRE5nEd', '3539920'), + (31463, 311, 790, 'attending', '2021-05-08 18:09:09', '2025-12-17 19:47:46', '8mRE5nEd', '3789923'), + (31464, 311, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8mRE5nEd', '3793156'), + (31465, 311, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRE5nEd', '6045684'), + (31466, 312, 2993, 'not_attending', '2025-03-15 21:19:36', '2025-12-17 19:46:19', 'bdz5OMl4', '7842904'), + (31467, 312, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'bdz5OMl4', '7869188'), + (31468, 312, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'bdz5OMl4', '7877465'), + (31469, 312, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'bdz5OMl4', '7880977'), + (31470, 312, 3038, 'attending', '2025-03-14 20:56:38', '2025-12-17 19:46:19', 'bdz5OMl4', '7881989'), + (31471, 312, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'bdz5OMl4', '7888250'), + (31472, 312, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'bdz5OMl4', '7904777'), + (31473, 312, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'bdz5OMl4', '8349164'), + (31474, 312, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'bdz5OMl4', '8349545'), + (31475, 312, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'bdz5OMl4', '8353584'), + (31476, 312, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'bdz5OMl4', '8368028'), + (31477, 312, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'bdz5OMl4', '8368029'), + (31478, 312, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'bdz5OMl4', '8388462'), + (31479, 312, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'bdz5OMl4', '8400273'), + (31480, 312, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'bdz5OMl4', '8400274'), + (31481, 312, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'bdz5OMl4', '8400275'), + (31482, 312, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'bdz5OMl4', '8400276'), + (31483, 312, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'bdz5OMl4', '8404977'), + (31484, 312, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'bdz5OMl4', '8430783'), + (31485, 312, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'bdz5OMl4', '8430784'), + (31486, 312, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'bdz5OMl4', '8430799'), + (31487, 312, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'bdz5OMl4', '8430800'), + (31488, 312, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'bdz5OMl4', '8430801'), + (31489, 312, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'bdz5OMl4', '8438709'), + (31490, 312, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'bdz5OMl4', '8457738'), + (31491, 312, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'bdz5OMl4', '8459566'), + (31492, 312, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'bdz5OMl4', '8459567'), + (31493, 312, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'bdz5OMl4', '8461032'), + (31494, 312, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'bdz5OMl4', '8477877'), + (31495, 312, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'bdz5OMl4', '8485688'), + (31496, 313, 1511, 'attending', '2023-07-07 03:14:19', '2025-12-17 19:47:19', 'dKbaEGZ4', '5437733'), + (31497, 313, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dKbaEGZ4', '6044839'), + (31498, 313, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dKbaEGZ4', '6053198'), + (31499, 313, 2011, 'not_attending', '2023-04-10 18:04:05', '2025-12-17 19:46:59', 'dKbaEGZ4', '6056916'), + (31500, 313, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dKbaEGZ4', '6059290'), + (31501, 313, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dKbaEGZ4', '6060328'), + (31502, 313, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dKbaEGZ4', '6061037'), + (31503, 313, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dKbaEGZ4', '6061039'), + (31504, 313, 2021, 'maybe', '2023-04-17 15:09:09', '2025-12-17 19:47:00', 'dKbaEGZ4', '6066316'), + (31505, 313, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dKbaEGZ4', '6067245'), + (31506, 313, 2025, 'not_attending', '2023-04-23 16:59:15', '2025-12-17 19:47:00', 'dKbaEGZ4', '6067457'), + (31507, 313, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dKbaEGZ4', '6068094'), + (31508, 313, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dKbaEGZ4', '6068252'), + (31509, 313, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dKbaEGZ4', '6068253'), + (31510, 313, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dKbaEGZ4', '6068254'), + (31511, 313, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dKbaEGZ4', '6068280'), + (31512, 313, 2032, 'attending', '2023-06-02 19:40:21', '2025-12-17 19:47:04', 'dKbaEGZ4', '6068281'), + (31513, 313, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dKbaEGZ4', '6069093'), + (31514, 313, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dKbaEGZ4', '6072528'), + (31515, 313, 2047, 'not_attending', '2023-05-07 17:46:30', '2025-12-17 19:47:02', 'dKbaEGZ4', '6076027'), + (31516, 313, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dKbaEGZ4', '6079840'), + (31517, 313, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dKbaEGZ4', '6083398'), + (31518, 313, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dKbaEGZ4', '6093504'), + (31519, 313, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dKbaEGZ4', '6097414'), + (31520, 313, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dKbaEGZ4', '6097442'), + (31521, 313, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dKbaEGZ4', '6097684'), + (31522, 313, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dKbaEGZ4', '6098762'), + (31523, 313, 2064, 'attending', '2023-06-24 13:06:52', '2025-12-17 19:46:50', 'dKbaEGZ4', '6099988'), + (31524, 313, 2065, 'attending', '2023-06-17 00:14:40', '2025-12-17 19:46:49', 'dKbaEGZ4', '6101169'), + (31525, 313, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dKbaEGZ4', '6101361'), + (31526, 313, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dKbaEGZ4', '6101362'), + (31527, 313, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dKbaEGZ4', '6103752'), + (31528, 313, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dKbaEGZ4', '6107314'), + (31529, 313, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dKbaEGZ4', '6120034'), + (31530, 313, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dKbaEGZ4', '6136733'), + (31531, 313, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dKbaEGZ4', '6137989'), + (31532, 313, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dKbaEGZ4', '6150864'), + (31533, 313, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKbaEGZ4', '6155491'), + (31534, 313, 2111, 'attending', '2023-06-21 22:26:32', '2025-12-17 19:46:50', 'dKbaEGZ4', '6156121'), + (31535, 313, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKbaEGZ4', '6164417'), + (31536, 313, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKbaEGZ4', '6166388'), + (31537, 313, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKbaEGZ4', '6176439'), + (31538, 313, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKbaEGZ4', '6182410'), + (31539, 313, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKbaEGZ4', '6185812'), + (31540, 313, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKbaEGZ4', '6187651'), + (31541, 313, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKbaEGZ4', '6187963'), + (31542, 313, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKbaEGZ4', '6187964'), + (31543, 313, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKbaEGZ4', '6187966'), + (31544, 313, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKbaEGZ4', '6187967'), + (31545, 313, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKbaEGZ4', '6187969'), + (31546, 313, 2143, 'attending', '2023-08-02 15:57:46', '2025-12-17 19:46:51', 'dKbaEGZ4', '6334348'), + (31547, 313, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKbaEGZ4', '6334878'), + (31548, 313, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dKbaEGZ4', '6337236'), + (31549, 313, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKbaEGZ4', '6337970'), + (31550, 313, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dKbaEGZ4', '6338308'), + (31551, 313, 2159, 'attending', '2023-07-20 19:03:43', '2025-12-17 19:46:53', 'dKbaEGZ4', '6338355'), + (31552, 313, 2160, 'attending', '2023-07-27 13:12:01', '2025-12-17 19:46:54', 'dKbaEGZ4', '6338358'), + (31553, 313, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dKbaEGZ4', '6340845'), + (31554, 313, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dKbaEGZ4', '6341710'), + (31555, 313, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKbaEGZ4', '6342044'), + (31556, 313, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKbaEGZ4', '6342298'), + (31557, 313, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dKbaEGZ4', '6343294'), + (31558, 313, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKbaEGZ4', '6347034'), + (31559, 313, 2177, 'attending', '2023-08-02 15:57:56', '2025-12-17 19:46:55', 'dKbaEGZ4', '6347053'), + (31560, 313, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKbaEGZ4', '6347056'), + (31561, 313, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKbaEGZ4', '6353830'), + (31562, 313, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKbaEGZ4', '6353831'), + (31563, 313, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKbaEGZ4', '6357867'), + (31564, 313, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKbaEGZ4', '6358652'), + (31565, 313, 2200, 'not_attending', '2023-08-10 23:16:58', '2025-12-17 19:46:55', 'dKbaEGZ4', '6359850'), + (31566, 313, 2202, 'attending', '2023-08-06 20:48:37', '2025-12-17 19:46:54', 'dKbaEGZ4', '6360509'), + (31567, 313, 2204, 'attending', '2023-08-19 06:24:49', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361542'), + (31568, 313, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKbaEGZ4', '6361709'), + (31569, 313, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361710'), + (31570, 313, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361711'), + (31571, 313, 2211, 'attending', '2023-08-15 23:41:46', '2025-12-17 19:46:55', 'dKbaEGZ4', '6361712'), + (31572, 313, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKbaEGZ4', '6361713'), + (31573, 313, 2228, 'attending', '2023-08-19 20:05:35', '2025-12-17 19:46:55', 'dKbaEGZ4', '6372777'), + (31574, 313, 2232, 'not_attending', '2023-08-22 13:24:25', '2025-12-17 19:46:55', 'dKbaEGZ4', '6374818'), + (31575, 313, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKbaEGZ4', '6382573'), + (31576, 313, 2239, 'attending', '2023-08-31 18:00:24', '2025-12-17 19:46:56', 'dKbaEGZ4', '6387592'), + (31577, 313, 2240, 'attending', '2023-09-09 16:38:40', '2025-12-17 19:46:56', 'dKbaEGZ4', '6388603'), + (31578, 313, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dKbaEGZ4', '6388604'), + (31579, 313, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKbaEGZ4', '6394629'), + (31580, 313, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKbaEGZ4', '6394631'), + (31581, 313, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKbaEGZ4', '6440863'), + (31582, 313, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKbaEGZ4', '6445440'), + (31583, 313, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKbaEGZ4', '6453951'), + (31584, 313, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKbaEGZ4', '6461696'), + (31585, 313, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKbaEGZ4', '6462129'), + (31586, 313, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKbaEGZ4', '6463218'), + (31587, 313, 2299, 'not_attending', '2023-10-21 00:40:33', '2025-12-17 19:46:46', 'dKbaEGZ4', '6472181'), + (31588, 313, 2303, 'attending', '2023-10-28 16:35:40', '2025-12-17 19:46:47', 'dKbaEGZ4', '6482691'), + (31589, 313, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKbaEGZ4', '6482693'), + (31590, 313, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dKbaEGZ4', '6484200'), + (31591, 313, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKbaEGZ4', '6484680'), + (31592, 313, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKbaEGZ4', '6507741'), + (31593, 313, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKbaEGZ4', '6514659'), + (31594, 313, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKbaEGZ4', '6514660'), + (31595, 313, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKbaEGZ4', '6519103'), + (31596, 313, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKbaEGZ4', '6535681'), + (31597, 313, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKbaEGZ4', '6584747'), + (31598, 313, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKbaEGZ4', '6587097'), + (31599, 313, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKbaEGZ4', '6609022'), + (31600, 313, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKbaEGZ4', '6632757'), + (31601, 313, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKbaEGZ4', '6644187'), + (31602, 313, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKbaEGZ4', '6648951'), + (31603, 313, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKbaEGZ4', '6648952'), + (31604, 313, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKbaEGZ4', '6655401'), + (31605, 313, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKbaEGZ4', '6661585'), + (31606, 313, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKbaEGZ4', '6661588'), + (31607, 313, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKbaEGZ4', '6661589'), + (31608, 313, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKbaEGZ4', '6699906'), + (31609, 313, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dKbaEGZ4', '6699913'), + (31610, 313, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKbaEGZ4', '6701109'), + (31611, 313, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKbaEGZ4', '6705219'), + (31612, 313, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKbaEGZ4', '6710153'), + (31613, 313, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKbaEGZ4', '6711552'), + (31614, 313, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKbaEGZ4', '6711553'), + (31615, 313, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dKbaEGZ4', '6722688'), + (31616, 313, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dKbaEGZ4', '6730620'), + (31617, 313, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dKbaEGZ4', '6730642'), + (31618, 313, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dKbaEGZ4', '6740364'), + (31619, 313, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dKbaEGZ4', '6743829'), + (31620, 313, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dKbaEGZ4', '7030380'), + (31621, 313, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dKbaEGZ4', '7033677'), + (31622, 313, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dKbaEGZ4', '7035415'), + (31623, 313, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dKbaEGZ4', '7044715'), + (31624, 313, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dKbaEGZ4', '7050318'), + (31625, 313, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dKbaEGZ4', '7050319'), + (31626, 313, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dKbaEGZ4', '7050322'), + (31627, 313, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dKbaEGZ4', '7057804'), + (31628, 313, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dKbaEGZ4', '7059866'), + (31629, 313, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dKbaEGZ4', '7072824'), + (31630, 313, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dKbaEGZ4', '7074348'), + (31631, 313, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dKbaEGZ4', '7089267'), + (31632, 313, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dKbaEGZ4', '7098747'), + (31633, 313, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dKbaEGZ4', '7113468'), + (31634, 313, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dKbaEGZ4', '7114856'), + (31635, 313, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dKbaEGZ4', '7114951'), + (31636, 313, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dKbaEGZ4', '7114955'), + (31637, 313, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dKbaEGZ4', '7114956'), + (31638, 313, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKbaEGZ4', '7153615'), + (31639, 313, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKbaEGZ4', '7159484'), + (31640, 313, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKbaEGZ4', '7178446'), + (31641, 314, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dJrj7qwd', '5630960'), + (31642, 314, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dJrj7qwd', '5630961'), + (31643, 314, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dJrj7qwd', '5630962'), + (31644, 314, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dJrj7qwd', '5630966'), + (31645, 314, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', 'dJrj7qwd', '5638765'), + (31646, 314, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dJrj7qwd', '5640097'), + (31647, 314, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dJrj7qwd', '5652395'), + (31648, 314, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dJrj7qwd', '5671637'), + (31649, 314, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dJrj7qwd', '5672329'), + (31650, 314, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dJrj7qwd', '5674057'), + (31651, 314, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dJrj7qwd', '5674060'), + (31652, 314, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dJrj7qwd', '5677461'), + (31653, 314, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dJrj7qwd', '5698046'), + (31654, 314, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dJrj7qwd', '5699760'), + (31655, 314, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJrj7qwd', '6045684'), + (31656, 315, 1863, 'attending', '2023-01-25 00:08:58', '2025-12-17 19:47:06', 'd31kM2OA', '5877255'), + (31657, 315, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'd31kM2OA', '5880940'), + (31658, 315, 1868, 'maybe', '2023-02-20 01:54:07', '2025-12-17 19:47:07', 'd31kM2OA', '5880942'), + (31659, 315, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd31kM2OA', '5880943'), + (31660, 315, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'd31kM2OA', '5899826'), + (31661, 315, 1885, 'not_attending', '2023-02-21 14:24:36', '2025-12-17 19:47:08', 'd31kM2OA', '5899928'), + (31662, 315, 1886, 'not_attending', '2023-03-08 20:15:43', '2025-12-17 19:47:09', 'd31kM2OA', '5899930'), + (31663, 315, 1888, 'maybe', '2023-02-16 04:19:00', '2025-12-17 19:47:07', 'd31kM2OA', '5900197'), + (31664, 315, 1889, 'attending', '2023-02-03 17:52:13', '2025-12-17 19:47:07', 'd31kM2OA', '5900199'), + (31665, 315, 1890, 'attending', '2023-02-18 15:12:39', '2025-12-17 19:47:08', 'd31kM2OA', '5900200'), + (31666, 315, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd31kM2OA', '5900202'), + (31667, 315, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd31kM2OA', '5900203'), + (31668, 315, 1895, 'attending', '2023-01-31 22:26:47', '2025-12-17 19:47:06', 'd31kM2OA', '5901108'), + (31669, 315, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd31kM2OA', '5901126'), + (31670, 315, 1897, 'attending', '2023-02-06 14:15:45', '2025-12-17 19:47:07', 'd31kM2OA', '5901128'), + (31671, 315, 1898, 'attending', '2023-02-01 00:28:17', '2025-12-17 19:47:06', 'd31kM2OA', '5901263'), + (31672, 315, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'd31kM2OA', '5909655'), + (31673, 315, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'd31kM2OA', '5910522'), + (31674, 315, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'd31kM2OA', '5910526'), + (31675, 315, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'd31kM2OA', '5910528'), + (31676, 315, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd31kM2OA', '5916219'), + (31677, 315, 1925, 'maybe', '2023-02-18 15:13:20', '2025-12-17 19:47:08', 'd31kM2OA', '5932619'), + (31678, 315, 1926, 'attending', '2023-02-20 01:54:51', '2025-12-17 19:47:08', 'd31kM2OA', '5932620'), + (31679, 315, 1928, 'attending', '2023-02-18 15:12:07', '2025-12-17 19:47:07', 'd31kM2OA', '5932627'), + (31680, 315, 1929, 'not_attending', '2023-02-18 15:11:30', '2025-12-17 19:47:07', 'd31kM2OA', '5932628'), + (31681, 315, 1933, 'attending', '2023-02-21 14:24:45', '2025-12-17 19:47:08', 'd31kM2OA', '5936234'), + (31682, 315, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd31kM2OA', '5958351'), + (31683, 315, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd31kM2OA', '5959751'), + (31684, 315, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd31kM2OA', '5959755'), + (31685, 315, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd31kM2OA', '5960055'), + (31686, 315, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd31kM2OA', '5961684'), + (31687, 315, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd31kM2OA', '5962132'), + (31688, 315, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'd31kM2OA', '5962133'), + (31689, 315, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd31kM2OA', '5962134'), + (31690, 315, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd31kM2OA', '5962317'), + (31691, 315, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd31kM2OA', '5962318'), + (31692, 315, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'd31kM2OA', '5965933'), + (31693, 315, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd31kM2OA', '5967014'), + (31694, 315, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd31kM2OA', '5972815'), + (31695, 315, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd31kM2OA', '5974016'), + (31696, 315, 1965, 'maybe', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd31kM2OA', '5981515'), + (31697, 315, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd31kM2OA', '5993516'), + (31698, 315, 1970, 'not_attending', '2023-03-22 23:47:22', '2025-12-17 19:46:56', 'd31kM2OA', '5993758'), + (31699, 315, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd31kM2OA', '5998939'), + (31700, 315, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd31kM2OA', '6028191'), + (31701, 315, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd31kM2OA', '6040066'), + (31702, 315, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd31kM2OA', '6042717'), + (31703, 315, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd31kM2OA', '6044838'), + (31704, 315, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd31kM2OA', '6044839'), + (31705, 315, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd31kM2OA', '6045684'), + (31706, 315, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd31kM2OA', '6050104'), + (31707, 315, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd31kM2OA', '6053195'), + (31708, 315, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd31kM2OA', '6053198'), + (31709, 315, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd31kM2OA', '6056085'), + (31710, 315, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd31kM2OA', '6056916'), + (31711, 315, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd31kM2OA', '6059290'), + (31712, 315, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd31kM2OA', '6060328'), + (31713, 315, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd31kM2OA', '6061037'), + (31714, 315, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd31kM2OA', '6061039'), + (31715, 315, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd31kM2OA', '6067245'), + (31716, 315, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd31kM2OA', '6068094'), + (31717, 315, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd31kM2OA', '6068252'), + (31718, 315, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd31kM2OA', '6068253'), + (31719, 315, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd31kM2OA', '6068254'), + (31720, 315, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd31kM2OA', '6068280'), + (31721, 315, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd31kM2OA', '6069093'), + (31722, 315, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd31kM2OA', '6072528'), + (31723, 315, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd31kM2OA', '6079840'), + (31724, 315, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd31kM2OA', '6083398'), + (31725, 315, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd31kM2OA', '6093504'), + (31726, 315, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd31kM2OA', '6097414'), + (31727, 315, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd31kM2OA', '6097442'), + (31728, 315, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd31kM2OA', '6097684'), + (31729, 315, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd31kM2OA', '6098762'), + (31730, 315, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd31kM2OA', '6101362'), + (31731, 315, 2070, 'maybe', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd31kM2OA', '6103752'), + (31732, 315, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd31kM2OA', '6107314'), + (31733, 316, 901, 'not_attending', '2021-07-31 17:55:48', '2025-12-17 19:47:40', 'd2pDMV5A', '4240317'), + (31734, 316, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'd2pDMV5A', '4240318'), + (31735, 316, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'd2pDMV5A', '4302093'), + (31736, 316, 947, 'attending', '2021-07-31 05:52:32', '2025-12-17 19:47:41', 'd2pDMV5A', '4315713'), + (31737, 316, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd2pDMV5A', '6045684'), + (31738, 317, 255, 'maybe', '2021-03-23 17:16:17', '2025-12-17 19:47:43', 'QdJ3Q7bm', '3149486'), + (31739, 317, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3236465'), + (31740, 317, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3539916'), + (31741, 317, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'QdJ3Q7bm', '3539918'), + (31742, 317, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3539919'), + (31743, 317, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3539920'), + (31744, 317, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3539921'), + (31745, 317, 689, 'maybe', '2021-03-25 17:03:19', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3555564'), + (31746, 317, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3583262'), + (31747, 317, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3619523'), + (31748, 317, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3661369'), + (31749, 317, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'QdJ3Q7bm', '3674262'), + (31750, 317, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3677402'), + (31751, 317, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'QdJ3Q7bm', '3730212'), + (31752, 317, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3793156'), + (31753, 317, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3803310'), + (31754, 317, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'QdJ3Q7bm', '3806392'), + (31755, 317, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ3Q7bm', '6045684'), + (31756, 318, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', 'x4oRgMXA', '4136938'), + (31757, 318, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'x4oRgMXA', '4136947'), + (31758, 318, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oRgMXA', '4210314'), + (31759, 318, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oRgMXA', '4225444'), + (31760, 318, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', 'x4oRgMXA', '4229418'), + (31761, 318, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'x4oRgMXA', '4229420'), + (31762, 318, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'x4oRgMXA', '4229423'), + (31763, 318, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'x4oRgMXA', '4240316'), + (31764, 318, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oRgMXA', '4240317'), + (31765, 318, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'x4oRgMXA', '4240318'), + (31766, 318, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oRgMXA', '4275957'), + (31767, 318, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oRgMXA', '4277819'), + (31768, 318, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'x4oRgMXA', '4292773'), + (31769, 318, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oRgMXA', '4301723'), + (31770, 318, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'x4oRgMXA', '4302093'), + (31771, 318, 940, 'not_attending', '2021-07-30 16:29:47', '2025-12-17 19:47:40', 'x4oRgMXA', '4309049'), + (31772, 318, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'x4oRgMXA', '4315713'), + (31773, 318, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oRgMXA', '6045684'), + (31774, 319, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'LmpJzb24', '3149489'), + (31775, 319, 395, 'not_attending', '2021-06-01 01:19:42', '2025-12-17 19:47:47', 'LmpJzb24', '3236450'), + (31776, 319, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'LmpJzb24', '3236452'), + (31777, 319, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'LmpJzb24', '3539923'), + (31778, 319, 743, 'not_attending', '2021-06-12 22:04:39', '2025-12-17 19:47:38', 'LmpJzb24', '3680623'), + (31779, 319, 744, 'not_attending', '2021-05-30 01:33:21', '2025-12-17 19:47:47', 'LmpJzb24', '3680624'), + (31780, 319, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'LmpJzb24', '3963335'), + (31781, 319, 823, 'not_attending', '2021-06-16 00:05:12', '2025-12-17 19:47:48', 'LmpJzb24', '3974109'), + (31782, 319, 824, 'not_attending', '2021-06-03 21:57:23', '2025-12-17 19:47:47', 'LmpJzb24', '3974112'), + (31783, 319, 825, 'attending', '2021-06-08 23:15:48', '2025-12-17 19:47:47', 'LmpJzb24', '3975283'), + (31784, 319, 827, 'attending', '2021-06-04 14:38:16', '2025-12-17 19:47:47', 'LmpJzb24', '3975311'), + (31785, 319, 828, 'not_attending', '2021-06-04 14:19:38', '2025-12-17 19:47:47', 'LmpJzb24', '3975312'), + (31786, 319, 829, 'attending', '2021-05-31 02:52:09', '2025-12-17 19:47:47', 'LmpJzb24', '3976202'), + (31787, 319, 834, 'maybe', '2021-06-07 14:53:14', '2025-12-17 19:47:47', 'LmpJzb24', '3990439'), + (31788, 319, 838, 'not_attending', '2021-06-07 23:01:20', '2025-12-17 19:47:47', 'LmpJzb24', '3994992'), + (31789, 319, 843, 'attending', '2021-06-09 22:28:45', '2025-12-17 19:47:47', 'LmpJzb24', '4011909'), + (31790, 319, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpJzb24', '4014338'), + (31791, 319, 867, 'attending', '2021-06-24 00:03:30', '2025-12-17 19:47:38', 'LmpJzb24', '4021848'), + (31792, 319, 869, 'not_attending', '2021-06-30 22:17:35', '2025-12-17 19:47:38', 'LmpJzb24', '4136744'), + (31793, 319, 870, 'attending', '2021-06-30 15:27:38', '2025-12-17 19:47:39', 'LmpJzb24', '4136937'), + (31794, 319, 871, 'not_attending', '2021-07-10 15:47:08', '2025-12-17 19:47:39', 'LmpJzb24', '4136938'), + (31795, 319, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJzb24', '4136947'), + (31796, 319, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpJzb24', '4210314'), + (31797, 319, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpJzb24', '4225444'), + (31798, 319, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpJzb24', '4239259'), + (31799, 319, 900, 'not_attending', '2021-07-21 16:38:34', '2025-12-17 19:47:40', 'LmpJzb24', '4240316'), + (31800, 319, 901, 'attending', '2021-07-31 13:56:55', '2025-12-17 19:47:40', 'LmpJzb24', '4240317'), + (31801, 319, 902, 'not_attending', '2021-08-07 19:04:32', '2025-12-17 19:47:41', 'LmpJzb24', '4240318'), + (31802, 319, 903, 'attending', '2021-08-12 15:30:23', '2025-12-17 19:47:42', 'LmpJzb24', '4240320'), + (31803, 319, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpJzb24', '4250163'), + (31804, 319, 916, 'maybe', '2021-07-17 15:20:45', '2025-12-17 19:47:40', 'LmpJzb24', '4273772'), + (31805, 319, 917, 'attending', '2021-07-14 14:00:27', '2025-12-17 19:47:39', 'LmpJzb24', '4274481'), + (31806, 319, 919, 'not_attending', '2021-07-16 18:43:00', '2025-12-17 19:47:39', 'LmpJzb24', '4275957'), + (31807, 319, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpJzb24', '4277819'), + (31808, 319, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpJzb24', '4301723'), + (31809, 319, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpJzb24', '4302093'), + (31810, 319, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpJzb24', '4304151'), + (31811, 319, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'LmpJzb24', '4345519'), + (31812, 319, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'LmpJzb24', '4356801'), + (31813, 319, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpJzb24', '4358025'), + (31814, 319, 973, 'not_attending', '2021-08-18 15:03:25', '2025-12-17 19:47:42', 'LmpJzb24', '4366186'), + (31815, 319, 974, 'not_attending', '2021-08-28 18:27:22', '2025-12-17 19:47:43', 'LmpJzb24', '4366187'), + (31816, 319, 988, 'not_attending', '2021-08-27 23:52:35', '2025-12-17 19:47:42', 'LmpJzb24', '4402823'), + (31817, 319, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'LmpJzb24', '4420735'), + (31818, 319, 991, 'not_attending', '2021-09-10 17:51:07', '2025-12-17 19:47:43', 'LmpJzb24', '4420738'), + (31819, 319, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'LmpJzb24', '4420739'), + (31820, 319, 993, 'not_attending', '2021-10-08 18:56:15', '2025-12-17 19:47:34', 'LmpJzb24', '4420741'), + (31821, 319, 995, 'not_attending', '2021-10-08 18:56:22', '2025-12-17 19:47:34', 'LmpJzb24', '4420744'), + (31822, 319, 996, 'attending', '2021-10-15 23:37:41', '2025-12-17 19:47:35', 'LmpJzb24', '4420747'), + (31823, 319, 997, 'not_attending', '2021-10-20 20:50:34', '2025-12-17 19:47:35', 'LmpJzb24', '4420748'), + (31824, 319, 998, 'not_attending', '2021-10-20 20:50:44', '2025-12-17 19:47:36', 'LmpJzb24', '4420749'), + (31825, 319, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'LmpJzb24', '4461883'), + (31826, 319, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpJzb24', '4508342'), + (31827, 319, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpJzb24', '4568602'), + (31828, 319, 1087, 'attending', '2021-10-15 23:37:37', '2025-12-17 19:47:35', 'LmpJzb24', '4572153'), + (31829, 319, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpJzb24', '4585962'), + (31830, 319, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'LmpJzb24', '4596356'), + (31831, 319, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpJzb24', '4598860'), + (31832, 319, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpJzb24', '4598861'), + (31833, 319, 1099, 'not_attending', '2021-11-06 02:00:57', '2025-12-17 19:47:36', 'LmpJzb24', '4602797'), + (31834, 319, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'LmpJzb24', '4637896'), + (31835, 319, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpJzb24', '4642994'), + (31836, 319, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'LmpJzb24', '4642995'), + (31837, 319, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpJzb24', '4642996'), + (31838, 319, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpJzb24', '4642997'), + (31839, 319, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'LmpJzb24', '4645687'), + (31840, 319, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpJzb24', '4645698'), + (31841, 319, 1128, 'not_attending', '2021-11-20 19:12:10', '2025-12-17 19:47:37', 'LmpJzb24', '4645704'), + (31842, 319, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'LmpJzb24', '4645705'), + (31843, 319, 1130, 'not_attending', '2021-12-04 23:52:07', '2025-12-17 19:47:37', 'LmpJzb24', '4658824'), + (31844, 319, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpJzb24', '4668385'), + (31845, 319, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpJzb24', '4694407'), + (31846, 319, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'LmpJzb24', '4736497'), + (31847, 319, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpJzb24', '4736499'), + (31848, 319, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'LmpJzb24', '4736500'), + (31849, 319, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'LmpJzb24', '4736503'), + (31850, 319, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpJzb24', '4736504'), + (31851, 319, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpJzb24', '4746789'), + (31852, 319, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'LmpJzb24', '4753929'), + (31853, 319, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpJzb24', '5038850'), + (31854, 319, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpJzb24', '5045826'), + (31855, 319, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpJzb24', '5132533'), + (31856, 319, 1272, 'not_attending', '2022-03-19 19:41:02', '2025-12-17 19:47:25', 'LmpJzb24', '5186582'), + (31857, 319, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpJzb24', '5186583'), + (31858, 319, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'LmpJzb24', '5186585'), + (31859, 319, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpJzb24', '5190437'), + (31860, 319, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'LmpJzb24', '5195095'), + (31861, 319, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpJzb24', '5215989'), + (31862, 319, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'LmpJzb24', '5223686'), + (31863, 319, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'LmpJzb24', '5227432'), + (31864, 319, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'LmpJzb24', '5247467'), + (31865, 319, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'LmpJzb24', '5260800'), + (31866, 319, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'LmpJzb24', '5269930'), + (31867, 319, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'LmpJzb24', '5271448'), + (31868, 319, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'LmpJzb24', '5271449'), + (31869, 319, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'LmpJzb24', '5276469'), + (31870, 319, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'LmpJzb24', '5278159'), + (31871, 319, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'LmpJzb24', '5363695'), + (31872, 319, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'LmpJzb24', '5365960'), + (31873, 319, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'LmpJzb24', '5368973'), + (31874, 319, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'LmpJzb24', '5378247'), + (31875, 319, 1431, 'not_attending', '2022-06-11 17:36:20', '2025-12-17 19:47:31', 'LmpJzb24', '5389605'), + (31876, 319, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'LmpJzb24', '5397265'), + (31877, 319, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'LmpJzb24', '5403967'), + (31878, 319, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'LmpJzb24', '5404786'), + (31879, 319, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'LmpJzb24', '5405203'), + (31880, 319, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'LmpJzb24', '5408794'), + (31881, 319, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'LmpJzb24', '5411699'), + (31882, 319, 1482, 'not_attending', '2022-06-24 19:41:44', '2025-12-17 19:47:19', 'LmpJzb24', '5412550'), + (31883, 319, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'LmpJzb24', '5415046'), + (31884, 319, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'LmpJzb24', '5422086'), + (31885, 319, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'LmpJzb24', '5422406'), + (31886, 319, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'LmpJzb24', '5424565'), + (31887, 319, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'LmpJzb24', '5426882'), + (31888, 319, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'LmpJzb24', '5427083'), + (31889, 319, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'LmpJzb24', '5441125'), + (31890, 319, 1514, 'attending', '2022-07-20 21:35:16', '2025-12-17 19:47:20', 'LmpJzb24', '5441126'), + (31891, 319, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'LmpJzb24', '5441128'), + (31892, 319, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'LmpJzb24', '5441131'), + (31893, 319, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'LmpJzb24', '5441132'), + (31894, 319, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'LmpJzb24', '5446643'), + (31895, 319, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'LmpJzb24', '5453325'), + (31896, 319, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'LmpJzb24', '5454516'), + (31897, 319, 1545, 'maybe', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'LmpJzb24', '5454605'), + (31898, 319, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'LmpJzb24', '5455037'), + (31899, 319, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'LmpJzb24', '5461278'), + (31900, 319, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'LmpJzb24', '5469480'), + (31901, 319, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'LmpJzb24', '5471073'), + (31902, 319, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'LmpJzb24', '5474663'), + (31903, 319, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'LmpJzb24', '5482022'), + (31904, 319, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'LmpJzb24', '5482793'), + (31905, 319, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'LmpJzb24', '5488912'), + (31906, 319, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'LmpJzb24', '5492192'), + (31907, 319, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'LmpJzb24', '5493139'), + (31908, 319, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'LmpJzb24', '5493200'), + (31909, 319, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'LmpJzb24', '5502188'), + (31910, 319, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'LmpJzb24', '5505059'), + (31911, 319, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'LmpJzb24', '5509055'), + (31912, 319, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'LmpJzb24', '5512862'), + (31913, 319, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'LmpJzb24', '5513985'), + (31914, 319, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'LmpJzb24', '5519981'), + (31915, 319, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'LmpJzb24', '5522550'), + (31916, 319, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'LmpJzb24', '5534683'), + (31917, 319, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'LmpJzb24', '5537735'), + (31918, 319, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'LmpJzb24', '5540859'), + (31919, 319, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'LmpJzb24', '5546619'), + (31920, 319, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'LmpJzb24', '5555245'), + (31921, 319, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'LmpJzb24', '5557747'), + (31922, 319, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'LmpJzb24', '5560255'), + (31923, 319, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'LmpJzb24', '5562906'), + (31924, 319, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'LmpJzb24', '5600604'), + (31925, 319, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'LmpJzb24', '5605544'), + (31926, 319, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'LmpJzb24', '5606737'), + (31927, 319, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'LmpJzb24', '5630960'), + (31928, 319, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'LmpJzb24', '5630961'), + (31929, 319, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'LmpJzb24', '5630962'), + (31930, 319, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'LmpJzb24', '5630966'), + (31931, 319, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'LmpJzb24', '5630967'), + (31932, 319, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'LmpJzb24', '5630968'), + (31933, 319, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'LmpJzb24', '5635406'), + (31934, 319, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'LmpJzb24', '5638765'), + (31935, 319, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'LmpJzb24', '5640097'), + (31936, 319, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'LmpJzb24', '5640843'), + (31937, 319, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'LmpJzb24', '5641521'), + (31938, 319, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'LmpJzb24', '5642818'), + (31939, 319, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'LmpJzb24', '5652395'), + (31940, 319, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'LmpJzb24', '5670445'), + (31941, 319, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'LmpJzb24', '5671637'), + (31942, 319, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'LmpJzb24', '5672329'), + (31943, 319, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'LmpJzb24', '5674057'), + (31944, 319, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'LmpJzb24', '5674060'), + (31945, 319, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'LmpJzb24', '5677461'), + (31946, 319, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'LmpJzb24', '5698046'), + (31947, 319, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'LmpJzb24', '5699760'), + (31948, 319, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'LmpJzb24', '5741601'), + (31949, 319, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'LmpJzb24', '5763458'), + (31950, 319, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'LmpJzb24', '5774172'), + (31951, 319, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'LmpJzb24', '5818247'), + (31952, 319, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'LmpJzb24', '5819471'), + (31953, 319, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'LmpJzb24', '5827739'), + (31954, 319, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'LmpJzb24', '5844306'), + (31955, 319, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'LmpJzb24', '5850159'), + (31956, 319, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'LmpJzb24', '5858999'), + (31957, 319, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'LmpJzb24', '5871984'), + (31958, 319, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'LmpJzb24', '5876354'), + (31959, 319, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'LmpJzb24', '5880939'), + (31960, 319, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'LmpJzb24', '5887890'), + (31961, 319, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'LmpJzb24', '5888598'), + (31962, 319, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'LmpJzb24', '5893260'), + (31963, 319, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'LmpJzb24', '5900202'), + (31964, 319, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'LmpJzb24', '5962317'), + (31965, 319, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'LmpJzb24', '5962318'), + (31966, 319, 1951, 'not_attending', '2023-03-21 00:52:15', '2025-12-17 19:46:57', 'LmpJzb24', '5965933'), + (31967, 319, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'LmpJzb24', '6028191'), + (31968, 319, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'LmpJzb24', '6040066'), + (31969, 319, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'LmpJzb24', '6042717'), + (31970, 319, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'LmpJzb24', '6044838'), + (31971, 319, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'LmpJzb24', '6044839'), + (31972, 319, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJzb24', '6045684'), + (31973, 319, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'LmpJzb24', '6050104'), + (31974, 319, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'LmpJzb24', '6053195'), + (31975, 319, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'LmpJzb24', '6053198'), + (31976, 319, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'LmpJzb24', '6056085'), + (31977, 319, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'LmpJzb24', '6056916'), + (31978, 319, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'LmpJzb24', '6059290'), + (31979, 319, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'LmpJzb24', '6060328'), + (31980, 319, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'LmpJzb24', '6061037'), + (31981, 319, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'LmpJzb24', '6061039'), + (31982, 319, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'LmpJzb24', '6067245'), + (31983, 319, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'LmpJzb24', '6068094'), + (31984, 319, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'LmpJzb24', '6068252'), + (31985, 319, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'LmpJzb24', '6068253'), + (31986, 319, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'LmpJzb24', '6068254'), + (31987, 319, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'LmpJzb24', '6068280'), + (31988, 319, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'LmpJzb24', '6069093'), + (31989, 319, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'LmpJzb24', '6072528'), + (31990, 319, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'LmpJzb24', '6079840'), + (31991, 319, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'LmpJzb24', '6083398'), + (31992, 319, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'LmpJzb24', '6093504'), + (31993, 319, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'LmpJzb24', '6097414'), + (31994, 319, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'LmpJzb24', '6097442'), + (31995, 319, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'LmpJzb24', '6097684'), + (31996, 319, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'LmpJzb24', '6098762'), + (31997, 319, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'LmpJzb24', '6101361'), + (31998, 319, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'LmpJzb24', '6101362'), + (31999, 319, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'LmpJzb24', '6103752'), + (32000, 319, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'LmpJzb24', '6107314'), + (32001, 319, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'LmpJzb24', '6120034'), + (32002, 319, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'LmpJzb24', '6136733'), + (32003, 319, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'LmpJzb24', '6137989'), + (32004, 319, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'LmpJzb24', '6150864'), + (32005, 319, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'LmpJzb24', '6155491'), + (32006, 319, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'LmpJzb24', '6164417'), + (32007, 319, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'LmpJzb24', '6166388'), + (32008, 319, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'LmpJzb24', '6176439'), + (32009, 319, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'LmpJzb24', '6182410'), + (32010, 319, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'LmpJzb24', '6185812'), + (32011, 319, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'LmpJzb24', '6187651'), + (32012, 319, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'LmpJzb24', '6187963'), + (32013, 319, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'LmpJzb24', '6187964'), + (32014, 319, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'LmpJzb24', '6187966'), + (32015, 319, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'LmpJzb24', '6187967'), + (32016, 319, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'LmpJzb24', '6187969'), + (32017, 319, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'LmpJzb24', '6334878'), + (32018, 319, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'LmpJzb24', '6337236'), + (32019, 319, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'LmpJzb24', '6337970'), + (32020, 319, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'LmpJzb24', '6338308'), + (32021, 319, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'LmpJzb24', '6340845'), + (32022, 319, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'LmpJzb24', '6341710'), + (32023, 319, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'LmpJzb24', '6342044'), + (32024, 319, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'LmpJzb24', '6342298'), + (32025, 319, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'LmpJzb24', '6343294'), + (32026, 319, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'LmpJzb24', '6347034'), + (32027, 319, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'LmpJzb24', '6347056'), + (32028, 319, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'LmpJzb24', '6353830'), + (32029, 319, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'LmpJzb24', '6353831'), + (32030, 319, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'LmpJzb24', '6357867'), + (32031, 319, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'LmpJzb24', '6358652'), + (32032, 319, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'LmpJzb24', '6361709'), + (32033, 319, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'LmpJzb24', '6361710'), + (32034, 319, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'LmpJzb24', '6361711'), + (32035, 319, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'LmpJzb24', '6361712'), + (32036, 319, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'LmpJzb24', '6361713'), + (32037, 319, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'LmpJzb24', '6382573'), + (32038, 319, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'LmpJzb24', '6388604'), + (32039, 319, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'LmpJzb24', '6394629'), + (32040, 319, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'LmpJzb24', '6394631'), + (32041, 319, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'LmpJzb24', '6440863'), + (32042, 319, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'LmpJzb24', '6445440'), + (32043, 319, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'LmpJzb24', '6453951'), + (32044, 319, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'LmpJzb24', '6461696'), + (32045, 319, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'LmpJzb24', '6462129'), + (32046, 319, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'LmpJzb24', '6463218'), + (32047, 319, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'LmpJzb24', '6472181'), + (32048, 319, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'LmpJzb24', '6482693'), + (32049, 319, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'LmpJzb24', '6484200'), + (32050, 319, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'LmpJzb24', '6484680'), + (32051, 319, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'LmpJzb24', '6507741'), + (32052, 319, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'LmpJzb24', '6514659'), + (32053, 319, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'LmpJzb24', '6514660'), + (32054, 319, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'LmpJzb24', '6519103'), + (32055, 319, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'LmpJzb24', '6535681'), + (32056, 319, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'LmpJzb24', '6584747'), + (32057, 319, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'LmpJzb24', '6587097'), + (32058, 319, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'LmpJzb24', '6609022'), + (32059, 319, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'LmpJzb24', '6632757'), + (32060, 319, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'LmpJzb24', '6644187'), + (32061, 319, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'LmpJzb24', '6648951'), + (32062, 319, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'LmpJzb24', '6648952'), + (32063, 319, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'LmpJzb24', '6655401'), + (32064, 319, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'LmpJzb24', '6661585'), + (32065, 319, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'LmpJzb24', '6661588'), + (32066, 319, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'LmpJzb24', '6661589'), + (32067, 319, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'LmpJzb24', '6699906'), + (32068, 319, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'LmpJzb24', '6701109'), + (32069, 319, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'LmpJzb24', '6705219'), + (32070, 319, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'LmpJzb24', '6710153'), + (32071, 319, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'LmpJzb24', '6711552'), + (32072, 319, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'LmpJzb24', '6711553'), + (32073, 320, 1626, 'not_attending', '2022-09-29 15:34:15', '2025-12-17 19:47:12', 'mjY2ggad', '5519981'), + (32074, 320, 1629, 'not_attending', '2022-09-16 07:38:52', '2025-12-17 19:47:11', 'mjY2ggad', '5522550'), + (32075, 320, 1635, 'not_attending', '2022-09-16 07:37:09', '2025-12-17 19:47:11', 'mjY2ggad', '5537735'), + (32076, 320, 1655, 'attending', '2022-09-17 11:55:17', '2025-12-17 19:47:11', 'mjY2ggad', '5554482'), + (32077, 320, 1669, 'maybe', '2022-09-16 03:14:04', '2025-12-17 19:47:10', 'mjY2ggad', '5564033'), + (32078, 320, 1676, 'attending', '2022-09-21 09:05:39', '2025-12-17 19:47:11', 'mjY2ggad', '5596181'), + (32079, 320, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mjY2ggad', '5600604'), + (32080, 320, 1679, 'attending', '2022-09-29 15:36:24', '2025-12-17 19:47:12', 'mjY2ggad', '5601099'), + (32081, 320, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mjY2ggad', '5605544'), + (32082, 320, 1698, 'attending', '2022-09-26 09:23:54', '2025-12-17 19:47:11', 'mjY2ggad', '5606366'), + (32083, 320, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mjY2ggad', '5630960'), + (32084, 320, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mjY2ggad', '5630961'), + (32085, 320, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mjY2ggad', '5630962'), + (32086, 320, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mjY2ggad', '5630966'), + (32087, 320, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mjY2ggad', '5630967'), + (32088, 320, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mjY2ggad', '5630968'), + (32089, 320, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mjY2ggad', '5635406'), + (32090, 320, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mjY2ggad', '5638765'), + (32091, 320, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mjY2ggad', '5640097'), + (32092, 320, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mjY2ggad', '5640843'), + (32093, 320, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mjY2ggad', '5641521'), + (32094, 320, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mjY2ggad', '5652395'), + (32095, 320, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mjY2ggad', '5671637'), + (32096, 320, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mjY2ggad', '5672329'), + (32097, 320, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mjY2ggad', '5674057'), + (32098, 320, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mjY2ggad', '5674060'), + (32099, 320, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mjY2ggad', '5677461'), + (32100, 320, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mjY2ggad', '5698046'), + (32101, 320, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mjY2ggad', '5699760'), + (32102, 320, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mjY2ggad', '5741601'), + (32103, 320, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mjY2ggad', '5763458'), + (32104, 320, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjY2ggad', '6045684'), + (32105, 321, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ArQLP9Xm', '5271448'), + (32106, 321, 1379, 'attending', '2022-05-06 20:08:23', '2025-12-17 19:47:29', 'ArQLP9Xm', '5271449'), + (32107, 321, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ArQLP9Xm', '5276469'), + (32108, 321, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ArQLP9Xm', '5278159'), + (32109, 321, 1388, 'not_attending', '2022-05-06 20:46:21', '2025-12-17 19:47:28', 'ArQLP9Xm', '5278201'), + (32110, 321, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ArQLP9Xm', '5363695'), + (32111, 321, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQLP9Xm', '5365960'), + (32112, 321, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQLP9Xm', '5368973'), + (32113, 321, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ArQLP9Xm', '5378247'), + (32114, 321, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ArQLP9Xm', '5389605'), + (32115, 321, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ArQLP9Xm', '5397265'), + (32116, 321, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQLP9Xm', '6045684'), + (32117, 322, 7, 'attending', '2020-03-22 16:57:51', '2025-12-17 19:47:58', 'Qd58nkE4', '2958049'), + (32118, 322, 8, 'attending', '2020-03-22 16:57:46', '2025-12-17 19:47:58', 'Qd58nkE4', '2958050'), + (32119, 322, 10, 'attending', '2020-03-28 18:27:31', '2025-12-17 19:47:56', 'Qd58nkE4', '2958053'), + (32120, 322, 11, 'attending', '2020-04-04 12:19:53', '2025-12-17 19:47:57', 'Qd58nkE4', '2958055'), + (32121, 322, 12, 'attending', '2020-03-22 17:11:12', '2025-12-17 19:47:56', 'Qd58nkE4', '2958056'), + (32122, 322, 13, 'not_attending', '2020-04-06 19:15:13', '2025-12-17 19:47:57', 'Qd58nkE4', '2958057'), + (32123, 322, 14, 'not_attending', '2020-04-06 19:15:16', '2025-12-17 19:47:57', 'Qd58nkE4', '2958058'), + (32124, 322, 15, 'not_attending', '2020-03-22 17:12:10', '2025-12-17 19:47:57', 'Qd58nkE4', '2958059'), + (32125, 322, 16, 'attending', '2020-03-24 21:50:20', '2025-12-17 19:47:56', 'Qd58nkE4', '2958060'), + (32126, 322, 18, 'not_attending', '2020-04-04 22:15:52', '2025-12-17 19:47:57', 'Qd58nkE4', '2958062'), + (32127, 322, 23, 'maybe', '2020-06-07 20:26:18', '2025-12-17 19:47:58', 'Qd58nkE4', '2958067'), + (32128, 322, 24, 'maybe', '2020-06-24 18:13:53', '2025-12-17 19:47:55', 'Qd58nkE4', '2958068'), + (32129, 322, 25, 'maybe', '2020-07-09 11:31:39', '2025-12-17 19:47:55', 'Qd58nkE4', '2958069'), + (32130, 322, 26, 'not_attending', '2020-04-01 22:50:13', '2025-12-17 19:47:57', 'Qd58nkE4', '2958082'), + (32131, 322, 28, 'attending', '2020-03-27 09:30:32', '2025-12-17 19:47:56', 'Qd58nkE4', '2960421'), + (32132, 322, 29, 'attending', '2020-03-25 15:04:39', '2025-12-17 19:47:56', 'Qd58nkE4', '2961309'), + (32133, 322, 30, 'attending', '2020-03-23 20:57:36', '2025-12-17 19:47:57', 'Qd58nkE4', '2961895'), + (32134, 322, 31, 'not_attending', '2020-03-24 21:51:10', '2025-12-17 19:47:58', 'Qd58nkE4', '2963118'), + (32135, 322, 32, 'attending', '2020-03-25 15:04:33', '2025-12-17 19:47:56', 'Qd58nkE4', '2963931'), + (32136, 322, 36, 'attending', '2020-03-29 01:56:20', '2025-12-17 19:47:57', 'Qd58nkE4', '2969208'), + (32137, 322, 37, 'attending', '2020-03-29 16:36:50', '2025-12-17 19:47:56', 'Qd58nkE4', '2969680'), + (32138, 322, 38, 'attending', '2020-03-30 13:58:45', '2025-12-17 19:47:56', 'Qd58nkE4', '2969751'), + (32139, 322, 39, 'attending', '2020-03-31 21:00:04', '2025-12-17 19:47:56', 'Qd58nkE4', '2970637'), + (32140, 322, 40, 'maybe', '2020-04-10 21:47:22', '2025-12-17 19:47:57', 'Qd58nkE4', '2970718'), + (32141, 322, 41, 'attending', '2020-04-13 01:01:39', '2025-12-17 19:47:57', 'Qd58nkE4', '2971546'), + (32142, 322, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'Qd58nkE4', '2974534'), + (32143, 322, 45, 'not_attending', '2020-04-06 19:15:19', '2025-12-17 19:47:57', 'Qd58nkE4', '2974760'), + (32144, 322, 46, 'attending', '2020-04-10 21:00:34', '2025-12-17 19:47:57', 'Qd58nkE4', '2974955'), + (32145, 322, 49, 'not_attending', '2020-06-02 19:43:36', '2025-12-17 19:47:58', 'Qd58nkE4', '2975274'), + (32146, 322, 50, 'maybe', '2020-07-25 22:26:57', '2025-12-17 19:47:55', 'Qd58nkE4', '2975275'), + (32147, 322, 55, 'attending', '2020-04-06 21:44:25', '2025-12-17 19:47:57', 'Qd58nkE4', '2975384'), + (32148, 322, 56, 'attending', '2020-04-12 21:58:19', '2025-12-17 19:47:57', 'Qd58nkE4', '2975385'), + (32149, 322, 57, 'attending', '2020-04-26 21:46:30', '2025-12-17 19:47:57', 'Qd58nkE4', '2976575'), + (32150, 322, 58, 'attending', '2020-04-14 01:30:06', '2025-12-17 19:47:57', 'Qd58nkE4', '2977127'), + (32151, 322, 59, 'attending', '2020-05-05 20:45:03', '2025-12-17 19:47:57', 'Qd58nkE4', '2977128'), + (32152, 322, 60, 'attending', '2020-04-26 21:52:20', '2025-12-17 19:47:57', 'Qd58nkE4', '2977129'), + (32153, 322, 61, 'attending', '2020-04-13 00:22:05', '2025-12-17 19:47:57', 'Qd58nkE4', '2977130'), + (32154, 322, 62, 'not_attending', '2020-05-12 22:50:24', '2025-12-17 19:47:57', 'Qd58nkE4', '2977131'), + (32155, 322, 63, 'attending', '2020-05-19 22:27:53', '2025-12-17 19:47:57', 'Qd58nkE4', '2977132'), + (32156, 322, 66, 'maybe', '2020-06-08 11:41:57', '2025-12-17 19:47:58', 'Qd58nkE4', '2977135'), + (32157, 322, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'Qd58nkE4', '2977343'), + (32158, 322, 71, 'attending', '2020-04-10 21:00:33', '2025-12-17 19:47:57', 'Qd58nkE4', '2977526'), + (32159, 322, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'Qd58nkE4', '2977812'), + (32160, 322, 73, 'attending', '2020-04-13 00:21:34', '2025-12-17 19:47:57', 'Qd58nkE4', '2977931'), + (32161, 322, 74, 'attending', '2020-04-16 16:11:17', '2025-12-17 19:47:57', 'Qd58nkE4', '2978244'), + (32162, 322, 75, 'attending', '2020-04-25 14:02:32', '2025-12-17 19:47:57', 'Qd58nkE4', '2978245'), + (32163, 322, 76, 'attending', '2020-04-26 21:52:44', '2025-12-17 19:47:57', 'Qd58nkE4', '2978246'), + (32164, 322, 77, 'attending', '2020-05-09 19:09:05', '2025-12-17 19:47:57', 'Qd58nkE4', '2978247'), + (32165, 322, 78, 'attending', '2020-05-22 03:12:31', '2025-12-17 19:47:57', 'Qd58nkE4', '2978249'), + (32166, 322, 79, 'maybe', '2020-05-30 16:31:50', '2025-12-17 19:47:57', 'Qd58nkE4', '2978250'), + (32167, 322, 80, 'attending', '2020-05-23 21:48:01', '2025-12-17 19:47:58', 'Qd58nkE4', '2978251'), + (32168, 322, 81, 'not_attending', '2020-06-13 19:12:25', '2025-12-17 19:47:58', 'Qd58nkE4', '2978252'), + (32169, 322, 82, 'maybe', '2020-04-24 22:56:39', '2025-12-17 19:47:57', 'Qd58nkE4', '2978433'), + (32170, 322, 83, 'maybe', '2020-05-07 22:58:45', '2025-12-17 19:47:57', 'Qd58nkE4', '2978438'), + (32171, 322, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'Qd58nkE4', '2980871'), + (32172, 322, 85, 'attending', '2020-04-13 00:20:14', '2025-12-17 19:47:57', 'Qd58nkE4', '2980872'), + (32173, 322, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'Qd58nkE4', '2981388'), + (32174, 322, 87, 'attending', '2020-04-22 11:12:04', '2025-12-17 19:47:57', 'Qd58nkE4', '2982602'), + (32175, 322, 88, 'attending', '2020-04-16 11:34:56', '2025-12-17 19:47:57', 'Qd58nkE4', '2982603'), + (32176, 322, 89, 'attending', '2020-04-26 21:52:41', '2025-12-17 19:47:57', 'Qd58nkE4', '2982604'), + (32177, 322, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'Qd58nkE4', '2986743'), + (32178, 322, 96, 'attending', '2020-04-21 23:28:33', '2025-12-17 19:47:57', 'Qd58nkE4', '2987453'), + (32179, 322, 97, 'attending', '2020-04-21 23:28:37', '2025-12-17 19:47:57', 'Qd58nkE4', '2987454'), + (32180, 322, 100, 'maybe', '2020-04-21 04:45:20', '2025-12-17 19:47:57', 'Qd58nkE4', '2989142'), + (32181, 322, 103, 'not_attending', '2020-05-04 11:47:37', '2025-12-17 19:47:57', 'Qd58nkE4', '2991407'), + (32182, 322, 104, 'attending', '2020-04-26 01:57:44', '2025-12-17 19:47:57', 'Qd58nkE4', '2991471'), + (32183, 322, 106, 'maybe', '2020-04-27 02:47:34', '2025-12-17 19:47:57', 'Qd58nkE4', '2993501'), + (32184, 322, 108, 'not_attending', '2020-05-17 16:48:44', '2025-12-17 19:47:57', 'Qd58nkE4', '2993504'), + (32185, 322, 109, 'maybe', '2020-05-12 23:08:38', '2025-12-17 19:47:57', 'Qd58nkE4', '2994480'), + (32186, 322, 110, 'attending', '2020-05-03 03:48:14', '2025-12-17 19:47:57', 'Qd58nkE4', '2994906'), + (32187, 322, 111, 'attending', '2020-06-07 11:28:02', '2025-12-17 19:47:58', 'Qd58nkE4', '2994907'), + (32188, 322, 112, 'attending', '2020-07-04 14:35:50', '2025-12-17 19:47:55', 'Qd58nkE4', '2994908'), + (32189, 322, 113, 'attending', '2020-08-01 03:13:34', '2025-12-17 19:47:56', 'Qd58nkE4', '2994909'), + (32190, 322, 114, 'not_attending', '2020-04-29 00:32:12', '2025-12-17 19:47:57', 'Qd58nkE4', '2994911'), + (32191, 322, 115, 'attending', '2020-05-16 22:23:26', '2025-12-17 19:47:57', 'Qd58nkE4', '3001217'), + (32192, 322, 119, 'attending', '2020-05-09 16:07:11', '2025-12-17 19:47:57', 'Qd58nkE4', '3015486'), + (32193, 322, 120, 'maybe', '2020-05-11 12:44:54', '2025-12-17 19:47:57', 'Qd58nkE4', '3018282'), + (32194, 322, 121, 'attending', '2020-05-16 11:59:06', '2025-12-17 19:47:57', 'Qd58nkE4', '3023063'), + (32195, 322, 122, 'attending', '2020-05-15 19:23:34', '2025-12-17 19:47:57', 'Qd58nkE4', '3023491'), + (32196, 322, 125, 'maybe', '2020-05-22 16:47:58', '2025-12-17 19:47:57', 'Qd58nkE4', '3023987'), + (32197, 322, 127, 'not_attending', '2020-05-19 17:50:50', '2025-12-17 19:47:57', 'Qd58nkE4', '3025623'), + (32198, 322, 129, 'attending', '2020-05-28 12:42:39', '2025-12-17 19:47:58', 'Qd58nkE4', '3028743'), + (32199, 322, 133, 'attending', '2020-06-19 12:42:57', '2025-12-17 19:47:58', 'Qd58nkE4', '3034321'), + (32200, 322, 135, 'maybe', '2020-05-24 21:19:06', '2025-12-17 19:47:57', 'Qd58nkE4', '3034368'), + (32201, 322, 136, 'attending', '2020-05-24 21:18:28', '2025-12-17 19:47:57', 'Qd58nkE4', '3035881'), + (32202, 322, 137, 'attending', '2020-05-28 01:19:03', '2025-12-17 19:47:58', 'Qd58nkE4', '3042188'), + (32203, 322, 138, 'attending', '2020-06-14 13:05:17', '2025-12-17 19:47:58', 'Qd58nkE4', '3042932'), + (32204, 322, 139, 'not_attending', '2020-06-16 11:57:44', '2025-12-17 19:47:58', 'Qd58nkE4', '3046190'), + (32205, 322, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'Qd58nkE4', '3049983'), + (32206, 322, 146, 'maybe', '2020-06-27 16:11:12', '2025-12-17 19:47:55', 'Qd58nkE4', '3058683'), + (32207, 322, 147, 'attending', '2020-08-17 03:48:59', '2025-12-17 19:47:56', 'Qd58nkE4', '3058684'), + (32208, 322, 148, 'attending', '2020-07-11 19:51:50', '2025-12-17 19:47:55', 'Qd58nkE4', '3058685'), + (32209, 322, 150, 'attending', '2020-07-25 20:32:59', '2025-12-17 19:47:55', 'Qd58nkE4', '3058687'), + (32210, 322, 151, 'attending', '2020-08-18 16:46:02', '2025-12-17 19:47:56', 'Qd58nkE4', '3058688'), + (32211, 322, 153, 'attending', '2020-07-29 18:13:30', '2025-12-17 19:47:55', 'Qd58nkE4', '3058690'), + (32212, 322, 166, 'not_attending', '2020-11-21 23:48:58', '2025-12-17 19:47:54', 'Qd58nkE4', '3058704'), + (32213, 322, 172, 'maybe', '2020-06-07 11:29:01', '2025-12-17 19:47:58', 'Qd58nkE4', '3058959'), + (32214, 322, 173, 'attending', '2020-06-19 12:42:37', '2025-12-17 19:47:58', 'Qd58nkE4', '3067093'), + (32215, 322, 181, 'not_attending', '2020-06-20 21:15:24', '2025-12-17 19:47:58', 'Qd58nkE4', '3074513'), + (32216, 322, 182, 'maybe', '2020-06-24 16:56:32', '2025-12-17 19:47:55', 'Qd58nkE4', '3074514'), + (32217, 322, 183, 'not_attending', '2020-06-22 17:14:34', '2025-12-17 19:47:58', 'Qd58nkE4', '3075228'), + (32218, 322, 185, 'attending', '2020-06-20 00:43:44', '2025-12-17 19:47:58', 'Qd58nkE4', '3075456'), + (32219, 322, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'Qd58nkE4', '3083791'), + (32220, 322, 187, 'attending', '2020-06-28 17:57:20', '2025-12-17 19:47:55', 'Qd58nkE4', '3085151'), + (32221, 322, 190, 'maybe', '2020-06-29 10:34:18', '2025-12-17 19:47:55', 'Qd58nkE4', '3087258'), + (32222, 322, 191, 'attending', '2020-07-07 17:13:57', '2025-12-17 19:47:55', 'Qd58nkE4', '3087259'), + (32223, 322, 192, 'not_attending', '2020-07-15 18:24:13', '2025-12-17 19:47:55', 'Qd58nkE4', '3087260'), + (32224, 322, 193, 'attending', '2020-07-25 20:32:57', '2025-12-17 19:47:55', 'Qd58nkE4', '3087261'), + (32225, 322, 194, 'attending', '2020-07-28 12:24:34', '2025-12-17 19:47:56', 'Qd58nkE4', '3087262'), + (32226, 322, 195, 'attending', '2020-08-04 22:39:24', '2025-12-17 19:47:56', 'Qd58nkE4', '3087264'), + (32227, 322, 196, 'not_attending', '2020-08-03 17:09:55', '2025-12-17 19:47:56', 'Qd58nkE4', '3087265'), + (32228, 322, 197, 'attending', '2020-08-20 21:33:30', '2025-12-17 19:47:56', 'Qd58nkE4', '3087266'), + (32229, 322, 198, 'not_attending', '2020-08-29 22:38:57', '2025-12-17 19:47:56', 'Qd58nkE4', '3087267'), + (32230, 322, 199, 'attending', '2020-09-04 03:53:26', '2025-12-17 19:47:56', 'Qd58nkE4', '3087268'), + (32231, 322, 200, 'attending', '2020-08-24 13:37:47', '2025-12-17 19:47:56', 'Qd58nkE4', '3087269'), + (32232, 322, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'Qd58nkE4', '3088653'), + (32233, 322, 202, 'attending', '2020-06-21 18:56:57', '2025-12-17 19:47:55', 'Qd58nkE4', '3090353'), + (32234, 322, 203, 'maybe', '2020-06-22 17:14:29', '2025-12-17 19:47:58', 'Qd58nkE4', '3091624'), + (32235, 322, 206, 'maybe', '2020-07-14 00:13:15', '2025-12-17 19:47:55', 'Qd58nkE4', '3104806'), + (32236, 322, 207, 'not_attending', '2020-07-24 13:52:17', '2025-12-17 19:47:55', 'Qd58nkE4', '3104807'), + (32237, 322, 208, 'maybe', '2020-08-07 00:00:54', '2025-12-17 19:47:56', 'Qd58nkE4', '3104808'), + (32238, 322, 209, 'not_attending', '2020-06-29 17:02:30', '2025-12-17 19:47:55', 'Qd58nkE4', '3106813'), + (32239, 322, 213, 'not_attending', '2020-07-07 17:14:05', '2025-12-17 19:47:55', 'Qd58nkE4', '3121083'), + (32240, 322, 216, 'maybe', '2020-07-09 11:31:31', '2025-12-17 19:47:55', 'Qd58nkE4', '3126500'), + (32241, 322, 217, 'maybe', '2020-07-08 00:55:48', '2025-12-17 19:47:55', 'Qd58nkE4', '3126684'), + (32242, 322, 223, 'attending', '2020-08-26 17:54:16', '2025-12-17 19:47:56', 'Qd58nkE4', '3129980'), + (32243, 322, 225, 'attending', '2020-07-13 18:41:17', '2025-12-17 19:47:55', 'Qd58nkE4', '3132378'), + (32244, 322, 226, 'maybe', '2020-07-14 11:08:47', '2025-12-17 19:47:55', 'Qd58nkE4', '3132817'), + (32245, 322, 227, 'maybe', '2020-07-16 15:44:16', '2025-12-17 19:47:55', 'Qd58nkE4', '3132820'), + (32246, 322, 229, 'attending', '2020-07-15 18:09:10', '2025-12-17 19:47:55', 'Qd58nkE4', '3134135'), + (32247, 322, 233, 'attending', '2020-07-19 21:34:37', '2025-12-17 19:47:55', 'Qd58nkE4', '3139773'), + (32248, 322, 234, 'not_attending', '2020-07-29 16:59:13', '2025-12-17 19:47:55', 'Qd58nkE4', '3140456'), + (32249, 322, 254, 'attending', '2021-03-08 18:33:49', '2025-12-17 19:47:51', 'Qd58nkE4', '3149485'), + (32250, 322, 255, 'not_attending', '2021-03-22 12:16:46', '2025-12-17 19:47:43', 'Qd58nkE4', '3149486'), + (32251, 322, 264, 'maybe', '2020-08-05 16:48:39', '2025-12-17 19:47:56', 'Qd58nkE4', '3150735'), + (32252, 322, 265, 'maybe', '2020-07-27 12:18:18', '2025-12-17 19:47:55', 'Qd58nkE4', '3150806'), + (32253, 322, 267, 'maybe', '2020-07-28 18:20:28', '2025-12-17 19:47:55', 'Qd58nkE4', '3152781'), + (32254, 322, 269, 'attending', '2020-07-29 10:59:25', '2025-12-17 19:47:55', 'Qd58nkE4', '3153076'), + (32255, 322, 270, 'attending', '2020-07-29 15:58:26', '2025-12-17 19:47:56', 'Qd58nkE4', '3154457'), + (32256, 322, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'Qd58nkE4', '3155321'), + (32257, 322, 273, 'not_attending', '2020-08-07 00:00:44', '2025-12-17 19:47:56', 'Qd58nkE4', '3162006'), + (32258, 322, 276, 'maybe', '2020-08-04 13:49:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3163408'), + (32259, 322, 277, 'not_attending', '2020-08-06 23:42:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3163442'), + (32260, 322, 278, 'maybe', '2020-08-06 12:25:19', '2025-12-17 19:47:56', 'Qd58nkE4', '3165192'), + (32261, 322, 279, 'not_attending', '2020-08-06 11:37:39', '2025-12-17 19:47:56', 'Qd58nkE4', '3165202'), + (32262, 322, 281, 'maybe', '2020-08-09 17:41:00', '2025-12-17 19:47:56', 'Qd58nkE4', '3166945'), + (32263, 322, 285, 'maybe', '2020-08-14 16:27:17', '2025-12-17 19:47:56', 'Qd58nkE4', '3170245'), + (32264, 322, 286, 'not_attending', '2020-08-26 13:00:20', '2025-12-17 19:47:56', 'Qd58nkE4', '3170246'), + (32265, 322, 288, 'not_attending', '2020-09-02 23:15:34', '2025-12-17 19:47:56', 'Qd58nkE4', '3170249'), + (32266, 322, 289, 'not_attending', '2020-09-02 23:15:50', '2025-12-17 19:47:56', 'Qd58nkE4', '3170250'), + (32267, 322, 293, 'not_attending', '2020-08-18 13:24:05', '2025-12-17 19:47:56', 'Qd58nkE4', '3172832'), + (32268, 322, 294, 'not_attending', '2020-08-18 13:23:51', '2025-12-17 19:47:56', 'Qd58nkE4', '3172833'), + (32269, 322, 295, 'not_attending', '2020-08-24 13:37:32', '2025-12-17 19:47:56', 'Qd58nkE4', '3172834'), + (32270, 322, 296, 'attending', '2020-09-11 23:10:30', '2025-12-17 19:47:56', 'Qd58nkE4', '3172876'), + (32271, 322, 298, 'maybe', '2020-08-27 14:01:25', '2025-12-17 19:47:56', 'Qd58nkE4', '3174556'), + (32272, 322, 299, 'maybe', '2020-08-17 16:24:24', '2025-12-17 19:47:56', 'Qd58nkE4', '3176591'), + (32273, 322, 301, 'not_attending', '2020-08-25 23:37:14', '2025-12-17 19:47:56', 'Qd58nkE4', '3178027'), + (32274, 322, 302, 'not_attending', '2020-08-25 23:37:09', '2025-12-17 19:47:56', 'Qd58nkE4', '3178028'), + (32275, 322, 304, 'attending', '2020-08-14 01:09:19', '2025-12-17 19:47:56', 'Qd58nkE4', '3178916'), + (32276, 322, 307, 'not_attending', '2020-08-20 09:41:40', '2025-12-17 19:47:56', 'Qd58nkE4', '3182590'), + (32277, 322, 308, 'maybe', '2020-09-01 11:34:20', '2025-12-17 19:47:56', 'Qd58nkE4', '3183341'), + (32278, 322, 311, 'maybe', '2020-09-19 21:32:07', '2025-12-17 19:47:56', 'Qd58nkE4', '3186057'), + (32279, 322, 315, 'maybe', '2020-09-04 03:56:21', '2025-12-17 19:47:56', 'Qd58nkE4', '3189085'), + (32280, 322, 317, 'maybe', '2020-08-27 14:01:28', '2025-12-17 19:47:56', 'Qd58nkE4', '3191735'), + (32281, 322, 318, 'attending', '2020-09-01 23:41:50', '2025-12-17 19:47:56', 'Qd58nkE4', '3193885'), + (32282, 322, 319, 'attending', '2020-08-31 22:19:17', '2025-12-17 19:47:56', 'Qd58nkE4', '3194179'), + (32283, 322, 320, 'attending', '2020-08-30 13:17:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3195552'), + (32284, 322, 321, 'not_attending', '2020-09-06 21:50:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3197077'), + (32285, 322, 322, 'not_attending', '2020-09-09 01:53:17', '2025-12-17 19:47:56', 'Qd58nkE4', '3197080'), + (32286, 322, 323, 'not_attending', '2020-09-09 01:53:21', '2025-12-17 19:47:56', 'Qd58nkE4', '3197081'), + (32287, 322, 324, 'maybe', '2020-09-02 00:06:02', '2025-12-17 19:47:56', 'Qd58nkE4', '3197082'), + (32288, 322, 325, 'maybe', '2020-09-02 00:06:05', '2025-12-17 19:47:51', 'Qd58nkE4', '3197083'), + (32289, 322, 326, 'maybe', '2020-09-02 00:06:09', '2025-12-17 19:47:52', 'Qd58nkE4', '3197084'), + (32290, 322, 328, 'maybe', '2020-09-02 15:38:15', '2025-12-17 19:47:52', 'Qd58nkE4', '3197086'), + (32291, 322, 330, 'attending', '2020-09-04 03:38:12', '2025-12-17 19:47:56', 'Qd58nkE4', '3197322'), + (32292, 322, 331, 'not_attending', '2020-09-03 16:09:20', '2025-12-17 19:47:56', 'Qd58nkE4', '3198871'), + (32293, 322, 332, 'not_attending', '2020-09-02 23:15:38', '2025-12-17 19:47:56', 'Qd58nkE4', '3198873'), + (32294, 322, 335, 'not_attending', '2020-09-02 23:15:56', '2025-12-17 19:47:56', 'Qd58nkE4', '3200209'), + (32295, 322, 344, 'not_attending', '2020-11-01 12:14:15', '2025-12-17 19:47:53', 'Qd58nkE4', '3206906'), + (32296, 322, 348, 'attending', '2020-09-12 11:00:33', '2025-12-17 19:47:52', 'Qd58nkE4', '3209159'), + (32297, 322, 353, 'attending', '2020-09-13 15:13:18', '2025-12-17 19:47:56', 'Qd58nkE4', '3210789'), + (32298, 322, 354, 'not_attending', '2020-09-20 18:54:37', '2025-12-17 19:47:56', 'Qd58nkE4', '3212570'), + (32299, 322, 357, 'not_attending', '2020-09-30 10:32:30', '2025-12-17 19:47:52', 'Qd58nkE4', '3212573'), + (32300, 322, 359, 'attending', '2020-09-13 22:18:14', '2025-12-17 19:47:56', 'Qd58nkE4', '3212624'), + (32301, 322, 362, 'maybe', '2020-09-26 21:18:42', '2025-12-17 19:47:52', 'Qd58nkE4', '3214207'), + (32302, 322, 363, 'maybe', '2020-09-27 13:44:32', '2025-12-17 19:47:52', 'Qd58nkE4', '3217037'), + (32303, 322, 365, 'not_attending', '2020-09-23 22:27:24', '2025-12-17 19:47:52', 'Qd58nkE4', '3218510'), + (32304, 322, 379, 'attending', '2020-10-04 19:44:21', '2025-12-17 19:47:52', 'Qd58nkE4', '3226266'), + (32305, 322, 382, 'attending', '2020-09-28 03:26:44', '2025-12-17 19:47:52', 'Qd58nkE4', '3226873'), + (32306, 322, 385, 'maybe', '2020-09-29 01:58:01', '2025-12-17 19:47:52', 'Qd58nkE4', '3228698'), + (32307, 322, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'Qd58nkE4', '3228699'), + (32308, 322, 387, 'attending', '2020-10-16 20:42:03', '2025-12-17 19:47:52', 'Qd58nkE4', '3228700'), + (32309, 322, 388, 'attending', '2020-10-24 18:45:29', '2025-12-17 19:47:52', 'Qd58nkE4', '3228701'), + (32310, 322, 390, 'attending', '2020-10-01 18:07:52', '2025-12-17 19:47:52', 'Qd58nkE4', '3231510'), + (32311, 322, 404, 'not_attending', '2021-03-15 09:51:02', '2025-12-17 19:47:51', 'Qd58nkE4', '3236460'), + (32312, 322, 406, 'attending', '2021-03-29 16:10:13', '2025-12-17 19:47:44', 'Qd58nkE4', '3236464'), + (32313, 322, 414, 'not_attending', '2020-10-18 21:35:36', '2025-12-17 19:47:52', 'Qd58nkE4', '3237277'), + (32314, 322, 416, 'attending', '2020-10-06 23:36:14', '2025-12-17 19:47:52', 'Qd58nkE4', '3238073'), + (32315, 322, 424, 'maybe', '2020-10-19 21:21:21', '2025-12-17 19:47:52', 'Qd58nkE4', '3245751'), + (32316, 322, 426, 'attending', '2020-10-14 13:41:01', '2025-12-17 19:47:52', 'Qd58nkE4', '3250232'), + (32317, 322, 427, 'attending', '2020-11-01 12:14:03', '2025-12-17 19:47:53', 'Qd58nkE4', '3250233'), + (32318, 322, 429, 'attending', '2020-11-07 01:19:29', '2025-12-17 19:47:54', 'Qd58nkE4', '3250523'), + (32319, 322, 440, 'attending', '2020-11-07 23:53:19', '2025-12-17 19:47:53', 'Qd58nkE4', '3256168'), + (32320, 322, 441, 'attending', '2020-11-14 16:21:12', '2025-12-17 19:47:54', 'Qd58nkE4', '3256169'), + (32321, 322, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'Qd58nkE4', '3263578'), + (32322, 322, 445, 'attending', '2020-11-13 00:41:26', '2025-12-17 19:47:54', 'Qd58nkE4', '3266138'), + (32323, 322, 449, 'not_attending', '2020-11-08 18:06:45', '2025-12-17 19:47:53', 'Qd58nkE4', '3272055'), + (32324, 322, 452, 'attending', '2020-11-29 18:13:53', '2025-12-17 19:47:54', 'Qd58nkE4', '3272981'), + (32325, 322, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'Qd58nkE4', '3276428'), + (32326, 322, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'Qd58nkE4', '3281467'), + (32327, 322, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Qd58nkE4', '3281470'), + (32328, 322, 466, 'attending', '2020-11-23 15:01:31', '2025-12-17 19:47:54', 'Qd58nkE4', '3281829'), + (32329, 322, 467, 'not_attending', '2020-11-15 14:58:59', '2025-12-17 19:47:54', 'Qd58nkE4', '3282756'), + (32330, 322, 468, 'not_attending', '2020-11-21 23:49:05', '2025-12-17 19:47:54', 'Qd58nkE4', '3285413'), + (32331, 322, 469, 'attending', '2020-11-29 00:48:41', '2025-12-17 19:47:54', 'Qd58nkE4', '3285414'), + (32332, 322, 475, 'not_attending', '2020-11-21 18:47:54', '2025-12-17 19:47:54', 'Qd58nkE4', '3286760'), + (32333, 322, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Qd58nkE4', '3297764'), + (32334, 322, 485, 'attending', '2020-11-26 21:41:25', '2025-12-17 19:47:54', 'Qd58nkE4', '3299698'), + (32335, 322, 486, 'not_attending', '2020-11-25 00:34:28', '2025-12-17 19:47:54', 'Qd58nkE4', '3300281'), + (32336, 322, 489, 'attending', '2020-11-27 02:12:12', '2025-12-17 19:47:54', 'Qd58nkE4', '3313022'), + (32337, 322, 490, 'not_attending', '2020-12-08 23:15:38', '2025-12-17 19:47:54', 'Qd58nkE4', '3313532'), + (32338, 322, 491, 'not_attending', '2020-12-08 23:15:46', '2025-12-17 19:47:55', 'Qd58nkE4', '3313533'), + (32339, 322, 493, 'not_attending', '2020-12-05 22:23:33', '2025-12-17 19:47:54', 'Qd58nkE4', '3313856'), + (32340, 322, 498, 'attending', '2020-12-05 19:07:14', '2025-12-17 19:47:54', 'Qd58nkE4', '3314302'), + (32341, 322, 499, 'attending', '2020-11-30 04:45:36', '2025-12-17 19:47:55', 'Qd58nkE4', '3314909'), + (32342, 322, 500, 'not_attending', '2020-12-18 18:05:32', '2025-12-17 19:47:55', 'Qd58nkE4', '3314964'), + (32343, 322, 502, 'attending', '2020-12-12 19:50:02', '2025-12-17 19:47:55', 'Qd58nkE4', '3323365'), + (32344, 322, 503, 'not_attending', '2020-12-08 23:16:27', '2025-12-17 19:47:55', 'Qd58nkE4', '3323366'), + (32345, 322, 506, 'attending', '2020-12-06 21:07:55', '2025-12-17 19:47:55', 'Qd58nkE4', '3323375'), + (32346, 322, 512, 'maybe', '2020-12-08 19:21:06', '2025-12-17 19:47:55', 'Qd58nkE4', '3325336'), + (32347, 322, 513, 'attending', '2020-12-12 14:26:00', '2025-12-17 19:47:55', 'Qd58nkE4', '3329383'), + (32348, 322, 517, 'maybe', '2021-01-07 21:46:48', '2025-12-17 19:47:48', 'Qd58nkE4', '3337137'), + (32349, 322, 520, 'attending', '2020-12-19 20:15:39', '2025-12-17 19:47:55', 'Qd58nkE4', '3337453'), + (32350, 322, 521, 'not_attending', '2021-01-02 00:50:36', '2025-12-17 19:47:48', 'Qd58nkE4', '3337454'), + (32351, 322, 526, 'attending', '2020-12-21 03:18:39', '2025-12-17 19:47:48', 'Qd58nkE4', '3351539'), + (32352, 322, 528, 'attending', '2020-12-30 13:24:59', '2025-12-17 19:47:48', 'Qd58nkE4', '3363022'), + (32353, 322, 529, 'attending', '2020-12-29 20:36:22', '2025-12-17 19:47:48', 'Qd58nkE4', '3364568'), + (32354, 322, 536, 'attending', '2021-01-07 00:13:54', '2025-12-17 19:47:48', 'Qd58nkE4', '3386848'), + (32355, 322, 538, 'attending', '2021-01-06 15:30:03', '2025-12-17 19:47:48', 'Qd58nkE4', '3388151'), + (32356, 322, 540, 'attending', '2021-01-10 23:50:56', '2025-12-17 19:47:48', 'Qd58nkE4', '3389527'), + (32357, 322, 543, 'attending', '2021-01-10 23:48:25', '2025-12-17 19:47:48', 'Qd58nkE4', '3396499'), + (32358, 322, 548, 'attending', '2021-01-13 05:46:02', '2025-12-17 19:47:48', 'Qd58nkE4', '3403650'), + (32359, 322, 549, 'not_attending', '2021-01-19 01:57:09', '2025-12-17 19:47:49', 'Qd58nkE4', '3406988'), + (32360, 322, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Qd58nkE4', '3416576'), + (32361, 322, 556, 'not_attending', '2021-01-27 00:55:44', '2025-12-17 19:47:49', 'Qd58nkE4', '3417170'), + (32362, 322, 559, 'not_attending', '2021-01-27 12:44:58', '2025-12-17 19:47:49', 'Qd58nkE4', '3421439'), + (32363, 322, 568, 'not_attending', '2021-01-30 22:57:17', '2025-12-17 19:47:50', 'Qd58nkE4', '3430267'), + (32364, 322, 579, 'not_attending', '2021-02-02 17:39:13', '2025-12-17 19:47:50', 'Qd58nkE4', '3440978'), + (32365, 322, 583, 'maybe', '2021-02-07 01:25:30', '2025-12-17 19:47:50', 'Qd58nkE4', '3449144'), + (32366, 322, 595, 'attending', '2021-03-04 01:24:34', '2025-12-17 19:47:51', 'Qd58nkE4', '3467761'), + (32367, 322, 596, 'attending', '2021-03-04 01:24:40', '2025-12-17 19:47:51', 'Qd58nkE4', '3467762'), + (32368, 322, 597, 'attending', '2021-03-04 01:24:41', '2025-12-17 19:47:51', 'Qd58nkE4', '3467764'), + (32369, 322, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'Qd58nkE4', '3468125'), + (32370, 322, 602, 'not_attending', '2021-02-10 00:49:13', '2025-12-17 19:47:50', 'Qd58nkE4', '3470303'), + (32371, 322, 604, 'not_attending', '2021-02-23 03:14:09', '2025-12-17 19:47:50', 'Qd58nkE4', '3470305'), + (32372, 322, 605, 'attending', '2021-02-14 18:31:42', '2025-12-17 19:47:50', 'Qd58nkE4', '3470991'), + (32373, 322, 621, 'not_attending', '2021-03-01 00:59:11', '2025-12-17 19:47:51', 'Qd58nkE4', '3517815'), + (32374, 322, 622, 'attending', '2021-03-12 15:59:55', '2025-12-17 19:47:51', 'Qd58nkE4', '3517816'), + (32375, 322, 623, 'not_attending', '2021-02-27 21:45:25', '2025-12-17 19:47:51', 'Qd58nkE4', '3523941'), + (32376, 322, 631, 'attending', '2021-03-07 23:37:20', '2025-12-17 19:47:51', 'Qd58nkE4', '3533850'), + (32377, 322, 633, 'not_attending', '2021-03-26 21:41:22', '2025-12-17 19:47:44', 'Qd58nkE4', '3534717'), + (32378, 322, 637, 'attending', '2021-03-01 17:38:28', '2025-12-17 19:47:51', 'Qd58nkE4', '3536411'), + (32379, 322, 638, 'not_attending', '2021-04-04 13:42:27', '2025-12-17 19:47:44', 'Qd58nkE4', '3536632'), + (32380, 322, 639, 'attending', '2021-03-20 02:58:33', '2025-12-17 19:47:51', 'Qd58nkE4', '3536656'), + (32381, 322, 641, 'not_attending', '2021-04-03 23:25:42', '2025-12-17 19:47:44', 'Qd58nkE4', '3539916'), + (32382, 322, 642, 'attending', '2021-04-09 12:43:03', '2025-12-17 19:47:44', 'Qd58nkE4', '3539917'), + (32383, 322, 643, 'not_attending', '2021-04-16 15:56:32', '2025-12-17 19:47:45', 'Qd58nkE4', '3539918'), + (32384, 322, 644, 'attending', '2021-04-21 14:56:52', '2025-12-17 19:47:45', 'Qd58nkE4', '3539919'), + (32385, 322, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Qd58nkE4', '3539920'), + (32386, 322, 646, 'not_attending', '2021-05-06 17:39:50', '2025-12-17 19:47:46', 'Qd58nkE4', '3539921'), + (32387, 322, 647, 'attending', '2021-05-22 19:57:15', '2025-12-17 19:47:46', 'Qd58nkE4', '3539922'), + (32388, 322, 648, 'attending', '2021-05-24 17:30:31', '2025-12-17 19:47:47', 'Qd58nkE4', '3539923'), + (32389, 322, 649, 'attending', '2021-03-14 05:10:35', '2025-12-17 19:47:51', 'Qd58nkE4', '3539927'), + (32390, 322, 650, 'attending', '2021-03-08 13:33:39', '2025-12-17 19:47:44', 'Qd58nkE4', '3539928'), + (32391, 322, 652, 'not_attending', '2021-03-05 20:05:12', '2025-12-17 19:47:51', 'Qd58nkE4', '3544466'), + (32392, 322, 655, 'maybe', '2021-03-13 23:29:51', '2025-12-17 19:47:51', 'Qd58nkE4', '3547129'), + (32393, 322, 678, 'not_attending', '2021-03-11 13:41:38', '2025-12-17 19:47:51', 'Qd58nkE4', '3547158'), + (32394, 322, 679, 'attending', '2021-04-04 19:50:40', '2025-12-17 19:47:44', 'Qd58nkE4', '3547168'), + (32395, 322, 688, 'attending', '2021-03-14 05:37:49', '2025-12-17 19:47:51', 'Qd58nkE4', '3553729'), + (32396, 322, 689, 'not_attending', '2021-03-25 22:43:44', '2025-12-17 19:47:44', 'Qd58nkE4', '3555564'), + (32397, 322, 691, 'not_attending', '2021-04-16 15:56:37', '2025-12-17 19:47:45', 'Qd58nkE4', '3561928'), + (32398, 322, 695, 'not_attending', '2021-03-15 00:05:24', '2025-12-17 19:47:51', 'Qd58nkE4', '3567535'), + (32399, 322, 696, 'not_attending', '2021-03-15 00:05:29', '2025-12-17 19:47:51', 'Qd58nkE4', '3567536'), + (32400, 322, 697, 'not_attending', '2021-03-29 11:37:37', '2025-12-17 19:47:44', 'Qd58nkE4', '3567537'), + (32401, 322, 698, 'attending', '2021-03-15 18:27:39', '2025-12-17 19:47:44', 'Qd58nkE4', '3571867'), + (32402, 322, 699, 'attending', '2021-03-19 13:16:21', '2025-12-17 19:47:44', 'Qd58nkE4', '3572241'), + (32403, 322, 700, 'not_attending', '2021-03-29 16:10:09', '2025-12-17 19:47:44', 'Qd58nkE4', '3575725'), + (32404, 322, 701, 'attending', '2021-03-18 21:10:04', '2025-12-17 19:47:51', 'Qd58nkE4', '3577180'), + (32405, 322, 702, 'attending', '2021-03-19 00:07:33', '2025-12-17 19:47:51', 'Qd58nkE4', '3577181'), + (32406, 322, 703, 'attending', '2021-03-19 15:03:12', '2025-12-17 19:47:44', 'Qd58nkE4', '3578388'), + (32407, 322, 704, 'not_attending', '2021-03-29 21:49:40', '2025-12-17 19:47:44', 'Qd58nkE4', '3581429'), + (32408, 322, 705, 'attending', '2021-03-21 13:26:23', '2025-12-17 19:47:44', 'Qd58nkE4', '3581895'), + (32409, 322, 706, 'not_attending', '2021-03-22 10:40:39', '2025-12-17 19:47:45', 'Qd58nkE4', '3582734'), + (32410, 322, 707, 'attending', '2021-04-25 19:14:17', '2025-12-17 19:47:46', 'Qd58nkE4', '3583262'), + (32411, 322, 709, 'attending', '2021-03-22 10:40:11', '2025-12-17 19:47:44', 'Qd58nkE4', '3587852'), + (32412, 322, 710, 'attending', '2021-03-22 10:40:16', '2025-12-17 19:47:44', 'Qd58nkE4', '3587853'), + (32413, 322, 716, 'not_attending', '2021-04-02 20:52:49', '2025-12-17 19:47:44', 'Qd58nkE4', '3618353'), + (32414, 322, 717, 'not_attending', '2021-03-28 10:55:31', '2025-12-17 19:47:44', 'Qd58nkE4', '3619523'), + (32415, 322, 721, 'not_attending', '2021-04-03 17:49:02', '2025-12-17 19:47:44', 'Qd58nkE4', '3643622'), + (32416, 322, 723, 'not_attending', '2021-04-05 22:42:45', '2025-12-17 19:47:44', 'Qd58nkE4', '3649179'), + (32417, 322, 724, 'not_attending', '2021-05-09 21:07:20', '2025-12-17 19:47:46', 'Qd58nkE4', '3661369'), + (32418, 322, 731, 'not_attending', '2021-04-04 02:04:56', '2025-12-17 19:47:44', 'Qd58nkE4', '3674262'), + (32419, 322, 732, 'attending', '2021-04-04 02:08:47', '2025-12-17 19:47:45', 'Qd58nkE4', '3674268'), + (32420, 322, 735, 'attending', '2021-04-05 00:20:56', '2025-12-17 19:47:46', 'Qd58nkE4', '3677402'), + (32421, 322, 754, 'not_attending', '2021-04-21 16:20:32', '2025-12-17 19:47:45', 'Qd58nkE4', '3701863'), + (32422, 322, 761, 'not_attending', '2021-04-28 10:00:14', '2025-12-17 19:47:46', 'Qd58nkE4', '3716041'), + (32423, 322, 763, 'not_attending', '2021-04-26 00:19:27', '2025-12-17 19:47:46', 'Qd58nkE4', '3719122'), + (32424, 322, 774, 'not_attending', '2021-04-21 16:21:13', '2025-12-17 19:47:45', 'Qd58nkE4', '3730212'), + (32425, 322, 777, 'attending', '2021-05-01 19:08:00', '2025-12-17 19:47:46', 'Qd58nkE4', '3746248'), + (32426, 322, 780, 'not_attending', '2021-05-09 21:07:09', '2025-12-17 19:47:46', 'Qd58nkE4', '3757175'), + (32427, 322, 783, 'not_attending', '2021-05-03 17:19:01', '2025-12-17 19:47:46', 'Qd58nkE4', '3767471'), + (32428, 322, 784, 'attending', '2021-05-01 15:10:07', '2025-12-17 19:47:46', 'Qd58nkE4', '3768775'), + (32429, 322, 785, 'not_attending', '2021-05-16 12:20:59', '2025-12-17 19:47:46', 'Qd58nkE4', '3779779'), + (32430, 322, 786, 'not_attending', '2021-05-10 16:42:33', '2025-12-17 19:47:46', 'Qd58nkE4', '3780093'), + (32431, 322, 788, 'maybe', '2021-05-05 12:02:01', '2025-12-17 19:47:46', 'Qd58nkE4', '3781975'), + (32432, 322, 791, 'attending', '2021-05-07 15:41:15', '2025-12-17 19:47:46', 'Qd58nkE4', '3792735'), + (32433, 322, 792, 'attending', '2021-05-09 02:09:02', '2025-12-17 19:47:46', 'Qd58nkE4', '3793156'), + (32434, 322, 793, 'not_attending', '2021-05-29 11:25:50', '2025-12-17 19:47:47', 'Qd58nkE4', '3793537'), + (32435, 322, 794, 'attending', '2021-05-20 16:17:44', '2025-12-17 19:47:47', 'Qd58nkE4', '3793538'), + (32436, 322, 795, 'not_attending', '2021-05-29 11:25:56', '2025-12-17 19:47:47', 'Qd58nkE4', '3793539'), + (32437, 322, 797, 'not_attending', '2021-05-23 21:19:39', '2025-12-17 19:47:47', 'Qd58nkE4', '3796195'), + (32438, 322, 822, 'not_attending', '2021-06-04 00:29:10', '2025-12-17 19:47:47', 'Qd58nkE4', '3969986'), + (32439, 322, 823, 'attending', '2021-06-01 22:22:40', '2025-12-17 19:47:48', 'Qd58nkE4', '3974109'), + (32440, 322, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Qd58nkE4', '3975311'), + (32441, 322, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Qd58nkE4', '3975312'), + (32442, 322, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Qd58nkE4', '3994992'), + (32443, 322, 844, 'attending', '2021-06-23 19:32:23', '2025-12-17 19:47:38', 'Qd58nkE4', '4014338'), + (32444, 322, 867, 'attending', '2021-06-21 13:40:24', '2025-12-17 19:47:38', 'Qd58nkE4', '4021848'), + (32445, 322, 869, 'not_attending', '2021-06-30 12:23:22', '2025-12-17 19:47:38', 'Qd58nkE4', '4136744'), + (32446, 322, 870, 'not_attending', '2021-07-03 22:44:08', '2025-12-17 19:47:39', 'Qd58nkE4', '4136937'), + (32447, 322, 871, 'attending', '2021-07-05 14:16:55', '2025-12-17 19:47:39', 'Qd58nkE4', '4136938'), + (32448, 322, 872, 'attending', '2021-07-21 12:49:01', '2025-12-17 19:47:40', 'Qd58nkE4', '4136947'), + (32449, 322, 884, 'attending', '2021-08-15 19:00:11', '2025-12-17 19:47:42', 'Qd58nkE4', '4210314'), + (32450, 322, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Qd58nkE4', '4225444'), + (32451, 322, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Qd58nkE4', '4239259'), + (32452, 322, 900, 'attending', '2021-07-14 12:05:07', '2025-12-17 19:47:40', 'Qd58nkE4', '4240316'), + (32453, 322, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Qd58nkE4', '4240317'), + (32454, 322, 902, 'maybe', '2021-08-02 11:20:16', '2025-12-17 19:47:41', 'Qd58nkE4', '4240318'), + (32455, 322, 903, 'attending', '2021-08-07 11:53:37', '2025-12-17 19:47:42', 'Qd58nkE4', '4240320'), + (32456, 322, 905, 'maybe', '2021-07-07 18:01:50', '2025-12-17 19:47:39', 'Qd58nkE4', '4250163'), + (32457, 322, 906, 'attending', '2021-07-11 02:26:08', '2025-12-17 19:47:39', 'Qd58nkE4', '4253431'), + (32458, 322, 915, 'maybe', '2021-07-14 12:06:30', '2025-12-17 19:47:39', 'Qd58nkE4', '4273770'), + (32459, 322, 919, 'maybe', '2021-07-14 12:04:32', '2025-12-17 19:47:39', 'Qd58nkE4', '4275957'), + (32460, 322, 920, 'not_attending', '2021-07-25 21:38:25', '2025-12-17 19:47:40', 'Qd58nkE4', '4277819'), + (32461, 322, 932, 'not_attending', '2021-08-16 10:00:29', '2025-12-17 19:47:42', 'Qd58nkE4', '4301664'), + (32462, 322, 933, 'not_attending', '2021-07-28 22:53:31', '2025-12-17 19:47:40', 'Qd58nkE4', '4301723'), + (32463, 322, 934, 'not_attending', '2021-08-03 11:34:30', '2025-12-17 19:47:41', 'Qd58nkE4', '4302093'), + (32464, 322, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Qd58nkE4', '4304151'), + (32465, 322, 940, 'attending', '2021-07-30 17:09:55', '2025-12-17 19:47:40', 'Qd58nkE4', '4309049'), + (32466, 322, 962, 'attending', '2021-08-12 01:27:54', '2025-12-17 19:47:41', 'Qd58nkE4', '4346305'), + (32467, 322, 965, 'not_attending', '2021-08-19 14:00:46', '2025-12-17 19:47:42', 'Qd58nkE4', '4353703'), + (32468, 322, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Qd58nkE4', '4356801'), + (32469, 322, 973, 'not_attending', '2021-08-21 18:31:46', '2025-12-17 19:47:42', 'Qd58nkE4', '4366186'), + (32470, 322, 974, 'attending', '2021-08-27 21:08:52', '2025-12-17 19:47:42', 'Qd58nkE4', '4366187'), + (32471, 322, 987, 'attending', '2021-08-25 00:46:12', '2025-12-17 19:47:43', 'Qd58nkE4', '4402634'), + (32472, 322, 988, 'attending', '2021-08-24 09:12:05', '2025-12-17 19:47:42', 'Qd58nkE4', '4402823'), + (32473, 322, 990, 'not_attending', '2021-09-01 13:16:09', '2025-12-17 19:47:43', 'Qd58nkE4', '4420735'), + (32474, 322, 991, 'attending', '2021-09-10 13:40:18', '2025-12-17 19:47:43', 'Qd58nkE4', '4420738'), + (32475, 322, 992, 'not_attending', '2021-09-18 19:57:28', '2025-12-17 19:47:34', 'Qd58nkE4', '4420739'), + (32476, 322, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Qd58nkE4', '4420741'), + (32477, 322, 995, 'not_attending', '2021-10-09 22:06:37', '2025-12-17 19:47:34', 'Qd58nkE4', '4420744'), + (32478, 322, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Qd58nkE4', '4420747'), + (32479, 322, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Qd58nkE4', '4420748'), + (32480, 322, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Qd58nkE4', '4420749'), + (32481, 322, 1022, 'attending', '2021-09-10 11:46:32', '2025-12-17 19:47:43', 'Qd58nkE4', '4458628'), + (32482, 322, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Qd58nkE4', '4461883'), + (32483, 322, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Qd58nkE4', '4508342'), + (32484, 322, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Qd58nkE4', '4568602'), + (32485, 322, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Qd58nkE4', '4572153'), + (32486, 322, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Qd58nkE4', '4585962'), + (32487, 322, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Qd58nkE4', '4596356'), + (32488, 322, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Qd58nkE4', '4598860'), + (32489, 322, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Qd58nkE4', '4598861'), + (32490, 322, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Qd58nkE4', '4602797'), + (32491, 322, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Qd58nkE4', '4637896'), + (32492, 322, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Qd58nkE4', '4642994'), + (32493, 322, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Qd58nkE4', '4642995'), + (32494, 322, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Qd58nkE4', '4642996'), + (32495, 322, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Qd58nkE4', '4642997'), + (32496, 322, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Qd58nkE4', '4645687'), + (32497, 322, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Qd58nkE4', '4645698'), + (32498, 322, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Qd58nkE4', '4645704'), + (32499, 322, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Qd58nkE4', '4645705'), + (32500, 322, 1131, 'attending', '2021-12-18 21:14:29', '2025-12-17 19:47:31', 'Qd58nkE4', '4658825'), + (32501, 322, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Qd58nkE4', '4668385'), + (32502, 322, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Qd58nkE4', '4694407'), + (32503, 322, 1374, 'attending', '2022-05-02 16:07:39', '2025-12-17 19:47:28', 'Qd58nkE4', '5269930'), + (32504, 322, 1378, 'attending', '2022-05-14 22:31:54', '2025-12-17 19:47:29', 'Qd58nkE4', '5271448'), + (32505, 322, 1379, 'attending', '2022-05-06 20:54:53', '2025-12-17 19:47:29', 'Qd58nkE4', '5271449'), + (32506, 322, 1380, 'not_attending', '2022-05-24 23:10:48', '2025-12-17 19:47:30', 'Qd58nkE4', '5271450'), + (32507, 322, 1383, 'not_attending', '2022-05-12 23:07:42', '2025-12-17 19:47:28', 'Qd58nkE4', '5276469'), + (32508, 322, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Qd58nkE4', '5278159'), + (32509, 322, 1407, 'attending', '2022-05-15 21:16:53', '2025-12-17 19:47:30', 'Qd58nkE4', '5363695'), + (32510, 322, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Qd58nkE4', '5365960'), + (32511, 322, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'Qd58nkE4', '5368973'), + (32512, 322, 1419, 'attending', '2022-05-22 13:43:39', '2025-12-17 19:47:30', 'Qd58nkE4', '5373081'), + (32513, 322, 1427, 'not_attending', '2022-05-25 22:56:22', '2025-12-17 19:47:30', 'Qd58nkE4', '5376074'), + (32514, 322, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Qd58nkE4', '5378247'), + (32515, 322, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Qd58nkE4', '5389605'), + (32516, 322, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Qd58nkE4', '5397265'), + (32517, 322, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'Qd58nkE4', '5403967'), + (32518, 322, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Qd58nkE4', '5404786'), + (32519, 322, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Qd58nkE4', '5405203'), + (32520, 322, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'Qd58nkE4', '5408794'), + (32521, 322, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'Qd58nkE4', '5411699'), + (32522, 322, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Qd58nkE4', '5412550'), + (32523, 322, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Qd58nkE4', '5415046'), + (32524, 322, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Qd58nkE4', '5422086'), + (32525, 322, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Qd58nkE4', '5422406'), + (32526, 322, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Qd58nkE4', '5424565'), + (32527, 322, 1504, 'maybe', '2022-07-12 10:43:15', '2025-12-17 19:47:19', 'Qd58nkE4', '5426882'), + (32528, 322, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'Qd58nkE4', '5427083'), + (32529, 322, 1513, 'attending', '2022-07-12 10:43:05', '2025-12-17 19:47:19', 'Qd58nkE4', '5441125'), + (32530, 322, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Qd58nkE4', '5441126'), + (32531, 322, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Qd58nkE4', '5441128'), + (32532, 322, 1516, 'not_attending', '2022-08-12 02:32:35', '2025-12-17 19:47:23', 'Qd58nkE4', '5441129'), + (32533, 322, 1518, 'maybe', '2022-08-26 07:39:33', '2025-12-17 19:47:24', 'Qd58nkE4', '5441131'), + (32534, 322, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Qd58nkE4', '5441132'), + (32535, 322, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'Qd58nkE4', '5446643'), + (32536, 322, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Qd58nkE4', '5453325'), + (32537, 322, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Qd58nkE4', '5454516'), + (32538, 322, 1544, 'maybe', '2022-09-12 09:34:54', '2025-12-17 19:47:11', 'Qd58nkE4', '5454517'), + (32539, 322, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Qd58nkE4', '5454605'), + (32540, 322, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Qd58nkE4', '5455037'), + (32541, 322, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Qd58nkE4', '5461278'), + (32542, 322, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Qd58nkE4', '5469480'), + (32543, 322, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'Qd58nkE4', '5471073'), + (32544, 322, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Qd58nkE4', '5474663'), + (32545, 322, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Qd58nkE4', '5482022'), + (32546, 322, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'Qd58nkE4', '5482793'), + (32547, 322, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Qd58nkE4', '5488912'), + (32548, 322, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Qd58nkE4', '5492192'), + (32549, 322, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Qd58nkE4', '5493139'), + (32550, 322, 1589, 'maybe', '2022-08-18 19:12:51', '2025-12-17 19:47:23', 'Qd58nkE4', '5493159'), + (32551, 322, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Qd58nkE4', '5493200'), + (32552, 322, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Qd58nkE4', '5502188'), + (32553, 322, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Qd58nkE4', '5505059'), + (32554, 322, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Qd58nkE4', '5509055'), + (32555, 322, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Qd58nkE4', '5512862'), + (32556, 322, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Qd58nkE4', '5513985'), + (32557, 322, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'Qd58nkE4', '5519981'), + (32558, 322, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Qd58nkE4', '5522550'), + (32559, 322, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Qd58nkE4', '5534683'), + (32560, 322, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Qd58nkE4', '5537735'), + (32561, 322, 1636, 'attending', '2022-08-29 20:08:15', '2025-12-17 19:47:24', 'Qd58nkE4', '5538454'), + (32562, 322, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Qd58nkE4', '5540859'), + (32563, 322, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Qd58nkE4', '5546619'), + (32564, 322, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'Qd58nkE4', '5555245'), + (32565, 322, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Qd58nkE4', '5557747'), + (32566, 322, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Qd58nkE4', '5560255'), + (32567, 322, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Qd58nkE4', '5562906'), + (32568, 322, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Qd58nkE4', '5600604'), + (32569, 322, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Qd58nkE4', '5605544'), + (32570, 322, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'Qd58nkE4', '5606737'), + (32571, 322, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Qd58nkE4', '5630960'), + (32572, 322, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Qd58nkE4', '5630961'), + (32573, 322, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Qd58nkE4', '5630962'), + (32574, 322, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Qd58nkE4', '5630966'), + (32575, 322, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Qd58nkE4', '5630967'), + (32576, 322, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Qd58nkE4', '5630968'), + (32577, 322, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Qd58nkE4', '5635406'), + (32578, 322, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Qd58nkE4', '5638765'), + (32579, 322, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Qd58nkE4', '5640097'), + (32580, 322, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Qd58nkE4', '5640843'), + (32581, 322, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Qd58nkE4', '5641521'), + (32582, 322, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Qd58nkE4', '5642818'), + (32583, 322, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Qd58nkE4', '5652395'), + (32584, 322, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Qd58nkE4', '5670445'), + (32585, 322, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Qd58nkE4', '5671637'), + (32586, 322, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Qd58nkE4', '5672329'), + (32587, 322, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Qd58nkE4', '5674057'), + (32588, 322, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Qd58nkE4', '5674060'), + (32589, 322, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'Qd58nkE4', '5677461'), + (32590, 322, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Qd58nkE4', '5698046'), + (32591, 322, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Qd58nkE4', '5699760'), + (32592, 322, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Qd58nkE4', '5741601'), + (32593, 322, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Qd58nkE4', '5763458'), + (32594, 322, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Qd58nkE4', '5774172'), + (32595, 322, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'Qd58nkE4', '5818247'), + (32596, 322, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Qd58nkE4', '5819471'), + (32597, 322, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'Qd58nkE4', '5827739'), + (32598, 322, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Qd58nkE4', '5844306'), + (32599, 322, 1847, 'maybe', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Qd58nkE4', '5850159'), + (32600, 322, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Qd58nkE4', '5858999'), + (32601, 322, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Qd58nkE4', '5871984'), + (32602, 322, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Qd58nkE4', '5876354'), + (32603, 322, 1864, 'attending', '2023-01-21 06:19:59', '2025-12-17 19:47:05', 'Qd58nkE4', '5879675'), + (32604, 322, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Qd58nkE4', '5880939'), + (32605, 322, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Qd58nkE4', '5887890'), + (32606, 322, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Qd58nkE4', '5888598'), + (32607, 322, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Qd58nkE4', '5893260'), + (32608, 322, 1946, 'not_attending', '2023-03-12 18:35:36', '2025-12-17 19:46:56', 'Qd58nkE4', '5962134'), + (32609, 322, 1978, 'attending', '2023-04-01 22:15:45', '2025-12-17 19:46:58', 'Qd58nkE4', '6028191'), + (32610, 322, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd58nkE4', '6045684'), + (32611, 322, 2013, 'maybe', '2023-04-14 21:38:12', '2025-12-17 19:46:59', 'Qd58nkE4', '6060328'), + (32612, 322, 2031, 'attending', '2023-05-23 07:23:47', '2025-12-17 19:47:03', 'Qd58nkE4', '6068280'), + (32613, 322, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Qd58nkE4', '6164417'), + (32614, 322, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Qd58nkE4', '6166388'), + (32615, 322, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Qd58nkE4', '6176439'), + (32616, 322, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Qd58nkE4', '6182410'), + (32617, 322, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Qd58nkE4', '6185812'), + (32618, 322, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Qd58nkE4', '6187651'), + (32619, 322, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Qd58nkE4', '6187963'), + (32620, 322, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Qd58nkE4', '6187964'), + (32621, 322, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Qd58nkE4', '6187966'), + (32622, 322, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Qd58nkE4', '6187967'), + (32623, 322, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Qd58nkE4', '6187969'), + (32624, 322, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Qd58nkE4', '6334878'), + (32625, 322, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Qd58nkE4', '6337236'), + (32626, 322, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Qd58nkE4', '6337970'), + (32627, 322, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Qd58nkE4', '6338308'), + (32628, 322, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Qd58nkE4', '6341710'), + (32629, 322, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Qd58nkE4', '6342044'), + (32630, 322, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Qd58nkE4', '6342298'), + (32631, 322, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Qd58nkE4', '6343294'), + (32632, 322, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Qd58nkE4', '6347034'), + (32633, 322, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Qd58nkE4', '6347056'), + (32634, 322, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Qd58nkE4', '6353830'), + (32635, 322, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Qd58nkE4', '6353831'), + (32636, 322, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Qd58nkE4', '6357867'), + (32637, 322, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Qd58nkE4', '6358652'), + (32638, 322, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Qd58nkE4', '6361709'), + (32639, 322, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Qd58nkE4', '6361710'), + (32640, 322, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Qd58nkE4', '6361711'), + (32641, 322, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Qd58nkE4', '6361712'), + (32642, 322, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Qd58nkE4', '6361713'), + (32643, 322, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'Qd58nkE4', '6382573'), + (32644, 322, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Qd58nkE4', '6388604'), + (32645, 322, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Qd58nkE4', '6394629'), + (32646, 322, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Qd58nkE4', '6394631'), + (32647, 322, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Qd58nkE4', '6440863'), + (32648, 322, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Qd58nkE4', '6445440'), + (32649, 322, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Qd58nkE4', '6453951'), + (32650, 322, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Qd58nkE4', '6461696'), + (32651, 322, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Qd58nkE4', '6462129'), + (32652, 322, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Qd58nkE4', '6463218'), + (32653, 322, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Qd58nkE4', '6472181'), + (32654, 322, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Qd58nkE4', '6482693'), + (32655, 322, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Qd58nkE4', '6484200'), + (32656, 322, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Qd58nkE4', '6484680'), + (32657, 322, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Qd58nkE4', '6507741'), + (32658, 322, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Qd58nkE4', '6514659'), + (32659, 322, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Qd58nkE4', '6514660'), + (32660, 322, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Qd58nkE4', '6519103'), + (32661, 322, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Qd58nkE4', '6535681'), + (32662, 322, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Qd58nkE4', '6584747'), + (32663, 322, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Qd58nkE4', '6587097'), + (32664, 322, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Qd58nkE4', '6609022'), + (32665, 322, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'Qd58nkE4', '6632757'), + (32666, 322, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Qd58nkE4', '6644187'), + (32667, 322, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Qd58nkE4', '6648951'), + (32668, 322, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Qd58nkE4', '6648952'), + (32669, 322, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Qd58nkE4', '6655401'), + (32670, 322, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Qd58nkE4', '6661585'), + (32671, 322, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Qd58nkE4', '6661588'), + (32672, 322, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Qd58nkE4', '6661589'), + (32673, 322, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Qd58nkE4', '6699906'), + (32674, 322, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Qd58nkE4', '6699913'), + (32675, 322, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Qd58nkE4', '6701109'), + (32676, 322, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Qd58nkE4', '6705219'), + (32677, 322, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Qd58nkE4', '6710153'), + (32678, 322, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Qd58nkE4', '6711552'), + (32679, 322, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'Qd58nkE4', '6711553'), + (32680, 322, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Qd58nkE4', '6722688'), + (32681, 322, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Qd58nkE4', '6730620'), + (32682, 322, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Qd58nkE4', '6740364'), + (32683, 322, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Qd58nkE4', '6743829'), + (32684, 322, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Qd58nkE4', '7030380'), + (32685, 322, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'Qd58nkE4', '7033677'), + (32686, 322, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Qd58nkE4', '7044715'), + (32687, 322, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Qd58nkE4', '7050318'), + (32688, 322, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Qd58nkE4', '7050319'), + (32689, 322, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Qd58nkE4', '7050322'), + (32690, 322, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Qd58nkE4', '7057804'), + (32691, 322, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Qd58nkE4', '7072824'), + (32692, 322, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Qd58nkE4', '7074348'), + (32693, 322, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Qd58nkE4', '7074364'), + (32694, 322, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Qd58nkE4', '7089267'), + (32695, 322, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Qd58nkE4', '7098747'), + (32696, 322, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Qd58nkE4', '7113468'), + (32697, 322, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Qd58nkE4', '7114856'), + (32698, 322, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Qd58nkE4', '7114951'), + (32699, 322, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Qd58nkE4', '7114955'), + (32700, 322, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Qd58nkE4', '7114956'), + (32701, 322, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Qd58nkE4', '7114957'), + (32702, 322, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Qd58nkE4', '7159484'), + (32703, 322, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Qd58nkE4', '7178446'), + (32704, 322, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'Qd58nkE4', '7220467'), + (32705, 322, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Qd58nkE4', '7240354'), + (32706, 322, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Qd58nkE4', '7251633'), + (32707, 322, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Qd58nkE4', '7324073'), + (32708, 322, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Qd58nkE4', '7324074'), + (32709, 322, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Qd58nkE4', '7324075'), + (32710, 322, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Qd58nkE4', '7324078'), + (32711, 322, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Qd58nkE4', '7324082'), + (32712, 322, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Qd58nkE4', '7331457'), + (32713, 322, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Qd58nkE4', '7363643'), + (32714, 322, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Qd58nkE4', '7368606'), + (32715, 322, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Qd58nkE4', '7397462'), + (32716, 322, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Qd58nkE4', '7424275'), + (32717, 322, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Qd58nkE4', '7432751'), + (32718, 322, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Qd58nkE4', '7432752'), + (32719, 322, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Qd58nkE4', '7432753'), + (32720, 322, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Qd58nkE4', '7432754'), + (32721, 322, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Qd58nkE4', '7432755'), + (32722, 322, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Qd58nkE4', '7432756'), + (32723, 322, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Qd58nkE4', '7432758'), + (32724, 322, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Qd58nkE4', '7432759'), + (32725, 322, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Qd58nkE4', '7433834'), + (32726, 322, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'Qd58nkE4', '7470197'), + (32727, 322, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Qd58nkE4', '7685613'), + (32728, 322, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Qd58nkE4', '7688194'), + (32729, 322, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Qd58nkE4', '7688196'), + (32730, 322, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Qd58nkE4', '7688289'), + (32731, 322, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Qd58nkE4', '7692763'), + (32732, 322, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Qd58nkE4', '7697552'), + (32733, 322, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Qd58nkE4', '7699878'), + (32734, 322, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'Qd58nkE4', '7704043'), + (32735, 322, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Qd58nkE4', '7712467'), + (32736, 322, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Qd58nkE4', '7713585'), + (32737, 322, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Qd58nkE4', '7713586'), + (32738, 322, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Qd58nkE4', '7738518'), + (32739, 322, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Qd58nkE4', '7750636'), + (32740, 322, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Qd58nkE4', '7796540'), + (32741, 322, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Qd58nkE4', '7796541'), + (32742, 322, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Qd58nkE4', '7796542'), + (32743, 322, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Qd58nkE4', '7825913'), + (32744, 322, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Qd58nkE4', '7826209'), + (32745, 322, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Qd58nkE4', '7834742'), + (32746, 322, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Qd58nkE4', '7842108'), + (32747, 322, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Qd58nkE4', '7842902'), + (32748, 322, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Qd58nkE4', '7842903'), + (32749, 322, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Qd58nkE4', '7842904'), + (32750, 322, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Qd58nkE4', '7842905'), + (32751, 322, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Qd58nkE4', '7855719'), + (32752, 322, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Qd58nkE4', '7860683'), + (32753, 322, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Qd58nkE4', '7860684'), + (32754, 322, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Qd58nkE4', '7866095'), + (32755, 322, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Qd58nkE4', '7869170'), + (32756, 322, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Qd58nkE4', '7869188'), + (32757, 322, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Qd58nkE4', '7869201'), + (32758, 322, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Qd58nkE4', '7877465'), + (32759, 322, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Qd58nkE4', '7888250'), + (32760, 322, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Qd58nkE4', '7904777'), + (32761, 322, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Qd58nkE4', '8349164'), + (32762, 322, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Qd58nkE4', '8349545'), + (32763, 322, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Qd58nkE4', '8368028'), + (32764, 322, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Qd58nkE4', '8368029'), + (32765, 322, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Qd58nkE4', '8388462'), + (32766, 322, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Qd58nkE4', '8400273'), + (32767, 322, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Qd58nkE4', '8400275'), + (32768, 322, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'Qd58nkE4', '8400276'), + (32769, 322, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Qd58nkE4', '8404977'), + (32770, 322, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Qd58nkE4', '8430783'), + (32771, 322, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Qd58nkE4', '8430784'), + (32772, 322, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Qd58nkE4', '8430799'), + (32773, 322, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Qd58nkE4', '8430800'), + (32774, 322, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Qd58nkE4', '8430801'), + (32775, 322, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Qd58nkE4', '8438709'), + (32776, 322, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Qd58nkE4', '8457738'), + (32777, 322, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Qd58nkE4', '8459566'), + (32778, 322, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Qd58nkE4', '8459567'), + (32779, 322, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Qd58nkE4', '8461032'), + (32780, 322, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Qd58nkE4', '8477877'), + (32781, 322, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Qd58nkE4', '8485688'), + (32782, 322, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Qd58nkE4', '8490587'), + (32783, 322, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Qd58nkE4', '8493552'), + (32784, 322, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Qd58nkE4', '8493553'), + (32785, 322, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Qd58nkE4', '8493554'), + (32786, 322, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Qd58nkE4', '8493555'), + (32787, 322, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Qd58nkE4', '8493556'), + (32788, 322, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Qd58nkE4', '8493557'), + (32789, 322, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Qd58nkE4', '8493558'), + (32790, 322, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Qd58nkE4', '8493559'), + (32791, 322, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Qd58nkE4', '8493560'), + (32792, 322, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'Qd58nkE4', '8493561'), + (32793, 322, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Qd58nkE4', '8493572'), + (32794, 322, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Qd58nkE4', '8540725'), + (32795, 322, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Qd58nkE4', '8555421'), + (32796, 323, 1868, 'maybe', '2023-02-21 17:24:22', '2025-12-17 19:47:07', '0mqrMqXA', '5880942'), + (32797, 323, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '0mqrMqXA', '5880943'), + (32798, 323, 1885, 'attending', '2023-02-24 08:52:44', '2025-12-17 19:47:08', '0mqrMqXA', '5899928'), + (32799, 323, 1888, 'attending', '2023-02-17 04:51:18', '2025-12-17 19:47:07', '0mqrMqXA', '5900197'), + (32800, 323, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '0mqrMqXA', '5900200'), + (32801, 323, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '0mqrMqXA', '5900202'), + (32802, 323, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '0mqrMqXA', '5900203'), + (32803, 323, 1908, 'attending', '2023-02-16 04:15:28', '2025-12-17 19:47:07', '0mqrMqXA', '5905018'), + (32804, 323, 1912, 'not_attending', '2023-02-16 04:16:30', '2025-12-17 19:47:07', '0mqrMqXA', '5909808'), + (32805, 323, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '0mqrMqXA', '5910526'), + (32806, 323, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '0mqrMqXA', '5910528'), + (32807, 323, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '0mqrMqXA', '5916219'), + (32808, 323, 1924, 'maybe', '2023-02-18 00:22:29', '2025-12-17 19:47:07', '0mqrMqXA', '5931095'), + (32809, 323, 1925, 'attending', '2023-02-23 07:49:21', '2025-12-17 19:47:08', '0mqrMqXA', '5932619'), + (32810, 323, 1926, 'maybe', '2023-03-02 09:03:40', '2025-12-17 19:47:08', '0mqrMqXA', '5932620'), + (32811, 323, 1928, 'maybe', '2023-02-18 00:22:33', '2025-12-17 19:47:07', '0mqrMqXA', '5932627'), + (32812, 323, 1930, 'attending', '2023-02-22 07:02:40', '2025-12-17 19:47:08', '0mqrMqXA', '5933462'), + (32813, 323, 1931, 'attending', '2023-02-22 07:02:42', '2025-12-17 19:47:08', '0mqrMqXA', '5933464'), + (32814, 323, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '0mqrMqXA', '5936234'), + (32815, 323, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '0mqrMqXA', '5958351'), + (32816, 323, 1936, 'attending', '2023-02-23 18:10:03', '2025-12-17 19:47:08', '0mqrMqXA', '5959397'), + (32817, 323, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '0mqrMqXA', '5959751'), + (32818, 323, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '0mqrMqXA', '5959755'), + (32819, 323, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '0mqrMqXA', '5960055'), + (32820, 323, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '0mqrMqXA', '5961684'), + (32821, 323, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '0mqrMqXA', '5962132'), + (32822, 323, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '0mqrMqXA', '5962133'), + (32823, 323, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '0mqrMqXA', '5962134'), + (32824, 323, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '0mqrMqXA', '5962317'), + (32825, 323, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '0mqrMqXA', '5962318'), + (32826, 323, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '0mqrMqXA', '5965933'), + (32827, 323, 1952, 'maybe', '2023-03-02 09:03:35', '2025-12-17 19:47:08', '0mqrMqXA', '5965937'), + (32828, 323, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '0mqrMqXA', '5967014'), + (32829, 323, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '0mqrMqXA', '5972815'), + (32830, 323, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '0mqrMqXA', '5974016'), + (32831, 323, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '0mqrMqXA', '5981515'), + (32832, 323, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '0mqrMqXA', '5993516'), + (32833, 323, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '0mqrMqXA', '5998939'), + (32834, 323, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '0mqrMqXA', '6028191'), + (32835, 323, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '0mqrMqXA', '6040066'), + (32836, 323, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '0mqrMqXA', '6042717'), + (32837, 323, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '0mqrMqXA', '6044838'), + (32838, 323, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '0mqrMqXA', '6044839'), + (32839, 323, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqrMqXA', '6045684'), + (32840, 323, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '0mqrMqXA', '6050104'), + (32841, 323, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '0mqrMqXA', '6053195'), + (32842, 323, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '0mqrMqXA', '6053198'), + (32843, 323, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '0mqrMqXA', '6056085'), + (32844, 323, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '0mqrMqXA', '6056916'), + (32845, 323, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '0mqrMqXA', '6059290'), + (32846, 323, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '0mqrMqXA', '6060328'), + (32847, 323, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '0mqrMqXA', '6061037'), + (32848, 323, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '0mqrMqXA', '6061039'), + (32849, 323, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '0mqrMqXA', '6067245'), + (32850, 323, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '0mqrMqXA', '6068094'), + (32851, 323, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '0mqrMqXA', '6068252'), + (32852, 323, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '0mqrMqXA', '6068253'), + (32853, 323, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '0mqrMqXA', '6068254'), + (32854, 323, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '0mqrMqXA', '6068280'), + (32855, 323, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '0mqrMqXA', '6069093'), + (32856, 323, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '0mqrMqXA', '6072528'), + (32857, 323, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '0mqrMqXA', '6079840'), + (32858, 323, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '0mqrMqXA', '6083398'), + (32859, 323, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '0mqrMqXA', '6093504'), + (32860, 323, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '0mqrMqXA', '6097414'), + (32861, 323, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '0mqrMqXA', '6097442'), + (32862, 323, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '0mqrMqXA', '6097684'), + (32863, 323, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '0mqrMqXA', '6098762'), + (32864, 323, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '0mqrMqXA', '6101361'), + (32865, 323, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '0mqrMqXA', '6101362'), + (32866, 323, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '0mqrMqXA', '6103752'), + (32867, 323, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '0mqrMqXA', '6107314'), + (32868, 323, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '0mqrMqXA', '6120034'), + (32869, 323, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '0mqrMqXA', '6136733'), + (32870, 323, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '0mqrMqXA', '6137989'), + (32871, 323, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '0mqrMqXA', '6150864'), + (32872, 323, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '0mqrMqXA', '6155491'), + (32873, 323, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '0mqrMqXA', '6164417'), + (32874, 323, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '0mqrMqXA', '6166388'), + (32875, 323, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '0mqrMqXA', '6176439'), + (32876, 323, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '0mqrMqXA', '6182410'), + (32877, 323, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '0mqrMqXA', '6185812'), + (32878, 323, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '0mqrMqXA', '6187651'), + (32879, 323, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '0mqrMqXA', '6187963'), + (32880, 323, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '0mqrMqXA', '6187964'), + (32881, 323, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '0mqrMqXA', '6187966'), + (32882, 323, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '0mqrMqXA', '6187967'), + (32883, 323, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '0mqrMqXA', '6187969'), + (32884, 323, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '0mqrMqXA', '6334878'), + (32885, 323, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '0mqrMqXA', '6337236'), + (32886, 323, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '0mqrMqXA', '6337970'), + (32887, 323, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '0mqrMqXA', '6338308'), + (32888, 323, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '0mqrMqXA', '6340845'), + (32889, 323, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '0mqrMqXA', '6341710'), + (32890, 323, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '0mqrMqXA', '6342044'), + (32891, 323, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '0mqrMqXA', '6342298'), + (32892, 323, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '0mqrMqXA', '6343294'), + (32893, 323, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '0mqrMqXA', '6347034'), + (32894, 323, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '0mqrMqXA', '6347056'), + (32895, 323, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '0mqrMqXA', '6353830'), + (32896, 323, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '0mqrMqXA', '6353831'), + (32897, 323, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '0mqrMqXA', '6357867'), + (32898, 323, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '0mqrMqXA', '6358652'), + (32899, 323, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '0mqrMqXA', '6361709'), + (32900, 323, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '0mqrMqXA', '6361710'), + (32901, 323, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '0mqrMqXA', '6361711'), + (32902, 323, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '0mqrMqXA', '6361712'), + (32903, 323, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '0mqrMqXA', '6361713'), + (32904, 323, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '0mqrMqXA', '6382573'), + (32905, 323, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '0mqrMqXA', '6388604'), + (32906, 323, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '0mqrMqXA', '6394629'), + (32907, 323, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '0mqrMqXA', '6394631'), + (32908, 323, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '0mqrMqXA', '6440863'), + (32909, 323, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '0mqrMqXA', '6445440'), + (32910, 323, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '0mqrMqXA', '6453951'), + (32911, 323, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '0mqrMqXA', '6461696'), + (32912, 323, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '0mqrMqXA', '6462129'), + (32913, 323, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '0mqrMqXA', '6463218'), + (32914, 323, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '0mqrMqXA', '6472181'), + (32915, 323, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '0mqrMqXA', '6482693'), + (32916, 323, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '0mqrMqXA', '6484200'), + (32917, 323, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '0mqrMqXA', '6484680'), + (32918, 323, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '0mqrMqXA', '6507741'), + (32919, 323, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '0mqrMqXA', '6514659'), + (32920, 323, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '0mqrMqXA', '6514660'), + (32921, 323, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '0mqrMqXA', '6519103'), + (32922, 323, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '0mqrMqXA', '6535681'), + (32923, 323, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '0mqrMqXA', '6584747'), + (32924, 323, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '0mqrMqXA', '6587097'), + (32925, 323, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '0mqrMqXA', '6609022'), + (32926, 323, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '0mqrMqXA', '6632757'), + (32927, 323, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '0mqrMqXA', '6644187'), + (32928, 323, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '0mqrMqXA', '6648951'), + (32929, 323, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '0mqrMqXA', '6648952'), + (32930, 323, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '0mqrMqXA', '6655401'), + (32931, 323, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '0mqrMqXA', '6661585'), + (32932, 323, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '0mqrMqXA', '6661588'), + (32933, 323, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '0mqrMqXA', '6661589'), + (32934, 323, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '0mqrMqXA', '6699906'), + (32935, 323, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '0mqrMqXA', '6699913'), + (32936, 323, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '0mqrMqXA', '6701109'), + (32937, 323, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '0mqrMqXA', '6705219'), + (32938, 323, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '0mqrMqXA', '6710153'), + (32939, 323, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '0mqrMqXA', '6711552'), + (32940, 323, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '0mqrMqXA', '6711553'), + (32941, 323, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '0mqrMqXA', '6722688'), + (32942, 323, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '0mqrMqXA', '6730620'), + (32943, 323, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '0mqrMqXA', '6740364'), + (32944, 323, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '0mqrMqXA', '6743829'), + (32945, 323, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '0mqrMqXA', '7030380'), + (32946, 323, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '0mqrMqXA', '7033677'), + (32947, 323, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '0mqrMqXA', '7044715'), + (32948, 323, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '0mqrMqXA', '7050318'), + (32949, 323, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '0mqrMqXA', '7050319'), + (32950, 323, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '0mqrMqXA', '7050322'), + (32951, 323, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '0mqrMqXA', '7057804'), + (32952, 323, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '0mqrMqXA', '7072824'), + (32953, 323, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '0mqrMqXA', '7074348'), + (32954, 323, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '0mqrMqXA', '7074364'), + (32955, 323, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '0mqrMqXA', '7089267'), + (32956, 323, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '0mqrMqXA', '7098747'), + (32957, 323, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '0mqrMqXA', '7113468'), + (32958, 323, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '0mqrMqXA', '7114856'), + (32959, 323, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '0mqrMqXA', '7114951'), + (32960, 323, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '0mqrMqXA', '7114955'), + (32961, 323, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '0mqrMqXA', '7114956'), + (32962, 323, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '0mqrMqXA', '7114957'), + (32963, 323, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '0mqrMqXA', '7159484'), + (32964, 323, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '0mqrMqXA', '7178446'), + (32965, 323, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '0mqrMqXA', '7220467'), + (32966, 323, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '0mqrMqXA', '7240354'), + (32967, 323, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '0mqrMqXA', '7251633'), + (32968, 323, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '0mqrMqXA', '7324073'), + (32969, 323, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '0mqrMqXA', '7324074'), + (32970, 323, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '0mqrMqXA', '7324075'), + (32971, 323, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '0mqrMqXA', '7324078'), + (32972, 323, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '0mqrMqXA', '7324082'), + (32973, 323, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '0mqrMqXA', '7331457'), + (32974, 323, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '0mqrMqXA', '7363643'), + (32975, 323, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '0mqrMqXA', '7368606'), + (32976, 323, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '0mqrMqXA', '7397462'), + (32977, 323, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '0mqrMqXA', '7424275'), + (32978, 323, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '0mqrMqXA', '7432751'), + (32979, 323, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '0mqrMqXA', '7432752'), + (32980, 323, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '0mqrMqXA', '7432753'), + (32981, 323, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '0mqrMqXA', '7432754'), + (32982, 323, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '0mqrMqXA', '7432755'), + (32983, 323, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '0mqrMqXA', '7432756'), + (32984, 323, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '0mqrMqXA', '7432758'), + (32985, 323, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '0mqrMqXA', '7432759'), + (32986, 323, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '0mqrMqXA', '7433834'), + (32987, 323, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '0mqrMqXA', '7470197'), + (32988, 323, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '0mqrMqXA', '7685613'), + (32989, 323, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '0mqrMqXA', '7688194'), + (32990, 323, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '0mqrMqXA', '7688196'), + (32991, 323, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '0mqrMqXA', '7688289'), + (32992, 323, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '0mqrMqXA', '7692763'), + (32993, 323, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '0mqrMqXA', '7697552'), + (32994, 323, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '0mqrMqXA', '7699878'), + (32995, 323, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '0mqrMqXA', '7704043'), + (32996, 323, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '0mqrMqXA', '7712467'), + (32997, 323, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '0mqrMqXA', '7713585'), + (32998, 323, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '0mqrMqXA', '7713586'), + (32999, 323, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '0mqrMqXA', '7738518'), + (33000, 323, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '0mqrMqXA', '7750636'), + (33001, 323, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '0mqrMqXA', '7796540'), + (33002, 323, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '0mqrMqXA', '7796541'), + (33003, 323, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '0mqrMqXA', '7796542'), + (33004, 323, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '0mqrMqXA', '7825913'), + (33005, 323, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '0mqrMqXA', '7826209'), + (33006, 323, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '0mqrMqXA', '7834742'), + (33007, 323, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '0mqrMqXA', '7842108'), + (33008, 323, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '0mqrMqXA', '7842902'), + (33009, 323, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '0mqrMqXA', '7842903'), + (33010, 323, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '0mqrMqXA', '7842904'), + (33011, 323, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '0mqrMqXA', '7842905'), + (33012, 323, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '0mqrMqXA', '7855719'), + (33013, 323, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '0mqrMqXA', '7860683'), + (33014, 323, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '0mqrMqXA', '7860684'), + (33015, 323, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '0mqrMqXA', '7866095'), + (33016, 323, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '0mqrMqXA', '7869170'), + (33017, 323, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '0mqrMqXA', '7869188'), + (33018, 323, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '0mqrMqXA', '7869201'), + (33019, 323, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '0mqrMqXA', '7877465'), + (33020, 323, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '0mqrMqXA', '7888250'), + (33021, 323, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '0mqrMqXA', '7904777'), + (33022, 323, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '0mqrMqXA', '8349164'), + (33023, 323, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '0mqrMqXA', '8349545'), + (33024, 323, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '0mqrMqXA', '8368028'), + (33025, 323, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '0mqrMqXA', '8368029'), + (33026, 323, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '0mqrMqXA', '8388462'), + (33027, 323, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '0mqrMqXA', '8400273'), + (33028, 323, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '0mqrMqXA', '8400275'), + (33029, 323, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '0mqrMqXA', '8400276'), + (33030, 323, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '0mqrMqXA', '8404977'), + (33031, 323, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '0mqrMqXA', '8430783'), + (33032, 323, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '0mqrMqXA', '8430784'), + (33033, 323, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '0mqrMqXA', '8430799'), + (33034, 323, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '0mqrMqXA', '8430800'), + (33035, 323, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '0mqrMqXA', '8430801'), + (33036, 323, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '0mqrMqXA', '8438709'), + (33037, 323, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '0mqrMqXA', '8457738'), + (33038, 323, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '0mqrMqXA', '8459566'), + (33039, 323, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '0mqrMqXA', '8459567'), + (33040, 323, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '0mqrMqXA', '8461032'), + (33041, 323, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '0mqrMqXA', '8477877'), + (33042, 323, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '0mqrMqXA', '8485688'), + (33043, 323, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '0mqrMqXA', '8490587'), + (33044, 323, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '0mqrMqXA', '8493552'), + (33045, 323, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '0mqrMqXA', '8493553'), + (33046, 323, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '0mqrMqXA', '8493554'), + (33047, 323, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '0mqrMqXA', '8493555'), + (33048, 323, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '0mqrMqXA', '8493556'), + (33049, 323, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '0mqrMqXA', '8493557'), + (33050, 323, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '0mqrMqXA', '8493558'), + (33051, 323, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '0mqrMqXA', '8493559'), + (33052, 323, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '0mqrMqXA', '8493560'), + (33053, 323, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '0mqrMqXA', '8493561'), + (33054, 323, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '0mqrMqXA', '8493572'), + (33055, 323, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '0mqrMqXA', '8540725'), + (33056, 323, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '0mqrMqXA', '8555421'), + (33057, 324, 409, 'attending', '2020-12-10 00:40:35', '2025-12-17 19:47:54', 'v4DgwbLA', '3236467'), + (33058, 324, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'v4DgwbLA', '3314964'), + (33059, 324, 502, 'attending', '2020-12-13 00:55:54', '2025-12-17 19:47:55', 'v4DgwbLA', '3323365'), + (33060, 324, 503, 'attending', '2020-12-15 21:18:04', '2025-12-17 19:47:55', 'v4DgwbLA', '3323366'), + (33061, 324, 504, 'attending', '2020-12-15 21:18:36', '2025-12-17 19:47:55', 'v4DgwbLA', '3323368'), + (33062, 324, 505, 'attending', '2020-12-15 21:18:56', '2025-12-17 19:47:55', 'v4DgwbLA', '3323369'), + (33063, 324, 506, 'maybe', '2020-12-13 18:55:58', '2025-12-17 19:47:55', 'v4DgwbLA', '3323375'), + (33064, 324, 513, 'not_attending', '2020-12-19 23:26:35', '2025-12-17 19:47:55', 'v4DgwbLA', '3329383'), + (33065, 324, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'v4DgwbLA', '3351539'), + (33066, 324, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'v4DgwbLA', '3386848'), + (33067, 324, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'v4DgwbLA', '3389527'), + (33068, 324, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'v4DgwbLA', '3396499'), + (33069, 324, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'v4DgwbLA', '3403650'), + (33070, 324, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'v4DgwbLA', '3406988'), + (33071, 324, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'v4DgwbLA', '3416576'), + (33072, 324, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DgwbLA', '6045684'), + (33073, 325, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dN6vOP0d', '5900202'), + (33074, 325, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dN6vOP0d', '5962317'), + (33075, 325, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dN6vOP0d', '5962318'), + (33076, 325, 1951, 'not_attending', '2023-03-22 18:17:21', '2025-12-17 19:46:57', 'dN6vOP0d', '5965933'), + (33077, 325, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'dN6vOP0d', '6028191'), + (33078, 325, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dN6vOP0d', '6040066'), + (33079, 325, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dN6vOP0d', '6042717'), + (33080, 325, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dN6vOP0d', '6044838'), + (33081, 325, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dN6vOP0d', '6044839'), + (33082, 325, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN6vOP0d', '6045684'), + (33083, 325, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'dN6vOP0d', '6048955'), + (33084, 325, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dN6vOP0d', '6050104'), + (33085, 325, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dN6vOP0d', '6053195'), + (33086, 325, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dN6vOP0d', '6053198'), + (33087, 325, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dN6vOP0d', '6056085'), + (33088, 325, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dN6vOP0d', '6056916'), + (33089, 325, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dN6vOP0d', '6059290'), + (33090, 325, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dN6vOP0d', '6060328'), + (33091, 325, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dN6vOP0d', '6061037'), + (33092, 325, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dN6vOP0d', '6061039'), + (33093, 325, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dN6vOP0d', '6067245'), + (33094, 325, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dN6vOP0d', '6068094'), + (33095, 325, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dN6vOP0d', '6068252'), + (33096, 325, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dN6vOP0d', '6068253'), + (33097, 325, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dN6vOP0d', '6068254'), + (33098, 325, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dN6vOP0d', '6068280'), + (33099, 325, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dN6vOP0d', '6069093'), + (33100, 325, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dN6vOP0d', '6072528'), + (33101, 325, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dN6vOP0d', '6079840'), + (33102, 325, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dN6vOP0d', '6083398'), + (33103, 325, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dN6vOP0d', '6093504'), + (33104, 325, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dN6vOP0d', '6097414'), + (33105, 325, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dN6vOP0d', '6097442'), + (33106, 325, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dN6vOP0d', '6097684'), + (33107, 325, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dN6vOP0d', '6098762'), + (33108, 325, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dN6vOP0d', '6101362'), + (33109, 325, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dN6vOP0d', '6107314'), + (33110, 325, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dN6vOP0d', '6120034'), + (33111, 326, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'AgZWOzRm', '7281768'), + (33112, 326, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'AgZWOzRm', '7291219'), + (33113, 327, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndlRoKwA', '5900202'), + (33114, 327, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndlRoKwA', '5900203'), + (33115, 327, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'ndlRoKwA', '5910528'), + (33116, 327, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'ndlRoKwA', '5962317'), + (33117, 327, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'ndlRoKwA', '5962318'), + (33118, 327, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndlRoKwA', '5965933'), + (33119, 327, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndlRoKwA', '5972815'), + (33120, 327, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndlRoKwA', '5981515'), + (33121, 327, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndlRoKwA', '5993516'), + (33122, 327, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndlRoKwA', '5998939'), + (33123, 327, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndlRoKwA', '6028191'), + (33124, 327, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndlRoKwA', '6040066'), + (33125, 327, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndlRoKwA', '6042717'), + (33126, 327, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndlRoKwA', '6044838'), + (33127, 327, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndlRoKwA', '6044839'), + (33128, 327, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ndlRoKwA', '6045684'), + (33129, 327, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'ndlRoKwA', '6048955'), + (33130, 327, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndlRoKwA', '6050104'), + (33131, 327, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndlRoKwA', '6053195'), + (33132, 327, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndlRoKwA', '6053198'), + (33133, 327, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndlRoKwA', '6056085'), + (33134, 327, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndlRoKwA', '6056916'), + (33135, 327, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndlRoKwA', '6059290'), + (33136, 327, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndlRoKwA', '6060328'), + (33137, 327, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndlRoKwA', '6061037'), + (33138, 327, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndlRoKwA', '6061039'), + (33139, 327, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndlRoKwA', '6067245'), + (33140, 327, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndlRoKwA', '6068094'), + (33141, 327, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndlRoKwA', '6068252'), + (33142, 327, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndlRoKwA', '6068253'), + (33143, 327, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndlRoKwA', '6068254'), + (33144, 327, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndlRoKwA', '6068280'), + (33145, 327, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndlRoKwA', '6069093'), + (33146, 327, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'ndlRoKwA', '6072528'), + (33147, 327, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndlRoKwA', '6079840'), + (33148, 327, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndlRoKwA', '6083398'), + (33149, 327, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'ndlRoKwA', '6093504'), + (33150, 327, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndlRoKwA', '6097414'), + (33151, 327, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndlRoKwA', '6097442'), + (33152, 327, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndlRoKwA', '6097684'), + (33153, 327, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndlRoKwA', '6098762'), + (33154, 327, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndlRoKwA', '6101362'), + (33155, 327, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndlRoKwA', '6107314'), + (33156, 327, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndlRoKwA', '6120034'), + (33157, 328, 2285, 'attending', '2023-10-24 15:00:23', '2025-12-17 19:46:47', '4orR2VVA', '6460929'), + (33158, 328, 2296, 'attending', '2023-10-24 14:59:26', '2025-12-17 19:46:47', '4orR2VVA', '6468393'), + (33159, 328, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4orR2VVA', '6472181'), + (33160, 328, 2300, 'not_attending', '2023-10-24 15:00:55', '2025-12-17 19:46:47', '4orR2VVA', '6472185'), + (33161, 328, 2301, 'maybe', '2023-10-24 10:32:08', '2025-12-17 19:46:46', '4orR2VVA', '6474276'), + (33162, 328, 2303, 'attending', '2023-10-22 02:58:15', '2025-12-17 19:46:47', '4orR2VVA', '6482691'), + (33163, 328, 2304, 'maybe', '2023-10-22 02:56:27', '2025-12-17 19:46:47', '4orR2VVA', '6482693'), + (33164, 328, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4orR2VVA', '6484200'), + (33165, 328, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4orR2VVA', '6484680'), + (33166, 328, 2309, 'maybe', '2023-10-23 23:03:35', '2025-12-17 19:46:46', '4orR2VVA', '6486100'), + (33167, 328, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4orR2VVA', '6507741'), + (33168, 328, 2321, 'attending', '2023-10-30 21:42:31', '2025-12-17 19:46:47', '4orR2VVA', '6512075'), + (33169, 328, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4orR2VVA', '6514659'), + (33170, 328, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4orR2VVA', '6514660'), + (33171, 328, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4orR2VVA', '6519103'), + (33172, 328, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4orR2VVA', '6535681'), + (33173, 328, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4orR2VVA', '6584747'), + (33174, 328, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4orR2VVA', '6587097'), + (33175, 328, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4orR2VVA', '6609022'), + (33176, 328, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4orR2VVA', '6632757'), + (33177, 328, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4orR2VVA', '6644187'), + (33178, 328, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4orR2VVA', '6648951'), + (33179, 328, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4orR2VVA', '6648952'), + (33180, 328, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4orR2VVA', '6655401'), + (33181, 328, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4orR2VVA', '6661585'), + (33182, 328, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4orR2VVA', '6661588'), + (33183, 328, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4orR2VVA', '6661589'), + (33184, 328, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4orR2VVA', '6699906'), + (33185, 328, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4orR2VVA', '6699913'), + (33186, 328, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4orR2VVA', '6701109'), + (33187, 328, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '4orR2VVA', '6704561'), + (33188, 328, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4orR2VVA', '6705219'), + (33189, 328, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '4orR2VVA', '6708410'), + (33190, 328, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4orR2VVA', '6710153'), + (33191, 328, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4orR2VVA', '6711552'), + (33192, 328, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4orR2VVA', '6711553'), + (33193, 328, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4orR2VVA', '6722688'), + (33194, 328, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4orR2VVA', '6730620'), + (33195, 328, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4orR2VVA', '6730642'), + (33196, 328, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4orR2VVA', '6740364'), + (33197, 328, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4orR2VVA', '6743829'), + (33198, 328, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4orR2VVA', '7030380'), + (33199, 328, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4orR2VVA', '7033677'), + (33200, 328, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4orR2VVA', '7035415'), + (33201, 328, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4orR2VVA', '7044715'), + (33202, 328, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4orR2VVA', '7050318'), + (33203, 328, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4orR2VVA', '7050319'), + (33204, 328, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4orR2VVA', '7050322'), + (33205, 328, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4orR2VVA', '7057804'), + (33206, 328, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4orR2VVA', '7072824'), + (33207, 328, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4orR2VVA', '7074348'), + (33208, 328, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4orR2VVA', '7089267'), + (33209, 328, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4orR2VVA', '7098747'), + (33210, 328, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4orR2VVA', '7113468'), + (33211, 328, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4orR2VVA', '7114856'), + (33212, 328, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4orR2VVA', '7114951'), + (33213, 328, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4orR2VVA', '7114955'), + (33214, 328, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4orR2VVA', '7114956'), + (33215, 328, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4orR2VVA', '7153615'), + (33216, 328, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4orR2VVA', '7159484'), + (33217, 329, 254, 'attending', '2021-03-28 02:02:57', '2025-12-17 19:47:51', '6AXW3xRm', '3149485'), + (33218, 329, 638, 'maybe', '2021-04-02 16:45:35', '2025-12-17 19:47:44', '6AXW3xRm', '3536632'), + (33219, 329, 641, 'attending', '2021-03-31 14:29:50', '2025-12-17 19:47:44', '6AXW3xRm', '3539916'), + (33220, 329, 642, 'attending', '2021-04-05 15:37:11', '2025-12-17 19:47:44', '6AXW3xRm', '3539917'), + (33221, 329, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '6AXW3xRm', '3539918'), + (33222, 329, 644, 'attending', '2021-04-19 22:54:05', '2025-12-17 19:47:45', '6AXW3xRm', '3539919'), + (33223, 329, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '6AXW3xRm', '3539920'), + (33224, 329, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '6AXW3xRm', '3539921'), + (33225, 329, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '6AXW3xRm', '3539922'), + (33226, 329, 648, 'maybe', '2021-05-29 15:11:20', '2025-12-17 19:47:47', '6AXW3xRm', '3539923'), + (33227, 329, 700, 'attending', '2021-03-28 17:05:34', '2025-12-17 19:47:44', '6AXW3xRm', '3575725'), + (33228, 329, 704, 'attending', '2021-03-31 17:28:26', '2025-12-17 19:47:44', '6AXW3xRm', '3581429'), + (33229, 329, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '6AXW3xRm', '3583262'), + (33230, 329, 709, 'attending', '2021-04-06 15:25:18', '2025-12-17 19:47:44', '6AXW3xRm', '3587852'), + (33231, 329, 710, 'maybe', '2021-04-07 20:36:23', '2025-12-17 19:47:44', '6AXW3xRm', '3587853'), + (33232, 329, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '6AXW3xRm', '3661369'), + (33233, 329, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXW3xRm', '3674262'), + (33234, 329, 735, 'maybe', '2021-05-02 13:33:37', '2025-12-17 19:47:46', '6AXW3xRm', '3677402'), + (33235, 329, 748, 'attending', '2021-04-08 15:51:50', '2025-12-17 19:47:44', '6AXW3xRm', '3685353'), + (33236, 329, 750, 'attending', '2021-04-13 22:45:01', '2025-12-17 19:47:44', '6AXW3xRm', '3689962'), + (33237, 329, 768, 'attending', '2021-04-25 02:17:59', '2025-12-17 19:47:46', '6AXW3xRm', '3724124'), + (33238, 329, 769, 'attending', '2021-04-26 14:17:10', '2025-12-17 19:47:46', '6AXW3xRm', '3724127'), + (33239, 329, 770, 'attending', '2021-04-28 01:43:05', '2025-12-17 19:47:46', '6AXW3xRm', '3724559'), + (33240, 329, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXW3xRm', '3730212'), + (33241, 329, 777, 'attending', '2021-04-30 12:43:53', '2025-12-17 19:47:46', '6AXW3xRm', '3746248'), + (33242, 329, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXW3xRm', '3793156'), + (33243, 329, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXW3xRm', '3974109'), + (33244, 329, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXW3xRm', '3975311'), + (33245, 329, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXW3xRm', '3975312'), + (33246, 329, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXW3xRm', '3994992'), + (33247, 329, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXW3xRm', '4014338'), + (33248, 329, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXW3xRm', '4021848'), + (33249, 329, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXW3xRm', '4136744'), + (33250, 329, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXW3xRm', '4136937'), + (33251, 329, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXW3xRm', '4136938'), + (33252, 329, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXW3xRm', '4136947'), + (33253, 329, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXW3xRm', '4210314'), + (33254, 329, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXW3xRm', '4225444'), + (33255, 329, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXW3xRm', '4239259'), + (33256, 329, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXW3xRm', '4240316'), + (33257, 329, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXW3xRm', '4240317'), + (33258, 329, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXW3xRm', '4240318'), + (33259, 329, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXW3xRm', '4240320'), + (33260, 329, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXW3xRm', '4250163'), + (33261, 329, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXW3xRm', '4275957'), + (33262, 329, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXW3xRm', '4277819'), + (33263, 329, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXW3xRm', '4301723'), + (33264, 329, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '6AXW3xRm', '4302093'), + (33265, 329, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXW3xRm', '4304151'), + (33266, 329, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AXW3xRm', '4356801'), + (33267, 329, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXW3xRm', '4366186'), + (33268, 329, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXW3xRm', '4366187'), + (33269, 329, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AXW3xRm', '4420735'), + (33270, 329, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AXW3xRm', '4420738'), + (33271, 329, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AXW3xRm', '4420739'), + (33272, 329, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AXW3xRm', '4420741'), + (33273, 329, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXW3xRm', '4420744'), + (33274, 329, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXW3xRm', '4420747'), + (33275, 329, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AXW3xRm', '4420748'), + (33276, 329, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXW3xRm', '4420749'), + (33277, 329, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AXW3xRm', '4461883'), + (33278, 329, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXW3xRm', '4508342'), + (33279, 329, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXW3xRm', '6045684'), + (33280, 330, 1891, 'attending', '2023-03-21 20:04:22', '2025-12-17 19:46:56', 'AQ1VD73A', '5900202'), + (33281, 330, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AQ1VD73A', '5900203'), + (33282, 330, 1917, 'not_attending', '2023-03-13 15:07:54', '2025-12-17 19:47:10', 'AQ1VD73A', '5910528'), + (33283, 330, 1927, 'not_attending', '2023-03-14 13:12:50', '2025-12-17 19:47:10', 'AQ1VD73A', '5932621'), + (33284, 330, 1943, 'attending', '2023-03-14 00:48:46', '2025-12-17 19:47:10', 'AQ1VD73A', '5962091'), + (33285, 330, 1946, 'maybe', '2023-03-14 13:13:19', '2025-12-17 19:46:56', 'AQ1VD73A', '5962134'), + (33286, 330, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'AQ1VD73A', '5962317'), + (33287, 330, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'AQ1VD73A', '5962318'), + (33288, 330, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'AQ1VD73A', '5965933'), + (33289, 330, 1955, 'not_attending', '2023-03-28 14:04:21', '2025-12-17 19:46:57', 'AQ1VD73A', '5972529'), + (33290, 330, 1971, 'attending', '2023-03-15 15:11:19', '2025-12-17 19:46:56', 'AQ1VD73A', '5993765'), + (33291, 330, 1974, 'not_attending', '2023-03-25 04:57:45', '2025-12-17 19:46:57', 'AQ1VD73A', '5993778'), + (33292, 330, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AQ1VD73A', '5998939'), + (33293, 330, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AQ1VD73A', '6028191'), + (33294, 330, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AQ1VD73A', '6040066'), + (33295, 330, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AQ1VD73A', '6042717'), + (33296, 330, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AQ1VD73A', '6044838'), + (33297, 330, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AQ1VD73A', '6044839'), + (33298, 330, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ1VD73A', '6045684'), + (33299, 330, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'AQ1VD73A', '6050104'), + (33300, 330, 2002, 'not_attending', '2023-04-23 03:50:18', '2025-12-17 19:47:01', 'AQ1VD73A', '6052605'), + (33301, 330, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AQ1VD73A', '6053195'), + (33302, 330, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AQ1VD73A', '6053198'), + (33303, 330, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AQ1VD73A', '6056085'), + (33304, 330, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AQ1VD73A', '6056916'), + (33305, 330, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AQ1VD73A', '6059290'), + (33306, 330, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AQ1VD73A', '6060328'), + (33307, 330, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AQ1VD73A', '6061037'), + (33308, 330, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AQ1VD73A', '6061039'), + (33309, 330, 2019, 'attending', '2023-04-16 07:23:44', '2025-12-17 19:47:00', 'AQ1VD73A', '6062934'), + (33310, 330, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AQ1VD73A', '6067245'), + (33311, 330, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AQ1VD73A', '6068094'), + (33312, 330, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AQ1VD73A', '6068252'), + (33313, 330, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AQ1VD73A', '6068253'), + (33314, 330, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AQ1VD73A', '6068254'), + (33315, 330, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AQ1VD73A', '6068280'), + (33316, 330, 2032, 'attending', '2023-06-03 16:44:16', '2025-12-17 19:47:04', 'AQ1VD73A', '6068281'), + (33317, 330, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AQ1VD73A', '6069093'), + (33318, 330, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'AQ1VD73A', '6072528'), + (33319, 330, 2047, 'not_attending', '2023-05-02 12:42:42', '2025-12-17 19:47:02', 'AQ1VD73A', '6076027'), + (33320, 330, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AQ1VD73A', '6079840'), + (33321, 330, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AQ1VD73A', '6083398'), + (33322, 330, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AQ1VD73A', '6093504'), + (33323, 330, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AQ1VD73A', '6097414'), + (33324, 330, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AQ1VD73A', '6097442'), + (33325, 330, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AQ1VD73A', '6097684'), + (33326, 330, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AQ1VD73A', '6098762'), + (33327, 330, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AQ1VD73A', '6101361'), + (33328, 330, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AQ1VD73A', '6101362'), + (33329, 330, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AQ1VD73A', '6103752'), + (33330, 330, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AQ1VD73A', '6107314'), + (33331, 330, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'AQ1VD73A', '6120034'), + (33332, 330, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AQ1VD73A', '6136733'), + (33333, 330, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AQ1VD73A', '6137989'), + (33334, 330, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AQ1VD73A', '6150864'), + (33335, 330, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'AQ1VD73A', '6155491'), + (33336, 330, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AQ1VD73A', '6164417'), + (33337, 330, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AQ1VD73A', '6166388'), + (33338, 330, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'AQ1VD73A', '6176439'), + (33339, 330, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'AQ1VD73A', '6182410'), + (33340, 330, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AQ1VD73A', '6185812'), + (33341, 330, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AQ1VD73A', '6187651'), + (33342, 330, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AQ1VD73A', '6187963'), + (33343, 330, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AQ1VD73A', '6187964'), + (33344, 330, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AQ1VD73A', '6187966'), + (33345, 330, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AQ1VD73A', '6187967'), + (33346, 330, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AQ1VD73A', '6187969'), + (33347, 330, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AQ1VD73A', '6334878'), + (33348, 330, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AQ1VD73A', '6337236'), + (33349, 330, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AQ1VD73A', '6337970'), + (33350, 330, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AQ1VD73A', '6338308'), + (33351, 330, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'AQ1VD73A', '6340845'), + (33352, 330, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AQ1VD73A', '6341710'), + (33353, 330, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AQ1VD73A', '6342044'), + (33354, 330, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AQ1VD73A', '6342298'), + (33355, 330, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AQ1VD73A', '6343294'), + (33356, 330, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AQ1VD73A', '6347034'), + (33357, 330, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AQ1VD73A', '6347056'), + (33358, 330, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AQ1VD73A', '6353830'), + (33359, 330, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AQ1VD73A', '6353831'), + (33360, 330, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AQ1VD73A', '6357867'), + (33361, 330, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AQ1VD73A', '6358652'), + (33362, 330, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AQ1VD73A', '6361709'), + (33363, 330, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AQ1VD73A', '6361710'), + (33364, 330, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AQ1VD73A', '6361711'), + (33365, 330, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AQ1VD73A', '6361712'), + (33366, 330, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AQ1VD73A', '6361713'), + (33367, 330, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AQ1VD73A', '6382573'), + (33368, 330, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AQ1VD73A', '6388604'), + (33369, 330, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AQ1VD73A', '6394629'), + (33370, 330, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AQ1VD73A', '6394631'), + (33371, 330, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AQ1VD73A', '6440863'), + (33372, 330, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AQ1VD73A', '6445440'), + (33373, 330, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AQ1VD73A', '6453951'), + (33374, 330, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AQ1VD73A', '6461696'), + (33375, 330, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AQ1VD73A', '6462129'), + (33376, 330, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AQ1VD73A', '6463218'), + (33377, 330, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AQ1VD73A', '6472181'), + (33378, 330, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AQ1VD73A', '6482693'), + (33379, 330, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'AQ1VD73A', '6484200'), + (33380, 330, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AQ1VD73A', '6484680'), + (33381, 330, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AQ1VD73A', '6507741'), + (33382, 330, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AQ1VD73A', '6514659'), + (33383, 330, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AQ1VD73A', '6514660'), + (33384, 330, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AQ1VD73A', '6519103'), + (33385, 330, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AQ1VD73A', '6535681'), + (33386, 330, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AQ1VD73A', '6584747'), + (33387, 330, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AQ1VD73A', '6587097'), + (33388, 330, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AQ1VD73A', '6609022'), + (33389, 330, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AQ1VD73A', '6632757'), + (33390, 330, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AQ1VD73A', '6644187'), + (33391, 330, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AQ1VD73A', '6648951'), + (33392, 330, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AQ1VD73A', '6648952'), + (33393, 330, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AQ1VD73A', '6655401'), + (33394, 330, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AQ1VD73A', '6661585'), + (33395, 330, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AQ1VD73A', '6661588'), + (33396, 330, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AQ1VD73A', '6661589'), + (33397, 330, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AQ1VD73A', '6699906'), + (33398, 330, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AQ1VD73A', '6701109'), + (33399, 330, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AQ1VD73A', '6705219'), + (33400, 330, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AQ1VD73A', '6710153'), + (33401, 330, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AQ1VD73A', '6711552'), + (33402, 330, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AQ1VD73A', '6711553'), + (33403, 331, 311, 'not_attending', '2020-09-18 14:56:29', '2025-12-17 19:47:56', 'nm6LVPq4', '3186057'), + (33404, 331, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'nm6LVPq4', '3217037'), + (33405, 331, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'nm6LVPq4', '3218510'), + (33406, 331, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6LVPq4', '6045684'), + (33407, 332, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'mG2OY3Xd', '4210314'), + (33408, 332, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'mG2OY3Xd', '4240318'), + (33409, 332, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'mG2OY3Xd', '4240320'), + (33410, 332, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'mG2OY3Xd', '4304151'), + (33411, 332, 947, 'not_attending', '2021-08-04 05:12:06', '2025-12-17 19:47:41', 'mG2OY3Xd', '4315713'), + (33412, 332, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'mG2OY3Xd', '4315714'), + (33413, 332, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'mG2OY3Xd', '4315726'), + (33414, 332, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'mG2OY3Xd', '4356801'), + (33415, 332, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'mG2OY3Xd', '4366186'), + (33416, 332, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'mG2OY3Xd', '4366187'), + (33417, 332, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'mG2OY3Xd', '4420735'), + (33418, 332, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'mG2OY3Xd', '4420738'), + (33419, 332, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'mG2OY3Xd', '4420739'), + (33420, 332, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'mG2OY3Xd', '4420741'), + (33421, 332, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'mG2OY3Xd', '4420744'), + (33422, 332, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'mG2OY3Xd', '4420747'), + (33423, 332, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'mG2OY3Xd', '4420748'), + (33424, 332, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'mG2OY3Xd', '4420749'), + (33425, 332, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mG2OY3Xd', '6045684'), + (33426, 333, 993, 'attending', '2021-09-23 22:53:03', '2025-12-17 19:47:34', '41orQxRm', '4420741'), + (33427, 333, 994, 'attending', '2021-10-02 22:46:03', '2025-12-17 19:47:34', '41orQxRm', '4420742'), + (33428, 333, 995, 'attending', '2021-10-04 14:23:09', '2025-12-17 19:47:34', '41orQxRm', '4420744'), + (33429, 333, 996, 'attending', '2021-10-30 19:05:42', '2025-12-17 19:47:35', '41orQxRm', '4420747'), + (33430, 333, 997, 'attending', '2021-10-23 21:31:39', '2025-12-17 19:47:35', '41orQxRm', '4420748'), + (33431, 333, 998, 'attending', '2021-10-30 19:06:35', '2025-12-17 19:47:36', '41orQxRm', '4420749'), + (33432, 333, 1069, 'attending', '2021-09-24 15:43:33', '2025-12-17 19:47:34', '41orQxRm', '4512090'), + (33433, 333, 1070, 'attending', '2021-10-01 21:31:20', '2025-12-17 19:47:34', '41orQxRm', '4512562'), + (33434, 333, 1072, 'attending', '2021-10-09 21:04:19', '2025-12-17 19:47:34', '41orQxRm', '4516287'), + (33435, 333, 1074, 'attending', '2021-09-29 21:50:02', '2025-12-17 19:47:34', '41orQxRm', '4528953'), + (33436, 333, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '41orQxRm', '4568602'), + (33437, 333, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '41orQxRm', '4572153'), + (33438, 333, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '41orQxRm', '4585962'), + (33439, 333, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '41orQxRm', '4596356'), + (33440, 333, 1097, 'not_attending', '2021-11-03 22:52:31', '2025-12-17 19:47:36', '41orQxRm', '4598860'), + (33441, 333, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '41orQxRm', '4598861'), + (33442, 333, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '41orQxRm', '4602797'), + (33443, 333, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '41orQxRm', '4637896'), + (33444, 333, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '41orQxRm', '4642994'), + (33445, 333, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '41orQxRm', '4642995'), + (33446, 333, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '41orQxRm', '4642996'), + (33447, 333, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '41orQxRm', '4642997'), + (33448, 333, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '41orQxRm', '4645687'), + (33449, 333, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '41orQxRm', '4645698'), + (33450, 333, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '41orQxRm', '4645704'), + (33451, 333, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '41orQxRm', '4645705'), + (33452, 333, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '41orQxRm', '4668385'), + (33453, 333, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '41orQxRm', '4694407'), + (33454, 333, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '41orQxRm', '4736497'), + (33455, 333, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '41orQxRm', '4736499'), + (33456, 333, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '41orQxRm', '4736500'), + (33457, 333, 1181, 'attending', '2022-03-02 23:44:37', '2025-12-17 19:47:33', '41orQxRm', '4736503'), + (33458, 333, 1182, 'not_attending', '2022-03-12 23:57:10', '2025-12-17 19:47:33', '41orQxRm', '4736504'), + (33459, 333, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '41orQxRm', '4746789'), + (33460, 333, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '41orQxRm', '4753929'), + (33461, 333, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '41orQxRm', '5038850'), + (33462, 333, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '41orQxRm', '5045826'), + (33463, 333, 1249, 'not_attending', '2022-03-10 00:04:37', '2025-12-17 19:47:33', '41orQxRm', '5068530'), + (33464, 333, 1252, 'not_attending', '2022-03-03 18:08:19', '2025-12-17 19:47:33', '41orQxRm', '5129121'), + (33465, 333, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '41orQxRm', '5132533'), + (33466, 333, 1272, 'not_attending', '2022-03-19 22:08:12', '2025-12-17 19:47:25', '41orQxRm', '5186582'), + (33467, 333, 1273, 'attending', '2022-03-26 15:19:18', '2025-12-17 19:47:25', '41orQxRm', '5186583'), + (33468, 333, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '41orQxRm', '5186585'), + (33469, 333, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '41orQxRm', '5190437'), + (33470, 333, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '41orQxRm', '5195095'), + (33471, 333, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', '41orQxRm', '5215989'), + (33472, 333, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41orQxRm', '5223686'), + (33473, 333, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41orQxRm', '5227432'), + (33474, 333, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '41orQxRm', '5247467'), + (33475, 333, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '41orQxRm', '5260800'), + (33476, 333, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '41orQxRm', '5269930'), + (33477, 333, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41orQxRm', '5271448'), + (33478, 333, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '41orQxRm', '5271449'), + (33479, 333, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '41orQxRm', '5276469'), + (33480, 333, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41orQxRm', '5278159'), + (33481, 333, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41orQxRm', '5363695'), + (33482, 333, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41orQxRm', '5365960'), + (33483, 333, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '41orQxRm', '5368973'), + (33484, 333, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41orQxRm', '5378247'), + (33485, 333, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '41orQxRm', '5389605'), + (33486, 333, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41orQxRm', '5397265'), + (33487, 333, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41orQxRm', '5403967'), + (33488, 333, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41orQxRm', '5404786'), + (33489, 333, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41orQxRm', '5405203'), + (33490, 333, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '41orQxRm', '5408794'), + (33491, 333, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41orQxRm', '5411699'), + (33492, 333, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41orQxRm', '5412550'), + (33493, 333, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41orQxRm', '5415046'), + (33494, 333, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41orQxRm', '5422086'), + (33495, 333, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41orQxRm', '5422406'), + (33496, 333, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41orQxRm', '5424565'), + (33497, 333, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41orQxRm', '5426882'), + (33498, 333, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41orQxRm', '5427083'), + (33499, 333, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41orQxRm', '5441125'), + (33500, 333, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41orQxRm', '5441126'), + (33501, 333, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41orQxRm', '5441128'), + (33502, 333, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41orQxRm', '5446643'), + (33503, 333, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41orQxRm', '5453325'), + (33504, 333, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41orQxRm', '5454516'), + (33505, 333, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41orQxRm', '5454605'), + (33506, 333, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41orQxRm', '5455037'), + (33507, 333, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41orQxRm', '5461278'), + (33508, 333, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41orQxRm', '5469480'), + (33509, 333, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41orQxRm', '5471073'), + (33510, 333, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41orQxRm', '5474663'), + (33511, 333, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41orQxRm', '5482022'), + (33512, 333, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41orQxRm', '5482793'), + (33513, 333, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41orQxRm', '5488912'), + (33514, 333, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41orQxRm', '5492192'), + (33515, 333, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41orQxRm', '5493139'), + (33516, 333, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41orQxRm', '5493200'), + (33517, 333, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41orQxRm', '5502188'), + (33518, 333, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41orQxRm', '5512862'), + (33519, 333, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41orQxRm', '5513985'), + (33520, 333, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41orQxRm', '6045684'), + (33521, 334, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'amGzQpKd', '3149489'), + (33522, 334, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'amGzQpKd', '3236450'), + (33523, 334, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'amGzQpKd', '3236452'), + (33524, 334, 648, 'attending', '2021-05-28 22:24:26', '2025-12-17 19:47:47', 'amGzQpKd', '3539923'), + (33525, 334, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'amGzQpKd', '3963335'), + (33526, 334, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGzQpKd', '3975311'), + (33527, 334, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amGzQpKd', '3994992'), + (33528, 334, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGzQpKd', '4014338'), + (33529, 334, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGzQpKd', '6045684'), + (33530, 335, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6jpBVRm', '5630960'), + (33531, 335, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6jpBVRm', '5630961'), + (33532, 335, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6jpBVRm', '5630962'), + (33533, 335, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6jpBVRm', '5635406'), + (33534, 335, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6jpBVRm', '5638765'), + (33535, 335, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6jpBVRm', '5640097'), + (33536, 335, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm6jpBVRm', '5640843'), + (33537, 335, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6jpBVRm', '5641521'), + (33538, 335, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6jpBVRm', '5652395'), + (33539, 335, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6jpBVRm', '5671637'), + (33540, 335, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6jpBVRm', '5672329'), + (33541, 335, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6jpBVRm', '5674057'), + (33542, 335, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6jpBVRm', '5674060'), + (33543, 335, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6jpBVRm', '5677461'), + (33544, 335, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6jpBVRm', '6045684'), + (33545, 336, 951, 'attending', '2021-08-27 00:10:22', '2025-12-17 19:47:43', 'd9nXgXJm', '4315731'), + (33546, 336, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd9nXgXJm', '4356801'), + (33547, 336, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'd9nXgXJm', '4366187'), + (33548, 336, 990, 'attending', '2021-09-01 22:52:56', '2025-12-17 19:47:43', 'd9nXgXJm', '4420735'), + (33549, 336, 991, 'attending', '2021-09-11 20:05:35', '2025-12-17 19:47:43', 'd9nXgXJm', '4420738'), + (33550, 336, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'd9nXgXJm', '4420739'), + (33551, 336, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'd9nXgXJm', '4420741'), + (33552, 336, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'd9nXgXJm', '4420744'), + (33553, 336, 996, 'attending', '2021-10-11 19:26:22', '2025-12-17 19:47:35', 'd9nXgXJm', '4420747'), + (33554, 336, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'd9nXgXJm', '4420748'), + (33555, 336, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'd9nXgXJm', '4420749'), + (33556, 336, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'd9nXgXJm', '4461883'), + (33557, 336, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'd9nXgXJm', '4508342'), + (33558, 336, 1077, 'attending', '2021-10-11 19:26:36', '2025-12-17 19:47:34', 'd9nXgXJm', '4540903'), + (33559, 336, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd9nXgXJm', '4568602'), + (33560, 336, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd9nXgXJm', '6045684'), + (33561, 337, 1116, 'maybe', '2021-11-30 03:06:24', '2025-12-17 19:47:37', 'mjn99L0m', '4642994'), + (33562, 337, 1117, 'attending', '2021-12-09 00:36:14', '2025-12-17 19:47:37', 'mjn99L0m', '4642995'), + (33563, 337, 1118, 'attending', '2021-12-16 00:36:07', '2025-12-17 19:47:38', 'mjn99L0m', '4642996'), + (33564, 337, 1119, 'not_attending', '2021-12-23 00:54:56', '2025-12-17 19:47:31', 'mjn99L0m', '4642997'), + (33565, 337, 1122, 'not_attending', '2021-11-29 16:35:05', '2025-12-17 19:47:37', 'mjn99L0m', '4644023'), + (33566, 337, 1126, 'attending', '2021-12-11 21:39:53', '2025-12-17 19:47:38', 'mjn99L0m', '4645687'), + (33567, 337, 1130, 'attending', '2021-12-03 14:39:50', '2025-12-17 19:47:37', 'mjn99L0m', '4658824'), + (33568, 337, 1131, 'not_attending', '2021-12-23 00:53:49', '2025-12-17 19:47:31', 'mjn99L0m', '4658825'), + (33569, 337, 1138, 'attending', '2021-11-29 16:35:09', '2025-12-17 19:47:37', 'mjn99L0m', '4675407'), + (33570, 337, 1139, 'attending', '2021-11-30 15:44:28', '2025-12-17 19:47:37', 'mjn99L0m', '4675604'), + (33571, 337, 1140, 'attending', '2021-11-30 04:32:07', '2025-12-17 19:47:37', 'mjn99L0m', '4679701'), + (33572, 337, 1142, 'attending', '2021-12-05 04:30:37', '2025-12-17 19:47:37', 'mjn99L0m', '4681923'), + (33573, 337, 1143, 'attending', '2021-12-02 00:52:19', '2025-12-17 19:47:37', 'mjn99L0m', '4683667'), + (33574, 337, 1144, 'not_attending', '2021-12-07 23:13:29', '2025-12-17 19:47:37', 'mjn99L0m', '4687090'), + (33575, 337, 1145, 'attending', '2021-12-06 14:27:03', '2025-12-17 19:47:38', 'mjn99L0m', '4691157'), + (33576, 337, 1146, 'attending', '2021-12-07 03:01:09', '2025-12-17 19:47:38', 'mjn99L0m', '4692841'), + (33577, 337, 1147, 'attending', '2021-12-12 18:21:25', '2025-12-17 19:47:38', 'mjn99L0m', '4692842'), + (33578, 337, 1148, 'attending', '2021-12-09 04:11:36', '2025-12-17 19:47:31', 'mjn99L0m', '4692843'), + (33579, 337, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mjn99L0m', '4694407'), + (33580, 337, 1151, 'not_attending', '2022-01-05 22:12:19', '2025-12-17 19:47:31', 'mjn99L0m', '4708704'), + (33581, 337, 1152, 'maybe', '2022-01-02 13:13:26', '2025-12-17 19:47:31', 'mjn99L0m', '4708705'), + (33582, 337, 1153, 'attending', '2022-01-19 23:56:12', '2025-12-17 19:47:32', 'mjn99L0m', '4708707'), + (33583, 337, 1154, 'maybe', '2022-01-02 13:13:48', '2025-12-17 19:47:32', 'mjn99L0m', '4708708'), + (33584, 337, 1158, 'attending', '2021-12-20 03:17:07', '2025-12-17 19:47:31', 'mjn99L0m', '4715311'), + (33585, 337, 1159, 'not_attending', '2022-01-05 01:06:53', '2025-12-17 19:47:31', 'mjn99L0m', '4717532'), + (33586, 337, 1162, 'not_attending', '2022-01-07 01:38:27', '2025-12-17 19:47:31', 'mjn99L0m', '4718771'), + (33587, 337, 1164, 'attending', '2021-12-29 12:47:27', '2025-12-17 19:47:31', 'mjn99L0m', '4724208'), + (33588, 337, 1165, 'attending', '2021-12-29 12:47:29', '2025-12-17 19:47:31', 'mjn99L0m', '4724210'), + (33589, 337, 1166, 'not_attending', '2022-01-04 16:31:55', '2025-12-17 19:47:31', 'mjn99L0m', '4725109'), + (33590, 337, 1170, 'not_attending', '2022-01-10 00:37:56', '2025-12-17 19:47:31', 'mjn99L0m', '4731045'), + (33591, 337, 1172, 'maybe', '2022-01-04 16:32:01', '2025-12-17 19:47:32', 'mjn99L0m', '4735348'), + (33592, 337, 1173, 'not_attending', '2022-01-08 01:59:08', '2025-12-17 19:47:31', 'mjn99L0m', '4736495'), + (33593, 337, 1174, 'not_attending', '2022-01-16 01:25:04', '2025-12-17 19:47:31', 'mjn99L0m', '4736496'), + (33594, 337, 1175, 'maybe', '2022-01-04 16:32:08', '2025-12-17 19:47:32', 'mjn99L0m', '4736497'), + (33595, 337, 1176, 'maybe', '2022-01-04 16:32:22', '2025-12-17 19:47:32', 'mjn99L0m', '4736498'), + (33596, 337, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mjn99L0m', '4736499'), + (33597, 337, 1178, 'maybe', '2022-01-04 16:32:16', '2025-12-17 19:47:32', 'mjn99L0m', '4736500'), + (33598, 337, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mjn99L0m', '4736503'), + (33599, 337, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mjn99L0m', '4736504'), + (33600, 337, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mjn99L0m', '4746789'), + (33601, 337, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mjn99L0m', '4753929'), + (33602, 337, 1192, 'attending', '2022-01-20 04:56:04', '2025-12-17 19:47:32', 'mjn99L0m', '4758745'), + (33603, 337, 1193, 'attending', '2022-01-20 04:59:51', '2025-12-17 19:47:32', 'mjn99L0m', '4759563'), + (33604, 337, 1198, 'not_attending', '2022-01-25 00:02:15', '2025-12-17 19:47:32', 'mjn99L0m', '4766801'), + (33605, 337, 1199, 'not_attending', '2022-01-25 00:02:17', '2025-12-17 19:47:32', 'mjn99L0m', '4766802'), + (33606, 337, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mjn99L0m', '5038850'), + (33607, 337, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mjn99L0m', '5045826'), + (33608, 337, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mjn99L0m', '5132533'), + (33609, 337, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mjn99L0m', '5186582'), + (33610, 337, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mjn99L0m', '5186583'), + (33611, 337, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mjn99L0m', '5186585'), + (33612, 337, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mjn99L0m', '5190437'), + (33613, 337, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mjn99L0m', '5215989'), + (33614, 337, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjn99L0m', '6045684'), + (33615, 338, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Ar08bpXd', '5630960'), + (33616, 338, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Ar08bpXd', '5630961'), + (33617, 338, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Ar08bpXd', '5630962'), + (33618, 338, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Ar08bpXd', '5630966'), + (33619, 338, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Ar08bpXd', '5635406'), + (33620, 338, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Ar08bpXd', '5638765'), + (33621, 338, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Ar08bpXd', '5640097'), + (33622, 338, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'Ar08bpXd', '5640843'), + (33623, 338, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Ar08bpXd', '5641521'), + (33624, 338, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Ar08bpXd', '5652395'), + (33625, 338, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Ar08bpXd', '5671637'), + (33626, 338, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Ar08bpXd', '5672329'), + (33627, 338, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Ar08bpXd', '5674057'), + (33628, 338, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Ar08bpXd', '5674060'), + (33629, 338, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Ar08bpXd', '5677461'), + (33630, 338, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Ar08bpXd', '5698046'), + (33631, 338, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Ar08bpXd', '5699760'), + (33632, 338, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ar08bpXd', '6045684'), + (33633, 339, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'Md3M5qZA', '3034321'), + (33634, 339, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'Md3M5qZA', '3067093'), + (33635, 339, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'Md3M5qZA', '3075228'), + (33636, 339, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'Md3M5qZA', '3075456'), + (33637, 339, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'Md3M5qZA', '3083791'), + (33638, 339, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'Md3M5qZA', '3085151'), + (33639, 339, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'Md3M5qZA', '3087265'), + (33640, 339, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', 'Md3M5qZA', '3087266'), + (33641, 339, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'Md3M5qZA', '3087267'), + (33642, 339, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'Md3M5qZA', '3087268'), + (33643, 339, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'Md3M5qZA', '3088653'), + (33644, 339, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'Md3M5qZA', '3106813'), + (33645, 339, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'Md3M5qZA', '3129980'), + (33646, 339, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'Md3M5qZA', '3132817'), + (33647, 339, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'Md3M5qZA', '3132820'), + (33648, 339, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'Md3M5qZA', '3155321'), + (33649, 339, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'Md3M5qZA', '3162006'), + (33650, 339, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'Md3M5qZA', '3163442'), + (33651, 339, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'Md3M5qZA', '3172832'), + (33652, 339, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'Md3M5qZA', '3172833'), + (33653, 339, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'Md3M5qZA', '3172834'), + (33654, 339, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'Md3M5qZA', '3172876'), + (33655, 339, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'Md3M5qZA', '3186057'), + (33656, 339, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'Md3M5qZA', '3191735'), + (33657, 339, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'Md3M5qZA', '3200209'), + (33658, 339, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', 'Md3M5qZA', '3214207'), + (33659, 339, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'Md3M5qZA', '3217037'), + (33660, 339, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'Md3M5qZA', '3218510'), + (33661, 339, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'Md3M5qZA', '3228698'), + (33662, 339, 386, 'attending', '2020-10-10 22:35:12', '2025-12-17 19:47:52', 'Md3M5qZA', '3228699'), + (33663, 339, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'Md3M5qZA', '3228700'), + (33664, 339, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'Md3M5qZA', '3228701'), + (33665, 339, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'Md3M5qZA', '3245751'), + (33666, 339, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'Md3M5qZA', '3250232'), + (33667, 339, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'Md3M5qZA', '3256168'), + (33668, 339, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'Md3M5qZA', '3263578'), + (33669, 339, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'Md3M5qZA', '3276428'), + (33670, 339, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Md3M5qZA', '3281470'), + (33671, 339, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'Md3M5qZA', '3281829'), + (33672, 339, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'Md3M5qZA', '3285413'), + (33673, 339, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Md3M5qZA', '3285414'), + (33674, 339, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Md3M5qZA', '3297764'), + (33675, 339, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Md3M5qZA', '3313856'), + (33676, 339, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Md3M5qZA', '3314909'), + (33677, 339, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Md3M5qZA', '3314964'), + (33678, 339, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'Md3M5qZA', '3323365'), + (33679, 339, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Md3M5qZA', '3329383'), + (33680, 339, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Md3M5qZA', '3351539'), + (33681, 339, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Md3M5qZA', '3386848'), + (33682, 339, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Md3M5qZA', '3389527'), + (33683, 339, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Md3M5qZA', '3396499'), + (33684, 339, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Md3M5qZA', '3403650'), + (33685, 339, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Md3M5qZA', '3406988'), + (33686, 339, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Md3M5qZA', '3416576'), + (33687, 339, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'Md3M5qZA', '3430267'), + (33688, 339, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'Md3M5qZA', '3470305'), + (33689, 339, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Md3M5qZA', '3470991'), + (33690, 339, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'Md3M5qZA', '3517815'), + (33691, 339, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'Md3M5qZA', '3517816'), + (33692, 339, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'Md3M5qZA', '3523941'), + (33693, 339, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Md3M5qZA', '3533850'), + (33694, 339, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Md3M5qZA', '3536632'), + (33695, 339, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Md3M5qZA', '3536656'), + (33696, 339, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Md3M5qZA', '3539916'), + (33697, 339, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Md3M5qZA', '3539917'), + (33698, 339, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Md3M5qZA', '3539918'), + (33699, 339, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'Md3M5qZA', '3539919'), + (33700, 339, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Md3M5qZA', '3539920'), + (33701, 339, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Md3M5qZA', '3539921'), + (33702, 339, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Md3M5qZA', '3539922'), + (33703, 339, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Md3M5qZA', '3539923'), + (33704, 339, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Md3M5qZA', '3539927'), + (33705, 339, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Md3M5qZA', '3582734'), + (33706, 339, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Md3M5qZA', '3583262'), + (33707, 339, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Md3M5qZA', '3619523'), + (33708, 339, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Md3M5qZA', '3661369'), + (33709, 339, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Md3M5qZA', '3674262'), + (33710, 339, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Md3M5qZA', '3677402'), + (33711, 339, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Md3M5qZA', '3730212'), + (33712, 339, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Md3M5qZA', '3793156'), + (33713, 339, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Md3M5qZA', '3974109'), + (33714, 339, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Md3M5qZA', '3975311'), + (33715, 339, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Md3M5qZA', '3975312'), + (33716, 339, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Md3M5qZA', '3994992'), + (33717, 339, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Md3M5qZA', '4014338'), + (33718, 339, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'Md3M5qZA', '4021848'), + (33719, 339, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Md3M5qZA', '4136744'), + (33720, 339, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Md3M5qZA', '4136937'), + (33721, 339, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Md3M5qZA', '4136938'), + (33722, 339, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Md3M5qZA', '4136947'), + (33723, 339, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Md3M5qZA', '4210314'), + (33724, 339, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Md3M5qZA', '4225444'), + (33725, 339, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Md3M5qZA', '4239259'), + (33726, 339, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Md3M5qZA', '4240316'), + (33727, 339, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Md3M5qZA', '4240317'), + (33728, 339, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Md3M5qZA', '4240318'), + (33729, 339, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Md3M5qZA', '4240320'), + (33730, 339, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Md3M5qZA', '4250163'), + (33731, 339, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Md3M5qZA', '4275957'), + (33732, 339, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Md3M5qZA', '4277819'), + (33733, 339, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Md3M5qZA', '4301723'), + (33734, 339, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Md3M5qZA', '4302093'), + (33735, 339, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Md3M5qZA', '4304151'), + (33736, 339, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Md3M5qZA', '4356801'), + (33737, 339, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Md3M5qZA', '4366186'), + (33738, 339, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Md3M5qZA', '4366187'), + (33739, 339, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Md3M5qZA', '4420735'), + (33740, 339, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Md3M5qZA', '4420738'), + (33741, 339, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Md3M5qZA', '4420739'), + (33742, 339, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Md3M5qZA', '4420741'), + (33743, 339, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Md3M5qZA', '4420744'), + (33744, 339, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Md3M5qZA', '4420747'), + (33745, 339, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Md3M5qZA', '4420748'), + (33746, 339, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Md3M5qZA', '4420749'), + (33747, 339, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Md3M5qZA', '4461883'), + (33748, 339, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Md3M5qZA', '4508342'), + (33749, 339, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Md3M5qZA', '4568602'), + (33750, 339, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Md3M5qZA', '4572153'), + (33751, 339, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Md3M5qZA', '4585962'), + (33752, 339, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Md3M5qZA', '4596356'), + (33753, 339, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Md3M5qZA', '4598860'), + (33754, 339, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Md3M5qZA', '4598861'), + (33755, 339, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Md3M5qZA', '4602797'), + (33756, 339, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Md3M5qZA', '4637896'), + (33757, 339, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Md3M5qZA', '4642994'), + (33758, 339, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Md3M5qZA', '4642995'), + (33759, 339, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Md3M5qZA', '4642996'), + (33760, 339, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Md3M5qZA', '4642997'), + (33761, 339, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Md3M5qZA', '4645687'), + (33762, 339, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Md3M5qZA', '4645698'), + (33763, 339, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Md3M5qZA', '4645704'), + (33764, 339, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Md3M5qZA', '4645705'), + (33765, 339, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Md3M5qZA', '4668385'), + (33766, 339, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Md3M5qZA', '4694407'), + (33767, 339, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Md3M5qZA', '4736497'), + (33768, 339, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Md3M5qZA', '4736499'), + (33769, 339, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Md3M5qZA', '4736500'), + (33770, 339, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Md3M5qZA', '4736503'), + (33771, 339, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Md3M5qZA', '4736504'), + (33772, 339, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Md3M5qZA', '4746789'), + (33773, 339, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'Md3M5qZA', '4753929'), + (33774, 339, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Md3M5qZA', '5038850'), + (33775, 339, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Md3M5qZA', '5045826'), + (33776, 339, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Md3M5qZA', '5132533'), + (33777, 339, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Md3M5qZA', '5186582'), + (33778, 339, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Md3M5qZA', '5186583'), + (33779, 339, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Md3M5qZA', '5186585'), + (33780, 339, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Md3M5qZA', '5190437'), + (33781, 339, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Md3M5qZA', '5195095'), + (33782, 339, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Md3M5qZA', '5215989'), + (33783, 339, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Md3M5qZA', '5223686'), + (33784, 339, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Md3M5qZA', '5247467'), + (33785, 339, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Md3M5qZA', '5260800'), + (33786, 339, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Md3M5qZA', '5269930'), + (33787, 339, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Md3M5qZA', '5271448'), + (33788, 339, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'Md3M5qZA', '5271449'), + (33789, 339, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Md3M5qZA', '5278159'), + (33790, 339, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Md3M5qZA', '5363695'), + (33791, 339, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Md3M5qZA', '5365960'), + (33792, 339, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Md3M5qZA', '5378247'), + (33793, 339, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Md3M5qZA', '5389605'), + (33794, 339, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Md3M5qZA', '5397265'), + (33795, 339, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Md3M5qZA', '5404786'), + (33796, 339, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Md3M5qZA', '5405203'), + (33797, 339, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Md3M5qZA', '5412550'), + (33798, 339, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Md3M5qZA', '5415046'), + (33799, 339, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Md3M5qZA', '5422086'), + (33800, 339, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Md3M5qZA', '5422406'), + (33801, 339, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Md3M5qZA', '5424565'), + (33802, 339, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Md3M5qZA', '5426882'), + (33803, 339, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Md3M5qZA', '5441125'), + (33804, 339, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Md3M5qZA', '5441126'), + (33805, 339, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Md3M5qZA', '5441128'), + (33806, 339, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Md3M5qZA', '5441131'), + (33807, 339, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Md3M5qZA', '5441132'), + (33808, 339, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Md3M5qZA', '5453325'), + (33809, 339, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Md3M5qZA', '5454516'), + (33810, 339, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Md3M5qZA', '5454605'), + (33811, 339, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Md3M5qZA', '5455037'), + (33812, 339, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Md3M5qZA', '5461278'), + (33813, 339, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Md3M5qZA', '5469480'), + (33814, 339, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Md3M5qZA', '5474663'), + (33815, 339, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Md3M5qZA', '5482022'), + (33816, 339, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Md3M5qZA', '5488912'), + (33817, 339, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Md3M5qZA', '5492192'), + (33818, 339, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Md3M5qZA', '5493139'), + (33819, 339, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Md3M5qZA', '5493200'), + (33820, 339, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Md3M5qZA', '5502188'), + (33821, 339, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Md3M5qZA', '5505059'), + (33822, 339, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Md3M5qZA', '5509055'), + (33823, 339, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Md3M5qZA', '5512862'), + (33824, 339, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Md3M5qZA', '5513985'), + (33825, 339, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'Md3M5qZA', '5519981'), + (33826, 339, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Md3M5qZA', '5522550'), + (33827, 339, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Md3M5qZA', '5534683'), + (33828, 339, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Md3M5qZA', '5537735'), + (33829, 339, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Md3M5qZA', '5540859'), + (33830, 339, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Md3M5qZA', '5546619'), + (33831, 339, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Md3M5qZA', '5557747'), + (33832, 339, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Md3M5qZA', '5560255'), + (33833, 339, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Md3M5qZA', '5562906'), + (33834, 339, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Md3M5qZA', '5600604'), + (33835, 339, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Md3M5qZA', '5605544'), + (33836, 339, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Md3M5qZA', '5630960'), + (33837, 339, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Md3M5qZA', '5630961'), + (33838, 339, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Md3M5qZA', '5630962'), + (33839, 339, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Md3M5qZA', '5630966'), + (33840, 339, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Md3M5qZA', '5630967'), + (33841, 339, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Md3M5qZA', '5630968'), + (33842, 339, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Md3M5qZA', '5635406'), + (33843, 339, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Md3M5qZA', '5638765'), + (33844, 339, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Md3M5qZA', '5640097'), + (33845, 339, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Md3M5qZA', '5640843'), + (33846, 339, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Md3M5qZA', '5641521'), + (33847, 339, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Md3M5qZA', '5642818'), + (33848, 339, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Md3M5qZA', '5652395'), + (33849, 339, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Md3M5qZA', '5670445'), + (33850, 339, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Md3M5qZA', '5671637'), + (33851, 339, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Md3M5qZA', '5672329'), + (33852, 339, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Md3M5qZA', '5674057'), + (33853, 339, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Md3M5qZA', '5674060'), + (33854, 339, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Md3M5qZA', '5677461'), + (33855, 339, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Md3M5qZA', '5698046'), + (33856, 339, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Md3M5qZA', '5699760'), + (33857, 339, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Md3M5qZA', '5741601'), + (33858, 339, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Md3M5qZA', '5763458'), + (33859, 339, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Md3M5qZA', '5774172'), + (33860, 339, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'Md3M5qZA', '5818247'), + (33861, 339, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Md3M5qZA', '5819471'), + (33862, 339, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'Md3M5qZA', '5827739'), + (33863, 339, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Md3M5qZA', '5844306'), + (33864, 339, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Md3M5qZA', '5850159'), + (33865, 339, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Md3M5qZA', '5858999'), + (33866, 339, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Md3M5qZA', '5871984'), + (33867, 339, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Md3M5qZA', '5876354'), + (33868, 339, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Md3M5qZA', '5880939'), + (33869, 339, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Md3M5qZA', '5880940'), + (33870, 339, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Md3M5qZA', '5880942'), + (33871, 339, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Md3M5qZA', '5880943'), + (33872, 339, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Md3M5qZA', '5887890'), + (33873, 339, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Md3M5qZA', '5888598'), + (33874, 339, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Md3M5qZA', '5893260'), + (33875, 339, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Md3M5qZA', '5899826'), + (33876, 339, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Md3M5qZA', '5900199'), + (33877, 339, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Md3M5qZA', '5900200'), + (33878, 339, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Md3M5qZA', '5900202'), + (33879, 339, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Md3M5qZA', '5900203'), + (33880, 339, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Md3M5qZA', '5901108'), + (33881, 339, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Md3M5qZA', '5901126'), + (33882, 339, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Md3M5qZA', '5909655'), + (33883, 339, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Md3M5qZA', '5910522'), + (33884, 339, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Md3M5qZA', '5910526'), + (33885, 339, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Md3M5qZA', '5910528'), + (33886, 339, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Md3M5qZA', '5916219'), + (33887, 339, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Md3M5qZA', '5936234'), + (33888, 339, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Md3M5qZA', '5958351'), + (33889, 339, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Md3M5qZA', '5959751'), + (33890, 339, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Md3M5qZA', '5959755'), + (33891, 339, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Md3M5qZA', '5960055'), + (33892, 339, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Md3M5qZA', '5961684'), + (33893, 339, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Md3M5qZA', '5962132'), + (33894, 339, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Md3M5qZA', '5962133'), + (33895, 339, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Md3M5qZA', '5962134'), + (33896, 339, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Md3M5qZA', '5962317'), + (33897, 339, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Md3M5qZA', '5962318'), + (33898, 339, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Md3M5qZA', '5965933'), + (33899, 339, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Md3M5qZA', '5967014'), + (33900, 339, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Md3M5qZA', '5972815'), + (33901, 339, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Md3M5qZA', '5974016'), + (33902, 339, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Md3M5qZA', '5981515'), + (33903, 339, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Md3M5qZA', '5993516'), + (33904, 339, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Md3M5qZA', '5998939'), + (33905, 339, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Md3M5qZA', '6028191'), + (33906, 339, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Md3M5qZA', '6040066'), + (33907, 339, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Md3M5qZA', '6042717'), + (33908, 339, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Md3M5qZA', '6044838'), + (33909, 339, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Md3M5qZA', '6044839'), + (33910, 339, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Md3M5qZA', '6045684'), + (33911, 339, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Md3M5qZA', '6050104'), + (33912, 339, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Md3M5qZA', '6053195'), + (33913, 339, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Md3M5qZA', '6053198'), + (33914, 339, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Md3M5qZA', '6056085'), + (33915, 339, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Md3M5qZA', '6056916'), + (33916, 339, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Md3M5qZA', '6059290'), + (33917, 339, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Md3M5qZA', '6060328'), + (33918, 339, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Md3M5qZA', '6061037'), + (33919, 339, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Md3M5qZA', '6061039'), + (33920, 339, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Md3M5qZA', '6067245'), + (33921, 339, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Md3M5qZA', '6068094'), + (33922, 339, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Md3M5qZA', '6068252'), + (33923, 339, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Md3M5qZA', '6068253'), + (33924, 339, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Md3M5qZA', '6068254'), + (33925, 339, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Md3M5qZA', '6068280'), + (33926, 339, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Md3M5qZA', '6069093'), + (33927, 339, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Md3M5qZA', '6072528'), + (33928, 339, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Md3M5qZA', '6079840'), + (33929, 339, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Md3M5qZA', '6083398'), + (33930, 339, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Md3M5qZA', '6093504'), + (33931, 339, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Md3M5qZA', '6097414'), + (33932, 339, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Md3M5qZA', '6097442'), + (33933, 339, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Md3M5qZA', '6097684'), + (33934, 339, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Md3M5qZA', '6098762'), + (33935, 339, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Md3M5qZA', '6101361'), + (33936, 339, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Md3M5qZA', '6101362'), + (33937, 339, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Md3M5qZA', '6107314'), + (33938, 339, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Md3M5qZA', '6120034'), + (33939, 339, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'Md3M5qZA', '6136733'), + (33940, 339, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Md3M5qZA', '6137989'), + (33941, 339, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Md3M5qZA', '6150864'), + (33942, 339, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Md3M5qZA', '6155491'), + (33943, 339, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Md3M5qZA', '6164417'), + (33944, 339, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Md3M5qZA', '6166388'), + (33945, 339, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Md3M5qZA', '6176439'), + (33946, 339, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Md3M5qZA', '6182410'), + (33947, 339, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Md3M5qZA', '6185812'), + (33948, 339, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Md3M5qZA', '6187651'), + (33949, 339, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Md3M5qZA', '6187963'), + (33950, 339, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Md3M5qZA', '6187964'), + (33951, 339, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Md3M5qZA', '6187966'), + (33952, 339, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Md3M5qZA', '6187967'), + (33953, 339, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Md3M5qZA', '6187969'), + (33954, 339, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Md3M5qZA', '6334878'), + (33955, 339, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Md3M5qZA', '6337236'), + (33956, 339, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Md3M5qZA', '6337970'), + (33957, 339, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Md3M5qZA', '6338308'), + (33958, 339, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Md3M5qZA', '6341710'), + (33959, 339, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Md3M5qZA', '6342044'), + (33960, 339, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Md3M5qZA', '6342298'), + (33961, 339, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Md3M5qZA', '6343294'), + (33962, 339, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Md3M5qZA', '6347034'), + (33963, 339, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Md3M5qZA', '6347056'), + (33964, 339, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Md3M5qZA', '6353830'), + (33965, 339, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Md3M5qZA', '6353831'), + (33966, 339, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Md3M5qZA', '6357867'), + (33967, 339, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Md3M5qZA', '6358652'), + (33968, 339, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Md3M5qZA', '6361709'), + (33969, 339, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Md3M5qZA', '6361710'), + (33970, 339, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Md3M5qZA', '6361711'), + (33971, 339, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Md3M5qZA', '6361712'), + (33972, 339, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Md3M5qZA', '6361713'), + (33973, 339, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'Md3M5qZA', '6382573'), + (33974, 339, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Md3M5qZA', '6388604'), + (33975, 339, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Md3M5qZA', '6394629'), + (33976, 339, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Md3M5qZA', '6394631'), + (33977, 339, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Md3M5qZA', '6440863'), + (33978, 339, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Md3M5qZA', '6445440'), + (33979, 339, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Md3M5qZA', '6453951'), + (33980, 339, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Md3M5qZA', '6461696'), + (33981, 339, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Md3M5qZA', '6462129'), + (33982, 339, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Md3M5qZA', '6463218'), + (33983, 339, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Md3M5qZA', '6472181'), + (33984, 339, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Md3M5qZA', '6482693'), + (33985, 339, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Md3M5qZA', '6484200'), + (33986, 339, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Md3M5qZA', '6484680'), + (33987, 339, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Md3M5qZA', '6507741'), + (33988, 339, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Md3M5qZA', '6514659'), + (33989, 339, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Md3M5qZA', '6514660'), + (33990, 339, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Md3M5qZA', '6519103'), + (33991, 339, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Md3M5qZA', '6535681'), + (33992, 339, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Md3M5qZA', '6584747'), + (33993, 339, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Md3M5qZA', '6587097'), + (33994, 339, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Md3M5qZA', '6609022'), + (33995, 339, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'Md3M5qZA', '6632757'), + (33996, 339, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Md3M5qZA', '6644187'), + (33997, 339, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Md3M5qZA', '6648951'), + (33998, 339, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Md3M5qZA', '6648952'), + (33999, 339, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Md3M5qZA', '6655401'), + (34000, 339, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Md3M5qZA', '6661585'), + (34001, 339, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Md3M5qZA', '6661588'), + (34002, 339, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Md3M5qZA', '6661589'), + (34003, 339, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Md3M5qZA', '6699906'), + (34004, 339, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Md3M5qZA', '6699913'), + (34005, 339, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Md3M5qZA', '6701109'), + (34006, 339, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Md3M5qZA', '6705219'), + (34007, 339, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Md3M5qZA', '6710153'), + (34008, 339, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Md3M5qZA', '6711552'), + (34009, 339, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'Md3M5qZA', '6711553'), + (34010, 339, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Md3M5qZA', '6722688'), + (34011, 339, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Md3M5qZA', '6730620'), + (34012, 339, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Md3M5qZA', '6740364'), + (34013, 339, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Md3M5qZA', '6743829'), + (34014, 339, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Md3M5qZA', '7030380'), + (34015, 339, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'Md3M5qZA', '7033677'), + (34016, 339, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Md3M5qZA', '7044715'), + (34017, 339, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Md3M5qZA', '7050318'), + (34018, 339, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Md3M5qZA', '7050319'), + (34019, 339, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Md3M5qZA', '7050322'), + (34020, 339, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Md3M5qZA', '7057804'), + (34021, 339, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Md3M5qZA', '7072824'), + (34022, 339, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Md3M5qZA', '7074348'), + (34023, 339, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Md3M5qZA', '7074364'), + (34024, 339, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Md3M5qZA', '7089267'), + (34025, 339, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Md3M5qZA', '7098747'), + (34026, 339, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Md3M5qZA', '7113468'), + (34027, 339, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Md3M5qZA', '7114856'), + (34028, 339, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Md3M5qZA', '7114951'), + (34029, 339, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Md3M5qZA', '7114955'), + (34030, 339, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Md3M5qZA', '7114956'), + (34031, 339, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Md3M5qZA', '7114957'), + (34032, 339, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Md3M5qZA', '7159484'), + (34033, 339, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Md3M5qZA', '7178446'), + (34034, 339, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'Md3M5qZA', '7220467'), + (34035, 339, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Md3M5qZA', '7240354'), + (34036, 339, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Md3M5qZA', '7251633'), + (34037, 339, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Md3M5qZA', '7324073'), + (34038, 339, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Md3M5qZA', '7324074'), + (34039, 339, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Md3M5qZA', '7324075'), + (34040, 339, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Md3M5qZA', '7324078'), + (34041, 339, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Md3M5qZA', '7324082'), + (34042, 339, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Md3M5qZA', '7331457'), + (34043, 339, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Md3M5qZA', '7363643'), + (34044, 339, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Md3M5qZA', '7368606'), + (34045, 339, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Md3M5qZA', '7397462'), + (34046, 339, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Md3M5qZA', '7424275'), + (34047, 339, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Md3M5qZA', '7432751'), + (34048, 339, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Md3M5qZA', '7432752'), + (34049, 339, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Md3M5qZA', '7432753'), + (34050, 339, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Md3M5qZA', '7432754'), + (34051, 339, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Md3M5qZA', '7432755'), + (34052, 339, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Md3M5qZA', '7432756'), + (34053, 339, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Md3M5qZA', '7432758'), + (34054, 339, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Md3M5qZA', '7432759'), + (34055, 339, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Md3M5qZA', '7433834'), + (34056, 339, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'Md3M5qZA', '7470197'), + (34057, 339, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Md3M5qZA', '7685613'), + (34058, 339, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Md3M5qZA', '7688194'), + (34059, 339, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Md3M5qZA', '7688196'), + (34060, 339, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Md3M5qZA', '7688289'), + (34061, 339, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Md3M5qZA', '7692763'), + (34062, 339, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Md3M5qZA', '7697552'), + (34063, 339, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Md3M5qZA', '7699878'), + (34064, 339, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Md3M5qZA', '7704043'), + (34065, 339, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Md3M5qZA', '7712467'), + (34066, 339, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Md3M5qZA', '7713585'), + (34067, 339, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Md3M5qZA', '7713586'), + (34068, 339, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Md3M5qZA', '7738518'), + (34069, 339, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Md3M5qZA', '7750636'), + (34070, 339, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Md3M5qZA', '7796540'), + (34071, 339, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Md3M5qZA', '7796541'), + (34072, 339, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Md3M5qZA', '7796542'), + (34073, 339, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Md3M5qZA', '7825913'), + (34074, 339, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Md3M5qZA', '7826209'), + (34075, 339, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Md3M5qZA', '7834742'), + (34076, 339, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Md3M5qZA', '7842108'), + (34077, 339, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Md3M5qZA', '7842902'), + (34078, 339, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Md3M5qZA', '7842903'), + (34079, 339, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Md3M5qZA', '7842904'), + (34080, 339, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Md3M5qZA', '7842905'), + (34081, 339, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Md3M5qZA', '7855719'), + (34082, 339, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Md3M5qZA', '7860683'), + (34083, 339, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Md3M5qZA', '7860684'), + (34084, 339, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Md3M5qZA', '7866095'), + (34085, 339, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Md3M5qZA', '7869170'), + (34086, 339, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Md3M5qZA', '7869188'), + (34087, 339, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Md3M5qZA', '7869201'), + (34088, 339, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Md3M5qZA', '7877465'), + (34089, 339, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Md3M5qZA', '7888250'), + (34090, 339, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Md3M5qZA', '7904777'), + (34091, 339, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Md3M5qZA', '8349164'), + (34092, 339, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Md3M5qZA', '8349545'), + (34093, 339, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Md3M5qZA', '8368028'), + (34094, 339, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Md3M5qZA', '8368029'), + (34095, 339, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Md3M5qZA', '8388462'), + (34096, 339, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Md3M5qZA', '8400273'), + (34097, 339, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Md3M5qZA', '8400275'), + (34098, 339, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'Md3M5qZA', '8400276'), + (34099, 339, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Md3M5qZA', '8404977'), + (34100, 339, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Md3M5qZA', '8430783'), + (34101, 339, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Md3M5qZA', '8430784'), + (34102, 339, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Md3M5qZA', '8430799'), + (34103, 339, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Md3M5qZA', '8430800'), + (34104, 339, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Md3M5qZA', '8430801'), + (34105, 339, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Md3M5qZA', '8438709'), + (34106, 339, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Md3M5qZA', '8457738'), + (34107, 339, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Md3M5qZA', '8459566'), + (34108, 339, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Md3M5qZA', '8459567'), + (34109, 339, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Md3M5qZA', '8461032'), + (34110, 339, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Md3M5qZA', '8477877'), + (34111, 339, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Md3M5qZA', '8485688'), + (34112, 339, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Md3M5qZA', '8490587'), + (34113, 339, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Md3M5qZA', '8493552'), + (34114, 339, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Md3M5qZA', '8493553'), + (34115, 339, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Md3M5qZA', '8493554'), + (34116, 339, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Md3M5qZA', '8493555'), + (34117, 339, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Md3M5qZA', '8493556'), + (34118, 339, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Md3M5qZA', '8493557'), + (34119, 339, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Md3M5qZA', '8493558'), + (34120, 339, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Md3M5qZA', '8493559'), + (34121, 339, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Md3M5qZA', '8493560'), + (34122, 339, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Md3M5qZA', '8493561'), + (34123, 339, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Md3M5qZA', '8493572'), + (34124, 339, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Md3M5qZA', '8540725'), + (34125, 339, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Md3M5qZA', '8555421'), + (34126, 340, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dVZgwN5d', '8438709'), + (34127, 340, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dVZgwN5d', '8457738'), + (34128, 340, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dVZgwN5d', '8459566'), + (34129, 340, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dVZgwN5d', '8459567'), + (34130, 340, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dVZgwN5d', '8461032'), + (34131, 340, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dVZgwN5d', '8477877'), + (34132, 340, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dVZgwN5d', '8485688'), + (34133, 340, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dVZgwN5d', '8490587'), + (34134, 340, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dVZgwN5d', '8493552'), + (34135, 340, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'dVZgwN5d', '8493553'), + (34136, 340, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dVZgwN5d', '8493554'), + (34137, 340, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dVZgwN5d', '8493555'), + (34138, 340, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dVZgwN5d', '8493556'), + (34139, 340, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dVZgwN5d', '8493557'), + (34140, 340, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dVZgwN5d', '8493558'), + (34141, 340, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dVZgwN5d', '8493559'), + (34142, 340, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dVZgwN5d', '8493560'), + (34143, 340, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'dVZgwN5d', '8493561'), + (34144, 340, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dVZgwN5d', '8493572'), + (34145, 340, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'dVZgwN5d', '8529058'), + (34146, 341, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dxDpDg2d', '4210314'), + (34147, 341, 893, 'not_attending', '2021-07-25 03:12:15', '2025-12-17 19:47:40', 'dxDpDg2d', '4229420'), + (34148, 341, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'dxDpDg2d', '4240317'), + (34149, 341, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'dxDpDg2d', '4240318'), + (34150, 341, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'dxDpDg2d', '4240320'), + (34151, 341, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'dxDpDg2d', '4277819'), + (34152, 341, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'dxDpDg2d', '4301723'), + (34153, 341, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'dxDpDg2d', '4302093'), + (34154, 341, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dxDpDg2d', '4304151'), + (34155, 341, 940, 'not_attending', '2021-07-30 16:29:40', '2025-12-17 19:47:40', 'dxDpDg2d', '4309049'), + (34156, 341, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'dxDpDg2d', '4315713'), + (34157, 341, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'dxDpDg2d', '4315714'), + (34158, 341, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'dxDpDg2d', '4315726'), + (34159, 341, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dxDpDg2d', '4356801'), + (34160, 341, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dxDpDg2d', '4366186'), + (34161, 341, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dxDpDg2d', '4366187'), + (34162, 341, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dxDpDg2d', '4420735'), + (34163, 341, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dxDpDg2d', '4420738'), + (34164, 341, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dxDpDg2d', '4420739'), + (34165, 341, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dxDpDg2d', '4420741'), + (34166, 341, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dxDpDg2d', '4420744'), + (34167, 341, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dxDpDg2d', '4420747'), + (34168, 341, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dxDpDg2d', '4420748'), + (34169, 341, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dxDpDg2d', '4420749'), + (34170, 341, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dxDpDg2d', '4461883'), + (34171, 341, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dxDpDg2d', '4508342'), + (34172, 341, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dxDpDg2d', '4568602'), + (34173, 341, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dxDpDg2d', '4572153'), + (34174, 341, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dxDpDg2d', '4585962'), + (34175, 341, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dxDpDg2d', '4596356'), + (34176, 341, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dxDpDg2d', '4598860'), + (34177, 341, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dxDpDg2d', '4598861'), + (34178, 341, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dxDpDg2d', '4602797'), + (34179, 341, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dxDpDg2d', '4637896'), + (34180, 341, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dxDpDg2d', '4642994'), + (34181, 341, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dxDpDg2d', '4642995'), + (34182, 341, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dxDpDg2d', '4642996'), + (34183, 341, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dxDpDg2d', '4642997'), + (34184, 341, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dxDpDg2d', '4645687'), + (34185, 341, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dxDpDg2d', '4645698'), + (34186, 341, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dxDpDg2d', '4645704'), + (34187, 341, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dxDpDg2d', '4645705'), + (34188, 341, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dxDpDg2d', '4668385'), + (34189, 341, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dxDpDg2d', '6045684'), + (34190, 342, 2133, 'not_attending', '2023-07-08 22:22:33', '2025-12-17 19:46:51', '4olZMeZd', '6187651'), + (34191, 342, 2134, 'attending', '2023-07-07 22:58:05', '2025-12-17 19:46:52', '4olZMeZd', '6187963'), + (34192, 342, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4olZMeZd', '6334878'), + (34193, 342, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', '4olZMeZd', '6334903'), + (34194, 342, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4olZMeZd', '6337236'), + (34195, 342, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4olZMeZd', '6337970'), + (34196, 342, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4olZMeZd', '6338308'), + (34197, 342, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4olZMeZd', '6341710'), + (34198, 342, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4olZMeZd', '6342044'), + (34199, 342, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4olZMeZd', '6342298'), + (34200, 342, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', '4olZMeZd', '6342591'), + (34201, 342, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4olZMeZd', '6343294'), + (34202, 342, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4olZMeZd', '6347034'), + (34203, 342, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4olZMeZd', '6347056'), + (34204, 342, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4olZMeZd', '6353830'), + (34205, 342, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4olZMeZd', '6353831'), + (34206, 342, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4olZMeZd', '6357867'), + (34207, 342, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4olZMeZd', '6358652'), + (34208, 342, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4olZMeZd', '6361709'), + (34209, 342, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4olZMeZd', '6361710'), + (34210, 342, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4olZMeZd', '6361711'), + (34211, 342, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4olZMeZd', '6361712'), + (34212, 342, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4olZMeZd', '6361713'), + (34213, 342, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4olZMeZd', '6382573'), + (34214, 342, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4olZMeZd', '6388604'), + (34215, 342, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4olZMeZd', '6394629'), + (34216, 342, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4olZMeZd', '6394631'), + (34217, 342, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4olZMeZd', '6431478'), + (34218, 343, 1668, 'not_attending', '2022-10-01 18:02:02', '2025-12-17 19:47:12', 'dwpXRp0m', '5563222'), + (34219, 343, 1730, 'attending', '2022-10-07 15:33:12', '2025-12-17 19:47:12', 'dwpXRp0m', '5634666'), + (34220, 343, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dwpXRp0m', '5635406'), + (34221, 343, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dwpXRp0m', '5638765'), + (34222, 343, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dwpXRp0m', '5640843'), + (34223, 343, 1742, 'attending', '2022-10-12 21:00:22', '2025-12-17 19:47:13', 'dwpXRp0m', '5641245'), + (34224, 343, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dwpXRp0m', '5641521'), + (34225, 343, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dwpXRp0m', '5652395'), + (34226, 343, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dwpXRp0m', '6045684'), + (34227, 344, 1379, 'not_attending', '2022-05-19 23:42:22', '2025-12-17 19:47:30', 'dl3z7pl4', '5271449'), + (34228, 344, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dl3z7pl4', '5365960'), + (34229, 344, 1409, 'not_attending', '2022-05-21 22:24:17', '2025-12-17 19:47:30', 'dl3z7pl4', '5367032'), + (34230, 344, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dl3z7pl4', '5368973'), + (34231, 344, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dl3z7pl4', '5378247'), + (34232, 344, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dl3z7pl4', '5389605'), + (34233, 344, 1432, 'attending', '2022-05-30 22:32:23', '2025-12-17 19:47:30', 'dl3z7pl4', '5391566'), + (34234, 344, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dl3z7pl4', '5397265'), + (34235, 344, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dl3z7pl4', '5403967'), + (34236, 344, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dl3z7pl4', '5404786'), + (34237, 344, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dl3z7pl4', '5405203'), + (34238, 344, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dl3z7pl4', '5408794'), + (34239, 344, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dl3z7pl4', '5411699'), + (34240, 344, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dl3z7pl4', '5412550'), + (34241, 344, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dl3z7pl4', '5415046'), + (34242, 344, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dl3z7pl4', '5422086'), + (34243, 344, 1498, 'attending', '2022-07-02 21:45:31', '2025-12-17 19:47:19', 'dl3z7pl4', '5422406'), + (34244, 344, 1502, 'not_attending', '2022-07-01 21:04:57', '2025-12-17 19:47:19', 'dl3z7pl4', '5424565'), + (34245, 344, 1504, 'attending', '2022-07-10 05:27:44', '2025-12-17 19:47:19', 'dl3z7pl4', '5426882'), + (34246, 344, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dl3z7pl4', '5427083'), + (34247, 344, 1511, 'attending', '2022-07-09 21:14:34', '2025-12-17 19:47:19', 'dl3z7pl4', '5437733'), + (34248, 344, 1513, 'not_attending', '2022-07-13 07:27:49', '2025-12-17 19:47:20', 'dl3z7pl4', '5441125'), + (34249, 344, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dl3z7pl4', '5441126'), + (34250, 344, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dl3z7pl4', '5441128'), + (34251, 344, 1517, 'attending', '2022-08-26 21:38:01', '2025-12-17 19:47:23', 'dl3z7pl4', '5441130'), + (34252, 344, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dl3z7pl4', '5441131'), + (34253, 344, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dl3z7pl4', '5441132'), + (34254, 344, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dl3z7pl4', '5446643'), + (34255, 344, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dl3z7pl4', '5453325'), + (34256, 344, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dl3z7pl4', '5454516'), + (34257, 344, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dl3z7pl4', '5454605'), + (34258, 344, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dl3z7pl4', '5455037'), + (34259, 344, 1556, 'attending', '2022-07-22 00:38:56', '2025-12-17 19:47:20', 'dl3z7pl4', '5457734'), + (34260, 344, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dl3z7pl4', '5461278'), + (34261, 344, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dl3z7pl4', '5469480'), + (34262, 344, 1564, 'maybe', '2022-07-25 19:02:21', '2025-12-17 19:47:21', 'dl3z7pl4', '5469890'), + (34263, 344, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dl3z7pl4', '5471073'), + (34264, 344, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dl3z7pl4', '5474663'), + (34265, 344, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dl3z7pl4', '5482022'), + (34266, 344, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dl3z7pl4', '5482793'), + (34267, 344, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dl3z7pl4', '5488912'), + (34268, 344, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dl3z7pl4', '5492192'), + (34269, 344, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dl3z7pl4', '5493139'), + (34270, 344, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dl3z7pl4', '5493200'), + (34271, 344, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dl3z7pl4', '5502188'), + (34272, 344, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dl3z7pl4', '5505059'), + (34273, 344, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dl3z7pl4', '5509055'), + (34274, 344, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dl3z7pl4', '5512862'), + (34275, 344, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dl3z7pl4', '5513985'), + (34276, 344, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dl3z7pl4', '5519981'), + (34277, 344, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dl3z7pl4', '5522550'), + (34278, 344, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dl3z7pl4', '5534683'), + (34279, 344, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dl3z7pl4', '5537735'), + (34280, 344, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dl3z7pl4', '5540859'), + (34281, 344, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dl3z7pl4', '5546619'), + (34282, 344, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dl3z7pl4', '5555245'), + (34283, 344, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dl3z7pl4', '5557747'), + (34284, 344, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dl3z7pl4', '5560255'), + (34285, 344, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dl3z7pl4', '5562906'), + (34286, 344, 1667, 'attending', '2022-09-20 01:08:56', '2025-12-17 19:47:11', 'dl3z7pl4', '5563221'), + (34287, 344, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dl3z7pl4', '5600604'), + (34288, 344, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dl3z7pl4', '5605544'), + (34289, 344, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'dl3z7pl4', '5606737'), + (34290, 344, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dl3z7pl4', '5630960'), + (34291, 344, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dl3z7pl4', '5630961'), + (34292, 344, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dl3z7pl4', '5630962'), + (34293, 344, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dl3z7pl4', '5630966'), + (34294, 344, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dl3z7pl4', '5630967'), + (34295, 344, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dl3z7pl4', '5630968'), + (34296, 344, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dl3z7pl4', '5635406'), + (34297, 344, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dl3z7pl4', '5638765'), + (34298, 344, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dl3z7pl4', '5640097'), + (34299, 344, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dl3z7pl4', '5640843'), + (34300, 344, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dl3z7pl4', '5641521'), + (34301, 344, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dl3z7pl4', '5642818'), + (34302, 344, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dl3z7pl4', '5652395'), + (34303, 344, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dl3z7pl4', '5670445'), + (34304, 344, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dl3z7pl4', '5671637'), + (34305, 344, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dl3z7pl4', '5672329'), + (34306, 344, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dl3z7pl4', '5674057'), + (34307, 344, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dl3z7pl4', '5674060'), + (34308, 344, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dl3z7pl4', '5677461'), + (34309, 344, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dl3z7pl4', '5698046'), + (34310, 344, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dl3z7pl4', '5699760'), + (34311, 344, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dl3z7pl4', '5741601'), + (34312, 344, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dl3z7pl4', '5763458'), + (34313, 344, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dl3z7pl4', '5774172'), + (34314, 344, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dl3z7pl4', '5818247'), + (34315, 344, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dl3z7pl4', '5819471'), + (34316, 344, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dl3z7pl4', '5827739'), + (34317, 344, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dl3z7pl4', '5844306'), + (34318, 344, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dl3z7pl4', '5850159'), + (34319, 344, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dl3z7pl4', '5858999'), + (34320, 344, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dl3z7pl4', '5871984'), + (34321, 344, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dl3z7pl4', '5876354'), + (34322, 344, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dl3z7pl4', '5880939'), + (34323, 344, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dl3z7pl4', '5887890'), + (34324, 344, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dl3z7pl4', '5888598'), + (34325, 344, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dl3z7pl4', '5893260'), + (34326, 344, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dl3z7pl4', '6045684'), + (34327, 345, 258, 'not_attending', '2021-05-30 13:09:41', '2025-12-17 19:47:47', 'VdxEKg5m', '3149489'), + (34328, 345, 397, 'maybe', '2021-05-21 22:42:11', '2025-12-17 19:47:47', 'VdxEKg5m', '3236452'), + (34329, 345, 647, 'maybe', '2021-05-22 21:07:51', '2025-12-17 19:47:47', 'VdxEKg5m', '3539922'), + (34330, 345, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'VdxEKg5m', '3539923'), + (34331, 345, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'VdxEKg5m', '3963335'), + (34332, 345, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'VdxEKg5m', '3974109'), + (34333, 345, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VdxEKg5m', '3975311'), + (34334, 345, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VdxEKg5m', '3975312'), + (34335, 345, 829, 'attending', '2021-05-31 01:52:38', '2025-12-17 19:47:47', 'VdxEKg5m', '3976202'), + (34336, 345, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VdxEKg5m', '3994992'), + (34337, 345, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VdxEKg5m', '4014338'), + (34338, 345, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'VdxEKg5m', '4021848'), + (34339, 345, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VdxEKg5m', '4136744'), + (34340, 345, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'VdxEKg5m', '4136937'), + (34341, 345, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'VdxEKg5m', '4136938'), + (34342, 345, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VdxEKg5m', '4136947'), + (34343, 345, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'VdxEKg5m', '4210314'), + (34344, 345, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VdxEKg5m', '4225444'), + (34345, 345, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VdxEKg5m', '4239259'), + (34346, 345, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'VdxEKg5m', '4240316'), + (34347, 345, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'VdxEKg5m', '4240317'), + (34348, 345, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'VdxEKg5m', '4240318'), + (34349, 345, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'VdxEKg5m', '4240320'), + (34350, 345, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VdxEKg5m', '4250163'), + (34351, 345, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'VdxEKg5m', '4275957'), + (34352, 345, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'VdxEKg5m', '4277819'), + (34353, 345, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'VdxEKg5m', '4301723'), + (34354, 345, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VdxEKg5m', '4302093'), + (34355, 345, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VdxEKg5m', '4304151'), + (34356, 345, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'VdxEKg5m', '4345519'), + (34357, 345, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VdxEKg5m', '4356801'), + (34358, 345, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'VdxEKg5m', '4358025'), + (34359, 345, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'VdxEKg5m', '4366186'), + (34360, 345, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'VdxEKg5m', '4366187'), + (34361, 345, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'VdxEKg5m', '4402823'), + (34362, 345, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'VdxEKg5m', '4420735'), + (34363, 345, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'VdxEKg5m', '4420738'), + (34364, 345, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'VdxEKg5m', '4420739'), + (34365, 345, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'VdxEKg5m', '4420741'), + (34366, 345, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'VdxEKg5m', '4420744'), + (34367, 345, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'VdxEKg5m', '4420747'), + (34368, 345, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'VdxEKg5m', '4420748'), + (34369, 345, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'VdxEKg5m', '4420749'), + (34370, 345, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VdxEKg5m', '4461883'), + (34371, 345, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'VdxEKg5m', '4508342'), + (34372, 345, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'VdxEKg5m', '4568602'), + (34373, 345, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'VdxEKg5m', '4572153'), + (34374, 345, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VdxEKg5m', '4585962'), + (34375, 345, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VdxEKg5m', '4596356'), + (34376, 345, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VdxEKg5m', '4598860'), + (34377, 345, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'VdxEKg5m', '4598861'), + (34378, 345, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'VdxEKg5m', '4602797'), + (34379, 345, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'VdxEKg5m', '4637896'), + (34380, 345, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'VdxEKg5m', '4642994'), + (34381, 345, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'VdxEKg5m', '4642995'), + (34382, 345, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'VdxEKg5m', '4642996'), + (34383, 345, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'VdxEKg5m', '4642997'), + (34384, 345, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'VdxEKg5m', '4645687'), + (34385, 345, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'VdxEKg5m', '4645698'), + (34386, 345, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'VdxEKg5m', '4645704'), + (34387, 345, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'VdxEKg5m', '4645705'), + (34388, 345, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VdxEKg5m', '4668385'), + (34389, 345, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VdxEKg5m', '4694407'), + (34390, 345, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'VdxEKg5m', '4736497'), + (34391, 345, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'VdxEKg5m', '4736499'), + (34392, 345, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'VdxEKg5m', '4736500'), + (34393, 345, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'VdxEKg5m', '4736503'), + (34394, 345, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'VdxEKg5m', '4736504'), + (34395, 345, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VdxEKg5m', '4746789'), + (34396, 345, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'VdxEKg5m', '4753929'), + (34397, 345, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VdxEKg5m', '5038850'), + (34398, 345, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VdxEKg5m', '5045826'), + (34399, 345, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VdxEKg5m', '5132533'), + (34400, 345, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'VdxEKg5m', '5186582'), + (34401, 345, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'VdxEKg5m', '5186583'), + (34402, 345, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'VdxEKg5m', '5186585'), + (34403, 345, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'VdxEKg5m', '5190437'), + (34404, 345, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'VdxEKg5m', '5215989'), + (34405, 345, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxEKg5m', '6045684'), + (34406, 346, 258, 'attending', '2021-06-27 19:08:03', '2025-12-17 19:47:47', 'LmpkKKkd', '3149489'), + (34407, 346, 262, 'attending', '2021-06-27 22:27:27', '2025-12-17 19:47:38', 'LmpkKKkd', '3149493'), + (34408, 346, 869, 'maybe', '2021-06-30 09:56:05', '2025-12-17 19:47:38', 'LmpkKKkd', '4136744'), + (34409, 346, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'LmpkKKkd', '4136937'), + (34410, 346, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'LmpkKKkd', '4136938'), + (34411, 346, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'LmpkKKkd', '4136947'), + (34412, 346, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpkKKkd', '4210314'), + (34413, 346, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpkKKkd', '4225444'), + (34414, 346, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpkKKkd', '4239259'), + (34415, 346, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'LmpkKKkd', '4240316'), + (34416, 346, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpkKKkd', '4250163'), + (34417, 346, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'LmpkKKkd', '4275957'), + (34418, 346, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpkKKkd', '6045684'), + (34419, 347, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Md3Q1OLA', '7113468'), + (34420, 347, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Md3Q1OLA', '7114856'), + (34421, 347, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'Md3Q1OLA', '7114951'), + (34422, 347, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'Md3Q1OLA', '7153615'), + (34423, 347, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Md3Q1OLA', '7159484'), + (34424, 347, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Md3Q1OLA', '7178446'), + (34425, 348, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dNMo8z74', '4356801'), + (34426, 348, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'dNMo8z74', '4366187'), + (34427, 348, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dNMo8z74', '4420735'), + (34428, 348, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dNMo8z74', '4420738'), + (34429, 348, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dNMo8z74', '4420739'), + (34430, 348, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dNMo8z74', '4420741'), + (34431, 348, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dNMo8z74', '4420744'), + (34432, 348, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dNMo8z74', '4420747'), + (34433, 348, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dNMo8z74', '4420748'), + (34434, 348, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dNMo8z74', '4420749'), + (34435, 348, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dNMo8z74', '4461883'), + (34436, 348, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dNMo8z74', '4508342'), + (34437, 348, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dNMo8z74', '4568602'), + (34438, 348, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dNMo8z74', '4572153'), + (34439, 348, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dNMo8z74', '4585962'), + (34440, 348, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dNMo8z74', '4596356'), + (34441, 348, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dNMo8z74', '4598860'), + (34442, 348, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dNMo8z74', '4598861'), + (34443, 348, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dNMo8z74', '4602797'), + (34444, 348, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dNMo8z74', '4637896'), + (34445, 348, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dNMo8z74', '4642994'), + (34446, 348, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dNMo8z74', '4642995'), + (34447, 348, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dNMo8z74', '4642996'), + (34448, 348, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dNMo8z74', '4642997'), + (34449, 348, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dNMo8z74', '4645687'), + (34450, 348, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dNMo8z74', '4645698'), + (34451, 348, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dNMo8z74', '4645704'), + (34452, 348, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dNMo8z74', '4645705'), + (34453, 348, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dNMo8z74', '4668385'), + (34454, 348, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dNMo8z74', '6045684'), + (34455, 349, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4210314'), + (34456, 349, 902, 'maybe', '2021-08-04 23:06:48', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4240318'), + (34457, 349, 903, 'attending', '2021-08-14 01:09:50', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4240320'), + (34458, 349, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'm6Y3XJ5d', '4302093'), + (34459, 349, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4304151'), + (34460, 349, 947, 'attending', '2021-08-03 16:55:37', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4315713'), + (34461, 349, 958, 'maybe', '2021-08-11 02:13:16', '2025-12-17 19:47:41', 'm6Y3XJ5d', '4342996'), + (34462, 349, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4345519'), + (34463, 349, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4356801'), + (34464, 349, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4358025'), + (34465, 349, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4366186'), + (34466, 349, 974, 'not_attending', '2021-08-28 23:09:11', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4366187'), + (34467, 349, 978, 'attending', '2021-08-18 16:25:51', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4378509'), + (34468, 349, 988, 'not_attending', '2021-08-27 20:31:37', '2025-12-17 19:47:42', 'm6Y3XJ5d', '4402823'), + (34469, 349, 990, 'not_attending', '2021-09-03 20:27:05', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4420735'), + (34470, 349, 991, 'not_attending', '2021-09-09 00:05:21', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4420738'), + (34471, 349, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4420739'), + (34472, 349, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4420741'), + (34473, 349, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4420744'), + (34474, 349, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4420747'), + (34475, 349, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4420748'), + (34476, 349, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4420749'), + (34477, 349, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm6Y3XJ5d', '4461883'), + (34478, 349, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm6Y3XJ5d', '4508342'), + (34479, 349, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4568602'), + (34480, 349, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4572153'), + (34481, 349, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'm6Y3XJ5d', '4585962'), + (34482, 349, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4596356'), + (34483, 349, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4598860'), + (34484, 349, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4598861'), + (34485, 349, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4602797'), + (34486, 349, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm6Y3XJ5d', '4637896'), + (34487, 349, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4642994'), + (34488, 349, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4642995'), + (34489, 349, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4642996'), + (34490, 349, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm6Y3XJ5d', '4642997'), + (34491, 349, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4645687'), + (34492, 349, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4645698'), + (34493, 349, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4645704'), + (34494, 349, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4645705'), + (34495, 349, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm6Y3XJ5d', '4668385'), + (34496, 349, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'm6Y3XJ5d', '4694407'), + (34497, 349, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4736497'), + (34498, 349, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4736499'), + (34499, 349, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4736500'), + (34500, 349, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm6Y3XJ5d', '4736503'), + (34501, 349, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm6Y3XJ5d', '4736504'), + (34502, 349, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm6Y3XJ5d', '4746789'), + (34503, 349, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm6Y3XJ5d', '4753929'), + (34504, 349, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm6Y3XJ5d', '5038850'), + (34505, 349, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm6Y3XJ5d', '5045826'), + (34506, 349, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6Y3XJ5d', '5132533'), + (34507, 349, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm6Y3XJ5d', '5186582'), + (34508, 349, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6Y3XJ5d', '5186583'), + (34509, 349, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6Y3XJ5d', '5186585'), + (34510, 349, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6Y3XJ5d', '5190437'), + (34511, 349, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6Y3XJ5d', '5215989'), + (34512, 349, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6Y3XJ5d', '6045684'), + (34513, 350, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841kKg7m', '6045684'), + (34514, 351, 2135, 'attending', '2023-07-18 17:05:00', '2025-12-17 19:46:52', 'dVD3MvrA', '6187964'), + (34515, 351, 2145, 'attending', '2023-07-13 00:19:14', '2025-12-17 19:46:52', 'dVD3MvrA', '6334903'), + (34516, 351, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVD3MvrA', '6337236'), + (34517, 351, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVD3MvrA', '6337970'), + (34518, 351, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'dVD3MvrA', '6338308'), + (34519, 351, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVD3MvrA', '6340845'), + (34520, 351, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVD3MvrA', '6341710'), + (34521, 351, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVD3MvrA', '6342044'), + (34522, 351, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVD3MvrA', '6342298'), + (34523, 351, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dVD3MvrA', '6343294'), + (34524, 351, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVD3MvrA', '6347034'), + (34525, 351, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVD3MvrA', '6347056'), + (34526, 351, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVD3MvrA', '6353830'), + (34527, 351, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVD3MvrA', '6353831'), + (34528, 351, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVD3MvrA', '6357867'), + (34529, 351, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVD3MvrA', '6358652'), + (34530, 351, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVD3MvrA', '6361709'), + (34531, 351, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVD3MvrA', '6361710'), + (34532, 351, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVD3MvrA', '6361711'), + (34533, 351, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVD3MvrA', '6361712'), + (34534, 351, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVD3MvrA', '6361713'), + (34535, 351, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVD3MvrA', '6382573'), + (34536, 351, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dVD3MvrA', '6388604'), + (34537, 351, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVD3MvrA', '6394629'), + (34538, 351, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVD3MvrA', '6394631'), + (34539, 351, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVD3MvrA', '6440863'), + (34540, 351, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVD3MvrA', '6445440'), + (34541, 351, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVD3MvrA', '6453951'), + (34542, 351, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVD3MvrA', '6461696'), + (34543, 351, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVD3MvrA', '6462129'), + (34544, 351, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVD3MvrA', '6463218'), + (34545, 351, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVD3MvrA', '6472181'), + (34546, 351, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVD3MvrA', '6482693'), + (34547, 351, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVD3MvrA', '6484200'), + (34548, 351, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVD3MvrA', '6484680'), + (34549, 351, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVD3MvrA', '6507741'), + (34550, 351, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVD3MvrA', '6514659'), + (34551, 351, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVD3MvrA', '6514660'), + (34552, 351, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVD3MvrA', '6519103'), + (34553, 351, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVD3MvrA', '6535681'), + (34554, 351, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVD3MvrA', '6584747'), + (34555, 351, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVD3MvrA', '6587097'), + (34556, 351, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVD3MvrA', '6609022'), + (34557, 351, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVD3MvrA', '6632757'), + (34558, 351, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVD3MvrA', '6644187'), + (34559, 351, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVD3MvrA', '6648951'), + (34560, 351, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVD3MvrA', '6648952'), + (34561, 351, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVD3MvrA', '6655401'), + (34562, 351, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVD3MvrA', '6661585'), + (34563, 351, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVD3MvrA', '6661588'), + (34564, 351, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVD3MvrA', '6661589'), + (34565, 351, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVD3MvrA', '6699906'), + (34566, 351, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVD3MvrA', '6701109'), + (34567, 351, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVD3MvrA', '6705219'), + (34568, 351, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVD3MvrA', '6710153'), + (34569, 351, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVD3MvrA', '6711552'), + (34570, 351, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVD3MvrA', '6711553'), + (34571, 351, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVD3MvrA', '6722688'), + (34572, 351, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVD3MvrA', '6730620'), + (34573, 351, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVD3MvrA', '6730642'), + (34574, 352, 853, 'maybe', '2021-08-11 22:58:54', '2025-12-17 19:47:41', 'dlO2elB4', '4015725'), + (34575, 352, 884, 'maybe', '2021-08-15 03:33:50', '2025-12-17 19:47:42', 'dlO2elB4', '4210314'), + (34576, 352, 891, 'attending', '2021-07-30 14:25:47', '2025-12-17 19:47:38', 'dlO2elB4', '4229417'), + (34577, 352, 901, 'attending', '2021-07-30 23:16:46', '2025-12-17 19:47:40', 'dlO2elB4', '4240317'), + (34578, 352, 902, 'attending', '2021-08-02 03:13:34', '2025-12-17 19:47:41', 'dlO2elB4', '4240318'), + (34579, 352, 903, 'attending', '2021-08-08 03:15:33', '2025-12-17 19:47:42', 'dlO2elB4', '4240320'), + (34580, 352, 926, 'attending', '2021-08-17 22:35:35', '2025-12-17 19:47:42', 'dlO2elB4', '4297211'), + (34581, 352, 934, 'attending', '2021-08-04 01:53:32', '2025-12-17 19:47:40', 'dlO2elB4', '4302093'), + (34582, 352, 935, 'attending', '2021-08-11 22:29:50', '2025-12-17 19:47:41', 'dlO2elB4', '4304151'), + (34583, 352, 939, 'not_attending', '2021-08-01 04:42:28', '2025-12-17 19:47:40', 'dlO2elB4', '4308354'), + (34584, 352, 940, 'not_attending', '2021-07-30 16:28:50', '2025-12-17 19:47:40', 'dlO2elB4', '4309049'), + (34585, 352, 943, 'maybe', '2021-08-08 03:14:01', '2025-12-17 19:47:41', 'dlO2elB4', '4310979'), + (34586, 352, 944, 'attending', '2021-08-08 19:38:39', '2025-12-17 19:47:41', 'dlO2elB4', '4310980'), + (34587, 352, 946, 'attending', '2021-07-31 03:44:32', '2025-12-17 19:47:40', 'dlO2elB4', '4314835'), + (34588, 352, 947, 'maybe', '2021-08-02 03:13:12', '2025-12-17 19:47:41', 'dlO2elB4', '4315713'), + (34589, 352, 952, 'attending', '2021-07-31 03:45:18', '2025-12-17 19:47:41', 'dlO2elB4', '4318286'), + (34590, 352, 953, 'attending', '2021-07-30 20:34:30', '2025-12-17 19:47:40', 'dlO2elB4', '4324152'), + (34591, 352, 955, 'attending', '2021-08-08 03:14:23', '2025-12-17 19:47:41', 'dlO2elB4', '4331588'), + (34592, 352, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dlO2elB4', '4345519'), + (34593, 352, 963, 'maybe', '2021-08-22 22:51:55', '2025-12-17 19:47:42', 'dlO2elB4', '4353159'), + (34594, 352, 964, 'maybe', '2021-08-15 03:34:48', '2025-12-17 19:47:42', 'dlO2elB4', '4353160'), + (34595, 352, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dlO2elB4', '4356801'), + (34596, 352, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'dlO2elB4', '4358025'), + (34597, 352, 973, 'attending', '2021-08-16 22:59:29', '2025-12-17 19:47:42', 'dlO2elB4', '4366186'), + (34598, 352, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dlO2elB4', '4366187'), + (34599, 352, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'dlO2elB4', '4402823'), + (34600, 352, 990, 'not_attending', '2021-09-04 23:01:53', '2025-12-17 19:47:43', 'dlO2elB4', '4420735'), + (34601, 352, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dlO2elB4', '4420738'), + (34602, 352, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dlO2elB4', '4420739'), + (34603, 352, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dlO2elB4', '4420741'), + (34604, 352, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dlO2elB4', '4420744'), + (34605, 352, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dlO2elB4', '4420747'), + (34606, 352, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dlO2elB4', '4420748'), + (34607, 352, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dlO2elB4', '4420749'), + (34608, 352, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dlO2elB4', '4461883'), + (34609, 352, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlO2elB4', '4508342'), + (34610, 352, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dlO2elB4', '4568602'), + (34611, 352, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dlO2elB4', '6045684'), + (34612, 353, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'mpOg17ld', '5534683'), + (34613, 353, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'mpOg17ld', '5537735'), + (34614, 353, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mpOg17ld', '5540859'), + (34615, 353, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpOg17ld', '5560255'), + (34616, 353, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mpOg17ld', '5562906'), + (34617, 353, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mpOg17ld', '5600604'), + (34618, 353, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpOg17ld', '5605544'), + (34619, 353, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpOg17ld', '5635406'), + (34620, 353, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpOg17ld', '5638765'), + (34621, 353, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mpOg17ld', '5640843'), + (34622, 353, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpOg17ld', '6045684'), + (34623, 354, 1515, 'maybe', '2022-08-06 08:20:36', '2025-12-17 19:47:21', 'pmbOPkXA', '5441128'), + (34624, 354, 1516, 'not_attending', '2022-08-20 20:36:26', '2025-12-17 19:47:23', 'pmbOPkXA', '5441129'), + (34625, 354, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'pmbOPkXA', '5461278'), + (34626, 354, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'pmbOPkXA', '5469480'), + (34627, 354, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'pmbOPkXA', '5471073'), + (34628, 354, 1567, 'attending', '2022-07-31 20:25:22', '2025-12-17 19:47:21', 'pmbOPkXA', '5477629'), + (34629, 354, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'pmbOPkXA', '5482022'), + (34630, 354, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'pmbOPkXA', '5482793'), + (34631, 354, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'pmbOPkXA', '5488912'), + (34632, 354, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'pmbOPkXA', '5492192'), + (34633, 354, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'pmbOPkXA', '5493139'), + (34634, 354, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'pmbOPkXA', '5493200'), + (34635, 354, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'pmbOPkXA', '5502188'), + (34636, 354, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'pmbOPkXA', '5512862'), + (34637, 354, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'pmbOPkXA', '5513985'), + (34638, 354, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'pmbOPkXA', '6045684'), + (34639, 354, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'pmbOPkXA', '7904777'), + (34640, 354, 3133, 'attending', '2025-05-25 02:41:36', '2025-12-17 19:46:14', 'pmbOPkXA', '8368030'), + (34641, 354, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'pmbOPkXA', '8388462'), + (34642, 354, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'pmbOPkXA', '8400273'), + (34643, 354, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'pmbOPkXA', '8400275'), + (34644, 354, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'pmbOPkXA', '8400276'), + (34645, 354, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'pmbOPkXA', '8404977'), + (34646, 354, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'pmbOPkXA', '8430783'), + (34647, 354, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'pmbOPkXA', '8430784'), + (34648, 354, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'pmbOPkXA', '8430799'), + (34649, 354, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'pmbOPkXA', '8430800'), + (34650, 354, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'pmbOPkXA', '8430801'), + (34651, 354, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'pmbOPkXA', '8438709'), + (34652, 354, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'pmbOPkXA', '8457738'), + (34653, 354, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'pmbOPkXA', '8459566'), + (34654, 354, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'pmbOPkXA', '8459567'), + (34655, 354, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'pmbOPkXA', '8461032'), + (34656, 354, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'pmbOPkXA', '8477877'), + (34657, 354, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'pmbOPkXA', '8485688'), + (34658, 354, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'pmbOPkXA', '8490587'), + (34659, 354, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'pmbOPkXA', '8493552'), + (34660, 354, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'pmbOPkXA', '8493553'), + (34661, 354, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'pmbOPkXA', '8493554'), + (34662, 354, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'pmbOPkXA', '8493555'), + (34663, 354, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'pmbOPkXA', '8493556'), + (34664, 354, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'pmbOPkXA', '8493557'), + (34665, 354, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'pmbOPkXA', '8493558'), + (34666, 354, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'pmbOPkXA', '8493559'), + (34667, 354, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'pmbOPkXA', '8493560'), + (34668, 354, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'pmbOPkXA', '8493561'), + (34669, 354, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'pmbOPkXA', '8493572'), + (34670, 354, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'pmbOPkXA', '8540725'), + (34671, 354, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'pmbOPkXA', '8555421'), + (34672, 355, 2410, 'not_attending', '2024-02-09 16:18:07', '2025-12-17 19:46:41', 'd5j5YLqm', '6699911'), + (34673, 355, 2411, 'maybe', '2024-02-09 16:18:15', '2025-12-17 19:46:42', 'd5j5YLqm', '6699913'), + (34674, 355, 2413, 'maybe', '2024-02-09 16:18:24', '2025-12-17 19:46:42', 'd5j5YLqm', '6700719'), + (34675, 355, 2444, 'not_attending', '2024-02-09 16:17:52', '2025-12-17 19:46:41', 'd5j5YLqm', '6734367'), + (34676, 355, 2445, 'maybe', '2024-02-09 16:18:14', '2025-12-17 19:46:41', 'd5j5YLqm', '6734368'), + (34677, 355, 2450, 'not_attending', '2024-02-09 16:18:10', '2025-12-17 19:46:41', 'd5j5YLqm', '6738807'), + (34678, 355, 2452, 'not_attending', '2024-02-09 16:18:11', '2025-12-17 19:46:41', 'd5j5YLqm', '6740361'), + (34679, 355, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd5j5YLqm', '6740364'), + (34680, 355, 2456, 'not_attending', '2024-02-09 16:17:48', '2025-12-17 19:46:41', 'd5j5YLqm', '6742202'), + (34681, 355, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd5j5YLqm', '6743829'), + (34682, 355, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd5j5YLqm', '7030380'), + (34683, 355, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd5j5YLqm', '7033677'), + (34684, 355, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd5j5YLqm', '7035415'), + (34685, 355, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd5j5YLqm', '7044715'), + (34686, 355, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd5j5YLqm', '7050318'), + (34687, 355, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd5j5YLqm', '7050319'), + (34688, 355, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd5j5YLqm', '7050322'), + (34689, 355, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd5j5YLqm', '7057804'), + (34690, 355, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd5j5YLqm', '7072824'), + (34691, 355, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd5j5YLqm', '7074348'), + (34692, 355, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd5j5YLqm', '7089267'), + (34693, 355, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd5j5YLqm', '7098747'), + (34694, 355, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd5j5YLqm', '7113468'), + (34695, 355, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd5j5YLqm', '7114856'), + (34696, 355, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd5j5YLqm', '7114951'), + (34697, 355, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd5j5YLqm', '7114955'), + (34698, 355, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd5j5YLqm', '7114956'), + (34699, 355, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd5j5YLqm', '7153615'), + (34700, 355, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd5j5YLqm', '7159484'), + (34701, 355, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd5j5YLqm', '7178446'), + (34702, 356, 1274, 'not_attending', '2022-03-30 12:31:48', '2025-12-17 19:47:26', 'QdJXvVnA', '5186585'), + (34703, 356, 1281, 'not_attending', '2022-04-09 22:15:36', '2025-12-17 19:47:27', 'QdJXvVnA', '5190437'), + (34704, 356, 1284, 'not_attending', '2022-04-21 18:08:36', '2025-12-17 19:47:27', 'QdJXvVnA', '5195095'), + (34705, 356, 1289, 'attending', '2022-03-31 22:14:37', '2025-12-17 19:47:25', 'QdJXvVnA', '5200190'), + (34706, 356, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'QdJXvVnA', '5215989'), + (34707, 356, 1307, 'not_attending', '2022-04-05 16:11:33', '2025-12-17 19:47:27', 'QdJXvVnA', '5223686'), + (34708, 356, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'QdJXvVnA', '5227432'), + (34709, 356, 1346, 'not_attending', '2022-04-21 17:58:17', '2025-12-17 19:47:27', 'QdJXvVnA', '5247467'), + (34710, 356, 1354, 'not_attending', '2022-04-21 17:58:10', '2025-12-17 19:47:27', 'QdJXvVnA', '5252569'), + (34711, 356, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'QdJXvVnA', '5260800'), + (34712, 356, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'QdJXvVnA', '5269930'), + (34713, 356, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'QdJXvVnA', '5271448'), + (34714, 356, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'QdJXvVnA', '5271449'), + (34715, 356, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'QdJXvVnA', '5276469'), + (34716, 356, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'QdJXvVnA', '5277078'), + (34717, 356, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'QdJXvVnA', '5278159'), + (34718, 356, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'QdJXvVnA', '5363695'), + (34719, 356, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'QdJXvVnA', '5365960'), + (34720, 356, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'QdJXvVnA', '5368973'), + (34721, 356, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'QdJXvVnA', '5378247'), + (34722, 356, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'QdJXvVnA', '5389605'), + (34723, 356, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'QdJXvVnA', '5397265'), + (34724, 356, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'QdJXvVnA', '5403967'), + (34725, 356, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'QdJXvVnA', '5404786'), + (34726, 356, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'QdJXvVnA', '5405203'), + (34727, 356, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'QdJXvVnA', '5411699'), + (34728, 356, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'QdJXvVnA', '5412550'), + (34729, 356, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'QdJXvVnA', '5415046'), + (34730, 356, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'QdJXvVnA', '5422086'), + (34731, 356, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'QdJXvVnA', '5422406'), + (34732, 356, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'QdJXvVnA', '5424565'), + (34733, 356, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'QdJXvVnA', '5426882'), + (34734, 356, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'QdJXvVnA', '5427083'), + (34735, 356, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'QdJXvVnA', '5441125'), + (34736, 356, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'QdJXvVnA', '5441126'), + (34737, 356, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'QdJXvVnA', '5441128'), + (34738, 356, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'QdJXvVnA', '5441131'), + (34739, 356, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'QdJXvVnA', '5441132'), + (34740, 356, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'QdJXvVnA', '5446643'), + (34741, 356, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'QdJXvVnA', '5453325'), + (34742, 356, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'QdJXvVnA', '5454516'), + (34743, 356, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'QdJXvVnA', '5454605'), + (34744, 356, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'QdJXvVnA', '5455037'), + (34745, 356, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'QdJXvVnA', '5461278'), + (34746, 356, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'QdJXvVnA', '5469480'), + (34747, 356, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'QdJXvVnA', '5471073'), + (34748, 356, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'QdJXvVnA', '5474663'), + (34749, 356, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'QdJXvVnA', '5482022'), + (34750, 356, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'QdJXvVnA', '5482793'), + (34751, 356, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'QdJXvVnA', '5488912'), + (34752, 356, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'QdJXvVnA', '5492192'), + (34753, 356, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'QdJXvVnA', '5493139'), + (34754, 356, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'QdJXvVnA', '5493200'), + (34755, 356, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'QdJXvVnA', '5502188'), + (34756, 356, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'QdJXvVnA', '5505059'), + (34757, 356, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'QdJXvVnA', '5509055'), + (34758, 356, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'QdJXvVnA', '5512862'), + (34759, 356, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'QdJXvVnA', '5513985'), + (34760, 356, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'QdJXvVnA', '5519981'), + (34761, 356, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'QdJXvVnA', '5522550'), + (34762, 356, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'QdJXvVnA', '5534683'), + (34763, 356, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'QdJXvVnA', '5537735'), + (34764, 356, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'QdJXvVnA', '5540859'), + (34765, 356, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'QdJXvVnA', '5546619'), + (34766, 356, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'QdJXvVnA', '5555245'), + (34767, 356, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'QdJXvVnA', '5557747'), + (34768, 356, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'QdJXvVnA', '5560255'), + (34769, 356, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'QdJXvVnA', '5562906'), + (34770, 356, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'QdJXvVnA', '5600604'), + (34771, 356, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'QdJXvVnA', '5605544'), + (34772, 356, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'QdJXvVnA', '5606737'), + (34773, 356, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'QdJXvVnA', '5635406'), + (34774, 356, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'QdJXvVnA', '5638765'), + (34775, 356, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'QdJXvVnA', '5640843'), + (34776, 356, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'QdJXvVnA', '5641521'), + (34777, 356, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJXvVnA', '6045684'), + (34778, 357, 1086, 'not_attending', '2021-10-14 01:39:47', '2025-12-17 19:47:35', 'AXB8j9vd', '4568602'), + (34779, 357, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'AXB8j9vd', '4572153'), + (34780, 357, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'AXB8j9vd', '4585962'), + (34781, 357, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'AXB8j9vd', '4596356'), + (34782, 357, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AXB8j9vd', '4598860'), + (34783, 357, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AXB8j9vd', '4598861'), + (34784, 357, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'AXB8j9vd', '4602797'), + (34785, 357, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AXB8j9vd', '4637896'), + (34786, 357, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AXB8j9vd', '4642994'), + (34787, 357, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AXB8j9vd', '4642995'), + (34788, 357, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AXB8j9vd', '4642996'), + (34789, 357, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AXB8j9vd', '4642997'), + (34790, 357, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AXB8j9vd', '4645687'), + (34791, 357, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AXB8j9vd', '4645698'), + (34792, 357, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AXB8j9vd', '4645704'), + (34793, 357, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AXB8j9vd', '4645705'), + (34794, 357, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AXB8j9vd', '4668385'), + (34795, 357, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'AXB8j9vd', '4694407'), + (34796, 357, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'AXB8j9vd', '4736497'), + (34797, 357, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'AXB8j9vd', '4736499'), + (34798, 357, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'AXB8j9vd', '4736500'), + (34799, 357, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'AXB8j9vd', '4736503'), + (34800, 357, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'AXB8j9vd', '4736504'), + (34801, 357, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AXB8j9vd', '4746789'), + (34802, 357, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AXB8j9vd', '4753929'), + (34803, 357, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'AXB8j9vd', '5038850'), + (34804, 357, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AXB8j9vd', '5045826'), + (34805, 357, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'AXB8j9vd', '5132533'), + (34806, 357, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'AXB8j9vd', '5186582'), + (34807, 357, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'AXB8j9vd', '5186583'), + (34808, 357, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'AXB8j9vd', '5186585'), + (34809, 357, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'AXB8j9vd', '5190437'), + (34810, 357, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AXB8j9vd', '5195095'), + (34811, 357, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AXB8j9vd', '5215989'), + (34812, 357, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AXB8j9vd', '5223686'), + (34813, 357, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AXB8j9vd', '5247467'), + (34814, 357, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AXB8j9vd', '5260800'), + (34815, 357, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AXB8j9vd', '5269930'), + (34816, 357, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AXB8j9vd', '5271448'), + (34817, 357, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'AXB8j9vd', '5271449'), + (34818, 357, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AXB8j9vd', '5278159'), + (34819, 357, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AXB8j9vd', '5363695'), + (34820, 357, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AXB8j9vd', '5365960'), + (34821, 357, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AXB8j9vd', '5378247'), + (34822, 357, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AXB8j9vd', '5389605'), + (34823, 357, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AXB8j9vd', '5397265'), + (34824, 357, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AXB8j9vd', '5404786'), + (34825, 357, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AXB8j9vd', '5405203'), + (34826, 357, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AXB8j9vd', '5412550'), + (34827, 357, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AXB8j9vd', '5415046'), + (34828, 357, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AXB8j9vd', '5422086'), + (34829, 357, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AXB8j9vd', '5422406'), + (34830, 357, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AXB8j9vd', '5424565'), + (34831, 357, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AXB8j9vd', '5426882'), + (34832, 357, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AXB8j9vd', '5441125'), + (34833, 357, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AXB8j9vd', '5441126'), + (34834, 357, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AXB8j9vd', '5441128'), + (34835, 357, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AXB8j9vd', '5441131'), + (34836, 357, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AXB8j9vd', '5441132'), + (34837, 357, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AXB8j9vd', '5453325'), + (34838, 357, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AXB8j9vd', '5454516'), + (34839, 357, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AXB8j9vd', '5454605'), + (34840, 357, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AXB8j9vd', '5455037'), + (34841, 357, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AXB8j9vd', '5461278'), + (34842, 357, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AXB8j9vd', '5469480'), + (34843, 357, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AXB8j9vd', '5474663'), + (34844, 357, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AXB8j9vd', '5482022'), + (34845, 357, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AXB8j9vd', '5488912'), + (34846, 357, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AXB8j9vd', '5492192'), + (34847, 357, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AXB8j9vd', '5493139'), + (34848, 357, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AXB8j9vd', '5493200'), + (34849, 357, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AXB8j9vd', '5502188'), + (34850, 357, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AXB8j9vd', '5505059'), + (34851, 357, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AXB8j9vd', '5509055'), + (34852, 357, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AXB8j9vd', '5512862'), + (34853, 357, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AXB8j9vd', '5513985'), + (34854, 357, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'AXB8j9vd', '5519981'), + (34855, 357, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AXB8j9vd', '5522550'), + (34856, 357, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AXB8j9vd', '5534683'), + (34857, 357, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AXB8j9vd', '5537735'), + (34858, 357, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AXB8j9vd', '5540859'), + (34859, 357, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AXB8j9vd', '5546619'), + (34860, 357, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AXB8j9vd', '5557747'), + (34861, 357, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AXB8j9vd', '5560255'), + (34862, 357, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AXB8j9vd', '5562906'), + (34863, 357, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AXB8j9vd', '5600604'), + (34864, 357, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AXB8j9vd', '5605544'), + (34865, 357, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'AXB8j9vd', '5606737'), + (34866, 357, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AXB8j9vd', '5630960'), + (34867, 357, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AXB8j9vd', '5630961'), + (34868, 357, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AXB8j9vd', '5630962'), + (34869, 357, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AXB8j9vd', '5630966'), + (34870, 357, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AXB8j9vd', '5630967'), + (34871, 357, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AXB8j9vd', '5630968'), + (34872, 357, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AXB8j9vd', '5635406'), + (34873, 357, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AXB8j9vd', '5638765'), + (34874, 357, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AXB8j9vd', '5640097'), + (34875, 357, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AXB8j9vd', '5640843'), + (34876, 357, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AXB8j9vd', '5641521'), + (34877, 357, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AXB8j9vd', '5642818'), + (34878, 357, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AXB8j9vd', '5652395'), + (34879, 357, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AXB8j9vd', '5670445'), + (34880, 357, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AXB8j9vd', '5671637'), + (34881, 357, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AXB8j9vd', '5672329'), + (34882, 357, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AXB8j9vd', '5674057'), + (34883, 357, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AXB8j9vd', '5674060'), + (34884, 357, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AXB8j9vd', '5677461'), + (34885, 357, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AXB8j9vd', '5698046'), + (34886, 357, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AXB8j9vd', '5699760'), + (34887, 357, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AXB8j9vd', '5741601'), + (34888, 357, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AXB8j9vd', '5763458'), + (34889, 357, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AXB8j9vd', '5774172'), + (34890, 357, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'AXB8j9vd', '5818247'), + (34891, 357, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AXB8j9vd', '5819471'), + (34892, 357, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AXB8j9vd', '5827739'), + (34893, 357, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AXB8j9vd', '5844306'), + (34894, 357, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AXB8j9vd', '5850159'), + (34895, 357, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AXB8j9vd', '5858999'), + (34896, 357, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AXB8j9vd', '5871984'), + (34897, 357, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AXB8j9vd', '5876354'), + (34898, 357, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'AXB8j9vd', '5880939'), + (34899, 357, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AXB8j9vd', '5880940'), + (34900, 357, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AXB8j9vd', '5880942'), + (34901, 357, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AXB8j9vd', '5880943'), + (34902, 357, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AXB8j9vd', '5887890'), + (34903, 357, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AXB8j9vd', '5888598'), + (34904, 357, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AXB8j9vd', '5893260'), + (34905, 357, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AXB8j9vd', '5899826'), + (34906, 357, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AXB8j9vd', '5900199'), + (34907, 357, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AXB8j9vd', '5900200'), + (34908, 357, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AXB8j9vd', '5900202'), + (34909, 357, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AXB8j9vd', '5900203'), + (34910, 357, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AXB8j9vd', '5901108'), + (34911, 357, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AXB8j9vd', '5901126'), + (34912, 357, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AXB8j9vd', '5909655'), + (34913, 357, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AXB8j9vd', '5910522'), + (34914, 357, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AXB8j9vd', '5910526'), + (34915, 357, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AXB8j9vd', '5910528'), + (34916, 357, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AXB8j9vd', '5916219'), + (34917, 357, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AXB8j9vd', '5936234'), + (34918, 357, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AXB8j9vd', '5958351'), + (34919, 357, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AXB8j9vd', '5959751'), + (34920, 357, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AXB8j9vd', '5959755'), + (34921, 357, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AXB8j9vd', '5960055'), + (34922, 357, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AXB8j9vd', '5961684'), + (34923, 357, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'AXB8j9vd', '5962132'), + (34924, 357, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AXB8j9vd', '5962133'), + (34925, 357, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AXB8j9vd', '5962134'), + (34926, 357, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AXB8j9vd', '5962317'), + (34927, 357, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AXB8j9vd', '5962318'), + (34928, 357, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AXB8j9vd', '5965933'), + (34929, 357, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AXB8j9vd', '5967014'), + (34930, 357, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AXB8j9vd', '5972815'), + (34931, 357, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AXB8j9vd', '5974016'), + (34932, 357, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AXB8j9vd', '5981515'), + (34933, 357, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AXB8j9vd', '5993516'), + (34934, 357, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AXB8j9vd', '5998939'), + (34935, 357, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AXB8j9vd', '6028191'), + (34936, 357, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AXB8j9vd', '6040066'), + (34937, 357, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AXB8j9vd', '6042717'), + (34938, 357, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AXB8j9vd', '6044838'), + (34939, 357, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AXB8j9vd', '6044839'), + (34940, 357, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXB8j9vd', '6045684'), + (34941, 357, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AXB8j9vd', '6050104'), + (34942, 357, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AXB8j9vd', '6053195'), + (34943, 357, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AXB8j9vd', '6053198'), + (34944, 357, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AXB8j9vd', '6056085'), + (34945, 357, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AXB8j9vd', '6056916'), + (34946, 357, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AXB8j9vd', '6059290'), + (34947, 357, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AXB8j9vd', '6060328'), + (34948, 357, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AXB8j9vd', '6061037'), + (34949, 357, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AXB8j9vd', '6061039'), + (34950, 357, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AXB8j9vd', '6067245'), + (34951, 357, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AXB8j9vd', '6068094'), + (34952, 357, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AXB8j9vd', '6068252'), + (34953, 357, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AXB8j9vd', '6068253'), + (34954, 357, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AXB8j9vd', '6068254'), + (34955, 357, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'AXB8j9vd', '6068280'), + (34956, 357, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AXB8j9vd', '6069093'), + (34957, 357, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'AXB8j9vd', '6072528'), + (34958, 357, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AXB8j9vd', '6079840'), + (34959, 357, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AXB8j9vd', '6083398'), + (34960, 357, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'AXB8j9vd', '6093504'), + (34961, 357, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AXB8j9vd', '6097414'), + (34962, 357, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AXB8j9vd', '6097442'), + (34963, 357, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AXB8j9vd', '6097684'), + (34964, 357, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AXB8j9vd', '6098762'), + (34965, 357, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'AXB8j9vd', '6101361'), + (34966, 357, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AXB8j9vd', '6101362'), + (34967, 357, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AXB8j9vd', '6107314'), + (34968, 357, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'AXB8j9vd', '6120034'), + (34969, 357, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AXB8j9vd', '6136733'), + (34970, 357, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AXB8j9vd', '6137989'), + (34971, 357, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AXB8j9vd', '6150864'), + (34972, 357, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'AXB8j9vd', '6155491'), + (34973, 357, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'AXB8j9vd', '6164417'), + (34974, 357, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AXB8j9vd', '6166388'), + (34975, 357, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'AXB8j9vd', '6176439'), + (34976, 357, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AXB8j9vd', '6182410'), + (34977, 357, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'AXB8j9vd', '6185812'), + (34978, 357, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AXB8j9vd', '6187651'), + (34979, 357, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AXB8j9vd', '6187963'), + (34980, 357, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AXB8j9vd', '6187964'), + (34981, 357, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AXB8j9vd', '6187966'), + (34982, 357, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AXB8j9vd', '6187967'), + (34983, 357, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AXB8j9vd', '6187969'), + (34984, 357, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AXB8j9vd', '6334878'), + (34985, 357, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AXB8j9vd', '6337236'), + (34986, 357, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AXB8j9vd', '6337970'), + (34987, 357, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AXB8j9vd', '6338308'), + (34988, 357, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AXB8j9vd', '6341710'), + (34989, 357, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AXB8j9vd', '6342044'), + (34990, 357, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AXB8j9vd', '6342298'), + (34991, 357, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AXB8j9vd', '6343294'), + (34992, 357, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AXB8j9vd', '6347034'), + (34993, 357, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AXB8j9vd', '6347056'), + (34994, 357, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AXB8j9vd', '6353830'), + (34995, 357, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AXB8j9vd', '6353831'), + (34996, 357, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AXB8j9vd', '6357867'), + (34997, 357, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AXB8j9vd', '6358652'), + (34998, 357, 2196, 'maybe', '2023-09-07 03:09:17', '2025-12-17 19:46:56', 'AXB8j9vd', '6359398'), + (34999, 357, 2197, 'attending', '2023-09-15 22:16:48', '2025-12-17 19:46:44', 'AXB8j9vd', '6359399'), + (35000, 357, 2198, 'attending', '2023-09-22 22:46:46', '2025-12-17 19:46:45', 'AXB8j9vd', '6359400'), + (35001, 357, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AXB8j9vd', '6361709'), + (35002, 357, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AXB8j9vd', '6361710'), + (35003, 357, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AXB8j9vd', '6361711'), + (35004, 357, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AXB8j9vd', '6361712'), + (35005, 357, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AXB8j9vd', '6361713'), + (35006, 357, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AXB8j9vd', '6382573'), + (35007, 357, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'AXB8j9vd', '6388604'), + (35008, 357, 2247, 'attending', '2023-09-06 20:36:31', '2025-12-17 19:46:56', 'AXB8j9vd', '6394628'), + (35009, 357, 2248, 'attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AXB8j9vd', '6394629'), + (35010, 357, 2249, 'attending', '2023-09-20 21:51:25', '2025-12-17 19:46:45', 'AXB8j9vd', '6394630'), + (35011, 357, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AXB8j9vd', '6394631'), + (35012, 357, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AXB8j9vd', '6440863'), + (35013, 357, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AXB8j9vd', '6445440'), + (35014, 357, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AXB8j9vd', '6453951'), + (35015, 357, 2284, 'maybe', '2023-10-13 01:33:29', '2025-12-17 19:46:46', 'AXB8j9vd', '6460928'), + (35016, 357, 2285, 'attending', '2023-10-27 21:57:00', '2025-12-17 19:46:47', 'AXB8j9vd', '6460929'), + (35017, 357, 2286, 'attending', '2023-12-01 03:11:57', '2025-12-17 19:46:48', 'AXB8j9vd', '6460930'), + (35018, 357, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AXB8j9vd', '6461696'), + (35019, 357, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AXB8j9vd', '6462129'), + (35020, 357, 2290, 'maybe', '2023-10-18 22:37:44', '2025-12-17 19:46:46', 'AXB8j9vd', '6462214'), + (35021, 357, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AXB8j9vd', '6463218'), + (35022, 357, 2299, 'maybe', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AXB8j9vd', '6472181'), + (35023, 357, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AXB8j9vd', '6482693'), + (35024, 357, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'AXB8j9vd', '6484200'), + (35025, 357, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AXB8j9vd', '6484680'), + (35026, 357, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AXB8j9vd', '6507741'), + (35027, 357, 2322, 'not_attending', '2023-11-14 00:05:00', '2025-12-17 19:46:48', 'AXB8j9vd', '6514659'), + (35028, 357, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AXB8j9vd', '6514660'), + (35029, 357, 2324, 'attending', '2023-12-09 23:08:46', '2025-12-17 19:46:49', 'AXB8j9vd', '6514662'), + (35030, 357, 2327, 'maybe', '2023-11-02 23:27:38', '2025-12-17 19:46:47', 'AXB8j9vd', '6515494'), + (35031, 357, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AXB8j9vd', '6519103'), + (35032, 357, 2335, 'attending', '2023-11-10 23:38:00', '2025-12-17 19:46:47', 'AXB8j9vd', '6534890'), + (35033, 357, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AXB8j9vd', '6535681'), + (35034, 357, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AXB8j9vd', '6584747'), + (35035, 357, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AXB8j9vd', '6587097'), + (35036, 357, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AXB8j9vd', '6609022'), + (35037, 357, 2364, 'attending', '2023-12-08 23:21:05', '2025-12-17 19:46:49', 'AXB8j9vd', '6613011'), + (35038, 357, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AXB8j9vd', '6632757'), + (35039, 357, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AXB8j9vd', '6644187'), + (35040, 357, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AXB8j9vd', '6648951'), + (35041, 357, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AXB8j9vd', '6648952'), + (35042, 357, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AXB8j9vd', '6655401'), + (35043, 357, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AXB8j9vd', '6661585'), + (35044, 357, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AXB8j9vd', '6661588'), + (35045, 357, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AXB8j9vd', '6661589'), + (35046, 357, 2406, 'attending', '2024-01-19 23:24:10', '2025-12-17 19:46:40', 'AXB8j9vd', '6692344'), + (35047, 357, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AXB8j9vd', '6699906'), + (35048, 357, 2409, 'attending', '2024-02-04 00:50:11', '2025-12-17 19:46:41', 'AXB8j9vd', '6699909'), + (35049, 357, 2410, 'attending', '2024-02-11 00:48:42', '2025-12-17 19:46:41', 'AXB8j9vd', '6699911'), + (35050, 357, 2411, 'maybe', '2024-02-11 03:17:54', '2025-12-17 19:46:42', 'AXB8j9vd', '6699913'), + (35051, 357, 2412, 'not_attending', '2024-02-11 03:18:05', '2025-12-17 19:46:43', 'AXB8j9vd', '6700717'), + (35052, 357, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AXB8j9vd', '6701109'), + (35053, 357, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AXB8j9vd', '6705219'), + (35054, 357, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AXB8j9vd', '6710153'), + (35055, 357, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AXB8j9vd', '6711552'), + (35056, 357, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AXB8j9vd', '6711553'), + (35057, 357, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AXB8j9vd', '6722688'), + (35058, 357, 2438, 'attending', '2024-02-08 00:47:55', '2025-12-17 19:46:41', 'AXB8j9vd', '6730201'), + (35059, 357, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AXB8j9vd', '6730620'), + (35060, 357, 2444, 'attending', '2024-02-09 21:32:31', '2025-12-17 19:46:41', 'AXB8j9vd', '6734367'), + (35061, 357, 2446, 'maybe', '2024-03-02 00:05:10', '2025-12-17 19:46:43', 'AXB8j9vd', '6734369'), + (35062, 357, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AXB8j9vd', '6740364'), + (35063, 357, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AXB8j9vd', '6743829'), + (35064, 357, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AXB8j9vd', '7030380'), + (35065, 357, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AXB8j9vd', '7033677'), + (35066, 357, 2474, 'maybe', '2024-02-24 23:51:00', '2025-12-17 19:46:43', 'AXB8j9vd', '7035415'), + (35067, 357, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AXB8j9vd', '7044715'), + (35068, 357, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AXB8j9vd', '7050318'), + (35069, 357, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AXB8j9vd', '7050319'), + (35070, 357, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AXB8j9vd', '7050322'), + (35071, 357, 2498, 'maybe', '2024-03-20 22:00:15', '2025-12-17 19:46:33', 'AXB8j9vd', '7057662'), + (35072, 357, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AXB8j9vd', '7057804'), + (35073, 357, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AXB8j9vd', '7072824'), + (35074, 357, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AXB8j9vd', '7074348'), + (35075, 357, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AXB8j9vd', '7074364'), + (35076, 357, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AXB8j9vd', '7089267'), + (35077, 357, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AXB8j9vd', '7098747'), + (35078, 357, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AXB8j9vd', '7113468'), + (35079, 357, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AXB8j9vd', '7114856'), + (35080, 357, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AXB8j9vd', '7114951'), + (35081, 357, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AXB8j9vd', '7114955'), + (35082, 357, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AXB8j9vd', '7114956'), + (35083, 357, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AXB8j9vd', '7114957'), + (35084, 357, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AXB8j9vd', '7159484'), + (35085, 357, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AXB8j9vd', '7178446'), + (35086, 357, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AXB8j9vd', '7220467'), + (35087, 357, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AXB8j9vd', '7240354'), + (35088, 357, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AXB8j9vd', '7251633'), + (35089, 357, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AXB8j9vd', '7324073'), + (35090, 357, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AXB8j9vd', '7324074'), + (35091, 357, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AXB8j9vd', '7324075'), + (35092, 357, 2691, 'maybe', '2024-07-19 01:53:19', '2025-12-17 19:46:30', 'AXB8j9vd', '7324076'), + (35093, 357, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AXB8j9vd', '7324078'), + (35094, 357, 2696, 'attending', '2024-08-24 22:55:53', '2025-12-17 19:46:32', 'AXB8j9vd', '7324081'), + (35095, 357, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AXB8j9vd', '7324082'), + (35096, 357, 2700, 'maybe', '2024-06-14 22:00:08', '2025-12-17 19:46:28', 'AXB8j9vd', '7324388'), + (35097, 357, 2706, 'attending', '2024-06-19 22:53:28', '2025-12-17 19:46:28', 'AXB8j9vd', '7324947'), + (35098, 357, 2712, 'maybe', '2024-08-02 22:13:08', '2025-12-17 19:46:31', 'AXB8j9vd', '7326525'), + (35099, 357, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AXB8j9vd', '7331457'), + (35100, 357, 2724, 'attending', '2024-06-26 21:58:24', '2025-12-17 19:46:29', 'AXB8j9vd', '7332562'), + (35101, 357, 2737, 'maybe', '2024-07-02 22:06:09', '2025-12-17 19:46:29', 'AXB8j9vd', '7344070'), + (35102, 357, 2742, 'maybe', '2024-07-03 22:55:15', '2025-12-17 19:46:29', 'AXB8j9vd', '7345167'), + (35103, 357, 2747, 'attending', '2024-07-17 22:39:19', '2025-12-17 19:46:30', 'AXB8j9vd', '7353587'), + (35104, 357, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'AXB8j9vd', '7363643'), + (35105, 357, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AXB8j9vd', '7368606'), + (35106, 357, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AXB8j9vd', '7397462'), + (35107, 357, 2806, 'maybe', '2024-09-18 21:35:50', '2025-12-17 19:46:25', 'AXB8j9vd', '7404888'), + (35108, 357, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AXB8j9vd', '7424275'), + (35109, 357, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AXB8j9vd', '7432751'), + (35110, 357, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AXB8j9vd', '7432752'), + (35111, 357, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AXB8j9vd', '7432753'), + (35112, 357, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AXB8j9vd', '7432754'), + (35113, 357, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AXB8j9vd', '7432755'), + (35114, 357, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AXB8j9vd', '7432756'), + (35115, 357, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AXB8j9vd', '7432758'), + (35116, 357, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AXB8j9vd', '7432759'), + (35117, 357, 2832, 'maybe', '2024-09-09 21:59:56', '2025-12-17 19:46:24', 'AXB8j9vd', '7433324'), + (35118, 357, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AXB8j9vd', '7433834'), + (35119, 357, 2838, 'maybe', '2024-09-27 21:49:31', '2025-12-17 19:46:25', 'AXB8j9vd', '7439182'), + (35120, 357, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AXB8j9vd', '7470197'), + (35121, 357, 2865, 'maybe', '2024-11-01 21:57:33', '2025-12-17 19:46:26', 'AXB8j9vd', '7471200'), + (35122, 357, 2876, 'maybe', '2024-10-08 22:48:25', '2025-12-17 19:46:26', 'AXB8j9vd', '7490980'), + (35123, 357, 2881, 'maybe', '2024-11-06 23:24:56', '2025-12-17 19:46:26', 'AXB8j9vd', '7644047'), + (35124, 357, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AXB8j9vd', '7685613'), + (35125, 357, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AXB8j9vd', '7688194'), + (35126, 357, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AXB8j9vd', '7688196'), + (35127, 357, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AXB8j9vd', '7688289'), + (35128, 357, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AXB8j9vd', '7692763'), + (35129, 357, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AXB8j9vd', '7697552'), + (35130, 357, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AXB8j9vd', '7699878'), + (35131, 357, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AXB8j9vd', '7704043'), + (35132, 357, 2924, 'maybe', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AXB8j9vd', '7712467'), + (35133, 357, 2925, 'maybe', '2024-12-09 23:11:15', '2025-12-17 19:46:21', 'AXB8j9vd', '7713584'), + (35134, 357, 2926, 'maybe', '2024-12-05 23:55:00', '2025-12-17 19:46:21', 'AXB8j9vd', '7713585'), + (35135, 357, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AXB8j9vd', '7713586'), + (35136, 357, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AXB8j9vd', '7738518'), + (35137, 357, 2963, 'maybe', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AXB8j9vd', '7750636'), + (35138, 357, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AXB8j9vd', '7796540'), + (35139, 357, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AXB8j9vd', '7796541'), + (35140, 357, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AXB8j9vd', '7796542'), + (35141, 357, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AXB8j9vd', '7825913'), + (35142, 357, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AXB8j9vd', '7826209'), + (35143, 357, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AXB8j9vd', '7834742'), + (35144, 357, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AXB8j9vd', '7842108'), + (35145, 357, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AXB8j9vd', '7842902'), + (35146, 357, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AXB8j9vd', '7842903'), + (35147, 357, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AXB8j9vd', '7842904'), + (35148, 357, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AXB8j9vd', '7842905'), + (35149, 357, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AXB8j9vd', '7855719'), + (35150, 357, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AXB8j9vd', '7860683'), + (35151, 357, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AXB8j9vd', '7860684'), + (35152, 357, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AXB8j9vd', '7866095'), + (35153, 357, 3013, 'maybe', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AXB8j9vd', '7869170'), + (35154, 357, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AXB8j9vd', '7869188'), + (35155, 357, 3029, 'attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AXB8j9vd', '7869201'), + (35156, 357, 3033, 'maybe', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AXB8j9vd', '7877465'), + (35157, 357, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AXB8j9vd', '7888250'), + (35158, 357, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AXB8j9vd', '7904777'), + (35159, 357, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AXB8j9vd', '8349164'), + (35160, 357, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AXB8j9vd', '8349545'), + (35161, 357, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AXB8j9vd', '8368028'), + (35162, 357, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AXB8j9vd', '8368029'), + (35163, 357, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AXB8j9vd', '8388462'), + (35164, 357, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AXB8j9vd', '8400273'), + (35165, 357, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AXB8j9vd', '8400275'), + (35166, 357, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'AXB8j9vd', '8400276'), + (35167, 357, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AXB8j9vd', '8404977'), + (35168, 357, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'AXB8j9vd', '8430783'), + (35169, 357, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AXB8j9vd', '8430784'), + (35170, 357, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AXB8j9vd', '8430799'), + (35171, 357, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AXB8j9vd', '8430800'), + (35172, 357, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AXB8j9vd', '8430801'), + (35173, 357, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AXB8j9vd', '8438709'), + (35174, 357, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AXB8j9vd', '8457738'), + (35175, 357, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AXB8j9vd', '8459566'), + (35176, 357, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AXB8j9vd', '8459567'), + (35177, 357, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AXB8j9vd', '8461032'), + (35178, 357, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AXB8j9vd', '8477877'), + (35179, 357, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AXB8j9vd', '8485688'), + (35180, 357, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AXB8j9vd', '8490587'), + (35181, 357, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AXB8j9vd', '8493552'), + (35182, 357, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AXB8j9vd', '8493553'), + (35183, 357, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AXB8j9vd', '8493554'), + (35184, 357, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AXB8j9vd', '8493555'), + (35185, 357, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AXB8j9vd', '8493556'), + (35186, 357, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AXB8j9vd', '8493557'), + (35187, 357, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AXB8j9vd', '8493558'), + (35188, 357, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AXB8j9vd', '8493559'), + (35189, 357, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AXB8j9vd', '8493560'), + (35190, 357, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AXB8j9vd', '8493561'), + (35191, 357, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AXB8j9vd', '8493572'), + (35192, 357, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AXB8j9vd', '8540725'), + (35193, 357, 3289, 'maybe', '2025-10-24 23:59:35', '2025-12-17 19:46:14', 'AXB8j9vd', '8542939'), + (35194, 357, 3301, 'maybe', '2025-12-28 21:37:26', '2025-12-28 21:37:26', NULL, NULL), + (35195, 357, 3307, 'attending', '2025-12-18 01:32:41', '2025-12-18 01:33:22', NULL, NULL), + (35196, 357, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AXB8j9vd', '8555421'), + (35197, 357, 3346, 'attending', '2025-12-28 21:29:57', '2025-12-28 21:29:57', NULL, NULL), + (35198, 358, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxEB7wm', '6045684'), + (35199, 359, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'dKwqnXRd', '7114951'), + (35200, 359, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dKwqnXRd', '7114956'), + (35201, 359, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dKwqnXRd', '7114957'), + (35202, 359, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dKwqnXRd', '7153615'), + (35203, 359, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dKwqnXRd', '7159484'), + (35204, 359, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dKwqnXRd', '7178446'), + (35205, 359, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dKwqnXRd', '7220467'), + (35206, 359, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dKwqnXRd', '7240354'), + (35207, 359, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dKwqnXRd', '7251633'), + (35208, 359, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'dKwqnXRd', '7265589'), + (35209, 360, 1353, 'attending', '2022-04-24 02:54:43', '2025-12-17 19:47:27', 'dVbMP86d', '5251777'), + (35210, 360, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dVbMP86d', '5260800'), + (35211, 360, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dVbMP86d', '5269930'), + (35212, 360, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dVbMP86d', '5271448'), + (35213, 360, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dVbMP86d', '5271449'), + (35214, 360, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dVbMP86d', '5276469'), + (35215, 360, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVbMP86d', '5278159'), + (35216, 360, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dVbMP86d', '5363695'), + (35217, 360, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVbMP86d', '5365960'), + (35218, 360, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dVbMP86d', '5368973'), + (35219, 360, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVbMP86d', '5378247'), + (35220, 360, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dVbMP86d', '5389605'), + (35221, 360, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dVbMP86d', '5397265'), + (35222, 360, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbMP86d', '6045684'), + (35223, 361, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mLLZ0VQm', '6164417'), + (35224, 361, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mLLZ0VQm', '6166388'), + (35225, 361, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mLLZ0VQm', '6176439'), + (35226, 361, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'mLLZ0VQm', '6177485'), + (35227, 361, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mLLZ0VQm', '6182410'), + (35228, 361, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mLLZ0VQm', '6185812'), + (35229, 361, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mLLZ0VQm', '6187651'), + (35230, 361, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mLLZ0VQm', '6187963'), + (35231, 361, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mLLZ0VQm', '6187964'), + (35232, 361, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mLLZ0VQm', '6187966'), + (35233, 361, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mLLZ0VQm', '6187967'), + (35234, 361, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mLLZ0VQm', '6187969'), + (35235, 361, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mLLZ0VQm', '6334878'), + (35236, 361, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', 'mLLZ0VQm', '6334903'), + (35237, 361, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mLLZ0VQm', '6337236'), + (35238, 361, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mLLZ0VQm', '6337970'), + (35239, 361, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mLLZ0VQm', '6338308'), + (35240, 361, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mLLZ0VQm', '6341710'), + (35241, 361, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mLLZ0VQm', '6342044'), + (35242, 361, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mLLZ0VQm', '6342298'), + (35243, 361, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'mLLZ0VQm', '6342591'), + (35244, 361, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mLLZ0VQm', '6343294'), + (35245, 361, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mLLZ0VQm', '6347034'), + (35246, 361, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mLLZ0VQm', '6347056'), + (35247, 361, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mLLZ0VQm', '6353830'), + (35248, 361, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mLLZ0VQm', '6353831'), + (35249, 361, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mLLZ0VQm', '6357867'), + (35250, 361, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mLLZ0VQm', '6358652'), + (35251, 361, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mLLZ0VQm', '6361709'), + (35252, 361, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mLLZ0VQm', '6361710'), + (35253, 361, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mLLZ0VQm', '6361711'), + (35254, 361, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mLLZ0VQm', '6361712'), + (35255, 361, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mLLZ0VQm', '6361713'), + (35256, 361, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mLLZ0VQm', '6382573'), + (35257, 361, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mLLZ0VQm', '6388604'), + (35258, 361, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mLLZ0VQm', '6394629'), + (35259, 361, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mLLZ0VQm', '6394631'), + (35260, 361, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mLLZ0VQm', '6431478'), + (35261, 362, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2VKpZod', '6045684'), + (35262, 363, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WPkqONd', '6045684'), + (35263, 364, 1117, 'attending', '2021-12-08 20:37:03', '2025-12-17 19:47:37', 'dxDx6GEd', '4642995'), + (35264, 364, 1122, 'maybe', '2021-12-03 00:25:43', '2025-12-17 19:47:37', 'dxDx6GEd', '4644023'), + (35265, 364, 1130, 'attending', '2021-12-04 20:38:14', '2025-12-17 19:47:37', 'dxDx6GEd', '4658824'), + (35266, 364, 1139, 'attending', '2021-12-03 06:42:28', '2025-12-17 19:47:37', 'dxDx6GEd', '4675604'), + (35267, 364, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dxDx6GEd', '4694407'), + (35268, 364, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dxDx6GEd', '4736497'), + (35269, 364, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dxDx6GEd', '4736499'), + (35270, 364, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dxDx6GEd', '4736500'), + (35271, 364, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dxDx6GEd', '4736503'), + (35272, 364, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dxDx6GEd', '4736504'), + (35273, 364, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dxDx6GEd', '4746789'), + (35274, 364, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dxDx6GEd', '4753929'), + (35275, 364, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dxDx6GEd', '5038850'), + (35276, 364, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dxDx6GEd', '5045826'), + (35277, 364, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dxDx6GEd', '5132533'), + (35278, 364, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dxDx6GEd', '5186582'), + (35279, 364, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dxDx6GEd', '5186583'), + (35280, 364, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dxDx6GEd', '5186585'), + (35281, 364, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dxDx6GEd', '5190437'), + (35282, 364, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dxDx6GEd', '5215989'), + (35283, 364, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dxDx6GEd', '6045684'), + (35284, 365, 2022, 'not_attending', '2023-05-26 12:22:04', '2025-12-17 19:47:03', 'dlkOgEY4', '6067245'), + (35285, 365, 2031, 'attending', '2023-05-27 15:15:43', '2025-12-17 19:47:03', 'dlkOgEY4', '6068280'), + (35286, 365, 2032, 'attending', '2023-06-03 12:41:08', '2025-12-17 19:47:04', 'dlkOgEY4', '6068281'), + (35287, 365, 2060, 'not_attending', '2023-05-20 16:25:56', '2025-12-17 19:47:03', 'dlkOgEY4', '6097414'), + (35288, 365, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dlkOgEY4', '6101361'), + (35289, 365, 2067, 'not_attending', '2023-05-16 00:10:01', '2025-12-17 19:47:03', 'dlkOgEY4', '6101362'), + (35290, 365, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dlkOgEY4', '6107314'), + (35291, 365, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dlkOgEY4', '6120034'), + (35292, 365, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dlkOgEY4', '6136733'), + (35293, 365, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dlkOgEY4', '6137989'), + (35294, 365, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dlkOgEY4', '6150864'), + (35295, 365, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dlkOgEY4', '6155491'), + (35296, 365, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dlkOgEY4', '6164417'), + (35297, 365, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dlkOgEY4', '6166388'), + (35298, 365, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dlkOgEY4', '6176439'), + (35299, 365, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dlkOgEY4', '6182410'), + (35300, 365, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dlkOgEY4', '6185812'), + (35301, 365, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dlkOgEY4', '6187651'), + (35302, 365, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dlkOgEY4', '6187963'), + (35303, 365, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dlkOgEY4', '6187964'), + (35304, 365, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dlkOgEY4', '6187966'), + (35305, 365, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dlkOgEY4', '6187967'), + (35306, 365, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dlkOgEY4', '6187969'), + (35307, 365, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dlkOgEY4', '6334878'), + (35308, 365, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dlkOgEY4', '6337236'), + (35309, 365, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dlkOgEY4', '6337970'), + (35310, 365, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dlkOgEY4', '6338308'), + (35311, 365, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dlkOgEY4', '6340845'), + (35312, 365, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dlkOgEY4', '6341710'), + (35313, 365, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dlkOgEY4', '6342044'), + (35314, 365, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dlkOgEY4', '6342298'), + (35315, 365, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dlkOgEY4', '6343294'), + (35316, 365, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dlkOgEY4', '6347034'), + (35317, 365, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dlkOgEY4', '6347056'), + (35318, 365, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dlkOgEY4', '6353830'), + (35319, 365, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dlkOgEY4', '6353831'), + (35320, 365, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dlkOgEY4', '6357867'), + (35321, 365, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dlkOgEY4', '6358652'), + (35322, 365, 2196, 'attending', '2023-09-05 18:25:06', '2025-12-17 19:46:56', 'dlkOgEY4', '6359398'), + (35323, 365, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dlkOgEY4', '6361709'), + (35324, 365, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dlkOgEY4', '6361710'), + (35325, 365, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dlkOgEY4', '6361711'), + (35326, 365, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dlkOgEY4', '6361712'), + (35327, 365, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dlkOgEY4', '6361713'), + (35328, 365, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dlkOgEY4', '6382573'), + (35329, 365, 2239, 'attending', '2023-09-01 15:23:39', '2025-12-17 19:46:56', 'dlkOgEY4', '6387592'), + (35330, 365, 2240, 'attending', '2023-09-09 19:07:55', '2025-12-17 19:46:56', 'dlkOgEY4', '6388603'), + (35331, 365, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dlkOgEY4', '6388604'), + (35332, 365, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dlkOgEY4', '6394629'), + (35333, 365, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dlkOgEY4', '6394631'), + (35334, 365, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dlkOgEY4', '6440863'), + (35335, 365, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dlkOgEY4', '6445440'), + (35336, 365, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dlkOgEY4', '6453951'), + (35337, 365, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dlkOgEY4', '6461696'), + (35338, 365, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dlkOgEY4', '6462129'), + (35339, 365, 2290, 'attending', '2023-10-16 14:57:18', '2025-12-17 19:46:46', 'dlkOgEY4', '6462214'), + (35340, 365, 2292, 'not_attending', '2023-10-23 17:18:00', '2025-12-17 19:46:47', 'dlkOgEY4', '6462216'), + (35341, 365, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dlkOgEY4', '6463218'), + (35342, 365, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dlkOgEY4', '6472181'), + (35343, 365, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dlkOgEY4', '6482693'), + (35344, 365, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dlkOgEY4', '6484200'), + (35345, 365, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dlkOgEY4', '6484680'), + (35346, 365, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dlkOgEY4', '6507741'), + (35347, 365, 2322, 'maybe', '2023-11-10 01:03:19', '2025-12-17 19:46:48', 'dlkOgEY4', '6514659'), + (35348, 365, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dlkOgEY4', '6514660'), + (35349, 365, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dlkOgEY4', '6519103'), + (35350, 365, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dlkOgEY4', '6535681'), + (35351, 365, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlkOgEY4', '6584747'), + (35352, 365, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlkOgEY4', '6587097'), + (35353, 365, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlkOgEY4', '6609022'), + (35354, 365, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlkOgEY4', '6632757'), + (35355, 365, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlkOgEY4', '6644187'), + (35356, 365, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlkOgEY4', '6648951'), + (35357, 365, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlkOgEY4', '6648952'), + (35358, 365, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dlkOgEY4', '6655401'), + (35359, 365, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlkOgEY4', '6661585'), + (35360, 365, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlkOgEY4', '6661588'), + (35361, 365, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlkOgEY4', '6661589'), + (35362, 365, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlkOgEY4', '6699906'), + (35363, 365, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dlkOgEY4', '6699913'), + (35364, 365, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlkOgEY4', '6701109'), + (35365, 365, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlkOgEY4', '6705219'), + (35366, 365, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlkOgEY4', '6710153'), + (35367, 365, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlkOgEY4', '6711552'), + (35368, 365, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dlkOgEY4', '6711553'), + (35369, 365, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlkOgEY4', '6722688'), + (35370, 365, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlkOgEY4', '6730620'), + (35371, 365, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlkOgEY4', '6730642'), + (35372, 365, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlkOgEY4', '6740364'), + (35373, 365, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlkOgEY4', '6743829'), + (35374, 365, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlkOgEY4', '7030380'), + (35375, 365, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlkOgEY4', '7033677'), + (35376, 365, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlkOgEY4', '7035415'), + (35377, 365, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlkOgEY4', '7044715'), + (35378, 365, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlkOgEY4', '7050318'), + (35379, 365, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlkOgEY4', '7050319'), + (35380, 365, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlkOgEY4', '7050322'), + (35381, 365, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlkOgEY4', '7057804'), + (35382, 365, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dlkOgEY4', '7059866'), + (35383, 365, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlkOgEY4', '7072824'), + (35384, 365, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlkOgEY4', '7074348'), + (35385, 365, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlkOgEY4', '7089267'), + (35386, 365, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlkOgEY4', '7098747'), + (35387, 365, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dlkOgEY4', '7113468'), + (35388, 365, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlkOgEY4', '7114856'), + (35389, 365, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlkOgEY4', '7114951'), + (35390, 365, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlkOgEY4', '7114955'), + (35391, 365, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlkOgEY4', '7114956'), + (35392, 365, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlkOgEY4', '7153615'), + (35393, 365, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dlkOgEY4', '7159484'), + (35394, 365, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dlkOgEY4', '7178446'), + (35395, 366, 2303, 'attending', '2023-10-28 21:32:34', '2025-12-17 19:46:47', '4kqBGbRm', '6482691'), + (35396, 366, 2304, 'attending', '2023-10-29 02:17:01', '2025-12-17 19:46:47', '4kqBGbRm', '6482693'), + (35397, 366, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4kqBGbRm', '6484200'), + (35398, 366, 2310, 'maybe', '2023-11-09 21:17:57', '2025-12-17 19:46:47', '4kqBGbRm', '6487709'), + (35399, 366, 2315, 'attending', '2023-10-30 22:17:21', '2025-12-17 19:46:47', '4kqBGbRm', '6493666'), + (35400, 366, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4kqBGbRm', '6507741'), + (35401, 366, 2321, 'not_attending', '2023-10-30 22:21:04', '2025-12-17 19:46:47', '4kqBGbRm', '6512075'), + (35402, 366, 2322, 'attending', '2023-11-15 02:53:38', '2025-12-17 19:46:48', '4kqBGbRm', '6514659'), + (35403, 366, 2323, 'maybe', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4kqBGbRm', '6514660'), + (35404, 366, 2324, 'attending', '2023-12-09 20:54:30', '2025-12-17 19:46:49', '4kqBGbRm', '6514662'), + (35405, 366, 2325, 'not_attending', '2023-12-15 20:53:10', '2025-12-17 19:46:36', '4kqBGbRm', '6514663'), + (35406, 366, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4kqBGbRm', '6519103'), + (35407, 366, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4kqBGbRm', '6535681'), + (35408, 366, 2338, 'attending', '2023-11-19 06:00:39', '2025-12-17 19:46:48', '4kqBGbRm', '6538868'), + (35409, 366, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4kqBGbRm', '6584747'), + (35410, 366, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4kqBGbRm', '6587097'), + (35411, 366, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4kqBGbRm', '6609022'), + (35412, 366, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4kqBGbRm', '6632757'), + (35413, 366, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4kqBGbRm', '6644187'), + (35414, 366, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4kqBGbRm', '6648951'), + (35415, 366, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4kqBGbRm', '6648952'), + (35416, 366, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4kqBGbRm', '6655401'), + (35417, 366, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4kqBGbRm', '6661585'), + (35418, 366, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4kqBGbRm', '6661588'), + (35419, 366, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4kqBGbRm', '6661589'), + (35420, 366, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4kqBGbRm', '6699906'), + (35421, 366, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4kqBGbRm', '6699913'), + (35422, 366, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4kqBGbRm', '6701109'), + (35423, 366, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4kqBGbRm', '6705219'), + (35424, 366, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4kqBGbRm', '6710153'), + (35425, 366, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4kqBGbRm', '6711552'), + (35426, 366, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4kqBGbRm', '6711553'), + (35427, 366, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4kqBGbRm', '6722688'), + (35428, 366, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4kqBGbRm', '6730620'), + (35429, 366, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4kqBGbRm', '6730642'), + (35430, 366, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4kqBGbRm', '6740364'), + (35431, 366, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4kqBGbRm', '6743829'), + (35432, 366, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4kqBGbRm', '7030380'), + (35433, 366, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4kqBGbRm', '7033677'), + (35434, 366, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4kqBGbRm', '7035415'), + (35435, 366, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4kqBGbRm', '7044715'), + (35436, 366, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4kqBGbRm', '7050318'), + (35437, 366, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4kqBGbRm', '7050319'), + (35438, 366, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4kqBGbRm', '7050322'), + (35439, 366, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4kqBGbRm', '7057804'), + (35440, 366, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', '4kqBGbRm', '7059866'), + (35441, 366, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4kqBGbRm', '7072824'), + (35442, 366, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4kqBGbRm', '7074348'), + (35443, 366, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4kqBGbRm', '7089267'), + (35444, 366, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4kqBGbRm', '7098747'), + (35445, 366, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4kqBGbRm', '7113468'), + (35446, 366, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4kqBGbRm', '7114856'), + (35447, 366, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4kqBGbRm', '7114951'), + (35448, 366, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4kqBGbRm', '7114955'), + (35449, 366, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4kqBGbRm', '7114956'), + (35450, 366, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4kqBGbRm', '7114957'), + (35451, 366, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4kqBGbRm', '7153615'), + (35452, 366, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4kqBGbRm', '7159484'), + (35453, 366, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4kqBGbRm', '7178446'), + (35454, 366, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4kqBGbRm', '7220467'), + (35455, 366, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4kqBGbRm', '7240354'), + (35456, 366, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4kqBGbRm', '7251633'), + (35457, 366, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4kqBGbRm', '7263048'), + (35458, 366, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4kqBGbRm', '7302674'), + (35459, 367, 872, 'not_attending', '2021-07-20 02:29:51', '2025-12-17 19:47:40', 'AXBNLjzd', '4136947'), + (35460, 367, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'AXBNLjzd', '4210314'), + (35461, 367, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'AXBNLjzd', '4229420'), + (35462, 367, 894, 'not_attending', '2021-07-20 22:49:03', '2025-12-17 19:47:40', 'AXBNLjzd', '4229423'), + (35463, 367, 900, 'not_attending', '2021-07-20 02:31:01', '2025-12-17 19:47:40', 'AXBNLjzd', '4240316'), + (35464, 367, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'AXBNLjzd', '4240317'), + (35465, 367, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'AXBNLjzd', '4240318'), + (35466, 367, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'AXBNLjzd', '4240320'), + (35467, 367, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'AXBNLjzd', '4277819'), + (35468, 367, 923, 'not_attending', '2021-07-20 02:30:14', '2025-12-17 19:47:40', 'AXBNLjzd', '4292773'), + (35469, 367, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'AXBNLjzd', '4301723'), + (35470, 367, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'AXBNLjzd', '4302093'), + (35471, 367, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'AXBNLjzd', '4304151'), + (35472, 367, 940, 'not_attending', '2021-07-30 16:29:42', '2025-12-17 19:47:40', 'AXBNLjzd', '4309049'), + (35473, 367, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'AXBNLjzd', '4315713'), + (35474, 367, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'AXBNLjzd', '4315714'), + (35475, 367, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'AXBNLjzd', '4315726'), + (35476, 367, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'AXBNLjzd', '4356801'), + (35477, 367, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'AXBNLjzd', '4366186'), + (35478, 367, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'AXBNLjzd', '4366187'), + (35479, 367, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'AXBNLjzd', '4420735'), + (35480, 367, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'AXBNLjzd', '4420738'), + (35481, 367, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'AXBNLjzd', '4420739'), + (35482, 367, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'AXBNLjzd', '4420741'), + (35483, 367, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'AXBNLjzd', '4420744'), + (35484, 367, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'AXBNLjzd', '4420747'), + (35485, 367, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'AXBNLjzd', '4420748'), + (35486, 367, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'AXBNLjzd', '4420749'), + (35487, 367, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AXBNLjzd', '4461883'), + (35488, 367, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AXBNLjzd', '4508342'), + (35489, 367, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AXBNLjzd', '4568602'), + (35490, 367, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'AXBNLjzd', '4572153'), + (35491, 367, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'AXBNLjzd', '4585962'), + (35492, 367, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'AXBNLjzd', '4596356'), + (35493, 367, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AXBNLjzd', '4598860'), + (35494, 367, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AXBNLjzd', '4598861'), + (35495, 367, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'AXBNLjzd', '4602797'), + (35496, 367, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'AXBNLjzd', '4637896'), + (35497, 367, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AXBNLjzd', '4642994'), + (35498, 367, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AXBNLjzd', '4642995'), + (35499, 367, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AXBNLjzd', '4642996'), + (35500, 367, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AXBNLjzd', '4642997'), + (35501, 367, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'AXBNLjzd', '4645687'), + (35502, 367, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'AXBNLjzd', '4645698'), + (35503, 367, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'AXBNLjzd', '4645704'), + (35504, 367, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'AXBNLjzd', '4645705'), + (35505, 367, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AXBNLjzd', '4668385'), + (35506, 367, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AXBNLjzd', '6045684'), + (35507, 368, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mjEvk15d', '7074364'), + (35508, 368, 2689, 'attending', '2024-07-06 22:50:51', '2025-12-17 19:46:29', 'mjEvk15d', '7324074'), + (35509, 368, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mjEvk15d', '7324075'), + (35510, 368, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mjEvk15d', '7324078'), + (35511, 368, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mjEvk15d', '7324082'), + (35512, 368, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mjEvk15d', '7331457'), + (35513, 368, 2739, 'attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'mjEvk15d', '7344575'), + (35514, 368, 2744, 'not_attending', '2024-07-02 14:34:26', '2025-12-17 19:46:29', 'mjEvk15d', '7347764'), + (35515, 368, 2749, 'attending', '2024-07-07 18:42:30', '2025-12-17 19:46:29', 'mjEvk15d', '7355496'), + (35516, 368, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mjEvk15d', '7356752'), + (35517, 368, 2757, 'attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'mjEvk15d', '7358733'), + (35518, 368, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'mjEvk15d', '7363595'), + (35519, 368, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mjEvk15d', '7363643'), + (35520, 368, 2768, 'attending', '2024-07-18 00:38:14', '2025-12-17 19:46:30', 'mjEvk15d', '7366031'), + (35521, 368, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mjEvk15d', '7368606'), + (35522, 368, 2776, 'attending', '2024-07-24 19:06:24', '2025-12-17 19:46:30', 'mjEvk15d', '7370690'), + (35523, 368, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mjEvk15d', '7397462'), + (35524, 368, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mjEvk15d', '7424275'), + (35525, 368, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mjEvk15d', '7424276'), + (35526, 368, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mjEvk15d', '7432751'), + (35527, 368, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mjEvk15d', '7432752'), + (35528, 368, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mjEvk15d', '7432753'), + (35529, 368, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mjEvk15d', '7432754'), + (35530, 368, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mjEvk15d', '7432755'), + (35531, 368, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mjEvk15d', '7432756'), + (35532, 368, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mjEvk15d', '7432758'), + (35533, 368, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mjEvk15d', '7432759'), + (35534, 368, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mjEvk15d', '7433834'), + (35535, 368, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mjEvk15d', '7470197'), + (35536, 368, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mjEvk15d', '7685613'), + (35537, 368, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mjEvk15d', '7688194'), + (35538, 368, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mjEvk15d', '7688196'), + (35539, 368, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mjEvk15d', '7688289'), + (35540, 368, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mjEvk15d', '7692763'), + (35541, 368, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mjEvk15d', '7697552'), + (35542, 368, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mjEvk15d', '7699878'), + (35543, 368, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mjEvk15d', '7704043'), + (35544, 368, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mjEvk15d', '7712467'), + (35545, 368, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mjEvk15d', '7713585'), + (35546, 368, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mjEvk15d', '7713586'), + (35547, 368, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mjEvk15d', '7738518'), + (35548, 368, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mjEvk15d', '7750636'), + (35549, 368, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mjEvk15d', '7796540'), + (35550, 368, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mjEvk15d', '7796541'), + (35551, 368, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mjEvk15d', '7796542'), + (35552, 369, 2306, 'maybe', '2023-11-16 00:37:34', '2025-12-17 19:46:48', 'dlkgN5V4', '6484200'), + (35553, 369, 2322, 'attending', '2023-11-17 03:58:33', '2025-12-17 19:46:48', 'dlkgN5V4', '6514659'), + (35554, 369, 2323, 'attending', '2023-11-21 13:56:03', '2025-12-17 19:46:48', 'dlkgN5V4', '6514660'), + (35555, 369, 2324, 'attending', '2023-11-21 13:56:18', '2025-12-17 19:46:49', 'dlkgN5V4', '6514662'), + (35556, 369, 2325, 'attending', '2023-11-21 13:56:23', '2025-12-17 19:46:36', 'dlkgN5V4', '6514663'), + (35557, 369, 2337, 'attending', '2023-11-17 22:26:49', '2025-12-17 19:46:48', 'dlkgN5V4', '6535681'), + (35558, 369, 2338, 'attending', '2023-11-21 13:55:42', '2025-12-17 19:46:48', 'dlkgN5V4', '6538868'), + (35559, 369, 2340, 'attending', '2023-11-21 13:53:09', '2025-12-17 19:46:48', 'dlkgN5V4', '6540279'), + (35560, 369, 2341, 'not_attending', '2023-11-20 01:19:50', '2025-12-17 19:46:48', 'dlkgN5V4', '6543263'), + (35561, 369, 2343, 'attending', '2023-11-21 01:15:00', '2025-12-17 19:46:48', 'dlkgN5V4', '6574728'), + (35562, 369, 2344, 'attending', '2023-11-19 17:07:32', '2025-12-17 19:46:48', 'dlkgN5V4', '6581040'), + (35563, 369, 2348, 'attending', '2023-11-19 17:08:12', '2025-12-17 19:46:48', 'dlkgN5V4', '6583064'), + (35564, 369, 2349, 'not_attending', '2023-11-19 17:07:10', '2025-12-17 19:46:48', 'dlkgN5V4', '6583065'), + (35565, 369, 2350, 'not_attending', '2023-11-22 14:36:56', '2025-12-17 19:46:48', 'dlkgN5V4', '6584352'), + (35566, 369, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlkgN5V4', '6584747'), + (35567, 369, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlkgN5V4', '6587097'), + (35568, 369, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlkgN5V4', '6609022'), + (35569, 369, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlkgN5V4', '6632757'), + (35570, 369, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlkgN5V4', '6644187'), + (35571, 369, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlkgN5V4', '6648951'), + (35572, 369, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlkgN5V4', '6648952'), + (35573, 369, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dlkgN5V4', '6655401'), + (35574, 369, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlkgN5V4', '6661585'), + (35575, 369, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlkgN5V4', '6661588'), + (35576, 369, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlkgN5V4', '6661589'), + (35577, 369, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlkgN5V4', '6699906'), + (35578, 369, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dlkgN5V4', '6699913'), + (35579, 369, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlkgN5V4', '6701109'), + (35580, 369, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dlkgN5V4', '6704561'), + (35581, 369, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlkgN5V4', '6705219'), + (35582, 369, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dlkgN5V4', '6708410'), + (35583, 369, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlkgN5V4', '6710153'), + (35584, 369, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlkgN5V4', '6711552'), + (35585, 369, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dlkgN5V4', '6711553'), + (35586, 369, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlkgN5V4', '6722688'), + (35587, 369, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlkgN5V4', '6730620'), + (35588, 369, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlkgN5V4', '6730642'), + (35589, 369, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlkgN5V4', '6740364'), + (35590, 369, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlkgN5V4', '6743829'), + (35591, 369, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlkgN5V4', '7030380'), + (35592, 369, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlkgN5V4', '7033677'), + (35593, 369, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlkgN5V4', '7035415'), + (35594, 369, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlkgN5V4', '7044715'), + (35595, 369, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlkgN5V4', '7050318'), + (35596, 369, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlkgN5V4', '7050319'), + (35597, 369, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlkgN5V4', '7050322'), + (35598, 369, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlkgN5V4', '7057804'), + (35599, 369, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlkgN5V4', '7072824'), + (35600, 369, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlkgN5V4', '7074348'), + (35601, 369, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlkgN5V4', '7089267'), + (35602, 369, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlkgN5V4', '7098747'), + (35603, 369, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dlkgN5V4', '7113468'), + (35604, 369, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlkgN5V4', '7114856'), + (35605, 369, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlkgN5V4', '7114951'), + (35606, 369, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlkgN5V4', '7114955'), + (35607, 369, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlkgN5V4', '7114956'), + (35608, 369, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlkgN5V4', '7153615'), + (35609, 369, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dlkgN5V4', '7159484'), + (35610, 370, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Ar6VnZXA', '7324078'), + (35611, 370, 2722, 'not_attending', '2024-07-12 22:43:28', '2025-12-17 19:46:30', 'Ar6VnZXA', '7331457'), + (35612, 370, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Ar6VnZXA', '7363643'), + (35613, 370, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Ar6VnZXA', '7368606'), + (35614, 371, 1559, 'attending', '2022-09-28 22:59:39', '2025-12-17 19:47:11', 'd2VRGKJd', '5458731'), + (35615, 371, 1655, 'attending', '2022-09-19 02:26:13', '2025-12-17 19:47:11', 'd2VRGKJd', '5554482'), + (35616, 371, 1659, 'attending', '2022-09-23 00:44:31', '2025-12-17 19:47:11', 'd2VRGKJd', '5557747'), + (35617, 371, 1666, 'attending', '2022-09-27 21:40:18', '2025-12-17 19:47:11', 'd2VRGKJd', '5563208'), + (35618, 371, 1667, 'attending', '2022-09-24 19:18:36', '2025-12-17 19:47:11', 'd2VRGKJd', '5563221'), + (35619, 371, 1668, 'attending', '2022-10-01 22:48:26', '2025-12-17 19:47:12', 'd2VRGKJd', '5563222'), + (35620, 371, 1673, 'attending', '2022-09-29 22:29:28', '2025-12-17 19:47:11', 'd2VRGKJd', '5592454'), + (35621, 371, 1675, 'maybe', '2022-09-18 19:00:49', '2025-12-17 19:47:11', 'd2VRGKJd', '5593342'), + (35622, 371, 1676, 'attending', '2022-09-20 21:59:06', '2025-12-17 19:47:11', 'd2VRGKJd', '5596181'), + (35623, 371, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd2VRGKJd', '5600604'), + (35624, 371, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd2VRGKJd', '5605544'), + (35625, 371, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'd2VRGKJd', '5606737'), + (35626, 371, 1719, 'attending', '2022-10-08 18:14:33', '2025-12-17 19:47:12', 'd2VRGKJd', '5630958'), + (35627, 371, 1720, 'attending', '2022-10-15 22:52:16', '2025-12-17 19:47:12', 'd2VRGKJd', '5630959'), + (35628, 371, 1721, 'attending', '2022-10-20 00:06:36', '2025-12-17 19:47:13', 'd2VRGKJd', '5630960'), + (35629, 371, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd2VRGKJd', '5630961'), + (35630, 371, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd2VRGKJd', '5630962'), + (35631, 371, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd2VRGKJd', '5630966'), + (35632, 371, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd2VRGKJd', '5630967'), + (35633, 371, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd2VRGKJd', '5630968'), + (35634, 371, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd2VRGKJd', '5635406'), + (35635, 371, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd2VRGKJd', '5638765'), + (35636, 371, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd2VRGKJd', '5640097'), + (35637, 371, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'd2VRGKJd', '5640843'), + (35638, 371, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd2VRGKJd', '5641521'), + (35639, 371, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd2VRGKJd', '5642818'), + (35640, 371, 1746, 'maybe', '2022-10-14 23:00:08', '2025-12-17 19:47:12', 'd2VRGKJd', '5647518'), + (35641, 371, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd2VRGKJd', '5652395'), + (35642, 371, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd2VRGKJd', '5670445'), + (35643, 371, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd2VRGKJd', '5671637'), + (35644, 371, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd2VRGKJd', '5672329'), + (35645, 371, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd2VRGKJd', '5674057'), + (35646, 371, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd2VRGKJd', '5674060'), + (35647, 371, 1770, 'not_attending', '2022-10-28 18:57:57', '2025-12-17 19:47:14', 'd2VRGKJd', '5676936'), + (35648, 371, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd2VRGKJd', '5677461'), + (35649, 371, 1776, 'attending', '2022-11-10 00:51:36', '2025-12-17 19:47:15', 'd2VRGKJd', '5691067'), + (35650, 371, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd2VRGKJd', '5698046'), + (35651, 371, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd2VRGKJd', '5699760'), + (35652, 371, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd2VRGKJd', '5741601'), + (35653, 371, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd2VRGKJd', '5763458'), + (35654, 371, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd2VRGKJd', '5774172'), + (35655, 371, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd2VRGKJd', '5818247'), + (35656, 371, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd2VRGKJd', '5819471'), + (35657, 371, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd2VRGKJd', '5827739'), + (35658, 371, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd2VRGKJd', '5844306'), + (35659, 371, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd2VRGKJd', '5850159'), + (35660, 371, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd2VRGKJd', '5858999'), + (35661, 371, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd2VRGKJd', '5871984'), + (35662, 371, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd2VRGKJd', '5876354'), + (35663, 371, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd2VRGKJd', '5880939'), + (35664, 371, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd2VRGKJd', '5887890'), + (35665, 371, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd2VRGKJd', '5888598'), + (35666, 371, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd2VRGKJd', '5893260'), + (35667, 371, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2VRGKJd', '6045684'), + (35668, 372, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dODBVy3m', '6045684'), + (35669, 373, 6, 'not_attending', '2020-03-22 22:23:54', '2025-12-17 19:47:58', 'O4Z5J8lA', '2958048'), + (35670, 373, 8, 'attending', '2020-03-25 22:35:26', '2025-12-17 19:47:58', 'O4Z5J8lA', '2958050'), + (35671, 373, 10, 'attending', '2020-03-28 20:15:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '2958053'), + (35672, 373, 14, 'attending', '2020-04-09 23:08:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2958058'), + (35673, 373, 16, 'attending', '2020-03-27 06:43:07', '2025-12-17 19:47:56', 'O4Z5J8lA', '2958060'), + (35674, 373, 17, 'attending', '2020-03-22 17:41:49', '2025-12-17 19:47:58', 'O4Z5J8lA', '2958061'), + (35675, 373, 25, 'attending', '2020-07-09 21:56:30', '2025-12-17 19:47:55', 'O4Z5J8lA', '2958069'), + (35676, 373, 28, 'not_attending', '2020-04-02 20:44:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '2960421'), + (35677, 373, 29, 'attending', '2020-03-30 23:23:35', '2025-12-17 19:47:56', 'O4Z5J8lA', '2961309'), + (35678, 373, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'O4Z5J8lA', '2961895'), + (35679, 373, 31, 'not_attending', '2020-03-25 22:32:59', '2025-12-17 19:47:58', 'O4Z5J8lA', '2963118'), + (35680, 373, 32, 'attending', '2020-03-31 22:50:44', '2025-12-17 19:47:56', 'O4Z5J8lA', '2963931'), + (35681, 373, 35, 'not_attending', '2020-03-29 22:59:42', '2025-12-17 19:47:56', 'O4Z5J8lA', '2969206'), + (35682, 373, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'O4Z5J8lA', '2969208'), + (35683, 373, 37, 'attending', '2020-03-30 23:33:44', '2025-12-17 19:47:56', 'O4Z5J8lA', '2969680'), + (35684, 373, 38, 'attending', '2020-04-03 23:01:11', '2025-12-17 19:47:56', 'O4Z5J8lA', '2969751'), + (35685, 373, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'O4Z5J8lA', '2971546'), + (35686, 373, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'O4Z5J8lA', '2974534'), + (35687, 373, 46, 'attending', '2020-04-11 21:41:53', '2025-12-17 19:47:57', 'O4Z5J8lA', '2974955'), + (35688, 373, 51, 'maybe', '2020-06-30 16:41:07', '2025-12-17 19:47:55', 'O4Z5J8lA', '2975276'), + (35689, 373, 55, 'attending', '2020-04-06 21:55:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2975384'), + (35690, 373, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'O4Z5J8lA', '2975385'), + (35691, 373, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'O4Z5J8lA', '2976575'), + (35692, 373, 66, 'attending', '2020-06-09 19:08:06', '2025-12-17 19:47:58', 'O4Z5J8lA', '2977135'), + (35693, 373, 67, 'attending', '2020-06-16 02:24:51', '2025-12-17 19:47:58', 'O4Z5J8lA', '2977136'), + (35694, 373, 68, 'attending', '2020-06-23 03:04:57', '2025-12-17 19:47:58', 'O4Z5J8lA', '2977137'), + (35695, 373, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'O4Z5J8lA', '2977343'), + (35696, 373, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2977812'), + (35697, 373, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'O4Z5J8lA', '2977931'), + (35698, 373, 74, 'attending', '2020-04-18 19:23:30', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978244'), + (35699, 373, 75, 'attending', '2020-04-22 18:34:55', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978245'), + (35700, 373, 76, 'attending', '2020-05-02 20:05:10', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978246'), + (35701, 373, 77, 'attending', '2020-05-08 07:55:11', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978247'), + (35702, 373, 78, 'attending', '2020-05-23 20:33:41', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978249'), + (35703, 373, 79, 'attending', '2020-05-28 22:27:38', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978250'), + (35704, 373, 80, 'attending', '2020-06-04 17:01:14', '2025-12-17 19:47:58', 'O4Z5J8lA', '2978251'), + (35705, 373, 81, 'attending', '2020-06-11 17:47:07', '2025-12-17 19:47:58', 'O4Z5J8lA', '2978252'), + (35706, 373, 82, 'attending', '2020-04-22 18:34:18', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978433'), + (35707, 373, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'O4Z5J8lA', '2978438'), + (35708, 373, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'O4Z5J8lA', '2980871'), + (35709, 373, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'O4Z5J8lA', '2981388'), + (35710, 373, 91, 'attending', '2020-05-01 20:50:28', '2025-12-17 19:47:57', 'O4Z5J8lA', '2985130'), + (35711, 373, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'O4Z5J8lA', '2986743'), + (35712, 373, 98, 'attending', '2020-05-21 19:55:06', '2025-12-17 19:47:57', 'O4Z5J8lA', '2987455'), + (35713, 373, 104, 'not_attending', '2020-04-24 14:20:07', '2025-12-17 19:47:57', 'O4Z5J8lA', '2991471'), + (35714, 373, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'O4Z5J8lA', '2993501'), + (35715, 373, 109, 'maybe', '2020-05-13 21:50:50', '2025-12-17 19:47:57', 'O4Z5J8lA', '2994480'), + (35716, 373, 115, 'attending', '2020-05-14 21:47:16', '2025-12-17 19:47:57', 'O4Z5J8lA', '3001217'), + (35717, 373, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'O4Z5J8lA', '3015486'), + (35718, 373, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'O4Z5J8lA', '3023063'), + (35719, 373, 124, 'maybe', '2020-05-28 16:43:05', '2025-12-17 19:47:57', 'O4Z5J8lA', '3023809'), + (35720, 373, 126, 'attending', '2020-05-24 16:34:28', '2025-12-17 19:47:57', 'O4Z5J8lA', '3024022'), + (35721, 373, 129, 'attending', '2020-06-05 20:04:39', '2025-12-17 19:47:58', 'O4Z5J8lA', '3028743'), + (35722, 373, 130, 'maybe', '2020-05-28 16:43:11', '2025-12-17 19:47:57', 'O4Z5J8lA', '3028781'), + (35723, 373, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'O4Z5J8lA', '3034321'), + (35724, 373, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'O4Z5J8lA', '3035881'), + (35725, 373, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'O4Z5J8lA', '3049983'), + (35726, 373, 146, 'attending', '2020-06-27 02:27:04', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058683'), + (35727, 373, 147, 'attending', '2020-08-19 03:47:08', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058684'), + (35728, 373, 148, 'attending', '2020-07-09 23:26:25', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058685'), + (35729, 373, 149, 'attending', '2020-07-18 19:58:00', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058686'), + (35730, 373, 150, 'attending', '2020-07-24 03:12:05', '2025-12-17 19:47:55', 'O4Z5J8lA', '3058687'), + (35731, 373, 151, 'not_attending', '2020-08-27 16:33:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058688'), + (35732, 373, 152, 'attending', '2020-09-04 18:10:31', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058689'), + (35733, 373, 154, 'attending', '2020-08-08 18:20:49', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058691'), + (35734, 373, 155, 'attending', '2020-08-14 19:28:10', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058692'), + (35735, 373, 156, 'not_attending', '2020-09-12 19:32:17', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058693'), + (35736, 373, 157, 'not_attending', '2020-09-19 18:54:18', '2025-12-17 19:47:56', 'O4Z5J8lA', '3058694'), + (35737, 373, 158, 'attending', '2020-09-26 18:33:51', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058695'), + (35738, 373, 159, 'not_attending', '2020-10-02 01:53:04', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058696'), + (35739, 373, 161, 'attending', '2020-10-07 21:42:22', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058698'), + (35740, 373, 162, 'attending', '2020-10-16 06:08:29', '2025-12-17 19:47:52', 'O4Z5J8lA', '3058699'), + (35741, 373, 168, 'attending', '2020-06-17 21:31:11', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058740'), + (35742, 373, 170, 'attending', '2020-06-07 18:55:20', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058742'), + (35743, 373, 171, 'attending', '2020-06-11 17:47:28', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058743'), + (35744, 373, 172, 'not_attending', '2020-06-13 02:32:20', '2025-12-17 19:47:58', 'O4Z5J8lA', '3058959'), + (35745, 373, 173, 'attending', '2020-06-16 04:06:50', '2025-12-17 19:47:58', 'O4Z5J8lA', '3067093'), + (35746, 373, 176, 'attending', '2020-06-18 15:53:00', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073192'), + (35747, 373, 177, 'attending', '2020-06-17 21:31:32', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073193'), + (35748, 373, 178, 'attending', '2020-06-16 00:37:45', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073195'), + (35749, 373, 179, 'not_attending', '2020-06-20 17:01:47', '2025-12-17 19:47:58', 'O4Z5J8lA', '3073687'), + (35750, 373, 181, 'attending', '2020-06-20 20:14:30', '2025-12-17 19:47:58', 'O4Z5J8lA', '3074513'), + (35751, 373, 182, 'attending', '2020-06-27 04:26:45', '2025-12-17 19:47:55', 'O4Z5J8lA', '3074514'), + (35752, 373, 183, 'attending', '2020-06-22 21:05:36', '2025-12-17 19:47:58', 'O4Z5J8lA', '3075228'), + (35753, 373, 185, 'not_attending', '2020-06-21 20:27:39', '2025-12-17 19:47:58', 'O4Z5J8lA', '3075456'), + (35754, 373, 186, 'maybe', '2020-06-25 17:42:43', '2025-12-17 19:47:55', 'O4Z5J8lA', '3083791'), + (35755, 373, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'O4Z5J8lA', '3085151'), + (35756, 373, 191, 'attending', '2020-07-07 21:44:24', '2025-12-17 19:47:55', 'O4Z5J8lA', '3087259'), + (35757, 373, 192, 'attending', '2020-07-15 21:02:06', '2025-12-17 19:47:55', 'O4Z5J8lA', '3087260'), + (35758, 373, 193, 'attending', '2020-07-24 03:12:02', '2025-12-17 19:47:55', 'O4Z5J8lA', '3087261'), + (35759, 373, 195, 'attending', '2020-08-08 18:20:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087264'), + (35760, 373, 196, 'attending', '2020-08-14 19:28:12', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087265'), + (35761, 373, 197, 'attending', '2020-08-19 03:47:37', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087266'), + (35762, 373, 198, 'not_attending', '2020-08-27 16:33:12', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087267'), + (35763, 373, 199, 'attending', '2020-09-04 18:10:38', '2025-12-17 19:47:56', 'O4Z5J8lA', '3087268'), + (35764, 373, 201, 'maybe', '2020-06-25 22:48:10', '2025-12-17 19:47:55', 'O4Z5J8lA', '3088653'), + (35765, 373, 202, 'attending', '2020-07-06 22:45:41', '2025-12-17 19:47:55', 'O4Z5J8lA', '3090353'), + (35766, 373, 203, 'attending', '2020-06-22 17:29:44', '2025-12-17 19:47:58', 'O4Z5J8lA', '3091624'), + (35767, 373, 204, 'attending', '2020-06-28 20:43:04', '2025-12-17 19:47:55', 'O4Z5J8lA', '3102758'), + (35768, 373, 206, 'attending', '2020-07-17 21:12:16', '2025-12-17 19:47:55', 'O4Z5J8lA', '3104806'), + (35769, 373, 207, 'attending', '2020-07-24 02:48:32', '2025-12-17 19:47:55', 'O4Z5J8lA', '3104807'), + (35770, 373, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'O4Z5J8lA', '3106813'), + (35771, 373, 218, 'attending', '2020-07-19 02:08:40', '2025-12-17 19:47:55', 'O4Z5J8lA', '3129262'), + (35772, 373, 221, 'not_attending', '2020-09-17 02:12:08', '2025-12-17 19:47:56', 'O4Z5J8lA', '3129265'), + (35773, 373, 223, 'not_attending', '2020-09-12 19:32:21', '2025-12-17 19:47:56', 'O4Z5J8lA', '3129980'), + (35774, 373, 224, 'attending', '2020-07-17 03:55:31', '2025-12-17 19:47:55', 'O4Z5J8lA', '3130712'), + (35775, 373, 226, 'attending', '2020-07-15 21:02:19', '2025-12-17 19:47:55', 'O4Z5J8lA', '3132817'), + (35776, 373, 227, 'not_attending', '2020-07-16 21:10:19', '2025-12-17 19:47:55', 'O4Z5J8lA', '3132820'), + (35777, 373, 228, 'attending', '2020-07-15 23:54:47', '2025-12-17 19:47:55', 'O4Z5J8lA', '3132821'), + (35778, 373, 232, 'attending', '2020-07-19 21:45:46', '2025-12-17 19:47:55', 'O4Z5J8lA', '3139770'), + (35779, 373, 233, 'attending', '2020-07-19 21:45:21', '2025-12-17 19:47:55', 'O4Z5J8lA', '3139773'), + (35780, 373, 236, 'attending', '2020-07-21 22:42:36', '2025-12-17 19:47:55', 'O4Z5J8lA', '3140873'), + (35781, 373, 239, 'attending', '2020-08-22 04:18:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '3149470'), + (35782, 373, 240, 'not_attending', '2020-09-07 18:40:56', '2025-12-17 19:47:56', 'O4Z5J8lA', '3149471'), + (35783, 373, 264, 'attending', '2020-08-05 20:54:37', '2025-12-17 19:47:56', 'O4Z5J8lA', '3150735'), + (35784, 373, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'O4Z5J8lA', '3155321'), + (35785, 373, 273, 'attending', '2020-08-07 00:14:54', '2025-12-17 19:47:56', 'O4Z5J8lA', '3162006'), + (35786, 373, 274, 'not_attending', '2020-08-06 21:13:39', '2025-12-17 19:47:56', 'O4Z5J8lA', '3163404'), + (35787, 373, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'O4Z5J8lA', '3163442'), + (35788, 373, 280, 'attending', '2020-08-12 20:42:48', '2025-12-17 19:47:56', 'O4Z5J8lA', '3166942'), + (35789, 373, 293, 'attending', '2020-08-19 23:31:29', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172832'), + (35790, 373, 294, 'not_attending', '2020-08-26 22:26:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172833'), + (35791, 373, 295, 'maybe', '2020-08-19 23:30:16', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172834'), + (35792, 373, 296, 'not_attending', '2020-09-11 22:17:40', '2025-12-17 19:47:56', 'O4Z5J8lA', '3172876'), + (35793, 373, 299, 'not_attending', '2020-08-17 21:36:09', '2025-12-17 19:47:56', 'O4Z5J8lA', '3176591'), + (35794, 373, 303, 'not_attending', '2020-08-16 16:26:27', '2025-12-17 19:47:56', 'O4Z5J8lA', '3178444'), + (35795, 373, 305, 'attending', '2020-08-17 21:35:59', '2025-12-17 19:47:56', 'O4Z5J8lA', '3179555'), + (35796, 373, 309, 'attending', '2020-08-21 02:41:02', '2025-12-17 19:47:56', 'O4Z5J8lA', '3185332'), + (35797, 373, 310, 'attending', '2020-08-23 17:52:05', '2025-12-17 19:47:56', 'O4Z5J8lA', '3186005'), + (35798, 373, 311, 'maybe', '2020-09-07 18:41:19', '2025-12-17 19:47:56', 'O4Z5J8lA', '3186057'), + (35799, 373, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'O4Z5J8lA', '3191735'), + (35800, 373, 319, 'maybe', '2020-08-30 22:19:52', '2025-12-17 19:47:56', 'O4Z5J8lA', '3194179'), + (35801, 373, 324, 'maybe', '2020-09-23 23:49:46', '2025-12-17 19:47:56', 'O4Z5J8lA', '3197082'), + (35802, 373, 325, 'attending', '2020-09-23 19:30:48', '2025-12-17 19:47:51', 'O4Z5J8lA', '3197083'), + (35803, 373, 335, 'not_attending', '2020-09-04 21:52:09', '2025-12-17 19:47:56', 'O4Z5J8lA', '3200209'), + (35804, 373, 339, 'not_attending', '2020-09-07 18:40:14', '2025-12-17 19:47:56', 'O4Z5J8lA', '3204469'), + (35805, 373, 340, 'attending', '2020-09-17 02:12:42', '2025-12-17 19:47:56', 'O4Z5J8lA', '3204470'), + (35806, 373, 341, 'maybe', '2020-09-25 22:07:02', '2025-12-17 19:47:52', 'O4Z5J8lA', '3204471'), + (35807, 373, 342, 'maybe', '2020-10-02 01:52:47', '2025-12-17 19:47:52', 'O4Z5J8lA', '3204472'), + (35808, 373, 355, 'not_attending', '2020-09-17 02:11:38', '2025-12-17 19:47:56', 'O4Z5J8lA', '3212571'), + (35809, 373, 356, 'not_attending', '2020-09-23 23:50:06', '2025-12-17 19:47:51', 'O4Z5J8lA', '3212572'), + (35810, 373, 362, 'attending', '2020-09-26 18:33:58', '2025-12-17 19:47:52', 'O4Z5J8lA', '3214207'), + (35811, 373, 363, 'not_attending', '2020-09-27 18:35:44', '2025-12-17 19:47:52', 'O4Z5J8lA', '3217037'), + (35812, 373, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'O4Z5J8lA', '3218510'), + (35813, 373, 375, 'not_attending', '2020-10-08 21:53:10', '2025-12-17 19:47:52', 'O4Z5J8lA', '3222825'), + (35814, 373, 384, 'not_attending', '2020-09-29 23:25:16', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228696'), + (35815, 373, 385, 'not_attending', '2020-10-02 01:53:11', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228698'), + (35816, 373, 386, 'attending', '2020-10-07 21:42:26', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228699'), + (35817, 373, 387, 'attending', '2020-10-16 06:08:30', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228700'), + (35818, 373, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'O4Z5J8lA', '3228701'), + (35819, 373, 416, 'not_attending', '2020-10-09 20:08:33', '2025-12-17 19:47:52', 'O4Z5J8lA', '3238073'), + (35820, 373, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'O4Z5J8lA', '3245751'), + (35821, 373, 425, 'not_attending', '2020-10-16 05:58:53', '2025-12-17 19:47:52', 'O4Z5J8lA', '3250097'), + (35822, 373, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'O4Z5J8lA', '3250232'), + (35823, 373, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'O4Z5J8lA', '3256168'), + (35824, 373, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'O4Z5J8lA', '3263578'), + (35825, 373, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'O4Z5J8lA', '3276428'), + (35826, 373, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'O4Z5J8lA', '3281467'), + (35827, 373, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'O4Z5J8lA', '3281470'), + (35828, 373, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'O4Z5J8lA', '3281829'), + (35829, 373, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'O4Z5J8lA', '3285413'), + (35830, 373, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'O4Z5J8lA', '3285414'), + (35831, 373, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'O4Z5J8lA', '3297764'), + (35832, 373, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'O4Z5J8lA', '3313856'), + (35833, 373, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'O4Z5J8lA', '3314909'), + (35834, 373, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'O4Z5J8lA', '3314964'), + (35835, 373, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'O4Z5J8lA', '3323365'), + (35836, 373, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'O4Z5J8lA', '3329383'), + (35837, 373, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'O4Z5J8lA', '3351539'), + (35838, 373, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'O4Z5J8lA', '3386848'), + (35839, 373, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'O4Z5J8lA', '3389527'), + (35840, 373, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'O4Z5J8lA', '3396499'), + (35841, 373, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'O4Z5J8lA', '3403650'), + (35842, 373, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'O4Z5J8lA', '3406988'), + (35843, 373, 555, 'not_attending', '2021-01-23 23:08:06', '2025-12-17 19:47:49', 'O4Z5J8lA', '3416576'), + (35844, 373, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'O4Z5J8lA', '3418925'), + (35845, 373, 568, 'not_attending', '2021-01-31 00:01:22', '2025-12-17 19:47:50', 'O4Z5J8lA', '3430267'), + (35846, 373, 569, 'not_attending', '2021-01-25 06:51:04', '2025-12-17 19:47:49', 'O4Z5J8lA', '3432673'), + (35847, 373, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'O4Z5J8lA', '3468125'), + (35848, 373, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'O4Z5J8lA', '3470303'), + (35849, 373, 604, 'not_attending', '2021-02-25 17:31:08', '2025-12-17 19:47:50', 'O4Z5J8lA', '3470305'), + (35850, 373, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'O4Z5J8lA', '3470991'), + (35851, 373, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'O4Z5J8lA', '3517815'), + (35852, 373, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'O4Z5J8lA', '3517816'), + (35853, 373, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'O4Z5J8lA', '3523941'), + (35854, 373, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'O4Z5J8lA', '3533850'), + (35855, 373, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'O4Z5J8lA', '3536632'), + (35856, 373, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'O4Z5J8lA', '3536656'), + (35857, 373, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'O4Z5J8lA', '3539916'), + (35858, 373, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'O4Z5J8lA', '3539917'), + (35859, 373, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'O4Z5J8lA', '3539918'), + (35860, 373, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539919'), + (35861, 373, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539920'), + (35862, 373, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539921'), + (35863, 373, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'O4Z5J8lA', '3539922'), + (35864, 373, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'O4Z5J8lA', '3539923'), + (35865, 373, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'O4Z5J8lA', '3539927'), + (35866, 373, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'O4Z5J8lA', '3582734'), + (35867, 373, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'O4Z5J8lA', '3583262'), + (35868, 373, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'O4Z5J8lA', '3619523'), + (35869, 373, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'O4Z5J8lA', '3661369'), + (35870, 373, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'O4Z5J8lA', '3674262'), + (35871, 373, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'O4Z5J8lA', '3677402'), + (35872, 373, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'O4Z5J8lA', '3730212'), + (35873, 373, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'O4Z5J8lA', '3793156'), + (35874, 373, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'O4Z5J8lA', '3974109'), + (35875, 373, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'O4Z5J8lA', '3975311'), + (35876, 373, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'O4Z5J8lA', '3975312'), + (35877, 373, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'O4Z5J8lA', '3994992'), + (35878, 373, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'O4Z5J8lA', '4014338'), + (35879, 373, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'O4Z5J8lA', '4021848'), + (35880, 373, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'O4Z5J8lA', '4136744'), + (35881, 373, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'O4Z5J8lA', '4136937'), + (35882, 373, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'O4Z5J8lA', '4136938'), + (35883, 373, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'O4Z5J8lA', '4136947'), + (35884, 373, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'O4Z5J8lA', '4210314'), + (35885, 373, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'O4Z5J8lA', '4225444'), + (35886, 373, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'O4Z5J8lA', '4239259'), + (35887, 373, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'O4Z5J8lA', '4240316'), + (35888, 373, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'O4Z5J8lA', '4250163'), + (35889, 373, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'O4Z5J8lA', '4275957'), + (35890, 373, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4Z5J8lA', '6045684'), + (35891, 374, 871, 'not_attending', '2021-07-06 03:20:54', '2025-12-17 19:47:39', 'GmjzxPam', '4136938'), + (35892, 374, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'GmjzxPam', '4136947'), + (35893, 374, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjzxPam', '4210314'), + (35894, 374, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjzxPam', '4225444'), + (35895, 374, 892, 'maybe', '2021-07-06 00:41:35', '2025-12-17 19:47:39', 'GmjzxPam', '4229418'), + (35896, 374, 895, 'maybe', '2021-07-10 00:51:17', '2025-12-17 19:47:39', 'GmjzxPam', '4229424'), + (35897, 374, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GmjzxPam', '4240316'), + (35898, 374, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GmjzxPam', '4240317'), + (35899, 374, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GmjzxPam', '4240318'), + (35900, 374, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GmjzxPam', '4240320'), + (35901, 374, 916, 'maybe', '2021-07-12 02:53:39', '2025-12-17 19:47:40', 'GmjzxPam', '4273772'), + (35902, 374, 917, 'maybe', '2021-07-12 03:16:00', '2025-12-17 19:47:39', 'GmjzxPam', '4274481'), + (35903, 374, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjzxPam', '4275957'), + (35904, 374, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjzxPam', '4277819'), + (35905, 374, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjzxPam', '4301723'), + (35906, 374, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GmjzxPam', '4302093'), + (35907, 374, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjzxPam', '4304151'), + (35908, 374, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'GmjzxPam', '4345519'), + (35909, 374, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjzxPam', '4356801'), + (35910, 374, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'GmjzxPam', '4358025'), + (35911, 374, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GmjzxPam', '4366186'), + (35912, 374, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GmjzxPam', '4366187'), + (35913, 374, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'GmjzxPam', '4402823'), + (35914, 374, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GmjzxPam', '4420735'), + (35915, 374, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GmjzxPam', '4420738'), + (35916, 374, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GmjzxPam', '4420739'), + (35917, 374, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjzxPam', '4420741'), + (35918, 374, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GmjzxPam', '4420744'), + (35919, 374, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GmjzxPam', '4420747'), + (35920, 374, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GmjzxPam', '4420748'), + (35921, 374, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjzxPam', '4420749'), + (35922, 374, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GmjzxPam', '4461883'), + (35923, 374, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GmjzxPam', '4508342'), + (35924, 374, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GmjzxPam', '4568602'), + (35925, 374, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjzxPam', '6045684'), + (35926, 375, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxKz7n24', '6699913'), + (35927, 375, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxKz7n24', '7030380'), + (35928, 375, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxKz7n24', '7033677'), + (35929, 375, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxKz7n24', '7035415'), + (35930, 375, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxKz7n24', '7044715'), + (35931, 375, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxKz7n24', '7050318'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (35932, 375, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxKz7n24', '7050319'), + (35933, 375, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxKz7n24', '7050322'), + (35934, 375, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxKz7n24', '7057804'), + (35935, 375, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxKz7n24', '7072824'), + (35936, 375, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxKz7n24', '7074348'), + (35937, 375, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxKz7n24', '7089267'), + (35938, 375, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxKz7n24', '7098747'), + (35939, 375, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxKz7n24', '7113468'), + (35940, 375, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxKz7n24', '7114856'), + (35941, 375, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxKz7n24', '7114951'), + (35942, 375, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxKz7n24', '7114955'), + (35943, 375, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxKz7n24', '7114956'), + (35944, 375, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxKz7n24', '7153615'), + (35945, 375, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxKz7n24', '7159484'), + (35946, 375, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxKz7n24', '7178446'), + (35947, 376, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dw8Wbv0m', '6514659'), + (35948, 376, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dw8Wbv0m', '6514660'), + (35949, 376, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dw8Wbv0m', '6584747'), + (35950, 376, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dw8Wbv0m', '6587097'), + (35951, 376, 2359, 'attending', '2023-11-30 05:14:09', '2025-12-17 19:46:48', 'dw8Wbv0m', '6596617'), + (35952, 376, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dw8Wbv0m', '6609022'), + (35953, 376, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dw8Wbv0m', '6632757'), + (35954, 376, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dw8Wbv0m', '6644187'), + (35955, 376, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dw8Wbv0m', '6648951'), + (35956, 376, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dw8Wbv0m', '6648952'), + (35957, 376, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dw8Wbv0m', '6651141'), + (35958, 376, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dw8Wbv0m', '6655401'), + (35959, 376, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dw8Wbv0m', '6661585'), + (35960, 376, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dw8Wbv0m', '6661588'), + (35961, 376, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dw8Wbv0m', '6661589'), + (35962, 376, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dw8Wbv0m', '6699906'), + (35963, 376, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dw8Wbv0m', '6699913'), + (35964, 376, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dw8Wbv0m', '6701109'), + (35965, 376, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dw8Wbv0m', '6705219'), + (35966, 376, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dw8Wbv0m', '6710153'), + (35967, 376, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dw8Wbv0m', '6711552'), + (35968, 376, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dw8Wbv0m', '6711553'), + (35969, 376, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dw8Wbv0m', '6722688'), + (35970, 376, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dw8Wbv0m', '6730620'), + (35971, 376, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dw8Wbv0m', '6730642'), + (35972, 376, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dw8Wbv0m', '6740364'), + (35973, 376, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dw8Wbv0m', '6743829'), + (35974, 376, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dw8Wbv0m', '7030380'), + (35975, 376, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dw8Wbv0m', '7033677'), + (35976, 376, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dw8Wbv0m', '7035415'), + (35977, 376, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dw8Wbv0m', '7044715'), + (35978, 376, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dw8Wbv0m', '7050318'), + (35979, 376, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dw8Wbv0m', '7050319'), + (35980, 376, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dw8Wbv0m', '7050322'), + (35981, 376, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dw8Wbv0m', '7057804'), + (35982, 376, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dw8Wbv0m', '7072824'), + (35983, 376, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dw8Wbv0m', '7074348'), + (35984, 376, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dw8Wbv0m', '7074364'), + (35985, 376, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dw8Wbv0m', '7089267'), + (35986, 376, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dw8Wbv0m', '7098747'), + (35987, 376, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dw8Wbv0m', '7113468'), + (35988, 376, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dw8Wbv0m', '7114856'), + (35989, 376, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dw8Wbv0m', '7114951'), + (35990, 376, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dw8Wbv0m', '7114955'), + (35991, 376, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dw8Wbv0m', '7114956'), + (35992, 376, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dw8Wbv0m', '7114957'), + (35993, 376, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dw8Wbv0m', '7153615'), + (35994, 376, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dw8Wbv0m', '7159484'), + (35995, 376, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dw8Wbv0m', '7178446'), + (35996, 376, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dw8Wbv0m', '7220467'), + (35997, 376, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dw8Wbv0m', '7240354'), + (35998, 376, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dw8Wbv0m', '7251633'), + (35999, 376, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dw8Wbv0m', '7324073'), + (36000, 376, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dw8Wbv0m', '7324074'), + (36001, 376, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dw8Wbv0m', '7324075'), + (36002, 376, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dw8Wbv0m', '7324078'), + (36003, 376, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dw8Wbv0m', '7324082'), + (36004, 376, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dw8Wbv0m', '7331457'), + (36005, 376, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dw8Wbv0m', '7363643'), + (36006, 376, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dw8Wbv0m', '7368606'), + (36007, 376, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dw8Wbv0m', '7397462'), + (36008, 376, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dw8Wbv0m', '7424275'), + (36009, 376, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dw8Wbv0m', '7432751'), + (36010, 376, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dw8Wbv0m', '7432752'), + (36011, 376, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dw8Wbv0m', '7432753'), + (36012, 376, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432754'), + (36013, 376, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432755'), + (36014, 376, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432756'), + (36015, 376, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432758'), + (36016, 376, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dw8Wbv0m', '7432759'), + (36017, 376, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dw8Wbv0m', '7433834'), + (36018, 376, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dw8Wbv0m', '7470197'), + (36019, 376, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dw8Wbv0m', '7685613'), + (36020, 376, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dw8Wbv0m', '7688194'), + (36021, 376, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dw8Wbv0m', '7688196'), + (36022, 376, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dw8Wbv0m', '7688289'), + (36023, 376, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dw8Wbv0m', '7692763'), + (36024, 376, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dw8Wbv0m', '7697552'), + (36025, 376, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dw8Wbv0m', '7699878'), + (36026, 376, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dw8Wbv0m', '7704043'), + (36027, 376, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dw8Wbv0m', '7712467'), + (36028, 376, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dw8Wbv0m', '7713585'), + (36029, 376, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dw8Wbv0m', '7713586'), + (36030, 376, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dw8Wbv0m', '7738518'), + (36031, 376, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dw8Wbv0m', '7750636'), + (36032, 376, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dw8Wbv0m', '7796540'), + (36033, 376, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dw8Wbv0m', '7796541'), + (36034, 376, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dw8Wbv0m', '7796542'), + (36035, 376, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dw8Wbv0m', '7825913'), + (36036, 376, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dw8Wbv0m', '7826209'), + (36037, 376, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dw8Wbv0m', '7834742'), + (36038, 376, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dw8Wbv0m', '7842108'), + (36039, 376, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dw8Wbv0m', '7842902'), + (36040, 376, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dw8Wbv0m', '7842903'), + (36041, 376, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dw8Wbv0m', '7842904'), + (36042, 376, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dw8Wbv0m', '7842905'), + (36043, 376, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dw8Wbv0m', '7855719'), + (36044, 376, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dw8Wbv0m', '7860683'), + (36045, 376, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dw8Wbv0m', '7860684'), + (36046, 376, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dw8Wbv0m', '7866095'), + (36047, 376, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dw8Wbv0m', '7869170'), + (36048, 376, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dw8Wbv0m', '7869188'), + (36049, 376, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dw8Wbv0m', '7869201'), + (36050, 376, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dw8Wbv0m', '7877465'), + (36051, 376, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dw8Wbv0m', '7888250'), + (36052, 376, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dw8Wbv0m', '7904777'), + (36053, 376, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dw8Wbv0m', '8349164'), + (36054, 376, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dw8Wbv0m', '8349545'), + (36055, 376, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dw8Wbv0m', '8368028'), + (36056, 376, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dw8Wbv0m', '8368029'), + (36057, 376, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dw8Wbv0m', '8388462'), + (36058, 376, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dw8Wbv0m', '8400273'), + (36059, 376, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dw8Wbv0m', '8400275'), + (36060, 376, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dw8Wbv0m', '8400276'), + (36061, 376, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dw8Wbv0m', '8404977'), + (36062, 376, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dw8Wbv0m', '8430783'), + (36063, 376, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dw8Wbv0m', '8430784'), + (36064, 376, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dw8Wbv0m', '8430799'), + (36065, 376, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dw8Wbv0m', '8430800'), + (36066, 376, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dw8Wbv0m', '8430801'), + (36067, 376, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dw8Wbv0m', '8438709'), + (36068, 376, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dw8Wbv0m', '8457738'), + (36069, 376, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dw8Wbv0m', '8459566'), + (36070, 376, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dw8Wbv0m', '8459567'), + (36071, 376, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dw8Wbv0m', '8461032'), + (36072, 376, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dw8Wbv0m', '8477877'), + (36073, 376, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dw8Wbv0m', '8485688'), + (36074, 376, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dw8Wbv0m', '8490587'), + (36075, 376, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dw8Wbv0m', '8493552'), + (36076, 376, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dw8Wbv0m', '8493553'), + (36077, 376, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dw8Wbv0m', '8493554'), + (36078, 376, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dw8Wbv0m', '8493555'), + (36079, 376, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dw8Wbv0m', '8493556'), + (36080, 376, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dw8Wbv0m', '8493557'), + (36081, 376, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dw8Wbv0m', '8493558'), + (36082, 376, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dw8Wbv0m', '8493559'), + (36083, 376, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dw8Wbv0m', '8493560'), + (36084, 376, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dw8Wbv0m', '8493561'), + (36085, 376, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dw8Wbv0m', '8493572'), + (36086, 376, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dw8Wbv0m', '8540725'), + (36087, 376, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dw8Wbv0m', '8555421'), + (36088, 377, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40kNGKEA', '6045684'), + (36089, 378, 1431, 'attending', '2022-06-11 00:16:07', '2025-12-17 19:47:30', '41WDLg7m', '5389605'), + (36090, 378, 1442, 'attending', '2022-06-18 22:02:14', '2025-12-17 19:47:17', '41WDLg7m', '5397265'), + (36091, 378, 1450, 'attending', '2022-06-10 20:03:41', '2025-12-17 19:47:30', '41WDLg7m', '5403421'), + (36092, 378, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WDLg7m', '5403967'), + (36093, 378, 1456, 'attending', '2022-06-16 22:16:45', '2025-12-17 19:47:17', '41WDLg7m', '5404779'), + (36094, 378, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WDLg7m', '5404786'), + (36095, 378, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WDLg7m', '5405203'), + (36096, 378, 1463, 'maybe', '2022-06-14 17:36:29', '2025-12-17 19:47:31', '41WDLg7m', '5405208'), + (36097, 378, 1466, 'not_attending', '2022-06-16 22:50:57', '2025-12-17 19:47:17', '41WDLg7m', '5406427'), + (36098, 378, 1473, 'attending', '2022-06-14 17:36:54', '2025-12-17 19:47:31', '41WDLg7m', '5407267'), + (36099, 378, 1476, 'not_attending', '2022-06-19 20:51:16', '2025-12-17 19:47:17', '41WDLg7m', '5408130'), + (36100, 378, 1478, 'not_attending', '2022-06-24 21:58:32', '2025-12-17 19:47:19', '41WDLg7m', '5408794'), + (36101, 378, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WDLg7m', '5411699'), + (36102, 378, 1481, 'not_attending', '2022-06-20 02:04:39', '2025-12-17 19:47:17', '41WDLg7m', '5412237'), + (36103, 378, 1482, 'attending', '2022-06-20 01:56:51', '2025-12-17 19:47:19', '41WDLg7m', '5412550'), + (36104, 378, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WDLg7m', '5415046'), + (36105, 378, 1488, 'attending', '2022-06-26 01:04:24', '2025-12-17 19:47:19', '41WDLg7m', '5420154'), + (36106, 378, 1490, 'not_attending', '2022-06-26 01:02:13', '2025-12-17 19:47:19', '41WDLg7m', '5420156'), + (36107, 378, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WDLg7m', '5422086'), + (36108, 378, 1496, 'attending', '2022-06-26 17:10:25', '2025-12-17 19:47:19', '41WDLg7m', '5422404'), + (36109, 378, 1497, 'attending', '2022-06-26 17:10:44', '2025-12-17 19:47:19', '41WDLg7m', '5422405'), + (36110, 378, 1498, 'maybe', '2022-07-01 19:26:33', '2025-12-17 19:47:19', '41WDLg7m', '5422406'), + (36111, 378, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WDLg7m', '5424565'), + (36112, 378, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WDLg7m', '5426882'), + (36113, 378, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WDLg7m', '5427083'), + (36114, 378, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41WDLg7m', '5441125'), + (36115, 378, 1514, 'not_attending', '2022-07-21 03:01:38', '2025-12-17 19:47:20', '41WDLg7m', '5441126'), + (36116, 378, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WDLg7m', '5441128'), + (36117, 378, 1516, 'not_attending', '2022-08-20 14:45:20', '2025-12-17 19:47:23', '41WDLg7m', '5441129'), + (36118, 378, 1517, 'attending', '2022-08-27 15:10:28', '2025-12-17 19:47:23', '41WDLg7m', '5441130'), + (36119, 378, 1518, 'attending', '2022-08-31 10:18:17', '2025-12-17 19:47:24', '41WDLg7m', '5441131'), + (36120, 378, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41WDLg7m', '5441132'), + (36121, 378, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WDLg7m', '5446643'), + (36122, 378, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WDLg7m', '5453325'), + (36123, 378, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WDLg7m', '5454516'), + (36124, 378, 1544, 'maybe', '2022-09-11 03:36:00', '2025-12-17 19:47:11', '41WDLg7m', '5454517'), + (36125, 378, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WDLg7m', '5454605'), + (36126, 378, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WDLg7m', '5455037'), + (36127, 378, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WDLg7m', '5461278'), + (36128, 378, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WDLg7m', '5469480'), + (36129, 378, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WDLg7m', '5471073'), + (36130, 378, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '41WDLg7m', '5474663'), + (36131, 378, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WDLg7m', '5482022'), + (36132, 378, 1575, 'attending', '2022-08-26 22:48:44', '2025-12-17 19:47:23', '41WDLg7m', '5482250'), + (36133, 378, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WDLg7m', '5482793'), + (36134, 378, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WDLg7m', '5488912'), + (36135, 378, 1584, 'maybe', '2022-08-27 15:00:13', '2025-12-17 19:47:23', '41WDLg7m', '5492004'), + (36136, 378, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WDLg7m', '5492192'), + (36137, 378, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WDLg7m', '5493139'), + (36138, 378, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WDLg7m', '5493200'), + (36139, 378, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WDLg7m', '5502188'), + (36140, 378, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41WDLg7m', '5505059'), + (36141, 378, 1609, 'maybe', '2022-08-28 15:54:05', '2025-12-17 19:47:23', '41WDLg7m', '5506590'), + (36142, 378, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41WDLg7m', '5509055'), + (36143, 378, 1618, 'maybe', '2022-08-28 18:46:04', '2025-12-17 19:47:23', '41WDLg7m', '5512005'), + (36144, 378, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WDLg7m', '5512862'), + (36145, 378, 1621, 'not_attending', '2022-08-23 00:12:56', '2025-12-17 19:47:23', '41WDLg7m', '5513531'), + (36146, 378, 1623, 'attending', '2022-08-23 14:41:35', '2025-12-17 19:47:23', '41WDLg7m', '5513678'), + (36147, 378, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WDLg7m', '5513985'), + (36148, 378, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '41WDLg7m', '5519981'), + (36149, 378, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41WDLg7m', '5522550'), + (36150, 378, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41WDLg7m', '5534683'), + (36151, 378, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '41WDLg7m', '5537735'), + (36152, 378, 1636, 'attending', '2022-09-04 18:38:53', '2025-12-17 19:47:24', '41WDLg7m', '5538454'), + (36153, 378, 1637, 'attending', '2022-08-30 22:20:23', '2025-12-17 19:47:24', '41WDLg7m', '5539591'), + (36154, 378, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41WDLg7m', '5540859'), + (36155, 378, 1641, 'attending', '2022-08-31 22:41:10', '2025-12-17 19:47:24', '41WDLg7m', '5544226'), + (36156, 378, 1642, 'attending', '2022-08-31 22:41:39', '2025-12-17 19:47:24', '41WDLg7m', '5544227'), + (36157, 378, 1644, 'maybe', '2022-09-11 03:36:15', '2025-12-17 19:47:11', '41WDLg7m', '5545857'), + (36158, 378, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41WDLg7m', '5546619'), + (36159, 378, 1653, 'maybe', '2022-09-05 23:27:52', '2025-12-17 19:47:11', '41WDLg7m', '5554400'), + (36160, 378, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41WDLg7m', '5555245'), + (36161, 378, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41WDLg7m', '5557747'), + (36162, 378, 1661, 'maybe', '2022-09-09 00:41:49', '2025-12-17 19:47:24', '41WDLg7m', '5560254'), + (36163, 378, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41WDLg7m', '5560255'), + (36164, 378, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41WDLg7m', '5562906'), + (36165, 378, 1668, 'maybe', '2022-09-13 20:47:03', '2025-12-17 19:47:12', '41WDLg7m', '5563222'), + (36166, 378, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41WDLg7m', '5600604'), + (36167, 378, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41WDLg7m', '5605544'), + (36168, 378, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', '41WDLg7m', '5606737'), + (36169, 378, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41WDLg7m', '5630960'), + (36170, 378, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41WDLg7m', '5630961'), + (36171, 378, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41WDLg7m', '5630962'), + (36172, 378, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41WDLg7m', '5630966'), + (36173, 378, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41WDLg7m', '5630967'), + (36174, 378, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41WDLg7m', '5630968'), + (36175, 378, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41WDLg7m', '5635406'), + (36176, 378, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41WDLg7m', '5638765'), + (36177, 378, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41WDLg7m', '5640097'), + (36178, 378, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41WDLg7m', '5640843'), + (36179, 378, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41WDLg7m', '5641521'), + (36180, 378, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41WDLg7m', '5642818'), + (36181, 378, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41WDLg7m', '5652395'), + (36182, 378, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41WDLg7m', '5670445'), + (36183, 378, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41WDLg7m', '5671637'), + (36184, 378, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41WDLg7m', '5672329'), + (36185, 378, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41WDLg7m', '5674057'), + (36186, 378, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41WDLg7m', '5674060'), + (36187, 378, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41WDLg7m', '5677461'), + (36188, 378, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41WDLg7m', '5698046'), + (36189, 378, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41WDLg7m', '5699760'), + (36190, 378, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41WDLg7m', '5741601'), + (36191, 378, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41WDLg7m', '5763458'), + (36192, 378, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41WDLg7m', '5774172'), + (36193, 378, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '41WDLg7m', '5818247'), + (36194, 378, 1835, 'maybe', '2023-01-05 01:57:12', '2025-12-17 19:47:05', '41WDLg7m', '5819471'), + (36195, 378, 1840, 'maybe', '2022-12-08 01:09:54', '2025-12-17 19:47:17', '41WDLg7m', '5822288'), + (36196, 378, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41WDLg7m', '5827739'), + (36197, 378, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41WDLg7m', '5844306'), + (36198, 378, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41WDLg7m', '5850159'), + (36199, 378, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41WDLg7m', '5858999'), + (36200, 378, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41WDLg7m', '5871984'), + (36201, 378, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41WDLg7m', '5876354'), + (36202, 378, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41WDLg7m', '5880939'), + (36203, 378, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '41WDLg7m', '5880942'), + (36204, 378, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '41WDLg7m', '5880943'), + (36205, 378, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41WDLg7m', '5887890'), + (36206, 378, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41WDLg7m', '5888598'), + (36207, 378, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41WDLg7m', '5893260'), + (36208, 378, 1888, 'maybe', '2023-02-17 21:46:33', '2025-12-17 19:47:07', '41WDLg7m', '5900197'), + (36209, 378, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '41WDLg7m', '5900200'), + (36210, 378, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '41WDLg7m', '5900202'), + (36211, 378, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '41WDLg7m', '5900203'), + (36212, 378, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '41WDLg7m', '5910526'), + (36213, 378, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '41WDLg7m', '5910528'), + (36214, 378, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '41WDLg7m', '5936234'), + (36215, 378, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '41WDLg7m', '5958351'), + (36216, 378, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '41WDLg7m', '5959751'), + (36217, 378, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '41WDLg7m', '5959755'), + (36218, 378, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '41WDLg7m', '5960055'), + (36219, 378, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '41WDLg7m', '5961684'), + (36220, 378, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '41WDLg7m', '5962132'), + (36221, 378, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '41WDLg7m', '5962133'), + (36222, 378, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '41WDLg7m', '5962134'), + (36223, 378, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '41WDLg7m', '5962317'), + (36224, 378, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '41WDLg7m', '5962318'), + (36225, 378, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '41WDLg7m', '5965933'), + (36226, 378, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '41WDLg7m', '5967014'), + (36227, 378, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '41WDLg7m', '5972815'), + (36228, 378, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '41WDLg7m', '5974016'), + (36229, 378, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '41WDLg7m', '5981515'), + (36230, 378, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '41WDLg7m', '5993516'), + (36231, 378, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '41WDLg7m', '5998939'), + (36232, 378, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '41WDLg7m', '6028191'), + (36233, 378, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '41WDLg7m', '6040066'), + (36234, 378, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '41WDLg7m', '6042717'), + (36235, 378, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '41WDLg7m', '6044838'), + (36236, 378, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '41WDLg7m', '6044839'), + (36237, 378, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WDLg7m', '6045684'), + (36238, 378, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '41WDLg7m', '6050104'), + (36239, 378, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '41WDLg7m', '6053195'), + (36240, 378, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '41WDLg7m', '6053198'), + (36241, 378, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '41WDLg7m', '6056085'), + (36242, 378, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '41WDLg7m', '6056916'), + (36243, 378, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '41WDLg7m', '6059290'), + (36244, 378, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '41WDLg7m', '6060328'), + (36245, 378, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '41WDLg7m', '6061037'), + (36246, 378, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '41WDLg7m', '6061039'), + (36247, 378, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '41WDLg7m', '6067245'), + (36248, 378, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '41WDLg7m', '6068094'), + (36249, 378, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '41WDLg7m', '6068252'), + (36250, 378, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '41WDLg7m', '6068253'), + (36251, 378, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '41WDLg7m', '6068254'), + (36252, 378, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '41WDLg7m', '6068280'), + (36253, 378, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '41WDLg7m', '6069093'), + (36254, 378, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '41WDLg7m', '6072528'), + (36255, 378, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '41WDLg7m', '6079840'), + (36256, 378, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '41WDLg7m', '6083398'), + (36257, 378, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '41WDLg7m', '6093504'), + (36258, 378, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '41WDLg7m', '6097414'), + (36259, 378, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '41WDLg7m', '6097442'), + (36260, 378, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '41WDLg7m', '6097684'), + (36261, 378, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '41WDLg7m', '6098762'), + (36262, 378, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '41WDLg7m', '6101361'), + (36263, 378, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '41WDLg7m', '6101362'), + (36264, 378, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '41WDLg7m', '6107314'), + (36265, 378, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '41WDLg7m', '6120034'), + (36266, 378, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '41WDLg7m', '6136733'), + (36267, 378, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '41WDLg7m', '6137989'), + (36268, 378, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '41WDLg7m', '6150864'), + (36269, 378, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '41WDLg7m', '6155491'), + (36270, 378, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '41WDLg7m', '6164417'), + (36271, 378, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '41WDLg7m', '6166388'), + (36272, 378, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '41WDLg7m', '6176439'), + (36273, 378, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '41WDLg7m', '6182410'), + (36274, 378, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '41WDLg7m', '6185812'), + (36275, 378, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '41WDLg7m', '6187651'), + (36276, 378, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '41WDLg7m', '6187963'), + (36277, 378, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '41WDLg7m', '6187964'), + (36278, 378, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '41WDLg7m', '6187966'), + (36279, 378, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '41WDLg7m', '6187967'), + (36280, 378, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '41WDLg7m', '6187969'), + (36281, 378, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '41WDLg7m', '6334878'), + (36282, 378, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '41WDLg7m', '6337236'), + (36283, 378, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '41WDLg7m', '6337970'), + (36284, 378, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '41WDLg7m', '6338308'), + (36285, 378, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '41WDLg7m', '6341710'), + (36286, 378, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '41WDLg7m', '6342044'), + (36287, 378, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '41WDLg7m', '6342298'), + (36288, 378, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '41WDLg7m', '6343294'), + (36289, 378, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '41WDLg7m', '6347034'), + (36290, 378, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '41WDLg7m', '6347056'), + (36291, 378, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '41WDLg7m', '6353830'), + (36292, 378, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '41WDLg7m', '6353831'), + (36293, 378, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '41WDLg7m', '6357867'), + (36294, 378, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '41WDLg7m', '6358652'), + (36295, 378, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '41WDLg7m', '6361709'), + (36296, 378, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '41WDLg7m', '6361710'), + (36297, 378, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '41WDLg7m', '6361711'), + (36298, 378, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '41WDLg7m', '6361712'), + (36299, 378, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '41WDLg7m', '6361713'), + (36300, 378, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '41WDLg7m', '6382573'), + (36301, 378, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '41WDLg7m', '6388604'), + (36302, 378, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '41WDLg7m', '6394629'), + (36303, 378, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '41WDLg7m', '6394631'), + (36304, 378, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '41WDLg7m', '6440863'), + (36305, 378, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '41WDLg7m', '6445440'), + (36306, 378, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '41WDLg7m', '6453951'), + (36307, 378, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '41WDLg7m', '6461696'), + (36308, 378, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '41WDLg7m', '6462129'), + (36309, 378, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '41WDLg7m', '6463218'), + (36310, 378, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '41WDLg7m', '6472181'), + (36311, 378, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41WDLg7m', '6482693'), + (36312, 378, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '41WDLg7m', '6484200'), + (36313, 378, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '41WDLg7m', '6484680'), + (36314, 378, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41WDLg7m', '6507741'), + (36315, 378, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41WDLg7m', '6514659'), + (36316, 378, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41WDLg7m', '6514660'), + (36317, 378, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41WDLg7m', '6519103'), + (36318, 378, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41WDLg7m', '6535681'), + (36319, 378, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41WDLg7m', '6584747'), + (36320, 378, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41WDLg7m', '6587097'), + (36321, 378, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41WDLg7m', '6609022'), + (36322, 378, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41WDLg7m', '6632757'), + (36323, 378, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41WDLg7m', '6644187'), + (36324, 378, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41WDLg7m', '6648951'), + (36325, 378, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41WDLg7m', '6648952'), + (36326, 378, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41WDLg7m', '6655401'), + (36327, 378, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41WDLg7m', '6661585'), + (36328, 378, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41WDLg7m', '6661588'), + (36329, 378, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41WDLg7m', '6661589'), + (36330, 378, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41WDLg7m', '6699906'), + (36331, 378, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41WDLg7m', '6699913'), + (36332, 378, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41WDLg7m', '6701109'), + (36333, 378, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41WDLg7m', '6705219'), + (36334, 378, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41WDLg7m', '6710153'), + (36335, 378, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41WDLg7m', '6711552'), + (36336, 378, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '41WDLg7m', '6711553'), + (36337, 378, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41WDLg7m', '6722688'), + (36338, 378, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41WDLg7m', '6730620'), + (36339, 378, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41WDLg7m', '6740364'), + (36340, 378, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41WDLg7m', '6743829'), + (36341, 378, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41WDLg7m', '7030380'), + (36342, 378, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41WDLg7m', '7033677'), + (36343, 378, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '41WDLg7m', '7044715'), + (36344, 378, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '41WDLg7m', '7050318'), + (36345, 378, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '41WDLg7m', '7050319'), + (36346, 378, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '41WDLg7m', '7050322'), + (36347, 378, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '41WDLg7m', '7057804'), + (36348, 378, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '41WDLg7m', '7072824'), + (36349, 378, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '41WDLg7m', '7074348'), + (36350, 378, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '41WDLg7m', '7074364'), + (36351, 378, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '41WDLg7m', '7089267'), + (36352, 378, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '41WDLg7m', '7098747'), + (36353, 378, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '41WDLg7m', '7113468'), + (36354, 378, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '41WDLg7m', '7114856'), + (36355, 378, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '41WDLg7m', '7114951'), + (36356, 378, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '41WDLg7m', '7114955'), + (36357, 378, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '41WDLg7m', '7114956'), + (36358, 378, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '41WDLg7m', '7114957'), + (36359, 378, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '41WDLg7m', '7159484'), + (36360, 378, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '41WDLg7m', '7178446'), + (36361, 378, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '41WDLg7m', '7220467'), + (36362, 378, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '41WDLg7m', '7240354'), + (36363, 378, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '41WDLg7m', '7251633'), + (36364, 378, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '41WDLg7m', '7324073'), + (36365, 378, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '41WDLg7m', '7324074'), + (36366, 378, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '41WDLg7m', '7324075'), + (36367, 378, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '41WDLg7m', '7324078'), + (36368, 378, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '41WDLg7m', '7324082'), + (36369, 378, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '41WDLg7m', '7331457'), + (36370, 378, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '41WDLg7m', '7363643'), + (36371, 378, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '41WDLg7m', '7368606'), + (36372, 378, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '41WDLg7m', '7397462'), + (36373, 378, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '41WDLg7m', '7424275'), + (36374, 378, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '41WDLg7m', '7432751'), + (36375, 378, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '41WDLg7m', '7432752'), + (36376, 378, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '41WDLg7m', '7432753'), + (36377, 378, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '41WDLg7m', '7432754'), + (36378, 378, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '41WDLg7m', '7432755'), + (36379, 378, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '41WDLg7m', '7432756'), + (36380, 378, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '41WDLg7m', '7432758'), + (36381, 378, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '41WDLg7m', '7432759'), + (36382, 378, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '41WDLg7m', '7433834'), + (36383, 378, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '41WDLg7m', '7470197'), + (36384, 378, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '41WDLg7m', '7685613'), + (36385, 378, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '41WDLg7m', '7688194'), + (36386, 378, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '41WDLg7m', '7688196'), + (36387, 378, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '41WDLg7m', '7688289'), + (36388, 378, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '41WDLg7m', '7692763'), + (36389, 378, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '41WDLg7m', '7697552'), + (36390, 378, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '41WDLg7m', '7699878'), + (36391, 378, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '41WDLg7m', '7704043'), + (36392, 378, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '41WDLg7m', '7712467'), + (36393, 378, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '41WDLg7m', '7713585'), + (36394, 378, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '41WDLg7m', '7713586'), + (36395, 378, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '41WDLg7m', '7738518'), + (36396, 378, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '41WDLg7m', '7750636'), + (36397, 378, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '41WDLg7m', '7796540'), + (36398, 378, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '41WDLg7m', '7796541'), + (36399, 378, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '41WDLg7m', '7796542'), + (36400, 378, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '41WDLg7m', '7825913'), + (36401, 378, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '41WDLg7m', '7826209'), + (36402, 378, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '41WDLg7m', '7834742'), + (36403, 378, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '41WDLg7m', '7842108'), + (36404, 378, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '41WDLg7m', '7842902'), + (36405, 378, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '41WDLg7m', '7842903'), + (36406, 378, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '41WDLg7m', '7842904'), + (36407, 378, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '41WDLg7m', '7842905'), + (36408, 378, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '41WDLg7m', '7855719'), + (36409, 378, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '41WDLg7m', '7860683'), + (36410, 378, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '41WDLg7m', '7860684'), + (36411, 378, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '41WDLg7m', '7866095'), + (36412, 378, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '41WDLg7m', '7869170'), + (36413, 378, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '41WDLg7m', '7869188'), + (36414, 378, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '41WDLg7m', '7869201'), + (36415, 378, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '41WDLg7m', '7877465'), + (36416, 378, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '41WDLg7m', '7888250'), + (36417, 378, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '41WDLg7m', '7904777'), + (36418, 378, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '41WDLg7m', '8349164'), + (36419, 378, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '41WDLg7m', '8349545'), + (36420, 378, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '41WDLg7m', '8368028'), + (36421, 378, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '41WDLg7m', '8368029'), + (36422, 378, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '41WDLg7m', '8388462'), + (36423, 378, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '41WDLg7m', '8400273'), + (36424, 378, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '41WDLg7m', '8400275'), + (36425, 378, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '41WDLg7m', '8400276'), + (36426, 378, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '41WDLg7m', '8404977'), + (36427, 378, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '41WDLg7m', '8430783'), + (36428, 378, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '41WDLg7m', '8430784'), + (36429, 378, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '41WDLg7m', '8430799'), + (36430, 378, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '41WDLg7m', '8430800'), + (36431, 378, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '41WDLg7m', '8430801'), + (36432, 378, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '41WDLg7m', '8438709'), + (36433, 378, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '41WDLg7m', '8457738'), + (36434, 378, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '41WDLg7m', '8459566'), + (36435, 378, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '41WDLg7m', '8459567'), + (36436, 378, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '41WDLg7m', '8461032'), + (36437, 378, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '41WDLg7m', '8477877'), + (36438, 378, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '41WDLg7m', '8485688'), + (36439, 378, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '41WDLg7m', '8490587'), + (36440, 378, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '41WDLg7m', '8493552'), + (36441, 378, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '41WDLg7m', '8493553'), + (36442, 378, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '41WDLg7m', '8493554'), + (36443, 378, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '41WDLg7m', '8493555'), + (36444, 378, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '41WDLg7m', '8493556'), + (36445, 378, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '41WDLg7m', '8493557'), + (36446, 378, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '41WDLg7m', '8493558'), + (36447, 378, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '41WDLg7m', '8493559'), + (36448, 378, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '41WDLg7m', '8493560'), + (36449, 378, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '41WDLg7m', '8493561'), + (36450, 378, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '41WDLg7m', '8493572'), + (36451, 378, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '41WDLg7m', '8540725'), + (36452, 378, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '41WDLg7m', '8555421'), + (36453, 379, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mj6QGq5m', '5195095'), + (36454, 379, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mj6QGq5m', '5247467'), + (36455, 379, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mj6QGq5m', '5260800'), + (36456, 379, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mj6QGq5m', '5269930'), + (36457, 379, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mj6QGq5m', '5271448'), + (36458, 379, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mj6QGq5m', '5271449'), + (36459, 379, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mj6QGq5m', '5276469'), + (36460, 379, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mj6QGq5m', '5278159'), + (36461, 379, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mj6QGq5m', '5363695'), + (36462, 379, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mj6QGq5m', '5365960'), + (36463, 379, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mj6QGq5m', '5368973'), + (36464, 379, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mj6QGq5m', '5378247'), + (36465, 379, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mj6QGq5m', '5389605'), + (36466, 379, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mj6QGq5m', '5397265'), + (36467, 379, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj6QGq5m', '6045684'), + (36468, 380, 823, 'attending', '2021-06-19 15:05:10', '2025-12-17 19:47:48', 'ZdNYvEy4', '3974109'), + (36469, 380, 824, 'attending', '2021-06-03 22:07:07', '2025-12-17 19:47:47', 'ZdNYvEy4', '3974112'), + (36470, 380, 827, 'attending', '2021-06-02 04:28:40', '2025-12-17 19:47:47', 'ZdNYvEy4', '3975311'), + (36471, 380, 828, 'attending', '2021-06-12 22:21:28', '2025-12-17 19:47:47', 'ZdNYvEy4', '3975312'), + (36472, 380, 833, 'attending', '2021-06-07 22:31:01', '2025-12-17 19:47:47', 'ZdNYvEy4', '3990438'), + (36473, 380, 838, 'maybe', '2021-06-06 21:06:38', '2025-12-17 19:47:47', 'ZdNYvEy4', '3994992'), + (36474, 380, 844, 'attending', '2021-06-10 12:30:06', '2025-12-17 19:47:38', 'ZdNYvEy4', '4014338'), + (36475, 380, 859, 'attending', '2021-06-10 20:21:52', '2025-12-17 19:47:48', 'ZdNYvEy4', '4015993'), + (36476, 380, 867, 'attending', '2021-06-26 17:03:02', '2025-12-17 19:47:38', 'ZdNYvEy4', '4021848'), + (36477, 380, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNYvEy4', '4136744'), + (36478, 380, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ZdNYvEy4', '4136937'), + (36479, 380, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ZdNYvEy4', '4136938'), + (36480, 380, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNYvEy4', '4136947'), + (36481, 380, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNYvEy4', '4210314'), + (36482, 380, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ZdNYvEy4', '4225444'), + (36483, 380, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNYvEy4', '4239259'), + (36484, 380, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ZdNYvEy4', '4240316'), + (36485, 380, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ZdNYvEy4', '4240317'), + (36486, 380, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNYvEy4', '4250163'), + (36487, 380, 917, 'not_attending', '2021-07-15 00:59:01', '2025-12-17 19:47:39', 'ZdNYvEy4', '4274481'), + (36488, 380, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ZdNYvEy4', '4275957'), + (36489, 380, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNYvEy4', '4277819'), + (36490, 380, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNYvEy4', '4301723'), + (36491, 380, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNYvEy4', '6045684'), + (36492, 381, 996, 'attending', '2021-10-15 22:17:45', '2025-12-17 19:47:35', 'dNMjqYW4', '4420747'), + (36493, 381, 997, 'attending', '2021-10-23 18:19:03', '2025-12-17 19:47:35', 'dNMjqYW4', '4420748'), + (36494, 381, 998, 'attending', '2021-10-29 21:21:40', '2025-12-17 19:47:36', 'dNMjqYW4', '4420749'), + (36495, 381, 1086, 'attending', '2021-10-13 09:15:57', '2025-12-17 19:47:34', 'dNMjqYW4', '4568602'), + (36496, 381, 1087, 'maybe', '2021-10-15 19:49:09', '2025-12-17 19:47:35', 'dNMjqYW4', '4572153'), + (36497, 381, 1089, 'not_attending', '2021-10-18 19:52:59', '2025-12-17 19:47:35', 'dNMjqYW4', '4574712'), + (36498, 381, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dNMjqYW4', '4585962'), + (36499, 381, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dNMjqYW4', '4596356'), + (36500, 381, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dNMjqYW4', '4598860'), + (36501, 381, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dNMjqYW4', '4598861'), + (36502, 381, 1099, 'attending', '2021-11-06 15:28:42', '2025-12-17 19:47:36', 'dNMjqYW4', '4602797'), + (36503, 381, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dNMjqYW4', '4637896'), + (36504, 381, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dNMjqYW4', '4642994'), + (36505, 381, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dNMjqYW4', '4642995'), + (36506, 381, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dNMjqYW4', '4642996'), + (36507, 381, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dNMjqYW4', '4642997'), + (36508, 381, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dNMjqYW4', '4645687'), + (36509, 381, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dNMjqYW4', '4645698'), + (36510, 381, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dNMjqYW4', '4645704'), + (36511, 381, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dNMjqYW4', '4645705'), + (36512, 381, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dNMjqYW4', '4668385'), + (36513, 381, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dNMjqYW4', '6045684'), + (36514, 382, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VmMzYEkA', '3517815'), + (36515, 382, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VmMzYEkA', '3517816'), + (36516, 382, 625, 'attending', '2021-03-02 21:06:04', '2025-12-17 19:47:51', 'VmMzYEkA', '3533296'), + (36517, 382, 630, 'attending', '2021-03-02 21:06:16', '2025-12-17 19:47:51', 'VmMzYEkA', '3533425'), + (36518, 382, 639, 'not_attending', '2021-03-07 04:16:32', '2025-12-17 19:47:51', 'VmMzYEkA', '3536656'), + (36519, 382, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VmMzYEkA', '3539916'), + (36520, 382, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VmMzYEkA', '3539917'), + (36521, 382, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VmMzYEkA', '3539918'), + (36522, 382, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VmMzYEkA', '3539919'), + (36523, 382, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VmMzYEkA', '3539920'), + (36524, 382, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VmMzYEkA', '3539921'), + (36525, 382, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VmMzYEkA', '3539922'), + (36526, 382, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VmMzYEkA', '3539923'), + (36527, 382, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VmMzYEkA', '3539927'), + (36528, 382, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VmMzYEkA', '3582734'), + (36529, 382, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VmMzYEkA', '3619523'), + (36530, 382, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VmMzYEkA', '3674262'), + (36531, 382, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VmMzYEkA', '3677402'), + (36532, 382, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMzYEkA', '6045684'), + (36533, 383, 2697, 'not_attending', '2024-08-31 19:03:16', '2025-12-17 19:46:32', '4E92NPn4', '7324082'), + (36534, 383, 2698, 'not_attending', '2024-08-31 19:05:13', '2025-12-17 19:46:24', '4E92NPn4', '7324083'), + (36535, 383, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4E92NPn4', '7424275'), + (36536, 383, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4E92NPn4', '7424276'), + (36537, 383, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4E92NPn4', '7432751'), + (36538, 383, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4E92NPn4', '7432752'), + (36539, 383, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4E92NPn4', '7432753'), + (36540, 383, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4E92NPn4', '7432754'), + (36541, 383, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4E92NPn4', '7432755'), + (36542, 383, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4E92NPn4', '7432756'), + (36543, 383, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4E92NPn4', '7432758'), + (36544, 383, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4E92NPn4', '7432759'), + (36545, 383, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4E92NPn4', '7433834'), + (36546, 383, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4E92NPn4', '7470197'), + (36547, 383, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', '4E92NPn4', '7682072'), + (36548, 383, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4E92NPn4', '7685613'), + (36549, 383, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4E92NPn4', '7688194'), + (36550, 383, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4E92NPn4', '7688196'), + (36551, 383, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4E92NPn4', '7688289'), + (36552, 383, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4E92NPn4', '7692763'), + (36553, 383, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4E92NPn4', '7697552'), + (36554, 383, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4E92NPn4', '7699878'), + (36555, 383, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4E92NPn4', '7704043'), + (36556, 383, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4E92NPn4', '7712467'), + (36557, 383, 2925, 'maybe', '2024-12-14 13:17:06', '2025-12-17 19:46:21', '4E92NPn4', '7713584'), + (36558, 383, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4E92NPn4', '7713585'), + (36559, 383, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4E92NPn4', '7713586'), + (36560, 383, 2947, 'attending', '2024-12-09 03:09:24', '2025-12-17 19:46:21', '4E92NPn4', '7727445'), + (36561, 383, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4E92NPn4', '7738518'), + (36562, 383, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4E92NPn4', '7750636'), + (36563, 383, 2964, 'maybe', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4E92NPn4', '7796540'), + (36564, 383, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4E92NPn4', '7796541'), + (36565, 383, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4E92NPn4', '7796542'), + (36566, 383, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4E92NPn4', '7825913'), + (36567, 383, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4E92NPn4', '7826209'), + (36568, 383, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4E92NPn4', '7834742'), + (36569, 383, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4E92NPn4', '7842108'), + (36570, 383, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4E92NPn4', '7842902'), + (36571, 383, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4E92NPn4', '7842903'), + (36572, 383, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4E92NPn4', '7842904'), + (36573, 383, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4E92NPn4', '7842905'), + (36574, 383, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4E92NPn4', '7855719'), + (36575, 383, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4E92NPn4', '7860683'), + (36576, 383, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4E92NPn4', '7860684'), + (36577, 383, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4E92NPn4', '7866095'), + (36578, 383, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4E92NPn4', '7869170'), + (36579, 383, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4E92NPn4', '7869188'), + (36580, 383, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4E92NPn4', '7869201'), + (36581, 383, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4E92NPn4', '7877465'), + (36582, 383, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4E92NPn4', '7878570'), + (36583, 383, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4E92NPn4', '7888250'), + (36584, 383, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4E92NPn4', '8349164'), + (36585, 383, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4E92NPn4', '8349545'), + (36586, 383, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4E92NPn4', '8353584'), + (36587, 384, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgLGQj4', '6045684'), + (36588, 385, 993, 'not_attending', '2021-09-24 16:12:14', '2025-12-17 19:47:34', '40k0QWYA', '4420741'), + (36589, 385, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', '40k0QWYA', '4420744'), + (36590, 385, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', '40k0QWYA', '4420747'), + (36591, 385, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '40k0QWYA', '4568602'), + (36592, 385, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '40k0QWYA', '4572153'), + (36593, 385, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '40k0QWYA', '4585962'), + (36594, 385, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '40k0QWYA', '4596356'), + (36595, 385, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '40k0QWYA', '4598860'), + (36596, 385, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '40k0QWYA', '4598861'), + (36597, 385, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '40k0QWYA', '4602797'), + (36598, 385, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '40k0QWYA', '4637896'), + (36599, 385, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '40k0QWYA', '4642994'), + (36600, 385, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '40k0QWYA', '4642995'), + (36601, 385, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '40k0QWYA', '4642996'), + (36602, 385, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '40k0QWYA', '4642997'), + (36603, 385, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '40k0QWYA', '4645687'), + (36604, 385, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '40k0QWYA', '4645698'), + (36605, 385, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '40k0QWYA', '4645704'), + (36606, 385, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '40k0QWYA', '4645705'), + (36607, 385, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '40k0QWYA', '4668385'), + (36608, 385, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '40k0QWYA', '4694407'), + (36609, 385, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '40k0QWYA', '4736497'), + (36610, 385, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '40k0QWYA', '4736499'), + (36611, 385, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '40k0QWYA', '4736500'), + (36612, 385, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '40k0QWYA', '4736503'), + (36613, 385, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '40k0QWYA', '4736504'), + (36614, 385, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '40k0QWYA', '4746789'), + (36615, 385, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '40k0QWYA', '4753929'), + (36616, 385, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '40k0QWYA', '5038850'), + (36617, 385, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '40k0QWYA', '5045826'), + (36618, 385, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '40k0QWYA', '5132533'), + (36619, 385, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '40k0QWYA', '5186582'), + (36620, 385, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '40k0QWYA', '5186583'), + (36621, 385, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '40k0QWYA', '5186585'), + (36622, 385, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '40k0QWYA', '5190437'), + (36623, 385, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '40k0QWYA', '5215989'), + (36624, 385, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40k0QWYA', '6045684'), + (36625, 386, 1486, 'attending', '2022-07-06 00:16:22', '2025-12-17 19:47:19', 'daJeNzlm', '5416339'), + (36626, 386, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'daJeNzlm', '5424565'), + (36627, 386, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'daJeNzlm', '5426882'), + (36628, 386, 1505, 'not_attending', '2022-07-06 01:20:19', '2025-12-17 19:47:19', 'daJeNzlm', '5427083'), + (36629, 386, 1507, 'maybe', '2022-07-06 20:27:54', '2025-12-17 19:47:19', 'daJeNzlm', '5433100'), + (36630, 386, 1511, 'maybe', '2022-07-09 01:01:55', '2025-12-17 19:47:19', 'daJeNzlm', '5437733'), + (36631, 386, 1512, 'attending', '2022-07-12 14:03:19', '2025-12-17 19:47:19', 'daJeNzlm', '5441112'), + (36632, 386, 1513, 'maybe', '2022-07-09 14:34:45', '2025-12-17 19:47:20', 'daJeNzlm', '5441125'), + (36633, 386, 1514, 'maybe', '2022-07-16 18:20:35', '2025-12-17 19:47:20', 'daJeNzlm', '5441126'), + (36634, 386, 1515, 'maybe', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'daJeNzlm', '5441128'), + (36635, 386, 1520, 'maybe', '2022-07-12 14:03:04', '2025-12-17 19:47:19', 'daJeNzlm', '5441645'), + (36636, 386, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'daJeNzlm', '5446643'), + (36637, 386, 1530, 'attending', '2022-07-16 18:21:01', '2025-12-17 19:47:20', 'daJeNzlm', '5448612'), + (36638, 386, 1536, 'maybe', '2022-07-16 18:20:11', '2025-12-17 19:47:20', 'daJeNzlm', '5449068'), + (36639, 386, 1539, 'maybe', '2022-07-28 11:36:26', '2025-12-17 19:47:21', 'daJeNzlm', '5449671'), + (36640, 386, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'daJeNzlm', '5453325'), + (36641, 386, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'daJeNzlm', '5454516'), + (36642, 386, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'daJeNzlm', '5454605'), + (36643, 386, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'daJeNzlm', '5455037'), + (36644, 386, 1552, 'attending', '2022-07-28 11:35:48', '2025-12-17 19:47:20', 'daJeNzlm', '5455149'), + (36645, 386, 1557, 'maybe', '2022-08-03 12:24:40', '2025-12-17 19:47:21', 'daJeNzlm', '5458729'), + (36646, 386, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'daJeNzlm', '5461278'), + (36647, 386, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'daJeNzlm', '5469480'), + (36648, 386, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'daJeNzlm', '5471073'), + (36649, 386, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'daJeNzlm', '5474663'), + (36650, 386, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'daJeNzlm', '5482022'), + (36651, 386, 1576, 'not_attending', '2022-08-02 12:09:02', '2025-12-17 19:47:21', 'daJeNzlm', '5482623'), + (36652, 386, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'daJeNzlm', '5482793'), + (36653, 386, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'daJeNzlm', '5488912'), + (36654, 386, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'daJeNzlm', '5492192'), + (36655, 386, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'daJeNzlm', '5493139'), + (36656, 386, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'daJeNzlm', '5493200'), + (36657, 386, 1591, 'maybe', '2022-08-09 18:32:01', '2025-12-17 19:47:22', 'daJeNzlm', '5493764'), + (36658, 386, 1592, 'maybe', '2022-08-09 18:31:16', '2025-12-17 19:47:22', 'daJeNzlm', '5494031'), + (36659, 386, 1595, 'maybe', '2022-08-09 18:31:48', '2025-12-17 19:47:22', 'daJeNzlm', '5495736'), + (36660, 386, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'daJeNzlm', '5502188'), + (36661, 386, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'daJeNzlm', '5512862'), + (36662, 386, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'daJeNzlm', '5513985'), + (36663, 386, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daJeNzlm', '6045684'), + (36664, 387, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '41qEGjR4', '7869188'), + (36665, 387, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', '41qEGjR4', '7880977'), + (36666, 387, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '41qEGjR4', '7888250'), + (36667, 387, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', '41qEGjR4', '7897784'), + (36668, 387, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', '41qEGjR4', '7903856'), + (36669, 387, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', '41qEGjR4', '8347770'), + (36670, 387, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '41qEGjR4', '8349164'), + (36671, 387, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '41qEGjR4', '8349545'), + (36672, 387, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '41qEGjR4', '8353584'), + (36673, 388, 254, 'attending', '2021-03-07 21:03:33', '2025-12-17 19:47:51', 'v4Dgx36A', '3149485'), + (36674, 388, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'v4Dgx36A', '3426074'), + (36675, 388, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'v4Dgx36A', '3430267'), + (36676, 388, 621, 'not_attending', '2021-03-06 08:08:40', '2025-12-17 19:47:51', 'v4Dgx36A', '3517815'), + (36677, 388, 622, 'maybe', '2021-03-16 22:50:56', '2025-12-17 19:47:51', 'v4Dgx36A', '3517816'), + (36678, 388, 639, 'attending', '2021-03-07 09:13:24', '2025-12-17 19:47:51', 'v4Dgx36A', '3536656'), + (36679, 388, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4Dgx36A', '3539927'), + (36680, 388, 688, 'attending', '2021-03-10 01:17:45', '2025-12-17 19:47:51', 'v4Dgx36A', '3553729'), + (36681, 388, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4Dgx36A', '3582734'), + (36682, 388, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4Dgx36A', '3619523'), + (36683, 388, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4Dgx36A', '6045684'), + (36684, 389, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'd8qWLL8m', '7903856'), + (36685, 389, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd8qWLL8m', '7904777'), + (36686, 389, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'd8qWLL8m', '8347770'), + (36687, 389, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd8qWLL8m', '8349164'), + (36688, 389, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd8qWLL8m', '8349545'), + (36689, 389, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd8qWLL8m', '8353584'), + (36690, 389, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd8qWLL8m', '8368028'), + (36691, 389, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd8qWLL8m', '8368029'), + (36692, 389, 3140, 'not_attending', '2025-05-21 04:07:31', '2025-12-17 19:46:21', 'd8qWLL8m', '8380399'), + (36693, 389, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', 'd8qWLL8m', '8387505'), + (36694, 389, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd8qWLL8m', '8388462'), + (36695, 389, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd8qWLL8m', '8400273'), + (36696, 389, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd8qWLL8m', '8400274'), + (36697, 389, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd8qWLL8m', '8400275'), + (36698, 389, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'd8qWLL8m', '8400276'), + (36699, 389, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd8qWLL8m', '8404977'), + (36700, 389, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'd8qWLL8m', '8430783'), + (36701, 389, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd8qWLL8m', '8430784'), + (36702, 389, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd8qWLL8m', '8430799'), + (36703, 389, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd8qWLL8m', '8430800'), + (36704, 389, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd8qWLL8m', '8430801'), + (36705, 389, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd8qWLL8m', '8438709'), + (36706, 389, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd8qWLL8m', '8457738'), + (36707, 389, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd8qWLL8m', '8459566'), + (36708, 389, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd8qWLL8m', '8459567'), + (36709, 389, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd8qWLL8m', '8461032'), + (36710, 389, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd8qWLL8m', '8477877'), + (36711, 389, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd8qWLL8m', '8485688'), + (36712, 389, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd8qWLL8m', '8490587'), + (36713, 389, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd8qWLL8m', '8493552'), + (36714, 389, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'd8qWLL8m', '8493553'), + (36715, 389, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd8qWLL8m', '8493554'), + (36716, 389, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd8qWLL8m', '8493555'), + (36717, 389, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd8qWLL8m', '8493556'), + (36718, 389, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd8qWLL8m', '8493557'), + (36719, 389, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd8qWLL8m', '8493558'), + (36720, 389, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd8qWLL8m', '8493559'), + (36721, 389, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd8qWLL8m', '8493560'), + (36722, 389, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'd8qWLL8m', '8493561'), + (36723, 389, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd8qWLL8m', '8493572'), + (36724, 389, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'd8qWLL8m', '8529058'), + (36725, 390, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXNVpNRd', '6045684'), + (36726, 391, 262, 'attending', '2021-06-25 04:41:03', '2025-12-17 19:47:38', '54kyQKzm', '3149493'), + (36727, 391, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '54kyQKzm', '4021848'), + (36728, 391, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '54kyQKzm', '4136937'), + (36729, 391, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '54kyQKzm', '4136938'), + (36730, 391, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', '54kyQKzm', '4136947'), + (36731, 391, 879, 'not_attending', '2021-06-25 04:41:07', '2025-12-17 19:47:38', '54kyQKzm', '4147806'), + (36732, 391, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54kyQKzm', '4210314'), + (36733, 391, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54kyQKzm', '4225444'), + (36734, 391, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '54kyQKzm', '4229417'), + (36735, 391, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '54kyQKzm', '4229418'), + (36736, 391, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', '54kyQKzm', '4229420'), + (36737, 391, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', '54kyQKzm', '4229423'), + (36738, 391, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54kyQKzm', '4239259'), + (36739, 391, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '54kyQKzm', '4240316'), + (36740, 391, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '54kyQKzm', '4240317'), + (36741, 391, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '54kyQKzm', '4240318'), + (36742, 391, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '54kyQKzm', '4240320'), + (36743, 391, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '54kyQKzm', '4250163'), + (36744, 391, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54kyQKzm', '4275957'), + (36745, 391, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54kyQKzm', '4277819'), + (36746, 391, 923, 'not_attending', '2021-07-20 02:30:40', '2025-12-17 19:47:40', '54kyQKzm', '4292773'), + (36747, 391, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54kyQKzm', '4301723'), + (36748, 391, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '54kyQKzm', '4302093'), + (36749, 391, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '54kyQKzm', '4304151'), + (36750, 391, 940, 'not_attending', '2021-07-30 16:29:32', '2025-12-17 19:47:40', '54kyQKzm', '4309049'), + (36751, 391, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', '54kyQKzm', '4315713'), + (36752, 391, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', '54kyQKzm', '4315714'), + (36753, 391, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', '54kyQKzm', '4315726'), + (36754, 391, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54kyQKzm', '4356801'), + (36755, 391, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '54kyQKzm', '4366186'), + (36756, 391, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '54kyQKzm', '4366187'), + (36757, 391, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '54kyQKzm', '4420735'), + (36758, 391, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '54kyQKzm', '4420738'), + (36759, 391, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '54kyQKzm', '4420739'), + (36760, 391, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '54kyQKzm', '4420741'), + (36761, 391, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '54kyQKzm', '4420744'), + (36762, 391, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '54kyQKzm', '4420747'), + (36763, 391, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '54kyQKzm', '4420748'), + (36764, 391, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '54kyQKzm', '4420749'), + (36765, 391, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kyQKzm', '6045684'), + (36766, 415, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4E2kMeXd', '5900202'), + (36767, 415, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '4E2kMeXd', '5962317'), + (36768, 415, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4E2kMeXd', '5962318'), + (36769, 415, 1951, 'not_attending', '2023-03-21 00:52:15', '2025-12-17 19:46:57', '4E2kMeXd', '5965933'), + (36770, 415, 1971, 'attending', '2023-03-20 19:42:34', '2025-12-17 19:46:56', '4E2kMeXd', '5993765'), + (36771, 415, 1973, 'not_attending', '2023-03-19 20:38:35', '2025-12-17 19:46:56', '4E2kMeXd', '5993777'), + (36772, 415, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', '4E2kMeXd', '6028191'), + (36773, 415, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4E2kMeXd', '6040066'), + (36774, 415, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4E2kMeXd', '6042717'), + (36775, 415, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4E2kMeXd', '6044838'), + (36776, 415, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4E2kMeXd', '6044839'), + (36777, 415, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E2kMeXd', '6045684'), + (36778, 415, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4E2kMeXd', '6050104'), + (36779, 415, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4E2kMeXd', '6053195'), + (36780, 415, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4E2kMeXd', '6053198'), + (36781, 415, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4E2kMeXd', '6056085'), + (36782, 415, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4E2kMeXd', '6056916'), + (36783, 415, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4E2kMeXd', '6059290'), + (36784, 415, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4E2kMeXd', '6060328'), + (36785, 415, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4E2kMeXd', '6061037'), + (36786, 415, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4E2kMeXd', '6061039'), + (36787, 415, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4E2kMeXd', '6067245'), + (36788, 415, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4E2kMeXd', '6068094'), + (36789, 415, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4E2kMeXd', '6068252'), + (36790, 415, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4E2kMeXd', '6068253'), + (36791, 415, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4E2kMeXd', '6068254'), + (36792, 415, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '4E2kMeXd', '6068280'), + (36793, 415, 2032, 'attending', '2023-06-02 18:51:43', '2025-12-17 19:47:04', '4E2kMeXd', '6068281'), + (36794, 415, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4E2kMeXd', '6069093'), + (36795, 415, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4E2kMeXd', '6072528'), + (36796, 415, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4E2kMeXd', '6079840'), + (36797, 415, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4E2kMeXd', '6083398'), + (36798, 415, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4E2kMeXd', '6093504'), + (36799, 415, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4E2kMeXd', '6097414'), + (36800, 415, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4E2kMeXd', '6097442'), + (36801, 415, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4E2kMeXd', '6097684'), + (36802, 415, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4E2kMeXd', '6098762'), + (36803, 415, 2064, 'not_attending', '2023-06-24 17:44:36', '2025-12-17 19:46:50', '4E2kMeXd', '6099988'), + (36804, 415, 2065, 'attending', '2023-06-15 21:04:37', '2025-12-17 19:46:49', '4E2kMeXd', '6101169'), + (36805, 415, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4E2kMeXd', '6101361'), + (36806, 415, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4E2kMeXd', '6101362'), + (36807, 415, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4E2kMeXd', '6103752'), + (36808, 415, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4E2kMeXd', '6107314'), + (36809, 415, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4E2kMeXd', '6120034'), + (36810, 415, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '4E2kMeXd', '6136733'), + (36811, 415, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4E2kMeXd', '6137989'), + (36812, 415, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4E2kMeXd', '6150864'), + (36813, 415, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4E2kMeXd', '6155491'), + (36814, 415, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4E2kMeXd', '6164417'), + (36815, 415, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4E2kMeXd', '6166388'), + (36816, 415, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4E2kMeXd', '6176439'), + (36817, 415, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4E2kMeXd', '6182410'), + (36818, 415, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4E2kMeXd', '6185812'), + (36819, 415, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4E2kMeXd', '6187651'), + (36820, 415, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4E2kMeXd', '6187963'), + (36821, 415, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4E2kMeXd', '6187964'), + (36822, 415, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4E2kMeXd', '6187966'), + (36823, 415, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4E2kMeXd', '6187967'), + (36824, 415, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4E2kMeXd', '6187969'), + (36825, 415, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4E2kMeXd', '6334878'), + (36826, 415, 2152, 'attending', '2023-07-14 22:32:24', '2025-12-17 19:46:52', '4E2kMeXd', '6337021'), + (36827, 415, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4E2kMeXd', '6337236'), + (36828, 415, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4E2kMeXd', '6337970'), + (36829, 415, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4E2kMeXd', '6338308'), + (36830, 415, 2160, 'attending', '2023-07-22 18:09:42', '2025-12-17 19:46:54', '4E2kMeXd', '6338358'), + (36831, 415, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4E2kMeXd', '6340845'), + (36832, 415, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4E2kMeXd', '6341710'), + (36833, 415, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4E2kMeXd', '6342044'), + (36834, 415, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4E2kMeXd', '6342298'), + (36835, 415, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4E2kMeXd', '6343294'), + (36836, 415, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4E2kMeXd', '6347034'), + (36837, 415, 2177, 'not_attending', '2023-08-12 17:53:35', '2025-12-17 19:46:55', '4E2kMeXd', '6347053'), + (36838, 415, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4E2kMeXd', '6347056'), + (36839, 415, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4E2kMeXd', '6353830'), + (36840, 415, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4E2kMeXd', '6353831'), + (36841, 415, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4E2kMeXd', '6357867'), + (36842, 415, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4E2kMeXd', '6358652'), + (36843, 415, 2202, 'not_attending', '2023-08-06 18:27:53', '2025-12-17 19:46:54', '4E2kMeXd', '6360509'), + (36844, 415, 2204, 'attending', '2023-08-18 11:12:26', '2025-12-17 19:46:55', '4E2kMeXd', '6361542'), + (36845, 415, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4E2kMeXd', '6361709'), + (36846, 415, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4E2kMeXd', '6361710'), + (36847, 415, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4E2kMeXd', '6361711'), + (36848, 415, 2211, 'maybe', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4E2kMeXd', '6361712'), + (36849, 415, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4E2kMeXd', '6361713'), + (36850, 415, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4E2kMeXd', '6382573'), + (36851, 415, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4E2kMeXd', '6388604'), + (36852, 415, 2242, 'not_attending', '2023-09-23 22:45:10', '2025-12-17 19:46:45', '4E2kMeXd', '6388606'), + (36853, 415, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4E2kMeXd', '6394629'), + (36854, 415, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4E2kMeXd', '6394631'), + (36855, 415, 2253, 'not_attending', '2023-09-30 19:53:55', '2025-12-17 19:46:45', '4E2kMeXd', '6401811'), + (36856, 415, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4E2kMeXd', '6440863'), + (36857, 415, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4E2kMeXd', '6445440'), + (36858, 415, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4E2kMeXd', '6453951'), + (36859, 415, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4E2kMeXd', '6461696'), + (36860, 415, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4E2kMeXd', '6462129'), + (36861, 415, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4E2kMeXd', '6463218'), + (36862, 415, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4E2kMeXd', '6472181'), + (36863, 415, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4E2kMeXd', '6482693'), + (36864, 415, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4E2kMeXd', '6484200'), + (36865, 415, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4E2kMeXd', '6484680'), + (36866, 415, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4E2kMeXd', '6507741'), + (36867, 415, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4E2kMeXd', '6514659'), + (36868, 415, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4E2kMeXd', '6514660'), + (36869, 415, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4E2kMeXd', '6519103'), + (36870, 415, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4E2kMeXd', '6535681'), + (36871, 415, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4E2kMeXd', '6584747'), + (36872, 415, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4E2kMeXd', '6587097'), + (36873, 415, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4E2kMeXd', '6609022'), + (36874, 415, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4E2kMeXd', '6632757'), + (36875, 415, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4E2kMeXd', '6644187'), + (36876, 415, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4E2kMeXd', '6648951'), + (36877, 415, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4E2kMeXd', '6648952'), + (36878, 415, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4E2kMeXd', '6655401'), + (36879, 415, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4E2kMeXd', '6661585'), + (36880, 415, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4E2kMeXd', '6661588'), + (36881, 415, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4E2kMeXd', '6661589'), + (36882, 415, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4E2kMeXd', '6699906'), + (36883, 415, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4E2kMeXd', '6701109'), + (36884, 415, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4E2kMeXd', '6705219'), + (36885, 415, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4E2kMeXd', '6710153'), + (36886, 415, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4E2kMeXd', '6711552'), + (36887, 415, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4E2kMeXd', '6711553'), + (36888, 416, 1819, 'not_attending', '2023-03-31 02:16:30', '2025-12-17 19:46:58', 'd8V6poOA', '5764689'), + (36889, 416, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd8V6poOA', '5900202'), + (36890, 416, 1948, 'attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'd8V6poOA', '5962317'), + (36891, 416, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'd8V6poOA', '5962318'), + (36892, 416, 1951, 'not_attending', '2023-03-21 00:52:15', '2025-12-17 19:46:57', 'd8V6poOA', '5965933'), + (36893, 416, 1955, 'attending', '2023-03-27 19:18:18', '2025-12-17 19:46:57', 'd8V6poOA', '5972529'), + (36894, 416, 1959, 'not_attending', '2023-03-31 02:16:29', '2025-12-17 19:46:57', 'd8V6poOA', '5972829'), + (36895, 416, 1971, 'attending', '2023-03-20 17:22:14', '2025-12-17 19:46:56', 'd8V6poOA', '5993765'), + (36896, 416, 1974, 'attending', '2023-03-27 19:18:25', '2025-12-17 19:46:57', 'd8V6poOA', '5993778'), + (36897, 416, 1978, 'attending', '2023-03-27 19:16:08', '2025-12-17 19:46:58', 'd8V6poOA', '6028191'), + (36898, 416, 1982, 'attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd8V6poOA', '6040066'), + (36899, 416, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd8V6poOA', '6042717'), + (36900, 416, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd8V6poOA', '6044838'), + (36901, 416, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd8V6poOA', '6044839'), + (36902, 416, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8V6poOA', '6045684'), + (36903, 416, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd8V6poOA', '6050104'), + (36904, 416, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd8V6poOA', '6053195'), + (36905, 416, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd8V6poOA', '6053198'), + (36906, 416, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd8V6poOA', '6056085'), + (36907, 416, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd8V6poOA', '6056916'), + (36908, 416, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd8V6poOA', '6059290'), + (36909, 416, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd8V6poOA', '6060328'), + (36910, 416, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd8V6poOA', '6061037'), + (36911, 416, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd8V6poOA', '6061039'), + (36912, 416, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd8V6poOA', '6067245'), + (36913, 416, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd8V6poOA', '6068094'), + (36914, 416, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd8V6poOA', '6068252'), + (36915, 416, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd8V6poOA', '6068253'), + (36916, 416, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd8V6poOA', '6068254'), + (36917, 416, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd8V6poOA', '6068280'), + (36918, 416, 2032, 'attending', '2023-06-02 23:05:15', '2025-12-17 19:47:04', 'd8V6poOA', '6068281'), + (36919, 416, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd8V6poOA', '6069093'), + (36920, 416, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd8V6poOA', '6072528'), + (36921, 416, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd8V6poOA', '6079840'), + (36922, 416, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd8V6poOA', '6083398'), + (36923, 416, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd8V6poOA', '6093504'), + (36924, 416, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd8V6poOA', '6097414'), + (36925, 416, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd8V6poOA', '6097442'), + (36926, 416, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd8V6poOA', '6097684'), + (36927, 416, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd8V6poOA', '6098762'), + (36928, 416, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'd8V6poOA', '6101361'), + (36929, 416, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd8V6poOA', '6101362'), + (36930, 416, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd8V6poOA', '6103752'), + (36931, 416, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd8V6poOA', '6107314'), + (36932, 416, 2078, 'attending', '2023-05-21 23:58:41', '2025-12-17 19:47:03', 'd8V6poOA', '6114163'), + (36933, 416, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd8V6poOA', '6120034'), + (36934, 416, 2090, 'not_attending', '2023-06-02 21:30:33', '2025-12-17 19:47:04', 'd8V6poOA', '6127961'), + (36935, 416, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'd8V6poOA', '6136733'), + (36936, 416, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'd8V6poOA', '6137989'), + (36937, 416, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'd8V6poOA', '6150864'), + (36938, 416, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'd8V6poOA', '6155491'), + (36939, 416, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd8V6poOA', '6164417'), + (36940, 416, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd8V6poOA', '6166388'), + (36941, 416, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd8V6poOA', '6176439'), + (36942, 416, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'd8V6poOA', '6182410'), + (36943, 416, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd8V6poOA', '6185812'), + (36944, 416, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd8V6poOA', '6187651'), + (36945, 416, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd8V6poOA', '6187963'), + (36946, 416, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd8V6poOA', '6187964'), + (36947, 416, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd8V6poOA', '6187966'), + (36948, 416, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd8V6poOA', '6187967'), + (36949, 416, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd8V6poOA', '6187969'), + (36950, 416, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd8V6poOA', '6334878'), + (36951, 416, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd8V6poOA', '6337236'), + (36952, 416, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd8V6poOA', '6337970'), + (36953, 416, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd8V6poOA', '6338308'), + (36954, 416, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'd8V6poOA', '6340845'), + (36955, 416, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd8V6poOA', '6341710'), + (36956, 416, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd8V6poOA', '6342044'), + (36957, 416, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd8V6poOA', '6342298'), + (36958, 416, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd8V6poOA', '6343294'), + (36959, 416, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd8V6poOA', '6347034'), + (36960, 416, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd8V6poOA', '6347056'), + (36961, 416, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd8V6poOA', '6353830'), + (36962, 416, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd8V6poOA', '6353831'), + (36963, 416, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd8V6poOA', '6357867'), + (36964, 416, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd8V6poOA', '6358652'), + (36965, 416, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd8V6poOA', '6361709'), + (36966, 416, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd8V6poOA', '6361710'), + (36967, 416, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd8V6poOA', '6361711'), + (36968, 416, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd8V6poOA', '6361712'), + (36969, 416, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd8V6poOA', '6361713'), + (36970, 416, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd8V6poOA', '6382573'), + (36971, 416, 2239, 'not_attending', '2023-08-31 18:01:25', '2025-12-17 19:46:56', 'd8V6poOA', '6387592'), + (36972, 416, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd8V6poOA', '6388604'), + (36973, 416, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd8V6poOA', '6394629'), + (36974, 416, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd8V6poOA', '6394631'), + (36975, 416, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd8V6poOA', '6440863'), + (36976, 416, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd8V6poOA', '6445440'), + (36977, 416, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd8V6poOA', '6453951'), + (36978, 416, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd8V6poOA', '6461696'), + (36979, 416, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd8V6poOA', '6462129'), + (36980, 416, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd8V6poOA', '6463218'), + (36981, 416, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd8V6poOA', '6472181'), + (36982, 416, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd8V6poOA', '6482693'), + (36983, 416, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd8V6poOA', '6484200'), + (36984, 416, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd8V6poOA', '6484680'), + (36985, 416, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd8V6poOA', '6507741'), + (36986, 416, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd8V6poOA', '6514659'), + (36987, 416, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd8V6poOA', '6514660'), + (36988, 416, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd8V6poOA', '6519103'), + (36989, 416, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd8V6poOA', '6535681'), + (36990, 416, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd8V6poOA', '6584747'), + (36991, 416, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd8V6poOA', '6587097'), + (36992, 416, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd8V6poOA', '6609022'), + (36993, 416, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd8V6poOA', '6632757'), + (36994, 416, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd8V6poOA', '6644187'), + (36995, 416, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd8V6poOA', '6648951'), + (36996, 416, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd8V6poOA', '6648952'), + (36997, 416, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd8V6poOA', '6655401'), + (36998, 416, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd8V6poOA', '6661585'), + (36999, 416, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd8V6poOA', '6661588'), + (37000, 416, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd8V6poOA', '6661589'), + (37001, 416, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd8V6poOA', '6699906'), + (37002, 416, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd8V6poOA', '6701109'), + (37003, 416, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd8V6poOA', '6705219'), + (37004, 416, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd8V6poOA', '6710153'), + (37005, 416, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd8V6poOA', '6711552'), + (37006, 416, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd8V6poOA', '6711553'), + (37007, 417, 2135, 'attending', '2023-07-14 16:48:14', '2025-12-17 19:46:52', 'd56Bq3Vm', '6187964'), + (37008, 417, 2136, 'maybe', '2023-07-24 12:56:42', '2025-12-17 19:46:53', 'd56Bq3Vm', '6187966'), + (37009, 417, 2145, 'attending', '2023-07-13 00:19:35', '2025-12-17 19:46:52', 'd56Bq3Vm', '6334903'), + (37010, 417, 2152, 'attending', '2023-07-14 17:12:00', '2025-12-17 19:46:52', 'd56Bq3Vm', '6337021'), + (37011, 417, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd56Bq3Vm', '6337236'), + (37012, 417, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd56Bq3Vm', '6337970'), + (37013, 417, 2156, 'attending', '2023-07-14 16:48:28', '2025-12-17 19:46:52', 'd56Bq3Vm', '6338308'), + (37014, 417, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'd56Bq3Vm', '6340845'), + (37015, 417, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd56Bq3Vm', '6341710'), + (37016, 417, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd56Bq3Vm', '6342044'), + (37017, 417, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd56Bq3Vm', '6342298'), + (37018, 417, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd56Bq3Vm', '6343294'), + (37019, 417, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd56Bq3Vm', '6347034'), + (37020, 417, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd56Bq3Vm', '6347056'), + (37021, 417, 2185, 'maybe', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd56Bq3Vm', '6353830'), + (37022, 417, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd56Bq3Vm', '6353831'), + (37023, 417, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd56Bq3Vm', '6357867'), + (37024, 417, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd56Bq3Vm', '6358652'), + (37025, 417, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd56Bq3Vm', '6361709'), + (37026, 417, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd56Bq3Vm', '6361710'), + (37027, 417, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd56Bq3Vm', '6361711'), + (37028, 417, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd56Bq3Vm', '6361712'), + (37029, 417, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd56Bq3Vm', '6361713'), + (37030, 417, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd56Bq3Vm', '6382573'), + (37031, 417, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd56Bq3Vm', '6388604'), + (37032, 417, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd56Bq3Vm', '6394629'), + (37033, 417, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd56Bq3Vm', '6394631'), + (37034, 417, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd56Bq3Vm', '6440863'), + (37035, 417, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd56Bq3Vm', '6445440'), + (37036, 417, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd56Bq3Vm', '6453951'), + (37037, 417, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd56Bq3Vm', '6461696'), + (37038, 417, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd56Bq3Vm', '6462129'), + (37039, 417, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd56Bq3Vm', '6463218'), + (37040, 417, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd56Bq3Vm', '6472181'), + (37041, 417, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd56Bq3Vm', '6482693'), + (37042, 417, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd56Bq3Vm', '6484200'), + (37043, 417, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd56Bq3Vm', '6484680'), + (37044, 417, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd56Bq3Vm', '6507741'), + (37045, 417, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd56Bq3Vm', '6514659'), + (37046, 417, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd56Bq3Vm', '6514660'), + (37047, 417, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd56Bq3Vm', '6519103'), + (37048, 417, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd56Bq3Vm', '6535681'), + (37049, 417, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd56Bq3Vm', '6584747'), + (37050, 417, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd56Bq3Vm', '6587097'), + (37051, 417, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd56Bq3Vm', '6609022'), + (37052, 417, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd56Bq3Vm', '6632757'), + (37053, 417, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd56Bq3Vm', '6644187'), + (37054, 417, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd56Bq3Vm', '6648951'), + (37055, 417, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd56Bq3Vm', '6648952'), + (37056, 417, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd56Bq3Vm', '6655401'), + (37057, 417, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd56Bq3Vm', '6661585'), + (37058, 417, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd56Bq3Vm', '6661588'), + (37059, 417, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd56Bq3Vm', '6661589'), + (37060, 417, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd56Bq3Vm', '6699906'), + (37061, 417, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd56Bq3Vm', '6701109'), + (37062, 417, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd56Bq3Vm', '6705219'), + (37063, 417, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd56Bq3Vm', '6710153'), + (37064, 417, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd56Bq3Vm', '6711552'), + (37065, 417, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd56Bq3Vm', '6711553'), + (37066, 418, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361709'), + (37067, 418, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361710'), + (37068, 418, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361711'), + (37069, 418, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mM6Pq3EA', '6361712'), + (37070, 418, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mM6Pq3EA', '6361713'), + (37071, 418, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mM6Pq3EA', '6382573'), + (37072, 418, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mM6Pq3EA', '6388604'), + (37073, 418, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mM6Pq3EA', '6394629'), + (37074, 418, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mM6Pq3EA', '6394631'), + (37075, 418, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mM6Pq3EA', '6431478'), + (37076, 419, 500, 'not_attending', '2020-12-17 22:13:39', '2025-12-17 19:47:55', 'kdKM7rYA', '3314964'), + (37077, 419, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'kdKM7rYA', '3351539'), + (37078, 419, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'kdKM7rYA', '3386848'), + (37079, 419, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdKM7rYA', '3389527'), + (37080, 419, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdKM7rYA', '3396499'), + (37081, 419, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'kdKM7rYA', '3403650'), + (37082, 419, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdKM7rYA', '3406988'), + (37083, 419, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'kdKM7rYA', '3416576'), + (37084, 419, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'kdKM7rYA', '3430267'), + (37085, 419, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKM7rYA', '6045684'), + (37086, 420, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dzk319ym', '5195095'), + (37087, 420, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dzk319ym', '5223686'), + (37088, 420, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dzk319ym', '5227432'), + (37089, 420, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dzk319ym', '5247467'), + (37090, 420, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dzk319ym', '5260800'), + (37091, 420, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dzk319ym', '5269930'), + (37092, 420, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dzk319ym', '5271448'), + (37093, 420, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dzk319ym', '5271449'), + (37094, 420, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dzk319ym', '5276469'), + (37095, 420, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dzk319ym', '5278159'), + (37096, 420, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dzk319ym', '5363695'), + (37097, 420, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dzk319ym', '5365960'), + (37098, 420, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dzk319ym', '5368973'), + (37099, 420, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dzk319ym', '5378247'), + (37100, 420, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dzk319ym', '5389605'), + (37101, 420, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dzk319ym', '5397265'), + (37102, 420, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzk319ym', '6045684'), + (37103, 421, 2966, 'maybe', '2025-01-25 02:52:02', '2025-12-17 19:46:22', 'dNrYQgkd', '7796542'), + (37104, 421, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dNrYQgkd', '7825913'), + (37105, 421, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dNrYQgkd', '7826209'), + (37106, 421, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dNrYQgkd', '7834742'), + (37107, 421, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dNrYQgkd', '7842108'), + (37108, 421, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dNrYQgkd', '7842902'), + (37109, 421, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dNrYQgkd', '7842903'), + (37110, 421, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dNrYQgkd', '7842904'), + (37111, 421, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dNrYQgkd', '7842905'), + (37112, 421, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dNrYQgkd', '7855719'), + (37113, 421, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dNrYQgkd', '7860683'), + (37114, 421, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dNrYQgkd', '7860684'), + (37115, 421, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dNrYQgkd', '7866095'), + (37116, 421, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dNrYQgkd', '7869170'), + (37117, 421, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dNrYQgkd', '7869188'), + (37118, 421, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dNrYQgkd', '7869201'), + (37119, 421, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dNrYQgkd', '7877465'), + (37120, 421, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dNrYQgkd', '7878570'), + (37121, 421, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dNrYQgkd', '7888250'), + (37122, 421, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dNrYQgkd', '8349164'), + (37123, 421, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dNrYQgkd', '8349545'), + (37124, 421, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dNrYQgkd', '8353584'), + (37125, 422, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4WB0aXNA', '5195095'), + (37126, 422, 1306, 'maybe', '2022-04-04 17:35:51', '2025-12-17 19:47:26', '4WB0aXNA', '5223682'), + (37127, 422, 1307, 'attending', '2022-04-04 17:34:30', '2025-12-17 19:47:26', '4WB0aXNA', '5223686'), + (37128, 422, 1309, 'attending', '2022-04-06 03:59:43', '2025-12-17 19:47:26', '4WB0aXNA', '5227432'), + (37129, 422, 1314, 'maybe', '2022-04-11 00:05:51', '2025-12-17 19:47:27', '4WB0aXNA', '5233137'), + (37130, 422, 1329, 'maybe', '2022-04-14 20:23:46', '2025-12-17 19:47:27', '4WB0aXNA', '5240135'), + (37131, 422, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4WB0aXNA', '5247467'), + (37132, 422, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WB0aXNA', '6045684'), + (37133, 423, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Md32Pb24', '3236465'), + (37134, 423, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Md32Pb24', '3539918'), + (37135, 423, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Md32Pb24', '3539919'), + (37136, 423, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Md32Pb24', '3539920'), + (37137, 423, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Md32Pb24', '3539921'), + (37138, 423, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Md32Pb24', '3583262'), + (37139, 423, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Md32Pb24', '3661369'), + (37140, 423, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Md32Pb24', '3730212'), + (37141, 423, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Md32Pb24', '3793156'), + (37142, 423, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Md32Pb24', '3803310'), + (37143, 423, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Md32Pb24', '3806392'), + (37144, 423, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Md32Pb24', '6045684'), + (37145, 424, 648, 'maybe', '2021-05-29 16:36:20', '2025-12-17 19:47:47', 'ndlVJqOA', '3539923'), + (37146, 424, 823, 'not_attending', '2021-06-17 03:37:39', '2025-12-17 19:47:48', 'ndlVJqOA', '3974109'), + (37147, 424, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ndlVJqOA', '3975311'), + (37148, 424, 828, 'not_attending', '2021-06-16 14:39:36', '2025-12-17 19:47:47', 'ndlVJqOA', '3975312'), + (37149, 424, 838, 'not_attending', '2021-06-07 17:29:16', '2025-12-17 19:47:47', 'ndlVJqOA', '3994992'), + (37150, 424, 844, 'maybe', '2021-06-16 14:39:29', '2025-12-17 19:47:38', 'ndlVJqOA', '4014338'), + (37151, 424, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ndlVJqOA', '4021848'), + (37152, 424, 868, 'maybe', '2021-06-16 14:46:47', '2025-12-17 19:47:48', 'ndlVJqOA', '4022012'), + (37153, 424, 869, 'maybe', '2021-06-16 14:38:58', '2025-12-17 19:47:38', 'ndlVJqOA', '4136744'), + (37154, 424, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ndlVJqOA', '4136937'), + (37155, 424, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ndlVJqOA', '4136938'), + (37156, 424, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndlVJqOA', '4136947'), + (37157, 424, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndlVJqOA', '4210314'), + (37158, 424, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndlVJqOA', '4225444'), + (37159, 424, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndlVJqOA', '4239259'), + (37160, 424, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ndlVJqOA', '4240316'), + (37161, 424, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ndlVJqOA', '4240317'), + (37162, 424, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndlVJqOA', '4240318'), + (37163, 424, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ndlVJqOA', '4240320'), + (37164, 424, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndlVJqOA', '4250163'), + (37165, 424, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndlVJqOA', '4275957'), + (37166, 424, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndlVJqOA', '4277819'), + (37167, 424, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndlVJqOA', '4301723'), + (37168, 424, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ndlVJqOA', '4302093'), + (37169, 424, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndlVJqOA', '4304151'), + (37170, 424, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndlVJqOA', '4345519'), + (37171, 424, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndlVJqOA', '4358025'), + (37172, 424, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ndlVJqOA', '4366186'), + (37173, 424, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndlVJqOA', '4366187'), + (37174, 424, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlVJqOA', '6045684'), + (37175, 425, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'x4oEO8Xm', '3236465'), + (37176, 425, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'x4oEO8Xm', '3539918'), + (37177, 425, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'x4oEO8Xm', '3539919'), + (37178, 425, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'x4oEO8Xm', '3539920'), + (37179, 425, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'x4oEO8Xm', '3539921'), + (37180, 425, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'x4oEO8Xm', '3583262'), + (37181, 425, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'x4oEO8Xm', '3661369'), + (37182, 425, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'x4oEO8Xm', '3730212'), + (37183, 425, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'x4oEO8Xm', '3793156'), + (37184, 425, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'x4oEO8Xm', '3803310'), + (37185, 425, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'x4oEO8Xm', '3806392'), + (37186, 425, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oEO8Xm', '6045684'), + (37187, 426, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dKOgPzNd', '7897784'), + (37188, 426, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dKOgPzNd', '7903856'), + (37189, 426, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dKOgPzNd', '8347770'), + (37190, 426, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dKOgPzNd', '8349164'), + (37191, 426, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dKOgPzNd', '8349545'), + (37192, 426, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dKOgPzNd', '8353584'), + (37193, 427, 2407, 'attending', '2024-01-20 19:12:17', '2025-12-17 19:46:40', 'bdzMnq14', '6699906'), + (37194, 427, 2408, 'attending', '2024-01-27 13:30:00', '2025-12-17 19:46:40', 'bdzMnq14', '6699907'), + (37195, 427, 2409, 'attending', '2024-02-03 17:15:14', '2025-12-17 19:46:41', 'bdzMnq14', '6699909'), + (37196, 427, 2410, 'not_attending', '2024-02-10 20:06:27', '2025-12-17 19:46:41', 'bdzMnq14', '6699911'), + (37197, 427, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'bdzMnq14', '6699913'), + (37198, 427, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'bdzMnq14', '6705219'), + (37199, 427, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'bdzMnq14', '6710153'), + (37200, 427, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'bdzMnq14', '6711552'), + (37201, 427, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'bdzMnq14', '6711553'), + (37202, 427, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'bdzMnq14', '6722688'), + (37203, 427, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'bdzMnq14', '6730620'), + (37204, 427, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'bdzMnq14', '6730642'), + (37205, 427, 2448, 'attending', '2024-03-18 23:02:50', '2025-12-17 19:46:33', 'bdzMnq14', '6734371'), + (37206, 427, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'bdzMnq14', '6740364'), + (37207, 427, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'bdzMnq14', '6743829'), + (37208, 427, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'bdzMnq14', '7030380'), + (37209, 427, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'bdzMnq14', '7033677'), + (37210, 427, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'bdzMnq14', '7035415'), + (37211, 427, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'bdzMnq14', '7044715'), + (37212, 427, 2487, 'not_attending', '2024-03-18 23:02:52', '2025-12-17 19:46:33', 'bdzMnq14', '7049279'), + (37213, 427, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'bdzMnq14', '7050318'), + (37214, 427, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'bdzMnq14', '7050319'), + (37215, 427, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'bdzMnq14', '7050322'), + (37216, 427, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'bdzMnq14', '7057804'), + (37217, 427, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'bdzMnq14', '7059866'), + (37218, 427, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'bdzMnq14', '7072824'), + (37219, 427, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'bdzMnq14', '7074348'), + (37220, 427, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'bdzMnq14', '7074364'), + (37221, 427, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'bdzMnq14', '7089267'), + (37222, 427, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'bdzMnq14', '7098747'), + (37223, 427, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'bdzMnq14', '7113468'), + (37224, 427, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'bdzMnq14', '7114856'), + (37225, 427, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'bdzMnq14', '7114951'), + (37226, 427, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'bdzMnq14', '7114955'), + (37227, 427, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'bdzMnq14', '7114956'), + (37228, 427, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'bdzMnq14', '7114957'), + (37229, 427, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'bdzMnq14', '7153615'), + (37230, 427, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'bdzMnq14', '7159484'), + (37231, 427, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'bdzMnq14', '7178446'), + (37232, 427, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'bdzMnq14', '7220467'), + (37233, 427, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'bdzMnq14', '7240354'), + (37234, 427, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'bdzMnq14', '7251633'), + (37235, 427, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'bdzMnq14', '7263048'), + (37236, 427, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'bdzMnq14', '7302674'), + (37237, 427, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'bdzMnq14', '7324073'), + (37238, 427, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'bdzMnq14', '7324074'), + (37239, 427, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'bdzMnq14', '7324075'), + (37240, 427, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'bdzMnq14', '7324078'), + (37241, 427, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'bdzMnq14', '7324082'), + (37242, 427, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'bdzMnq14', '7331457'), + (37243, 427, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'bdzMnq14', '7356752'), + (37244, 427, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'bdzMnq14', '7363643'), + (37245, 427, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'bdzMnq14', '7368606'), + (37246, 427, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'bdzMnq14', '7397462'), + (37247, 427, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'bdzMnq14', '7432751'), + (37248, 427, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'bdzMnq14', '7432752'), + (37249, 427, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'bdzMnq14', '7432753'), + (37250, 427, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'bdzMnq14', '7432754'), + (37251, 427, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'bdzMnq14', '7432755'), + (37252, 427, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'bdzMnq14', '7432756'), + (37253, 427, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'bdzMnq14', '7432758'), + (37254, 427, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'bdzMnq14', '7432759'), + (37255, 427, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'bdzMnq14', '7433834'), + (37256, 428, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4036lZVA', '6699913'), + (37257, 428, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4036lZVA', '6722688'), + (37258, 428, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4036lZVA', '6730620'), + (37259, 428, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4036lZVA', '6730642'), + (37260, 428, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4036lZVA', '6740364'), + (37261, 428, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4036lZVA', '6743829'), + (37262, 428, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4036lZVA', '7030380'), + (37263, 428, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4036lZVA', '7033677'), + (37264, 428, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4036lZVA', '7035415'), + (37265, 428, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4036lZVA', '7044715'), + (37266, 428, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4036lZVA', '7050318'), + (37267, 428, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4036lZVA', '7050319'), + (37268, 428, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4036lZVA', '7050322'), + (37269, 428, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4036lZVA', '7057804'), + (37270, 428, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4036lZVA', '7072824'), + (37271, 428, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4036lZVA', '7074348'), + (37272, 428, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4036lZVA', '7089267'), + (37273, 428, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4036lZVA', '7098747'), + (37274, 428, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4036lZVA', '7113468'), + (37275, 428, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4036lZVA', '7114856'), + (37276, 428, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4036lZVA', '7114951'), + (37277, 428, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4036lZVA', '7114955'), + (37278, 428, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4036lZVA', '7114956'), + (37279, 428, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4036lZVA', '7153615'), + (37280, 428, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4036lZVA', '7159484'), + (37281, 428, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4036lZVA', '7178446'), + (37282, 429, 258, 'attending', '2021-05-30 13:10:25', '2025-12-17 19:47:47', 'N4ErKoDd', '3149489'), + (37283, 429, 397, 'maybe', '2021-05-27 13:21:43', '2025-12-17 19:47:47', 'N4ErKoDd', '3236452'), + (37284, 429, 648, 'attending', '2021-05-29 21:37:24', '2025-12-17 19:47:47', 'N4ErKoDd', '3539923'), + (37285, 429, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'N4ErKoDd', '3963335'), + (37286, 429, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'N4ErKoDd', '3974109'), + (37287, 429, 827, 'attending', '2021-06-05 22:14:05', '2025-12-17 19:47:47', 'N4ErKoDd', '3975311'), + (37288, 429, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'N4ErKoDd', '3975312'), + (37289, 429, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'N4ErKoDd', '3994992'), + (37290, 429, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'N4ErKoDd', '4014338'), + (37291, 429, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'N4ErKoDd', '4021848'), + (37292, 429, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'N4ErKoDd', '4136744'), + (37293, 429, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'N4ErKoDd', '4136937'), + (37294, 429, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'N4ErKoDd', '4136938'), + (37295, 429, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'N4ErKoDd', '4136947'), + (37296, 429, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'N4ErKoDd', '4210314'), + (37297, 429, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'N4ErKoDd', '4225444'), + (37298, 429, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'N4ErKoDd', '4239259'), + (37299, 429, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'N4ErKoDd', '4240316'), + (37300, 429, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'N4ErKoDd', '4240317'), + (37301, 429, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'N4ErKoDd', '4240318'), + (37302, 429, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'N4ErKoDd', '4240320'), + (37303, 429, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'N4ErKoDd', '4250163'), + (37304, 429, 919, 'attending', '2021-07-17 22:51:27', '2025-12-17 19:47:39', 'N4ErKoDd', '4275957'), + (37305, 429, 920, 'attending', '2021-07-25 17:51:15', '2025-12-17 19:47:40', 'N4ErKoDd', '4277819'), + (37306, 429, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'N4ErKoDd', '4301723'), + (37307, 429, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'N4ErKoDd', '4302093'), + (37308, 429, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'N4ErKoDd', '4304151'), + (37309, 429, 937, 'attending', '2021-07-25 17:34:12', '2025-12-17 19:47:40', 'N4ErKoDd', '4306596'), + (37310, 429, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'N4ErKoDd', '4345519'), + (37311, 429, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'N4ErKoDd', '4356801'), + (37312, 429, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'N4ErKoDd', '4358025'), + (37313, 429, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'N4ErKoDd', '4366186'), + (37314, 429, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'N4ErKoDd', '4366187'), + (37315, 429, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'N4ErKoDd', '4402823'), + (37316, 429, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'N4ErKoDd', '4420735'), + (37317, 429, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'N4ErKoDd', '4420738'), + (37318, 429, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'N4ErKoDd', '4420739'), + (37319, 429, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'N4ErKoDd', '4420741'), + (37320, 429, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'N4ErKoDd', '4420744'), + (37321, 429, 996, 'attending', '2021-10-16 12:22:45', '2025-12-17 19:47:35', 'N4ErKoDd', '4420747'), + (37322, 429, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'N4ErKoDd', '4420748'), + (37323, 429, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'N4ErKoDd', '4420749'), + (37324, 429, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'N4ErKoDd', '4461883'), + (37325, 429, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'N4ErKoDd', '4508342'), + (37326, 429, 1079, 'attending', '2021-10-20 22:11:05', '2025-12-17 19:47:35', 'N4ErKoDd', '4563823'), + (37327, 429, 1082, 'attending', '2021-10-15 22:54:01', '2025-12-17 19:47:35', 'N4ErKoDd', '4566762'), + (37328, 429, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'N4ErKoDd', '4568602'), + (37329, 429, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'N4ErKoDd', '4572153'), + (37330, 429, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'N4ErKoDd', '4585962'), + (37331, 429, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'N4ErKoDd', '4596356'), + (37332, 429, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'N4ErKoDd', '4598860'), + (37333, 429, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'N4ErKoDd', '4598861'), + (37334, 429, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'N4ErKoDd', '4602797'), + (37335, 429, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'N4ErKoDd', '4637896'), + (37336, 429, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'N4ErKoDd', '4642994'), + (37337, 429, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'N4ErKoDd', '4642995'), + (37338, 429, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'N4ErKoDd', '4642996'), + (37339, 429, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'N4ErKoDd', '4642997'), + (37340, 429, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'N4ErKoDd', '4645687'), + (37341, 429, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'N4ErKoDd', '4645698'), + (37342, 429, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'N4ErKoDd', '4645704'), + (37343, 429, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'N4ErKoDd', '4645705'), + (37344, 429, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'N4ErKoDd', '4668385'), + (37345, 429, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'N4ErKoDd', '4694407'), + (37346, 429, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'N4ErKoDd', '4736497'), + (37347, 429, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'N4ErKoDd', '4736499'), + (37348, 429, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'N4ErKoDd', '4736500'), + (37349, 429, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'N4ErKoDd', '4736503'), + (37350, 429, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'N4ErKoDd', '4736504'), + (37351, 429, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'N4ErKoDd', '4746789'), + (37352, 429, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'N4ErKoDd', '4753929'), + (37353, 429, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'N4ErKoDd', '5038850'), + (37354, 429, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'N4ErKoDd', '5045826'), + (37355, 429, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'N4ErKoDd', '5132533'), + (37356, 429, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'N4ErKoDd', '5186582'), + (37357, 429, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'N4ErKoDd', '5186583'), + (37358, 429, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'N4ErKoDd', '5186585'), + (37359, 429, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'N4ErKoDd', '5190437'), + (37360, 429, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'N4ErKoDd', '5215989'), + (37361, 429, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4ErKoDd', '6045684'), + (37362, 430, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dzvMjKld', '5630968'), + (37363, 430, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dzvMjKld', '5642818'), + (37364, 430, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dzvMjKld', '5670445'), + (37365, 430, 1795, 'attending', '2022-11-18 01:07:45', '2025-12-17 19:47:16', 'dzvMjKld', '5754366'), + (37366, 430, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dzvMjKld', '5763458'), + (37367, 430, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dzvMjKld', '5774172'), + (37368, 430, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dzvMjKld', '5818247'), + (37369, 430, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dzvMjKld', '5819471'), + (37370, 430, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dzvMjKld', '5827739'), + (37371, 430, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dzvMjKld', '5844306'), + (37372, 430, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dzvMjKld', '5850159'), + (37373, 430, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dzvMjKld', '5858999'), + (37374, 430, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dzvMjKld', '5871984'), + (37375, 430, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dzvMjKld', '5876354'), + (37376, 430, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzvMjKld', '6045684'), + (37377, 431, 2304, 'not_attending', '2023-11-04 02:24:08', '2025-12-17 19:46:47', 'd2wE9B8m', '6482693'), + (37378, 431, 2306, 'maybe', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd2wE9B8m', '6484200'), + (37379, 431, 2310, 'attending', '2023-11-11 17:20:26', '2025-12-17 19:46:47', 'd2wE9B8m', '6487709'), + (37380, 431, 2322, 'attending', '2023-11-11 22:19:07', '2025-12-17 19:46:48', 'd2wE9B8m', '6514659'), + (37381, 431, 2323, 'attending', '2023-11-20 20:27:22', '2025-12-17 19:46:48', 'd2wE9B8m', '6514660'), + (37382, 431, 2324, 'attending', '2023-11-20 20:27:27', '2025-12-17 19:46:49', 'd2wE9B8m', '6514662'), + (37383, 431, 2325, 'attending', '2023-11-20 20:27:34', '2025-12-17 19:46:36', 'd2wE9B8m', '6514663'), + (37384, 431, 2328, 'attending', '2023-11-03 16:27:13', '2025-12-17 19:46:47', 'd2wE9B8m', '6515504'), + (37385, 431, 2332, 'attending', '2023-11-05 17:16:08', '2025-12-17 19:46:47', 'd2wE9B8m', '6518655'), + (37386, 431, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd2wE9B8m', '6519103'), + (37387, 431, 2336, 'maybe', '2023-11-08 00:08:28', '2025-12-17 19:46:47', 'd2wE9B8m', '6535500'), + (37388, 431, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd2wE9B8m', '6535681'), + (37389, 431, 2341, 'attending', '2023-11-21 01:19:25', '2025-12-17 19:46:48', 'd2wE9B8m', '6543263'), + (37390, 431, 2347, 'not_attending', '2023-11-19 16:43:52', '2025-12-17 19:46:48', 'd2wE9B8m', '6583053'), + (37391, 431, 2348, 'not_attending', '2023-11-19 17:06:13', '2025-12-17 19:46:48', 'd2wE9B8m', '6583064'), + (37392, 431, 2351, 'maybe', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd2wE9B8m', '6584747'), + (37393, 431, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd2wE9B8m', '6587097'), + (37394, 431, 2357, 'maybe', '2023-12-18 00:23:24', '2025-12-17 19:46:36', 'd2wE9B8m', '6593341'), + (37395, 431, 2358, 'attending', '2023-11-29 19:04:13', '2025-12-17 19:46:48', 'd2wE9B8m', '6595321'), + (37396, 431, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd2wE9B8m', '6609022'), + (37397, 431, 2368, 'attending', '2023-12-11 04:37:38', '2025-12-17 19:46:36', 'd2wE9B8m', '6621445'), + (37398, 431, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd2wE9B8m', '6632757'), + (37399, 431, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd2wE9B8m', '6644187'), + (37400, 431, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd2wE9B8m', '6648951'), + (37401, 431, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd2wE9B8m', '6648952'), + (37402, 431, 2388, 'attending', '2024-01-05 19:27:04', '2025-12-17 19:46:37', 'd2wE9B8m', '6649244'), + (37403, 431, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd2wE9B8m', '6655401'), + (37404, 431, 2399, 'attending', '2024-01-10 22:29:20', '2025-12-17 19:46:38', 'd2wE9B8m', '6657583'), + (37405, 431, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd2wE9B8m', '6661585'), + (37406, 431, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd2wE9B8m', '6661588'), + (37407, 431, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd2wE9B8m', '6661589'), + (37408, 431, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd2wE9B8m', '6699906'), + (37409, 431, 2408, 'attending', '2024-01-18 18:46:24', '2025-12-17 19:46:40', 'd2wE9B8m', '6699907'), + (37410, 431, 2409, 'not_attending', '2024-01-24 15:02:57', '2025-12-17 19:46:41', 'd2wE9B8m', '6699909'), + (37411, 431, 2410, 'not_attending', '2024-01-24 15:02:59', '2025-12-17 19:46:41', 'd2wE9B8m', '6699911'), + (37412, 431, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd2wE9B8m', '6699913'), + (37413, 431, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd2wE9B8m', '6701109'), + (37414, 431, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'd2wE9B8m', '6704561'), + (37415, 431, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd2wE9B8m', '6705219'), + (37416, 431, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'd2wE9B8m', '6708410'), + (37417, 431, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd2wE9B8m', '6710153'), + (37418, 431, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd2wE9B8m', '6711552'), + (37419, 431, 2430, 'maybe', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'd2wE9B8m', '6711553'), + (37420, 431, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd2wE9B8m', '6722688'), + (37421, 431, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd2wE9B8m', '6730620'), + (37422, 431, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd2wE9B8m', '6730642'), + (37423, 431, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd2wE9B8m', '6740364'), + (37424, 431, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd2wE9B8m', '6743829'), + (37425, 431, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd2wE9B8m', '7030380'), + (37426, 431, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd2wE9B8m', '7033677'), + (37427, 431, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd2wE9B8m', '7035415'), + (37428, 431, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd2wE9B8m', '7044715'), + (37429, 431, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd2wE9B8m', '7050318'), + (37430, 431, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd2wE9B8m', '7050319'), + (37431, 431, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd2wE9B8m', '7050322'), + (37432, 431, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd2wE9B8m', '7057804'), + (37433, 431, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd2wE9B8m', '7072824'), + (37434, 431, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd2wE9B8m', '7074348'), + (37435, 431, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd2wE9B8m', '7089267'), + (37436, 431, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd2wE9B8m', '7098747'), + (37437, 431, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd2wE9B8m', '7113468'), + (37438, 431, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd2wE9B8m', '7114856'), + (37439, 431, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd2wE9B8m', '7114951'), + (37440, 431, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd2wE9B8m', '7114955'), + (37441, 431, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd2wE9B8m', '7114956'), + (37442, 431, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd2wE9B8m', '7114957'), + (37443, 431, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd2wE9B8m', '7153615'), + (37444, 431, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd2wE9B8m', '7159484'), + (37445, 431, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd2wE9B8m', '7178446'), + (37446, 431, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd2wE9B8m', '7220467'), + (37447, 431, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd2wE9B8m', '7240354'), + (37448, 431, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd2wE9B8m', '7251633'), + (37449, 431, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd2wE9B8m', '7302674'), + (37450, 432, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '8d8lBL0d', '6061039'), + (37451, 432, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8d8lBL0d', '6067245'), + (37452, 432, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '8d8lBL0d', '6079840'), + (37453, 432, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '8d8lBL0d', '6083398'), + (37454, 432, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '8d8lBL0d', '6093504'), + (37455, 432, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '8d8lBL0d', '6097414'), + (37456, 432, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '8d8lBL0d', '6097442'), + (37457, 432, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '8d8lBL0d', '6097684'), + (37458, 432, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '8d8lBL0d', '6098762'), + (37459, 432, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8d8lBL0d', '6101362'), + (37460, 432, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8d8lBL0d', '6107314'), + (37461, 432, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '8d8lBL0d', '6120034'), + (37462, 433, 2145, 'not_attending', '2023-07-13 20:59:41', '2025-12-17 19:46:52', 'mpqn6vkA', '6334903'), + (37463, 433, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mpqn6vkA', '6337236'), + (37464, 433, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mpqn6vkA', '6337970'), + (37465, 433, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mpqn6vkA', '6338308'), + (37466, 433, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mpqn6vkA', '6341710'), + (37467, 433, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mpqn6vkA', '6342044'), + (37468, 433, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mpqn6vkA', '6342298'), + (37469, 433, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'mpqn6vkA', '6342591'), + (37470, 433, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mpqn6vkA', '6343294'), + (37471, 433, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mpqn6vkA', '6347034'), + (37472, 433, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mpqn6vkA', '6347056'), + (37473, 433, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mpqn6vkA', '6353830'), + (37474, 433, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mpqn6vkA', '6353831'), + (37475, 433, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mpqn6vkA', '6357867'), + (37476, 433, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mpqn6vkA', '6358652'), + (37477, 433, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mpqn6vkA', '6361709'), + (37478, 433, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mpqn6vkA', '6361710'), + (37479, 433, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mpqn6vkA', '6361711'), + (37480, 433, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mpqn6vkA', '6361712'), + (37481, 433, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mpqn6vkA', '6361713'), + (37482, 433, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mpqn6vkA', '6382573'), + (37483, 433, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mpqn6vkA', '6388604'), + (37484, 433, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mpqn6vkA', '6394629'), + (37485, 433, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mpqn6vkA', '6394631'), + (37486, 433, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mpqn6vkA', '6431478'), + (37487, 434, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4P107gwd', '6484200'), + (37488, 434, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4P107gwd', '6514659'), + (37489, 434, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4P107gwd', '6514660'), + (37490, 434, 2324, 'attending', '2023-12-08 07:27:17', '2025-12-17 19:46:49', '4P107gwd', '6514662'), + (37491, 434, 2325, 'attending', '2023-12-08 23:10:37', '2025-12-17 19:46:36', '4P107gwd', '6514663'), + (37492, 434, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4P107gwd', '6584747'), + (37493, 434, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4P107gwd', '6587097'), + (37494, 434, 2359, 'attending', '2023-11-30 22:52:20', '2025-12-17 19:46:48', '4P107gwd', '6596617'), + (37495, 434, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4P107gwd', '6609022'), + (37496, 434, 2371, 'attending', '2023-12-15 21:55:23', '2025-12-17 19:46:36', '4P107gwd', '6624495'), + (37497, 434, 2374, 'attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4P107gwd', '6632757'), + (37498, 434, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4P107gwd', '6644187'), + (37499, 434, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4P107gwd', '6648951'), + (37500, 434, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4P107gwd', '6648952'), + (37501, 434, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4P107gwd', '6655401'), + (37502, 434, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4P107gwd', '6661585'), + (37503, 434, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4P107gwd', '6661588'), + (37504, 434, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4P107gwd', '6661589'), + (37505, 434, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4P107gwd', '6699906'), + (37506, 434, 2409, 'attending', '2024-02-03 22:11:16', '2025-12-17 19:46:41', '4P107gwd', '6699909'), + (37507, 434, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4P107gwd', '6699913'), + (37508, 434, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4P107gwd', '6701109'), + (37509, 434, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4P107gwd', '6705219'), + (37510, 434, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4P107gwd', '6710153'), + (37511, 434, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4P107gwd', '6711552'), + (37512, 434, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4P107gwd', '6711553'), + (37513, 434, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4P107gwd', '6722688'), + (37514, 434, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4P107gwd', '6730620'), + (37515, 434, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4P107gwd', '6730642'), + (37516, 434, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4P107gwd', '6740364'), + (37517, 434, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4P107gwd', '6743829'), + (37518, 434, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4P107gwd', '7030380'), + (37519, 434, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4P107gwd', '7033677'), + (37520, 434, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4P107gwd', '7035415'), + (37521, 434, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4P107gwd', '7044715'), + (37522, 434, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4P107gwd', '7050318'), + (37523, 434, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4P107gwd', '7050319'), + (37524, 434, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4P107gwd', '7050322'), + (37525, 434, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4P107gwd', '7057804'), + (37526, 434, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '4P107gwd', '7059866'), + (37527, 434, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4P107gwd', '7072824'), + (37528, 434, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4P107gwd', '7074348'), + (37529, 434, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4P107gwd', '7089267'), + (37530, 434, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4P107gwd', '7098747'), + (37531, 434, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4P107gwd', '7113468'), + (37532, 434, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4P107gwd', '7114856'), + (37533, 434, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4P107gwd', '7114951'), + (37534, 434, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4P107gwd', '7114955'), + (37535, 434, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4P107gwd', '7114956'), + (37536, 434, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4P107gwd', '7114957'), + (37537, 434, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4P107gwd', '7153615'), + (37538, 434, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4P107gwd', '7159484'), + (37539, 434, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4P107gwd', '7178446'), + (37540, 434, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4P107gwd', '7220467'), + (37541, 434, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4P107gwd', '7240354'), + (37542, 434, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4P107gwd', '7251633'), + (37543, 434, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4P107gwd', '7263048'), + (37544, 434, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4P107gwd', '7302674'), + (37545, 435, 1515, 'attending', '2022-08-02 13:32:52', '2025-12-17 19:47:21', '40Da6Lx4', '5441128'), + (37546, 435, 1516, 'attending', '2022-08-19 22:57:53', '2025-12-17 19:47:23', '40Da6Lx4', '5441129'), + (37547, 435, 1517, 'attending', '2022-08-27 16:46:27', '2025-12-17 19:47:23', '40Da6Lx4', '5441130'), + (37548, 435, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '40Da6Lx4', '5441131'), + (37549, 435, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '40Da6Lx4', '5441132'), + (37550, 435, 1538, 'not_attending', '2022-08-21 22:27:24', '2025-12-17 19:47:21', '40Da6Lx4', '5449565'), + (37551, 435, 1557, 'maybe', '2022-08-03 16:49:01', '2025-12-17 19:47:21', '40Da6Lx4', '5458729'), + (37552, 435, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '40Da6Lx4', '5461278'), + (37553, 435, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '40Da6Lx4', '5469480'), + (37554, 435, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', '40Da6Lx4', '5471073'), + (37555, 435, 1567, 'attending', '2022-08-01 21:40:44', '2025-12-17 19:47:21', '40Da6Lx4', '5477629'), + (37556, 435, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '40Da6Lx4', '5482022'), + (37557, 435, 1576, 'attending', '2022-08-01 23:07:20', '2025-12-17 19:47:21', '40Da6Lx4', '5482623'), + (37558, 435, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '40Da6Lx4', '5482793'), + (37559, 435, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '40Da6Lx4', '5488912'), + (37560, 435, 1584, 'attending', '2022-08-26 16:44:06', '2025-12-17 19:47:23', '40Da6Lx4', '5492004'), + (37561, 435, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '40Da6Lx4', '5492192'), + (37562, 435, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '40Da6Lx4', '5493139'), + (37563, 435, 1589, 'attending', '2022-08-21 19:56:48', '2025-12-17 19:47:23', '40Da6Lx4', '5493159'), + (37564, 435, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '40Da6Lx4', '5493200'), + (37565, 435, 1603, 'attending', '2022-08-19 21:41:58', '2025-12-17 19:47:23', '40Da6Lx4', '5497895'), + (37566, 435, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '40Da6Lx4', '5502188'), + (37567, 435, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '40Da6Lx4', '5505059'), + (37568, 435, 1611, 'attending', '2022-09-05 18:28:56', '2025-12-17 19:47:24', '40Da6Lx4', '5507652'), + (37569, 435, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '40Da6Lx4', '5509055'), + (37570, 435, 1618, 'attending', '2022-08-26 16:45:55', '2025-12-17 19:47:23', '40Da6Lx4', '5512005'), + (37571, 435, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '40Da6Lx4', '5512862'), + (37572, 435, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '40Da6Lx4', '5513985'), + (37573, 435, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '40Da6Lx4', '5519981'), + (37574, 435, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '40Da6Lx4', '5522550'), + (37575, 435, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '40Da6Lx4', '5534683'), + (37576, 435, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '40Da6Lx4', '5537735'), + (37577, 435, 1636, 'attending', '2022-09-04 03:34:08', '2025-12-17 19:47:24', '40Da6Lx4', '5538454'), + (37578, 435, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '40Da6Lx4', '5540859'), + (37579, 435, 1641, 'not_attending', '2022-09-03 14:28:06', '2025-12-17 19:47:24', '40Da6Lx4', '5544226'), + (37580, 435, 1642, 'attending', '2022-09-03 07:38:40', '2025-12-17 19:47:24', '40Da6Lx4', '5544227'), + (37581, 435, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '40Da6Lx4', '5546619'), + (37582, 435, 1650, 'attending', '2022-09-04 04:18:30', '2025-12-17 19:47:24', '40Da6Lx4', '5549611'), + (37583, 435, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '40Da6Lx4', '5555245'), + (37584, 435, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '40Da6Lx4', '5557747'), + (37585, 435, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '40Da6Lx4', '5560255'), + (37586, 435, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '40Da6Lx4', '5562906'), + (37587, 435, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '40Da6Lx4', '5600604'), + (37588, 435, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '40Da6Lx4', '5605544'), + (37589, 435, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', '40Da6Lx4', '5606737'), + (37590, 435, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '40Da6Lx4', '5630960'), + (37591, 435, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '40Da6Lx4', '5630961'), + (37592, 435, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '40Da6Lx4', '5630962'), + (37593, 435, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '40Da6Lx4', '5630966'), + (37594, 435, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '40Da6Lx4', '5630967'), + (37595, 435, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '40Da6Lx4', '5630968'), + (37596, 435, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '40Da6Lx4', '5635406'), + (37597, 435, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '40Da6Lx4', '5638765'), + (37598, 435, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '40Da6Lx4', '5640097'), + (37599, 435, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '40Da6Lx4', '5640843'), + (37600, 435, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '40Da6Lx4', '5641521'), + (37601, 435, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '40Da6Lx4', '5642818'), + (37602, 435, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '40Da6Lx4', '5652395'), + (37603, 435, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '40Da6Lx4', '5670445'), + (37604, 435, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '40Da6Lx4', '5671637'), + (37605, 435, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '40Da6Lx4', '5672329'), + (37606, 435, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '40Da6Lx4', '5674057'), + (37607, 435, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '40Da6Lx4', '5674060'), + (37608, 435, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '40Da6Lx4', '5677461'), + (37609, 435, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '40Da6Lx4', '5698046'), + (37610, 435, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '40Da6Lx4', '5699760'), + (37611, 435, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '40Da6Lx4', '5741601'), + (37612, 435, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '40Da6Lx4', '5763458'), + (37613, 435, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '40Da6Lx4', '5774172'), + (37614, 435, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '40Da6Lx4', '5818247'), + (37615, 435, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '40Da6Lx4', '5819471'), + (37616, 435, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '40Da6Lx4', '5827739'), + (37617, 435, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '40Da6Lx4', '5844306'), + (37618, 435, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '40Da6Lx4', '5850159'), + (37619, 435, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '40Da6Lx4', '5858999'), + (37620, 435, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '40Da6Lx4', '5871984'), + (37621, 435, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '40Da6Lx4', '5876354'), + (37622, 435, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '40Da6Lx4', '5880939'), + (37623, 435, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '40Da6Lx4', '5880940'), + (37624, 435, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '40Da6Lx4', '5880942'), + (37625, 435, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '40Da6Lx4', '5880943'), + (37626, 435, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '40Da6Lx4', '5887890'), + (37627, 435, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '40Da6Lx4', '5888598'), + (37628, 435, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '40Da6Lx4', '5893260'), + (37629, 435, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '40Da6Lx4', '5899826'), + (37630, 435, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '40Da6Lx4', '5900199'), + (37631, 435, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '40Da6Lx4', '5900200'), + (37632, 435, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '40Da6Lx4', '5900202'), + (37633, 435, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '40Da6Lx4', '5900203'), + (37634, 435, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '40Da6Lx4', '5901108'), + (37635, 435, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '40Da6Lx4', '5901126'), + (37636, 435, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '40Da6Lx4', '5909655'), + (37637, 435, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '40Da6Lx4', '5910522'), + (37638, 435, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '40Da6Lx4', '5910526'), + (37639, 435, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '40Da6Lx4', '5910528'), + (37640, 435, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '40Da6Lx4', '5916219'), + (37641, 435, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '40Da6Lx4', '5936234'), + (37642, 435, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '40Da6Lx4', '5958351'), + (37643, 435, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '40Da6Lx4', '5959751'), + (37644, 435, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '40Da6Lx4', '5959755'), + (37645, 435, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '40Da6Lx4', '5960055'), + (37646, 435, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '40Da6Lx4', '5961684'), + (37647, 435, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '40Da6Lx4', '5962132'), + (37648, 435, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '40Da6Lx4', '5962133'), + (37649, 435, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '40Da6Lx4', '5962134'), + (37650, 435, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '40Da6Lx4', '5962317'), + (37651, 435, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '40Da6Lx4', '5962318'), + (37652, 435, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '40Da6Lx4', '5965933'), + (37653, 435, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '40Da6Lx4', '5967014'), + (37654, 435, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '40Da6Lx4', '5972815'), + (37655, 435, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '40Da6Lx4', '5974016'), + (37656, 435, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '40Da6Lx4', '5981515'), + (37657, 435, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '40Da6Lx4', '5993516'), + (37658, 435, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '40Da6Lx4', '5998939'), + (37659, 435, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '40Da6Lx4', '6028191'), + (37660, 435, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '40Da6Lx4', '6040066'), + (37661, 435, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '40Da6Lx4', '6042717'), + (37662, 435, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '40Da6Lx4', '6044838'), + (37663, 435, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '40Da6Lx4', '6044839'), + (37664, 435, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '40Da6Lx4', '6045684'), + (37665, 435, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '40Da6Lx4', '6050104'), + (37666, 435, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '40Da6Lx4', '6053195'), + (37667, 435, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '40Da6Lx4', '6053198'), + (37668, 435, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '40Da6Lx4', '6056085'), + (37669, 435, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '40Da6Lx4', '6056916'), + (37670, 435, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '40Da6Lx4', '6059290'), + (37671, 435, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '40Da6Lx4', '6060328'), + (37672, 435, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '40Da6Lx4', '6061037'), + (37673, 435, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '40Da6Lx4', '6061039'), + (37674, 435, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '40Da6Lx4', '6067245'), + (37675, 435, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '40Da6Lx4', '6068094'), + (37676, 435, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '40Da6Lx4', '6068252'), + (37677, 435, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '40Da6Lx4', '6068253'), + (37678, 435, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '40Da6Lx4', '6068254'), + (37679, 435, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '40Da6Lx4', '6068280'), + (37680, 435, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '40Da6Lx4', '6069093'), + (37681, 435, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '40Da6Lx4', '6072528'), + (37682, 435, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '40Da6Lx4', '6079840'), + (37683, 435, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '40Da6Lx4', '6083398'), + (37684, 435, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '40Da6Lx4', '6093504'), + (37685, 435, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '40Da6Lx4', '6097414'), + (37686, 435, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '40Da6Lx4', '6097442'), + (37687, 435, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '40Da6Lx4', '6097684'), + (37688, 435, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '40Da6Lx4', '6098762'), + (37689, 435, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '40Da6Lx4', '6101362'), + (37690, 435, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '40Da6Lx4', '6103752'), + (37691, 435, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '40Da6Lx4', '6107314'), + (37692, 436, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8GMXNV4', '6045684'), + (37693, 437, 49, 'attending', '2020-06-01 23:39:26', '2025-12-17 19:47:58', 'v4DOV8qA', '2975274'), + (37694, 437, 66, 'attending', '2020-06-03 03:21:07', '2025-12-17 19:47:58', 'v4DOV8qA', '2977135'), + (37695, 437, 68, 'maybe', '2020-06-22 19:55:48', '2025-12-17 19:47:58', 'v4DOV8qA', '2977137'), + (37696, 437, 69, 'attending', '2020-06-29 17:16:29', '2025-12-17 19:47:55', 'v4DOV8qA', '2977138'), + (37697, 437, 80, 'attending', '2020-06-05 18:19:22', '2025-12-17 19:47:58', 'v4DOV8qA', '2978251'), + (37698, 437, 81, 'attending', '2020-06-07 18:15:32', '2025-12-17 19:47:58', 'v4DOV8qA', '2978252'), + (37699, 437, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'v4DOV8qA', '3034321'), + (37700, 437, 143, 'attending', '2020-06-03 03:29:27', '2025-12-17 19:47:58', 'v4DOV8qA', '3049983'), + (37701, 437, 169, 'attending', '2020-06-14 19:14:07', '2025-12-17 19:47:58', 'v4DOV8qA', '3058741'), + (37702, 437, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'v4DOV8qA', '3058959'), + (37703, 437, 173, 'not_attending', '2020-06-14 18:59:14', '2025-12-17 19:47:58', 'v4DOV8qA', '3067093'), + (37704, 437, 175, 'attending', '2020-06-16 02:51:50', '2025-12-17 19:47:58', 'v4DOV8qA', '3068305'), + (37705, 437, 180, 'maybe', '2020-06-15 21:00:29', '2025-12-17 19:47:58', 'v4DOV8qA', '3074048'), + (37706, 437, 182, 'attending', '2020-06-17 04:11:30', '2025-12-17 19:47:55', 'v4DOV8qA', '3074514'), + (37707, 437, 183, 'attending', '2020-06-16 00:28:15', '2025-12-17 19:47:58', 'v4DOV8qA', '3075228'), + (37708, 437, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'v4DOV8qA', '3075456'), + (37709, 437, 186, 'not_attending', '2020-06-23 00:43:11', '2025-12-17 19:47:55', 'v4DOV8qA', '3083791'), + (37710, 437, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'v4DOV8qA', '3085151'), + (37711, 437, 188, 'maybe', '2020-06-21 03:57:00', '2025-12-17 19:47:58', 'v4DOV8qA', '3086646'), + (37712, 437, 190, 'attending', '2020-06-30 02:19:54', '2025-12-17 19:47:55', 'v4DOV8qA', '3087258'), + (37713, 437, 191, 'maybe', '2020-07-07 19:05:53', '2025-12-17 19:47:55', 'v4DOV8qA', '3087259'), + (37714, 437, 192, 'maybe', '2020-07-15 13:32:48', '2025-12-17 19:47:55', 'v4DOV8qA', '3087260'), + (37715, 437, 193, 'not_attending', '2020-07-21 16:04:32', '2025-12-17 19:47:55', 'v4DOV8qA', '3087261'), + (37716, 437, 194, 'maybe', '2020-07-28 04:22:10', '2025-12-17 19:47:56', 'v4DOV8qA', '3087262'), + (37717, 437, 195, 'attending', '2020-07-21 21:09:21', '2025-12-17 19:47:56', 'v4DOV8qA', '3087264'), + (37718, 437, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'v4DOV8qA', '3087265'), + (37719, 437, 197, 'attending', '2020-08-22 01:07:44', '2025-12-17 19:47:56', 'v4DOV8qA', '3087266'), + (37720, 437, 198, 'attending', '2020-08-27 03:18:42', '2025-12-17 19:47:56', 'v4DOV8qA', '3087267'), + (37721, 437, 199, 'attending', '2020-09-01 03:32:13', '2025-12-17 19:47:56', 'v4DOV8qA', '3087268'), + (37722, 437, 201, 'attending', '2020-06-21 15:23:14', '2025-12-17 19:47:55', 'v4DOV8qA', '3088653'), + (37723, 437, 202, 'not_attending', '2020-06-28 03:21:30', '2025-12-17 19:47:55', 'v4DOV8qA', '3090353'), + (37724, 437, 203, 'attending', '2020-06-22 19:55:52', '2025-12-17 19:47:58', 'v4DOV8qA', '3091624'), + (37725, 437, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'v4DOV8qA', '3106813'), + (37726, 437, 212, 'attending', '2020-07-05 03:13:50', '2025-12-17 19:47:55', 'v4DOV8qA', '3118517'), + (37727, 437, 214, 'maybe', '2020-07-07 19:04:46', '2025-12-17 19:47:55', 'v4DOV8qA', '3124139'), + (37728, 437, 215, 'attending', '2020-07-07 01:23:54', '2025-12-17 19:47:55', 'v4DOV8qA', '3124987'), + (37729, 437, 217, 'maybe', '2020-07-12 03:47:30', '2025-12-17 19:47:55', 'v4DOV8qA', '3126684'), + (37730, 437, 223, 'attending', '2020-09-10 14:58:12', '2025-12-17 19:47:56', 'v4DOV8qA', '3129980'), + (37731, 437, 224, 'attending', '2020-07-12 03:47:57', '2025-12-17 19:47:55', 'v4DOV8qA', '3130712'), + (37732, 437, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'v4DOV8qA', '3132817'), + (37733, 437, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'v4DOV8qA', '3132820'), + (37734, 437, 230, 'maybe', '2020-07-21 21:07:26', '2025-12-17 19:47:55', 'v4DOV8qA', '3139232'), + (37735, 437, 232, 'attending', '2020-07-19 22:10:53', '2025-12-17 19:47:55', 'v4DOV8qA', '3139770'), + (37736, 437, 233, 'attending', '2020-07-20 04:41:31', '2025-12-17 19:47:55', 'v4DOV8qA', '3139773'), + (37737, 437, 269, 'maybe', '2020-07-29 05:10:08', '2025-12-17 19:47:55', 'v4DOV8qA', '3153076'), + (37738, 437, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'v4DOV8qA', '3155321'), + (37739, 437, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'v4DOV8qA', '3162006'), + (37740, 437, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'v4DOV8qA', '3163442'), + (37741, 437, 280, 'attending', '2020-08-06 05:15:09', '2025-12-17 19:47:56', 'v4DOV8qA', '3166942'), + (37742, 437, 281, 'attending', '2020-08-06 05:15:45', '2025-12-17 19:47:56', 'v4DOV8qA', '3166945'), + (37743, 437, 293, 'not_attending', '2020-08-19 23:16:28', '2025-12-17 19:47:56', 'v4DOV8qA', '3172832'), + (37744, 437, 294, 'maybe', '2020-08-21 05:12:02', '2025-12-17 19:47:56', 'v4DOV8qA', '3172833'), + (37745, 437, 295, 'attending', '2020-08-30 05:21:51', '2025-12-17 19:47:56', 'v4DOV8qA', '3172834'), + (37746, 437, 296, 'not_attending', '2020-08-23 04:49:48', '2025-12-17 19:47:56', 'v4DOV8qA', '3172876'), + (37747, 437, 297, 'maybe', '2020-08-11 00:16:37', '2025-12-17 19:47:56', 'v4DOV8qA', '3173937'), + (37748, 437, 298, 'maybe', '2020-08-28 02:50:59', '2025-12-17 19:47:56', 'v4DOV8qA', '3174556'), + (37749, 437, 299, 'not_attending', '2020-08-18 19:04:51', '2025-12-17 19:47:56', 'v4DOV8qA', '3176591'), + (37750, 437, 301, 'maybe', '2020-08-26 03:04:38', '2025-12-17 19:47:56', 'v4DOV8qA', '3178027'), + (37751, 437, 302, 'maybe', '2020-08-14 01:29:08', '2025-12-17 19:47:56', 'v4DOV8qA', '3178028'), + (37752, 437, 303, 'attending', '2020-08-14 01:21:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3178444'), + (37753, 437, 306, 'not_attending', '2020-08-16 03:51:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3179777'), + (37754, 437, 307, 'not_attending', '2020-08-18 04:17:10', '2025-12-17 19:47:56', 'v4DOV8qA', '3182590'), + (37755, 437, 310, 'not_attending', '2020-08-23 17:56:35', '2025-12-17 19:47:56', 'v4DOV8qA', '3186005'), + (37756, 437, 311, 'not_attending', '2020-08-29 17:54:40', '2025-12-17 19:47:56', 'v4DOV8qA', '3186057'), + (37757, 437, 312, 'attending', '2020-08-22 01:17:20', '2025-12-17 19:47:56', 'v4DOV8qA', '3187795'), + (37758, 437, 314, 'maybe', '2020-08-25 21:48:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3188480'), + (37759, 437, 315, 'maybe', '2020-08-26 03:09:37', '2025-12-17 19:47:56', 'v4DOV8qA', '3189085'), + (37760, 437, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'v4DOV8qA', '3191735'), + (37761, 437, 319, 'attending', '2020-08-30 05:21:44', '2025-12-17 19:47:56', 'v4DOV8qA', '3194179'), + (37762, 437, 330, 'maybe', '2020-09-01 03:29:35', '2025-12-17 19:47:56', 'v4DOV8qA', '3197322'), + (37763, 437, 333, 'maybe', '2020-10-06 19:26:47', '2025-12-17 19:47:52', 'v4DOV8qA', '3199782'), + (37764, 437, 334, 'not_attending', '2020-10-07 14:59:11', '2025-12-17 19:47:52', 'v4DOV8qA', '3199784'), + (37765, 437, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'v4DOV8qA', '3200209'), + (37766, 437, 339, 'attending', '2020-09-06 04:22:36', '2025-12-17 19:47:56', 'v4DOV8qA', '3204469'), + (37767, 437, 340, 'maybe', '2020-09-14 23:44:31', '2025-12-17 19:47:56', 'v4DOV8qA', '3204470'), + (37768, 437, 341, 'maybe', '2020-09-17 21:44:59', '2025-12-17 19:47:52', 'v4DOV8qA', '3204471'), + (37769, 437, 342, 'maybe', '2020-09-29 02:36:03', '2025-12-17 19:47:52', 'v4DOV8qA', '3204472'), + (37770, 437, 344, 'attending', '2020-10-13 04:16:38', '2025-12-17 19:47:53', 'v4DOV8qA', '3206906'), + (37771, 437, 348, 'not_attending', '2020-09-29 22:52:33', '2025-12-17 19:47:52', 'v4DOV8qA', '3209159'), + (37772, 437, 351, 'maybe', '2020-09-12 21:16:45', '2025-12-17 19:47:56', 'v4DOV8qA', '3209257'), + (37773, 437, 354, 'attending', '2020-09-13 21:51:49', '2025-12-17 19:47:56', 'v4DOV8qA', '3212570'), + (37774, 437, 355, 'attending', '2020-09-14 23:43:54', '2025-12-17 19:47:56', 'v4DOV8qA', '3212571'), + (37775, 437, 356, 'maybe', '2020-09-23 22:29:37', '2025-12-17 19:47:51', 'v4DOV8qA', '3212572'), + (37776, 437, 357, 'maybe', '2020-09-30 23:27:33', '2025-12-17 19:47:52', 'v4DOV8qA', '3212573'), + (37777, 437, 359, 'maybe', '2020-09-14 13:22:30', '2025-12-17 19:47:56', 'v4DOV8qA', '3212624'), + (37778, 437, 362, 'maybe', '2020-09-16 19:44:53', '2025-12-17 19:47:52', 'v4DOV8qA', '3214207'), + (37779, 437, 363, 'not_attending', '2020-09-16 22:40:20', '2025-12-17 19:47:52', 'v4DOV8qA', '3217037'), + (37780, 437, 364, 'attending', '2020-09-19 00:36:53', '2025-12-17 19:47:56', 'v4DOV8qA', '3217106'), + (37781, 437, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'v4DOV8qA', '3218510'), + (37782, 437, 368, 'maybe', '2020-09-30 01:57:34', '2025-12-17 19:47:52', 'v4DOV8qA', '3221403'), + (37783, 437, 375, 'maybe', '2020-10-07 14:59:18', '2025-12-17 19:47:52', 'v4DOV8qA', '3222825'), + (37784, 437, 378, 'not_attending', '2020-09-26 03:38:28', '2025-12-17 19:47:52', 'v4DOV8qA', '3223725'), + (37785, 437, 382, 'maybe', '2020-09-29 06:57:25', '2025-12-17 19:47:52', 'v4DOV8qA', '3226873'), + (37786, 437, 384, 'attending', '2020-09-29 02:35:09', '2025-12-17 19:47:52', 'v4DOV8qA', '3228696'), + (37787, 437, 385, 'maybe', '2020-09-29 01:44:43', '2025-12-17 19:47:52', 'v4DOV8qA', '3228698'), + (37788, 437, 386, 'maybe', '2020-09-29 01:44:53', '2025-12-17 19:47:52', 'v4DOV8qA', '3228699'), + (37789, 437, 387, 'maybe', '2020-10-17 22:25:51', '2025-12-17 19:47:52', 'v4DOV8qA', '3228700'), + (37790, 437, 388, 'attending', '2020-10-19 17:34:58', '2025-12-17 19:47:52', 'v4DOV8qA', '3228701'), + (37791, 437, 389, 'maybe', '2020-10-01 13:46:56', '2025-12-17 19:47:52', 'v4DOV8qA', '3231284'), + (37792, 437, 390, 'not_attending', '2020-10-04 14:57:30', '2025-12-17 19:47:52', 'v4DOV8qA', '3231510'), + (37793, 437, 411, 'maybe', '2020-10-09 00:21:20', '2025-12-17 19:47:52', 'v4DOV8qA', '3236596'), + (37794, 437, 415, 'attending', '2020-10-09 00:21:05', '2025-12-17 19:47:52', 'v4DOV8qA', '3238044'), + (37795, 437, 420, 'not_attending', '2020-10-15 14:59:57', '2025-12-17 19:47:52', 'v4DOV8qA', '3245293'), + (37796, 437, 421, 'not_attending', '2020-10-20 20:46:41', '2025-12-17 19:47:52', 'v4DOV8qA', '3245294'), + (37797, 437, 422, 'maybe', '2020-10-19 17:34:00', '2025-12-17 19:47:53', 'v4DOV8qA', '3245295'), + (37798, 437, 424, 'maybe', '2020-10-12 19:44:19', '2025-12-17 19:47:52', 'v4DOV8qA', '3245751'), + (37799, 437, 425, 'maybe', '2020-10-15 15:00:09', '2025-12-17 19:47:52', 'v4DOV8qA', '3250097'), + (37800, 437, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'v4DOV8qA', '3250232'), + (37801, 437, 429, 'attending', '2020-11-25 20:33:04', '2025-12-17 19:47:54', 'v4DOV8qA', '3250523'), + (37802, 437, 435, 'not_attending', '2020-10-24 18:52:21', '2025-12-17 19:47:52', 'v4DOV8qA', '3254790'), + (37803, 437, 438, 'maybe', '2020-10-22 05:30:57', '2025-12-17 19:47:53', 'v4DOV8qA', '3256163'), + (37804, 437, 439, 'maybe', '2020-10-27 00:43:51', '2025-12-17 19:47:53', 'v4DOV8qA', '3256164'), + (37805, 437, 440, 'attending', '2020-11-05 05:50:24', '2025-12-17 19:47:53', 'v4DOV8qA', '3256168'), + (37806, 437, 441, 'attending', '2020-11-12 06:35:19', '2025-12-17 19:47:54', 'v4DOV8qA', '3256169'), + (37807, 437, 442, 'attending', '2020-10-20 23:16:30', '2025-12-17 19:47:52', 'v4DOV8qA', '3260345'), + (37808, 437, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'v4DOV8qA', '3263578'), + (37809, 437, 444, 'not_attending', '2020-10-27 19:58:13', '2025-12-17 19:47:53', 'v4DOV8qA', '3263745'), + (37810, 437, 445, 'attending', '2020-11-03 21:17:02', '2025-12-17 19:47:54', 'v4DOV8qA', '3266138'), + (37811, 437, 449, 'maybe', '2020-11-03 21:16:39', '2025-12-17 19:47:53', 'v4DOV8qA', '3272055'), + (37812, 437, 451, 'maybe', '2020-11-02 22:26:22', '2025-12-17 19:47:53', 'v4DOV8qA', '3272186'), + (37813, 437, 452, 'attending', '2020-11-07 19:50:22', '2025-12-17 19:47:54', 'v4DOV8qA', '3272981'), + (37814, 437, 456, 'attending', '2020-11-15 22:40:01', '2025-12-17 19:47:54', 'v4DOV8qA', '3276428'), + (37815, 437, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'v4DOV8qA', '3281467'), + (37816, 437, 460, 'not_attending', '2020-11-19 23:35:13', '2025-12-17 19:47:54', 'v4DOV8qA', '3281468'), + (37817, 437, 461, 'maybe', '2020-11-08 06:14:09', '2025-12-17 19:47:53', 'v4DOV8qA', '3281469'), + (37818, 437, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'v4DOV8qA', '3281470'), + (37819, 437, 464, 'not_attending', '2020-11-21 01:45:25', '2025-12-17 19:47:54', 'v4DOV8qA', '3281554'), + (37820, 437, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'v4DOV8qA', '3281829'), + (37821, 437, 468, 'attending', '2020-11-17 19:27:32', '2025-12-17 19:47:54', 'v4DOV8qA', '3285413'), + (37822, 437, 469, 'attending', '2020-11-22 04:54:31', '2025-12-17 19:47:54', 'v4DOV8qA', '3285414'), + (37823, 437, 472, 'attending', '2020-11-12 23:06:14', '2025-12-17 19:47:54', 'v4DOV8qA', '3286541'), + (37824, 437, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'v4DOV8qA', '3297764'), + (37825, 437, 484, 'attending', '2020-11-21 00:59:53', '2025-12-17 19:47:54', 'v4DOV8qA', '3297792'), + (37826, 437, 490, 'maybe', '2020-11-28 00:01:14', '2025-12-17 19:47:54', 'v4DOV8qA', '3313532'), + (37827, 437, 491, 'not_attending', '2020-12-09 21:12:09', '2025-12-17 19:47:55', 'v4DOV8qA', '3313533'), + (37828, 437, 492, 'maybe', '2020-12-04 00:59:52', '2025-12-17 19:47:54', 'v4DOV8qA', '3313731'), + (37829, 437, 493, 'maybe', '2020-11-29 05:28:02', '2025-12-17 19:47:54', 'v4DOV8qA', '3313856'), + (37830, 437, 496, 'maybe', '2020-12-09 21:12:15', '2025-12-17 19:47:54', 'v4DOV8qA', '3314269'), + (37831, 437, 497, 'maybe', '2020-12-14 01:38:54', '2025-12-17 19:47:55', 'v4DOV8qA', '3314270'), + (37832, 437, 499, 'maybe', '2020-11-30 05:50:12', '2025-12-17 19:47:55', 'v4DOV8qA', '3314909'), + (37833, 437, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'v4DOV8qA', '3314964'), + (37834, 437, 501, 'maybe', '2020-12-02 04:17:37', '2025-12-17 19:47:54', 'v4DOV8qA', '3317834'), + (37835, 437, 502, 'maybe', '2020-12-08 06:33:27', '2025-12-17 19:47:55', 'v4DOV8qA', '3323365'), + (37836, 437, 513, 'maybe', '2020-12-17 05:20:27', '2025-12-17 19:47:55', 'v4DOV8qA', '3329383'), + (37837, 437, 517, 'maybe', '2021-01-07 04:19:07', '2025-12-17 19:47:48', 'v4DOV8qA', '3337137'), + (37838, 437, 518, 'maybe', '2021-01-06 06:18:31', '2025-12-17 19:47:48', 'v4DOV8qA', '3337138'), + (37839, 437, 525, 'maybe', '2020-12-22 06:11:17', '2025-12-17 19:47:48', 'v4DOV8qA', '3350467'), + (37840, 437, 526, 'not_attending', '2020-12-27 23:27:51', '2025-12-17 19:47:48', 'v4DOV8qA', '3351539'), + (37841, 437, 532, 'not_attending', '2021-01-08 03:26:55', '2025-12-17 19:47:48', 'v4DOV8qA', '3381412'), + (37842, 437, 536, 'attending', '2021-01-06 02:22:03', '2025-12-17 19:47:48', 'v4DOV8qA', '3386848'), + (37843, 437, 539, 'maybe', '2021-01-08 03:26:41', '2025-12-17 19:47:48', 'v4DOV8qA', '3389158'), + (37844, 437, 540, 'maybe', '2021-01-07 01:27:04', '2025-12-17 19:47:48', 'v4DOV8qA', '3389527'), + (37845, 437, 542, 'maybe', '2021-01-11 03:26:13', '2025-12-17 19:47:48', 'v4DOV8qA', '3395013'), + (37846, 437, 543, 'maybe', '2021-01-12 01:33:50', '2025-12-17 19:47:48', 'v4DOV8qA', '3396499'), + (37847, 437, 544, 'maybe', '2021-01-11 02:19:53', '2025-12-17 19:47:48', 'v4DOV8qA', '3396500'), + (37848, 437, 548, 'attending', '2021-01-13 05:48:24', '2025-12-17 19:47:48', 'v4DOV8qA', '3403650'), + (37849, 437, 549, 'maybe', '2021-01-16 04:16:43', '2025-12-17 19:47:48', 'v4DOV8qA', '3406988'), + (37850, 437, 555, 'attending', '2021-01-18 03:29:50', '2025-12-17 19:47:49', 'v4DOV8qA', '3416576'), + (37851, 437, 556, 'maybe', '2021-01-19 04:55:39', '2025-12-17 19:47:49', 'v4DOV8qA', '3417170'), + (37852, 437, 557, 'attending', '2021-01-20 02:12:28', '2025-12-17 19:47:49', 'v4DOV8qA', '3418748'), + (37853, 437, 558, 'maybe', '2021-01-19 04:55:27', '2025-12-17 19:47:49', 'v4DOV8qA', '3418925'), + (37854, 437, 560, 'attending', '2021-01-20 02:11:37', '2025-12-17 19:47:49', 'v4DOV8qA', '3421715'), + (37855, 437, 563, 'maybe', '2021-01-25 18:49:11', '2025-12-17 19:47:49', 'v4DOV8qA', '3425913'), + (37856, 437, 567, 'attending', '2021-01-24 03:59:22', '2025-12-17 19:47:50', 'v4DOV8qA', '3428895'), + (37857, 437, 568, 'attending', '2021-01-25 18:50:34', '2025-12-17 19:47:50', 'v4DOV8qA', '3430267'), + (37858, 437, 569, 'maybe', '2021-01-25 18:47:27', '2025-12-17 19:47:49', 'v4DOV8qA', '3432673'), + (37859, 437, 570, 'maybe', '2021-01-29 23:03:35', '2025-12-17 19:47:50', 'v4DOV8qA', '3435538'), + (37860, 437, 571, 'attending', '2021-02-12 02:39:42', '2025-12-17 19:47:50', 'v4DOV8qA', '3435539'), + (37861, 437, 576, 'maybe', '2021-01-29 23:03:15', '2025-12-17 19:47:50', 'v4DOV8qA', '3438748'), + (37862, 437, 578, 'maybe', '2021-01-29 23:03:27', '2025-12-17 19:47:50', 'v4DOV8qA', '3440043'), + (37863, 437, 579, 'maybe', '2021-01-29 01:28:37', '2025-12-17 19:47:50', 'v4DOV8qA', '3440978'), + (37864, 437, 580, 'not_attending', '2021-01-31 05:29:35', '2025-12-17 19:47:50', 'v4DOV8qA', '3444240'), + (37865, 437, 582, 'maybe', '2021-01-30 18:47:17', '2025-12-17 19:47:50', 'v4DOV8qA', '3445769'), + (37866, 437, 583, 'maybe', '2021-02-05 22:34:16', '2025-12-17 19:47:50', 'v4DOV8qA', '3449144'), + (37867, 437, 585, 'maybe', '2021-02-01 01:15:22', '2025-12-17 19:47:50', 'v4DOV8qA', '3449468'), + (37868, 437, 591, 'maybe', '2021-02-05 06:55:01', '2025-12-17 19:47:50', 'v4DOV8qA', '3465880'), + (37869, 437, 594, 'maybe', '2021-03-01 03:52:11', '2025-12-17 19:47:51', 'v4DOV8qA', '3467759'), + (37870, 437, 598, 'maybe', '2021-02-07 18:08:25', '2025-12-17 19:47:50', 'v4DOV8qA', '3468003'), + (37871, 437, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'v4DOV8qA', '3468125'), + (37872, 437, 602, 'attending', '2021-02-07 07:06:34', '2025-12-17 19:47:50', 'v4DOV8qA', '3470303'), + (37873, 437, 603, 'attending', '2021-02-19 04:10:47', '2025-12-17 19:47:50', 'v4DOV8qA', '3470304'), + (37874, 437, 604, 'attending', '2021-02-23 21:19:35', '2025-12-17 19:47:50', 'v4DOV8qA', '3470305'), + (37875, 437, 605, 'attending', '2021-02-07 22:45:34', '2025-12-17 19:47:50', 'v4DOV8qA', '3470991'), + (37876, 437, 607, 'maybe', '2021-02-14 05:59:10', '2025-12-17 19:47:50', 'v4DOV8qA', '3471882'), + (37877, 437, 612, 'maybe', '2021-02-14 17:56:14', '2025-12-17 19:47:50', 'v4DOV8qA', '3490040'), + (37878, 437, 613, 'attending', '2021-02-17 06:03:31', '2025-12-17 19:47:50', 'v4DOV8qA', '3490041'), + (37879, 437, 614, 'maybe', '2021-02-28 18:11:13', '2025-12-17 19:47:51', 'v4DOV8qA', '3490042'), + (37880, 437, 621, 'attending', '2021-03-01 00:02:32', '2025-12-17 19:47:51', 'v4DOV8qA', '3517815'), + (37881, 437, 622, 'attending', '2021-03-01 00:04:32', '2025-12-17 19:47:51', 'v4DOV8qA', '3517816'), + (37882, 437, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'v4DOV8qA', '3523941'), + (37883, 437, 631, 'maybe', '2021-03-02 05:10:03', '2025-12-17 19:47:51', 'v4DOV8qA', '3533850'), + (37884, 437, 632, 'maybe', '2021-03-02 05:11:04', '2025-12-17 19:47:51', 'v4DOV8qA', '3533853'), + (37885, 437, 637, 'maybe', '2021-03-02 05:10:48', '2025-12-17 19:47:51', 'v4DOV8qA', '3536411'), + (37886, 437, 638, 'maybe', '2021-03-02 01:30:58', '2025-12-17 19:47:44', 'v4DOV8qA', '3536632'), + (37887, 437, 639, 'maybe', '2021-03-02 01:30:28', '2025-12-17 19:47:51', 'v4DOV8qA', '3536656'), + (37888, 437, 641, 'attending', '2021-04-03 04:37:29', '2025-12-17 19:47:44', 'v4DOV8qA', '3539916'), + (37889, 437, 642, 'attending', '2021-03-31 03:36:02', '2025-12-17 19:47:44', 'v4DOV8qA', '3539917'), + (37890, 437, 643, 'attending', '2021-04-15 05:35:29', '2025-12-17 19:47:45', 'v4DOV8qA', '3539918'), + (37891, 437, 644, 'attending', '2021-04-18 15:49:10', '2025-12-17 19:47:45', 'v4DOV8qA', '3539919'), + (37892, 437, 645, 'maybe', '2021-05-06 02:42:46', '2025-12-17 19:47:46', 'v4DOV8qA', '3539920'), + (37893, 437, 646, 'attending', '2021-05-12 03:46:50', '2025-12-17 19:47:46', 'v4DOV8qA', '3539921'), + (37894, 437, 647, 'not_attending', '2021-05-07 05:45:58', '2025-12-17 19:47:46', 'v4DOV8qA', '3539922'), + (37895, 437, 648, 'maybe', '2021-05-07 05:46:22', '2025-12-17 19:47:47', 'v4DOV8qA', '3539923'), + (37896, 437, 649, 'attending', '2021-03-09 06:43:43', '2025-12-17 19:47:51', 'v4DOV8qA', '3539927'), + (37897, 437, 650, 'maybe', '2021-03-03 17:39:29', '2025-12-17 19:47:44', 'v4DOV8qA', '3539928'), + (37898, 437, 652, 'maybe', '2021-03-07 05:54:14', '2025-12-17 19:47:51', 'v4DOV8qA', '3544466'), + (37899, 437, 679, 'attending', '2021-03-09 07:38:05', '2025-12-17 19:47:44', 'v4DOV8qA', '3547168'), + (37900, 437, 680, 'attending', '2021-03-07 05:08:06', '2025-12-17 19:47:51', 'v4DOV8qA', '3547700'), + (37901, 437, 684, 'maybe', '2021-03-10 00:53:09', '2025-12-17 19:47:51', 'v4DOV8qA', '3549257'), + (37902, 437, 687, 'maybe', '2021-03-11 15:57:55', '2025-12-17 19:47:51', 'v4DOV8qA', '3553405'), + (37903, 437, 696, 'maybe', '2021-03-17 01:31:22', '2025-12-17 19:47:51', 'v4DOV8qA', '3567536'), + (37904, 437, 697, 'maybe', '2021-03-18 05:19:36', '2025-12-17 19:47:44', 'v4DOV8qA', '3567537'), + (37905, 437, 701, 'maybe', '2021-03-18 04:32:20', '2025-12-17 19:47:51', 'v4DOV8qA', '3577180'), + (37906, 437, 705, 'maybe', '2021-03-27 07:01:36', '2025-12-17 19:47:44', 'v4DOV8qA', '3581895'), + (37907, 437, 706, 'maybe', '2021-03-19 18:37:24', '2025-12-17 19:47:45', 'v4DOV8qA', '3582734'), + (37908, 437, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'v4DOV8qA', '3583262'), + (37909, 437, 711, 'attending', '2021-03-22 16:21:29', '2025-12-17 19:47:44', 'v4DOV8qA', '3588075'), + (37910, 437, 712, 'maybe', '2021-03-27 07:02:11', '2025-12-17 19:47:44', 'v4DOV8qA', '3604056'), + (37911, 437, 715, 'maybe', '2021-03-31 18:56:06', '2025-12-17 19:47:44', 'v4DOV8qA', '3604146'), + (37912, 437, 717, 'not_attending', '2021-03-27 07:01:09', '2025-12-17 19:47:44', 'v4DOV8qA', '3619523'), + (37913, 437, 719, 'maybe', '2021-04-06 03:04:06', '2025-12-17 19:47:44', 'v4DOV8qA', '3635405'), + (37914, 437, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'v4DOV8qA', '3661369'), + (37915, 437, 731, 'maybe', '2021-04-05 04:25:00', '2025-12-17 19:47:44', 'v4DOV8qA', '3674262'), + (37916, 437, 734, 'attending', '2021-04-06 02:46:34', '2025-12-17 19:47:44', 'v4DOV8qA', '3676806'), + (37917, 437, 735, 'maybe', '2021-04-15 05:40:04', '2025-12-17 19:47:46', 'v4DOV8qA', '3677402'), + (37918, 437, 736, 'maybe', '2021-04-06 03:04:13', '2025-12-17 19:47:44', 'v4DOV8qA', '3677701'), + (37919, 437, 737, 'not_attending', '2021-04-06 04:01:47', '2025-12-17 19:47:44', 'v4DOV8qA', '3679349'), + (37920, 437, 747, 'maybe', '2021-04-07 00:28:45', '2025-12-17 19:47:45', 'v4DOV8qA', '3684754'), + (37921, 437, 751, 'maybe', '2021-04-15 05:38:40', '2025-12-17 19:47:45', 'v4DOV8qA', '3691364'), + (37922, 437, 752, 'maybe', '2021-04-15 05:37:35', '2025-12-17 19:47:44', 'v4DOV8qA', '3699422'), + (37923, 437, 758, 'maybe', '2021-04-17 17:40:05', '2025-12-17 19:47:45', 'v4DOV8qA', '3713700'), + (37924, 437, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'v4DOV8qA', '3730212'), + (37925, 437, 777, 'attending', '2021-04-27 03:05:09', '2025-12-17 19:47:46', 'v4DOV8qA', '3746248'), + (37926, 437, 783, 'attending', '2021-05-01 04:24:04', '2025-12-17 19:47:46', 'v4DOV8qA', '3767471'), + (37927, 437, 786, 'maybe', '2021-05-04 21:26:12', '2025-12-17 19:47:46', 'v4DOV8qA', '3780093'), + (37928, 437, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'v4DOV8qA', '3793156'), + (37929, 437, 800, 'maybe', '2021-05-11 02:56:33', '2025-12-17 19:47:46', 'v4DOV8qA', '3800908'), + (37930, 437, 808, 'maybe', '2021-05-13 13:12:52', '2025-12-17 19:47:46', 'v4DOV8qA', '3807358'), + (37931, 437, 816, 'maybe', '2021-05-20 12:54:06', '2025-12-17 19:47:46', 'v4DOV8qA', '3826524'), + (37932, 437, 821, 'maybe', '2021-05-30 06:00:23', '2025-12-17 19:47:47', 'v4DOV8qA', '3963965'), + (37933, 437, 822, 'maybe', '2021-06-03 01:50:41', '2025-12-17 19:47:47', 'v4DOV8qA', '3969986'), + (37934, 437, 823, 'attending', '2021-05-30 06:02:09', '2025-12-17 19:47:48', 'v4DOV8qA', '3974109'), + (37935, 437, 825, 'maybe', '2021-06-07 05:02:17', '2025-12-17 19:47:47', 'v4DOV8qA', '3975283'), + (37936, 437, 826, 'maybe', '2021-06-07 16:54:14', '2025-12-17 19:47:48', 'v4DOV8qA', '3975310'), + (37937, 437, 827, 'maybe', '2021-05-30 17:19:26', '2025-12-17 19:47:47', 'v4DOV8qA', '3975311'), + (37938, 437, 828, 'not_attending', '2021-06-12 14:37:59', '2025-12-17 19:47:47', 'v4DOV8qA', '3975312'), + (37939, 437, 833, 'not_attending', '2021-06-07 04:59:49', '2025-12-17 19:47:47', 'v4DOV8qA', '3990438'), + (37940, 437, 838, 'maybe', '2021-06-07 05:01:53', '2025-12-17 19:47:47', 'v4DOV8qA', '3994992'), + (37941, 437, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4DOV8qA', '4014338'), + (37942, 437, 867, 'maybe', '2021-06-22 06:15:29', '2025-12-17 19:47:38', 'v4DOV8qA', '4021848'), + (37943, 437, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4DOV8qA', '4136744'), + (37944, 437, 870, 'maybe', '2021-06-30 04:42:11', '2025-12-17 19:47:39', 'v4DOV8qA', '4136937'), + (37945, 437, 871, 'not_attending', '2021-07-07 03:39:58', '2025-12-17 19:47:39', 'v4DOV8qA', '4136938'), + (37946, 437, 872, 'not_attending', '2021-07-20 02:29:53', '2025-12-17 19:47:40', 'v4DOV8qA', '4136947'), + (37947, 437, 884, 'maybe', '2021-08-11 05:34:31', '2025-12-17 19:47:42', 'v4DOV8qA', '4210314'), + (37948, 437, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4DOV8qA', '4225444'), + (37949, 437, 897, 'not_attending', '2021-06-28 00:38:49', '2025-12-17 19:47:38', 'v4DOV8qA', '4232132'), + (37950, 437, 899, 'not_attending', '2021-07-03 22:40:34', '2025-12-17 19:47:39', 'v4DOV8qA', '4239259'), + (37951, 437, 900, 'maybe', '2021-07-19 02:17:11', '2025-12-17 19:47:40', 'v4DOV8qA', '4240316'), + (37952, 437, 901, 'not_attending', '2021-07-31 16:26:03', '2025-12-17 19:47:40', 'v4DOV8qA', '4240317'), + (37953, 437, 902, 'maybe', '2021-08-04 05:11:38', '2025-12-17 19:47:41', 'v4DOV8qA', '4240318'), + (37954, 437, 903, 'maybe', '2021-08-11 05:26:34', '2025-12-17 19:47:42', 'v4DOV8qA', '4240320'), + (37955, 437, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4DOV8qA', '4250163'), + (37956, 437, 906, 'maybe', '2021-07-05 05:47:45', '2025-12-17 19:47:39', 'v4DOV8qA', '4253431'), + (37957, 437, 919, 'not_attending', '2021-07-17 04:16:34', '2025-12-17 19:47:39', 'v4DOV8qA', '4275957'), + (37958, 437, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'v4DOV8qA', '4277819'), + (37959, 437, 933, 'not_attending', '2021-07-25 03:13:45', '2025-12-17 19:47:40', 'v4DOV8qA', '4301723'), + (37960, 437, 934, 'not_attending', '2021-08-04 05:11:26', '2025-12-17 19:47:41', 'v4DOV8qA', '4302093'), + (37961, 437, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'v4DOV8qA', '4304151'), + (37962, 437, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'v4DOV8qA', '4356801'), + (37963, 437, 973, 'attending', '2021-08-16 06:53:27', '2025-12-17 19:47:42', 'v4DOV8qA', '4366186'), + (37964, 437, 974, 'maybe', '2021-08-18 00:31:16', '2025-12-17 19:47:42', 'v4DOV8qA', '4366187'), + (37965, 437, 990, 'maybe', '2021-08-30 03:25:28', '2025-12-17 19:47:43', 'v4DOV8qA', '4420735'), + (37966, 437, 991, 'not_attending', '2021-09-07 17:07:30', '2025-12-17 19:47:43', 'v4DOV8qA', '4420738'), + (37967, 437, 992, 'maybe', '2021-09-13 06:11:59', '2025-12-17 19:47:34', 'v4DOV8qA', '4420739'), + (37968, 437, 993, 'maybe', '2021-09-20 15:17:00', '2025-12-17 19:47:34', 'v4DOV8qA', '4420741'), + (37969, 437, 995, 'not_attending', '2021-10-04 13:58:00', '2025-12-17 19:47:34', 'v4DOV8qA', '4420744'), + (37970, 437, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'v4DOV8qA', '4420747'), + (37971, 437, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'v4DOV8qA', '4420748'), + (37972, 437, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'v4DOV8qA', '4420749'), + (37973, 437, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'v4DOV8qA', '4461883'), + (37974, 437, 1064, 'not_attending', '2021-09-20 15:16:36', '2025-12-17 19:47:34', 'v4DOV8qA', '4499526'), + (37975, 437, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'v4DOV8qA', '4508342'), + (37976, 437, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'v4DOV8qA', '4568602'), + (37977, 437, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'v4DOV8qA', '4572153'), + (37978, 437, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'v4DOV8qA', '4585962'), + (37979, 437, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'v4DOV8qA', '4596356'), + (37980, 437, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'v4DOV8qA', '4598860'), + (37981, 437, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'v4DOV8qA', '4598861'), + (37982, 437, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'v4DOV8qA', '4602797'), + (37983, 437, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'v4DOV8qA', '4637896'), + (37984, 437, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'v4DOV8qA', '4642994'), + (37985, 437, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'v4DOV8qA', '4642995'), + (37986, 437, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'v4DOV8qA', '4642996'), + (37987, 437, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'v4DOV8qA', '4642997'), + (37988, 437, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'v4DOV8qA', '4645687'), + (37989, 437, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'v4DOV8qA', '4645698'), + (37990, 437, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'v4DOV8qA', '4645704'), + (37991, 437, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'v4DOV8qA', '4645705'), + (37992, 437, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'v4DOV8qA', '4668385'), + (37993, 437, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'v4DOV8qA', '4694407'), + (37994, 437, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'v4DOV8qA', '4736497'), + (37995, 437, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'v4DOV8qA', '4736499'), + (37996, 437, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'v4DOV8qA', '4736500'), + (37997, 437, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'v4DOV8qA', '4736503'), + (37998, 437, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'v4DOV8qA', '4736504'), + (37999, 437, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'v4DOV8qA', '4746789'), + (38000, 437, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'v4DOV8qA', '4753929'), + (38001, 437, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4DOV8qA', '5038850'), + (38002, 437, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4DOV8qA', '5045826'), + (38003, 437, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4DOV8qA', '5132533'), + (38004, 437, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'v4DOV8qA', '5186582'), + (38005, 437, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'v4DOV8qA', '5186583'), + (38006, 437, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'v4DOV8qA', '5186585'), + (38007, 437, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4DOV8qA', '5190437'), + (38008, 437, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4DOV8qA', '5215989'), + (38009, 437, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DOV8qA', '6045684'), + (38010, 438, 395, 'attending', '2021-06-09 12:36:36', '2025-12-17 19:47:47', 'LmpJ3j94', '3236450'), + (38011, 438, 823, 'attending', '2021-06-14 15:28:18', '2025-12-17 19:47:48', 'LmpJ3j94', '3974109'), + (38012, 438, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpJ3j94', '3975312'), + (38013, 438, 844, 'attending', '2021-06-10 18:43:58', '2025-12-17 19:47:38', 'LmpJ3j94', '4014338'), + (38014, 438, 846, 'not_attending', '2021-07-07 20:49:09', '2025-12-17 19:47:39', 'LmpJ3j94', '4015718'), + (38015, 438, 867, 'attending', '2021-06-15 11:47:33', '2025-12-17 19:47:38', 'LmpJ3j94', '4021848'), + (38016, 438, 869, 'attending', '2021-06-24 03:49:06', '2025-12-17 19:47:38', 'LmpJ3j94', '4136744'), + (38017, 438, 870, 'attending', '2021-06-27 08:18:11', '2025-12-17 19:47:38', 'LmpJ3j94', '4136937'), + (38018, 438, 871, 'maybe', '2021-07-10 20:49:10', '2025-12-17 19:47:39', 'LmpJ3j94', '4136938'), + (38019, 438, 872, 'not_attending', '2021-07-21 21:27:56', '2025-12-17 19:47:40', 'LmpJ3j94', '4136947'), + (38020, 438, 873, 'attending', '2021-06-19 14:11:40', '2025-12-17 19:47:48', 'LmpJ3j94', '4138297'), + (38021, 438, 876, 'attending', '2021-06-15 11:47:10', '2025-12-17 19:47:38', 'LmpJ3j94', '4139926'), + (38022, 438, 880, 'attending', '2021-06-19 21:44:54', '2025-12-17 19:47:48', 'LmpJ3j94', '4205383'), + (38023, 438, 884, 'attending', '2021-07-17 14:03:47', '2025-12-17 19:47:42', 'LmpJ3j94', '4210314'), + (38024, 438, 887, 'maybe', '2021-07-13 17:58:24', '2025-12-17 19:47:39', 'LmpJ3j94', '4225444'), + (38025, 438, 899, 'maybe', '2021-07-03 18:13:35', '2025-12-17 19:47:39', 'LmpJ3j94', '4239259'), + (38026, 438, 900, 'attending', '2021-07-17 14:12:10', '2025-12-17 19:47:40', 'LmpJ3j94', '4240316'), + (38027, 438, 901, 'attending', '2021-07-17 14:12:30', '2025-12-17 19:47:40', 'LmpJ3j94', '4240317'), + (38028, 438, 902, 'maybe', '2021-08-07 15:39:05', '2025-12-17 19:47:41', 'LmpJ3j94', '4240318'), + (38029, 438, 903, 'attending', '2021-08-04 22:34:37', '2025-12-17 19:47:42', 'LmpJ3j94', '4240320'), + (38030, 438, 905, 'not_attending', '2021-07-07 22:06:36', '2025-12-17 19:47:39', 'LmpJ3j94', '4250163'), + (38031, 438, 911, 'attending', '2021-07-13 17:51:03', '2025-12-17 19:47:39', 'LmpJ3j94', '4264465'), + (38032, 438, 916, 'maybe', '2021-07-17 14:11:55', '2025-12-17 19:47:40', 'LmpJ3j94', '4273772'), + (38033, 438, 917, 'attending', '2021-07-12 00:49:18', '2025-12-17 19:47:39', 'LmpJ3j94', '4274481'), + (38034, 438, 919, 'maybe', '2021-07-17 14:07:17', '2025-12-17 19:47:39', 'LmpJ3j94', '4275957'), + (38035, 438, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpJ3j94', '4277819'), + (38036, 438, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpJ3j94', '4301723'), + (38037, 438, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'LmpJ3j94', '4302093'), + (38038, 438, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpJ3j94', '4304151'), + (38039, 438, 946, 'maybe', '2021-08-02 07:02:51', '2025-12-17 19:47:40', 'LmpJ3j94', '4314835'), + (38040, 438, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'LmpJ3j94', '4345519'), + (38041, 438, 971, 'not_attending', '2021-09-08 20:44:00', '2025-12-17 19:47:43', 'LmpJ3j94', '4356801'), + (38042, 438, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpJ3j94', '4358025'), + (38043, 438, 973, 'not_attending', '2021-08-21 21:22:03', '2025-12-17 19:47:42', 'LmpJ3j94', '4366186'), + (38044, 438, 974, 'attending', '2021-08-21 21:21:58', '2025-12-17 19:47:42', 'LmpJ3j94', '4366187'), + (38045, 438, 988, 'not_attending', '2021-08-27 20:59:30', '2025-12-17 19:47:42', 'LmpJ3j94', '4402823'), + (38046, 438, 989, 'attending', '2021-08-29 21:50:49', '2025-12-17 19:47:43', 'LmpJ3j94', '4414282'), + (38047, 438, 990, 'not_attending', '2021-09-04 16:09:39', '2025-12-17 19:47:43', 'LmpJ3j94', '4420735'), + (38048, 438, 991, 'attending', '2021-08-28 22:45:16', '2025-12-17 19:47:43', 'LmpJ3j94', '4420738'), + (38049, 438, 992, 'attending', '2021-08-28 22:45:01', '2025-12-17 19:47:33', 'LmpJ3j94', '4420739'), + (38050, 438, 993, 'not_attending', '2021-09-16 00:25:54', '2025-12-17 19:47:34', 'LmpJ3j94', '4420741'), + (38051, 438, 994, 'attending', '2021-09-29 19:27:00', '2025-12-17 19:47:34', 'LmpJ3j94', '4420742'), + (38052, 438, 995, 'attending', '2021-08-28 22:45:11', '2025-12-17 19:47:34', 'LmpJ3j94', '4420744'), + (38053, 438, 996, 'maybe', '2021-10-10 03:19:10', '2025-12-17 19:47:35', 'LmpJ3j94', '4420747'), + (38054, 438, 997, 'maybe', '2021-10-23 16:05:37', '2025-12-17 19:47:35', 'LmpJ3j94', '4420748'), + (38055, 438, 998, 'attending', '2021-10-30 21:55:49', '2025-12-17 19:47:36', 'LmpJ3j94', '4420749'), + (38056, 438, 1010, 'attending', '2021-10-31 01:50:48', '2025-12-17 19:47:36', 'LmpJ3j94', '4438812'), + (38057, 438, 1019, 'attending', '2021-09-06 15:51:23', '2025-12-17 19:47:43', 'LmpJ3j94', '4450515'), + (38058, 438, 1020, 'attending', '2021-09-06 15:51:13', '2025-12-17 19:47:43', 'LmpJ3j94', '4451787'), + (38059, 438, 1021, 'attending', '2021-09-06 15:52:06', '2025-12-17 19:47:34', 'LmpJ3j94', '4451803'), + (38060, 438, 1023, 'maybe', '2021-09-10 01:51:02', '2025-12-17 19:47:43', 'LmpJ3j94', '4461883'), + (38061, 438, 1031, 'not_attending', '2021-09-22 22:41:51', '2025-12-17 19:47:34', 'LmpJ3j94', '4473789'), + (38062, 438, 1033, 'attending', '2021-09-18 21:52:24', '2025-12-17 19:47:43', 'LmpJ3j94', '4486006'), + (38063, 438, 1036, 'not_attending', '2021-09-21 20:39:58', '2025-12-17 19:47:34', 'LmpJ3j94', '4493166'), + (38064, 438, 1037, 'maybe', '2021-09-23 21:09:28', '2025-12-17 19:47:34', 'LmpJ3j94', '4493233'), + (38065, 438, 1038, 'not_attending', '2021-09-22 20:13:06', '2025-12-17 19:47:34', 'LmpJ3j94', '4496603'), + (38066, 438, 1040, 'maybe', '2021-12-10 01:43:55', '2025-12-17 19:47:38', 'LmpJ3j94', '4496605'), + (38067, 438, 1042, 'not_attending', '2021-11-27 23:01:59', '2025-12-17 19:47:37', 'LmpJ3j94', '4496607'), + (38068, 438, 1043, 'maybe', '2021-10-23 16:05:39', '2025-12-17 19:47:35', 'LmpJ3j94', '4496608'), + (38069, 438, 1047, 'attending', '2021-10-09 16:44:58', '2025-12-17 19:47:34', 'LmpJ3j94', '4496612'), + (38070, 438, 1058, 'not_attending', '2022-02-26 23:00:46', '2025-12-17 19:47:33', 'LmpJ3j94', '4496625'), + (38071, 438, 1062, 'not_attending', '2022-03-05 23:01:23', '2025-12-17 19:47:33', 'LmpJ3j94', '4496629'), + (38072, 438, 1065, 'not_attending', '2021-09-21 20:52:44', '2025-12-17 19:47:34', 'LmpJ3j94', '4505800'), + (38073, 438, 1067, 'not_attending', '2021-09-23 03:35:53', '2025-12-17 19:47:34', 'LmpJ3j94', '4508342'), + (38074, 438, 1068, 'maybe', '2021-09-30 22:09:53', '2025-12-17 19:47:34', 'LmpJ3j94', '4511471'), + (38075, 438, 1070, 'maybe', '2021-09-30 18:07:21', '2025-12-17 19:47:34', 'LmpJ3j94', '4512562'), + (38076, 438, 1082, 'maybe', '2021-10-13 23:29:40', '2025-12-17 19:47:35', 'LmpJ3j94', '4566762'), + (38077, 438, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpJ3j94', '4568602'), + (38078, 438, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'LmpJ3j94', '4572153'), + (38079, 438, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'LmpJ3j94', '4585962'), + (38080, 438, 1094, 'maybe', '2021-10-31 22:45:23', '2025-12-17 19:47:36', 'LmpJ3j94', '4587337'), + (38081, 438, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'LmpJ3j94', '4596356'), + (38082, 438, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpJ3j94', '4598860'), + (38083, 438, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpJ3j94', '4598861'), + (38084, 438, 1099, 'attending', '2021-10-31 01:49:49', '2025-12-17 19:47:36', 'LmpJ3j94', '4602797'), + (38085, 438, 1114, 'not_attending', '2021-11-13 23:26:37', '2025-12-17 19:47:36', 'LmpJ3j94', '4637896'), + (38086, 438, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpJ3j94', '4642994'), + (38087, 438, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'LmpJ3j94', '4642995'), + (38088, 438, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpJ3j94', '4642996'), + (38089, 438, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpJ3j94', '4642997'), + (38090, 438, 1126, 'maybe', '2021-12-10 01:43:43', '2025-12-17 19:47:38', 'LmpJ3j94', '4645687'), + (38091, 438, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpJ3j94', '4645698'), + (38092, 438, 1128, 'not_attending', '2021-11-20 21:40:06', '2025-12-17 19:47:37', 'LmpJ3j94', '4645704'), + (38093, 438, 1129, 'not_attending', '2021-11-27 23:01:43', '2025-12-17 19:47:37', 'LmpJ3j94', '4645705'), + (38094, 438, 1130, 'not_attending', '2021-12-05 00:40:54', '2025-12-17 19:47:37', 'LmpJ3j94', '4658824'), + (38095, 438, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpJ3j94', '4668385'), + (38096, 438, 1146, 'maybe', '2021-12-10 01:43:25', '2025-12-17 19:47:38', 'LmpJ3j94', '4692841'), + (38097, 438, 1147, 'attending', '2021-12-10 01:44:20', '2025-12-17 19:47:38', 'LmpJ3j94', '4692842'), + (38098, 438, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpJ3j94', '4694407'), + (38099, 438, 1174, 'not_attending', '2022-01-15 23:01:18', '2025-12-17 19:47:31', 'LmpJ3j94', '4736496'), + (38100, 438, 1175, 'not_attending', '2022-01-23 00:31:05', '2025-12-17 19:47:32', 'LmpJ3j94', '4736497'), + (38101, 438, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'LmpJ3j94', '4736499'), + (38102, 438, 1178, 'maybe', '2022-01-29 17:05:37', '2025-12-17 19:47:32', 'LmpJ3j94', '4736500'), + (38103, 438, 1180, 'not_attending', '2022-02-26 23:00:42', '2025-12-17 19:47:33', 'LmpJ3j94', '4736502'), + (38104, 438, 1181, 'not_attending', '2022-03-05 23:01:27', '2025-12-17 19:47:33', 'LmpJ3j94', '4736503'), + (38105, 438, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'LmpJ3j94', '4736504'), + (38106, 438, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'LmpJ3j94', '4746789'), + (38107, 438, 1188, 'maybe', '2022-01-18 00:45:48', '2025-12-17 19:47:32', 'LmpJ3j94', '4753929'), + (38108, 438, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'LmpJ3j94', '5038850'), + (38109, 438, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'LmpJ3j94', '5045826'), + (38110, 438, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'LmpJ3j94', '5132533'), + (38111, 438, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'LmpJ3j94', '5186582'), + (38112, 438, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'LmpJ3j94', '5186583'), + (38113, 438, 1274, 'not_attending', '2022-04-02 22:30:21', '2025-12-17 19:47:26', 'LmpJ3j94', '5186585'), + (38114, 438, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'LmpJ3j94', '5190437'), + (38115, 438, 1284, 'not_attending', '2022-04-13 19:48:54', '2025-12-17 19:47:27', 'LmpJ3j94', '5195095'), + (38116, 438, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'LmpJ3j94', '5215989'), + (38117, 438, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'LmpJ3j94', '5223686'), + (38118, 438, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'LmpJ3j94', '5227432'), + (38119, 438, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'LmpJ3j94', '5231461'), + (38120, 438, 1315, 'maybe', '2022-04-22 18:10:45', '2025-12-17 19:47:27', 'LmpJ3j94', '5237522'), + (38121, 438, 1319, 'maybe', '2022-04-13 19:48:33', '2025-12-17 19:47:27', 'LmpJ3j94', '5238353'), + (38122, 438, 1330, 'maybe', '2022-04-18 23:47:35', '2025-12-17 19:47:27', 'LmpJ3j94', '5242155'), + (38123, 438, 1331, 'maybe', '2022-04-21 20:01:31', '2025-12-17 19:47:27', 'LmpJ3j94', '5242156'), + (38124, 438, 1344, 'maybe', '2022-04-30 21:26:59', '2025-12-17 19:47:28', 'LmpJ3j94', '5247465'), + (38125, 438, 1345, 'maybe', '2022-04-21 16:48:26', '2025-12-17 19:47:27', 'LmpJ3j94', '5247466'), + (38126, 438, 1346, 'maybe', '2022-04-20 15:22:00', '2025-12-17 19:47:27', 'LmpJ3j94', '5247467'), + (38127, 438, 1362, 'maybe', '2022-04-30 21:27:02', '2025-12-17 19:47:28', 'LmpJ3j94', '5260800'), + (38128, 438, 1374, 'not_attending', '2022-05-07 22:09:27', '2025-12-17 19:47:28', 'LmpJ3j94', '5269930'), + (38129, 438, 1378, 'not_attending', '2022-05-14 21:00:46', '2025-12-17 19:47:29', 'LmpJ3j94', '5271448'), + (38130, 438, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'LmpJ3j94', '5271449'), + (38131, 438, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'LmpJ3j94', '5276469'), + (38132, 438, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'LmpJ3j94', '5278159'), + (38133, 438, 1407, 'not_attending', '2022-06-04 20:52:57', '2025-12-17 19:47:30', 'LmpJ3j94', '5363695'), + (38134, 438, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'LmpJ3j94', '5365960'), + (38135, 438, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'LmpJ3j94', '5368973'), + (38136, 438, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'LmpJ3j94', '5378247'), + (38137, 438, 1431, 'not_attending', '2022-06-11 21:21:20', '2025-12-17 19:47:31', 'LmpJ3j94', '5389605'), + (38138, 438, 1442, 'attending', '2022-06-18 16:07:46', '2025-12-17 19:47:17', 'LmpJ3j94', '5397265'), + (38139, 438, 1444, 'not_attending', '2022-06-11 21:21:10', '2025-12-17 19:47:30', 'LmpJ3j94', '5397614'), + (38140, 438, 1445, 'attending', '2022-06-18 17:36:38', '2025-12-17 19:47:17', 'LmpJ3j94', '5397615'), + (38141, 438, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'LmpJ3j94', '5403967'), + (38142, 438, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'LmpJ3j94', '5404786'), + (38143, 438, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'LmpJ3j94', '5405203'), + (38144, 438, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'LmpJ3j94', '5408794'), + (38145, 438, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'LmpJ3j94', '5411699'), + (38146, 438, 1482, 'attending', '2022-06-21 18:01:31', '2025-12-17 19:47:19', 'LmpJ3j94', '5412550'), + (38147, 438, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'LmpJ3j94', '5415046'), + (38148, 438, 1495, 'maybe', '2022-06-26 13:49:25', '2025-12-17 19:47:19', 'LmpJ3j94', '5422086'), + (38149, 438, 1498, 'not_attending', '2022-07-02 15:24:57', '2025-12-17 19:47:19', 'LmpJ3j94', '5422406'), + (38150, 438, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'LmpJ3j94', '5424565'), + (38151, 438, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'LmpJ3j94', '5426882'), + (38152, 438, 1505, 'maybe', '2022-07-05 20:11:21', '2025-12-17 19:47:19', 'LmpJ3j94', '5427083'), + (38153, 438, 1511, 'not_attending', '2022-07-09 20:16:29', '2025-12-17 19:47:19', 'LmpJ3j94', '5437733'), + (38154, 438, 1513, 'not_attending', '2022-07-13 15:21:16', '2025-12-17 19:47:20', 'LmpJ3j94', '5441125'), + (38155, 438, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'LmpJ3j94', '5441126'), + (38156, 438, 1515, 'not_attending', '2022-08-06 19:42:50', '2025-12-17 19:47:21', 'LmpJ3j94', '5441128'), + (38157, 438, 1517, 'not_attending', '2022-08-27 21:00:19', '2025-12-17 19:47:23', 'LmpJ3j94', '5441130'), + (38158, 438, 1518, 'not_attending', '2022-09-01 16:48:09', '2025-12-17 19:47:24', 'LmpJ3j94', '5441131'), + (38159, 438, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'LmpJ3j94', '5441132'), + (38160, 438, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'LmpJ3j94', '5446643'), + (38161, 438, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'LmpJ3j94', '5453325'), + (38162, 438, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'LmpJ3j94', '5454516'), + (38163, 438, 1544, 'not_attending', '2022-09-17 22:30:20', '2025-12-17 19:47:11', 'LmpJ3j94', '5454517'), + (38164, 438, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'LmpJ3j94', '5454605'), + (38165, 438, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'LmpJ3j94', '5455037'), + (38166, 438, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'LmpJ3j94', '5461278'), + (38167, 438, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'LmpJ3j94', '5469480'), + (38168, 438, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'LmpJ3j94', '5471073'), + (38169, 438, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'LmpJ3j94', '5474663'), + (38170, 438, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'LmpJ3j94', '5482022'), + (38171, 438, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'LmpJ3j94', '5482793'), + (38172, 438, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'LmpJ3j94', '5488912'), + (38173, 438, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'LmpJ3j94', '5492192'), + (38174, 438, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'LmpJ3j94', '5493139'), + (38175, 438, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'LmpJ3j94', '5493200'), + (38176, 438, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'LmpJ3j94', '5502188'), + (38177, 438, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'LmpJ3j94', '5505059'), + (38178, 438, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'LmpJ3j94', '5509055'), + (38179, 438, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'LmpJ3j94', '5512862'), + (38180, 438, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'LmpJ3j94', '5513985'), + (38181, 438, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'LmpJ3j94', '5519981'), + (38182, 438, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'LmpJ3j94', '5522550'), + (38183, 438, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'LmpJ3j94', '5534683'), + (38184, 438, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'LmpJ3j94', '5537735'), + (38185, 438, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'LmpJ3j94', '5540859'), + (38186, 438, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'LmpJ3j94', '5546619'), + (38187, 438, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'LmpJ3j94', '5557747'), + (38188, 438, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'LmpJ3j94', '5560255'), + (38189, 438, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'LmpJ3j94', '5562906'), + (38190, 438, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'LmpJ3j94', '5600604'), + (38191, 438, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'LmpJ3j94', '5605544'), + (38192, 438, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'LmpJ3j94', '5630960'), + (38193, 438, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'LmpJ3j94', '5630961'), + (38194, 438, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'LmpJ3j94', '5630962'), + (38195, 438, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'LmpJ3j94', '5630966'), + (38196, 438, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'LmpJ3j94', '5630967'), + (38197, 438, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'LmpJ3j94', '5630968'), + (38198, 438, 1727, 'not_attending', '2022-12-03 23:05:21', '2025-12-17 19:47:16', 'LmpJ3j94', '5630969'), + (38199, 438, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'LmpJ3j94', '5635406'), + (38200, 438, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'LmpJ3j94', '5638765'), + (38201, 438, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'LmpJ3j94', '5640097'), + (38202, 438, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'LmpJ3j94', '5640843'), + (38203, 438, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'LmpJ3j94', '5641521'), + (38204, 438, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'LmpJ3j94', '5642818'), + (38205, 438, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'LmpJ3j94', '5652395'), + (38206, 438, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'LmpJ3j94', '5670445'), + (38207, 438, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'LmpJ3j94', '5671637'), + (38208, 438, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'LmpJ3j94', '5672329'), + (38209, 438, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'LmpJ3j94', '5674057'), + (38210, 438, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'LmpJ3j94', '5674060'), + (38211, 438, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'LmpJ3j94', '5677461'), + (38212, 438, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'LmpJ3j94', '5698046'), + (38213, 438, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'LmpJ3j94', '5699760'), + (38214, 438, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'LmpJ3j94', '5741601'), + (38215, 438, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'LmpJ3j94', '5763458'), + (38216, 438, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'LmpJ3j94', '5774172'), + (38217, 438, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'LmpJ3j94', '5818247'), + (38218, 438, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'LmpJ3j94', '5819471'), + (38219, 438, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'LmpJ3j94', '5827739'), + (38220, 438, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'LmpJ3j94', '5844306'), + (38221, 438, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'LmpJ3j94', '5850159'), + (38222, 438, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'LmpJ3j94', '5858999'), + (38223, 438, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'LmpJ3j94', '5871984'), + (38224, 438, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'LmpJ3j94', '5876354'), + (38225, 438, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'LmpJ3j94', '5880939'), + (38226, 438, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'LmpJ3j94', '5880940'), + (38227, 438, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'LmpJ3j94', '5880942'), + (38228, 438, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'LmpJ3j94', '5880943'), + (38229, 438, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'LmpJ3j94', '5887890'), + (38230, 438, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'LmpJ3j94', '5888598'), + (38231, 438, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'LmpJ3j94', '5893260'), + (38232, 438, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'LmpJ3j94', '5899826'), + (38233, 438, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'LmpJ3j94', '5900199'), + (38234, 438, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'LmpJ3j94', '5900200'), + (38235, 438, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'LmpJ3j94', '5900202'), + (38236, 438, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'LmpJ3j94', '5900203'), + (38237, 438, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'LmpJ3j94', '5901108'), + (38238, 438, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'LmpJ3j94', '5901126'), + (38239, 438, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'LmpJ3j94', '5909655'), + (38240, 438, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'LmpJ3j94', '5910522'), + (38241, 438, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'LmpJ3j94', '5910526'), + (38242, 438, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'LmpJ3j94', '5910528'), + (38243, 438, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'LmpJ3j94', '5916219'), + (38244, 438, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'LmpJ3j94', '5936234'), + (38245, 438, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'LmpJ3j94', '5958351'), + (38246, 438, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'LmpJ3j94', '5959751'), + (38247, 438, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'LmpJ3j94', '5959755'), + (38248, 438, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'LmpJ3j94', '5960055'), + (38249, 438, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'LmpJ3j94', '5961684'), + (38250, 438, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'LmpJ3j94', '5962132'), + (38251, 438, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'LmpJ3j94', '5962133'), + (38252, 438, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'LmpJ3j94', '5962134'), + (38253, 438, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'LmpJ3j94', '5962317'), + (38254, 438, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'LmpJ3j94', '5962318'), + (38255, 438, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'LmpJ3j94', '5965933'), + (38256, 438, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'LmpJ3j94', '5967014'), + (38257, 438, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'LmpJ3j94', '5972815'), + (38258, 438, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'LmpJ3j94', '5974016'), + (38259, 438, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'LmpJ3j94', '5981515'), + (38260, 438, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'LmpJ3j94', '5993516'), + (38261, 438, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'LmpJ3j94', '5998939'), + (38262, 438, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'LmpJ3j94', '6028191'), + (38263, 438, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'LmpJ3j94', '6040066'), + (38264, 438, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'LmpJ3j94', '6042717'), + (38265, 438, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'LmpJ3j94', '6044838'), + (38266, 438, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'LmpJ3j94', '6044839'), + (38267, 438, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJ3j94', '6045684'), + (38268, 438, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'LmpJ3j94', '6050104'), + (38269, 438, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'LmpJ3j94', '6053195'), + (38270, 438, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'LmpJ3j94', '6053198'), + (38271, 438, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'LmpJ3j94', '6056085'), + (38272, 438, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'LmpJ3j94', '6056916'), + (38273, 438, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'LmpJ3j94', '6059290'), + (38274, 438, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'LmpJ3j94', '6060328'), + (38275, 438, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'LmpJ3j94', '6061037'), + (38276, 438, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'LmpJ3j94', '6061039'), + (38277, 438, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'LmpJ3j94', '6067245'), + (38278, 438, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'LmpJ3j94', '6068094'), + (38279, 438, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'LmpJ3j94', '6068252'), + (38280, 438, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'LmpJ3j94', '6068253'), + (38281, 438, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'LmpJ3j94', '6068254'), + (38282, 438, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'LmpJ3j94', '6068280'), + (38283, 438, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'LmpJ3j94', '6069093'), + (38284, 438, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'LmpJ3j94', '6072528'), + (38285, 438, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'LmpJ3j94', '6079840'), + (38286, 438, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'LmpJ3j94', '6083398'), + (38287, 438, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'LmpJ3j94', '6093504'), + (38288, 438, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'LmpJ3j94', '6097414'), + (38289, 438, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'LmpJ3j94', '6097442'), + (38290, 438, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'LmpJ3j94', '6097684'), + (38291, 438, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'LmpJ3j94', '6098762'), + (38292, 438, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'LmpJ3j94', '6101361'), + (38293, 438, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'LmpJ3j94', '6101362'), + (38294, 438, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'LmpJ3j94', '6107314'), + (38295, 438, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'LmpJ3j94', '6120034'), + (38296, 438, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'LmpJ3j94', '6136733'), + (38297, 438, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'LmpJ3j94', '6137989'), + (38298, 438, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'LmpJ3j94', '6150864'), + (38299, 438, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'LmpJ3j94', '6155491'), + (38300, 438, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'LmpJ3j94', '6164417'), + (38301, 438, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'LmpJ3j94', '6166388'), + (38302, 438, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'LmpJ3j94', '6176439'), + (38303, 438, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'LmpJ3j94', '6182410'), + (38304, 438, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'LmpJ3j94', '6185812'), + (38305, 438, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'LmpJ3j94', '6187651'), + (38306, 438, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'LmpJ3j94', '6187963'), + (38307, 438, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'LmpJ3j94', '6187964'), + (38308, 438, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'LmpJ3j94', '6187966'), + (38309, 438, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'LmpJ3j94', '6187967'), + (38310, 438, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'LmpJ3j94', '6187969'), + (38311, 438, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'LmpJ3j94', '6334878'), + (38312, 438, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'LmpJ3j94', '6337236'), + (38313, 438, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'LmpJ3j94', '6337970'), + (38314, 438, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'LmpJ3j94', '6338308'), + (38315, 438, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'LmpJ3j94', '6341710'), + (38316, 438, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'LmpJ3j94', '6342044'), + (38317, 438, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'LmpJ3j94', '6342298'), + (38318, 438, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'LmpJ3j94', '6343294'), + (38319, 438, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'LmpJ3j94', '6347034'), + (38320, 438, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'LmpJ3j94', '6347056'), + (38321, 438, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'LmpJ3j94', '6353830'), + (38322, 438, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'LmpJ3j94', '6353831'), + (38323, 438, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'LmpJ3j94', '6357867'), + (38324, 438, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'LmpJ3j94', '6358652'), + (38325, 438, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'LmpJ3j94', '6361709'), + (38326, 438, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'LmpJ3j94', '6361710'), + (38327, 438, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'LmpJ3j94', '6361711'), + (38328, 438, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'LmpJ3j94', '6361712'), + (38329, 438, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'LmpJ3j94', '6361713'), + (38330, 438, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'LmpJ3j94', '6382573'), + (38331, 438, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'LmpJ3j94', '6388604'), + (38332, 438, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'LmpJ3j94', '6394629'), + (38333, 438, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'LmpJ3j94', '6394631'), + (38334, 438, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'LmpJ3j94', '6440863'), + (38335, 438, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'LmpJ3j94', '6445440'), + (38336, 438, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'LmpJ3j94', '6453951'), + (38337, 438, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'LmpJ3j94', '6461696'), + (38338, 438, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'LmpJ3j94', '6462129'), + (38339, 438, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'LmpJ3j94', '6463218'), + (38340, 438, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'LmpJ3j94', '6472181'), + (38341, 438, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'LmpJ3j94', '6482693'), + (38342, 438, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'LmpJ3j94', '6484200'), + (38343, 438, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'LmpJ3j94', '6484680'), + (38344, 438, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'LmpJ3j94', '6507741'), + (38345, 438, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'LmpJ3j94', '6514659'), + (38346, 438, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'LmpJ3j94', '6514660'), + (38347, 438, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'LmpJ3j94', '6519103'), + (38348, 438, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'LmpJ3j94', '6535681'), + (38349, 438, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'LmpJ3j94', '6584747'), + (38350, 438, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'LmpJ3j94', '6587097'), + (38351, 438, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'LmpJ3j94', '6609022'), + (38352, 438, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'LmpJ3j94', '6632757'), + (38353, 438, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'LmpJ3j94', '6644187'), + (38354, 438, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'LmpJ3j94', '6648951'), + (38355, 438, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'LmpJ3j94', '6648952'), + (38356, 438, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'LmpJ3j94', '6655401'), + (38357, 438, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'LmpJ3j94', '6661585'), + (38358, 438, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'LmpJ3j94', '6661588'), + (38359, 438, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'LmpJ3j94', '6661589'), + (38360, 438, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'LmpJ3j94', '6699906'), + (38361, 438, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'LmpJ3j94', '6699913'), + (38362, 438, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'LmpJ3j94', '6701109'), + (38363, 438, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'LmpJ3j94', '6705219'), + (38364, 438, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'LmpJ3j94', '6710153'), + (38365, 438, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'LmpJ3j94', '6711552'), + (38366, 438, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'LmpJ3j94', '6711553'), + (38367, 438, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'LmpJ3j94', '6722688'), + (38368, 438, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'LmpJ3j94', '6730620'), + (38369, 438, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'LmpJ3j94', '6740364'), + (38370, 438, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'LmpJ3j94', '6743829'), + (38371, 438, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'LmpJ3j94', '7030380'), + (38372, 438, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'LmpJ3j94', '7033677'), + (38373, 438, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'LmpJ3j94', '7044715'), + (38374, 438, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'LmpJ3j94', '7050318'), + (38375, 438, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'LmpJ3j94', '7050319'), + (38376, 438, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'LmpJ3j94', '7050322'), + (38377, 438, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'LmpJ3j94', '7057804'), + (38378, 438, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'LmpJ3j94', '7072824'), + (38379, 438, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'LmpJ3j94', '7074348'), + (38380, 438, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'LmpJ3j94', '7074364'), + (38381, 438, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'LmpJ3j94', '7089267'), + (38382, 438, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'LmpJ3j94', '7098747'), + (38383, 438, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'LmpJ3j94', '7113468'), + (38384, 438, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'LmpJ3j94', '7114856'), + (38385, 438, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'LmpJ3j94', '7114951'), + (38386, 438, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'LmpJ3j94', '7114955'), + (38387, 438, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'LmpJ3j94', '7114956'), + (38388, 438, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'LmpJ3j94', '7114957'), + (38389, 438, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'LmpJ3j94', '7159484'), + (38390, 438, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'LmpJ3j94', '7178446'), + (38391, 438, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'LmpJ3j94', '7220467'), + (38392, 438, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'LmpJ3j94', '7240354'), + (38393, 438, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'LmpJ3j94', '7251633'), + (38394, 438, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'LmpJ3j94', '7324073'), + (38395, 438, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'LmpJ3j94', '7324074'), + (38396, 438, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'LmpJ3j94', '7324075'), + (38397, 438, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'LmpJ3j94', '7324078'), + (38398, 438, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'LmpJ3j94', '7324082'), + (38399, 438, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'LmpJ3j94', '7331457'), + (38400, 438, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'LmpJ3j94', '7363643'), + (38401, 438, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'LmpJ3j94', '7368606'), + (38402, 438, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'LmpJ3j94', '7397462'), + (38403, 438, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'LmpJ3j94', '7424275'), + (38404, 438, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'LmpJ3j94', '7432751'), + (38405, 438, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'LmpJ3j94', '7432752'), + (38406, 438, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'LmpJ3j94', '7432753'), + (38407, 438, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'LmpJ3j94', '7432754'), + (38408, 438, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'LmpJ3j94', '7432755'), + (38409, 438, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'LmpJ3j94', '7432756'), + (38410, 438, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'LmpJ3j94', '7432758'), + (38411, 438, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'LmpJ3j94', '7432759'), + (38412, 438, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'LmpJ3j94', '7433834'), + (38413, 438, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'LmpJ3j94', '7470197'), + (38414, 438, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'LmpJ3j94', '7685613'), + (38415, 438, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'LmpJ3j94', '7688194'), + (38416, 438, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'LmpJ3j94', '7688196'), + (38417, 438, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'LmpJ3j94', '7688289'), + (38418, 438, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'LmpJ3j94', '7692763'), + (38419, 438, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'LmpJ3j94', '7697552'), + (38420, 438, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'LmpJ3j94', '7699878'), + (38421, 438, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'LmpJ3j94', '7704043'), + (38422, 438, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'LmpJ3j94', '7712467'), + (38423, 438, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'LmpJ3j94', '7713585'), + (38424, 438, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'LmpJ3j94', '7713586'), + (38425, 438, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'LmpJ3j94', '7738518'), + (38426, 438, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'LmpJ3j94', '7750636'), + (38427, 438, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'LmpJ3j94', '7796540'), + (38428, 438, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'LmpJ3j94', '7796541'), + (38429, 438, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'LmpJ3j94', '7796542'), + (38430, 438, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'LmpJ3j94', '7825913'), + (38431, 438, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'LmpJ3j94', '7826209'), + (38432, 438, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'LmpJ3j94', '7834742'), + (38433, 438, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'LmpJ3j94', '7842108'), + (38434, 438, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'LmpJ3j94', '7842902'), + (38435, 438, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'LmpJ3j94', '7842903'), + (38436, 438, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'LmpJ3j94', '7842904'), + (38437, 438, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'LmpJ3j94', '7842905'), + (38438, 438, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'LmpJ3j94', '7855719'), + (38439, 438, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'LmpJ3j94', '7860683'), + (38440, 438, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'LmpJ3j94', '7860684'), + (38441, 438, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'LmpJ3j94', '7866095'), + (38442, 438, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'LmpJ3j94', '7869170'), + (38443, 438, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'LmpJ3j94', '7869188'), + (38444, 438, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'LmpJ3j94', '7869201'), + (38445, 438, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'LmpJ3j94', '7877465'), + (38446, 438, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'LmpJ3j94', '7888250'), + (38447, 438, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'LmpJ3j94', '7904777'), + (38448, 438, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'LmpJ3j94', '8349164'), + (38449, 438, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'LmpJ3j94', '8349545'), + (38450, 438, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'LmpJ3j94', '8368028'), + (38451, 438, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'LmpJ3j94', '8368029'), + (38452, 438, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'LmpJ3j94', '8388462'), + (38453, 438, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'LmpJ3j94', '8400273'), + (38454, 438, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'LmpJ3j94', '8400275'), + (38455, 438, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'LmpJ3j94', '8400276'), + (38456, 438, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'LmpJ3j94', '8404977'), + (38457, 438, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'LmpJ3j94', '8430783'), + (38458, 438, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'LmpJ3j94', '8430784'), + (38459, 438, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'LmpJ3j94', '8430799'), + (38460, 438, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'LmpJ3j94', '8430800'), + (38461, 438, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'LmpJ3j94', '8430801'), + (38462, 438, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'LmpJ3j94', '8438709'), + (38463, 438, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'LmpJ3j94', '8457738'), + (38464, 438, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'LmpJ3j94', '8459566'), + (38465, 438, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'LmpJ3j94', '8459567'), + (38466, 438, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'LmpJ3j94', '8461032'), + (38467, 438, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'LmpJ3j94', '8477877'), + (38468, 438, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'LmpJ3j94', '8485688'), + (38469, 438, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'LmpJ3j94', '8490587'), + (38470, 438, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'LmpJ3j94', '8493552'), + (38471, 438, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'LmpJ3j94', '8493553'), + (38472, 438, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'LmpJ3j94', '8493554'), + (38473, 438, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'LmpJ3j94', '8493555'), + (38474, 438, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'LmpJ3j94', '8493556'), + (38475, 438, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'LmpJ3j94', '8493557'), + (38476, 438, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'LmpJ3j94', '8493558'), + (38477, 438, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'LmpJ3j94', '8493559'), + (38478, 438, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'LmpJ3j94', '8493560'), + (38479, 438, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'LmpJ3j94', '8493561'), + (38480, 438, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'LmpJ3j94', '8493572'), + (38481, 438, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'LmpJ3j94', '8540725'), + (38482, 438, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'LmpJ3j94', '8555421'), + (38483, 439, 1242, 'attending', '2022-03-30 22:45:22', '2025-12-17 19:47:25', 'd9ovY5pA', '5052241'), + (38484, 439, 1274, 'maybe', '2022-03-30 13:25:07', '2025-12-17 19:47:26', 'd9ovY5pA', '5186585'), + (38485, 439, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'd9ovY5pA', '5195095'), + (38486, 439, 1288, 'attending', '2022-03-23 23:37:11', '2025-12-17 19:47:25', 'd9ovY5pA', '5199460'), + (38487, 439, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9ovY5pA', '5215989'), + (38488, 439, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd9ovY5pA', '5223686'), + (38489, 439, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd9ovY5pA', '5227432'), + (38490, 439, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'd9ovY5pA', '5247467'), + (38491, 439, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd9ovY5pA', '5260800'), + (38492, 439, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd9ovY5pA', '5269930'), + (38493, 439, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd9ovY5pA', '5271448'), + (38494, 439, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'd9ovY5pA', '5271449'), + (38495, 439, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd9ovY5pA', '5276469'), + (38496, 439, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd9ovY5pA', '5278159'), + (38497, 439, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd9ovY5pA', '5363695'), + (38498, 439, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd9ovY5pA', '5365960'), + (38499, 439, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd9ovY5pA', '5368973'), + (38500, 439, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd9ovY5pA', '5378247'), + (38501, 439, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd9ovY5pA', '5389605'), + (38502, 439, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd9ovY5pA', '5397265'), + (38503, 439, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd9ovY5pA', '5403967'), + (38504, 439, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd9ovY5pA', '5404786'), + (38505, 439, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd9ovY5pA', '5405203'), + (38506, 439, 1478, 'not_attending', '2022-06-15 01:11:29', '2025-12-17 19:47:19', 'd9ovY5pA', '5408794'), + (38507, 439, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd9ovY5pA', '5411699'), + (38508, 439, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd9ovY5pA', '5412550'), + (38509, 439, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd9ovY5pA', '5415046'), + (38510, 439, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd9ovY5pA', '5422086'), + (38511, 439, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd9ovY5pA', '5422406'), + (38512, 439, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd9ovY5pA', '5424565'), + (38513, 439, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd9ovY5pA', '5426882'), + (38514, 439, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd9ovY5pA', '5427083'), + (38515, 439, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd9ovY5pA', '5441125'), + (38516, 439, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd9ovY5pA', '5441126'), + (38517, 439, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd9ovY5pA', '5441128'), + (38518, 439, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd9ovY5pA', '5446643'), + (38519, 439, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd9ovY5pA', '5453325'), + (38520, 439, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd9ovY5pA', '5454516'), + (38521, 439, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd9ovY5pA', '5454605'), + (38522, 439, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd9ovY5pA', '5455037'), + (38523, 439, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd9ovY5pA', '5461278'), + (38524, 439, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd9ovY5pA', '5469480'), + (38525, 439, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd9ovY5pA', '5471073'), + (38526, 439, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd9ovY5pA', '5474663'), + (38527, 439, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd9ovY5pA', '5482022'), + (38528, 439, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd9ovY5pA', '5482793'), + (38529, 439, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd9ovY5pA', '5488912'), + (38530, 439, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd9ovY5pA', '5492192'), + (38531, 439, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd9ovY5pA', '5493139'), + (38532, 439, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd9ovY5pA', '5493200'), + (38533, 439, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd9ovY5pA', '5502188'), + (38534, 439, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd9ovY5pA', '5512862'), + (38535, 439, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd9ovY5pA', '5513985'), + (38536, 439, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9ovY5pA', '6045684'), + (38537, 440, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dzva1L9d', '6045684'), + (38538, 441, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4kqkE0Lm', '6342044'), + (38539, 441, 2172, 'attending', '2023-07-20 15:42:56', '2025-12-17 19:46:53', '4kqkE0Lm', '6342591'), + (38540, 441, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '4kqkE0Lm', '6343294'), + (38541, 441, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4kqkE0Lm', '6347034'), + (38542, 441, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4kqkE0Lm', '6347056'), + (38543, 441, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4kqkE0Lm', '6353830'), + (38544, 441, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4kqkE0Lm', '6353831'), + (38545, 441, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4kqkE0Lm', '6357867'), + (38546, 441, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4kqkE0Lm', '6358652'), + (38547, 441, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', '4kqkE0Lm', '6361709'), + (38548, 441, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4kqkE0Lm', '6361710'), + (38549, 441, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4kqkE0Lm', '6361711'), + (38550, 441, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4kqkE0Lm', '6361712'), + (38551, 441, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4kqkE0Lm', '6361713'), + (38552, 441, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4kqkE0Lm', '6382573'), + (38553, 441, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4kqkE0Lm', '6388604'), + (38554, 441, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4kqkE0Lm', '6394629'), + (38555, 441, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4kqkE0Lm', '6394631'), + (38556, 441, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4kqkE0Lm', '6431478'), + (38557, 442, 1856, 'not_attending', '2023-01-17 23:45:31', '2025-12-17 19:47:05', '41xa1GEA', '5873970'), + (38558, 442, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41xa1GEA', '5876354'), + (38559, 442, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '41xa1GEA', '5880939'), + (38560, 442, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '41xa1GEA', '5880940'), + (38561, 442, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '41xa1GEA', '5880942'), + (38562, 442, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41xa1GEA', '5887890'), + (38563, 442, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41xa1GEA', '5888598'), + (38564, 442, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41xa1GEA', '5893260'), + (38565, 442, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '41xa1GEA', '5899826'), + (38566, 442, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '41xa1GEA', '5900199'), + (38567, 442, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '41xa1GEA', '5900200'), + (38568, 442, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', '41xa1GEA', '5901055'), + (38569, 442, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '41xa1GEA', '5901108'), + (38570, 442, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '41xa1GEA', '5901126'), + (38571, 442, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '41xa1GEA', '5901606'), + (38572, 442, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '41xa1GEA', '5909655'), + (38573, 442, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '41xa1GEA', '5910522'), + (38574, 442, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '41xa1GEA', '5910526'), + (38575, 442, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '41xa1GEA', '5910528'), + (38576, 442, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '41xa1GEA', '5916219'), + (38577, 442, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '41xa1GEA', '5936234'), + (38578, 442, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '41xa1GEA', '5936691'), + (38579, 442, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '41xa1GEA', '5958351'), + (38580, 442, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '41xa1GEA', '5959751'), + (38581, 442, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '41xa1GEA', '5959755'), + (38582, 442, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '41xa1GEA', '5960055'), + (38583, 442, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '41xa1GEA', '5961684'), + (38584, 442, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '41xa1GEA', '5962132'), + (38585, 442, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '41xa1GEA', '5962133'), + (38586, 442, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '41xa1GEA', '5962134'), + (38587, 442, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '41xa1GEA', '5962317'), + (38588, 442, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '41xa1GEA', '5962318'), + (38589, 442, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41xa1GEA', '6045684'), + (38590, 443, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dK3lXY5d', '4645687'), + (38591, 443, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dK3lXY5d', '4645698'), + (38592, 443, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dK3lXY5d', '4645704'), + (38593, 443, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dK3lXY5d', '4645705'), + (38594, 443, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dK3lXY5d', '4668385'), + (38595, 443, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dK3lXY5d', '4694407'), + (38596, 443, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dK3lXY5d', '4746789'), + (38597, 443, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dK3lXY5d', '4753929'), + (38598, 443, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dK3lXY5d', '6045684'), + (38599, 444, 857, 'not_attending', '2021-11-22 22:31:16', '2025-12-17 19:47:37', 'ndlboPlA', '4015731'), + (38600, 444, 994, 'not_attending', '2021-09-30 22:26:06', '2025-12-17 19:47:34', 'ndlboPlA', '4420742'), + (38601, 444, 995, 'not_attending', '2021-10-04 16:17:47', '2025-12-17 19:47:34', 'ndlboPlA', '4420744'), + (38602, 444, 996, 'not_attending', '2021-10-11 05:23:06', '2025-12-17 19:47:35', 'ndlboPlA', '4420747'), + (38603, 444, 1006, 'not_attending', '2021-09-30 22:25:55', '2025-12-17 19:47:34', 'ndlboPlA', '4438808'), + (38604, 444, 1007, 'not_attending', '2021-09-30 22:26:10', '2025-12-17 19:47:34', 'ndlboPlA', '4438809'), + (38605, 444, 1009, 'attending', '2021-10-02 03:29:11', '2025-12-17 19:47:34', 'ndlboPlA', '4438811'), + (38606, 444, 1039, 'not_attending', '2021-09-30 22:26:06', '2025-12-17 19:47:34', 'ndlboPlA', '4496604'), + (38607, 444, 1049, 'attending', '2021-12-31 16:15:20', '2025-12-17 19:47:32', 'ndlboPlA', '4496614'), + (38608, 444, 1068, 'attending', '2021-09-30 22:43:47', '2025-12-17 19:47:34', 'ndlboPlA', '4511471'), + (38609, 444, 1070, 'not_attending', '2021-09-30 22:25:56', '2025-12-17 19:47:34', 'ndlboPlA', '4512562'), + (38610, 444, 1071, 'not_attending', '2021-09-30 22:38:19', '2025-12-17 19:47:34', 'ndlboPlA', '4516078'), + (38611, 444, 1072, 'attending', '2021-09-30 22:42:34', '2025-12-17 19:47:34', 'ndlboPlA', '4516287'), + (38612, 444, 1073, 'not_attending', '2021-09-30 22:25:50', '2025-12-17 19:47:34', 'ndlboPlA', '4518993'), + (38613, 444, 1077, 'attending', '2021-10-09 16:14:57', '2025-12-17 19:47:34', 'ndlboPlA', '4540903'), + (38614, 444, 1079, 'attending', '2021-10-11 05:23:14', '2025-12-17 19:47:35', 'ndlboPlA', '4563823'), + (38615, 444, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndlboPlA', '4568602'), + (38616, 444, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndlboPlA', '4572153'), + (38617, 444, 1092, 'attending', '2021-10-20 19:50:26', '2025-12-17 19:47:35', 'ndlboPlA', '4582837'), + (38618, 444, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'ndlboPlA', '4585962'), + (38619, 444, 1095, 'not_attending', '2021-10-27 22:22:54', '2025-12-17 19:47:36', 'ndlboPlA', '4596356'), + (38620, 444, 1097, 'attending', '2021-10-29 01:50:40', '2025-12-17 19:47:36', 'ndlboPlA', '4598860'), + (38621, 444, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ndlboPlA', '4598861'), + (38622, 444, 1099, 'not_attending', '2021-10-31 02:32:35', '2025-12-17 19:47:36', 'ndlboPlA', '4602797'), + (38623, 444, 1103, 'attending', '2021-11-07 04:02:39', '2025-12-17 19:47:36', 'ndlboPlA', '4616350'), + (38624, 444, 1107, 'attending', '2021-11-16 05:32:44', '2025-12-17 19:47:37', 'ndlboPlA', '4620697'), + (38625, 444, 1114, 'not_attending', '2021-11-12 03:36:25', '2025-12-17 19:47:36', 'ndlboPlA', '4637896'), + (38626, 444, 1115, 'not_attending', '2021-11-16 05:32:42', '2025-12-17 19:47:37', 'ndlboPlA', '4638673'), + (38627, 444, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndlboPlA', '4642994'), + (38628, 444, 1117, 'not_attending', '2021-12-09 14:35:23', '2025-12-17 19:47:38', 'ndlboPlA', '4642995'), + (38629, 444, 1118, 'attending', '2021-12-04 20:10:23', '2025-12-17 19:47:38', 'ndlboPlA', '4642996'), + (38630, 444, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ndlboPlA', '4642997'), + (38631, 444, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ndlboPlA', '4645687'), + (38632, 444, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ndlboPlA', '4645698'), + (38633, 444, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndlboPlA', '4645704'), + (38634, 444, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ndlboPlA', '4645705'), + (38635, 444, 1130, 'maybe', '2021-11-29 03:47:07', '2025-12-17 19:47:37', 'ndlboPlA', '4658824'), + (38636, 444, 1134, 'not_attending', '2021-11-24 18:15:37', '2025-12-17 19:47:37', 'ndlboPlA', '4668385'), + (38637, 444, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndlboPlA', '4694407'), + (38638, 444, 1153, 'attending', '2021-12-31 16:15:16', '2025-12-17 19:47:32', 'ndlboPlA', '4708707'), + (38639, 444, 1154, 'attending', '2022-01-23 16:54:54', '2025-12-17 19:47:32', 'ndlboPlA', '4708708'), + (38640, 444, 1167, 'not_attending', '2022-01-06 20:58:22', '2025-12-17 19:47:31', 'ndlboPlA', '4731015'), + (38641, 444, 1168, 'not_attending', '2022-01-06 20:58:25', '2025-12-17 19:47:31', 'ndlboPlA', '4731043'), + (38642, 444, 1175, 'attending', '2022-01-16 06:30:04', '2025-12-17 19:47:32', 'ndlboPlA', '4736497'), + (38643, 444, 1177, 'not_attending', '2022-02-07 16:53:40', '2025-12-17 19:47:32', 'ndlboPlA', '4736499'), + (38644, 444, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndlboPlA', '4736500'), + (38645, 444, 1181, 'attending', '2022-03-04 20:35:48', '2025-12-17 19:47:33', 'ndlboPlA', '4736503'), + (38646, 444, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ndlboPlA', '4736504'), + (38647, 444, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndlboPlA', '4746789'), + (38648, 444, 1188, 'not_attending', '2022-01-16 06:29:43', '2025-12-17 19:47:32', 'ndlboPlA', '4753929'), + (38649, 444, 1192, 'not_attending', '2022-01-19 22:22:39', '2025-12-17 19:47:32', 'ndlboPlA', '4758745'), + (38650, 444, 1193, 'attending', '2022-01-16 06:30:00', '2025-12-17 19:47:32', 'ndlboPlA', '4759563'), + (38651, 444, 1196, 'not_attending', '2022-01-19 22:22:28', '2025-12-17 19:47:32', 'ndlboPlA', '4765583'), + (38652, 444, 1202, 'not_attending', '2022-01-27 23:38:41', '2025-12-17 19:47:32', 'ndlboPlA', '4769423'), + (38653, 444, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndlboPlA', '5038850'), + (38654, 444, 1236, 'attending', '2022-02-14 19:04:01', '2025-12-17 19:47:32', 'ndlboPlA', '5045826'), + (38655, 444, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndlboPlA', '5132533'), + (38656, 444, 1265, 'not_attending', '2022-03-07 08:13:32', '2025-12-17 19:47:33', 'ndlboPlA', '5160862'), + (38657, 444, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ndlboPlA', '5186582'), + (38658, 444, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ndlboPlA', '5186583'), + (38659, 444, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ndlboPlA', '5186585'), + (38660, 444, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ndlboPlA', '5190437'), + (38661, 444, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ndlboPlA', '5195095'), + (38662, 444, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndlboPlA', '5215989'), + (38663, 444, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ndlboPlA', '5223686'), + (38664, 444, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ndlboPlA', '5227432'), + (38665, 444, 1322, 'attending', '2022-04-11 17:10:36', '2025-12-17 19:47:27', 'ndlboPlA', '5238356'), + (38666, 444, 1323, 'not_attending', '2022-04-27 00:15:45', '2025-12-17 19:47:27', 'ndlboPlA', '5238357'), + (38667, 444, 1330, 'not_attending', '2022-04-20 00:06:17', '2025-12-17 19:47:27', 'ndlboPlA', '5242155'), + (38668, 444, 1335, 'not_attending', '2022-04-15 18:28:33', '2025-12-17 19:47:27', 'ndlboPlA', '5244906'), + (38669, 444, 1336, 'not_attending', '2022-04-20 00:06:28', '2025-12-17 19:47:27', 'ndlboPlA', '5244915'), + (38670, 444, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ndlboPlA', '5247467'), + (38671, 444, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ndlboPlA', '5260800'), + (38672, 444, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ndlboPlA', '5269930'), + (38673, 444, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ndlboPlA', '5271448'), + (38674, 444, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'ndlboPlA', '5271449'), + (38675, 444, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ndlboPlA', '5276469'), + (38676, 444, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ndlboPlA', '5278159'), + (38677, 444, 1401, 'attending', '2022-05-15 15:32:14', '2025-12-17 19:47:29', 'ndlboPlA', '5286295'), + (38678, 444, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ndlboPlA', '5363695'), + (38679, 444, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ndlboPlA', '5365960'), + (38680, 444, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ndlboPlA', '5368973'), + (38681, 444, 1419, 'attending', '2022-06-06 16:41:48', '2025-12-17 19:47:30', 'ndlboPlA', '5373081'), + (38682, 444, 1423, 'maybe', '2022-06-10 14:45:36', '2025-12-17 19:47:17', 'ndlboPlA', '5375727'), + (38683, 444, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ndlboPlA', '5378247'), + (38684, 444, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ndlboPlA', '5389605'), + (38685, 444, 1438, 'not_attending', '2022-06-01 18:46:30', '2025-12-17 19:47:30', 'ndlboPlA', '5395032'), + (38686, 444, 1440, 'attending', '2022-06-06 16:41:33', '2025-12-17 19:47:30', 'ndlboPlA', '5396080'), + (38687, 444, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ndlboPlA', '5397265'), + (38688, 444, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ndlboPlA', '5403967'), + (38689, 444, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ndlboPlA', '5404786'), + (38690, 444, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ndlboPlA', '5405203'), + (38691, 444, 1463, 'attending', '2022-06-11 03:07:55', '2025-12-17 19:47:31', 'ndlboPlA', '5405208'), + (38692, 444, 1471, 'not_attending', '2022-06-21 19:23:54', '2025-12-17 19:47:17', 'ndlboPlA', '5407063'), + (38693, 444, 1473, 'attending', '2022-06-14 21:40:59', '2025-12-17 19:47:31', 'ndlboPlA', '5407267'), + (38694, 444, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'ndlboPlA', '5408794'), + (38695, 444, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ndlboPlA', '5411699'), + (38696, 444, 1481, 'attending', '2022-06-21 09:53:55', '2025-12-17 19:47:17', 'ndlboPlA', '5412237'), + (38697, 444, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ndlboPlA', '5412550'), + (38698, 444, 1484, 'attending', '2022-06-22 18:14:05', '2025-12-17 19:47:17', 'ndlboPlA', '5415046'), + (38699, 444, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ndlboPlA', '5422086'), + (38700, 444, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ndlboPlA', '5422406'), + (38701, 444, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ndlboPlA', '5424565'), + (38702, 444, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ndlboPlA', '5426882'), + (38703, 444, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ndlboPlA', '5427083'), + (38704, 444, 1508, 'attending', '2022-07-11 15:06:17', '2025-12-17 19:47:19', 'ndlboPlA', '5433453'), + (38705, 444, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ndlboPlA', '5441125'), + (38706, 444, 1514, 'attending', '2022-07-19 22:51:53', '2025-12-17 19:47:20', 'ndlboPlA', '5441126'), + (38707, 444, 1515, 'attending', '2022-08-02 05:18:05', '2025-12-17 19:47:21', 'ndlboPlA', '5441128'), + (38708, 444, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ndlboPlA', '5441131'), + (38709, 444, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'ndlboPlA', '5441132'), + (38710, 444, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ndlboPlA', '5446643'), + (38711, 444, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ndlboPlA', '5453325'), + (38712, 444, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ndlboPlA', '5454516'), + (38713, 444, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ndlboPlA', '5454605'), + (38714, 444, 1546, 'not_attending', '2022-07-24 03:24:40', '2025-12-17 19:47:20', 'ndlboPlA', '5454607'), + (38715, 444, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ndlboPlA', '5455037'), + (38716, 444, 1558, 'attending', '2022-09-01 16:58:25', '2025-12-17 19:47:10', 'ndlboPlA', '5458730'), + (38717, 444, 1559, 'not_attending', '2022-09-01 16:58:37', '2025-12-17 19:47:11', 'ndlboPlA', '5458731'), + (38718, 444, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ndlboPlA', '5461278'), + (38719, 444, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ndlboPlA', '5469480'), + (38720, 444, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ndlboPlA', '5471073'), + (38721, 444, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ndlboPlA', '5474663'), + (38722, 444, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ndlboPlA', '5482022'), + (38723, 444, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ndlboPlA', '5482793'), + (38724, 444, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ndlboPlA', '5488912'), + (38725, 444, 1582, 'attending', '2022-08-18 01:56:04', '2025-12-17 19:47:23', 'ndlboPlA', '5492001'), + (38726, 444, 1584, 'not_attending', '2022-08-18 01:56:14', '2025-12-17 19:47:23', 'ndlboPlA', '5492004'), + (38727, 444, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ndlboPlA', '5492192'), + (38728, 444, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ndlboPlA', '5493139'), + (38729, 444, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ndlboPlA', '5493200'), + (38730, 444, 1598, 'attending', '2022-08-14 22:29:37', '2025-12-17 19:47:22', 'ndlboPlA', '5496567'), + (38731, 444, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ndlboPlA', '5502188'), + (38732, 444, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndlboPlA', '5505059'), + (38733, 444, 1610, 'attending', '2022-08-24 21:40:20', '2025-12-17 19:47:23', 'ndlboPlA', '5506595'), + (38734, 444, 1611, 'attending', '2022-09-03 10:27:59', '2025-12-17 19:47:24', 'ndlboPlA', '5507652'), + (38735, 444, 1615, 'attending', '2022-08-24 21:40:14', '2025-12-17 19:47:23', 'ndlboPlA', '5509055'), + (38736, 444, 1617, 'not_attending', '2022-09-05 04:50:41', '2025-12-17 19:47:24', 'ndlboPlA', '5512003'), + (38737, 444, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndlboPlA', '5512862'), + (38738, 444, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndlboPlA', '5513985'), + (38739, 444, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'ndlboPlA', '5519981'), + (38740, 444, 1627, 'attending', '2022-09-01 16:56:22', '2025-12-17 19:47:24', 'ndlboPlA', '5521552'), + (38741, 444, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndlboPlA', '5522550'), + (38742, 444, 1630, 'attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndlboPlA', '5534683'), + (38743, 444, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'ndlboPlA', '5537735'), + (38744, 444, 1636, 'maybe', '2022-09-03 10:27:49', '2025-12-17 19:47:24', 'ndlboPlA', '5538454'), + (38745, 444, 1637, 'not_attending', '2022-09-05 04:50:31', '2025-12-17 19:47:24', 'ndlboPlA', '5539591'), + (38746, 444, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndlboPlA', '5540859'), + (38747, 444, 1642, 'attending', '2022-09-01 03:04:33', '2025-12-17 19:47:24', 'ndlboPlA', '5544227'), + (38748, 444, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndlboPlA', '5546619'), + (38749, 444, 1648, 'attending', '2022-09-05 04:50:34', '2025-12-17 19:47:24', 'ndlboPlA', '5548974'), + (38750, 444, 1650, 'attending', '2022-09-04 03:47:53', '2025-12-17 19:47:24', 'ndlboPlA', '5549611'), + (38751, 444, 1651, 'not_attending', '2022-09-05 04:50:23', '2025-12-17 19:47:24', 'ndlboPlA', '5551425'), + (38752, 444, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ndlboPlA', '5555245'), + (38753, 444, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndlboPlA', '5557747'), + (38754, 444, 1661, 'attending', '2022-09-09 18:49:50', '2025-12-17 19:47:24', 'ndlboPlA', '5560254'), + (38755, 444, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndlboPlA', '5560255'), + (38756, 444, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndlboPlA', '5562906'), + (38757, 444, 1667, 'attending', '2022-09-11 15:05:25', '2025-12-17 19:47:11', 'ndlboPlA', '5563221'), + (38758, 444, 1668, 'attending', '2022-09-21 15:15:41', '2025-12-17 19:47:12', 'ndlboPlA', '5563222'), + (38759, 444, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndlboPlA', '5600604'), + (38760, 444, 1679, 'attending', '2022-10-02 18:56:18', '2025-12-17 19:47:12', 'ndlboPlA', '5601099'), + (38761, 444, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndlboPlA', '5605544'), + (38762, 444, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'ndlboPlA', '5606737'), + (38763, 444, 1702, 'not_attending', '2022-10-07 15:17:03', '2025-12-17 19:47:12', 'ndlboPlA', '5609173'), + (38764, 444, 1708, 'attending', '2022-10-02 18:56:29', '2025-12-17 19:47:12', 'ndlboPlA', '5617648'), + (38765, 444, 1710, 'not_attending', '2022-10-02 18:56:14', '2025-12-17 19:47:12', 'ndlboPlA', '5621822'), + (38766, 444, 1716, 'not_attending', '2022-10-05 01:12:24', '2025-12-17 19:47:12', 'ndlboPlA', '5622429'), + (38767, 444, 1718, 'not_attending', '2022-10-05 01:12:39', '2025-12-17 19:47:12', 'ndlboPlA', '5630907'), + (38768, 444, 1721, 'attending', '2022-10-11 20:31:37', '2025-12-17 19:47:13', 'ndlboPlA', '5630960'), + (38769, 444, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndlboPlA', '5630961'), + (38770, 444, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndlboPlA', '5630962'), + (38771, 444, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndlboPlA', '5630966'), + (38772, 444, 1725, 'attending', '2022-11-13 04:36:39', '2025-12-17 19:47:16', 'ndlboPlA', '5630967'), + (38773, 444, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndlboPlA', '5630968'), + (38774, 444, 1727, 'not_attending', '2022-11-21 01:34:41', '2025-12-17 19:47:16', 'ndlboPlA', '5630969'), + (38775, 444, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndlboPlA', '5635406'), + (38776, 444, 1733, 'not_attending', '2022-10-07 15:17:19', '2025-12-17 19:47:12', 'ndlboPlA', '5635411'), + (38777, 444, 1736, 'attending', '2022-10-25 03:07:42', '2025-12-17 19:47:15', 'ndlboPlA', '5638456'), + (38778, 444, 1737, 'attending', '2022-11-07 03:23:26', '2025-12-17 19:47:16', 'ndlboPlA', '5638457'), + (38779, 444, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndlboPlA', '5638765'), + (38780, 444, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndlboPlA', '5640097'), + (38781, 444, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'ndlboPlA', '5640843'), + (38782, 444, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndlboPlA', '5641521'), + (38783, 444, 1744, 'not_attending', '2022-11-07 03:23:24', '2025-12-17 19:47:16', 'ndlboPlA', '5642818'), + (38784, 444, 1747, 'not_attending', '2022-10-15 21:17:29', '2025-12-17 19:47:14', 'ndlboPlA', '5648009'), + (38785, 444, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndlboPlA', '5652395'), + (38786, 444, 1757, 'not_attending', '2022-11-01 04:20:31', '2025-12-17 19:47:15', 'ndlboPlA', '5668974'), + (38787, 444, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ndlboPlA', '5670445'), + (38788, 444, 1764, 'attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndlboPlA', '5671637'), + (38789, 444, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndlboPlA', '5672329'), + (38790, 444, 1766, 'attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndlboPlA', '5674057'), + (38791, 444, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndlboPlA', '5674060'), + (38792, 444, 1768, 'not_attending', '2022-11-07 03:23:11', '2025-12-17 19:47:16', 'ndlboPlA', '5674062'), + (38793, 444, 1772, 'attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndlboPlA', '5677461'), + (38794, 444, 1774, 'not_attending', '2022-11-01 04:20:25', '2025-12-17 19:47:15', 'ndlboPlA', '5677843'), + (38795, 444, 1776, 'attending', '2022-11-02 01:28:01', '2025-12-17 19:47:15', 'ndlboPlA', '5691067'), + (38796, 444, 1777, 'attending', '2022-11-02 01:27:53', '2025-12-17 19:47:15', 'ndlboPlA', '5693021'), + (38797, 444, 1781, 'attending', '2022-11-02 01:44:26', '2025-12-17 19:47:15', 'ndlboPlA', '5696178'), + (38798, 444, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndlboPlA', '5698046'), + (38799, 444, 1784, 'not_attending', '2022-11-07 03:23:22', '2025-12-17 19:47:15', 'ndlboPlA', '5699760'), + (38800, 444, 1785, 'not_attending', '2022-11-07 03:23:18', '2025-12-17 19:47:15', 'ndlboPlA', '5702414'), + (38801, 444, 1791, 'attending', '2022-11-07 18:48:03', '2025-12-17 19:47:15', 'ndlboPlA', '5728511'), + (38802, 444, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndlboPlA', '5741601'), + (38803, 444, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndlboPlA', '5763458'), + (38804, 444, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndlboPlA', '5774172'), + (38805, 444, 1827, 'attending', '2022-11-29 17:49:59', '2025-12-17 19:47:16', 'ndlboPlA', '5776786'), + (38806, 444, 1831, 'not_attending', '2022-12-05 19:04:34', '2025-12-17 19:47:16', 'ndlboPlA', '5813239'), + (38807, 444, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'ndlboPlA', '5818247'), + (38808, 444, 1833, 'attending', '2022-12-05 19:04:17', '2025-12-17 19:47:16', 'ndlboPlA', '5819465'), + (38809, 444, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndlboPlA', '5819471'), + (38810, 444, 1837, 'attending', '2022-12-05 19:04:22', '2025-12-17 19:47:16', 'ndlboPlA', '5820146'), + (38811, 444, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndlboPlA', '5827739'), + (38812, 444, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndlboPlA', '5844306'), + (38813, 444, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndlboPlA', '5850159'), + (38814, 444, 1848, 'attending', '2022-12-30 17:23:40', '2025-12-17 19:47:05', 'ndlboPlA', '5852466'), + (38815, 444, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndlboPlA', '5858999'), + (38816, 444, 1852, 'attending', '2023-01-10 19:11:37', '2025-12-17 19:47:05', 'ndlboPlA', '5869898'), + (38817, 444, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndlboPlA', '5871984'), + (38818, 444, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndlboPlA', '5876354'), + (38819, 444, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndlboPlA', '5880939'), + (38820, 444, 1867, 'attending', '2023-01-27 05:19:56', '2025-12-17 19:47:07', 'ndlboPlA', '5880940'), + (38821, 444, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndlboPlA', '5880942'), + (38822, 444, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndlboPlA', '5880943'), + (38823, 444, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndlboPlA', '5887890'), + (38824, 444, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndlboPlA', '5888598'), + (38825, 444, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndlboPlA', '5893260'), + (38826, 444, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndlboPlA', '5899826'), + (38827, 444, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndlboPlA', '5900199'), + (38828, 444, 1890, 'attending', '2023-02-21 17:27:10', '2025-12-17 19:47:08', 'ndlboPlA', '5900200'), + (38829, 444, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndlboPlA', '5900202'), + (38830, 444, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndlboPlA', '5900203'), + (38831, 444, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndlboPlA', '5901108'), + (38832, 444, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndlboPlA', '5901126'), + (38833, 444, 1898, 'not_attending', '2023-02-01 19:31:20', '2025-12-17 19:47:06', 'ndlboPlA', '5901263'), + (38834, 444, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndlboPlA', '5909655'), + (38835, 444, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndlboPlA', '5910522'), + (38836, 444, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndlboPlA', '5910526'), + (38837, 444, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndlboPlA', '5910528'), + (38838, 444, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ndlboPlA', '5916219'), + (38839, 444, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndlboPlA', '5936234'), + (38840, 444, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndlboPlA', '5958351'), + (38841, 444, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndlboPlA', '5959751'), + (38842, 444, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndlboPlA', '5959755'), + (38843, 444, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndlboPlA', '5960055'), + (38844, 444, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndlboPlA', '5961684'), + (38845, 444, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndlboPlA', '5962132'), + (38846, 444, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ndlboPlA', '5962133'), + (38847, 444, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndlboPlA', '5962134'), + (38848, 444, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndlboPlA', '5962317'), + (38849, 444, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndlboPlA', '5962318'), + (38850, 444, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndlboPlA', '5965933'), + (38851, 444, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndlboPlA', '5967014'), + (38852, 444, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndlboPlA', '5972815'), + (38853, 444, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndlboPlA', '5974016'), + (38854, 444, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndlboPlA', '5981515'), + (38855, 444, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndlboPlA', '5993516'), + (38856, 444, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndlboPlA', '5998939'), + (38857, 444, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndlboPlA', '6028191'), + (38858, 444, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndlboPlA', '6040066'), + (38859, 444, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndlboPlA', '6042717'), + (38860, 444, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndlboPlA', '6044838'), + (38861, 444, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndlboPlA', '6044839'), + (38862, 444, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ndlboPlA', '6045684'), + (38863, 444, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndlboPlA', '6050104'), + (38864, 444, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndlboPlA', '6053195'), + (38865, 444, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndlboPlA', '6053198'), + (38866, 444, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndlboPlA', '6056085'), + (38867, 444, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndlboPlA', '6056916'), + (38868, 444, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndlboPlA', '6059290'), + (38869, 444, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndlboPlA', '6060328'), + (38870, 444, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndlboPlA', '6061037'), + (38871, 444, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndlboPlA', '6061039'), + (38872, 444, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndlboPlA', '6067245'), + (38873, 444, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndlboPlA', '6068094'), + (38874, 444, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndlboPlA', '6068252'), + (38875, 444, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndlboPlA', '6068253'), + (38876, 444, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndlboPlA', '6068254'), + (38877, 444, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndlboPlA', '6068280'), + (38878, 444, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndlboPlA', '6069093'), + (38879, 444, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndlboPlA', '6072528'), + (38880, 444, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndlboPlA', '6079840'), + (38881, 444, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndlboPlA', '6083398'), + (38882, 444, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndlboPlA', '6093504'), + (38883, 444, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndlboPlA', '6097414'), + (38884, 444, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndlboPlA', '6097442'), + (38885, 444, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndlboPlA', '6097684'), + (38886, 444, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndlboPlA', '6098762'), + (38887, 444, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ndlboPlA', '6101361'), + (38888, 444, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndlboPlA', '6101362'), + (38889, 444, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'ndlboPlA', '6103752'), + (38890, 444, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndlboPlA', '6107314'), + (38891, 444, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndlboPlA', '6120034'), + (38892, 444, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ndlboPlA', '6136733'), + (38893, 444, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndlboPlA', '6137989'), + (38894, 444, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndlboPlA', '6150864'), + (38895, 444, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndlboPlA', '6155491'), + (38896, 444, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndlboPlA', '6164417'), + (38897, 444, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndlboPlA', '6166388'), + (38898, 444, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndlboPlA', '6176439'), + (38899, 444, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndlboPlA', '6182410'), + (38900, 444, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndlboPlA', '6185812'), + (38901, 444, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndlboPlA', '6187651'), + (38902, 444, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndlboPlA', '6187963'), + (38903, 444, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndlboPlA', '6187964'), + (38904, 444, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndlboPlA', '6187966'), + (38905, 444, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndlboPlA', '6187967'), + (38906, 444, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndlboPlA', '6187969'), + (38907, 444, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndlboPlA', '6334878'), + (38908, 444, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndlboPlA', '6337236'), + (38909, 444, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndlboPlA', '6337970'), + (38910, 444, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndlboPlA', '6338308'), + (38911, 444, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'ndlboPlA', '6340845'), + (38912, 444, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndlboPlA', '6341710'), + (38913, 444, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndlboPlA', '6342044'), + (38914, 444, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndlboPlA', '6342298'), + (38915, 444, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndlboPlA', '6343294'), + (38916, 444, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndlboPlA', '6347034'), + (38917, 444, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndlboPlA', '6347056'), + (38918, 444, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndlboPlA', '6353830'), + (38919, 444, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndlboPlA', '6353831'), + (38920, 444, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndlboPlA', '6357867'), + (38921, 444, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndlboPlA', '6358652'), + (38922, 444, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndlboPlA', '6361709'), + (38923, 444, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndlboPlA', '6361710'), + (38924, 444, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndlboPlA', '6361711'), + (38925, 444, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndlboPlA', '6361712'), + (38926, 444, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndlboPlA', '6361713'), + (38927, 444, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndlboPlA', '6382573'), + (38928, 444, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'ndlboPlA', '6388604'), + (38929, 444, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndlboPlA', '6394629'), + (38930, 444, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndlboPlA', '6394631'), + (38931, 444, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndlboPlA', '6440863'), + (38932, 444, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndlboPlA', '6445440'), + (38933, 444, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndlboPlA', '6453951'), + (38934, 444, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndlboPlA', '6461696'), + (38935, 444, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndlboPlA', '6462129'), + (38936, 444, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndlboPlA', '6463218'), + (38937, 444, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ndlboPlA', '6472181'), + (38938, 444, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndlboPlA', '6482693'), + (38939, 444, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'ndlboPlA', '6484200'), + (38940, 444, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndlboPlA', '6484680'), + (38941, 444, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndlboPlA', '6507741'), + (38942, 444, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndlboPlA', '6514659'), + (38943, 444, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndlboPlA', '6514660'), + (38944, 444, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndlboPlA', '6519103'), + (38945, 444, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndlboPlA', '6535681'), + (38946, 444, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndlboPlA', '6584747'), + (38947, 444, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndlboPlA', '6587097'), + (38948, 444, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndlboPlA', '6609022'), + (38949, 444, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndlboPlA', '6632757'), + (38950, 444, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndlboPlA', '6644187'), + (38951, 444, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndlboPlA', '6648951'), + (38952, 444, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndlboPlA', '6648952'), + (38953, 444, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndlboPlA', '6655401'), + (38954, 444, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndlboPlA', '6661585'), + (38955, 444, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndlboPlA', '6661588'), + (38956, 444, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndlboPlA', '6661589'), + (38957, 444, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndlboPlA', '6699906'), + (38958, 444, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndlboPlA', '6701109'), + (38959, 444, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndlboPlA', '6705219'), + (38960, 444, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndlboPlA', '6710153'), + (38961, 444, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndlboPlA', '6711552'), + (38962, 444, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'ndlboPlA', '6711553'), + (38963, 445, 344, 'attending', '2020-11-02 00:46:01', '2025-12-17 19:47:53', 'ydw70y5d', '3206906'), + (38964, 445, 392, 'attending', '2020-10-29 23:51:25', '2025-12-17 19:47:53', 'ydw70y5d', '3236447'), + (38965, 445, 422, 'maybe', '2020-10-29 22:54:29', '2025-12-17 19:47:53', 'ydw70y5d', '3245295'), + (38966, 445, 423, 'maybe', '2020-11-03 23:17:30', '2025-12-17 19:47:53', 'ydw70y5d', '3245296'), + (38967, 445, 429, 'maybe', '2020-12-05 21:22:56', '2025-12-17 19:47:54', 'ydw70y5d', '3250523'), + (38968, 445, 438, 'attending', '2020-10-30 02:28:06', '2025-12-17 19:47:53', 'ydw70y5d', '3256163'), + (38969, 445, 440, 'not_attending', '2020-11-03 23:17:43', '2025-12-17 19:47:53', 'ydw70y5d', '3256168'), + (38970, 445, 441, 'attending', '2020-11-12 03:21:25', '2025-12-17 19:47:54', 'ydw70y5d', '3256169'), + (38971, 445, 444, 'attending', '2020-10-30 14:59:51', '2025-12-17 19:47:53', 'ydw70y5d', '3263745'), + (38972, 445, 445, 'attending', '2020-11-13 00:30:23', '2025-12-17 19:47:54', 'ydw70y5d', '3266138'), + (38973, 445, 448, 'not_attending', '2020-10-31 00:33:46', '2025-12-17 19:47:53', 'ydw70y5d', '3271831'), + (38974, 445, 452, 'maybe', '2020-11-29 21:43:02', '2025-12-17 19:47:54', 'ydw70y5d', '3272981'), + (38975, 445, 456, 'attending', '2020-11-15 23:22:41', '2025-12-17 19:47:54', 'ydw70y5d', '3276428'), + (38976, 445, 459, 'attending', '2020-11-15 23:22:53', '2025-12-17 19:47:54', 'ydw70y5d', '3281467'), + (38977, 445, 460, 'maybe', '2020-11-19 22:01:04', '2025-12-17 19:47:54', 'ydw70y5d', '3281468'), + (38978, 445, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:54', 'ydw70y5d', '3281470'), + (38979, 445, 466, 'attending', '2020-11-23 23:57:10', '2025-12-17 19:47:54', 'ydw70y5d', '3281829'), + (38980, 445, 467, 'attending', '2020-11-17 21:37:19', '2025-12-17 19:47:54', 'ydw70y5d', '3282756'), + (38981, 445, 468, 'attending', '2020-11-19 22:02:27', '2025-12-17 19:47:54', 'ydw70y5d', '3285413'), + (38982, 445, 469, 'attending', '2020-11-26 22:58:00', '2025-12-17 19:47:54', 'ydw70y5d', '3285414'), + (38983, 445, 475, 'maybe', '2020-11-24 19:45:02', '2025-12-17 19:47:54', 'ydw70y5d', '3286760'), + (38984, 445, 476, 'attending', '2020-11-18 04:33:10', '2025-12-17 19:47:54', 'ydw70y5d', '3286982'), + (38985, 445, 479, 'not_attending', '2020-11-19 22:02:12', '2025-12-17 19:47:54', 'ydw70y5d', '3295306'), + (38986, 445, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ydw70y5d', '3297764'), + (38987, 445, 482, 'not_attending', '2020-11-24 19:44:46', '2025-12-17 19:47:54', 'ydw70y5d', '3297769'), + (38988, 445, 486, 'attending', '2020-11-24 23:47:58', '2025-12-17 19:47:54', 'ydw70y5d', '3300281'), + (38989, 445, 487, 'not_attending', '2020-11-28 17:23:51', '2025-12-17 19:47:54', 'ydw70y5d', '3311122'), + (38990, 445, 488, 'maybe', '2020-11-30 18:33:40', '2025-12-17 19:47:54', 'ydw70y5d', '3312757'), + (38991, 445, 489, 'maybe', '2020-11-27 20:34:50', '2025-12-17 19:47:54', 'ydw70y5d', '3313022'), + (38992, 445, 493, 'attending', '2020-11-30 00:40:18', '2025-12-17 19:47:54', 'ydw70y5d', '3313856'), + (38993, 445, 494, 'attending', '2020-11-29 19:32:52', '2025-12-17 19:47:54', 'ydw70y5d', '3313866'), + (38994, 445, 496, 'maybe', '2020-12-07 17:29:54', '2025-12-17 19:47:54', 'ydw70y5d', '3314269'), + (38995, 445, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ydw70y5d', '3314909'), + (38996, 445, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ydw70y5d', '3314964'), + (38997, 445, 501, 'maybe', '2020-12-05 21:23:14', '2025-12-17 19:47:54', 'ydw70y5d', '3317834'), + (38998, 445, 502, 'not_attending', '2020-12-12 21:22:20', '2025-12-17 19:47:55', 'ydw70y5d', '3323365'), + (38999, 445, 513, 'attending', '2020-12-19 00:21:10', '2025-12-17 19:47:55', 'ydw70y5d', '3329383'), + (39000, 445, 526, 'not_attending', '2021-01-02 22:24:03', '2025-12-17 19:47:48', 'ydw70y5d', '3351539'), + (39001, 445, 536, 'not_attending', '2021-01-09 23:56:02', '2025-12-17 19:47:48', 'ydw70y5d', '3386848'), + (39002, 445, 540, 'attending', '2021-01-07 06:58:15', '2025-12-17 19:47:48', 'ydw70y5d', '3389527'), + (39003, 445, 543, 'attending', '2021-01-15 23:37:25', '2025-12-17 19:47:48', 'ydw70y5d', '3396499'), + (39004, 445, 548, 'attending', '2021-01-16 20:53:36', '2025-12-17 19:47:48', 'ydw70y5d', '3403650'), + (39005, 445, 549, 'maybe', '2021-01-18 18:27:43', '2025-12-17 19:47:49', 'ydw70y5d', '3406988'), + (39006, 445, 550, 'maybe', '2021-01-17 20:58:32', '2025-12-17 19:47:48', 'ydw70y5d', '3407018'), + (39007, 445, 555, 'attending', '2021-01-23 19:50:18', '2025-12-17 19:47:49', 'ydw70y5d', '3416576'), + (39008, 445, 556, 'attending', '2021-01-26 23:27:40', '2025-12-17 19:47:49', 'ydw70y5d', '3417170'), + (39009, 445, 557, 'attending', '2021-01-21 00:43:23', '2025-12-17 19:47:49', 'ydw70y5d', '3418748'), + (39010, 445, 558, 'attending', '2021-01-22 21:56:02', '2025-12-17 19:47:49', 'ydw70y5d', '3418925'), + (39011, 445, 559, 'not_attending', '2021-01-27 17:11:42', '2025-12-17 19:47:49', 'ydw70y5d', '3421439'), + (39012, 445, 560, 'not_attending', '2021-01-21 17:45:46', '2025-12-17 19:47:49', 'ydw70y5d', '3421715'), + (39013, 445, 567, 'attending', '2021-01-27 00:14:54', '2025-12-17 19:47:50', 'ydw70y5d', '3428895'), + (39014, 445, 568, 'attending', '2021-01-27 00:15:02', '2025-12-17 19:47:50', 'ydw70y5d', '3430267'), + (39015, 445, 569, 'attending', '2021-01-27 22:11:15', '2025-12-17 19:47:49', 'ydw70y5d', '3432673'), + (39016, 445, 570, 'attending', '2021-02-06 00:49:15', '2025-12-17 19:47:50', 'ydw70y5d', '3435538'), + (39017, 445, 571, 'maybe', '2021-02-09 21:23:00', '2025-12-17 19:47:50', 'ydw70y5d', '3435539'), + (39018, 445, 576, 'attending', '2021-02-02 21:26:26', '2025-12-17 19:47:50', 'ydw70y5d', '3438748'), + (39019, 445, 577, 'maybe', '2021-01-29 19:16:32', '2025-12-17 19:47:49', 'ydw70y5d', '3439167'), + (39020, 445, 579, 'attending', '2021-02-05 05:04:29', '2025-12-17 19:47:50', 'ydw70y5d', '3440978'), + (39021, 445, 598, 'maybe', '2021-02-09 21:21:56', '2025-12-17 19:47:50', 'ydw70y5d', '3468003'), + (39022, 445, 599, 'maybe', '2021-02-16 20:40:27', '2025-12-17 19:47:50', 'ydw70y5d', '3468117'), + (39023, 445, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'ydw70y5d', '3468125'), + (39024, 445, 602, 'attending', '2021-02-13 02:07:34', '2025-12-17 19:47:50', 'ydw70y5d', '3470303'), + (39025, 445, 603, 'attending', '2021-02-19 13:13:21', '2025-12-17 19:47:50', 'ydw70y5d', '3470304'), + (39026, 445, 604, 'attending', '2021-02-27 13:57:49', '2025-12-17 19:47:50', 'ydw70y5d', '3470305'), + (39027, 445, 605, 'attending', '2021-02-14 17:06:24', '2025-12-17 19:47:50', 'ydw70y5d', '3470991'), + (39028, 445, 606, 'maybe', '2021-02-11 17:11:41', '2025-12-17 19:47:50', 'ydw70y5d', '3470998'), + (39029, 445, 607, 'maybe', '2021-02-19 13:13:27', '2025-12-17 19:47:50', 'ydw70y5d', '3471882'), + (39030, 445, 621, 'attending', '2021-03-05 00:53:03', '2025-12-17 19:47:51', 'ydw70y5d', '3517815'), + (39031, 445, 622, 'not_attending', '2021-03-13 22:39:53', '2025-12-17 19:47:51', 'ydw70y5d', '3517816'), + (39032, 445, 623, 'attending', '2021-02-27 13:57:40', '2025-12-17 19:47:50', 'ydw70y5d', '3523941'), + (39033, 445, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ydw70y5d', '3533850'), + (39034, 445, 636, 'not_attending', '2021-04-16 02:43:33', '2025-12-17 19:47:45', 'ydw70y5d', '3534720'), + (39035, 445, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ydw70y5d', '3536632'), + (39036, 445, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ydw70y5d', '3536656'), + (39037, 445, 641, 'not_attending', '2021-03-31 22:41:19', '2025-12-17 19:47:44', 'ydw70y5d', '3539916'), + (39038, 445, 642, 'not_attending', '2021-04-09 14:34:39', '2025-12-17 19:47:44', 'ydw70y5d', '3539917'), + (39039, 445, 643, 'not_attending', '2021-04-16 02:43:41', '2025-12-17 19:47:45', 'ydw70y5d', '3539918'), + (39040, 445, 644, 'not_attending', '2021-04-16 02:44:08', '2025-12-17 19:47:46', 'ydw70y5d', '3539919'), + (39041, 445, 645, 'not_attending', '2021-05-04 00:19:40', '2025-12-17 19:47:46', 'ydw70y5d', '3539920'), + (39042, 445, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ydw70y5d', '3539921'), + (39043, 445, 647, 'not_attending', '2021-05-22 21:17:36', '2025-12-17 19:47:47', 'ydw70y5d', '3539922'), + (39044, 445, 648, 'not_attending', '2021-05-22 21:18:11', '2025-12-17 19:47:47', 'ydw70y5d', '3539923'), + (39045, 445, 649, 'not_attending', '2021-03-20 15:20:09', '2025-12-17 19:47:51', 'ydw70y5d', '3539927'), + (39046, 445, 650, 'not_attending', '2021-03-27 17:05:21', '2025-12-17 19:47:44', 'ydw70y5d', '3539928'), + (39047, 445, 684, 'not_attending', '2021-03-12 23:15:39', '2025-12-17 19:47:51', 'ydw70y5d', '3549257'), + (39048, 445, 687, 'not_attending', '2021-03-11 22:03:15', '2025-12-17 19:47:51', 'ydw70y5d', '3553405'), + (39049, 445, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ydw70y5d', '3582734'), + (39050, 445, 707, 'not_attending', '2021-04-22 19:03:26', '2025-12-17 19:47:46', 'ydw70y5d', '3583262'), + (39051, 445, 715, 'not_attending', '2021-03-31 22:40:52', '2025-12-17 19:47:44', 'ydw70y5d', '3604146'), + (39052, 445, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydw70y5d', '3619523'), + (39053, 445, 722, 'not_attending', '2021-03-31 22:41:10', '2025-12-17 19:47:44', 'ydw70y5d', '3646347'), + (39054, 445, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydw70y5d', '3661369'), + (39055, 445, 725, 'not_attending', '2021-05-22 21:17:44', '2025-12-17 19:47:47', 'ydw70y5d', '3661372'), + (39056, 445, 729, 'not_attending', '2021-04-22 19:03:46', '2025-12-17 19:47:46', 'ydw70y5d', '3668075'), + (39057, 445, 730, 'not_attending', '2021-05-04 00:19:21', '2025-12-17 19:47:46', 'ydw70y5d', '3668076'), + (39058, 445, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydw70y5d', '3674262'), + (39059, 445, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydw70y5d', '3677402'), + (39060, 445, 736, 'not_attending', '2021-04-09 14:34:33', '2025-12-17 19:47:44', 'ydw70y5d', '3677701'), + (39061, 445, 739, 'not_attending', '2021-05-04 00:19:34', '2025-12-17 19:47:46', 'ydw70y5d', '3680616'), + (39062, 445, 740, 'not_attending', '2021-04-22 19:03:53', '2025-12-17 19:47:46', 'ydw70y5d', '3680617'), + (39063, 445, 745, 'not_attending', '2021-06-26 22:39:47', '2025-12-17 19:47:38', 'ydw70y5d', '3680625'), + (39064, 445, 746, 'not_attending', '2021-07-03 20:23:58', '2025-12-17 19:47:39', 'ydw70y5d', '3680626'), + (39065, 445, 764, 'not_attending', '2021-04-22 19:03:14', '2025-12-17 19:47:45', 'ydw70y5d', '3720507'), + (39066, 445, 765, 'not_attending', '2021-04-22 19:03:20', '2025-12-17 19:47:45', 'ydw70y5d', '3720508'), + (39067, 445, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydw70y5d', '3730212'), + (39068, 445, 781, 'not_attending', '2021-05-04 00:19:26', '2025-12-17 19:47:46', 'ydw70y5d', '3760130'), + (39069, 445, 782, 'not_attending', '2021-05-04 00:19:15', '2025-12-17 19:47:46', 'ydw70y5d', '3761843'), + (39070, 445, 784, 'not_attending', '2021-05-04 00:19:30', '2025-12-17 19:47:46', 'ydw70y5d', '3768775'), + (39071, 445, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydw70y5d', '3793156'), + (39072, 445, 794, 'not_attending', '2021-05-22 21:17:58', '2025-12-17 19:47:47', 'ydw70y5d', '3793538'), + (39073, 445, 797, 'not_attending', '2021-05-22 21:17:53', '2025-12-17 19:47:47', 'ydw70y5d', '3796195'), + (39074, 445, 815, 'not_attending', '2021-05-22 21:18:06', '2025-12-17 19:47:47', 'ydw70y5d', '3818136'), + (39075, 445, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ydw70y5d', '3974109'), + (39076, 445, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydw70y5d', '3975311'), + (39077, 445, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydw70y5d', '3975312'), + (39078, 445, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydw70y5d', '3994992'), + (39079, 445, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ydw70y5d', '4014338'), + (39080, 445, 845, 'not_attending', '2021-06-26 22:39:32', '2025-12-17 19:47:38', 'ydw70y5d', '4015717'), + (39081, 445, 846, 'not_attending', '2021-07-03 20:23:48', '2025-12-17 19:47:39', 'ydw70y5d', '4015718'), + (39082, 445, 848, 'not_attending', '2021-07-17 19:52:06', '2025-12-17 19:47:40', 'ydw70y5d', '4015720'), + (39083, 445, 850, 'not_attending', '2021-08-21 17:28:48', '2025-12-17 19:47:42', 'ydw70y5d', '4015722'), + (39084, 445, 851, 'not_attending', '2021-08-14 19:44:37', '2025-12-17 19:47:42', 'ydw70y5d', '4015723'), + (39085, 445, 854, 'not_attending', '2021-09-03 20:31:01', '2025-12-17 19:47:43', 'ydw70y5d', '4015726'), + (39086, 445, 855, 'not_attending', '2021-07-31 13:57:59', '2025-12-17 19:47:41', 'ydw70y5d', '4015729'), + (39087, 445, 860, 'not_attending', '2021-07-17 19:51:53', '2025-12-17 19:47:40', 'ydw70y5d', '4015994'), + (39088, 445, 861, 'not_attending', '2021-08-14 19:44:15', '2025-12-17 19:47:42', 'ydw70y5d', '4015995'), + (39089, 445, 863, 'not_attending', '2021-10-08 21:28:22', '2025-12-17 19:47:35', 'ydw70y5d', '4015997'), + (39090, 445, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ydw70y5d', '4021848'), + (39091, 445, 869, 'not_attending', '2021-06-26 22:39:28', '2025-12-17 19:47:38', 'ydw70y5d', '4136744'), + (39092, 445, 870, 'not_attending', '2021-06-26 22:39:52', '2025-12-17 19:47:39', 'ydw70y5d', '4136937'), + (39093, 445, 871, 'not_attending', '2021-07-03 20:23:31', '2025-12-17 19:47:39', 'ydw70y5d', '4136938'), + (39094, 445, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydw70y5d', '4136947'), + (39095, 445, 875, 'not_attending', '2021-06-26 22:39:41', '2025-12-17 19:47:38', 'ydw70y5d', '4139816'), + (39096, 445, 879, 'not_attending', '2021-06-26 22:39:20', '2025-12-17 19:47:38', 'ydw70y5d', '4147806'), + (39097, 445, 884, 'not_attending', '2021-08-14 19:44:07', '2025-12-17 19:47:42', 'ydw70y5d', '4210314'), + (39098, 445, 885, 'not_attending', '2021-06-26 22:39:13', '2025-12-17 19:47:38', 'ydw70y5d', '4222370'), + (39099, 445, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydw70y5d', '4225444'), + (39100, 445, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydw70y5d', '4239259'), + (39101, 445, 900, 'not_attending', '2021-07-17 19:52:17', '2025-12-17 19:47:40', 'ydw70y5d', '4240316'), + (39102, 445, 901, 'not_attending', '2021-07-31 13:57:36', '2025-12-17 19:47:40', 'ydw70y5d', '4240317'), + (39103, 445, 902, 'not_attending', '2021-07-31 13:58:14', '2025-12-17 19:47:41', 'ydw70y5d', '4240318'), + (39104, 445, 903, 'not_attending', '2021-08-14 19:43:58', '2025-12-17 19:47:42', 'ydw70y5d', '4240320'), + (39105, 445, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ydw70y5d', '4250163'), + (39106, 445, 915, 'not_attending', '2021-07-17 19:51:46', '2025-12-17 19:47:39', 'ydw70y5d', '4273770'), + (39107, 445, 919, 'not_attending', '2021-07-17 19:51:36', '2025-12-17 19:47:39', 'ydw70y5d', '4275957'), + (39108, 445, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydw70y5d', '4277819'), + (39109, 445, 926, 'not_attending', '2021-08-14 19:44:44', '2025-12-17 19:47:42', 'ydw70y5d', '4297211'), + (39110, 445, 929, 'not_attending', '2021-07-31 13:58:07', '2025-12-17 19:47:41', 'ydw70y5d', '4297223'), + (39111, 445, 930, 'not_attending', '2021-07-31 13:57:44', '2025-12-17 19:47:41', 'ydw70y5d', '4300787'), + (39112, 445, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydw70y5d', '4301723'), + (39113, 445, 934, 'not_attending', '2021-07-31 13:57:56', '2025-12-17 19:47:40', 'ydw70y5d', '4302093'), + (39114, 445, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydw70y5d', '4304151'), + (39115, 445, 946, 'not_attending', '2021-07-31 13:57:49', '2025-12-17 19:47:40', 'ydw70y5d', '4314835'), + (39116, 445, 952, 'not_attending', '2021-07-31 13:58:04', '2025-12-17 19:47:41', 'ydw70y5d', '4318286'), + (39117, 445, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'ydw70y5d', '4345519'), + (39118, 445, 963, 'not_attending', '2021-08-14 19:44:26', '2025-12-17 19:47:42', 'ydw70y5d', '4353159'), + (39119, 445, 964, 'not_attending', '2021-08-14 19:45:17', '2025-12-17 19:47:42', 'ydw70y5d', '4353160'), + (39120, 445, 967, 'not_attending', '2021-08-14 19:44:51', '2025-12-17 19:47:42', 'ydw70y5d', '4356164'), + (39121, 445, 971, 'not_attending', '2021-09-03 20:31:04', '2025-12-17 19:47:43', 'ydw70y5d', '4356801'), + (39122, 445, 972, 'not_attending', '2021-08-14 19:45:01', '2025-12-17 19:47:42', 'ydw70y5d', '4358025'), + (39123, 445, 973, 'not_attending', '2021-08-21 17:28:22', '2025-12-17 19:47:42', 'ydw70y5d', '4366186'), + (39124, 445, 974, 'not_attending', '2021-08-21 17:28:58', '2025-12-17 19:47:42', 'ydw70y5d', '4366187'), + (39125, 445, 985, 'not_attending', '2021-08-21 17:28:31', '2025-12-17 19:47:42', 'ydw70y5d', '4391748'), + (39126, 445, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ydw70y5d', '4402823'), + (39127, 445, 989, 'not_attending', '2021-09-03 20:31:16', '2025-12-17 19:47:43', 'ydw70y5d', '4414282'), + (39128, 445, 990, 'not_attending', '2021-09-03 20:30:41', '2025-12-17 19:47:43', 'ydw70y5d', '4420735'), + (39129, 445, 991, 'not_attending', '2021-09-03 20:31:23', '2025-12-17 19:47:43', 'ydw70y5d', '4420738'), + (39130, 445, 992, 'not_attending', '2021-09-17 20:23:31', '2025-12-17 19:47:34', 'ydw70y5d', '4420739'), + (39131, 445, 993, 'not_attending', '2021-09-17 20:24:12', '2025-12-17 19:47:34', 'ydw70y5d', '4420741'), + (39132, 445, 995, 'not_attending', '2021-10-08 21:27:54', '2025-12-17 19:47:34', 'ydw70y5d', '4420744'), + (39133, 445, 996, 'not_attending', '2021-10-08 21:28:27', '2025-12-17 19:47:35', 'ydw70y5d', '4420747'), + (39134, 445, 997, 'not_attending', '2021-10-22 23:46:34', '2025-12-17 19:47:35', 'ydw70y5d', '4420748'), + (39135, 445, 998, 'not_attending', '2021-10-22 23:46:47', '2025-12-17 19:47:36', 'ydw70y5d', '4420749'), + (39136, 445, 1001, 'not_attending', '2021-09-03 20:30:25', '2025-12-17 19:47:43', 'ydw70y5d', '4424687'), + (39137, 445, 1013, 'not_attending', '2021-09-03 20:30:56', '2025-12-17 19:47:43', 'ydw70y5d', '4438817'), + (39138, 445, 1014, 'not_attending', '2021-09-03 20:30:48', '2025-12-17 19:47:43', 'ydw70y5d', '4439233'), + (39139, 445, 1016, 'not_attending', '2021-09-03 20:31:10', '2025-12-17 19:47:43', 'ydw70y5d', '4441271'), + (39140, 445, 1017, 'not_attending', '2021-09-03 20:30:51', '2025-12-17 19:47:43', 'ydw70y5d', '4441822'), + (39141, 445, 1021, 'not_attending', '2021-09-17 20:23:48', '2025-12-17 19:47:34', 'ydw70y5d', '4451803'), + (39142, 445, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ydw70y5d', '4461883'), + (39143, 445, 1029, 'not_attending', '2021-09-17 20:23:17', '2025-12-17 19:47:43', 'ydw70y5d', '4473063'), + (39144, 445, 1030, 'not_attending', '2021-09-17 20:23:42', '2025-12-17 19:47:34', 'ydw70y5d', '4473064'), + (39145, 445, 1031, 'not_attending', '2021-09-17 20:24:00', '2025-12-17 19:47:34', 'ydw70y5d', '4473789'), + (39146, 445, 1034, 'not_attending', '2021-09-17 20:23:24', '2025-12-17 19:47:43', 'ydw70y5d', '4486265'), + (39147, 445, 1063, 'not_attending', '2021-09-24 22:09:21', '2025-12-17 19:47:34', 'ydw70y5d', '4496630'), + (39148, 445, 1066, 'not_attending', '2021-09-24 22:09:16', '2025-12-17 19:47:34', 'ydw70y5d', '4506039'), + (39149, 445, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ydw70y5d', '4508342'), + (39150, 445, 1077, 'not_attending', '2021-10-08 21:28:14', '2025-12-17 19:47:34', 'ydw70y5d', '4540903'), + (39151, 445, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ydw70y5d', '4568602'), + (39152, 445, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ydw70y5d', '4572153'), + (39153, 445, 1093, 'not_attending', '2021-10-22 23:46:23', '2025-12-17 19:47:35', 'ydw70y5d', '4585962'), + (39154, 445, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'ydw70y5d', '4596356'), + (39155, 445, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ydw70y5d', '4598860'), + (39156, 445, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ydw70y5d', '4598861'), + (39157, 445, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ydw70y5d', '4602797'), + (39158, 445, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ydw70y5d', '4637896'), + (39159, 445, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ydw70y5d', '4642994'), + (39160, 445, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'ydw70y5d', '4642995'), + (39161, 445, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ydw70y5d', '4642996'), + (39162, 445, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ydw70y5d', '4642997'), + (39163, 445, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ydw70y5d', '4645687'), + (39164, 445, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ydw70y5d', '4645698'), + (39165, 445, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ydw70y5d', '4645704'), + (39166, 445, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ydw70y5d', '4645705'), + (39167, 445, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ydw70y5d', '4668385'), + (39168, 445, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ydw70y5d', '4694407'), + (39169, 445, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ydw70y5d', '4736497'), + (39170, 445, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ydw70y5d', '4736499'), + (39171, 445, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ydw70y5d', '4736500'), + (39172, 445, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ydw70y5d', '4736503'), + (39173, 445, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ydw70y5d', '4736504'), + (39174, 445, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ydw70y5d', '4746789'), + (39175, 445, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'ydw70y5d', '4753929'), + (39176, 445, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ydw70y5d', '5038850'), + (39177, 445, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ydw70y5d', '5045826'), + (39178, 445, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ydw70y5d', '5132533'), + (39179, 445, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ydw70y5d', '5186582'), + (39180, 445, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ydw70y5d', '5186583'), + (39181, 445, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ydw70y5d', '5186585'), + (39182, 445, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ydw70y5d', '5190437'), + (39183, 445, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ydw70y5d', '5215989'), + (39184, 445, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydw70y5d', '6045684'), + (39185, 446, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVkr9Epm', '5630960'), + (39186, 446, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVkr9Epm', '5630961'), + (39187, 446, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVkr9Epm', '5630962'), + (39188, 446, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVkr9Epm', '5630966'), + (39189, 446, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVkr9Epm', '5630967'), + (39190, 446, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVkr9Epm', '5630968'), + (39191, 446, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'dVkr9Epm', '5638765'), + (39192, 446, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVkr9Epm', '5640097'), + (39193, 446, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVkr9Epm', '5642818'), + (39194, 446, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVkr9Epm', '5671637'), + (39195, 446, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVkr9Epm', '5672329'), + (39196, 446, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVkr9Epm', '5674057'), + (39197, 446, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVkr9Epm', '5674060'), + (39198, 446, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVkr9Epm', '5677461'), + (39199, 446, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVkr9Epm', '5698046'), + (39200, 446, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dVkr9Epm', '5699760'), + (39201, 446, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVkr9Epm', '5741601'), + (39202, 446, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVkr9Epm', '5763458'), + (39203, 446, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVkr9Epm', '5774172'), + (39204, 446, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVkr9Epm', '6045684'), + (39205, 447, 403, 'attending', '2021-02-26 12:41:34', '2025-12-17 19:47:51', 'v4D3kbyA', '3236458'), + (39206, 447, 574, 'maybe', '2021-03-05 04:14:36', '2025-12-17 19:47:51', 'v4D3kbyA', '3435543'), + (39207, 447, 621, 'attending', '2021-03-03 11:04:21', '2025-12-17 19:47:51', 'v4D3kbyA', '3517815'), + (39208, 447, 622, 'attending', '2021-03-11 12:23:29', '2025-12-17 19:47:51', 'v4D3kbyA', '3517816'), + (39209, 447, 623, 'maybe', '2021-02-26 11:26:37', '2025-12-17 19:47:51', 'v4D3kbyA', '3523941'), + (39210, 447, 630, 'maybe', '2021-03-02 03:12:23', '2025-12-17 19:47:51', 'v4D3kbyA', '3533425'), + (39211, 447, 631, 'attending', '2021-03-03 11:04:13', '2025-12-17 19:47:51', 'v4D3kbyA', '3533850'), + (39212, 447, 638, 'maybe', '2021-03-03 11:08:14', '2025-12-17 19:47:44', 'v4D3kbyA', '3536632'), + (39213, 447, 639, 'attending', '2021-03-21 21:14:45', '2025-12-17 19:47:51', 'v4D3kbyA', '3536656'), + (39214, 447, 641, 'maybe', '2021-04-02 21:56:14', '2025-12-17 19:47:44', 'v4D3kbyA', '3539916'), + (39215, 447, 642, 'attending', '2021-04-10 22:27:28', '2025-12-17 19:47:44', 'v4D3kbyA', '3539917'), + (39216, 447, 643, 'maybe', '2021-04-17 20:51:29', '2025-12-17 19:47:45', 'v4D3kbyA', '3539918'), + (39217, 447, 644, 'maybe', '2021-04-24 19:30:17', '2025-12-17 19:47:46', 'v4D3kbyA', '3539919'), + (39218, 447, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'v4D3kbyA', '3539920'), + (39219, 447, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'v4D3kbyA', '3539921'), + (39220, 447, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'v4D3kbyA', '3539922'), + (39221, 447, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'v4D3kbyA', '3539923'), + (39222, 447, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4D3kbyA', '3539927'), + (39223, 447, 679, 'maybe', '2021-04-02 21:57:12', '2025-12-17 19:47:44', 'v4D3kbyA', '3547168'), + (39224, 447, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4D3kbyA', '3582734'), + (39225, 447, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'v4D3kbyA', '3583262'), + (39226, 447, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4D3kbyA', '3619523'), + (39227, 447, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'v4D3kbyA', '3661369'), + (39228, 447, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'v4D3kbyA', '3674262'), + (39229, 447, 735, 'maybe', '2021-04-10 19:17:06', '2025-12-17 19:47:46', 'v4D3kbyA', '3677402'), + (39230, 447, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'v4D3kbyA', '3730212'), + (39231, 447, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'v4D3kbyA', '3793156'), + (39232, 447, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'v4D3kbyA', '3974109'), + (39233, 447, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'v4D3kbyA', '3975311'), + (39234, 447, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'v4D3kbyA', '3975312'), + (39235, 447, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'v4D3kbyA', '3994992'), + (39236, 447, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4D3kbyA', '4014338'), + (39237, 447, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'v4D3kbyA', '4021848'), + (39238, 447, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4D3kbyA', '4136744'), + (39239, 447, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'v4D3kbyA', '4136937'), + (39240, 447, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'v4D3kbyA', '4136938'), + (39241, 447, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'v4D3kbyA', '4136947'), + (39242, 447, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'v4D3kbyA', '4210314'), + (39243, 447, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4D3kbyA', '4225444'), + (39244, 447, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'v4D3kbyA', '4239259'), + (39245, 447, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'v4D3kbyA', '4240316'), + (39246, 447, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'v4D3kbyA', '4240317'), + (39247, 447, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'v4D3kbyA', '4240318'), + (39248, 447, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'v4D3kbyA', '4240320'), + (39249, 447, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4D3kbyA', '4250163'), + (39250, 447, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'v4D3kbyA', '4275957'), + (39251, 447, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'v4D3kbyA', '4277819'), + (39252, 447, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'v4D3kbyA', '4301723'), + (39253, 447, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'v4D3kbyA', '4302093'), + (39254, 447, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'v4D3kbyA', '4304151'), + (39255, 447, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'v4D3kbyA', '4345519'), + (39256, 447, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'v4D3kbyA', '4356801'), + (39257, 447, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'v4D3kbyA', '4358025'), + (39258, 447, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'v4D3kbyA', '4366186'), + (39259, 447, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'v4D3kbyA', '4366187'), + (39260, 447, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'v4D3kbyA', '4402823'), + (39261, 447, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'v4D3kbyA', '4420735'), + (39262, 447, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'v4D3kbyA', '4420738'), + (39263, 447, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'v4D3kbyA', '4420739'), + (39264, 447, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'v4D3kbyA', '4420741'), + (39265, 447, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'v4D3kbyA', '4420744'), + (39266, 447, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'v4D3kbyA', '4420747'), + (39267, 447, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'v4D3kbyA', '4420748'), + (39268, 447, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'v4D3kbyA', '4420749'), + (39269, 447, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'v4D3kbyA', '4461883'), + (39270, 447, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'v4D3kbyA', '4508342'), + (39271, 447, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'v4D3kbyA', '4568602'), + (39272, 447, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'v4D3kbyA', '4572153'), + (39273, 447, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'v4D3kbyA', '4585962'), + (39274, 447, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'v4D3kbyA', '4596356'), + (39275, 447, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'v4D3kbyA', '4598860'), + (39276, 447, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'v4D3kbyA', '4598861'), + (39277, 447, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'v4D3kbyA', '4602797'), + (39278, 447, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'v4D3kbyA', '4637896'), + (39279, 447, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'v4D3kbyA', '4642994'), + (39280, 447, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'v4D3kbyA', '4642995'), + (39281, 447, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'v4D3kbyA', '4642996'), + (39282, 447, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'v4D3kbyA', '4642997'), + (39283, 447, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'v4D3kbyA', '4645687'), + (39284, 447, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'v4D3kbyA', '4645698'), + (39285, 447, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'v4D3kbyA', '4645704'), + (39286, 447, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'v4D3kbyA', '4645705'), + (39287, 447, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'v4D3kbyA', '4668385'), + (39288, 447, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'v4D3kbyA', '4694407'), + (39289, 447, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'v4D3kbyA', '4736497'), + (39290, 447, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'v4D3kbyA', '4736499'), + (39291, 447, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'v4D3kbyA', '4736500'), + (39292, 447, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'v4D3kbyA', '4736503'), + (39293, 447, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'v4D3kbyA', '4736504'), + (39294, 447, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'v4D3kbyA', '4746789'), + (39295, 447, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'v4D3kbyA', '4753929'), + (39296, 447, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4D3kbyA', '5038850'), + (39297, 447, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4D3kbyA', '5045826'), + (39298, 447, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4D3kbyA', '5132533'), + (39299, 447, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'v4D3kbyA', '5186582'), + (39300, 447, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'v4D3kbyA', '5186583'), + (39301, 447, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'v4D3kbyA', '5186585'), + (39302, 447, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4D3kbyA', '5190437'), + (39303, 447, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4D3kbyA', '5215989'), + (39304, 447, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4D3kbyA', '6045684'), + (39305, 448, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd8L1qKVd', '7074364'), + (39306, 448, 2604, 'maybe', '2024-05-29 03:15:47', '2025-12-17 19:46:36', 'd8L1qKVd', '7225670'), + (39307, 448, 2646, 'maybe', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'd8L1qKVd', '7281768'), + (39308, 448, 2654, 'attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'd8L1qKVd', '7291219'), + (39309, 448, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd8L1qKVd', '7302674'), + (39310, 448, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd8L1qKVd', '7324073'), + (39311, 448, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd8L1qKVd', '7324074'), + (39312, 448, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd8L1qKVd', '7324075'), + (39313, 448, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd8L1qKVd', '7324078'), + (39314, 448, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd8L1qKVd', '7324082'), + (39315, 448, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd8L1qKVd', '7331457'), + (39316, 448, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd8L1qKVd', '7363643'), + (39317, 448, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd8L1qKVd', '7368606'), + (39318, 448, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd8L1qKVd', '7397462'), + (39319, 448, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd8L1qKVd', '7424275'), + (39320, 448, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd8L1qKVd', '7424276'), + (39321, 448, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd8L1qKVd', '7432751'), + (39322, 448, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd8L1qKVd', '7432752'), + (39323, 448, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd8L1qKVd', '7432753'), + (39324, 448, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd8L1qKVd', '7432754'), + (39325, 448, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd8L1qKVd', '7432755'), + (39326, 448, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd8L1qKVd', '7432756'), + (39327, 448, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd8L1qKVd', '7432758'), + (39328, 448, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd8L1qKVd', '7432759'), + (39329, 448, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd8L1qKVd', '7433834'), + (39330, 448, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd8L1qKVd', '7470197'), + (39331, 448, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd8L1qKVd', '7685613'), + (39332, 448, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd8L1qKVd', '7688194'), + (39333, 448, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd8L1qKVd', '7688196'), + (39334, 448, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd8L1qKVd', '7688289'), + (39335, 449, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '40YY7OVd', '7424275'), + (39336, 449, 2826, 'not_attending', '2024-09-28 09:14:43', '2025-12-17 19:46:25', '40YY7OVd', '7432753'), + (39337, 449, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', '40YY7OVd', '7432756'), + (39338, 449, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', '40YY7OVd', '7432758'), + (39339, 449, 2843, 'maybe', '2024-09-26 21:36:11', '2025-12-17 19:46:25', '40YY7OVd', '7450219'), + (39340, 449, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '40YY7OVd', '7470197'), + (39341, 449, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', '40YY7OVd', '7682072'), + (39342, 449, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '40YY7OVd', '7685613'), + (39343, 449, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '40YY7OVd', '7688194'), + (39344, 449, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '40YY7OVd', '7688196'), + (39345, 449, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '40YY7OVd', '7688289'), + (39346, 450, 258, 'maybe', '2021-06-01 22:09:23', '2025-12-17 19:47:47', 'Md3a2MGA', '3149489'), + (39347, 450, 260, 'not_attending', '2021-06-12 12:07:52', '2025-12-17 19:47:48', 'Md3a2MGA', '3149491'), + (39348, 450, 393, 'not_attending', '2021-06-24 14:35:24', '2025-12-17 19:47:38', 'Md3a2MGA', '3236448'), + (39349, 450, 395, 'not_attending', '2021-06-09 15:39:25', '2025-12-17 19:47:47', 'Md3a2MGA', '3236450'), + (39350, 450, 658, 'not_attending', '2021-06-09 15:40:02', '2025-12-17 19:47:47', 'Md3a2MGA', '3547134'), + (39351, 450, 670, 'not_attending', '2021-06-16 20:24:51', '2025-12-17 19:47:48', 'Md3a2MGA', '3547148'), + (39352, 450, 727, 'not_attending', '2021-06-20 21:10:06', '2025-12-17 19:47:38', 'Md3a2MGA', '3661377'), + (39353, 450, 742, 'not_attending', '2021-06-16 20:24:12', '2025-12-17 19:47:48', 'Md3a2MGA', '3680622'), + (39354, 450, 744, 'not_attending', '2021-06-09 15:40:09', '2025-12-17 19:47:47', 'Md3a2MGA', '3680624'), + (39355, 450, 793, 'attending', '2021-06-02 23:22:53', '2025-12-17 19:47:47', 'Md3a2MGA', '3793537'), + (39356, 450, 795, 'not_attending', '2021-06-06 19:13:28', '2025-12-17 19:47:47', 'Md3a2MGA', '3793539'), + (39357, 450, 805, 'not_attending', '2021-06-12 12:07:25', '2025-12-17 19:47:47', 'Md3a2MGA', '3804777'), + (39358, 450, 818, 'not_attending', '2021-06-01 22:09:27', '2025-12-17 19:47:47', 'Md3a2MGA', '3833015'), + (39359, 450, 822, 'not_attending', '2021-06-06 16:01:12', '2025-12-17 19:47:47', 'Md3a2MGA', '3969986'), + (39360, 450, 823, 'not_attending', '2021-06-18 16:10:04', '2025-12-17 19:47:48', 'Md3a2MGA', '3974109'), + (39361, 450, 824, 'attending', '2021-06-03 12:46:50', '2025-12-17 19:47:47', 'Md3a2MGA', '3974112'), + (39362, 450, 825, 'attending', '2021-06-08 20:33:18', '2025-12-17 19:47:47', 'Md3a2MGA', '3975283'), + (39363, 450, 826, 'maybe', '2021-06-12 12:08:21', '2025-12-17 19:47:48', 'Md3a2MGA', '3975310'), + (39364, 450, 827, 'attending', '2021-06-02 03:50:44', '2025-12-17 19:47:47', 'Md3a2MGA', '3975311'), + (39365, 450, 828, 'attending', '2021-06-12 22:36:25', '2025-12-17 19:47:47', 'Md3a2MGA', '3975312'), + (39366, 450, 830, 'not_attending', '2021-06-02 19:21:26', '2025-12-17 19:47:47', 'Md3a2MGA', '3976648'), + (39367, 450, 831, 'not_attending', '2021-06-02 19:21:40', '2025-12-17 19:47:47', 'Md3a2MGA', '3976649'), + (39368, 450, 832, 'not_attending', '2021-06-02 19:21:46', '2025-12-17 19:47:47', 'Md3a2MGA', '3976650'), + (39369, 450, 833, 'attending', '2021-06-07 21:34:56', '2025-12-17 19:47:47', 'Md3a2MGA', '3990438'), + (39370, 450, 834, 'maybe', '2021-06-07 15:32:56', '2025-12-17 19:47:47', 'Md3a2MGA', '3990439'), + (39371, 450, 835, 'not_attending', '2021-06-06 22:47:13', '2025-12-17 19:47:47', 'Md3a2MGA', '3992486'), + (39372, 450, 837, 'attending', '2021-06-04 16:11:07', '2025-12-17 19:47:48', 'Md3a2MGA', '3992545'), + (39373, 450, 838, 'maybe', '2021-06-06 18:47:14', '2025-12-17 19:47:47', 'Md3a2MGA', '3994992'), + (39374, 450, 839, 'not_attending', '2021-06-07 15:05:20', '2025-12-17 19:47:47', 'Md3a2MGA', '4002121'), + (39375, 450, 840, 'attending', '2021-06-08 00:57:12', '2025-12-17 19:47:47', 'Md3a2MGA', '4007283'), + (39376, 450, 841, 'maybe', '2021-06-12 12:07:38', '2025-12-17 19:47:48', 'Md3a2MGA', '4007434'), + (39377, 450, 843, 'not_attending', '2021-06-11 22:48:02', '2025-12-17 19:47:47', 'Md3a2MGA', '4011909'), + (39378, 450, 844, 'not_attending', '2021-06-23 21:20:29', '2025-12-17 19:47:38', 'Md3a2MGA', '4014338'), + (39379, 450, 866, 'not_attending', '2021-06-18 23:45:28', '2025-12-17 19:47:38', 'Md3a2MGA', '4020424'), + (39380, 450, 867, 'not_attending', '2021-06-26 01:52:55', '2025-12-17 19:47:38', 'Md3a2MGA', '4021848'), + (39381, 450, 868, 'not_attending', '2021-06-16 20:23:11', '2025-12-17 19:47:48', 'Md3a2MGA', '4022012'), + (39382, 450, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Md3a2MGA', '4136744'), + (39383, 450, 870, 'not_attending', '2021-06-30 15:26:25', '2025-12-17 19:47:39', 'Md3a2MGA', '4136937'), + (39384, 450, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Md3a2MGA', '4136938'), + (39385, 450, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Md3a2MGA', '4136947'), + (39386, 450, 873, 'not_attending', '2021-06-16 20:24:56', '2025-12-17 19:47:48', 'Md3a2MGA', '4138297'), + (39387, 450, 874, 'not_attending', '2021-06-24 14:35:29', '2025-12-17 19:47:38', 'Md3a2MGA', '4139815'), + (39388, 450, 876, 'not_attending', '2021-06-22 14:42:05', '2025-12-17 19:47:38', 'Md3a2MGA', '4139926'), + (39389, 450, 877, 'not_attending', '2021-06-16 20:22:31', '2025-12-17 19:47:48', 'Md3a2MGA', '4140575'), + (39390, 450, 878, 'not_attending', '2021-06-20 21:10:15', '2025-12-17 19:47:38', 'Md3a2MGA', '4143331'), + (39391, 450, 880, 'not_attending', '2021-06-18 16:09:58', '2025-12-17 19:47:48', 'Md3a2MGA', '4205383'), + (39392, 450, 881, 'not_attending', '2021-06-20 21:10:19', '2025-12-17 19:47:38', 'Md3a2MGA', '4205662'), + (39393, 450, 883, 'not_attending', '2021-06-22 14:42:08', '2025-12-17 19:47:38', 'Md3a2MGA', '4209121'), + (39394, 450, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Md3a2MGA', '4210314'), + (39395, 450, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Md3a2MGA', '4225444'), + (39396, 450, 899, 'not_attending', '2021-07-02 13:55:40', '2025-12-17 19:47:39', 'Md3a2MGA', '4239259'), + (39397, 450, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Md3a2MGA', '4240316'), + (39398, 450, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Md3a2MGA', '4240317'), + (39399, 450, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Md3a2MGA', '4240318'), + (39400, 450, 905, 'not_attending', '2021-07-04 16:02:09', '2025-12-17 19:47:39', 'Md3a2MGA', '4250163'), + (39401, 450, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Md3a2MGA', '4275957'), + (39402, 450, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Md3a2MGA', '4277819'), + (39403, 450, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Md3a2MGA', '4301723'), + (39404, 450, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Md3a2MGA', '4302093'), + (39405, 450, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Md3a2MGA', '6045684'), + (39406, 451, 2304, 'not_attending', '2023-11-04 02:24:08', '2025-12-17 19:46:47', 'mRrE1lom', '6482693'), + (39407, 451, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mRrE1lom', '6484200'), + (39408, 451, 2310, 'maybe', '2023-11-11 21:44:53', '2025-12-17 19:46:47', 'mRrE1lom', '6487709'), + (39409, 451, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mRrE1lom', '6514659'), + (39410, 451, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mRrE1lom', '6514660'), + (39411, 451, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mRrE1lom', '6519103'), + (39412, 451, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mRrE1lom', '6535681'), + (39413, 451, 2342, 'maybe', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mRrE1lom', '6545076'), + (39414, 451, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mRrE1lom', '6584747'), + (39415, 451, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mRrE1lom', '6587097'), + (39416, 451, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mRrE1lom', '6609022'), + (39417, 451, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mRrE1lom', '6632757'), + (39418, 451, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mRrE1lom', '6644187'), + (39419, 451, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mRrE1lom', '6648951'), + (39420, 451, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mRrE1lom', '6648952'), + (39421, 451, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mRrE1lom', '6655401'), + (39422, 451, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mRrE1lom', '6661585'), + (39423, 451, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mRrE1lom', '6661588'), + (39424, 451, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mRrE1lom', '6661589'), + (39425, 451, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mRrE1lom', '6699906'), + (39426, 451, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mRrE1lom', '6699913'), + (39427, 451, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mRrE1lom', '6701109'), + (39428, 451, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mRrE1lom', '6705219'), + (39429, 451, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mRrE1lom', '6710153'), + (39430, 451, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mRrE1lom', '6711552'), + (39431, 451, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mRrE1lom', '6711553'), + (39432, 451, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mRrE1lom', '6722688'), + (39433, 451, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mRrE1lom', '6730620'), + (39434, 451, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mRrE1lom', '6730642'), + (39435, 451, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mRrE1lom', '6740364'), + (39436, 451, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mRrE1lom', '6743829'), + (39437, 451, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mRrE1lom', '7030380'), + (39438, 451, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mRrE1lom', '7033677'), + (39439, 451, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mRrE1lom', '7035415'), + (39440, 451, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mRrE1lom', '7044715'), + (39441, 451, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mRrE1lom', '7050318'), + (39442, 451, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mRrE1lom', '7050319'), + (39443, 451, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mRrE1lom', '7050322'), + (39444, 451, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mRrE1lom', '7057804'), + (39445, 451, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'mRrE1lom', '7059866'), + (39446, 451, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mRrE1lom', '7072824'), + (39447, 451, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mRrE1lom', '7074348'), + (39448, 451, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mRrE1lom', '7089267'), + (39449, 451, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mRrE1lom', '7098747'), + (39450, 451, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mRrE1lom', '7113468'), + (39451, 451, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mRrE1lom', '7114856'), + (39452, 451, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mRrE1lom', '7114951'), + (39453, 451, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mRrE1lom', '7114955'), + (39454, 451, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mRrE1lom', '7114956'), + (39455, 451, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mRrE1lom', '7153615'), + (39456, 451, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mRrE1lom', '7159484'), + (39457, 451, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mRrE1lom', '7178446'), + (39458, 452, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mR1NrPYd', '7324078'), + (39459, 452, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mR1NrPYd', '7324082'), + (39460, 452, 2722, 'not_attending', '2024-07-12 22:43:28', '2025-12-17 19:46:30', 'mR1NrPYd', '7331457'), + (39461, 452, 2757, 'attending', '2024-07-14 01:57:01', '2025-12-17 19:46:30', 'mR1NrPYd', '7358733'), + (39462, 452, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mR1NrPYd', '7363643'), + (39463, 452, 2769, 'not_attending', '2024-07-19 20:02:06', '2025-12-17 19:46:30', 'mR1NrPYd', '7366803'), + (39464, 452, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mR1NrPYd', '7368606'), + (39465, 452, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mR1NrPYd', '7397462'), + (39466, 452, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mR1NrPYd', '7424275'), + (39467, 452, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mR1NrPYd', '7432751'), + (39468, 452, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mR1NrPYd', '7432752'), + (39469, 452, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mR1NrPYd', '7432753'), + (39470, 452, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mR1NrPYd', '7432754'), + (39471, 452, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mR1NrPYd', '7432755'), + (39472, 452, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mR1NrPYd', '7432756'), + (39473, 452, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mR1NrPYd', '7432758'), + (39474, 452, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mR1NrPYd', '7432759'), + (39475, 452, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mR1NrPYd', '7433834'), + (39476, 452, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mR1NrPYd', '7470197'), + (39477, 452, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mR1NrPYd', '7685613'), + (39478, 452, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mR1NrPYd', '7688194'), + (39479, 452, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mR1NrPYd', '7688196'), + (39480, 452, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mR1NrPYd', '7688289'), + (39481, 453, 250, 'attending', '2021-02-07 20:20:42', '2025-12-17 19:47:50', '54kMebXm', '3149481'), + (39482, 453, 251, 'maybe', '2021-01-23 22:53:45', '2025-12-17 19:47:49', '54kMebXm', '3149482'), + (39483, 453, 252, 'attending', '2021-02-07 20:23:02', '2025-12-17 19:47:50', '54kMebXm', '3149483'), + (39484, 453, 254, 'maybe', '2021-03-10 00:37:07', '2025-12-17 19:47:51', '54kMebXm', '3149485'), + (39485, 453, 400, 'attending', '2021-02-03 20:38:20', '2025-12-17 19:47:50', '54kMebXm', '3236455'), + (39486, 453, 403, 'attending', '2021-02-07 20:23:37', '2025-12-17 19:47:51', '54kMebXm', '3236458'), + (39487, 453, 408, 'attending', '2021-02-07 20:22:46', '2025-12-17 19:47:50', '54kMebXm', '3236466'), + (39488, 453, 509, 'maybe', '2021-01-16 04:25:16', '2025-12-17 19:47:49', '54kMebXm', '3324232'), + (39489, 453, 510, 'maybe', '2021-01-23 22:54:09', '2025-12-17 19:47:49', '54kMebXm', '3324233'), + (39490, 453, 536, 'attending', '2021-01-09 23:36:53', '2025-12-17 19:47:48', '54kMebXm', '3386848'), + (39491, 453, 540, 'maybe', '2021-01-10 16:36:51', '2025-12-17 19:47:48', '54kMebXm', '3389527'), + (39492, 453, 542, 'attending', '2021-01-11 21:25:48', '2025-12-17 19:47:48', '54kMebXm', '3395013'), + (39493, 453, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '54kMebXm', '3396499'), + (39494, 453, 545, 'maybe', '2021-01-16 04:24:50', '2025-12-17 19:47:49', '54kMebXm', '3396502'), + (39495, 453, 546, 'attending', '2021-01-22 01:20:20', '2025-12-17 19:47:49', '54kMebXm', '3396503'), + (39496, 453, 547, 'maybe', '2021-01-16 04:25:34', '2025-12-17 19:47:49', '54kMebXm', '3396504'), + (39497, 453, 548, 'attending', '2021-01-17 00:26:19', '2025-12-17 19:47:48', '54kMebXm', '3403650'), + (39498, 453, 549, 'maybe', '2021-01-16 04:24:38', '2025-12-17 19:47:49', '54kMebXm', '3406988'), + (39499, 453, 550, 'maybe', '2021-01-16 04:24:30', '2025-12-17 19:47:48', '54kMebXm', '3407018'), + (39500, 453, 551, 'attending', '2021-01-16 04:24:47', '2025-12-17 19:47:49', '54kMebXm', '3407219'), + (39501, 453, 555, 'attending', '2021-01-19 19:34:22', '2025-12-17 19:47:49', '54kMebXm', '3416576'), + (39502, 453, 556, 'attending', '2021-01-26 19:01:13', '2025-12-17 19:47:49', '54kMebXm', '3417170'), + (39503, 453, 558, 'not_attending', '2021-01-22 21:03:24', '2025-12-17 19:47:49', '54kMebXm', '3418925'), + (39504, 453, 559, 'not_attending', '2021-01-24 05:46:28', '2025-12-17 19:47:49', '54kMebXm', '3421439'), + (39505, 453, 561, 'not_attending', '2021-01-23 22:53:21', '2025-12-17 19:47:49', '54kMebXm', '3421916'), + (39506, 453, 562, 'not_attending', '2021-01-23 22:53:25', '2025-12-17 19:47:49', '54kMebXm', '3424911'), + (39507, 453, 563, 'attending', '2021-01-25 15:40:40', '2025-12-17 19:47:49', '54kMebXm', '3425913'), + (39508, 453, 564, 'maybe', '2021-01-23 22:36:43', '2025-12-17 19:47:49', '54kMebXm', '3426074'), + (39509, 453, 565, 'maybe', '2021-01-23 22:53:55', '2025-12-17 19:47:49', '54kMebXm', '3426083'), + (39510, 453, 566, 'maybe', '2021-01-23 22:53:59', '2025-12-17 19:47:49', '54kMebXm', '3427928'), + (39511, 453, 568, 'attending', '2021-01-28 03:30:44', '2025-12-17 19:47:50', '54kMebXm', '3430267'), + (39512, 453, 569, 'not_attending', '2021-01-26 19:01:20', '2025-12-17 19:47:49', '54kMebXm', '3432673'), + (39513, 453, 570, 'maybe', '2021-01-30 18:41:03', '2025-12-17 19:47:50', '54kMebXm', '3435538'), + (39514, 453, 571, 'not_attending', '2021-02-13 00:11:46', '2025-12-17 19:47:50', '54kMebXm', '3435539'), + (39515, 453, 572, 'maybe', '2021-01-30 18:41:06', '2025-12-17 19:47:50', '54kMebXm', '3435540'), + (39516, 453, 573, 'attending', '2021-02-07 20:23:25', '2025-12-17 19:47:50', '54kMebXm', '3435542'), + (39517, 453, 576, 'maybe', '2021-01-30 18:40:28', '2025-12-17 19:47:50', '54kMebXm', '3438748'), + (39518, 453, 577, 'attending', '2021-01-28 20:20:07', '2025-12-17 19:47:49', '54kMebXm', '3439167'), + (39519, 453, 578, 'maybe', '2021-02-03 22:17:08', '2025-12-17 19:47:50', '54kMebXm', '3440043'), + (39520, 453, 579, 'attending', '2021-01-30 18:41:09', '2025-12-17 19:47:50', '54kMebXm', '3440978'), + (39521, 453, 580, 'attending', '2021-01-31 19:14:16', '2025-12-17 19:47:50', '54kMebXm', '3444240'), + (39522, 453, 582, 'maybe', '2021-01-30 18:40:23', '2025-12-17 19:47:50', '54kMebXm', '3445769'), + (39523, 453, 583, 'attending', '2021-02-03 16:44:33', '2025-12-17 19:47:50', '54kMebXm', '3449144'), + (39524, 453, 585, 'attending', '2021-02-07 20:20:35', '2025-12-17 19:47:50', '54kMebXm', '3449468'), + (39525, 453, 586, 'maybe', '2021-02-07 20:20:54', '2025-12-17 19:47:50', '54kMebXm', '3449469'), + (39526, 453, 587, 'attending', '2021-02-07 20:22:25', '2025-12-17 19:47:50', '54kMebXm', '3449470'), + (39527, 453, 588, 'attending', '2021-02-07 20:22:37', '2025-12-17 19:47:50', '54kMebXm', '3449471'), + (39528, 453, 589, 'maybe', '2021-02-07 20:22:55', '2025-12-17 19:47:50', '54kMebXm', '3449473'), + (39529, 453, 590, 'maybe', '2021-02-11 21:28:48', '2025-12-17 19:47:50', '54kMebXm', '3459150'), + (39530, 453, 591, 'maybe', '2021-02-07 20:20:33', '2025-12-17 19:47:50', '54kMebXm', '3465880'), + (39531, 453, 592, 'maybe', '2021-02-07 20:23:16', '2025-12-17 19:47:50', '54kMebXm', '3467757'), + (39532, 453, 593, 'maybe', '2021-02-07 20:23:07', '2025-12-17 19:47:50', '54kMebXm', '3467758'), + (39533, 453, 594, 'not_attending', '2021-03-02 00:56:57', '2025-12-17 19:47:51', '54kMebXm', '3467759'), + (39534, 453, 598, 'maybe', '2021-02-07 20:20:47', '2025-12-17 19:47:50', '54kMebXm', '3468003'), + (39535, 453, 599, 'maybe', '2021-02-07 20:22:33', '2025-12-17 19:47:50', '54kMebXm', '3468117'), + (39536, 453, 600, 'maybe', '2021-02-07 20:22:59', '2025-12-17 19:47:50', '54kMebXm', '3468125'), + (39537, 453, 601, 'maybe', '2021-02-07 20:22:49', '2025-12-17 19:47:50', '54kMebXm', '3468131'), + (39538, 453, 602, 'attending', '2021-02-07 20:22:11', '2025-12-17 19:47:50', '54kMebXm', '3470303'), + (39539, 453, 603, 'not_attending', '2021-02-20 22:21:04', '2025-12-17 19:47:50', '54kMebXm', '3470304'), + (39540, 453, 604, 'attending', '2021-02-07 20:22:16', '2025-12-17 19:47:50', '54kMebXm', '3470305'), + (39541, 453, 605, 'maybe', '2021-02-07 20:19:59', '2025-12-17 19:47:50', '54kMebXm', '3470991'), + (39542, 453, 608, 'attending', '2021-02-10 21:45:13', '2025-12-17 19:47:50', '54kMebXm', '3475332'), + (39543, 453, 609, 'attending', '2021-02-13 23:06:47', '2025-12-17 19:47:50', '54kMebXm', '3480916'), + (39544, 453, 611, 'attending', '2021-02-22 21:27:08', '2025-12-17 19:47:50', '54kMebXm', '3482659'), + (39545, 453, 618, 'maybe', '2021-02-19 23:06:22', '2025-12-17 19:47:50', '54kMebXm', '3503991'), + (39546, 453, 621, 'not_attending', '2021-03-06 20:50:41', '2025-12-17 19:47:51', '54kMebXm', '3517815'), + (39547, 453, 622, 'attending', '2021-03-01 17:22:35', '2025-12-17 19:47:51', '54kMebXm', '3517816'), + (39548, 453, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '54kMebXm', '3523941'), + (39549, 453, 624, 'maybe', '2021-02-27 18:46:18', '2025-12-17 19:47:50', '54kMebXm', '3528556'), + (39550, 453, 627, 'attending', '2021-03-01 17:22:22', '2025-12-17 19:47:51', '54kMebXm', '3533303'), + (39551, 453, 628, 'attending', '2021-03-03 01:36:01', '2025-12-17 19:47:51', '54kMebXm', '3533305'), + (39552, 453, 630, 'maybe', '2021-03-02 19:46:45', '2025-12-17 19:47:51', '54kMebXm', '3533425'), + (39553, 453, 631, 'maybe', '2021-03-01 17:23:17', '2025-12-17 19:47:51', '54kMebXm', '3533850'), + (39554, 453, 632, 'maybe', '2021-03-09 01:25:03', '2025-12-17 19:47:51', '54kMebXm', '3533853'), + (39555, 453, 637, 'maybe', '2021-03-01 19:28:36', '2025-12-17 19:47:51', '54kMebXm', '3536411'), + (39556, 453, 638, 'maybe', '2021-03-01 19:28:27', '2025-12-17 19:47:44', '54kMebXm', '3536632'), + (39557, 453, 639, 'maybe', '2021-03-01 19:28:33', '2025-12-17 19:47:51', '54kMebXm', '3536656'), + (39558, 453, 640, 'maybe', '2021-03-03 16:10:40', '2025-12-17 19:47:51', '54kMebXm', '3538866'), + (39559, 453, 641, 'attending', '2021-03-03 15:24:23', '2025-12-17 19:47:44', '54kMebXm', '3539916'), + (39560, 453, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '54kMebXm', '3539917'), + (39561, 453, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '54kMebXm', '3539918'), + (39562, 453, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '54kMebXm', '3539919'), + (39563, 453, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54kMebXm', '3539920'), + (39564, 453, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54kMebXm', '3539921'), + (39565, 453, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54kMebXm', '3539922'), + (39566, 453, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '54kMebXm', '3539923'), + (39567, 453, 649, 'attending', '2021-03-03 15:24:16', '2025-12-17 19:47:51', '54kMebXm', '3539927'), + (39568, 453, 650, 'attending', '2021-03-03 15:24:18', '2025-12-17 19:47:44', '54kMebXm', '3539928'), + (39569, 453, 651, 'attending', '2021-03-10 23:27:16', '2025-12-17 19:47:51', '54kMebXm', '3541045'), + (39570, 453, 652, 'attending', '2021-03-07 14:01:39', '2025-12-17 19:47:51', '54kMebXm', '3544466'), + (39571, 453, 680, 'attending', '2021-03-10 04:14:48', '2025-12-17 19:47:51', '54kMebXm', '3547700'), + (39572, 453, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kMebXm', '6045684'), + (39573, 454, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', '0mqjLozA', '3149489'), + (39574, 454, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '0mqjLozA', '3149491'), + (39575, 454, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', '0mqjLozA', '3149493'), + (39576, 454, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', '0mqjLozA', '3236448'), + (39577, 454, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '0mqjLozA', '3236450'), + (39578, 454, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', '0mqjLozA', '3236452'), + (39579, 454, 648, 'not_attending', '2021-05-26 01:43:55', '2025-12-17 19:47:47', '0mqjLozA', '3539923'), + (39580, 454, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', '0mqjLozA', '3963335'), + (39581, 454, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '0mqjLozA', '3974109'), + (39582, 454, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '0mqjLozA', '3975311'), + (39583, 454, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '0mqjLozA', '3975312'), + (39584, 454, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '0mqjLozA', '3994992'), + (39585, 454, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '0mqjLozA', '4014338'), + (39586, 454, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '0mqjLozA', '4021848'), + (39587, 454, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '0mqjLozA', '4136744'), + (39588, 454, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '0mqjLozA', '4136937'), + (39589, 454, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '0mqjLozA', '4136938'), + (39590, 454, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '0mqjLozA', '4136947'), + (39591, 454, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '0mqjLozA', '4225444'), + (39592, 454, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '0mqjLozA', '4229417'), + (39593, 454, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '0mqjLozA', '4229418'), + (39594, 454, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '0mqjLozA', '4239259'), + (39595, 454, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '0mqjLozA', '4250163'), + (39596, 454, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqjLozA', '6045684'), + (39597, 455, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3Rl0OY4', '6045684'), + (39598, 456, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dlno03XA', '7869188'), + (39599, 456, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dlno03XA', '7877465'), + (39600, 456, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dlno03XA', '7878570'), + (39601, 456, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'dlno03XA', '7880977'), + (39602, 456, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dlno03XA', '7888250'), + (39603, 456, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dlno03XA', '7897784'), + (39604, 456, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dlno03XA', '7903856'), + (39605, 456, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dlno03XA', '8347770'), + (39606, 456, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dlno03XA', '8349164'), + (39607, 456, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dlno03XA', '8349545'), + (39608, 456, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dlno03XA', '8353584'), + (39609, 457, 857, 'not_attending', '2021-11-24 02:19:17', '2025-12-17 19:47:37', 'mjnDNL3m', '4015731'), + (39610, 457, 993, 'not_attending', '2021-09-24 16:12:14', '2025-12-17 19:47:34', 'mjnDNL3m', '4420741'), + (39611, 457, 994, 'maybe', '2021-10-02 03:28:17', '2025-12-17 19:47:34', 'mjnDNL3m', '4420742'), + (39612, 457, 995, 'attending', '2021-10-01 15:49:45', '2025-12-17 19:47:34', 'mjnDNL3m', '4420744'), + (39613, 457, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mjnDNL3m', '4420747'), + (39614, 457, 997, 'not_attending', '2021-10-12 22:18:20', '2025-12-17 19:47:35', 'mjnDNL3m', '4420748'), + (39615, 457, 1006, 'attending', '2021-09-22 12:30:45', '2025-12-17 19:47:34', 'mjnDNL3m', '4438808'), + (39616, 457, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'mjnDNL3m', '4508342'), + (39617, 457, 1071, 'not_attending', '2021-10-02 03:29:06', '2025-12-17 19:47:34', 'mjnDNL3m', '4516078'), + (39618, 457, 1072, 'attending', '2021-10-02 03:28:56', '2025-12-17 19:47:34', 'mjnDNL3m', '4516287'), + (39619, 457, 1077, 'attending', '2021-10-11 12:59:07', '2025-12-17 19:47:34', 'mjnDNL3m', '4540903'), + (39620, 457, 1078, 'attending', '2021-10-05 14:55:28', '2025-12-17 19:47:34', 'mjnDNL3m', '4541281'), + (39621, 457, 1079, 'not_attending', '2021-10-19 15:15:40', '2025-12-17 19:47:35', 'mjnDNL3m', '4563823'), + (39622, 457, 1082, 'attending', '2021-10-11 22:54:05', '2025-12-17 19:47:35', 'mjnDNL3m', '4566762'), + (39623, 457, 1083, 'not_attending', '2021-10-13 18:32:01', '2025-12-17 19:47:34', 'mjnDNL3m', '4566768'), + (39624, 457, 1084, 'not_attending', '2021-10-13 18:32:07', '2025-12-17 19:47:35', 'mjnDNL3m', '4566769'), + (39625, 457, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mjnDNL3m', '4568602'), + (39626, 457, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mjnDNL3m', '4572153'), + (39627, 457, 1089, 'not_attending', '2021-10-18 19:46:52', '2025-12-17 19:47:35', 'mjnDNL3m', '4574712'), + (39628, 457, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mjnDNL3m', '4585962'), + (39629, 457, 1094, 'maybe', '2021-10-31 20:42:23', '2025-12-17 19:47:36', 'mjnDNL3m', '4587337'), + (39630, 457, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mjnDNL3m', '4596356'), + (39631, 457, 1096, 'attending', '2021-10-28 14:22:38', '2025-12-17 19:47:36', 'mjnDNL3m', '4596453'), + (39632, 457, 1097, 'attending', '2021-10-28 14:22:30', '2025-12-17 19:47:36', 'mjnDNL3m', '4598860'), + (39633, 457, 1098, 'not_attending', '2021-11-07 21:07:33', '2025-12-17 19:47:36', 'mjnDNL3m', '4598861'), + (39634, 457, 1099, 'attending', '2021-10-31 17:14:12', '2025-12-17 19:47:36', 'mjnDNL3m', '4602797'), + (39635, 457, 1100, 'not_attending', '2021-11-09 00:18:03', '2025-12-17 19:47:36', 'mjnDNL3m', '4607305'), + (39636, 457, 1101, 'not_attending', '2021-11-11 15:53:25', '2025-12-17 19:47:36', 'mjnDNL3m', '4607339'), + (39637, 457, 1103, 'not_attending', '2021-11-12 23:38:01', '2025-12-17 19:47:36', 'mjnDNL3m', '4616350'), + (39638, 457, 1106, 'not_attending', '2021-11-12 21:05:45', '2025-12-17 19:47:36', 'mjnDNL3m', '4620452'), + (39639, 457, 1114, 'not_attending', '2021-11-12 02:52:44', '2025-12-17 19:47:36', 'mjnDNL3m', '4637896'), + (39640, 457, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mjnDNL3m', '4642994'), + (39641, 457, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mjnDNL3m', '4642995'), + (39642, 457, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mjnDNL3m', '4642996'), + (39643, 457, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mjnDNL3m', '4642997'), + (39644, 457, 1126, 'maybe', '2021-11-15 17:44:10', '2025-12-17 19:47:38', 'mjnDNL3m', '4645687'), + (39645, 457, 1127, 'maybe', '2021-11-15 17:44:06', '2025-12-17 19:47:38', 'mjnDNL3m', '4645698'), + (39646, 457, 1128, 'not_attending', '2021-11-15 17:44:00', '2025-12-17 19:47:37', 'mjnDNL3m', '4645704'), + (39647, 457, 1129, 'maybe', '2021-11-15 17:43:54', '2025-12-17 19:47:37', 'mjnDNL3m', '4645705'), + (39648, 457, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mjnDNL3m', '4668385'), + (39649, 457, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mjnDNL3m', '4694407'), + (39650, 457, 1151, 'not_attending', '2022-01-03 16:41:20', '2025-12-17 19:47:31', 'mjnDNL3m', '4708704'), + (39651, 457, 1165, 'not_attending', '2022-01-03 17:06:41', '2025-12-17 19:47:31', 'mjnDNL3m', '4724210'), + (39652, 457, 1173, 'attending', '2022-01-03 16:41:18', '2025-12-17 19:47:31', 'mjnDNL3m', '4736495'), + (39653, 457, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mjnDNL3m', '4736497'), + (39654, 457, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mjnDNL3m', '4736499'), + (39655, 457, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mjnDNL3m', '4736500'), + (39656, 457, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mjnDNL3m', '4736503'), + (39657, 457, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mjnDNL3m', '4736504'), + (39658, 457, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mjnDNL3m', '4746789'), + (39659, 457, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mjnDNL3m', '4753929'), + (39660, 457, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mjnDNL3m', '5038850'), + (39661, 457, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mjnDNL3m', '5045826'), + (39662, 457, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mjnDNL3m', '5132533'), + (39663, 457, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mjnDNL3m', '5186582'), + (39664, 457, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mjnDNL3m', '5186583'), + (39665, 457, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mjnDNL3m', '5186585'), + (39666, 457, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mjnDNL3m', '5190437'), + (39667, 457, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mjnDNL3m', '5195095'), + (39668, 457, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'mjnDNL3m', '5215989'), + (39669, 457, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mjnDNL3m', '5223686'), + (39670, 457, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mjnDNL3m', '5247467'), + (39671, 457, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mjnDNL3m', '5260800'), + (39672, 457, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mjnDNL3m', '5269930'), + (39673, 457, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mjnDNL3m', '5271448'), + (39674, 457, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'mjnDNL3m', '5271449'), + (39675, 457, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mjnDNL3m', '5278159'), + (39676, 457, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mjnDNL3m', '5363695'), + (39677, 457, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mjnDNL3m', '5365960'), + (39678, 457, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mjnDNL3m', '5378247'), + (39679, 457, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'mjnDNL3m', '5389605'), + (39680, 457, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mjnDNL3m', '5397265'), + (39681, 457, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mjnDNL3m', '5404786'), + (39682, 457, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mjnDNL3m', '5405203'), + (39683, 457, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mjnDNL3m', '5412550'), + (39684, 457, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mjnDNL3m', '5415046'), + (39685, 457, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mjnDNL3m', '5422086'), + (39686, 457, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mjnDNL3m', '5422406'), + (39687, 457, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mjnDNL3m', '5424565'), + (39688, 457, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mjnDNL3m', '5426882'), + (39689, 457, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mjnDNL3m', '5441125'), + (39690, 457, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mjnDNL3m', '5441126'), + (39691, 457, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mjnDNL3m', '5441128'), + (39692, 457, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mjnDNL3m', '5441131'), + (39693, 457, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mjnDNL3m', '5441132'), + (39694, 457, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mjnDNL3m', '5453325'), + (39695, 457, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mjnDNL3m', '5454516'), + (39696, 457, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mjnDNL3m', '5454605'), + (39697, 457, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mjnDNL3m', '5455037'), + (39698, 457, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mjnDNL3m', '5461278'), + (39699, 457, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mjnDNL3m', '5469480'), + (39700, 457, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mjnDNL3m', '5474663'), + (39701, 457, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mjnDNL3m', '5482022'), + (39702, 457, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mjnDNL3m', '5488912'), + (39703, 457, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mjnDNL3m', '5492192'), + (39704, 457, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mjnDNL3m', '5493139'), + (39705, 457, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mjnDNL3m', '5493200'), + (39706, 457, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mjnDNL3m', '5502188'), + (39707, 457, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mjnDNL3m', '5505059'), + (39708, 457, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mjnDNL3m', '5509055'), + (39709, 457, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mjnDNL3m', '5512862'), + (39710, 457, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mjnDNL3m', '5513985'), + (39711, 457, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'mjnDNL3m', '5519981'), + (39712, 457, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mjnDNL3m', '5522550'), + (39713, 457, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mjnDNL3m', '5534683'), + (39714, 457, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'mjnDNL3m', '5537735'), + (39715, 457, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mjnDNL3m', '5540859'), + (39716, 457, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mjnDNL3m', '5546619'), + (39717, 457, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mjnDNL3m', '5557747'), + (39718, 457, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mjnDNL3m', '5560255'), + (39719, 457, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mjnDNL3m', '5562906'), + (39720, 457, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mjnDNL3m', '5600604'), + (39721, 457, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mjnDNL3m', '5605544'), + (39722, 457, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'mjnDNL3m', '5606737'), + (39723, 457, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mjnDNL3m', '5630960'), + (39724, 457, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mjnDNL3m', '5630961'), + (39725, 457, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mjnDNL3m', '5630962'), + (39726, 457, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mjnDNL3m', '5630966'), + (39727, 457, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mjnDNL3m', '5630967'), + (39728, 457, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mjnDNL3m', '5630968'), + (39729, 457, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mjnDNL3m', '5635406'), + (39730, 457, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mjnDNL3m', '5638765'), + (39731, 457, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mjnDNL3m', '5640097'), + (39732, 457, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mjnDNL3m', '5640843'), + (39733, 457, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mjnDNL3m', '5641521'), + (39734, 457, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mjnDNL3m', '5642818'), + (39735, 457, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mjnDNL3m', '5652395'), + (39736, 457, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mjnDNL3m', '5670445'), + (39737, 457, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mjnDNL3m', '5671637'), + (39738, 457, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mjnDNL3m', '5672329'), + (39739, 457, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mjnDNL3m', '5674057'), + (39740, 457, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mjnDNL3m', '5674060'), + (39741, 457, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mjnDNL3m', '5677461'), + (39742, 457, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mjnDNL3m', '5698046'), + (39743, 457, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mjnDNL3m', '5699760'), + (39744, 457, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mjnDNL3m', '5741601'), + (39745, 457, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mjnDNL3m', '5763458'), + (39746, 457, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mjnDNL3m', '5774172'), + (39747, 457, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'mjnDNL3m', '5818247'), + (39748, 457, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mjnDNL3m', '5819471'), + (39749, 457, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mjnDNL3m', '5827739'), + (39750, 457, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mjnDNL3m', '5844306'), + (39751, 457, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mjnDNL3m', '5850159'), + (39752, 457, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mjnDNL3m', '5858999'), + (39753, 457, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mjnDNL3m', '5871984'), + (39754, 457, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mjnDNL3m', '5876354'), + (39755, 457, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mjnDNL3m', '5880939'), + (39756, 457, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mjnDNL3m', '5880940'), + (39757, 457, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mjnDNL3m', '5880942'), + (39758, 457, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mjnDNL3m', '5880943'), + (39759, 457, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mjnDNL3m', '5887890'), + (39760, 457, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mjnDNL3m', '5888598'), + (39761, 457, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mjnDNL3m', '5893260'), + (39762, 457, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mjnDNL3m', '5899826'), + (39763, 457, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mjnDNL3m', '5900199'), + (39764, 457, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mjnDNL3m', '5900200'), + (39765, 457, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mjnDNL3m', '5900202'), + (39766, 457, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mjnDNL3m', '5900203'), + (39767, 457, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mjnDNL3m', '5901108'), + (39768, 457, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mjnDNL3m', '5901126'), + (39769, 457, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'mjnDNL3m', '5901606'), + (39770, 457, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mjnDNL3m', '5909655'), + (39771, 457, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mjnDNL3m', '5910522'), + (39772, 457, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mjnDNL3m', '5910526'), + (39773, 457, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mjnDNL3m', '5910528'), + (39774, 457, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mjnDNL3m', '5916219'), + (39775, 457, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mjnDNL3m', '5936234'), + (39776, 457, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mjnDNL3m', '5958351'), + (39777, 457, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mjnDNL3m', '5959751'), + (39778, 457, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mjnDNL3m', '5959755'), + (39779, 457, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mjnDNL3m', '5960055'), + (39780, 457, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mjnDNL3m', '5961684'), + (39781, 457, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mjnDNL3m', '5962132'), + (39782, 457, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mjnDNL3m', '5962133'), + (39783, 457, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mjnDNL3m', '5962134'), + (39784, 457, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mjnDNL3m', '5962317'), + (39785, 457, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mjnDNL3m', '5962318'), + (39786, 457, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mjnDNL3m', '5965933'), + (39787, 457, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mjnDNL3m', '5967014'), + (39788, 457, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mjnDNL3m', '5972815'), + (39789, 457, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mjnDNL3m', '5974016'), + (39790, 457, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mjnDNL3m', '5981515'), + (39791, 457, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mjnDNL3m', '5993516'), + (39792, 457, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mjnDNL3m', '5998939'), + (39793, 457, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mjnDNL3m', '6028191'), + (39794, 457, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mjnDNL3m', '6040066'), + (39795, 457, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mjnDNL3m', '6042717'), + (39796, 457, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mjnDNL3m', '6044838'), + (39797, 457, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mjnDNL3m', '6044839'), + (39798, 457, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjnDNL3m', '6045684'), + (39799, 457, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mjnDNL3m', '6050104'), + (39800, 457, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mjnDNL3m', '6053195'), + (39801, 457, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mjnDNL3m', '6053198'), + (39802, 457, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mjnDNL3m', '6056085'), + (39803, 457, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mjnDNL3m', '6056916'), + (39804, 457, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mjnDNL3m', '6059290'), + (39805, 457, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mjnDNL3m', '6060328'), + (39806, 457, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mjnDNL3m', '6061037'), + (39807, 457, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mjnDNL3m', '6061039'), + (39808, 457, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mjnDNL3m', '6067245'), + (39809, 457, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mjnDNL3m', '6068094'), + (39810, 457, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mjnDNL3m', '6068252'), + (39811, 457, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mjnDNL3m', '6068253'), + (39812, 457, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mjnDNL3m', '6068254'), + (39813, 457, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mjnDNL3m', '6068280'), + (39814, 457, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mjnDNL3m', '6069093'), + (39815, 457, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mjnDNL3m', '6072528'), + (39816, 457, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mjnDNL3m', '6079840'), + (39817, 457, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mjnDNL3m', '6083398'), + (39818, 457, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mjnDNL3m', '6093504'), + (39819, 457, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mjnDNL3m', '6097414'), + (39820, 457, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mjnDNL3m', '6097442'), + (39821, 457, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mjnDNL3m', '6097684'), + (39822, 457, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mjnDNL3m', '6098762'), + (39823, 457, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mjnDNL3m', '6101361'), + (39824, 457, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mjnDNL3m', '6101362'), + (39825, 457, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mjnDNL3m', '6107314'), + (39826, 457, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mjnDNL3m', '6120034'), + (39827, 457, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mjnDNL3m', '6136733'), + (39828, 457, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mjnDNL3m', '6137989'), + (39829, 457, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mjnDNL3m', '6150864'), + (39830, 457, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mjnDNL3m', '6155491'), + (39831, 457, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mjnDNL3m', '6164417'), + (39832, 457, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mjnDNL3m', '6166388'), + (39833, 457, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mjnDNL3m', '6176439'), + (39834, 457, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mjnDNL3m', '6182410'), + (39835, 457, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mjnDNL3m', '6185812'), + (39836, 457, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mjnDNL3m', '6187651'), + (39837, 457, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mjnDNL3m', '6187963'), + (39838, 457, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mjnDNL3m', '6187964'), + (39839, 457, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mjnDNL3m', '6187966'), + (39840, 457, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mjnDNL3m', '6187967'), + (39841, 457, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mjnDNL3m', '6187969'), + (39842, 457, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mjnDNL3m', '6334878'), + (39843, 457, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mjnDNL3m', '6337236'), + (39844, 457, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mjnDNL3m', '6337970'), + (39845, 457, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mjnDNL3m', '6338308'), + (39846, 457, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mjnDNL3m', '6341710'), + (39847, 457, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mjnDNL3m', '6342044'), + (39848, 457, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mjnDNL3m', '6342298'), + (39849, 457, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mjnDNL3m', '6343294'), + (39850, 457, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mjnDNL3m', '6347034'), + (39851, 457, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mjnDNL3m', '6347056'), + (39852, 457, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mjnDNL3m', '6353830'), + (39853, 457, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mjnDNL3m', '6353831'), + (39854, 457, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mjnDNL3m', '6357867'), + (39855, 457, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mjnDNL3m', '6358652'), + (39856, 457, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mjnDNL3m', '6361709'), + (39857, 457, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mjnDNL3m', '6361710'), + (39858, 457, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mjnDNL3m', '6361711'), + (39859, 457, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mjnDNL3m', '6361712'), + (39860, 457, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mjnDNL3m', '6361713'), + (39861, 457, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mjnDNL3m', '6382573'), + (39862, 457, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mjnDNL3m', '6388604'), + (39863, 457, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mjnDNL3m', '6394629'), + (39864, 457, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mjnDNL3m', '6394631'), + (39865, 457, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mjnDNL3m', '6440863'), + (39866, 457, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mjnDNL3m', '6445440'), + (39867, 457, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mjnDNL3m', '6453951'), + (39868, 457, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mjnDNL3m', '6461696'), + (39869, 457, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mjnDNL3m', '6462129'), + (39870, 457, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mjnDNL3m', '6463218'), + (39871, 457, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mjnDNL3m', '6472181'), + (39872, 457, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mjnDNL3m', '6482693'), + (39873, 457, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mjnDNL3m', '6484200'), + (39874, 457, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mjnDNL3m', '6484680'), + (39875, 457, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mjnDNL3m', '6507741'), + (39876, 457, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mjnDNL3m', '6514659'), + (39877, 457, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mjnDNL3m', '6514660'), + (39878, 457, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mjnDNL3m', '6519103'), + (39879, 457, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mjnDNL3m', '6535681'), + (39880, 457, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mjnDNL3m', '6584747'), + (39881, 457, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mjnDNL3m', '6587097'), + (39882, 457, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mjnDNL3m', '6609022'), + (39883, 457, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mjnDNL3m', '6632757'), + (39884, 457, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mjnDNL3m', '6644187'), + (39885, 457, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mjnDNL3m', '6648951'), + (39886, 457, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mjnDNL3m', '6648952'), + (39887, 457, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mjnDNL3m', '6655401'), + (39888, 457, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mjnDNL3m', '6661585'), + (39889, 457, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mjnDNL3m', '6661588'), + (39890, 457, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mjnDNL3m', '6661589'), + (39891, 457, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mjnDNL3m', '6699906'), + (39892, 457, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mjnDNL3m', '6699913'), + (39893, 457, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mjnDNL3m', '6701109'), + (39894, 457, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mjnDNL3m', '6705219'), + (39895, 457, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mjnDNL3m', '6710153'), + (39896, 457, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mjnDNL3m', '6711552'), + (39897, 457, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mjnDNL3m', '6711553'), + (39898, 457, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mjnDNL3m', '6722688'), + (39899, 457, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mjnDNL3m', '6730620'), + (39900, 457, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mjnDNL3m', '6740364'), + (39901, 457, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mjnDNL3m', '6743829'), + (39902, 457, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mjnDNL3m', '7030380'), + (39903, 457, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mjnDNL3m', '7033677'), + (39904, 457, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mjnDNL3m', '7044715'), + (39905, 457, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mjnDNL3m', '7050318'), + (39906, 457, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mjnDNL3m', '7050319'), + (39907, 457, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mjnDNL3m', '7050322'), + (39908, 457, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mjnDNL3m', '7057804'), + (39909, 457, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mjnDNL3m', '7072824'), + (39910, 457, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mjnDNL3m', '7074348'), + (39911, 457, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mjnDNL3m', '7074364'), + (39912, 457, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mjnDNL3m', '7089267'), + (39913, 457, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mjnDNL3m', '7098747'), + (39914, 457, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mjnDNL3m', '7113468'), + (39915, 457, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mjnDNL3m', '7114856'), + (39916, 457, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mjnDNL3m', '7114951'), + (39917, 457, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mjnDNL3m', '7114955'), + (39918, 457, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mjnDNL3m', '7114956'), + (39919, 457, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mjnDNL3m', '7114957'), + (39920, 457, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mjnDNL3m', '7159484'), + (39921, 457, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mjnDNL3m', '7178446'), + (39922, 457, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mjnDNL3m', '7220467'), + (39923, 457, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mjnDNL3m', '7240354'), + (39924, 457, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mjnDNL3m', '7251633'), + (39925, 457, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mjnDNL3m', '7324073'), + (39926, 457, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mjnDNL3m', '7324074'), + (39927, 457, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mjnDNL3m', '7324075'), + (39928, 457, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mjnDNL3m', '7324078'), + (39929, 457, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mjnDNL3m', '7324082'), + (39930, 457, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mjnDNL3m', '7331457'), + (39931, 457, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mjnDNL3m', '7363643'), + (39932, 457, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mjnDNL3m', '7368606'), + (39933, 457, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mjnDNL3m', '7397462'), + (39934, 457, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mjnDNL3m', '7424275'), + (39935, 457, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mjnDNL3m', '7432751'), + (39936, 457, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mjnDNL3m', '7432752'), + (39937, 457, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mjnDNL3m', '7432753'), + (39938, 457, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mjnDNL3m', '7432754'), + (39939, 457, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mjnDNL3m', '7432755'), + (39940, 457, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mjnDNL3m', '7432756'), + (39941, 457, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mjnDNL3m', '7432758'), + (39942, 457, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mjnDNL3m', '7432759'), + (39943, 457, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mjnDNL3m', '7433834'), + (39944, 457, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mjnDNL3m', '7470197'), + (39945, 457, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mjnDNL3m', '7685613'), + (39946, 457, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mjnDNL3m', '7688194'), + (39947, 457, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mjnDNL3m', '7688196'), + (39948, 457, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mjnDNL3m', '7688289'), + (39949, 457, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mjnDNL3m', '7692763'), + (39950, 457, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mjnDNL3m', '7697552'), + (39951, 457, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mjnDNL3m', '7699878'), + (39952, 457, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mjnDNL3m', '7704043'), + (39953, 457, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mjnDNL3m', '7712467'), + (39954, 457, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mjnDNL3m', '7713585'), + (39955, 457, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mjnDNL3m', '7713586'), + (39956, 457, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mjnDNL3m', '7738518'), + (39957, 457, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mjnDNL3m', '7750636'), + (39958, 457, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mjnDNL3m', '7796540'), + (39959, 457, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mjnDNL3m', '7796541'), + (39960, 457, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mjnDNL3m', '7796542'), + (39961, 457, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mjnDNL3m', '7825913'), + (39962, 457, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mjnDNL3m', '7826209'), + (39963, 457, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mjnDNL3m', '7834742'), + (39964, 457, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mjnDNL3m', '7842108'), + (39965, 457, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mjnDNL3m', '7842902'), + (39966, 457, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mjnDNL3m', '7842903'), + (39967, 457, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mjnDNL3m', '7842904'), + (39968, 457, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mjnDNL3m', '7842905'), + (39969, 457, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mjnDNL3m', '7855719'), + (39970, 457, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mjnDNL3m', '7860683'), + (39971, 457, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mjnDNL3m', '7860684'), + (39972, 457, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mjnDNL3m', '7866095'), + (39973, 457, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mjnDNL3m', '7869170'), + (39974, 457, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mjnDNL3m', '7869188'), + (39975, 457, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mjnDNL3m', '7869201'), + (39976, 457, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mjnDNL3m', '7877465'), + (39977, 457, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mjnDNL3m', '7888250'), + (39978, 457, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mjnDNL3m', '7904777'), + (39979, 457, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjnDNL3m', '8349164'), + (39980, 457, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjnDNL3m', '8349545'), + (39981, 457, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjnDNL3m', '8368028'), + (39982, 457, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjnDNL3m', '8368029'), + (39983, 457, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjnDNL3m', '8388462'), + (39984, 457, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjnDNL3m', '8400273'), + (39985, 457, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjnDNL3m', '8400275'), + (39986, 457, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mjnDNL3m', '8400276'), + (39987, 457, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjnDNL3m', '8404977'), + (39988, 457, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mjnDNL3m', '8430783'), + (39989, 457, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjnDNL3m', '8430784'), + (39990, 457, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjnDNL3m', '8430799'), + (39991, 457, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjnDNL3m', '8430800'), + (39992, 457, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjnDNL3m', '8430801'), + (39993, 457, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mjnDNL3m', '8438709'), + (39994, 457, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjnDNL3m', '8457738'), + (39995, 457, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjnDNL3m', '8459566'), + (39996, 457, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjnDNL3m', '8459567'), + (39997, 457, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjnDNL3m', '8461032'), + (39998, 457, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjnDNL3m', '8477877'), + (39999, 457, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mjnDNL3m', '8485688'), + (40000, 457, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mjnDNL3m', '8490587'), + (40001, 457, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mjnDNL3m', '8493552'), + (40002, 457, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mjnDNL3m', '8493553'), + (40003, 457, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mjnDNL3m', '8493554'), + (40004, 457, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mjnDNL3m', '8493555'), + (40005, 457, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mjnDNL3m', '8493556'), + (40006, 457, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mjnDNL3m', '8493557'), + (40007, 457, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mjnDNL3m', '8493558'), + (40008, 457, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mjnDNL3m', '8493559'), + (40009, 457, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mjnDNL3m', '8493560'), + (40010, 457, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mjnDNL3m', '8493561'), + (40011, 457, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mjnDNL3m', '8493572'), + (40012, 457, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mjnDNL3m', '8540725'), + (40013, 457, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mjnDNL3m', '8555421'), + (40014, 458, 1727, 'attending', '2022-12-03 03:54:50', '2025-12-17 19:47:16', 'mGOpGLZm', '5630969'), + (40015, 458, 1737, 'attending', '2022-12-01 00:08:37', '2025-12-17 19:47:16', 'mGOpGLZm', '5638457'), + (40016, 458, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mGOpGLZm', '5670445'), + (40017, 458, 1796, 'attending', '2022-12-01 22:05:24', '2025-12-17 19:47:16', 'mGOpGLZm', '5756755'), + (40018, 458, 1824, 'not_attending', '2022-12-01 18:39:21', '2025-12-17 19:47:04', 'mGOpGLZm', '5774172'), + (40019, 458, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'mGOpGLZm', '5818247'), + (40020, 458, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mGOpGLZm', '5819471'), + (40021, 458, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'mGOpGLZm', '5827739'), + (40022, 458, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mGOpGLZm', '5844306'), + (40023, 458, 1846, 'not_attending', '2022-12-18 18:54:24', '2025-12-17 19:47:04', 'mGOpGLZm', '5845237'), + (40024, 458, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mGOpGLZm', '5850159'), + (40025, 458, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mGOpGLZm', '5858999'), + (40026, 458, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mGOpGLZm', '5871984'), + (40027, 458, 1856, 'attending', '2023-01-15 03:38:14', '2025-12-17 19:47:05', 'mGOpGLZm', '5873970'), + (40028, 458, 1859, 'attending', '2023-01-19 04:43:49', '2025-12-17 19:47:05', 'mGOpGLZm', '5876234'), + (40029, 458, 1861, 'attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mGOpGLZm', '5876354'), + (40030, 458, 1864, 'attending', '2023-01-19 04:36:58', '2025-12-17 19:47:05', 'mGOpGLZm', '5879675'), + (40031, 458, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mGOpGLZm', '5880939'), + (40032, 458, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mGOpGLZm', '5880940'), + (40033, 458, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mGOpGLZm', '5880942'), + (40034, 458, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mGOpGLZm', '5880943'), + (40035, 458, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mGOpGLZm', '5887890'), + (40036, 458, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mGOpGLZm', '5888598'), + (40037, 458, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mGOpGLZm', '5893260'), + (40038, 458, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mGOpGLZm', '5899826'), + (40039, 458, 1885, 'attending', '2023-02-24 23:25:33', '2025-12-17 19:47:08', 'mGOpGLZm', '5899928'), + (40040, 458, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mGOpGLZm', '5900199'), + (40041, 458, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mGOpGLZm', '5900200'), + (40042, 458, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mGOpGLZm', '5900202'), + (40043, 458, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mGOpGLZm', '5900203'), + (40044, 458, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mGOpGLZm', '5901108'), + (40045, 458, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mGOpGLZm', '5901126'), + (40046, 458, 1900, 'attending', '2023-02-03 21:29:29', '2025-12-17 19:47:06', 'mGOpGLZm', '5901331'), + (40047, 458, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mGOpGLZm', '5909655'), + (40048, 458, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mGOpGLZm', '5910522'), + (40049, 458, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mGOpGLZm', '5910526'), + (40050, 458, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mGOpGLZm', '5910528'), + (40051, 458, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mGOpGLZm', '5916219'), + (40052, 458, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mGOpGLZm', '5936234'), + (40053, 458, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mGOpGLZm', '5958351'), + (40054, 458, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mGOpGLZm', '5959751'), + (40055, 458, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mGOpGLZm', '5959755'), + (40056, 458, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mGOpGLZm', '5960055'), + (40057, 458, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mGOpGLZm', '5961684'), + (40058, 458, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mGOpGLZm', '5962132'), + (40059, 458, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mGOpGLZm', '5962133'), + (40060, 458, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mGOpGLZm', '5962134'), + (40061, 458, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mGOpGLZm', '5962317'), + (40062, 458, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mGOpGLZm', '5962318'), + (40063, 458, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mGOpGLZm', '5965933'), + (40064, 458, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mGOpGLZm', '5967014'), + (40065, 458, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mGOpGLZm', '5972815'), + (40066, 458, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mGOpGLZm', '5974016'), + (40067, 458, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mGOpGLZm', '5981515'), + (40068, 458, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mGOpGLZm', '5993516'), + (40069, 458, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mGOpGLZm', '5998939'), + (40070, 458, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mGOpGLZm', '6028191'), + (40071, 458, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mGOpGLZm', '6040066'), + (40072, 458, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mGOpGLZm', '6042717'), + (40073, 458, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mGOpGLZm', '6044838'), + (40074, 458, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mGOpGLZm', '6044839'), + (40075, 458, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mGOpGLZm', '6045684'), + (40076, 458, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mGOpGLZm', '6050104'), + (40077, 458, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mGOpGLZm', '6053195'), + (40078, 458, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mGOpGLZm', '6053198'), + (40079, 458, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mGOpGLZm', '6056085'), + (40080, 458, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mGOpGLZm', '6056916'), + (40081, 458, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mGOpGLZm', '6059290'), + (40082, 458, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mGOpGLZm', '6060328'), + (40083, 458, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mGOpGLZm', '6061037'), + (40084, 458, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mGOpGLZm', '6061039'), + (40085, 458, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mGOpGLZm', '6067245'), + (40086, 458, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mGOpGLZm', '6068094'), + (40087, 458, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mGOpGLZm', '6068252'), + (40088, 458, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mGOpGLZm', '6068253'), + (40089, 458, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mGOpGLZm', '6068254'), + (40090, 458, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mGOpGLZm', '6068280'), + (40091, 458, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mGOpGLZm', '6069093'), + (40092, 458, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mGOpGLZm', '6072528'), + (40093, 458, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mGOpGLZm', '6079840'), + (40094, 458, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mGOpGLZm', '6083398'), + (40095, 458, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mGOpGLZm', '6093504'), + (40096, 458, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mGOpGLZm', '6097414'), + (40097, 458, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mGOpGLZm', '6097442'), + (40098, 458, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mGOpGLZm', '6097684'), + (40099, 458, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mGOpGLZm', '6098762'), + (40100, 458, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mGOpGLZm', '6101361'), + (40101, 458, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mGOpGLZm', '6101362'), + (40102, 458, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mGOpGLZm', '6103752'), + (40103, 458, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mGOpGLZm', '6107314'), + (40104, 458, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mGOpGLZm', '6120034'), + (40105, 458, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mGOpGLZm', '6136733'), + (40106, 458, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mGOpGLZm', '6137989'), + (40107, 458, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mGOpGLZm', '6150864'), + (40108, 458, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mGOpGLZm', '6155491'), + (40109, 458, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mGOpGLZm', '6164417'), + (40110, 458, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mGOpGLZm', '6166388'), + (40111, 458, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mGOpGLZm', '6176439'), + (40112, 459, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AQ0675xm', '6342044'), + (40113, 459, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'AQ0675xm', '6343294'), + (40114, 459, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AQ0675xm', '6347034'), + (40115, 459, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AQ0675xm', '6347056'), + (40116, 459, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AQ0675xm', '6353830'), + (40117, 459, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AQ0675xm', '6353831'), + (40118, 459, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AQ0675xm', '6357867'), + (40119, 459, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AQ0675xm', '6358652'), + (40120, 459, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'AQ0675xm', '6361709'), + (40121, 459, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AQ0675xm', '6361710'), + (40122, 459, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AQ0675xm', '6361711'), + (40123, 459, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AQ0675xm', '6361712'), + (40124, 459, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AQ0675xm', '6361713'), + (40125, 459, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AQ0675xm', '6382573'), + (40126, 459, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'AQ0675xm', '6388604'), + (40127, 459, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AQ0675xm', '6394629'), + (40128, 459, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AQ0675xm', '6394631'), + (40129, 459, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'AQ0675xm', '6431478'), + (40130, 460, 991, 'maybe', '2021-09-11 20:07:53', '2025-12-17 19:47:43', 'dwYlB71A', '4420738'), + (40131, 460, 992, 'not_attending', '2021-09-18 23:08:55', '2025-12-17 19:47:34', 'dwYlB71A', '4420739'), + (40132, 460, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dwYlB71A', '4420741'), + (40133, 460, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dwYlB71A', '4420744'), + (40134, 460, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dwYlB71A', '4420747'), + (40135, 460, 1015, 'attending', '2021-09-12 19:19:21', '2025-12-17 19:47:43', 'dwYlB71A', '4440800'), + (40136, 460, 1023, 'maybe', '2021-09-13 20:19:29', '2025-12-17 19:47:43', 'dwYlB71A', '4461883'), + (40137, 460, 1025, 'maybe', '2021-09-14 16:29:30', '2025-12-17 19:47:43', 'dwYlB71A', '4462052'), + (40138, 460, 1026, 'not_attending', '2021-09-30 02:53:42', '2025-12-17 19:47:43', 'dwYlB71A', '4472951'), + (40139, 460, 1027, 'attending', '2021-09-19 04:13:35', '2025-12-17 19:47:34', 'dwYlB71A', '4472982'), + (40140, 460, 1028, 'attending', '2021-09-19 04:13:39', '2025-12-17 19:47:34', 'dwYlB71A', '4472983'), + (40141, 460, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dwYlB71A', '4508342'), + (40142, 460, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dwYlB71A', '4568602'), + (40143, 460, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dwYlB71A', '6045684'), + (40144, 461, 1257, 'attending', '2022-03-13 16:27:57', '2025-12-17 19:47:33', 'mj68Y3bm', '5129274'), + (40145, 461, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'mj68Y3bm', '5132533'), + (40146, 461, 1265, 'maybe', '2022-03-12 00:33:42', '2025-12-17 19:47:33', 'mj68Y3bm', '5160862'), + (40147, 461, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj68Y3bm', '6045684'), + (40148, 462, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxMkLv1m', '6342044'), + (40149, 462, 2174, 'not_attending', '2023-07-26 20:15:40', '2025-12-17 19:46:54', 'dxMkLv1m', '6343294'), + (40150, 462, 2176, 'not_attending', '2023-07-27 17:23:49', '2025-12-17 19:46:54', 'dxMkLv1m', '6347034'), + (40151, 462, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxMkLv1m', '6353830'), + (40152, 462, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxMkLv1m', '6353831'), + (40153, 462, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxMkLv1m', '6357867'), + (40154, 462, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxMkLv1m', '6358652'), + (40155, 462, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'dxMkLv1m', '6361709'), + (40156, 462, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxMkLv1m', '6361710'), + (40157, 462, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxMkLv1m', '6361711'), + (40158, 462, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxMkLv1m', '6361712'), + (40159, 462, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxMkLv1m', '6361713'), + (40160, 462, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxMkLv1m', '6382573'), + (40161, 462, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dxMkLv1m', '6388604'), + (40162, 462, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxMkLv1m', '6394629'), + (40163, 462, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxMkLv1m', '6394631'), + (40164, 462, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxMkLv1m', '6431478'), + (40165, 463, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjYq0MVd', '6045684'), + (40166, 464, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dJrGrkbd', '5670445'), + (40167, 464, 1824, 'maybe', '2022-11-30 14:58:07', '2025-12-17 19:47:04', 'dJrGrkbd', '5774172'), + (40168, 464, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dJrGrkbd', '5818247'), + (40169, 464, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dJrGrkbd', '5819471'), + (40170, 464, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dJrGrkbd', '5827739'), + (40171, 464, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dJrGrkbd', '5844306'), + (40172, 464, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dJrGrkbd', '5850159'), + (40173, 464, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dJrGrkbd', '5858999'), + (40174, 464, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dJrGrkbd', '5871984'), + (40175, 464, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dJrGrkbd', '5876354'), + (40176, 464, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dJrGrkbd', '6045684'), + (40177, 465, 2075, 'maybe', '2023-06-30 10:59:50', '2025-12-17 19:46:50', 'mGGwaMrm', '6107314'), + (40178, 465, 2116, 'attending', '2023-07-07 11:09:05', '2025-12-17 19:46:51', 'mGGwaMrm', '6163389'), + (40179, 465, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mGGwaMrm', '6176439'), + (40180, 465, 2125, 'attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'mGGwaMrm', '6177485'), + (40181, 465, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mGGwaMrm', '6182410'), + (40182, 465, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mGGwaMrm', '6185812'), + (40183, 465, 2132, 'attending', '2023-07-09 11:47:57', '2025-12-17 19:46:52', 'mGGwaMrm', '6187015'), + (40184, 465, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mGGwaMrm', '6187651'), + (40185, 465, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mGGwaMrm', '6187963'), + (40186, 465, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mGGwaMrm', '6187964'), + (40187, 465, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mGGwaMrm', '6187966'), + (40188, 465, 2137, 'attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mGGwaMrm', '6187967'), + (40189, 465, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mGGwaMrm', '6187969'), + (40190, 465, 2139, 'not_attending', '2023-07-09 20:13:10', '2025-12-17 19:46:52', 'mGGwaMrm', '6188027'), + (40191, 465, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mGGwaMrm', '6334878'), + (40192, 465, 2148, 'attending', '2023-07-09 20:17:30', '2025-12-17 19:46:53', 'mGGwaMrm', '6335667'), + (40193, 465, 2149, 'attending', '2023-07-11 19:09:52', '2025-12-17 19:46:53', 'mGGwaMrm', '6335682'), + (40194, 465, 2152, 'attending', '2023-07-11 09:07:43', '2025-12-17 19:46:52', 'mGGwaMrm', '6337021'), + (40195, 465, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mGGwaMrm', '6337236'), + (40196, 465, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mGGwaMrm', '6337970'), + (40197, 465, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mGGwaMrm', '6338308'), + (40198, 465, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mGGwaMrm', '6340845'), + (40199, 465, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mGGwaMrm', '6341710'), + (40200, 465, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mGGwaMrm', '6342044'), + (40201, 465, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mGGwaMrm', '6342298'), + (40202, 465, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mGGwaMrm', '6343294'), + (40203, 465, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mGGwaMrm', '6347034'), + (40204, 465, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mGGwaMrm', '6347056'), + (40205, 465, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mGGwaMrm', '6353830'), + (40206, 465, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mGGwaMrm', '6353831'), + (40207, 465, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mGGwaMrm', '6357867'), + (40208, 465, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mGGwaMrm', '6358652'), + (40209, 465, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mGGwaMrm', '6361709'), + (40210, 465, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mGGwaMrm', '6361710'), + (40211, 465, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mGGwaMrm', '6361711'), + (40212, 465, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mGGwaMrm', '6361712'), + (40213, 465, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mGGwaMrm', '6361713'), + (40214, 465, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mGGwaMrm', '6382573'), + (40215, 465, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mGGwaMrm', '6388604'), + (40216, 465, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mGGwaMrm', '6394629'), + (40217, 465, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mGGwaMrm', '6394631'), + (40218, 465, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mGGwaMrm', '6440863'), + (40219, 465, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mGGwaMrm', '6445440'), + (40220, 465, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mGGwaMrm', '6453951'), + (40221, 465, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mGGwaMrm', '6461696'), + (40222, 465, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mGGwaMrm', '6462129'), + (40223, 465, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mGGwaMrm', '6463218'), + (40224, 465, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mGGwaMrm', '6472181'), + (40225, 465, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mGGwaMrm', '6482693'), + (40226, 465, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mGGwaMrm', '6484200'), + (40227, 465, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mGGwaMrm', '6484680'), + (40228, 465, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mGGwaMrm', '6507741'), + (40229, 465, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mGGwaMrm', '6514659'), + (40230, 465, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mGGwaMrm', '6514660'), + (40231, 465, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mGGwaMrm', '6519103'), + (40232, 465, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mGGwaMrm', '6535681'), + (40233, 465, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mGGwaMrm', '6584747'), + (40234, 465, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mGGwaMrm', '6587097'), + (40235, 465, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mGGwaMrm', '6609022'), + (40236, 465, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mGGwaMrm', '6632757'), + (40237, 465, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mGGwaMrm', '6644187'), + (40238, 465, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mGGwaMrm', '6648951'), + (40239, 465, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mGGwaMrm', '6648952'), + (40240, 465, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mGGwaMrm', '6655401'), + (40241, 465, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mGGwaMrm', '6661585'), + (40242, 465, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mGGwaMrm', '6661588'), + (40243, 465, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mGGwaMrm', '6661589'), + (40244, 465, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mGGwaMrm', '6699906'), + (40245, 465, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mGGwaMrm', '6701109'), + (40246, 465, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mGGwaMrm', '6705219'), + (40247, 465, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mGGwaMrm', '6710153'), + (40248, 465, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mGGwaMrm', '6711552'), + (40249, 465, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mGGwaMrm', '6711553'), + (40250, 466, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41YVG154', '5630960'), + (40251, 466, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41YVG154', '5630961'), + (40252, 466, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41YVG154', '5630962'), + (40253, 466, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41YVG154', '5630966'), + (40254, 466, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41YVG154', '5630967'), + (40255, 466, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41YVG154', '5630968'), + (40256, 466, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', '41YVG154', '5638765'), + (40257, 466, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41YVG154', '5640097'), + (40258, 466, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41YVG154', '5640843'), + (40259, 466, 1741, 'attending', '2022-10-10 13:15:27', '2025-12-17 19:47:12', '41YVG154', '5641132'), + (40260, 466, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41YVG154', '5641521'), + (40261, 466, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41YVG154', '5642818'), + (40262, 466, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41YVG154', '5652395'), + (40263, 466, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41YVG154', '5670445'), + (40264, 466, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41YVG154', '5671637'), + (40265, 466, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41YVG154', '5672329'), + (40266, 466, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41YVG154', '5674057'), + (40267, 466, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41YVG154', '5674060'), + (40268, 466, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41YVG154', '5677461'), + (40269, 466, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41YVG154', '5698046'), + (40270, 466, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', '41YVG154', '5699760'), + (40271, 466, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41YVG154', '5741601'), + (40272, 466, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41YVG154', '5763458'), + (40273, 466, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41YVG154', '5774172'), + (40274, 466, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '41YVG154', '5818247'), + (40275, 466, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41YVG154', '5819471'), + (40276, 466, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41YVG154', '5827739'), + (40277, 466, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41YVG154', '5844306'), + (40278, 466, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41YVG154', '5850159'), + (40279, 466, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41YVG154', '5858999'), + (40280, 466, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41YVG154', '5871984'), + (40281, 466, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41YVG154', '5876354'), + (40282, 466, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41YVG154', '5880939'), + (40283, 466, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41YVG154', '5887890'), + (40284, 466, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41YVG154', '5888598'), + (40285, 466, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41YVG154', '5893260'), + (40286, 466, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41YVG154', '6045684'), + (40287, 467, 707, 'not_attending', '2021-04-14 12:59:50', '2025-12-17 19:47:46', '0mq8bX5d', '3583262'), + (40288, 467, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mq8bX5d', '6045684'), + (40289, 468, 1, 'attending', '2020-03-19 03:08:17', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958042'), + (40290, 468, 2, 'attending', '2020-03-19 03:08:33', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958044'), + (40291, 468, 4, 'attending', '2020-03-19 03:08:35', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958046'), + (40292, 468, 5, 'attending', '2020-03-19 03:08:39', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958047'), + (40293, 468, 7, 'maybe', '2020-03-19 16:57:01', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958049'), + (40294, 468, 8, 'attending', '2020-03-19 03:08:47', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958050'), + (40295, 468, 10, 'attending', '2020-03-28 22:00:34', '2025-12-17 19:47:56', 'NmLXw9Nm', '2958053'), + (40296, 468, 11, 'attending', '2020-03-19 16:57:46', '2025-12-17 19:47:57', 'NmLXw9Nm', '2958055'), + (40297, 468, 12, 'attending', '2020-03-19 16:57:30', '2025-12-17 19:47:56', 'NmLXw9Nm', '2958056'), + (40298, 468, 13, 'attending', '2020-03-23 03:14:08', '2025-12-17 19:47:57', 'NmLXw9Nm', '2958057'), + (40299, 468, 15, 'attending', '2020-04-03 05:12:23', '2025-12-17 19:47:57', 'NmLXw9Nm', '2958059'), + (40300, 468, 16, 'not_attending', '2020-03-26 23:06:41', '2025-12-17 19:47:56', 'NmLXw9Nm', '2958060'), + (40301, 468, 17, 'attending', '2020-03-19 16:56:11', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958061'), + (40302, 468, 23, 'attending', '2020-06-11 23:41:41', '2025-12-17 19:47:58', 'NmLXw9Nm', '2958067'), + (40303, 468, 28, 'attending', '2020-03-28 17:11:20', '2025-12-17 19:47:56', 'NmLXw9Nm', '2960421'), + (40304, 468, 29, 'attending', '2020-03-30 20:18:17', '2025-12-17 19:47:56', 'NmLXw9Nm', '2961309'), + (40305, 468, 30, 'not_attending', '2020-04-02 16:56:30', '2025-12-17 19:47:57', 'NmLXw9Nm', '2961895'), + (40306, 468, 32, 'attending', '2020-03-31 21:05:42', '2025-12-17 19:47:56', 'NmLXw9Nm', '2963931'), + (40307, 468, 33, 'attending', '2020-04-04 17:45:58', '2025-12-17 19:47:57', 'NmLXw9Nm', '2963932'), + (40308, 468, 34, 'not_attending', '2020-03-26 23:06:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '2966259'), + (40309, 468, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'NmLXw9Nm', '2969208'), + (40310, 468, 39, 'attending', '2020-04-04 17:44:43', '2025-12-17 19:47:57', 'NmLXw9Nm', '2970637'), + (40311, 468, 41, 'attending', '2020-04-03 05:12:26', '2025-12-17 19:47:57', 'NmLXw9Nm', '2971546'), + (40312, 468, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'NmLXw9Nm', '2974534'), + (40313, 468, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'NmLXw9Nm', '2974955'), + (40314, 468, 51, 'attending', '2020-06-30 01:58:35', '2025-12-17 19:47:55', 'NmLXw9Nm', '2975276'), + (40315, 468, 55, 'not_attending', '2020-04-06 16:10:23', '2025-12-17 19:47:57', 'NmLXw9Nm', '2975384'), + (40316, 468, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'NmLXw9Nm', '2975385'), + (40317, 468, 57, 'attending', '2020-04-27 22:38:47', '2025-12-17 19:47:57', 'NmLXw9Nm', '2976575'), + (40318, 468, 58, 'maybe', '2020-04-19 07:25:09', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977127'), + (40319, 468, 60, 'maybe', '2020-04-28 16:08:01', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977129'), + (40320, 468, 61, 'attending', '2020-04-14 16:31:14', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977130'), + (40321, 468, 62, 'not_attending', '2020-05-08 18:31:10', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977131'), + (40322, 468, 65, 'attending', '2020-05-24 17:54:38', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977134'), + (40323, 468, 66, 'attending', '2020-06-09 20:24:49', '2025-12-17 19:47:58', 'NmLXw9Nm', '2977135'), + (40324, 468, 68, 'attending', '2020-06-19 02:00:12', '2025-12-17 19:47:58', 'NmLXw9Nm', '2977137'), + (40325, 468, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977343'), + (40326, 468, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977812'), + (40327, 468, 73, 'attending', '2020-04-14 05:39:07', '2025-12-17 19:47:57', 'NmLXw9Nm', '2977931'), + (40328, 468, 74, 'attending', '2020-04-10 19:42:54', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978244'), + (40329, 468, 75, 'attending', '2020-04-24 01:23:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978245'), + (40330, 468, 76, 'not_attending', '2020-05-02 20:07:21', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978246'), + (40331, 468, 77, 'not_attending', '2020-05-09 07:13:26', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978247'), + (40332, 468, 78, 'attending', '2020-05-23 21:50:30', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978249'), + (40333, 468, 79, 'attending', '2020-05-30 21:01:35', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978250'), + (40334, 468, 80, 'attending', '2020-06-06 02:50:27', '2025-12-17 19:47:58', 'NmLXw9Nm', '2978251'), + (40335, 468, 82, 'maybe', '2020-04-19 07:25:16', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978433'), + (40336, 468, 83, 'not_attending', '2020-05-08 22:49:39', '2025-12-17 19:47:57', 'NmLXw9Nm', '2978438'), + (40337, 468, 84, 'maybe', '2020-04-19 07:25:04', '2025-12-17 19:47:57', 'NmLXw9Nm', '2980871'), + (40338, 468, 85, 'attending', '2020-04-22 22:18:28', '2025-12-17 19:47:57', 'NmLXw9Nm', '2980872'), + (40339, 468, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'NmLXw9Nm', '2981388'), + (40340, 468, 87, 'attending', '2020-04-24 01:23:38', '2025-12-17 19:47:57', 'NmLXw9Nm', '2982602'), + (40341, 468, 88, 'attending', '2020-04-14 18:04:00', '2025-12-17 19:47:57', 'NmLXw9Nm', '2982603'), + (40342, 468, 89, 'not_attending', '2020-05-02 20:07:18', '2025-12-17 19:47:57', 'NmLXw9Nm', '2982604'), + (40343, 468, 91, 'attending', '2020-04-17 20:03:40', '2025-12-17 19:47:57', 'NmLXw9Nm', '2985130'), + (40344, 468, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2986743'), + (40345, 468, 96, 'attending', '2020-04-19 23:53:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2987453'), + (40346, 468, 100, 'attending', '2020-04-24 00:45:20', '2025-12-17 19:47:57', 'NmLXw9Nm', '2989142'), + (40347, 468, 101, 'attending', '2020-04-21 21:44:21', '2025-12-17 19:47:57', 'NmLXw9Nm', '2989975'), + (40348, 468, 104, 'attending', '2020-04-24 15:50:55', '2025-12-17 19:47:57', 'NmLXw9Nm', '2991471'), + (40349, 468, 106, 'attending', '2020-04-26 22:34:22', '2025-12-17 19:47:57', 'NmLXw9Nm', '2993501'), + (40350, 468, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'NmLXw9Nm', '2994480'), + (40351, 468, 110, 'attending', '2020-05-03 18:39:42', '2025-12-17 19:47:57', 'NmLXw9Nm', '2994906'), + (40352, 468, 111, 'attending', '2020-06-06 02:50:21', '2025-12-17 19:47:58', 'NmLXw9Nm', '2994907'), + (40353, 468, 112, 'maybe', '2020-07-05 16:55:51', '2025-12-17 19:47:55', 'NmLXw9Nm', '2994908'), + (40354, 468, 113, 'attending', '2020-07-16 18:52:18', '2025-12-17 19:47:56', 'NmLXw9Nm', '2994909'), + (40355, 468, 115, 'not_attending', '2020-05-16 17:32:08', '2025-12-17 19:47:57', 'NmLXw9Nm', '3001217'), + (40356, 468, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'NmLXw9Nm', '3015486'), + (40357, 468, 121, 'not_attending', '2020-05-27 15:46:44', '2025-12-17 19:47:57', 'NmLXw9Nm', '3023063'), + (40358, 468, 123, 'attending', '2020-05-15 03:39:21', '2025-12-17 19:47:57', 'NmLXw9Nm', '3023729'), + (40359, 468, 124, 'attending', '2020-05-15 03:39:19', '2025-12-17 19:47:57', 'NmLXw9Nm', '3023809'), + (40360, 468, 128, 'attending', '2020-05-23 21:50:32', '2025-12-17 19:47:57', 'NmLXw9Nm', '3027185'), + (40361, 468, 133, 'attending', '2020-05-23 21:50:24', '2025-12-17 19:47:58', 'NmLXw9Nm', '3034321'), + (40362, 468, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'NmLXw9Nm', '3035881'), + (40363, 468, 139, 'not_attending', '2020-06-14 23:07:58', '2025-12-17 19:47:58', 'NmLXw9Nm', '3046190'), + (40364, 468, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'NmLXw9Nm', '3049983'), + (40365, 468, 146, 'attending', '2020-06-27 18:25:24', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058683'), + (40366, 468, 147, 'attending', '2020-08-05 18:44:19', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058684'), + (40367, 468, 148, 'attending', '2020-07-04 02:25:22', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058685'), + (40368, 468, 149, 'attending', '2020-07-06 00:45:03', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058686'), + (40369, 468, 150, 'attending', '2020-07-06 00:44:46', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058687'), + (40370, 468, 151, 'maybe', '2020-08-05 18:44:23', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058688'), + (40371, 468, 152, 'attending', '2020-08-31 00:05:00', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058689'), + (40372, 468, 153, 'not_attending', '2020-07-30 05:18:10', '2025-12-17 19:47:55', 'NmLXw9Nm', '3058690'), + (40373, 468, 154, 'attending', '2020-07-06 00:44:56', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058691'), + (40374, 468, 155, 'attending', '2020-08-15 18:06:43', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058692'), + (40375, 468, 156, 'attending', '2020-09-11 17:20:31', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058693'), + (40376, 468, 157, 'attending', '2020-09-08 01:39:43', '2025-12-17 19:47:56', 'NmLXw9Nm', '3058694'), + (40377, 468, 158, 'attending', '2020-09-23 22:04:19', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058695'), + (40378, 468, 159, 'attending', '2020-09-27 17:14:10', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058696'), + (40379, 468, 160, 'attending', '2020-10-24 15:07:49', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058697'), + (40380, 468, 161, 'attending', '2020-10-09 17:54:24', '2025-12-17 19:47:52', 'NmLXw9Nm', '3058698'), + (40381, 468, 164, 'attending', '2020-11-13 21:04:30', '2025-12-17 19:47:54', 'NmLXw9Nm', '3058701'), + (40382, 468, 165, 'attending', '2020-11-07 23:48:11', '2025-12-17 19:47:53', 'NmLXw9Nm', '3058702'), + (40383, 468, 166, 'attending', '2020-11-14 23:23:23', '2025-12-17 19:47:54', 'NmLXw9Nm', '3058704'), + (40384, 468, 167, 'attending', '2020-11-14 23:23:24', '2025-12-17 19:47:54', 'NmLXw9Nm', '3058705'), + (40385, 468, 171, 'attending', '2020-06-11 20:54:40', '2025-12-17 19:47:58', 'NmLXw9Nm', '3058743'), + (40386, 468, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'NmLXw9Nm', '3058959'), + (40387, 468, 173, 'attending', '2020-06-19 22:39:31', '2025-12-17 19:47:58', 'NmLXw9Nm', '3067093'), + (40388, 468, 175, 'attending', '2020-06-08 22:27:19', '2025-12-17 19:47:58', 'NmLXw9Nm', '3068305'), + (40389, 468, 181, 'attending', '2020-06-18 19:19:48', '2025-12-17 19:47:58', 'NmLXw9Nm', '3074513'), + (40390, 468, 182, 'attending', '2020-06-27 18:25:37', '2025-12-17 19:47:55', 'NmLXw9Nm', '3074514'), + (40391, 468, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'NmLXw9Nm', '3075228'), + (40392, 468, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'NmLXw9Nm', '3075456'), + (40393, 468, 186, 'attending', '2020-06-18 19:20:12', '2025-12-17 19:47:55', 'NmLXw9Nm', '3083791'), + (40394, 468, 187, 'attending', '2020-06-18 22:37:32', '2025-12-17 19:47:55', 'NmLXw9Nm', '3085151'), + (40395, 468, 189, 'attending', '2020-06-20 02:18:34', '2025-12-17 19:47:58', 'NmLXw9Nm', '3087016'), + (40396, 468, 190, 'not_attending', '2020-07-04 02:25:05', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087258'), + (40397, 468, 191, 'attending', '2020-07-04 02:25:23', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087259'), + (40398, 468, 192, 'not_attending', '2020-07-18 20:56:53', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087260'), + (40399, 468, 193, 'attending', '2020-07-06 00:44:45', '2025-12-17 19:47:55', 'NmLXw9Nm', '3087261'), + (40400, 468, 194, 'not_attending', '2020-07-30 05:18:05', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087262'), + (40401, 468, 195, 'attending', '2020-07-06 00:44:54', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087264'), + (40402, 468, 196, 'not_attending', '2020-08-15 18:06:38', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087265'), + (40403, 468, 197, 'attending', '2020-08-05 18:44:26', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087266'), + (40404, 468, 198, 'not_attending', '2020-08-27 18:53:39', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087267'), + (40405, 468, 199, 'attending', '2020-08-31 00:04:58', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087268'), + (40406, 468, 200, 'attending', '2020-09-01 17:34:54', '2025-12-17 19:47:56', 'NmLXw9Nm', '3087269'), + (40407, 468, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'NmLXw9Nm', '3088653'), + (40408, 468, 203, 'attending', '2020-06-22 06:42:35', '2025-12-17 19:47:58', 'NmLXw9Nm', '3091624'), + (40409, 468, 207, 'maybe', '2020-07-24 18:56:45', '2025-12-17 19:47:55', 'NmLXw9Nm', '3104807'), + (40410, 468, 208, 'attending', '2020-08-07 20:28:06', '2025-12-17 19:47:56', 'NmLXw9Nm', '3104808'), + (40411, 468, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'NmLXw9Nm', '3106813'), + (40412, 468, 210, 'attending', '2020-06-30 01:58:01', '2025-12-17 19:47:55', 'NmLXw9Nm', '3108972'), + (40413, 468, 211, 'attending', '2020-07-01 21:53:48', '2025-12-17 19:47:55', 'NmLXw9Nm', '3113785'), + (40414, 468, 213, 'attending', '2020-07-05 16:55:07', '2025-12-17 19:47:55', 'NmLXw9Nm', '3121083'), + (40415, 468, 219, 'not_attending', '2020-08-18 15:14:58', '2025-12-17 19:47:56', 'NmLXw9Nm', '3129263'), + (40416, 468, 223, 'attending', '2020-09-11 17:20:33', '2025-12-17 19:47:56', 'NmLXw9Nm', '3129980'), + (40417, 468, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'NmLXw9Nm', '3132817'), + (40418, 468, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'NmLXw9Nm', '3132820'), + (40419, 468, 229, 'attending', '2020-07-15 18:05:58', '2025-12-17 19:47:55', 'NmLXw9Nm', '3134135'), + (40420, 468, 230, 'attending', '2020-07-19 02:43:46', '2025-12-17 19:47:55', 'NmLXw9Nm', '3139232'), + (40421, 468, 232, 'attending', '2020-07-19 20:39:32', '2025-12-17 19:47:55', 'NmLXw9Nm', '3139770'), + (40422, 468, 233, 'attending', '2020-07-19 21:06:19', '2025-12-17 19:47:55', 'NmLXw9Nm', '3139773'), + (40423, 468, 235, 'not_attending', '2020-07-24 18:56:38', '2025-12-17 19:47:55', 'NmLXw9Nm', '3140861'), + (40424, 468, 236, 'attending', '2020-07-20 20:32:54', '2025-12-17 19:47:55', 'NmLXw9Nm', '3140873'), + (40425, 468, 241, 'attending', '2020-10-06 20:51:38', '2025-12-17 19:47:52', 'NmLXw9Nm', '3149472'), + (40426, 468, 242, 'not_attending', '2020-09-22 01:57:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3149473'), + (40427, 468, 263, 'attending', '2020-07-26 22:31:04', '2025-12-17 19:47:55', 'NmLXw9Nm', '3149671'), + (40428, 468, 267, 'maybe', '2020-07-29 22:34:19', '2025-12-17 19:47:55', 'NmLXw9Nm', '3152781'), + (40429, 468, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3155321'), + (40430, 468, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'NmLXw9Nm', '3162006'), + (40431, 468, 274, 'attending', '2020-08-03 20:07:05', '2025-12-17 19:47:56', 'NmLXw9Nm', '3163404'), + (40432, 468, 276, 'attending', '2020-08-04 22:52:20', '2025-12-17 19:47:56', 'NmLXw9Nm', '3163408'), + (40433, 468, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3163442'), + (40434, 468, 278, 'not_attending', '2020-08-08 03:11:21', '2025-12-17 19:47:56', 'NmLXw9Nm', '3165192'), + (40435, 468, 279, 'not_attending', '2020-08-08 03:11:32', '2025-12-17 19:47:56', 'NmLXw9Nm', '3165202'), + (40436, 468, 281, 'attending', '2020-08-05 18:43:54', '2025-12-17 19:47:56', 'NmLXw9Nm', '3166945'), + (40437, 468, 282, 'attending', '2020-08-06 21:17:00', '2025-12-17 19:47:56', 'NmLXw9Nm', '3169070'), + (40438, 468, 283, 'attending', '2020-08-08 02:55:22', '2025-12-17 19:47:56', 'NmLXw9Nm', '3169555'), + (40439, 468, 286, 'not_attending', '2020-08-19 06:19:52', '2025-12-17 19:47:56', 'NmLXw9Nm', '3170246'), + (40440, 468, 288, 'not_attending', '2020-08-19 06:19:47', '2025-12-17 19:47:56', 'NmLXw9Nm', '3170249'), + (40441, 468, 289, 'not_attending', '2020-08-28 20:53:23', '2025-12-17 19:47:56', 'NmLXw9Nm', '3170250'), + (40442, 468, 293, 'not_attending', '2020-08-13 21:01:26', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172832'), + (40443, 468, 294, 'not_attending', '2020-08-14 18:07:12', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172833'), + (40444, 468, 295, 'not_attending', '2020-08-19 06:19:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172834'), + (40445, 468, 296, 'not_attending', '2020-09-11 19:34:50', '2025-12-17 19:47:56', 'NmLXw9Nm', '3172876'), + (40446, 468, 299, 'not_attending', '2020-08-17 21:18:31', '2025-12-17 19:47:56', 'NmLXw9Nm', '3176591'), + (40447, 468, 303, 'not_attending', '2020-08-14 18:06:35', '2025-12-17 19:47:56', 'NmLXw9Nm', '3178444'), + (40448, 468, 305, 'attending', '2020-08-17 21:11:24', '2025-12-17 19:47:56', 'NmLXw9Nm', '3179555'), + (40449, 468, 306, 'not_attending', '2020-08-21 22:05:19', '2025-12-17 19:47:56', 'NmLXw9Nm', '3179777'), + (40450, 468, 307, 'attending', '2020-08-17 15:04:46', '2025-12-17 19:47:56', 'NmLXw9Nm', '3182590'), + (40451, 468, 309, 'not_attending', '2020-08-21 22:05:15', '2025-12-17 19:47:56', 'NmLXw9Nm', '3185332'), + (40452, 468, 311, 'attending', '2020-09-08 01:39:41', '2025-12-17 19:47:56', 'NmLXw9Nm', '3186057'), + (40453, 468, 314, 'not_attending', '2020-08-25 19:03:15', '2025-12-17 19:47:56', 'NmLXw9Nm', '3188480'), + (40454, 468, 315, 'attending', '2020-08-23 16:49:50', '2025-12-17 19:47:56', 'NmLXw9Nm', '3189085'), + (40455, 468, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'NmLXw9Nm', '3191735'), + (40456, 468, 318, 'attending', '2020-09-01 14:59:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3193885'), + (40457, 468, 322, 'not_attending', '2020-09-12 20:46:25', '2025-12-17 19:47:56', 'NmLXw9Nm', '3197080'), + (40458, 468, 323, 'not_attending', '2020-09-15 18:31:03', '2025-12-17 19:47:56', 'NmLXw9Nm', '3197081'), + (40459, 468, 325, 'not_attending', '2020-09-22 01:57:54', '2025-12-17 19:47:51', 'NmLXw9Nm', '3197083'), + (40460, 468, 326, 'not_attending', '2020-09-22 01:58:13', '2025-12-17 19:47:52', 'NmLXw9Nm', '3197084'), + (40461, 468, 330, 'attending', '2020-09-01 17:34:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3197322'), + (40462, 468, 333, 'not_attending', '2020-10-06 18:45:59', '2025-12-17 19:47:52', 'NmLXw9Nm', '3199782'), + (40463, 468, 334, 'not_attending', '2020-10-08 15:58:55', '2025-12-17 19:47:52', 'NmLXw9Nm', '3199784'), + (40464, 468, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'NmLXw9Nm', '3200209'), + (40465, 468, 336, 'not_attending', '2020-09-12 20:46:27', '2025-12-17 19:47:56', 'NmLXw9Nm', '3200495'), + (40466, 468, 338, 'attending', '2020-09-04 23:09:52', '2025-12-17 19:47:56', 'NmLXw9Nm', '3203106'), + (40467, 468, 339, 'not_attending', '2020-09-10 00:04:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3204469'), + (40468, 468, 340, 'not_attending', '2020-09-12 20:46:23', '2025-12-17 19:47:56', 'NmLXw9Nm', '3204470'), + (40469, 468, 341, 'not_attending', '2020-09-22 01:58:15', '2025-12-17 19:47:52', 'NmLXw9Nm', '3204471'), + (40470, 468, 342, 'attending', '2020-10-01 22:38:52', '2025-12-17 19:47:52', 'NmLXw9Nm', '3204472'), + (40471, 468, 343, 'not_attending', '2020-09-22 01:57:50', '2025-12-17 19:47:56', 'NmLXw9Nm', '3206759'), + (40472, 468, 346, 'attending', '2020-09-10 00:54:41', '2025-12-17 19:47:56', 'NmLXw9Nm', '3207515'), + (40473, 468, 347, 'not_attending', '2020-09-22 01:58:09', '2025-12-17 19:47:51', 'NmLXw9Nm', '3207930'), + (40474, 468, 349, 'attending', '2020-09-11 21:27:06', '2025-12-17 19:47:56', 'NmLXw9Nm', '3209194'), + (40475, 468, 352, 'not_attending', '2020-09-12 20:46:32', '2025-12-17 19:47:56', 'NmLXw9Nm', '3210514'), + (40476, 468, 353, 'attending', '2020-09-13 05:35:51', '2025-12-17 19:47:56', 'NmLXw9Nm', '3210789'), + (40477, 468, 354, 'attending', '2020-09-13 20:52:32', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212570'), + (40478, 468, 355, 'not_attending', '2020-09-15 18:30:48', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212571'), + (40479, 468, 356, 'not_attending', '2020-09-22 01:57:55', '2025-12-17 19:47:51', 'NmLXw9Nm', '3212572'), + (40480, 468, 358, 'not_attending', '2020-09-15 18:31:11', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212579'), + (40481, 468, 359, 'attending', '2020-09-13 21:48:17', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212624'), + (40482, 468, 360, 'attending', '2020-09-14 01:30:13', '2025-12-17 19:47:56', 'NmLXw9Nm', '3212671'), + (40483, 468, 361, 'attending', '2020-09-14 18:41:45', '2025-12-17 19:47:56', 'NmLXw9Nm', '3213323'), + (40484, 468, 362, 'attending', '2020-09-26 02:25:39', '2025-12-17 19:47:52', 'NmLXw9Nm', '3214207'), + (40485, 468, 363, 'not_attending', '2020-09-16 22:05:30', '2025-12-17 19:47:52', 'NmLXw9Nm', '3217037'), + (40486, 468, 364, 'attending', '2020-09-21 22:19:00', '2025-12-17 19:47:56', 'NmLXw9Nm', '3217106'), + (40487, 468, 365, 'not_attending', '2020-09-22 01:58:01', '2025-12-17 19:47:52', 'NmLXw9Nm', '3218510'), + (40488, 468, 366, 'not_attending', '2020-09-22 01:57:46', '2025-12-17 19:47:56', 'NmLXw9Nm', '3219750'), + (40489, 468, 367, 'not_attending', '2020-09-22 01:58:04', '2025-12-17 19:47:51', 'NmLXw9Nm', '3219751'), + (40490, 468, 375, 'not_attending', '2020-10-06 18:45:52', '2025-12-17 19:47:52', 'NmLXw9Nm', '3222825'), + (40491, 468, 378, 'not_attending', '2020-09-23 22:04:05', '2025-12-17 19:47:52', 'NmLXw9Nm', '3223725'), + (40492, 468, 379, 'attending', '2020-09-28 23:11:58', '2025-12-17 19:47:52', 'NmLXw9Nm', '3226266'), + (40493, 468, 381, 'attending', '2020-09-26 18:51:03', '2025-12-17 19:47:52', 'NmLXw9Nm', '3226871'), + (40494, 468, 384, 'attending', '2020-09-28 23:11:23', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228696'), + (40495, 468, 385, 'attending', '2020-09-28 23:14:30', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228698'), + (40496, 468, 386, 'attending', '2020-10-09 23:59:25', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228699'), + (40497, 468, 387, 'attending', '2020-09-28 23:16:37', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228700'), + (40498, 468, 388, 'attending', '2020-10-19 19:42:15', '2025-12-17 19:47:52', 'NmLXw9Nm', '3228701'), + (40499, 468, 389, 'attending', '2020-10-01 21:36:56', '2025-12-17 19:47:52', 'NmLXw9Nm', '3231284'), + (40500, 468, 394, 'not_attending', '2021-01-04 09:31:17', '2025-12-17 19:47:48', 'NmLXw9Nm', '3236449'), + (40501, 468, 397, 'not_attending', '2021-05-25 23:48:35', '2025-12-17 19:47:47', 'NmLXw9Nm', '3236452'), + (40502, 468, 399, 'attending', '2020-11-13 00:17:37', '2025-12-17 19:47:54', 'NmLXw9Nm', '3236454'), + (40503, 468, 400, 'not_attending', '2021-02-04 01:04:27', '2025-12-17 19:47:50', 'NmLXw9Nm', '3236455'), + (40504, 468, 408, 'not_attending', '2021-02-18 03:21:38', '2025-12-17 19:47:50', 'NmLXw9Nm', '3236466'), + (40505, 468, 412, 'not_attending', '2020-10-06 18:45:55', '2025-12-17 19:47:52', 'NmLXw9Nm', '3236636'), + (40506, 468, 415, 'attending', '2020-10-06 18:45:45', '2025-12-17 19:47:52', 'NmLXw9Nm', '3238044'), + (40507, 468, 416, 'not_attending', '2020-10-06 23:07:18', '2025-12-17 19:47:52', 'NmLXw9Nm', '3238073'), + (40508, 468, 420, 'attending', '2020-10-11 22:35:21', '2025-12-17 19:47:52', 'NmLXw9Nm', '3245293'), + (40509, 468, 421, 'attending', '2020-10-11 22:35:18', '2025-12-17 19:47:52', 'NmLXw9Nm', '3245294'), + (40510, 468, 422, 'attending', '2020-10-11 22:35:10', '2025-12-17 19:47:53', 'NmLXw9Nm', '3245295'), + (40511, 468, 423, 'attending', '2020-10-11 22:35:16', '2025-12-17 19:47:53', 'NmLXw9Nm', '3245296'), + (40512, 468, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLXw9Nm', '3245751'), + (40513, 468, 426, 'attending', '2020-10-17 04:45:50', '2025-12-17 19:47:52', 'NmLXw9Nm', '3250232'), + (40514, 468, 427, 'attending', '2020-10-14 14:37:36', '2025-12-17 19:47:53', 'NmLXw9Nm', '3250233'), + (40515, 468, 428, 'attending', '2020-10-16 20:05:29', '2025-12-17 19:47:53', 'NmLXw9Nm', '3250332'), + (40516, 468, 429, 'attending', '2020-11-02 01:49:21', '2025-12-17 19:47:54', 'NmLXw9Nm', '3250523'), + (40517, 468, 438, 'attending', '2020-10-28 22:58:15', '2025-12-17 19:47:53', 'NmLXw9Nm', '3256163'), + (40518, 468, 439, 'not_attending', '2020-10-28 21:05:39', '2025-12-17 19:47:53', 'NmLXw9Nm', '3256164'), + (40519, 468, 440, 'attending', '2020-10-18 16:07:14', '2025-12-17 19:47:53', 'NmLXw9Nm', '3256168'), + (40520, 468, 441, 'attending', '2020-10-18 16:11:00', '2025-12-17 19:47:54', 'NmLXw9Nm', '3256169'), + (40521, 468, 442, 'attending', '2020-10-22 00:40:01', '2025-12-17 19:47:52', 'NmLXw9Nm', '3260345'), + (40522, 468, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLXw9Nm', '3263578'), + (40523, 468, 444, 'attending', '2020-10-30 21:39:45', '2025-12-17 19:47:53', 'NmLXw9Nm', '3263745'), + (40524, 468, 445, 'not_attending', '2020-11-12 23:47:01', '2025-12-17 19:47:54', 'NmLXw9Nm', '3266138'), + (40525, 468, 446, 'attending', '2020-10-27 01:08:00', '2025-12-17 19:47:53', 'NmLXw9Nm', '3267163'), + (40526, 468, 451, 'not_attending', '2020-11-02 19:03:02', '2025-12-17 19:47:53', 'NmLXw9Nm', '3272186'), + (40527, 468, 455, 'not_attending', '2020-11-07 03:45:46', '2025-12-17 19:47:53', 'NmLXw9Nm', '3276391'), + (40528, 468, 456, 'attending', '2020-11-05 05:33:26', '2025-12-17 19:47:54', 'NmLXw9Nm', '3276428'), + (40529, 468, 458, 'not_attending', '2020-11-10 18:44:51', '2025-12-17 19:47:53', 'NmLXw9Nm', '3279233'), + (40530, 468, 459, 'attending', '2020-11-08 04:59:17', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281467'), + (40531, 468, 460, 'not_attending', '2020-11-19 22:33:30', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281468'), + (40532, 468, 461, 'attending', '2020-11-08 05:13:03', '2025-12-17 19:47:53', 'NmLXw9Nm', '3281469'), + (40533, 468, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'NmLXw9Nm', '3281470'), + (40534, 468, 464, 'not_attending', '2020-11-14 23:23:19', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281554'), + (40535, 468, 466, 'not_attending', '2020-11-14 23:23:08', '2025-12-17 19:47:54', 'NmLXw9Nm', '3281829'), + (40536, 468, 467, 'attending', '2020-11-09 00:14:41', '2025-12-17 19:47:54', 'NmLXw9Nm', '3282756'), + (40537, 468, 468, 'attending', '2020-11-10 22:36:41', '2025-12-17 19:47:54', 'NmLXw9Nm', '3285413'), + (40538, 468, 469, 'attending', '2020-11-10 22:37:10', '2025-12-17 19:47:54', 'NmLXw9Nm', '3285414'), + (40539, 468, 471, 'not_attending', '2020-11-14 23:23:12', '2025-12-17 19:47:54', 'NmLXw9Nm', '3285445'), + (40540, 468, 474, 'attending', '2020-11-11 23:24:04', '2025-12-17 19:47:54', 'NmLXw9Nm', '3286570'), + (40541, 468, 476, 'not_attending', '2020-11-14 23:23:10', '2025-12-17 19:47:54', 'NmLXw9Nm', '3286982'), + (40542, 468, 477, 'maybe', '2020-12-04 23:46:19', '2025-12-17 19:47:54', 'NmLXw9Nm', '3289559'), + (40543, 468, 479, 'attending', '2020-11-18 21:19:25', '2025-12-17 19:47:54', 'NmLXw9Nm', '3295306'), + (40544, 468, 481, 'not_attending', '2020-11-19 23:03:00', '2025-12-17 19:47:54', 'NmLXw9Nm', '3297764'), + (40545, 468, 483, 'attending', '2020-11-20 00:05:40', '2025-12-17 19:47:54', 'NmLXw9Nm', '3297791'), + (40546, 468, 484, 'not_attending', '2020-11-20 23:32:15', '2025-12-17 19:47:54', 'NmLXw9Nm', '3297792'), + (40547, 468, 487, 'attending', '2020-11-27 21:14:34', '2025-12-17 19:47:54', 'NmLXw9Nm', '3311122'), + (40548, 468, 488, 'attending', '2020-11-26 18:06:01', '2025-12-17 19:47:54', 'NmLXw9Nm', '3312757'), + (40549, 468, 493, 'attending', '2020-11-29 04:42:28', '2025-12-17 19:47:54', 'NmLXw9Nm', '3313856'), + (40550, 468, 496, 'attending', '2020-11-29 21:44:27', '2025-12-17 19:47:54', 'NmLXw9Nm', '3314269'), + (40551, 468, 497, 'attending', '2020-11-29 21:44:28', '2025-12-17 19:47:55', 'NmLXw9Nm', '3314270'), + (40552, 468, 498, 'attending', '2020-11-29 22:08:39', '2025-12-17 19:47:54', 'NmLXw9Nm', '3314302'), + (40553, 468, 499, 'attending', '2020-11-30 05:05:07', '2025-12-17 19:47:55', 'NmLXw9Nm', '3314909'), + (40554, 468, 500, 'maybe', '2020-12-14 20:47:15', '2025-12-17 19:47:55', 'NmLXw9Nm', '3314964'), + (40555, 468, 501, 'attending', '2020-12-02 03:26:07', '2025-12-17 19:47:54', 'NmLXw9Nm', '3317834'), + (40556, 468, 502, 'not_attending', '2020-12-11 23:52:10', '2025-12-17 19:47:55', 'NmLXw9Nm', '3323365'), + (40557, 468, 507, 'attending', '2020-12-07 20:47:28', '2025-12-17 19:47:48', 'NmLXw9Nm', '3324148'), + (40558, 468, 510, 'not_attending', '2021-01-27 07:06:18', '2025-12-17 19:47:49', 'NmLXw9Nm', '3324233'), + (40559, 468, 513, 'not_attending', '2020-12-20 00:13:43', '2025-12-17 19:47:55', 'NmLXw9Nm', '3329383'), + (40560, 468, 514, 'attending', '2020-12-10 19:14:50', '2025-12-17 19:47:55', 'NmLXw9Nm', '3329400'), + (40561, 468, 517, 'attending', '2020-12-14 20:50:28', '2025-12-17 19:47:48', 'NmLXw9Nm', '3337137'), + (40562, 468, 518, 'attending', '2020-12-14 20:50:27', '2025-12-17 19:47:48', 'NmLXw9Nm', '3337138'), + (40563, 468, 526, 'maybe', '2020-12-29 20:38:29', '2025-12-17 19:47:48', 'NmLXw9Nm', '3351539'), + (40564, 468, 528, 'attending', '2021-01-03 06:15:39', '2025-12-17 19:47:48', 'NmLXw9Nm', '3363022'), + (40565, 468, 529, 'not_attending', '2021-01-04 09:31:05', '2025-12-17 19:47:48', 'NmLXw9Nm', '3364568'), + (40566, 468, 530, 'not_attending', '2021-01-04 09:31:02', '2025-12-17 19:47:48', 'NmLXw9Nm', '3373923'), + (40567, 468, 531, 'not_attending', '2021-01-02 05:22:13', '2025-12-17 19:47:48', 'NmLXw9Nm', '3378210'), + (40568, 468, 532, 'not_attending', '2021-01-04 07:06:44', '2025-12-17 19:47:48', 'NmLXw9Nm', '3381412'), + (40569, 468, 533, 'not_attending', '2021-01-04 09:31:12', '2025-12-17 19:47:48', 'NmLXw9Nm', '3382812'), + (40570, 468, 535, 'not_attending', '2021-01-07 03:25:23', '2025-12-17 19:47:48', 'NmLXw9Nm', '3384729'), + (40571, 468, 536, 'attending', '2021-01-06 02:20:41', '2025-12-17 19:47:48', 'NmLXw9Nm', '3386848'), + (40572, 468, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'NmLXw9Nm', '3389527'), + (40573, 468, 541, 'attending', '2021-01-09 08:42:05', '2025-12-17 19:47:48', 'NmLXw9Nm', '3391683'), + (40574, 468, 542, 'attending', '2021-01-10 07:38:15', '2025-12-17 19:47:48', 'NmLXw9Nm', '3395013'), + (40575, 468, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'NmLXw9Nm', '3396499'), + (40576, 468, 545, 'attending', '2021-01-19 03:30:00', '2025-12-17 19:47:49', 'NmLXw9Nm', '3396502'), + (40577, 468, 546, 'not_attending', '2021-01-20 02:00:10', '2025-12-17 19:47:49', 'NmLXw9Nm', '3396503'), + (40578, 468, 547, 'maybe', '2021-01-20 05:08:07', '2025-12-17 19:47:49', 'NmLXw9Nm', '3396504'), + (40579, 468, 548, 'maybe', '2021-01-14 22:43:19', '2025-12-17 19:47:48', 'NmLXw9Nm', '3403650'), + (40580, 468, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'NmLXw9Nm', '3406988'), + (40581, 468, 550, 'not_attending', '2021-01-17 05:46:41', '2025-12-17 19:47:48', 'NmLXw9Nm', '3407018'), + (40582, 468, 553, 'maybe', '2021-01-14 22:43:17', '2025-12-17 19:47:48', 'NmLXw9Nm', '3407248'), + (40583, 468, 555, 'not_attending', '2021-01-23 22:22:05', '2025-12-17 19:47:49', 'NmLXw9Nm', '3416576'), + (40584, 468, 557, 'attending', '2021-01-21 00:59:00', '2025-12-17 19:47:49', 'NmLXw9Nm', '3418748'), + (40585, 468, 558, 'not_attending', '2021-01-22 23:54:23', '2025-12-17 19:47:49', 'NmLXw9Nm', '3418925'), + (40586, 468, 559, 'not_attending', '2021-01-27 07:06:12', '2025-12-17 19:47:49', 'NmLXw9Nm', '3421439'), + (40587, 468, 560, 'attending', '2021-01-21 21:03:57', '2025-12-17 19:47:49', 'NmLXw9Nm', '3421715'), + (40588, 468, 561, 'not_attending', '2021-01-23 22:22:03', '2025-12-17 19:47:49', 'NmLXw9Nm', '3421916'), + (40589, 468, 565, 'not_attending', '2021-01-27 07:05:58', '2025-12-17 19:47:49', 'NmLXw9Nm', '3426083'), + (40590, 468, 567, 'maybe', '2021-01-30 21:25:29', '2025-12-17 19:47:50', 'NmLXw9Nm', '3428895'), + (40591, 468, 568, 'attending', '2021-01-28 05:40:12', '2025-12-17 19:47:50', 'NmLXw9Nm', '3430267'), + (40592, 468, 569, 'not_attending', '2021-01-27 07:06:01', '2025-12-17 19:47:49', 'NmLXw9Nm', '3432673'), + (40593, 468, 570, 'attending', '2021-01-26 04:25:13', '2025-12-17 19:47:50', 'NmLXw9Nm', '3435538'), + (40594, 468, 571, 'not_attending', '2021-02-11 20:36:37', '2025-12-17 19:47:50', 'NmLXw9Nm', '3435539'), + (40595, 468, 573, 'not_attending', '2021-02-26 16:26:36', '2025-12-17 19:47:50', 'NmLXw9Nm', '3435542'), + (40596, 468, 575, 'attending', '2021-01-28 05:40:11', '2025-12-17 19:47:50', 'NmLXw9Nm', '3437492'), + (40597, 468, 576, 'not_attending', '2021-01-28 05:38:51', '2025-12-17 19:47:50', 'NmLXw9Nm', '3438748'), + (40598, 468, 577, 'not_attending', '2021-01-28 21:28:55', '2025-12-17 19:47:49', 'NmLXw9Nm', '3439167'), + (40599, 468, 578, 'not_attending', '2021-01-28 19:59:04', '2025-12-17 19:47:50', 'NmLXw9Nm', '3440043'), + (40600, 468, 579, 'not_attending', '2021-02-04 01:04:44', '2025-12-17 19:47:50', 'NmLXw9Nm', '3440978'), + (40601, 468, 581, 'attending', '2021-01-30 03:48:17', '2025-12-17 19:47:50', 'NmLXw9Nm', '3445029'), + (40602, 468, 582, 'attending', '2021-02-02 01:04:59', '2025-12-17 19:47:50', 'NmLXw9Nm', '3445769'), + (40603, 468, 583, 'attending', '2021-02-01 21:50:03', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449144'), + (40604, 468, 584, 'not_attending', '2021-02-04 01:04:24', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449466'), + (40605, 468, 588, 'not_attending', '2021-02-12 21:36:07', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449471'), + (40606, 468, 589, 'attending', '2021-02-20 04:03:44', '2025-12-17 19:47:50', 'NmLXw9Nm', '3449473'), + (40607, 468, 591, 'attending', '2021-02-04 19:45:01', '2025-12-17 19:47:50', 'NmLXw9Nm', '3465880'), + (40608, 468, 592, 'not_attending', '2021-02-23 03:46:29', '2025-12-17 19:47:50', 'NmLXw9Nm', '3467757'), + (40609, 468, 597, 'not_attending', '2021-03-11 20:06:58', '2025-12-17 19:47:51', 'NmLXw9Nm', '3467764'), + (40610, 468, 599, 'not_attending', '2021-02-15 23:35:56', '2025-12-17 19:47:50', 'NmLXw9Nm', '3468117'), + (40611, 468, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'NmLXw9Nm', '3468125'), + (40612, 468, 602, 'not_attending', '2021-02-11 04:05:06', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470303'), + (40613, 468, 603, 'attending', '2021-02-14 05:31:36', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470304'), + (40614, 468, 604, 'attending', '2021-02-27 21:22:56', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470305'), + (40615, 468, 605, 'attending', '2021-02-15 00:38:32', '2025-12-17 19:47:50', 'NmLXw9Nm', '3470991'), + (40616, 468, 607, 'not_attending', '2021-02-17 22:39:40', '2025-12-17 19:47:50', 'NmLXw9Nm', '3471882'), + (40617, 468, 608, 'attending', '2021-02-09 03:27:01', '2025-12-17 19:47:50', 'NmLXw9Nm', '3475332'), + (40618, 468, 609, 'not_attending', '2021-02-11 20:36:23', '2025-12-17 19:47:50', 'NmLXw9Nm', '3480916'), + (40619, 468, 610, 'attending', '2021-02-11 04:11:36', '2025-12-17 19:47:50', 'NmLXw9Nm', '3482159'), + (40620, 468, 611, 'attending', '2021-02-11 04:01:14', '2025-12-17 19:47:50', 'NmLXw9Nm', '3482659'), + (40621, 468, 612, 'attending', '2021-02-14 04:31:33', '2025-12-17 19:47:50', 'NmLXw9Nm', '3490040'), + (40622, 468, 613, 'attending', '2021-02-14 04:31:35', '2025-12-17 19:47:50', 'NmLXw9Nm', '3490041'), + (40623, 468, 614, 'attending', '2021-02-14 04:34:08', '2025-12-17 19:47:51', 'NmLXw9Nm', '3490042'), + (40624, 468, 615, 'not_attending', '2021-02-20 22:32:35', '2025-12-17 19:47:50', 'NmLXw9Nm', '3490045'), + (40625, 468, 616, 'attending', '2021-02-21 20:01:12', '2025-12-17 19:47:50', 'NmLXw9Nm', '3493478'), + (40626, 468, 618, 'attending', '2021-02-19 20:19:08', '2025-12-17 19:47:50', 'NmLXw9Nm', '3503991'), + (40627, 468, 619, 'attending', '2021-02-20 22:53:43', '2025-12-17 19:47:50', 'NmLXw9Nm', '3506310'), + (40628, 468, 621, 'attending', '2021-03-01 20:30:21', '2025-12-17 19:47:51', 'NmLXw9Nm', '3517815'), + (40629, 468, 622, 'attending', '2021-03-10 20:38:59', '2025-12-17 19:47:51', 'NmLXw9Nm', '3517816'), + (40630, 468, 623, 'not_attending', '2021-02-28 21:45:43', '2025-12-17 19:47:51', 'NmLXw9Nm', '3523941'), + (40631, 468, 624, 'attending', '2021-02-27 21:22:52', '2025-12-17 19:47:50', 'NmLXw9Nm', '3528556'), + (40632, 468, 625, 'attending', '2021-02-28 21:05:50', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533296'), + (40633, 468, 626, 'attending', '2021-02-28 21:05:49', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533298'), + (40634, 468, 627, 'attending', '2021-02-28 21:16:03', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533303'), + (40635, 468, 628, 'attending', '2021-02-28 21:17:19', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533305'), + (40636, 468, 629, 'attending', '2021-02-28 22:42:48', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533307'), + (40637, 468, 631, 'maybe', '2021-03-06 22:46:36', '2025-12-17 19:47:51', 'NmLXw9Nm', '3533850'), + (40638, 468, 637, 'attending', '2021-03-01 18:27:35', '2025-12-17 19:47:51', 'NmLXw9Nm', '3536411'), + (40639, 468, 638, 'attending', '2021-03-01 18:41:29', '2025-12-17 19:47:44', 'NmLXw9Nm', '3536632'), + (40640, 468, 639, 'maybe', '2021-03-21 06:03:30', '2025-12-17 19:47:51', 'NmLXw9Nm', '3536656'), + (40641, 468, 641, 'attending', '2021-03-21 22:58:08', '2025-12-17 19:47:44', 'NmLXw9Nm', '3539916'), + (40642, 468, 642, 'attending', '2021-04-09 20:10:06', '2025-12-17 19:47:44', 'NmLXw9Nm', '3539917'), + (40643, 468, 643, 'attending', '2021-04-15 23:09:26', '2025-12-17 19:47:45', 'NmLXw9Nm', '3539918'), + (40644, 468, 644, 'attending', '2021-04-21 21:59:32', '2025-12-17 19:47:45', 'NmLXw9Nm', '3539919'), + (40645, 468, 645, 'attending', '2021-05-06 20:44:31', '2025-12-17 19:47:46', 'NmLXw9Nm', '3539920'), + (40646, 468, 646, 'attending', '2021-05-06 20:44:39', '2025-12-17 19:47:46', 'NmLXw9Nm', '3539921'), + (40647, 468, 647, 'not_attending', '2021-05-20 21:34:35', '2025-12-17 19:47:46', 'NmLXw9Nm', '3539922'), + (40648, 468, 648, 'attending', '2021-05-29 16:06:58', '2025-12-17 19:47:47', 'NmLXw9Nm', '3539923'), + (40649, 468, 649, 'attending', '2021-03-11 20:07:04', '2025-12-17 19:47:51', 'NmLXw9Nm', '3539927'), + (40650, 468, 650, 'not_attending', '2021-03-27 21:32:12', '2025-12-17 19:47:44', 'NmLXw9Nm', '3539928'), + (40651, 468, 651, 'attending', '2021-03-10 20:39:29', '2025-12-17 19:47:51', 'NmLXw9Nm', '3541045'), + (40652, 468, 652, 'attending', '2021-03-05 20:05:26', '2025-12-17 19:47:51', 'NmLXw9Nm', '3544466'), + (40653, 468, 653, 'attending', '2021-03-06 23:38:13', '2025-12-17 19:47:51', 'NmLXw9Nm', '3546917'), + (40654, 468, 655, 'attending', '2021-03-11 20:07:08', '2025-12-17 19:47:51', 'NmLXw9Nm', '3547129'), + (40655, 468, 656, 'attending', '2021-03-11 20:07:06', '2025-12-17 19:47:51', 'NmLXw9Nm', '3547130'), + (40656, 468, 657, 'attending', '2021-04-17 18:16:04', '2025-12-17 19:47:45', 'NmLXw9Nm', '3547132'), + (40657, 468, 659, 'attending', '2021-04-10 21:41:30', '2025-12-17 19:47:44', 'NmLXw9Nm', '3547135'), + (40658, 468, 661, 'attending', '2021-03-21 22:58:17', '2025-12-17 19:47:44', 'NmLXw9Nm', '3547137'), + (40659, 468, 662, 'maybe', '2021-04-24 21:56:10', '2025-12-17 19:47:45', 'NmLXw9Nm', '3547138'), + (40660, 468, 664, 'attending', '2021-09-11 00:49:47', '2025-12-17 19:47:43', 'NmLXw9Nm', '3547142'), + (40661, 468, 665, 'attending', '2021-08-29 22:35:59', '2025-12-17 19:47:43', 'NmLXw9Nm', '3547143'), + (40662, 468, 667, 'maybe', '2021-08-27 17:24:30', '2025-12-17 19:47:42', 'NmLXw9Nm', '3547145'), + (40663, 468, 668, 'not_attending', '2021-05-15 18:02:24', '2025-12-17 19:47:46', 'NmLXw9Nm', '3547146'), + (40664, 468, 669, 'attending', '2021-06-26 18:01:04', '2025-12-17 19:47:38', 'NmLXw9Nm', '3547147'), + (40665, 468, 670, 'attending', '2021-06-15 20:10:11', '2025-12-17 19:47:48', 'NmLXw9Nm', '3547148'), + (40666, 468, 672, 'not_attending', '2021-05-21 02:06:28', '2025-12-17 19:47:46', 'NmLXw9Nm', '3547150'), + (40667, 468, 677, 'attending', '2021-05-29 21:19:28', '2025-12-17 19:47:47', 'NmLXw9Nm', '3547155'), + (40668, 468, 679, 'attending', '2021-03-12 02:14:41', '2025-12-17 19:47:44', 'NmLXw9Nm', '3547168'), + (40669, 468, 680, 'attending', '2021-03-07 05:19:04', '2025-12-17 19:47:51', 'NmLXw9Nm', '3547700'), + (40670, 468, 683, 'not_attending', '2021-03-11 07:37:23', '2025-12-17 19:47:51', 'NmLXw9Nm', '3548818'), + (40671, 468, 684, 'not_attending', '2021-03-11 20:06:56', '2025-12-17 19:47:51', 'NmLXw9Nm', '3549257'), + (40672, 468, 686, 'attending', '2021-03-09 19:54:24', '2025-12-17 19:47:51', 'NmLXw9Nm', '3553333'), + (40673, 468, 687, 'not_attending', '2021-03-09 21:52:26', '2025-12-17 19:47:51', 'NmLXw9Nm', '3553405'), + (40674, 468, 690, 'not_attending', '2021-03-15 18:04:09', '2025-12-17 19:47:44', 'NmLXw9Nm', '3559954'), + (40675, 468, 692, 'attending', '2021-03-13 22:34:22', '2025-12-17 19:47:51', 'NmLXw9Nm', '3561995'), + (40676, 468, 695, 'attending', '2021-03-14 05:34:10', '2025-12-17 19:47:51', 'NmLXw9Nm', '3567535'), + (40677, 468, 696, 'attending', '2021-03-14 05:37:37', '2025-12-17 19:47:51', 'NmLXw9Nm', '3567536'), + (40678, 468, 697, 'attending', '2021-03-14 05:48:48', '2025-12-17 19:47:44', 'NmLXw9Nm', '3567537'), + (40679, 468, 705, 'attending', '2021-03-19 17:01:14', '2025-12-17 19:47:44', 'NmLXw9Nm', '3581895'), + (40680, 468, 706, 'not_attending', '2021-04-18 16:38:44', '2025-12-17 19:47:45', 'NmLXw9Nm', '3582734'), + (40681, 468, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLXw9Nm', '3583262'), + (40682, 468, 711, 'attending', '2021-03-22 05:29:15', '2025-12-17 19:47:44', 'NmLXw9Nm', '3588075'), + (40683, 468, 716, 'attending', '2021-03-25 06:25:50', '2025-12-17 19:47:44', 'NmLXw9Nm', '3618353'), + (40684, 468, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLXw9Nm', '3619523'), + (40685, 468, 720, 'attending', '2021-03-29 01:26:44', '2025-12-17 19:47:44', 'NmLXw9Nm', '3643450'), + (40686, 468, 721, 'attending', '2021-03-29 03:56:15', '2025-12-17 19:47:44', 'NmLXw9Nm', '3643622'), + (40687, 468, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLXw9Nm', '3661369'), + (40688, 468, 728, 'not_attending', '2021-04-14 21:50:02', '2025-12-17 19:47:44', 'NmLXw9Nm', '3668073'), + (40689, 468, 730, 'not_attending', '2021-05-03 03:47:51', '2025-12-17 19:47:46', 'NmLXw9Nm', '3668076'), + (40690, 468, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLXw9Nm', '3674262'), + (40691, 468, 734, 'attending', '2021-04-04 20:34:44', '2025-12-17 19:47:44', 'NmLXw9Nm', '3676806'), + (40692, 468, 735, 'not_attending', '2021-05-02 18:36:10', '2025-12-17 19:47:46', 'NmLXw9Nm', '3677402'), + (40693, 468, 740, 'not_attending', '2021-04-13 18:40:01', '2025-12-17 19:47:46', 'NmLXw9Nm', '3680617'), + (40694, 468, 750, 'attending', '2021-04-09 20:32:25', '2025-12-17 19:47:44', 'NmLXw9Nm', '3689962'), + (40695, 468, 752, 'not_attending', '2021-04-15 23:09:07', '2025-12-17 19:47:44', 'NmLXw9Nm', '3699422'), + (40696, 468, 753, 'not_attending', '2021-04-17 17:09:25', '2025-12-17 19:47:45', 'NmLXw9Nm', '3701861'), + (40697, 468, 754, 'attending', '2021-04-12 04:39:41', '2025-12-17 19:47:45', 'NmLXw9Nm', '3701863'), + (40698, 468, 755, 'not_attending', '2021-04-17 18:24:26', '2025-12-17 19:47:45', 'NmLXw9Nm', '3701864'), + (40699, 468, 762, 'attending', '2021-04-17 18:23:40', '2025-12-17 19:47:45', 'NmLXw9Nm', '3719118'), + (40700, 468, 763, 'attending', '2021-04-17 18:25:07', '2025-12-17 19:47:46', 'NmLXw9Nm', '3719122'), + (40701, 468, 766, 'attending', '2021-05-12 21:53:31', '2025-12-17 19:47:46', 'NmLXw9Nm', '3721383'), + (40702, 468, 771, 'attending', '2021-04-19 21:21:53', '2025-12-17 19:47:46', 'NmLXw9Nm', '3726420'), + (40703, 468, 772, 'attending', '2021-04-19 21:23:12', '2025-12-17 19:47:46', 'NmLXw9Nm', '3726421'), + (40704, 468, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLXw9Nm', '3730212'), + (40705, 468, 777, 'attending', '2021-04-26 20:29:48', '2025-12-17 19:47:46', 'NmLXw9Nm', '3746248'), + (40706, 468, 779, 'attending', '2021-04-28 02:32:14', '2025-12-17 19:47:46', 'NmLXw9Nm', '3757118'), + (40707, 468, 780, 'attending', '2021-04-28 02:34:16', '2025-12-17 19:47:46', 'NmLXw9Nm', '3757175'), + (40708, 468, 783, 'attending', '2021-05-01 00:36:06', '2025-12-17 19:47:46', 'NmLXw9Nm', '3767471'), + (40709, 468, 785, 'attending', '2021-05-04 19:10:53', '2025-12-17 19:47:46', 'NmLXw9Nm', '3779779'), + (40710, 468, 786, 'attending', '2021-05-04 20:59:49', '2025-12-17 19:47:46', 'NmLXw9Nm', '3780093'), + (40711, 468, 788, 'maybe', '2021-05-05 20:22:19', '2025-12-17 19:47:46', 'NmLXw9Nm', '3781975'), + (40712, 468, 790, 'not_attending', '2021-05-07 21:40:56', '2025-12-17 19:47:46', 'NmLXw9Nm', '3789923'), + (40713, 468, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLXw9Nm', '3793156'), + (40714, 468, 794, 'not_attending', '2021-05-25 23:48:30', '2025-12-17 19:47:47', 'NmLXw9Nm', '3793538'), + (40715, 468, 797, 'not_attending', '2021-05-25 23:48:27', '2025-12-17 19:47:47', 'NmLXw9Nm', '3796195'), + (40716, 468, 813, 'not_attending', '2021-05-15 18:02:21', '2025-12-17 19:47:46', 'NmLXw9Nm', '3810231'), + (40717, 468, 815, 'not_attending', '2021-05-25 23:48:24', '2025-12-17 19:47:47', 'NmLXw9Nm', '3818136'), + (40718, 468, 816, 'not_attending', '2021-05-18 20:25:59', '2025-12-17 19:47:46', 'NmLXw9Nm', '3826524'), + (40719, 468, 818, 'attending', '2021-05-21 02:12:38', '2025-12-17 19:47:47', 'NmLXw9Nm', '3833015'), + (40720, 468, 819, 'attending', '2021-05-25 03:26:07', '2025-12-17 19:47:47', 'NmLXw9Nm', '3833017'), + (40721, 468, 822, 'attending', '2021-06-03 03:59:40', '2025-12-17 19:47:47', 'NmLXw9Nm', '3969986'), + (40722, 468, 823, 'attending', '2021-06-15 20:10:14', '2025-12-17 19:47:48', 'NmLXw9Nm', '3974109'), + (40723, 468, 826, 'attending', '2021-06-06 02:51:34', '2025-12-17 19:47:48', 'NmLXw9Nm', '3975310'), + (40724, 468, 827, 'attending', '2021-06-01 20:31:19', '2025-12-17 19:47:47', 'NmLXw9Nm', '3975311'), + (40725, 468, 828, 'maybe', '2021-06-12 18:53:03', '2025-12-17 19:47:47', 'NmLXw9Nm', '3975312'), + (40726, 468, 834, 'not_attending', '2021-06-09 18:02:51', '2025-12-17 19:47:47', 'NmLXw9Nm', '3990439'), + (40727, 468, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLXw9Nm', '3994992'), + (40728, 468, 839, 'attending', '2021-06-06 19:03:54', '2025-12-17 19:47:47', 'NmLXw9Nm', '4002121'), + (40729, 468, 841, 'attending', '2021-06-08 02:13:17', '2025-12-17 19:47:48', 'NmLXw9Nm', '4007434'), + (40730, 468, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLXw9Nm', '4014338'), + (40731, 468, 867, 'attending', '2021-06-21 18:48:10', '2025-12-17 19:47:38', 'NmLXw9Nm', '4021848'), + (40732, 468, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLXw9Nm', '4136744'), + (40733, 468, 870, 'attending', '2021-07-03 20:43:20', '2025-12-17 19:47:39', 'NmLXw9Nm', '4136937'), + (40734, 468, 871, 'attending', '2021-07-05 22:46:43', '2025-12-17 19:47:39', 'NmLXw9Nm', '4136938'), + (40735, 468, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'NmLXw9Nm', '4136947'), + (40736, 468, 879, 'not_attending', '2021-06-28 01:06:41', '2025-12-17 19:47:38', 'NmLXw9Nm', '4147806'), + (40737, 468, 880, 'not_attending', '2021-06-19 19:15:27', '2025-12-17 19:47:48', 'NmLXw9Nm', '4205383'), + (40738, 468, 881, 'attending', '2021-06-18 18:40:54', '2025-12-17 19:47:38', 'NmLXw9Nm', '4205662'), + (40739, 468, 882, 'attending', '2021-06-19 19:19:18', '2025-12-17 19:47:38', 'NmLXw9Nm', '4207630'), + (40740, 468, 884, 'attending', '2021-08-05 22:26:11', '2025-12-17 19:47:42', 'NmLXw9Nm', '4210314'), + (40741, 468, 885, 'attending', '2021-06-25 01:29:43', '2025-12-17 19:47:38', 'NmLXw9Nm', '4222370'), + (40742, 468, 886, 'attending', '2021-06-25 01:30:51', '2025-12-17 19:47:38', 'NmLXw9Nm', '4222371'), + (40743, 468, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLXw9Nm', '4225444'), + (40744, 468, 897, 'attending', '2021-06-28 01:06:00', '2025-12-17 19:47:38', 'NmLXw9Nm', '4232132'), + (40745, 468, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLXw9Nm', '4239259'), + (40746, 468, 900, 'attending', '2021-07-24 21:16:55', '2025-12-17 19:47:40', 'NmLXw9Nm', '4240316'), + (40747, 468, 901, 'attending', '2021-07-31 21:51:28', '2025-12-17 19:47:40', 'NmLXw9Nm', '4240317'), + (40748, 468, 902, 'attending', '2021-08-04 07:07:53', '2025-12-17 19:47:41', 'NmLXw9Nm', '4240318'), + (40749, 468, 903, 'attending', '2021-08-11 19:31:05', '2025-12-17 19:47:42', 'NmLXw9Nm', '4240320'), + (40750, 468, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmLXw9Nm', '4250163'), + (40751, 468, 906, 'attending', '2021-07-05 17:29:50', '2025-12-17 19:47:39', 'NmLXw9Nm', '4253431'), + (40752, 468, 913, 'attending', '2021-07-11 21:06:27', '2025-12-17 19:47:39', 'NmLXw9Nm', '4273765'), + (40753, 468, 914, 'attending', '2021-07-14 02:19:38', '2025-12-17 19:47:39', 'NmLXw9Nm', '4273767'), + (40754, 468, 915, 'attending', '2021-07-11 21:08:41', '2025-12-17 19:47:39', 'NmLXw9Nm', '4273770'), + (40755, 468, 916, 'attending', '2021-07-11 21:09:24', '2025-12-17 19:47:40', 'NmLXw9Nm', '4273772'), + (40756, 468, 917, 'attending', '2021-07-11 23:23:41', '2025-12-17 19:47:39', 'NmLXw9Nm', '4274481'), + (40757, 468, 919, 'attending', '2021-07-17 17:43:20', '2025-12-17 19:47:39', 'NmLXw9Nm', '4275957'), + (40758, 468, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'NmLXw9Nm', '4277819'), + (40759, 468, 927, 'attending', '2021-07-29 18:45:02', '2025-12-17 19:47:40', 'NmLXw9Nm', '4297216'), + (40760, 468, 929, 'attending', '2021-07-30 04:55:34', '2025-12-17 19:47:41', 'NmLXw9Nm', '4297223'), + (40761, 468, 932, 'attending', '2021-07-22 22:55:17', '2025-12-17 19:47:42', 'NmLXw9Nm', '4301664'), + (40762, 468, 933, 'maybe', '2021-07-27 03:53:43', '2025-12-17 19:47:40', 'NmLXw9Nm', '4301723'), + (40763, 468, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmLXw9Nm', '4302093'), + (40764, 468, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLXw9Nm', '4304151'), + (40765, 468, 936, 'attending', '2021-07-24 21:22:41', '2025-12-17 19:47:40', 'NmLXw9Nm', '4305951'), + (40766, 468, 937, 'attending', '2021-07-24 01:00:07', '2025-12-17 19:47:40', 'NmLXw9Nm', '4306596'), + (40767, 468, 938, 'attending', '2021-07-24 01:00:37', '2025-12-17 19:47:40', 'NmLXw9Nm', '4306597'), + (40768, 468, 940, 'not_attending', '2021-07-30 05:51:15', '2025-12-17 19:47:40', 'NmLXw9Nm', '4309049'), + (40769, 468, 942, 'attending', '2021-07-25 22:41:21', '2025-12-17 19:47:40', 'NmLXw9Nm', '4310297'), + (40770, 468, 957, 'attending', '2021-08-04 20:54:49', '2025-12-17 19:47:41', 'NmLXw9Nm', '4338834'), + (40771, 468, 961, 'attending', '2021-08-13 18:27:01', '2025-12-17 19:47:41', 'NmLXw9Nm', '4345519'), + (40772, 468, 962, 'attending', '2021-08-12 22:46:44', '2025-12-17 19:47:41', 'NmLXw9Nm', '4346305'), + (40773, 468, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLXw9Nm', '4356801'), + (40774, 468, 972, 'attending', '2021-08-12 17:10:36', '2025-12-17 19:47:42', 'NmLXw9Nm', '4358025'), + (40775, 468, 973, 'attending', '2021-08-16 20:41:46', '2025-12-17 19:47:42', 'NmLXw9Nm', '4366186'), + (40776, 468, 974, 'maybe', '2021-08-27 17:24:25', '2025-12-17 19:47:43', 'NmLXw9Nm', '4366187'), + (40777, 468, 976, 'not_attending', '2021-08-19 21:55:54', '2025-12-17 19:47:42', 'NmLXw9Nm', '4373933'), + (40778, 468, 979, 'attending', '2021-08-21 17:26:40', '2025-12-17 19:47:42', 'NmLXw9Nm', '4379085'), + (40779, 468, 982, 'not_attending', '2021-08-27 17:24:28', '2025-12-17 19:47:42', 'NmLXw9Nm', '4389739'), + (40780, 468, 986, 'attending', '2021-08-21 17:24:40', '2025-12-17 19:47:42', 'NmLXw9Nm', '4394209'), + (40781, 468, 988, 'not_attending', '2021-08-24 16:32:16', '2025-12-17 19:47:42', 'NmLXw9Nm', '4402823'), + (40782, 468, 990, 'attending', '2021-08-28 22:26:44', '2025-12-17 19:47:43', 'NmLXw9Nm', '4420735'), + (40783, 468, 991, 'attending', '2021-08-28 22:26:59', '2025-12-17 19:47:43', 'NmLXw9Nm', '4420738'), + (40784, 468, 992, 'attending', '2021-08-28 22:27:26', '2025-12-17 19:47:33', 'NmLXw9Nm', '4420739'), + (40785, 468, 993, 'maybe', '2021-09-22 23:14:29', '2025-12-17 19:47:34', 'NmLXw9Nm', '4420741'), + (40786, 468, 994, 'attending', '2021-10-02 02:30:03', '2025-12-17 19:47:34', 'NmLXw9Nm', '4420742'), + (40787, 468, 995, 'not_attending', '2021-10-09 16:56:06', '2025-12-17 19:47:34', 'NmLXw9Nm', '4420744'), + (40788, 468, 996, 'attending', '2021-08-28 22:27:56', '2025-12-17 19:47:35', 'NmLXw9Nm', '4420747'), + (40789, 468, 997, 'attending', '2021-08-28 22:28:03', '2025-12-17 19:47:35', 'NmLXw9Nm', '4420748'), + (40790, 468, 998, 'not_attending', '2021-10-30 20:05:49', '2025-12-17 19:47:36', 'NmLXw9Nm', '4420749'), + (40791, 468, 999, 'attending', '2021-08-31 19:44:32', '2025-12-17 19:47:43', 'NmLXw9Nm', '4421150'), + (40792, 468, 1009, 'attending', '2021-10-11 22:16:37', '2025-12-17 19:47:34', 'NmLXw9Nm', '4438811'), + (40793, 468, 1016, 'attending', '2021-09-03 15:11:38', '2025-12-17 19:47:43', 'NmLXw9Nm', '4441271'), + (40794, 468, 1020, 'not_attending', '2021-09-13 15:56:45', '2025-12-17 19:47:43', 'NmLXw9Nm', '4451787'), + (40795, 468, 1022, 'attending', '2021-09-15 22:59:36', '2025-12-17 19:47:43', 'NmLXw9Nm', '4458628'), + (40796, 468, 1023, 'not_attending', '2021-09-09 19:53:26', '2025-12-17 19:47:43', 'NmLXw9Nm', '4461883'), + (40797, 468, 1025, 'attending', '2021-09-10 04:40:29', '2025-12-17 19:47:43', 'NmLXw9Nm', '4462052'), + (40798, 468, 1029, 'attending', '2021-09-12 17:45:20', '2025-12-17 19:47:43', 'NmLXw9Nm', '4473063'), + (40799, 468, 1030, 'attending', '2021-09-12 17:45:57', '2025-12-17 19:47:34', 'NmLXw9Nm', '4473064'), + (40800, 468, 1035, 'attending', '2021-09-19 18:20:10', '2025-12-17 19:47:34', 'NmLXw9Nm', '4492184'), + (40801, 468, 1040, 'attending', '2021-12-08 07:16:38', '2025-12-17 19:47:38', 'NmLXw9Nm', '4496605'), + (40802, 468, 1041, 'maybe', '2021-12-04 03:56:18', '2025-12-17 19:47:37', 'NmLXw9Nm', '4496606'), + (40803, 468, 1043, 'attending', '2021-10-23 20:13:30', '2025-12-17 19:47:35', 'NmLXw9Nm', '4496608'), + (40804, 468, 1044, 'maybe', '2021-11-06 21:18:36', '2025-12-17 19:47:36', 'NmLXw9Nm', '4496609'), + (40805, 468, 1051, 'attending', '2022-02-02 20:19:53', '2025-12-17 19:47:32', 'NmLXw9Nm', '4496616'), + (40806, 468, 1052, 'attending', '2022-01-11 01:01:34', '2025-12-17 19:47:31', 'NmLXw9Nm', '4496617'), + (40807, 468, 1053, 'attending', '2022-02-19 19:22:07', '2025-12-17 19:47:32', 'NmLXw9Nm', '4496618'), + (40808, 468, 1054, 'not_attending', '2022-03-19 04:45:33', '2025-12-17 19:47:25', 'NmLXw9Nm', '4496619'), + (40809, 468, 1055, 'attending', '2021-12-18 21:32:44', '2025-12-17 19:47:31', 'NmLXw9Nm', '4496621'), + (40810, 468, 1056, 'attending', '2022-01-08 23:36:27', '2025-12-17 19:47:31', 'NmLXw9Nm', '4496622'), + (40811, 468, 1059, 'attending', '2022-03-12 00:26:23', '2025-12-17 19:47:33', 'NmLXw9Nm', '4496626'), + (40812, 468, 1061, 'attending', '2022-02-09 20:16:40', '2025-12-17 19:47:32', 'NmLXw9Nm', '4496628'), + (40813, 468, 1062, 'attending', '2022-03-05 21:07:25', '2025-12-17 19:47:33', 'NmLXw9Nm', '4496629'), + (40814, 468, 1063, 'maybe', '2021-09-20 17:26:59', '2025-12-17 19:47:34', 'NmLXw9Nm', '4496630'), + (40815, 468, 1064, 'attending', '2021-09-21 21:59:14', '2025-12-17 19:47:34', 'NmLXw9Nm', '4499526'), + (40816, 468, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLXw9Nm', '4508342'), + (40817, 468, 1070, 'attending', '2021-09-24 23:12:49', '2025-12-17 19:47:34', 'NmLXw9Nm', '4512562'), + (40818, 468, 1072, 'maybe', '2021-10-06 22:42:03', '2025-12-17 19:47:34', 'NmLXw9Nm', '4516287'), + (40819, 468, 1077, 'maybe', '2021-10-13 00:21:16', '2025-12-17 19:47:34', 'NmLXw9Nm', '4540903'), + (40820, 468, 1085, 'attending', '2021-12-23 21:37:38', '2025-12-17 19:47:31', 'NmLXw9Nm', '4568542'), + (40821, 468, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLXw9Nm', '4568602'), + (40822, 468, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLXw9Nm', '4572153'), + (40823, 468, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmLXw9Nm', '4585962'), + (40824, 468, 1094, 'maybe', '2021-10-28 22:26:09', '2025-12-17 19:47:36', 'NmLXw9Nm', '4587337'), + (40825, 468, 1095, 'maybe', '2021-10-27 21:58:37', '2025-12-17 19:47:36', 'NmLXw9Nm', '4596356'), + (40826, 468, 1097, 'attending', '2021-11-03 20:56:31', '2025-12-17 19:47:36', 'NmLXw9Nm', '4598860'), + (40827, 468, 1098, 'maybe', '2021-10-28 02:52:01', '2025-12-17 19:47:36', 'NmLXw9Nm', '4598861'), + (40828, 468, 1099, 'attending', '2021-11-01 19:08:19', '2025-12-17 19:47:36', 'NmLXw9Nm', '4602797'), + (40829, 468, 1102, 'attending', '2021-11-04 03:59:16', '2025-12-17 19:47:37', 'NmLXw9Nm', '4612098'), + (40830, 468, 1107, 'attending', '2021-11-09 22:37:12', '2025-12-17 19:47:37', 'NmLXw9Nm', '4620697'), + (40831, 468, 1114, 'maybe', '2021-11-13 09:24:06', '2025-12-17 19:47:36', 'NmLXw9Nm', '4637896'), + (40832, 468, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLXw9Nm', '4642994'), + (40833, 468, 1117, 'maybe', '2021-12-08 07:16:28', '2025-12-17 19:47:38', 'NmLXw9Nm', '4642995'), + (40834, 468, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLXw9Nm', '4642996'), + (40835, 468, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLXw9Nm', '4642997'), + (40836, 468, 1126, 'attending', '2021-12-11 23:55:34', '2025-12-17 19:47:38', 'NmLXw9Nm', '4645687'), + (40837, 468, 1127, 'not_attending', '2021-12-12 20:50:16', '2025-12-17 19:47:38', 'NmLXw9Nm', '4645698'), + (40838, 468, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLXw9Nm', '4645704'), + (40839, 468, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLXw9Nm', '4645705'), + (40840, 468, 1130, 'not_attending', '2021-12-04 20:23:44', '2025-12-17 19:47:37', 'NmLXw9Nm', '4658824'), + (40841, 468, 1131, 'maybe', '2021-12-18 21:32:47', '2025-12-17 19:47:31', 'NmLXw9Nm', '4658825'), + (40842, 468, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLXw9Nm', '4668385'), + (40843, 468, 1144, 'attending', '2021-12-05 02:36:19', '2025-12-17 19:47:37', 'NmLXw9Nm', '4687090'), + (40844, 468, 1145, 'not_attending', '2021-12-08 07:16:22', '2025-12-17 19:47:38', 'NmLXw9Nm', '4691157'), + (40845, 468, 1146, 'not_attending', '2021-12-08 07:16:34', '2025-12-17 19:47:38', 'NmLXw9Nm', '4692841'), + (40846, 468, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLXw9Nm', '4694407'), + (40847, 468, 1156, 'not_attending', '2021-12-21 23:38:38', '2025-12-17 19:47:31', 'NmLXw9Nm', '4715207'), + (40848, 468, 1167, 'attending', '2021-12-31 23:56:01', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731015'), + (40849, 468, 1168, 'attending', '2021-12-31 23:57:05', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731043'), + (40850, 468, 1169, 'attending', '2021-12-31 23:57:53', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731044'), + (40851, 468, 1170, 'attending', '2021-12-31 23:59:34', '2025-12-17 19:47:31', 'NmLXw9Nm', '4731045'), + (40852, 468, 1173, 'attending', '2022-01-08 23:36:30', '2025-12-17 19:47:31', 'NmLXw9Nm', '4736495'), + (40853, 468, 1174, 'attending', '2022-01-11 01:01:33', '2025-12-17 19:47:31', 'NmLXw9Nm', '4736496'), + (40854, 468, 1175, 'attending', '2022-01-11 01:01:41', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736497'), + (40855, 468, 1176, 'attending', '2022-02-02 20:19:54', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736498'), + (40856, 468, 1177, 'attending', '2022-02-09 20:16:44', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736499'), + (40857, 468, 1178, 'attending', '2022-01-27 20:07:01', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736500'), + (40858, 468, 1179, 'attending', '2022-02-19 19:22:04', '2025-12-17 19:47:32', 'NmLXw9Nm', '4736501'), + (40859, 468, 1181, 'attending', '2022-03-05 23:51:57', '2025-12-17 19:47:33', 'NmLXw9Nm', '4736503'), + (40860, 468, 1182, 'maybe', '2022-03-12 23:29:22', '2025-12-17 19:47:33', 'NmLXw9Nm', '4736504'), + (40861, 468, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLXw9Nm', '4746789'), + (40862, 468, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmLXw9Nm', '4753929'), + (40863, 468, 1193, 'attending', '2022-01-13 03:02:16', '2025-12-17 19:47:32', 'NmLXw9Nm', '4759563'), + (40864, 468, 1201, 'attending', '2022-01-19 00:46:21', '2025-12-17 19:47:32', 'NmLXw9Nm', '4766841'), + (40865, 468, 1203, 'attending', '2022-01-21 23:23:39', '2025-12-17 19:47:32', 'NmLXw9Nm', '4773535'), + (40866, 468, 1204, 'attending', '2022-02-07 03:38:25', '2025-12-17 19:47:32', 'NmLXw9Nm', '4773576'), + (40867, 468, 1205, 'attending', '2022-03-12 00:01:38', '2025-12-17 19:47:33', 'NmLXw9Nm', '4773577'), + (40868, 468, 1206, 'attending', '2022-03-27 22:32:18', '2025-12-17 19:47:27', 'NmLXw9Nm', '4773578'), + (40869, 468, 1207, 'attending', '2022-04-27 17:50:44', '2025-12-17 19:47:28', 'NmLXw9Nm', '4773579'), + (40870, 468, 1219, 'maybe', '2022-02-03 00:34:43', '2025-12-17 19:47:32', 'NmLXw9Nm', '4788466'), + (40871, 468, 1220, 'attending', '2022-01-27 23:48:08', '2025-12-17 19:47:32', 'NmLXw9Nm', '4790257'), + (40872, 468, 1222, 'maybe', '2022-02-16 20:09:59', '2025-12-17 19:47:32', 'NmLXw9Nm', '5015628'), + (40873, 468, 1229, 'attending', '2022-02-06 22:43:44', '2025-12-17 19:47:32', 'NmLXw9Nm', '5034963'), + (40874, 468, 1232, 'not_attending', '2022-02-09 20:16:20', '2025-12-17 19:47:32', 'NmLXw9Nm', '5038850'), + (40875, 468, 1236, 'not_attending', '2022-02-17 19:19:11', '2025-12-17 19:47:32', 'NmLXw9Nm', '5045826'), + (40876, 468, 1252, 'attending', '2022-02-27 20:15:38', '2025-12-17 19:47:33', 'NmLXw9Nm', '5129121'), + (40877, 468, 1253, 'attending', '2022-02-27 20:17:24', '2025-12-17 19:47:33', 'NmLXw9Nm', '5129122'), + (40878, 468, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLXw9Nm', '5132533'), + (40879, 468, 1265, 'attending', '2022-03-11 00:06:58', '2025-12-17 19:47:33', 'NmLXw9Nm', '5160862'), + (40880, 468, 1267, 'not_attending', '2022-03-14 01:39:18', '2025-12-17 19:47:25', 'NmLXw9Nm', '5169578'), + (40881, 468, 1268, 'not_attending', '2022-03-14 01:39:04', '2025-12-17 19:47:33', 'NmLXw9Nm', '5176296'), + (40882, 468, 1269, 'attending', '2022-03-13 21:41:44', '2025-12-17 19:47:25', 'NmLXw9Nm', '5179439'), + (40883, 468, 1272, 'maybe', '2022-03-19 21:09:45', '2025-12-17 19:47:25', 'NmLXw9Nm', '5186582'), + (40884, 468, 1273, 'attending', '2022-03-26 17:04:46', '2025-12-17 19:47:25', 'NmLXw9Nm', '5186583'), + (40885, 468, 1274, 'attending', '2022-03-30 06:25:21', '2025-12-17 19:47:26', 'NmLXw9Nm', '5186585'), + (40886, 468, 1275, 'attending', '2022-03-30 06:25:27', '2025-12-17 19:47:26', 'NmLXw9Nm', '5186587'), + (40887, 468, 1278, 'not_attending', '2022-03-16 02:33:49', '2025-12-17 19:47:33', 'NmLXw9Nm', '5186920'), + (40888, 468, 1279, 'not_attending', '2022-03-16 02:33:54', '2025-12-17 19:47:25', 'NmLXw9Nm', '5187212'), + (40889, 468, 1280, 'not_attending', '2022-03-17 19:21:52', '2025-12-17 19:47:25', 'NmLXw9Nm', '5189749'), + (40890, 468, 1281, 'attending', '2022-04-09 20:58:33', '2025-12-17 19:47:27', 'NmLXw9Nm', '5190437'), + (40891, 468, 1282, 'not_attending', '2022-03-20 20:13:58', '2025-12-17 19:47:25', 'NmLXw9Nm', '5191241'), + (40892, 468, 1284, 'attending', '2022-04-06 19:03:24', '2025-12-17 19:47:27', 'NmLXw9Nm', '5195095'), + (40893, 468, 1287, 'attending', '2022-03-23 00:42:27', '2025-12-17 19:47:25', 'NmLXw9Nm', '5199425'), + (40894, 468, 1291, 'not_attending', '2022-03-24 02:37:44', '2025-12-17 19:47:25', 'NmLXw9Nm', '5200458'), + (40895, 468, 1293, 'attending', '2022-03-27 22:32:24', '2025-12-17 19:47:27', 'NmLXw9Nm', '5214641'), + (40896, 468, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'NmLXw9Nm', '5215989'), + (40897, 468, 1298, 'attending', '2022-03-29 07:13:49', '2025-12-17 19:47:25', 'NmLXw9Nm', '5216645'), + (40898, 468, 1300, 'attending', '2022-03-30 06:27:06', '2025-12-17 19:47:25', 'NmLXw9Nm', '5217936'), + (40899, 468, 1301, 'attending', '2022-04-01 22:49:57', '2025-12-17 19:47:26', 'NmLXw9Nm', '5218175'), + (40900, 468, 1303, 'attending', '2022-04-08 19:55:34', '2025-12-17 19:47:27', 'NmLXw9Nm', '5222531'), + (40901, 468, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLXw9Nm', '5223686'), + (40902, 468, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLXw9Nm', '5227432'), + (40903, 468, 1312, 'maybe', '2022-04-15 18:44:40', '2025-12-17 19:47:27', 'NmLXw9Nm', '5231459'), + (40904, 468, 1313, 'not_attending', '2022-04-08 03:38:52', '2025-12-17 19:47:27', 'NmLXw9Nm', '5231461'), + (40905, 468, 1314, 'attending', '2022-04-11 18:38:17', '2025-12-17 19:47:27', 'NmLXw9Nm', '5233137'), + (40906, 468, 1316, 'attending', '2022-04-10 21:42:30', '2025-12-17 19:47:27', 'NmLXw9Nm', '5237536'), + (40907, 468, 1319, 'not_attending', '2022-04-22 19:39:49', '2025-12-17 19:47:27', 'NmLXw9Nm', '5238353'), + (40908, 468, 1322, 'not_attending', '2022-04-26 03:20:42', '2025-12-17 19:47:27', 'NmLXw9Nm', '5238356'), + (40909, 468, 1328, 'attending', '2022-04-12 16:38:34', '2025-12-17 19:47:27', 'NmLXw9Nm', '5238759'), + (40910, 468, 1329, 'attending', '2022-04-12 16:38:29', '2025-12-17 19:47:27', 'NmLXw9Nm', '5240135'), + (40911, 468, 1330, 'not_attending', '2022-04-18 19:02:44', '2025-12-17 19:47:27', 'NmLXw9Nm', '5242155'), + (40912, 468, 1332, 'not_attending', '2022-04-15 18:44:31', '2025-12-17 19:47:27', 'NmLXw9Nm', '5243274'), + (40913, 468, 1333, 'not_attending', '2022-04-13 22:48:39', '2025-12-17 19:47:27', 'NmLXw9Nm', '5243711'), + (40914, 468, 1335, 'not_attending', '2022-04-14 22:36:46', '2025-12-17 19:47:27', 'NmLXw9Nm', '5244906'), + (40915, 468, 1336, 'attending', '2022-04-14 22:59:21', '2025-12-17 19:47:27', 'NmLXw9Nm', '5244915'), + (40916, 468, 1337, 'attending', '2022-04-20 16:09:37', '2025-12-17 19:47:27', 'NmLXw9Nm', '5245036'), + (40917, 468, 1340, 'attending', '2022-04-15 18:47:54', '2025-12-17 19:47:27', 'NmLXw9Nm', '5245754'), + (40918, 468, 1341, 'attending', '2022-04-15 18:49:13', '2025-12-17 19:47:28', 'NmLXw9Nm', '5245755'), + (40919, 468, 1345, 'attending', '2022-04-18 00:58:25', '2025-12-17 19:47:27', 'NmLXw9Nm', '5247466'), + (40920, 468, 1346, 'attending', '2022-04-22 19:39:28', '2025-12-17 19:47:27', 'NmLXw9Nm', '5247467'), + (40921, 468, 1349, 'attending', '2022-04-20 16:10:27', '2025-12-17 19:47:27', 'NmLXw9Nm', '5249631'), + (40922, 468, 1351, 'not_attending', '2022-05-02 01:48:32', '2025-12-17 19:47:28', 'NmLXw9Nm', '5251561'), + (40923, 468, 1352, 'not_attending', '2022-05-02 01:48:37', '2025-12-17 19:47:28', 'NmLXw9Nm', '5251618'), + (40924, 468, 1354, 'not_attending', '2022-04-23 20:49:40', '2025-12-17 19:47:27', 'NmLXw9Nm', '5252569'), + (40925, 468, 1355, 'attending', '2022-04-21 18:02:51', '2025-12-17 19:47:27', 'NmLXw9Nm', '5252573'), + (40926, 468, 1358, 'not_attending', '2022-04-26 03:20:36', '2025-12-17 19:47:27', 'NmLXw9Nm', '5258022'), + (40927, 468, 1359, 'not_attending', '2022-05-02 01:48:41', '2025-12-17 19:47:28', 'NmLXw9Nm', '5258360'), + (40928, 468, 1360, 'not_attending', '2022-04-26 03:20:29', '2025-12-17 19:47:27', 'NmLXw9Nm', '5260197'), + (40929, 468, 1362, 'attending', '2022-04-26 03:49:49', '2025-12-17 19:47:28', 'NmLXw9Nm', '5260800'), + (40930, 468, 1364, 'attending', '2022-04-26 03:41:44', '2025-12-17 19:47:28', 'NmLXw9Nm', '5261598'), + (40931, 468, 1365, 'attending', '2022-04-26 03:45:33', '2025-12-17 19:47:28', 'NmLXw9Nm', '5261600'), + (40932, 468, 1366, 'not_attending', '2022-04-26 21:17:54', '2025-12-17 19:47:27', 'NmLXw9Nm', '5262344'), + (40933, 468, 1367, 'not_attending', '2022-04-27 17:09:36', '2025-12-17 19:47:28', 'NmLXw9Nm', '5262345'), + (40934, 468, 1368, 'attending', '2022-04-26 20:35:41', '2025-12-17 19:47:28', 'NmLXw9Nm', '5262783'), + (40935, 468, 1369, 'attending', '2022-04-26 21:06:40', '2025-12-17 19:47:28', 'NmLXw9Nm', '5262809'), + (40936, 468, 1370, 'attending', '2022-04-27 16:56:20', '2025-12-17 19:47:28', 'NmLXw9Nm', '5263775'), + (40937, 468, 1371, 'attending', '2022-04-27 17:23:29', '2025-12-17 19:47:27', 'NmLXw9Nm', '5263784'), + (40938, 468, 1372, 'not_attending', '2022-05-02 01:48:43', '2025-12-17 19:47:28', 'NmLXw9Nm', '5264352'), + (40939, 468, 1374, 'attending', '2022-05-05 21:50:23', '2025-12-17 19:47:28', 'NmLXw9Nm', '5269930'), + (40940, 468, 1376, 'attending', '2022-05-02 01:56:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271446'), + (40941, 468, 1377, 'attending', '2022-05-02 01:57:41', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271447'), + (40942, 468, 1378, 'attending', '2022-05-02 02:08:53', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271448'), + (40943, 468, 1379, 'attending', '2022-05-21 22:18:42', '2025-12-17 19:47:29', 'NmLXw9Nm', '5271449'), + (40944, 468, 1380, 'attending', '2022-05-02 02:08:42', '2025-12-17 19:47:30', 'NmLXw9Nm', '5271450'), + (40945, 468, 1381, 'not_attending', '2022-05-02 02:28:49', '2025-12-17 19:47:28', 'NmLXw9Nm', '5271453'), + (40946, 468, 1382, 'not_attending', '2022-05-07 16:29:30', '2025-12-17 19:47:28', 'NmLXw9Nm', '5276350'), + (40947, 468, 1383, 'not_attending', '2022-05-06 22:42:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5276469'), + (40948, 468, 1385, 'not_attending', '2022-05-11 21:43:43', '2025-12-17 19:47:28', 'NmLXw9Nm', '5277822'), + (40949, 468, 1386, 'not_attending', '2022-05-06 20:39:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5278159'), + (40950, 468, 1387, 'not_attending', '2022-05-11 20:02:15', '2025-12-17 19:47:28', 'NmLXw9Nm', '5278173'), + (40951, 468, 1389, 'not_attending', '2022-05-07 16:29:25', '2025-12-17 19:47:28', 'NmLXw9Nm', '5278202'), + (40952, 468, 1391, 'not_attending', '2022-05-08 17:55:54', '2025-12-17 19:47:28', 'NmLXw9Nm', '5279531'), + (40953, 468, 1394, 'attending', '2022-05-07 01:44:29', '2025-12-17 19:47:30', 'NmLXw9Nm', '5280667'), + (40954, 468, 1395, 'attending', '2022-05-07 16:29:05', '2025-12-17 19:47:28', 'NmLXw9Nm', '5281102'), + (40955, 468, 1396, 'attending', '2022-05-14 17:36:28', '2025-12-17 19:47:28', 'NmLXw9Nm', '5281103'), + (40956, 468, 1397, 'attending', '2022-05-18 19:51:31', '2025-12-17 19:47:29', 'NmLXw9Nm', '5281104'), + (40957, 468, 1400, 'not_attending', '2022-05-14 06:22:35', '2025-12-17 19:47:29', 'NmLXw9Nm', '5284864'), + (40958, 468, 1401, 'not_attending', '2022-05-18 19:26:46', '2025-12-17 19:47:29', 'NmLXw9Nm', '5286295'), + (40959, 468, 1404, 'maybe', '2022-05-13 22:10:10', '2025-12-17 19:47:29', 'NmLXw9Nm', '5288114'), + (40960, 468, 1405, 'maybe', '2022-05-13 22:10:05', '2025-12-17 19:47:29', 'NmLXw9Nm', '5288115'), + (40961, 468, 1406, 'attending', '2022-05-13 22:10:19', '2025-12-17 19:47:29', 'NmLXw9Nm', '5288619'), + (40962, 468, 1407, 'attending', '2022-06-03 22:59:44', '2025-12-17 19:47:30', 'NmLXw9Nm', '5363695'), + (40963, 468, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLXw9Nm', '5365960'), + (40964, 468, 1414, 'not_attending', '2022-05-18 19:51:26', '2025-12-17 19:47:29', 'NmLXw9Nm', '5368445'), + (40965, 468, 1415, 'not_attending', '2022-05-19 16:17:09', '2025-12-17 19:47:30', 'NmLXw9Nm', '5368973'), + (40966, 468, 1416, 'attending', '2022-05-19 17:31:47', '2025-12-17 19:47:30', 'NmLXw9Nm', '5369628'), + (40967, 468, 1418, 'attending', '2022-05-23 01:51:52', '2025-12-17 19:47:30', 'NmLXw9Nm', '5372162'), + (40968, 468, 1419, 'maybe', '2022-06-08 03:48:40', '2025-12-17 19:47:30', 'NmLXw9Nm', '5373081'), + (40969, 468, 1424, 'not_attending', '2022-05-26 19:26:41', '2025-12-17 19:47:30', 'NmLXw9Nm', '5375772'), + (40970, 468, 1426, 'attending', '2022-05-24 04:57:58', '2025-12-17 19:47:30', 'NmLXw9Nm', '5375873'), + (40971, 468, 1427, 'maybe', '2022-05-25 18:32:04', '2025-12-17 19:47:30', 'NmLXw9Nm', '5376074'), + (40972, 468, 1428, 'attending', '2022-05-26 18:52:42', '2025-12-17 19:47:30', 'NmLXw9Nm', '5378247'), + (40973, 468, 1431, 'attending', '2022-05-30 04:55:29', '2025-12-17 19:47:30', 'NmLXw9Nm', '5389605'), + (40974, 468, 1437, 'attending', '2022-06-01 03:20:24', '2025-12-17 19:47:30', 'NmLXw9Nm', '5394493'), + (40975, 468, 1438, 'not_attending', '2022-06-01 18:38:53', '2025-12-17 19:47:30', 'NmLXw9Nm', '5395032'), + (40976, 468, 1439, 'attending', '2022-06-01 19:35:42', '2025-12-17 19:47:30', 'NmLXw9Nm', '5396072'), + (40977, 468, 1440, 'attending', '2022-06-01 20:19:01', '2025-12-17 19:47:30', 'NmLXw9Nm', '5396080'), + (40978, 468, 1442, 'maybe', '2022-06-12 16:53:49', '2025-12-17 19:47:17', 'NmLXw9Nm', '5397265'), + (40979, 468, 1444, 'attending', '2022-06-08 19:33:13', '2025-12-17 19:47:30', 'NmLXw9Nm', '5397614'), + (40980, 468, 1449, 'not_attending', '2022-06-14 21:50:27', '2025-12-17 19:47:31', 'NmLXw9Nm', '5403335'), + (40981, 468, 1451, 'not_attending', '2022-06-14 05:24:19', '2025-12-17 19:47:17', 'NmLXw9Nm', '5403967'), + (40982, 468, 1456, 'attending', '2022-06-09 23:00:08', '2025-12-17 19:47:17', 'NmLXw9Nm', '5404779'), + (40983, 468, 1457, 'attending', '2022-06-09 23:18:44', '2025-12-17 19:47:31', 'NmLXw9Nm', '5404780'), + (40984, 468, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLXw9Nm', '5404786'), + (40985, 468, 1460, 'not_attending', '2022-06-12 16:54:12', '2025-12-17 19:47:31', 'NmLXw9Nm', '5404817'), + (40986, 468, 1462, 'maybe', '2022-06-10 17:55:06', '2025-12-17 19:47:17', 'NmLXw9Nm', '5405203'), + (40987, 468, 1463, 'not_attending', '2022-06-14 21:50:30', '2025-12-17 19:47:31', 'NmLXw9Nm', '5405208'), + (40988, 468, 1465, 'maybe', '2022-06-12 03:50:30', '2025-12-17 19:47:31', 'NmLXw9Nm', '5406355'), + (40989, 468, 1466, 'not_attending', '2022-06-16 22:53:56', '2025-12-17 19:47:17', 'NmLXw9Nm', '5406427'), + (40990, 468, 1471, 'not_attending', '2022-06-21 17:38:09', '2025-12-17 19:47:17', 'NmLXw9Nm', '5407063'), + (40991, 468, 1473, 'not_attending', '2022-06-14 21:50:22', '2025-12-17 19:47:31', 'NmLXw9Nm', '5407267'), + (40992, 468, 1475, 'not_attending', '2022-06-14 21:50:38', '2025-12-17 19:47:17', 'NmLXw9Nm', '5408108'), + (40993, 468, 1477, 'maybe', '2022-06-21 17:38:13', '2025-12-17 19:47:17', 'NmLXw9Nm', '5408766'), + (40994, 468, 1478, 'maybe', '2022-06-15 15:54:35', '2025-12-17 19:47:19', 'NmLXw9Nm', '5408794'), + (40995, 468, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLXw9Nm', '5411699'), + (40996, 468, 1482, 'attending', '2022-06-20 02:55:01', '2025-12-17 19:47:19', 'NmLXw9Nm', '5412550'), + (40997, 468, 1483, 'attending', '2022-06-20 02:28:55', '2025-12-17 19:47:17', 'NmLXw9Nm', '5414556'), + (40998, 468, 1484, 'attending', '2022-06-20 20:40:27', '2025-12-17 19:47:17', 'NmLXw9Nm', '5415046'), + (40999, 468, 1485, 'attending', '2022-06-24 03:45:01', '2025-12-17 19:47:17', 'NmLXw9Nm', '5416276'), + (41000, 468, 1486, 'attending', '2022-06-21 20:51:49', '2025-12-17 19:47:19', 'NmLXw9Nm', '5416339'), + (41001, 468, 1488, 'attending', '2022-06-24 17:56:31', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420154'), + (41002, 468, 1489, 'attending', '2022-06-24 17:56:29', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420155'), + (41003, 468, 1490, 'attending', '2022-06-24 17:57:13', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420156'), + (41004, 468, 1491, 'attending', '2022-06-24 17:59:52', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420158'), + (41005, 468, 1492, 'attending', '2022-06-24 18:07:34', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420175'), + (41006, 468, 1493, 'attending', '2022-06-25 21:28:18', '2025-12-17 19:47:19', 'NmLXw9Nm', '5420218'), + (41007, 468, 1494, 'attending', '2022-06-25 19:48:12', '2025-12-17 19:47:19', 'NmLXw9Nm', '5421626'), + (41008, 468, 1495, 'maybe', '2022-06-26 04:06:43', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422086'), + (41009, 468, 1497, 'not_attending', '2022-06-30 00:57:12', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422405'), + (41010, 468, 1498, 'not_attending', '2022-06-26 16:59:22', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422406'), + (41011, 468, 1499, 'not_attending', '2022-06-27 20:23:06', '2025-12-17 19:47:19', 'NmLXw9Nm', '5422407'), + (41012, 468, 1501, 'not_attending', '2022-06-29 22:49:28', '2025-12-17 19:47:19', 'NmLXw9Nm', '5424546'), + (41013, 468, 1502, 'not_attending', '2022-07-08 03:31:28', '2025-12-17 19:47:19', 'NmLXw9Nm', '5424565'), + (41014, 468, 1504, 'not_attending', '2022-07-13 15:45:17', '2025-12-17 19:47:19', 'NmLXw9Nm', '5426882'), + (41015, 468, 1505, 'not_attending', '2022-07-05 00:12:13', '2025-12-17 19:47:19', 'NmLXw9Nm', '5427083'), + (41016, 468, 1507, 'not_attending', '2022-07-08 04:51:34', '2025-12-17 19:47:19', 'NmLXw9Nm', '5433100'), + (41017, 468, 1508, 'attending', '2022-07-13 22:58:57', '2025-12-17 19:47:19', 'NmLXw9Nm', '5433453'), + (41018, 468, 1511, 'attending', '2022-07-07 01:55:50', '2025-12-17 19:47:19', 'NmLXw9Nm', '5437733'), + (41019, 468, 1513, 'attending', '2022-07-13 00:18:52', '2025-12-17 19:47:19', 'NmLXw9Nm', '5441125'), + (41020, 468, 1514, 'attending', '2022-07-09 17:51:19', '2025-12-17 19:47:20', 'NmLXw9Nm', '5441126'), + (41021, 468, 1515, 'attending', '2022-07-31 16:39:55', '2025-12-17 19:47:21', 'NmLXw9Nm', '5441128'), + (41022, 468, 1516, 'attending', '2022-08-08 18:42:41', '2025-12-17 19:47:23', 'NmLXw9Nm', '5441129'), + (41023, 468, 1517, 'attending', '2022-08-25 02:10:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5441130'), + (41024, 468, 1518, 'attending', '2022-09-01 15:27:36', '2025-12-17 19:47:24', 'NmLXw9Nm', '5441131'), + (41025, 468, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLXw9Nm', '5441132'), + (41026, 468, 1521, 'attending', '2022-07-10 04:04:06', '2025-12-17 19:47:19', 'NmLXw9Nm', '5442180'), + (41027, 468, 1526, 'attending', '2022-07-12 23:26:02', '2025-12-17 19:47:20', 'NmLXw9Nm', '5445059'), + (41028, 468, 1527, 'attending', '2022-07-13 13:18:44', '2025-12-17 19:47:20', 'NmLXw9Nm', '5446425'), + (41029, 468, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLXw9Nm', '5446643'), + (41030, 468, 1532, 'attending', '2022-07-23 21:33:51', '2025-12-17 19:47:20', 'NmLXw9Nm', '5448757'), + (41031, 468, 1535, 'attending', '2022-07-16 01:00:55', '2025-12-17 19:47:20', 'NmLXw9Nm', '5448830'), + (41032, 468, 1540, 'maybe', '2022-07-22 03:57:57', '2025-12-17 19:47:20', 'NmLXw9Nm', '5453325'), + (41033, 468, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLXw9Nm', '5454516'), + (41034, 468, 1544, 'attending', '2022-09-14 23:51:25', '2025-12-17 19:47:11', 'NmLXw9Nm', '5454517'), + (41035, 468, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLXw9Nm', '5454605'), + (41036, 468, 1546, 'maybe', '2022-07-25 02:30:31', '2025-12-17 19:47:20', 'NmLXw9Nm', '5454607'), + (41037, 468, 1549, 'attending', '2022-07-19 18:50:57', '2025-12-17 19:47:20', 'NmLXw9Nm', '5454789'), + (41038, 468, 1551, 'attending', '2022-07-19 22:22:42', '2025-12-17 19:47:20', 'NmLXw9Nm', '5455037'), + (41039, 468, 1554, 'not_attending', '2022-07-20 04:05:45', '2025-12-17 19:47:20', 'NmLXw9Nm', '5455230'), + (41040, 468, 1557, 'maybe', '2022-08-03 07:03:11', '2025-12-17 19:47:21', 'NmLXw9Nm', '5458729'), + (41041, 468, 1558, 'not_attending', '2022-09-14 16:39:37', '2025-12-17 19:47:10', 'NmLXw9Nm', '5458730'), + (41042, 468, 1559, 'not_attending', '2022-09-25 16:06:45', '2025-12-17 19:47:11', 'NmLXw9Nm', '5458731'), + (41043, 468, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLXw9Nm', '5461278'), + (41044, 468, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLXw9Nm', '5469480'), + (41045, 468, 1565, 'attending', '2022-07-26 01:48:06', '2025-12-17 19:47:21', 'NmLXw9Nm', '5471073'), + (41046, 468, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'NmLXw9Nm', '5474663'), + (41047, 468, 1571, 'attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLXw9Nm', '5482022'), + (41048, 468, 1573, 'not_attending', '2022-08-01 20:15:30', '2025-12-17 19:47:22', 'NmLXw9Nm', '5482152'), + (41049, 468, 1574, 'not_attending', '2022-08-01 20:17:36', '2025-12-17 19:47:22', 'NmLXw9Nm', '5482153'), + (41050, 468, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLXw9Nm', '5482793'), + (41051, 468, 1578, 'attending', '2022-08-03 01:27:46', '2025-12-17 19:47:21', 'NmLXw9Nm', '5483073'), + (41052, 468, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLXw9Nm', '5488912'), + (41053, 468, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLXw9Nm', '5492192'), + (41054, 468, 1588, 'not_attending', '2022-08-08 18:42:38', '2025-12-17 19:47:22', 'NmLXw9Nm', '5493139'), + (41055, 468, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLXw9Nm', '5493200'), + (41056, 468, 1593, 'attending', '2022-08-09 17:49:26', '2025-12-17 19:47:22', 'NmLXw9Nm', '5494043'), + (41057, 468, 1597, 'attending', '2022-08-12 22:12:12', '2025-12-17 19:47:22', 'NmLXw9Nm', '5496566'), + (41058, 468, 1598, 'attending', '2022-08-12 22:12:13', '2025-12-17 19:47:22', 'NmLXw9Nm', '5496567'), + (41059, 468, 1599, 'attending', '2022-08-10 20:36:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5496568'), + (41060, 468, 1600, 'not_attending', '2022-08-10 20:37:53', '2025-12-17 19:47:24', 'NmLXw9Nm', '5496569'), + (41061, 468, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLXw9Nm', '5502188'), + (41062, 468, 1606, 'attending', '2022-08-16 19:22:56', '2025-12-17 19:47:23', 'NmLXw9Nm', '5504585'), + (41063, 468, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLXw9Nm', '5505059'), + (41064, 468, 1610, 'not_attending', '2022-08-30 22:57:19', '2025-12-17 19:47:23', 'NmLXw9Nm', '5506595'), + (41065, 468, 1614, 'not_attending', '2022-08-22 16:02:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5508371'), + (41066, 468, 1615, 'maybe', '2022-08-31 04:06:21', '2025-12-17 19:47:23', 'NmLXw9Nm', '5509055'), + (41067, 468, 1619, 'not_attending', '2022-08-22 16:57:20', '2025-12-17 19:47:23', 'NmLXw9Nm', '5512862'), + (41068, 468, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLXw9Nm', '5513985'), + (41069, 468, 1626, 'attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'NmLXw9Nm', '5519981'), + (41070, 468, 1627, 'attending', '2022-08-26 20:23:43', '2025-12-17 19:47:24', 'NmLXw9Nm', '5521552'), + (41071, 468, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLXw9Nm', '5522550'), + (41072, 468, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLXw9Nm', '5534683'), + (41073, 468, 1631, 'attending', '2022-08-27 18:44:57', '2025-12-17 19:47:23', 'NmLXw9Nm', '5534684'), + (41074, 468, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLXw9Nm', '5537735'), + (41075, 468, 1636, 'maybe', '2022-09-04 23:23:03', '2025-12-17 19:47:24', 'NmLXw9Nm', '5538454'), + (41076, 468, 1638, 'attending', '2022-08-30 23:33:08', '2025-12-17 19:47:24', 'NmLXw9Nm', '5540402'), + (41077, 468, 1639, 'attending', '2022-08-30 23:33:04', '2025-12-17 19:47:24', 'NmLXw9Nm', '5540403'), + (41078, 468, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLXw9Nm', '5540859'), + (41079, 468, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLXw9Nm', '5546619'), + (41080, 468, 1653, 'not_attending', '2022-09-22 17:19:26', '2025-12-17 19:47:11', 'NmLXw9Nm', '5554400'), + (41081, 468, 1655, 'not_attending', '2022-09-24 05:37:24', '2025-12-17 19:47:11', 'NmLXw9Nm', '5554482'), + (41082, 468, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLXw9Nm', '5555245'), + (41083, 468, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLXw9Nm', '5557747'), + (41084, 468, 1661, 'attending', '2022-09-09 00:18:50', '2025-12-17 19:47:24', 'NmLXw9Nm', '5560254'), + (41085, 468, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLXw9Nm', '5560255'), + (41086, 468, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLXw9Nm', '5562906'), + (41087, 468, 1667, 'not_attending', '2022-09-24 16:55:20', '2025-12-17 19:47:11', 'NmLXw9Nm', '5563221'), + (41088, 468, 1668, 'attending', '2022-09-25 03:18:39', '2025-12-17 19:47:12', 'NmLXw9Nm', '5563222'), + (41089, 468, 1676, 'not_attending', '2022-09-20 23:20:28', '2025-12-17 19:47:11', 'NmLXw9Nm', '5596181'), + (41090, 468, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLXw9Nm', '5600604'), + (41091, 468, 1678, 'not_attending', '2022-09-21 20:35:39', '2025-12-17 19:47:11', 'NmLXw9Nm', '5600731'), + (41092, 468, 1680, 'attending', '2022-09-21 20:35:00', '2025-12-17 19:47:11', 'NmLXw9Nm', '5601577'), + (41093, 468, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLXw9Nm', '5605544'), + (41094, 468, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'NmLXw9Nm', '5606737'), + (41095, 468, 1702, 'not_attending', '2022-09-27 23:08:48', '2025-12-17 19:47:12', 'NmLXw9Nm', '5609173'), + (41096, 468, 1708, 'attending', '2022-10-05 22:42:03', '2025-12-17 19:47:12', 'NmLXw9Nm', '5617648'), + (41097, 468, 1711, 'not_attending', '2022-10-04 00:51:07', '2025-12-17 19:47:12', 'NmLXw9Nm', '5621883'), + (41098, 468, 1712, 'not_attending', '2022-10-12 22:29:37', '2025-12-17 19:47:12', 'NmLXw9Nm', '5622073'), + (41099, 468, 1719, 'attending', '2022-10-05 03:18:42', '2025-12-17 19:47:12', 'NmLXw9Nm', '5630958'), + (41100, 468, 1720, 'attending', '2022-10-09 16:36:45', '2025-12-17 19:47:12', 'NmLXw9Nm', '5630959'), + (41101, 468, 1721, 'attending', '2022-10-17 06:53:55', '2025-12-17 19:47:13', 'NmLXw9Nm', '5630960'), + (41102, 468, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLXw9Nm', '5630961'), + (41103, 468, 1723, 'not_attending', '2022-10-29 06:39:10', '2025-12-17 19:47:15', 'NmLXw9Nm', '5630962'), + (41104, 468, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLXw9Nm', '5630966'), + (41105, 468, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLXw9Nm', '5630967'), + (41106, 468, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLXw9Nm', '5630968'), + (41107, 468, 1727, 'attending', '2022-11-27 06:35:33', '2025-12-17 19:47:16', 'NmLXw9Nm', '5630969'), + (41108, 468, 1731, 'not_attending', '2022-10-07 23:42:56', '2025-12-17 19:47:12', 'NmLXw9Nm', '5635226'), + (41109, 468, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLXw9Nm', '5635406'), + (41110, 468, 1736, 'not_attending', '2022-10-29 19:59:33', '2025-12-17 19:47:15', 'NmLXw9Nm', '5638456'), + (41111, 468, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLXw9Nm', '5638765'), + (41112, 468, 1739, 'attending', '2022-10-09 18:26:35', '2025-12-17 19:47:14', 'NmLXw9Nm', '5640097'), + (41113, 468, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'NmLXw9Nm', '5640843'), + (41114, 468, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLXw9Nm', '5641521'), + (41115, 468, 1744, 'not_attending', '2022-11-23 06:08:02', '2025-12-17 19:47:16', 'NmLXw9Nm', '5642818'), + (41116, 468, 1746, 'attending', '2022-10-12 18:14:31', '2025-12-17 19:47:12', 'NmLXw9Nm', '5647518'), + (41117, 468, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLXw9Nm', '5652395'), + (41118, 468, 1752, 'not_attending', '2022-10-14 17:50:29', '2025-12-17 19:47:12', 'NmLXw9Nm', '5653503'), + (41119, 468, 1753, 'attending', '2022-10-22 19:28:26', '2025-12-17 19:47:13', 'NmLXw9Nm', '5656228'), + (41120, 468, 1757, 'not_attending', '2022-11-03 00:51:15', '2025-12-17 19:47:15', 'NmLXw9Nm', '5668974'), + (41121, 468, 1758, 'not_attending', '2022-10-22 01:26:40', '2025-12-17 19:47:13', 'NmLXw9Nm', '5668976'), + (41122, 468, 1759, 'attending', '2022-10-22 01:26:36', '2025-12-17 19:47:13', 'NmLXw9Nm', '5669097'), + (41123, 468, 1760, 'not_attending', '2022-10-22 01:26:33', '2025-12-17 19:47:13', 'NmLXw9Nm', '5669463'), + (41124, 468, 1762, 'maybe', '2022-11-24 22:06:47', '2025-12-17 19:47:16', 'NmLXw9Nm', '5670445'), + (41125, 468, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLXw9Nm', '5671637'), + (41126, 468, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLXw9Nm', '5672329'), + (41127, 468, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLXw9Nm', '5674057'), + (41128, 468, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLXw9Nm', '5674060'), + (41129, 468, 1769, 'not_attending', '2022-11-04 22:53:43', '2025-12-17 19:47:15', 'NmLXw9Nm', '5676351'), + (41130, 468, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'NmLXw9Nm', '5677461'), + (41131, 468, 1774, 'not_attending', '2022-10-31 22:26:39', '2025-12-17 19:47:15', 'NmLXw9Nm', '5677843'), + (41132, 468, 1779, 'attending', '2022-10-31 22:26:01', '2025-12-17 19:47:15', 'NmLXw9Nm', '5694252'), + (41133, 468, 1780, 'not_attending', '2022-11-10 18:51:09', '2025-12-17 19:47:15', 'NmLXw9Nm', '5696082'), + (41134, 468, 1782, 'attending', '2022-11-03 04:30:38', '2025-12-17 19:47:15', 'NmLXw9Nm', '5698046'), + (41135, 468, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLXw9Nm', '5699760'), + (41136, 468, 1790, 'attending', '2022-11-07 01:19:16', '2025-12-17 19:47:15', 'NmLXw9Nm', '5727424'), + (41137, 468, 1793, 'maybe', '2022-11-24 19:56:11', '2025-12-17 19:47:16', 'NmLXw9Nm', '5736365'), + (41138, 468, 1794, 'attending', '2022-11-14 18:55:48', '2025-12-17 19:47:16', 'NmLXw9Nm', '5741601'), + (41139, 468, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLXw9Nm', '5763458'), + (41140, 468, 1806, 'attending', '2023-01-16 22:51:46', '2025-12-17 19:47:05', 'NmLXw9Nm', '5764676'), + (41141, 468, 1820, 'maybe', '2023-04-05 04:13:19', '2025-12-17 19:46:58', 'NmLXw9Nm', '5764690'), + (41142, 468, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLXw9Nm', '5774172'), + (41143, 468, 1826, 'not_attending', '2022-12-06 03:38:59', '2025-12-17 19:47:04', 'NmLXw9Nm', '5776768'), + (41144, 468, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'NmLXw9Nm', '5818247'), + (41145, 468, 1835, 'maybe', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLXw9Nm', '5819471'), + (41146, 468, 1841, 'attending', '2023-01-04 07:39:07', '2025-12-17 19:47:05', 'NmLXw9Nm', '5827665'), + (41147, 468, 1842, 'attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLXw9Nm', '5827739'), + (41148, 468, 1843, 'attending', '2022-12-17 19:12:01', '2025-12-17 19:47:04', 'NmLXw9Nm', '5844304'), + (41149, 468, 1844, 'maybe', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLXw9Nm', '5844306'), + (41150, 468, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLXw9Nm', '5850159'), + (41151, 468, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLXw9Nm', '5858999'), + (41152, 468, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLXw9Nm', '5871984'), + (41153, 468, 1859, 'maybe', '2023-01-20 21:46:38', '2025-12-17 19:47:05', 'NmLXw9Nm', '5876234'), + (41154, 468, 1860, 'maybe', '2023-01-13 05:52:31', '2025-12-17 19:47:05', 'NmLXw9Nm', '5876309'), + (41155, 468, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLXw9Nm', '5876354'), + (41156, 468, 1864, 'attending', '2023-01-16 22:51:47', '2025-12-17 19:47:05', 'NmLXw9Nm', '5879675'), + (41157, 468, 1865, 'maybe', '2023-01-27 23:49:06', '2025-12-17 19:47:06', 'NmLXw9Nm', '5879676'), + (41158, 468, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLXw9Nm', '5880939'), + (41159, 468, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLXw9Nm', '5880940'), + (41160, 468, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLXw9Nm', '5880942'), + (41161, 468, 1869, 'not_attending', '2023-03-07 00:50:32', '2025-12-17 19:47:09', 'NmLXw9Nm', '5880943'), + (41162, 468, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLXw9Nm', '5887890'), + (41163, 468, 1875, 'not_attending', '2023-01-28 00:01:03', '2025-12-17 19:47:06', 'NmLXw9Nm', '5887908'), + (41164, 468, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLXw9Nm', '5888598'), + (41165, 468, 1880, 'attending', '2023-01-24 20:36:42', '2025-12-17 19:47:06', 'NmLXw9Nm', '5893260'), + (41166, 468, 1881, 'attending', '2023-02-03 21:36:05', '2025-12-17 19:47:07', 'NmLXw9Nm', '5894218'), + (41167, 468, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLXw9Nm', '5899826'), + (41168, 468, 1885, 'maybe', '2023-02-24 05:47:42', '2025-12-17 19:47:08', 'NmLXw9Nm', '5899928'), + (41169, 468, 1886, 'maybe', '2023-03-07 00:50:26', '2025-12-17 19:47:09', 'NmLXw9Nm', '5899930'), + (41170, 468, 1888, 'maybe', '2023-02-17 19:54:20', '2025-12-17 19:47:07', 'NmLXw9Nm', '5900197'), + (41171, 468, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLXw9Nm', '5900199'), + (41172, 468, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLXw9Nm', '5900200'), + (41173, 468, 1891, 'attending', '2023-03-20 03:13:00', '2025-12-17 19:46:56', 'NmLXw9Nm', '5900202'), + (41174, 468, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLXw9Nm', '5900203'), + (41175, 468, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLXw9Nm', '5901108'), + (41176, 468, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLXw9Nm', '5901126'), + (41177, 468, 1897, 'attending', '2023-02-06 00:47:17', '2025-12-17 19:47:07', 'NmLXw9Nm', '5901128'), + (41178, 468, 1898, 'maybe', '2023-02-02 00:02:59', '2025-12-17 19:47:06', 'NmLXw9Nm', '5901263'), + (41179, 468, 1902, 'attending', '2023-02-01 23:21:00', '2025-12-17 19:47:06', 'NmLXw9Nm', '5902254'), + (41180, 468, 1907, 'not_attending', '2023-02-03 21:36:42', '2025-12-17 19:47:07', 'NmLXw9Nm', '5904716'), + (41181, 468, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLXw9Nm', '5909655'), + (41182, 468, 1912, 'not_attending', '2023-02-17 20:35:57', '2025-12-17 19:47:07', 'NmLXw9Nm', '5909808'), + (41183, 468, 1913, 'attending', '2023-02-07 17:25:52', '2025-12-17 19:47:07', 'NmLXw9Nm', '5910300'), + (41184, 468, 1914, 'attending', '2023-02-07 19:40:41', '2025-12-17 19:47:07', 'NmLXw9Nm', '5910302'), + (41185, 468, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLXw9Nm', '5910522'), + (41186, 468, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLXw9Nm', '5910526'), + (41187, 468, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLXw9Nm', '5910528'), + (41188, 468, 1920, 'not_attending', '2023-02-14 00:26:13', '2025-12-17 19:47:07', 'NmLXw9Nm', '5914091'), + (41189, 468, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLXw9Nm', '5916219'), + (41190, 468, 1923, 'attending', '2023-02-17 20:44:40', '2025-12-17 19:47:07', 'NmLXw9Nm', '5930436'), + (41191, 468, 1925, 'attending', '2023-02-17 21:12:52', '2025-12-17 19:47:08', 'NmLXw9Nm', '5932619'), + (41192, 468, 1926, 'attending', '2023-02-17 21:12:49', '2025-12-17 19:47:08', 'NmLXw9Nm', '5932620'), + (41193, 468, 1927, 'not_attending', '2023-03-16 22:56:20', '2025-12-17 19:47:10', 'NmLXw9Nm', '5932621'), + (41194, 468, 1929, 'attending', '2023-02-17 21:55:49', '2025-12-17 19:47:07', 'NmLXw9Nm', '5932628'), + (41195, 468, 1933, 'attending', '2023-02-20 19:51:13', '2025-12-17 19:47:08', 'NmLXw9Nm', '5936234'), + (41196, 468, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLXw9Nm', '5958351'), + (41197, 468, 1938, 'attending', '2023-02-24 04:19:02', '2025-12-17 19:47:08', 'NmLXw9Nm', '5959751'), + (41198, 468, 1939, 'attending', '2023-02-24 04:29:24', '2025-12-17 19:47:08', 'NmLXw9Nm', '5959755'), + (41199, 468, 1940, 'not_attending', '2023-02-24 06:17:36', '2025-12-17 19:47:09', 'NmLXw9Nm', '5960055'), + (41200, 468, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLXw9Nm', '5961684'), + (41201, 468, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'NmLXw9Nm', '5962132'), + (41202, 468, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'NmLXw9Nm', '5962133'), + (41203, 468, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLXw9Nm', '5962134'), + (41204, 468, 1947, 'attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', 'NmLXw9Nm', '5962233'), + (41205, 468, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLXw9Nm', '5962317'), + (41206, 468, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLXw9Nm', '5962318'), + (41207, 468, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'NmLXw9Nm', '5965933'), + (41208, 468, 1953, 'attending', '2023-03-01 20:41:11', '2025-12-17 19:47:09', 'NmLXw9Nm', '5966307'), + (41209, 468, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLXw9Nm', '5967014'), + (41210, 468, 1955, 'not_attending', '2023-03-25 01:45:18', '2025-12-17 19:46:57', 'NmLXw9Nm', '5972529'), + (41211, 468, 1956, 'maybe', '2023-03-06 04:33:14', '2025-12-17 19:47:09', 'NmLXw9Nm', '5972763'), + (41212, 468, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLXw9Nm', '5972815'), + (41213, 468, 1959, 'not_attending', '2023-03-25 01:45:23', '2025-12-17 19:46:57', 'NmLXw9Nm', '5972829'), + (41214, 468, 1961, 'not_attending', '2023-03-07 00:55:23', '2025-12-17 19:47:10', 'NmLXw9Nm', '5974016'), + (41215, 468, 1963, 'not_attending', '2023-03-08 02:14:11', '2025-12-17 19:47:10', 'NmLXw9Nm', '5975054'), + (41216, 468, 1964, 'attending', '2023-03-08 23:50:12', '2025-12-17 19:47:09', 'NmLXw9Nm', '5977129'), + (41217, 468, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLXw9Nm', '5981515'), + (41218, 468, 1968, 'attending', '2023-03-12 23:05:42', '2025-12-17 19:47:10', 'NmLXw9Nm', '5993515'), + (41219, 468, 1969, 'attending', '2023-03-12 23:06:38', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993516'), + (41220, 468, 1970, 'attending', '2023-03-13 03:01:53', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993758'), + (41221, 468, 1972, 'maybe', '2023-03-13 04:56:46', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993776'), + (41222, 468, 1973, 'not_attending', '2023-03-13 04:56:28', '2025-12-17 19:46:56', 'NmLXw9Nm', '5993777'), + (41223, 468, 1974, 'not_attending', '2023-03-21 01:30:48', '2025-12-17 19:46:57', 'NmLXw9Nm', '5993778'), + (41224, 468, 1977, 'not_attending', '2023-03-16 04:48:57', '2025-12-17 19:46:56', 'NmLXw9Nm', '5998939'), + (41225, 468, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLXw9Nm', '6028191'), + (41226, 468, 1980, 'attending', '2023-03-21 03:31:20', '2025-12-17 19:46:57', 'NmLXw9Nm', '6036032'), + (41227, 468, 1982, 'attending', '2023-03-23 23:33:52', '2025-12-17 19:46:57', 'NmLXw9Nm', '6040066'), + (41228, 468, 1984, 'attending', '2023-03-25 20:54:37', '2025-12-17 19:46:57', 'NmLXw9Nm', '6042717'), + (41229, 468, 1985, 'not_attending', '2023-03-26 20:03:22', '2025-12-17 19:46:57', 'NmLXw9Nm', '6043041'), + (41230, 468, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLXw9Nm', '6044838'), + (41231, 468, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLXw9Nm', '6044839'), + (41232, 468, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'NmLXw9Nm', '6045684'), + (41233, 468, 1991, 'attending', '2023-03-30 23:15:34', '2025-12-17 19:46:58', 'NmLXw9Nm', '6047354'), + (41234, 468, 1992, 'not_attending', '2023-04-01 06:46:39', '2025-12-17 19:46:58', 'NmLXw9Nm', '6048742'), + (41235, 468, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLXw9Nm', '6050104'), + (41236, 468, 1995, 'maybe', '2023-04-05 04:12:59', '2025-12-17 19:46:58', 'NmLXw9Nm', '6050663'), + (41237, 468, 1996, 'not_attending', '2023-04-03 16:34:12', '2025-12-17 19:46:58', 'NmLXw9Nm', '6050667'), + (41238, 468, 1997, 'not_attending', '2023-04-05 04:12:34', '2025-12-17 19:46:58', 'NmLXw9Nm', '6051604'), + (41239, 468, 1999, 'not_attending', '2023-04-06 21:21:45', '2025-12-17 19:47:00', 'NmLXw9Nm', '6052057'), + (41240, 468, 2000, 'attending', '2023-04-05 04:12:41', '2025-12-17 19:46:58', 'NmLXw9Nm', '6052107'), + (41241, 468, 2001, 'maybe', '2023-04-05 04:12:26', '2025-12-17 19:46:58', 'NmLXw9Nm', '6052569'), + (41242, 468, 2002, 'not_attending', '2023-04-24 21:28:29', '2025-12-17 19:47:01', 'NmLXw9Nm', '6052605'), + (41243, 468, 2003, 'not_attending', '2023-05-19 22:51:18', '2025-12-17 19:47:03', 'NmLXw9Nm', '6052606'), + (41244, 468, 2004, 'not_attending', '2023-05-29 06:18:29', '2025-12-17 19:47:04', 'NmLXw9Nm', '6052607'), + (41245, 468, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLXw9Nm', '6053195'), + (41246, 468, 2006, 'maybe', '2023-04-09 18:36:29', '2025-12-17 19:46:59', 'NmLXw9Nm', '6053198'), + (41247, 468, 2008, 'not_attending', '2023-04-07 17:07:48', '2025-12-17 19:46:58', 'NmLXw9Nm', '6055808'), + (41248, 468, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'NmLXw9Nm', '6056085'), + (41249, 468, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLXw9Nm', '6056916'), + (41250, 468, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLXw9Nm', '6059290'), + (41251, 468, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLXw9Nm', '6060328'), + (41252, 468, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLXw9Nm', '6061037'), + (41253, 468, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLXw9Nm', '6061039'), + (41254, 468, 2017, 'not_attending', '2023-04-11 23:36:28', '2025-12-17 19:46:59', 'NmLXw9Nm', '6061099'), + (41255, 468, 2019, 'attending', '2023-04-12 22:32:45', '2025-12-17 19:47:00', 'NmLXw9Nm', '6062934'), + (41256, 468, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLXw9Nm', '6067245'), + (41257, 468, 2025, 'not_attending', '2023-04-22 18:49:15', '2025-12-17 19:47:00', 'NmLXw9Nm', '6067457'), + (41258, 468, 2026, 'not_attending', '2023-04-19 00:46:32', '2025-12-17 19:47:01', 'NmLXw9Nm', '6068078'), + (41259, 468, 2027, 'maybe', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLXw9Nm', '6068094'), + (41260, 468, 2028, 'attending', '2023-04-18 00:48:03', '2025-12-17 19:47:00', 'NmLXw9Nm', '6068252'), + (41261, 468, 2029, 'attending', '2023-04-18 00:49:41', '2025-12-17 19:47:01', 'NmLXw9Nm', '6068253'), + (41262, 468, 2030, 'attending', '2023-04-18 00:49:45', '2025-12-17 19:47:02', 'NmLXw9Nm', '6068254'), + (41263, 468, 2031, 'attending', '2023-04-18 00:53:06', '2025-12-17 19:47:03', 'NmLXw9Nm', '6068280'), + (41264, 468, 2032, 'attending', '2023-04-18 00:53:29', '2025-12-17 19:47:04', 'NmLXw9Nm', '6068281'), + (41265, 468, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLXw9Nm', '6069093'), + (41266, 468, 2037, 'not_attending', '2023-04-24 21:28:14', '2025-12-17 19:47:01', 'NmLXw9Nm', '6071943'), + (41267, 468, 2038, 'not_attending', '2023-04-24 21:28:31', '2025-12-17 19:47:01', 'NmLXw9Nm', '6071944'), + (41268, 468, 2039, 'maybe', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072398'), + (41269, 468, 2040, 'not_attending', '2023-04-23 23:50:32', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072453'), + (41270, 468, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072528'), + (41271, 468, 2042, 'not_attending', '2023-04-24 21:28:19', '2025-12-17 19:47:01', 'NmLXw9Nm', '6072941'), + (41272, 468, 2043, 'maybe', '2023-04-25 22:17:12', '2025-12-17 19:47:01', 'NmLXw9Nm', '6073023'), + (41273, 468, 2044, 'attending', '2023-04-26 00:29:17', '2025-12-17 19:47:03', 'NmLXw9Nm', '6073678'), + (41274, 468, 2045, 'maybe', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'NmLXw9Nm', '6075556'), + (41275, 468, 2046, 'maybe', '2023-04-28 17:42:17', '2025-12-17 19:47:02', 'NmLXw9Nm', '6076020'), + (41276, 468, 2047, 'not_attending', '2023-05-01 21:46:10', '2025-12-17 19:47:02', 'NmLXw9Nm', '6076027'), + (41277, 468, 2048, 'attending', '2023-05-05 20:24:13', '2025-12-17 19:47:03', 'NmLXw9Nm', '6076415'), + (41278, 468, 2049, 'attending', '2023-04-29 17:38:50', '2025-12-17 19:47:01', 'NmLXw9Nm', '6079840'), + (41279, 468, 2050, 'not_attending', '2023-05-01 21:46:14', '2025-12-17 19:47:02', 'NmLXw9Nm', '6080489'), + (41280, 468, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLXw9Nm', '6083398'), + (41281, 468, 2052, 'not_attending', '2023-05-04 22:41:58', '2025-12-17 19:47:02', 'NmLXw9Nm', '6088220'), + (41282, 468, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'NmLXw9Nm', '6093504'), + (41283, 468, 2059, 'not_attending', '2023-05-08 21:35:14', '2025-12-17 19:47:02', 'NmLXw9Nm', '6097361'), + (41284, 468, 2060, 'attending', '2023-05-13 23:02:47', '2025-12-17 19:47:03', 'NmLXw9Nm', '6097414'), + (41285, 468, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLXw9Nm', '6097442'), + (41286, 468, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLXw9Nm', '6097684'), + (41287, 468, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLXw9Nm', '6098762'), + (41288, 468, 2064, 'attending', '2023-06-08 04:18:04', '2025-12-17 19:46:50', 'NmLXw9Nm', '6099988'), + (41289, 468, 2065, 'not_attending', '2023-06-08 04:18:09', '2025-12-17 19:46:49', 'NmLXw9Nm', '6101169'), + (41290, 468, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'NmLXw9Nm', '6101361'), + (41291, 468, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLXw9Nm', '6101362'), + (41292, 468, 2068, 'attending', '2023-05-13 17:55:39', '2025-12-17 19:47:03', 'NmLXw9Nm', '6102837'), + (41293, 468, 2069, 'not_attending', '2023-05-17 23:08:29', '2025-12-17 19:47:03', 'NmLXw9Nm', '6103750'), + (41294, 468, 2070, 'attending', '2023-05-15 01:19:48', '2025-12-17 19:47:03', 'NmLXw9Nm', '6103752'), + (41295, 468, 2074, 'not_attending', '2023-05-17 22:37:45', '2025-12-17 19:47:03', 'NmLXw9Nm', '6107312'), + (41296, 468, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLXw9Nm', '6107314'), + (41297, 468, 2076, 'attending', '2023-05-19 06:40:13', '2025-12-17 19:47:03', 'NmLXw9Nm', '6108350'), + (41298, 468, 2078, 'not_attending', '2023-05-22 22:46:16', '2025-12-17 19:47:03', 'NmLXw9Nm', '6114163'), + (41299, 468, 2079, 'not_attending', '2023-05-25 17:01:42', '2025-12-17 19:47:03', 'NmLXw9Nm', '6114521'), + (41300, 468, 2080, 'attending', '2023-05-22 04:17:32', '2025-12-17 19:47:04', 'NmLXw9Nm', '6114677'), + (41301, 468, 2081, 'not_attending', '2023-05-22 22:45:33', '2025-12-17 19:47:03', 'NmLXw9Nm', '6115611'), + (41302, 468, 2083, 'not_attending', '2023-05-22 22:46:06', '2025-12-17 19:47:04', 'NmLXw9Nm', '6115629'), + (41303, 468, 2084, 'not_attending', '2023-05-27 16:35:41', '2025-12-17 19:47:04', 'NmLXw9Nm', '6117127'), + (41304, 468, 2086, 'not_attending', '2023-05-29 06:18:16', '2025-12-17 19:47:04', 'NmLXw9Nm', '6119877'), + (41305, 468, 2087, 'not_attending', '2023-05-28 03:11:16', '2025-12-17 19:47:04', 'NmLXw9Nm', '6120034'), + (41306, 468, 2089, 'not_attending', '2023-05-29 06:18:23', '2025-12-17 19:47:04', 'NmLXw9Nm', '6125227'), + (41307, 468, 2090, 'attending', '2023-05-31 18:54:53', '2025-12-17 19:47:04', 'NmLXw9Nm', '6127961'), + (41308, 468, 2093, 'not_attending', '2023-06-04 02:40:41', '2025-12-17 19:47:04', 'NmLXw9Nm', '6132598'), + (41309, 468, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'NmLXw9Nm', '6135924'), + (41310, 468, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'NmLXw9Nm', '6136733'), + (41311, 468, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'NmLXw9Nm', '6137989'), + (41312, 468, 2098, 'not_attending', '2023-06-09 06:40:59', '2025-12-17 19:47:04', 'NmLXw9Nm', '6139831'), + (41313, 468, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'NmLXw9Nm', '6150864'), + (41314, 468, 2109, 'not_attending', '2023-06-23 16:20:31', '2025-12-17 19:46:50', 'NmLXw9Nm', '6152821'), + (41315, 468, 2110, 'not_attending', '2023-06-19 19:24:50', '2025-12-17 19:46:50', 'NmLXw9Nm', '6155491'), + (41316, 468, 2111, 'attending', '2023-06-19 19:21:36', '2025-12-17 19:46:50', 'NmLXw9Nm', '6156121'), + (41317, 468, 2112, 'not_attending', '2023-06-21 15:55:22', '2025-12-17 19:46:50', 'NmLXw9Nm', '6156213'), + (41318, 468, 2113, 'attending', '2023-06-19 19:47:06', '2025-12-17 19:46:50', 'NmLXw9Nm', '6156215'), + (41319, 468, 2114, 'not_attending', '2023-06-23 16:20:33', '2025-12-17 19:46:50', 'NmLXw9Nm', '6158648'), + (41320, 468, 2115, 'not_attending', '2023-06-23 16:20:22', '2025-12-17 19:46:50', 'NmLXw9Nm', '6161437'), + (41321, 468, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'NmLXw9Nm', '6164417'), + (41322, 468, 2119, 'not_attending', '2023-06-27 17:55:50', '2025-12-17 19:46:50', 'NmLXw9Nm', '6165461'), + (41323, 468, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'NmLXw9Nm', '6166388'), + (41324, 468, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'NmLXw9Nm', '6176439'), + (41325, 468, 2122, 'not_attending', '2023-07-06 23:42:56', '2025-12-17 19:46:51', 'NmLXw9Nm', '6176476'), + (41326, 468, 2126, 'not_attending', '2023-06-29 23:46:26', '2025-12-17 19:46:51', 'NmLXw9Nm', '6177548'), + (41327, 468, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'NmLXw9Nm', '6182410'), + (41328, 468, 2130, 'not_attending', '2023-07-06 01:58:11', '2025-12-17 19:46:51', 'NmLXw9Nm', '6183891'), + (41329, 468, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'NmLXw9Nm', '6185812'), + (41330, 468, 2132, 'not_attending', '2023-07-07 00:26:30', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187015'), + (41331, 468, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'NmLXw9Nm', '6187651'), + (41332, 468, 2134, 'attending', '2023-07-06 21:11:05', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187963'), + (41333, 468, 2135, 'attending', '2023-07-06 21:12:14', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187964'), + (41334, 468, 2136, 'attending', '2023-07-06 21:12:34', '2025-12-17 19:46:53', 'NmLXw9Nm', '6187966'), + (41335, 468, 2137, 'not_attending', '2023-07-06 21:13:16', '2025-12-17 19:46:54', 'NmLXw9Nm', '6187967'), + (41336, 468, 2138, 'attending', '2023-07-06 21:20:54', '2025-12-17 19:46:52', 'NmLXw9Nm', '6187969'), + (41337, 468, 2139, 'not_attending', '2023-07-07 00:01:10', '2025-12-17 19:46:52', 'NmLXw9Nm', '6188027'), + (41338, 468, 2140, 'not_attending', '2023-07-07 02:55:50', '2025-12-17 19:46:52', 'NmLXw9Nm', '6188074'), + (41339, 468, 2141, 'not_attending', '2023-07-11 21:15:40', '2025-12-17 19:46:52', 'NmLXw9Nm', '6188819'), + (41340, 468, 2142, 'attending', '2023-07-07 20:57:44', '2025-12-17 19:46:52', 'NmLXw9Nm', '6333850'), + (41341, 468, 2143, 'not_attending', '2023-07-08 19:55:18', '2025-12-17 19:46:51', 'NmLXw9Nm', '6334348'), + (41342, 468, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'NmLXw9Nm', '6334878'), + (41343, 468, 2145, 'not_attending', '2023-07-13 05:38:35', '2025-12-17 19:46:52', 'NmLXw9Nm', '6334903'), + (41344, 468, 2146, 'maybe', '2023-07-21 22:02:06', '2025-12-17 19:46:53', 'NmLXw9Nm', '6335638'), + (41345, 468, 2148, 'not_attending', '2023-07-21 22:24:31', '2025-12-17 19:46:53', 'NmLXw9Nm', '6335667'), + (41346, 468, 2149, 'not_attending', '2023-07-11 02:46:52', '2025-12-17 19:46:53', 'NmLXw9Nm', '6335682'), + (41347, 468, 2150, 'not_attending', '2023-07-09 21:55:38', '2025-12-17 19:46:52', 'NmLXw9Nm', '6335687'), + (41348, 468, 2153, 'attending', '2023-07-17 02:03:21', '2025-12-17 19:46:52', 'NmLXw9Nm', '6337236'), + (41349, 468, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'NmLXw9Nm', '6337970'), + (41350, 468, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'NmLXw9Nm', '6338308'), + (41351, 468, 2158, 'maybe', '2023-07-17 18:58:00', '2025-12-17 19:46:53', 'NmLXw9Nm', '6338353'), + (41352, 468, 2159, 'attending', '2023-07-17 18:49:25', '2025-12-17 19:46:53', 'NmLXw9Nm', '6338355'), + (41353, 468, 2160, 'attending', '2023-07-17 18:49:50', '2025-12-17 19:46:54', 'NmLXw9Nm', '6338358'), + (41354, 468, 2162, 'not_attending', '2023-07-20 20:45:39', '2025-12-17 19:46:53', 'NmLXw9Nm', '6340845'), + (41355, 468, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'NmLXw9Nm', '6341710'), + (41356, 468, 2165, 'not_attending', '2023-08-01 05:12:35', '2025-12-17 19:46:54', 'NmLXw9Nm', '6342044'), + (41357, 468, 2166, 'not_attending', '2023-07-21 05:56:44', '2025-12-17 19:46:54', 'NmLXw9Nm', '6342115'), + (41358, 468, 2167, 'attending', '2023-07-17 19:05:50', '2025-12-17 19:46:53', 'NmLXw9Nm', '6342298'), + (41359, 468, 2169, 'not_attending', '2023-07-21 22:24:33', '2025-12-17 19:46:53', 'NmLXw9Nm', '6342306'), + (41360, 468, 2173, 'not_attending', '2023-07-20 20:45:42', '2025-12-17 19:46:53', 'NmLXw9Nm', '6342769'), + (41361, 468, 2174, 'not_attending', '2023-07-21 05:56:06', '2025-12-17 19:46:53', 'NmLXw9Nm', '6343294'), + (41362, 468, 2175, 'maybe', '2023-07-22 21:08:05', '2025-12-17 19:46:53', 'NmLXw9Nm', '6346982'), + (41363, 468, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'NmLXw9Nm', '6347034'), + (41364, 468, 2177, 'maybe', '2023-08-10 01:09:55', '2025-12-17 19:46:55', 'NmLXw9Nm', '6347053'), + (41365, 468, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'NmLXw9Nm', '6347056'), + (41366, 468, 2179, 'not_attending', '2023-08-01 05:12:30', '2025-12-17 19:46:54', 'NmLXw9Nm', '6347591'), + (41367, 468, 2183, 'attending', '2023-07-29 05:05:33', '2025-12-17 19:46:54', 'NmLXw9Nm', '6353008'), + (41368, 468, 2185, 'attending', '2023-07-29 19:45:44', '2025-12-17 19:46:54', 'NmLXw9Nm', '6353830'), + (41369, 468, 2186, 'attending', '2023-07-29 19:46:48', '2025-12-17 19:46:54', 'NmLXw9Nm', '6353831'), + (41370, 468, 2188, 'attending', '2023-08-02 07:04:58', '2025-12-17 19:46:54', 'NmLXw9Nm', '6357710'), + (41371, 468, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'NmLXw9Nm', '6357867'), + (41372, 468, 2190, 'not_attending', '2023-08-02 17:11:25', '2025-12-17 19:46:55', 'NmLXw9Nm', '6357892'), + (41373, 468, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358652'), + (41374, 468, 2192, 'attending', '2023-08-03 21:45:27', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358666'), + (41375, 468, 2193, 'not_attending', '2023-08-03 22:05:49', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358668'), + (41376, 468, 2194, 'not_attending', '2023-08-03 22:05:53', '2025-12-17 19:46:54', 'NmLXw9Nm', '6358669'), + (41377, 468, 2195, 'not_attending', '2023-08-07 03:50:12', '2025-12-17 19:46:55', 'NmLXw9Nm', '6359397'), + (41378, 468, 2196, 'not_attending', '2023-09-05 20:28:47', '2025-12-17 19:46:56', 'NmLXw9Nm', '6359398'), + (41379, 468, 2199, 'maybe', '2023-08-14 19:22:54', '2025-12-17 19:46:55', 'NmLXw9Nm', '6359849'), + (41380, 468, 2200, 'not_attending', '2023-08-10 01:09:42', '2025-12-17 19:46:55', 'NmLXw9Nm', '6359850'), + (41381, 468, 2202, 'not_attending', '2023-08-06 21:52:30', '2025-12-17 19:46:54', 'NmLXw9Nm', '6360509'), + (41382, 468, 2203, 'attending', '2023-08-07 20:53:17', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361524'), + (41383, 468, 2204, 'attending', '2023-08-19 20:41:30', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361542'), + (41384, 468, 2206, 'not_attending', '2023-08-08 04:33:50', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361659'), + (41385, 468, 2208, 'maybe', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'NmLXw9Nm', '6361709'), + (41386, 468, 2209, 'not_attending', '2023-08-20 21:55:08', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361710'), + (41387, 468, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361711'), + (41388, 468, 2211, 'maybe', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'NmLXw9Nm', '6361712'), + (41389, 468, 2212, 'maybe', '2023-09-23 16:18:41', '2025-12-17 19:46:45', 'NmLXw9Nm', '6361713'), + (41390, 468, 2213, 'not_attending', '2023-08-14 19:13:57', '2025-12-17 19:46:55', 'NmLXw9Nm', '6362935'), + (41391, 468, 2215, 'not_attending', '2023-08-10 06:11:33', '2025-12-17 19:46:55', 'NmLXw9Nm', '6363479'), + (41392, 468, 2216, 'attending', '2023-08-14 19:23:06', '2025-12-17 19:46:55', 'NmLXw9Nm', '6364123'), + (41393, 468, 2217, 'maybe', '2023-08-14 19:14:09', '2025-12-17 19:46:55', 'NmLXw9Nm', '6364333'), + (41394, 468, 2218, 'not_attending', '2023-08-15 06:09:08', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367308'), + (41395, 468, 2221, 'not_attending', '2023-08-15 06:09:49', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367357'), + (41396, 468, 2222, 'not_attending', '2023-08-15 06:09:54', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367358'), + (41397, 468, 2223, 'attending', '2023-08-15 06:09:15', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367439'), + (41398, 468, 2224, 'attending', '2023-08-15 18:44:16', '2025-12-17 19:46:55', 'NmLXw9Nm', '6367635'), + (41399, 468, 2225, 'not_attending', '2023-08-29 16:25:09', '2025-12-17 19:46:55', 'NmLXw9Nm', '6368434'), + (41400, 468, 2226, 'not_attending', '2023-08-17 21:36:47', '2025-12-17 19:46:55', 'NmLXw9Nm', '6370006'), + (41401, 468, 2227, 'not_attending', '2023-08-19 03:05:37', '2025-12-17 19:46:55', 'NmLXw9Nm', '6370581'), + (41402, 468, 2229, 'attending', '2023-08-20 20:52:14', '2025-12-17 19:46:55', 'NmLXw9Nm', '6373787'), + (41403, 468, 2232, 'maybe', '2023-08-23 00:14:27', '2025-12-17 19:46:55', 'NmLXw9Nm', '6374818'), + (41404, 468, 2233, 'attending', '2023-08-22 23:22:30', '2025-12-17 19:46:55', 'NmLXw9Nm', '6377590'), + (41405, 468, 2234, 'attending', '2023-08-27 04:18:41', '2025-12-17 19:46:56', 'NmLXw9Nm', '6382559'), + (41406, 468, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'NmLXw9Nm', '6382573'), + (41407, 468, 2238, 'not_attending', '2023-08-31 19:23:11', '2025-12-17 19:46:56', 'NmLXw9Nm', '6387266'), + (41408, 468, 2239, 'attending', '2023-09-02 18:22:59', '2025-12-17 19:46:56', 'NmLXw9Nm', '6387592'), + (41409, 468, 2240, 'attending', '2023-09-09 21:21:20', '2025-12-17 19:46:56', 'NmLXw9Nm', '6388603'), + (41410, 468, 2241, 'maybe', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'NmLXw9Nm', '6388604'), + (41411, 468, 2242, 'attending', '2023-09-23 16:18:08', '2025-12-17 19:46:45', 'NmLXw9Nm', '6388606'), + (41412, 468, 2243, 'maybe', '2023-09-07 03:09:32', '2025-12-17 19:46:56', 'NmLXw9Nm', '6393686'), + (41413, 468, 2244, 'not_attending', '2023-09-07 18:17:22', '2025-12-17 19:46:44', 'NmLXw9Nm', '6393700'), + (41414, 468, 2245, 'attending', '2023-09-18 02:09:42', '2025-12-17 19:46:45', 'NmLXw9Nm', '6393703'), + (41415, 468, 2247, 'maybe', '2023-09-05 20:28:56', '2025-12-17 19:46:56', 'NmLXw9Nm', '6394628'), + (41416, 468, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'NmLXw9Nm', '6394629'), + (41417, 468, 2249, 'maybe', '2023-09-20 21:53:32', '2025-12-17 19:46:45', 'NmLXw9Nm', '6394630'), + (41418, 468, 2250, 'maybe', '2023-09-23 16:18:38', '2025-12-17 19:46:45', 'NmLXw9Nm', '6394631'), + (41419, 468, 2251, 'not_attending', '2023-09-05 20:26:26', '2025-12-17 19:46:56', 'NmLXw9Nm', '6395182'), + (41420, 468, 2252, 'not_attending', '2023-09-18 02:09:46', '2025-12-17 19:46:45', 'NmLXw9Nm', '6396837'), + (41421, 468, 2253, 'maybe', '2023-09-23 16:18:44', '2025-12-17 19:46:45', 'NmLXw9Nm', '6401811'), + (41422, 468, 2254, 'attending', '2023-09-10 18:13:56', '2025-12-17 19:46:44', 'NmLXw9Nm', '6401889'), + (41423, 468, 2255, 'attending', '2023-09-12 20:46:16', '2025-12-17 19:46:45', 'NmLXw9Nm', '6403562'), + (41424, 468, 2258, 'not_attending', '2023-09-23 16:18:21', '2025-12-17 19:46:45', 'NmLXw9Nm', '6419492'), + (41425, 468, 2263, 'attending', '2023-09-25 22:16:04', '2025-12-17 19:46:45', 'NmLXw9Nm', '6429351'), + (41426, 468, 2265, 'maybe', '2023-09-29 16:23:57', '2025-12-17 19:46:45', 'NmLXw9Nm', '6439625'), + (41427, 468, 2266, 'attending', '2023-10-08 03:26:05', '2025-12-17 19:46:45', 'NmLXw9Nm', '6439635'), + (41428, 468, 2267, 'not_attending', '2023-10-06 01:52:51', '2025-12-17 19:46:45', 'NmLXw9Nm', '6440034'), + (41429, 468, 2268, 'attending', '2023-10-01 00:10:19', '2025-12-17 19:46:45', 'NmLXw9Nm', '6440863'), + (41430, 468, 2269, 'not_attending', '2023-10-03 01:35:16', '2025-12-17 19:46:45', 'NmLXw9Nm', '6442978'), + (41431, 468, 2270, 'attending', '2023-10-05 01:06:45', '2025-12-17 19:46:46', 'NmLXw9Nm', '6443067'), + (41432, 468, 2271, 'maybe', '2023-10-03 01:35:04', '2025-12-17 19:46:45', 'NmLXw9Nm', '6445375'), + (41433, 468, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLXw9Nm', '6445440'), + (41434, 468, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLXw9Nm', '6453951'), + (41435, 468, 2277, 'not_attending', '2023-10-08 19:53:42', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455211'), + (41436, 468, 2279, 'not_attending', '2023-10-11 23:22:03', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455460'), + (41437, 468, 2280, 'not_attending', '2023-10-08 19:53:18', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455470'), + (41438, 468, 2283, 'not_attending', '2023-10-08 21:20:39', '2025-12-17 19:46:46', 'NmLXw9Nm', '6455503'), + (41439, 468, 2284, 'maybe', '2023-10-11 23:22:17', '2025-12-17 19:46:46', 'NmLXw9Nm', '6460928'), + (41440, 468, 2287, 'attending', '2023-10-10 23:21:49', '2025-12-17 19:46:46', 'NmLXw9Nm', '6461696'), + (41441, 468, 2289, 'attending', '2023-10-11 05:27:44', '2025-12-17 19:46:46', 'NmLXw9Nm', '6462129'), + (41442, 468, 2290, 'attending', '2023-10-14 04:16:35', '2025-12-17 19:46:46', 'NmLXw9Nm', '6462214'), + (41443, 468, 2291, 'maybe', '2023-10-15 20:51:23', '2025-12-17 19:46:46', 'NmLXw9Nm', '6462215'), + (41444, 468, 2292, 'maybe', '2023-10-29 18:16:43', '2025-12-17 19:46:47', 'NmLXw9Nm', '6462216'), + (41445, 468, 2293, 'maybe', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLXw9Nm', '6463218'), + (41446, 468, 2294, 'not_attending', '2023-10-15 20:50:46', '2025-12-17 19:46:46', 'NmLXw9Nm', '6465907'), + (41447, 468, 2295, 'not_attending', '2023-10-22 03:50:25', '2025-12-17 19:46:46', 'NmLXw9Nm', '6467832'), + (41448, 468, 2299, 'attending', '2023-10-20 17:14:29', '2025-12-17 19:46:46', 'NmLXw9Nm', '6472181'), + (41449, 468, 2300, 'not_attending', '2023-10-15 20:50:34', '2025-12-17 19:46:47', 'NmLXw9Nm', '6472185'), + (41450, 468, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', 'NmLXw9Nm', '6474276'), + (41451, 468, 2303, 'attending', '2023-10-25 00:38:01', '2025-12-17 19:46:47', 'NmLXw9Nm', '6482691'), + (41452, 468, 2304, 'attending', '2023-10-29 05:35:40', '2025-12-17 19:46:47', 'NmLXw9Nm', '6482693'), + (41453, 468, 2306, 'maybe', '2023-11-01 17:39:05', '2025-12-17 19:46:47', 'NmLXw9Nm', '6484200'), + (41454, 468, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'NmLXw9Nm', '6484680'), + (41455, 468, 2310, 'attending', '2023-11-01 17:38:00', '2025-12-17 19:46:47', 'NmLXw9Nm', '6487709'), + (41456, 468, 2311, 'not_attending', '2023-11-01 17:38:30', '2025-12-17 19:46:47', 'NmLXw9Nm', '6487725'), + (41457, 468, 2315, 'not_attending', '2023-10-29 20:24:20', '2025-12-17 19:46:47', 'NmLXw9Nm', '6493666'), + (41458, 468, 2316, 'not_attending', '2023-11-01 17:39:08', '2025-12-17 19:46:48', 'NmLXw9Nm', '6493668'), + (41459, 468, 2317, 'attending', '2023-10-29 20:18:28', '2025-12-17 19:46:47', 'NmLXw9Nm', '6507741'), + (41460, 468, 2320, 'maybe', '2023-11-01 17:38:33', '2025-12-17 19:46:47', 'NmLXw9Nm', '6508647'), + (41461, 468, 2321, 'not_attending', '2023-11-01 17:38:16', '2025-12-17 19:46:47', 'NmLXw9Nm', '6512075'), + (41462, 468, 2322, 'not_attending', '2023-11-01 17:37:57', '2025-12-17 19:46:48', 'NmLXw9Nm', '6514659'), + (41463, 468, 2323, 'not_attending', '2023-11-07 22:08:14', '2025-12-17 19:46:49', 'NmLXw9Nm', '6514660'), + (41464, 468, 2324, 'not_attending', '2023-11-07 22:08:19', '2025-12-17 19:46:49', 'NmLXw9Nm', '6514662'), + (41465, 468, 2325, 'not_attending', '2023-11-07 22:08:25', '2025-12-17 19:46:36', 'NmLXw9Nm', '6514663'), + (41466, 468, 2326, 'not_attending', '2023-11-12 20:47:19', '2025-12-17 19:46:48', 'NmLXw9Nm', '6514805'), + (41467, 468, 2328, 'attending', '2023-11-01 22:01:02', '2025-12-17 19:46:47', 'NmLXw9Nm', '6515504'), + (41468, 468, 2329, 'not_attending', '2023-11-02 19:02:05', '2025-12-17 19:46:47', 'NmLXw9Nm', '6517138'), + (41469, 468, 2331, 'attending', '2023-11-07 21:37:41', '2025-12-17 19:46:47', 'NmLXw9Nm', '6518640'), + (41470, 468, 2332, 'not_attending', '2023-11-03 21:01:19', '2025-12-17 19:46:47', 'NmLXw9Nm', '6518655'), + (41471, 468, 2333, 'maybe', '2023-11-07 21:59:13', '2025-12-17 19:46:47', 'NmLXw9Nm', '6519103'), + (41472, 468, 2334, 'not_attending', '2023-11-08 04:09:55', '2025-12-17 19:46:48', 'NmLXw9Nm', '6529252'), + (41473, 468, 2335, 'not_attending', '2023-11-10 20:45:46', '2025-12-17 19:46:47', 'NmLXw9Nm', '6534890'), + (41474, 468, 2336, 'attending', '2023-11-07 21:56:10', '2025-12-17 19:46:47', 'NmLXw9Nm', '6535500'), + (41475, 468, 2337, 'not_attending', '2023-11-08 01:07:54', '2025-12-17 19:46:48', 'NmLXw9Nm', '6535681'), + (41476, 468, 2338, 'maybe', '2023-11-25 21:09:10', '2025-12-17 19:46:48', 'NmLXw9Nm', '6538868'), + (41477, 468, 2339, 'not_attending', '2023-11-09 22:42:02', '2025-12-17 19:46:47', 'NmLXw9Nm', '6539128'), + (41478, 468, 2340, 'not_attending', '2023-11-16 21:51:58', '2025-12-17 19:46:48', 'NmLXw9Nm', '6540279'), + (41479, 468, 2341, 'attending', '2023-11-12 20:14:12', '2025-12-17 19:46:48', 'NmLXw9Nm', '6543263'), + (41480, 468, 2343, 'not_attending', '2023-11-15 02:33:53', '2025-12-17 19:46:48', 'NmLXw9Nm', '6574728'), + (41481, 468, 2345, 'maybe', '2023-11-24 22:22:30', '2025-12-17 19:46:48', 'NmLXw9Nm', '6582414'), + (41482, 468, 2347, 'not_attending', '2023-11-20 22:09:00', '2025-12-17 19:46:48', 'NmLXw9Nm', '6583053'), + (41483, 468, 2348, 'not_attending', '2023-11-20 22:09:08', '2025-12-17 19:46:48', 'NmLXw9Nm', '6583064'), + (41484, 468, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLXw9Nm', '6584747'), + (41485, 468, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLXw9Nm', '6587097'), + (41486, 468, 2353, 'not_attending', '2023-11-30 20:43:08', '2025-12-17 19:46:48', 'NmLXw9Nm', '6588894'), + (41487, 468, 2355, 'not_attending', '2023-11-30 20:43:22', '2025-12-17 19:46:49', 'NmLXw9Nm', '6593339'), + (41488, 468, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLXw9Nm', '6609022'), + (41489, 468, 2366, 'not_attending', '2023-12-08 04:31:32', '2025-12-17 19:46:36', 'NmLXw9Nm', '6615304'), + (41490, 468, 2373, 'attending', '2024-01-07 05:21:49', '2025-12-17 19:46:38', 'NmLXw9Nm', '6632678'), + (41491, 468, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'NmLXw9Nm', '6632757'), + (41492, 468, 2377, 'not_attending', '2024-01-07 05:19:41', '2025-12-17 19:46:37', 'NmLXw9Nm', '6643448'), + (41493, 468, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLXw9Nm', '6644187'), + (41494, 468, 2385, 'not_attending', '2024-01-07 05:19:44', '2025-12-17 19:46:37', 'NmLXw9Nm', '6648943'), + (41495, 468, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLXw9Nm', '6648951'), + (41496, 468, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'NmLXw9Nm', '6648952'), + (41497, 468, 2389, 'not_attending', '2024-01-07 05:21:45', '2025-12-17 19:46:40', 'NmLXw9Nm', '6651094'), + (41498, 468, 2391, 'maybe', '2024-01-07 05:21:10', '2025-12-17 19:46:37', 'NmLXw9Nm', '6654138'), + (41499, 468, 2392, 'attending', '2024-01-07 05:19:50', '2025-12-17 19:46:37', 'NmLXw9Nm', '6654412'), + (41500, 468, 2393, 'maybe', '2024-01-07 05:21:29', '2025-12-17 19:46:38', 'NmLXw9Nm', '6654468'), + (41501, 468, 2394, 'not_attending', '2024-01-07 05:21:40', '2025-12-17 19:46:38', 'NmLXw9Nm', '6654470'), + (41502, 468, 2395, 'not_attending', '2024-01-14 20:04:37', '2025-12-17 19:46:38', 'NmLXw9Nm', '6654471'), + (41503, 468, 2396, 'not_attending', '2024-01-14 20:04:42', '2025-12-17 19:46:38', 'NmLXw9Nm', '6655401'), + (41504, 468, 2397, 'not_attending', '2024-01-07 05:19:33', '2025-12-17 19:46:37', 'NmLXw9Nm', '6657379'), + (41505, 468, 2399, 'attending', '2024-01-12 21:15:08', '2025-12-17 19:46:38', 'NmLXw9Nm', '6657583'), + (41506, 468, 2401, 'attending', '2024-01-09 19:03:06', '2025-12-17 19:46:37', 'NmLXw9Nm', '6661585'), + (41507, 468, 2402, 'attending', '2024-01-09 19:05:04', '2025-12-17 19:46:38', 'NmLXw9Nm', '6661588'), + (41508, 468, 2403, 'attending', '2024-01-09 19:06:36', '2025-12-17 19:46:40', 'NmLXw9Nm', '6661589'), + (41509, 468, 2404, 'not_attending', '2024-01-14 20:04:29', '2025-12-17 19:46:38', 'NmLXw9Nm', '6666858'), + (41510, 468, 2405, 'not_attending', '2024-01-15 04:18:20', '2025-12-17 19:46:38', 'NmLXw9Nm', '6667332'), + (41511, 468, 2406, 'maybe', '2024-01-15 04:18:53', '2025-12-17 19:46:40', 'NmLXw9Nm', '6692344'), + (41512, 468, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLXw9Nm', '6699906'), + (41513, 468, 2408, 'attending', '2024-01-25 19:13:48', '2025-12-17 19:46:40', 'NmLXw9Nm', '6699907'), + (41514, 468, 2410, 'attending', '2024-02-10 23:29:09', '2025-12-17 19:46:41', 'NmLXw9Nm', '6699911'), + (41515, 468, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'NmLXw9Nm', '6699913'), + (41516, 468, 2413, 'maybe', '2024-02-10 23:29:20', '2025-12-17 19:46:42', 'NmLXw9Nm', '6700719'), + (41517, 468, 2416, 'attending', '2024-01-16 06:21:30', '2025-12-17 19:46:40', 'NmLXw9Nm', '6701109'), + (41518, 468, 2424, 'maybe', '2024-01-20 00:50:37', '2025-12-17 19:46:40', 'NmLXw9Nm', '6705143'), + (41519, 468, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLXw9Nm', '6705219'), + (41520, 468, 2426, 'not_attending', '2024-01-23 00:32:39', '2025-12-17 19:46:40', 'NmLXw9Nm', '6705569'), + (41521, 468, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLXw9Nm', '6710153'), + (41522, 468, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLXw9Nm', '6711552'), + (41523, 468, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'NmLXw9Nm', '6711553'), + (41524, 468, 2436, 'not_attending', '2024-01-27 21:30:21', '2025-12-17 19:46:40', 'NmLXw9Nm', '6722687'), + (41525, 468, 2437, 'attending', '2024-01-27 19:34:39', '2025-12-17 19:46:41', 'NmLXw9Nm', '6722688'), + (41526, 468, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'NmLXw9Nm', '6730620'), + (41527, 468, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'NmLXw9Nm', '6730642'), + (41528, 468, 2448, 'not_attending', '2024-03-29 18:31:10', '2025-12-17 19:46:33', 'NmLXw9Nm', '6734371'), + (41529, 468, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'NmLXw9Nm', '6740364'), + (41530, 468, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'NmLXw9Nm', '6743829'), + (41531, 468, 2462, 'not_attending', '2024-02-10 23:29:27', '2025-12-17 19:46:41', 'NmLXw9Nm', '6744701'), + (41532, 468, 2467, 'attending', '2024-02-24 20:53:28', '2025-12-17 19:46:43', 'NmLXw9Nm', '7029987'), + (41533, 468, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'NmLXw9Nm', '7030380'), + (41534, 468, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'NmLXw9Nm', '7033677'), + (41535, 468, 2473, 'not_attending', '2024-02-26 22:01:11', '2025-12-17 19:46:43', 'NmLXw9Nm', '7033724'), + (41536, 468, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'NmLXw9Nm', '7035415'), + (41537, 468, 2475, 'not_attending', '2024-02-27 23:12:06', '2025-12-17 19:46:43', 'NmLXw9Nm', '7035643'), + (41538, 468, 2476, 'not_attending', '2024-02-26 22:01:07', '2025-12-17 19:46:43', 'NmLXw9Nm', '7035691'), + (41539, 468, 2480, 'maybe', '2024-02-24 20:53:31', '2025-12-17 19:46:43', 'NmLXw9Nm', '7042160'), + (41540, 468, 2481, 'attending', '2024-02-24 21:02:21', '2025-12-17 19:46:43', 'NmLXw9Nm', '7044715'), + (41541, 468, 2482, 'attending', '2024-02-24 21:06:35', '2025-12-17 19:46:44', 'NmLXw9Nm', '7044719'), + (41542, 468, 2483, 'not_attending', '2024-02-24 21:09:04', '2025-12-17 19:46:32', 'NmLXw9Nm', '7044720'), + (41543, 468, 2484, 'not_attending', '2024-02-29 20:42:38', '2025-12-17 19:46:43', 'NmLXw9Nm', '7046836'), + (41544, 468, 2485, 'not_attending', '2024-02-29 20:40:39', '2025-12-17 19:46:43', 'NmLXw9Nm', '7048111'), + (41545, 468, 2486, 'not_attending', '2024-02-29 20:42:50', '2025-12-17 19:46:43', 'NmLXw9Nm', '7048277'), + (41546, 468, 2487, 'not_attending', '2024-03-17 18:36:01', '2025-12-17 19:46:33', 'NmLXw9Nm', '7049279'), + (41547, 468, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'NmLXw9Nm', '7050318'), + (41548, 468, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'NmLXw9Nm', '7050319'), + (41549, 468, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'NmLXw9Nm', '7050322'), + (41550, 468, 2493, 'not_attending', '2024-03-02 20:32:26', '2025-12-17 19:46:32', 'NmLXw9Nm', '7052471'), + (41551, 468, 2494, 'not_attending', '2024-03-02 20:32:29', '2025-12-17 19:46:32', 'NmLXw9Nm', '7052472'), + (41552, 468, 2495, 'not_attending', '2024-03-01 04:29:23', '2025-12-17 19:46:32', 'NmLXw9Nm', '7052982'), + (41553, 468, 2498, 'not_attending', '2024-03-17 18:35:38', '2025-12-17 19:46:33', 'NmLXw9Nm', '7057662'), + (41554, 468, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'NmLXw9Nm', '7057804'), + (41555, 468, 2502, 'not_attending', '2024-03-17 18:35:42', '2025-12-17 19:46:33', 'NmLXw9Nm', '7061202'), + (41556, 468, 2503, 'not_attending', '2024-03-09 16:51:36', '2025-12-17 19:46:32', 'NmLXw9Nm', '7062500'), + (41557, 468, 2504, 'not_attending', '2024-03-17 18:35:58', '2025-12-17 19:46:33', 'NmLXw9Nm', '7063296'), + (41558, 468, 2505, 'not_attending', '2024-03-17 18:35:53', '2025-12-17 19:46:33', 'NmLXw9Nm', '7069163'), + (41559, 468, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'NmLXw9Nm', '7072824'), + (41560, 468, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'NmLXw9Nm', '7074348'), + (41561, 468, 2510, 'not_attending', '2024-03-17 18:35:56', '2025-12-17 19:46:33', 'NmLXw9Nm', '7074350'), + (41562, 468, 2511, 'not_attending', '2024-04-07 07:30:37', '2025-12-17 19:46:33', 'NmLXw9Nm', '7074351'), + (41563, 468, 2512, 'not_attending', '2024-04-04 18:53:19', '2025-12-17 19:46:33', 'NmLXw9Nm', '7074352'), + (41564, 468, 2513, 'not_attending', '2024-04-15 18:05:49', '2025-12-17 19:46:34', 'NmLXw9Nm', '7074353'), + (41565, 468, 2518, 'not_attending', '2024-07-20 22:40:59', '2025-12-17 19:46:30', 'NmLXw9Nm', '7074358'), + (41566, 468, 2519, 'not_attending', '2024-05-24 23:40:45', '2025-12-17 19:46:36', 'NmLXw9Nm', '7074359'), + (41567, 468, 2520, 'not_attending', '2024-05-14 18:09:15', '2025-12-17 19:46:35', 'NmLXw9Nm', '7074360'), + (41568, 468, 2521, 'not_attending', '2024-06-19 20:29:06', '2025-12-17 19:46:29', 'NmLXw9Nm', '7074361'), + (41569, 468, 2522, 'not_attending', '2024-07-11 21:19:58', '2025-12-17 19:46:30', 'NmLXw9Nm', '7074362'), + (41570, 468, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'NmLXw9Nm', '7074364'), + (41571, 468, 2525, 'maybe', '2024-06-12 04:07:43', '2025-12-17 19:46:28', 'NmLXw9Nm', '7074365'), + (41572, 468, 2527, 'not_attending', '2024-06-23 21:45:13', '2025-12-17 19:46:29', 'NmLXw9Nm', '7074367'), + (41573, 468, 2528, 'maybe', '2024-08-07 17:05:17', '2025-12-17 19:46:31', 'NmLXw9Nm', '7074368'), + (41574, 468, 2530, 'maybe', '2024-08-15 21:55:14', '2025-12-17 19:46:31', 'NmLXw9Nm', '7074373'), + (41575, 468, 2532, 'not_attending', '2024-09-01 22:44:20', '2025-12-17 19:46:32', 'NmLXw9Nm', '7074383'), + (41576, 468, 2535, 'attending', '2024-03-13 19:11:02', '2025-12-17 19:46:32', 'NmLXw9Nm', '7076879'), + (41577, 468, 2536, 'not_attending', '2024-03-17 18:32:56', '2025-12-17 19:46:33', 'NmLXw9Nm', '7077689'), + (41578, 468, 2537, 'attending', '2024-03-22 19:40:43', '2025-12-17 19:46:33', 'NmLXw9Nm', '7085484'), + (41579, 468, 2539, 'not_attending', '2024-04-01 16:01:57', '2025-12-17 19:46:33', 'NmLXw9Nm', '7085486'), + (41580, 468, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'NmLXw9Nm', '7089267'), + (41581, 468, 2541, 'not_attending', '2024-03-17 18:35:45', '2025-12-17 19:46:33', 'NmLXw9Nm', '7089404'), + (41582, 468, 2542, 'not_attending', '2024-03-27 04:00:20', '2025-12-17 19:46:33', 'NmLXw9Nm', '7090025'), + (41583, 468, 2543, 'maybe', '2024-03-29 18:31:40', '2025-12-17 19:46:33', 'NmLXw9Nm', '7091456'), + (41584, 468, 2544, 'attending', '2024-03-21 21:22:34', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096941'), + (41585, 468, 2545, 'attending', '2024-03-21 21:26:30', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096942'), + (41586, 468, 2546, 'attending', '2024-03-21 21:28:16', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096944'), + (41587, 468, 2547, 'attending', '2024-03-21 21:38:35', '2025-12-17 19:46:33', 'NmLXw9Nm', '7096945'), + (41588, 468, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'NmLXw9Nm', '7098747'), + (41589, 468, 2549, 'attending', '2024-03-24 20:20:34', '2025-12-17 19:46:33', 'NmLXw9Nm', '7099657'), + (41590, 468, 2551, 'not_attending', '2024-03-29 18:31:22', '2025-12-17 19:46:33', 'NmLXw9Nm', '7109912'), + (41591, 468, 2552, 'not_attending', '2024-03-27 22:18:12', '2025-12-17 19:46:33', 'NmLXw9Nm', '7111123'), + (41592, 468, 2553, 'maybe', '2024-03-29 18:31:29', '2025-12-17 19:46:33', 'NmLXw9Nm', '7113468'), + (41593, 468, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'NmLXw9Nm', '7114856'), + (41594, 468, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'NmLXw9Nm', '7114951'), + (41595, 468, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'NmLXw9Nm', '7114955'), + (41596, 468, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'NmLXw9Nm', '7114956'), + (41597, 468, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'NmLXw9Nm', '7114957'), + (41598, 468, 2560, 'not_attending', '2024-04-07 07:30:33', '2025-12-17 19:46:33', 'NmLXw9Nm', '7130086'), + (41599, 468, 2563, 'not_attending', '2024-04-07 07:30:41', '2025-12-17 19:46:33', 'NmLXw9Nm', '7134734'), + (41600, 468, 2564, 'not_attending', '2024-04-07 07:29:07', '2025-12-17 19:46:33', 'NmLXw9Nm', '7134735'), + (41601, 468, 2566, 'not_attending', '2024-04-07 07:29:02', '2025-12-17 19:46:34', 'NmLXw9Nm', '7140664'), + (41602, 468, 2567, 'not_attending', '2024-04-04 18:53:00', '2025-12-17 19:46:33', 'NmLXw9Nm', '7144962'), + (41603, 468, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'NmLXw9Nm', '7153615'), + (41604, 468, 2569, 'not_attending', '2024-04-07 19:06:10', '2025-12-17 19:46:33', 'NmLXw9Nm', '7154056'), + (41605, 468, 2570, 'not_attending', '2024-04-07 18:51:32', '2025-12-17 19:46:33', 'NmLXw9Nm', '7159187'), + (41606, 468, 2571, 'not_attending', '2024-04-08 01:53:12', '2025-12-17 19:46:33', 'NmLXw9Nm', '7159484'), + (41607, 468, 2572, 'not_attending', '2024-04-08 01:53:30', '2025-12-17 19:46:33', 'NmLXw9Nm', '7159522'), + (41608, 468, 2573, 'not_attending', '2024-04-09 06:19:12', '2025-12-17 19:46:34', 'NmLXw9Nm', '7160612'), + (41609, 468, 2574, 'not_attending', '2024-04-12 21:31:50', '2025-12-17 19:46:33', 'NmLXw9Nm', '7163825'), + (41610, 468, 2575, 'not_attending', '2024-04-10 19:44:18', '2025-12-17 19:46:33', 'NmLXw9Nm', '7164534'), + (41611, 468, 2576, 'not_attending', '2024-04-21 23:54:29', '2025-12-17 19:46:34', 'NmLXw9Nm', '7164538'), + (41612, 468, 2577, 'not_attending', '2024-04-11 06:04:09', '2025-12-17 19:46:33', 'NmLXw9Nm', '7166293'), + (41613, 468, 2578, 'not_attending', '2024-04-11 18:55:31', '2025-12-17 19:46:34', 'NmLXw9Nm', '7167016'), + (41614, 468, 2579, 'not_attending', '2024-04-11 19:36:27', '2025-12-17 19:46:33', 'NmLXw9Nm', '7167020'), + (41615, 468, 2580, 'attending', '2024-04-11 18:55:27', '2025-12-17 19:46:34', 'NmLXw9Nm', '7167272'), + (41616, 468, 2581, 'not_attending', '2024-04-21 23:56:47', '2025-12-17 19:46:34', 'NmLXw9Nm', '7169048'), + (41617, 468, 2582, 'not_attending', '2024-04-15 18:05:46', '2025-12-17 19:46:34', 'NmLXw9Nm', '7169765'), + (41618, 468, 2583, 'not_attending', '2024-04-15 18:05:39', '2025-12-17 19:46:34', 'NmLXw9Nm', '7172946'), + (41619, 468, 2584, 'not_attending', '2024-04-16 17:38:55', '2025-12-17 19:46:34', 'NmLXw9Nm', '7175057'), + (41620, 468, 2588, 'not_attending', '2024-04-16 17:38:51', '2025-12-17 19:46:34', 'NmLXw9Nm', '7177233'), + (41621, 468, 2589, 'not_attending', '2024-04-16 17:38:48', '2025-12-17 19:46:34', 'NmLXw9Nm', '7177235'), + (41622, 468, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'NmLXw9Nm', '7178446'), + (41623, 468, 2594, 'not_attending', '2024-04-21 23:56:43', '2025-12-17 19:46:34', 'NmLXw9Nm', '7182117'), + (41624, 468, 2595, 'not_attending', '2024-04-21 23:57:07', '2025-12-17 19:46:34', 'NmLXw9Nm', '7182252'), + (41625, 468, 2597, 'not_attending', '2024-04-21 23:54:24', '2025-12-17 19:46:34', 'NmLXw9Nm', '7186726'), + (41626, 468, 2598, 'not_attending', '2024-04-21 23:56:58', '2025-12-17 19:46:34', 'NmLXw9Nm', '7186731'), + (41627, 468, 2600, 'not_attending', '2024-04-30 17:37:45', '2025-12-17 19:46:35', 'NmLXw9Nm', '7196794'), + (41628, 468, 2602, 'attending', '2024-04-26 04:43:37', '2025-12-17 19:46:34', 'NmLXw9Nm', '7220467'), + (41629, 468, 2603, 'not_attending', '2024-05-14 18:08:59', '2025-12-17 19:46:35', 'NmLXw9Nm', '7225669'), + (41630, 468, 2604, 'not_attending', '2024-05-24 23:40:42', '2025-12-17 19:46:36', 'NmLXw9Nm', '7225670'), + (41631, 468, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'NmLXw9Nm', '7240354'), + (41632, 468, 2613, 'not_attending', '2024-05-09 16:56:02', '2025-12-17 19:46:35', 'NmLXw9Nm', '7247644'), + (41633, 468, 2614, 'not_attending', '2024-05-10 04:34:08', '2025-12-17 19:46:35', 'NmLXw9Nm', '7247645'), + (41634, 468, 2616, 'not_attending', '2024-05-09 16:55:58', '2025-12-17 19:46:35', 'NmLXw9Nm', '7250296'), + (41635, 468, 2617, 'attending', '2024-05-03 19:12:40', '2025-12-17 19:46:35', 'NmLXw9Nm', '7251633'), + (41636, 468, 2619, 'not_attending', '2024-05-10 04:34:05', '2025-12-17 19:46:35', 'NmLXw9Nm', '7252965'), + (41637, 468, 2620, 'not_attending', '2024-05-14 18:09:18', '2025-12-17 19:46:35', 'NmLXw9Nm', '7258097'), + (41638, 468, 2622, 'not_attending', '2024-05-10 04:34:00', '2025-12-17 19:46:35', 'NmLXw9Nm', '7262064'), + (41639, 468, 2623, 'maybe', '2024-05-10 21:25:28', '2025-12-17 19:46:35', 'NmLXw9Nm', '7263048'), + (41640, 468, 2624, 'attending', '2024-05-10 21:44:19', '2025-12-17 19:46:35', 'NmLXw9Nm', '7263301'), + (41641, 468, 2625, 'attending', '2024-05-10 21:46:14', '2025-12-17 19:46:35', 'NmLXw9Nm', '7263302'), + (41642, 468, 2626, 'attending', '2024-05-14 18:08:27', '2025-12-17 19:46:35', 'NmLXw9Nm', '7264723'), + (41643, 468, 2627, 'attending', '2024-05-24 23:40:17', '2025-12-17 19:46:35', 'NmLXw9Nm', '7264724'), + (41644, 468, 2628, 'maybe', '2024-05-24 23:40:57', '2025-12-17 19:46:36', 'NmLXw9Nm', '7264725'), + (41645, 468, 2629, 'attending', '2024-05-24 23:40:59', '2025-12-17 19:46:28', 'NmLXw9Nm', '7264726'), + (41646, 468, 2630, 'not_attending', '2024-05-14 18:09:05', '2025-12-17 19:46:35', 'NmLXw9Nm', '7264801'), + (41647, 468, 2632, 'not_attending', '2024-05-14 18:09:02', '2025-12-17 19:46:35', 'NmLXw9Nm', '7269123'), + (41648, 468, 2633, 'not_attending', '2024-05-14 18:09:21', '2025-12-17 19:46:35', 'NmLXw9Nm', '7270095'), + (41649, 468, 2636, 'not_attending', '2024-05-24 23:40:28', '2025-12-17 19:46:35', 'NmLXw9Nm', '7270323'), + (41650, 468, 2637, 'not_attending', '2024-05-24 23:40:32', '2025-12-17 19:46:35', 'NmLXw9Nm', '7270324'), + (41651, 468, 2641, 'not_attending', '2024-05-18 07:18:47', '2025-12-17 19:46:35', 'NmLXw9Nm', '7276107'), + (41652, 468, 2642, 'not_attending', '2024-05-18 07:18:54', '2025-12-17 19:46:35', 'NmLXw9Nm', '7276108'), + (41653, 468, 2643, 'attending', '2024-05-18 18:01:31', '2025-12-17 19:46:35', 'NmLXw9Nm', '7276587'), + (41654, 468, 2647, 'attending', '2024-06-09 19:02:37', '2025-12-17 19:46:28', 'NmLXw9Nm', '7282057'), + (41655, 468, 2649, 'not_attending', '2024-05-24 23:40:26', '2025-12-17 19:46:35', 'NmLXw9Nm', '7282950'), + (41656, 468, 2650, 'not_attending', '2024-05-24 23:40:38', '2025-12-17 19:46:36', 'NmLXw9Nm', '7288199'), + (41657, 468, 2651, 'maybe', '2024-05-24 22:04:56', '2025-12-17 19:46:35', 'NmLXw9Nm', '7288200'), + (41658, 468, 2652, 'not_attending', '2024-05-24 23:40:48', '2025-12-17 19:46:36', 'NmLXw9Nm', '7288339'), + (41659, 468, 2654, 'not_attending', '2024-05-26 21:19:46', '2025-12-17 19:46:36', 'NmLXw9Nm', '7291219'), + (41660, 468, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'NmLXw9Nm', '7302674'), + (41661, 468, 2671, 'attending', '2024-06-09 21:19:37', '2025-12-17 19:46:28', 'NmLXw9Nm', '7318256'), + (41662, 468, 2673, 'maybe', '2024-06-09 21:19:32', '2025-12-17 19:46:28', 'NmLXw9Nm', '7319473'), + (41663, 468, 2674, 'not_attending', '2024-06-30 23:55:41', '2025-12-17 19:46:29', 'NmLXw9Nm', '7319480'), + (41664, 468, 2675, 'maybe', '2024-08-04 01:49:27', '2025-12-17 19:46:31', 'NmLXw9Nm', '7319481'), + (41665, 468, 2678, 'maybe', '2024-06-12 04:07:52', '2025-12-17 19:46:28', 'NmLXw9Nm', '7319489'), + (41666, 468, 2679, 'maybe', '2024-06-12 04:07:49', '2025-12-17 19:46:29', 'NmLXw9Nm', '7319490'), + (41667, 468, 2683, 'not_attending', '2024-06-12 04:07:39', '2025-12-17 19:46:28', 'NmLXw9Nm', '7321978'), + (41668, 468, 2686, 'maybe', '2024-06-19 20:29:34', '2025-12-17 19:46:29', 'NmLXw9Nm', '7323802'), + (41669, 468, 2687, 'attending', '2024-06-11 19:38:46', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324019'), + (41670, 468, 2688, 'not_attending', '2024-06-20 22:43:08', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324073'), + (41671, 468, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324074'), + (41672, 468, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'NmLXw9Nm', '7324075'), + (41673, 468, 2691, 'attending', '2024-07-17 05:10:49', '2025-12-17 19:46:30', 'NmLXw9Nm', '7324076'), + (41674, 468, 2692, 'attending', '2024-07-27 04:14:14', '2025-12-17 19:46:30', 'NmLXw9Nm', '7324077'), + (41675, 468, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'NmLXw9Nm', '7324078'), + (41676, 468, 2694, 'attending', '2024-08-10 08:05:14', '2025-12-17 19:46:31', 'NmLXw9Nm', '7324079'), + (41677, 468, 2695, 'attending', '2024-08-16 03:14:05', '2025-12-17 19:46:31', 'NmLXw9Nm', '7324080'), + (41678, 468, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'NmLXw9Nm', '7324082'), + (41679, 468, 2698, 'not_attending', '2024-09-01 22:44:25', '2025-12-17 19:46:24', 'NmLXw9Nm', '7324083'), + (41680, 468, 2699, 'maybe', '2024-06-12 17:29:05', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324385'), + (41681, 468, 2700, 'not_attending', '2024-06-14 04:07:39', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324388'), + (41682, 468, 2701, 'not_attending', '2024-06-23 21:45:15', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324391'), + (41683, 468, 2705, 'maybe', '2024-06-23 21:45:22', '2025-12-17 19:46:29', 'NmLXw9Nm', '7324944'), + (41684, 468, 2706, 'not_attending', '2024-06-17 07:29:15', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324947'), + (41685, 468, 2707, 'not_attending', '2024-06-17 07:29:11', '2025-12-17 19:46:28', 'NmLXw9Nm', '7324952'), + (41686, 468, 2710, 'not_attending', '2024-06-19 20:29:19', '2025-12-17 19:46:29', 'NmLXw9Nm', '7325108'), + (41687, 468, 2711, 'not_attending', '2024-07-17 23:17:58', '2025-12-17 19:46:30', 'NmLXw9Nm', '7326524'), + (41688, 468, 2716, 'maybe', '2024-06-16 21:03:37', '2025-12-17 19:46:29', 'NmLXw9Nm', '7329096'), + (41689, 468, 2717, 'not_attending', '2024-06-23 21:45:09', '2025-12-17 19:46:29', 'NmLXw9Nm', '7329149'), + (41690, 468, 2720, 'not_attending', '2024-06-18 22:49:08', '2025-12-17 19:46:28', 'NmLXw9Nm', '7331436'), + (41691, 468, 2721, 'not_attending', '2024-06-23 21:45:00', '2025-12-17 19:46:29', 'NmLXw9Nm', '7331456'), + (41692, 468, 2722, 'not_attending', '2024-07-08 18:11:01', '2025-12-17 19:46:29', 'NmLXw9Nm', '7331457'), + (41693, 468, 2723, 'not_attending', '2024-06-19 20:29:37', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332389'), + (41694, 468, 2724, 'not_attending', '2024-06-23 21:45:05', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332562'), + (41695, 468, 2725, 'not_attending', '2024-06-19 20:29:11', '2025-12-17 19:46:28', 'NmLXw9Nm', '7332564'), + (41696, 468, 2726, 'maybe', '2024-06-19 20:29:23', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332853'), + (41697, 468, 2727, 'not_attending', '2024-06-20 22:41:46', '2025-12-17 19:46:29', 'NmLXw9Nm', '7332865'), + (41698, 468, 2728, 'not_attending', '2024-06-20 22:42:03', '2025-12-17 19:46:29', 'NmLXw9Nm', '7334124'), + (41699, 468, 2729, 'attending', '2024-06-21 21:28:13', '2025-12-17 19:46:29', 'NmLXw9Nm', '7335092'), + (41700, 468, 2730, 'not_attending', '2024-06-22 06:29:46', '2025-12-17 19:46:29', 'NmLXw9Nm', '7335193'), + (41701, 468, 2731, 'not_attending', '2024-06-23 21:45:03', '2025-12-17 19:46:29', 'NmLXw9Nm', '7335303'), + (41702, 468, 2732, 'not_attending', '2024-06-24 02:07:23', '2025-12-17 19:46:29', 'NmLXw9Nm', '7337207'), + (41703, 468, 2734, 'not_attending', '2024-06-30 23:29:04', '2025-12-17 19:46:29', 'NmLXw9Nm', '7339440'), + (41704, 468, 2738, 'not_attending', '2024-06-30 23:54:48', '2025-12-17 19:46:29', 'NmLXw9Nm', '7344085'), + (41705, 468, 2740, 'not_attending', '2024-06-30 23:53:36', '2025-12-17 19:46:29', 'NmLXw9Nm', '7344576'), + (41706, 468, 2741, 'not_attending', '2024-06-30 23:33:33', '2025-12-17 19:46:30', 'NmLXw9Nm', '7344592'), + (41707, 468, 2742, 'not_attending', '2024-07-03 04:31:00', '2025-12-17 19:46:29', 'NmLXw9Nm', '7345167'), + (41708, 468, 2744, 'not_attending', '2024-07-03 15:22:09', '2025-12-17 19:46:29', 'NmLXw9Nm', '7347764'), + (41709, 468, 2746, 'not_attending', '2024-07-03 04:30:23', '2025-12-17 19:46:29', 'NmLXw9Nm', '7348713'), + (41710, 468, 2747, 'not_attending', '2024-07-17 01:16:17', '2025-12-17 19:46:30', 'NmLXw9Nm', '7353587'), + (41711, 468, 2751, 'not_attending', '2024-07-08 18:18:42', '2025-12-17 19:46:29', 'NmLXw9Nm', '7355530'), + (41712, 468, 2752, 'not_attending', '2024-07-08 18:18:47', '2025-12-17 19:46:29', 'NmLXw9Nm', '7355531'), + (41713, 468, 2756, 'not_attending', '2024-07-09 23:06:29', '2025-12-17 19:46:29', 'NmLXw9Nm', '7358329'), + (41714, 468, 2757, 'attending', '2024-07-11 21:08:03', '2025-12-17 19:46:30', 'NmLXw9Nm', '7358733'), + (41715, 468, 2758, 'attending', '2024-07-11 22:15:23', '2025-12-17 19:46:30', 'NmLXw9Nm', '7358837'), + (41716, 468, 2759, 'not_attending', '2024-07-12 18:49:36', '2025-12-17 19:46:30', 'NmLXw9Nm', '7359624'), + (41717, 468, 2760, 'not_attending', '2024-07-12 23:38:12', '2025-12-17 19:46:30', 'NmLXw9Nm', '7359871'), + (41718, 468, 2761, 'not_attending', '2024-07-17 23:17:51', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363412'), + (41719, 468, 2762, 'not_attending', '2024-07-14 17:55:39', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363413'), + (41720, 468, 2763, 'not_attending', '2024-07-17 23:18:02', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363594'), + (41721, 468, 2764, 'maybe', '2024-07-28 03:03:16', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363595'), + (41722, 468, 2765, 'not_attending', '2024-07-16 00:11:47', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363604'), + (41723, 468, 2766, 'maybe', '2024-07-27 02:52:55', '2025-12-17 19:46:30', 'NmLXw9Nm', '7363643'), + (41724, 468, 2767, 'not_attending', '2024-07-17 23:18:06', '2025-12-17 19:46:30', 'NmLXw9Nm', '7364726'), + (41725, 468, 2768, 'maybe', '2024-07-18 00:48:06', '2025-12-17 19:46:30', 'NmLXw9Nm', '7366031'), + (41726, 468, 2769, 'not_attending', '2024-07-19 22:58:29', '2025-12-17 19:46:30', 'NmLXw9Nm', '7366803'), + (41727, 468, 2771, 'attending', '2024-07-20 22:40:48', '2025-12-17 19:46:30', 'NmLXw9Nm', '7368263'), + (41728, 468, 2772, 'attending', '2024-07-20 22:40:56', '2025-12-17 19:46:30', 'NmLXw9Nm', '7368267'), + (41729, 468, 2774, 'not_attending', '2024-07-21 18:46:16', '2025-12-17 19:46:30', 'NmLXw9Nm', '7368606'), + (41730, 468, 2781, 'attending', '2024-07-25 21:25:53', '2025-12-17 19:46:30', 'NmLXw9Nm', '7373194'), + (41731, 468, 2782, 'not_attending', '2024-07-27 02:52:51', '2025-12-17 19:46:30', 'NmLXw9Nm', '7376725'), + (41732, 468, 2784, 'maybe', '2024-07-31 00:40:40', '2025-12-17 19:46:31', 'NmLXw9Nm', '7380872'), + (41733, 468, 2785, 'maybe', '2024-08-02 02:14:35', '2025-12-17 19:46:31', 'NmLXw9Nm', '7380988'), + (41734, 468, 2786, 'not_attending', '2024-08-04 02:58:33', '2025-12-17 19:46:31', 'NmLXw9Nm', '7381403'), + (41735, 468, 2787, 'not_attending', '2024-08-02 02:14:47', '2025-12-17 19:46:32', 'NmLXw9Nm', '7381568'), + (41736, 468, 2788, 'maybe', '2024-08-04 22:22:39', '2025-12-17 19:46:31', 'NmLXw9Nm', '7384036'), + (41737, 468, 2789, 'not_attending', '2024-08-03 02:02:03', '2025-12-17 19:46:31', 'NmLXw9Nm', '7384047'), + (41738, 468, 2790, 'not_attending', '2024-08-04 22:22:49', '2025-12-17 19:46:31', 'NmLXw9Nm', '7384857'), + (41739, 468, 2791, 'attending', '2024-08-06 23:21:35', '2025-12-17 19:46:31', 'NmLXw9Nm', '7390760'), + (41740, 468, 2792, 'maybe', '2024-08-07 22:15:18', '2025-12-17 19:46:31', 'NmLXw9Nm', '7390763'), + (41741, 468, 2793, 'not_attending', '2024-08-07 22:18:40', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391135'), + (41742, 468, 2794, 'attending', '2024-08-08 01:50:51', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391173'), + (41743, 468, 2795, 'not_attending', '2024-08-08 17:24:27', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391265'), + (41744, 468, 2796, 'not_attending', '2024-08-15 22:05:47', '2025-12-17 19:46:31', 'NmLXw9Nm', '7391451'), + (41745, 468, 2797, 'not_attending', '2024-08-12 22:21:29', '2025-12-17 19:46:31', 'NmLXw9Nm', '7392641'), + (41746, 468, 2799, 'attending', '2024-08-11 20:22:10', '2025-12-17 19:46:31', 'NmLXw9Nm', '7395922'), + (41747, 468, 2800, 'not_attending', '2024-08-15 22:05:45', '2025-12-17 19:46:31', 'NmLXw9Nm', '7397405'), + (41748, 468, 2801, 'maybe', '2024-08-14 18:01:09', '2025-12-17 19:46:32', 'NmLXw9Nm', '7397462'), + (41749, 468, 2802, 'not_attending', '2024-09-01 22:44:18', '2025-12-17 19:46:32', 'NmLXw9Nm', '7397463'), + (41750, 468, 2803, 'maybe', '2024-08-14 18:01:16', '2025-12-17 19:46:32', 'NmLXw9Nm', '7397869'), + (41751, 468, 2806, 'not_attending', '2024-09-18 17:49:01', '2025-12-17 19:46:25', 'NmLXw9Nm', '7404888'), + (41752, 468, 2814, 'attending', '2024-09-08 18:32:53', '2025-12-17 19:46:24', 'NmLXw9Nm', '7424267'), + (41753, 468, 2815, 'maybe', '2024-09-09 23:06:39', '2025-12-17 19:46:25', 'NmLXw9Nm', '7424268'), + (41754, 468, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'NmLXw9Nm', '7424275'), + (41755, 468, 2822, 'attending', '2024-11-02 02:27:55', '2025-12-17 19:46:26', 'NmLXw9Nm', '7424276'), + (41756, 468, 2824, 'attending', '2024-09-08 02:56:26', '2025-12-17 19:46:25', 'NmLXw9Nm', '7432751'), + (41757, 468, 2825, 'attending', '2024-09-08 02:56:56', '2025-12-17 19:46:25', 'NmLXw9Nm', '7432752'), + (41758, 468, 2826, 'attending', '2024-09-08 02:57:38', '2025-12-17 19:46:25', 'NmLXw9Nm', '7432753'), + (41759, 468, 2827, 'attending', '2024-09-08 02:57:59', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432754'), + (41760, 468, 2828, 'attending', '2024-09-08 02:58:31', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432755'), + (41761, 468, 2829, 'attending', '2024-09-08 02:58:58', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432756'), + (41762, 468, 2830, 'attending', '2024-09-08 02:59:30', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432758'), + (41763, 468, 2831, 'attending', '2024-09-08 02:59:55', '2025-12-17 19:46:26', 'NmLXw9Nm', '7432759'), + (41764, 468, 2832, 'not_attending', '2024-09-09 23:06:27', '2025-12-17 19:46:24', 'NmLXw9Nm', '7433324'), + (41765, 468, 2833, 'attending', '2024-09-10 18:57:25', '2025-12-17 19:46:24', 'NmLXw9Nm', '7433834'), + (41766, 468, 2834, 'not_attending', '2024-09-13 19:12:33', '2025-12-17 19:46:25', 'NmLXw9Nm', '7433852'), + (41767, 468, 2835, 'not_attending', '2024-09-12 17:56:53', '2025-12-17 19:46:24', 'NmLXw9Nm', '7437354'), + (41768, 468, 2836, 'maybe', '2024-09-13 19:12:37', '2025-12-17 19:46:25', 'NmLXw9Nm', '7438708'), + (41769, 468, 2837, 'not_attending', '2024-09-12 18:57:43', '2025-12-17 19:46:25', 'NmLXw9Nm', '7438711'), + (41770, 468, 2838, 'not_attending', '2024-09-27 17:15:00', '2025-12-17 19:46:25', 'NmLXw9Nm', '7439182'), + (41771, 468, 2840, 'not_attending', '2024-09-15 21:46:47', '2025-12-17 19:46:25', 'NmLXw9Nm', '7444429'), + (41772, 468, 2841, 'not_attending', '2024-09-16 21:18:01', '2025-12-17 19:46:25', 'NmLXw9Nm', '7444444'), + (41773, 468, 2844, 'not_attending', '2024-09-19 22:55:59', '2025-12-17 19:46:25', 'NmLXw9Nm', '7450233'), + (41774, 468, 2845, 'maybe', '2024-09-21 19:15:10', '2025-12-17 19:46:25', 'NmLXw9Nm', '7452129'), + (41775, 468, 2847, 'not_attending', '2024-09-22 02:31:42', '2025-12-17 19:46:25', 'NmLXw9Nm', '7452299'), + (41776, 468, 2849, 'attending', '2024-09-28 06:05:24', '2025-12-17 19:46:25', 'NmLXw9Nm', '7457114'), + (41777, 468, 2850, 'not_attending', '2024-09-28 06:05:43', '2025-12-17 19:46:25', 'NmLXw9Nm', '7457153'), + (41778, 468, 2853, 'maybe', '2024-11-09 20:11:40', '2025-12-17 19:46:26', 'NmLXw9Nm', '7465683'), + (41779, 468, 2854, 'attending', '2024-10-02 00:27:58', '2025-12-17 19:46:26', 'NmLXw9Nm', '7465684'), + (41780, 468, 2861, 'maybe', '2024-10-01 16:31:29', '2025-12-17 19:46:26', 'NmLXw9Nm', '7469826'), + (41781, 468, 2862, 'maybe', '2024-10-01 16:31:44', '2025-12-17 19:46:25', 'NmLXw9Nm', '7470197'), + (41782, 468, 2863, 'not_attending', '2024-10-02 00:27:40', '2025-12-17 19:46:26', 'NmLXw9Nm', '7470275'), + (41783, 468, 2866, 'not_attending', '2024-11-18 04:40:57', '2025-12-17 19:46:27', 'NmLXw9Nm', '7471201'), + (41784, 468, 2870, 'attending', '2024-10-05 21:16:51', '2025-12-17 19:46:26', 'NmLXw9Nm', '7475068'), + (41785, 468, 2883, 'attending', '2024-10-23 17:32:03', '2025-12-17 19:46:26', 'NmLXw9Nm', '7649157'), + (41786, 468, 2892, 'maybe', '2024-10-28 03:44:31', '2025-12-17 19:46:26', 'NmLXw9Nm', '7672064'), + (41787, 468, 2896, 'not_attending', '2024-11-10 21:54:47', '2025-12-17 19:46:27', 'NmLXw9Nm', '7683647'), + (41788, 468, 2898, 'maybe', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'NmLXw9Nm', '7685613'), + (41789, 468, 2899, 'maybe', '2024-11-10 21:55:16', '2025-12-17 19:46:27', 'NmLXw9Nm', '7685616'), + (41790, 468, 2900, 'maybe', '2024-11-10 21:55:01', '2025-12-17 19:46:26', 'NmLXw9Nm', '7686090'), + (41791, 468, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'NmLXw9Nm', '7688194'), + (41792, 468, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'NmLXw9Nm', '7688196'), + (41793, 468, 2905, 'attending', '2024-11-09 04:30:14', '2025-12-17 19:46:27', 'NmLXw9Nm', '7688289'), + (41794, 468, 2909, 'attending', '2024-11-10 21:20:29', '2025-12-17 19:46:27', 'NmLXw9Nm', '7689771'), + (41795, 468, 2911, 'not_attending', '2024-11-11 05:28:33', '2025-12-17 19:46:27', 'NmLXw9Nm', '7689876'), + (41796, 468, 2912, 'maybe', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'NmLXw9Nm', '7692763'), + (41797, 468, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'NmLXw9Nm', '7697552'), + (41798, 468, 2915, 'not_attending', '2024-11-18 04:40:52', '2025-12-17 19:46:27', 'NmLXw9Nm', '7698151'), + (41799, 468, 2916, 'maybe', '2024-11-18 04:40:35', '2025-12-17 19:46:27', 'NmLXw9Nm', '7699006'), + (41800, 468, 2917, 'maybe', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'NmLXw9Nm', '7699878'), + (41801, 468, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'NmLXw9Nm', '7704043'), + (41802, 468, 2920, 'not_attending', '2024-11-24 19:35:31', '2025-12-17 19:46:28', 'NmLXw9Nm', '7708406'), + (41803, 468, 2921, 'attending', '2024-11-24 01:01:41', '2025-12-17 19:46:28', 'NmLXw9Nm', '7708460'), + (41804, 468, 2922, 'not_attending', '2024-11-25 22:53:16', '2025-12-17 19:46:21', 'NmLXw9Nm', '7710890'), + (41805, 468, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'NmLXw9Nm', '7712467'), + (41806, 468, 2925, 'not_attending', '2024-12-08 04:13:19', '2025-12-17 19:46:21', 'NmLXw9Nm', '7713584'), + (41807, 468, 2926, 'maybe', '2024-12-03 04:23:30', '2025-12-17 19:46:21', 'NmLXw9Nm', '7713585'), + (41808, 468, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'NmLXw9Nm', '7713586'), + (41809, 468, 2945, 'maybe', '2025-03-14 02:17:05', '2025-12-17 19:46:19', 'NmLXw9Nm', '7725964'), + (41810, 468, 2951, 'attending', '2024-12-11 01:08:52', '2025-12-17 19:46:21', 'NmLXw9Nm', '7729509'), + (41811, 468, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'NmLXw9Nm', '7738518'), + (41812, 468, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', 'NmLXw9Nm', '7750632'), + (41813, 468, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'NmLXw9Nm', '7750636'), + (41814, 468, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'NmLXw9Nm', '7796540'), + (41815, 468, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'NmLXw9Nm', '7796541'), + (41816, 468, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'NmLXw9Nm', '7796542'), + (41817, 468, 2968, 'not_attending', '2025-01-08 21:07:01', '2025-12-17 19:46:22', 'NmLXw9Nm', '7797967'), + (41818, 468, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'NmLXw9Nm', '7825913'), + (41819, 468, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', 'NmLXw9Nm', '7825920'), + (41820, 468, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'NmLXw9Nm', '7826209'), + (41821, 468, 2985, 'maybe', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'NmLXw9Nm', '7834742'), + (41822, 468, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'NmLXw9Nm', '7842108'), + (41823, 468, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'NmLXw9Nm', '7842902'), + (41824, 468, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'NmLXw9Nm', '7842903'), + (41825, 468, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'NmLXw9Nm', '7842904'), + (41826, 468, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'NmLXw9Nm', '7842905'), + (41827, 468, 3000, 'not_attending', '2025-02-18 02:47:19', '2025-12-17 19:46:24', 'NmLXw9Nm', '7852541'), + (41828, 468, 3003, 'not_attending', '2025-02-19 01:31:26', '2025-12-17 19:46:24', 'NmLXw9Nm', '7854589'), + (41829, 468, 3004, 'attending', '2025-02-19 00:06:30', '2025-12-17 19:46:24', 'NmLXw9Nm', '7854599'), + (41830, 468, 3005, 'not_attending', '2025-02-19 01:07:48', '2025-12-17 19:46:24', 'NmLXw9Nm', '7854604'), + (41831, 468, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'NmLXw9Nm', '7855719'), + (41832, 468, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'NmLXw9Nm', '7860683'), + (41833, 468, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'NmLXw9Nm', '7860684'), + (41834, 468, 3012, 'attending', '2025-03-02 04:04:39', '2025-12-17 19:46:19', 'NmLXw9Nm', '7866095'), + (41835, 468, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'NmLXw9Nm', '7869170'), + (41836, 468, 3014, 'maybe', '2025-04-05 05:49:29', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869185'), + (41837, 468, 3015, 'attending', '2025-04-24 01:05:21', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869186'), + (41838, 468, 3016, 'attending', '2025-04-19 22:49:34', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869187'), + (41839, 468, 3017, 'attending', '2025-03-25 01:01:00', '2025-12-17 19:46:19', 'NmLXw9Nm', '7869188'), + (41840, 468, 3018, 'attending', '2025-04-08 01:56:08', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869189'), + (41841, 468, 3019, 'attending', '2025-04-05 05:49:32', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869190'), + (41842, 468, 3020, 'attending', '2025-04-19 22:49:40', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869191'), + (41843, 468, 3022, 'attending', '2025-04-24 01:05:18', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869193'), + (41844, 468, 3028, 'attending', '2025-04-19 22:49:50', '2025-12-17 19:46:20', 'NmLXw9Nm', '7869199'), + (41845, 468, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'NmLXw9Nm', '7869201'), + (41846, 468, 3033, 'maybe', '2025-03-11 02:34:22', '2025-12-17 19:46:19', 'NmLXw9Nm', '7877465'), + (41847, 468, 3034, 'maybe', '2025-03-11 22:38:12', '2025-12-17 19:46:19', 'NmLXw9Nm', '7878570'), + (41848, 468, 3037, 'not_attending', '2025-03-14 03:33:13', '2025-12-17 19:46:19', 'NmLXw9Nm', '7880977'), + (41849, 468, 3038, 'not_attending', '2025-03-14 03:32:59', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881989'), + (41850, 468, 3039, 'attending', '2025-03-14 03:00:20', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881992'), + (41851, 468, 3040, 'attending', '2025-03-14 03:05:41', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881994'), + (41852, 468, 3041, 'attending', '2025-03-14 03:08:18', '2025-12-17 19:46:19', 'NmLXw9Nm', '7881995'), + (41853, 468, 3045, 'maybe', '2025-04-05 05:49:24', '2025-12-17 19:46:19', 'NmLXw9Nm', '7882691'), + (41854, 468, 3046, 'maybe', '2025-04-12 04:08:57', '2025-12-17 19:46:20', 'NmLXw9Nm', '7882692'), + (41855, 468, 3049, 'not_attending', '2025-03-17 00:15:29', '2025-12-17 19:46:19', 'NmLXw9Nm', '7883215'), + (41856, 468, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'NmLXw9Nm', '7888250'), + (41857, 468, 3058, 'not_attending', '2025-03-27 00:32:43', '2025-12-17 19:46:19', 'NmLXw9Nm', '7891460'), + (41858, 468, 3060, 'maybe', '2025-03-30 23:39:08', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892589'), + (41859, 468, 3061, 'not_attending', '2025-03-30 23:38:40', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892590'), + (41860, 468, 3062, 'not_attending', '2025-03-30 04:06:51', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892738'), + (41861, 468, 3063, 'maybe', '2025-03-27 22:00:24', '2025-12-17 19:46:19', 'NmLXw9Nm', '7892801'), + (41862, 468, 3065, 'not_attending', '2025-04-03 22:07:42', '2025-12-17 19:46:19', 'NmLXw9Nm', '7893676'), + (41863, 468, 3066, 'attending', '2025-03-30 02:46:51', '2025-12-17 19:46:20', 'NmLXw9Nm', '7894207'), + (41864, 468, 3068, 'attending', '2025-03-30 22:46:54', '2025-12-17 19:46:19', 'NmLXw9Nm', '7894823'), + (41865, 468, 3069, 'attending', '2025-03-30 23:31:22', '2025-12-17 19:46:19', 'NmLXw9Nm', '7894828'), + (41866, 468, 3070, 'attending', '2025-03-30 23:33:31', '2025-12-17 19:46:20', 'NmLXw9Nm', '7894829'), + (41867, 468, 3071, 'attending', '2025-03-31 20:39:20', '2025-12-17 19:46:19', 'NmLXw9Nm', '7895429'), + (41868, 468, 3075, 'maybe', '2025-04-14 02:34:46', '2025-12-17 19:46:20', 'NmLXw9Nm', '7898896'), + (41869, 468, 3076, 'attending', '2025-04-05 05:50:42', '2025-12-17 19:46:20', 'NmLXw9Nm', '7899007'), + (41870, 468, 3081, 'not_attending', '2025-04-07 22:38:15', '2025-12-17 19:46:20', 'NmLXw9Nm', '7902801'), + (41871, 468, 3083, 'not_attending', '2025-04-09 19:23:23', '2025-12-17 19:46:20', 'NmLXw9Nm', '7903308'), + (41872, 468, 3086, 'not_attending', '2025-04-09 22:29:58', '2025-12-17 19:46:20', 'NmLXw9Nm', '7903852'), + (41873, 468, 3088, 'attending', '2025-06-13 21:53:47', '2025-12-17 19:46:15', 'NmLXw9Nm', '7904777'), + (41874, 468, 3089, 'attending', '2025-04-13 17:13:49', '2025-12-17 19:46:20', 'NmLXw9Nm', '7911208'), + (41875, 468, 3093, 'not_attending', '2025-04-19 22:49:45', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342248'), + (41876, 468, 3094, 'maybe', '2025-05-02 04:20:52', '2025-12-17 19:46:21', 'NmLXw9Nm', '8342292'), + (41877, 468, 3095, 'attending', '2025-05-03 22:46:51', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342293'), + (41878, 468, 3096, 'not_attending', '2025-04-21 03:30:16', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342987'), + (41879, 468, 3097, 'attending', '2025-04-21 05:24:26', '2025-12-17 19:46:20', 'NmLXw9Nm', '8342993'), + (41880, 468, 3098, 'not_attending', '2025-04-22 03:23:00', '2025-12-17 19:46:20', 'NmLXw9Nm', '8343504'), + (41881, 468, 3099, 'not_attending', '2025-04-21 23:07:17', '2025-12-17 19:46:20', 'NmLXw9Nm', '8343522'), + (41882, 468, 3100, 'not_attending', '2025-04-22 03:22:56', '2025-12-17 19:46:20', 'NmLXw9Nm', '8343977'), + (41883, 468, 3101, 'attending', '2025-04-24 00:08:24', '2025-12-17 19:46:20', 'NmLXw9Nm', '8345032'), + (41884, 468, 3102, 'not_attending', '2025-04-27 20:55:25', '2025-12-17 19:46:20', 'NmLXw9Nm', '8346008'), + (41885, 468, 3104, 'attending', '2025-04-26 23:29:49', '2025-12-17 19:46:15', 'NmLXw9Nm', '8349164'), + (41886, 468, 3105, 'maybe', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'NmLXw9Nm', '8349545'), + (41887, 468, 3107, 'maybe', '2025-04-27 22:47:23', '2025-12-17 19:46:20', 'NmLXw9Nm', '8350107'), + (41888, 468, 3109, 'attending', '2025-04-29 02:42:47', '2025-12-17 19:46:21', 'NmLXw9Nm', '8352001'), + (41889, 468, 3110, 'not_attending', '2025-05-02 04:20:35', '2025-12-17 19:46:20', 'NmLXw9Nm', '8353484'), + (41890, 468, 3112, 'maybe', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'NmLXw9Nm', '8353584'), + (41891, 468, 3114, 'not_attending', '2025-05-06 04:47:24', '2025-12-17 19:46:20', 'NmLXw9Nm', '8357180'), + (41892, 468, 3115, 'not_attending', '2025-05-03 05:49:20', '2025-12-17 19:46:20', 'NmLXw9Nm', '8357635'), + (41893, 468, 3119, 'not_attending', '2025-05-05 20:53:22', '2025-12-17 19:46:21', 'NmLXw9Nm', '8360035'), + (41894, 468, 3120, 'attending', '2025-05-06 00:47:39', '2025-12-17 19:46:21', 'NmLXw9Nm', '8360736'), + (41895, 468, 3121, 'maybe', '2025-05-11 02:41:23', '2025-12-17 19:46:21', 'NmLXw9Nm', '8362730'), + (41896, 468, 3122, 'not_attending', '2025-05-07 22:35:05', '2025-12-17 19:46:21', 'NmLXw9Nm', '8362978'), + (41897, 468, 3124, 'attending', '2025-05-11 02:39:30', '2025-12-17 19:46:21', 'NmLXw9Nm', '8363566'), + (41898, 468, 3125, 'attending', '2025-05-11 02:41:19', '2025-12-17 19:46:21', 'NmLXw9Nm', '8364293'), + (41899, 468, 3126, 'maybe', '2025-05-13 21:55:12', '2025-12-17 19:46:21', 'NmLXw9Nm', '8365614'), + (41900, 468, 3127, 'not_attending', '2025-05-11 03:58:21', '2025-12-17 19:46:21', 'NmLXw9Nm', '8365615'), + (41901, 468, 3128, 'maybe', '2025-05-11 18:33:51', '2025-12-17 19:46:21', 'NmLXw9Nm', '8366077'), + (41902, 468, 3129, 'not_attending', '2025-05-12 20:02:16', '2025-12-17 19:46:21', 'NmLXw9Nm', '8366441'), + (41903, 468, 3130, 'maybe', '2025-05-27 04:22:45', '2025-12-17 19:46:21', 'NmLXw9Nm', '8367403'), + (41904, 468, 3131, 'attending', '2025-05-13 00:28:23', '2025-12-17 19:46:21', 'NmLXw9Nm', '8368028'), + (41905, 468, 3132, 'not_attending', '2025-05-13 21:54:33', '2025-12-17 19:46:21', 'NmLXw9Nm', '8368029'), + (41906, 468, 3133, 'attending', '2025-05-16 19:09:20', '2025-12-17 19:46:14', 'NmLXw9Nm', '8368030'), + (41907, 468, 3134, 'maybe', '2025-05-13 00:28:29', '2025-12-17 19:46:21', 'NmLXw9Nm', '8368031'), + (41908, 468, 3135, 'attending', '2025-05-17 04:01:40', '2025-12-17 19:46:21', 'NmLXw9Nm', '8373126'), + (41909, 468, 3138, 'not_attending', '2025-05-27 04:22:34', '2025-12-17 19:46:21', 'NmLXw9Nm', '8376037'), + (41910, 468, 3142, 'not_attending', '2025-05-27 21:54:17', '2025-12-17 19:46:21', 'NmLXw9Nm', '8387505'), + (41911, 468, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'NmLXw9Nm', '8388462'), + (41912, 468, 3144, 'attending', '2025-05-30 20:24:52', '2025-12-17 19:46:14', 'NmLXw9Nm', '8393073'), + (41913, 468, 3145, 'attending', '2025-05-31 19:53:21', '2025-12-17 19:46:14', 'NmLXw9Nm', '8393168'), + (41914, 468, 3146, 'attending', '2025-06-04 04:51:47', '2025-12-17 19:46:15', 'NmLXw9Nm', '8393169'), + (41915, 468, 3150, 'maybe', '2025-06-04 04:51:49', '2025-12-17 19:46:15', 'NmLXw9Nm', '8393174'), + (41916, 468, 3153, 'maybe', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'NmLXw9Nm', '8400273'), + (41917, 468, 3154, 'attending', '2025-06-04 04:51:56', '2025-12-17 19:46:15', 'NmLXw9Nm', '8400274'), + (41918, 468, 3155, 'not_attending', '2025-06-04 04:51:57', '2025-12-17 19:46:16', 'NmLXw9Nm', '8400275'), + (41919, 468, 3156, 'not_attending', '2025-06-04 04:51:59', '2025-12-17 19:46:16', 'NmLXw9Nm', '8400276'), + (41920, 468, 3157, 'attending', '2025-06-04 04:28:53', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401407'), + (41921, 468, 3158, 'attending', '2025-06-04 04:30:10', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401408'), + (41922, 468, 3159, 'attending', '2025-06-04 04:32:58', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401410'), + (41923, 468, 3160, 'attending', '2025-06-04 04:36:10', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401411'), + (41924, 468, 3161, 'attending', '2025-06-04 04:38:06', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401412'), + (41925, 468, 3162, 'not_attending', '2025-06-05 19:30:15', '2025-12-17 19:46:15', 'NmLXw9Nm', '8401599'), + (41926, 468, 3163, 'not_attending', '2025-06-06 23:08:00', '2025-12-17 19:46:15', 'NmLXw9Nm', '8402899'), + (41927, 468, 3164, 'attending', '2025-06-06 00:51:05', '2025-12-17 19:46:15', 'NmLXw9Nm', '8403121'), + (41928, 468, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'NmLXw9Nm', '8404977'), + (41929, 468, 3172, 'maybe', '2025-06-18 01:16:04', '2025-12-17 19:46:15', 'NmLXw9Nm', '8410181'), + (41930, 468, 3176, 'attending', '2025-06-20 01:01:56', '2025-12-17 19:46:15', 'NmLXw9Nm', '8416741'), + (41931, 468, 3179, 'attending', '2025-06-24 03:27:13', '2025-12-17 19:46:15', 'NmLXw9Nm', '8421850'), + (41932, 468, 3180, 'not_attending', '2025-06-25 20:52:03', '2025-12-17 19:46:15', 'NmLXw9Nm', '8422682'), + (41933, 468, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'NmLXw9Nm', '8430783'), + (41934, 468, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'NmLXw9Nm', '8430784'), + (41935, 468, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'NmLXw9Nm', '8430799'), + (41936, 468, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'NmLXw9Nm', '8430800'), + (41937, 468, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'NmLXw9Nm', '8430801'), + (41938, 468, 3186, 'not_attending', '2025-07-02 01:56:39', '2025-12-17 19:46:16', 'NmLXw9Nm', '8431527'), + (41939, 468, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'NmLXw9Nm', '8438709'), + (41940, 468, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'NmLXw9Nm', '8457738'), + (41941, 468, 3197, 'attending', '2025-07-18 02:28:13', '2025-12-17 19:46:17', 'NmLXw9Nm', '8458825'), + (41942, 468, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'NmLXw9Nm', '8459566'), + (41943, 468, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'NmLXw9Nm', '8459567'), + (41944, 468, 3202, 'not_attending', '2025-07-23 12:57:51', '2025-12-17 19:46:17', 'NmLXw9Nm', '8459568'), + (41945, 468, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'NmLXw9Nm', '8461032'), + (41946, 468, 3213, 'attending', '2025-08-08 22:23:42', '2025-12-17 19:46:17', 'NmLXw9Nm', '8477876'), + (41947, 468, 3214, 'attending', '2025-08-05 06:25:51', '2025-12-17 19:46:17', 'NmLXw9Nm', '8477877'), + (41948, 468, 3215, 'attending', '2025-08-16 21:51:06', '2025-12-17 19:46:18', 'NmLXw9Nm', '8477880'), + (41949, 468, 3220, 'not_attending', '2025-08-16 21:50:29', '2025-12-17 19:46:18', 'NmLXw9Nm', '8485675'), + (41950, 468, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'NmLXw9Nm', '8485688'), + (41951, 468, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'NmLXw9Nm', '8490587'), + (41952, 468, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'NmLXw9Nm', '8493552'), + (41953, 468, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'NmLXw9Nm', '8493553'), + (41954, 468, 3238, 'maybe', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'NmLXw9Nm', '8493554'), + (41955, 468, 3239, 'maybe', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'NmLXw9Nm', '8493555'), + (41956, 468, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'NmLXw9Nm', '8493556'), + (41957, 468, 3241, 'attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493557'), + (41958, 468, 3242, 'attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493558'), + (41959, 468, 3243, 'attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493559'), + (41960, 468, 3244, 'attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493560'), + (41961, 468, 3245, 'attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'NmLXw9Nm', '8493561'), + (41962, 468, 3246, 'maybe', '2025-09-24 20:50:59', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493562'), + (41963, 468, 3247, 'attending', '2025-10-04 05:54:24', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493563'), + (41964, 468, 3248, 'attending', '2025-10-04 05:54:15', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493564'), + (41965, 468, 3249, 'attending', '2025-10-04 05:54:19', '2025-12-17 19:46:13', 'NmLXw9Nm', '8493565'), + (41966, 468, 3250, 'attending', '2025-10-04 05:54:28', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493566'), + (41967, 468, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'NmLXw9Nm', '8493572'), + (41968, 468, 3271, 'not_attending', '2025-09-16 01:49:12', '2025-12-17 19:46:12', 'NmLXw9Nm', '8521430'), + (41969, 468, 3272, 'not_attending', '2025-09-22 01:55:04', '2025-12-17 19:46:12', 'NmLXw9Nm', '8524068'), + (41970, 468, 3274, 'not_attending', '2025-09-20 21:23:39', '2025-12-17 19:46:12', 'NmLXw9Nm', '8527784'), + (41971, 468, 3279, 'not_attending', '2025-10-02 22:48:24', '2025-12-17 19:46:13', 'NmLXw9Nm', '8535685'), + (41972, 468, 3281, 'not_attending', '2025-10-12 22:59:46', '2025-12-17 19:46:14', 'NmLXw9Nm', '8535687'), + (41973, 468, 3282, 'attending', '2025-10-04 20:21:37', '2025-12-17 19:46:13', 'NmLXw9Nm', '8537571'), + (41974, 468, 3283, 'not_attending', '2025-10-07 04:03:46', '2025-12-17 19:46:14', 'NmLXw9Nm', '8538077'), + (41975, 468, 3284, 'attending', '2025-10-08 18:55:04', '2025-12-17 19:46:13', 'NmLXw9Nm', '8540725'), + (41976, 468, 3285, 'attending', '2025-10-08 18:56:13', '2025-12-17 19:46:13', 'NmLXw9Nm', '8540726'), + (41977, 468, 3286, 'attending', '2025-10-08 18:58:12', '2025-12-17 19:46:14', 'NmLXw9Nm', '8540728'), + (41978, 468, 3287, 'attending', '2025-10-08 18:59:25', '2025-12-17 19:46:14', 'NmLXw9Nm', '8540729'), + (41979, 468, 3289, 'attending', '2025-10-20 18:07:43', '2025-12-17 19:46:14', 'NmLXw9Nm', '8542939'), + (41980, 468, 3290, 'not_attending', '2025-10-12 23:02:51', '2025-12-17 19:46:13', 'NmLXw9Nm', '8542943'), + (41981, 468, 3292, 'attending', '2025-10-15 05:53:16', '2025-12-17 19:46:14', 'NmLXw9Nm', '8543835'), + (41982, 468, 3293, 'attending', '2025-10-15 05:54:19', '2025-12-17 19:46:14', 'NmLXw9Nm', '8543836'), + (41983, 468, 3297, 'attending', '2025-10-21 03:10:20', '2025-12-17 19:46:14', 'NmLXw9Nm', '8548090'), + (41984, 468, 3313, 'not_attending', '2025-10-30 02:35:07', '2025-12-17 19:46:14', 'NmLXw9Nm', '8550896'), + (41985, 468, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'NmLXw9Nm', '8555421'), + (41986, 469, 1857, 'attending', '2023-01-24 00:28:09', '2025-12-17 19:47:05', 'dJ9OElB4', '5873973'), + (41987, 469, 1864, 'attending', '2023-01-21 19:52:38', '2025-12-17 19:47:05', 'dJ9OElB4', '5879675'), + (41988, 469, 1865, 'attending', '2023-01-29 00:28:55', '2025-12-17 19:47:06', 'dJ9OElB4', '5879676'), + (41989, 469, 1866, 'attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dJ9OElB4', '5880939'), + (41990, 469, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dJ9OElB4', '5880940'), + (41991, 469, 1868, 'attending', '2023-02-21 21:50:20', '2025-12-17 19:47:07', 'dJ9OElB4', '5880942'), + (41992, 469, 1869, 'attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dJ9OElB4', '5880943'), + (41993, 469, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dJ9OElB4', '5887890'), + (41994, 469, 1875, 'attending', '2023-01-28 00:01:45', '2025-12-17 19:47:06', 'dJ9OElB4', '5887908'), + (41995, 469, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dJ9OElB4', '5888598'), + (41996, 469, 1878, 'attending', '2023-01-29 00:29:22', '2025-12-17 19:47:07', 'dJ9OElB4', '5893000'), + (41997, 469, 1879, 'maybe', '2023-01-29 22:49:55', '2025-12-17 19:47:06', 'dJ9OElB4', '5893001'), + (41998, 469, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dJ9OElB4', '5893260'), + (41999, 469, 1882, 'attending', '2023-01-31 23:33:44', '2025-12-17 19:47:06', 'dJ9OElB4', '5898447'), + (42000, 469, 1883, 'maybe', '2023-01-29 19:34:31', '2025-12-17 19:47:06', 'dJ9OElB4', '5898762'), + (42001, 469, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dJ9OElB4', '5899826'), + (42002, 469, 1885, 'maybe', '2023-02-03 18:29:08', '2025-12-17 19:47:08', 'dJ9OElB4', '5899928'), + (42003, 469, 1886, 'attending', '2023-03-07 21:33:02', '2025-12-17 19:47:09', 'dJ9OElB4', '5899930'), + (42004, 469, 1888, 'attending', '2023-02-17 16:39:39', '2025-12-17 19:47:07', 'dJ9OElB4', '5900197'), + (42005, 469, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dJ9OElB4', '5900199'), + (42006, 469, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dJ9OElB4', '5900200'), + (42007, 469, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dJ9OElB4', '5900202'), + (42008, 469, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dJ9OElB4', '5900203'), + (42009, 469, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dJ9OElB4', '5901108'), + (42010, 469, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dJ9OElB4', '5901126'), + (42011, 469, 1897, 'attending', '2023-02-11 23:52:14', '2025-12-17 19:47:07', 'dJ9OElB4', '5901128'), + (42012, 469, 1898, 'attending', '2023-02-01 23:57:10', '2025-12-17 19:47:06', 'dJ9OElB4', '5901263'), + (42013, 469, 1899, 'attending', '2023-02-11 00:23:07', '2025-12-17 19:47:07', 'dJ9OElB4', '5901323'), + (42014, 469, 1902, 'not_attending', '2023-02-04 20:57:08', '2025-12-17 19:47:06', 'dJ9OElB4', '5902254'), + (42015, 469, 1905, 'attending', '2023-02-05 20:47:30', '2025-12-17 19:47:06', 'dJ9OElB4', '5904479'), + (42016, 469, 1907, 'attending', '2023-02-05 21:03:39', '2025-12-17 19:47:07', 'dJ9OElB4', '5904716'), + (42017, 469, 1908, 'attending', '2023-02-07 01:41:00', '2025-12-17 19:47:07', 'dJ9OElB4', '5905018'), + (42018, 469, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dJ9OElB4', '5909655'), + (42019, 469, 1912, 'attending', '2023-02-17 16:45:45', '2025-12-17 19:47:07', 'dJ9OElB4', '5909808'), + (42020, 469, 1914, 'attending', '2023-02-12 07:02:02', '2025-12-17 19:47:07', 'dJ9OElB4', '5910302'), + (42021, 469, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dJ9OElB4', '5910522'), + (42022, 469, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dJ9OElB4', '5910526'), + (42023, 469, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dJ9OElB4', '5910528'), + (42024, 469, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dJ9OElB4', '5916219'), + (42025, 469, 1925, 'attending', '2023-02-23 19:07:17', '2025-12-17 19:47:08', 'dJ9OElB4', '5932619'), + (42026, 469, 1928, 'attending', '2023-02-18 05:46:25', '2025-12-17 19:47:07', 'dJ9OElB4', '5932627'), + (42027, 469, 1930, 'attending', '2023-02-26 22:02:23', '2025-12-17 19:47:08', 'dJ9OElB4', '5933462'), + (42028, 469, 1931, 'attending', '2023-02-26 23:28:28', '2025-12-17 19:47:08', 'dJ9OElB4', '5933464'), + (42029, 469, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dJ9OElB4', '5936234'), + (42030, 469, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dJ9OElB4', '5958351'), + (42031, 469, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dJ9OElB4', '5959751'), + (42032, 469, 1939, 'attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dJ9OElB4', '5959755'), + (42033, 469, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dJ9OElB4', '5960055'), + (42034, 469, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dJ9OElB4', '5961684'), + (42035, 469, 1942, 'attending', '2023-02-27 18:54:00', '2025-12-17 19:47:08', 'dJ9OElB4', '5962085'), + (42036, 469, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dJ9OElB4', '5962132'), + (42037, 469, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dJ9OElB4', '5962133'), + (42038, 469, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dJ9OElB4', '5962134'), + (42039, 469, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dJ9OElB4', '5962317'), + (42040, 469, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dJ9OElB4', '5962318'), + (42041, 469, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dJ9OElB4', '5965933'), + (42042, 469, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dJ9OElB4', '5967014'), + (42043, 469, 1955, 'attending', '2023-03-29 20:12:29', '2025-12-17 19:46:57', 'dJ9OElB4', '5972529'), + (42044, 469, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dJ9OElB4', '5972815'), + (42045, 469, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dJ9OElB4', '5974016'), + (42046, 469, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dJ9OElB4', '5981515'), + (42047, 469, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dJ9OElB4', '5993516'), + (42048, 469, 1970, 'attending', '2023-03-23 20:03:18', '2025-12-17 19:46:56', 'dJ9OElB4', '5993758'), + (42049, 469, 1974, 'maybe', '2023-03-30 21:42:52', '2025-12-17 19:46:57', 'dJ9OElB4', '5993778'), + (42050, 469, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dJ9OElB4', '5998939'), + (42051, 469, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dJ9OElB4', '6028191'), + (42052, 469, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dJ9OElB4', '6040066'), + (42053, 469, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dJ9OElB4', '6042717'), + (42054, 469, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dJ9OElB4', '6044838'), + (42055, 469, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dJ9OElB4', '6044839'), + (42056, 469, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJ9OElB4', '6045684'), + (42057, 469, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dJ9OElB4', '6050104'), + (42058, 469, 2002, 'attending', '2023-04-28 20:27:27', '2025-12-17 19:47:01', 'dJ9OElB4', '6052605'), + (42059, 469, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dJ9OElB4', '6053195'), + (42060, 469, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dJ9OElB4', '6053198'), + (42061, 469, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dJ9OElB4', '6056085'), + (42062, 469, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dJ9OElB4', '6056916'), + (42063, 469, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dJ9OElB4', '6059290'), + (42064, 469, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dJ9OElB4', '6060328'), + (42065, 469, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dJ9OElB4', '6061037'), + (42066, 469, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dJ9OElB4', '6061039'), + (42067, 469, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dJ9OElB4', '6067245'), + (42068, 469, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dJ9OElB4', '6068094'), + (42069, 469, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dJ9OElB4', '6068252'), + (42070, 469, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dJ9OElB4', '6068253'), + (42071, 469, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dJ9OElB4', '6068254'), + (42072, 469, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dJ9OElB4', '6068280'), + (42073, 469, 2032, 'attending', '2023-06-03 16:47:43', '2025-12-17 19:47:04', 'dJ9OElB4', '6068281'), + (42074, 469, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dJ9OElB4', '6069093'), + (42075, 469, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dJ9OElB4', '6072528'), + (42076, 469, 2043, 'attending', '2023-04-26 22:34:28', '2025-12-17 19:47:01', 'dJ9OElB4', '6073023'), + (42077, 469, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dJ9OElB4', '6079840'), + (42078, 469, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dJ9OElB4', '6083398'), + (42079, 469, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dJ9OElB4', '6093504'), + (42080, 469, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dJ9OElB4', '6097414'), + (42081, 469, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dJ9OElB4', '6097442'), + (42082, 469, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dJ9OElB4', '6097684'), + (42083, 469, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dJ9OElB4', '6098762'), + (42084, 469, 2065, 'attending', '2023-06-17 19:29:23', '2025-12-17 19:46:49', 'dJ9OElB4', '6101169'), + (42085, 469, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dJ9OElB4', '6101361'), + (42086, 469, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dJ9OElB4', '6101362'), + (42087, 469, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dJ9OElB4', '6103752'), + (42088, 469, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dJ9OElB4', '6107314'), + (42089, 469, 2083, 'attending', '2023-05-27 21:33:32', '2025-12-17 19:47:04', 'dJ9OElB4', '6115629'), + (42090, 469, 2086, 'attending', '2023-06-01 22:41:45', '2025-12-17 19:47:04', 'dJ9OElB4', '6119877'), + (42091, 469, 2087, 'attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dJ9OElB4', '6120034'), + (42092, 469, 2089, 'attending', '2023-06-03 16:48:34', '2025-12-17 19:47:04', 'dJ9OElB4', '6125227'), + (42093, 469, 2091, 'attending', '2023-06-03 16:48:05', '2025-12-17 19:47:04', 'dJ9OElB4', '6130657'), + (42094, 469, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dJ9OElB4', '6136733'), + (42095, 469, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dJ9OElB4', '6137989'), + (42096, 469, 2104, 'attending', '2023-06-22 20:08:41', '2025-12-17 19:46:50', 'dJ9OElB4', '6149499'), + (42097, 469, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dJ9OElB4', '6150864'), + (42098, 469, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dJ9OElB4', '6155491'), + (42099, 469, 2116, 'attending', '2023-07-03 23:12:42', '2025-12-17 19:46:51', 'dJ9OElB4', '6163389'), + (42100, 469, 2118, 'attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dJ9OElB4', '6164417'), + (42101, 469, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dJ9OElB4', '6166388'), + (42102, 469, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dJ9OElB4', '6176439'), + (42103, 469, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dJ9OElB4', '6182410'), + (42104, 469, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dJ9OElB4', '6185812'), + (42105, 469, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dJ9OElB4', '6187651'), + (42106, 469, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dJ9OElB4', '6187963'), + (42107, 469, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dJ9OElB4', '6187964'), + (42108, 469, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dJ9OElB4', '6187966'), + (42109, 469, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dJ9OElB4', '6187967'), + (42110, 469, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dJ9OElB4', '6187969'), + (42111, 469, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dJ9OElB4', '6334878'), + (42112, 469, 2152, 'attending', '2023-07-14 21:51:09', '2025-12-17 19:46:52', 'dJ9OElB4', '6337021'), + (42113, 469, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dJ9OElB4', '6337236'), + (42114, 469, 2155, 'attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dJ9OElB4', '6337970'), + (42115, 469, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dJ9OElB4', '6338308'), + (42116, 469, 2159, 'attending', '2023-07-19 19:59:42', '2025-12-17 19:46:53', 'dJ9OElB4', '6338355'), + (42117, 469, 2160, 'attending', '2023-07-27 22:38:50', '2025-12-17 19:46:54', 'dJ9OElB4', '6338358'), + (42118, 469, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dJ9OElB4', '6340845'), + (42119, 469, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dJ9OElB4', '6341710'), + (42120, 469, 2165, 'attending', '2023-08-02 19:51:48', '2025-12-17 19:46:54', 'dJ9OElB4', '6342044'), + (42121, 469, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dJ9OElB4', '6342298'), + (42122, 469, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dJ9OElB4', '6343294'), + (42123, 469, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dJ9OElB4', '6347034'), + (42124, 469, 2177, 'attending', '2023-08-12 20:22:00', '2025-12-17 19:46:55', 'dJ9OElB4', '6347053'), + (42125, 469, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dJ9OElB4', '6347056'), + (42126, 469, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dJ9OElB4', '6353830'), + (42127, 469, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dJ9OElB4', '6353831'), + (42128, 469, 2189, 'maybe', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dJ9OElB4', '6357867'), + (42129, 469, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dJ9OElB4', '6358652'), + (42130, 469, 2195, 'attending', '2023-08-25 22:37:44', '2025-12-17 19:46:55', 'dJ9OElB4', '6359397'), + (42131, 469, 2196, 'attending', '2023-09-08 21:04:22', '2025-12-17 19:46:56', 'dJ9OElB4', '6359398'), + (42132, 469, 2199, 'attending', '2023-08-16 21:29:20', '2025-12-17 19:46:55', 'dJ9OElB4', '6359849'), + (42133, 469, 2200, 'attending', '2023-08-10 20:10:01', '2025-12-17 19:46:55', 'dJ9OElB4', '6359850'), + (42134, 469, 2202, 'attending', '2023-08-06 19:43:06', '2025-12-17 19:46:54', 'dJ9OElB4', '6360509'), + (42135, 469, 2204, 'attending', '2023-08-19 20:44:38', '2025-12-17 19:46:55', 'dJ9OElB4', '6361542'), + (42136, 469, 2208, 'attending', '2023-08-09 05:15:23', '2025-12-17 19:46:54', 'dJ9OElB4', '6361709'), + (42137, 469, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dJ9OElB4', '6361710'), + (42138, 469, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dJ9OElB4', '6361711'), + (42139, 469, 2211, 'attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dJ9OElB4', '6361712'), + (42140, 469, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dJ9OElB4', '6361713'), + (42141, 469, 2213, 'maybe', '2023-08-14 20:59:37', '2025-12-17 19:46:55', 'dJ9OElB4', '6362935'), + (42142, 469, 2217, 'maybe', '2023-08-14 21:00:12', '2025-12-17 19:46:55', 'dJ9OElB4', '6364333'), + (42143, 469, 2221, 'not_attending', '2023-08-16 21:29:52', '2025-12-17 19:46:55', 'dJ9OElB4', '6367357'), + (42144, 469, 2222, 'maybe', '2023-08-25 22:38:47', '2025-12-17 19:46:55', 'dJ9OElB4', '6367358'), + (42145, 469, 2232, 'maybe', '2023-08-26 22:09:05', '2025-12-17 19:46:55', 'dJ9OElB4', '6374818'), + (42146, 469, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dJ9OElB4', '6382573'), + (42147, 469, 2236, 'attending', '2023-08-31 21:58:11', '2025-12-17 19:46:55', 'dJ9OElB4', '6382618'), + (42148, 469, 2239, 'attending', '2023-09-02 20:48:48', '2025-12-17 19:46:56', 'dJ9OElB4', '6387592'), + (42149, 469, 2240, 'attending', '2023-09-09 19:26:57', '2025-12-17 19:46:56', 'dJ9OElB4', '6388603'), + (42150, 469, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dJ9OElB4', '6388604'), + (42151, 469, 2242, 'attending', '2023-09-23 19:08:21', '2025-12-17 19:46:45', 'dJ9OElB4', '6388606'), + (42152, 469, 2247, 'attending', '2023-09-06 16:32:25', '2025-12-17 19:46:56', 'dJ9OElB4', '6394628'), + (42153, 469, 2248, 'attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dJ9OElB4', '6394629'), + (42154, 469, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dJ9OElB4', '6394631'), + (42155, 469, 2253, 'attending', '2023-09-30 19:21:24', '2025-12-17 19:46:45', 'dJ9OElB4', '6401811'), + (42156, 469, 2258, 'maybe', '2023-09-23 19:08:55', '2025-12-17 19:46:45', 'dJ9OElB4', '6419492'), + (42157, 469, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dJ9OElB4', '6440863'), + (42158, 469, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dJ9OElB4', '6445440'), + (42159, 469, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dJ9OElB4', '6453951'), + (42160, 469, 2285, 'attending', '2023-10-25 22:36:21', '2025-12-17 19:46:47', 'dJ9OElB4', '6460929'), + (42161, 469, 2286, 'attending', '2023-12-02 00:23:00', '2025-12-17 19:46:48', 'dJ9OElB4', '6460930'), + (42162, 469, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dJ9OElB4', '6461696'), + (42163, 469, 2288, 'maybe', '2023-10-11 03:41:12', '2025-12-17 19:46:46', 'dJ9OElB4', '6462068'), + (42164, 469, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dJ9OElB4', '6462129'), + (42165, 469, 2290, 'attending', '2023-10-18 21:15:07', '2025-12-17 19:46:46', 'dJ9OElB4', '6462214'), + (42166, 469, 2291, 'attending', '2023-10-19 02:04:42', '2025-12-17 19:46:46', 'dJ9OElB4', '6462215'), + (42167, 469, 2293, 'attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dJ9OElB4', '6463218'), + (42168, 469, 2296, 'attending', '2023-10-25 22:36:04', '2025-12-17 19:46:47', 'dJ9OElB4', '6468393'), + (42169, 469, 2299, 'maybe', '2023-10-19 02:05:05', '2025-12-17 19:46:46', 'dJ9OElB4', '6472181'), + (42170, 469, 2303, 'attending', '2023-10-28 19:44:45', '2025-12-17 19:46:47', 'dJ9OElB4', '6482691'), + (42171, 469, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dJ9OElB4', '6482693'), + (42172, 469, 2306, 'attending', '2023-11-14 21:28:42', '2025-12-17 19:46:47', 'dJ9OElB4', '6484200'), + (42173, 469, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dJ9OElB4', '6484680'), + (42174, 469, 2310, 'attending', '2023-11-09 21:18:44', '2025-12-17 19:46:47', 'dJ9OElB4', '6487709'), + (42175, 469, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dJ9OElB4', '6507741'), + (42176, 469, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dJ9OElB4', '6514659'), + (42177, 469, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dJ9OElB4', '6514660'), + (42178, 469, 2324, 'attending', '2023-12-09 04:11:03', '2025-12-17 19:46:49', 'dJ9OElB4', '6514662'), + (42179, 469, 2325, 'attending', '2023-12-16 21:12:46', '2025-12-17 19:46:36', 'dJ9OElB4', '6514663'), + (42180, 469, 2328, 'maybe', '2023-11-03 18:50:11', '2025-12-17 19:46:47', 'dJ9OElB4', '6515504'), + (42181, 469, 2330, 'attending', '2023-11-11 00:40:54', '2025-12-17 19:46:47', 'dJ9OElB4', '6517941'), + (42182, 469, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dJ9OElB4', '6519103'), + (42183, 469, 2335, 'attending', '2023-11-09 21:19:01', '2025-12-17 19:46:47', 'dJ9OElB4', '6534890'), + (42184, 469, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dJ9OElB4', '6535681'), + (42185, 469, 2345, 'attending', '2023-11-29 20:22:15', '2025-12-17 19:46:48', 'dJ9OElB4', '6582414'), + (42186, 469, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dJ9OElB4', '6584747'), + (42187, 469, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dJ9OElB4', '6587097'), + (42188, 469, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dJ9OElB4', '6609022'), + (42189, 469, 2364, 'attending', '2023-12-09 00:10:03', '2025-12-17 19:46:49', 'dJ9OElB4', '6613011'), + (42190, 469, 2370, 'attending', '2023-12-13 21:36:20', '2025-12-17 19:46:36', 'dJ9OElB4', '6623765'), + (42191, 469, 2371, 'attending', '2023-12-15 02:11:51', '2025-12-17 19:46:36', 'dJ9OElB4', '6624495'), + (42192, 469, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dJ9OElB4', '6632757'), + (42193, 469, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dJ9OElB4', '6644187'), + (42194, 469, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dJ9OElB4', '6648951'), + (42195, 469, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dJ9OElB4', '6648952'), + (42196, 469, 2391, 'maybe', '2024-01-13 00:52:20', '2025-12-17 19:46:37', 'dJ9OElB4', '6654138'), + (42197, 469, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dJ9OElB4', '6655401'), + (42198, 469, 2399, 'attending', '2024-01-13 21:34:42', '2025-12-17 19:46:38', 'dJ9OElB4', '6657583'), + (42199, 469, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dJ9OElB4', '6661585'), + (42200, 469, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dJ9OElB4', '6661588'), + (42201, 469, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dJ9OElB4', '6661589'), + (42202, 469, 2406, 'attending', '2024-01-19 23:30:48', '2025-12-17 19:46:40', 'dJ9OElB4', '6692344'), + (42203, 469, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dJ9OElB4', '6699906'), + (42204, 469, 2408, 'attending', '2024-01-27 20:54:36', '2025-12-17 19:46:40', 'dJ9OElB4', '6699907'), + (42205, 469, 2409, 'attending', '2024-02-03 23:50:06', '2025-12-17 19:46:41', 'dJ9OElB4', '6699909'), + (42206, 469, 2410, 'attending', '2024-02-10 23:50:33', '2025-12-17 19:46:41', 'dJ9OElB4', '6699911'), + (42207, 469, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'dJ9OElB4', '6699913'), + (42208, 469, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dJ9OElB4', '6701109'), + (42209, 469, 2421, 'attending', '2024-01-26 23:29:38', '2025-12-17 19:46:40', 'dJ9OElB4', '6704598'), + (42210, 469, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dJ9OElB4', '6705219'), + (42211, 469, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dJ9OElB4', '6710153'), + (42212, 469, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dJ9OElB4', '6711552'), + (42213, 469, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dJ9OElB4', '6711553'), + (42214, 469, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dJ9OElB4', '6722688'), + (42215, 469, 2438, 'attending', '2024-02-08 00:47:45', '2025-12-17 19:46:41', 'dJ9OElB4', '6730201'), + (42216, 469, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dJ9OElB4', '6730620'), + (42217, 469, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dJ9OElB4', '6730642'), + (42218, 469, 2445, 'attending', '2024-02-16 23:47:22', '2025-12-17 19:46:41', 'dJ9OElB4', '6734368'), + (42219, 469, 2446, 'attending', '2024-03-01 19:14:44', '2025-12-17 19:46:43', 'dJ9OElB4', '6734369'), + (42220, 469, 2447, 'attending', '2024-03-15 21:43:13', '2025-12-17 19:46:32', 'dJ9OElB4', '6734370'), + (42221, 469, 2448, 'maybe', '2024-03-29 22:35:47', '2025-12-17 19:46:33', 'dJ9OElB4', '6734371'), + (42222, 469, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dJ9OElB4', '6740364'), + (42223, 469, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dJ9OElB4', '6743829'), + (42224, 469, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dJ9OElB4', '7030380'), + (42225, 469, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dJ9OElB4', '7033677'), + (42226, 469, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dJ9OElB4', '7035415'), + (42227, 469, 2476, 'attending', '2024-02-26 00:57:26', '2025-12-17 19:46:43', 'dJ9OElB4', '7035691'), + (42228, 469, 2480, 'maybe', '2024-02-24 23:42:39', '2025-12-17 19:46:43', 'dJ9OElB4', '7042160'), + (42229, 469, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dJ9OElB4', '7044715'), + (42230, 469, 2487, 'not_attending', '2024-03-22 22:25:33', '2025-12-17 19:46:33', 'dJ9OElB4', '7049279'), + (42231, 469, 2489, 'attending', '2024-02-28 23:17:22', '2025-12-17 19:46:43', 'dJ9OElB4', '7050161'), + (42232, 469, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dJ9OElB4', '7050318'), + (42233, 469, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dJ9OElB4', '7050319'), + (42234, 469, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dJ9OElB4', '7050322'), + (42235, 469, 2498, 'attending', '2024-03-20 20:24:41', '2025-12-17 19:46:33', 'dJ9OElB4', '7057662'), + (42236, 469, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dJ9OElB4', '7057804'), + (42237, 469, 2500, 'attending', '2024-03-07 00:16:09', '2025-12-17 19:46:43', 'dJ9OElB4', '7058603'), + (42238, 469, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dJ9OElB4', '7059866'), + (42239, 469, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dJ9OElB4', '7072824'), + (42240, 469, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dJ9OElB4', '7074348'), + (42241, 469, 2510, 'attending', '2024-03-21 21:37:36', '2025-12-17 19:46:33', 'dJ9OElB4', '7074350'), + (42242, 469, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJ9OElB4', '7074364'), + (42243, 469, 2534, 'attending', '2024-03-13 19:54:04', '2025-12-17 19:46:32', 'dJ9OElB4', '7076875'), + (42244, 469, 2539, 'attending', '2024-04-03 21:43:30', '2025-12-17 19:46:33', 'dJ9OElB4', '7085486'), + (42245, 469, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dJ9OElB4', '7089267'), + (42246, 469, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dJ9OElB4', '7098747'), + (42247, 469, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dJ9OElB4', '7113468'), + (42248, 469, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dJ9OElB4', '7114856'), + (42249, 469, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'dJ9OElB4', '7114951'), + (42250, 469, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dJ9OElB4', '7114955'), + (42251, 469, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dJ9OElB4', '7114956'), + (42252, 469, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dJ9OElB4', '7114957'), + (42253, 469, 2562, 'maybe', '2024-04-03 21:38:45', '2025-12-17 19:46:33', 'dJ9OElB4', '7134552'), + (42254, 469, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dJ9OElB4', '7153615'), + (42255, 469, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dJ9OElB4', '7159484'), + (42256, 469, 2575, 'attending', '2024-04-12 22:14:01', '2025-12-17 19:46:33', 'dJ9OElB4', '7164534'), + (42257, 469, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dJ9OElB4', '7178446'), + (42258, 469, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dJ9OElB4', '7220467'), + (42259, 469, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dJ9OElB4', '7240354'), + (42260, 469, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dJ9OElB4', '7251633'), + (42261, 469, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dJ9OElB4', '7263048'), + (42262, 469, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dJ9OElB4', '7302674'), + (42263, 469, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dJ9OElB4', '7324073'), + (42264, 469, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJ9OElB4', '7324074'), + (42265, 469, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJ9OElB4', '7324075'), + (42266, 469, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJ9OElB4', '7324078'), + (42267, 469, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dJ9OElB4', '7324082'), + (42268, 469, 2706, 'attending', '2024-06-18 00:01:10', '2025-12-17 19:46:28', 'dJ9OElB4', '7324947'), + (42269, 469, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dJ9OElB4', '7331457'), + (42270, 469, 2723, 'attending', '2024-06-19 17:35:42', '2025-12-17 19:46:29', 'dJ9OElB4', '7332389'), + (42271, 469, 2724, 'attending', '2024-06-26 22:13:03', '2025-12-17 19:46:29', 'dJ9OElB4', '7332562'), + (42272, 469, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJ9OElB4', '7356752'), + (42273, 469, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dJ9OElB4', '7363643'), + (42274, 469, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJ9OElB4', '7368606'), + (42275, 469, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJ9OElB4', '7397462'), + (42276, 469, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJ9OElB4', '7432751'), + (42277, 469, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJ9OElB4', '7432752'), + (42278, 469, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJ9OElB4', '7432753'), + (42279, 469, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJ9OElB4', '7432754'), + (42280, 469, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJ9OElB4', '7432755'), + (42281, 469, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJ9OElB4', '7432756'), + (42282, 469, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJ9OElB4', '7432758'), + (42283, 469, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJ9OElB4', '7432759'), + (42284, 469, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dJ9OElB4', '7433834'), + (42285, 469, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJ9OElB4', '7470197'), + (42286, 470, 2066, 'not_attending', '2023-06-09 18:33:39', '2025-12-17 19:47:04', 'Anal0wJm', '6101361'), + (42287, 470, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Anal0wJm', '6150864'), + (42288, 470, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Anal0wJm', '6155491'), + (42289, 470, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Anal0wJm', '6164417'), + (42290, 470, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Anal0wJm', '6166388'), + (42291, 470, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Anal0wJm', '6176439'), + (42292, 470, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'Anal0wJm', '6177485'), + (42293, 470, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'Anal0wJm', '6182410'), + (42294, 470, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Anal0wJm', '6185812'), + (42295, 470, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Anal0wJm', '6187651'), + (42296, 470, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Anal0wJm', '6187963'), + (42297, 470, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Anal0wJm', '6187964'), + (42298, 470, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Anal0wJm', '6187966'), + (42299, 470, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Anal0wJm', '6187967'), + (42300, 470, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Anal0wJm', '6187969'), + (42301, 470, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Anal0wJm', '6334878'), + (42302, 471, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'rdO7KaPd', '3149493'), + (42303, 471, 393, 'attending', '2021-06-18 13:59:05', '2025-12-17 19:47:38', 'rdO7KaPd', '3236448'), + (42304, 471, 823, 'maybe', '2021-06-19 01:17:55', '2025-12-17 19:47:48', 'rdO7KaPd', '3974109'), + (42305, 471, 844, 'not_attending', '2021-06-21 14:59:45', '2025-12-17 19:47:38', 'rdO7KaPd', '4014338'), + (42306, 471, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'rdO7KaPd', '4021848'), + (42307, 471, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'rdO7KaPd', '4136937'), + (42308, 471, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'rdO7KaPd', '4136938'), + (42309, 471, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'rdO7KaPd', '4136947'), + (42310, 471, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdO7KaPd', '4210314'), + (42311, 471, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'rdO7KaPd', '4225444'), + (42312, 471, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'rdO7KaPd', '4229417'), + (42313, 471, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'rdO7KaPd', '4229418'), + (42314, 471, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'rdO7KaPd', '4229420'), + (42315, 471, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'rdO7KaPd', '4229423'), + (42316, 471, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdO7KaPd', '4239259'), + (42317, 471, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'rdO7KaPd', '4240316'), + (42318, 471, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'rdO7KaPd', '4240317'), + (42319, 471, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdO7KaPd', '4240318'), + (42320, 471, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'rdO7KaPd', '4240320'), + (42321, 471, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdO7KaPd', '4250163'), + (42322, 471, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'rdO7KaPd', '4275957'), + (42323, 471, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdO7KaPd', '4277819'), + (42324, 471, 923, 'not_attending', '2021-07-20 02:30:40', '2025-12-17 19:47:40', 'rdO7KaPd', '4292773'), + (42325, 471, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdO7KaPd', '4301723'), + (42326, 471, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'rdO7KaPd', '4302093'), + (42327, 471, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdO7KaPd', '4304151'), + (42328, 471, 940, 'not_attending', '2021-07-30 16:29:34', '2025-12-17 19:47:40', 'rdO7KaPd', '4309049'), + (42329, 471, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'rdO7KaPd', '4315713'), + (42330, 471, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'rdO7KaPd', '4315714'), + (42331, 471, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'rdO7KaPd', '4315726'), + (42332, 471, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdO7KaPd', '4356801'), + (42333, 471, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'rdO7KaPd', '4366186'), + (42334, 471, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdO7KaPd', '4366187'), + (42335, 471, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'rdO7KaPd', '4420735'), + (42336, 471, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'rdO7KaPd', '4420738'), + (42337, 471, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'rdO7KaPd', '4420739'), + (42338, 471, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'rdO7KaPd', '4420741'), + (42339, 471, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'rdO7KaPd', '4420744'), + (42340, 471, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'rdO7KaPd', '4420747'), + (42341, 471, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'rdO7KaPd', '4420748'), + (42342, 471, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'rdO7KaPd', '4420749'), + (42343, 471, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdO7KaPd', '6045684'), + (42344, 472, 244, 'not_attending', '2020-10-19 18:13:55', '2025-12-17 19:47:52', '0mqqyG1m', '3149475'), + (42345, 472, 344, 'maybe', '2020-10-17 20:58:47', '2025-12-17 19:47:53', '0mqqyG1m', '3206906'), + (42346, 472, 370, 'not_attending', '2020-10-14 02:00:09', '2025-12-17 19:47:52', '0mqqyG1m', '3221405'), + (42347, 472, 371, 'not_attending', '2020-10-14 01:59:29', '2025-12-17 19:47:52', '0mqqyG1m', '3221406'), + (42348, 472, 372, 'not_attending', '2020-10-20 19:07:40', '2025-12-17 19:47:52', '0mqqyG1m', '3221407'), + (42349, 472, 373, 'not_attending', '2020-10-24 17:48:18', '2025-12-17 19:47:52', '0mqqyG1m', '3221413'), + (42350, 472, 376, 'not_attending', '2020-10-14 01:59:40', '2025-12-17 19:47:52', '0mqqyG1m', '3222827'), + (42351, 472, 382, 'not_attending', '2020-10-14 02:00:16', '2025-12-17 19:47:52', '0mqqyG1m', '3226873'), + (42352, 472, 387, 'attending', '2020-10-14 01:59:19', '2025-12-17 19:47:52', '0mqqyG1m', '3228700'), + (42353, 472, 388, 'attending', '2020-10-19 18:14:39', '2025-12-17 19:47:52', '0mqqyG1m', '3228701'), + (42354, 472, 391, 'not_attending', '2020-10-13 03:21:23', '2025-12-17 19:47:52', '0mqqyG1m', '3236446'), + (42355, 472, 414, 'not_attending', '2020-10-18 18:48:19', '2025-12-17 19:47:52', '0mqqyG1m', '3237277'), + (42356, 472, 415, 'not_attending', '2020-10-13 03:21:29', '2025-12-17 19:47:52', '0mqqyG1m', '3238044'), + (42357, 472, 417, 'not_attending', '2020-10-14 02:00:05', '2025-12-17 19:47:52', '0mqqyG1m', '3238779'), + (42358, 472, 418, 'attending', '2020-10-14 22:29:20', '2025-12-17 19:47:52', '0mqqyG1m', '3241728'), + (42359, 472, 419, 'not_attending', '2020-10-14 02:00:15', '2025-12-17 19:47:52', '0mqqyG1m', '3242234'), + (42360, 472, 420, 'attending', '2020-10-15 18:48:42', '2025-12-17 19:47:52', '0mqqyG1m', '3245293'), + (42361, 472, 421, 'attending', '2020-10-16 08:09:18', '2025-12-17 19:47:52', '0mqqyG1m', '3245294'), + (42362, 472, 422, 'maybe', '2020-10-28 21:06:03', '2025-12-17 19:47:53', '0mqqyG1m', '3245295'), + (42363, 472, 423, 'maybe', '2020-11-05 19:20:30', '2025-12-17 19:47:53', '0mqqyG1m', '3245296'), + (42364, 472, 424, 'attending', '2020-10-19 01:16:57', '2025-12-17 19:47:52', '0mqqyG1m', '3245751'), + (42365, 472, 426, 'not_attending', '2020-10-18 18:48:38', '2025-12-17 19:47:52', '0mqqyG1m', '3250232'), + (42366, 472, 428, 'attending', '2020-10-26 23:06:10', '2025-12-17 19:47:53', '0mqqyG1m', '3250332'), + (42367, 472, 430, 'attending', '2020-10-21 17:15:47', '2025-12-17 19:47:52', '0mqqyG1m', '3253094'), + (42368, 472, 431, 'maybe', '2020-10-27 22:33:29', '2025-12-17 19:47:53', '0mqqyG1m', '3253225'), + (42369, 472, 432, 'maybe', '2020-10-17 20:58:53', '2025-12-17 19:47:53', '0mqqyG1m', '3254416'), + (42370, 472, 433, 'maybe', '2020-10-17 20:58:57', '2025-12-17 19:47:53', '0mqqyG1m', '3254417'), + (42371, 472, 434, 'maybe', '2020-11-02 02:45:40', '2025-12-17 19:47:53', '0mqqyG1m', '3254418'), + (42372, 472, 435, 'attending', '2020-10-24 18:04:51', '2025-12-17 19:47:52', '0mqqyG1m', '3254790'), + (42373, 472, 437, 'not_attending', '2020-10-28 21:04:55', '2025-12-17 19:47:53', '0mqqyG1m', '3256160'), + (42374, 472, 438, 'not_attending', '2020-10-27 01:35:57', '2025-12-17 19:47:53', '0mqqyG1m', '3256163'), + (42375, 472, 439, 'not_attending', '2020-10-28 21:04:53', '2025-12-17 19:47:53', '0mqqyG1m', '3256164'), + (42376, 472, 440, 'maybe', '2020-11-07 23:55:04', '2025-12-17 19:47:53', '0mqqyG1m', '3256168'), + (42377, 472, 441, 'not_attending', '2020-11-15 00:46:49', '2025-12-17 19:47:54', '0mqqyG1m', '3256169'), + (42378, 472, 443, 'maybe', '2020-10-26 23:06:05', '2025-12-17 19:47:53', '0mqqyG1m', '3263578'), + (42379, 472, 444, 'not_attending', '2020-10-25 17:12:01', '2025-12-17 19:47:53', '0mqqyG1m', '3263745'), + (42380, 472, 445, 'maybe', '2020-11-02 02:45:50', '2025-12-17 19:47:54', '0mqqyG1m', '3266138'), + (42381, 472, 446, 'not_attending', '2020-10-27 22:33:20', '2025-12-17 19:47:53', '0mqqyG1m', '3267163'), + (42382, 472, 447, 'maybe', '2020-10-28 17:50:03', '2025-12-17 19:47:53', '0mqqyG1m', '3267895'), + (42383, 472, 449, 'maybe', '2020-11-02 02:45:34', '2025-12-17 19:47:53', '0mqqyG1m', '3272055'), + (42384, 472, 456, 'maybe', '2020-11-05 19:20:21', '2025-12-17 19:47:54', '0mqqyG1m', '3276428'), + (42385, 472, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '0mqqyG1m', '3281467'), + (42386, 472, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '0mqqyG1m', '3281470'), + (42387, 472, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '0mqqyG1m', '3281829'), + (42388, 472, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '0mqqyG1m', '3285413'), + (42389, 472, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '0mqqyG1m', '3285414'), + (42390, 472, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '0mqqyG1m', '3297764'), + (42391, 472, 483, 'maybe', '2020-11-21 00:02:58', '2025-12-17 19:47:54', '0mqqyG1m', '3297791'), + (42392, 472, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '0mqqyG1m', '3313856'), + (42393, 472, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '0mqqyG1m', '3314909'), + (42394, 472, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '0mqqyG1m', '3314964'), + (42395, 472, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '0mqqyG1m', '3323365'), + (42396, 472, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '0mqqyG1m', '3329383'), + (42397, 472, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '0mqqyG1m', '3351539'), + (42398, 472, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '0mqqyG1m', '3386848'), + (42399, 472, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '0mqqyG1m', '3389527'), + (42400, 472, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '0mqqyG1m', '3396499'), + (42401, 472, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '0mqqyG1m', '3403650'), + (42402, 472, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '0mqqyG1m', '3406988'), + (42403, 472, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '0mqqyG1m', '3416576'), + (42404, 472, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '0mqqyG1m', '3418925'), + (42405, 472, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqqyG1m', '6045684'), + (42406, 473, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6YMMDQd', '6045684'), + (42407, 474, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Agv90Kym', '6482693'), + (42408, 474, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Agv90Kym', '6484200'), + (42409, 474, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Agv90Kym', '6507741'), + (42410, 474, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Agv90Kym', '6514659'), + (42411, 474, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Agv90Kym', '6514660'), + (42412, 474, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Agv90Kym', '6519103'), + (42413, 474, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Agv90Kym', '6535681'), + (42414, 474, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Agv90Kym', '6584747'), + (42415, 474, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Agv90Kym', '6587097'), + (42416, 474, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Agv90Kym', '6609022'), + (42417, 474, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Agv90Kym', '6632757'), + (42418, 474, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Agv90Kym', '6644187'), + (42419, 474, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Agv90Kym', '6648951'), + (42420, 474, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Agv90Kym', '6648952'), + (42421, 474, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'Agv90Kym', '6651141'), + (42422, 474, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Agv90Kym', '6655401'), + (42423, 474, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Agv90Kym', '6661585'), + (42424, 474, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Agv90Kym', '6661588'), + (42425, 474, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Agv90Kym', '6661589'), + (42426, 474, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Agv90Kym', '6699906'), + (42427, 474, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Agv90Kym', '6699913'), + (42428, 474, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Agv90Kym', '6701109'), + (42429, 474, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Agv90Kym', '6705219'), + (42430, 474, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Agv90Kym', '6710153'), + (42431, 474, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Agv90Kym', '6711552'), + (42432, 474, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'Agv90Kym', '6711553'), + (42433, 474, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Agv90Kym', '6722688'), + (42434, 474, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Agv90Kym', '6730620'), + (42435, 474, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'Agv90Kym', '6730642'), + (42436, 474, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Agv90Kym', '6740364'), + (42437, 474, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Agv90Kym', '6743829'), + (42438, 474, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Agv90Kym', '7030380'), + (42439, 474, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Agv90Kym', '7033677'), + (42440, 474, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'Agv90Kym', '7035415'), + (42441, 474, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Agv90Kym', '7044715'), + (42442, 474, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Agv90Kym', '7050318'), + (42443, 474, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Agv90Kym', '7050319'), + (42444, 474, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Agv90Kym', '7050322'), + (42445, 474, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Agv90Kym', '7057804'), + (42446, 474, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Agv90Kym', '7072824'), + (42447, 474, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Agv90Kym', '7074348'), + (42448, 474, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'Agv90Kym', '7089267'), + (42449, 474, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Agv90Kym', '7098747'), + (42450, 474, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Agv90Kym', '7113468'), + (42451, 474, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Agv90Kym', '7114856'), + (42452, 474, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Agv90Kym', '7114951'), + (42453, 474, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Agv90Kym', '7114955'), + (42454, 474, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Agv90Kym', '7114956'), + (42455, 474, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'Agv90Kym', '7153615'), + (42456, 474, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Agv90Kym', '7159484'), + (42457, 474, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Agv90Kym', '7178446'), + (42458, 475, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgkMV1jA', '6045684'), + (42459, 476, 7, 'attending', '2020-03-23 23:47:28', '2025-12-17 19:47:58', 'kdKXWGNm', '2958049'), + (42460, 476, 8, 'attending', '2020-03-23 23:47:21', '2025-12-17 19:47:58', 'kdKXWGNm', '2958050'), + (42461, 476, 10, 'attending', '2020-03-23 23:47:44', '2025-12-17 19:47:56', 'kdKXWGNm', '2958053'), + (42462, 476, 13, 'attending', '2020-04-08 23:29:54', '2025-12-17 19:47:57', 'kdKXWGNm', '2958057'), + (42463, 476, 29, 'maybe', '2020-03-23 23:47:09', '2025-12-17 19:47:56', 'kdKXWGNm', '2961309'), + (42464, 476, 30, 'maybe', '2020-03-23 23:46:27', '2025-12-17 19:47:57', 'kdKXWGNm', '2961895'), + (42465, 476, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'kdKXWGNm', '2969208'), + (42466, 476, 37, 'maybe', '2020-03-31 00:24:17', '2025-12-17 19:47:56', 'kdKXWGNm', '2969680'), + (42467, 476, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'kdKXWGNm', '2971546'), + (42468, 476, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'kdKXWGNm', '2974534'), + (42469, 476, 46, 'maybe', '2020-04-11 11:40:49', '2025-12-17 19:47:57', 'kdKXWGNm', '2974955'), + (42470, 476, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'kdKXWGNm', '2975384'), + (42471, 476, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'kdKXWGNm', '2975385'), + (42472, 476, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'kdKXWGNm', '2976575'), + (42473, 476, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'kdKXWGNm', '2977343'), + (42474, 476, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'kdKXWGNm', '2977812'), + (42475, 476, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'kdKXWGNm', '2977931'), + (42476, 476, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', 'kdKXWGNm', '2978244'), + (42477, 476, 75, 'attending', '2020-04-25 11:49:13', '2025-12-17 19:47:57', 'kdKXWGNm', '2978245'), + (42478, 476, 76, 'attending', '2020-05-01 18:04:50', '2025-12-17 19:47:57', 'kdKXWGNm', '2978246'), + (42479, 476, 77, 'attending', '2020-05-05 22:50:39', '2025-12-17 19:47:57', 'kdKXWGNm', '2978247'), + (42480, 476, 78, 'attending', '2020-05-20 07:54:33', '2025-12-17 19:47:57', 'kdKXWGNm', '2978249'), + (42481, 476, 79, 'attending', '2020-05-28 22:24:47', '2025-12-17 19:47:57', 'kdKXWGNm', '2978250'), + (42482, 476, 81, 'attending', '2020-06-13 00:42:12', '2025-12-17 19:47:58', 'kdKXWGNm', '2978252'), + (42483, 476, 82, 'attending', '2020-04-24 03:53:31', '2025-12-17 19:47:57', 'kdKXWGNm', '2978433'), + (42484, 476, 83, 'attending', '2020-05-08 01:01:45', '2025-12-17 19:47:57', 'kdKXWGNm', '2978438'), + (42485, 476, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'kdKXWGNm', '2980871'), + (42486, 476, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'kdKXWGNm', '2981388'), + (42487, 476, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'kdKXWGNm', '2986743'), + (42488, 476, 101, 'attending', '2020-04-21 21:44:55', '2025-12-17 19:47:57', 'kdKXWGNm', '2989975'), + (42489, 476, 103, 'attending', '2020-05-04 23:11:02', '2025-12-17 19:47:57', 'kdKXWGNm', '2991407'), + (42490, 476, 104, 'attending', '2020-04-25 17:08:40', '2025-12-17 19:47:57', 'kdKXWGNm', '2991471'), + (42491, 476, 106, 'attending', '2020-04-28 13:10:21', '2025-12-17 19:47:57', 'kdKXWGNm', '2993501'), + (42492, 476, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'kdKXWGNm', '2994480'), + (42493, 476, 114, 'attending', '2020-04-28 16:30:08', '2025-12-17 19:47:57', 'kdKXWGNm', '2994911'), + (42494, 476, 115, 'attending', '2020-05-14 05:53:39', '2025-12-17 19:47:57', 'kdKXWGNm', '3001217'), + (42495, 476, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'kdKXWGNm', '3023063'), + (42496, 476, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'kdKXWGNm', '3034321'), + (42497, 476, 134, 'attending', '2020-05-25 01:05:21', '2025-12-17 19:47:57', 'kdKXWGNm', '3034367'), + (42498, 476, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'kdKXWGNm', '3035881'), + (42499, 476, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'kdKXWGNm', '3049983'), + (42500, 476, 147, 'attending', '2020-08-20 22:21:57', '2025-12-17 19:47:56', 'kdKXWGNm', '3058684'), + (42501, 476, 169, 'attending', '2020-06-15 18:41:00', '2025-12-17 19:47:58', 'kdKXWGNm', '3058741'), + (42502, 476, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'kdKXWGNm', '3058959'), + (42503, 476, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'kdKXWGNm', '3067093'), + (42504, 476, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'kdKXWGNm', '3075228'), + (42505, 476, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'kdKXWGNm', '3075456'), + (42506, 476, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'kdKXWGNm', '3083791'), + (42507, 476, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'kdKXWGNm', '3085151'), + (42508, 476, 191, 'attending', '2020-07-08 00:23:25', '2025-12-17 19:47:55', 'kdKXWGNm', '3087259'), + (42509, 476, 192, 'maybe', '2020-07-16 02:01:50', '2025-12-17 19:47:55', 'kdKXWGNm', '3087260'), + (42510, 476, 193, 'attending', '2020-07-24 14:16:33', '2025-12-17 19:47:55', 'kdKXWGNm', '3087261'), + (42511, 476, 194, 'attending', '2020-08-01 21:02:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3087262'), + (42512, 476, 195, 'attending', '2020-08-08 15:41:06', '2025-12-17 19:47:56', 'kdKXWGNm', '3087264'), + (42513, 476, 196, 'not_attending', '2020-08-15 18:52:39', '2025-12-17 19:47:56', 'kdKXWGNm', '3087265'), + (42514, 476, 197, 'attending', '2020-08-20 22:21:53', '2025-12-17 19:47:56', 'kdKXWGNm', '3087266'), + (42515, 476, 198, 'attending', '2020-08-29 16:41:09', '2025-12-17 19:47:56', 'kdKXWGNm', '3087267'), + (42516, 476, 199, 'attending', '2020-09-04 16:38:16', '2025-12-17 19:47:56', 'kdKXWGNm', '3087268'), + (42517, 476, 200, 'attending', '2020-09-06 16:58:54', '2025-12-17 19:47:56', 'kdKXWGNm', '3087269'), + (42518, 476, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'kdKXWGNm', '3088653'), + (42519, 476, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'kdKXWGNm', '3106813'), + (42520, 476, 223, 'attending', '2020-09-10 11:44:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3129980'), + (42521, 476, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'kdKXWGNm', '3132817'), + (42522, 476, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'kdKXWGNm', '3132820'), + (42523, 476, 231, 'attending', '2020-07-19 19:49:01', '2025-12-17 19:47:55', 'kdKXWGNm', '3139762'), + (42524, 476, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'kdKXWGNm', '3155321'), + (42525, 476, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'kdKXWGNm', '3162006'), + (42526, 476, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'kdKXWGNm', '3163442'), + (42527, 476, 281, 'attending', '2020-08-09 19:32:28', '2025-12-17 19:47:56', 'kdKXWGNm', '3166945'), + (42528, 476, 293, 'attending', '2020-08-19 23:59:23', '2025-12-17 19:47:56', 'kdKXWGNm', '3172832'), + (42529, 476, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3172833'), + (42530, 476, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'kdKXWGNm', '3172834'), + (42531, 476, 296, 'not_attending', '2020-09-11 01:23:45', '2025-12-17 19:47:56', 'kdKXWGNm', '3172876'), + (42532, 476, 301, 'not_attending', '2020-08-26 00:07:31', '2025-12-17 19:47:56', 'kdKXWGNm', '3178027'), + (42533, 476, 304, 'attending', '2020-09-07 14:25:42', '2025-12-17 19:47:56', 'kdKXWGNm', '3178916'), + (42534, 476, 307, 'attending', '2020-08-17 15:09:21', '2025-12-17 19:47:56', 'kdKXWGNm', '3182590'), + (42535, 476, 308, 'attending', '2020-09-04 01:10:00', '2025-12-17 19:47:56', 'kdKXWGNm', '3183341'), + (42536, 476, 311, 'attending', '2020-09-19 21:21:03', '2025-12-17 19:47:56', 'kdKXWGNm', '3186057'), + (42537, 476, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'kdKXWGNm', '3191735'), + (42538, 476, 318, 'attending', '2020-09-01 21:07:08', '2025-12-17 19:47:56', 'kdKXWGNm', '3193885'), + (42539, 476, 319, 'attending', '2020-08-31 23:35:28', '2025-12-17 19:47:56', 'kdKXWGNm', '3194179'), + (42540, 476, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'kdKXWGNm', '3200209'), + (42541, 476, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', 'kdKXWGNm', '3200495'), + (42542, 476, 343, 'attending', '2020-09-22 22:54:04', '2025-12-17 19:47:56', 'kdKXWGNm', '3206759'), + (42543, 476, 360, 'attending', '2020-09-17 00:16:11', '2025-12-17 19:47:56', 'kdKXWGNm', '3212671'), + (42544, 476, 361, 'not_attending', '2020-09-14 18:42:39', '2025-12-17 19:47:56', 'kdKXWGNm', '3213323'), + (42545, 476, 362, 'not_attending', '2020-09-25 15:07:44', '2025-12-17 19:47:52', 'kdKXWGNm', '3214207'), + (42546, 476, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'kdKXWGNm', '3217037'), + (42547, 476, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'kdKXWGNm', '3218510'), + (42548, 476, 368, 'not_attending', '2020-10-01 23:56:52', '2025-12-17 19:47:52', 'kdKXWGNm', '3221403'), + (42549, 476, 385, 'attending', '2020-10-01 19:21:10', '2025-12-17 19:47:52', 'kdKXWGNm', '3228698'), + (42550, 476, 386, 'attending', '2020-10-10 14:30:07', '2025-12-17 19:47:52', 'kdKXWGNm', '3228699'), + (42551, 476, 387, 'attending', '2020-10-17 14:24:30', '2025-12-17 19:47:52', 'kdKXWGNm', '3228700'), + (42552, 476, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'kdKXWGNm', '3228701'), + (42553, 476, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'kdKXWGNm', '3245751'), + (42554, 476, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'kdKXWGNm', '3250232'), + (42555, 476, 429, 'attending', '2020-12-06 20:29:50', '2025-12-17 19:47:54', 'kdKXWGNm', '3250523'), + (42556, 476, 440, 'attending', '2020-11-07 15:17:19', '2025-12-17 19:47:53', 'kdKXWGNm', '3256168'), + (42557, 476, 441, 'attending', '2020-11-14 23:03:32', '2025-12-17 19:47:54', 'kdKXWGNm', '3256169'), + (42558, 476, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'kdKXWGNm', '3263578'), + (42559, 476, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'kdKXWGNm', '3276428'), + (42560, 476, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'kdKXWGNm', '3281467'), + (42561, 476, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'kdKXWGNm', '3281470'), + (42562, 476, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'kdKXWGNm', '3281829'), + (42563, 476, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'kdKXWGNm', '3285413'), + (42564, 476, 469, 'attending', '2020-11-28 02:20:50', '2025-12-17 19:47:54', 'kdKXWGNm', '3285414'), + (42565, 476, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'kdKXWGNm', '3297764'), + (42566, 476, 492, 'attending', '2020-12-01 01:33:37', '2025-12-17 19:47:54', 'kdKXWGNm', '3313731'), + (42567, 476, 493, 'attending', '2020-12-05 03:47:55', '2025-12-17 19:47:54', 'kdKXWGNm', '3313856'), + (42568, 476, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'kdKXWGNm', '3314909'), + (42569, 476, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'kdKXWGNm', '3314964'), + (42570, 476, 502, 'attending', '2020-12-13 00:52:57', '2025-12-17 19:47:55', 'kdKXWGNm', '3323365'), + (42571, 476, 513, 'attending', '2020-12-20 00:27:02', '2025-12-17 19:47:55', 'kdKXWGNm', '3329383'), + (42572, 476, 526, 'attending', '2020-12-30 03:17:10', '2025-12-17 19:47:48', 'kdKXWGNm', '3351539'), + (42573, 476, 528, 'attending', '2021-01-02 00:51:45', '2025-12-17 19:47:48', 'kdKXWGNm', '3363022'), + (42574, 476, 530, 'attending', '2021-01-04 16:20:17', '2025-12-17 19:47:48', 'kdKXWGNm', '3373923'), + (42575, 476, 532, 'attending', '2021-01-04 16:14:41', '2025-12-17 19:47:48', 'kdKXWGNm', '3381412'), + (42576, 476, 536, 'attending', '2021-01-06 17:04:57', '2025-12-17 19:47:48', 'kdKXWGNm', '3386848'), + (42577, 476, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdKXWGNm', '3389527'), + (42578, 476, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdKXWGNm', '3396499'), + (42579, 476, 548, 'attending', '2021-01-16 00:36:59', '2025-12-17 19:47:48', 'kdKXWGNm', '3403650'), + (42580, 476, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdKXWGNm', '3406988'), + (42581, 476, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'kdKXWGNm', '3408338'), + (42582, 476, 555, 'attending', '2021-01-19 05:47:53', '2025-12-17 19:47:49', 'kdKXWGNm', '3416576'), + (42583, 476, 568, 'attending', '2021-01-30 02:11:13', '2025-12-17 19:47:50', 'kdKXWGNm', '3430267'), + (42584, 476, 579, 'attending', '2021-02-06 18:08:52', '2025-12-17 19:47:50', 'kdKXWGNm', '3440978'), + (42585, 476, 602, 'attending', '2021-02-13 17:20:07', '2025-12-17 19:47:50', 'kdKXWGNm', '3470303'), + (42586, 476, 603, 'attending', '2021-02-20 04:21:08', '2025-12-17 19:47:50', 'kdKXWGNm', '3470304'), + (42587, 476, 604, 'attending', '2021-02-27 02:00:28', '2025-12-17 19:47:50', 'kdKXWGNm', '3470305'), + (42588, 476, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdKXWGNm', '3470991'), + (42589, 476, 621, 'attending', '2021-03-05 01:05:46', '2025-12-17 19:47:51', 'kdKXWGNm', '3517815'), + (42590, 476, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdKXWGNm', '3517816'), + (42591, 476, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKXWGNm', '3523941'), + (42592, 476, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKXWGNm', '3533850'), + (42593, 476, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKXWGNm', '3536632'), + (42594, 476, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKXWGNm', '3536656'), + (42595, 476, 641, 'not_attending', '2021-04-02 03:10:41', '2025-12-17 19:47:44', 'kdKXWGNm', '3539916'), + (42596, 476, 642, 'not_attending', '2021-04-09 19:05:18', '2025-12-17 19:47:44', 'kdKXWGNm', '3539917'), + (42597, 476, 643, 'attending', '2021-04-17 19:40:11', '2025-12-17 19:47:45', 'kdKXWGNm', '3539918'), + (42598, 476, 644, 'not_attending', '2021-04-24 21:36:07', '2025-12-17 19:47:46', 'kdKXWGNm', '3539919'), + (42599, 476, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKXWGNm', '3539920'), + (42600, 476, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKXWGNm', '3539921'), + (42601, 476, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKXWGNm', '3539922'), + (42602, 476, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKXWGNm', '3539923'), + (42603, 476, 649, 'not_attending', '2021-03-20 15:14:30', '2025-12-17 19:47:51', 'kdKXWGNm', '3539927'), + (42604, 476, 650, 'not_attending', '2021-03-27 17:13:50', '2025-12-17 19:47:44', 'kdKXWGNm', '3539928'), + (42605, 476, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKXWGNm', '3582734'), + (42606, 476, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKXWGNm', '3583262'), + (42607, 476, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKXWGNm', '3619523'), + (42608, 476, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKXWGNm', '3661369'), + (42609, 476, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKXWGNm', '3674262'), + (42610, 476, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKXWGNm', '3677402'), + (42611, 476, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdKXWGNm', '3730212'), + (42612, 476, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdKXWGNm', '3793156'), + (42613, 476, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'kdKXWGNm', '3974109'), + (42614, 476, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdKXWGNm', '3975311'), + (42615, 476, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKXWGNm', '3975312'), + (42616, 476, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKXWGNm', '3994992'), + (42617, 476, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKXWGNm', '4014338'), + (42618, 476, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdKXWGNm', '4021848'), + (42619, 476, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKXWGNm', '4136744'), + (42620, 476, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdKXWGNm', '4136937'), + (42621, 476, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdKXWGNm', '4136938'), + (42622, 476, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdKXWGNm', '4136947'), + (42623, 476, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdKXWGNm', '4210314'), + (42624, 476, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdKXWGNm', '4225444'), + (42625, 476, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdKXWGNm', '4239259'), + (42626, 476, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdKXWGNm', '4240316'), + (42627, 476, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdKXWGNm', '4240317'), + (42628, 476, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdKXWGNm', '4240318'), + (42629, 476, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdKXWGNm', '4240320'), + (42630, 476, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdKXWGNm', '4250163'), + (42631, 476, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdKXWGNm', '4275957'), + (42632, 476, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdKXWGNm', '4277819'), + (42633, 476, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdKXWGNm', '4301723'), + (42634, 476, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdKXWGNm', '4302093'), + (42635, 476, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdKXWGNm', '4304151'), + (42636, 476, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdKXWGNm', '4356801'), + (42637, 476, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdKXWGNm', '4366186'), + (42638, 476, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdKXWGNm', '4366187'), + (42639, 476, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdKXWGNm', '4420735'), + (42640, 476, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdKXWGNm', '4420738'), + (42641, 476, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdKXWGNm', '4420739'), + (42642, 476, 993, 'attending', '2021-09-25 21:15:53', '2025-12-17 19:47:34', 'kdKXWGNm', '4420741'), + (42643, 476, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdKXWGNm', '4420744'), + (42644, 476, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdKXWGNm', '4420747'), + (42645, 476, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdKXWGNm', '4420748'), + (42646, 476, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdKXWGNm', '4420749'), + (42647, 476, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKXWGNm', '4461883'), + (42648, 476, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKXWGNm', '4508342'), + (42649, 476, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKXWGNm', '4568602'), + (42650, 476, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKXWGNm', '4572153'), + (42651, 476, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdKXWGNm', '4585962'), + (42652, 476, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdKXWGNm', '4596356'), + (42653, 476, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKXWGNm', '4598860'), + (42654, 476, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKXWGNm', '4598861'), + (42655, 476, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKXWGNm', '4602797'), + (42656, 476, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKXWGNm', '4637896'), + (42657, 476, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKXWGNm', '4642994'), + (42658, 476, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdKXWGNm', '4642995'), + (42659, 476, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKXWGNm', '4642996'), + (42660, 476, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKXWGNm', '4642997'), + (42661, 476, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKXWGNm', '4645687'), + (42662, 476, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKXWGNm', '4645698'), + (42663, 476, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdKXWGNm', '4645704'), + (42664, 476, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKXWGNm', '4645705'), + (42665, 476, 1130, 'attending', '2021-12-04 23:58:07', '2025-12-17 19:47:37', 'kdKXWGNm', '4658824'), + (42666, 476, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKXWGNm', '4668385'), + (42667, 476, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKXWGNm', '4694407'), + (42668, 476, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKXWGNm', '4736497'), + (42669, 476, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKXWGNm', '4736499'), + (42670, 476, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKXWGNm', '4736500'), + (42671, 476, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKXWGNm', '4736503'), + (42672, 476, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKXWGNm', '4736504'), + (42673, 476, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKXWGNm', '4746789'), + (42674, 476, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdKXWGNm', '4753929'), + (42675, 476, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKXWGNm', '5038850'), + (42676, 476, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKXWGNm', '5045826'), + (42677, 476, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKXWGNm', '5132533'), + (42678, 476, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKXWGNm', '6045684'), + (42679, 477, 500, 'not_attending', '2020-12-17 22:13:39', '2025-12-17 19:47:55', 'rdOPZ8em', '3314964'), + (42680, 477, 507, 'attending', '2020-12-22 19:23:41', '2025-12-17 19:47:48', 'rdOPZ8em', '3324148'), + (42681, 477, 522, 'attending', '2020-12-16 23:28:10', '2025-12-17 19:47:55', 'rdOPZ8em', '3342836'), + (42682, 477, 526, 'attending', '2020-12-28 20:02:51', '2025-12-17 19:47:48', 'rdOPZ8em', '3351539'), + (42683, 477, 532, 'not_attending', '2021-01-09 00:04:44', '2025-12-17 19:47:48', 'rdOPZ8em', '3381412'), + (42684, 477, 534, 'attending', '2021-01-06 01:37:48', '2025-12-17 19:47:48', 'rdOPZ8em', '3384157'), + (42685, 477, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'rdOPZ8em', '3386848'), + (42686, 477, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'rdOPZ8em', '3389527'), + (42687, 477, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'rdOPZ8em', '3396499'), + (42688, 477, 548, 'maybe', '2021-01-16 23:54:04', '2025-12-17 19:47:48', 'rdOPZ8em', '3403650'), + (42689, 477, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'rdOPZ8em', '3406988'), + (42690, 477, 555, 'attending', '2021-01-22 00:04:06', '2025-12-17 19:47:49', 'rdOPZ8em', '3416576'), + (42691, 477, 558, 'attending', '2021-01-22 00:03:51', '2025-12-17 19:47:49', 'rdOPZ8em', '3418925'), + (42692, 477, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'rdOPZ8em', '3426074'), + (42693, 477, 568, 'attending', '2021-01-30 14:46:21', '2025-12-17 19:47:50', 'rdOPZ8em', '3430267'), + (42694, 477, 581, 'attending', '2021-02-01 03:32:46', '2025-12-17 19:47:50', 'rdOPZ8em', '3445029'), + (42695, 477, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'rdOPZ8em', '3468125'), + (42696, 477, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'rdOPZ8em', '3470303'), + (42697, 477, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'rdOPZ8em', '3470305'), + (42698, 477, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'rdOPZ8em', '3470991'), + (42699, 477, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'rdOPZ8em', '3517815'), + (42700, 477, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'rdOPZ8em', '3517816'), + (42701, 477, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'rdOPZ8em', '3523941'), + (42702, 477, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOPZ8em', '3533850'), + (42703, 477, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOPZ8em', '3536632'), + (42704, 477, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'rdOPZ8em', '3536656'), + (42705, 477, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'rdOPZ8em', '3539916'), + (42706, 477, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'rdOPZ8em', '3539917'), + (42707, 477, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOPZ8em', '3539918'), + (42708, 477, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'rdOPZ8em', '3539919'), + (42709, 477, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'rdOPZ8em', '3539920'), + (42710, 477, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'rdOPZ8em', '3539921'), + (42711, 477, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'rdOPZ8em', '3539922'), + (42712, 477, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'rdOPZ8em', '3539923'), + (42713, 477, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOPZ8em', '3539927'), + (42714, 477, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOPZ8em', '3582734'), + (42715, 477, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'rdOPZ8em', '3583262'), + (42716, 477, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOPZ8em', '3619523'), + (42717, 477, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'rdOPZ8em', '3661369'), + (42718, 477, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'rdOPZ8em', '3674262'), + (42719, 477, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'rdOPZ8em', '3677402'), + (42720, 477, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOPZ8em', '3730212'), + (42721, 477, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOPZ8em', '6045684'), + (42722, 478, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dlj52DXA', '7074364'), + (42723, 478, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dlj52DXA', '7324073'), + (42724, 478, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dlj52DXA', '7324074'), + (42725, 478, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dlj52DXA', '7324075'), + (42726, 478, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dlj52DXA', '7324078'), + (42727, 478, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dlj52DXA', '7331457'), + (42728, 478, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'dlj52DXA', '7344575'), + (42729, 478, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'dlj52DXA', '7359624'), + (42730, 478, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dlj52DXA', '7363643'), + (42731, 478, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dlj52DXA', '7368606'), + (42732, 479, 408, 'attending', '2021-02-16 03:38:35', '2025-12-17 19:47:50', 'Pm7kELXm', '3236466'), + (42733, 479, 603, 'not_attending', '2021-02-21 00:42:59', '2025-12-17 19:47:50', 'Pm7kELXm', '3470304'), + (42734, 479, 604, 'attending', '2021-02-27 18:23:23', '2025-12-17 19:47:50', 'Pm7kELXm', '3470305'), + (42735, 479, 621, 'attending', '2021-03-05 19:50:44', '2025-12-17 19:47:51', 'Pm7kELXm', '3517815'), + (42736, 479, 622, 'not_attending', '2021-03-13 23:38:53', '2025-12-17 19:47:51', 'Pm7kELXm', '3517816'), + (42737, 479, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'Pm7kELXm', '3523941'), + (42738, 479, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Pm7kELXm', '3533850'), + (42739, 479, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Pm7kELXm', '3536632'), + (42740, 479, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Pm7kELXm', '3536656'), + (42741, 479, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Pm7kELXm', '3539916'), + (42742, 479, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Pm7kELXm', '3539917'), + (42743, 479, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Pm7kELXm', '3539918'), + (42744, 479, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'Pm7kELXm', '3539919'), + (42745, 479, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Pm7kELXm', '3539920'), + (42746, 479, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Pm7kELXm', '3539921'), + (42747, 479, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Pm7kELXm', '3539922'), + (42748, 479, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Pm7kELXm', '3539923'), + (42749, 479, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Pm7kELXm', '3539927'), + (42750, 479, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Pm7kELXm', '3582734'), + (42751, 479, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm7kELXm', '3583262'), + (42752, 479, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Pm7kELXm', '3619523'), + (42753, 479, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7kELXm', '3661369'), + (42754, 479, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7kELXm', '3674262'), + (42755, 479, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm7kELXm', '3677402'), + (42756, 479, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7kELXm', '6045684'), + (42757, 480, 1122, 'not_attending', '2021-11-29 16:57:08', '2025-12-17 19:47:37', 'mRB3oJYm', '4644023'), + (42758, 480, 1123, 'not_attending', '2021-12-10 23:19:35', '2025-12-17 19:47:38', 'mRB3oJYm', '4644024'), + (42759, 480, 1126, 'not_attending', '2021-12-11 07:50:21', '2025-12-17 19:47:38', 'mRB3oJYm', '4645687'), + (42760, 480, 1127, 'maybe', '2021-12-12 10:04:38', '2025-12-17 19:47:38', 'mRB3oJYm', '4645698'), + (42761, 480, 1130, 'attending', '2021-12-04 20:37:18', '2025-12-17 19:47:37', 'mRB3oJYm', '4658824'), + (42762, 480, 1131, 'attending', '2021-12-18 18:20:09', '2025-12-17 19:47:31', 'mRB3oJYm', '4658825'), + (42763, 480, 1138, 'attending', '2021-11-29 16:57:03', '2025-12-17 19:47:37', 'mRB3oJYm', '4675407'), + (42764, 480, 1139, 'not_attending', '2021-12-04 03:59:17', '2025-12-17 19:47:37', 'mRB3oJYm', '4675604'), + (42765, 480, 1140, 'not_attending', '2021-12-04 02:15:41', '2025-12-17 19:47:37', 'mRB3oJYm', '4679701'), + (42766, 480, 1142, 'attending', '2021-12-05 17:35:03', '2025-12-17 19:47:37', 'mRB3oJYm', '4681923'), + (42767, 480, 1146, 'not_attending', '2021-12-10 23:19:31', '2025-12-17 19:47:38', 'mRB3oJYm', '4692841'), + (42768, 480, 1149, 'not_attending', '2021-12-10 23:19:46', '2025-12-17 19:47:38', 'mRB3oJYm', '4694407'), + (42769, 480, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'mRB3oJYm', '4706262'), + (42770, 480, 1153, 'not_attending', '2022-01-20 00:59:15', '2025-12-17 19:47:32', 'mRB3oJYm', '4708707'), + (42771, 480, 1162, 'attending', '2021-12-29 17:41:24', '2025-12-17 19:47:31', 'mRB3oJYm', '4718771'), + (42772, 480, 1173, 'attending', '2022-01-06 22:21:12', '2025-12-17 19:47:31', 'mRB3oJYm', '4736495'), + (42773, 480, 1174, 'attending', '2022-01-14 05:30:37', '2025-12-17 19:47:31', 'mRB3oJYm', '4736496'), + (42774, 480, 1175, 'not_attending', '2022-01-21 17:29:53', '2025-12-17 19:47:32', 'mRB3oJYm', '4736497'), + (42775, 480, 1176, 'attending', '2022-02-05 14:45:05', '2025-12-17 19:47:32', 'mRB3oJYm', '4736498'), + (42776, 480, 1177, 'not_attending', '2022-02-13 00:08:49', '2025-12-17 19:47:32', 'mRB3oJYm', '4736499'), + (42777, 480, 1178, 'not_attending', '2022-01-30 01:15:40', '2025-12-17 19:47:32', 'mRB3oJYm', '4736500'), + (42778, 480, 1179, 'attending', '2022-02-14 23:51:18', '2025-12-17 19:47:32', 'mRB3oJYm', '4736501'), + (42779, 480, 1180, 'not_attending', '2022-02-26 23:17:44', '2025-12-17 19:47:33', 'mRB3oJYm', '4736502'), + (42780, 480, 1181, 'not_attending', '2022-03-06 00:24:08', '2025-12-17 19:47:33', 'mRB3oJYm', '4736503'), + (42781, 480, 1182, 'not_attending', '2022-03-12 23:50:50', '2025-12-17 19:47:33', 'mRB3oJYm', '4736504'), + (42782, 480, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mRB3oJYm', '4746789'), + (42783, 480, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mRB3oJYm', '4753929'), + (42784, 480, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mRB3oJYm', '5038850'), + (42785, 480, 1236, 'not_attending', '2022-02-18 04:16:11', '2025-12-17 19:47:32', 'mRB3oJYm', '5045826'), + (42786, 480, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mRB3oJYm', '5132533'), + (42787, 480, 1272, 'not_attending', '2022-03-19 15:47:32', '2025-12-17 19:47:25', 'mRB3oJYm', '5186582'), + (42788, 480, 1273, 'attending', '2022-03-23 15:41:43', '2025-12-17 19:47:25', 'mRB3oJYm', '5186583'), + (42789, 480, 1274, 'not_attending', '2022-04-03 02:46:11', '2025-12-17 19:47:26', 'mRB3oJYm', '5186585'), + (42790, 480, 1281, 'not_attending', '2022-04-09 22:54:51', '2025-12-17 19:47:27', 'mRB3oJYm', '5190437'), + (42791, 480, 1284, 'not_attending', '2022-04-30 19:56:31', '2025-12-17 19:47:27', 'mRB3oJYm', '5195095'), + (42792, 480, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mRB3oJYm', '5215989'), + (42793, 480, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mRB3oJYm', '5223686'), + (42794, 480, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mRB3oJYm', '5227432'), + (42795, 480, 1346, 'not_attending', '2022-04-30 19:56:27', '2025-12-17 19:47:27', 'mRB3oJYm', '5247467'), + (42796, 480, 1362, 'attending', '2022-04-30 19:56:18', '2025-12-17 19:47:28', 'mRB3oJYm', '5260800'), + (42797, 480, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mRB3oJYm', '5269930'), + (42798, 480, 1378, 'attending', '2022-05-14 13:51:08', '2025-12-17 19:47:29', 'mRB3oJYm', '5271448'), + (42799, 480, 1379, 'attending', '2022-05-21 22:50:27', '2025-12-17 19:47:29', 'mRB3oJYm', '5271449'), + (42800, 480, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mRB3oJYm', '5276469'), + (42801, 480, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mRB3oJYm', '5278159'), + (42802, 480, 1407, 'not_attending', '2022-06-04 21:56:33', '2025-12-17 19:47:30', 'mRB3oJYm', '5363695'), + (42803, 480, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mRB3oJYm', '5365960'), + (42804, 480, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mRB3oJYm', '5368973'), + (42805, 480, 1428, 'not_attending', '2022-05-28 23:20:17', '2025-12-17 19:47:30', 'mRB3oJYm', '5378247'), + (42806, 480, 1431, 'not_attending', '2022-06-12 00:05:08', '2025-12-17 19:47:31', 'mRB3oJYm', '5389605'), + (42807, 480, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mRB3oJYm', '5397265'), + (42808, 480, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mRB3oJYm', '5403967'), + (42809, 480, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mRB3oJYm', '5404786'), + (42810, 480, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mRB3oJYm', '5405203'), + (42811, 480, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mRB3oJYm', '5411699'), + (42812, 480, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mRB3oJYm', '5412550'), + (42813, 480, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mRB3oJYm', '5415046'), + (42814, 480, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mRB3oJYm', '5422086'), + (42815, 480, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mRB3oJYm', '5422406'), + (42816, 480, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mRB3oJYm', '5424565'), + (42817, 480, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mRB3oJYm', '5426882'), + (42818, 480, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mRB3oJYm', '5427083'), + (42819, 480, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mRB3oJYm', '5441125'), + (42820, 480, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mRB3oJYm', '5441126'), + (42821, 480, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mRB3oJYm', '5441128'), + (42822, 480, 1517, 'attending', '2022-08-27 15:44:45', '2025-12-17 19:47:23', 'mRB3oJYm', '5441130'), + (42823, 480, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mRB3oJYm', '5441131'), + (42824, 480, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mRB3oJYm', '5441132'), + (42825, 480, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mRB3oJYm', '5446643'), + (42826, 480, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mRB3oJYm', '5453325'), + (42827, 480, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mRB3oJYm', '5454516'), + (42828, 480, 1544, 'attending', '2022-09-17 15:58:19', '2025-12-17 19:47:11', 'mRB3oJYm', '5454517'), + (42829, 480, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mRB3oJYm', '5454605'), + (42830, 480, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mRB3oJYm', '5455037'), + (42831, 480, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mRB3oJYm', '5461278'), + (42832, 480, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mRB3oJYm', '5469480'), + (42833, 480, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mRB3oJYm', '5471073'), + (42834, 480, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mRB3oJYm', '5474663'), + (42835, 480, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mRB3oJYm', '5482022'), + (42836, 480, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mRB3oJYm', '5482793'), + (42837, 480, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mRB3oJYm', '5488912'), + (42838, 480, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mRB3oJYm', '5492192'), + (42839, 480, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mRB3oJYm', '5493139'), + (42840, 480, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mRB3oJYm', '5493200'), + (42841, 480, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mRB3oJYm', '5502188'), + (42842, 480, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mRB3oJYm', '5505059'), + (42843, 480, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mRB3oJYm', '5509055'), + (42844, 480, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mRB3oJYm', '5512862'), + (42845, 480, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mRB3oJYm', '5513985'), + (42846, 480, 1626, 'attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'mRB3oJYm', '5519981'), + (42847, 480, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mRB3oJYm', '5522550'), + (42848, 480, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mRB3oJYm', '5534683'), + (42849, 480, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mRB3oJYm', '5537735'), + (42850, 480, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mRB3oJYm', '5540859'), + (42851, 480, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mRB3oJYm', '5546619'), + (42852, 480, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mRB3oJYm', '5555245'), + (42853, 480, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mRB3oJYm', '5557747'), + (42854, 480, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mRB3oJYm', '5560255'), + (42855, 480, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mRB3oJYm', '5562906'), + (42856, 480, 1668, 'not_attending', '2022-10-01 15:11:47', '2025-12-17 19:47:12', 'mRB3oJYm', '5563222'), + (42857, 480, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mRB3oJYm', '5600604'), + (42858, 480, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mRB3oJYm', '5605544'), + (42859, 480, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'mRB3oJYm', '5606737'), + (42860, 480, 1719, 'attending', '2022-10-08 20:58:50', '2025-12-17 19:47:12', 'mRB3oJYm', '5630958'), + (42861, 480, 1720, 'not_attending', '2022-10-15 20:52:42', '2025-12-17 19:47:12', 'mRB3oJYm', '5630959'), + (42862, 480, 1721, 'maybe', '2022-10-21 16:17:27', '2025-12-17 19:47:13', 'mRB3oJYm', '5630960'), + (42863, 480, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mRB3oJYm', '5630961'), + (42864, 480, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mRB3oJYm', '5630962'), + (42865, 480, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mRB3oJYm', '5630966'), + (42866, 480, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mRB3oJYm', '5630967'), + (42867, 480, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mRB3oJYm', '5630968'), + (42868, 480, 1727, 'not_attending', '2022-12-04 01:14:46', '2025-12-17 19:47:16', 'mRB3oJYm', '5630969'), + (42869, 480, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mRB3oJYm', '5635406'), + (42870, 480, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mRB3oJYm', '5638765'), + (42871, 480, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mRB3oJYm', '5640097'), + (42872, 480, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mRB3oJYm', '5640843'), + (42873, 480, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mRB3oJYm', '5641521'), + (42874, 480, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mRB3oJYm', '5642818'), + (42875, 480, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mRB3oJYm', '5652395'), + (42876, 480, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mRB3oJYm', '5670445'), + (42877, 480, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mRB3oJYm', '5671637'), + (42878, 480, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mRB3oJYm', '5672329'), + (42879, 480, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mRB3oJYm', '5674057'), + (42880, 480, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mRB3oJYm', '5674060'), + (42881, 480, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mRB3oJYm', '5677461'), + (42882, 480, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mRB3oJYm', '5698046'), + (42883, 480, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mRB3oJYm', '5699760'), + (42884, 480, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mRB3oJYm', '5741601'), + (42885, 480, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mRB3oJYm', '5763458'), + (42886, 480, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mRB3oJYm', '5774172'), + (42887, 480, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mRB3oJYm', '5818247'), + (42888, 480, 1834, 'not_attending', '2022-12-09 22:38:19', '2025-12-17 19:47:17', 'mRB3oJYm', '5819470'), + (42889, 480, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mRB3oJYm', '5819471'), + (42890, 480, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mRB3oJYm', '5827739'), + (42891, 480, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mRB3oJYm', '5844306'), + (42892, 480, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mRB3oJYm', '5850159'), + (42893, 480, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mRB3oJYm', '5858999'), + (42894, 480, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mRB3oJYm', '5871984'), + (42895, 480, 1860, 'maybe', '2023-01-17 17:05:57', '2025-12-17 19:47:05', 'mRB3oJYm', '5876309'), + (42896, 480, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mRB3oJYm', '5876354'), + (42897, 480, 1864, 'attending', '2023-01-17 17:06:12', '2025-12-17 19:47:05', 'mRB3oJYm', '5879675'), + (42898, 480, 1865, 'attending', '2023-01-23 18:47:24', '2025-12-17 19:47:06', 'mRB3oJYm', '5879676'), + (42899, 480, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mRB3oJYm', '5880939'), + (42900, 480, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mRB3oJYm', '5880940'), + (42901, 480, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mRB3oJYm', '5880942'), + (42902, 480, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mRB3oJYm', '5880943'), + (42903, 480, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mRB3oJYm', '5887890'), + (42904, 480, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mRB3oJYm', '5888598'), + (42905, 480, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mRB3oJYm', '5893260'), + (42906, 480, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mRB3oJYm', '5899826'), + (42907, 480, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mRB3oJYm', '5900199'), + (42908, 480, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mRB3oJYm', '5900200'), + (42909, 480, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mRB3oJYm', '5900202'), + (42910, 480, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mRB3oJYm', '5900203'), + (42911, 480, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mRB3oJYm', '5901108'), + (42912, 480, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mRB3oJYm', '5901126'), + (42913, 480, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mRB3oJYm', '5909655'), + (42914, 480, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mRB3oJYm', '5910522'), + (42915, 480, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mRB3oJYm', '5910526'), + (42916, 480, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mRB3oJYm', '5910528'), + (42917, 480, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mRB3oJYm', '5916219'), + (42918, 480, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mRB3oJYm', '5936234'), + (42919, 480, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mRB3oJYm', '5958351'), + (42920, 480, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mRB3oJYm', '5959751'), + (42921, 480, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mRB3oJYm', '5959755'), + (42922, 480, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mRB3oJYm', '5960055'), + (42923, 480, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mRB3oJYm', '5961684'), + (42924, 480, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mRB3oJYm', '5962132'), + (42925, 480, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mRB3oJYm', '5962133'), + (42926, 480, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mRB3oJYm', '5962134'), + (42927, 480, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mRB3oJYm', '5962317'), + (42928, 480, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mRB3oJYm', '5962318'), + (42929, 480, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mRB3oJYm', '5965933'), + (42930, 480, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mRB3oJYm', '5967014'), + (42931, 480, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mRB3oJYm', '5972815'), + (42932, 480, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mRB3oJYm', '5974016'), + (42933, 480, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'mRB3oJYm', '5975052'), + (42934, 480, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'mRB3oJYm', '5975054'), + (42935, 480, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mRB3oJYm', '5981515'), + (42936, 480, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mRB3oJYm', '5993516'), + (42937, 480, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mRB3oJYm', '5998939'), + (42938, 480, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mRB3oJYm', '6028191'), + (42939, 480, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mRB3oJYm', '6040066'), + (42940, 480, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mRB3oJYm', '6042717'), + (42941, 480, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mRB3oJYm', '6044838'), + (42942, 480, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mRB3oJYm', '6044839'), + (42943, 480, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRB3oJYm', '6045684'), + (42944, 480, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mRB3oJYm', '6050104'), + (42945, 480, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mRB3oJYm', '6053195'), + (42946, 480, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mRB3oJYm', '6053198'), + (42947, 480, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mRB3oJYm', '6056085'), + (42948, 480, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mRB3oJYm', '6056916'), + (42949, 480, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mRB3oJYm', '6059290'), + (42950, 480, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mRB3oJYm', '6060328'), + (42951, 480, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mRB3oJYm', '6061037'), + (42952, 480, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mRB3oJYm', '6061039'), + (42953, 480, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mRB3oJYm', '6067245'), + (42954, 480, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mRB3oJYm', '6068094'), + (42955, 480, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mRB3oJYm', '6068252'), + (42956, 480, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mRB3oJYm', '6068253'), + (42957, 480, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mRB3oJYm', '6068254'), + (42958, 480, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mRB3oJYm', '6068280'), + (42959, 480, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mRB3oJYm', '6069093'), + (42960, 480, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mRB3oJYm', '6072528'), + (42961, 480, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'mRB3oJYm', '6075556'), + (42962, 480, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mRB3oJYm', '6079840'), + (42963, 480, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mRB3oJYm', '6083398'), + (42964, 480, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mRB3oJYm', '6093504'), + (42965, 480, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mRB3oJYm', '6097414'), + (42966, 480, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mRB3oJYm', '6097442'), + (42967, 480, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mRB3oJYm', '6097684'), + (42968, 480, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mRB3oJYm', '6098762'), + (42969, 480, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mRB3oJYm', '6101362'), + (42970, 480, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mRB3oJYm', '6107314'), + (42971, 481, 574, 'not_attending', '2021-03-01 02:34:59', '2025-12-17 19:47:51', 'o4PKBRlA', '3435543'), + (42972, 481, 592, 'maybe', '2021-02-21 07:49:29', '2025-12-17 19:47:50', 'o4PKBRlA', '3467757'), + (42973, 481, 596, 'not_attending', '2021-02-22 16:27:02', '2025-12-17 19:47:51', 'o4PKBRlA', '3467762'), + (42974, 481, 603, 'attending', '2021-02-16 05:53:42', '2025-12-17 19:47:50', 'o4PKBRlA', '3470304'), + (42975, 481, 604, 'attending', '2021-02-21 08:13:05', '2025-12-17 19:47:50', 'o4PKBRlA', '3470305'), + (42976, 481, 605, 'not_attending', '2021-02-14 08:39:07', '2025-12-17 19:47:50', 'o4PKBRlA', '3470991'), + (42977, 481, 610, 'attending', '2021-02-14 08:40:43', '2025-12-17 19:47:50', 'o4PKBRlA', '3482159'), + (42978, 481, 612, 'maybe', '2021-02-16 11:32:53', '2025-12-17 19:47:50', 'o4PKBRlA', '3490040'), + (42979, 481, 618, 'attending', '2021-02-19 21:04:37', '2025-12-17 19:47:50', 'o4PKBRlA', '3503991'), + (42980, 481, 621, 'attending', '2021-02-28 17:05:43', '2025-12-17 19:47:51', 'o4PKBRlA', '3517815'), + (42981, 481, 622, 'attending', '2021-02-25 17:05:06', '2025-12-17 19:47:51', 'o4PKBRlA', '3517816'), + (42982, 481, 623, 'not_attending', '2021-02-27 19:20:53', '2025-12-17 19:47:51', 'o4PKBRlA', '3523941'), + (42983, 481, 627, 'attending', '2021-03-07 20:26:19', '2025-12-17 19:47:51', 'o4PKBRlA', '3533303'), + (42984, 481, 628, 'attending', '2021-03-02 23:48:22', '2025-12-17 19:47:51', 'o4PKBRlA', '3533305'), + (42985, 481, 629, 'not_attending', '2021-03-17 20:58:03', '2025-12-17 19:47:51', 'o4PKBRlA', '3533307'), + (42986, 481, 631, 'not_attending', '2021-03-01 07:24:06', '2025-12-17 19:47:51', 'o4PKBRlA', '3533850'), + (42987, 481, 632, 'attending', '2021-03-01 02:35:31', '2025-12-17 19:47:51', 'o4PKBRlA', '3533853'), + (42988, 481, 638, 'not_attending', '2021-03-05 08:17:06', '2025-12-17 19:47:44', 'o4PKBRlA', '3536632'), + (42989, 481, 639, 'not_attending', '2021-03-19 20:16:05', '2025-12-17 19:47:51', 'o4PKBRlA', '3536656'), + (42990, 481, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'o4PKBRlA', '3539916'), + (42991, 481, 642, 'attending', '2021-04-10 20:59:08', '2025-12-17 19:47:44', 'o4PKBRlA', '3539917'), + (42992, 481, 643, 'not_attending', '2021-04-16 10:06:47', '2025-12-17 19:47:45', 'o4PKBRlA', '3539918'), + (42993, 481, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'o4PKBRlA', '3539919'), + (42994, 481, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'o4PKBRlA', '3539920'), + (42995, 481, 646, 'attending', '2021-05-15 21:32:50', '2025-12-17 19:47:46', 'o4PKBRlA', '3539921'), + (42996, 481, 647, 'attending', '2021-05-21 17:05:32', '2025-12-17 19:47:46', 'o4PKBRlA', '3539922'), + (42997, 481, 648, 'not_attending', '2021-05-29 16:05:27', '2025-12-17 19:47:47', 'o4PKBRlA', '3539923'), + (42998, 481, 649, 'attending', '2021-03-14 04:29:02', '2025-12-17 19:47:51', 'o4PKBRlA', '3539927'), + (42999, 481, 663, 'not_attending', '2021-05-02 05:48:21', '2025-12-17 19:47:46', 'o4PKBRlA', '3547140'), + (43000, 481, 685, 'not_attending', '2021-04-03 01:13:10', '2025-12-17 19:47:44', 'o4PKBRlA', '3551564'), + (43001, 481, 687, 'maybe', '2021-03-11 17:48:09', '2025-12-17 19:47:51', 'o4PKBRlA', '3553405'), + (43002, 481, 690, 'not_attending', '2021-03-23 22:50:18', '2025-12-17 19:47:44', 'o4PKBRlA', '3559954'), + (43003, 481, 695, 'not_attending', '2021-03-18 15:57:07', '2025-12-17 19:47:51', 'o4PKBRlA', '3567535'), + (43004, 481, 696, 'not_attending', '2021-03-17 07:57:40', '2025-12-17 19:47:51', 'o4PKBRlA', '3567536'), + (43005, 481, 697, 'maybe', '2021-03-26 15:47:52', '2025-12-17 19:47:44', 'o4PKBRlA', '3567537'), + (43006, 481, 705, 'not_attending', '2021-03-27 18:13:26', '2025-12-17 19:47:44', 'o4PKBRlA', '3581895'), + (43007, 481, 706, 'not_attending', '2021-04-14 16:14:20', '2025-12-17 19:47:45', 'o4PKBRlA', '3582734'), + (43008, 481, 707, 'attending', '2021-03-31 00:14:34', '2025-12-17 19:47:46', 'o4PKBRlA', '3583262'), + (43009, 481, 708, 'maybe', '2021-03-25 20:59:50', '2025-12-17 19:47:44', 'o4PKBRlA', '3587850'), + (43010, 481, 711, 'attending', '2021-03-22 21:18:47', '2025-12-17 19:47:44', 'o4PKBRlA', '3588075'), + (43011, 481, 714, 'not_attending', '2021-04-03 01:12:39', '2025-12-17 19:47:44', 'o4PKBRlA', '3604063'), + (43012, 481, 716, 'attending', '2021-03-25 15:12:48', '2025-12-17 19:47:44', 'o4PKBRlA', '3618353'), + (43013, 481, 717, 'not_attending', '2021-03-27 05:27:01', '2025-12-17 19:47:44', 'o4PKBRlA', '3619523'), + (43014, 481, 719, 'maybe', '2021-04-01 10:32:01', '2025-12-17 19:47:44', 'o4PKBRlA', '3635405'), + (43015, 481, 721, 'attending', '2021-03-29 08:24:38', '2025-12-17 19:47:44', 'o4PKBRlA', '3643622'), + (43016, 481, 722, 'maybe', '2021-03-31 00:12:27', '2025-12-17 19:47:44', 'o4PKBRlA', '3646347'), + (43017, 481, 724, 'attending', '2021-04-26 00:15:26', '2025-12-17 19:47:46', 'o4PKBRlA', '3661369'), + (43018, 481, 725, 'attending', '2021-05-22 21:16:24', '2025-12-17 19:47:47', 'o4PKBRlA', '3661372'), + (43019, 481, 727, 'not_attending', '2021-06-19 16:46:55', '2025-12-17 19:47:38', 'o4PKBRlA', '3661377'), + (43020, 481, 728, 'not_attending', '2021-04-14 16:14:11', '2025-12-17 19:47:44', 'o4PKBRlA', '3668073'), + (43021, 481, 730, 'attending', '2021-05-01 01:13:30', '2025-12-17 19:47:46', 'o4PKBRlA', '3668076'), + (43022, 481, 731, 'not_attending', '2021-04-06 02:46:29', '2025-12-17 19:47:44', 'o4PKBRlA', '3674262'), + (43023, 481, 735, 'not_attending', '2021-04-20 05:48:21', '2025-12-17 19:47:46', 'o4PKBRlA', '3677402'), + (43024, 481, 752, 'maybe', '2021-04-15 15:55:19', '2025-12-17 19:47:44', 'o4PKBRlA', '3699422'), + (43025, 481, 754, 'attending', '2021-04-20 02:42:16', '2025-12-17 19:47:45', 'o4PKBRlA', '3701863'), + (43026, 481, 763, 'attending', '2021-04-21 15:55:02', '2025-12-17 19:47:46', 'o4PKBRlA', '3719122'), + (43027, 481, 766, 'maybe', '2021-05-07 10:51:51', '2025-12-17 19:47:46', 'o4PKBRlA', '3721383'), + (43028, 481, 772, 'maybe', '2021-04-27 12:37:11', '2025-12-17 19:47:46', 'o4PKBRlA', '3726421'), + (43029, 481, 774, 'not_attending', '2021-04-21 06:49:55', '2025-12-17 19:47:45', 'o4PKBRlA', '3730212'), + (43030, 481, 777, 'attending', '2021-04-26 19:40:20', '2025-12-17 19:47:46', 'o4PKBRlA', '3746248'), + (43031, 481, 779, 'maybe', '2021-04-29 11:50:19', '2025-12-17 19:47:46', 'o4PKBRlA', '3757118'), + (43032, 481, 782, 'maybe', '2021-05-04 21:52:37', '2025-12-17 19:47:46', 'o4PKBRlA', '3761843'), + (43033, 481, 792, 'not_attending', '2021-05-17 18:36:00', '2025-12-17 19:47:46', 'o4PKBRlA', '3793156'), + (43034, 481, 796, 'maybe', '2021-05-17 18:36:28', '2025-12-17 19:47:46', 'o4PKBRlA', '3793862'), + (43035, 481, 803, 'not_attending', '2021-05-19 21:53:03', '2025-12-17 19:47:46', 'o4PKBRlA', '3804665'), + (43036, 481, 805, 'attending', '2021-06-12 16:23:13', '2025-12-17 19:47:47', 'o4PKBRlA', '3804777'), + (43037, 481, 809, 'maybe', '2021-05-18 06:48:47', '2025-12-17 19:47:46', 'o4PKBRlA', '3807964'), + (43038, 481, 823, 'attending', '2021-06-19 22:08:53', '2025-12-17 19:47:48', 'o4PKBRlA', '3974109'), + (43039, 481, 824, 'attending', '2021-06-01 15:21:30', '2025-12-17 19:47:47', 'o4PKBRlA', '3974112'), + (43040, 481, 827, 'attending', '2021-06-05 19:45:32', '2025-12-17 19:47:47', 'o4PKBRlA', '3975311'), + (43041, 481, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'o4PKBRlA', '3975312'), + (43042, 481, 832, 'not_attending', '2021-06-05 19:45:25', '2025-12-17 19:47:47', 'o4PKBRlA', '3976650'), + (43043, 481, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'o4PKBRlA', '3994992'), + (43044, 481, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'o4PKBRlA', '4014338'), + (43045, 481, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'o4PKBRlA', '4021848'), + (43046, 481, 869, 'not_attending', '2021-06-27 06:23:22', '2025-12-17 19:47:38', 'o4PKBRlA', '4136744'), + (43047, 481, 870, 'attending', '2021-07-03 19:05:10', '2025-12-17 19:47:39', 'o4PKBRlA', '4136937'), + (43048, 481, 871, 'not_attending', '2021-07-10 22:45:17', '2025-12-17 19:47:39', 'o4PKBRlA', '4136938'), + (43049, 481, 872, 'not_attending', '2021-07-03 19:04:37', '2025-12-17 19:47:40', 'o4PKBRlA', '4136947'), + (43050, 481, 874, 'not_attending', '2021-06-24 21:08:01', '2025-12-17 19:47:38', 'o4PKBRlA', '4139815'), + (43051, 481, 879, 'maybe', '2021-06-27 06:23:03', '2025-12-17 19:47:38', 'o4PKBRlA', '4147806'), + (43052, 481, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'o4PKBRlA', '4210314'), + (43053, 481, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'o4PKBRlA', '4225444'), + (43054, 481, 899, 'not_attending', '2021-07-03 19:04:23', '2025-12-17 19:47:39', 'o4PKBRlA', '4239259'), + (43055, 481, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'o4PKBRlA', '4240316'), + (43056, 481, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'o4PKBRlA', '4240317'), + (43057, 481, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'o4PKBRlA', '4240318'), + (43058, 481, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'o4PKBRlA', '4240320'), + (43059, 481, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'o4PKBRlA', '4250163'), + (43060, 481, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'o4PKBRlA', '4275957'), + (43061, 481, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'o4PKBRlA', '4277819'), + (43062, 481, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'o4PKBRlA', '4301723'), + (43063, 481, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'o4PKBRlA', '4302093'), + (43064, 481, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'o4PKBRlA', '4304151'), + (43065, 481, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'o4PKBRlA', '4345519'), + (43066, 481, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'o4PKBRlA', '4356801'), + (43067, 481, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'o4PKBRlA', '4358025'), + (43068, 481, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'o4PKBRlA', '4366186'), + (43069, 481, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'o4PKBRlA', '4366187'), + (43070, 481, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'o4PKBRlA', '4402823'), + (43071, 481, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'o4PKBRlA', '4420735'), + (43072, 481, 991, 'not_attending', '2021-09-11 22:40:20', '2025-12-17 19:47:43', 'o4PKBRlA', '4420738'), + (43073, 481, 992, 'attending', '2021-09-18 21:12:50', '2025-12-17 19:47:33', 'o4PKBRlA', '4420739'), + (43074, 481, 993, 'not_attending', '2021-09-25 18:11:16', '2025-12-17 19:47:34', 'o4PKBRlA', '4420741'), + (43075, 481, 994, 'attending', '2021-10-02 21:38:47', '2025-12-17 19:47:34', 'o4PKBRlA', '4420742'), + (43076, 481, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'o4PKBRlA', '4420744'), + (43077, 481, 996, 'not_attending', '2021-10-02 16:16:32', '2025-12-17 19:47:35', 'o4PKBRlA', '4420747'), + (43078, 481, 997, 'not_attending', '2021-10-02 16:16:37', '2025-12-17 19:47:35', 'o4PKBRlA', '4420748'), + (43079, 481, 998, 'not_attending', '2021-10-02 16:16:40', '2025-12-17 19:47:36', 'o4PKBRlA', '4420749'), + (43080, 481, 1016, 'maybe', '2021-09-05 22:37:17', '2025-12-17 19:47:43', 'o4PKBRlA', '4441271'), + (43081, 481, 1019, 'maybe', '2021-09-09 08:47:29', '2025-12-17 19:47:43', 'o4PKBRlA', '4450515'), + (43082, 481, 1023, 'not_attending', '2021-09-11 22:40:17', '2025-12-17 19:47:43', 'o4PKBRlA', '4461883'), + (43083, 481, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'o4PKBRlA', '4508342'), + (43084, 481, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'o4PKBRlA', '4568602'), + (43085, 481, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'o4PKBRlA', '4572153'), + (43086, 481, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'o4PKBRlA', '4585962'), + (43087, 481, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'o4PKBRlA', '4596356'), + (43088, 481, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'o4PKBRlA', '4598860'), + (43089, 481, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'o4PKBRlA', '4598861'), + (43090, 481, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'o4PKBRlA', '4602797'), + (43091, 481, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'o4PKBRlA', '4637896'), + (43092, 481, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'o4PKBRlA', '4642994'), + (43093, 481, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'o4PKBRlA', '4642995'), + (43094, 481, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'o4PKBRlA', '4642996'), + (43095, 481, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'o4PKBRlA', '4642997'), + (43096, 481, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'o4PKBRlA', '4645687'), + (43097, 481, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'o4PKBRlA', '4645698'), + (43098, 481, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'o4PKBRlA', '4645704'), + (43099, 481, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'o4PKBRlA', '4645705'), + (43100, 481, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'o4PKBRlA', '4668385'), + (43101, 481, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'o4PKBRlA', '4694407'), + (43102, 481, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'o4PKBRlA', '4736497'), + (43103, 481, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'o4PKBRlA', '4736499'), + (43104, 481, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'o4PKBRlA', '4736500'), + (43105, 481, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'o4PKBRlA', '4736503'), + (43106, 481, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'o4PKBRlA', '4736504'), + (43107, 481, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'o4PKBRlA', '4746789'), + (43108, 481, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'o4PKBRlA', '4753929'), + (43109, 481, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'o4PKBRlA', '5038850'), + (43110, 481, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'o4PKBRlA', '5045826'), + (43111, 481, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'o4PKBRlA', '5132533'), + (43112, 481, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'o4PKBRlA', '5186582'), + (43113, 481, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'o4PKBRlA', '5186583'), + (43114, 481, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'o4PKBRlA', '5186585'), + (43115, 481, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'o4PKBRlA', '5190437'), + (43116, 481, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'o4PKBRlA', '5215989'), + (43117, 481, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PKBRlA', '6045684'), + (43118, 482, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mb268pXm', '6045684'), + (43119, 483, 23, 'attending', '2020-06-08 01:16:42', '2025-12-17 19:47:58', 'NmLpqJam', '2958067'), + (43120, 483, 67, 'attending', '2020-06-13 23:06:40', '2025-12-17 19:47:58', 'NmLpqJam', '2977136'), + (43121, 483, 69, 'attending', '2020-07-02 22:40:43', '2025-12-17 19:47:55', 'NmLpqJam', '2977138'), + (43122, 483, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'NmLpqJam', '3034321'), + (43123, 483, 164, 'attending', '2020-11-14 23:43:34', '2025-12-17 19:47:54', 'NmLpqJam', '3058701'), + (43124, 483, 166, 'attending', '2020-11-21 16:16:43', '2025-12-17 19:47:54', 'NmLpqJam', '3058704'), + (43125, 483, 169, 'maybe', '2020-06-14 17:35:37', '2025-12-17 19:47:58', 'NmLpqJam', '3058741'), + (43126, 483, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'NmLpqJam', '3067093'), + (43127, 483, 179, 'attending', '2020-06-20 16:49:54', '2025-12-17 19:47:58', 'NmLpqJam', '3073687'), + (43128, 483, 180, 'maybe', '2020-06-18 12:05:59', '2025-12-17 19:47:58', 'NmLpqJam', '3074048'), + (43129, 483, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'NmLpqJam', '3075228'), + (43130, 483, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'NmLpqJam', '3075456'), + (43131, 483, 186, 'attending', '2020-06-26 22:37:33', '2025-12-17 19:47:55', 'NmLpqJam', '3083791'), + (43132, 483, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'NmLpqJam', '3085151'), + (43133, 483, 191, 'attending', '2020-07-11 18:28:48', '2025-12-17 19:47:55', 'NmLpqJam', '3087259'), + (43134, 483, 192, 'attending', '2020-07-18 19:47:56', '2025-12-17 19:47:55', 'NmLpqJam', '3087260'), + (43135, 483, 193, 'attending', '2020-07-19 02:12:53', '2025-12-17 19:47:55', 'NmLpqJam', '3087261'), + (43136, 483, 194, 'maybe', '2020-08-08 17:13:39', '2025-12-17 19:47:56', 'NmLpqJam', '3087262'), + (43137, 483, 195, 'attending', '2020-08-06 21:41:26', '2025-12-17 19:47:56', 'NmLpqJam', '3087264'), + (43138, 483, 196, 'attending', '2020-08-11 00:40:28', '2025-12-17 19:47:56', 'NmLpqJam', '3087265'), + (43139, 483, 197, 'attending', '2020-08-22 19:11:14', '2025-12-17 19:47:56', 'NmLpqJam', '3087266'), + (43140, 483, 198, 'not_attending', '2020-08-29 00:57:01', '2025-12-17 19:47:56', 'NmLpqJam', '3087267'), + (43141, 483, 199, 'attending', '2020-09-05 16:59:35', '2025-12-17 19:47:56', 'NmLpqJam', '3087268'), + (43142, 483, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'NmLpqJam', '3088653'), + (43143, 483, 205, 'attending', '2020-07-10 22:50:43', '2025-12-17 19:47:55', 'NmLpqJam', '3104804'), + (43144, 483, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'NmLpqJam', '3106813'), + (43145, 483, 212, 'attending', '2020-07-13 11:59:21', '2025-12-17 19:47:55', 'NmLpqJam', '3118517'), + (43146, 483, 215, 'attending', '2020-07-07 21:47:03', '2025-12-17 19:47:55', 'NmLpqJam', '3124987'), + (43147, 483, 223, 'attending', '2020-09-12 22:23:48', '2025-12-17 19:47:56', 'NmLpqJam', '3129980'), + (43148, 483, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'NmLpqJam', '3132817'), + (43149, 483, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'NmLpqJam', '3132820'), + (43150, 483, 229, 'attending', '2020-07-16 20:19:29', '2025-12-17 19:47:55', 'NmLpqJam', '3134135'), + (43151, 483, 233, 'attending', '2020-07-19 20:50:55', '2025-12-17 19:47:55', 'NmLpqJam', '3139773'), + (43152, 483, 237, 'attending', '2020-07-27 19:05:23', '2025-12-17 19:47:55', 'NmLpqJam', '3142085'), + (43153, 483, 260, 'attending', '2021-06-15 22:37:57', '2025-12-17 19:47:47', 'NmLpqJam', '3149491'), + (43154, 483, 264, 'attending', '2020-08-05 19:33:05', '2025-12-17 19:47:56', 'NmLpqJam', '3150735'), + (43155, 483, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'NmLpqJam', '3155321'), + (43156, 483, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'NmLpqJam', '3162006'), + (43157, 483, 276, 'attending', '2020-08-04 22:55:20', '2025-12-17 19:47:56', 'NmLpqJam', '3163408'), + (43158, 483, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'NmLpqJam', '3163442'), + (43159, 483, 280, 'attending', '2020-08-11 00:40:00', '2025-12-17 19:47:56', 'NmLpqJam', '3166942'), + (43160, 483, 292, 'attending', '2020-08-10 22:36:03', '2025-12-17 19:47:56', 'NmLpqJam', '3170480'), + (43161, 483, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'NmLpqJam', '3172832'), + (43162, 483, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'NmLpqJam', '3172833'), + (43163, 483, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'NmLpqJam', '3172834'), + (43164, 483, 296, 'attending', '2020-09-11 23:09:42', '2025-12-17 19:47:56', 'NmLpqJam', '3172876'), + (43165, 483, 297, 'attending', '2020-08-11 22:37:27', '2025-12-17 19:47:56', 'NmLpqJam', '3173937'), + (43166, 483, 304, 'attending', '2020-09-06 21:54:56', '2025-12-17 19:47:56', 'NmLpqJam', '3178916'), + (43167, 483, 308, 'attending', '2020-09-03 22:53:49', '2025-12-17 19:47:56', 'NmLpqJam', '3183341'), + (43168, 483, 311, 'not_attending', '2020-09-18 03:13:52', '2025-12-17 19:47:56', 'NmLpqJam', '3186057'), + (43169, 483, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'NmLpqJam', '3191735'), + (43170, 483, 319, 'attending', '2020-08-30 14:29:18', '2025-12-17 19:47:56', 'NmLpqJam', '3194179'), + (43171, 483, 333, 'attending', '2020-10-02 19:33:09', '2025-12-17 19:47:52', 'NmLpqJam', '3199782'), + (43172, 483, 334, 'attending', '2020-10-02 19:33:26', '2025-12-17 19:47:52', 'NmLpqJam', '3199784'), + (43173, 483, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'NmLpqJam', '3200209'), + (43174, 483, 339, 'attending', '2020-09-09 23:11:00', '2025-12-17 19:47:56', 'NmLpqJam', '3204469'), + (43175, 483, 340, 'attending', '2020-09-18 23:56:57', '2025-12-17 19:47:56', 'NmLpqJam', '3204470'), + (43176, 483, 341, 'attending', '2020-09-25 23:27:06', '2025-12-17 19:47:52', 'NmLpqJam', '3204471'), + (43177, 483, 342, 'not_attending', '2020-10-02 21:24:34', '2025-12-17 19:47:52', 'NmLpqJam', '3204472'), + (43178, 483, 345, 'attending', '2020-09-13 22:43:19', '2025-12-17 19:47:56', 'NmLpqJam', '3207423'), + (43179, 483, 346, 'attending', '2020-09-15 02:14:29', '2025-12-17 19:47:56', 'NmLpqJam', '3207515'), + (43180, 483, 347, 'attending', '2020-09-24 22:52:00', '2025-12-17 19:47:51', 'NmLpqJam', '3207930'), + (43181, 483, 348, 'attending', '2020-09-28 19:22:02', '2025-12-17 19:47:52', 'NmLpqJam', '3209159'), + (43182, 483, 351, 'maybe', '2020-09-17 16:12:21', '2025-12-17 19:47:56', 'NmLpqJam', '3209257'), + (43183, 483, 362, 'attending', '2020-09-26 15:53:21', '2025-12-17 19:47:52', 'NmLpqJam', '3214207'), + (43184, 483, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'NmLpqJam', '3217037'), + (43185, 483, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'NmLpqJam', '3218510'), + (43186, 483, 366, 'attending', '2020-09-22 21:26:25', '2025-12-17 19:47:56', 'NmLpqJam', '3219750'), + (43187, 483, 367, 'attending', '2020-09-24 21:13:30', '2025-12-17 19:47:51', 'NmLpqJam', '3219751'), + (43188, 483, 368, 'attending', '2020-10-01 19:10:03', '2025-12-17 19:47:52', 'NmLpqJam', '3221403'), + (43189, 483, 369, 'not_attending', '2020-10-12 23:18:07', '2025-12-17 19:47:52', 'NmLpqJam', '3221404'), + (43190, 483, 370, 'attending', '2020-10-02 19:40:54', '2025-12-17 19:47:52', 'NmLpqJam', '3221405'), + (43191, 483, 371, 'attending', '2020-10-02 19:40:57', '2025-12-17 19:47:52', 'NmLpqJam', '3221406'), + (43192, 483, 374, 'attending', '2020-10-22 14:06:02', '2025-12-17 19:47:53', 'NmLpqJam', '3221415'), + (43193, 483, 385, 'attending', '2020-10-03 21:18:16', '2025-12-17 19:47:52', 'NmLpqJam', '3228698'), + (43194, 483, 386, 'attending', '2020-10-06 16:20:13', '2025-12-17 19:47:52', 'NmLpqJam', '3228699'), + (43195, 483, 387, 'attending', '2020-10-17 14:31:47', '2025-12-17 19:47:52', 'NmLpqJam', '3228700'), + (43196, 483, 388, 'attending', '2020-10-24 00:23:57', '2025-12-17 19:47:52', 'NmLpqJam', '3228701'), + (43197, 483, 413, 'attending', '2020-10-21 13:36:07', '2025-12-17 19:47:52', 'NmLpqJam', '3236670'), + (43198, 483, 416, 'attending', '2020-10-09 22:27:30', '2025-12-17 19:47:52', 'NmLpqJam', '3238073'), + (43199, 483, 418, 'attending', '2020-10-12 18:58:57', '2025-12-17 19:47:52', 'NmLpqJam', '3241728'), + (43200, 483, 420, 'attending', '2020-10-15 22:40:48', '2025-12-17 19:47:52', 'NmLpqJam', '3245293'), + (43201, 483, 422, 'not_attending', '2020-10-29 22:42:42', '2025-12-17 19:47:53', 'NmLpqJam', '3245295'), + (43202, 483, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLpqJam', '3245751'), + (43203, 483, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'NmLpqJam', '3250232'), + (43204, 483, 427, 'attending', '2020-11-02 00:44:00', '2025-12-17 19:47:53', 'NmLpqJam', '3250233'), + (43205, 483, 431, 'attending', '2020-10-22 14:06:17', '2025-12-17 19:47:53', 'NmLpqJam', '3253225'), + (43206, 483, 435, 'attending', '2020-10-21 13:34:59', '2025-12-17 19:47:52', 'NmLpqJam', '3254790'), + (43207, 483, 438, 'not_attending', '2020-10-22 14:06:47', '2025-12-17 19:47:53', 'NmLpqJam', '3256163'), + (43208, 483, 440, 'attending', '2020-10-19 13:31:15', '2025-12-17 19:47:53', 'NmLpqJam', '3256168'), + (43209, 483, 441, 'attending', '2020-11-14 15:05:26', '2025-12-17 19:47:54', 'NmLpqJam', '3256169'), + (43210, 483, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLpqJam', '3263578'), + (43211, 483, 444, 'attending', '2020-10-30 02:31:33', '2025-12-17 19:47:53', 'NmLpqJam', '3263745'), + (43212, 483, 445, 'attending', '2020-11-13 00:54:32', '2025-12-17 19:47:54', 'NmLpqJam', '3266138'), + (43213, 483, 446, 'attending', '2020-10-27 22:41:29', '2025-12-17 19:47:53', 'NmLpqJam', '3267163'), + (43214, 483, 448, 'attending', '2020-10-30 23:46:06', '2025-12-17 19:47:53', 'NmLpqJam', '3271831'), + (43215, 483, 455, 'attending', '2020-11-05 13:07:01', '2025-12-17 19:47:53', 'NmLpqJam', '3276391'), + (43216, 483, 456, 'not_attending', '2020-11-17 00:03:11', '2025-12-17 19:47:54', 'NmLpqJam', '3276428'), + (43217, 483, 458, 'not_attending', '2020-11-09 23:24:49', '2025-12-17 19:47:53', 'NmLpqJam', '3279233'), + (43218, 483, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'NmLpqJam', '3281467'), + (43219, 483, 461, 'maybe', '2020-11-09 23:24:00', '2025-12-17 19:47:53', 'NmLpqJam', '3281469'), + (43220, 483, 462, 'attending', '2020-11-08 20:39:00', '2025-12-17 19:47:53', 'NmLpqJam', '3281470'), + (43221, 483, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'NmLpqJam', '3281829'), + (43222, 483, 468, 'attending', '2020-11-21 16:16:49', '2025-12-17 19:47:54', 'NmLpqJam', '3285413'), + (43223, 483, 469, 'not_attending', '2020-11-10 23:29:26', '2025-12-17 19:47:54', 'NmLpqJam', '3285414'), + (43224, 483, 476, 'attending', '2020-11-17 17:15:05', '2025-12-17 19:47:54', 'NmLpqJam', '3286982'), + (43225, 483, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'NmLpqJam', '3297764'), + (43226, 483, 484, 'attending', '2020-11-20 13:26:11', '2025-12-17 19:47:54', 'NmLpqJam', '3297792'), + (43227, 483, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'NmLpqJam', '3313856'), + (43228, 483, 496, 'maybe', '2020-12-10 19:45:48', '2025-12-17 19:47:54', 'NmLpqJam', '3314269'), + (43229, 483, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'NmLpqJam', '3314909'), + (43230, 483, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'NmLpqJam', '3314964'), + (43231, 483, 502, 'attending', '2020-12-10 03:28:18', '2025-12-17 19:47:55', 'NmLpqJam', '3323365'), + (43232, 483, 513, 'attending', '2020-12-19 21:05:48', '2025-12-17 19:47:55', 'NmLpqJam', '3329383'), + (43233, 483, 517, 'attending', '2021-01-04 00:48:58', '2025-12-17 19:47:48', 'NmLpqJam', '3337137'), + (43234, 483, 525, 'attending', '2020-12-20 03:21:49', '2025-12-17 19:47:48', 'NmLpqJam', '3350467'), + (43235, 483, 526, 'maybe', '2020-12-29 16:52:36', '2025-12-17 19:47:48', 'NmLpqJam', '3351539'), + (43236, 483, 529, 'attending', '2021-01-04 00:50:08', '2025-12-17 19:47:48', 'NmLpqJam', '3364568'), + (43237, 483, 530, 'attending', '2021-01-04 00:47:53', '2025-12-17 19:47:48', 'NmLpqJam', '3373923'), + (43238, 483, 531, 'not_attending', '2021-01-02 05:22:18', '2025-12-17 19:47:48', 'NmLpqJam', '3378210'), + (43239, 483, 532, 'attending', '2021-01-04 00:48:41', '2025-12-17 19:47:48', 'NmLpqJam', '3381412'), + (43240, 483, 535, 'attending', '2021-01-05 14:50:43', '2025-12-17 19:47:48', 'NmLpqJam', '3384729'), + (43241, 483, 536, 'attending', '2021-01-07 14:38:47', '2025-12-17 19:47:48', 'NmLpqJam', '3386848'), + (43242, 483, 539, 'attending', '2021-01-12 17:51:57', '2025-12-17 19:47:48', 'NmLpqJam', '3389158'), + (43243, 483, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'NmLpqJam', '3389527'), + (43244, 483, 541, 'attending', '2021-01-08 13:48:05', '2025-12-17 19:47:48', 'NmLpqJam', '3391683'), + (43245, 483, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'NmLpqJam', '3396499'), + (43246, 483, 548, 'attending', '2021-01-13 12:56:32', '2025-12-17 19:47:48', 'NmLpqJam', '3403650'), + (43247, 483, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'NmLpqJam', '3406988'), + (43248, 483, 553, 'attending', '2021-01-13 12:56:26', '2025-12-17 19:47:48', 'NmLpqJam', '3407248'), + (43249, 483, 555, 'attending', '2021-01-19 13:06:37', '2025-12-17 19:47:49', 'NmLpqJam', '3416576'), + (43250, 483, 557, 'attending', '2021-01-19 15:36:53', '2025-12-17 19:47:49', 'NmLpqJam', '3418748'), + (43251, 483, 558, 'attending', '2021-01-19 13:06:33', '2025-12-17 19:47:49', 'NmLpqJam', '3418925'), + (43252, 483, 560, 'attending', '2021-01-20 01:56:34', '2025-12-17 19:47:49', 'NmLpqJam', '3421715'), + (43253, 483, 561, 'attending', '2021-01-23 20:27:16', '2025-12-17 19:47:49', 'NmLpqJam', '3421916'), + (43254, 483, 568, 'attending', '2021-01-30 15:36:38', '2025-12-17 19:47:50', 'NmLpqJam', '3430267'), + (43255, 483, 569, 'attending', '2021-01-27 23:03:13', '2025-12-17 19:47:49', 'NmLpqJam', '3432673'), + (43256, 483, 571, 'attending', '2021-02-10 21:01:44', '2025-12-17 19:47:50', 'NmLpqJam', '3435539'), + (43257, 483, 575, 'attending', '2021-01-30 15:36:44', '2025-12-17 19:47:50', 'NmLpqJam', '3437492'), + (43258, 483, 576, 'not_attending', '2021-02-03 00:12:08', '2025-12-17 19:47:50', 'NmLpqJam', '3438748'), + (43259, 483, 578, 'attending', '2021-01-28 14:47:28', '2025-12-17 19:47:50', 'NmLpqJam', '3440043'), + (43260, 483, 579, 'attending', '2021-02-06 14:06:00', '2025-12-17 19:47:50', 'NmLpqJam', '3440978'), + (43261, 483, 598, 'attending', '2021-02-08 16:01:48', '2025-12-17 19:47:50', 'NmLpqJam', '3468003'), + (43262, 483, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'NmLpqJam', '3468125'), + (43263, 483, 602, 'attending', '2021-02-09 17:14:53', '2025-12-17 19:47:50', 'NmLpqJam', '3470303'), + (43264, 483, 603, 'attending', '2021-02-18 15:20:11', '2025-12-17 19:47:50', 'NmLpqJam', '3470304'), + (43265, 483, 604, 'attending', '2021-02-23 13:52:17', '2025-12-17 19:47:50', 'NmLpqJam', '3470305'), + (43266, 483, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'NmLpqJam', '3470991'), + (43267, 483, 607, 'attending', '2021-02-19 23:42:52', '2025-12-17 19:47:50', 'NmLpqJam', '3471882'), + (43268, 483, 609, 'attending', '2021-02-13 14:45:48', '2025-12-17 19:47:50', 'NmLpqJam', '3480916'), + (43269, 483, 612, 'attending', '2021-02-14 14:56:00', '2025-12-17 19:47:50', 'NmLpqJam', '3490040'), + (43270, 483, 613, 'not_attending', '2021-02-26 01:35:50', '2025-12-17 19:47:50', 'NmLpqJam', '3490041'), + (43271, 483, 614, 'not_attending', '2021-03-03 23:18:43', '2025-12-17 19:47:51', 'NmLpqJam', '3490042'), + (43272, 483, 616, 'attending', '2021-02-15 20:44:13', '2025-12-17 19:47:50', 'NmLpqJam', '3493478'), + (43273, 483, 618, 'attending', '2021-02-19 20:23:16', '2025-12-17 19:47:50', 'NmLpqJam', '3503991'), + (43274, 483, 619, 'attending', '2021-02-20 20:00:10', '2025-12-17 19:47:50', 'NmLpqJam', '3506310'), + (43275, 483, 621, 'not_attending', '2021-03-06 01:18:22', '2025-12-17 19:47:51', 'NmLpqJam', '3517815'), + (43276, 483, 622, 'maybe', '2021-03-13 23:02:59', '2025-12-17 19:47:51', 'NmLpqJam', '3517816'), + (43277, 483, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'NmLpqJam', '3523941'), + (43278, 483, 624, 'attending', '2021-02-27 01:21:07', '2025-12-17 19:47:50', 'NmLpqJam', '3528556'), + (43279, 483, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'NmLpqJam', '3533850'), + (43280, 483, 632, 'attending', '2021-03-09 00:57:21', '2025-12-17 19:47:51', 'NmLpqJam', '3533853'), + (43281, 483, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'NmLpqJam', '3536632'), + (43282, 483, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'NmLpqJam', '3536656'), + (43283, 483, 641, 'attending', '2021-04-02 14:55:56', '2025-12-17 19:47:44', 'NmLpqJam', '3539916'), + (43284, 483, 642, 'attending', '2021-04-06 02:45:46', '2025-12-17 19:47:44', 'NmLpqJam', '3539917'), + (43285, 483, 643, 'not_attending', '2021-04-16 12:33:17', '2025-12-17 19:47:45', 'NmLpqJam', '3539918'), + (43286, 483, 644, 'attending', '2021-04-24 12:21:29', '2025-12-17 19:47:45', 'NmLpqJam', '3539919'), + (43287, 483, 645, 'attending', '2021-05-06 22:37:18', '2025-12-17 19:47:46', 'NmLpqJam', '3539920'), + (43288, 483, 646, 'attending', '2021-05-12 14:47:19', '2025-12-17 19:47:46', 'NmLpqJam', '3539921'), + (43289, 483, 647, 'attending', '2021-05-22 17:03:16', '2025-12-17 19:47:46', 'NmLpqJam', '3539922'), + (43290, 483, 648, 'attending', '2021-05-28 15:50:24', '2025-12-17 19:47:47', 'NmLpqJam', '3539923'), + (43291, 483, 649, 'attending', '2021-03-18 21:35:45', '2025-12-17 19:47:51', 'NmLpqJam', '3539927'), + (43292, 483, 650, 'attending', '2021-03-26 12:30:51', '2025-12-17 19:47:44', 'NmLpqJam', '3539928'), + (43293, 483, 651, 'not_attending', '2021-03-10 22:56:21', '2025-12-17 19:47:51', 'NmLpqJam', '3541045'), + (43294, 483, 655, 'maybe', '2021-03-13 23:03:03', '2025-12-17 19:47:51', 'NmLpqJam', '3547129'), + (43295, 483, 656, 'attending', '2021-03-18 21:35:39', '2025-12-17 19:47:51', 'NmLpqJam', '3547130'), + (43296, 483, 657, 'not_attending', '2021-04-16 12:33:11', '2025-12-17 19:47:45', 'NmLpqJam', '3547132'), + (43297, 483, 658, 'attending', '2021-06-12 17:55:19', '2025-12-17 19:47:47', 'NmLpqJam', '3547134'), + (43298, 483, 659, 'attending', '2021-04-06 02:45:44', '2025-12-17 19:47:44', 'NmLpqJam', '3547135'), + (43299, 483, 660, 'attending', '2021-07-10 15:05:05', '2025-12-17 19:47:39', 'NmLpqJam', '3547136'), + (43300, 483, 661, 'attending', '2021-04-02 14:55:59', '2025-12-17 19:47:44', 'NmLpqJam', '3547137'), + (43301, 483, 662, 'attending', '2021-04-24 12:21:26', '2025-12-17 19:47:45', 'NmLpqJam', '3547138'), + (43302, 483, 663, 'attending', '2021-05-06 22:37:16', '2025-12-17 19:47:46', 'NmLpqJam', '3547140'), + (43303, 483, 664, 'attending', '2021-09-08 21:36:20', '2025-12-17 19:47:43', 'NmLpqJam', '3547142'), + (43304, 483, 665, 'attending', '2021-09-03 21:19:13', '2025-12-17 19:47:43', 'NmLpqJam', '3547143'), + (43305, 483, 666, 'attending', '2021-08-11 21:47:45', '2025-12-17 19:47:42', 'NmLpqJam', '3547144'), + (43306, 483, 667, 'attending', '2021-08-24 22:05:00', '2025-12-17 19:47:42', 'NmLpqJam', '3547145'), + (43307, 483, 668, 'attending', '2021-05-12 14:47:17', '2025-12-17 19:47:46', 'NmLpqJam', '3547146'), + (43308, 483, 669, 'attending', '2021-06-25 18:08:47', '2025-12-17 19:47:38', 'NmLpqJam', '3547147'), + (43309, 483, 670, 'attending', '2021-06-18 18:30:07', '2025-12-17 19:47:48', 'NmLpqJam', '3547148'), + (43310, 483, 672, 'attending', '2021-05-22 17:03:09', '2025-12-17 19:47:46', 'NmLpqJam', '3547150'), + (43311, 483, 673, 'attending', '2021-06-30 11:42:57', '2025-12-17 19:47:38', 'NmLpqJam', '3547151'), + (43312, 483, 674, 'attending', '2021-08-06 16:59:54', '2025-12-17 19:47:41', 'NmLpqJam', '3547152'), + (43313, 483, 675, 'attending', '2021-07-30 12:16:16', '2025-12-17 19:47:40', 'NmLpqJam', '3547153'), + (43314, 483, 676, 'attending', '2021-07-22 01:31:45', '2025-12-17 19:47:40', 'NmLpqJam', '3547154'), + (43315, 483, 677, 'attending', '2021-05-28 16:27:27', '2025-12-17 19:47:47', 'NmLpqJam', '3547155'), + (43316, 483, 684, 'not_attending', '2021-03-12 22:43:02', '2025-12-17 19:47:51', 'NmLpqJam', '3549257'), + (43317, 483, 685, 'attending', '2021-04-02 18:56:40', '2025-12-17 19:47:44', 'NmLpqJam', '3551564'), + (43318, 483, 686, 'attending', '2021-03-09 21:00:28', '2025-12-17 19:47:51', 'NmLpqJam', '3553333'), + (43319, 483, 687, 'attending', '2021-03-10 17:23:44', '2025-12-17 19:47:51', 'NmLpqJam', '3553405'), + (43320, 483, 698, 'attending', '2021-03-15 19:03:05', '2025-12-17 19:47:44', 'NmLpqJam', '3571867'), + (43321, 483, 699, 'attending', '2021-03-25 20:58:32', '2025-12-17 19:47:44', 'NmLpqJam', '3572241'), + (43322, 483, 705, 'attending', '2021-03-22 23:42:01', '2025-12-17 19:47:44', 'NmLpqJam', '3581895'), + (43323, 483, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'NmLpqJam', '3582734'), + (43324, 483, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLpqJam', '3583262'), + (43325, 483, 708, 'attending', '2021-03-25 02:51:28', '2025-12-17 19:47:44', 'NmLpqJam', '3587850'), + (43326, 483, 709, 'attending', '2021-03-30 12:01:29', '2025-12-17 19:47:44', 'NmLpqJam', '3587852'), + (43327, 483, 710, 'attending', '2021-03-30 12:01:38', '2025-12-17 19:47:44', 'NmLpqJam', '3587853'), + (43328, 483, 715, 'attending', '2021-03-26 12:36:57', '2025-12-17 19:47:44', 'NmLpqJam', '3604146'), + (43329, 483, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLpqJam', '3619523'), + (43330, 483, 718, 'attending', '2021-03-26 12:30:45', '2025-12-17 19:47:44', 'NmLpqJam', '3626844'), + (43331, 483, 719, 'attending', '2021-03-27 15:59:11', '2025-12-17 19:47:44', 'NmLpqJam', '3635405'), + (43332, 483, 720, 'attending', '2021-03-29 16:33:33', '2025-12-17 19:47:44', 'NmLpqJam', '3643450'), + (43333, 483, 722, 'attending', '2021-03-29 16:04:55', '2025-12-17 19:47:44', 'NmLpqJam', '3646347'), + (43334, 483, 723, 'maybe', '2021-04-05 20:08:53', '2025-12-17 19:47:44', 'NmLpqJam', '3649179'), + (43335, 483, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLpqJam', '3661369'), + (43336, 483, 728, 'attending', '2021-04-02 18:44:03', '2025-12-17 19:47:44', 'NmLpqJam', '3668073'), + (43337, 483, 729, 'attending', '2021-04-02 18:44:07', '2025-12-17 19:47:46', 'NmLpqJam', '3668075'), + (43338, 483, 730, 'attending', '2021-04-02 18:44:09', '2025-12-17 19:47:46', 'NmLpqJam', '3668076'), + (43339, 483, 731, 'maybe', '2021-04-04 13:09:15', '2025-12-17 19:47:44', 'NmLpqJam', '3674262'), + (43340, 483, 734, 'attending', '2021-04-06 02:44:24', '2025-12-17 19:47:44', 'NmLpqJam', '3676806'), + (43341, 483, 735, 'maybe', '2021-05-02 16:49:04', '2025-12-17 19:47:46', 'NmLpqJam', '3677402'), + (43342, 483, 736, 'not_attending', '2021-04-09 16:14:39', '2025-12-17 19:47:44', 'NmLpqJam', '3677701'), + (43343, 483, 737, 'attending', '2021-04-06 02:46:02', '2025-12-17 19:47:44', 'NmLpqJam', '3679349'), + (43344, 483, 761, 'attending', '2021-05-14 21:34:09', '2025-12-17 19:47:46', 'NmLpqJam', '3716041'), + (43345, 483, 764, 'attending', '2021-04-23 22:06:38', '2025-12-17 19:47:45', 'NmLpqJam', '3720507'), + (43346, 483, 766, 'attending', '2021-05-04 02:59:20', '2025-12-17 19:47:46', 'NmLpqJam', '3721383'), + (43347, 483, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLpqJam', '3730212'), + (43348, 483, 777, 'attending', '2021-04-29 02:14:18', '2025-12-17 19:47:46', 'NmLpqJam', '3746248'), + (43349, 483, 781, 'attending', '2021-04-29 02:16:18', '2025-12-17 19:47:46', 'NmLpqJam', '3760130'), + (43350, 483, 788, 'attending', '2021-05-07 22:17:10', '2025-12-17 19:47:46', 'NmLpqJam', '3781975'), + (43351, 483, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLpqJam', '3793156'), + (43352, 483, 815, 'attending', '2021-05-16 12:03:45', '2025-12-17 19:47:47', 'NmLpqJam', '3818136'), + (43353, 483, 816, 'attending', '2021-05-19 22:02:17', '2025-12-17 19:47:46', 'NmLpqJam', '3826524'), + (43354, 483, 823, 'attending', '2021-06-18 18:30:10', '2025-12-17 19:47:48', 'NmLpqJam', '3974109'), + (43355, 483, 824, 'attending', '2021-05-30 02:42:50', '2025-12-17 19:47:47', 'NmLpqJam', '3974112'), + (43356, 483, 825, 'attending', '2021-06-03 21:44:43', '2025-12-17 19:47:47', 'NmLpqJam', '3975283'), + (43357, 483, 827, 'attending', '2021-06-04 20:40:58', '2025-12-17 19:47:47', 'NmLpqJam', '3975311'), + (43358, 483, 828, 'attending', '2021-06-12 17:55:22', '2025-12-17 19:47:47', 'NmLpqJam', '3975312'), + (43359, 483, 837, 'attending', '2021-06-04 01:58:25', '2025-12-17 19:47:48', 'NmLpqJam', '3992545'), + (43360, 483, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLpqJam', '3994992'), + (43361, 483, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLpqJam', '4014338'), + (43362, 483, 846, 'not_attending', '2021-07-07 21:36:16', '2025-12-17 19:47:39', 'NmLpqJam', '4015718'), + (43363, 483, 857, 'not_attending', '2021-11-24 02:32:51', '2025-12-17 19:47:37', 'NmLpqJam', '4015731'), + (43364, 483, 867, 'attending', '2021-06-25 18:08:34', '2025-12-17 19:47:38', 'NmLpqJam', '4021848'), + (43365, 483, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLpqJam', '4136744'), + (43366, 483, 870, 'attending', '2021-06-30 11:42:51', '2025-12-17 19:47:39', 'NmLpqJam', '4136937'), + (43367, 483, 871, 'attending', '2021-07-10 15:05:08', '2025-12-17 19:47:39', 'NmLpqJam', '4136938'), + (43368, 483, 872, 'not_attending', '2021-07-22 01:31:30', '2025-12-17 19:47:40', 'NmLpqJam', '4136947'), + (43369, 483, 874, 'attending', '2021-06-23 19:58:55', '2025-12-17 19:47:38', 'NmLpqJam', '4139815'), + (43370, 483, 876, 'attending', '2021-06-18 18:29:16', '2025-12-17 19:47:38', 'NmLpqJam', '4139926'), + (43371, 483, 884, 'attending', '2021-07-17 12:16:47', '2025-12-17 19:47:42', 'NmLpqJam', '4210314'), + (43372, 483, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLpqJam', '4225444'), + (43373, 483, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLpqJam', '4239259'), + (43374, 483, 900, 'attending', '2021-07-22 01:31:43', '2025-12-17 19:47:40', 'NmLpqJam', '4240316'), + (43375, 483, 901, 'attending', '2021-07-30 12:16:19', '2025-12-17 19:47:40', 'NmLpqJam', '4240317'), + (43376, 483, 902, 'attending', '2021-08-06 16:59:57', '2025-12-17 19:47:41', 'NmLpqJam', '4240318'), + (43377, 483, 903, 'attending', '2021-08-11 21:47:32', '2025-12-17 19:47:42', 'NmLpqJam', '4240320'), + (43378, 483, 905, 'attending', '2021-07-07 21:36:07', '2025-12-17 19:47:39', 'NmLpqJam', '4250163'), + (43379, 483, 911, 'attending', '2021-07-09 12:37:35', '2025-12-17 19:47:39', 'NmLpqJam', '4264465'), + (43380, 483, 919, 'attending', '2021-07-16 17:33:20', '2025-12-17 19:47:39', 'NmLpqJam', '4275957'), + (43381, 483, 920, 'not_attending', '2021-07-25 12:57:59', '2025-12-17 19:47:40', 'NmLpqJam', '4277819'), + (43382, 483, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'NmLpqJam', '4301723'), + (43383, 483, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmLpqJam', '4302093'), + (43384, 483, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLpqJam', '4304151'), + (43385, 483, 940, 'not_attending', '2021-07-30 12:13:39', '2025-12-17 19:47:40', 'NmLpqJam', '4309049'), + (43386, 483, 946, 'attending', '2021-07-28 21:55:00', '2025-12-17 19:47:40', 'NmLpqJam', '4314835'), + (43387, 483, 952, 'not_attending', '2021-08-05 21:45:08', '2025-12-17 19:47:41', 'NmLpqJam', '4318286'), + (43388, 483, 955, 'attending', '2021-08-03 01:36:31', '2025-12-17 19:47:41', 'NmLpqJam', '4331588'), + (43389, 483, 960, 'attending', '2021-08-08 14:52:12', '2025-12-17 19:47:41', 'NmLpqJam', '4344519'), + (43390, 483, 961, 'attending', '2021-08-08 14:51:49', '2025-12-17 19:47:41', 'NmLpqJam', '4345519'), + (43391, 483, 963, 'attending', '2021-08-15 21:30:26', '2025-12-17 19:47:42', 'NmLpqJam', '4353159'), + (43392, 483, 964, 'attending', '2021-08-19 21:46:43', '2025-12-17 19:47:42', 'NmLpqJam', '4353160'), + (43393, 483, 970, 'attending', '2021-08-12 01:29:44', '2025-12-17 19:47:42', 'NmLpqJam', '4356798'), + (43394, 483, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLpqJam', '4356801'), + (43395, 483, 972, 'attending', '2021-08-20 17:50:24', '2025-12-17 19:47:42', 'NmLpqJam', '4358025'), + (43396, 483, 973, 'attending', '2021-08-15 21:28:11', '2025-12-17 19:47:42', 'NmLpqJam', '4366186'), + (43397, 483, 974, 'attending', '2021-08-15 21:28:39', '2025-12-17 19:47:42', 'NmLpqJam', '4366187'), + (43398, 483, 988, 'attending', '2021-08-24 02:56:10', '2025-12-17 19:47:42', 'NmLpqJam', '4402823'), + (43399, 483, 990, 'attending', '2021-09-03 21:19:02', '2025-12-17 19:47:43', 'NmLpqJam', '4420735'), + (43400, 483, 991, 'attending', '2021-09-08 21:36:22', '2025-12-17 19:47:43', 'NmLpqJam', '4420738'), + (43401, 483, 992, 'attending', '2021-09-18 13:14:25', '2025-12-17 19:47:33', 'NmLpqJam', '4420739'), + (43402, 483, 993, 'attending', '2021-09-24 13:03:55', '2025-12-17 19:47:34', 'NmLpqJam', '4420741'), + (43403, 483, 994, 'attending', '2021-10-02 12:59:57', '2025-12-17 19:47:34', 'NmLpqJam', '4420742'), + (43404, 483, 995, 'attending', '2021-10-08 23:57:17', '2025-12-17 19:47:34', 'NmLpqJam', '4420744'), + (43405, 483, 996, 'attending', '2021-10-16 18:54:41', '2025-12-17 19:47:35', 'NmLpqJam', '4420747'), + (43406, 483, 997, 'attending', '2021-10-23 19:57:19', '2025-12-17 19:47:35', 'NmLpqJam', '4420748'), + (43407, 483, 998, 'attending', '2021-10-29 12:06:50', '2025-12-17 19:47:36', 'NmLpqJam', '4420749'), + (43408, 483, 999, 'attending', '2021-08-29 15:05:16', '2025-12-17 19:47:43', 'NmLpqJam', '4421150'), + (43409, 483, 1018, 'attending', '2021-09-05 17:14:31', '2025-12-17 19:47:43', 'NmLpqJam', '4448883'), + (43410, 483, 1019, 'attending', '2021-09-06 02:44:37', '2025-12-17 19:47:43', 'NmLpqJam', '4450515'), + (43411, 483, 1020, 'attending', '2021-09-06 15:35:25', '2025-12-17 19:47:43', 'NmLpqJam', '4451787'), + (43412, 483, 1021, 'attending', '2021-09-06 15:26:55', '2025-12-17 19:47:34', 'NmLpqJam', '4451803'), + (43413, 483, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'NmLpqJam', '4461883'), + (43414, 483, 1033, 'attending', '2021-09-18 13:14:21', '2025-12-17 19:47:43', 'NmLpqJam', '4486006'), + (43415, 483, 1037, 'attending', '2021-09-18 18:49:03', '2025-12-17 19:47:34', 'NmLpqJam', '4493233'), + (43416, 483, 1038, 'attending', '2021-09-24 13:03:53', '2025-12-17 19:47:34', 'NmLpqJam', '4496603'), + (43417, 483, 1039, 'attending', '2021-10-02 13:00:28', '2025-12-17 19:47:34', 'NmLpqJam', '4496604'), + (43418, 483, 1041, 'attending', '2021-12-04 19:37:38', '2025-12-17 19:47:37', 'NmLpqJam', '4496606'), + (43419, 483, 1042, 'not_attending', '2021-11-24 02:32:19', '2025-12-17 19:47:37', 'NmLpqJam', '4496607'), + (43420, 483, 1043, 'attending', '2021-10-23 19:57:16', '2025-12-17 19:47:35', 'NmLpqJam', '4496608'), + (43421, 483, 1045, 'attending', '2021-10-29 12:06:44', '2025-12-17 19:47:36', 'NmLpqJam', '4496610'), + (43422, 483, 1046, 'attending', '2021-10-16 18:54:39', '2025-12-17 19:47:35', 'NmLpqJam', '4496611'), + (43423, 483, 1047, 'attending', '2021-10-08 23:57:15', '2025-12-17 19:47:34', 'NmLpqJam', '4496612'), + (43424, 483, 1048, 'attending', '2021-11-12 01:39:15', '2025-12-17 19:47:36', 'NmLpqJam', '4496613'), + (43425, 483, 1049, 'attending', '2022-01-22 19:39:49', '2025-12-17 19:47:32', 'NmLpqJam', '4496614'), + (43426, 483, 1050, 'attending', '2022-01-29 19:05:19', '2025-12-17 19:47:32', 'NmLpqJam', '4496615'), + (43427, 483, 1051, 'attending', '2022-02-05 18:13:47', '2025-12-17 19:47:32', 'NmLpqJam', '4496616'), + (43428, 483, 1052, 'attending', '2022-01-14 04:26:15', '2025-12-17 19:47:31', 'NmLpqJam', '4496617'), + (43429, 483, 1053, 'attending', '2022-02-19 19:50:22', '2025-12-17 19:47:32', 'NmLpqJam', '4496618'), + (43430, 483, 1054, 'attending', '2022-03-13 22:57:00', '2025-12-17 19:47:25', 'NmLpqJam', '4496619'), + (43431, 483, 1055, 'attending', '2021-12-18 18:12:41', '2025-12-17 19:47:31', 'NmLpqJam', '4496621'), + (43432, 483, 1056, 'attending', '2022-01-05 22:31:01', '2025-12-17 19:47:31', 'NmLpqJam', '4496622'), + (43433, 483, 1057, 'attending', '2021-11-20 17:04:59', '2025-12-17 19:47:37', 'NmLpqJam', '4496624'), + (43434, 483, 1058, 'attending', '2022-02-23 12:58:53', '2025-12-17 19:47:33', 'NmLpqJam', '4496625'), + (43435, 483, 1059, 'attending', '2022-03-12 22:23:30', '2025-12-17 19:47:33', 'NmLpqJam', '4496626'), + (43436, 483, 1060, 'attending', '2022-03-26 20:15:41', '2025-12-17 19:47:25', 'NmLpqJam', '4496627'), + (43437, 483, 1061, 'attending', '2022-02-11 16:47:39', '2025-12-17 19:47:32', 'NmLpqJam', '4496628'), + (43438, 483, 1062, 'attending', '2022-03-04 02:08:52', '2025-12-17 19:47:33', 'NmLpqJam', '4496629'), + (43439, 483, 1063, 'attending', '2021-09-20 16:50:24', '2025-12-17 19:47:34', 'NmLpqJam', '4496630'), + (43440, 483, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLpqJam', '4508342'), + (43441, 483, 1068, 'attending', '2021-09-24 20:50:41', '2025-12-17 19:47:34', 'NmLpqJam', '4511471'), + (43442, 483, 1078, 'attending', '2021-10-04 21:48:11', '2025-12-17 19:47:34', 'NmLpqJam', '4541281'), + (43443, 483, 1082, 'attending', '2021-10-11 22:45:13', '2025-12-17 19:47:35', 'NmLpqJam', '4566762'), + (43444, 483, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLpqJam', '4568602'), + (43445, 483, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLpqJam', '4572153'), + (43446, 483, 1092, 'attending', '2021-10-19 21:30:44', '2025-12-17 19:47:35', 'NmLpqJam', '4582837'), + (43447, 483, 1093, 'not_attending', '2021-10-22 13:10:46', '2025-12-17 19:47:35', 'NmLpqJam', '4585962'), + (43448, 483, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'NmLpqJam', '4596356'), + (43449, 483, 1096, 'attending', '2021-10-27 01:01:54', '2025-12-17 19:47:36', 'NmLpqJam', '4596453'), + (43450, 483, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLpqJam', '4598860'), + (43451, 483, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLpqJam', '4598861'), + (43452, 483, 1099, 'attending', '2021-11-02 18:03:11', '2025-12-17 19:47:36', 'NmLpqJam', '4602797'), + (43453, 483, 1104, 'attending', '2021-11-12 01:39:30', '2025-12-17 19:47:36', 'NmLpqJam', '4618310'), + (43454, 483, 1106, 'attending', '2021-11-09 03:27:12', '2025-12-17 19:47:36', 'NmLpqJam', '4620452'), + (43455, 483, 1114, 'attending', '2021-11-12 01:36:50', '2025-12-17 19:47:36', 'NmLpqJam', '4637896'), + (43456, 483, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLpqJam', '4642994'), + (43457, 483, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmLpqJam', '4642995'), + (43458, 483, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLpqJam', '4642996'), + (43459, 483, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLpqJam', '4642997'), + (43460, 483, 1126, 'attending', '2021-12-12 00:00:40', '2025-12-17 19:47:38', 'NmLpqJam', '4645687'), + (43461, 483, 1127, 'attending', '2021-12-11 20:40:23', '2025-12-17 19:47:38', 'NmLpqJam', '4645698'), + (43462, 483, 1128, 'attending', '2021-11-20 17:04:51', '2025-12-17 19:47:37', 'NmLpqJam', '4645704'), + (43463, 483, 1129, 'not_attending', '2021-11-24 02:32:25', '2025-12-17 19:47:37', 'NmLpqJam', '4645705'), + (43464, 483, 1130, 'attending', '2021-12-04 19:37:47', '2025-12-17 19:47:37', 'NmLpqJam', '4658824'), + (43465, 483, 1131, 'attending', '2021-12-18 18:12:44', '2025-12-17 19:47:31', 'NmLpqJam', '4658825'), + (43466, 483, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLpqJam', '4668385'), + (43467, 483, 1139, 'attending', '2021-11-29 00:05:16', '2025-12-17 19:47:37', 'NmLpqJam', '4675604'), + (43468, 483, 1145, 'attending', '2021-12-06 22:38:00', '2025-12-17 19:47:38', 'NmLpqJam', '4691157'), + (43469, 483, 1146, 'attending', '2021-12-07 00:03:22', '2025-12-17 19:47:38', 'NmLpqJam', '4692841'), + (43470, 483, 1147, 'attending', '2021-12-07 00:03:26', '2025-12-17 19:47:38', 'NmLpqJam', '4692842'), + (43471, 483, 1148, 'attending', '2021-12-07 00:03:28', '2025-12-17 19:47:31', 'NmLpqJam', '4692843'), + (43472, 483, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLpqJam', '4694407'), + (43473, 483, 1155, 'attending', '2021-12-18 16:56:57', '2025-12-17 19:47:31', 'NmLpqJam', '4715119'), + (43474, 483, 1163, 'attending', '2021-12-27 22:33:45', '2025-12-17 19:47:31', 'NmLpqJam', '4724206'), + (43475, 483, 1164, 'attending', '2021-12-27 23:04:54', '2025-12-17 19:47:31', 'NmLpqJam', '4724208'), + (43476, 483, 1165, 'not_attending', '2022-01-04 02:25:11', '2025-12-17 19:47:31', 'NmLpqJam', '4724210'), + (43477, 483, 1173, 'attending', '2022-01-05 22:31:04', '2025-12-17 19:47:31', 'NmLpqJam', '4736495'), + (43478, 483, 1174, 'attending', '2022-01-14 04:26:17', '2025-12-17 19:47:31', 'NmLpqJam', '4736496'), + (43479, 483, 1175, 'attending', '2022-01-22 19:39:53', '2025-12-17 19:47:32', 'NmLpqJam', '4736497'), + (43480, 483, 1176, 'attending', '2022-02-05 18:13:40', '2025-12-17 19:47:32', 'NmLpqJam', '4736498'), + (43481, 483, 1177, 'attending', '2022-02-11 16:47:42', '2025-12-17 19:47:32', 'NmLpqJam', '4736499'), + (43482, 483, 1178, 'attending', '2022-01-29 19:05:20', '2025-12-17 19:47:32', 'NmLpqJam', '4736500'), + (43483, 483, 1179, 'attending', '2022-02-19 19:50:25', '2025-12-17 19:47:32', 'NmLpqJam', '4736501'), + (43484, 483, 1180, 'attending', '2022-02-23 12:58:50', '2025-12-17 19:47:33', 'NmLpqJam', '4736502'), + (43485, 483, 1181, 'attending', '2022-03-04 02:08:54', '2025-12-17 19:47:33', 'NmLpqJam', '4736503'), + (43486, 483, 1182, 'attending', '2022-03-12 22:23:22', '2025-12-17 19:47:33', 'NmLpqJam', '4736504'), + (43487, 483, 1183, 'attending', '2022-01-05 23:38:27', '2025-12-17 19:47:31', 'NmLpqJam', '4742171'), + (43488, 483, 1185, 'not_attending', '2022-01-14 04:25:55', '2025-12-17 19:47:31', 'NmLpqJam', '4746789'), + (43489, 483, 1188, 'attending', '2022-01-11 22:42:26', '2025-12-17 19:47:31', 'NmLpqJam', '4753929'), + (43490, 483, 1190, 'attending', '2022-01-11 22:52:12', '2025-12-17 19:47:31', 'NmLpqJam', '4757377'), + (43491, 483, 1201, 'attending', '2022-01-17 22:38:02', '2025-12-17 19:47:32', 'NmLpqJam', '4766841'), + (43492, 483, 1202, 'attending', '2022-01-21 13:00:43', '2025-12-17 19:47:32', 'NmLpqJam', '4769423'), + (43493, 483, 1211, 'attending', '2022-01-24 23:25:58', '2025-12-17 19:47:32', 'NmLpqJam', '4780754'), + (43494, 483, 1212, 'attending', '2022-01-24 23:26:16', '2025-12-17 19:47:32', 'NmLpqJam', '4780759'), + (43495, 483, 1213, 'not_attending', '2022-02-08 23:23:36', '2025-12-17 19:47:32', 'NmLpqJam', '4780760'), + (43496, 483, 1214, 'attending', '2022-01-24 23:31:43', '2025-12-17 19:47:32', 'NmLpqJam', '4780761'), + (43497, 483, 1215, 'attending', '2022-01-24 23:31:45', '2025-12-17 19:47:33', 'NmLpqJam', '4780763'), + (43498, 483, 1217, 'not_attending', '2022-01-30 18:52:26', '2025-12-17 19:47:32', 'NmLpqJam', '4781139'), + (43499, 483, 1228, 'attending', '2022-02-05 18:16:36', '2025-12-17 19:47:32', 'NmLpqJam', '5028238'), + (43500, 483, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmLpqJam', '5038850'), + (43501, 483, 1234, 'attending', '2022-02-11 00:34:24', '2025-12-17 19:47:32', 'NmLpqJam', '5042197'), + (43502, 483, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmLpqJam', '5045826'), + (43503, 483, 1243, 'attending', '2022-02-23 13:13:14', '2025-12-17 19:47:33', 'NmLpqJam', '5058336'), + (43504, 483, 1245, 'attending', '2022-02-22 00:07:04', '2025-12-17 19:47:33', 'NmLpqJam', '5061301'), + (43505, 483, 1246, 'attending', '2022-02-23 12:49:44', '2025-12-17 19:47:33', 'NmLpqJam', '5064727'), + (43506, 483, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLpqJam', '5132533'), + (43507, 483, 1261, 'attending', '2022-03-03 23:10:36', '2025-12-17 19:47:33', 'NmLpqJam', '5154274'), + (43508, 483, 1267, 'attending', '2022-03-09 21:33:41', '2025-12-17 19:47:25', 'NmLpqJam', '5169578'), + (43509, 483, 1270, 'maybe', '2022-03-20 15:23:54', '2025-12-17 19:47:25', 'NmLpqJam', '5181277'), + (43510, 483, 1272, 'attending', '2022-03-19 20:15:21', '2025-12-17 19:47:25', 'NmLpqJam', '5186582'), + (43511, 483, 1273, 'attending', '2022-03-26 20:15:43', '2025-12-17 19:47:25', 'NmLpqJam', '5186583'), + (43512, 483, 1274, 'attending', '2022-04-02 13:09:53', '2025-12-17 19:47:26', 'NmLpqJam', '5186585'), + (43513, 483, 1275, 'attending', '2022-04-02 13:09:50', '2025-12-17 19:47:26', 'NmLpqJam', '5186587'), + (43514, 483, 1281, 'not_attending', '2022-04-05 23:18:44', '2025-12-17 19:47:27', 'NmLpqJam', '5190437'), + (43515, 483, 1284, 'not_attending', '2022-04-16 17:43:18', '2025-12-17 19:47:27', 'NmLpqJam', '5195095'), + (43516, 483, 1285, 'attending', '2022-03-21 14:38:51', '2025-12-17 19:47:25', 'NmLpqJam', '5196763'), + (43517, 483, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmLpqJam', '5215989'), + (43518, 483, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLpqJam', '5223686'), + (43519, 483, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLpqJam', '5227432'), + (43520, 483, 1313, 'not_attending', '2022-04-08 03:23:46', '2025-12-17 19:47:27', 'NmLpqJam', '5231461'), + (43521, 483, 1330, 'attending', '2022-04-12 23:39:19', '2025-12-17 19:47:27', 'NmLpqJam', '5242155'), + (43522, 483, 1331, 'attending', '2022-04-12 23:42:58', '2025-12-17 19:47:27', 'NmLpqJam', '5242156'), + (43523, 483, 1344, 'attending', '2022-04-29 15:29:36', '2025-12-17 19:47:28', 'NmLpqJam', '5247465'), + (43524, 483, 1345, 'attending', '2022-04-21 18:02:41', '2025-12-17 19:47:27', 'NmLpqJam', '5247466'), + (43525, 483, 1346, 'attending', '2022-04-21 18:02:39', '2025-12-17 19:47:27', 'NmLpqJam', '5247467'), + (43526, 483, 1362, 'attending', '2022-04-29 15:29:38', '2025-12-17 19:47:28', 'NmLpqJam', '5260800'), + (43527, 483, 1372, 'not_attending', '2022-05-04 22:37:10', '2025-12-17 19:47:28', 'NmLpqJam', '5264352'), + (43528, 483, 1374, 'attending', '2022-05-07 18:16:42', '2025-12-17 19:47:28', 'NmLpqJam', '5269930'), + (43529, 483, 1378, 'attending', '2022-05-14 17:57:35', '2025-12-17 19:47:29', 'NmLpqJam', '5271448'), + (43530, 483, 1379, 'attending', '2022-05-17 00:00:19', '2025-12-17 19:47:29', 'NmLpqJam', '5271449'), + (43531, 483, 1382, 'attending', '2022-05-03 22:44:13', '2025-12-17 19:47:28', 'NmLpqJam', '5276350'), + (43532, 483, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmLpqJam', '5276469'), + (43533, 483, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmLpqJam', '5278159'), + (43534, 483, 1395, 'attending', '2022-05-07 18:16:50', '2025-12-17 19:47:28', 'NmLpqJam', '5281102'), + (43535, 483, 1396, 'attending', '2022-05-14 17:57:31', '2025-12-17 19:47:28', 'NmLpqJam', '5281103'), + (43536, 483, 1397, 'attending', '2022-05-17 00:00:23', '2025-12-17 19:47:29', 'NmLpqJam', '5281104'), + (43537, 483, 1407, 'attending', '2022-06-04 02:22:41', '2025-12-17 19:47:30', 'NmLpqJam', '5363695'), + (43538, 483, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLpqJam', '5365960'), + (43539, 483, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmLpqJam', '5368973'), + (43540, 483, 1419, 'attending', '2022-06-08 22:28:20', '2025-12-17 19:47:30', 'NmLpqJam', '5373081'), + (43541, 483, 1427, 'attending', '2022-05-25 21:06:01', '2025-12-17 19:47:30', 'NmLpqJam', '5376074'), + (43542, 483, 1428, 'attending', '2022-06-09 22:20:08', '2025-12-17 19:47:30', 'NmLpqJam', '5378247'), + (43543, 483, 1431, 'attending', '2022-06-06 01:01:31', '2025-12-17 19:47:30', 'NmLpqJam', '5389605'), + (43544, 483, 1436, 'attending', '2022-06-01 02:43:53', '2025-12-17 19:47:30', 'NmLpqJam', '5394292'), + (43545, 483, 1442, 'attending', '2022-06-14 00:38:16', '2025-12-17 19:47:17', 'NmLpqJam', '5397265'), + (43546, 483, 1443, 'attending', '2022-06-04 02:22:39', '2025-12-17 19:47:30', 'NmLpqJam', '5397613'), + (43547, 483, 1444, 'attending', '2022-06-06 01:01:28', '2025-12-17 19:47:30', 'NmLpqJam', '5397614'), + (43548, 483, 1445, 'attending', '2022-06-14 00:38:14', '2025-12-17 19:47:17', 'NmLpqJam', '5397615'), + (43549, 483, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmLpqJam', '5403967'), + (43550, 483, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLpqJam', '5404786'), + (43551, 483, 1460, 'attending', '2022-06-10 12:05:41', '2025-12-17 19:47:31', 'NmLpqJam', '5404817'), + (43552, 483, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmLpqJam', '5405203'), + (43553, 483, 1477, 'attending', '2022-06-15 00:49:10', '2025-12-17 19:47:17', 'NmLpqJam', '5408766'), + (43554, 483, 1478, 'attending', '2022-06-15 01:08:31', '2025-12-17 19:47:17', 'NmLpqJam', '5408794'), + (43555, 483, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLpqJam', '5411699'), + (43556, 483, 1482, 'attending', '2022-06-21 22:19:41', '2025-12-17 19:47:19', 'NmLpqJam', '5412550'), + (43557, 483, 1483, 'attending', '2022-06-21 22:21:36', '2025-12-17 19:47:17', 'NmLpqJam', '5414556'), + (43558, 483, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmLpqJam', '5415046'), + (43559, 483, 1493, 'attending', '2022-06-25 17:34:00', '2025-12-17 19:47:19', 'NmLpqJam', '5420218'), + (43560, 483, 1495, 'attending', '2022-06-26 13:54:05', '2025-12-17 19:47:19', 'NmLpqJam', '5422086'), + (43561, 483, 1496, 'attending', '2022-06-26 13:58:40', '2025-12-17 19:47:19', 'NmLpqJam', '5422404'), + (43562, 483, 1497, 'attending', '2022-06-26 14:13:26', '2025-12-17 19:47:19', 'NmLpqJam', '5422405'), + (43563, 483, 1498, 'attending', '2022-06-26 14:16:11', '2025-12-17 19:47:19', 'NmLpqJam', '5422406'), + (43564, 483, 1499, 'attending', '2022-06-26 14:21:05', '2025-12-17 19:47:19', 'NmLpqJam', '5422407'), + (43565, 483, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLpqJam', '5424565'), + (43566, 483, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLpqJam', '5426882'), + (43567, 483, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmLpqJam', '5427083'), + (43568, 483, 1508, 'maybe', '2022-07-13 21:35:41', '2025-12-17 19:47:19', 'NmLpqJam', '5433453'), + (43569, 483, 1511, 'attending', '2022-07-08 01:15:49', '2025-12-17 19:47:19', 'NmLpqJam', '5437733'), + (43570, 483, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLpqJam', '5441125'), + (43571, 483, 1514, 'attending', '2022-07-19 22:52:15', '2025-12-17 19:47:20', 'NmLpqJam', '5441126'), + (43572, 483, 1515, 'attending', '2022-08-05 01:58:39', '2025-12-17 19:47:21', 'NmLpqJam', '5441128'), + (43573, 483, 1516, 'attending', '2022-08-17 22:54:13', '2025-12-17 19:47:23', 'NmLpqJam', '5441129'), + (43574, 483, 1517, 'attending', '2022-08-25 20:24:54', '2025-12-17 19:47:23', 'NmLpqJam', '5441130'), + (43575, 483, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'NmLpqJam', '5441131'), + (43576, 483, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLpqJam', '5441132'), + (43577, 483, 1524, 'attending', '2022-07-11 15:38:02', '2025-12-17 19:47:19', 'NmLpqJam', '5443300'), + (43578, 483, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLpqJam', '5446643'), + (43579, 483, 1532, 'attending', '2022-07-19 22:52:19', '2025-12-17 19:47:20', 'NmLpqJam', '5448757'), + (43580, 483, 1533, 'attending', '2022-07-19 22:52:17', '2025-12-17 19:47:21', 'NmLpqJam', '5448758'), + (43581, 483, 1534, 'attending', '2022-08-05 01:58:42', '2025-12-17 19:47:21', 'NmLpqJam', '5448759'), + (43582, 483, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLpqJam', '5453325'), + (43583, 483, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLpqJam', '5454516'), + (43584, 483, 1544, 'attending', '2022-09-17 20:44:16', '2025-12-17 19:47:11', 'NmLpqJam', '5454517'), + (43585, 483, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLpqJam', '5454605'), + (43586, 483, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLpqJam', '5455037'), + (43587, 483, 1553, 'attending', '2022-07-19 23:01:45', '2025-12-17 19:47:20', 'NmLpqJam', '5455164'), + (43588, 483, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLpqJam', '5461278'), + (43589, 483, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLpqJam', '5469480'), + (43590, 483, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLpqJam', '5471073'), + (43591, 483, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'NmLpqJam', '5474663'), + (43592, 483, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLpqJam', '5482022'), + (43593, 483, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLpqJam', '5482793'), + (43594, 483, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLpqJam', '5488912'), + (43595, 483, 1582, 'attending', '2022-08-07 21:12:22', '2025-12-17 19:47:23', 'NmLpqJam', '5492001'), + (43596, 483, 1583, 'attending', '2022-08-07 21:12:14', '2025-12-17 19:47:22', 'NmLpqJam', '5492002'), + (43597, 483, 1584, 'attending', '2022-08-07 21:12:20', '2025-12-17 19:47:23', 'NmLpqJam', '5492004'), + (43598, 483, 1585, 'attending', '2022-08-07 21:15:41', '2025-12-17 19:47:22', 'NmLpqJam', '5492013'), + (43599, 483, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLpqJam', '5492192'), + (43600, 483, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLpqJam', '5493139'), + (43601, 483, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLpqJam', '5493200'), + (43602, 483, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLpqJam', '5502188'), + (43603, 483, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLpqJam', '5505059'), + (43604, 483, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'NmLpqJam', '5509055'), + (43605, 483, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLpqJam', '5512862'), + (43606, 483, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLpqJam', '5513985'), + (43607, 483, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'NmLpqJam', '5519981'), + (43608, 483, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLpqJam', '5522550'), + (43609, 483, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLpqJam', '5534683'), + (43610, 483, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLpqJam', '5537735'), + (43611, 483, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLpqJam', '5540859'), + (43612, 483, 1641, 'attending', '2022-08-31 21:36:53', '2025-12-17 19:47:24', 'NmLpqJam', '5544226'), + (43613, 483, 1642, 'attending', '2022-08-31 21:36:51', '2025-12-17 19:47:24', 'NmLpqJam', '5544227'), + (43614, 483, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLpqJam', '5546619'), + (43615, 483, 1649, 'attending', '2022-09-03 15:16:42', '2025-12-17 19:47:24', 'NmLpqJam', '5549346'), + (43616, 483, 1652, 'attending', '2022-09-10 18:35:04', '2025-12-17 19:47:24', 'NmLpqJam', '5552671'), + (43617, 483, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLpqJam', '5555245'), + (43618, 483, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLpqJam', '5557747'), + (43619, 483, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLpqJam', '5560255'), + (43620, 483, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLpqJam', '5562906'), + (43621, 483, 1667, 'attending', '2022-09-24 21:51:56', '2025-12-17 19:47:11', 'NmLpqJam', '5563221'), + (43622, 483, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLpqJam', '5600604'), + (43623, 483, 1682, 'attending', '2022-09-24 21:51:51', '2025-12-17 19:47:11', 'NmLpqJam', '5605317'), + (43624, 483, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLpqJam', '5605544'), + (43625, 483, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'NmLpqJam', '5606737'), + (43626, 483, 1711, 'attending', '2022-10-02 19:06:27', '2025-12-17 19:47:12', 'NmLpqJam', '5621883'), + (43627, 483, 1712, 'attending', '2022-10-02 19:06:31', '2025-12-17 19:47:12', 'NmLpqJam', '5622073'), + (43628, 483, 1713, 'attending', '2022-10-02 19:06:33', '2025-12-17 19:47:13', 'NmLpqJam', '5622108'), + (43629, 483, 1714, 'attending', '2022-10-02 23:03:14', '2025-12-17 19:47:14', 'NmLpqJam', '5622347'), + (43630, 483, 1716, 'attending', '2022-10-02 23:03:01', '2025-12-17 19:47:12', 'NmLpqJam', '5622429'), + (43631, 483, 1719, 'attending', '2022-10-05 22:07:53', '2025-12-17 19:47:12', 'NmLpqJam', '5630958'), + (43632, 483, 1720, 'attending', '2022-10-13 22:21:02', '2025-12-17 19:47:12', 'NmLpqJam', '5630959'), + (43633, 483, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLpqJam', '5630960'), + (43634, 483, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLpqJam', '5630961'), + (43635, 483, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLpqJam', '5630962'), + (43636, 483, 1724, 'maybe', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLpqJam', '5630966'), + (43637, 483, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLpqJam', '5630967'), + (43638, 483, 1726, 'not_attending', '2022-11-14 21:35:03', '2025-12-17 19:47:16', 'NmLpqJam', '5630968'), + (43639, 483, 1727, 'attending', '2022-12-03 21:13:10', '2025-12-17 19:47:16', 'NmLpqJam', '5630969'), + (43640, 483, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLpqJam', '5635406'), + (43641, 483, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLpqJam', '5638765'), + (43642, 483, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLpqJam', '5640097'), + (43643, 483, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLpqJam', '5640843'), + (43644, 483, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLpqJam', '5641521'), + (43645, 483, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLpqJam', '5642818'), + (43646, 483, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLpqJam', '5652395'), + (43647, 483, 1753, 'attending', '2022-10-18 23:08:03', '2025-12-17 19:47:13', 'NmLpqJam', '5656228'), + (43648, 483, 1759, 'attending', '2022-10-22 16:36:59', '2025-12-17 19:47:13', 'NmLpqJam', '5669097'), + (43649, 483, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLpqJam', '5670445'), + (43650, 483, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLpqJam', '5671637'), + (43651, 483, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLpqJam', '5672329'), + (43652, 483, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLpqJam', '5674057'), + (43653, 483, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLpqJam', '5674060'), + (43654, 483, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLpqJam', '5677461'), + (43655, 483, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLpqJam', '5698046'), + (43656, 483, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLpqJam', '5699760'), + (43657, 483, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLpqJam', '5741601'), + (43658, 483, 1796, 'attending', '2022-11-17 22:07:09', '2025-12-17 19:47:16', 'NmLpqJam', '5756755'), + (43659, 483, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLpqJam', '5763458'), + (43660, 483, 1800, 'attending', '2022-11-19 23:59:07', '2025-12-17 19:47:16', 'NmLpqJam', '5764667'), + (43661, 483, 1801, 'attending', '2022-12-03 21:13:12', '2025-12-17 19:47:16', 'NmLpqJam', '5764668'), + (43662, 483, 1805, 'attending', '2023-02-03 19:17:14', '2025-12-17 19:47:06', 'NmLpqJam', '5764675'), + (43663, 483, 1806, 'attending', '2023-01-20 14:16:49', '2025-12-17 19:47:05', 'NmLpqJam', '5764676'), + (43664, 483, 1807, 'attending', '2023-01-12 22:03:49', '2025-12-17 19:47:05', 'NmLpqJam', '5764677'), + (43665, 483, 1808, 'attending', '2023-03-02 14:20:48', '2025-12-17 19:47:08', 'NmLpqJam', '5764678'), + (43666, 483, 1809, 'attending', '2023-04-13 21:58:59', '2025-12-17 19:46:59', 'NmLpqJam', '5764679'), + (43667, 483, 1811, 'attending', '2023-05-06 14:46:06', '2025-12-17 19:47:02', 'NmLpqJam', '5764681'), + (43668, 483, 1812, 'attending', '2023-03-09 23:40:35', '2025-12-17 19:47:09', 'NmLpqJam', '5764682'), + (43669, 483, 1814, 'attending', '2023-02-24 19:37:44', '2025-12-17 19:47:08', 'NmLpqJam', '5764684'), + (43670, 483, 1816, 'attending', '2023-05-20 02:25:00', '2025-12-17 19:47:03', 'NmLpqJam', '5764686'), + (43671, 483, 1818, 'attending', '2023-02-09 23:49:42', '2025-12-17 19:47:07', 'NmLpqJam', '5764688'), + (43672, 483, 1819, 'attending', '2023-03-31 22:56:18', '2025-12-17 19:46:58', 'NmLpqJam', '5764689'), + (43673, 483, 1820, 'attending', '2023-04-05 21:17:04', '2025-12-17 19:46:58', 'NmLpqJam', '5764690'), + (43674, 483, 1821, 'attending', '2023-03-18 13:25:39', '2025-12-17 19:46:56', 'NmLpqJam', '5764691'), + (43675, 483, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLpqJam', '5774172'), + (43676, 483, 1831, 'attending', '2022-12-02 03:15:06', '2025-12-17 19:47:16', 'NmLpqJam', '5813239'), + (43677, 483, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'NmLpqJam', '5818247'), + (43678, 483, 1834, 'attending', '2022-12-10 21:02:38', '2025-12-17 19:47:17', 'NmLpqJam', '5819470'), + (43679, 483, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLpqJam', '5819471'), + (43680, 483, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'NmLpqJam', '5827739'), + (43681, 483, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLpqJam', '5844306'), + (43682, 483, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLpqJam', '5850159'), + (43683, 483, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLpqJam', '5858999'), + (43684, 483, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLpqJam', '5871984'), + (43685, 483, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLpqJam', '5876354'), + (43686, 483, 1864, 'attending', '2023-01-20 14:16:45', '2025-12-17 19:47:05', 'NmLpqJam', '5879675'), + (43687, 483, 1865, 'attending', '2023-01-22 15:58:02', '2025-12-17 19:47:06', 'NmLpqJam', '5879676'), + (43688, 483, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLpqJam', '5880939'), + (43689, 483, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLpqJam', '5880940'), + (43690, 483, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLpqJam', '5880942'), + (43691, 483, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'NmLpqJam', '5880943'), + (43692, 483, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLpqJam', '5887890'), + (43693, 483, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLpqJam', '5888598'), + (43694, 483, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLpqJam', '5893260'), + (43695, 483, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLpqJam', '5899826'), + (43696, 483, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLpqJam', '5900199'), + (43697, 483, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLpqJam', '5900200'), + (43698, 483, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'NmLpqJam', '5900202'), + (43699, 483, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLpqJam', '5900203'), + (43700, 483, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLpqJam', '5901108'), + (43701, 483, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLpqJam', '5901126'), + (43702, 483, 1897, 'attending', '2023-02-09 23:49:40', '2025-12-17 19:47:07', 'NmLpqJam', '5901128'), + (43703, 483, 1902, 'attending', '2023-02-04 18:43:34', '2025-12-17 19:47:06', 'NmLpqJam', '5902254'), + (43704, 483, 1903, 'attending', '2023-02-02 02:02:19', '2025-12-17 19:47:06', 'NmLpqJam', '5902612'), + (43705, 483, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLpqJam', '5909655'), + (43706, 483, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLpqJam', '5910522'), + (43707, 483, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLpqJam', '5910526'), + (43708, 483, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLpqJam', '5910528'), + (43709, 483, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLpqJam', '5916219'), + (43710, 483, 1925, 'attending', '2023-02-17 21:03:04', '2025-12-17 19:47:08', 'NmLpqJam', '5932619'), + (43711, 483, 1926, 'attending', '2023-02-17 21:05:11', '2025-12-17 19:47:08', 'NmLpqJam', '5932620'), + (43712, 483, 1927, 'attending', '2023-02-18 00:54:04', '2025-12-17 19:47:10', 'NmLpqJam', '5932621'), + (43713, 483, 1928, 'attending', '2023-02-18 00:53:51', '2025-12-17 19:47:07', 'NmLpqJam', '5932627'), + (43714, 483, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'NmLpqJam', '5936234'), + (43715, 483, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLpqJam', '5958351'), + (43716, 483, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'NmLpqJam', '5959751'), + (43717, 483, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'NmLpqJam', '5959755'), + (43718, 483, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'NmLpqJam', '5960055'), + (43719, 483, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLpqJam', '5961684'), + (43720, 483, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'NmLpqJam', '5962132'), + (43721, 483, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'NmLpqJam', '5962133'), + (43722, 483, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLpqJam', '5962134'), + (43723, 483, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLpqJam', '5962317'), + (43724, 483, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLpqJam', '5962318'), + (43725, 483, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'NmLpqJam', '5965933'), + (43726, 483, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLpqJam', '5967014'), + (43727, 483, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'NmLpqJam', '5972763'), + (43728, 483, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLpqJam', '5972815'), + (43729, 483, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'NmLpqJam', '5974016'), + (43730, 483, 1964, 'attending', '2023-03-09 23:36:16', '2025-12-17 19:47:09', 'NmLpqJam', '5977129'), + (43731, 483, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLpqJam', '5981515'), + (43732, 483, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'NmLpqJam', '5993516'), + (43733, 483, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'NmLpqJam', '5998939'), + (43734, 483, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLpqJam', '6028191'), + (43735, 483, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'NmLpqJam', '6040066'), + (43736, 483, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'NmLpqJam', '6042717'), + (43737, 483, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLpqJam', '6044838'), + (43738, 483, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLpqJam', '6044839'), + (43739, 483, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLpqJam', '6045684'), + (43740, 483, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLpqJam', '6050104'), + (43741, 483, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLpqJam', '6053195'), + (43742, 483, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'NmLpqJam', '6053198'), + (43743, 483, 2008, 'maybe', '2023-04-07 22:00:31', '2025-12-17 19:46:58', 'NmLpqJam', '6055808'), + (43744, 483, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'NmLpqJam', '6056085'), + (43745, 483, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLpqJam', '6056916'), + (43746, 483, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLpqJam', '6059290'), + (43747, 483, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLpqJam', '6060328'), + (43748, 483, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLpqJam', '6061037'), + (43749, 483, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLpqJam', '6061039'), + (43750, 483, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'NmLpqJam', '6061099'), + (43751, 483, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLpqJam', '6067245'), + (43752, 483, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLpqJam', '6068094'), + (43753, 483, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'NmLpqJam', '6068252'), + (43754, 483, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'NmLpqJam', '6068253'), + (43755, 483, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'NmLpqJam', '6068254'), + (43756, 483, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'NmLpqJam', '6068280'), + (43757, 483, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLpqJam', '6069093'), + (43758, 483, 2035, 'attending', '2023-04-20 16:50:57', '2025-12-17 19:47:02', 'NmLpqJam', '6070142'), + (43759, 483, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'NmLpqJam', '6072528'), + (43760, 483, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'NmLpqJam', '6079840'), + (43761, 483, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLpqJam', '6083398'), + (43762, 483, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'NmLpqJam', '6093504'), + (43763, 483, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'NmLpqJam', '6097414'), + (43764, 483, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLpqJam', '6097442'), + (43765, 483, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLpqJam', '6097684'), + (43766, 483, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLpqJam', '6098762'), + (43767, 483, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLpqJam', '6101362'), + (43768, 483, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'NmLpqJam', '6103752'), + (43769, 483, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLpqJam', '6107314'), + (43770, 483, 2253, 'attending', '2023-09-30 15:10:15', '2025-12-17 19:46:45', 'NmLpqJam', '6401811'), + (43771, 483, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'NmLpqJam', '6440863'), + (43772, 483, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLpqJam', '6445440'), + (43773, 483, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLpqJam', '6453951'), + (43774, 483, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'NmLpqJam', '6461696'), + (43775, 483, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'NmLpqJam', '6462129'), + (43776, 483, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLpqJam', '6463218'), + (43777, 483, 2296, 'attending', '2023-10-13 16:06:01', '2025-12-17 19:46:47', 'NmLpqJam', '6468393'), + (43778, 483, 2299, 'not_attending', '2023-10-16 22:00:18', '2025-12-17 19:46:46', 'NmLpqJam', '6472181'), + (43779, 483, 2301, 'attending', '2023-10-16 13:29:36', '2025-12-17 19:46:46', 'NmLpqJam', '6474276'), + (43780, 483, 2303, 'not_attending', '2023-10-28 13:25:40', '2025-12-17 19:46:47', 'NmLpqJam', '6482691'), + (43781, 483, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'NmLpqJam', '6482693'), + (43782, 483, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'NmLpqJam', '6484200'), + (43783, 483, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'NmLpqJam', '6484680'), + (43784, 483, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'NmLpqJam', '6507741'), + (43785, 483, 2322, 'attending', '2023-11-17 20:44:45', '2025-12-17 19:46:48', 'NmLpqJam', '6514659'), + (43786, 483, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'NmLpqJam', '6514660'), + (43787, 483, 2324, 'attending', '2023-12-09 01:01:25', '2025-12-17 19:46:49', 'NmLpqJam', '6514662'), + (43788, 483, 2325, 'attending', '2023-12-14 14:42:02', '2025-12-17 19:46:36', 'NmLpqJam', '6514663'), + (43789, 483, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'NmLpqJam', '6519103'), + (43790, 483, 2337, 'attending', '2023-11-08 01:06:40', '2025-12-17 19:46:48', 'NmLpqJam', '6535681'), + (43791, 483, 2343, 'not_attending', '2023-11-15 22:54:47', '2025-12-17 19:46:48', 'NmLpqJam', '6574728'), + (43792, 483, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLpqJam', '6584747'), + (43793, 483, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLpqJam', '6587097'), + (43794, 483, 2362, 'attending', '2023-12-04 00:03:06', '2025-12-17 19:46:49', 'NmLpqJam', '6605708'), + (43795, 483, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLpqJam', '6609022'), + (43796, 483, 2373, 'attending', '2024-01-14 00:15:15', '2025-12-17 19:46:38', 'NmLpqJam', '6632678'), + (43797, 483, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'NmLpqJam', '6632757'), + (43798, 483, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLpqJam', '6644187'), + (43799, 483, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLpqJam', '6648951'), + (43800, 483, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'NmLpqJam', '6648952'), + (43801, 483, 2388, 'attending', '2024-01-07 00:16:08', '2025-12-17 19:46:37', 'NmLpqJam', '6649244'), + (43802, 483, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'NmLpqJam', '6655401'), + (43803, 483, 2399, 'attending', '2024-01-11 03:00:33', '2025-12-17 19:46:38', 'NmLpqJam', '6657583'), + (43804, 483, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'NmLpqJam', '6661585'), + (43805, 483, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'NmLpqJam', '6661588'), + (43806, 483, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'NmLpqJam', '6661589'), + (43807, 483, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLpqJam', '6699906'), + (43808, 483, 2408, 'attending', '2024-01-23 23:21:20', '2025-12-17 19:46:40', 'NmLpqJam', '6699907'), + (43809, 483, 2409, 'attending', '2024-02-02 15:20:41', '2025-12-17 19:46:41', 'NmLpqJam', '6699909'), + (43810, 483, 2410, 'attending', '2024-02-09 00:02:06', '2025-12-17 19:46:41', 'NmLpqJam', '6699911'), + (43811, 483, 2411, 'not_attending', '2024-02-09 00:02:49', '2025-12-17 19:46:42', 'NmLpqJam', '6699913'), + (43812, 483, 2414, 'attending', '2024-01-17 22:40:03', '2025-12-17 19:46:40', 'NmLpqJam', '6701000'), + (43813, 483, 2415, 'attending', '2024-01-17 22:40:10', '2025-12-17 19:46:40', 'NmLpqJam', '6701001'), + (43814, 483, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'NmLpqJam', '6701109'), + (43815, 483, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLpqJam', '6705219'), + (43816, 483, 2426, 'attending', '2024-01-19 20:03:59', '2025-12-17 19:46:40', 'NmLpqJam', '6705569'), + (43817, 483, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLpqJam', '6710153'), + (43818, 483, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLpqJam', '6711552'), + (43819, 483, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'NmLpqJam', '6711553'), + (43820, 483, 2431, 'attending', '2024-01-23 23:22:14', '2025-12-17 19:46:41', 'NmLpqJam', '6712394'), + (43821, 483, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'NmLpqJam', '6722688'), + (43822, 483, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'NmLpqJam', '6730620'), + (43823, 483, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'NmLpqJam', '6730642'), + (43824, 483, 2443, 'attending', '2024-02-03 18:31:38', '2025-12-17 19:46:41', 'NmLpqJam', '6733775'), + (43825, 483, 2450, 'not_attending', '2024-02-11 14:27:31', '2025-12-17 19:46:41', 'NmLpqJam', '6738807'), + (43826, 483, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'NmLpqJam', '6740364'), + (43827, 483, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'NmLpqJam', '6743829'), + (43828, 483, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'NmLpqJam', '7030380'), + (43829, 483, 2471, 'attending', '2024-02-21 02:12:11', '2025-12-17 19:46:42', 'NmLpqJam', '7032425'), + (43830, 483, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'NmLpqJam', '7033677'), + (43831, 483, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'NmLpqJam', '7035415'), + (43832, 483, 2477, 'attending', '2024-02-21 02:06:12', '2025-12-17 19:46:42', 'NmLpqJam', '7035692'), + (43833, 483, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'NmLpqJam', '7044715'), + (43834, 483, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'NmLpqJam', '7050318'), + (43835, 483, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'NmLpqJam', '7050319'), + (43836, 483, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'NmLpqJam', '7050322'), + (43837, 483, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'NmLpqJam', '7057804'), + (43838, 483, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'NmLpqJam', '7072824'), + (43839, 483, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'NmLpqJam', '7074348'), + (43840, 483, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'NmLpqJam', '7074364'), + (43841, 483, 2537, 'attending', '2024-03-23 00:03:52', '2025-12-17 19:46:33', 'NmLpqJam', '7085484'), + (43842, 483, 2539, 'not_attending', '2024-04-06 21:38:18', '2025-12-17 19:46:33', 'NmLpqJam', '7085486'), + (43843, 483, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'NmLpqJam', '7089267'), + (43844, 483, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'NmLpqJam', '7098747'), + (43845, 483, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'NmLpqJam', '7113468'), + (43846, 483, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'NmLpqJam', '7114856'), + (43847, 483, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'NmLpqJam', '7114951'), + (43848, 483, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'NmLpqJam', '7114955'), + (43849, 483, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'NmLpqJam', '7114956'), + (43850, 483, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'NmLpqJam', '7114957'), + (43851, 483, 2563, 'attending', '2024-04-11 19:35:55', '2025-12-17 19:46:33', 'NmLpqJam', '7134734'), + (43852, 483, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'NmLpqJam', '7153615'), + (43853, 483, 2569, 'attending', '2024-04-07 17:43:23', '2025-12-17 19:46:33', 'NmLpqJam', '7154056'), + (43854, 483, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'NmLpqJam', '7159484'), + (43855, 483, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'NmLpqJam', '7178446'), + (43856, 483, 2595, 'attending', '2024-04-19 22:59:01', '2025-12-17 19:46:34', 'NmLpqJam', '7182252'), + (43857, 483, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'NmLpqJam', '7220467'), + (43858, 483, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'NmLpqJam', '7240354'), + (43859, 483, 2611, 'attending', '2024-05-02 16:32:52', '2025-12-17 19:46:35', 'NmLpqJam', '7247642'), + (43860, 483, 2612, 'attending', '2024-05-02 16:32:55', '2025-12-17 19:46:35', 'NmLpqJam', '7247643'), + (43861, 483, 2613, 'attending', '2024-05-02 16:32:44', '2025-12-17 19:46:35', 'NmLpqJam', '7247644'), + (43862, 483, 2614, 'attending', '2024-05-02 16:32:15', '2025-12-17 19:46:35', 'NmLpqJam', '7247645'), + (43863, 483, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'NmLpqJam', '7251633'), + (43864, 483, 2626, 'attending', '2024-05-16 01:25:28', '2025-12-17 19:46:35', 'NmLpqJam', '7264723'), + (43865, 483, 2627, 'attending', '2024-05-22 21:47:03', '2025-12-17 19:46:35', 'NmLpqJam', '7264724'), + (43866, 483, 2628, 'attending', '2024-06-01 22:02:09', '2025-12-17 19:46:36', 'NmLpqJam', '7264725'), + (43867, 483, 2629, 'attending', '2024-06-08 13:20:10', '2025-12-17 19:46:28', 'NmLpqJam', '7264726'), + (43868, 483, 2647, 'attending', '2024-06-06 20:03:58', '2025-12-17 19:46:28', 'NmLpqJam', '7282057'), + (43869, 483, 2652, 'attending', '2024-05-24 20:50:53', '2025-12-17 19:46:36', 'NmLpqJam', '7288339'), + (43870, 483, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'NmLpqJam', '7302674'), + (43871, 483, 2673, 'attending', '2024-06-09 22:44:12', '2025-12-17 19:46:28', 'NmLpqJam', '7319473'), + (43872, 483, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'NmLpqJam', '7324073'), + (43873, 483, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'NmLpqJam', '7324074'), + (43874, 483, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'NmLpqJam', '7324075'), + (43875, 483, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'NmLpqJam', '7324078'), + (43876, 483, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'NmLpqJam', '7324082'), + (43877, 483, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'NmLpqJam', '7331457'), + (43878, 483, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'NmLpqJam', '7363643'), + (43879, 483, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'NmLpqJam', '7368606'), + (43880, 483, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'NmLpqJam', '7397462'), + (43881, 483, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'NmLpqJam', '7424275'), + (43882, 483, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'NmLpqJam', '7432751'), + (43883, 483, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'NmLpqJam', '7432752'), + (43884, 483, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'NmLpqJam', '7432753'), + (43885, 483, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'NmLpqJam', '7432754'), + (43886, 483, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'NmLpqJam', '7432755'), + (43887, 483, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'NmLpqJam', '7432756'), + (43888, 483, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'NmLpqJam', '7432758'), + (43889, 483, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'NmLpqJam', '7432759'), + (43890, 483, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'NmLpqJam', '7433834'), + (43891, 483, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'NmLpqJam', '7470197'), + (43892, 484, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'ZdNBGWwd', '3539922'), + (43893, 484, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'ZdNBGWwd', '3539923'), + (43894, 484, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNBGWwd', '6045684'), + (43895, 485, 10, 'attending', '2020-03-28 22:33:15', '2025-12-17 19:47:56', 'ZdNXQDGA', '2958053'), + (43896, 485, 30, 'not_attending', '2020-04-06 15:55:53', '2025-12-17 19:47:57', 'ZdNXQDGA', '2961895'), + (43897, 485, 36, 'not_attending', '2020-04-04 20:46:04', '2025-12-17 19:47:57', 'ZdNXQDGA', '2969208'), + (43898, 485, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'ZdNXQDGA', '2971546'), + (43899, 485, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'ZdNXQDGA', '2974534'), + (43900, 485, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'ZdNXQDGA', '2974955'), + (43901, 485, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'ZdNXQDGA', '2975384'), + (43902, 485, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'ZdNXQDGA', '2975385'), + (43903, 485, 57, 'attending', '2020-04-27 22:40:24', '2025-12-17 19:47:57', 'ZdNXQDGA', '2976575'), + (43904, 485, 66, 'maybe', '2020-06-09 20:21:10', '2025-12-17 19:47:58', 'ZdNXQDGA', '2977135'), + (43905, 485, 67, 'maybe', '2020-06-16 11:17:21', '2025-12-17 19:47:58', 'ZdNXQDGA', '2977136'), + (43906, 485, 69, 'attending', '2020-07-02 16:59:32', '2025-12-17 19:47:55', 'ZdNXQDGA', '2977138'), + (43907, 485, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'ZdNXQDGA', '2977343'), + (43908, 485, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'ZdNXQDGA', '2977812'), + (43909, 485, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'ZdNXQDGA', '2977931'), + (43910, 485, 74, 'attending', '2020-04-18 14:55:10', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978244'), + (43911, 485, 75, 'maybe', '2020-04-25 15:40:41', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978245'), + (43912, 485, 76, 'attending', '2020-05-02 22:00:54', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978246'), + (43913, 485, 77, 'attending', '2020-05-07 16:14:29', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978247'), + (43914, 485, 78, 'not_attending', '2020-05-23 03:09:15', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978249'), + (43915, 485, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978250'), + (43916, 485, 80, 'attending', '2020-06-06 13:28:36', '2025-12-17 19:47:58', 'ZdNXQDGA', '2978251'), + (43917, 485, 81, 'attending', '2020-06-13 12:19:41', '2025-12-17 19:47:58', 'ZdNXQDGA', '2978252'), + (43918, 485, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978433'), + (43919, 485, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'ZdNXQDGA', '2978438'), + (43920, 485, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'ZdNXQDGA', '2980871'), + (43921, 485, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'ZdNXQDGA', '2981388'), + (43922, 485, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'ZdNXQDGA', '2986743'), + (43923, 485, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', 'ZdNXQDGA', '2991471'), + (43924, 485, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'ZdNXQDGA', '2993501'), + (43925, 485, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'ZdNXQDGA', '2994480'), + (43926, 485, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', 'ZdNXQDGA', '3001217'), + (43927, 485, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'ZdNXQDGA', '3023063'), + (43928, 485, 133, 'attending', '2020-06-24 23:13:47', '2025-12-17 19:47:58', 'ZdNXQDGA', '3034321'), + (43929, 485, 136, 'not_attending', '2020-05-26 21:18:05', '2025-12-17 19:47:57', 'ZdNXQDGA', '3035881'), + (43930, 485, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'ZdNXQDGA', '3049983'), + (43931, 485, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'ZdNXQDGA', '3058959'), + (43932, 485, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'ZdNXQDGA', '3067093'), + (43933, 485, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'ZdNXQDGA', '3075228'), + (43934, 485, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'ZdNXQDGA', '3075456'), + (43935, 485, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'ZdNXQDGA', '3083791'), + (43936, 485, 187, 'attending', '2020-06-28 18:33:54', '2025-12-17 19:47:55', 'ZdNXQDGA', '3085151'), + (43937, 485, 191, 'attending', '2020-07-08 16:25:35', '2025-12-17 19:47:55', 'ZdNXQDGA', '3087259'), + (43938, 485, 192, 'attending', '2020-07-17 22:29:11', '2025-12-17 19:47:55', 'ZdNXQDGA', '3087260'), + (43939, 485, 193, 'attending', '2020-07-19 19:05:40', '2025-12-17 19:47:55', 'ZdNXQDGA', '3087261'), + (43940, 485, 194, 'not_attending', '2020-07-31 12:19:21', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087262'), + (43941, 485, 195, 'attending', '2020-08-06 13:24:00', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087264'), + (43942, 485, 196, 'not_attending', '2020-08-10 11:20:52', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087265'), + (43943, 485, 197, 'maybe', '2020-08-19 19:17:17', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087266'), + (43944, 485, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087267'), + (43945, 485, 199, 'attending', '2020-09-05 12:18:29', '2025-12-17 19:47:56', 'ZdNXQDGA', '3087268'), + (43946, 485, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'ZdNXQDGA', '3088653'), + (43947, 485, 202, 'attending', '2020-07-06 22:35:25', '2025-12-17 19:47:55', 'ZdNXQDGA', '3090353'), + (43948, 485, 206, 'attending', '2020-07-24 22:19:14', '2025-12-17 19:47:55', 'ZdNXQDGA', '3104806'), + (43949, 485, 208, 'maybe', '2020-08-07 11:48:00', '2025-12-17 19:47:56', 'ZdNXQDGA', '3104808'), + (43950, 485, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'ZdNXQDGA', '3106813'), + (43951, 485, 210, 'attending', '2020-07-03 18:33:39', '2025-12-17 19:47:55', 'ZdNXQDGA', '3108972'), + (43952, 485, 214, 'not_attending', '2020-07-08 20:41:31', '2025-12-17 19:47:55', 'ZdNXQDGA', '3124139'), + (43953, 485, 223, 'attending', '2020-09-12 21:49:01', '2025-12-17 19:47:56', 'ZdNXQDGA', '3129980'), + (43954, 485, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'ZdNXQDGA', '3132817'), + (43955, 485, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'ZdNXQDGA', '3132820'), + (43956, 485, 233, 'maybe', '2020-07-20 19:56:40', '2025-12-17 19:47:55', 'ZdNXQDGA', '3139773'), + (43957, 485, 253, 'not_attending', '2021-04-06 17:15:01', '2025-12-17 19:47:44', 'ZdNXQDGA', '3149484'), + (43958, 485, 264, 'attending', '2020-08-05 14:21:31', '2025-12-17 19:47:56', 'ZdNXQDGA', '3150735'), + (43959, 485, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'ZdNXQDGA', '3155321'), + (43960, 485, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'ZdNXQDGA', '3162006'), + (43961, 485, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'ZdNXQDGA', '3163442'), + (43962, 485, 281, 'maybe', '2020-08-08 17:30:52', '2025-12-17 19:47:56', 'ZdNXQDGA', '3166945'), + (43963, 485, 292, 'maybe', '2020-08-10 12:03:54', '2025-12-17 19:47:56', 'ZdNXQDGA', '3170480'), + (43964, 485, 293, 'maybe', '2020-08-10 11:22:51', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172832'), + (43965, 485, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172833'), + (43966, 485, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172834'), + (43967, 485, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'ZdNXQDGA', '3172876'), + (43968, 485, 297, 'not_attending', '2020-08-11 12:49:45', '2025-12-17 19:47:56', 'ZdNXQDGA', '3173937'), + (43969, 485, 311, 'maybe', '2020-09-14 20:32:18', '2025-12-17 19:47:56', 'ZdNXQDGA', '3186057'), + (43970, 485, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'ZdNXQDGA', '3191735'), + (43971, 485, 322, 'maybe', '2020-09-16 20:25:23', '2025-12-17 19:47:56', 'ZdNXQDGA', '3197080'), + (43972, 485, 333, 'maybe', '2020-09-25 22:18:19', '2025-12-17 19:47:52', 'ZdNXQDGA', '3199782'), + (43973, 485, 334, 'maybe', '2020-09-25 22:18:23', '2025-12-17 19:47:52', 'ZdNXQDGA', '3199784'), + (43974, 485, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'ZdNXQDGA', '3200209'), + (43975, 485, 344, 'attending', '2020-11-01 03:38:24', '2025-12-17 19:47:53', 'ZdNXQDGA', '3206906'), + (43976, 485, 346, 'not_attending', '2020-09-15 22:32:44', '2025-12-17 19:47:56', 'ZdNXQDGA', '3207515'), + (43977, 485, 349, 'attending', '2020-09-16 20:51:39', '2025-12-17 19:47:56', 'ZdNXQDGA', '3209194'), + (43978, 485, 352, 'not_attending', '2020-09-14 19:20:30', '2025-12-17 19:47:56', 'ZdNXQDGA', '3210514'), + (43979, 485, 354, 'attending', '2020-09-16 20:55:48', '2025-12-17 19:47:56', 'ZdNXQDGA', '3212570'), + (43980, 485, 355, 'not_attending', '2020-09-16 23:37:29', '2025-12-17 19:47:56', 'ZdNXQDGA', '3212571'), + (43981, 485, 360, 'maybe', '2020-09-15 22:33:28', '2025-12-17 19:47:56', 'ZdNXQDGA', '3212671'), + (43982, 485, 362, 'maybe', '2020-09-25 22:18:30', '2025-12-17 19:47:52', 'ZdNXQDGA', '3214207'), + (43983, 485, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'ZdNXQDGA', '3217037'), + (43984, 485, 364, 'not_attending', '2020-09-21 21:47:43', '2025-12-17 19:47:56', 'ZdNXQDGA', '3217106'), + (43985, 485, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'ZdNXQDGA', '3218510'), + (43986, 485, 368, 'maybe', '2020-09-25 22:17:54', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221403'), + (43987, 485, 369, 'maybe', '2020-10-04 22:47:56', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221404'), + (43988, 485, 370, 'maybe', '2020-10-04 22:48:04', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221405'), + (43989, 485, 371, 'maybe', '2020-10-04 22:48:13', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221406'), + (43990, 485, 372, 'maybe', '2020-10-04 22:48:17', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221407'), + (43991, 485, 373, 'maybe', '2020-10-14 02:01:04', '2025-12-17 19:47:52', 'ZdNXQDGA', '3221413'), + (43992, 485, 374, 'maybe', '2020-10-04 22:48:33', '2025-12-17 19:47:53', 'ZdNXQDGA', '3221415'), + (43993, 485, 376, 'maybe', '2020-10-04 22:48:09', '2025-12-17 19:47:52', 'ZdNXQDGA', '3222827'), + (43994, 485, 377, 'maybe', '2020-10-04 22:48:37', '2025-12-17 19:47:53', 'ZdNXQDGA', '3222828'), + (43995, 485, 384, 'maybe', '2020-09-29 21:18:20', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228696'), + (43996, 485, 385, 'attending', '2020-10-03 22:40:19', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228698'), + (43997, 485, 386, 'maybe', '2020-10-04 22:47:18', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228699'), + (43998, 485, 387, 'attending', '2020-10-17 13:23:33', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228700'), + (43999, 485, 388, 'maybe', '2020-10-04 22:48:30', '2025-12-17 19:47:52', 'ZdNXQDGA', '3228701'), + (44000, 485, 389, 'attending', '2020-10-01 00:52:14', '2025-12-17 19:47:52', 'ZdNXQDGA', '3231284'), + (44001, 485, 390, 'attending', '2020-10-04 22:20:16', '2025-12-17 19:47:52', 'ZdNXQDGA', '3231510'), + (44002, 485, 398, 'not_attending', '2021-01-21 15:33:35', '2025-12-17 19:47:49', 'ZdNXQDGA', '3236453'), + (44003, 485, 409, 'not_attending', '2020-12-08 18:31:24', '2025-12-17 19:47:54', 'ZdNXQDGA', '3236467'), + (44004, 485, 412, 'maybe', '2020-10-06 23:36:30', '2025-12-17 19:47:52', 'ZdNXQDGA', '3236636'), + (44005, 485, 413, 'maybe', '2020-10-14 02:00:57', '2025-12-17 19:47:52', 'ZdNXQDGA', '3236670'), + (44006, 485, 414, 'attending', '2020-10-18 22:04:35', '2025-12-17 19:47:52', 'ZdNXQDGA', '3237277'), + (44007, 485, 424, 'attending', '2020-10-19 22:40:19', '2025-12-17 19:47:52', 'ZdNXQDGA', '3245751'), + (44008, 485, 426, 'maybe', '2020-10-14 16:06:46', '2025-12-17 19:47:52', 'ZdNXQDGA', '3250232'), + (44009, 485, 432, 'not_attending', '2020-11-06 02:56:48', '2025-12-17 19:47:53', 'ZdNXQDGA', '3254416'), + (44010, 485, 433, 'not_attending', '2020-11-06 02:56:16', '2025-12-17 19:47:53', 'ZdNXQDGA', '3254417'), + (44011, 485, 434, 'not_attending', '2020-11-06 02:56:24', '2025-12-17 19:47:53', 'ZdNXQDGA', '3254418'), + (44012, 485, 436, 'maybe', '2020-10-21 16:09:09', '2025-12-17 19:47:52', 'ZdNXQDGA', '3256119'), + (44013, 485, 438, 'attending', '2020-10-31 22:03:03', '2025-12-17 19:47:53', 'ZdNXQDGA', '3256163'), + (44014, 485, 440, 'maybe', '2020-11-06 02:56:11', '2025-12-17 19:47:53', 'ZdNXQDGA', '3256168'), + (44015, 485, 441, 'maybe', '2020-11-06 02:56:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3256169'), + (44016, 485, 442, 'attending', '2020-10-21 11:39:17', '2025-12-17 19:47:52', 'ZdNXQDGA', '3260345'), + (44017, 485, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'ZdNXQDGA', '3263578'), + (44018, 485, 451, 'maybe', '2020-11-02 18:29:40', '2025-12-17 19:47:53', 'ZdNXQDGA', '3272186'), + (44019, 485, 452, 'attending', '2020-11-30 00:41:55', '2025-12-17 19:47:54', 'ZdNXQDGA', '3272981'), + (44020, 485, 453, 'not_attending', '2020-11-06 02:56:20', '2025-12-17 19:47:54', 'ZdNXQDGA', '3274032'), + (44021, 485, 456, 'maybe', '2020-11-06 02:56:39', '2025-12-17 19:47:54', 'ZdNXQDGA', '3276428'), + (44022, 485, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281467'), + (44023, 485, 460, 'maybe', '2020-11-11 00:12:59', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281468'), + (44024, 485, 462, 'not_attending', '2020-11-11 22:51:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281470'), + (44025, 485, 463, 'maybe', '2020-11-11 00:12:49', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281553'), + (44026, 485, 464, 'maybe', '2020-11-11 00:13:06', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281554'), + (44027, 485, 465, 'maybe', '2020-11-18 03:49:57', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281555'), + (44028, 485, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'ZdNXQDGA', '3281829'), + (44029, 485, 468, 'maybe', '2020-11-11 00:13:14', '2025-12-17 19:47:54', 'ZdNXQDGA', '3285413'), + (44030, 485, 469, 'attending', '2020-11-28 16:16:09', '2025-12-17 19:47:54', 'ZdNXQDGA', '3285414'), + (44031, 485, 471, 'maybe', '2020-11-18 03:49:46', '2025-12-17 19:47:54', 'ZdNXQDGA', '3285445'), + (44032, 485, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3297764'), + (44033, 485, 490, 'maybe', '2020-12-08 18:31:14', '2025-12-17 19:47:54', 'ZdNXQDGA', '3313532'), + (44034, 485, 491, 'maybe', '2020-12-08 18:31:31', '2025-12-17 19:47:55', 'ZdNXQDGA', '3313533'), + (44035, 485, 493, 'not_attending', '2020-12-05 22:48:35', '2025-12-17 19:47:54', 'ZdNXQDGA', '3313856'), + (44036, 485, 496, 'not_attending', '2020-12-08 18:31:27', '2025-12-17 19:47:54', 'ZdNXQDGA', '3314269'), + (44037, 485, 499, 'not_attending', '2020-12-08 18:30:51', '2025-12-17 19:47:55', 'ZdNXQDGA', '3314909'), + (44038, 485, 500, 'attending', '2020-12-08 18:30:56', '2025-12-17 19:47:55', 'ZdNXQDGA', '3314964'), + (44039, 485, 501, 'not_attending', '2020-12-08 18:31:09', '2025-12-17 19:47:54', 'ZdNXQDGA', '3317834'), + (44040, 485, 502, 'maybe', '2020-12-08 18:31:47', '2025-12-17 19:47:55', 'ZdNXQDGA', '3323365'), + (44041, 485, 513, 'not_attending', '2020-12-17 01:58:18', '2025-12-17 19:47:55', 'ZdNXQDGA', '3329383'), + (44042, 485, 517, 'not_attending', '2021-01-08 00:25:49', '2025-12-17 19:47:48', 'ZdNXQDGA', '3337137'), + (44043, 485, 526, 'attending', '2021-01-02 22:35:26', '2025-12-17 19:47:48', 'ZdNXQDGA', '3351539'), + (44044, 485, 529, 'attending', '2021-01-06 00:37:14', '2025-12-17 19:47:48', 'ZdNXQDGA', '3364568'), + (44045, 485, 531, 'attending', '2021-01-02 22:35:29', '2025-12-17 19:47:48', 'ZdNXQDGA', '3378210'), + (44046, 485, 536, 'attending', '2021-01-07 16:05:07', '2025-12-17 19:47:48', 'ZdNXQDGA', '3386848'), + (44047, 485, 538, 'not_attending', '2021-01-10 19:27:26', '2025-12-17 19:47:48', 'ZdNXQDGA', '3388151'), + (44048, 485, 539, 'not_attending', '2021-01-10 19:27:20', '2025-12-17 19:47:48', 'ZdNXQDGA', '3389158'), + (44049, 485, 540, 'attending', '2021-01-07 01:21:12', '2025-12-17 19:47:48', 'ZdNXQDGA', '3389527'), + (44050, 485, 542, 'maybe', '2021-01-10 19:26:41', '2025-12-17 19:47:48', 'ZdNXQDGA', '3395013'), + (44051, 485, 543, 'attending', '2021-01-13 01:58:25', '2025-12-17 19:47:48', 'ZdNXQDGA', '3396499'), + (44052, 485, 548, 'attending', '2021-01-16 03:18:00', '2025-12-17 19:47:48', 'ZdNXQDGA', '3403650'), + (44053, 485, 549, 'attending', '2021-01-16 16:27:36', '2025-12-17 19:47:48', 'ZdNXQDGA', '3406988'), + (44054, 485, 553, 'maybe', '2021-01-16 16:26:19', '2025-12-17 19:47:48', 'ZdNXQDGA', '3407248'), + (44055, 485, 555, 'not_attending', '2021-01-23 23:08:09', '2025-12-17 19:47:49', 'ZdNXQDGA', '3416576'), + (44056, 485, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'ZdNXQDGA', '3418925'), + (44057, 485, 560, 'maybe', '2021-01-28 12:53:53', '2025-12-17 19:47:49', 'ZdNXQDGA', '3421715'), + (44058, 485, 568, 'attending', '2021-01-30 20:53:54', '2025-12-17 19:47:50', 'ZdNXQDGA', '3430267'), + (44059, 485, 569, 'not_attending', '2021-01-25 06:51:06', '2025-12-17 19:47:49', 'ZdNXQDGA', '3432673'), + (44060, 485, 580, 'attending', '2021-01-31 17:11:02', '2025-12-17 19:47:50', 'ZdNXQDGA', '3444240'), + (44061, 485, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'ZdNXQDGA', '3468125'), + (44062, 485, 602, 'attending', '2021-02-13 21:14:38', '2025-12-17 19:47:50', 'ZdNXQDGA', '3470303'), + (44063, 485, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'ZdNXQDGA', '3470305'), + (44064, 485, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'ZdNXQDGA', '3470991'), + (44065, 485, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ZdNXQDGA', '3517815'), + (44066, 485, 622, 'attending', '2021-03-11 22:35:51', '2025-12-17 19:47:51', 'ZdNXQDGA', '3517816'), + (44067, 485, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ZdNXQDGA', '3523941'), + (44068, 485, 624, 'not_attending', '2021-02-27 01:06:20', '2025-12-17 19:47:50', 'ZdNXQDGA', '3528556'), + (44069, 485, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ZdNXQDGA', '3533850'), + (44070, 485, 638, 'maybe', '2021-04-04 01:52:00', '2025-12-17 19:47:44', 'ZdNXQDGA', '3536632'), + (44071, 485, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ZdNXQDGA', '3536656'), + (44072, 485, 641, 'attending', '2021-04-02 15:00:41', '2025-12-17 19:47:44', 'ZdNXQDGA', '3539916'), + (44073, 485, 642, 'not_attending', '2021-04-10 16:40:56', '2025-12-17 19:47:44', 'ZdNXQDGA', '3539917'), + (44074, 485, 643, 'not_attending', '2021-04-02 15:20:50', '2025-12-17 19:47:45', 'ZdNXQDGA', '3539918'), + (44075, 485, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539919'), + (44076, 485, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539920'), + (44077, 485, 646, 'attending', '2021-05-14 14:15:45', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539921'), + (44078, 485, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ZdNXQDGA', '3539922'), + (44079, 485, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ZdNXQDGA', '3539923'), + (44080, 485, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ZdNXQDGA', '3539927'), + (44081, 485, 657, 'not_attending', '2021-04-02 15:20:53', '2025-12-17 19:47:45', 'ZdNXQDGA', '3547132'), + (44082, 485, 679, 'maybe', '2021-04-04 19:06:32', '2025-12-17 19:47:44', 'ZdNXQDGA', '3547168'), + (44083, 485, 706, 'attending', '2021-04-18 18:59:11', '2025-12-17 19:47:45', 'ZdNXQDGA', '3582734'), + (44084, 485, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ZdNXQDGA', '3583262'), + (44085, 485, 709, 'not_attending', '2021-04-06 17:15:04', '2025-12-17 19:47:44', 'ZdNXQDGA', '3587852'), + (44086, 485, 711, 'attending', '2021-03-31 23:19:53', '2025-12-17 19:47:44', 'ZdNXQDGA', '3588075'), + (44087, 485, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ZdNXQDGA', '3619523'), + (44088, 485, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ZdNXQDGA', '3661369'), + (44089, 485, 731, 'attending', '2021-04-04 01:48:55', '2025-12-17 19:47:44', 'ZdNXQDGA', '3674262'), + (44090, 485, 734, 'attending', '2021-04-05 00:49:23', '2025-12-17 19:47:44', 'ZdNXQDGA', '3676806'), + (44091, 485, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ZdNXQDGA', '3677402'), + (44092, 485, 737, 'not_attending', '2021-04-06 17:14:58', '2025-12-17 19:47:44', 'ZdNXQDGA', '3679349'), + (44093, 485, 757, 'not_attending', '2021-04-14 15:27:59', '2025-12-17 19:47:45', 'ZdNXQDGA', '3708109'), + (44094, 485, 761, 'attending', '2021-05-14 21:00:20', '2025-12-17 19:47:46', 'ZdNXQDGA', '3716041'), + (44095, 485, 771, 'maybe', '2021-04-29 13:13:49', '2025-12-17 19:47:46', 'ZdNXQDGA', '3726420'), + (44096, 485, 774, 'attending', '2021-04-20 23:23:55', '2025-12-17 19:47:45', 'ZdNXQDGA', '3730212'), + (44097, 485, 792, 'maybe', '2021-05-19 21:21:29', '2025-12-17 19:47:46', 'ZdNXQDGA', '3793156'), + (44098, 485, 793, 'attending', '2021-06-02 22:41:50', '2025-12-17 19:47:47', 'ZdNXQDGA', '3793537'), + (44099, 485, 823, 'attending', '2021-06-19 12:58:22', '2025-12-17 19:47:48', 'ZdNXQDGA', '3974109'), + (44100, 485, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ZdNXQDGA', '3975311'), + (44101, 485, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ZdNXQDGA', '3975312'), + (44102, 485, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ZdNXQDGA', '3994992'), + (44103, 485, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ZdNXQDGA', '4014338'), + (44104, 485, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ZdNXQDGA', '4021848'), + (44105, 485, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNXQDGA', '4136744'), + (44106, 485, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ZdNXQDGA', '4136937'), + (44107, 485, 871, 'attending', '2021-07-10 14:18:00', '2025-12-17 19:47:39', 'ZdNXQDGA', '4136938'), + (44108, 485, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNXQDGA', '4136947'), + (44109, 485, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNXQDGA', '4210314'), + (44110, 485, 887, 'attending', '2021-07-14 22:45:36', '2025-12-17 19:47:39', 'ZdNXQDGA', '4225444'), + (44111, 485, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNXQDGA', '4239259'), + (44112, 485, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ZdNXQDGA', '4240316'), + (44113, 485, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ZdNXQDGA', '4240317'), + (44114, 485, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ZdNXQDGA', '4240318'), + (44115, 485, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ZdNXQDGA', '4240320'), + (44116, 485, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNXQDGA', '4250163'), + (44117, 485, 919, 'attending', '2021-07-17 22:19:18', '2025-12-17 19:47:39', 'ZdNXQDGA', '4275957'), + (44118, 485, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNXQDGA', '4277819'), + (44119, 485, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNXQDGA', '4301723'), + (44120, 485, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ZdNXQDGA', '4302093'), + (44121, 485, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ZdNXQDGA', '4304151'), + (44122, 485, 940, 'maybe', '2021-07-30 19:58:13', '2025-12-17 19:47:40', 'ZdNXQDGA', '4309049'), + (44123, 485, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ZdNXQDGA', '4345519'), + (44124, 485, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ZdNXQDGA', '4356801'), + (44125, 485, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ZdNXQDGA', '4358025'), + (44126, 485, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ZdNXQDGA', '4366186'), + (44127, 485, 974, 'not_attending', '2021-08-28 12:26:03', '2025-12-17 19:47:43', 'ZdNXQDGA', '4366187'), + (44128, 485, 988, 'not_attending', '2021-08-27 21:19:04', '2025-12-17 19:47:42', 'ZdNXQDGA', '4402823'), + (44129, 485, 990, 'attending', '2021-09-04 18:49:50', '2025-12-17 19:47:43', 'ZdNXQDGA', '4420735'), + (44130, 485, 991, 'attending', '2021-09-11 19:47:54', '2025-12-17 19:47:43', 'ZdNXQDGA', '4420738'), + (44131, 485, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ZdNXQDGA', '4420739'), + (44132, 485, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ZdNXQDGA', '4420741'), + (44133, 485, 995, 'attending', '2021-10-09 21:38:14', '2025-12-17 19:47:34', 'ZdNXQDGA', '4420744'), + (44134, 485, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ZdNXQDGA', '4420747'), + (44135, 485, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ZdNXQDGA', '4420748'), + (44136, 485, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ZdNXQDGA', '4420749'), + (44137, 485, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ZdNXQDGA', '4461883'), + (44138, 485, 1036, 'maybe', '2021-09-22 20:28:22', '2025-12-17 19:47:34', 'ZdNXQDGA', '4493166'), + (44139, 485, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ZdNXQDGA', '4508342'), + (44140, 485, 1079, 'maybe', '2021-10-20 18:40:45', '2025-12-17 19:47:35', 'ZdNXQDGA', '4563823'), + (44141, 485, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ZdNXQDGA', '4568602'), + (44142, 485, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ZdNXQDGA', '4572153'), + (44143, 485, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'ZdNXQDGA', '4585962'), + (44144, 485, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ZdNXQDGA', '4596356'), + (44145, 485, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ZdNXQDGA', '4598860'), + (44146, 485, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ZdNXQDGA', '4598861'), + (44147, 485, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ZdNXQDGA', '4602797'), + (44148, 485, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ZdNXQDGA', '4637896'), + (44149, 485, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ZdNXQDGA', '4642994'), + (44150, 485, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'ZdNXQDGA', '4642995'), + (44151, 485, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ZdNXQDGA', '4642996'), + (44152, 485, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ZdNXQDGA', '4642997'), + (44153, 485, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ZdNXQDGA', '4645687'), + (44154, 485, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ZdNXQDGA', '4645698'), + (44155, 485, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ZdNXQDGA', '4645704'), + (44156, 485, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ZdNXQDGA', '4645705'), + (44157, 485, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ZdNXQDGA', '4668385'), + (44158, 485, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ZdNXQDGA', '4694407'), + (44159, 485, 1151, 'attending', '2022-01-06 00:38:42', '2025-12-17 19:47:31', 'ZdNXQDGA', '4708704'), + (44160, 485, 1162, 'maybe', '2022-01-07 15:12:28', '2025-12-17 19:47:31', 'ZdNXQDGA', '4718771'), + (44161, 485, 1164, 'attending', '2022-01-04 00:32:52', '2025-12-17 19:47:31', 'ZdNXQDGA', '4724208'), + (44162, 485, 1165, 'attending', '2022-01-04 00:32:54', '2025-12-17 19:47:31', 'ZdNXQDGA', '4724210'), + (44163, 485, 1174, 'attending', '2022-01-15 23:14:08', '2025-12-17 19:47:31', 'ZdNXQDGA', '4736496'), + (44164, 485, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ZdNXQDGA', '4736497'), + (44165, 485, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ZdNXQDGA', '4736499'), + (44166, 485, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ZdNXQDGA', '4736500'), + (44167, 485, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ZdNXQDGA', '4736503'), + (44168, 485, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ZdNXQDGA', '4736504'), + (44169, 485, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ZdNXQDGA', '4746789'), + (44170, 485, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ZdNXQDGA', '4753929'), + (44171, 485, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ZdNXQDGA', '5038850'), + (44172, 485, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ZdNXQDGA', '5045826'), + (44173, 485, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ZdNXQDGA', '5132533'), + (44174, 485, 1260, 'attending', '2022-03-01 18:18:54', '2025-12-17 19:47:33', 'ZdNXQDGA', '5142082'), + (44175, 485, 1272, 'maybe', '2022-03-19 17:13:06', '2025-12-17 19:47:25', 'ZdNXQDGA', '5186582'), + (44176, 485, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ZdNXQDGA', '5186583'), + (44177, 485, 1274, 'attending', '2022-04-02 19:28:00', '2025-12-17 19:47:26', 'ZdNXQDGA', '5186585'), + (44178, 485, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ZdNXQDGA', '5190437'), + (44179, 485, 1284, 'attending', '2022-04-16 22:39:33', '2025-12-17 19:47:27', 'ZdNXQDGA', '5195095'), + (44180, 485, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ZdNXQDGA', '5215989'), + (44181, 485, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ZdNXQDGA', '5223686'), + (44182, 485, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'ZdNXQDGA', '5227432'), + (44183, 485, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ZdNXQDGA', '5247467'), + (44184, 485, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ZdNXQDGA', '5260800'), + (44185, 485, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ZdNXQDGA', '5269930'), + (44186, 485, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ZdNXQDGA', '5271448'), + (44187, 485, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'ZdNXQDGA', '5271449'), + (44188, 485, 1381, 'not_attending', '2022-05-06 20:27:50', '2025-12-17 19:47:28', 'ZdNXQDGA', '5271453'), + (44189, 485, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ZdNXQDGA', '5276469'), + (44190, 485, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ZdNXQDGA', '5278159'), + (44191, 485, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ZdNXQDGA', '5363695'), + (44192, 485, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ZdNXQDGA', '5365960'), + (44193, 485, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ZdNXQDGA', '5368973'), + (44194, 485, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ZdNXQDGA', '5378247'), + (44195, 485, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ZdNXQDGA', '5389605'), + (44196, 485, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ZdNXQDGA', '5397265'), + (44197, 485, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ZdNXQDGA', '5403967'), + (44198, 485, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ZdNXQDGA', '5404786'), + (44199, 485, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ZdNXQDGA', '5405203'), + (44200, 485, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'ZdNXQDGA', '5408794'), + (44201, 485, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ZdNXQDGA', '5411699'), + (44202, 485, 1481, 'not_attending', '2022-06-21 21:36:57', '2025-12-17 19:47:17', 'ZdNXQDGA', '5412237'), + (44203, 485, 1482, 'attending', '2022-06-25 11:13:00', '2025-12-17 19:47:19', 'ZdNXQDGA', '5412550'), + (44204, 485, 1483, 'maybe', '2022-06-23 21:38:58', '2025-12-17 19:47:17', 'ZdNXQDGA', '5414556'), + (44205, 485, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ZdNXQDGA', '5415046'), + (44206, 485, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ZdNXQDGA', '5422086'), + (44207, 485, 1498, 'attending', '2022-07-02 01:33:16', '2025-12-17 19:47:19', 'ZdNXQDGA', '5422406'), + (44208, 485, 1499, 'attending', '2022-07-02 01:33:12', '2025-12-17 19:47:19', 'ZdNXQDGA', '5422407'), + (44209, 485, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ZdNXQDGA', '5424565'), + (44210, 485, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ZdNXQDGA', '5426882'), + (44211, 485, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ZdNXQDGA', '5427083'), + (44212, 485, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ZdNXQDGA', '5441125'), + (44213, 485, 1514, 'not_attending', '2022-07-21 19:43:01', '2025-12-17 19:47:20', 'ZdNXQDGA', '5441126'), + (44214, 485, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ZdNXQDGA', '5441128'), + (44215, 485, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ZdNXQDGA', '5441131'), + (44216, 485, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ZdNXQDGA', '5441132'), + (44217, 485, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ZdNXQDGA', '5446643'), + (44218, 485, 1531, 'attending', '2022-07-16 19:13:55', '2025-12-17 19:47:19', 'ZdNXQDGA', '5448756'), + (44219, 485, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ZdNXQDGA', '5453325'), + (44220, 485, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ZdNXQDGA', '5454516'), + (44221, 485, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ZdNXQDGA', '5454605'), + (44222, 485, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ZdNXQDGA', '5455037'), + (44223, 485, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ZdNXQDGA', '5461278'), + (44224, 485, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ZdNXQDGA', '5469480'), + (44225, 485, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ZdNXQDGA', '5471073'), + (44226, 485, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ZdNXQDGA', '5474663'), + (44227, 485, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ZdNXQDGA', '5482022'), + (44228, 485, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ZdNXQDGA', '5482793'), + (44229, 485, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ZdNXQDGA', '5488912'), + (44230, 485, 1581, 'maybe', '2022-08-12 00:02:36', '2025-12-17 19:47:22', 'ZdNXQDGA', '5490302'), + (44231, 485, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ZdNXQDGA', '5492192'), + (44232, 485, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ZdNXQDGA', '5493139'), + (44233, 485, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ZdNXQDGA', '5493200'), + (44234, 485, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ZdNXQDGA', '5502188'), + (44235, 485, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ZdNXQDGA', '5505059'), + (44236, 485, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ZdNXQDGA', '5509055'), + (44237, 485, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ZdNXQDGA', '5512862'), + (44238, 485, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ZdNXQDGA', '5513985'), + (44239, 485, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ZdNXQDGA', '5519981'), + (44240, 485, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ZdNXQDGA', '5522550'), + (44241, 485, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ZdNXQDGA', '5534683'), + (44242, 485, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ZdNXQDGA', '5537735'), + (44243, 485, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ZdNXQDGA', '5540859'), + (44244, 485, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ZdNXQDGA', '5546619'), + (44245, 485, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ZdNXQDGA', '5557747'), + (44246, 485, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ZdNXQDGA', '5560255'), + (44247, 485, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ZdNXQDGA', '5562906'), + (44248, 485, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ZdNXQDGA', '5600604'), + (44249, 485, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ZdNXQDGA', '5605544'), + (44250, 485, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ZdNXQDGA', '5630960'), + (44251, 485, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ZdNXQDGA', '5630961'), + (44252, 485, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ZdNXQDGA', '5630962'), + (44253, 485, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ZdNXQDGA', '5630966'), + (44254, 485, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ZdNXQDGA', '5630967'), + (44255, 485, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ZdNXQDGA', '5630968'), + (44256, 485, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ZdNXQDGA', '5635406'), + (44257, 485, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ZdNXQDGA', '5638765'), + (44258, 485, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ZdNXQDGA', '5640097'), + (44259, 485, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ZdNXQDGA', '5640843'), + (44260, 485, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ZdNXQDGA', '5641521'), + (44261, 485, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ZdNXQDGA', '5642818'), + (44262, 485, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ZdNXQDGA', '5652395'), + (44263, 485, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ZdNXQDGA', '5670445'), + (44264, 485, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ZdNXQDGA', '5671637'), + (44265, 485, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ZdNXQDGA', '5672329'), + (44266, 485, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ZdNXQDGA', '5674057'), + (44267, 485, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ZdNXQDGA', '5674060'), + (44268, 485, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ZdNXQDGA', '5677461'), + (44269, 485, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ZdNXQDGA', '5698046'), + (44270, 485, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ZdNXQDGA', '5699760'), + (44271, 485, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ZdNXQDGA', '5741601'), + (44272, 485, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ZdNXQDGA', '5763458'), + (44273, 485, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ZdNXQDGA', '5774172'), + (44274, 485, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ZdNXQDGA', '5818247'), + (44275, 485, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ZdNXQDGA', '5819471'), + (44276, 485, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'ZdNXQDGA', '5827739'), + (44277, 485, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ZdNXQDGA', '5844306'), + (44278, 485, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ZdNXQDGA', '5850159'), + (44279, 485, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ZdNXQDGA', '5858999'), + (44280, 485, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ZdNXQDGA', '5871984'), + (44281, 485, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ZdNXQDGA', '5876354'), + (44282, 485, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ZdNXQDGA', '5880939'), + (44283, 485, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ZdNXQDGA', '5880940'), + (44284, 485, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ZdNXQDGA', '5880942'), + (44285, 485, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ZdNXQDGA', '5880943'), + (44286, 485, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ZdNXQDGA', '5887890'), + (44287, 485, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ZdNXQDGA', '5888598'), + (44288, 485, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ZdNXQDGA', '5893260'), + (44289, 485, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ZdNXQDGA', '5899826'), + (44290, 485, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ZdNXQDGA', '5900199'), + (44291, 485, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ZdNXQDGA', '5900200'), + (44292, 485, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ZdNXQDGA', '5900202'), + (44293, 485, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ZdNXQDGA', '5900203'), + (44294, 485, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ZdNXQDGA', '5901108'), + (44295, 485, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ZdNXQDGA', '5901126'), + (44296, 485, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ZdNXQDGA', '5909655'), + (44297, 485, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ZdNXQDGA', '5910522'), + (44298, 485, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ZdNXQDGA', '5910526'), + (44299, 485, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ZdNXQDGA', '5910528'), + (44300, 485, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ZdNXQDGA', '5916219'), + (44301, 485, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ZdNXQDGA', '5936234'), + (44302, 485, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ZdNXQDGA', '5958351'), + (44303, 485, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ZdNXQDGA', '5959751'), + (44304, 485, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ZdNXQDGA', '5959755'), + (44305, 485, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ZdNXQDGA', '5960055'), + (44306, 485, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ZdNXQDGA', '5961684'), + (44307, 485, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ZdNXQDGA', '5962132'), + (44308, 485, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ZdNXQDGA', '5962133'), + (44309, 485, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ZdNXQDGA', '5962134'), + (44310, 485, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ZdNXQDGA', '5962317'), + (44311, 485, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ZdNXQDGA', '5962318'), + (44312, 485, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ZdNXQDGA', '5965933'), + (44313, 485, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ZdNXQDGA', '5967014'), + (44314, 485, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ZdNXQDGA', '5972815'), + (44315, 485, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ZdNXQDGA', '5974016'), + (44316, 485, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ZdNXQDGA', '5981515'), + (44317, 485, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ZdNXQDGA', '5993516'), + (44318, 485, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ZdNXQDGA', '5998939'), + (44319, 485, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ZdNXQDGA', '6028191'), + (44320, 485, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ZdNXQDGA', '6040066'), + (44321, 485, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ZdNXQDGA', '6042717'), + (44322, 485, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ZdNXQDGA', '6044838'), + (44323, 485, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ZdNXQDGA', '6044839'), + (44324, 485, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNXQDGA', '6045684'), + (44325, 485, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ZdNXQDGA', '6050104'), + (44326, 485, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ZdNXQDGA', '6053195'), + (44327, 485, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ZdNXQDGA', '6053198'), + (44328, 485, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ZdNXQDGA', '6056085'), + (44329, 485, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ZdNXQDGA', '6056916'), + (44330, 485, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ZdNXQDGA', '6059290'), + (44331, 485, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ZdNXQDGA', '6060328'), + (44332, 485, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ZdNXQDGA', '6061037'), + (44333, 485, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ZdNXQDGA', '6061039'), + (44334, 485, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ZdNXQDGA', '6067245'), + (44335, 485, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ZdNXQDGA', '6068094'), + (44336, 485, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ZdNXQDGA', '6068252'), + (44337, 485, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ZdNXQDGA', '6068253'), + (44338, 485, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ZdNXQDGA', '6068254'), + (44339, 485, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'ZdNXQDGA', '6068280'), + (44340, 485, 2032, 'attending', '2023-06-01 01:34:42', '2025-12-17 19:47:04', 'ZdNXQDGA', '6068281'), + (44341, 485, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ZdNXQDGA', '6069093'), + (44342, 485, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ZdNXQDGA', '6072528'), + (44343, 485, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ZdNXQDGA', '6079840'), + (44344, 485, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ZdNXQDGA', '6083398'), + (44345, 485, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ZdNXQDGA', '6093504'), + (44346, 485, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ZdNXQDGA', '6097414'), + (44347, 485, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ZdNXQDGA', '6097442'), + (44348, 485, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ZdNXQDGA', '6097684'), + (44349, 485, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ZdNXQDGA', '6098762'), + (44350, 485, 2064, 'attending', '2023-06-24 02:39:59', '2025-12-17 19:46:50', 'ZdNXQDGA', '6099988'), + (44351, 485, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ZdNXQDGA', '6101361'), + (44352, 485, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ZdNXQDGA', '6101362'), + (44353, 485, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'ZdNXQDGA', '6103752'), + (44354, 485, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ZdNXQDGA', '6107314'), + (44355, 485, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ZdNXQDGA', '6120034'), + (44356, 485, 2089, 'attending', '2023-06-04 21:23:09', '2025-12-17 19:47:04', 'ZdNXQDGA', '6125227'), + (44357, 485, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'ZdNXQDGA', '6136733'), + (44358, 485, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ZdNXQDGA', '6137989'), + (44359, 485, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ZdNXQDGA', '6150864'), + (44360, 485, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ZdNXQDGA', '6155491'), + (44361, 485, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ZdNXQDGA', '6164417'), + (44362, 485, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ZdNXQDGA', '6166388'), + (44363, 485, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ZdNXQDGA', '6176439'), + (44364, 485, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ZdNXQDGA', '6182410'), + (44365, 485, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ZdNXQDGA', '6185812'), + (44366, 485, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ZdNXQDGA', '6187651'), + (44367, 485, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ZdNXQDGA', '6187963'), + (44368, 485, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ZdNXQDGA', '6187964'), + (44369, 485, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ZdNXQDGA', '6187966'), + (44370, 485, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ZdNXQDGA', '6187967'), + (44371, 485, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ZdNXQDGA', '6187969'), + (44372, 485, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ZdNXQDGA', '6334878'), + (44373, 485, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ZdNXQDGA', '6337236'), + (44374, 485, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ZdNXQDGA', '6337970'), + (44375, 485, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ZdNXQDGA', '6338308'), + (44376, 485, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'ZdNXQDGA', '6338342'), + (44377, 485, 2159, 'maybe', '2023-07-18 18:34:51', '2025-12-17 19:46:53', 'ZdNXQDGA', '6338355'), + (44378, 485, 2160, 'not_attending', '2023-07-23 02:19:23', '2025-12-17 19:46:54', 'ZdNXQDGA', '6338358'), + (44379, 485, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ZdNXQDGA', '6341710'), + (44380, 485, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ZdNXQDGA', '6342044'), + (44381, 485, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ZdNXQDGA', '6342298'), + (44382, 485, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ZdNXQDGA', '6343294'), + (44383, 485, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ZdNXQDGA', '6347034'), + (44384, 485, 2177, 'not_attending', '2023-08-07 02:51:40', '2025-12-17 19:46:55', 'ZdNXQDGA', '6347053'), + (44385, 485, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ZdNXQDGA', '6347056'), + (44386, 485, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ZdNXQDGA', '6353830'), + (44387, 485, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ZdNXQDGA', '6353831'), + (44388, 485, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ZdNXQDGA', '6357867'), + (44389, 485, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ZdNXQDGA', '6358652'), + (44390, 485, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'ZdNXQDGA', '6358668'), + (44391, 485, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'ZdNXQDGA', '6358669'), + (44392, 485, 2204, 'maybe', '2023-08-16 02:43:26', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361542'), + (44393, 485, 2206, 'attending', '2023-08-10 01:58:20', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361659'), + (44394, 485, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ZdNXQDGA', '6361709'), + (44395, 485, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361710'), + (44396, 485, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361711'), + (44397, 485, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ZdNXQDGA', '6361712'), + (44398, 485, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ZdNXQDGA', '6361713'), + (44399, 485, 2219, 'maybe', '2023-08-28 18:40:50', '2025-12-17 19:46:55', 'ZdNXQDGA', '6367309'), + (44400, 485, 2232, 'not_attending', '2023-08-23 12:32:57', '2025-12-17 19:46:55', 'ZdNXQDGA', '6374818'), + (44401, 485, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ZdNXQDGA', '6382573'), + (44402, 485, 2239, 'maybe', '2023-09-01 13:37:52', '2025-12-17 19:46:56', 'ZdNXQDGA', '6387592'), + (44403, 485, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ZdNXQDGA', '6388604'), + (44404, 485, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ZdNXQDGA', '6394629'), + (44405, 485, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ZdNXQDGA', '6394631'), + (44406, 485, 2253, 'not_attending', '2023-09-30 03:09:50', '2025-12-17 19:46:45', 'ZdNXQDGA', '6401811'), + (44407, 485, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ZdNXQDGA', '6440863'), + (44408, 485, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ZdNXQDGA', '6445440'), + (44409, 485, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ZdNXQDGA', '6453951'), + (44410, 485, 2284, 'maybe', '2023-10-13 17:03:09', '2025-12-17 19:46:46', 'ZdNXQDGA', '6460928'), + (44411, 485, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ZdNXQDGA', '6461696'), + (44412, 485, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ZdNXQDGA', '6462129'), + (44413, 485, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ZdNXQDGA', '6463218'), + (44414, 485, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ZdNXQDGA', '6472181'), + (44415, 485, 2302, 'maybe', '2023-10-24 11:45:38', '2025-12-17 19:46:46', 'ZdNXQDGA', '6482535'), + (44416, 485, 2303, 'not_attending', '2023-10-27 11:58:53', '2025-12-17 19:46:47', 'ZdNXQDGA', '6482691'), + (44417, 485, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ZdNXQDGA', '6482693'), + (44418, 485, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ZdNXQDGA', '6484200'), + (44419, 485, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ZdNXQDGA', '6484680'), + (44420, 485, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ZdNXQDGA', '6507741'), + (44421, 485, 2322, 'attending', '2023-11-17 20:44:54', '2025-12-17 19:46:48', 'ZdNXQDGA', '6514659'), + (44422, 485, 2323, 'maybe', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ZdNXQDGA', '6514660'), + (44423, 485, 2324, 'attending', '2023-12-08 16:38:36', '2025-12-17 19:46:49', 'ZdNXQDGA', '6514662'), + (44424, 485, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ZdNXQDGA', '6519103'), + (44425, 485, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ZdNXQDGA', '6535681'), + (44426, 485, 2338, 'maybe', '2023-11-23 03:44:42', '2025-12-17 19:46:48', 'ZdNXQDGA', '6538868'), + (44427, 485, 2340, 'attending', '2023-11-21 03:42:43', '2025-12-17 19:46:48', 'ZdNXQDGA', '6540279'), + (44428, 485, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ZdNXQDGA', '6584747'), + (44429, 485, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ZdNXQDGA', '6587097'), + (44430, 485, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ZdNXQDGA', '6609022'), + (44431, 485, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'ZdNXQDGA', '6632757'), + (44432, 485, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ZdNXQDGA', '6644187'), + (44433, 485, 2385, 'maybe', '2024-01-08 06:22:44', '2025-12-17 19:46:37', 'ZdNXQDGA', '6648943'), + (44434, 485, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ZdNXQDGA', '6648951'), + (44435, 485, 2387, 'maybe', '2024-01-04 14:28:16', '2025-12-17 19:46:37', 'ZdNXQDGA', '6648952'), + (44436, 485, 2391, 'not_attending', '2024-01-08 06:22:31', '2025-12-17 19:46:37', 'ZdNXQDGA', '6654138'), + (44437, 485, 2394, 'maybe', '2024-01-10 14:10:12', '2025-12-17 19:46:38', 'ZdNXQDGA', '6654470'), + (44438, 485, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ZdNXQDGA', '6655401'), + (44439, 485, 2397, 'attending', '2024-01-08 06:22:48', '2025-12-17 19:46:37', 'ZdNXQDGA', '6657379'), + (44440, 485, 2399, 'attending', '2024-01-08 06:22:23', '2025-12-17 19:46:37', 'ZdNXQDGA', '6657583'), + (44441, 485, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ZdNXQDGA', '6661585'), + (44442, 485, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ZdNXQDGA', '6661588'), + (44443, 485, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ZdNXQDGA', '6661589'), + (44444, 485, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ZdNXQDGA', '6699906'), + (44445, 485, 2408, 'attending', '2024-01-26 03:41:14', '2025-12-17 19:46:40', 'ZdNXQDGA', '6699907'), + (44446, 485, 2409, 'not_attending', '2024-01-30 20:38:24', '2025-12-17 19:46:41', 'ZdNXQDGA', '6699909'), + (44447, 485, 2410, 'attending', '2024-02-03 16:13:32', '2025-12-17 19:46:41', 'ZdNXQDGA', '6699911'), + (44448, 485, 2411, 'attending', '2024-02-15 03:43:43', '2025-12-17 19:46:41', 'ZdNXQDGA', '6699913'), + (44449, 485, 2412, 'not_attending', '2024-02-17 21:53:23', '2025-12-17 19:46:43', 'ZdNXQDGA', '6700717'), + (44450, 485, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ZdNXQDGA', '6701109'), + (44451, 485, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ZdNXQDGA', '6705219'), + (44452, 485, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ZdNXQDGA', '6710153'), + (44453, 485, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ZdNXQDGA', '6711552'), + (44454, 485, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ZdNXQDGA', '6711553'), + (44455, 485, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ZdNXQDGA', '6722688'), + (44456, 485, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ZdNXQDGA', '6730620'), + (44457, 485, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'ZdNXQDGA', '6730642'), + (44458, 485, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ZdNXQDGA', '6740364'), + (44459, 485, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ZdNXQDGA', '6743829'), + (44460, 485, 2461, 'attending', '2024-02-10 22:22:43', '2025-12-17 19:46:41', 'ZdNXQDGA', '6744245'), + (44461, 485, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ZdNXQDGA', '7030380'), + (44462, 485, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'ZdNXQDGA', '7033677'), + (44463, 485, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ZdNXQDGA', '7044715'), + (44464, 485, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ZdNXQDGA', '7050318'), + (44465, 485, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ZdNXQDGA', '7050319'), + (44466, 485, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ZdNXQDGA', '7050322'), + (44467, 485, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ZdNXQDGA', '7057804'), + (44468, 485, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ZdNXQDGA', '7072824'), + (44469, 485, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ZdNXQDGA', '7074348'), + (44470, 485, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ZdNXQDGA', '7074364'), + (44471, 485, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ZdNXQDGA', '7089267'), + (44472, 485, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ZdNXQDGA', '7098747'), + (44473, 485, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ZdNXQDGA', '7113468'), + (44474, 485, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ZdNXQDGA', '7114856'), + (44475, 485, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ZdNXQDGA', '7114951'), + (44476, 485, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ZdNXQDGA', '7114955'), + (44477, 485, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ZdNXQDGA', '7114956'), + (44478, 485, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ZdNXQDGA', '7114957'), + (44479, 485, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ZdNXQDGA', '7159484'), + (44480, 485, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ZdNXQDGA', '7178446'), + (44481, 485, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ZdNXQDGA', '7220467'), + (44482, 485, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ZdNXQDGA', '7240354'), + (44483, 485, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ZdNXQDGA', '7251633'), + (44484, 485, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ZdNXQDGA', '7324073'), + (44485, 485, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ZdNXQDGA', '7324074'), + (44486, 485, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ZdNXQDGA', '7324075'), + (44487, 485, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ZdNXQDGA', '7324078'), + (44488, 485, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ZdNXQDGA', '7324082'), + (44489, 485, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ZdNXQDGA', '7331457'), + (44490, 485, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ZdNXQDGA', '7363643'), + (44491, 485, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ZdNXQDGA', '7368606'), + (44492, 485, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ZdNXQDGA', '7397462'), + (44493, 485, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ZdNXQDGA', '7424275'), + (44494, 485, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ZdNXQDGA', '7432751'), + (44495, 485, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ZdNXQDGA', '7432752'), + (44496, 485, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ZdNXQDGA', '7432753'), + (44497, 485, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432754'), + (44498, 485, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432755'), + (44499, 485, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432756'), + (44500, 485, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432758'), + (44501, 485, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ZdNXQDGA', '7432759'), + (44502, 485, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ZdNXQDGA', '7433834'), + (44503, 485, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'ZdNXQDGA', '7470197'), + (44504, 485, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ZdNXQDGA', '7685613'), + (44505, 485, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ZdNXQDGA', '7688194'), + (44506, 485, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ZdNXQDGA', '7688196'), + (44507, 485, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ZdNXQDGA', '7688289'), + (44508, 485, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ZdNXQDGA', '7692763'), + (44509, 485, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ZdNXQDGA', '7697552'), + (44510, 485, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ZdNXQDGA', '7699878'), + (44511, 485, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'ZdNXQDGA', '7704043'), + (44512, 485, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ZdNXQDGA', '7712467'), + (44513, 485, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ZdNXQDGA', '7713585'), + (44514, 485, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ZdNXQDGA', '7713586'), + (44515, 485, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ZdNXQDGA', '7738518'), + (44516, 485, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ZdNXQDGA', '7750636'), + (44517, 485, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ZdNXQDGA', '7796540'), + (44518, 485, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ZdNXQDGA', '7796541'), + (44519, 485, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ZdNXQDGA', '7796542'), + (44520, 485, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ZdNXQDGA', '7825913'), + (44521, 485, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ZdNXQDGA', '7826209'), + (44522, 485, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ZdNXQDGA', '7834742'), + (44523, 485, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ZdNXQDGA', '7842108'), + (44524, 485, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ZdNXQDGA', '7842902'), + (44525, 485, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ZdNXQDGA', '7842903'), + (44526, 485, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ZdNXQDGA', '7842904'), + (44527, 485, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ZdNXQDGA', '7842905'), + (44528, 485, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ZdNXQDGA', '7855719'), + (44529, 485, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ZdNXQDGA', '7860683'), + (44530, 485, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ZdNXQDGA', '7860684'), + (44531, 485, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ZdNXQDGA', '7866095'), + (44532, 485, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ZdNXQDGA', '7869170'), + (44533, 485, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ZdNXQDGA', '7869188'), + (44534, 485, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ZdNXQDGA', '7869201'), + (44535, 485, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ZdNXQDGA', '7877465'), + (44536, 485, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ZdNXQDGA', '7888250'), + (44537, 485, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ZdNXQDGA', '7904777'), + (44538, 485, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ZdNXQDGA', '8349164'), + (44539, 485, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ZdNXQDGA', '8349545'), + (44540, 485, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ZdNXQDGA', '8368028'), + (44541, 485, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ZdNXQDGA', '8368029'), + (44542, 485, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ZdNXQDGA', '8388462'), + (44543, 485, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ZdNXQDGA', '8400273'), + (44544, 485, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ZdNXQDGA', '8400275'), + (44545, 485, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ZdNXQDGA', '8400276'), + (44546, 485, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ZdNXQDGA', '8404977'), + (44547, 485, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ZdNXQDGA', '8430783'), + (44548, 485, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ZdNXQDGA', '8430784'), + (44549, 485, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ZdNXQDGA', '8430799'), + (44550, 485, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ZdNXQDGA', '8430800'), + (44551, 485, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ZdNXQDGA', '8430801'), + (44552, 485, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ZdNXQDGA', '8438709'), + (44553, 485, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ZdNXQDGA', '8457738'), + (44554, 485, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ZdNXQDGA', '8459566'), + (44555, 485, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ZdNXQDGA', '8459567'), + (44556, 485, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ZdNXQDGA', '8461032'), + (44557, 485, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ZdNXQDGA', '8477877'), + (44558, 485, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ZdNXQDGA', '8485688'), + (44559, 485, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ZdNXQDGA', '8490587'), + (44560, 485, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ZdNXQDGA', '8493552'), + (44561, 485, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ZdNXQDGA', '8493553'), + (44562, 485, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ZdNXQDGA', '8493554'), + (44563, 485, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ZdNXQDGA', '8493555'), + (44564, 485, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ZdNXQDGA', '8493556'), + (44565, 485, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ZdNXQDGA', '8493557'), + (44566, 485, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ZdNXQDGA', '8493558'), + (44567, 485, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ZdNXQDGA', '8493559'), + (44568, 485, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ZdNXQDGA', '8493560'), + (44569, 485, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'ZdNXQDGA', '8493561'), + (44570, 485, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ZdNXQDGA', '8493572'), + (44571, 485, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ZdNXQDGA', '8540725'), + (44572, 485, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ZdNXQDGA', '8555421'), + (44573, 486, 259, 'attending', '2021-05-18 21:55:30', '2025-12-17 19:47:46', 'x4oaR1Gm', '3149490'), + (44574, 486, 646, 'not_attending', '2021-05-14 05:34:22', '2025-12-17 19:47:46', 'x4oaR1Gm', '3539921'), + (44575, 486, 647, 'attending', '2021-05-22 21:42:01', '2025-12-17 19:47:46', 'x4oaR1Gm', '3539922'), + (44576, 486, 648, 'not_attending', '2021-05-29 16:15:50', '2025-12-17 19:47:47', 'x4oaR1Gm', '3539923'), + (44577, 486, 785, 'maybe', '2021-05-16 05:54:26', '2025-12-17 19:47:46', 'x4oaR1Gm', '3779779'), + (44578, 486, 792, 'maybe', '2021-05-16 03:08:24', '2025-12-17 19:47:46', 'x4oaR1Gm', '3793156'), + (44579, 486, 806, 'not_attending', '2021-05-14 05:31:46', '2025-12-17 19:47:46', 'x4oaR1Gm', '3806392'), + (44580, 486, 815, 'maybe', '2021-05-19 02:37:07', '2025-12-17 19:47:47', 'x4oaR1Gm', '3818136'), + (44581, 486, 823, 'maybe', '2021-06-12 17:26:49', '2025-12-17 19:47:48', 'x4oaR1Gm', '3974109'), + (44582, 486, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'x4oaR1Gm', '3975311'), + (44583, 486, 828, 'attending', '2021-06-12 22:38:30', '2025-12-17 19:47:47', 'x4oaR1Gm', '3975312'), + (44584, 486, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'x4oaR1Gm', '3994992'), + (44585, 486, 844, 'maybe', '2021-06-12 05:36:32', '2025-12-17 19:47:38', 'x4oaR1Gm', '4014338'), + (44586, 486, 857, 'maybe', '2021-11-24 06:18:14', '2025-12-17 19:47:37', 'x4oaR1Gm', '4015731'), + (44587, 486, 867, 'attending', '2021-06-26 21:41:40', '2025-12-17 19:47:38', 'x4oaR1Gm', '4021848'), + (44588, 486, 869, 'maybe', '2021-06-16 21:15:03', '2025-12-17 19:47:38', 'x4oaR1Gm', '4136744'), + (44589, 486, 870, 'attending', '2021-07-03 20:17:17', '2025-12-17 19:47:39', 'x4oaR1Gm', '4136937'), + (44590, 486, 871, 'attending', '2021-07-10 20:09:11', '2025-12-17 19:47:39', 'x4oaR1Gm', '4136938'), + (44591, 486, 872, 'maybe', '2021-06-29 02:03:21', '2025-12-17 19:47:40', 'x4oaR1Gm', '4136947'), + (44592, 486, 884, 'not_attending', '2021-08-15 01:55:40', '2025-12-17 19:47:42', 'x4oaR1Gm', '4210314'), + (44593, 486, 885, 'attending', '2021-06-27 22:48:03', '2025-12-17 19:47:38', 'x4oaR1Gm', '4222370'), + (44594, 486, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oaR1Gm', '4225444'), + (44595, 486, 898, 'attending', '2021-07-01 18:51:30', '2025-12-17 19:47:38', 'x4oaR1Gm', '4236746'), + (44596, 486, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'x4oaR1Gm', '4239259'), + (44597, 486, 900, 'not_attending', '2021-07-21 20:00:13', '2025-12-17 19:47:40', 'x4oaR1Gm', '4240316'), + (44598, 486, 901, 'maybe', '2021-07-27 00:55:58', '2025-12-17 19:47:40', 'x4oaR1Gm', '4240317'), + (44599, 486, 902, 'attending', '2021-08-07 20:56:42', '2025-12-17 19:47:41', 'x4oaR1Gm', '4240318'), + (44600, 486, 903, 'attending', '2021-08-14 13:34:48', '2025-12-17 19:47:42', 'x4oaR1Gm', '4240320'), + (44601, 486, 905, 'maybe', '2021-07-05 14:53:51', '2025-12-17 19:47:39', 'x4oaR1Gm', '4250163'), + (44602, 486, 908, 'not_attending', '2021-07-13 17:17:10', '2025-12-17 19:47:39', 'x4oaR1Gm', '4257613'), + (44603, 486, 911, 'maybe', '2021-07-11 03:20:16', '2025-12-17 19:47:39', 'x4oaR1Gm', '4264465'), + (44604, 486, 917, 'attending', '2021-07-14 03:26:36', '2025-12-17 19:47:39', 'x4oaR1Gm', '4274481'), + (44605, 486, 919, 'maybe', '2021-07-15 02:14:33', '2025-12-17 19:47:39', 'x4oaR1Gm', '4275957'), + (44606, 486, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oaR1Gm', '4277819'), + (44607, 486, 927, 'maybe', '2021-07-27 19:53:09', '2025-12-17 19:47:40', 'x4oaR1Gm', '4297216'), + (44608, 486, 931, 'maybe', '2021-07-27 19:51:10', '2025-12-17 19:47:40', 'x4oaR1Gm', '4301535'), + (44609, 486, 933, 'attending', '2021-07-28 21:49:21', '2025-12-17 19:47:40', 'x4oaR1Gm', '4301723'), + (44610, 486, 934, 'not_attending', '2021-08-04 22:45:32', '2025-12-17 19:47:41', 'x4oaR1Gm', '4302093'), + (44611, 486, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oaR1Gm', '4304151'), + (44612, 486, 946, 'maybe', '2021-08-02 05:16:47', '2025-12-17 19:47:40', 'x4oaR1Gm', '4314835'), + (44613, 486, 952, 'maybe', '2021-08-02 02:31:14', '2025-12-17 19:47:41', 'x4oaR1Gm', '4318286'), + (44614, 486, 961, 'not_attending', '2021-08-08 23:29:39', '2025-12-17 19:47:42', 'x4oaR1Gm', '4345519'), + (44615, 486, 964, 'maybe', '2021-08-23 20:29:23', '2025-12-17 19:47:42', 'x4oaR1Gm', '4353160'), + (44616, 486, 971, 'maybe', '2021-08-29 04:06:35', '2025-12-17 19:47:43', 'x4oaR1Gm', '4356801'), + (44617, 486, 972, 'maybe', '2021-08-14 14:10:39', '2025-12-17 19:47:42', 'x4oaR1Gm', '4358025'), + (44618, 486, 973, 'maybe', '2021-08-17 19:51:37', '2025-12-17 19:47:42', 'x4oaR1Gm', '4366186'), + (44619, 486, 974, 'not_attending', '2021-08-28 16:11:48', '2025-12-17 19:47:43', 'x4oaR1Gm', '4366187'), + (44620, 486, 987, 'maybe', '2021-09-01 14:17:01', '2025-12-17 19:47:43', 'x4oaR1Gm', '4402634'), + (44621, 486, 988, 'not_attending', '2021-08-27 20:10:50', '2025-12-17 19:47:42', 'x4oaR1Gm', '4402823'), + (44622, 486, 990, 'attending', '2021-08-29 04:04:12', '2025-12-17 19:47:43', 'x4oaR1Gm', '4420735'), + (44623, 486, 991, 'attending', '2021-09-11 17:48:29', '2025-12-17 19:47:43', 'x4oaR1Gm', '4420738'), + (44624, 486, 992, 'attending', '2021-09-18 18:13:20', '2025-12-17 19:47:33', 'x4oaR1Gm', '4420739'), + (44625, 486, 993, 'not_attending', '2021-09-25 17:52:25', '2025-12-17 19:47:34', 'x4oaR1Gm', '4420741'), + (44626, 486, 995, 'not_attending', '2021-10-09 05:34:46', '2025-12-17 19:47:34', 'x4oaR1Gm', '4420744'), + (44627, 486, 996, 'attending', '2021-10-16 20:28:31', '2025-12-17 19:47:35', 'x4oaR1Gm', '4420747'), + (44628, 486, 997, 'attending', '2021-10-23 21:03:32', '2025-12-17 19:47:35', 'x4oaR1Gm', '4420748'), + (44629, 486, 998, 'not_attending', '2021-10-25 07:21:51', '2025-12-17 19:47:36', 'x4oaR1Gm', '4420749'), + (44630, 486, 1016, 'maybe', '2021-09-08 04:05:58', '2025-12-17 19:47:43', 'x4oaR1Gm', '4441271'), + (44631, 486, 1019, 'maybe', '2021-09-06 15:35:07', '2025-12-17 19:47:43', 'x4oaR1Gm', '4450515'), + (44632, 486, 1020, 'attending', '2021-09-13 22:43:24', '2025-12-17 19:47:43', 'x4oaR1Gm', '4451787'), + (44633, 486, 1021, 'maybe', '2021-09-17 00:59:24', '2025-12-17 19:47:34', 'x4oaR1Gm', '4451803'), + (44634, 486, 1022, 'maybe', '2021-09-13 21:35:21', '2025-12-17 19:47:43', 'x4oaR1Gm', '4458628'), + (44635, 486, 1023, 'not_attending', '2021-09-11 17:48:50', '2025-12-17 19:47:43', 'x4oaR1Gm', '4461883'), + (44636, 486, 1025, 'attending', '2021-09-14 22:23:42', '2025-12-17 19:47:43', 'x4oaR1Gm', '4462052'), + (44637, 486, 1029, 'maybe', '2021-09-17 00:59:48', '2025-12-17 19:47:43', 'x4oaR1Gm', '4473063'), + (44638, 486, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'x4oaR1Gm', '4508342'), + (44639, 486, 1068, 'maybe', '2021-09-30 15:31:20', '2025-12-17 19:47:34', 'x4oaR1Gm', '4511471'), + (44640, 486, 1070, 'maybe', '2021-09-30 17:04:44', '2025-12-17 19:47:34', 'x4oaR1Gm', '4512562'), + (44641, 486, 1072, 'maybe', '2021-10-05 06:22:13', '2025-12-17 19:47:34', 'x4oaR1Gm', '4516287'), + (44642, 486, 1077, 'maybe', '2021-10-12 21:38:04', '2025-12-17 19:47:34', 'x4oaR1Gm', '4540903'), + (44643, 486, 1078, 'maybe', '2021-10-04 21:30:42', '2025-12-17 19:47:34', 'x4oaR1Gm', '4541281'), + (44644, 486, 1079, 'maybe', '2021-10-14 19:05:57', '2025-12-17 19:47:35', 'x4oaR1Gm', '4563823'), + (44645, 486, 1082, 'maybe', '2021-10-14 07:34:21', '2025-12-17 19:47:35', 'x4oaR1Gm', '4566762'), + (44646, 486, 1086, 'not_attending', '2021-10-13 06:27:44', '2025-12-17 19:47:35', 'x4oaR1Gm', '4568602'), + (44647, 486, 1087, 'not_attending', '2021-10-16 19:17:42', '2025-12-17 19:47:35', 'x4oaR1Gm', '4572153'), + (44648, 486, 1089, 'maybe', '2021-10-16 14:44:54', '2025-12-17 19:47:35', 'x4oaR1Gm', '4574712'), + (44649, 486, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'x4oaR1Gm', '4585962'), + (44650, 486, 1094, 'attending', '2021-10-31 20:56:30', '2025-12-17 19:47:36', 'x4oaR1Gm', '4587337'), + (44651, 486, 1095, 'maybe', '2021-10-27 05:56:52', '2025-12-17 19:47:35', 'x4oaR1Gm', '4596356'), + (44652, 486, 1097, 'maybe', '2021-10-28 14:01:28', '2025-12-17 19:47:36', 'x4oaR1Gm', '4598860'), + (44653, 486, 1098, 'maybe', '2021-10-28 14:12:08', '2025-12-17 19:47:36', 'x4oaR1Gm', '4598861'), + (44654, 486, 1099, 'maybe', '2021-10-31 14:14:56', '2025-12-17 19:47:36', 'x4oaR1Gm', '4602797'), + (44655, 486, 1108, 'maybe', '2021-11-12 01:19:23', '2025-12-17 19:47:37', 'x4oaR1Gm', '4632276'), + (44656, 486, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'x4oaR1Gm', '4637896'), + (44657, 486, 1116, 'maybe', '2021-11-14 02:21:37', '2025-12-17 19:47:37', 'x4oaR1Gm', '4642994'), + (44658, 486, 1117, 'not_attending', '2021-12-08 20:43:25', '2025-12-17 19:47:38', 'x4oaR1Gm', '4642995'), + (44659, 486, 1118, 'not_attending', '2021-12-15 05:46:53', '2025-12-17 19:47:38', 'x4oaR1Gm', '4642996'), + (44660, 486, 1119, 'not_attending', '2021-12-22 23:14:34', '2025-12-17 19:47:31', 'x4oaR1Gm', '4642997'), + (44661, 486, 1126, 'not_attending', '2021-12-11 23:21:09', '2025-12-17 19:47:38', 'x4oaR1Gm', '4645687'), + (44662, 486, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'x4oaR1Gm', '4645698'), + (44663, 486, 1128, 'maybe', '2021-11-14 22:31:38', '2025-12-17 19:47:37', 'x4oaR1Gm', '4645704'), + (44664, 486, 1129, 'attending', '2021-11-27 23:44:41', '2025-12-17 19:47:37', 'x4oaR1Gm', '4645705'), + (44665, 486, 1130, 'maybe', '2021-11-28 20:20:04', '2025-12-17 19:47:37', 'x4oaR1Gm', '4658824'), + (44666, 486, 1131, 'maybe', '2021-11-30 02:42:43', '2025-12-17 19:47:31', 'x4oaR1Gm', '4658825'), + (44667, 486, 1132, 'attending', '2021-11-21 08:53:38', '2025-12-17 19:47:37', 'x4oaR1Gm', '4660657'), + (44668, 486, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'x4oaR1Gm', '4668385'), + (44669, 486, 1143, 'maybe', '2021-12-01 21:48:37', '2025-12-17 19:47:37', 'x4oaR1Gm', '4683667'), + (44670, 486, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'x4oaR1Gm', '4694407'), + (44671, 486, 1152, 'not_attending', '2022-01-12 22:30:15', '2025-12-17 19:47:31', 'x4oaR1Gm', '4708705'), + (44672, 486, 1164, 'maybe', '2021-12-29 01:44:33', '2025-12-17 19:47:31', 'x4oaR1Gm', '4724208'), + (44673, 486, 1174, 'attending', '2022-01-16 00:01:01', '2025-12-17 19:47:31', 'x4oaR1Gm', '4736496'), + (44674, 486, 1175, 'attending', '2022-01-23 02:41:08', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736497'), + (44675, 486, 1176, 'not_attending', '2022-02-05 23:05:25', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736498'), + (44676, 486, 1177, 'not_attending', '2022-02-12 23:24:31', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736499'), + (44677, 486, 1178, 'attending', '2022-01-29 00:26:56', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736500'), + (44678, 486, 1179, 'attending', '2022-02-19 23:03:56', '2025-12-17 19:47:32', 'x4oaR1Gm', '4736501'), + (44679, 486, 1181, 'attending', '2022-03-05 23:27:37', '2025-12-17 19:47:33', 'x4oaR1Gm', '4736503'), + (44680, 486, 1182, 'attending', '2022-03-12 23:00:21', '2025-12-17 19:47:33', 'x4oaR1Gm', '4736504'), + (44681, 486, 1185, 'not_attending', '2022-01-12 03:59:10', '2025-12-17 19:47:31', 'x4oaR1Gm', '4746789'), + (44682, 486, 1188, 'maybe', '2022-01-12 03:57:38', '2025-12-17 19:47:32', 'x4oaR1Gm', '4753929'), + (44683, 486, 1228, 'not_attending', '2022-02-11 22:06:15', '2025-12-17 19:47:32', 'x4oaR1Gm', '5028238'), + (44684, 486, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'x4oaR1Gm', '5038850'), + (44685, 486, 1236, 'maybe', '2022-02-15 05:13:02', '2025-12-17 19:47:32', 'x4oaR1Gm', '5045826'), + (44686, 486, 1238, 'maybe', '2022-03-03 00:25:07', '2025-12-17 19:47:33', 'x4oaR1Gm', '5052236'), + (44687, 486, 1239, 'attending', '2022-03-03 00:25:13', '2025-12-17 19:47:33', 'x4oaR1Gm', '5052238'), + (44688, 486, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'x4oaR1Gm', '5132533'), + (44689, 486, 1272, 'not_attending', '2022-03-19 15:50:45', '2025-12-17 19:47:25', 'x4oaR1Gm', '5186582'), + (44690, 486, 1273, 'attending', '2022-03-26 19:30:15', '2025-12-17 19:47:25', 'x4oaR1Gm', '5186583'), + (44691, 486, 1274, 'not_attending', '2022-03-16 07:53:32', '2025-12-17 19:47:26', 'x4oaR1Gm', '5186585'), + (44692, 486, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'x4oaR1Gm', '5190437'), + (44693, 486, 1284, 'maybe', '2022-04-16 01:54:07', '2025-12-17 19:47:27', 'x4oaR1Gm', '5195095'), + (44694, 486, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'x4oaR1Gm', '5215989'), + (44695, 486, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'x4oaR1Gm', '5223686'), + (44696, 486, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'x4oaR1Gm', '5227432'), + (44697, 486, 1319, 'maybe', '2022-04-14 04:30:38', '2025-12-17 19:47:27', 'x4oaR1Gm', '5238353'), + (44698, 486, 1332, 'maybe', '2022-04-15 03:22:22', '2025-12-17 19:47:27', 'x4oaR1Gm', '5243274'), + (44699, 486, 1346, 'not_attending', '2022-04-21 19:08:40', '2025-12-17 19:47:27', 'x4oaR1Gm', '5247467'), + (44700, 486, 1362, 'attending', '2022-04-30 21:28:33', '2025-12-17 19:47:28', 'x4oaR1Gm', '5260800'), + (44701, 486, 1374, 'maybe', '2022-05-01 17:47:20', '2025-12-17 19:47:28', 'x4oaR1Gm', '5269930'), + (44702, 486, 1378, 'maybe', '2022-05-06 17:52:57', '2025-12-17 19:47:29', 'x4oaR1Gm', '5271448'), + (44703, 486, 1379, 'attending', '2022-05-20 13:37:39', '2025-12-17 19:47:29', 'x4oaR1Gm', '5271449'), + (44704, 486, 1380, 'not_attending', '2022-05-26 21:45:27', '2025-12-17 19:47:30', 'x4oaR1Gm', '5271450'), + (44705, 486, 1383, 'not_attending', '2022-05-07 19:44:18', '2025-12-17 19:47:28', 'x4oaR1Gm', '5276469'), + (44706, 486, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'x4oaR1Gm', '5278159'), + (44707, 486, 1407, 'not_attending', '2022-05-30 02:53:26', '2025-12-17 19:47:30', 'x4oaR1Gm', '5363695'), + (44708, 486, 1408, 'not_attending', '2022-05-20 13:38:14', '2025-12-17 19:47:29', 'x4oaR1Gm', '5365960'), + (44709, 486, 1414, 'maybe', '2022-05-19 02:14:54', '2025-12-17 19:47:29', 'x4oaR1Gm', '5368445'), + (44710, 486, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'x4oaR1Gm', '5368973'), + (44711, 486, 1419, 'not_attending', '2022-06-07 23:34:25', '2025-12-17 19:47:30', 'x4oaR1Gm', '5373081'), + (44712, 486, 1427, 'not_attending', '2022-05-25 21:16:00', '2025-12-17 19:47:30', 'x4oaR1Gm', '5376074'), + (44713, 486, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'x4oaR1Gm', '5378247'), + (44714, 486, 1431, 'maybe', '2022-06-03 22:08:16', '2025-12-17 19:47:31', 'x4oaR1Gm', '5389605'), + (44715, 486, 1442, 'not_attending', '2022-06-03 22:08:03', '2025-12-17 19:47:17', 'x4oaR1Gm', '5397265'), + (44716, 486, 1451, 'maybe', '2022-06-14 23:06:31', '2025-12-17 19:47:17', 'x4oaR1Gm', '5403967'), + (44717, 486, 1456, 'maybe', '2022-06-15 15:08:02', '2025-12-17 19:47:17', 'x4oaR1Gm', '5404779'), + (44718, 486, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'x4oaR1Gm', '5404786'), + (44719, 486, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'x4oaR1Gm', '5405203'), + (44720, 486, 1478, 'not_attending', '2022-06-15 15:07:36', '2025-12-17 19:47:19', 'x4oaR1Gm', '5408794'), + (44721, 486, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'x4oaR1Gm', '5411699'), + (44722, 486, 1482, 'maybe', '2022-06-25 16:51:06', '2025-12-17 19:47:19', 'x4oaR1Gm', '5412550'), + (44723, 486, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'x4oaR1Gm', '5415046'), + (44724, 486, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'x4oaR1Gm', '5422086'), + (44725, 486, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'x4oaR1Gm', '5422406'), + (44726, 486, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'x4oaR1Gm', '5424565'), + (44727, 486, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'x4oaR1Gm', '5426882'), + (44728, 486, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'x4oaR1Gm', '5427083'), + (44729, 486, 1513, 'not_attending', '2022-07-11 05:01:28', '2025-12-17 19:47:20', 'x4oaR1Gm', '5441125'), + (44730, 486, 1514, 'not_attending', '2022-07-19 02:54:14', '2025-12-17 19:47:20', 'x4oaR1Gm', '5441126'), + (44731, 486, 1515, 'not_attending', '2022-08-06 20:34:44', '2025-12-17 19:47:21', 'x4oaR1Gm', '5441128'), + (44732, 486, 1516, 'maybe', '2022-08-20 16:55:17', '2025-12-17 19:47:23', 'x4oaR1Gm', '5441129'), + (44733, 486, 1517, 'not_attending', '2022-08-25 00:35:20', '2025-12-17 19:47:23', 'x4oaR1Gm', '5441130'), + (44734, 486, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'x4oaR1Gm', '5441131'), + (44735, 486, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'x4oaR1Gm', '5441132'), + (44736, 486, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'x4oaR1Gm', '5446643'), + (44737, 486, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'x4oaR1Gm', '5453325'), + (44738, 486, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'x4oaR1Gm', '5454516'), + (44739, 486, 1544, 'attending', '2022-09-15 20:14:37', '2025-12-17 19:47:11', 'x4oaR1Gm', '5454517'), + (44740, 486, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'x4oaR1Gm', '5454605'), + (44741, 486, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'x4oaR1Gm', '5455037'), + (44742, 486, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'x4oaR1Gm', '5461278'), + (44743, 486, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'x4oaR1Gm', '5469480'), + (44744, 486, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'x4oaR1Gm', '5471073'), + (44745, 486, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'x4oaR1Gm', '5474663'), + (44746, 486, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'x4oaR1Gm', '5482022'), + (44747, 486, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'x4oaR1Gm', '5482793'), + (44748, 486, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'x4oaR1Gm', '5488912'), + (44749, 486, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'x4oaR1Gm', '5492192'), + (44750, 486, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'x4oaR1Gm', '5493139'), + (44751, 486, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'x4oaR1Gm', '5493200'), + (44752, 486, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'x4oaR1Gm', '5502188'), + (44753, 486, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'x4oaR1Gm', '5505059'), + (44754, 486, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'x4oaR1Gm', '5509055'), + (44755, 486, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'x4oaR1Gm', '5512862'), + (44756, 486, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'x4oaR1Gm', '5513985'), + (44757, 486, 1626, 'attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'x4oaR1Gm', '5519981'), + (44758, 486, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'x4oaR1Gm', '5522550'), + (44759, 486, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'x4oaR1Gm', '5534683'), + (44760, 486, 1635, 'maybe', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'x4oaR1Gm', '5537735'), + (44761, 486, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'x4oaR1Gm', '5540859'), + (44762, 486, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'x4oaR1Gm', '5546619'), + (44763, 486, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'x4oaR1Gm', '5555245'), + (44764, 486, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'x4oaR1Gm', '5557747'), + (44765, 486, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'x4oaR1Gm', '5560255'), + (44766, 486, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'x4oaR1Gm', '5562906'), + (44767, 486, 1667, 'not_attending', '2022-09-24 21:44:41', '2025-12-17 19:47:11', 'x4oaR1Gm', '5563221'), + (44768, 486, 1668, 'not_attending', '2022-10-01 17:41:03', '2025-12-17 19:47:12', 'x4oaR1Gm', '5563222'), + (44769, 486, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'x4oaR1Gm', '5600604'), + (44770, 486, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'x4oaR1Gm', '5605544'), + (44771, 486, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'x4oaR1Gm', '5606737'), + (44772, 486, 1719, 'attending', '2022-10-06 00:04:16', '2025-12-17 19:47:12', 'x4oaR1Gm', '5630958'), + (44773, 486, 1720, 'not_attending', '2022-10-09 02:34:14', '2025-12-17 19:47:12', 'x4oaR1Gm', '5630959'), + (44774, 486, 1721, 'not_attending', '2022-10-21 17:48:48', '2025-12-17 19:47:13', 'x4oaR1Gm', '5630960'), + (44775, 486, 1722, 'not_attending', '2022-10-24 19:39:06', '2025-12-17 19:47:14', 'x4oaR1Gm', '5630961'), + (44776, 486, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'x4oaR1Gm', '5630962'), + (44777, 486, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'x4oaR1Gm', '5630966'), + (44778, 486, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'x4oaR1Gm', '5630967'), + (44779, 486, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'x4oaR1Gm', '5630968'), + (44780, 486, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'x4oaR1Gm', '5635406'), + (44781, 486, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'x4oaR1Gm', '5638765'), + (44782, 486, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'x4oaR1Gm', '5640097'), + (44783, 486, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'x4oaR1Gm', '5640843'), + (44784, 486, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'x4oaR1Gm', '5641521'), + (44785, 486, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'x4oaR1Gm', '5642818'), + (44786, 486, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'x4oaR1Gm', '5652395'), + (44787, 486, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'x4oaR1Gm', '5670445'), + (44788, 486, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'x4oaR1Gm', '5671637'), + (44789, 486, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'x4oaR1Gm', '5672329'), + (44790, 486, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'x4oaR1Gm', '5674057'), + (44791, 486, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'x4oaR1Gm', '5674060'), + (44792, 486, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'x4oaR1Gm', '5677461'), + (44793, 486, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'x4oaR1Gm', '5698046'), + (44794, 486, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'x4oaR1Gm', '5699760'), + (44795, 486, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'x4oaR1Gm', '5741601'), + (44796, 486, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'x4oaR1Gm', '5763458'), + (44797, 486, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'x4oaR1Gm', '5774172'), + (44798, 486, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'x4oaR1Gm', '5818247'), + (44799, 486, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'x4oaR1Gm', '5819471'), + (44800, 486, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'x4oaR1Gm', '5827739'), + (44801, 486, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'x4oaR1Gm', '5844306'), + (44802, 486, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'x4oaR1Gm', '5850159'), + (44803, 486, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'x4oaR1Gm', '5858999'), + (44804, 486, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'x4oaR1Gm', '5871984'), + (44805, 486, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'x4oaR1Gm', '5876354'), + (44806, 486, 1865, 'not_attending', '2023-01-23 23:17:13', '2025-12-17 19:47:06', 'x4oaR1Gm', '5879676'), + (44807, 486, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'x4oaR1Gm', '5880939'), + (44808, 486, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'x4oaR1Gm', '5880940'), + (44809, 486, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'x4oaR1Gm', '5880942'), + (44810, 486, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'x4oaR1Gm', '5880943'), + (44811, 486, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'x4oaR1Gm', '5887890'), + (44812, 486, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'x4oaR1Gm', '5888598'), + (44813, 486, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'x4oaR1Gm', '5893260'), + (44814, 486, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'x4oaR1Gm', '5899826'), + (44815, 486, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'x4oaR1Gm', '5900199'), + (44816, 486, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'x4oaR1Gm', '5900200'), + (44817, 486, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'x4oaR1Gm', '5900202'), + (44818, 486, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'x4oaR1Gm', '5900203'), + (44819, 486, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'x4oaR1Gm', '5901108'), + (44820, 486, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'x4oaR1Gm', '5901126'), + (44821, 486, 1897, 'not_attending', '2023-02-10 18:29:31', '2025-12-17 19:47:07', 'x4oaR1Gm', '5901128'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (44822, 486, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'x4oaR1Gm', '5909655'), + (44823, 486, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'x4oaR1Gm', '5910522'), + (44824, 486, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'x4oaR1Gm', '5910526'), + (44825, 486, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'x4oaR1Gm', '5910528'), + (44826, 486, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'x4oaR1Gm', '5916219'), + (44827, 486, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'x4oaR1Gm', '5936234'), + (44828, 486, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'x4oaR1Gm', '5958351'), + (44829, 486, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'x4oaR1Gm', '5959751'), + (44830, 486, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'x4oaR1Gm', '5959755'), + (44831, 486, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'x4oaR1Gm', '5960055'), + (44832, 486, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'x4oaR1Gm', '5961684'), + (44833, 486, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'x4oaR1Gm', '5962132'), + (44834, 486, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'x4oaR1Gm', '5962133'), + (44835, 486, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'x4oaR1Gm', '5962134'), + (44836, 486, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'x4oaR1Gm', '5962317'), + (44837, 486, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'x4oaR1Gm', '5962318'), + (44838, 486, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'x4oaR1Gm', '5965933'), + (44839, 486, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'x4oaR1Gm', '5967014'), + (44840, 486, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'x4oaR1Gm', '5972815'), + (44841, 486, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'x4oaR1Gm', '5974016'), + (44842, 486, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'x4oaR1Gm', '5981515'), + (44843, 486, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'x4oaR1Gm', '5993516'), + (44844, 486, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'x4oaR1Gm', '5998939'), + (44845, 486, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'x4oaR1Gm', '6028191'), + (44846, 486, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'x4oaR1Gm', '6040066'), + (44847, 486, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'x4oaR1Gm', '6042717'), + (44848, 486, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'x4oaR1Gm', '6044838'), + (44849, 486, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'x4oaR1Gm', '6044839'), + (44850, 486, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oaR1Gm', '6045684'), + (44851, 486, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'x4oaR1Gm', '6050104'), + (44852, 486, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'x4oaR1Gm', '6053195'), + (44853, 486, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'x4oaR1Gm', '6053198'), + (44854, 486, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'x4oaR1Gm', '6056085'), + (44855, 486, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'x4oaR1Gm', '6056916'), + (44856, 486, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'x4oaR1Gm', '6059290'), + (44857, 486, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'x4oaR1Gm', '6060328'), + (44858, 486, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'x4oaR1Gm', '6061037'), + (44859, 486, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'x4oaR1Gm', '6061039'), + (44860, 486, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'x4oaR1Gm', '6067245'), + (44861, 486, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'x4oaR1Gm', '6068094'), + (44862, 486, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'x4oaR1Gm', '6068252'), + (44863, 486, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'x4oaR1Gm', '6068253'), + (44864, 486, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'x4oaR1Gm', '6068254'), + (44865, 486, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'x4oaR1Gm', '6068280'), + (44866, 486, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'x4oaR1Gm', '6069093'), + (44867, 486, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'x4oaR1Gm', '6072528'), + (44868, 486, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'x4oaR1Gm', '6079840'), + (44869, 486, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'x4oaR1Gm', '6083398'), + (44870, 486, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'x4oaR1Gm', '6093504'), + (44871, 486, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'x4oaR1Gm', '6097414'), + (44872, 486, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'x4oaR1Gm', '6097442'), + (44873, 486, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'x4oaR1Gm', '6097684'), + (44874, 486, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'x4oaR1Gm', '6098762'), + (44875, 486, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'x4oaR1Gm', '6101362'), + (44876, 486, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'x4oaR1Gm', '6103752'), + (44877, 486, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'x4oaR1Gm', '6107314'), + (44878, 487, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'mb1neeEd', '6632757'), + (44879, 487, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mb1neeEd', '6644187'), + (44880, 487, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mb1neeEd', '6648951'), + (44881, 487, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mb1neeEd', '6648952'), + (44882, 487, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mb1neeEd', '6651141'), + (44883, 487, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mb1neeEd', '6655401'), + (44884, 487, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mb1neeEd', '6661585'), + (44885, 487, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mb1neeEd', '6661588'), + (44886, 487, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mb1neeEd', '6661589'), + (44887, 487, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mb1neeEd', '6699906'), + (44888, 487, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mb1neeEd', '6699913'), + (44889, 487, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mb1neeEd', '6701109'), + (44890, 487, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mb1neeEd', '6705219'), + (44891, 487, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mb1neeEd', '6710153'), + (44892, 487, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mb1neeEd', '6711552'), + (44893, 487, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mb1neeEd', '6711553'), + (44894, 487, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mb1neeEd', '6722688'), + (44895, 487, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mb1neeEd', '6730620'), + (44896, 487, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mb1neeEd', '6730642'), + (44897, 487, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mb1neeEd', '6740364'), + (44898, 487, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mb1neeEd', '6743829'), + (44899, 487, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mb1neeEd', '7030380'), + (44900, 487, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mb1neeEd', '7033677'), + (44901, 487, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mb1neeEd', '7035415'), + (44902, 487, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mb1neeEd', '7044715'), + (44903, 487, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mb1neeEd', '7050318'), + (44904, 487, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mb1neeEd', '7050319'), + (44905, 487, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mb1neeEd', '7050322'), + (44906, 487, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mb1neeEd', '7057804'), + (44907, 487, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mb1neeEd', '7072824'), + (44908, 487, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mb1neeEd', '7074348'), + (44909, 487, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mb1neeEd', '7089267'), + (44910, 487, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mb1neeEd', '7098747'), + (44911, 487, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mb1neeEd', '7113468'), + (44912, 487, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mb1neeEd', '7114856'), + (44913, 487, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mb1neeEd', '7114951'), + (44914, 487, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mb1neeEd', '7114955'), + (44915, 487, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mb1neeEd', '7114956'), + (44916, 487, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mb1neeEd', '7153615'), + (44917, 487, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mb1neeEd', '7159484'), + (44918, 487, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mb1neeEd', '7178446'), + (44919, 488, 246, 'attending', '2020-12-14 22:28:44', '2025-12-17 19:47:55', 'ZdNRzxkd', '3149477'), + (44920, 488, 247, 'not_attending', '2020-12-21 04:00:20', '2025-12-17 19:47:48', 'ZdNRzxkd', '3149478'), + (44921, 488, 248, 'not_attending', '2021-01-08 06:22:31', '2025-12-17 19:47:48', 'ZdNRzxkd', '3149479'), + (44922, 488, 394, 'attending', '2021-01-08 00:27:15', '2025-12-17 19:47:48', 'ZdNRzxkd', '3236449'), + (44923, 488, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ZdNRzxkd', '3314964'), + (44924, 488, 502, 'not_attending', '2020-12-12 21:31:27', '2025-12-17 19:47:55', 'ZdNRzxkd', '3323365'), + (44925, 488, 513, 'not_attending', '2020-12-16 04:09:19', '2025-12-17 19:47:55', 'ZdNRzxkd', '3329383'), + (44926, 488, 519, 'not_attending', '2020-12-16 17:15:12', '2025-12-17 19:47:55', 'ZdNRzxkd', '3337448'), + (44927, 488, 526, 'not_attending', '2020-12-28 23:49:51', '2025-12-17 19:47:48', 'ZdNRzxkd', '3351539'), + (44928, 488, 532, 'not_attending', '2021-01-08 22:44:36', '2025-12-17 19:47:48', 'ZdNRzxkd', '3381412'), + (44929, 488, 534, 'not_attending', '2021-01-09 18:07:02', '2025-12-17 19:47:48', 'ZdNRzxkd', '3384157'), + (44930, 488, 535, 'not_attending', '2021-01-10 04:16:14', '2025-12-17 19:47:48', 'ZdNRzxkd', '3384729'), + (44931, 488, 536, 'not_attending', '2021-01-08 21:07:14', '2025-12-17 19:47:48', 'ZdNRzxkd', '3386848'), + (44932, 488, 538, 'not_attending', '2021-01-10 04:16:50', '2025-12-17 19:47:48', 'ZdNRzxkd', '3388151'), + (44933, 488, 539, 'not_attending', '2021-01-10 04:16:44', '2025-12-17 19:47:48', 'ZdNRzxkd', '3389158'), + (44934, 488, 540, 'not_attending', '2021-01-10 04:16:40', '2025-12-17 19:47:48', 'ZdNRzxkd', '3389527'), + (44935, 488, 542, 'attending', '2021-01-11 21:16:03', '2025-12-17 19:47:48', 'ZdNRzxkd', '3395013'), + (44936, 488, 543, 'not_attending', '2021-01-12 03:03:50', '2025-12-17 19:47:48', 'ZdNRzxkd', '3396499'), + (44937, 488, 548, 'not_attending', '2021-01-13 20:28:27', '2025-12-17 19:47:48', 'ZdNRzxkd', '3403650'), + (44938, 488, 549, 'attending', '2021-01-19 00:35:26', '2025-12-17 19:47:48', 'ZdNRzxkd', '3406988'), + (44939, 488, 550, 'attending', '2021-01-18 00:22:05', '2025-12-17 19:47:48', 'ZdNRzxkd', '3407018'), + (44940, 488, 551, 'attending', '2021-01-20 00:13:22', '2025-12-17 19:47:49', 'ZdNRzxkd', '3407219'), + (44941, 488, 555, 'not_attending', '2021-01-23 19:00:57', '2025-12-17 19:47:49', 'ZdNRzxkd', '3416576'), + (44942, 488, 556, 'not_attending', '2021-01-18 18:40:15', '2025-12-17 19:47:49', 'ZdNRzxkd', '3417170'), + (44943, 488, 558, 'attending', '2021-01-22 20:01:59', '2025-12-17 19:47:49', 'ZdNRzxkd', '3418925'), + (44944, 488, 562, 'attending', '2021-01-23 19:26:52', '2025-12-17 19:47:49', 'ZdNRzxkd', '3424911'), + (44945, 488, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'ZdNRzxkd', '3426074'), + (44946, 488, 567, 'not_attending', '2021-01-26 16:23:55', '2025-12-17 19:47:50', 'ZdNRzxkd', '3428895'), + (44947, 488, 568, 'not_attending', '2021-01-27 21:54:48', '2025-12-17 19:47:50', 'ZdNRzxkd', '3430267'), + (44948, 488, 569, 'attending', '2021-01-27 23:53:46', '2025-12-17 19:47:49', 'ZdNRzxkd', '3432673'), + (44949, 488, 570, 'not_attending', '2021-02-04 15:56:02', '2025-12-17 19:47:50', 'ZdNRzxkd', '3435538'), + (44950, 488, 576, 'attending', '2021-02-03 00:30:47', '2025-12-17 19:47:50', 'ZdNRzxkd', '3438748'), + (44951, 488, 577, 'attending', '2021-01-29 23:31:26', '2025-12-17 19:47:49', 'ZdNRzxkd', '3439167'), + (44952, 488, 578, 'not_attending', '2021-02-01 20:29:51', '2025-12-17 19:47:50', 'ZdNRzxkd', '3440043'), + (44953, 488, 579, 'not_attending', '2021-02-01 20:30:00', '2025-12-17 19:47:50', 'ZdNRzxkd', '3440978'), + (44954, 488, 580, 'not_attending', '2021-01-31 16:23:43', '2025-12-17 19:47:50', 'ZdNRzxkd', '3444240'), + (44955, 488, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'ZdNRzxkd', '3468125'), + (44956, 488, 602, 'not_attending', '2021-02-13 16:41:16', '2025-12-17 19:47:50', 'ZdNRzxkd', '3470303'), + (44957, 488, 604, 'maybe', '2021-02-15 00:24:33', '2025-12-17 19:47:50', 'ZdNRzxkd', '3470305'), + (44958, 488, 605, 'attending', '2021-02-14 23:00:00', '2025-12-17 19:47:50', 'ZdNRzxkd', '3470991'), + (44959, 488, 607, 'not_attending', '2021-02-15 00:24:19', '2025-12-17 19:47:50', 'ZdNRzxkd', '3471882'), + (44960, 488, 612, 'not_attending', '2021-02-17 04:56:39', '2025-12-17 19:47:50', 'ZdNRzxkd', '3490040'), + (44961, 488, 613, 'not_attending', '2021-02-26 02:21:59', '2025-12-17 19:47:50', 'ZdNRzxkd', '3490041'), + (44962, 488, 614, 'maybe', '2021-02-15 00:25:36', '2025-12-17 19:47:51', 'ZdNRzxkd', '3490042'), + (44963, 488, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ZdNRzxkd', '3517815'), + (44964, 488, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ZdNRzxkd', '3517816'), + (44965, 488, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ZdNRzxkd', '3523941'), + (44966, 488, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ZdNRzxkd', '3533850'), + (44967, 488, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ZdNRzxkd', '3536632'), + (44968, 488, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ZdNRzxkd', '3536656'), + (44969, 488, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ZdNRzxkd', '3539916'), + (44970, 488, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ZdNRzxkd', '3539917'), + (44971, 488, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ZdNRzxkd', '3539918'), + (44972, 488, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539919'), + (44973, 488, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539920'), + (44974, 488, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539921'), + (44975, 488, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ZdNRzxkd', '3539922'), + (44976, 488, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ZdNRzxkd', '3539923'), + (44977, 488, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ZdNRzxkd', '3539927'), + (44978, 488, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ZdNRzxkd', '3582734'), + (44979, 488, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ZdNRzxkd', '3583262'), + (44980, 488, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ZdNRzxkd', '3619523'), + (44981, 488, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ZdNRzxkd', '3661369'), + (44982, 488, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ZdNRzxkd', '3674262'), + (44983, 488, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ZdNRzxkd', '3677402'), + (44984, 488, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ZdNRzxkd', '3730212'), + (44985, 488, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ZdNRzxkd', '3793156'), + (44986, 488, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ZdNRzxkd', '3974109'), + (44987, 488, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ZdNRzxkd', '3975311'), + (44988, 488, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ZdNRzxkd', '3975312'), + (44989, 488, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ZdNRzxkd', '3994992'), + (44990, 488, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ZdNRzxkd', '4014338'), + (44991, 488, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ZdNRzxkd', '4021848'), + (44992, 488, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNRzxkd', '4136744'), + (44993, 488, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ZdNRzxkd', '4136937'), + (44994, 488, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ZdNRzxkd', '4136938'), + (44995, 488, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNRzxkd', '4136947'), + (44996, 488, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNRzxkd', '4210314'), + (44997, 488, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ZdNRzxkd', '4225444'), + (44998, 488, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNRzxkd', '4239259'), + (44999, 488, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ZdNRzxkd', '4240316'), + (45000, 488, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ZdNRzxkd', '4240317'), + (45001, 488, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ZdNRzxkd', '4240318'), + (45002, 488, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ZdNRzxkd', '4240320'), + (45003, 488, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNRzxkd', '4250163'), + (45004, 488, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ZdNRzxkd', '4275957'), + (45005, 488, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNRzxkd', '4277819'), + (45006, 488, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNRzxkd', '4301723'), + (45007, 488, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ZdNRzxkd', '4302093'), + (45008, 488, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ZdNRzxkd', '4304151'), + (45009, 488, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ZdNRzxkd', '4356801'), + (45010, 488, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ZdNRzxkd', '4366186'), + (45011, 488, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ZdNRzxkd', '4366187'), + (45012, 488, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ZdNRzxkd', '4420735'), + (45013, 488, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ZdNRzxkd', '4420738'), + (45014, 488, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ZdNRzxkd', '4420739'), + (45015, 488, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ZdNRzxkd', '4420741'), + (45016, 488, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ZdNRzxkd', '4420744'), + (45017, 488, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ZdNRzxkd', '4420747'), + (45018, 488, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ZdNRzxkd', '4420748'), + (45019, 488, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ZdNRzxkd', '4420749'), + (45020, 488, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ZdNRzxkd', '4461883'), + (45021, 488, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ZdNRzxkd', '4508342'), + (45022, 488, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ZdNRzxkd', '4568602'), + (45023, 488, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ZdNRzxkd', '4572153'), + (45024, 488, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ZdNRzxkd', '4585962'), + (45025, 488, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'ZdNRzxkd', '4596356'), + (45026, 488, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ZdNRzxkd', '4598860'), + (45027, 488, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ZdNRzxkd', '4598861'), + (45028, 488, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ZdNRzxkd', '4602797'), + (45029, 488, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ZdNRzxkd', '4637896'), + (45030, 488, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ZdNRzxkd', '4642994'), + (45031, 488, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ZdNRzxkd', '4642995'), + (45032, 488, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ZdNRzxkd', '4642996'), + (45033, 488, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ZdNRzxkd', '4642997'), + (45034, 488, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ZdNRzxkd', '4645687'), + (45035, 488, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ZdNRzxkd', '4645698'), + (45036, 488, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ZdNRzxkd', '4645704'), + (45037, 488, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ZdNRzxkd', '4645705'), + (45038, 488, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ZdNRzxkd', '4668385'), + (45039, 488, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ZdNRzxkd', '4694407'), + (45040, 488, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ZdNRzxkd', '4736497'), + (45041, 488, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ZdNRzxkd', '4736499'), + (45042, 488, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ZdNRzxkd', '4736500'), + (45043, 488, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ZdNRzxkd', '4736503'), + (45044, 488, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ZdNRzxkd', '4736504'), + (45045, 488, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ZdNRzxkd', '4746789'), + (45046, 488, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ZdNRzxkd', '4753929'), + (45047, 488, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ZdNRzxkd', '5038850'), + (45048, 488, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ZdNRzxkd', '5045826'), + (45049, 488, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ZdNRzxkd', '5132533'), + (45050, 488, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ZdNRzxkd', '5186582'), + (45051, 488, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ZdNRzxkd', '5186583'), + (45052, 488, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ZdNRzxkd', '5186585'), + (45053, 488, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ZdNRzxkd', '5190437'), + (45054, 488, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ZdNRzxkd', '5195095'), + (45055, 488, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ZdNRzxkd', '5215989'), + (45056, 488, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ZdNRzxkd', '5223686'), + (45057, 488, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ZdNRzxkd', '5247467'), + (45058, 488, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ZdNRzxkd', '5260800'), + (45059, 488, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ZdNRzxkd', '5269930'), + (45060, 488, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ZdNRzxkd', '5271448'), + (45061, 488, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'ZdNRzxkd', '5271449'), + (45062, 488, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ZdNRzxkd', '5278159'), + (45063, 488, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ZdNRzxkd', '5363695'), + (45064, 488, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ZdNRzxkd', '5365960'), + (45065, 488, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ZdNRzxkd', '5378247'), + (45066, 488, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'ZdNRzxkd', '5389605'), + (45067, 488, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ZdNRzxkd', '5397265'), + (45068, 488, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ZdNRzxkd', '5404786'), + (45069, 488, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ZdNRzxkd', '5405203'), + (45070, 488, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ZdNRzxkd', '5412550'), + (45071, 488, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ZdNRzxkd', '5415046'), + (45072, 488, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ZdNRzxkd', '5422086'), + (45073, 488, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ZdNRzxkd', '5422406'), + (45074, 488, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ZdNRzxkd', '5424565'), + (45075, 488, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ZdNRzxkd', '5426882'), + (45076, 488, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ZdNRzxkd', '5441125'), + (45077, 488, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ZdNRzxkd', '5441126'), + (45078, 488, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ZdNRzxkd', '5441128'), + (45079, 488, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ZdNRzxkd', '5441131'), + (45080, 488, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ZdNRzxkd', '5441132'), + (45081, 488, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ZdNRzxkd', '5453325'), + (45082, 488, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ZdNRzxkd', '5454516'), + (45083, 488, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ZdNRzxkd', '5454605'), + (45084, 488, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ZdNRzxkd', '5455037'), + (45085, 488, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ZdNRzxkd', '5461278'), + (45086, 488, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ZdNRzxkd', '5469480'), + (45087, 488, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ZdNRzxkd', '5474663'), + (45088, 488, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ZdNRzxkd', '5482022'), + (45089, 488, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ZdNRzxkd', '5488912'), + (45090, 488, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ZdNRzxkd', '5492192'), + (45091, 488, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ZdNRzxkd', '5493139'), + (45092, 488, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ZdNRzxkd', '5493200'), + (45093, 488, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ZdNRzxkd', '5502188'), + (45094, 488, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ZdNRzxkd', '5505059'), + (45095, 488, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ZdNRzxkd', '5509055'), + (45096, 488, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ZdNRzxkd', '5512862'), + (45097, 488, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ZdNRzxkd', '5513985'), + (45098, 488, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ZdNRzxkd', '5519981'), + (45099, 488, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ZdNRzxkd', '5522550'), + (45100, 488, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ZdNRzxkd', '5534683'), + (45101, 488, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ZdNRzxkd', '5537735'), + (45102, 488, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ZdNRzxkd', '5540859'), + (45103, 488, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ZdNRzxkd', '5546619'), + (45104, 488, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ZdNRzxkd', '5557747'), + (45105, 488, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ZdNRzxkd', '5560255'), + (45106, 488, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ZdNRzxkd', '5562906'), + (45107, 488, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ZdNRzxkd', '5600604'), + (45108, 488, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ZdNRzxkd', '5605544'), + (45109, 488, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ZdNRzxkd', '5630960'), + (45110, 488, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ZdNRzxkd', '5630961'), + (45111, 488, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ZdNRzxkd', '5630962'), + (45112, 488, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ZdNRzxkd', '5630966'), + (45113, 488, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ZdNRzxkd', '5630967'), + (45114, 488, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ZdNRzxkd', '5630968'), + (45115, 488, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ZdNRzxkd', '5635406'), + (45116, 488, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ZdNRzxkd', '5638765'), + (45117, 488, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ZdNRzxkd', '5640097'), + (45118, 488, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ZdNRzxkd', '5640843'), + (45119, 488, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ZdNRzxkd', '5641521'), + (45120, 488, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ZdNRzxkd', '5642818'), + (45121, 488, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ZdNRzxkd', '5652395'), + (45122, 488, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ZdNRzxkd', '5670445'), + (45123, 488, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ZdNRzxkd', '5671637'), + (45124, 488, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ZdNRzxkd', '5672329'), + (45125, 488, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ZdNRzxkd', '5674057'), + (45126, 488, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ZdNRzxkd', '5674060'), + (45127, 488, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ZdNRzxkd', '5677461'), + (45128, 488, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ZdNRzxkd', '5698046'), + (45129, 488, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ZdNRzxkd', '5699760'), + (45130, 488, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ZdNRzxkd', '5741601'), + (45131, 488, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ZdNRzxkd', '5763458'), + (45132, 488, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ZdNRzxkd', '5774172'), + (45133, 488, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'ZdNRzxkd', '5818247'), + (45134, 488, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ZdNRzxkd', '5819471'), + (45135, 488, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ZdNRzxkd', '5827739'), + (45136, 488, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ZdNRzxkd', '5844306'), + (45137, 488, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ZdNRzxkd', '5850159'), + (45138, 488, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ZdNRzxkd', '5858999'), + (45139, 488, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ZdNRzxkd', '5871984'), + (45140, 488, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ZdNRzxkd', '5876354'), + (45141, 488, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ZdNRzxkd', '5880939'), + (45142, 488, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ZdNRzxkd', '5880940'), + (45143, 488, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ZdNRzxkd', '5880942'), + (45144, 488, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ZdNRzxkd', '5880943'), + (45145, 488, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ZdNRzxkd', '5887890'), + (45146, 488, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ZdNRzxkd', '5888598'), + (45147, 488, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ZdNRzxkd', '5893260'), + (45148, 488, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ZdNRzxkd', '5899826'), + (45149, 488, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ZdNRzxkd', '5900199'), + (45150, 488, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ZdNRzxkd', '5900200'), + (45151, 488, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ZdNRzxkd', '5900202'), + (45152, 488, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ZdNRzxkd', '5900203'), + (45153, 488, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ZdNRzxkd', '5901108'), + (45154, 488, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ZdNRzxkd', '5901126'), + (45155, 488, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ZdNRzxkd', '5909655'), + (45156, 488, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ZdNRzxkd', '5910522'), + (45157, 488, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ZdNRzxkd', '5910526'), + (45158, 488, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ZdNRzxkd', '5910528'), + (45159, 488, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ZdNRzxkd', '5916219'), + (45160, 488, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ZdNRzxkd', '5936234'), + (45161, 488, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ZdNRzxkd', '5958351'), + (45162, 488, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ZdNRzxkd', '5959751'), + (45163, 488, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ZdNRzxkd', '5959755'), + (45164, 488, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ZdNRzxkd', '5960055'), + (45165, 488, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ZdNRzxkd', '5961684'), + (45166, 488, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ZdNRzxkd', '5962132'), + (45167, 488, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ZdNRzxkd', '5962133'), + (45168, 488, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ZdNRzxkd', '5962134'), + (45169, 488, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ZdNRzxkd', '5962317'), + (45170, 488, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ZdNRzxkd', '5962318'), + (45171, 488, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ZdNRzxkd', '5965933'), + (45172, 488, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ZdNRzxkd', '5967014'), + (45173, 488, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ZdNRzxkd', '5972815'), + (45174, 488, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ZdNRzxkd', '5974016'), + (45175, 488, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ZdNRzxkd', '5981515'), + (45176, 488, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ZdNRzxkd', '5993516'), + (45177, 488, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ZdNRzxkd', '5998939'), + (45178, 488, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ZdNRzxkd', '6028191'), + (45179, 488, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ZdNRzxkd', '6040066'), + (45180, 488, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ZdNRzxkd', '6042717'), + (45181, 488, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ZdNRzxkd', '6044838'), + (45182, 488, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ZdNRzxkd', '6044839'), + (45183, 488, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNRzxkd', '6045684'), + (45184, 488, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ZdNRzxkd', '6050104'), + (45185, 488, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ZdNRzxkd', '6053195'), + (45186, 488, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ZdNRzxkd', '6053198'), + (45187, 488, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ZdNRzxkd', '6056085'), + (45188, 488, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ZdNRzxkd', '6056916'), + (45189, 488, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ZdNRzxkd', '6059290'), + (45190, 488, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ZdNRzxkd', '6060328'), + (45191, 488, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ZdNRzxkd', '6061037'), + (45192, 488, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ZdNRzxkd', '6061039'), + (45193, 488, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ZdNRzxkd', '6067245'), + (45194, 488, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ZdNRzxkd', '6068094'), + (45195, 488, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ZdNRzxkd', '6068252'), + (45196, 488, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ZdNRzxkd', '6068253'), + (45197, 488, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ZdNRzxkd', '6068254'), + (45198, 488, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ZdNRzxkd', '6068280'), + (45199, 488, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ZdNRzxkd', '6069093'), + (45200, 488, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ZdNRzxkd', '6072528'), + (45201, 488, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ZdNRzxkd', '6079840'), + (45202, 488, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ZdNRzxkd', '6083398'), + (45203, 488, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ZdNRzxkd', '6093504'), + (45204, 488, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ZdNRzxkd', '6097414'), + (45205, 488, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ZdNRzxkd', '6097442'), + (45206, 488, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ZdNRzxkd', '6097684'), + (45207, 488, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ZdNRzxkd', '6098762'), + (45208, 488, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ZdNRzxkd', '6101361'), + (45209, 488, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ZdNRzxkd', '6101362'), + (45210, 488, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ZdNRzxkd', '6107314'), + (45211, 488, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ZdNRzxkd', '6120034'), + (45212, 488, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ZdNRzxkd', '6136733'), + (45213, 488, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ZdNRzxkd', '6137989'), + (45214, 488, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ZdNRzxkd', '6150864'), + (45215, 488, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ZdNRzxkd', '6155491'), + (45216, 488, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ZdNRzxkd', '6164417'), + (45217, 488, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ZdNRzxkd', '6166388'), + (45218, 488, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ZdNRzxkd', '6176439'), + (45219, 488, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ZdNRzxkd', '6182410'), + (45220, 488, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ZdNRzxkd', '6185812'), + (45221, 488, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ZdNRzxkd', '6187651'), + (45222, 488, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ZdNRzxkd', '6187963'), + (45223, 488, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ZdNRzxkd', '6187964'), + (45224, 488, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ZdNRzxkd', '6187966'), + (45225, 488, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ZdNRzxkd', '6187967'), + (45226, 488, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ZdNRzxkd', '6187969'), + (45227, 488, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ZdNRzxkd', '6334878'), + (45228, 488, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ZdNRzxkd', '6337236'), + (45229, 488, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ZdNRzxkd', '6337970'), + (45230, 488, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ZdNRzxkd', '6338308'), + (45231, 488, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ZdNRzxkd', '6341710'), + (45232, 488, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ZdNRzxkd', '6342044'), + (45233, 488, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ZdNRzxkd', '6342298'), + (45234, 488, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ZdNRzxkd', '6343294'), + (45235, 488, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ZdNRzxkd', '6347034'), + (45236, 488, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ZdNRzxkd', '6347056'), + (45237, 488, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ZdNRzxkd', '6353830'), + (45238, 488, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ZdNRzxkd', '6353831'), + (45239, 488, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ZdNRzxkd', '6357867'), + (45240, 488, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ZdNRzxkd', '6358652'), + (45241, 488, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ZdNRzxkd', '6361709'), + (45242, 488, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ZdNRzxkd', '6361710'), + (45243, 488, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ZdNRzxkd', '6361711'), + (45244, 488, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ZdNRzxkd', '6361712'), + (45245, 488, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ZdNRzxkd', '6361713'), + (45246, 488, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ZdNRzxkd', '6382573'), + (45247, 488, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ZdNRzxkd', '6388604'), + (45248, 488, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ZdNRzxkd', '6394629'), + (45249, 488, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ZdNRzxkd', '6394631'), + (45250, 488, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ZdNRzxkd', '6440863'), + (45251, 488, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ZdNRzxkd', '6445440'), + (45252, 488, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ZdNRzxkd', '6453951'), + (45253, 488, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ZdNRzxkd', '6461696'), + (45254, 488, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ZdNRzxkd', '6462129'), + (45255, 488, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ZdNRzxkd', '6463218'), + (45256, 488, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ZdNRzxkd', '6472181'), + (45257, 488, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ZdNRzxkd', '6482693'), + (45258, 488, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ZdNRzxkd', '6484200'), + (45259, 488, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ZdNRzxkd', '6484680'), + (45260, 488, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ZdNRzxkd', '6507741'), + (45261, 488, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ZdNRzxkd', '6514659'), + (45262, 488, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ZdNRzxkd', '6514660'), + (45263, 488, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ZdNRzxkd', '6519103'), + (45264, 488, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ZdNRzxkd', '6535681'), + (45265, 488, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ZdNRzxkd', '6584747'), + (45266, 488, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ZdNRzxkd', '6587097'), + (45267, 488, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ZdNRzxkd', '6609022'), + (45268, 488, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ZdNRzxkd', '6632757'), + (45269, 488, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ZdNRzxkd', '6644187'), + (45270, 488, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ZdNRzxkd', '6648951'), + (45271, 488, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ZdNRzxkd', '6648952'), + (45272, 488, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ZdNRzxkd', '6655401'), + (45273, 488, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ZdNRzxkd', '6661585'), + (45274, 488, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ZdNRzxkd', '6661588'), + (45275, 488, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ZdNRzxkd', '6661589'), + (45276, 488, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ZdNRzxkd', '6699906'), + (45277, 488, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ZdNRzxkd', '6699913'), + (45278, 488, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ZdNRzxkd', '6701109'), + (45279, 488, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ZdNRzxkd', '6705219'), + (45280, 488, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ZdNRzxkd', '6710153'), + (45281, 488, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ZdNRzxkd', '6711552'), + (45282, 488, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ZdNRzxkd', '6711553'), + (45283, 488, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ZdNRzxkd', '6722688'), + (45284, 488, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ZdNRzxkd', '6730620'), + (45285, 488, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ZdNRzxkd', '6740364'), + (45286, 488, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ZdNRzxkd', '6743829'), + (45287, 488, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ZdNRzxkd', '7030380'), + (45288, 488, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ZdNRzxkd', '7033677'), + (45289, 488, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ZdNRzxkd', '7044715'), + (45290, 488, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ZdNRzxkd', '7050318'), + (45291, 488, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ZdNRzxkd', '7050319'), + (45292, 488, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ZdNRzxkd', '7050322'), + (45293, 488, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ZdNRzxkd', '7057804'), + (45294, 488, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ZdNRzxkd', '7072824'), + (45295, 488, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ZdNRzxkd', '7074348'), + (45296, 488, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ZdNRzxkd', '7074364'), + (45297, 488, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ZdNRzxkd', '7089267'), + (45298, 488, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ZdNRzxkd', '7098747'), + (45299, 488, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ZdNRzxkd', '7113468'), + (45300, 488, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ZdNRzxkd', '7114856'), + (45301, 488, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ZdNRzxkd', '7114951'), + (45302, 488, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ZdNRzxkd', '7114955'), + (45303, 488, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ZdNRzxkd', '7114956'), + (45304, 488, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ZdNRzxkd', '7114957'), + (45305, 488, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ZdNRzxkd', '7159484'), + (45306, 488, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ZdNRzxkd', '7178446'), + (45307, 488, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ZdNRzxkd', '7220467'), + (45308, 488, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ZdNRzxkd', '7240354'), + (45309, 488, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ZdNRzxkd', '7251633'), + (45310, 488, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ZdNRzxkd', '7324073'), + (45311, 488, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ZdNRzxkd', '7324074'), + (45312, 488, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ZdNRzxkd', '7324075'), + (45313, 488, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ZdNRzxkd', '7324078'), + (45314, 488, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ZdNRzxkd', '7324082'), + (45315, 488, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ZdNRzxkd', '7331457'), + (45316, 488, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ZdNRzxkd', '7363643'), + (45317, 488, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ZdNRzxkd', '7368606'), + (45318, 488, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ZdNRzxkd', '7397462'), + (45319, 488, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ZdNRzxkd', '7424275'), + (45320, 488, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ZdNRzxkd', '7432751'), + (45321, 488, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ZdNRzxkd', '7432752'), + (45322, 488, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ZdNRzxkd', '7432753'), + (45323, 488, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432754'), + (45324, 488, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432755'), + (45325, 488, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432756'), + (45326, 488, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432758'), + (45327, 488, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ZdNRzxkd', '7432759'), + (45328, 488, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ZdNRzxkd', '7433834'), + (45329, 488, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ZdNRzxkd', '7470197'), + (45330, 488, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ZdNRzxkd', '7685613'), + (45331, 488, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ZdNRzxkd', '7688194'), + (45332, 488, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ZdNRzxkd', '7688196'), + (45333, 488, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ZdNRzxkd', '7688289'), + (45334, 488, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ZdNRzxkd', '7692763'), + (45335, 488, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ZdNRzxkd', '7697552'), + (45336, 488, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ZdNRzxkd', '7699878'), + (45337, 488, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ZdNRzxkd', '7704043'), + (45338, 488, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ZdNRzxkd', '7712467'), + (45339, 488, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ZdNRzxkd', '7713585'), + (45340, 488, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ZdNRzxkd', '7713586'), + (45341, 488, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ZdNRzxkd', '7738518'), + (45342, 488, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ZdNRzxkd', '7750636'), + (45343, 488, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ZdNRzxkd', '7796540'), + (45344, 488, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ZdNRzxkd', '7796541'), + (45345, 488, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ZdNRzxkd', '7796542'), + (45346, 488, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ZdNRzxkd', '7825913'), + (45347, 488, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ZdNRzxkd', '7826209'), + (45348, 488, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ZdNRzxkd', '7834742'), + (45349, 488, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ZdNRzxkd', '7842108'), + (45350, 488, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ZdNRzxkd', '7842902'), + (45351, 488, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ZdNRzxkd', '7842903'), + (45352, 488, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ZdNRzxkd', '7842904'), + (45353, 488, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ZdNRzxkd', '7842905'), + (45354, 488, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ZdNRzxkd', '7855719'), + (45355, 488, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ZdNRzxkd', '7860683'), + (45356, 488, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ZdNRzxkd', '7860684'), + (45357, 488, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ZdNRzxkd', '7866095'), + (45358, 488, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ZdNRzxkd', '7869170'), + (45359, 488, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ZdNRzxkd', '7869188'), + (45360, 488, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ZdNRzxkd', '7869201'), + (45361, 488, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ZdNRzxkd', '7877465'), + (45362, 488, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ZdNRzxkd', '7888250'), + (45363, 488, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ZdNRzxkd', '7904777'), + (45364, 488, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ZdNRzxkd', '8349164'), + (45365, 488, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ZdNRzxkd', '8349545'), + (45366, 488, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ZdNRzxkd', '8368028'), + (45367, 488, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ZdNRzxkd', '8368029'), + (45368, 488, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ZdNRzxkd', '8388462'), + (45369, 488, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ZdNRzxkd', '8400273'), + (45370, 488, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ZdNRzxkd', '8400275'), + (45371, 488, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ZdNRzxkd', '8400276'), + (45372, 488, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ZdNRzxkd', '8404977'), + (45373, 488, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ZdNRzxkd', '8430783'), + (45374, 488, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ZdNRzxkd', '8430784'), + (45375, 488, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ZdNRzxkd', '8430799'), + (45376, 488, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ZdNRzxkd', '8430800'), + (45377, 488, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ZdNRzxkd', '8430801'), + (45378, 488, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ZdNRzxkd', '8438709'), + (45379, 488, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ZdNRzxkd', '8457738'), + (45380, 488, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ZdNRzxkd', '8459566'), + (45381, 488, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ZdNRzxkd', '8459567'), + (45382, 488, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ZdNRzxkd', '8461032'), + (45383, 488, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ZdNRzxkd', '8477877'), + (45384, 488, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ZdNRzxkd', '8485688'), + (45385, 488, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ZdNRzxkd', '8490587'), + (45386, 488, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ZdNRzxkd', '8493552'), + (45387, 488, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ZdNRzxkd', '8493553'), + (45388, 488, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ZdNRzxkd', '8493554'), + (45389, 488, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ZdNRzxkd', '8493555'), + (45390, 488, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ZdNRzxkd', '8493556'), + (45391, 488, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ZdNRzxkd', '8493557'), + (45392, 488, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ZdNRzxkd', '8493558'), + (45393, 488, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ZdNRzxkd', '8493559'), + (45394, 488, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ZdNRzxkd', '8493560'), + (45395, 488, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ZdNRzxkd', '8493561'), + (45396, 488, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ZdNRzxkd', '8493572'), + (45397, 488, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ZdNRzxkd', '8540725'), + (45398, 488, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ZdNRzxkd', '8555421'), + (45399, 489, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4oj73eoA', '7074364'), + (45400, 489, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', '4oj73eoA', '7302674'), + (45401, 489, 2678, 'attending', '2024-06-15 14:49:27', '2025-12-17 19:46:28', '4oj73eoA', '7319489'), + (45402, 489, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4oj73eoA', '7324073'), + (45403, 489, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4oj73eoA', '7324074'), + (45404, 489, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4oj73eoA', '7324075'), + (45405, 489, 2713, 'attending', '2024-06-15 14:49:29', '2025-12-17 19:46:28', '4oj73eoA', '7326593'), + (45406, 489, 2714, 'attending', '2024-06-15 14:49:19', '2025-12-17 19:46:28', '4oj73eoA', '7326981'), + (45407, 489, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '4oj73eoA', '7331457'), + (45408, 490, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'w4WDkpjd', '3149489'), + (45409, 490, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'w4WDkpjd', '3149491'), + (45410, 490, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'w4WDkpjd', '3236450'), + (45411, 490, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'w4WDkpjd', '3236452'), + (45412, 490, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'w4WDkpjd', '3539920'), + (45413, 490, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'w4WDkpjd', '3539921'), + (45414, 490, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'w4WDkpjd', '3539922'), + (45415, 490, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'w4WDkpjd', '3539923'), + (45416, 490, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'w4WDkpjd', '3793156'), + (45417, 490, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'w4WDkpjd', '3806392'), + (45418, 490, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'w4WDkpjd', '3963335'), + (45419, 490, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'w4WDkpjd', '3975311'), + (45420, 490, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4WDkpjd', '3975312'), + (45421, 490, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4WDkpjd', '3994992'), + (45422, 490, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4WDkpjd', '4014338'), + (45423, 490, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4WDkpjd', '4136744'), + (45424, 490, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WDkpjd', '6045684'), + (45425, 491, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4EQ0NkD4', '6045684'), + (45426, 492, 2064, 'attending', '2023-06-12 20:49:52', '2025-12-17 19:46:50', 'dOOOlzWd', '6099988'), + (45427, 492, 2065, 'attending', '2023-06-12 20:49:47', '2025-12-17 19:46:49', 'dOOOlzWd', '6101169'), + (45428, 492, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOOOlzWd', '6101361'), + (45429, 492, 2075, 'attending', '2023-06-29 20:17:44', '2025-12-17 19:46:50', 'dOOOlzWd', '6107314'), + (45430, 492, 2093, 'attending', '2023-06-12 20:49:30', '2025-12-17 19:47:04', 'dOOOlzWd', '6132598'), + (45431, 492, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dOOOlzWd', '6136733'), + (45432, 492, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOOOlzWd', '6137989'), + (45433, 492, 2097, 'attending', '2023-06-12 00:43:58', '2025-12-17 19:47:04', 'dOOOlzWd', '6139059'), + (45434, 492, 2098, 'attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dOOOlzWd', '6139831'), + (45435, 492, 2099, 'maybe', '2023-06-12 20:49:39', '2025-12-17 19:46:49', 'dOOOlzWd', '6143012'), + (45436, 492, 2103, 'attending', '2023-06-18 13:44:10', '2025-12-17 19:46:50', 'dOOOlzWd', '6149451'), + (45437, 492, 2104, 'attending', '2023-06-18 13:44:29', '2025-12-17 19:46:50', 'dOOOlzWd', '6149499'), + (45438, 492, 2105, 'attending', '2023-06-18 16:43:25', '2025-12-17 19:46:50', 'dOOOlzWd', '6149551'), + (45439, 492, 2106, 'attending', '2023-06-18 13:44:14', '2025-12-17 19:46:50', 'dOOOlzWd', '6150479'), + (45440, 492, 2107, 'attending', '2023-06-18 13:44:19', '2025-12-17 19:46:50', 'dOOOlzWd', '6150480'), + (45441, 492, 2108, 'attending', '2023-06-18 16:43:33', '2025-12-17 19:46:50', 'dOOOlzWd', '6150864'), + (45442, 492, 2110, 'attending', '2023-06-19 23:13:41', '2025-12-17 19:46:50', 'dOOOlzWd', '6155491'), + (45443, 492, 2112, 'maybe', '2023-06-19 23:13:36', '2025-12-17 19:46:50', 'dOOOlzWd', '6156213'), + (45444, 492, 2113, 'attending', '2023-06-19 23:13:32', '2025-12-17 19:46:50', 'dOOOlzWd', '6156215'), + (45445, 492, 2114, 'attending', '2023-06-19 23:13:10', '2025-12-17 19:46:50', 'dOOOlzWd', '6158648'), + (45446, 492, 2115, 'maybe', '2023-06-30 16:51:12', '2025-12-17 19:46:50', 'dOOOlzWd', '6161437'), + (45447, 492, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOOOlzWd', '6164417'), + (45448, 492, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOOOlzWd', '6166388'), + (45449, 492, 2121, 'maybe', '2023-06-28 16:33:51', '2025-12-17 19:46:50', 'dOOOlzWd', '6176439'), + (45450, 492, 2122, 'attending', '2023-07-05 19:34:10', '2025-12-17 19:46:51', 'dOOOlzWd', '6176476'), + (45451, 492, 2123, 'attending', '2023-06-28 16:33:59', '2025-12-17 19:46:50', 'dOOOlzWd', '6176502'), + (45452, 492, 2124, 'attending', '2023-06-29 20:18:23', '2025-12-17 19:46:51', 'dOOOlzWd', '6176988'), + (45453, 492, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOOOlzWd', '6182410'), + (45454, 492, 2129, 'attending', '2023-07-05 19:33:04', '2025-12-17 19:46:51', 'dOOOlzWd', '6182825'), + (45455, 492, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOOOlzWd', '6185812'), + (45456, 492, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOOOlzWd', '6187651'), + (45457, 492, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOOOlzWd', '6187963'), + (45458, 492, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOOOlzWd', '6187964'), + (45459, 492, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOOOlzWd', '6187966'), + (45460, 492, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOOOlzWd', '6187967'), + (45461, 492, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOOOlzWd', '6187969'), + (45462, 492, 2141, 'attending', '2023-07-08 14:29:38', '2025-12-17 19:46:52', 'dOOOlzWd', '6188819'), + (45463, 492, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOOOlzWd', '6334878'), + (45464, 492, 2146, 'attending', '2023-07-16 22:32:43', '2025-12-17 19:46:53', 'dOOOlzWd', '6335638'), + (45465, 492, 2148, 'attending', '2023-07-16 22:34:05', '2025-12-17 19:46:53', 'dOOOlzWd', '6335667'), + (45466, 492, 2150, 'attending', '2023-07-10 00:09:57', '2025-12-17 19:46:52', 'dOOOlzWd', '6335687'), + (45467, 492, 2152, 'attending', '2023-07-13 19:15:15', '2025-12-17 19:46:52', 'dOOOlzWd', '6337021'), + (45468, 492, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOOOlzWd', '6337236'), + (45469, 492, 2155, 'attending', '2023-07-12 22:48:14', '2025-12-17 19:46:53', 'dOOOlzWd', '6337970'), + (45470, 492, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOOOlzWd', '6338308'), + (45471, 492, 2157, 'not_attending', '2023-07-12 21:54:01', '2025-12-17 19:46:52', 'dOOOlzWd', '6338342'), + (45472, 492, 2159, 'attending', '2023-07-14 13:41:27', '2025-12-17 19:46:53', 'dOOOlzWd', '6338355'), + (45473, 492, 2160, 'not_attending', '2023-07-14 13:41:29', '2025-12-17 19:46:54', 'dOOOlzWd', '6338358'), + (45474, 492, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOOOlzWd', '6341710'), + (45475, 492, 2164, 'maybe', '2023-07-17 20:52:04', '2025-12-17 19:46:54', 'dOOOlzWd', '6341797'), + (45476, 492, 2165, 'attending', '2023-07-31 18:30:40', '2025-12-17 19:46:54', 'dOOOlzWd', '6342044'), + (45477, 492, 2166, 'attending', '2023-07-17 20:52:11', '2025-12-17 19:46:54', 'dOOOlzWd', '6342115'), + (45478, 492, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOOOlzWd', '6342298'), + (45479, 492, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOOOlzWd', '6343294'), + (45480, 492, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOOOlzWd', '6347034'), + (45481, 492, 2177, 'attending', '2023-08-06 12:11:37', '2025-12-17 19:46:55', 'dOOOlzWd', '6347053'), + (45482, 492, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOOOlzWd', '6347056'), + (45483, 492, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOOOlzWd', '6353830'), + (45484, 492, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOOOlzWd', '6353831'), + (45485, 492, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOOOlzWd', '6357867'), + (45486, 492, 2191, 'attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOOOlzWd', '6358652'), + (45487, 492, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'dOOOlzWd', '6358668'), + (45488, 492, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'dOOOlzWd', '6358669'), + (45489, 492, 2195, 'attending', '2023-08-21 14:52:00', '2025-12-17 19:46:55', 'dOOOlzWd', '6359397'), + (45490, 492, 2197, 'attending', '2023-09-15 22:41:18', '2025-12-17 19:46:44', 'dOOOlzWd', '6359399'), + (45491, 492, 2198, 'attending', '2023-09-17 19:11:59', '2025-12-17 19:46:45', 'dOOOlzWd', '6359400'), + (45492, 492, 2199, 'attending', '2023-08-16 14:41:03', '2025-12-17 19:46:55', 'dOOOlzWd', '6359849'), + (45493, 492, 2200, 'attending', '2023-08-09 13:02:30', '2025-12-17 19:46:55', 'dOOOlzWd', '6359850'), + (45494, 492, 2202, 'maybe', '2023-08-06 18:26:00', '2025-12-17 19:46:54', 'dOOOlzWd', '6360509'), + (45495, 492, 2204, 'attending', '2023-08-19 17:01:55', '2025-12-17 19:46:55', 'dOOOlzWd', '6361542'), + (45496, 492, 2208, 'attending', '2023-08-09 13:01:52', '2025-12-17 19:46:54', 'dOOOlzWd', '6361709'), + (45497, 492, 2209, 'maybe', '2023-08-23 13:58:05', '2025-12-17 19:46:55', 'dOOOlzWd', '6361710'), + (45498, 492, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOOOlzWd', '6361711'), + (45499, 492, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOOOlzWd', '6361712'), + (45500, 492, 2212, 'attending', '2023-09-27 12:05:15', '2025-12-17 19:46:45', 'dOOOlzWd', '6361713'), + (45501, 492, 2214, 'attending', '2023-08-13 12:59:12', '2025-12-17 19:46:55', 'dOOOlzWd', '6363218'), + (45502, 492, 2215, 'attending', '2023-08-11 19:44:10', '2025-12-17 19:46:55', 'dOOOlzWd', '6363479'), + (45503, 492, 2225, 'attending', '2023-08-29 18:06:56', '2025-12-17 19:46:55', 'dOOOlzWd', '6368434'), + (45504, 492, 2232, 'attending', '2023-08-21 14:51:44', '2025-12-17 19:46:55', 'dOOOlzWd', '6374818'), + (45505, 492, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOOOlzWd', '6382573'), + (45506, 492, 2239, 'attending', '2023-09-01 16:37:01', '2025-12-17 19:46:56', 'dOOOlzWd', '6387592'), + (45507, 492, 2240, 'attending', '2023-09-06 12:05:06', '2025-12-17 19:46:56', 'dOOOlzWd', '6388603'), + (45508, 492, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOOOlzWd', '6388604'), + (45509, 492, 2242, 'not_attending', '2023-09-17 19:11:52', '2025-12-17 19:46:45', 'dOOOlzWd', '6388606'), + (45510, 492, 2245, 'attending', '2023-09-22 20:45:11', '2025-12-17 19:46:45', 'dOOOlzWd', '6393703'), + (45511, 492, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOOOlzWd', '6394629'), + (45512, 492, 2249, 'attending', '2023-09-20 16:11:56', '2025-12-17 19:46:45', 'dOOOlzWd', '6394630'), + (45513, 492, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOOOlzWd', '6394631'), + (45514, 492, 2252, 'attending', '2023-09-22 20:45:18', '2025-12-17 19:46:45', 'dOOOlzWd', '6396837'), + (45515, 492, 2253, 'maybe', '2023-09-25 19:42:12', '2025-12-17 19:46:45', 'dOOOlzWd', '6401811'), + (45516, 492, 2258, 'attending', '2023-09-22 20:45:47', '2025-12-17 19:46:45', 'dOOOlzWd', '6419492'), + (45517, 492, 2259, 'not_attending', '2023-09-22 20:38:11', '2025-12-17 19:46:45', 'dOOOlzWd', '6421257'), + (45518, 492, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOOOlzWd', '6440863'), + (45519, 492, 2270, 'attending', '2023-10-04 22:18:19', '2025-12-17 19:46:46', 'dOOOlzWd', '6443067'), + (45520, 492, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOOOlzWd', '6445440'), + (45521, 492, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOOOlzWd', '6453951'), + (45522, 492, 2284, 'maybe', '2023-10-10 18:19:53', '2025-12-17 19:46:46', 'dOOOlzWd', '6460928'), + (45523, 492, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOOOlzWd', '6461696'), + (45524, 492, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOOOlzWd', '6462129'), + (45525, 492, 2290, 'attending', '2023-10-18 18:26:50', '2025-12-17 19:46:46', 'dOOOlzWd', '6462214'), + (45526, 492, 2291, 'attending', '2023-10-18 18:26:58', '2025-12-17 19:46:46', 'dOOOlzWd', '6462215'), + (45527, 492, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOOOlzWd', '6463218'), + (45528, 492, 2299, 'attending', '2023-10-18 18:27:04', '2025-12-17 19:46:46', 'dOOOlzWd', '6472181'), + (45529, 492, 2302, 'attending', '2023-10-23 21:26:01', '2025-12-17 19:46:46', 'dOOOlzWd', '6482535'), + (45530, 492, 2303, 'attending', '2023-10-25 16:16:37', '2025-12-17 19:46:47', 'dOOOlzWd', '6482691'), + (45531, 492, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOOOlzWd', '6482693'), + (45532, 492, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dOOOlzWd', '6484200'), + (45533, 492, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOOOlzWd', '6484680'), + (45534, 492, 2317, 'attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOOOlzWd', '6507741'), + (45535, 492, 2318, 'not_attending', '2023-10-30 23:06:29', '2025-12-17 19:46:47', 'dOOOlzWd', '6508566'), + (45536, 492, 2322, 'attending', '2023-11-14 20:27:05', '2025-12-17 19:46:48', 'dOOOlzWd', '6514659'), + (45537, 492, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOOOlzWd', '6514660'), + (45538, 492, 2324, 'attending', '2023-12-09 17:48:39', '2025-12-17 19:46:49', 'dOOOlzWd', '6514662'), + (45539, 492, 2325, 'not_attending', '2023-12-13 22:37:17', '2025-12-17 19:46:36', 'dOOOlzWd', '6514663'), + (45540, 492, 2327, 'maybe', '2023-11-02 19:42:41', '2025-12-17 19:46:47', 'dOOOlzWd', '6515494'), + (45541, 492, 2331, 'attending', '2023-11-14 20:26:12', '2025-12-17 19:46:47', 'dOOOlzWd', '6518640'), + (45542, 492, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOOOlzWd', '6519103'), + (45543, 492, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOOOlzWd', '6535681'), + (45544, 492, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOOOlzWd', '6584747'), + (45545, 492, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOOOlzWd', '6587097'), + (45546, 492, 2356, 'attending', '2023-12-10 19:12:59', '2025-12-17 19:46:36', 'dOOOlzWd', '6593340'), + (45547, 492, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOOOlzWd', '6609022'), + (45548, 492, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOOOlzWd', '6632757'), + (45549, 492, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOOOlzWd', '6644187'), + (45550, 492, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOOOlzWd', '6648951'), + (45551, 492, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOOOlzWd', '6648952'), + (45552, 492, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOOOlzWd', '6655401'), + (45553, 492, 2399, 'attending', '2024-01-07 18:51:02', '2025-12-17 19:46:37', 'dOOOlzWd', '6657583'), + (45554, 492, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOOOlzWd', '6661585'), + (45555, 492, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOOOlzWd', '6661588'), + (45556, 492, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOOOlzWd', '6661589'), + (45557, 492, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOOOlzWd', '6699906'), + (45558, 492, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOOOlzWd', '6699913'), + (45559, 492, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOOOlzWd', '6701109'), + (45560, 492, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOOOlzWd', '6705219'), + (45561, 492, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOOOlzWd', '6710153'), + (45562, 492, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOOOlzWd', '6711552'), + (45563, 492, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOOOlzWd', '6711553'), + (45564, 492, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOOOlzWd', '6722688'), + (45565, 492, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOOOlzWd', '6730620'), + (45566, 492, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOOOlzWd', '6730642'), + (45567, 492, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOOOlzWd', '6740364'), + (45568, 492, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOOOlzWd', '6743829'), + (45569, 492, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOOOlzWd', '7030380'), + (45570, 492, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOOOlzWd', '7033677'), + (45571, 492, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOOOlzWd', '7035415'), + (45572, 492, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOOOlzWd', '7044715'), + (45573, 492, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOOOlzWd', '7050318'), + (45574, 492, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOOOlzWd', '7050319'), + (45575, 492, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOOOlzWd', '7050322'), + (45576, 492, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOOOlzWd', '7057804'), + (45577, 492, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dOOOlzWd', '7059866'), + (45578, 492, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOOOlzWd', '7072824'), + (45579, 492, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOOOlzWd', '7074348'), + (45580, 492, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOOOlzWd', '7089267'), + (45581, 492, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOOOlzWd', '7098747'), + (45582, 492, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOOOlzWd', '7113468'), + (45583, 492, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOOOlzWd', '7114856'), + (45584, 492, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOOOlzWd', '7114951'), + (45585, 492, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOOOlzWd', '7114955'), + (45586, 492, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOOOlzWd', '7114956'), + (45587, 492, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dOOOlzWd', '7114957'), + (45588, 492, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOOOlzWd', '7153615'), + (45589, 492, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOOOlzWd', '7159484'), + (45590, 492, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOOOlzWd', '7178446'), + (45591, 492, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOOOlzWd', '7220467'), + (45592, 492, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dOOOlzWd', '7240354'), + (45593, 492, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOOOlzWd', '7251633'), + (45594, 492, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dOOOlzWd', '7263048'), + (45595, 492, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOOOlzWd', '7302674'), + (45596, 493, 1518, 'attending', '2022-09-01 17:26:52', '2025-12-17 19:47:24', 'dJPNk9nA', '5441131'), + (45597, 493, 1519, 'attending', '2022-08-29 20:13:18', '2025-12-17 19:47:24', 'dJPNk9nA', '5441132'), + (45598, 493, 1544, 'maybe', '2022-09-13 22:53:37', '2025-12-17 19:47:11', 'dJPNk9nA', '5454517'), + (45599, 493, 1558, 'attending', '2022-09-12 15:08:05', '2025-12-17 19:47:10', 'dJPNk9nA', '5458730'), + (45600, 493, 1559, 'attending', '2022-09-26 12:45:00', '2025-12-17 19:47:11', 'dJPNk9nA', '5458731'), + (45601, 493, 1584, 'not_attending', '2022-08-29 20:13:50', '2025-12-17 19:47:23', 'dJPNk9nA', '5492004'), + (45602, 493, 1600, 'not_attending', '2022-08-29 21:31:04', '2025-12-17 19:47:24', 'dJPNk9nA', '5496569'), + (45603, 493, 1606, 'maybe', '2022-08-29 21:29:39', '2025-12-17 19:47:23', 'dJPNk9nA', '5504585'), + (45604, 493, 1608, 'attending', '2022-08-29 20:13:38', '2025-12-17 19:47:24', 'dJPNk9nA', '5505059'), + (45605, 493, 1609, 'attending', '2022-08-29 20:09:08', '2025-12-17 19:47:23', 'dJPNk9nA', '5506590'), + (45606, 493, 1610, 'not_attending', '2022-08-29 21:29:36', '2025-12-17 19:47:23', 'dJPNk9nA', '5506595'), + (45607, 493, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dJPNk9nA', '5509055'), + (45608, 493, 1617, 'not_attending', '2022-08-29 20:12:44', '2025-12-17 19:47:24', 'dJPNk9nA', '5512003'), + (45609, 493, 1618, 'not_attending', '2022-08-29 20:13:55', '2025-12-17 19:47:23', 'dJPNk9nA', '5512005'), + (45610, 493, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'dJPNk9nA', '5513985'), + (45611, 493, 1626, 'attending', '2022-09-20 00:10:17', '2025-12-17 19:47:11', 'dJPNk9nA', '5519981'), + (45612, 493, 1629, 'attending', '2022-09-19 16:59:00', '2025-12-17 19:47:11', 'dJPNk9nA', '5522550'), + (45613, 493, 1630, 'attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'dJPNk9nA', '5534683'), + (45614, 493, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dJPNk9nA', '5537735'), + (45615, 493, 1636, 'attending', '2022-09-04 17:53:04', '2025-12-17 19:47:24', 'dJPNk9nA', '5538454'), + (45616, 493, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dJPNk9nA', '5540859'), + (45617, 493, 1641, 'attending', '2022-09-03 01:55:28', '2025-12-17 19:47:24', 'dJPNk9nA', '5544226'), + (45618, 493, 1643, 'maybe', '2022-09-26 16:03:11', '2025-12-17 19:47:11', 'dJPNk9nA', '5545856'), + (45619, 493, 1644, 'attending', '2022-09-20 00:09:51', '2025-12-17 19:47:11', 'dJPNk9nA', '5545857'), + (45620, 493, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dJPNk9nA', '5546619'), + (45621, 493, 1655, 'not_attending', '2022-09-26 16:03:13', '2025-12-17 19:47:11', 'dJPNk9nA', '5554482'), + (45622, 493, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dJPNk9nA', '5555245'), + (45623, 493, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dJPNk9nA', '5557747'), + (45624, 493, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dJPNk9nA', '5560255'), + (45625, 493, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dJPNk9nA', '5562906'), + (45626, 493, 1666, 'attending', '2022-09-26 16:02:16', '2025-12-17 19:47:11', 'dJPNk9nA', '5563208'), + (45627, 493, 1667, 'attending', '2022-09-23 19:15:45', '2025-12-17 19:47:11', 'dJPNk9nA', '5563221'), + (45628, 493, 1668, 'attending', '2022-09-20 00:10:21', '2025-12-17 19:47:12', 'dJPNk9nA', '5563222'), + (45629, 493, 1673, 'not_attending', '2022-09-26 16:04:53', '2025-12-17 19:47:11', 'dJPNk9nA', '5592454'), + (45630, 493, 1674, 'maybe', '2022-09-26 16:04:58', '2025-12-17 19:47:12', 'dJPNk9nA', '5593112'), + (45631, 493, 1677, 'attending', '2022-09-22 01:32:27', '2025-12-17 19:47:11', 'dJPNk9nA', '5600604'), + (45632, 493, 1680, 'not_attending', '2022-09-26 16:03:20', '2025-12-17 19:47:11', 'dJPNk9nA', '5601577'), + (45633, 493, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dJPNk9nA', '5605544'), + (45634, 493, 1698, 'attending', '2022-09-26 16:03:23', '2025-12-17 19:47:11', 'dJPNk9nA', '5606366'), + (45635, 493, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'dJPNk9nA', '5606737'), + (45636, 493, 1701, 'not_attending', '2022-09-27 17:46:08', '2025-12-17 19:47:11', 'dJPNk9nA', '5607857'), + (45637, 493, 1708, 'attending', '2022-10-05 20:02:35', '2025-12-17 19:47:12', 'dJPNk9nA', '5617648'), + (45638, 493, 1711, 'maybe', '2022-10-06 10:17:30', '2025-12-17 19:47:12', 'dJPNk9nA', '5621883'), + (45639, 493, 1712, 'attending', '2022-10-12 13:26:25', '2025-12-17 19:47:12', 'dJPNk9nA', '5622073'), + (45640, 493, 1713, 'maybe', '2022-10-18 18:30:52', '2025-12-17 19:47:13', 'dJPNk9nA', '5622108'), + (45641, 493, 1714, 'attending', '2022-10-16 02:36:58', '2025-12-17 19:47:14', 'dJPNk9nA', '5622347'), + (45642, 493, 1717, 'not_attending', '2022-10-17 13:49:53', '2025-12-17 19:47:13', 'dJPNk9nA', '5622842'), + (45643, 493, 1718, 'maybe', '2022-10-05 02:41:19', '2025-12-17 19:47:12', 'dJPNk9nA', '5630907'), + (45644, 493, 1719, 'not_attending', '2022-10-05 20:02:53', '2025-12-17 19:47:12', 'dJPNk9nA', '5630958'), + (45645, 493, 1720, 'attending', '2022-10-11 18:32:45', '2025-12-17 19:47:12', 'dJPNk9nA', '5630959'), + (45646, 493, 1721, 'attending', '2022-10-16 02:36:28', '2025-12-17 19:47:13', 'dJPNk9nA', '5630960'), + (45647, 493, 1722, 'attending', '2022-10-24 11:28:43', '2025-12-17 19:47:14', 'dJPNk9nA', '5630961'), + (45648, 493, 1723, 'attending', '2022-10-16 02:37:22', '2025-12-17 19:47:15', 'dJPNk9nA', '5630962'), + (45649, 493, 1724, 'attending', '2022-10-24 16:30:07', '2025-12-17 19:47:15', 'dJPNk9nA', '5630966'), + (45650, 493, 1725, 'maybe', '2022-10-24 16:30:18', '2025-12-17 19:47:16', 'dJPNk9nA', '5630967'), + (45651, 493, 1726, 'attending', '2022-10-24 16:30:32', '2025-12-17 19:47:16', 'dJPNk9nA', '5630968'), + (45652, 493, 1727, 'not_attending', '2022-10-24 16:30:37', '2025-12-17 19:47:16', 'dJPNk9nA', '5630969'), + (45653, 493, 1730, 'maybe', '2022-10-10 15:38:22', '2025-12-17 19:47:12', 'dJPNk9nA', '5634666'), + (45654, 493, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dJPNk9nA', '5635406'), + (45655, 493, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dJPNk9nA', '5638765'), + (45656, 493, 1739, 'attending', '2022-10-24 16:31:13', '2025-12-17 19:47:14', 'dJPNk9nA', '5640097'), + (45657, 493, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dJPNk9nA', '5640843'), + (45658, 493, 1741, 'maybe', '2022-10-10 15:38:31', '2025-12-17 19:47:12', 'dJPNk9nA', '5641132'), + (45659, 493, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dJPNk9nA', '5641521'), + (45660, 493, 1744, 'attending', '2022-11-23 13:08:39', '2025-12-17 19:47:16', 'dJPNk9nA', '5642818'), + (45661, 493, 1745, 'maybe', '2022-10-12 15:38:58', '2025-12-17 19:47:12', 'dJPNk9nA', '5643088'), + (45662, 493, 1747, 'maybe', '2022-10-24 16:29:20', '2025-12-17 19:47:14', 'dJPNk9nA', '5648009'), + (45663, 493, 1750, 'attending', '2022-11-01 21:34:46', '2025-12-17 19:47:15', 'dJPNk9nA', '5652365'), + (45664, 493, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dJPNk9nA', '5652395'), + (45665, 493, 1754, 'attending', '2022-10-18 10:56:56', '2025-12-17 19:47:12', 'dJPNk9nA', '5659773'), + (45666, 493, 1756, 'not_attending', '2022-10-24 16:31:09', '2025-12-17 19:47:13', 'dJPNk9nA', '5663338'), + (45667, 493, 1757, 'attending', '2022-10-31 16:44:08', '2025-12-17 19:47:15', 'dJPNk9nA', '5668974'), + (45668, 493, 1761, 'not_attending', '2022-10-31 11:00:03', '2025-12-17 19:47:16', 'dJPNk9nA', '5670434'), + (45669, 493, 1762, 'attending', '2022-11-28 14:00:14', '2025-12-17 19:47:16', 'dJPNk9nA', '5670445'), + (45670, 493, 1763, 'attending', '2022-11-11 12:47:04', '2025-12-17 19:47:15', 'dJPNk9nA', '5670803'), + (45671, 493, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dJPNk9nA', '5671637'), + (45672, 493, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dJPNk9nA', '5672329'), + (45673, 493, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dJPNk9nA', '5674057'), + (45674, 493, 1767, 'maybe', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dJPNk9nA', '5674060'), + (45675, 493, 1768, 'not_attending', '2022-11-07 13:28:40', '2025-12-17 19:47:16', 'dJPNk9nA', '5674062'), + (45676, 493, 1772, 'attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dJPNk9nA', '5677461'), + (45677, 493, 1773, 'attending', '2022-10-31 18:08:49', '2025-12-17 19:47:14', 'dJPNk9nA', '5677707'), + (45678, 493, 1776, 'attending', '2022-11-08 21:58:39', '2025-12-17 19:47:15', 'dJPNk9nA', '5691067'), + (45679, 493, 1777, 'attending', '2022-11-07 13:29:13', '2025-12-17 19:47:15', 'dJPNk9nA', '5693021'), + (45680, 493, 1780, 'attending', '2022-11-07 20:47:03', '2025-12-17 19:47:15', 'dJPNk9nA', '5696082'), + (45681, 493, 1781, 'attending', '2022-11-02 16:38:53', '2025-12-17 19:47:15', 'dJPNk9nA', '5696178'), + (45682, 493, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dJPNk9nA', '5698046'), + (45683, 493, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dJPNk9nA', '5699760'), + (45684, 493, 1789, 'not_attending', '2022-11-10 18:55:18', '2025-12-17 19:47:15', 'dJPNk9nA', '5727274'), + (45685, 493, 1792, 'not_attending', '2022-11-10 18:55:16', '2025-12-17 19:47:15', 'dJPNk9nA', '5728512'), + (45686, 493, 1793, 'attending', '2022-11-21 12:42:21', '2025-12-17 19:47:16', 'dJPNk9nA', '5736365'), + (45687, 493, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dJPNk9nA', '5741601'), + (45688, 493, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dJPNk9nA', '5763458'), + (45689, 493, 1799, 'attending', '2022-11-21 12:42:23', '2025-12-17 19:47:16', 'dJPNk9nA', '5764666'), + (45690, 493, 1803, 'attending', '2023-01-07 23:56:22', '2025-12-17 19:47:05', 'dJPNk9nA', '5764673'), + (45691, 493, 1804, 'attending', '2023-01-24 20:33:58', '2025-12-17 19:47:06', 'dJPNk9nA', '5764674'), + (45692, 493, 1805, 'attending', '2023-02-03 16:20:05', '2025-12-17 19:47:06', 'dJPNk9nA', '5764675'), + (45693, 493, 1806, 'attending', '2023-01-17 14:45:47', '2025-12-17 19:47:05', 'dJPNk9nA', '5764676'), + (45694, 493, 1808, 'not_attending', '2023-02-20 00:48:02', '2025-12-17 19:47:08', 'dJPNk9nA', '5764678'), + (45695, 493, 1809, 'not_attending', '2023-04-03 11:02:17', '2025-12-17 19:46:59', 'dJPNk9nA', '5764679'), + (45696, 493, 1810, 'attending', '2023-04-20 18:29:13', '2025-12-17 19:47:00', 'dJPNk9nA', '5764680'), + (45697, 493, 1811, 'attending', '2023-05-06 20:26:45', '2025-12-17 19:47:02', 'dJPNk9nA', '5764681'), + (45698, 493, 1812, 'attending', '2023-03-08 00:31:53', '2025-12-17 19:47:09', 'dJPNk9nA', '5764682'), + (45699, 493, 1814, 'not_attending', '2023-02-09 00:36:20', '2025-12-17 19:47:08', 'dJPNk9nA', '5764684'), + (45700, 493, 1816, 'attending', '2023-05-20 19:55:59', '2025-12-17 19:47:03', 'dJPNk9nA', '5764686'), + (45701, 493, 1817, 'attending', '2023-03-25 06:41:40', '2025-12-17 19:46:57', 'dJPNk9nA', '5764687'), + (45702, 493, 1818, 'maybe', '2023-02-11 23:42:35', '2025-12-17 19:47:07', 'dJPNk9nA', '5764688'), + (45703, 493, 1820, 'attending', '2023-03-25 06:43:45', '2025-12-17 19:46:58', 'dJPNk9nA', '5764690'), + (45704, 493, 1821, 'attending', '2023-03-17 11:28:38', '2025-12-17 19:46:56', 'dJPNk9nA', '5764691'), + (45705, 493, 1822, 'not_attending', '2023-04-19 09:36:09', '2025-12-17 19:47:02', 'dJPNk9nA', '5764692'), + (45706, 493, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dJPNk9nA', '5774172'), + (45707, 493, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dJPNk9nA', '5818247'), + (45708, 493, 1834, 'attending', '2022-12-10 14:44:09', '2025-12-17 19:47:17', 'dJPNk9nA', '5819470'), + (45709, 493, 1835, 'attending', '2022-12-28 01:46:37', '2025-12-17 19:47:05', 'dJPNk9nA', '5819471'), + (45710, 493, 1839, 'not_attending', '2022-12-20 20:32:16', '2025-12-17 19:47:04', 'dJPNk9nA', '5821920'), + (45711, 493, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dJPNk9nA', '5827739'), + (45712, 493, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dJPNk9nA', '5844306'), + (45713, 493, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dJPNk9nA', '5850159'), + (45714, 493, 1848, 'maybe', '2023-01-03 16:33:11', '2025-12-17 19:47:05', 'dJPNk9nA', '5852466'), + (45715, 493, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dJPNk9nA', '5858999'), + (45716, 493, 1851, 'not_attending', '2023-01-09 01:46:31', '2025-12-17 19:47:05', 'dJPNk9nA', '5869316'), + (45717, 493, 1852, 'attending', '2023-01-11 12:49:38', '2025-12-17 19:47:05', 'dJPNk9nA', '5869898'), + (45718, 493, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dJPNk9nA', '5871984'), + (45719, 493, 1856, 'not_attending', '2023-01-17 14:17:40', '2025-12-17 19:47:05', 'dJPNk9nA', '5873970'), + (45720, 493, 1857, 'not_attending', '2023-01-17 14:18:12', '2025-12-17 19:47:05', 'dJPNk9nA', '5873973'), + (45721, 493, 1859, 'maybe', '2023-01-17 14:18:03', '2025-12-17 19:47:05', 'dJPNk9nA', '5876234'), + (45722, 493, 1861, 'attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dJPNk9nA', '5876354'), + (45723, 493, 1863, 'maybe', '2023-01-17 14:18:24', '2025-12-17 19:47:06', 'dJPNk9nA', '5877255'), + (45724, 493, 1864, 'attending', '2023-01-17 14:18:06', '2025-12-17 19:47:05', 'dJPNk9nA', '5879675'), + (45725, 493, 1865, 'attending', '2023-01-17 14:18:18', '2025-12-17 19:47:06', 'dJPNk9nA', '5879676'), + (45726, 493, 1866, 'attending', '2023-01-17 14:18:15', '2025-12-17 19:47:05', 'dJPNk9nA', '5880939'), + (45727, 493, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dJPNk9nA', '5880940'), + (45728, 493, 1868, 'maybe', '2023-01-25 04:09:18', '2025-12-17 19:47:07', 'dJPNk9nA', '5880942'), + (45729, 493, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dJPNk9nA', '5880943'), + (45730, 493, 1870, 'not_attending', '2023-01-20 13:05:05', '2025-12-17 19:47:05', 'dJPNk9nA', '5881740'), + (45731, 493, 1873, 'attending', '2023-01-21 18:54:08', '2025-12-17 19:47:05', 'dJPNk9nA', '5885295'), + (45732, 493, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dJPNk9nA', '5887890'), + (45733, 493, 1875, 'not_attending', '2023-01-23 01:25:24', '2025-12-17 19:47:06', 'dJPNk9nA', '5887908'), + (45734, 493, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dJPNk9nA', '5888598'), + (45735, 493, 1880, 'attending', '2023-01-24 20:38:47', '2025-12-17 19:47:06', 'dJPNk9nA', '5893260'), + (45736, 493, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dJPNk9nA', '5899826'), + (45737, 493, 1885, 'not_attending', '2023-02-22 15:03:04', '2025-12-17 19:47:08', 'dJPNk9nA', '5899928'), + (45738, 493, 1886, 'not_attending', '2023-03-08 00:31:44', '2025-12-17 19:47:09', 'dJPNk9nA', '5899930'), + (45739, 493, 1888, 'not_attending', '2023-02-13 23:06:12', '2025-12-17 19:47:07', 'dJPNk9nA', '5900197'), + (45740, 493, 1889, 'attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dJPNk9nA', '5900199'), + (45741, 493, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dJPNk9nA', '5900200'), + (45742, 493, 1891, 'attending', '2023-03-21 00:46:42', '2025-12-17 19:46:56', 'dJPNk9nA', '5900202'), + (45743, 493, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dJPNk9nA', '5900203'), + (45744, 493, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dJPNk9nA', '5901108'), + (45745, 493, 1896, 'maybe', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dJPNk9nA', '5901126'), + (45746, 493, 1897, 'attending', '2023-02-05 19:07:10', '2025-12-17 19:47:07', 'dJPNk9nA', '5901128'), + (45747, 493, 1898, 'maybe', '2023-02-01 20:51:30', '2025-12-17 19:47:06', 'dJPNk9nA', '5901263'), + (45748, 493, 1899, 'attending', '2023-02-10 23:30:22', '2025-12-17 19:47:07', 'dJPNk9nA', '5901323'), + (45749, 493, 1906, 'not_attending', '2023-03-09 22:04:44', '2025-12-17 19:47:09', 'dJPNk9nA', '5904523'), + (45750, 493, 1908, 'not_attending', '2023-02-13 23:05:36', '2025-12-17 19:47:07', 'dJPNk9nA', '5905018'), + (45751, 493, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dJPNk9nA', '5909655'), + (45752, 493, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dJPNk9nA', '5910522'), + (45753, 493, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dJPNk9nA', '5910526'), + (45754, 493, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dJPNk9nA', '5910528'), + (45755, 493, 1920, 'maybe', '2023-02-13 15:55:03', '2025-12-17 19:47:07', 'dJPNk9nA', '5914091'), + (45756, 493, 1921, 'maybe', '2023-02-27 18:29:47', '2025-12-17 19:47:08', 'dJPNk9nA', '5914092'), + (45757, 493, 1922, 'not_attending', '2023-02-12 02:58:22', '2025-12-17 19:47:07', 'dJPNk9nA', '5916219'), + (45758, 493, 1926, 'maybe', '2023-03-02 13:49:08', '2025-12-17 19:47:08', 'dJPNk9nA', '5932620'), + (45759, 493, 1929, 'not_attending', '2023-02-20 12:10:21', '2025-12-17 19:47:07', 'dJPNk9nA', '5932628'), + (45760, 493, 1930, 'maybe', '2023-02-22 15:03:12', '2025-12-17 19:47:08', 'dJPNk9nA', '5933462'), + (45761, 493, 1931, 'maybe', '2023-02-22 15:03:17', '2025-12-17 19:47:08', 'dJPNk9nA', '5933464'), + (45762, 493, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dJPNk9nA', '5936234'), + (45763, 493, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dJPNk9nA', '5958351'), + (45764, 493, 1936, 'attending', '2023-02-27 17:04:28', '2025-12-17 19:47:08', 'dJPNk9nA', '5959397'), + (45765, 493, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dJPNk9nA', '5959751'), + (45766, 493, 1939, 'maybe', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dJPNk9nA', '5959755'), + (45767, 493, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dJPNk9nA', '5960055'), + (45768, 493, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dJPNk9nA', '5961684'), + (45769, 493, 1943, 'attending', '2023-03-14 16:44:49', '2025-12-17 19:47:10', 'dJPNk9nA', '5962091'), + (45770, 493, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dJPNk9nA', '5962132'), + (45771, 493, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dJPNk9nA', '5962133'), + (45772, 493, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dJPNk9nA', '5962134'), + (45773, 493, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dJPNk9nA', '5962317'), + (45774, 493, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dJPNk9nA', '5962318'), + (45775, 493, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dJPNk9nA', '5965933'), + (45776, 493, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dJPNk9nA', '5967014'), + (45777, 493, 1955, 'attending', '2023-03-29 21:54:21', '2025-12-17 19:46:57', 'dJPNk9nA', '5972529'), + (45778, 493, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dJPNk9nA', '5972763'), + (45779, 493, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dJPNk9nA', '5972815'), + (45780, 493, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dJPNk9nA', '5974016'), + (45781, 493, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dJPNk9nA', '5981515'), + (45782, 493, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dJPNk9nA', '5993516'), + (45783, 493, 1971, 'attending', '2023-03-20 21:29:33', '2025-12-17 19:46:56', 'dJPNk9nA', '5993765'), + (45784, 493, 1972, 'attending', '2023-03-19 02:31:08', '2025-12-17 19:46:56', 'dJPNk9nA', '5993776'), + (45785, 493, 1973, 'attending', '2023-03-17 11:28:07', '2025-12-17 19:46:56', 'dJPNk9nA', '5993777'), + (45786, 493, 1974, 'maybe', '2023-03-25 06:42:44', '2025-12-17 19:46:57', 'dJPNk9nA', '5993778'), + (45787, 493, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dJPNk9nA', '5998939'), + (45788, 493, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dJPNk9nA', '6028191'), + (45789, 493, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dJPNk9nA', '6040066'), + (45790, 493, 1983, 'not_attending', '2023-04-03 11:02:19', '2025-12-17 19:46:59', 'dJPNk9nA', '6040068'), + (45791, 493, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dJPNk9nA', '6042717'), + (45792, 493, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dJPNk9nA', '6044838'), + (45793, 493, 1987, 'not_attending', '2023-04-16 22:23:04', '2025-12-17 19:47:00', 'dJPNk9nA', '6044839'), + (45794, 493, 1988, 'attending', '2023-04-03 11:01:56', '2025-12-17 19:47:01', 'dJPNk9nA', '6044840'), + (45795, 493, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJPNk9nA', '6045684'), + (45796, 493, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dJPNk9nA', '6050104'), + (45797, 493, 1996, 'attending', '2023-04-03 22:54:37', '2025-12-17 19:46:58', 'dJPNk9nA', '6050667'), + (45798, 493, 1998, 'maybe', '2023-04-09 03:05:25', '2025-12-17 19:46:59', 'dJPNk9nA', '6052056'), + (45799, 493, 2002, 'not_attending', '2023-04-26 21:46:52', '2025-12-17 19:47:01', 'dJPNk9nA', '6052605'), + (45800, 493, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dJPNk9nA', '6053195'), + (45801, 493, 2006, 'not_attending', '2023-04-05 13:59:53', '2025-12-17 19:46:59', 'dJPNk9nA', '6053198'), + (45802, 493, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dJPNk9nA', '6056085'), + (45803, 493, 2011, 'maybe', '2023-04-09 03:05:29', '2025-12-17 19:46:59', 'dJPNk9nA', '6056916'), + (45804, 493, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dJPNk9nA', '6059290'), + (45805, 493, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dJPNk9nA', '6060328'), + (45806, 493, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dJPNk9nA', '6061037'), + (45807, 493, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dJPNk9nA', '6061039'), + (45808, 493, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dJPNk9nA', '6067245'), + (45809, 493, 2025, 'not_attending', '2023-04-20 18:29:30', '2025-12-17 19:47:00', 'dJPNk9nA', '6067457'), + (45810, 493, 2026, 'not_attending', '2023-04-26 21:46:39', '2025-12-17 19:47:01', 'dJPNk9nA', '6068078'), + (45811, 493, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dJPNk9nA', '6068094'), + (45812, 493, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dJPNk9nA', '6068252'), + (45813, 493, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dJPNk9nA', '6068253'), + (45814, 493, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dJPNk9nA', '6068254'), + (45815, 493, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dJPNk9nA', '6068280'), + (45816, 493, 2032, 'not_attending', '2023-05-31 20:29:13', '2025-12-17 19:47:04', 'dJPNk9nA', '6068281'), + (45817, 493, 2033, 'maybe', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dJPNk9nA', '6069093'), + (45818, 493, 2034, 'not_attending', '2023-04-20 18:29:32', '2025-12-17 19:47:00', 'dJPNk9nA', '6069372'), + (45819, 493, 2038, 'not_attending', '2023-04-26 21:46:46', '2025-12-17 19:47:01', 'dJPNk9nA', '6071944'), + (45820, 493, 2040, 'not_attending', '2023-04-26 21:46:42', '2025-12-17 19:47:01', 'dJPNk9nA', '6072453'), + (45821, 493, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dJPNk9nA', '6072528'), + (45822, 493, 2042, 'not_attending', '2023-04-26 21:46:33', '2025-12-17 19:47:01', 'dJPNk9nA', '6072941'), + (45823, 493, 2043, 'attending', '2023-04-26 21:46:28', '2025-12-17 19:47:01', 'dJPNk9nA', '6073023'), + (45824, 493, 2044, 'not_attending', '2023-05-23 11:34:17', '2025-12-17 19:47:03', 'dJPNk9nA', '6073678'), + (45825, 493, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dJPNk9nA', '6079840'), + (45826, 493, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dJPNk9nA', '6083398'), + (45827, 493, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dJPNk9nA', '6093504'), + (45828, 493, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dJPNk9nA', '6097414'), + (45829, 493, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dJPNk9nA', '6097442'), + (45830, 493, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dJPNk9nA', '6097684'), + (45831, 493, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dJPNk9nA', '6098762'), + (45832, 493, 2064, 'not_attending', '2023-06-03 20:07:32', '2025-12-17 19:46:50', 'dJPNk9nA', '6099988'), + (45833, 493, 2065, 'not_attending', '2023-06-03 20:07:28', '2025-12-17 19:46:49', 'dJPNk9nA', '6101169'), + (45834, 493, 2066, 'not_attending', '2023-06-03 20:07:25', '2025-12-17 19:47:04', 'dJPNk9nA', '6101361'), + (45835, 493, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dJPNk9nA', '6101362'), + (45836, 493, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dJPNk9nA', '6103752'), + (45837, 493, 2074, 'attending', '2023-05-24 14:38:24', '2025-12-17 19:47:03', 'dJPNk9nA', '6107312'), + (45838, 493, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dJPNk9nA', '6107314'), + (45839, 493, 2077, 'not_attending', '2023-06-03 20:07:29', '2025-12-17 19:46:49', 'dJPNk9nA', '6110217'), + (45840, 493, 2078, 'not_attending', '2023-05-23 11:34:19', '2025-12-17 19:47:03', 'dJPNk9nA', '6114163'), + (45841, 493, 2081, 'not_attending', '2023-05-23 11:34:20', '2025-12-17 19:47:03', 'dJPNk9nA', '6115611'), + (45842, 493, 2083, 'maybe', '2023-05-26 14:54:09', '2025-12-17 19:47:04', 'dJPNk9nA', '6115629'), + (45843, 493, 2085, 'not_attending', '2023-05-31 20:29:00', '2025-12-17 19:47:04', 'dJPNk9nA', '6118068'), + (45844, 493, 2086, 'not_attending', '2023-05-31 20:29:02', '2025-12-17 19:47:04', 'dJPNk9nA', '6119877'), + (45845, 493, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dJPNk9nA', '6120034'), + (45846, 493, 2089, 'not_attending', '2023-06-03 20:07:21', '2025-12-17 19:47:04', 'dJPNk9nA', '6125227'), + (45847, 493, 2090, 'not_attending', '2023-05-31 20:29:04', '2025-12-17 19:47:04', 'dJPNk9nA', '6127961'), + (45848, 493, 2091, 'not_attending', '2023-06-03 20:07:20', '2025-12-17 19:47:04', 'dJPNk9nA', '6130657'), + (45849, 493, 2093, 'not_attending', '2023-06-05 12:39:28', '2025-12-17 19:47:04', 'dJPNk9nA', '6132598'), + (45850, 493, 2094, 'maybe', '2023-06-09 02:30:43', '2025-12-17 19:47:04', 'dJPNk9nA', '6135924'), + (45851, 493, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dJPNk9nA', '6136733'), + (45852, 493, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dJPNk9nA', '6137989'), + (45853, 493, 2097, 'maybe', '2023-06-09 02:30:48', '2025-12-17 19:47:04', 'dJPNk9nA', '6139059'), + (45854, 493, 2098, 'maybe', '2023-06-09 02:30:42', '2025-12-17 19:47:04', 'dJPNk9nA', '6139831'), + (45855, 493, 2099, 'not_attending', '2023-06-14 22:38:17', '2025-12-17 19:46:49', 'dJPNk9nA', '6143012'), + (45856, 493, 2102, 'not_attending', '2023-06-14 22:38:19', '2025-12-17 19:46:50', 'dJPNk9nA', '6146559'), + (45857, 493, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dJPNk9nA', '6150864'), + (45858, 493, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dJPNk9nA', '6155491'), + (45859, 493, 2115, 'not_attending', '2023-06-30 10:28:55', '2025-12-17 19:46:50', 'dJPNk9nA', '6161437'), + (45860, 493, 2116, 'not_attending', '2023-06-30 10:29:12', '2025-12-17 19:46:51', 'dJPNk9nA', '6163389'), + (45861, 493, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dJPNk9nA', '6164417'), + (45862, 493, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dJPNk9nA', '6166388'), + (45863, 493, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dJPNk9nA', '6176439'), + (45864, 493, 2122, 'not_attending', '2023-06-30 10:28:59', '2025-12-17 19:46:51', 'dJPNk9nA', '6176476'), + (45865, 493, 2124, 'not_attending', '2023-06-30 10:29:08', '2025-12-17 19:46:51', 'dJPNk9nA', '6176988'), + (45866, 493, 2125, 'not_attending', '2023-06-30 10:29:01', '2025-12-17 19:46:51', 'dJPNk9nA', '6177485'), + (45867, 493, 2126, 'not_attending', '2023-06-30 10:28:57', '2025-12-17 19:46:51', 'dJPNk9nA', '6177548'), + (45868, 493, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dJPNk9nA', '6182410'), + (45869, 493, 2129, 'not_attending', '2023-07-04 20:44:33', '2025-12-17 19:46:51', 'dJPNk9nA', '6182825'), + (45870, 493, 2130, 'not_attending', '2023-07-04 20:49:43', '2025-12-17 19:46:51', 'dJPNk9nA', '6183891'), + (45871, 493, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dJPNk9nA', '6185812'), + (45872, 493, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dJPNk9nA', '6187651'), + (45873, 493, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dJPNk9nA', '6187963'), + (45874, 493, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dJPNk9nA', '6187964'), + (45875, 493, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dJPNk9nA', '6187966'), + (45876, 493, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dJPNk9nA', '6187967'), + (45877, 493, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dJPNk9nA', '6187969'), + (45878, 493, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dJPNk9nA', '6334878'), + (45879, 493, 2146, 'maybe', '2023-07-21 11:02:36', '2025-12-17 19:46:53', 'dJPNk9nA', '6335638'), + (45880, 493, 2148, 'attending', '2023-07-25 00:04:48', '2025-12-17 19:46:53', 'dJPNk9nA', '6335667'), + (45881, 493, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dJPNk9nA', '6337236'), + (45882, 493, 2155, 'attending', '2023-07-17 21:10:37', '2025-12-17 19:46:53', 'dJPNk9nA', '6337970'), + (45883, 493, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dJPNk9nA', '6338308'), + (45884, 493, 2159, 'maybe', '2023-07-16 21:29:27', '2025-12-17 19:46:53', 'dJPNk9nA', '6338355'), + (45885, 493, 2160, 'attending', '2023-07-24 01:36:44', '2025-12-17 19:46:54', 'dJPNk9nA', '6338358'), + (45886, 493, 2162, 'maybe', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dJPNk9nA', '6340845'), + (45887, 493, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dJPNk9nA', '6341710'), + (45888, 493, 2164, 'not_attending', '2023-07-24 01:36:46', '2025-12-17 19:46:54', 'dJPNk9nA', '6341797'), + (45889, 493, 2165, 'attending', '2023-07-27 15:35:29', '2025-12-17 19:46:54', 'dJPNk9nA', '6342044'), + (45890, 493, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dJPNk9nA', '6342298'), + (45891, 493, 2171, 'not_attending', '2023-07-24 01:36:59', '2025-12-17 19:46:54', 'dJPNk9nA', '6342328'), + (45892, 493, 2173, 'not_attending', '2023-07-20 21:23:43', '2025-12-17 19:46:53', 'dJPNk9nA', '6342769'), + (45893, 493, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dJPNk9nA', '6343294'), + (45894, 493, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dJPNk9nA', '6347034'), + (45895, 493, 2177, 'not_attending', '2023-07-27 15:35:48', '2025-12-17 19:46:55', 'dJPNk9nA', '6347053'), + (45896, 493, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dJPNk9nA', '6347056'), + (45897, 493, 2179, 'not_attending', '2023-07-30 20:57:02', '2025-12-17 19:46:54', 'dJPNk9nA', '6347591'), + (45898, 493, 2180, 'attending', '2023-07-26 20:03:56', '2025-12-17 19:46:54', 'dJPNk9nA', '6348788'), + (45899, 493, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dJPNk9nA', '6353830'), + (45900, 493, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dJPNk9nA', '6353831'), + (45901, 493, 2187, 'not_attending', '2023-08-02 01:36:22', '2025-12-17 19:46:55', 'dJPNk9nA', '6357559'), + (45902, 493, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dJPNk9nA', '6357867'), + (45903, 493, 2190, 'maybe', '2023-08-02 19:01:58', '2025-12-17 19:46:55', 'dJPNk9nA', '6357892'), + (45904, 493, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dJPNk9nA', '6358652'), + (45905, 493, 2192, 'not_attending', '2023-08-04 00:10:50', '2025-12-17 19:46:54', 'dJPNk9nA', '6358666'), + (45906, 493, 2195, 'not_attending', '2023-08-22 10:51:49', '2025-12-17 19:46:55', 'dJPNk9nA', '6359397'), + (45907, 493, 2196, 'maybe', '2023-09-05 18:46:08', '2025-12-17 19:46:56', 'dJPNk9nA', '6359398'), + (45908, 493, 2197, 'not_attending', '2023-09-11 15:13:50', '2025-12-17 19:46:44', 'dJPNk9nA', '6359399'), + (45909, 493, 2198, 'not_attending', '2023-09-21 11:19:11', '2025-12-17 19:46:45', 'dJPNk9nA', '6359400'), + (45910, 493, 2199, 'attending', '2023-08-16 23:03:26', '2025-12-17 19:46:55', 'dJPNk9nA', '6359849'), + (45911, 493, 2200, 'attending', '2023-08-10 15:42:02', '2025-12-17 19:46:55', 'dJPNk9nA', '6359850'), + (45912, 493, 2204, 'not_attending', '2023-08-19 20:59:10', '2025-12-17 19:46:55', 'dJPNk9nA', '6361542'), + (45913, 493, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dJPNk9nA', '6361709'), + (45914, 493, 2209, 'attending', '2023-08-20 22:18:43', '2025-12-17 19:46:55', 'dJPNk9nA', '6361710'), + (45915, 493, 2210, 'attending', '2023-08-24 17:56:02', '2025-12-17 19:46:55', 'dJPNk9nA', '6361711'), + (45916, 493, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dJPNk9nA', '6361712'), + (45917, 493, 2212, 'not_attending', '2023-09-22 21:12:34', '2025-12-17 19:46:45', 'dJPNk9nA', '6361713'), + (45918, 493, 2214, 'attending', '2023-08-13 16:07:50', '2025-12-17 19:46:55', 'dJPNk9nA', '6363218'), + (45919, 493, 2218, 'maybe', '2023-08-22 10:51:07', '2025-12-17 19:46:55', 'dJPNk9nA', '6367308'), + (45920, 493, 2222, 'not_attending', '2023-08-24 17:55:42', '2025-12-17 19:46:55', 'dJPNk9nA', '6367358'), + (45921, 493, 2225, 'not_attending', '2023-08-24 17:55:56', '2025-12-17 19:46:55', 'dJPNk9nA', '6368434'), + (45922, 493, 2231, 'not_attending', '2023-08-24 17:56:53', '2025-12-17 19:46:55', 'dJPNk9nA', '6374748'), + (45923, 493, 2232, 'not_attending', '2023-08-22 10:52:08', '2025-12-17 19:46:55', 'dJPNk9nA', '6374818'), + (45924, 493, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dJPNk9nA', '6382573'), + (45925, 493, 2239, 'maybe', '2023-09-02 19:27:44', '2025-12-17 19:46:56', 'dJPNk9nA', '6387592'), + (45926, 493, 2240, 'not_attending', '2023-09-06 15:55:08', '2025-12-17 19:46:56', 'dJPNk9nA', '6388603'), + (45927, 493, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dJPNk9nA', '6388604'), + (45928, 493, 2242, 'attending', '2023-09-21 11:19:14', '2025-12-17 19:46:45', 'dJPNk9nA', '6388606'), + (45929, 493, 2245, 'not_attending', '2023-09-24 12:24:49', '2025-12-17 19:46:45', 'dJPNk9nA', '6393703'), + (45930, 493, 2247, 'attending', '2023-09-05 23:13:41', '2025-12-17 19:46:56', 'dJPNk9nA', '6394628'), + (45931, 493, 2248, 'attending', '2023-09-05 23:15:54', '2025-12-17 19:46:44', 'dJPNk9nA', '6394629'), + (45932, 493, 2249, 'attending', '2023-09-05 23:15:55', '2025-12-17 19:46:45', 'dJPNk9nA', '6394630'), + (45933, 493, 2250, 'attending', '2023-09-05 23:15:57', '2025-12-17 19:46:45', 'dJPNk9nA', '6394631'), + (45934, 493, 2252, 'maybe', '2023-09-12 12:43:51', '2025-12-17 19:46:45', 'dJPNk9nA', '6396837'), + (45935, 493, 2253, 'attending', '2023-09-21 19:37:52', '2025-12-17 19:46:45', 'dJPNk9nA', '6401811'), + (45936, 493, 2254, 'not_attending', '2023-09-16 14:56:32', '2025-12-17 19:46:44', 'dJPNk9nA', '6401889'), + (45937, 493, 2263, 'maybe', '2023-09-27 11:12:46', '2025-12-17 19:46:45', 'dJPNk9nA', '6429351'), + (45938, 493, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dJPNk9nA', '6440863'), + (45939, 493, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dJPNk9nA', '6445440'), + (45940, 493, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dJPNk9nA', '6453951'), + (45941, 493, 2277, 'not_attending', '2023-10-09 21:27:23', '2025-12-17 19:46:46', 'dJPNk9nA', '6455211'), + (45942, 493, 2278, 'attending', '2023-10-08 16:37:19', '2025-12-17 19:46:45', 'dJPNk9nA', '6455213'), + (45943, 493, 2279, 'attending', '2023-10-09 21:27:18', '2025-12-17 19:46:46', 'dJPNk9nA', '6455460'), + (45944, 493, 2284, 'not_attending', '2023-10-12 21:13:11', '2025-12-17 19:46:46', 'dJPNk9nA', '6460928'), + (45945, 493, 2285, 'not_attending', '2023-10-16 20:45:50', '2025-12-17 19:46:47', 'dJPNk9nA', '6460929'), + (45946, 493, 2286, 'not_attending', '2023-11-20 14:00:45', '2025-12-17 19:46:48', 'dJPNk9nA', '6460930'), + (45947, 493, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dJPNk9nA', '6461696'), + (45948, 493, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dJPNk9nA', '6462129'), + (45949, 493, 2290, 'attending', '2023-10-18 16:30:58', '2025-12-17 19:46:46', 'dJPNk9nA', '6462214'), + (45950, 493, 2291, 'not_attending', '2023-10-15 20:33:30', '2025-12-17 19:46:46', 'dJPNk9nA', '6462215'), + (45951, 493, 2292, 'attending', '2023-10-31 13:35:46', '2025-12-17 19:46:47', 'dJPNk9nA', '6462216'), + (45952, 493, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dJPNk9nA', '6463218'), + (45953, 493, 2295, 'not_attending', '2023-10-16 14:16:32', '2025-12-17 19:46:46', 'dJPNk9nA', '6467832'), + (45954, 493, 2296, 'not_attending', '2023-10-26 10:59:33', '2025-12-17 19:46:47', 'dJPNk9nA', '6468393'), + (45955, 493, 2299, 'not_attending', '2023-10-15 20:33:36', '2025-12-17 19:46:46', 'dJPNk9nA', '6472181'), + (45956, 493, 2302, 'not_attending', '2023-10-23 21:57:24', '2025-12-17 19:46:46', 'dJPNk9nA', '6482535'), + (45957, 493, 2303, 'not_attending', '2023-10-22 22:47:21', '2025-12-17 19:46:47', 'dJPNk9nA', '6482691'), + (45958, 493, 2304, 'not_attending', '2023-10-30 20:03:30', '2025-12-17 19:46:47', 'dJPNk9nA', '6482693'), + (45959, 493, 2306, 'attending', '2023-11-13 01:11:38', '2025-12-17 19:46:47', 'dJPNk9nA', '6484200'), + (45960, 493, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dJPNk9nA', '6484680'), + (45961, 493, 2308, 'not_attending', '2023-10-26 10:59:31', '2025-12-17 19:46:47', 'dJPNk9nA', '6485393'), + (45962, 493, 2310, 'attending', '2023-10-30 20:03:52', '2025-12-17 19:46:47', 'dJPNk9nA', '6487709'), + (45963, 493, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dJPNk9nA', '6507741'), + (45964, 493, 2318, 'attending', '2023-10-30 20:01:40', '2025-12-17 19:46:47', 'dJPNk9nA', '6508566'), + (45965, 493, 2320, 'maybe', '2023-11-08 16:03:45', '2025-12-17 19:46:47', 'dJPNk9nA', '6508647'), + (45966, 493, 2322, 'attending', '2023-11-13 00:10:28', '2025-12-17 19:46:48', 'dJPNk9nA', '6514659'), + (45967, 493, 2323, 'not_attending', '2023-11-20 14:00:47', '2025-12-17 19:46:49', 'dJPNk9nA', '6514660'), + (45968, 493, 2324, 'attending', '2023-11-21 14:41:29', '2025-12-17 19:46:49', 'dJPNk9nA', '6514662'), + (45969, 493, 2325, 'not_attending', '2023-11-21 14:41:32', '2025-12-17 19:46:36', 'dJPNk9nA', '6514663'), + (45970, 493, 2327, 'not_attending', '2023-11-02 22:14:59', '2025-12-17 19:46:47', 'dJPNk9nA', '6515494'), + (45971, 493, 2329, 'not_attending', '2023-11-06 22:31:37', '2025-12-17 19:46:47', 'dJPNk9nA', '6517138'), + (45972, 493, 2330, 'maybe', '2023-11-13 02:01:41', '2025-12-17 19:46:47', 'dJPNk9nA', '6517941'), + (45973, 493, 2331, 'attending', '2023-11-15 01:28:00', '2025-12-17 19:46:47', 'dJPNk9nA', '6518640'), + (45974, 493, 2332, 'not_attending', '2023-11-08 16:03:55', '2025-12-17 19:46:47', 'dJPNk9nA', '6518655'), + (45975, 493, 2333, 'attending', '2023-11-06 22:31:51', '2025-12-17 19:46:47', 'dJPNk9nA', '6519103'), + (45976, 493, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dJPNk9nA', '6535681'), + (45977, 493, 2338, 'attending', '2023-11-13 00:10:52', '2025-12-17 19:46:48', 'dJPNk9nA', '6538868'), + (45978, 493, 2339, 'maybe', '2023-11-13 00:10:15', '2025-12-17 19:46:47', 'dJPNk9nA', '6539128'), + (45979, 493, 2345, 'attending', '2023-11-28 22:43:48', '2025-12-17 19:46:48', 'dJPNk9nA', '6582414'), + (45980, 493, 2350, 'attending', '2023-11-21 14:42:49', '2025-12-17 19:46:48', 'dJPNk9nA', '6584352'), + (45981, 493, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dJPNk9nA', '6584747'), + (45982, 493, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dJPNk9nA', '6587097'), + (45983, 493, 2353, 'not_attending', '2023-11-30 14:27:07', '2025-12-17 19:46:48', 'dJPNk9nA', '6588894'), + (45984, 493, 2354, 'not_attending', '2023-11-30 14:26:48', '2025-12-17 19:46:48', 'dJPNk9nA', '6591742'), + (45985, 493, 2355, 'not_attending', '2023-11-30 14:27:27', '2025-12-17 19:46:49', 'dJPNk9nA', '6593339'), + (45986, 493, 2358, 'not_attending', '2023-11-30 14:26:55', '2025-12-17 19:46:48', 'dJPNk9nA', '6595321'), + (45987, 493, 2359, 'not_attending', '2023-11-30 14:26:46', '2025-12-17 19:46:48', 'dJPNk9nA', '6596617'), + (45988, 493, 2360, 'not_attending', '2023-12-02 23:30:08', '2025-12-17 19:46:49', 'dJPNk9nA', '6599341'), + (45989, 493, 2362, 'maybe', '2023-12-07 21:02:35', '2025-12-17 19:46:49', 'dJPNk9nA', '6605708'), + (45990, 493, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dJPNk9nA', '6609022'), + (45991, 493, 2364, 'not_attending', '2023-12-07 21:24:35', '2025-12-17 19:46:49', 'dJPNk9nA', '6613011'), + (45992, 493, 2365, 'attending', '2023-12-10 18:00:29', '2025-12-17 19:46:37', 'dJPNk9nA', '6613093'), + (45993, 493, 2370, 'attending', '2023-12-14 00:30:56', '2025-12-17 19:46:36', 'dJPNk9nA', '6623765'), + (45994, 493, 2371, 'maybe', '2023-12-15 14:41:12', '2025-12-17 19:46:36', 'dJPNk9nA', '6624495'), + (45995, 493, 2373, 'attending', '2024-01-02 13:58:58', '2025-12-17 19:46:38', 'dJPNk9nA', '6632678'), + (45996, 493, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dJPNk9nA', '6632757'), + (45997, 493, 2375, 'attending', '2023-12-20 22:39:57', '2025-12-17 19:46:36', 'dJPNk9nA', '6634548'), + (45998, 493, 2376, 'maybe', '2024-01-15 14:15:59', '2025-12-17 19:46:40', 'dJPNk9nA', '6642900'), + (45999, 493, 2377, 'maybe', '2024-01-02 13:58:46', '2025-12-17 19:46:37', 'dJPNk9nA', '6643448'), + (46000, 493, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dJPNk9nA', '6644187'), + (46001, 493, 2381, 'maybe', '2024-01-02 21:51:19', '2025-12-17 19:46:37', 'dJPNk9nA', '6646398'), + (46002, 493, 2382, 'not_attending', '2024-01-02 21:51:43', '2025-12-17 19:46:37', 'dJPNk9nA', '6646401'), + (46003, 493, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dJPNk9nA', '6648951'), + (46004, 493, 2387, 'attending', '2024-01-03 03:27:53', '2025-12-17 19:46:37', 'dJPNk9nA', '6648952'), + (46005, 493, 2388, 'attending', '2024-01-03 03:27:19', '2025-12-17 19:46:37', 'dJPNk9nA', '6649244'), + (46006, 493, 2389, 'not_attending', '2024-01-04 23:00:57', '2025-12-17 19:46:40', 'dJPNk9nA', '6651094'), + (46007, 493, 2391, 'not_attending', '2024-01-04 23:00:49', '2025-12-17 19:46:37', 'dJPNk9nA', '6654138'), + (46008, 493, 2393, 'attending', '2024-01-14 20:46:32', '2025-12-17 19:46:38', 'dJPNk9nA', '6654468'), + (46009, 493, 2394, 'maybe', '2024-01-17 01:22:19', '2025-12-17 19:46:38', 'dJPNk9nA', '6654470'), + (46010, 493, 2395, 'attending', '2024-01-14 20:47:35', '2025-12-17 19:46:38', 'dJPNk9nA', '6654471'), + (46011, 493, 2396, 'maybe', '2024-01-14 20:47:37', '2025-12-17 19:46:38', 'dJPNk9nA', '6655401'), + (46012, 493, 2397, 'maybe', '2024-01-09 00:34:43', '2025-12-17 19:46:37', 'dJPNk9nA', '6657379'), + (46013, 493, 2399, 'attending', '2024-01-08 13:21:32', '2025-12-17 19:46:37', 'dJPNk9nA', '6657583'), + (46014, 493, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dJPNk9nA', '6661585'), + (46015, 493, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dJPNk9nA', '6661588'), + (46016, 493, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dJPNk9nA', '6661589'), + (46017, 493, 2405, 'not_attending', '2024-01-17 01:22:24', '2025-12-17 19:46:38', 'dJPNk9nA', '6667332'), + (46018, 493, 2406, 'not_attending', '2024-01-18 20:15:38', '2025-12-17 19:46:40', 'dJPNk9nA', '6692344'), + (46019, 493, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dJPNk9nA', '6699906'), + (46020, 493, 2408, 'not_attending', '2024-01-15 11:37:32', '2025-12-17 19:46:40', 'dJPNk9nA', '6699907'), + (46021, 493, 2409, 'attending', '2024-01-20 16:02:53', '2025-12-17 19:46:41', 'dJPNk9nA', '6699909'), + (46022, 493, 2410, 'attending', '2024-01-20 16:02:55', '2025-12-17 19:46:41', 'dJPNk9nA', '6699911'), + (46023, 493, 2411, 'attending', '2024-01-20 16:06:56', '2025-12-17 19:46:41', 'dJPNk9nA', '6699913'), + (46024, 493, 2412, 'not_attending', '2024-01-20 16:10:42', '2025-12-17 19:46:43', 'dJPNk9nA', '6700717'), + (46025, 493, 2414, 'attending', '2024-01-19 12:28:08', '2025-12-17 19:46:40', 'dJPNk9nA', '6701000'), + (46026, 493, 2415, 'attending', '2024-01-19 12:28:11', '2025-12-17 19:46:40', 'dJPNk9nA', '6701001'), + (46027, 493, 2416, 'maybe', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dJPNk9nA', '6701109'), + (46028, 493, 2419, 'not_attending', '2024-01-25 04:22:36', '2025-12-17 19:46:41', 'dJPNk9nA', '6704505'), + (46029, 493, 2421, 'maybe', '2024-01-21 15:40:15', '2025-12-17 19:46:40', 'dJPNk9nA', '6704598'), + (46030, 493, 2423, 'maybe', '2024-01-21 15:40:12', '2025-12-17 19:46:40', 'dJPNk9nA', '6705141'), + (46031, 493, 2424, 'not_attending', '2024-01-19 12:27:41', '2025-12-17 19:46:40', 'dJPNk9nA', '6705143'), + (46032, 493, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dJPNk9nA', '6705219'), + (46033, 493, 2426, 'maybe', '2024-01-21 15:40:53', '2025-12-17 19:46:40', 'dJPNk9nA', '6705569'), + (46034, 493, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dJPNk9nA', '6710153'), + (46035, 493, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dJPNk9nA', '6711552'), + (46036, 493, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dJPNk9nA', '6711553'), + (46037, 493, 2431, 'maybe', '2024-01-31 04:53:23', '2025-12-17 19:46:41', 'dJPNk9nA', '6712394'), + (46038, 493, 2433, 'not_attending', '2024-01-25 04:23:31', '2025-12-17 19:46:40', 'dJPNk9nA', '6715688'), + (46039, 493, 2435, 'maybe', '2024-01-29 15:14:00', '2025-12-17 19:46:41', 'dJPNk9nA', '6721547'), + (46040, 493, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dJPNk9nA', '6722688'), + (46041, 493, 2438, 'attending', '2024-02-02 16:56:13', '2025-12-17 19:46:41', 'dJPNk9nA', '6730201'), + (46042, 493, 2439, 'maybe', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dJPNk9nA', '6730620'), + (46043, 493, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dJPNk9nA', '6730642'), + (46044, 493, 2441, 'maybe', '2024-02-01 02:16:13', '2025-12-17 19:46:41', 'dJPNk9nA', '6731263'), + (46045, 493, 2443, 'attending', '2024-02-03 15:25:06', '2025-12-17 19:46:41', 'dJPNk9nA', '6733775'), + (46046, 493, 2445, 'maybe', '2024-02-11 16:58:57', '2025-12-17 19:46:41', 'dJPNk9nA', '6734368'), + (46047, 493, 2447, 'maybe', '2024-03-14 16:16:18', '2025-12-17 19:46:32', 'dJPNk9nA', '6734370'), + (46048, 493, 2448, 'not_attending', '2024-03-28 15:37:30', '2025-12-17 19:46:33', 'dJPNk9nA', '6734371'), + (46049, 493, 2450, 'not_attending', '2024-02-11 04:46:54', '2025-12-17 19:46:41', 'dJPNk9nA', '6738807'), + (46050, 493, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dJPNk9nA', '6740364'), + (46051, 493, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dJPNk9nA', '6743829'), + (46052, 493, 2461, 'attending', '2024-02-10 15:34:27', '2025-12-17 19:46:41', 'dJPNk9nA', '6744245'), + (46053, 493, 2462, 'maybe', '2024-02-13 00:48:08', '2025-12-17 19:46:41', 'dJPNk9nA', '6744701'), + (46054, 493, 2465, 'not_attending', '2024-02-22 17:28:42', '2025-12-17 19:46:42', 'dJPNk9nA', '7026725'), + (46055, 493, 2466, 'attending', '2024-02-14 01:23:39', '2025-12-17 19:46:41', 'dJPNk9nA', '7026777'), + (46056, 493, 2467, 'attending', '2024-02-22 17:29:12', '2025-12-17 19:46:43', 'dJPNk9nA', '7029987'), + (46057, 493, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dJPNk9nA', '7030380'), + (46058, 493, 2471, 'maybe', '2024-02-22 17:28:46', '2025-12-17 19:46:42', 'dJPNk9nA', '7032425'), + (46059, 493, 2472, 'maybe', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'dJPNk9nA', '7033677'), + (46060, 493, 2473, 'not_attending', '2024-02-22 17:28:37', '2025-12-17 19:46:43', 'dJPNk9nA', '7033724'), + (46061, 493, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dJPNk9nA', '7035415'), + (46062, 493, 2475, 'not_attending', '2024-02-22 17:28:32', '2025-12-17 19:46:43', 'dJPNk9nA', '7035643'), + (46063, 493, 2476, 'attending', '2024-02-22 17:28:35', '2025-12-17 19:46:43', 'dJPNk9nA', '7035691'), + (46064, 493, 2477, 'maybe', '2024-02-22 17:28:25', '2025-12-17 19:46:42', 'dJPNk9nA', '7035692'), + (46065, 493, 2478, 'attending', '2024-02-22 17:26:21', '2025-12-17 19:46:43', 'dJPNk9nA', '7036478'), + (46066, 493, 2479, 'not_attending', '2024-02-22 17:28:39', '2025-12-17 19:46:43', 'dJPNk9nA', '7037009'), + (46067, 493, 2480, 'attending', '2024-02-25 18:06:20', '2025-12-17 19:46:43', 'dJPNk9nA', '7042160'), + (46068, 493, 2481, 'maybe', '2024-02-26 00:38:39', '2025-12-17 19:46:43', 'dJPNk9nA', '7044715'), + (46069, 493, 2482, 'not_attending', '2024-02-26 03:11:31', '2025-12-17 19:46:44', 'dJPNk9nA', '7044719'), + (46070, 493, 2484, 'attending', '2024-02-26 03:09:56', '2025-12-17 19:46:43', 'dJPNk9nA', '7046836'), + (46071, 493, 2486, 'maybe', '2024-02-27 13:08:50', '2025-12-17 19:46:43', 'dJPNk9nA', '7048277'), + (46072, 493, 2487, 'not_attending', '2024-03-05 00:37:57', '2025-12-17 19:46:33', 'dJPNk9nA', '7049279'), + (46073, 493, 2489, 'attending', '2024-02-27 23:18:16', '2025-12-17 19:46:43', 'dJPNk9nA', '7050161'), + (46074, 493, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dJPNk9nA', '7050318'), + (46075, 493, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dJPNk9nA', '7050319'), + (46076, 493, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dJPNk9nA', '7050322'), + (46077, 493, 2493, 'maybe', '2024-03-05 00:38:20', '2025-12-17 19:46:32', 'dJPNk9nA', '7052471'), + (46078, 493, 2495, 'not_attending', '2024-03-05 17:48:03', '2025-12-17 19:46:32', 'dJPNk9nA', '7052982'), + (46079, 493, 2496, 'attending', '2024-03-02 21:41:48', '2025-12-17 19:46:43', 'dJPNk9nA', '7055967'), + (46080, 493, 2498, 'attending', '2024-03-20 01:30:24', '2025-12-17 19:46:33', 'dJPNk9nA', '7057662'), + (46081, 493, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dJPNk9nA', '7057804'), + (46082, 493, 2500, 'attending', '2024-03-06 19:50:27', '2025-12-17 19:46:43', 'dJPNk9nA', '7058603'), + (46083, 493, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dJPNk9nA', '7059866'), + (46084, 493, 2504, 'not_attending', '2024-03-10 17:37:49', '2025-12-17 19:46:33', 'dJPNk9nA', '7063296'), + (46085, 493, 2505, 'attending', '2024-03-12 15:15:32', '2025-12-17 19:46:33', 'dJPNk9nA', '7069163'), + (46086, 493, 2507, 'attending', '2024-03-12 15:20:25', '2025-12-17 19:46:33', 'dJPNk9nA', '7072824'), + (46087, 493, 2508, 'maybe', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dJPNk9nA', '7074348'), + (46088, 493, 2509, 'attending', '2024-03-28 15:34:53', '2025-12-17 19:46:33', 'dJPNk9nA', '7074349'), + (46089, 493, 2512, 'not_attending', '2024-04-04 20:03:58', '2025-12-17 19:46:33', 'dJPNk9nA', '7074352'), + (46090, 493, 2513, 'not_attending', '2024-03-31 19:09:41', '2025-12-17 19:46:34', 'dJPNk9nA', '7074353'), + (46091, 493, 2514, 'not_attending', '2024-03-31 19:09:45', '2025-12-17 19:46:34', 'dJPNk9nA', '7074354'), + (46092, 493, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJPNk9nA', '7074364'), + (46093, 493, 2525, 'attending', '2024-06-13 23:37:14', '2025-12-17 19:46:28', 'dJPNk9nA', '7074365'), + (46094, 493, 2526, 'not_attending', '2024-07-27 02:35:59', '2025-12-17 19:46:31', 'dJPNk9nA', '7074366'), + (46095, 493, 2527, 'not_attending', '2024-06-27 18:34:26', '2025-12-17 19:46:29', 'dJPNk9nA', '7074367'), + (46096, 493, 2528, 'not_attending', '2024-07-26 23:47:55', '2025-12-17 19:46:31', 'dJPNk9nA', '7074368'), + (46097, 493, 2529, 'maybe', '2024-05-23 21:05:21', '2025-12-17 19:46:35', 'dJPNk9nA', '7074369'), + (46098, 493, 2530, 'not_attending', '2024-06-10 11:06:23', '2025-12-17 19:46:31', 'dJPNk9nA', '7074373'), + (46099, 493, 2531, 'not_attending', '2024-06-10 11:06:19', '2025-12-17 19:46:32', 'dJPNk9nA', '7074378'), + (46100, 493, 2533, 'not_attending', '2024-06-10 11:06:21', '2025-12-17 19:46:32', 'dJPNk9nA', '7074384'), + (46101, 493, 2534, 'attending', '2024-03-13 17:45:38', '2025-12-17 19:46:32', 'dJPNk9nA', '7076875'), + (46102, 493, 2537, 'attending', '2024-03-17 02:14:27', '2025-12-17 19:46:33', 'dJPNk9nA', '7085484'), + (46103, 493, 2538, 'attending', '2024-03-17 02:14:21', '2025-12-17 19:46:33', 'dJPNk9nA', '7085485'), + (46104, 493, 2539, 'not_attending', '2024-03-17 02:20:25', '2025-12-17 19:46:33', 'dJPNk9nA', '7085486'), + (46105, 493, 2540, 'attending', '2024-03-16 21:39:45', '2025-12-17 19:46:32', 'dJPNk9nA', '7089267'), + (46106, 493, 2542, 'attending', '2024-03-26 01:22:24', '2025-12-17 19:46:33', 'dJPNk9nA', '7090025'), + (46107, 493, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dJPNk9nA', '7098747'), + (46108, 493, 2550, 'attending', '2024-03-26 20:11:38', '2025-12-17 19:46:33', 'dJPNk9nA', '7102333'), + (46109, 493, 2552, 'attending', '2024-03-28 01:12:43', '2025-12-17 19:46:33', 'dJPNk9nA', '7111123'), + (46110, 493, 2553, 'attending', '2024-03-29 12:41:50', '2025-12-17 19:46:33', 'dJPNk9nA', '7113468'), + (46111, 493, 2554, 'attending', '2024-03-30 21:43:25', '2025-12-17 19:46:33', 'dJPNk9nA', '7114856'), + (46112, 493, 2555, 'attending', '2024-03-31 19:09:30', '2025-12-17 19:46:33', 'dJPNk9nA', '7114951'), + (46113, 493, 2556, 'not_attending', '2024-03-31 19:09:22', '2025-12-17 19:46:34', 'dJPNk9nA', '7114955'), + (46114, 493, 2557, 'attending', '2024-03-31 19:08:55', '2025-12-17 19:46:34', 'dJPNk9nA', '7114956'), + (46115, 493, 2558, 'not_attending', '2024-04-05 21:29:05', '2025-12-17 19:46:35', 'dJPNk9nA', '7114957'), + (46116, 493, 2561, 'attending', '2024-04-01 22:18:29', '2025-12-17 19:46:33', 'dJPNk9nA', '7131267'), + (46117, 493, 2563, 'maybe', '2024-04-04 23:38:16', '2025-12-17 19:46:33', 'dJPNk9nA', '7134734'), + (46118, 493, 2564, 'attending', '2024-04-09 01:29:57', '2025-12-17 19:46:33', 'dJPNk9nA', '7134735'), + (46119, 493, 2566, 'not_attending', '2024-04-07 22:41:08', '2025-12-17 19:46:34', 'dJPNk9nA', '7140664'), + (46120, 493, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dJPNk9nA', '7153615'), + (46121, 493, 2571, 'attending', '2024-04-07 21:00:15', '2025-12-17 19:46:33', 'dJPNk9nA', '7159484'), + (46122, 493, 2572, 'attending', '2024-04-11 01:06:22', '2025-12-17 19:46:33', 'dJPNk9nA', '7159522'), + (46123, 493, 2573, 'not_attending', '2024-04-11 18:52:17', '2025-12-17 19:46:34', 'dJPNk9nA', '7160612'), + (46124, 493, 2575, 'attending', '2024-04-12 13:29:34', '2025-12-17 19:46:33', 'dJPNk9nA', '7164534'), + (46125, 493, 2576, 'not_attending', '2024-04-16 10:32:40', '2025-12-17 19:46:34', 'dJPNk9nA', '7164538'), + (46126, 493, 2578, 'not_attending', '2024-04-11 18:52:13', '2025-12-17 19:46:34', 'dJPNk9nA', '7167016'), + (46127, 493, 2581, 'not_attending', '2024-04-16 10:32:33', '2025-12-17 19:46:34', 'dJPNk9nA', '7169048'), + (46128, 493, 2584, 'not_attending', '2024-04-18 10:33:59', '2025-12-17 19:46:34', 'dJPNk9nA', '7175057'), + (46129, 493, 2585, 'not_attending', '2024-04-16 10:32:35', '2025-12-17 19:46:34', 'dJPNk9nA', '7175828'), + (46130, 493, 2589, 'not_attending', '2024-04-16 10:32:43', '2025-12-17 19:46:34', 'dJPNk9nA', '7177235'), + (46131, 493, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dJPNk9nA', '7178446'), + (46132, 493, 2596, 'attending', '2024-04-25 15:36:18', '2025-12-17 19:46:34', 'dJPNk9nA', '7183788'), + (46133, 493, 2602, 'attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dJPNk9nA', '7220467'), + (46134, 493, 2603, 'attending', '2024-05-09 21:44:38', '2025-12-17 19:46:35', 'dJPNk9nA', '7225669'), + (46135, 493, 2604, 'attending', '2024-05-16 01:47:49', '2025-12-17 19:46:36', 'dJPNk9nA', '7225670'), + (46136, 493, 2605, 'not_attending', '2024-05-02 20:02:16', '2025-12-17 19:46:35', 'dJPNk9nA', '7229243'), + (46137, 493, 2609, 'attending', '2024-05-05 09:46:44', '2025-12-17 19:46:35', 'dJPNk9nA', '7240354'), + (46138, 493, 2611, 'maybe', '2024-05-06 12:48:20', '2025-12-17 19:46:35', 'dJPNk9nA', '7247642'), + (46139, 493, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dJPNk9nA', '7251633'), + (46140, 493, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dJPNk9nA', '7263048'), + (46141, 493, 2626, 'attending', '2024-05-12 03:39:06', '2025-12-17 19:46:35', 'dJPNk9nA', '7264723'), + (46142, 493, 2627, 'not_attending', '2024-05-12 03:39:12', '2025-12-17 19:46:35', 'dJPNk9nA', '7264724'), + (46143, 493, 2628, 'attending', '2024-05-12 03:39:13', '2025-12-17 19:46:36', 'dJPNk9nA', '7264725'), + (46144, 493, 2629, 'attending', '2024-05-12 03:39:14', '2025-12-17 19:46:28', 'dJPNk9nA', '7264726'), + (46145, 493, 2630, 'attending', '2024-05-16 10:52:58', '2025-12-17 19:46:35', 'dJPNk9nA', '7264801'), + (46146, 493, 2631, 'attending', '2024-05-12 15:50:03', '2025-12-17 19:46:35', 'dJPNk9nA', '7265589'), + (46147, 493, 2632, 'maybe', '2024-05-14 17:32:52', '2025-12-17 19:46:35', 'dJPNk9nA', '7269123'), + (46148, 493, 2641, 'maybe', '2024-05-19 23:33:39', '2025-12-17 19:46:35', 'dJPNk9nA', '7276107'), + (46149, 493, 2643, 'attending', '2024-05-18 14:52:41', '2025-12-17 19:46:35', 'dJPNk9nA', '7276587'), + (46150, 493, 2644, 'attending', '2024-05-19 19:56:44', '2025-12-17 19:46:35', 'dJPNk9nA', '7279039'), + (46151, 493, 2646, 'not_attending', '2024-05-20 21:57:41', '2025-12-17 19:46:35', 'dJPNk9nA', '7281768'), + (46152, 493, 2647, 'attending', '2024-05-26 12:59:00', '2025-12-17 19:46:28', 'dJPNk9nA', '7282057'), + (46153, 493, 2649, 'attending', '2024-05-22 16:09:20', '2025-12-17 19:46:35', 'dJPNk9nA', '7282950'), + (46154, 493, 2652, 'attending', '2024-05-26 12:58:32', '2025-12-17 19:46:36', 'dJPNk9nA', '7288339'), + (46155, 493, 2656, 'attending', '2024-05-30 22:27:25', '2025-12-17 19:46:36', 'dJPNk9nA', '7291301'), + (46156, 493, 2657, 'attending', '2024-05-29 15:55:21', '2025-12-17 19:46:36', 'dJPNk9nA', '7294438'), + (46157, 493, 2659, 'attending', '2024-06-01 21:55:01', '2025-12-17 19:46:36', 'dJPNk9nA', '7299599'), + (46158, 493, 2660, 'attending', '2024-06-02 06:17:44', '2025-12-17 19:46:36', 'dJPNk9nA', '7301638'), + (46159, 493, 2661, 'attending', '2024-06-02 14:03:30', '2025-12-17 19:46:28', 'dJPNk9nA', '7302674'), + (46160, 493, 2663, 'attending', '2024-06-03 04:15:27', '2025-12-17 19:46:36', 'dJPNk9nA', '7303913'), + (46161, 493, 2665, 'attending', '2024-06-07 20:40:29', '2025-12-17 19:46:36', 'dJPNk9nA', '7306370'), + (46162, 493, 2667, 'attending', '2024-06-05 13:18:08', '2025-12-17 19:46:36', 'dJPNk9nA', '7307776'), + (46163, 493, 2668, 'attending', '2024-06-05 19:37:57', '2025-12-17 19:46:36', 'dJPNk9nA', '7308821'), + (46164, 493, 2669, 'attending', '2024-06-08 14:29:29', '2025-12-17 19:46:36', 'dJPNk9nA', '7318057'), + (46165, 493, 2670, 'attending', '2024-06-08 17:56:21', '2025-12-17 19:46:36', 'dJPNk9nA', '7318188'), + (46166, 493, 2675, 'not_attending', '2024-07-26 23:48:09', '2025-12-17 19:46:31', 'dJPNk9nA', '7319481'), + (46167, 493, 2676, 'maybe', '2024-08-12 19:45:36', '2025-12-17 19:46:32', 'dJPNk9nA', '7319482'), + (46168, 493, 2677, 'attending', '2024-10-04 09:54:46', '2025-12-17 19:46:26', 'dJPNk9nA', '7319483'), + (46169, 493, 2678, 'attending', '2024-06-10 11:05:54', '2025-12-17 19:46:28', 'dJPNk9nA', '7319489'), + (46170, 493, 2679, 'not_attending', '2024-06-09 22:37:49', '2025-12-17 19:46:29', 'dJPNk9nA', '7319490'), + (46171, 493, 2682, 'attending', '2024-06-10 12:56:46', '2025-12-17 19:46:28', 'dJPNk9nA', '7321862'), + (46172, 493, 2684, 'attending', '2024-06-10 19:30:02', '2025-12-17 19:46:28', 'dJPNk9nA', '7322001'), + (46173, 493, 2687, 'attending', '2024-06-11 19:35:30', '2025-12-17 19:46:28', 'dJPNk9nA', '7324019'), + (46174, 493, 2688, 'attending', '2024-06-13 10:39:27', '2025-12-17 19:46:29', 'dJPNk9nA', '7324073'), + (46175, 493, 2689, 'attending', '2024-06-12 12:49:50', '2025-12-17 19:46:29', 'dJPNk9nA', '7324074'), + (46176, 493, 2690, 'attending', '2024-06-12 12:49:53', '2025-12-17 19:46:30', 'dJPNk9nA', '7324075'), + (46177, 493, 2691, 'attending', '2024-06-12 12:49:48', '2025-12-17 19:46:30', 'dJPNk9nA', '7324076'), + (46178, 493, 2692, 'not_attending', '2024-06-12 12:49:37', '2025-12-17 19:46:30', 'dJPNk9nA', '7324077'), + (46179, 493, 2693, 'not_attending', '2024-07-05 21:15:05', '2025-12-17 19:46:31', 'dJPNk9nA', '7324078'), + (46180, 493, 2694, 'not_attending', '2024-07-05 21:15:01', '2025-12-17 19:46:31', 'dJPNk9nA', '7324079'), + (46181, 493, 2695, 'not_attending', '2024-06-12 12:50:04', '2025-12-17 19:46:31', 'dJPNk9nA', '7324080'), + (46182, 493, 2696, 'not_attending', '2024-06-12 12:50:02', '2025-12-17 19:46:32', 'dJPNk9nA', '7324081'), + (46183, 493, 2697, 'not_attending', '2024-07-23 14:49:19', '2025-12-17 19:46:32', 'dJPNk9nA', '7324082'), + (46184, 493, 2698, 'attending', '2024-07-05 21:15:34', '2025-12-17 19:46:24', 'dJPNk9nA', '7324083'), + (46185, 493, 2699, 'attending', '2024-06-12 16:47:36', '2025-12-17 19:46:28', 'dJPNk9nA', '7324385'), + (46186, 493, 2700, 'attending', '2024-06-13 16:56:10', '2025-12-17 19:46:28', 'dJPNk9nA', '7324388'), + (46187, 493, 2701, 'maybe', '2024-06-28 02:12:33', '2025-12-17 19:46:29', 'dJPNk9nA', '7324391'), + (46188, 493, 2702, 'attending', '2024-06-13 10:32:35', '2025-12-17 19:46:28', 'dJPNk9nA', '7324867'), + (46189, 493, 2705, 'attending', '2024-06-13 13:16:55', '2025-12-17 19:46:29', 'dJPNk9nA', '7324944'), + (46190, 493, 2706, 'attending', '2024-06-16 22:43:58', '2025-12-17 19:46:28', 'dJPNk9nA', '7324947'), + (46191, 493, 2711, 'not_attending', '2024-07-15 04:03:52', '2025-12-17 19:46:30', 'dJPNk9nA', '7326524'), + (46192, 493, 2712, 'not_attending', '2024-07-27 02:35:48', '2025-12-17 19:46:31', 'dJPNk9nA', '7326525'), + (46193, 493, 2716, 'not_attending', '2024-06-16 22:44:14', '2025-12-17 19:46:29', 'dJPNk9nA', '7329096'), + (46194, 493, 2722, 'attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dJPNk9nA', '7331457'), + (46195, 493, 2724, 'attending', '2024-06-24 20:54:00', '2025-12-17 19:46:29', 'dJPNk9nA', '7332562'), + (46196, 493, 2729, 'not_attending', '2024-06-23 15:55:42', '2025-12-17 19:46:29', 'dJPNk9nA', '7335092'), + (46197, 493, 2731, 'maybe', '2024-06-24 23:56:53', '2025-12-17 19:46:29', 'dJPNk9nA', '7335303'), + (46198, 493, 2736, 'attending', '2024-06-29 19:15:15', '2025-12-17 19:46:29', 'dJPNk9nA', '7342038'), + (46199, 493, 2743, 'maybe', '2024-07-05 22:15:28', '2025-12-17 19:46:29', 'dJPNk9nA', '7345688'), + (46200, 493, 2745, 'maybe', '2024-07-24 18:26:49', '2025-12-17 19:46:30', 'dJPNk9nA', '7348712'), + (46201, 493, 2746, 'maybe', '2024-07-11 22:17:57', '2025-12-17 19:46:29', 'dJPNk9nA', '7348713'), + (46202, 493, 2747, 'attending', '2024-07-16 03:26:19', '2025-12-17 19:46:30', 'dJPNk9nA', '7353587'), + (46203, 493, 2748, 'attending', '2024-07-06 12:28:23', '2025-12-17 19:46:29', 'dJPNk9nA', '7353759'), + (46204, 493, 2749, 'maybe', '2024-07-07 18:42:30', '2025-12-17 19:46:29', 'dJPNk9nA', '7355496'), + (46205, 493, 2755, 'attending', '2024-07-09 20:07:19', '2025-12-17 19:46:29', 'dJPNk9nA', '7357808'), + (46206, 493, 2757, 'attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dJPNk9nA', '7358733'), + (46207, 493, 2758, 'maybe', '2024-07-16 03:26:15', '2025-12-17 19:46:30', 'dJPNk9nA', '7358837'), + (46208, 493, 2759, 'attending', '2024-07-12 18:10:59', '2025-12-17 19:46:30', 'dJPNk9nA', '7359624'), + (46209, 493, 2764, 'not_attending', '2024-07-14 23:08:11', '2025-12-17 19:46:30', 'dJPNk9nA', '7363595'), + (46210, 493, 2766, 'not_attending', '2024-07-23 14:49:02', '2025-12-17 19:46:30', 'dJPNk9nA', '7363643'), + (46211, 493, 2767, 'attending', '2024-07-22 21:50:00', '2025-12-17 19:46:30', 'dJPNk9nA', '7364726'), + (46212, 493, 2768, 'maybe', '2024-07-18 00:38:14', '2025-12-17 19:46:30', 'dJPNk9nA', '7366031'), + (46213, 493, 2769, 'attending', '2024-07-19 20:03:10', '2025-12-17 19:46:30', 'dJPNk9nA', '7366803'), + (46214, 493, 2770, 'attending', '2024-07-20 20:40:50', '2025-12-17 19:46:30', 'dJPNk9nA', '7368196'), + (46215, 493, 2773, 'not_attending', '2024-07-27 02:35:51', '2025-12-17 19:46:31', 'dJPNk9nA', '7368605'), + (46216, 493, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJPNk9nA', '7368606'), + (46217, 493, 2776, 'attending', '2024-07-23 13:25:20', '2025-12-17 19:46:30', 'dJPNk9nA', '7370690'), + (46218, 493, 2777, 'not_attending', '2024-07-23 21:37:12', '2025-12-17 19:46:30', 'dJPNk9nA', '7370870'), + (46219, 493, 2778, 'not_attending', '2024-07-24 12:41:02', '2025-12-17 19:46:31', 'dJPNk9nA', '7371793'), + (46220, 493, 2779, 'not_attending', '2024-07-24 15:07:16', '2025-12-17 19:46:30', 'dJPNk9nA', '7371818'), + (46221, 493, 2780, 'not_attending', '2024-07-24 20:03:35', '2025-12-17 19:46:30', 'dJPNk9nA', '7371849'), + (46222, 493, 2781, 'not_attending', '2024-07-25 21:16:33', '2025-12-17 19:46:30', 'dJPNk9nA', '7373194'), + (46223, 493, 2782, 'not_attending', '2024-07-27 02:36:10', '2025-12-17 19:46:30', 'dJPNk9nA', '7376725'), + (46224, 493, 2786, 'not_attending', '2024-08-03 13:20:35', '2025-12-17 19:46:31', 'dJPNk9nA', '7381403'), + (46225, 493, 2787, 'not_attending', '2024-08-21 02:10:26', '2025-12-17 19:46:32', 'dJPNk9nA', '7381568'), + (46226, 493, 2788, 'not_attending', '2024-08-03 13:20:45', '2025-12-17 19:46:31', 'dJPNk9nA', '7384036'), + (46227, 493, 2796, 'not_attending', '2024-08-12 19:45:28', '2025-12-17 19:46:31', 'dJPNk9nA', '7391451'), + (46228, 493, 2797, 'not_attending', '2024-08-12 19:45:25', '2025-12-17 19:46:31', 'dJPNk9nA', '7392641'), + (46229, 493, 2798, 'not_attending', '2024-08-12 19:45:21', '2025-12-17 19:46:31', 'dJPNk9nA', '7395910'), + (46230, 493, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJPNk9nA', '7397462'), + (46231, 493, 2802, 'attending', '2024-09-01 20:39:10', '2025-12-17 19:46:32', 'dJPNk9nA', '7397463'), + (46232, 493, 2806, 'attending', '2024-09-04 20:55:36', '2025-12-17 19:46:25', 'dJPNk9nA', '7404888'), + (46233, 493, 2808, 'attending', '2024-09-01 19:46:23', '2025-12-17 19:46:32', 'dJPNk9nA', '7412860'), + (46234, 493, 2814, 'attending', '2024-09-08 16:16:28', '2025-12-17 19:46:24', 'dJPNk9nA', '7424267'), + (46235, 493, 2815, 'not_attending', '2024-09-09 14:59:08', '2025-12-17 19:46:25', 'dJPNk9nA', '7424268'), + (46236, 493, 2816, 'not_attending', '2024-09-09 14:59:16', '2025-12-17 19:46:25', 'dJPNk9nA', '7424269'), + (46237, 493, 2817, 'attending', '2024-09-09 14:59:18', '2025-12-17 19:46:25', 'dJPNk9nA', '7424270'), + (46238, 493, 2821, 'attending', '2024-09-10 21:30:28', '2025-12-17 19:46:26', 'dJPNk9nA', '7424275'), + (46239, 493, 2822, 'attending', '2024-10-11 20:22:27', '2025-12-17 19:46:26', 'dJPNk9nA', '7424276'), + (46240, 493, 2823, 'attending', '2024-09-06 13:29:26', '2025-12-17 19:46:24', 'dJPNk9nA', '7430247'), + (46241, 493, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJPNk9nA', '7432751'), + (46242, 493, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJPNk9nA', '7432752'), + (46243, 493, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJPNk9nA', '7432753'), + (46244, 493, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJPNk9nA', '7432754'), + (46245, 493, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJPNk9nA', '7432755'), + (46246, 493, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJPNk9nA', '7432756'), + (46247, 493, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJPNk9nA', '7432758'), + (46248, 493, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJPNk9nA', '7432759'), + (46249, 493, 2832, 'attending', '2024-09-10 12:29:59', '2025-12-17 19:46:24', 'dJPNk9nA', '7433324'), + (46250, 493, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dJPNk9nA', '7433834'), + (46251, 493, 2834, 'not_attending', '2024-09-11 13:59:52', '2025-12-17 19:46:25', 'dJPNk9nA', '7433852'), + (46252, 493, 2835, 'attending', '2024-09-11 13:10:31', '2025-12-17 19:46:24', 'dJPNk9nA', '7437354'), + (46253, 493, 2836, 'not_attending', '2024-09-13 11:46:00', '2025-12-17 19:46:25', 'dJPNk9nA', '7438708'), + (46254, 493, 2837, 'not_attending', '2024-09-13 11:46:02', '2025-12-17 19:46:25', 'dJPNk9nA', '7438711'), + (46255, 493, 2839, 'attending', '2024-09-13 02:53:57', '2025-12-17 19:46:25', 'dJPNk9nA', '7439262'), + (46256, 493, 2840, 'attending', '2024-09-15 23:45:05', '2025-12-17 19:46:25', 'dJPNk9nA', '7444429'), + (46257, 493, 2844, 'attending', '2024-09-19 22:49:45', '2025-12-17 19:46:25', 'dJPNk9nA', '7450233'), + (46258, 493, 2845, 'attending', '2024-09-21 18:26:52', '2025-12-17 19:46:25', 'dJPNk9nA', '7452129'), + (46259, 493, 2846, 'attending', '2024-09-21 20:37:29', '2025-12-17 19:46:25', 'dJPNk9nA', '7452148'), + (46260, 493, 2847, 'not_attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', 'dJPNk9nA', '7452299'), + (46261, 493, 2848, 'attending', '2024-09-24 12:53:59', '2025-12-17 19:46:25', 'dJPNk9nA', '7456145'), + (46262, 493, 2849, 'maybe', '2024-09-30 10:47:52', '2025-12-17 19:46:25', 'dJPNk9nA', '7457114'), + (46263, 493, 2850, 'maybe', '2024-09-25 13:42:46', '2025-12-17 19:46:25', 'dJPNk9nA', '7457153'), + (46264, 493, 2851, 'attending', '2024-09-28 19:54:44', '2025-12-17 19:46:25', 'dJPNk9nA', '7461883'), + (46265, 493, 2854, 'not_attending', '2024-10-06 02:27:14', '2025-12-17 19:46:26', 'dJPNk9nA', '7465684'), + (46266, 493, 2859, 'not_attending', '2024-10-31 12:52:24', '2025-12-17 19:46:26', 'dJPNk9nA', '7469389'), + (46267, 493, 2861, 'not_attending', '2024-10-01 11:20:23', '2025-12-17 19:46:26', 'dJPNk9nA', '7469826'), + (46268, 493, 2862, 'maybe', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dJPNk9nA', '7470197'), + (46269, 493, 2869, 'not_attending', '2024-10-05 16:50:39', '2025-12-17 19:46:26', 'dJPNk9nA', '7474823'), + (46270, 493, 2870, 'attending', '2024-10-04 09:54:21', '2025-12-17 19:46:26', 'dJPNk9nA', '7475068'), + (46271, 493, 2871, 'attending', '2024-10-09 13:48:42', '2025-12-17 19:46:26', 'dJPNk9nA', '7480481'), + (46272, 493, 2878, 'maybe', '2024-10-15 15:28:31', '2025-12-17 19:46:26', 'dJPNk9nA', '7633857'), + (46273, 493, 2880, 'attending', '2024-10-11 12:23:47', '2025-12-17 19:46:26', 'dJPNk9nA', '7636316'), + (46274, 493, 2883, 'attending', '2024-10-17 01:11:31', '2025-12-17 19:46:26', 'dJPNk9nA', '7649157'), + (46275, 493, 2891, 'attending', '2024-10-25 14:16:15', '2025-12-17 19:46:26', 'dJPNk9nA', '7668163'), + (46276, 493, 2892, 'maybe', '2024-10-30 16:00:20', '2025-12-17 19:46:26', 'dJPNk9nA', '7672064'), + (46277, 493, 2894, 'attending', '2024-11-02 19:14:22', '2025-12-17 19:46:26', 'dJPNk9nA', '7680059'), + (46278, 493, 2895, 'maybe', '2024-11-07 12:35:03', '2025-12-17 19:46:26', 'dJPNk9nA', '7682072'), + (46279, 493, 2898, 'attending', '2024-11-07 16:31:30', '2025-12-17 19:46:26', 'dJPNk9nA', '7685613'), + (46280, 493, 2899, 'not_attending', '2024-11-11 12:43:09', '2025-12-17 19:46:27', 'dJPNk9nA', '7685616'), + (46281, 493, 2902, 'not_attending', '2024-11-11 12:43:26', '2025-12-17 19:46:27', 'dJPNk9nA', '7686381'), + (46282, 493, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJPNk9nA', '7688194'), + (46283, 493, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJPNk9nA', '7688196'), + (46284, 493, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJPNk9nA', '7688289'), + (46285, 493, 2906, 'attending', '2024-11-09 21:43:43', '2025-12-17 19:46:26', 'dJPNk9nA', '7689366'), + (46286, 493, 2909, 'not_attending', '2024-11-10 21:21:58', '2025-12-17 19:46:27', 'dJPNk9nA', '7689771'), + (46287, 493, 2911, 'maybe', '2024-11-12 13:02:10', '2025-12-17 19:46:27', 'dJPNk9nA', '7689876'), + (46288, 493, 2912, 'attending', '2024-11-13 19:49:20', '2025-12-17 19:46:27', 'dJPNk9nA', '7692763'), + (46289, 493, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dJPNk9nA', '7697552'), + (46290, 493, 2915, 'not_attending', '2024-11-21 04:33:40', '2025-12-17 19:46:27', 'dJPNk9nA', '7698151'), + (46291, 493, 2917, 'attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dJPNk9nA', '7699878'), + (46292, 493, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dJPNk9nA', '7704043'), + (46293, 493, 2920, 'attending', '2024-11-23 19:50:44', '2025-12-17 19:46:28', 'dJPNk9nA', '7708406'), + (46294, 493, 2921, 'not_attending', '2024-11-26 12:43:14', '2025-12-17 19:46:28', 'dJPNk9nA', '7708460'), + (46295, 493, 2924, 'attending', '2024-11-27 18:53:28', '2025-12-17 19:46:28', 'dJPNk9nA', '7712467'), + (46296, 493, 2925, 'attending', '2024-11-28 16:27:16', '2025-12-17 19:46:21', 'dJPNk9nA', '7713584'), + (46297, 493, 2926, 'not_attending', '2024-11-28 16:27:30', '2025-12-17 19:46:21', 'dJPNk9nA', '7713585'), + (46298, 493, 2927, 'attending', '2024-11-28 16:27:18', '2025-12-17 19:46:22', 'dJPNk9nA', '7713586'), + (46299, 493, 2934, 'attending', '2024-12-19 18:55:05', '2025-12-17 19:46:22', 'dJPNk9nA', '7725952'), + (46300, 493, 2936, 'not_attending', '2024-12-19 18:55:03', '2025-12-17 19:46:22', 'dJPNk9nA', '7725954'), + (46301, 493, 2937, 'attending', '2024-12-11 05:03:21', '2025-12-17 19:46:21', 'dJPNk9nA', '7725955'), + (46302, 493, 2938, 'attending', '2024-12-19 18:55:07', '2025-12-17 19:46:22', 'dJPNk9nA', '7725956'), + (46303, 493, 2939, 'not_attending', '2025-02-10 16:46:05', '2025-12-17 19:46:24', 'dJPNk9nA', '7725957'), + (46304, 493, 2940, 'attending', '2025-01-23 13:41:02', '2025-12-17 19:46:22', 'dJPNk9nA', '7725958'), + (46305, 493, 2942, 'not_attending', '2025-02-10 16:46:12', '2025-12-17 19:46:24', 'dJPNk9nA', '7725960'), + (46306, 493, 2943, 'not_attending', '2025-03-07 19:23:08', '2025-12-17 19:46:18', 'dJPNk9nA', '7725961'), + (46307, 493, 2944, 'attending', '2025-02-28 16:22:31', '2025-12-17 19:46:24', 'dJPNk9nA', '7725963'), + (46308, 493, 2945, 'not_attending', '2025-03-11 16:32:45', '2025-12-17 19:46:19', 'dJPNk9nA', '7725964'), + (46309, 493, 2947, 'maybe', '2024-12-11 05:03:16', '2025-12-17 19:46:21', 'dJPNk9nA', '7727445'), + (46310, 493, 2954, 'attending', '2024-12-14 18:07:52', '2025-12-17 19:46:21', 'dJPNk9nA', '7734260'), + (46311, 493, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dJPNk9nA', '7738518'), + (46312, 493, 2959, 'attending', '2024-12-20 21:04:48', '2025-12-17 19:46:22', 'dJPNk9nA', '7747388'), + (46313, 493, 2961, 'attending', '2024-12-21 22:36:35', '2025-12-17 19:46:22', 'dJPNk9nA', '7748626'), + (46314, 493, 2962, 'attending', '2024-12-25 04:08:01', '2025-12-17 19:46:22', 'dJPNk9nA', '7750632'), + (46315, 493, 2963, 'attending', '2024-12-25 04:08:29', '2025-12-17 19:46:22', 'dJPNk9nA', '7750636'), + (46316, 493, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dJPNk9nA', '7796540'), + (46317, 493, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dJPNk9nA', '7796541'), + (46318, 493, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dJPNk9nA', '7796542'), + (46319, 493, 2968, 'attending', '2025-01-08 20:15:51', '2025-12-17 19:46:22', 'dJPNk9nA', '7797967'), + (46320, 493, 2969, 'attending', '2025-01-11 21:15:50', '2025-12-17 19:46:22', 'dJPNk9nA', '7800474'), + (46321, 493, 2974, 'attending', '2025-01-18 18:30:07', '2025-12-17 19:46:22', 'dJPNk9nA', '7814958'), + (46322, 493, 2975, 'attending', '2025-01-25 20:26:15', '2025-12-17 19:46:22', 'dJPNk9nA', '7823615'), + (46323, 493, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dJPNk9nA', '7825913'), + (46324, 493, 2982, 'maybe', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dJPNk9nA', '7826209'), + (46325, 493, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dJPNk9nA', '7834742'), + (46326, 493, 2986, 'attending', '2025-02-04 18:19:31', '2025-12-17 19:46:23', 'dJPNk9nA', '7835405'), + (46327, 493, 2987, 'attending', '2025-02-07 14:30:16', '2025-12-17 19:46:23', 'dJPNk9nA', '7839568'), + (46328, 493, 2988, 'attending', '2025-02-07 14:33:50', '2025-12-17 19:46:23', 'dJPNk9nA', '7839569'), + (46329, 493, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dJPNk9nA', '7842108'), + (46330, 493, 2990, 'attending', '2025-02-15 17:08:21', '2025-12-17 19:46:23', 'dJPNk9nA', '7842898'), + (46331, 493, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dJPNk9nA', '7842902'), + (46332, 493, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dJPNk9nA', '7842903'), + (46333, 493, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dJPNk9nA', '7842904'), + (46334, 493, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dJPNk9nA', '7842905'), + (46335, 493, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'dJPNk9nA', '7842906'), + (46336, 493, 2996, 'attending', '2025-02-11 16:42:41', '2025-12-17 19:46:24', 'dJPNk9nA', '7842907'), + (46337, 493, 2997, 'maybe', '2025-02-11 16:42:33', '2025-12-17 19:46:18', 'dJPNk9nA', '7842908'), + (46338, 493, 2998, 'attending', '2025-02-11 16:42:35', '2025-12-17 19:46:18', 'dJPNk9nA', '7842909'), + (46339, 493, 3000, 'not_attending', '2025-02-21 23:36:19', '2025-12-17 19:46:24', 'dJPNk9nA', '7852541'), + (46340, 493, 3002, 'not_attending', '2025-02-21 23:36:16', '2025-12-17 19:46:24', 'dJPNk9nA', '7854212'), + (46341, 493, 3003, 'not_attending', '2025-02-20 22:26:28', '2025-12-17 19:46:24', 'dJPNk9nA', '7854589'), + (46342, 493, 3004, 'not_attending', '2025-02-20 22:26:25', '2025-12-17 19:46:24', 'dJPNk9nA', '7854599'), + (46343, 493, 3005, 'not_attending', '2025-02-19 12:46:47', '2025-12-17 19:46:24', 'dJPNk9nA', '7854604'), + (46344, 493, 3006, 'maybe', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dJPNk9nA', '7855719'), + (46345, 493, 3007, 'maybe', '2025-02-24 18:53:53', '2025-12-17 19:46:24', 'dJPNk9nA', '7860683'), + (46346, 493, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dJPNk9nA', '7860684'), + (46347, 493, 3010, 'not_attending', '2025-03-07 19:23:07', '2025-12-17 19:46:18', 'dJPNk9nA', '7864879'), + (46348, 493, 3011, 'attending', '2025-03-01 20:40:21', '2025-12-17 19:46:24', 'dJPNk9nA', '7865624'), + (46349, 493, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dJPNk9nA', '7866095'), + (46350, 493, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dJPNk9nA', '7869170'), + (46351, 493, 3014, 'attending', '2025-03-10 23:24:22', '2025-12-17 19:46:19', 'dJPNk9nA', '7869185'), + (46352, 493, 3015, 'not_attending', '2025-03-31 17:21:39', '2025-12-17 19:46:20', 'dJPNk9nA', '7869186'), + (46353, 493, 3016, 'attending', '2025-03-31 17:21:44', '2025-12-17 19:46:20', 'dJPNk9nA', '7869187'), + (46354, 493, 3017, 'attending', '2025-03-10 23:24:18', '2025-12-17 19:46:19', 'dJPNk9nA', '7869188'), + (46355, 493, 3018, 'not_attending', '2025-03-31 17:21:47', '2025-12-17 19:46:20', 'dJPNk9nA', '7869189'), + (46356, 493, 3019, 'attending', '2025-04-05 22:21:48', '2025-12-17 19:46:20', 'dJPNk9nA', '7869190'), + (46357, 493, 3021, 'not_attending', '2025-04-07 18:54:20', '2025-12-17 19:46:20', 'dJPNk9nA', '7869192'), + (46358, 493, 3022, 'not_attending', '2025-04-07 18:54:36', '2025-12-17 19:46:20', 'dJPNk9nA', '7869193'), + (46359, 493, 3023, 'maybe', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'dJPNk9nA', '7869194'), + (46360, 493, 3024, 'attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'dJPNk9nA', '7869195'), + (46361, 493, 3028, 'maybe', '2025-03-24 18:30:12', '2025-12-17 19:46:20', 'dJPNk9nA', '7869199'), + (46362, 493, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dJPNk9nA', '7869201'), + (46363, 493, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dJPNk9nA', '7877465'), + (46364, 493, 3034, 'attending', '2025-03-11 16:53:30', '2025-12-17 19:46:18', 'dJPNk9nA', '7878570'), + (46365, 493, 3036, 'attending', '2025-03-13 19:24:46', '2025-12-17 19:46:19', 'dJPNk9nA', '7880952'), + (46366, 493, 3039, 'not_attending', '2025-03-17 16:51:44', '2025-12-17 19:46:19', 'dJPNk9nA', '7881992'), + (46367, 493, 3040, 'maybe', '2025-03-17 16:52:29', '2025-12-17 19:46:19', 'dJPNk9nA', '7881994'), + (46368, 493, 3042, 'attending', '2025-03-15 12:30:21', '2025-12-17 19:46:19', 'dJPNk9nA', '7882467'), + (46369, 493, 3043, 'attending', '2025-03-15 19:10:08', '2025-12-17 19:46:19', 'dJPNk9nA', '7882587'), + (46370, 493, 3045, 'attending', '2025-04-01 13:12:46', '2025-12-17 19:46:19', 'dJPNk9nA', '7882691'), + (46371, 493, 3046, 'not_attending', '2025-04-01 13:12:50', '2025-12-17 19:46:20', 'dJPNk9nA', '7882692'), + (46372, 493, 3047, 'not_attending', '2025-04-01 13:12:54', '2025-12-17 19:46:20', 'dJPNk9nA', '7882693'), + (46373, 493, 3048, 'attending', '2025-04-01 13:12:58', '2025-12-17 19:46:20', 'dJPNk9nA', '7882694'), + (46374, 493, 3051, 'maybe', '2025-03-17 16:51:28', '2025-12-17 19:46:19', 'dJPNk9nA', '7884023'), + (46375, 493, 3052, 'maybe', '2025-03-17 16:51:29', '2025-12-17 19:46:19', 'dJPNk9nA', '7884024'), + (46376, 493, 3055, 'maybe', '2025-03-27 15:09:58', '2025-12-17 19:46:19', 'dJPNk9nA', '7888118'), + (46377, 493, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dJPNk9nA', '7888250'), + (46378, 493, 3068, 'not_attending', '2025-04-03 19:04:39', '2025-12-17 19:46:19', 'dJPNk9nA', '7894823'), + (46379, 493, 3072, 'attending', '2025-04-01 00:15:11', '2025-12-17 19:46:19', 'dJPNk9nA', '7895449'), + (46380, 493, 3085, 'not_attending', '2025-04-12 13:13:28', '2025-12-17 19:46:20', 'dJPNk9nA', '7903688'), + (46381, 493, 3090, 'not_attending', '2025-04-17 11:43:17', '2025-12-17 19:46:20', 'dJPNk9nA', '7914315'), + (46382, 493, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dJPNk9nA', '8349164'), + (46383, 493, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dJPNk9nA', '8349545'), + (46384, 493, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dJPNk9nA', '8353584'), + (46385, 494, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZDqkbem', '6045684'), + (46386, 495, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dNMllJo4', '6045684'), + (46387, 496, 2920, 'attending', '2024-11-24 07:25:27', '2025-12-17 19:46:28', '1ArKK6Y4', '7708406'), + (46388, 496, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1ArKK6Y4', '7712467'), + (46389, 496, 2926, 'attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1ArKK6Y4', '7713585'), + (46390, 496, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1ArKK6Y4', '7713586'), + (46391, 496, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', '1ArKK6Y4', '7738518'), + (46392, 496, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1ArKK6Y4', '7750636'), + (46393, 496, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1ArKK6Y4', '7796540'), + (46394, 496, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1ArKK6Y4', '7796541'), + (46395, 496, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1ArKK6Y4', '7796542'), + (46396, 496, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1ArKK6Y4', '7825913'), + (46397, 496, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1ArKK6Y4', '7826209'), + (46398, 496, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1ArKK6Y4', '7834742'), + (46399, 496, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1ArKK6Y4', '7842108'), + (46400, 496, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1ArKK6Y4', '7842902'), + (46401, 496, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1ArKK6Y4', '7842903'), + (46402, 496, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1ArKK6Y4', '7842904'), + (46403, 496, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1ArKK6Y4', '7842905'), + (46404, 496, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1ArKK6Y4', '7855719'), + (46405, 496, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1ArKK6Y4', '7860683'), + (46406, 496, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1ArKK6Y4', '7860684'), + (46407, 496, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1ArKK6Y4', '7866095'), + (46408, 496, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1ArKK6Y4', '7869170'), + (46409, 496, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArKK6Y4', '7869188'), + (46410, 496, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1ArKK6Y4', '7869201'), + (46411, 496, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1ArKK6Y4', '7877465'), + (46412, 496, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '1ArKK6Y4', '7878570'), + (46413, 496, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1ArKK6Y4', '7888250'), + (46414, 496, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArKK6Y4', '8349164'), + (46415, 496, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArKK6Y4', '8349545'), + (46416, 496, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '1ArKK6Y4', '8353584'), + (46417, 497, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mybg6JJA', '7074364'), + (46418, 497, 2628, 'attending', '2024-06-01 21:46:02', '2025-12-17 19:46:36', 'mybg6JJA', '7264725'), + (46419, 497, 2629, 'attending', '2024-06-08 17:34:33', '2025-12-17 19:46:28', 'mybg6JJA', '7264726'), + (46420, 497, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'mybg6JJA', '7301638'), + (46421, 497, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'mybg6JJA', '7302674'), + (46422, 497, 2663, 'attending', '2024-06-02 23:38:36', '2025-12-17 19:46:36', 'mybg6JJA', '7303913'), + (46423, 497, 2678, 'attending', '2024-06-14 19:47:39', '2025-12-17 19:46:28', 'mybg6JJA', '7319489'), + (46424, 497, 2679, 'attending', '2024-06-22 18:39:33', '2025-12-17 19:46:29', 'mybg6JJA', '7319490'), + (46425, 497, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mybg6JJA', '7324073'), + (46426, 497, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mybg6JJA', '7324074'), + (46427, 497, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mybg6JJA', '7324075'), + (46428, 497, 2691, 'not_attending', '2024-07-20 20:02:24', '2025-12-17 19:46:30', 'mybg6JJA', '7324076'), + (46429, 497, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mybg6JJA', '7324078'), + (46430, 497, 2694, 'maybe', '2024-08-10 17:14:01', '2025-12-17 19:46:31', 'mybg6JJA', '7324079'), + (46431, 497, 2695, 'not_attending', '2024-08-17 14:12:55', '2025-12-17 19:46:32', 'mybg6JJA', '7324080'), + (46432, 497, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mybg6JJA', '7324082'), + (46433, 497, 2700, 'attending', '2024-06-14 19:47:44', '2025-12-17 19:46:28', 'mybg6JJA', '7324388'), + (46434, 497, 2706, 'attending', '2024-06-19 21:16:35', '2025-12-17 19:46:28', 'mybg6JJA', '7324947'), + (46435, 497, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mybg6JJA', '7331457'), + (46436, 497, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mybg6JJA', '7356752'), + (46437, 497, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mybg6JJA', '7363643'), + (46438, 497, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mybg6JJA', '7368606'), + (46439, 497, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mybg6JJA', '7397462'), + (46440, 497, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mybg6JJA', '7424275'), + (46441, 497, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mybg6JJA', '7424276'), + (46442, 497, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mybg6JJA', '7432751'), + (46443, 497, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mybg6JJA', '7432752'), + (46444, 497, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mybg6JJA', '7432753'), + (46445, 497, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mybg6JJA', '7432754'), + (46446, 497, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mybg6JJA', '7432755'), + (46447, 497, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mybg6JJA', '7432756'), + (46448, 497, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mybg6JJA', '7432758'), + (46449, 497, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mybg6JJA', '7432759'), + (46450, 497, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'mybg6JJA', '7433834'), + (46451, 497, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mybg6JJA', '7470197'), + (46452, 497, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mybg6JJA', '7685613'), + (46453, 497, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mybg6JJA', '7688194'), + (46454, 497, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mybg6JJA', '7688196'), + (46455, 497, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mybg6JJA', '7688289'), + (46456, 498, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', '4vExLzOA', '5186585'), + (46457, 498, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4vExLzOA', '5195095'), + (46458, 498, 1285, 'not_attending', '2022-03-21 15:41:48', '2025-12-17 19:47:25', '4vExLzOA', '5196763'), + (46459, 498, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '4vExLzOA', '5199460'), + (46460, 498, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4vExLzOA', '5215989'), + (46461, 498, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4vExLzOA', '5223686'), + (46462, 498, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4vExLzOA', '5227432'), + (46463, 498, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4vExLzOA', '5247467'), + (46464, 498, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4vExLzOA', '5260800'), + (46465, 498, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4vExLzOA', '5269930'), + (46466, 498, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4vExLzOA', '5271448'), + (46467, 498, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4vExLzOA', '5271449'), + (46468, 498, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4vExLzOA', '5276469'), + (46469, 498, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4vExLzOA', '5278159'), + (46470, 498, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4vExLzOA', '5363695'), + (46471, 498, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4vExLzOA', '5365960'), + (46472, 498, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4vExLzOA', '5368973'), + (46473, 498, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4vExLzOA', '5378247'), + (46474, 498, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4vExLzOA', '5389605'), + (46475, 498, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4vExLzOA', '5397265'), + (46476, 498, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4vExLzOA', '6045684'), + (46477, 499, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ9y71aA', '6045684'), + (46478, 500, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4DQBMX6d', '5630960'), + (46479, 500, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4DQBMX6d', '5630961'), + (46480, 500, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4DQBMX6d', '5630962'), + (46481, 500, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4DQBMX6d', '5635406'), + (46482, 500, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4DQBMX6d', '5638765'), + (46483, 500, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4DQBMX6d', '5640097'), + (46484, 500, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4DQBMX6d', '5640843'), + (46485, 500, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4DQBMX6d', '5641521'), + (46486, 500, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4DQBMX6d', '5652395'), + (46487, 500, 1752, 'attending', '2022-10-15 15:52:21', '2025-12-17 19:47:12', '4DQBMX6d', '5653503'), + (46488, 500, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4DQBMX6d', '5671637'), + (46489, 500, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4DQBMX6d', '5672329'), + (46490, 500, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4DQBMX6d', '5674057'), + (46491, 500, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4DQBMX6d', '5674060'), + (46492, 500, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4DQBMX6d', '5677461'), + (46493, 500, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DQBMX6d', '6045684'), + (46494, 501, 244, 'attending', '2020-10-16 03:08:02', '2025-12-17 19:47:52', 'xd9V7YEm', '3149475'), + (46495, 501, 344, 'attending', '2020-11-02 00:44:58', '2025-12-17 19:47:53', 'xd9V7YEm', '3206906'), + (46496, 501, 387, 'not_attending', '2020-10-17 22:36:17', '2025-12-17 19:47:52', 'xd9V7YEm', '3228700'), + (46497, 501, 388, 'attending', '2020-10-24 22:26:26', '2025-12-17 19:47:52', 'xd9V7YEm', '3228701'), + (46498, 501, 408, 'maybe', '2021-01-08 00:27:05', '2025-12-17 19:47:50', 'xd9V7YEm', '3236466'), + (46499, 501, 410, 'not_attending', '2020-11-27 23:49:34', '2025-12-17 19:47:54', 'xd9V7YEm', '3236469'), + (46500, 501, 414, 'maybe', '2020-10-18 14:18:57', '2025-12-17 19:47:52', 'xd9V7YEm', '3237277'), + (46501, 501, 422, 'maybe', '2020-10-30 03:31:32', '2025-12-17 19:47:53', 'xd9V7YEm', '3245295'), + (46502, 501, 423, 'maybe', '2020-11-06 00:08:27', '2025-12-17 19:47:53', 'xd9V7YEm', '3245296'), + (46503, 501, 430, 'attending', '2020-10-21 02:09:48', '2025-12-17 19:47:52', 'xd9V7YEm', '3253094'), + (46504, 501, 435, 'not_attending', '2020-10-24 19:19:27', '2025-12-17 19:47:52', 'xd9V7YEm', '3254790'), + (46505, 501, 440, 'attending', '2020-10-18 16:40:58', '2025-12-17 19:47:53', 'xd9V7YEm', '3256168'), + (46506, 501, 441, 'attending', '2020-11-14 17:20:41', '2025-12-17 19:47:54', 'xd9V7YEm', '3256169'), + (46507, 501, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'xd9V7YEm', '3263578'), + (46508, 501, 445, 'not_attending', '2020-11-13 01:15:54', '2025-12-17 19:47:54', 'xd9V7YEm', '3266138'), + (46509, 501, 446, 'attending', '2020-10-26 04:35:15', '2025-12-17 19:47:53', 'xd9V7YEm', '3267163'), + (46510, 501, 449, 'attending', '2020-11-08 23:50:26', '2025-12-17 19:47:53', 'xd9V7YEm', '3272055'), + (46511, 501, 452, 'maybe', '2020-11-22 17:13:34', '2025-12-17 19:47:54', 'xd9V7YEm', '3272981'), + (46512, 501, 454, 'not_attending', '2020-11-14 00:37:08', '2025-12-17 19:47:54', 'xd9V7YEm', '3275665'), + (46513, 501, 456, 'attending', '2020-11-17 00:47:58', '2025-12-17 19:47:54', 'xd9V7YEm', '3276428'), + (46514, 501, 459, 'attending', '2020-11-16 01:02:54', '2025-12-17 19:47:54', 'xd9V7YEm', '3281467'), + (46515, 501, 462, 'attending', '2020-11-12 00:06:15', '2025-12-17 19:47:53', 'xd9V7YEm', '3281470'), + (46516, 501, 466, 'maybe', '2020-11-08 16:04:14', '2025-12-17 19:47:54', 'xd9V7YEm', '3281829'), + (46517, 501, 467, 'attending', '2020-11-18 00:10:33', '2025-12-17 19:47:54', 'xd9V7YEm', '3282756'), + (46518, 501, 468, 'attending', '2020-11-21 23:54:47', '2025-12-17 19:47:54', 'xd9V7YEm', '3285413'), + (46519, 501, 469, 'attending', '2020-11-28 23:55:35', '2025-12-17 19:47:54', 'xd9V7YEm', '3285414'), + (46520, 501, 476, 'attending', '2020-11-18 00:10:23', '2025-12-17 19:47:54', 'xd9V7YEm', '3286982'), + (46521, 501, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'xd9V7YEm', '3297764'), + (46522, 501, 482, 'maybe', '2020-11-21 20:02:18', '2025-12-17 19:47:54', 'xd9V7YEm', '3297769'), + (46523, 501, 483, 'maybe', '2020-11-21 20:02:06', '2025-12-17 19:47:54', 'xd9V7YEm', '3297791'), + (46524, 501, 487, 'attending', '2020-11-26 23:35:23', '2025-12-17 19:47:54', 'xd9V7YEm', '3311122'), + (46525, 501, 493, 'attending', '2020-12-05 23:57:45', '2025-12-17 19:47:54', 'xd9V7YEm', '3313856'), + (46526, 501, 496, 'maybe', '2020-12-11 00:23:05', '2025-12-17 19:47:54', 'xd9V7YEm', '3314269'), + (46527, 501, 497, 'not_attending', '2020-12-18 00:16:17', '2025-12-17 19:47:55', 'xd9V7YEm', '3314270'), + (46528, 501, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'xd9V7YEm', '3314909'), + (46529, 501, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'xd9V7YEm', '3314964'), + (46530, 501, 501, 'attending', '2020-12-09 00:58:00', '2025-12-17 19:47:54', 'xd9V7YEm', '3317834'), + (46531, 501, 502, 'not_attending', '2020-12-12 21:44:06', '2025-12-17 19:47:55', 'xd9V7YEm', '3323365'), + (46532, 501, 506, 'attending', '2020-12-13 17:21:59', '2025-12-17 19:47:55', 'xd9V7YEm', '3323375'), + (46533, 501, 513, 'attending', '2020-12-16 03:24:41', '2025-12-17 19:47:55', 'xd9V7YEm', '3329383'), + (46534, 501, 516, 'attending', '2020-12-19 07:29:59', '2025-12-17 19:47:48', 'xd9V7YEm', '3334530'), + (46535, 501, 517, 'not_attending', '2021-01-08 00:25:23', '2025-12-17 19:47:48', 'xd9V7YEm', '3337137'), + (46536, 501, 518, 'attending', '2020-12-20 22:29:33', '2025-12-17 19:47:48', 'xd9V7YEm', '3337138'), + (46537, 501, 526, 'attending', '2020-12-29 20:38:53', '2025-12-17 19:47:48', 'xd9V7YEm', '3351539'), + (46538, 501, 530, 'attending', '2021-01-04 23:04:46', '2025-12-17 19:47:48', 'xd9V7YEm', '3373923'), + (46539, 501, 531, 'maybe', '2021-01-02 20:57:57', '2025-12-17 19:47:48', 'xd9V7YEm', '3378210'), + (46540, 501, 532, 'attending', '2021-01-03 22:18:48', '2025-12-17 19:47:48', 'xd9V7YEm', '3381412'), + (46541, 501, 534, 'maybe', '2021-01-09 17:15:54', '2025-12-17 19:47:48', 'xd9V7YEm', '3384157'), + (46542, 501, 536, 'attending', '2021-01-09 00:12:47', '2025-12-17 19:47:48', 'xd9V7YEm', '3386848'), + (46543, 501, 539, 'maybe', '2021-01-11 22:43:00', '2025-12-17 19:47:48', 'xd9V7YEm', '3389158'), + (46544, 501, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'xd9V7YEm', '3389527'), + (46545, 501, 541, 'maybe', '2021-01-09 17:15:47', '2025-12-17 19:47:48', 'xd9V7YEm', '3391683'), + (46546, 501, 542, 'not_attending', '2021-01-11 22:42:29', '2025-12-17 19:47:48', 'xd9V7YEm', '3395013'), + (46547, 501, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'xd9V7YEm', '3396499'), + (46548, 501, 548, 'attending', '2021-01-11 22:43:11', '2025-12-17 19:47:48', 'xd9V7YEm', '3403650'), + (46549, 501, 549, 'maybe', '2021-01-16 22:36:59', '2025-12-17 19:47:49', 'xd9V7YEm', '3406988'), + (46550, 501, 553, 'attending', '2021-01-13 23:10:51', '2025-12-17 19:47:48', 'xd9V7YEm', '3407248'), + (46551, 501, 555, 'attending', '2021-01-23 23:00:29', '2025-12-17 19:47:49', 'xd9V7YEm', '3416576'), + (46552, 501, 557, 'attending', '2021-01-21 00:00:53', '2025-12-17 19:47:49', 'xd9V7YEm', '3418748'), + (46553, 501, 558, 'maybe', '2021-01-19 05:27:55', '2025-12-17 19:47:49', 'xd9V7YEm', '3418925'), + (46554, 501, 559, 'not_attending', '2021-01-28 00:13:42', '2025-12-17 19:47:49', 'xd9V7YEm', '3421439'), + (46555, 501, 560, 'attending', '2021-01-21 20:33:21', '2025-12-17 19:47:49', 'xd9V7YEm', '3421715'), + (46556, 501, 567, 'attending', '2021-01-25 06:43:50', '2025-12-17 19:47:50', 'xd9V7YEm', '3428895'), + (46557, 501, 568, 'attending', '2021-01-28 00:12:43', '2025-12-17 19:47:50', 'xd9V7YEm', '3430267'), + (46558, 501, 569, 'maybe', '2021-01-27 14:55:54', '2025-12-17 19:47:49', 'xd9V7YEm', '3432673'), + (46559, 501, 570, 'attending', '2021-02-06 01:00:05', '2025-12-17 19:47:50', 'xd9V7YEm', '3435538'), + (46560, 501, 571, 'attending', '2021-02-13 16:19:44', '2025-12-17 19:47:50', 'xd9V7YEm', '3435539'), + (46561, 501, 575, 'attending', '2021-01-28 00:14:05', '2025-12-17 19:47:50', 'xd9V7YEm', '3437492'), + (46562, 501, 576, 'maybe', '2021-02-03 00:42:16', '2025-12-17 19:47:50', 'xd9V7YEm', '3438748'), + (46563, 501, 577, 'attending', '2021-01-29 18:30:09', '2025-12-17 19:47:49', 'xd9V7YEm', '3439167'), + (46564, 501, 578, 'maybe', '2021-02-02 01:45:49', '2025-12-17 19:47:50', 'xd9V7YEm', '3440043'), + (46565, 501, 579, 'attending', '2021-02-02 01:45:14', '2025-12-17 19:47:50', 'xd9V7YEm', '3440978'), + (46566, 501, 580, 'maybe', '2021-01-30 07:01:34', '2025-12-17 19:47:50', 'xd9V7YEm', '3444240'), + (46567, 501, 581, 'attending', '2021-02-02 00:21:32', '2025-12-17 19:47:50', 'xd9V7YEm', '3445029'), + (46568, 501, 587, 'maybe', '2021-02-16 00:45:58', '2025-12-17 19:47:50', 'xd9V7YEm', '3449470'), + (46569, 501, 588, 'attending', '2021-02-18 00:07:09', '2025-12-17 19:47:50', 'xd9V7YEm', '3449471'), + (46570, 501, 589, 'attending', '2021-02-20 00:06:53', '2025-12-17 19:47:50', 'xd9V7YEm', '3449473'), + (46571, 501, 592, 'attending', '2021-02-25 02:06:56', '2025-12-17 19:47:50', 'xd9V7YEm', '3467757'), + (46572, 501, 594, 'attending', '2021-02-20 18:22:32', '2025-12-17 19:47:51', 'xd9V7YEm', '3467759'), + (46573, 501, 598, 'maybe', '2021-02-06 06:37:03', '2025-12-17 19:47:50', 'xd9V7YEm', '3468003'), + (46574, 501, 599, 'attending', '2021-02-12 04:38:56', '2025-12-17 19:47:50', 'xd9V7YEm', '3468117'), + (46575, 501, 600, 'maybe', '2021-02-06 05:17:03', '2025-12-17 19:47:50', 'xd9V7YEm', '3468125'), + (46576, 501, 602, 'attending', '2021-02-09 21:49:26', '2025-12-17 19:47:50', 'xd9V7YEm', '3470303'), + (46577, 501, 603, 'attending', '2021-02-20 00:44:36', '2025-12-17 19:47:50', 'xd9V7YEm', '3470304'), + (46578, 501, 604, 'attending', '2021-02-24 03:47:50', '2025-12-17 19:47:50', 'xd9V7YEm', '3470305'), + (46579, 501, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'xd9V7YEm', '3470991'), + (46580, 501, 609, 'attending', '2021-02-13 20:52:45', '2025-12-17 19:47:50', 'xd9V7YEm', '3480916'), + (46581, 501, 618, 'attending', '2021-02-20 21:34:18', '2025-12-17 19:47:50', 'xd9V7YEm', '3503991'), + (46582, 501, 620, 'not_attending', '2021-02-26 01:10:18', '2025-12-17 19:47:50', 'xd9V7YEm', '3513703'), + (46583, 501, 621, 'attending', '2021-03-05 00:12:02', '2025-12-17 19:47:51', 'xd9V7YEm', '3517815'), + (46584, 501, 622, 'attending', '2021-03-12 00:54:18', '2025-12-17 19:47:51', 'xd9V7YEm', '3517816'), + (46585, 501, 623, 'maybe', '2021-02-25 20:48:29', '2025-12-17 19:47:51', 'xd9V7YEm', '3523941'), + (46586, 501, 624, 'attending', '2021-02-27 06:45:00', '2025-12-17 19:47:50', 'xd9V7YEm', '3528556'), + (46587, 501, 627, 'maybe', '2021-03-10 00:02:26', '2025-12-17 19:47:51', 'xd9V7YEm', '3533303'), + (46588, 501, 631, 'maybe', '2021-03-07 23:45:42', '2025-12-17 19:47:51', 'xd9V7YEm', '3533850'), + (46589, 501, 632, 'maybe', '2021-03-02 00:50:51', '2025-12-17 19:47:51', 'xd9V7YEm', '3533853'), + (46590, 501, 635, 'maybe', '2021-04-09 04:13:59', '2025-12-17 19:47:44', 'xd9V7YEm', '3534719'), + (46591, 501, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'xd9V7YEm', '3536632'), + (46592, 501, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'xd9V7YEm', '3536656'), + (46593, 501, 641, 'attending', '2021-04-03 22:32:51', '2025-12-17 19:47:44', 'xd9V7YEm', '3539916'), + (46594, 501, 642, 'attending', '2021-04-08 02:54:20', '2025-12-17 19:47:44', 'xd9V7YEm', '3539917'), + (46595, 501, 643, 'not_attending', '2021-04-12 04:06:10', '2025-12-17 19:47:45', 'xd9V7YEm', '3539918'), + (46596, 501, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'xd9V7YEm', '3539919'), + (46597, 501, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'xd9V7YEm', '3539920'), + (46598, 501, 646, 'maybe', '2021-05-13 02:54:55', '2025-12-17 19:47:46', 'xd9V7YEm', '3539921'), + (46599, 501, 647, 'attending', '2021-05-21 23:20:25', '2025-12-17 19:47:46', 'xd9V7YEm', '3539922'), + (46600, 501, 648, 'maybe', '2021-05-27 22:31:55', '2025-12-17 19:47:47', 'xd9V7YEm', '3539923'), + (46601, 501, 649, 'maybe', '2021-03-19 22:16:28', '2025-12-17 19:47:51', 'xd9V7YEm', '3539927'), + (46602, 501, 650, 'maybe', '2021-03-26 14:49:00', '2025-12-17 19:47:44', 'xd9V7YEm', '3539928'), + (46603, 501, 656, 'attending', '2021-03-15 22:05:28', '2025-12-17 19:47:51', 'xd9V7YEm', '3547130'), + (46604, 501, 659, 'attending', '2021-04-02 20:35:41', '2025-12-17 19:47:44', 'xd9V7YEm', '3547135'), + (46605, 501, 661, 'attending', '2021-04-02 20:35:48', '2025-12-17 19:47:44', 'xd9V7YEm', '3547137'), + (46606, 501, 665, 'maybe', '2021-09-04 18:57:38', '2025-12-17 19:47:43', 'xd9V7YEm', '3547143'), + (46607, 501, 670, 'attending', '2021-06-17 03:29:55', '2025-12-17 19:47:48', 'xd9V7YEm', '3547148'), + (46608, 501, 672, 'attending', '2021-05-21 23:20:22', '2025-12-17 19:47:46', 'xd9V7YEm', '3547150'), + (46609, 501, 673, 'maybe', '2021-07-03 16:07:53', '2025-12-17 19:47:38', 'xd9V7YEm', '3547151'), + (46610, 501, 674, 'attending', '2021-08-06 02:52:16', '2025-12-17 19:47:41', 'xd9V7YEm', '3547152'), + (46611, 501, 676, 'attending', '2021-07-23 01:15:40', '2025-12-17 19:47:40', 'xd9V7YEm', '3547154'), + (46612, 501, 680, 'attending', '2021-03-07 16:15:20', '2025-12-17 19:47:51', 'xd9V7YEm', '3547700'), + (46613, 501, 684, 'attending', '2021-03-10 00:07:00', '2025-12-17 19:47:51', 'xd9V7YEm', '3549257'), + (46614, 501, 685, 'maybe', '2021-04-12 04:05:28', '2025-12-17 19:47:44', 'xd9V7YEm', '3551564'), + (46615, 501, 687, 'maybe', '2021-03-10 00:07:34', '2025-12-17 19:47:51', 'xd9V7YEm', '3553405'), + (46616, 501, 690, 'not_attending', '2021-03-23 22:59:01', '2025-12-17 19:47:44', 'xd9V7YEm', '3559954'), + (46617, 501, 696, 'attending', '2021-03-15 22:05:22', '2025-12-17 19:47:51', 'xd9V7YEm', '3567536'), + (46618, 501, 699, 'maybe', '2021-03-29 21:48:39', '2025-12-17 19:47:44', 'xd9V7YEm', '3572241'), + (46619, 501, 702, 'attending', '2021-03-19 21:59:25', '2025-12-17 19:47:51', 'xd9V7YEm', '3577181'), + (46620, 501, 705, 'maybe', '2021-03-28 17:26:34', '2025-12-17 19:47:44', 'xd9V7YEm', '3581895'), + (46621, 501, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'xd9V7YEm', '3582734'), + (46622, 501, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'xd9V7YEm', '3583262'), + (46623, 501, 711, 'attending', '2021-04-01 21:43:20', '2025-12-17 19:47:44', 'xd9V7YEm', '3588075'), + (46624, 501, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'xd9V7YEm', '3619523'), + (46625, 501, 718, 'maybe', '2021-03-26 14:48:57', '2025-12-17 19:47:44', 'xd9V7YEm', '3626844'), + (46626, 501, 722, 'attending', '2021-04-02 20:35:32', '2025-12-17 19:47:44', 'xd9V7YEm', '3646347'), + (46627, 501, 723, 'attending', '2021-03-30 04:42:53', '2025-12-17 19:47:44', 'xd9V7YEm', '3649179'), + (46628, 501, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'xd9V7YEm', '3661369'), + (46629, 501, 730, 'maybe', '2021-05-05 22:09:59', '2025-12-17 19:47:46', 'xd9V7YEm', '3668076'), + (46630, 501, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'xd9V7YEm', '3674262'), + (46631, 501, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'xd9V7YEm', '3677402'), + (46632, 501, 736, 'not_attending', '2021-04-09 04:13:52', '2025-12-17 19:47:44', 'xd9V7YEm', '3677701'), + (46633, 501, 747, 'maybe', '2021-04-08 03:34:49', '2025-12-17 19:47:45', 'xd9V7YEm', '3684754'), + (46634, 501, 750, 'not_attending', '2021-04-13 22:56:13', '2025-12-17 19:47:44', 'xd9V7YEm', '3689962'), + (46635, 501, 752, 'attending', '2021-04-12 04:06:02', '2025-12-17 19:47:44', 'xd9V7YEm', '3699422'), + (46636, 501, 761, 'maybe', '2021-05-14 21:47:49', '2025-12-17 19:47:46', 'xd9V7YEm', '3716041'), + (46637, 501, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'xd9V7YEm', '3730212'), + (46638, 501, 782, 'maybe', '2021-05-04 12:55:24', '2025-12-17 19:47:46', 'xd9V7YEm', '3761843'), + (46639, 501, 785, 'maybe', '2021-05-16 21:23:39', '2025-12-17 19:47:46', 'xd9V7YEm', '3779779'), + (46640, 501, 788, 'attending', '2021-05-07 22:56:18', '2025-12-17 19:47:46', 'xd9V7YEm', '3781975'), + (46641, 501, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'xd9V7YEm', '3793156'), + (46642, 501, 808, 'attending', '2021-05-18 20:51:04', '2025-12-17 19:47:46', 'xd9V7YEm', '3807358'), + (46643, 501, 816, 'maybe', '2021-05-20 00:56:18', '2025-12-17 19:47:46', 'xd9V7YEm', '3826524'), + (46644, 501, 823, 'attending', '2021-06-17 03:29:54', '2025-12-17 19:47:48', 'xd9V7YEm', '3974109'), + (46645, 501, 825, 'attending', '2021-06-03 15:52:53', '2025-12-17 19:47:47', 'xd9V7YEm', '3975283'), + (46646, 501, 826, 'not_attending', '2021-06-16 22:45:30', '2025-12-17 19:47:48', 'xd9V7YEm', '3975310'), + (46647, 501, 827, 'maybe', '2021-06-04 23:21:21', '2025-12-17 19:47:47', 'xd9V7YEm', '3975311'), + (46648, 501, 828, 'not_attending', '2021-06-12 14:25:23', '2025-12-17 19:47:47', 'xd9V7YEm', '3975312'), + (46649, 501, 829, 'attending', '2021-05-30 20:54:53', '2025-12-17 19:47:47', 'xd9V7YEm', '3976202'), + (46650, 501, 838, 'maybe', '2021-06-06 19:09:07', '2025-12-17 19:47:47', 'xd9V7YEm', '3994992'), + (46651, 501, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd9V7YEm', '4014338'), + (46652, 501, 845, 'not_attending', '2021-06-26 16:10:34', '2025-12-17 19:47:38', 'xd9V7YEm', '4015717'), + (46653, 501, 867, 'attending', '2021-06-26 13:30:03', '2025-12-17 19:47:38', 'xd9V7YEm', '4021848'), + (46654, 501, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd9V7YEm', '4136744'), + (46655, 501, 870, 'attending', '2021-07-03 16:07:48', '2025-12-17 19:47:39', 'xd9V7YEm', '4136937'), + (46656, 501, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd9V7YEm', '4136938'), + (46657, 501, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd9V7YEm', '4136947'), + (46658, 501, 884, 'maybe', '2021-07-17 22:37:48', '2025-12-17 19:47:42', 'xd9V7YEm', '4210314'), + (46659, 501, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd9V7YEm', '4225444'), + (46660, 501, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd9V7YEm', '4239259'), + (46661, 501, 900, 'maybe', '2021-07-24 22:25:09', '2025-12-17 19:47:40', 'xd9V7YEm', '4240316'), + (46662, 501, 901, 'not_attending', '2021-07-31 03:58:21', '2025-12-17 19:47:40', 'xd9V7YEm', '4240317'), + (46663, 501, 902, 'attending', '2021-08-06 02:52:13', '2025-12-17 19:47:41', 'xd9V7YEm', '4240318'), + (46664, 501, 903, 'attending', '2021-08-14 13:31:33', '2025-12-17 19:47:42', 'xd9V7YEm', '4240320'), + (46665, 501, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd9V7YEm', '4250163'), + (46666, 501, 919, 'attending', '2021-07-16 20:43:32', '2025-12-17 19:47:39', 'xd9V7YEm', '4275957'), + (46667, 501, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xd9V7YEm', '4277819'), + (46668, 501, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xd9V7YEm', '4301723'), + (46669, 501, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xd9V7YEm', '4302093'), + (46670, 501, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xd9V7YEm', '4304151'), + (46671, 501, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'xd9V7YEm', '4345519'), + (46672, 501, 962, 'maybe', '2021-08-12 01:49:02', '2025-12-17 19:47:41', 'xd9V7YEm', '4346305'), + (46673, 501, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'xd9V7YEm', '4356801'), + (46674, 501, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xd9V7YEm', '4358025'), + (46675, 501, 973, 'maybe', '2021-08-21 20:41:14', '2025-12-17 19:47:42', 'xd9V7YEm', '4366186'), + (46676, 501, 974, 'attending', '2021-08-28 13:12:12', '2025-12-17 19:47:42', 'xd9V7YEm', '4366187'), + (46677, 501, 988, 'attending', '2021-08-24 19:52:45', '2025-12-17 19:47:42', 'xd9V7YEm', '4402823'), + (46678, 501, 990, 'attending', '2021-08-29 02:32:55', '2025-12-17 19:47:43', 'xd9V7YEm', '4420735'), + (46679, 501, 991, 'attending', '2021-09-11 19:57:51', '2025-12-17 19:47:43', 'xd9V7YEm', '4420738'), + (46680, 501, 992, 'not_attending', '2021-09-16 01:15:00', '2025-12-17 19:47:34', 'xd9V7YEm', '4420739'), + (46681, 501, 993, 'maybe', '2021-09-25 19:29:11', '2025-12-17 19:47:34', 'xd9V7YEm', '4420741'), + (46682, 501, 994, 'maybe', '2021-09-29 02:20:06', '2025-12-17 19:47:34', 'xd9V7YEm', '4420742'), + (46683, 501, 995, 'attending', '2021-10-09 22:23:39', '2025-12-17 19:47:34', 'xd9V7YEm', '4420744'), + (46684, 501, 996, 'attending', '2021-10-16 02:43:22', '2025-12-17 19:47:35', 'xd9V7YEm', '4420747'), + (46685, 501, 997, 'maybe', '2021-10-23 19:19:40', '2025-12-17 19:47:35', 'xd9V7YEm', '4420748'), + (46686, 501, 998, 'not_attending', '2021-10-30 20:43:33', '2025-12-17 19:47:36', 'xd9V7YEm', '4420749'), + (46687, 501, 999, 'maybe', '2021-08-31 20:26:07', '2025-12-17 19:47:43', 'xd9V7YEm', '4421150'), + (46688, 501, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'xd9V7YEm', '4461883'), + (46689, 501, 1038, 'maybe', '2021-09-25 19:29:24', '2025-12-17 19:47:34', 'xd9V7YEm', '4496603'), + (46690, 501, 1046, 'attending', '2021-10-16 02:43:26', '2025-12-17 19:47:35', 'xd9V7YEm', '4496611'), + (46691, 501, 1057, 'maybe', '2021-11-13 15:55:46', '2025-12-17 19:47:37', 'xd9V7YEm', '4496624'), + (46692, 501, 1063, 'maybe', '2021-09-25 02:45:31', '2025-12-17 19:47:34', 'xd9V7YEm', '4496630'), + (46693, 501, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'xd9V7YEm', '4508342'), + (46694, 501, 1086, 'attending', '2021-10-16 00:45:57', '2025-12-17 19:47:34', 'xd9V7YEm', '4568602'), + (46695, 501, 1087, 'maybe', '2021-10-16 02:43:51', '2025-12-17 19:47:35', 'xd9V7YEm', '4572153'), + (46696, 501, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xd9V7YEm', '4585962'), + (46697, 501, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'xd9V7YEm', '4596356'), + (46698, 501, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xd9V7YEm', '4598860'), + (46699, 501, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xd9V7YEm', '4598861'), + (46700, 501, 1099, 'maybe', '2021-11-05 23:42:37', '2025-12-17 19:47:36', 'xd9V7YEm', '4602797'), + (46701, 501, 1100, 'maybe', '2021-11-08 00:04:25', '2025-12-17 19:47:36', 'xd9V7YEm', '4607305'), + (46702, 501, 1114, 'maybe', '2021-11-13 21:16:59', '2025-12-17 19:47:36', 'xd9V7YEm', '4637896'), + (46703, 501, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xd9V7YEm', '4642994'), + (46704, 501, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'xd9V7YEm', '4642995'), + (46705, 501, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xd9V7YEm', '4642996'), + (46706, 501, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'xd9V7YEm', '4642997'), + (46707, 501, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'xd9V7YEm', '4645687'), + (46708, 501, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xd9V7YEm', '4645698'), + (46709, 501, 1128, 'not_attending', '2021-11-21 00:14:57', '2025-12-17 19:47:37', 'xd9V7YEm', '4645704'), + (46710, 501, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'xd9V7YEm', '4645705'), + (46711, 501, 1130, 'attending', '2021-12-05 00:02:26', '2025-12-17 19:47:37', 'xd9V7YEm', '4658824'), + (46712, 501, 1131, 'attending', '2021-12-18 23:24:43', '2025-12-17 19:47:31', 'xd9V7YEm', '4658825'), + (46713, 501, 1134, 'not_attending', '2021-12-04 03:34:39', '2025-12-17 19:47:37', 'xd9V7YEm', '4668385'), + (46714, 501, 1149, 'maybe', '2021-12-10 03:50:17', '2025-12-17 19:47:38', 'xd9V7YEm', '4694407'), + (46715, 501, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'xd9V7YEm', '4706262'), + (46716, 501, 1170, 'attending', '2022-01-10 00:07:35', '2025-12-17 19:47:31', 'xd9V7YEm', '4731045'), + (46717, 501, 1174, 'attending', '2022-01-15 17:01:27', '2025-12-17 19:47:31', 'xd9V7YEm', '4736496'), + (46718, 501, 1175, 'not_attending', '2022-01-17 05:24:04', '2025-12-17 19:47:32', 'xd9V7YEm', '4736497'), + (46719, 501, 1176, 'not_attending', '2022-02-05 20:45:26', '2025-12-17 19:47:32', 'xd9V7YEm', '4736498'), + (46720, 501, 1177, 'attending', '2022-02-11 05:34:02', '2025-12-17 19:47:32', 'xd9V7YEm', '4736499'), + (46721, 501, 1178, 'attending', '2022-01-27 00:02:06', '2025-12-17 19:47:32', 'xd9V7YEm', '4736500'), + (46722, 501, 1179, 'attending', '2022-02-19 16:46:20', '2025-12-17 19:47:32', 'xd9V7YEm', '4736501'), + (46723, 501, 1180, 'attending', '2022-02-26 01:31:37', '2025-12-17 19:47:33', 'xd9V7YEm', '4736502'), + (46724, 501, 1181, 'attending', '2022-03-05 03:43:58', '2025-12-17 19:47:33', 'xd9V7YEm', '4736503'), + (46725, 501, 1182, 'attending', '2022-03-12 22:26:54', '2025-12-17 19:47:33', 'xd9V7YEm', '4736504'), + (46726, 501, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xd9V7YEm', '4746789'), + (46727, 501, 1186, 'not_attending', '2022-01-09 08:31:10', '2025-12-17 19:47:31', 'xd9V7YEm', '4747800'), + (46728, 501, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'xd9V7YEm', '4753929'), + (46729, 501, 1196, 'not_attending', '2022-01-21 13:46:37', '2025-12-17 19:47:32', 'xd9V7YEm', '4765583'), + (46730, 501, 1231, 'maybe', '2022-02-25 01:03:37', '2025-12-17 19:47:33', 'xd9V7YEm', '5037637'), + (46731, 501, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xd9V7YEm', '5038850'), + (46732, 501, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xd9V7YEm', '5045826'), + (46733, 501, 1244, 'attending', '2022-02-21 03:53:09', '2025-12-17 19:47:33', 'xd9V7YEm', '5060490'), + (46734, 501, 1245, 'attending', '2022-02-27 19:28:49', '2025-12-17 19:47:33', 'xd9V7YEm', '5061301'), + (46735, 501, 1259, 'maybe', '2022-03-02 01:27:44', '2025-12-17 19:47:33', 'xd9V7YEm', '5132533'), + (46736, 501, 1272, 'attending', '2022-03-18 00:04:33', '2025-12-17 19:47:25', 'xd9V7YEm', '5186582'), + (46737, 501, 1273, 'attending', '2022-03-26 03:10:27', '2025-12-17 19:47:25', 'xd9V7YEm', '5186583'), + (46738, 501, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'xd9V7YEm', '5186585'), + (46739, 501, 1281, 'attending', '2022-04-09 03:52:27', '2025-12-17 19:47:27', 'xd9V7YEm', '5190437'), + (46740, 501, 1284, 'attending', '2022-04-16 22:09:09', '2025-12-17 19:47:27', 'xd9V7YEm', '5195095'), + (46741, 501, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xd9V7YEm', '5215989'), + (46742, 501, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'xd9V7YEm', '5223686'), + (46743, 501, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'xd9V7YEm', '5227432'), + (46744, 501, 1311, 'maybe', '2022-04-09 03:53:02', '2025-12-17 19:47:27', 'xd9V7YEm', '5231430'), + (46745, 501, 1316, 'not_attending', '2022-04-13 00:49:10', '2025-12-17 19:47:27', 'xd9V7YEm', '5237536'), + (46746, 501, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'xd9V7YEm', '5247467'), + (46747, 501, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', 'xd9V7YEm', '5249631'), + (46748, 501, 1354, 'not_attending', '2022-04-23 20:45:27', '2025-12-17 19:47:27', 'xd9V7YEm', '5252569'), + (46749, 501, 1362, 'not_attending', '2022-04-30 22:48:59', '2025-12-17 19:47:28', 'xd9V7YEm', '5260800'), + (46750, 501, 1366, 'not_attending', '2022-04-26 17:04:53', '2025-12-17 19:47:27', 'xd9V7YEm', '5262344'), + (46751, 501, 1367, 'maybe', '2022-05-01 17:03:21', '2025-12-17 19:47:28', 'xd9V7YEm', '5262345'), + (46752, 501, 1374, 'not_attending', '2022-05-06 23:43:40', '2025-12-17 19:47:28', 'xd9V7YEm', '5269930'), + (46753, 501, 1378, 'attending', '2022-05-14 15:51:20', '2025-12-17 19:47:29', 'xd9V7YEm', '5271448'), + (46754, 501, 1379, 'attending', '2022-05-20 13:49:14', '2025-12-17 19:47:29', 'xd9V7YEm', '5271449'), + (46755, 501, 1380, 'attending', '2022-05-27 11:30:29', '2025-12-17 19:47:30', 'xd9V7YEm', '5271450'), + (46756, 501, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'xd9V7YEm', '5276469'), + (46757, 501, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'xd9V7YEm', '5278159'), + (46758, 501, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'xd9V7YEm', '5363695'), + (46759, 501, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'xd9V7YEm', '5365960'), + (46760, 501, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'xd9V7YEm', '5368973'), + (46761, 501, 1422, 'not_attending', '2022-05-27 11:35:14', '2025-12-17 19:47:30', 'xd9V7YEm', '5375603'), + (46762, 501, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'xd9V7YEm', '5378247'), + (46763, 501, 1431, 'not_attending', '2022-06-11 18:24:34', '2025-12-17 19:47:31', 'xd9V7YEm', '5389605'), + (46764, 501, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'xd9V7YEm', '5397265'), + (46765, 501, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'xd9V7YEm', '5403967'), + (46766, 501, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'xd9V7YEm', '5404786'), + (46767, 501, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'xd9V7YEm', '5405203'), + (46768, 501, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'xd9V7YEm', '5411699'), + (46769, 501, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'xd9V7YEm', '5412550'), + (46770, 501, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'xd9V7YEm', '5415046'), + (46771, 501, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'xd9V7YEm', '5422086'), + (46772, 501, 1498, 'attending', '2022-07-02 16:32:39', '2025-12-17 19:47:19', 'xd9V7YEm', '5422406'), + (46773, 501, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'xd9V7YEm', '5424565'), + (46774, 501, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'xd9V7YEm', '5426882'), + (46775, 501, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'xd9V7YEm', '5427083'), + (46776, 501, 1511, 'maybe', '2022-07-09 18:32:51', '2025-12-17 19:47:19', 'xd9V7YEm', '5437733'), + (46777, 501, 1513, 'not_attending', '2022-07-14 00:45:02', '2025-12-17 19:47:20', 'xd9V7YEm', '5441125'), + (46778, 501, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'xd9V7YEm', '5441126'), + (46779, 501, 1515, 'attending', '2022-08-06 16:53:58', '2025-12-17 19:47:21', 'xd9V7YEm', '5441128'), + (46780, 501, 1516, 'attending', '2022-08-14 22:39:43', '2025-12-17 19:47:23', 'xd9V7YEm', '5441129'), + (46781, 501, 1517, 'attending', '2022-08-26 23:22:03', '2025-12-17 19:47:23', 'xd9V7YEm', '5441130'), + (46782, 501, 1518, 'maybe', '2022-08-30 02:05:27', '2025-12-17 19:47:24', 'xd9V7YEm', '5441131'), + (46783, 501, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'xd9V7YEm', '5441132'), + (46784, 501, 1527, 'not_attending', '2022-07-14 00:44:28', '2025-12-17 19:47:20', 'xd9V7YEm', '5446425'), + (46785, 501, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'xd9V7YEm', '5446643'), + (46786, 501, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'xd9V7YEm', '5453325'), + (46787, 501, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'xd9V7YEm', '5454516'), + (46788, 501, 1544, 'attending', '2022-09-15 00:02:38', '2025-12-17 19:47:11', 'xd9V7YEm', '5454517'), + (46789, 501, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'xd9V7YEm', '5454605'), + (46790, 501, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'xd9V7YEm', '5455037'), + (46791, 501, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'xd9V7YEm', '5461278'), + (46792, 501, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'xd9V7YEm', '5469480'), + (46793, 501, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'xd9V7YEm', '5471073'), + (46794, 501, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'xd9V7YEm', '5474663'), + (46795, 501, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'xd9V7YEm', '5482022'), + (46796, 501, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'xd9V7YEm', '5482793'), + (46797, 501, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'xd9V7YEm', '5488912'), + (46798, 501, 1582, 'maybe', '2022-08-14 22:39:37', '2025-12-17 19:47:23', 'xd9V7YEm', '5492001'), + (46799, 501, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'xd9V7YEm', '5492192'), + (46800, 501, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'xd9V7YEm', '5493139'), + (46801, 501, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'xd9V7YEm', '5493200'), + (46802, 501, 1603, 'maybe', '2022-08-14 22:39:21', '2025-12-17 19:47:23', 'xd9V7YEm', '5497895'), + (46803, 501, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'xd9V7YEm', '5502188'), + (46804, 501, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'xd9V7YEm', '5505059'), + (46805, 501, 1612, 'maybe', '2022-10-01 13:34:03', '2025-12-17 19:47:12', 'xd9V7YEm', '5507653'), + (46806, 501, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'xd9V7YEm', '5509055'), + (46807, 501, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'xd9V7YEm', '5512862'), + (46808, 501, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'xd9V7YEm', '5513985'), + (46809, 501, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'xd9V7YEm', '5519981'), + (46810, 501, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'xd9V7YEm', '5522550'), + (46811, 501, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'xd9V7YEm', '5534683'), + (46812, 501, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'xd9V7YEm', '5537735'), + (46813, 501, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'xd9V7YEm', '5540859'), + (46814, 501, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'xd9V7YEm', '5546619'), + (46815, 501, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'xd9V7YEm', '5555245'), + (46816, 501, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'xd9V7YEm', '5557747'), + (46817, 501, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'xd9V7YEm', '5560255'), + (46818, 501, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'xd9V7YEm', '5562906'), + (46819, 501, 1667, 'attending', '2022-09-23 23:39:58', '2025-12-17 19:47:11', 'xd9V7YEm', '5563221'), + (46820, 501, 1668, 'maybe', '2022-10-01 13:33:43', '2025-12-17 19:47:12', 'xd9V7YEm', '5563222'), + (46821, 501, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'xd9V7YEm', '5600604'), + (46822, 501, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'xd9V7YEm', '5605544'), + (46823, 501, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'xd9V7YEm', '5606737'), + (46824, 501, 1703, 'attending', '2022-10-05 16:57:30', '2025-12-17 19:47:12', 'xd9V7YEm', '5609176'), + (46825, 501, 1719, 'maybe', '2022-10-08 05:52:28', '2025-12-17 19:47:12', 'xd9V7YEm', '5630958'), + (46826, 501, 1720, 'attending', '2022-10-15 16:28:34', '2025-12-17 19:47:12', 'xd9V7YEm', '5630959'), + (46827, 501, 1721, 'not_attending', '2022-10-19 11:09:16', '2025-12-17 19:47:13', 'xd9V7YEm', '5630960'), + (46828, 501, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'xd9V7YEm', '5630961'), + (46829, 501, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'xd9V7YEm', '5630962'), + (46830, 501, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'xd9V7YEm', '5630966'), + (46831, 501, 1725, 'attending', '2022-11-14 04:02:34', '2025-12-17 19:47:16', 'xd9V7YEm', '5630967'), + (46832, 501, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'xd9V7YEm', '5630968'), + (46833, 501, 1727, 'attending', '2022-12-03 20:33:06', '2025-12-17 19:47:16', 'xd9V7YEm', '5630969'), + (46834, 501, 1728, 'attending', '2022-12-11 06:01:11', '2025-12-17 19:47:17', 'xd9V7YEm', '5630970'), + (46835, 501, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'xd9V7YEm', '5635406'), + (46836, 501, 1733, 'maybe', '2022-10-09 18:17:32', '2025-12-17 19:47:12', 'xd9V7YEm', '5635411'), + (46837, 501, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'xd9V7YEm', '5638765'), + (46838, 501, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'xd9V7YEm', '5640097'), + (46839, 501, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'xd9V7YEm', '5640843'), + (46840, 501, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'xd9V7YEm', '5641521'), + (46841, 501, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'xd9V7YEm', '5642818'), + (46842, 501, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'xd9V7YEm', '5652395'), + (46843, 501, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'xd9V7YEm', '5670445'), + (46844, 501, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'xd9V7YEm', '5671637'), + (46845, 501, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'xd9V7YEm', '5672329'), + (46846, 501, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'xd9V7YEm', '5674057'), + (46847, 501, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'xd9V7YEm', '5674060'), + (46848, 501, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'xd9V7YEm', '5677461'), + (46849, 501, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'xd9V7YEm', '5698046'), + (46850, 501, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'xd9V7YEm', '5699760'), + (46851, 501, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'xd9V7YEm', '5741601'), + (46852, 501, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'xd9V7YEm', '5763458'), + (46853, 501, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'xd9V7YEm', '5774172'), + (46854, 501, 1825, 'attending', '2022-11-27 04:24:18', '2025-12-17 19:47:16', 'xd9V7YEm', '5776760'), + (46855, 501, 1828, 'not_attending', '2022-11-28 21:34:38', '2025-12-17 19:47:16', 'xd9V7YEm', '5778865'), + (46856, 501, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'xd9V7YEm', '5818247'), + (46857, 501, 1834, 'attending', '2022-12-10 05:22:44', '2025-12-17 19:47:17', 'xd9V7YEm', '5819470'), + (46858, 501, 1835, 'maybe', '2022-12-31 18:02:09', '2025-12-17 19:47:05', 'xd9V7YEm', '5819471'), + (46859, 501, 1841, 'attending', '2023-01-05 04:42:18', '2025-12-17 19:47:05', 'xd9V7YEm', '5827665'), + (46860, 501, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'xd9V7YEm', '5827739'), + (46861, 501, 1843, 'attending', '2022-12-17 22:36:30', '2025-12-17 19:47:04', 'xd9V7YEm', '5844304'), + (46862, 501, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xd9V7YEm', '5844306'), + (46863, 501, 1847, 'attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xd9V7YEm', '5850159'), + (46864, 501, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xd9V7YEm', '5858999'), + (46865, 501, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xd9V7YEm', '5871984'), + (46866, 501, 1858, 'attending', '2023-01-15 23:47:48', '2025-12-17 19:47:05', 'xd9V7YEm', '5875044'), + (46867, 501, 1860, 'attending', '2023-01-13 11:41:14', '2025-12-17 19:47:05', 'xd9V7YEm', '5876309'), + (46868, 501, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xd9V7YEm', '5876354'), + (46869, 501, 1864, 'not_attending', '2023-01-19 01:54:04', '2025-12-17 19:47:05', 'xd9V7YEm', '5879675'), + (46870, 501, 1865, 'attending', '2023-01-27 00:02:03', '2025-12-17 19:47:06', 'xd9V7YEm', '5879676'), + (46871, 501, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xd9V7YEm', '5880939'), + (46872, 501, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xd9V7YEm', '5880940'), + (46873, 501, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xd9V7YEm', '5880942'), + (46874, 501, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xd9V7YEm', '5880943'), + (46875, 501, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xd9V7YEm', '5887890'), + (46876, 501, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xd9V7YEm', '5888598'), + (46877, 501, 1879, 'maybe', '2023-01-29 22:58:20', '2025-12-17 19:47:06', 'xd9V7YEm', '5893001'), + (46878, 501, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xd9V7YEm', '5893260'), + (46879, 501, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xd9V7YEm', '5899826'), + (46880, 501, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xd9V7YEm', '5900199'), + (46881, 501, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xd9V7YEm', '5900200'), + (46882, 501, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xd9V7YEm', '5900202'), + (46883, 501, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xd9V7YEm', '5900203'), + (46884, 501, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xd9V7YEm', '5901108'), + (46885, 501, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xd9V7YEm', '5901126'), + (46886, 501, 1897, 'maybe', '2023-02-11 01:31:40', '2025-12-17 19:47:07', 'xd9V7YEm', '5901128'), + (46887, 501, 1910, 'maybe', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xd9V7YEm', '5909655'), + (46888, 501, 1912, 'maybe', '2023-02-16 04:29:15', '2025-12-17 19:47:07', 'xd9V7YEm', '5909808'), + (46889, 501, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xd9V7YEm', '5910522'), + (46890, 501, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xd9V7YEm', '5910526'), + (46891, 501, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xd9V7YEm', '5910528'), + (46892, 501, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xd9V7YEm', '5916219'), + (46893, 501, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xd9V7YEm', '5936234'), + (46894, 501, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xd9V7YEm', '5958351'), + (46895, 501, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xd9V7YEm', '5959751'), + (46896, 501, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xd9V7YEm', '5959755'), + (46897, 501, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xd9V7YEm', '5960055'), + (46898, 501, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xd9V7YEm', '5961684'), + (46899, 501, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'xd9V7YEm', '5962132'), + (46900, 501, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'xd9V7YEm', '5962133'), + (46901, 501, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xd9V7YEm', '5962134'), + (46902, 501, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xd9V7YEm', '5962317'), + (46903, 501, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xd9V7YEm', '5962318'), + (46904, 501, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'xd9V7YEm', '5965933'), + (46905, 501, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xd9V7YEm', '5967014'), + (46906, 501, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xd9V7YEm', '5972815'), + (46907, 501, 1959, 'maybe', '2023-03-26 15:25:41', '2025-12-17 19:46:57', 'xd9V7YEm', '5972829'), + (46908, 501, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xd9V7YEm', '5974016'), + (46909, 501, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'xd9V7YEm', '5975052'), + (46910, 501, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'xd9V7YEm', '5975054'), + (46911, 501, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xd9V7YEm', '5981515'), + (46912, 501, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xd9V7YEm', '5993516'), + (46913, 501, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xd9V7YEm', '5998939'), + (46914, 501, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xd9V7YEm', '6028191'), + (46915, 501, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xd9V7YEm', '6040066'), + (46916, 501, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xd9V7YEm', '6042717'), + (46917, 501, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xd9V7YEm', '6044838'), + (46918, 501, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xd9V7YEm', '6044839'), + (46919, 501, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9V7YEm', '6045684'), + (46920, 501, 1991, 'attending', '2023-04-02 05:50:40', '2025-12-17 19:46:58', 'xd9V7YEm', '6047354'), + (46921, 501, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xd9V7YEm', '6050104'), + (46922, 501, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xd9V7YEm', '6053195'), + (46923, 501, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xd9V7YEm', '6053198'), + (46924, 501, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xd9V7YEm', '6056085'), + (46925, 501, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xd9V7YEm', '6056916'), + (46926, 501, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xd9V7YEm', '6059290'), + (46927, 501, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xd9V7YEm', '6060328'), + (46928, 501, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xd9V7YEm', '6061037'), + (46929, 501, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xd9V7YEm', '6061039'), + (46930, 501, 2019, 'maybe', '2023-04-15 19:57:43', '2025-12-17 19:47:00', 'xd9V7YEm', '6062934'), + (46931, 501, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'xd9V7YEm', '6065813'), + (46932, 501, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xd9V7YEm', '6067245'), + (46933, 501, 2024, 'attending', '2023-04-17 01:36:55', '2025-12-17 19:47:00', 'xd9V7YEm', '6067437'), + (46934, 501, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xd9V7YEm', '6068094'), + (46935, 501, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xd9V7YEm', '6068252'), + (46936, 501, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xd9V7YEm', '6068253'), + (46937, 501, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xd9V7YEm', '6068254'), + (46938, 501, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'xd9V7YEm', '6068280'), + (46939, 501, 2032, 'not_attending', '2023-06-03 14:03:12', '2025-12-17 19:47:04', 'xd9V7YEm', '6068281'), + (46940, 501, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xd9V7YEm', '6069093'), + (46941, 501, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xd9V7YEm', '6072528'), + (46942, 501, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'xd9V7YEm', '6075556'), + (46943, 501, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xd9V7YEm', '6079840'), + (46944, 501, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xd9V7YEm', '6083398'), + (46945, 501, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xd9V7YEm', '6093504'), + (46946, 501, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xd9V7YEm', '6097414'), + (46947, 501, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xd9V7YEm', '6097442'), + (46948, 501, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xd9V7YEm', '6097684'), + (46949, 501, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xd9V7YEm', '6098762'), + (46950, 501, 2064, 'attending', '2023-06-24 21:48:44', '2025-12-17 19:46:50', 'xd9V7YEm', '6099988'), + (46951, 501, 2065, 'not_attending', '2023-06-15 15:53:34', '2025-12-17 19:46:49', 'xd9V7YEm', '6101169'), + (46952, 501, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xd9V7YEm', '6101361'), + (46953, 501, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xd9V7YEm', '6101362'), + (46954, 501, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xd9V7YEm', '6107314'), + (46955, 501, 2076, 'attending', '2023-05-19 11:41:10', '2025-12-17 19:47:03', 'xd9V7YEm', '6108350'), + (46956, 501, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xd9V7YEm', '6120034'), + (46957, 501, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'xd9V7YEm', '6136733'), + (46958, 501, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xd9V7YEm', '6137989'), + (46959, 501, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xd9V7YEm', '6150864'), + (46960, 501, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xd9V7YEm', '6155491'), + (46961, 501, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xd9V7YEm', '6164417'), + (46962, 501, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xd9V7YEm', '6166388'), + (46963, 501, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xd9V7YEm', '6176439'), + (46964, 501, 2126, 'attending', '2023-06-29 23:45:48', '2025-12-17 19:46:51', 'xd9V7YEm', '6177548'), + (46965, 501, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xd9V7YEm', '6182410'), + (46966, 501, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xd9V7YEm', '6185812'), + (46967, 501, 2133, 'maybe', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xd9V7YEm', '6187651'), + (46968, 501, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xd9V7YEm', '6187963'), + (46969, 501, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xd9V7YEm', '6187964'), + (46970, 501, 2136, 'maybe', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xd9V7YEm', '6187966'), + (46971, 501, 2137, 'maybe', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xd9V7YEm', '6187967'), + (46972, 501, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xd9V7YEm', '6187969'), + (46973, 501, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xd9V7YEm', '6334878'), + (46974, 501, 2153, 'maybe', '2023-07-16 17:04:30', '2025-12-17 19:46:52', 'xd9V7YEm', '6337236'), + (46975, 501, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xd9V7YEm', '6337970'), + (46976, 501, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xd9V7YEm', '6338308'), + (46977, 501, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'xd9V7YEm', '6338342'), + (46978, 501, 2159, 'attending', '2023-07-17 23:41:24', '2025-12-17 19:46:53', 'xd9V7YEm', '6338355'), + (46979, 501, 2160, 'attending', '2023-07-17 23:41:27', '2025-12-17 19:46:54', 'xd9V7YEm', '6338358'), + (46980, 501, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xd9V7YEm', '6341710'), + (46981, 501, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xd9V7YEm', '6342044'), + (46982, 501, 2167, 'maybe', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xd9V7YEm', '6342298'), + (46983, 501, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xd9V7YEm', '6343294'), + (46984, 501, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xd9V7YEm', '6347034'), + (46985, 501, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xd9V7YEm', '6347056'), + (46986, 501, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xd9V7YEm', '6353830'), + (46987, 501, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xd9V7YEm', '6353831'), + (46988, 501, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xd9V7YEm', '6357867'), + (46989, 501, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xd9V7YEm', '6358652'), + (46990, 501, 2193, 'maybe', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'xd9V7YEm', '6358668'), + (46991, 501, 2194, 'maybe', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'xd9V7YEm', '6358669'), + (46992, 501, 2204, 'attending', '2023-08-18 10:21:09', '2025-12-17 19:46:55', 'xd9V7YEm', '6361542'), + (46993, 501, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xd9V7YEm', '6361709'), + (46994, 501, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xd9V7YEm', '6361710'), + (46995, 501, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xd9V7YEm', '6361711'), + (46996, 501, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xd9V7YEm', '6361712'), + (46997, 501, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xd9V7YEm', '6361713'), + (46998, 501, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'xd9V7YEm', '6382573'), + (46999, 501, 2239, 'attending', '2023-08-31 21:42:34', '2025-12-17 19:46:56', 'xd9V7YEm', '6387592'), + (47000, 501, 2240, 'attending', '2023-09-08 03:08:29', '2025-12-17 19:46:56', 'xd9V7YEm', '6388603'), + (47001, 501, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'xd9V7YEm', '6388604'), + (47002, 501, 2242, 'attending', '2023-09-21 22:13:02', '2025-12-17 19:46:45', 'xd9V7YEm', '6388606'), + (47003, 501, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xd9V7YEm', '6394629'), + (47004, 501, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xd9V7YEm', '6394631'), + (47005, 501, 2256, 'attending', '2023-09-21 22:13:09', '2025-12-17 19:46:45', 'xd9V7YEm', '6404369'), + (47006, 501, 2267, 'maybe', '2023-10-04 17:24:31', '2025-12-17 19:46:45', 'xd9V7YEm', '6440034'), + (47007, 501, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xd9V7YEm', '6440863'), + (47008, 501, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xd9V7YEm', '6445440'), + (47009, 501, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xd9V7YEm', '6453951'), + (47010, 501, 2277, 'maybe', '2023-10-08 22:57:14', '2025-12-17 19:46:46', 'xd9V7YEm', '6455211'), + (47011, 501, 2279, 'not_attending', '2023-10-08 22:57:20', '2025-12-17 19:46:46', 'xd9V7YEm', '6455460'), + (47012, 501, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xd9V7YEm', '6461696'), + (47013, 501, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xd9V7YEm', '6462129'), + (47014, 501, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xd9V7YEm', '6463218'), + (47015, 501, 2294, 'not_attending', '2023-10-13 16:18:18', '2025-12-17 19:46:46', 'xd9V7YEm', '6465907'), + (47016, 501, 2299, 'attending', '2023-10-19 22:24:07', '2025-12-17 19:46:46', 'xd9V7YEm', '6472181'), + (47017, 501, 2303, 'attending', '2023-10-26 01:29:26', '2025-12-17 19:46:47', 'xd9V7YEm', '6482691'), + (47018, 501, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'xd9V7YEm', '6482693'), + (47019, 501, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'xd9V7YEm', '6484200'), + (47020, 501, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xd9V7YEm', '6484680'), + (47021, 501, 2310, 'attending', '2023-11-12 00:55:56', '2025-12-17 19:46:47', 'xd9V7YEm', '6487709'), + (47022, 501, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xd9V7YEm', '6507741'), + (47023, 501, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'xd9V7YEm', '6514659'), + (47024, 501, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xd9V7YEm', '6514660'), + (47025, 501, 2324, 'attending', '2023-12-08 01:19:46', '2025-12-17 19:46:49', 'xd9V7YEm', '6514662'), + (47026, 501, 2325, 'attending', '2023-12-13 02:46:22', '2025-12-17 19:46:36', 'xd9V7YEm', '6514663'), + (47027, 501, 2332, 'attending', '2023-11-03 20:51:07', '2025-12-17 19:46:47', 'xd9V7YEm', '6518655'), + (47028, 501, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xd9V7YEm', '6519103'), + (47029, 501, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xd9V7YEm', '6535681'), + (47030, 501, 2338, 'attending', '2023-11-24 06:07:09', '2025-12-17 19:46:48', 'xd9V7YEm', '6538868'), + (47031, 501, 2341, 'attending', '2023-11-12 20:14:10', '2025-12-17 19:46:48', 'xd9V7YEm', '6543263'), + (47032, 501, 2349, 'not_attending', '2023-11-22 17:02:13', '2025-12-17 19:46:48', 'xd9V7YEm', '6583065'), + (47033, 501, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xd9V7YEm', '6584747'), + (47034, 501, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xd9V7YEm', '6587097'), + (47035, 501, 2358, 'attending', '2023-11-30 01:17:19', '2025-12-17 19:46:48', 'xd9V7YEm', '6595321'), + (47036, 501, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xd9V7YEm', '6609022'), + (47037, 501, 2373, 'attending', '2024-01-14 17:46:15', '2025-12-17 19:46:38', 'xd9V7YEm', '6632678'), + (47038, 501, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xd9V7YEm', '6632757'), + (47039, 501, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xd9V7YEm', '6644187'), + (47040, 501, 2380, 'attending', '2023-12-31 02:09:35', '2025-12-17 19:46:37', 'xd9V7YEm', '6645105'), + (47041, 501, 2384, 'attending', '2024-01-02 04:26:36', '2025-12-17 19:46:37', 'xd9V7YEm', '6648022'), + (47042, 501, 2385, 'maybe', '2024-01-03 03:02:39', '2025-12-17 19:46:37', 'xd9V7YEm', '6648943'), + (47043, 501, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xd9V7YEm', '6648951'), + (47044, 501, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xd9V7YEm', '6648952'), + (47045, 501, 2388, 'attending', '2024-01-03 03:05:34', '2025-12-17 19:46:37', 'xd9V7YEm', '6649244'), + (47046, 501, 2390, 'maybe', '2024-01-07 05:22:28', '2025-12-17 19:46:37', 'xd9V7YEm', '6651141'), + (47047, 501, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xd9V7YEm', '6655401'), + (47048, 501, 2399, 'attending', '2024-01-11 02:33:07', '2025-12-17 19:46:38', 'xd9V7YEm', '6657583'), + (47049, 501, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xd9V7YEm', '6661585'), + (47050, 501, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xd9V7YEm', '6661588'), + (47051, 501, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xd9V7YEm', '6661589'), + (47052, 501, 2404, 'maybe', '2024-01-13 19:02:03', '2025-12-17 19:46:38', 'xd9V7YEm', '6666858'), + (47053, 501, 2405, 'maybe', '2024-01-13 19:01:53', '2025-12-17 19:46:38', 'xd9V7YEm', '6667332'), + (47054, 501, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xd9V7YEm', '6699906'), + (47055, 501, 2408, 'attending', '2024-01-26 05:26:18', '2025-12-17 19:46:40', 'xd9V7YEm', '6699907'), + (47056, 501, 2409, 'attending', '2024-02-02 04:48:52', '2025-12-17 19:46:41', 'xd9V7YEm', '6699909'), + (47057, 501, 2410, 'attending', '2024-02-09 18:38:29', '2025-12-17 19:46:41', 'xd9V7YEm', '6699911'), + (47058, 501, 2411, 'not_attending', '2024-02-12 18:10:48', '2025-12-17 19:46:42', 'xd9V7YEm', '6699913'), + (47059, 501, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xd9V7YEm', '6701109'), + (47060, 501, 2419, 'maybe', '2024-02-03 00:32:02', '2025-12-17 19:46:41', 'xd9V7YEm', '6704505'), + (47061, 501, 2420, 'maybe', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'xd9V7YEm', '6704561'), + (47062, 501, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xd9V7YEm', '6705219'), + (47063, 501, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'xd9V7YEm', '6708410'), + (47064, 501, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xd9V7YEm', '6710153'), + (47065, 501, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xd9V7YEm', '6711552'), + (47066, 501, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'xd9V7YEm', '6711553'), + (47067, 501, 2431, 'maybe', '2024-01-23 05:26:25', '2025-12-17 19:46:41', 'xd9V7YEm', '6712394'), + (47068, 501, 2434, 'attending', '2024-01-27 04:10:39', '2025-12-17 19:46:40', 'xd9V7YEm', '6716605'), + (47069, 501, 2435, 'attending', '2024-01-27 02:47:26', '2025-12-17 19:46:41', 'xd9V7YEm', '6721547'), + (47070, 501, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xd9V7YEm', '6722688'), + (47071, 501, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xd9V7YEm', '6730620'), + (47072, 501, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xd9V7YEm', '6730642'), + (47073, 501, 2441, 'attending', '2024-02-02 04:50:51', '2025-12-17 19:46:41', 'xd9V7YEm', '6731263'), + (47074, 501, 2452, 'maybe', '2024-02-12 18:10:12', '2025-12-17 19:46:41', 'xd9V7YEm', '6740361'), + (47075, 501, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xd9V7YEm', '6740364'), + (47076, 501, 2456, 'maybe', '2024-02-08 16:40:01', '2025-12-17 19:46:41', 'xd9V7YEm', '6742202'), + (47077, 501, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xd9V7YEm', '6743829'), + (47078, 501, 2463, 'maybe', '2024-02-12 18:10:29', '2025-12-17 19:46:41', 'xd9V7YEm', '6746394'), + (47079, 501, 2468, 'maybe', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xd9V7YEm', '7030380'), + (47080, 501, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xd9V7YEm', '7033677'), + (47081, 501, 2473, 'attending', '2024-02-26 20:16:38', '2025-12-17 19:46:43', 'xd9V7YEm', '7033724'), + (47082, 501, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xd9V7YEm', '7035415'), + (47083, 501, 2477, 'attending', '2024-02-22 04:21:05', '2025-12-17 19:46:42', 'xd9V7YEm', '7035692'), + (47084, 501, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xd9V7YEm', '7044715'), + (47085, 501, 2487, 'maybe', '2024-03-22 16:22:13', '2025-12-17 19:46:33', 'xd9V7YEm', '7049279'), + (47086, 501, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xd9V7YEm', '7050318'), + (47087, 501, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xd9V7YEm', '7050319'), + (47088, 501, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xd9V7YEm', '7050322'), + (47089, 501, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xd9V7YEm', '7057804'), + (47090, 501, 2502, 'not_attending', '2024-03-06 02:24:18', '2025-12-17 19:46:33', 'xd9V7YEm', '7061202'), + (47091, 501, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xd9V7YEm', '7072824'), + (47092, 501, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xd9V7YEm', '7074348'), + (47093, 501, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xd9V7YEm', '7074364'), + (47094, 501, 2528, 'not_attending', '2024-08-03 01:28:18', '2025-12-17 19:46:31', 'xd9V7YEm', '7074368'), + (47095, 501, 2538, 'attending', '2024-03-24 23:05:47', '2025-12-17 19:46:33', 'xd9V7YEm', '7085485'), + (47096, 501, 2539, 'maybe', '2024-04-05 20:21:10', '2025-12-17 19:46:33', 'xd9V7YEm', '7085486'), + (47097, 501, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'xd9V7YEm', '7089267'), + (47098, 501, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xd9V7YEm', '7098747'), + (47099, 501, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xd9V7YEm', '7113468'), + (47100, 501, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xd9V7YEm', '7114856'), + (47101, 501, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xd9V7YEm', '7114951'), + (47102, 501, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xd9V7YEm', '7114955'), + (47103, 501, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xd9V7YEm', '7114956'), + (47104, 501, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xd9V7YEm', '7114957'), + (47105, 501, 2567, 'maybe', '2024-04-04 01:49:18', '2025-12-17 19:46:33', 'xd9V7YEm', '7144962'), + (47106, 501, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xd9V7YEm', '7153615'), + (47107, 501, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xd9V7YEm', '7159484'), + (47108, 501, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xd9V7YEm', '7178446'), + (47109, 501, 2594, 'attending', '2024-04-20 15:25:44', '2025-12-17 19:46:34', 'xd9V7YEm', '7182117'), + (47110, 501, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'xd9V7YEm', '7220467'), + (47111, 501, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xd9V7YEm', '7240354'), + (47112, 501, 2617, 'attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xd9V7YEm', '7251633'), + (47113, 501, 2623, 'maybe', '2024-05-10 14:21:06', '2025-12-17 19:46:35', 'xd9V7YEm', '7263048'), + (47114, 501, 2624, 'not_attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', 'xd9V7YEm', '7263301'), + (47115, 501, 2626, 'attending', '2024-05-16 23:24:03', '2025-12-17 19:46:35', 'xd9V7YEm', '7264723'), + (47116, 501, 2628, 'attending', '2024-05-31 02:32:14', '2025-12-17 19:46:36', 'xd9V7YEm', '7264725'), + (47117, 501, 2629, 'attending', '2024-06-07 22:39:51', '2025-12-17 19:46:28', 'xd9V7YEm', '7264726'), + (47118, 501, 2650, 'attending', '2024-05-24 16:28:16', '2025-12-17 19:46:35', 'xd9V7YEm', '7288199'), + (47119, 501, 2655, 'maybe', '2024-05-26 23:07:17', '2025-12-17 19:46:35', 'xd9V7YEm', '7291225'), + (47120, 501, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'xd9V7YEm', '7302674'), + (47121, 501, 2678, 'attending', '2024-06-11 11:17:17', '2025-12-17 19:46:28', 'xd9V7YEm', '7319489'), + (47122, 501, 2679, 'not_attending', '2024-06-20 15:22:59', '2025-12-17 19:46:29', 'xd9V7YEm', '7319490'), + (47123, 501, 2685, 'maybe', '2024-06-11 11:17:03', '2025-12-17 19:46:28', 'xd9V7YEm', '7322675'), + (47124, 501, 2686, 'not_attending', '2024-06-11 11:16:20', '2025-12-17 19:46:29', 'xd9V7YEm', '7323802'), + (47125, 501, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xd9V7YEm', '7324073'), + (47126, 501, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xd9V7YEm', '7324074'), + (47127, 501, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xd9V7YEm', '7324075'), + (47128, 501, 2691, 'not_attending', '2024-07-20 00:17:35', '2025-12-17 19:46:30', 'xd9V7YEm', '7324076'), + (47129, 501, 2692, 'not_attending', '2024-07-20 00:17:39', '2025-12-17 19:46:30', 'xd9V7YEm', '7324077'), + (47130, 501, 2693, 'maybe', '2024-07-31 23:48:50', '2025-12-17 19:46:31', 'xd9V7YEm', '7324078'), + (47131, 501, 2694, 'attending', '2024-08-10 22:12:47', '2025-12-17 19:46:31', 'xd9V7YEm', '7324079'), + (47132, 501, 2695, 'attending', '2024-08-17 22:18:16', '2025-12-17 19:46:31', 'xd9V7YEm', '7324080'), + (47133, 501, 2696, 'maybe', '2024-08-19 13:39:40', '2025-12-17 19:46:32', 'xd9V7YEm', '7324081'), + (47134, 501, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xd9V7YEm', '7324082'), + (47135, 501, 2709, 'maybe', '2024-06-20 15:23:22', '2025-12-17 19:46:29', 'xd9V7YEm', '7325107'), + (47136, 501, 2710, 'maybe', '2024-06-20 15:22:42', '2025-12-17 19:46:29', 'xd9V7YEm', '7325108'), + (47137, 501, 2721, 'attending', '2024-06-20 15:23:33', '2025-12-17 19:46:29', 'xd9V7YEm', '7331456'), + (47138, 501, 2722, 'attending', '2024-07-08 22:55:30', '2025-12-17 19:46:29', 'xd9V7YEm', '7331457'), + (47139, 501, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xd9V7YEm', '7363643'), + (47140, 501, 2773, 'attending', '2024-07-21 18:41:54', '2025-12-17 19:46:31', 'xd9V7YEm', '7368605'), + (47141, 501, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xd9V7YEm', '7368606'), + (47142, 501, 2792, 'maybe', '2024-08-08 14:06:09', '2025-12-17 19:46:31', 'xd9V7YEm', '7390763'), + (47143, 501, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xd9V7YEm', '7397462'), + (47144, 501, 2807, 'attending', '2024-08-22 22:30:46', '2025-12-17 19:46:32', 'xd9V7YEm', '7406485'), + (47145, 501, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xd9V7YEm', '7432751'), + (47146, 501, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xd9V7YEm', '7432752'), + (47147, 501, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xd9V7YEm', '7432753'), + (47148, 501, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xd9V7YEm', '7432754'), + (47149, 501, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xd9V7YEm', '7432755'), + (47150, 501, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xd9V7YEm', '7432756'), + (47151, 501, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xd9V7YEm', '7432758'), + (47152, 501, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xd9V7YEm', '7432759'), + (47153, 501, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xd9V7YEm', '7433834'), + (47154, 502, 245, 'attending', '2020-11-27 18:14:33', '2025-12-17 19:47:54', '64vvYGk4', '3149476'), + (47155, 502, 469, 'attending', '2020-11-27 18:10:55', '2025-12-17 19:47:54', '64vvYGk4', '3285414'), + (47156, 502, 493, 'not_attending', '2020-12-06 01:13:28', '2025-12-17 19:47:54', '64vvYGk4', '3313856'), + (47157, 502, 495, 'attending', '2020-12-02 08:15:16', '2025-12-17 19:47:54', '64vvYGk4', '3314009'), + (47158, 502, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '64vvYGk4', '3314909'), + (47159, 502, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '64vvYGk4', '3314964'), + (47160, 502, 502, 'not_attending', '2020-12-13 01:24:46', '2025-12-17 19:47:55', '64vvYGk4', '3323365'), + (47161, 502, 511, 'attending', '2020-12-15 03:37:36', '2025-12-17 19:47:55', '64vvYGk4', '3325335'), + (47162, 502, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '64vvYGk4', '3329383'), + (47163, 502, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '64vvYGk4', '3351539'), + (47164, 502, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '64vvYGk4', '3386848'), + (47165, 502, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '64vvYGk4', '3389527'), + (47166, 502, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '64vvYGk4', '3396499'), + (47167, 502, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '64vvYGk4', '3403650'), + (47168, 502, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '64vvYGk4', '3406988'), + (47169, 502, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', '64vvYGk4', '3408338'), + (47170, 502, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '64vvYGk4', '3416576'), + (47171, 502, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64vvYGk4', '6045684'), + (47172, 503, 252, 'attending', '2021-02-23 00:35:51', '2025-12-17 19:47:50', '54koopR4', '3149483'), + (47173, 503, 573, 'not_attending', '2021-02-25 21:18:14', '2025-12-17 19:47:50', '54koopR4', '3435542'), + (47174, 503, 574, 'not_attending', '2021-03-03 23:45:35', '2025-12-17 19:47:51', '54koopR4', '3435543'), + (47175, 503, 592, 'attending', '2021-02-24 04:43:39', '2025-12-17 19:47:50', '54koopR4', '3467757'), + (47176, 503, 594, 'not_attending', '2021-03-01 23:48:44', '2025-12-17 19:47:51', '54koopR4', '3467759'), + (47177, 503, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '54koopR4', '3470305'), + (47178, 503, 620, 'attending', '2021-02-24 04:43:44', '2025-12-17 19:47:50', '54koopR4', '3513703'), + (47179, 503, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '54koopR4', '3517815'), + (47180, 503, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '54koopR4', '3517816'), + (47181, 503, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '54koopR4', '3523941'), + (47182, 503, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54koopR4', '3533850'), + (47183, 503, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '54koopR4', '3536632'), + (47184, 503, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '54koopR4', '3536656'), + (47185, 503, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '54koopR4', '3539916'), + (47186, 503, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '54koopR4', '3539917'), + (47187, 503, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '54koopR4', '3539918'), + (47188, 503, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '54koopR4', '3539919'), + (47189, 503, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '54koopR4', '3539920'), + (47190, 503, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '54koopR4', '3539921'), + (47191, 503, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '54koopR4', '3539922'), + (47192, 503, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '54koopR4', '3539923'), + (47193, 503, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '54koopR4', '3539927'), + (47194, 503, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54koopR4', '3582734'), + (47195, 503, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '54koopR4', '3583262'), + (47196, 503, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '54koopR4', '3619523'), + (47197, 503, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '54koopR4', '3661369'), + (47198, 503, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54koopR4', '3674262'), + (47199, 503, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54koopR4', '3677402'), + (47200, 503, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54koopR4', '3730212'), + (47201, 503, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54koopR4', '6045684'), + (47202, 504, 2522, 'not_attending', '2024-07-17 19:54:31', '2025-12-17 19:46:30', '4v0WwbOm', '7074362'), + (47203, 504, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4v0WwbOm', '7074364'), + (47204, 504, 2529, 'attending', '2024-05-19 02:50:58', '2025-12-17 19:46:35', '4v0WwbOm', '7074369'), + (47205, 504, 2626, 'attending', '2024-05-17 02:47:45', '2025-12-17 19:46:35', '4v0WwbOm', '7264723'), + (47206, 504, 2627, 'maybe', '2024-05-19 02:51:01', '2025-12-17 19:46:35', '4v0WwbOm', '7264724'), + (47207, 504, 2633, 'attending', '2024-05-17 02:43:06', '2025-12-17 19:46:35', '4v0WwbOm', '7270095'), + (47208, 504, 2634, 'attending', '2024-05-19 02:50:04', '2025-12-17 19:46:35', '4v0WwbOm', '7270321'), + (47209, 504, 2635, 'attending', '2024-05-19 02:50:09', '2025-12-17 19:46:35', '4v0WwbOm', '7270322'), + (47210, 504, 2636, 'attending', '2024-05-19 02:51:05', '2025-12-17 19:46:35', '4v0WwbOm', '7270323'), + (47211, 504, 2637, 'attending', '2024-05-19 02:51:08', '2025-12-17 19:46:35', '4v0WwbOm', '7270324'), + (47212, 504, 2638, 'attending', '2024-05-17 02:47:18', '2025-12-17 19:46:35', '4v0WwbOm', '7273117'), + (47213, 504, 2639, 'attending', '2024-05-16 17:02:04', '2025-12-17 19:46:35', '4v0WwbOm', '7273242'), + (47214, 504, 2640, 'attending', '2024-05-18 01:43:26', '2025-12-17 19:46:35', '4v0WwbOm', '7275331'), + (47215, 504, 2644, 'attending', '2024-05-22 03:19:07', '2025-12-17 19:46:35', '4v0WwbOm', '7279039'), + (47216, 504, 2645, 'attending', '2024-05-20 19:54:01', '2025-12-17 19:46:35', '4v0WwbOm', '7279964'), + (47217, 504, 2646, 'not_attending', '2024-05-22 03:18:11', '2025-12-17 19:46:35', '4v0WwbOm', '7281768'), + (47218, 504, 2648, 'attending', '2024-05-21 19:09:55', '2025-12-17 19:46:35', '4v0WwbOm', '7282283'), + (47219, 504, 2650, 'not_attending', '2024-05-24 16:29:06', '2025-12-17 19:46:35', '4v0WwbOm', '7288199'), + (47220, 504, 2652, 'attending', '2024-05-31 03:51:14', '2025-12-17 19:46:36', '4v0WwbOm', '7288339'), + (47221, 504, 2656, 'attending', '2024-05-30 21:06:15', '2025-12-17 19:46:36', '4v0WwbOm', '7291301'), + (47222, 504, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4v0WwbOm', '7302674'), + (47223, 504, 2662, 'attending', '2024-06-02 19:06:53', '2025-12-17 19:46:36', '4v0WwbOm', '7302815'), + (47224, 504, 2679, 'attending', '2024-06-16 01:46:31', '2025-12-17 19:46:29', '4v0WwbOm', '7319490'), + (47225, 504, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4v0WwbOm', '7324073'), + (47226, 504, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4v0WwbOm', '7324074'), + (47227, 504, 2690, 'attending', '2024-07-07 02:22:54', '2025-12-17 19:46:30', '4v0WwbOm', '7324075'), + (47228, 504, 2691, 'attending', '2024-07-20 19:00:12', '2025-12-17 19:46:30', '4v0WwbOm', '7324076'), + (47229, 504, 2692, 'attending', '2024-07-07 02:22:42', '2025-12-17 19:46:30', '4v0WwbOm', '7324077'), + (47230, 504, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4v0WwbOm', '7324078'), + (47231, 504, 2695, 'attending', '2024-08-17 20:53:38', '2025-12-17 19:46:31', '4v0WwbOm', '7324080'), + (47232, 504, 2697, 'attending', '2024-08-31 00:56:27', '2025-12-17 19:46:32', '4v0WwbOm', '7324082'), + (47233, 504, 2698, 'attending', '2024-09-05 23:38:18', '2025-12-17 19:46:24', '4v0WwbOm', '7324083'), + (47234, 504, 2706, 'attending', '2024-06-16 01:46:45', '2025-12-17 19:46:28', '4v0WwbOm', '7324947'), + (47235, 504, 2707, 'attending', '2024-06-16 01:45:57', '2025-12-17 19:46:28', '4v0WwbOm', '7324952'), + (47236, 504, 2711, 'not_attending', '2024-07-17 19:54:21', '2025-12-17 19:46:30', '4v0WwbOm', '7326524'), + (47237, 504, 2719, 'attending', '2024-06-18 18:13:12', '2025-12-17 19:46:29', '4v0WwbOm', '7331305'), + (47238, 504, 2720, 'attending', '2024-06-18 20:49:55', '2025-12-17 19:46:28', '4v0WwbOm', '7331436'), + (47239, 504, 2721, 'attending', '2024-06-18 22:40:56', '2025-12-17 19:46:29', '4v0WwbOm', '7331456'), + (47240, 504, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '4v0WwbOm', '7331457'), + (47241, 504, 2724, 'attending', '2024-06-26 17:29:11', '2025-12-17 19:46:29', '4v0WwbOm', '7332562'), + (47242, 504, 2729, 'attending', '2024-06-21 21:28:22', '2025-12-17 19:46:29', '4v0WwbOm', '7335092'), + (47243, 504, 2734, 'attending', '2024-06-30 01:54:53', '2025-12-17 19:46:29', '4v0WwbOm', '7339440'), + (47244, 504, 2741, 'attending', '2024-06-30 23:33:56', '2025-12-17 19:46:30', '4v0WwbOm', '7344592'), + (47245, 504, 2747, 'not_attending', '2024-07-17 19:54:02', '2025-12-17 19:46:30', '4v0WwbOm', '7353587'), + (47246, 504, 2751, 'attending', '2024-07-08 12:05:05', '2025-12-17 19:46:29', '4v0WwbOm', '7355530'), + (47247, 504, 2752, 'attending', '2024-07-08 12:05:16', '2025-12-17 19:46:29', '4v0WwbOm', '7355531'), + (47248, 504, 2754, 'attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4v0WwbOm', '7356752'), + (47249, 504, 2764, 'maybe', '2024-07-17 01:31:10', '2025-12-17 19:46:30', '4v0WwbOm', '7363595'), + (47250, 504, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4v0WwbOm', '7363643'), + (47251, 504, 2773, 'attending', '2024-07-27 21:26:16', '2025-12-17 19:46:31', '4v0WwbOm', '7368605'), + (47252, 504, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4v0WwbOm', '7368606'), + (47253, 504, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4v0WwbOm', '7397462'), + (47254, 504, 2821, 'attending', '2024-10-12 01:36:44', '2025-12-17 19:46:26', '4v0WwbOm', '7424275'), + (47255, 504, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4v0WwbOm', '7424276'), + (47256, 504, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4v0WwbOm', '7432751'), + (47257, 504, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4v0WwbOm', '7432752'), + (47258, 504, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4v0WwbOm', '7432753'), + (47259, 504, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4v0WwbOm', '7432754'), + (47260, 504, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4v0WwbOm', '7432755'), + (47261, 504, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4v0WwbOm', '7432756'), + (47262, 504, 2830, 'maybe', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4v0WwbOm', '7432758'), + (47263, 504, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4v0WwbOm', '7432759'), + (47264, 504, 2832, 'attending', '2024-09-09 20:21:45', '2025-12-17 19:46:24', '4v0WwbOm', '7433324'), + (47265, 504, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '4v0WwbOm', '7433834'), + (47266, 504, 2850, 'maybe', '2024-09-30 17:48:41', '2025-12-17 19:46:25', '4v0WwbOm', '7457153'), + (47267, 504, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4v0WwbOm', '7470197'), + (47268, 504, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4v0WwbOm', '7685613'), + (47269, 504, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4v0WwbOm', '7688194'), + (47270, 504, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4v0WwbOm', '7688196'), + (47271, 504, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4v0WwbOm', '7688289'), + (47272, 504, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4v0WwbOm', '7692763'), + (47273, 504, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4v0WwbOm', '7697552'), + (47274, 504, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4v0WwbOm', '7699878'), + (47275, 504, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4v0WwbOm', '7704043'), + (47276, 504, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4v0WwbOm', '7712467'), + (47277, 504, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4v0WwbOm', '7713585'), + (47278, 504, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4v0WwbOm', '7713586'), + (47279, 504, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4v0WwbOm', '7738518'), + (47280, 504, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4v0WwbOm', '7750636'), + (47281, 504, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4v0WwbOm', '7796540'), + (47282, 504, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4v0WwbOm', '7796541'), + (47283, 504, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4v0WwbOm', '7796542'), + (47284, 504, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4v0WwbOm', '7825913'), + (47285, 504, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4v0WwbOm', '7826209'), + (47286, 504, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4v0WwbOm', '7834742'), + (47287, 504, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4v0WwbOm', '7842108'), + (47288, 504, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4v0WwbOm', '7842902'), + (47289, 504, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4v0WwbOm', '7842903'), + (47290, 504, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4v0WwbOm', '7842904'), + (47291, 504, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4v0WwbOm', '7842905'), + (47292, 504, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4v0WwbOm', '7855719'), + (47293, 504, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4v0WwbOm', '7860683'), + (47294, 504, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4v0WwbOm', '7860684'), + (47295, 504, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4v0WwbOm', '7866095'), + (47296, 504, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4v0WwbOm', '7869170'), + (47297, 504, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4v0WwbOm', '7869188'), + (47298, 504, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4v0WwbOm', '7869201'), + (47299, 504, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4v0WwbOm', '7877465'), + (47300, 504, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4v0WwbOm', '7878570'), + (47301, 504, 3051, 'attending', '2025-03-18 23:16:55', '2025-12-17 19:46:19', '4v0WwbOm', '7884023'), + (47302, 504, 3052, 'attending', '2025-03-18 23:16:56', '2025-12-17 19:46:19', '4v0WwbOm', '7884024'), + (47303, 504, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4v0WwbOm', '7888250'), + (47304, 504, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4v0WwbOm', '7904777'), + (47305, 504, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4v0WwbOm', '8349164'), + (47306, 504, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4v0WwbOm', '8349545'), + (47307, 504, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4v0WwbOm', '8353584'), + (47308, 504, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4v0WwbOm', '8368028'), + (47309, 504, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4v0WwbOm', '8368029'), + (47310, 504, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4v0WwbOm', '8388462'), + (47311, 504, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4v0WwbOm', '8400273'), + (47312, 504, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4v0WwbOm', '8400274'), + (47313, 504, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4v0WwbOm', '8400275'), + (47314, 504, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4v0WwbOm', '8400276'), + (47315, 504, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4v0WwbOm', '8404977'), + (47316, 504, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4v0WwbOm', '8430783'), + (47317, 504, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4v0WwbOm', '8430784'), + (47318, 504, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4v0WwbOm', '8430799'), + (47319, 504, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4v0WwbOm', '8430800'), + (47320, 504, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4v0WwbOm', '8430801'), + (47321, 504, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4v0WwbOm', '8438709'), + (47322, 504, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4v0WwbOm', '8457738'), + (47323, 504, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4v0WwbOm', '8459566'), + (47324, 504, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4v0WwbOm', '8459567'), + (47325, 504, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4v0WwbOm', '8461032'), + (47326, 504, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4v0WwbOm', '8477877'), + (47327, 504, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4v0WwbOm', '8485688'), + (47328, 505, 639, 'attending', '2021-03-22 00:34:39', '2025-12-17 19:47:51', 'O4Za9geA', '3536656'), + (47329, 505, 641, 'not_attending', '2021-03-31 03:35:31', '2025-12-17 19:47:44', 'O4Za9geA', '3539916'), + (47330, 505, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'O4Za9geA', '3539918'), + (47331, 505, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'O4Za9geA', '3539919'), + (47332, 505, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'O4Za9geA', '3539920'), + (47333, 505, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'O4Za9geA', '3539927'), + (47334, 505, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'O4Za9geA', '3582734'), + (47335, 505, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'O4Za9geA', '3583262'), + (47336, 505, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'O4Za9geA', '3619523'), + (47337, 505, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'O4Za9geA', '3661369'), + (47338, 505, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'O4Za9geA', '3674262'), + (47339, 505, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'O4Za9geA', '3677402'), + (47340, 505, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'O4Za9geA', '3730212'), + (47341, 505, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4Za9geA', '6045684'), + (47342, 506, 401, 'attending', '2021-05-13 15:36:33', '2025-12-17 19:47:46', 'GmjJa35m', '3236456'), + (47343, 506, 646, 'attending', '2021-05-14 14:57:17', '2025-12-17 19:47:46', 'GmjJa35m', '3539921'), + (47344, 506, 647, 'attending', '2021-05-19 15:18:12', '2025-12-17 19:47:46', 'GmjJa35m', '3539922'), + (47345, 506, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'GmjJa35m', '3539923'), + (47346, 506, 761, 'attending', '2021-05-13 15:14:32', '2025-12-17 19:47:46', 'GmjJa35m', '3716041'), + (47347, 506, 802, 'not_attending', '2021-05-13 15:36:28', '2025-12-17 19:47:46', 'GmjJa35m', '3803310'), + (47348, 506, 813, 'not_attending', '2021-05-15 22:42:42', '2025-12-17 19:47:46', 'GmjJa35m', '3810231'), + (47349, 506, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjJa35m', '3974109'), + (47350, 506, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjJa35m', '3975311'), + (47351, 506, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjJa35m', '3975312'), + (47352, 506, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjJa35m', '3994992'), + (47353, 506, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjJa35m', '4014338'), + (47354, 506, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GmjJa35m', '4021848'), + (47355, 506, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjJa35m', '4136744'), + (47356, 506, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GmjJa35m', '4136937'), + (47357, 506, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GmjJa35m', '4136938'), + (47358, 506, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjJa35m', '4136947'), + (47359, 506, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjJa35m', '4239259'), + (47360, 506, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GmjJa35m', '4250163'), + (47361, 506, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjJa35m', '6045684'), + (47362, 507, 1153, 'attending', '2022-01-19 21:48:32', '2025-12-17 19:47:32', 'm6YVxaRd', '4708707'), + (47363, 507, 1154, 'maybe', '2022-01-26 20:36:37', '2025-12-17 19:47:32', 'm6YVxaRd', '4708708'), + (47364, 507, 1175, 'attending', '2022-01-22 19:47:33', '2025-12-17 19:47:32', 'm6YVxaRd', '4736497'), + (47365, 507, 1176, 'attending', '2022-01-31 01:27:39', '2025-12-17 19:47:32', 'm6YVxaRd', '4736498'), + (47366, 507, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm6YVxaRd', '4736499'), + (47367, 507, 1178, 'attending', '2022-01-29 17:12:54', '2025-12-17 19:47:32', 'm6YVxaRd', '4736500'), + (47368, 507, 1179, 'attending', '2022-02-20 00:42:12', '2025-12-17 19:47:32', 'm6YVxaRd', '4736501'), + (47369, 507, 1180, 'attending', '2022-02-11 19:52:20', '2025-12-17 19:47:33', 'm6YVxaRd', '4736502'), + (47370, 507, 1181, 'attending', '2022-03-05 22:46:08', '2025-12-17 19:47:33', 'm6YVxaRd', '4736503'), + (47371, 507, 1182, 'maybe', '2022-03-12 23:56:51', '2025-12-17 19:47:33', 'm6YVxaRd', '4736504'), + (47372, 507, 1193, 'attending', '2022-01-21 21:50:43', '2025-12-17 19:47:32', 'm6YVxaRd', '4759563'), + (47373, 507, 1198, 'not_attending', '2022-01-24 23:34:38', '2025-12-17 19:47:32', 'm6YVxaRd', '4766801'), + (47374, 507, 1201, 'attending', '2022-01-18 01:02:38', '2025-12-17 19:47:32', 'm6YVxaRd', '4766841'), + (47375, 507, 1210, 'maybe', '2022-01-29 02:42:53', '2025-12-17 19:47:32', 'm6YVxaRd', '4776927'), + (47376, 507, 1216, 'attending', '2022-01-29 17:17:54', '2025-12-17 19:47:32', 'm6YVxaRd', '4781137'), + (47377, 507, 1217, 'not_attending', '2022-01-30 20:08:24', '2025-12-17 19:47:32', 'm6YVxaRd', '4781139'), + (47378, 507, 1218, 'maybe', '2022-01-31 01:25:06', '2025-12-17 19:47:32', 'm6YVxaRd', '4788464'), + (47379, 507, 1219, 'maybe', '2022-02-03 00:47:29', '2025-12-17 19:47:32', 'm6YVxaRd', '4788466'), + (47380, 507, 1220, 'attending', '2022-01-29 00:28:27', '2025-12-17 19:47:32', 'm6YVxaRd', '4790257'), + (47381, 507, 1223, 'attending', '2022-01-31 01:26:26', '2025-12-17 19:47:32', 'm6YVxaRd', '5015635'), + (47382, 507, 1224, 'maybe', '2022-01-31 01:27:11', '2025-12-17 19:47:32', 'm6YVxaRd', '5016682'), + (47383, 507, 1227, 'maybe', '2022-02-11 19:51:47', '2025-12-17 19:47:32', 'm6YVxaRd', '5027602'), + (47384, 507, 1228, 'maybe', '2022-02-11 19:53:03', '2025-12-17 19:47:32', 'm6YVxaRd', '5028238'), + (47385, 507, 1229, 'maybe', '2022-02-11 19:52:09', '2025-12-17 19:47:32', 'm6YVxaRd', '5034963'), + (47386, 507, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm6YVxaRd', '5038850'), + (47387, 507, 1233, 'maybe', '2022-02-10 22:24:11', '2025-12-17 19:47:32', 'm6YVxaRd', '5038910'), + (47388, 507, 1234, 'attending', '2022-02-11 19:51:34', '2025-12-17 19:47:32', 'm6YVxaRd', '5042197'), + (47389, 507, 1236, 'maybe', '2022-02-14 20:14:13', '2025-12-17 19:47:32', 'm6YVxaRd', '5045826'), + (47390, 507, 1247, 'maybe', '2022-02-25 21:48:12', '2025-12-17 19:47:33', 'm6YVxaRd', '5065027'), + (47391, 507, 1250, 'attending', '2022-03-04 00:14:01', '2025-12-17 19:47:33', 'm6YVxaRd', '5069735'), + (47392, 507, 1252, 'maybe', '2022-03-05 00:27:35', '2025-12-17 19:47:33', 'm6YVxaRd', '5129121'), + (47393, 507, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6YVxaRd', '5132533'), + (47394, 507, 1271, 'maybe', '2022-03-17 20:57:48', '2025-12-17 19:47:25', 'm6YVxaRd', '5181648'), + (47395, 507, 1272, 'maybe', '2022-03-17 20:57:31', '2025-12-17 19:47:25', 'm6YVxaRd', '5186582'), + (47396, 507, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6YVxaRd', '5186583'), + (47397, 507, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6YVxaRd', '5186585'), + (47398, 507, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6YVxaRd', '5190437'), + (47399, 507, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'm6YVxaRd', '5195095'), + (47400, 507, 1291, 'maybe', '2022-03-25 18:22:12', '2025-12-17 19:47:25', 'm6YVxaRd', '5200458'), + (47401, 507, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6YVxaRd', '5215989'), + (47402, 507, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'm6YVxaRd', '5223686'), + (47403, 507, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'm6YVxaRd', '5227432'), + (47404, 507, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'm6YVxaRd', '5247467'), + (47405, 507, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'm6YVxaRd', '5260800'), + (47406, 507, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6YVxaRd', '5269930'), + (47407, 507, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6YVxaRd', '5271448'), + (47408, 507, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'm6YVxaRd', '5271449'), + (47409, 507, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'm6YVxaRd', '5276469'), + (47410, 507, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6YVxaRd', '5278159'), + (47411, 507, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'm6YVxaRd', '5363695'), + (47412, 507, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'm6YVxaRd', '5365960'), + (47413, 507, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'm6YVxaRd', '5368973'), + (47414, 507, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'm6YVxaRd', '5378247'), + (47415, 507, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'm6YVxaRd', '5389605'), + (47416, 507, 1442, 'attending', '2022-06-18 16:38:43', '2025-12-17 19:47:17', 'm6YVxaRd', '5397265'), + (47417, 507, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'm6YVxaRd', '5403967'), + (47418, 507, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'm6YVxaRd', '5404786'), + (47419, 507, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'm6YVxaRd', '5405203'), + (47420, 507, 1470, 'maybe', '2022-06-18 16:44:46', '2025-12-17 19:47:17', 'm6YVxaRd', '5407053'), + (47421, 507, 1478, 'maybe', '2022-06-18 16:36:45', '2025-12-17 19:47:19', 'm6YVxaRd', '5408794'), + (47422, 507, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'm6YVxaRd', '5411699'), + (47423, 507, 1482, 'attending', '2022-06-25 19:19:48', '2025-12-17 19:47:19', 'm6YVxaRd', '5412550'), + (47424, 507, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6YVxaRd', '5415046'), + (47425, 507, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6YVxaRd', '5422086'), + (47426, 507, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6YVxaRd', '5422406'), + (47427, 507, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6YVxaRd', '5424565'), + (47428, 507, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6YVxaRd', '5426882'), + (47429, 507, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'm6YVxaRd', '5427083'), + (47430, 507, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'm6YVxaRd', '5441125'), + (47431, 507, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6YVxaRd', '5441126'), + (47432, 507, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'm6YVxaRd', '5441128'), + (47433, 507, 1517, 'attending', '2022-08-26 20:06:17', '2025-12-17 19:47:23', 'm6YVxaRd', '5441130'), + (47434, 507, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6YVxaRd', '5441131'), + (47435, 507, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'm6YVxaRd', '5441132'), + (47436, 507, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6YVxaRd', '5446643'), + (47437, 507, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6YVxaRd', '5453325'), + (47438, 507, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6YVxaRd', '5454516'), + (47439, 507, 1544, 'attending', '2022-09-17 16:46:21', '2025-12-17 19:47:11', 'm6YVxaRd', '5454517'), + (47440, 507, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6YVxaRd', '5454605'), + (47441, 507, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6YVxaRd', '5455037'), + (47442, 507, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6YVxaRd', '5461278'), + (47443, 507, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6YVxaRd', '5469480'), + (47444, 507, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6YVxaRd', '5471073'), + (47445, 507, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'm6YVxaRd', '5474663'), + (47446, 507, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6YVxaRd', '5482022'), + (47447, 507, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6YVxaRd', '5482793'), + (47448, 507, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6YVxaRd', '5488912'), + (47449, 507, 1584, 'maybe', '2022-08-26 20:06:04', '2025-12-17 19:47:23', 'm6YVxaRd', '5492004'), + (47450, 507, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6YVxaRd', '5492192'), + (47451, 507, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6YVxaRd', '5493139'), + (47452, 507, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6YVxaRd', '5493200'), + (47453, 507, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6YVxaRd', '5502188'), + (47454, 507, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6YVxaRd', '5505059'), + (47455, 507, 1612, 'maybe', '2022-10-03 22:38:05', '2025-12-17 19:47:12', 'm6YVxaRd', '5507653'), + (47456, 507, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6YVxaRd', '5509055'), + (47457, 507, 1619, 'maybe', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6YVxaRd', '5512862'), + (47458, 507, 1623, 'not_attending', '2022-08-26 20:07:23', '2025-12-17 19:47:23', 'm6YVxaRd', '5513678'), + (47459, 507, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6YVxaRd', '5513985'), + (47460, 507, 1626, 'maybe', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'm6YVxaRd', '5519981'), + (47461, 507, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6YVxaRd', '5522550'), + (47462, 507, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6YVxaRd', '5534683'), + (47463, 507, 1632, 'maybe', '2022-08-31 01:09:23', '2025-12-17 19:47:23', 'm6YVxaRd', '5534954'), + (47464, 507, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6YVxaRd', '5537735'), + (47465, 507, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6YVxaRd', '5540859'), + (47466, 507, 1644, 'maybe', '2022-09-19 22:23:56', '2025-12-17 19:47:11', 'm6YVxaRd', '5545857'), + (47467, 507, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6YVxaRd', '5546619'), + (47468, 507, 1648, 'maybe', '2022-09-09 15:47:10', '2025-12-17 19:47:24', 'm6YVxaRd', '5548974'), + (47469, 507, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6YVxaRd', '5555245'), + (47470, 507, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6YVxaRd', '5557747'), + (47471, 507, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6YVxaRd', '5560255'), + (47472, 507, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6YVxaRd', '5562906'), + (47473, 507, 1668, 'attending', '2022-10-01 22:23:45', '2025-12-17 19:47:12', 'm6YVxaRd', '5563222'), + (47474, 507, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6YVxaRd', '5600604'), + (47475, 507, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6YVxaRd', '5605544'), + (47476, 507, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', 'm6YVxaRd', '5606737'), + (47477, 507, 1713, 'maybe', '2022-10-19 15:40:22', '2025-12-17 19:47:13', 'm6YVxaRd', '5622108'), + (47478, 507, 1720, 'attending', '2022-10-12 18:01:16', '2025-12-17 19:47:12', 'm6YVxaRd', '5630959'), + (47479, 507, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6YVxaRd', '5630960'), + (47480, 507, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6YVxaRd', '5630961'), + (47481, 507, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6YVxaRd', '5630962'), + (47482, 507, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6YVxaRd', '5630966'), + (47483, 507, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6YVxaRd', '5630967'), + (47484, 507, 1726, 'maybe', '2022-11-20 16:08:14', '2025-12-17 19:47:16', 'm6YVxaRd', '5630968'), + (47485, 507, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6YVxaRd', '5635406'), + (47486, 507, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6YVxaRd', '5638765'), + (47487, 507, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6YVxaRd', '5640097'), + (47488, 507, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6YVxaRd', '5640843'), + (47489, 507, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6YVxaRd', '5641521'), + (47490, 507, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6YVxaRd', '5642818'), + (47491, 507, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6YVxaRd', '5652395'), + (47492, 507, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6YVxaRd', '5670445'), + (47493, 507, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6YVxaRd', '5671637'), + (47494, 507, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6YVxaRd', '5672329'), + (47495, 507, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6YVxaRd', '5674057'), + (47496, 507, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6YVxaRd', '5674060'), + (47497, 507, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6YVxaRd', '5677461'), + (47498, 507, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6YVxaRd', '5698046'), + (47499, 507, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6YVxaRd', '5699760'), + (47500, 507, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6YVxaRd', '5741601'), + (47501, 507, 1798, 'maybe', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6YVxaRd', '5763458'), + (47502, 507, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6YVxaRd', '5774172'), + (47503, 507, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'm6YVxaRd', '5818247'), + (47504, 507, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6YVxaRd', '5819471'), + (47505, 507, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6YVxaRd', '5827739'), + (47506, 507, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6YVxaRd', '5844306'), + (47507, 507, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6YVxaRd', '5850159'), + (47508, 507, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6YVxaRd', '5858999'), + (47509, 507, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6YVxaRd', '5871984'), + (47510, 507, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6YVxaRd', '5876354'), + (47511, 507, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm6YVxaRd', '5880939'), + (47512, 507, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm6YVxaRd', '5880940'), + (47513, 507, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm6YVxaRd', '5880942'), + (47514, 507, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm6YVxaRd', '5880943'), + (47515, 507, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6YVxaRd', '5887890'), + (47516, 507, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6YVxaRd', '5888598'), + (47517, 507, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6YVxaRd', '5893260'), + (47518, 507, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm6YVxaRd', '5899826'), + (47519, 507, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm6YVxaRd', '5900199'), + (47520, 507, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm6YVxaRd', '5900200'), + (47521, 507, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm6YVxaRd', '5900202'), + (47522, 507, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm6YVxaRd', '5900203'), + (47523, 507, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm6YVxaRd', '5901108'), + (47524, 507, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm6YVxaRd', '5901126'), + (47525, 507, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm6YVxaRd', '5909655'), + (47526, 507, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm6YVxaRd', '5910522'), + (47527, 507, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm6YVxaRd', '5910526'), + (47528, 507, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm6YVxaRd', '5910528'), + (47529, 507, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm6YVxaRd', '5916219'), + (47530, 507, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm6YVxaRd', '5936234'), + (47531, 507, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm6YVxaRd', '5958351'), + (47532, 507, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm6YVxaRd', '5959751'), + (47533, 507, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm6YVxaRd', '5959755'), + (47534, 507, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm6YVxaRd', '5960055'), + (47535, 507, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm6YVxaRd', '5961684'), + (47536, 507, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm6YVxaRd', '5962132'), + (47537, 507, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm6YVxaRd', '5962133'), + (47538, 507, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm6YVxaRd', '5962134'), + (47539, 507, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm6YVxaRd', '5962317'), + (47540, 507, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm6YVxaRd', '5962318'), + (47541, 507, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm6YVxaRd', '5965933'), + (47542, 507, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm6YVxaRd', '5967014'), + (47543, 507, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm6YVxaRd', '5972815'), + (47544, 507, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm6YVxaRd', '5974016'), + (47545, 507, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm6YVxaRd', '5981515'), + (47546, 507, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm6YVxaRd', '5993516'), + (47547, 507, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm6YVxaRd', '5998939'), + (47548, 507, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm6YVxaRd', '6028191'), + (47549, 507, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm6YVxaRd', '6040066'), + (47550, 507, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm6YVxaRd', '6042717'), + (47551, 507, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm6YVxaRd', '6044838'), + (47552, 507, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm6YVxaRd', '6044839'), + (47553, 507, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6YVxaRd', '6045684'), + (47554, 507, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm6YVxaRd', '6050104'), + (47555, 507, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm6YVxaRd', '6053195'), + (47556, 507, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm6YVxaRd', '6053198'), + (47557, 507, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm6YVxaRd', '6056085'), + (47558, 507, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm6YVxaRd', '6056916'), + (47559, 507, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm6YVxaRd', '6059290'), + (47560, 507, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm6YVxaRd', '6060328'), + (47561, 507, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm6YVxaRd', '6061037'), + (47562, 507, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm6YVxaRd', '6061039'), + (47563, 507, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm6YVxaRd', '6067245'), + (47564, 507, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm6YVxaRd', '6068094'), + (47565, 507, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm6YVxaRd', '6068252'), + (47566, 507, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm6YVxaRd', '6068253'), + (47567, 507, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm6YVxaRd', '6068254'), + (47568, 507, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm6YVxaRd', '6068280'), + (47569, 507, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm6YVxaRd', '6069093'), + (47570, 507, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'm6YVxaRd', '6072528'), + (47571, 507, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm6YVxaRd', '6079840'), + (47572, 507, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm6YVxaRd', '6083398'), + (47573, 507, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm6YVxaRd', '6093504'), + (47574, 507, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm6YVxaRd', '6097414'), + (47575, 507, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm6YVxaRd', '6097442'), + (47576, 507, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm6YVxaRd', '6097684'), + (47577, 507, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm6YVxaRd', '6098762'), + (47578, 507, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'm6YVxaRd', '6101361'), + (47579, 507, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm6YVxaRd', '6101362'), + (47580, 507, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'm6YVxaRd', '6103752'), + (47581, 507, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm6YVxaRd', '6107314'), + (47582, 507, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'm6YVxaRd', '6120034'), + (47583, 507, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'm6YVxaRd', '6136733'), + (47584, 507, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'm6YVxaRd', '6137989'), + (47585, 507, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'm6YVxaRd', '6150864'), + (47586, 507, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'm6YVxaRd', '6155491'), + (47587, 507, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'm6YVxaRd', '6164417'), + (47588, 507, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'm6YVxaRd', '6166388'), + (47589, 507, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'm6YVxaRd', '6176439'), + (47590, 507, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'm6YVxaRd', '6182410'), + (47591, 507, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'm6YVxaRd', '6185812'), + (47592, 507, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'm6YVxaRd', '6187651'), + (47593, 507, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'm6YVxaRd', '6187963'), + (47594, 507, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'm6YVxaRd', '6187964'), + (47595, 507, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'm6YVxaRd', '6187966'), + (47596, 507, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'm6YVxaRd', '6187967'), + (47597, 507, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'm6YVxaRd', '6187969'), + (47598, 507, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'm6YVxaRd', '6334878'), + (47599, 507, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'm6YVxaRd', '6337236'), + (47600, 507, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'm6YVxaRd', '6337970'), + (47601, 507, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'm6YVxaRd', '6338308'), + (47602, 507, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'm6YVxaRd', '6340845'), + (47603, 507, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'm6YVxaRd', '6341710'), + (47604, 507, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'm6YVxaRd', '6342044'), + (47605, 507, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'm6YVxaRd', '6342298'), + (47606, 507, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'm6YVxaRd', '6343294'), + (47607, 507, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'm6YVxaRd', '6347034'), + (47608, 507, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'm6YVxaRd', '6347056'), + (47609, 507, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'm6YVxaRd', '6353830'), + (47610, 507, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'm6YVxaRd', '6353831'), + (47611, 507, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'm6YVxaRd', '6357867'), + (47612, 507, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'm6YVxaRd', '6358652'), + (47613, 507, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'm6YVxaRd', '6361709'), + (47614, 507, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'm6YVxaRd', '6361710'), + (47615, 507, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'm6YVxaRd', '6361711'), + (47616, 507, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'm6YVxaRd', '6361712'), + (47617, 507, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm6YVxaRd', '6361713'), + (47618, 507, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'm6YVxaRd', '6382573'), + (47619, 507, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'm6YVxaRd', '6388604'), + (47620, 507, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm6YVxaRd', '6394629'), + (47621, 507, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm6YVxaRd', '6394631'), + (47622, 507, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'm6YVxaRd', '6440863'), + (47623, 507, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'm6YVxaRd', '6445440'), + (47624, 507, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'm6YVxaRd', '6453951'), + (47625, 507, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'm6YVxaRd', '6461696'), + (47626, 507, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'm6YVxaRd', '6462129'), + (47627, 507, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'm6YVxaRd', '6463218'), + (47628, 507, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'm6YVxaRd', '6472181'), + (47629, 507, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'm6YVxaRd', '6482693'), + (47630, 507, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'm6YVxaRd', '6484200'), + (47631, 507, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'm6YVxaRd', '6484680'), + (47632, 507, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'm6YVxaRd', '6507741'), + (47633, 507, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'm6YVxaRd', '6514659'), + (47634, 507, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'm6YVxaRd', '6514660'), + (47635, 507, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'm6YVxaRd', '6519103'), + (47636, 507, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'm6YVxaRd', '6535681'), + (47637, 507, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'm6YVxaRd', '6584747'), + (47638, 507, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'm6YVxaRd', '6587097'), + (47639, 507, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'm6YVxaRd', '6609022'), + (47640, 507, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'm6YVxaRd', '6632757'), + (47641, 507, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'm6YVxaRd', '6644187'), + (47642, 507, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'm6YVxaRd', '6648951'), + (47643, 507, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'm6YVxaRd', '6648952'), + (47644, 507, 2392, 'maybe', '2024-01-11 23:26:28', '2025-12-17 19:46:37', 'm6YVxaRd', '6654412'), + (47645, 507, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'm6YVxaRd', '6655401'), + (47646, 507, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'm6YVxaRd', '6661585'), + (47647, 507, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'm6YVxaRd', '6661588'), + (47648, 507, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'm6YVxaRd', '6661589'), + (47649, 507, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'm6YVxaRd', '6699906'), + (47650, 507, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'm6YVxaRd', '6699913'), + (47651, 507, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'm6YVxaRd', '6701109'), + (47652, 507, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'm6YVxaRd', '6705219'), + (47653, 507, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'm6YVxaRd', '6710153'), + (47654, 507, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'm6YVxaRd', '6711552'), + (47655, 507, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'm6YVxaRd', '6711553'), + (47656, 507, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'm6YVxaRd', '6722688'), + (47657, 507, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'm6YVxaRd', '6730620'), + (47658, 507, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'm6YVxaRd', '6730642'), + (47659, 507, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'm6YVxaRd', '6740364'), + (47660, 507, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'm6YVxaRd', '6743829'), + (47661, 507, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'm6YVxaRd', '7030380'), + (47662, 507, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'm6YVxaRd', '7033677'), + (47663, 507, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'm6YVxaRd', '7035415'), + (47664, 507, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'm6YVxaRd', '7044715'), + (47665, 507, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'm6YVxaRd', '7050318'), + (47666, 507, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'm6YVxaRd', '7050319'), + (47667, 507, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'm6YVxaRd', '7050322'), + (47668, 507, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'm6YVxaRd', '7057804'), + (47669, 507, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'm6YVxaRd', '7059866'), + (47670, 507, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'm6YVxaRd', '7072824'), + (47671, 507, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'm6YVxaRd', '7074348'), + (47672, 507, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'm6YVxaRd', '7074364'), + (47673, 507, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'm6YVxaRd', '7089267'), + (47674, 507, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'm6YVxaRd', '7098747'), + (47675, 507, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'm6YVxaRd', '7113468'), + (47676, 507, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'm6YVxaRd', '7114856'), + (47677, 507, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'm6YVxaRd', '7114951'), + (47678, 507, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'm6YVxaRd', '7114955'), + (47679, 507, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'm6YVxaRd', '7114956'), + (47680, 507, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'm6YVxaRd', '7114957'), + (47681, 507, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'm6YVxaRd', '7153615'), + (47682, 507, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'm6YVxaRd', '7159484'), + (47683, 507, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'm6YVxaRd', '7178446'), + (47684, 507, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'm6YVxaRd', '7220467'), + (47685, 507, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'm6YVxaRd', '7240354'), + (47686, 507, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'm6YVxaRd', '7251633'), + (47687, 507, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'm6YVxaRd', '7324073'), + (47688, 507, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'm6YVxaRd', '7324074'), + (47689, 507, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'm6YVxaRd', '7324075'), + (47690, 507, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'm6YVxaRd', '7324078'), + (47691, 507, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'm6YVxaRd', '7324082'), + (47692, 507, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'm6YVxaRd', '7331457'), + (47693, 507, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'm6YVxaRd', '7363643'), + (47694, 507, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'm6YVxaRd', '7368606'), + (47695, 507, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'm6YVxaRd', '7397462'), + (47696, 507, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'm6YVxaRd', '7424275'), + (47697, 507, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'm6YVxaRd', '7432751'), + (47698, 507, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'm6YVxaRd', '7432752'), + (47699, 507, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'm6YVxaRd', '7432753'), + (47700, 507, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'm6YVxaRd', '7432754'), + (47701, 507, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'm6YVxaRd', '7432755'), + (47702, 507, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'm6YVxaRd', '7432756'), + (47703, 507, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'm6YVxaRd', '7432758'), + (47704, 507, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'm6YVxaRd', '7432759'), + (47705, 507, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'm6YVxaRd', '7433834'), + (47706, 507, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'm6YVxaRd', '7470197'), + (47707, 507, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'm6YVxaRd', '7685613'), + (47708, 507, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6YVxaRd', '7688194'), + (47709, 507, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6YVxaRd', '7688196'), + (47710, 507, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6YVxaRd', '7688289'), + (47711, 507, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'm6YVxaRd', '7692763'), + (47712, 507, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'm6YVxaRd', '7697552'), + (47713, 507, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'm6YVxaRd', '7699878'), + (47714, 507, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'm6YVxaRd', '7704043'), + (47715, 507, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6YVxaRd', '7712467'), + (47716, 507, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6YVxaRd', '7713585'), + (47717, 507, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6YVxaRd', '7713586'), + (47718, 507, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'm6YVxaRd', '7738518'), + (47719, 507, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6YVxaRd', '7750636'), + (47720, 507, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6YVxaRd', '7796540'), + (47721, 507, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6YVxaRd', '7796541'), + (47722, 507, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6YVxaRd', '7796542'), + (47723, 507, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6YVxaRd', '7825913'), + (47724, 507, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6YVxaRd', '7826209'), + (47725, 507, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6YVxaRd', '7834742'), + (47726, 507, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6YVxaRd', '7842108'), + (47727, 507, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6YVxaRd', '7842902'), + (47728, 507, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6YVxaRd', '7842903'), + (47729, 507, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6YVxaRd', '7842904'), + (47730, 507, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6YVxaRd', '7842905'), + (47731, 507, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6YVxaRd', '7855719'), + (47732, 507, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6YVxaRd', '7860683'), + (47733, 507, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6YVxaRd', '7860684'), + (47734, 507, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6YVxaRd', '7866095'), + (47735, 507, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6YVxaRd', '7869170'), + (47736, 507, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'm6YVxaRd', '7869188'), + (47737, 507, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6YVxaRd', '7869201'), + (47738, 507, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'm6YVxaRd', '7877465'), + (47739, 507, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'm6YVxaRd', '7888250'), + (47740, 507, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'm6YVxaRd', '7904777'), + (47741, 507, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'm6YVxaRd', '8349164'), + (47742, 507, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'm6YVxaRd', '8349545'), + (47743, 507, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'm6YVxaRd', '8368028'), + (47744, 507, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'm6YVxaRd', '8368029'), + (47745, 507, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'm6YVxaRd', '8388462'), + (47746, 507, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'm6YVxaRd', '8400273'), + (47747, 507, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'm6YVxaRd', '8400275'), + (47748, 507, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'm6YVxaRd', '8400276'), + (47749, 507, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'm6YVxaRd', '8404977'), + (47750, 507, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'm6YVxaRd', '8430783'), + (47751, 507, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'm6YVxaRd', '8430784'), + (47752, 507, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'm6YVxaRd', '8430799'), + (47753, 507, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'm6YVxaRd', '8430800'), + (47754, 507, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'm6YVxaRd', '8430801'), + (47755, 507, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'm6YVxaRd', '8438709'), + (47756, 507, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'm6YVxaRd', '8457738'), + (47757, 507, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'm6YVxaRd', '8459566'), + (47758, 507, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'm6YVxaRd', '8459567'), + (47759, 507, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'm6YVxaRd', '8461032'), + (47760, 507, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'm6YVxaRd', '8477877'), + (47761, 507, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'm6YVxaRd', '8485688'), + (47762, 507, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'm6YVxaRd', '8490587'), + (47763, 507, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'm6YVxaRd', '8493552'), + (47764, 507, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'm6YVxaRd', '8493553'), + (47765, 507, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'm6YVxaRd', '8493554'), + (47766, 507, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'm6YVxaRd', '8493555'), + (47767, 507, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'm6YVxaRd', '8493556'), + (47768, 507, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'm6YVxaRd', '8493557'), + (47769, 507, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'm6YVxaRd', '8493558'), + (47770, 507, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'm6YVxaRd', '8493559'), + (47771, 507, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'm6YVxaRd', '8493560'), + (47772, 507, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'm6YVxaRd', '8493561'), + (47773, 507, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'm6YVxaRd', '8493572'), + (47774, 507, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'm6YVxaRd', '8540725'), + (47775, 507, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'm6YVxaRd', '8555421'), + (47776, 508, 4, 'attending', '2020-03-21 00:58:58', '2025-12-17 19:47:58', 'bdz9ePb4', '2958046'), + (47777, 508, 5, 'attending', '2020-03-21 00:58:59', '2025-12-17 19:47:58', 'bdz9ePb4', '2958047'), + (47778, 508, 6, 'not_attending', '2020-03-21 00:59:04', '2025-12-17 19:47:58', 'bdz9ePb4', '2958048'), + (47779, 508, 7, 'maybe', '2020-03-21 00:59:06', '2025-12-17 19:47:58', 'bdz9ePb4', '2958049'), + (47780, 508, 9, 'not_attending', '2020-03-28 02:15:09', '2025-12-17 19:47:56', 'bdz9ePb4', '2958052'), + (47781, 508, 10, 'not_attending', '2020-03-28 02:15:10', '2025-12-17 19:47:56', 'bdz9ePb4', '2958053'), + (47782, 508, 13, 'not_attending', '2020-04-05 21:42:25', '2025-12-17 19:47:57', 'bdz9ePb4', '2958057'), + (47783, 508, 15, 'not_attending', '2020-04-15 22:57:49', '2025-12-17 19:47:57', 'bdz9ePb4', '2958059'), + (47784, 508, 20, 'not_attending', '2020-05-07 00:05:54', '2025-12-17 19:47:57', 'bdz9ePb4', '2958064'), + (47785, 508, 21, 'not_attending', '2020-04-26 16:18:03', '2025-12-17 19:47:57', 'bdz9ePb4', '2958065'), + (47786, 508, 26, 'not_attending', '2020-04-05 21:42:17', '2025-12-17 19:47:57', 'bdz9ePb4', '2958082'), + (47787, 508, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'bdz9ePb4', '2961309'), + (47788, 508, 30, 'maybe', '2020-04-05 21:42:21', '2025-12-17 19:47:57', 'bdz9ePb4', '2961895'), + (47789, 508, 31, 'attending', '2020-03-23 22:35:15', '2025-12-17 19:47:58', 'bdz9ePb4', '2963118'), + (47790, 508, 33, 'maybe', '2020-04-05 21:42:23', '2025-12-17 19:47:57', 'bdz9ePb4', '2963932'), + (47791, 508, 36, 'attending', '2020-03-29 01:57:09', '2025-12-17 19:47:57', 'bdz9ePb4', '2969208'), + (47792, 508, 41, 'not_attending', '2020-04-16 22:44:12', '2025-12-17 19:47:57', 'bdz9ePb4', '2971546'), + (47793, 508, 42, 'not_attending', '2020-04-05 21:42:15', '2025-12-17 19:47:57', 'bdz9ePb4', '2973471'), + (47794, 508, 44, 'not_attending', '2020-04-11 22:25:09', '2025-12-17 19:47:57', 'bdz9ePb4', '2974534'), + (47795, 508, 46, 'attending', '2020-04-09 02:01:39', '2025-12-17 19:47:57', 'bdz9ePb4', '2974955'), + (47796, 508, 48, 'not_attending', '2020-05-13 01:07:22', '2025-12-17 19:47:57', 'bdz9ePb4', '2975273'), + (47797, 508, 55, 'not_attending', '2020-04-09 02:01:43', '2025-12-17 19:47:57', 'bdz9ePb4', '2975384'), + (47798, 508, 56, 'not_attending', '2020-04-13 04:29:35', '2025-12-17 19:47:57', 'bdz9ePb4', '2975385'), + (47799, 508, 57, 'not_attending', '2020-04-13 04:29:32', '2025-12-17 19:47:57', 'bdz9ePb4', '2976575'), + (47800, 508, 62, 'maybe', '2020-05-07 00:05:40', '2025-12-17 19:47:57', 'bdz9ePb4', '2977131'), + (47801, 508, 63, 'maybe', '2020-05-13 01:07:21', '2025-12-17 19:47:57', 'bdz9ePb4', '2977132'), + (47802, 508, 70, 'not_attending', '2020-04-13 04:29:24', '2025-12-17 19:47:57', 'bdz9ePb4', '2977343'), + (47803, 508, 71, 'attending', '2020-04-09 21:38:12', '2025-12-17 19:47:57', 'bdz9ePb4', '2977526'), + (47804, 508, 72, 'maybe', '2020-05-07 00:05:13', '2025-12-17 19:47:57', 'bdz9ePb4', '2977812'), + (47805, 508, 73, 'not_attending', '2020-04-18 21:57:17', '2025-12-17 19:47:57', 'bdz9ePb4', '2977931'), + (47806, 508, 74, 'attending', '2020-04-13 04:29:12', '2025-12-17 19:47:57', 'bdz9ePb4', '2978244'), + (47807, 508, 75, 'not_attending', '2020-04-19 19:31:11', '2025-12-17 19:47:57', 'bdz9ePb4', '2978245'), + (47808, 508, 76, 'attending', '2020-04-29 15:20:19', '2025-12-17 19:47:57', 'bdz9ePb4', '2978246'), + (47809, 508, 77, 'attending', '2020-05-07 00:05:25', '2025-12-17 19:47:57', 'bdz9ePb4', '2978247'), + (47810, 508, 78, 'maybe', '2020-05-13 01:07:27', '2025-12-17 19:47:57', 'bdz9ePb4', '2978249'), + (47811, 508, 79, 'attending', '2020-05-30 22:01:16', '2025-12-17 19:47:57', 'bdz9ePb4', '2978250'), + (47812, 508, 80, 'maybe', '2020-06-05 14:17:34', '2025-12-17 19:47:58', 'bdz9ePb4', '2978251'), + (47813, 508, 82, 'attending', '2020-04-21 02:16:49', '2025-12-17 19:47:57', 'bdz9ePb4', '2978433'), + (47814, 508, 83, 'maybe', '2020-05-07 00:05:22', '2025-12-17 19:47:57', 'bdz9ePb4', '2978438'), + (47815, 508, 84, 'not_attending', '2020-04-14 23:32:20', '2025-12-17 19:47:57', 'bdz9ePb4', '2980871'), + (47816, 508, 86, 'not_attending', '2020-04-14 23:32:14', '2025-12-17 19:47:57', 'bdz9ePb4', '2981388'), + (47817, 508, 88, 'attending', '2020-04-14 23:32:10', '2025-12-17 19:47:57', 'bdz9ePb4', '2982603'), + (47818, 508, 89, 'attending', '2020-04-29 15:20:30', '2025-12-17 19:47:57', 'bdz9ePb4', '2982604'), + (47819, 508, 91, 'not_attending', '2020-04-26 16:18:29', '2025-12-17 19:47:57', 'bdz9ePb4', '2985130'), + (47820, 508, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'bdz9ePb4', '2986743'), + (47821, 508, 95, 'not_attending', '2020-04-26 16:19:22', '2025-12-17 19:47:57', 'bdz9ePb4', '2987452'), + (47822, 508, 98, 'maybe', '2020-05-07 00:05:53', '2025-12-17 19:47:57', 'bdz9ePb4', '2987455'), + (47823, 508, 99, 'not_attending', '2020-04-26 16:18:09', '2025-12-17 19:47:57', 'bdz9ePb4', '2988545'), + (47824, 508, 101, 'attending', '2020-04-22 00:48:47', '2025-12-17 19:47:57', 'bdz9ePb4', '2989975'), + (47825, 508, 102, 'not_attending', '2020-04-26 16:19:41', '2025-12-17 19:47:57', 'bdz9ePb4', '2990784'), + (47826, 508, 104, 'maybe', '2020-04-26 16:17:52', '2025-12-17 19:47:57', 'bdz9ePb4', '2991471'), + (47827, 508, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'bdz9ePb4', '2993501'), + (47828, 508, 107, 'not_attending', '2020-05-13 01:07:28', '2025-12-17 19:47:57', 'bdz9ePb4', '2993502'), + (47829, 508, 108, 'not_attending', '2020-05-13 01:07:19', '2025-12-17 19:47:57', 'bdz9ePb4', '2993504'), + (47830, 508, 109, 'not_attending', '2020-05-13 01:07:17', '2025-12-17 19:47:57', 'bdz9ePb4', '2994480'), + (47831, 508, 115, 'maybe', '2020-05-13 00:41:08', '2025-12-17 19:47:57', 'bdz9ePb4', '3001217'), + (47832, 508, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'bdz9ePb4', '3015486'), + (47833, 508, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'bdz9ePb4', '3023063'), + (47834, 508, 128, 'attending', '2020-05-19 22:17:43', '2025-12-17 19:47:57', 'bdz9ePb4', '3027185'), + (47835, 508, 130, 'attending', '2020-05-19 17:50:31', '2025-12-17 19:47:57', 'bdz9ePb4', '3028781'), + (47836, 508, 133, 'not_attending', '2020-07-03 21:55:34', '2025-12-17 19:47:58', 'bdz9ePb4', '3034321'), + (47837, 508, 136, 'not_attending', '2020-05-31 08:19:55', '2025-12-17 19:47:57', 'bdz9ePb4', '3035881'), + (47838, 508, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'bdz9ePb4', '3049983'), + (47839, 508, 146, 'not_attending', '2020-06-27 17:51:08', '2025-12-17 19:47:55', 'bdz9ePb4', '3058683'), + (47840, 508, 147, 'attending', '2020-08-18 00:43:15', '2025-12-17 19:47:56', 'bdz9ePb4', '3058684'), + (47841, 508, 149, 'maybe', '2020-07-17 15:54:19', '2025-12-17 19:47:55', 'bdz9ePb4', '3058686'), + (47842, 508, 150, 'maybe', '2020-07-24 14:09:28', '2025-12-17 19:47:55', 'bdz9ePb4', '3058687'), + (47843, 508, 151, 'attending', '2020-08-18 00:43:22', '2025-12-17 19:47:56', 'bdz9ePb4', '3058688'), + (47844, 508, 152, 'maybe', '2020-08-18 00:43:31', '2025-12-17 19:47:56', 'bdz9ePb4', '3058689'), + (47845, 508, 153, 'attending', '2020-08-01 19:48:58', '2025-12-17 19:47:55', 'bdz9ePb4', '3058690'), + (47846, 508, 154, 'maybe', '2020-08-08 18:20:52', '2025-12-17 19:47:56', 'bdz9ePb4', '3058691'), + (47847, 508, 155, 'not_attending', '2020-08-12 19:38:28', '2025-12-17 19:47:56', 'bdz9ePb4', '3058692'), + (47848, 508, 156, 'attending', '2020-09-12 20:10:51', '2025-12-17 19:47:56', 'bdz9ePb4', '3058693'), + (47849, 508, 157, 'not_attending', '2020-09-19 21:04:18', '2025-12-17 19:47:56', 'bdz9ePb4', '3058694'), + (47850, 508, 158, 'not_attending', '2020-09-22 22:50:51', '2025-12-17 19:47:52', 'bdz9ePb4', '3058695'), + (47851, 508, 159, 'not_attending', '2020-10-03 21:44:35', '2025-12-17 19:47:52', 'bdz9ePb4', '3058696'), + (47852, 508, 160, 'attending', '2020-10-23 21:36:05', '2025-12-17 19:47:52', 'bdz9ePb4', '3058697'), + (47853, 508, 161, 'maybe', '2020-10-08 23:01:16', '2025-12-17 19:47:52', 'bdz9ePb4', '3058698'), + (47854, 508, 162, 'maybe', '2020-10-15 19:50:06', '2025-12-17 19:47:52', 'bdz9ePb4', '3058699'), + (47855, 508, 164, 'attending', '2020-11-08 22:29:34', '2025-12-17 19:47:54', 'bdz9ePb4', '3058701'), + (47856, 508, 166, 'maybe', '2020-11-21 22:52:17', '2025-12-17 19:47:54', 'bdz9ePb4', '3058704'), + (47857, 508, 167, 'attending', '2020-11-29 00:01:14', '2025-12-17 19:47:54', 'bdz9ePb4', '3058705'), + (47858, 508, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'bdz9ePb4', '3058959'), + (47859, 508, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'bdz9ePb4', '3067093'), + (47860, 508, 182, 'not_attending', '2020-06-27 17:50:59', '2025-12-17 19:47:55', 'bdz9ePb4', '3074514'), + (47861, 508, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'bdz9ePb4', '3075228'), + (47862, 508, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'bdz9ePb4', '3075456'), + (47863, 508, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'bdz9ePb4', '3083791'), + (47864, 508, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'bdz9ePb4', '3085151'), + (47865, 508, 189, 'attending', '2020-06-20 21:45:38', '2025-12-17 19:47:58', 'bdz9ePb4', '3087016'), + (47866, 508, 191, 'maybe', '2020-07-07 17:14:05', '2025-12-17 19:47:55', 'bdz9ePb4', '3087259'), + (47867, 508, 192, 'maybe', '2020-07-17 15:54:16', '2025-12-17 19:47:55', 'bdz9ePb4', '3087260'), + (47868, 508, 193, 'maybe', '2020-07-24 14:09:33', '2025-12-17 19:47:55', 'bdz9ePb4', '3087261'), + (47869, 508, 194, 'attending', '2020-08-01 19:48:59', '2025-12-17 19:47:56', 'bdz9ePb4', '3087262'), + (47870, 508, 195, 'maybe', '2020-08-06 14:26:25', '2025-12-17 19:47:56', 'bdz9ePb4', '3087264'), + (47871, 508, 196, 'not_attending', '2020-08-12 19:38:36', '2025-12-17 19:47:56', 'bdz9ePb4', '3087265'), + (47872, 508, 197, 'attending', '2020-08-18 00:43:17', '2025-12-17 19:47:56', 'bdz9ePb4', '3087266'), + (47873, 508, 198, 'attending', '2020-08-18 00:43:23', '2025-12-17 19:47:56', 'bdz9ePb4', '3087267'), + (47874, 508, 199, 'maybe', '2020-08-18 00:43:35', '2025-12-17 19:47:56', 'bdz9ePb4', '3087268'), + (47875, 508, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'bdz9ePb4', '3088653'), + (47876, 508, 203, 'attending', '2020-06-23 01:28:50', '2025-12-17 19:47:58', 'bdz9ePb4', '3091624'), + (47877, 508, 207, 'not_attending', '2020-07-24 14:09:20', '2025-12-17 19:47:55', 'bdz9ePb4', '3104807'), + (47878, 508, 208, 'not_attending', '2020-08-07 03:10:55', '2025-12-17 19:47:56', 'bdz9ePb4', '3104808'), + (47879, 508, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'bdz9ePb4', '3106813'), + (47880, 508, 223, 'attending', '2020-09-11 17:26:19', '2025-12-17 19:47:56', 'bdz9ePb4', '3129980'), + (47881, 508, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'bdz9ePb4', '3132817'), + (47882, 508, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'bdz9ePb4', '3132820'), + (47883, 508, 267, 'not_attending', '2020-07-31 23:33:50', '2025-12-17 19:47:55', 'bdz9ePb4', '3152781'), + (47884, 508, 269, 'attending', '2020-08-01 20:19:16', '2025-12-17 19:47:55', 'bdz9ePb4', '3153076'), + (47885, 508, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'bdz9ePb4', '3155321'), + (47886, 508, 273, 'not_attending', '2020-08-18 01:04:34', '2025-12-17 19:47:56', 'bdz9ePb4', '3162006'), + (47887, 508, 277, 'not_attending', '2020-08-18 01:04:30', '2025-12-17 19:47:56', 'bdz9ePb4', '3163442'), + (47888, 508, 280, 'not_attending', '2020-08-12 19:38:48', '2025-12-17 19:47:56', 'bdz9ePb4', '3166942'), + (47889, 508, 293, 'not_attending', '2020-08-18 00:42:25', '2025-12-17 19:47:56', 'bdz9ePb4', '3172832'), + (47890, 508, 294, 'not_attending', '2020-08-18 00:42:35', '2025-12-17 19:47:56', 'bdz9ePb4', '3172833'), + (47891, 508, 295, 'not_attending', '2020-08-18 00:42:48', '2025-12-17 19:47:56', 'bdz9ePb4', '3172834'), + (47892, 508, 296, 'not_attending', '2020-09-12 20:10:58', '2025-12-17 19:47:56', 'bdz9ePb4', '3172876'), + (47893, 508, 297, 'not_attending', '2020-08-12 19:38:58', '2025-12-17 19:47:56', 'bdz9ePb4', '3173937'), + (47894, 508, 298, 'maybe', '2020-08-25 20:59:47', '2025-12-17 19:47:56', 'bdz9ePb4', '3174556'), + (47895, 508, 299, 'not_attending', '2020-08-18 00:46:44', '2025-12-17 19:47:56', 'bdz9ePb4', '3176591'), + (47896, 508, 305, 'not_attending', '2020-08-18 00:46:50', '2025-12-17 19:47:56', 'bdz9ePb4', '3179555'), + (47897, 508, 306, 'attending', '2020-08-21 23:10:13', '2025-12-17 19:47:56', 'bdz9ePb4', '3179777'), + (47898, 508, 311, 'not_attending', '2020-09-11 17:26:03', '2025-12-17 19:47:56', 'bdz9ePb4', '3186057'), + (47899, 508, 314, 'not_attending', '2020-08-25 20:59:23', '2025-12-17 19:47:56', 'bdz9ePb4', '3188480'), + (47900, 508, 317, 'not_attending', '2020-08-31 19:07:32', '2025-12-17 19:47:56', 'bdz9ePb4', '3191735'), + (47901, 508, 319, 'maybe', '2020-08-31 19:08:00', '2025-12-17 19:47:56', 'bdz9ePb4', '3194179'), + (47902, 508, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'bdz9ePb4', '3200209'), + (47903, 508, 340, 'maybe', '2020-09-14 01:05:59', '2025-12-17 19:47:56', 'bdz9ePb4', '3204470'), + (47904, 508, 341, 'not_attending', '2020-09-22 22:50:42', '2025-12-17 19:47:52', 'bdz9ePb4', '3204471'), + (47905, 508, 342, 'not_attending', '2020-10-03 18:26:59', '2025-12-17 19:47:52', 'bdz9ePb4', '3204472'), + (47906, 508, 346, 'maybe', '2020-09-14 01:05:32', '2025-12-17 19:47:56', 'bdz9ePb4', '3207515'), + (47907, 508, 352, 'not_attending', '2020-09-14 01:05:27', '2025-12-17 19:47:56', 'bdz9ePb4', '3210514'), + (47908, 508, 354, 'maybe', '2020-09-15 23:00:32', '2025-12-17 19:47:56', 'bdz9ePb4', '3212570'), + (47909, 508, 355, 'not_attending', '2020-09-16 23:50:59', '2025-12-17 19:47:56', 'bdz9ePb4', '3212571'), + (47910, 508, 360, 'not_attending', '2020-09-14 01:04:53', '2025-12-17 19:47:56', 'bdz9ePb4', '3212671'), + (47911, 508, 362, 'not_attending', '2020-09-22 22:50:46', '2025-12-17 19:47:52', 'bdz9ePb4', '3214207'), + (47912, 508, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'bdz9ePb4', '3217037'), + (47913, 508, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'bdz9ePb4', '3218510'), + (47914, 508, 375, 'not_attending', '2020-10-08 23:01:03', '2025-12-17 19:47:52', 'bdz9ePb4', '3222825'), + (47915, 508, 385, 'maybe', '2020-10-03 21:44:36', '2025-12-17 19:47:52', 'bdz9ePb4', '3228698'), + (47916, 508, 386, 'attending', '2020-10-10 20:52:13', '2025-12-17 19:47:52', 'bdz9ePb4', '3228699'), + (47917, 508, 387, 'maybe', '2020-10-15 19:50:08', '2025-12-17 19:47:52', 'bdz9ePb4', '3228700'), + (47918, 508, 388, 'attending', '2020-10-23 21:36:12', '2025-12-17 19:47:52', 'bdz9ePb4', '3228701'), + (47919, 508, 391, 'not_attending', '2020-10-15 19:49:59', '2025-12-17 19:47:52', 'bdz9ePb4', '3236446'), + (47920, 508, 411, 'not_attending', '2020-10-08 23:01:31', '2025-12-17 19:47:52', 'bdz9ePb4', '3236596'), + (47921, 508, 415, 'not_attending', '2020-10-08 23:01:42', '2025-12-17 19:47:52', 'bdz9ePb4', '3238044'), + (47922, 508, 417, 'not_attending', '2020-10-08 23:01:51', '2025-12-17 19:47:52', 'bdz9ePb4', '3238779'), + (47923, 508, 420, 'not_attending', '2020-10-15 19:49:56', '2025-12-17 19:47:52', 'bdz9ePb4', '3245293'), + (47924, 508, 421, 'not_attending', '2020-10-15 19:50:35', '2025-12-17 19:47:52', 'bdz9ePb4', '3245294'), + (47925, 508, 423, 'not_attending', '2020-11-03 01:09:05', '2025-12-17 19:47:53', 'bdz9ePb4', '3245296'), + (47926, 508, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'bdz9ePb4', '3245751'), + (47927, 508, 425, 'not_attending', '2020-10-15 19:50:04', '2025-12-17 19:47:52', 'bdz9ePb4', '3250097'), + (47928, 508, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'bdz9ePb4', '3250232'), + (47929, 508, 435, 'not_attending', '2020-10-24 16:43:17', '2025-12-17 19:47:52', 'bdz9ePb4', '3254790'), + (47930, 508, 438, 'not_attending', '2020-10-31 22:05:54', '2025-12-17 19:47:53', 'bdz9ePb4', '3256163'), + (47931, 508, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'bdz9ePb4', '3256168'), + (47932, 508, 441, 'maybe', '2020-11-14 22:38:16', '2025-12-17 19:47:54', 'bdz9ePb4', '3256169'), + (47933, 508, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'bdz9ePb4', '3263578'), + (47934, 508, 445, 'not_attending', '2020-11-08 22:30:46', '2025-12-17 19:47:54', 'bdz9ePb4', '3266138'), + (47935, 508, 456, 'maybe', '2020-11-14 22:04:55', '2025-12-17 19:47:54', 'bdz9ePb4', '3276428'), + (47936, 508, 459, 'not_attending', '2020-11-14 22:04:49', '2025-12-17 19:47:54', 'bdz9ePb4', '3281467'), + (47937, 508, 462, 'not_attending', '2020-11-08 22:30:35', '2025-12-17 19:47:54', 'bdz9ePb4', '3281470'), + (47938, 508, 466, 'not_attending', '2020-11-14 22:04:41', '2025-12-17 19:47:54', 'bdz9ePb4', '3281829'), + (47939, 508, 468, 'maybe', '2020-11-14 22:04:37', '2025-12-17 19:47:54', 'bdz9ePb4', '3285413'), + (47940, 508, 469, 'attending', '2020-11-29 00:01:12', '2025-12-17 19:47:54', 'bdz9ePb4', '3285414'), + (47941, 508, 475, 'not_attending', '2020-11-21 22:52:27', '2025-12-17 19:47:54', 'bdz9ePb4', '3286760'), + (47942, 508, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'bdz9ePb4', '3297764'), + (47943, 508, 483, 'not_attending', '2020-11-21 22:52:21', '2025-12-17 19:47:54', 'bdz9ePb4', '3297791'), + (47944, 508, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'bdz9ePb4', '3313856'), + (47945, 508, 499, 'not_attending', '2020-12-12 02:19:49', '2025-12-17 19:47:55', 'bdz9ePb4', '3314909'), + (47946, 508, 500, 'maybe', '2020-12-16 02:54:33', '2025-12-17 19:47:55', 'bdz9ePb4', '3314964'), + (47947, 508, 502, 'not_attending', '2020-12-10 18:10:15', '2025-12-17 19:47:55', 'bdz9ePb4', '3323365'), + (47948, 508, 513, 'not_attending', '2020-12-19 18:13:07', '2025-12-17 19:47:55', 'bdz9ePb4', '3329383'), + (47949, 508, 514, 'not_attending', '2020-12-10 18:10:17', '2025-12-17 19:47:55', 'bdz9ePb4', '3329400'), + (47950, 508, 526, 'attending', '2021-01-03 00:49:47', '2025-12-17 19:47:48', 'bdz9ePb4', '3351539'), + (47951, 508, 530, 'attending', '2021-01-05 02:00:14', '2025-12-17 19:47:48', 'bdz9ePb4', '3373923'), + (47952, 508, 531, 'not_attending', '2021-01-02 05:22:13', '2025-12-17 19:47:48', 'bdz9ePb4', '3378210'), + (47953, 508, 536, 'attending', '2021-01-09 00:28:55', '2025-12-17 19:47:48', 'bdz9ePb4', '3386848'), + (47954, 508, 539, 'maybe', '2021-01-14 01:36:05', '2025-12-17 19:47:48', 'bdz9ePb4', '3389158'), + (47955, 508, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'bdz9ePb4', '3389527'), + (47956, 508, 541, 'attending', '2021-01-09 00:28:55', '2025-12-17 19:47:48', 'bdz9ePb4', '3391683'), + (47957, 508, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'bdz9ePb4', '3396499'), + (47958, 508, 548, 'not_attending', '2021-01-16 21:41:14', '2025-12-17 19:47:48', 'bdz9ePb4', '3403650'), + (47959, 508, 549, 'not_attending', '2021-01-22 06:06:25', '2025-12-17 19:47:49', 'bdz9ePb4', '3406988'), + (47960, 508, 553, 'not_attending', '2021-01-16 21:41:10', '2025-12-17 19:47:48', 'bdz9ePb4', '3407248'), + (47961, 508, 555, 'attending', '2021-01-22 06:06:22', '2025-12-17 19:47:49', 'bdz9ePb4', '3416576'), + (47962, 508, 558, 'maybe', '2021-01-22 06:06:13', '2025-12-17 19:47:49', 'bdz9ePb4', '3418925'), + (47963, 508, 561, 'attending', '2021-01-22 06:06:30', '2025-12-17 19:47:49', 'bdz9ePb4', '3421916'), + (47964, 508, 568, 'maybe', '2021-01-27 21:55:20', '2025-12-17 19:47:50', 'bdz9ePb4', '3430267'), + (47965, 508, 569, 'not_attending', '2021-01-27 21:55:12', '2025-12-17 19:47:49', 'bdz9ePb4', '3432673'), + (47966, 508, 579, 'not_attending', '2021-02-07 00:59:41', '2025-12-17 19:47:50', 'bdz9ePb4', '3440978'), + (47967, 508, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'bdz9ePb4', '3468125'), + (47968, 508, 602, 'attending', '2021-02-09 19:04:24', '2025-12-17 19:47:50', 'bdz9ePb4', '3470303'), + (47969, 508, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'bdz9ePb4', '3470305'), + (47970, 508, 605, 'not_attending', '2021-02-09 19:04:35', '2025-12-17 19:47:50', 'bdz9ePb4', '3470991'), + (47971, 508, 609, 'attending', '2021-02-14 02:08:09', '2025-12-17 19:47:50', 'bdz9ePb4', '3480916'), + (47972, 508, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'bdz9ePb4', '3517815'), + (47973, 508, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'bdz9ePb4', '3517816'), + (47974, 508, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'bdz9ePb4', '3523941'), + (47975, 508, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'bdz9ePb4', '3533850'), + (47976, 508, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'bdz9ePb4', '3536632'), + (47977, 508, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'bdz9ePb4', '3536656'), + (47978, 508, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'bdz9ePb4', '3539916'), + (47979, 508, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'bdz9ePb4', '3539917'), + (47980, 508, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'bdz9ePb4', '3539918'), + (47981, 508, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'bdz9ePb4', '3539919'), + (47982, 508, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'bdz9ePb4', '3539920'), + (47983, 508, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'bdz9ePb4', '3539921'), + (47984, 508, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'bdz9ePb4', '3539922'), + (47985, 508, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'bdz9ePb4', '3539923'), + (47986, 508, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'bdz9ePb4', '3539927'), + (47987, 508, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'bdz9ePb4', '3582734'), + (47988, 508, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdz9ePb4', '3583262'), + (47989, 508, 709, 'not_attending', '2021-04-06 01:40:07', '2025-12-17 19:47:44', 'bdz9ePb4', '3587852'), + (47990, 508, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'bdz9ePb4', '3619523'), + (47991, 508, 719, 'not_attending', '2021-04-06 01:40:16', '2025-12-17 19:47:44', 'bdz9ePb4', '3635405'), + (47992, 508, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdz9ePb4', '3661369'), + (47993, 508, 731, 'not_attending', '2021-04-06 01:40:09', '2025-12-17 19:47:44', 'bdz9ePb4', '3674262'), + (47994, 508, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdz9ePb4', '3677402'), + (47995, 508, 736, 'not_attending', '2021-04-06 01:40:18', '2025-12-17 19:47:44', 'bdz9ePb4', '3677701'), + (47996, 508, 737, 'not_attending', '2021-04-06 01:40:04', '2025-12-17 19:47:44', 'bdz9ePb4', '3679349'), + (47997, 508, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz9ePb4', '6045684'), + (47998, 509, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dxOW7r24', '6044839'), + (47999, 509, 1994, 'not_attending', '2023-04-08 19:25:16', '2025-12-17 19:46:59', 'dxOW7r24', '6050104'), + (48000, 509, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dxOW7r24', '6053198'), + (48001, 509, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dxOW7r24', '6056085'), + (48002, 509, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dxOW7r24', '6056916'), + (48003, 509, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dxOW7r24', '6059290'), + (48004, 509, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dxOW7r24', '6060328'), + (48005, 509, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dxOW7r24', '6061037'), + (48006, 509, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dxOW7r24', '6061039'), + (48007, 509, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dxOW7r24', '6067245'), + (48008, 509, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dxOW7r24', '6068094'), + (48009, 509, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dxOW7r24', '6068252'), + (48010, 509, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dxOW7r24', '6068253'), + (48011, 509, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dxOW7r24', '6068254'), + (48012, 509, 2031, 'maybe', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dxOW7r24', '6068280'), + (48013, 509, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dxOW7r24', '6069093'), + (48014, 509, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dxOW7r24', '6072528'), + (48015, 509, 2045, 'not_attending', '2023-04-28 22:45:08', '2025-12-17 19:47:01', 'dxOW7r24', '6075556'), + (48016, 509, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dxOW7r24', '6079840'), + (48017, 509, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dxOW7r24', '6083398'), + (48018, 509, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dxOW7r24', '6093504'), + (48019, 509, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dxOW7r24', '6097414'), + (48020, 509, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dxOW7r24', '6097442'), + (48021, 509, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dxOW7r24', '6097684'), + (48022, 509, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dxOW7r24', '6098762'), + (48023, 509, 2066, 'not_attending', '2023-06-09 18:33:39', '2025-12-17 19:47:04', 'dxOW7r24', '6101361'), + (48024, 509, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dxOW7r24', '6101362'), + (48025, 509, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dxOW7r24', '6103752'), + (48026, 509, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dxOW7r24', '6107314'), + (48027, 509, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dxOW7r24', '6136733'), + (48028, 509, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dxOW7r24', '6137989'), + (48029, 509, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dxOW7r24', '6150864'), + (48030, 509, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dxOW7r24', '6155491'), + (48031, 509, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dxOW7r24', '6164417'), + (48032, 509, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dxOW7r24', '6166388'), + (48033, 509, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dxOW7r24', '6176439'), + (48034, 509, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dxOW7r24', '6182410'), + (48035, 509, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dxOW7r24', '6185812'), + (48036, 509, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dxOW7r24', '6187651'), + (48037, 509, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dxOW7r24', '6187963'), + (48038, 509, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dxOW7r24', '6187964'), + (48039, 509, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dxOW7r24', '6187966'), + (48040, 509, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dxOW7r24', '6187967'), + (48041, 509, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dxOW7r24', '6187969'), + (48042, 509, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dxOW7r24', '6334878'), + (48043, 509, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxOW7r24', '6337236'), + (48044, 509, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxOW7r24', '6337970'), + (48045, 509, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dxOW7r24', '6338308'), + (48046, 509, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxOW7r24', '6341710'), + (48047, 509, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxOW7r24', '6342044'), + (48048, 509, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxOW7r24', '6342298'), + (48049, 509, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dxOW7r24', '6343294'), + (48050, 509, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxOW7r24', '6347034'), + (48051, 509, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxOW7r24', '6347056'), + (48052, 509, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxOW7r24', '6353830'), + (48053, 509, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxOW7r24', '6353831'), + (48054, 509, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxOW7r24', '6357867'), + (48055, 509, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxOW7r24', '6358652'), + (48056, 509, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxOW7r24', '6361709'), + (48057, 509, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxOW7r24', '6361710'), + (48058, 509, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxOW7r24', '6361711'), + (48059, 509, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxOW7r24', '6361712'), + (48060, 509, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxOW7r24', '6361713'), + (48061, 509, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxOW7r24', '6382573'), + (48062, 509, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxOW7r24', '6388604'), + (48063, 509, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxOW7r24', '6394629'), + (48064, 509, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxOW7r24', '6394631'), + (48065, 509, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxOW7r24', '6440863'), + (48066, 509, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dxOW7r24', '6445440'), + (48067, 509, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dxOW7r24', '6453951'), + (48068, 509, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dxOW7r24', '6461696'), + (48069, 509, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dxOW7r24', '6462129'), + (48070, 509, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dxOW7r24', '6463218'), + (48071, 509, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dxOW7r24', '6472181'), + (48072, 509, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxOW7r24', '6482693'), + (48073, 509, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dxOW7r24', '6484200'), + (48074, 509, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dxOW7r24', '6484680'), + (48075, 509, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxOW7r24', '6507741'), + (48076, 509, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxOW7r24', '6514659'), + (48077, 509, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxOW7r24', '6514660'), + (48078, 509, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxOW7r24', '6519103'), + (48079, 509, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dxOW7r24', '6535681'), + (48080, 509, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxOW7r24', '6584747'), + (48081, 509, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxOW7r24', '6587097'), + (48082, 509, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxOW7r24', '6609022'), + (48083, 509, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxOW7r24', '6632757'), + (48084, 509, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxOW7r24', '6644187'), + (48085, 509, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxOW7r24', '6648951'), + (48086, 509, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxOW7r24', '6648952'), + (48087, 509, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxOW7r24', '6655401'), + (48088, 509, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxOW7r24', '6661585'), + (48089, 509, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxOW7r24', '6661588'), + (48090, 509, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxOW7r24', '6661589'), + (48091, 509, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxOW7r24', '6699906'), + (48092, 509, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxOW7r24', '6699913'), + (48093, 509, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxOW7r24', '6701109'), + (48094, 509, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxOW7r24', '6705219'), + (48095, 509, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxOW7r24', '6710153'), + (48096, 509, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxOW7r24', '6711552'), + (48097, 509, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxOW7r24', '6711553'), + (48098, 509, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxOW7r24', '6722688'), + (48099, 509, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxOW7r24', '6730620'), + (48100, 509, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxOW7r24', '6740364'), + (48101, 509, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxOW7r24', '6743829'), + (48102, 509, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxOW7r24', '7030380'), + (48103, 509, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxOW7r24', '7033677'), + (48104, 509, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxOW7r24', '7044715'), + (48105, 509, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxOW7r24', '7050318'), + (48106, 509, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxOW7r24', '7050319'), + (48107, 509, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxOW7r24', '7050322'), + (48108, 509, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxOW7r24', '7057804'), + (48109, 509, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxOW7r24', '7072824'), + (48110, 509, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxOW7r24', '7074348'), + (48111, 509, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxOW7r24', '7074364'), + (48112, 509, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxOW7r24', '7089267'), + (48113, 509, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxOW7r24', '7098747'), + (48114, 509, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxOW7r24', '7113468'), + (48115, 509, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxOW7r24', '7114856'), + (48116, 509, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxOW7r24', '7114951'), + (48117, 509, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxOW7r24', '7114955'), + (48118, 509, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxOW7r24', '7114956'), + (48119, 509, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxOW7r24', '7114957'), + (48120, 509, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxOW7r24', '7159484'), + (48121, 509, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxOW7r24', '7178446'), + (48122, 509, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxOW7r24', '7220467'), + (48123, 509, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxOW7r24', '7240354'), + (48124, 509, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxOW7r24', '7251633'), + (48125, 509, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxOW7r24', '7324073'), + (48126, 509, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxOW7r24', '7324074'), + (48127, 509, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxOW7r24', '7324075'), + (48128, 509, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxOW7r24', '7324078'), + (48129, 509, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxOW7r24', '7324082'), + (48130, 509, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxOW7r24', '7331457'), + (48131, 509, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxOW7r24', '7363643'), + (48132, 509, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxOW7r24', '7368606'), + (48133, 509, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxOW7r24', '7397462'), + (48134, 509, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxOW7r24', '7424275'), + (48135, 509, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxOW7r24', '7432751'), + (48136, 509, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxOW7r24', '7432752'), + (48137, 509, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxOW7r24', '7432753'), + (48138, 509, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxOW7r24', '7432754'), + (48139, 509, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxOW7r24', '7432755'), + (48140, 509, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxOW7r24', '7432756'), + (48141, 509, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxOW7r24', '7432758'), + (48142, 509, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxOW7r24', '7432759'), + (48143, 509, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxOW7r24', '7433834'), + (48144, 509, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxOW7r24', '7470197'), + (48145, 509, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxOW7r24', '7685613'), + (48146, 509, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxOW7r24', '7688194'), + (48147, 509, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxOW7r24', '7688196'), + (48148, 509, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxOW7r24', '7688289'), + (48149, 509, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dxOW7r24', '7692763'), + (48150, 509, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxOW7r24', '7697552'), + (48151, 509, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxOW7r24', '7699878'), + (48152, 509, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxOW7r24', '7704043'), + (48153, 509, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxOW7r24', '7712467'), + (48154, 509, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxOW7r24', '7713585'), + (48155, 509, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxOW7r24', '7713586'), + (48156, 509, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxOW7r24', '7738518'), + (48157, 509, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxOW7r24', '7750636'), + (48158, 509, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxOW7r24', '7796540'), + (48159, 509, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxOW7r24', '7796541'), + (48160, 509, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxOW7r24', '7796542'), + (48161, 509, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxOW7r24', '7825913'), + (48162, 509, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxOW7r24', '7826209'), + (48163, 509, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxOW7r24', '7834742'), + (48164, 509, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dxOW7r24', '7842108'), + (48165, 509, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxOW7r24', '7842902'), + (48166, 509, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxOW7r24', '7842903'), + (48167, 509, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxOW7r24', '7842904'), + (48168, 509, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxOW7r24', '7842905'), + (48169, 509, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxOW7r24', '7855719'), + (48170, 509, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxOW7r24', '7860683'), + (48171, 509, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxOW7r24', '7860684'), + (48172, 509, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxOW7r24', '7866095'), + (48173, 509, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxOW7r24', '7869170'), + (48174, 509, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxOW7r24', '7869188'), + (48175, 509, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxOW7r24', '7869201'), + (48176, 509, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dxOW7r24', '7877465'), + (48177, 509, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxOW7r24', '7888250'), + (48178, 509, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dxOW7r24', '7904777'), + (48179, 509, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxOW7r24', '8349164'), + (48180, 509, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxOW7r24', '8349545'), + (48181, 509, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dxOW7r24', '8368028'), + (48182, 509, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxOW7r24', '8368029'), + (48183, 509, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dxOW7r24', '8388462'), + (48184, 509, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dxOW7r24', '8400273'), + (48185, 509, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dxOW7r24', '8400275'), + (48186, 509, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dxOW7r24', '8400276'), + (48187, 509, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dxOW7r24', '8404977'), + (48188, 509, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dxOW7r24', '8430783'), + (48189, 509, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dxOW7r24', '8430784'), + (48190, 509, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dxOW7r24', '8430799'), + (48191, 509, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dxOW7r24', '8430800'), + (48192, 509, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dxOW7r24', '8430801'), + (48193, 509, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dxOW7r24', '8438709'), + (48194, 509, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dxOW7r24', '8457738'), + (48195, 509, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dxOW7r24', '8459566'), + (48196, 509, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dxOW7r24', '8459567'), + (48197, 509, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dxOW7r24', '8461032'), + (48198, 509, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dxOW7r24', '8477877'), + (48199, 509, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dxOW7r24', '8485688'), + (48200, 509, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dxOW7r24', '8490587'), + (48201, 509, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dxOW7r24', '8493552'), + (48202, 509, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dxOW7r24', '8493553'), + (48203, 509, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dxOW7r24', '8493554'), + (48204, 509, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dxOW7r24', '8493555'), + (48205, 509, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dxOW7r24', '8493556'), + (48206, 509, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dxOW7r24', '8493557'), + (48207, 509, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dxOW7r24', '8493558'), + (48208, 509, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dxOW7r24', '8493559'), + (48209, 509, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dxOW7r24', '8493560'), + (48210, 509, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dxOW7r24', '8493561'), + (48211, 509, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dxOW7r24', '8493572'), + (48212, 509, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dxOW7r24', '8540725'), + (48213, 509, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dxOW7r24', '8555421'), + (48214, 510, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'x4o11yMm', '5195095'), + (48215, 510, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'x4o11yMm', '5223686'), + (48216, 510, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'x4o11yMm', '5227432'), + (48217, 510, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'x4o11yMm', '5247467'), + (48218, 510, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'x4o11yMm', '5260800'), + (48219, 510, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'x4o11yMm', '5269930'), + (48220, 510, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'x4o11yMm', '5271448'), + (48221, 510, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'x4o11yMm', '5271449'), + (48222, 510, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'x4o11yMm', '5276469'), + (48223, 510, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'x4o11yMm', '5278159'), + (48224, 510, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'x4o11yMm', '6045684'), + (48225, 511, 872, 'not_attending', '2021-07-20 02:29:51', '2025-12-17 19:47:40', 'd3RVlrO4', '4136947'), + (48226, 511, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'd3RVlrO4', '4210314'), + (48227, 511, 893, 'maybe', '2021-07-23 01:59:09', '2025-12-17 19:47:40', 'd3RVlrO4', '4229420'), + (48228, 511, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'd3RVlrO4', '4229423'), + (48229, 511, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'd3RVlrO4', '4240316'), + (48230, 511, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'd3RVlrO4', '4240317'), + (48231, 511, 902, 'attending', '2021-08-07 02:50:46', '2025-12-17 19:47:41', 'd3RVlrO4', '4240318'), + (48232, 511, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'd3RVlrO4', '4240320'), + (48233, 511, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'd3RVlrO4', '4277819'), + (48234, 511, 923, 'not_attending', '2021-07-23 01:57:44', '2025-12-17 19:47:40', 'd3RVlrO4', '4292773'), + (48235, 511, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'd3RVlrO4', '4301723'), + (48236, 511, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'd3RVlrO4', '4302093'), + (48237, 511, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'd3RVlrO4', '4304151'), + (48238, 511, 940, 'not_attending', '2021-07-30 16:29:25', '2025-12-17 19:47:40', 'd3RVlrO4', '4309049'), + (48239, 511, 947, 'attending', '2021-08-05 12:51:15', '2025-12-17 19:47:41', 'd3RVlrO4', '4315713'), + (48240, 511, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'd3RVlrO4', '4345519'), + (48241, 511, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd3RVlrO4', '4356801'), + (48242, 511, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'd3RVlrO4', '4358025'), + (48243, 511, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'd3RVlrO4', '4366186'), + (48244, 511, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'd3RVlrO4', '4366187'), + (48245, 511, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'd3RVlrO4', '4402823'), + (48246, 511, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'd3RVlrO4', '4420735'), + (48247, 511, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'd3RVlrO4', '4420738'), + (48248, 511, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'd3RVlrO4', '4420739'), + (48249, 511, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'd3RVlrO4', '4420741'), + (48250, 511, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'd3RVlrO4', '4420744'), + (48251, 511, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'd3RVlrO4', '4420747'), + (48252, 511, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'd3RVlrO4', '4420748'), + (48253, 511, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'd3RVlrO4', '4420749'), + (48254, 511, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'd3RVlrO4', '4461883'), + (48255, 511, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'd3RVlrO4', '4508342'), + (48256, 511, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd3RVlrO4', '4568602'), + (48257, 511, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3RVlrO4', '6045684'), + (48258, 512, 25, 'not_attending', '2020-07-08 05:17:28', '2025-12-17 19:47:55', '6AXMZBY4', '2958069'), + (48259, 512, 50, 'not_attending', '2020-07-13 23:21:43', '2025-12-17 19:47:55', '6AXMZBY4', '2975275'), + (48260, 512, 54, 'not_attending', '2020-07-13 23:22:37', '2025-12-17 19:47:56', '6AXMZBY4', '2975279'), + (48261, 512, 147, 'not_attending', '2020-08-15 13:02:30', '2025-12-17 19:47:56', '6AXMZBY4', '3058684'), + (48262, 512, 151, 'not_attending', '2020-08-17 02:42:00', '2025-12-17 19:47:56', '6AXMZBY4', '3058688'), + (48263, 512, 152, 'not_attending', '2020-08-17 02:42:25', '2025-12-17 19:47:56', '6AXMZBY4', '3058689'), + (48264, 512, 157, 'not_attending', '2020-08-17 02:43:55', '2025-12-17 19:47:56', '6AXMZBY4', '3058694'), + (48265, 512, 158, 'not_attending', '2020-08-17 02:44:01', '2025-12-17 19:47:52', '6AXMZBY4', '3058695'), + (48266, 512, 159, 'not_attending', '2020-08-17 02:44:08', '2025-12-17 19:47:52', '6AXMZBY4', '3058696'), + (48267, 512, 160, 'attending', '2020-10-24 15:18:42', '2025-12-17 19:47:52', '6AXMZBY4', '3058697'), + (48268, 512, 161, 'not_attending', '2020-08-17 02:44:15', '2025-12-17 19:47:52', '6AXMZBY4', '3058698'), + (48269, 512, 162, 'not_attending', '2020-09-17 02:03:28', '2025-12-17 19:47:52', '6AXMZBY4', '3058699'), + (48270, 512, 163, 'not_attending', '2020-10-27 14:04:09', '2025-12-17 19:47:53', '6AXMZBY4', '3058700'), + (48271, 512, 164, 'attending', '2020-10-20 21:09:47', '2025-12-17 19:47:54', '6AXMZBY4', '3058701'), + (48272, 512, 165, 'attending', '2020-10-20 21:09:38', '2025-12-17 19:47:53', '6AXMZBY4', '3058702'), + (48273, 512, 166, 'attending', '2020-11-07 06:48:12', '2025-12-17 19:47:54', '6AXMZBY4', '3058704'), + (48274, 512, 167, 'attending', '2020-11-07 06:48:15', '2025-12-17 19:47:54', '6AXMZBY4', '3058705'), + (48275, 512, 191, 'attending', '2020-07-08 01:56:06', '2025-12-17 19:47:55', '6AXMZBY4', '3087259'), + (48276, 512, 192, 'attending', '2020-07-08 05:18:05', '2025-12-17 19:47:55', '6AXMZBY4', '3087260'), + (48277, 512, 193, 'attending', '2020-07-08 05:18:13', '2025-12-17 19:47:55', '6AXMZBY4', '3087261'), + (48278, 512, 194, 'attending', '2020-07-13 23:20:38', '2025-12-17 19:47:55', '6AXMZBY4', '3087262'), + (48279, 512, 195, 'not_attending', '2020-08-08 12:31:08', '2025-12-17 19:47:56', '6AXMZBY4', '3087264'), + (48280, 512, 196, 'attending', '2020-07-13 23:22:42', '2025-12-17 19:47:56', '6AXMZBY4', '3087265'), + (48281, 512, 197, 'attending', '2020-07-13 23:22:51', '2025-12-17 19:47:56', '6AXMZBY4', '3087266'), + (48282, 512, 198, 'attending', '2020-07-13 23:22:53', '2025-12-17 19:47:56', '6AXMZBY4', '3087267'), + (48283, 512, 199, 'not_attending', '2020-09-05 03:39:42', '2025-12-17 19:47:56', '6AXMZBY4', '3087268'), + (48284, 512, 205, 'attending', '2020-07-08 02:00:48', '2025-12-17 19:47:55', '6AXMZBY4', '3104804'), + (48285, 512, 206, 'attending', '2020-07-13 23:20:29', '2025-12-17 19:47:55', '6AXMZBY4', '3104806'), + (48286, 512, 207, 'not_attending', '2020-07-13 23:21:33', '2025-12-17 19:47:55', '6AXMZBY4', '3104807'), + (48287, 512, 208, 'not_attending', '2020-07-13 23:21:57', '2025-12-17 19:47:56', '6AXMZBY4', '3104808'), + (48288, 512, 212, 'attending', '2020-07-13 23:19:32', '2025-12-17 19:47:55', '6AXMZBY4', '3118517'), + (48289, 512, 213, 'attending', '2020-07-07 20:05:47', '2025-12-17 19:47:55', '6AXMZBY4', '3121083'), + (48290, 512, 214, 'attending', '2020-07-08 01:59:55', '2025-12-17 19:47:55', '6AXMZBY4', '3124139'), + (48291, 512, 216, 'attending', '2020-07-08 05:17:13', '2025-12-17 19:47:55', '6AXMZBY4', '3126500'), + (48292, 512, 217, 'attending', '2020-07-13 17:13:09', '2025-12-17 19:47:55', '6AXMZBY4', '3126684'), + (48293, 512, 218, 'not_attending', '2020-07-13 23:21:27', '2025-12-17 19:47:55', '6AXMZBY4', '3129262'), + (48294, 512, 219, 'not_attending', '2020-07-13 23:22:45', '2025-12-17 19:47:56', '6AXMZBY4', '3129263'), + (48295, 512, 220, 'not_attending', '2020-07-13 23:23:23', '2025-12-17 19:47:56', '6AXMZBY4', '3129264'), + (48296, 512, 221, 'not_attending', '2020-07-13 23:23:29', '2025-12-17 19:47:56', '6AXMZBY4', '3129265'), + (48297, 512, 222, 'not_attending', '2020-07-13 23:22:10', '2025-12-17 19:47:56', '6AXMZBY4', '3129266'), + (48298, 512, 223, 'attending', '2020-07-13 23:23:51', '2025-12-17 19:47:56', '6AXMZBY4', '3129980'), + (48299, 512, 224, 'not_attending', '2020-07-13 23:20:47', '2025-12-17 19:47:55', '6AXMZBY4', '3130712'), + (48300, 512, 225, 'not_attending', '2020-07-13 23:21:12', '2025-12-17 19:47:55', '6AXMZBY4', '3132378'), + (48301, 512, 226, 'attending', '2020-07-13 23:19:10', '2025-12-17 19:47:55', '6AXMZBY4', '3132817'), + (48302, 512, 227, 'attending', '2020-07-13 23:19:19', '2025-12-17 19:47:55', '6AXMZBY4', '3132820'), + (48303, 512, 228, 'not_attending', '2020-07-13 23:20:11', '2025-12-17 19:47:55', '6AXMZBY4', '3132821'), + (48304, 512, 230, 'not_attending', '2020-07-19 02:46:32', '2025-12-17 19:47:55', '6AXMZBY4', '3139232'), + (48305, 512, 239, 'not_attending', '2020-08-17 02:41:45', '2025-12-17 19:47:56', '6AXMZBY4', '3149470'), + (48306, 512, 240, 'not_attending', '2020-08-17 02:42:55', '2025-12-17 19:47:56', '6AXMZBY4', '3149471'), + (48307, 512, 241, 'not_attending', '2020-08-17 02:43:44', '2025-12-17 19:47:52', '6AXMZBY4', '3149472'), + (48308, 512, 242, 'not_attending', '2020-08-17 02:43:31', '2025-12-17 19:47:56', '6AXMZBY4', '3149473'), + (48309, 512, 243, 'not_attending', '2020-09-29 04:42:59', '2025-12-17 19:47:53', '6AXMZBY4', '3149474'), + (48310, 512, 244, 'not_attending', '2020-09-17 02:03:01', '2025-12-17 19:47:52', '6AXMZBY4', '3149475'), + (48311, 512, 245, 'not_attending', '2020-10-14 14:18:38', '2025-12-17 19:47:54', '6AXMZBY4', '3149476'), + (48312, 512, 246, 'not_attending', '2020-11-07 06:48:58', '2025-12-17 19:47:55', '6AXMZBY4', '3149477'), + (48313, 512, 247, 'not_attending', '2020-11-07 06:49:06', '2025-12-17 19:47:48', '6AXMZBY4', '3149478'), + (48314, 512, 248, 'not_attending', '2021-01-08 18:28:50', '2025-12-17 19:47:48', '6AXMZBY4', '3149479'), + (48315, 512, 249, 'not_attending', '2020-10-14 14:18:26', '2025-12-17 19:47:54', '6AXMZBY4', '3149480'), + (48316, 512, 250, 'not_attending', '2021-02-01 22:40:16', '2025-12-17 19:47:50', '6AXMZBY4', '3149481'), + (48317, 512, 251, 'not_attending', '2021-01-08 18:29:22', '2025-12-17 19:47:49', '6AXMZBY4', '3149482'), + (48318, 512, 252, 'not_attending', '2021-02-01 22:41:00', '2025-12-17 19:47:50', '6AXMZBY4', '3149483'), + (48319, 512, 253, 'not_attending', '2021-03-01 18:40:41', '2025-12-17 19:47:44', '6AXMZBY4', '3149484'), + (48320, 512, 254, 'not_attending', '2021-02-01 22:41:16', '2025-12-17 19:47:51', '6AXMZBY4', '3149485'), + (48321, 512, 255, 'not_attending', '2021-03-01 18:40:23', '2025-12-17 19:47:43', '6AXMZBY4', '3149486'), + (48322, 512, 256, 'not_attending', '2021-04-05 11:23:03', '2025-12-17 19:47:46', '6AXMZBY4', '3149487'), + (48323, 512, 257, 'not_attending', '2021-04-05 11:22:37', '2025-12-17 19:47:45', '6AXMZBY4', '3149488'), + (48324, 512, 269, 'attending', '2020-08-01 00:53:33', '2025-12-17 19:47:55', '6AXMZBY4', '3153076'), + (48325, 512, 270, 'not_attending', '2020-08-14 13:43:10', '2025-12-17 19:47:56', '6AXMZBY4', '3154457'), + (48326, 512, 271, 'attending', '2020-08-02 23:20:33', '2025-12-17 19:47:56', '6AXMZBY4', '3155321'), + (48327, 512, 273, 'not_attending', '2020-08-06 17:48:14', '2025-12-17 19:47:56', '6AXMZBY4', '3162006'), + (48328, 512, 274, 'not_attending', '2020-08-06 17:48:58', '2025-12-17 19:47:56', '6AXMZBY4', '3163404'), + (48329, 512, 277, 'not_attending', '2020-08-06 17:49:11', '2025-12-17 19:47:56', '6AXMZBY4', '3163442'), + (48330, 512, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '6AXMZBY4', '3169555'), + (48331, 512, 285, 'not_attending', '2020-08-14 13:44:08', '2025-12-17 19:47:56', '6AXMZBY4', '3170245'), + (48332, 512, 286, 'not_attending', '2020-08-14 13:44:30', '2025-12-17 19:47:56', '6AXMZBY4', '3170246'), + (48333, 512, 287, 'not_attending', '2020-08-14 13:44:42', '2025-12-17 19:47:56', '6AXMZBY4', '3170247'), + (48334, 512, 288, 'not_attending', '2020-08-14 13:45:39', '2025-12-17 19:47:56', '6AXMZBY4', '3170249'), + (48335, 512, 289, 'not_attending', '2020-08-14 13:45:53', '2025-12-17 19:47:56', '6AXMZBY4', '3170250'), + (48336, 512, 290, 'not_attending', '2020-08-17 02:43:05', '2025-12-17 19:47:56', '6AXMZBY4', '3170251'), + (48337, 512, 291, 'not_attending', '2020-08-17 02:43:12', '2025-12-17 19:47:56', '6AXMZBY4', '3170252'), + (48338, 512, 293, 'not_attending', '2020-08-11 04:31:58', '2025-12-17 19:47:56', '6AXMZBY4', '3172832'), + (48339, 512, 294, 'not_attending', '2020-08-26 23:45:53', '2025-12-17 19:47:56', '6AXMZBY4', '3172833'), + (48340, 512, 295, 'not_attending', '2020-08-11 04:31:30', '2025-12-17 19:47:56', '6AXMZBY4', '3172834'), + (48341, 512, 296, 'attending', '2020-09-12 03:13:29', '2025-12-17 19:47:56', '6AXMZBY4', '3172876'), + (48342, 512, 297, 'not_attending', '2020-08-11 17:26:56', '2025-12-17 19:47:56', '6AXMZBY4', '3173937'), + (48343, 512, 298, 'not_attending', '2020-08-14 13:44:38', '2025-12-17 19:47:56', '6AXMZBY4', '3174556'), + (48344, 512, 299, 'not_attending', '2020-08-14 13:43:28', '2025-12-17 19:47:56', '6AXMZBY4', '3176591'), + (48345, 512, 301, 'not_attending', '2020-08-14 13:44:25', '2025-12-17 19:47:56', '6AXMZBY4', '3178027'), + (48346, 512, 302, 'not_attending', '2020-08-14 13:44:14', '2025-12-17 19:47:56', '6AXMZBY4', '3178028'), + (48347, 512, 303, 'maybe', '2020-08-14 13:44:02', '2025-12-17 19:47:56', '6AXMZBY4', '3178444'), + (48348, 512, 304, 'maybe', '2020-08-29 16:42:10', '2025-12-17 19:47:56', '6AXMZBY4', '3178916'), + (48349, 512, 305, 'not_attending', '2020-08-15 13:02:15', '2025-12-17 19:47:56', '6AXMZBY4', '3179555'), + (48350, 512, 306, 'not_attending', '2020-08-15 13:01:54', '2025-12-17 19:47:56', '6AXMZBY4', '3179777'), + (48351, 512, 307, 'not_attending', '2020-08-17 02:41:18', '2025-12-17 19:47:56', '6AXMZBY4', '3182590'), + (48352, 512, 308, 'not_attending', '2020-08-22 17:10:17', '2025-12-17 19:47:56', '6AXMZBY4', '3183341'), + (48353, 512, 309, 'not_attending', '2020-08-20 00:53:44', '2025-12-17 19:47:56', '6AXMZBY4', '3185332'), + (48354, 512, 310, 'maybe', '2020-08-22 15:36:33', '2025-12-17 19:47:56', '6AXMZBY4', '3186005'), + (48355, 512, 311, 'attending', '2020-08-23 14:59:20', '2025-12-17 19:47:56', '6AXMZBY4', '3186057'), + (48356, 512, 312, 'attending', '2020-09-10 22:43:37', '2025-12-17 19:47:56', '6AXMZBY4', '3187795'), + (48357, 512, 313, 'not_attending', '2020-08-23 05:10:25', '2025-12-17 19:47:56', '6AXMZBY4', '3188127'), + (48358, 512, 315, 'maybe', '2020-08-29 16:42:31', '2025-12-17 19:47:56', '6AXMZBY4', '3189085'), + (48359, 512, 317, 'not_attending', '2020-08-26 15:47:31', '2025-12-17 19:47:56', '6AXMZBY4', '3191735'), + (48360, 512, 318, 'not_attending', '2020-08-29 16:40:36', '2025-12-17 19:47:56', '6AXMZBY4', '3193885'), + (48361, 512, 319, 'maybe', '2020-08-29 16:43:00', '2025-12-17 19:47:56', '6AXMZBY4', '3194179'), + (48362, 512, 322, 'not_attending', '2020-09-16 23:15:25', '2025-12-17 19:47:56', '6AXMZBY4', '3197080'), + (48363, 512, 323, 'not_attending', '2020-09-05 03:41:35', '2025-12-17 19:47:56', '6AXMZBY4', '3197081'), + (48364, 512, 324, 'not_attending', '2020-09-05 03:41:50', '2025-12-17 19:47:56', '6AXMZBY4', '3197082'), + (48365, 512, 325, 'not_attending', '2020-09-05 03:41:55', '2025-12-17 19:47:51', '6AXMZBY4', '3197083'), + (48366, 512, 326, 'not_attending', '2020-09-05 03:41:59', '2025-12-17 19:47:52', '6AXMZBY4', '3197084'), + (48367, 512, 327, 'not_attending', '2020-09-05 03:42:14', '2025-12-17 19:47:52', '6AXMZBY4', '3197085'), + (48368, 512, 328, 'not_attending', '2020-09-05 03:42:18', '2025-12-17 19:47:52', '6AXMZBY4', '3197086'), + (48369, 512, 329, 'not_attending', '2020-09-05 03:42:23', '2025-12-17 19:47:52', '6AXMZBY4', '3197087'), + (48370, 512, 330, 'maybe', '2020-09-05 03:40:13', '2025-12-17 19:47:56', '6AXMZBY4', '3197322'), + (48371, 512, 333, 'not_attending', '2020-09-17 02:02:44', '2025-12-17 19:47:52', '6AXMZBY4', '3199782'), + (48372, 512, 334, 'not_attending', '2020-09-17 02:02:51', '2025-12-17 19:47:52', '6AXMZBY4', '3199784'), + (48373, 512, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '6AXMZBY4', '3200209'), + (48374, 512, 336, 'not_attending', '2020-09-05 03:41:42', '2025-12-17 19:47:56', '6AXMZBY4', '3200495'), + (48375, 512, 337, 'maybe', '2020-09-05 03:40:48', '2025-12-17 19:47:56', '6AXMZBY4', '3201771'), + (48376, 512, 338, 'maybe', '2020-09-05 03:40:01', '2025-12-17 19:47:56', '6AXMZBY4', '3203106'), + (48377, 512, 339, 'maybe', '2020-09-06 19:15:41', '2025-12-17 19:47:56', '6AXMZBY4', '3204469'), + (48378, 512, 340, 'attending', '2020-09-18 22:35:05', '2025-12-17 19:47:56', '6AXMZBY4', '3204470'), + (48379, 512, 341, 'not_attending', '2020-09-17 02:01:34', '2025-12-17 19:47:52', '6AXMZBY4', '3204471'), + (48380, 512, 342, 'not_attending', '2020-09-17 02:02:33', '2025-12-17 19:47:52', '6AXMZBY4', '3204472'), + (48381, 512, 343, 'not_attending', '2020-09-17 02:01:17', '2025-12-17 19:47:56', '6AXMZBY4', '3206759'), + (48382, 512, 344, 'not_attending', '2020-10-29 15:21:10', '2025-12-17 19:47:53', '6AXMZBY4', '3206906'), + (48383, 512, 345, 'maybe', '2020-09-11 18:24:50', '2025-12-17 19:47:56', '6AXMZBY4', '3207423'), + (48384, 512, 346, 'attending', '2020-09-15 22:14:51', '2025-12-17 19:47:56', '6AXMZBY4', '3207515'), + (48385, 512, 347, 'not_attending', '2020-09-17 02:01:27', '2025-12-17 19:47:51', '6AXMZBY4', '3207930'), + (48386, 512, 348, 'not_attending', '2020-09-17 02:02:12', '2025-12-17 19:47:52', '6AXMZBY4', '3209159'), + (48387, 512, 349, 'maybe', '2020-09-11 21:47:49', '2025-12-17 19:47:56', '6AXMZBY4', '3209194'), + (48388, 512, 352, 'maybe', '2020-09-12 21:22:50', '2025-12-17 19:47:56', '6AXMZBY4', '3210514'), + (48389, 512, 354, 'attending', '2020-09-20 22:57:23', '2025-12-17 19:47:56', '6AXMZBY4', '3212570'), + (48390, 512, 355, 'attending', '2020-09-15 00:30:29', '2025-12-17 19:47:56', '6AXMZBY4', '3212571'), + (48391, 512, 356, 'not_attending', '2020-09-17 02:01:23', '2025-12-17 19:47:51', '6AXMZBY4', '3212572'), + (48392, 512, 357, 'not_attending', '2020-09-17 02:02:25', '2025-12-17 19:47:52', '6AXMZBY4', '3212573'), + (48393, 512, 358, 'not_attending', '2020-09-17 18:01:48', '2025-12-17 19:47:56', '6AXMZBY4', '3212579'), + (48394, 512, 359, 'not_attending', '2020-09-17 18:02:03', '2025-12-17 19:47:56', '6AXMZBY4', '3212624'), + (48395, 512, 360, 'not_attending', '2020-09-17 18:00:27', '2025-12-17 19:47:56', '6AXMZBY4', '3212671'), + (48396, 512, 361, 'not_attending', '2020-09-17 18:01:35', '2025-12-17 19:47:56', '6AXMZBY4', '3213323'), + (48397, 512, 362, 'attending', '2020-09-17 02:01:45', '2025-12-17 19:47:52', '6AXMZBY4', '3214207'), + (48398, 512, 363, 'maybe', '2020-09-17 02:01:51', '2025-12-17 19:47:52', '6AXMZBY4', '3217037'), + (48399, 512, 364, 'attending', '2020-09-18 23:11:09', '2025-12-17 19:47:56', '6AXMZBY4', '3217106'), + (48400, 512, 365, 'not_attending', '2020-09-18 17:41:09', '2025-12-17 19:47:51', '6AXMZBY4', '3218510'), + (48401, 512, 366, 'not_attending', '2020-09-22 14:27:24', '2025-12-17 19:47:56', '6AXMZBY4', '3219750'), + (48402, 512, 367, 'not_attending', '2020-09-22 14:27:52', '2025-12-17 19:47:51', '6AXMZBY4', '3219751'), + (48403, 512, 368, 'not_attending', '2020-09-22 14:28:23', '2025-12-17 19:47:52', '6AXMZBY4', '3221403'), + (48404, 512, 369, 'not_attending', '2020-09-28 13:38:07', '2025-12-17 19:47:52', '6AXMZBY4', '3221404'), + (48405, 512, 370, 'not_attending', '2020-09-28 13:38:23', '2025-12-17 19:47:52', '6AXMZBY4', '3221405'), + (48406, 512, 371, 'not_attending', '2020-09-28 13:38:41', '2025-12-17 19:47:52', '6AXMZBY4', '3221406'), + (48407, 512, 372, 'not_attending', '2020-09-29 04:42:32', '2025-12-17 19:47:52', '6AXMZBY4', '3221407'), + (48408, 512, 373, 'not_attending', '2020-09-29 04:42:35', '2025-12-17 19:47:52', '6AXMZBY4', '3221413'), + (48409, 512, 374, 'not_attending', '2020-09-29 04:42:41', '2025-12-17 19:47:53', '6AXMZBY4', '3221415'), + (48410, 512, 375, 'not_attending', '2020-09-28 13:37:49', '2025-12-17 19:47:52', '6AXMZBY4', '3222825'), + (48411, 512, 376, 'not_attending', '2020-09-28 13:38:31', '2025-12-17 19:47:52', '6AXMZBY4', '3222827'), + (48412, 512, 377, 'not_attending', '2020-09-29 04:42:49', '2025-12-17 19:47:53', '6AXMZBY4', '3222828'), + (48413, 512, 378, 'attending', '2020-09-23 17:27:26', '2025-12-17 19:47:52', '6AXMZBY4', '3223725'), + (48414, 512, 379, 'not_attending', '2020-09-29 04:42:21', '2025-12-17 19:47:52', '6AXMZBY4', '3226266'), + (48415, 512, 380, 'not_attending', '2020-09-28 13:37:24', '2025-12-17 19:47:52', '6AXMZBY4', '3226281'), + (48416, 512, 382, 'not_attending', '2020-09-28 13:38:15', '2025-12-17 19:47:52', '6AXMZBY4', '3226873'), + (48417, 512, 383, 'not_attending', '2020-09-28 13:37:20', '2025-12-17 19:47:52', '6AXMZBY4', '3227946'), + (48418, 512, 384, 'attending', '2020-09-29 21:37:34', '2025-12-17 19:47:52', '6AXMZBY4', '3228696'), + (48419, 512, 385, 'attending', '2020-09-29 03:07:29', '2025-12-17 19:47:52', '6AXMZBY4', '3228698'), + (48420, 512, 386, 'attending', '2020-09-29 03:07:33', '2025-12-17 19:47:52', '6AXMZBY4', '3228699'), + (48421, 512, 387, 'attending', '2020-09-29 03:07:41', '2025-12-17 19:47:52', '6AXMZBY4', '3228700'), + (48422, 512, 388, 'attending', '2020-09-29 03:07:43', '2025-12-17 19:47:52', '6AXMZBY4', '3228701'), + (48423, 512, 389, 'not_attending', '2020-10-01 00:22:52', '2025-12-17 19:47:52', '6AXMZBY4', '3231284'), + (48424, 512, 390, 'attending', '2020-10-04 20:47:16', '2025-12-17 19:47:52', '6AXMZBY4', '3231510'), + (48425, 512, 391, 'not_attending', '2020-10-12 21:57:02', '2025-12-17 19:47:52', '6AXMZBY4', '3236446'), + (48426, 512, 392, 'not_attending', '2020-10-12 22:37:19', '2025-12-17 19:47:53', '6AXMZBY4', '3236447'), + (48427, 512, 394, 'not_attending', '2020-11-07 06:49:09', '2025-12-17 19:47:48', '6AXMZBY4', '3236449'), + (48428, 512, 396, 'not_attending', '2021-04-05 11:22:50', '2025-12-17 19:47:46', '6AXMZBY4', '3236451'), + (48429, 512, 398, 'not_attending', '2021-01-08 18:29:15', '2025-12-17 19:47:49', '6AXMZBY4', '3236453'), + (48430, 512, 399, 'not_attending', '2020-10-14 14:18:20', '2025-12-17 19:47:54', '6AXMZBY4', '3236454'), + (48431, 512, 400, 'not_attending', '2021-01-08 18:29:33', '2025-12-17 19:47:50', '6AXMZBY4', '3236455'), + (48432, 512, 403, 'not_attending', '2021-02-01 22:41:06', '2025-12-17 19:47:51', '6AXMZBY4', '3236458'), + (48433, 512, 404, 'not_attending', '2021-03-01 18:40:10', '2025-12-17 19:47:51', '6AXMZBY4', '3236460'), + (48434, 512, 406, 'not_attending', '2021-03-01 18:40:32', '2025-12-17 19:47:44', '6AXMZBY4', '3236464'), + (48435, 512, 407, 'not_attending', '2021-04-05 11:21:43', '2025-12-17 19:47:44', '6AXMZBY4', '3236465'), + (48436, 512, 408, 'not_attending', '2021-02-01 22:40:38', '2025-12-17 19:47:50', '6AXMZBY4', '3236466'), + (48437, 512, 409, 'not_attending', '2020-11-07 06:48:40', '2025-12-17 19:47:54', '6AXMZBY4', '3236467'), + (48438, 512, 410, 'not_attending', '2020-10-14 14:18:34', '2025-12-17 19:47:54', '6AXMZBY4', '3236469'), + (48439, 512, 411, 'maybe', '2020-10-09 03:41:41', '2025-12-17 19:47:52', '6AXMZBY4', '3236596'), + (48440, 512, 413, 'not_attending', '2020-10-12 22:36:43', '2025-12-17 19:47:52', '6AXMZBY4', '3236670'), + (48441, 512, 414, 'maybe', '2020-10-12 22:36:19', '2025-12-17 19:47:52', '6AXMZBY4', '3237277'), + (48442, 512, 415, 'maybe', '2020-10-12 21:56:00', '2025-12-17 19:47:52', '6AXMZBY4', '3238044'), + (48443, 512, 416, 'not_attending', '2020-10-09 03:41:33', '2025-12-17 19:47:52', '6AXMZBY4', '3238073'), + (48444, 512, 417, 'not_attending', '2020-10-09 03:41:55', '2025-12-17 19:47:52', '6AXMZBY4', '3238779'), + (48445, 512, 418, 'not_attending', '2020-10-12 21:56:45', '2025-12-17 19:47:52', '6AXMZBY4', '3241728'), + (48446, 512, 419, 'not_attending', '2020-10-12 21:56:37', '2025-12-17 19:47:52', '6AXMZBY4', '3242234'), + (48447, 512, 420, 'not_attending', '2020-10-12 21:56:56', '2025-12-17 19:47:52', '6AXMZBY4', '3245293'), + (48448, 512, 421, 'not_attending', '2020-10-12 22:36:49', '2025-12-17 19:47:52', '6AXMZBY4', '3245294'), + (48449, 512, 422, 'not_attending', '2020-10-12 22:37:14', '2025-12-17 19:47:53', '6AXMZBY4', '3245295'), + (48450, 512, 423, 'maybe', '2020-10-29 15:21:45', '2025-12-17 19:47:53', '6AXMZBY4', '3245296'), + (48451, 512, 424, 'not_attending', '2020-10-12 22:36:06', '2025-12-17 19:47:52', '6AXMZBY4', '3245751'), + (48452, 512, 425, 'not_attending', '2020-10-14 14:17:35', '2025-12-17 19:47:52', '6AXMZBY4', '3250097'), + (48453, 512, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '6AXMZBY4', '3250232'), + (48454, 512, 427, 'not_attending', '2020-10-29 15:21:07', '2025-12-17 19:47:53', '6AXMZBY4', '3250233'), + (48455, 512, 428, 'not_attending', '2020-10-20 21:08:55', '2025-12-17 19:47:53', '6AXMZBY4', '3250332'), + (48456, 512, 429, 'maybe', '2020-11-07 06:48:45', '2025-12-17 19:47:54', '6AXMZBY4', '3250523'), + (48457, 512, 430, 'not_attending', '2020-10-20 21:08:37', '2025-12-17 19:47:52', '6AXMZBY4', '3253094'), + (48458, 512, 431, 'not_attending', '2020-10-20 21:08:57', '2025-12-17 19:47:53', '6AXMZBY4', '3253225'), + (48459, 512, 432, 'not_attending', '2020-10-20 21:09:32', '2025-12-17 19:47:53', '6AXMZBY4', '3254416'), + (48460, 512, 433, 'not_attending', '2020-10-20 21:09:36', '2025-12-17 19:47:53', '6AXMZBY4', '3254417'), + (48461, 512, 434, 'not_attending', '2020-10-20 21:09:42', '2025-12-17 19:47:53', '6AXMZBY4', '3254418'), + (48462, 512, 435, 'not_attending', '2020-10-20 21:08:52', '2025-12-17 19:47:52', '6AXMZBY4', '3254790'), + (48463, 512, 436, 'not_attending', '2020-10-20 21:08:43', '2025-12-17 19:47:52', '6AXMZBY4', '3256119'), + (48464, 512, 437, 'not_attending', '2020-10-20 21:09:05', '2025-12-17 19:47:53', '6AXMZBY4', '3256160'), + (48465, 512, 438, 'not_attending', '2020-10-27 05:16:20', '2025-12-17 19:47:53', '6AXMZBY4', '3256163'), + (48466, 512, 439, 'not_attending', '2020-10-20 21:09:03', '2025-12-17 19:47:53', '6AXMZBY4', '3256164'), + (48467, 512, 440, 'attending', '2020-10-29 15:21:51', '2025-12-17 19:47:53', '6AXMZBY4', '3256168'), + (48468, 512, 441, 'attending', '2020-10-20 21:09:45', '2025-12-17 19:47:54', '6AXMZBY4', '3256169'), + (48469, 512, 443, 'attending', '2020-10-26 00:23:37', '2025-12-17 19:47:53', '6AXMZBY4', '3263578'), + (48470, 512, 444, 'maybe', '2020-10-30 19:00:13', '2025-12-17 19:47:53', '6AXMZBY4', '3263745'), + (48471, 512, 445, 'not_attending', '2020-11-07 06:47:51', '2025-12-17 19:47:54', '6AXMZBY4', '3266138'), + (48472, 512, 446, 'not_attending', '2020-10-27 05:15:49', '2025-12-17 19:47:53', '6AXMZBY4', '3267163'), + (48473, 512, 447, 'not_attending', '2020-10-27 05:16:01', '2025-12-17 19:47:53', '6AXMZBY4', '3267895'), + (48474, 512, 448, 'maybe', '2020-10-30 23:48:33', '2025-12-17 19:47:53', '6AXMZBY4', '3271831'), + (48475, 512, 449, 'maybe', '2020-11-02 01:18:06', '2025-12-17 19:47:53', '6AXMZBY4', '3272055'), + (48476, 512, 451, 'not_attending', '2020-11-02 01:17:48', '2025-12-17 19:47:53', '6AXMZBY4', '3272186'), + (48477, 512, 452, 'attending', '2020-11-30 00:56:25', '2025-12-17 19:47:54', '6AXMZBY4', '3272981'), + (48478, 512, 453, 'not_attending', '2020-11-07 06:47:41', '2025-12-17 19:47:54', '6AXMZBY4', '3274032'), + (48479, 512, 454, 'maybe', '2020-11-13 21:57:31', '2025-12-17 19:47:54', '6AXMZBY4', '3275665'), + (48480, 512, 456, 'not_attending', '2020-11-07 06:48:06', '2025-12-17 19:47:54', '6AXMZBY4', '3276428'), + (48481, 512, 457, 'not_attending', '2020-11-08 00:02:41', '2025-12-17 19:47:53', '6AXMZBY4', '3279087'), + (48482, 512, 458, 'not_attending', '2020-11-07 06:47:32', '2025-12-17 19:47:53', '6AXMZBY4', '3279233'), + (48483, 512, 460, 'not_attending', '2020-11-10 18:13:08', '2025-12-17 19:47:54', '6AXMZBY4', '3281468'), + (48484, 512, 461, 'not_attending', '2020-11-10 00:41:46', '2025-12-17 19:47:53', '6AXMZBY4', '3281469'), + (48485, 512, 462, 'not_attending', '2020-11-10 18:12:19', '2025-12-17 19:47:54', '6AXMZBY4', '3281470'), + (48486, 512, 463, 'not_attending', '2020-11-10 18:12:33', '2025-12-17 19:47:54', '6AXMZBY4', '3281553'), + (48487, 512, 464, 'not_attending', '2020-11-10 18:13:11', '2025-12-17 19:47:54', '6AXMZBY4', '3281554'), + (48488, 512, 465, 'not_attending', '2020-11-10 18:13:21', '2025-12-17 19:47:54', '6AXMZBY4', '3281555'), + (48489, 512, 466, 'not_attending', '2020-11-10 18:13:04', '2025-12-17 19:47:54', '6AXMZBY4', '3281829'), + (48490, 512, 467, 'not_attending', '2020-11-10 18:12:58', '2025-12-17 19:47:54', '6AXMZBY4', '3282756'), + (48491, 512, 468, 'attending', '2020-11-19 17:08:48', '2025-12-17 19:47:54', '6AXMZBY4', '3285413'), + (48492, 512, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '6AXMZBY4', '3285414'), + (48493, 512, 471, 'not_attending', '2020-11-17 21:05:15', '2025-12-17 19:47:54', '6AXMZBY4', '3285445'), + (48494, 512, 472, 'not_attending', '2020-11-11 23:51:19', '2025-12-17 19:47:54', '6AXMZBY4', '3286541'), + (48495, 512, 473, 'not_attending', '2020-11-11 23:51:29', '2025-12-17 19:47:54', '6AXMZBY4', '3286569'), + (48496, 512, 474, 'not_attending', '2020-11-11 23:51:12', '2025-12-17 19:47:54', '6AXMZBY4', '3286570'), + (48497, 512, 475, 'not_attending', '2020-11-17 21:05:31', '2025-12-17 19:47:54', '6AXMZBY4', '3286760'), + (48498, 512, 476, 'not_attending', '2020-11-17 21:05:12', '2025-12-17 19:47:54', '6AXMZBY4', '3286982'), + (48499, 512, 477, 'not_attending', '2020-11-26 06:38:34', '2025-12-17 19:47:54', '6AXMZBY4', '3289559'), + (48500, 512, 478, 'not_attending', '2020-11-17 21:05:01', '2025-12-17 19:47:54', '6AXMZBY4', '3290899'), + (48501, 512, 479, 'not_attending', '2020-11-19 17:09:02', '2025-12-17 19:47:54', '6AXMZBY4', '3295306'), + (48502, 512, 480, 'attending', '2020-11-19 17:08:43', '2025-12-17 19:47:54', '6AXMZBY4', '3295313'), + (48503, 512, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '6AXMZBY4', '3297764'), + (48504, 512, 482, 'not_attending', '2020-11-24 19:45:14', '2025-12-17 19:47:54', '6AXMZBY4', '3297769'), + (48505, 512, 484, 'not_attending', '2020-11-21 00:04:03', '2025-12-17 19:47:54', '6AXMZBY4', '3297792'), + (48506, 512, 486, 'not_attending', '2020-11-24 19:45:10', '2025-12-17 19:47:54', '6AXMZBY4', '3300281'), + (48507, 512, 487, 'not_attending', '2020-11-26 06:38:24', '2025-12-17 19:47:54', '6AXMZBY4', '3311122'), + (48508, 512, 488, 'not_attending', '2020-11-29 04:38:59', '2025-12-17 19:47:54', '6AXMZBY4', '3312757'), + (48509, 512, 489, 'maybe', '2020-11-27 00:39:52', '2025-12-17 19:47:54', '6AXMZBY4', '3313022'), + (48510, 512, 490, 'not_attending', '2020-11-29 04:39:20', '2025-12-17 19:47:54', '6AXMZBY4', '3313532'), + (48511, 512, 491, 'not_attending', '2020-11-29 04:39:28', '2025-12-17 19:47:55', '6AXMZBY4', '3313533'), + (48512, 512, 492, 'not_attending', '2020-11-29 04:39:07', '2025-12-17 19:47:54', '6AXMZBY4', '3313731'), + (48513, 512, 493, 'attending', '2020-11-29 04:10:20', '2025-12-17 19:47:54', '6AXMZBY4', '3313856'), + (48514, 512, 494, 'attending', '2020-11-29 17:02:33', '2025-12-17 19:47:54', '6AXMZBY4', '3313866'), + (48515, 512, 495, 'not_attending', '2020-12-08 00:58:14', '2025-12-17 19:47:54', '6AXMZBY4', '3314009'), + (48516, 512, 496, 'not_attending', '2020-11-29 22:14:23', '2025-12-17 19:47:54', '6AXMZBY4', '3314269'), + (48517, 512, 497, 'not_attending', '2020-11-29 22:14:43', '2025-12-17 19:47:55', '6AXMZBY4', '3314270'), + (48518, 512, 498, 'attending', '2020-12-08 00:58:16', '2025-12-17 19:47:54', '6AXMZBY4', '3314302'), + (48519, 512, 499, 'not_attending', '2020-12-08 16:12:11', '2025-12-17 19:47:55', '6AXMZBY4', '3314909'), + (48520, 512, 500, 'not_attending', '2020-12-08 16:13:07', '2025-12-17 19:47:55', '6AXMZBY4', '3314964'), + (48521, 512, 501, 'not_attending', '2020-12-08 16:11:51', '2025-12-17 19:47:54', '6AXMZBY4', '3317834'), + (48522, 512, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '6AXMZBY4', '3323365'), + (48523, 512, 503, 'not_attending', '2020-12-08 16:12:49', '2025-12-17 19:47:55', '6AXMZBY4', '3323366'), + (48524, 512, 504, 'not_attending', '2020-12-08 16:13:03', '2025-12-17 19:47:55', '6AXMZBY4', '3323368'), + (48525, 512, 505, 'not_attending', '2020-12-08 16:13:12', '2025-12-17 19:47:55', '6AXMZBY4', '3323369'), + (48526, 512, 506, 'maybe', '2020-12-08 16:12:26', '2025-12-17 19:47:55', '6AXMZBY4', '3323375'), + (48527, 512, 507, 'not_attending', '2020-12-08 16:13:17', '2025-12-17 19:47:48', '6AXMZBY4', '3324148'), + (48528, 512, 508, 'not_attending', '2021-01-08 18:29:08', '2025-12-17 19:47:48', '6AXMZBY4', '3324231'), + (48529, 512, 509, 'not_attending', '2021-01-08 18:29:19', '2025-12-17 19:47:49', '6AXMZBY4', '3324232'), + (48530, 512, 510, 'maybe', '2021-01-24 05:30:12', '2025-12-17 19:47:49', '6AXMZBY4', '3324233'), + (48531, 512, 511, 'not_attending', '2020-12-08 16:12:54', '2025-12-17 19:47:55', '6AXMZBY4', '3325335'), + (48532, 512, 512, 'not_attending', '2020-12-08 16:12:42', '2025-12-17 19:47:55', '6AXMZBY4', '3325336'), + (48533, 512, 513, 'attending', '2020-12-13 22:31:53', '2025-12-17 19:47:55', '6AXMZBY4', '3329383'), + (48534, 512, 519, 'not_attending', '2020-12-17 18:11:22', '2025-12-17 19:47:55', '6AXMZBY4', '3337448'), + (48535, 512, 522, 'not_attending', '2020-12-17 18:10:47', '2025-12-17 19:47:55', '6AXMZBY4', '3342836'), + (48536, 512, 525, 'not_attending', '2020-12-22 05:41:20', '2025-12-17 19:47:48', '6AXMZBY4', '3350467'), + (48537, 512, 526, 'attending', '2021-01-01 03:04:26', '2025-12-17 19:47:48', '6AXMZBY4', '3351539'), + (48538, 512, 531, 'attending', '2021-01-02 06:09:30', '2025-12-17 19:47:48', '6AXMZBY4', '3378210'), + (48539, 512, 535, 'not_attending', '2021-01-08 18:28:08', '2025-12-17 19:47:48', '6AXMZBY4', '3384729'), + (48540, 512, 536, 'attending', '2021-01-06 01:02:55', '2025-12-17 19:47:48', '6AXMZBY4', '3386848'), + (48541, 512, 537, 'not_attending', '2021-01-08 18:28:13', '2025-12-17 19:47:48', '6AXMZBY4', '3387153'), + (48542, 512, 538, 'not_attending', '2021-01-08 18:28:57', '2025-12-17 19:47:48', '6AXMZBY4', '3388151'), + (48543, 512, 539, 'attending', '2021-01-09 05:12:53', '2025-12-17 19:47:48', '6AXMZBY4', '3389158'), + (48544, 512, 540, 'attending', '2021-01-07 05:30:19', '2025-12-17 19:47:48', '6AXMZBY4', '3389527'), + (48545, 512, 541, 'not_attending', '2021-01-08 18:27:50', '2025-12-17 19:47:48', '6AXMZBY4', '3391683'), + (48546, 512, 543, 'not_attending', '2021-01-12 18:38:37', '2025-12-17 19:47:48', '6AXMZBY4', '3396499'), + (48547, 512, 545, 'not_attending', '2021-01-16 22:12:49', '2025-12-17 19:47:49', '6AXMZBY4', '3396502'), + (48548, 512, 546, 'not_attending', '2021-01-16 22:13:02', '2025-12-17 19:47:49', '6AXMZBY4', '3396503'), + (48549, 512, 547, 'not_attending', '2021-01-16 22:13:09', '2025-12-17 19:47:49', '6AXMZBY4', '3396504'), + (48550, 512, 548, 'attending', '2021-01-12 18:38:22', '2025-12-17 19:47:48', '6AXMZBY4', '3403650'), + (48551, 512, 549, 'not_attending', '2021-01-16 22:12:39', '2025-12-17 19:47:49', '6AXMZBY4', '3406988'), + (48552, 512, 550, 'maybe', '2021-01-16 22:13:17', '2025-12-17 19:47:48', '6AXMZBY4', '3407018'), + (48553, 512, 551, 'not_attending', '2021-01-16 22:12:44', '2025-12-17 19:47:49', '6AXMZBY4', '3407219'), + (48554, 512, 553, 'attending', '2021-01-13 05:32:22', '2025-12-17 19:47:48', '6AXMZBY4', '3407248'), + (48555, 512, 554, 'not_attending', '2021-01-16 22:12:52', '2025-12-17 19:47:49', '6AXMZBY4', '3408338'), + (48556, 512, 555, 'attending', '2021-01-23 18:45:02', '2025-12-17 19:47:49', '6AXMZBY4', '3416576'), + (48557, 512, 556, 'attending', '2021-01-25 19:49:35', '2025-12-17 19:47:49', '6AXMZBY4', '3417170'), + (48558, 512, 557, 'not_attending', '2021-01-19 17:00:55', '2025-12-17 19:47:49', '6AXMZBY4', '3418748'), + (48559, 512, 558, 'not_attending', '2021-01-22 23:25:47', '2025-12-17 19:47:49', '6AXMZBY4', '3418925'), + (48560, 512, 559, 'not_attending', '2021-01-21 16:44:17', '2025-12-17 19:47:49', '6AXMZBY4', '3421439'), + (48561, 512, 560, 'not_attending', '2021-01-21 16:43:41', '2025-12-17 19:47:49', '6AXMZBY4', '3421715'), + (48562, 512, 561, 'attending', '2021-01-23 18:44:58', '2025-12-17 19:47:49', '6AXMZBY4', '3421916'), + (48563, 512, 563, 'attending', '2021-01-25 19:23:31', '2025-12-17 19:47:49', '6AXMZBY4', '3425913'), + (48564, 512, 564, 'attending', '2021-01-25 01:41:11', '2025-12-17 19:47:49', '6AXMZBY4', '3426074'), + (48565, 512, 565, 'not_attending', '2021-01-24 05:29:50', '2025-12-17 19:47:49', '6AXMZBY4', '3426083'), + (48566, 512, 566, 'not_attending', '2021-01-24 05:30:17', '2025-12-17 19:47:49', '6AXMZBY4', '3427928'), + (48567, 512, 567, 'not_attending', '2021-01-27 23:46:57', '2025-12-17 19:47:50', '6AXMZBY4', '3428895'), + (48568, 512, 568, 'attending', '2021-01-24 22:39:18', '2025-12-17 19:47:50', '6AXMZBY4', '3430267'), + (48569, 512, 569, 'attending', '2021-01-25 19:49:29', '2025-12-17 19:47:49', '6AXMZBY4', '3432673'), + (48570, 512, 570, 'not_attending', '2021-01-27 21:11:36', '2025-12-17 19:47:50', '6AXMZBY4', '3435538'), + (48571, 512, 571, 'not_attending', '2021-02-01 22:40:24', '2025-12-17 19:47:50', '6AXMZBY4', '3435539'), + (48572, 512, 572, 'not_attending', '2021-01-26 05:23:15', '2025-12-17 19:47:50', '6AXMZBY4', '3435540'), + (48573, 512, 573, 'not_attending', '2021-02-01 22:41:03', '2025-12-17 19:47:50', '6AXMZBY4', '3435542'), + (48574, 512, 574, 'not_attending', '2021-02-01 22:41:09', '2025-12-17 19:47:51', '6AXMZBY4', '3435543'), + (48575, 512, 575, 'attending', '2021-01-27 23:45:28', '2025-12-17 19:47:50', '6AXMZBY4', '3437492'), + (48576, 512, 576, 'attending', '2021-01-27 22:34:39', '2025-12-17 19:47:50', '6AXMZBY4', '3438748'), + (48577, 512, 578, 'maybe', '2021-01-28 20:57:37', '2025-12-17 19:47:50', '6AXMZBY4', '3440043'), + (48578, 512, 579, 'attending', '2021-01-28 20:57:46', '2025-12-17 19:47:50', '6AXMZBY4', '3440978'), + (48579, 512, 580, 'maybe', '2021-01-30 21:12:14', '2025-12-17 19:47:50', '6AXMZBY4', '3444240'), + (48580, 512, 581, 'not_attending', '2021-02-01 00:01:13', '2025-12-17 19:47:50', '6AXMZBY4', '3445029'), + (48581, 512, 582, 'maybe', '2021-02-01 00:01:03', '2025-12-17 19:47:50', '6AXMZBY4', '3445769'), + (48582, 512, 583, 'not_attending', '2021-02-01 22:41:22', '2025-12-17 19:47:50', '6AXMZBY4', '3449144'), + (48583, 512, 584, 'not_attending', '2021-02-01 00:01:32', '2025-12-17 19:47:50', '6AXMZBY4', '3449466'), + (48584, 512, 585, 'not_attending', '2021-02-01 22:40:12', '2025-12-17 19:47:50', '6AXMZBY4', '3449468'), + (48585, 512, 586, 'not_attending', '2021-02-01 22:40:20', '2025-12-17 19:47:50', '6AXMZBY4', '3449469'), + (48586, 512, 587, 'not_attending', '2021-02-01 22:40:28', '2025-12-17 19:47:50', '6AXMZBY4', '3449470'), + (48587, 512, 588, 'not_attending', '2021-02-01 22:40:31', '2025-12-17 19:47:50', '6AXMZBY4', '3449471'), + (48588, 512, 589, 'not_attending', '2021-02-01 22:40:33', '2025-12-17 19:47:50', '6AXMZBY4', '3449473'), + (48589, 512, 590, 'not_attending', '2021-02-03 00:05:19', '2025-12-17 19:47:50', '6AXMZBY4', '3459150'), + (48590, 512, 591, 'not_attending', '2021-02-06 00:35:09', '2025-12-17 19:47:50', '6AXMZBY4', '3465880'), + (48591, 512, 592, 'not_attending', '2021-02-08 18:37:17', '2025-12-17 19:47:50', '6AXMZBY4', '3467757'), + (48592, 512, 593, 'not_attending', '2021-02-08 18:37:11', '2025-12-17 19:47:50', '6AXMZBY4', '3467758'), + (48593, 512, 594, 'not_attending', '2021-02-08 18:37:26', '2025-12-17 19:47:51', '6AXMZBY4', '3467759'), + (48594, 512, 595, 'not_attending', '2021-02-08 18:37:45', '2025-12-17 19:47:51', '6AXMZBY4', '3467761'), + (48595, 512, 596, 'not_attending', '2021-02-08 18:37:50', '2025-12-17 19:47:51', '6AXMZBY4', '3467762'), + (48596, 512, 597, 'not_attending', '2021-02-08 18:37:54', '2025-12-17 19:47:51', '6AXMZBY4', '3467764'), + (48597, 512, 598, 'not_attending', '2021-02-06 04:46:45', '2025-12-17 19:47:50', '6AXMZBY4', '3468003'), + (48598, 512, 599, 'not_attending', '2021-02-08 18:36:15', '2025-12-17 19:47:50', '6AXMZBY4', '3468117'), + (48599, 512, 600, 'not_attending', '2021-02-21 17:27:40', '2025-12-17 19:47:50', '6AXMZBY4', '3468125'), + (48600, 512, 601, 'not_attending', '2021-02-08 18:36:23', '2025-12-17 19:47:50', '6AXMZBY4', '3468131'), + (48601, 512, 602, 'attending', '2021-02-08 18:36:02', '2025-12-17 19:47:50', '6AXMZBY4', '3470303'), + (48602, 512, 603, 'attending', '2021-02-08 18:36:34', '2025-12-17 19:47:50', '6AXMZBY4', '3470304'), + (48603, 512, 604, 'attending', '2021-02-08 18:36:36', '2025-12-17 19:47:50', '6AXMZBY4', '3470305'), + (48604, 512, 605, 'attending', '2021-02-10 18:20:20', '2025-12-17 19:47:50', '6AXMZBY4', '3470991'), + (48605, 512, 606, 'not_attending', '2021-02-08 18:35:54', '2025-12-17 19:47:50', '6AXMZBY4', '3470998'), + (48606, 512, 607, 'maybe', '2021-02-20 00:41:21', '2025-12-17 19:47:50', '6AXMZBY4', '3471882'), + (48607, 512, 608, 'not_attending', '2021-02-10 05:33:36', '2025-12-17 19:47:50', '6AXMZBY4', '3475332'), + (48608, 512, 609, 'attending', '2021-02-10 18:20:10', '2025-12-17 19:47:50', '6AXMZBY4', '3480916'), + (48609, 512, 610, 'not_attending', '2021-02-11 05:30:48', '2025-12-17 19:47:50', '6AXMZBY4', '3482159'), + (48610, 512, 611, 'not_attending', '2021-02-13 02:41:09', '2025-12-17 19:47:50', '6AXMZBY4', '3482659'), + (48611, 512, 612, 'not_attending', '2021-02-15 05:27:56', '2025-12-17 19:47:50', '6AXMZBY4', '3490040'), + (48612, 512, 613, 'not_attending', '2021-02-15 05:28:39', '2025-12-17 19:47:50', '6AXMZBY4', '3490041'), + (48613, 512, 614, 'not_attending', '2021-02-15 05:28:50', '2025-12-17 19:47:51', '6AXMZBY4', '3490042'), + (48614, 512, 615, 'not_attending', '2021-02-15 05:28:06', '2025-12-17 19:47:50', '6AXMZBY4', '3490045'), + (48615, 512, 616, 'attending', '2021-02-18 05:15:34', '2025-12-17 19:47:50', '6AXMZBY4', '3493478'), + (48616, 512, 617, 'not_attending', '2021-02-21 17:28:28', '2025-12-17 19:47:50', '6AXMZBY4', '3499119'), + (48617, 512, 618, 'maybe', '2021-02-19 23:56:53', '2025-12-17 19:47:50', '6AXMZBY4', '3503991'), + (48618, 512, 620, 'not_attending', '2021-02-23 20:27:29', '2025-12-17 19:47:50', '6AXMZBY4', '3513703'), + (48619, 512, 621, 'attending', '2021-02-28 05:02:59', '2025-12-17 19:47:51', '6AXMZBY4', '3517815'), + (48620, 512, 622, 'attending', '2021-02-28 05:03:00', '2025-12-17 19:47:51', '6AXMZBY4', '3517816'), + (48621, 512, 623, 'not_attending', '2021-02-27 01:04:17', '2025-12-17 19:47:51', '6AXMZBY4', '3523941'), + (48622, 512, 624, 'not_attending', '2021-02-27 05:05:16', '2025-12-17 19:47:50', '6AXMZBY4', '3528556'), + (48623, 512, 625, 'not_attending', '2021-03-01 03:22:04', '2025-12-17 19:47:51', '6AXMZBY4', '3533296'), + (48624, 512, 626, 'not_attending', '2021-03-01 03:21:51', '2025-12-17 19:47:51', '6AXMZBY4', '3533298'), + (48625, 512, 627, 'not_attending', '2021-03-06 01:38:34', '2025-12-17 19:47:51', '6AXMZBY4', '3533303'), + (48626, 512, 628, 'not_attending', '2021-03-01 18:40:00', '2025-12-17 19:47:51', '6AXMZBY4', '3533305'), + (48627, 512, 629, 'maybe', '2021-03-06 01:38:58', '2025-12-17 19:47:51', '6AXMZBY4', '3533307'), + (48628, 512, 630, 'not_attending', '2021-03-01 03:22:06', '2025-12-17 19:47:51', '6AXMZBY4', '3533425'), + (48629, 512, 631, 'maybe', '2021-03-01 03:21:29', '2025-12-17 19:47:51', '6AXMZBY4', '3533850'), + (48630, 512, 632, 'not_attending', '2021-03-07 08:33:30', '2025-12-17 19:47:51', '6AXMZBY4', '3533853'), + (48631, 512, 633, 'not_attending', '2021-03-01 18:40:27', '2025-12-17 19:47:44', '6AXMZBY4', '3534717'), + (48632, 512, 634, 'not_attending', '2021-03-01 18:40:35', '2025-12-17 19:47:44', '6AXMZBY4', '3534718'), + (48633, 512, 635, 'not_attending', '2021-03-01 18:40:45', '2025-12-17 19:47:44', '6AXMZBY4', '3534719'), + (48634, 512, 636, 'not_attending', '2021-04-05 11:21:50', '2025-12-17 19:47:45', '6AXMZBY4', '3534720'), + (48635, 512, 637, 'not_attending', '2021-03-01 18:37:29', '2025-12-17 19:47:51', '6AXMZBY4', '3536411'), + (48636, 512, 638, 'maybe', '2021-03-03 04:18:20', '2025-12-17 19:47:44', '6AXMZBY4', '3536632'), + (48637, 512, 639, 'maybe', '2021-03-03 04:18:01', '2025-12-17 19:47:51', '6AXMZBY4', '3536656'), + (48638, 512, 640, 'not_attending', '2021-03-03 04:18:52', '2025-12-17 19:47:51', '6AXMZBY4', '3538866'), + (48639, 512, 641, 'attending', '2021-04-02 12:19:46', '2025-12-17 19:47:44', '6AXMZBY4', '3539916'), + (48640, 512, 642, 'attending', '2021-04-05 11:21:59', '2025-12-17 19:47:44', '6AXMZBY4', '3539917'), + (48641, 512, 643, 'attending', '2021-04-05 11:21:58', '2025-12-17 19:47:45', '6AXMZBY4', '3539918'), + (48642, 512, 644, 'attending', '2021-04-05 11:22:02', '2025-12-17 19:47:45', '6AXMZBY4', '3539919'), + (48643, 512, 645, 'attending', '2021-04-05 11:22:57', '2025-12-17 19:47:46', '6AXMZBY4', '3539920'), + (48644, 512, 646, 'attending', '2021-05-14 14:03:56', '2025-12-17 19:47:46', '6AXMZBY4', '3539921'), + (48645, 512, 647, 'maybe', '2021-05-21 12:35:10', '2025-12-17 19:47:46', '6AXMZBY4', '3539922'), + (48646, 512, 648, 'attending', '2021-05-29 16:14:37', '2025-12-17 19:47:47', '6AXMZBY4', '3539923'), + (48647, 512, 649, 'attending', '2021-03-03 16:32:52', '2025-12-17 19:47:51', '6AXMZBY4', '3539927'), + (48648, 512, 650, 'maybe', '2021-03-27 14:57:20', '2025-12-17 19:47:44', '6AXMZBY4', '3539928'), + (48649, 512, 651, 'not_attending', '2021-03-07 08:33:42', '2025-12-17 19:47:51', '6AXMZBY4', '3541045'), + (48650, 512, 652, 'not_attending', '2021-03-06 01:38:52', '2025-12-17 19:47:51', '6AXMZBY4', '3544466'), + (48651, 512, 654, 'not_attending', '2021-03-07 08:33:24', '2025-12-17 19:47:51', '6AXMZBY4', '3546990'), + (48652, 512, 655, 'attending', '2021-03-07 08:34:05', '2025-12-17 19:47:51', '6AXMZBY4', '3547129'), + (48653, 512, 656, 'not_attending', '2021-03-07 08:34:10', '2025-12-17 19:47:51', '6AXMZBY4', '3547130'), + (48654, 512, 657, 'attending', '2021-04-13 09:09:13', '2025-12-17 19:47:45', '6AXMZBY4', '3547132'), + (48655, 512, 658, 'attending', '2021-06-07 09:52:37', '2025-12-17 19:47:47', '6AXMZBY4', '3547134'), + (48656, 512, 659, 'attending', '2021-04-05 11:21:55', '2025-12-17 19:47:44', '6AXMZBY4', '3547135'), + (48657, 512, 661, 'attending', '2021-04-03 20:33:00', '2025-12-17 19:47:44', '6AXMZBY4', '3547137'), + (48658, 512, 662, 'attending', '2021-04-05 11:22:03', '2025-12-17 19:47:45', '6AXMZBY4', '3547138'), + (48659, 512, 663, 'attending', '2021-04-05 11:22:55', '2025-12-17 19:47:46', '6AXMZBY4', '3547140'), + (48660, 512, 668, 'attending', '2021-05-12 03:43:15', '2025-12-17 19:47:46', '6AXMZBY4', '3547146'), + (48661, 512, 669, 'attending', '2021-06-22 10:48:57', '2025-12-17 19:47:38', '6AXMZBY4', '3547147'), + (48662, 512, 670, 'attending', '2021-06-07 09:53:06', '2025-12-17 19:47:48', '6AXMZBY4', '3547148'), + (48663, 512, 672, 'not_attending', '2021-05-21 12:35:04', '2025-12-17 19:47:46', '6AXMZBY4', '3547150'), + (48664, 512, 673, 'attending', '2021-06-30 09:52:59', '2025-12-17 19:47:38', '6AXMZBY4', '3547151'), + (48665, 512, 676, 'maybe', '2021-07-24 15:01:06', '2025-12-17 19:47:40', '6AXMZBY4', '3547154'), + (48666, 512, 677, 'attending', '2021-05-12 03:44:28', '2025-12-17 19:47:47', '6AXMZBY4', '3547155'), + (48667, 512, 678, 'not_attending', '2021-03-07 08:33:51', '2025-12-17 19:47:51', '6AXMZBY4', '3547158'), + (48668, 512, 680, 'maybe', '2021-03-07 08:33:08', '2025-12-17 19:47:51', '6AXMZBY4', '3547700'), + (48669, 512, 683, 'not_attending', '2021-03-12 11:49:58', '2025-12-17 19:47:51', '6AXMZBY4', '3548818'), + (48670, 512, 684, 'maybe', '2021-03-08 13:45:21', '2025-12-17 19:47:51', '6AXMZBY4', '3549257'), + (48671, 512, 685, 'maybe', '2021-04-05 11:21:33', '2025-12-17 19:47:44', '6AXMZBY4', '3551564'), + (48672, 512, 686, 'maybe', '2021-03-12 13:39:57', '2025-12-17 19:47:51', '6AXMZBY4', '3553333'), + (48673, 512, 688, 'not_attending', '2021-03-15 05:24:09', '2025-12-17 19:47:51', '6AXMZBY4', '3553729'), + (48674, 512, 689, 'not_attending', '2021-03-15 05:25:38', '2025-12-17 19:47:44', '6AXMZBY4', '3555564'), + (48675, 512, 690, 'maybe', '2021-03-15 05:25:33', '2025-12-17 19:47:43', '6AXMZBY4', '3559954'), + (48676, 512, 691, 'maybe', '2021-03-20 00:11:20', '2025-12-17 19:47:45', '6AXMZBY4', '3561928'), + (48677, 512, 693, 'maybe', '2021-03-15 05:23:54', '2025-12-17 19:47:51', '6AXMZBY4', '3565907'), + (48678, 512, 695, 'maybe', '2021-03-18 09:56:31', '2025-12-17 19:47:51', '6AXMZBY4', '3567535'), + (48679, 512, 696, 'not_attending', '2021-03-15 05:24:46', '2025-12-17 19:47:51', '6AXMZBY4', '3567536'), + (48680, 512, 698, 'not_attending', '2021-03-15 15:37:41', '2025-12-17 19:47:44', '6AXMZBY4', '3571867'), + (48681, 512, 703, 'attending', '2021-04-11 22:24:44', '2025-12-17 19:47:44', '6AXMZBY4', '3578388'), + (48682, 512, 705, 'maybe', '2021-03-28 12:28:32', '2025-12-17 19:47:44', '6AXMZBY4', '3581895'), + (48683, 512, 706, 'maybe', '2021-03-20 00:11:05', '2025-12-17 19:47:45', '6AXMZBY4', '3582734'), + (48684, 512, 707, 'attending', '2021-03-30 09:59:19', '2025-12-17 19:47:46', '6AXMZBY4', '3583262'), + (48685, 512, 715, 'not_attending', '2021-03-31 21:50:50', '2025-12-17 19:47:44', '6AXMZBY4', '3604146'), + (48686, 512, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXMZBY4', '3619523'), + (48687, 512, 718, 'maybe', '2021-03-27 14:57:16', '2025-12-17 19:47:44', '6AXMZBY4', '3626844'), + (48688, 512, 719, 'maybe', '2021-04-08 10:03:26', '2025-12-17 19:47:44', '6AXMZBY4', '3635405'), + (48689, 512, 724, 'attending', '2021-05-09 03:54:29', '2025-12-17 19:47:46', '6AXMZBY4', '3661369'), + (48690, 512, 725, 'attending', '2021-05-23 01:02:28', '2025-12-17 19:47:47', '6AXMZBY4', '3661372'), + (48691, 512, 728, 'maybe', '2021-04-05 11:21:37', '2025-12-17 19:47:44', '6AXMZBY4', '3668073'), + (48692, 512, 729, 'maybe', '2021-04-05 11:22:46', '2025-12-17 19:47:46', '6AXMZBY4', '3668075'), + (48693, 512, 730, 'maybe', '2021-04-05 11:22:53', '2025-12-17 19:47:46', '6AXMZBY4', '3668076'), + (48694, 512, 731, 'maybe', '2021-04-05 11:20:47', '2025-12-17 19:47:44', '6AXMZBY4', '3674262'), + (48695, 512, 732, 'maybe', '2021-04-05 11:22:32', '2025-12-17 19:47:45', '6AXMZBY4', '3674268'), + (48696, 512, 734, 'maybe', '2021-04-04 20:35:10', '2025-12-17 19:47:44', '6AXMZBY4', '3676806'), + (48697, 512, 735, 'maybe', '2021-04-05 09:58:03', '2025-12-17 19:47:46', '6AXMZBY4', '3677402'), + (48698, 512, 736, 'maybe', '2021-04-08 10:03:57', '2025-12-17 19:47:44', '6AXMZBY4', '3677701'), + (48699, 512, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '6AXMZBY4', '3730212'), + (48700, 512, 777, 'attending', '2021-04-29 10:18:35', '2025-12-17 19:47:46', '6AXMZBY4', '3746248'), + (48701, 512, 779, 'maybe', '2021-05-03 10:06:41', '2025-12-17 19:47:46', '6AXMZBY4', '3757118'), + (48702, 512, 790, 'not_attending', '2021-05-08 09:00:37', '2025-12-17 19:47:46', '6AXMZBY4', '3789923'), + (48703, 512, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '6AXMZBY4', '3793156'), + (48704, 512, 800, 'not_attending', '2021-05-12 15:36:17', '2025-12-17 19:47:46', '6AXMZBY4', '3800908'), + (48705, 512, 805, 'attending', '2021-06-07 09:52:44', '2025-12-17 19:47:47', '6AXMZBY4', '3804777'), + (48706, 512, 816, 'maybe', '2021-05-19 00:31:01', '2025-12-17 19:47:46', '6AXMZBY4', '3826524'), + (48707, 512, 823, 'maybe', '2021-06-05 06:07:15', '2025-12-17 19:47:48', '6AXMZBY4', '3974109'), + (48708, 512, 826, 'maybe', '2021-06-05 06:06:55', '2025-12-17 19:47:48', '6AXMZBY4', '3975310'), + (48709, 512, 827, 'attending', '2021-06-05 06:05:34', '2025-12-17 19:47:47', '6AXMZBY4', '3975311'), + (48710, 512, 828, 'attending', '2021-06-07 09:52:40', '2025-12-17 19:47:47', '6AXMZBY4', '3975312'), + (48711, 512, 834, 'maybe', '2021-06-07 09:52:29', '2025-12-17 19:47:47', '6AXMZBY4', '3990439'), + (48712, 512, 837, 'maybe', '2021-06-07 09:53:01', '2025-12-17 19:47:48', '6AXMZBY4', '3992545'), + (48713, 512, 838, 'maybe', '2021-06-07 09:52:17', '2025-12-17 19:47:47', '6AXMZBY4', '3994992'), + (48714, 512, 844, 'maybe', '2021-06-22 10:48:44', '2025-12-17 19:47:38', '6AXMZBY4', '4014338'), + (48715, 512, 866, 'maybe', '2021-06-16 14:43:48', '2025-12-17 19:47:38', '6AXMZBY4', '4020424'), + (48716, 512, 867, 'attending', '2021-06-22 10:48:54', '2025-12-17 19:47:38', '6AXMZBY4', '4021848'), + (48717, 512, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXMZBY4', '4136744'), + (48718, 512, 870, 'attending', '2021-06-30 09:52:54', '2025-12-17 19:47:39', '6AXMZBY4', '4136937'), + (48719, 512, 871, 'attending', '2021-07-10 12:35:13', '2025-12-17 19:47:39', '6AXMZBY4', '4136938'), + (48720, 512, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXMZBY4', '4136947'), + (48721, 512, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXMZBY4', '4210314'), + (48722, 512, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXMZBY4', '4225444'), + (48723, 512, 890, 'not_attending', '2021-06-27 08:52:56', '2025-12-17 19:47:38', '6AXMZBY4', '4228666'), + (48724, 512, 897, 'not_attending', '2021-06-27 23:26:06', '2025-12-17 19:47:38', '6AXMZBY4', '4232132'), + (48725, 512, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXMZBY4', '4239259'), + (48726, 512, 900, 'attending', '2021-07-22 23:54:25', '2025-12-17 19:47:40', '6AXMZBY4', '4240316'), + (48727, 512, 901, 'maybe', '2021-07-31 18:21:05', '2025-12-17 19:47:40', '6AXMZBY4', '4240317'), + (48728, 512, 902, 'attending', '2021-08-07 11:16:37', '2025-12-17 19:47:41', '6AXMZBY4', '4240318'), + (48729, 512, 903, 'attending', '2021-08-14 18:22:42', '2025-12-17 19:47:42', '6AXMZBY4', '4240320'), + (48730, 512, 904, 'attending', '2021-07-12 23:07:05', '2025-12-17 19:47:39', '6AXMZBY4', '4241594'), + (48731, 512, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXMZBY4', '4250163'), + (48732, 512, 918, 'attending', '2021-07-12 23:07:02', '2025-12-17 19:47:39', '6AXMZBY4', '4274486'), + (48733, 512, 919, 'attending', '2021-07-14 09:51:25', '2025-12-17 19:47:39', '6AXMZBY4', '4275957'), + (48734, 512, 920, 'attending', '2021-07-16 13:14:55', '2025-12-17 19:47:40', '6AXMZBY4', '4277819'), + (48735, 512, 926, 'maybe', '2021-08-14 18:22:19', '2025-12-17 19:47:42', '6AXMZBY4', '4297211'), + (48736, 512, 927, 'maybe', '2021-07-29 07:04:17', '2025-12-17 19:47:40', '6AXMZBY4', '4297216'), + (48737, 512, 932, 'maybe', '2021-08-02 00:41:38', '2025-12-17 19:47:42', '6AXMZBY4', '4301664'), + (48738, 512, 933, 'attending', '2021-07-27 10:07:56', '2025-12-17 19:47:40', '6AXMZBY4', '4301723'), + (48739, 512, 934, 'maybe', '2021-08-02 00:41:23', '2025-12-17 19:47:40', '6AXMZBY4', '4302093'), + (48740, 512, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXMZBY4', '4304151'), + (48741, 512, 940, 'not_attending', '2021-07-27 06:54:31', '2025-12-17 19:47:40', '6AXMZBY4', '4309049'), + (48742, 512, 961, 'maybe', '2021-08-08 10:02:47', '2025-12-17 19:47:42', '6AXMZBY4', '4345519'), + (48743, 512, 962, 'attending', '2021-08-08 23:59:01', '2025-12-17 19:47:41', '6AXMZBY4', '4346305'), + (48744, 512, 971, 'not_attending', '2021-09-08 11:07:18', '2025-12-17 19:47:43', '6AXMZBY4', '4356801'), + (48745, 512, 972, 'maybe', '2021-08-14 18:21:53', '2025-12-17 19:47:42', '6AXMZBY4', '4358025'), + (48746, 512, 973, 'attending', '2021-08-16 01:01:32', '2025-12-17 19:47:42', '6AXMZBY4', '4366186'), + (48747, 512, 974, 'attending', '2021-08-28 22:42:02', '2025-12-17 19:47:42', '6AXMZBY4', '4366187'), + (48748, 512, 987, 'maybe', '2021-08-28 00:07:10', '2025-12-17 19:47:43', '6AXMZBY4', '4402634'), + (48749, 512, 988, 'not_attending', '2021-08-24 05:42:59', '2025-12-17 19:47:42', '6AXMZBY4', '4402823'), + (48750, 512, 990, 'attending', '2021-09-02 10:05:16', '2025-12-17 19:47:43', '6AXMZBY4', '4420735'), + (48751, 512, 991, 'attending', '2021-09-11 22:34:24', '2025-12-17 19:47:43', '6AXMZBY4', '4420738'), + (48752, 512, 992, 'not_attending', '2021-09-18 21:39:43', '2025-12-17 19:47:34', '6AXMZBY4', '4420739'), + (48753, 512, 993, 'attending', '2021-09-25 18:24:09', '2025-12-17 19:47:34', '6AXMZBY4', '4420741'), + (48754, 512, 994, 'attending', '2021-10-02 04:33:01', '2025-12-17 19:47:34', '6AXMZBY4', '4420742'), + (48755, 512, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AXMZBY4', '4420744'), + (48756, 512, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AXMZBY4', '4420747'), + (48757, 512, 997, 'attending', '2021-10-23 12:53:52', '2025-12-17 19:47:35', '6AXMZBY4', '4420748'), + (48758, 512, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AXMZBY4', '4420749'), + (48759, 512, 999, 'not_attending', '2021-08-31 15:57:46', '2025-12-17 19:47:43', '6AXMZBY4', '4421150'), + (48760, 512, 1000, 'attending', '2021-08-29 23:02:26', '2025-12-17 19:47:43', '6AXMZBY4', '4424456'), + (48761, 512, 1023, 'not_attending', '2021-09-10 15:02:09', '2025-12-17 19:47:43', '6AXMZBY4', '4461883'), + (48762, 512, 1064, 'not_attending', '2021-09-21 15:31:04', '2025-12-17 19:47:34', '6AXMZBY4', '4499526'), + (48763, 512, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AXMZBY4', '4508342'), + (48764, 512, 1074, 'maybe', '2021-09-29 01:31:01', '2025-12-17 19:47:34', '6AXMZBY4', '4528953'), + (48765, 512, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AXMZBY4', '4568602'), + (48766, 512, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AXMZBY4', '4572153'), + (48767, 512, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AXMZBY4', '4585962'), + (48768, 512, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '6AXMZBY4', '4596356'), + (48769, 512, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AXMZBY4', '4598860'), + (48770, 512, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AXMZBY4', '4598861'), + (48771, 512, 1099, 'attending', '2021-10-31 08:45:30', '2025-12-17 19:47:36', '6AXMZBY4', '4602797'), + (48772, 512, 1114, 'not_attending', '2021-11-13 10:58:58', '2025-12-17 19:47:36', '6AXMZBY4', '4637896'), + (48773, 512, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AXMZBY4', '4642994'), + (48774, 512, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AXMZBY4', '4642995'), + (48775, 512, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AXMZBY4', '4642996'), + (48776, 512, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AXMZBY4', '4642997'), + (48777, 512, 1126, 'attending', '2021-12-08 11:13:30', '2025-12-17 19:47:38', '6AXMZBY4', '4645687'), + (48778, 512, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '6AXMZBY4', '4645698'), + (48779, 512, 1128, 'not_attending', '2021-11-21 00:13:03', '2025-12-17 19:47:37', '6AXMZBY4', '4645704'), + (48780, 512, 1129, 'attending', '2021-11-25 10:48:36', '2025-12-17 19:47:37', '6AXMZBY4', '4645705'), + (48781, 512, 1130, 'attending', '2021-12-04 21:00:18', '2025-12-17 19:47:37', '6AXMZBY4', '4658824'), + (48782, 512, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '6AXMZBY4', '4668385'), + (48783, 512, 1143, 'maybe', '2021-12-02 00:23:30', '2025-12-17 19:47:37', '6AXMZBY4', '4683667'), + (48784, 512, 1149, 'not_attending', '2021-12-08 11:13:12', '2025-12-17 19:47:38', '6AXMZBY4', '4694407'), + (48785, 512, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '6AXMZBY4', '4736497'), + (48786, 512, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '6AXMZBY4', '4736499'), + (48787, 512, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '6AXMZBY4', '4736500'), + (48788, 512, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '6AXMZBY4', '4736503'), + (48789, 512, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '6AXMZBY4', '4736504'), + (48790, 512, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '6AXMZBY4', '4746789'), + (48791, 512, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '6AXMZBY4', '4753929'), + (48792, 512, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '6AXMZBY4', '5038850'), + (48793, 512, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '6AXMZBY4', '5045826'), + (48794, 512, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '6AXMZBY4', '5132533'), + (48795, 512, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '6AXMZBY4', '5186582'), + (48796, 512, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '6AXMZBY4', '5186583'), + (48797, 512, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '6AXMZBY4', '5186585'), + (48798, 512, 1281, 'attending', '2022-04-07 14:31:16', '2025-12-17 19:47:27', '6AXMZBY4', '5190437'), + (48799, 512, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '6AXMZBY4', '5195095'), + (48800, 512, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '6AXMZBY4', '5215989'), + (48801, 512, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '6AXMZBY4', '5223686'), + (48802, 512, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '6AXMZBY4', '5227432'), + (48803, 512, 1319, 'attending', '2022-04-24 21:42:42', '2025-12-17 19:47:27', '6AXMZBY4', '5238353'), + (48804, 512, 1320, 'not_attending', '2022-04-24 23:09:43', '2025-12-17 19:47:27', '6AXMZBY4', '5238354'), + (48805, 512, 1337, 'maybe', '2022-04-19 22:58:30', '2025-12-17 19:47:27', '6AXMZBY4', '5245036'), + (48806, 512, 1346, 'attending', '2022-04-23 21:26:49', '2025-12-17 19:47:27', '6AXMZBY4', '5247467'), + (48807, 512, 1354, 'not_attending', '2022-04-23 21:25:40', '2025-12-17 19:47:27', '6AXMZBY4', '5252569'), + (48808, 512, 1362, 'attending', '2022-04-30 22:02:01', '2025-12-17 19:47:28', '6AXMZBY4', '5260800'), + (48809, 512, 1370, 'not_attending', '2022-04-29 21:41:14', '2025-12-17 19:47:28', '6AXMZBY4', '5263775'), + (48810, 512, 1374, 'attending', '2022-05-04 08:48:47', '2025-12-17 19:47:28', '6AXMZBY4', '5269930'), + (48811, 512, 1378, 'attending', '2022-05-10 08:57:06', '2025-12-17 19:47:28', '6AXMZBY4', '5271448'), + (48812, 512, 1379, 'attending', '2022-05-19 22:39:09', '2025-12-17 19:47:29', '6AXMZBY4', '5271449'), + (48813, 512, 1381, 'attending', '2022-05-02 02:31:07', '2025-12-17 19:47:28', '6AXMZBY4', '5271453'), + (48814, 512, 1383, 'maybe', '2022-05-04 08:48:03', '2025-12-17 19:47:28', '6AXMZBY4', '5276469'), + (48815, 512, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '6AXMZBY4', '5278159'), + (48816, 512, 1387, 'maybe', '2022-05-06 09:08:23', '2025-12-17 19:47:28', '6AXMZBY4', '5278173'), + (48817, 512, 1392, 'not_attending', '2022-05-10 21:55:49', '2025-12-17 19:47:28', '6AXMZBY4', '5279532'), + (48818, 512, 1407, 'attending', '2022-06-04 14:30:03', '2025-12-17 19:47:30', '6AXMZBY4', '5363695'), + (48819, 512, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '6AXMZBY4', '5365960'), + (48820, 512, 1415, 'maybe', '2022-06-01 19:21:32', '2025-12-17 19:47:30', '6AXMZBY4', '5368973'), + (48821, 512, 1419, 'maybe', '2022-06-08 08:53:13', '2025-12-17 19:47:30', '6AXMZBY4', '5373081'), + (48822, 512, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '6AXMZBY4', '5378247'), + (48823, 512, 1431, 'attending', '2022-06-09 08:50:46', '2025-12-17 19:47:30', '6AXMZBY4', '5389605'), + (48824, 512, 1442, 'attending', '2022-06-15 09:13:21', '2025-12-17 19:47:17', '6AXMZBY4', '5397265'), + (48825, 512, 1451, 'maybe', '2022-06-10 02:59:50', '2025-12-17 19:47:17', '6AXMZBY4', '5403967'), + (48826, 512, 1455, 'maybe', '2022-06-10 02:59:37', '2025-12-17 19:47:31', '6AXMZBY4', '5404772'), + (48827, 512, 1458, 'not_attending', '2022-06-14 08:12:45', '2025-12-17 19:47:17', '6AXMZBY4', '5404786'), + (48828, 512, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '6AXMZBY4', '5405203'), + (48829, 512, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '6AXMZBY4', '5411699'), + (48830, 512, 1481, 'attending', '2022-06-18 22:18:32', '2025-12-17 19:47:17', '6AXMZBY4', '5412237'), + (48831, 512, 1482, 'not_attending', '2022-06-25 18:36:36', '2025-12-17 19:47:19', '6AXMZBY4', '5412550'), + (48832, 512, 1483, 'maybe', '2022-06-23 10:31:11', '2025-12-17 19:47:17', '6AXMZBY4', '5414556'), + (48833, 512, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '6AXMZBY4', '5415046'), + (48834, 512, 1490, 'attending', '2022-07-01 23:12:19', '2025-12-17 19:47:19', '6AXMZBY4', '5420156'), + (48835, 512, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '6AXMZBY4', '5422086'), + (48836, 512, 1498, 'attending', '2022-06-28 08:50:56', '2025-12-17 19:47:19', '6AXMZBY4', '5422406'), + (48837, 512, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '6AXMZBY4', '5424565'), + (48838, 512, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '6AXMZBY4', '5426882'), + (48839, 512, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '6AXMZBY4', '5427083'), + (48840, 512, 1511, 'attending', '2022-07-07 01:50:28', '2025-12-17 19:47:19', '6AXMZBY4', '5437733'), + (48841, 512, 1513, 'attending', '2022-07-14 10:27:53', '2025-12-17 19:47:19', '6AXMZBY4', '5441125'), + (48842, 512, 1514, 'attending', '2022-07-14 10:27:48', '2025-12-17 19:47:20', '6AXMZBY4', '5441126'), + (48843, 512, 1515, 'attending', '2022-08-05 08:55:20', '2025-12-17 19:47:21', '6AXMZBY4', '5441128'), + (48844, 512, 1516, 'not_attending', '2022-08-19 03:17:41', '2025-12-17 19:47:23', '6AXMZBY4', '5441129'), + (48845, 512, 1517, 'attending', '2022-08-22 10:14:55', '2025-12-17 19:47:23', '6AXMZBY4', '5441130'), + (48846, 512, 1518, 'attending', '2022-08-22 10:14:52', '2025-12-17 19:47:24', '6AXMZBY4', '5441131'), + (48847, 512, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '6AXMZBY4', '5441132'), + (48848, 512, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '6AXMZBY4', '5446643'), + (48849, 512, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '6AXMZBY4', '5453325'), + (48850, 512, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '6AXMZBY4', '5454516'), + (48851, 512, 1544, 'attending', '2022-09-15 08:03:22', '2025-12-17 19:47:11', '6AXMZBY4', '5454517'), + (48852, 512, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '6AXMZBY4', '5454605'), + (48853, 512, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '6AXMZBY4', '5455037'), + (48854, 512, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '6AXMZBY4', '5461278'), + (48855, 512, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '6AXMZBY4', '5469480'), + (48856, 512, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '6AXMZBY4', '5471073'), + (48857, 512, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '6AXMZBY4', '5474663'), + (48858, 512, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '6AXMZBY4', '5482022'), + (48859, 512, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '6AXMZBY4', '5482793'), + (48860, 512, 1578, 'attending', '2022-08-02 03:17:53', '2025-12-17 19:47:21', '6AXMZBY4', '5483073'), + (48861, 512, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '6AXMZBY4', '5488912'), + (48862, 512, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '6AXMZBY4', '5492192'), + (48863, 512, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '6AXMZBY4', '5493139'), + (48864, 512, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '6AXMZBY4', '5493200'), + (48865, 512, 1600, 'maybe', '2022-08-22 10:14:37', '2025-12-17 19:47:24', '6AXMZBY4', '5496569'), + (48866, 512, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '6AXMZBY4', '5502188'), + (48867, 512, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '6AXMZBY4', '5505059'), + (48868, 512, 1609, 'not_attending', '2022-08-22 10:14:23', '2025-12-17 19:47:23', '6AXMZBY4', '5506590'), + (48869, 512, 1610, 'maybe', '2022-08-22 10:13:49', '2025-12-17 19:47:23', '6AXMZBY4', '5506595'), + (48870, 512, 1615, 'maybe', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '6AXMZBY4', '5509055'), + (48871, 512, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '6AXMZBY4', '5512862'), + (48872, 512, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '6AXMZBY4', '5513985'), + (48873, 512, 1626, 'maybe', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '6AXMZBY4', '5519981'), + (48874, 512, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '6AXMZBY4', '5522550'), + (48875, 512, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '6AXMZBY4', '5534683'), + (48876, 512, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '6AXMZBY4', '5537735'), + (48877, 512, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '6AXMZBY4', '5540859'), + (48878, 512, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '6AXMZBY4', '5546619'), + (48879, 512, 1647, 'maybe', '2022-09-15 08:03:30', '2025-12-17 19:47:11', '6AXMZBY4', '5548660'), + (48880, 512, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '6AXMZBY4', '5555245'), + (48881, 512, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '6AXMZBY4', '5557747'), + (48882, 512, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '6AXMZBY4', '5560255'), + (48883, 512, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '6AXMZBY4', '5562906'), + (48884, 512, 1667, 'attending', '2022-09-24 08:54:23', '2025-12-17 19:47:11', '6AXMZBY4', '5563221'), + (48885, 512, 1668, 'attending', '2022-10-01 17:39:23', '2025-12-17 19:47:12', '6AXMZBY4', '5563222'), + (48886, 512, 1673, 'attending', '2022-09-20 08:55:41', '2025-12-17 19:47:11', '6AXMZBY4', '5592454'), + (48887, 512, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '6AXMZBY4', '5600604'), + (48888, 512, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '6AXMZBY4', '5605544'), + (48889, 512, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '6AXMZBY4', '5606737'), + (48890, 512, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', '6AXMZBY4', '5630907'), + (48891, 512, 1719, 'attending', '2022-10-05 22:42:07', '2025-12-17 19:47:12', '6AXMZBY4', '5630958'), + (48892, 512, 1720, 'attending', '2022-10-12 14:31:21', '2025-12-17 19:47:12', '6AXMZBY4', '5630959'), + (48893, 512, 1721, 'not_attending', '2022-10-21 03:01:26', '2025-12-17 19:47:13', '6AXMZBY4', '5630960'), + (48894, 512, 1722, 'not_attending', '2022-10-24 09:04:28', '2025-12-17 19:47:14', '6AXMZBY4', '5630961'), + (48895, 512, 1723, 'attending', '2022-10-30 16:30:59', '2025-12-17 19:47:15', '6AXMZBY4', '5630962'), + (48896, 512, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '6AXMZBY4', '5630966'), + (48897, 512, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '6AXMZBY4', '5630967'), + (48898, 512, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '6AXMZBY4', '5630968'), + (48899, 512, 1727, 'maybe', '2022-12-02 02:42:07', '2025-12-17 19:47:16', '6AXMZBY4', '5630969'), + (48900, 512, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '6AXMZBY4', '5635406'), + (48901, 512, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '6AXMZBY4', '5638765'), + (48902, 512, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '6AXMZBY4', '5640097'), + (48903, 512, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '6AXMZBY4', '5640843'), + (48904, 512, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '6AXMZBY4', '5641521'), + (48905, 512, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '6AXMZBY4', '5642818'), + (48906, 512, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '6AXMZBY4', '5652395'), + (48907, 512, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '6AXMZBY4', '5670445'), + (48908, 512, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '6AXMZBY4', '5671637'), + (48909, 512, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '6AXMZBY4', '5672329'), + (48910, 512, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '6AXMZBY4', '5674057'), + (48911, 512, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '6AXMZBY4', '5674060'), + (48912, 512, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '6AXMZBY4', '5677461'), + (48913, 512, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '6AXMZBY4', '5698046'), + (48914, 512, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '6AXMZBY4', '5699760'), + (48915, 512, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '6AXMZBY4', '5741601'), + (48916, 512, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '6AXMZBY4', '5763458'), + (48917, 512, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '6AXMZBY4', '5774172'), + (48918, 512, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '6AXMZBY4', '5818247'), + (48919, 512, 1834, 'not_attending', '2022-12-07 11:10:50', '2025-12-17 19:47:17', '6AXMZBY4', '5819470'), + (48920, 512, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '6AXMZBY4', '5819471'), + (48921, 512, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '6AXMZBY4', '5827739'), + (48922, 512, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '6AXMZBY4', '5844306'), + (48923, 512, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '6AXMZBY4', '5850159'), + (48924, 512, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '6AXMZBY4', '5858999'), + (48925, 512, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '6AXMZBY4', '5871984'), + (48926, 512, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '6AXMZBY4', '5876354'), + (48927, 512, 1864, 'attending', '2023-01-21 19:56:37', '2025-12-17 19:47:05', '6AXMZBY4', '5879675'), + (48928, 512, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '6AXMZBY4', '5880939'), + (48929, 512, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '6AXMZBY4', '5880940'), + (48930, 512, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '6AXMZBY4', '5880942'), + (48931, 512, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '6AXMZBY4', '5880943'), + (48932, 512, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '6AXMZBY4', '5887890'), + (48933, 512, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '6AXMZBY4', '5888598'), + (48934, 512, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '6AXMZBY4', '5893260'), + (48935, 512, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '6AXMZBY4', '5899826'), + (48936, 512, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '6AXMZBY4', '5900199'), + (48937, 512, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '6AXMZBY4', '5900200'), + (48938, 512, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '6AXMZBY4', '5900202'), + (48939, 512, 1892, 'maybe', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '6AXMZBY4', '5900203'), + (48940, 512, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '6AXMZBY4', '5901108'), + (48941, 512, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '6AXMZBY4', '5901126'), + (48942, 512, 1897, 'not_attending', '2023-02-05 14:37:08', '2025-12-17 19:47:07', '6AXMZBY4', '5901128'), + (48943, 512, 1902, 'attending', '2023-02-01 19:48:44', '2025-12-17 19:47:06', '6AXMZBY4', '5902254'), + (48944, 512, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '6AXMZBY4', '5909655'), + (48945, 512, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '6AXMZBY4', '5910522'), + (48946, 512, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '6AXMZBY4', '5910526'), + (48947, 512, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '6AXMZBY4', '5910528'), + (48948, 512, 1922, 'maybe', '2023-02-16 23:45:17', '2025-12-17 19:47:07', '6AXMZBY4', '5916219'), + (48949, 512, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '6AXMZBY4', '5936234'), + (48950, 512, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '6AXMZBY4', '5958351'), + (48951, 512, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '6AXMZBY4', '5959751'), + (48952, 512, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '6AXMZBY4', '5959755'), + (48953, 512, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '6AXMZBY4', '5960055'), + (48954, 512, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '6AXMZBY4', '5961684'), + (48955, 512, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '6AXMZBY4', '5962132'), + (48956, 512, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '6AXMZBY4', '5962133'), + (48957, 512, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '6AXMZBY4', '5962134'), + (48958, 512, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '6AXMZBY4', '5962317'), + (48959, 512, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '6AXMZBY4', '5962318'), + (48960, 512, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '6AXMZBY4', '5965933'), + (48961, 512, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '6AXMZBY4', '5967014'), + (48962, 512, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '6AXMZBY4', '5972815'), + (48963, 512, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '6AXMZBY4', '5974016'), + (48964, 512, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '6AXMZBY4', '5975052'), + (48965, 512, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '6AXMZBY4', '5975054'), + (48966, 512, 1964, 'attending', '2023-03-08 23:51:20', '2025-12-17 19:47:09', '6AXMZBY4', '5977129'), + (48967, 512, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '6AXMZBY4', '5981515'), + (48968, 512, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '6AXMZBY4', '5993516'), + (48969, 512, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '6AXMZBY4', '5998939'), + (48970, 512, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '6AXMZBY4', '6028191'), + (48971, 512, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '6AXMZBY4', '6040066'), + (48972, 512, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '6AXMZBY4', '6042717'), + (48973, 512, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '6AXMZBY4', '6044838'), + (48974, 512, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '6AXMZBY4', '6044839'), + (48975, 512, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '6AXMZBY4', '6045684'), + (48976, 512, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '6AXMZBY4', '6050104'), + (48977, 512, 2002, 'attending', '2023-04-28 21:15:08', '2025-12-17 19:47:01', '6AXMZBY4', '6052605'), + (48978, 512, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '6AXMZBY4', '6053195'), + (48979, 512, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '6AXMZBY4', '6053198'), + (48980, 512, 2008, 'attending', '2023-04-07 21:52:31', '2025-12-17 19:46:58', '6AXMZBY4', '6055808'), + (48981, 512, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '6AXMZBY4', '6056085'), + (48982, 512, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '6AXMZBY4', '6056916'), + (48983, 512, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '6AXMZBY4', '6059290'), + (48984, 512, 2013, 'maybe', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '6AXMZBY4', '6060328'), + (48985, 512, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '6AXMZBY4', '6061037'), + (48986, 512, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '6AXMZBY4', '6061039'), + (48987, 512, 2019, 'attending', '2023-04-15 19:52:01', '2025-12-17 19:47:00', '6AXMZBY4', '6062934'), + (48988, 512, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', '6AXMZBY4', '6065813'), + (48989, 512, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '6AXMZBY4', '6067245'), + (48990, 512, 2027, 'maybe', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '6AXMZBY4', '6068094'), + (48991, 512, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '6AXMZBY4', '6068252'), + (48992, 512, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '6AXMZBY4', '6068253'), + (48993, 512, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '6AXMZBY4', '6068254'), + (48994, 512, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '6AXMZBY4', '6068280'), + (48995, 512, 2032, 'not_attending', '2023-06-02 21:10:25', '2025-12-17 19:47:04', '6AXMZBY4', '6068281'), + (48996, 512, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '6AXMZBY4', '6069093'), + (48997, 512, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '6AXMZBY4', '6072528'), + (48998, 512, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '6AXMZBY4', '6075556'), + (48999, 512, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '6AXMZBY4', '6079840'), + (49000, 512, 2050, 'maybe', '2023-05-08 20:07:13', '2025-12-17 19:47:02', '6AXMZBY4', '6080489'), + (49001, 512, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '6AXMZBY4', '6083398'), + (49002, 512, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '6AXMZBY4', '6093504'), + (49003, 512, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '6AXMZBY4', '6097414'), + (49004, 512, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '6AXMZBY4', '6097442'), + (49005, 512, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '6AXMZBY4', '6097684'), + (49006, 512, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '6AXMZBY4', '6098762'), + (49007, 512, 2064, 'maybe', '2023-06-22 01:04:01', '2025-12-17 19:46:50', '6AXMZBY4', '6099988'), + (49008, 512, 2065, 'attending', '2023-06-17 18:06:08', '2025-12-17 19:46:49', '6AXMZBY4', '6101169'), + (49009, 512, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '6AXMZBY4', '6101361'), + (49010, 512, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '6AXMZBY4', '6101362'), + (49011, 512, 2075, 'maybe', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '6AXMZBY4', '6107314'), + (49012, 512, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '6AXMZBY4', '6120034'), + (49013, 512, 2090, 'attending', '2023-06-02 20:09:36', '2025-12-17 19:47:04', '6AXMZBY4', '6127961'), + (49014, 512, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '6AXMZBY4', '6136733'), + (49015, 512, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '6AXMZBY4', '6137989'), + (49016, 512, 2104, 'maybe', '2023-06-22 01:03:54', '2025-12-17 19:46:50', '6AXMZBY4', '6149499'), + (49017, 512, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '6AXMZBY4', '6150864'), + (49018, 512, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '6AXMZBY4', '6155491'), + (49019, 512, 2116, 'attending', '2023-07-07 22:23:13', '2025-12-17 19:46:51', '6AXMZBY4', '6163389'), + (49020, 512, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '6AXMZBY4', '6164417'), + (49021, 512, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '6AXMZBY4', '6166388'), + (49022, 512, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '6AXMZBY4', '6176439'), + (49023, 512, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '6AXMZBY4', '6182410'), + (49024, 512, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '6AXMZBY4', '6185812'), + (49025, 512, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '6AXMZBY4', '6187651'), + (49026, 512, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '6AXMZBY4', '6187963'), + (49027, 512, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '6AXMZBY4', '6187964'), + (49028, 512, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '6AXMZBY4', '6187966'), + (49029, 512, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '6AXMZBY4', '6187967'), + (49030, 512, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '6AXMZBY4', '6187969'), + (49031, 512, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '6AXMZBY4', '6334878'), + (49032, 512, 2148, 'maybe', '2023-07-24 21:33:18', '2025-12-17 19:46:53', '6AXMZBY4', '6335667'), + (49033, 512, 2152, 'attending', '2023-07-14 20:30:43', '2025-12-17 19:46:52', '6AXMZBY4', '6337021'), + (49034, 512, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '6AXMZBY4', '6337236'), + (49035, 512, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '6AXMZBY4', '6337970'), + (49036, 512, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '6AXMZBY4', '6338308'), + (49037, 512, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', '6AXMZBY4', '6338342'), + (49038, 512, 2159, 'attending', '2023-07-17 18:51:25', '2025-12-17 19:46:53', '6AXMZBY4', '6338355'), + (49039, 512, 2160, 'attending', '2023-07-26 14:53:50', '2025-12-17 19:46:54', '6AXMZBY4', '6338358'), + (49040, 512, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '6AXMZBY4', '6341710'), + (49041, 512, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '6AXMZBY4', '6342044'), + (49042, 512, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '6AXMZBY4', '6342298'), + (49043, 512, 2174, 'maybe', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '6AXMZBY4', '6343294'), + (49044, 512, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '6AXMZBY4', '6347034'), + (49045, 512, 2177, 'attending', '2023-08-12 20:09:20', '2025-12-17 19:46:55', '6AXMZBY4', '6347053'), + (49046, 512, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '6AXMZBY4', '6347056'), + (49047, 512, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '6AXMZBY4', '6353830'), + (49048, 512, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '6AXMZBY4', '6353831'), + (49049, 512, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '6AXMZBY4', '6357867'), + (49050, 512, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '6AXMZBY4', '6358652'), + (49051, 512, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '6AXMZBY4', '6358668'), + (49052, 512, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '6AXMZBY4', '6358669'), + (49053, 512, 2196, 'maybe', '2023-09-08 17:55:41', '2025-12-17 19:46:56', '6AXMZBY4', '6359398'), + (49054, 512, 2197, 'maybe', '2023-09-15 19:09:29', '2025-12-17 19:46:44', '6AXMZBY4', '6359399'), + (49055, 512, 2204, 'maybe', '2023-08-16 03:36:40', '2025-12-17 19:46:55', '6AXMZBY4', '6361542'), + (49056, 512, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '6AXMZBY4', '6361709'), + (49057, 512, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '6AXMZBY4', '6361710'), + (49058, 512, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '6AXMZBY4', '6361711'), + (49059, 512, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '6AXMZBY4', '6361712'), + (49060, 512, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '6AXMZBY4', '6361713'), + (49061, 512, 2213, 'maybe', '2023-08-15 20:17:01', '2025-12-17 19:46:55', '6AXMZBY4', '6362935'), + (49062, 512, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '6AXMZBY4', '6382573'), + (49063, 512, 2239, 'attending', '2023-08-31 17:59:21', '2025-12-17 19:46:56', '6AXMZBY4', '6387592'), + (49064, 512, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '6AXMZBY4', '6388604'), + (49065, 512, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '6AXMZBY4', '6394629'), + (49066, 512, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '6AXMZBY4', '6394631'), + (49067, 512, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '6AXMZBY4', '6440863'), + (49068, 512, 2272, 'maybe', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '6AXMZBY4', '6445440'), + (49069, 512, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '6AXMZBY4', '6453951'), + (49070, 512, 2286, 'maybe', '2023-12-01 23:02:07', '2025-12-17 19:46:48', '6AXMZBY4', '6460930'), + (49071, 512, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '6AXMZBY4', '6461696'), + (49072, 512, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '6AXMZBY4', '6462129'), + (49073, 512, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '6AXMZBY4', '6463218'), + (49074, 512, 2299, 'attending', '2023-10-19 18:08:12', '2025-12-17 19:46:46', '6AXMZBY4', '6472181'), + (49075, 512, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '6AXMZBY4', '6482693'), + (49076, 512, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '6AXMZBY4', '6484200'), + (49077, 512, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '6AXMZBY4', '6484680'), + (49078, 512, 2310, 'maybe', '2023-11-10 00:06:20', '2025-12-17 19:46:47', '6AXMZBY4', '6487709'), + (49079, 512, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '6AXMZBY4', '6507741'), + (49080, 512, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '6AXMZBY4', '6514659'), + (49081, 512, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '6AXMZBY4', '6514660'), + (49082, 512, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '6AXMZBY4', '6519103'), + (49083, 512, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '6AXMZBY4', '6535681'), + (49084, 512, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '6AXMZBY4', '6584747'), + (49085, 512, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '6AXMZBY4', '6587097'), + (49086, 512, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '6AXMZBY4', '6609022'), + (49087, 512, 2364, 'maybe', '2023-12-08 23:54:36', '2025-12-17 19:46:49', '6AXMZBY4', '6613011'), + (49088, 512, 2371, 'attending', '2023-12-15 21:27:49', '2025-12-17 19:46:36', '6AXMZBY4', '6624495'), + (49089, 512, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '6AXMZBY4', '6632757'), + (49090, 512, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '6AXMZBY4', '6644187'), + (49091, 512, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '6AXMZBY4', '6648951'), + (49092, 512, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '6AXMZBY4', '6648952'), + (49093, 512, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '6AXMZBY4', '6655401'), + (49094, 512, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '6AXMZBY4', '6661585'), + (49095, 512, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '6AXMZBY4', '6661588'), + (49096, 512, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '6AXMZBY4', '6661589'), + (49097, 512, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '6AXMZBY4', '6699906'), + (49098, 512, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '6AXMZBY4', '6699913'), + (49099, 512, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '6AXMZBY4', '6701109'), + (49100, 512, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '6AXMZBY4', '6704561'), + (49101, 512, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '6AXMZBY4', '6705219'), + (49102, 512, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '6AXMZBY4', '6708410'), + (49103, 512, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '6AXMZBY4', '6710153'), + (49104, 512, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '6AXMZBY4', '6711552'), + (49105, 512, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '6AXMZBY4', '6711553'), + (49106, 512, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '6AXMZBY4', '6722688'), + (49107, 512, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '6AXMZBY4', '6730620'), + (49108, 512, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '6AXMZBY4', '6730642'), + (49109, 512, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '6AXMZBY4', '6740364'), + (49110, 512, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '6AXMZBY4', '6743829'), + (49111, 512, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '6AXMZBY4', '7030380'), + (49112, 512, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '6AXMZBY4', '7033677'), + (49113, 512, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '6AXMZBY4', '7035415'), + (49114, 512, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '6AXMZBY4', '7044715'), + (49115, 512, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '6AXMZBY4', '7050318'), + (49116, 512, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '6AXMZBY4', '7050319'), + (49117, 512, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '6AXMZBY4', '7050322'), + (49118, 512, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '6AXMZBY4', '7057804'), + (49119, 512, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '6AXMZBY4', '7072824'), + (49120, 512, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '6AXMZBY4', '7074348'), + (49121, 512, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '6AXMZBY4', '7089267'), + (49122, 512, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '6AXMZBY4', '7098747'), + (49123, 512, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '6AXMZBY4', '7113468'), + (49124, 512, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '6AXMZBY4', '7114856'), + (49125, 512, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '6AXMZBY4', '7114951'), + (49126, 512, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '6AXMZBY4', '7114955'), + (49127, 512, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '6AXMZBY4', '7114956'), + (49128, 512, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '6AXMZBY4', '7114957'), + (49129, 512, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '6AXMZBY4', '7153615'), + (49130, 512, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '6AXMZBY4', '7159484'), + (49131, 512, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '6AXMZBY4', '7178446'), + (49132, 512, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '6AXMZBY4', '7220467'), + (49133, 512, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '6AXMZBY4', '7240354'), + (49134, 512, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '6AXMZBY4', '7251633'), + (49135, 512, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '6AXMZBY4', '7302674'), + (49136, 513, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'm7OVvxMm', '6361709'), + (49137, 513, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'm7OVvxMm', '6361710'), + (49138, 513, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'm7OVvxMm', '6361711'), + (49139, 513, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'm7OVvxMm', '6361712'), + (49140, 513, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm7OVvxMm', '6361713'), + (49141, 513, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'm7OVvxMm', '6382573'), + (49142, 513, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'm7OVvxMm', '6388604'), + (49143, 513, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm7OVvxMm', '6394629'), + (49144, 513, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm7OVvxMm', '6394631'), + (49145, 513, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'm7OVvxMm', '6431478'), + (49146, 514, 249, 'attending', '2020-11-17 23:26:09', '2025-12-17 19:47:54', '8mRVk07m', '3149480'), + (49147, 514, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRVk07m', '6045684'), + (49148, 515, 247, 'attending', '2020-12-30 00:40:42', '2025-12-17 19:47:48', 'ndaRleZm', '3149478'), + (49149, 515, 517, 'not_attending', '2021-01-08 00:10:38', '2025-12-17 19:47:48', 'ndaRleZm', '3337137'), + (49150, 515, 518, 'attending', '2021-01-03 04:09:52', '2025-12-17 19:47:48', 'ndaRleZm', '3337138'), + (49151, 515, 521, 'not_attending', '2021-01-01 12:46:31', '2025-12-17 19:47:48', 'ndaRleZm', '3337454'), + (49152, 515, 526, 'attending', '2020-12-28 21:24:24', '2025-12-17 19:47:48', 'ndaRleZm', '3351539'), + (49153, 515, 529, 'not_attending', '2021-01-05 19:47:35', '2025-12-17 19:47:48', 'ndaRleZm', '3364568'), + (49154, 515, 532, 'attending', '2021-01-03 23:29:39', '2025-12-17 19:47:48', 'ndaRleZm', '3381412'), + (49155, 515, 534, 'attending', '2021-01-05 13:57:36', '2025-12-17 19:47:48', 'ndaRleZm', '3384157'), + (49156, 515, 535, 'not_attending', '2021-01-09 19:45:42', '2025-12-17 19:47:48', 'ndaRleZm', '3384729'), + (49157, 515, 536, 'attending', '2021-01-07 23:34:12', '2025-12-17 19:47:48', 'ndaRleZm', '3386848'), + (49158, 515, 540, 'attending', '2021-01-10 20:04:56', '2025-12-17 19:47:48', 'ndaRleZm', '3389527'), + (49159, 515, 543, 'not_attending', '2021-01-16 00:28:20', '2025-12-17 19:47:48', 'ndaRleZm', '3396499'), + (49160, 515, 548, 'not_attending', '2021-01-16 22:34:20', '2025-12-17 19:47:48', 'ndaRleZm', '3403650'), + (49161, 515, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaRleZm', '3406988'), + (49162, 515, 555, 'attending', '2021-01-19 15:48:02', '2025-12-17 19:47:49', 'ndaRleZm', '3416576'), + (49163, 515, 557, 'not_attending', '2021-01-21 00:46:39', '2025-12-17 19:47:49', 'ndaRleZm', '3418748'), + (49164, 515, 558, 'attending', '2021-01-19 15:47:57', '2025-12-17 19:47:49', 'ndaRleZm', '3418925'), + (49165, 515, 568, 'attending', '2021-01-29 22:01:44', '2025-12-17 19:47:50', 'ndaRleZm', '3430267'), + (49166, 515, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'ndaRleZm', '3432673'), + (49167, 515, 570, 'maybe', '2021-02-05 06:37:56', '2025-12-17 19:47:50', 'ndaRleZm', '3435538'), + (49168, 515, 593, 'attending', '2021-02-28 04:52:14', '2025-12-17 19:47:50', 'ndaRleZm', '3467758'), + (49169, 515, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'ndaRleZm', '3468125'), + (49170, 515, 602, 'maybe', '2021-02-10 22:45:01', '2025-12-17 19:47:50', 'ndaRleZm', '3470303'), + (49171, 515, 603, 'not_attending', '2021-02-19 20:08:22', '2025-12-17 19:47:50', 'ndaRleZm', '3470304'), + (49172, 515, 604, 'attending', '2021-02-19 20:08:53', '2025-12-17 19:47:50', 'ndaRleZm', '3470305'), + (49173, 515, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'ndaRleZm', '3470991'), + (49174, 515, 621, 'attending', '2021-03-03 07:18:48', '2025-12-17 19:47:51', 'ndaRleZm', '3517815'), + (49175, 515, 622, 'attending', '2021-03-14 00:22:56', '2025-12-17 19:47:51', 'ndaRleZm', '3517816'), + (49176, 515, 623, 'not_attending', '2021-03-13 23:54:13', '2025-12-17 19:47:51', 'ndaRleZm', '3523941'), + (49177, 515, 627, 'attending', '2021-03-03 07:19:32', '2025-12-17 19:47:51', 'ndaRleZm', '3533303'), + (49178, 515, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ndaRleZm', '3533850'), + (49179, 515, 632, 'attending', '2021-03-03 07:19:15', '2025-12-17 19:47:51', 'ndaRleZm', '3533853'), + (49180, 515, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ndaRleZm', '3536632'), + (49181, 515, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ndaRleZm', '3536656'), + (49182, 515, 641, 'attending', '2021-03-04 01:58:35', '2025-12-17 19:47:44', 'ndaRleZm', '3539916'), + (49183, 515, 642, 'attending', '2021-03-04 01:58:38', '2025-12-17 19:47:44', 'ndaRleZm', '3539917'), + (49184, 515, 643, 'attending', '2021-03-04 01:58:42', '2025-12-17 19:47:45', 'ndaRleZm', '3539918'), + (49185, 515, 644, 'attending', '2021-03-04 01:58:44', '2025-12-17 19:47:45', 'ndaRleZm', '3539919'), + (49186, 515, 645, 'attending', '2021-03-04 01:58:46', '2025-12-17 19:47:46', 'ndaRleZm', '3539920'), + (49187, 515, 646, 'attending', '2021-03-04 01:58:52', '2025-12-17 19:47:46', 'ndaRleZm', '3539921'), + (49188, 515, 647, 'attending', '2021-03-04 01:58:54', '2025-12-17 19:47:46', 'ndaRleZm', '3539922'), + (49189, 515, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndaRleZm', '3539923'), + (49190, 515, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndaRleZm', '3539927'), + (49191, 515, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndaRleZm', '3582734'), + (49192, 515, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ndaRleZm', '3583262'), + (49193, 515, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndaRleZm', '3619523'), + (49194, 515, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ndaRleZm', '3661369'), + (49195, 515, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ndaRleZm', '3674262'), + (49196, 515, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ndaRleZm', '3677402'), + (49197, 515, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndaRleZm', '3730212'), + (49198, 515, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ndaRleZm', '3793156'), + (49199, 515, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaRleZm', '6045684'), + (49200, 516, 50, 'attending', '2020-07-28 20:34:13', '2025-12-17 19:47:55', 'bdzYJ5y4', '2975275'), + (49201, 516, 194, 'attending', '2020-07-31 22:12:10', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087262'), + (49202, 516, 195, 'attending', '2020-08-07 18:17:11', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087264'), + (49203, 516, 196, 'maybe', '2020-08-15 21:29:33', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087265'), + (49204, 516, 197, 'attending', '2020-08-21 22:17:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087266'), + (49205, 516, 198, 'attending', '2020-08-25 20:21:44', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087267'), + (49206, 516, 199, 'attending', '2020-08-30 23:25:36', '2025-12-17 19:47:56', 'bdzYJ5y4', '3087268'), + (49207, 516, 223, 'maybe', '2020-09-08 02:57:52', '2025-12-17 19:47:56', 'bdzYJ5y4', '3129980'), + (49208, 516, 230, 'maybe', '2020-07-29 21:36:57', '2025-12-17 19:47:55', 'bdzYJ5y4', '3139232'), + (49209, 516, 252, 'not_attending', '2021-02-23 05:23:44', '2025-12-17 19:47:50', 'bdzYJ5y4', '3149483'), + (49210, 516, 264, 'attending', '2020-08-03 21:44:53', '2025-12-17 19:47:56', 'bdzYJ5y4', '3150735'), + (49211, 516, 270, 'maybe', '2020-08-11 22:15:35', '2025-12-17 19:47:56', 'bdzYJ5y4', '3154457'), + (49212, 516, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'bdzYJ5y4', '3155321'), + (49213, 516, 273, 'maybe', '2020-08-03 18:24:37', '2025-12-17 19:47:56', 'bdzYJ5y4', '3162006'), + (49214, 516, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3163442'), + (49215, 516, 282, 'maybe', '2020-08-07 18:17:02', '2025-12-17 19:47:56', 'bdzYJ5y4', '3169070'), + (49216, 516, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'bdzYJ5y4', '3169555'), + (49217, 516, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', 'bdzYJ5y4', '3169556'), + (49218, 516, 290, 'not_attending', '2020-09-05 05:45:56', '2025-12-17 19:47:56', 'bdzYJ5y4', '3170251'), + (49219, 516, 291, 'not_attending', '2020-09-03 22:22:47', '2025-12-17 19:47:56', 'bdzYJ5y4', '3170252'), + (49220, 516, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172832'), + (49221, 516, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172833'), + (49222, 516, 295, 'maybe', '2020-08-30 23:24:19', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172834'), + (49223, 516, 296, 'maybe', '2020-09-03 22:22:54', '2025-12-17 19:47:56', 'bdzYJ5y4', '3172876'), + (49224, 516, 297, 'attending', '2020-08-11 22:31:40', '2025-12-17 19:47:56', 'bdzYJ5y4', '3173937'), + (49225, 516, 298, 'maybe', '2020-08-25 20:21:27', '2025-12-17 19:47:56', 'bdzYJ5y4', '3174556'), + (49226, 516, 304, 'maybe', '2020-09-06 03:53:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3178916'), + (49227, 516, 306, 'maybe', '2020-08-19 02:44:25', '2025-12-17 19:47:56', 'bdzYJ5y4', '3179777'), + (49228, 516, 308, 'not_attending', '2020-09-03 04:14:11', '2025-12-17 19:47:56', 'bdzYJ5y4', '3183341'), + (49229, 516, 311, 'attending', '2020-09-10 19:17:29', '2025-12-17 19:47:56', 'bdzYJ5y4', '3186057'), + (49230, 516, 312, 'not_attending', '2020-09-03 22:22:42', '2025-12-17 19:47:56', 'bdzYJ5y4', '3187795'), + (49231, 516, 315, 'attending', '2020-09-08 06:52:03', '2025-12-17 19:47:56', 'bdzYJ5y4', '3189085'), + (49232, 516, 317, 'attending', '2020-08-26 04:26:01', '2025-12-17 19:47:56', 'bdzYJ5y4', '3191735'), + (49233, 516, 318, 'attending', '2020-09-01 23:36:13', '2025-12-17 19:47:56', 'bdzYJ5y4', '3193885'), + (49234, 516, 319, 'maybe', '2020-08-30 23:23:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3194179'), + (49235, 516, 320, 'attending', '2020-09-03 04:14:38', '2025-12-17 19:47:56', 'bdzYJ5y4', '3195552'), + (49236, 516, 322, 'not_attending', '2020-09-13 04:30:37', '2025-12-17 19:47:56', 'bdzYJ5y4', '3197080'), + (49237, 516, 323, 'not_attending', '2020-09-13 04:31:03', '2025-12-17 19:47:56', 'bdzYJ5y4', '3197081'), + (49238, 516, 328, 'not_attending', '2020-09-29 21:47:34', '2025-12-17 19:47:52', 'bdzYJ5y4', '3197086'), + (49239, 516, 330, 'maybe', '2020-09-06 20:54:01', '2025-12-17 19:47:56', 'bdzYJ5y4', '3197322'), + (49240, 516, 331, 'maybe', '2020-09-03 22:21:40', '2025-12-17 19:47:56', 'bdzYJ5y4', '3198871'), + (49241, 516, 332, 'not_attending', '2020-09-03 22:22:21', '2025-12-17 19:47:56', 'bdzYJ5y4', '3198873'), + (49242, 516, 335, 'attending', '2020-09-01 22:30:50', '2025-12-17 19:47:56', 'bdzYJ5y4', '3200209'), + (49243, 516, 336, 'not_attending', '2020-09-15 04:13:14', '2025-12-17 19:47:56', 'bdzYJ5y4', '3200495'), + (49244, 516, 337, 'maybe', '2020-09-06 08:06:22', '2025-12-17 19:47:56', 'bdzYJ5y4', '3201771'), + (49245, 516, 340, 'maybe', '2020-09-13 04:30:43', '2025-12-17 19:47:56', 'bdzYJ5y4', '3204470'), + (49246, 516, 341, 'attending', '2020-09-25 23:39:20', '2025-12-17 19:47:52', 'bdzYJ5y4', '3204471'), + (49247, 516, 343, 'maybe', '2020-09-21 05:11:41', '2025-12-17 19:47:56', 'bdzYJ5y4', '3206759'), + (49248, 516, 344, 'maybe', '2020-10-29 18:34:37', '2025-12-17 19:47:53', 'bdzYJ5y4', '3206906'), + (49249, 516, 346, 'not_attending', '2020-09-15 04:13:24', '2025-12-17 19:47:56', 'bdzYJ5y4', '3207515'), + (49250, 516, 347, 'not_attending', '2020-09-24 22:46:00', '2025-12-17 19:47:51', 'bdzYJ5y4', '3207930'), + (49251, 516, 348, 'maybe', '2020-09-28 23:28:34', '2025-12-17 19:47:52', 'bdzYJ5y4', '3209159'), + (49252, 516, 349, 'not_attending', '2020-09-13 04:30:33', '2025-12-17 19:47:56', 'bdzYJ5y4', '3209194'), + (49253, 516, 351, 'maybe', '2020-09-13 04:30:56', '2025-12-17 19:47:56', 'bdzYJ5y4', '3209257'), + (49254, 516, 352, 'maybe', '2020-09-13 04:30:08', '2025-12-17 19:47:56', 'bdzYJ5y4', '3210514'), + (49255, 516, 354, 'maybe', '2020-09-15 04:14:59', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212570'), + (49256, 516, 355, 'not_attending', '2020-09-15 04:13:34', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212571'), + (49257, 516, 356, 'maybe', '2020-09-23 23:58:08', '2025-12-17 19:47:51', 'bdzYJ5y4', '3212572'), + (49258, 516, 357, 'attending', '2020-09-29 21:47:36', '2025-12-17 19:47:52', 'bdzYJ5y4', '3212573'), + (49259, 516, 358, 'not_attending', '2020-09-19 08:33:21', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212579'), + (49260, 516, 359, 'not_attending', '2020-09-15 04:14:38', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212624'), + (49261, 516, 360, 'not_attending', '2020-09-15 04:14:04', '2025-12-17 19:47:56', 'bdzYJ5y4', '3212671'), + (49262, 516, 362, 'attending', '2020-09-21 22:14:09', '2025-12-17 19:47:52', 'bdzYJ5y4', '3214207'), + (49263, 516, 363, 'attending', '2020-09-18 03:43:33', '2025-12-17 19:47:52', 'bdzYJ5y4', '3217037'), + (49264, 516, 364, 'maybe', '2020-09-18 03:37:50', '2025-12-17 19:47:56', 'bdzYJ5y4', '3217106'), + (49265, 516, 365, 'attending', '2020-09-18 03:43:07', '2025-12-17 19:47:51', 'bdzYJ5y4', '3218510'), + (49266, 516, 366, 'maybe', '2020-09-21 05:11:48', '2025-12-17 19:47:56', 'bdzYJ5y4', '3219750'), + (49267, 516, 367, 'maybe', '2020-09-21 05:12:00', '2025-12-17 19:47:51', 'bdzYJ5y4', '3219751'), + (49268, 516, 368, 'not_attending', '2020-09-30 18:09:28', '2025-12-17 19:47:52', 'bdzYJ5y4', '3221403'), + (49269, 516, 370, 'not_attending', '2020-10-13 20:57:48', '2025-12-17 19:47:52', 'bdzYJ5y4', '3221405'), + (49270, 516, 371, 'not_attending', '2020-10-13 20:57:51', '2025-12-17 19:47:52', 'bdzYJ5y4', '3221406'), + (49271, 516, 374, 'not_attending', '2020-10-26 20:56:59', '2025-12-17 19:47:53', 'bdzYJ5y4', '3221415'), + (49272, 516, 376, 'not_attending', '2020-10-13 20:57:42', '2025-12-17 19:47:52', 'bdzYJ5y4', '3222827'), + (49273, 516, 377, 'maybe', '2020-10-29 18:33:03', '2025-12-17 19:47:53', 'bdzYJ5y4', '3222828'), + (49274, 516, 382, 'not_attending', '2020-10-12 22:13:00', '2025-12-17 19:47:52', 'bdzYJ5y4', '3226873'), + (49275, 516, 384, 'not_attending', '2020-09-29 21:47:15', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228696'), + (49276, 516, 385, 'attending', '2020-09-29 20:30:21', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228698'), + (49277, 516, 386, 'not_attending', '2020-10-10 20:46:39', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228699'), + (49278, 516, 387, 'maybe', '2020-10-16 20:39:04', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228700'), + (49279, 516, 388, 'attending', '2020-10-24 20:42:52', '2025-12-17 19:47:52', 'bdzYJ5y4', '3228701'), + (49280, 516, 390, 'not_attending', '2020-10-01 21:22:23', '2025-12-17 19:47:52', 'bdzYJ5y4', '3231510'), + (49281, 516, 404, 'not_attending', '2021-03-15 01:55:26', '2025-12-17 19:47:51', 'bdzYJ5y4', '3236460'), + (49282, 516, 412, 'not_attending', '2020-10-07 02:59:05', '2025-12-17 19:47:52', 'bdzYJ5y4', '3236636'), + (49283, 516, 414, 'not_attending', '2020-10-13 20:59:00', '2025-12-17 19:47:52', 'bdzYJ5y4', '3237277'), + (49284, 516, 415, 'not_attending', '2020-10-12 22:12:30', '2025-12-17 19:47:52', 'bdzYJ5y4', '3238044'), + (49285, 516, 416, 'maybe', '2020-10-07 02:59:13', '2025-12-17 19:47:52', 'bdzYJ5y4', '3238073'), + (49286, 516, 417, 'not_attending', '2020-10-13 20:57:26', '2025-12-17 19:47:52', 'bdzYJ5y4', '3238779'), + (49287, 516, 418, 'not_attending', '2020-10-13 20:57:22', '2025-12-17 19:47:52', 'bdzYJ5y4', '3241728'), + (49288, 516, 419, 'not_attending', '2020-10-13 20:57:07', '2025-12-17 19:47:52', 'bdzYJ5y4', '3242234'), + (49289, 516, 420, 'not_attending', '2020-10-13 20:57:37', '2025-12-17 19:47:52', 'bdzYJ5y4', '3245293'), + (49290, 516, 422, 'not_attending', '2020-10-29 18:32:41', '2025-12-17 19:47:53', 'bdzYJ5y4', '3245295'), + (49291, 516, 423, 'not_attending', '2020-11-02 02:00:50', '2025-12-17 19:47:53', 'bdzYJ5y4', '3245296'), + (49292, 516, 424, 'not_attending', '2020-10-19 05:04:35', '2025-12-17 19:47:52', 'bdzYJ5y4', '3245751'), + (49293, 516, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'bdzYJ5y4', '3250232'), + (49294, 516, 428, 'attending', '2020-10-26 20:56:49', '2025-12-17 19:47:53', 'bdzYJ5y4', '3250332'), + (49295, 516, 429, 'maybe', '2020-11-28 22:27:52', '2025-12-17 19:47:54', 'bdzYJ5y4', '3250523'), + (49296, 516, 431, 'maybe', '2020-10-26 20:57:50', '2025-12-17 19:47:53', 'bdzYJ5y4', '3253225'), + (49297, 516, 432, 'not_attending', '2020-11-02 02:00:36', '2025-12-17 19:47:53', 'bdzYJ5y4', '3254416'), + (49298, 516, 433, 'not_attending', '2020-11-02 02:00:55', '2025-12-17 19:47:53', 'bdzYJ5y4', '3254417'), + (49299, 516, 437, 'not_attending', '2020-10-28 22:10:18', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256160'), + (49300, 516, 438, 'not_attending', '2020-10-29 18:34:12', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256163'), + (49301, 516, 439, 'not_attending', '2020-10-28 22:10:15', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256164'), + (49302, 516, 440, 'not_attending', '2020-11-07 22:59:41', '2025-12-17 19:47:53', 'bdzYJ5y4', '3256168'), + (49303, 516, 441, 'attending', '2020-11-11 23:07:31', '2025-12-17 19:47:54', 'bdzYJ5y4', '3256169'), + (49304, 516, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'bdzYJ5y4', '3263578'), + (49305, 516, 444, 'not_attending', '2020-10-30 21:40:37', '2025-12-17 19:47:53', 'bdzYJ5y4', '3263745'), + (49306, 516, 445, 'not_attending', '2020-11-13 00:32:32', '2025-12-17 19:47:54', 'bdzYJ5y4', '3266138'), + (49307, 516, 446, 'maybe', '2020-10-26 20:57:18', '2025-12-17 19:47:53', 'bdzYJ5y4', '3267163'), + (49308, 516, 447, 'not_attending', '2020-10-26 20:58:02', '2025-12-17 19:47:53', 'bdzYJ5y4', '3267895'), + (49309, 516, 449, 'maybe', '2020-11-07 17:27:36', '2025-12-17 19:47:53', 'bdzYJ5y4', '3272055'), + (49310, 516, 451, 'not_attending', '2020-11-02 02:00:28', '2025-12-17 19:47:53', 'bdzYJ5y4', '3272186'), + (49311, 516, 452, 'maybe', '2020-11-28 00:25:42', '2025-12-17 19:47:54', 'bdzYJ5y4', '3272981'), + (49312, 516, 454, 'not_attending', '2020-11-13 00:34:26', '2025-12-17 19:47:54', 'bdzYJ5y4', '3275665'), + (49313, 516, 456, 'not_attending', '2020-11-17 00:45:15', '2025-12-17 19:47:54', 'bdzYJ5y4', '3276428'), + (49314, 516, 457, 'not_attending', '2020-11-07 14:52:46', '2025-12-17 19:47:53', 'bdzYJ5y4', '3279087'), + (49315, 516, 458, 'maybe', '2020-11-09 20:58:36', '2025-12-17 19:47:53', 'bdzYJ5y4', '3279233'), + (49316, 516, 459, 'not_attending', '2020-11-15 21:51:24', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281467'), + (49317, 516, 460, 'maybe', '2020-11-14 22:01:17', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281468'), + (49318, 516, 461, 'not_attending', '2020-11-09 20:58:29', '2025-12-17 19:47:53', 'bdzYJ5y4', '3281469'), + (49319, 516, 462, 'not_attending', '2020-11-09 20:58:45', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281470'), + (49320, 516, 463, 'maybe', '2020-11-13 00:34:34', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281553'), + (49321, 516, 464, 'maybe', '2020-11-21 01:55:45', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281554'), + (49322, 516, 465, 'maybe', '2020-11-24 06:41:06', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281555'), + (49323, 516, 466, 'not_attending', '2020-11-23 03:25:24', '2025-12-17 19:47:54', 'bdzYJ5y4', '3281829'), + (49324, 516, 467, 'not_attending', '2020-11-18 00:21:28', '2025-12-17 19:47:54', 'bdzYJ5y4', '3282756'), + (49325, 516, 468, 'attending', '2020-11-22 00:44:24', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285413'), + (49326, 516, 469, 'attending', '2020-11-28 00:25:34', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285414'), + (49327, 516, 470, 'not_attending', '2020-11-15 21:51:31', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285443'), + (49328, 516, 471, 'not_attending', '2020-11-14 22:00:59', '2025-12-17 19:47:54', 'bdzYJ5y4', '3285445'), + (49329, 516, 472, 'not_attending', '2020-11-13 00:32:21', '2025-12-17 19:47:54', 'bdzYJ5y4', '3286541'), + (49330, 516, 475, 'not_attending', '2020-11-23 03:26:15', '2025-12-17 19:47:54', 'bdzYJ5y4', '3286760'), + (49331, 516, 476, 'not_attending', '2020-11-14 22:00:55', '2025-12-17 19:47:54', 'bdzYJ5y4', '3286982'), + (49332, 516, 477, 'maybe', '2020-11-28 22:27:31', '2025-12-17 19:47:54', 'bdzYJ5y4', '3289559'), + (49333, 516, 478, 'not_attending', '2020-11-16 20:49:28', '2025-12-17 19:47:54', 'bdzYJ5y4', '3290899'), + (49334, 516, 481, 'not_attending', '2020-11-23 03:25:33', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297764'), + (49335, 516, 482, 'not_attending', '2020-11-24 22:36:19', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297769'), + (49336, 516, 483, 'not_attending', '2020-11-23 03:25:29', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297791'), + (49337, 516, 484, 'not_attending', '2020-11-21 00:52:22', '2025-12-17 19:47:54', 'bdzYJ5y4', '3297792'), + (49338, 516, 486, 'not_attending', '2020-11-23 03:25:59', '2025-12-17 19:47:54', 'bdzYJ5y4', '3300281'), + (49339, 516, 487, 'not_attending', '2020-11-28 00:25:47', '2025-12-17 19:47:54', 'bdzYJ5y4', '3311122'), + (49340, 516, 488, 'not_attending', '2020-11-28 00:26:07', '2025-12-17 19:47:54', 'bdzYJ5y4', '3312757'), + (49341, 516, 490, 'not_attending', '2020-12-07 21:06:30', '2025-12-17 19:47:54', 'bdzYJ5y4', '3313532'), + (49342, 516, 491, 'not_attending', '2020-12-10 20:59:18', '2025-12-17 19:47:55', 'bdzYJ5y4', '3313533'), + (49343, 516, 492, 'not_attending', '2020-11-28 22:27:38', '2025-12-17 19:47:54', 'bdzYJ5y4', '3313731'), + (49344, 516, 493, 'not_attending', '2020-12-05 03:13:59', '2025-12-17 19:47:54', 'bdzYJ5y4', '3313856'), + (49345, 516, 495, 'not_attending', '2020-12-07 21:06:13', '2025-12-17 19:47:54', 'bdzYJ5y4', '3314009'), + (49346, 516, 496, 'not_attending', '2020-12-10 20:59:15', '2025-12-17 19:47:54', 'bdzYJ5y4', '3314269'), + (49347, 516, 497, 'not_attending', '2020-12-16 22:23:16', '2025-12-17 19:47:55', 'bdzYJ5y4', '3314270'), + (49348, 516, 498, 'not_attending', '2020-12-07 21:06:04', '2025-12-17 19:47:54', 'bdzYJ5y4', '3314302'), + (49349, 516, 499, 'maybe', '2020-12-07 21:07:31', '2025-12-17 19:47:55', 'bdzYJ5y4', '3314909'), + (49350, 516, 500, 'maybe', '2020-12-16 22:23:33', '2025-12-17 19:47:55', 'bdzYJ5y4', '3314964'), + (49351, 516, 501, 'maybe', '2020-12-07 21:06:22', '2025-12-17 19:47:54', 'bdzYJ5y4', '3317834'), + (49352, 516, 502, 'attending', '2020-12-12 23:47:29', '2025-12-17 19:47:55', 'bdzYJ5y4', '3323365'), + (49353, 516, 504, 'not_attending', '2020-12-16 22:23:23', '2025-12-17 19:47:55', 'bdzYJ5y4', '3323368'), + (49354, 516, 506, 'maybe', '2020-12-07 21:07:51', '2025-12-17 19:47:55', 'bdzYJ5y4', '3323375'), + (49355, 516, 511, 'not_attending', '2020-12-10 20:59:37', '2025-12-17 19:47:55', 'bdzYJ5y4', '3325335'), + (49356, 516, 512, 'not_attending', '2020-12-10 20:59:31', '2025-12-17 19:47:55', 'bdzYJ5y4', '3325336'), + (49357, 516, 513, 'not_attending', '2020-12-16 22:23:40', '2025-12-17 19:47:55', 'bdzYJ5y4', '3329383'), + (49358, 516, 516, 'attending', '2020-12-16 23:04:55', '2025-12-17 19:47:48', 'bdzYJ5y4', '3334530'), + (49359, 516, 521, 'maybe', '2020-12-28 07:11:52', '2025-12-17 19:47:48', 'bdzYJ5y4', '3337454'), + (49360, 516, 525, 'not_attending', '2020-12-22 19:16:57', '2025-12-17 19:47:48', 'bdzYJ5y4', '3350467'), + (49361, 516, 526, 'attending', '2021-01-02 04:40:11', '2025-12-17 19:47:48', 'bdzYJ5y4', '3351539'), + (49362, 516, 528, 'not_attending', '2021-01-02 04:40:21', '2025-12-17 19:47:48', 'bdzYJ5y4', '3363022'), + (49363, 516, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'bdzYJ5y4', '3386848'), + (49364, 516, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'bdzYJ5y4', '3389527'), + (49365, 516, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'bdzYJ5y4', '3396499'), + (49366, 516, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'bdzYJ5y4', '3403650'), + (49367, 516, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'bdzYJ5y4', '3406988'), + (49368, 516, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'bdzYJ5y4', '3408338'), + (49369, 516, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'bdzYJ5y4', '3416576'), + (49370, 516, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'bdzYJ5y4', '3430267'), + (49371, 516, 573, 'maybe', '2021-02-21 23:39:07', '2025-12-17 19:47:50', 'bdzYJ5y4', '3435542'), + (49372, 516, 574, 'attending', '2021-03-06 01:28:01', '2025-12-17 19:47:51', 'bdzYJ5y4', '3435543'), + (49373, 516, 592, 'not_attending', '2021-02-21 23:38:52', '2025-12-17 19:47:50', 'bdzYJ5y4', '3467757'), + (49374, 516, 593, 'not_attending', '2021-02-21 23:38:17', '2025-12-17 19:47:50', 'bdzYJ5y4', '3467758'), + (49375, 516, 594, 'not_attending', '2021-03-01 23:33:13', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467759'), + (49376, 516, 595, 'not_attending', '2021-03-07 04:46:08', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467761'), + (49377, 516, 596, 'not_attending', '2021-03-07 04:46:04', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467762'), + (49378, 516, 597, 'not_attending', '2021-03-11 08:29:24', '2025-12-17 19:47:51', 'bdzYJ5y4', '3467764'), + (49379, 516, 600, 'not_attending', '2021-02-20 23:13:26', '2025-12-17 19:47:50', 'bdzYJ5y4', '3468125'), + (49380, 516, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470303'), + (49381, 516, 603, 'attending', '2021-02-20 11:23:49', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470304'), + (49382, 516, 604, 'not_attending', '2021-02-27 05:55:53', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470305'), + (49383, 516, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'bdzYJ5y4', '3470991'), + (49384, 516, 611, 'not_attending', '2021-02-21 23:38:11', '2025-12-17 19:47:50', 'bdzYJ5y4', '3482659'), + (49385, 516, 613, 'not_attending', '2021-02-21 23:38:58', '2025-12-17 19:47:50', 'bdzYJ5y4', '3490041'), + (49386, 516, 614, 'not_attending', '2021-03-01 23:28:10', '2025-12-17 19:47:51', 'bdzYJ5y4', '3490042'), + (49387, 516, 616, 'not_attending', '2021-02-20 23:13:22', '2025-12-17 19:47:50', 'bdzYJ5y4', '3493478'), + (49388, 516, 617, 'maybe', '2021-02-21 23:38:32', '2025-12-17 19:47:50', 'bdzYJ5y4', '3499119'), + (49389, 516, 621, 'attending', '2021-03-01 23:27:45', '2025-12-17 19:47:51', 'bdzYJ5y4', '3517815'), + (49390, 516, 622, 'attending', '2021-03-10 22:08:23', '2025-12-17 19:47:51', 'bdzYJ5y4', '3517816'), + (49391, 516, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'bdzYJ5y4', '3523941'), + (49392, 516, 625, 'not_attending', '2021-03-03 00:49:55', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533296'), + (49393, 516, 626, 'not_attending', '2021-03-03 03:38:11', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533298'), + (49394, 516, 627, 'not_attending', '2021-03-07 04:45:59', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533303'), + (49395, 516, 628, 'not_attending', '2021-03-11 21:55:20', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533305'), + (49396, 516, 629, 'maybe', '2021-03-11 21:55:33', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533307'), + (49397, 516, 631, 'maybe', '2021-03-01 23:33:54', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533850'), + (49398, 516, 632, 'attending', '2021-03-09 00:50:33', '2025-12-17 19:47:51', 'bdzYJ5y4', '3533853'), + (49399, 516, 633, 'maybe', '2021-03-13 02:28:11', '2025-12-17 19:47:44', 'bdzYJ5y4', '3534717'), + (49400, 516, 634, 'maybe', '2021-03-30 22:38:53', '2025-12-17 19:47:44', 'bdzYJ5y4', '3534718'), + (49401, 516, 635, 'maybe', '2021-04-04 06:55:56', '2025-12-17 19:47:44', 'bdzYJ5y4', '3534719'), + (49402, 516, 636, 'not_attending', '2021-04-13 06:16:23', '2025-12-17 19:47:45', 'bdzYJ5y4', '3534720'), + (49403, 516, 637, 'not_attending', '2021-03-15 01:56:51', '2025-12-17 19:47:51', 'bdzYJ5y4', '3536411'), + (49404, 516, 638, 'not_attending', '2021-04-04 06:55:25', '2025-12-17 19:47:44', 'bdzYJ5y4', '3536632'), + (49405, 516, 639, 'maybe', '2021-03-13 02:27:42', '2025-12-17 19:47:51', 'bdzYJ5y4', '3536656'), + (49406, 516, 640, 'not_attending', '2021-03-03 19:00:23', '2025-12-17 19:47:51', 'bdzYJ5y4', '3538866'), + (49407, 516, 641, 'attending', '2021-03-28 02:11:49', '2025-12-17 19:47:44', 'bdzYJ5y4', '3539916'), + (49408, 516, 642, 'attending', '2021-04-10 02:48:13', '2025-12-17 19:47:44', 'bdzYJ5y4', '3539917'), + (49409, 516, 643, 'not_attending', '2021-04-13 06:16:29', '2025-12-17 19:47:45', 'bdzYJ5y4', '3539918'), + (49410, 516, 644, 'attending', '2021-04-19 05:53:21', '2025-12-17 19:47:45', 'bdzYJ5y4', '3539919'), + (49411, 516, 645, 'attending', '2021-05-03 04:04:37', '2025-12-17 19:47:46', 'bdzYJ5y4', '3539920'), + (49412, 516, 646, 'attending', '2021-05-10 00:37:27', '2025-12-17 19:47:46', 'bdzYJ5y4', '3539921'), + (49413, 516, 647, 'attending', '2021-05-16 07:58:15', '2025-12-17 19:47:46', 'bdzYJ5y4', '3539922'), + (49414, 516, 648, 'attending', '2021-05-26 04:37:47', '2025-12-17 19:47:47', 'bdzYJ5y4', '3539923'), + (49415, 516, 649, 'maybe', '2021-03-13 02:28:49', '2025-12-17 19:47:51', 'bdzYJ5y4', '3539927'), + (49416, 516, 650, 'maybe', '2021-03-23 23:40:33', '2025-12-17 19:47:44', 'bdzYJ5y4', '3539928'), + (49417, 516, 651, 'not_attending', '2021-03-10 22:08:00', '2025-12-17 19:47:51', 'bdzYJ5y4', '3541045'), + (49418, 516, 652, 'not_attending', '2021-03-07 04:45:34', '2025-12-17 19:47:51', 'bdzYJ5y4', '3544466'), + (49419, 516, 664, 'attending', '2021-09-06 23:30:47', '2025-12-17 19:47:43', 'bdzYJ5y4', '3547142'), + (49420, 516, 665, 'attending', '2021-08-30 01:15:44', '2025-12-17 19:47:43', 'bdzYJ5y4', '3547143'), + (49421, 516, 667, 'attending', '2021-08-27 00:16:51', '2025-12-17 19:47:42', 'bdzYJ5y4', '3547145'), + (49422, 516, 669, 'maybe', '2021-06-26 04:07:07', '2025-12-17 19:47:38', 'bdzYJ5y4', '3547147'), + (49423, 516, 670, 'not_attending', '2021-06-18 23:07:24', '2025-12-17 19:47:48', 'bdzYJ5y4', '3547148'), + (49424, 516, 674, 'not_attending', '2021-07-27 21:52:39', '2025-12-17 19:47:41', 'bdzYJ5y4', '3547152'), + (49425, 516, 675, 'not_attending', '2021-07-26 21:23:51', '2025-12-17 19:47:40', 'bdzYJ5y4', '3547153'), + (49426, 516, 676, 'maybe', '2021-07-20 00:03:15', '2025-12-17 19:47:40', 'bdzYJ5y4', '3547154'), + (49427, 516, 677, 'not_attending', '2021-05-26 04:37:54', '2025-12-17 19:47:47', 'bdzYJ5y4', '3547155'), + (49428, 516, 678, 'not_attending', '2021-03-11 08:28:01', '2025-12-17 19:47:51', 'bdzYJ5y4', '3547158'), + (49429, 516, 680, 'not_attending', '2021-03-10 22:08:04', '2025-12-17 19:47:51', 'bdzYJ5y4', '3547700'), + (49430, 516, 682, 'not_attending', '2021-03-15 01:57:13', '2025-12-17 19:47:51', 'bdzYJ5y4', '3548806'), + (49431, 516, 683, 'not_attending', '2021-03-11 08:29:28', '2025-12-17 19:47:51', 'bdzYJ5y4', '3548818'), + (49432, 516, 684, 'not_attending', '2021-03-12 21:53:02', '2025-12-17 19:47:51', 'bdzYJ5y4', '3549257'), + (49433, 516, 685, 'not_attending', '2021-04-12 05:06:04', '2025-12-17 19:47:44', 'bdzYJ5y4', '3551564'), + (49434, 516, 686, 'not_attending', '2021-03-11 21:55:27', '2025-12-17 19:47:51', 'bdzYJ5y4', '3553333'), + (49435, 516, 687, 'not_attending', '2021-03-11 08:28:54', '2025-12-17 19:47:51', 'bdzYJ5y4', '3553405'), + (49436, 516, 688, 'not_attending', '2021-03-15 01:55:16', '2025-12-17 19:47:51', 'bdzYJ5y4', '3553729'), + (49437, 516, 690, 'maybe', '2021-03-13 02:28:00', '2025-12-17 19:47:43', 'bdzYJ5y4', '3559954'), + (49438, 516, 692, 'not_attending', '2021-03-12 21:53:09', '2025-12-17 19:47:51', 'bdzYJ5y4', '3561995'), + (49439, 516, 693, 'attending', '2021-03-15 01:54:53', '2025-12-17 19:47:51', 'bdzYJ5y4', '3565907'), + (49440, 516, 695, 'maybe', '2021-03-15 01:54:40', '2025-12-17 19:47:51', 'bdzYJ5y4', '3567535'), + (49441, 516, 696, 'maybe', '2021-03-15 01:55:58', '2025-12-17 19:47:51', 'bdzYJ5y4', '3567536'), + (49442, 516, 697, 'not_attending', '2021-03-23 23:40:43', '2025-12-17 19:47:44', 'bdzYJ5y4', '3567537'), + (49443, 516, 699, 'maybe', '2021-03-29 21:21:33', '2025-12-17 19:47:44', 'bdzYJ5y4', '3572241'), + (49444, 516, 704, 'not_attending', '2021-03-30 22:38:34', '2025-12-17 19:47:44', 'bdzYJ5y4', '3581429'), + (49445, 516, 705, 'maybe', '2021-03-26 02:06:43', '2025-12-17 19:47:44', 'bdzYJ5y4', '3581895'), + (49446, 516, 706, 'not_attending', '2021-04-12 05:08:26', '2025-12-17 19:47:45', 'bdzYJ5y4', '3582734'), + (49447, 516, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdzYJ5y4', '3583262'), + (49448, 516, 708, 'maybe', '2021-03-22 01:30:05', '2025-12-17 19:47:44', 'bdzYJ5y4', '3587850'), + (49449, 516, 709, 'maybe', '2021-03-30 22:50:24', '2025-12-17 19:47:44', 'bdzYJ5y4', '3587852'), + (49450, 516, 710, 'maybe', '2021-04-04 06:55:37', '2025-12-17 19:47:44', 'bdzYJ5y4', '3587853'), + (49451, 516, 711, 'maybe', '2021-03-23 01:07:28', '2025-12-17 19:47:44', 'bdzYJ5y4', '3588075'), + (49452, 516, 716, 'not_attending', '2021-03-30 22:47:06', '2025-12-17 19:47:44', 'bdzYJ5y4', '3618353'), + (49453, 516, 717, 'maybe', '2021-03-26 02:07:29', '2025-12-17 19:47:44', 'bdzYJ5y4', '3619523'), + (49454, 516, 719, 'not_attending', '2021-04-04 06:55:44', '2025-12-17 19:47:44', 'bdzYJ5y4', '3635405'), + (49455, 516, 722, 'not_attending', '2021-04-01 00:58:20', '2025-12-17 19:47:44', 'bdzYJ5y4', '3646347'), + (49456, 516, 723, 'not_attending', '2021-04-05 22:25:25', '2025-12-17 19:47:44', 'bdzYJ5y4', '3649179'), + (49457, 516, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdzYJ5y4', '3661369'), + (49458, 516, 725, 'not_attending', '2021-05-16 07:58:21', '2025-12-17 19:47:47', 'bdzYJ5y4', '3661372'), + (49459, 516, 728, 'not_attending', '2021-04-13 06:16:13', '2025-12-17 19:47:44', 'bdzYJ5y4', '3668073'), + (49460, 516, 729, 'not_attending', '2021-04-28 16:08:47', '2025-12-17 19:47:46', 'bdzYJ5y4', '3668075'), + (49461, 516, 730, 'not_attending', '2021-05-03 04:04:14', '2025-12-17 19:47:46', 'bdzYJ5y4', '3668076'), + (49462, 516, 731, 'not_attending', '2021-04-04 06:55:18', '2025-12-17 19:47:44', 'bdzYJ5y4', '3674262'), + (49463, 516, 732, 'maybe', '2021-04-19 05:52:54', '2025-12-17 19:47:45', 'bdzYJ5y4', '3674268'), + (49464, 516, 733, 'not_attending', '2021-04-05 22:25:32', '2025-12-17 19:47:44', 'bdzYJ5y4', '3675473'), + (49465, 516, 734, 'not_attending', '2021-04-05 22:25:52', '2025-12-17 19:47:44', 'bdzYJ5y4', '3676806'), + (49466, 516, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdzYJ5y4', '3677402'), + (49467, 516, 737, 'maybe', '2021-04-05 22:25:37', '2025-12-17 19:47:44', 'bdzYJ5y4', '3679349'), + (49468, 516, 738, 'maybe', '2021-04-19 05:53:12', '2025-12-17 19:47:45', 'bdzYJ5y4', '3680615'), + (49469, 516, 739, 'not_attending', '2021-05-07 22:55:34', '2025-12-17 19:47:46', 'bdzYJ5y4', '3680616'), + (49470, 516, 740, 'maybe', '2021-04-28 16:09:04', '2025-12-17 19:47:46', 'bdzYJ5y4', '3680617'), + (49471, 516, 741, 'not_attending', '2021-05-21 22:49:45', '2025-12-17 19:47:46', 'bdzYJ5y4', '3680618'), + (49472, 516, 743, 'not_attending', '2021-06-25 20:52:43', '2025-12-17 19:47:38', 'bdzYJ5y4', '3680623'), + (49473, 516, 744, 'maybe', '2021-06-10 19:19:24', '2025-12-17 19:47:47', 'bdzYJ5y4', '3680624'), + (49474, 516, 745, 'not_attending', '2021-06-30 02:24:43', '2025-12-17 19:47:38', 'bdzYJ5y4', '3680625'), + (49475, 516, 746, 'not_attending', '2021-07-07 21:01:11', '2025-12-17 19:47:39', 'bdzYJ5y4', '3680626'), + (49476, 516, 747, 'maybe', '2021-04-07 01:18:21', '2025-12-17 19:47:45', 'bdzYJ5y4', '3684754'), + (49477, 516, 748, 'not_attending', '2021-04-08 22:03:09', '2025-12-17 19:47:44', 'bdzYJ5y4', '3685353'), + (49478, 516, 749, 'not_attending', '2021-04-12 05:06:08', '2025-12-17 19:47:44', 'bdzYJ5y4', '3689769'), + (49479, 516, 750, 'not_attending', '2021-04-12 05:06:13', '2025-12-17 19:47:44', 'bdzYJ5y4', '3689962'), + (49480, 516, 751, 'not_attending', '2021-04-19 05:52:09', '2025-12-17 19:47:45', 'bdzYJ5y4', '3691364'), + (49481, 516, 752, 'not_attending', '2021-04-13 06:16:20', '2025-12-17 19:47:44', 'bdzYJ5y4', '3699422'), + (49482, 516, 753, 'not_attending', '2021-04-12 05:08:14', '2025-12-17 19:47:45', 'bdzYJ5y4', '3701861'), + (49483, 516, 754, 'not_attending', '2021-04-19 05:52:48', '2025-12-17 19:47:45', 'bdzYJ5y4', '3701863'), + (49484, 516, 755, 'not_attending', '2021-04-19 05:53:00', '2025-12-17 19:47:45', 'bdzYJ5y4', '3701864'), + (49485, 516, 756, 'maybe', '2021-04-26 05:03:36', '2025-12-17 19:47:46', 'bdzYJ5y4', '3704795'), + (49486, 516, 758, 'not_attending', '2021-04-19 05:51:49', '2025-12-17 19:47:45', 'bdzYJ5y4', '3713700'), + (49487, 516, 760, 'maybe', '2021-05-07 21:45:26', '2025-12-17 19:47:46', 'bdzYJ5y4', '3716035'), + (49488, 516, 761, 'not_attending', '2021-05-14 22:37:48', '2025-12-17 19:47:46', 'bdzYJ5y4', '3716041'), + (49489, 516, 762, 'not_attending', '2021-04-19 05:51:43', '2025-12-17 19:47:45', 'bdzYJ5y4', '3719118'), + (49490, 516, 764, 'not_attending', '2021-04-23 21:16:50', '2025-12-17 19:47:45', 'bdzYJ5y4', '3720507'), + (49491, 516, 765, 'maybe', '2021-04-19 05:52:40', '2025-12-17 19:47:45', 'bdzYJ5y4', '3720508'), + (49492, 516, 766, 'not_attending', '2021-05-10 00:37:03', '2025-12-17 19:47:46', 'bdzYJ5y4', '3721383'), + (49493, 516, 770, 'not_attending', '2021-04-28 16:08:55', '2025-12-17 19:47:46', 'bdzYJ5y4', '3724559'), + (49494, 516, 771, 'not_attending', '2021-04-28 16:08:52', '2025-12-17 19:47:46', 'bdzYJ5y4', '3726420'), + (49495, 516, 772, 'not_attending', '2021-04-28 23:16:15', '2025-12-17 19:47:46', 'bdzYJ5y4', '3726421'), + (49496, 516, 774, 'maybe', '2021-04-21 21:34:14', '2025-12-17 19:47:45', 'bdzYJ5y4', '3730212'), + (49497, 516, 777, 'attending', '2021-05-01 21:41:59', '2025-12-17 19:47:46', 'bdzYJ5y4', '3746248'), + (49498, 516, 778, 'not_attending', '2021-04-28 23:15:33', '2025-12-17 19:47:46', 'bdzYJ5y4', '3751550'), + (49499, 516, 779, 'not_attending', '2021-05-03 04:03:56', '2025-12-17 19:47:46', 'bdzYJ5y4', '3757118'), + (49500, 516, 781, 'not_attending', '2021-05-06 22:55:44', '2025-12-17 19:47:46', 'bdzYJ5y4', '3760130'), + (49501, 516, 782, 'maybe', '2021-05-03 04:04:08', '2025-12-17 19:47:46', 'bdzYJ5y4', '3761843'), + (49502, 516, 783, 'not_attending', '2021-05-03 04:03:48', '2025-12-17 19:47:46', 'bdzYJ5y4', '3767471'), + (49503, 516, 784, 'not_attending', '2021-05-06 22:55:40', '2025-12-17 19:47:46', 'bdzYJ5y4', '3768775'), + (49504, 516, 785, 'not_attending', '2021-05-11 02:34:58', '2025-12-17 19:47:46', 'bdzYJ5y4', '3779779'), + (49505, 516, 787, 'not_attending', '2021-05-10 00:36:36', '2025-12-17 19:47:46', 'bdzYJ5y4', '3780558'), + (49506, 516, 789, 'not_attending', '2021-05-25 03:26:19', '2025-12-17 19:47:47', 'bdzYJ5y4', '3785818'), + (49507, 516, 791, 'maybe', '2021-05-10 00:36:45', '2025-12-17 19:47:46', 'bdzYJ5y4', '3792735'), + (49508, 516, 792, 'maybe', '2021-05-11 02:35:15', '2025-12-17 19:47:46', 'bdzYJ5y4', '3793156'), + (49509, 516, 793, 'attending', '2021-05-31 09:36:50', '2025-12-17 19:47:47', 'bdzYJ5y4', '3793537'), + (49510, 516, 794, 'maybe', '2021-05-20 22:28:37', '2025-12-17 19:47:47', 'bdzYJ5y4', '3793538'), + (49511, 516, 795, 'maybe', '2021-06-09 01:34:01', '2025-12-17 19:47:47', 'bdzYJ5y4', '3793539'), + (49512, 516, 796, 'maybe', '2021-05-11 02:35:06', '2025-12-17 19:47:46', 'bdzYJ5y4', '3793862'), + (49513, 516, 797, 'not_attending', '2021-05-25 03:25:56', '2025-12-17 19:47:47', 'bdzYJ5y4', '3796195'), + (49514, 516, 798, 'maybe', '2021-05-11 02:35:37', '2025-12-17 19:47:46', 'bdzYJ5y4', '3796262'), + (49515, 516, 799, 'maybe', '2021-05-10 00:36:55', '2025-12-17 19:47:46', 'bdzYJ5y4', '3797767'), + (49516, 516, 800, 'not_attending', '2021-05-11 21:41:56', '2025-12-17 19:47:46', 'bdzYJ5y4', '3800908'), + (49517, 516, 803, 'not_attending', '2021-05-16 07:57:20', '2025-12-17 19:47:46', 'bdzYJ5y4', '3804665'), + (49518, 516, 804, 'not_attending', '2021-05-20 22:28:04', '2025-12-17 19:47:47', 'bdzYJ5y4', '3804775'), + (49519, 516, 808, 'maybe', '2021-05-20 22:26:36', '2025-12-17 19:47:46', 'bdzYJ5y4', '3807358'), + (49520, 516, 809, 'not_attending', '2021-05-16 07:58:01', '2025-12-17 19:47:46', 'bdzYJ5y4', '3807964'), + (49521, 516, 811, 'not_attending', '2021-05-16 07:57:03', '2025-12-17 19:47:46', 'bdzYJ5y4', '3808030'), + (49522, 516, 812, 'not_attending', '2021-05-16 07:57:08', '2025-12-17 19:47:46', 'bdzYJ5y4', '3808031'), + (49523, 516, 815, 'maybe', '2021-05-20 22:28:52', '2025-12-17 19:47:47', 'bdzYJ5y4', '3818136'), + (49524, 516, 816, 'not_attending', '2021-05-18 23:22:39', '2025-12-17 19:47:46', 'bdzYJ5y4', '3826524'), + (49525, 516, 818, 'maybe', '2021-05-21 04:24:15', '2025-12-17 19:47:47', 'bdzYJ5y4', '3833015'), + (49526, 516, 819, 'not_attending', '2021-05-25 03:26:37', '2025-12-17 19:47:47', 'bdzYJ5y4', '3833017'), + (49527, 516, 821, 'not_attending', '2021-05-31 09:36:32', '2025-12-17 19:47:47', 'bdzYJ5y4', '3963965'), + (49528, 516, 823, 'attending', '2021-06-15 03:10:57', '2025-12-17 19:47:48', 'bdzYJ5y4', '3974109'), + (49529, 516, 824, 'not_attending', '2021-06-02 04:24:43', '2025-12-17 19:47:47', 'bdzYJ5y4', '3974112'), + (49530, 516, 825, 'maybe', '2021-06-01 03:43:55', '2025-12-17 19:47:47', 'bdzYJ5y4', '3975283'), + (49531, 516, 827, 'not_attending', '2021-06-05 20:52:47', '2025-12-17 19:47:47', 'bdzYJ5y4', '3975311'), + (49532, 516, 828, 'attending', '2021-06-12 22:53:51', '2025-12-17 19:47:47', 'bdzYJ5y4', '3975312'), + (49533, 516, 831, 'not_attending', '2021-06-02 04:24:48', '2025-12-17 19:47:47', 'bdzYJ5y4', '3976649'), + (49534, 516, 832, 'not_attending', '2021-06-02 04:24:53', '2025-12-17 19:47:47', 'bdzYJ5y4', '3976650'), + (49535, 516, 833, 'maybe', '2021-06-04 16:43:18', '2025-12-17 19:47:47', 'bdzYJ5y4', '3990438'), + (49536, 516, 834, 'maybe', '2021-06-04 16:43:04', '2025-12-17 19:47:47', 'bdzYJ5y4', '3990439'), + (49537, 516, 838, 'maybe', '2021-06-06 22:03:34', '2025-12-17 19:47:47', 'bdzYJ5y4', '3994992'), + (49538, 516, 839, 'not_attending', '2021-06-06 22:03:26', '2025-12-17 19:47:47', 'bdzYJ5y4', '4002121'), + (49539, 516, 841, 'maybe', '2021-06-15 00:18:02', '2025-12-17 19:47:48', 'bdzYJ5y4', '4007434'), + (49540, 516, 844, 'maybe', '2021-06-15 03:10:31', '2025-12-17 19:47:38', 'bdzYJ5y4', '4014338'), + (49541, 516, 845, 'maybe', '2021-06-24 03:25:31', '2025-12-17 19:47:38', 'bdzYJ5y4', '4015717'), + (49542, 516, 850, 'attending', '2021-08-25 20:45:10', '2025-12-17 19:47:42', 'bdzYJ5y4', '4015722'), + (49543, 516, 853, 'not_attending', '2021-08-03 21:26:53', '2025-12-17 19:47:41', 'bdzYJ5y4', '4015725'), + (49544, 516, 866, 'maybe', '2021-06-15 00:18:19', '2025-12-17 19:47:38', 'bdzYJ5y4', '4020424'), + (49545, 516, 867, 'attending', '2021-06-20 03:20:56', '2025-12-17 19:47:38', 'bdzYJ5y4', '4021848'), + (49546, 516, 869, 'maybe', '2021-06-28 06:09:36', '2025-12-17 19:47:38', 'bdzYJ5y4', '4136744'), + (49547, 516, 870, 'attending', '2021-07-03 00:29:55', '2025-12-17 19:47:39', 'bdzYJ5y4', '4136937'), + (49548, 516, 871, 'not_attending', '2021-07-07 21:01:04', '2025-12-17 19:47:39', 'bdzYJ5y4', '4136938'), + (49549, 516, 872, 'maybe', '2021-07-17 20:13:21', '2025-12-17 19:47:40', 'bdzYJ5y4', '4136947'), + (49550, 516, 873, 'not_attending', '2021-06-18 23:07:06', '2025-12-17 19:47:48', 'bdzYJ5y4', '4138297'), + (49551, 516, 875, 'not_attending', '2021-06-24 03:25:43', '2025-12-17 19:47:38', 'bdzYJ5y4', '4139816'), + (49552, 516, 879, 'maybe', '2021-06-24 03:25:13', '2025-12-17 19:47:38', 'bdzYJ5y4', '4147806'), + (49553, 516, 880, 'not_attending', '2021-06-18 23:07:14', '2025-12-17 19:47:48', 'bdzYJ5y4', '4205383'), + (49554, 516, 881, 'not_attending', '2021-06-20 03:19:51', '2025-12-17 19:47:38', 'bdzYJ5y4', '4205662'), + (49555, 516, 883, 'maybe', '2021-06-21 00:32:29', '2025-12-17 19:47:38', 'bdzYJ5y4', '4209121'), + (49556, 516, 884, 'not_attending', '2021-08-06 02:02:05', '2025-12-17 19:47:42', 'bdzYJ5y4', '4210314'), + (49557, 516, 885, 'attending', '2021-06-27 22:52:38', '2025-12-17 19:47:38', 'bdzYJ5y4', '4222370'), + (49558, 516, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'bdzYJ5y4', '4225444'), + (49559, 516, 888, 'not_attending', '2021-06-26 04:07:00', '2025-12-17 19:47:38', 'bdzYJ5y4', '4226312'), + (49560, 516, 889, 'not_attending', '2021-06-28 06:09:00', '2025-12-17 19:47:38', 'bdzYJ5y4', '4227492'), + (49561, 516, 890, 'attending', '2021-06-29 23:07:09', '2025-12-17 19:47:38', 'bdzYJ5y4', '4228666'), + (49562, 516, 894, 'maybe', '2021-07-18 23:23:50', '2025-12-17 19:47:39', 'bdzYJ5y4', '4229423'), + (49563, 516, 896, 'not_attending', '2021-06-28 06:09:07', '2025-12-17 19:47:38', 'bdzYJ5y4', '4231145'), + (49564, 516, 898, 'not_attending', '2021-06-30 02:24:27', '2025-12-17 19:47:38', 'bdzYJ5y4', '4236746'), + (49565, 516, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'bdzYJ5y4', '4239259'), + (49566, 516, 900, 'attending', '2021-07-18 23:24:35', '2025-12-17 19:47:40', 'bdzYJ5y4', '4240316'), + (49567, 516, 901, 'not_attending', '2021-07-26 21:23:46', '2025-12-17 19:47:40', 'bdzYJ5y4', '4240317'), + (49568, 516, 902, 'not_attending', '2021-07-27 21:52:21', '2025-12-17 19:47:41', 'bdzYJ5y4', '4240318'), + (49569, 516, 903, 'attending', '2021-08-07 02:16:20', '2025-12-17 19:47:42', 'bdzYJ5y4', '4240320'), + (49570, 516, 905, 'maybe', '2021-07-07 16:15:51', '2025-12-17 19:47:39', 'bdzYJ5y4', '4250163'), + (49571, 516, 914, 'not_attending', '2021-07-17 20:13:00', '2025-12-17 19:47:39', 'bdzYJ5y4', '4273767'), + (49572, 516, 915, 'maybe', '2021-07-17 20:13:12', '2025-12-17 19:47:39', 'bdzYJ5y4', '4273770'), + (49573, 516, 916, 'attending', '2021-07-22 21:27:50', '2025-12-17 19:47:40', 'bdzYJ5y4', '4273772'), + (49574, 516, 919, 'not_attending', '2021-07-17 20:08:34', '2025-12-17 19:47:39', 'bdzYJ5y4', '4275957'), + (49575, 516, 920, 'maybe', '2021-07-22 21:30:20', '2025-12-17 19:47:40', 'bdzYJ5y4', '4277819'), + (49576, 516, 922, 'not_attending', '2021-07-20 00:03:51', '2025-12-17 19:47:40', 'bdzYJ5y4', '4280811'), + (49577, 516, 923, 'not_attending', '2021-07-20 00:03:35', '2025-12-17 19:47:40', 'bdzYJ5y4', '4292773'), + (49578, 516, 927, 'maybe', '2021-07-22 21:30:31', '2025-12-17 19:47:40', 'bdzYJ5y4', '4297216'), + (49579, 516, 928, 'maybe', '2021-07-22 21:30:38', '2025-12-17 19:47:40', 'bdzYJ5y4', '4297218'), + (49580, 516, 929, 'not_attending', '2021-08-03 21:26:04', '2025-12-17 19:47:41', 'bdzYJ5y4', '4297223'), + (49581, 516, 931, 'attending', '2021-07-26 21:23:03', '2025-12-17 19:47:40', 'bdzYJ5y4', '4301535'), + (49582, 516, 933, 'attending', '2021-07-26 17:26:40', '2025-12-17 19:47:40', 'bdzYJ5y4', '4301723'), + (49583, 516, 934, 'maybe', '2021-08-03 21:25:40', '2025-12-17 19:47:41', 'bdzYJ5y4', '4302093'), + (49584, 516, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'bdzYJ5y4', '4304151'), + (49585, 516, 937, 'not_attending', '2021-07-27 21:48:53', '2025-12-17 19:47:40', 'bdzYJ5y4', '4306596'), + (49586, 516, 940, 'not_attending', '2021-07-27 21:51:49', '2025-12-17 19:47:40', 'bdzYJ5y4', '4309049'), + (49587, 516, 942, 'not_attending', '2021-07-26 21:23:56', '2025-12-17 19:47:40', 'bdzYJ5y4', '4310297'), + (49588, 516, 943, 'not_attending', '2021-07-27 21:52:30', '2025-12-17 19:47:41', 'bdzYJ5y4', '4310979'), + (49589, 516, 944, 'not_attending', '2021-08-01 23:50:18', '2025-12-17 19:47:41', 'bdzYJ5y4', '4310980'), + (49590, 516, 945, 'not_attending', '2021-08-01 23:50:23', '2025-12-17 19:47:42', 'bdzYJ5y4', '4310981'), + (49591, 516, 946, 'maybe', '2021-08-01 23:49:24', '2025-12-17 19:47:40', 'bdzYJ5y4', '4314835'), + (49592, 516, 947, 'attending', '2021-08-06 01:59:19', '2025-12-17 19:47:41', 'bdzYJ5y4', '4315713'), + (49593, 516, 952, 'attending', '2021-08-01 23:49:50', '2025-12-17 19:47:41', 'bdzYJ5y4', '4318286'), + (49594, 516, 954, 'maybe', '2021-08-06 02:01:49', '2025-12-17 19:47:41', 'bdzYJ5y4', '4331303'), + (49595, 516, 955, 'maybe', '2021-08-06 02:01:42', '2025-12-17 19:47:41', 'bdzYJ5y4', '4331588'), + (49596, 516, 956, 'not_attending', '2021-08-03 21:25:31', '2025-12-17 19:47:40', 'bdzYJ5y4', '4331968'), + (49597, 516, 957, 'not_attending', '2021-08-06 01:59:47', '2025-12-17 19:47:41', 'bdzYJ5y4', '4338834'), + (49598, 516, 958, 'not_attending', '2021-08-07 02:16:00', '2025-12-17 19:47:41', 'bdzYJ5y4', '4342996'), + (49599, 516, 960, 'not_attending', '2021-08-09 22:17:03', '2025-12-17 19:47:41', 'bdzYJ5y4', '4344519'), + (49600, 516, 961, 'not_attending', '2021-08-13 17:04:02', '2025-12-17 19:47:42', 'bdzYJ5y4', '4345519'), + (49601, 516, 962, 'not_attending', '2021-08-09 22:17:12', '2025-12-17 19:47:41', 'bdzYJ5y4', '4346305'), + (49602, 516, 969, 'not_attending', '2021-08-13 17:04:07', '2025-12-17 19:47:42', 'bdzYJ5y4', '4356699'), + (49603, 516, 970, 'not_attending', '2021-08-13 17:03:57', '2025-12-17 19:47:42', 'bdzYJ5y4', '4356798'), + (49604, 516, 971, 'maybe', '2021-09-05 20:51:31', '2025-12-17 19:47:43', 'bdzYJ5y4', '4356801'), + (49605, 516, 973, 'attending', '2021-08-21 18:36:39', '2025-12-17 19:47:42', 'bdzYJ5y4', '4366186'), + (49606, 516, 974, 'attending', '2021-08-22 20:20:14', '2025-12-17 19:47:42', 'bdzYJ5y4', '4366187'), + (49607, 516, 980, 'not_attending', '2021-08-21 18:36:30', '2025-12-17 19:47:42', 'bdzYJ5y4', '4380358'), + (49608, 516, 981, 'not_attending', '2021-08-25 20:48:12', '2025-12-17 19:47:42', 'bdzYJ5y4', '4387305'), + (49609, 516, 985, 'attending', '2021-08-21 18:36:22', '2025-12-17 19:47:42', 'bdzYJ5y4', '4391748'), + (49610, 516, 987, 'attending', '2021-09-01 18:49:12', '2025-12-17 19:47:43', 'bdzYJ5y4', '4402634'), + (49611, 516, 988, 'not_attending', '2021-08-25 20:48:17', '2025-12-17 19:47:42', 'bdzYJ5y4', '4402823'), + (49612, 516, 989, 'not_attending', '2021-09-05 20:52:07', '2025-12-17 19:47:43', 'bdzYJ5y4', '4414282'), + (49613, 516, 990, 'attending', '2021-08-29 22:25:39', '2025-12-17 19:47:43', 'bdzYJ5y4', '4420735'), + (49614, 516, 991, 'attending', '2021-09-06 23:31:04', '2025-12-17 19:47:43', 'bdzYJ5y4', '4420738'), + (49615, 516, 992, 'not_attending', '2021-09-14 01:04:28', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420739'), + (49616, 516, 993, 'attending', '2021-09-19 20:51:18', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420741'), + (49617, 516, 994, 'maybe', '2021-10-02 12:47:20', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420742'), + (49618, 516, 995, 'not_attending', '2021-10-08 20:46:58', '2025-12-17 19:47:34', 'bdzYJ5y4', '4420744'), + (49619, 516, 996, 'attending', '2021-10-10 21:11:29', '2025-12-17 19:47:35', 'bdzYJ5y4', '4420747'), + (49620, 516, 997, 'attending', '2021-10-12 02:09:43', '2025-12-17 19:47:35', 'bdzYJ5y4', '4420748'), + (49621, 516, 998, 'not_attending', '2021-10-12 02:09:31', '2025-12-17 19:47:36', 'bdzYJ5y4', '4420749'), + (49622, 516, 999, 'not_attending', '2021-08-29 22:25:22', '2025-12-17 19:47:43', 'bdzYJ5y4', '4421150'), + (49623, 516, 1000, 'not_attending', '2021-08-30 01:15:27', '2025-12-17 19:47:43', 'bdzYJ5y4', '4424456'), + (49624, 516, 1001, 'maybe', '2021-08-30 01:15:32', '2025-12-17 19:47:43', 'bdzYJ5y4', '4424687'), + (49625, 516, 1002, 'not_attending', '2021-08-30 21:16:23', '2025-12-17 19:47:43', 'bdzYJ5y4', '4424932'), + (49626, 516, 1004, 'maybe', '2021-09-09 19:56:51', '2025-12-17 19:47:43', 'bdzYJ5y4', '4438804'), + (49627, 516, 1005, 'not_attending', '2021-09-22 18:23:02', '2025-12-17 19:47:34', 'bdzYJ5y4', '4438807'), + (49628, 516, 1013, 'attending', '2021-09-02 23:45:54', '2025-12-17 19:47:43', 'bdzYJ5y4', '4438817'), + (49629, 516, 1014, 'not_attending', '2021-09-05 20:51:06', '2025-12-17 19:47:43', 'bdzYJ5y4', '4439233'), + (49630, 516, 1015, 'not_attending', '2021-09-13 22:27:15', '2025-12-17 19:47:43', 'bdzYJ5y4', '4440800'), + (49631, 516, 1016, 'not_attending', '2021-09-05 20:51:53', '2025-12-17 19:47:43', 'bdzYJ5y4', '4441271'), + (49632, 516, 1017, 'maybe', '2021-09-05 20:51:19', '2025-12-17 19:47:43', 'bdzYJ5y4', '4441822'), + (49633, 516, 1018, 'maybe', '2021-09-05 20:51:00', '2025-12-17 19:47:43', 'bdzYJ5y4', '4448883'), + (49634, 516, 1019, 'maybe', '2021-09-09 19:55:15', '2025-12-17 19:47:43', 'bdzYJ5y4', '4450515'), + (49635, 516, 1020, 'maybe', '2021-09-13 22:38:51', '2025-12-17 19:47:43', 'bdzYJ5y4', '4451787'), + (49636, 516, 1021, 'maybe', '2021-09-17 13:53:37', '2025-12-17 19:47:34', 'bdzYJ5y4', '4451803'), + (49637, 516, 1022, 'not_attending', '2021-09-15 22:53:55', '2025-12-17 19:47:43', 'bdzYJ5y4', '4458628'), + (49638, 516, 1023, 'attending', '2021-09-09 19:52:18', '2025-12-17 19:47:43', 'bdzYJ5y4', '4461883'), + (49639, 516, 1024, 'not_attending', '2021-09-10 02:04:33', '2025-12-17 19:47:43', 'bdzYJ5y4', '4462044'), + (49640, 516, 1025, 'maybe', '2021-09-10 01:54:31', '2025-12-17 19:47:43', 'bdzYJ5y4', '4462052'), + (49641, 516, 1027, 'not_attending', '2021-09-22 18:23:10', '2025-12-17 19:47:34', 'bdzYJ5y4', '4472982'), + (49642, 516, 1028, 'not_attending', '2021-09-20 00:16:21', '2025-12-17 19:47:34', 'bdzYJ5y4', '4472983'), + (49643, 516, 1029, 'not_attending', '2021-09-13 22:27:08', '2025-12-17 19:47:43', 'bdzYJ5y4', '4473063'), + (49644, 516, 1030, 'not_attending', '2021-09-17 13:53:28', '2025-12-17 19:47:34', 'bdzYJ5y4', '4473064'), + (49645, 516, 1031, 'not_attending', '2021-09-22 18:22:44', '2025-12-17 19:47:34', 'bdzYJ5y4', '4473789'), + (49646, 516, 1034, 'not_attending', '2021-09-17 13:52:57', '2025-12-17 19:47:43', 'bdzYJ5y4', '4486265'), + (49647, 516, 1035, 'maybe', '2021-09-20 00:15:37', '2025-12-17 19:47:34', 'bdzYJ5y4', '4492184'), + (49648, 516, 1036, 'attending', '2021-09-22 18:22:16', '2025-12-17 19:47:34', 'bdzYJ5y4', '4493166'), + (49649, 516, 1037, 'not_attending', '2021-09-22 14:02:05', '2025-12-17 19:47:34', 'bdzYJ5y4', '4493233'), + (49650, 516, 1038, 'attending', '2021-09-20 00:16:24', '2025-12-17 19:47:34', 'bdzYJ5y4', '4496603'), + (49651, 516, 1042, 'attending', '2021-11-22 23:20:11', '2025-12-17 19:47:37', 'bdzYJ5y4', '4496607'), + (49652, 516, 1045, 'not_attending', '2021-10-13 02:11:18', '2025-12-17 19:47:36', 'bdzYJ5y4', '4496610'), + (49653, 516, 1046, 'attending', '2021-10-16 14:46:11', '2025-12-17 19:47:35', 'bdzYJ5y4', '4496611'), + (49654, 516, 1048, 'attending', '2021-11-11 18:18:31', '2025-12-17 19:47:36', 'bdzYJ5y4', '4496613'), + (49655, 516, 1049, 'attending', '2022-01-22 23:12:31', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496614'), + (49656, 516, 1050, 'attending', '2022-01-29 20:37:11', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496615'), + (49657, 516, 1051, 'attending', '2022-01-31 19:17:13', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496616'), + (49658, 516, 1053, 'attending', '2022-02-15 17:57:04', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496618'), + (49659, 516, 1054, 'attending', '2022-03-14 01:54:40', '2025-12-17 19:47:25', 'bdzYJ5y4', '4496619'), + (49660, 516, 1056, 'maybe', '2022-01-04 17:03:53', '2025-12-17 19:47:31', 'bdzYJ5y4', '4496622'), + (49661, 516, 1058, 'not_attending', '2022-02-15 17:57:13', '2025-12-17 19:47:33', 'bdzYJ5y4', '4496625'), + (49662, 516, 1059, 'not_attending', '2022-03-11 16:51:55', '2025-12-17 19:47:33', 'bdzYJ5y4', '4496626'), + (49663, 516, 1060, 'attending', '2022-03-21 13:51:30', '2025-12-17 19:47:25', 'bdzYJ5y4', '4496627'), + (49664, 516, 1061, 'not_attending', '2022-02-12 22:45:04', '2025-12-17 19:47:32', 'bdzYJ5y4', '4496628'), + (49665, 516, 1062, 'attending', '2022-02-26 17:24:08', '2025-12-17 19:47:33', 'bdzYJ5y4', '4496629'), + (49666, 516, 1063, 'not_attending', '2021-09-22 18:23:20', '2025-12-17 19:47:34', 'bdzYJ5y4', '4496630'), + (49667, 516, 1066, 'not_attending', '2021-09-22 18:23:28', '2025-12-17 19:47:34', 'bdzYJ5y4', '4506039'), + (49668, 516, 1067, 'attending', '2021-09-23 02:08:27', '2025-12-17 19:47:34', 'bdzYJ5y4', '4508342'), + (49669, 516, 1068, 'maybe', '2021-09-28 01:28:04', '2025-12-17 19:47:34', 'bdzYJ5y4', '4511471'), + (49670, 516, 1070, 'not_attending', '2021-09-28 21:41:34', '2025-12-17 19:47:34', 'bdzYJ5y4', '4512562'), + (49671, 516, 1071, 'not_attending', '2021-10-04 19:42:57', '2025-12-17 19:47:34', 'bdzYJ5y4', '4516078'), + (49672, 516, 1072, 'maybe', '2021-10-02 21:43:32', '2025-12-17 19:47:34', 'bdzYJ5y4', '4516287'), + (49673, 516, 1074, 'not_attending', '2021-09-29 21:20:06', '2025-12-17 19:47:34', 'bdzYJ5y4', '4528953'), + (49674, 516, 1077, 'not_attending', '2021-10-13 02:10:43', '2025-12-17 19:47:34', 'bdzYJ5y4', '4540903'), + (49675, 516, 1079, 'not_attending', '2021-10-20 17:07:07', '2025-12-17 19:47:35', 'bdzYJ5y4', '4563823'), + (49676, 516, 1081, 'not_attending', '2021-10-12 01:47:50', '2025-12-17 19:47:34', 'bdzYJ5y4', '4564602'), + (49677, 516, 1082, 'not_attending', '2021-10-14 20:16:30', '2025-12-17 19:47:35', 'bdzYJ5y4', '4566762'), + (49678, 516, 1083, 'not_attending', '2021-10-12 02:08:27', '2025-12-17 19:47:34', 'bdzYJ5y4', '4566768'), + (49679, 516, 1084, 'not_attending', '2021-10-12 02:08:20', '2025-12-17 19:47:35', 'bdzYJ5y4', '4566769'), + (49680, 516, 1085, 'not_attending', '2021-12-21 02:20:21', '2025-12-17 19:47:31', 'bdzYJ5y4', '4568542'), + (49681, 516, 1086, 'attending', '2021-10-13 02:08:21', '2025-12-17 19:47:34', 'bdzYJ5y4', '4568602'), + (49682, 516, 1087, 'not_attending', '2021-10-16 14:45:55', '2025-12-17 19:47:35', 'bdzYJ5y4', '4572153'), + (49683, 516, 1090, 'maybe', '2021-10-17 19:18:43', '2025-12-17 19:47:35', 'bdzYJ5y4', '4574713'), + (49684, 516, 1093, 'attending', '2021-10-20 18:44:14', '2025-12-17 19:47:35', 'bdzYJ5y4', '4585962'), + (49685, 516, 1094, 'maybe', '2021-10-26 02:07:14', '2025-12-17 19:47:36', 'bdzYJ5y4', '4587337'), + (49686, 516, 1095, 'not_attending', '2021-10-27 20:29:54', '2025-12-17 19:47:36', 'bdzYJ5y4', '4596356'), + (49687, 516, 1097, 'not_attending', '2021-11-04 00:07:15', '2025-12-17 19:47:36', 'bdzYJ5y4', '4598860'), + (49688, 516, 1098, 'maybe', '2021-11-11 00:33:19', '2025-12-17 19:47:36', 'bdzYJ5y4', '4598861'), + (49689, 516, 1099, 'not_attending', '2021-10-31 22:59:23', '2025-12-17 19:47:36', 'bdzYJ5y4', '4602797'), + (49690, 516, 1100, 'not_attending', '2021-11-08 02:51:40', '2025-12-17 19:47:36', 'bdzYJ5y4', '4607305'), + (49691, 516, 1101, 'not_attending', '2021-11-11 15:10:56', '2025-12-17 19:47:36', 'bdzYJ5y4', '4607339'), + (49692, 516, 1102, 'maybe', '2021-11-08 02:52:39', '2025-12-17 19:47:37', 'bdzYJ5y4', '4612098'), + (49693, 516, 1103, 'not_attending', '2021-11-09 15:58:38', '2025-12-17 19:47:36', 'bdzYJ5y4', '4616350'), + (49694, 516, 1104, 'attending', '2021-11-11 18:18:29', '2025-12-17 19:47:36', 'bdzYJ5y4', '4618310'), + (49695, 516, 1105, 'not_attending', '2021-11-08 23:20:32', '2025-12-17 19:47:36', 'bdzYJ5y4', '4618567'), + (49696, 516, 1106, 'not_attending', '2021-11-12 23:48:50', '2025-12-17 19:47:36', 'bdzYJ5y4', '4620452'), + (49697, 516, 1107, 'not_attending', '2021-11-17 00:18:23', '2025-12-17 19:47:37', 'bdzYJ5y4', '4620697'), + (49698, 516, 1108, 'not_attending', '2021-11-17 23:22:47', '2025-12-17 19:47:37', 'bdzYJ5y4', '4632276'), + (49699, 516, 1114, 'attending', '2021-11-11 18:18:19', '2025-12-17 19:47:36', 'bdzYJ5y4', '4637896'), + (49700, 516, 1116, 'not_attending', '2021-11-29 00:47:40', '2025-12-17 19:47:37', 'bdzYJ5y4', '4642994'), + (49701, 516, 1117, 'not_attending', '2021-12-08 03:35:45', '2025-12-17 19:47:38', 'bdzYJ5y4', '4642995'), + (49702, 516, 1118, 'maybe', '2021-12-06 15:34:56', '2025-12-17 19:47:38', 'bdzYJ5y4', '4642996'), + (49703, 516, 1119, 'not_attending', '2021-12-21 02:20:11', '2025-12-17 19:47:31', 'bdzYJ5y4', '4642997'), + (49704, 516, 1124, 'not_attending', '2021-12-13 19:25:10', '2025-12-17 19:47:38', 'bdzYJ5y4', '4644025'), + (49705, 516, 1126, 'attending', '2021-12-12 00:27:04', '2025-12-17 19:47:38', 'bdzYJ5y4', '4645687'), + (49706, 516, 1127, 'attending', '2021-12-12 00:27:14', '2025-12-17 19:47:38', 'bdzYJ5y4', '4645698'), + (49707, 516, 1128, 'not_attending', '2021-11-17 00:18:43', '2025-12-17 19:47:37', 'bdzYJ5y4', '4645704'), + (49708, 516, 1129, 'attending', '2021-11-14 23:38:00', '2025-12-17 19:47:37', 'bdzYJ5y4', '4645705'), + (49709, 516, 1130, 'attending', '2021-11-29 00:48:06', '2025-12-17 19:47:37', 'bdzYJ5y4', '4658824'), + (49710, 516, 1131, 'not_attending', '2021-12-18 19:09:38', '2025-12-17 19:47:31', 'bdzYJ5y4', '4658825'), + (49711, 516, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'bdzYJ5y4', '4668385'), + (49712, 516, 1135, 'not_attending', '2021-11-27 00:51:27', '2025-12-17 19:47:37', 'bdzYJ5y4', '4670469'), + (49713, 516, 1139, 'maybe', '2021-11-29 00:47:55', '2025-12-17 19:47:37', 'bdzYJ5y4', '4675604'), + (49714, 516, 1140, 'attending', '2021-12-03 22:41:10', '2025-12-17 19:47:37', 'bdzYJ5y4', '4679701'), + (49715, 516, 1142, 'not_attending', '2021-12-06 15:33:09', '2025-12-17 19:47:37', 'bdzYJ5y4', '4681923'), + (49716, 516, 1144, 'not_attending', '2021-12-07 20:15:34', '2025-12-17 19:47:37', 'bdzYJ5y4', '4687090'), + (49717, 516, 1145, 'attending', '2021-12-06 15:33:37', '2025-12-17 19:47:38', 'bdzYJ5y4', '4691157'), + (49718, 516, 1146, 'maybe', '2021-12-09 19:35:25', '2025-12-17 19:47:38', 'bdzYJ5y4', '4692841'), + (49719, 516, 1149, 'attending', '2021-12-08 03:35:16', '2025-12-17 19:47:38', 'bdzYJ5y4', '4694407'), + (49720, 516, 1150, 'maybe', '2021-12-16 22:45:08', '2025-12-17 19:47:38', 'bdzYJ5y4', '4706262'), + (49721, 516, 1151, 'not_attending', '2022-01-05 04:38:20', '2025-12-17 19:47:31', 'bdzYJ5y4', '4708704'), + (49722, 516, 1152, 'not_attending', '2022-01-10 17:34:16', '2025-12-17 19:47:31', 'bdzYJ5y4', '4708705'), + (49723, 516, 1153, 'not_attending', '2022-01-18 13:42:21', '2025-12-17 19:47:32', 'bdzYJ5y4', '4708707'), + (49724, 516, 1154, 'not_attending', '2022-01-26 21:23:19', '2025-12-17 19:47:32', 'bdzYJ5y4', '4708708'), + (49725, 516, 1156, 'not_attending', '2021-12-21 02:20:00', '2025-12-17 19:47:31', 'bdzYJ5y4', '4715207'), + (49726, 516, 1159, 'not_attending', '2022-01-03 02:22:06', '2025-12-17 19:47:31', 'bdzYJ5y4', '4717532'), + (49727, 516, 1162, 'maybe', '2021-12-28 21:42:58', '2025-12-17 19:47:31', 'bdzYJ5y4', '4718771'), + (49728, 516, 1163, 'not_attending', '2022-01-03 02:23:11', '2025-12-17 19:47:31', 'bdzYJ5y4', '4724206'), + (49729, 516, 1164, 'not_attending', '2022-01-03 02:21:49', '2025-12-17 19:47:31', 'bdzYJ5y4', '4724208'), + (49730, 516, 1165, 'not_attending', '2022-01-03 02:22:00', '2025-12-17 19:47:31', 'bdzYJ5y4', '4724210'), + (49731, 516, 1167, 'not_attending', '2022-01-03 02:22:44', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731015'), + (49732, 516, 1168, 'not_attending', '2022-01-03 02:22:39', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731043'), + (49733, 516, 1169, 'not_attending', '2022-01-03 02:22:48', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731044'), + (49734, 516, 1170, 'not_attending', '2022-01-04 14:21:32', '2025-12-17 19:47:31', 'bdzYJ5y4', '4731045'), + (49735, 516, 1173, 'attending', '2022-01-04 14:21:18', '2025-12-17 19:47:31', 'bdzYJ5y4', '4736495'), + (49736, 516, 1174, 'not_attending', '2022-01-15 06:05:31', '2025-12-17 19:47:31', 'bdzYJ5y4', '4736496'), + (49737, 516, 1175, 'attending', '2022-01-20 20:56:37', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736497'), + (49738, 516, 1176, 'attending', '2022-01-31 00:52:40', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736498'), + (49739, 516, 1177, 'not_attending', '2022-02-12 22:45:07', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736499'), + (49740, 516, 1178, 'attending', '2022-01-29 20:37:14', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736500'), + (49741, 516, 1179, 'attending', '2022-02-15 17:54:38', '2025-12-17 19:47:32', 'bdzYJ5y4', '4736501'), + (49742, 516, 1180, 'not_attending', '2022-02-15 17:57:10', '2025-12-17 19:47:33', 'bdzYJ5y4', '4736502'), + (49743, 516, 1181, 'attending', '2022-02-26 17:24:05', '2025-12-17 19:47:33', 'bdzYJ5y4', '4736503'), + (49744, 516, 1182, 'not_attending', '2022-03-11 16:51:50', '2025-12-17 19:47:33', 'bdzYJ5y4', '4736504'), + (49745, 516, 1184, 'not_attending', '2022-01-12 14:42:07', '2025-12-17 19:47:31', 'bdzYJ5y4', '4742350'), + (49746, 516, 1185, 'attending', '2022-01-09 04:45:33', '2025-12-17 19:47:31', 'bdzYJ5y4', '4746789'), + (49747, 516, 1188, 'not_attending', '2022-01-11 04:04:42', '2025-12-17 19:47:32', 'bdzYJ5y4', '4753929'), + (49748, 516, 1193, 'not_attending', '2022-01-21 21:55:39', '2025-12-17 19:47:32', 'bdzYJ5y4', '4759563'), + (49749, 516, 1196, 'attending', '2022-01-19 20:01:46', '2025-12-17 19:47:32', 'bdzYJ5y4', '4765583'), + (49750, 516, 1200, 'not_attending', '2022-01-17 23:20:43', '2025-12-17 19:47:32', 'bdzYJ5y4', '4766830'), + (49751, 516, 1202, 'not_attending', '2022-01-26 21:23:24', '2025-12-17 19:47:32', 'bdzYJ5y4', '4769423'), + (49752, 516, 1203, 'maybe', '2022-01-22 23:09:40', '2025-12-17 19:47:32', 'bdzYJ5y4', '4773535'), + (49753, 516, 1204, 'not_attending', '2022-02-13 17:42:32', '2025-12-17 19:47:32', 'bdzYJ5y4', '4773576'), + (49754, 516, 1205, 'attending', '2022-03-13 21:40:23', '2025-12-17 19:47:33', 'bdzYJ5y4', '4773577'), + (49755, 516, 1206, 'attending', '2022-03-27 20:27:45', '2025-12-17 19:47:27', 'bdzYJ5y4', '4773578'), + (49756, 516, 1207, 'attending', '2022-05-06 21:01:00', '2025-12-17 19:47:28', 'bdzYJ5y4', '4773579'), + (49757, 516, 1214, 'not_attending', '2022-02-15 20:35:16', '2025-12-17 19:47:32', 'bdzYJ5y4', '4780761'), + (49758, 516, 1216, 'not_attending', '2022-01-27 20:30:33', '2025-12-17 19:47:32', 'bdzYJ5y4', '4781137'), + (49759, 516, 1222, 'not_attending', '2022-02-15 20:35:12', '2025-12-17 19:47:32', 'bdzYJ5y4', '5015628'), + (49760, 516, 1223, 'not_attending', '2022-02-01 20:35:17', '2025-12-17 19:47:32', 'bdzYJ5y4', '5015635'), + (49761, 516, 1224, 'not_attending', '2022-02-01 20:34:40', '2025-12-17 19:47:32', 'bdzYJ5y4', '5016682'), + (49762, 516, 1225, 'maybe', '2022-02-03 23:22:51', '2025-12-17 19:47:32', 'bdzYJ5y4', '5019063'), + (49763, 516, 1228, 'not_attending', '2022-02-10 14:40:05', '2025-12-17 19:47:32', 'bdzYJ5y4', '5028238'), + (49764, 516, 1229, 'not_attending', '2022-02-15 20:35:30', '2025-12-17 19:47:32', 'bdzYJ5y4', '5034963'), + (49765, 516, 1231, 'not_attending', '2022-02-21 03:50:34', '2025-12-17 19:47:33', 'bdzYJ5y4', '5037637'), + (49766, 516, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'bdzYJ5y4', '5038850'), + (49767, 516, 1234, 'not_attending', '2022-02-15 20:35:07', '2025-12-17 19:47:32', 'bdzYJ5y4', '5042197'), + (49768, 516, 1235, 'not_attending', '2022-02-15 20:35:05', '2025-12-17 19:47:32', 'bdzYJ5y4', '5044505'), + (49769, 516, 1236, 'not_attending', '2022-02-14 23:33:47', '2025-12-17 19:47:32', 'bdzYJ5y4', '5045826'), + (49770, 516, 1238, 'not_attending', '2022-02-21 03:50:26', '2025-12-17 19:47:32', 'bdzYJ5y4', '5052236'), + (49771, 516, 1239, 'not_attending', '2022-03-02 04:39:15', '2025-12-17 19:47:33', 'bdzYJ5y4', '5052238'), + (49772, 516, 1240, 'not_attending', '2022-03-11 23:17:23', '2025-12-17 19:47:33', 'bdzYJ5y4', '5052239'), + (49773, 516, 1241, 'not_attending', '2022-03-16 00:56:33', '2025-12-17 19:47:25', 'bdzYJ5y4', '5052240'), + (49774, 516, 1242, 'not_attending', '2022-03-24 14:34:35', '2025-12-17 19:47:25', 'bdzYJ5y4', '5052241'), + (49775, 516, 1243, 'not_attending', '2022-03-04 22:43:44', '2025-12-17 19:47:33', 'bdzYJ5y4', '5058336'), + (49776, 516, 1244, 'not_attending', '2022-02-21 20:41:01', '2025-12-17 19:47:33', 'bdzYJ5y4', '5060490'), + (49777, 516, 1245, 'maybe', '2022-02-23 05:26:34', '2025-12-17 19:47:33', 'bdzYJ5y4', '5061301'), + (49778, 516, 1246, 'not_attending', '2022-03-02 19:17:59', '2025-12-17 19:47:33', 'bdzYJ5y4', '5064727'), + (49779, 516, 1249, 'not_attending', '2022-03-04 22:44:08', '2025-12-17 19:47:33', 'bdzYJ5y4', '5068530'), + (49780, 516, 1250, 'not_attending', '2022-02-28 22:14:42', '2025-12-17 19:47:33', 'bdzYJ5y4', '5069735'), + (49781, 516, 1252, 'not_attending', '2022-02-28 22:14:38', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129121'), + (49782, 516, 1253, 'maybe', '2022-02-28 22:14:06', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129122'), + (49783, 516, 1254, 'not_attending', '2022-03-02 19:17:26', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129129'), + (49784, 516, 1255, 'not_attending', '2022-02-28 00:15:05', '2025-12-17 19:47:33', 'bdzYJ5y4', '5129140'), + (49785, 516, 1258, 'not_attending', '2022-03-02 19:17:57', '2025-12-17 19:47:33', 'bdzYJ5y4', '5132531'), + (49786, 516, 1259, 'attending', '2022-02-28 22:20:57', '2025-12-17 19:47:33', 'bdzYJ5y4', '5132533'), + (49787, 516, 1261, 'not_attending', '2022-03-04 22:44:03', '2025-12-17 19:47:33', 'bdzYJ5y4', '5154274'), + (49788, 516, 1264, 'not_attending', '2022-03-21 13:51:58', '2025-12-17 19:47:25', 'bdzYJ5y4', '5160281'), + (49789, 516, 1265, 'not_attending', '2022-03-10 05:23:42', '2025-12-17 19:47:33', 'bdzYJ5y4', '5160862'), + (49790, 516, 1266, 'attending', '2022-03-14 23:46:27', '2025-12-17 19:47:33', 'bdzYJ5y4', '5166407'), + (49791, 516, 1267, 'not_attending', '2022-03-13 21:57:55', '2025-12-17 19:47:25', 'bdzYJ5y4', '5169578'), + (49792, 516, 1269, 'attending', '2022-03-13 21:57:33', '2025-12-17 19:47:25', 'bdzYJ5y4', '5179439'), + (49793, 516, 1270, 'not_attending', '2022-03-16 00:56:25', '2025-12-17 19:47:25', 'bdzYJ5y4', '5181277'), + (49794, 516, 1271, 'not_attending', '2022-03-15 13:59:47', '2025-12-17 19:47:25', 'bdzYJ5y4', '5181648'), + (49795, 516, 1272, 'attending', '2022-03-15 21:26:59', '2025-12-17 19:47:25', 'bdzYJ5y4', '5186582'), + (49796, 516, 1273, 'attending', '2022-03-26 01:10:48', '2025-12-17 19:47:25', 'bdzYJ5y4', '5186583'), + (49797, 516, 1274, 'attending', '2022-03-27 03:21:49', '2025-12-17 19:47:26', 'bdzYJ5y4', '5186585'), + (49798, 516, 1275, 'attending', '2022-03-27 03:21:58', '2025-12-17 19:47:26', 'bdzYJ5y4', '5186587'), + (49799, 516, 1276, 'not_attending', '2022-03-23 20:09:57', '2025-12-17 19:47:25', 'bdzYJ5y4', '5186820'), + (49800, 516, 1278, 'not_attending', '2022-03-17 11:18:37', '2025-12-17 19:47:33', 'bdzYJ5y4', '5186920'), + (49801, 516, 1279, 'maybe', '2022-03-20 17:18:06', '2025-12-17 19:47:25', 'bdzYJ5y4', '5187212'), + (49802, 516, 1280, 'not_attending', '2022-03-17 20:08:55', '2025-12-17 19:47:25', 'bdzYJ5y4', '5189749'), + (49803, 516, 1281, 'attending', '2022-04-08 01:09:41', '2025-12-17 19:47:27', 'bdzYJ5y4', '5190437'), + (49804, 516, 1282, 'not_attending', '2022-03-18 00:29:53', '2025-12-17 19:47:25', 'bdzYJ5y4', '5191241'), + (49805, 516, 1284, 'attending', '2022-04-13 18:30:20', '2025-12-17 19:47:27', 'bdzYJ5y4', '5195095'), + (49806, 516, 1285, 'not_attending', '2022-03-22 13:42:48', '2025-12-17 19:47:25', 'bdzYJ5y4', '5196763'), + (49807, 516, 1287, 'not_attending', '2022-03-23 20:10:02', '2025-12-17 19:47:25', 'bdzYJ5y4', '5199425'), + (49808, 516, 1288, 'not_attending', '2022-03-24 14:34:29', '2025-12-17 19:47:25', 'bdzYJ5y4', '5199460'), + (49809, 516, 1289, 'not_attending', '2022-03-24 14:34:21', '2025-12-17 19:47:25', 'bdzYJ5y4', '5200190'), + (49810, 516, 1290, 'not_attending', '2022-03-24 14:34:28', '2025-12-17 19:47:25', 'bdzYJ5y4', '5200196'), + (49811, 516, 1291, 'attending', '2022-03-24 02:22:36', '2025-12-17 19:47:25', 'bdzYJ5y4', '5200458'), + (49812, 516, 1292, 'not_attending', '2022-03-28 13:30:23', '2025-12-17 19:47:25', 'bdzYJ5y4', '5214043'), + (49813, 516, 1293, 'attending', '2022-03-27 20:27:42', '2025-12-17 19:47:27', 'bdzYJ5y4', '5214641'), + (49814, 516, 1294, 'not_attending', '2022-03-31 20:49:39', '2025-12-17 19:47:26', 'bdzYJ5y4', '5214686'), + (49815, 516, 1296, 'attending', '2022-04-02 17:48:40', '2025-12-17 19:47:26', 'bdzYJ5y4', '5215985'), + (49816, 516, 1297, 'attending', '2022-03-28 15:17:22', '2025-12-17 19:47:25', 'bdzYJ5y4', '5215989'), + (49817, 516, 1298, 'not_attending', '2022-03-31 02:43:36', '2025-12-17 19:47:25', 'bdzYJ5y4', '5216645'), + (49818, 516, 1301, 'not_attending', '2022-03-30 12:36:17', '2025-12-17 19:47:26', 'bdzYJ5y4', '5218175'), + (49819, 516, 1302, 'maybe', '2022-04-05 02:38:02', '2025-12-17 19:47:27', 'bdzYJ5y4', '5220867'), + (49820, 516, 1304, 'not_attending', '2022-04-05 02:37:51', '2025-12-17 19:47:26', 'bdzYJ5y4', '5223468'), + (49821, 516, 1305, 'not_attending', '2022-04-08 03:04:08', '2025-12-17 19:47:27', 'bdzYJ5y4', '5223673'), + (49822, 516, 1306, 'not_attending', '2022-04-05 02:37:48', '2025-12-17 19:47:26', 'bdzYJ5y4', '5223682'), + (49823, 516, 1307, 'not_attending', '2022-04-05 02:37:54', '2025-12-17 19:47:26', 'bdzYJ5y4', '5223686'), + (49824, 516, 1308, 'not_attending', '2022-04-08 12:02:26', '2025-12-17 19:47:27', 'bdzYJ5y4', '5226703'), + (49825, 516, 1309, 'not_attending', '2022-04-06 23:50:28', '2025-12-17 19:47:26', 'bdzYJ5y4', '5227432'), + (49826, 516, 1311, 'attending', '2022-04-08 12:01:51', '2025-12-17 19:47:27', 'bdzYJ5y4', '5231430'), + (49827, 516, 1312, 'attending', '2022-04-15 23:47:46', '2025-12-17 19:47:27', 'bdzYJ5y4', '5231459'), + (49828, 516, 1313, 'not_attending', '2022-04-12 00:53:17', '2025-12-17 19:47:27', 'bdzYJ5y4', '5231461'), + (49829, 516, 1314, 'not_attending', '2022-04-11 20:56:00', '2025-12-17 19:47:27', 'bdzYJ5y4', '5233137'), + (49830, 516, 1315, 'not_attending', '2022-04-15 21:39:04', '2025-12-17 19:47:27', 'bdzYJ5y4', '5237522'), + (49831, 516, 1316, 'not_attending', '2022-04-12 00:54:44', '2025-12-17 19:47:27', 'bdzYJ5y4', '5237536'), + (49832, 516, 1317, 'not_attending', '2022-04-11 20:55:58', '2025-12-17 19:47:27', 'bdzYJ5y4', '5237543'), + (49833, 516, 1318, 'not_attending', '2022-04-13 20:01:52', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238343'), + (49834, 516, 1319, 'maybe', '2022-04-15 14:08:06', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238353'), + (49835, 516, 1320, 'maybe', '2022-04-24 21:51:01', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238354'), + (49836, 516, 1321, 'not_attending', '2022-04-18 22:40:21', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238355'), + (49837, 516, 1322, 'not_attending', '2022-04-19 19:25:40', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238356'), + (49838, 516, 1323, 'not_attending', '2022-04-20 03:14:18', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238357'), + (49839, 516, 1325, 'not_attending', '2022-04-15 02:06:13', '2025-12-17 19:47:28', 'bdzYJ5y4', '5238361'), + (49840, 516, 1326, 'not_attending', '2022-04-26 19:55:46', '2025-12-17 19:47:28', 'bdzYJ5y4', '5238362'), + (49841, 516, 1327, 'not_attending', '2022-04-25 19:25:37', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238445'), + (49842, 516, 1328, 'not_attending', '2022-04-13 01:06:11', '2025-12-17 19:47:27', 'bdzYJ5y4', '5238759'), + (49843, 516, 1330, 'not_attending', '2022-04-18 22:39:36', '2025-12-17 19:47:27', 'bdzYJ5y4', '5242155'), + (49844, 516, 1331, 'not_attending', '2022-04-18 22:40:17', '2025-12-17 19:47:27', 'bdzYJ5y4', '5242156'), + (49845, 516, 1332, 'not_attending', '2022-04-13 14:46:12', '2025-12-17 19:47:27', 'bdzYJ5y4', '5243274'), + (49846, 516, 1333, 'not_attending', '2022-04-15 14:07:52', '2025-12-17 19:47:27', 'bdzYJ5y4', '5243711'), + (49847, 516, 1336, 'not_attending', '2022-04-18 22:39:50', '2025-12-17 19:47:27', 'bdzYJ5y4', '5244915'), + (49848, 516, 1337, 'not_attending', '2022-04-20 16:13:55', '2025-12-17 19:47:27', 'bdzYJ5y4', '5245036'), + (49849, 516, 1340, 'not_attending', '2022-04-26 19:55:30', '2025-12-17 19:47:27', 'bdzYJ5y4', '5245754'), + (49850, 516, 1341, 'maybe', '2022-05-01 17:35:23', '2025-12-17 19:47:28', 'bdzYJ5y4', '5245755'), + (49851, 516, 1344, 'attending', '2022-04-25 19:26:07', '2025-12-17 19:47:28', 'bdzYJ5y4', '5247465'), + (49852, 516, 1345, 'attending', '2022-04-21 18:08:07', '2025-12-17 19:47:27', 'bdzYJ5y4', '5247466'), + (49853, 516, 1346, 'attending', '2022-04-21 18:08:05', '2025-12-17 19:47:27', 'bdzYJ5y4', '5247467'), + (49854, 516, 1349, 'not_attending', '2022-04-19 17:15:12', '2025-12-17 19:47:27', 'bdzYJ5y4', '5249631'), + (49855, 516, 1350, 'not_attending', '2022-04-19 19:25:20', '2025-12-17 19:47:27', 'bdzYJ5y4', '5249763'), + (49856, 516, 1351, 'not_attending', '2022-05-02 02:43:48', '2025-12-17 19:47:28', 'bdzYJ5y4', '5251561'), + (49857, 516, 1353, 'not_attending', '2022-04-22 13:24:53', '2025-12-17 19:47:27', 'bdzYJ5y4', '5251777'), + (49858, 516, 1354, 'not_attending', '2022-04-21 18:07:37', '2025-12-17 19:47:27', 'bdzYJ5y4', '5252569'), + (49859, 516, 1355, 'maybe', '2022-04-22 13:25:22', '2025-12-17 19:47:27', 'bdzYJ5y4', '5252573'), + (49860, 516, 1356, 'not_attending', '2022-04-22 13:24:32', '2025-12-17 19:47:27', 'bdzYJ5y4', '5252913'), + (49861, 516, 1357, 'not_attending', '2022-04-25 19:25:34', '2025-12-17 19:47:27', 'bdzYJ5y4', '5256017'), + (49862, 516, 1359, 'not_attending', '2022-05-03 23:37:50', '2025-12-17 19:47:28', 'bdzYJ5y4', '5258360'), + (49863, 516, 1360, 'not_attending', '2022-04-26 13:29:26', '2025-12-17 19:47:27', 'bdzYJ5y4', '5260197'), + (49864, 516, 1362, 'attending', '2022-04-25 19:25:11', '2025-12-17 19:47:28', 'bdzYJ5y4', '5260800'), + (49865, 516, 1366, 'not_attending', '2022-04-26 19:55:32', '2025-12-17 19:47:27', 'bdzYJ5y4', '5262344'), + (49866, 516, 1368, 'not_attending', '2022-05-04 18:01:29', '2025-12-17 19:47:28', 'bdzYJ5y4', '5262783'), + (49867, 516, 1369, 'maybe', '2022-05-04 20:27:52', '2025-12-17 19:47:28', 'bdzYJ5y4', '5262809'), + (49868, 516, 1372, 'not_attending', '2022-05-03 23:37:48', '2025-12-17 19:47:28', 'bdzYJ5y4', '5264352'), + (49869, 516, 1374, 'not_attending', '2022-05-01 16:22:37', '2025-12-17 19:47:28', 'bdzYJ5y4', '5269930'), + (49870, 516, 1375, 'not_attending', '2022-05-01 17:54:17', '2025-12-17 19:47:28', 'bdzYJ5y4', '5269932'), + (49871, 516, 1376, 'not_attending', '2022-05-07 17:50:59', '2025-12-17 19:47:28', 'bdzYJ5y4', '5271446'), + (49872, 516, 1377, 'not_attending', '2022-05-07 17:51:07', '2025-12-17 19:47:28', 'bdzYJ5y4', '5271447'), + (49873, 516, 1378, 'attending', '2022-05-14 17:19:28', '2025-12-17 19:47:29', 'bdzYJ5y4', '5271448'), + (49874, 516, 1379, 'attending', '2022-05-03 23:38:06', '2025-12-17 19:47:29', 'bdzYJ5y4', '5271449'), + (49875, 516, 1380, 'not_attending', '2022-05-27 20:15:31', '2025-12-17 19:47:30', 'bdzYJ5y4', '5271450'), + (49876, 516, 1381, 'not_attending', '2022-05-02 02:44:21', '2025-12-17 19:47:28', 'bdzYJ5y4', '5271453'), + (49877, 516, 1382, 'not_attending', '2022-05-04 20:27:45', '2025-12-17 19:47:28', 'bdzYJ5y4', '5276350'), + (49878, 516, 1383, 'not_attending', '2022-05-10 00:09:03', '2025-12-17 19:47:28', 'bdzYJ5y4', '5276469'), + (49879, 516, 1384, 'not_attending', '2022-05-04 18:21:52', '2025-12-17 19:47:28', 'bdzYJ5y4', '5277078'), + (49880, 516, 1385, 'not_attending', '2022-05-10 00:08:46', '2025-12-17 19:47:28', 'bdzYJ5y4', '5277822'), + (49881, 516, 1386, 'attending', '2022-05-05 13:12:07', '2025-12-17 19:47:28', 'bdzYJ5y4', '5278159'), + (49882, 516, 1391, 'not_attending', '2022-05-07 03:03:33', '2025-12-17 19:47:28', 'bdzYJ5y4', '5279531'), + (49883, 516, 1392, 'not_attending', '2022-05-10 22:39:51', '2025-12-17 19:47:28', 'bdzYJ5y4', '5279532'), + (49884, 516, 1393, 'not_attending', '2022-06-10 16:15:00', '2025-12-17 19:47:30', 'bdzYJ5y4', '5280603'), + (49885, 516, 1394, 'not_attending', '2022-05-25 21:35:27', '2025-12-17 19:47:30', 'bdzYJ5y4', '5280667'), + (49886, 516, 1396, 'maybe', '2022-05-13 12:28:04', '2025-12-17 19:47:28', 'bdzYJ5y4', '5281103'), + (49887, 516, 1397, 'attending', '2022-05-11 20:52:37', '2025-12-17 19:47:29', 'bdzYJ5y4', '5281104'), + (49888, 516, 1401, 'not_attending', '2022-05-17 08:49:54', '2025-12-17 19:47:29', 'bdzYJ5y4', '5286295'), + (49889, 516, 1402, 'not_attending', '2022-05-26 21:46:12', '2025-12-17 19:47:30', 'bdzYJ5y4', '5287977'), + (49890, 516, 1403, 'not_attending', '2022-05-17 08:50:08', '2025-12-17 19:47:29', 'bdzYJ5y4', '5288052'), + (49891, 516, 1405, 'not_attending', '2022-05-17 08:50:02', '2025-12-17 19:47:29', 'bdzYJ5y4', '5288115'), + (49892, 516, 1407, 'attending', '2022-05-23 00:07:23', '2025-12-17 19:47:30', 'bdzYJ5y4', '5363695'), + (49893, 516, 1408, 'attending', '2022-05-16 12:59:32', '2025-12-17 19:47:29', 'bdzYJ5y4', '5365960'), + (49894, 516, 1414, 'not_attending', '2022-05-21 01:20:33', '2025-12-17 19:47:29', 'bdzYJ5y4', '5368445'), + (49895, 516, 1415, 'not_attending', '2022-06-03 22:12:04', '2025-12-17 19:47:30', 'bdzYJ5y4', '5368973'), + (49896, 516, 1417, 'not_attending', '2022-05-22 04:55:58', '2025-12-17 19:47:30', 'bdzYJ5y4', '5370465'), + (49897, 516, 1420, 'maybe', '2022-05-24 02:03:08', '2025-12-17 19:47:30', 'bdzYJ5y4', '5374882'), + (49898, 516, 1422, 'not_attending', '2022-05-24 02:02:55', '2025-12-17 19:47:30', 'bdzYJ5y4', '5375603'), + (49899, 516, 1423, 'not_attending', '2022-06-14 00:58:50', '2025-12-17 19:47:17', 'bdzYJ5y4', '5375727'), + (49900, 516, 1427, 'maybe', '2022-05-25 21:35:16', '2025-12-17 19:47:30', 'bdzYJ5y4', '5376074'), + (49901, 516, 1428, 'not_attending', '2022-06-10 16:15:03', '2025-12-17 19:47:30', 'bdzYJ5y4', '5378247'), + (49902, 516, 1430, 'not_attending', '2022-06-07 22:11:09', '2025-12-17 19:47:30', 'bdzYJ5y4', '5389402'), + (49903, 516, 1431, 'not_attending', '2022-06-09 21:30:23', '2025-12-17 19:47:31', 'bdzYJ5y4', '5389605'), + (49904, 516, 1439, 'not_attending', '2022-06-02 00:36:44', '2025-12-17 19:47:30', 'bdzYJ5y4', '5396072'), + (49905, 516, 1442, 'attending', '2022-06-12 02:47:05', '2025-12-17 19:47:17', 'bdzYJ5y4', '5397265'), + (49906, 516, 1443, 'attending', '2022-06-03 20:11:24', '2025-12-17 19:47:30', 'bdzYJ5y4', '5397613'), + (49907, 516, 1444, 'not_attending', '2022-06-09 21:30:11', '2025-12-17 19:47:30', 'bdzYJ5y4', '5397614'), + (49908, 516, 1445, 'attending', '2022-06-12 20:02:52', '2025-12-17 19:47:17', 'bdzYJ5y4', '5397615'), + (49909, 516, 1449, 'not_attending', '2022-06-14 00:58:41', '2025-12-17 19:47:31', 'bdzYJ5y4', '5403335'), + (49910, 516, 1450, 'not_attending', '2022-06-10 16:15:20', '2025-12-17 19:47:30', 'bdzYJ5y4', '5403421'), + (49911, 516, 1451, 'maybe', '2022-06-14 00:59:22', '2025-12-17 19:47:17', 'bdzYJ5y4', '5403967'), + (49912, 516, 1452, 'not_attending', '2022-06-10 16:14:57', '2025-12-17 19:47:30', 'bdzYJ5y4', '5404197'), + (49913, 516, 1453, 'not_attending', '2022-06-10 16:15:32', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404745'), + (49914, 516, 1454, 'not_attending', '2022-06-10 16:15:30', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404771'), + (49915, 516, 1456, 'not_attending', '2022-06-14 00:58:53', '2025-12-17 19:47:17', 'bdzYJ5y4', '5404779'), + (49916, 516, 1457, 'not_attending', '2022-06-10 16:15:34', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404780'), + (49917, 516, 1458, 'maybe', '2022-06-12 20:02:59', '2025-12-17 19:47:17', 'bdzYJ5y4', '5404786'), + (49918, 516, 1459, 'maybe', '2022-06-12 20:03:04', '2025-12-17 19:47:17', 'bdzYJ5y4', '5404793'), + (49919, 516, 1460, 'not_attending', '2022-06-12 20:02:21', '2025-12-17 19:47:31', 'bdzYJ5y4', '5404817'), + (49920, 516, 1461, 'not_attending', '2022-06-14 00:58:46', '2025-12-17 19:47:31', 'bdzYJ5y4', '5405149'), + (49921, 516, 1462, 'not_attending', '2022-06-11 01:05:19', '2025-12-17 19:47:17', 'bdzYJ5y4', '5405203'), + (49922, 516, 1463, 'not_attending', '2022-06-14 00:58:44', '2025-12-17 19:47:31', 'bdzYJ5y4', '5405208'), + (49923, 516, 1465, 'maybe', '2022-06-12 06:04:02', '2025-12-17 19:47:31', 'bdzYJ5y4', '5406355'), + (49924, 516, 1466, 'not_attending', '2022-06-14 00:58:54', '2025-12-17 19:47:17', 'bdzYJ5y4', '5406427'), + (49925, 516, 1468, 'not_attending', '2022-06-27 15:56:44', '2025-12-17 19:47:19', 'bdzYJ5y4', '5406832'), + (49926, 516, 1470, 'not_attending', '2022-06-13 15:08:34', '2025-12-17 19:47:17', 'bdzYJ5y4', '5407053'), + (49927, 516, 1471, 'not_attending', '2022-06-21 18:26:12', '2025-12-17 19:47:17', 'bdzYJ5y4', '5407063'), + (49928, 516, 1472, 'not_attending', '2022-06-22 03:17:52', '2025-12-17 19:47:17', 'bdzYJ5y4', '5407065'), + (49929, 516, 1473, 'not_attending', '2022-06-14 00:58:42', '2025-12-17 19:47:31', 'bdzYJ5y4', '5407267'), + (49930, 516, 1477, 'not_attending', '2022-06-21 18:26:14', '2025-12-17 19:47:17', 'bdzYJ5y4', '5408766'), + (49931, 516, 1478, 'not_attending', '2022-06-21 18:26:34', '2025-12-17 19:47:19', 'bdzYJ5y4', '5408794'), + (49932, 516, 1479, 'maybe', '2022-06-17 11:08:07', '2025-12-17 19:47:17', 'bdzYJ5y4', '5410322'), + (49933, 516, 1480, 'not_attending', '2022-06-26 18:33:42', '2025-12-17 19:47:19', 'bdzYJ5y4', '5411699'), + (49934, 516, 1482, 'attending', '2022-06-20 11:48:27', '2025-12-17 19:47:19', 'bdzYJ5y4', '5412550'), + (49935, 516, 1483, 'not_attending', '2022-06-22 03:17:49', '2025-12-17 19:47:17', 'bdzYJ5y4', '5414556'), + (49936, 516, 1484, 'not_attending', '2022-06-21 18:26:18', '2025-12-17 19:47:17', 'bdzYJ5y4', '5415046'), + (49937, 516, 1485, 'maybe', '2022-06-21 18:26:30', '2025-12-17 19:47:17', 'bdzYJ5y4', '5416276'), + (49938, 516, 1486, 'not_attending', '2022-06-26 19:16:37', '2025-12-17 19:47:19', 'bdzYJ5y4', '5416339'), + (49939, 516, 1488, 'not_attending', '2022-06-30 22:08:33', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420154'), + (49940, 516, 1489, 'not_attending', '2022-06-30 22:08:35', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420155'), + (49941, 516, 1490, 'not_attending', '2022-06-30 22:08:39', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420156'), + (49942, 516, 1491, 'not_attending', '2022-06-29 20:18:04', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420158'), + (49943, 516, 1492, 'not_attending', '2022-06-30 22:08:42', '2025-12-17 19:47:19', 'bdzYJ5y4', '5420175'), + (49944, 516, 1494, 'not_attending', '2022-06-27 20:25:39', '2025-12-17 19:47:19', 'bdzYJ5y4', '5421626'), + (49945, 516, 1495, 'not_attending', '2022-06-27 20:25:58', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422086'), + (49946, 516, 1497, 'not_attending', '2022-06-26 19:16:35', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422405'), + (49947, 516, 1498, 'not_attending', '2022-06-27 15:56:37', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422406'), + (49948, 516, 1499, 'not_attending', '2022-06-27 15:56:39', '2025-12-17 19:47:19', 'bdzYJ5y4', '5422407'), + (49949, 516, 1500, 'not_attending', '2022-06-30 22:08:46', '2025-12-17 19:47:19', 'bdzYJ5y4', '5423915'), + (49950, 516, 1502, 'attending', '2022-06-28 17:15:05', '2025-12-17 19:47:19', 'bdzYJ5y4', '5424565'), + (49951, 516, 1503, 'not_attending', '2022-06-30 22:08:28', '2025-12-17 19:47:19', 'bdzYJ5y4', '5426820'), + (49952, 516, 1504, 'not_attending', '2022-07-11 13:13:04', '2025-12-17 19:47:19', 'bdzYJ5y4', '5426882'), + (49953, 516, 1505, 'not_attending', '2022-07-02 20:54:13', '2025-12-17 19:47:19', 'bdzYJ5y4', '5427083'), + (49954, 516, 1507, 'attending', '2022-07-02 20:54:20', '2025-12-17 19:47:19', 'bdzYJ5y4', '5433100'), + (49955, 516, 1508, 'not_attending', '2022-07-11 13:12:59', '2025-12-17 19:47:19', 'bdzYJ5y4', '5433453'), + (49956, 516, 1509, 'not_attending', '2022-07-05 19:57:44', '2025-12-17 19:47:19', 'bdzYJ5y4', '5434019'), + (49957, 516, 1511, 'attending', '2022-07-07 16:09:28', '2025-12-17 19:47:19', 'bdzYJ5y4', '5437733'), + (49958, 516, 1512, 'not_attending', '2022-07-13 00:42:02', '2025-12-17 19:47:19', 'bdzYJ5y4', '5441112'), + (49959, 516, 1513, 'attending', '2022-07-09 12:13:47', '2025-12-17 19:47:19', 'bdzYJ5y4', '5441125'), + (49960, 516, 1514, 'attending', '2022-07-15 13:20:01', '2025-12-17 19:47:20', 'bdzYJ5y4', '5441126'), + (49961, 516, 1515, 'attending', '2022-07-31 15:10:30', '2025-12-17 19:47:21', 'bdzYJ5y4', '5441128'), + (49962, 516, 1516, 'attending', '2022-08-07 12:18:19', '2025-12-17 19:47:23', 'bdzYJ5y4', '5441129'), + (49963, 516, 1517, 'attending', '2022-08-19 14:21:19', '2025-12-17 19:47:23', 'bdzYJ5y4', '5441130'), + (49964, 516, 1518, 'not_attending', '2022-08-29 01:11:48', '2025-12-17 19:47:24', 'bdzYJ5y4', '5441131'), + (49965, 516, 1519, 'attending', '2022-08-29 01:11:55', '2025-12-17 19:47:24', 'bdzYJ5y4', '5441132'), + (49966, 516, 1520, 'not_attending', '2022-07-11 13:13:01', '2025-12-17 19:47:19', 'bdzYJ5y4', '5441645'), + (49967, 516, 1521, 'not_attending', '2022-07-11 13:12:53', '2025-12-17 19:47:19', 'bdzYJ5y4', '5442180'), + (49968, 516, 1522, 'not_attending', '2022-07-15 13:19:37', '2025-12-17 19:47:20', 'bdzYJ5y4', '5442832'), + (49969, 516, 1523, 'not_attending', '2022-07-11 13:12:44', '2025-12-17 19:47:19', 'bdzYJ5y4', '5442868'), + (49970, 516, 1524, 'not_attending', '2022-07-11 16:45:16', '2025-12-17 19:47:19', 'bdzYJ5y4', '5443300'), + (49971, 516, 1526, 'not_attending', '2022-07-15 13:19:44', '2025-12-17 19:47:20', 'bdzYJ5y4', '5445059'), + (49972, 516, 1528, 'maybe', '2022-07-14 16:55:41', '2025-12-17 19:47:20', 'bdzYJ5y4', '5446643'), + (49973, 516, 1531, 'attending', '2022-07-15 21:05:10', '2025-12-17 19:47:19', 'bdzYJ5y4', '5448756'), + (49974, 516, 1532, 'attending', '2022-07-18 19:11:59', '2025-12-17 19:47:20', 'bdzYJ5y4', '5448757'), + (49975, 516, 1533, 'maybe', '2022-07-25 00:53:52', '2025-12-17 19:47:21', 'bdzYJ5y4', '5448758'), + (49976, 516, 1534, 'attending', '2022-08-04 19:03:44', '2025-12-17 19:47:21', 'bdzYJ5y4', '5448759'), + (49977, 516, 1535, 'not_attending', '2022-07-18 10:52:32', '2025-12-17 19:47:20', 'bdzYJ5y4', '5448830'), + (49978, 516, 1536, 'not_attending', '2022-07-19 13:11:17', '2025-12-17 19:47:20', 'bdzYJ5y4', '5449068'), + (49979, 516, 1540, 'attending', '2022-07-18 12:53:00', '2025-12-17 19:47:20', 'bdzYJ5y4', '5453325'), + (49980, 516, 1541, 'not_attending', '2022-07-24 16:47:46', '2025-12-17 19:47:20', 'bdzYJ5y4', '5453542'), + (49981, 516, 1542, 'not_attending', '2022-07-25 11:28:10', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454064'), + (49982, 516, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'bdzYJ5y4', '5454516'), + (49983, 516, 1544, 'attending', '2022-08-29 01:11:58', '2025-12-17 19:47:11', 'bdzYJ5y4', '5454517'), + (49984, 516, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454605'), + (49985, 516, 1546, 'not_attending', '2022-07-25 11:28:27', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454607'), + (49986, 516, 1547, 'not_attending', '2022-07-24 16:48:00', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454608'), + (49987, 516, 1549, 'not_attending', '2022-07-24 15:38:38', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454789'), + (49988, 516, 1550, 'not_attending', '2022-07-24 16:48:30', '2025-12-17 19:47:20', 'bdzYJ5y4', '5454803'), + (49989, 516, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'bdzYJ5y4', '5455037'), + (49990, 516, 1552, 'not_attending', '2022-07-29 12:01:13', '2025-12-17 19:47:20', 'bdzYJ5y4', '5455149'), + (49991, 516, 1553, 'not_attending', '2022-07-20 22:54:12', '2025-12-17 19:47:20', 'bdzYJ5y4', '5455164'), + (49992, 516, 1557, 'not_attending', '2022-08-03 10:27:34', '2025-12-17 19:47:21', 'bdzYJ5y4', '5458729'), + (49993, 516, 1560, 'not_attending', '2022-08-15 21:11:30', '2025-12-17 19:47:23', 'bdzYJ5y4', '5458768'), + (49994, 516, 1561, 'not_attending', '2022-08-08 11:39:45', '2025-12-17 19:47:22', 'bdzYJ5y4', '5461278'), + (49995, 516, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'bdzYJ5y4', '5469480'), + (49996, 516, 1563, 'not_attending', '2022-07-31 15:10:24', '2025-12-17 19:47:21', 'bdzYJ5y4', '5469889'), + (49997, 516, 1565, 'attending', '2022-07-25 22:37:25', '2025-12-17 19:47:21', 'bdzYJ5y4', '5471073'), + (49998, 516, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'bdzYJ5y4', '5474663'), + (49999, 516, 1567, 'not_attending', '2022-08-02 01:15:54', '2025-12-17 19:47:21', 'bdzYJ5y4', '5477629'), + (50000, 516, 1568, 'not_attending', '2022-08-01 14:11:35', '2025-12-17 19:47:21', 'bdzYJ5y4', '5480628'), + (50001, 516, 1569, 'not_attending', '2022-08-02 01:57:37', '2025-12-17 19:47:21', 'bdzYJ5y4', '5481507'), + (50002, 516, 1570, 'not_attending', '2022-08-01 21:33:31', '2025-12-17 19:47:21', 'bdzYJ5y4', '5481830'), + (50003, 516, 1571, 'attending', '2022-08-01 18:40:46', '2025-12-17 19:47:21', 'bdzYJ5y4', '5482022'), + (50004, 516, 1573, 'not_attending', '2022-08-07 12:18:01', '2025-12-17 19:47:22', 'bdzYJ5y4', '5482152'), + (50005, 516, 1574, 'not_attending', '2022-08-07 12:18:08', '2025-12-17 19:47:22', 'bdzYJ5y4', '5482153'), + (50006, 516, 1575, 'not_attending', '2022-08-22 18:23:36', '2025-12-17 19:47:23', 'bdzYJ5y4', '5482250'), + (50007, 516, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'bdzYJ5y4', '5482793'), + (50008, 516, 1578, 'not_attending', '2022-08-03 10:27:49', '2025-12-17 19:47:21', 'bdzYJ5y4', '5483073'), + (50009, 516, 1579, 'maybe', '2022-08-04 03:10:35', '2025-12-17 19:47:22', 'bdzYJ5y4', '5486019'), + (50010, 516, 1580, 'not_attending', '2022-08-07 12:17:41', '2025-12-17 19:47:22', 'bdzYJ5y4', '5488912'), + (50011, 516, 1581, 'not_attending', '2022-08-07 12:17:47', '2025-12-17 19:47:22', 'bdzYJ5y4', '5490302'), + (50012, 516, 1582, 'not_attending', '2022-08-15 18:19:16', '2025-12-17 19:47:23', 'bdzYJ5y4', '5492001'), + (50013, 516, 1584, 'not_attending', '2022-08-22 18:23:39', '2025-12-17 19:47:23', 'bdzYJ5y4', '5492004'), + (50014, 516, 1586, 'not_attending', '2022-08-15 21:11:12', '2025-12-17 19:47:23', 'bdzYJ5y4', '5492019'), + (50015, 516, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'bdzYJ5y4', '5492192'), + (50016, 516, 1588, 'not_attending', '2022-08-09 16:57:46', '2025-12-17 19:47:22', 'bdzYJ5y4', '5493139'), + (50017, 516, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'bdzYJ5y4', '5493200'), + (50018, 516, 1592, 'not_attending', '2022-08-09 16:59:18', '2025-12-17 19:47:22', 'bdzYJ5y4', '5494031'), + (50019, 516, 1593, 'maybe', '2022-08-09 16:58:35', '2025-12-17 19:47:22', 'bdzYJ5y4', '5494043'), + (50020, 516, 1595, 'not_attending', '2022-08-09 23:15:49', '2025-12-17 19:47:22', 'bdzYJ5y4', '5495736'), + (50021, 516, 1598, 'not_attending', '2022-08-15 18:17:27', '2025-12-17 19:47:22', 'bdzYJ5y4', '5496567'), + (50022, 516, 1600, 'not_attending', '2022-08-29 01:11:45', '2025-12-17 19:47:24', 'bdzYJ5y4', '5496569'), + (50023, 516, 1603, 'not_attending', '2022-08-15 21:11:28', '2025-12-17 19:47:23', 'bdzYJ5y4', '5497895'), + (50024, 516, 1604, 'attending', '2022-08-15 18:18:02', '2025-12-17 19:47:22', 'bdzYJ5y4', '5501504'), + (50025, 516, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'bdzYJ5y4', '5502188'), + (50026, 516, 1606, 'not_attending', '2022-08-29 23:34:04', '2025-12-17 19:47:23', 'bdzYJ5y4', '5504585'), + (50027, 516, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'bdzYJ5y4', '5505059'), + (50028, 516, 1610, 'not_attending', '2022-08-22 02:29:09', '2025-12-17 19:47:23', 'bdzYJ5y4', '5506595'), + (50029, 516, 1612, 'maybe', '2022-10-03 19:40:03', '2025-12-17 19:47:12', 'bdzYJ5y4', '5507653'), + (50030, 516, 1613, 'not_attending', '2022-10-21 19:42:35', '2025-12-17 19:47:14', 'bdzYJ5y4', '5507654'), + (50031, 516, 1614, 'maybe', '2022-08-22 18:23:20', '2025-12-17 19:47:23', 'bdzYJ5y4', '5508371'), + (50032, 516, 1615, 'not_attending', '2022-08-29 23:34:07', '2025-12-17 19:47:23', 'bdzYJ5y4', '5509055'), + (50033, 516, 1616, 'not_attending', '2022-08-22 18:23:14', '2025-12-17 19:47:23', 'bdzYJ5y4', '5509478'), + (50034, 516, 1619, 'attending', '2022-08-22 20:02:51', '2025-12-17 19:47:23', 'bdzYJ5y4', '5512862'), + (50035, 516, 1620, 'not_attending', '2022-08-22 18:23:32', '2025-12-17 19:47:23', 'bdzYJ5y4', '5513046'), + (50036, 516, 1623, 'not_attending', '2022-08-23 21:29:35', '2025-12-17 19:47:23', 'bdzYJ5y4', '5513678'), + (50037, 516, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'bdzYJ5y4', '5513985'), + (50038, 516, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'bdzYJ5y4', '5519981'), + (50039, 516, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'bdzYJ5y4', '5522550'), + (50040, 516, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'bdzYJ5y4', '5534683'), + (50041, 516, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'bdzYJ5y4', '5537735'), + (50042, 516, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'bdzYJ5y4', '5540859'), + (50043, 516, 1642, 'not_attending', '2022-09-08 12:45:14', '2025-12-17 19:47:24', 'bdzYJ5y4', '5544227'), + (50044, 516, 1644, 'not_attending', '2022-09-18 11:04:58', '2025-12-17 19:47:11', 'bdzYJ5y4', '5545857'), + (50045, 516, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'bdzYJ5y4', '5546619'), + (50046, 516, 1652, 'maybe', '2022-09-08 12:45:11', '2025-12-17 19:47:24', 'bdzYJ5y4', '5552671'), + (50047, 516, 1653, 'not_attending', '2022-09-18 11:04:49', '2025-12-17 19:47:11', 'bdzYJ5y4', '5554400'), + (50048, 516, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'bdzYJ5y4', '5555245'), + (50049, 516, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'bdzYJ5y4', '5557747'), + (50050, 516, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'bdzYJ5y4', '5560255'), + (50051, 516, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'bdzYJ5y4', '5562906'), + (50052, 516, 1667, 'attending', '2022-09-18 11:04:42', '2025-12-17 19:47:11', 'bdzYJ5y4', '5563221'), + (50053, 516, 1668, 'not_attending', '2022-09-21 02:20:21', '2025-12-17 19:47:12', 'bdzYJ5y4', '5563222'), + (50054, 516, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'bdzYJ5y4', '5600604'), + (50055, 516, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'bdzYJ5y4', '5605544'), + (50056, 516, 1699, 'maybe', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'bdzYJ5y4', '5606737'), + (50057, 516, 1705, 'not_attending', '2022-10-03 19:40:00', '2025-12-17 19:47:12', 'bdzYJ5y4', '5612209'), + (50058, 516, 1714, 'not_attending', '2022-10-21 19:42:19', '2025-12-17 19:47:14', 'bdzYJ5y4', '5622347'), + (50059, 516, 1716, 'maybe', '2022-10-03 19:39:38', '2025-12-17 19:47:12', 'bdzYJ5y4', '5622429'), + (50060, 516, 1717, 'not_attending', '2022-10-18 19:20:30', '2025-12-17 19:47:13', 'bdzYJ5y4', '5622842'), + (50061, 516, 1719, 'attending', '2022-10-05 23:21:31', '2025-12-17 19:47:12', 'bdzYJ5y4', '5630958'), + (50062, 516, 1720, 'not_attending', '2022-10-10 11:37:19', '2025-12-17 19:47:12', 'bdzYJ5y4', '5630959'), + (50063, 516, 1721, 'attending', '2022-10-10 11:37:23', '2025-12-17 19:47:13', 'bdzYJ5y4', '5630960'), + (50064, 516, 1722, 'not_attending', '2022-10-13 22:25:20', '2025-12-17 19:47:14', 'bdzYJ5y4', '5630961'), + (50065, 516, 1723, 'maybe', '2022-10-25 19:22:16', '2025-12-17 19:47:15', 'bdzYJ5y4', '5630962'), + (50066, 516, 1724, 'not_attending', '2022-10-25 19:21:11', '2025-12-17 19:47:15', 'bdzYJ5y4', '5630966'), + (50067, 516, 1725, 'attending', '2022-10-25 19:21:15', '2025-12-17 19:47:16', 'bdzYJ5y4', '5630967'), + (50068, 516, 1726, 'not_attending', '2022-10-25 19:21:19', '2025-12-17 19:47:16', 'bdzYJ5y4', '5630968'), + (50069, 516, 1727, 'attending', '2022-10-25 19:21:26', '2025-12-17 19:47:16', 'bdzYJ5y4', '5630969'), + (50070, 516, 1728, 'not_attending', '2022-12-01 23:06:32', '2025-12-17 19:47:17', 'bdzYJ5y4', '5630970'), + (50071, 516, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'bdzYJ5y4', '5635406'), + (50072, 516, 1736, 'not_attending', '2022-10-25 19:22:08', '2025-12-17 19:47:15', 'bdzYJ5y4', '5638456'), + (50073, 516, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'bdzYJ5y4', '5638765'), + (50074, 516, 1739, 'not_attending', '2022-10-21 19:42:24', '2025-12-17 19:47:14', 'bdzYJ5y4', '5640097'), + (50075, 516, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'bdzYJ5y4', '5640843'), + (50076, 516, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'bdzYJ5y4', '5641521'), + (50077, 516, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'bdzYJ5y4', '5642818'), + (50078, 516, 1745, 'not_attending', '2022-10-13 22:25:15', '2025-12-17 19:47:12', 'bdzYJ5y4', '5643088'), + (50079, 516, 1747, 'not_attending', '2022-10-21 19:42:14', '2025-12-17 19:47:14', 'bdzYJ5y4', '5648009'), + (50080, 516, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'bdzYJ5y4', '5652395'), + (50081, 516, 1753, 'not_attending', '2022-10-20 13:34:52', '2025-12-17 19:47:13', 'bdzYJ5y4', '5656228'), + (50082, 516, 1756, 'not_attending', '2022-10-25 19:21:39', '2025-12-17 19:47:13', 'bdzYJ5y4', '5663338'), + (50083, 516, 1757, 'not_attending', '2022-10-25 19:22:12', '2025-12-17 19:47:15', 'bdzYJ5y4', '5668974'), + (50084, 516, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'bdzYJ5y4', '5670445'), + (50085, 516, 1763, 'not_attending', '2022-10-25 19:22:29', '2025-12-17 19:47:15', 'bdzYJ5y4', '5670803'), + (50086, 516, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'bdzYJ5y4', '5671637'), + (50087, 516, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'bdzYJ5y4', '5672329'), + (50088, 516, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'bdzYJ5y4', '5674057'), + (50089, 516, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'bdzYJ5y4', '5674060'), + (50090, 516, 1768, 'not_attending', '2022-11-04 17:32:42', '2025-12-17 19:47:16', 'bdzYJ5y4', '5674062'), + (50091, 516, 1769, 'attending', '2022-10-25 19:20:47', '2025-12-17 19:47:15', 'bdzYJ5y4', '5676351'), + (50092, 516, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'bdzYJ5y4', '5677461'), + (50093, 516, 1776, 'not_attending', '2022-11-04 17:32:29', '2025-12-17 19:47:15', 'bdzYJ5y4', '5691067'), + (50094, 516, 1777, 'not_attending', '2022-11-04 17:32:26', '2025-12-17 19:47:15', 'bdzYJ5y4', '5693021'), + (50095, 516, 1779, 'not_attending', '2022-11-04 17:32:22', '2025-12-17 19:47:15', 'bdzYJ5y4', '5694252'), + (50096, 516, 1780, 'not_attending', '2022-11-04 17:32:32', '2025-12-17 19:47:15', 'bdzYJ5y4', '5696082'), + (50097, 516, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'bdzYJ5y4', '5698046'), + (50098, 516, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'bdzYJ5y4', '5699760'), + (50099, 516, 1790, 'not_attending', '2022-11-07 16:45:12', '2025-12-17 19:47:15', 'bdzYJ5y4', '5727424'), + (50100, 516, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'bdzYJ5y4', '5741601'), + (50101, 516, 1797, 'not_attending', '2022-12-01 23:06:25', '2025-12-17 19:47:17', 'bdzYJ5y4', '5757486'), + (50102, 516, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'bdzYJ5y4', '5763458'), + (50103, 516, 1804, 'not_attending', '2023-01-22 00:26:01', '2025-12-17 19:47:06', 'bdzYJ5y4', '5764674'), + (50104, 516, 1805, 'not_attending', '2023-02-02 11:53:54', '2025-12-17 19:47:06', 'bdzYJ5y4', '5764675'), + (50105, 516, 1807, 'not_attending', '2023-01-13 06:09:01', '2025-12-17 19:47:05', 'bdzYJ5y4', '5764677'), + (50106, 516, 1820, 'not_attending', '2023-03-30 21:13:37', '2025-12-17 19:46:58', 'bdzYJ5y4', '5764690'), + (50107, 516, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'bdzYJ5y4', '5774172'), + (50108, 516, 1825, 'attending', '2022-11-27 05:53:17', '2025-12-17 19:47:16', 'bdzYJ5y4', '5776760'), + (50109, 516, 1828, 'not_attending', '2022-11-28 23:04:11', '2025-12-17 19:47:16', 'bdzYJ5y4', '5778865'), + (50110, 516, 1829, 'not_attending', '2022-12-04 04:50:48', '2025-12-17 19:47:16', 'bdzYJ5y4', '5778867'), + (50111, 516, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'bdzYJ5y4', '5818247'), + (50112, 516, 1834, 'not_attending', '2022-12-07 16:29:40', '2025-12-17 19:47:17', 'bdzYJ5y4', '5819470'), + (50113, 516, 1835, 'not_attending', '2022-12-30 13:53:16', '2025-12-17 19:47:05', 'bdzYJ5y4', '5819471'), + (50114, 516, 1841, 'not_attending', '2022-12-30 13:53:24', '2025-12-17 19:47:05', 'bdzYJ5y4', '5827665'), + (50115, 516, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'bdzYJ5y4', '5827739'), + (50116, 516, 1843, 'not_attending', '2022-12-17 20:08:54', '2025-12-17 19:47:04', 'bdzYJ5y4', '5844304'), + (50117, 516, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'bdzYJ5y4', '5844306'), + (50118, 516, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'bdzYJ5y4', '5850159'), + (50119, 516, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'bdzYJ5y4', '5858999'), + (50120, 516, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'bdzYJ5y4', '5871984'), + (50121, 516, 1856, 'maybe', '2023-01-13 06:09:07', '2025-12-17 19:47:05', 'bdzYJ5y4', '5873970'), + (50122, 516, 1858, 'not_attending', '2023-01-13 06:09:04', '2025-12-17 19:47:05', 'bdzYJ5y4', '5875044'), + (50123, 516, 1860, 'not_attending', '2023-01-13 06:08:43', '2025-12-17 19:47:05', 'bdzYJ5y4', '5876309'), + (50124, 516, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'bdzYJ5y4', '5876354'), + (50125, 516, 1864, 'not_attending', '2023-01-22 00:24:35', '2025-12-17 19:47:05', 'bdzYJ5y4', '5879675'), + (50126, 516, 1865, 'attending', '2023-01-22 00:25:58', '2025-12-17 19:47:06', 'bdzYJ5y4', '5879676'), + (50127, 516, 1866, 'not_attending', '2023-01-22 19:58:51', '2025-12-17 19:47:05', 'bdzYJ5y4', '5880939'), + (50128, 516, 1867, 'not_attending', '2023-02-06 13:15:04', '2025-12-17 19:47:07', 'bdzYJ5y4', '5880940'), + (50129, 516, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'bdzYJ5y4', '5880942'), + (50130, 516, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'bdzYJ5y4', '5880943'), + (50131, 516, 1873, 'not_attending', '2023-01-22 00:25:26', '2025-12-17 19:47:05', 'bdzYJ5y4', '5885295'), + (50132, 516, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'bdzYJ5y4', '5887890'), + (50133, 516, 1875, 'not_attending', '2023-01-22 19:58:54', '2025-12-17 19:47:06', 'bdzYJ5y4', '5887908'), + (50134, 516, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'bdzYJ5y4', '5888598'), + (50135, 516, 1878, 'not_attending', '2023-02-06 13:15:01', '2025-12-17 19:47:07', 'bdzYJ5y4', '5893000'), + (50136, 516, 1879, 'maybe', '2023-01-29 04:25:24', '2025-12-17 19:47:06', 'bdzYJ5y4', '5893001'), + (50137, 516, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'bdzYJ5y4', '5893260'), + (50138, 516, 1881, 'not_attending', '2023-02-06 13:15:24', '2025-12-17 19:47:07', 'bdzYJ5y4', '5894218'), + (50139, 516, 1882, 'not_attending', '2023-01-29 04:25:31', '2025-12-17 19:47:06', 'bdzYJ5y4', '5898447'), + (50140, 516, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'bdzYJ5y4', '5899826'), + (50141, 516, 1885, 'not_attending', '2023-02-17 16:21:57', '2025-12-17 19:47:08', 'bdzYJ5y4', '5899928'), + (50142, 516, 1886, 'not_attending', '2023-03-04 09:19:31', '2025-12-17 19:47:09', 'bdzYJ5y4', '5899930'), + (50143, 516, 1889, 'not_attending', '2023-02-06 13:15:09', '2025-12-17 19:47:07', 'bdzYJ5y4', '5900199'), + (50144, 516, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'bdzYJ5y4', '5900200'), + (50145, 516, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'bdzYJ5y4', '5900202'), + (50146, 516, 1892, 'not_attending', '2023-03-13 18:07:56', '2025-12-17 19:46:56', 'bdzYJ5y4', '5900203'), + (50147, 516, 1894, 'not_attending', '2023-02-02 11:53:43', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901100'), + (50148, 516, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901108'), + (50149, 516, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901126'), + (50150, 516, 1897, 'attending', '2023-02-02 20:50:04', '2025-12-17 19:47:07', 'bdzYJ5y4', '5901128'), + (50151, 516, 1899, 'not_attending', '2023-02-06 13:15:18', '2025-12-17 19:47:07', 'bdzYJ5y4', '5901323'), + (50152, 516, 1900, 'not_attending', '2023-02-02 11:53:36', '2025-12-17 19:47:06', 'bdzYJ5y4', '5901331'), + (50153, 516, 1902, 'not_attending', '2023-02-02 11:53:52', '2025-12-17 19:47:06', 'bdzYJ5y4', '5902254'), + (50154, 516, 1904, 'not_attending', '2023-02-06 13:15:12', '2025-12-17 19:47:07', 'bdzYJ5y4', '5903239'), + (50155, 516, 1908, 'not_attending', '2023-02-09 08:36:01', '2025-12-17 19:47:07', 'bdzYJ5y4', '5905018'), + (50156, 516, 1909, 'not_attending', '2023-02-06 13:15:21', '2025-12-17 19:47:07', 'bdzYJ5y4', '5906541'), + (50157, 516, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'bdzYJ5y4', '5909655'), + (50158, 516, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'bdzYJ5y4', '5910522'), + (50159, 516, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'bdzYJ5y4', '5910526'), + (50160, 516, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'bdzYJ5y4', '5910528'), + (50161, 516, 1922, 'not_attending', '2023-02-15 04:02:58', '2025-12-17 19:47:07', 'bdzYJ5y4', '5916219'), + (50162, 516, 1923, 'not_attending', '2023-02-17 16:21:44', '2025-12-17 19:47:07', 'bdzYJ5y4', '5930436'), + (50163, 516, 1924, 'not_attending', '2023-02-17 16:21:42', '2025-12-17 19:47:07', 'bdzYJ5y4', '5931095'), + (50164, 516, 1926, 'not_attending', '2023-02-26 00:49:43', '2025-12-17 19:47:08', 'bdzYJ5y4', '5932620'), + (50165, 516, 1927, 'maybe', '2023-03-12 23:42:50', '2025-12-17 19:47:10', 'bdzYJ5y4', '5932621'), + (50166, 516, 1930, 'not_attending', '2023-02-26 00:49:23', '2025-12-17 19:47:08', 'bdzYJ5y4', '5933462'), + (50167, 516, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'bdzYJ5y4', '5936234'), + (50168, 516, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'bdzYJ5y4', '5958351'), + (50169, 516, 1936, 'not_attending', '2023-02-26 00:49:34', '2025-12-17 19:47:08', 'bdzYJ5y4', '5959397'), + (50170, 516, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'bdzYJ5y4', '5959751'), + (50171, 516, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'bdzYJ5y4', '5959755'), + (50172, 516, 1940, 'maybe', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'bdzYJ5y4', '5960055'), + (50173, 516, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'bdzYJ5y4', '5961684'), + (50174, 516, 1942, 'not_attending', '2023-03-01 21:43:18', '2025-12-17 19:47:08', 'bdzYJ5y4', '5962085'), + (50175, 516, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'bdzYJ5y4', '5962132'), + (50176, 516, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'bdzYJ5y4', '5962133'), + (50177, 516, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'bdzYJ5y4', '5962134'), + (50178, 516, 1947, 'not_attending', '2023-03-01 21:43:51', '2025-12-17 19:47:09', 'bdzYJ5y4', '5962233'), + (50179, 516, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'bdzYJ5y4', '5962317'), + (50180, 516, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'bdzYJ5y4', '5962318'), + (50181, 516, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'bdzYJ5y4', '5965933'), + (50182, 516, 1952, 'maybe', '2023-03-01 21:43:22', '2025-12-17 19:47:08', 'bdzYJ5y4', '5965937'), + (50183, 516, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'bdzYJ5y4', '5967014'), + (50184, 516, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'bdzYJ5y4', '5972815'), + (50185, 516, 1959, 'not_attending', '2023-03-24 22:23:38', '2025-12-17 19:46:57', 'bdzYJ5y4', '5972829'), + (50186, 516, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'bdzYJ5y4', '5974016'), + (50187, 516, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'bdzYJ5y4', '5975052'), + (50188, 516, 1963, 'maybe', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'bdzYJ5y4', '5975054'), + (50189, 516, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'bdzYJ5y4', '5981515'), + (50190, 516, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'bdzYJ5y4', '5993516'), + (50191, 516, 1973, 'not_attending', '2023-03-13 18:08:03', '2025-12-17 19:46:56', 'bdzYJ5y4', '5993777'), + (50192, 516, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'bdzYJ5y4', '5998939'), + (50193, 516, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'bdzYJ5y4', '6028191'), + (50194, 516, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'bdzYJ5y4', '6040066'), + (50195, 516, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'bdzYJ5y4', '6042717'), + (50196, 516, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'bdzYJ5y4', '6044838'), + (50197, 516, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'bdzYJ5y4', '6044839'), + (50198, 516, 1989, 'not_attending', '2023-05-15 22:05:33', '2025-12-17 19:47:03', 'bdzYJ5y4', '6044842'), + (50199, 516, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'bdzYJ5y4', '6045684'), + (50200, 516, 1991, 'not_attending', '2023-03-30 21:13:42', '2025-12-17 19:46:58', 'bdzYJ5y4', '6047354'), + (50201, 516, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'bdzYJ5y4', '6050104'), + (50202, 516, 1999, 'not_attending', '2023-04-19 20:06:53', '2025-12-17 19:47:00', 'bdzYJ5y4', '6052057'), + (50203, 516, 2003, 'not_attending', '2023-05-11 01:43:09', '2025-12-17 19:47:03', 'bdzYJ5y4', '6052606'), + (50204, 516, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'bdzYJ5y4', '6053195'), + (50205, 516, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'bdzYJ5y4', '6053198'), + (50206, 516, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'bdzYJ5y4', '6056085'), + (50207, 516, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'bdzYJ5y4', '6056916'), + (50208, 516, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'bdzYJ5y4', '6059290'), + (50209, 516, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'bdzYJ5y4', '6060328'), + (50210, 516, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'bdzYJ5y4', '6061037'), + (50211, 516, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'bdzYJ5y4', '6061039'), + (50212, 516, 2019, 'not_attending', '2023-04-19 20:06:50', '2025-12-17 19:47:00', 'bdzYJ5y4', '6062934'), + (50213, 516, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'bdzYJ5y4', '6065813'), + (50214, 516, 2021, 'not_attending', '2023-04-17 21:22:53', '2025-12-17 19:47:00', 'bdzYJ5y4', '6066316'), + (50215, 516, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'bdzYJ5y4', '6067245'), + (50216, 516, 2024, 'not_attending', '2023-04-19 20:06:57', '2025-12-17 19:47:00', 'bdzYJ5y4', '6067437'), + (50217, 516, 2025, 'not_attending', '2023-04-19 20:07:04', '2025-12-17 19:47:00', 'bdzYJ5y4', '6067457'), + (50218, 516, 2027, 'attending', '2023-04-17 21:29:18', '2025-12-17 19:47:00', 'bdzYJ5y4', '6068094'), + (50219, 516, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'bdzYJ5y4', '6068252'), + (50220, 516, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'bdzYJ5y4', '6068253'), + (50221, 516, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'bdzYJ5y4', '6068254'), + (50222, 516, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'bdzYJ5y4', '6068280'), + (50223, 516, 2032, 'attending', '2023-05-22 02:50:16', '2025-12-17 19:47:04', 'bdzYJ5y4', '6068281'), + (50224, 516, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'bdzYJ5y4', '6069093'), + (50225, 516, 2035, 'not_attending', '2023-05-01 21:06:29', '2025-12-17 19:47:02', 'bdzYJ5y4', '6070142'), + (50226, 516, 2041, 'attending', '2023-04-24 02:33:53', '2025-12-17 19:47:01', 'bdzYJ5y4', '6072528'), + (50227, 516, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'bdzYJ5y4', '6075556'), + (50228, 516, 2046, 'not_attending', '2023-05-08 02:21:35', '2025-12-17 19:47:02', 'bdzYJ5y4', '6076020'), + (50229, 516, 2047, 'not_attending', '2023-05-01 21:06:43', '2025-12-17 19:47:02', 'bdzYJ5y4', '6076027'), + (50230, 516, 2048, 'not_attending', '2023-05-08 02:21:57', '2025-12-17 19:47:03', 'bdzYJ5y4', '6076415'), + (50231, 516, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'bdzYJ5y4', '6079840'), + (50232, 516, 2050, 'not_attending', '2023-05-01 21:06:47', '2025-12-17 19:47:02', 'bdzYJ5y4', '6080489'), + (50233, 516, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'bdzYJ5y4', '6083398'), + (50234, 516, 2053, 'not_attending', '2023-05-08 16:23:40', '2025-12-17 19:47:02', 'bdzYJ5y4', '6092644'), + (50235, 516, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'bdzYJ5y4', '6093504'), + (50236, 516, 2057, 'not_attending', '2023-05-08 02:21:29', '2025-12-17 19:47:02', 'bdzYJ5y4', '6093692'), + (50237, 516, 2058, 'maybe', '2023-05-08 16:23:47', '2025-12-17 19:47:02', 'bdzYJ5y4', '6096374'), + (50238, 516, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'bdzYJ5y4', '6097414'), + (50239, 516, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'bdzYJ5y4', '6097442'), + (50240, 516, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'bdzYJ5y4', '6097684'), + (50241, 516, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'bdzYJ5y4', '6098762'), + (50242, 516, 2064, 'maybe', '2023-06-04 12:56:56', '2025-12-17 19:46:50', 'bdzYJ5y4', '6099988'), + (50243, 516, 2065, 'attending', '2023-06-04 12:56:51', '2025-12-17 19:46:49', 'bdzYJ5y4', '6101169'), + (50244, 516, 2066, 'not_attending', '2023-06-04 12:56:36', '2025-12-17 19:47:04', 'bdzYJ5y4', '6101361'), + (50245, 516, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'bdzYJ5y4', '6101362'), + (50246, 516, 2069, 'not_attending', '2023-05-15 22:05:44', '2025-12-17 19:47:03', 'bdzYJ5y4', '6103750'), + (50247, 516, 2072, 'not_attending', '2023-05-15 22:05:31', '2025-12-17 19:47:03', 'bdzYJ5y4', '6105573'), + (50248, 516, 2074, 'maybe', '2023-05-24 17:30:10', '2025-12-17 19:47:03', 'bdzYJ5y4', '6107312'), + (50249, 516, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'bdzYJ5y4', '6107314'), + (50250, 516, 2080, 'maybe', '2023-05-29 20:45:17', '2025-12-17 19:47:04', 'bdzYJ5y4', '6114677'), + (50251, 516, 2086, 'not_attending', '2023-06-01 06:00:52', '2025-12-17 19:47:04', 'bdzYJ5y4', '6119877'), + (50252, 516, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'bdzYJ5y4', '6120034'), + (50253, 516, 2089, 'not_attending', '2023-06-04 12:57:07', '2025-12-17 19:47:04', 'bdzYJ5y4', '6125227'), + (50254, 516, 2090, 'not_attending', '2023-06-01 06:00:56', '2025-12-17 19:47:04', 'bdzYJ5y4', '6127961'), + (50255, 516, 2091, 'not_attending', '2023-06-04 12:57:01', '2025-12-17 19:47:04', 'bdzYJ5y4', '6130657'), + (50256, 516, 2093, 'not_attending', '2023-06-04 12:57:28', '2025-12-17 19:47:04', 'bdzYJ5y4', '6132598'), + (50257, 516, 2094, 'not_attending', '2023-06-06 05:12:58', '2025-12-17 19:47:04', 'bdzYJ5y4', '6135924'), + (50258, 516, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'bdzYJ5y4', '6136733'), + (50259, 516, 2096, 'maybe', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'bdzYJ5y4', '6137989'), + (50260, 516, 2103, 'not_attending', '2023-06-19 01:39:02', '2025-12-17 19:46:50', 'bdzYJ5y4', '6149451'), + (50261, 516, 2104, 'maybe', '2023-06-21 09:31:30', '2025-12-17 19:46:50', 'bdzYJ5y4', '6149499'), + (50262, 516, 2107, 'not_attending', '2023-06-21 09:31:23', '2025-12-17 19:46:50', 'bdzYJ5y4', '6150480'), + (50263, 516, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'bdzYJ5y4', '6150864'), + (50264, 516, 2109, 'not_attending', '2023-06-21 09:31:44', '2025-12-17 19:46:50', 'bdzYJ5y4', '6152821'), + (50265, 516, 2110, 'maybe', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'bdzYJ5y4', '6155491'), + (50266, 516, 2111, 'maybe', '2023-06-21 09:31:27', '2025-12-17 19:46:50', 'bdzYJ5y4', '6156121'), + (50267, 516, 2112, 'not_attending', '2023-06-21 09:31:22', '2025-12-17 19:46:50', 'bdzYJ5y4', '6156213'), + (50268, 516, 2113, 'not_attending', '2023-06-21 09:31:38', '2025-12-17 19:46:50', 'bdzYJ5y4', '6156215'), + (50269, 516, 2114, 'maybe', '2023-06-21 09:31:46', '2025-12-17 19:46:50', 'bdzYJ5y4', '6158648'), + (50270, 516, 2115, 'not_attending', '2023-06-26 19:20:26', '2025-12-17 19:46:50', 'bdzYJ5y4', '6161437'), + (50271, 516, 2116, 'not_attending', '2023-07-06 12:26:47', '2025-12-17 19:46:51', 'bdzYJ5y4', '6163389'), + (50272, 516, 2117, 'not_attending', '2023-06-26 19:19:51', '2025-12-17 19:46:50', 'bdzYJ5y4', '6163750'), + (50273, 516, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'bdzYJ5y4', '6164417'), + (50274, 516, 2119, 'maybe', '2023-06-26 19:20:19', '2025-12-17 19:46:50', 'bdzYJ5y4', '6165461'), + (50275, 516, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'bdzYJ5y4', '6166388'), + (50276, 516, 2121, 'not_attending', '2023-06-27 23:58:35', '2025-12-17 19:46:50', 'bdzYJ5y4', '6176439'), + (50277, 516, 2123, 'not_attending', '2023-06-27 23:58:31', '2025-12-17 19:46:50', 'bdzYJ5y4', '6176502'), + (50278, 516, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'bdzYJ5y4', '6182410'), + (50279, 516, 2130, 'maybe', '2023-07-06 12:26:40', '2025-12-17 19:46:51', 'bdzYJ5y4', '6183891'), + (50280, 516, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'bdzYJ5y4', '6185812'), + (50281, 516, 2132, 'not_attending', '2023-07-07 16:08:31', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187015'), + (50282, 516, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'bdzYJ5y4', '6187651'), + (50283, 516, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187963'), + (50284, 516, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187964'), + (50285, 516, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'bdzYJ5y4', '6187966'), + (50286, 516, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'bdzYJ5y4', '6187967'), + (50287, 516, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'bdzYJ5y4', '6187969'), + (50288, 516, 2139, 'maybe', '2023-07-09 17:14:55', '2025-12-17 19:46:52', 'bdzYJ5y4', '6188027'), + (50289, 516, 2140, 'not_attending', '2023-07-07 16:08:43', '2025-12-17 19:46:52', 'bdzYJ5y4', '6188074'), + (50290, 516, 2141, 'not_attending', '2023-07-09 17:14:44', '2025-12-17 19:46:52', 'bdzYJ5y4', '6188819'), + (50291, 516, 2142, 'not_attending', '2023-07-17 17:44:33', '2025-12-17 19:46:52', 'bdzYJ5y4', '6333850'), + (50292, 516, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'bdzYJ5y4', '6334878'), + (50293, 516, 2145, 'not_attending', '2023-07-09 17:14:50', '2025-12-17 19:46:52', 'bdzYJ5y4', '6334903'), + (50294, 516, 2146, 'not_attending', '2023-07-17 22:31:46', '2025-12-17 19:46:53', 'bdzYJ5y4', '6335638'), + (50295, 516, 2147, 'not_attending', '2023-07-11 15:37:17', '2025-12-17 19:46:52', 'bdzYJ5y4', '6335666'), + (50296, 516, 2148, 'not_attending', '2023-07-21 22:34:02', '2025-12-17 19:46:53', 'bdzYJ5y4', '6335667'), + (50297, 516, 2149, 'maybe', '2023-07-10 11:05:06', '2025-12-17 19:46:53', 'bdzYJ5y4', '6335682'), + (50298, 516, 2150, 'not_attending', '2023-07-11 18:20:28', '2025-12-17 19:46:52', 'bdzYJ5y4', '6335687'), + (50299, 516, 2151, 'not_attending', '2023-07-11 15:37:13', '2025-12-17 19:46:52', 'bdzYJ5y4', '6335700'), + (50300, 516, 2152, 'maybe', '2023-07-11 15:37:09', '2025-12-17 19:46:52', 'bdzYJ5y4', '6337021'), + (50301, 516, 2153, 'not_attending', '2023-07-11 16:09:17', '2025-12-17 19:46:52', 'bdzYJ5y4', '6337236'), + (50302, 516, 2155, 'not_attending', '2023-07-13 05:22:07', '2025-12-17 19:46:53', 'bdzYJ5y4', '6337970'), + (50303, 516, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'bdzYJ5y4', '6338308'), + (50304, 516, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'bdzYJ5y4', '6338342'), + (50305, 516, 2158, 'not_attending', '2023-07-17 22:31:53', '2025-12-17 19:46:53', 'bdzYJ5y4', '6338353'), + (50306, 516, 2159, 'not_attending', '2023-07-13 05:22:42', '2025-12-17 19:46:53', 'bdzYJ5y4', '6338355'), + (50307, 516, 2160, 'attending', '2023-07-13 05:22:48', '2025-12-17 19:46:54', 'bdzYJ5y4', '6338358'), + (50308, 516, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'bdzYJ5y4', '6341710'), + (50309, 516, 2164, 'not_attending', '2023-07-27 00:23:56', '2025-12-17 19:46:54', 'bdzYJ5y4', '6341797'), + (50310, 516, 2165, 'maybe', '2023-07-31 23:36:29', '2025-12-17 19:46:54', 'bdzYJ5y4', '6342044'), + (50311, 516, 2166, 'not_attending', '2023-07-20 13:05:09', '2025-12-17 19:46:54', 'bdzYJ5y4', '6342115'), + (50312, 516, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342298'), + (50313, 516, 2169, 'not_attending', '2023-07-21 22:34:04', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342306'), + (50314, 516, 2171, 'maybe', '2023-07-20 13:05:12', '2025-12-17 19:46:54', 'bdzYJ5y4', '6342328'), + (50315, 516, 2172, 'not_attending', '2023-07-20 17:31:17', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342591'), + (50316, 516, 2173, 'not_attending', '2023-07-20 17:31:12', '2025-12-17 19:46:53', 'bdzYJ5y4', '6342769'), + (50317, 516, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'bdzYJ5y4', '6343294'), + (50318, 516, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'bdzYJ5y4', '6347034'), + (50319, 516, 2177, 'not_attending', '2023-08-04 15:30:57', '2025-12-17 19:46:55', 'bdzYJ5y4', '6347053'), + (50320, 516, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'bdzYJ5y4', '6347056'), + (50321, 516, 2179, 'not_attending', '2023-08-01 11:48:39', '2025-12-17 19:46:54', 'bdzYJ5y4', '6347591'), + (50322, 516, 2180, 'not_attending', '2023-07-25 11:06:43', '2025-12-17 19:46:54', 'bdzYJ5y4', '6348788'), + (50323, 516, 2181, 'not_attending', '2023-07-27 00:23:50', '2025-12-17 19:46:54', 'bdzYJ5y4', '6349354'), + (50324, 516, 2182, 'not_attending', '2023-07-27 00:23:42', '2025-12-17 19:46:53', 'bdzYJ5y4', '6349618'), + (50325, 516, 2183, 'not_attending', '2023-07-28 14:08:30', '2025-12-17 19:46:54', 'bdzYJ5y4', '6353008'), + (50326, 516, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'bdzYJ5y4', '6353830'), + (50327, 516, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'bdzYJ5y4', '6353831'), + (50328, 516, 2187, 'not_attending', '2023-08-04 15:30:54', '2025-12-17 19:46:55', 'bdzYJ5y4', '6357559'), + (50329, 516, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'bdzYJ5y4', '6357867'), + (50330, 516, 2190, 'not_attending', '2023-08-04 15:30:43', '2025-12-17 19:46:55', 'bdzYJ5y4', '6357892'), + (50331, 516, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358652'), + (50332, 516, 2192, 'not_attending', '2023-08-04 18:44:17', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358666'), + (50333, 516, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358668'), + (50334, 516, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'bdzYJ5y4', '6358669'), + (50335, 516, 2195, 'maybe', '2023-08-10 05:06:13', '2025-12-17 19:46:55', 'bdzYJ5y4', '6359397'), + (50336, 516, 2196, 'maybe', '2023-09-03 04:04:09', '2025-12-17 19:46:56', 'bdzYJ5y4', '6359398'), + (50337, 516, 2197, 'maybe', '2023-09-13 19:50:41', '2025-12-17 19:46:44', 'bdzYJ5y4', '6359399'), + (50338, 516, 2198, 'maybe', '2023-09-08 08:46:57', '2025-12-17 19:46:45', 'bdzYJ5y4', '6359400'), + (50339, 516, 2199, 'attending', '2023-08-10 05:06:07', '2025-12-17 19:46:55', 'bdzYJ5y4', '6359849'), + (50340, 516, 2200, 'not_attending', '2023-08-06 08:27:36', '2025-12-17 19:46:55', 'bdzYJ5y4', '6359850'), + (50341, 516, 2203, 'not_attending', '2023-08-10 05:05:45', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361524'), + (50342, 516, 2204, 'not_attending', '2023-08-10 05:05:50', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361542'), + (50343, 516, 2206, 'not_attending', '2023-08-08 16:27:24', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361659'), + (50344, 516, 2208, 'not_attending', '2023-08-08 16:27:28', '2025-12-17 19:46:54', 'bdzYJ5y4', '6361709'), + (50345, 516, 2209, 'not_attending', '2023-08-10 05:06:16', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361710'), + (50346, 516, 2210, 'maybe', '2023-08-28 10:40:13', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361711'), + (50347, 516, 2211, 'not_attending', '2023-08-10 05:06:10', '2025-12-17 19:46:55', 'bdzYJ5y4', '6361712'), + (50348, 516, 2212, 'not_attending', '2023-09-24 11:52:18', '2025-12-17 19:46:45', 'bdzYJ5y4', '6361713'), + (50349, 516, 2213, 'not_attending', '2023-08-10 05:06:02', '2025-12-17 19:46:55', 'bdzYJ5y4', '6362935'), + (50350, 516, 2214, 'not_attending', '2023-08-10 05:05:57', '2025-12-17 19:46:55', 'bdzYJ5y4', '6363218'), + (50351, 516, 2215, 'not_attending', '2023-08-10 22:28:15', '2025-12-17 19:46:55', 'bdzYJ5y4', '6363479'), + (50352, 516, 2216, 'not_attending', '2023-08-16 15:13:59', '2025-12-17 19:46:55', 'bdzYJ5y4', '6364123'), + (50353, 516, 2218, 'not_attending', '2023-08-20 01:46:06', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367308'), + (50354, 516, 2220, 'not_attending', '2023-08-31 18:07:43', '2025-12-17 19:46:56', 'bdzYJ5y4', '6367310'), + (50355, 516, 2221, 'not_attending', '2023-08-16 15:13:57', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367357'), + (50356, 516, 2222, 'maybe', '2023-08-20 01:46:21', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367358'), + (50357, 516, 2223, 'not_attending', '2023-08-16 15:13:50', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367439'), + (50358, 516, 2224, 'not_attending', '2023-08-16 15:13:48', '2025-12-17 19:46:55', 'bdzYJ5y4', '6367635'), + (50359, 516, 2225, 'not_attending', '2023-08-28 10:40:08', '2025-12-17 19:46:55', 'bdzYJ5y4', '6368434'), + (50360, 516, 2227, 'attending', '2023-08-20 01:46:00', '2025-12-17 19:46:55', 'bdzYJ5y4', '6370581'), + (50361, 516, 2229, 'not_attending', '2023-08-21 02:31:48', '2025-12-17 19:46:55', 'bdzYJ5y4', '6373787'), + (50362, 516, 2231, 'not_attending', '2023-08-23 22:39:23', '2025-12-17 19:46:55', 'bdzYJ5y4', '6374748'), + (50363, 516, 2232, 'attending', '2023-08-23 15:40:01', '2025-12-17 19:46:55', 'bdzYJ5y4', '6374818'), + (50364, 516, 2234, 'not_attending', '2023-08-31 18:07:36', '2025-12-17 19:46:56', 'bdzYJ5y4', '6382559'), + (50365, 516, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'bdzYJ5y4', '6382573'), + (50366, 516, 2236, 'not_attending', '2023-08-28 10:40:19', '2025-12-17 19:46:55', 'bdzYJ5y4', '6382618'), + (50367, 516, 2238, 'not_attending', '2023-08-31 18:07:37', '2025-12-17 19:46:56', 'bdzYJ5y4', '6387266'), + (50368, 516, 2239, 'not_attending', '2023-08-31 18:07:28', '2025-12-17 19:46:56', 'bdzYJ5y4', '6387592'), + (50369, 516, 2240, 'maybe', '2023-09-03 04:03:51', '2025-12-17 19:46:56', 'bdzYJ5y4', '6388603'), + (50370, 516, 2241, 'not_attending', '2023-09-03 04:03:55', '2025-12-17 19:46:44', 'bdzYJ5y4', '6388604'), + (50371, 516, 2242, 'maybe', '2023-09-08 08:46:54', '2025-12-17 19:46:45', 'bdzYJ5y4', '6388606'), + (50372, 516, 2243, 'not_attending', '2023-09-06 08:54:46', '2025-12-17 19:46:56', 'bdzYJ5y4', '6393686'), + (50373, 516, 2247, 'not_attending', '2023-09-06 08:54:43', '2025-12-17 19:46:56', 'bdzYJ5y4', '6394628'), + (50374, 516, 2248, 'not_attending', '2023-09-10 02:14:33', '2025-12-17 19:46:44', 'bdzYJ5y4', '6394629'), + (50375, 516, 2249, 'not_attending', '2023-09-17 08:10:56', '2025-12-17 19:46:45', 'bdzYJ5y4', '6394630'), + (50376, 516, 2250, 'not_attending', '2023-09-24 11:52:12', '2025-12-17 19:46:45', 'bdzYJ5y4', '6394631'), + (50377, 516, 2253, 'not_attending', '2023-09-17 08:11:06', '2025-12-17 19:46:45', 'bdzYJ5y4', '6401811'), + (50378, 516, 2255, 'not_attending', '2023-09-13 19:50:47', '2025-12-17 19:46:45', 'bdzYJ5y4', '6403562'), + (50379, 516, 2261, 'not_attending', '2023-09-27 20:40:24', '2025-12-17 19:46:45', 'bdzYJ5y4', '6427422'), + (50380, 516, 2262, 'not_attending', '2023-09-29 16:44:54', '2025-12-17 19:46:45', 'bdzYJ5y4', '6427423'), + (50381, 516, 2263, 'maybe', '2023-09-27 20:40:39', '2025-12-17 19:46:45', 'bdzYJ5y4', '6429351'), + (50382, 516, 2264, 'not_attending', '2023-09-27 20:40:21', '2025-12-17 19:46:45', 'bdzYJ5y4', '6431478'), + (50383, 516, 2265, 'not_attending', '2023-09-29 16:44:52', '2025-12-17 19:46:45', 'bdzYJ5y4', '6439625'), + (50384, 516, 2266, 'maybe', '2023-10-03 22:41:14', '2025-12-17 19:46:45', 'bdzYJ5y4', '6439635'), + (50385, 516, 2267, 'not_attending', '2023-10-02 02:50:35', '2025-12-17 19:46:45', 'bdzYJ5y4', '6440034'), + (50386, 516, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'bdzYJ5y4', '6440863'), + (50387, 516, 2269, 'not_attending', '2023-10-03 22:41:02', '2025-12-17 19:46:45', 'bdzYJ5y4', '6442978'), + (50388, 516, 2270, 'not_attending', '2023-10-03 22:41:18', '2025-12-17 19:46:46', 'bdzYJ5y4', '6443067'), + (50389, 516, 2271, 'maybe', '2023-10-03 22:41:07', '2025-12-17 19:46:45', 'bdzYJ5y4', '6445375'), + (50390, 516, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'bdzYJ5y4', '6445440'), + (50391, 516, 2273, 'not_attending', '2023-10-03 22:41:00', '2025-12-17 19:46:45', 'bdzYJ5y4', '6448282'), + (50392, 516, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'bdzYJ5y4', '6453951'), + (50393, 516, 2277, 'not_attending', '2023-10-09 09:26:58', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455211'), + (50394, 516, 2278, 'not_attending', '2023-10-09 09:26:42', '2025-12-17 19:46:45', 'bdzYJ5y4', '6455213'), + (50395, 516, 2279, 'not_attending', '2023-10-10 19:29:59', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455460'), + (50396, 516, 2280, 'not_attending', '2023-10-09 09:26:46', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455470'), + (50397, 516, 2283, 'not_attending', '2023-10-10 19:29:55', '2025-12-17 19:46:46', 'bdzYJ5y4', '6455503'), + (50398, 516, 2284, 'not_attending', '2023-10-11 21:05:51', '2025-12-17 19:46:46', 'bdzYJ5y4', '6460928'), + (50399, 516, 2285, 'not_attending', '2023-10-21 13:24:22', '2025-12-17 19:46:47', 'bdzYJ5y4', '6460929'), + (50400, 516, 2286, 'not_attending', '2023-11-24 03:13:41', '2025-12-17 19:46:48', 'bdzYJ5y4', '6460930'), + (50401, 516, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'bdzYJ5y4', '6461696'), + (50402, 516, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'bdzYJ5y4', '6462129'), + (50403, 516, 2290, 'not_attending', '2023-10-11 21:05:59', '2025-12-17 19:46:46', 'bdzYJ5y4', '6462214'), + (50404, 516, 2291, 'not_attending', '2023-10-11 21:05:54', '2025-12-17 19:46:46', 'bdzYJ5y4', '6462215'), + (50405, 516, 2292, 'not_attending', '2023-10-28 01:25:29', '2025-12-17 19:46:47', 'bdzYJ5y4', '6462216'), + (50406, 516, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'bdzYJ5y4', '6463218'), + (50407, 516, 2294, 'not_attending', '2023-10-12 14:58:38', '2025-12-17 19:46:46', 'bdzYJ5y4', '6465907'), + (50408, 516, 2295, 'maybe', '2023-10-16 07:40:02', '2025-12-17 19:46:46', 'bdzYJ5y4', '6467832'), + (50409, 516, 2296, 'not_attending', '2023-10-21 13:24:14', '2025-12-17 19:46:47', 'bdzYJ5y4', '6468393'), + (50410, 516, 2297, 'not_attending', '2023-10-14 06:19:26', '2025-12-17 19:46:46', 'bdzYJ5y4', '6469583'), + (50411, 516, 2299, 'maybe', '2023-10-16 07:39:54', '2025-12-17 19:46:46', 'bdzYJ5y4', '6472181'), + (50412, 516, 2300, 'maybe', '2023-10-16 07:40:06', '2025-12-17 19:46:47', 'bdzYJ5y4', '6472185'), + (50413, 516, 2301, 'not_attending', '2023-10-22 17:54:54', '2025-12-17 19:46:46', 'bdzYJ5y4', '6474276'), + (50414, 516, 2303, 'not_attending', '2023-10-21 13:24:24', '2025-12-17 19:46:47', 'bdzYJ5y4', '6482691'), + (50415, 516, 2304, 'attending', '2023-10-25 21:56:27', '2025-12-17 19:46:47', 'bdzYJ5y4', '6482693'), + (50416, 516, 2306, 'not_attending', '2023-11-11 18:37:05', '2025-12-17 19:46:47', 'bdzYJ5y4', '6484200'), + (50417, 516, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'bdzYJ5y4', '6484680'), + (50418, 516, 2308, 'not_attending', '2023-10-25 21:56:08', '2025-12-17 19:46:47', 'bdzYJ5y4', '6485393'), + (50419, 516, 2310, 'not_attending', '2023-10-25 21:56:31', '2025-12-17 19:46:47', 'bdzYJ5y4', '6487709'), + (50420, 516, 2311, 'not_attending', '2023-10-30 05:21:14', '2025-12-17 19:46:47', 'bdzYJ5y4', '6487725'), + (50421, 516, 2314, 'not_attending', '2023-10-29 21:52:33', '2025-12-17 19:46:47', 'bdzYJ5y4', '6493665'), + (50422, 516, 2315, 'not_attending', '2023-10-30 05:21:11', '2025-12-17 19:46:47', 'bdzYJ5y4', '6493666'), + (50423, 516, 2316, 'not_attending', '2023-11-07 02:45:38', '2025-12-17 19:46:48', 'bdzYJ5y4', '6493668'), + (50424, 516, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'bdzYJ5y4', '6507741'), + (50425, 516, 2318, 'attending', '2023-10-30 20:42:25', '2025-12-17 19:46:47', 'bdzYJ5y4', '6508566'), + (50426, 516, 2319, 'not_attending', '2023-10-30 20:42:28', '2025-12-17 19:46:47', 'bdzYJ5y4', '6508567'), + (50427, 516, 2320, 'not_attending', '2023-11-07 02:45:17', '2025-12-17 19:46:47', 'bdzYJ5y4', '6508647'), + (50428, 516, 2321, 'not_attending', '2023-11-01 16:17:41', '2025-12-17 19:46:47', 'bdzYJ5y4', '6512075'), + (50429, 516, 2322, 'not_attending', '2023-11-01 16:17:49', '2025-12-17 19:46:48', 'bdzYJ5y4', '6514659'), + (50430, 516, 2323, 'not_attending', '2023-11-12 05:12:27', '2025-12-17 19:46:49', 'bdzYJ5y4', '6514660'), + (50431, 516, 2324, 'not_attending', '2023-11-12 05:21:05', '2025-12-17 19:46:49', 'bdzYJ5y4', '6514662'), + (50432, 516, 2325, 'attending', '2023-11-12 05:21:09', '2025-12-17 19:46:36', 'bdzYJ5y4', '6514663'), + (50433, 516, 2326, 'not_attending', '2023-11-16 22:15:39', '2025-12-17 19:46:48', 'bdzYJ5y4', '6514805'), + (50434, 516, 2327, 'not_attending', '2023-11-01 22:41:20', '2025-12-17 19:46:47', 'bdzYJ5y4', '6515494'), + (50435, 516, 2328, 'not_attending', '2023-11-01 22:41:17', '2025-12-17 19:46:47', 'bdzYJ5y4', '6515504'), + (50436, 516, 2329, 'not_attending', '2023-11-07 21:32:25', '2025-12-17 19:46:47', 'bdzYJ5y4', '6517138'), + (50437, 516, 2330, 'not_attending', '2023-11-07 02:45:27', '2025-12-17 19:46:47', 'bdzYJ5y4', '6517941'), + (50438, 516, 2331, 'not_attending', '2023-11-07 02:45:33', '2025-12-17 19:46:47', 'bdzYJ5y4', '6518640'), + (50439, 516, 2332, 'not_attending', '2023-11-09 18:31:52', '2025-12-17 19:46:47', 'bdzYJ5y4', '6518655'), + (50440, 516, 2333, 'not_attending', '2023-11-07 02:45:14', '2025-12-17 19:46:47', 'bdzYJ5y4', '6519103'), + (50441, 516, 2335, 'not_attending', '2023-11-09 04:23:22', '2025-12-17 19:46:47', 'bdzYJ5y4', '6534890'), + (50442, 516, 2337, 'attending', '2023-11-08 01:06:34', '2025-12-17 19:46:48', 'bdzYJ5y4', '6535681'), + (50443, 516, 2338, 'not_attending', '2023-11-12 05:12:19', '2025-12-17 19:46:48', 'bdzYJ5y4', '6538868'), + (50444, 516, 2339, 'not_attending', '2023-11-11 18:37:01', '2025-12-17 19:46:47', 'bdzYJ5y4', '6539128'), + (50445, 516, 2340, 'not_attending', '2023-11-15 19:05:01', '2025-12-17 19:46:48', 'bdzYJ5y4', '6540279'), + (50446, 516, 2341, 'not_attending', '2023-11-15 19:04:58', '2025-12-17 19:46:48', 'bdzYJ5y4', '6543263'), + (50447, 516, 2343, 'maybe', '2023-11-15 19:05:04', '2025-12-17 19:46:48', 'bdzYJ5y4', '6574728'), + (50448, 516, 2345, 'not_attending', '2023-11-27 06:43:24', '2025-12-17 19:46:48', 'bdzYJ5y4', '6582414'), + (50449, 516, 2347, 'not_attending', '2023-11-20 12:06:01', '2025-12-17 19:46:48', 'bdzYJ5y4', '6583053'), + (50450, 516, 2348, 'not_attending', '2023-11-20 12:05:59', '2025-12-17 19:46:48', 'bdzYJ5y4', '6583064'), + (50451, 516, 2350, 'not_attending', '2023-11-21 03:38:32', '2025-12-17 19:46:48', 'bdzYJ5y4', '6584352'), + (50452, 516, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'bdzYJ5y4', '6584747'), + (50453, 516, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'bdzYJ5y4', '6587097'), + (50454, 516, 2354, 'not_attending', '2023-11-29 23:47:06', '2025-12-17 19:46:48', 'bdzYJ5y4', '6591742'), + (50455, 516, 2355, 'not_attending', '2023-12-04 19:45:19', '2025-12-17 19:46:49', 'bdzYJ5y4', '6593339'), + (50456, 516, 2357, 'maybe', '2023-12-18 16:45:27', '2025-12-17 19:46:36', 'bdzYJ5y4', '6593341'), + (50457, 516, 2358, 'not_attending', '2023-11-29 19:13:47', '2025-12-17 19:46:48', 'bdzYJ5y4', '6595321'), + (50458, 516, 2362, 'not_attending', '2023-12-04 19:45:23', '2025-12-17 19:46:49', 'bdzYJ5y4', '6605708'), + (50459, 516, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'bdzYJ5y4', '6609022'), + (50460, 516, 2365, 'not_attending', '2023-12-18 16:45:35', '2025-12-17 19:46:37', 'bdzYJ5y4', '6613093'), + (50461, 516, 2370, 'not_attending', '2023-12-13 18:22:08', '2025-12-17 19:46:36', 'bdzYJ5y4', '6623765'), + (50462, 516, 2372, 'not_attending', '2023-12-18 16:45:30', '2025-12-17 19:46:36', 'bdzYJ5y4', '6628243'), + (50463, 516, 2373, 'not_attending', '2023-12-28 19:56:37', '2025-12-17 19:46:38', 'bdzYJ5y4', '6632678'), + (50464, 516, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'bdzYJ5y4', '6632757'), + (50465, 516, 2375, 'not_attending', '2023-12-20 22:38:51', '2025-12-17 19:46:36', 'bdzYJ5y4', '6634548'), + (50466, 516, 2377, 'not_attending', '2024-01-06 02:38:23', '2025-12-17 19:46:37', 'bdzYJ5y4', '6643448'), + (50467, 516, 2378, 'maybe', '2023-12-30 17:57:59', '2025-12-17 19:46:37', 'bdzYJ5y4', '6644006'), + (50468, 516, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'bdzYJ5y4', '6644187'), + (50469, 516, 2380, 'not_attending', '2023-12-31 15:50:36', '2025-12-17 19:46:37', 'bdzYJ5y4', '6645105'), + (50470, 516, 2381, 'maybe', '2024-01-02 04:53:12', '2025-12-17 19:46:37', 'bdzYJ5y4', '6646398'), + (50471, 516, 2382, 'maybe', '2024-01-02 04:52:55', '2025-12-17 19:46:37', 'bdzYJ5y4', '6646401'), + (50472, 516, 2384, 'maybe', '2024-01-02 04:53:07', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648022'), + (50473, 516, 2385, 'not_attending', '2024-01-08 20:21:19', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648943'), + (50474, 516, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648951'), + (50475, 516, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'bdzYJ5y4', '6648952'), + (50476, 516, 2388, 'not_attending', '2024-01-03 03:20:46', '2025-12-17 19:46:37', 'bdzYJ5y4', '6649244'), + (50477, 516, 2389, 'not_attending', '2024-01-12 00:47:42', '2025-12-17 19:46:40', 'bdzYJ5y4', '6651094'), + (50478, 516, 2391, 'maybe', '2024-01-06 02:38:17', '2025-12-17 19:46:37', 'bdzYJ5y4', '6654138'), + (50479, 516, 2392, 'not_attending', '2024-01-06 02:38:38', '2025-12-17 19:46:37', 'bdzYJ5y4', '6654412'), + (50480, 516, 2394, 'not_attending', '2024-01-15 03:21:38', '2025-12-17 19:46:38', 'bdzYJ5y4', '6654470'), + (50481, 516, 2395, 'not_attending', '2024-01-16 07:05:26', '2025-12-17 19:46:38', 'bdzYJ5y4', '6654471'), + (50482, 516, 2396, 'not_attending', '2024-01-16 07:05:30', '2025-12-17 19:46:38', 'bdzYJ5y4', '6655401'), + (50483, 516, 2399, 'attending', '2024-01-10 05:08:38', '2025-12-17 19:46:38', 'bdzYJ5y4', '6657583'), + (50484, 516, 2400, 'not_attending', '2024-01-08 20:21:31', '2025-12-17 19:46:37', 'bdzYJ5y4', '6659378'), + (50485, 516, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'bdzYJ5y4', '6661585'), + (50486, 516, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'bdzYJ5y4', '6661588'), + (50487, 516, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'bdzYJ5y4', '6661589'), + (50488, 516, 2404, 'not_attending', '2024-01-12 00:47:27', '2025-12-17 19:46:38', 'bdzYJ5y4', '6666858'), + (50489, 516, 2405, 'not_attending', '2024-01-16 07:05:39', '2025-12-17 19:46:38', 'bdzYJ5y4', '6667332'), + (50490, 516, 2406, 'not_attending', '2024-01-18 22:40:49', '2025-12-17 19:46:40', 'bdzYJ5y4', '6692344'), + (50491, 516, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'bdzYJ5y4', '6699906'), + (50492, 516, 2408, 'maybe', '2024-01-15 04:20:55', '2025-12-17 19:46:40', 'bdzYJ5y4', '6699907'), + (50493, 516, 2409, 'not_attending', '2024-01-15 04:21:00', '2025-12-17 19:46:41', 'bdzYJ5y4', '6699909'), + (50494, 516, 2410, 'maybe', '2024-01-15 04:21:10', '2025-12-17 19:46:41', 'bdzYJ5y4', '6699911'), + (50495, 516, 2411, 'not_attending', '2024-01-28 14:37:01', '2025-12-17 19:46:41', 'bdzYJ5y4', '6699913'), + (50496, 516, 2412, 'not_attending', '2024-02-02 18:40:56', '2025-12-17 19:46:43', 'bdzYJ5y4', '6700717'), + (50497, 516, 2413, 'not_attending', '2024-02-16 16:05:40', '2025-12-17 19:46:42', 'bdzYJ5y4', '6700719'), + (50498, 516, 2414, 'not_attending', '2024-01-18 22:40:56', '2025-12-17 19:46:40', 'bdzYJ5y4', '6701000'), + (50499, 516, 2415, 'not_attending', '2024-01-18 22:40:54', '2025-12-17 19:46:40', 'bdzYJ5y4', '6701001'), + (50500, 516, 2416, 'attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'bdzYJ5y4', '6701109'), + (50501, 516, 2419, 'not_attending', '2024-01-29 19:32:52', '2025-12-17 19:46:41', 'bdzYJ5y4', '6704505'), + (50502, 516, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'bdzYJ5y4', '6705219'), + (50503, 516, 2426, 'maybe', '2024-01-23 12:49:17', '2025-12-17 19:46:40', 'bdzYJ5y4', '6705569'), + (50504, 516, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'bdzYJ5y4', '6710153'), + (50505, 516, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'bdzYJ5y4', '6711552'), + (50506, 516, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'bdzYJ5y4', '6711553'), + (50507, 516, 2431, 'not_attending', '2024-01-29 19:32:50', '2025-12-17 19:46:41', 'bdzYJ5y4', '6712394'), + (50508, 516, 2432, 'not_attending', '2024-01-29 19:32:56', '2025-12-17 19:46:41', 'bdzYJ5y4', '6712822'), + (50509, 516, 2435, 'not_attending', '2024-01-29 19:32:43', '2025-12-17 19:46:41', 'bdzYJ5y4', '6721547'), + (50510, 516, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'bdzYJ5y4', '6722688'), + (50511, 516, 2438, 'not_attending', '2024-02-02 18:40:48', '2025-12-17 19:46:41', 'bdzYJ5y4', '6730201'), + (50512, 516, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'bdzYJ5y4', '6730620'), + (50513, 516, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'bdzYJ5y4', '6730642'), + (50514, 516, 2441, 'not_attending', '2024-02-02 18:40:32', '2025-12-17 19:46:41', 'bdzYJ5y4', '6731263'), + (50515, 516, 2442, 'not_attending', '2024-02-02 18:40:36', '2025-12-17 19:46:41', 'bdzYJ5y4', '6732647'), + (50516, 516, 2443, 'not_attending', '2024-02-03 19:06:15', '2025-12-17 19:46:41', 'bdzYJ5y4', '6733775'), + (50517, 516, 2444, 'not_attending', '2024-02-05 06:06:12', '2025-12-17 19:46:41', 'bdzYJ5y4', '6734367'), + (50518, 516, 2446, 'not_attending', '2024-02-26 17:50:24', '2025-12-17 19:46:43', 'bdzYJ5y4', '6734369'), + (50519, 516, 2447, 'not_attending', '2024-03-10 21:34:38', '2025-12-17 19:46:32', 'bdzYJ5y4', '6734370'), + (50520, 516, 2448, 'not_attending', '2024-03-22 17:43:36', '2025-12-17 19:46:33', 'bdzYJ5y4', '6734371'), + (50521, 516, 2449, 'not_attending', '2024-02-13 20:23:03', '2025-12-17 19:46:42', 'bdzYJ5y4', '6735833'), + (50522, 516, 2451, 'not_attending', '2024-02-08 08:46:51', '2025-12-17 19:46:41', 'bdzYJ5y4', '6740333'), + (50523, 516, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'bdzYJ5y4', '6740364'), + (50524, 516, 2454, 'not_attending', '2024-02-16 16:05:47', '2025-12-17 19:46:42', 'bdzYJ5y4', '6740921'), + (50525, 516, 2455, 'not_attending', '2024-02-08 08:46:53', '2025-12-17 19:46:41', 'bdzYJ5y4', '6741034'), + (50526, 516, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'bdzYJ5y4', '6743829'), + (50527, 516, 2463, 'not_attending', '2024-02-13 20:22:44', '2025-12-17 19:46:41', 'bdzYJ5y4', '6746394'), + (50528, 516, 2465, 'not_attending', '2024-02-16 16:05:53', '2025-12-17 19:46:42', 'bdzYJ5y4', '7026725'), + (50529, 516, 2467, 'not_attending', '2024-02-21 19:51:28', '2025-12-17 19:46:43', 'bdzYJ5y4', '7029987'), + (50530, 516, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'bdzYJ5y4', '7030380'), + (50531, 516, 2469, 'maybe', '2024-02-19 07:18:48', '2025-12-17 19:46:42', 'bdzYJ5y4', '7030632'), + (50532, 516, 2471, 'not_attending', '2024-02-21 19:50:58', '2025-12-17 19:46:42', 'bdzYJ5y4', '7032425'), + (50533, 516, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'bdzYJ5y4', '7033677'), + (50534, 516, 2473, 'not_attending', '2024-02-21 19:51:35', '2025-12-17 19:46:43', 'bdzYJ5y4', '7033724'), + (50535, 516, 2474, 'attending', '2024-02-20 21:23:03', '2025-12-17 19:46:43', 'bdzYJ5y4', '7035415'), + (50536, 516, 2475, 'not_attending', '2024-02-21 19:51:40', '2025-12-17 19:46:43', 'bdzYJ5y4', '7035643'), + (50537, 516, 2476, 'not_attending', '2024-02-21 19:51:38', '2025-12-17 19:46:43', 'bdzYJ5y4', '7035691'), + (50538, 516, 2477, 'not_attending', '2024-02-21 19:50:52', '2025-12-17 19:46:42', 'bdzYJ5y4', '7035692'), + (50539, 516, 2478, 'not_attending', '2024-02-22 00:01:23', '2025-12-17 19:46:43', 'bdzYJ5y4', '7036478'), + (50540, 516, 2479, 'not_attending', '2024-02-21 19:51:33', '2025-12-17 19:46:43', 'bdzYJ5y4', '7037009'), + (50541, 516, 2481, 'not_attending', '2024-02-26 04:29:03', '2025-12-17 19:46:43', 'bdzYJ5y4', '7044715'), + (50542, 516, 2482, 'not_attending', '2024-02-29 20:49:39', '2025-12-17 19:46:44', 'bdzYJ5y4', '7044719'), + (50543, 516, 2483, 'not_attending', '2024-02-26 17:50:32', '2025-12-17 19:46:32', 'bdzYJ5y4', '7044720'), + (50544, 516, 2484, 'not_attending', '2024-02-29 20:49:33', '2025-12-17 19:46:43', 'bdzYJ5y4', '7046836'), + (50545, 516, 2485, 'not_attending', '2024-02-27 07:40:22', '2025-12-17 19:46:43', 'bdzYJ5y4', '7048111'), + (50546, 516, 2486, 'not_attending', '2024-02-29 20:49:26', '2025-12-17 19:46:43', 'bdzYJ5y4', '7048277'), + (50547, 516, 2487, 'maybe', '2024-03-17 19:56:59', '2025-12-17 19:46:33', 'bdzYJ5y4', '7049279'), + (50548, 516, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'bdzYJ5y4', '7050318'), + (50549, 516, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'bdzYJ5y4', '7050319'), + (50550, 516, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'bdzYJ5y4', '7050322'), + (50551, 516, 2493, 'not_attending', '2024-03-05 21:58:59', '2025-12-17 19:46:32', 'bdzYJ5y4', '7052471'), + (50552, 516, 2494, 'not_attending', '2024-03-05 21:58:56', '2025-12-17 19:46:32', 'bdzYJ5y4', '7052472'), + (50553, 516, 2495, 'attending', '2024-03-04 18:26:04', '2025-12-17 19:46:32', 'bdzYJ5y4', '7052982'), + (50554, 516, 2498, 'maybe', '2024-03-17 19:56:50', '2025-12-17 19:46:33', 'bdzYJ5y4', '7057662'), + (50555, 516, 2499, 'attending', '2024-03-04 19:39:36', '2025-12-17 19:46:43', 'bdzYJ5y4', '7057804'), + (50556, 516, 2504, 'not_attending', '2024-03-21 22:28:17', '2025-12-17 19:46:33', 'bdzYJ5y4', '7063296'), + (50557, 516, 2505, 'not_attending', '2024-03-21 21:22:42', '2025-12-17 19:46:33', 'bdzYJ5y4', '7069163'), + (50558, 516, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'bdzYJ5y4', '7072824'), + (50559, 516, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'bdzYJ5y4', '7074348'), + (50560, 516, 2509, 'not_attending', '2024-03-22 17:43:39', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074349'), + (50561, 516, 2510, 'maybe', '2024-03-18 02:18:48', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074350'), + (50562, 516, 2511, 'not_attending', '2024-04-04 23:55:12', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074351'), + (50563, 516, 2512, 'not_attending', '2024-04-01 19:11:54', '2025-12-17 19:46:33', 'bdzYJ5y4', '7074352'), + (50564, 516, 2513, 'not_attending', '2024-04-15 11:35:07', '2025-12-17 19:46:34', 'bdzYJ5y4', '7074353'), + (50565, 516, 2517, 'not_attending', '2024-06-28 14:24:34', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074357'), + (50566, 516, 2519, 'not_attending', '2024-05-24 16:41:39', '2025-12-17 19:46:36', 'bdzYJ5y4', '7074359'), + (50567, 516, 2521, 'not_attending', '2024-06-13 17:16:39', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074361'), + (50568, 516, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074364'), + (50569, 516, 2525, 'not_attending', '2024-06-10 20:07:23', '2025-12-17 19:46:28', 'bdzYJ5y4', '7074365'), + (50570, 516, 2526, 'not_attending', '2024-07-27 14:02:14', '2025-12-17 19:46:31', 'bdzYJ5y4', '7074366'), + (50571, 516, 2527, 'not_attending', '2024-06-27 17:03:48', '2025-12-17 19:46:29', 'bdzYJ5y4', '7074367'), + (50572, 516, 2536, 'not_attending', '2024-03-17 19:56:46', '2025-12-17 19:46:33', 'bdzYJ5y4', '7077689'), + (50573, 516, 2537, 'not_attending', '2024-03-17 19:57:02', '2025-12-17 19:46:33', 'bdzYJ5y4', '7085484'), + (50574, 516, 2538, 'not_attending', '2024-03-17 19:57:09', '2025-12-17 19:46:33', 'bdzYJ5y4', '7085485'), + (50575, 516, 2539, 'maybe', '2024-03-18 02:18:23', '2025-12-17 19:46:33', 'bdzYJ5y4', '7085486'), + (50576, 516, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'bdzYJ5y4', '7089267'), + (50577, 516, 2541, 'not_attending', '2024-03-17 19:56:40', '2025-12-17 19:46:33', 'bdzYJ5y4', '7089404'), + (50578, 516, 2542, 'not_attending', '2024-03-18 02:18:59', '2025-12-17 19:46:33', 'bdzYJ5y4', '7090025'), + (50579, 516, 2544, 'not_attending', '2024-03-22 17:44:14', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096941'), + (50580, 516, 2545, 'not_attending', '2024-03-22 17:43:51', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096942'), + (50581, 516, 2546, 'not_attending', '2024-03-22 17:43:54', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096944'), + (50582, 516, 2547, 'not_attending', '2024-03-22 17:43:40', '2025-12-17 19:46:33', 'bdzYJ5y4', '7096945'), + (50583, 516, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'bdzYJ5y4', '7098747'), + (50584, 516, 2549, 'not_attending', '2024-03-24 20:13:18', '2025-12-17 19:46:33', 'bdzYJ5y4', '7099657'), + (50585, 516, 2551, 'not_attending', '2024-03-31 02:23:27', '2025-12-17 19:46:33', 'bdzYJ5y4', '7109912'), + (50586, 516, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'bdzYJ5y4', '7113468'), + (50587, 516, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'bdzYJ5y4', '7114856'), + (50588, 516, 2555, 'not_attending', '2024-04-01 19:12:06', '2025-12-17 19:46:34', 'bdzYJ5y4', '7114951'), + (50589, 516, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'bdzYJ5y4', '7114955'), + (50590, 516, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'bdzYJ5y4', '7114956'), + (50591, 516, 2558, 'attending', '2024-04-04 23:55:50', '2025-12-17 19:46:35', 'bdzYJ5y4', '7114957'), + (50592, 516, 2559, 'not_attending', '2024-04-01 19:11:52', '2025-12-17 19:46:33', 'bdzYJ5y4', '7115254'), + (50593, 516, 2563, 'not_attending', '2024-04-04 23:55:16', '2025-12-17 19:46:33', 'bdzYJ5y4', '7134734'), + (50594, 516, 2564, 'not_attending', '2024-04-04 23:55:09', '2025-12-17 19:46:33', 'bdzYJ5y4', '7134735'), + (50595, 516, 2566, 'not_attending', '2024-04-15 11:35:04', '2025-12-17 19:46:34', 'bdzYJ5y4', '7140664'), + (50596, 516, 2567, 'not_attending', '2024-04-04 23:55:04', '2025-12-17 19:46:33', 'bdzYJ5y4', '7144962'), + (50597, 516, 2568, 'maybe', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'bdzYJ5y4', '7153615'), + (50598, 516, 2571, 'not_attending', '2024-04-08 13:39:25', '2025-12-17 19:46:33', 'bdzYJ5y4', '7159484'), + (50599, 516, 2573, 'not_attending', '2024-04-15 11:35:01', '2025-12-17 19:46:34', 'bdzYJ5y4', '7160612'), + (50600, 516, 2576, 'not_attending', '2024-04-22 21:24:46', '2025-12-17 19:46:34', 'bdzYJ5y4', '7164538'), + (50601, 516, 2578, 'maybe', '2024-04-11 15:34:10', '2025-12-17 19:46:34', 'bdzYJ5y4', '7167016'), + (50602, 516, 2581, 'not_attending', '2024-04-22 21:24:33', '2025-12-17 19:46:34', 'bdzYJ5y4', '7169048'), + (50603, 516, 2582, 'maybe', '2024-04-15 11:35:08', '2025-12-17 19:46:34', 'bdzYJ5y4', '7169765'), + (50604, 516, 2583, 'not_attending', '2024-04-15 11:34:57', '2025-12-17 19:46:34', 'bdzYJ5y4', '7172946'), + (50605, 516, 2585, 'maybe', '2024-04-22 21:24:37', '2025-12-17 19:46:34', 'bdzYJ5y4', '7175828'), + (50606, 516, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'bdzYJ5y4', '7178446'), + (50607, 516, 2594, 'maybe', '2024-04-22 21:24:25', '2025-12-17 19:46:34', 'bdzYJ5y4', '7182117'), + (50608, 516, 2595, 'maybe', '2024-04-22 21:24:43', '2025-12-17 19:46:34', 'bdzYJ5y4', '7182252'), + (50609, 516, 2596, 'not_attending', '2024-04-22 21:24:49', '2025-12-17 19:46:34', 'bdzYJ5y4', '7183788'), + (50610, 516, 2597, 'not_attending', '2024-04-22 13:32:05', '2025-12-17 19:46:34', 'bdzYJ5y4', '7186726'), + (50611, 516, 2598, 'not_attending', '2024-04-22 21:24:27', '2025-12-17 19:46:34', 'bdzYJ5y4', '7186731'), + (50612, 516, 2599, 'not_attending', '2024-04-22 21:24:28', '2025-12-17 19:46:34', 'bdzYJ5y4', '7189372'), + (50613, 516, 2600, 'not_attending', '2024-04-30 02:59:31', '2025-12-17 19:46:35', 'bdzYJ5y4', '7196794'), + (50614, 516, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'bdzYJ5y4', '7220467'), + (50615, 516, 2604, 'not_attending', '2024-05-24 16:41:36', '2025-12-17 19:46:36', 'bdzYJ5y4', '7225670'), + (50616, 516, 2605, 'not_attending', '2024-05-02 15:23:03', '2025-12-17 19:46:35', 'bdzYJ5y4', '7229243'), + (50617, 516, 2607, 'not_attending', '2024-04-30 02:59:42', '2025-12-17 19:46:35', 'bdzYJ5y4', '7240136'), + (50618, 516, 2609, 'not_attending', '2024-04-30 02:59:18', '2025-12-17 19:46:35', 'bdzYJ5y4', '7240354'), + (50619, 516, 2610, 'not_attending', '2024-05-03 11:29:46', '2025-12-17 19:46:35', 'bdzYJ5y4', '7241797'), + (50620, 516, 2612, 'maybe', '2024-05-05 21:30:25', '2025-12-17 19:46:35', 'bdzYJ5y4', '7247643'), + (50621, 516, 2613, 'not_attending', '2024-05-05 21:30:32', '2025-12-17 19:46:35', 'bdzYJ5y4', '7247644'), + (50622, 516, 2614, 'not_attending', '2024-05-08 17:10:16', '2025-12-17 19:46:35', 'bdzYJ5y4', '7247645'), + (50623, 516, 2616, 'not_attending', '2024-05-05 21:30:02', '2025-12-17 19:46:35', 'bdzYJ5y4', '7250296'), + (50624, 516, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'bdzYJ5y4', '7251633'), + (50625, 516, 2618, 'not_attending', '2024-05-05 21:30:22', '2025-12-17 19:46:35', 'bdzYJ5y4', '7251685'), + (50626, 516, 2620, 'not_attending', '2024-05-11 00:57:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7258097'), + (50627, 516, 2622, 'not_attending', '2024-05-10 21:03:34', '2025-12-17 19:46:35', 'bdzYJ5y4', '7262064'), + (50628, 516, 2624, 'maybe', '2024-05-11 00:56:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7263301'), + (50629, 516, 2625, 'not_attending', '2024-05-11 00:57:32', '2025-12-17 19:46:35', 'bdzYJ5y4', '7263302'), + (50630, 516, 2626, 'attending', '2024-05-12 11:51:18', '2025-12-17 19:46:35', 'bdzYJ5y4', '7264723'), + (50631, 516, 2627, 'attending', '2024-05-12 11:51:21', '2025-12-17 19:46:35', 'bdzYJ5y4', '7264724'), + (50632, 516, 2628, 'attending', '2024-05-12 11:51:28', '2025-12-17 19:46:36', 'bdzYJ5y4', '7264725'), + (50633, 516, 2629, 'attending', '2024-05-12 11:51:30', '2025-12-17 19:46:28', 'bdzYJ5y4', '7264726'), + (50634, 516, 2636, 'maybe', '2024-05-21 21:35:57', '2025-12-17 19:46:35', 'bdzYJ5y4', '7270323'), + (50635, 516, 2637, 'maybe', '2024-05-21 21:35:59', '2025-12-17 19:46:35', 'bdzYJ5y4', '7270324'), + (50636, 516, 2640, 'not_attending', '2024-05-21 21:35:35', '2025-12-17 19:46:35', 'bdzYJ5y4', '7275331'), + (50637, 516, 2645, 'not_attending', '2024-05-21 21:35:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7279964'), + (50638, 516, 2646, 'not_attending', '2024-05-21 21:35:40', '2025-12-17 19:46:35', 'bdzYJ5y4', '7281768'), + (50639, 516, 2647, 'maybe', '2024-05-31 16:09:09', '2025-12-17 19:46:28', 'bdzYJ5y4', '7282057'), + (50640, 516, 2648, 'not_attending', '2024-05-21 21:35:36', '2025-12-17 19:46:35', 'bdzYJ5y4', '7282283'), + (50641, 516, 2650, 'not_attending', '2024-05-24 16:40:43', '2025-12-17 19:46:36', 'bdzYJ5y4', '7288199'), + (50642, 516, 2652, 'not_attending', '2024-06-01 00:09:58', '2025-12-17 19:46:36', 'bdzYJ5y4', '7288339'), + (50643, 516, 2655, 'not_attending', '2024-05-27 16:40:41', '2025-12-17 19:46:35', 'bdzYJ5y4', '7291225'), + (50644, 516, 2658, 'not_attending', '2024-06-01 21:32:57', '2025-12-17 19:46:36', 'bdzYJ5y4', '7298846'), + (50645, 516, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'bdzYJ5y4', '7302674'), + (50646, 516, 2671, 'not_attending', '2024-06-10 14:14:55', '2025-12-17 19:46:28', 'bdzYJ5y4', '7318256'), + (50647, 516, 2674, 'maybe', '2024-07-01 17:26:28', '2025-12-17 19:46:29', 'bdzYJ5y4', '7319480'), + (50648, 516, 2678, 'attending', '2024-06-10 10:40:48', '2025-12-17 19:46:28', 'bdzYJ5y4', '7319489'), + (50649, 516, 2679, 'not_attending', '2024-06-10 10:40:51', '2025-12-17 19:46:29', 'bdzYJ5y4', '7319490'), + (50650, 516, 2681, 'not_attending', '2024-06-10 14:14:51', '2025-12-17 19:46:28', 'bdzYJ5y4', '7320409'), + (50651, 516, 2682, 'not_attending', '2024-06-10 14:14:52', '2025-12-17 19:46:28', 'bdzYJ5y4', '7321862'), + (50652, 516, 2685, 'not_attending', '2024-06-12 08:35:06', '2025-12-17 19:46:28', 'bdzYJ5y4', '7322675'), + (50653, 516, 2686, 'not_attending', '2024-06-13 17:16:41', '2025-12-17 19:46:29', 'bdzYJ5y4', '7323802'), + (50654, 516, 2687, 'not_attending', '2024-06-12 08:35:04', '2025-12-17 19:46:28', 'bdzYJ5y4', '7324019'), + (50655, 516, 2688, 'attending', '2024-06-13 17:16:53', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324073'), + (50656, 516, 2689, 'not_attending', '2024-06-21 20:14:13', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324074'), + (50657, 516, 2690, 'attending', '2024-06-28 14:24:39', '2025-12-17 19:46:30', 'bdzYJ5y4', '7324075'), + (50658, 516, 2691, 'not_attending', '2024-06-28 14:24:42', '2025-12-17 19:46:30', 'bdzYJ5y4', '7324076'), + (50659, 516, 2692, 'maybe', '2024-06-29 13:49:14', '2025-12-17 19:46:30', 'bdzYJ5y4', '7324077'), + (50660, 516, 2693, 'not_attending', '2024-07-09 17:33:31', '2025-12-17 19:46:31', 'bdzYJ5y4', '7324078'), + (50661, 516, 2694, 'not_attending', '2024-07-09 17:33:34', '2025-12-17 19:46:31', 'bdzYJ5y4', '7324079'), + (50662, 516, 2695, 'attending', '2024-07-09 17:33:37', '2025-12-17 19:46:31', 'bdzYJ5y4', '7324080'), + (50663, 516, 2696, 'attending', '2024-07-09 17:33:39', '2025-12-17 19:46:32', 'bdzYJ5y4', '7324081'), + (50664, 516, 2697, 'not_attending', '2024-07-09 17:33:42', '2025-12-17 19:46:32', 'bdzYJ5y4', '7324082'), + (50665, 516, 2698, 'attending', '2024-08-13 17:33:19', '2025-12-17 19:46:24', 'bdzYJ5y4', '7324083'), + (50666, 516, 2701, 'not_attending', '2024-06-27 17:03:53', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324391'), + (50667, 516, 2705, 'not_attending', '2024-06-27 17:03:57', '2025-12-17 19:46:29', 'bdzYJ5y4', '7324944'), + (50668, 516, 2706, 'not_attending', '2024-06-13 17:16:36', '2025-12-17 19:46:28', 'bdzYJ5y4', '7324947'), + (50669, 516, 2707, 'not_attending', '2024-06-13 17:16:30', '2025-12-17 19:46:28', 'bdzYJ5y4', '7324952'), + (50670, 516, 2708, 'not_attending', '2024-06-14 08:21:58', '2025-12-17 19:46:28', 'bdzYJ5y4', '7325048'), + (50671, 516, 2709, 'maybe', '2024-06-19 11:03:31', '2025-12-17 19:46:29', 'bdzYJ5y4', '7325107'), + (50672, 516, 2710, 'not_attending', '2024-06-19 11:02:52', '2025-12-17 19:46:29', 'bdzYJ5y4', '7325108'), + (50673, 516, 2712, 'not_attending', '2024-07-31 15:35:19', '2025-12-17 19:46:31', 'bdzYJ5y4', '7326525'), + (50674, 516, 2716, 'not_attending', '2024-06-21 20:13:14', '2025-12-17 19:46:29', 'bdzYJ5y4', '7329096'), + (50675, 516, 2717, 'maybe', '2024-06-27 17:03:50', '2025-12-17 19:46:29', 'bdzYJ5y4', '7329149'), + (50676, 516, 2718, 'not_attending', '2024-06-19 11:02:48', '2025-12-17 19:46:28', 'bdzYJ5y4', '7330458'), + (50677, 516, 2721, 'not_attending', '2024-06-24 21:01:37', '2025-12-17 19:46:29', 'bdzYJ5y4', '7331456'), + (50678, 516, 2722, 'not_attending', '2024-07-08 22:27:21', '2025-12-17 19:46:29', 'bdzYJ5y4', '7331457'), + (50679, 516, 2723, 'not_attending', '2024-06-21 20:13:05', '2025-12-17 19:46:29', 'bdzYJ5y4', '7332389'), + (50680, 516, 2728, 'not_attending', '2024-06-21 20:13:16', '2025-12-17 19:46:29', 'bdzYJ5y4', '7334124'), + (50681, 516, 2732, 'not_attending', '2024-06-24 20:00:42', '2025-12-17 19:46:29', 'bdzYJ5y4', '7337207'), + (50682, 516, 2734, 'not_attending', '2024-06-27 17:04:04', '2025-12-17 19:46:29', 'bdzYJ5y4', '7339440'), + (50683, 516, 2737, 'not_attending', '2024-07-01 17:25:45', '2025-12-17 19:46:29', 'bdzYJ5y4', '7344070'), + (50684, 516, 2738, 'not_attending', '2024-07-01 17:25:59', '2025-12-17 19:46:29', 'bdzYJ5y4', '7344085'), + (50685, 516, 2740, 'maybe', '2024-07-01 17:25:42', '2025-12-17 19:46:29', 'bdzYJ5y4', '7344576'), + (50686, 516, 2741, 'not_attending', '2024-07-01 17:26:23', '2025-12-17 19:46:30', 'bdzYJ5y4', '7344592'), + (50687, 516, 2742, 'not_attending', '2024-07-01 17:25:48', '2025-12-17 19:46:29', 'bdzYJ5y4', '7345167'), + (50688, 516, 2746, 'not_attending', '2024-07-08 22:27:18', '2025-12-17 19:46:29', 'bdzYJ5y4', '7348713'), + (50689, 516, 2749, 'not_attending', '2024-07-08 22:27:11', '2025-12-17 19:46:29', 'bdzYJ5y4', '7355496'), + (50690, 516, 2753, 'attending', '2024-07-08 22:26:49', '2025-12-17 19:46:30', 'bdzYJ5y4', '7355538'), + (50691, 516, 2758, 'not_attending', '2024-07-16 02:31:42', '2025-12-17 19:46:30', 'bdzYJ5y4', '7358837'), + (50692, 516, 2764, 'not_attending', '2024-07-26 12:20:16', '2025-12-17 19:46:30', 'bdzYJ5y4', '7363595'), + (50693, 516, 2766, 'not_attending', '2024-07-27 14:02:11', '2025-12-17 19:46:30', 'bdzYJ5y4', '7363643'), + (50694, 516, 2773, 'not_attending', '2024-07-26 12:21:10', '2025-12-17 19:46:31', 'bdzYJ5y4', '7368605'), + (50695, 516, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'bdzYJ5y4', '7368606'), + (50696, 516, 2780, 'not_attending', '2024-07-26 12:20:12', '2025-12-17 19:46:30', 'bdzYJ5y4', '7371849'), + (50697, 516, 2781, 'not_attending', '2024-07-26 12:20:24', '2025-12-17 19:46:30', 'bdzYJ5y4', '7373194'), + (50698, 516, 2782, 'maybe', '2024-07-27 14:02:05', '2025-12-17 19:46:30', 'bdzYJ5y4', '7376725'), + (50699, 516, 2784, 'not_attending', '2024-07-31 15:35:15', '2025-12-17 19:46:31', 'bdzYJ5y4', '7380872'), + (50700, 516, 2787, 'not_attending', '2024-08-26 12:26:53', '2025-12-17 19:46:32', 'bdzYJ5y4', '7381568'), + (50701, 516, 2789, 'not_attending', '2024-08-05 01:06:10', '2025-12-17 19:46:31', 'bdzYJ5y4', '7384047'), + (50702, 516, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'bdzYJ5y4', '7397462'), + (50703, 516, 2813, 'not_attending', '2024-09-05 16:30:00', '2025-12-17 19:46:24', 'bdzYJ5y4', '7424105'), + (50704, 516, 2818, 'not_attending', '2024-10-12 19:57:58', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424272'), + (50705, 516, 2819, 'not_attending', '2024-10-14 20:45:34', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424273'), + (50706, 516, 2821, 'maybe', '2024-09-14 00:31:29', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424275'), + (50707, 516, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'bdzYJ5y4', '7424276'), + (50708, 516, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'bdzYJ5y4', '7432751'), + (50709, 516, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'bdzYJ5y4', '7432752'), + (50710, 516, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'bdzYJ5y4', '7432753'), + (50711, 516, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432754'), + (50712, 516, 2828, 'maybe', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432755'), + (50713, 516, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432756'), + (50714, 516, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432758'), + (50715, 516, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'bdzYJ5y4', '7432759'), + (50716, 516, 2832, 'not_attending', '2024-09-10 11:48:27', '2025-12-17 19:46:24', 'bdzYJ5y4', '7433324'), + (50717, 516, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'bdzYJ5y4', '7433834'), + (50718, 516, 2834, 'not_attending', '2024-09-12 12:54:34', '2025-12-17 19:46:25', 'bdzYJ5y4', '7433852'), + (50719, 516, 2835, 'not_attending', '2024-09-12 12:54:27', '2025-12-17 19:46:24', 'bdzYJ5y4', '7437354'), + (50720, 516, 2853, 'not_attending', '2024-11-06 22:45:39', '2025-12-17 19:46:26', 'bdzYJ5y4', '7465683'), + (50721, 516, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'bdzYJ5y4', '7470197'), + (50722, 516, 2880, 'not_attending', '2024-10-12 19:58:00', '2025-12-17 19:46:26', 'bdzYJ5y4', '7636316'), + (50723, 516, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'bdzYJ5y4', '7685613'), + (50724, 516, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'bdzYJ5y4', '7688194'), + (50725, 516, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'bdzYJ5y4', '7688196'), + (50726, 516, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'bdzYJ5y4', '7688289'), + (50727, 516, 2917, 'not_attending', '2024-11-20 15:59:55', '2025-12-17 19:46:28', 'bdzYJ5y4', '7699878'), + (50728, 516, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'bdzYJ5y4', '7704043'), + (50729, 516, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'bdzYJ5y4', '7712467'), + (50730, 516, 2925, 'maybe', '2024-11-30 18:52:36', '2025-12-17 19:46:21', 'bdzYJ5y4', '7713584'), + (50731, 516, 2926, 'attending', '2024-11-30 18:52:51', '2025-12-17 19:46:21', 'bdzYJ5y4', '7713585'), + (50732, 516, 2927, 'not_attending', '2024-11-30 18:52:42', '2025-12-17 19:46:22', 'bdzYJ5y4', '7713586'), + (50733, 516, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'bdzYJ5y4', '7738518'), + (50734, 516, 2963, 'attending', '2024-12-27 17:32:28', '2025-12-17 19:46:22', 'bdzYJ5y4', '7750636'), + (50735, 516, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'bdzYJ5y4', '7796540'), + (50736, 516, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'bdzYJ5y4', '7796541'), + (50737, 516, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'bdzYJ5y4', '7796542'), + (50738, 516, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'bdzYJ5y4', '7825913'), + (50739, 516, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'bdzYJ5y4', '7826209'), + (50740, 516, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'bdzYJ5y4', '7834742'), + (50741, 516, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'bdzYJ5y4', '7842108'), + (50742, 516, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'bdzYJ5y4', '7842902'), + (50743, 516, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'bdzYJ5y4', '7842903'), + (50744, 516, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'bdzYJ5y4', '7842904'), + (50745, 516, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'bdzYJ5y4', '7842905'), + (50746, 516, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'bdzYJ5y4', '7855719'), + (50747, 516, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'bdzYJ5y4', '7860683'), + (50748, 516, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'bdzYJ5y4', '7860684'), + (50749, 516, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'bdzYJ5y4', '7866095'), + (50750, 516, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'bdzYJ5y4', '7869170'), + (50751, 516, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'bdzYJ5y4', '7869188'), + (50752, 516, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'bdzYJ5y4', '7869201'), + (50753, 516, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'bdzYJ5y4', '7877465'), + (50754, 516, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'bdzYJ5y4', '7888250'), + (50755, 516, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'bdzYJ5y4', '7904777'), + (50756, 516, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'bdzYJ5y4', '8349164'), + (50757, 516, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'bdzYJ5y4', '8349545'), + (50758, 516, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'bdzYJ5y4', '8368028'), + (50759, 516, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'bdzYJ5y4', '8368029'), + (50760, 516, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'bdzYJ5y4', '8388462'), + (50761, 516, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'bdzYJ5y4', '8400273'), + (50762, 516, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'bdzYJ5y4', '8400275'), + (50763, 516, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'bdzYJ5y4', '8400276'), + (50764, 516, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'bdzYJ5y4', '8404977'), + (50765, 516, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'bdzYJ5y4', '8430783'), + (50766, 516, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'bdzYJ5y4', '8430784'), + (50767, 516, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'bdzYJ5y4', '8430799'), + (50768, 516, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'bdzYJ5y4', '8430800'), + (50769, 516, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'bdzYJ5y4', '8430801'), + (50770, 516, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'bdzYJ5y4', '8438709'), + (50771, 516, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'bdzYJ5y4', '8457738'), + (50772, 516, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'bdzYJ5y4', '8459566'), + (50773, 516, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'bdzYJ5y4', '8459567'), + (50774, 516, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'bdzYJ5y4', '8461032'), + (50775, 516, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'bdzYJ5y4', '8477877'), + (50776, 516, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'bdzYJ5y4', '8485688'), + (50777, 516, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'bdzYJ5y4', '8490587'), + (50778, 516, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'bdzYJ5y4', '8493552'), + (50779, 516, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'bdzYJ5y4', '8493553'), + (50780, 516, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'bdzYJ5y4', '8493554'), + (50781, 516, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'bdzYJ5y4', '8493555'), + (50782, 516, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'bdzYJ5y4', '8493556'), + (50783, 516, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'bdzYJ5y4', '8493557'), + (50784, 516, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'bdzYJ5y4', '8493558'), + (50785, 516, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'bdzYJ5y4', '8493559'), + (50786, 516, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'bdzYJ5y4', '8493560'), + (50787, 516, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'bdzYJ5y4', '8493561'), + (50788, 516, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'bdzYJ5y4', '8493572'), + (50789, 516, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'bdzYJ5y4', '8540725'), + (50790, 516, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'bdzYJ5y4', '8555421'), + (50791, 517, 400, 'attending', '2021-02-05 00:03:15', '2025-12-17 19:47:50', 'QdJ60Jod', '3236455'), + (50792, 517, 579, 'attending', '2021-02-05 19:23:48', '2025-12-17 19:47:50', 'QdJ60Jod', '3440978'), + (50793, 517, 598, 'maybe', '2021-02-09 17:06:23', '2025-12-17 19:47:50', 'QdJ60Jod', '3468003'), + (50794, 517, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'QdJ60Jod', '3468125'), + (50795, 517, 602, 'maybe', '2021-02-14 00:05:49', '2025-12-17 19:47:50', 'QdJ60Jod', '3470303'), + (50796, 517, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'QdJ60Jod', '3470305'), + (50797, 517, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'QdJ60Jod', '3470991'), + (50798, 517, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'QdJ60Jod', '3517815'), + (50799, 517, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'QdJ60Jod', '3517816'), + (50800, 517, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'QdJ60Jod', '3523941'), + (50801, 517, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'QdJ60Jod', '3533850'), + (50802, 517, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'QdJ60Jod', '3536632'), + (50803, 517, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'QdJ60Jod', '3536656'), + (50804, 517, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'QdJ60Jod', '3539916'), + (50805, 517, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'QdJ60Jod', '3539917'), + (50806, 517, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'QdJ60Jod', '3539918'), + (50807, 517, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'QdJ60Jod', '3539919'), + (50808, 517, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'QdJ60Jod', '3539920'), + (50809, 517, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'QdJ60Jod', '3539921'), + (50810, 517, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'QdJ60Jod', '3539922'), + (50811, 517, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'QdJ60Jod', '3539923'), + (50812, 517, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'QdJ60Jod', '3539927'), + (50813, 517, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'QdJ60Jod', '3582734'), + (50814, 517, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'QdJ60Jod', '3583262'), + (50815, 517, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'QdJ60Jod', '3619523'), + (50816, 517, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'QdJ60Jod', '3661369'), + (50817, 517, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'QdJ60Jod', '3674262'), + (50818, 517, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'QdJ60Jod', '3677402'), + (50819, 517, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'QdJ60Jod', '3730212'), + (50820, 517, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ60Jod', '6045684'), + (50821, 518, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj58L1Vd', '6045684'), + (50822, 519, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Anaer1Jm', '6361710'), + (50823, 519, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Anaer1Jm', '6361711'), + (50824, 519, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Anaer1Jm', '6361713'), + (50825, 519, 2233, 'maybe', '2023-08-23 12:55:54', '2025-12-17 19:46:55', 'Anaer1Jm', '6377590'), + (50826, 519, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Anaer1Jm', '6382573'), + (50827, 519, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Anaer1Jm', '6388604'), + (50828, 519, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Anaer1Jm', '6394629'), + (50829, 519, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Anaer1Jm', '6394631'), + (50830, 519, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'Anaer1Jm', '6431478'), + (50831, 520, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQp7J8m', '5426882'), + (50832, 520, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ArQp7J8m', '5441125'), + (50833, 520, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ArQp7J8m', '5441126'), + (50834, 520, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ArQp7J8m', '5441128'), + (50835, 520, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQp7J8m', '5446643'), + (50836, 520, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'ArQp7J8m', '5449068'), + (50837, 520, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQp7J8m', '5453325'), + (50838, 520, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQp7J8m', '5454516'), + (50839, 520, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQp7J8m', '5454605'), + (50840, 520, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQp7J8m', '5455037'), + (50841, 520, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQp7J8m', '5461278'), + (50842, 520, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQp7J8m', '5469480'), + (50843, 520, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQp7J8m', '5471073'), + (50844, 520, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'ArQp7J8m', '5474663'), + (50845, 520, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQp7J8m', '5482022'), + (50846, 520, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQp7J8m', '5482793'), + (50847, 520, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQp7J8m', '5488912'), + (50848, 520, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQp7J8m', '5492192'), + (50849, 520, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQp7J8m', '5493139'), + (50850, 520, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQp7J8m', '5493200'), + (50851, 520, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQp7J8m', '5502188'), + (50852, 520, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQp7J8m', '6045684'), + (50853, 521, 406, 'attending', '2021-03-29 17:36:03', '2025-12-17 19:47:44', '6AXWk10m', '3236464'), + (50854, 521, 641, 'attending', '2021-04-02 02:51:09', '2025-12-17 19:47:44', '6AXWk10m', '3539916'), + (50855, 521, 642, 'attending', '2021-04-04 02:26:20', '2025-12-17 19:47:44', '6AXWk10m', '3539917'), + (50856, 521, 643, 'attending', '2021-04-15 16:05:25', '2025-12-17 19:47:45', '6AXWk10m', '3539918'), + (50857, 521, 644, 'attending', '2021-04-17 18:48:57', '2025-12-17 19:47:45', '6AXWk10m', '3539919'), + (50858, 521, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '6AXWk10m', '3539920'), + (50859, 521, 646, 'attending', '2021-05-14 18:19:06', '2025-12-17 19:47:46', '6AXWk10m', '3539921'), + (50860, 521, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '6AXWk10m', '3539922'), + (50861, 521, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '6AXWk10m', '3539923'), + (50862, 521, 685, 'attending', '2021-04-12 22:00:14', '2025-12-17 19:47:44', '6AXWk10m', '3551564'), + (50863, 521, 706, 'attending', '2021-04-18 17:45:11', '2025-12-17 19:47:45', '6AXWk10m', '3582734'), + (50864, 521, 707, 'attending', '2021-04-25 18:45:12', '2025-12-17 19:47:46', '6AXWk10m', '3583262'), + (50865, 521, 719, 'attending', '2021-04-08 18:38:20', '2025-12-17 19:47:44', '6AXWk10m', '3635405'), + (50866, 521, 724, 'attending', '2021-05-09 21:02:05', '2025-12-17 19:47:46', '6AXWk10m', '3661369'), + (50867, 521, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXWk10m', '3674262'), + (50868, 521, 734, 'not_attending', '2021-04-07 17:59:04', '2025-12-17 19:47:44', '6AXWk10m', '3676806'), + (50869, 521, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXWk10m', '3677402'), + (50870, 521, 736, 'attending', '2021-04-09 17:05:21', '2025-12-17 19:47:44', '6AXWk10m', '3677701'), + (50871, 521, 737, 'attending', '2021-04-06 17:41:36', '2025-12-17 19:47:44', '6AXWk10m', '3679349'), + (50872, 521, 752, 'attending', '2021-04-15 16:06:09', '2025-12-17 19:47:44', '6AXWk10m', '3699422'), + (50873, 521, 774, 'attending', '2021-04-21 17:13:53', '2025-12-17 19:47:45', '6AXWk10m', '3730212'), + (50874, 521, 792, 'maybe', '2021-05-10 18:40:30', '2025-12-17 19:47:46', '6AXWk10m', '3793156'), + (50875, 521, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXWk10m', '3974109'), + (50876, 521, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXWk10m', '3975311'), + (50877, 521, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXWk10m', '3975312'), + (50878, 521, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXWk10m', '3994992'), + (50879, 521, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXWk10m', '4014338'), + (50880, 521, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXWk10m', '4021848'), + (50881, 521, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXWk10m', '4136744'), + (50882, 521, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXWk10m', '4136937'), + (50883, 521, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXWk10m', '4136938'), + (50884, 521, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXWk10m', '4136947'), + (50885, 521, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXWk10m', '4210314'), + (50886, 521, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXWk10m', '4225444'), + (50887, 521, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXWk10m', '4239259'), + (50888, 521, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXWk10m', '4240316'), + (50889, 521, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXWk10m', '4240317'), + (50890, 521, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXWk10m', '4240318'), + (50891, 521, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXWk10m', '4250163'), + (50892, 521, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXWk10m', '4275957'), + (50893, 521, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXWk10m', '4277819'), + (50894, 521, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXWk10m', '4301723'), + (50895, 521, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '6AXWk10m', '4302093'), + (50896, 521, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '6AXWk10m', '4345519'), + (50897, 521, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXWk10m', '6045684'), + (50898, 522, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', 'ndae8EZd', '4136938'), + (50899, 522, 872, 'maybe', '2021-07-21 16:32:31', '2025-12-17 19:47:40', 'ndae8EZd', '4136947'), + (50900, 522, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndae8EZd', '4210314'), + (50901, 522, 887, 'not_attending', '2021-07-15 16:39:51', '2025-12-17 19:47:39', 'ndae8EZd', '4225444'), + (50902, 522, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', 'ndae8EZd', '4229418'), + (50903, 522, 894, 'attending', '2021-07-20 11:25:33', '2025-12-17 19:47:39', 'ndae8EZd', '4229423'), + (50904, 522, 900, 'attending', '2021-07-21 11:37:26', '2025-12-17 19:47:40', 'ndae8EZd', '4240316'), + (50905, 522, 901, 'attending', '2021-07-31 19:34:38', '2025-12-17 19:47:40', 'ndae8EZd', '4240317'), + (50906, 522, 902, 'attending', '2021-08-07 17:46:36', '2025-12-17 19:47:41', 'ndae8EZd', '4240318'), + (50907, 522, 903, 'attending', '2021-08-13 21:11:01', '2025-12-17 19:47:42', 'ndae8EZd', '4240320'), + (50908, 522, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndae8EZd', '4275957'), + (50909, 522, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndae8EZd', '4277819'), + (50910, 522, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'ndae8EZd', '4292773'), + (50911, 522, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndae8EZd', '4301723'), + (50912, 522, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ndae8EZd', '4302093'), + (50913, 522, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndae8EZd', '4304151'), + (50914, 522, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndae8EZd', '4345519'), + (50915, 522, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndae8EZd', '4356801'), + (50916, 522, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndae8EZd', '4358025'), + (50917, 522, 973, 'not_attending', '2021-08-21 22:14:53', '2025-12-17 19:47:42', 'ndae8EZd', '4366186'), + (50918, 522, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndae8EZd', '4366187'), + (50919, 522, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndae8EZd', '4402823'), + (50920, 522, 990, 'attending', '2021-08-31 13:55:07', '2025-12-17 19:47:43', 'ndae8EZd', '4420735'), + (50921, 522, 991, 'attending', '2021-09-07 23:01:43', '2025-12-17 19:47:43', 'ndae8EZd', '4420738'), + (50922, 522, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndae8EZd', '4420739'), + (50923, 522, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndae8EZd', '4420741'), + (50924, 522, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndae8EZd', '4420744'), + (50925, 522, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndae8EZd', '4420747'), + (50926, 522, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndae8EZd', '4420748'), + (50927, 522, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndae8EZd', '4420749'), + (50928, 522, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndae8EZd', '4461883'), + (50929, 522, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndae8EZd', '4508342'), + (50930, 522, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndae8EZd', '4568602'), + (50931, 522, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndae8EZd', '6045684'), + (50932, 523, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBnqEwvd', '6045684'), + (50933, 524, 1407, 'not_attending', '2022-06-03 10:41:39', '2025-12-17 19:47:30', 'dVbj3vZd', '5363695'), + (50934, 524, 1415, 'attending', '2022-05-31 04:54:33', '2025-12-17 19:47:30', 'dVbj3vZd', '5368973'), + (50935, 524, 1419, 'not_attending', '2022-06-08 21:50:53', '2025-12-17 19:47:30', 'dVbj3vZd', '5373081'), + (50936, 524, 1421, 'attending', '2022-05-30 21:52:07', '2025-12-17 19:47:30', 'dVbj3vZd', '5374885'), + (50937, 524, 1423, 'not_attending', '2022-06-03 10:42:40', '2025-12-17 19:47:17', 'dVbj3vZd', '5375727'), + (50938, 524, 1431, 'attending', '2022-05-31 00:26:05', '2025-12-17 19:47:30', 'dVbj3vZd', '5389605'), + (50939, 524, 1432, 'attending', '2022-05-30 21:34:41', '2025-12-17 19:47:30', 'dVbj3vZd', '5391566'), + (50940, 524, 1434, 'not_attending', '2022-06-01 10:53:33', '2025-12-17 19:47:30', 'dVbj3vZd', '5393861'), + (50941, 524, 1435, 'attending', '2022-06-01 10:53:18', '2025-12-17 19:47:30', 'dVbj3vZd', '5394015'), + (50942, 524, 1436, 'attending', '2022-06-01 05:35:31', '2025-12-17 19:47:30', 'dVbj3vZd', '5394292'), + (50943, 524, 1440, 'attending', '2022-06-06 17:22:57', '2025-12-17 19:47:30', 'dVbj3vZd', '5396080'), + (50944, 524, 1442, 'attending', '2022-06-03 02:48:19', '2025-12-17 19:47:17', 'dVbj3vZd', '5397265'), + (50945, 524, 1451, 'not_attending', '2022-06-17 22:46:23', '2025-12-17 19:47:17', 'dVbj3vZd', '5403967'), + (50946, 524, 1456, 'attending', '2022-06-10 06:04:02', '2025-12-17 19:47:17', 'dVbj3vZd', '5404779'), + (50947, 524, 1458, 'not_attending', '2022-06-15 22:30:07', '2025-12-17 19:47:17', 'dVbj3vZd', '5404786'), + (50948, 524, 1462, 'not_attending', '2022-06-10 18:03:05', '2025-12-17 19:47:17', 'dVbj3vZd', '5405203'), + (50949, 524, 1476, 'not_attending', '2022-06-19 17:13:52', '2025-12-17 19:47:17', 'dVbj3vZd', '5408130'), + (50950, 524, 1478, 'not_attending', '2022-06-25 06:27:20', '2025-12-17 19:47:19', 'dVbj3vZd', '5408794'), + (50951, 524, 1479, 'attending', '2022-06-17 02:04:50', '2025-12-17 19:47:17', 'dVbj3vZd', '5410322'), + (50952, 524, 1480, 'not_attending', '2022-06-23 17:07:05', '2025-12-17 19:47:19', 'dVbj3vZd', '5411699'), + (50953, 524, 1482, 'attending', '2022-06-19 10:38:57', '2025-12-17 19:47:19', 'dVbj3vZd', '5412550'), + (50954, 524, 1484, 'not_attending', '2022-06-23 06:23:52', '2025-12-17 19:47:17', 'dVbj3vZd', '5415046'), + (50955, 524, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVbj3vZd', '5422086'), + (50956, 524, 1498, 'not_attending', '2022-07-02 22:12:12', '2025-12-17 19:47:19', 'dVbj3vZd', '5422406'), + (50957, 524, 1502, 'not_attending', '2022-07-14 06:17:03', '2025-12-17 19:47:19', 'dVbj3vZd', '5424565'), + (50958, 524, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVbj3vZd', '5426882'), + (50959, 524, 1505, 'attending', '2022-07-06 16:02:01', '2025-12-17 19:47:19', 'dVbj3vZd', '5427083'), + (50960, 524, 1511, 'not_attending', '2022-07-09 16:36:42', '2025-12-17 19:47:19', 'dVbj3vZd', '5437733'), + (50961, 524, 1513, 'attending', '2022-07-14 06:15:56', '2025-12-17 19:47:19', 'dVbj3vZd', '5441125'), + (50962, 524, 1514, 'attending', '2022-07-18 14:18:26', '2025-12-17 19:47:20', 'dVbj3vZd', '5441126'), + (50963, 524, 1515, 'not_attending', '2022-08-06 16:30:18', '2025-12-17 19:47:21', 'dVbj3vZd', '5441128'), + (50964, 524, 1516, 'attending', '2022-08-20 10:50:16', '2025-12-17 19:47:23', 'dVbj3vZd', '5441129'), + (50965, 524, 1517, 'attending', '2022-08-15 17:56:42', '2025-12-17 19:47:23', 'dVbj3vZd', '5441130'), + (50966, 524, 1518, 'attending', '2022-08-22 11:51:51', '2025-12-17 19:47:24', 'dVbj3vZd', '5441131'), + (50967, 524, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVbj3vZd', '5441132'), + (50968, 524, 1528, 'maybe', '2022-07-14 06:15:44', '2025-12-17 19:47:20', 'dVbj3vZd', '5446643'), + (50969, 524, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVbj3vZd', '5453325'), + (50970, 524, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVbj3vZd', '5454516'), + (50971, 524, 1544, 'attending', '2022-09-13 15:14:51', '2025-12-17 19:47:11', 'dVbj3vZd', '5454517'), + (50972, 524, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVbj3vZd', '5454605'), + (50973, 524, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVbj3vZd', '5455037'), + (50974, 524, 1553, 'not_attending', '2022-07-21 20:31:48', '2025-12-17 19:47:20', 'dVbj3vZd', '5455164'), + (50975, 524, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVbj3vZd', '5461278'), + (50976, 524, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVbj3vZd', '5469480'), + (50977, 524, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVbj3vZd', '5471073'), + (50978, 524, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dVbj3vZd', '5474663'), + (50979, 524, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVbj3vZd', '5482022'), + (50980, 524, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVbj3vZd', '5482793'), + (50981, 524, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVbj3vZd', '5488912'), + (50982, 524, 1582, 'attending', '2022-08-10 05:32:52', '2025-12-17 19:47:23', 'dVbj3vZd', '5492001'), + (50983, 524, 1584, 'attending', '2022-08-10 05:32:56', '2025-12-17 19:47:23', 'dVbj3vZd', '5492004'), + (50984, 524, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVbj3vZd', '5492192'), + (50985, 524, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVbj3vZd', '5493139'), + (50986, 524, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVbj3vZd', '5493200'), + (50987, 524, 1593, 'attending', '2022-08-14 10:26:29', '2025-12-17 19:47:22', 'dVbj3vZd', '5494043'), + (50988, 524, 1595, 'not_attending', '2022-08-11 15:24:48', '2025-12-17 19:47:22', 'dVbj3vZd', '5495736'), + (50989, 524, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVbj3vZd', '5502188'), + (50990, 524, 1607, 'attending', '2022-08-20 18:42:53', '2025-12-17 19:47:23', 'dVbj3vZd', '5504589'), + (50991, 524, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVbj3vZd', '5505059'), + (50992, 524, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVbj3vZd', '5509055'), + (50993, 524, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVbj3vZd', '5512862'), + (50994, 524, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVbj3vZd', '5513985'), + (50995, 524, 1626, 'attending', '2022-08-26 18:44:43', '2025-12-17 19:47:11', 'dVbj3vZd', '5519981'), + (50996, 524, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVbj3vZd', '5522550'), + (50997, 524, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVbj3vZd', '5534683'), + (50998, 524, 1631, 'attending', '2022-08-27 06:52:16', '2025-12-17 19:47:23', 'dVbj3vZd', '5534684'), + (50999, 524, 1633, 'not_attending', '2022-08-28 18:44:09', '2025-12-17 19:47:24', 'dVbj3vZd', '5536575'), + (51000, 524, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVbj3vZd', '5537735'), + (51001, 524, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVbj3vZd', '5540859'), + (51002, 524, 1641, 'attending', '2022-09-01 06:24:29', '2025-12-17 19:47:24', 'dVbj3vZd', '5544226'), + (51003, 524, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVbj3vZd', '5546619'), + (51004, 524, 1649, 'attending', '2022-09-03 19:34:25', '2025-12-17 19:47:24', 'dVbj3vZd', '5549346'), + (51005, 524, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVbj3vZd', '5555245'), + (51006, 524, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVbj3vZd', '5557747'), + (51007, 524, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVbj3vZd', '5560255'), + (51008, 524, 1663, 'attending', '2022-09-10 13:40:07', '2025-12-17 19:47:24', 'dVbj3vZd', '5562345'), + (51009, 524, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVbj3vZd', '5562906'), + (51010, 524, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVbj3vZd', '5600604'), + (51011, 524, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVbj3vZd', '5605544'), + (51012, 524, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'dVbj3vZd', '5606737'), + (51013, 524, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVbj3vZd', '5630960'), + (51014, 524, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVbj3vZd', '5630961'), + (51015, 524, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVbj3vZd', '5630962'), + (51016, 524, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVbj3vZd', '5630966'), + (51017, 524, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVbj3vZd', '5630967'), + (51018, 524, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVbj3vZd', '5630968'), + (51019, 524, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVbj3vZd', '5635406'), + (51020, 524, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVbj3vZd', '5638765'), + (51021, 524, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVbj3vZd', '5640097'), + (51022, 524, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVbj3vZd', '5640843'), + (51023, 524, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVbj3vZd', '5641521'), + (51024, 524, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVbj3vZd', '5642818'), + (51025, 524, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVbj3vZd', '5652395'), + (51026, 524, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVbj3vZd', '5670445'), + (51027, 524, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVbj3vZd', '5671637'), + (51028, 524, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVbj3vZd', '5672329'), + (51029, 524, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVbj3vZd', '5674057'), + (51030, 524, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVbj3vZd', '5674060'), + (51031, 524, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVbj3vZd', '5677461'), + (51032, 524, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVbj3vZd', '5698046'), + (51033, 524, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVbj3vZd', '5699760'), + (51034, 524, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVbj3vZd', '5741601'), + (51035, 524, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVbj3vZd', '5763458'), + (51036, 524, 1808, 'not_attending', '2023-02-27 14:58:20', '2025-12-17 19:47:08', 'dVbj3vZd', '5764678'), + (51037, 524, 1813, 'attending', '2023-04-29 19:54:50', '2025-12-17 19:47:01', 'dVbj3vZd', '5764683'), + (51038, 524, 1817, 'maybe', '2023-03-19 02:23:02', '2025-12-17 19:46:57', 'dVbj3vZd', '5764687'), + (51039, 524, 1819, 'attending', '2023-04-01 07:28:46', '2025-12-17 19:46:58', 'dVbj3vZd', '5764689'), + (51040, 524, 1821, 'attending', '2023-03-13 08:02:45', '2025-12-17 19:46:56', 'dVbj3vZd', '5764691'), + (51041, 524, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVbj3vZd', '5774172'), + (51042, 524, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVbj3vZd', '5818247'), + (51043, 524, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVbj3vZd', '5819471'), + (51044, 524, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVbj3vZd', '5827739'), + (51045, 524, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVbj3vZd', '5844306'), + (51046, 524, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVbj3vZd', '5850159'), + (51047, 524, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVbj3vZd', '5858999'), + (51048, 524, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVbj3vZd', '5871984'), + (51049, 524, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVbj3vZd', '5876354'), + (51050, 524, 1864, 'attending', '2023-01-16 18:41:28', '2025-12-17 19:47:05', 'dVbj3vZd', '5879675'), + (51051, 524, 1865, 'attending', '2023-01-27 20:14:18', '2025-12-17 19:47:06', 'dVbj3vZd', '5879676'), + (51052, 524, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVbj3vZd', '5880939'), + (51053, 524, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dVbj3vZd', '5880940'), + (51054, 524, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVbj3vZd', '5880942'), + (51055, 524, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVbj3vZd', '5880943'), + (51056, 524, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVbj3vZd', '5887890'), + (51057, 524, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVbj3vZd', '5888598'), + (51058, 524, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVbj3vZd', '5893260'), + (51059, 524, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dVbj3vZd', '5899826'), + (51060, 524, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dVbj3vZd', '5900199'), + (51061, 524, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVbj3vZd', '5900200'), + (51062, 524, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVbj3vZd', '5900202'), + (51063, 524, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVbj3vZd', '5900203'), + (51064, 524, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dVbj3vZd', '5901108'), + (51065, 524, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dVbj3vZd', '5901126'), + (51066, 524, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dVbj3vZd', '5909655'), + (51067, 524, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dVbj3vZd', '5910522'), + (51068, 524, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dVbj3vZd', '5910526'), + (51069, 524, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dVbj3vZd', '5910528'), + (51070, 524, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dVbj3vZd', '5916219'), + (51071, 524, 1924, 'not_attending', '2023-02-16 17:39:24', '2025-12-17 19:47:07', 'dVbj3vZd', '5931095'), + (51072, 524, 1932, 'attending', '2023-02-20 15:57:39', '2025-12-17 19:47:07', 'dVbj3vZd', '5935303'), + (51073, 524, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVbj3vZd', '5936234'), + (51074, 524, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVbj3vZd', '5958351'), + (51075, 524, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVbj3vZd', '5959751'), + (51076, 524, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVbj3vZd', '5959755'), + (51077, 524, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVbj3vZd', '5960055'), + (51078, 524, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVbj3vZd', '5961684'), + (51079, 524, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVbj3vZd', '5962132'), + (51080, 524, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dVbj3vZd', '5962133'), + (51081, 524, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVbj3vZd', '5962134'), + (51082, 524, 1948, 'maybe', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVbj3vZd', '5962317'), + (51083, 524, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVbj3vZd', '5962318'), + (51084, 524, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVbj3vZd', '5965933'), + (51085, 524, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVbj3vZd', '5967014'), + (51086, 524, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dVbj3vZd', '5972763'), + (51087, 524, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVbj3vZd', '5972815'), + (51088, 524, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVbj3vZd', '5974016'), + (51089, 524, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVbj3vZd', '5981515'), + (51090, 524, 1967, 'attending', '2023-03-12 04:36:28', '2025-12-17 19:47:10', 'dVbj3vZd', '5985650'), + (51091, 524, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVbj3vZd', '5993516'), + (51092, 524, 1973, 'attending', '2023-03-13 08:02:15', '2025-12-17 19:46:56', 'dVbj3vZd', '5993777'), + (51093, 524, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVbj3vZd', '5998939'), + (51094, 524, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVbj3vZd', '6028191'), + (51095, 524, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVbj3vZd', '6040066'), + (51096, 524, 1983, 'attending', '2023-04-04 10:17:20', '2025-12-17 19:46:59', 'dVbj3vZd', '6040068'), + (51097, 524, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVbj3vZd', '6042717'), + (51098, 524, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVbj3vZd', '6044838'), + (51099, 524, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVbj3vZd', '6044839'), + (51100, 524, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbj3vZd', '6045684'), + (51101, 524, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVbj3vZd', '6050104'), + (51102, 524, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVbj3vZd', '6053195'), + (51103, 524, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVbj3vZd', '6053198'), + (51104, 524, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVbj3vZd', '6056085'), + (51105, 524, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVbj3vZd', '6056916'), + (51106, 524, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVbj3vZd', '6059290'), + (51107, 524, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVbj3vZd', '6060328'), + (51108, 524, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVbj3vZd', '6061037'), + (51109, 524, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVbj3vZd', '6061039'), + (51110, 524, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVbj3vZd', '6067245'), + (51111, 524, 2025, 'attending', '2023-04-19 14:19:15', '2025-12-17 19:47:00', 'dVbj3vZd', '6067457'), + (51112, 524, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVbj3vZd', '6068094'), + (51113, 524, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVbj3vZd', '6068252'), + (51114, 524, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVbj3vZd', '6068253'), + (51115, 524, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVbj3vZd', '6068254'), + (51116, 524, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVbj3vZd', '6068280'), + (51117, 524, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVbj3vZd', '6069093'), + (51118, 524, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVbj3vZd', '6072528'), + (51119, 524, 2042, 'attending', '2023-04-24 20:44:29', '2025-12-17 19:47:01', 'dVbj3vZd', '6072941'), + (51120, 524, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVbj3vZd', '6079840'), + (51121, 524, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVbj3vZd', '6083398'), + (51122, 524, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVbj3vZd', '6093504'), + (51123, 524, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVbj3vZd', '6097414'), + (51124, 524, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVbj3vZd', '6097442'), + (51125, 524, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVbj3vZd', '6097684'), + (51126, 524, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVbj3vZd', '6098762'), + (51127, 524, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dVbj3vZd', '6101361'), + (51128, 524, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVbj3vZd', '6101362'), + (51129, 524, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVbj3vZd', '6103752'), + (51130, 524, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVbj3vZd', '6107314'), + (51131, 524, 2085, 'attending', '2023-06-01 13:51:01', '2025-12-17 19:47:04', 'dVbj3vZd', '6118068'), + (51132, 524, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dVbj3vZd', '6120034'), + (51133, 524, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dVbj3vZd', '6136733'), + (51134, 524, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dVbj3vZd', '6137989'), + (51135, 524, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dVbj3vZd', '6150864'), + (51136, 524, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dVbj3vZd', '6155491'), + (51137, 524, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dVbj3vZd', '6164417'), + (51138, 524, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dVbj3vZd', '6166388'), + (51139, 524, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dVbj3vZd', '6176439'), + (51140, 524, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dVbj3vZd', '6182410'), + (51141, 524, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dVbj3vZd', '6185812'), + (51142, 524, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dVbj3vZd', '6187651'), + (51143, 524, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dVbj3vZd', '6187963'), + (51144, 524, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dVbj3vZd', '6187964'), + (51145, 524, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dVbj3vZd', '6187966'), + (51146, 524, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dVbj3vZd', '6187967'), + (51147, 524, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dVbj3vZd', '6187969'), + (51148, 524, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dVbj3vZd', '6334878'), + (51149, 524, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVbj3vZd', '6337236'), + (51150, 524, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVbj3vZd', '6337970'), + (51151, 524, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dVbj3vZd', '6338308'), + (51152, 524, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVbj3vZd', '6340845'), + (51153, 524, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVbj3vZd', '6341710'), + (51154, 524, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVbj3vZd', '6342044'), + (51155, 524, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVbj3vZd', '6342298'), + (51156, 524, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dVbj3vZd', '6343294'), + (51157, 524, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVbj3vZd', '6347034'), + (51158, 524, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVbj3vZd', '6347056'), + (51159, 524, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVbj3vZd', '6353830'), + (51160, 524, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVbj3vZd', '6353831'), + (51161, 524, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVbj3vZd', '6357867'), + (51162, 524, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVbj3vZd', '6358652'), + (51163, 524, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVbj3vZd', '6361709'), + (51164, 524, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVbj3vZd', '6361710'), + (51165, 524, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVbj3vZd', '6361711'), + (51166, 524, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVbj3vZd', '6361712'), + (51167, 524, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVbj3vZd', '6361713'), + (51168, 524, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVbj3vZd', '6382573'), + (51169, 524, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVbj3vZd', '6388604'), + (51170, 524, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVbj3vZd', '6394629'), + (51171, 524, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVbj3vZd', '6394631'), + (51172, 524, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVbj3vZd', '6440863'), + (51173, 524, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVbj3vZd', '6445440'), + (51174, 524, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVbj3vZd', '6453951'), + (51175, 524, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVbj3vZd', '6461696'), + (51176, 524, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVbj3vZd', '6462129'), + (51177, 524, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVbj3vZd', '6463218'), + (51178, 524, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVbj3vZd', '6472181'), + (51179, 524, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVbj3vZd', '6482693'), + (51180, 524, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dVbj3vZd', '6484200'), + (51181, 524, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dVbj3vZd', '6484680'), + (51182, 524, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVbj3vZd', '6507741'), + (51183, 524, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVbj3vZd', '6514659'), + (51184, 524, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVbj3vZd', '6514660'), + (51185, 524, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVbj3vZd', '6519103'), + (51186, 524, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVbj3vZd', '6535681'), + (51187, 524, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVbj3vZd', '6584747'), + (51188, 524, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVbj3vZd', '6587097'), + (51189, 524, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVbj3vZd', '6609022'), + (51190, 524, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVbj3vZd', '6632757'), + (51191, 524, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVbj3vZd', '6644187'), + (51192, 524, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVbj3vZd', '6648951'), + (51193, 524, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVbj3vZd', '6648952'), + (51194, 524, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVbj3vZd', '6655401'), + (51195, 524, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVbj3vZd', '6661585'), + (51196, 524, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVbj3vZd', '6661588'), + (51197, 524, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVbj3vZd', '6661589'), + (51198, 524, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVbj3vZd', '6699906'), + (51199, 524, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dVbj3vZd', '6699913'), + (51200, 524, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVbj3vZd', '6701109'), + (51201, 524, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVbj3vZd', '6705219'), + (51202, 524, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVbj3vZd', '6710153'), + (51203, 524, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVbj3vZd', '6711552'), + (51204, 524, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dVbj3vZd', '6711553'), + (51205, 524, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVbj3vZd', '6722688'), + (51206, 524, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVbj3vZd', '6730620'), + (51207, 524, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVbj3vZd', '6730642'), + (51208, 524, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dVbj3vZd', '6740364'), + (51209, 524, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVbj3vZd', '6743829'), + (51210, 524, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVbj3vZd', '7030380'), + (51211, 524, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dVbj3vZd', '7033677'), + (51212, 524, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dVbj3vZd', '7035415'), + (51213, 524, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dVbj3vZd', '7044715'), + (51214, 524, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVbj3vZd', '7050318'), + (51215, 524, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVbj3vZd', '7050319'), + (51216, 524, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVbj3vZd', '7050322'), + (51217, 524, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dVbj3vZd', '7057804'), + (51218, 524, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dVbj3vZd', '7059866'), + (51219, 524, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVbj3vZd', '7072824'), + (51220, 524, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVbj3vZd', '7074348'), + (51221, 524, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVbj3vZd', '7089267'), + (51222, 524, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dVbj3vZd', '7098747'), + (51223, 524, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dVbj3vZd', '7113468'), + (51224, 524, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVbj3vZd', '7114856'), + (51225, 524, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dVbj3vZd', '7114951'), + (51226, 524, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVbj3vZd', '7114955'), + (51227, 524, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVbj3vZd', '7114956'), + (51228, 524, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVbj3vZd', '7153615'), + (51229, 524, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVbj3vZd', '7159484'), + (51230, 524, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVbj3vZd', '7178446'), + (51231, 525, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AQOjJNLd', '7074364'), + (51232, 525, 2688, 'not_attending', '2024-06-24 20:09:56', '2025-12-17 19:46:29', 'AQOjJNLd', '7324073'), + (51233, 525, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AQOjJNLd', '7324074'), + (51234, 525, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AQOjJNLd', '7324075'), + (51235, 525, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AQOjJNLd', '7324078'), + (51236, 525, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AQOjJNLd', '7324082'), + (51237, 525, 2701, 'attending', '2024-06-28 20:23:44', '2025-12-17 19:46:29', 'AQOjJNLd', '7324391'), + (51238, 525, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AQOjJNLd', '7331457'), + (51239, 525, 2724, 'attending', '2024-06-26 20:19:26', '2025-12-17 19:46:29', 'AQOjJNLd', '7332562'), + (51240, 525, 2730, 'attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'AQOjJNLd', '7335193'), + (51241, 525, 2731, 'attending', '2024-06-24 06:04:26', '2025-12-17 19:46:29', 'AQOjJNLd', '7335303'), + (51242, 525, 2737, 'maybe', '2024-06-30 22:46:28', '2025-12-17 19:46:29', 'AQOjJNLd', '7344070'), + (51243, 525, 2740, 'attending', '2024-06-30 22:46:20', '2025-12-17 19:46:29', 'AQOjJNLd', '7344576'), + (51244, 525, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AQOjJNLd', '7356752'), + (51245, 525, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'AQOjJNLd', '7363643'), + (51246, 525, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AQOjJNLd', '7368606'), + (51247, 525, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AQOjJNLd', '7397462'), + (51248, 525, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AQOjJNLd', '7424275'), + (51249, 525, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AQOjJNLd', '7424276'), + (51250, 525, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AQOjJNLd', '7432751'), + (51251, 525, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AQOjJNLd', '7432752'), + (51252, 525, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AQOjJNLd', '7432753'), + (51253, 525, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AQOjJNLd', '7432754'), + (51254, 525, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AQOjJNLd', '7432755'), + (51255, 525, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AQOjJNLd', '7432756'), + (51256, 525, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AQOjJNLd', '7432758'), + (51257, 525, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AQOjJNLd', '7432759'), + (51258, 525, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AQOjJNLd', '7433834'), + (51259, 525, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AQOjJNLd', '7470197'), + (51260, 525, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AQOjJNLd', '7685613'), + (51261, 525, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AQOjJNLd', '7688194'), + (51262, 525, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AQOjJNLd', '7688196'), + (51263, 525, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AQOjJNLd', '7688289'), + (51264, 526, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'kdKjkM74', '3539920'), + (51265, 526, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdKjkM74', '3793156'), + (51266, 526, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKjkM74', '6045684'), + (51267, 527, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', '4oMeX9Gm', '4420744'), + (51268, 527, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', '4oMeX9Gm', '4420747'), + (51269, 527, 1003, 'attending', '2021-09-29 22:44:49', '2025-12-17 19:47:43', '4oMeX9Gm', '4438802'), + (51270, 527, 1006, 'attending', '2021-10-01 15:52:57', '2025-12-17 19:47:34', '4oMeX9Gm', '4438808'), + (51271, 527, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4oMeX9Gm', '4568602'), + (51272, 527, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4oMeX9Gm', '4572153'), + (51273, 527, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMeX9Gm', '4585962'), + (51274, 527, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4oMeX9Gm', '4596356'), + (51275, 527, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4oMeX9Gm', '4598860'), + (51276, 527, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4oMeX9Gm', '4598861'), + (51277, 527, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4oMeX9Gm', '4602797'), + (51278, 527, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4oMeX9Gm', '4637896'), + (51279, 527, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4oMeX9Gm', '4642994'), + (51280, 527, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4oMeX9Gm', '4642995'), + (51281, 527, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4oMeX9Gm', '4642996'), + (51282, 527, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4oMeX9Gm', '4642997'), + (51283, 527, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4oMeX9Gm', '4645687'), + (51284, 527, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4oMeX9Gm', '4645698'), + (51285, 527, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4oMeX9Gm', '4645704'), + (51286, 527, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4oMeX9Gm', '4645705'), + (51287, 527, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4oMeX9Gm', '4668385'), + (51288, 527, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4oMeX9Gm', '4694407'), + (51289, 527, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMeX9Gm', '4736497'), + (51290, 527, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMeX9Gm', '4736499'), + (51291, 527, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4oMeX9Gm', '4736500'), + (51292, 527, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMeX9Gm', '4736503'), + (51293, 527, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMeX9Gm', '4736504'), + (51294, 527, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4oMeX9Gm', '4746789'), + (51295, 527, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMeX9Gm', '4753929'), + (51296, 527, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMeX9Gm', '5038850'), + (51297, 527, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMeX9Gm', '5045826'), + (51298, 527, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMeX9Gm', '5132533'), + (51299, 527, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMeX9Gm', '5186582'), + (51300, 527, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMeX9Gm', '5186583'), + (51301, 527, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMeX9Gm', '5186585'), + (51302, 527, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMeX9Gm', '5190437'), + (51303, 527, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMeX9Gm', '5215989'), + (51304, 527, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMeX9Gm', '6045684'), + (51305, 528, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AQOjKlgd', '7074364'), + (51306, 528, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AQOjKlgd', '7324073'), + (51307, 528, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AQOjKlgd', '7324074'), + (51308, 528, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AQOjKlgd', '7324075'), + (51309, 528, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AQOjKlgd', '7324078'), + (51310, 528, 2702, 'not_attending', '2024-06-13 18:33:33', '2025-12-17 19:46:28', 'AQOjKlgd', '7324867'), + (51311, 528, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AQOjKlgd', '7331457'), + (51312, 528, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'AQOjKlgd', '7332564'), + (51313, 528, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'AQOjKlgd', '7344575'), + (51314, 528, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'AQOjKlgd', '7359624'), + (51315, 528, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AQOjKlgd', '7363643'), + (51316, 528, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AQOjKlgd', '7368606'), + (51317, 529, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'ydwvP3Q4', '3149489'), + (51318, 529, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'ydwvP3Q4', '3149491'), + (51319, 529, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'ydwvP3Q4', '3149493'), + (51320, 529, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'ydwvP3Q4', '3236448'), + (51321, 529, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'ydwvP3Q4', '3236450'), + (51322, 529, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'ydwvP3Q4', '3236452'), + (51323, 529, 648, 'not_attending', '2021-05-26 03:39:37', '2025-12-17 19:47:47', 'ydwvP3Q4', '3539923'), + (51324, 529, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'ydwvP3Q4', '3963335'), + (51325, 529, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ydwvP3Q4', '3974109'), + (51326, 529, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydwvP3Q4', '3975311'), + (51327, 529, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydwvP3Q4', '3975312'), + (51328, 529, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydwvP3Q4', '3994992'), + (51329, 529, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ydwvP3Q4', '4014338'), + (51330, 529, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ydwvP3Q4', '4021848'), + (51331, 529, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ydwvP3Q4', '4136744'), + (51332, 529, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ydwvP3Q4', '4136937'), + (51333, 529, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ydwvP3Q4', '4136938'), + (51334, 529, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwvP3Q4', '4136947'), + (51335, 529, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwvP3Q4', '4225444'), + (51336, 529, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'ydwvP3Q4', '4229417'), + (51337, 529, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'ydwvP3Q4', '4229418'), + (51338, 529, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydwvP3Q4', '4239259'), + (51339, 529, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ydwvP3Q4', '4250163'), + (51340, 529, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwvP3Q4', '6045684'), + (51341, 530, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'daBo50rm', '4694407'), + (51342, 530, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'daBo50rm', '4736497'), + (51343, 530, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'daBo50rm', '4736499'), + (51344, 530, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'daBo50rm', '4736500'), + (51345, 530, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'daBo50rm', '4736503'), + (51346, 530, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daBo50rm', '4736504'), + (51347, 530, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'daBo50rm', '4746789'), + (51348, 530, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'daBo50rm', '4753929'), + (51349, 530, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'daBo50rm', '5038850'), + (51350, 530, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'daBo50rm', '5045826'), + (51351, 530, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'daBo50rm', '5132533'), + (51352, 530, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daBo50rm', '6045684'), + (51353, 531, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '4oxybLYd', '5537735'), + (51354, 531, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4oxybLYd', '5540859'), + (51355, 531, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4oxybLYd', '5600604'), + (51356, 531, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4oxybLYd', '5605544'), + (51357, 531, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4oxybLYd', '5630960'), + (51358, 531, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4oxybLYd', '5630961'), + (51359, 531, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4oxybLYd', '5630962'), + (51360, 531, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4oxybLYd', '5630966'), + (51361, 531, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4oxybLYd', '5630967'), + (51362, 531, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4oxybLYd', '5630968'), + (51363, 531, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4oxybLYd', '5635406'), + (51364, 531, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4oxybLYd', '5638765'), + (51365, 531, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4oxybLYd', '5640097'), + (51366, 531, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4oxybLYd', '5640843'), + (51367, 531, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4oxybLYd', '5641521'), + (51368, 531, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4oxybLYd', '5642818'), + (51369, 531, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4oxybLYd', '5652395'), + (51370, 531, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4oxybLYd', '5670445'), + (51371, 531, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4oxybLYd', '5671637'), + (51372, 531, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4oxybLYd', '5672329'), + (51373, 531, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4oxybLYd', '5674057'), + (51374, 531, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4oxybLYd', '5674060'), + (51375, 531, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4oxybLYd', '5677461'), + (51376, 531, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4oxybLYd', '5698046'), + (51377, 531, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4oxybLYd', '5699760'), + (51378, 531, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4oxybLYd', '5741601'), + (51379, 531, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4oxybLYd', '5763458'), + (51380, 531, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4oxybLYd', '5774172'), + (51381, 531, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4oxybLYd', '5818247'), + (51382, 531, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4oxybLYd', '5819471'), + (51383, 531, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4oxybLYd', '5827739'), + (51384, 531, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4oxybLYd', '5844306'), + (51385, 531, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4oxybLYd', '5850159'), + (51386, 531, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4oxybLYd', '5858999'), + (51387, 531, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4oxybLYd', '5871984'), + (51388, 531, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4oxybLYd', '5876354'), + (51389, 531, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4oxybLYd', '5880939'), + (51390, 531, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4oxybLYd', '5887890'), + (51391, 531, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4oxybLYd', '5888598'), + (51392, 531, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4oxybLYd', '5893260'), + (51393, 531, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oxybLYd', '6045684'), + (51394, 532, 646, 'attending', '2021-05-15 21:35:20', '2025-12-17 19:47:46', 'kdKjj8M4', '3539921'), + (51395, 532, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'kdKjj8M4', '3539922'), + (51396, 532, 648, 'attending', '2021-05-28 15:42:16', '2025-12-17 19:47:47', 'kdKjj8M4', '3539923'), + (51397, 532, 741, 'not_attending', '2021-05-19 19:53:57', '2025-12-17 19:47:46', 'kdKjj8M4', '3680618'), + (51398, 532, 745, 'maybe', '2021-06-30 13:10:21', '2025-12-17 19:47:38', 'kdKjj8M4', '3680625'), + (51399, 532, 797, 'attending', '2021-05-25 21:15:08', '2025-12-17 19:47:47', 'kdKjj8M4', '3796195'), + (51400, 532, 803, 'attending', '2021-05-18 23:02:08', '2025-12-17 19:47:46', 'kdKjj8M4', '3804665'), + (51401, 532, 804, 'attending', '2021-05-24 20:17:53', '2025-12-17 19:47:47', 'kdKjj8M4', '3804775'), + (51402, 532, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'kdKjj8M4', '3806392'), + (51403, 532, 815, 'attending', '2021-05-28 20:41:28', '2025-12-17 19:47:47', 'kdKjj8M4', '3818136'), + (51404, 532, 823, 'attending', '2021-06-16 19:45:55', '2025-12-17 19:47:48', 'kdKjj8M4', '3974109'), + (51405, 532, 827, 'maybe', '2021-06-03 20:40:46', '2025-12-17 19:47:47', 'kdKjj8M4', '3975311'), + (51406, 532, 828, 'attending', '2021-06-12 18:41:49', '2025-12-17 19:47:47', 'kdKjj8M4', '3975312'), + (51407, 532, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKjj8M4', '3994992'), + (51408, 532, 841, 'maybe', '2021-06-13 22:26:50', '2025-12-17 19:47:48', 'kdKjj8M4', '4007434'), + (51409, 532, 844, 'maybe', '2021-06-20 23:22:01', '2025-12-17 19:47:38', 'kdKjj8M4', '4014338'), + (51410, 532, 866, 'maybe', '2021-06-20 23:20:49', '2025-12-17 19:47:38', 'kdKjj8M4', '4020424'), + (51411, 532, 867, 'attending', '2021-06-20 23:22:34', '2025-12-17 19:47:38', 'kdKjj8M4', '4021848'), + (51412, 532, 868, 'maybe', '2021-06-13 22:27:16', '2025-12-17 19:47:48', 'kdKjj8M4', '4022012'), + (51413, 532, 869, 'maybe', '2021-06-30 13:11:19', '2025-12-17 19:47:38', 'kdKjj8M4', '4136744'), + (51414, 532, 870, 'attending', '2021-06-30 13:05:26', '2025-12-17 19:47:39', 'kdKjj8M4', '4136937'), + (51415, 532, 871, 'attending', '2021-07-05 02:56:23', '2025-12-17 19:47:39', 'kdKjj8M4', '4136938'), + (51416, 532, 872, 'maybe', '2021-06-22 20:04:52', '2025-12-17 19:47:40', 'kdKjj8M4', '4136947'), + (51417, 532, 874, 'maybe', '2021-06-19 07:19:10', '2025-12-17 19:47:38', 'kdKjj8M4', '4139815'), + (51418, 532, 875, 'maybe', '2021-06-19 07:19:42', '2025-12-17 19:47:38', 'kdKjj8M4', '4139816'), + (51419, 532, 880, 'attending', '2021-06-18 17:39:12', '2025-12-17 19:47:48', 'kdKjj8M4', '4205383'), + (51420, 532, 884, 'attending', '2021-07-17 14:49:00', '2025-12-17 19:47:42', 'kdKjj8M4', '4210314'), + (51421, 532, 887, 'maybe', '2021-07-14 22:22:34', '2025-12-17 19:47:39', 'kdKjj8M4', '4225444'), + (51422, 532, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdKjj8M4', '4239259'), + (51423, 532, 900, 'attending', '2021-07-21 00:14:06', '2025-12-17 19:47:40', 'kdKjj8M4', '4240316'), + (51424, 532, 901, 'attending', '2021-07-26 20:24:58', '2025-12-17 19:47:40', 'kdKjj8M4', '4240317'), + (51425, 532, 902, 'attending', '2021-08-04 20:23:20', '2025-12-17 19:47:41', 'kdKjj8M4', '4240318'), + (51426, 532, 903, 'attending', '2021-08-11 09:44:26', '2025-12-17 19:47:42', 'kdKjj8M4', '4240320'), + (51427, 532, 904, 'maybe', '2021-07-01 18:51:48', '2025-12-17 19:47:39', 'kdKjj8M4', '4241594'), + (51428, 532, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdKjj8M4', '4250163'), + (51429, 532, 917, 'attending', '2021-07-12 01:47:08', '2025-12-17 19:47:39', 'kdKjj8M4', '4274481'), + (51430, 532, 919, 'attending', '2021-07-12 14:23:06', '2025-12-17 19:47:39', 'kdKjj8M4', '4275957'), + (51431, 532, 920, 'maybe', '2021-07-25 16:37:18', '2025-12-17 19:47:40', 'kdKjj8M4', '4277819'), + (51432, 532, 929, 'maybe', '2021-08-05 21:55:34', '2025-12-17 19:47:41', 'kdKjj8M4', '4297223'), + (51433, 532, 933, 'maybe', '2021-07-25 16:36:28', '2025-12-17 19:47:40', 'kdKjj8M4', '4301723'), + (51434, 532, 934, 'attending', '2021-08-04 22:45:50', '2025-12-17 19:47:40', 'kdKjj8M4', '4302093'), + (51435, 532, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdKjj8M4', '4304151'), + (51436, 532, 946, 'attending', '2021-08-02 01:49:08', '2025-12-17 19:47:40', 'kdKjj8M4', '4314835'), + (51437, 532, 971, 'maybe', '2021-09-01 04:30:02', '2025-12-17 19:47:43', 'kdKjj8M4', '4356801'), + (51438, 532, 973, 'maybe', '2021-08-21 12:59:17', '2025-12-17 19:47:42', 'kdKjj8M4', '4366186'), + (51439, 532, 974, 'maybe', '2021-08-16 05:06:11', '2025-12-17 19:47:42', 'kdKjj8M4', '4366187'), + (51440, 532, 987, 'maybe', '2021-09-01 04:29:24', '2025-12-17 19:47:43', 'kdKjj8M4', '4402634'), + (51441, 532, 989, 'attending', '2021-08-30 17:32:22', '2025-12-17 19:47:43', 'kdKjj8M4', '4414282'), + (51442, 532, 990, 'attending', '2021-08-28 22:47:56', '2025-12-17 19:47:43', 'kdKjj8M4', '4420735'), + (51443, 532, 991, 'attending', '2021-08-28 22:47:58', '2025-12-17 19:47:43', 'kdKjj8M4', '4420738'), + (51444, 532, 992, 'attending', '2021-08-28 22:48:00', '2025-12-17 19:47:33', 'kdKjj8M4', '4420739'), + (51445, 532, 993, 'attending', '2021-08-28 22:48:01', '2025-12-17 19:47:34', 'kdKjj8M4', '4420741'), + (51446, 532, 995, 'not_attending', '2021-10-09 20:20:14', '2025-12-17 19:47:34', 'kdKjj8M4', '4420744'), + (51447, 532, 996, 'not_attending', '2021-10-16 20:46:59', '2025-12-17 19:47:35', 'kdKjj8M4', '4420747'), + (51448, 532, 997, 'attending', '2021-08-28 22:48:06', '2025-12-17 19:47:35', 'kdKjj8M4', '4420748'), + (51449, 532, 998, 'not_attending', '2021-10-30 12:51:43', '2025-12-17 19:47:36', 'kdKjj8M4', '4420749'), + (51450, 532, 1016, 'attending', '2021-09-03 18:54:49', '2025-12-17 19:47:43', 'kdKjj8M4', '4441271'), + (51451, 532, 1017, 'attending', '2021-09-03 18:54:45', '2025-12-17 19:47:43', 'kdKjj8M4', '4441822'), + (51452, 532, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKjj8M4', '4461883'), + (51453, 532, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKjj8M4', '4508342'), + (51454, 532, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKjj8M4', '4568602'), + (51455, 532, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKjj8M4', '4572153'), + (51456, 532, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdKjj8M4', '4585962'), + (51457, 532, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'kdKjj8M4', '4596356'), + (51458, 532, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKjj8M4', '4598860'), + (51459, 532, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKjj8M4', '4598861'), + (51460, 532, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKjj8M4', '4602797'), + (51461, 532, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKjj8M4', '4637896'), + (51462, 532, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKjj8M4', '4642994'), + (51463, 532, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdKjj8M4', '4642995'), + (51464, 532, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKjj8M4', '4642996'), + (51465, 532, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKjj8M4', '4642997'), + (51466, 532, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKjj8M4', '4645687'), + (51467, 532, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKjj8M4', '4645698'), + (51468, 532, 1128, 'not_attending', '2021-11-20 23:47:39', '2025-12-17 19:47:37', 'kdKjj8M4', '4645704'), + (51469, 532, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKjj8M4', '4645705'), + (51470, 532, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKjj8M4', '4668385'), + (51471, 532, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKjj8M4', '4694407'), + (51472, 532, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKjj8M4', '4736497'), + (51473, 532, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKjj8M4', '4736499'), + (51474, 532, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKjj8M4', '4736500'), + (51475, 532, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKjj8M4', '4736503'), + (51476, 532, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKjj8M4', '4736504'), + (51477, 532, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKjj8M4', '4746789'), + (51478, 532, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdKjj8M4', '4753929'), + (51479, 532, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKjj8M4', '5038850'), + (51480, 532, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKjj8M4', '5045826'), + (51481, 532, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKjj8M4', '5132533'), + (51482, 532, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdKjj8M4', '5186582'), + (51483, 532, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdKjj8M4', '5186583'), + (51484, 532, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdKjj8M4', '5186585'), + (51485, 532, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdKjj8M4', '5190437'), + (51486, 532, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKjj8M4', '5215989'), + (51487, 532, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKjj8M4', '6045684'), + (51488, 533, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'm6qlzRzd', '7424276'), + (51489, 533, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'm6qlzRzd', '7682072'), + (51490, 533, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'm6qlzRzd', '7685613'), + (51491, 533, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6qlzRzd', '7688194'), + (51492, 533, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6qlzRzd', '7688196'), + (51493, 533, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6qlzRzd', '7688289'), + (51494, 533, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'm6qlzRzd', '7692763'), + (51495, 533, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'm6qlzRzd', '7697552'), + (51496, 533, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'm6qlzRzd', '7699878'), + (51497, 533, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'm6qlzRzd', '7704043'), + (51498, 533, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6qlzRzd', '7712467'), + (51499, 533, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6qlzRzd', '7713585'), + (51500, 533, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6qlzRzd', '7713586'), + (51501, 533, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'm6qlzRzd', '7738518'), + (51502, 533, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6qlzRzd', '7750636'), + (51503, 533, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6qlzRzd', '7796540'), + (51504, 533, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6qlzRzd', '7796541'), + (51505, 533, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6qlzRzd', '7796542'), + (51506, 533, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6qlzRzd', '7825913'), + (51507, 533, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6qlzRzd', '7826209'), + (51508, 533, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6qlzRzd', '7834742'), + (51509, 533, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6qlzRzd', '7842108'), + (51510, 533, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6qlzRzd', '7842902'), + (51511, 533, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6qlzRzd', '7842903'), + (51512, 533, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6qlzRzd', '7842904'), + (51513, 533, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6qlzRzd', '7842905'), + (51514, 533, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'm6qlzRzd', '7844784'), + (51515, 533, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6qlzRzd', '7855719'), + (51516, 533, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6qlzRzd', '7860683'), + (51517, 533, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6qlzRzd', '7860684'), + (51518, 533, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6qlzRzd', '7866095'), + (51519, 533, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6qlzRzd', '7869170'), + (51520, 533, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6qlzRzd', '7869201'), + (51521, 533, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'm6qlzRzd', '7872088'), + (51522, 534, 1869, 'not_attending', '2023-03-07 15:57:34', '2025-12-17 19:47:09', 'dKbl16R4', '5880943'), + (51523, 534, 1886, 'maybe', '2023-03-07 04:56:04', '2025-12-17 19:47:09', 'dKbl16R4', '5899930'), + (51524, 534, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dKbl16R4', '5900202'), + (51525, 534, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dKbl16R4', '5900203'), + (51526, 534, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dKbl16R4', '5910528'), + (51527, 534, 1941, 'maybe', '2023-03-07 00:48:52', '2025-12-17 19:47:09', 'dKbl16R4', '5961684'), + (51528, 534, 1943, 'attending', '2023-03-13 18:44:41', '2025-12-17 19:47:10', 'dKbl16R4', '5962091'), + (51529, 534, 1945, 'maybe', '2023-03-09 12:58:03', '2025-12-17 19:47:10', 'dKbl16R4', '5962133'), + (51530, 534, 1946, 'not_attending', '2023-03-16 21:07:35', '2025-12-17 19:46:56', 'dKbl16R4', '5962134'), + (51531, 534, 1948, 'attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dKbl16R4', '5962317'), + (51532, 534, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dKbl16R4', '5962318'), + (51533, 534, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dKbl16R4', '5965933'), + (51534, 534, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dKbl16R4', '5972815'), + (51535, 534, 1960, 'maybe', '2023-03-09 12:57:49', '2025-12-17 19:47:09', 'dKbl16R4', '5973267'), + (51536, 534, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dKbl16R4', '5974016'), + (51537, 534, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dKbl16R4', '5981515'), + (51538, 534, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dKbl16R4', '5993516'), + (51539, 534, 1974, 'attending', '2023-03-29 11:23:18', '2025-12-17 19:46:57', 'dKbl16R4', '5993778'), + (51540, 534, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dKbl16R4', '5998939'), + (51541, 534, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dKbl16R4', '6028191'), + (51542, 534, 1982, 'maybe', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dKbl16R4', '6040066'), + (51543, 534, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dKbl16R4', '6042717'), + (51544, 534, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dKbl16R4', '6044838'), + (51545, 534, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dKbl16R4', '6044839'), + (51546, 534, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKbl16R4', '6045684'), + (51547, 534, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dKbl16R4', '6050104'), + (51548, 534, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dKbl16R4', '6053195'), + (51549, 534, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dKbl16R4', '6053198'), + (51550, 534, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dKbl16R4', '6056085'), + (51551, 534, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dKbl16R4', '6056916'), + (51552, 534, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dKbl16R4', '6059290'), + (51553, 534, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dKbl16R4', '6060328'), + (51554, 534, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dKbl16R4', '6061037'), + (51555, 534, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dKbl16R4', '6061039'), + (51556, 534, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dKbl16R4', '6067245'), + (51557, 534, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dKbl16R4', '6068094'), + (51558, 534, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dKbl16R4', '6068252'), + (51559, 534, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dKbl16R4', '6068253'), + (51560, 534, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dKbl16R4', '6068254'), + (51561, 534, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dKbl16R4', '6068280'), + (51562, 534, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dKbl16R4', '6069093'), + (51563, 534, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dKbl16R4', '6072528'), + (51564, 534, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dKbl16R4', '6079840'), + (51565, 534, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dKbl16R4', '6083398'), + (51566, 534, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dKbl16R4', '6093504'), + (51567, 534, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dKbl16R4', '6097414'), + (51568, 534, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dKbl16R4', '6097442'), + (51569, 534, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dKbl16R4', '6097684'), + (51570, 534, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dKbl16R4', '6098762'), + (51571, 534, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dKbl16R4', '6101362'), + (51572, 534, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dKbl16R4', '6103752'), + (51573, 534, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dKbl16R4', '6107314'), + (51574, 535, 855, 'attending', '2021-08-04 22:44:00', '2025-12-17 19:47:41', '4PPG8al4', '4015729'), + (51575, 535, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', '4PPG8al4', '4210314'), + (51576, 535, 902, 'attending', '2021-08-04 06:49:11', '2025-12-17 19:47:41', '4PPG8al4', '4240318'), + (51577, 535, 903, 'attending', '2021-08-14 07:46:50', '2025-12-17 19:47:42', '4PPG8al4', '4240320'), + (51578, 535, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4PPG8al4', '4304151'), + (51579, 535, 947, 'attending', '2021-08-04 00:22:03', '2025-12-17 19:47:41', '4PPG8al4', '4315713'), + (51580, 535, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '4PPG8al4', '4345519'), + (51581, 535, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4PPG8al4', '4356801'), + (51582, 535, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '4PPG8al4', '4358025'), + (51583, 535, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '4PPG8al4', '4366186'), + (51584, 535, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '4PPG8al4', '4366187'), + (51585, 535, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4PPG8al4', '4402823'), + (51586, 535, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4PPG8al4', '4420735'), + (51587, 535, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4PPG8al4', '4420738'), + (51588, 535, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', '4PPG8al4', '4420739'), + (51589, 535, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4PPG8al4', '4420741'), + (51590, 535, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4PPG8al4', '4420744'), + (51591, 535, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4PPG8al4', '4420747'), + (51592, 535, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4PPG8al4', '4420748'), + (51593, 535, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4PPG8al4', '4420749'), + (51594, 535, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4PPG8al4', '4461883'), + (51595, 535, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4PPG8al4', '4508342'), + (51596, 535, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4PPG8al4', '4568602'), + (51597, 535, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4PPG8al4', '6045684'), + (51598, 536, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqNlbkA', '6045684'), + (51599, 537, 252, 'maybe', '2021-02-15 05:01:03', '2025-12-17 19:47:50', 'ndalZan4', '3149483'), + (51600, 537, 403, 'not_attending', '2021-02-26 01:56:48', '2025-12-17 19:47:51', 'ndalZan4', '3236458'), + (51601, 537, 408, 'not_attending', '2021-02-13 16:37:33', '2025-12-17 19:47:50', 'ndalZan4', '3236466'), + (51602, 537, 590, 'attending', '2021-02-10 00:51:29', '2025-12-17 19:47:50', 'ndalZan4', '3459150'), + (51603, 537, 593, 'maybe', '2021-02-22 21:33:27', '2025-12-17 19:47:50', 'ndalZan4', '3467758'), + (51604, 537, 595, 'maybe', '2021-03-07 21:32:33', '2025-12-17 19:47:51', 'ndalZan4', '3467761'), + (51605, 537, 599, 'attending', '2021-02-12 02:19:16', '2025-12-17 19:47:50', 'ndalZan4', '3468117'), + (51606, 537, 600, 'attending', '2021-02-21 23:37:22', '2025-12-17 19:47:50', 'ndalZan4', '3468125'), + (51607, 537, 601, 'not_attending', '2021-02-15 05:00:17', '2025-12-17 19:47:50', 'ndalZan4', '3468131'), + (51608, 537, 603, 'not_attending', '2021-02-19 20:09:11', '2025-12-17 19:47:50', 'ndalZan4', '3470304'), + (51609, 537, 604, 'not_attending', '2021-02-26 01:53:24', '2025-12-17 19:47:50', 'ndalZan4', '3470305'), + (51610, 537, 605, 'maybe', '2021-02-11 00:16:14', '2025-12-17 19:47:50', 'ndalZan4', '3470991'), + (51611, 537, 608, 'maybe', '2021-02-10 23:07:57', '2025-12-17 19:47:50', 'ndalZan4', '3475332'), + (51612, 537, 610, 'not_attending', '2021-02-13 16:36:59', '2025-12-17 19:47:50', 'ndalZan4', '3482159'), + (51613, 537, 621, 'not_attending', '2021-03-04 23:26:59', '2025-12-17 19:47:51', 'ndalZan4', '3517815'), + (51614, 537, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ndalZan4', '3517816'), + (51615, 537, 623, 'attending', '2021-02-26 01:53:19', '2025-12-17 19:47:50', 'ndalZan4', '3523941'), + (51616, 537, 630, 'attending', '2021-03-01 05:25:07', '2025-12-17 19:47:51', 'ndalZan4', '3533425'), + (51617, 537, 631, 'attending', '2021-03-01 05:24:21', '2025-12-17 19:47:51', 'ndalZan4', '3533850'), + (51618, 537, 638, 'attending', '2021-03-04 23:28:46', '2025-12-17 19:47:44', 'ndalZan4', '3536632'), + (51619, 537, 639, 'attending', '2021-03-04 23:30:54', '2025-12-17 19:47:51', 'ndalZan4', '3536656'), + (51620, 537, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ndalZan4', '3539916'), + (51621, 537, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ndalZan4', '3539917'), + (51622, 537, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ndalZan4', '3539918'), + (51623, 537, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ndalZan4', '3539919'), + (51624, 537, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ndalZan4', '3539920'), + (51625, 537, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ndalZan4', '3539921'), + (51626, 537, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ndalZan4', '3539922'), + (51627, 537, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndalZan4', '3539923'), + (51628, 537, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndalZan4', '3539927'), + (51629, 537, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndalZan4', '3582734'), + (51630, 537, 707, 'attending', '2021-04-13 23:57:08', '2025-12-17 19:47:46', 'ndalZan4', '3583262'), + (51631, 537, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndalZan4', '3619523'), + (51632, 537, 724, 'attending', '2021-04-13 23:54:55', '2025-12-17 19:47:46', 'ndalZan4', '3661369'), + (51633, 537, 728, 'attending', '2021-04-13 23:54:12', '2025-12-17 19:47:44', 'ndalZan4', '3668073'), + (51634, 537, 729, 'attending', '2021-04-20 00:14:48', '2025-12-17 19:47:46', 'ndalZan4', '3668075'), + (51635, 537, 730, 'attending', '2021-04-20 00:14:57', '2025-12-17 19:47:46', 'ndalZan4', '3668076'), + (51636, 537, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ndalZan4', '3674262'), + (51637, 537, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ndalZan4', '3677402'), + (51638, 537, 752, 'not_attending', '2021-04-15 23:17:52', '2025-12-17 19:47:44', 'ndalZan4', '3699422'), + (51639, 537, 766, 'attending', '2021-04-20 00:15:03', '2025-12-17 19:47:46', 'ndalZan4', '3721383'), + (51640, 537, 768, 'maybe', '2021-04-20 00:14:44', '2025-12-17 19:47:46', 'ndalZan4', '3724124'), + (51641, 537, 769, 'attending', '2021-04-20 00:14:45', '2025-12-17 19:47:46', 'ndalZan4', '3724127'), + (51642, 537, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndalZan4', '3730212'), + (51643, 537, 792, 'attending', '2021-05-13 00:58:31', '2025-12-17 19:47:46', 'ndalZan4', '3793156'), + (51644, 537, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'ndalZan4', '3974109'), + (51645, 537, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ndalZan4', '3975311'), + (51646, 537, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ndalZan4', '3975312'), + (51647, 537, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ndalZan4', '3994992'), + (51648, 537, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ndalZan4', '4014338'), + (51649, 537, 867, 'maybe', '2021-06-25 22:18:54', '2025-12-17 19:47:38', 'ndalZan4', '4021848'), + (51650, 537, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ndalZan4', '4136744'), + (51651, 537, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ndalZan4', '4136937'), + (51652, 537, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ndalZan4', '4136938'), + (51653, 537, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndalZan4', '4136947'), + (51654, 537, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndalZan4', '4210314'), + (51655, 537, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndalZan4', '4225444'), + (51656, 537, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndalZan4', '4239259'), + (51657, 537, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ndalZan4', '4240316'), + (51658, 537, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ndalZan4', '4240317'), + (51659, 537, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndalZan4', '4240318'), + (51660, 537, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ndalZan4', '4240320'), + (51661, 537, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndalZan4', '4250163'), + (51662, 537, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndalZan4', '4275957'), + (51663, 537, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndalZan4', '4277819'), + (51664, 537, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndalZan4', '4301723'), + (51665, 537, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ndalZan4', '4302093'), + (51666, 537, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndalZan4', '4304151'), + (51667, 537, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndalZan4', '4345519'), + (51668, 537, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndalZan4', '4356801'), + (51669, 537, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndalZan4', '4358025'), + (51670, 537, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ndalZan4', '4366186'), + (51671, 537, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndalZan4', '4366187'), + (51672, 537, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndalZan4', '4402823'), + (51673, 537, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ndalZan4', '4420735'), + (51674, 537, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ndalZan4', '4420738'), + (51675, 537, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndalZan4', '4420739'), + (51676, 537, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndalZan4', '4420741'), + (51677, 537, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndalZan4', '4420744'), + (51678, 537, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndalZan4', '4420747'), + (51679, 537, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndalZan4', '4420748'), + (51680, 537, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndalZan4', '4420749'), + (51681, 537, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndalZan4', '4461883'), + (51682, 537, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndalZan4', '4508342'), + (51683, 537, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndalZan4', '4568602'), + (51684, 537, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndalZan4', '4572153'), + (51685, 537, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ndalZan4', '4585962'), + (51686, 537, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ndalZan4', '4596356'), + (51687, 537, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ndalZan4', '4598860'), + (51688, 537, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ndalZan4', '4598861'), + (51689, 537, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ndalZan4', '4602797'), + (51690, 537, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ndalZan4', '4637896'), + (51691, 537, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndalZan4', '4642994'), + (51692, 537, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ndalZan4', '4642995'), + (51693, 537, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ndalZan4', '4642996'), + (51694, 537, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ndalZan4', '4642997'), + (51695, 537, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ndalZan4', '4645687'), + (51696, 537, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ndalZan4', '4645698'), + (51697, 537, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndalZan4', '4645704'), + (51698, 537, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ndalZan4', '4645705'), + (51699, 537, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ndalZan4', '4668385'), + (51700, 537, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndalZan4', '4694407'), + (51701, 537, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ndalZan4', '4736497'), + (51702, 537, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ndalZan4', '4736499'), + (51703, 537, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndalZan4', '4736500'), + (51704, 537, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ndalZan4', '4736503'), + (51705, 537, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ndalZan4', '4736504'), + (51706, 537, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndalZan4', '4746789'), + (51707, 537, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ndalZan4', '4753929'), + (51708, 537, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndalZan4', '5038850'), + (51709, 537, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ndalZan4', '5045826'), + (51710, 537, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndalZan4', '5132533'), + (51711, 537, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ndalZan4', '5186582'), + (51712, 537, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ndalZan4', '5186583'), + (51713, 537, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ndalZan4', '5186585'), + (51714, 537, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ndalZan4', '5190437'), + (51715, 537, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ndalZan4', '5195095'), + (51716, 537, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndalZan4', '5215989'), + (51717, 537, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ndalZan4', '5223686'), + (51718, 537, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ndalZan4', '5247467'), + (51719, 537, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ndalZan4', '5260800'), + (51720, 537, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ndalZan4', '5269930'), + (51721, 537, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ndalZan4', '5271448'), + (51722, 537, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'ndalZan4', '5271449'), + (51723, 537, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ndalZan4', '5278159'), + (51724, 537, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ndalZan4', '5363695'), + (51725, 537, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ndalZan4', '5365960'), + (51726, 537, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ndalZan4', '5378247'), + (51727, 537, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'ndalZan4', '5389605'), + (51728, 537, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ndalZan4', '5397265'), + (51729, 537, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ndalZan4', '5404786'), + (51730, 537, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ndalZan4', '5405203'), + (51731, 537, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ndalZan4', '5412550'), + (51732, 537, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ndalZan4', '5415046'), + (51733, 537, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ndalZan4', '5422086'), + (51734, 537, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ndalZan4', '5422406'), + (51735, 537, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ndalZan4', '5424565'), + (51736, 537, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ndalZan4', '5426882'), + (51737, 537, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ndalZan4', '5441125'), + (51738, 537, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ndalZan4', '5441126'), + (51739, 537, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ndalZan4', '5441128'), + (51740, 537, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ndalZan4', '5441131'), + (51741, 537, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ndalZan4', '5441132'), + (51742, 537, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ndalZan4', '5453325'), + (51743, 537, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ndalZan4', '5454516'), + (51744, 537, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ndalZan4', '5454605'), + (51745, 537, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ndalZan4', '5455037'), + (51746, 537, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ndalZan4', '5461278'), + (51747, 537, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ndalZan4', '5469480'), + (51748, 537, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ndalZan4', '5474663'), + (51749, 537, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ndalZan4', '5482022'), + (51750, 537, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ndalZan4', '5488912'), + (51751, 537, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ndalZan4', '5492192'), + (51752, 537, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ndalZan4', '5493139'), + (51753, 537, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ndalZan4', '5493200'), + (51754, 537, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ndalZan4', '5502188'), + (51755, 537, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ndalZan4', '5505059'), + (51756, 537, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ndalZan4', '5509055'), + (51757, 537, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ndalZan4', '5512862'), + (51758, 537, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ndalZan4', '5513985'), + (51759, 537, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'ndalZan4', '5519981'), + (51760, 537, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ndalZan4', '5522550'), + (51761, 537, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ndalZan4', '5534683'), + (51762, 537, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ndalZan4', '5537735'), + (51763, 537, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ndalZan4', '5540859'), + (51764, 537, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ndalZan4', '5546619'), + (51765, 537, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ndalZan4', '5557747'), + (51766, 537, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ndalZan4', '5560255'), + (51767, 537, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ndalZan4', '5562906'), + (51768, 537, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ndalZan4', '5600604'), + (51769, 537, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ndalZan4', '5605544'), + (51770, 537, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ndalZan4', '5630960'), + (51771, 537, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ndalZan4', '5630961'), + (51772, 537, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ndalZan4', '5630962'), + (51773, 537, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ndalZan4', '5630966'), + (51774, 537, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ndalZan4', '5630967'), + (51775, 537, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ndalZan4', '5630968'), + (51776, 537, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ndalZan4', '5635406'), + (51777, 537, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ndalZan4', '5638765'), + (51778, 537, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ndalZan4', '5640097'), + (51779, 537, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ndalZan4', '5640843'), + (51780, 537, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ndalZan4', '5641521'), + (51781, 537, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ndalZan4', '5642818'), + (51782, 537, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ndalZan4', '5652395'), + (51783, 537, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ndalZan4', '5670445'), + (51784, 537, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ndalZan4', '5671637'), + (51785, 537, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ndalZan4', '5672329'), + (51786, 537, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ndalZan4', '5674057'), + (51787, 537, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ndalZan4', '5674060'), + (51788, 537, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ndalZan4', '5677461'), + (51789, 537, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ndalZan4', '5698046'), + (51790, 537, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ndalZan4', '5699760'), + (51791, 537, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ndalZan4', '5741601'), + (51792, 537, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ndalZan4', '5763458'), + (51793, 537, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ndalZan4', '5774172'), + (51794, 537, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'ndalZan4', '5818247'), + (51795, 537, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ndalZan4', '5819471'), + (51796, 537, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ndalZan4', '5827739'), + (51797, 537, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ndalZan4', '5844306'), + (51798, 537, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ndalZan4', '5850159'), + (51799, 537, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ndalZan4', '5858999'), + (51800, 537, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ndalZan4', '5871984'), + (51801, 537, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ndalZan4', '5876354'), + (51802, 537, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ndalZan4', '5880939'), + (51803, 537, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ndalZan4', '5880940'), + (51804, 537, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ndalZan4', '5880942'), + (51805, 537, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ndalZan4', '5880943'), + (51806, 537, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ndalZan4', '5887890'), + (51807, 537, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ndalZan4', '5888598'), + (51808, 537, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ndalZan4', '5893260'), + (51809, 537, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ndalZan4', '5899826'), + (51810, 537, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ndalZan4', '5900199'), + (51811, 537, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ndalZan4', '5900200'), + (51812, 537, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ndalZan4', '5900202'), + (51813, 537, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ndalZan4', '5900203'), + (51814, 537, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ndalZan4', '5901108'), + (51815, 537, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ndalZan4', '5901126'), + (51816, 537, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'ndalZan4', '5901606'), + (51817, 537, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ndalZan4', '5909655'), + (51818, 537, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ndalZan4', '5910522'), + (51819, 537, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ndalZan4', '5910526'), + (51820, 537, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ndalZan4', '5910528'), + (51821, 537, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ndalZan4', '5916219'), + (51822, 537, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ndalZan4', '5936234'), + (51823, 537, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ndalZan4', '5958351'), + (51824, 537, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ndalZan4', '5959751'), + (51825, 537, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ndalZan4', '5959755'), + (51826, 537, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ndalZan4', '5960055'), + (51827, 537, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ndalZan4', '5961684'), + (51828, 537, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ndalZan4', '5962132'), + (51829, 537, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ndalZan4', '5962133'), + (51830, 537, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ndalZan4', '5962134'), + (51831, 537, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ndalZan4', '5962317'), + (51832, 537, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ndalZan4', '5962318'), + (51833, 537, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ndalZan4', '5965933'), + (51834, 537, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ndalZan4', '5967014'), + (51835, 537, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ndalZan4', '5972815'), + (51836, 537, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ndalZan4', '5974016'), + (51837, 537, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ndalZan4', '5981515'), + (51838, 537, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ndalZan4', '5993516'), + (51839, 537, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ndalZan4', '5998939'), + (51840, 537, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ndalZan4', '6028191'), + (51841, 537, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ndalZan4', '6040066'), + (51842, 537, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ndalZan4', '6042717'), + (51843, 537, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ndalZan4', '6044838'), + (51844, 537, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ndalZan4', '6044839'), + (51845, 537, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndalZan4', '6045684'), + (51846, 537, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ndalZan4', '6050104'), + (51847, 537, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ndalZan4', '6053195'), + (51848, 537, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ndalZan4', '6053198'), + (51849, 537, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ndalZan4', '6056085'), + (51850, 537, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ndalZan4', '6056916'), + (51851, 537, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ndalZan4', '6059290'), + (51852, 537, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ndalZan4', '6060328'), + (51853, 537, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ndalZan4', '6061037'), + (51854, 537, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ndalZan4', '6061039'), + (51855, 537, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ndalZan4', '6067245'), + (51856, 537, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ndalZan4', '6068094'), + (51857, 537, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ndalZan4', '6068252'), + (51858, 537, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ndalZan4', '6068253'), + (51859, 537, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ndalZan4', '6068254'), + (51860, 537, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ndalZan4', '6068280'), + (51861, 537, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ndalZan4', '6069093'), + (51862, 537, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ndalZan4', '6072528'), + (51863, 537, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ndalZan4', '6079840'), + (51864, 537, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ndalZan4', '6083398'), + (51865, 537, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ndalZan4', '6093504'), + (51866, 537, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ndalZan4', '6097414'), + (51867, 537, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ndalZan4', '6097442'), + (51868, 537, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ndalZan4', '6097684'), + (51869, 537, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ndalZan4', '6098762'), + (51870, 537, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ndalZan4', '6101361'), + (51871, 537, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ndalZan4', '6101362'), + (51872, 537, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ndalZan4', '6107314'), + (51873, 537, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ndalZan4', '6120034'), + (51874, 537, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'ndalZan4', '6136733'), + (51875, 537, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ndalZan4', '6137989'), + (51876, 537, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ndalZan4', '6150864'), + (51877, 537, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ndalZan4', '6155491'), + (51878, 537, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ndalZan4', '6164417'), + (51879, 537, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ndalZan4', '6166388'), + (51880, 537, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ndalZan4', '6176439'), + (51881, 537, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ndalZan4', '6182410'), + (51882, 537, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ndalZan4', '6185812'), + (51883, 537, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ndalZan4', '6187651'), + (51884, 537, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ndalZan4', '6187963'), + (51885, 537, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ndalZan4', '6187964'), + (51886, 537, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ndalZan4', '6187966'), + (51887, 537, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ndalZan4', '6187967'), + (51888, 537, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ndalZan4', '6187969'), + (51889, 537, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ndalZan4', '6334878'), + (51890, 537, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ndalZan4', '6337236'), + (51891, 537, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ndalZan4', '6337970'), + (51892, 537, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ndalZan4', '6338308'), + (51893, 537, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ndalZan4', '6341710'), + (51894, 537, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ndalZan4', '6342044'), + (51895, 537, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ndalZan4', '6342298'), + (51896, 537, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ndalZan4', '6343294'), + (51897, 537, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ndalZan4', '6347034'), + (51898, 537, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ndalZan4', '6347056'), + (51899, 537, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ndalZan4', '6353830'), + (51900, 537, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ndalZan4', '6353831'), + (51901, 537, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ndalZan4', '6357867'), + (51902, 537, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ndalZan4', '6358652'), + (51903, 537, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ndalZan4', '6361709'), + (51904, 537, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ndalZan4', '6361710'), + (51905, 537, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ndalZan4', '6361711'), + (51906, 537, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ndalZan4', '6361712'), + (51907, 537, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ndalZan4', '6361713'), + (51908, 537, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'ndalZan4', '6382573'), + (51909, 537, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ndalZan4', '6388604'), + (51910, 537, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ndalZan4', '6394629'), + (51911, 537, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ndalZan4', '6394631'), + (51912, 537, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ndalZan4', '6440863'), + (51913, 537, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ndalZan4', '6445440'), + (51914, 537, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ndalZan4', '6453951'), + (51915, 537, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ndalZan4', '6461696'), + (51916, 537, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ndalZan4', '6462129'), + (51917, 537, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ndalZan4', '6463218'), + (51918, 537, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ndalZan4', '6472181'), + (51919, 537, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ndalZan4', '6482693'), + (51920, 537, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ndalZan4', '6484200'), + (51921, 537, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ndalZan4', '6484680'), + (51922, 537, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ndalZan4', '6507741'), + (51923, 537, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ndalZan4', '6514659'), + (51924, 537, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ndalZan4', '6514660'), + (51925, 537, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ndalZan4', '6519103'), + (51926, 537, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ndalZan4', '6535681'), + (51927, 537, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ndalZan4', '6584747'), + (51928, 537, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ndalZan4', '6587097'), + (51929, 537, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ndalZan4', '6609022'), + (51930, 537, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'ndalZan4', '6632757'), + (51931, 537, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ndalZan4', '6644187'), + (51932, 537, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ndalZan4', '6648951'), + (51933, 537, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ndalZan4', '6648952'), + (51934, 537, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ndalZan4', '6655401'), + (51935, 537, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ndalZan4', '6661585'), + (51936, 537, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ndalZan4', '6661588'), + (51937, 537, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ndalZan4', '6661589'), + (51938, 537, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ndalZan4', '6699906'), + (51939, 537, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ndalZan4', '6699913'), + (51940, 537, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ndalZan4', '6701109'), + (51941, 537, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ndalZan4', '6705219'), + (51942, 537, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ndalZan4', '6710153'), + (51943, 537, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ndalZan4', '6711552'), + (51944, 537, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'ndalZan4', '6711553'), + (51945, 537, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ndalZan4', '6722688'), + (51946, 537, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ndalZan4', '6730620'), + (51947, 537, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ndalZan4', '6740364'), + (51948, 537, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ndalZan4', '6743829'), + (51949, 537, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ndalZan4', '7030380'), + (51950, 537, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'ndalZan4', '7033677'), + (51951, 537, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ndalZan4', '7044715'), + (51952, 537, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ndalZan4', '7050318'), + (51953, 537, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ndalZan4', '7050319'), + (51954, 537, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ndalZan4', '7050322'), + (51955, 537, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ndalZan4', '7057804'), + (51956, 537, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ndalZan4', '7072824'), + (51957, 537, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ndalZan4', '7074348'), + (51958, 537, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndalZan4', '7074364'), + (51959, 537, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ndalZan4', '7089267'), + (51960, 537, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ndalZan4', '7098747'), + (51961, 537, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ndalZan4', '7113468'), + (51962, 537, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ndalZan4', '7114856'), + (51963, 537, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ndalZan4', '7114951'), + (51964, 537, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ndalZan4', '7114955'), + (51965, 537, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ndalZan4', '7114956'), + (51966, 537, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndalZan4', '7114957'), + (51967, 537, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndalZan4', '7159484'), + (51968, 537, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndalZan4', '7178446'), + (51969, 537, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'ndalZan4', '7220467'), + (51970, 537, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndalZan4', '7240354'), + (51971, 537, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndalZan4', '7251633'), + (51972, 537, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndalZan4', '7324073'), + (51973, 537, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndalZan4', '7324074'), + (51974, 537, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndalZan4', '7324075'), + (51975, 537, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ndalZan4', '7324078'), + (51976, 537, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ndalZan4', '7324082'), + (51977, 537, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ndalZan4', '7331457'), + (51978, 537, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ndalZan4', '7363643'), + (51979, 537, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndalZan4', '7368606'), + (51980, 537, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndalZan4', '7397462'), + (51981, 537, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndalZan4', '7424275'), + (51982, 537, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndalZan4', '7432751'), + (51983, 537, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndalZan4', '7432752'), + (51984, 537, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndalZan4', '7432753'), + (51985, 537, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndalZan4', '7432754'), + (51986, 537, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndalZan4', '7432755'), + (51987, 537, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndalZan4', '7432756'), + (51988, 537, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndalZan4', '7432758'), + (51989, 537, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndalZan4', '7432759'), + (51990, 537, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndalZan4', '7433834'), + (51991, 537, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndalZan4', '7470197'), + (51992, 537, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndalZan4', '7685613'), + (51993, 537, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndalZan4', '7688194'), + (51994, 537, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndalZan4', '7688196'), + (51995, 537, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndalZan4', '7688289'), + (51996, 537, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ndalZan4', '7692763'), + (51997, 537, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndalZan4', '7697552'), + (51998, 537, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndalZan4', '7699878'), + (51999, 537, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndalZan4', '7704043'), + (52000, 537, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndalZan4', '7712467'), + (52001, 537, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ndalZan4', '7713585'), + (52002, 537, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ndalZan4', '7713586'), + (52003, 537, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndalZan4', '7738518'), + (52004, 537, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndalZan4', '7750636'), + (52005, 537, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndalZan4', '7796540'), + (52006, 537, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndalZan4', '7796541'), + (52007, 537, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndalZan4', '7796542'), + (52008, 537, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndalZan4', '7825913'), + (52009, 537, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndalZan4', '7826209'), + (52010, 537, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndalZan4', '7834742'), + (52011, 537, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ndalZan4', '7842108'), + (52012, 537, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndalZan4', '7842902'), + (52013, 537, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndalZan4', '7842903'), + (52014, 537, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndalZan4', '7842904'), + (52015, 537, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndalZan4', '7842905'), + (52016, 537, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndalZan4', '7855719'), + (52017, 537, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndalZan4', '7860683'), + (52018, 537, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndalZan4', '7860684'), + (52019, 537, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndalZan4', '7866095'), + (52020, 537, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndalZan4', '7869170'), + (52021, 537, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ndalZan4', '7869188'), + (52022, 537, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndalZan4', '7869201'), + (52023, 537, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndalZan4', '7877465'), + (52024, 537, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndalZan4', '7888250'), + (52025, 537, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ndalZan4', '7904777'), + (52026, 537, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndalZan4', '8349164'), + (52027, 537, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndalZan4', '8349545'), + (52028, 537, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndalZan4', '8368028'), + (52029, 537, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndalZan4', '8368029'), + (52030, 537, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndalZan4', '8388462'), + (52031, 537, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndalZan4', '8400273'), + (52032, 537, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndalZan4', '8400275'), + (52033, 537, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'ndalZan4', '8400276'), + (52034, 537, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndalZan4', '8404977'), + (52035, 537, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndalZan4', '8430783'), + (52036, 537, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndalZan4', '8430784'), + (52037, 537, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndalZan4', '8430799'), + (52038, 537, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndalZan4', '8430800'), + (52039, 537, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndalZan4', '8430801'), + (52040, 537, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndalZan4', '8438709'), + (52041, 537, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndalZan4', '8457738'), + (52042, 537, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndalZan4', '8459566'), + (52043, 537, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndalZan4', '8459567'), + (52044, 537, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndalZan4', '8461032'), + (52045, 537, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndalZan4', '8477877'), + (52046, 537, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ndalZan4', '8485688'), + (52047, 537, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ndalZan4', '8490587'), + (52048, 537, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ndalZan4', '8493552'), + (52049, 537, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ndalZan4', '8493553'), + (52050, 537, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ndalZan4', '8493554'), + (52051, 537, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ndalZan4', '8493555'), + (52052, 537, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ndalZan4', '8493556'), + (52053, 537, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ndalZan4', '8493557'), + (52054, 537, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ndalZan4', '8493558'), + (52055, 537, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ndalZan4', '8493559'), + (52056, 537, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ndalZan4', '8493560'), + (52057, 537, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ndalZan4', '8493561'), + (52058, 537, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ndalZan4', '8493572'), + (52059, 537, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ndalZan4', '8540725'), + (52060, 537, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndalZan4', '8555421'), + (52061, 538, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'm6o1vJzA', '5195095'), + (52062, 538, 1307, 'not_attending', '2022-04-05 18:41:01', '2025-12-17 19:47:27', 'm6o1vJzA', '5223686'), + (52063, 538, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'm6o1vJzA', '5227432'), + (52064, 538, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'm6o1vJzA', '5247467'), + (52065, 538, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'm6o1vJzA', '5260800'), + (52066, 538, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6o1vJzA', '5269930'), + (52067, 538, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6o1vJzA', '5271448'), + (52068, 538, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'm6o1vJzA', '5271449'), + (52069, 538, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'm6o1vJzA', '5276469'), + (52070, 538, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6o1vJzA', '5278159'), + (52071, 538, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6o1vJzA', '6045684'), + (52072, 539, 10, 'attending', '2020-03-28 19:03:32', '2025-12-17 19:47:56', '54k7DM54', '2958053'), + (52073, 539, 15, 'not_attending', '2020-04-15 20:16:19', '2025-12-17 19:47:57', '54k7DM54', '2958059'), + (52074, 539, 18, 'not_attending', '2020-04-15 20:16:27', '2025-12-17 19:47:57', '54k7DM54', '2958062'), + (52075, 539, 21, 'not_attending', '2020-05-01 22:28:09', '2025-12-17 19:47:57', '54k7DM54', '2958065'), + (52076, 539, 30, 'not_attending', '2020-04-06 20:40:00', '2025-12-17 19:47:57', '54k7DM54', '2961895'), + (52077, 539, 36, 'attending', '2020-04-04 23:06:14', '2025-12-17 19:47:57', '54k7DM54', '2969208'), + (52078, 539, 41, 'not_attending', '2020-04-15 20:16:24', '2025-12-17 19:47:57', '54k7DM54', '2971546'), + (52079, 539, 43, 'not_attending', '2020-04-15 20:16:37', '2025-12-17 19:47:57', '54k7DM54', '2974519'), + (52080, 539, 44, 'not_attending', '2020-04-11 22:46:19', '2025-12-17 19:47:57', '54k7DM54', '2974534'), + (52081, 539, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', '54k7DM54', '2974955'), + (52082, 539, 55, 'not_attending', '2020-04-06 20:39:56', '2025-12-17 19:47:57', '54k7DM54', '2975384'), + (52083, 539, 56, 'not_attending', '2020-04-12 03:32:06', '2025-12-17 19:47:57', '54k7DM54', '2975385'), + (52084, 539, 57, 'not_attending', '2020-04-10 21:25:15', '2025-12-17 19:47:57', '54k7DM54', '2976575'), + (52085, 539, 70, 'not_attending', '2020-04-10 18:54:55', '2025-12-17 19:47:57', '54k7DM54', '2977343'), + (52086, 539, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '54k7DM54', '2977812'), + (52087, 539, 73, 'not_attending', '2020-04-15 20:16:29', '2025-12-17 19:47:57', '54k7DM54', '2977931'), + (52088, 539, 74, 'attending', '2020-04-15 20:16:35', '2025-12-17 19:47:57', '54k7DM54', '2978244'), + (52089, 539, 75, 'attending', '2020-04-25 22:49:44', '2025-12-17 19:47:57', '54k7DM54', '2978245'), + (52090, 539, 76, 'attending', '2020-05-01 22:28:12', '2025-12-17 19:47:57', '54k7DM54', '2978246'), + (52091, 539, 77, 'not_attending', '2020-05-04 13:58:20', '2025-12-17 19:47:57', '54k7DM54', '2978247'), + (52092, 539, 78, 'attending', '2020-05-19 23:56:55', '2025-12-17 19:47:57', '54k7DM54', '2978249'), + (52093, 539, 79, 'attending', '2020-05-24 22:31:28', '2025-12-17 19:47:57', '54k7DM54', '2978250'), + (52094, 539, 80, 'attending', '2020-06-07 01:38:51', '2025-12-17 19:47:58', '54k7DM54', '2978251'), + (52095, 539, 81, 'attending', '2020-06-13 22:53:18', '2025-12-17 19:47:58', '54k7DM54', '2978252'), + (52096, 539, 82, 'not_attending', '2020-04-11 02:47:29', '2025-12-17 19:47:57', '54k7DM54', '2978433'), + (52097, 539, 83, 'not_attending', '2020-05-09 03:20:32', '2025-12-17 19:47:57', '54k7DM54', '2978438'), + (52098, 539, 84, 'not_attending', '2020-04-13 23:55:22', '2025-12-17 19:47:57', '54k7DM54', '2980871'), + (52099, 539, 86, 'not_attending', '2020-04-14 19:49:48', '2025-12-17 19:47:57', '54k7DM54', '2981388'), + (52100, 539, 88, 'not_attending', '2020-04-15 20:16:33', '2025-12-17 19:47:57', '54k7DM54', '2982603'), + (52101, 539, 89, 'not_attending', '2020-05-01 22:28:10', '2025-12-17 19:47:57', '54k7DM54', '2982604'), + (52102, 539, 91, 'not_attending', '2020-05-01 22:28:08', '2025-12-17 19:47:57', '54k7DM54', '2985130'), + (52103, 539, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '54k7DM54', '2986743'), + (52104, 539, 93, 'not_attending', '2020-04-19 17:31:44', '2025-12-17 19:47:57', '54k7DM54', '2987418'), + (52105, 539, 101, 'attending', '2020-04-22 00:28:05', '2025-12-17 19:47:57', '54k7DM54', '2989975'), + (52106, 539, 104, 'attending', '2020-04-24 19:00:45', '2025-12-17 19:47:57', '54k7DM54', '2991471'), + (52107, 539, 106, 'not_attending', '2020-05-01 22:28:13', '2025-12-17 19:47:57', '54k7DM54', '2993501'), + (52108, 539, 109, 'not_attending', '2020-05-11 22:48:50', '2025-12-17 19:47:57', '54k7DM54', '2994480'), + (52109, 539, 110, 'attending', '2020-05-03 19:53:03', '2025-12-17 19:47:57', '54k7DM54', '2994906'), + (52110, 539, 111, 'attending', '2020-06-07 19:54:50', '2025-12-17 19:47:58', '54k7DM54', '2994907'), + (52111, 539, 113, 'attending', '2020-08-02 17:24:28', '2025-12-17 19:47:56', '54k7DM54', '2994909'), + (52112, 539, 115, 'attending', '2020-05-16 20:03:21', '2025-12-17 19:47:57', '54k7DM54', '3001217'), + (52113, 539, 121, 'not_attending', '2020-05-26 22:32:15', '2025-12-17 19:47:57', '54k7DM54', '3023063'), + (52114, 539, 133, 'not_attending', '2020-06-24 23:59:27', '2025-12-17 19:47:58', '54k7DM54', '3034321'), + (52115, 539, 136, 'not_attending', '2020-05-24 22:31:23', '2025-12-17 19:47:57', '54k7DM54', '3035881'), + (52116, 539, 143, 'not_attending', '2020-06-07 21:49:09', '2025-12-17 19:47:58', '54k7DM54', '3049983'), + (52117, 539, 147, 'not_attending', '2020-08-22 22:09:28', '2025-12-17 19:47:56', '54k7DM54', '3058684'), + (52118, 539, 151, 'not_attending', '2020-08-22 22:10:13', '2025-12-17 19:47:56', '54k7DM54', '3058688'), + (52119, 539, 152, 'not_attending', '2020-09-02 20:34:30', '2025-12-17 19:47:56', '54k7DM54', '3058689'), + (52120, 539, 156, 'not_attending', '2020-09-05 23:15:52', '2025-12-17 19:47:56', '54k7DM54', '3058693'), + (52121, 539, 157, 'not_attending', '2020-09-19 22:17:09', '2025-12-17 19:47:56', '54k7DM54', '3058694'), + (52122, 539, 159, 'not_attending', '2020-10-03 22:28:53', '2025-12-17 19:47:52', '54k7DM54', '3058696'), + (52123, 539, 160, 'not_attending', '2020-10-03 22:29:39', '2025-12-17 19:47:52', '54k7DM54', '3058697'), + (52124, 539, 161, 'not_attending', '2020-10-03 22:29:06', '2025-12-17 19:47:52', '54k7DM54', '3058698'), + (52125, 539, 162, 'not_attending', '2020-10-03 22:29:20', '2025-12-17 19:47:52', '54k7DM54', '3058699'), + (52126, 539, 163, 'not_attending', '2020-10-03 22:29:47', '2025-12-17 19:47:53', '54k7DM54', '3058700'), + (52127, 539, 164, 'not_attending', '2020-10-19 22:32:56', '2025-12-17 19:47:54', '54k7DM54', '3058701'), + (52128, 539, 165, 'not_attending', '2020-10-19 22:32:48', '2025-12-17 19:47:53', '54k7DM54', '3058702'), + (52129, 539, 166, 'not_attending', '2020-10-19 22:33:03', '2025-12-17 19:47:54', '54k7DM54', '3058704'), + (52130, 539, 167, 'not_attending', '2020-10-19 22:33:07', '2025-12-17 19:47:54', '54k7DM54', '3058705'), + (52131, 539, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '54k7DM54', '3058959'), + (52132, 539, 173, 'not_attending', '2020-06-16 04:36:04', '2025-12-17 19:47:58', '54k7DM54', '3067093'), + (52133, 539, 181, 'maybe', '2020-06-20 20:41:56', '2025-12-17 19:47:58', '54k7DM54', '3074513'), + (52134, 539, 183, 'not_attending', '2020-06-16 04:35:50', '2025-12-17 19:47:58', '54k7DM54', '3075228'), + (52135, 539, 185, 'not_attending', '2020-06-16 04:35:55', '2025-12-17 19:47:58', '54k7DM54', '3075456'), + (52136, 539, 186, 'not_attending', '2020-06-19 01:58:10', '2025-12-17 19:47:55', '54k7DM54', '3083791'), + (52137, 539, 187, 'not_attending', '2020-06-19 20:31:33', '2025-12-17 19:47:55', '54k7DM54', '3085151'), + (52138, 539, 189, 'not_attending', '2020-06-20 18:18:51', '2025-12-17 19:47:58', '54k7DM54', '3087016'), + (52139, 539, 190, 'not_attending', '2020-07-04 22:35:49', '2025-12-17 19:47:55', '54k7DM54', '3087258'), + (52140, 539, 191, 'attending', '2020-07-11 22:30:33', '2025-12-17 19:47:55', '54k7DM54', '3087259'), + (52141, 539, 192, 'not_attending', '2020-07-18 19:54:08', '2025-12-17 19:47:55', '54k7DM54', '3087260'), + (52142, 539, 196, 'attending', '2020-08-15 20:38:36', '2025-12-17 19:47:56', '54k7DM54', '3087265'), + (52143, 539, 197, 'attending', '2020-08-22 22:09:34', '2025-12-17 19:47:56', '54k7DM54', '3087266'), + (52144, 539, 198, 'attending', '2020-08-29 22:37:30', '2025-12-17 19:47:56', '54k7DM54', '3087267'), + (52145, 539, 199, 'attending', '2020-09-05 23:15:10', '2025-12-17 19:47:56', '54k7DM54', '3087268'), + (52146, 539, 200, 'attending', '2020-09-05 23:15:21', '2025-12-17 19:47:56', '54k7DM54', '3087269'), + (52147, 539, 201, 'not_attending', '2020-06-21 02:50:20', '2025-12-17 19:47:55', '54k7DM54', '3088653'), + (52148, 539, 202, 'not_attending', '2020-07-06 23:46:44', '2025-12-17 19:47:55', '54k7DM54', '3090353'), + (52149, 539, 209, 'not_attending', '2020-06-30 01:52:01', '2025-12-17 19:47:55', '54k7DM54', '3106813'), + (52150, 539, 220, 'not_attending', '2020-09-02 20:34:21', '2025-12-17 19:47:56', '54k7DM54', '3129264'), + (52151, 539, 221, 'not_attending', '2020-09-05 23:16:07', '2025-12-17 19:47:56', '54k7DM54', '3129265'), + (52152, 539, 223, 'attending', '2020-09-12 23:02:18', '2025-12-17 19:47:56', '54k7DM54', '3129980'), + (52153, 539, 226, 'not_attending', '2020-07-14 03:09:28', '2025-12-17 19:47:55', '54k7DM54', '3132817'), + (52154, 539, 227, 'not_attending', '2020-07-14 03:09:32', '2025-12-17 19:47:55', '54k7DM54', '3132820'), + (52155, 539, 232, 'not_attending', '2020-07-20 22:41:38', '2025-12-17 19:47:55', '54k7DM54', '3139770'), + (52156, 539, 239, 'not_attending', '2020-08-22 22:09:57', '2025-12-17 19:47:56', '54k7DM54', '3149470'), + (52157, 539, 240, 'not_attending', '2020-09-05 23:15:33', '2025-12-17 19:47:56', '54k7DM54', '3149471'), + (52158, 539, 241, 'not_attending', '2020-10-03 22:29:00', '2025-12-17 19:47:52', '54k7DM54', '3149472'), + (52159, 539, 242, 'not_attending', '2020-09-12 00:07:47', '2025-12-17 19:47:56', '54k7DM54', '3149473'), + (52160, 539, 243, 'not_attending', '2020-10-03 22:29:52', '2025-12-17 19:47:53', '54k7DM54', '3149474'), + (52161, 539, 244, 'not_attending', '2020-10-03 22:29:25', '2025-12-17 19:47:52', '54k7DM54', '3149475'), + (52162, 539, 245, 'not_attending', '2020-11-08 19:30:30', '2025-12-17 19:47:54', '54k7DM54', '3149476'), + (52163, 539, 246, 'not_attending', '2020-11-11 04:10:39', '2025-12-17 19:47:55', '54k7DM54', '3149477'), + (52164, 539, 247, 'not_attending', '2020-12-06 21:30:21', '2025-12-17 19:47:48', '54k7DM54', '3149478'), + (52165, 539, 248, 'not_attending', '2020-12-06 21:30:35', '2025-12-17 19:47:48', '54k7DM54', '3149479'), + (52166, 539, 249, 'not_attending', '2020-10-19 22:33:00', '2025-12-17 19:47:54', '54k7DM54', '3149480'), + (52167, 539, 250, 'not_attending', '2020-12-06 21:31:01', '2025-12-17 19:47:50', '54k7DM54', '3149481'), + (52168, 539, 251, 'not_attending', '2020-12-06 21:30:39', '2025-12-17 19:47:49', '54k7DM54', '3149482'), + (52169, 539, 252, 'not_attending', '2020-12-06 21:31:05', '2025-12-17 19:47:50', '54k7DM54', '3149483'), + (52170, 539, 254, 'not_attending', '2020-12-06 21:31:09', '2025-12-17 19:47:51', '54k7DM54', '3149485'), + (52171, 539, 255, 'not_attending', '2021-03-24 00:04:19', '2025-12-17 19:47:43', '54k7DM54', '3149486'), + (52172, 539, 269, 'attending', '2020-07-28 22:17:32', '2025-12-17 19:47:55', '54k7DM54', '3153076'), + (52173, 539, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '54k7DM54', '3155321'), + (52174, 539, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '54k7DM54', '3162006'), + (52175, 539, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '54k7DM54', '3163442'), + (52176, 539, 280, 'not_attending', '2020-08-12 23:08:29', '2025-12-17 19:47:56', '54k7DM54', '3166942'), + (52177, 539, 285, 'not_attending', '2020-08-22 22:09:51', '2025-12-17 19:47:56', '54k7DM54', '3170245'), + (52178, 539, 286, 'not_attending', '2020-08-22 22:10:00', '2025-12-17 19:47:56', '54k7DM54', '3170246'), + (52179, 539, 287, 'not_attending', '2020-08-22 22:10:06', '2025-12-17 19:47:56', '54k7DM54', '3170247'), + (52180, 539, 288, 'not_attending', '2020-09-02 20:34:16', '2025-12-17 19:47:56', '54k7DM54', '3170249'), + (52181, 539, 289, 'not_attending', '2020-09-02 20:34:25', '2025-12-17 19:47:56', '54k7DM54', '3170250'), + (52182, 539, 290, 'not_attending', '2020-09-05 23:15:34', '2025-12-17 19:47:56', '54k7DM54', '3170251'), + (52183, 539, 291, 'not_attending', '2020-09-05 23:15:47', '2025-12-17 19:47:56', '54k7DM54', '3170252'), + (52184, 539, 293, 'not_attending', '2020-08-10 21:56:51', '2025-12-17 19:47:56', '54k7DM54', '3172832'), + (52185, 539, 294, 'not_attending', '2020-08-10 21:56:48', '2025-12-17 19:47:56', '54k7DM54', '3172833'), + (52186, 539, 295, 'not_attending', '2020-08-10 21:56:45', '2025-12-17 19:47:56', '54k7DM54', '3172834'), + (52187, 539, 296, 'not_attending', '2020-08-10 21:56:43', '2025-12-17 19:47:56', '54k7DM54', '3172876'), + (52188, 539, 298, 'not_attending', '2020-08-22 22:10:05', '2025-12-17 19:47:56', '54k7DM54', '3174556'), + (52189, 539, 301, 'not_attending', '2020-08-22 22:10:03', '2025-12-17 19:47:56', '54k7DM54', '3178027'), + (52190, 539, 302, 'not_attending', '2020-08-22 22:09:58', '2025-12-17 19:47:56', '54k7DM54', '3178028'), + (52191, 539, 304, 'not_attending', '2020-09-05 23:15:29', '2025-12-17 19:47:56', '54k7DM54', '3178916'), + (52192, 539, 306, 'not_attending', '2020-08-22 22:09:23', '2025-12-17 19:47:56', '54k7DM54', '3179777'), + (52193, 539, 308, 'not_attending', '2020-09-02 20:34:20', '2025-12-17 19:47:56', '54k7DM54', '3183341'), + (52194, 539, 310, 'not_attending', '2020-08-22 22:09:41', '2025-12-17 19:47:56', '54k7DM54', '3186005'), + (52195, 539, 311, 'not_attending', '2020-09-19 22:17:25', '2025-12-17 19:47:56', '54k7DM54', '3186057'), + (52196, 539, 312, 'not_attending', '2020-09-05 23:15:42', '2025-12-17 19:47:56', '54k7DM54', '3187795'), + (52197, 539, 313, 'not_attending', '2020-08-22 22:09:43', '2025-12-17 19:47:56', '54k7DM54', '3188127'), + (52198, 539, 314, 'not_attending', '2020-08-22 22:09:56', '2025-12-17 19:47:56', '54k7DM54', '3188480'), + (52199, 539, 315, 'not_attending', '2020-09-05 23:15:31', '2025-12-17 19:47:56', '54k7DM54', '3189085'), + (52200, 539, 316, 'not_attending', '2020-08-26 23:32:42', '2025-12-17 19:47:56', '54k7DM54', '3191519'), + (52201, 539, 317, 'not_attending', '2020-08-26 23:32:46', '2025-12-17 19:47:56', '54k7DM54', '3191735'), + (52202, 539, 320, 'not_attending', '2020-09-02 20:34:23', '2025-12-17 19:47:56', '54k7DM54', '3195552'), + (52203, 539, 321, 'not_attending', '2020-09-05 23:15:25', '2025-12-17 19:47:56', '54k7DM54', '3197077'), + (52204, 539, 322, 'not_attending', '2020-09-05 23:16:04', '2025-12-17 19:47:56', '54k7DM54', '3197080'), + (52205, 539, 323, 'not_attending', '2020-09-05 23:16:09', '2025-12-17 19:47:56', '54k7DM54', '3197081'), + (52206, 539, 324, 'not_attending', '2020-09-12 00:07:45', '2025-12-17 19:47:56', '54k7DM54', '3197082'), + (52207, 539, 325, 'not_attending', '2020-09-12 00:07:51', '2025-12-17 19:47:51', '54k7DM54', '3197083'), + (52208, 539, 326, 'not_attending', '2020-09-12 00:07:56', '2025-12-17 19:47:52', '54k7DM54', '3197084'), + (52209, 539, 330, 'not_attending', '2020-09-06 18:23:57', '2025-12-17 19:47:56', '54k7DM54', '3197322'), + (52210, 539, 331, 'not_attending', '2020-09-02 20:34:28', '2025-12-17 19:47:56', '54k7DM54', '3198871'), + (52211, 539, 332, 'not_attending', '2020-09-05 23:15:39', '2025-12-17 19:47:56', '54k7DM54', '3198873'), + (52212, 539, 333, 'not_attending', '2020-10-08 23:32:18', '2025-12-17 19:47:52', '54k7DM54', '3199782'), + (52213, 539, 334, 'not_attending', '2020-10-03 22:29:02', '2025-12-17 19:47:52', '54k7DM54', '3199784'), + (52214, 539, 335, 'not_attending', '2020-09-02 20:34:26', '2025-12-17 19:47:56', '54k7DM54', '3200209'), + (52215, 539, 336, 'not_attending', '2020-09-05 23:16:02', '2025-12-17 19:47:56', '54k7DM54', '3200495'), + (52216, 539, 337, 'not_attending', '2020-09-05 23:15:37', '2025-12-17 19:47:56', '54k7DM54', '3201771'), + (52217, 539, 338, 'not_attending', '2020-09-05 23:15:20', '2025-12-17 19:47:56', '54k7DM54', '3203106'), + (52218, 539, 339, 'not_attending', '2020-09-05 23:15:40', '2025-12-17 19:47:56', '54k7DM54', '3204469'), + (52219, 539, 340, 'not_attending', '2020-09-05 23:16:05', '2025-12-17 19:47:56', '54k7DM54', '3204470'), + (52220, 539, 341, 'not_attending', '2020-09-12 00:07:52', '2025-12-17 19:47:52', '54k7DM54', '3204471'), + (52221, 539, 343, 'not_attending', '2020-09-12 00:07:48', '2025-12-17 19:47:56', '54k7DM54', '3206759'), + (52222, 539, 344, 'not_attending', '2020-10-03 22:29:50', '2025-12-17 19:47:53', '54k7DM54', '3206906'), + (52223, 539, 345, 'not_attending', '2020-09-12 00:07:26', '2025-12-17 19:47:56', '54k7DM54', '3207423'), + (52224, 539, 346, 'not_attending', '2020-09-12 00:07:30', '2025-12-17 19:47:56', '54k7DM54', '3207515'), + (52225, 539, 347, 'not_attending', '2020-09-12 00:07:54', '2025-12-17 19:47:51', '54k7DM54', '3207930'), + (52226, 539, 349, 'not_attending', '2020-09-12 00:07:32', '2025-12-17 19:47:56', '54k7DM54', '3209194'), + (52227, 539, 350, 'not_attending', '2020-09-12 00:07:21', '2025-12-17 19:47:56', '54k7DM54', '3209255'), + (52228, 539, 351, 'not_attending', '2020-09-12 00:07:35', '2025-12-17 19:47:56', '54k7DM54', '3209257'), + (52229, 539, 362, 'attending', '2020-09-26 22:44:15', '2025-12-17 19:47:52', '54k7DM54', '3214207'), + (52230, 539, 363, 'not_attending', '2020-09-17 22:53:23', '2025-12-17 19:47:52', '54k7DM54', '3217037'), + (52231, 539, 365, 'not_attending', '2020-09-18 21:21:24', '2025-12-17 19:47:51', '54k7DM54', '3218510'), + (52232, 539, 369, 'not_attending', '2020-10-03 22:29:10', '2025-12-17 19:47:52', '54k7DM54', '3221404'), + (52233, 539, 370, 'not_attending', '2020-10-03 22:29:14', '2025-12-17 19:47:52', '54k7DM54', '3221405'), + (52234, 539, 371, 'not_attending', '2020-10-17 17:44:15', '2025-12-17 19:47:52', '54k7DM54', '3221406'), + (52235, 539, 372, 'not_attending', '2020-10-03 22:29:32', '2025-12-17 19:47:52', '54k7DM54', '3221407'), + (52236, 539, 373, 'not_attending', '2020-10-03 22:29:36', '2025-12-17 19:47:52', '54k7DM54', '3221413'), + (52237, 539, 374, 'not_attending', '2020-10-03 22:29:43', '2025-12-17 19:47:53', '54k7DM54', '3221415'), + (52238, 539, 375, 'not_attending', '2020-10-03 22:29:03', '2025-12-17 19:47:52', '54k7DM54', '3222825'), + (52239, 539, 376, 'not_attending', '2020-10-03 22:29:18', '2025-12-17 19:47:52', '54k7DM54', '3222827'), + (52240, 539, 377, 'not_attending', '2020-10-19 22:32:33', '2025-12-17 19:47:53', '54k7DM54', '3222828'), + (52241, 539, 379, 'attending', '2020-10-03 22:28:57', '2025-12-17 19:47:52', '54k7DM54', '3226266'), + (52242, 539, 382, 'not_attending', '2020-10-03 22:29:13', '2025-12-17 19:47:52', '54k7DM54', '3226873'), + (52243, 539, 385, 'attending', '2020-10-03 22:28:55', '2025-12-17 19:47:52', '54k7DM54', '3228698'), + (52244, 539, 386, 'attending', '2020-10-10 22:32:10', '2025-12-17 19:47:52', '54k7DM54', '3228699'), + (52245, 539, 387, 'attending', '2020-10-17 23:02:50', '2025-12-17 19:47:52', '54k7DM54', '3228700'), + (52246, 539, 388, 'maybe', '2020-10-03 22:29:40', '2025-12-17 19:47:52', '54k7DM54', '3228701'), + (52247, 539, 390, 'not_attending', '2020-10-03 22:28:58', '2025-12-17 19:47:52', '54k7DM54', '3231510'), + (52248, 539, 392, 'not_attending', '2020-10-19 22:32:29', '2025-12-17 19:47:53', '54k7DM54', '3236447'), + (52249, 539, 394, 'not_attending', '2020-12-06 21:30:28', '2025-12-17 19:47:48', '54k7DM54', '3236449'), + (52250, 539, 398, 'not_attending', '2020-12-06 21:30:37', '2025-12-17 19:47:49', '54k7DM54', '3236453'), + (52251, 539, 399, 'not_attending', '2020-10-19 22:32:55', '2025-12-17 19:47:54', '54k7DM54', '3236454'), + (52252, 539, 400, 'not_attending', '2020-12-06 21:30:42', '2025-12-17 19:47:50', '54k7DM54', '3236455'), + (52253, 539, 403, 'not_attending', '2020-12-06 21:31:07', '2025-12-17 19:47:51', '54k7DM54', '3236458'), + (52254, 539, 404, 'not_attending', '2020-12-06 21:31:11', '2025-12-17 19:47:51', '54k7DM54', '3236460'), + (52255, 539, 405, 'not_attending', '2021-07-22 18:36:03', '2025-12-17 19:47:40', '54k7DM54', '3236462'), + (52256, 539, 406, 'not_attending', '2020-12-06 21:31:17', '2025-12-17 19:47:44', '54k7DM54', '3236464'), + (52257, 539, 408, 'not_attending', '2020-12-06 21:31:03', '2025-12-17 19:47:50', '54k7DM54', '3236466'), + (52258, 539, 409, 'not_attending', '2020-11-11 04:10:36', '2025-12-17 19:47:54', '54k7DM54', '3236467'), + (52259, 539, 410, 'not_attending', '2020-10-19 22:33:05', '2025-12-17 19:47:54', '54k7DM54', '3236469'), + (52260, 539, 413, 'not_attending', '2020-10-17 17:44:36', '2025-12-17 19:47:52', '54k7DM54', '3236670'), + (52261, 539, 414, 'not_attending', '2020-10-17 17:44:32', '2025-12-17 19:47:52', '54k7DM54', '3237277'), + (52262, 539, 419, 'not_attending', '2020-10-13 21:34:37', '2025-12-17 19:47:52', '54k7DM54', '3242234'), + (52263, 539, 421, 'not_attending', '2020-10-17 17:44:38', '2025-12-17 19:47:52', '54k7DM54', '3245294'), + (52264, 539, 422, 'not_attending', '2020-10-19 22:32:30', '2025-12-17 19:47:53', '54k7DM54', '3245295'), + (52265, 539, 423, 'not_attending', '2020-10-19 22:32:45', '2025-12-17 19:47:53', '54k7DM54', '3245296'), + (52266, 539, 424, 'not_attending', '2020-10-13 21:34:13', '2025-12-17 19:47:52', '54k7DM54', '3245751'), + (52267, 539, 426, 'not_attending', '2020-10-14 20:45:51', '2025-12-17 19:47:52', '54k7DM54', '3250232'), + (52268, 539, 427, 'attending', '2020-11-01 22:52:25', '2025-12-17 19:47:53', '54k7DM54', '3250233'), + (52269, 539, 428, 'not_attending', '2020-10-19 22:32:21', '2025-12-17 19:47:53', '54k7DM54', '3250332'), + (52270, 539, 429, 'maybe', '2020-11-11 04:10:33', '2025-12-17 19:47:54', '54k7DM54', '3250523'), + (52271, 539, 430, 'not_attending', '2020-10-17 17:44:34', '2025-12-17 19:47:52', '54k7DM54', '3253094'), + (52272, 539, 431, 'not_attending', '2020-10-19 22:32:23', '2025-12-17 19:47:53', '54k7DM54', '3253225'), + (52273, 539, 432, 'not_attending', '2020-10-19 22:32:42', '2025-12-17 19:47:53', '54k7DM54', '3254416'), + (52274, 539, 433, 'not_attending', '2020-10-19 22:32:47', '2025-12-17 19:47:53', '54k7DM54', '3254417'), + (52275, 539, 434, 'not_attending', '2020-10-19 22:32:53', '2025-12-17 19:47:53', '54k7DM54', '3254418'), + (52276, 539, 435, 'attending', '2020-10-17 20:55:37', '2025-12-17 19:47:52', '54k7DM54', '3254790'), + (52277, 539, 436, 'not_attending', '2020-10-19 22:32:16', '2025-12-17 19:47:52', '54k7DM54', '3256119'), + (52278, 539, 437, 'not_attending', '2020-10-19 22:32:27', '2025-12-17 19:47:53', '54k7DM54', '3256160'), + (52279, 539, 438, 'attending', '2020-11-01 03:17:31', '2025-12-17 19:47:53', '54k7DM54', '3256163'), + (52280, 539, 439, 'not_attending', '2020-10-19 22:32:26', '2025-12-17 19:47:53', '54k7DM54', '3256164'), + (52281, 539, 440, 'attending', '2020-11-08 00:52:55', '2025-12-17 19:47:53', '54k7DM54', '3256168'), + (52282, 539, 441, 'maybe', '2020-10-19 22:32:58', '2025-12-17 19:47:54', '54k7DM54', '3256169'), + (52283, 539, 442, 'not_attending', '2020-10-20 23:20:15', '2025-12-17 19:47:52', '54k7DM54', '3260345'), + (52284, 539, 443, 'not_attending', '2020-10-23 23:02:54', '2025-12-17 19:47:53', '54k7DM54', '3263578'), + (52285, 539, 444, 'not_attending', '2020-10-30 01:25:31', '2025-12-17 19:47:53', '54k7DM54', '3263745'), + (52286, 539, 445, 'not_attending', '2020-11-01 04:22:56', '2025-12-17 19:47:54', '54k7DM54', '3266138'), + (52287, 539, 449, 'not_attending', '2020-11-01 04:23:04', '2025-12-17 19:47:53', '54k7DM54', '3272055'), + (52288, 539, 450, 'not_attending', '2020-11-01 03:17:28', '2025-12-17 19:47:53', '54k7DM54', '3272102'), + (52289, 539, 451, 'not_attending', '2020-11-03 03:08:36', '2025-12-17 19:47:53', '54k7DM54', '3272186'), + (52290, 539, 452, 'not_attending', '2020-11-08 19:30:29', '2025-12-17 19:47:54', '54k7DM54', '3272981'), + (52291, 539, 453, 'not_attending', '2020-11-08 00:53:07', '2025-12-17 19:47:54', '54k7DM54', '3274032'), + (52292, 539, 454, 'not_attending', '2020-11-08 00:53:13', '2025-12-17 19:47:54', '54k7DM54', '3275665'), + (52293, 539, 456, 'not_attending', '2020-11-08 00:52:51', '2025-12-17 19:47:54', '54k7DM54', '3276428'), + (52294, 539, 457, 'not_attending', '2020-11-08 00:53:03', '2025-12-17 19:47:53', '54k7DM54', '3279087'), + (52295, 539, 458, 'not_attending', '2020-11-08 00:53:06', '2025-12-17 19:47:53', '54k7DM54', '3279233'), + (52296, 539, 459, 'not_attending', '2020-11-08 19:30:16', '2025-12-17 19:47:54', '54k7DM54', '3281467'), + (52297, 539, 460, 'not_attending', '2020-11-08 19:30:21', '2025-12-17 19:47:54', '54k7DM54', '3281468'), + (52298, 539, 461, 'not_attending', '2020-11-08 19:29:58', '2025-12-17 19:47:53', '54k7DM54', '3281469'), + (52299, 539, 462, 'not_attending', '2020-11-08 19:30:02', '2025-12-17 19:47:54', '54k7DM54', '3281470'), + (52300, 539, 463, 'not_attending', '2020-11-08 19:30:13', '2025-12-17 19:47:54', '54k7DM54', '3281553'), + (52301, 539, 464, 'not_attending', '2020-11-08 19:30:23', '2025-12-17 19:47:54', '54k7DM54', '3281554'), + (52302, 539, 465, 'not_attending', '2020-11-08 19:30:27', '2025-12-17 19:47:54', '54k7DM54', '3281555'), + (52303, 539, 466, 'not_attending', '2020-11-08 19:30:19', '2025-12-17 19:47:54', '54k7DM54', '3281829'), + (52304, 539, 467, 'not_attending', '2020-11-11 04:10:06', '2025-12-17 19:47:54', '54k7DM54', '3282756'), + (52305, 539, 468, 'maybe', '2020-11-11 04:10:14', '2025-12-17 19:47:54', '54k7DM54', '3285413'), + (52306, 539, 469, 'attending', '2020-11-29 00:39:18', '2025-12-17 19:47:54', '54k7DM54', '3285414'), + (52307, 539, 470, 'not_attending', '2020-11-11 04:09:59', '2025-12-17 19:47:54', '54k7DM54', '3285443'), + (52308, 539, 471, 'not_attending', '2020-11-11 04:10:09', '2025-12-17 19:47:54', '54k7DM54', '3285445'), + (52309, 539, 472, 'not_attending', '2020-11-13 02:01:03', '2025-12-17 19:47:54', '54k7DM54', '3286541'), + (52310, 539, 473, 'not_attending', '2020-11-13 02:01:09', '2025-12-17 19:47:54', '54k7DM54', '3286569'), + (52311, 539, 474, 'not_attending', '2020-11-13 02:00:56', '2025-12-17 19:47:54', '54k7DM54', '3286570'), + (52312, 539, 475, 'not_attending', '2020-11-12 03:29:09', '2025-12-17 19:47:54', '54k7DM54', '3286760'), + (52313, 539, 476, 'not_attending', '2020-11-13 02:01:12', '2025-12-17 19:47:54', '54k7DM54', '3286982'), + (52314, 539, 477, 'not_attending', '2020-12-02 01:45:22', '2025-12-17 19:47:54', '54k7DM54', '3289559'), + (52315, 539, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '54k7DM54', '3297764'), + (52316, 539, 488, 'not_attending', '2020-12-02 01:45:19', '2025-12-17 19:47:54', '54k7DM54', '3312757'), + (52317, 539, 490, 'not_attending', '2020-12-02 01:45:32', '2025-12-17 19:47:54', '54k7DM54', '3313532'), + (52318, 539, 491, 'not_attending', '2020-12-06 21:29:36', '2025-12-17 19:47:55', '54k7DM54', '3313533'), + (52319, 539, 492, 'not_attending', '2020-12-02 01:45:21', '2025-12-17 19:47:54', '54k7DM54', '3313731'), + (52320, 539, 493, 'maybe', '2020-12-02 01:45:24', '2025-12-17 19:47:54', '54k7DM54', '3313856'), + (52321, 539, 495, 'not_attending', '2020-12-02 01:45:29', '2025-12-17 19:47:54', '54k7DM54', '3314009'), + (52322, 539, 496, 'not_attending', '2020-12-06 21:29:33', '2025-12-17 19:47:54', '54k7DM54', '3314269'), + (52323, 539, 497, 'not_attending', '2020-12-06 21:30:06', '2025-12-17 19:47:55', '54k7DM54', '3314270'), + (52324, 539, 498, 'not_attending', '2020-12-02 01:45:30', '2025-12-17 19:47:54', '54k7DM54', '3314302'), + (52325, 539, 499, 'not_attending', '2020-12-03 01:34:13', '2025-12-17 19:47:55', '54k7DM54', '3314909'), + (52326, 539, 500, 'not_attending', '2020-12-06 21:30:12', '2025-12-17 19:47:55', '54k7DM54', '3314964'), + (52327, 539, 501, 'not_attending', '2020-12-06 21:29:30', '2025-12-17 19:47:54', '54k7DM54', '3317834'), + (52328, 539, 502, 'maybe', '2020-12-06 21:29:47', '2025-12-17 19:47:55', '54k7DM54', '3323365'), + (52329, 539, 503, 'not_attending', '2020-12-06 21:29:56', '2025-12-17 19:47:55', '54k7DM54', '3323366'), + (52330, 539, 504, 'not_attending', '2020-12-18 01:15:21', '2025-12-17 19:47:55', '54k7DM54', '3323368'), + (52331, 539, 505, 'not_attending', '2020-12-06 21:30:16', '2025-12-17 19:47:55', '54k7DM54', '3323369'), + (52332, 539, 506, 'not_attending', '2020-12-06 21:29:50', '2025-12-17 19:47:55', '54k7DM54', '3323375'), + (52333, 539, 507, 'not_attending', '2020-12-18 01:15:33', '2025-12-17 19:47:48', '54k7DM54', '3324148'), + (52334, 539, 508, 'not_attending', '2020-12-18 01:16:05', '2025-12-17 19:47:48', '54k7DM54', '3324231'), + (52335, 539, 509, 'not_attending', '2020-12-18 01:16:08', '2025-12-17 19:47:49', '54k7DM54', '3324232'), + (52336, 539, 510, 'not_attending', '2020-12-18 01:16:09', '2025-12-17 19:47:49', '54k7DM54', '3324233'), + (52337, 539, 513, 'not_attending', '2020-12-19 04:19:18', '2025-12-17 19:47:55', '54k7DM54', '3329383'), + (52338, 539, 516, 'attending', '2020-12-18 01:15:47', '2025-12-17 19:47:48', '54k7DM54', '3334530'), + (52339, 539, 517, 'not_attending', '2020-12-18 01:16:02', '2025-12-17 19:47:48', '54k7DM54', '3337137'), + (52340, 539, 518, 'not_attending', '2020-12-18 01:15:58', '2025-12-17 19:47:48', '54k7DM54', '3337138'), + (52341, 539, 519, 'not_attending', '2020-12-18 01:15:31', '2025-12-17 19:47:55', '54k7DM54', '3337448'), + (52342, 539, 520, 'not_attending', '2020-12-18 01:15:30', '2025-12-17 19:47:55', '54k7DM54', '3337453'), + (52343, 539, 521, 'not_attending', '2020-12-18 01:15:55', '2025-12-17 19:47:48', '54k7DM54', '3337454'), + (52344, 539, 522, 'not_attending', '2020-12-18 01:15:23', '2025-12-17 19:47:55', '54k7DM54', '3342836'), + (52345, 539, 523, 'not_attending', '2020-12-18 01:15:38', '2025-12-17 19:47:48', '54k7DM54', '3342960'), + (52346, 539, 524, 'not_attending', '2020-12-20 01:13:53', '2025-12-17 19:47:55', '54k7DM54', '3350120'), + (52347, 539, 526, 'attending', '2021-01-03 00:17:04', '2025-12-17 19:47:48', '54k7DM54', '3351539'), + (52348, 539, 528, 'attending', '2021-01-03 22:03:01', '2025-12-17 19:47:48', '54k7DM54', '3363022'), + (52349, 539, 531, 'not_attending', '2021-01-02 05:36:53', '2025-12-17 19:47:48', '54k7DM54', '3378210'), + (52350, 539, 536, 'attending', '2021-01-10 00:05:03', '2025-12-17 19:47:48', '54k7DM54', '3386848'), + (52351, 539, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '54k7DM54', '3389527'), + (52352, 539, 543, 'not_attending', '2021-01-12 04:32:09', '2025-12-17 19:47:48', '54k7DM54', '3396499'), + (52353, 539, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '54k7DM54', '3403650'), + (52354, 539, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '54k7DM54', '3406988'), + (52355, 539, 553, 'not_attending', '2021-01-13 04:39:04', '2025-12-17 19:47:48', '54k7DM54', '3407248'), + (52356, 539, 555, 'attending', '2021-01-24 01:10:06', '2025-12-17 19:47:49', '54k7DM54', '3416576'), + (52357, 539, 558, 'not_attending', '2021-01-19 18:29:34', '2025-12-17 19:47:49', '54k7DM54', '3418925'), + (52358, 539, 567, 'attending', '2021-01-24 05:31:31', '2025-12-17 19:47:50', '54k7DM54', '3428895'), + (52359, 539, 568, 'attending', '2021-01-31 00:28:59', '2025-12-17 19:47:50', '54k7DM54', '3430267'), + (52360, 539, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', '54k7DM54', '3432673'), + (52361, 539, 600, 'not_attending', '2021-02-06 03:31:55', '2025-12-17 19:47:50', '54k7DM54', '3468125'), + (52362, 539, 602, 'attending', '2021-02-14 00:07:44', '2025-12-17 19:47:50', '54k7DM54', '3470303'), + (52363, 539, 603, 'attending', '2021-02-20 23:57:54', '2025-12-17 19:47:50', '54k7DM54', '3470304'), + (52364, 539, 604, 'attending', '2021-02-28 00:39:19', '2025-12-17 19:47:50', '54k7DM54', '3470305'), + (52365, 539, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '54k7DM54', '3470991'), + (52366, 539, 621, 'attending', '2021-03-07 01:04:21', '2025-12-17 19:47:51', '54k7DM54', '3517815'), + (52367, 539, 622, 'attending', '2021-03-14 00:29:33', '2025-12-17 19:47:51', '54k7DM54', '3517816'), + (52368, 539, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '54k7DM54', '3523941'), + (52369, 539, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '54k7DM54', '3533850'), + (52370, 539, 633, 'not_attending', '2021-03-24 00:04:32', '2025-12-17 19:47:44', '54k7DM54', '3534717'), + (52371, 539, 634, 'not_attending', '2021-03-24 00:04:48', '2025-12-17 19:47:44', '54k7DM54', '3534718'), + (52372, 539, 638, 'not_attending', '2021-03-02 07:29:30', '2025-12-17 19:47:44', '54k7DM54', '3536632'), + (52373, 539, 639, 'not_attending', '2021-03-02 07:29:33', '2025-12-17 19:47:51', '54k7DM54', '3536656'), + (52374, 539, 641, 'attending', '2021-04-03 22:45:24', '2025-12-17 19:47:44', '54k7DM54', '3539916'), + (52375, 539, 642, 'attending', '2021-04-10 22:58:53', '2025-12-17 19:47:44', '54k7DM54', '3539917'), + (52376, 539, 643, 'attending', '2021-04-17 22:03:20', '2025-12-17 19:47:45', '54k7DM54', '3539918'), + (52377, 539, 644, 'attending', '2021-04-24 22:41:59', '2025-12-17 19:47:45', '54k7DM54', '3539919'), + (52378, 539, 645, 'attending', '2021-05-08 22:41:05', '2025-12-17 19:47:46', '54k7DM54', '3539920'), + (52379, 539, 646, 'not_attending', '2021-05-15 04:48:20', '2025-12-17 19:47:46', '54k7DM54', '3539921'), + (52380, 539, 647, 'attending', '2021-05-22 22:02:01', '2025-12-17 19:47:46', '54k7DM54', '3539922'), + (52381, 539, 648, 'attending', '2021-05-29 21:22:11', '2025-12-17 19:47:47', '54k7DM54', '3539923'), + (52382, 539, 649, 'attending', '2021-03-20 22:50:22', '2025-12-17 19:47:51', '54k7DM54', '3539927'), + (52383, 539, 650, 'not_attending', '2021-03-24 00:04:33', '2025-12-17 19:47:44', '54k7DM54', '3539928'), + (52384, 539, 661, 'not_attending', '2021-03-24 00:04:50', '2025-12-17 19:47:44', '54k7DM54', '3547137'), + (52385, 539, 676, 'not_attending', '2021-07-22 18:36:09', '2025-12-17 19:47:40', '54k7DM54', '3547154'), + (52386, 539, 689, 'not_attending', '2021-03-24 00:04:29', '2025-12-17 19:47:44', '54k7DM54', '3555564'), + (52387, 539, 690, 'not_attending', '2021-03-24 00:04:26', '2025-12-17 19:47:44', '54k7DM54', '3559954'), + (52388, 539, 697, 'not_attending', '2021-03-24 00:04:40', '2025-12-17 19:47:44', '54k7DM54', '3567537'), + (52389, 539, 698, 'not_attending', '2021-03-24 00:04:28', '2025-12-17 19:47:44', '54k7DM54', '3571867'), + (52390, 539, 699, 'not_attending', '2021-03-24 00:04:42', '2025-12-17 19:47:44', '54k7DM54', '3572241'), + (52391, 539, 700, 'not_attending', '2021-03-24 00:04:43', '2025-12-17 19:47:44', '54k7DM54', '3575725'), + (52392, 539, 704, 'not_attending', '2021-03-24 00:04:44', '2025-12-17 19:47:44', '54k7DM54', '3581429'), + (52393, 539, 705, 'maybe', '2021-03-24 00:04:38', '2025-12-17 19:47:44', '54k7DM54', '3581895'), + (52394, 539, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54k7DM54', '3582734'), + (52395, 539, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '54k7DM54', '3583262'), + (52396, 539, 708, 'not_attending', '2021-03-24 00:04:30', '2025-12-17 19:47:44', '54k7DM54', '3587850'), + (52397, 539, 709, 'not_attending', '2021-03-24 00:05:21', '2025-12-17 19:47:44', '54k7DM54', '3587852'), + (52398, 539, 711, 'not_attending', '2021-03-24 00:04:46', '2025-12-17 19:47:44', '54k7DM54', '3588075'), + (52399, 539, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '54k7DM54', '3619523'), + (52400, 539, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '54k7DM54', '3661369'), + (52401, 539, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54k7DM54', '3674262'), + (52402, 539, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54k7DM54', '3677402'), + (52403, 539, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54k7DM54', '3730212'), + (52404, 539, 777, 'not_attending', '2021-05-01 21:10:51', '2025-12-17 19:47:46', '54k7DM54', '3746248'), + (52405, 539, 790, 'attending', '2021-05-06 22:51:20', '2025-12-17 19:47:46', '54k7DM54', '3789923'), + (52406, 539, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '54k7DM54', '3793156'), + (52407, 539, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '54k7DM54', '3974109'), + (52408, 539, 827, 'not_attending', '2021-06-05 19:51:55', '2025-12-17 19:47:47', '54k7DM54', '3975311'), + (52409, 539, 828, 'attending', '2021-06-12 22:47:43', '2025-12-17 19:47:47', '54k7DM54', '3975312'), + (52410, 539, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54k7DM54', '3994992'), + (52411, 539, 844, 'not_attending', '2021-06-10 14:04:45', '2025-12-17 19:47:38', '54k7DM54', '4014338'), + (52412, 539, 863, 'not_attending', '2021-10-13 02:58:14', '2025-12-17 19:47:35', '54k7DM54', '4015997'), + (52413, 539, 864, 'not_attending', '2021-10-13 02:58:55', '2025-12-17 19:47:37', '54k7DM54', '4015998'), + (52414, 539, 867, 'attending', '2021-06-26 22:20:46', '2025-12-17 19:47:38', '54k7DM54', '4021848'), + (52415, 539, 869, 'not_attending', '2021-06-16 04:02:27', '2025-12-17 19:47:38', '54k7DM54', '4136744'), + (52416, 539, 870, 'not_attending', '2021-07-03 04:16:14', '2025-12-17 19:47:39', '54k7DM54', '4136937'), + (52417, 539, 871, 'attending', '2021-07-10 22:36:33', '2025-12-17 19:47:39', '54k7DM54', '4136938'), + (52418, 539, 872, 'not_attending', '2021-06-23 23:21:24', '2025-12-17 19:47:40', '54k7DM54', '4136947'), + (52419, 539, 880, 'attending', '2021-06-18 07:07:00', '2025-12-17 19:47:48', '54k7DM54', '4205383'), + (52420, 539, 884, 'maybe', '2021-07-17 08:01:31', '2025-12-17 19:47:42', '54k7DM54', '4210314'), + (52421, 539, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54k7DM54', '4225444'), + (52422, 539, 899, 'not_attending', '2021-07-03 04:16:36', '2025-12-17 19:47:39', '54k7DM54', '4239259'), + (52423, 539, 900, 'attending', '2021-07-24 20:48:04', '2025-12-17 19:47:40', '54k7DM54', '4240316'), + (52424, 539, 901, 'attending', '2021-07-31 22:22:26', '2025-12-17 19:47:40', '54k7DM54', '4240317'), + (52425, 539, 902, 'attending', '2021-08-07 22:17:24', '2025-12-17 19:47:41', '54k7DM54', '4240318'), + (52426, 539, 903, 'attending', '2021-08-14 22:28:01', '2025-12-17 19:47:42', '54k7DM54', '4240320'), + (52427, 539, 905, 'not_attending', '2021-07-07 23:32:48', '2025-12-17 19:47:39', '54k7DM54', '4250163'), + (52428, 539, 916, 'not_attending', '2021-07-22 18:36:02', '2025-12-17 19:47:40', '54k7DM54', '4273772'), + (52429, 539, 919, 'not_attending', '2021-07-17 22:06:34', '2025-12-17 19:47:39', '54k7DM54', '4275957'), + (52430, 539, 920, 'not_attending', '2021-07-25 21:43:32', '2025-12-17 19:47:40', '54k7DM54', '4277819'), + (52431, 539, 922, 'not_attending', '2021-07-22 18:36:06', '2025-12-17 19:47:40', '54k7DM54', '4280811'), + (52432, 539, 923, 'not_attending', '2021-07-22 18:36:05', '2025-12-17 19:47:40', '54k7DM54', '4292773'), + (52433, 539, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54k7DM54', '4301723'), + (52434, 539, 934, 'not_attending', '2021-08-03 06:09:15', '2025-12-17 19:47:41', '54k7DM54', '4302093'), + (52435, 539, 935, 'not_attending', '2021-08-13 04:06:31', '2025-12-17 19:47:41', '54k7DM54', '4304151'), + (52436, 539, 936, 'not_attending', '2021-07-25 21:43:39', '2025-12-17 19:47:40', '54k7DM54', '4305951'), + (52437, 539, 961, 'not_attending', '2021-08-08 16:27:05', '2025-12-17 19:47:42', '54k7DM54', '4345519'), + (52438, 539, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54k7DM54', '4356801'), + (52439, 539, 972, 'not_attending', '2021-08-13 23:31:17', '2025-12-17 19:47:42', '54k7DM54', '4358025'), + (52440, 539, 973, 'maybe', '2021-08-18 12:14:29', '2025-12-17 19:47:42', '54k7DM54', '4366186'), + (52441, 539, 974, 'not_attending', '2021-08-18 12:14:24', '2025-12-17 19:47:42', '54k7DM54', '4366187'), + (52442, 539, 988, 'not_attending', '2021-08-27 22:13:31', '2025-12-17 19:47:42', '54k7DM54', '4402823'), + (52443, 539, 990, 'attending', '2021-09-04 21:56:07', '2025-12-17 19:47:43', '54k7DM54', '4420735'), + (52444, 539, 991, 'attending', '2021-09-11 22:50:40', '2025-12-17 19:47:43', '54k7DM54', '4420738'), + (52445, 539, 992, 'attending', '2021-09-18 22:31:36', '2025-12-17 19:47:33', '54k7DM54', '4420739'), + (52446, 539, 993, 'attending', '2021-09-25 22:04:56', '2025-12-17 19:47:34', '54k7DM54', '4420741'), + (52447, 539, 994, 'not_attending', '2021-10-02 02:00:11', '2025-12-17 19:47:34', '54k7DM54', '4420742'), + (52448, 539, 995, 'attending', '2021-10-09 21:59:04', '2025-12-17 19:47:34', '54k7DM54', '4420744'), + (52449, 539, 996, 'attending', '2021-10-16 22:16:05', '2025-12-17 19:47:35', '54k7DM54', '4420747'), + (52450, 539, 997, 'not_attending', '2021-10-22 02:19:18', '2025-12-17 19:47:35', '54k7DM54', '4420748'), + (52451, 539, 998, 'attending', '2021-10-30 21:41:34', '2025-12-17 19:47:36', '54k7DM54', '4420749'), + (52452, 539, 1008, 'not_attending', '2021-10-13 02:58:25', '2025-12-17 19:47:35', '54k7DM54', '4438810'), + (52453, 539, 1010, 'not_attending', '2021-10-13 02:58:45', '2025-12-17 19:47:36', '54k7DM54', '4438812'), + (52454, 539, 1011, 'not_attending', '2021-10-13 02:58:39', '2025-12-17 19:47:36', '54k7DM54', '4438814'), + (52455, 539, 1012, 'not_attending', '2021-10-13 02:58:49', '2025-12-17 19:47:36', '54k7DM54', '4438816'), + (52456, 539, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '54k7DM54', '4461883'), + (52457, 539, 1044, 'not_attending', '2021-10-28 21:42:38', '2025-12-17 19:47:36', '54k7DM54', '4496609'), + (52458, 539, 1045, 'not_attending', '2021-10-28 21:42:16', '2025-12-17 19:47:36', '54k7DM54', '4496610'), + (52459, 539, 1046, 'not_attending', '2021-10-16 22:16:13', '2025-12-17 19:47:35', '54k7DM54', '4496611'), + (52460, 539, 1048, 'not_attending', '2021-10-28 21:42:42', '2025-12-17 19:47:36', '54k7DM54', '4496613'), + (52461, 539, 1067, 'not_attending', '2021-09-24 15:46:57', '2025-12-17 19:47:34', '54k7DM54', '4508342'), + (52462, 539, 1077, 'not_attending', '2021-10-13 02:58:03', '2025-12-17 19:47:34', '54k7DM54', '4540903'), + (52463, 539, 1079, 'not_attending', '2021-10-13 02:58:26', '2025-12-17 19:47:35', '54k7DM54', '4563823'), + (52464, 539, 1081, 'not_attending', '2021-10-13 02:57:59', '2025-12-17 19:47:34', '54k7DM54', '4564602'), + (52465, 539, 1082, 'not_attending', '2021-10-13 02:58:09', '2025-12-17 19:47:35', '54k7DM54', '4566762'), + (52466, 539, 1083, 'not_attending', '2021-10-13 02:58:05', '2025-12-17 19:47:34', '54k7DM54', '4566768'), + (52467, 539, 1084, 'not_attending', '2021-10-13 02:58:16', '2025-12-17 19:47:35', '54k7DM54', '4566769'), + (52468, 539, 1086, 'not_attending', '2021-10-13 02:57:44', '2025-12-17 19:47:35', '54k7DM54', '4568602'), + (52469, 539, 1087, 'not_attending', '2021-10-16 22:16:11', '2025-12-17 19:47:35', '54k7DM54', '4572153'), + (52470, 539, 1093, 'not_attending', '2021-10-23 20:57:27', '2025-12-17 19:47:35', '54k7DM54', '4585962'), + (52471, 539, 1094, 'not_attending', '2021-10-28 21:42:22', '2025-12-17 19:47:36', '54k7DM54', '4587337'), + (52472, 539, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '54k7DM54', '4596356'), + (52473, 539, 1096, 'not_attending', '2021-10-28 21:42:12', '2025-12-17 19:47:36', '54k7DM54', '4596453'), + (52474, 539, 1097, 'not_attending', '2021-10-28 21:42:25', '2025-12-17 19:47:36', '54k7DM54', '4598860'), + (52475, 539, 1098, 'not_attending', '2021-10-28 21:42:40', '2025-12-17 19:47:36', '54k7DM54', '4598861'), + (52476, 539, 1099, 'not_attending', '2021-11-06 21:08:59', '2025-12-17 19:47:36', '54k7DM54', '4602797'), + (52477, 539, 1103, 'not_attending', '2021-11-13 23:17:29', '2025-12-17 19:47:36', '54k7DM54', '4616350'), + (52478, 539, 1104, 'not_attending', '2021-11-13 23:17:34', '2025-12-17 19:47:36', '54k7DM54', '4618310'), + (52479, 539, 1107, 'not_attending', '2021-11-13 23:17:43', '2025-12-17 19:47:37', '54k7DM54', '4620697'), + (52480, 539, 1108, 'not_attending', '2021-11-13 23:17:52', '2025-12-17 19:47:37', '54k7DM54', '4632276'), + (52481, 539, 1114, 'not_attending', '2021-11-13 23:17:07', '2025-12-17 19:47:36', '54k7DM54', '4637896'), + (52482, 539, 1115, 'not_attending', '2021-11-13 23:17:47', '2025-12-17 19:47:37', '54k7DM54', '4638673'), + (52483, 539, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '54k7DM54', '4642994'), + (52484, 539, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '54k7DM54', '4642995'), + (52485, 539, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '54k7DM54', '4642996'), + (52486, 539, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '54k7DM54', '4642997'), + (52487, 539, 1126, 'not_attending', '2021-12-11 23:56:25', '2025-12-17 19:47:38', '54k7DM54', '4645687'), + (52488, 539, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '54k7DM54', '4645698'), + (52489, 539, 1128, 'attending', '2021-11-20 23:01:22', '2025-12-17 19:47:37', '54k7DM54', '4645704'), + (52490, 539, 1129, 'attending', '2021-11-28 00:01:30', '2025-12-17 19:47:37', '54k7DM54', '4645705'), + (52491, 539, 1130, 'not_attending', '2021-12-05 00:02:33', '2025-12-17 19:47:37', '54k7DM54', '4658824'), + (52492, 539, 1131, 'not_attending', '2021-12-18 22:55:11', '2025-12-17 19:47:31', '54k7DM54', '4658825'), + (52493, 539, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '54k7DM54', '4668385'), + (52494, 539, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '54k7DM54', '4694407'), + (52495, 539, 1173, 'not_attending', '2022-01-09 00:40:29', '2025-12-17 19:47:31', '54k7DM54', '4736495'), + (52496, 539, 1174, 'attending', '2022-01-13 00:40:46', '2025-12-17 19:47:31', '54k7DM54', '4736496'), + (52497, 539, 1175, 'attending', '2022-01-22 23:22:17', '2025-12-17 19:47:32', '54k7DM54', '4736497'), + (52498, 539, 1176, 'attending', '2022-02-06 00:04:12', '2025-12-17 19:47:32', '54k7DM54', '4736498'), + (52499, 539, 1177, 'attending', '2022-02-12 23:06:16', '2025-12-17 19:47:32', '54k7DM54', '4736499'), + (52500, 539, 1178, 'attending', '2022-01-29 22:29:30', '2025-12-17 19:47:32', '54k7DM54', '4736500'), + (52501, 539, 1179, 'attending', '2022-02-20 00:01:38', '2025-12-17 19:47:32', '54k7DM54', '4736501'), + (52502, 539, 1180, 'not_attending', '2022-02-27 00:06:18', '2025-12-17 19:47:33', '54k7DM54', '4736502'), + (52503, 539, 1181, 'attending', '2022-03-05 22:00:18', '2025-12-17 19:47:33', '54k7DM54', '4736503'), + (52504, 539, 1182, 'attending', '2022-03-12 23:50:44', '2025-12-17 19:47:33', '54k7DM54', '4736504'), + (52505, 539, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '54k7DM54', '4746789'), + (52506, 539, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '54k7DM54', '4753929'), + (52507, 539, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '54k7DM54', '5038850'), + (52508, 539, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '54k7DM54', '5045826'), + (52509, 539, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '54k7DM54', '5132533'), + (52510, 539, 1272, 'attending', '2022-03-19 22:19:55', '2025-12-17 19:47:25', '54k7DM54', '5186582'), + (52511, 539, 1273, 'attending', '2022-03-26 21:52:47', '2025-12-17 19:47:25', '54k7DM54', '5186583'), + (52512, 539, 1274, 'attending', '2022-04-02 22:06:14', '2025-12-17 19:47:26', '54k7DM54', '5186585'), + (52513, 539, 1281, 'not_attending', '2022-04-09 20:31:04', '2025-12-17 19:47:27', '54k7DM54', '5190437'), + (52514, 539, 1284, 'not_attending', '2022-04-09 20:31:10', '2025-12-17 19:47:27', '54k7DM54', '5195095'), + (52515, 539, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '54k7DM54', '5215989'), + (52516, 539, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '54k7DM54', '5223686'), + (52517, 539, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '54k7DM54', '5227432'), + (52518, 539, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', '54k7DM54', '5231461'), + (52519, 539, 1346, 'not_attending', '2022-04-23 19:30:16', '2025-12-17 19:47:27', '54k7DM54', '5247467'), + (52520, 539, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '54k7DM54', '5260800'), + (52521, 539, 1374, 'attending', '2022-05-01 17:24:10', '2025-12-17 19:47:28', '54k7DM54', '5269930'), + (52522, 539, 1378, 'attending', '2022-05-14 03:53:22', '2025-12-17 19:47:29', '54k7DM54', '5271448'), + (52523, 539, 1379, 'attending', '2022-05-21 20:55:03', '2025-12-17 19:47:29', '54k7DM54', '5271449'), + (52524, 539, 1380, 'maybe', '2022-05-28 06:43:23', '2025-12-17 19:47:30', '54k7DM54', '5271450'), + (52525, 539, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '54k7DM54', '5276469'), + (52526, 539, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '54k7DM54', '5278159'), + (52527, 539, 1407, 'attending', '2022-06-04 08:10:53', '2025-12-17 19:47:30', '54k7DM54', '5363695'), + (52528, 539, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '54k7DM54', '5365960'), + (52529, 539, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '54k7DM54', '5368973'), + (52530, 539, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '54k7DM54', '5378247'), + (52531, 539, 1431, 'attending', '2022-06-11 21:35:03', '2025-12-17 19:47:30', '54k7DM54', '5389605'), + (52532, 539, 1442, 'attending', '2022-06-18 21:46:57', '2025-12-17 19:47:17', '54k7DM54', '5397265'), + (52533, 539, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '54k7DM54', '5403967'), + (52534, 539, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '54k7DM54', '5404786'), + (52535, 539, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '54k7DM54', '5405203'), + (52536, 539, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '54k7DM54', '5408794'), + (52537, 539, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '54k7DM54', '5411699'), + (52538, 539, 1482, 'attending', '2022-06-25 17:14:47', '2025-12-17 19:47:19', '54k7DM54', '5412550'), + (52539, 539, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '54k7DM54', '5415046'), + (52540, 539, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '54k7DM54', '5422086'), + (52541, 539, 1498, 'not_attending', '2022-07-02 20:28:58', '2025-12-17 19:47:19', '54k7DM54', '5422406'), + (52542, 539, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '54k7DM54', '5424565'), + (52543, 539, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '54k7DM54', '5426882'), + (52544, 539, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '54k7DM54', '5427083'), + (52545, 539, 1511, 'attending', '2022-07-09 21:59:17', '2025-12-17 19:47:19', '54k7DM54', '5437733'), + (52546, 539, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '54k7DM54', '5441125'), + (52547, 539, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '54k7DM54', '5441126'), + (52548, 539, 1515, 'attending', '2022-08-06 22:00:08', '2025-12-17 19:47:21', '54k7DM54', '5441128'), + (52549, 539, 1516, 'attending', '2022-08-20 22:42:30', '2025-12-17 19:47:23', '54k7DM54', '5441129'), + (52550, 539, 1517, 'attending', '2022-08-27 03:23:27', '2025-12-17 19:47:23', '54k7DM54', '5441130'), + (52551, 539, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '54k7DM54', '5441131'), + (52552, 539, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '54k7DM54', '5441132'), + (52553, 539, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '54k7DM54', '5446643'), + (52554, 539, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '54k7DM54', '5453325'), + (52555, 539, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '54k7DM54', '5454516'), + (52556, 539, 1544, 'not_attending', '2022-09-15 14:14:08', '2025-12-17 19:47:11', '54k7DM54', '5454517'), + (52557, 539, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '54k7DM54', '5454605'), + (52558, 539, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '54k7DM54', '5455037'), + (52559, 539, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '54k7DM54', '5461278'), + (52560, 539, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '54k7DM54', '5469480'), + (52561, 539, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '54k7DM54', '5471073'), + (52562, 539, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '54k7DM54', '5474663'), + (52563, 539, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '54k7DM54', '5482022'), + (52564, 539, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '54k7DM54', '5482793'), + (52565, 539, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '54k7DM54', '5488912'), + (52566, 539, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '54k7DM54', '5492192'), + (52567, 539, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '54k7DM54', '5493139'), + (52568, 539, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '54k7DM54', '5493200'), + (52569, 539, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '54k7DM54', '5502188'), + (52570, 539, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '54k7DM54', '5505059'), + (52571, 539, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '54k7DM54', '5509055'), + (52572, 539, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '54k7DM54', '5512862'), + (52573, 539, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '54k7DM54', '5513985'), + (52574, 539, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '54k7DM54', '5519981'), + (52575, 539, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '54k7DM54', '5522550'), + (52576, 539, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '54k7DM54', '5534683'), + (52577, 539, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '54k7DM54', '5537735'), + (52578, 539, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '54k7DM54', '5540859'), + (52579, 539, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '54k7DM54', '5546619'), + (52580, 539, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '54k7DM54', '5555245'), + (52581, 539, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '54k7DM54', '5557747'), + (52582, 539, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '54k7DM54', '5560255'), + (52583, 539, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '54k7DM54', '5562906'), + (52584, 539, 1667, 'attending', '2022-09-24 18:45:47', '2025-12-17 19:47:11', '54k7DM54', '5563221'), + (52585, 539, 1668, 'not_attending', '2022-10-01 22:11:18', '2025-12-17 19:47:12', '54k7DM54', '5563222'), + (52586, 539, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '54k7DM54', '5600604'), + (52587, 539, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '54k7DM54', '5605544'), + (52588, 539, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '54k7DM54', '5606737'), + (52589, 539, 1719, 'not_attending', '2022-10-07 15:01:19', '2025-12-17 19:47:12', '54k7DM54', '5630958'), + (52590, 539, 1720, 'attending', '2022-10-15 17:44:31', '2025-12-17 19:47:12', '54k7DM54', '5630959'), + (52591, 539, 1721, 'attending', '2022-10-22 02:37:28', '2025-12-17 19:47:13', '54k7DM54', '5630960'), + (52592, 539, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '54k7DM54', '5630961'), + (52593, 539, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '54k7DM54', '5630962'), + (52594, 539, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '54k7DM54', '5630966'), + (52595, 539, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '54k7DM54', '5630967'), + (52596, 539, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '54k7DM54', '5630968'), + (52597, 539, 1727, 'attending', '2022-12-03 08:16:11', '2025-12-17 19:47:16', '54k7DM54', '5630969'), + (52598, 539, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '54k7DM54', '5635406'), + (52599, 539, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '54k7DM54', '5638765'), + (52600, 539, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '54k7DM54', '5640097'), + (52601, 539, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '54k7DM54', '5640843'), + (52602, 539, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '54k7DM54', '5641521'), + (52603, 539, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '54k7DM54', '5642818'), + (52604, 539, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '54k7DM54', '5652395'), + (52605, 539, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '54k7DM54', '5670445'), + (52606, 539, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '54k7DM54', '5671637'), + (52607, 539, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '54k7DM54', '5672329'), + (52608, 539, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '54k7DM54', '5674057'), + (52609, 539, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '54k7DM54', '5674060'), + (52610, 539, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '54k7DM54', '5677461'), + (52611, 539, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '54k7DM54', '5698046'), + (52612, 539, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '54k7DM54', '5699760'), + (52613, 539, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '54k7DM54', '5741601'), + (52614, 539, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '54k7DM54', '5763458'), + (52615, 539, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '54k7DM54', '5774172'), + (52616, 539, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '54k7DM54', '5818247'), + (52617, 539, 1834, 'not_attending', '2022-12-10 22:51:11', '2025-12-17 19:47:17', '54k7DM54', '5819470'), + (52618, 539, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '54k7DM54', '5819471'), + (52619, 539, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '54k7DM54', '5827739'), + (52620, 539, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '54k7DM54', '5844306'), + (52621, 539, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '54k7DM54', '5850159'), + (52622, 539, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '54k7DM54', '5858999'), + (52623, 539, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '54k7DM54', '5871984'), + (52624, 539, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '54k7DM54', '5876354'), + (52625, 539, 1864, 'attending', '2023-01-18 19:00:34', '2025-12-17 19:47:05', '54k7DM54', '5879675'), + (52626, 539, 1865, 'attending', '2023-01-27 04:38:39', '2025-12-17 19:47:06', '54k7DM54', '5879676'), + (52627, 539, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '54k7DM54', '5880939'), + (52628, 539, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '54k7DM54', '5880940'), + (52629, 539, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '54k7DM54', '5880942'), + (52630, 539, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '54k7DM54', '5880943'), + (52631, 539, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '54k7DM54', '5887890'), + (52632, 539, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '54k7DM54', '5888598'), + (52633, 539, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '54k7DM54', '5893260'), + (52634, 539, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '54k7DM54', '5899826'), + (52635, 539, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '54k7DM54', '5900199'), + (52636, 539, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '54k7DM54', '5900200'), + (52637, 539, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '54k7DM54', '5900202'), + (52638, 539, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '54k7DM54', '5900203'), + (52639, 539, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '54k7DM54', '5901108'), + (52640, 539, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '54k7DM54', '5901126'), + (52641, 539, 1897, 'attending', '2023-02-11 16:28:37', '2025-12-17 19:47:07', '54k7DM54', '5901128'), + (52642, 539, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '54k7DM54', '5909655'), + (52643, 539, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '54k7DM54', '5910522'), + (52644, 539, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '54k7DM54', '5910526'), + (52645, 539, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '54k7DM54', '5910528'), + (52646, 539, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '54k7DM54', '5916219'), + (52647, 539, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '54k7DM54', '5936234'), + (52648, 539, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '54k7DM54', '5958351'), + (52649, 539, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '54k7DM54', '5959751'), + (52650, 539, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '54k7DM54', '5959755'), + (52651, 539, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '54k7DM54', '5960055'), + (52652, 539, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '54k7DM54', '5961684'), + (52653, 539, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '54k7DM54', '5962132'), + (52654, 539, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '54k7DM54', '5962133'), + (52655, 539, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '54k7DM54', '5962134'), + (52656, 539, 1947, 'not_attending', '2023-02-25 23:59:57', '2025-12-17 19:47:09', '54k7DM54', '5962233'), + (52657, 539, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '54k7DM54', '5962317'), + (52658, 539, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '54k7DM54', '5962318'), + (52659, 539, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '54k7DM54', '5965933'), + (52660, 539, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '54k7DM54', '5967014'), + (52661, 539, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '54k7DM54', '5972763'), + (52662, 539, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '54k7DM54', '5972815'), + (52663, 539, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '54k7DM54', '5974016'), + (52664, 539, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '54k7DM54', '5981515'), + (52665, 539, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '54k7DM54', '5993516'), + (52666, 539, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '54k7DM54', '5998939'), + (52667, 539, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '54k7DM54', '6028191'), + (52668, 539, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '54k7DM54', '6040066'), + (52669, 539, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '54k7DM54', '6042717'), + (52670, 539, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '54k7DM54', '6044838'), + (52671, 539, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '54k7DM54', '6044839'), + (52672, 539, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54k7DM54', '6045684'), + (52673, 539, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '54k7DM54', '6050104'), + (52674, 539, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '54k7DM54', '6053195'), + (52675, 539, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '54k7DM54', '6053198'), + (52676, 539, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '54k7DM54', '6056085'), + (52677, 539, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '54k7DM54', '6056916'), + (52678, 539, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '54k7DM54', '6059290'), + (52679, 539, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '54k7DM54', '6060328'), + (52680, 539, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '54k7DM54', '6061037'), + (52681, 539, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '54k7DM54', '6061039'), + (52682, 539, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '54k7DM54', '6067245'), + (52683, 539, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '54k7DM54', '6068094'), + (52684, 539, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '54k7DM54', '6068252'), + (52685, 539, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '54k7DM54', '6068253'), + (52686, 539, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '54k7DM54', '6068254'), + (52687, 539, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '54k7DM54', '6068280'), + (52688, 539, 2032, 'attending', '2023-06-03 03:12:37', '2025-12-17 19:47:04', '54k7DM54', '6068281'), + (52689, 539, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '54k7DM54', '6069093'), + (52690, 539, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '54k7DM54', '6072528'), + (52691, 539, 2048, 'attending', '2023-05-10 01:45:40', '2025-12-17 19:47:03', '54k7DM54', '6076415'), + (52692, 539, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '54k7DM54', '6079840'), + (52693, 539, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '54k7DM54', '6083398'), + (52694, 539, 2052, 'maybe', '2023-05-04 19:59:54', '2025-12-17 19:47:02', '54k7DM54', '6088220'), + (52695, 539, 2053, 'attending', '2023-05-09 01:53:07', '2025-12-17 19:47:02', '54k7DM54', '6092644'), + (52696, 539, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '54k7DM54', '6093504'), + (52697, 539, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '54k7DM54', '6097414'), + (52698, 539, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '54k7DM54', '6097442'), + (52699, 539, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '54k7DM54', '6097684'), + (52700, 539, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '54k7DM54', '6098762'), + (52701, 539, 2064, 'not_attending', '2023-06-25 01:49:06', '2025-12-17 19:46:50', '54k7DM54', '6099988'), + (52702, 539, 2065, 'attending', '2023-06-17 05:05:08', '2025-12-17 19:46:49', '54k7DM54', '6101169'), + (52703, 539, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '54k7DM54', '6101361'), + (52704, 539, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '54k7DM54', '6101362'), + (52705, 539, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '54k7DM54', '6103752'), + (52706, 539, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '54k7DM54', '6107314'), + (52707, 539, 2086, 'not_attending', '2023-06-01 18:50:51', '2025-12-17 19:47:04', '54k7DM54', '6119877'), + (52708, 539, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '54k7DM54', '6120034'), + (52709, 539, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '54k7DM54', '6136733'), + (52710, 539, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '54k7DM54', '6137989'), + (52711, 539, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '54k7DM54', '6150864'), + (52712, 539, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '54k7DM54', '6155491'), + (52713, 539, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '54k7DM54', '6164417'), + (52714, 539, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '54k7DM54', '6166388'), + (52715, 539, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '54k7DM54', '6176439'), + (52716, 539, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '54k7DM54', '6182410'), + (52717, 539, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '54k7DM54', '6185812'), + (52718, 539, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '54k7DM54', '6187651'), + (52719, 539, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '54k7DM54', '6187963'), + (52720, 539, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '54k7DM54', '6187964'), + (52721, 539, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '54k7DM54', '6187966'), + (52722, 539, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '54k7DM54', '6187967'), + (52723, 539, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '54k7DM54', '6187969'), + (52724, 539, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '54k7DM54', '6334878'), + (52725, 539, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '54k7DM54', '6337236'), + (52726, 539, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '54k7DM54', '6337970'), + (52727, 539, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '54k7DM54', '6338308'), + (52728, 539, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '54k7DM54', '6340845'), + (52729, 539, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '54k7DM54', '6341710'), + (52730, 539, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '54k7DM54', '6342044'), + (52731, 539, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '54k7DM54', '6342298'), + (52732, 539, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '54k7DM54', '6343294'), + (52733, 539, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '54k7DM54', '6347034'), + (52734, 539, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '54k7DM54', '6347056'), + (52735, 539, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '54k7DM54', '6353830'), + (52736, 539, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '54k7DM54', '6353831'), + (52737, 539, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '54k7DM54', '6357867'), + (52738, 539, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '54k7DM54', '6358652'), + (52739, 539, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '54k7DM54', '6361709'), + (52740, 539, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '54k7DM54', '6361710'), + (52741, 539, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '54k7DM54', '6361711'), + (52742, 539, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '54k7DM54', '6361712'), + (52743, 539, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '54k7DM54', '6361713'), + (52744, 539, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '54k7DM54', '6382573'), + (52745, 539, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '54k7DM54', '6388604'), + (52746, 539, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '54k7DM54', '6394629'), + (52747, 539, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '54k7DM54', '6394631'), + (52748, 539, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '54k7DM54', '6440863'), + (52749, 539, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '54k7DM54', '6445440'), + (52750, 539, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '54k7DM54', '6453951'), + (52751, 539, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '54k7DM54', '6461696'), + (52752, 539, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '54k7DM54', '6462129'), + (52753, 539, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '54k7DM54', '6463218'), + (52754, 539, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '54k7DM54', '6472181'), + (52755, 539, 2303, 'attending', '2023-10-28 20:31:06', '2025-12-17 19:46:47', '54k7DM54', '6482691'), + (52756, 539, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '54k7DM54', '6482693'), + (52757, 539, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '54k7DM54', '6484200'), + (52758, 539, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '54k7DM54', '6484680'), + (52759, 539, 2310, 'not_attending', '2023-11-07 02:20:59', '2025-12-17 19:46:47', '54k7DM54', '6487709'), + (52760, 539, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '54k7DM54', '6507741'), + (52761, 539, 2322, 'attending', '2023-11-18 07:28:18', '2025-12-17 19:46:48', '54k7DM54', '6514659'), + (52762, 539, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '54k7DM54', '6514660'), + (52763, 539, 2324, 'attending', '2023-12-09 19:37:40', '2025-12-17 19:46:49', '54k7DM54', '6514662'), + (52764, 539, 2325, 'attending', '2023-12-16 20:49:34', '2025-12-17 19:46:36', '54k7DM54', '6514663'), + (52765, 539, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '54k7DM54', '6519103'), + (52766, 539, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '54k7DM54', '6535681'), + (52767, 539, 2338, 'not_attending', '2023-11-25 22:05:41', '2025-12-17 19:46:48', '54k7DM54', '6538868'), + (52768, 539, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '54k7DM54', '6584747'), + (52769, 539, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '54k7DM54', '6587097'), + (52770, 539, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '54k7DM54', '6609022'), + (52771, 539, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '54k7DM54', '6632757'), + (52772, 539, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '54k7DM54', '6644187'), + (52773, 539, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '54k7DM54', '6648951'), + (52774, 539, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '54k7DM54', '6648952'), + (52775, 539, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '54k7DM54', '6655401'), + (52776, 539, 2399, 'not_attending', '2024-01-14 00:19:33', '2025-12-17 19:46:38', '54k7DM54', '6657583'), + (52777, 539, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '54k7DM54', '6661585'), + (52778, 539, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '54k7DM54', '6661588'), + (52779, 539, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '54k7DM54', '6661589'), + (52780, 539, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '54k7DM54', '6699906'), + (52781, 539, 2408, 'not_attending', '2024-01-27 05:12:14', '2025-12-17 19:46:40', '54k7DM54', '6699907'), + (52782, 539, 2409, 'attending', '2024-02-03 19:31:25', '2025-12-17 19:46:41', '54k7DM54', '6699909'), + (52783, 539, 2410, 'attending', '2024-02-10 21:53:05', '2025-12-17 19:46:41', '54k7DM54', '6699911'), + (52784, 539, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '54k7DM54', '6699913'), + (52785, 539, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '54k7DM54', '6701109'), + (52786, 539, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '54k7DM54', '6705219'), + (52787, 539, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '54k7DM54', '6710153'), + (52788, 539, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '54k7DM54', '6711552'), + (52789, 539, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '54k7DM54', '6711553'), + (52790, 539, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '54k7DM54', '6722688'), + (52791, 539, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '54k7DM54', '6730620'), + (52792, 539, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '54k7DM54', '6730642'), + (52793, 539, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '54k7DM54', '6740364'), + (52794, 539, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '54k7DM54', '6743829'), + (52795, 539, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '54k7DM54', '7030380'), + (52796, 539, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '54k7DM54', '7033677'), + (52797, 539, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '54k7DM54', '7035415'), + (52798, 539, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '54k7DM54', '7044715'), + (52799, 539, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '54k7DM54', '7050318'), + (52800, 539, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '54k7DM54', '7050319'), + (52801, 539, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '54k7DM54', '7050322'), + (52802, 539, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '54k7DM54', '7057804'), + (52803, 539, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '54k7DM54', '7059866'), + (52804, 539, 2505, 'attending', '2024-03-21 19:50:38', '2025-12-17 19:46:33', '54k7DM54', '7069163'), + (52805, 539, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '54k7DM54', '7072824'), + (52806, 539, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '54k7DM54', '7074348'), + (52807, 539, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '54k7DM54', '7074364'), + (52808, 539, 2539, 'not_attending', '2024-04-05 21:29:43', '2025-12-17 19:46:33', '54k7DM54', '7085486'), + (52809, 539, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '54k7DM54', '7089267'), + (52810, 539, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '54k7DM54', '7098747'), + (52811, 539, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '54k7DM54', '7113468'), + (52812, 539, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '54k7DM54', '7114856'), + (52813, 539, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', '54k7DM54', '7114951'), + (52814, 539, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '54k7DM54', '7114955'), + (52815, 539, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '54k7DM54', '7114956'), + (52816, 539, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '54k7DM54', '7114957'), + (52817, 539, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '54k7DM54', '7153615'), + (52818, 539, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '54k7DM54', '7159484'), + (52819, 539, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '54k7DM54', '7178446'), + (52820, 539, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '54k7DM54', '7220467'), + (52821, 539, 2603, 'not_attending', '2024-05-15 23:43:13', '2025-12-17 19:46:35', '54k7DM54', '7225669'), + (52822, 539, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '54k7DM54', '7240354'), + (52823, 539, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '54k7DM54', '7251633'), + (52824, 539, 2623, 'maybe', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '54k7DM54', '7263048'), + (52825, 539, 2626, 'attending', '2024-05-18 20:40:12', '2025-12-17 19:46:35', '54k7DM54', '7264723'), + (52826, 539, 2627, 'attending', '2024-05-25 18:45:18', '2025-12-17 19:46:35', '54k7DM54', '7264724'), + (52827, 539, 2628, 'attending', '2024-06-01 20:34:04', '2025-12-17 19:46:36', '54k7DM54', '7264725'), + (52828, 539, 2629, 'attending', '2024-06-08 16:37:24', '2025-12-17 19:46:28', '54k7DM54', '7264726'), + (52829, 539, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '54k7DM54', '7302674'), + (52830, 539, 2676, 'attending', '2024-09-01 19:23:47', '2025-12-17 19:46:32', '54k7DM54', '7319482'), + (52831, 539, 2678, 'not_attending', '2024-06-15 15:15:09', '2025-12-17 19:46:28', '54k7DM54', '7319489'), + (52832, 539, 2679, 'not_attending', '2024-06-15 15:15:14', '2025-12-17 19:46:29', '54k7DM54', '7319490'), + (52833, 539, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', '54k7DM54', '7324019'), + (52834, 539, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '54k7DM54', '7324073'), + (52835, 539, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '54k7DM54', '7324074'), + (52836, 539, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '54k7DM54', '7324075'), + (52837, 539, 2691, 'attending', '2024-07-20 04:44:32', '2025-12-17 19:46:30', '54k7DM54', '7324076'), + (52838, 539, 2692, 'not_attending', '2024-07-27 22:42:59', '2025-12-17 19:46:30', '54k7DM54', '7324077'), + (52839, 539, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '54k7DM54', '7324078'), + (52840, 539, 2694, 'attending', '2024-08-10 11:36:06', '2025-12-17 19:46:31', '54k7DM54', '7324079'), + (52841, 539, 2695, 'attending', '2024-08-17 19:01:07', '2025-12-17 19:46:31', '54k7DM54', '7324080'), + (52842, 539, 2696, 'attending', '2024-08-24 20:31:48', '2025-12-17 19:46:32', '54k7DM54', '7324081'), + (52843, 539, 2697, 'not_attending', '2024-08-31 19:29:47', '2025-12-17 19:46:32', '54k7DM54', '7324082'), + (52844, 539, 2698, 'not_attending', '2024-09-07 00:35:10', '2025-12-17 19:46:24', '54k7DM54', '7324083'), + (52845, 539, 2705, 'maybe', '2024-06-29 11:47:27', '2025-12-17 19:46:29', '54k7DM54', '7324944'), + (52846, 539, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '54k7DM54', '7331457'), + (52847, 539, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '54k7DM54', '7356752'), + (52848, 539, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', '54k7DM54', '7363595'), + (52849, 539, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '54k7DM54', '7363643'), + (52850, 539, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '54k7DM54', '7368606'), + (52851, 539, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '54k7DM54', '7397462'), + (52852, 539, 2805, 'attending', '2024-08-20 22:36:11', '2025-12-17 19:46:32', '54k7DM54', '7403620'), + (52853, 539, 2808, 'attending', '2024-09-01 19:23:42', '2025-12-17 19:46:32', '54k7DM54', '7412860'), + (52854, 539, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '54k7DM54', '7424275'), + (52855, 539, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '54k7DM54', '7424276'), + (52856, 539, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '54k7DM54', '7432751'), + (52857, 539, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '54k7DM54', '7432752'), + (52858, 539, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '54k7DM54', '7432753'), + (52859, 539, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '54k7DM54', '7432754'), + (52860, 539, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '54k7DM54', '7432755'), + (52861, 539, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '54k7DM54', '7432756'), + (52862, 539, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '54k7DM54', '7432758'), + (52863, 539, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '54k7DM54', '7432759'), + (52864, 539, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '54k7DM54', '7433834'), + (52865, 539, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '54k7DM54', '7470197'), + (52866, 539, 2870, 'attending', '2024-10-05 19:41:32', '2025-12-17 19:46:26', '54k7DM54', '7475068'), + (52867, 539, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '54k7DM54', '7685613'), + (52868, 539, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '54k7DM54', '7688194'), + (52869, 539, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '54k7DM54', '7688196'), + (52870, 539, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '54k7DM54', '7688289'), + (52871, 539, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', '54k7DM54', '7692763'), + (52872, 539, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '54k7DM54', '7697552'), + (52873, 539, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '54k7DM54', '7699878'), + (52874, 539, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '54k7DM54', '7704043'), + (52875, 539, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '54k7DM54', '7712467'), + (52876, 539, 2925, 'not_attending', '2024-12-12 09:34:52', '2025-12-17 19:46:21', '54k7DM54', '7713584'), + (52877, 539, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '54k7DM54', '7713585'), + (52878, 539, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '54k7DM54', '7713586'), + (52879, 539, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', '54k7DM54', '7738518'), + (52880, 539, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '54k7DM54', '7750632'), + (52881, 539, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '54k7DM54', '7750636'), + (52882, 539, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '54k7DM54', '7796540'), + (52883, 539, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '54k7DM54', '7796541'), + (52884, 539, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '54k7DM54', '7796542'), + (52885, 539, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '54k7DM54', '7825913'), + (52886, 539, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:23', '54k7DM54', '7825920'), + (52887, 539, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '54k7DM54', '7826209'), + (52888, 539, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '54k7DM54', '7834742'), + (52889, 539, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '54k7DM54', '7842108'), + (52890, 539, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '54k7DM54', '7842902'), + (52891, 539, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '54k7DM54', '7842903'), + (52892, 539, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '54k7DM54', '7842904'), + (52893, 539, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '54k7DM54', '7842905'), + (52894, 539, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '54k7DM54', '7855719'), + (52895, 539, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '54k7DM54', '7860683'), + (52896, 539, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '54k7DM54', '7860684'), + (52897, 539, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '54k7DM54', '7866095'), + (52898, 539, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '54k7DM54', '7869170'), + (52899, 539, 3014, 'not_attending', '2025-04-05 03:47:56', '2025-12-17 19:46:20', '54k7DM54', '7869185'), + (52900, 539, 3015, 'not_attending', '2025-04-25 20:10:14', '2025-12-17 19:46:20', '54k7DM54', '7869186'), + (52901, 539, 3016, 'not_attending', '2025-04-16 19:28:55', '2025-12-17 19:46:20', '54k7DM54', '7869187'), + (52902, 539, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '54k7DM54', '7869188'), + (52903, 539, 3028, 'attending', '2025-04-25 20:10:20', '2025-12-17 19:46:20', '54k7DM54', '7869199'), + (52904, 539, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '54k7DM54', '7869201'), + (52905, 539, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '54k7DM54', '7877465'), + (52906, 539, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '54k7DM54', '7888250'), + (52907, 539, 3060, 'not_attending', '2025-03-27 14:16:18', '2025-12-17 19:46:19', '54k7DM54', '7892589'), + (52908, 539, 3088, 'not_attending', '2025-06-11 06:12:31', '2025-12-17 19:46:15', '54k7DM54', '7904777'), + (52909, 539, 3094, 'not_attending', '2025-05-03 05:08:15', '2025-12-17 19:46:21', '54k7DM54', '8342292'), + (52910, 539, 3095, 'not_attending', '2025-05-03 05:08:11', '2025-12-17 19:46:20', '54k7DM54', '8342293'), + (52911, 539, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '54k7DM54', '8349164'), + (52912, 539, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '54k7DM54', '8349545'), + (52913, 539, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '54k7DM54', '8353584'), + (52914, 539, 3131, 'attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '54k7DM54', '8368028'), + (52915, 539, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '54k7DM54', '8368029'), + (52916, 539, 3133, 'attending', '2025-05-31 18:39:46', '2025-12-17 19:46:14', '54k7DM54', '8368030'), + (52917, 539, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '54k7DM54', '8388462'), + (52918, 539, 3150, 'not_attending', '2025-06-11 06:12:35', '2025-12-17 19:46:15', '54k7DM54', '8393174'), + (52919, 539, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '54k7DM54', '8400273'), + (52920, 539, 3154, 'not_attending', '2025-06-28 03:29:09', '2025-12-17 19:46:15', '54k7DM54', '8400274'), + (52921, 539, 3155, 'maybe', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '54k7DM54', '8400275'), + (52922, 539, 3156, 'attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '54k7DM54', '8400276'), + (52923, 539, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '54k7DM54', '8404977'), + (52924, 539, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '54k7DM54', '8430783'), + (52925, 539, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '54k7DM54', '8430784'), + (52926, 539, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '54k7DM54', '8430799'), + (52927, 539, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '54k7DM54', '8430800'), + (52928, 539, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '54k7DM54', '8430801'), + (52929, 539, 3188, 'attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '54k7DM54', '8438709'), + (52930, 539, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '54k7DM54', '8457738'), + (52931, 539, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '54k7DM54', '8459566'), + (52932, 539, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '54k7DM54', '8459567'), + (52933, 539, 3203, 'attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '54k7DM54', '8461032'), + (52934, 539, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '54k7DM54', '8477877'), + (52935, 539, 3233, 'attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '54k7DM54', '8485688'), + (52936, 539, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '54k7DM54', '8490587'), + (52937, 539, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '54k7DM54', '8493552'), + (52938, 539, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '54k7DM54', '8493553'), + (52939, 539, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '54k7DM54', '8493554'), + (52940, 539, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '54k7DM54', '8493555'), + (52941, 539, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '54k7DM54', '8493556'), + (52942, 539, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '54k7DM54', '8493557'), + (52943, 539, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '54k7DM54', '8493558'), + (52944, 539, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '54k7DM54', '8493559'), + (52945, 539, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '54k7DM54', '8493560'), + (52946, 539, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '54k7DM54', '8493561'), + (52947, 539, 3253, 'attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '54k7DM54', '8493572'), + (52948, 539, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '54k7DM54', '8540725'), + (52949, 539, 3302, 'attending', '2025-11-13 20:22:12', '2025-12-17 19:46:14', '54k7DM54', '8550022'), + (52950, 539, 3304, 'attending', '2025-11-22 02:45:04', '2025-12-17 19:46:14', '54k7DM54', '8550024'), + (52951, 539, 3306, 'not_attending', '2025-12-13 23:49:01', '2025-12-17 19:46:11', '54k7DM54', '8550026'), + (52952, 539, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '54k7DM54', '8555421'), + (52953, 540, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'o4PyjPvd', '3149489'), + (52954, 540, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'o4PyjPvd', '3149491'), + (52955, 540, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'o4PyjPvd', '3236450'), + (52956, 540, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'o4PyjPvd', '3236452'), + (52957, 540, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'o4PyjPvd', '3539921'), + (52958, 540, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'o4PyjPvd', '3539922'), + (52959, 540, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'o4PyjPvd', '3539923'), + (52960, 540, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'o4PyjPvd', '3806392'), + (52961, 540, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'o4PyjPvd', '3963335'), + (52962, 540, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'o4PyjPvd', '3975311'), + (52963, 540, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'o4PyjPvd', '3975312'), + (52964, 540, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'o4PyjPvd', '3994992'), + (52965, 540, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'o4PyjPvd', '4014338'), + (52966, 540, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'o4PyjPvd', '4136744'), + (52967, 540, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PyjPvd', '6045684'), + (52968, 541, 1612, 'attending', '2022-10-02 11:58:25', '2025-12-17 19:47:12', '41w56QMm', '5507653'), + (52969, 541, 1653, 'attending', '2022-09-21 14:39:57', '2025-12-17 19:47:11', '41w56QMm', '5554400'), + (52970, 541, 1659, 'attending', '2022-09-23 22:56:11', '2025-12-17 19:47:11', '41w56QMm', '5557747'), + (52971, 541, 1668, 'attending', '2022-10-01 20:27:45', '2025-12-17 19:47:12', '41w56QMm', '5563222'), + (52972, 541, 1674, 'attending', '2022-10-02 11:57:28', '2025-12-17 19:47:12', '41w56QMm', '5593112'), + (52973, 541, 1676, 'attending', '2022-09-21 14:39:24', '2025-12-17 19:47:11', '41w56QMm', '5596181'), + (52974, 541, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41w56QMm', '5600604'), + (52975, 541, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41w56QMm', '5605544'), + (52976, 541, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', '41w56QMm', '5606737'), + (52977, 541, 1705, 'attending', '2022-10-02 11:59:01', '2025-12-17 19:47:12', '41w56QMm', '5612209'), + (52978, 541, 1710, 'maybe', '2022-10-02 19:57:24', '2025-12-17 19:47:12', '41w56QMm', '5621822'), + (52979, 541, 1719, 'not_attending', '2022-10-08 19:06:21', '2025-12-17 19:47:12', '41w56QMm', '5630958'), + (52980, 541, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41w56QMm', '5630960'), + (52981, 541, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41w56QMm', '5630961'), + (52982, 541, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41w56QMm', '5630962'), + (52983, 541, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41w56QMm', '5630966'), + (52984, 541, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41w56QMm', '5630967'), + (52985, 541, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41w56QMm', '5630968'), + (52986, 541, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41w56QMm', '5635406'), + (52987, 541, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41w56QMm', '5638765'), + (52988, 541, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41w56QMm', '5640097'), + (52989, 541, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '41w56QMm', '5640843'), + (52990, 541, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41w56QMm', '5641521'), + (52991, 541, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41w56QMm', '5642818'), + (52992, 541, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41w56QMm', '5652395'), + (52993, 541, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41w56QMm', '5670445'), + (52994, 541, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41w56QMm', '5671637'), + (52995, 541, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41w56QMm', '5672329'), + (52996, 541, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41w56QMm', '5674057'), + (52997, 541, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41w56QMm', '5674060'), + (52998, 541, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41w56QMm', '5677461'), + (52999, 541, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41w56QMm', '5698046'), + (53000, 541, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41w56QMm', '5699760'), + (53001, 541, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41w56QMm', '5741601'), + (53002, 541, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41w56QMm', '5763458'), + (53003, 541, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41w56QMm', '5774172'), + (53004, 541, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '41w56QMm', '5818247'), + (53005, 541, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41w56QMm', '5819471'), + (53006, 541, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41w56QMm', '5827739'), + (53007, 541, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41w56QMm', '5844306'), + (53008, 541, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41w56QMm', '5850159'), + (53009, 541, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41w56QMm', '5858999'), + (53010, 541, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41w56QMm', '5871984'), + (53011, 541, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41w56QMm', '5876354'), + (53012, 541, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41w56QMm', '5880939'), + (53013, 541, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41w56QMm', '5887890'), + (53014, 541, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41w56QMm', '5888598'), + (53015, 541, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41w56QMm', '5893260'), + (53016, 541, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41w56QMm', '6045684'), + (53017, 542, 1054, 'attending', '2022-03-19 22:34:47', '2025-12-17 19:47:25', 'dVbZqVld', '4496619'), + (53018, 542, 1177, 'attending', '2022-02-12 01:44:10', '2025-12-17 19:47:32', 'dVbZqVld', '4736499'), + (53019, 542, 1179, 'attending', '2022-02-13 06:43:20', '2025-12-17 19:47:32', 'dVbZqVld', '4736501'), + (53020, 542, 1180, 'not_attending', '2022-02-26 14:56:53', '2025-12-17 19:47:33', 'dVbZqVld', '4736502'), + (53021, 542, 1181, 'attending', '2022-03-02 21:12:12', '2025-12-17 19:47:33', 'dVbZqVld', '4736503'), + (53022, 542, 1182, 'not_attending', '2022-03-10 17:56:15', '2025-12-17 19:47:33', 'dVbZqVld', '4736504'), + (53023, 542, 1214, 'attending', '2022-02-17 22:14:55', '2025-12-17 19:47:32', 'dVbZqVld', '4780761'), + (53024, 542, 1222, 'not_attending', '2022-02-17 22:14:44', '2025-12-17 19:47:32', 'dVbZqVld', '5015628'), + (53025, 542, 1234, 'not_attending', '2022-02-16 00:48:34', '2025-12-17 19:47:32', 'dVbZqVld', '5042197'), + (53026, 542, 1236, 'not_attending', '2022-02-14 15:10:00', '2025-12-17 19:47:32', 'dVbZqVld', '5045826'), + (53027, 542, 1237, 'attending', '2022-02-19 00:16:13', '2025-12-17 19:47:32', 'dVbZqVld', '5050641'), + (53028, 542, 1243, 'attending', '2022-03-06 18:40:53', '2025-12-17 19:47:33', 'dVbZqVld', '5058336'), + (53029, 542, 1248, 'not_attending', '2022-02-25 00:45:18', '2025-12-17 19:47:33', 'dVbZqVld', '5065064'), + (53030, 542, 1250, 'not_attending', '2022-03-04 22:45:22', '2025-12-17 19:47:33', 'dVbZqVld', '5069735'), + (53031, 542, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVbZqVld', '5132533'), + (53032, 542, 1260, 'not_attending', '2022-03-01 22:32:25', '2025-12-17 19:47:33', 'dVbZqVld', '5142082'), + (53033, 542, 1262, 'not_attending', '2022-03-10 17:56:04', '2025-12-17 19:47:33', 'dVbZqVld', '5157773'), + (53034, 542, 1264, 'not_attending', '2022-03-22 22:55:17', '2025-12-17 19:47:25', 'dVbZqVld', '5160281'), + (53035, 542, 1270, 'attending', '2022-03-20 16:03:47', '2025-12-17 19:47:25', 'dVbZqVld', '5181277'), + (53036, 542, 1272, 'attending', '2022-03-19 18:11:25', '2025-12-17 19:47:25', 'dVbZqVld', '5186582'), + (53037, 542, 1273, 'attending', '2022-03-26 19:55:46', '2025-12-17 19:47:25', 'dVbZqVld', '5186583'), + (53038, 542, 1274, 'not_attending', '2022-03-29 10:32:52', '2025-12-17 19:47:26', 'dVbZqVld', '5186585'), + (53039, 542, 1276, 'attending', '2022-03-27 20:45:42', '2025-12-17 19:47:25', 'dVbZqVld', '5186820'), + (53040, 542, 1279, 'attending', '2022-03-20 16:03:43', '2025-12-17 19:47:25', 'dVbZqVld', '5187212'), + (53041, 542, 1281, 'not_attending', '2022-04-04 00:42:53', '2025-12-17 19:47:27', 'dVbZqVld', '5190437'), + (53042, 542, 1283, 'attending', '2022-03-19 18:56:26', '2025-12-17 19:47:25', 'dVbZqVld', '5193533'), + (53043, 542, 1284, 'not_attending', '2022-04-16 22:45:21', '2025-12-17 19:47:27', 'dVbZqVld', '5195095'), + (53044, 542, 1297, 'not_attending', '2022-04-01 21:45:22', '2025-12-17 19:47:26', 'dVbZqVld', '5215989'), + (53045, 542, 1301, 'maybe', '2022-03-31 14:58:10', '2025-12-17 19:47:26', 'dVbZqVld', '5218175'), + (53046, 542, 1302, 'not_attending', '2022-04-01 23:18:29', '2025-12-17 19:47:27', 'dVbZqVld', '5220867'), + (53047, 542, 1305, 'maybe', '2022-04-04 21:23:29', '2025-12-17 19:47:27', 'dVbZqVld', '5223673'), + (53048, 542, 1307, 'not_attending', '2022-04-04 21:22:47', '2025-12-17 19:47:26', 'dVbZqVld', '5223686'), + (53049, 542, 1309, 'not_attending', '2022-04-06 13:45:01', '2025-12-17 19:47:26', 'dVbZqVld', '5227432'), + (53050, 542, 1316, 'not_attending', '2022-04-14 22:24:00', '2025-12-17 19:47:27', 'dVbZqVld', '5237536'), + (53051, 542, 1319, 'not_attending', '2022-04-24 21:45:25', '2025-12-17 19:47:27', 'dVbZqVld', '5238353'), + (53052, 542, 1320, 'not_attending', '2022-04-24 21:45:32', '2025-12-17 19:47:27', 'dVbZqVld', '5238354'), + (53053, 542, 1322, 'not_attending', '2022-04-25 12:07:54', '2025-12-17 19:47:27', 'dVbZqVld', '5238356'), + (53054, 542, 1323, 'not_attending', '2022-04-25 12:07:59', '2025-12-17 19:47:27', 'dVbZqVld', '5238357'), + (53055, 542, 1325, 'not_attending', '2022-04-28 22:45:42', '2025-12-17 19:47:28', 'dVbZqVld', '5238361'), + (53056, 542, 1326, 'not_attending', '2022-04-28 22:45:46', '2025-12-17 19:47:28', 'dVbZqVld', '5238362'), + (53057, 542, 1330, 'not_attending', '2022-04-18 21:54:08', '2025-12-17 19:47:27', 'dVbZqVld', '5242155'), + (53058, 542, 1331, 'not_attending', '2022-04-21 23:45:19', '2025-12-17 19:47:27', 'dVbZqVld', '5242156'), + (53059, 542, 1332, 'not_attending', '2022-04-14 22:24:29', '2025-12-17 19:47:27', 'dVbZqVld', '5243274'), + (53060, 542, 1337, 'not_attending', '2022-04-20 21:35:35', '2025-12-17 19:47:27', 'dVbZqVld', '5245036'), + (53061, 542, 1340, 'not_attending', '2022-04-28 22:45:21', '2025-12-17 19:47:27', 'dVbZqVld', '5245754'), + (53062, 542, 1346, 'not_attending', '2022-04-22 19:35:34', '2025-12-17 19:47:27', 'dVbZqVld', '5247467'), + (53063, 542, 1362, 'not_attending', '2022-04-30 22:11:45', '2025-12-17 19:47:28', 'dVbZqVld', '5260800'), + (53064, 542, 1364, 'not_attending', '2022-05-03 14:39:00', '2025-12-17 19:47:28', 'dVbZqVld', '5261598'), + (53065, 542, 1368, 'not_attending', '2022-05-06 22:46:32', '2025-12-17 19:47:28', 'dVbZqVld', '5262783'), + (53066, 542, 1374, 'not_attending', '2022-05-07 15:34:53', '2025-12-17 19:47:28', 'dVbZqVld', '5269930'), + (53067, 542, 1376, 'not_attending', '2022-05-12 19:40:49', '2025-12-17 19:47:28', 'dVbZqVld', '5271446'), + (53068, 542, 1378, 'attending', '2022-05-13 20:58:49', '2025-12-17 19:47:28', 'dVbZqVld', '5271448'), + (53069, 542, 1379, 'attending', '2022-05-21 20:17:20', '2025-12-17 19:47:29', 'dVbZqVld', '5271449'), + (53070, 542, 1380, 'attending', '2022-05-28 18:24:47', '2025-12-17 19:47:30', 'dVbZqVld', '5271450'), + (53071, 542, 1383, 'attending', '2022-05-13 20:32:13', '2025-12-17 19:47:28', 'dVbZqVld', '5276469'), + (53072, 542, 1385, 'attending', '2022-05-11 22:20:46', '2025-12-17 19:47:28', 'dVbZqVld', '5277822'), + (53073, 542, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVbZqVld', '5278159'), + (53074, 542, 1390, 'not_attending', '2022-05-14 20:01:19', '2025-12-17 19:47:28', 'dVbZqVld', '5279509'), + (53075, 542, 1392, 'not_attending', '2022-05-09 01:51:04', '2025-12-17 19:47:28', 'dVbZqVld', '5279532'), + (53076, 542, 1394, 'not_attending', '2022-05-27 18:01:01', '2025-12-17 19:47:30', 'dVbZqVld', '5280667'), + (53077, 542, 1397, 'attending', '2022-05-21 21:51:09', '2025-12-17 19:47:29', 'dVbZqVld', '5281104'), + (53078, 542, 1401, 'not_attending', '2022-05-18 19:39:47', '2025-12-17 19:47:29', 'dVbZqVld', '5286295'), + (53079, 542, 1407, 'attending', '2022-06-04 21:42:58', '2025-12-17 19:47:30', 'dVbZqVld', '5363695'), + (53080, 542, 1408, 'not_attending', '2022-05-20 19:22:26', '2025-12-17 19:47:29', 'dVbZqVld', '5365960'), + (53081, 542, 1410, 'maybe', '2022-05-19 17:00:38', '2025-12-17 19:47:29', 'dVbZqVld', '5367530'), + (53082, 542, 1412, 'not_attending', '2022-05-19 21:32:04', '2025-12-17 19:47:29', 'dVbZqVld', '5367532'), + (53083, 542, 1415, 'not_attending', '2022-06-03 20:50:50', '2025-12-17 19:47:30', 'dVbZqVld', '5368973'), + (53084, 542, 1419, 'not_attending', '2022-06-08 21:26:21', '2025-12-17 19:47:30', 'dVbZqVld', '5373081'), + (53085, 542, 1420, 'not_attending', '2022-05-27 20:02:06', '2025-12-17 19:47:30', 'dVbZqVld', '5374882'), + (53086, 542, 1424, 'not_attending', '2022-05-26 22:10:51', '2025-12-17 19:47:30', 'dVbZqVld', '5375772'), + (53087, 542, 1427, 'not_attending', '2022-05-25 22:02:32', '2025-12-17 19:47:30', 'dVbZqVld', '5376074'), + (53088, 542, 1428, 'not_attending', '2022-06-10 20:51:28', '2025-12-17 19:47:30', 'dVbZqVld', '5378247'), + (53089, 542, 1429, 'not_attending', '2022-05-30 21:29:13', '2025-12-17 19:47:30', 'dVbZqVld', '5388761'), + (53090, 542, 1430, 'not_attending', '2022-06-09 21:05:52', '2025-12-17 19:47:30', 'dVbZqVld', '5389402'), + (53091, 542, 1431, 'attending', '2022-06-11 21:13:50', '2025-12-17 19:47:30', 'dVbZqVld', '5389605'), + (53092, 542, 1432, 'attending', '2022-06-03 15:53:18', '2025-12-17 19:47:30', 'dVbZqVld', '5391566'), + (53093, 542, 1433, 'attending', '2022-06-03 15:53:55', '2025-12-17 19:47:30', 'dVbZqVld', '5391667'), + (53094, 542, 1434, 'not_attending', '2022-06-01 21:12:24', '2025-12-17 19:47:30', 'dVbZqVld', '5393861'), + (53095, 542, 1435, 'attending', '2022-06-01 21:12:29', '2025-12-17 19:47:30', 'dVbZqVld', '5394015'), + (53096, 542, 1436, 'attending', '2022-06-02 19:09:46', '2025-12-17 19:47:30', 'dVbZqVld', '5394292'), + (53097, 542, 1438, 'attending', '2022-06-01 20:07:59', '2025-12-17 19:47:30', 'dVbZqVld', '5395032'), + (53098, 542, 1440, 'attending', '2022-06-07 13:32:34', '2025-12-17 19:47:30', 'dVbZqVld', '5396080'), + (53099, 542, 1441, 'attending', '2022-06-04 14:20:45', '2025-12-17 19:47:30', 'dVbZqVld', '5397171'), + (53100, 542, 1442, 'not_attending', '2022-06-18 20:53:11', '2025-12-17 19:47:17', 'dVbZqVld', '5397265'), + (53101, 542, 1446, 'not_attending', '2022-06-09 21:05:44', '2025-12-17 19:47:30', 'dVbZqVld', '5399721'), + (53102, 542, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dVbZqVld', '5403967'), + (53103, 542, 1454, 'attending', '2022-06-09 22:47:28', '2025-12-17 19:47:31', 'dVbZqVld', '5404771'), + (53104, 542, 1455, 'attending', '2022-06-09 22:47:22', '2025-12-17 19:47:31', 'dVbZqVld', '5404772'), + (53105, 542, 1456, 'not_attending', '2022-06-16 21:22:40', '2025-12-17 19:47:17', 'dVbZqVld', '5404779'), + (53106, 542, 1458, 'attending', '2022-06-19 19:45:48', '2025-12-17 19:47:17', 'dVbZqVld', '5404786'), + (53107, 542, 1459, 'not_attending', '2022-06-20 17:33:42', '2025-12-17 19:47:17', 'dVbZqVld', '5404793'), + (53108, 542, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVbZqVld', '5405203'), + (53109, 542, 1464, 'attending', '2022-06-10 22:38:51', '2025-12-17 19:47:30', 'dVbZqVld', '5405212'), + (53110, 542, 1469, 'attending', '2022-06-20 17:33:34', '2025-12-17 19:47:17', 'dVbZqVld', '5406838'), + (53111, 542, 1471, 'not_attending', '2022-06-21 14:46:33', '2025-12-17 19:47:17', 'dVbZqVld', '5407063'), + (53112, 542, 1473, 'not_attending', '2022-06-14 21:00:09', '2025-12-17 19:47:31', 'dVbZqVld', '5407267'), + (53113, 542, 1476, 'attending', '2022-06-19 20:07:46', '2025-12-17 19:47:17', 'dVbZqVld', '5408130'), + (53114, 542, 1478, 'not_attending', '2022-06-19 17:25:16', '2025-12-17 19:47:19', 'dVbZqVld', '5408794'), + (53115, 542, 1480, 'not_attending', '2022-06-26 22:45:31', '2025-12-17 19:47:19', 'dVbZqVld', '5411699'), + (53116, 542, 1482, 'not_attending', '2022-06-20 22:27:59', '2025-12-17 19:47:19', 'dVbZqVld', '5412550'), + (53117, 542, 1484, 'maybe', '2022-06-21 02:59:47', '2025-12-17 19:47:17', 'dVbZqVld', '5415046'), + (53118, 542, 1487, 'attending', '2022-06-27 10:44:32', '2025-12-17 19:47:19', 'dVbZqVld', '5419006'), + (53119, 542, 1490, 'not_attending', '2022-07-07 18:27:48', '2025-12-17 19:47:19', 'dVbZqVld', '5420156'), + (53120, 542, 1491, 'attending', '2022-06-26 21:20:26', '2025-12-17 19:47:19', 'dVbZqVld', '5420158'), + (53121, 542, 1495, 'not_attending', '2022-07-07 05:39:35', '2025-12-17 19:47:19', 'dVbZqVld', '5422086'), + (53122, 542, 1496, 'attending', '2022-06-26 22:45:49', '2025-12-17 19:47:19', 'dVbZqVld', '5422404'), + (53123, 542, 1497, 'not_attending', '2022-07-02 15:09:41', '2025-12-17 19:47:19', 'dVbZqVld', '5422405'), + (53124, 542, 1498, 'attending', '2022-07-02 18:44:24', '2025-12-17 19:47:19', 'dVbZqVld', '5422406'), + (53125, 542, 1501, 'attending', '2022-06-29 22:50:21', '2025-12-17 19:47:19', 'dVbZqVld', '5424546'), + (53126, 542, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVbZqVld', '5424565'), + (53127, 542, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVbZqVld', '5426882'), + (53128, 542, 1505, 'attending', '2022-07-04 22:54:06', '2025-12-17 19:47:19', 'dVbZqVld', '5427083'), + (53129, 542, 1508, 'not_attending', '2022-07-13 22:42:18', '2025-12-17 19:47:19', 'dVbZqVld', '5433453'), + (53130, 542, 1511, 'attending', '2022-07-07 05:40:00', '2025-12-17 19:47:19', 'dVbZqVld', '5437733'), + (53131, 542, 1513, 'not_attending', '2022-07-13 18:26:55', '2025-12-17 19:47:20', 'dVbZqVld', '5441125'), + (53132, 542, 1514, 'attending', '2022-07-21 11:48:41', '2025-12-17 19:47:20', 'dVbZqVld', '5441126'), + (53133, 542, 1515, 'attending', '2022-08-01 15:17:05', '2025-12-17 19:47:21', 'dVbZqVld', '5441128'), + (53134, 542, 1516, 'attending', '2022-08-19 01:58:27', '2025-12-17 19:47:23', 'dVbZqVld', '5441129'), + (53135, 542, 1517, 'attending', '2022-08-25 01:27:54', '2025-12-17 19:47:23', 'dVbZqVld', '5441130'), + (53136, 542, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVbZqVld', '5441131'), + (53137, 542, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVbZqVld', '5441132'), + (53138, 542, 1520, 'attending', '2022-07-10 03:23:53', '2025-12-17 19:47:19', 'dVbZqVld', '5441645'), + (53139, 542, 1524, 'not_attending', '2022-07-11 21:56:17', '2025-12-17 19:47:19', 'dVbZqVld', '5443300'), + (53140, 542, 1528, 'not_attending', '2022-07-14 03:36:44', '2025-12-17 19:47:20', 'dVbZqVld', '5446643'), + (53141, 542, 1529, 'attending', '2022-07-15 17:11:47', '2025-12-17 19:47:19', 'dVbZqVld', '5447079'), + (53142, 542, 1533, 'attending', '2022-07-26 14:30:22', '2025-12-17 19:47:21', 'dVbZqVld', '5448758'), + (53143, 542, 1534, 'attending', '2022-08-06 20:28:56', '2025-12-17 19:47:21', 'dVbZqVld', '5448759'), + (53144, 542, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVbZqVld', '5453325'), + (53145, 542, 1541, 'attending', '2022-07-21 11:49:02', '2025-12-17 19:47:20', 'dVbZqVld', '5453542'), + (53146, 542, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVbZqVld', '5454516'), + (53147, 542, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVbZqVld', '5454605'), + (53148, 542, 1550, 'not_attending', '2022-07-21 11:49:23', '2025-12-17 19:47:20', 'dVbZqVld', '5454803'), + (53149, 542, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVbZqVld', '5455037'), + (53150, 542, 1553, 'not_attending', '2022-07-20 10:36:43', '2025-12-17 19:47:20', 'dVbZqVld', '5455164'), + (53151, 542, 1557, 'attending', '2022-08-03 19:06:51', '2025-12-17 19:47:21', 'dVbZqVld', '5458729'), + (53152, 542, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVbZqVld', '5461278'), + (53153, 542, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVbZqVld', '5469480'), + (53154, 542, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVbZqVld', '5471073'), + (53155, 542, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dVbZqVld', '5474663'), + (53156, 542, 1568, 'not_attending', '2022-08-01 01:27:51', '2025-12-17 19:47:21', 'dVbZqVld', '5480628'), + (53157, 542, 1569, 'attending', '2022-08-01 15:09:43', '2025-12-17 19:47:21', 'dVbZqVld', '5481507'), + (53158, 542, 1570, 'attending', '2022-08-03 21:28:55', '2025-12-17 19:47:21', 'dVbZqVld', '5481830'), + (53159, 542, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVbZqVld', '5482022'), + (53160, 542, 1572, 'not_attending', '2022-08-01 19:58:47', '2025-12-17 19:47:22', 'dVbZqVld', '5482078'), + (53161, 542, 1574, 'not_attending', '2022-08-03 02:59:17', '2025-12-17 19:47:22', 'dVbZqVld', '5482153'), + (53162, 542, 1575, 'attending', '2022-08-13 03:51:37', '2025-12-17 19:47:23', 'dVbZqVld', '5482250'), + (53163, 542, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVbZqVld', '5482793'), + (53164, 542, 1579, 'not_attending', '2022-08-04 02:49:47', '2025-12-17 19:47:21', 'dVbZqVld', '5486019'), + (53165, 542, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVbZqVld', '5488912'), + (53166, 542, 1581, 'attending', '2022-08-07 02:33:28', '2025-12-17 19:47:22', 'dVbZqVld', '5490302'), + (53167, 542, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVbZqVld', '5492192'), + (53168, 542, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVbZqVld', '5493139'), + (53169, 542, 1589, 'attending', '2022-08-21 19:30:04', '2025-12-17 19:47:23', 'dVbZqVld', '5493159'), + (53170, 542, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVbZqVld', '5493200'), + (53171, 542, 1595, 'attending', '2022-08-12 20:34:42', '2025-12-17 19:47:22', 'dVbZqVld', '5495736'), + (53172, 542, 1599, 'not_attending', '2022-08-14 14:36:36', '2025-12-17 19:47:23', 'dVbZqVld', '5496568'), + (53173, 542, 1600, 'attending', '2022-08-14 14:36:43', '2025-12-17 19:47:24', 'dVbZqVld', '5496569'), + (53174, 542, 1604, 'attending', '2022-08-14 14:36:15', '2025-12-17 19:47:22', 'dVbZqVld', '5501504'), + (53175, 542, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVbZqVld', '5502188'), + (53176, 542, 1606, 'attending', '2022-08-21 21:57:16', '2025-12-17 19:47:23', 'dVbZqVld', '5504585'), + (53177, 542, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVbZqVld', '5505059'), + (53178, 542, 1611, 'attending', '2022-09-03 14:29:05', '2025-12-17 19:47:24', 'dVbZqVld', '5507652'), + (53179, 542, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVbZqVld', '5509055'), + (53180, 542, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVbZqVld', '5512862'), + (53181, 542, 1620, 'not_attending', '2022-08-23 15:26:55', '2025-12-17 19:47:23', 'dVbZqVld', '5513046'), + (53182, 542, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVbZqVld', '5513985'), + (53183, 542, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dVbZqVld', '5519981'), + (53184, 542, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVbZqVld', '5522550'), + (53185, 542, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVbZqVld', '5534683'), + (53186, 542, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVbZqVld', '5537735'), + (53187, 542, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVbZqVld', '5540859'), + (53188, 542, 1641, 'attending', '2022-09-03 14:28:52', '2025-12-17 19:47:24', 'dVbZqVld', '5544226'), + (53189, 542, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVbZqVld', '5546619'), + (53190, 542, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVbZqVld', '5555245'), + (53191, 542, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVbZqVld', '5557747'), + (53192, 542, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVbZqVld', '5560255'), + (53193, 542, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVbZqVld', '5562906'), + (53194, 542, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVbZqVld', '5600604'), + (53195, 542, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVbZqVld', '5605544'), + (53196, 542, 1698, 'not_attending', '2022-09-28 12:50:58', '2025-12-17 19:47:11', 'dVbZqVld', '5606366'), + (53197, 542, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'dVbZqVld', '5606737'), + (53198, 542, 1708, 'not_attending', '2022-10-05 12:43:26', '2025-12-17 19:47:12', 'dVbZqVld', '5617648'), + (53199, 542, 1719, 'not_attending', '2022-10-05 14:03:45', '2025-12-17 19:47:12', 'dVbZqVld', '5630958'), + (53200, 542, 1721, 'not_attending', '2022-10-17 20:00:02', '2025-12-17 19:47:13', 'dVbZqVld', '5630960'), + (53201, 542, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVbZqVld', '5630961'), + (53202, 542, 1723, 'not_attending', '2022-11-01 22:52:13', '2025-12-17 19:47:15', 'dVbZqVld', '5630962'), + (53203, 542, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVbZqVld', '5630966'), + (53204, 542, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVbZqVld', '5630967'), + (53205, 542, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVbZqVld', '5630968'), + (53206, 542, 1727, 'not_attending', '2022-11-28 14:11:42', '2025-12-17 19:47:16', 'dVbZqVld', '5630969'), + (53207, 542, 1728, 'not_attending', '2022-12-06 16:01:08', '2025-12-17 19:47:17', 'dVbZqVld', '5630970'), + (53208, 542, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVbZqVld', '5635406'), + (53209, 542, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVbZqVld', '5638765'), + (53210, 542, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVbZqVld', '5640097'), + (53211, 542, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVbZqVld', '5640843'), + (53212, 542, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVbZqVld', '5641521'), + (53213, 542, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVbZqVld', '5642818'), + (53214, 542, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVbZqVld', '5652395'), + (53215, 542, 1762, 'attending', '2022-11-28 14:11:36', '2025-12-17 19:47:16', 'dVbZqVld', '5670445'), + (53216, 542, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVbZqVld', '5671637'), + (53217, 542, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVbZqVld', '5672329'), + (53218, 542, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVbZqVld', '5674057'), + (53219, 542, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVbZqVld', '5674060'), + (53220, 542, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVbZqVld', '5677461'), + (53221, 542, 1780, 'not_attending', '2022-11-10 20:19:03', '2025-12-17 19:47:15', 'dVbZqVld', '5696082'), + (53222, 542, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVbZqVld', '5698046'), + (53223, 542, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVbZqVld', '5699760'), + (53224, 542, 1788, 'attending', '2022-11-21 21:23:37', '2025-12-17 19:47:16', 'dVbZqVld', '5727236'), + (53225, 542, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVbZqVld', '5741601'), + (53226, 542, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVbZqVld', '5763458'), + (53227, 542, 1800, 'attending', '2022-11-19 21:52:32', '2025-12-17 19:47:16', 'dVbZqVld', '5764667'), + (53228, 542, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVbZqVld', '5774172'), + (53229, 542, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVbZqVld', '5818247'), + (53230, 542, 1835, 'not_attending', '2022-12-28 17:32:40', '2025-12-17 19:47:05', 'dVbZqVld', '5819471'), + (53231, 542, 1841, 'attending', '2023-01-04 21:02:52', '2025-12-17 19:47:05', 'dVbZqVld', '5827665'), + (53232, 542, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVbZqVld', '5827739'), + (53233, 542, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVbZqVld', '5844306'), + (53234, 542, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVbZqVld', '5850159'), + (53235, 542, 1849, 'not_attending', '2023-01-04 21:02:29', '2025-12-17 19:47:05', 'dVbZqVld', '5852467'), + (53236, 542, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVbZqVld', '5858999'), + (53237, 542, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVbZqVld', '5871984'), + (53238, 542, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVbZqVld', '5876354'), + (53239, 542, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVbZqVld', '5880939'), + (53240, 542, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dVbZqVld', '5880940'), + (53241, 542, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVbZqVld', '5880942'), + (53242, 542, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVbZqVld', '5880943'), + (53243, 542, 1871, 'not_attending', '2023-01-19 14:23:49', '2025-12-17 19:47:05', 'dVbZqVld', '5883502'), + (53244, 542, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVbZqVld', '5887890'), + (53245, 542, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVbZqVld', '5888598'), + (53246, 542, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVbZqVld', '5893260'), + (53247, 542, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dVbZqVld', '5899826'), + (53248, 542, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dVbZqVld', '5900199'), + (53249, 542, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVbZqVld', '5900200'), + (53250, 542, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVbZqVld', '5900202'), + (53251, 542, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVbZqVld', '5900203'), + (53252, 542, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dVbZqVld', '5901108'), + (53253, 542, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dVbZqVld', '5901126'), + (53254, 542, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dVbZqVld', '5909655'), + (53255, 542, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dVbZqVld', '5910522'), + (53256, 542, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dVbZqVld', '5910526'), + (53257, 542, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dVbZqVld', '5910528'), + (53258, 542, 1920, 'attending', '2023-02-13 20:40:22', '2025-12-17 19:47:07', 'dVbZqVld', '5914091'), + (53259, 542, 1922, 'not_attending', '2023-02-16 15:53:22', '2025-12-17 19:47:07', 'dVbZqVld', '5916219'), + (53260, 542, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVbZqVld', '5936234'), + (53261, 542, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVbZqVld', '5958351'), + (53262, 542, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVbZqVld', '5959751'), + (53263, 542, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVbZqVld', '5959755'), + (53264, 542, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVbZqVld', '5960055'), + (53265, 542, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVbZqVld', '5961684'), + (53266, 542, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVbZqVld', '5962132'), + (53267, 542, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVbZqVld', '5962133'), + (53268, 542, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVbZqVld', '5962134'), + (53269, 542, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVbZqVld', '5962317'), + (53270, 542, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVbZqVld', '5962318'), + (53271, 542, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVbZqVld', '5965933'), + (53272, 542, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVbZqVld', '5967014'), + (53273, 542, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVbZqVld', '5972815'), + (53274, 542, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVbZqVld', '5974016'), + (53275, 542, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVbZqVld', '5981515'), + (53276, 542, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVbZqVld', '5993516'), + (53277, 542, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVbZqVld', '5998939'), + (53278, 542, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVbZqVld', '6028191'), + (53279, 542, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVbZqVld', '6040066'), + (53280, 542, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVbZqVld', '6042717'), + (53281, 542, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVbZqVld', '6044838'), + (53282, 542, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVbZqVld', '6044839'), + (53283, 542, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVbZqVld', '6045684'), + (53284, 542, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVbZqVld', '6050104'), + (53285, 542, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVbZqVld', '6053195'), + (53286, 542, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVbZqVld', '6053198'), + (53287, 542, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVbZqVld', '6056085'), + (53288, 542, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVbZqVld', '6056916'), + (53289, 542, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVbZqVld', '6059290'), + (53290, 542, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVbZqVld', '6060328'), + (53291, 542, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVbZqVld', '6061037'), + (53292, 542, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVbZqVld', '6061039'), + (53293, 542, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVbZqVld', '6067245'), + (53294, 542, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVbZqVld', '6068094'), + (53295, 542, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVbZqVld', '6068252'), + (53296, 542, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVbZqVld', '6068253'), + (53297, 542, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVbZqVld', '6068254'), + (53298, 542, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVbZqVld', '6068280'), + (53299, 542, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVbZqVld', '6069093'), + (53300, 542, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dVbZqVld', '6072528'), + (53301, 542, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVbZqVld', '6079840'), + (53302, 542, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVbZqVld', '6083398'), + (53303, 542, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVbZqVld', '6093504'), + (53304, 542, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVbZqVld', '6097414'), + (53305, 542, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVbZqVld', '6097442'), + (53306, 542, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVbZqVld', '6097684'), + (53307, 542, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVbZqVld', '6098762'), + (53308, 542, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dVbZqVld', '6101361'), + (53309, 542, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVbZqVld', '6101362'), + (53310, 542, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVbZqVld', '6103752'), + (53311, 542, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVbZqVld', '6107314'), + (53312, 542, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dVbZqVld', '6120034'), + (53313, 542, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dVbZqVld', '6136733'), + (53314, 542, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dVbZqVld', '6137989'), + (53315, 542, 2105, 'not_attending', '2023-06-19 21:33:24', '2025-12-17 19:46:50', 'dVbZqVld', '6149551'), + (53316, 542, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dVbZqVld', '6150864'), + (53317, 542, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dVbZqVld', '6155491'), + (53318, 542, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dVbZqVld', '6164417'), + (53319, 542, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dVbZqVld', '6166388'), + (53320, 542, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dVbZqVld', '6176439'), + (53321, 542, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dVbZqVld', '6182410'), + (53322, 542, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dVbZqVld', '6185812'), + (53323, 542, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dVbZqVld', '6187651'), + (53324, 542, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dVbZqVld', '6187963'), + (53325, 542, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dVbZqVld', '6187964'), + (53326, 542, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dVbZqVld', '6187966'), + (53327, 542, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dVbZqVld', '6187967'), + (53328, 542, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dVbZqVld', '6187969'), + (53329, 542, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dVbZqVld', '6334878'), + (53330, 542, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVbZqVld', '6337236'), + (53331, 542, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVbZqVld', '6337970'), + (53332, 542, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dVbZqVld', '6338308'), + (53333, 542, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVbZqVld', '6340845'), + (53334, 542, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVbZqVld', '6341710'), + (53335, 542, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVbZqVld', '6342044'), + (53336, 542, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVbZqVld', '6342298'), + (53337, 542, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dVbZqVld', '6343294'), + (53338, 542, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVbZqVld', '6347034'), + (53339, 542, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVbZqVld', '6347056'), + (53340, 542, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVbZqVld', '6353830'), + (53341, 542, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVbZqVld', '6353831'), + (53342, 542, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVbZqVld', '6357867'), + (53343, 542, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVbZqVld', '6358652'), + (53344, 542, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVbZqVld', '6361709'), + (53345, 542, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVbZqVld', '6361710'), + (53346, 542, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVbZqVld', '6361711'), + (53347, 542, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVbZqVld', '6361712'), + (53348, 542, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVbZqVld', '6361713'), + (53349, 542, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVbZqVld', '6382573'), + (53350, 542, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVbZqVld', '6388604'), + (53351, 542, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVbZqVld', '6394629'), + (53352, 542, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVbZqVld', '6394631'), + (53353, 542, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVbZqVld', '6440863'), + (53354, 542, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVbZqVld', '6445440'), + (53355, 542, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVbZqVld', '6453951'), + (53356, 542, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVbZqVld', '6461696'), + (53357, 542, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVbZqVld', '6462129'), + (53358, 542, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVbZqVld', '6463218'), + (53359, 542, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVbZqVld', '6472181'), + (53360, 542, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVbZqVld', '6482693'), + (53361, 542, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dVbZqVld', '6484200'), + (53362, 542, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dVbZqVld', '6484680'), + (53363, 542, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVbZqVld', '6507741'), + (53364, 542, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVbZqVld', '6514659'), + (53365, 542, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVbZqVld', '6514660'), + (53366, 542, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVbZqVld', '6519103'), + (53367, 542, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVbZqVld', '6535681'), + (53368, 542, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVbZqVld', '6584747'), + (53369, 542, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVbZqVld', '6587097'), + (53370, 542, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVbZqVld', '6609022'), + (53371, 542, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVbZqVld', '6632757'), + (53372, 542, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVbZqVld', '6644187'), + (53373, 542, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVbZqVld', '6648951'), + (53374, 542, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVbZqVld', '6648952'), + (53375, 542, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVbZqVld', '6655401'), + (53376, 542, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVbZqVld', '6661585'), + (53377, 542, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVbZqVld', '6661588'), + (53378, 542, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVbZqVld', '6661589'), + (53379, 542, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVbZqVld', '6699906'), + (53380, 542, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVbZqVld', '6701109'), + (53381, 542, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVbZqVld', '6705219'), + (53382, 542, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVbZqVld', '6710153'), + (53383, 542, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVbZqVld', '6711552'), + (53384, 542, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVbZqVld', '6711553'), + (53385, 543, 1724, 'attending', '2022-11-12 23:05:58', '2025-12-17 19:47:15', 'dOpPgrOm', '5630966'), + (53386, 543, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOpPgrOm', '5630967'), + (53387, 543, 1726, 'maybe', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOpPgrOm', '5630968'), + (53388, 543, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOpPgrOm', '5642818'), + (53389, 543, 1761, 'attending', '2022-11-18 19:25:27', '2025-12-17 19:47:16', 'dOpPgrOm', '5670434'), + (53390, 543, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOpPgrOm', '5670445'), + (53391, 543, 1784, 'attending', '2022-11-16 19:58:39', '2025-12-17 19:47:15', 'dOpPgrOm', '5699760'), + (53392, 543, 1786, 'not_attending', '2022-11-12 21:50:09', '2025-12-17 19:47:15', 'dOpPgrOm', '5727232'), + (53393, 543, 1787, 'not_attending', '2022-11-14 20:15:47', '2025-12-17 19:47:16', 'dOpPgrOm', '5727234'), + (53394, 543, 1788, 'attending', '2022-11-16 20:18:00', '2025-12-17 19:47:16', 'dOpPgrOm', '5727236'), + (53395, 543, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOpPgrOm', '5741601'), + (53396, 543, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOpPgrOm', '5763458'), + (53397, 543, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOpPgrOm', '5774172'), + (53398, 543, 1828, 'maybe', '2022-11-28 22:10:29', '2025-12-17 19:47:16', 'dOpPgrOm', '5778865'), + (53399, 543, 1829, 'maybe', '2022-11-28 22:14:10', '2025-12-17 19:47:16', 'dOpPgrOm', '5778867'), + (53400, 543, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOpPgrOm', '5818247'), + (53401, 543, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOpPgrOm', '5819471'), + (53402, 543, 1837, 'not_attending', '2022-12-07 21:42:44', '2025-12-17 19:47:16', 'dOpPgrOm', '5820146'), + (53403, 543, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOpPgrOm', '5827739'), + (53404, 543, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOpPgrOm', '5844306'), + (53405, 543, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOpPgrOm', '5850159'), + (53406, 543, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOpPgrOm', '5858999'), + (53407, 543, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOpPgrOm', '5871984'), + (53408, 543, 1859, 'attending', '2023-01-19 12:40:10', '2025-12-17 19:47:05', 'dOpPgrOm', '5876234'), + (53409, 543, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOpPgrOm', '5876354'), + (53410, 543, 1864, 'attending', '2023-01-21 19:54:39', '2025-12-17 19:47:05', 'dOpPgrOm', '5879675'), + (53411, 543, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOpPgrOm', '5880939'), + (53412, 543, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dOpPgrOm', '5880940'), + (53413, 543, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dOpPgrOm', '5880942'), + (53414, 543, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dOpPgrOm', '5880943'), + (53415, 543, 1871, 'attending', '2023-01-19 12:34:34', '2025-12-17 19:47:05', 'dOpPgrOm', '5883502'), + (53416, 543, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOpPgrOm', '5887890'), + (53417, 543, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOpPgrOm', '5888598'), + (53418, 543, 1879, 'attending', '2023-01-29 12:26:17', '2025-12-17 19:47:06', 'dOpPgrOm', '5893001'), + (53419, 543, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOpPgrOm', '5893260'), + (53420, 543, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dOpPgrOm', '5899826'), + (53421, 543, 1888, 'not_attending', '2023-02-17 22:38:17', '2025-12-17 19:47:07', 'dOpPgrOm', '5900197'), + (53422, 543, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dOpPgrOm', '5900199'), + (53423, 543, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dOpPgrOm', '5900200'), + (53424, 543, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dOpPgrOm', '5900202'), + (53425, 543, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dOpPgrOm', '5900203'), + (53426, 543, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dOpPgrOm', '5901108'), + (53427, 543, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dOpPgrOm', '5901126'), + (53428, 543, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dOpPgrOm', '5909655'), + (53429, 543, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dOpPgrOm', '5910522'), + (53430, 543, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dOpPgrOm', '5910526'), + (53431, 543, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dOpPgrOm', '5910528'), + (53432, 543, 1918, 'attending', '2023-02-08 10:18:48', '2025-12-17 19:47:07', 'dOpPgrOm', '5911180'), + (53433, 543, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dOpPgrOm', '5916219'), + (53434, 543, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dOpPgrOm', '5936234'), + (53435, 543, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dOpPgrOm', '5958351'), + (53436, 543, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dOpPgrOm', '5959751'), + (53437, 543, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dOpPgrOm', '5959755'), + (53438, 543, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dOpPgrOm', '5960055'), + (53439, 543, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dOpPgrOm', '5961684'), + (53440, 543, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dOpPgrOm', '5962132'), + (53441, 543, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dOpPgrOm', '5962133'), + (53442, 543, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dOpPgrOm', '5962134'), + (53443, 543, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dOpPgrOm', '5962317'), + (53444, 543, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dOpPgrOm', '5962318'), + (53445, 543, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dOpPgrOm', '5965933'), + (53446, 543, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dOpPgrOm', '5967014'), + (53447, 543, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dOpPgrOm', '5972815'), + (53448, 543, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dOpPgrOm', '5974016'), + (53449, 543, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dOpPgrOm', '5981515'), + (53450, 543, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dOpPgrOm', '5993516'), + (53451, 543, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dOpPgrOm', '5998939'), + (53452, 543, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dOpPgrOm', '6028191'), + (53453, 543, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dOpPgrOm', '6040066'), + (53454, 543, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dOpPgrOm', '6042717'), + (53455, 543, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dOpPgrOm', '6044838'), + (53456, 543, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOpPgrOm', '6044839'), + (53457, 543, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOpPgrOm', '6045684'), + (53458, 543, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dOpPgrOm', '6050104'), + (53459, 543, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dOpPgrOm', '6053195'), + (53460, 543, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOpPgrOm', '6053198'), + (53461, 543, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dOpPgrOm', '6056085'), + (53462, 543, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOpPgrOm', '6056916'), + (53463, 543, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOpPgrOm', '6059290'), + (53464, 543, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOpPgrOm', '6060328'), + (53465, 543, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOpPgrOm', '6061037'), + (53466, 543, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOpPgrOm', '6061039'), + (53467, 543, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOpPgrOm', '6067245'), + (53468, 543, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOpPgrOm', '6068094'), + (53469, 543, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOpPgrOm', '6068252'), + (53470, 543, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOpPgrOm', '6068253'), + (53471, 543, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOpPgrOm', '6068254'), + (53472, 543, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dOpPgrOm', '6068280'), + (53473, 543, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOpPgrOm', '6069093'), + (53474, 543, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOpPgrOm', '6072528'), + (53475, 543, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOpPgrOm', '6079840'), + (53476, 543, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOpPgrOm', '6083398'), + (53477, 543, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOpPgrOm', '6093504'), + (53478, 543, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOpPgrOm', '6097414'), + (53479, 543, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOpPgrOm', '6097442'), + (53480, 543, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOpPgrOm', '6097684'), + (53481, 543, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOpPgrOm', '6098762'), + (53482, 543, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOpPgrOm', '6101361'), + (53483, 543, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOpPgrOm', '6101362'), + (53484, 543, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dOpPgrOm', '6103752'), + (53485, 543, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOpPgrOm', '6107314'), + (53486, 543, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOpPgrOm', '6120034'), + (53487, 543, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dOpPgrOm', '6136733'), + (53488, 543, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOpPgrOm', '6137989'), + (53489, 543, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOpPgrOm', '6150864'), + (53490, 543, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOpPgrOm', '6155491'), + (53491, 543, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOpPgrOm', '6164417'), + (53492, 543, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOpPgrOm', '6166388'), + (53493, 543, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOpPgrOm', '6176439'), + (53494, 543, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOpPgrOm', '6182410'), + (53495, 543, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOpPgrOm', '6185812'), + (53496, 543, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOpPgrOm', '6187651'), + (53497, 543, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOpPgrOm', '6187963'), + (53498, 543, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOpPgrOm', '6187964'), + (53499, 543, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOpPgrOm', '6187966'), + (53500, 543, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOpPgrOm', '6187967'), + (53501, 543, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOpPgrOm', '6187969'), + (53502, 543, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOpPgrOm', '6334878'), + (53503, 543, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOpPgrOm', '6337236'), + (53504, 543, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOpPgrOm', '6337970'), + (53505, 543, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOpPgrOm', '6338308'), + (53506, 543, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dOpPgrOm', '6340845'), + (53507, 543, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOpPgrOm', '6341710'), + (53508, 543, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOpPgrOm', '6342044'), + (53509, 543, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOpPgrOm', '6342298'), + (53510, 543, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dOpPgrOm', '6343294'), + (53511, 543, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOpPgrOm', '6347034'), + (53512, 543, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOpPgrOm', '6347056'), + (53513, 543, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOpPgrOm', '6353830'), + (53514, 543, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOpPgrOm', '6353831'), + (53515, 543, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOpPgrOm', '6357867'), + (53516, 543, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOpPgrOm', '6358652'), + (53517, 543, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOpPgrOm', '6361709'), + (53518, 543, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dOpPgrOm', '6361710'), + (53519, 543, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOpPgrOm', '6361711'), + (53520, 543, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOpPgrOm', '6361712'), + (53521, 543, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOpPgrOm', '6361713'), + (53522, 543, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOpPgrOm', '6382573'), + (53523, 543, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOpPgrOm', '6388604'), + (53524, 543, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOpPgrOm', '6394629'), + (53525, 543, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOpPgrOm', '6394631'), + (53526, 543, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOpPgrOm', '6440863'), + (53527, 543, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOpPgrOm', '6445440'), + (53528, 543, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOpPgrOm', '6453951'), + (53529, 543, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOpPgrOm', '6461696'), + (53530, 543, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOpPgrOm', '6462129'), + (53531, 543, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOpPgrOm', '6463218'), + (53532, 543, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dOpPgrOm', '6472181'), + (53533, 543, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOpPgrOm', '6482693'), + (53534, 543, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dOpPgrOm', '6484200'), + (53535, 543, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOpPgrOm', '6484680'), + (53536, 543, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOpPgrOm', '6507741'), + (53537, 543, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dOpPgrOm', '6514659'), + (53538, 543, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOpPgrOm', '6514660'), + (53539, 543, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOpPgrOm', '6519103'), + (53540, 543, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOpPgrOm', '6535681'), + (53541, 543, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOpPgrOm', '6584747'), + (53542, 543, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOpPgrOm', '6587097'), + (53543, 543, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOpPgrOm', '6609022'), + (53544, 543, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOpPgrOm', '6632757'), + (53545, 543, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOpPgrOm', '6644187'), + (53546, 543, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOpPgrOm', '6648951'), + (53547, 543, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOpPgrOm', '6648952'), + (53548, 543, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOpPgrOm', '6655401'), + (53549, 543, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOpPgrOm', '6661585'), + (53550, 543, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOpPgrOm', '6661588'), + (53551, 543, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOpPgrOm', '6661589'), + (53552, 543, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOpPgrOm', '6699906'), + (53553, 543, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOpPgrOm', '6701109'), + (53554, 543, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOpPgrOm', '6705219'), + (53555, 543, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOpPgrOm', '6710153'), + (53556, 543, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOpPgrOm', '6711552'), + (53557, 543, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dOpPgrOm', '6711553'), + (53558, 544, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E51DgD4', '6045684'), + (53559, 545, 401, 'not_attending', '2021-05-14 00:35:03', '2025-12-17 19:47:46', 'NmL2aZJ4', '3236456'), + (53560, 545, 646, 'attending', '2021-05-13 05:01:41', '2025-12-17 19:47:46', 'NmL2aZJ4', '3539921'), + (53561, 545, 647, 'not_attending', '2021-05-22 23:24:33', '2025-12-17 19:47:47', 'NmL2aZJ4', '3539922'), + (53562, 545, 648, 'attending', '2021-05-28 15:50:34', '2025-12-17 19:47:47', 'NmL2aZJ4', '3539923'), + (53563, 545, 666, 'attending', '2021-08-12 15:54:53', '2025-12-17 19:47:42', 'NmL2aZJ4', '3547144'), + (53564, 545, 674, 'attending', '2021-08-07 22:21:30', '2025-12-17 19:47:41', 'NmL2aZJ4', '3547152'), + (53565, 545, 744, 'not_attending', '2021-06-03 18:43:04', '2025-12-17 19:47:47', 'NmL2aZJ4', '3680624'), + (53566, 545, 797, 'attending', '2021-05-25 22:25:59', '2025-12-17 19:47:47', 'NmL2aZJ4', '3796195'), + (53567, 545, 800, 'attending', '2021-05-13 05:02:38', '2025-12-17 19:47:46', 'NmL2aZJ4', '3800908'), + (53568, 545, 801, 'attending', '2021-05-13 05:01:03', '2025-12-17 19:47:46', 'NmL2aZJ4', '3800910'), + (53569, 545, 804, 'attending', '2021-05-23 03:30:07', '2025-12-17 19:47:47', 'NmL2aZJ4', '3804775'), + (53570, 545, 807, 'attending', '2021-05-13 05:02:54', '2025-12-17 19:47:46', 'NmL2aZJ4', '3807154'), + (53571, 545, 815, 'not_attending', '2021-05-28 15:50:13', '2025-12-17 19:47:47', 'NmL2aZJ4', '3818136'), + (53572, 545, 817, 'attending', '2021-05-20 23:41:01', '2025-12-17 19:47:46', 'NmL2aZJ4', '3832498'), + (53573, 545, 823, 'attending', '2021-06-08 23:13:13', '2025-12-17 19:47:48', 'NmL2aZJ4', '3974109'), + (53574, 545, 825, 'not_attending', '2021-06-08 23:12:34', '2025-12-17 19:47:47', 'NmL2aZJ4', '3975283'), + (53575, 545, 827, 'attending', '2021-06-05 14:53:09', '2025-12-17 19:47:47', 'NmL2aZJ4', '3975311'), + (53576, 545, 828, 'attending', '2021-06-12 19:19:37', '2025-12-17 19:47:47', 'NmL2aZJ4', '3975312'), + (53577, 545, 830, 'maybe', '2021-06-03 18:38:07', '2025-12-17 19:47:47', 'NmL2aZJ4', '3976648'), + (53578, 545, 833, 'maybe', '2021-06-03 18:38:39', '2025-12-17 19:47:47', 'NmL2aZJ4', '3990438'), + (53579, 545, 834, 'maybe', '2021-06-03 18:42:39', '2025-12-17 19:47:47', 'NmL2aZJ4', '3990439'), + (53580, 545, 838, 'maybe', '2021-06-09 00:58:35', '2025-12-17 19:47:47', 'NmL2aZJ4', '3994992'), + (53581, 545, 840, 'attending', '2021-06-08 00:51:12', '2025-12-17 19:47:47', 'NmL2aZJ4', '4007283'), + (53582, 545, 844, 'not_attending', '2021-06-23 20:26:52', '2025-12-17 19:47:38', 'NmL2aZJ4', '4014338'), + (53583, 545, 857, 'attending', '2021-11-08 02:12:05', '2025-12-17 19:47:37', 'NmL2aZJ4', '4015731'), + (53584, 545, 866, 'maybe', '2021-06-12 14:51:57', '2025-12-17 19:47:38', 'NmL2aZJ4', '4020424'), + (53585, 545, 867, 'attending', '2021-06-26 21:06:42', '2025-12-17 19:47:38', 'NmL2aZJ4', '4021848'), + (53586, 545, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmL2aZJ4', '4136744'), + (53587, 545, 870, 'not_attending', '2021-06-30 19:54:08', '2025-12-17 19:47:39', 'NmL2aZJ4', '4136937'), + (53588, 545, 871, 'attending', '2021-07-08 02:57:02', '2025-12-17 19:47:39', 'NmL2aZJ4', '4136938'), + (53589, 545, 872, 'not_attending', '2021-07-21 15:03:02', '2025-12-17 19:47:40', 'NmL2aZJ4', '4136947'), + (53590, 545, 884, 'maybe', '2021-07-31 19:52:19', '2025-12-17 19:47:42', 'NmL2aZJ4', '4210314'), + (53591, 545, 887, 'attending', '2021-07-11 16:21:47', '2025-12-17 19:47:39', 'NmL2aZJ4', '4225444'), + (53592, 545, 898, 'attending', '2021-07-01 18:24:57', '2025-12-17 19:47:38', 'NmL2aZJ4', '4236746'), + (53593, 545, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmL2aZJ4', '4239259'), + (53594, 545, 900, 'attending', '2021-07-18 18:24:25', '2025-12-17 19:47:40', 'NmL2aZJ4', '4240316'), + (53595, 545, 901, 'attending', '2021-07-30 16:48:22', '2025-12-17 19:47:40', 'NmL2aZJ4', '4240317'), + (53596, 545, 902, 'attending', '2021-08-06 14:24:24', '2025-12-17 19:47:41', 'NmL2aZJ4', '4240318'), + (53597, 545, 903, 'attending', '2021-08-11 16:07:45', '2025-12-17 19:47:42', 'NmL2aZJ4', '4240320'), + (53598, 545, 904, 'not_attending', '2021-07-11 14:31:33', '2025-12-17 19:47:39', 'NmL2aZJ4', '4241594'), + (53599, 545, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmL2aZJ4', '4250163'), + (53600, 545, 909, 'maybe', '2021-07-06 19:47:47', '2025-12-17 19:47:39', 'NmL2aZJ4', '4258187'), + (53601, 545, 910, 'attending', '2021-07-09 00:57:14', '2025-12-17 19:47:39', 'NmL2aZJ4', '4258189'), + (53602, 545, 911, 'not_attending', '2021-07-11 23:05:55', '2025-12-17 19:47:39', 'NmL2aZJ4', '4264465'), + (53603, 545, 913, 'attending', '2021-07-11 22:42:53', '2025-12-17 19:47:39', 'NmL2aZJ4', '4273765'), + (53604, 545, 914, 'attending', '2021-07-15 01:47:54', '2025-12-17 19:47:39', 'NmL2aZJ4', '4273767'), + (53605, 545, 915, 'maybe', '2021-07-20 22:57:19', '2025-12-17 19:47:39', 'NmL2aZJ4', '4273770'), + (53606, 545, 917, 'attending', '2021-07-11 22:43:29', '2025-12-17 19:47:39', 'NmL2aZJ4', '4274481'), + (53607, 545, 919, 'not_attending', '2021-07-17 22:56:32', '2025-12-17 19:47:39', 'NmL2aZJ4', '4275957'), + (53608, 545, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'NmL2aZJ4', '4277819'), + (53609, 545, 921, 'not_attending', '2021-07-14 03:11:56', '2025-12-17 19:47:39', 'NmL2aZJ4', '4278368'), + (53610, 545, 922, 'attending', '2021-07-14 03:12:11', '2025-12-17 19:47:40', 'NmL2aZJ4', '4280811'), + (53611, 545, 924, 'attending', '2021-07-21 04:21:38', '2025-12-17 19:47:40', 'NmL2aZJ4', '4297137'), + (53612, 545, 926, 'maybe', '2021-08-18 23:20:38', '2025-12-17 19:47:42', 'NmL2aZJ4', '4297211'), + (53613, 545, 932, 'maybe', '2021-08-22 15:47:37', '2025-12-17 19:47:42', 'NmL2aZJ4', '4301664'), + (53614, 545, 933, 'maybe', '2021-07-28 02:45:15', '2025-12-17 19:47:40', 'NmL2aZJ4', '4301723'), + (53615, 545, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmL2aZJ4', '4302093'), + (53616, 545, 935, 'attending', '2021-07-23 13:22:06', '2025-12-17 19:47:41', 'NmL2aZJ4', '4304151'), + (53617, 545, 936, 'not_attending', '2021-07-25 22:35:29', '2025-12-17 19:47:40', 'NmL2aZJ4', '4305951'), + (53618, 545, 938, 'maybe', '2021-07-25 22:35:34', '2025-12-17 19:47:40', 'NmL2aZJ4', '4306597'), + (53619, 545, 939, 'attending', '2021-07-25 02:44:15', '2025-12-17 19:47:40', 'NmL2aZJ4', '4308354'), + (53620, 545, 941, 'not_attending', '2021-07-25 18:11:23', '2025-12-17 19:47:40', 'NmL2aZJ4', '4309464'), + (53621, 545, 942, 'attending', '2021-07-28 02:45:50', '2025-12-17 19:47:40', 'NmL2aZJ4', '4310297'), + (53622, 545, 943, 'attending', '2021-07-26 04:05:41', '2025-12-17 19:47:41', 'NmL2aZJ4', '4310979'), + (53623, 545, 944, 'attending', '2021-07-26 04:08:53', '2025-12-17 19:47:41', 'NmL2aZJ4', '4310980'), + (53624, 545, 945, 'attending', '2021-07-26 04:08:55', '2025-12-17 19:47:42', 'NmL2aZJ4', '4310981'), + (53625, 545, 956, 'attending', '2021-08-03 04:25:07', '2025-12-17 19:47:40', 'NmL2aZJ4', '4331968'), + (53626, 545, 957, 'attending', '2021-08-05 16:59:57', '2025-12-17 19:47:41', 'NmL2aZJ4', '4338834'), + (53627, 545, 961, 'maybe', '2021-08-13 20:46:25', '2025-12-17 19:47:42', 'NmL2aZJ4', '4345519'), + (53628, 545, 962, 'maybe', '2021-08-12 15:53:35', '2025-12-17 19:47:41', 'NmL2aZJ4', '4346305'), + (53629, 545, 966, 'maybe', '2021-08-21 15:23:38', '2025-12-17 19:47:42', 'NmL2aZJ4', '4356162'), + (53630, 545, 967, 'maybe', '2021-08-18 23:22:43', '2025-12-17 19:47:42', 'NmL2aZJ4', '4356164'), + (53631, 545, 971, 'attending', '2021-08-28 17:34:00', '2025-12-17 19:47:43', 'NmL2aZJ4', '4356801'), + (53632, 545, 972, 'maybe', '2021-08-19 16:52:23', '2025-12-17 19:47:42', 'NmL2aZJ4', '4358025'), + (53633, 545, 973, 'maybe', '2021-08-19 16:52:52', '2025-12-17 19:47:42', 'NmL2aZJ4', '4366186'), + (53634, 545, 974, 'attending', '2021-08-19 00:25:01', '2025-12-17 19:47:42', 'NmL2aZJ4', '4366187'), + (53635, 545, 976, 'attending', '2021-08-19 01:01:11', '2025-12-17 19:47:42', 'NmL2aZJ4', '4373933'), + (53636, 545, 979, 'not_attending', '2021-08-19 01:08:14', '2025-12-17 19:47:42', 'NmL2aZJ4', '4379085'), + (53637, 545, 981, 'not_attending', '2021-08-27 22:53:32', '2025-12-17 19:47:42', 'NmL2aZJ4', '4387305'), + (53638, 545, 982, 'not_attending', '2021-08-28 18:44:26', '2025-12-17 19:47:42', 'NmL2aZJ4', '4389739'), + (53639, 545, 988, 'not_attending', '2021-08-27 22:53:35', '2025-12-17 19:47:42', 'NmL2aZJ4', '4402823'), + (53640, 545, 990, 'attending', '2021-08-28 22:30:34', '2025-12-17 19:47:43', 'NmL2aZJ4', '4420735'), + (53641, 545, 991, 'not_attending', '2021-09-11 21:24:44', '2025-12-17 19:47:43', 'NmL2aZJ4', '4420738'), + (53642, 545, 992, 'not_attending', '2021-09-18 22:59:31', '2025-12-17 19:47:34', 'NmL2aZJ4', '4420739'), + (53643, 545, 993, 'attending', '2021-09-25 22:55:01', '2025-12-17 19:47:34', 'NmL2aZJ4', '4420741'), + (53644, 545, 995, 'maybe', '2021-10-05 19:26:23', '2025-12-17 19:47:34', 'NmL2aZJ4', '4420744'), + (53645, 545, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'NmL2aZJ4', '4420747'), + (53646, 545, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'NmL2aZJ4', '4420748'), + (53647, 545, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'NmL2aZJ4', '4420749'), + (53648, 545, 999, 'not_attending', '2021-08-29 03:08:45', '2025-12-17 19:47:43', 'NmL2aZJ4', '4421150'), + (53649, 545, 1000, 'attending', '2021-08-29 22:34:52', '2025-12-17 19:47:43', 'NmL2aZJ4', '4424456'), + (53650, 545, 1001, 'maybe', '2021-08-30 14:20:19', '2025-12-17 19:47:43', 'NmL2aZJ4', '4424687'), + (53651, 545, 1015, 'attending', '2021-09-03 13:40:57', '2025-12-17 19:47:43', 'NmL2aZJ4', '4440800'), + (53652, 545, 1017, 'attending', '2021-09-04 21:53:15', '2025-12-17 19:47:43', 'NmL2aZJ4', '4441822'), + (53653, 545, 1018, 'attending', '2021-09-05 17:13:14', '2025-12-17 19:47:43', 'NmL2aZJ4', '4448883'), + (53654, 545, 1020, 'attending', '2021-09-13 00:49:12', '2025-12-17 19:47:43', 'NmL2aZJ4', '4451787'), + (53655, 545, 1023, 'maybe', '2021-09-12 14:16:35', '2025-12-17 19:47:43', 'NmL2aZJ4', '4461883'), + (53656, 545, 1024, 'attending', '2021-09-10 00:54:48', '2025-12-17 19:47:43', 'NmL2aZJ4', '4462044'), + (53657, 545, 1026, 'attending', '2021-09-12 16:45:28', '2025-12-17 19:47:43', 'NmL2aZJ4', '4472951'), + (53658, 545, 1027, 'attending', '2021-09-12 16:46:01', '2025-12-17 19:47:34', 'NmL2aZJ4', '4472982'), + (53659, 545, 1028, 'attending', '2021-09-12 16:47:03', '2025-12-17 19:47:34', 'NmL2aZJ4', '4472983'), + (53660, 545, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmL2aZJ4', '4508342'), + (53661, 545, 1073, 'attending', '2021-09-28 02:19:03', '2025-12-17 19:47:34', 'NmL2aZJ4', '4518993'), + (53662, 545, 1076, 'attending', '2021-10-03 16:08:28', '2025-12-17 19:47:34', 'NmL2aZJ4', '4539147'), + (53663, 545, 1080, 'attending', '2021-10-10 20:35:49', '2025-12-17 19:47:34', 'NmL2aZJ4', '4564599'), + (53664, 545, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmL2aZJ4', '4568602'), + (53665, 545, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmL2aZJ4', '4572153'), + (53666, 545, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmL2aZJ4', '4585962'), + (53667, 545, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'NmL2aZJ4', '4596356'), + (53668, 545, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmL2aZJ4', '4598860'), + (53669, 545, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmL2aZJ4', '4598861'), + (53670, 545, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmL2aZJ4', '4602797'), + (53671, 545, 1109, 'attending', '2021-11-11 02:36:31', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635221'), + (53672, 545, 1110, 'attending', '2021-11-11 02:30:31', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635224'), + (53673, 545, 1111, 'attending', '2021-11-11 02:35:31', '2025-12-17 19:47:31', 'NmL2aZJ4', '4635279'), + (53674, 545, 1112, 'attending', '2021-11-11 02:35:30', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635420'), + (53675, 545, 1113, 'attending', '2021-11-11 02:36:22', '2025-12-17 19:47:37', 'NmL2aZJ4', '4635421'), + (53676, 545, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmL2aZJ4', '4637896'), + (53677, 545, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmL2aZJ4', '4642994'), + (53678, 545, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmL2aZJ4', '4642995'), + (53679, 545, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmL2aZJ4', '4642996'), + (53680, 545, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmL2aZJ4', '4642997'), + (53681, 545, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmL2aZJ4', '4645687'), + (53682, 545, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmL2aZJ4', '4645698'), + (53683, 545, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmL2aZJ4', '4645704'), + (53684, 545, 1129, 'maybe', '2021-11-24 06:48:24', '2025-12-17 19:47:37', 'NmL2aZJ4', '4645705'), + (53685, 545, 1134, 'attending', '2021-11-24 06:58:30', '2025-12-17 19:47:37', 'NmL2aZJ4', '4668385'), + (53686, 545, 1136, 'not_attending', '2021-11-25 20:34:02', '2025-12-17 19:47:37', 'NmL2aZJ4', '4670473'), + (53687, 545, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmL2aZJ4', '4694407'), + (53688, 545, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmL2aZJ4', '4736497'), + (53689, 545, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'NmL2aZJ4', '4736499'), + (53690, 545, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmL2aZJ4', '4736500'), + (53691, 545, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'NmL2aZJ4', '4736503'), + (53692, 545, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'NmL2aZJ4', '4736504'), + (53693, 545, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmL2aZJ4', '4746789'), + (53694, 545, 1186, 'attending', '2022-01-09 08:30:57', '2025-12-17 19:47:31', 'NmL2aZJ4', '4747800'), + (53695, 545, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmL2aZJ4', '4753929'), + (53696, 545, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmL2aZJ4', '5038850'), + (53697, 545, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmL2aZJ4', '5045826'), + (53698, 545, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmL2aZJ4', '5132533'), + (53699, 545, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'NmL2aZJ4', '5186582'), + (53700, 545, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'NmL2aZJ4', '5186583'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (53701, 545, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'NmL2aZJ4', '5186585'), + (53702, 545, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'NmL2aZJ4', '5190437'), + (53703, 545, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'NmL2aZJ4', '5195095'), + (53704, 545, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmL2aZJ4', '5215989'), + (53705, 545, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmL2aZJ4', '5223686'), + (53706, 545, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmL2aZJ4', '5227432'), + (53707, 545, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'NmL2aZJ4', '5231461'), + (53708, 545, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'NmL2aZJ4', '5247467'), + (53709, 545, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'NmL2aZJ4', '5260800'), + (53710, 545, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'NmL2aZJ4', '5269930'), + (53711, 545, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'NmL2aZJ4', '5271448'), + (53712, 545, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'NmL2aZJ4', '5271449'), + (53713, 545, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmL2aZJ4', '5276469'), + (53714, 545, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'NmL2aZJ4', '5277078'), + (53715, 545, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmL2aZJ4', '5278159'), + (53716, 545, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'NmL2aZJ4', '5363695'), + (53717, 545, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmL2aZJ4', '5365960'), + (53718, 545, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmL2aZJ4', '5368973'), + (53719, 545, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'NmL2aZJ4', '5378247'), + (53720, 545, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'NmL2aZJ4', '5389605'), + (53721, 545, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'NmL2aZJ4', '5397265'), + (53722, 545, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmL2aZJ4', '5403967'), + (53723, 545, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmL2aZJ4', '5404786'), + (53724, 545, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmL2aZJ4', '5405203'), + (53725, 545, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmL2aZJ4', '5411699'), + (53726, 545, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'NmL2aZJ4', '5412550'), + (53727, 545, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmL2aZJ4', '5415046'), + (53728, 545, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'NmL2aZJ4', '5422086'), + (53729, 545, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'NmL2aZJ4', '5422406'), + (53730, 545, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmL2aZJ4', '5424565'), + (53731, 545, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmL2aZJ4', '5426882'), + (53732, 545, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmL2aZJ4', '5427083'), + (53733, 545, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmL2aZJ4', '5441125'), + (53734, 545, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmL2aZJ4', '5441126'), + (53735, 545, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmL2aZJ4', '5441128'), + (53736, 545, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmL2aZJ4', '5446643'), + (53737, 545, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmL2aZJ4', '5453325'), + (53738, 545, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmL2aZJ4', '5454516'), + (53739, 545, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmL2aZJ4', '5454605'), + (53740, 545, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmL2aZJ4', '5455037'), + (53741, 545, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmL2aZJ4', '5461278'), + (53742, 545, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmL2aZJ4', '5469480'), + (53743, 545, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmL2aZJ4', '5471073'), + (53744, 545, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'NmL2aZJ4', '5474663'), + (53745, 545, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmL2aZJ4', '5482022'), + (53746, 545, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmL2aZJ4', '5482793'), + (53747, 545, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmL2aZJ4', '5488912'), + (53748, 545, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmL2aZJ4', '5492192'), + (53749, 545, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmL2aZJ4', '5493139'), + (53750, 545, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmL2aZJ4', '5493200'), + (53751, 545, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmL2aZJ4', '5502188'), + (53752, 545, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmL2aZJ4', '5512862'), + (53753, 545, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmL2aZJ4', '5513985'), + (53754, 545, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmL2aZJ4', '6045684'), + (53755, 546, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'm6ZnNjRm', '7074364'), + (53756, 546, 2627, 'attending', '2024-05-24 19:27:08', '2025-12-17 19:46:35', 'm6ZnNjRm', '7264724'), + (53757, 546, 2628, 'attending', '2024-06-01 01:28:05', '2025-12-17 19:46:36', 'm6ZnNjRm', '7264725'), + (53758, 546, 2642, 'attending', '2024-05-18 01:48:02', '2025-12-17 19:46:35', 'm6ZnNjRm', '7276108'), + (53759, 546, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'm6ZnNjRm', '7281768'), + (53760, 546, 2649, 'maybe', '2024-05-26 15:55:25', '2025-12-17 19:46:35', 'm6ZnNjRm', '7282950'), + (53761, 546, 2651, 'attending', '2024-05-24 19:28:19', '2025-12-17 19:46:35', 'm6ZnNjRm', '7288200'), + (53762, 546, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'm6ZnNjRm', '7302674'), + (53763, 546, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'm6ZnNjRm', '7324073'), + (53764, 546, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'm6ZnNjRm', '7324074'), + (53765, 546, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'm6ZnNjRm', '7324075'), + (53766, 546, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'm6ZnNjRm', '7324078'), + (53767, 546, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'm6ZnNjRm', '7324082'), + (53768, 546, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'm6ZnNjRm', '7331457'), + (53769, 546, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'm6ZnNjRm', '7356752'), + (53770, 546, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'm6ZnNjRm', '7363643'), + (53771, 546, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'm6ZnNjRm', '7368606'), + (53772, 546, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'm6ZnNjRm', '7397462'), + (53773, 546, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'm6ZnNjRm', '7424275'), + (53774, 546, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'm6ZnNjRm', '7424276'), + (53775, 546, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'm6ZnNjRm', '7432751'), + (53776, 546, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'm6ZnNjRm', '7432752'), + (53777, 546, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'm6ZnNjRm', '7432753'), + (53778, 546, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432754'), + (53779, 546, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432755'), + (53780, 546, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432756'), + (53781, 546, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432758'), + (53782, 546, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'm6ZnNjRm', '7432759'), + (53783, 546, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'm6ZnNjRm', '7433834'), + (53784, 546, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'm6ZnNjRm', '7470197'), + (53785, 546, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'm6ZnNjRm', '7685613'), + (53786, 546, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6ZnNjRm', '7688194'), + (53787, 546, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6ZnNjRm', '7688196'), + (53788, 546, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6ZnNjRm', '7688289'), + (53789, 547, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dVBgEaqd', '4210314'), + (53790, 547, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'dVBgEaqd', '4240320'), + (53791, 547, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dVBgEaqd', '4304151'), + (53792, 547, 948, 'maybe', '2021-08-11 05:46:53', '2025-12-17 19:47:41', 'dVBgEaqd', '4315714'), + (53793, 547, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'dVBgEaqd', '4315726'), + (53794, 547, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dVBgEaqd', '4356801'), + (53795, 547, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dVBgEaqd', '4366186'), + (53796, 547, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dVBgEaqd', '4366187'), + (53797, 547, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dVBgEaqd', '4420735'), + (53798, 547, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dVBgEaqd', '4420738'), + (53799, 547, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dVBgEaqd', '4420739'), + (53800, 547, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dVBgEaqd', '4420741'), + (53801, 547, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dVBgEaqd', '4420744'), + (53802, 547, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dVBgEaqd', '4420747'), + (53803, 547, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dVBgEaqd', '4420748'), + (53804, 547, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dVBgEaqd', '4420749'), + (53805, 547, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dVBgEaqd', '4461883'), + (53806, 547, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dVBgEaqd', '4508342'), + (53807, 547, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dVBgEaqd', '4568602'), + (53808, 547, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVBgEaqd', '4572153'), + (53809, 547, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dVBgEaqd', '4585962'), + (53810, 547, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dVBgEaqd', '4596356'), + (53811, 547, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dVBgEaqd', '4598860'), + (53812, 547, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dVBgEaqd', '4598861'), + (53813, 547, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dVBgEaqd', '4602797'), + (53814, 547, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dVBgEaqd', '4637896'), + (53815, 547, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dVBgEaqd', '4642994'), + (53816, 547, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dVBgEaqd', '4642995'), + (53817, 547, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dVBgEaqd', '4642996'), + (53818, 547, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dVBgEaqd', '4642997'), + (53819, 547, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dVBgEaqd', '4645687'), + (53820, 547, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dVBgEaqd', '4645698'), + (53821, 547, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dVBgEaqd', '4645704'), + (53822, 547, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dVBgEaqd', '4645705'), + (53823, 547, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dVBgEaqd', '4668385'), + (53824, 547, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBgEaqd', '6045684'), + (53825, 548, 1989, 'attending', '2023-05-14 02:46:23', '2025-12-17 19:47:03', 'amGO55Zm', '6044842'), + (53826, 548, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'amGO55Zm', '6067245'), + (53827, 548, 2031, 'maybe', '2023-05-24 20:47:34', '2025-12-17 19:47:04', 'amGO55Zm', '6068280'), + (53828, 548, 2032, 'attending', '2023-06-01 02:26:29', '2025-12-17 19:47:04', 'amGO55Zm', '6068281'), + (53829, 548, 2056, 'attending', '2023-05-13 02:24:04', '2025-12-17 19:47:02', 'amGO55Zm', '6093504'), + (53830, 548, 2060, 'attending', '2023-05-15 00:10:33', '2025-12-17 19:47:03', 'amGO55Zm', '6097414'), + (53831, 548, 2064, 'attending', '2023-06-23 02:33:04', '2025-12-17 19:46:50', 'amGO55Zm', '6099988'), + (53832, 548, 2065, 'attending', '2023-06-12 01:45:29', '2025-12-17 19:46:49', 'amGO55Zm', '6101169'), + (53833, 548, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'amGO55Zm', '6101361'), + (53834, 548, 2067, 'maybe', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'amGO55Zm', '6101362'), + (53835, 548, 2068, 'maybe', '2023-05-14 02:45:18', '2025-12-17 19:47:03', 'amGO55Zm', '6102837'), + (53836, 548, 2069, 'attending', '2023-05-18 15:34:16', '2025-12-17 19:47:03', 'amGO55Zm', '6103750'), + (53837, 548, 2070, 'maybe', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'amGO55Zm', '6103752'), + (53838, 548, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'amGO55Zm', '6107314'), + (53839, 548, 2078, 'attending', '2023-05-21 03:39:15', '2025-12-17 19:47:03', 'amGO55Zm', '6114163'), + (53840, 548, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'amGO55Zm', '6120034'), + (53841, 548, 2090, 'not_attending', '2023-06-01 02:26:15', '2025-12-17 19:47:04', 'amGO55Zm', '6127961'), + (53842, 548, 2091, 'attending', '2023-06-04 21:04:21', '2025-12-17 19:47:04', 'amGO55Zm', '6130657'), + (53843, 548, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'amGO55Zm', '6136733'), + (53844, 548, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'amGO55Zm', '6137989'), + (53845, 548, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'amGO55Zm', '6150864'), + (53846, 548, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'amGO55Zm', '6155491'), + (53847, 548, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'amGO55Zm', '6164417'), + (53848, 548, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'amGO55Zm', '6166388'), + (53849, 548, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'amGO55Zm', '6176439'), + (53850, 548, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'amGO55Zm', '6182410'), + (53851, 548, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'amGO55Zm', '6185812'), + (53852, 548, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'amGO55Zm', '6187651'), + (53853, 548, 2134, 'attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'amGO55Zm', '6187963'), + (53854, 548, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'amGO55Zm', '6187964'), + (53855, 548, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'amGO55Zm', '6187966'), + (53856, 548, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'amGO55Zm', '6187967'), + (53857, 548, 2138, 'attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'amGO55Zm', '6187969'), + (53858, 548, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'amGO55Zm', '6334878'), + (53859, 548, 2146, 'attending', '2023-07-18 11:47:07', '2025-12-17 19:46:53', 'amGO55Zm', '6335638'), + (53860, 548, 2147, 'attending', '2023-07-09 21:35:25', '2025-12-17 19:46:52', 'amGO55Zm', '6335666'), + (53861, 548, 2149, 'not_attending', '2023-07-18 11:47:53', '2025-12-17 19:46:53', 'amGO55Zm', '6335682'), + (53862, 548, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'amGO55Zm', '6337236'), + (53863, 548, 2155, 'not_attending', '2023-07-18 11:48:10', '2025-12-17 19:46:53', 'amGO55Zm', '6337970'), + (53864, 548, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'amGO55Zm', '6338308'), + (53865, 548, 2159, 'attending', '2023-07-18 11:46:46', '2025-12-17 19:46:53', 'amGO55Zm', '6338355'), + (53866, 548, 2160, 'attending', '2023-07-29 22:12:22', '2025-12-17 19:46:54', 'amGO55Zm', '6338358'), + (53867, 548, 2162, 'maybe', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'amGO55Zm', '6340845'), + (53868, 548, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'amGO55Zm', '6341710'), + (53869, 548, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'amGO55Zm', '6342044'), + (53870, 548, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'amGO55Zm', '6342298'), + (53871, 548, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'amGO55Zm', '6343294'), + (53872, 548, 2175, 'not_attending', '2023-07-22 18:59:02', '2025-12-17 19:46:53', 'amGO55Zm', '6346982'), + (53873, 548, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'amGO55Zm', '6347034'), + (53874, 548, 2177, 'not_attending', '2023-08-05 16:51:57', '2025-12-17 19:46:55', 'amGO55Zm', '6347053'), + (53875, 548, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'amGO55Zm', '6347056'), + (53876, 548, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'amGO55Zm', '6353830'), + (53877, 548, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'amGO55Zm', '6353831'), + (53878, 548, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'amGO55Zm', '6357867'), + (53879, 548, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'amGO55Zm', '6358652'), + (53880, 548, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'amGO55Zm', '6361709'), + (53881, 548, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'amGO55Zm', '6361710'), + (53882, 548, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'amGO55Zm', '6361711'), + (53883, 548, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'amGO55Zm', '6361712'), + (53884, 548, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'amGO55Zm', '6361713'), + (53885, 548, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'amGO55Zm', '6382573'), + (53886, 548, 2241, 'maybe', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'amGO55Zm', '6388604'), + (53887, 548, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'amGO55Zm', '6394629'), + (53888, 548, 2249, 'maybe', '2023-09-20 17:37:19', '2025-12-17 19:46:45', 'amGO55Zm', '6394630'), + (53889, 548, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'amGO55Zm', '6394631'), + (53890, 548, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'amGO55Zm', '6440863'), + (53891, 548, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'amGO55Zm', '6445440'), + (53892, 548, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'amGO55Zm', '6453951'), + (53893, 548, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'amGO55Zm', '6461696'), + (53894, 548, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'amGO55Zm', '6462129'), + (53895, 548, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'amGO55Zm', '6463218'), + (53896, 548, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'amGO55Zm', '6472181'), + (53897, 548, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'amGO55Zm', '6482693'), + (53898, 548, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'amGO55Zm', '6484200'), + (53899, 548, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'amGO55Zm', '6484680'), + (53900, 548, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'amGO55Zm', '6507741'), + (53901, 548, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'amGO55Zm', '6514659'), + (53902, 548, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'amGO55Zm', '6514660'), + (53903, 548, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'amGO55Zm', '6519103'), + (53904, 548, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'amGO55Zm', '6535681'), + (53905, 548, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'amGO55Zm', '6584747'), + (53906, 548, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'amGO55Zm', '6587097'), + (53907, 548, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'amGO55Zm', '6609022'), + (53908, 548, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'amGO55Zm', '6632757'), + (53909, 548, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'amGO55Zm', '6644187'), + (53910, 548, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'amGO55Zm', '6648951'), + (53911, 548, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'amGO55Zm', '6648952'), + (53912, 548, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'amGO55Zm', '6655401'), + (53913, 548, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'amGO55Zm', '6661585'), + (53914, 548, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'amGO55Zm', '6661588'), + (53915, 548, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'amGO55Zm', '6661589'), + (53916, 548, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'amGO55Zm', '6699906'), + (53917, 548, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'amGO55Zm', '6701109'), + (53918, 548, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'amGO55Zm', '6705219'), + (53919, 548, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'amGO55Zm', '6710153'), + (53920, 548, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'amGO55Zm', '6711552'), + (53921, 548, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'amGO55Zm', '6711553'), + (53922, 549, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgxgKPj4', '5195095'), + (53923, 549, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgxgKPj4', '5223686'), + (53924, 549, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgxgKPj4', '5227432'), + (53925, 549, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgxgKPj4', '5247467'), + (53926, 549, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgxgKPj4', '5260800'), + (53927, 549, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgxgKPj4', '5269930'), + (53928, 549, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgxgKPj4', '5271448'), + (53929, 549, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AgxgKPj4', '5271449'), + (53930, 549, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgxgKPj4', '5276469'), + (53931, 549, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgxgKPj4', '5278159'), + (53932, 549, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxgKPj4', '6045684'), + (53933, 550, 644, 'not_attending', '2021-04-23 04:06:11', '2025-12-17 19:47:46', 'xd96pVzm', '3539919'), + (53934, 550, 645, 'maybe', '2021-04-28 16:25:21', '2025-12-17 19:47:46', 'xd96pVzm', '3539920'), + (53935, 550, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'xd96pVzm', '3539921'), + (53936, 550, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xd96pVzm', '3539922'), + (53937, 550, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'xd96pVzm', '3539923'), + (53938, 550, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'xd96pVzm', '3583262'), + (53939, 550, 729, 'maybe', '2021-04-28 16:24:42', '2025-12-17 19:47:46', 'xd96pVzm', '3668075'), + (53940, 550, 756, 'maybe', '2021-04-26 16:49:11', '2025-12-17 19:47:46', 'xd96pVzm', '3704795'), + (53941, 550, 764, 'maybe', '2021-04-23 20:40:23', '2025-12-17 19:47:45', 'xd96pVzm', '3720507'), + (53942, 550, 775, 'attending', '2021-04-22 12:05:24', '2025-12-17 19:47:45', 'xd96pVzm', '3731062'), + (53943, 550, 777, 'maybe', '2021-05-01 08:55:15', '2025-12-17 19:47:46', 'xd96pVzm', '3746248'), + (53944, 550, 792, 'maybe', '2021-05-16 22:33:08', '2025-12-17 19:47:46', 'xd96pVzm', '3793156'), + (53945, 550, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xd96pVzm', '3974109'), + (53946, 550, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xd96pVzm', '3975311'), + (53947, 550, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xd96pVzm', '3975312'), + (53948, 550, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xd96pVzm', '3994992'), + (53949, 550, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd96pVzm', '4014338'), + (53950, 550, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xd96pVzm', '4021848'), + (53951, 550, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd96pVzm', '4136744'), + (53952, 550, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'xd96pVzm', '4136937'), + (53953, 550, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd96pVzm', '4136938'), + (53954, 550, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd96pVzm', '4136947'), + (53955, 550, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd96pVzm', '4225444'), + (53956, 550, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd96pVzm', '4239259'), + (53957, 550, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd96pVzm', '4250163'), + (53958, 550, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd96pVzm', '6045684'), + (53959, 551, 2016, 'maybe', '2023-05-04 02:36:46', '2025-12-17 19:47:02', 'pmbMM9Xd', '6061039'), + (53960, 551, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'pmbMM9Xd', '6067245'), + (53961, 551, 2030, 'attending', '2023-05-04 02:36:34', '2025-12-17 19:47:02', 'pmbMM9Xd', '6068254'), + (53962, 551, 2031, 'not_attending', '2023-05-27 18:06:21', '2025-12-17 19:47:04', 'pmbMM9Xd', '6068280'), + (53963, 551, 2051, 'attending', '2023-05-03 22:08:20', '2025-12-17 19:47:02', 'pmbMM9Xd', '6083398'), + (53964, 551, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'pmbMM9Xd', '6093504'), + (53965, 551, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'pmbMM9Xd', '6097414'), + (53966, 551, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'pmbMM9Xd', '6097442'), + (53967, 551, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'pmbMM9Xd', '6097684'), + (53968, 551, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'pmbMM9Xd', '6098762'), + (53969, 551, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'pmbMM9Xd', '6101361'), + (53970, 551, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'pmbMM9Xd', '6101362'), + (53971, 551, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'pmbMM9Xd', '6103752'), + (53972, 551, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'pmbMM9Xd', '6107314'), + (53973, 551, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'pmbMM9Xd', '6120034'), + (53974, 551, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'pmbMM9Xd', '6136733'), + (53975, 551, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'pmbMM9Xd', '6137989'), + (53976, 551, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'pmbMM9Xd', '6150864'), + (53977, 551, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'pmbMM9Xd', '6155491'), + (53978, 551, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'pmbMM9Xd', '6164417'), + (53979, 551, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'pmbMM9Xd', '6166388'), + (53980, 551, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'pmbMM9Xd', '6176439'), + (53981, 551, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'pmbMM9Xd', '6182410'), + (53982, 551, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'pmbMM9Xd', '6185812'), + (53983, 551, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'pmbMM9Xd', '6187651'), + (53984, 551, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'pmbMM9Xd', '6187963'), + (53985, 551, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'pmbMM9Xd', '6187964'), + (53986, 551, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'pmbMM9Xd', '6187966'), + (53987, 551, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'pmbMM9Xd', '6187967'), + (53988, 551, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'pmbMM9Xd', '6187969'), + (53989, 551, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'pmbMM9Xd', '6334878'), + (53990, 551, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'pmbMM9Xd', '6337236'), + (53991, 551, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'pmbMM9Xd', '6337970'), + (53992, 551, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'pmbMM9Xd', '6338308'), + (53993, 551, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'pmbMM9Xd', '6341710'), + (53994, 551, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'pmbMM9Xd', '6342044'), + (53995, 551, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'pmbMM9Xd', '6342298'), + (53996, 551, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'pmbMM9Xd', '6343294'), + (53997, 551, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'pmbMM9Xd', '6347034'), + (53998, 551, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'pmbMM9Xd', '6347056'), + (53999, 551, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'pmbMM9Xd', '6353830'), + (54000, 551, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'pmbMM9Xd', '6353831'), + (54001, 551, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'pmbMM9Xd', '6357867'), + (54002, 551, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'pmbMM9Xd', '6358652'), + (54003, 551, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'pmbMM9Xd', '6361709'), + (54004, 551, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'pmbMM9Xd', '6361710'), + (54005, 551, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'pmbMM9Xd', '6361711'), + (54006, 551, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'pmbMM9Xd', '6361712'), + (54007, 551, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'pmbMM9Xd', '6361713'), + (54008, 551, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'pmbMM9Xd', '6382573'), + (54009, 551, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'pmbMM9Xd', '6388604'), + (54010, 551, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'pmbMM9Xd', '6394629'), + (54011, 551, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'pmbMM9Xd', '6394631'), + (54012, 551, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'pmbMM9Xd', '6440863'), + (54013, 551, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'pmbMM9Xd', '6445440'), + (54014, 551, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'pmbMM9Xd', '6453951'), + (54015, 551, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'pmbMM9Xd', '6461696'), + (54016, 551, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'pmbMM9Xd', '6462129'), + (54017, 551, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'pmbMM9Xd', '6463218'), + (54018, 551, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'pmbMM9Xd', '6472181'), + (54019, 551, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'pmbMM9Xd', '6482693'), + (54020, 551, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'pmbMM9Xd', '6484200'), + (54021, 551, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'pmbMM9Xd', '6484680'), + (54022, 551, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'pmbMM9Xd', '6507741'), + (54023, 551, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'pmbMM9Xd', '6514659'), + (54024, 551, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'pmbMM9Xd', '6514660'), + (54025, 551, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'pmbMM9Xd', '6519103'), + (54026, 551, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'pmbMM9Xd', '6535681'), + (54027, 551, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'pmbMM9Xd', '6584747'), + (54028, 551, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'pmbMM9Xd', '6587097'), + (54029, 551, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'pmbMM9Xd', '6609022'), + (54030, 551, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'pmbMM9Xd', '6632757'), + (54031, 551, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'pmbMM9Xd', '6644187'), + (54032, 551, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'pmbMM9Xd', '6648951'), + (54033, 551, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'pmbMM9Xd', '6648952'), + (54034, 551, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'pmbMM9Xd', '6655401'), + (54035, 551, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'pmbMM9Xd', '6661585'), + (54036, 551, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'pmbMM9Xd', '6661588'), + (54037, 551, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'pmbMM9Xd', '6661589'), + (54038, 551, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'pmbMM9Xd', '6699906'), + (54039, 551, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'pmbMM9Xd', '6699913'), + (54040, 551, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'pmbMM9Xd', '6701109'), + (54041, 551, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'pmbMM9Xd', '6705219'), + (54042, 551, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'pmbMM9Xd', '6710153'), + (54043, 551, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'pmbMM9Xd', '6711552'), + (54044, 551, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'pmbMM9Xd', '6711553'), + (54045, 551, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'pmbMM9Xd', '6722688'), + (54046, 551, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'pmbMM9Xd', '6730620'), + (54047, 551, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'pmbMM9Xd', '6740364'), + (54048, 551, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'pmbMM9Xd', '6743829'), + (54049, 551, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'pmbMM9Xd', '7030380'), + (54050, 551, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'pmbMM9Xd', '7033677'), + (54051, 551, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'pmbMM9Xd', '7044715'), + (54052, 551, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'pmbMM9Xd', '7050318'), + (54053, 551, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'pmbMM9Xd', '7050319'), + (54054, 551, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'pmbMM9Xd', '7050322'), + (54055, 551, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'pmbMM9Xd', '7057804'), + (54056, 551, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'pmbMM9Xd', '7072824'), + (54057, 551, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'pmbMM9Xd', '7074348'), + (54058, 551, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'pmbMM9Xd', '7074364'), + (54059, 551, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'pmbMM9Xd', '7089267'), + (54060, 551, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'pmbMM9Xd', '7098747'), + (54061, 551, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'pmbMM9Xd', '7113468'), + (54062, 551, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'pmbMM9Xd', '7114856'), + (54063, 551, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'pmbMM9Xd', '7114951'), + (54064, 551, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'pmbMM9Xd', '7114955'), + (54065, 551, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'pmbMM9Xd', '7114956'), + (54066, 551, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'pmbMM9Xd', '7114957'), + (54067, 551, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'pmbMM9Xd', '7159484'), + (54068, 551, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'pmbMM9Xd', '7178446'), + (54069, 551, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'pmbMM9Xd', '7220467'), + (54070, 551, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'pmbMM9Xd', '7240354'), + (54071, 551, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'pmbMM9Xd', '7251633'), + (54072, 551, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'pmbMM9Xd', '7324073'), + (54073, 551, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'pmbMM9Xd', '7324074'), + (54074, 551, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'pmbMM9Xd', '7324075'), + (54075, 551, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'pmbMM9Xd', '7324078'), + (54076, 551, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'pmbMM9Xd', '7324082'), + (54077, 551, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'pmbMM9Xd', '7331457'), + (54078, 551, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'pmbMM9Xd', '7363643'), + (54079, 551, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'pmbMM9Xd', '7368606'), + (54080, 551, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'pmbMM9Xd', '7397462'), + (54081, 551, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'pmbMM9Xd', '7424275'), + (54082, 551, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'pmbMM9Xd', '7432751'), + (54083, 551, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'pmbMM9Xd', '7432752'), + (54084, 551, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'pmbMM9Xd', '7432753'), + (54085, 551, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432754'), + (54086, 551, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432755'), + (54087, 551, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432756'), + (54088, 551, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432758'), + (54089, 551, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'pmbMM9Xd', '7432759'), + (54090, 551, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'pmbMM9Xd', '7433834'), + (54091, 551, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'pmbMM9Xd', '7470197'), + (54092, 551, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'pmbMM9Xd', '7685613'), + (54093, 551, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'pmbMM9Xd', '7688194'), + (54094, 551, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'pmbMM9Xd', '7688196'), + (54095, 551, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'pmbMM9Xd', '7688289'), + (54096, 551, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'pmbMM9Xd', '7692763'), + (54097, 551, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'pmbMM9Xd', '7697552'), + (54098, 551, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'pmbMM9Xd', '7699878'), + (54099, 551, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'pmbMM9Xd', '7704043'), + (54100, 551, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'pmbMM9Xd', '7712467'), + (54101, 551, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'pmbMM9Xd', '7713585'), + (54102, 551, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'pmbMM9Xd', '7713586'), + (54103, 551, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'pmbMM9Xd', '7738518'), + (54104, 551, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'pmbMM9Xd', '7750636'), + (54105, 551, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'pmbMM9Xd', '7796540'), + (54106, 551, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'pmbMM9Xd', '7796541'), + (54107, 551, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'pmbMM9Xd', '7796542'), + (54108, 551, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'pmbMM9Xd', '7825913'), + (54109, 551, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'pmbMM9Xd', '7826209'), + (54110, 551, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'pmbMM9Xd', '7834742'), + (54111, 551, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'pmbMM9Xd', '7842108'), + (54112, 551, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'pmbMM9Xd', '7842902'), + (54113, 551, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'pmbMM9Xd', '7842903'), + (54114, 551, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'pmbMM9Xd', '7842904'), + (54115, 551, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'pmbMM9Xd', '7842905'), + (54116, 551, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'pmbMM9Xd', '7855719'), + (54117, 551, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'pmbMM9Xd', '7860683'), + (54118, 551, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'pmbMM9Xd', '7860684'), + (54119, 551, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'pmbMM9Xd', '7866095'), + (54120, 551, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'pmbMM9Xd', '7869170'), + (54121, 551, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'pmbMM9Xd', '7869188'), + (54122, 551, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'pmbMM9Xd', '7869201'), + (54123, 551, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'pmbMM9Xd', '7877465'), + (54124, 551, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'pmbMM9Xd', '7888250'), + (54125, 551, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'pmbMM9Xd', '7904777'), + (54126, 551, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'pmbMM9Xd', '8349164'), + (54127, 551, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'pmbMM9Xd', '8349545'), + (54128, 551, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'pmbMM9Xd', '8368028'), + (54129, 551, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'pmbMM9Xd', '8368029'), + (54130, 551, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'pmbMM9Xd', '8388462'), + (54131, 551, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'pmbMM9Xd', '8400273'), + (54132, 551, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'pmbMM9Xd', '8400275'), + (54133, 551, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'pmbMM9Xd', '8400276'), + (54134, 551, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'pmbMM9Xd', '8404977'), + (54135, 551, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'pmbMM9Xd', '8430783'), + (54136, 551, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'pmbMM9Xd', '8430784'), + (54137, 551, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'pmbMM9Xd', '8430799'), + (54138, 551, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'pmbMM9Xd', '8430800'), + (54139, 551, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'pmbMM9Xd', '8430801'), + (54140, 551, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'pmbMM9Xd', '8438709'), + (54141, 551, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'pmbMM9Xd', '8457738'), + (54142, 551, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'pmbMM9Xd', '8459566'), + (54143, 551, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'pmbMM9Xd', '8459567'), + (54144, 551, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'pmbMM9Xd', '8461032'), + (54145, 551, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'pmbMM9Xd', '8477877'), + (54146, 551, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'pmbMM9Xd', '8485688'), + (54147, 551, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'pmbMM9Xd', '8490587'), + (54148, 551, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'pmbMM9Xd', '8493552'), + (54149, 551, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'pmbMM9Xd', '8493553'), + (54150, 551, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'pmbMM9Xd', '8493554'), + (54151, 551, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'pmbMM9Xd', '8493555'), + (54152, 551, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'pmbMM9Xd', '8493556'), + (54153, 551, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'pmbMM9Xd', '8493557'), + (54154, 551, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'pmbMM9Xd', '8493558'), + (54155, 551, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'pmbMM9Xd', '8493559'), + (54156, 551, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'pmbMM9Xd', '8493560'), + (54157, 551, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'pmbMM9Xd', '8493561'), + (54158, 551, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'pmbMM9Xd', '8493572'), + (54159, 551, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'pmbMM9Xd', '8540725'), + (54160, 551, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'pmbMM9Xd', '8555421'), + (54161, 552, 2994, 'not_attending', '2025-03-05 05:48:24', '2025-12-17 19:46:18', 'd9XQBry4', '7842905'), + (54162, 552, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd9XQBry4', '7869170'), + (54163, 552, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd9XQBry4', '7869188'), + (54164, 552, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'd9XQBry4', '7872088'), + (54165, 552, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd9XQBry4', '7877465'), + (54166, 552, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'd9XQBry4', '7878570'), + (54167, 552, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'd9XQBry4', '7880977'), + (54168, 552, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd9XQBry4', '7888250'), + (54169, 552, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'd9XQBry4', '7903856'), + (54170, 552, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'd9XQBry4', '8347770'), + (54171, 552, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd9XQBry4', '8349164'), + (54172, 552, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd9XQBry4', '8349545'), + (54173, 552, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd9XQBry4', '8353584'), + (54174, 552, 3114, 'not_attending', '2025-05-02 21:35:08', '2025-12-17 19:46:20', 'd9XQBry4', '8357180'), + (54175, 553, 2285, 'attending', '2023-10-23 16:07:08', '2025-12-17 19:46:47', '41G2ZoEm', '6460929'), + (54176, 553, 2296, 'attending', '2023-10-23 16:06:55', '2025-12-17 19:46:47', '41G2ZoEm', '6468393'), + (54177, 553, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41G2ZoEm', '6482693'), + (54178, 553, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '41G2ZoEm', '6484200'), + (54179, 553, 2307, 'attending', '2023-10-24 19:24:11', '2025-12-17 19:46:46', '41G2ZoEm', '6484680'), + (54180, 553, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41G2ZoEm', '6507741'), + (54181, 553, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41G2ZoEm', '6514659'), + (54182, 553, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41G2ZoEm', '6514660'), + (54183, 553, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41G2ZoEm', '6519103'), + (54184, 553, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41G2ZoEm', '6535681'), + (54185, 553, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', '41G2ZoEm', '6545076'), + (54186, 553, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41G2ZoEm', '6584747'), + (54187, 553, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41G2ZoEm', '6587097'), + (54188, 553, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41G2ZoEm', '6609022'), + (54189, 553, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41G2ZoEm', '6632757'), + (54190, 553, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41G2ZoEm', '6644187'), + (54191, 553, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41G2ZoEm', '6648951'), + (54192, 553, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41G2ZoEm', '6648952'), + (54193, 553, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', '41G2ZoEm', '6651141'), + (54194, 553, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41G2ZoEm', '6655401'), + (54195, 553, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41G2ZoEm', '6661585'), + (54196, 553, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41G2ZoEm', '6661588'), + (54197, 553, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41G2ZoEm', '6661589'), + (54198, 553, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41G2ZoEm', '6699906'), + (54199, 553, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41G2ZoEm', '6699913'), + (54200, 553, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41G2ZoEm', '6701109'), + (54201, 553, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41G2ZoEm', '6705219'), + (54202, 553, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41G2ZoEm', '6710153'), + (54203, 553, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41G2ZoEm', '6711552'), + (54204, 553, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '41G2ZoEm', '6711553'), + (54205, 553, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41G2ZoEm', '6722688'), + (54206, 553, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41G2ZoEm', '6730620'), + (54207, 553, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '41G2ZoEm', '6730642'), + (54208, 553, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41G2ZoEm', '6740364'), + (54209, 553, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41G2ZoEm', '6743829'), + (54210, 553, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41G2ZoEm', '7030380'), + (54211, 553, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41G2ZoEm', '7033677'), + (54212, 553, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '41G2ZoEm', '7035415'), + (54213, 553, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '41G2ZoEm', '7044715'), + (54214, 553, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '41G2ZoEm', '7050318'), + (54215, 553, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '41G2ZoEm', '7050319'), + (54216, 553, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '41G2ZoEm', '7050322'), + (54217, 553, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '41G2ZoEm', '7057804'), + (54218, 553, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '41G2ZoEm', '7072824'), + (54219, 553, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '41G2ZoEm', '7074348'), + (54220, 553, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '41G2ZoEm', '7089267'), + (54221, 553, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '41G2ZoEm', '7098747'), + (54222, 553, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '41G2ZoEm', '7113468'), + (54223, 553, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '41G2ZoEm', '7114856'), + (54224, 553, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '41G2ZoEm', '7114951'), + (54225, 553, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '41G2ZoEm', '7114955'), + (54226, 553, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '41G2ZoEm', '7114956'), + (54227, 553, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '41G2ZoEm', '7153615'), + (54228, 553, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '41G2ZoEm', '7159484'), + (54229, 553, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '41G2ZoEm', '7178446'), + (54230, 554, 1274, 'attending', '2022-04-02 14:42:26', '2025-12-17 19:47:26', 'dVb1zMpd', '5186585'), + (54231, 554, 1281, 'attending', '2022-04-09 22:23:59', '2025-12-17 19:47:27', 'dVb1zMpd', '5190437'), + (54232, 554, 1284, 'attending', '2022-04-10 03:21:26', '2025-12-17 19:47:27', 'dVb1zMpd', '5195095'), + (54233, 554, 1302, 'maybe', '2022-04-09 09:29:21', '2025-12-17 19:47:27', 'dVb1zMpd', '5220867'), + (54234, 554, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVb1zMpd', '5223686'), + (54235, 554, 1308, 'maybe', '2022-04-13 11:06:14', '2025-12-17 19:47:27', 'dVb1zMpd', '5226703'), + (54236, 554, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVb1zMpd', '5227432'), + (54237, 554, 1315, 'maybe', '2022-04-11 03:20:30', '2025-12-17 19:47:27', 'dVb1zMpd', '5237522'), + (54238, 554, 1320, 'not_attending', '2022-04-24 02:38:22', '2025-12-17 19:47:27', 'dVb1zMpd', '5238354'), + (54239, 554, 1322, 'attending', '2022-04-11 13:26:37', '2025-12-17 19:47:27', 'dVb1zMpd', '5238356'), + (54240, 554, 1323, 'attending', '2022-04-27 00:16:01', '2025-12-17 19:47:27', 'dVb1zMpd', '5238357'), + (54241, 554, 1326, 'not_attending', '2022-04-25 02:47:15', '2025-12-17 19:47:28', 'dVb1zMpd', '5238362'), + (54242, 554, 1327, 'not_attending', '2022-04-25 22:42:16', '2025-12-17 19:47:27', 'dVb1zMpd', '5238445'), + (54243, 554, 1331, 'attending', '2022-04-20 13:09:16', '2025-12-17 19:47:27', 'dVb1zMpd', '5242156'), + (54244, 554, 1332, 'maybe', '2022-04-15 07:05:39', '2025-12-17 19:47:27', 'dVb1zMpd', '5243274'), + (54245, 554, 1340, 'attending', '2022-04-25 02:46:40', '2025-12-17 19:47:27', 'dVb1zMpd', '5245754'), + (54246, 554, 1341, 'not_attending', '2022-05-01 03:05:00', '2025-12-17 19:47:28', 'dVb1zMpd', '5245755'), + (54247, 554, 1346, 'attending', '2022-04-22 22:56:12', '2025-12-17 19:47:27', 'dVb1zMpd', '5247467'), + (54248, 554, 1348, 'maybe', '2022-05-01 03:05:27', '2025-12-17 19:47:28', 'dVb1zMpd', '5247605'), + (54249, 554, 1351, 'maybe', '2022-05-02 16:03:41', '2025-12-17 19:47:28', 'dVb1zMpd', '5251561'), + (54250, 554, 1360, 'maybe', '2022-04-27 00:15:47', '2025-12-17 19:47:27', 'dVb1zMpd', '5260197'), + (54251, 554, 1362, 'attending', '2022-04-25 23:03:49', '2025-12-17 19:47:28', 'dVb1zMpd', '5260800'), + (54252, 554, 1364, 'maybe', '2022-05-03 18:01:18', '2025-12-17 19:47:28', 'dVb1zMpd', '5261598'), + (54253, 554, 1368, 'attending', '2022-04-29 01:48:30', '2025-12-17 19:47:28', 'dVb1zMpd', '5262783'), + (54254, 554, 1372, 'attending', '2022-05-01 02:35:57', '2025-12-17 19:47:28', 'dVb1zMpd', '5264352'), + (54255, 554, 1374, 'attending', '2022-05-01 02:35:34', '2025-12-17 19:47:28', 'dVb1zMpd', '5269930'), + (54256, 554, 1375, 'attending', '2022-05-05 18:00:07', '2025-12-17 19:47:28', 'dVb1zMpd', '5269932'), + (54257, 554, 1378, 'attending', '2022-05-04 16:29:35', '2025-12-17 19:47:28', 'dVb1zMpd', '5271448'), + (54258, 554, 1379, 'attending', '2022-05-04 16:29:38', '2025-12-17 19:47:29', 'dVb1zMpd', '5271449'), + (54259, 554, 1380, 'attending', '2022-05-28 08:15:05', '2025-12-17 19:47:30', 'dVb1zMpd', '5271450'), + (54260, 554, 1382, 'attending', '2022-05-09 11:43:14', '2025-12-17 19:47:28', 'dVb1zMpd', '5276350'), + (54261, 554, 1383, 'attending', '2022-05-12 11:28:12', '2025-12-17 19:47:28', 'dVb1zMpd', '5276469'), + (54262, 554, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVb1zMpd', '5278159'), + (54263, 554, 1391, 'not_attending', '2022-05-08 06:20:12', '2025-12-17 19:47:28', 'dVb1zMpd', '5279531'), + (54264, 554, 1392, 'attending', '2022-05-10 22:39:51', '2025-12-17 19:47:28', 'dVb1zMpd', '5279532'), + (54265, 554, 1401, 'attending', '2022-05-18 16:37:18', '2025-12-17 19:47:29', 'dVb1zMpd', '5286295'), + (54266, 554, 1403, 'maybe', '2022-05-21 02:22:19', '2025-12-17 19:47:29', 'dVb1zMpd', '5288052'), + (54267, 554, 1406, 'attending', '2022-05-15 02:45:32', '2025-12-17 19:47:29', 'dVb1zMpd', '5288619'), + (54268, 554, 1407, 'attending', '2022-05-29 13:01:40', '2025-12-17 19:47:30', 'dVb1zMpd', '5363695'), + (54269, 554, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVb1zMpd', '5365960'), + (54270, 554, 1409, 'maybe', '2022-05-21 02:18:18', '2025-12-17 19:47:30', 'dVb1zMpd', '5367032'), + (54271, 554, 1412, 'not_attending', '2022-05-18 16:36:44', '2025-12-17 19:47:29', 'dVb1zMpd', '5367532'), + (54272, 554, 1414, 'attending', '2022-05-18 16:37:41', '2025-12-17 19:47:29', 'dVb1zMpd', '5368445'), + (54273, 554, 1415, 'attending', '2022-05-22 14:17:48', '2025-12-17 19:47:30', 'dVb1zMpd', '5368973'), + (54274, 554, 1419, 'attending', '2022-06-08 06:35:51', '2025-12-17 19:47:30', 'dVb1zMpd', '5373081'), + (54275, 554, 1423, 'maybe', '2022-06-13 01:30:05', '2025-12-17 19:47:17', 'dVb1zMpd', '5375727'), + (54276, 554, 1424, 'attending', '2022-05-24 02:51:13', '2025-12-17 19:47:30', 'dVb1zMpd', '5375772'), + (54277, 554, 1427, 'not_attending', '2022-05-25 16:59:04', '2025-12-17 19:47:30', 'dVb1zMpd', '5376074'), + (54278, 554, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVb1zMpd', '5378247'), + (54279, 554, 1431, 'attending', '2022-06-02 17:47:25', '2025-12-17 19:47:30', 'dVb1zMpd', '5389605'), + (54280, 554, 1436, 'attending', '2022-06-01 05:46:22', '2025-12-17 19:47:30', 'dVb1zMpd', '5394292'), + (54281, 554, 1438, 'maybe', '2022-06-01 16:46:29', '2025-12-17 19:47:30', 'dVb1zMpd', '5395032'), + (54282, 554, 1440, 'not_attending', '2022-06-08 02:40:59', '2025-12-17 19:47:30', 'dVb1zMpd', '5396080'), + (54283, 554, 1442, 'attending', '2022-06-12 05:44:25', '2025-12-17 19:47:17', 'dVb1zMpd', '5397265'), + (54284, 554, 1444, 'maybe', '2022-06-11 17:34:16', '2025-12-17 19:47:30', 'dVb1zMpd', '5397614'), + (54285, 554, 1451, 'attending', '2022-06-10 03:14:57', '2025-12-17 19:47:17', 'dVb1zMpd', '5403967'), + (54286, 554, 1454, 'attending', '2022-06-12 05:40:36', '2025-12-17 19:47:31', 'dVb1zMpd', '5404771'), + (54287, 554, 1455, 'attending', '2022-06-12 05:40:19', '2025-12-17 19:47:31', 'dVb1zMpd', '5404772'), + (54288, 554, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVb1zMpd', '5404786'), + (54289, 554, 1460, 'maybe', '2022-06-12 05:28:15', '2025-12-17 19:47:31', 'dVb1zMpd', '5404817'), + (54290, 554, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVb1zMpd', '5405203'), + (54291, 554, 1463, 'maybe', '2022-06-13 04:05:10', '2025-12-17 19:47:31', 'dVb1zMpd', '5405208'), + (54292, 554, 1466, 'maybe', '2022-06-16 05:10:16', '2025-12-17 19:47:17', 'dVb1zMpd', '5406427'), + (54293, 554, 1473, 'attending', '2022-06-13 03:51:02', '2025-12-17 19:47:31', 'dVb1zMpd', '5407267'), + (54294, 554, 1475, 'attending', '2022-06-14 05:24:05', '2025-12-17 19:47:17', 'dVb1zMpd', '5408108'), + (54295, 554, 1478, 'maybe', '2022-06-15 08:28:48', '2025-12-17 19:47:19', 'dVb1zMpd', '5408794'), + (54296, 554, 1480, 'attending', '2022-06-22 09:12:07', '2025-12-17 19:47:19', 'dVb1zMpd', '5411699'), + (54297, 554, 1482, 'not_attending', '2022-06-26 02:29:29', '2025-12-17 19:47:19', 'dVb1zMpd', '5412550'), + (54298, 554, 1484, 'attending', '2022-06-22 09:11:08', '2025-12-17 19:47:17', 'dVb1zMpd', '5415046'), + (54299, 554, 1485, 'not_attending', '2022-06-24 14:11:08', '2025-12-17 19:47:17', 'dVb1zMpd', '5416276'), + (54300, 554, 1488, 'maybe', '2022-07-04 17:59:32', '2025-12-17 19:47:19', 'dVb1zMpd', '5420154'), + (54301, 554, 1490, 'attending', '2022-06-28 15:48:43', '2025-12-17 19:47:19', 'dVb1zMpd', '5420156'), + (54302, 554, 1495, 'maybe', '2022-07-06 02:05:22', '2025-12-17 19:47:19', 'dVb1zMpd', '5422086'), + (54303, 554, 1496, 'attending', '2022-06-26 14:46:30', '2025-12-17 19:47:19', 'dVb1zMpd', '5422404'), + (54304, 554, 1498, 'maybe', '2022-07-02 14:47:41', '2025-12-17 19:47:19', 'dVb1zMpd', '5422406'), + (54305, 554, 1501, 'attending', '2022-06-28 15:47:11', '2025-12-17 19:47:19', 'dVb1zMpd', '5424546'), + (54306, 554, 1502, 'maybe', '2022-06-28 17:51:13', '2025-12-17 19:47:19', 'dVb1zMpd', '5424565'), + (54307, 554, 1504, 'attending', '2022-07-05 19:08:34', '2025-12-17 19:47:19', 'dVb1zMpd', '5426882'), + (54308, 554, 1505, 'attending', '2022-07-05 10:28:06', '2025-12-17 19:47:19', 'dVb1zMpd', '5427083'), + (54309, 554, 1508, 'attending', '2022-07-10 03:20:53', '2025-12-17 19:47:19', 'dVb1zMpd', '5433453'), + (54310, 554, 1509, 'maybe', '2022-07-06 02:02:37', '2025-12-17 19:47:19', 'dVb1zMpd', '5434019'), + (54311, 554, 1511, 'attending', '2022-07-08 15:28:40', '2025-12-17 19:47:19', 'dVb1zMpd', '5437733'), + (54312, 554, 1513, 'attending', '2022-07-09 06:09:15', '2025-12-17 19:47:19', 'dVb1zMpd', '5441125'), + (54313, 554, 1514, 'attending', '2022-07-09 06:10:32', '2025-12-17 19:47:20', 'dVb1zMpd', '5441126'), + (54314, 554, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVb1zMpd', '5441128'), + (54315, 554, 1516, 'attending', '2022-08-06 22:12:28', '2025-12-17 19:47:23', 'dVb1zMpd', '5441129'), + (54316, 554, 1517, 'attending', '2022-08-06 22:12:32', '2025-12-17 19:47:23', 'dVb1zMpd', '5441130'), + (54317, 554, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVb1zMpd', '5441131'), + (54318, 554, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dVb1zMpd', '5441132'), + (54319, 554, 1520, 'maybe', '2022-07-10 03:45:39', '2025-12-17 19:47:19', 'dVb1zMpd', '5441645'), + (54320, 554, 1528, 'attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVb1zMpd', '5446643'), + (54321, 554, 1531, 'maybe', '2022-07-16 16:20:06', '2025-12-17 19:47:19', 'dVb1zMpd', '5448756'), + (54322, 554, 1536, 'attending', '2022-07-16 16:30:20', '2025-12-17 19:47:20', 'dVb1zMpd', '5449068'), + (54323, 554, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVb1zMpd', '5453325'), + (54324, 554, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVb1zMpd', '5454516'), + (54325, 554, 1544, 'attending', '2022-09-03 18:04:54', '2025-12-17 19:47:11', 'dVb1zMpd', '5454517'), + (54326, 554, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVb1zMpd', '5454605'), + (54327, 554, 1546, 'maybe', '2022-07-20 17:22:47', '2025-12-17 19:47:20', 'dVb1zMpd', '5454607'), + (54328, 554, 1547, 'not_attending', '2022-07-23 00:22:18', '2025-12-17 19:47:20', 'dVb1zMpd', '5454608'), + (54329, 554, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVb1zMpd', '5455037'), + (54330, 554, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVb1zMpd', '5461278'), + (54331, 554, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVb1zMpd', '5469480'), + (54332, 554, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVb1zMpd', '5471073'), + (54333, 554, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVb1zMpd', '5474663'), + (54334, 554, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVb1zMpd', '5482022'), + (54335, 554, 1575, 'attending', '2022-08-23 09:47:14', '2025-12-17 19:47:23', 'dVb1zMpd', '5482250'), + (54336, 554, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVb1zMpd', '5482793'), + (54337, 554, 1580, 'attending', '2022-08-08 05:15:56', '2025-12-17 19:47:22', 'dVb1zMpd', '5488912'), + (54338, 554, 1584, 'maybe', '2022-08-27 15:43:30', '2025-12-17 19:47:23', 'dVb1zMpd', '5492004'), + (54339, 554, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVb1zMpd', '5492192'), + (54340, 554, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVb1zMpd', '5493139'), + (54341, 554, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVb1zMpd', '5493200'), + (54342, 554, 1603, 'maybe', '2022-08-12 03:28:56', '2025-12-17 19:47:23', 'dVb1zMpd', '5497895'), + (54343, 554, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVb1zMpd', '5502188'), + (54344, 554, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVb1zMpd', '5505059'), + (54345, 554, 1615, 'attending', '2022-08-31 05:28:18', '2025-12-17 19:47:23', 'dVb1zMpd', '5509055'), + (54346, 554, 1619, 'maybe', '2022-08-23 09:47:33', '2025-12-17 19:47:23', 'dVb1zMpd', '5512862'), + (54347, 554, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVb1zMpd', '5513985'), + (54348, 554, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dVb1zMpd', '5519981'), + (54349, 554, 1628, 'maybe', '2022-08-27 12:35:32', '2025-12-17 19:47:23', 'dVb1zMpd', '5522500'), + (54350, 554, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVb1zMpd', '5522550'), + (54351, 554, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVb1zMpd', '5534683'), + (54352, 554, 1631, 'attending', '2022-08-27 12:33:13', '2025-12-17 19:47:23', 'dVb1zMpd', '5534684'), + (54353, 554, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dVb1zMpd', '5537735'), + (54354, 554, 1637, 'attending', '2022-08-30 17:18:04', '2025-12-17 19:47:24', 'dVb1zMpd', '5539591'), + (54355, 554, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVb1zMpd', '5540859'), + (54356, 554, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVb1zMpd', '5546619'), + (54357, 554, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVb1zMpd', '5555245'), + (54358, 554, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVb1zMpd', '5557747'), + (54359, 554, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVb1zMpd', '5560255'), + (54360, 554, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVb1zMpd', '5562906'), + (54361, 554, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVb1zMpd', '5600604'), + (54362, 554, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVb1zMpd', '5605544'), + (54363, 554, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'dVb1zMpd', '5606737'), + (54364, 554, 1719, 'maybe', '2022-10-07 08:22:40', '2025-12-17 19:47:12', 'dVb1zMpd', '5630958'), + (54365, 554, 1720, 'maybe', '2022-10-15 07:30:32', '2025-12-17 19:47:12', 'dVb1zMpd', '5630959'), + (54366, 554, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVb1zMpd', '5630960'), + (54367, 554, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVb1zMpd', '5630961'), + (54368, 554, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVb1zMpd', '5630962'), + (54369, 554, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVb1zMpd', '5630966'), + (54370, 554, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVb1zMpd', '5630967'), + (54371, 554, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVb1zMpd', '5630968'), + (54372, 554, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVb1zMpd', '5635406'), + (54373, 554, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVb1zMpd', '5638765'), + (54374, 554, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVb1zMpd', '5640097'), + (54375, 554, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVb1zMpd', '5640843'), + (54376, 554, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVb1zMpd', '5641521'), + (54377, 554, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVb1zMpd', '5642818'), + (54378, 554, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVb1zMpd', '5652395'), + (54379, 554, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVb1zMpd', '5670445'), + (54380, 554, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVb1zMpd', '5671637'), + (54381, 554, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVb1zMpd', '5672329'), + (54382, 554, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVb1zMpd', '5674057'), + (54383, 554, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVb1zMpd', '5674060'), + (54384, 554, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVb1zMpd', '5677461'), + (54385, 554, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVb1zMpd', '5698046'), + (54386, 554, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVb1zMpd', '5699760'), + (54387, 554, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVb1zMpd', '5741601'), + (54388, 554, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVb1zMpd', '5763458'), + (54389, 554, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVb1zMpd', '5774172'), + (54390, 554, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dVb1zMpd', '5818247'), + (54391, 554, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVb1zMpd', '5819471'), + (54392, 554, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVb1zMpd', '5827739'), + (54393, 554, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVb1zMpd', '5844306'), + (54394, 554, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVb1zMpd', '5850159'), + (54395, 554, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVb1zMpd', '5858999'), + (54396, 554, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVb1zMpd', '5871984'), + (54397, 554, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVb1zMpd', '5876354'), + (54398, 554, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dVb1zMpd', '5880939'), + (54399, 554, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVb1zMpd', '5887890'), + (54400, 554, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVb1zMpd', '5888598'), + (54401, 554, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVb1zMpd', '5893260'), + (54402, 554, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVb1zMpd', '6045684'), + (54403, 554, 2065, 'attending', '2023-06-15 02:26:56', '2025-12-17 19:46:49', 'dVb1zMpd', '6101169'), + (54404, 554, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dVb1zMpd', '6150864'), + (54405, 554, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dVb1zMpd', '6155491'), + (54406, 554, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dVb1zMpd', '6164417'), + (54407, 554, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dVb1zMpd', '6166388'), + (54408, 554, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dVb1zMpd', '6176439'), + (54409, 554, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dVb1zMpd', '6182410'), + (54410, 554, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dVb1zMpd', '6185812'), + (54411, 554, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dVb1zMpd', '6187651'), + (54412, 554, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dVb1zMpd', '6187963'), + (54413, 554, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dVb1zMpd', '6187964'), + (54414, 554, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dVb1zMpd', '6187966'), + (54415, 554, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dVb1zMpd', '6187967'), + (54416, 554, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dVb1zMpd', '6187969'), + (54417, 554, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dVb1zMpd', '6334878'), + (54418, 554, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dVb1zMpd', '6337236'), + (54419, 554, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dVb1zMpd', '6337970'), + (54420, 554, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dVb1zMpd', '6338308'), + (54421, 554, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dVb1zMpd', '6340845'), + (54422, 554, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dVb1zMpd', '6341710'), + (54423, 554, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dVb1zMpd', '6342044'), + (54424, 554, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dVb1zMpd', '6342298'), + (54425, 554, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dVb1zMpd', '6343294'), + (54426, 554, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dVb1zMpd', '6347034'), + (54427, 554, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dVb1zMpd', '6347056'), + (54428, 554, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dVb1zMpd', '6353830'), + (54429, 554, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dVb1zMpd', '6353831'), + (54430, 554, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dVb1zMpd', '6357867'), + (54431, 554, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dVb1zMpd', '6358652'), + (54432, 554, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dVb1zMpd', '6361709'), + (54433, 554, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dVb1zMpd', '6361710'), + (54434, 554, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVb1zMpd', '6361711'), + (54435, 554, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dVb1zMpd', '6361712'), + (54436, 554, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVb1zMpd', '6361713'), + (54437, 554, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dVb1zMpd', '6382573'), + (54438, 554, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVb1zMpd', '6388604'), + (54439, 554, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dVb1zMpd', '6394629'), + (54440, 554, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVb1zMpd', '6394631'), + (54441, 554, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVb1zMpd', '6440863'), + (54442, 554, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVb1zMpd', '6445440'), + (54443, 554, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVb1zMpd', '6453951'), + (54444, 554, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVb1zMpd', '6461696'), + (54445, 554, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVb1zMpd', '6462129'), + (54446, 554, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVb1zMpd', '6463218'), + (54447, 554, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVb1zMpd', '6472181'), + (54448, 554, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVb1zMpd', '6482693'), + (54449, 554, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dVb1zMpd', '6484200'), + (54450, 554, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dVb1zMpd', '6484680'), + (54451, 554, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVb1zMpd', '6507741'), + (54452, 554, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVb1zMpd', '6514659'), + (54453, 554, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVb1zMpd', '6514660'), + (54454, 554, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVb1zMpd', '6519103'), + (54455, 554, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVb1zMpd', '6535681'), + (54456, 554, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVb1zMpd', '6584747'), + (54457, 554, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVb1zMpd', '6587097'), + (54458, 554, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVb1zMpd', '6609022'), + (54459, 554, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVb1zMpd', '6632757'), + (54460, 554, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVb1zMpd', '6644187'), + (54461, 554, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVb1zMpd', '6648951'), + (54462, 554, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVb1zMpd', '6648952'), + (54463, 554, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVb1zMpd', '6655401'), + (54464, 554, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVb1zMpd', '6661585'), + (54465, 554, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVb1zMpd', '6661588'), + (54466, 554, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVb1zMpd', '6661589'), + (54467, 554, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVb1zMpd', '6699906'), + (54468, 554, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVb1zMpd', '6701109'), + (54469, 554, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVb1zMpd', '6705219'), + (54470, 554, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVb1zMpd', '6710153'), + (54471, 554, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVb1zMpd', '6711552'), + (54472, 554, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVb1zMpd', '6711553'), + (54473, 556, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AnjKD2pA', '7074364'), + (54474, 556, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AnjKD2pA', '7324073'), + (54475, 556, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AnjKD2pA', '7324074'), + (54476, 556, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AnjKD2pA', '7324075'), + (54477, 556, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AnjKD2pA', '7324078'), + (54478, 556, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AnjKD2pA', '7324082'), + (54479, 556, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AnjKD2pA', '7331457'), + (54480, 556, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AnjKD2pA', '7363643'), + (54481, 556, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AnjKD2pA', '7368606'), + (54482, 556, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AnjKD2pA', '7397462'), + (54483, 556, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AnjKD2pA', '7424275'), + (54484, 556, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AnjKD2pA', '7424276'), + (54485, 556, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AnjKD2pA', '7432751'), + (54486, 556, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AnjKD2pA', '7432752'), + (54487, 556, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AnjKD2pA', '7432753'), + (54488, 556, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AnjKD2pA', '7432754'), + (54489, 556, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AnjKD2pA', '7432755'), + (54490, 556, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AnjKD2pA', '7432756'), + (54491, 556, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AnjKD2pA', '7432758'), + (54492, 556, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AnjKD2pA', '7432759'), + (54493, 556, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'AnjKD2pA', '7433834'), + (54494, 556, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AnjKD2pA', '7470197'), + (54495, 556, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AnjKD2pA', '7685613'), + (54496, 556, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AnjKD2pA', '7688194'), + (54497, 556, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AnjKD2pA', '7688196'), + (54498, 556, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AnjKD2pA', '7688289'), + (54499, 556, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'AnjKD2pA', '7692763'), + (54500, 556, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'AnjKD2pA', '7697552'), + (54501, 556, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'AnjKD2pA', '7699878'), + (54502, 556, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AnjKD2pA', '7704043'), + (54503, 556, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AnjKD2pA', '7712467'), + (54504, 556, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'AnjKD2pA', '7713585'), + (54505, 556, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AnjKD2pA', '7713586'), + (54506, 556, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'AnjKD2pA', '7738518'), + (54507, 556, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AnjKD2pA', '7750636'), + (54508, 556, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AnjKD2pA', '7796540'), + (54509, 556, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AnjKD2pA', '7796541'), + (54510, 556, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AnjKD2pA', '7796542'), + (54511, 556, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AnjKD2pA', '7825913'), + (54512, 556, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AnjKD2pA', '7826209'), + (54513, 556, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AnjKD2pA', '7834742'), + (54514, 556, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AnjKD2pA', '7842108'), + (54515, 556, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AnjKD2pA', '7842902'), + (54516, 556, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AnjKD2pA', '7842903'), + (54517, 556, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AnjKD2pA', '7842904'), + (54518, 556, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AnjKD2pA', '7842905'), + (54519, 556, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AnjKD2pA', '7855719'), + (54520, 556, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AnjKD2pA', '7860683'), + (54521, 556, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AnjKD2pA', '7860684'), + (54522, 556, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AnjKD2pA', '7866095'), + (54523, 556, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AnjKD2pA', '7869170'), + (54524, 556, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AnjKD2pA', '7869188'), + (54525, 556, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AnjKD2pA', '7869201'), + (54526, 556, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AnjKD2pA', '7877465'), + (54527, 556, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AnjKD2pA', '7888250'), + (54528, 556, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'AnjKD2pA', '7904777'), + (54529, 556, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AnjKD2pA', '8349164'), + (54530, 556, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AnjKD2pA', '8349545'), + (54531, 556, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AnjKD2pA', '8353584'), + (54532, 556, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'AnjKD2pA', '8368028'), + (54533, 556, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'AnjKD2pA', '8368029'), + (54534, 556, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'AnjKD2pA', '8388462'), + (54535, 556, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'AnjKD2pA', '8400273'), + (54536, 556, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'AnjKD2pA', '8400274'), + (54537, 556, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'AnjKD2pA', '8400275'), + (54538, 556, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'AnjKD2pA', '8400276'), + (54539, 556, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'AnjKD2pA', '8404977'), + (54540, 556, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'AnjKD2pA', '8430783'), + (54541, 556, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'AnjKD2pA', '8430784'), + (54542, 556, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'AnjKD2pA', '8430799'), + (54543, 556, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'AnjKD2pA', '8430800'), + (54544, 556, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'AnjKD2pA', '8430801'), + (54545, 556, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'AnjKD2pA', '8438709'), + (54546, 556, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'AnjKD2pA', '8457738'), + (54547, 556, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'AnjKD2pA', '8459566'), + (54548, 556, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'AnjKD2pA', '8459567'), + (54549, 556, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'AnjKD2pA', '8461032'), + (54550, 556, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AnjKD2pA', '8477877'), + (54551, 556, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AnjKD2pA', '8485688'), + (54552, 556, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AnjKD2pA', '8490587'), + (54553, 556, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AnjKD2pA', '8493552'), + (54554, 556, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AnjKD2pA', '8493553'), + (54555, 556, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AnjKD2pA', '8493554'), + (54556, 556, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AnjKD2pA', '8493555'), + (54557, 556, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AnjKD2pA', '8493556'), + (54558, 556, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AnjKD2pA', '8493557'), + (54559, 556, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AnjKD2pA', '8493558'), + (54560, 556, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AnjKD2pA', '8493559'), + (54561, 556, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AnjKD2pA', '8493560'), + (54562, 556, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'AnjKD2pA', '8493561'), + (54563, 556, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AnjKD2pA', '8493572'), + (54564, 556, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'AnjKD2pA', '8540725'), + (54565, 556, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'AnjKD2pA', '8555421'), + (54566, 557, 791, 'maybe', '2021-05-10 22:10:00', '2025-12-17 19:47:46', '8d8PrVvd', '3792735'), + (54567, 557, 792, 'maybe', '2021-05-07 17:57:03', '2025-12-17 19:47:46', '8d8PrVvd', '3793156'), + (54568, 557, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '8d8PrVvd', '5630966'), + (54569, 557, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '8d8PrVvd', '5630967'), + (54570, 557, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '8d8PrVvd', '5630968'), + (54571, 557, 1727, 'maybe', '2022-12-01 22:57:37', '2025-12-17 19:47:16', '8d8PrVvd', '5630969'), + (54572, 557, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '8d8PrVvd', '5642818'), + (54573, 557, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '8d8PrVvd', '5670445'), + (54574, 557, 1777, 'maybe', '2022-11-07 04:56:28', '2025-12-17 19:47:15', '8d8PrVvd', '5693021'), + (54575, 557, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '8d8PrVvd', '5699760'), + (54576, 557, 1785, 'attending', '2022-11-15 23:10:33', '2025-12-17 19:47:15', '8d8PrVvd', '5702414'), + (54577, 557, 1786, 'not_attending', '2022-11-08 23:40:43', '2025-12-17 19:47:15', '8d8PrVvd', '5727232'), + (54578, 557, 1789, 'attending', '2022-11-07 04:47:34', '2025-12-17 19:47:15', '8d8PrVvd', '5727274'), + (54579, 557, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '8d8PrVvd', '5741601'), + (54580, 557, 1795, 'maybe', '2022-11-17 10:53:21', '2025-12-17 19:47:16', '8d8PrVvd', '5754366'), + (54581, 557, 1798, 'maybe', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '8d8PrVvd', '5763458'), + (54582, 557, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '8d8PrVvd', '5774172'), + (54583, 557, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '8d8PrVvd', '5818247'), + (54584, 557, 1834, 'not_attending', '2022-12-07 22:18:27', '2025-12-17 19:47:17', '8d8PrVvd', '5819470'), + (54585, 557, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '8d8PrVvd', '5819471'), + (54586, 557, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '8d8PrVvd', '5827739'), + (54587, 557, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '8d8PrVvd', '5844306'), + (54588, 557, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '8d8PrVvd', '5850159'), + (54589, 557, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '8d8PrVvd', '5858999'), + (54590, 557, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '8d8PrVvd', '5871984'), + (54591, 557, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '8d8PrVvd', '5876354'), + (54592, 557, 1864, 'attending', '2023-01-21 20:02:49', '2025-12-17 19:47:05', '8d8PrVvd', '5879675'), + (54593, 557, 1865, 'maybe', '2023-01-27 23:54:18', '2025-12-17 19:47:06', '8d8PrVvd', '5879676'), + (54594, 557, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '8d8PrVvd', '5880939'), + (54595, 557, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '8d8PrVvd', '5880940'), + (54596, 557, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '8d8PrVvd', '5880942'), + (54597, 557, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '8d8PrVvd', '5880943'), + (54598, 557, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '8d8PrVvd', '5887890'), + (54599, 557, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '8d8PrVvd', '5888598'), + (54600, 557, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '8d8PrVvd', '5893260'), + (54601, 557, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '8d8PrVvd', '5899826'), + (54602, 557, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '8d8PrVvd', '5900199'), + (54603, 557, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '8d8PrVvd', '5900200'), + (54604, 557, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '8d8PrVvd', '5900202'), + (54605, 557, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '8d8PrVvd', '5900203'), + (54606, 557, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '8d8PrVvd', '5901108'), + (54607, 557, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '8d8PrVvd', '5901126'), + (54608, 557, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '8d8PrVvd', '5909655'), + (54609, 557, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '8d8PrVvd', '5910522'), + (54610, 557, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '8d8PrVvd', '5910526'), + (54611, 557, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '8d8PrVvd', '5910528'), + (54612, 557, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '8d8PrVvd', '5916219'), + (54613, 557, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '8d8PrVvd', '5936234'), + (54614, 557, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '8d8PrVvd', '5958351'), + (54615, 557, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '8d8PrVvd', '5959751'), + (54616, 557, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '8d8PrVvd', '5959755'), + (54617, 557, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '8d8PrVvd', '5960055'), + (54618, 557, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '8d8PrVvd', '5961684'), + (54619, 557, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '8d8PrVvd', '5962132'), + (54620, 557, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '8d8PrVvd', '5962133'), + (54621, 557, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '8d8PrVvd', '5962134'), + (54622, 557, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '8d8PrVvd', '5962317'), + (54623, 557, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '8d8PrVvd', '5962318'), + (54624, 557, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '8d8PrVvd', '5965933'), + (54625, 557, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '8d8PrVvd', '5967014'), + (54626, 557, 1955, 'maybe', '2023-03-28 22:40:38', '2025-12-17 19:46:57', '8d8PrVvd', '5972529'), + (54627, 557, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '8d8PrVvd', '5972815'), + (54628, 557, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '8d8PrVvd', '5974016'), + (54629, 557, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '8d8PrVvd', '5975052'), + (54630, 557, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '8d8PrVvd', '5975054'), + (54631, 557, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '8d8PrVvd', '5981515'), + (54632, 557, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '8d8PrVvd', '5993516'), + (54633, 557, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '8d8PrVvd', '5998939'), + (54634, 557, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '8d8PrVvd', '6028191'), + (54635, 557, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '8d8PrVvd', '6040066'), + (54636, 557, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '8d8PrVvd', '6042717'), + (54637, 557, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '8d8PrVvd', '6044838'), + (54638, 557, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '8d8PrVvd', '6044839'), + (54639, 557, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8d8PrVvd', '6045684'), + (54640, 557, 1991, 'attending', '2023-04-02 05:19:11', '2025-12-17 19:46:58', '8d8PrVvd', '6047354'), + (54641, 557, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '8d8PrVvd', '6050104'), + (54642, 557, 1995, 'attending', '2023-04-02 20:15:38', '2025-12-17 19:46:58', '8d8PrVvd', '6050663'), + (54643, 557, 1996, 'attending', '2023-04-03 21:36:20', '2025-12-17 19:46:58', '8d8PrVvd', '6050667'), + (54644, 557, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '8d8PrVvd', '6053195'), + (54645, 557, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '8d8PrVvd', '6053198'), + (54646, 557, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '8d8PrVvd', '6056085'), + (54647, 557, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '8d8PrVvd', '6056916'), + (54648, 557, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '8d8PrVvd', '6059290'), + (54649, 557, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '8d8PrVvd', '6060328'), + (54650, 557, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '8d8PrVvd', '6061037'), + (54651, 557, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '8d8PrVvd', '6061039'), + (54652, 557, 2020, 'not_attending', '2023-04-14 17:15:22', '2025-12-17 19:46:59', '8d8PrVvd', '6065813'), + (54653, 557, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8d8PrVvd', '6067245'), + (54654, 557, 2024, 'attending', '2023-04-17 01:37:12', '2025-12-17 19:47:00', '8d8PrVvd', '6067437'), + (54655, 557, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '8d8PrVvd', '6068094'), + (54656, 557, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '8d8PrVvd', '6068252'), + (54657, 557, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '8d8PrVvd', '6068253'), + (54658, 557, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '8d8PrVvd', '6068254'), + (54659, 557, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '8d8PrVvd', '6068280'), + (54660, 557, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '8d8PrVvd', '6069093'), + (54661, 557, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '8d8PrVvd', '6072528'), + (54662, 557, 2043, 'attending', '2023-04-26 17:16:18', '2025-12-17 19:47:01', '8d8PrVvd', '6073023'), + (54663, 557, 2045, 'attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '8d8PrVvd', '6075556'), + (54664, 557, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '8d8PrVvd', '6079840'), + (54665, 557, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '8d8PrVvd', '6083398'), + (54666, 557, 2052, 'maybe', '2023-05-06 01:54:18', '2025-12-17 19:47:02', '8d8PrVvd', '6088220'), + (54667, 557, 2053, 'attending', '2023-05-08 21:39:52', '2025-12-17 19:47:02', '8d8PrVvd', '6092644'), + (54668, 557, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '8d8PrVvd', '6093504'), + (54669, 557, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '8d8PrVvd', '6097414'), + (54670, 557, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '8d8PrVvd', '6097442'), + (54671, 557, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '8d8PrVvd', '6097684'), + (54672, 557, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '8d8PrVvd', '6098762'), + (54673, 557, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '8d8PrVvd', '6101361'), + (54674, 557, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8d8PrVvd', '6101362'), + (54675, 557, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8d8PrVvd', '6107314'), + (54676, 557, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '8d8PrVvd', '6120034'), + (54677, 557, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '8d8PrVvd', '6136733'), + (54678, 557, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '8d8PrVvd', '6137989'), + (54679, 557, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '8d8PrVvd', '6150864'), + (54680, 557, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '8d8PrVvd', '6155491'), + (54681, 557, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '8d8PrVvd', '6164417'), + (54682, 557, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '8d8PrVvd', '6166388'), + (54683, 557, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '8d8PrVvd', '6176439'), + (54684, 557, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '8d8PrVvd', '6182410'), + (54685, 557, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '8d8PrVvd', '6185812'), + (54686, 557, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '8d8PrVvd', '6187651'), + (54687, 557, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '8d8PrVvd', '6187963'), + (54688, 557, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '8d8PrVvd', '6187964'), + (54689, 557, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '8d8PrVvd', '6187966'), + (54690, 557, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '8d8PrVvd', '6187967'), + (54691, 557, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '8d8PrVvd', '6187969'), + (54692, 557, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '8d8PrVvd', '6334878'), + (54693, 557, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '8d8PrVvd', '6337236'), + (54694, 557, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '8d8PrVvd', '6337970'), + (54695, 557, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '8d8PrVvd', '6338308'), + (54696, 557, 2157, 'not_attending', '2023-07-12 21:53:33', '2025-12-17 19:46:52', '8d8PrVvd', '6338342'), + (54697, 557, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '8d8PrVvd', '6341710'), + (54698, 557, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '8d8PrVvd', '6342044'), + (54699, 557, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '8d8PrVvd', '6342298'), + (54700, 557, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '8d8PrVvd', '6343294'), + (54701, 557, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '8d8PrVvd', '6347034'), + (54702, 557, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '8d8PrVvd', '6347056'), + (54703, 557, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '8d8PrVvd', '6353830'), + (54704, 557, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '8d8PrVvd', '6353831'), + (54705, 557, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '8d8PrVvd', '6357867'), + (54706, 557, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '8d8PrVvd', '6358652'), + (54707, 557, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '8d8PrVvd', '6358668'), + (54708, 557, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '8d8PrVvd', '6358669'), + (54709, 557, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '8d8PrVvd', '6361709'), + (54710, 557, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '8d8PrVvd', '6361710'), + (54711, 557, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '8d8PrVvd', '6361711'), + (54712, 557, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '8d8PrVvd', '6361712'), + (54713, 557, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '8d8PrVvd', '6361713'), + (54714, 557, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '8d8PrVvd', '6382573'), + (54715, 557, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '8d8PrVvd', '6388604'), + (54716, 557, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '8d8PrVvd', '6394629'), + (54717, 557, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '8d8PrVvd', '6394631'), + (54718, 557, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '8d8PrVvd', '6440863'), + (54719, 557, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '8d8PrVvd', '6445440'), + (54720, 557, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '8d8PrVvd', '6453951'), + (54721, 557, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '8d8PrVvd', '6461696'), + (54722, 557, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '8d8PrVvd', '6462129'), + (54723, 557, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '8d8PrVvd', '6463218'), + (54724, 557, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '8d8PrVvd', '6472181'), + (54725, 557, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '8d8PrVvd', '6482693'), + (54726, 557, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '8d8PrVvd', '6484200'), + (54727, 557, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '8d8PrVvd', '6484680'), + (54728, 557, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '8d8PrVvd', '6507741'), + (54729, 557, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '8d8PrVvd', '6514659'), + (54730, 557, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '8d8PrVvd', '6514660'), + (54731, 557, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '8d8PrVvd', '6519103'), + (54732, 557, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '8d8PrVvd', '6535681'), + (54733, 557, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '8d8PrVvd', '6584747'), + (54734, 557, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '8d8PrVvd', '6587097'), + (54735, 557, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '8d8PrVvd', '6609022'), + (54736, 557, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '8d8PrVvd', '6632757'), + (54737, 557, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '8d8PrVvd', '6644187'), + (54738, 557, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '8d8PrVvd', '6648951'), + (54739, 557, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '8d8PrVvd', '6648952'), + (54740, 557, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '8d8PrVvd', '6655401'), + (54741, 557, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '8d8PrVvd', '6661585'), + (54742, 557, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '8d8PrVvd', '6661588'), + (54743, 557, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '8d8PrVvd', '6661589'), + (54744, 557, 2404, 'attending', '2024-01-15 23:39:14', '2025-12-17 19:46:38', '8d8PrVvd', '6666858'), + (54745, 557, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '8d8PrVvd', '6699906'), + (54746, 557, 2408, 'attending', '2024-01-27 17:45:33', '2025-12-17 19:46:40', '8d8PrVvd', '6699907'), + (54747, 557, 2409, 'attending', '2024-02-03 02:57:18', '2025-12-17 19:46:41', '8d8PrVvd', '6699909'), + (54748, 557, 2410, 'attending', '2024-02-07 23:52:26', '2025-12-17 19:46:41', '8d8PrVvd', '6699911'), + (54749, 557, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '8d8PrVvd', '6699913'), + (54750, 557, 2413, 'attending', '2024-02-16 00:01:25', '2025-12-17 19:46:42', '8d8PrVvd', '6700719'), + (54751, 557, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '8d8PrVvd', '6701109'), + (54752, 557, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '8d8PrVvd', '6705219'), + (54753, 557, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '8d8PrVvd', '6710153'), + (54754, 557, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '8d8PrVvd', '6711552'), + (54755, 557, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '8d8PrVvd', '6711553'), + (54756, 557, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '8d8PrVvd', '6722688'), + (54757, 557, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '8d8PrVvd', '6730620'), + (54758, 557, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '8d8PrVvd', '6730642'), + (54759, 557, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '8d8PrVvd', '6740364'), + (54760, 557, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '8d8PrVvd', '6743829'), + (54761, 557, 2467, 'attending', '2024-02-16 19:13:22', '2025-12-17 19:46:43', '8d8PrVvd', '7029987'), + (54762, 557, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '8d8PrVvd', '7030380'), + (54763, 557, 2471, 'attending', '2024-02-18 20:10:22', '2025-12-17 19:46:42', '8d8PrVvd', '7032425'), + (54764, 557, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '8d8PrVvd', '7033677'), + (54765, 557, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '8d8PrVvd', '7035415'), + (54766, 557, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '8d8PrVvd', '7044715'), + (54767, 557, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '8d8PrVvd', '7050318'), + (54768, 557, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '8d8PrVvd', '7050319'), + (54769, 557, 2492, 'maybe', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '8d8PrVvd', '7050322'), + (54770, 557, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '8d8PrVvd', '7057804'), + (54771, 557, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '8d8PrVvd', '7072824'), + (54772, 557, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '8d8PrVvd', '7074348'), + (54773, 557, 2537, 'maybe', '2024-03-16 16:37:35', '2025-12-17 19:46:33', '8d8PrVvd', '7085484'), + (54774, 557, 2539, 'attending', '2024-04-01 15:56:33', '2025-12-17 19:46:33', '8d8PrVvd', '7085486'), + (54775, 557, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '8d8PrVvd', '7089267'), + (54776, 557, 2543, 'maybe', '2024-04-05 16:17:18', '2025-12-17 19:46:33', '8d8PrVvd', '7091456'), + (54777, 557, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '8d8PrVvd', '7098747'), + (54778, 557, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '8d8PrVvd', '7113468'), + (54779, 557, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '8d8PrVvd', '7114856'), + (54780, 557, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', '8d8PrVvd', '7114951'), + (54781, 557, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '8d8PrVvd', '7114955'), + (54782, 557, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '8d8PrVvd', '7114956'), + (54783, 557, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '8d8PrVvd', '7114957'), + (54784, 557, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '8d8PrVvd', '7153615'), + (54785, 557, 2569, 'attending', '2024-04-07 16:42:48', '2025-12-17 19:46:33', '8d8PrVvd', '7154056'), + (54786, 557, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '8d8PrVvd', '7159484'), + (54787, 557, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '8d8PrVvd', '7178446'), + (54788, 557, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '8d8PrVvd', '7220467'), + (54789, 557, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '8d8PrVvd', '7240354'), + (54790, 557, 2611, 'attending', '2024-05-06 22:30:38', '2025-12-17 19:46:35', '8d8PrVvd', '7247642'), + (54791, 557, 2612, 'attending', '2024-05-08 21:21:42', '2025-12-17 19:46:35', '8d8PrVvd', '7247643'), + (54792, 557, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '8d8PrVvd', '7251633'), + (54793, 557, 2628, 'maybe', '2024-06-01 20:27:18', '2025-12-17 19:46:36', '8d8PrVvd', '7264725'), + (54794, 557, 2656, 'maybe', '2024-05-30 20:22:51', '2025-12-17 19:46:36', '8d8PrVvd', '7291301'), + (54795, 557, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '8d8PrVvd', '7302674'), + (54796, 557, 2688, 'attending', '2024-06-28 04:38:36', '2025-12-17 19:46:29', '8d8PrVvd', '7324073'), + (54797, 557, 2965, 'attending', '2025-01-18 21:50:10', '2025-12-17 19:46:22', '8d8PrVvd', '7796541'), + (54798, 557, 2966, 'attending', '2025-01-26 00:14:33', '2025-12-17 19:46:22', '8d8PrVvd', '7796542'), + (54799, 557, 3193, 'attending', '2025-07-18 02:31:23', '2025-12-17 19:46:17', '8d8PrVvd', '8457738'), + (54800, 557, 3307, 'attending', '2025-12-18 01:13:32', '2025-12-18 01:13:32', NULL, NULL), + (54801, 558, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WP8xObd', '6045684'), + (54802, 559, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dzON9nLm', '4736497'), + (54803, 559, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dzON9nLm', '4736499'), + (54804, 559, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dzON9nLm', '4736500'), + (54805, 559, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dzON9nLm', '4736503'), + (54806, 559, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dzON9nLm', '4736504'), + (54807, 559, 1185, 'not_attending', '2022-01-12 23:28:47', '2025-12-17 19:47:31', 'dzON9nLm', '4746789'), + (54808, 559, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dzON9nLm', '5038850'), + (54809, 559, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dzON9nLm', '5045826'), + (54810, 559, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dzON9nLm', '5132533'), + (54811, 559, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dzON9nLm', '6045684'), + (54812, 560, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4ZVRlM74', '5441128'), + (54813, 560, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4ZVRlM74', '5441131'), + (54814, 560, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4ZVRlM74', '5441132'), + (54815, 560, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4ZVRlM74', '5461278'), + (54816, 560, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4ZVRlM74', '5469480'), + (54817, 560, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4ZVRlM74', '5488912'), + (54818, 560, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4ZVRlM74', '5492192'), + (54819, 560, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4ZVRlM74', '5493139'), + (54820, 560, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4ZVRlM74', '5493200'), + (54821, 560, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4ZVRlM74', '5502188'), + (54822, 560, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4ZVRlM74', '5505059'), + (54823, 560, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', '4ZVRlM74', '5509055'), + (54824, 560, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4ZVRlM74', '5512862'), + (54825, 560, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4ZVRlM74', '5513985'), + (54826, 560, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '4ZVRlM74', '5519981'), + (54827, 560, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4ZVRlM74', '5522550'), + (54828, 560, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4ZVRlM74', '5534683'), + (54829, 560, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4ZVRlM74', '5537735'), + (54830, 560, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4ZVRlM74', '5540859'), + (54831, 560, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4ZVRlM74', '5546619'), + (54832, 560, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4ZVRlM74', '5555245'), + (54833, 560, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4ZVRlM74', '5557747'), + (54834, 560, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4ZVRlM74', '5560255'), + (54835, 560, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4ZVRlM74', '5562906'), + (54836, 560, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4ZVRlM74', '5600604'), + (54837, 560, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4ZVRlM74', '5605544'), + (54838, 560, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', '4ZVRlM74', '5606737'), + (54839, 560, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4ZVRlM74', '5635406'), + (54840, 560, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4ZVRlM74', '5638765'), + (54841, 560, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4ZVRlM74', '5640843'), + (54842, 560, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZVRlM74', '6045684'), + (54843, 561, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dankzXDm', '8555421'), + (54844, 561, 3324, 'not_attending', '2025-11-18 00:11:15', '2025-12-17 19:46:14', 'dankzXDm', '8556406'), + (54845, 561, 3330, 'not_attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', 'dankzXDm', '8561720'), + (54846, 562, 1721, 'attending', '2022-10-21 17:52:00', '2025-12-17 19:47:13', 'o4P6bvmR', '5630960'), + (54847, 562, 1722, 'attending', '2022-10-25 00:35:10', '2025-12-17 19:47:14', 'o4P6bvmR', '5630961'), + (54848, 562, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'o4P6bvmR', '5630962'), + (54849, 562, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'o4P6bvmR', '5630966'), + (54850, 562, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'o4P6bvmR', '5630967'), + (54851, 562, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'o4P6bvmR', '5630968'), + (54852, 562, 1738, 'maybe', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'o4P6bvmR', '5638765'), + (54853, 562, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'o4P6bvmR', '5640097'), + (54854, 562, 1742, 'attending', '2022-10-16 18:07:36', '2025-12-17 19:47:13', 'o4P6bvmR', '5641245'), + (54855, 562, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'o4P6bvmR', '5642818'), + (54856, 562, 1747, 'attending', '2022-10-21 01:07:56', '2025-12-17 19:47:13', 'o4P6bvmR', '5648009'), + (54857, 562, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'o4P6bvmR', '5652395'), + (54858, 562, 1757, 'attending', '2022-10-25 23:05:14', '2025-12-17 19:47:15', 'o4P6bvmR', '5668974'), + (54859, 562, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'o4P6bvmR', '5670445'), + (54860, 562, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'o4P6bvmR', '5671637'), + (54861, 562, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'o4P6bvmR', '5672329'), + (54862, 562, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'o4P6bvmR', '5674057'), + (54863, 562, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'o4P6bvmR', '5674060'), + (54864, 562, 1772, 'attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'o4P6bvmR', '5677461'), + (54865, 562, 1777, 'maybe', '2022-11-02 01:05:50', '2025-12-17 19:47:15', 'o4P6bvmR', '5693021'), + (54866, 562, 1780, 'attending', '2022-11-02 01:05:31', '2025-12-17 19:47:15', 'o4P6bvmR', '5696082'), + (54867, 562, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'o4P6bvmR', '5698046'), + (54868, 562, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'o4P6bvmR', '5699760'), + (54869, 562, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'o4P6bvmR', '5741601'), + (54870, 562, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'o4P6bvmR', '5763458'), + (54871, 562, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'o4P6bvmR', '5774172'), + (54872, 562, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'o4P6bvmR', '5818247'), + (54873, 562, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'o4P6bvmR', '5819471'), + (54874, 562, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'o4P6bvmR', '5827739'), + (54875, 562, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'o4P6bvmR', '5844306'), + (54876, 562, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'o4P6bvmR', '5850159'), + (54877, 562, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'o4P6bvmR', '5858999'), + (54878, 562, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'o4P6bvmR', '5871984'), + (54879, 562, 1860, 'attending', '2023-01-18 18:51:36', '2025-12-17 19:47:05', 'o4P6bvmR', '5876309'), + (54880, 562, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'o4P6bvmR', '5876354'), + (54881, 562, 1864, 'attending', '2023-01-18 18:52:01', '2025-12-17 19:47:05', 'o4P6bvmR', '5879675'), + (54882, 562, 1865, 'attending', '2023-01-29 01:00:18', '2025-12-17 19:47:06', 'o4P6bvmR', '5879676'), + (54883, 562, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'o4P6bvmR', '5880939'), + (54884, 562, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'o4P6bvmR', '5880940'), + (54885, 562, 1868, 'attending', '2023-02-19 05:33:42', '2025-12-17 19:47:07', 'o4P6bvmR', '5880942'), + (54886, 562, 1869, 'attending', '2023-02-20 04:21:07', '2025-12-17 19:47:09', 'o4P6bvmR', '5880943'), + (54887, 562, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'o4P6bvmR', '5887890'), + (54888, 562, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'o4P6bvmR', '5888598'), + (54889, 562, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'o4P6bvmR', '5893260'), + (54890, 562, 1881, 'maybe', '2023-02-12 06:04:19', '2025-12-17 19:47:07', 'o4P6bvmR', '5894218'), + (54891, 562, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'o4P6bvmR', '5899826'), + (54892, 562, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'o4P6bvmR', '5900199'), + (54893, 562, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'o4P6bvmR', '5900200'), + (54894, 562, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'o4P6bvmR', '5900202'), + (54895, 562, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'o4P6bvmR', '5900203'), + (54896, 562, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'o4P6bvmR', '5901108'), + (54897, 562, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'o4P6bvmR', '5901126'), + (54898, 562, 1897, 'attending', '2023-02-10 18:36:07', '2025-12-17 19:47:07', 'o4P6bvmR', '5901128'), + (54899, 562, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'o4P6bvmR', '5909655'), + (54900, 562, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'o4P6bvmR', '5910522'), + (54901, 562, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'o4P6bvmR', '5910526'), + (54902, 562, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'o4P6bvmR', '5910528'), + (54903, 562, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'o4P6bvmR', '5916219'), + (54904, 562, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'o4P6bvmR', '5936234'), + (54905, 562, 1935, 'maybe', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'o4P6bvmR', '5958351'), + (54906, 562, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'o4P6bvmR', '5959751'), + (54907, 562, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'o4P6bvmR', '5959755'), + (54908, 562, 1940, 'maybe', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'o4P6bvmR', '5960055'), + (54909, 562, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'o4P6bvmR', '5961684'), + (54910, 562, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'o4P6bvmR', '5962132'), + (54911, 562, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'o4P6bvmR', '5962133'), + (54912, 562, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'o4P6bvmR', '5962134'), + (54913, 562, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'o4P6bvmR', '5962317'), + (54914, 562, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'o4P6bvmR', '5962318'), + (54915, 562, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'o4P6bvmR', '5965933'), + (54916, 562, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'o4P6bvmR', '5967014'), + (54917, 562, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'o4P6bvmR', '5972815'), + (54918, 562, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'o4P6bvmR', '5974016'), + (54919, 562, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'o4P6bvmR', '5981515'), + (54920, 562, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'o4P6bvmR', '5993516'), + (54921, 562, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'o4P6bvmR', '5998939'), + (54922, 562, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'o4P6bvmR', '6028191'), + (54923, 562, 1979, 'attending', '2023-03-17 22:18:59', '2025-12-17 19:46:56', 'o4P6bvmR', '6030009'), + (54924, 562, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'o4P6bvmR', '6040066'), + (54925, 562, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'o4P6bvmR', '6042717'), + (54926, 562, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'o4P6bvmR', '6044838'), + (54927, 562, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'o4P6bvmR', '6044839'), + (54928, 562, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'o4P6bvmR', '6045684'), + (54929, 562, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'o4P6bvmR', '6050104'), + (54930, 562, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'o4P6bvmR', '6053195'), + (54931, 562, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'o4P6bvmR', '6053198'), + (54932, 562, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'o4P6bvmR', '6056085'), + (54933, 562, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'o4P6bvmR', '6056916'), + (54934, 562, 2012, 'attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'o4P6bvmR', '6059290'), + (54935, 562, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'o4P6bvmR', '6060328'), + (54936, 562, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'o4P6bvmR', '6061037'), + (54937, 562, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'o4P6bvmR', '6061039'), + (54938, 562, 2020, 'attending', '2023-04-14 17:29:45', '2025-12-17 19:46:59', 'o4P6bvmR', '6065813'), + (54939, 562, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'o4P6bvmR', '6067245'), + (54940, 562, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'o4P6bvmR', '6068094'), + (54941, 562, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'o4P6bvmR', '6068252'), + (54942, 562, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'o4P6bvmR', '6068253'), + (54943, 562, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'o4P6bvmR', '6068254'), + (54944, 562, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'o4P6bvmR', '6068280'), + (54945, 562, 2032, 'not_attending', '2023-06-03 07:40:04', '2025-12-17 19:47:04', 'o4P6bvmR', '6068281'), + (54946, 562, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'o4P6bvmR', '6069093'), + (54947, 562, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'o4P6bvmR', '6072528'), + (54948, 562, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'o4P6bvmR', '6079840'), + (54949, 562, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'o4P6bvmR', '6083398'), + (54950, 562, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'o4P6bvmR', '6093504'), + (54951, 562, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'o4P6bvmR', '6097414'), + (54952, 562, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'o4P6bvmR', '6097442'), + (54953, 562, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'o4P6bvmR', '6097684'), + (54954, 562, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'o4P6bvmR', '6098762'), + (54955, 562, 2064, 'not_attending', '2023-06-21 20:12:34', '2025-12-17 19:46:50', 'o4P6bvmR', '6099988'), + (54956, 562, 2065, 'attending', '2023-06-17 22:18:39', '2025-12-17 19:46:49', 'o4P6bvmR', '6101169'), + (54957, 562, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'o4P6bvmR', '6101361'), + (54958, 562, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'o4P6bvmR', '6101362'), + (54959, 562, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'o4P6bvmR', '6107314'), + (54960, 562, 2082, 'attending', '2023-05-22 19:27:36', '2025-12-17 19:47:03', 'o4P6bvmR', '6115612'), + (54961, 562, 2083, 'maybe', '2023-05-28 20:27:00', '2025-12-17 19:47:04', 'o4P6bvmR', '6115629'), + (54962, 562, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'o4P6bvmR', '6120034'), + (54963, 562, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'o4P6bvmR', '6136733'), + (54964, 562, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'o4P6bvmR', '6137989'), + (54965, 562, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'o4P6bvmR', '6150864'), + (54966, 562, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'o4P6bvmR', '6155491'), + (54967, 562, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'o4P6bvmR', '6164417'), + (54968, 562, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'o4P6bvmR', '6166388'), + (54969, 562, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'o4P6bvmR', '6176439'), + (54970, 562, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'o4P6bvmR', '6182410'), + (54971, 562, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'o4P6bvmR', '6185812'), + (54972, 562, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'o4P6bvmR', '6187651'), + (54973, 562, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'o4P6bvmR', '6187963'), + (54974, 562, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'o4P6bvmR', '6187964'), + (54975, 562, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'o4P6bvmR', '6187966'), + (54976, 562, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'o4P6bvmR', '6187967'), + (54977, 562, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'o4P6bvmR', '6187969'), + (54978, 562, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'o4P6bvmR', '6334878'), + (54979, 562, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'o4P6bvmR', '6337236'), + (54980, 562, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'o4P6bvmR', '6337970'), + (54981, 562, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'o4P6bvmR', '6338308'), + (54982, 562, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'o4P6bvmR', '6341710'), + (54983, 562, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'o4P6bvmR', '6342044'), + (54984, 562, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'o4P6bvmR', '6342298'), + (54985, 562, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'o4P6bvmR', '6343294'), + (54986, 562, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'o4P6bvmR', '6347034'), + (54987, 562, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'o4P6bvmR', '6347056'), + (54988, 562, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'o4P6bvmR', '6353830'), + (54989, 562, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'o4P6bvmR', '6353831'), + (54990, 562, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'o4P6bvmR', '6357867'), + (54991, 562, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'o4P6bvmR', '6358652'), + (54992, 562, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'o4P6bvmR', '6358668'), + (54993, 562, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'o4P6bvmR', '6358669'), + (54994, 562, 2204, 'attending', '2023-08-19 22:40:42', '2025-12-17 19:46:55', 'o4P6bvmR', '6361542'), + (54995, 562, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'o4P6bvmR', '6361709'), + (54996, 562, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'o4P6bvmR', '6361710'), + (54997, 562, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'o4P6bvmR', '6361711'), + (54998, 562, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'o4P6bvmR', '6361712'), + (54999, 562, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'o4P6bvmR', '6361713'), + (55000, 562, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'o4P6bvmR', '6382573'), + (55001, 562, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'o4P6bvmR', '6388604'), + (55002, 562, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'o4P6bvmR', '6394629'), + (55003, 562, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'o4P6bvmR', '6394631'), + (55004, 562, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'o4P6bvmR', '6440863'), + (55005, 562, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'o4P6bvmR', '6445440'), + (55006, 562, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'o4P6bvmR', '6453951'), + (55007, 562, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'o4P6bvmR', '6461696'), + (55008, 562, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'o4P6bvmR', '6462129'), + (55009, 562, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'o4P6bvmR', '6463218'), + (55010, 562, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'o4P6bvmR', '6472181'), + (55011, 562, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'o4P6bvmR', '6482693'), + (55012, 562, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'o4P6bvmR', '6484200'), + (55013, 562, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'o4P6bvmR', '6484680'), + (55014, 562, 2310, 'attending', '2023-11-12 00:33:09', '2025-12-17 19:46:47', 'o4P6bvmR', '6487709'), + (55015, 562, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'o4P6bvmR', '6507741'), + (55016, 562, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'o4P6bvmR', '6514659'), + (55017, 562, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'o4P6bvmR', '6514660'), + (55018, 562, 2324, 'attending', '2023-12-09 06:39:46', '2025-12-17 19:46:49', 'o4P6bvmR', '6514662'), + (55019, 562, 2325, 'attending', '2023-12-15 21:01:47', '2025-12-17 19:46:36', 'o4P6bvmR', '6514663'), + (55020, 562, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'o4P6bvmR', '6519103'), + (55021, 562, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'o4P6bvmR', '6535681'), + (55022, 562, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'o4P6bvmR', '6584747'), + (55023, 562, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'o4P6bvmR', '6587097'), + (55024, 562, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'o4P6bvmR', '6609022'), + (55025, 562, 2371, 'attending', '2023-12-15 21:37:07', '2025-12-17 19:46:36', 'o4P6bvmR', '6624495'), + (55026, 562, 2373, 'attending', '2023-12-31 00:36:54', '2025-12-17 19:46:38', 'o4P6bvmR', '6632678'), + (55027, 562, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'o4P6bvmR', '6632757'), + (55028, 562, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'o4P6bvmR', '6644187'), + (55029, 562, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'o4P6bvmR', '6648951'), + (55030, 562, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'o4P6bvmR', '6648952'), + (55031, 562, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'o4P6bvmR', '6655401'), + (55032, 562, 2399, 'attending', '2024-01-14 01:06:02', '2025-12-17 19:46:38', 'o4P6bvmR', '6657583'), + (55033, 562, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'o4P6bvmR', '6661585'), + (55034, 562, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'o4P6bvmR', '6661588'), + (55035, 562, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'o4P6bvmR', '6661589'), + (55036, 562, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'o4P6bvmR', '6699906'), + (55037, 562, 2408, 'attending', '2024-01-26 08:21:24', '2025-12-17 19:46:40', 'o4P6bvmR', '6699907'), + (55038, 562, 2409, 'attending', '2024-01-29 22:23:39', '2025-12-17 19:46:41', 'o4P6bvmR', '6699909'), + (55039, 562, 2410, 'attending', '2024-02-11 00:04:54', '2025-12-17 19:46:41', 'o4P6bvmR', '6699911'), + (55040, 562, 2411, 'attending', '2024-02-16 23:57:57', '2025-12-17 19:46:41', 'o4P6bvmR', '6699913'), + (55041, 562, 2414, 'maybe', '2024-01-19 00:49:28', '2025-12-17 19:46:40', 'o4P6bvmR', '6701000'), + (55042, 562, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'o4P6bvmR', '6701109'), + (55043, 562, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'o4P6bvmR', '6705219'), + (55044, 562, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'o4P6bvmR', '6710153'), + (55045, 562, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'o4P6bvmR', '6711552'), + (55046, 562, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'o4P6bvmR', '6711553'), + (55047, 562, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'o4P6bvmR', '6722688'), + (55048, 562, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'o4P6bvmR', '6730620'), + (55049, 562, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'o4P6bvmR', '6730642'), + (55050, 562, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'o4P6bvmR', '6740364'), + (55051, 562, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'o4P6bvmR', '6743829'), + (55052, 562, 2467, 'maybe', '2024-02-25 03:42:37', '2025-12-17 19:46:43', 'o4P6bvmR', '7029987'), + (55053, 562, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'o4P6bvmR', '7030380'), + (55054, 562, 2471, 'attending', '2024-02-18 21:14:43', '2025-12-17 19:46:42', 'o4P6bvmR', '7032425'), + (55055, 562, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'o4P6bvmR', '7033677'), + (55056, 562, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'o4P6bvmR', '7035415'), + (55057, 562, 2478, 'attending', '2024-02-22 18:07:29', '2025-12-17 19:46:43', 'o4P6bvmR', '7036478'), + (55058, 562, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'o4P6bvmR', '7044715'), + (55059, 562, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'o4P6bvmR', '7050318'), + (55060, 562, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'o4P6bvmR', '7050319'), + (55061, 562, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'o4P6bvmR', '7050322'), + (55062, 562, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'o4P6bvmR', '7057804'), + (55063, 562, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'o4P6bvmR', '7059866'), + (55064, 562, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'o4P6bvmR', '7072824'), + (55065, 562, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'o4P6bvmR', '7074348'), + (55066, 562, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'o4P6bvmR', '7074364'), + (55067, 562, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'o4P6bvmR', '7089267'), + (55068, 562, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'o4P6bvmR', '7098747'), + (55069, 562, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'o4P6bvmR', '7113468'), + (55070, 562, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'o4P6bvmR', '7114856'), + (55071, 562, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'o4P6bvmR', '7114951'), + (55072, 562, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'o4P6bvmR', '7114955'), + (55073, 562, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'o4P6bvmR', '7114956'), + (55074, 562, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'o4P6bvmR', '7114957'), + (55075, 562, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'o4P6bvmR', '7153615'), + (55076, 562, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'o4P6bvmR', '7159484'), + (55077, 562, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'o4P6bvmR', '7178446'), + (55078, 562, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'o4P6bvmR', '7220467'), + (55079, 562, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'o4P6bvmR', '7240354'), + (55080, 562, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'o4P6bvmR', '7251633'), + (55081, 562, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'o4P6bvmR', '7263048'), + (55082, 562, 2626, 'attending', '2024-05-18 21:21:09', '2025-12-17 19:46:35', 'o4P6bvmR', '7264723'), + (55083, 562, 2627, 'attending', '2024-05-25 22:03:47', '2025-12-17 19:46:35', 'o4P6bvmR', '7264724'), + (55084, 562, 2628, 'attending', '2024-06-01 20:56:49', '2025-12-17 19:46:36', 'o4P6bvmR', '7264725'), + (55085, 562, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'o4P6bvmR', '7302674'), + (55086, 562, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'o4P6bvmR', '7324073'), + (55087, 562, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'o4P6bvmR', '7324074'), + (55088, 562, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'o4P6bvmR', '7324075'), + (55089, 562, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'o4P6bvmR', '7324078'), + (55090, 562, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'o4P6bvmR', '7324082'), + (55091, 562, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'o4P6bvmR', '7331457'), + (55092, 562, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'o4P6bvmR', '7356752'), + (55093, 562, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'o4P6bvmR', '7363643'), + (55094, 562, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'o4P6bvmR', '7368606'), + (55095, 562, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'o4P6bvmR', '7397462'), + (55096, 562, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'o4P6bvmR', '7424275'), + (55097, 562, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'o4P6bvmR', '7424276'), + (55098, 562, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'o4P6bvmR', '7432751'), + (55099, 562, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'o4P6bvmR', '7432752'), + (55100, 562, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'o4P6bvmR', '7432753'), + (55101, 562, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'o4P6bvmR', '7432754'), + (55102, 562, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'o4P6bvmR', '7432755'), + (55103, 562, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'o4P6bvmR', '7432756'), + (55104, 562, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'o4P6bvmR', '7432758'), + (55105, 562, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'o4P6bvmR', '7432759'), + (55106, 562, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'o4P6bvmR', '7433834'), + (55107, 562, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'o4P6bvmR', '7470197'), + (55108, 562, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'o4P6bvmR', '7685613'), + (55109, 562, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'o4P6bvmR', '7688194'), + (55110, 562, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'o4P6bvmR', '7688196'), + (55111, 562, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'o4P6bvmR', '7688289'), + (55112, 563, 393, 'not_attending', '2021-06-24 21:55:57', '2025-12-17 19:47:38', 'pmbGG2VA', '3236448'), + (55113, 563, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbGG2VA', '3974109'), + (55114, 563, 844, 'not_attending', '2021-06-17 15:28:12', '2025-12-17 19:47:38', 'pmbGG2VA', '4014338'), + (55115, 563, 867, 'attending', '2021-06-23 15:27:41', '2025-12-17 19:47:38', 'pmbGG2VA', '4021848'), + (55116, 563, 870, 'attending', '2021-07-03 21:42:02', '2025-12-17 19:47:39', 'pmbGG2VA', '4136937'), + (55117, 563, 871, 'maybe', '2021-07-10 21:38:44', '2025-12-17 19:47:39', 'pmbGG2VA', '4136938'), + (55118, 563, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbGG2VA', '4136947'), + (55119, 563, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbGG2VA', '4210314'), + (55120, 563, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbGG2VA', '4225444'), + (55121, 563, 896, 'attending', '2021-06-29 20:03:54', '2025-12-17 19:47:38', 'pmbGG2VA', '4231145'), + (55122, 563, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbGG2VA', '4239259'), + (55123, 563, 900, 'attending', '2021-07-24 20:49:05', '2025-12-17 19:47:40', 'pmbGG2VA', '4240316'), + (55124, 563, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbGG2VA', '4240317'), + (55125, 563, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbGG2VA', '4240318'), + (55126, 563, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbGG2VA', '4240320'), + (55127, 563, 904, 'attending', '2021-07-03 23:12:15', '2025-12-17 19:47:39', 'pmbGG2VA', '4241594'), + (55128, 563, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbGG2VA', '4250163'), + (55129, 563, 917, 'maybe', '2021-07-14 01:02:46', '2025-12-17 19:47:39', 'pmbGG2VA', '4274481'), + (55130, 563, 919, 'not_attending', '2021-07-17 21:26:54', '2025-12-17 19:47:39', 'pmbGG2VA', '4275957'), + (55131, 563, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbGG2VA', '4277819'), + (55132, 563, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbGG2VA', '4301723'), + (55133, 563, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbGG2VA', '4302093'), + (55134, 563, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbGG2VA', '4304151'), + (55135, 563, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbGG2VA', '4356801'), + (55136, 563, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbGG2VA', '4366186'), + (55137, 563, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbGG2VA', '4366187'), + (55138, 563, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbGG2VA', '4420735'), + (55139, 563, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbGG2VA', '4420738'), + (55140, 563, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbGG2VA', '4420739'), + (55141, 563, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbGG2VA', '4420741'), + (55142, 563, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbGG2VA', '4420744'), + (55143, 563, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbGG2VA', '4420747'), + (55144, 563, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbGG2VA', '4420748'), + (55145, 563, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbGG2VA', '4420749'), + (55146, 563, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbGG2VA', '4461883'), + (55147, 563, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbGG2VA', '4508342'), + (55148, 563, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbGG2VA', '4568602'), + (55149, 563, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbGG2VA', '4572153'), + (55150, 563, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'pmbGG2VA', '4585962'), + (55151, 563, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'pmbGG2VA', '4596356'), + (55152, 563, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbGG2VA', '4598860'), + (55153, 563, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbGG2VA', '4598861'), + (55154, 563, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbGG2VA', '4602797'), + (55155, 563, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbGG2VA', '4637896'), + (55156, 563, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbGG2VA', '4642994'), + (55157, 563, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'pmbGG2VA', '4642995'), + (55158, 563, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbGG2VA', '4642996'), + (55159, 563, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbGG2VA', '4642997'), + (55160, 563, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbGG2VA', '4645687'), + (55161, 563, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbGG2VA', '4645698'), + (55162, 563, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbGG2VA', '4645704'), + (55163, 563, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbGG2VA', '4645705'), + (55164, 563, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbGG2VA', '4668385'), + (55165, 563, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbGG2VA', '4694407'), + (55166, 563, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'pmbGG2VA', '4706262'), + (55167, 563, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbGG2VA', '4736497'), + (55168, 563, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbGG2VA', '4736499'), + (55169, 563, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbGG2VA', '4736500'), + (55170, 563, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbGG2VA', '4736503'), + (55171, 563, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbGG2VA', '4736504'), + (55172, 563, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbGG2VA', '4746789'), + (55173, 563, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbGG2VA', '4753929'), + (55174, 563, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbGG2VA', '5038850'), + (55175, 563, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbGG2VA', '5045826'), + (55176, 563, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbGG2VA', '5132533'), + (55177, 563, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbGG2VA', '5186582'), + (55178, 563, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbGG2VA', '5186583'), + (55179, 563, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbGG2VA', '5186585'), + (55180, 563, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbGG2VA', '5190437'), + (55181, 563, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbGG2VA', '5215989'), + (55182, 563, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbGG2VA', '6045684'), + (55183, 564, 884, 'not_attending', '2021-08-13 22:24:14', '2025-12-17 19:47:42', 'ArgB5Kw4', '4210314'), + (55184, 564, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ArgB5Kw4', '4304151'), + (55185, 564, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'ArgB5Kw4', '4315726'), + (55186, 564, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ArgB5Kw4', '4366186'), + (55187, 564, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ArgB5Kw4', '4366187'), + (55188, 564, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArgB5Kw4', '6045684'), + (55189, 565, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dVDa6EzA', '6361713'), + (55190, 565, 2249, 'attending', '2023-09-20 03:04:57', '2025-12-17 19:46:45', 'dVDa6EzA', '6394630'), + (55191, 565, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dVDa6EzA', '6394631'), + (55192, 565, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dVDa6EzA', '6431478'), + (55193, 565, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVDa6EzA', '6440863'), + (55194, 565, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVDa6EzA', '6445440'), + (55195, 565, 2274, 'not_attending', '2023-10-04 19:10:55', '2025-12-17 19:46:45', 'dVDa6EzA', '6448287'), + (55196, 565, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVDa6EzA', '6453951'), + (55197, 565, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVDa6EzA', '6461696'), + (55198, 565, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVDa6EzA', '6462129'), + (55199, 565, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVDa6EzA', '6463218'), + (55200, 565, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVDa6EzA', '6472181'), + (55201, 565, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVDa6EzA', '6482693'), + (55202, 565, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVDa6EzA', '6484200'), + (55203, 565, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVDa6EzA', '6484680'), + (55204, 565, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVDa6EzA', '6507741'), + (55205, 565, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVDa6EzA', '6514659'), + (55206, 565, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVDa6EzA', '6514660'), + (55207, 565, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVDa6EzA', '6519103'), + (55208, 565, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVDa6EzA', '6535681'), + (55209, 565, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'dVDa6EzA', '6545076'), + (55210, 565, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVDa6EzA', '6584747'), + (55211, 565, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVDa6EzA', '6587097'), + (55212, 565, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVDa6EzA', '6609022'), + (55213, 565, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVDa6EzA', '6632757'), + (55214, 565, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVDa6EzA', '6644187'), + (55215, 565, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVDa6EzA', '6648951'), + (55216, 565, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVDa6EzA', '6648952'), + (55217, 565, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dVDa6EzA', '6651141'), + (55218, 565, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVDa6EzA', '6655401'), + (55219, 565, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVDa6EzA', '6661585'), + (55220, 565, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVDa6EzA', '6661588'), + (55221, 565, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVDa6EzA', '6661589'), + (55222, 565, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVDa6EzA', '6699906'), + (55223, 565, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dVDa6EzA', '6699913'), + (55224, 565, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVDa6EzA', '6701109'), + (55225, 565, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVDa6EzA', '6705219'), + (55226, 565, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVDa6EzA', '6710153'), + (55227, 565, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVDa6EzA', '6711552'), + (55228, 565, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVDa6EzA', '6711553'), + (55229, 565, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVDa6EzA', '6722688'), + (55230, 565, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVDa6EzA', '6730620'), + (55231, 565, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVDa6EzA', '6730642'), + (55232, 565, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dVDa6EzA', '6740364'), + (55233, 565, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVDa6EzA', '6743829'), + (55234, 565, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVDa6EzA', '7030380'), + (55235, 565, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dVDa6EzA', '7033677'), + (55236, 565, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dVDa6EzA', '7035415'), + (55237, 565, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dVDa6EzA', '7044715'), + (55238, 565, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVDa6EzA', '7050318'), + (55239, 565, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVDa6EzA', '7050319'), + (55240, 565, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVDa6EzA', '7050322'), + (55241, 565, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dVDa6EzA', '7057804'), + (55242, 565, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVDa6EzA', '7072824'), + (55243, 565, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVDa6EzA', '7074348'), + (55244, 565, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVDa6EzA', '7089267'), + (55245, 565, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dVDa6EzA', '7098747'), + (55246, 565, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dVDa6EzA', '7113468'), + (55247, 565, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVDa6EzA', '7114856'), + (55248, 565, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dVDa6EzA', '7114951'), + (55249, 565, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVDa6EzA', '7114955'), + (55250, 565, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVDa6EzA', '7114956'), + (55251, 565, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVDa6EzA', '7153615'), + (55252, 565, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVDa6EzA', '7159484'), + (55253, 565, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVDa6EzA', '7178446'), + (55254, 566, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41oMNaEm', '6045684'), + (55255, 567, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd8VzLnvA', '5880942'), + (55256, 567, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd8VzLnvA', '5880943'), + (55257, 567, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd8VzLnvA', '5900200'), + (55258, 567, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd8VzLnvA', '5900202'), + (55259, 567, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd8VzLnvA', '5900203'), + (55260, 567, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', 'd8VzLnvA', '5910522'), + (55261, 567, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'd8VzLnvA', '5910526'), + (55262, 567, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'd8VzLnvA', '5910528'), + (55263, 567, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd8VzLnvA', '5916219'), + (55264, 567, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd8VzLnvA', '5936234'), + (55265, 567, 1934, 'attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'd8VzLnvA', '5936691'), + (55266, 567, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd8VzLnvA', '5958351'), + (55267, 567, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd8VzLnvA', '5959751'), + (55268, 567, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd8VzLnvA', '5959755'), + (55269, 567, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd8VzLnvA', '5960055'), + (55270, 567, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd8VzLnvA', '5961684'), + (55271, 567, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd8VzLnvA', '5962132'), + (55272, 567, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd8VzLnvA', '5962133'), + (55273, 567, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd8VzLnvA', '5962134'), + (55274, 567, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd8VzLnvA', '5962317'), + (55275, 567, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd8VzLnvA', '5962318'), + (55276, 567, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd8VzLnvA', '5965933'), + (55277, 567, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd8VzLnvA', '5967014'), + (55278, 567, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd8VzLnvA', '5972815'), + (55279, 567, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd8VzLnvA', '5974016'), + (55280, 567, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd8VzLnvA', '5981515'), + (55281, 567, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd8VzLnvA', '5993516'), + (55282, 567, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd8VzLnvA', '5998939'), + (55283, 567, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd8VzLnvA', '6028191'), + (55284, 567, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd8VzLnvA', '6040066'), + (55285, 567, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd8VzLnvA', '6042717'), + (55286, 567, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd8VzLnvA', '6044838'), + (55287, 567, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd8VzLnvA', '6044839'), + (55288, 567, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8VzLnvA', '6045684'), + (55289, 567, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd8VzLnvA', '6050104'), + (55290, 567, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd8VzLnvA', '6053195'), + (55291, 567, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd8VzLnvA', '6053198'), + (55292, 567, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd8VzLnvA', '6056085'), + (55293, 567, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd8VzLnvA', '6056916'), + (55294, 567, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd8VzLnvA', '6059290'), + (55295, 567, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd8VzLnvA', '6060328'), + (55296, 567, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd8VzLnvA', '6061037'), + (55297, 567, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd8VzLnvA', '6061039'), + (55298, 567, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd8VzLnvA', '6067245'), + (55299, 567, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd8VzLnvA', '6068094'), + (55300, 567, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd8VzLnvA', '6068252'), + (55301, 567, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd8VzLnvA', '6068253'), + (55302, 567, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd8VzLnvA', '6068254'), + (55303, 567, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd8VzLnvA', '6068280'), + (55304, 567, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd8VzLnvA', '6069093'), + (55305, 567, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd8VzLnvA', '6072528'), + (55306, 567, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd8VzLnvA', '6079840'), + (55307, 567, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd8VzLnvA', '6083398'), + (55308, 567, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'd8VzLnvA', '6093504'), + (55309, 567, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd8VzLnvA', '6097414'), + (55310, 567, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd8VzLnvA', '6097442'), + (55311, 567, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd8VzLnvA', '6097684'), + (55312, 567, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd8VzLnvA', '6098762'), + (55313, 567, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd8VzLnvA', '6101362'), + (55314, 567, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'd8VzLnvA', '6103752'), + (55315, 567, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd8VzLnvA', '6107314'), + (55316, 568, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYznBMa4', '6045684'), + (55317, 569, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v81QGBm', '6045684'), + (55318, 570, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd90KjvE4', '7074364'), + (55319, 570, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd90KjvE4', '7324073'), + (55320, 570, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd90KjvE4', '7324074'), + (55321, 570, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd90KjvE4', '7324075'), + (55322, 570, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd90KjvE4', '7324078'), + (55323, 570, 2702, 'not_attending', '2024-06-13 18:33:33', '2025-12-17 19:46:28', 'd90KjvE4', '7324867'), + (55324, 570, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd90KjvE4', '7331457'), + (55325, 570, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'd90KjvE4', '7332564'), + (55326, 570, 2739, 'not_attending', '2024-06-30 23:19:08', '2025-12-17 19:46:29', 'd90KjvE4', '7344575'), + (55327, 570, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'd90KjvE4', '7359624'), + (55328, 570, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd90KjvE4', '7363643'), + (55329, 570, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd90KjvE4', '7368606'), + (55330, 571, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4kRwppEA', '4668385'), + (55331, 571, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4kRwppEA', '4694407'), + (55332, 571, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4kRwppEA', '4746789'), + (55333, 571, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4kRwppEA', '4753929'), + (55334, 571, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kRwppEA', '6045684'), + (55335, 572, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlRWWYA', '6045684'), + (55336, 573, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'd8DzyGpd', '5195095'), + (55337, 573, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'd8DzyGpd', '5247467'), + (55338, 573, 1362, 'not_attending', '2022-04-30 19:14:25', '2025-12-17 19:47:28', 'd8DzyGpd', '5260800'), + (55339, 573, 1374, 'not_attending', '2022-05-07 20:20:54', '2025-12-17 19:47:28', 'd8DzyGpd', '5269930'), + (55340, 573, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd8DzyGpd', '5271448'), + (55341, 573, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'd8DzyGpd', '5271449'), + (55342, 573, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd8DzyGpd', '5276469'), + (55343, 573, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd8DzyGpd', '5278159'), + (55344, 573, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd8DzyGpd', '5363695'), + (55345, 573, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd8DzyGpd', '5365960'), + (55346, 573, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd8DzyGpd', '5368973'), + (55347, 573, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd8DzyGpd', '5378247'), + (55348, 573, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd8DzyGpd', '5389605'), + (55349, 573, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd8DzyGpd', '5397265'), + (55350, 573, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd8DzyGpd', '5403967'), + (55351, 573, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd8DzyGpd', '5404786'), + (55352, 573, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd8DzyGpd', '5405203'), + (55353, 573, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'd8DzyGpd', '5408794'), + (55354, 573, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd8DzyGpd', '5411699'), + (55355, 573, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd8DzyGpd', '5412550'), + (55356, 573, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd8DzyGpd', '5415046'), + (55357, 573, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd8DzyGpd', '5422086'), + (55358, 573, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd8DzyGpd', '5422406'), + (55359, 573, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd8DzyGpd', '5424565'), + (55360, 573, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd8DzyGpd', '5426882'), + (55361, 573, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd8DzyGpd', '5427083'), + (55362, 573, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'd8DzyGpd', '5441125'), + (55363, 573, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd8DzyGpd', '5441126'), + (55364, 573, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd8DzyGpd', '5441128'), + (55365, 573, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd8DzyGpd', '5441131'), + (55366, 573, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd8DzyGpd', '5441132'), + (55367, 573, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd8DzyGpd', '5446643'), + (55368, 573, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd8DzyGpd', '5453325'), + (55369, 573, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd8DzyGpd', '5454516'), + (55370, 573, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd8DzyGpd', '5454605'), + (55371, 573, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd8DzyGpd', '5455037'), + (55372, 573, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd8DzyGpd', '5461278'), + (55373, 573, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd8DzyGpd', '5469480'), + (55374, 573, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd8DzyGpd', '5471073'), + (55375, 573, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd8DzyGpd', '5474663'), + (55376, 573, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd8DzyGpd', '5482022'), + (55377, 573, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd8DzyGpd', '5482793'), + (55378, 573, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd8DzyGpd', '5488912'), + (55379, 573, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd8DzyGpd', '5492192'), + (55380, 573, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd8DzyGpd', '5493139'), + (55381, 573, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd8DzyGpd', '5493200'), + (55382, 573, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd8DzyGpd', '5502188'), + (55383, 573, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd8DzyGpd', '5505059'), + (55384, 573, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd8DzyGpd', '5509055'), + (55385, 573, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd8DzyGpd', '5512862'), + (55386, 573, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd8DzyGpd', '5513985'), + (55387, 573, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd8DzyGpd', '5519981'), + (55388, 573, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd8DzyGpd', '5522550'), + (55389, 573, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd8DzyGpd', '5534683'), + (55390, 573, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd8DzyGpd', '5546619'), + (55391, 573, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd8DzyGpd', '5555245'), + (55392, 573, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd8DzyGpd', '5557747'), + (55393, 573, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8DzyGpd', '6045684'), + (55394, 574, 1684, 'attending', '2022-10-11 22:29:00', '2025-12-17 19:47:12', 'Md3MjvgA', '5605544'), + (55395, 574, 1712, 'not_attending', '2022-10-13 22:25:14', '2025-12-17 19:47:12', 'Md3MjvgA', '5622073'), + (55396, 574, 1720, 'attending', '2022-10-15 09:16:49', '2025-12-17 19:47:12', 'Md3MjvgA', '5630959'), + (55397, 574, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Md3MjvgA', '5630960'), + (55398, 574, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Md3MjvgA', '5630961'), + (55399, 574, 1723, 'attending', '2022-10-30 23:02:22', '2025-12-17 19:47:15', 'Md3MjvgA', '5630962'), + (55400, 574, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Md3MjvgA', '5630966'), + (55401, 574, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Md3MjvgA', '5630967'), + (55402, 574, 1726, 'attending', '2022-11-19 12:47:22', '2025-12-17 19:47:16', 'Md3MjvgA', '5630968'), + (55403, 574, 1727, 'attending', '2022-11-19 12:47:26', '2025-12-17 19:47:16', 'Md3MjvgA', '5630969'), + (55404, 574, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', 'Md3MjvgA', '5638765'), + (55405, 574, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Md3MjvgA', '5640097'), + (55406, 574, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'Md3MjvgA', '5640843'), + (55407, 574, 1741, 'attending', '2022-10-09 23:42:34', '2025-12-17 19:47:12', 'Md3MjvgA', '5641132'), + (55408, 574, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Md3MjvgA', '5641521'), + (55409, 574, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Md3MjvgA', '5642818'), + (55410, 574, 1745, 'maybe', '2022-10-15 09:16:59', '2025-12-17 19:47:12', 'Md3MjvgA', '5643088'), + (55411, 574, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Md3MjvgA', '5652395'), + (55412, 574, 1757, 'not_attending', '2022-11-03 17:24:25', '2025-12-17 19:47:15', 'Md3MjvgA', '5668974'), + (55413, 574, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Md3MjvgA', '5670445'), + (55414, 574, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Md3MjvgA', '5671637'), + (55415, 574, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Md3MjvgA', '5672329'), + (55416, 574, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Md3MjvgA', '5674057'), + (55417, 574, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Md3MjvgA', '5674060'), + (55418, 574, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Md3MjvgA', '5677461'), + (55419, 574, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Md3MjvgA', '5698046'), + (55420, 574, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'Md3MjvgA', '5699760'), + (55421, 574, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Md3MjvgA', '5741601'), + (55422, 574, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Md3MjvgA', '5763458'), + (55423, 574, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Md3MjvgA', '5774172'), + (55424, 574, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'Md3MjvgA', '5818247'), + (55425, 574, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Md3MjvgA', '5819471'), + (55426, 574, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Md3MjvgA', '5827739'), + (55427, 574, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Md3MjvgA', '5844306'), + (55428, 574, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Md3MjvgA', '5850159'), + (55429, 574, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Md3MjvgA', '5858999'), + (55430, 574, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Md3MjvgA', '5871984'), + (55431, 574, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Md3MjvgA', '5876354'), + (55432, 574, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'Md3MjvgA', '5880939'), + (55433, 574, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Md3MjvgA', '5880940'), + (55434, 574, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Md3MjvgA', '5880942'), + (55435, 574, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Md3MjvgA', '5880943'), + (55436, 574, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Md3MjvgA', '5887890'), + (55437, 574, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Md3MjvgA', '5888598'), + (55438, 574, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Md3MjvgA', '5893260'), + (55439, 574, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Md3MjvgA', '5899826'), + (55440, 574, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Md3MjvgA', '5900199'), + (55441, 574, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Md3MjvgA', '5900200'), + (55442, 574, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Md3MjvgA', '5900202'), + (55443, 574, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Md3MjvgA', '5900203'), + (55444, 574, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Md3MjvgA', '5901108'), + (55445, 574, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Md3MjvgA', '5901126'), + (55446, 574, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Md3MjvgA', '5909655'), + (55447, 574, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Md3MjvgA', '5910522'), + (55448, 574, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Md3MjvgA', '5910526'), + (55449, 574, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Md3MjvgA', '5910528'), + (55450, 574, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Md3MjvgA', '5916219'), + (55451, 574, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Md3MjvgA', '5936234'), + (55452, 574, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Md3MjvgA', '5958351'), + (55453, 574, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Md3MjvgA', '5959751'), + (55454, 574, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Md3MjvgA', '5959755'), + (55455, 574, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Md3MjvgA', '5960055'), + (55456, 574, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Md3MjvgA', '5961684'), + (55457, 574, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Md3MjvgA', '5962132'), + (55458, 574, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Md3MjvgA', '5962133'), + (55459, 574, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Md3MjvgA', '5962134'), + (55460, 574, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Md3MjvgA', '5962317'), + (55461, 574, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Md3MjvgA', '5962318'), + (55462, 574, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Md3MjvgA', '5965933'), + (55463, 574, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Md3MjvgA', '5967014'), + (55464, 574, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Md3MjvgA', '5972815'), + (55465, 574, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Md3MjvgA', '5974016'), + (55466, 574, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Md3MjvgA', '5981515'), + (55467, 574, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Md3MjvgA', '5993516'), + (55468, 574, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Md3MjvgA', '5998939'), + (55469, 574, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Md3MjvgA', '6028191'), + (55470, 574, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Md3MjvgA', '6040066'), + (55471, 574, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Md3MjvgA', '6042717'), + (55472, 574, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Md3MjvgA', '6044838'), + (55473, 574, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Md3MjvgA', '6044839'), + (55474, 574, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Md3MjvgA', '6045684'), + (55475, 574, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Md3MjvgA', '6050104'), + (55476, 574, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Md3MjvgA', '6053195'), + (55477, 574, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Md3MjvgA', '6053198'), + (55478, 574, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Md3MjvgA', '6056085'), + (55479, 574, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Md3MjvgA', '6056916'), + (55480, 574, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Md3MjvgA', '6059290'), + (55481, 574, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Md3MjvgA', '6060328'), + (55482, 574, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Md3MjvgA', '6061037'), + (55483, 574, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Md3MjvgA', '6061039'), + (55484, 574, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Md3MjvgA', '6067245'), + (55485, 574, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Md3MjvgA', '6068094'), + (55486, 574, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Md3MjvgA', '6068252'), + (55487, 574, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Md3MjvgA', '6068253'), + (55488, 574, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Md3MjvgA', '6068254'), + (55489, 574, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Md3MjvgA', '6068280'), + (55490, 574, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Md3MjvgA', '6069093'), + (55491, 574, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'Md3MjvgA', '6072528'), + (55492, 574, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Md3MjvgA', '6079840'), + (55493, 574, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Md3MjvgA', '6083398'), + (55494, 574, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Md3MjvgA', '6093504'), + (55495, 574, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Md3MjvgA', '6097414'), + (55496, 574, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Md3MjvgA', '6097442'), + (55497, 574, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Md3MjvgA', '6097684'), + (55498, 574, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Md3MjvgA', '6098762'), + (55499, 574, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Md3MjvgA', '6101362'), + (55500, 574, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'Md3MjvgA', '6103752'), + (55501, 574, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Md3MjvgA', '6107314'), + (55502, 575, 259, 'attending', '2021-05-18 21:53:00', '2025-12-17 19:47:46', '6AX5PQ64', '3149490'), + (55503, 575, 397, 'not_attending', '2021-05-27 20:06:41', '2025-12-17 19:47:47', '6AX5PQ64', '3236452'), + (55504, 575, 647, 'not_attending', '2021-05-18 04:06:23', '2025-12-17 19:47:46', '6AX5PQ64', '3539922'), + (55505, 575, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '6AX5PQ64', '3539923'), + (55506, 575, 725, 'not_attending', '2021-05-23 20:30:43', '2025-12-17 19:47:47', '6AX5PQ64', '3661372'), + (55507, 575, 793, 'not_attending', '2021-06-02 00:22:12', '2025-12-17 19:47:47', '6AX5PQ64', '3793537'), + (55508, 575, 797, 'not_attending', '2021-05-23 19:47:44', '2025-12-17 19:47:47', '6AX5PQ64', '3796195'), + (55509, 575, 803, 'attending', '2021-05-19 22:54:25', '2025-12-17 19:47:46', '6AX5PQ64', '3804665'), + (55510, 575, 804, 'not_attending', '2021-05-23 19:47:38', '2025-12-17 19:47:47', '6AX5PQ64', '3804775'), + (55511, 575, 808, 'not_attending', '2021-05-20 22:36:38', '2025-12-17 19:47:46', '6AX5PQ64', '3807358'), + (55512, 575, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AX5PQ64', '3974109'), + (55513, 575, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AX5PQ64', '3975311'), + (55514, 575, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AX5PQ64', '3975312'), + (55515, 575, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AX5PQ64', '3994992'), + (55516, 575, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AX5PQ64', '4014338'), + (55517, 575, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AX5PQ64', '4021848'), + (55518, 575, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AX5PQ64', '4136744'), + (55519, 575, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AX5PQ64', '4136937'), + (55520, 575, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AX5PQ64', '4136938'), + (55521, 575, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AX5PQ64', '4136947'), + (55522, 575, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AX5PQ64', '4210314'), + (55523, 575, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AX5PQ64', '4225444'), + (55524, 575, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AX5PQ64', '4239259'), + (55525, 575, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AX5PQ64', '4240316'), + (55526, 575, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AX5PQ64', '4240317'), + (55527, 575, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AX5PQ64', '4240318'), + (55528, 575, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AX5PQ64', '4240320'), + (55529, 575, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AX5PQ64', '4250163'), + (55530, 575, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AX5PQ64', '4275957'), + (55531, 575, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AX5PQ64', '4277819'), + (55532, 575, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AX5PQ64', '4301723'), + (55533, 575, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AX5PQ64', '4302093'), + (55534, 575, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AX5PQ64', '4304151'), + (55535, 575, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', '6AX5PQ64', '4345519'), + (55536, 575, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '6AX5PQ64', '4356801'), + (55537, 575, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '6AX5PQ64', '4358025'), + (55538, 575, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AX5PQ64', '4366186'), + (55539, 575, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AX5PQ64', '4366187'), + (55540, 575, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '6AX5PQ64', '4402823'), + (55541, 575, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '6AX5PQ64', '4420735'), + (55542, 575, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '6AX5PQ64', '4420738'), + (55543, 575, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '6AX5PQ64', '4420739'), + (55544, 575, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '6AX5PQ64', '4420741'), + (55545, 575, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '6AX5PQ64', '4420744'), + (55546, 575, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '6AX5PQ64', '4420747'), + (55547, 575, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '6AX5PQ64', '4420748'), + (55548, 575, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '6AX5PQ64', '4420749'), + (55549, 575, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '6AX5PQ64', '4461883'), + (55550, 575, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '6AX5PQ64', '4508342'), + (55551, 575, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '6AX5PQ64', '4568602'), + (55552, 575, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '6AX5PQ64', '4572153'), + (55553, 575, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '6AX5PQ64', '4585962'), + (55554, 575, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '6AX5PQ64', '4596356'), + (55555, 575, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '6AX5PQ64', '4598860'), + (55556, 575, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '6AX5PQ64', '4598861'), + (55557, 575, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '6AX5PQ64', '4602797'), + (55558, 575, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '6AX5PQ64', '4637896'), + (55559, 575, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '6AX5PQ64', '4642994'), + (55560, 575, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '6AX5PQ64', '4642995'), + (55561, 575, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '6AX5PQ64', '4642996'), + (55562, 575, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '6AX5PQ64', '4642997'), + (55563, 575, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '6AX5PQ64', '4645687'), + (55564, 575, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '6AX5PQ64', '4645698'), + (55565, 575, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '6AX5PQ64', '4645704'), + (55566, 575, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '6AX5PQ64', '4645705'), + (55567, 575, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '6AX5PQ64', '4668385'), + (55568, 575, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '6AX5PQ64', '4694407'), + (55569, 575, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '6AX5PQ64', '4736497'), + (55570, 575, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '6AX5PQ64', '4736499'), + (55571, 575, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '6AX5PQ64', '4736500'), + (55572, 575, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '6AX5PQ64', '4736503'), + (55573, 575, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '6AX5PQ64', '4736504'), + (55574, 575, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '6AX5PQ64', '4746789'), + (55575, 575, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '6AX5PQ64', '4753929'), + (55576, 575, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '6AX5PQ64', '5038850'), + (55577, 575, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '6AX5PQ64', '5045826'), + (55578, 575, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '6AX5PQ64', '5132533'), + (55579, 575, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '6AX5PQ64', '5186582'), + (55580, 575, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '6AX5PQ64', '5186583'), + (55581, 575, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '6AX5PQ64', '5186585'), + (55582, 575, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '6AX5PQ64', '5190437'), + (55583, 575, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '6AX5PQ64', '5215989'), + (55584, 575, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AX5PQ64', '6045684'), + (55585, 576, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'An28Z32A', '5880943'), + (55586, 576, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'An28Z32A', '5900202'), + (55587, 576, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'An28Z32A', '5900203'), + (55588, 576, 1916, 'not_attending', '2023-03-01 16:36:14', '2025-12-17 19:47:08', 'An28Z32A', '5910526'), + (55589, 576, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'An28Z32A', '5910528'), + (55590, 576, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'An28Z32A', '5962317'), + (55591, 576, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'An28Z32A', '5962318'), + (55592, 576, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'An28Z32A', '5965933'), + (55593, 576, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'An28Z32A', '5967014'), + (55594, 576, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'An28Z32A', '5972815'), + (55595, 576, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'An28Z32A', '5974016'), + (55596, 576, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'An28Z32A', '5981515'), + (55597, 576, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'An28Z32A', '5993516'), + (55598, 576, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'An28Z32A', '5998939'), + (55599, 576, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'An28Z32A', '6028191'), + (55600, 576, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'An28Z32A', '6040066'), + (55601, 576, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'An28Z32A', '6042717'), + (55602, 576, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'An28Z32A', '6044838'), + (55603, 576, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'An28Z32A', '6044839'), + (55604, 576, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'An28Z32A', '6045684'), + (55605, 576, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'An28Z32A', '6048955'), + (55606, 576, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'An28Z32A', '6050104'), + (55607, 576, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'An28Z32A', '6053195'), + (55608, 576, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'An28Z32A', '6053198'), + (55609, 576, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'An28Z32A', '6056085'), + (55610, 576, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'An28Z32A', '6056916'), + (55611, 576, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'An28Z32A', '6059290'), + (55612, 576, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'An28Z32A', '6060328'), + (55613, 576, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'An28Z32A', '6061037'), + (55614, 576, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'An28Z32A', '6061039'), + (55615, 576, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'An28Z32A', '6067245'), + (55616, 576, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'An28Z32A', '6068094'), + (55617, 576, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'An28Z32A', '6068252'), + (55618, 576, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'An28Z32A', '6068253'), + (55619, 576, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'An28Z32A', '6068254'), + (55620, 576, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'An28Z32A', '6068280'), + (55621, 576, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'An28Z32A', '6069093'), + (55622, 576, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'An28Z32A', '6072528'), + (55623, 576, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'An28Z32A', '6079840'), + (55624, 576, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'An28Z32A', '6083398'), + (55625, 576, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'An28Z32A', '6093504'), + (55626, 576, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'An28Z32A', '6097414'), + (55627, 576, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'An28Z32A', '6097442'), + (55628, 576, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'An28Z32A', '6097684'), + (55629, 576, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'An28Z32A', '6098762'), + (55630, 576, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'An28Z32A', '6101362'), + (55631, 576, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'An28Z32A', '6107314'), + (55632, 576, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'An28Z32A', '6120034'), + (55633, 577, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dl3J95l4', '5195095'), + (55634, 577, 1333, 'not_attending', '2022-04-13 18:37:37', '2025-12-17 19:47:27', 'dl3J95l4', '5243711'), + (55635, 577, 1339, 'not_attending', '2022-04-16 00:17:07', '2025-12-17 19:47:27', 'dl3J95l4', '5245284'), + (55636, 577, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dl3J95l4', '5247467'), + (55637, 577, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dl3J95l4', '5260800'), + (55638, 577, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dl3J95l4', '5269930'), + (55639, 577, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dl3J95l4', '5271448'), + (55640, 577, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dl3J95l4', '5271449'), + (55641, 577, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dl3J95l4', '5276469'), + (55642, 577, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dl3J95l4', '5278159'), + (55643, 577, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dl3J95l4', '5363695'), + (55644, 577, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dl3J95l4', '5365960'), + (55645, 577, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dl3J95l4', '5368973'), + (55646, 577, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dl3J95l4', '5378247'), + (55647, 577, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dl3J95l4', '5389605'), + (55648, 577, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dl3J95l4', '5397265'), + (55649, 577, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dl3J95l4', '6045684'), + (55650, 578, 646, 'attending', '2021-05-14 21:05:54', '2025-12-17 19:47:46', '8d8l0Kgd', '3539921'), + (55651, 578, 647, 'attending', '2021-05-16 15:24:25', '2025-12-17 19:47:46', '8d8l0Kgd', '3539922'), + (55652, 578, 648, 'attending', '2021-05-22 04:29:49', '2025-12-17 19:47:47', '8d8l0Kgd', '3539923'), + (55653, 578, 798, 'maybe', '2021-05-14 21:07:41', '2025-12-17 19:47:46', '8d8l0Kgd', '3796262'), + (55654, 578, 803, 'maybe', '2021-05-14 21:07:32', '2025-12-17 19:47:46', '8d8l0Kgd', '3804665'), + (55655, 578, 809, 'maybe', '2021-05-16 15:24:15', '2025-12-17 19:47:46', '8d8l0Kgd', '3807964'), + (55656, 578, 810, 'attending', '2021-05-16 15:20:05', '2025-12-17 19:47:46', '8d8l0Kgd', '3808029'), + (55657, 578, 811, 'attending', '2021-05-16 15:20:13', '2025-12-17 19:47:46', '8d8l0Kgd', '3808030'), + (55658, 578, 812, 'not_attending', '2021-05-19 20:36:51', '2025-12-17 19:47:46', '8d8l0Kgd', '3808031'), + (55659, 578, 815, 'attending', '2021-05-28 21:35:51', '2025-12-17 19:47:47', '8d8l0Kgd', '3818136'), + (55660, 578, 821, 'attending', '2021-05-31 13:17:54', '2025-12-17 19:47:47', '8d8l0Kgd', '3963965'), + (55661, 578, 823, 'attending', '2021-06-19 15:52:36', '2025-12-17 19:47:48', '8d8l0Kgd', '3974109'), + (55662, 578, 827, 'attending', '2021-06-05 22:41:36', '2025-12-17 19:47:47', '8d8l0Kgd', '3975311'), + (55663, 578, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '8d8l0Kgd', '3975312'), + (55664, 578, 830, 'attending', '2021-06-03 16:35:44', '2025-12-17 19:47:47', '8d8l0Kgd', '3976648'), + (55665, 578, 831, 'maybe', '2021-06-02 18:31:21', '2025-12-17 19:47:47', '8d8l0Kgd', '3976649'), + (55666, 578, 832, 'attending', '2021-06-05 19:32:14', '2025-12-17 19:47:47', '8d8l0Kgd', '3976650'), + (55667, 578, 834, 'attending', '2021-06-09 16:42:03', '2025-12-17 19:47:47', '8d8l0Kgd', '3990439'), + (55668, 578, 837, 'attending', '2021-06-17 22:45:26', '2025-12-17 19:47:48', '8d8l0Kgd', '3992545'), + (55669, 578, 838, 'maybe', '2021-06-08 17:17:12', '2025-12-17 19:47:47', '8d8l0Kgd', '3994992'), + (55670, 578, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '8d8l0Kgd', '4014338'), + (55671, 578, 866, 'attending', '2021-06-19 00:35:30', '2025-12-17 19:47:38', '8d8l0Kgd', '4020424'), + (55672, 578, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '8d8l0Kgd', '4021848'), + (55673, 578, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '8d8l0Kgd', '4136744'), + (55674, 578, 870, 'not_attending', '2021-07-02 19:14:16', '2025-12-17 19:47:39', '8d8l0Kgd', '4136937'), + (55675, 578, 871, 'not_attending', '2021-07-10 22:21:09', '2025-12-17 19:47:39', '8d8l0Kgd', '4136938'), + (55676, 578, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '8d8l0Kgd', '4136947'), + (55677, 578, 880, 'maybe', '2021-06-18 14:07:53', '2025-12-17 19:47:48', '8d8l0Kgd', '4205383'), + (55678, 578, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '8d8l0Kgd', '4210314'), + (55679, 578, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8d8l0Kgd', '4225444'), + (55680, 578, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '8d8l0Kgd', '4239259'), + (55681, 578, 900, 'attending', '2021-07-24 21:33:19', '2025-12-17 19:47:40', '8d8l0Kgd', '4240316'), + (55682, 578, 901, 'attending', '2021-07-31 21:13:28', '2025-12-17 19:47:40', '8d8l0Kgd', '4240317'), + (55683, 578, 902, 'not_attending', '2021-08-07 23:08:33', '2025-12-17 19:47:41', '8d8l0Kgd', '4240318'), + (55684, 578, 903, 'not_attending', '2021-08-14 21:47:29', '2025-12-17 19:47:42', '8d8l0Kgd', '4240320'), + (55685, 578, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8d8l0Kgd', '4250163'), + (55686, 578, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '8d8l0Kgd', '4275957'), + (55687, 578, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '8d8l0Kgd', '4277819'), + (55688, 578, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '8d8l0Kgd', '4301723'), + (55689, 578, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '8d8l0Kgd', '4302093'), + (55690, 578, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '8d8l0Kgd', '4304151'), + (55691, 578, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '8d8l0Kgd', '4356801'), + (55692, 578, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '8d8l0Kgd', '4366186'), + (55693, 578, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '8d8l0Kgd', '4366187'), + (55694, 578, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '8d8l0Kgd', '4420735'), + (55695, 578, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '8d8l0Kgd', '4420738'), + (55696, 578, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '8d8l0Kgd', '4420739'), + (55697, 578, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '8d8l0Kgd', '4420741'), + (55698, 578, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '8d8l0Kgd', '4420744'), + (55699, 578, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '8d8l0Kgd', '4420747'), + (55700, 578, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '8d8l0Kgd', '4420748'), + (55701, 578, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '8d8l0Kgd', '4420749'), + (55702, 578, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '8d8l0Kgd', '4461883'), + (55703, 578, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '8d8l0Kgd', '4508342'), + (55704, 578, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '8d8l0Kgd', '4568602'), + (55705, 578, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8d8l0Kgd', '6045684'), + (55706, 579, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Vdxw5kO4', '3236465'), + (55707, 579, 622, 'attending', '2021-03-14 00:00:02', '2025-12-17 19:47:51', 'Vdxw5kO4', '3517816'), + (55708, 579, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'Vdxw5kO4', '3539916'), + (55709, 579, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Vdxw5kO4', '3539918'), + (55710, 579, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Vdxw5kO4', '3539919'), + (55711, 579, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Vdxw5kO4', '3539920'), + (55712, 579, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Vdxw5kO4', '3539921'), + (55713, 579, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Vdxw5kO4', '3539927'), + (55714, 579, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Vdxw5kO4', '3582734'), + (55715, 579, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Vdxw5kO4', '3583262'), + (55716, 579, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Vdxw5kO4', '3619523'), + (55717, 579, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Vdxw5kO4', '3661369'), + (55718, 579, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Vdxw5kO4', '3674262'), + (55719, 579, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Vdxw5kO4', '3677402'), + (55720, 579, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Vdxw5kO4', '3730212'), + (55721, 579, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Vdxw5kO4', '3793156'), + (55722, 579, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Vdxw5kO4', '3803310'), + (55723, 579, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Vdxw5kO4', '3806392'), + (55724, 579, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Vdxw5kO4', '6045684'), + (55725, 580, 47, 'attending', '2020-05-03 23:33:14', '2025-12-17 19:47:57', 'ydwen00A', '2975272'), + (55726, 580, 62, 'attending', '2020-05-12 23:27:37', '2025-12-17 19:47:57', 'ydwen00A', '2977131'), + (55727, 580, 63, 'maybe', '2020-05-19 22:37:27', '2025-12-17 19:47:57', 'ydwen00A', '2977132'), + (55728, 580, 66, 'attending', '2020-06-09 01:17:53', '2025-12-17 19:47:58', 'ydwen00A', '2977135'), + (55729, 580, 68, 'attending', '2020-06-23 22:49:48', '2025-12-17 19:47:58', 'ydwen00A', '2977137'), + (55730, 580, 72, 'attending', '2020-05-07 18:35:47', '2025-12-17 19:47:57', 'ydwen00A', '2977812'), + (55731, 580, 77, 'attending', '2020-05-04 17:00:37', '2025-12-17 19:47:57', 'ydwen00A', '2978247'), + (55732, 580, 78, 'attending', '2020-05-07 22:00:55', '2025-12-17 19:47:57', 'ydwen00A', '2978249'), + (55733, 580, 79, 'attending', '2020-05-07 22:01:00', '2025-12-17 19:47:57', 'ydwen00A', '2978250'), + (55734, 580, 80, 'attending', '2020-05-07 22:01:04', '2025-12-17 19:47:58', 'ydwen00A', '2978251'), + (55735, 580, 81, 'attending', '2020-05-07 22:00:12', '2025-12-17 19:47:58', 'ydwen00A', '2978252'), + (55736, 580, 83, 'attending', '2020-05-07 20:06:33', '2025-12-17 19:47:57', 'ydwen00A', '2978438'), + (55737, 580, 96, 'attending', '2020-05-06 20:52:26', '2025-12-17 19:47:57', 'ydwen00A', '2987453'), + (55738, 580, 97, 'attending', '2020-05-06 18:52:12', '2025-12-17 19:47:57', 'ydwen00A', '2987454'), + (55739, 580, 98, 'maybe', '2020-05-21 23:32:05', '2025-12-17 19:47:57', 'ydwen00A', '2987455'), + (55740, 580, 99, 'maybe', '2020-05-03 23:47:34', '2025-12-17 19:47:57', 'ydwen00A', '2988545'), + (55741, 580, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'ydwen00A', '2994480'), + (55742, 580, 115, 'maybe', '2020-05-16 22:31:58', '2025-12-17 19:47:57', 'ydwen00A', '3001217'), + (55743, 580, 116, 'attending', '2020-05-04 17:00:21', '2025-12-17 19:47:57', 'ydwen00A', '3006242'), + (55744, 580, 120, 'attending', '2020-05-10 23:04:29', '2025-12-17 19:47:57', 'ydwen00A', '3018282'), + (55745, 580, 121, 'attending', '2020-05-18 05:15:51', '2025-12-17 19:47:57', 'ydwen00A', '3023063'), + (55746, 580, 122, 'maybe', '2020-05-18 23:10:35', '2025-12-17 19:47:57', 'ydwen00A', '3023491'), + (55747, 580, 123, 'attending', '2020-05-19 22:23:15', '2025-12-17 19:47:57', 'ydwen00A', '3023729'), + (55748, 580, 124, 'maybe', '2020-05-25 22:15:50', '2025-12-17 19:47:57', 'ydwen00A', '3023809'), + (55749, 580, 125, 'attending', '2020-05-17 03:30:10', '2025-12-17 19:47:57', 'ydwen00A', '3023987'), + (55750, 580, 126, 'attending', '2020-05-22 18:52:28', '2025-12-17 19:47:57', 'ydwen00A', '3024022'), + (55751, 580, 127, 'attending', '2020-05-17 03:30:14', '2025-12-17 19:47:57', 'ydwen00A', '3025623'), + (55752, 580, 130, 'attending', '2020-05-22 18:34:35', '2025-12-17 19:47:57', 'ydwen00A', '3028781'), + (55753, 580, 133, 'maybe', '2020-06-19 18:22:33', '2025-12-17 19:47:58', 'ydwen00A', '3034321'), + (55754, 580, 134, 'attending', '2020-05-24 22:04:04', '2025-12-17 19:47:57', 'ydwen00A', '3034367'), + (55755, 580, 135, 'attending', '2020-05-25 00:23:43', '2025-12-17 19:47:57', 'ydwen00A', '3034368'), + (55756, 580, 136, 'attending', '2020-05-24 22:41:03', '2025-12-17 19:47:57', 'ydwen00A', '3035881'), + (55757, 580, 139, 'maybe', '2020-06-18 22:50:30', '2025-12-17 19:47:58', 'ydwen00A', '3046190'), + (55758, 580, 140, 'attending', '2020-06-01 02:26:48', '2025-12-17 19:47:57', 'ydwen00A', '3046980'), + (55759, 580, 142, 'attending', '2020-06-01 02:26:46', '2025-12-17 19:47:57', 'ydwen00A', '3049860'), + (55760, 580, 143, 'attending', '2020-06-07 22:18:23', '2025-12-17 19:47:58', 'ydwen00A', '3049983'), + (55761, 580, 168, 'attending', '2020-06-06 22:45:00', '2025-12-17 19:47:58', 'ydwen00A', '3058740'), + (55762, 580, 169, 'attending', '2020-06-15 22:45:00', '2025-12-17 19:47:58', 'ydwen00A', '3058741'), + (55763, 580, 170, 'attending', '2020-06-07 22:42:57', '2025-12-17 19:47:58', 'ydwen00A', '3058742'), + (55764, 580, 171, 'attending', '2020-06-06 22:45:34', '2025-12-17 19:47:58', 'ydwen00A', '3058743'), + (55765, 580, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'ydwen00A', '3058959'), + (55766, 580, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'ydwen00A', '3067093'), + (55767, 580, 174, 'attending', '2020-06-09 01:18:02', '2025-12-17 19:47:58', 'ydwen00A', '3067927'), + (55768, 580, 175, 'attending', '2020-06-17 22:14:19', '2025-12-17 19:47:58', 'ydwen00A', '3068305'), + (55769, 580, 176, 'attending', '2020-06-19 18:22:13', '2025-12-17 19:47:58', 'ydwen00A', '3073192'), + (55770, 580, 177, 'attending', '2020-06-17 22:14:15', '2025-12-17 19:47:58', 'ydwen00A', '3073193'), + (55771, 580, 179, 'attending', '2020-06-20 16:29:19', '2025-12-17 19:47:58', 'ydwen00A', '3073687'), + (55772, 580, 180, 'attending', '2020-06-18 22:58:29', '2025-12-17 19:47:58', 'ydwen00A', '3074048'), + (55773, 580, 181, 'maybe', '2020-06-19 18:21:55', '2025-12-17 19:47:58', 'ydwen00A', '3074513'), + (55774, 580, 182, 'attending', '2020-06-27 22:48:34', '2025-12-17 19:47:55', 'ydwen00A', '3074514'), + (55775, 580, 183, 'maybe', '2020-06-19 18:22:10', '2025-12-17 19:47:58', 'ydwen00A', '3075228'), + (55776, 580, 185, 'maybe', '2020-06-19 18:22:00', '2025-12-17 19:47:58', 'ydwen00A', '3075456'), + (55777, 580, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'ydwen00A', '3083791'), + (55778, 580, 187, 'maybe', '2020-06-19 18:22:44', '2025-12-17 19:47:55', 'ydwen00A', '3085151'), + (55779, 580, 190, 'attending', '2020-07-04 22:40:34', '2025-12-17 19:47:55', 'ydwen00A', '3087258'), + (55780, 580, 191, 'attending', '2020-07-05 04:39:21', '2025-12-17 19:47:55', 'ydwen00A', '3087259'), + (55781, 580, 192, 'attending', '2020-07-18 06:49:28', '2025-12-17 19:47:55', 'ydwen00A', '3087260'), + (55782, 580, 193, 'attending', '2020-07-25 06:37:25', '2025-12-17 19:47:55', 'ydwen00A', '3087261'), + (55783, 580, 194, 'attending', '2020-07-29 23:03:50', '2025-12-17 19:47:56', 'ydwen00A', '3087262'), + (55784, 580, 195, 'attending', '2020-08-02 22:13:49', '2025-12-17 19:47:56', 'ydwen00A', '3087264'), + (55785, 580, 196, 'attending', '2020-08-10 19:42:45', '2025-12-17 19:47:56', 'ydwen00A', '3087265'), + (55786, 580, 197, 'attending', '2020-08-15 22:33:56', '2025-12-17 19:47:56', 'ydwen00A', '3087266'), + (55787, 580, 198, 'attending', '2020-08-29 22:48:31', '2025-12-17 19:47:56', 'ydwen00A', '3087267'), + (55788, 580, 199, 'attending', '2020-08-29 22:55:14', '2025-12-17 19:47:56', 'ydwen00A', '3087268'), + (55789, 580, 201, 'attending', '2020-06-25 20:40:49', '2025-12-17 19:47:55', 'ydwen00A', '3088653'), + (55790, 580, 204, 'attending', '2020-06-29 03:57:48', '2025-12-17 19:47:55', 'ydwen00A', '3102758'), + (55791, 580, 205, 'attending', '2020-07-10 21:17:56', '2025-12-17 19:47:55', 'ydwen00A', '3104804'), + (55792, 580, 209, 'attending', '2020-07-01 18:52:33', '2025-12-17 19:47:55', 'ydwen00A', '3106813'), + (55793, 580, 212, 'attending', '2020-07-14 22:23:27', '2025-12-17 19:47:55', 'ydwen00A', '3118517'), + (55794, 580, 214, 'attending', '2020-07-08 21:59:47', '2025-12-17 19:47:55', 'ydwen00A', '3124139'), + (55795, 580, 216, 'attending', '2020-07-09 23:54:08', '2025-12-17 19:47:55', 'ydwen00A', '3126500'), + (55796, 580, 217, 'maybe', '2020-07-13 22:17:17', '2025-12-17 19:47:55', 'ydwen00A', '3126684'), + (55797, 580, 223, 'attending', '2020-09-05 17:34:33', '2025-12-17 19:47:56', 'ydwen00A', '3129980'), + (55798, 580, 225, 'attending', '2020-07-21 14:03:40', '2025-12-17 19:47:55', 'ydwen00A', '3132378'), + (55799, 580, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'ydwen00A', '3132817'), + (55800, 580, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'ydwen00A', '3132820'), + (55801, 580, 228, 'attending', '2020-07-13 20:24:55', '2025-12-17 19:47:55', 'ydwen00A', '3132821'), + (55802, 580, 231, 'attending', '2020-07-19 22:02:18', '2025-12-17 19:47:55', 'ydwen00A', '3139762'), + (55803, 580, 265, 'attending', '2020-07-28 00:09:38', '2025-12-17 19:47:55', 'ydwen00A', '3150806'), + (55804, 580, 269, 'attending', '2020-07-28 23:58:56', '2025-12-17 19:47:55', 'ydwen00A', '3153076'), + (55805, 580, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'ydwen00A', '3155321'), + (55806, 580, 272, 'attending', '2020-08-03 19:43:29', '2025-12-17 19:47:56', 'ydwen00A', '3161472'), + (55807, 580, 273, 'attending', '2020-08-04 04:48:10', '2025-12-17 19:47:56', 'ydwen00A', '3162006'), + (55808, 580, 277, 'attending', '2020-08-03 21:10:40', '2025-12-17 19:47:56', 'ydwen00A', '3163442'), + (55809, 580, 278, 'attending', '2020-08-10 19:43:15', '2025-12-17 19:47:56', 'ydwen00A', '3165192'), + (55810, 580, 281, 'attending', '2020-08-07 19:45:34', '2025-12-17 19:47:56', 'ydwen00A', '3166945'), + (55811, 580, 283, 'attending', '2020-08-06 22:26:44', '2025-12-17 19:47:56', 'ydwen00A', '3169555'), + (55812, 580, 284, 'attending', '2020-08-06 22:26:42', '2025-12-17 19:47:56', 'ydwen00A', '3169556'), + (55813, 580, 287, 'attending', '2020-08-28 21:10:03', '2025-12-17 19:47:56', 'ydwen00A', '3170247'), + (55814, 580, 291, 'maybe', '2020-09-09 15:06:10', '2025-12-17 19:47:56', 'ydwen00A', '3170252'), + (55815, 580, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'ydwen00A', '3172832'), + (55816, 580, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'ydwen00A', '3172833'), + (55817, 580, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'ydwen00A', '3172834'), + (55818, 580, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'ydwen00A', '3172876'), + (55819, 580, 301, 'maybe', '2020-08-27 15:55:19', '2025-12-17 19:47:56', 'ydwen00A', '3178027'), + (55820, 580, 307, 'attending', '2020-08-20 09:41:40', '2025-12-17 19:47:56', 'ydwen00A', '3182590'), + (55821, 580, 311, 'attending', '2020-09-12 01:05:56', '2025-12-17 19:47:56', 'ydwen00A', '3186057'), + (55822, 580, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'ydwen00A', '3191735'), + (55823, 580, 318, 'attending', '2020-08-30 03:16:21', '2025-12-17 19:47:56', 'ydwen00A', '3193885'), + (55824, 580, 319, 'attending', '2020-08-31 22:24:21', '2025-12-17 19:47:56', 'ydwen00A', '3194179'), + (55825, 580, 322, 'not_attending', '2020-09-13 23:33:13', '2025-12-17 19:47:56', 'ydwen00A', '3197080'), + (55826, 580, 323, 'not_attending', '2020-09-13 23:33:23', '2025-12-17 19:47:56', 'ydwen00A', '3197081'), + (55827, 580, 325, 'attending', '2020-09-23 23:34:52', '2025-12-17 19:47:51', 'ydwen00A', '3197083'), + (55828, 580, 326, 'attending', '2020-09-25 22:50:41', '2025-12-17 19:47:52', 'ydwen00A', '3197084'), + (55829, 580, 327, 'maybe', '2020-09-21 05:21:26', '2025-12-17 19:47:52', 'ydwen00A', '3197085'), + (55830, 580, 328, 'maybe', '2020-09-21 05:21:34', '2025-12-17 19:47:52', 'ydwen00A', '3197086'), + (55831, 580, 329, 'maybe', '2020-09-25 23:18:49', '2025-12-17 19:47:52', 'ydwen00A', '3197087'), + (55832, 580, 332, 'not_attending', '2020-09-09 15:05:43', '2025-12-17 19:47:56', 'ydwen00A', '3198873'), + (55833, 580, 333, 'attending', '2020-10-06 22:50:15', '2025-12-17 19:47:52', 'ydwen00A', '3199782'), + (55834, 580, 334, 'maybe', '2020-10-02 02:13:59', '2025-12-17 19:47:52', 'ydwen00A', '3199784'), + (55835, 580, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'ydwen00A', '3200209'), + (55836, 580, 336, 'not_attending', '2020-09-13 23:33:07', '2025-12-17 19:47:56', 'ydwen00A', '3200495'), + (55837, 580, 337, 'maybe', '2020-09-09 15:05:51', '2025-12-17 19:47:56', 'ydwen00A', '3201771'), + (55838, 580, 343, 'maybe', '2020-09-21 05:20:50', '2025-12-17 19:47:56', 'ydwen00A', '3206759'), + (55839, 580, 344, 'attending', '2020-10-02 02:14:29', '2025-12-17 19:47:53', 'ydwen00A', '3206906'), + (55840, 580, 347, 'maybe', '2020-09-21 05:20:59', '2025-12-17 19:47:51', 'ydwen00A', '3207930'), + (55841, 580, 350, 'attending', '2020-09-12 19:53:09', '2025-12-17 19:47:56', 'ydwen00A', '3209255'), + (55842, 580, 351, 'not_attending', '2020-09-13 23:33:17', '2025-12-17 19:47:56', 'ydwen00A', '3209257'), + (55843, 580, 358, 'attending', '2020-09-19 16:28:15', '2025-12-17 19:47:56', 'ydwen00A', '3212579'), + (55844, 580, 362, 'attending', '2020-09-25 23:18:21', '2025-12-17 19:47:52', 'ydwen00A', '3214207'), + (55845, 580, 363, 'maybe', '2020-09-21 05:21:23', '2025-12-17 19:47:52', 'ydwen00A', '3217037'), + (55846, 580, 364, 'attending', '2020-09-21 21:47:43', '2025-12-17 19:47:56', 'ydwen00A', '3217106'), + (55847, 580, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'ydwen00A', '3218510'), + (55848, 580, 368, 'maybe', '2020-09-25 23:18:40', '2025-12-17 19:47:52', 'ydwen00A', '3221403'), + (55849, 580, 369, 'maybe', '2020-10-02 02:13:45', '2025-12-17 19:47:52', 'ydwen00A', '3221404'), + (55850, 580, 370, 'maybe', '2020-10-02 02:13:48', '2025-12-17 19:47:52', 'ydwen00A', '3221405'), + (55851, 580, 371, 'maybe', '2020-10-02 02:13:56', '2025-12-17 19:47:52', 'ydwen00A', '3221406'), + (55852, 580, 372, 'maybe', '2020-10-02 02:13:41', '2025-12-17 19:47:52', 'ydwen00A', '3221407'), + (55853, 580, 373, 'maybe', '2020-10-02 02:14:23', '2025-12-17 19:47:52', 'ydwen00A', '3221413'), + (55854, 580, 374, 'maybe', '2020-10-02 02:14:13', '2025-12-17 19:47:53', 'ydwen00A', '3221415'), + (55855, 580, 376, 'maybe', '2020-10-02 02:13:53', '2025-12-17 19:47:52', 'ydwen00A', '3222827'), + (55856, 580, 377, 'maybe', '2020-10-02 02:14:15', '2025-12-17 19:47:53', 'ydwen00A', '3222828'), + (55857, 580, 382, 'attending', '2020-10-02 02:12:10', '2025-12-17 19:47:52', 'ydwen00A', '3226873'), + (55858, 580, 385, 'attending', '2020-10-02 02:11:31', '2025-12-17 19:47:52', 'ydwen00A', '3228698'), + (55859, 580, 386, 'attending', '2020-10-10 17:09:32', '2025-12-17 19:47:52', 'ydwen00A', '3228699'), + (55860, 580, 387, 'attending', '2020-10-16 18:36:37', '2025-12-17 19:47:52', 'ydwen00A', '3228700'), + (55861, 580, 388, 'attending', '2020-10-02 02:11:47', '2025-12-17 19:47:52', 'ydwen00A', '3228701'), + (55862, 580, 390, 'attending', '2020-10-02 02:12:22', '2025-12-17 19:47:52', 'ydwen00A', '3231510'), + (55863, 580, 413, 'maybe', '2020-10-12 17:25:49', '2025-12-17 19:47:52', 'ydwen00A', '3236670'), + (55864, 580, 414, 'attending', '2020-10-16 18:39:53', '2025-12-17 19:47:52', 'ydwen00A', '3237277'), + (55865, 580, 416, 'attending', '2020-10-09 21:22:31', '2025-12-17 19:47:52', 'ydwen00A', '3238073'), + (55866, 580, 419, 'maybe', '2020-10-12 17:25:29', '2025-12-17 19:47:52', 'ydwen00A', '3242234'), + (55867, 580, 424, 'maybe', '2020-10-12 17:25:13', '2025-12-17 19:47:52', 'ydwen00A', '3245751'), + (55868, 580, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'ydwen00A', '3250232'), + (55869, 580, 427, 'attending', '2020-10-28 20:08:18', '2025-12-17 19:47:53', 'ydwen00A', '3250233'), + (55870, 580, 432, 'maybe', '2020-11-03 16:18:19', '2025-12-17 19:47:53', 'ydwen00A', '3254416'), + (55871, 580, 433, 'maybe', '2020-11-03 16:18:23', '2025-12-17 19:47:53', 'ydwen00A', '3254417'), + (55872, 580, 434, 'maybe', '2020-11-03 16:18:35', '2025-12-17 19:47:53', 'ydwen00A', '3254418'), + (55873, 580, 437, 'attending', '2020-10-28 20:07:45', '2025-12-17 19:47:53', 'ydwen00A', '3256160'), + (55874, 580, 438, 'not_attending', '2020-11-01 02:03:01', '2025-12-17 19:47:53', 'ydwen00A', '3256163'), + (55875, 580, 440, 'maybe', '2020-11-03 16:18:10', '2025-12-17 19:47:53', 'ydwen00A', '3256168'), + (55876, 580, 441, 'maybe', '2020-11-03 16:18:14', '2025-12-17 19:47:54', 'ydwen00A', '3256169'), + (55877, 580, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'ydwen00A', '3263578'), + (55878, 580, 452, 'attending', '2020-11-03 16:18:42', '2025-12-17 19:47:54', 'ydwen00A', '3272981'), + (55879, 580, 453, 'maybe', '2020-11-03 16:18:31', '2025-12-17 19:47:54', 'ydwen00A', '3274032'), + (55880, 580, 456, 'attending', '2020-11-05 18:30:47', '2025-12-17 19:47:54', 'ydwen00A', '3276428'), + (55881, 580, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ydwen00A', '3281467'), + (55882, 580, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'ydwen00A', '3281470'), + (55883, 580, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'ydwen00A', '3281829'), + (55884, 580, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'ydwen00A', '3285413'), + (55885, 580, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'ydwen00A', '3285414'), + (55886, 580, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'ydwen00A', '3297764'), + (55887, 580, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'ydwen00A', '3313856'), + (55888, 580, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ydwen00A', '3314909'), + (55889, 580, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ydwen00A', '3314964'), + (55890, 580, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ydwen00A', '3323365'), + (55891, 580, 508, 'attending', '2021-01-12 00:03:43', '2025-12-17 19:47:48', 'ydwen00A', '3324231'), + (55892, 580, 509, 'not_attending', '2021-01-18 23:14:30', '2025-12-17 19:47:49', 'ydwen00A', '3324232'), + (55893, 580, 510, 'attending', '2021-01-29 23:42:27', '2025-12-17 19:47:49', 'ydwen00A', '3324233'), + (55894, 580, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'ydwen00A', '3329383'), + (55895, 580, 516, 'attending', '2020-12-25 07:14:39', '2025-12-17 19:47:48', 'ydwen00A', '3334530'), + (55896, 580, 521, 'attending', '2020-12-25 07:14:52', '2025-12-17 19:47:48', 'ydwen00A', '3337454'), + (55897, 580, 523, 'attending', '2020-12-25 07:43:51', '2025-12-17 19:47:48', 'ydwen00A', '3342960'), + (55898, 580, 526, 'attending', '2020-12-25 07:14:43', '2025-12-17 19:47:48', 'ydwen00A', '3351539'), + (55899, 580, 532, 'not_attending', '2021-01-08 00:18:45', '2025-12-17 19:47:48', 'ydwen00A', '3381412'), + (55900, 580, 536, 'attending', '2021-01-10 00:34:46', '2025-12-17 19:47:48', 'ydwen00A', '3386848'), + (55901, 580, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ydwen00A', '3389527'), + (55902, 580, 542, 'attending', '2021-01-12 00:04:13', '2025-12-17 19:47:48', 'ydwen00A', '3395013'), + (55903, 580, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ydwen00A', '3396499'), + (55904, 580, 544, 'not_attending', '2021-01-12 00:03:41', '2025-12-17 19:47:48', 'ydwen00A', '3396500'), + (55905, 580, 545, 'not_attending', '2021-01-12 00:04:16', '2025-12-17 19:47:49', 'ydwen00A', '3396502'), + (55906, 580, 546, 'not_attending', '2021-01-12 00:04:27', '2025-12-17 19:47:49', 'ydwen00A', '3396503'), + (55907, 580, 548, 'attending', '2021-01-12 00:04:04', '2025-12-17 19:47:48', 'ydwen00A', '3403650'), + (55908, 580, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ydwen00A', '3406988'), + (55909, 580, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'ydwen00A', '3408338'), + (55910, 580, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ydwen00A', '3416576'), + (55911, 580, 559, 'not_attending', '2021-01-28 05:10:15', '2025-12-17 19:47:49', 'ydwen00A', '3421439'), + (55912, 580, 565, 'attending', '2021-01-27 21:43:44', '2025-12-17 19:47:49', 'ydwen00A', '3426083'), + (55913, 580, 566, 'not_attending', '2021-01-29 00:43:17', '2025-12-17 19:47:50', 'ydwen00A', '3427928'), + (55914, 580, 568, 'attending', '2021-01-30 19:21:44', '2025-12-17 19:47:50', 'ydwen00A', '3430267'), + (55915, 580, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ydwen00A', '3517816'), + (55916, 580, 639, 'not_attending', '2021-03-07 04:16:32', '2025-12-17 19:47:51', 'ydwen00A', '3536656'), + (55917, 580, 644, 'attending', '2021-04-22 00:06:31', '2025-12-17 19:47:45', 'ydwen00A', '3539919'), + (55918, 580, 645, 'attending', '2021-05-08 17:48:57', '2025-12-17 19:47:46', 'ydwen00A', '3539920'), + (55919, 580, 646, 'attending', '2021-05-14 20:21:24', '2025-12-17 19:47:46', 'ydwen00A', '3539921'), + (55920, 580, 647, 'attending', '2021-05-22 20:39:10', '2025-12-17 19:47:46', 'ydwen00A', '3539922'), + (55921, 580, 648, 'attending', '2021-05-29 20:42:52', '2025-12-17 19:47:47', 'ydwen00A', '3539923'), + (55922, 580, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ydwen00A', '3539927'), + (55923, 580, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ydwen00A', '3582734'), + (55924, 580, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ydwen00A', '3583262'), + (55925, 580, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydwen00A', '3619523'), + (55926, 580, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydwen00A', '3661369'), + (55927, 580, 725, 'maybe', '2021-05-23 19:58:08', '2025-12-17 19:47:47', 'ydwen00A', '3661372'), + (55928, 580, 729, 'attending', '2021-04-28 22:53:57', '2025-12-17 19:47:46', 'ydwen00A', '3668075'), + (55929, 580, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydwen00A', '3674262'), + (55930, 580, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydwen00A', '3677402'), + (55931, 580, 761, 'attending', '2021-05-14 20:21:47', '2025-12-17 19:47:46', 'ydwen00A', '3716041'), + (55932, 580, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydwen00A', '3730212'), + (55933, 580, 789, 'attending', '2021-05-30 06:35:26', '2025-12-17 19:47:47', 'ydwen00A', '3785818'), + (55934, 580, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydwen00A', '3793156'), + (55935, 580, 823, 'attending', '2021-06-13 21:45:30', '2025-12-17 19:47:48', 'ydwen00A', '3974109'), + (55936, 580, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydwen00A', '3975311'), + (55937, 580, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydwen00A', '3975312'), + (55938, 580, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydwen00A', '3994992'), + (55939, 580, 844, 'attending', '2021-06-23 21:53:43', '2025-12-17 19:47:38', 'ydwen00A', '4014338'), + (55940, 580, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ydwen00A', '4021848'), + (55941, 580, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ydwen00A', '4136744'), + (55942, 580, 870, 'attending', '2021-07-03 22:14:16', '2025-12-17 19:47:39', 'ydwen00A', '4136937'), + (55943, 580, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ydwen00A', '4136938'), + (55944, 580, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwen00A', '4136947'), + (55945, 580, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ydwen00A', '4210314'), + (55946, 580, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwen00A', '4225444'), + (55947, 580, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydwen00A', '4239259'), + (55948, 580, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ydwen00A', '4240316'), + (55949, 580, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ydwen00A', '4240317'), + (55950, 580, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ydwen00A', '4240318'), + (55951, 580, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ydwen00A', '4240320'), + (55952, 580, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ydwen00A', '4250163'), + (55953, 580, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ydwen00A', '4275957'), + (55954, 580, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydwen00A', '4277819'), + (55955, 580, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydwen00A', '4301723'), + (55956, 580, 934, 'attending', '2021-08-04 16:42:35', '2025-12-17 19:47:40', 'ydwen00A', '4302093'), + (55957, 580, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydwen00A', '4304151'), + (55958, 580, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ydwen00A', '4356801'), + (55959, 580, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ydwen00A', '4366186'), + (55960, 580, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ydwen00A', '4366187'), + (55961, 580, 976, 'attending', '2021-08-19 21:35:17', '2025-12-17 19:47:42', 'ydwen00A', '4373933'), + (55962, 580, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ydwen00A', '4420735'), + (55963, 580, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ydwen00A', '4420738'), + (55964, 580, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ydwen00A', '4420739'), + (55965, 580, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ydwen00A', '4420741'), + (55966, 580, 994, 'attending', '2021-10-02 22:26:00', '2025-12-17 19:47:34', 'ydwen00A', '4420742'), + (55967, 580, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ydwen00A', '4420744'), + (55968, 580, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ydwen00A', '4420747'), + (55969, 580, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ydwen00A', '4420748'), + (55970, 580, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ydwen00A', '4420749'), + (55971, 580, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ydwen00A', '4461883'), + (55972, 580, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ydwen00A', '4508342'), + (55973, 580, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ydwen00A', '4568602'), + (55974, 580, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ydwen00A', '4572153'), + (55975, 580, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'ydwen00A', '4585962'), + (55976, 580, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ydwen00A', '4596356'), + (55977, 580, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ydwen00A', '4598860'), + (55978, 580, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ydwen00A', '4598861'), + (55979, 580, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ydwen00A', '4602797'), + (55980, 580, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ydwen00A', '4637896'), + (55981, 580, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ydwen00A', '4642994'), + (55982, 580, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'ydwen00A', '4642995'), + (55983, 580, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ydwen00A', '4642996'), + (55984, 580, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ydwen00A', '4642997'), + (55985, 580, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ydwen00A', '4645687'), + (55986, 580, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ydwen00A', '4645698'), + (55987, 580, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ydwen00A', '4645704'), + (55988, 580, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ydwen00A', '4645705'), + (55989, 580, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ydwen00A', '4668385'), + (55990, 580, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ydwen00A', '4694407'), + (55991, 580, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ydwen00A', '4736497'), + (55992, 580, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ydwen00A', '4736499'), + (55993, 580, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ydwen00A', '4736500'), + (55994, 580, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ydwen00A', '4736503'), + (55995, 580, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ydwen00A', '4736504'), + (55996, 580, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ydwen00A', '4746789'), + (55997, 580, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'ydwen00A', '4753929'), + (55998, 580, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ydwen00A', '5038850'), + (55999, 580, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ydwen00A', '5045826'), + (56000, 580, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ydwen00A', '5132533'), + (56001, 580, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ydwen00A', '5186582'), + (56002, 580, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ydwen00A', '5186583'), + (56003, 580, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ydwen00A', '5186585'), + (56004, 580, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ydwen00A', '5190437'), + (56005, 580, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'ydwen00A', '5195095'), + (56006, 580, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ydwen00A', '5215989'), + (56007, 580, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'ydwen00A', '5223686'), + (56008, 580, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'ydwen00A', '5247467'), + (56009, 580, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'ydwen00A', '5260800'), + (56010, 580, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'ydwen00A', '5269930'), + (56011, 580, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'ydwen00A', '5271448'), + (56012, 580, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'ydwen00A', '5271449'), + (56013, 580, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ydwen00A', '5278159'), + (56014, 580, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ydwen00A', '5363695'), + (56015, 580, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ydwen00A', '5365960'), + (56016, 580, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ydwen00A', '5378247'), + (56017, 580, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ydwen00A', '5389605'), + (56018, 580, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'ydwen00A', '5397265'), + (56019, 580, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ydwen00A', '5404786'), + (56020, 580, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ydwen00A', '5405203'), + (56021, 580, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ydwen00A', '5412550'), + (56022, 580, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ydwen00A', '5415046'), + (56023, 580, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ydwen00A', '5422086'), + (56024, 580, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ydwen00A', '5422406'), + (56025, 580, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ydwen00A', '5424565'), + (56026, 580, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ydwen00A', '5426882'), + (56027, 580, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ydwen00A', '5441125'), + (56028, 580, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ydwen00A', '5441126'), + (56029, 580, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ydwen00A', '5441128'), + (56030, 580, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ydwen00A', '5441131'), + (56031, 580, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'ydwen00A', '5441132'), + (56032, 580, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ydwen00A', '5453325'), + (56033, 580, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ydwen00A', '5454516'), + (56034, 580, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ydwen00A', '5454605'), + (56035, 580, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ydwen00A', '5455037'), + (56036, 580, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ydwen00A', '5461278'), + (56037, 580, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ydwen00A', '5469480'), + (56038, 580, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ydwen00A', '5474663'), + (56039, 580, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ydwen00A', '5482022'), + (56040, 580, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ydwen00A', '5488912'), + (56041, 580, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ydwen00A', '5492192'), + (56042, 580, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ydwen00A', '5493139'), + (56043, 580, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ydwen00A', '5493200'), + (56044, 580, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ydwen00A', '5502188'), + (56045, 580, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ydwen00A', '5505059'), + (56046, 580, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ydwen00A', '5509055'), + (56047, 580, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ydwen00A', '5512862'), + (56048, 580, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ydwen00A', '5513985'), + (56049, 580, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'ydwen00A', '5519981'), + (56050, 580, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ydwen00A', '5522550'), + (56051, 580, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ydwen00A', '5534683'), + (56052, 580, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'ydwen00A', '5537735'), + (56053, 580, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ydwen00A', '5540859'), + (56054, 580, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ydwen00A', '5546619'), + (56055, 580, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ydwen00A', '5557747'), + (56056, 580, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ydwen00A', '5560255'), + (56057, 580, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ydwen00A', '5562906'), + (56058, 580, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ydwen00A', '5600604'), + (56059, 580, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ydwen00A', '5605544'), + (56060, 580, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ydwen00A', '5630960'), + (56061, 580, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ydwen00A', '5630961'), + (56062, 580, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ydwen00A', '5630962'), + (56063, 580, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ydwen00A', '5630966'), + (56064, 580, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ydwen00A', '5630967'), + (56065, 580, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ydwen00A', '5630968'), + (56066, 580, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ydwen00A', '5635406'), + (56067, 580, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ydwen00A', '5638765'), + (56068, 580, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ydwen00A', '5640097'), + (56069, 580, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ydwen00A', '5640843'), + (56070, 580, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ydwen00A', '5641521'), + (56071, 580, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ydwen00A', '5642818'), + (56072, 580, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ydwen00A', '5652395'), + (56073, 580, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ydwen00A', '5670445'), + (56074, 580, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ydwen00A', '5671637'), + (56075, 580, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ydwen00A', '5672329'), + (56076, 580, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ydwen00A', '5674057'), + (56077, 580, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ydwen00A', '5674060'), + (56078, 580, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ydwen00A', '5677461'), + (56079, 580, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ydwen00A', '5698046'), + (56080, 580, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ydwen00A', '5699760'), + (56081, 580, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ydwen00A', '5741601'), + (56082, 580, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ydwen00A', '5763458'), + (56083, 580, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ydwen00A', '5774172'), + (56084, 580, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'ydwen00A', '5818247'), + (56085, 580, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ydwen00A', '5819471'), + (56086, 580, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'ydwen00A', '5827739'), + (56087, 580, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ydwen00A', '5844306'), + (56088, 580, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ydwen00A', '5850159'), + (56089, 580, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ydwen00A', '5858999'), + (56090, 580, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ydwen00A', '5871984'), + (56091, 580, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ydwen00A', '5876354'), + (56092, 580, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'ydwen00A', '5880939'), + (56093, 580, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'ydwen00A', '5880940'), + (56094, 580, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'ydwen00A', '5880942'), + (56095, 580, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'ydwen00A', '5880943'), + (56096, 580, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ydwen00A', '5887890'), + (56097, 580, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ydwen00A', '5888598'), + (56098, 580, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ydwen00A', '5893260'), + (56099, 580, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'ydwen00A', '5899826'), + (56100, 580, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'ydwen00A', '5900199'), + (56101, 580, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'ydwen00A', '5900200'), + (56102, 580, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ydwen00A', '5900202'), + (56103, 580, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ydwen00A', '5900203'), + (56104, 580, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'ydwen00A', '5901108'), + (56105, 580, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'ydwen00A', '5901126'), + (56106, 580, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'ydwen00A', '5901606'), + (56107, 580, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'ydwen00A', '5909655'), + (56108, 580, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'ydwen00A', '5910522'), + (56109, 580, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'ydwen00A', '5910526'), + (56110, 580, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'ydwen00A', '5910528'), + (56111, 580, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'ydwen00A', '5916219'), + (56112, 580, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'ydwen00A', '5936234'), + (56113, 580, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'ydwen00A', '5958351'), + (56114, 580, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'ydwen00A', '5959751'), + (56115, 580, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'ydwen00A', '5959755'), + (56116, 580, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'ydwen00A', '5960055'), + (56117, 580, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'ydwen00A', '5961684'), + (56118, 580, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'ydwen00A', '5962132'), + (56119, 580, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'ydwen00A', '5962133'), + (56120, 580, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'ydwen00A', '5962134'), + (56121, 580, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'ydwen00A', '5962317'), + (56122, 580, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'ydwen00A', '5962318'), + (56123, 580, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ydwen00A', '5965933'), + (56124, 580, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'ydwen00A', '5967014'), + (56125, 580, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'ydwen00A', '5972815'), + (56126, 580, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'ydwen00A', '5974016'), + (56127, 580, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ydwen00A', '5981515'), + (56128, 580, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ydwen00A', '5993516'), + (56129, 580, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ydwen00A', '5998939'), + (56130, 580, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ydwen00A', '6028191'), + (56131, 580, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ydwen00A', '6040066'), + (56132, 580, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ydwen00A', '6042717'), + (56133, 580, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ydwen00A', '6044838'), + (56134, 580, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ydwen00A', '6044839'), + (56135, 580, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwen00A', '6045684'), + (56136, 580, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ydwen00A', '6050104'), + (56137, 580, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ydwen00A', '6053195'), + (56138, 580, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ydwen00A', '6053198'), + (56139, 580, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ydwen00A', '6056085'), + (56140, 580, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ydwen00A', '6056916'), + (56141, 580, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ydwen00A', '6059290'), + (56142, 580, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ydwen00A', '6060328'), + (56143, 580, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ydwen00A', '6061037'), + (56144, 580, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ydwen00A', '6061039'), + (56145, 580, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ydwen00A', '6067245'), + (56146, 580, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ydwen00A', '6068094'), + (56147, 580, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ydwen00A', '6068252'), + (56148, 580, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ydwen00A', '6068253'), + (56149, 580, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ydwen00A', '6068254'), + (56150, 580, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ydwen00A', '6068280'), + (56151, 580, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ydwen00A', '6069093'), + (56152, 580, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ydwen00A', '6072528'), + (56153, 580, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ydwen00A', '6079840'), + (56154, 580, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ydwen00A', '6083398'), + (56155, 580, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ydwen00A', '6093504'), + (56156, 580, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ydwen00A', '6097414'), + (56157, 580, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ydwen00A', '6097442'), + (56158, 580, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ydwen00A', '6097684'), + (56159, 580, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ydwen00A', '6098762'), + (56160, 580, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'ydwen00A', '6101361'), + (56161, 580, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ydwen00A', '6101362'), + (56162, 580, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ydwen00A', '6107314'), + (56163, 580, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ydwen00A', '6120034'), + (56164, 580, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'ydwen00A', '6136733'), + (56165, 580, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'ydwen00A', '6137989'), + (56166, 580, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'ydwen00A', '6150864'), + (56167, 580, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'ydwen00A', '6155491'), + (56168, 580, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'ydwen00A', '6164417'), + (56169, 580, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'ydwen00A', '6166388'), + (56170, 580, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'ydwen00A', '6176439'), + (56171, 580, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'ydwen00A', '6182410'), + (56172, 580, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'ydwen00A', '6185812'), + (56173, 580, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'ydwen00A', '6187651'), + (56174, 580, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'ydwen00A', '6187963'), + (56175, 580, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'ydwen00A', '6187964'), + (56176, 580, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'ydwen00A', '6187966'), + (56177, 580, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'ydwen00A', '6187967'), + (56178, 580, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'ydwen00A', '6187969'), + (56179, 580, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'ydwen00A', '6334878'), + (56180, 580, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'ydwen00A', '6337236'), + (56181, 580, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'ydwen00A', '6337970'), + (56182, 580, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'ydwen00A', '6338308'), + (56183, 580, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'ydwen00A', '6341710'), + (56184, 580, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'ydwen00A', '6342044'), + (56185, 580, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'ydwen00A', '6342298'), + (56186, 580, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'ydwen00A', '6343294'), + (56187, 580, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'ydwen00A', '6347034'), + (56188, 580, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'ydwen00A', '6347056'), + (56189, 580, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'ydwen00A', '6353830'), + (56190, 580, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'ydwen00A', '6353831'), + (56191, 580, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'ydwen00A', '6357867'), + (56192, 580, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'ydwen00A', '6358652'), + (56193, 580, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'ydwen00A', '6361709'), + (56194, 580, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'ydwen00A', '6361710'), + (56195, 580, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'ydwen00A', '6361711'), + (56196, 580, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'ydwen00A', '6361712'), + (56197, 580, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'ydwen00A', '6361713'), + (56198, 580, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'ydwen00A', '6382573'), + (56199, 580, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'ydwen00A', '6388604'), + (56200, 580, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'ydwen00A', '6394629'), + (56201, 580, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'ydwen00A', '6394631'), + (56202, 580, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'ydwen00A', '6440863'), + (56203, 580, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'ydwen00A', '6445440'), + (56204, 580, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'ydwen00A', '6453951'), + (56205, 580, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'ydwen00A', '6461696'), + (56206, 580, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'ydwen00A', '6462129'), + (56207, 580, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'ydwen00A', '6463218'), + (56208, 580, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'ydwen00A', '6472181'), + (56209, 580, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'ydwen00A', '6482693'), + (56210, 580, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'ydwen00A', '6484200'), + (56211, 580, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'ydwen00A', '6484680'), + (56212, 580, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'ydwen00A', '6507741'), + (56213, 580, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'ydwen00A', '6514659'), + (56214, 580, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'ydwen00A', '6514660'), + (56215, 580, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'ydwen00A', '6519103'), + (56216, 580, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'ydwen00A', '6535681'), + (56217, 580, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'ydwen00A', '6584747'), + (56218, 580, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'ydwen00A', '6587097'), + (56219, 580, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'ydwen00A', '6609022'), + (56220, 580, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'ydwen00A', '6632757'), + (56221, 580, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'ydwen00A', '6644187'), + (56222, 580, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'ydwen00A', '6648951'), + (56223, 580, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'ydwen00A', '6648952'), + (56224, 580, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'ydwen00A', '6655401'), + (56225, 580, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'ydwen00A', '6661585'), + (56226, 580, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'ydwen00A', '6661588'), + (56227, 580, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'ydwen00A', '6661589'), + (56228, 580, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'ydwen00A', '6699906'), + (56229, 580, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'ydwen00A', '6699913'), + (56230, 580, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'ydwen00A', '6701109'), + (56231, 580, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'ydwen00A', '6705219'), + (56232, 580, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'ydwen00A', '6710153'), + (56233, 580, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'ydwen00A', '6711552'), + (56234, 580, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'ydwen00A', '6711553'), + (56235, 580, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'ydwen00A', '6722688'), + (56236, 580, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'ydwen00A', '6730620'), + (56237, 580, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'ydwen00A', '6740364'), + (56238, 580, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'ydwen00A', '6743829'), + (56239, 580, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'ydwen00A', '7030380'), + (56240, 580, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'ydwen00A', '7033677'), + (56241, 580, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'ydwen00A', '7044715'), + (56242, 580, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'ydwen00A', '7050318'), + (56243, 580, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'ydwen00A', '7050319'), + (56244, 580, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'ydwen00A', '7050322'), + (56245, 580, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'ydwen00A', '7057804'), + (56246, 580, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'ydwen00A', '7072824'), + (56247, 580, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'ydwen00A', '7074348'), + (56248, 580, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ydwen00A', '7074364'), + (56249, 580, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'ydwen00A', '7089267'), + (56250, 580, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'ydwen00A', '7098747'), + (56251, 580, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'ydwen00A', '7113468'), + (56252, 580, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'ydwen00A', '7114856'), + (56253, 580, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'ydwen00A', '7114951'), + (56254, 580, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'ydwen00A', '7114955'), + (56255, 580, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'ydwen00A', '7114956'), + (56256, 580, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ydwen00A', '7114957'), + (56257, 580, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ydwen00A', '7159484'), + (56258, 580, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ydwen00A', '7178446'), + (56259, 580, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ydwen00A', '7220467'), + (56260, 580, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ydwen00A', '7240354'), + (56261, 580, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ydwen00A', '7251633'), + (56262, 580, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ydwen00A', '7324073'), + (56263, 580, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ydwen00A', '7324074'), + (56264, 580, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ydwen00A', '7324075'), + (56265, 580, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'ydwen00A', '7324078'), + (56266, 580, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'ydwen00A', '7324082'), + (56267, 580, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'ydwen00A', '7331457'), + (56268, 580, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'ydwen00A', '7363643'), + (56269, 580, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ydwen00A', '7368606'), + (56270, 580, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ydwen00A', '7397462'), + (56271, 580, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ydwen00A', '7424275'), + (56272, 580, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ydwen00A', '7432751'), + (56273, 580, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ydwen00A', '7432752'), + (56274, 580, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ydwen00A', '7432753'), + (56275, 580, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ydwen00A', '7432754'), + (56276, 580, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ydwen00A', '7432755'), + (56277, 580, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ydwen00A', '7432756'), + (56278, 580, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ydwen00A', '7432758'), + (56279, 580, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ydwen00A', '7432759'), + (56280, 580, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ydwen00A', '7433834'), + (56281, 580, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'ydwen00A', '7470197'), + (56282, 580, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ydwen00A', '7685613'), + (56283, 580, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ydwen00A', '7688194'), + (56284, 580, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ydwen00A', '7688196'), + (56285, 580, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ydwen00A', '7688289'), + (56286, 580, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ydwen00A', '7692763'), + (56287, 580, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ydwen00A', '7697552'), + (56288, 580, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ydwen00A', '7699878'), + (56289, 580, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ydwen00A', '7704043'), + (56290, 580, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ydwen00A', '7712467'), + (56291, 580, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ydwen00A', '7713585'), + (56292, 580, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ydwen00A', '7713586'), + (56293, 580, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ydwen00A', '7738518'), + (56294, 580, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ydwen00A', '7750636'), + (56295, 580, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ydwen00A', '7796540'), + (56296, 580, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ydwen00A', '7796541'), + (56297, 580, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ydwen00A', '7796542'), + (56298, 580, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ydwen00A', '7825913'), + (56299, 580, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ydwen00A', '7826209'), + (56300, 580, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ydwen00A', '7834742'), + (56301, 580, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ydwen00A', '7842108'), + (56302, 580, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ydwen00A', '7842902'), + (56303, 580, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ydwen00A', '7842903'), + (56304, 580, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ydwen00A', '7842904'), + (56305, 580, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ydwen00A', '7842905'), + (56306, 580, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ydwen00A', '7855719'), + (56307, 580, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ydwen00A', '7860683'), + (56308, 580, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ydwen00A', '7860684'), + (56309, 580, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ydwen00A', '7866095'), + (56310, 580, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ydwen00A', '7869170'), + (56311, 580, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ydwen00A', '7869188'), + (56312, 580, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ydwen00A', '7869201'), + (56313, 580, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ydwen00A', '7877465'), + (56314, 580, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ydwen00A', '7888250'), + (56315, 580, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ydwen00A', '7904777'), + (56316, 580, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ydwen00A', '8349164'), + (56317, 580, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ydwen00A', '8349545'), + (56318, 580, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ydwen00A', '8368028'), + (56319, 580, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ydwen00A', '8368029'), + (56320, 580, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ydwen00A', '8388462'), + (56321, 580, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ydwen00A', '8400273'), + (56322, 580, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ydwen00A', '8400275'), + (56323, 580, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ydwen00A', '8400276'), + (56324, 580, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ydwen00A', '8404977'), + (56325, 580, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ydwen00A', '8430783'), + (56326, 580, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ydwen00A', '8430784'), + (56327, 580, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ydwen00A', '8430799'), + (56328, 580, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ydwen00A', '8430800'), + (56329, 580, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ydwen00A', '8430801'), + (56330, 580, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ydwen00A', '8438709'), + (56331, 580, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ydwen00A', '8457738'), + (56332, 580, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ydwen00A', '8459566'), + (56333, 580, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ydwen00A', '8459567'), + (56334, 580, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ydwen00A', '8461032'), + (56335, 580, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ydwen00A', '8477877'), + (56336, 580, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ydwen00A', '8485688'), + (56337, 580, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'ydwen00A', '8490587'), + (56338, 580, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'ydwen00A', '8493552'), + (56339, 580, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'ydwen00A', '8493553'), + (56340, 580, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'ydwen00A', '8493554'), + (56341, 580, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'ydwen00A', '8493555'), + (56342, 580, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'ydwen00A', '8493556'), + (56343, 580, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'ydwen00A', '8493557'), + (56344, 580, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'ydwen00A', '8493558'), + (56345, 580, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'ydwen00A', '8493559'), + (56346, 580, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'ydwen00A', '8493560'), + (56347, 580, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'ydwen00A', '8493561'), + (56348, 580, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'ydwen00A', '8493572'), + (56349, 580, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'ydwen00A', '8540725'), + (56350, 580, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ydwen00A', '8555421'), + (56351, 581, 410, 'attending', '2020-11-22 23:55:50', '2025-12-17 19:47:54', 'lAerOQ34', '3236469'), + (56352, 581, 429, 'not_attending', '2020-12-06 21:54:31', '2025-12-17 19:47:54', 'lAerOQ34', '3250523'), + (56353, 581, 469, 'attending', '2020-11-28 02:10:58', '2025-12-17 19:47:54', 'lAerOQ34', '3285414'), + (56354, 581, 477, 'attending', '2020-11-29 04:49:51', '2025-12-17 19:47:54', 'lAerOQ34', '3289559'), + (56355, 581, 490, 'attending', '2020-11-29 04:49:03', '2025-12-17 19:47:54', 'lAerOQ34', '3313532'), + (56356, 581, 491, 'attending', '2020-11-29 04:49:05', '2025-12-17 19:47:55', 'lAerOQ34', '3313533'), + (56357, 581, 492, 'attending', '2020-11-30 16:51:13', '2025-12-17 19:47:54', 'lAerOQ34', '3313731'), + (56358, 581, 493, 'not_attending', '2020-12-05 04:50:21', '2025-12-17 19:47:54', 'lAerOQ34', '3313856'), + (56359, 581, 495, 'not_attending', '2020-12-06 21:38:59', '2025-12-17 19:47:54', 'lAerOQ34', '3314009'), + (56360, 581, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'lAerOQ34', '3314909'), + (56361, 581, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'lAerOQ34', '3314964'), + (56362, 581, 502, 'attending', '2020-12-12 20:29:06', '2025-12-17 19:47:55', 'lAerOQ34', '3323365'), + (56363, 581, 503, 'attending', '2020-12-06 21:38:40', '2025-12-17 19:47:55', 'lAerOQ34', '3323366'), + (56364, 581, 504, 'attending', '2020-12-06 21:38:45', '2025-12-17 19:47:55', 'lAerOQ34', '3323368'), + (56365, 581, 505, 'attending', '2020-12-06 21:38:23', '2025-12-17 19:47:55', 'lAerOQ34', '3323369'), + (56366, 581, 506, 'maybe', '2020-12-13 04:32:52', '2025-12-17 19:47:55', 'lAerOQ34', '3323375'), + (56367, 581, 513, 'not_attending', '2020-12-19 17:30:40', '2025-12-17 19:47:55', 'lAerOQ34', '3329383'), + (56368, 581, 519, 'attending', '2020-12-14 23:48:29', '2025-12-17 19:47:55', 'lAerOQ34', '3337448'), + (56369, 581, 520, 'not_attending', '2020-12-20 19:10:29', '2025-12-17 19:47:55', 'lAerOQ34', '3337453'), + (56370, 581, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'lAerOQ34', '3351539'), + (56371, 581, 536, 'not_attending', '2021-01-09 21:30:53', '2025-12-17 19:47:48', 'lAerOQ34', '3386848'), + (56372, 581, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'lAerOQ34', '3389527'), + (56373, 581, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'lAerOQ34', '3396499'), + (56374, 581, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'lAerOQ34', '3403650'), + (56375, 581, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'lAerOQ34', '3406988'), + (56376, 581, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'lAerOQ34', '3408338'), + (56377, 581, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'lAerOQ34', '3416576'), + (56378, 581, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAerOQ34', '6045684'), + (56379, 582, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AnbvzkLA', '5195095'), + (56380, 582, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AnbvzkLA', '5223686'), + (56381, 582, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AnbvzkLA', '5227432'), + (56382, 582, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AnbvzkLA', '5247467'), + (56383, 582, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AnbvzkLA', '5260800'), + (56384, 582, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AnbvzkLA', '5269930'), + (56385, 582, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AnbvzkLA', '5271448'), + (56386, 582, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AnbvzkLA', '5271449'), + (56387, 582, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AnbvzkLA', '5276469'), + (56388, 582, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AnbvzkLA', '5278159'), + (56389, 582, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AnbvzkLA', '6045684'), + (56390, 583, 884, 'not_attending', '2021-08-13 22:24:14', '2025-12-17 19:47:42', 'Ae725qOd', '4210314'), + (56391, 583, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'Ae725qOd', '4315726'), + (56392, 583, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Ae725qOd', '4356801'), + (56393, 583, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Ae725qOd', '4366186'), + (56394, 583, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Ae725qOd', '4366187'), + (56395, 583, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Ae725qOd', '4420735'), + (56396, 583, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Ae725qOd', '4420738'), + (56397, 583, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'Ae725qOd', '4420739'), + (56398, 583, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Ae725qOd', '4420741'), + (56399, 583, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Ae725qOd', '4420744'), + (56400, 583, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Ae725qOd', '4420747'), + (56401, 583, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Ae725qOd', '4420748'), + (56402, 583, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Ae725qOd', '4420749'), + (56403, 583, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Ae725qOd', '4461883'), + (56404, 583, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Ae725qOd', '4508342'), + (56405, 583, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Ae725qOd', '6045684'), + (56406, 584, 410, 'attending', '2020-11-25 23:05:07', '2025-12-17 19:47:54', 'EdVaR3p4', '3236469'), + (56407, 584, 452, 'attending', '2020-11-27 18:09:52', '2025-12-17 19:47:54', 'EdVaR3p4', '3272981'), + (56408, 584, 465, 'not_attending', '2020-11-27 16:20:25', '2025-12-17 19:47:54', 'EdVaR3p4', '3281555'), + (56409, 584, 469, 'attending', '2020-11-25 23:05:20', '2025-12-17 19:47:54', 'EdVaR3p4', '3285414'), + (56410, 584, 475, 'attending', '2020-11-26 01:12:01', '2025-12-17 19:47:54', 'EdVaR3p4', '3286760'), + (56411, 584, 488, 'maybe', '2020-12-02 04:52:08', '2025-12-17 19:47:54', 'EdVaR3p4', '3312757'), + (56412, 584, 489, 'not_attending', '2020-11-28 02:27:34', '2025-12-17 19:47:54', 'EdVaR3p4', '3313022'), + (56413, 584, 493, 'attending', '2020-11-29 04:19:34', '2025-12-17 19:47:54', 'EdVaR3p4', '3313856'), + (56414, 584, 496, 'maybe', '2020-12-07 23:20:19', '2025-12-17 19:47:54', 'EdVaR3p4', '3314269'), + (56415, 584, 497, 'attending', '2020-12-02 04:52:54', '2025-12-17 19:47:55', 'EdVaR3p4', '3314270'), + (56416, 584, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'EdVaR3p4', '3314909'), + (56417, 584, 500, 'attending', '2020-12-17 22:45:58', '2025-12-17 19:47:55', 'EdVaR3p4', '3314964'), + (56418, 584, 501, 'maybe', '2020-12-07 23:20:12', '2025-12-17 19:47:54', 'EdVaR3p4', '3317834'), + (56419, 584, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'EdVaR3p4', '3323365'), + (56420, 584, 513, 'attending', '2020-12-17 22:46:07', '2025-12-17 19:47:55', 'EdVaR3p4', '3329383'), + (56421, 584, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'EdVaR3p4', '3351539'), + (56422, 584, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'EdVaR3p4', '3386848'), + (56423, 584, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'EdVaR3p4', '3389527'), + (56424, 584, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'EdVaR3p4', '3396499'), + (56425, 584, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'EdVaR3p4', '3403650'), + (56426, 584, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'EdVaR3p4', '3406988'), + (56427, 584, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'EdVaR3p4', '3416576'), + (56428, 584, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'EdVaR3p4', '3418925'), + (56429, 584, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'EdVaR3p4', '3426074'), + (56430, 584, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'EdVaR3p4', '3430267'), + (56431, 584, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'EdVaR3p4', '3470305'), + (56432, 584, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'EdVaR3p4', '3470991'), + (56433, 584, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'EdVaR3p4', '3517815'), + (56434, 584, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'EdVaR3p4', '3517816'), + (56435, 584, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'EdVaR3p4', '3523941'), + (56436, 584, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'EdVaR3p4', '3533850'), + (56437, 584, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'EdVaR3p4', '3536632'), + (56438, 584, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'EdVaR3p4', '3536656'), + (56439, 584, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'EdVaR3p4', '3539916'), + (56440, 584, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'EdVaR3p4', '3539917'), + (56441, 584, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'EdVaR3p4', '3539918'), + (56442, 584, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'EdVaR3p4', '3539919'), + (56443, 584, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'EdVaR3p4', '3539920'), + (56444, 584, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'EdVaR3p4', '3539921'), + (56445, 584, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'EdVaR3p4', '3539922'), + (56446, 584, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'EdVaR3p4', '3539923'), + (56447, 584, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'EdVaR3p4', '3539927'), + (56448, 584, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'EdVaR3p4', '3582734'), + (56449, 584, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'EdVaR3p4', '3583262'), + (56450, 584, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'EdVaR3p4', '3619523'), + (56451, 584, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'EdVaR3p4', '3661369'), + (56452, 584, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'EdVaR3p4', '3674262'), + (56453, 584, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'EdVaR3p4', '3677402'), + (56454, 584, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'EdVaR3p4', '3730212'), + (56455, 584, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'EdVaR3p4', '3793156'), + (56456, 584, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'EdVaR3p4', '3974109'), + (56457, 584, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'EdVaR3p4', '3975311'), + (56458, 584, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'EdVaR3p4', '3975312'), + (56459, 584, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'EdVaR3p4', '3994992'), + (56460, 584, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'EdVaR3p4', '4014338'), + (56461, 584, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'EdVaR3p4', '4021848'), + (56462, 584, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'EdVaR3p4', '4136744'), + (56463, 584, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'EdVaR3p4', '4136937'), + (56464, 584, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'EdVaR3p4', '4136938'), + (56465, 584, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'EdVaR3p4', '4136947'), + (56466, 584, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'EdVaR3p4', '4210314'), + (56467, 584, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'EdVaR3p4', '4225444'), + (56468, 584, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'EdVaR3p4', '4239259'), + (56469, 584, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'EdVaR3p4', '4240316'), + (56470, 584, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'EdVaR3p4', '4240317'), + (56471, 584, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'EdVaR3p4', '4240318'), + (56472, 584, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'EdVaR3p4', '4240320'), + (56473, 584, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'EdVaR3p4', '4250163'), + (56474, 584, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'EdVaR3p4', '4275957'), + (56475, 584, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'EdVaR3p4', '4277819'), + (56476, 584, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'EdVaR3p4', '4301723'), + (56477, 584, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'EdVaR3p4', '4302093'), + (56478, 584, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'EdVaR3p4', '4304151'), + (56479, 584, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'EdVaR3p4', '4356801'), + (56480, 584, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'EdVaR3p4', '4366186'), + (56481, 584, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'EdVaR3p4', '4366187'), + (56482, 584, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'EdVaR3p4', '4420735'), + (56483, 584, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'EdVaR3p4', '4420738'), + (56484, 584, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'EdVaR3p4', '4420739'), + (56485, 584, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'EdVaR3p4', '4420741'), + (56486, 584, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'EdVaR3p4', '4420744'), + (56487, 584, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'EdVaR3p4', '4420747'), + (56488, 584, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'EdVaR3p4', '4420748'), + (56489, 584, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'EdVaR3p4', '4420749'), + (56490, 584, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'EdVaR3p4', '4461883'), + (56491, 584, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'EdVaR3p4', '4508342'), + (56492, 584, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'EdVaR3p4', '4568602'), + (56493, 584, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'EdVaR3p4', '4572153'), + (56494, 584, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'EdVaR3p4', '4585962'), + (56495, 584, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'EdVaR3p4', '4596356'), + (56496, 584, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'EdVaR3p4', '4598860'), + (56497, 584, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'EdVaR3p4', '4598861'), + (56498, 584, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'EdVaR3p4', '4602797'), + (56499, 584, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'EdVaR3p4', '4637896'), + (56500, 584, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'EdVaR3p4', '4642994'), + (56501, 584, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'EdVaR3p4', '4642995'), + (56502, 584, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'EdVaR3p4', '4642996'), + (56503, 584, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'EdVaR3p4', '4642997'), + (56504, 584, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'EdVaR3p4', '4645687'), + (56505, 584, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'EdVaR3p4', '4645698'), + (56506, 584, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'EdVaR3p4', '4645704'), + (56507, 584, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'EdVaR3p4', '4645705'), + (56508, 584, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'EdVaR3p4', '4668385'), + (56509, 584, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'EdVaR3p4', '4694407'), + (56510, 584, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'EdVaR3p4', '4736497'), + (56511, 584, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'EdVaR3p4', '4736499'), + (56512, 584, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'EdVaR3p4', '4736500'), + (56513, 584, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'EdVaR3p4', '4736503'), + (56514, 584, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'EdVaR3p4', '4736504'), + (56515, 584, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'EdVaR3p4', '4746789'), + (56516, 584, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'EdVaR3p4', '4753929'), + (56517, 584, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'EdVaR3p4', '5038850'), + (56518, 584, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'EdVaR3p4', '5045826'), + (56519, 584, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'EdVaR3p4', '5132533'), + (56520, 584, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'EdVaR3p4', '5186582'), + (56521, 584, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'EdVaR3p4', '5186583'), + (56522, 584, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'EdVaR3p4', '5186585'), + (56523, 584, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'EdVaR3p4', '5190437'), + (56524, 584, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'EdVaR3p4', '5195095'), + (56525, 584, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'EdVaR3p4', '5215989'), + (56526, 584, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'EdVaR3p4', '5223686'), + (56527, 584, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'EdVaR3p4', '5247467'), + (56528, 584, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'EdVaR3p4', '5260800'), + (56529, 584, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'EdVaR3p4', '5269930'), + (56530, 584, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'EdVaR3p4', '5271448'), + (56531, 584, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'EdVaR3p4', '5271449'), + (56532, 584, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'EdVaR3p4', '5278159'), + (56533, 584, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'EdVaR3p4', '5363695'), + (56534, 584, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'EdVaR3p4', '5365960'), + (56535, 584, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'EdVaR3p4', '5378247'), + (56536, 584, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'EdVaR3p4', '5389605'), + (56537, 584, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'EdVaR3p4', '5397265'), + (56538, 584, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'EdVaR3p4', '5404786'), + (56539, 584, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'EdVaR3p4', '5405203'), + (56540, 584, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'EdVaR3p4', '5412550'), + (56541, 584, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'EdVaR3p4', '5415046'), + (56542, 584, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'EdVaR3p4', '5422086'), + (56543, 584, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'EdVaR3p4', '5422406'), + (56544, 584, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'EdVaR3p4', '5424565'), + (56545, 584, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'EdVaR3p4', '5426882'), + (56546, 584, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'EdVaR3p4', '5441125'), + (56547, 584, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'EdVaR3p4', '5441126'), + (56548, 584, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'EdVaR3p4', '5441128'), + (56549, 584, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'EdVaR3p4', '5441131'), + (56550, 584, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'EdVaR3p4', '5441132'), + (56551, 584, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'EdVaR3p4', '5453325'), + (56552, 584, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'EdVaR3p4', '5454516'), + (56553, 584, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'EdVaR3p4', '5454605'), + (56554, 584, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'EdVaR3p4', '5455037'), + (56555, 584, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'EdVaR3p4', '5461278'), + (56556, 584, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'EdVaR3p4', '5469480'), + (56557, 584, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'EdVaR3p4', '5474663'), + (56558, 584, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'EdVaR3p4', '5482022'), + (56559, 584, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'EdVaR3p4', '5488912'), + (56560, 584, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'EdVaR3p4', '5492192'), + (56561, 584, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'EdVaR3p4', '5493139'), + (56562, 584, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'EdVaR3p4', '5493200'), + (56563, 584, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'EdVaR3p4', '5502188'), + (56564, 584, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'EdVaR3p4', '5505059'), + (56565, 584, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'EdVaR3p4', '5509055'), + (56566, 584, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'EdVaR3p4', '5512862'), + (56567, 584, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'EdVaR3p4', '5513985'), + (56568, 584, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'EdVaR3p4', '5519981'), + (56569, 584, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'EdVaR3p4', '5522550'), + (56570, 584, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'EdVaR3p4', '5534683'), + (56571, 584, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'EdVaR3p4', '5537735'), + (56572, 584, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'EdVaR3p4', '5540859'), + (56573, 584, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'EdVaR3p4', '5546619'), + (56574, 584, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'EdVaR3p4', '5557747'), + (56575, 584, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'EdVaR3p4', '5560255'), + (56576, 584, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'EdVaR3p4', '5562906'), + (56577, 584, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'EdVaR3p4', '5600604'), + (56578, 584, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'EdVaR3p4', '5605544'), + (56579, 584, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'EdVaR3p4', '5630960'), + (56580, 584, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'EdVaR3p4', '5630961'), + (56581, 584, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'EdVaR3p4', '5630962'), + (56582, 584, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'EdVaR3p4', '5630966'), + (56583, 584, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'EdVaR3p4', '5630967'), + (56584, 584, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'EdVaR3p4', '5630968'), + (56585, 584, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'EdVaR3p4', '5635406'), + (56586, 584, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'EdVaR3p4', '5638765'), + (56587, 584, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'EdVaR3p4', '5640097'), + (56588, 584, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'EdVaR3p4', '5640843'), + (56589, 584, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'EdVaR3p4', '5641521'), + (56590, 584, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'EdVaR3p4', '5642818'), + (56591, 584, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'EdVaR3p4', '5652395'), + (56592, 584, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'EdVaR3p4', '5670445'), + (56593, 584, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'EdVaR3p4', '5671637'), + (56594, 584, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'EdVaR3p4', '5672329'), + (56595, 584, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'EdVaR3p4', '5674057'), + (56596, 584, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'EdVaR3p4', '5674060'), + (56597, 584, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'EdVaR3p4', '5677461'), + (56598, 584, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'EdVaR3p4', '5698046'), + (56599, 584, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'EdVaR3p4', '5699760'), + (56600, 584, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'EdVaR3p4', '5741601'), + (56601, 584, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'EdVaR3p4', '5763458'), + (56602, 584, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'EdVaR3p4', '5774172'), + (56603, 584, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'EdVaR3p4', '5818247'), + (56604, 584, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'EdVaR3p4', '5819471'), + (56605, 584, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'EdVaR3p4', '5827739'), + (56606, 584, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'EdVaR3p4', '5844306'), + (56607, 584, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'EdVaR3p4', '5850159'), + (56608, 584, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'EdVaR3p4', '5858999'), + (56609, 584, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'EdVaR3p4', '5871984'), + (56610, 584, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'EdVaR3p4', '5876354'), + (56611, 584, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'EdVaR3p4', '5880939'), + (56612, 584, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'EdVaR3p4', '5880940'), + (56613, 584, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'EdVaR3p4', '5880942'), + (56614, 584, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'EdVaR3p4', '5880943'), + (56615, 584, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'EdVaR3p4', '5887890'), + (56616, 584, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'EdVaR3p4', '5888598'), + (56617, 584, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'EdVaR3p4', '5893260'), + (56618, 584, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'EdVaR3p4', '5899826'), + (56619, 584, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'EdVaR3p4', '5900199'), + (56620, 584, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'EdVaR3p4', '5900200'), + (56621, 584, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'EdVaR3p4', '5900202'), + (56622, 584, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'EdVaR3p4', '5900203'), + (56623, 584, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'EdVaR3p4', '5901108'), + (56624, 584, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'EdVaR3p4', '5901126'), + (56625, 584, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'EdVaR3p4', '5901606'), + (56626, 584, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'EdVaR3p4', '5909655'), + (56627, 584, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'EdVaR3p4', '5910522'), + (56628, 584, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'EdVaR3p4', '5910526'), + (56629, 584, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'EdVaR3p4', '5910528'), + (56630, 584, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'EdVaR3p4', '5916219'), + (56631, 584, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'EdVaR3p4', '5936234'), + (56632, 584, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'EdVaR3p4', '5958351'), + (56633, 584, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'EdVaR3p4', '5959751'), + (56634, 584, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'EdVaR3p4', '5959755'), + (56635, 584, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'EdVaR3p4', '5960055'), + (56636, 584, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'EdVaR3p4', '5961684'), + (56637, 584, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'EdVaR3p4', '5962132'), + (56638, 584, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'EdVaR3p4', '5962133'), + (56639, 584, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'EdVaR3p4', '5962134'), + (56640, 584, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'EdVaR3p4', '5962317'), + (56641, 584, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'EdVaR3p4', '5962318'), + (56642, 584, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'EdVaR3p4', '5965933'), + (56643, 584, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'EdVaR3p4', '5967014'), + (56644, 584, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'EdVaR3p4', '5972815'), + (56645, 584, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'EdVaR3p4', '5974016'), + (56646, 584, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'EdVaR3p4', '5981515'), + (56647, 584, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'EdVaR3p4', '5993516'), + (56648, 584, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'EdVaR3p4', '5998939'), + (56649, 584, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'EdVaR3p4', '6028191'), + (56650, 584, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'EdVaR3p4', '6040066'), + (56651, 584, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'EdVaR3p4', '6042717'), + (56652, 584, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'EdVaR3p4', '6044838'), + (56653, 584, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'EdVaR3p4', '6044839'), + (56654, 584, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVaR3p4', '6045684'), + (56655, 584, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'EdVaR3p4', '6050104'), + (56656, 584, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'EdVaR3p4', '6053195'), + (56657, 584, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'EdVaR3p4', '6053198'), + (56658, 584, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'EdVaR3p4', '6056085'), + (56659, 584, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'EdVaR3p4', '6056916'), + (56660, 584, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'EdVaR3p4', '6059290'), + (56661, 584, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'EdVaR3p4', '6060328'), + (56662, 584, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'EdVaR3p4', '6061037'), + (56663, 584, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'EdVaR3p4', '6061039'), + (56664, 584, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'EdVaR3p4', '6067245'), + (56665, 584, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'EdVaR3p4', '6068094'), + (56666, 584, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'EdVaR3p4', '6068252'), + (56667, 584, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'EdVaR3p4', '6068253'), + (56668, 584, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'EdVaR3p4', '6068254'), + (56669, 584, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'EdVaR3p4', '6068280'), + (56670, 584, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'EdVaR3p4', '6069093'), + (56671, 584, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'EdVaR3p4', '6072528'), + (56672, 584, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'EdVaR3p4', '6079840'), + (56673, 584, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'EdVaR3p4', '6083398'), + (56674, 584, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'EdVaR3p4', '6093504'), + (56675, 584, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'EdVaR3p4', '6097414'), + (56676, 584, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'EdVaR3p4', '6097442'), + (56677, 584, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'EdVaR3p4', '6097684'), + (56678, 584, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'EdVaR3p4', '6098762'), + (56679, 584, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'EdVaR3p4', '6101361'), + (56680, 584, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'EdVaR3p4', '6101362'), + (56681, 584, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'EdVaR3p4', '6107314'), + (56682, 584, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'EdVaR3p4', '6120034'), + (56683, 584, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'EdVaR3p4', '6136733'), + (56684, 584, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'EdVaR3p4', '6137989'), + (56685, 584, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'EdVaR3p4', '6150864'), + (56686, 584, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'EdVaR3p4', '6155491'), + (56687, 584, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'EdVaR3p4', '6164417'), + (56688, 584, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'EdVaR3p4', '6166388'), + (56689, 584, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'EdVaR3p4', '6176439'), + (56690, 584, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'EdVaR3p4', '6182410'), + (56691, 584, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'EdVaR3p4', '6185812'), + (56692, 584, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'EdVaR3p4', '6187651'), + (56693, 584, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'EdVaR3p4', '6187963'), + (56694, 584, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'EdVaR3p4', '6187964'), + (56695, 584, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'EdVaR3p4', '6187966'), + (56696, 584, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'EdVaR3p4', '6187967'), + (56697, 584, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'EdVaR3p4', '6187969'), + (56698, 584, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'EdVaR3p4', '6334878'), + (56699, 584, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'EdVaR3p4', '6337236'), + (56700, 584, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'EdVaR3p4', '6337970'), + (56701, 584, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'EdVaR3p4', '6338308'), + (56702, 584, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'EdVaR3p4', '6341710'), + (56703, 584, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'EdVaR3p4', '6342044'), + (56704, 584, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'EdVaR3p4', '6342298'), + (56705, 584, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'EdVaR3p4', '6343294'), + (56706, 584, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'EdVaR3p4', '6347034'), + (56707, 584, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'EdVaR3p4', '6347056'), + (56708, 584, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'EdVaR3p4', '6353830'), + (56709, 584, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'EdVaR3p4', '6353831'), + (56710, 584, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'EdVaR3p4', '6357867'), + (56711, 584, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'EdVaR3p4', '6358652'), + (56712, 584, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'EdVaR3p4', '6361709'), + (56713, 584, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'EdVaR3p4', '6361710'), + (56714, 584, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'EdVaR3p4', '6361711'), + (56715, 584, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'EdVaR3p4', '6361712'), + (56716, 584, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'EdVaR3p4', '6361713'), + (56717, 584, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'EdVaR3p4', '6382573'), + (56718, 584, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'EdVaR3p4', '6388604'), + (56719, 584, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'EdVaR3p4', '6394629'), + (56720, 584, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'EdVaR3p4', '6394631'), + (56721, 584, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'EdVaR3p4', '6440863'), + (56722, 584, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'EdVaR3p4', '6445440'), + (56723, 584, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'EdVaR3p4', '6453951'), + (56724, 584, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'EdVaR3p4', '6461696'), + (56725, 584, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'EdVaR3p4', '6462129'), + (56726, 584, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'EdVaR3p4', '6463218'), + (56727, 584, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'EdVaR3p4', '6472181'), + (56728, 584, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'EdVaR3p4', '6482693'), + (56729, 584, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'EdVaR3p4', '6484200'), + (56730, 584, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'EdVaR3p4', '6484680'), + (56731, 584, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'EdVaR3p4', '6507741'), + (56732, 584, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'EdVaR3p4', '6514659'), + (56733, 584, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'EdVaR3p4', '6514660'), + (56734, 584, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'EdVaR3p4', '6519103'), + (56735, 584, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'EdVaR3p4', '6535681'), + (56736, 584, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'EdVaR3p4', '6584747'), + (56737, 584, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'EdVaR3p4', '6587097'), + (56738, 584, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'EdVaR3p4', '6609022'), + (56739, 584, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'EdVaR3p4', '6632757'), + (56740, 584, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'EdVaR3p4', '6644187'), + (56741, 584, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'EdVaR3p4', '6648951'), + (56742, 584, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'EdVaR3p4', '6648952'), + (56743, 584, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'EdVaR3p4', '6655401'), + (56744, 584, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'EdVaR3p4', '6661585'), + (56745, 584, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'EdVaR3p4', '6661588'), + (56746, 584, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'EdVaR3p4', '6661589'), + (56747, 584, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'EdVaR3p4', '6699906'), + (56748, 584, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'EdVaR3p4', '6699913'), + (56749, 584, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'EdVaR3p4', '6701109'), + (56750, 584, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'EdVaR3p4', '6705219'), + (56751, 584, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'EdVaR3p4', '6710153'), + (56752, 584, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'EdVaR3p4', '6711552'), + (56753, 584, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'EdVaR3p4', '6711553'), + (56754, 584, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'EdVaR3p4', '6722688'), + (56755, 584, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'EdVaR3p4', '6730620'), + (56756, 584, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'EdVaR3p4', '6740364'), + (56757, 584, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'EdVaR3p4', '6743829'), + (56758, 584, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'EdVaR3p4', '7030380'), + (56759, 584, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'EdVaR3p4', '7033677'), + (56760, 584, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'EdVaR3p4', '7044715'), + (56761, 584, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'EdVaR3p4', '7050318'), + (56762, 584, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'EdVaR3p4', '7050319'), + (56763, 584, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'EdVaR3p4', '7050322'), + (56764, 584, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'EdVaR3p4', '7057804'), + (56765, 584, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'EdVaR3p4', '7072824'), + (56766, 584, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'EdVaR3p4', '7074348'), + (56767, 584, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'EdVaR3p4', '7074364'), + (56768, 584, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'EdVaR3p4', '7089267'), + (56769, 584, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'EdVaR3p4', '7098747'), + (56770, 584, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'EdVaR3p4', '7113468'), + (56771, 584, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'EdVaR3p4', '7114856'), + (56772, 584, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'EdVaR3p4', '7114951'), + (56773, 584, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'EdVaR3p4', '7114955'), + (56774, 584, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'EdVaR3p4', '7114956'), + (56775, 584, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'EdVaR3p4', '7114957'), + (56776, 584, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'EdVaR3p4', '7159484'), + (56777, 584, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'EdVaR3p4', '7178446'), + (56778, 584, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'EdVaR3p4', '7220467'), + (56779, 584, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'EdVaR3p4', '7240354'), + (56780, 584, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'EdVaR3p4', '7251633'), + (56781, 584, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'EdVaR3p4', '7324073'), + (56782, 584, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'EdVaR3p4', '7324074'), + (56783, 584, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'EdVaR3p4', '7324075'), + (56784, 584, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'EdVaR3p4', '7324078'), + (56785, 584, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'EdVaR3p4', '7324082'), + (56786, 584, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'EdVaR3p4', '7331457'), + (56787, 584, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'EdVaR3p4', '7363643'), + (56788, 584, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'EdVaR3p4', '7368606'), + (56789, 584, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'EdVaR3p4', '7397462'), + (56790, 584, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'EdVaR3p4', '7424275'), + (56791, 584, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'EdVaR3p4', '7432751'), + (56792, 584, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'EdVaR3p4', '7432752'), + (56793, 584, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'EdVaR3p4', '7432753'), + (56794, 584, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'EdVaR3p4', '7432754'), + (56795, 584, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'EdVaR3p4', '7432755'), + (56796, 584, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'EdVaR3p4', '7432756'), + (56797, 584, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'EdVaR3p4', '7432758'), + (56798, 584, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'EdVaR3p4', '7432759'), + (56799, 584, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'EdVaR3p4', '7433834'), + (56800, 584, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'EdVaR3p4', '7470197'), + (56801, 584, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'EdVaR3p4', '7685613'), + (56802, 584, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'EdVaR3p4', '7688194'), + (56803, 584, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'EdVaR3p4', '7688196'), + (56804, 584, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'EdVaR3p4', '7688289'), + (56805, 584, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'EdVaR3p4', '7692763'), + (56806, 584, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'EdVaR3p4', '7697552'), + (56807, 584, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'EdVaR3p4', '7699878'), + (56808, 584, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'EdVaR3p4', '7704043'), + (56809, 584, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'EdVaR3p4', '7712467'), + (56810, 584, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'EdVaR3p4', '7713585'), + (56811, 584, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'EdVaR3p4', '7713586'), + (56812, 584, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'EdVaR3p4', '7738518'), + (56813, 584, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'EdVaR3p4', '7750636'), + (56814, 584, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'EdVaR3p4', '7796540'), + (56815, 584, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'EdVaR3p4', '7796541'), + (56816, 584, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'EdVaR3p4', '7796542'), + (56817, 584, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'EdVaR3p4', '7825913'), + (56818, 584, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'EdVaR3p4', '7826209'), + (56819, 584, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'EdVaR3p4', '7834742'), + (56820, 584, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'EdVaR3p4', '7842108'), + (56821, 584, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'EdVaR3p4', '7842902'), + (56822, 584, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'EdVaR3p4', '7842903'), + (56823, 584, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'EdVaR3p4', '7842904'), + (56824, 584, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'EdVaR3p4', '7842905'), + (56825, 584, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'EdVaR3p4', '7855719'), + (56826, 584, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'EdVaR3p4', '7860683'), + (56827, 584, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'EdVaR3p4', '7860684'), + (56828, 584, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'EdVaR3p4', '7866095'), + (56829, 584, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'EdVaR3p4', '7869170'), + (56830, 584, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'EdVaR3p4', '7869188'), + (56831, 584, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'EdVaR3p4', '7869201'), + (56832, 584, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'EdVaR3p4', '7877465'), + (56833, 584, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'EdVaR3p4', '7888250'), + (56834, 584, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'EdVaR3p4', '7904777'), + (56835, 584, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'EdVaR3p4', '8349164'), + (56836, 584, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'EdVaR3p4', '8349545'), + (56837, 584, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'EdVaR3p4', '8368028'), + (56838, 584, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'EdVaR3p4', '8368029'), + (56839, 584, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'EdVaR3p4', '8388462'), + (56840, 584, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'EdVaR3p4', '8400273'), + (56841, 584, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'EdVaR3p4', '8400275'), + (56842, 584, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'EdVaR3p4', '8400276'), + (56843, 584, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'EdVaR3p4', '8404977'), + (56844, 584, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'EdVaR3p4', '8430783'), + (56845, 584, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'EdVaR3p4', '8430784'), + (56846, 584, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'EdVaR3p4', '8430799'), + (56847, 584, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'EdVaR3p4', '8430800'), + (56848, 584, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'EdVaR3p4', '8430801'), + (56849, 584, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'EdVaR3p4', '8438709'), + (56850, 584, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'EdVaR3p4', '8457738'), + (56851, 584, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'EdVaR3p4', '8459566'), + (56852, 584, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'EdVaR3p4', '8459567'), + (56853, 584, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'EdVaR3p4', '8461032'), + (56854, 584, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'EdVaR3p4', '8477877'), + (56855, 584, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'EdVaR3p4', '8485688'), + (56856, 584, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'EdVaR3p4', '8490587'), + (56857, 584, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'EdVaR3p4', '8493552'), + (56858, 584, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'EdVaR3p4', '8493553'), + (56859, 584, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'EdVaR3p4', '8493554'), + (56860, 584, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'EdVaR3p4', '8493555'), + (56861, 584, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'EdVaR3p4', '8493556'), + (56862, 584, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'EdVaR3p4', '8493557'), + (56863, 584, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'EdVaR3p4', '8493558'), + (56864, 584, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'EdVaR3p4', '8493559'), + (56865, 584, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'EdVaR3p4', '8493560'), + (56866, 584, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'EdVaR3p4', '8493561'), + (56867, 584, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'EdVaR3p4', '8493572'), + (56868, 584, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'EdVaR3p4', '8540725'), + (56869, 584, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'EdVaR3p4', '8555421'), + (56870, 585, 394, 'maybe', '2021-01-05 13:51:55', '2025-12-17 19:47:48', 'VdxNEKGA', '3236449'), + (56871, 585, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'VdxNEKGA', '3386848'), + (56872, 585, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'VdxNEKGA', '3389527'), + (56873, 585, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'VdxNEKGA', '3396499'), + (56874, 585, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'VdxNEKGA', '3403650'), + (56875, 585, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'VdxNEKGA', '3406988'), + (56876, 585, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'VdxNEKGA', '3416576'), + (56877, 585, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'VdxNEKGA', '3426074'), + (56878, 585, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'VdxNEKGA', '3430267'), + (56879, 585, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'VdxNEKGA', '3468125'), + (56880, 585, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VdxNEKGA', '3470303'), + (56881, 585, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VdxNEKGA', '3470991'), + (56882, 585, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxNEKGA', '6045684'), + (56883, 586, 2125, 'not_attending', '2023-07-04 23:56:05', '2025-12-17 19:46:51', '4E2y78Xd', '6177485'), + (56884, 586, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4E2y78Xd', '6185812'), + (56885, 586, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4E2y78Xd', '6187651'), + (56886, 586, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4E2y78Xd', '6187963'), + (56887, 586, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4E2y78Xd', '6187964'), + (56888, 586, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4E2y78Xd', '6187966'), + (56889, 586, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4E2y78Xd', '6187967'), + (56890, 586, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4E2y78Xd', '6187969'), + (56891, 586, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4E2y78Xd', '6334878'), + (56892, 586, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', '4E2y78Xd', '6334903'), + (56893, 586, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4E2y78Xd', '6337236'), + (56894, 586, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4E2y78Xd', '6337970'), + (56895, 586, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4E2y78Xd', '6338308'), + (56896, 586, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4E2y78Xd', '6341710'), + (56897, 586, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4E2y78Xd', '6342044'), + (56898, 586, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4E2y78Xd', '6342298'), + (56899, 586, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', '4E2y78Xd', '6342591'), + (56900, 586, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4E2y78Xd', '6343294'), + (56901, 586, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4E2y78Xd', '6347034'), + (56902, 586, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4E2y78Xd', '6347056'), + (56903, 586, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4E2y78Xd', '6353830'), + (56904, 586, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4E2y78Xd', '6353831'), + (56905, 586, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4E2y78Xd', '6357867'), + (56906, 586, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4E2y78Xd', '6358652'), + (56907, 586, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4E2y78Xd', '6361709'), + (56908, 586, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4E2y78Xd', '6361710'), + (56909, 586, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4E2y78Xd', '6361711'), + (56910, 586, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4E2y78Xd', '6361712'), + (56911, 586, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4E2y78Xd', '6361713'), + (56912, 586, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4E2y78Xd', '6382573'), + (56913, 586, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4E2y78Xd', '6388604'), + (56914, 586, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4E2y78Xd', '6394629'), + (56915, 586, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4E2y78Xd', '6394631'), + (56916, 586, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4E2y78Xd', '6431478'), + (56917, 587, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dx6roa9A', '5195095'), + (56918, 587, 1329, 'maybe', '2022-04-14 17:17:52', '2025-12-17 19:47:27', 'dx6roa9A', '5240135'), + (56919, 587, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dx6roa9A', '5247467'), + (56920, 587, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dx6roa9A', '5260800'), + (56921, 587, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dx6roa9A', '5269930'), + (56922, 587, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dx6roa9A', '5271448'), + (56923, 587, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dx6roa9A', '5271449'), + (56924, 587, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dx6roa9A', '5276469'), + (56925, 587, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx6roa9A', '5278159'), + (56926, 587, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx6roa9A', '6045684'), + (56927, 588, 1721, 'attending', '2022-10-18 17:24:32', '2025-12-17 19:47:13', 'mp1RZo9A', '5630960'), + (56928, 588, 1722, 'attending', '2022-10-24 17:44:49', '2025-12-17 19:47:14', 'mp1RZo9A', '5630961'), + (56929, 588, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mp1RZo9A', '5630962'), + (56930, 588, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mp1RZo9A', '5630966'), + (56931, 588, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mp1RZo9A', '5630967'), + (56932, 588, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mp1RZo9A', '5630968'), + (56933, 588, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'mp1RZo9A', '5638765'), + (56934, 588, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mp1RZo9A', '5640097'), + (56935, 588, 1742, 'attending', '2022-10-18 22:45:18', '2025-12-17 19:47:13', 'mp1RZo9A', '5641245'), + (56936, 588, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mp1RZo9A', '5642818'), + (56937, 588, 1747, 'attending', '2022-10-24 17:44:14', '2025-12-17 19:47:13', 'mp1RZo9A', '5648009'), + (56938, 588, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mp1RZo9A', '5671637'), + (56939, 588, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mp1RZo9A', '5672329'), + (56940, 588, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mp1RZo9A', '5674057'), + (56941, 588, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mp1RZo9A', '5674060'), + (56942, 588, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mp1RZo9A', '5677461'), + (56943, 588, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mp1RZo9A', '5698046'), + (56944, 588, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'mp1RZo9A', '5699760'), + (56945, 588, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mp1RZo9A', '5741601'), + (56946, 588, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mp1RZo9A', '5763458'), + (56947, 588, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mp1RZo9A', '5774172'), + (56948, 588, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mp1RZo9A', '6045684'), + (56949, 589, 243, 'attending', '2020-11-02 04:28:54', '2025-12-17 19:47:53', 'pmbOM2KA', '3149474'), + (56950, 589, 423, 'attending', '2020-11-05 00:49:20', '2025-12-17 19:47:53', 'pmbOM2KA', '3245296'), + (56951, 589, 438, 'attending', '2020-10-31 01:42:38', '2025-12-17 19:47:53', 'pmbOM2KA', '3256163'), + (56952, 589, 440, 'attending', '2020-11-03 03:54:09', '2025-12-17 19:47:53', 'pmbOM2KA', '3256168'), + (56953, 589, 441, 'attending', '2020-11-14 00:47:08', '2025-12-17 19:47:54', 'pmbOM2KA', '3256169'), + (56954, 589, 445, 'attending', '2020-11-12 23:39:28', '2025-12-17 19:47:54', 'pmbOM2KA', '3266138'), + (56955, 589, 448, 'attending', '2020-10-31 01:41:56', '2025-12-17 19:47:53', 'pmbOM2KA', '3271831'), + (56956, 589, 449, 'attending', '2020-11-08 04:51:26', '2025-12-17 19:47:53', 'pmbOM2KA', '3272055'), + (56957, 589, 450, 'not_attending', '2020-10-31 20:27:08', '2025-12-17 19:47:53', 'pmbOM2KA', '3272102'), + (56958, 589, 456, 'attending', '2020-11-16 23:38:54', '2025-12-17 19:47:54', 'pmbOM2KA', '3276428'), + (56959, 589, 459, 'not_attending', '2020-11-15 17:05:00', '2025-12-17 19:47:54', 'pmbOM2KA', '3281467'), + (56960, 589, 462, 'attending', '2020-11-12 00:14:44', '2025-12-17 19:47:53', 'pmbOM2KA', '3281470'), + (56961, 589, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'pmbOM2KA', '3281829'), + (56962, 589, 467, 'not_attending', '2020-11-18 00:42:35', '2025-12-17 19:47:54', 'pmbOM2KA', '3282756'), + (56963, 589, 468, 'attending', '2020-11-21 07:15:56', '2025-12-17 19:47:54', 'pmbOM2KA', '3285413'), + (56964, 589, 469, 'not_attending', '2020-11-28 20:18:33', '2025-12-17 19:47:54', 'pmbOM2KA', '3285414'), + (56965, 589, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'pmbOM2KA', '3297764'), + (56966, 589, 493, 'attending', '2020-12-05 01:49:40', '2025-12-17 19:47:54', 'pmbOM2KA', '3313856'), + (56967, 589, 496, 'attending', '2020-12-09 04:53:30', '2025-12-17 19:47:54', 'pmbOM2KA', '3314269'), + (56968, 589, 497, 'not_attending', '2020-12-18 00:08:01', '2025-12-17 19:47:55', 'pmbOM2KA', '3314270'), + (56969, 589, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'pmbOM2KA', '3314909'), + (56970, 589, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'pmbOM2KA', '3314964'), + (56971, 589, 502, 'attending', '2020-12-13 04:13:56', '2025-12-17 19:47:55', 'pmbOM2KA', '3323365'), + (56972, 589, 506, 'maybe', '2020-12-12 06:04:35', '2025-12-17 19:47:55', 'pmbOM2KA', '3323375'), + (56973, 589, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'pmbOM2KA', '3329383'), + (56974, 589, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'pmbOM2KA', '3351539'), + (56975, 589, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'pmbOM2KA', '3386848'), + (56976, 589, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'pmbOM2KA', '3389527'), + (56977, 589, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'pmbOM2KA', '3396499'), + (56978, 589, 548, 'not_attending', '2021-01-16 20:00:51', '2025-12-17 19:47:48', 'pmbOM2KA', '3403650'), + (56979, 589, 549, 'maybe', '2021-01-18 23:54:03', '2025-12-17 19:47:49', 'pmbOM2KA', '3406988'), + (56980, 589, 550, 'attending', '2021-01-16 17:52:27', '2025-12-17 19:47:48', 'pmbOM2KA', '3407018'), + (56981, 589, 555, 'not_attending', '2021-01-24 00:21:53', '2025-12-17 19:47:49', 'pmbOM2KA', '3416576'), + (56982, 589, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'pmbOM2KA', '3418925'), + (56983, 589, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'pmbOM2KA', '3430267'), + (56984, 589, 569, 'maybe', '2021-01-28 01:09:41', '2025-12-17 19:47:49', 'pmbOM2KA', '3432673'), + (56985, 589, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'pmbOM2KA', '3468125'), + (56986, 589, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'pmbOM2KA', '3470303'), + (56987, 589, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'pmbOM2KA', '3470305'), + (56988, 589, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'pmbOM2KA', '3470991'), + (56989, 589, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'pmbOM2KA', '3517815'), + (56990, 589, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'pmbOM2KA', '3517816'), + (56991, 589, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'pmbOM2KA', '3523941'), + (56992, 589, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmbOM2KA', '3533850'), + (56993, 589, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmbOM2KA', '3536632'), + (56994, 589, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmbOM2KA', '3536656'), + (56995, 589, 641, 'attending', '2021-04-01 00:24:05', '2025-12-17 19:47:44', 'pmbOM2KA', '3539916'), + (56996, 589, 642, 'maybe', '2021-04-04 01:35:25', '2025-12-17 19:47:44', 'pmbOM2KA', '3539917'), + (56997, 589, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmbOM2KA', '3539918'), + (56998, 589, 644, 'not_attending', '2021-04-24 17:24:47', '2025-12-17 19:47:46', 'pmbOM2KA', '3539919'), + (56999, 589, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmbOM2KA', '3539920'), + (57000, 589, 646, 'attending', '2021-05-15 21:35:41', '2025-12-17 19:47:46', 'pmbOM2KA', '3539921'), + (57001, 589, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmbOM2KA', '3539922'), + (57002, 589, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmbOM2KA', '3539923'), + (57003, 589, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmbOM2KA', '3539927'), + (57004, 589, 689, 'not_attending', '2021-03-25 23:00:13', '2025-12-17 19:47:44', 'pmbOM2KA', '3555564'), + (57005, 589, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmbOM2KA', '3582734'), + (57006, 589, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmbOM2KA', '3583262'), + (57007, 589, 709, 'attending', '2021-04-06 21:08:11', '2025-12-17 19:47:44', 'pmbOM2KA', '3587852'), + (57008, 589, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmbOM2KA', '3619523'), + (57009, 589, 722, 'attending', '2021-04-01 00:23:47', '2025-12-17 19:47:44', 'pmbOM2KA', '3646347'), + (57010, 589, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmbOM2KA', '3661369'), + (57011, 589, 730, 'attending', '2021-05-02 03:43:46', '2025-12-17 19:47:46', 'pmbOM2KA', '3668076'), + (57012, 589, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmbOM2KA', '3674262'), + (57013, 589, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmbOM2KA', '3677402'), + (57014, 589, 761, 'not_attending', '2021-05-14 23:09:26', '2025-12-17 19:47:46', 'pmbOM2KA', '3716041'), + (57015, 589, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmbOM2KA', '3730212'), + (57016, 589, 777, 'attending', '2021-04-30 20:26:46', '2025-12-17 19:47:46', 'pmbOM2KA', '3746248'), + (57017, 589, 781, 'maybe', '2021-05-06 00:48:41', '2025-12-17 19:47:46', 'pmbOM2KA', '3760130'), + (57018, 589, 782, 'attending', '2021-05-02 03:44:37', '2025-12-17 19:47:46', 'pmbOM2KA', '3761843'), + (57019, 589, 792, 'attending', '2021-05-19 00:40:20', '2025-12-17 19:47:46', 'pmbOM2KA', '3793156'), + (57020, 589, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbOM2KA', '3974109'), + (57021, 589, 827, 'not_attending', '2021-06-05 22:45:45', '2025-12-17 19:47:47', 'pmbOM2KA', '3975311'), + (57022, 589, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmbOM2KA', '3975312'), + (57023, 589, 837, 'not_attending', '2021-06-17 22:58:55', '2025-12-17 19:47:48', 'pmbOM2KA', '3992545'), + (57024, 589, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbOM2KA', '3994992'), + (57025, 589, 841, 'not_attending', '2021-06-15 23:09:31', '2025-12-17 19:47:48', 'pmbOM2KA', '4007434'), + (57026, 589, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmbOM2KA', '4014338'), + (57027, 589, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmbOM2KA', '4021848'), + (57028, 589, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmbOM2KA', '4136744'), + (57029, 589, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'pmbOM2KA', '4136937'), + (57030, 589, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmbOM2KA', '4136938'), + (57031, 589, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbOM2KA', '4136947'), + (57032, 589, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbOM2KA', '4210314'), + (57033, 589, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbOM2KA', '4225444'), + (57034, 589, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbOM2KA', '4239259'), + (57035, 589, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmbOM2KA', '4240316'), + (57036, 589, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbOM2KA', '4240317'), + (57037, 589, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbOM2KA', '4240318'), + (57038, 589, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbOM2KA', '4240320'), + (57039, 589, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbOM2KA', '4250163'), + (57040, 589, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmbOM2KA', '4275957'), + (57041, 589, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbOM2KA', '4277819'), + (57042, 589, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbOM2KA', '4301723'), + (57043, 589, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbOM2KA', '4302093'), + (57044, 589, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbOM2KA', '4304151'), + (57045, 589, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'pmbOM2KA', '4345519'), + (57046, 589, 964, 'not_attending', '2021-08-23 22:45:45', '2025-12-17 19:47:42', 'pmbOM2KA', '4353160'), + (57047, 589, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbOM2KA', '4356801'), + (57048, 589, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'pmbOM2KA', '4358025'), + (57049, 589, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbOM2KA', '4366186'), + (57050, 589, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbOM2KA', '4366187'), + (57051, 589, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'pmbOM2KA', '4402823'), + (57052, 589, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbOM2KA', '4420735'), + (57053, 589, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbOM2KA', '4420738'), + (57054, 589, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbOM2KA', '4420739'), + (57055, 589, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbOM2KA', '4420741'), + (57056, 589, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbOM2KA', '4420744'), + (57057, 589, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbOM2KA', '4420747'), + (57058, 589, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbOM2KA', '4420748'), + (57059, 589, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbOM2KA', '4420749'), + (57060, 589, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbOM2KA', '4461883'), + (57061, 589, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbOM2KA', '4508342'), + (57062, 589, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbOM2KA', '4568602'), + (57063, 589, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbOM2KA', '4572153'), + (57064, 589, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'pmbOM2KA', '4585962'), + (57065, 589, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'pmbOM2KA', '4596356'), + (57066, 589, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbOM2KA', '4598860'), + (57067, 589, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbOM2KA', '4598861'), + (57068, 589, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbOM2KA', '4602797'), + (57069, 589, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbOM2KA', '4637896'), + (57070, 589, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbOM2KA', '4642994'), + (57071, 589, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'pmbOM2KA', '4642995'), + (57072, 589, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbOM2KA', '4642996'), + (57073, 589, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbOM2KA', '4642997'), + (57074, 589, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbOM2KA', '4645687'), + (57075, 589, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbOM2KA', '4645698'), + (57076, 589, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbOM2KA', '4645704'), + (57077, 589, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbOM2KA', '4645705'), + (57078, 589, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbOM2KA', '4668385'), + (57079, 589, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbOM2KA', '4694407'), + (57080, 589, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbOM2KA', '4736497'), + (57081, 589, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbOM2KA', '4736499'), + (57082, 589, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbOM2KA', '4736500'), + (57083, 589, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbOM2KA', '4736503'), + (57084, 589, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbOM2KA', '4736504'), + (57085, 589, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbOM2KA', '4746789'), + (57086, 589, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbOM2KA', '4753929'), + (57087, 589, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbOM2KA', '5038850'), + (57088, 589, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbOM2KA', '5045826'), + (57089, 589, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbOM2KA', '5132533'), + (57090, 589, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbOM2KA', '5186582'), + (57091, 589, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbOM2KA', '5186583'), + (57092, 589, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbOM2KA', '5186585'), + (57093, 589, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbOM2KA', '5190437'), + (57094, 589, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbOM2KA', '5215989'), + (57095, 589, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbOM2KA', '6045684'), + (57096, 590, 198, 'not_attending', '2020-08-28 10:45:50', '2025-12-17 19:47:56', 'EdVMllz4', '3087267'), + (57097, 590, 199, 'maybe', '2020-09-05 04:21:47', '2025-12-17 19:47:56', 'EdVMllz4', '3087268'), + (57098, 590, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'EdVMllz4', '3129980'), + (57099, 590, 317, 'not_attending', '2020-08-28 01:05:26', '2025-12-17 19:47:56', 'EdVMllz4', '3191735'), + (57100, 590, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'EdVMllz4', '3200209'), + (57101, 590, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVMllz4', '6045684'), + (57102, 591, 1379, 'not_attending', '2022-05-21 17:10:57', '2025-12-17 19:47:30', '4PNgvaym', '5271449'), + (57103, 591, 1380, 'attending', '2022-05-19 22:36:49', '2025-12-17 19:47:30', '4PNgvaym', '5271450'), + (57104, 591, 1393, 'not_attending', '2022-06-09 21:46:14', '2025-12-17 19:47:30', '4PNgvaym', '5280603'), + (57105, 591, 1394, 'not_attending', '2022-05-27 16:16:13', '2025-12-17 19:47:30', '4PNgvaym', '5280667'), + (57106, 591, 1400, 'attending', '2022-05-11 23:49:06', '2025-12-17 19:47:29', '4PNgvaym', '5284864'), + (57107, 591, 1402, 'not_attending', '2022-05-27 15:54:36', '2025-12-17 19:47:30', '4PNgvaym', '5287977'), + (57108, 591, 1405, 'not_attending', '2022-05-19 22:35:47', '2025-12-17 19:47:29', '4PNgvaym', '5288115'), + (57109, 591, 1407, 'attending', '2022-05-19 22:36:34', '2025-12-17 19:47:30', '4PNgvaym', '5363695'), + (57110, 591, 1408, 'not_attending', '2022-05-20 21:29:22', '2025-12-17 19:47:29', '4PNgvaym', '5365960'), + (57111, 591, 1409, 'not_attending', '2022-05-22 08:57:56', '2025-12-17 19:47:30', '4PNgvaym', '5367032'), + (57112, 591, 1410, 'attending', '2022-05-19 18:04:41', '2025-12-17 19:47:29', '4PNgvaym', '5367530'), + (57113, 591, 1411, 'not_attending', '2022-05-17 05:40:35', '2025-12-17 19:47:29', '4PNgvaym', '5367531'), + (57114, 591, 1413, 'not_attending', '2022-05-20 20:49:54', '2025-12-17 19:47:29', '4PNgvaym', '5367533'), + (57115, 591, 1414, 'not_attending', '2022-05-20 23:10:21', '2025-12-17 19:47:29', '4PNgvaym', '5368445'), + (57116, 591, 1415, 'not_attending', '2022-06-03 19:55:09', '2025-12-17 19:47:30', '4PNgvaym', '5368973'), + (57117, 591, 1418, 'not_attending', '2022-05-26 19:35:22', '2025-12-17 19:47:30', '4PNgvaym', '5372162'), + (57118, 591, 1419, 'attending', '2022-06-08 22:33:55', '2025-12-17 19:47:30', '4PNgvaym', '5373081'), + (57119, 591, 1420, 'not_attending', '2022-05-27 15:54:53', '2025-12-17 19:47:30', '4PNgvaym', '5374882'), + (57120, 591, 1422, 'attending', '2022-05-28 20:11:24', '2025-12-17 19:47:30', '4PNgvaym', '5375603'), + (57121, 591, 1423, 'not_attending', '2022-06-15 05:39:01', '2025-12-17 19:47:17', '4PNgvaym', '5375727'), + (57122, 591, 1424, 'not_attending', '2022-05-26 18:57:11', '2025-12-17 19:47:30', '4PNgvaym', '5375772'), + (57123, 591, 1427, 'attending', '2022-05-25 03:26:55', '2025-12-17 19:47:30', '4PNgvaym', '5376074'), + (57124, 591, 1428, 'not_attending', '2022-06-09 21:38:12', '2025-12-17 19:47:30', '4PNgvaym', '5378247'), + (57125, 591, 1429, 'not_attending', '2022-05-29 11:47:30', '2025-12-17 19:47:30', '4PNgvaym', '5388761'), + (57126, 591, 1430, 'attending', '2022-06-09 22:12:10', '2025-12-17 19:47:30', '4PNgvaym', '5389402'), + (57127, 591, 1431, 'not_attending', '2022-06-09 21:46:22', '2025-12-17 19:47:31', '4PNgvaym', '5389605'), + (57128, 591, 1434, 'not_attending', '2022-06-01 21:29:30', '2025-12-17 19:47:30', '4PNgvaym', '5393861'), + (57129, 591, 1435, 'not_attending', '2022-06-02 22:34:52', '2025-12-17 19:47:30', '4PNgvaym', '5394015'), + (57130, 591, 1436, 'attending', '2022-06-02 20:42:17', '2025-12-17 19:47:30', '4PNgvaym', '5394292'), + (57131, 591, 1439, 'not_attending', '2022-06-05 13:44:38', '2025-12-17 19:47:30', '4PNgvaym', '5396072'), + (57132, 591, 1440, 'attending', '2022-06-06 18:59:37', '2025-12-17 19:47:30', '4PNgvaym', '5396080'), + (57133, 591, 1441, 'attending', '2022-06-03 05:55:41', '2025-12-17 19:47:30', '4PNgvaym', '5397171'), + (57134, 591, 1442, 'not_attending', '2022-06-18 12:48:22', '2025-12-17 19:47:17', '4PNgvaym', '5397265'), + (57135, 591, 1447, 'not_attending', '2022-06-09 22:00:31', '2025-12-17 19:47:30', '4PNgvaym', '5401089'), + (57136, 591, 1449, 'not_attending', '2022-06-08 21:06:55', '2025-12-17 19:47:31', '4PNgvaym', '5403335'), + (57137, 591, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4PNgvaym', '5403967'), + (57138, 591, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4PNgvaym', '5404786'), + (57139, 591, 1461, 'attending', '2022-06-11 19:56:22', '2025-12-17 19:47:31', '4PNgvaym', '5405149'), + (57140, 591, 1462, 'not_attending', '2022-06-14 12:30:38', '2025-12-17 19:47:17', '4PNgvaym', '5405203'), + (57141, 591, 1478, 'not_attending', '2022-06-23 09:17:44', '2025-12-17 19:47:19', '4PNgvaym', '5408794'), + (57142, 591, 1480, 'not_attending', '2022-06-23 09:17:48', '2025-12-17 19:47:19', '4PNgvaym', '5411699'), + (57143, 591, 1482, 'not_attending', '2022-06-23 09:17:45', '2025-12-17 19:47:19', '4PNgvaym', '5412550'), + (57144, 591, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4PNgvaym', '5415046'), + (57145, 591, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4PNgvaym', '5422086'), + (57146, 591, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4PNgvaym', '5422406'), + (57147, 591, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4PNgvaym', '5424565'), + (57148, 591, 1503, 'not_attending', '2022-06-30 05:15:08', '2025-12-17 19:47:19', '4PNgvaym', '5426820'), + (57149, 591, 1504, 'not_attending', '2022-07-05 20:36:20', '2025-12-17 19:47:19', '4PNgvaym', '5426882'), + (57150, 591, 1505, 'not_attending', '2022-07-07 05:55:56', '2025-12-17 19:47:19', '4PNgvaym', '5427083'), + (57151, 591, 1513, 'not_attending', '2022-07-09 22:06:45', '2025-12-17 19:47:20', '4PNgvaym', '5441125'), + (57152, 591, 1514, 'not_attending', '2022-07-09 22:06:56', '2025-12-17 19:47:20', '4PNgvaym', '5441126'), + (57153, 591, 1515, 'not_attending', '2022-07-09 22:07:00', '2025-12-17 19:47:21', '4PNgvaym', '5441128'), + (57154, 591, 1516, 'not_attending', '2022-07-09 22:07:01', '2025-12-17 19:47:23', '4PNgvaym', '5441129'), + (57155, 591, 1517, 'not_attending', '2022-07-09 22:07:02', '2025-12-17 19:47:23', '4PNgvaym', '5441130'), + (57156, 591, 1518, 'not_attending', '2022-07-09 22:07:02', '2025-12-17 19:47:24', '4PNgvaym', '5441131'), + (57157, 591, 1519, 'maybe', '2022-07-09 22:07:03', '2025-12-17 19:47:24', '4PNgvaym', '5441132'), + (57158, 591, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4PNgvaym', '5446643'), + (57159, 591, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4PNgvaym', '5453325'), + (57160, 591, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4PNgvaym', '5454516'), + (57161, 591, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4PNgvaym', '5454605'), + (57162, 591, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4PNgvaym', '5455037'), + (57163, 591, 1558, 'attending', '2022-08-16 01:33:13', '2025-12-17 19:47:10', '4PNgvaym', '5458730'), + (57164, 591, 1559, 'maybe', '2022-09-23 01:37:55', '2025-12-17 19:47:11', '4PNgvaym', '5458731'), + (57165, 591, 1561, 'not_attending', '2022-08-04 11:30:54', '2025-12-17 19:47:22', '4PNgvaym', '5461278'), + (57166, 591, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4PNgvaym', '5469480'), + (57167, 591, 1563, 'not_attending', '2022-07-28 20:02:37', '2025-12-17 19:47:21', '4PNgvaym', '5469889'), + (57168, 591, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4PNgvaym', '5471073'), + (57169, 591, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4PNgvaym', '5474663'), + (57170, 591, 1570, 'not_attending', '2022-08-01 18:54:12', '2025-12-17 19:47:21', '4PNgvaym', '5481830'), + (57171, 591, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4PNgvaym', '5482022'), + (57172, 591, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4PNgvaym', '5482793'), + (57173, 591, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4PNgvaym', '5488912'), + (57174, 591, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4PNgvaym', '5492192'), + (57175, 591, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4PNgvaym', '5493139'), + (57176, 591, 1589, 'maybe', '2022-08-21 15:43:19', '2025-12-17 19:47:23', '4PNgvaym', '5493159'), + (57177, 591, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4PNgvaym', '5493200'), + (57178, 591, 1599, 'not_attending', '2022-08-16 01:32:55', '2025-12-17 19:47:23', '4PNgvaym', '5496568'), + (57179, 591, 1600, 'not_attending', '2022-08-16 01:32:54', '2025-12-17 19:47:24', '4PNgvaym', '5496569'), + (57180, 591, 1601, 'attending', '2022-08-11 19:39:59', '2025-12-17 19:47:22', '4PNgvaym', '5496589'), + (57181, 591, 1604, 'not_attending', '2022-08-17 04:59:41', '2025-12-17 19:47:22', '4PNgvaym', '5501504'), + (57182, 591, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4PNgvaym', '5502188'), + (57183, 591, 1606, 'maybe', '2022-08-17 04:58:56', '2025-12-17 19:47:23', '4PNgvaym', '5504585'), + (57184, 591, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4PNgvaym', '5505059'), + (57185, 591, 1612, 'not_attending', '2022-09-23 01:38:22', '2025-12-17 19:47:12', '4PNgvaym', '5507653'), + (57186, 591, 1613, 'attending', '2022-10-10 02:29:36', '2025-12-17 19:47:14', '4PNgvaym', '5507654'), + (57187, 591, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4PNgvaym', '5509055'), + (57188, 591, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4PNgvaym', '5512862'), + (57189, 591, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4PNgvaym', '5513985'), + (57190, 591, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '4PNgvaym', '5519981'), + (57191, 591, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4PNgvaym', '5522550'), + (57192, 591, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4PNgvaym', '5534683'), + (57193, 591, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4PNgvaym', '5537735'), + (57194, 591, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4PNgvaym', '5540859'), + (57195, 591, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4PNgvaym', '5546619'), + (57196, 591, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4PNgvaym', '5555245'), + (57197, 591, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4PNgvaym', '5557747'), + (57198, 591, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4PNgvaym', '5560255'), + (57199, 591, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4PNgvaym', '5562906'), + (57200, 591, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4PNgvaym', '5600604'), + (57201, 591, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4PNgvaym', '5605544'), + (57202, 591, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', '4PNgvaym', '5606737'), + (57203, 591, 1720, 'attending', '2022-10-10 16:13:59', '2025-12-17 19:47:12', '4PNgvaym', '5630959'), + (57204, 591, 1721, 'attending', '2022-10-16 15:16:16', '2025-12-17 19:47:13', '4PNgvaym', '5630960'), + (57205, 591, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4PNgvaym', '5630961'), + (57206, 591, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4PNgvaym', '5630962'), + (57207, 591, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4PNgvaym', '5630966'), + (57208, 591, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4PNgvaym', '5630967'), + (57209, 591, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4PNgvaym', '5630968'), + (57210, 591, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4PNgvaym', '5635406'), + (57211, 591, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4PNgvaym', '5638765'), + (57212, 591, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4PNgvaym', '5640097'), + (57213, 591, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '4PNgvaym', '5640843'), + (57214, 591, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4PNgvaym', '5641521'), + (57215, 591, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4PNgvaym', '5642818'), + (57216, 591, 1745, 'not_attending', '2022-10-14 10:15:45', '2025-12-17 19:47:12', '4PNgvaym', '5643088'), + (57217, 591, 1751, 'maybe', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4PNgvaym', '5652395'), + (57218, 591, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4PNgvaym', '5670445'), + (57219, 591, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4PNgvaym', '5671637'), + (57220, 591, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4PNgvaym', '5672329'), + (57221, 591, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4PNgvaym', '5674057'), + (57222, 591, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4PNgvaym', '5674060'), + (57223, 591, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4PNgvaym', '5677461'), + (57224, 591, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4PNgvaym', '5698046'), + (57225, 591, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4PNgvaym', '5699760'), + (57226, 591, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4PNgvaym', '5741601'), + (57227, 591, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4PNgvaym', '5763458'), + (57228, 591, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4PNgvaym', '5774172'), + (57229, 591, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '4PNgvaym', '5818247'), + (57230, 591, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4PNgvaym', '5819471'), + (57231, 591, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4PNgvaym', '5827739'), + (57232, 591, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4PNgvaym', '5844306'), + (57233, 591, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4PNgvaym', '5850159'), + (57234, 591, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4PNgvaym', '5858999'), + (57235, 591, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4PNgvaym', '5871984'), + (57236, 591, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4PNgvaym', '5876354'), + (57237, 591, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4PNgvaym', '5880939'), + (57238, 591, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4PNgvaym', '5880940'), + (57239, 591, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4PNgvaym', '5880942'), + (57240, 591, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4PNgvaym', '5880943'), + (57241, 591, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4PNgvaym', '5887890'), + (57242, 591, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4PNgvaym', '5888598'), + (57243, 591, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4PNgvaym', '5893260'), + (57244, 591, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4PNgvaym', '5899826'), + (57245, 591, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4PNgvaym', '5900199'), + (57246, 591, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4PNgvaym', '5900200'), + (57247, 591, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4PNgvaym', '5900202'), + (57248, 591, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4PNgvaym', '5900203'), + (57249, 591, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4PNgvaym', '5901108'), + (57250, 591, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4PNgvaym', '5901126'), + (57251, 591, 1897, 'maybe', '2023-02-11 01:02:47', '2025-12-17 19:47:07', '4PNgvaym', '5901128'), + (57252, 591, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4PNgvaym', '5909655'), + (57253, 591, 1912, 'not_attending', '2023-02-12 22:51:56', '2025-12-17 19:47:07', '4PNgvaym', '5909808'), + (57254, 591, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4PNgvaym', '5910522'), + (57255, 591, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4PNgvaym', '5910526'), + (57256, 591, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4PNgvaym', '5910528'), + (57257, 591, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4PNgvaym', '5916219'), + (57258, 591, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4PNgvaym', '5936234'), + (57259, 591, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4PNgvaym', '5958351'), + (57260, 591, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4PNgvaym', '5959751'), + (57261, 591, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4PNgvaym', '5959755'), + (57262, 591, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4PNgvaym', '5960055'), + (57263, 591, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4PNgvaym', '5961684'), + (57264, 591, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4PNgvaym', '5962132'), + (57265, 591, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4PNgvaym', '5962133'), + (57266, 591, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4PNgvaym', '5962134'), + (57267, 591, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4PNgvaym', '5962317'), + (57268, 591, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4PNgvaym', '5962318'), + (57269, 591, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4PNgvaym', '5965933'), + (57270, 591, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4PNgvaym', '5967014'), + (57271, 591, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4PNgvaym', '5972815'), + (57272, 591, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4PNgvaym', '5974016'), + (57273, 591, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '4PNgvaym', '5975052'), + (57274, 591, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '4PNgvaym', '5975054'), + (57275, 591, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4PNgvaym', '5981515'), + (57276, 591, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4PNgvaym', '5993516'), + (57277, 591, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4PNgvaym', '5998939'), + (57278, 591, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4PNgvaym', '6028191'), + (57279, 591, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4PNgvaym', '6040066'), + (57280, 591, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4PNgvaym', '6042717'), + (57281, 591, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4PNgvaym', '6044838'), + (57282, 591, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4PNgvaym', '6044839'), + (57283, 591, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNgvaym', '6045684'), + (57284, 591, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4PNgvaym', '6050104'), + (57285, 591, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4PNgvaym', '6053195'), + (57286, 591, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4PNgvaym', '6053198'), + (57287, 591, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4PNgvaym', '6056085'), + (57288, 591, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4PNgvaym', '6056916'), + (57289, 591, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4PNgvaym', '6059290'), + (57290, 591, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4PNgvaym', '6060328'), + (57291, 591, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4PNgvaym', '6061037'), + (57292, 591, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4PNgvaym', '6061039'), + (57293, 591, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4PNgvaym', '6067245'), + (57294, 591, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4PNgvaym', '6068094'), + (57295, 591, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4PNgvaym', '6068252'), + (57296, 591, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4PNgvaym', '6068253'), + (57297, 591, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4PNgvaym', '6068254'), + (57298, 591, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4PNgvaym', '6068280'), + (57299, 591, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4PNgvaym', '6069093'), + (57300, 591, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4PNgvaym', '6072528'), + (57301, 591, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4PNgvaym', '6075556'), + (57302, 591, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4PNgvaym', '6079840'), + (57303, 591, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4PNgvaym', '6083398'), + (57304, 591, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4PNgvaym', '6093504'), + (57305, 591, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4PNgvaym', '6097414'), + (57306, 591, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4PNgvaym', '6097442'), + (57307, 591, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4PNgvaym', '6097684'), + (57308, 591, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4PNgvaym', '6098762'), + (57309, 591, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4PNgvaym', '6101361'), + (57310, 591, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4PNgvaym', '6101362'), + (57311, 591, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4PNgvaym', '6107314'), + (57312, 591, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4PNgvaym', '6120034'), + (57313, 591, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4PNgvaym', '6136733'), + (57314, 591, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4PNgvaym', '6137989'), + (57315, 591, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4PNgvaym', '6150864'), + (57316, 591, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4PNgvaym', '6155491'), + (57317, 591, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4PNgvaym', '6164417'), + (57318, 591, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4PNgvaym', '6166388'), + (57319, 591, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4PNgvaym', '6176439'), + (57320, 591, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4PNgvaym', '6182410'), + (57321, 591, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4PNgvaym', '6185812'), + (57322, 591, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4PNgvaym', '6187651'), + (57323, 591, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4PNgvaym', '6187963'), + (57324, 591, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4PNgvaym', '6187964'), + (57325, 591, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4PNgvaym', '6187966'), + (57326, 591, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4PNgvaym', '6187967'), + (57327, 591, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4PNgvaym', '6187969'), + (57328, 591, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4PNgvaym', '6334878'), + (57329, 591, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4PNgvaym', '6337236'), + (57330, 591, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4PNgvaym', '6337970'), + (57331, 591, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4PNgvaym', '6338308'), + (57332, 591, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4PNgvaym', '6341710'), + (57333, 591, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4PNgvaym', '6342044'), + (57334, 591, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4PNgvaym', '6342298'), + (57335, 591, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4PNgvaym', '6343294'), + (57336, 591, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4PNgvaym', '6347034'), + (57337, 591, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4PNgvaym', '6347056'), + (57338, 591, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4PNgvaym', '6353830'), + (57339, 591, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4PNgvaym', '6353831'), + (57340, 591, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4PNgvaym', '6357867'), + (57341, 591, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4PNgvaym', '6358652'), + (57342, 591, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4PNgvaym', '6361709'), + (57343, 591, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4PNgvaym', '6361710'), + (57344, 591, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4PNgvaym', '6361711'), + (57345, 591, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4PNgvaym', '6361712'), + (57346, 591, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4PNgvaym', '6361713'), + (57347, 591, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4PNgvaym', '6382573'), + (57348, 591, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4PNgvaym', '6388604'), + (57349, 591, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4PNgvaym', '6394629'), + (57350, 591, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4PNgvaym', '6394631'), + (57351, 591, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4PNgvaym', '6440863'), + (57352, 591, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4PNgvaym', '6445440'), + (57353, 591, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4PNgvaym', '6453951'), + (57354, 591, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4PNgvaym', '6461696'), + (57355, 591, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4PNgvaym', '6462129'), + (57356, 591, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4PNgvaym', '6463218'), + (57357, 591, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4PNgvaym', '6472181'), + (57358, 591, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4PNgvaym', '6482693'), + (57359, 591, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4PNgvaym', '6484200'), + (57360, 591, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '4PNgvaym', '6484680'), + (57361, 591, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4PNgvaym', '6507741'), + (57362, 591, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4PNgvaym', '6514659'), + (57363, 591, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4PNgvaym', '6514660'), + (57364, 591, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4PNgvaym', '6519103'), + (57365, 591, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4PNgvaym', '6535681'), + (57366, 591, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4PNgvaym', '6584747'), + (57367, 591, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4PNgvaym', '6587097'), + (57368, 591, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4PNgvaym', '6609022'), + (57369, 591, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4PNgvaym', '6632757'), + (57370, 591, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4PNgvaym', '6644187'), + (57371, 591, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4PNgvaym', '6648951'), + (57372, 591, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4PNgvaym', '6648952'), + (57373, 591, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4PNgvaym', '6655401'), + (57374, 591, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4PNgvaym', '6661585'), + (57375, 591, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4PNgvaym', '6661588'), + (57376, 591, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4PNgvaym', '6661589'), + (57377, 591, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4PNgvaym', '6699906'), + (57378, 591, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4PNgvaym', '6699913'), + (57379, 591, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4PNgvaym', '6701109'), + (57380, 591, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4PNgvaym', '6705219'), + (57381, 591, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4PNgvaym', '6710153'), + (57382, 591, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4PNgvaym', '6711552'), + (57383, 591, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '4PNgvaym', '6711553'), + (57384, 591, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4PNgvaym', '6722688'), + (57385, 591, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4PNgvaym', '6730620'), + (57386, 591, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4PNgvaym', '6740364'), + (57387, 591, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4PNgvaym', '6743829'), + (57388, 591, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4PNgvaym', '7030380'), + (57389, 591, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4PNgvaym', '7033677'), + (57390, 591, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4PNgvaym', '7044715'), + (57391, 591, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4PNgvaym', '7050318'), + (57392, 591, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4PNgvaym', '7050319'), + (57393, 591, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4PNgvaym', '7050322'), + (57394, 591, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4PNgvaym', '7057804'), + (57395, 591, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4PNgvaym', '7072824'), + (57396, 591, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4PNgvaym', '7074348'), + (57397, 591, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4PNgvaym', '7074364'), + (57398, 591, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4PNgvaym', '7089267'), + (57399, 591, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4PNgvaym', '7098747'), + (57400, 591, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4PNgvaym', '7113468'), + (57401, 591, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4PNgvaym', '7114856'), + (57402, 591, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4PNgvaym', '7114951'), + (57403, 591, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4PNgvaym', '7114955'), + (57404, 591, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4PNgvaym', '7114956'), + (57405, 591, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4PNgvaym', '7114957'), + (57406, 591, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4PNgvaym', '7159484'), + (57407, 591, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4PNgvaym', '7178446'), + (57408, 591, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4PNgvaym', '7220467'), + (57409, 591, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4PNgvaym', '7240354'), + (57410, 591, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4PNgvaym', '7251633'), + (57411, 591, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4PNgvaym', '7324073'), + (57412, 591, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4PNgvaym', '7324074'), + (57413, 591, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4PNgvaym', '7324075'), + (57414, 591, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4PNgvaym', '7324078'), + (57415, 591, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4PNgvaym', '7324082'), + (57416, 591, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4PNgvaym', '7331457'), + (57417, 591, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4PNgvaym', '7363643'), + (57418, 591, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4PNgvaym', '7368606'), + (57419, 591, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4PNgvaym', '7397462'), + (57420, 591, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4PNgvaym', '7424275'), + (57421, 591, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4PNgvaym', '7432751'), + (57422, 591, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4PNgvaym', '7432752'), + (57423, 591, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4PNgvaym', '7432753'), + (57424, 591, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4PNgvaym', '7432754'), + (57425, 591, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4PNgvaym', '7432755'), + (57426, 591, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4PNgvaym', '7432756'), + (57427, 591, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4PNgvaym', '7432758'), + (57428, 591, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4PNgvaym', '7432759'), + (57429, 591, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4PNgvaym', '7433834'), + (57430, 591, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4PNgvaym', '7470197'), + (57431, 591, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4PNgvaym', '7685613'), + (57432, 591, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4PNgvaym', '7688194'), + (57433, 591, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4PNgvaym', '7688196'), + (57434, 591, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4PNgvaym', '7688289'), + (57435, 591, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4PNgvaym', '7692763'), + (57436, 591, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4PNgvaym', '7697552'), + (57437, 591, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4PNgvaym', '7699878'), + (57438, 591, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4PNgvaym', '7704043'), + (57439, 591, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4PNgvaym', '7712467'), + (57440, 591, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4PNgvaym', '7713585'), + (57441, 591, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4PNgvaym', '7713586'), + (57442, 591, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4PNgvaym', '7738518'), + (57443, 591, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4PNgvaym', '7750636'), + (57444, 591, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4PNgvaym', '7796540'), + (57445, 591, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4PNgvaym', '7796541'), + (57446, 591, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4PNgvaym', '7796542'), + (57447, 591, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4PNgvaym', '7825913'), + (57448, 591, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4PNgvaym', '7826209'), + (57449, 591, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4PNgvaym', '7834742'), + (57450, 591, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4PNgvaym', '7842108'), + (57451, 591, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4PNgvaym', '7842902'), + (57452, 591, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4PNgvaym', '7842903'), + (57453, 591, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4PNgvaym', '7842904'), + (57454, 591, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4PNgvaym', '7842905'), + (57455, 591, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4PNgvaym', '7855719'), + (57456, 591, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4PNgvaym', '7860683'), + (57457, 591, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4PNgvaym', '7860684'), + (57458, 591, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4PNgvaym', '7866095'), + (57459, 591, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4PNgvaym', '7869170'), + (57460, 591, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4PNgvaym', '7869188'), + (57461, 591, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4PNgvaym', '7869201'), + (57462, 591, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4PNgvaym', '7877465'), + (57463, 591, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4PNgvaym', '7888250'), + (57464, 591, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4PNgvaym', '7904777'), + (57465, 591, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4PNgvaym', '8349164'), + (57466, 591, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4PNgvaym', '8349545'), + (57467, 591, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4PNgvaym', '8368028'), + (57468, 591, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4PNgvaym', '8368029'), + (57469, 591, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4PNgvaym', '8388462'), + (57470, 591, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4PNgvaym', '8400273'), + (57471, 591, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4PNgvaym', '8400275'), + (57472, 591, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '4PNgvaym', '8400276'), + (57473, 591, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4PNgvaym', '8404977'), + (57474, 591, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4PNgvaym', '8430783'), + (57475, 591, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4PNgvaym', '8430784'), + (57476, 591, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4PNgvaym', '8430799'), + (57477, 591, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4PNgvaym', '8430800'), + (57478, 591, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4PNgvaym', '8430801'), + (57479, 591, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4PNgvaym', '8438709'), + (57480, 591, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4PNgvaym', '8457738'), + (57481, 591, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4PNgvaym', '8459566'), + (57482, 591, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4PNgvaym', '8459567'), + (57483, 591, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4PNgvaym', '8461032'), + (57484, 591, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4PNgvaym', '8477877'), + (57485, 591, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4PNgvaym', '8485688'), + (57486, 591, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4PNgvaym', '8490587'), + (57487, 591, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4PNgvaym', '8493552'), + (57488, 591, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4PNgvaym', '8493553'), + (57489, 591, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4PNgvaym', '8493554'), + (57490, 591, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4PNgvaym', '8493555'), + (57491, 591, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4PNgvaym', '8493556'), + (57492, 591, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4PNgvaym', '8493557'), + (57493, 591, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4PNgvaym', '8493558'), + (57494, 591, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4PNgvaym', '8493559'), + (57495, 591, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4PNgvaym', '8493560'), + (57496, 591, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4PNgvaym', '8493561'), + (57497, 591, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4PNgvaym', '8493572'), + (57498, 591, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '4PNgvaym', '8540725'), + (57499, 591, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4PNgvaym', '8555421'), + (57500, 592, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd9qJlyZd', '5630967'), + (57501, 592, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd9qJlyZd', '5630968'), + (57502, 592, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd9qJlyZd', '5642818'), + (57503, 592, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd9qJlyZd', '5670445'), + (57504, 592, 1784, 'not_attending', '2022-11-16 19:58:39', '2025-12-17 19:47:16', 'd9qJlyZd', '5699760'), + (57505, 592, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd9qJlyZd', '5741601'), + (57506, 592, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd9qJlyZd', '5763458'), + (57507, 592, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd9qJlyZd', '5774172'), + (57508, 592, 1826, 'attending', '2022-12-20 00:31:05', '2025-12-17 19:47:04', 'd9qJlyZd', '5776768'), + (57509, 592, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd9qJlyZd', '5818247'), + (57510, 592, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd9qJlyZd', '5819471'), + (57511, 592, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'd9qJlyZd', '5827739'), + (57512, 592, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd9qJlyZd', '5844306'), + (57513, 592, 1846, 'attending', '2022-12-18 04:06:05', '2025-12-17 19:47:04', 'd9qJlyZd', '5845237'), + (57514, 592, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd9qJlyZd', '5850159'), + (57515, 592, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd9qJlyZd', '5858999'), + (57516, 592, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd9qJlyZd', '5871984'), + (57517, 592, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd9qJlyZd', '5876354'), + (57518, 592, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'd9qJlyZd', '5880939'), + (57519, 592, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd9qJlyZd', '5887890'), + (57520, 592, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd9qJlyZd', '5888598'), + (57521, 592, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd9qJlyZd', '5893260'), + (57522, 592, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9qJlyZd', '6045684'), + (57523, 593, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dannVXDm', '7424275'), + (57524, 593, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'dannVXDm', '7432756'), + (57525, 593, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'dannVXDm', '7432758'), + (57526, 593, 2856, 'maybe', '2024-10-08 21:54:04', '2025-12-17 19:46:26', 'dannVXDm', '7469386'), + (57527, 593, 2858, 'maybe', '2024-10-11 02:57:06', '2025-12-17 19:46:26', 'dannVXDm', '7469388'), + (57528, 593, 2860, 'not_attending', '2024-10-08 21:53:11', '2025-12-17 19:46:26', 'dannVXDm', '7469393'), + (57529, 593, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'dannVXDm', '7470197'), + (57530, 593, 2869, 'maybe', '2024-10-05 15:56:22', '2025-12-17 19:46:26', 'dannVXDm', '7474823'), + (57531, 593, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'dannVXDm', '7682072'), + (57532, 593, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dannVXDm', '7685613'), + (57533, 593, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dannVXDm', '7688194'), + (57534, 593, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dannVXDm', '7688196'), + (57535, 593, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dannVXDm', '7688289'), + (57536, 594, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4WPyy60d', '6045684'), + (57537, 595, 1817, 'not_attending', '2023-03-25 05:48:25', '2025-12-17 19:46:57', '4E2kB81d', '5764687'), + (57538, 595, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4E2kB81d', '5900202'), + (57539, 595, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '4E2kB81d', '5962317'), + (57540, 595, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4E2kB81d', '5962318'), + (57541, 595, 1951, 'attending', '2023-03-22 18:17:21', '2025-12-17 19:46:56', '4E2kB81d', '5965933'), + (57542, 595, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', '4E2kB81d', '6028191'), + (57543, 595, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4E2kB81d', '6040066'), + (57544, 595, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4E2kB81d', '6042717'), + (57545, 595, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4E2kB81d', '6044838'), + (57546, 595, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4E2kB81d', '6044839'), + (57547, 595, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E2kB81d', '6045684'), + (57548, 595, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', '4E2kB81d', '6048955'), + (57549, 595, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4E2kB81d', '6050104'), + (57550, 595, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4E2kB81d', '6053195'), + (57551, 595, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4E2kB81d', '6053198'), + (57552, 595, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4E2kB81d', '6056085'), + (57553, 595, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4E2kB81d', '6056916'), + (57554, 595, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4E2kB81d', '6059290'), + (57555, 595, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4E2kB81d', '6060328'), + (57556, 595, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4E2kB81d', '6061037'), + (57557, 595, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4E2kB81d', '6061039'), + (57558, 595, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4E2kB81d', '6067245'), + (57559, 595, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4E2kB81d', '6068094'), + (57560, 595, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4E2kB81d', '6068252'), + (57561, 595, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4E2kB81d', '6068253'), + (57562, 595, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4E2kB81d', '6068254'), + (57563, 595, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4E2kB81d', '6068280'), + (57564, 595, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4E2kB81d', '6069093'), + (57565, 595, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4E2kB81d', '6072528'), + (57566, 595, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4E2kB81d', '6079840'), + (57567, 595, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4E2kB81d', '6083398'), + (57568, 595, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4E2kB81d', '6093504'), + (57569, 595, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4E2kB81d', '6097414'), + (57570, 595, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4E2kB81d', '6097442'), + (57571, 595, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4E2kB81d', '6097684'), + (57572, 595, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4E2kB81d', '6098762'), + (57573, 595, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4E2kB81d', '6101362'), + (57574, 595, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4E2kB81d', '6107314'), + (57575, 595, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4E2kB81d', '6120034'), + (57576, 596, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'daPJkNp4', '5441128'), + (57577, 596, 1517, 'attending', '2022-08-27 23:29:55', '2025-12-17 19:47:23', 'daPJkNp4', '5441130'), + (57578, 596, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'daPJkNp4', '5441131'), + (57579, 596, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'daPJkNp4', '5441132'), + (57580, 596, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'daPJkNp4', '5461278'), + (57581, 596, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'daPJkNp4', '5469480'), + (57582, 596, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'daPJkNp4', '5488912'), + (57583, 596, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'daPJkNp4', '5492192'), + (57584, 596, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'daPJkNp4', '5493139'), + (57585, 596, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'daPJkNp4', '5493200'), + (57586, 596, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'daPJkNp4', '5502188'), + (57587, 596, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'daPJkNp4', '5505059'), + (57588, 596, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', 'daPJkNp4', '5509055'), + (57589, 596, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'daPJkNp4', '5512862'), + (57590, 596, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'daPJkNp4', '5513985'), + (57591, 596, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'daPJkNp4', '5522550'), + (57592, 596, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'daPJkNp4', '5534683'), + (57593, 596, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'daPJkNp4', '5537735'), + (57594, 596, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'daPJkNp4', '5540859'), + (57595, 596, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'daPJkNp4', '5546619'), + (57596, 596, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'daPJkNp4', '5555245'), + (57597, 596, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'daPJkNp4', '5557747'), + (57598, 596, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'daPJkNp4', '5560255'), + (57599, 596, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'daPJkNp4', '5562906'), + (57600, 596, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'daPJkNp4', '5600604'), + (57601, 596, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'daPJkNp4', '5605544'), + (57602, 596, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'daPJkNp4', '5606737'), + (57603, 596, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'daPJkNp4', '5635406'), + (57604, 596, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'daPJkNp4', '5638765'), + (57605, 596, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'daPJkNp4', '5640843'), + (57606, 596, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daPJkNp4', '6045684'), + (57607, 597, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'QdJJEjBd', '3149489'), + (57608, 597, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'QdJJEjBd', '3149491'), + (57609, 597, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'QdJJEjBd', '3236450'), + (57610, 597, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'QdJJEjBd', '3236452'), + (57611, 597, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'QdJJEjBd', '3539920'), + (57612, 597, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'QdJJEjBd', '3539921'), + (57613, 597, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'QdJJEjBd', '3539922'), + (57614, 597, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'QdJJEjBd', '3539923'), + (57615, 597, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'QdJJEjBd', '3793156'), + (57616, 597, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'QdJJEjBd', '3806392'), + (57617, 597, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'QdJJEjBd', '3963335'), + (57618, 597, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'QdJJEjBd', '3975311'), + (57619, 597, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'QdJJEjBd', '3975312'), + (57620, 597, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'QdJJEjBd', '3994992'), + (57621, 597, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'QdJJEjBd', '4014338'), + (57622, 597, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'QdJJEjBd', '4136744'), + (57623, 597, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJJEjBd', '6045684'), + (57624, 598, 2133, 'not_attending', '2023-07-08 22:22:33', '2025-12-17 19:46:51', 'dxML9MXm', '6187651'), + (57625, 598, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dxML9MXm', '6334878'), + (57626, 598, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', 'dxML9MXm', '6334903'), + (57627, 598, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxML9MXm', '6337236'), + (57628, 598, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxML9MXm', '6337970'), + (57629, 598, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dxML9MXm', '6338308'), + (57630, 598, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxML9MXm', '6341710'), + (57631, 598, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxML9MXm', '6342044'), + (57632, 598, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxML9MXm', '6342298'), + (57633, 598, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxML9MXm', '6342591'), + (57634, 598, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dxML9MXm', '6343294'), + (57635, 598, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxML9MXm', '6347034'), + (57636, 598, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxML9MXm', '6347056'), + (57637, 598, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxML9MXm', '6353830'), + (57638, 598, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxML9MXm', '6353831'), + (57639, 598, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxML9MXm', '6357867'), + (57640, 598, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxML9MXm', '6358652'), + (57641, 598, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxML9MXm', '6361709'), + (57642, 598, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxML9MXm', '6361710'), + (57643, 598, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxML9MXm', '6361711'), + (57644, 598, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxML9MXm', '6361712'), + (57645, 598, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxML9MXm', '6361713'), + (57646, 598, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxML9MXm', '6382573'), + (57647, 598, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxML9MXm', '6388604'), + (57648, 598, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxML9MXm', '6394629'), + (57649, 598, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxML9MXm', '6394631'), + (57650, 598, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxML9MXm', '6431478'), + (57651, 598, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dxML9MXm', '6440863'), + (57652, 599, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dN9LBYR4', '5269930'), + (57653, 599, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dN9LBYR4', '5271448'), + (57654, 599, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dN9LBYR4', '5271449'), + (57655, 599, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dN9LBYR4', '5276469'), + (57656, 599, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dN9LBYR4', '5278159'), + (57657, 599, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dN9LBYR4', '5363695'), + (57658, 599, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dN9LBYR4', '5365960'), + (57659, 599, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dN9LBYR4', '5368973'), + (57660, 599, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dN9LBYR4', '5378247'), + (57661, 599, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dN9LBYR4', '5389605'), + (57662, 599, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dN9LBYR4', '5397265'), + (57663, 599, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9LBYR4', '6045684'), + (57664, 600, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40q3XVd', '6045684'), + (57665, 601, 327, 'maybe', '2020-09-28 21:58:35', '2025-12-17 19:47:52', '8dBaDw84', '3197085'), + (57666, 601, 328, 'maybe', '2020-09-28 21:59:42', '2025-12-17 19:47:52', '8dBaDw84', '3197086'), + (57667, 601, 329, 'maybe', '2020-09-28 22:01:18', '2025-12-17 19:47:52', '8dBaDw84', '3197087'), + (57668, 601, 342, 'attending', '2020-10-01 01:13:23', '2025-12-17 19:47:52', '8dBaDw84', '3204472'), + (57669, 601, 344, 'maybe', '2020-10-27 01:08:34', '2025-12-17 19:47:53', '8dBaDw84', '3206906'), + (57670, 601, 348, 'maybe', '2020-09-28 21:58:47', '2025-12-17 19:47:52', '8dBaDw84', '3209159'), + (57671, 601, 357, 'maybe', '2020-09-28 21:59:54', '2025-12-17 19:47:52', '8dBaDw84', '3212573'), + (57672, 601, 363, 'not_attending', '2020-09-27 21:34:32', '2025-12-17 19:47:52', '8dBaDw84', '3217037'), + (57673, 601, 368, 'maybe', '2020-09-28 22:01:30', '2025-12-17 19:47:52', '8dBaDw84', '3221403'), + (57674, 601, 375, 'attending', '2020-10-07 01:04:43', '2025-12-17 19:47:52', '8dBaDw84', '3222825'), + (57675, 601, 385, 'attending', '2020-10-02 01:18:12', '2025-12-17 19:47:52', '8dBaDw84', '3228698'), + (57676, 601, 386, 'maybe', '2020-10-10 19:15:31', '2025-12-17 19:47:52', '8dBaDw84', '3228699'), + (57677, 601, 387, 'attending', '2020-10-17 17:07:45', '2025-12-17 19:47:52', '8dBaDw84', '3228700'), + (57678, 601, 388, 'attending', '2020-10-24 01:22:58', '2025-12-17 19:47:52', '8dBaDw84', '3228701'), + (57679, 601, 390, 'attending', '2020-10-04 21:09:54', '2025-12-17 19:47:52', '8dBaDw84', '3231510'), + (57680, 601, 411, 'attending', '2020-10-07 01:04:28', '2025-12-17 19:47:52', '8dBaDw84', '3236596'), + (57681, 601, 414, 'maybe', '2020-10-18 20:11:21', '2025-12-17 19:47:52', '8dBaDw84', '3237277'), + (57682, 601, 422, 'maybe', '2020-10-27 01:07:53', '2025-12-17 19:47:53', '8dBaDw84', '3245295'), + (57683, 601, 423, 'maybe', '2020-10-27 01:08:54', '2025-12-17 19:47:53', '8dBaDw84', '3245296'), + (57684, 601, 424, 'maybe', '2020-10-19 17:44:30', '2025-12-17 19:47:52', '8dBaDw84', '3245751'), + (57685, 601, 426, 'not_attending', '2020-10-18 18:00:18', '2025-12-17 19:47:52', '8dBaDw84', '3250232'), + (57686, 601, 428, 'attending', '2020-10-27 00:56:58', '2025-12-17 19:47:53', '8dBaDw84', '3250332'), + (57687, 601, 438, 'maybe', '2020-10-27 01:08:22', '2025-12-17 19:47:53', '8dBaDw84', '3256163'), + (57688, 601, 439, 'maybe', '2020-10-27 01:07:43', '2025-12-17 19:47:53', '8dBaDw84', '3256164'), + (57689, 601, 440, 'attending', '2020-10-27 01:09:05', '2025-12-17 19:47:53', '8dBaDw84', '3256168'), + (57690, 601, 441, 'maybe', '2020-11-14 21:54:54', '2025-12-17 19:47:54', '8dBaDw84', '3256169'), + (57691, 601, 443, 'attending', '2020-10-24 01:23:31', '2025-12-17 19:47:53', '8dBaDw84', '3263578'), + (57692, 601, 445, 'maybe', '2020-10-27 01:08:49', '2025-12-17 19:47:54', '8dBaDw84', '3266138'), + (57693, 601, 446, 'maybe', '2020-10-27 01:07:28', '2025-12-17 19:47:53', '8dBaDw84', '3267163'), + (57694, 601, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '8dBaDw84', '3276428'), + (57695, 601, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '8dBaDw84', '3281467'), + (57696, 601, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '8dBaDw84', '3281470'), + (57697, 601, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '8dBaDw84', '3281829'), + (57698, 601, 468, 'maybe', '2020-11-21 19:37:35', '2025-12-17 19:47:54', '8dBaDw84', '3285413'), + (57699, 601, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '8dBaDw84', '3285414'), + (57700, 601, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '8dBaDw84', '3297764'), + (57701, 601, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', '8dBaDw84', '3313856'), + (57702, 601, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '8dBaDw84', '3314909'), + (57703, 601, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '8dBaDw84', '3314964'), + (57704, 601, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', '8dBaDw84', '3323365'), + (57705, 601, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '8dBaDw84', '3329383'), + (57706, 601, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '8dBaDw84', '3351539'), + (57707, 601, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '8dBaDw84', '3386848'), + (57708, 601, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '8dBaDw84', '3389527'), + (57709, 601, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '8dBaDw84', '3396499'), + (57710, 601, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '8dBaDw84', '3403650'), + (57711, 601, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '8dBaDw84', '3406988'), + (57712, 601, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '8dBaDw84', '3416576'), + (57713, 601, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '8dBaDw84', '3418925'), + (57714, 601, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dBaDw84', '6045684'), + (57715, 602, 1010, 'attending', '2021-11-28 23:43:16', '2025-12-17 19:47:36', 'myDrr50d', '4438812'), + (57716, 602, 1094, 'maybe', '2021-11-28 23:43:04', '2025-12-17 19:47:36', 'myDrr50d', '4587337'), + (57717, 602, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'myDrr50d', '4694407'), + (57718, 602, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'myDrr50d', '4736497'), + (57719, 602, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'myDrr50d', '4736500'), + (57720, 602, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'myDrr50d', '4746789'), + (57721, 602, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'myDrr50d', '4753929'), + (57722, 602, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myDrr50d', '6045684'), + (57723, 603, 3188, 'maybe', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4onn90oA', '8438709'), + (57724, 603, 3191, 'attending', '2025-07-15 03:22:39', '2025-12-17 19:46:17', '4onn90oA', '8444983'), + (57725, 603, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4onn90oA', '8457738'), + (57726, 603, 3200, 'maybe', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4onn90oA', '8459566'), + (57727, 603, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4onn90oA', '8459567'), + (57728, 603, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4onn90oA', '8461032'), + (57729, 603, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4onn90oA', '8477877'), + (57730, 603, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4onn90oA', '8485688'), + (57731, 604, 1176, 'attending', '2022-01-31 09:43:26', '2025-12-17 19:47:32', '4v8yPnkm', '4736498'), + (57732, 604, 1177, 'attending', '2022-02-06 22:33:06', '2025-12-17 19:47:32', '4v8yPnkm', '4736499'), + (57733, 604, 1178, 'attending', '2022-01-29 03:23:02', '2025-12-17 19:47:32', '4v8yPnkm', '4736500'), + (57734, 604, 1179, 'attending', '2022-02-19 04:55:55', '2025-12-17 19:47:32', '4v8yPnkm', '4736501'), + (57735, 604, 1181, 'not_attending', '2022-03-06 01:00:30', '2025-12-17 19:47:33', '4v8yPnkm', '4736503'), + (57736, 604, 1182, 'not_attending', '2022-03-11 23:52:58', '2025-12-17 19:47:33', '4v8yPnkm', '4736504'), + (57737, 604, 1211, 'attending', '2022-01-28 23:30:34', '2025-12-17 19:47:32', '4v8yPnkm', '4780754'), + (57738, 604, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4v8yPnkm', '5038850'), + (57739, 604, 1236, 'not_attending', '2022-02-16 09:12:51', '2025-12-17 19:47:32', '4v8yPnkm', '5045826'), + (57740, 604, 1259, 'not_attending', '2022-03-11 23:52:47', '2025-12-17 19:47:33', '4v8yPnkm', '5132533'), + (57741, 604, 1272, 'attending', '2022-03-18 07:53:26', '2025-12-17 19:47:25', '4v8yPnkm', '5186582'), + (57742, 604, 1273, 'attending', '2022-03-23 05:42:22', '2025-12-17 19:47:25', '4v8yPnkm', '5186583'), + (57743, 604, 1274, 'attending', '2022-03-30 09:29:20', '2025-12-17 19:47:26', '4v8yPnkm', '5186585'), + (57744, 604, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4v8yPnkm', '5190437'), + (57745, 604, 1284, 'not_attending', '2022-04-16 17:13:06', '2025-12-17 19:47:27', '4v8yPnkm', '5195095'), + (57746, 604, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4v8yPnkm', '5215989'), + (57747, 604, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4v8yPnkm', '5223686'), + (57748, 604, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4v8yPnkm', '5227432'), + (57749, 604, 1346, 'attending', '2022-04-21 08:49:31', '2025-12-17 19:47:27', '4v8yPnkm', '5247467'), + (57750, 604, 1362, 'not_attending', '2022-05-01 01:58:53', '2025-12-17 19:47:28', '4v8yPnkm', '5260800'), + (57751, 604, 1374, 'attending', '2022-05-03 12:09:22', '2025-12-17 19:47:28', '4v8yPnkm', '5269930'), + (57752, 604, 1378, 'attending', '2022-05-09 11:41:51', '2025-12-17 19:47:28', '4v8yPnkm', '5271448'), + (57753, 604, 1379, 'not_attending', '2022-05-22 05:25:02', '2025-12-17 19:47:30', '4v8yPnkm', '5271449'), + (57754, 604, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4v8yPnkm', '5276469'), + (57755, 604, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4v8yPnkm', '5278159'), + (57756, 604, 1407, 'not_attending', '2022-06-02 08:18:49', '2025-12-17 19:47:30', '4v8yPnkm', '5363695'), + (57757, 604, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4v8yPnkm', '5365960'), + (57758, 604, 1415, 'not_attending', '2022-06-02 08:18:47', '2025-12-17 19:47:30', '4v8yPnkm', '5368973'), + (57759, 604, 1428, 'not_attending', '2022-06-11 11:46:25', '2025-12-17 19:47:30', '4v8yPnkm', '5378247'), + (57760, 604, 1431, 'not_attending', '2022-06-11 11:46:30', '2025-12-17 19:47:31', '4v8yPnkm', '5389605'), + (57761, 604, 1442, 'attending', '2022-06-13 23:03:07', '2025-12-17 19:47:17', '4v8yPnkm', '5397265'), + (57762, 604, 1451, 'not_attending', '2022-06-18 05:08:41', '2025-12-17 19:47:17', '4v8yPnkm', '5403967'), + (57763, 604, 1458, 'not_attending', '2022-06-11 11:46:55', '2025-12-17 19:47:17', '4v8yPnkm', '5404786'), + (57764, 604, 1462, 'not_attending', '2022-06-11 11:46:49', '2025-12-17 19:47:17', '4v8yPnkm', '5405203'), + (57765, 604, 1478, 'not_attending', '2022-06-18 05:08:58', '2025-12-17 19:47:19', '4v8yPnkm', '5408794'), + (57766, 604, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4v8yPnkm', '5411699'), + (57767, 604, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4v8yPnkm', '5412550'), + (57768, 604, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4v8yPnkm', '5415046'), + (57769, 604, 1495, 'not_attending', '2022-07-05 22:27:49', '2025-12-17 19:47:19', '4v8yPnkm', '5422086'), + (57770, 604, 1498, 'not_attending', '2022-06-29 00:15:06', '2025-12-17 19:47:19', '4v8yPnkm', '5422406'), + (57771, 604, 1502, 'not_attending', '2022-07-08 23:29:08', '2025-12-17 19:47:19', '4v8yPnkm', '5424565'), + (57772, 604, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4v8yPnkm', '5426882'), + (57773, 604, 1505, 'not_attending', '2022-07-05 22:30:12', '2025-12-17 19:47:19', '4v8yPnkm', '5427083'), + (57774, 604, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4v8yPnkm', '5441125'), + (57775, 604, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4v8yPnkm', '5441126'), + (57776, 604, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4v8yPnkm', '5441128'), + (57777, 604, 1518, 'attending', '2022-08-23 00:57:05', '2025-12-17 19:47:24', '4v8yPnkm', '5441131'), + (57778, 604, 1519, 'attending', '2022-08-23 00:57:24', '2025-12-17 19:47:24', '4v8yPnkm', '5441132'), + (57779, 604, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4v8yPnkm', '5446643'), + (57780, 604, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4v8yPnkm', '5453325'), + (57781, 604, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4v8yPnkm', '5454516'), + (57782, 604, 1544, 'attending', '2022-09-17 04:56:32', '2025-12-17 19:47:11', '4v8yPnkm', '5454517'), + (57783, 604, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4v8yPnkm', '5454605'), + (57784, 604, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4v8yPnkm', '5455037'), + (57785, 604, 1559, 'not_attending', '2022-09-27 13:05:32', '2025-12-17 19:47:11', '4v8yPnkm', '5458731'), + (57786, 604, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4v8yPnkm', '5461278'), + (57787, 604, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4v8yPnkm', '5469480'), + (57788, 604, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4v8yPnkm', '5471073'), + (57789, 604, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4v8yPnkm', '5474663'), + (57790, 604, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4v8yPnkm', '5482022'), + (57791, 604, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4v8yPnkm', '5482793'), + (57792, 604, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4v8yPnkm', '5488912'), + (57793, 604, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4v8yPnkm', '5492192'), + (57794, 604, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4v8yPnkm', '5493139'), + (57795, 604, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4v8yPnkm', '5493200'), + (57796, 604, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4v8yPnkm', '5502188'), + (57797, 604, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4v8yPnkm', '5505059'), + (57798, 604, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4v8yPnkm', '5509055'), + (57799, 604, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4v8yPnkm', '5512862'), + (57800, 604, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4v8yPnkm', '5513985'), + (57801, 604, 1626, 'attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', '4v8yPnkm', '5519981'), + (57802, 604, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4v8yPnkm', '5522550'), + (57803, 604, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4v8yPnkm', '5534683'), + (57804, 604, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '4v8yPnkm', '5537735'), + (57805, 604, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4v8yPnkm', '5540859'), + (57806, 604, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4v8yPnkm', '5546619'), + (57807, 604, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4v8yPnkm', '5555245'), + (57808, 604, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4v8yPnkm', '5557747'), + (57809, 604, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4v8yPnkm', '5560255'), + (57810, 604, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4v8yPnkm', '5562906'), + (57811, 604, 1666, 'attending', '2022-09-27 22:27:58', '2025-12-17 19:47:11', '4v8yPnkm', '5563208'), + (57812, 604, 1668, 'not_attending', '2022-10-01 13:01:27', '2025-12-17 19:47:12', '4v8yPnkm', '5563222'), + (57813, 604, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4v8yPnkm', '5600604'), + (57814, 604, 1679, 'attending', '2022-10-02 15:58:21', '2025-12-17 19:47:12', '4v8yPnkm', '5601099'), + (57815, 604, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4v8yPnkm', '5605544'), + (57816, 604, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', '4v8yPnkm', '5606737'), + (57817, 604, 1708, 'attending', '2022-10-05 15:59:02', '2025-12-17 19:47:12', '4v8yPnkm', '5617648'), + (57818, 604, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', '4v8yPnkm', '5630907'), + (57819, 604, 1720, 'not_attending', '2022-10-15 09:54:42', '2025-12-17 19:47:12', '4v8yPnkm', '5630959'), + (57820, 604, 1721, 'not_attending', '2022-10-14 19:01:47', '2025-12-17 19:47:13', '4v8yPnkm', '5630960'), + (57821, 604, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4v8yPnkm', '5630961'), + (57822, 604, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4v8yPnkm', '5630962'), + (57823, 604, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4v8yPnkm', '5630966'), + (57824, 604, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4v8yPnkm', '5630967'), + (57825, 604, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4v8yPnkm', '5630968'), + (57826, 604, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4v8yPnkm', '5635406'), + (57827, 604, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4v8yPnkm', '5638765'), + (57828, 604, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4v8yPnkm', '5640097'), + (57829, 604, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4v8yPnkm', '5640843'), + (57830, 604, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4v8yPnkm', '5641521'), + (57831, 604, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4v8yPnkm', '5642818'), + (57832, 604, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4v8yPnkm', '5652395'), + (57833, 604, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4v8yPnkm', '5670445'), + (57834, 604, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4v8yPnkm', '5671637'), + (57835, 604, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4v8yPnkm', '5672329'), + (57836, 604, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4v8yPnkm', '5674057'), + (57837, 604, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4v8yPnkm', '5674060'), + (57838, 604, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4v8yPnkm', '5677461'), + (57839, 604, 1776, 'attending', '2022-11-09 04:04:04', '2025-12-17 19:47:15', '4v8yPnkm', '5691067'), + (57840, 604, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4v8yPnkm', '5698046'), + (57841, 604, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4v8yPnkm', '5699760'), + (57842, 604, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4v8yPnkm', '5741601'), + (57843, 604, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4v8yPnkm', '5763458'), + (57844, 604, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4v8yPnkm', '5774172'), + (57845, 604, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '4v8yPnkm', '5818247'), + (57846, 604, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4v8yPnkm', '5819471'), + (57847, 604, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4v8yPnkm', '5827739'), + (57848, 604, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4v8yPnkm', '5844306'), + (57849, 604, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4v8yPnkm', '5850159'), + (57850, 604, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4v8yPnkm', '5858999'), + (57851, 604, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4v8yPnkm', '5871984'), + (57852, 604, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4v8yPnkm', '5876354'), + (57853, 604, 1864, 'not_attending', '2023-01-22 02:46:53', '2025-12-17 19:47:05', '4v8yPnkm', '5879675'), + (57854, 604, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4v8yPnkm', '5880939'), + (57855, 604, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4v8yPnkm', '5880940'), + (57856, 604, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4v8yPnkm', '5880942'), + (57857, 604, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4v8yPnkm', '5880943'), + (57858, 604, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4v8yPnkm', '5887890'), + (57859, 604, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4v8yPnkm', '5888598'), + (57860, 604, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4v8yPnkm', '5893260'), + (57861, 604, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4v8yPnkm', '5899826'), + (57862, 604, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4v8yPnkm', '5900199'), + (57863, 604, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4v8yPnkm', '5900200'), + (57864, 604, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4v8yPnkm', '5900202'), + (57865, 604, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4v8yPnkm', '5900203'), + (57866, 604, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4v8yPnkm', '5901108'), + (57867, 604, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4v8yPnkm', '5901126'), + (57868, 604, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4v8yPnkm', '5909655'), + (57869, 604, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4v8yPnkm', '5910522'), + (57870, 604, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4v8yPnkm', '5910526'), + (57871, 604, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4v8yPnkm', '5910528'), + (57872, 604, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4v8yPnkm', '5916219'), + (57873, 604, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4v8yPnkm', '5936234'), + (57874, 604, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4v8yPnkm', '5958351'), + (57875, 604, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4v8yPnkm', '5959751'), + (57876, 604, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4v8yPnkm', '5959755'), + (57877, 604, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4v8yPnkm', '5960055'), + (57878, 604, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4v8yPnkm', '5961684'), + (57879, 604, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4v8yPnkm', '5962132'), + (57880, 604, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4v8yPnkm', '5962133'), + (57881, 604, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4v8yPnkm', '5962134'), + (57882, 604, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4v8yPnkm', '5962317'), + (57883, 604, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4v8yPnkm', '5962318'), + (57884, 604, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4v8yPnkm', '5965933'), + (57885, 604, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4v8yPnkm', '5967014'), + (57886, 604, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4v8yPnkm', '5972815'), + (57887, 604, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4v8yPnkm', '5974016'), + (57888, 604, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4v8yPnkm', '5981515'), + (57889, 604, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4v8yPnkm', '5993516'), + (57890, 604, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4v8yPnkm', '5998939'), + (57891, 604, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4v8yPnkm', '6028191'), + (57892, 604, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4v8yPnkm', '6040066'), + (57893, 604, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4v8yPnkm', '6042717'), + (57894, 604, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4v8yPnkm', '6044838'), + (57895, 604, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4v8yPnkm', '6044839'), + (57896, 604, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4v8yPnkm', '6045684'), + (57897, 604, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4v8yPnkm', '6050104'), + (57898, 604, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4v8yPnkm', '6053195'), + (57899, 604, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4v8yPnkm', '6053198'), + (57900, 604, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4v8yPnkm', '6056085'), + (57901, 604, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4v8yPnkm', '6056916'), + (57902, 604, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4v8yPnkm', '6059290'), + (57903, 604, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4v8yPnkm', '6060328'), + (57904, 604, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4v8yPnkm', '6061037'), + (57905, 604, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4v8yPnkm', '6061039'), + (57906, 604, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4v8yPnkm', '6067245'), + (57907, 604, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4v8yPnkm', '6068094'), + (57908, 604, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4v8yPnkm', '6068252'), + (57909, 604, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4v8yPnkm', '6068253'), + (57910, 604, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4v8yPnkm', '6068254'), + (57911, 604, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4v8yPnkm', '6068280'), + (57912, 604, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4v8yPnkm', '6069093'), + (57913, 604, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4v8yPnkm', '6072528'), + (57914, 604, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4v8yPnkm', '6079840'), + (57915, 604, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4v8yPnkm', '6083398'), + (57916, 604, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4v8yPnkm', '6093504'), + (57917, 604, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4v8yPnkm', '6097414'), + (57918, 604, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4v8yPnkm', '6097442'), + (57919, 604, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4v8yPnkm', '6097684'), + (57920, 604, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4v8yPnkm', '6098762'), + (57921, 604, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4v8yPnkm', '6101362'), + (57922, 604, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4v8yPnkm', '6103752'), + (57923, 604, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4v8yPnkm', '6107314'), + (57924, 605, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'LmpJ6PQ4', '3149489'), + (57925, 605, 648, 'not_attending', '2021-05-29 02:26:15', '2025-12-17 19:47:47', 'LmpJ6PQ4', '3539923'), + (57926, 605, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJ6PQ4', '6045684'), + (57927, 606, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4ol7aOVd', '6655401'), + (57928, 606, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4ol7aOVd', '6699906'), + (57929, 606, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4ol7aOVd', '6699913'), + (57930, 606, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4ol7aOVd', '6701109'), + (57931, 606, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4ol7aOVd', '6705219'), + (57932, 606, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4ol7aOVd', '6710153'), + (57933, 606, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4ol7aOVd', '6711552'), + (57934, 606, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4ol7aOVd', '6711553'), + (57935, 606, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4ol7aOVd', '6722688'), + (57936, 606, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4ol7aOVd', '6730620'), + (57937, 606, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4ol7aOVd', '6730642'), + (57938, 606, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4ol7aOVd', '6740364'), + (57939, 606, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4ol7aOVd', '6743829'), + (57940, 606, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4ol7aOVd', '7030380'), + (57941, 606, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4ol7aOVd', '7033677'), + (57942, 606, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4ol7aOVd', '7035415'), + (57943, 606, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4ol7aOVd', '7044715'), + (57944, 606, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4ol7aOVd', '7050318'), + (57945, 606, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4ol7aOVd', '7050319'), + (57946, 606, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4ol7aOVd', '7050322'), + (57947, 606, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4ol7aOVd', '7057804'), + (57948, 606, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4ol7aOVd', '7072824'), + (57949, 606, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4ol7aOVd', '7074348'), + (57950, 606, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4ol7aOVd', '7089267'), + (57951, 606, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4ol7aOVd', '7098747'), + (57952, 606, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4ol7aOVd', '7113468'), + (57953, 606, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4ol7aOVd', '7114856'), + (57954, 606, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4ol7aOVd', '7114951'), + (57955, 606, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4ol7aOVd', '7114955'), + (57956, 606, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4ol7aOVd', '7114956'), + (57957, 606, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4ol7aOVd', '7153615'), + (57958, 606, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4ol7aOVd', '7159484'), + (57959, 606, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4ol7aOVd', '7178446'), + (57960, 607, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mq1a80qm', '6045684'), + (57961, 608, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxDRpJ1d', '6045684'), + (57962, 609, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'daJnKRDm', '4736503'), + (57963, 609, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daJnKRDm', '4736504'), + (57964, 609, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'daJnKRDm', '5132533'), + (57965, 609, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'daJnKRDm', '5186582'), + (57966, 609, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'daJnKRDm', '5186583'), + (57967, 609, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'daJnKRDm', '5186585'), + (57968, 609, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'daJnKRDm', '5190437'), + (57969, 609, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'daJnKRDm', '5196763'), + (57970, 609, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'daJnKRDm', '5199460'), + (57971, 609, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'daJnKRDm', '5215989'), + (57972, 609, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daJnKRDm', '6045684'), + (57973, 610, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dVbq39Zd', '4736504'), + (57974, 610, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'dVbq39Zd', '5132533'), + (57975, 610, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dVbq39Zd', '5186582'), + (57976, 610, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dVbq39Zd', '5186583'), + (57977, 610, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dVbq39Zd', '5186585'), + (57978, 610, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVbq39Zd', '5190437'), + (57979, 610, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'dVbq39Zd', '5196763'), + (57980, 610, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'dVbq39Zd', '5199460'), + (57981, 610, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVbq39Zd', '5215989'), + (57982, 610, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVbq39Zd', '5223686'), + (57983, 610, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVbq39Zd', '5227432'), + (57984, 610, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVbq39Zd', '6045684'), + (57985, 611, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'daBenyDm', '4736497'), + (57986, 611, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'daBenyDm', '4736499'), + (57987, 611, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'daBenyDm', '4736500'), + (57988, 611, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'daBenyDm', '4736503'), + (57989, 611, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daBenyDm', '4736504'), + (57990, 611, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'daBenyDm', '4746789'), + (57991, 611, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'daBenyDm', '4753929'), + (57992, 611, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'daBenyDm', '5038850'), + (57993, 611, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'daBenyDm', '5045826'), + (57994, 611, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'daBenyDm', '5132533'), + (57995, 611, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daBenyDm', '6045684'), + (57996, 612, 10, 'attending', '2020-03-28 11:51:19', '2025-12-17 19:47:56', 'NmLXxVam', '2958053'), + (57997, 612, 12, 'not_attending', '2020-03-31 12:11:41', '2025-12-17 19:47:56', 'NmLXxVam', '2958056'), + (57998, 612, 17, 'attending', '2020-03-22 10:29:55', '2025-12-17 19:47:58', 'NmLXxVam', '2958061'), + (57999, 612, 22, 'not_attending', '2020-05-24 12:21:29', '2025-12-17 19:47:57', 'NmLXxVam', '2958066'), + (58000, 612, 23, 'not_attending', '2020-06-02 08:11:35', '2025-12-17 19:47:58', 'NmLXxVam', '2958067'), + (58001, 612, 24, 'not_attending', '2020-06-02 08:11:37', '2025-12-17 19:47:55', 'NmLXxVam', '2958068'), + (58002, 612, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'NmLXxVam', '2961309'), + (58003, 612, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'NmLXxVam', '2961895'), + (58004, 612, 36, 'maybe', '2020-03-29 11:40:24', '2025-12-17 19:47:57', 'NmLXxVam', '2969208'), + (58005, 612, 38, 'maybe', '2020-03-30 14:27:35', '2025-12-17 19:47:56', 'NmLXxVam', '2969751'), + (58006, 612, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'NmLXxVam', '2971546'), + (58007, 612, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'NmLXxVam', '2974534'), + (58008, 612, 46, 'attending', '2020-04-06 18:43:18', '2025-12-17 19:47:57', 'NmLXxVam', '2974955'), + (58009, 612, 49, 'not_attending', '2020-05-24 12:21:52', '2025-12-17 19:47:58', 'NmLXxVam', '2975274'), + (58010, 612, 50, 'not_attending', '2020-07-26 03:02:14', '2025-12-17 19:47:55', 'NmLXxVam', '2975275'), + (58011, 612, 51, 'not_attending', '2020-06-02 08:11:51', '2025-12-17 19:47:55', 'NmLXxVam', '2975276'), + (58012, 612, 52, 'not_attending', '2020-06-02 08:11:42', '2025-12-17 19:47:58', 'NmLXxVam', '2975277'), + (58013, 612, 54, 'not_attending', '2020-08-11 01:00:06', '2025-12-17 19:47:56', 'NmLXxVam', '2975279'), + (58014, 612, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'NmLXxVam', '2975384'), + (58015, 612, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'NmLXxVam', '2975385'), + (58016, 612, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'NmLXxVam', '2976575'), + (58017, 612, 59, 'maybe', '2020-05-05 22:14:15', '2025-12-17 19:47:57', 'NmLXxVam', '2977128'), + (58018, 612, 62, 'maybe', '2020-05-12 19:45:38', '2025-12-17 19:47:57', 'NmLXxVam', '2977131'), + (58019, 612, 63, 'attending', '2020-05-05 22:15:52', '2025-12-17 19:47:57', 'NmLXxVam', '2977132'), + (58020, 612, 64, 'not_attending', '2020-06-02 08:10:22', '2025-12-17 19:47:58', 'NmLXxVam', '2977133'), + (58021, 612, 65, 'attending', '2020-05-05 22:15:54', '2025-12-17 19:47:57', 'NmLXxVam', '2977134'), + (58022, 612, 66, 'attending', '2020-06-02 08:11:15', '2025-12-17 19:47:58', 'NmLXxVam', '2977135'), + (58023, 612, 67, 'maybe', '2020-06-16 22:31:04', '2025-12-17 19:47:58', 'NmLXxVam', '2977136'), + (58024, 612, 68, 'maybe', '2020-06-23 21:32:59', '2025-12-17 19:47:58', 'NmLXxVam', '2977137'), + (58025, 612, 69, 'maybe', '2020-07-02 22:31:04', '2025-12-17 19:47:55', 'NmLXxVam', '2977138'), + (58026, 612, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'NmLXxVam', '2977343'), + (58027, 612, 72, 'maybe', '2020-05-05 22:16:13', '2025-12-17 19:47:57', 'NmLXxVam', '2977812'), + (58028, 612, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'NmLXxVam', '2977931'), + (58029, 612, 74, 'attending', '2020-04-16 16:24:32', '2025-12-17 19:47:57', 'NmLXxVam', '2978244'), + (58030, 612, 75, 'maybe', '2020-04-25 19:35:09', '2025-12-17 19:47:57', 'NmLXxVam', '2978245'), + (58031, 612, 76, 'attending', '2020-04-16 16:24:36', '2025-12-17 19:47:57', 'NmLXxVam', '2978246'), + (58032, 612, 77, 'maybe', '2020-05-09 20:44:27', '2025-12-17 19:47:57', 'NmLXxVam', '2978247'), + (58033, 612, 78, 'attending', '2020-05-04 21:37:28', '2025-12-17 19:47:57', 'NmLXxVam', '2978249'), + (58034, 612, 79, 'attending', '2020-05-04 21:37:30', '2025-12-17 19:47:57', 'NmLXxVam', '2978250'), + (58035, 612, 80, 'maybe', '2020-06-06 21:22:38', '2025-12-17 19:47:58', 'NmLXxVam', '2978251'), + (58036, 612, 81, 'attending', '2020-06-02 08:10:59', '2025-12-17 19:47:58', 'NmLXxVam', '2978252'), + (58037, 612, 82, 'maybe', '2020-04-11 01:51:43', '2025-12-17 19:47:57', 'NmLXxVam', '2978433'), + (58038, 612, 83, 'maybe', '2020-05-05 22:16:23', '2025-12-17 19:47:57', 'NmLXxVam', '2978438'), + (58039, 612, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'NmLXxVam', '2980871'), + (58040, 612, 86, 'not_attending', '2020-04-14 18:59:27', '2025-12-17 19:47:57', 'NmLXxVam', '2981388'), + (58041, 612, 92, 'maybe', '2020-04-19 11:31:16', '2025-12-17 19:47:57', 'NmLXxVam', '2986743'), + (58042, 612, 96, 'not_attending', '2020-05-05 22:16:07', '2025-12-17 19:47:57', 'NmLXxVam', '2987453'), + (58043, 612, 97, 'not_attending', '2020-05-05 22:16:10', '2025-12-17 19:47:57', 'NmLXxVam', '2987454'), + (58044, 612, 98, 'not_attending', '2020-05-05 22:16:00', '2025-12-17 19:47:57', 'NmLXxVam', '2987455'), + (58045, 612, 100, 'attending', '2020-04-24 19:46:51', '2025-12-17 19:47:57', 'NmLXxVam', '2989142'), + (58046, 612, 104, 'maybe', '2020-04-24 14:49:28', '2025-12-17 19:47:57', 'NmLXxVam', '2991471'), + (58047, 612, 105, 'maybe', '2020-05-05 22:16:29', '2025-12-17 19:47:57', 'NmLXxVam', '2993500'), + (58048, 612, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'NmLXxVam', '2993501'), + (58049, 612, 107, 'maybe', '2020-05-05 22:16:35', '2025-12-17 19:47:57', 'NmLXxVam', '2993502'), + (58050, 612, 108, 'maybe', '2020-05-05 22:16:32', '2025-12-17 19:47:57', 'NmLXxVam', '2993504'), + (58051, 612, 109, 'maybe', '2020-05-05 22:16:04', '2025-12-17 19:47:57', 'NmLXxVam', '2994480'), + (58052, 612, 111, 'not_attending', '2020-06-02 08:11:06', '2025-12-17 19:47:58', 'NmLXxVam', '2994907'), + (58053, 612, 115, 'not_attending', '2020-05-16 13:27:55', '2025-12-17 19:47:57', 'NmLXxVam', '3001217'), + (58054, 612, 121, 'maybe', '2020-05-24 12:21:08', '2025-12-17 19:47:57', 'NmLXxVam', '3023063'), + (58055, 612, 123, 'not_attending', '2020-05-24 12:21:02', '2025-12-17 19:47:57', 'NmLXxVam', '3023729'), + (58056, 612, 124, 'maybe', '2020-05-24 12:21:26', '2025-12-17 19:47:57', 'NmLXxVam', '3023809'), + (58057, 612, 125, 'maybe', '2020-05-19 13:18:11', '2025-12-17 19:47:57', 'NmLXxVam', '3023987'), + (58058, 612, 126, 'maybe', '2020-05-24 12:20:48', '2025-12-17 19:47:57', 'NmLXxVam', '3024022'), + (58059, 612, 129, 'maybe', '2020-05-24 12:21:47', '2025-12-17 19:47:58', 'NmLXxVam', '3028743'), + (58060, 612, 130, 'maybe', '2020-05-28 22:30:32', '2025-12-17 19:47:57', 'NmLXxVam', '3028781'), + (58061, 612, 132, 'not_attending', '2020-05-24 12:21:55', '2025-12-17 19:47:58', 'NmLXxVam', '3033648'), + (58062, 612, 133, 'maybe', '2020-06-02 08:11:24', '2025-12-17 19:47:58', 'NmLXxVam', '3034321'), + (58063, 612, 134, 'not_attending', '2020-05-24 12:21:05', '2025-12-17 19:47:57', 'NmLXxVam', '3034367'), + (58064, 612, 135, 'maybe', '2020-05-24 12:21:15', '2025-12-17 19:47:57', 'NmLXxVam', '3034368'), + (58065, 612, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'NmLXxVam', '3035881'), + (58066, 612, 137, 'maybe', '2020-06-02 08:10:49', '2025-12-17 19:47:58', 'NmLXxVam', '3042188'), + (58067, 612, 138, 'maybe', '2020-06-02 08:11:30', '2025-12-17 19:47:58', 'NmLXxVam', '3042932'), + (58068, 612, 139, 'not_attending', '2020-06-02 08:11:10', '2025-12-17 19:47:58', 'NmLXxVam', '3046190'), + (58069, 612, 141, 'not_attending', '2020-06-02 08:10:30', '2025-12-17 19:47:58', 'NmLXxVam', '3049830'), + (58070, 612, 143, 'not_attending', '2020-06-02 08:11:13', '2025-12-17 19:47:58', 'NmLXxVam', '3049983'), + (58071, 612, 147, 'not_attending', '2020-08-11 01:00:56', '2025-12-17 19:47:56', 'NmLXxVam', '3058684'), + (58072, 612, 151, 'not_attending', '2020-08-11 01:01:50', '2025-12-17 19:47:56', 'NmLXxVam', '3058688'), + (58073, 612, 152, 'not_attending', '2020-08-11 01:01:56', '2025-12-17 19:47:56', 'NmLXxVam', '3058689'), + (58074, 612, 155, 'not_attending', '2020-08-11 01:00:28', '2025-12-17 19:47:56', 'NmLXxVam', '3058692'), + (58075, 612, 156, 'not_attending', '2020-08-31 23:25:54', '2025-12-17 19:47:56', 'NmLXxVam', '3058693'), + (58076, 612, 157, 'not_attending', '2020-08-31 23:25:51', '2025-12-17 19:47:56', 'NmLXxVam', '3058694'), + (58077, 612, 158, 'not_attending', '2020-08-31 23:26:01', '2025-12-17 19:47:52', 'NmLXxVam', '3058695'), + (58078, 612, 159, 'not_attending', '2020-08-31 23:26:30', '2025-12-17 19:47:52', 'NmLXxVam', '3058696'), + (58079, 612, 160, 'not_attending', '2020-09-28 23:43:37', '2025-12-17 19:47:52', 'NmLXxVam', '3058697'), + (58080, 612, 161, 'not_attending', '2020-09-28 23:45:30', '2025-12-17 19:47:52', 'NmLXxVam', '3058698'), + (58081, 612, 162, 'not_attending', '2020-09-28 23:45:33', '2025-12-17 19:47:52', 'NmLXxVam', '3058699'), + (58082, 612, 163, 'not_attending', '2020-09-28 23:43:31', '2025-12-17 19:47:53', 'NmLXxVam', '3058700'), + (58083, 612, 164, 'not_attending', '2020-11-02 01:11:13', '2025-12-17 19:47:54', 'NmLXxVam', '3058701'), + (58084, 612, 165, 'not_attending', '2020-11-08 00:32:55', '2025-12-17 19:47:53', 'NmLXxVam', '3058702'), + (58085, 612, 166, 'not_attending', '2020-11-02 01:10:45', '2025-12-17 19:47:54', 'NmLXxVam', '3058704'), + (58086, 612, 167, 'not_attending', '2020-11-02 01:10:41', '2025-12-17 19:47:54', 'NmLXxVam', '3058705'), + (58087, 612, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'NmLXxVam', '3058959'), + (58088, 612, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'NmLXxVam', '3067093'), + (58089, 612, 181, 'not_attending', '2020-06-20 01:52:26', '2025-12-17 19:47:58', 'NmLXxVam', '3074513'), + (58090, 612, 182, 'not_attending', '2020-06-27 17:32:35', '2025-12-17 19:47:55', 'NmLXxVam', '3074514'), + (58091, 612, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'NmLXxVam', '3075228'), + (58092, 612, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'NmLXxVam', '3075456'), + (58093, 612, 186, 'not_attending', '2020-06-18 20:23:22', '2025-12-17 19:47:55', 'NmLXxVam', '3083791'), + (58094, 612, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'NmLXxVam', '3085151'), + (58095, 612, 191, 'attending', '2020-07-07 22:22:42', '2025-12-17 19:47:55', 'NmLXxVam', '3087259'), + (58096, 612, 193, 'attending', '2020-07-07 22:22:44', '2025-12-17 19:47:55', 'NmLXxVam', '3087261'), + (58097, 612, 194, 'attending', '2020-07-07 22:22:46', '2025-12-17 19:47:55', 'NmLXxVam', '3087262'), + (58098, 612, 196, 'maybe', '2020-08-10 09:58:14', '2025-12-17 19:47:56', 'NmLXxVam', '3087265'), + (58099, 612, 197, 'maybe', '2020-08-22 22:04:48', '2025-12-17 19:47:56', 'NmLXxVam', '3087266'), + (58100, 612, 198, 'maybe', '2020-08-29 11:16:38', '2025-12-17 19:47:56', 'NmLXxVam', '3087267'), + (58101, 612, 199, 'attending', '2020-08-11 01:01:54', '2025-12-17 19:47:56', 'NmLXxVam', '3087268'), + (58102, 612, 200, 'maybe', '2020-08-31 23:24:43', '2025-12-17 19:47:56', 'NmLXxVam', '3087269'), + (58103, 612, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'NmLXxVam', '3088653'), + (58104, 612, 203, 'attending', '2020-06-22 09:52:25', '2025-12-17 19:47:58', 'NmLXxVam', '3091624'), + (58105, 612, 205, 'maybe', '2020-07-08 09:39:54', '2025-12-17 19:47:55', 'NmLXxVam', '3104804'), + (58106, 612, 207, 'maybe', '2020-07-24 22:10:32', '2025-12-17 19:47:55', 'NmLXxVam', '3104807'), + (58107, 612, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'NmLXxVam', '3106813'), + (58108, 612, 214, 'maybe', '2020-07-08 09:39:40', '2025-12-17 19:47:55', 'NmLXxVam', '3124139'), + (58109, 612, 219, 'not_attending', '2020-08-11 01:00:44', '2025-12-17 19:47:56', 'NmLXxVam', '3129263'), + (58110, 612, 220, 'not_attending', '2020-08-11 01:02:04', '2025-12-17 19:47:56', 'NmLXxVam', '3129264'), + (58111, 612, 221, 'not_attending', '2020-08-31 23:27:39', '2025-12-17 19:47:56', 'NmLXxVam', '3129265'), + (58112, 612, 223, 'attending', '2020-08-31 23:25:39', '2025-12-17 19:47:56', 'NmLXxVam', '3129980'), + (58113, 612, 224, 'maybe', '2020-07-26 03:02:00', '2025-12-17 19:47:55', 'NmLXxVam', '3130712'), + (58114, 612, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'NmLXxVam', '3132817'), + (58115, 612, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'NmLXxVam', '3132820'), + (58116, 612, 230, 'maybe', '2020-07-26 03:02:09', '2025-12-17 19:47:55', 'NmLXxVam', '3139232'), + (58117, 612, 233, 'attending', '2020-07-20 09:43:12', '2025-12-17 19:47:55', 'NmLXxVam', '3139773'), + (58118, 612, 237, 'not_attending', '2020-07-26 03:02:12', '2025-12-17 19:47:55', 'NmLXxVam', '3142085'), + (58119, 612, 238, 'maybe', '2020-07-26 03:02:20', '2025-12-17 19:47:55', 'NmLXxVam', '3145669'), + (58120, 612, 239, 'not_attending', '2020-08-11 01:01:14', '2025-12-17 19:47:56', 'NmLXxVam', '3149470'), + (58121, 612, 240, 'not_attending', '2020-08-31 23:25:03', '2025-12-17 19:47:56', 'NmLXxVam', '3149471'), + (58122, 612, 241, 'not_attending', '2020-08-31 23:27:02', '2025-12-17 19:47:52', 'NmLXxVam', '3149472'), + (58123, 612, 242, 'not_attending', '2020-08-31 23:26:39', '2025-12-17 19:47:56', 'NmLXxVam', '3149473'), + (58124, 612, 243, 'not_attending', '2020-11-04 00:47:00', '2025-12-17 19:47:53', 'NmLXxVam', '3149474'), + (58125, 612, 244, 'not_attending', '2020-09-28 23:45:10', '2025-12-17 19:47:52', 'NmLXxVam', '3149475'), + (58126, 612, 245, 'not_attending', '2020-11-02 01:11:22', '2025-12-17 19:47:54', 'NmLXxVam', '3149476'), + (58127, 612, 246, 'not_attending', '2020-12-15 02:37:08', '2025-12-17 19:47:55', 'NmLXxVam', '3149477'), + (58128, 612, 248, 'not_attending', '2021-01-02 13:45:03', '2025-12-17 19:47:48', 'NmLXxVam', '3149479'), + (58129, 612, 249, 'not_attending', '2020-11-02 01:11:18', '2025-12-17 19:47:54', 'NmLXxVam', '3149480'), + (58130, 612, 250, 'not_attending', '2021-02-03 00:03:42', '2025-12-17 19:47:50', 'NmLXxVam', '3149481'), + (58131, 612, 251, 'not_attending', '2021-01-02 13:45:05', '2025-12-17 19:47:49', 'NmLXxVam', '3149482'), + (58132, 612, 252, 'not_attending', '2021-02-03 00:04:55', '2025-12-17 19:47:50', 'NmLXxVam', '3149483'), + (58133, 612, 253, 'not_attending', '2021-03-01 13:42:42', '2025-12-17 19:47:44', 'NmLXxVam', '3149484'), + (58134, 612, 254, 'not_attending', '2021-03-01 04:08:22', '2025-12-17 19:47:51', 'NmLXxVam', '3149485'), + (58135, 612, 255, 'not_attending', '2021-03-01 13:42:39', '2025-12-17 19:47:43', 'NmLXxVam', '3149486'), + (58136, 612, 256, 'not_attending', '2021-05-03 18:28:49', '2025-12-17 19:47:46', 'NmLXxVam', '3149487'), + (58137, 612, 257, 'maybe', '2021-04-09 00:11:05', '2025-12-17 19:47:45', 'NmLXxVam', '3149488'), + (58138, 612, 258, 'not_attending', '2021-05-13 00:12:53', '2025-12-17 19:47:47', 'NmLXxVam', '3149489'), + (58139, 612, 259, 'not_attending', '2021-05-13 00:12:24', '2025-12-17 19:47:46', 'NmLXxVam', '3149490'), + (58140, 612, 260, 'not_attending', '2021-06-13 19:57:39', '2025-12-17 19:47:48', 'NmLXxVam', '3149491'), + (58141, 612, 262, 'not_attending', '2021-06-13 19:58:09', '2025-12-17 19:47:38', 'NmLXxVam', '3149493'), + (58142, 612, 263, 'maybe', '2020-07-26 03:01:30', '2025-12-17 19:47:55', 'NmLXxVam', '3149671'), + (58143, 612, 270, 'maybe', '2020-08-11 00:59:40', '2025-12-17 19:47:56', 'NmLXxVam', '3154457'), + (58144, 612, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'NmLXxVam', '3155321'), + (58145, 612, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'NmLXxVam', '3162006'), + (58146, 612, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'NmLXxVam', '3163442'), + (58147, 612, 279, 'maybe', '2020-08-11 01:00:22', '2025-12-17 19:47:56', 'NmLXxVam', '3165202'), + (58148, 612, 280, 'not_attending', '2020-08-11 00:59:51', '2025-12-17 19:47:56', 'NmLXxVam', '3166942'), + (58149, 612, 284, 'maybe', '2020-08-11 01:00:12', '2025-12-17 19:47:56', 'NmLXxVam', '3169556'), + (58150, 612, 285, 'maybe', '2020-08-11 01:01:06', '2025-12-17 19:47:56', 'NmLXxVam', '3170245'), + (58151, 612, 286, 'maybe', '2020-08-11 01:01:31', '2025-12-17 19:47:56', 'NmLXxVam', '3170246'), + (58152, 612, 287, 'maybe', '2020-08-11 01:01:42', '2025-12-17 19:47:56', 'NmLXxVam', '3170247'), + (58153, 612, 288, 'maybe', '2020-08-11 01:02:11', '2025-12-17 19:47:56', 'NmLXxVam', '3170249'), + (58154, 612, 289, 'maybe', '2020-08-11 01:01:59', '2025-12-17 19:47:56', 'NmLXxVam', '3170250'), + (58155, 612, 290, 'maybe', '2020-08-31 23:25:08', '2025-12-17 19:47:56', 'NmLXxVam', '3170251'), + (58156, 612, 291, 'maybe', '2020-08-31 23:25:15', '2025-12-17 19:47:56', 'NmLXxVam', '3170252'), + (58157, 612, 293, 'maybe', '2020-08-11 01:00:40', '2025-12-17 19:47:56', 'NmLXxVam', '3172832'), + (58158, 612, 294, 'maybe', '2020-08-11 01:01:23', '2025-12-17 19:47:56', 'NmLXxVam', '3172833'), + (58159, 612, 295, 'maybe', '2020-08-11 01:02:08', '2025-12-17 19:47:56', 'NmLXxVam', '3172834'), + (58160, 612, 296, 'maybe', '2020-08-31 23:25:29', '2025-12-17 19:47:56', 'NmLXxVam', '3172876'), + (58161, 612, 297, 'attending', '2020-08-11 00:59:35', '2025-12-17 19:47:56', 'NmLXxVam', '3173937'), + (58162, 612, 298, 'maybe', '2020-08-11 01:01:36', '2025-12-17 19:47:56', 'NmLXxVam', '3174556'), + (58163, 612, 300, 'maybe', '2020-08-31 23:26:20', '2025-12-17 19:47:56', 'NmLXxVam', '3177986'), + (58164, 612, 302, 'maybe', '2020-08-16 01:19:55', '2025-12-17 19:47:56', 'NmLXxVam', '3178028'), + (58165, 612, 304, 'maybe', '2020-08-31 23:24:54', '2025-12-17 19:47:56', 'NmLXxVam', '3178916'), + (58166, 612, 305, 'attending', '2020-08-18 10:09:51', '2025-12-17 19:47:56', 'NmLXxVam', '3179555'), + (58167, 612, 308, 'attending', '2020-08-17 22:56:40', '2025-12-17 19:47:56', 'NmLXxVam', '3183341'), + (58168, 612, 310, 'maybe', '2020-08-22 22:41:11', '2025-12-17 19:47:56', 'NmLXxVam', '3186005'), + (58169, 612, 311, 'not_attending', '2020-09-12 22:46:14', '2025-12-17 19:47:56', 'NmLXxVam', '3186057'), + (58170, 612, 312, 'maybe', '2020-08-31 23:25:12', '2025-12-17 19:47:56', 'NmLXxVam', '3187795'), + (58171, 612, 313, 'maybe', '2020-08-22 22:41:16', '2025-12-17 19:47:56', 'NmLXxVam', '3188127'), + (58172, 612, 315, 'maybe', '2020-08-31 23:25:00', '2025-12-17 19:47:56', 'NmLXxVam', '3189085'), + (58173, 612, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'NmLXxVam', '3191735'), + (58174, 612, 319, 'attending', '2020-08-31 23:11:21', '2025-12-17 19:47:56', 'NmLXxVam', '3194179'), + (58175, 612, 320, 'not_attending', '2020-08-31 23:27:19', '2025-12-17 19:47:56', 'NmLXxVam', '3195552'), + (58176, 612, 321, 'maybe', '2020-08-31 23:24:46', '2025-12-17 19:47:56', 'NmLXxVam', '3197077'), + (58177, 612, 322, 'maybe', '2020-08-31 23:27:33', '2025-12-17 19:47:56', 'NmLXxVam', '3197080'), + (58178, 612, 323, 'maybe', '2020-08-31 23:27:36', '2025-12-17 19:47:56', 'NmLXxVam', '3197081'), + (58179, 612, 324, 'maybe', '2020-08-31 23:28:05', '2025-12-17 19:47:56', 'NmLXxVam', '3197082'), + (58180, 612, 325, 'maybe', '2020-08-31 23:27:51', '2025-12-17 19:47:51', 'NmLXxVam', '3197083'), + (58181, 612, 326, 'maybe', '2020-09-13 03:31:05', '2025-12-17 19:47:52', 'NmLXxVam', '3197084'), + (58182, 612, 327, 'maybe', '2020-08-31 23:27:08', '2025-12-17 19:47:52', 'NmLXxVam', '3197085'), + (58183, 612, 328, 'maybe', '2020-08-31 23:26:52', '2025-12-17 19:47:52', 'NmLXxVam', '3197086'), + (58184, 612, 329, 'maybe', '2020-08-31 23:28:16', '2025-12-17 19:47:52', 'NmLXxVam', '3197087'), + (58185, 612, 330, 'maybe', '2020-08-31 23:24:49', '2025-12-17 19:47:56', 'NmLXxVam', '3197322'), + (58186, 612, 333, 'maybe', '2020-09-28 23:44:17', '2025-12-17 19:47:52', 'NmLXxVam', '3199782'), + (58187, 612, 334, 'maybe', '2020-10-09 00:52:58', '2025-12-17 19:47:52', 'NmLXxVam', '3199784'), + (58188, 612, 335, 'maybe', '2020-09-01 22:32:11', '2025-12-17 19:47:56', 'NmLXxVam', '3200209'), + (58189, 612, 338, 'not_attending', '2020-09-06 02:22:52', '2025-12-17 19:47:56', 'NmLXxVam', '3203106'), + (58190, 612, 339, 'maybe', '2020-09-09 23:25:35', '2025-12-17 19:47:56', 'NmLXxVam', '3204469'), + (58191, 612, 341, 'attending', '2020-09-13 03:31:10', '2025-12-17 19:47:52', 'NmLXxVam', '3204471'), + (58192, 612, 342, 'not_attending', '2020-09-28 23:44:05', '2025-12-17 19:47:52', 'NmLXxVam', '3204472'), + (58193, 612, 343, 'maybe', '2020-09-13 03:31:14', '2025-12-17 19:47:56', 'NmLXxVam', '3206759'), + (58194, 612, 344, 'maybe', '2020-10-14 12:36:24', '2025-12-17 19:47:53', 'NmLXxVam', '3206906'), + (58195, 612, 346, 'maybe', '2020-09-13 21:43:36', '2025-12-17 19:47:56', 'NmLXxVam', '3207515'), + (58196, 612, 347, 'maybe', '2020-09-13 03:30:57', '2025-12-17 19:47:51', 'NmLXxVam', '3207930'), + (58197, 612, 348, 'maybe', '2020-09-13 03:30:34', '2025-12-17 19:47:52', 'NmLXxVam', '3209159'), + (58198, 612, 354, 'not_attending', '2020-09-13 21:43:47', '2025-12-17 19:47:56', 'NmLXxVam', '3212570'), + (58199, 612, 359, 'not_attending', '2020-09-13 21:50:36', '2025-12-17 19:47:56', 'NmLXxVam', '3212624'), + (58200, 612, 362, 'maybe', '2020-09-22 23:33:38', '2025-12-17 19:47:52', 'NmLXxVam', '3214207'), + (58201, 612, 363, 'not_attending', '2020-09-21 09:59:45', '2025-12-17 19:47:52', 'NmLXxVam', '3217037'), + (58202, 612, 365, 'not_attending', '2020-09-21 09:59:48', '2025-12-17 19:47:52', 'NmLXxVam', '3218510'), + (58203, 612, 368, 'maybe', '2020-09-28 23:44:00', '2025-12-17 19:47:52', 'NmLXxVam', '3221403'), + (58204, 612, 369, 'maybe', '2020-09-28 23:44:28', '2025-12-17 19:47:52', 'NmLXxVam', '3221404'), + (58205, 612, 370, 'maybe', '2020-09-28 23:44:31', '2025-12-17 19:47:52', 'NmLXxVam', '3221405'), + (58206, 612, 371, 'not_attending', '2020-10-09 00:53:36', '2025-12-17 19:47:52', 'NmLXxVam', '3221406'), + (58207, 612, 372, 'maybe', '2020-09-28 23:45:00', '2025-12-17 19:47:52', 'NmLXxVam', '3221407'), + (58208, 612, 373, 'maybe', '2020-09-28 23:45:41', '2025-12-17 19:47:52', 'NmLXxVam', '3221413'), + (58209, 612, 374, 'maybe', '2020-09-28 23:44:45', '2025-12-17 19:47:53', 'NmLXxVam', '3221415'), + (58210, 612, 375, 'attending', '2020-09-28 23:45:23', '2025-12-17 19:47:52', 'NmLXxVam', '3222825'), + (58211, 612, 376, 'maybe', '2020-10-09 00:53:29', '2025-12-17 19:47:52', 'NmLXxVam', '3222827'), + (58212, 612, 377, 'maybe', '2020-09-28 23:44:51', '2025-12-17 19:47:53', 'NmLXxVam', '3222828'), + (58213, 612, 379, 'attending', '2020-09-28 23:44:13', '2025-12-17 19:47:52', 'NmLXxVam', '3226266'), + (58214, 612, 382, 'maybe', '2020-09-28 23:44:24', '2025-12-17 19:47:52', 'NmLXxVam', '3226873'), + (58215, 612, 383, 'not_attending', '2020-09-28 23:43:49', '2025-12-17 19:47:52', 'NmLXxVam', '3227946'), + (58216, 612, 384, 'attending', '2020-09-29 00:34:47', '2025-12-17 19:47:52', 'NmLXxVam', '3228696'), + (58217, 612, 385, 'attending', '2020-09-28 23:43:19', '2025-12-17 19:47:52', 'NmLXxVam', '3228698'), + (58218, 612, 386, 'attending', '2020-10-10 21:42:06', '2025-12-17 19:47:52', 'NmLXxVam', '3228699'), + (58219, 612, 387, 'attending', '2020-09-28 23:43:27', '2025-12-17 19:47:52', 'NmLXxVam', '3228700'), + (58220, 612, 388, 'attending', '2020-09-28 23:43:28', '2025-12-17 19:47:52', 'NmLXxVam', '3228701'), + (58221, 612, 390, 'attending', '2020-10-04 23:16:20', '2025-12-17 19:47:52', 'NmLXxVam', '3231510'), + (58222, 612, 391, 'not_attending', '2020-10-09 00:53:31', '2025-12-17 19:47:52', 'NmLXxVam', '3236446'), + (58223, 612, 392, 'not_attending', '2020-10-09 00:54:04', '2025-12-17 19:47:53', 'NmLXxVam', '3236447'), + (58224, 612, 393, 'not_attending', '2021-06-13 19:58:41', '2025-12-17 19:47:38', 'NmLXxVam', '3236448'), + (58225, 612, 394, 'not_attending', '2021-01-02 13:44:49', '2025-12-17 19:47:48', 'NmLXxVam', '3236449'), + (58226, 612, 396, 'not_attending', '2021-04-22 21:15:27', '2025-12-17 19:47:46', 'NmLXxVam', '3236451'), + (58227, 612, 397, 'not_attending', '2021-05-13 00:13:00', '2025-12-17 19:47:47', 'NmLXxVam', '3236452'), + (58228, 612, 398, 'not_attending', '2021-01-02 13:45:08', '2025-12-17 19:47:49', 'NmLXxVam', '3236453'), + (58229, 612, 399, 'not_attending', '2020-11-02 01:11:39', '2025-12-17 19:47:54', 'NmLXxVam', '3236454'), + (58230, 612, 400, 'not_attending', '2021-01-02 13:45:23', '2025-12-17 19:47:50', 'NmLXxVam', '3236455'), + (58231, 612, 401, 'not_attending', '2021-05-13 00:11:51', '2025-12-17 19:47:46', 'NmLXxVam', '3236456'), + (58232, 612, 402, 'not_attending', '2021-06-13 19:58:16', '2025-12-17 19:47:39', 'NmLXxVam', '3236457'), + (58233, 612, 403, 'not_attending', '2021-03-01 04:08:08', '2025-12-17 19:47:51', 'NmLXxVam', '3236458'), + (58234, 612, 404, 'not_attending', '2021-03-01 13:42:29', '2025-12-17 19:47:51', 'NmLXxVam', '3236460'), + (58235, 612, 405, 'not_attending', '2021-07-20 15:03:58', '2025-12-17 19:47:40', 'NmLXxVam', '3236462'), + (58236, 612, 406, 'not_attending', '2021-03-15 11:29:29', '2025-12-17 19:47:44', 'NmLXxVam', '3236464'), + (58237, 612, 407, 'not_attending', '2021-04-09 00:10:38', '2025-12-17 19:47:44', 'NmLXxVam', '3236465'), + (58238, 612, 408, 'not_attending', '2021-02-03 00:04:44', '2025-12-17 19:47:50', 'NmLXxVam', '3236466'), + (58239, 612, 409, 'not_attending', '2020-11-22 04:41:06', '2025-12-17 19:47:54', 'NmLXxVam', '3236467'), + (58240, 612, 410, 'not_attending', '2020-11-02 01:11:26', '2025-12-17 19:47:54', 'NmLXxVam', '3236469'), + (58241, 612, 411, 'maybe', '2020-10-09 00:53:13', '2025-12-17 19:47:52', 'NmLXxVam', '3236596'), + (58242, 612, 413, 'maybe', '2020-10-09 00:53:48', '2025-12-17 19:47:52', 'NmLXxVam', '3236670'), + (58243, 612, 414, 'maybe', '2020-10-09 00:53:40', '2025-12-17 19:47:52', 'NmLXxVam', '3237277'), + (58244, 612, 415, 'maybe', '2020-10-09 00:53:18', '2025-12-17 19:47:52', 'NmLXxVam', '3238044'), + (58245, 612, 416, 'maybe', '2020-10-09 00:53:02', '2025-12-17 19:47:52', 'NmLXxVam', '3238073'), + (58246, 612, 417, 'maybe', '2020-10-09 00:53:22', '2025-12-17 19:47:52', 'NmLXxVam', '3238779'), + (58247, 612, 418, 'maybe', '2020-10-14 10:30:01', '2025-12-17 19:47:52', 'NmLXxVam', '3241728'), + (58248, 612, 419, 'maybe', '2020-10-13 22:54:08', '2025-12-17 19:47:52', 'NmLXxVam', '3242234'), + (58249, 612, 420, 'not_attending', '2020-10-14 10:29:50', '2025-12-17 19:47:52', 'NmLXxVam', '3245293'), + (58250, 612, 422, 'not_attending', '2020-10-25 16:52:05', '2025-12-17 19:47:53', 'NmLXxVam', '3245295'), + (58251, 612, 423, 'not_attending', '2020-10-25 16:51:51', '2025-12-17 19:47:53', 'NmLXxVam', '3245296'), + (58252, 612, 424, 'maybe', '2020-10-12 00:56:35', '2025-12-17 19:47:52', 'NmLXxVam', '3245751'), + (58253, 612, 426, 'maybe', '2020-10-14 12:16:11', '2025-12-17 19:47:52', 'NmLXxVam', '3250232'), + (58254, 612, 427, 'attending', '2020-10-14 12:36:21', '2025-12-17 19:47:53', 'NmLXxVam', '3250233'), + (58255, 612, 428, 'maybe', '2020-10-25 16:52:31', '2025-12-17 19:47:53', 'NmLXxVam', '3250332'), + (58256, 612, 429, 'attending', '2020-11-22 04:41:01', '2025-12-17 19:47:54', 'NmLXxVam', '3250523'), + (58257, 612, 431, 'not_attending', '2020-10-25 16:52:38', '2025-12-17 19:47:53', 'NmLXxVam', '3253225'), + (58258, 612, 432, 'maybe', '2020-10-25 16:51:54', '2025-12-17 19:47:53', 'NmLXxVam', '3254416'), + (58259, 612, 433, 'maybe', '2020-10-25 16:51:56', '2025-12-17 19:47:53', 'NmLXxVam', '3254417'), + (58260, 612, 434, 'maybe', '2020-11-02 01:11:29', '2025-12-17 19:47:53', 'NmLXxVam', '3254418'), + (58261, 612, 437, 'maybe', '2020-10-25 16:52:09', '2025-12-17 19:47:53', 'NmLXxVam', '3256160'), + (58262, 612, 438, 'not_attending', '2020-10-25 16:51:39', '2025-12-17 19:47:53', 'NmLXxVam', '3256163'), + (58263, 612, 439, 'not_attending', '2020-10-25 16:52:23', '2025-12-17 19:47:53', 'NmLXxVam', '3256164'), + (58264, 612, 440, 'attending', '2020-10-18 16:46:19', '2025-12-17 19:47:53', 'NmLXxVam', '3256168'), + (58265, 612, 441, 'attending', '2020-11-02 01:10:49', '2025-12-17 19:47:54', 'NmLXxVam', '3256169'), + (58266, 612, 442, 'attending', '2020-10-22 23:38:54', '2025-12-17 19:47:52', 'NmLXxVam', '3260345'), + (58267, 612, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLXxVam', '3263578'), + (58268, 612, 444, 'maybe', '2020-10-25 16:52:01', '2025-12-17 19:47:53', 'NmLXxVam', '3263745'), + (58269, 612, 445, 'maybe', '2020-11-02 01:11:35', '2025-12-17 19:47:54', 'NmLXxVam', '3266138'), + (58270, 612, 446, 'maybe', '2020-10-27 22:58:35', '2025-12-17 19:47:53', 'NmLXxVam', '3267163'), + (58271, 612, 448, 'attending', '2020-10-31 00:32:57', '2025-12-17 19:47:53', 'NmLXxVam', '3271831'), + (58272, 612, 449, 'maybe', '2020-11-02 01:11:32', '2025-12-17 19:47:53', 'NmLXxVam', '3272055'), + (58273, 612, 451, 'maybe', '2020-11-02 01:11:58', '2025-12-17 19:47:53', 'NmLXxVam', '3272186'), + (58274, 612, 452, 'maybe', '2020-11-22 04:41:17', '2025-12-17 19:47:54', 'NmLXxVam', '3272981'), + (58275, 612, 455, 'attending', '2020-11-06 01:06:44', '2025-12-17 19:47:53', 'NmLXxVam', '3276391'), + (58276, 612, 456, 'maybe', '2020-11-05 12:06:32', '2025-12-17 19:47:54', 'NmLXxVam', '3276428'), + (58277, 612, 457, 'maybe', '2020-11-06 01:06:48', '2025-12-17 19:47:53', 'NmLXxVam', '3279087'), + (58278, 612, 459, 'not_attending', '2020-11-08 12:27:04', '2025-12-17 19:47:54', 'NmLXxVam', '3281467'), + (58279, 612, 462, 'maybe', '2020-11-11 22:50:48', '2025-12-17 19:47:54', 'NmLXxVam', '3281470'), + (58280, 612, 464, 'maybe', '2020-11-21 02:06:52', '2025-12-17 19:47:54', 'NmLXxVam', '3281554'), + (58281, 612, 465, 'maybe', '2020-11-22 16:52:15', '2025-12-17 19:47:54', 'NmLXxVam', '3281555'), + (58282, 612, 466, 'attending', '2020-11-08 12:31:47', '2025-12-17 19:47:54', 'NmLXxVam', '3281829'), + (58283, 612, 468, 'attending', '2020-11-11 00:54:12', '2025-12-17 19:47:54', 'NmLXxVam', '3285413'), + (58284, 612, 469, 'attending', '2020-11-11 00:54:10', '2025-12-17 19:47:54', 'NmLXxVam', '3285414'), + (58285, 612, 470, 'not_attending', '2020-11-15 12:41:58', '2025-12-17 19:47:54', 'NmLXxVam', '3285443'), + (58286, 612, 475, 'maybe', '2020-11-22 16:52:05', '2025-12-17 19:47:54', 'NmLXxVam', '3286760'), + (58287, 612, 477, 'maybe', '2020-11-22 04:41:10', '2025-12-17 19:47:54', 'NmLXxVam', '3289559'), + (58288, 612, 480, 'not_attending', '2020-11-21 02:07:02', '2025-12-17 19:47:54', 'NmLXxVam', '3295313'), + (58289, 612, 481, 'maybe', '2020-11-21 02:06:41', '2025-12-17 19:47:54', 'NmLXxVam', '3297764'), + (58290, 612, 482, 'maybe', '2020-11-22 16:52:00', '2025-12-17 19:47:54', 'NmLXxVam', '3297769'), + (58291, 612, 483, 'not_attending', '2020-11-21 02:06:47', '2025-12-17 19:47:54', 'NmLXxVam', '3297791'), + (58292, 612, 484, 'not_attending', '2020-11-21 02:06:56', '2025-12-17 19:47:54', 'NmLXxVam', '3297792'), + (58293, 612, 486, 'maybe', '2020-11-23 15:34:18', '2025-12-17 19:47:54', 'NmLXxVam', '3300281'), + (58294, 612, 491, 'maybe', '2020-12-11 00:03:08', '2025-12-17 19:47:55', 'NmLXxVam', '3313533'), + (58295, 612, 493, 'not_attending', '2020-11-29 04:12:28', '2025-12-17 19:47:54', 'NmLXxVam', '3313856'), + (58296, 612, 495, 'attending', '2020-12-08 01:09:35', '2025-12-17 19:47:54', 'NmLXxVam', '3314009'), + (58297, 612, 496, 'maybe', '2020-12-11 00:03:12', '2025-12-17 19:47:54', 'NmLXxVam', '3314269'), + (58298, 612, 497, 'not_attending', '2020-12-15 02:37:14', '2025-12-17 19:47:55', 'NmLXxVam', '3314270'), + (58299, 612, 499, 'maybe', '2020-12-01 00:54:09', '2025-12-17 19:47:55', 'NmLXxVam', '3314909'), + (58300, 612, 500, 'maybe', '2020-12-14 04:18:35', '2025-12-17 19:47:55', 'NmLXxVam', '3314964'), + (58301, 612, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'NmLXxVam', '3323365'), + (58302, 612, 503, 'maybe', '2020-12-15 02:37:05', '2025-12-17 19:47:55', 'NmLXxVam', '3323366'), + (58303, 612, 504, 'maybe', '2020-12-15 02:37:11', '2025-12-17 19:47:55', 'NmLXxVam', '3323368'), + (58304, 612, 508, 'maybe', '2021-01-13 00:53:50', '2025-12-17 19:47:48', 'NmLXxVam', '3324231'), + (58305, 612, 509, 'maybe', '2021-01-02 13:45:16', '2025-12-17 19:47:49', 'NmLXxVam', '3324232'), + (58306, 612, 510, 'maybe', '2021-01-02 13:45:11', '2025-12-17 19:47:49', 'NmLXxVam', '3324233'), + (58307, 612, 511, 'maybe', '2020-12-15 02:37:16', '2025-12-17 19:47:55', 'NmLXxVam', '3325335'), + (58308, 612, 512, 'not_attending', '2020-12-15 02:37:01', '2025-12-17 19:47:55', 'NmLXxVam', '3325336'), + (58309, 612, 513, 'maybe', '2020-12-19 23:58:48', '2025-12-17 19:47:55', 'NmLXxVam', '3329383'), + (58310, 612, 516, 'attending', '2020-12-15 02:37:21', '2025-12-17 19:47:48', 'NmLXxVam', '3334530'), + (58311, 612, 517, 'maybe', '2021-01-02 13:44:46', '2025-12-17 19:47:48', 'NmLXxVam', '3337137'), + (58312, 612, 518, 'maybe', '2021-01-02 13:44:52', '2025-12-17 19:47:48', 'NmLXxVam', '3337138'), + (58313, 612, 526, 'attending', '2021-01-03 00:20:45', '2025-12-17 19:47:48', 'NmLXxVam', '3351539'), + (58314, 612, 528, 'maybe', '2021-01-02 13:45:00', '2025-12-17 19:47:48', 'NmLXxVam', '3363022'), + (58315, 612, 529, 'maybe', '2021-01-02 13:44:33', '2025-12-17 19:47:48', 'NmLXxVam', '3364568'), + (58316, 612, 530, 'not_attending', '2021-01-02 13:44:57', '2025-12-17 19:47:48', 'NmLXxVam', '3373923'), + (58317, 612, 531, 'not_attending', '2021-01-02 13:45:31', '2025-12-17 19:47:48', 'NmLXxVam', '3378210'), + (58318, 612, 532, 'maybe', '2021-01-09 00:54:21', '2025-12-17 19:47:48', 'NmLXxVam', '3381412'), + (58319, 612, 534, 'not_attending', '2021-01-09 00:54:37', '2025-12-17 19:47:48', 'NmLXxVam', '3384157'), + (58320, 612, 535, 'not_attending', '2021-01-09 00:54:40', '2025-12-17 19:47:48', 'NmLXxVam', '3384729'), + (58321, 612, 536, 'maybe', '2021-01-30 11:54:33', '2025-12-17 19:47:48', 'NmLXxVam', '3386848'), + (58322, 612, 537, 'maybe', '2021-01-09 00:54:34', '2025-12-17 19:47:48', 'NmLXxVam', '3387153'), + (58323, 612, 538, 'maybe', '2021-01-13 00:53:57', '2025-12-17 19:47:48', 'NmLXxVam', '3388151'), + (58324, 612, 539, 'maybe', '2021-01-13 00:54:00', '2025-12-17 19:47:48', 'NmLXxVam', '3389158'), + (58325, 612, 540, 'attending', '2021-01-07 01:23:13', '2025-12-17 19:47:48', 'NmLXxVam', '3389527'), + (58326, 612, 541, 'not_attending', '2021-01-09 00:54:25', '2025-12-17 19:47:48', 'NmLXxVam', '3391683'), + (58327, 612, 543, 'attending', '2021-01-12 02:00:13', '2025-12-17 19:47:48', 'NmLXxVam', '3396499'), + (58328, 612, 544, 'maybe', '2021-01-13 00:53:47', '2025-12-17 19:47:48', 'NmLXxVam', '3396500'), + (58329, 612, 545, 'maybe', '2021-01-19 16:02:51', '2025-12-17 19:47:49', 'NmLXxVam', '3396502'), + (58330, 612, 546, 'not_attending', '2021-01-20 02:16:12', '2025-12-17 19:47:49', 'NmLXxVam', '3396503'), + (58331, 612, 547, 'maybe', '2021-01-19 16:03:10', '2025-12-17 19:47:49', 'NmLXxVam', '3396504'), + (58332, 612, 548, 'attending', '2021-01-13 13:35:42', '2025-12-17 19:47:48', 'NmLXxVam', '3403650'), + (58333, 612, 549, 'maybe', '2021-01-16 19:18:49', '2025-12-17 19:47:49', 'NmLXxVam', '3406988'), + (58334, 612, 551, 'not_attending', '2021-01-20 01:13:21', '2025-12-17 19:47:49', 'NmLXxVam', '3407219'), + (58335, 612, 554, 'not_attending', '2021-01-20 02:16:19', '2025-12-17 19:47:49', 'NmLXxVam', '3408338'), + (58336, 612, 555, 'attending', '2021-01-19 04:12:41', '2025-12-17 19:47:49', 'NmLXxVam', '3416576'), + (58337, 612, 556, 'maybe', '2021-01-19 16:03:16', '2025-12-17 19:47:49', 'NmLXxVam', '3417170'), + (58338, 612, 557, 'attending', '2021-01-19 16:02:55', '2025-12-17 19:47:49', 'NmLXxVam', '3418748'), + (58339, 612, 558, 'not_attending', '2021-01-19 16:03:07', '2025-12-17 19:47:49', 'NmLXxVam', '3418925'), + (58340, 612, 559, 'maybe', '2021-01-28 02:40:19', '2025-12-17 19:47:49', 'NmLXxVam', '3421439'), + (58341, 612, 560, 'attending', '2021-01-20 02:16:09', '2025-12-17 19:47:49', 'NmLXxVam', '3421715'), + (58342, 612, 561, 'not_attending', '2021-01-23 20:09:21', '2025-12-17 19:47:49', 'NmLXxVam', '3421916'), + (58343, 612, 562, 'not_attending', '2021-01-23 20:09:23', '2025-12-17 19:47:49', 'NmLXxVam', '3424911'), + (58344, 612, 563, 'not_attending', '2021-01-26 00:04:45', '2025-12-17 19:47:49', 'NmLXxVam', '3425913'), + (58345, 612, 565, 'maybe', '2021-01-28 02:40:09', '2025-12-17 19:47:49', 'NmLXxVam', '3426083'), + (58346, 612, 566, 'maybe', '2021-01-28 02:40:04', '2025-12-17 19:47:49', 'NmLXxVam', '3427928'), + (58347, 612, 567, 'not_attending', '2021-01-28 02:40:01', '2025-12-17 19:47:50', 'NmLXxVam', '3428895'), + (58348, 612, 568, 'attending', '2021-01-28 02:39:53', '2025-12-17 19:47:50', 'NmLXxVam', '3430267'), + (58349, 612, 569, 'not_attending', '2021-01-28 02:40:11', '2025-12-17 19:47:49', 'NmLXxVam', '3432673'), + (58350, 612, 570, 'maybe', '2021-01-28 02:40:32', '2025-12-17 19:47:50', 'NmLXxVam', '3435538'), + (58351, 612, 571, 'maybe', '2021-02-03 00:03:31', '2025-12-17 19:47:50', 'NmLXxVam', '3435539'), + (58352, 612, 572, 'maybe', '2021-01-28 02:40:28', '2025-12-17 19:47:50', 'NmLXxVam', '3435540'), + (58353, 612, 573, 'maybe', '2021-02-03 00:04:52', '2025-12-17 19:47:50', 'NmLXxVam', '3435542'), + (58354, 612, 575, 'not_attending', '2021-01-28 02:39:59', '2025-12-17 19:47:50', 'NmLXxVam', '3437492'), + (58355, 612, 576, 'not_attending', '2021-01-28 02:40:23', '2025-12-17 19:47:50', 'NmLXxVam', '3438748'), + (58356, 612, 578, 'maybe', '2021-02-03 00:03:01', '2025-12-17 19:47:50', 'NmLXxVam', '3440043'), + (58357, 612, 579, 'not_attending', '2021-02-03 00:03:13', '2025-12-17 19:47:50', 'NmLXxVam', '3440978'), + (58358, 612, 583, 'attending', '2021-02-03 00:03:53', '2025-12-17 19:47:50', 'NmLXxVam', '3449144'), + (58359, 612, 584, 'maybe', '2021-02-03 00:03:06', '2025-12-17 19:47:50', 'NmLXxVam', '3449466'), + (58360, 612, 585, 'maybe', '2021-02-03 00:03:45', '2025-12-17 19:47:50', 'NmLXxVam', '3449468'), + (58361, 612, 586, 'not_attending', '2021-02-03 00:03:39', '2025-12-17 19:47:50', 'NmLXxVam', '3449469'), + (58362, 612, 587, 'maybe', '2021-02-03 00:04:00', '2025-12-17 19:47:50', 'NmLXxVam', '3449470'), + (58363, 612, 588, 'maybe', '2021-02-03 00:04:41', '2025-12-17 19:47:50', 'NmLXxVam', '3449471'), + (58364, 612, 589, 'maybe', '2021-02-03 00:04:48', '2025-12-17 19:47:50', 'NmLXxVam', '3449473'), + (58365, 612, 590, 'not_attending', '2021-02-11 23:46:07', '2025-12-17 19:47:50', 'NmLXxVam', '3459150'), + (58366, 612, 594, 'maybe', '2021-03-01 04:07:52', '2025-12-17 19:47:51', 'NmLXxVam', '3467759'), + (58367, 612, 595, 'maybe', '2021-03-01 04:08:26', '2025-12-17 19:47:51', 'NmLXxVam', '3467761'), + (58368, 612, 596, 'maybe', '2021-03-01 04:08:17', '2025-12-17 19:47:51', 'NmLXxVam', '3467762'), + (58369, 612, 597, 'not_attending', '2021-03-12 14:41:40', '2025-12-17 19:47:51', 'NmLXxVam', '3467764'), + (58370, 612, 602, 'attending', '2021-02-10 00:50:51', '2025-12-17 19:47:50', 'NmLXxVam', '3470303'), + (58371, 612, 603, 'attending', '2021-02-13 02:11:36', '2025-12-17 19:47:50', 'NmLXxVam', '3470304'), + (58372, 612, 604, 'attending', '2021-02-13 02:11:40', '2025-12-17 19:47:50', 'NmLXxVam', '3470305'), + (58373, 612, 605, 'maybe', '2021-02-14 22:41:36', '2025-12-17 19:47:50', 'NmLXxVam', '3470991'), + (58374, 612, 614, 'maybe', '2021-03-01 04:08:10', '2025-12-17 19:47:51', 'NmLXxVam', '3490042'), + (58375, 612, 621, 'attending', '2021-03-01 04:08:00', '2025-12-17 19:47:51', 'NmLXxVam', '3517815'), + (58376, 612, 622, 'attending', '2021-03-01 04:08:01', '2025-12-17 19:47:51', 'NmLXxVam', '3517816'), + (58377, 612, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'NmLXxVam', '3523941'), + (58378, 612, 625, 'not_attending', '2021-03-01 04:08:12', '2025-12-17 19:47:51', 'NmLXxVam', '3533296'), + (58379, 612, 626, 'not_attending', '2021-03-01 04:08:15', '2025-12-17 19:47:51', 'NmLXxVam', '3533298'), + (58380, 612, 627, 'not_attending', '2021-03-01 04:08:24', '2025-12-17 19:47:51', 'NmLXxVam', '3533303'), + (58381, 612, 628, 'maybe', '2021-03-01 13:42:35', '2025-12-17 19:47:51', 'NmLXxVam', '3533305'), + (58382, 612, 629, 'maybe', '2021-03-01 13:42:33', '2025-12-17 19:47:51', 'NmLXxVam', '3533307'), + (58383, 612, 630, 'maybe', '2021-03-01 04:07:47', '2025-12-17 19:47:51', 'NmLXxVam', '3533425'), + (58384, 612, 631, 'maybe', '2021-03-01 04:07:30', '2025-12-17 19:47:51', 'NmLXxVam', '3533850'), + (58385, 612, 632, 'not_attending', '2021-03-01 04:08:28', '2025-12-17 19:47:51', 'NmLXxVam', '3533853'), + (58386, 612, 633, 'maybe', '2021-03-01 13:42:25', '2025-12-17 19:47:44', 'NmLXxVam', '3534717'), + (58387, 612, 634, 'maybe', '2021-03-01 13:42:15', '2025-12-17 19:47:44', 'NmLXxVam', '3534718'), + (58388, 612, 635, 'maybe', '2021-03-03 12:45:54', '2025-12-17 19:47:44', 'NmLXxVam', '3534719'), + (58389, 612, 636, 'maybe', '2021-03-03 12:45:57', '2025-12-17 19:47:45', 'NmLXxVam', '3534720'), + (58390, 612, 637, 'attending', '2021-03-01 23:26:44', '2025-12-17 19:47:51', 'NmLXxVam', '3536411'), + (58391, 612, 638, 'maybe', '2021-03-02 01:40:51', '2025-12-17 19:47:44', 'NmLXxVam', '3536632'), + (58392, 612, 639, 'maybe', '2021-03-02 01:40:43', '2025-12-17 19:47:51', 'NmLXxVam', '3536656'), + (58393, 612, 641, 'attending', '2021-03-03 12:45:25', '2025-12-17 19:47:44', 'NmLXxVam', '3539916'), + (58394, 612, 642, 'attending', '2021-03-03 12:45:27', '2025-12-17 19:47:44', 'NmLXxVam', '3539917'), + (58395, 612, 643, 'attending', '2021-03-03 12:45:21', '2025-12-17 19:47:45', 'NmLXxVam', '3539918'), + (58396, 612, 644, 'attending', '2021-03-03 12:45:30', '2025-12-17 19:47:45', 'NmLXxVam', '3539919'), + (58397, 612, 645, 'attending', '2021-03-03 12:48:07', '2025-12-17 19:47:46', 'NmLXxVam', '3539920'), + (58398, 612, 646, 'attending', '2021-03-03 12:48:16', '2025-12-17 19:47:46', 'NmLXxVam', '3539921'), + (58399, 612, 647, 'attending', '2021-03-03 12:48:25', '2025-12-17 19:47:46', 'NmLXxVam', '3539922'), + (58400, 612, 648, 'attending', '2021-03-03 12:48:31', '2025-12-17 19:47:47', 'NmLXxVam', '3539923'), + (58401, 612, 649, 'not_attending', '2021-03-12 13:08:38', '2025-12-17 19:47:51', 'NmLXxVam', '3539927'), + (58402, 612, 650, 'maybe', '2021-03-15 11:29:24', '2025-12-17 19:47:44', 'NmLXxVam', '3539928'), + (58403, 612, 651, 'maybe', '2021-03-08 23:39:38', '2025-12-17 19:47:51', 'NmLXxVam', '3541045'), + (58404, 612, 652, 'attending', '2021-03-07 18:39:06', '2025-12-17 19:47:51', 'NmLXxVam', '3544466'), + (58405, 612, 653, 'not_attending', '2021-03-12 13:08:45', '2025-12-17 19:47:51', 'NmLXxVam', '3546917'), + (58406, 612, 654, 'not_attending', '2021-03-12 13:09:01', '2025-12-17 19:47:51', 'NmLXxVam', '3546990'), + (58407, 612, 655, 'not_attending', '2021-03-12 13:08:42', '2025-12-17 19:47:51', 'NmLXxVam', '3547129'), + (58408, 612, 656, 'not_attending', '2021-03-12 13:08:35', '2025-12-17 19:47:51', 'NmLXxVam', '3547130'), + (58409, 612, 657, 'not_attending', '2021-04-09 00:10:45', '2025-12-17 19:47:45', 'NmLXxVam', '3547132'), + (58410, 612, 659, 'not_attending', '2021-03-15 11:29:46', '2025-12-17 19:47:44', 'NmLXxVam', '3547135'), + (58411, 612, 660, 'not_attending', '2021-06-13 19:57:59', '2025-12-17 19:47:39', 'NmLXxVam', '3547136'), + (58412, 612, 661, 'not_attending', '2021-03-15 11:29:49', '2025-12-17 19:47:44', 'NmLXxVam', '3547137'), + (58413, 612, 662, 'not_attending', '2021-04-22 21:14:52', '2025-12-17 19:47:45', 'NmLXxVam', '3547138'), + (58414, 612, 663, 'not_attending', '2021-05-03 18:29:05', '2025-12-17 19:47:46', 'NmLXxVam', '3547140'), + (58415, 612, 664, 'not_attending', '2021-08-27 20:48:52', '2025-12-17 19:47:43', 'NmLXxVam', '3547142'), + (58416, 612, 665, 'not_attending', '2021-08-27 20:48:48', '2025-12-17 19:47:43', 'NmLXxVam', '3547143'), + (58417, 612, 667, 'not_attending', '2021-08-24 08:45:20', '2025-12-17 19:47:42', 'NmLXxVam', '3547145'), + (58418, 612, 668, 'not_attending', '2021-05-13 00:11:56', '2025-12-17 19:47:46', 'NmLXxVam', '3547146'), + (58419, 612, 669, 'not_attending', '2021-06-13 19:58:47', '2025-12-17 19:47:38', 'NmLXxVam', '3547147'), + (58420, 612, 670, 'not_attending', '2021-06-13 19:57:52', '2025-12-17 19:47:48', 'NmLXxVam', '3547148'), + (58421, 612, 672, 'not_attending', '2021-05-13 00:12:38', '2025-12-17 19:47:46', 'NmLXxVam', '3547150'), + (58422, 612, 673, 'not_attending', '2021-06-13 19:58:01', '2025-12-17 19:47:38', 'NmLXxVam', '3547151'), + (58423, 612, 674, 'not_attending', '2021-07-30 11:17:12', '2025-12-17 19:47:41', 'NmLXxVam', '3547152'), + (58424, 612, 675, 'not_attending', '2021-07-20 15:04:20', '2025-12-17 19:47:40', 'NmLXxVam', '3547153'), + (58425, 612, 676, 'not_attending', '2021-07-20 15:04:05', '2025-12-17 19:47:40', 'NmLXxVam', '3547154'), + (58426, 612, 678, 'not_attending', '2021-03-12 13:08:53', '2025-12-17 19:47:51', 'NmLXxVam', '3547158'), + (58427, 612, 679, 'attending', '2021-03-14 21:04:31', '2025-12-17 19:47:44', 'NmLXxVam', '3547168'), + (58428, 612, 680, 'maybe', '2021-03-08 23:39:44', '2025-12-17 19:47:51', 'NmLXxVam', '3547700'), + (58429, 612, 682, 'not_attending', '2021-03-15 11:28:55', '2025-12-17 19:47:51', 'NmLXxVam', '3548806'), + (58430, 612, 683, 'attending', '2021-03-12 14:41:36', '2025-12-17 19:47:51', 'NmLXxVam', '3548818'), + (58431, 612, 684, 'not_attending', '2021-03-12 14:41:38', '2025-12-17 19:47:51', 'NmLXxVam', '3549257'), + (58432, 612, 685, 'not_attending', '2021-04-09 00:10:18', '2025-12-17 19:47:44', 'NmLXxVam', '3551564'), + (58433, 612, 686, 'not_attending', '2021-03-12 13:08:25', '2025-12-17 19:47:51', 'NmLXxVam', '3553333'), + (58434, 612, 687, 'not_attending', '2021-03-12 13:08:54', '2025-12-17 19:47:51', 'NmLXxVam', '3553405'), + (58435, 612, 688, 'not_attending', '2021-03-12 13:08:26', '2025-12-17 19:47:51', 'NmLXxVam', '3553729'), + (58436, 612, 689, 'not_attending', '2021-03-15 11:29:20', '2025-12-17 19:47:44', 'NmLXxVam', '3555564'), + (58437, 612, 690, 'maybe', '2021-03-15 11:29:12', '2025-12-17 19:47:43', 'NmLXxVam', '3559954'), + (58438, 612, 695, 'maybe', '2021-03-18 11:35:56', '2025-12-17 19:47:51', 'NmLXxVam', '3567535'), + (58439, 612, 696, 'maybe', '2021-03-18 11:35:54', '2025-12-17 19:47:51', 'NmLXxVam', '3567536'), + (58440, 612, 697, 'maybe', '2021-03-19 11:08:43', '2025-12-17 19:47:44', 'NmLXxVam', '3567537'), + (58441, 612, 699, 'maybe', '2021-03-25 13:30:42', '2025-12-17 19:47:44', 'NmLXxVam', '3572241'), + (58442, 612, 700, 'not_attending', '2021-03-19 11:08:50', '2025-12-17 19:47:44', 'NmLXxVam', '3575725'), + (58443, 612, 702, 'maybe', '2021-03-18 11:35:51', '2025-12-17 19:47:51', 'NmLXxVam', '3577181'), + (58444, 612, 703, 'maybe', '2021-04-09 00:10:09', '2025-12-17 19:47:44', 'NmLXxVam', '3578388'), + (58445, 612, 704, 'maybe', '2021-03-19 11:08:47', '2025-12-17 19:47:44', 'NmLXxVam', '3581429'), + (58446, 612, 705, 'attending', '2021-03-19 11:08:34', '2025-12-17 19:47:44', 'NmLXxVam', '3581895'), + (58447, 612, 706, 'maybe', '2021-04-09 00:10:53', '2025-12-17 19:47:45', 'NmLXxVam', '3582734'), + (58448, 612, 707, 'maybe', '2021-04-09 00:09:52', '2025-12-17 19:47:46', 'NmLXxVam', '3583262'), + (58449, 612, 708, 'not_attending', '2021-03-25 13:30:31', '2025-12-17 19:47:44', 'NmLXxVam', '3587850'), + (58450, 612, 712, 'maybe', '2021-03-25 13:30:39', '2025-12-17 19:47:44', 'NmLXxVam', '3604056'), + (58451, 612, 715, 'not_attending', '2021-03-25 13:30:36', '2025-12-17 19:47:44', 'NmLXxVam', '3604146'), + (58452, 612, 717, 'maybe', '2021-03-25 13:30:25', '2025-12-17 19:47:44', 'NmLXxVam', '3619523'), + (58453, 612, 718, 'not_attending', '2021-03-26 11:50:47', '2025-12-17 19:47:44', 'NmLXxVam', '3626844'), + (58454, 612, 720, 'not_attending', '2021-03-30 14:32:41', '2025-12-17 19:47:44', 'NmLXxVam', '3643450'), + (58455, 612, 724, 'maybe', '2021-04-11 13:27:18', '2025-12-17 19:47:46', 'NmLXxVam', '3661369'), + (58456, 612, 725, 'maybe', '2021-05-13 00:13:14', '2025-12-17 19:47:47', 'NmLXxVam', '3661372'), + (58457, 612, 727, 'not_attending', '2021-06-13 19:57:30', '2025-12-17 19:47:38', 'NmLXxVam', '3661377'), + (58458, 612, 728, 'not_attending', '2021-04-09 00:10:21', '2025-12-17 19:47:44', 'NmLXxVam', '3668073'), + (58459, 612, 729, 'not_attending', '2021-04-22 21:15:21', '2025-12-17 19:47:46', 'NmLXxVam', '3668075'), + (58460, 612, 730, 'not_attending', '2021-05-03 18:28:52', '2025-12-17 19:47:46', 'NmLXxVam', '3668076'), + (58461, 612, 731, 'not_attending', '2021-04-04 15:10:52', '2025-12-17 19:47:44', 'NmLXxVam', '3674262'), + (58462, 612, 732, 'maybe', '2021-04-09 00:11:22', '2025-12-17 19:47:45', 'NmLXxVam', '3674268'), + (58463, 612, 735, 'attending', '2021-04-05 00:16:50', '2025-12-17 19:47:46', 'NmLXxVam', '3677402'), + (58464, 612, 738, 'not_attending', '2021-04-09 00:11:15', '2025-12-17 19:47:45', 'NmLXxVam', '3680615'), + (58465, 612, 739, 'maybe', '2021-05-03 18:29:01', '2025-12-17 19:47:46', 'NmLXxVam', '3680616'), + (58466, 612, 740, 'not_attending', '2021-04-22 21:15:33', '2025-12-17 19:47:46', 'NmLXxVam', '3680617'), + (58467, 612, 741, 'not_attending', '2021-05-13 00:12:45', '2025-12-17 19:47:46', 'NmLXxVam', '3680618'), + (58468, 612, 742, 'not_attending', '2021-06-13 19:57:48', '2025-12-17 19:47:48', 'NmLXxVam', '3680622'), + (58469, 612, 743, 'not_attending', '2021-06-13 19:58:38', '2025-12-17 19:47:38', 'NmLXxVam', '3680623'), + (58470, 612, 745, 'not_attending', '2021-06-13 19:58:24', '2025-12-17 19:47:38', 'NmLXxVam', '3680625'), + (58471, 612, 746, 'not_attending', '2021-06-13 19:58:21', '2025-12-17 19:47:39', 'NmLXxVam', '3680626'), + (58472, 612, 747, 'maybe', '2021-04-09 00:11:08', '2025-12-17 19:47:45', 'NmLXxVam', '3684754'), + (58473, 612, 749, 'not_attending', '2021-04-09 00:10:30', '2025-12-17 19:47:44', 'NmLXxVam', '3689769'), + (58474, 612, 750, 'maybe', '2021-04-09 00:10:35', '2025-12-17 19:47:44', 'NmLXxVam', '3689962'), + (58475, 612, 751, 'maybe', '2021-04-09 00:11:02', '2025-12-17 19:47:45', 'NmLXxVam', '3691364'), + (58476, 612, 752, 'maybe', '2021-04-14 02:04:26', '2025-12-17 19:47:44', 'NmLXxVam', '3699422'), + (58477, 612, 753, 'not_attending', '2021-04-14 02:04:31', '2025-12-17 19:47:45', 'NmLXxVam', '3701861'), + (58478, 612, 754, 'not_attending', '2021-04-22 21:14:39', '2025-12-17 19:47:45', 'NmLXxVam', '3701863'), + (58479, 612, 755, 'not_attending', '2021-04-22 21:14:47', '2025-12-17 19:47:45', 'NmLXxVam', '3701864'), + (58480, 612, 756, 'not_attending', '2021-04-22 21:15:02', '2025-12-17 19:47:46', 'NmLXxVam', '3704795'), + (58481, 612, 759, 'not_attending', '2021-04-22 21:14:40', '2025-12-17 19:47:45', 'NmLXxVam', '3713701'), + (58482, 612, 760, 'not_attending', '2021-05-14 12:16:01', '2025-12-17 19:47:46', 'NmLXxVam', '3716035'), + (58483, 612, 761, 'maybe', '2021-05-13 00:11:59', '2025-12-17 19:47:46', 'NmLXxVam', '3716041'), + (58484, 612, 763, 'not_attending', '2021-04-22 21:14:58', '2025-12-17 19:47:46', 'NmLXxVam', '3719122'), + (58485, 612, 764, 'not_attending', '2021-04-22 21:14:49', '2025-12-17 19:47:45', 'NmLXxVam', '3720507'), + (58486, 612, 765, 'not_attending', '2021-04-22 21:14:36', '2025-12-17 19:47:45', 'NmLXxVam', '3720508'), + (58487, 612, 766, 'maybe', '2021-05-13 00:11:33', '2025-12-17 19:47:46', 'NmLXxVam', '3721383'), + (58488, 612, 767, 'maybe', '2021-05-02 22:03:18', '2025-12-17 19:47:46', 'NmLXxVam', '3722476'), + (58489, 612, 768, 'not_attending', '2021-04-22 21:15:00', '2025-12-17 19:47:46', 'NmLXxVam', '3724124'), + (58490, 612, 769, 'not_attending', '2021-04-22 21:15:07', '2025-12-17 19:47:46', 'NmLXxVam', '3724127'), + (58491, 612, 770, 'not_attending', '2021-04-22 21:15:26', '2025-12-17 19:47:46', 'NmLXxVam', '3724559'), + (58492, 612, 771, 'not_attending', '2021-04-22 21:15:24', '2025-12-17 19:47:46', 'NmLXxVam', '3726420'), + (58493, 612, 772, 'not_attending', '2021-04-22 21:15:31', '2025-12-17 19:47:46', 'NmLXxVam', '3726421'), + (58494, 612, 773, 'not_attending', '2021-04-22 21:15:18', '2025-12-17 19:47:46', 'NmLXxVam', '3729399'), + (58495, 612, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLXxVam', '3730212'), + (58496, 612, 775, 'not_attending', '2021-04-22 21:14:34', '2025-12-17 19:47:45', 'NmLXxVam', '3731062'), + (58497, 612, 776, 'not_attending', '2021-04-22 21:15:04', '2025-12-17 19:47:46', 'NmLXxVam', '3733455'), + (58498, 612, 777, 'maybe', '2021-04-30 19:15:28', '2025-12-17 19:47:46', 'NmLXxVam', '3746248'), + (58499, 612, 779, 'not_attending', '2021-05-03 18:28:40', '2025-12-17 19:47:46', 'NmLXxVam', '3757118'), + (58500, 612, 781, 'not_attending', '2021-05-03 18:28:54', '2025-12-17 19:47:46', 'NmLXxVam', '3760130'), + (58501, 612, 782, 'not_attending', '2021-05-03 18:28:46', '2025-12-17 19:47:46', 'NmLXxVam', '3761843'), + (58502, 612, 783, 'maybe', '2021-05-02 15:12:52', '2025-12-17 19:47:46', 'NmLXxVam', '3767471'), + (58503, 612, 784, 'maybe', '2021-05-03 18:28:56', '2025-12-17 19:47:46', 'NmLXxVam', '3768775'), + (58504, 612, 785, 'maybe', '2021-05-16 01:45:11', '2025-12-17 19:47:46', 'NmLXxVam', '3779779'), + (58505, 612, 788, 'maybe', '2021-05-07 17:39:55', '2025-12-17 19:47:46', 'NmLXxVam', '3781975'), + (58506, 612, 789, 'maybe', '2021-05-13 00:12:56', '2025-12-17 19:47:47', 'NmLXxVam', '3785818'), + (58507, 612, 792, 'attending', '2021-05-07 21:07:46', '2025-12-17 19:47:46', 'NmLXxVam', '3793156'), + (58508, 612, 793, 'attending', '2021-05-13 00:12:48', '2025-12-17 19:47:47', 'NmLXxVam', '3793537'), + (58509, 612, 794, 'attending', '2021-05-13 00:12:46', '2025-12-17 19:47:47', 'NmLXxVam', '3793538'), + (58510, 612, 796, 'maybe', '2021-05-13 00:12:19', '2025-12-17 19:47:46', 'NmLXxVam', '3793862'), + (58511, 612, 797, 'maybe', '2021-05-13 00:13:06', '2025-12-17 19:47:47', 'NmLXxVam', '3796195'), + (58512, 612, 798, 'not_attending', '2021-05-13 00:12:27', '2025-12-17 19:47:46', 'NmLXxVam', '3796262'), + (58513, 612, 801, 'maybe', '2021-05-13 00:11:41', '2025-12-17 19:47:46', 'NmLXxVam', '3800910'), + (58514, 612, 802, 'maybe', '2021-05-13 00:11:37', '2025-12-17 19:47:46', 'NmLXxVam', '3803310'), + (58515, 612, 803, 'not_attending', '2021-05-13 00:12:30', '2025-12-17 19:47:46', 'NmLXxVam', '3804665'), + (58516, 612, 804, 'not_attending', '2021-05-13 00:13:11', '2025-12-17 19:47:47', 'NmLXxVam', '3804775'), + (58517, 612, 805, 'not_attending', '2021-06-13 19:57:28', '2025-12-17 19:47:47', 'NmLXxVam', '3804777'), + (58518, 612, 806, 'not_attending', '2021-05-13 00:11:53', '2025-12-17 19:47:46', 'NmLXxVam', '3806392'), + (58519, 612, 809, 'maybe', '2021-05-21 21:38:06', '2025-12-17 19:47:46', 'NmLXxVam', '3807964'), + (58520, 612, 817, 'not_attending', '2021-05-21 21:38:00', '2025-12-17 19:47:46', 'NmLXxVam', '3832498'), + (58521, 612, 822, 'attending', '2021-06-06 02:51:13', '2025-12-17 19:47:47', 'NmLXxVam', '3969986'), + (58522, 612, 823, 'not_attending', '2021-06-12 10:22:19', '2025-12-17 19:47:48', 'NmLXxVam', '3974109'), + (58523, 612, 826, 'maybe', '2021-06-16 14:54:36', '2025-12-17 19:47:48', 'NmLXxVam', '3975310'), + (58524, 612, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLXxVam', '3975311'), + (58525, 612, 828, 'attending', '2021-06-12 22:30:47', '2025-12-17 19:47:47', 'NmLXxVam', '3975312'), + (58526, 612, 837, 'attending', '2021-06-13 19:57:42', '2025-12-17 19:47:48', 'NmLXxVam', '3992545'), + (58527, 612, 838, 'maybe', '2021-06-06 17:32:40', '2025-12-17 19:47:47', 'NmLXxVam', '3994992'), + (58528, 612, 841, 'not_attending', '2021-06-13 19:57:35', '2025-12-17 19:47:48', 'NmLXxVam', '4007434'), + (58529, 612, 844, 'not_attending', '2021-06-13 19:58:34', '2025-12-17 19:47:38', 'NmLXxVam', '4014338'), + (58530, 612, 845, 'not_attending', '2021-06-13 19:58:29', '2025-12-17 19:47:38', 'NmLXxVam', '4015717'), + (58531, 612, 846, 'not_attending', '2021-06-13 19:58:12', '2025-12-17 19:47:39', 'NmLXxVam', '4015718'), + (58532, 612, 848, 'not_attending', '2021-07-20 15:03:53', '2025-12-17 19:47:40', 'NmLXxVam', '4015720'), + (58533, 612, 849, 'not_attending', '2021-07-20 15:04:16', '2025-12-17 19:47:40', 'NmLXxVam', '4015721'), + (58534, 612, 850, 'maybe', '2021-08-24 08:44:57', '2025-12-17 19:47:42', 'NmLXxVam', '4015722'), + (58535, 612, 852, 'not_attending', '2021-08-27 20:48:45', '2025-12-17 19:47:43', 'NmLXxVam', '4015724'), + (58536, 612, 854, 'not_attending', '2021-08-27 20:48:59', '2025-12-17 19:47:43', 'NmLXxVam', '4015726'), + (58537, 612, 855, 'not_attending', '2021-07-30 11:17:29', '2025-12-17 19:47:41', 'NmLXxVam', '4015729'), + (58538, 612, 856, 'not_attending', '2021-08-27 20:49:21', '2025-12-17 19:47:43', 'NmLXxVam', '4015730'), + (58539, 612, 859, 'not_attending', '2021-06-16 14:43:50', '2025-12-17 19:47:48', 'NmLXxVam', '4015993'), + (58540, 612, 860, 'not_attending', '2021-07-20 15:03:51', '2025-12-17 19:47:40', 'NmLXxVam', '4015994'), + (58541, 612, 862, 'not_attending', '2021-09-03 20:26:52', '2025-12-17 19:47:43', 'NmLXxVam', '4015996'), + (58542, 612, 866, 'not_attending', '2021-06-13 19:57:57', '2025-12-17 19:47:38', 'NmLXxVam', '4020424'), + (58543, 612, 867, 'attending', '2021-06-17 15:44:45', '2025-12-17 19:47:38', 'NmLXxVam', '4021848'), + (58544, 612, 868, 'not_attending', '2021-06-13 19:57:49', '2025-12-17 19:47:48', 'NmLXxVam', '4022012'), + (58545, 612, 869, 'maybe', '2021-06-17 15:44:58', '2025-12-17 19:47:38', 'NmLXxVam', '4136744'), + (58546, 612, 870, 'maybe', '2021-07-03 18:28:11', '2025-12-17 19:47:39', 'NmLXxVam', '4136937'), + (58547, 612, 871, 'attending', '2021-07-10 22:24:40', '2025-12-17 19:47:39', 'NmLXxVam', '4136938'), + (58548, 612, 872, 'maybe', '2021-06-21 21:55:05', '2025-12-17 19:47:40', 'NmLXxVam', '4136947'), + (58549, 612, 873, 'not_attending', '2021-06-17 15:44:22', '2025-12-17 19:47:48', 'NmLXxVam', '4138297'), + (58550, 612, 874, 'not_attending', '2021-06-17 15:44:39', '2025-12-17 19:47:38', 'NmLXxVam', '4139815'), + (58551, 612, 876, 'not_attending', '2021-06-17 15:44:34', '2025-12-17 19:47:38', 'NmLXxVam', '4139926'), + (58552, 612, 877, 'not_attending', '2021-06-16 14:43:47', '2025-12-17 19:47:48', 'NmLXxVam', '4140575'), + (58553, 612, 878, 'not_attending', '2021-06-17 15:44:27', '2025-12-17 19:47:38', 'NmLXxVam', '4143331'), + (58554, 612, 879, 'not_attending', '2021-06-17 15:44:50', '2025-12-17 19:47:38', 'NmLXxVam', '4147806'), + (58555, 612, 884, 'attending', '2021-07-17 10:07:51', '2025-12-17 19:47:42', 'NmLXxVam', '4210314'), + (58556, 612, 887, 'maybe', '2021-07-11 18:06:22', '2025-12-17 19:47:39', 'NmLXxVam', '4225444'), + (58557, 612, 893, 'not_attending', '2021-07-20 15:04:14', '2025-12-17 19:47:40', 'NmLXxVam', '4229420'), + (58558, 612, 894, 'not_attending', '2021-07-20 15:03:47', '2025-12-17 19:47:40', 'NmLXxVam', '4229423'), + (58559, 612, 897, 'maybe', '2021-06-27 23:25:57', '2025-12-17 19:47:38', 'NmLXxVam', '4232132'), + (58560, 612, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLXxVam', '4239259'), + (58561, 612, 900, 'not_attending', '2021-07-10 22:24:49', '2025-12-17 19:47:40', 'NmLXxVam', '4240316'), + (58562, 612, 901, 'attending', '2021-07-10 22:24:46', '2025-12-17 19:47:40', 'NmLXxVam', '4240317'), + (58563, 612, 902, 'not_attending', '2021-07-30 11:17:14', '2025-12-17 19:47:41', 'NmLXxVam', '4240318'), + (58564, 612, 903, 'attending', '2021-08-14 12:19:28', '2025-12-17 19:47:42', 'NmLXxVam', '4240320'), + (58565, 612, 905, 'maybe', '2021-07-10 20:09:10', '2025-12-17 19:47:39', 'NmLXxVam', '4250163'), + (58566, 612, 914, 'not_attending', '2021-07-20 15:03:42', '2025-12-17 19:47:39', 'NmLXxVam', '4273767'), + (58567, 612, 915, 'not_attending', '2021-07-20 15:03:45', '2025-12-17 19:47:39', 'NmLXxVam', '4273770'), + (58568, 612, 916, 'not_attending', '2021-07-20 15:03:56', '2025-12-17 19:47:40', 'NmLXxVam', '4273772'), + (58569, 612, 919, 'not_attending', '2021-07-14 10:37:12', '2025-12-17 19:47:39', 'NmLXxVam', '4275957'), + (58570, 612, 920, 'not_attending', '2021-07-20 15:04:10', '2025-12-17 19:47:40', 'NmLXxVam', '4277819'), + (58571, 612, 922, 'not_attending', '2021-07-20 15:04:04', '2025-12-17 19:47:40', 'NmLXxVam', '4280811'), + (58572, 612, 923, 'not_attending', '2021-07-20 15:04:02', '2025-12-17 19:47:40', 'NmLXxVam', '4292773'), + (58573, 612, 929, 'not_attending', '2021-07-30 11:17:21', '2025-12-17 19:47:41', 'NmLXxVam', '4297223'), + (58574, 612, 930, 'not_attending', '2021-07-30 11:17:37', '2025-12-17 19:47:41', 'NmLXxVam', '4300787'), + (58575, 612, 932, 'attending', '2021-08-22 18:30:23', '2025-12-17 19:47:42', 'NmLXxVam', '4301664'), + (58576, 612, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'NmLXxVam', '4301723'), + (58577, 612, 934, 'not_attending', '2021-07-30 11:17:28', '2025-12-17 19:47:40', 'NmLXxVam', '4302093'), + (58578, 612, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLXxVam', '4304151'), + (58579, 612, 939, 'not_attending', '2021-07-30 11:17:35', '2025-12-17 19:47:40', 'NmLXxVam', '4308354'), + (58580, 612, 940, 'maybe', '2021-07-30 11:16:56', '2025-12-17 19:47:40', 'NmLXxVam', '4309049'), + (58581, 612, 942, 'not_attending', '2021-07-30 11:17:03', '2025-12-17 19:47:40', 'NmLXxVam', '4310297'), + (58582, 612, 943, 'not_attending', '2021-07-30 11:17:09', '2025-12-17 19:47:41', 'NmLXxVam', '4310979'), + (58583, 612, 946, 'not_attending', '2021-07-30 11:17:32', '2025-12-17 19:47:40', 'NmLXxVam', '4314835'), + (58584, 612, 947, 'not_attending', '2021-07-30 11:17:17', '2025-12-17 19:47:41', 'NmLXxVam', '4315713'), + (58585, 612, 951, 'not_attending', '2021-08-24 08:45:29', '2025-12-17 19:47:43', 'NmLXxVam', '4315731'), + (58586, 612, 952, 'not_attending', '2021-07-30 11:17:20', '2025-12-17 19:47:41', 'NmLXxVam', '4318286'), + (58587, 612, 961, 'not_attending', '2021-08-14 12:19:18', '2025-12-17 19:47:42', 'NmLXxVam', '4345519'), + (58588, 612, 971, 'maybe', '2021-08-27 20:49:02', '2025-12-17 19:47:43', 'NmLXxVam', '4356801'), + (58589, 612, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'NmLXxVam', '4358025'), + (58590, 612, 973, 'not_attending', '2021-08-15 21:36:25', '2025-12-17 19:47:42', 'NmLXxVam', '4366186'), + (58591, 612, 974, 'maybe', '2021-08-24 08:45:17', '2025-12-17 19:47:42', 'NmLXxVam', '4366187'), + (58592, 612, 981, 'not_attending', '2021-08-27 20:48:24', '2025-12-17 19:47:42', 'NmLXxVam', '4387305'), + (58593, 612, 982, 'not_attending', '2021-08-24 08:45:22', '2025-12-17 19:47:42', 'NmLXxVam', '4389739'), + (58594, 612, 987, 'maybe', '2021-08-27 20:48:42', '2025-12-17 19:47:43', 'NmLXxVam', '4402634'), + (58595, 612, 988, 'not_attending', '2021-08-24 08:45:09', '2025-12-17 19:47:42', 'NmLXxVam', '4402823'), + (58596, 612, 989, 'not_attending', '2021-08-27 20:48:55', '2025-12-17 19:47:43', 'NmLXxVam', '4414282'), + (58597, 612, 990, 'attending', '2021-09-03 20:26:16', '2025-12-17 19:47:43', 'NmLXxVam', '4420735'), + (58598, 612, 991, 'attending', '2021-09-11 22:35:29', '2025-12-17 19:47:43', 'NmLXxVam', '4420738'), + (58599, 612, 992, 'attending', '2021-09-11 22:42:09', '2025-12-17 19:47:33', 'NmLXxVam', '4420739'), + (58600, 612, 993, 'attending', '2021-09-11 22:42:03', '2025-12-17 19:47:34', 'NmLXxVam', '4420741'), + (58601, 612, 994, 'not_attending', '2021-09-11 22:42:21', '2025-12-17 19:47:34', 'NmLXxVam', '4420742'), + (58602, 612, 995, 'maybe', '2021-10-09 19:50:08', '2025-12-17 19:47:34', 'NmLXxVam', '4420744'), + (58603, 612, 996, 'maybe', '2021-09-11 22:43:12', '2025-12-17 19:47:35', 'NmLXxVam', '4420747'), + (58604, 612, 997, 'attending', '2021-09-11 22:42:34', '2025-12-17 19:47:35', 'NmLXxVam', '4420748'), + (58605, 612, 998, 'maybe', '2021-10-30 20:48:36', '2025-12-17 19:47:36', 'NmLXxVam', '4420749'), + (58606, 612, 1003, 'not_attending', '2021-09-03 20:26:30', '2025-12-17 19:47:43', 'NmLXxVam', '4438802'), + (58607, 612, 1004, 'not_attending', '2021-09-03 20:26:48', '2025-12-17 19:47:43', 'NmLXxVam', '4438804'), + (58608, 612, 1005, 'not_attending', '2021-09-03 20:27:01', '2025-12-17 19:47:34', 'NmLXxVam', '4438807'), + (58609, 612, 1008, 'not_attending', '2021-10-09 19:50:23', '2025-12-17 19:47:35', 'NmLXxVam', '4438810'), + (58610, 612, 1009, 'not_attending', '2021-10-09 19:50:35', '2025-12-17 19:47:34', 'NmLXxVam', '4438811'), + (58611, 612, 1011, 'not_attending', '2021-10-09 19:50:18', '2025-12-17 19:47:36', 'NmLXxVam', '4438814'), + (58612, 612, 1013, 'not_attending', '2021-09-03 20:26:35', '2025-12-17 19:47:43', 'NmLXxVam', '4438817'), + (58613, 612, 1014, 'not_attending', '2021-09-03 20:26:32', '2025-12-17 19:47:43', 'NmLXxVam', '4439233'), + (58614, 612, 1015, 'not_attending', '2021-09-03 20:26:56', '2025-12-17 19:47:43', 'NmLXxVam', '4440800'), + (58615, 612, 1016, 'not_attending', '2021-09-03 20:26:39', '2025-12-17 19:47:43', 'NmLXxVam', '4441271'), + (58616, 612, 1017, 'not_attending', '2021-09-03 20:26:28', '2025-12-17 19:47:43', 'NmLXxVam', '4441822'), + (58617, 612, 1021, 'not_attending', '2021-09-11 10:22:49', '2025-12-17 19:47:34', 'NmLXxVam', '4451803'), + (58618, 612, 1023, 'not_attending', '2021-09-11 10:22:32', '2025-12-17 19:47:43', 'NmLXxVam', '4461883'), + (58619, 612, 1027, 'not_attending', '2021-09-24 22:55:27', '2025-12-17 19:47:34', 'NmLXxVam', '4472982'), + (58620, 612, 1067, 'not_attending', '2021-09-24 22:55:30', '2025-12-17 19:47:34', 'NmLXxVam', '4508342'), + (58621, 612, 1077, 'maybe', '2021-10-09 19:50:30', '2025-12-17 19:47:34', 'NmLXxVam', '4540903'), + (58622, 612, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLXxVam', '4568602'), + (58623, 612, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLXxVam', '4572153'), + (58624, 612, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmLXxVam', '4585962'), + (58625, 612, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'NmLXxVam', '4596356'), + (58626, 612, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLXxVam', '4598860'), + (58627, 612, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLXxVam', '4598861'), + (58628, 612, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmLXxVam', '4602797'), + (58629, 612, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmLXxVam', '4637896'), + (58630, 612, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLXxVam', '4642994'), + (58631, 612, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmLXxVam', '4642995'), + (58632, 612, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLXxVam', '4642996'), + (58633, 612, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLXxVam', '4642997'), + (58634, 612, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmLXxVam', '4645687'), + (58635, 612, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmLXxVam', '4645698'), + (58636, 612, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLXxVam', '4645704'), + (58637, 612, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLXxVam', '4645705'), + (58638, 612, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLXxVam', '6045684'), + (58639, 612, 3307, 'maybe', '2025-12-18 01:12:22', '2025-12-18 01:12:22', NULL, NULL), + (58640, 612, 3346, 'maybe', '2026-01-03 02:04:56', '2026-01-03 02:04:56', NULL, NULL), + (58641, 614, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYznaq04', '6045684'), + (58642, 615, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm6o67OgA', '4736503'), + (58643, 615, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm6o67OgA', '4736504'), + (58644, 615, 1212, 'not_attending', '2022-03-02 03:45:16', '2025-12-17 19:47:32', 'm6o67OgA', '4780759'), + (58645, 615, 1213, 'not_attending', '2022-03-02 03:46:08', '2025-12-17 19:47:32', 'm6o67OgA', '4780760'), + (58646, 615, 1251, 'not_attending', '2022-03-12 02:09:07', '2025-12-17 19:47:33', 'm6o67OgA', '5128466'), + (58647, 615, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6o67OgA', '5132533'), + (58648, 615, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm6o67OgA', '5186582'), + (58649, 615, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6o67OgA', '5186583'), + (58650, 615, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6o67OgA', '5186585'), + (58651, 615, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6o67OgA', '5190437'), + (58652, 615, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'm6o67OgA', '5196763'), + (58653, 615, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'm6o67OgA', '5199460'), + (58654, 615, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6o67OgA', '5215989'), + (58655, 615, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6o67OgA', '6045684'), + (58656, 616, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '2d2PNVYA', '3468125'), + (58657, 616, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '2d2PNVYA', '3470303'), + (58658, 616, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '2d2PNVYA', '3470305'), + (58659, 616, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '2d2PNVYA', '3470991'), + (58660, 616, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '2d2PNVYA', '3517815'), + (58661, 616, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '2d2PNVYA', '3517816'), + (58662, 616, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '2d2PNVYA', '3523941'), + (58663, 616, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '2d2PNVYA', '3533850'), + (58664, 616, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '2d2PNVYA', '3536632'), + (58665, 616, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '2d2PNVYA', '3536656'), + (58666, 616, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '2d2PNVYA', '3539916'), + (58667, 616, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '2d2PNVYA', '3539917'), + (58668, 616, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '2d2PNVYA', '3539918'), + (58669, 616, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '2d2PNVYA', '3539919'), + (58670, 616, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '2d2PNVYA', '3539920'), + (58671, 616, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '2d2PNVYA', '3539921'), + (58672, 616, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '2d2PNVYA', '3539922'), + (58673, 616, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '2d2PNVYA', '3539923'), + (58674, 616, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '2d2PNVYA', '3539927'), + (58675, 616, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '2d2PNVYA', '3582734'), + (58676, 616, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '2d2PNVYA', '3619523'), + (58677, 616, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2PNVYA', '6045684'), + (58678, 617, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd8DaZ3gd', '5269930'), + (58679, 617, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd8DaZ3gd', '5271448'), + (58680, 617, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'd8DaZ3gd', '5271449'), + (58681, 617, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd8DaZ3gd', '5276469'), + (58682, 617, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd8DaZ3gd', '5278159'), + (58683, 617, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd8DaZ3gd', '5363695'), + (58684, 617, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd8DaZ3gd', '5365960'), + (58685, 617, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd8DaZ3gd', '5368973'), + (58686, 617, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd8DaZ3gd', '5378247'), + (58687, 617, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd8DaZ3gd', '5389605'), + (58688, 617, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd8DaZ3gd', '5397265'), + (58689, 617, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8DaZ3gd', '6045684'), + (58690, 618, 1515, 'maybe', '2022-08-29 05:39:33', '2025-12-17 19:47:21', 'dN7oeeXm', '5441128'), + (58691, 618, 1518, 'not_attending', '2022-08-31 16:27:27', '2025-12-17 19:47:24', 'dN7oeeXm', '5441131'), + (58692, 618, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dN7oeeXm', '5441132'), + (58693, 618, 1558, 'attending', '2022-09-14 22:52:49', '2025-12-17 19:47:10', 'dN7oeeXm', '5458730'), + (58694, 618, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dN7oeeXm', '5505059'), + (58695, 618, 1614, 'maybe', '2022-08-29 05:39:21', '2025-12-17 19:47:23', 'dN7oeeXm', '5508371'), + (58696, 618, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dN7oeeXm', '5509055'), + (58697, 618, 1624, 'attending', '2022-08-26 01:17:35', '2025-12-17 19:47:24', 'dN7oeeXm', '5513985'), + (58698, 618, 1629, 'maybe', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dN7oeeXm', '5522550'), + (58699, 618, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dN7oeeXm', '5534683'), + (58700, 618, 1634, 'attending', '2022-08-30 00:56:27', '2025-12-17 19:47:23', 'dN7oeeXm', '5536950'), + (58701, 618, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dN7oeeXm', '5537735'), + (58702, 618, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dN7oeeXm', '5540859'), + (58703, 618, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dN7oeeXm', '5546619'), + (58704, 618, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dN7oeeXm', '5555245'), + (58705, 618, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dN7oeeXm', '5557747'), + (58706, 618, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dN7oeeXm', '5560255'), + (58707, 618, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dN7oeeXm', '5562906'), + (58708, 618, 1668, 'attending', '2022-09-30 21:06:58', '2025-12-17 19:47:12', 'dN7oeeXm', '5563222'), + (58709, 618, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dN7oeeXm', '5600604'), + (58710, 618, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dN7oeeXm', '5605544'), + (58711, 618, 1699, 'not_attending', '2022-09-26 12:18:55', '2025-12-17 19:47:12', 'dN7oeeXm', '5606737'), + (58712, 618, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dN7oeeXm', '5630960'), + (58713, 618, 1722, 'maybe', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dN7oeeXm', '5630961'), + (58714, 618, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dN7oeeXm', '5630962'), + (58715, 618, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dN7oeeXm', '5630966'), + (58716, 618, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dN7oeeXm', '5630967'), + (58717, 618, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dN7oeeXm', '5630968'), + (58718, 618, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dN7oeeXm', '5635406'), + (58719, 618, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dN7oeeXm', '5638765'), + (58720, 618, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dN7oeeXm', '5640097'), + (58721, 618, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dN7oeeXm', '5640843'), + (58722, 618, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dN7oeeXm', '5641521'), + (58723, 618, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dN7oeeXm', '5642818'), + (58724, 618, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dN7oeeXm', '5652395'), + (58725, 618, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dN7oeeXm', '5670445'), + (58726, 618, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dN7oeeXm', '5671637'), + (58727, 618, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dN7oeeXm', '5672329'), + (58728, 618, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dN7oeeXm', '5674057'), + (58729, 618, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dN7oeeXm', '5674060'), + (58730, 618, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dN7oeeXm', '5677461'), + (58731, 618, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dN7oeeXm', '5698046'), + (58732, 618, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dN7oeeXm', '5699760'), + (58733, 618, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dN7oeeXm', '5741601'), + (58734, 618, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dN7oeeXm', '5763458'), + (58735, 618, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dN7oeeXm', '5774172'), + (58736, 618, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dN7oeeXm', '5818247'), + (58737, 618, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dN7oeeXm', '5819471'), + (58738, 618, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dN7oeeXm', '5827739'), + (58739, 618, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dN7oeeXm', '5844306'), + (58740, 618, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dN7oeeXm', '5850159'), + (58741, 618, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dN7oeeXm', '5858999'), + (58742, 618, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dN7oeeXm', '5871984'), + (58743, 618, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dN7oeeXm', '5876354'), + (58744, 618, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dN7oeeXm', '5880939'), + (58745, 618, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dN7oeeXm', '5887890'), + (58746, 618, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dN7oeeXm', '5888598'), + (58747, 618, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dN7oeeXm', '5893260'), + (58748, 618, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN7oeeXm', '6045684'), + (58749, 619, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Argl5r84', '4356801'), + (58750, 619, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'Argl5r84', '4420738'), + (58751, 619, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'Argl5r84', '4420739'), + (58752, 619, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'Argl5r84', '4420741'), + (58753, 619, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'Argl5r84', '4420744'), + (58754, 619, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'Argl5r84', '4420747'), + (58755, 619, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Argl5r84', '4461883'), + (58756, 619, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Argl5r84', '4508342'), + (58757, 619, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Argl5r84', '4568602'), + (58758, 619, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Argl5r84', '4572153'), + (58759, 619, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'Argl5r84', '4585962'), + (58760, 619, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Argl5r84', '4596356'), + (58761, 619, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Argl5r84', '4598860'), + (58762, 619, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Argl5r84', '4598861'), + (58763, 619, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Argl5r84', '4602797'), + (58764, 619, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Argl5r84', '4637896'), + (58765, 619, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Argl5r84', '4642994'), + (58766, 619, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Argl5r84', '4642995'), + (58767, 619, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Argl5r84', '4642996'), + (58768, 619, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Argl5r84', '4642997'), + (58769, 619, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Argl5r84', '4645687'), + (58770, 619, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Argl5r84', '4645698'), + (58771, 619, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Argl5r84', '4645704'), + (58772, 619, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Argl5r84', '4645705'), + (58773, 619, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Argl5r84', '4668385'), + (58774, 619, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Argl5r84', '6045684'), + (58775, 620, 1723, 'maybe', '2022-11-05 20:58:16', '2025-12-17 19:47:15', '4voNO8Od', '5630962'), + (58776, 620, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4voNO8Od', '5630966'), + (58777, 620, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4voNO8Od', '5630967'), + (58778, 620, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4voNO8Od', '5630968'), + (58779, 620, 1727, 'attending', '2022-12-03 19:21:11', '2025-12-17 19:47:16', '4voNO8Od', '5630969'), + (58780, 620, 1744, 'maybe', '2022-11-22 22:48:38', '2025-12-17 19:47:16', '4voNO8Od', '5642818'), + (58781, 620, 1761, 'attending', '2022-11-18 21:37:58', '2025-12-17 19:47:16', '4voNO8Od', '5670434'), + (58782, 620, 1762, 'maybe', '2022-12-02 02:58:23', '2025-12-17 19:47:16', '4voNO8Od', '5670445'), + (58783, 620, 1767, 'attending', '2022-11-09 00:36:18', '2025-12-17 19:47:15', '4voNO8Od', '5674060'), + (58784, 620, 1768, 'maybe', '2022-11-17 04:18:49', '2025-12-17 19:47:16', '4voNO8Od', '5674062'), + (58785, 620, 1783, 'not_attending', '2022-11-14 21:39:18', '2025-12-17 19:47:16', '4voNO8Od', '5698621'), + (58786, 620, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', '4voNO8Od', '5699760'), + (58787, 620, 1785, 'attending', '2022-11-14 21:39:01', '2025-12-17 19:47:15', '4voNO8Od', '5702414'), + (58788, 620, 1786, 'not_attending', '2022-11-08 23:40:43', '2025-12-17 19:47:15', '4voNO8Od', '5727232'), + (58789, 620, 1789, 'attending', '2022-11-09 00:36:11', '2025-12-17 19:47:15', '4voNO8Od', '5727274'), + (58790, 620, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4voNO8Od', '5741601'), + (58791, 620, 1797, 'maybe', '2022-12-09 22:33:54', '2025-12-17 19:47:17', '4voNO8Od', '5757486'), + (58792, 620, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4voNO8Od', '5763458'), + (58793, 620, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4voNO8Od', '5774172'), + (58794, 620, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4voNO8Od', '5818247'), + (58795, 620, 1834, 'attending', '2022-12-10 05:12:44', '2025-12-17 19:47:17', '4voNO8Od', '5819470'), + (58796, 620, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4voNO8Od', '5819471'), + (58797, 620, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4voNO8Od', '5827739'), + (58798, 620, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4voNO8Od', '5844306'), + (58799, 620, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4voNO8Od', '5850159'), + (58800, 620, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4voNO8Od', '5858999'), + (58801, 620, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4voNO8Od', '5871984'), + (58802, 620, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4voNO8Od', '5876354'), + (58803, 620, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4voNO8Od', '5880939'), + (58804, 620, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4voNO8Od', '5880940'), + (58805, 620, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4voNO8Od', '5880942'), + (58806, 620, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4voNO8Od', '5880943'), + (58807, 620, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4voNO8Od', '5887890'), + (58808, 620, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4voNO8Od', '5888598'), + (58809, 620, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4voNO8Od', '5893260'), + (58810, 620, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4voNO8Od', '5899826'), + (58811, 620, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4voNO8Od', '5900199'), + (58812, 620, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4voNO8Od', '5900200'), + (58813, 620, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4voNO8Od', '5900202'), + (58814, 620, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4voNO8Od', '5900203'), + (58815, 620, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4voNO8Od', '5901108'), + (58816, 620, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4voNO8Od', '5901126'), + (58817, 620, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4voNO8Od', '5909655'), + (58818, 620, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4voNO8Od', '5910522'), + (58819, 620, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4voNO8Od', '5910526'), + (58820, 620, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4voNO8Od', '5910528'), + (58821, 620, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4voNO8Od', '5916219'), + (58822, 620, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4voNO8Od', '5936234'), + (58823, 620, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4voNO8Od', '5958351'), + (58824, 620, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4voNO8Od', '5959751'), + (58825, 620, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4voNO8Od', '5959755'), + (58826, 620, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4voNO8Od', '5960055'), + (58827, 620, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4voNO8Od', '5961684'), + (58828, 620, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4voNO8Od', '5962132'), + (58829, 620, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '4voNO8Od', '5962133'), + (58830, 620, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4voNO8Od', '5962134'), + (58831, 620, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4voNO8Od', '5962317'), + (58832, 620, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4voNO8Od', '5962318'), + (58833, 620, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', '4voNO8Od', '5965933'), + (58834, 620, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4voNO8Od', '5967014'), + (58835, 620, 1957, 'attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4voNO8Od', '5972815'), + (58836, 620, 1960, 'attending', '2023-03-11 04:50:48', '2025-12-17 19:47:09', '4voNO8Od', '5973267'), + (58837, 620, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4voNO8Od', '5974016'), + (58838, 620, 1962, 'attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '4voNO8Od', '5975052'), + (58839, 620, 1963, 'attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '4voNO8Od', '5975054'), + (58840, 620, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4voNO8Od', '5981515'), + (58841, 620, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4voNO8Od', '5993516'), + (58842, 620, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4voNO8Od', '5998939'), + (58843, 620, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4voNO8Od', '6028191'), + (58844, 620, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4voNO8Od', '6040066'), + (58845, 620, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4voNO8Od', '6042717'), + (58846, 620, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4voNO8Od', '6044838'), + (58847, 620, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4voNO8Od', '6044839'), + (58848, 620, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4voNO8Od', '6045684'), + (58849, 620, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4voNO8Od', '6050104'), + (58850, 620, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4voNO8Od', '6053195'), + (58851, 620, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4voNO8Od', '6053198'), + (58852, 620, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4voNO8Od', '6056085'), + (58853, 620, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4voNO8Od', '6056916'), + (58854, 620, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4voNO8Od', '6059290'), + (58855, 620, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4voNO8Od', '6060328'), + (58856, 620, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4voNO8Od', '6061037'), + (58857, 620, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4voNO8Od', '6061039'), + (58858, 620, 2020, 'not_attending', '2023-04-14 17:17:55', '2025-12-17 19:46:59', '4voNO8Od', '6065813'), + (58859, 620, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4voNO8Od', '6067245'), + (58860, 620, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4voNO8Od', '6068094'), + (58861, 620, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4voNO8Od', '6068252'), + (58862, 620, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4voNO8Od', '6068253'), + (58863, 620, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4voNO8Od', '6068254'), + (58864, 620, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4voNO8Od', '6068280'), + (58865, 620, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4voNO8Od', '6069093'), + (58866, 620, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4voNO8Od', '6072528'), + (58867, 620, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4voNO8Od', '6075556'), + (58868, 620, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4voNO8Od', '6079840'), + (58869, 620, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4voNO8Od', '6083398'), + (58870, 620, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4voNO8Od', '6093504'), + (58871, 620, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4voNO8Od', '6097414'), + (58872, 620, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4voNO8Od', '6097442'), + (58873, 620, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4voNO8Od', '6097684'), + (58874, 620, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4voNO8Od', '6098762'), + (58875, 620, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4voNO8Od', '6101361'), + (58876, 620, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4voNO8Od', '6101362'), + (58877, 620, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4voNO8Od', '6107314'), + (58878, 620, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4voNO8Od', '6120034'), + (58879, 620, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4voNO8Od', '6136733'), + (58880, 620, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4voNO8Od', '6137989'), + (58881, 620, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4voNO8Od', '6150864'), + (58882, 620, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4voNO8Od', '6155491'), + (58883, 620, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4voNO8Od', '6164417'), + (58884, 620, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4voNO8Od', '6166388'), + (58885, 620, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4voNO8Od', '6176439'), + (58886, 620, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4voNO8Od', '6182410'), + (58887, 620, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4voNO8Od', '6185812'), + (58888, 620, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4voNO8Od', '6187651'), + (58889, 620, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4voNO8Od', '6187963'), + (58890, 620, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4voNO8Od', '6187964'), + (58891, 620, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4voNO8Od', '6187966'), + (58892, 620, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4voNO8Od', '6187967'), + (58893, 620, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4voNO8Od', '6187969'), + (58894, 620, 2140, 'maybe', '2023-07-12 09:30:02', '2025-12-17 19:46:52', '4voNO8Od', '6188074'), + (58895, 620, 2144, 'maybe', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4voNO8Od', '6334878'), + (58896, 620, 2147, 'maybe', '2023-07-12 09:27:31', '2025-12-17 19:46:52', '4voNO8Od', '6335666'), + (58897, 620, 2152, 'attending', '2023-07-12 09:30:17', '2025-12-17 19:46:52', '4voNO8Od', '6337021'), + (58898, 620, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4voNO8Od', '6337236'), + (58899, 620, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4voNO8Od', '6337970'), + (58900, 620, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4voNO8Od', '6338308'), + (58901, 620, 2157, 'not_attending', '2023-07-12 21:55:11', '2025-12-17 19:46:52', '4voNO8Od', '6338342'), + (58902, 620, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4voNO8Od', '6341710'), + (58903, 620, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4voNO8Od', '6342044'), + (58904, 620, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4voNO8Od', '6342298'), + (58905, 620, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4voNO8Od', '6343294'), + (58906, 620, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4voNO8Od', '6347034'), + (58907, 620, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4voNO8Od', '6347056'), + (58908, 620, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4voNO8Od', '6353830'), + (58909, 620, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4voNO8Od', '6353831'), + (58910, 620, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4voNO8Od', '6357867'), + (58911, 620, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4voNO8Od', '6358652'), + (58912, 620, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '4voNO8Od', '6358668'), + (58913, 620, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '4voNO8Od', '6358669'), + (58914, 620, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4voNO8Od', '6361709'), + (58915, 620, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4voNO8Od', '6361710'), + (58916, 620, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4voNO8Od', '6361711'), + (58917, 620, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4voNO8Od', '6361712'), + (58918, 620, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4voNO8Od', '6361713'), + (58919, 620, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4voNO8Od', '6382573'), + (58920, 620, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4voNO8Od', '6388604'), + (58921, 620, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4voNO8Od', '6394629'), + (58922, 620, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4voNO8Od', '6394631'), + (58923, 620, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4voNO8Od', '6440863'), + (58924, 620, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4voNO8Od', '6445440'), + (58925, 620, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4voNO8Od', '6453951'), + (58926, 620, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4voNO8Od', '6461696'), + (58927, 620, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4voNO8Od', '6462129'), + (58928, 620, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4voNO8Od', '6463218'), + (58929, 620, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4voNO8Od', '6472181'), + (58930, 620, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4voNO8Od', '6482693'), + (58931, 620, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4voNO8Od', '6484200'), + (58932, 620, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4voNO8Od', '6484680'), + (58933, 620, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4voNO8Od', '6507741'), + (58934, 620, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4voNO8Od', '6514659'), + (58935, 620, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4voNO8Od', '6514660'), + (58936, 620, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4voNO8Od', '6519103'), + (58937, 620, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4voNO8Od', '6535681'), + (58938, 620, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4voNO8Od', '6584747'), + (58939, 620, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4voNO8Od', '6587097'), + (58940, 620, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4voNO8Od', '6609022'), + (58941, 620, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4voNO8Od', '6632757'), + (58942, 620, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4voNO8Od', '6644187'), + (58943, 620, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4voNO8Od', '6648951'), + (58944, 620, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4voNO8Od', '6648952'), + (58945, 620, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4voNO8Od', '6655401'), + (58946, 620, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4voNO8Od', '6661585'), + (58947, 620, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4voNO8Od', '6661588'), + (58948, 620, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4voNO8Od', '6661589'), + (58949, 620, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4voNO8Od', '6699906'), + (58950, 620, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4voNO8Od', '6701109'), + (58951, 620, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '4voNO8Od', '6704561'), + (58952, 620, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4voNO8Od', '6705219'), + (58953, 620, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '4voNO8Od', '6708410'), + (58954, 620, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4voNO8Od', '6710153'), + (58955, 620, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4voNO8Od', '6711552'), + (58956, 620, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '4voNO8Od', '6711553'), + (58957, 621, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd3RkK1e4', '4356801'), + (58958, 621, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3RkK1e4', '6045684'), + (58959, 622, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', 'AYzbJjw4', '4420739'), + (58960, 622, 1005, 'attending', '2021-09-15 23:23:56', '2025-12-17 19:47:34', 'AYzbJjw4', '4438807'), + (58961, 622, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYzbJjw4', '6045684'), + (58962, 623, 2286, 'maybe', '2023-12-01 21:53:00', '2025-12-17 19:46:48', '409Nn7yd', '6460930'), + (58963, 623, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '409Nn7yd', '6472181'), + (58964, 623, 2303, 'attending', '2023-10-28 03:11:39', '2025-12-17 19:46:47', '409Nn7yd', '6482691'), + (58965, 623, 2304, 'attending', '2023-10-31 23:03:12', '2025-12-17 19:46:47', '409Nn7yd', '6482693'), + (58966, 623, 2306, 'attending', '2023-11-14 18:44:10', '2025-12-17 19:46:47', '409Nn7yd', '6484200'), + (58967, 623, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '409Nn7yd', '6484680'), + (58968, 623, 2310, 'attending', '2023-11-11 18:16:11', '2025-12-17 19:46:47', '409Nn7yd', '6487709'), + (58969, 623, 2311, 'attending', '2023-10-30 23:16:20', '2025-12-17 19:46:47', '409Nn7yd', '6487725'), + (58970, 623, 2315, 'attending', '2023-10-29 20:24:25', '2025-12-17 19:46:47', '409Nn7yd', '6493666'), + (58971, 623, 2316, 'maybe', '2023-10-29 20:33:51', '2025-12-17 19:46:48', '409Nn7yd', '6493668'), + (58972, 623, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '409Nn7yd', '6507741'), + (58973, 623, 2320, 'attending', '2023-10-31 03:31:29', '2025-12-17 19:46:47', '409Nn7yd', '6508647'), + (58974, 623, 2321, 'attending', '2023-10-30 21:42:12', '2025-12-17 19:46:47', '409Nn7yd', '6512075'), + (58975, 623, 2322, 'attending', '2023-11-14 18:44:27', '2025-12-17 19:46:48', '409Nn7yd', '6514659'), + (58976, 623, 2323, 'attending', '2023-11-19 18:01:53', '2025-12-17 19:46:48', '409Nn7yd', '6514660'), + (58977, 623, 2324, 'attending', '2023-12-09 16:34:31', '2025-12-17 19:46:49', '409Nn7yd', '6514662'), + (58978, 623, 2325, 'attending', '2023-12-16 22:41:57', '2025-12-17 19:46:36', '409Nn7yd', '6514663'), + (58979, 623, 2330, 'attending', '2023-11-12 21:04:12', '2025-12-17 19:46:47', '409Nn7yd', '6517941'), + (58980, 623, 2331, 'attending', '2023-11-12 16:28:07', '2025-12-17 19:46:47', '409Nn7yd', '6518640'), + (58981, 623, 2332, 'attending', '2023-11-03 20:51:27', '2025-12-17 19:46:47', '409Nn7yd', '6518655'), + (58982, 623, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '409Nn7yd', '6519103'), + (58983, 623, 2337, 'maybe', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '409Nn7yd', '6535681'), + (58984, 623, 2338, 'maybe', '2023-11-21 02:45:09', '2025-12-17 19:46:48', '409Nn7yd', '6538868'), + (58985, 623, 2339, 'attending', '2023-11-09 20:15:00', '2025-12-17 19:46:47', '409Nn7yd', '6539128'), + (58986, 623, 2340, 'maybe', '2023-11-10 16:27:53', '2025-12-17 19:46:48', '409Nn7yd', '6540279'), + (58987, 623, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '409Nn7yd', '6584747'), + (58988, 623, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '409Nn7yd', '6587097'), + (58989, 623, 2354, 'attending', '2023-11-28 01:30:32', '2025-12-17 19:46:48', '409Nn7yd', '6591742'), + (58990, 623, 2358, 'maybe', '2023-11-30 08:57:55', '2025-12-17 19:46:48', '409Nn7yd', '6595321'), + (58991, 623, 2360, 'attending', '2023-12-01 21:05:12', '2025-12-17 19:46:49', '409Nn7yd', '6599341'), + (58992, 623, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '409Nn7yd', '6609022'), + (58993, 623, 2364, 'maybe', '2023-12-08 07:18:30', '2025-12-17 19:46:49', '409Nn7yd', '6613011'), + (58994, 623, 2365, 'attending', '2023-12-17 09:09:35', '2025-12-17 19:46:37', '409Nn7yd', '6613093'), + (58995, 623, 2372, 'attending', '2023-12-17 09:09:08', '2025-12-17 19:46:36', '409Nn7yd', '6628243'), + (58996, 623, 2373, 'attending', '2023-12-28 16:45:39', '2025-12-17 19:46:38', '409Nn7yd', '6632678'), + (58997, 623, 2374, 'maybe', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '409Nn7yd', '6632757'), + (58998, 623, 2375, 'attending', '2023-12-20 06:06:14', '2025-12-17 19:46:36', '409Nn7yd', '6634548'), + (58999, 623, 2378, 'attending', '2023-12-30 16:38:24', '2025-12-17 19:46:37', '409Nn7yd', '6644006'), + (59000, 623, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '409Nn7yd', '6644187'), + (59001, 623, 2380, 'attending', '2023-12-31 16:31:47', '2025-12-17 19:46:37', '409Nn7yd', '6645105'), + (59002, 623, 2381, 'attending', '2024-01-01 06:21:37', '2025-12-17 19:46:37', '409Nn7yd', '6646398'), + (59003, 623, 2385, 'attending', '2024-01-07 07:57:43', '2025-12-17 19:46:37', '409Nn7yd', '6648943'), + (59004, 623, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '409Nn7yd', '6648951'), + (59005, 623, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '409Nn7yd', '6648952'), + (59006, 623, 2388, 'maybe', '2024-01-07 00:44:10', '2025-12-17 19:46:37', '409Nn7yd', '6649244'), + (59007, 623, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '409Nn7yd', '6655401'), + (59008, 623, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '409Nn7yd', '6661585'), + (59009, 623, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '409Nn7yd', '6661588'), + (59010, 623, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '409Nn7yd', '6661589'), + (59011, 623, 2405, 'maybe', '2024-01-18 16:05:07', '2025-12-17 19:46:38', '409Nn7yd', '6667332'), + (59012, 623, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '409Nn7yd', '6699906'), + (59013, 623, 2408, 'attending', '2024-01-24 04:08:53', '2025-12-17 19:46:40', '409Nn7yd', '6699907'), + (59014, 623, 2409, 'attending', '2024-02-04 00:00:48', '2025-12-17 19:46:41', '409Nn7yd', '6699909'), + (59015, 623, 2410, 'attending', '2024-02-05 19:50:15', '2025-12-17 19:46:41', '409Nn7yd', '6699911'), + (59016, 623, 2411, 'attending', '2024-02-12 17:15:59', '2025-12-17 19:46:41', '409Nn7yd', '6699913'), + (59017, 623, 2415, 'maybe', '2024-01-18 19:26:00', '2025-12-17 19:46:40', '409Nn7yd', '6701001'), + (59018, 623, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '409Nn7yd', '6701109'), + (59019, 623, 2420, 'attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '409Nn7yd', '6704561'), + (59020, 623, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '409Nn7yd', '6705219'), + (59021, 623, 2426, 'not_attending', '2024-01-24 00:30:45', '2025-12-17 19:46:40', '409Nn7yd', '6705569'), + (59022, 623, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '409Nn7yd', '6708410'), + (59023, 623, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '409Nn7yd', '6710153'), + (59024, 623, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '409Nn7yd', '6711552'), + (59025, 623, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '409Nn7yd', '6711553'), + (59026, 623, 2431, 'attending', '2024-02-01 16:23:40', '2025-12-17 19:46:41', '409Nn7yd', '6712394'), + (59027, 623, 2435, 'maybe', '2024-01-28 16:34:07', '2025-12-17 19:46:41', '409Nn7yd', '6721547'), + (59028, 623, 2436, 'maybe', '2024-01-27 21:44:04', '2025-12-17 19:46:40', '409Nn7yd', '6722687'), + (59029, 623, 2437, 'maybe', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '409Nn7yd', '6722688'), + (59030, 623, 2438, 'maybe', '2024-02-05 19:50:30', '2025-12-17 19:46:41', '409Nn7yd', '6730201'), + (59031, 623, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '409Nn7yd', '6730620'), + (59032, 623, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '409Nn7yd', '6730642'), + (59033, 623, 2441, 'not_attending', '2024-02-01 02:16:09', '2025-12-17 19:46:41', '409Nn7yd', '6731263'), + (59034, 623, 2442, 'maybe', '2024-02-02 16:07:39', '2025-12-17 19:46:41', '409Nn7yd', '6732647'), + (59035, 623, 2444, 'maybe', '2024-02-09 20:51:25', '2025-12-17 19:46:41', '409Nn7yd', '6734367'), + (59036, 623, 2446, 'maybe', '2024-03-01 16:32:47', '2025-12-17 19:46:43', '409Nn7yd', '6734369'), + (59037, 623, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '409Nn7yd', '6740364'), + (59038, 623, 2456, 'maybe', '2024-02-09 20:51:11', '2025-12-17 19:46:41', '409Nn7yd', '6742202'), + (59039, 623, 2457, 'maybe', '2024-02-08 18:26:27', '2025-12-17 19:46:41', '409Nn7yd', '6742221'), + (59040, 623, 2458, 'maybe', '2024-02-09 20:51:31', '2025-12-17 19:46:41', '409Nn7yd', '6743731'), + (59041, 623, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '409Nn7yd', '6743829'), + (59042, 623, 2462, 'not_attending', '2024-02-13 01:09:33', '2025-12-17 19:46:41', '409Nn7yd', '6744701'), + (59043, 623, 2463, 'attending', '2024-02-11 06:09:28', '2025-12-17 19:46:41', '409Nn7yd', '6746394'), + (59044, 623, 2466, 'not_attending', '2024-02-14 22:12:21', '2025-12-17 19:46:41', '409Nn7yd', '7026777'), + (59045, 623, 2467, 'attending', '2024-02-20 07:00:56', '2025-12-17 19:46:43', '409Nn7yd', '7029987'), + (59046, 623, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '409Nn7yd', '7030380'), + (59047, 623, 2469, 'attending', '2024-02-17 04:19:13', '2025-12-17 19:46:42', '409Nn7yd', '7030632'), + (59048, 623, 2471, 'maybe', '2024-02-18 21:30:13', '2025-12-17 19:46:42', '409Nn7yd', '7032425'), + (59049, 623, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '409Nn7yd', '7033677'), + (59050, 623, 2473, 'not_attending', '2024-02-20 07:01:38', '2025-12-17 19:46:43', '409Nn7yd', '7033724'), + (59051, 623, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '409Nn7yd', '7035415'), + (59052, 623, 2476, 'not_attending', '2024-02-27 05:20:16', '2025-12-17 19:46:43', '409Nn7yd', '7035691'), + (59053, 623, 2479, 'maybe', '2024-02-21 04:22:53', '2025-12-17 19:46:43', '409Nn7yd', '7037009'), + (59054, 623, 2481, 'maybe', '2024-02-25 05:48:13', '2025-12-17 19:46:43', '409Nn7yd', '7044715'), + (59055, 623, 2485, 'maybe', '2024-02-27 00:54:20', '2025-12-17 19:46:43', '409Nn7yd', '7048111'), + (59056, 623, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '409Nn7yd', '7050318'), + (59057, 623, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '409Nn7yd', '7050319'), + (59058, 623, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '409Nn7yd', '7050322'), + (59059, 623, 2495, 'maybe', '2024-03-04 20:38:17', '2025-12-17 19:46:32', '409Nn7yd', '7052982'), + (59060, 623, 2499, 'maybe', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '409Nn7yd', '7057804'), + (59061, 623, 2502, 'maybe', '2024-03-18 15:34:07', '2025-12-17 19:46:33', '409Nn7yd', '7061202'), + (59062, 623, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '409Nn7yd', '7072824'), + (59063, 623, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '409Nn7yd', '7074348'), + (59064, 623, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '409Nn7yd', '7074364'), + (59065, 623, 2538, 'attending', '2024-03-23 08:04:53', '2025-12-17 19:46:33', '409Nn7yd', '7085485'), + (59066, 623, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '409Nn7yd', '7089267'), + (59067, 623, 2545, 'maybe', '2024-03-23 08:03:41', '2025-12-17 19:46:33', '409Nn7yd', '7096942'), + (59068, 623, 2546, 'maybe', '2024-03-23 08:04:22', '2025-12-17 19:46:33', '409Nn7yd', '7096944'), + (59069, 623, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '409Nn7yd', '7098747'), + (59070, 623, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '409Nn7yd', '7113468'), + (59071, 623, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '409Nn7yd', '7114856'), + (59072, 623, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '409Nn7yd', '7114951'), + (59073, 623, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '409Nn7yd', '7114955'), + (59074, 623, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '409Nn7yd', '7114956'), + (59075, 623, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '409Nn7yd', '7114957'), + (59076, 623, 2560, 'maybe', '2024-04-09 15:16:02', '2025-12-17 19:46:33', '409Nn7yd', '7130086'), + (59077, 623, 2566, 'maybe', '2024-04-15 23:54:26', '2025-12-17 19:46:34', '409Nn7yd', '7140664'), + (59078, 623, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '409Nn7yd', '7153615'), + (59079, 623, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '409Nn7yd', '7159484'), + (59080, 623, 2585, 'maybe', '2024-04-21 15:19:33', '2025-12-17 19:46:34', '409Nn7yd', '7175828'), + (59081, 623, 2590, 'maybe', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '409Nn7yd', '7178446'), + (59082, 623, 2591, 'maybe', '2024-04-19 14:27:53', '2025-12-17 19:46:34', '409Nn7yd', '7180957'), + (59083, 623, 2593, 'maybe', '2024-04-19 15:10:32', '2025-12-17 19:46:34', '409Nn7yd', '7181003'), + (59084, 623, 2594, 'not_attending', '2024-04-20 04:25:37', '2025-12-17 19:46:34', '409Nn7yd', '7182117'), + (59085, 623, 2598, 'maybe', '2024-04-22 23:47:38', '2025-12-17 19:46:34', '409Nn7yd', '7186731'), + (59086, 623, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '409Nn7yd', '7220467'), + (59087, 623, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '409Nn7yd', '7240354'), + (59088, 623, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '409Nn7yd', '7251633'), + (59089, 623, 2618, 'maybe', '2024-05-05 16:31:11', '2025-12-17 19:46:35', '409Nn7yd', '7251685'), + (59090, 623, 2619, 'maybe', '2024-05-05 16:31:28', '2025-12-17 19:46:35', '409Nn7yd', '7252965'), + (59091, 623, 2627, 'attending', '2024-05-25 20:44:19', '2025-12-17 19:46:35', '409Nn7yd', '7264724'), + (59092, 623, 2628, 'attending', '2024-06-01 17:19:22', '2025-12-17 19:46:36', '409Nn7yd', '7264725'), + (59093, 623, 2629, 'attending', '2024-06-03 00:54:56', '2025-12-17 19:46:28', '409Nn7yd', '7264726'), + (59094, 623, 2637, 'maybe', '2024-05-26 06:26:53', '2025-12-17 19:46:35', '409Nn7yd', '7270324'), + (59095, 623, 2638, 'attending', '2024-05-15 21:42:13', '2025-12-17 19:46:35', '409Nn7yd', '7273117'), + (59096, 623, 2647, 'attending', '2024-06-03 00:55:06', '2025-12-17 19:46:28', '409Nn7yd', '7282057'), + (59097, 623, 2655, 'maybe', '2024-05-26 22:13:02', '2025-12-17 19:46:35', '409Nn7yd', '7291225'), + (59098, 623, 2658, 'maybe', '2024-06-02 16:42:59', '2025-12-17 19:46:36', '409Nn7yd', '7298846'), + (59099, 623, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '409Nn7yd', '7302674'), + (59100, 623, 2668, 'maybe', '2024-06-07 19:33:55', '2025-12-17 19:46:36', '409Nn7yd', '7308821'), + (59101, 623, 2674, 'maybe', '2024-07-07 06:30:16', '2025-12-17 19:46:29', '409Nn7yd', '7319480'), + (59102, 623, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '409Nn7yd', '7324073'), + (59103, 623, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '409Nn7yd', '7324074'), + (59104, 623, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '409Nn7yd', '7324075'), + (59105, 623, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '409Nn7yd', '7324078'), + (59106, 623, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '409Nn7yd', '7324082'), + (59107, 623, 2709, 'attending', '2024-06-14 01:15:11', '2025-12-17 19:46:29', '409Nn7yd', '7325107'), + (59108, 623, 2710, 'attending', '2024-06-14 00:48:21', '2025-12-17 19:46:28', '409Nn7yd', '7325108'), + (59109, 623, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '409Nn7yd', '7331457'), + (59110, 623, 2738, 'maybe', '2024-06-30 17:09:31', '2025-12-17 19:46:29', '409Nn7yd', '7344085'), + (59111, 623, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '409Nn7yd', '7363643'), + (59112, 623, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '409Nn7yd', '7368606'), + (59113, 623, 2781, 'maybe', '2024-07-26 00:18:55', '2025-12-17 19:46:30', '409Nn7yd', '7373194'), + (59114, 623, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '409Nn7yd', '7397462'), + (59115, 623, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '409Nn7yd', '7424275'), + (59116, 623, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '409Nn7yd', '7424276'), + (59117, 623, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '409Nn7yd', '7432751'), + (59118, 623, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '409Nn7yd', '7432752'), + (59119, 623, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '409Nn7yd', '7432753'), + (59120, 623, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '409Nn7yd', '7432754'), + (59121, 623, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '409Nn7yd', '7432755'), + (59122, 623, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '409Nn7yd', '7432756'), + (59123, 623, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '409Nn7yd', '7432758'), + (59124, 623, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '409Nn7yd', '7432759'), + (59125, 623, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '409Nn7yd', '7433834'), + (59126, 623, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '409Nn7yd', '7470197'), + (59127, 623, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '409Nn7yd', '7685613'), + (59128, 623, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '409Nn7yd', '7688194'), + (59129, 623, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '409Nn7yd', '7688196'), + (59130, 623, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '409Nn7yd', '7688289'), + (59131, 623, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '409Nn7yd', '7692763'), + (59132, 623, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '409Nn7yd', '7697552'), + (59133, 623, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '409Nn7yd', '7699878'), + (59134, 623, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '409Nn7yd', '7704043'), + (59135, 623, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '409Nn7yd', '7712467'), + (59136, 623, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '409Nn7yd', '7713585'), + (59137, 623, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '409Nn7yd', '7713586'), + (59138, 623, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '409Nn7yd', '7738518'), + (59139, 623, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '409Nn7yd', '7750636'), + (59140, 623, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '409Nn7yd', '7796540'), + (59141, 623, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '409Nn7yd', '7796541'), + (59142, 623, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '409Nn7yd', '7796542'), + (59143, 624, 54, 'attending', '2020-08-09 00:17:08', '2025-12-17 19:47:56', 'oAQJrkN4', '2975279'), + (59144, 624, 196, 'attending', '2020-08-12 21:05:06', '2025-12-17 19:47:56', 'oAQJrkN4', '3087265'), + (59145, 624, 197, 'attending', '2020-08-22 22:41:27', '2025-12-17 19:47:56', 'oAQJrkN4', '3087266'), + (59146, 624, 198, 'attending', '2020-08-27 02:42:13', '2025-12-17 19:47:56', 'oAQJrkN4', '3087267'), + (59147, 624, 199, 'attending', '2020-09-05 19:09:24', '2025-12-17 19:47:56', 'oAQJrkN4', '3087268'), + (59148, 624, 223, 'attending', '2020-09-08 23:00:36', '2025-12-17 19:47:56', 'oAQJrkN4', '3129980'), + (59149, 624, 255, 'attending', '2021-03-16 02:43:55', '2025-12-17 19:47:43', 'oAQJrkN4', '3149486'), + (59150, 624, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'oAQJrkN4', '3162006'), + (59151, 624, 277, 'not_attending', '2020-08-06 21:32:06', '2025-12-17 19:47:56', 'oAQJrkN4', '3163442'), + (59152, 624, 293, 'attending', '2020-08-20 00:05:36', '2025-12-17 19:47:56', 'oAQJrkN4', '3172832'), + (59153, 624, 294, 'attending', '2020-08-23 02:18:48', '2025-12-17 19:47:56', 'oAQJrkN4', '3172833'), + (59154, 624, 295, 'not_attending', '2020-09-02 23:22:15', '2025-12-17 19:47:56', 'oAQJrkN4', '3172834'), + (59155, 624, 296, 'not_attending', '2020-09-10 02:34:14', '2025-12-17 19:47:56', 'oAQJrkN4', '3172876'), + (59156, 624, 308, 'not_attending', '2020-09-03 23:00:43', '2025-12-17 19:47:56', 'oAQJrkN4', '3183341'), + (59157, 624, 311, 'attending', '2020-09-13 16:41:16', '2025-12-17 19:47:56', 'oAQJrkN4', '3186057'), + (59158, 624, 312, 'maybe', '2020-09-02 03:16:24', '2025-12-17 19:47:56', 'oAQJrkN4', '3187795'), + (59159, 624, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'oAQJrkN4', '3191735'), + (59160, 624, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'oAQJrkN4', '3200209'), + (59161, 624, 339, 'attending', '2020-09-08 22:56:02', '2025-12-17 19:47:56', 'oAQJrkN4', '3204469'), + (59162, 624, 340, 'attending', '2020-09-18 22:52:45', '2025-12-17 19:47:56', 'oAQJrkN4', '3204470'), + (59163, 624, 342, 'not_attending', '2020-10-01 02:11:37', '2025-12-17 19:47:52', 'oAQJrkN4', '3204472'), + (59164, 624, 344, 'attending', '2020-11-02 00:16:06', '2025-12-17 19:47:53', 'oAQJrkN4', '3206906'), + (59165, 624, 352, 'not_attending', '2020-09-14 13:19:52', '2025-12-17 19:47:56', 'oAQJrkN4', '3210514'), + (59166, 624, 355, 'attending', '2020-09-15 02:49:53', '2025-12-17 19:47:56', 'oAQJrkN4', '3212571'), + (59167, 624, 356, 'attending', '2020-09-15 02:50:04', '2025-12-17 19:47:51', 'oAQJrkN4', '3212572'), + (59168, 624, 357, 'attending', '2020-09-15 02:50:10', '2025-12-17 19:47:52', 'oAQJrkN4', '3212573'), + (59169, 624, 362, 'not_attending', '2020-09-26 15:56:31', '2025-12-17 19:47:52', 'oAQJrkN4', '3214207'), + (59170, 624, 363, 'not_attending', '2020-09-27 19:57:26', '2025-12-17 19:47:52', 'oAQJrkN4', '3217037'), + (59171, 624, 365, 'not_attending', '2020-09-20 15:50:39', '2025-12-17 19:47:52', 'oAQJrkN4', '3218510'), + (59172, 624, 385, 'attending', '2020-10-03 22:05:39', '2025-12-17 19:47:52', 'oAQJrkN4', '3228698'), + (59173, 624, 386, 'attending', '2020-10-09 01:53:12', '2025-12-17 19:47:52', 'oAQJrkN4', '3228699'), + (59174, 624, 387, 'not_attending', '2020-10-17 14:30:42', '2025-12-17 19:47:52', 'oAQJrkN4', '3228700'), + (59175, 624, 388, 'maybe', '2020-10-24 19:07:22', '2025-12-17 19:47:52', 'oAQJrkN4', '3228701'), + (59176, 624, 420, 'attending', '2020-10-15 20:26:17', '2025-12-17 19:47:52', 'oAQJrkN4', '3245293'), + (59177, 624, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'oAQJrkN4', '3245751'), + (59178, 624, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'oAQJrkN4', '3250232'), + (59179, 624, 432, 'not_attending', '2020-11-03 03:10:30', '2025-12-17 19:47:53', 'oAQJrkN4', '3254416'), + (59180, 624, 438, 'attending', '2020-10-28 13:46:45', '2025-12-17 19:47:53', 'oAQJrkN4', '3256163'), + (59181, 624, 440, 'not_attending', '2020-11-07 23:20:48', '2025-12-17 19:47:53', 'oAQJrkN4', '3256168'), + (59182, 624, 441, 'attending', '2020-11-14 22:13:30', '2025-12-17 19:47:54', 'oAQJrkN4', '3256169'), + (59183, 624, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'oAQJrkN4', '3263578'), + (59184, 624, 445, 'not_attending', '2020-11-01 16:47:13', '2025-12-17 19:47:54', 'oAQJrkN4', '3266138'), + (59185, 624, 452, 'attending', '2020-11-29 00:17:29', '2025-12-17 19:47:54', 'oAQJrkN4', '3272981'), + (59186, 624, 456, 'not_attending', '2020-11-07 17:01:22', '2025-12-17 19:47:54', 'oAQJrkN4', '3276428'), + (59187, 624, 459, 'not_attending', '2020-11-15 20:50:50', '2025-12-17 19:47:54', 'oAQJrkN4', '3281467'), + (59188, 624, 462, 'not_attending', '2020-11-11 00:30:47', '2025-12-17 19:47:54', 'oAQJrkN4', '3281470'), + (59189, 624, 466, 'not_attending', '2020-11-11 00:30:51', '2025-12-17 19:47:54', 'oAQJrkN4', '3281829'), + (59190, 624, 468, 'not_attending', '2020-11-21 22:54:17', '2025-12-17 19:47:54', 'oAQJrkN4', '3285413'), + (59191, 624, 469, 'not_attending', '2020-11-29 00:15:13', '2025-12-17 19:47:54', 'oAQJrkN4', '3285414'), + (59192, 624, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'oAQJrkN4', '3297764'), + (59193, 624, 488, 'not_attending', '2020-12-01 23:56:31', '2025-12-17 19:47:54', 'oAQJrkN4', '3312757'), + (59194, 624, 493, 'not_attending', '2020-12-05 19:03:24', '2025-12-17 19:47:54', 'oAQJrkN4', '3313856'), + (59195, 624, 499, 'not_attending', '2020-12-11 23:37:27', '2025-12-17 19:47:55', 'oAQJrkN4', '3314909'), + (59196, 624, 500, 'not_attending', '2020-12-19 00:34:20', '2025-12-17 19:47:55', 'oAQJrkN4', '3314964'), + (59197, 624, 502, 'not_attending', '2020-12-12 20:09:53', '2025-12-17 19:47:55', 'oAQJrkN4', '3323365'), + (59198, 624, 513, 'not_attending', '2020-12-19 16:09:33', '2025-12-17 19:47:55', 'oAQJrkN4', '3329383'), + (59199, 624, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'oAQJrkN4', '3351539'), + (59200, 624, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'oAQJrkN4', '3386848'), + (59201, 624, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'oAQJrkN4', '3389527'), + (59202, 624, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'oAQJrkN4', '3396499'), + (59203, 624, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'oAQJrkN4', '3403650'), + (59204, 624, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'oAQJrkN4', '3406988'), + (59205, 624, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'oAQJrkN4', '3416576'), + (59206, 624, 558, 'not_attending', '2021-01-19 05:20:52', '2025-12-17 19:47:49', 'oAQJrkN4', '3418925'), + (59207, 624, 622, 'not_attending', '2021-03-10 05:00:46', '2025-12-17 19:47:51', 'oAQJrkN4', '3517816'), + (59208, 624, 641, 'not_attending', '2021-04-03 19:01:42', '2025-12-17 19:47:44', 'oAQJrkN4', '3539916'), + (59209, 624, 642, 'not_attending', '2021-04-10 22:45:57', '2025-12-17 19:47:44', 'oAQJrkN4', '3539917'), + (59210, 624, 643, 'attending', '2021-04-14 13:43:33', '2025-12-17 19:47:45', 'oAQJrkN4', '3539918'), + (59211, 624, 644, 'attending', '2021-04-24 22:18:45', '2025-12-17 19:47:45', 'oAQJrkN4', '3539919'), + (59212, 624, 645, 'not_attending', '2021-05-08 18:58:59', '2025-12-17 19:47:46', 'oAQJrkN4', '3539920'), + (59213, 624, 646, 'attending', '2021-05-14 15:12:57', '2025-12-17 19:47:46', 'oAQJrkN4', '3539921'), + (59214, 624, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'oAQJrkN4', '3539922'), + (59215, 624, 648, 'not_attending', '2021-05-27 00:34:38', '2025-12-17 19:47:47', 'oAQJrkN4', '3539923'), + (59216, 624, 649, 'not_attending', '2021-03-19 13:23:36', '2025-12-17 19:47:51', 'oAQJrkN4', '3539927'), + (59217, 624, 650, 'not_attending', '2021-03-27 15:30:52', '2025-12-17 19:47:44', 'oAQJrkN4', '3539928'), + (59218, 624, 700, 'not_attending', '2021-03-30 18:20:38', '2025-12-17 19:47:44', 'oAQJrkN4', '3575725'), + (59219, 624, 706, 'not_attending', '2021-03-23 05:48:25', '2025-12-17 19:47:45', 'oAQJrkN4', '3582734'), + (59220, 624, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'oAQJrkN4', '3583262'), + (59221, 624, 711, 'attending', '2021-04-01 15:11:58', '2025-12-17 19:47:44', 'oAQJrkN4', '3588075'), + (59222, 624, 717, 'not_attending', '2021-03-28 21:39:29', '2025-12-17 19:47:44', 'oAQJrkN4', '3619523'), + (59223, 624, 719, 'maybe', '2021-04-03 19:02:14', '2025-12-17 19:47:44', 'oAQJrkN4', '3635405'), + (59224, 624, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'oAQJrkN4', '3661369'), + (59225, 624, 728, 'not_attending', '2021-04-14 13:43:24', '2025-12-17 19:47:44', 'oAQJrkN4', '3668073'), + (59226, 624, 731, 'not_attending', '2021-04-06 04:28:43', '2025-12-17 19:47:44', 'oAQJrkN4', '3674262'), + (59227, 624, 735, 'not_attending', '2021-05-02 15:58:42', '2025-12-17 19:47:46', 'oAQJrkN4', '3677402'), + (59228, 624, 736, 'not_attending', '2021-04-09 20:03:41', '2025-12-17 19:47:44', 'oAQJrkN4', '3677701'), + (59229, 624, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'oAQJrkN4', '3730212'), + (59230, 624, 777, 'not_attending', '2021-04-30 19:22:01', '2025-12-17 19:47:46', 'oAQJrkN4', '3746248'), + (59231, 624, 792, 'not_attending', '2021-05-19 13:21:42', '2025-12-17 19:47:46', 'oAQJrkN4', '3793156'), + (59232, 624, 823, 'attending', '2021-06-16 01:30:07', '2025-12-17 19:47:48', 'oAQJrkN4', '3974109'), + (59233, 624, 827, 'not_attending', '2021-06-05 02:41:31', '2025-12-17 19:47:47', 'oAQJrkN4', '3975311'), + (59234, 624, 828, 'not_attending', '2021-06-10 13:32:26', '2025-12-17 19:47:47', 'oAQJrkN4', '3975312'), + (59235, 624, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQJrkN4', '3994992'), + (59236, 624, 844, 'attending', '2021-06-23 17:41:09', '2025-12-17 19:47:38', 'oAQJrkN4', '4014338'), + (59237, 624, 857, 'not_attending', '2021-11-20 05:39:15', '2025-12-17 19:47:37', 'oAQJrkN4', '4015731'), + (59238, 624, 867, 'not_attending', '2021-06-26 21:00:37', '2025-12-17 19:47:38', 'oAQJrkN4', '4021848'), + (59239, 624, 869, 'not_attending', '2021-06-30 00:58:31', '2025-12-17 19:47:38', 'oAQJrkN4', '4136744'), + (59240, 624, 870, 'not_attending', '2021-06-30 05:16:05', '2025-12-17 19:47:39', 'oAQJrkN4', '4136937'), + (59241, 624, 871, 'attending', '2021-07-05 16:04:28', '2025-12-17 19:47:39', 'oAQJrkN4', '4136938'), + (59242, 624, 872, 'maybe', '2021-07-18 17:54:21', '2025-12-17 19:47:40', 'oAQJrkN4', '4136947'), + (59243, 624, 874, 'attending', '2021-06-16 01:30:23', '2025-12-17 19:47:38', 'oAQJrkN4', '4139815'), + (59244, 624, 878, 'not_attending', '2021-06-21 20:25:29', '2025-12-17 19:47:38', 'oAQJrkN4', '4143331'), + (59245, 624, 879, 'maybe', '2021-06-23 17:53:29', '2025-12-17 19:47:38', 'oAQJrkN4', '4147806'), + (59246, 624, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAQJrkN4', '4210314'), + (59247, 624, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAQJrkN4', '4225444'), + (59248, 624, 898, 'not_attending', '2021-06-30 05:14:35', '2025-12-17 19:47:38', 'oAQJrkN4', '4236746'), + (59249, 624, 899, 'not_attending', '2021-07-03 17:03:39', '2025-12-17 19:47:39', 'oAQJrkN4', '4239259'), + (59250, 624, 900, 'not_attending', '2021-07-24 18:23:38', '2025-12-17 19:47:40', 'oAQJrkN4', '4240316'), + (59251, 624, 901, 'not_attending', '2021-07-31 19:06:55', '2025-12-17 19:47:40', 'oAQJrkN4', '4240317'), + (59252, 624, 902, 'not_attending', '2021-08-07 20:27:36', '2025-12-17 19:47:41', 'oAQJrkN4', '4240318'), + (59253, 624, 903, 'attending', '2021-08-14 18:53:15', '2025-12-17 19:47:42', 'oAQJrkN4', '4240320'), + (59254, 624, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQJrkN4', '4250163'), + (59255, 624, 919, 'attending', '2021-07-16 17:38:53', '2025-12-17 19:47:39', 'oAQJrkN4', '4275957'), + (59256, 624, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAQJrkN4', '4277819'), + (59257, 624, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAQJrkN4', '4301723'), + (59258, 624, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAQJrkN4', '4302093'), + (59259, 624, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAQJrkN4', '4304151'), + (59260, 624, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'oAQJrkN4', '4345519'), + (59261, 624, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAQJrkN4', '4356801'), + (59262, 624, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'oAQJrkN4', '4358025'), + (59263, 624, 973, 'not_attending', '2021-08-21 17:19:15', '2025-12-17 19:47:42', 'oAQJrkN4', '4366186'), + (59264, 624, 974, 'not_attending', '2021-08-28 21:19:13', '2025-12-17 19:47:43', 'oAQJrkN4', '4366187'), + (59265, 624, 985, 'not_attending', '2021-08-21 17:19:06', '2025-12-17 19:47:42', 'oAQJrkN4', '4391748'), + (59266, 624, 988, 'not_attending', '2021-08-27 20:50:58', '2025-12-17 19:47:42', 'oAQJrkN4', '4402823'), + (59267, 624, 990, 'not_attending', '2021-09-04 22:28:11', '2025-12-17 19:47:43', 'oAQJrkN4', '4420735'), + (59268, 624, 991, 'not_attending', '2021-09-11 19:09:21', '2025-12-17 19:47:43', 'oAQJrkN4', '4420738'), + (59269, 624, 992, 'attending', '2021-09-17 22:50:39', '2025-12-17 19:47:33', 'oAQJrkN4', '4420739'), + (59270, 624, 993, 'not_attending', '2021-09-25 22:03:24', '2025-12-17 19:47:34', 'oAQJrkN4', '4420741'), + (59271, 624, 994, 'not_attending', '2021-10-02 19:12:38', '2025-12-17 19:47:34', 'oAQJrkN4', '4420742'), + (59272, 624, 995, 'not_attending', '2021-10-09 16:52:33', '2025-12-17 19:47:34', 'oAQJrkN4', '4420744'), + (59273, 624, 996, 'not_attending', '2021-10-16 19:37:19', '2025-12-17 19:47:35', 'oAQJrkN4', '4420747'), + (59274, 624, 997, 'not_attending', '2021-10-23 17:25:32', '2025-12-17 19:47:35', 'oAQJrkN4', '4420748'), + (59275, 624, 998, 'not_attending', '2021-10-30 05:11:16', '2025-12-17 19:47:36', 'oAQJrkN4', '4420749'), + (59276, 624, 1023, 'not_attending', '2021-09-11 22:23:37', '2025-12-17 19:47:43', 'oAQJrkN4', '4461883'), + (59277, 624, 1032, 'attending', '2021-09-26 16:30:23', '2025-12-17 19:47:34', 'oAQJrkN4', '4473825'), + (59278, 624, 1036, 'not_attending', '2021-09-22 20:41:12', '2025-12-17 19:47:34', 'oAQJrkN4', '4493166'), + (59279, 624, 1067, 'not_attending', '2021-09-24 20:58:18', '2025-12-17 19:47:34', 'oAQJrkN4', '4508342'), + (59280, 624, 1070, 'attending', '2021-09-27 23:23:03', '2025-12-17 19:47:34', 'oAQJrkN4', '4512562'), + (59281, 624, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAQJrkN4', '4568602'), + (59282, 624, 1087, 'not_attending', '2021-10-16 19:37:13', '2025-12-17 19:47:35', 'oAQJrkN4', '4572153'), + (59283, 624, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'oAQJrkN4', '4585962'), + (59284, 624, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'oAQJrkN4', '4596356'), + (59285, 624, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'oAQJrkN4', '4598860'), + (59286, 624, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'oAQJrkN4', '4598861'), + (59287, 624, 1099, 'not_attending', '2021-11-05 17:20:27', '2025-12-17 19:47:36', 'oAQJrkN4', '4602797'), + (59288, 624, 1103, 'not_attending', '2021-11-13 18:34:53', '2025-12-17 19:47:36', 'oAQJrkN4', '4616350'), + (59289, 624, 1114, 'attending', '2021-11-13 18:35:22', '2025-12-17 19:47:36', 'oAQJrkN4', '4637896'), + (59290, 624, 1116, 'not_attending', '2021-11-20 05:38:42', '2025-12-17 19:47:37', 'oAQJrkN4', '4642994'), + (59291, 624, 1117, 'not_attending', '2021-11-20 05:38:46', '2025-12-17 19:47:38', 'oAQJrkN4', '4642995'), + (59292, 624, 1118, 'not_attending', '2021-11-20 05:38:54', '2025-12-17 19:47:38', 'oAQJrkN4', '4642996'), + (59293, 624, 1119, 'attending', '2021-12-22 23:12:40', '2025-12-17 19:47:31', 'oAQJrkN4', '4642997'), + (59294, 624, 1126, 'attending', '2021-12-18 23:19:09', '2025-12-17 19:47:38', 'oAQJrkN4', '4645687'), + (59295, 624, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'oAQJrkN4', '4645698'), + (59296, 624, 1128, 'attending', '2021-11-20 23:13:52', '2025-12-17 19:47:37', 'oAQJrkN4', '4645704'), + (59297, 624, 1129, 'attending', '2021-11-27 06:17:05', '2025-12-17 19:47:37', 'oAQJrkN4', '4645705'), + (59298, 624, 1130, 'not_attending', '2021-12-03 22:26:08', '2025-12-17 19:47:37', 'oAQJrkN4', '4658824'), + (59299, 624, 1131, 'not_attending', '2021-12-18 23:19:17', '2025-12-17 19:47:31', 'oAQJrkN4', '4658825'), + (59300, 624, 1132, 'not_attending', '2021-11-22 14:47:31', '2025-12-17 19:47:37', 'oAQJrkN4', '4660657'), + (59301, 624, 1134, 'not_attending', '2021-11-27 06:18:52', '2025-12-17 19:47:37', 'oAQJrkN4', '4668385'), + (59302, 624, 1140, 'attending', '2021-12-01 14:40:30', '2025-12-17 19:47:37', 'oAQJrkN4', '4679701'), + (59303, 624, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAQJrkN4', '4694407'), + (59304, 624, 1156, 'attending', '2021-12-18 22:12:42', '2025-12-17 19:47:31', 'oAQJrkN4', '4715207'), + (59305, 624, 1164, 'attending', '2022-01-03 23:41:30', '2025-12-17 19:47:31', 'oAQJrkN4', '4724208'), + (59306, 624, 1165, 'not_attending', '2022-01-03 23:41:34', '2025-12-17 19:47:31', 'oAQJrkN4', '4724210'), + (59307, 624, 1173, 'not_attending', '2022-01-08 22:21:21', '2025-12-17 19:47:31', 'oAQJrkN4', '4736495'), + (59308, 624, 1174, 'attending', '2022-01-15 22:58:02', '2025-12-17 19:47:31', 'oAQJrkN4', '4736496'), + (59309, 624, 1175, 'not_attending', '2022-01-22 22:41:11', '2025-12-17 19:47:32', 'oAQJrkN4', '4736497'), + (59310, 624, 1176, 'not_attending', '2022-02-05 21:00:48', '2025-12-17 19:47:32', 'oAQJrkN4', '4736498'), + (59311, 624, 1177, 'not_attending', '2022-02-12 19:56:45', '2025-12-17 19:47:32', 'oAQJrkN4', '4736499'), + (59312, 624, 1178, 'not_attending', '2022-01-29 20:22:17', '2025-12-17 19:47:32', 'oAQJrkN4', '4736500'), + (59313, 624, 1179, 'not_attending', '2022-02-19 23:03:43', '2025-12-17 19:47:32', 'oAQJrkN4', '4736501'), + (59314, 624, 1180, 'not_attending', '2022-02-26 21:01:54', '2025-12-17 19:47:33', 'oAQJrkN4', '4736502'), + (59315, 624, 1181, 'not_attending', '2022-03-05 21:26:26', '2025-12-17 19:47:33', 'oAQJrkN4', '4736503'), + (59316, 624, 1182, 'attending', '2022-03-11 15:09:03', '2025-12-17 19:47:33', 'oAQJrkN4', '4736504'), + (59317, 624, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'oAQJrkN4', '4746789'), + (59318, 624, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'oAQJrkN4', '4753929'), + (59319, 624, 1200, 'not_attending', '2022-01-18 22:13:11', '2025-12-17 19:47:32', 'oAQJrkN4', '4766830'), + (59320, 624, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'oAQJrkN4', '5038850'), + (59321, 624, 1236, 'attending', '2022-02-18 00:13:06', '2025-12-17 19:47:32', 'oAQJrkN4', '5045826'), + (59322, 624, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'oAQJrkN4', '5132533'), + (59323, 624, 1272, 'not_attending', '2022-03-19 19:27:19', '2025-12-17 19:47:25', 'oAQJrkN4', '5186582'), + (59324, 624, 1273, 'not_attending', '2022-03-26 21:51:43', '2025-12-17 19:47:25', 'oAQJrkN4', '5186583'), + (59325, 624, 1274, 'attending', '2022-04-02 21:45:43', '2025-12-17 19:47:26', 'oAQJrkN4', '5186585'), + (59326, 624, 1281, 'maybe', '2022-04-09 20:42:10', '2025-12-17 19:47:27', 'oAQJrkN4', '5190437'), + (59327, 624, 1284, 'not_attending', '2022-04-12 13:45:17', '2025-12-17 19:47:27', 'oAQJrkN4', '5195095'), + (59328, 624, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'oAQJrkN4', '5215989'), + (59329, 624, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'oAQJrkN4', '5223686'), + (59330, 624, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'oAQJrkN4', '5227432'), + (59331, 624, 1320, 'not_attending', '2022-04-18 18:13:37', '2025-12-17 19:47:27', 'oAQJrkN4', '5238354'), + (59332, 624, 1337, 'not_attending', '2022-04-20 22:39:41', '2025-12-17 19:47:27', 'oAQJrkN4', '5245036'), + (59333, 624, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'oAQJrkN4', '5247467'), + (59334, 624, 1348, 'not_attending', '2022-05-01 22:27:42', '2025-12-17 19:47:28', 'oAQJrkN4', '5247605'), + (59335, 624, 1362, 'not_attending', '2022-05-01 00:25:13', '2025-12-17 19:47:28', 'oAQJrkN4', '5260800'), + (59336, 624, 1374, 'attending', '2022-05-07 05:15:53', '2025-12-17 19:47:28', 'oAQJrkN4', '5269930'), + (59337, 624, 1378, 'not_attending', '2022-05-14 21:46:22', '2025-12-17 19:47:29', 'oAQJrkN4', '5271448'), + (59338, 624, 1379, 'not_attending', '2022-05-21 23:10:19', '2025-12-17 19:47:30', 'oAQJrkN4', '5271449'), + (59339, 624, 1380, 'not_attending', '2022-05-23 16:22:29', '2025-12-17 19:47:30', 'oAQJrkN4', '5271450'), + (59340, 624, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'oAQJrkN4', '5276469'), + (59341, 624, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'oAQJrkN4', '5278159'), + (59342, 624, 1407, 'not_attending', '2022-06-04 22:38:28', '2025-12-17 19:47:30', 'oAQJrkN4', '5363695'), + (59343, 624, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'oAQJrkN4', '5365960'), + (59344, 624, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'oAQJrkN4', '5368973'), + (59345, 624, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'oAQJrkN4', '5378247'), + (59346, 624, 1431, 'not_attending', '2022-06-11 19:31:23', '2025-12-17 19:47:31', 'oAQJrkN4', '5389605'), + (59347, 624, 1442, 'attending', '2022-06-11 19:31:46', '2025-12-17 19:47:17', 'oAQJrkN4', '5397265'), + (59348, 624, 1451, 'attending', '2022-06-17 17:55:30', '2025-12-17 19:47:17', 'oAQJrkN4', '5403967'), + (59349, 624, 1458, 'not_attending', '2022-06-18 20:47:48', '2025-12-17 19:47:17', 'oAQJrkN4', '5404786'), + (59350, 624, 1462, 'not_attending', '2022-06-16 13:32:41', '2025-12-17 19:47:17', 'oAQJrkN4', '5405203'), + (59351, 624, 1476, 'attending', '2022-06-16 18:29:22', '2025-12-17 19:47:17', 'oAQJrkN4', '5408130'), + (59352, 624, 1478, 'not_attending', '2022-06-24 20:25:00', '2025-12-17 19:47:19', 'oAQJrkN4', '5408794'), + (59353, 624, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'oAQJrkN4', '5411699'), + (59354, 624, 1482, 'maybe', '2022-06-25 19:38:01', '2025-12-17 19:47:19', 'oAQJrkN4', '5412550'), + (59355, 624, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'oAQJrkN4', '5415046'), + (59356, 624, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'oAQJrkN4', '5422086'), + (59357, 624, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'oAQJrkN4', '5422406'), + (59358, 624, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'oAQJrkN4', '5424565'), + (59359, 624, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'oAQJrkN4', '5426882'), + (59360, 624, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'oAQJrkN4', '5427083'), + (59361, 624, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'oAQJrkN4', '5441125'), + (59362, 624, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'oAQJrkN4', '5441126'), + (59363, 624, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'oAQJrkN4', '5441128'), + (59364, 624, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'oAQJrkN4', '5441131'), + (59365, 624, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'oAQJrkN4', '5441132'), + (59366, 624, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'oAQJrkN4', '5446643'), + (59367, 624, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'oAQJrkN4', '5453325'), + (59368, 624, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'oAQJrkN4', '5454516'), + (59369, 624, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'oAQJrkN4', '5454605'), + (59370, 624, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'oAQJrkN4', '5455037'), + (59371, 624, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'oAQJrkN4', '5461278'), + (59372, 624, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'oAQJrkN4', '5469480'), + (59373, 624, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'oAQJrkN4', '5471073'), + (59374, 624, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'oAQJrkN4', '5474663'), + (59375, 624, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'oAQJrkN4', '5482022'), + (59376, 624, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'oAQJrkN4', '5482793'), + (59377, 624, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'oAQJrkN4', '5488912'), + (59378, 624, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'oAQJrkN4', '5492192'), + (59379, 624, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'oAQJrkN4', '5493139'), + (59380, 624, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'oAQJrkN4', '5493200'), + (59381, 624, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'oAQJrkN4', '5502188'), + (59382, 624, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'oAQJrkN4', '5505059'), + (59383, 624, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'oAQJrkN4', '5509055'), + (59384, 624, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'oAQJrkN4', '5512862'), + (59385, 624, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'oAQJrkN4', '5513985'), + (59386, 624, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'oAQJrkN4', '5519981'), + (59387, 624, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'oAQJrkN4', '5522550'), + (59388, 624, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'oAQJrkN4', '5534683'), + (59389, 624, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'oAQJrkN4', '5537735'), + (59390, 624, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'oAQJrkN4', '5540859'), + (59391, 624, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'oAQJrkN4', '5546619'), + (59392, 624, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'oAQJrkN4', '5555245'), + (59393, 624, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'oAQJrkN4', '5557747'), + (59394, 624, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'oAQJrkN4', '5560255'), + (59395, 624, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'oAQJrkN4', '5562906'), + (59396, 624, 1667, 'attending', '2022-09-23 23:34:45', '2025-12-17 19:47:11', 'oAQJrkN4', '5563221'), + (59397, 624, 1668, 'not_attending', '2022-10-01 17:39:21', '2025-12-17 19:47:12', 'oAQJrkN4', '5563222'), + (59398, 624, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'oAQJrkN4', '5600604'), + (59399, 624, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'oAQJrkN4', '5605544'), + (59400, 624, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'oAQJrkN4', '5606737'), + (59401, 624, 1719, 'not_attending', '2022-10-08 20:19:58', '2025-12-17 19:47:12', 'oAQJrkN4', '5630958'), + (59402, 624, 1720, 'not_attending', '2022-10-15 21:35:29', '2025-12-17 19:47:12', 'oAQJrkN4', '5630959'), + (59403, 624, 1721, 'not_attending', '2022-10-21 03:36:45', '2025-12-17 19:47:13', 'oAQJrkN4', '5630960'), + (59404, 624, 1722, 'attending', '2022-10-19 14:02:50', '2025-12-17 19:47:14', 'oAQJrkN4', '5630961'), + (59405, 624, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'oAQJrkN4', '5630962'), + (59406, 624, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'oAQJrkN4', '5630966'), + (59407, 624, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'oAQJrkN4', '5630967'), + (59408, 624, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'oAQJrkN4', '5630968'), + (59409, 624, 1727, 'attending', '2022-12-03 23:20:02', '2025-12-17 19:47:16', 'oAQJrkN4', '5630969'), + (59410, 624, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'oAQJrkN4', '5635406'), + (59411, 624, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'oAQJrkN4', '5638765'), + (59412, 624, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'oAQJrkN4', '5640097'), + (59413, 624, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'oAQJrkN4', '5640843'), + (59414, 624, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'oAQJrkN4', '5641521'), + (59415, 624, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'oAQJrkN4', '5642818'), + (59416, 624, 1747, 'maybe', '2022-10-14 21:15:35', '2025-12-17 19:47:13', 'oAQJrkN4', '5648009'), + (59417, 624, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'oAQJrkN4', '5652395'), + (59418, 624, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'oAQJrkN4', '5670445'), + (59419, 624, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'oAQJrkN4', '5671637'), + (59420, 624, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'oAQJrkN4', '5672329'), + (59421, 624, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'oAQJrkN4', '5674057'), + (59422, 624, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'oAQJrkN4', '5674060'), + (59423, 624, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'oAQJrkN4', '5677461'), + (59424, 624, 1776, 'not_attending', '2022-11-09 18:45:16', '2025-12-17 19:47:15', 'oAQJrkN4', '5691067'), + (59425, 624, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'oAQJrkN4', '5698046'), + (59426, 624, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'oAQJrkN4', '5699760'), + (59427, 624, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'oAQJrkN4', '5741601'), + (59428, 624, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'oAQJrkN4', '5763458'), + (59429, 624, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'oAQJrkN4', '5774172'), + (59430, 624, 1826, 'not_attending', '2022-12-20 00:19:26', '2025-12-17 19:47:04', 'oAQJrkN4', '5776768'), + (59431, 624, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'oAQJrkN4', '5818247'), + (59432, 624, 1834, 'not_attending', '2022-12-10 19:30:23', '2025-12-17 19:47:17', 'oAQJrkN4', '5819470'), + (59433, 624, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'oAQJrkN4', '5819471'), + (59434, 624, 1839, 'not_attending', '2022-12-20 00:19:31', '2025-12-17 19:47:04', 'oAQJrkN4', '5821920'), + (59435, 624, 1842, 'maybe', '2022-12-20 00:19:38', '2025-12-17 19:47:04', 'oAQJrkN4', '5827739'), + (59436, 624, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'oAQJrkN4', '5844306'), + (59437, 624, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'oAQJrkN4', '5850159'), + (59438, 624, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'oAQJrkN4', '5858999'), + (59439, 624, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'oAQJrkN4', '5871984'), + (59440, 624, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'oAQJrkN4', '5876354'), + (59441, 624, 1864, 'attending', '2023-01-21 20:49:47', '2025-12-17 19:47:05', 'oAQJrkN4', '5879675'), + (59442, 624, 1865, 'attending', '2023-01-28 19:37:24', '2025-12-17 19:47:06', 'oAQJrkN4', '5879676'), + (59443, 624, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'oAQJrkN4', '5880939'), + (59444, 624, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'oAQJrkN4', '5880940'), + (59445, 624, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'oAQJrkN4', '5880942'), + (59446, 624, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'oAQJrkN4', '5880943'), + (59447, 624, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'oAQJrkN4', '5887890'), + (59448, 624, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'oAQJrkN4', '5888598'), + (59449, 624, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'oAQJrkN4', '5893260'), + (59450, 624, 1882, 'maybe', '2023-01-30 03:40:52', '2025-12-17 19:47:06', 'oAQJrkN4', '5898447'), + (59451, 624, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'oAQJrkN4', '5899826'), + (59452, 624, 1885, 'not_attending', '2023-02-24 19:29:22', '2025-12-17 19:47:08', 'oAQJrkN4', '5899928'), + (59453, 624, 1888, 'attending', '2023-02-17 16:09:21', '2025-12-17 19:47:07', 'oAQJrkN4', '5900197'), + (59454, 624, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'oAQJrkN4', '5900199'), + (59455, 624, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'oAQJrkN4', '5900200'), + (59456, 624, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'oAQJrkN4', '5900202'), + (59457, 624, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'oAQJrkN4', '5900203'), + (59458, 624, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'oAQJrkN4', '5901108'), + (59459, 624, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'oAQJrkN4', '5901126'), + (59460, 624, 1897, 'not_attending', '2023-02-10 16:52:29', '2025-12-17 19:47:07', 'oAQJrkN4', '5901128'), + (59461, 624, 1900, 'not_attending', '2023-02-01 06:22:39', '2025-12-17 19:47:06', 'oAQJrkN4', '5901331'), + (59462, 624, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'oAQJrkN4', '5909655'), + (59463, 624, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'oAQJrkN4', '5910522'), + (59464, 624, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'oAQJrkN4', '5910526'), + (59465, 624, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'oAQJrkN4', '5910528'), + (59466, 624, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'oAQJrkN4', '5916219'), + (59467, 624, 1925, 'attending', '2023-02-18 19:16:56', '2025-12-17 19:47:08', 'oAQJrkN4', '5932619'), + (59468, 624, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'oAQJrkN4', '5936234'), + (59469, 624, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'oAQJrkN4', '5958351'), + (59470, 624, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'oAQJrkN4', '5959751'), + (59471, 624, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'oAQJrkN4', '5959755'), + (59472, 624, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'oAQJrkN4', '5960055'), + (59473, 624, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'oAQJrkN4', '5961684'), + (59474, 624, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'oAQJrkN4', '5962132'), + (59475, 624, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'oAQJrkN4', '5962133'), + (59476, 624, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'oAQJrkN4', '5962134'), + (59477, 624, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'oAQJrkN4', '5962317'), + (59478, 624, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'oAQJrkN4', '5962318'), + (59479, 624, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'oAQJrkN4', '5965933'), + (59480, 624, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'oAQJrkN4', '5967014'), + (59481, 624, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'oAQJrkN4', '5972815'), + (59482, 624, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'oAQJrkN4', '5974016'), + (59483, 624, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'oAQJrkN4', '5981515'), + (59484, 624, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'oAQJrkN4', '5993516'), + (59485, 624, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'oAQJrkN4', '5998939'), + (59486, 624, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'oAQJrkN4', '6028191'), + (59487, 624, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'oAQJrkN4', '6040066'), + (59488, 624, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'oAQJrkN4', '6042717'), + (59489, 624, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'oAQJrkN4', '6044838'), + (59490, 624, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'oAQJrkN4', '6044839'), + (59491, 624, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQJrkN4', '6045684'), + (59492, 624, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'oAQJrkN4', '6050104'), + (59493, 624, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'oAQJrkN4', '6053195'), + (59494, 624, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'oAQJrkN4', '6053198'), + (59495, 624, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'oAQJrkN4', '6056085'), + (59496, 624, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'oAQJrkN4', '6056916'), + (59497, 624, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'oAQJrkN4', '6059290'), + (59498, 624, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'oAQJrkN4', '6060328'), + (59499, 624, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'oAQJrkN4', '6061037'), + (59500, 624, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'oAQJrkN4', '6061039'), + (59501, 624, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'oAQJrkN4', '6067245'), + (59502, 624, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'oAQJrkN4', '6068094'), + (59503, 624, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'oAQJrkN4', '6068252'), + (59504, 624, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'oAQJrkN4', '6068253'), + (59505, 624, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'oAQJrkN4', '6068254'), + (59506, 624, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'oAQJrkN4', '6068280'), + (59507, 624, 2032, 'not_attending', '2023-06-03 22:43:59', '2025-12-17 19:47:04', 'oAQJrkN4', '6068281'), + (59508, 624, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'oAQJrkN4', '6069093'), + (59509, 624, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'oAQJrkN4', '6072528'), + (59510, 624, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'oAQJrkN4', '6079840'), + (59511, 624, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'oAQJrkN4', '6083398'), + (59512, 624, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'oAQJrkN4', '6093504'), + (59513, 624, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'oAQJrkN4', '6097414'), + (59514, 624, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'oAQJrkN4', '6097442'), + (59515, 624, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'oAQJrkN4', '6097684'), + (59516, 624, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'oAQJrkN4', '6098762'), + (59517, 624, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'oAQJrkN4', '6101361'), + (59518, 624, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'oAQJrkN4', '6101362'), + (59519, 624, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'oAQJrkN4', '6103752'), + (59520, 624, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'oAQJrkN4', '6107314'), + (59521, 624, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'oAQJrkN4', '6120034'), + (59522, 624, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'oAQJrkN4', '6136733'), + (59523, 624, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'oAQJrkN4', '6137989'), + (59524, 624, 2104, 'attending', '2023-06-22 19:01:33', '2025-12-17 19:46:50', 'oAQJrkN4', '6149499'), + (59525, 624, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'oAQJrkN4', '6150864'), + (59526, 624, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'oAQJrkN4', '6155491'), + (59527, 624, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'oAQJrkN4', '6164417'), + (59528, 624, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'oAQJrkN4', '6166388'), + (59529, 624, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'oAQJrkN4', '6176439'), + (59530, 624, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'oAQJrkN4', '6182410'), + (59531, 624, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'oAQJrkN4', '6185812'), + (59532, 624, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'oAQJrkN4', '6187651'), + (59533, 624, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'oAQJrkN4', '6187963'), + (59534, 624, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'oAQJrkN4', '6187964'), + (59535, 624, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'oAQJrkN4', '6187966'), + (59536, 624, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'oAQJrkN4', '6187967'), + (59537, 624, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'oAQJrkN4', '6187969'), + (59538, 624, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'oAQJrkN4', '6334878'), + (59539, 624, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'oAQJrkN4', '6337236'), + (59540, 624, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'oAQJrkN4', '6337970'), + (59541, 624, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'oAQJrkN4', '6338308'), + (59542, 624, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'oAQJrkN4', '6340845'), + (59543, 624, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'oAQJrkN4', '6341710'), + (59544, 624, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'oAQJrkN4', '6342044'), + (59545, 624, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'oAQJrkN4', '6342298'), + (59546, 624, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'oAQJrkN4', '6343294'), + (59547, 624, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'oAQJrkN4', '6347034'), + (59548, 624, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'oAQJrkN4', '6347056'), + (59549, 624, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'oAQJrkN4', '6353830'), + (59550, 624, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'oAQJrkN4', '6353831'), + (59551, 624, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'oAQJrkN4', '6357867'), + (59552, 624, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'oAQJrkN4', '6358652'), + (59553, 624, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'oAQJrkN4', '6361709'), + (59554, 624, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'oAQJrkN4', '6361710'), + (59555, 624, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'oAQJrkN4', '6361711'), + (59556, 624, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'oAQJrkN4', '6361712'), + (59557, 624, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'oAQJrkN4', '6361713'), + (59558, 624, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'oAQJrkN4', '6382573'), + (59559, 624, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'oAQJrkN4', '6388604'), + (59560, 624, 2242, 'not_attending', '2023-09-23 23:20:51', '2025-12-17 19:46:45', 'oAQJrkN4', '6388606'), + (59561, 624, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'oAQJrkN4', '6394629'), + (59562, 624, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'oAQJrkN4', '6394631'), + (59563, 624, 2253, 'not_attending', '2023-09-23 23:21:02', '2025-12-17 19:46:45', 'oAQJrkN4', '6401811'), + (59564, 624, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'oAQJrkN4', '6440863'), + (59565, 624, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'oAQJrkN4', '6445440'), + (59566, 624, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'oAQJrkN4', '6453951'), + (59567, 624, 2286, 'not_attending', '2023-11-30 19:34:00', '2025-12-17 19:46:48', 'oAQJrkN4', '6460930'), + (59568, 624, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'oAQJrkN4', '6461696'), + (59569, 624, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'oAQJrkN4', '6462129'), + (59570, 624, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'oAQJrkN4', '6463218'), + (59571, 624, 2299, 'not_attending', '2023-10-16 14:29:23', '2025-12-17 19:46:46', 'oAQJrkN4', '6472181'), + (59572, 624, 2303, 'not_attending', '2023-10-25 16:06:34', '2025-12-17 19:46:47', 'oAQJrkN4', '6482691'), + (59573, 624, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'oAQJrkN4', '6482693'), + (59574, 624, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'oAQJrkN4', '6484200'), + (59575, 624, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'oAQJrkN4', '6484680'), + (59576, 624, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'oAQJrkN4', '6507741'), + (59577, 624, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'oAQJrkN4', '6514659'), + (59578, 624, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'oAQJrkN4', '6514660'), + (59579, 624, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'oAQJrkN4', '6519103'), + (59580, 624, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'oAQJrkN4', '6535681'), + (59581, 624, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'oAQJrkN4', '6584747'), + (59582, 624, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'oAQJrkN4', '6587097'), + (59583, 624, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'oAQJrkN4', '6609022'), + (59584, 624, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'oAQJrkN4', '6632757'), + (59585, 624, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAQJrkN4', '6644187'), + (59586, 624, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAQJrkN4', '6648951'), + (59587, 624, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAQJrkN4', '6648952'), + (59588, 624, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAQJrkN4', '6655401'), + (59589, 624, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAQJrkN4', '6661585'), + (59590, 624, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAQJrkN4', '6661588'), + (59591, 624, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAQJrkN4', '6661589'), + (59592, 624, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAQJrkN4', '6699906'), + (59593, 624, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'oAQJrkN4', '6699913'), + (59594, 624, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAQJrkN4', '6701109'), + (59595, 624, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAQJrkN4', '6705219'), + (59596, 624, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAQJrkN4', '6710153'), + (59597, 624, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAQJrkN4', '6711552'), + (59598, 624, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'oAQJrkN4', '6711553'), + (59599, 624, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAQJrkN4', '6722688'), + (59600, 624, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAQJrkN4', '6730620'), + (59601, 624, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'oAQJrkN4', '6730642'), + (59602, 624, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAQJrkN4', '6740364'), + (59603, 624, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAQJrkN4', '6743829'), + (59604, 624, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAQJrkN4', '7030380'), + (59605, 624, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'oAQJrkN4', '7033677'), + (59606, 624, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'oAQJrkN4', '7035415'), + (59607, 624, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAQJrkN4', '7044715'), + (59608, 624, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAQJrkN4', '7050318'), + (59609, 624, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAQJrkN4', '7050319'), + (59610, 624, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAQJrkN4', '7050322'), + (59611, 624, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAQJrkN4', '7057804'), + (59612, 624, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'oAQJrkN4', '7059866'), + (59613, 624, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAQJrkN4', '7072824'), + (59614, 624, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAQJrkN4', '7074348'), + (59615, 624, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAQJrkN4', '7089267'), + (59616, 624, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAQJrkN4', '7098747'), + (59617, 624, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'oAQJrkN4', '7113468'), + (59618, 624, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAQJrkN4', '7114856'), + (59619, 624, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAQJrkN4', '7114951'), + (59620, 624, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAQJrkN4', '7114955'), + (59621, 624, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAQJrkN4', '7114956'), + (59622, 624, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'oAQJrkN4', '7153615'), + (59623, 624, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAQJrkN4', '7159484'), + (59624, 624, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAQJrkN4', '7178446'), + (59625, 625, 1415, 'not_attending', '2022-06-03 05:39:34', '2025-12-17 19:47:30', 'dN9EV6G4', '5368973'), + (59626, 625, 1442, 'attending', '2022-06-18 21:28:30', '2025-12-17 19:47:17', 'dN9EV6G4', '5397265'), + (59627, 625, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dN9EV6G4', '5403967'), + (59628, 625, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dN9EV6G4', '5404786'), + (59629, 625, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dN9EV6G4', '5405203'), + (59630, 625, 1466, 'attending', '2022-06-16 21:23:51', '2025-12-17 19:47:17', 'dN9EV6G4', '5406427'), + (59631, 625, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dN9EV6G4', '5411699'), + (59632, 625, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dN9EV6G4', '5412550'), + (59633, 625, 1484, 'not_attending', '2022-06-22 22:51:48', '2025-12-17 19:47:17', 'dN9EV6G4', '5415046'), + (59634, 625, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dN9EV6G4', '5422086'), + (59635, 625, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dN9EV6G4', '5422406'), + (59636, 625, 1501, 'maybe', '2022-06-29 21:43:39', '2025-12-17 19:47:19', 'dN9EV6G4', '5424546'), + (59637, 625, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dN9EV6G4', '5424565'), + (59638, 625, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dN9EV6G4', '5426882'), + (59639, 625, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dN9EV6G4', '5427083'), + (59640, 625, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'dN9EV6G4', '5441125'), + (59641, 625, 1514, 'maybe', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dN9EV6G4', '5441126'), + (59642, 625, 1515, 'attending', '2022-08-06 17:47:19', '2025-12-17 19:47:21', 'dN9EV6G4', '5441128'), + (59643, 625, 1516, 'attending', '2022-08-20 07:13:31', '2025-12-17 19:47:23', 'dN9EV6G4', '5441129'), + (59644, 625, 1517, 'attending', '2022-08-21 09:02:19', '2025-12-17 19:47:23', 'dN9EV6G4', '5441130'), + (59645, 625, 1518, 'maybe', '2022-09-01 16:45:55', '2025-12-17 19:47:24', 'dN9EV6G4', '5441131'), + (59646, 625, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dN9EV6G4', '5441132'), + (59647, 625, 1522, 'maybe', '2022-07-19 22:38:06', '2025-12-17 19:47:20', 'dN9EV6G4', '5442832'), + (59648, 625, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dN9EV6G4', '5446643'), + (59649, 625, 1539, 'maybe', '2022-07-29 16:15:22', '2025-12-17 19:47:21', 'dN9EV6G4', '5449671'), + (59650, 625, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dN9EV6G4', '5453325'), + (59651, 625, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dN9EV6G4', '5454516'), + (59652, 625, 1544, 'maybe', '2022-09-14 21:58:08', '2025-12-17 19:47:11', 'dN9EV6G4', '5454517'), + (59653, 625, 1545, 'maybe', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dN9EV6G4', '5454605'), + (59654, 625, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dN9EV6G4', '5455037'), + (59655, 625, 1553, 'maybe', '2022-07-20 21:13:43', '2025-12-17 19:47:20', 'dN9EV6G4', '5455164'), + (59656, 625, 1558, 'maybe', '2022-09-13 23:51:53', '2025-12-17 19:47:10', 'dN9EV6G4', '5458730'), + (59657, 625, 1561, 'maybe', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dN9EV6G4', '5461278'), + (59658, 625, 1562, 'maybe', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dN9EV6G4', '5469480'), + (59659, 625, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dN9EV6G4', '5471073'), + (59660, 625, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dN9EV6G4', '5474663'), + (59661, 625, 1569, 'maybe', '2022-08-02 23:00:07', '2025-12-17 19:47:21', 'dN9EV6G4', '5481507'), + (59662, 625, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dN9EV6G4', '5482022'), + (59663, 625, 1575, 'maybe', '2022-08-21 09:02:01', '2025-12-17 19:47:23', 'dN9EV6G4', '5482250'), + (59664, 625, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dN9EV6G4', '5482793'), + (59665, 625, 1580, 'maybe', '2022-08-10 07:32:53', '2025-12-17 19:47:22', 'dN9EV6G4', '5488912'), + (59666, 625, 1586, 'maybe', '2022-08-16 05:13:33', '2025-12-17 19:47:23', 'dN9EV6G4', '5492019'), + (59667, 625, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dN9EV6G4', '5492192'), + (59668, 625, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dN9EV6G4', '5493139'), + (59669, 625, 1589, 'attending', '2022-08-21 09:01:19', '2025-12-17 19:47:23', 'dN9EV6G4', '5493159'), + (59670, 625, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dN9EV6G4', '5493200'), + (59671, 625, 1597, 'maybe', '2022-08-15 20:31:33', '2025-12-17 19:47:22', 'dN9EV6G4', '5496566'), + (59672, 625, 1598, 'maybe', '2022-08-16 22:13:52', '2025-12-17 19:47:22', 'dN9EV6G4', '5496567'), + (59673, 625, 1605, 'maybe', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dN9EV6G4', '5502188'), + (59674, 625, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dN9EV6G4', '5505059'), + (59675, 625, 1609, 'not_attending', '2022-08-21 09:02:47', '2025-12-17 19:47:23', 'dN9EV6G4', '5506590'), + (59676, 625, 1610, 'not_attending', '2022-08-21 09:02:58', '2025-12-17 19:47:23', 'dN9EV6G4', '5506595'), + (59677, 625, 1615, 'maybe', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dN9EV6G4', '5509055'), + (59678, 625, 1618, 'maybe', '2022-08-24 05:04:36', '2025-12-17 19:47:23', 'dN9EV6G4', '5512005'), + (59679, 625, 1619, 'not_attending', '2022-08-23 08:40:16', '2025-12-17 19:47:23', 'dN9EV6G4', '5512862'), + (59680, 625, 1620, 'maybe', '2022-08-25 17:08:54', '2025-12-17 19:47:23', 'dN9EV6G4', '5513046'), + (59681, 625, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dN9EV6G4', '5513985'), + (59682, 625, 1626, 'maybe', '2022-08-26 00:38:59', '2025-12-17 19:47:11', 'dN9EV6G4', '5519981'), + (59683, 625, 1629, 'maybe', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dN9EV6G4', '5522550'), + (59684, 625, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dN9EV6G4', '5534683'), + (59685, 625, 1635, 'maybe', '2022-09-13 23:06:32', '2025-12-17 19:47:10', 'dN9EV6G4', '5537735'), + (59686, 625, 1637, 'attending', '2022-09-04 14:33:29', '2025-12-17 19:47:24', 'dN9EV6G4', '5539591'), + (59687, 625, 1640, 'maybe', '2022-09-13 23:06:27', '2025-12-17 19:47:10', 'dN9EV6G4', '5540859'), + (59688, 625, 1643, 'maybe', '2022-09-23 19:07:33', '2025-12-17 19:47:11', 'dN9EV6G4', '5545856'), + (59689, 625, 1644, 'maybe', '2022-09-19 18:46:16', '2025-12-17 19:47:11', 'dN9EV6G4', '5545857'), + (59690, 625, 1645, 'maybe', '2022-09-11 20:41:34', '2025-12-17 19:47:25', 'dN9EV6G4', '5546559'), + (59691, 625, 1646, 'maybe', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dN9EV6G4', '5546619'), + (59692, 625, 1653, 'attending', '2022-09-10 18:35:32', '2025-12-17 19:47:11', 'dN9EV6G4', '5554400'), + (59693, 625, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dN9EV6G4', '5555245'), + (59694, 625, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dN9EV6G4', '5557747'), + (59695, 625, 1661, 'maybe', '2022-09-09 00:19:23', '2025-12-17 19:47:24', 'dN9EV6G4', '5560254'), + (59696, 625, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dN9EV6G4', '5560255'), + (59697, 625, 1664, 'maybe', '2022-09-10 18:34:57', '2025-12-17 19:47:25', 'dN9EV6G4', '5562906'), + (59698, 625, 1665, 'maybe', '2022-09-12 16:43:43', '2025-12-17 19:47:25', 'dN9EV6G4', '5563133'), + (59699, 625, 1666, 'maybe', '2022-09-26 08:04:15', '2025-12-17 19:47:11', 'dN9EV6G4', '5563208'), + (59700, 625, 1667, 'maybe', '2022-09-20 01:39:01', '2025-12-17 19:47:11', 'dN9EV6G4', '5563221'), + (59701, 625, 1668, 'maybe', '2022-09-15 01:56:30', '2025-12-17 19:47:12', 'dN9EV6G4', '5563222'), + (59702, 625, 1674, 'maybe', '2022-09-20 07:53:44', '2025-12-17 19:47:12', 'dN9EV6G4', '5593112'), + (59703, 625, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dN9EV6G4', '5600604'), + (59704, 625, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dN9EV6G4', '5605544'), + (59705, 625, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'dN9EV6G4', '5606737'), + (59706, 625, 1704, 'maybe', '2022-10-04 23:41:50', '2025-12-17 19:47:12', 'dN9EV6G4', '5610508'), + (59707, 625, 1705, 'maybe', '2022-09-29 21:24:54', '2025-12-17 19:47:12', 'dN9EV6G4', '5612209'), + (59708, 625, 1708, 'not_attending', '2022-10-04 23:41:57', '2025-12-17 19:47:12', 'dN9EV6G4', '5617648'), + (59709, 625, 1716, 'not_attending', '2022-10-02 21:34:47', '2025-12-17 19:47:12', 'dN9EV6G4', '5622429'), + (59710, 625, 1719, 'not_attending', '2022-10-07 08:19:39', '2025-12-17 19:47:12', 'dN9EV6G4', '5630958'), + (59711, 625, 1720, 'not_attending', '2022-10-14 20:16:31', '2025-12-17 19:47:12', 'dN9EV6G4', '5630959'), + (59712, 625, 1721, 'not_attending', '2022-10-21 18:39:46', '2025-12-17 19:47:13', 'dN9EV6G4', '5630960'), + (59713, 625, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dN9EV6G4', '5630961'), + (59714, 625, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dN9EV6G4', '5630962'), + (59715, 625, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dN9EV6G4', '5630966'), + (59716, 625, 1725, 'not_attending', '2022-11-14 23:53:01', '2025-12-17 19:47:16', 'dN9EV6G4', '5630967'), + (59717, 625, 1726, 'not_attending', '2022-11-16 16:36:04', '2025-12-17 19:47:16', 'dN9EV6G4', '5630968'), + (59718, 625, 1727, 'attending', '2022-12-01 23:18:52', '2025-12-17 19:47:16', 'dN9EV6G4', '5630969'), + (59719, 625, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dN9EV6G4', '5635406'), + (59720, 625, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dN9EV6G4', '5638765'), + (59721, 625, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dN9EV6G4', '5640097'), + (59722, 625, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dN9EV6G4', '5640843'), + (59723, 625, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dN9EV6G4', '5641521'), + (59724, 625, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dN9EV6G4', '5642818'), + (59725, 625, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dN9EV6G4', '5652395'), + (59726, 625, 1757, 'not_attending', '2022-11-03 11:52:40', '2025-12-17 19:47:15', 'dN9EV6G4', '5668974'), + (59727, 625, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dN9EV6G4', '5670445'), + (59728, 625, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dN9EV6G4', '5671637'), + (59729, 625, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dN9EV6G4', '5672329'), + (59730, 625, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dN9EV6G4', '5674057'), + (59731, 625, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dN9EV6G4', '5674060'), + (59732, 625, 1769, 'maybe', '2022-11-04 02:49:35', '2025-12-17 19:47:15', 'dN9EV6G4', '5676351'), + (59733, 625, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dN9EV6G4', '5677461'), + (59734, 625, 1773, 'attending', '2022-10-31 15:02:44', '2025-12-17 19:47:14', 'dN9EV6G4', '5677707'), + (59735, 625, 1776, 'maybe', '2022-11-07 23:38:32', '2025-12-17 19:47:15', 'dN9EV6G4', '5691067'), + (59736, 625, 1779, 'attending', '2022-11-03 02:11:50', '2025-12-17 19:47:15', 'dN9EV6G4', '5694252'), + (59737, 625, 1781, 'maybe', '2022-11-02 12:53:39', '2025-12-17 19:47:15', 'dN9EV6G4', '5696178'), + (59738, 625, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dN9EV6G4', '5698046'), + (59739, 625, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dN9EV6G4', '5699760'), + (59740, 625, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dN9EV6G4', '5741601'), + (59741, 625, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dN9EV6G4', '5763458'), + (59742, 625, 1808, 'not_attending', '2023-03-02 13:56:53', '2025-12-17 19:47:08', 'dN9EV6G4', '5764678'), + (59743, 625, 1814, 'maybe', '2023-02-21 06:51:38', '2025-12-17 19:47:08', 'dN9EV6G4', '5764684'), + (59744, 625, 1820, 'not_attending', '2023-04-02 23:51:10', '2025-12-17 19:46:58', 'dN9EV6G4', '5764690'), + (59745, 625, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dN9EV6G4', '5774172'), + (59746, 625, 1829, 'not_attending', '2022-12-04 08:09:11', '2025-12-17 19:47:16', 'dN9EV6G4', '5778867'), + (59747, 625, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dN9EV6G4', '5818247'), + (59748, 625, 1834, 'not_attending', '2022-12-06 13:03:41', '2025-12-17 19:47:17', 'dN9EV6G4', '5819470'), + (59749, 625, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dN9EV6G4', '5819471'), + (59750, 625, 1838, 'attending', '2022-12-06 19:00:33', '2025-12-17 19:47:16', 'dN9EV6G4', '5821722'), + (59751, 625, 1839, 'attending', '2022-12-19 01:38:14', '2025-12-17 19:47:04', 'dN9EV6G4', '5821920'), + (59752, 625, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'dN9EV6G4', '5827739'), + (59753, 625, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dN9EV6G4', '5844306'), + (59754, 625, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dN9EV6G4', '5850159'), + (59755, 625, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dN9EV6G4', '5858999'), + (59756, 625, 1852, 'maybe', '2023-01-09 21:24:04', '2025-12-17 19:47:05', 'dN9EV6G4', '5869898'), + (59757, 625, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dN9EV6G4', '5871984'), + (59758, 625, 1861, 'maybe', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dN9EV6G4', '5876354'), + (59759, 625, 1863, 'not_attending', '2023-01-25 09:09:14', '2025-12-17 19:47:06', 'dN9EV6G4', '5877255'), + (59760, 625, 1865, 'not_attending', '2023-01-25 09:10:35', '2025-12-17 19:47:06', 'dN9EV6G4', '5879676'), + (59761, 625, 1866, 'maybe', '2023-01-24 04:17:55', '2025-12-17 19:47:05', 'dN9EV6G4', '5880939'), + (59762, 625, 1867, 'maybe', '2023-02-04 21:07:18', '2025-12-17 19:47:07', 'dN9EV6G4', '5880940'), + (59763, 625, 1868, 'not_attending', '2023-02-21 03:14:00', '2025-12-17 19:47:07', 'dN9EV6G4', '5880942'), + (59764, 625, 1869, 'maybe', '2023-03-07 15:04:40', '2025-12-17 19:47:09', 'dN9EV6G4', '5880943'), + (59765, 625, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dN9EV6G4', '5887890'), + (59766, 625, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dN9EV6G4', '5888598'), + (59767, 625, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dN9EV6G4', '5893260'), + (59768, 625, 1882, 'maybe', '2023-01-30 09:09:50', '2025-12-17 19:47:06', 'dN9EV6G4', '5898447'), + (59769, 625, 1884, 'maybe', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dN9EV6G4', '5899826'), + (59770, 625, 1885, 'not_attending', '2023-02-21 06:51:32', '2025-12-17 19:47:08', 'dN9EV6G4', '5899928'), + (59771, 625, 1886, 'maybe', '2023-03-07 15:04:45', '2025-12-17 19:47:09', 'dN9EV6G4', '5899930'), + (59772, 625, 1888, 'not_attending', '2023-02-17 09:20:01', '2025-12-17 19:47:07', 'dN9EV6G4', '5900197'), + (59773, 625, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dN9EV6G4', '5900199'), + (59774, 625, 1890, 'attending', '2023-02-18 10:07:54', '2025-12-17 19:47:08', 'dN9EV6G4', '5900200'), + (59775, 625, 1891, 'attending', '2023-03-17 00:05:41', '2025-12-17 19:46:56', 'dN9EV6G4', '5900202'), + (59776, 625, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dN9EV6G4', '5900203'), + (59777, 625, 1893, 'maybe', '2023-01-31 23:32:22', '2025-12-17 19:47:06', 'dN9EV6G4', '5901055'), + (59778, 625, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dN9EV6G4', '5901108'), + (59779, 625, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dN9EV6G4', '5901126'), + (59780, 625, 1897, 'not_attending', '2023-02-09 10:18:01', '2025-12-17 19:47:07', 'dN9EV6G4', '5901128'), + (59781, 625, 1898, 'maybe', '2023-02-01 03:54:23', '2025-12-17 19:47:06', 'dN9EV6G4', '5901263'), + (59782, 625, 1899, 'not_attending', '2023-02-09 10:19:06', '2025-12-17 19:47:07', 'dN9EV6G4', '5901323'), + (59783, 625, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dN9EV6G4', '5909655'), + (59784, 625, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dN9EV6G4', '5910522'), + (59785, 625, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dN9EV6G4', '5910526'), + (59786, 625, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dN9EV6G4', '5910528'), + (59787, 625, 1920, 'not_attending', '2023-02-13 03:55:29', '2025-12-17 19:47:07', 'dN9EV6G4', '5914091'), + (59788, 625, 1922, 'not_attending', '2023-02-13 06:31:46', '2025-12-17 19:47:07', 'dN9EV6G4', '5916219'), + (59789, 625, 1928, 'maybe', '2023-02-18 10:07:04', '2025-12-17 19:47:07', 'dN9EV6G4', '5932627'), + (59790, 625, 1933, 'attending', '2023-02-21 00:36:46', '2025-12-17 19:47:08', 'dN9EV6G4', '5936234'), + (59791, 625, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dN9EV6G4', '5958351'), + (59792, 625, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dN9EV6G4', '5959751'), + (59793, 625, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dN9EV6G4', '5959755'), + (59794, 625, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dN9EV6G4', '5960055'), + (59795, 625, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dN9EV6G4', '5961684'), + (59796, 625, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dN9EV6G4', '5962132'), + (59797, 625, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dN9EV6G4', '5962133'), + (59798, 625, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dN9EV6G4', '5962134'), + (59799, 625, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dN9EV6G4', '5962317'), + (59800, 625, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dN9EV6G4', '5962318'), + (59801, 625, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dN9EV6G4', '5965933'), + (59802, 625, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dN9EV6G4', '5967014'), + (59803, 625, 1955, 'maybe', '2023-03-27 01:18:51', '2025-12-17 19:46:57', 'dN9EV6G4', '5972529'), + (59804, 625, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dN9EV6G4', '5972815'), + (59805, 625, 1959, 'not_attending', '2023-03-27 01:19:08', '2025-12-17 19:46:57', 'dN9EV6G4', '5972829'), + (59806, 625, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dN9EV6G4', '5974016'), + (59807, 625, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dN9EV6G4', '5981515'), + (59808, 625, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dN9EV6G4', '5993516'), + (59809, 625, 1973, 'not_attending', '2023-03-19 19:16:24', '2025-12-17 19:46:56', 'dN9EV6G4', '5993777'), + (59810, 625, 1974, 'not_attending', '2023-03-27 01:19:02', '2025-12-17 19:46:57', 'dN9EV6G4', '5993778'), + (59811, 625, 1977, 'maybe', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dN9EV6G4', '5998939'), + (59812, 625, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dN9EV6G4', '6028191'), + (59813, 625, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dN9EV6G4', '6040066'), + (59814, 625, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dN9EV6G4', '6042717'), + (59815, 625, 1985, 'attending', '2023-03-27 01:17:11', '2025-12-17 19:46:57', 'dN9EV6G4', '6043041'), + (59816, 625, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dN9EV6G4', '6044838'), + (59817, 625, 1987, 'maybe', '2023-04-07 16:01:39', '2025-12-17 19:47:00', 'dN9EV6G4', '6044839'), + (59818, 625, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9EV6G4', '6045684'), + (59819, 625, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dN9EV6G4', '6050104'), + (59820, 625, 1995, 'not_attending', '2023-04-02 23:51:04', '2025-12-17 19:46:58', 'dN9EV6G4', '6050663'), + (59821, 625, 1996, 'maybe', '2023-04-02 22:37:48', '2025-12-17 19:46:58', 'dN9EV6G4', '6050667'), + (59822, 625, 1998, 'maybe', '2023-04-07 19:54:48', '2025-12-17 19:46:59', 'dN9EV6G4', '6052056'), + (59823, 625, 2001, 'maybe', '2023-04-04 23:37:24', '2025-12-17 19:46:58', 'dN9EV6G4', '6052569'), + (59824, 625, 2002, 'not_attending', '2023-04-25 23:27:44', '2025-12-17 19:47:01', 'dN9EV6G4', '6052605'), + (59825, 625, 2003, 'not_attending', '2023-05-18 13:16:17', '2025-12-17 19:47:03', 'dN9EV6G4', '6052606'), + (59826, 625, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dN9EV6G4', '6053195'), + (59827, 625, 2006, 'not_attending', '2023-04-07 19:55:10', '2025-12-17 19:46:59', 'dN9EV6G4', '6053198'), + (59828, 625, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dN9EV6G4', '6056085'), + (59829, 625, 2011, 'attending', '2023-04-08 19:35:04', '2025-12-17 19:46:59', 'dN9EV6G4', '6056916'), + (59830, 625, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dN9EV6G4', '6059290'), + (59831, 625, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dN9EV6G4', '6060328'), + (59832, 625, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dN9EV6G4', '6061037'), + (59833, 625, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dN9EV6G4', '6061039'), + (59834, 625, 2021, 'maybe', '2023-04-15 22:13:37', '2025-12-17 19:47:00', 'dN9EV6G4', '6066316'), + (59835, 625, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dN9EV6G4', '6067245'), + (59836, 625, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dN9EV6G4', '6068094'), + (59837, 625, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dN9EV6G4', '6068252'), + (59838, 625, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dN9EV6G4', '6068253'), + (59839, 625, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dN9EV6G4', '6068254'), + (59840, 625, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dN9EV6G4', '6068280'), + (59841, 625, 2032, 'attending', '2023-06-02 18:28:24', '2025-12-17 19:47:04', 'dN9EV6G4', '6068281'), + (59842, 625, 2033, 'maybe', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dN9EV6G4', '6069093'), + (59843, 625, 2035, 'not_attending', '2023-05-01 07:08:34', '2025-12-17 19:47:02', 'dN9EV6G4', '6070142'), + (59844, 625, 2038, 'not_attending', '2023-04-25 23:27:53', '2025-12-17 19:47:01', 'dN9EV6G4', '6071944'), + (59845, 625, 2041, 'maybe', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dN9EV6G4', '6072528'), + (59846, 625, 2043, 'maybe', '2023-04-25 23:27:16', '2025-12-17 19:47:01', 'dN9EV6G4', '6073023'), + (59847, 625, 2047, 'maybe', '2023-05-02 23:51:45', '2025-12-17 19:47:02', 'dN9EV6G4', '6076027'), + (59848, 625, 2049, 'maybe', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dN9EV6G4', '6079840'), + (59849, 625, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dN9EV6G4', '6083398'), + (59850, 625, 2052, 'maybe', '2023-05-04 21:51:37', '2025-12-17 19:47:02', 'dN9EV6G4', '6088220'), + (59851, 625, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dN9EV6G4', '6093504'), + (59852, 625, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dN9EV6G4', '6097414'), + (59853, 625, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dN9EV6G4', '6097442'), + (59854, 625, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dN9EV6G4', '6097684'), + (59855, 625, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dN9EV6G4', '6098762'), + (59856, 625, 2064, 'attending', '2023-06-22 21:15:19', '2025-12-17 19:46:50', 'dN9EV6G4', '6099988'), + (59857, 625, 2065, 'not_attending', '2023-06-16 20:38:22', '2025-12-17 19:46:49', 'dN9EV6G4', '6101169'), + (59858, 625, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dN9EV6G4', '6101361'), + (59859, 625, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dN9EV6G4', '6101362'), + (59860, 625, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dN9EV6G4', '6103752'), + (59861, 625, 2074, 'not_attending', '2023-05-21 11:18:22', '2025-12-17 19:47:03', 'dN9EV6G4', '6107312'), + (59862, 625, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dN9EV6G4', '6107314'), + (59863, 625, 2077, 'not_attending', '2023-06-17 21:15:26', '2025-12-17 19:46:49', 'dN9EV6G4', '6110217'), + (59864, 625, 2080, 'maybe', '2023-05-26 20:39:23', '2025-12-17 19:47:04', 'dN9EV6G4', '6114677'), + (59865, 625, 2083, 'not_attending', '2023-05-26 20:39:17', '2025-12-17 19:47:04', 'dN9EV6G4', '6115629'), + (59866, 625, 2084, 'maybe', '2023-05-26 20:39:10', '2025-12-17 19:47:04', 'dN9EV6G4', '6117127'), + (59867, 625, 2086, 'maybe', '2023-05-26 19:07:35', '2025-12-17 19:47:04', 'dN9EV6G4', '6119877'), + (59868, 625, 2087, 'maybe', '2023-05-28 23:17:04', '2025-12-17 19:47:04', 'dN9EV6G4', '6120034'), + (59869, 625, 2091, 'maybe', '2023-06-04 05:14:36', '2025-12-17 19:47:04', 'dN9EV6G4', '6130657'), + (59870, 625, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dN9EV6G4', '6136733'), + (59871, 625, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dN9EV6G4', '6137989'), + (59872, 625, 2099, 'not_attending', '2023-06-15 14:19:47', '2025-12-17 19:46:49', 'dN9EV6G4', '6143012'), + (59873, 625, 2105, 'maybe', '2023-06-17 08:31:52', '2025-12-17 19:46:50', 'dN9EV6G4', '6149551'), + (59874, 625, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dN9EV6G4', '6150864'), + (59875, 625, 2109, 'maybe', '2023-06-23 19:01:08', '2025-12-17 19:46:50', 'dN9EV6G4', '6152821'), + (59876, 625, 2110, 'maybe', '2023-06-21 03:08:28', '2025-12-17 19:46:50', 'dN9EV6G4', '6155491'), + (59877, 625, 2114, 'not_attending', '2023-06-25 07:59:13', '2025-12-17 19:46:50', 'dN9EV6G4', '6158648'), + (59878, 625, 2115, 'not_attending', '2023-06-25 21:21:45', '2025-12-17 19:46:50', 'dN9EV6G4', '6161437'), + (59879, 625, 2116, 'maybe', '2023-07-06 08:04:06', '2025-12-17 19:46:51', 'dN9EV6G4', '6163389'), + (59880, 625, 2117, 'not_attending', '2023-06-25 07:59:15', '2025-12-17 19:46:50', 'dN9EV6G4', '6163750'), + (59881, 625, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dN9EV6G4', '6164417'), + (59882, 625, 2119, 'maybe', '2023-06-26 02:49:36', '2025-12-17 19:46:50', 'dN9EV6G4', '6165461'), + (59883, 625, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dN9EV6G4', '6166388'), + (59884, 625, 2121, 'not_attending', '2023-06-28 12:51:50', '2025-12-17 19:46:50', 'dN9EV6G4', '6176439'), + (59885, 625, 2123, 'not_attending', '2023-06-28 12:51:52', '2025-12-17 19:46:50', 'dN9EV6G4', '6176502'), + (59886, 625, 2128, 'maybe', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dN9EV6G4', '6182410'), + (59887, 625, 2131, 'maybe', '2023-07-05 08:47:14', '2025-12-17 19:46:51', 'dN9EV6G4', '6185812'), + (59888, 625, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dN9EV6G4', '6187651'), + (59889, 625, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dN9EV6G4', '6187963'), + (59890, 625, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dN9EV6G4', '6187964'), + (59891, 625, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dN9EV6G4', '6187966'), + (59892, 625, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dN9EV6G4', '6187967'), + (59893, 625, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dN9EV6G4', '6187969'), + (59894, 625, 2142, 'maybe', '2023-07-16 01:00:28', '2025-12-17 19:46:52', 'dN9EV6G4', '6333850'), + (59895, 625, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dN9EV6G4', '6334878'), + (59896, 625, 2146, 'not_attending', '2023-07-16 07:55:09', '2025-12-17 19:46:53', 'dN9EV6G4', '6335638'), + (59897, 625, 2149, 'not_attending', '2023-07-10 14:08:32', '2025-12-17 19:46:53', 'dN9EV6G4', '6335682'), + (59898, 625, 2152, 'maybe', '2023-07-14 18:33:42', '2025-12-17 19:46:52', 'dN9EV6G4', '6337021'), + (59899, 625, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dN9EV6G4', '6337236'), + (59900, 625, 2155, 'attending', '2023-07-16 01:00:40', '2025-12-17 19:46:53', 'dN9EV6G4', '6337970'), + (59901, 625, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dN9EV6G4', '6338308'), + (59902, 625, 2157, 'maybe', '2023-07-14 09:03:37', '2025-12-17 19:46:52', 'dN9EV6G4', '6338342'), + (59903, 625, 2158, 'maybe', '2023-07-21 19:29:36', '2025-12-17 19:46:53', 'dN9EV6G4', '6338353'), + (59904, 625, 2159, 'attending', '2023-07-16 07:55:38', '2025-12-17 19:46:53', 'dN9EV6G4', '6338355'), + (59905, 625, 2160, 'not_attending', '2023-07-16 07:55:35', '2025-12-17 19:46:54', 'dN9EV6G4', '6338358'), + (59906, 625, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dN9EV6G4', '6340845'), + (59907, 625, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dN9EV6G4', '6341710'), + (59908, 625, 2164, 'not_attending', '2023-07-27 19:22:07', '2025-12-17 19:46:54', 'dN9EV6G4', '6341797'), + (59909, 625, 2165, 'maybe', '2023-07-25 08:41:35', '2025-12-17 19:46:54', 'dN9EV6G4', '6342044'), + (59910, 625, 2166, 'not_attending', '2023-07-23 06:53:42', '2025-12-17 19:46:54', 'dN9EV6G4', '6342115'), + (59911, 625, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dN9EV6G4', '6342298'), + (59912, 625, 2170, 'not_attending', '2023-07-23 06:53:48', '2025-12-17 19:46:53', 'dN9EV6G4', '6342307'), + (59913, 625, 2171, 'not_attending', '2023-07-23 06:53:58', '2025-12-17 19:46:54', 'dN9EV6G4', '6342328'), + (59914, 625, 2174, 'not_attending', '2023-07-23 06:53:32', '2025-12-17 19:46:53', 'dN9EV6G4', '6343294'), + (59915, 625, 2176, 'not_attending', '2023-07-23 06:53:38', '2025-12-17 19:46:54', 'dN9EV6G4', '6347034'), + (59916, 625, 2177, 'not_attending', '2023-08-07 04:00:24', '2025-12-17 19:46:55', 'dN9EV6G4', '6347053'), + (59917, 625, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dN9EV6G4', '6347056'), + (59918, 625, 2179, 'not_attending', '2023-08-01 08:26:12', '2025-12-17 19:46:54', 'dN9EV6G4', '6347591'), + (59919, 625, 2181, 'not_attending', '2023-07-27 19:22:02', '2025-12-17 19:46:54', 'dN9EV6G4', '6349354'), + (59920, 625, 2183, 'not_attending', '2023-07-28 19:04:53', '2025-12-17 19:46:54', 'dN9EV6G4', '6353008'), + (59921, 625, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dN9EV6G4', '6353830'), + (59922, 625, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dN9EV6G4', '6353831'), + (59923, 625, 2187, 'not_attending', '2023-08-07 03:59:36', '2025-12-17 19:46:55', 'dN9EV6G4', '6357559'), + (59924, 625, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dN9EV6G4', '6357867'), + (59925, 625, 2190, 'not_attending', '2023-08-07 03:59:59', '2025-12-17 19:46:55', 'dN9EV6G4', '6357892'), + (59926, 625, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dN9EV6G4', '6358652'), + (59927, 625, 2194, 'not_attending', '2023-08-07 03:59:55', '2025-12-17 19:46:54', 'dN9EV6G4', '6358669'), + (59928, 625, 2195, 'not_attending', '2023-08-18 17:14:16', '2025-12-17 19:46:55', 'dN9EV6G4', '6359397'), + (59929, 625, 2196, 'maybe', '2023-08-20 10:50:33', '2025-12-17 19:46:56', 'dN9EV6G4', '6359398'), + (59930, 625, 2197, 'not_attending', '2023-08-20 10:50:35', '2025-12-17 19:46:44', 'dN9EV6G4', '6359399'), + (59931, 625, 2198, 'not_attending', '2023-08-20 10:50:38', '2025-12-17 19:46:45', 'dN9EV6G4', '6359400'), + (59932, 625, 2199, 'attending', '2023-08-08 09:53:00', '2025-12-17 19:46:55', 'dN9EV6G4', '6359849'), + (59933, 625, 2200, 'not_attending', '2023-08-07 04:00:06', '2025-12-17 19:46:55', 'dN9EV6G4', '6359850'), + (59934, 625, 2202, 'maybe', '2023-08-06 21:29:43', '2025-12-17 19:46:54', 'dN9EV6G4', '6360509'), + (59935, 625, 2204, 'attending', '2023-08-08 09:52:49', '2025-12-17 19:46:55', 'dN9EV6G4', '6361542'), + (59936, 625, 2206, 'maybe', '2023-08-08 09:51:49', '2025-12-17 19:46:55', 'dN9EV6G4', '6361659'), + (59937, 625, 2208, 'maybe', '2023-08-08 09:17:46', '2025-12-17 19:46:54', 'dN9EV6G4', '6361709'), + (59938, 625, 2209, 'attending', '2023-08-08 09:52:55', '2025-12-17 19:46:55', 'dN9EV6G4', '6361710'), + (59939, 625, 2210, 'not_attending', '2023-08-08 09:52:58', '2025-12-17 19:46:55', 'dN9EV6G4', '6361711'), + (59940, 625, 2211, 'not_attending', '2023-08-11 19:34:44', '2025-12-17 19:46:55', 'dN9EV6G4', '6361712'), + (59941, 625, 2212, 'not_attending', '2023-08-20 10:50:40', '2025-12-17 19:46:45', 'dN9EV6G4', '6361713'), + (59942, 625, 2213, 'not_attending', '2023-08-09 18:32:09', '2025-12-17 19:46:55', 'dN9EV6G4', '6362935'), + (59943, 625, 2214, 'not_attending', '2023-08-11 19:34:50', '2025-12-17 19:46:55', 'dN9EV6G4', '6363218'), + (59944, 625, 2217, 'maybe', '2023-08-12 01:55:40', '2025-12-17 19:46:55', 'dN9EV6G4', '6364333'), + (59945, 625, 2218, 'not_attending', '2023-08-20 08:21:35', '2025-12-17 19:46:55', 'dN9EV6G4', '6367308'), + (59946, 625, 2219, 'not_attending', '2023-08-25 19:06:18', '2025-12-17 19:46:55', 'dN9EV6G4', '6367309'), + (59947, 625, 2220, 'not_attending', '2023-08-20 10:50:45', '2025-12-17 19:46:56', 'dN9EV6G4', '6367310'), + (59948, 625, 2221, 'not_attending', '2023-08-14 22:42:48', '2025-12-17 19:46:55', 'dN9EV6G4', '6367357'), + (59949, 625, 2224, 'not_attending', '2023-08-16 00:27:34', '2025-12-17 19:46:55', 'dN9EV6G4', '6367635'), + (59950, 625, 2225, 'maybe', '2023-08-17 22:12:52', '2025-12-17 19:46:55', 'dN9EV6G4', '6368434'), + (59951, 625, 2227, 'not_attending', '2023-08-20 08:21:31', '2025-12-17 19:46:55', 'dN9EV6G4', '6370581'), + (59952, 625, 2229, 'not_attending', '2023-08-20 20:58:40', '2025-12-17 19:46:55', 'dN9EV6G4', '6373787'), + (59953, 625, 2231, 'not_attending', '2023-08-21 18:01:56', '2025-12-17 19:46:55', 'dN9EV6G4', '6374748'), + (59954, 625, 2232, 'attending', '2023-08-21 18:24:00', '2025-12-17 19:46:55', 'dN9EV6G4', '6374818'), + (59955, 625, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dN9EV6G4', '6382573'), + (59956, 625, 2236, 'not_attending', '2023-08-25 19:06:22', '2025-12-17 19:46:55', 'dN9EV6G4', '6382618'), + (59957, 625, 2237, 'attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'dN9EV6G4', '6383149'), + (59958, 625, 2239, 'attending', '2023-08-31 18:01:20', '2025-12-17 19:46:56', 'dN9EV6G4', '6387592'), + (59959, 625, 2240, 'attending', '2023-09-02 00:21:00', '2025-12-17 19:46:56', 'dN9EV6G4', '6388603'), + (59960, 625, 2241, 'attending', '2023-09-02 00:21:05', '2025-12-17 19:46:44', 'dN9EV6G4', '6388604'), + (59961, 625, 2242, 'maybe', '2023-09-02 00:21:11', '2025-12-17 19:46:45', 'dN9EV6G4', '6388606'), + (59962, 625, 2243, 'not_attending', '2023-09-04 23:34:06', '2025-12-17 19:46:56', 'dN9EV6G4', '6393686'), + (59963, 625, 2244, 'attending', '2023-09-04 23:34:10', '2025-12-17 19:46:44', 'dN9EV6G4', '6393700'), + (59964, 625, 2245, 'maybe', '2023-09-05 09:28:28', '2025-12-17 19:46:45', 'dN9EV6G4', '6393703'), + (59965, 625, 2247, 'not_attending', '2023-09-05 19:53:22', '2025-12-17 19:46:56', 'dN9EV6G4', '6394628'), + (59966, 625, 2248, 'not_attending', '2023-09-05 19:53:27', '2025-12-17 19:46:44', 'dN9EV6G4', '6394629'), + (59967, 625, 2249, 'not_attending', '2023-09-05 19:53:29', '2025-12-17 19:46:45', 'dN9EV6G4', '6394630'), + (59968, 625, 2250, 'not_attending', '2023-09-05 19:53:33', '2025-12-17 19:46:45', 'dN9EV6G4', '6394631'), + (59969, 625, 2252, 'not_attending', '2023-09-18 14:44:55', '2025-12-17 19:46:45', 'dN9EV6G4', '6396837'), + (59970, 625, 2253, 'maybe', '2023-09-11 18:00:25', '2025-12-17 19:46:45', 'dN9EV6G4', '6401811'), + (59971, 625, 2255, 'maybe', '2023-09-13 18:23:38', '2025-12-17 19:46:45', 'dN9EV6G4', '6403562'), + (59972, 625, 2256, 'not_attending', '2023-09-13 18:23:30', '2025-12-17 19:46:45', 'dN9EV6G4', '6404369'), + (59973, 625, 2257, 'maybe', '2023-09-16 18:20:32', '2025-12-17 19:46:44', 'dN9EV6G4', '6408068'), + (59974, 625, 2258, 'not_attending', '2023-09-21 16:31:33', '2025-12-17 19:46:45', 'dN9EV6G4', '6419492'), + (59975, 625, 2259, 'maybe', '2023-09-22 20:14:56', '2025-12-17 19:46:45', 'dN9EV6G4', '6421257'), + (59976, 625, 2261, 'not_attending', '2023-09-25 11:49:15', '2025-12-17 19:46:45', 'dN9EV6G4', '6427422'), + (59977, 625, 2263, 'maybe', '2023-09-26 22:44:01', '2025-12-17 19:46:45', 'dN9EV6G4', '6429351'), + (59978, 625, 2265, 'attending', '2023-09-30 20:29:35', '2025-12-17 19:46:45', 'dN9EV6G4', '6439625'), + (59979, 625, 2266, 'maybe', '2023-10-04 00:21:55', '2025-12-17 19:46:45', 'dN9EV6G4', '6439635'), + (59980, 625, 2267, 'not_attending', '2023-10-04 16:15:07', '2025-12-17 19:46:45', 'dN9EV6G4', '6440034'), + (59981, 625, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dN9EV6G4', '6440863'), + (59982, 625, 2269, 'not_attending', '2023-10-02 18:40:03', '2025-12-17 19:46:45', 'dN9EV6G4', '6442978'), + (59983, 625, 2271, 'not_attending', '2023-10-04 16:15:24', '2025-12-17 19:46:45', 'dN9EV6G4', '6445375'), + (59984, 625, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dN9EV6G4', '6445440'), + (59985, 625, 2273, 'not_attending', '2023-10-04 14:05:32', '2025-12-17 19:46:45', 'dN9EV6G4', '6448282'), + (59986, 625, 2274, 'maybe', '2023-10-06 05:57:51', '2025-12-17 19:46:45', 'dN9EV6G4', '6448287'), + (59987, 625, 2275, 'maybe', '2023-10-07 20:42:33', '2025-12-17 19:46:45', 'dN9EV6G4', '6453777'), + (59988, 625, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dN9EV6G4', '6453951'), + (59989, 625, 2277, 'not_attending', '2023-10-08 22:21:08', '2025-12-17 19:46:46', 'dN9EV6G4', '6455211'), + (59990, 625, 2278, 'not_attending', '2023-10-08 22:21:35', '2025-12-17 19:46:45', 'dN9EV6G4', '6455213'), + (59991, 625, 2279, 'maybe', '2023-10-08 21:20:50', '2025-12-17 19:46:46', 'dN9EV6G4', '6455460'), + (59992, 625, 2280, 'not_attending', '2023-10-08 20:38:14', '2025-12-17 19:46:46', 'dN9EV6G4', '6455470'), + (59993, 625, 2283, 'not_attending', '2023-10-08 22:21:21', '2025-12-17 19:46:46', 'dN9EV6G4', '6455503'), + (59994, 625, 2284, 'not_attending', '2023-10-11 02:51:42', '2025-12-17 19:46:46', 'dN9EV6G4', '6460928'), + (59995, 625, 2285, 'not_attending', '2023-10-21 00:55:45', '2025-12-17 19:46:47', 'dN9EV6G4', '6460929'), + (59996, 625, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dN9EV6G4', '6461696'), + (59997, 625, 2288, 'not_attending', '2023-10-11 02:51:34', '2025-12-17 19:46:46', 'dN9EV6G4', '6462068'), + (59998, 625, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dN9EV6G4', '6462129'), + (59999, 625, 2290, 'not_attending', '2023-10-11 23:01:11', '2025-12-17 19:46:46', 'dN9EV6G4', '6462214'), + (60000, 625, 2292, 'maybe', '2023-10-30 02:18:29', '2025-12-17 19:46:47', 'dN9EV6G4', '6462216'), + (60001, 625, 2293, 'not_attending', '2023-10-11 21:28:07', '2025-12-17 19:46:46', 'dN9EV6G4', '6463218'), + (60002, 625, 2294, 'not_attending', '2023-10-12 16:08:32', '2025-12-17 19:46:46', 'dN9EV6G4', '6465907'), + (60003, 625, 2295, 'maybe', '2023-10-14 19:15:27', '2025-12-17 19:46:46', 'dN9EV6G4', '6467832'), + (60004, 625, 2296, 'not_attending', '2023-10-13 18:01:21', '2025-12-17 19:46:47', 'dN9EV6G4', '6468393'), + (60005, 625, 2299, 'maybe', '2023-10-15 20:42:11', '2025-12-17 19:46:46', 'dN9EV6G4', '6472181'), + (60006, 625, 2300, 'maybe', '2023-10-18 15:12:54', '2025-12-17 19:46:47', 'dN9EV6G4', '6472185'), + (60007, 625, 2301, 'not_attending', '2023-10-16 13:33:36', '2025-12-17 19:46:46', 'dN9EV6G4', '6474276'), + (60008, 625, 2302, 'not_attending', '2023-10-21 00:55:31', '2025-12-17 19:46:46', 'dN9EV6G4', '6482535'), + (60009, 625, 2303, 'attending', '2023-10-22 03:59:44', '2025-12-17 19:46:47', 'dN9EV6G4', '6482691'), + (60010, 625, 2304, 'attending', '2023-10-27 20:39:20', '2025-12-17 19:46:47', 'dN9EV6G4', '6482693'), + (60011, 625, 2306, 'maybe', '2023-11-13 03:08:14', '2025-12-17 19:46:47', 'dN9EV6G4', '6484200'), + (60012, 625, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dN9EV6G4', '6484680'), + (60013, 625, 2308, 'not_attending', '2023-10-25 05:54:29', '2025-12-17 19:46:47', 'dN9EV6G4', '6485393'), + (60014, 625, 2310, 'attending', '2023-10-28 21:42:40', '2025-12-17 19:46:47', 'dN9EV6G4', '6487709'), + (60015, 625, 2311, 'not_attending', '2023-10-30 02:18:48', '2025-12-17 19:46:47', 'dN9EV6G4', '6487725'), + (60016, 625, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dN9EV6G4', '6507741'), + (60017, 625, 2318, 'not_attending', '2023-10-30 16:07:40', '2025-12-17 19:46:47', 'dN9EV6G4', '6508566'), + (60018, 625, 2319, 'not_attending', '2023-10-30 16:07:35', '2025-12-17 19:46:47', 'dN9EV6G4', '6508567'), + (60019, 625, 2320, 'not_attending', '2023-11-04 03:07:50', '2025-12-17 19:46:47', 'dN9EV6G4', '6508647'), + (60020, 625, 2322, 'attending', '2023-11-09 20:41:32', '2025-12-17 19:46:48', 'dN9EV6G4', '6514659'), + (60021, 625, 2323, 'not_attending', '2023-11-24 21:31:46', '2025-12-17 19:46:49', 'dN9EV6G4', '6514660'), + (60022, 625, 2324, 'attending', '2023-11-29 19:26:28', '2025-12-17 19:46:49', 'dN9EV6G4', '6514662'), + (60023, 625, 2325, 'not_attending', '2023-11-29 19:26:31', '2025-12-17 19:46:36', 'dN9EV6G4', '6514663'), + (60024, 625, 2326, 'not_attending', '2023-11-09 20:41:38', '2025-12-17 19:46:48', 'dN9EV6G4', '6514805'), + (60025, 625, 2327, 'not_attending', '2023-11-02 00:11:07', '2025-12-17 19:46:47', 'dN9EV6G4', '6515494'), + (60026, 625, 2328, 'not_attending', '2023-11-02 00:11:04', '2025-12-17 19:46:47', 'dN9EV6G4', '6515504'), + (60027, 625, 2329, 'not_attending', '2023-11-03 20:17:10', '2025-12-17 19:46:47', 'dN9EV6G4', '6517138'), + (60028, 625, 2331, 'not_attending', '2023-11-14 04:38:06', '2025-12-17 19:46:47', 'dN9EV6G4', '6518640'), + (60029, 625, 2332, 'not_attending', '2023-11-04 03:07:44', '2025-12-17 19:46:47', 'dN9EV6G4', '6518655'), + (60030, 625, 2333, 'maybe', '2023-11-04 03:08:02', '2025-12-17 19:46:47', 'dN9EV6G4', '6519103'), + (60031, 625, 2335, 'not_attending', '2023-11-08 00:00:23', '2025-12-17 19:46:47', 'dN9EV6G4', '6534890'), + (60032, 625, 2337, 'maybe', '2023-11-08 01:12:45', '2025-12-17 19:46:48', 'dN9EV6G4', '6535681'), + (60033, 625, 2338, 'not_attending', '2023-11-13 01:05:47', '2025-12-17 19:46:48', 'dN9EV6G4', '6538868'), + (60034, 625, 2339, 'maybe', '2023-11-09 20:41:09', '2025-12-17 19:46:47', 'dN9EV6G4', '6539128'), + (60035, 625, 2342, 'not_attending', '2023-11-14 04:38:02', '2025-12-17 19:46:47', 'dN9EV6G4', '6545076'), + (60036, 625, 2346, 'attending', '2023-11-18 22:38:49', '2025-12-17 19:46:48', 'dN9EV6G4', '6582418'), + (60037, 625, 2350, 'attending', '2023-11-20 22:39:04', '2025-12-17 19:46:48', 'dN9EV6G4', '6584352'), + (60038, 625, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dN9EV6G4', '6584747'), + (60039, 625, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dN9EV6G4', '6587097'), + (60040, 625, 2361, 'attending', '2023-12-02 21:51:25', '2025-12-17 19:46:48', 'dN9EV6G4', '6602009'), + (60041, 625, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dN9EV6G4', '6609022'), + (60042, 625, 2366, 'not_attending', '2023-12-12 16:50:54', '2025-12-17 19:46:36', 'dN9EV6G4', '6615304'), + (60043, 625, 2370, 'maybe', '2023-12-12 16:51:14', '2025-12-17 19:46:36', 'dN9EV6G4', '6623765'), + (60044, 625, 2373, 'attending', '2023-12-20 01:30:16', '2025-12-17 19:46:38', 'dN9EV6G4', '6632678'), + (60045, 625, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dN9EV6G4', '6632757'), + (60046, 625, 2377, 'not_attending', '2024-01-08 23:52:30', '2025-12-17 19:46:37', 'dN9EV6G4', '6643448'), + (60047, 625, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dN9EV6G4', '6644187'), + (60048, 625, 2380, 'attending', '2023-12-30 23:47:27', '2025-12-17 19:46:37', 'dN9EV6G4', '6645105'), + (60049, 625, 2384, 'not_attending', '2024-01-04 21:32:41', '2025-12-17 19:46:37', 'dN9EV6G4', '6648022'), + (60050, 625, 2385, 'maybe', '2024-01-08 07:59:58', '2025-12-17 19:46:37', 'dN9EV6G4', '6648943'), + (60051, 625, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dN9EV6G4', '6648951'), + (60052, 625, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dN9EV6G4', '6648952'), + (60053, 625, 2388, 'not_attending', '2024-01-03 17:17:00', '2025-12-17 19:46:37', 'dN9EV6G4', '6649244'), + (60054, 625, 2389, 'not_attending', '2024-01-13 01:01:57', '2025-12-17 19:46:40', 'dN9EV6G4', '6651094'), + (60055, 625, 2390, 'maybe', '2024-01-05 19:56:26', '2025-12-17 19:46:37', 'dN9EV6G4', '6651141'), + (60056, 625, 2392, 'not_attending', '2024-01-11 06:37:59', '2025-12-17 19:46:37', 'dN9EV6G4', '6654412'), + (60057, 625, 2394, 'not_attending', '2024-01-13 01:01:54', '2025-12-17 19:46:38', 'dN9EV6G4', '6654470'), + (60058, 625, 2395, 'maybe', '2024-01-16 23:38:37', '2025-12-17 19:46:38', 'dN9EV6G4', '6654471'), + (60059, 625, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dN9EV6G4', '6655401'), + (60060, 625, 2397, 'maybe', '2024-01-08 23:52:45', '2025-12-17 19:46:37', 'dN9EV6G4', '6657379'), + (60061, 625, 2399, 'maybe', '2024-01-08 23:52:53', '2025-12-17 19:46:38', 'dN9EV6G4', '6657583'), + (60062, 625, 2400, 'not_attending', '2024-01-11 06:37:56', '2025-12-17 19:46:37', 'dN9EV6G4', '6659378'), + (60063, 625, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dN9EV6G4', '6661585'), + (60064, 625, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dN9EV6G4', '6661588'), + (60065, 625, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dN9EV6G4', '6661589'), + (60066, 625, 2405, 'not_attending', '2024-01-13 01:01:51', '2025-12-17 19:46:38', 'dN9EV6G4', '6667332'), + (60067, 625, 2406, 'not_attending', '2024-01-16 23:53:28', '2025-12-17 19:46:40', 'dN9EV6G4', '6692344'), + (60068, 625, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dN9EV6G4', '6699906'), + (60069, 625, 2408, 'attending', '2024-01-15 07:19:58', '2025-12-17 19:46:40', 'dN9EV6G4', '6699907'), + (60070, 625, 2409, 'not_attending', '2024-01-15 07:20:09', '2025-12-17 19:46:41', 'dN9EV6G4', '6699909'), + (60071, 625, 2410, 'not_attending', '2024-01-15 07:20:14', '2025-12-17 19:46:41', 'dN9EV6G4', '6699911'), + (60072, 625, 2411, 'attending', '2024-01-15 07:20:18', '2025-12-17 19:46:41', 'dN9EV6G4', '6699913'), + (60073, 625, 2412, 'maybe', '2024-02-20 03:29:26', '2025-12-17 19:46:43', 'dN9EV6G4', '6700717'), + (60074, 625, 2414, 'attending', '2024-01-16 01:39:53', '2025-12-17 19:46:40', 'dN9EV6G4', '6701000'), + (60075, 625, 2415, 'attending', '2024-01-16 23:53:54', '2025-12-17 19:46:40', 'dN9EV6G4', '6701001'), + (60076, 625, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dN9EV6G4', '6701109'), + (60077, 625, 2417, 'not_attending', '2024-01-17 04:17:20', '2025-12-17 19:46:40', 'dN9EV6G4', '6701905'), + (60078, 625, 2419, 'not_attending', '2024-02-01 18:52:22', '2025-12-17 19:46:41', 'dN9EV6G4', '6704505'), + (60079, 625, 2421, 'not_attending', '2024-01-26 00:43:39', '2025-12-17 19:46:40', 'dN9EV6G4', '6704598'), + (60080, 625, 2422, 'not_attending', '2024-01-18 23:44:43', '2025-12-17 19:46:40', 'dN9EV6G4', '6704650'), + (60081, 625, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dN9EV6G4', '6705219'), + (60082, 625, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dN9EV6G4', '6710153'), + (60083, 625, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dN9EV6G4', '6711552'), + (60084, 625, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dN9EV6G4', '6711553'), + (60085, 625, 2431, 'not_attending', '2024-02-01 14:40:58', '2025-12-17 19:46:41', 'dN9EV6G4', '6712394'), + (60086, 625, 2434, 'not_attending', '2024-01-26 00:43:42', '2025-12-17 19:46:40', 'dN9EV6G4', '6716605'), + (60087, 625, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dN9EV6G4', '6722688'), + (60088, 625, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dN9EV6G4', '6730620'), + (60089, 625, 2440, 'maybe', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dN9EV6G4', '6730642'), + (60090, 625, 2441, 'not_attending', '2024-02-01 18:52:28', '2025-12-17 19:46:41', 'dN9EV6G4', '6731263'), + (60091, 625, 2442, 'not_attending', '2024-02-02 20:39:13', '2025-12-17 19:46:41', 'dN9EV6G4', '6732647'), + (60092, 625, 2443, 'not_attending', '2024-02-03 20:29:45', '2025-12-17 19:46:41', 'dN9EV6G4', '6733775'), + (60093, 625, 2444, 'not_attending', '2024-02-05 03:19:12', '2025-12-17 19:46:41', 'dN9EV6G4', '6734367'), + (60094, 625, 2450, 'maybe', '2024-02-05 18:58:52', '2025-12-17 19:46:41', 'dN9EV6G4', '6738807'), + (60095, 625, 2451, 'not_attending', '2024-02-07 07:36:26', '2025-12-17 19:46:41', 'dN9EV6G4', '6740333'), + (60096, 625, 2452, 'not_attending', '2024-02-08 15:46:11', '2025-12-17 19:46:41', 'dN9EV6G4', '6740361'), + (60097, 625, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dN9EV6G4', '6740364'), + (60098, 625, 2455, 'not_attending', '2024-02-08 06:16:48', '2025-12-17 19:46:41', 'dN9EV6G4', '6741034'), + (60099, 625, 2456, 'not_attending', '2024-02-08 15:46:03', '2025-12-17 19:46:41', 'dN9EV6G4', '6742202'), + (60100, 625, 2457, 'not_attending', '2024-02-08 22:08:05', '2025-12-17 19:46:41', 'dN9EV6G4', '6742221'), + (60101, 625, 2458, 'not_attending', '2024-02-10 03:00:21', '2025-12-17 19:46:41', 'dN9EV6G4', '6743731'), + (60102, 625, 2459, 'not_attending', '2024-02-09 21:09:36', '2025-12-17 19:46:41', 'dN9EV6G4', '6743828'), + (60103, 625, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dN9EV6G4', '6743829'), + (60104, 625, 2465, 'not_attending', '2024-02-20 03:29:41', '2025-12-17 19:46:42', 'dN9EV6G4', '7026725'), + (60105, 625, 2467, 'attending', '2024-02-25 06:04:35', '2025-12-17 19:46:43', 'dN9EV6G4', '7029987'), + (60106, 625, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dN9EV6G4', '7030380'), + (60107, 625, 2471, 'not_attending', '2024-02-20 02:58:21', '2025-12-17 19:46:42', 'dN9EV6G4', '7032425'), + (60108, 625, 2472, 'not_attending', '2024-02-20 02:58:26', '2025-12-17 19:46:42', 'dN9EV6G4', '7033677'), + (60109, 625, 2473, 'not_attending', '2024-02-26 08:24:14', '2025-12-17 19:46:43', 'dN9EV6G4', '7033724'), + (60110, 625, 2474, 'attending', '2024-02-21 00:26:25', '2025-12-17 19:46:43', 'dN9EV6G4', '7035415'), + (60111, 625, 2476, 'not_attending', '2024-02-26 08:24:18', '2025-12-17 19:46:43', 'dN9EV6G4', '7035691'), + (60112, 625, 2477, 'not_attending', '2024-02-21 05:26:26', '2025-12-17 19:46:42', 'dN9EV6G4', '7035692'), + (60113, 625, 2478, 'attending', '2024-02-21 00:51:26', '2025-12-17 19:46:43', 'dN9EV6G4', '7036478'), + (60114, 625, 2480, 'attending', '2024-02-25 06:04:33', '2025-12-17 19:46:43', 'dN9EV6G4', '7042160'), + (60115, 625, 2481, 'maybe', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dN9EV6G4', '7044715'), + (60116, 625, 2485, 'not_attending', '2024-02-27 21:45:33', '2025-12-17 19:46:43', 'dN9EV6G4', '7048111'), + (60117, 625, 2487, 'not_attending', '2024-03-17 20:27:40', '2025-12-17 19:46:33', 'dN9EV6G4', '7049279'), + (60118, 625, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dN9EV6G4', '7050318'), + (60119, 625, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dN9EV6G4', '7050319'), + (60120, 625, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dN9EV6G4', '7050322'), + (60121, 625, 2496, 'not_attending', '2024-03-02 22:20:13', '2025-12-17 19:46:43', 'dN9EV6G4', '7055967'), + (60122, 625, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dN9EV6G4', '7057804'), + (60123, 625, 2500, 'maybe', '2024-03-06 16:37:47', '2025-12-17 19:46:43', 'dN9EV6G4', '7058603'), + (60124, 625, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dN9EV6G4', '7059866'), + (60125, 625, 2504, 'not_attending', '2024-03-17 20:27:43', '2025-12-17 19:46:33', 'dN9EV6G4', '7063296'), + (60126, 625, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dN9EV6G4', '7072824'), + (60127, 625, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dN9EV6G4', '7074348'), + (60128, 625, 2509, 'not_attending', '2024-03-28 22:37:33', '2025-12-17 19:46:33', 'dN9EV6G4', '7074349'), + (60129, 625, 2514, 'not_attending', '2024-04-24 13:13:09', '2025-12-17 19:46:34', 'dN9EV6G4', '7074354'), + (60130, 625, 2518, 'not_attending', '2024-07-23 01:35:16', '2025-12-17 19:46:30', 'dN9EV6G4', '7074358'), + (60131, 625, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dN9EV6G4', '7074364'), + (60132, 625, 2537, 'not_attending', '2024-03-17 20:27:35', '2025-12-17 19:46:33', 'dN9EV6G4', '7085484'), + (60133, 625, 2538, 'not_attending', '2024-03-25 01:54:50', '2025-12-17 19:46:33', 'dN9EV6G4', '7085485'), + (60134, 625, 2539, 'maybe', '2024-03-28 15:40:28', '2025-12-17 19:46:33', 'dN9EV6G4', '7085486'), + (60135, 625, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dN9EV6G4', '7089267'), + (60136, 625, 2547, 'not_attending', '2024-03-28 22:37:29', '2025-12-17 19:46:33', 'dN9EV6G4', '7096945'), + (60137, 625, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dN9EV6G4', '7098747'), + (60138, 625, 2549, 'maybe', '2024-03-27 21:31:46', '2025-12-17 19:46:33', 'dN9EV6G4', '7099657'), + (60139, 625, 2553, 'not_attending', '2024-03-30 02:27:06', '2025-12-17 19:46:33', 'dN9EV6G4', '7113468'), + (60140, 625, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dN9EV6G4', '7114856'), + (60141, 625, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dN9EV6G4', '7114951'), + (60142, 625, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dN9EV6G4', '7114955'), + (60143, 625, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dN9EV6G4', '7114956'), + (60144, 625, 2558, 'attending', '2024-04-30 01:12:50', '2025-12-17 19:46:35', 'dN9EV6G4', '7114957'), + (60145, 625, 2559, 'maybe', '2024-04-02 15:38:01', '2025-12-17 19:46:33', 'dN9EV6G4', '7115254'), + (60146, 625, 2563, 'not_attending', '2024-04-07 21:03:40', '2025-12-17 19:46:33', 'dN9EV6G4', '7134734'), + (60147, 625, 2564, 'maybe', '2024-04-08 04:23:14', '2025-12-17 19:46:33', 'dN9EV6G4', '7134735'), + (60148, 625, 2566, 'maybe', '2024-04-03 04:21:54', '2025-12-17 19:46:34', 'dN9EV6G4', '7140664'), + (60149, 625, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dN9EV6G4', '7153615'), + (60150, 625, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dN9EV6G4', '7159484'), + (60151, 625, 2573, 'maybe', '2024-04-14 02:09:04', '2025-12-17 19:46:34', 'dN9EV6G4', '7160612'), + (60152, 625, 2580, 'not_attending', '2024-04-14 18:28:23', '2025-12-17 19:46:34', 'dN9EV6G4', '7167272'), + (60153, 625, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dN9EV6G4', '7178446'), + (60154, 625, 2595, 'not_attending', '2024-04-24 18:09:35', '2025-12-17 19:46:34', 'dN9EV6G4', '7182252'), + (60155, 625, 2597, 'not_attending', '2024-04-21 22:41:50', '2025-12-17 19:46:34', 'dN9EV6G4', '7186726'), + (60156, 625, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dN9EV6G4', '7220467'), + (60157, 625, 2609, 'not_attending', '2024-04-30 01:42:54', '2025-12-17 19:46:35', 'dN9EV6G4', '7240354'), + (60158, 625, 2612, 'not_attending', '2024-05-08 14:39:59', '2025-12-17 19:46:35', 'dN9EV6G4', '7247643'), + (60159, 625, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dN9EV6G4', '7251633'), + (60160, 625, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dN9EV6G4', '7263048'), + (60161, 625, 2626, 'attending', '2024-05-14 10:31:45', '2025-12-17 19:46:35', 'dN9EV6G4', '7264723'), + (60162, 625, 2627, 'not_attending', '2024-05-22 10:20:26', '2025-12-17 19:46:35', 'dN9EV6G4', '7264724'), + (60163, 625, 2628, 'not_attending', '2024-05-28 02:51:45', '2025-12-17 19:46:36', 'dN9EV6G4', '7264725'), + (60164, 625, 2629, 'not_attending', '2024-06-03 12:18:53', '2025-12-17 19:46:28', 'dN9EV6G4', '7264726'), + (60165, 625, 2645, 'attending', '2024-05-20 22:12:25', '2025-12-17 19:46:35', 'dN9EV6G4', '7279964'), + (60166, 625, 2647, 'attending', '2024-05-20 20:44:40', '2025-12-17 19:46:28', 'dN9EV6G4', '7282057'), + (60167, 625, 2653, 'not_attending', '2024-05-25 20:13:36', '2025-12-17 19:46:35', 'dN9EV6G4', '7289186'), + (60168, 625, 2656, 'not_attending', '2024-05-30 19:03:09', '2025-12-17 19:46:36', 'dN9EV6G4', '7291301'), + (60169, 625, 2659, 'not_attending', '2024-06-01 19:55:24', '2025-12-17 19:46:36', 'dN9EV6G4', '7299599'), + (60170, 625, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dN9EV6G4', '7302674'), + (60171, 625, 2671, 'maybe', '2024-06-09 20:51:22', '2025-12-17 19:46:28', 'dN9EV6G4', '7318256'), + (60172, 625, 2678, 'not_attending', '2024-06-10 12:15:07', '2025-12-17 19:46:28', 'dN9EV6G4', '7319489'), + (60173, 625, 2679, 'not_attending', '2024-06-10 12:15:19', '2025-12-17 19:46:29', 'dN9EV6G4', '7319490'), + (60174, 625, 2684, 'not_attending', '2024-06-11 19:53:55', '2025-12-17 19:46:28', 'dN9EV6G4', '7322001'), + (60175, 625, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dN9EV6G4', '7324073'), + (60176, 625, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dN9EV6G4', '7324074'), + (60177, 625, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dN9EV6G4', '7324075'), + (60178, 625, 2691, 'not_attending', '2024-07-20 20:54:41', '2025-12-17 19:46:30', 'dN9EV6G4', '7324076'), + (60179, 625, 2692, 'not_attending', '2024-07-23 01:35:07', '2025-12-17 19:46:30', 'dN9EV6G4', '7324077'), + (60180, 625, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dN9EV6G4', '7324078'), + (60181, 625, 2695, 'not_attending', '2024-08-17 21:27:08', '2025-12-17 19:46:32', 'dN9EV6G4', '7324080'), + (60182, 625, 2696, 'not_attending', '2024-08-17 21:27:14', '2025-12-17 19:46:32', 'dN9EV6G4', '7324081'), + (60183, 625, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dN9EV6G4', '7324082'), + (60184, 625, 2698, 'not_attending', '2024-09-07 03:18:52', '2025-12-17 19:46:24', 'dN9EV6G4', '7324083'), + (60185, 625, 2699, 'maybe', '2024-06-12 21:10:36', '2025-12-17 19:46:28', 'dN9EV6G4', '7324385'), + (60186, 625, 2701, 'maybe', '2024-06-20 02:19:08', '2025-12-17 19:46:29', 'dN9EV6G4', '7324391'), + (60187, 625, 2706, 'maybe', '2024-06-18 15:37:11', '2025-12-17 19:46:28', 'dN9EV6G4', '7324947'), + (60188, 625, 2707, 'not_attending', '2024-06-13 20:17:21', '2025-12-17 19:46:28', 'dN9EV6G4', '7324952'), + (60189, 625, 2719, 'not_attending', '2024-06-18 20:47:19', '2025-12-17 19:46:29', 'dN9EV6G4', '7331305'), + (60190, 625, 2722, 'not_attending', '2024-07-05 20:25:00', '2025-12-17 19:46:29', 'dN9EV6G4', '7331457'), + (60191, 625, 2726, 'attending', '2024-06-19 19:18:18', '2025-12-17 19:46:29', 'dN9EV6G4', '7332853'), + (60192, 625, 2738, 'not_attending', '2024-07-04 11:58:58', '2025-12-17 19:46:29', 'dN9EV6G4', '7344085'), + (60193, 625, 2743, 'not_attending', '2024-07-04 11:58:54', '2025-12-17 19:46:29', 'dN9EV6G4', '7345688'), + (60194, 625, 2745, 'not_attending', '2024-07-23 01:35:23', '2025-12-17 19:46:30', 'dN9EV6G4', '7348712'), + (60195, 625, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dN9EV6G4', '7356752'), + (60196, 625, 2764, 'not_attending', '2024-07-23 01:35:28', '2025-12-17 19:46:30', 'dN9EV6G4', '7363595'), + (60197, 625, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dN9EV6G4', '7363643'), + (60198, 625, 2772, 'not_attending', '2024-07-23 01:35:12', '2025-12-17 19:46:30', 'dN9EV6G4', '7368267'), + (60199, 625, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dN9EV6G4', '7368606'), + (60200, 625, 2781, 'not_attending', '2024-07-25 21:16:33', '2025-12-17 19:46:30', 'dN9EV6G4', '7373194'), + (60201, 625, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dN9EV6G4', '7397462'), + (60202, 625, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dN9EV6G4', '7424275'), + (60203, 625, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dN9EV6G4', '7424276'), + (60204, 625, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dN9EV6G4', '7432751'), + (60205, 625, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dN9EV6G4', '7432752'), + (60206, 625, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dN9EV6G4', '7432753'), + (60207, 625, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dN9EV6G4', '7432754'), + (60208, 625, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dN9EV6G4', '7432755'), + (60209, 625, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dN9EV6G4', '7432756'), + (60210, 625, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dN9EV6G4', '7432758'), + (60211, 625, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dN9EV6G4', '7432759'), + (60212, 625, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dN9EV6G4', '7433834'), + (60213, 625, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dN9EV6G4', '7470197'), + (60214, 625, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dN9EV6G4', '7685613'), + (60215, 625, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dN9EV6G4', '7688194'), + (60216, 625, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dN9EV6G4', '7688196'), + (60217, 625, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dN9EV6G4', '7688289'), + (60218, 625, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dN9EV6G4', '7825913'), + (60219, 625, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dN9EV6G4', '7826209'), + (60220, 625, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dN9EV6G4', '7834742'), + (60221, 625, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dN9EV6G4', '7842108'), + (60222, 625, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dN9EV6G4', '7842902'), + (60223, 625, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dN9EV6G4', '7842903'), + (60224, 625, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dN9EV6G4', '7842904'), + (60225, 625, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dN9EV6G4', '7842905'), + (60226, 625, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dN9EV6G4', '7855719'), + (60227, 625, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dN9EV6G4', '7860683'), + (60228, 625, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dN9EV6G4', '7860684'), + (60229, 625, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dN9EV6G4', '7866095'), + (60230, 625, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dN9EV6G4', '7869170'), + (60231, 625, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dN9EV6G4', '7869188'), + (60232, 625, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dN9EV6G4', '7869201'), + (60233, 625, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dN9EV6G4', '7877465'), + (60234, 625, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dN9EV6G4', '7888250'), + (60235, 625, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'dN9EV6G4', '7904777'), + (60236, 625, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dN9EV6G4', '8349164'), + (60237, 625, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dN9EV6G4', '8349545'), + (60238, 625, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dN9EV6G4', '8368028'), + (60239, 625, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dN9EV6G4', '8368029'), + (60240, 625, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'dN9EV6G4', '8388462'), + (60241, 625, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'dN9EV6G4', '8400273'), + (60242, 625, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'dN9EV6G4', '8400275'), + (60243, 625, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'dN9EV6G4', '8400276'), + (60244, 625, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'dN9EV6G4', '8404977'), + (60245, 625, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'dN9EV6G4', '8430783'), + (60246, 625, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'dN9EV6G4', '8430784'), + (60247, 625, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'dN9EV6G4', '8430799'), + (60248, 625, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'dN9EV6G4', '8430800'), + (60249, 625, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'dN9EV6G4', '8430801'), + (60250, 625, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'dN9EV6G4', '8438709'), + (60251, 625, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'dN9EV6G4', '8457738'), + (60252, 625, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'dN9EV6G4', '8459566'), + (60253, 625, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'dN9EV6G4', '8459567'), + (60254, 625, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'dN9EV6G4', '8461032'), + (60255, 625, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'dN9EV6G4', '8477877'), + (60256, 625, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'dN9EV6G4', '8485688'), + (60257, 625, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'dN9EV6G4', '8490587'), + (60258, 625, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'dN9EV6G4', '8493552'), + (60259, 625, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'dN9EV6G4', '8493553'), + (60260, 625, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'dN9EV6G4', '8493554'), + (60261, 625, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'dN9EV6G4', '8493555'), + (60262, 625, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'dN9EV6G4', '8493556'), + (60263, 625, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'dN9EV6G4', '8493557'), + (60264, 625, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'dN9EV6G4', '8493558'), + (60265, 625, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'dN9EV6G4', '8493559'), + (60266, 625, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'dN9EV6G4', '8493560'), + (60267, 625, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'dN9EV6G4', '8493561'), + (60268, 625, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'dN9EV6G4', '8493572'), + (60269, 625, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'dN9EV6G4', '8540725'), + (60270, 625, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'dN9EV6G4', '8555421'), + (60271, 626, 2806, 'attending', '2024-09-18 13:57:39', '2025-12-17 19:46:25', '4oql9XXm', '7404888'), + (60272, 626, 2821, 'attending', '2024-10-07 20:11:00', '2025-12-17 19:46:26', '4oql9XXm', '7424275'), + (60273, 626, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4oql9XXm', '7424276'), + (60274, 626, 2824, 'attending', '2024-09-13 02:41:57', '2025-12-17 19:46:25', '4oql9XXm', '7432751'), + (60275, 626, 2825, 'attending', '2024-09-19 14:52:17', '2025-12-17 19:46:25', '4oql9XXm', '7432752'), + (60276, 626, 2826, 'attending', '2024-09-27 21:58:45', '2025-12-17 19:46:25', '4oql9XXm', '7432753'), + (60277, 626, 2827, 'attending', '2024-10-05 16:24:08', '2025-12-17 19:46:26', '4oql9XXm', '7432754'), + (60278, 626, 2828, 'not_attending', '2024-10-15 17:59:11', '2025-12-17 19:46:26', '4oql9XXm', '7432755'), + (60279, 626, 2829, 'attending', '2024-10-24 03:51:34', '2025-12-17 19:46:26', '4oql9XXm', '7432756'), + (60280, 626, 2830, 'attending', '2024-11-02 15:19:59', '2025-12-17 19:46:26', '4oql9XXm', '7432758'), + (60281, 626, 2831, 'attending', '2024-11-09 20:05:16', '2025-12-17 19:46:26', '4oql9XXm', '7432759'), + (60282, 626, 2833, 'attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '4oql9XXm', '7433834'), + (60283, 626, 2834, 'attending', '2024-09-13 14:22:45', '2025-12-17 19:46:25', '4oql9XXm', '7433852'), + (60284, 626, 2835, 'attending', '2024-09-11 15:09:49', '2025-12-17 19:46:24', '4oql9XXm', '7437354'), + (60285, 626, 2838, 'attending', '2024-09-26 01:52:24', '2025-12-17 19:46:25', '4oql9XXm', '7439182'), + (60286, 626, 2839, 'attending', '2024-09-25 16:02:19', '2025-12-17 19:46:25', '4oql9XXm', '7439262'), + (60287, 626, 2844, 'attending', '2024-09-20 01:50:41', '2025-12-17 19:46:25', '4oql9XXm', '7450233'), + (60288, 626, 2847, 'attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', '4oql9XXm', '7452299'), + (60289, 626, 2849, 'attending', '2024-09-29 15:04:33', '2025-12-17 19:46:25', '4oql9XXm', '7457114'), + (60290, 626, 2850, 'attending', '2024-09-29 15:05:03', '2025-12-17 19:46:25', '4oql9XXm', '7457153'), + (60291, 626, 2855, 'attending', '2024-10-03 22:42:13', '2025-12-17 19:46:26', '4oql9XXm', '7469385'), + (60292, 626, 2856, 'attending', '2024-10-07 20:09:25', '2025-12-17 19:46:26', '4oql9XXm', '7469386'), + (60293, 626, 2858, 'attending', '2024-10-17 21:59:59', '2025-12-17 19:46:26', '4oql9XXm', '7469388'), + (60294, 626, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4oql9XXm', '7470197'), + (60295, 626, 2863, 'maybe', '2024-10-04 15:59:03', '2025-12-17 19:46:26', '4oql9XXm', '7470275'), + (60296, 626, 2868, 'maybe', '2024-10-04 15:59:19', '2025-12-17 19:46:26', '4oql9XXm', '7474506'), + (60297, 626, 2870, 'attending', '2024-10-05 16:23:16', '2025-12-17 19:46:26', '4oql9XXm', '7475068'), + (60298, 626, 2878, 'attending', '2024-10-15 17:58:56', '2025-12-17 19:46:26', '4oql9XXm', '7633857'), + (60299, 626, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4oql9XXm', '7685613'), + (60300, 626, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4oql9XXm', '7688194'), + (60301, 626, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4oql9XXm', '7688196'), + (60302, 626, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4oql9XXm', '7688289'), + (60303, 626, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4oql9XXm', '7692763'), + (60304, 626, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4oql9XXm', '7697552'), + (60305, 626, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4oql9XXm', '7699878'), + (60306, 626, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4oql9XXm', '7704043'), + (60307, 626, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4oql9XXm', '7712467'), + (60308, 626, 2925, 'attending', '2024-12-14 18:07:52', '2025-12-17 19:46:21', '4oql9XXm', '7713584'), + (60309, 626, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4oql9XXm', '7713585'), + (60310, 626, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4oql9XXm', '7713586'), + (60311, 626, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4oql9XXm', '7738518'), + (60312, 626, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4oql9XXm', '7750636'), + (60313, 626, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4oql9XXm', '7796540'), + (60314, 626, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4oql9XXm', '7796541'), + (60315, 626, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4oql9XXm', '7796542'), + (60316, 626, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4oql9XXm', '7825913'), + (60317, 626, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4oql9XXm', '7826209'), + (60318, 626, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4oql9XXm', '7834742'), + (60319, 626, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '4oql9XXm', '7842108'), + (60320, 626, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4oql9XXm', '7842902'), + (60321, 626, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4oql9XXm', '7842903'), + (60322, 626, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4oql9XXm', '7842904'), + (60323, 626, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4oql9XXm', '7842905'), + (60324, 626, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4oql9XXm', '7855719'), + (60325, 626, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4oql9XXm', '7860683'), + (60326, 626, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4oql9XXm', '7860684'), + (60327, 626, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4oql9XXm', '7866095'), + (60328, 626, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4oql9XXm', '7869170'), + (60329, 626, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4oql9XXm', '7869188'), + (60330, 626, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4oql9XXm', '7869201'), + (60331, 626, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4oql9XXm', '7877465'), + (60332, 626, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4oql9XXm', '7878570'), + (60333, 626, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4oql9XXm', '7888250'), + (60334, 626, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4oql9XXm', '7904777'), + (60335, 626, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4oql9XXm', '8349164'), + (60336, 626, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4oql9XXm', '8349545'), + (60337, 626, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4oql9XXm', '8353584'), + (60338, 626, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4oql9XXm', '8368028'), + (60339, 626, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4oql9XXm', '8368029'), + (60340, 626, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4oql9XXm', '8388462'), + (60341, 626, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4oql9XXm', '8400273'), + (60342, 626, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '4oql9XXm', '8400274'), + (60343, 626, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4oql9XXm', '8400275'), + (60344, 626, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '4oql9XXm', '8400276'), + (60345, 626, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4oql9XXm', '8404977'), + (60346, 626, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '4oql9XXm', '8430783'), + (60347, 626, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4oql9XXm', '8430784'), + (60348, 626, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4oql9XXm', '8430799'), + (60349, 626, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4oql9XXm', '8430800'), + (60350, 626, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4oql9XXm', '8430801'), + (60351, 626, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4oql9XXm', '8438709'), + (60352, 626, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4oql9XXm', '8457738'), + (60353, 626, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4oql9XXm', '8459566'), + (60354, 626, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4oql9XXm', '8459567'), + (60355, 626, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4oql9XXm', '8461032'), + (60356, 626, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4oql9XXm', '8477877'), + (60357, 626, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4oql9XXm', '8485688'), + (60358, 627, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVgwNzrm', '5880942'), + (60359, 627, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVgwNzrm', '5880943'), + (60360, 627, 1885, 'attending', '2023-02-24 05:38:11', '2025-12-17 19:47:08', 'dVgwNzrm', '5899928'), + (60361, 627, 1888, 'attending', '2023-02-16 04:21:17', '2025-12-17 19:47:07', 'dVgwNzrm', '5900197'), + (60362, 627, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVgwNzrm', '5900200'), + (60363, 627, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVgwNzrm', '5900202'), + (60364, 627, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVgwNzrm', '5900203'), + (60365, 627, 1908, 'attending', '2023-02-16 04:20:27', '2025-12-17 19:47:07', 'dVgwNzrm', '5905018'), + (60366, 627, 1912, 'attending', '2023-02-16 04:21:26', '2025-12-17 19:47:07', 'dVgwNzrm', '5909808'), + (60367, 627, 1915, 'attending', '2023-02-15 03:44:16', '2025-12-17 19:47:07', 'dVgwNzrm', '5910522'), + (60368, 627, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'dVgwNzrm', '5910526'), + (60369, 627, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dVgwNzrm', '5910528'), + (60370, 627, 1922, 'attending', '2023-02-16 23:30:40', '2025-12-17 19:47:07', 'dVgwNzrm', '5916219'), + (60371, 627, 1924, 'attending', '2023-02-16 23:31:03', '2025-12-17 19:47:07', 'dVgwNzrm', '5931095'), + (60372, 627, 1928, 'not_attending', '2023-02-18 04:50:34', '2025-12-17 19:47:07', 'dVgwNzrm', '5932627'), + (60373, 627, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVgwNzrm', '5936234'), + (60374, 627, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVgwNzrm', '5958351'), + (60375, 627, 1936, 'not_attending', '2023-02-27 04:40:11', '2025-12-17 19:47:08', 'dVgwNzrm', '5959397'), + (60376, 627, 1938, 'attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVgwNzrm', '5959751'), + (60377, 627, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVgwNzrm', '5959755'), + (60378, 627, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVgwNzrm', '5960055'), + (60379, 627, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dVgwNzrm', '5961684'), + (60380, 627, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dVgwNzrm', '5962132'), + (60381, 627, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVgwNzrm', '5962133'), + (60382, 627, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVgwNzrm', '5962134'), + (60383, 627, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVgwNzrm', '5962317'), + (60384, 627, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVgwNzrm', '5962318'), + (60385, 627, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVgwNzrm', '5965933'), + (60386, 627, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVgwNzrm', '5967014'), + (60387, 627, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVgwNzrm', '5972815'), + (60388, 627, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVgwNzrm', '5974016'), + (60389, 627, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVgwNzrm', '5981515'), + (60390, 627, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVgwNzrm', '5993516'), + (60391, 627, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVgwNzrm', '5998939'), + (60392, 627, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVgwNzrm', '6028191'), + (60393, 627, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVgwNzrm', '6040066'), + (60394, 627, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVgwNzrm', '6042717'), + (60395, 627, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVgwNzrm', '6044838'), + (60396, 627, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVgwNzrm', '6044839'), + (60397, 627, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVgwNzrm', '6045684'), + (60398, 627, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVgwNzrm', '6050104'), + (60399, 627, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVgwNzrm', '6053195'), + (60400, 627, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVgwNzrm', '6053198'), + (60401, 627, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVgwNzrm', '6056085'), + (60402, 627, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVgwNzrm', '6056916'), + (60403, 627, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVgwNzrm', '6059290'), + (60404, 627, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVgwNzrm', '6060328'), + (60405, 627, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVgwNzrm', '6061037'), + (60406, 627, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVgwNzrm', '6061039'), + (60407, 627, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVgwNzrm', '6067245'), + (60408, 627, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVgwNzrm', '6068094'), + (60409, 627, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVgwNzrm', '6068252'), + (60410, 627, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVgwNzrm', '6068253'), + (60411, 627, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVgwNzrm', '6068254'), + (60412, 627, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVgwNzrm', '6068280'), + (60413, 627, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVgwNzrm', '6069093'), + (60414, 627, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVgwNzrm', '6072528'), + (60415, 627, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVgwNzrm', '6079840'), + (60416, 627, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVgwNzrm', '6083398'), + (60417, 627, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVgwNzrm', '6093504'), + (60418, 627, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVgwNzrm', '6097414'), + (60419, 627, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVgwNzrm', '6097442'), + (60420, 627, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVgwNzrm', '6097684'), + (60421, 627, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVgwNzrm', '6098762'), + (60422, 627, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVgwNzrm', '6101362'), + (60423, 627, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVgwNzrm', '6103752'), + (60424, 627, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVgwNzrm', '6107314'), + (60425, 628, 10, 'not_attending', '2020-03-28 21:45:08', '2025-12-17 19:47:56', 'nm687ZR4', '2958053'), + (60426, 628, 27, 'not_attending', '2020-04-21 21:38:51', '2025-12-17 19:47:57', 'nm687ZR4', '2958083'), + (60427, 628, 29, 'not_attending', '2020-03-23 13:21:36', '2025-12-17 19:47:56', 'nm687ZR4', '2961309'), + (60428, 628, 30, 'not_attending', '2020-03-23 16:40:57', '2025-12-17 19:47:57', 'nm687ZR4', '2961895'), + (60429, 628, 32, 'attending', '2020-03-31 22:32:00', '2025-12-17 19:47:56', 'nm687ZR4', '2963931'), + (60430, 628, 36, 'not_attending', '2020-03-29 01:47:24', '2025-12-17 19:47:57', 'nm687ZR4', '2969208'), + (60431, 628, 40, 'attending', '2020-04-10 22:03:08', '2025-12-17 19:47:57', 'nm687ZR4', '2970718'), + (60432, 628, 41, 'attending', '2020-04-10 22:02:42', '2025-12-17 19:47:57', 'nm687ZR4', '2971546'), + (60433, 628, 43, 'attending', '2020-04-20 00:21:09', '2025-12-17 19:47:57', 'nm687ZR4', '2974519'), + (60434, 628, 44, 'attending', '2020-04-13 22:56:30', '2025-12-17 19:47:57', 'nm687ZR4', '2974534'), + (60435, 628, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', 'nm687ZR4', '2974955'), + (60436, 628, 51, 'not_attending', '2020-06-29 21:56:59', '2025-12-17 19:47:55', 'nm687ZR4', '2975276'), + (60437, 628, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'nm687ZR4', '2975384'), + (60438, 628, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'nm687ZR4', '2975385'), + (60439, 628, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'nm687ZR4', '2976575'), + (60440, 628, 58, 'not_attending', '2020-04-21 21:38:49', '2025-12-17 19:47:57', 'nm687ZR4', '2977127'), + (60441, 628, 59, 'attending', '2020-05-05 22:58:03', '2025-12-17 19:47:57', 'nm687ZR4', '2977128'), + (60442, 628, 61, 'not_attending', '2020-04-10 22:03:25', '2025-12-17 19:47:57', 'nm687ZR4', '2977130'), + (60443, 628, 69, 'not_attending', '2020-06-29 21:57:02', '2025-12-17 19:47:55', 'nm687ZR4', '2977138'), + (60444, 628, 70, 'attending', '2020-04-10 20:53:48', '2025-12-17 19:47:57', 'nm687ZR4', '2977343'), + (60445, 628, 71, 'not_attending', '2020-04-10 22:03:28', '2025-12-17 19:47:57', 'nm687ZR4', '2977526'), + (60446, 628, 72, 'maybe', '2020-05-07 00:10:35', '2025-12-17 19:47:57', 'nm687ZR4', '2977812'), + (60447, 628, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'nm687ZR4', '2977931'), + (60448, 628, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', 'nm687ZR4', '2978244'), + (60449, 628, 75, 'not_attending', '2020-04-19 19:31:11', '2025-12-17 19:47:57', 'nm687ZR4', '2978245'), + (60450, 628, 76, 'attending', '2020-05-02 21:17:40', '2025-12-17 19:47:57', 'nm687ZR4', '2978246'), + (60451, 628, 77, 'attending', '2020-05-04 22:52:51', '2025-12-17 19:47:57', 'nm687ZR4', '2978247'), + (60452, 628, 78, 'attending', '2020-05-17 19:33:55', '2025-12-17 19:47:57', 'nm687ZR4', '2978249'), + (60453, 628, 79, 'attending', '2020-05-26 22:52:13', '2025-12-17 19:47:57', 'nm687ZR4', '2978250'), + (60454, 628, 81, 'attending', '2020-06-07 05:03:10', '2025-12-17 19:47:58', 'nm687ZR4', '2978252'), + (60455, 628, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'nm687ZR4', '2978433'), + (60456, 628, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'nm687ZR4', '2978438'), + (60457, 628, 84, 'not_attending', '2020-04-21 21:39:17', '2025-12-17 19:47:57', 'nm687ZR4', '2980871'), + (60458, 628, 85, 'not_attending', '2020-04-22 23:51:27', '2025-12-17 19:47:57', 'nm687ZR4', '2980872'), + (60459, 628, 86, 'attending', '2020-04-15 22:18:11', '2025-12-17 19:47:57', 'nm687ZR4', '2981388'), + (60460, 628, 89, 'not_attending', '2020-05-02 21:17:42', '2025-12-17 19:47:57', 'nm687ZR4', '2982604'), + (60461, 628, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'nm687ZR4', '2986743'), + (60462, 628, 95, 'attending', '2020-04-23 00:47:02', '2025-12-17 19:47:57', 'nm687ZR4', '2987452'), + (60463, 628, 98, 'attending', '2020-05-17 19:33:49', '2025-12-17 19:47:57', 'nm687ZR4', '2987455'), + (60464, 628, 99, 'attending', '2020-05-02 21:17:48', '2025-12-17 19:47:57', 'nm687ZR4', '2988545'), + (60465, 628, 101, 'not_attending', '2020-04-23 00:46:35', '2025-12-17 19:47:57', 'nm687ZR4', '2989975'), + (60466, 628, 102, 'not_attending', '2020-04-29 02:25:42', '2025-12-17 19:47:57', 'nm687ZR4', '2990784'), + (60467, 628, 104, 'maybe', '2020-04-25 01:42:54', '2025-12-17 19:47:57', 'nm687ZR4', '2991471'), + (60468, 628, 106, 'attending', '2020-04-28 00:38:09', '2025-12-17 19:47:57', 'nm687ZR4', '2993501'), + (60469, 628, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'nm687ZR4', '2994480'), + (60470, 628, 114, 'attending', '2020-04-29 02:24:56', '2025-12-17 19:47:57', 'nm687ZR4', '2994911'), + (60471, 628, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', 'nm687ZR4', '3001217'), + (60472, 628, 116, 'not_attending', '2020-05-04 23:17:29', '2025-12-17 19:47:57', 'nm687ZR4', '3006242'), + (60473, 628, 121, 'attending', '2020-05-26 22:52:11', '2025-12-17 19:47:57', 'nm687ZR4', '3023063'), + (60474, 628, 130, 'attending', '2020-05-28 23:29:21', '2025-12-17 19:47:57', 'nm687ZR4', '3028781'), + (60475, 628, 132, 'attending', '2020-06-03 22:27:27', '2025-12-17 19:47:58', 'nm687ZR4', '3033648'), + (60476, 628, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'nm687ZR4', '3034321'), + (60477, 628, 136, 'attending', '2020-05-24 20:11:46', '2025-12-17 19:47:57', 'nm687ZR4', '3035881'), + (60478, 628, 139, 'attending', '2020-05-31 03:56:06', '2025-12-17 19:47:58', 'nm687ZR4', '3046190'), + (60479, 628, 140, 'maybe', '2020-05-31 03:57:21', '2025-12-17 19:47:57', 'nm687ZR4', '3046980'), + (60480, 628, 142, 'attending', '2020-06-01 23:22:44', '2025-12-17 19:47:58', 'nm687ZR4', '3049860'), + (60481, 628, 143, 'maybe', '2020-06-07 05:02:51', '2025-12-17 19:47:58', 'nm687ZR4', '3049983'), + (60482, 628, 161, 'not_attending', '2020-10-10 08:04:57', '2025-12-17 19:47:52', 'nm687ZR4', '3058698'), + (60483, 628, 168, 'attending', '2020-06-07 05:03:21', '2025-12-17 19:47:58', 'nm687ZR4', '3058740'), + (60484, 628, 170, 'attending', '2020-06-07 05:02:40', '2025-12-17 19:47:58', 'nm687ZR4', '3058742'), + (60485, 628, 172, 'not_attending', '2020-06-14 04:51:25', '2025-12-17 19:47:58', 'nm687ZR4', '3058959'), + (60486, 628, 173, 'maybe', '2020-06-19 00:10:00', '2025-12-17 19:47:58', 'nm687ZR4', '3067093'), + (60487, 628, 174, 'attending', '2020-06-08 22:41:13', '2025-12-17 19:47:58', 'nm687ZR4', '3067927'), + (60488, 628, 175, 'maybe', '2020-06-17 18:49:33', '2025-12-17 19:47:58', 'nm687ZR4', '3068305'), + (60489, 628, 177, 'attending', '2020-06-15 00:48:34', '2025-12-17 19:47:58', 'nm687ZR4', '3073193'), + (60490, 628, 178, 'maybe', '2020-06-15 00:48:16', '2025-12-17 19:47:58', 'nm687ZR4', '3073195'), + (60491, 628, 179, 'maybe', '2020-06-15 00:49:00', '2025-12-17 19:47:58', 'nm687ZR4', '3073687'), + (60492, 628, 181, 'attending', '2020-06-19 21:16:05', '2025-12-17 19:47:58', 'nm687ZR4', '3074513'), + (60493, 628, 183, 'maybe', '2020-06-19 21:16:26', '2025-12-17 19:47:58', 'nm687ZR4', '3075228'), + (60494, 628, 185, 'maybe', '2020-06-19 21:16:20', '2025-12-17 19:47:58', 'nm687ZR4', '3075456'), + (60495, 628, 186, 'maybe', '2020-06-18 20:53:03', '2025-12-17 19:47:55', 'nm687ZR4', '3083791'), + (60496, 628, 187, 'maybe', '2020-06-18 20:52:48', '2025-12-17 19:47:55', 'nm687ZR4', '3085151'), + (60497, 628, 188, 'attending', '2020-06-21 18:38:09', '2025-12-17 19:47:58', 'nm687ZR4', '3086646'), + (60498, 628, 190, 'maybe', '2020-06-29 21:57:05', '2025-12-17 19:47:55', 'nm687ZR4', '3087258'), + (60499, 628, 191, 'attending', '2020-07-02 03:56:50', '2025-12-17 19:47:55', 'nm687ZR4', '3087259'), + (60500, 628, 192, 'attending', '2020-07-15 18:26:20', '2025-12-17 19:47:55', 'nm687ZR4', '3087260'), + (60501, 628, 193, 'not_attending', '2020-07-23 00:21:33', '2025-12-17 19:47:55', 'nm687ZR4', '3087261'), + (60502, 628, 194, 'attending', '2020-07-23 00:21:42', '2025-12-17 19:47:55', 'nm687ZR4', '3087262'), + (60503, 628, 196, 'attending', '2020-08-13 02:51:29', '2025-12-17 19:47:56', 'nm687ZR4', '3087265'), + (60504, 628, 197, 'attending', '2020-08-13 02:53:10', '2025-12-17 19:47:56', 'nm687ZR4', '3087266'), + (60505, 628, 198, 'attending', '2020-08-13 02:52:59', '2025-12-17 19:47:56', 'nm687ZR4', '3087267'), + (60506, 628, 199, 'attending', '2020-09-05 21:07:38', '2025-12-17 19:47:56', 'nm687ZR4', '3087268'), + (60507, 628, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'nm687ZR4', '3088653'), + (60508, 628, 202, 'maybe', '2020-06-29 21:57:04', '2025-12-17 19:47:55', 'nm687ZR4', '3090353'), + (60509, 628, 204, 'attending', '2020-06-29 20:48:27', '2025-12-17 19:47:55', 'nm687ZR4', '3102758'), + (60510, 628, 209, 'not_attending', '2020-06-29 21:56:58', '2025-12-17 19:47:55', 'nm687ZR4', '3106813'), + (60511, 628, 212, 'attending', '2020-07-08 00:59:45', '2025-12-17 19:47:55', 'nm687ZR4', '3118517'), + (60512, 628, 217, 'attending', '2020-07-14 01:00:19', '2025-12-17 19:47:55', 'nm687ZR4', '3126684'), + (60513, 628, 219, 'attending', '2020-08-20 22:56:46', '2025-12-17 19:47:56', 'nm687ZR4', '3129263'), + (60514, 628, 223, 'attending', '2020-09-05 21:07:45', '2025-12-17 19:47:56', 'nm687ZR4', '3129980'), + (60515, 628, 226, 'maybe', '2020-07-13 21:42:35', '2025-12-17 19:47:55', 'nm687ZR4', '3132817'), + (60516, 628, 227, 'maybe', '2020-07-13 21:42:28', '2025-12-17 19:47:55', 'nm687ZR4', '3132820'), + (60517, 628, 228, 'attending', '2020-07-13 21:42:48', '2025-12-17 19:47:55', 'nm687ZR4', '3132821'), + (60518, 628, 233, 'attending', '2020-07-21 23:45:25', '2025-12-17 19:47:55', 'nm687ZR4', '3139773'), + (60519, 628, 269, 'attending', '2020-07-29 03:34:43', '2025-12-17 19:47:55', 'nm687ZR4', '3153076'), + (60520, 628, 271, 'maybe', '2020-07-31 04:33:34', '2025-12-17 19:47:56', 'nm687ZR4', '3155321'), + (60521, 628, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'nm687ZR4', '3162006'), + (60522, 628, 275, 'attending', '2020-08-03 20:18:05', '2025-12-17 19:47:56', 'nm687ZR4', '3163405'), + (60523, 628, 277, 'not_attending', '2020-08-03 21:16:28', '2025-12-17 19:47:56', 'nm687ZR4', '3163442'), + (60524, 628, 279, 'not_attending', '2020-08-14 18:52:58', '2025-12-17 19:47:56', 'nm687ZR4', '3165202'), + (60525, 628, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'nm687ZR4', '3169555'), + (60526, 628, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', 'nm687ZR4', '3169556'), + (60527, 628, 288, 'not_attending', '2020-09-01 22:35:42', '2025-12-17 19:47:56', 'nm687ZR4', '3170249'), + (60528, 628, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'nm687ZR4', '3172832'), + (60529, 628, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'nm687ZR4', '3172833'), + (60530, 628, 295, 'not_attending', '2020-09-01 22:35:37', '2025-12-17 19:47:56', 'nm687ZR4', '3172834'), + (60531, 628, 296, 'maybe', '2020-08-13 02:51:53', '2025-12-17 19:47:56', 'nm687ZR4', '3172876'), + (60532, 628, 302, 'attending', '2020-08-16 04:04:52', '2025-12-17 19:47:56', 'nm687ZR4', '3178028'), + (60533, 628, 308, 'maybe', '2020-09-01 22:35:56', '2025-12-17 19:47:56', 'nm687ZR4', '3183341'), + (60534, 628, 311, 'attending', '2020-09-05 21:07:55', '2025-12-17 19:47:56', 'nm687ZR4', '3186057'), + (60535, 628, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'nm687ZR4', '3191735'), + (60536, 628, 318, 'maybe', '2020-08-29 22:58:03', '2025-12-17 19:47:56', 'nm687ZR4', '3193885'), + (60537, 628, 319, 'maybe', '2020-08-31 22:18:52', '2025-12-17 19:47:56', 'nm687ZR4', '3194179'), + (60538, 628, 320, 'maybe', '2020-09-01 22:35:52', '2025-12-17 19:47:56', 'nm687ZR4', '3195552'), + (60539, 628, 325, 'not_attending', '2020-09-22 02:59:07', '2025-12-17 19:47:51', 'nm687ZR4', '3197083'), + (60540, 628, 335, 'not_attending', '2020-09-01 22:35:21', '2025-12-17 19:47:56', 'nm687ZR4', '3200209'), + (60541, 628, 336, 'maybe', '2020-09-15 23:31:22', '2025-12-17 19:47:56', 'nm687ZR4', '3200495'), + (60542, 628, 343, 'not_attending', '2020-09-22 02:59:01', '2025-12-17 19:47:56', 'nm687ZR4', '3206759'), + (60543, 628, 352, 'not_attending', '2020-09-13 21:05:53', '2025-12-17 19:47:56', 'nm687ZR4', '3210514'), + (60544, 628, 354, 'attending', '2020-09-18 03:58:27', '2025-12-17 19:47:56', 'nm687ZR4', '3212570'), + (60545, 628, 355, 'attending', '2020-09-16 23:53:42', '2025-12-17 19:47:56', 'nm687ZR4', '3212571'), + (60546, 628, 356, 'attending', '2020-09-18 03:58:32', '2025-12-17 19:47:51', 'nm687ZR4', '3212572'), + (60547, 628, 357, 'maybe', '2020-09-29 22:07:17', '2025-12-17 19:47:52', 'nm687ZR4', '3212573'), + (60548, 628, 360, 'attending', '2020-09-14 13:52:09', '2025-12-17 19:47:56', 'nm687ZR4', '3212671'), + (60549, 628, 362, 'attending', '2020-09-26 21:54:25', '2025-12-17 19:47:52', 'nm687ZR4', '3214207'), + (60550, 628, 363, 'not_attending', '2020-09-16 23:53:57', '2025-12-17 19:47:52', 'nm687ZR4', '3217037'), + (60551, 628, 364, 'attending', '2020-09-18 23:11:39', '2025-12-17 19:47:56', 'nm687ZR4', '3217106'), + (60552, 628, 365, 'not_attending', '2020-09-18 03:56:22', '2025-12-17 19:47:51', 'nm687ZR4', '3218510'), + (60553, 628, 368, 'not_attending', '2020-10-02 01:16:25', '2025-12-17 19:47:52', 'nm687ZR4', '3221403'), + (60554, 628, 376, 'maybe', '2020-09-29 22:08:09', '2025-12-17 19:47:52', 'nm687ZR4', '3222827'), + (60555, 628, 377, 'not_attending', '2020-10-29 23:46:29', '2025-12-17 19:47:53', 'nm687ZR4', '3222828'), + (60556, 628, 378, 'attending', '2020-09-23 17:41:28', '2025-12-17 19:47:52', 'nm687ZR4', '3223725'), + (60557, 628, 385, 'maybe', '2020-10-03 22:50:15', '2025-12-17 19:47:52', 'nm687ZR4', '3228698'), + (60558, 628, 386, 'maybe', '2020-10-10 21:50:22', '2025-12-17 19:47:52', 'nm687ZR4', '3228699'), + (60559, 628, 387, 'maybe', '2020-10-17 21:46:04', '2025-12-17 19:47:52', 'nm687ZR4', '3228700'), + (60560, 628, 388, 'not_attending', '2020-10-24 02:10:41', '2025-12-17 19:47:52', 'nm687ZR4', '3228701'), + (60561, 628, 424, 'maybe', '2020-10-12 00:57:14', '2025-12-17 19:47:52', 'nm687ZR4', '3245751'), + (60562, 628, 426, 'maybe', '2020-10-16 20:05:33', '2025-12-17 19:47:52', 'nm687ZR4', '3250232'), + (60563, 628, 432, 'not_attending', '2020-11-04 14:50:10', '2025-12-17 19:47:53', 'nm687ZR4', '3254416'), + (60564, 628, 433, 'not_attending', '2020-11-04 14:50:15', '2025-12-17 19:47:53', 'nm687ZR4', '3254417'), + (60565, 628, 438, 'not_attending', '2020-10-31 04:55:51', '2025-12-17 19:47:53', 'nm687ZR4', '3256163'), + (60566, 628, 440, 'not_attending', '2020-10-24 01:34:13', '2025-12-17 19:47:53', 'nm687ZR4', '3256168'), + (60567, 628, 441, 'not_attending', '2020-12-06 22:28:59', '2025-12-17 19:47:54', 'nm687ZR4', '3256169'), + (60568, 628, 443, 'not_attending', '2020-10-24 01:34:11', '2025-12-17 19:47:53', 'nm687ZR4', '3263578'), + (60569, 628, 445, 'not_attending', '2020-11-04 14:50:32', '2025-12-17 19:47:54', 'nm687ZR4', '3266138'), + (60570, 628, 456, 'not_attending', '2020-11-08 23:40:13', '2025-12-17 19:47:54', 'nm687ZR4', '3276428'), + (60571, 628, 457, 'not_attending', '2020-11-07 16:51:42', '2025-12-17 19:47:53', 'nm687ZR4', '3279087'), + (60572, 628, 459, 'not_attending', '2020-11-08 23:40:11', '2025-12-17 19:47:54', 'nm687ZR4', '3281467'), + (60573, 628, 462, 'not_attending', '2020-11-08 23:40:09', '2025-12-17 19:47:54', 'nm687ZR4', '3281470'), + (60574, 628, 463, 'not_attending', '2020-11-14 00:23:35', '2025-12-17 19:47:54', 'nm687ZR4', '3281553'), + (60575, 628, 466, 'not_attending', '2020-11-08 23:40:07', '2025-12-17 19:47:54', 'nm687ZR4', '3281829'), + (60576, 628, 468, 'maybe', '2020-11-14 00:24:26', '2025-12-17 19:47:54', 'nm687ZR4', '3285413'), + (60577, 628, 469, 'not_attending', '2020-12-06 22:28:54', '2025-12-17 19:47:54', 'nm687ZR4', '3285414'), + (60578, 628, 470, 'not_attending', '2020-11-14 00:24:11', '2025-12-17 19:47:54', 'nm687ZR4', '3285443'), + (60579, 628, 473, 'not_attending', '2020-11-14 00:24:01', '2025-12-17 19:47:54', 'nm687ZR4', '3286569'), + (60580, 628, 481, 'not_attending', '2020-12-06 22:28:47', '2025-12-17 19:47:54', 'nm687ZR4', '3297764'), + (60581, 628, 493, 'not_attending', '2020-12-06 22:28:41', '2025-12-17 19:47:54', 'nm687ZR4', '3313856'), + (60582, 628, 499, 'not_attending', '2020-12-06 22:28:35', '2025-12-17 19:47:55', 'nm687ZR4', '3314909'), + (60583, 628, 500, 'not_attending', '2021-01-02 21:55:34', '2025-12-17 19:47:55', 'nm687ZR4', '3314964'), + (60584, 628, 502, 'not_attending', '2021-01-02 21:55:27', '2025-12-17 19:47:55', 'nm687ZR4', '3323365'), + (60585, 628, 513, 'not_attending', '2021-01-02 21:55:18', '2025-12-17 19:47:55', 'nm687ZR4', '3329383'), + (60586, 628, 526, 'not_attending', '2021-01-02 21:55:10', '2025-12-17 19:47:48', 'nm687ZR4', '3351539'), + (60587, 628, 530, 'not_attending', '2021-01-02 21:55:45', '2025-12-17 19:47:48', 'nm687ZR4', '3373923'), + (60588, 628, 536, 'not_attending', '2021-01-09 03:53:51', '2025-12-17 19:47:48', 'nm687ZR4', '3386848'), + (60589, 628, 540, 'not_attending', '2021-01-09 03:53:49', '2025-12-17 19:47:48', 'nm687ZR4', '3389527'), + (60590, 628, 543, 'not_attending', '2021-01-21 23:55:43', '2025-12-17 19:47:48', 'nm687ZR4', '3396499'), + (60591, 628, 548, 'not_attending', '2021-01-16 21:27:17', '2025-12-17 19:47:48', 'nm687ZR4', '3403650'), + (60592, 628, 549, 'not_attending', '2021-01-21 23:55:22', '2025-12-17 19:47:49', 'nm687ZR4', '3406988'), + (60593, 628, 554, 'not_attending', '2021-01-21 23:55:19', '2025-12-17 19:47:49', 'nm687ZR4', '3408338'), + (60594, 628, 555, 'not_attending', '2021-01-21 23:55:26', '2025-12-17 19:47:49', 'nm687ZR4', '3416576'), + (60595, 628, 568, 'not_attending', '2021-02-07 01:42:07', '2025-12-17 19:47:50', 'nm687ZR4', '3430267'), + (60596, 628, 579, 'not_attending', '2021-02-07 01:42:20', '2025-12-17 19:47:50', 'nm687ZR4', '3440978'), + (60597, 628, 602, 'not_attending', '2021-03-27 22:40:09', '2025-12-17 19:47:50', 'nm687ZR4', '3470303'), + (60598, 628, 604, 'not_attending', '2021-03-27 22:40:16', '2025-12-17 19:47:50', 'nm687ZR4', '3470305'), + (60599, 628, 605, 'not_attending', '2021-02-08 20:28:13', '2025-12-17 19:47:50', 'nm687ZR4', '3470991'), + (60600, 628, 621, 'not_attending', '2021-03-27 22:40:21', '2025-12-17 19:47:51', 'nm687ZR4', '3517815'), + (60601, 628, 622, 'not_attending', '2021-03-27 22:40:39', '2025-12-17 19:47:51', 'nm687ZR4', '3517816'), + (60602, 628, 623, 'not_attending', '2021-03-27 22:40:47', '2025-12-17 19:47:51', 'nm687ZR4', '3523941'), + (60603, 628, 631, 'not_attending', '2021-03-27 22:40:54', '2025-12-17 19:47:51', 'nm687ZR4', '3533850'), + (60604, 628, 638, 'not_attending', '2021-03-27 22:41:10', '2025-12-17 19:47:44', 'nm687ZR4', '3536632'), + (60605, 628, 639, 'not_attending', '2021-03-27 22:41:17', '2025-12-17 19:47:51', 'nm687ZR4', '3536656'), + (60606, 628, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'nm687ZR4', '3539916'), + (60607, 628, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'nm687ZR4', '3539917'), + (60608, 628, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'nm687ZR4', '3539918'), + (60609, 628, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'nm687ZR4', '3539919'), + (60610, 628, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'nm687ZR4', '3539920'), + (60611, 628, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'nm687ZR4', '3539921'), + (60612, 628, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'nm687ZR4', '3539922'), + (60613, 628, 648, 'not_attending', '2021-03-27 22:39:54', '2025-12-17 19:47:47', 'nm687ZR4', '3539923'), + (60614, 628, 649, 'not_attending', '2021-03-27 22:39:45', '2025-12-17 19:47:51', 'nm687ZR4', '3539927'), + (60615, 628, 650, 'not_attending', '2021-03-27 22:39:14', '2025-12-17 19:47:44', 'nm687ZR4', '3539928'), + (60616, 628, 706, 'not_attending', '2021-03-27 22:39:27', '2025-12-17 19:47:45', 'nm687ZR4', '3582734'), + (60617, 628, 717, 'not_attending', '2021-03-27 22:39:08', '2025-12-17 19:47:44', 'nm687ZR4', '3619523'), + (60618, 628, 718, 'not_attending', '2021-03-27 22:39:21', '2025-12-17 19:47:44', 'nm687ZR4', '3626844'), + (60619, 628, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nm687ZR4', '4356801'), + (60620, 628, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'nm687ZR4', '4366187'), + (60621, 628, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'nm687ZR4', '4420735'), + (60622, 628, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nm687ZR4', '4420738'), + (60623, 628, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nm687ZR4', '4420739'), + (60624, 628, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm687ZR4', '4420741'), + (60625, 628, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nm687ZR4', '4420744'), + (60626, 628, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nm687ZR4', '4420747'), + (60627, 628, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nm687ZR4', '4420748'), + (60628, 628, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nm687ZR4', '4420749'), + (60629, 628, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nm687ZR4', '4461883'), + (60630, 628, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nm687ZR4', '4508342'), + (60631, 628, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:34', 'nm687ZR4', '4568602'), + (60632, 628, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nm687ZR4', '4572153'), + (60633, 628, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'nm687ZR4', '4585962'), + (60634, 628, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'nm687ZR4', '4596356'), + (60635, 628, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nm687ZR4', '4598860'), + (60636, 628, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'nm687ZR4', '4598861'), + (60637, 628, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'nm687ZR4', '4602797'), + (60638, 628, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'nm687ZR4', '4637896'), + (60639, 628, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nm687ZR4', '4642994'), + (60640, 628, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'nm687ZR4', '4642995'), + (60641, 628, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'nm687ZR4', '4642996'), + (60642, 628, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'nm687ZR4', '4642997'), + (60643, 628, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'nm687ZR4', '4645687'), + (60644, 628, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nm687ZR4', '4645698'), + (60645, 628, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'nm687ZR4', '4645704'), + (60646, 628, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'nm687ZR4', '4645705'), + (60647, 628, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nm687ZR4', '4668385'), + (60648, 628, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nm687ZR4', '4694407'), + (60649, 628, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm687ZR4', '4736497'), + (60650, 628, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nm687ZR4', '4736499'), + (60651, 628, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm687ZR4', '4736500'), + (60652, 628, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nm687ZR4', '4736503'), + (60653, 628, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nm687ZR4', '4736504'), + (60654, 628, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nm687ZR4', '4746789'), + (60655, 628, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'nm687ZR4', '4753929'), + (60656, 628, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nm687ZR4', '5038850'), + (60657, 628, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nm687ZR4', '5045826'), + (60658, 628, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm687ZR4', '5132533'), + (60659, 628, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'nm687ZR4', '5186582'), + (60660, 628, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nm687ZR4', '5186583'), + (60661, 628, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nm687ZR4', '5186585'), + (60662, 628, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'nm687ZR4', '5190437'), + (60663, 628, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nm687ZR4', '5195095'), + (60664, 628, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm687ZR4', '5215989'), + (60665, 628, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm687ZR4', '5223686'), + (60666, 628, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nm687ZR4', '5247467'), + (60667, 628, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nm687ZR4', '5260800'), + (60668, 628, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nm687ZR4', '5269930'), + (60669, 628, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nm687ZR4', '5271448'), + (60670, 628, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'nm687ZR4', '5271449'), + (60671, 628, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm687ZR4', '5278159'), + (60672, 628, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'nm687ZR4', '5363695'), + (60673, 628, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm687ZR4', '5365960'), + (60674, 628, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm687ZR4', '5378247'), + (60675, 628, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'nm687ZR4', '5389605'), + (60676, 628, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nm687ZR4', '5397265'), + (60677, 628, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm687ZR4', '5404786'), + (60678, 628, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm687ZR4', '5405203'), + (60679, 628, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm687ZR4', '5412550'), + (60680, 628, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm687ZR4', '5415046'), + (60681, 628, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm687ZR4', '5422086'), + (60682, 628, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nm687ZR4', '5422406'), + (60683, 628, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm687ZR4', '5424565'), + (60684, 628, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm687ZR4', '5426882'), + (60685, 628, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm687ZR4', '5441125'), + (60686, 628, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm687ZR4', '5441126'), + (60687, 628, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nm687ZR4', '5441128'), + (60688, 628, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm687ZR4', '5441131'), + (60689, 628, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm687ZR4', '5441132'), + (60690, 628, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm687ZR4', '5453325'), + (60691, 628, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm687ZR4', '5454516'), + (60692, 628, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm687ZR4', '5454605'), + (60693, 628, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm687ZR4', '5455037'), + (60694, 628, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm687ZR4', '5461278'), + (60695, 628, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm687ZR4', '5469480'), + (60696, 628, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm687ZR4', '5474663'), + (60697, 628, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm687ZR4', '5482022'), + (60698, 628, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm687ZR4', '5488912'), + (60699, 628, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm687ZR4', '5492192'), + (60700, 628, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm687ZR4', '5493139'), + (60701, 628, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm687ZR4', '5493200'), + (60702, 628, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm687ZR4', '5502188'), + (60703, 628, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm687ZR4', '5505059'), + (60704, 628, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm687ZR4', '5509055'), + (60705, 628, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm687ZR4', '5512862'), + (60706, 628, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm687ZR4', '5513985'), + (60707, 628, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'nm687ZR4', '5519981'), + (60708, 628, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm687ZR4', '5522550'), + (60709, 628, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm687ZR4', '5534683'), + (60710, 628, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm687ZR4', '5537735'), + (60711, 628, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm687ZR4', '5540859'), + (60712, 628, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm687ZR4', '5546619'), + (60713, 628, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm687ZR4', '5557747'), + (60714, 628, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm687ZR4', '5560255'), + (60715, 628, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm687ZR4', '5562906'), + (60716, 628, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm687ZR4', '5600604'), + (60717, 628, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm687ZR4', '5605544'), + (60718, 628, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm687ZR4', '5630960'), + (60719, 628, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm687ZR4', '5630961'), + (60720, 628, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm687ZR4', '5630962'), + (60721, 628, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm687ZR4', '5630966'), + (60722, 628, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm687ZR4', '5630967'), + (60723, 628, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm687ZR4', '5630968'), + (60724, 628, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm687ZR4', '5635406'), + (60725, 628, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm687ZR4', '5638765'), + (60726, 628, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm687ZR4', '5640097'), + (60727, 628, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm687ZR4', '5640843'), + (60728, 628, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm687ZR4', '5641521'), + (60729, 628, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm687ZR4', '5642818'), + (60730, 628, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm687ZR4', '5652395'), + (60731, 628, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm687ZR4', '5670445'), + (60732, 628, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm687ZR4', '5671637'), + (60733, 628, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm687ZR4', '5672329'), + (60734, 628, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm687ZR4', '5674057'), + (60735, 628, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm687ZR4', '5674060'), + (60736, 628, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm687ZR4', '5677461'), + (60737, 628, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm687ZR4', '5698046'), + (60738, 628, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm687ZR4', '5699760'), + (60739, 628, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm687ZR4', '5741601'), + (60740, 628, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm687ZR4', '5763458'), + (60741, 628, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm687ZR4', '5774172'), + (60742, 628, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'nm687ZR4', '5818247'), + (60743, 628, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm687ZR4', '5819471'), + (60744, 628, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'nm687ZR4', '5827739'), + (60745, 628, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm687ZR4', '5844306'), + (60746, 628, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm687ZR4', '5850159'), + (60747, 628, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm687ZR4', '5858999'), + (60748, 628, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm687ZR4', '5871984'), + (60749, 628, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm687ZR4', '5876354'), + (60750, 628, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm687ZR4', '5880939'), + (60751, 628, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm687ZR4', '5880940'), + (60752, 628, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm687ZR4', '5880942'), + (60753, 628, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm687ZR4', '5880943'), + (60754, 628, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm687ZR4', '5887890'), + (60755, 628, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm687ZR4', '5888598'), + (60756, 628, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm687ZR4', '5893260'), + (60757, 628, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm687ZR4', '5899826'), + (60758, 628, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm687ZR4', '5900199'), + (60759, 628, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm687ZR4', '5900200'), + (60760, 628, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm687ZR4', '5900202'), + (60761, 628, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm687ZR4', '5900203'), + (60762, 628, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm687ZR4', '5901108'), + (60763, 628, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm687ZR4', '5901126'), + (60764, 628, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm687ZR4', '5909655'), + (60765, 628, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm687ZR4', '5910522'), + (60766, 628, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm687ZR4', '5910526'), + (60767, 628, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm687ZR4', '5910528'), + (60768, 628, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm687ZR4', '5916219'), + (60769, 628, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm687ZR4', '5936234'), + (60770, 628, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm687ZR4', '5958351'), + (60771, 628, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm687ZR4', '5959751'), + (60772, 628, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm687ZR4', '5959755'), + (60773, 628, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm687ZR4', '5960055'), + (60774, 628, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm687ZR4', '5961684'), + (60775, 628, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm687ZR4', '5962132'), + (60776, 628, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nm687ZR4', '5962133'), + (60777, 628, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm687ZR4', '5962134'), + (60778, 628, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm687ZR4', '5962317'), + (60779, 628, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm687ZR4', '5962318'), + (60780, 628, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nm687ZR4', '5965933'), + (60781, 628, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm687ZR4', '5967014'), + (60782, 628, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm687ZR4', '5972815'), + (60783, 628, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm687ZR4', '5974016'), + (60784, 628, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm687ZR4', '5981515'), + (60785, 628, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm687ZR4', '5993516'), + (60786, 628, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm687ZR4', '5998939'), + (60787, 628, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm687ZR4', '6028191'), + (60788, 628, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm687ZR4', '6040066'), + (60789, 628, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm687ZR4', '6042717'), + (60790, 628, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm687ZR4', '6044838'), + (60791, 628, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm687ZR4', '6044839'), + (60792, 628, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm687ZR4', '6045684'), + (60793, 628, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm687ZR4', '6050104'), + (60794, 628, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm687ZR4', '6053195'), + (60795, 628, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm687ZR4', '6053198'), + (60796, 628, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm687ZR4', '6056085'), + (60797, 628, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm687ZR4', '6056916'), + (60798, 628, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm687ZR4', '6059290'), + (60799, 628, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm687ZR4', '6060328'), + (60800, 628, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm687ZR4', '6061037'), + (60801, 628, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm687ZR4', '6061039'), + (60802, 628, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm687ZR4', '6067245'), + (60803, 628, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm687ZR4', '6068094'), + (60804, 628, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm687ZR4', '6068252'), + (60805, 628, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm687ZR4', '6068253'), + (60806, 628, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm687ZR4', '6068254'), + (60807, 628, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm687ZR4', '6068280'), + (60808, 628, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm687ZR4', '6069093'), + (60809, 628, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm687ZR4', '6072528'), + (60810, 628, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm687ZR4', '6079840'), + (60811, 628, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm687ZR4', '6083398'), + (60812, 628, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm687ZR4', '6093504'), + (60813, 628, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm687ZR4', '6097414'), + (60814, 628, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm687ZR4', '6097442'), + (60815, 628, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm687ZR4', '6097684'), + (60816, 628, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm687ZR4', '6098762'), + (60817, 628, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm687ZR4', '6101361'), + (60818, 628, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm687ZR4', '6101362'), + (60819, 628, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm687ZR4', '6107314'), + (60820, 628, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm687ZR4', '6120034'), + (60821, 628, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'nm687ZR4', '6136733'), + (60822, 628, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm687ZR4', '6137989'), + (60823, 628, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm687ZR4', '6150864'), + (60824, 628, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm687ZR4', '6155491'), + (60825, 628, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm687ZR4', '6164417'), + (60826, 628, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm687ZR4', '6166388'), + (60827, 628, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm687ZR4', '6176439'), + (60828, 628, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm687ZR4', '6182410'), + (60829, 628, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm687ZR4', '6185812'), + (60830, 628, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm687ZR4', '6187651'), + (60831, 628, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm687ZR4', '6187963'), + (60832, 628, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm687ZR4', '6187964'), + (60833, 628, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm687ZR4', '6187966'), + (60834, 628, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm687ZR4', '6187967'), + (60835, 628, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm687ZR4', '6187969'), + (60836, 628, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm687ZR4', '6334878'), + (60837, 628, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm687ZR4', '6337236'), + (60838, 628, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm687ZR4', '6337970'), + (60839, 628, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm687ZR4', '6338308'), + (60840, 628, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm687ZR4', '6341710'), + (60841, 628, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm687ZR4', '6342044'), + (60842, 628, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm687ZR4', '6342298'), + (60843, 628, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm687ZR4', '6343294'), + (60844, 628, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm687ZR4', '6347034'), + (60845, 628, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm687ZR4', '6347056'), + (60846, 628, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm687ZR4', '6353830'), + (60847, 628, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm687ZR4', '6353831'), + (60848, 628, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm687ZR4', '6357867'), + (60849, 628, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm687ZR4', '6358652'), + (60850, 628, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm687ZR4', '6361709'), + (60851, 628, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm687ZR4', '6361710'), + (60852, 628, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm687ZR4', '6361711'), + (60853, 628, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm687ZR4', '6361712'), + (60854, 628, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm687ZR4', '6361713'), + (60855, 628, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'nm687ZR4', '6382573'), + (60856, 628, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm687ZR4', '6388604'), + (60857, 628, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm687ZR4', '6394629'), + (60858, 628, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm687ZR4', '6394631'), + (60859, 628, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm687ZR4', '6440863'), + (60860, 628, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm687ZR4', '6445440'), + (60861, 628, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm687ZR4', '6453951'), + (60862, 628, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm687ZR4', '6461696'), + (60863, 628, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm687ZR4', '6462129'), + (60864, 628, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm687ZR4', '6463218'), + (60865, 628, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm687ZR4', '6472181'), + (60866, 628, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm687ZR4', '6482693'), + (60867, 628, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'nm687ZR4', '6484200'), + (60868, 628, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm687ZR4', '6484680'), + (60869, 628, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm687ZR4', '6507741'), + (60870, 628, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm687ZR4', '6514659'), + (60871, 628, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm687ZR4', '6514660'), + (60872, 628, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm687ZR4', '6519103'), + (60873, 628, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm687ZR4', '6535681'), + (60874, 628, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm687ZR4', '6584747'), + (60875, 628, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm687ZR4', '6587097'), + (60876, 628, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm687ZR4', '6609022'), + (60877, 628, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'nm687ZR4', '6632757'), + (60878, 628, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm687ZR4', '6644187'), + (60879, 628, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm687ZR4', '6648951'), + (60880, 628, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm687ZR4', '6648952'), + (60881, 628, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm687ZR4', '6655401'), + (60882, 628, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm687ZR4', '6661585'), + (60883, 628, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm687ZR4', '6661588'), + (60884, 628, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm687ZR4', '6661589'), + (60885, 628, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm687ZR4', '6699906'), + (60886, 628, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm687ZR4', '6699913'), + (60887, 628, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm687ZR4', '6701109'), + (60888, 628, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm687ZR4', '6705219'), + (60889, 628, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm687ZR4', '6710153'), + (60890, 628, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm687ZR4', '6711552'), + (60891, 628, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'nm687ZR4', '6711553'), + (60892, 628, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm687ZR4', '6722688'), + (60893, 628, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm687ZR4', '6730620'), + (60894, 628, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm687ZR4', '6740364'), + (60895, 628, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm687ZR4', '6743829'), + (60896, 628, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm687ZR4', '7030380'), + (60897, 628, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'nm687ZR4', '7033677'), + (60898, 628, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm687ZR4', '7044715'), + (60899, 628, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm687ZR4', '7050318'), + (60900, 628, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm687ZR4', '7050319'), + (60901, 628, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm687ZR4', '7050322'), + (60902, 628, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm687ZR4', '7057804'), + (60903, 628, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm687ZR4', '7072824'), + (60904, 628, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm687ZR4', '7074348'), + (60905, 628, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm687ZR4', '7074364'), + (60906, 628, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'nm687ZR4', '7089267'), + (60907, 628, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm687ZR4', '7098747'), + (60908, 628, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm687ZR4', '7113468'), + (60909, 628, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm687ZR4', '7114856'), + (60910, 628, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm687ZR4', '7114951'), + (60911, 628, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm687ZR4', '7114955'), + (60912, 628, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm687ZR4', '7114956'), + (60913, 628, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm687ZR4', '7114957'), + (60914, 628, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm687ZR4', '7159484'), + (60915, 628, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm687ZR4', '7178446'), + (60916, 628, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'nm687ZR4', '7220467'), + (60917, 628, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm687ZR4', '7240354'), + (60918, 628, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm687ZR4', '7251633'), + (60919, 628, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm687ZR4', '7324073'), + (60920, 628, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm687ZR4', '7324074'), + (60921, 628, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm687ZR4', '7324075'), + (60922, 628, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm687ZR4', '7324078'), + (60923, 628, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm687ZR4', '7324082'), + (60924, 628, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm687ZR4', '7331457'), + (60925, 628, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm687ZR4', '7363643'), + (60926, 628, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm687ZR4', '7368606'), + (60927, 628, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm687ZR4', '7397462'), + (60928, 628, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm687ZR4', '7424275'), + (60929, 628, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm687ZR4', '7432751'), + (60930, 628, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm687ZR4', '7432752'), + (60931, 628, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm687ZR4', '7432753'), + (60932, 628, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm687ZR4', '7432754'), + (60933, 628, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm687ZR4', '7432755'), + (60934, 628, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm687ZR4', '7432756'), + (60935, 628, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm687ZR4', '7432758'), + (60936, 628, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm687ZR4', '7432759'), + (60937, 628, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm687ZR4', '7433834'), + (60938, 628, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'nm687ZR4', '7470197'), + (60939, 628, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm687ZR4', '7685613'), + (60940, 628, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm687ZR4', '7688194'), + (60941, 628, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm687ZR4', '7688196'), + (60942, 628, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm687ZR4', '7688289'), + (60943, 628, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm687ZR4', '7692763'), + (60944, 628, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm687ZR4', '7697552'), + (60945, 628, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm687ZR4', '7699878'), + (60946, 628, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'nm687ZR4', '7704043'), + (60947, 628, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm687ZR4', '7712467'), + (60948, 628, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm687ZR4', '7713585'), + (60949, 628, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm687ZR4', '7713586'), + (60950, 628, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm687ZR4', '7738518'), + (60951, 628, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm687ZR4', '7750636'), + (60952, 628, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm687ZR4', '7796540'), + (60953, 628, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm687ZR4', '7796541'), + (60954, 628, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm687ZR4', '7796542'), + (60955, 628, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm687ZR4', '7825913'), + (60956, 628, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm687ZR4', '7826209'), + (60957, 628, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm687ZR4', '7834742'), + (60958, 628, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm687ZR4', '7842108'), + (60959, 628, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm687ZR4', '7842902'), + (60960, 628, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm687ZR4', '7842903'), + (60961, 628, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm687ZR4', '7842904'), + (60962, 628, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm687ZR4', '7842905'), + (60963, 628, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm687ZR4', '7855719'), + (60964, 628, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm687ZR4', '7860683'), + (60965, 628, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm687ZR4', '7860684'), + (60966, 628, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm687ZR4', '7866095'), + (60967, 628, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm687ZR4', '7869170'), + (60968, 628, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm687ZR4', '7869188'), + (60969, 628, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm687ZR4', '7869201'), + (60970, 628, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm687ZR4', '7877465'), + (60971, 628, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm687ZR4', '7888250'), + (60972, 628, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm687ZR4', '7904777'), + (60973, 628, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm687ZR4', '8349164'), + (60974, 628, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm687ZR4', '8349545'), + (60975, 628, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm687ZR4', '8368028'), + (60976, 628, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm687ZR4', '8368029'), + (60977, 628, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm687ZR4', '8388462'), + (60978, 628, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm687ZR4', '8400273'), + (60979, 628, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm687ZR4', '8400275'), + (60980, 628, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'nm687ZR4', '8400276'), + (60981, 628, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm687ZR4', '8404977'), + (60982, 628, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm687ZR4', '8430783'), + (60983, 628, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm687ZR4', '8430784'), + (60984, 628, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm687ZR4', '8430799'), + (60985, 628, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm687ZR4', '8430800'), + (60986, 628, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm687ZR4', '8430801'), + (60987, 628, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm687ZR4', '8438709'), + (60988, 628, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm687ZR4', '8457738'), + (60989, 628, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm687ZR4', '8459566'), + (60990, 628, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm687ZR4', '8459567'), + (60991, 628, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm687ZR4', '8461032'), + (60992, 628, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm687ZR4', '8477877'), + (60993, 628, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm687ZR4', '8485688'), + (60994, 628, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm687ZR4', '8490587'), + (60995, 628, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm687ZR4', '8493552'), + (60996, 628, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm687ZR4', '8493553'), + (60997, 628, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm687ZR4', '8493554'), + (60998, 628, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm687ZR4', '8493555'), + (60999, 628, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm687ZR4', '8493556'), + (61000, 628, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm687ZR4', '8493557'), + (61001, 628, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm687ZR4', '8493558'), + (61002, 628, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm687ZR4', '8493559'), + (61003, 628, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm687ZR4', '8493560'), + (61004, 628, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'nm687ZR4', '8493561'), + (61005, 628, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm687ZR4', '8493572'), + (61006, 628, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm687ZR4', '8540725'), + (61007, 628, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm687ZR4', '8555421'), + (61008, 629, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4D9EVr9d', '5630960'), + (61009, 629, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4D9EVr9d', '5630961'), + (61010, 629, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4D9EVr9d', '5630962'), + (61011, 629, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4D9EVr9d', '5630966'), + (61012, 629, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4D9EVr9d', '5630967'), + (61013, 629, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4D9EVr9d', '5630968'), + (61014, 629, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', '4D9EVr9d', '5638765'), + (61015, 629, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4D9EVr9d', '5640097'), + (61016, 629, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4D9EVr9d', '5642818'), + (61017, 629, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4D9EVr9d', '5670445'), + (61018, 629, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4D9EVr9d', '5671637'), + (61019, 629, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4D9EVr9d', '5672329'), + (61020, 629, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4D9EVr9d', '5674057'), + (61021, 629, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4D9EVr9d', '5674060'), + (61022, 629, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4D9EVr9d', '5677461'), + (61023, 629, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4D9EVr9d', '5698046'), + (61024, 629, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', '4D9EVr9d', '5699760'), + (61025, 629, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4D9EVr9d', '5741601'), + (61026, 629, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4D9EVr9d', '5763458'), + (61027, 629, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4D9EVr9d', '5774172'), + (61028, 629, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4D9EVr9d', '5818247'), + (61029, 629, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4D9EVr9d', '5819471'), + (61030, 629, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4D9EVr9d', '5827739'), + (61031, 629, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4D9EVr9d', '5844306'), + (61032, 629, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4D9EVr9d', '5850159'), + (61033, 629, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4D9EVr9d', '5858999'), + (61034, 629, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4D9EVr9d', '5871984'), + (61035, 629, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4D9EVr9d', '5876354'), + (61036, 629, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4D9EVr9d', '6045684'), + (61037, 630, 950, 'attending', '2021-08-17 17:21:24', '2025-12-17 19:47:42', 'd5DwZKq4', '4315730'), + (61038, 630, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'd5DwZKq4', '4356801'), + (61039, 630, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'd5DwZKq4', '4366186'), + (61040, 630, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'd5DwZKq4', '4366187'), + (61041, 630, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'd5DwZKq4', '4420735'), + (61042, 630, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'd5DwZKq4', '4420738'), + (61043, 630, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'd5DwZKq4', '4420739'), + (61044, 630, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'd5DwZKq4', '4420741'), + (61045, 630, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'd5DwZKq4', '4420744'), + (61046, 630, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'd5DwZKq4', '4420747'), + (61047, 630, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'd5DwZKq4', '4420748'), + (61048, 630, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'd5DwZKq4', '4420749'), + (61049, 630, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'd5DwZKq4', '4461883'), + (61050, 630, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'd5DwZKq4', '4508342'), + (61051, 630, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'd5DwZKq4', '4568602'), + (61052, 630, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'd5DwZKq4', '4572153'), + (61053, 630, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'd5DwZKq4', '4585962'), + (61054, 630, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'd5DwZKq4', '4596356'), + (61055, 630, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'd5DwZKq4', '4598860'), + (61056, 630, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'd5DwZKq4', '4598861'), + (61057, 630, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'd5DwZKq4', '4602797'), + (61058, 630, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'd5DwZKq4', '4637896'), + (61059, 630, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'd5DwZKq4', '4642994'), + (61060, 630, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'd5DwZKq4', '4642995'), + (61061, 630, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'd5DwZKq4', '4642996'), + (61062, 630, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'd5DwZKq4', '4642997'), + (61063, 630, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd5DwZKq4', '4645687'), + (61064, 630, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd5DwZKq4', '4645698'), + (61065, 630, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd5DwZKq4', '4645704'), + (61066, 630, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd5DwZKq4', '4645705'), + (61067, 630, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'd5DwZKq4', '4668385'), + (61068, 630, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd5DwZKq4', '6045684'), + (61069, 631, 3238, 'maybe', '2025-08-27 05:41:22', '2025-12-17 19:46:11', 'dwqlLk8A', '8493554'), + (61070, 631, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'dwqlLk8A', '8529058'), + (61071, 632, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'myxyao5d', '4736503'), + (61072, 632, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'myxyao5d', '4736504'), + (61073, 632, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'myxyao5d', '5132533'), + (61074, 632, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'myxyao5d', '5186582'), + (61075, 632, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'myxyao5d', '5186583'), + (61076, 632, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'myxyao5d', '5186585'), + (61077, 632, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'myxyao5d', '5190437'), + (61078, 632, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'myxyao5d', '5196763'), + (61079, 632, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'myxyao5d', '5199460'), + (61080, 632, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'myxyao5d', '5215989'), + (61081, 632, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'myxyao5d', '5223686'), + (61082, 632, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'myxyao5d', '5227432'), + (61083, 632, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myxyao5d', '6045684'), + (61084, 633, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'v4DNqB9m', '3517816'), + (61085, 633, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'v4DNqB9m', '3539916'), + (61086, 633, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4DNqB9m', '3539927'), + (61087, 633, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4DNqB9m', '3582734'), + (61088, 633, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4DNqB9m', '3619523'), + (61089, 633, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'v4DNqB9m', '3674262'), + (61090, 633, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'v4DNqB9m', '3677402'), + (61091, 633, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DNqB9m', '6045684'), + (61092, 634, 2986, 'not_attending', '2025-02-07 15:01:13', '2025-12-17 19:46:23', 'Arx1nGgd', '7835405'), + (61093, 634, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Arx1nGgd', '7842108'), + (61094, 634, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Arx1nGgd', '7842902'), + (61095, 634, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Arx1nGgd', '7842903'), + (61096, 634, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Arx1nGgd', '7842904'), + (61097, 634, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Arx1nGgd', '7842905'), + (61098, 634, 2999, 'not_attending', '2025-02-13 02:18:05', '2025-12-17 19:46:23', 'Arx1nGgd', '7844784'), + (61099, 634, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Arx1nGgd', '7855719'), + (61100, 634, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Arx1nGgd', '7860683'), + (61101, 634, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Arx1nGgd', '7860684'), + (61102, 634, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Arx1nGgd', '7866095'), + (61103, 634, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Arx1nGgd', '7869170'), + (61104, 634, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Arx1nGgd', '7869201'), + (61105, 634, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'Arx1nGgd', '7872088'), + (61106, 635, 1153, 'not_attending', '2022-01-22 20:21:28', '2025-12-17 19:47:32', '4WPeaW0d', '4708707'), + (61107, 635, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4WPeaW0d', '4736497'), + (61108, 635, 1176, 'not_attending', '2022-02-05 15:12:28', '2025-12-17 19:47:32', '4WPeaW0d', '4736498'), + (61109, 635, 1177, 'not_attending', '2022-02-12 18:58:33', '2025-12-17 19:47:32', '4WPeaW0d', '4736499'), + (61110, 635, 1178, 'attending', '2022-01-29 22:14:15', '2025-12-17 19:47:32', '4WPeaW0d', '4736500'), + (61111, 635, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4WPeaW0d', '4736503'), + (61112, 635, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4WPeaW0d', '4736504'), + (61113, 635, 1183, 'attending', '2022-01-09 04:00:57', '2025-12-17 19:47:31', '4WPeaW0d', '4742171'), + (61114, 635, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4WPeaW0d', '4746789'), + (61115, 635, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4WPeaW0d', '4753929'), + (61116, 635, 1193, 'attending', '2022-01-21 12:57:21', '2025-12-17 19:47:32', '4WPeaW0d', '4759563'), + (61117, 635, 1198, 'attending', '2022-01-20 21:11:19', '2025-12-17 19:47:32', '4WPeaW0d', '4766801'), + (61118, 635, 1199, 'attending', '2022-01-21 04:49:09', '2025-12-17 19:47:32', '4WPeaW0d', '4766802'), + (61119, 635, 1201, 'attending', '2022-01-19 00:31:18', '2025-12-17 19:47:32', '4WPeaW0d', '4766841'), + (61120, 635, 1202, 'not_attending', '2022-01-27 23:54:29', '2025-12-17 19:47:32', '4WPeaW0d', '4769423'), + (61121, 635, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4WPeaW0d', '5038850'), + (61122, 635, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4WPeaW0d', '5045826'), + (61123, 635, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4WPeaW0d', '5132533'), + (61124, 635, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4WPeaW0d', '5186582'), + (61125, 635, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4WPeaW0d', '5186583'), + (61126, 635, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4WPeaW0d', '5186585'), + (61127, 635, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4WPeaW0d', '5190437'), + (61128, 635, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', '4WPeaW0d', '5215989'), + (61129, 635, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WPeaW0d', '6045684'), + (61130, 636, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dx656kEA', '5269930'), + (61131, 636, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dx656kEA', '5271448'), + (61132, 636, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dx656kEA', '5271449'), + (61133, 636, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dx656kEA', '5276469'), + (61134, 636, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx656kEA', '5278159'), + (61135, 636, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dx656kEA', '5363695'), + (61136, 636, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dx656kEA', '5365960'), + (61137, 636, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dx656kEA', '5368973'), + (61138, 636, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dx656kEA', '5378247'), + (61139, 636, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dx656kEA', '5389605'), + (61140, 636, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dx656kEA', '5397265'), + (61141, 636, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dx656kEA', '5403967'), + (61142, 636, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dx656kEA', '5404786'), + (61143, 636, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dx656kEA', '5405203'), + (61144, 636, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dx656kEA', '5411699'), + (61145, 636, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dx656kEA', '5412550'), + (61146, 636, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dx656kEA', '5415046'), + (61147, 636, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dx656kEA', '5422086'), + (61148, 636, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dx656kEA', '5422406'), + (61149, 636, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dx656kEA', '5424565'), + (61150, 636, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dx656kEA', '5426882'), + (61151, 636, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dx656kEA', '5427083'), + (61152, 636, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'dx656kEA', '5441125'), + (61153, 636, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dx656kEA', '5441126'), + (61154, 636, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dx656kEA', '5441128'), + (61155, 636, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dx656kEA', '5441131'), + (61156, 636, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dx656kEA', '5441132'), + (61157, 636, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dx656kEA', '5446643'), + (61158, 636, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dx656kEA', '5453325'), + (61159, 636, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dx656kEA', '5454516'), + (61160, 636, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dx656kEA', '5454605'), + (61161, 636, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dx656kEA', '5455037'), + (61162, 636, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dx656kEA', '5461278'), + (61163, 636, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dx656kEA', '5469480'), + (61164, 636, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dx656kEA', '5471073'), + (61165, 636, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dx656kEA', '5474663'), + (61166, 636, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dx656kEA', '5482022'), + (61167, 636, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dx656kEA', '5482793'), + (61168, 636, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dx656kEA', '5488912'), + (61169, 636, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dx656kEA', '5492192'), + (61170, 636, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dx656kEA', '5493139'), + (61171, 636, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dx656kEA', '5493200'), + (61172, 636, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dx656kEA', '5502188'), + (61173, 636, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dx656kEA', '5505059'), + (61174, 636, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dx656kEA', '5509055'), + (61175, 636, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dx656kEA', '5512862'), + (61176, 636, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dx656kEA', '5513985'), + (61177, 636, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dx656kEA', '5519981'), + (61178, 636, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dx656kEA', '5522550'), + (61179, 636, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dx656kEA', '5534683'), + (61180, 636, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dx656kEA', '5546619'), + (61181, 636, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dx656kEA', '5555245'), + (61182, 636, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dx656kEA', '5557747'), + (61183, 636, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx656kEA', '6045684'), + (61184, 637, 2210, 'not_attending', '2023-08-30 19:15:02', '2025-12-17 19:46:55', 'm6xlG204', '6361711'), + (61185, 637, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm6xlG204', '6361713'), + (61186, 637, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'm6xlG204', '6388604'), + (61187, 637, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm6xlG204', '6394629'), + (61188, 637, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm6xlG204', '6394631'), + (61189, 637, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'm6xlG204', '6431478'), + (61190, 638, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4k3aBJR4', '5670445'), + (61191, 638, 1824, 'not_attending', '2022-11-30 14:58:07', '2025-12-17 19:47:04', '4k3aBJR4', '5774172'), + (61192, 638, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4k3aBJR4', '5818247'), + (61193, 638, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4k3aBJR4', '5819471'), + (61194, 638, 1837, 'attending', '2022-12-07 03:07:56', '2025-12-17 19:47:16', '4k3aBJR4', '5820146'), + (61195, 638, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4k3aBJR4', '5827739'), + (61196, 638, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4k3aBJR4', '5844306'), + (61197, 638, 1846, 'not_attending', '2022-12-18 18:54:20', '2025-12-17 19:47:04', '4k3aBJR4', '5845237'), + (61198, 638, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4k3aBJR4', '5850159'), + (61199, 638, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4k3aBJR4', '5858999'), + (61200, 638, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4k3aBJR4', '5871984'), + (61201, 638, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4k3aBJR4', '5876354'), + (61202, 638, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4k3aBJR4', '6045684'), + (61203, 638, 2146, 'maybe', '2023-07-21 23:20:57', '2025-12-17 19:46:53', '4k3aBJR4', '6335638'), + (61204, 638, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4k3aBJR4', '6337236'), + (61205, 638, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4k3aBJR4', '6337970'), + (61206, 638, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', '4k3aBJR4', '6338308'), + (61207, 638, 2159, 'attending', '2023-07-22 22:18:47', '2025-12-17 19:46:53', '4k3aBJR4', '6338355'), + (61208, 638, 2160, 'attending', '2023-07-24 21:06:34', '2025-12-17 19:46:54', '4k3aBJR4', '6338358'), + (61209, 638, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4k3aBJR4', '6341710'), + (61210, 638, 2165, 'attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4k3aBJR4', '6342044'), + (61211, 638, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4k3aBJR4', '6342298'), + (61212, 638, 2171, 'maybe', '2023-07-24 21:06:12', '2025-12-17 19:46:54', '4k3aBJR4', '6342328'), + (61213, 638, 2172, 'attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', '4k3aBJR4', '6342591'), + (61214, 638, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4k3aBJR4', '6343294'), + (61215, 638, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4k3aBJR4', '6347034'), + (61216, 638, 2177, 'maybe', '2023-08-07 18:31:55', '2025-12-17 19:46:55', '4k3aBJR4', '6347053'), + (61217, 638, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4k3aBJR4', '6347056'), + (61218, 638, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4k3aBJR4', '6353830'), + (61219, 638, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4k3aBJR4', '6353831'), + (61220, 638, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4k3aBJR4', '6357867'), + (61221, 638, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4k3aBJR4', '6358652'), + (61222, 638, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4k3aBJR4', '6361709'), + (61223, 638, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4k3aBJR4', '6361710'), + (61224, 638, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4k3aBJR4', '6361711'), + (61225, 638, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4k3aBJR4', '6361712'), + (61226, 638, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4k3aBJR4', '6361713'), + (61227, 638, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4k3aBJR4', '6382573'), + (61228, 638, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4k3aBJR4', '6388604'), + (61229, 638, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4k3aBJR4', '6394629'), + (61230, 638, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4k3aBJR4', '6394631'), + (61231, 638, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4k3aBJR4', '6440863'), + (61232, 638, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4k3aBJR4', '6445440'), + (61233, 638, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4k3aBJR4', '6453951'), + (61234, 638, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4k3aBJR4', '6461696'), + (61235, 638, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4k3aBJR4', '6462129'), + (61236, 638, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4k3aBJR4', '6463218'), + (61237, 638, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4k3aBJR4', '6472181'), + (61238, 638, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4k3aBJR4', '6482693'), + (61239, 638, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4k3aBJR4', '6484200'), + (61240, 638, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4k3aBJR4', '6484680'), + (61241, 638, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4k3aBJR4', '6507741'), + (61242, 638, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4k3aBJR4', '6514659'), + (61243, 638, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4k3aBJR4', '6514660'), + (61244, 638, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4k3aBJR4', '6519103'), + (61245, 638, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4k3aBJR4', '6535681'), + (61246, 638, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4k3aBJR4', '6584747'), + (61247, 638, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4k3aBJR4', '6587097'), + (61248, 638, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4k3aBJR4', '6609022'), + (61249, 638, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4k3aBJR4', '6632757'), + (61250, 638, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4k3aBJR4', '6644187'), + (61251, 638, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4k3aBJR4', '6648951'), + (61252, 638, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4k3aBJR4', '6648952'), + (61253, 638, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4k3aBJR4', '6655401'), + (61254, 638, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4k3aBJR4', '6661585'), + (61255, 638, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4k3aBJR4', '6661588'), + (61256, 638, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4k3aBJR4', '6661589'), + (61257, 638, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4k3aBJR4', '6699906'), + (61258, 638, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4k3aBJR4', '6699913'), + (61259, 638, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4k3aBJR4', '6701109'), + (61260, 638, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4k3aBJR4', '6705219'), + (61261, 638, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4k3aBJR4', '6710153'), + (61262, 638, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4k3aBJR4', '6711552'), + (61263, 638, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4k3aBJR4', '6711553'), + (61264, 638, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4k3aBJR4', '6722688'), + (61265, 638, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4k3aBJR4', '6730620'), + (61266, 638, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4k3aBJR4', '6740364'), + (61267, 638, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4k3aBJR4', '6743829'), + (61268, 638, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4k3aBJR4', '7030380'), + (61269, 638, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4k3aBJR4', '7033677'), + (61270, 638, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4k3aBJR4', '7044715'), + (61271, 638, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4k3aBJR4', '7050318'), + (61272, 638, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4k3aBJR4', '7050319'), + (61273, 638, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4k3aBJR4', '7050322'), + (61274, 638, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4k3aBJR4', '7057804'), + (61275, 638, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4k3aBJR4', '7072824'), + (61276, 638, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4k3aBJR4', '7074348'), + (61277, 638, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4k3aBJR4', '7074364'), + (61278, 638, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4k3aBJR4', '7089267'), + (61279, 638, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4k3aBJR4', '7098747'), + (61280, 638, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4k3aBJR4', '7113468'), + (61281, 638, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4k3aBJR4', '7114856'), + (61282, 638, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4k3aBJR4', '7114951'), + (61283, 638, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4k3aBJR4', '7114955'), + (61284, 638, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4k3aBJR4', '7114956'), + (61285, 638, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4k3aBJR4', '7114957'), + (61286, 638, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4k3aBJR4', '7159484'), + (61287, 638, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4k3aBJR4', '7178446'), + (61288, 638, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4k3aBJR4', '7220467'), + (61289, 638, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4k3aBJR4', '7240354'), + (61290, 638, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4k3aBJR4', '7251633'), + (61291, 638, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4k3aBJR4', '7324073'), + (61292, 638, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4k3aBJR4', '7324074'), + (61293, 638, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4k3aBJR4', '7324075'), + (61294, 638, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4k3aBJR4', '7324078'), + (61295, 638, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4k3aBJR4', '7324082'), + (61296, 638, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4k3aBJR4', '7331457'), + (61297, 638, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4k3aBJR4', '7363643'), + (61298, 638, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4k3aBJR4', '7368606'), + (61299, 638, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4k3aBJR4', '7397462'), + (61300, 638, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4k3aBJR4', '7424275'), + (61301, 638, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4k3aBJR4', '7432751'), + (61302, 638, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4k3aBJR4', '7432752'), + (61303, 638, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4k3aBJR4', '7432753'), + (61304, 638, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4k3aBJR4', '7432754'), + (61305, 638, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4k3aBJR4', '7432755'), + (61306, 638, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4k3aBJR4', '7432756'), + (61307, 638, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4k3aBJR4', '7432758'), + (61308, 638, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4k3aBJR4', '7432759'), + (61309, 638, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4k3aBJR4', '7433834'), + (61310, 638, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4k3aBJR4', '7470197'), + (61311, 638, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4k3aBJR4', '7685613'), + (61312, 638, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4k3aBJR4', '7688194'), + (61313, 638, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4k3aBJR4', '7688196'), + (61314, 638, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4k3aBJR4', '7688289'), + (61315, 638, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '4k3aBJR4', '7692763'), + (61316, 638, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '4k3aBJR4', '7697552'), + (61317, 638, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '4k3aBJR4', '7699878'), + (61318, 638, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '4k3aBJR4', '7704043'), + (61319, 638, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '4k3aBJR4', '7712467'), + (61320, 638, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '4k3aBJR4', '7713585'), + (61321, 638, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '4k3aBJR4', '7713586'), + (61322, 638, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '4k3aBJR4', '7738518'), + (61323, 638, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '4k3aBJR4', '7750636'), + (61324, 638, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '4k3aBJR4', '7796540'), + (61325, 638, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '4k3aBJR4', '7796541'), + (61326, 638, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '4k3aBJR4', '7796542'), + (61327, 638, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '4k3aBJR4', '7825913'), + (61328, 638, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '4k3aBJR4', '7826209'), + (61329, 638, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '4k3aBJR4', '7834742'), + (61330, 638, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4k3aBJR4', '7842108'), + (61331, 638, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4k3aBJR4', '7842902'), + (61332, 638, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4k3aBJR4', '7842903'), + (61333, 638, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4k3aBJR4', '7842904'), + (61334, 638, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4k3aBJR4', '7842905'), + (61335, 638, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4k3aBJR4', '7855719'), + (61336, 638, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4k3aBJR4', '7860683'), + (61337, 638, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4k3aBJR4', '7860684'), + (61338, 638, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4k3aBJR4', '7866095'), + (61339, 638, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4k3aBJR4', '7869170'), + (61340, 638, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4k3aBJR4', '7869188'), + (61341, 638, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4k3aBJR4', '7869201'), + (61342, 638, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4k3aBJR4', '7877465'), + (61343, 638, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4k3aBJR4', '7888250'), + (61344, 638, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '4k3aBJR4', '7904777'), + (61345, 638, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4k3aBJR4', '8349164'), + (61346, 638, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4k3aBJR4', '8349545'), + (61347, 638, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4k3aBJR4', '8368028'), + (61348, 638, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4k3aBJR4', '8368029'), + (61349, 638, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4k3aBJR4', '8388462'), + (61350, 638, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4k3aBJR4', '8400273'), + (61351, 638, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '4k3aBJR4', '8400275'), + (61352, 638, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '4k3aBJR4', '8400276'), + (61353, 638, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '4k3aBJR4', '8404977'), + (61354, 638, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '4k3aBJR4', '8430783'), + (61355, 638, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '4k3aBJR4', '8430784'), + (61356, 638, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '4k3aBJR4', '8430799'), + (61357, 638, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '4k3aBJR4', '8430800'), + (61358, 638, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '4k3aBJR4', '8430801'), + (61359, 638, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4k3aBJR4', '8438709'), + (61360, 638, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4k3aBJR4', '8457738'), + (61361, 638, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4k3aBJR4', '8459566'), + (61362, 638, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4k3aBJR4', '8459567'), + (61363, 638, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4k3aBJR4', '8461032'), + (61364, 638, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4k3aBJR4', '8477877'), + (61365, 638, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4k3aBJR4', '8485688'), + (61366, 638, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4k3aBJR4', '8490587'), + (61367, 638, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4k3aBJR4', '8493552'), + (61368, 638, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4k3aBJR4', '8493553'), + (61369, 638, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4k3aBJR4', '8493554'), + (61370, 638, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4k3aBJR4', '8493555'), + (61371, 638, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4k3aBJR4', '8493556'), + (61372, 638, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4k3aBJR4', '8493557'), + (61373, 638, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4k3aBJR4', '8493558'), + (61374, 638, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4k3aBJR4', '8493559'), + (61375, 638, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4k3aBJR4', '8493560'), + (61376, 638, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4k3aBJR4', '8493561'), + (61377, 638, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4k3aBJR4', '8493572'), + (61378, 638, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '4k3aBJR4', '8540725'), + (61379, 638, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4k3aBJR4', '8555421'), + (61380, 639, 253, 'attending', '2021-04-04 21:32:52', '2025-12-17 19:47:44', '2d20EjoA', '3149484'), + (61381, 639, 254, 'attending', '2021-03-07 21:04:12', '2025-12-17 19:47:51', '2d20EjoA', '3149485'), + (61382, 639, 255, 'not_attending', '2021-03-19 04:18:49', '2025-12-17 19:47:43', '2d20EjoA', '3149486'), + (61383, 639, 256, 'attending', '2021-05-04 19:54:27', '2025-12-17 19:47:46', '2d20EjoA', '3149487'), + (61384, 639, 257, 'attending', '2021-04-18 13:53:18', '2025-12-17 19:47:45', '2d20EjoA', '3149488'), + (61385, 639, 396, 'attending', '2021-04-28 15:15:17', '2025-12-17 19:47:46', '2d20EjoA', '3236451'), + (61386, 639, 401, 'attending', '2021-05-09 20:47:53', '2025-12-17 19:47:46', '2d20EjoA', '3236456'), + (61387, 639, 403, 'attending', '2021-02-28 04:33:38', '2025-12-17 19:47:51', '2d20EjoA', '3236458'), + (61388, 639, 404, 'attending', '2021-03-16 20:47:37', '2025-12-17 19:47:51', '2d20EjoA', '3236460'), + (61389, 639, 406, 'not_attending', '2021-03-29 17:22:02', '2025-12-17 19:47:44', '2d20EjoA', '3236464'), + (61390, 639, 407, 'attending', '2021-04-14 14:57:34', '2025-12-17 19:47:44', '2d20EjoA', '3236465'), + (61391, 639, 429, 'attending', '2020-11-25 15:07:54', '2025-12-17 19:47:54', '2d20EjoA', '3250523'), + (61392, 639, 441, 'attending', '2020-11-13 05:01:38', '2025-12-17 19:47:54', '2d20EjoA', '3256169'), + (61393, 639, 452, 'attending', '2020-11-23 16:58:05', '2025-12-17 19:47:54', '2d20EjoA', '3272981'), + (61394, 639, 459, 'maybe', '2020-11-14 20:54:13', '2025-12-17 19:47:54', '2d20EjoA', '3281467'), + (61395, 639, 460, 'attending', '2020-11-18 03:01:53', '2025-12-17 19:47:54', '2d20EjoA', '3281468'), + (61396, 639, 463, 'attending', '2020-11-13 05:00:28', '2025-12-17 19:47:54', '2d20EjoA', '3281553'), + (61397, 639, 464, 'attending', '2020-11-19 23:35:56', '2025-12-17 19:47:54', '2d20EjoA', '3281554'), + (61398, 639, 465, 'attending', '2020-11-19 23:36:06', '2025-12-17 19:47:54', '2d20EjoA', '3281555'), + (61399, 639, 467, 'attending', '2020-11-15 04:49:08', '2025-12-17 19:47:54', '2d20EjoA', '3282756'), + (61400, 639, 468, 'attending', '2020-11-14 20:53:26', '2025-12-17 19:47:54', '2d20EjoA', '3285413'), + (61401, 639, 469, 'attending', '2020-11-19 23:35:37', '2025-12-17 19:47:54', '2d20EjoA', '3285414'), + (61402, 639, 477, 'attending', '2020-11-23 16:58:27', '2025-12-17 19:47:54', '2d20EjoA', '3289559'), + (61403, 639, 481, 'attending', '2020-11-23 16:46:42', '2025-12-17 19:47:54', '2d20EjoA', '3297764'), + (61404, 639, 482, 'attending', '2020-11-19 23:35:02', '2025-12-17 19:47:54', '2d20EjoA', '3297769'), + (61405, 639, 487, 'maybe', '2020-11-30 05:27:18', '2025-12-17 19:47:54', '2d20EjoA', '3311122'), + (61406, 639, 488, 'attending', '2020-11-29 14:01:36', '2025-12-17 19:47:54', '2d20EjoA', '3312757'), + (61407, 639, 489, 'maybe', '2020-11-27 17:46:45', '2025-12-17 19:47:54', '2d20EjoA', '3313022'), + (61408, 639, 490, 'attending', '2020-12-09 01:19:03', '2025-12-17 19:47:54', '2d20EjoA', '3313532'), + (61409, 639, 491, 'attending', '2020-12-09 03:28:56', '2025-12-17 19:47:55', '2d20EjoA', '3313533'), + (61410, 639, 492, 'attending', '2020-11-29 14:02:08', '2025-12-17 19:47:54', '2d20EjoA', '3313731'), + (61411, 639, 493, 'attending', '2020-11-29 14:00:33', '2025-12-17 19:47:54', '2d20EjoA', '3313856'), + (61412, 639, 495, 'attending', '2020-11-30 04:39:55', '2025-12-17 19:47:54', '2d20EjoA', '3314009'), + (61413, 639, 496, 'not_attending', '2020-12-10 21:43:55', '2025-12-17 19:47:54', '2d20EjoA', '3314269'), + (61414, 639, 497, 'attending', '2020-12-11 03:53:46', '2025-12-17 19:47:55', '2d20EjoA', '3314270'), + (61415, 639, 498, 'not_attending', '2020-12-02 11:01:32', '2025-12-17 19:47:54', '2d20EjoA', '3314302'), + (61416, 639, 499, 'attending', '2020-11-30 04:40:30', '2025-12-17 19:47:55', '2d20EjoA', '3314909'), + (61417, 639, 500, 'not_attending', '2020-12-11 03:53:54', '2025-12-17 19:47:55', '2d20EjoA', '3314964'), + (61418, 639, 502, 'attending', '2020-12-08 01:08:23', '2025-12-17 19:47:55', '2d20EjoA', '3323365'), + (61419, 639, 503, 'maybe', '2020-12-15 13:39:15', '2025-12-17 19:47:55', '2d20EjoA', '3323366'), + (61420, 639, 506, 'attending', '2020-12-08 19:26:58', '2025-12-17 19:47:55', '2d20EjoA', '3323375'), + (61421, 639, 508, 'attending', '2021-01-03 23:24:13', '2025-12-17 19:47:48', '2d20EjoA', '3324231'), + (61422, 639, 509, 'attending', '2021-01-03 23:24:28', '2025-12-17 19:47:49', '2d20EjoA', '3324232'), + (61423, 639, 510, 'attending', '2021-01-03 23:24:32', '2025-12-17 19:47:49', '2d20EjoA', '3324233'), + (61424, 639, 511, 'attending', '2020-12-08 19:29:55', '2025-12-17 19:47:55', '2d20EjoA', '3325335'), + (61425, 639, 512, 'attending', '2020-12-08 19:29:23', '2025-12-17 19:47:55', '2d20EjoA', '3325336'), + (61426, 639, 513, 'maybe', '2020-12-17 03:14:25', '2025-12-17 19:47:55', '2d20EjoA', '3329383'), + (61427, 639, 516, 'attending', '2020-12-17 00:46:43', '2025-12-17 19:47:48', '2d20EjoA', '3334530'), + (61428, 639, 517, 'attending', '2020-12-15 01:35:15', '2025-12-17 19:47:48', '2d20EjoA', '3337137'), + (61429, 639, 518, 'attending', '2020-12-15 01:35:10', '2025-12-17 19:47:48', '2d20EjoA', '3337138'), + (61430, 639, 526, 'attending', '2020-12-25 12:21:36', '2025-12-17 19:47:48', '2d20EjoA', '3351539'), + (61431, 639, 529, 'attending', '2021-01-03 23:23:13', '2025-12-17 19:47:48', '2d20EjoA', '3364568'), + (61432, 639, 532, 'attending', '2021-01-03 23:23:36', '2025-12-17 19:47:48', '2d20EjoA', '3381412'), + (61433, 639, 536, 'attending', '2021-01-06 03:08:14', '2025-12-17 19:47:48', '2d20EjoA', '3386848'), + (61434, 639, 537, 'attending', '2021-01-09 03:30:33', '2025-12-17 19:47:48', '2d20EjoA', '3387153'), + (61435, 639, 538, 'attending', '2021-01-10 04:06:16', '2025-12-17 19:47:48', '2d20EjoA', '3388151'), + (61436, 639, 540, 'attending', '2021-01-07 02:40:32', '2025-12-17 19:47:48', '2d20EjoA', '3389527'), + (61437, 639, 542, 'attending', '2021-01-11 20:52:46', '2025-12-17 19:47:48', '2d20EjoA', '3395013'), + (61438, 639, 543, 'maybe', '2021-01-11 20:54:28', '2025-12-17 19:47:48', '2d20EjoA', '3396499'), + (61439, 639, 544, 'maybe', '2021-01-12 20:26:14', '2025-12-17 19:47:48', '2d20EjoA', '3396500'), + (61440, 639, 545, 'attending', '2021-01-20 01:24:23', '2025-12-17 19:47:49', '2d20EjoA', '3396502'), + (61441, 639, 546, 'attending', '2021-01-11 20:55:29', '2025-12-17 19:47:49', '2d20EjoA', '3396503'), + (61442, 639, 547, 'attending', '2021-01-11 20:55:37', '2025-12-17 19:47:49', '2d20EjoA', '3396504'), + (61443, 639, 548, 'attending', '2021-01-11 20:54:44', '2025-12-17 19:47:48', '2d20EjoA', '3403650'), + (61444, 639, 549, 'attending', '2021-01-13 21:43:31', '2025-12-17 19:47:48', '2d20EjoA', '3406988'), + (61445, 639, 550, 'attending', '2021-01-13 21:43:27', '2025-12-17 19:47:48', '2d20EjoA', '3407018'), + (61446, 639, 554, 'attending', '2021-01-13 21:44:37', '2025-12-17 19:47:49', '2d20EjoA', '3408338'), + (61447, 639, 555, 'attending', '2021-01-20 05:17:18', '2025-12-17 19:47:49', '2d20EjoA', '3416576'), + (61448, 639, 556, 'attending', '2021-01-20 01:27:15', '2025-12-17 19:47:49', '2d20EjoA', '3417170'), + (61449, 639, 559, 'attending', '2021-01-27 22:14:20', '2025-12-17 19:47:49', '2d20EjoA', '3421439'), + (61450, 639, 564, 'maybe', '2021-01-24 08:56:39', '2025-12-17 19:47:49', '2d20EjoA', '3426074'), + (61451, 639, 565, 'attending', '2021-01-26 22:29:24', '2025-12-17 19:47:49', '2d20EjoA', '3426083'), + (61452, 639, 566, 'not_attending', '2021-01-30 05:42:37', '2025-12-17 19:47:50', '2d20EjoA', '3427928'), + (61453, 639, 567, 'attending', '2021-01-29 06:57:55', '2025-12-17 19:47:50', '2d20EjoA', '3428895'), + (61454, 639, 568, 'attending', '2021-01-27 22:14:41', '2025-12-17 19:47:50', '2d20EjoA', '3430267'), + (61455, 639, 570, 'attending', '2021-02-05 09:19:16', '2025-12-17 19:47:50', '2d20EjoA', '3435538'), + (61456, 639, 571, 'attending', '2021-02-10 22:28:31', '2025-12-17 19:47:50', '2d20EjoA', '3435539'), + (61457, 639, 572, 'attending', '2021-01-27 00:49:36', '2025-12-17 19:47:50', '2d20EjoA', '3435540'), + (61458, 639, 573, 'attending', '2021-02-26 22:35:17', '2025-12-17 19:47:50', '2d20EjoA', '3435542'), + (61459, 639, 574, 'attending', '2021-01-29 04:00:27', '2025-12-17 19:47:51', '2d20EjoA', '3435543'), + (61460, 639, 576, 'attending', '2021-01-29 03:58:56', '2025-12-17 19:47:50', '2d20EjoA', '3438748'), + (61461, 639, 577, 'attending', '2021-01-29 22:57:57', '2025-12-17 19:47:49', '2d20EjoA', '3439167'), + (61462, 639, 578, 'attending', '2021-01-29 03:59:22', '2025-12-17 19:47:50', '2d20EjoA', '3440043'), + (61463, 639, 579, 'attending', '2021-01-29 03:59:59', '2025-12-17 19:47:50', '2d20EjoA', '3440978'), + (61464, 639, 580, 'attending', '2021-01-31 03:57:57', '2025-12-17 19:47:50', '2d20EjoA', '3444240'), + (61465, 639, 582, 'attending', '2021-01-31 03:58:23', '2025-12-17 19:47:50', '2d20EjoA', '3445769'), + (61466, 639, 591, 'attending', '2021-02-06 15:56:12', '2025-12-17 19:47:50', '2d20EjoA', '3465880'), + (61467, 639, 592, 'maybe', '2021-02-23 23:53:30', '2025-12-17 19:47:50', '2d20EjoA', '3467757'), + (61468, 639, 598, 'attending', '2021-02-06 15:55:57', '2025-12-17 19:47:50', '2d20EjoA', '3468003'), + (61469, 639, 599, 'maybe', '2021-02-17 00:42:43', '2025-12-17 19:47:50', '2d20EjoA', '3468117'), + (61470, 639, 600, 'attending', '2021-02-06 15:55:06', '2025-12-17 19:47:50', '2d20EjoA', '3468125'), + (61471, 639, 602, 'attending', '2021-02-07 18:03:18', '2025-12-17 19:47:50', '2d20EjoA', '3470303'), + (61472, 639, 603, 'attending', '2021-02-07 18:03:26', '2025-12-17 19:47:50', '2d20EjoA', '3470304'), + (61473, 639, 604, 'attending', '2021-02-07 18:03:28', '2025-12-17 19:47:50', '2d20EjoA', '3470305'), + (61474, 639, 605, 'attending', '2021-02-07 18:03:49', '2025-12-17 19:47:50', '2d20EjoA', '3470991'), + (61475, 639, 606, 'attending', '2021-02-07 18:02:10', '2025-12-17 19:47:50', '2d20EjoA', '3470998'), + (61476, 639, 607, 'attending', '2021-02-09 00:48:47', '2025-12-17 19:47:50', '2d20EjoA', '3471882'), + (61477, 639, 608, 'attending', '2021-02-09 18:55:42', '2025-12-17 19:47:50', '2d20EjoA', '3475332'), + (61478, 639, 611, 'attending', '2021-02-15 21:23:47', '2025-12-17 19:47:50', '2d20EjoA', '3482659'), + (61479, 639, 612, 'attending', '2021-02-15 21:22:03', '2025-12-17 19:47:50', '2d20EjoA', '3490040'), + (61480, 639, 613, 'attending', '2021-02-15 21:23:55', '2025-12-17 19:47:50', '2d20EjoA', '3490041'), + (61481, 639, 614, 'attending', '2021-02-15 21:24:23', '2025-12-17 19:47:51', '2d20EjoA', '3490042'), + (61482, 639, 615, 'maybe', '2021-02-20 19:58:50', '2025-12-17 19:47:50', '2d20EjoA', '3490045'), + (61483, 639, 616, 'attending', '2021-02-15 21:23:14', '2025-12-17 19:47:50', '2d20EjoA', '3493478'), + (61484, 639, 617, 'attending', '2021-02-18 22:16:02', '2025-12-17 19:47:50', '2d20EjoA', '3499119'), + (61485, 639, 618, 'attending', '2021-02-19 22:32:07', '2025-12-17 19:47:50', '2d20EjoA', '3503991'), + (61486, 639, 621, 'attending', '2021-02-23 23:53:56', '2025-12-17 19:47:51', '2d20EjoA', '3517815'), + (61487, 639, 622, 'attending', '2021-02-23 23:54:04', '2025-12-17 19:47:51', '2d20EjoA', '3517816'), + (61488, 639, 623, 'attending', '2021-02-25 17:12:00', '2025-12-17 19:47:50', '2d20EjoA', '3523941'), + (61489, 639, 625, 'not_attending', '2021-03-02 16:22:18', '2025-12-17 19:47:51', '2d20EjoA', '3533296'), + (61490, 639, 627, 'attending', '2021-03-10 01:42:09', '2025-12-17 19:47:51', '2d20EjoA', '3533303'), + (61491, 639, 628, 'maybe', '2021-03-02 01:19:14', '2025-12-17 19:47:51', '2d20EjoA', '3533305'), + (61492, 639, 630, 'maybe', '2021-03-03 00:48:05', '2025-12-17 19:47:51', '2d20EjoA', '3533425'), + (61493, 639, 631, 'attending', '2021-03-01 00:53:36', '2025-12-17 19:47:51', '2d20EjoA', '3533850'), + (61494, 639, 632, 'attending', '2021-03-01 01:27:51', '2025-12-17 19:47:51', '2d20EjoA', '3533853'), + (61495, 639, 634, 'attending', '2021-03-29 17:22:34', '2025-12-17 19:47:44', '2d20EjoA', '3534718'), + (61496, 639, 637, 'attending', '2021-03-01 18:51:32', '2025-12-17 19:47:51', '2d20EjoA', '3536411'), + (61497, 639, 638, 'attending', '2021-03-01 18:50:32', '2025-12-17 19:47:44', '2d20EjoA', '3536632'), + (61498, 639, 639, 'attending', '2021-03-09 05:42:51', '2025-12-17 19:47:51', '2d20EjoA', '3536656'), + (61499, 639, 641, 'attending', '2021-03-03 15:12:00', '2025-12-17 19:47:44', '2d20EjoA', '3539916'), + (61500, 639, 642, 'attending', '2021-03-03 15:12:09', '2025-12-17 19:47:44', '2d20EjoA', '3539917'), + (61501, 639, 643, 'attending', '2021-03-03 15:12:15', '2025-12-17 19:47:45', '2d20EjoA', '3539918'), + (61502, 639, 644, 'attending', '2021-03-03 15:12:18', '2025-12-17 19:47:45', '2d20EjoA', '3539919'), + (61503, 639, 645, 'attending', '2021-03-03 15:12:23', '2025-12-17 19:47:46', '2d20EjoA', '3539920'), + (61504, 639, 646, 'attending', '2021-05-15 14:49:58', '2025-12-17 19:47:46', '2d20EjoA', '3539921'), + (61505, 639, 647, 'not_attending', '2021-05-22 19:39:11', '2025-12-17 19:47:46', '2d20EjoA', '3539922'), + (61506, 639, 648, 'attending', '2021-05-29 04:25:40', '2025-12-17 19:47:47', '2d20EjoA', '3539923'), + (61507, 639, 649, 'not_attending', '2021-03-20 22:43:43', '2025-12-17 19:47:51', '2d20EjoA', '3539927'), + (61508, 639, 650, 'attending', '2021-03-09 09:03:00', '2025-12-17 19:47:44', '2d20EjoA', '3539928'), + (61509, 639, 651, 'attending', '2021-03-07 03:39:46', '2025-12-17 19:47:51', '2d20EjoA', '3541045'), + (61510, 639, 653, 'attending', '2021-03-06 18:31:53', '2025-12-17 19:47:51', '2d20EjoA', '3546917'), + (61511, 639, 654, 'attending', '2021-03-07 04:16:51', '2025-12-17 19:47:51', '2d20EjoA', '3546990'), + (61512, 639, 662, 'attending', '2021-04-24 18:33:18', '2025-12-17 19:47:45', '2d20EjoA', '3547138'), + (61513, 639, 664, 'attending', '2021-08-29 19:58:34', '2025-12-17 19:47:43', '2d20EjoA', '3547142'), + (61514, 639, 665, 'attending', '2021-08-29 19:58:30', '2025-12-17 19:47:43', '2d20EjoA', '3547143'), + (61515, 639, 666, 'attending', '2021-08-10 15:21:03', '2025-12-17 19:47:42', '2d20EjoA', '3547144'), + (61516, 639, 667, 'maybe', '2021-08-28 20:51:48', '2025-12-17 19:47:42', '2d20EjoA', '3547145'), + (61517, 639, 668, 'attending', '2021-05-15 15:02:11', '2025-12-17 19:47:46', '2d20EjoA', '3547146'), + (61518, 639, 671, 'maybe', '2021-07-14 21:00:02', '2025-12-17 19:47:39', '2d20EjoA', '3547149'), + (61519, 639, 672, 'not_attending', '2021-05-22 19:40:17', '2025-12-17 19:47:46', '2d20EjoA', '3547150'), + (61520, 639, 674, 'attending', '2021-08-06 14:00:07', '2025-12-17 19:47:41', '2d20EjoA', '3547152'), + (61521, 639, 675, 'maybe', '2021-07-29 18:38:39', '2025-12-17 19:47:40', '2d20EjoA', '3547153'), + (61522, 639, 676, 'attending', '2021-07-19 22:38:58', '2025-12-17 19:47:40', '2d20EjoA', '3547154'), + (61523, 639, 678, 'attending', '2021-03-08 20:40:22', '2025-12-17 19:47:51', '2d20EjoA', '3547158'), + (61524, 639, 680, 'attending', '2021-03-10 04:16:08', '2025-12-17 19:47:51', '2d20EjoA', '3547700'), + (61525, 639, 684, 'attending', '2021-03-08 20:40:40', '2025-12-17 19:47:51', '2d20EjoA', '3549257'), + (61526, 639, 687, 'not_attending', '2021-03-12 01:55:00', '2025-12-17 19:47:51', '2d20EjoA', '3553405'), + (61527, 639, 688, 'attending', '2021-03-10 01:59:06', '2025-12-17 19:47:51', '2d20EjoA', '3553729'), + (61528, 639, 689, 'attending', '2021-03-19 04:18:34', '2025-12-17 19:47:44', '2d20EjoA', '3555564'), + (61529, 639, 690, 'attending', '2021-03-19 04:18:56', '2025-12-17 19:47:43', '2d20EjoA', '3559954'), + (61530, 639, 691, 'attending', '2021-03-19 22:56:32', '2025-12-17 19:47:45', '2d20EjoA', '3561928'), + (61531, 639, 698, 'attending', '2021-03-16 20:46:51', '2025-12-17 19:47:44', '2d20EjoA', '3571867'), + (61532, 639, 700, 'attending', '2021-03-19 04:29:57', '2025-12-17 19:47:44', '2d20EjoA', '3575725'), + (61533, 639, 702, 'maybe', '2021-03-19 22:53:29', '2025-12-17 19:47:51', '2d20EjoA', '3577181'), + (61534, 639, 703, 'attending', '2021-03-19 22:54:35', '2025-12-17 19:47:44', '2d20EjoA', '3578388'), + (61535, 639, 704, 'attending', '2021-03-28 19:12:08', '2025-12-17 19:47:44', '2d20EjoA', '3581429'), + (61536, 639, 705, 'attending', '2021-03-19 22:46:39', '2025-12-17 19:47:44', '2d20EjoA', '3581895'), + (61537, 639, 706, 'attending', '2021-04-15 17:59:20', '2025-12-17 19:47:45', '2d20EjoA', '3582734'), + (61538, 639, 707, 'attending', '2021-04-01 04:31:11', '2025-12-17 19:47:46', '2d20EjoA', '3583262'), + (61539, 639, 711, 'attending', '2021-03-29 17:22:06', '2025-12-17 19:47:44', '2d20EjoA', '3588075'), + (61540, 639, 714, 'attending', '2021-03-30 07:17:01', '2025-12-17 19:47:44', '2d20EjoA', '3604063'), + (61541, 639, 716, 'not_attending', '2021-04-02 14:54:18', '2025-12-17 19:47:44', '2d20EjoA', '3618353'), + (61542, 639, 717, 'attending', '2021-03-25 20:43:31', '2025-12-17 19:47:44', '2d20EjoA', '3619523'), + (61543, 639, 719, 'maybe', '2021-04-11 04:46:00', '2025-12-17 19:47:44', '2d20EjoA', '3635405'), + (61544, 639, 721, 'attending', '2021-04-03 17:30:09', '2025-12-17 19:47:44', '2d20EjoA', '3643622'), + (61545, 639, 723, 'maybe', '2021-04-05 21:44:46', '2025-12-17 19:47:44', '2d20EjoA', '3649179'), + (61546, 639, 728, 'maybe', '2021-04-14 14:57:29', '2025-12-17 19:47:44', '2d20EjoA', '3668073'), + (61547, 639, 729, 'attending', '2021-04-28 15:14:52', '2025-12-17 19:47:46', '2d20EjoA', '3668075'), + (61548, 639, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '2d20EjoA', '3674262'), + (61549, 639, 732, 'attending', '2021-04-14 15:32:06', '2025-12-17 19:47:45', '2d20EjoA', '3674268'), + (61550, 639, 734, 'maybe', '2021-04-05 01:23:05', '2025-12-17 19:47:44', '2d20EjoA', '3676806'), + (61551, 639, 735, 'attending', '2021-04-05 00:59:34', '2025-12-17 19:47:46', '2d20EjoA', '3677402'), + (61552, 639, 739, 'attending', '2021-05-04 20:09:20', '2025-12-17 19:47:46', '2d20EjoA', '3680616'), + (61553, 639, 740, 'attending', '2021-04-28 15:15:56', '2025-12-17 19:47:46', '2d20EjoA', '3680617'), + (61554, 639, 744, 'maybe', '2021-06-11 21:43:32', '2025-12-17 19:47:47', '2d20EjoA', '3680624'), + (61555, 639, 746, 'maybe', '2021-07-07 19:57:07', '2025-12-17 19:47:39', '2d20EjoA', '3680626'), + (61556, 639, 748, 'attending', '2021-04-11 04:46:35', '2025-12-17 19:47:44', '2d20EjoA', '3685353'), + (61557, 639, 752, 'not_attending', '2021-04-14 14:57:17', '2025-12-17 19:47:44', '2d20EjoA', '3699422'), + (61558, 639, 757, 'attending', '2021-04-20 19:45:41', '2025-12-17 19:47:45', '2d20EjoA', '3708109'), + (61559, 639, 761, 'attending', '2021-05-09 20:55:11', '2025-12-17 19:47:46', '2d20EjoA', '3716041'), + (61560, 639, 772, 'maybe', '2021-04-30 22:38:37', '2025-12-17 19:47:46', '2d20EjoA', '3726421'), + (61561, 639, 773, 'attending', '2021-04-20 21:28:40', '2025-12-17 19:47:46', '2d20EjoA', '3729399'), + (61562, 639, 774, 'attending', '2021-04-21 02:29:08', '2025-12-17 19:47:45', '2d20EjoA', '3730212'), + (61563, 639, 775, 'attending', '2021-04-21 11:46:14', '2025-12-17 19:47:45', '2d20EjoA', '3731062'), + (61564, 639, 777, 'maybe', '2021-05-01 19:56:20', '2025-12-17 19:47:46', '2d20EjoA', '3746248'), + (61565, 639, 778, 'attending', '2021-04-28 15:15:41', '2025-12-17 19:47:46', '2d20EjoA', '3751550'), + (61566, 639, 784, 'attending', '2021-05-04 20:09:16', '2025-12-17 19:47:46', '2d20EjoA', '3768775'), + (61567, 639, 786, 'attending', '2021-05-04 21:10:12', '2025-12-17 19:47:46', '2d20EjoA', '3780093'), + (61568, 639, 791, 'maybe', '2021-05-10 22:15:25', '2025-12-17 19:47:46', '2d20EjoA', '3792735'), + (61569, 639, 792, 'attending', '2021-05-19 23:19:59', '2025-12-17 19:47:46', '2d20EjoA', '3793156'), + (61570, 639, 793, 'attending', '2021-06-01 20:20:21', '2025-12-17 19:47:47', '2d20EjoA', '3793537'), + (61571, 639, 806, 'attending', '2021-05-15 14:42:44', '2025-12-17 19:47:46', '2d20EjoA', '3806392'), + (61572, 639, 810, 'maybe', '2021-05-17 17:12:09', '2025-12-17 19:47:46', '2d20EjoA', '3808029'), + (61573, 639, 820, 'attending', '2021-05-28 02:57:01', '2025-12-17 19:47:47', '2d20EjoA', '3963335'), + (61574, 639, 822, 'attending', '2021-06-06 15:33:50', '2025-12-17 19:47:47', '2d20EjoA', '3969986'), + (61575, 639, 823, 'attending', '2021-06-17 20:03:40', '2025-12-17 19:47:48', '2d20EjoA', '3974109'), + (61576, 639, 826, 'attending', '2021-06-14 15:43:15', '2025-12-17 19:47:48', '2d20EjoA', '3975310'), + (61577, 639, 827, 'attending', '2021-06-03 21:26:16', '2025-12-17 19:47:47', '2d20EjoA', '3975311'), + (61578, 639, 828, 'maybe', '2021-06-12 21:28:44', '2025-12-17 19:47:47', '2d20EjoA', '3975312'), + (61579, 639, 833, 'attending', '2021-06-07 22:34:41', '2025-12-17 19:47:47', '2d20EjoA', '3990438'), + (61580, 639, 834, 'attending', '2021-06-08 15:42:35', '2025-12-17 19:47:47', '2d20EjoA', '3990439'), + (61581, 639, 838, 'attending', '2021-06-06 18:31:53', '2025-12-17 19:47:47', '2d20EjoA', '3994992'), + (61582, 639, 840, 'attending', '2021-06-08 01:31:53', '2025-12-17 19:47:47', '2d20EjoA', '4007283'), + (61583, 639, 844, 'attending', '2021-06-10 21:44:47', '2025-12-17 19:47:38', '2d20EjoA', '4014338'), + (61584, 639, 846, 'attending', '2021-07-04 05:55:34', '2025-12-17 19:47:39', '2d20EjoA', '4015718'), + (61585, 639, 867, 'attending', '2021-06-21 17:29:52', '2025-12-17 19:47:38', '2d20EjoA', '4021848'), + (61586, 639, 868, 'maybe', '2021-06-17 20:03:50', '2025-12-17 19:47:48', '2d20EjoA', '4022012'), + (61587, 639, 869, 'attending', '2021-06-21 17:34:23', '2025-12-17 19:47:38', '2d20EjoA', '4136744'), + (61588, 639, 870, 'attending', '2021-06-21 17:33:32', '2025-12-17 19:47:38', '2d20EjoA', '4136937'), + (61589, 639, 871, 'attending', '2021-07-05 11:25:33', '2025-12-17 19:47:39', '2d20EjoA', '4136938'), + (61590, 639, 872, 'attending', '2021-07-19 22:38:29', '2025-12-17 19:47:40', '2d20EjoA', '4136947'), + (61591, 639, 880, 'attending', '2021-06-18 20:06:09', '2025-12-17 19:47:48', '2d20EjoA', '4205383'), + (61592, 639, 884, 'attending', '2021-08-10 15:21:13', '2025-12-17 19:47:42', '2d20EjoA', '4210314'), + (61593, 639, 887, 'attending', '2021-07-11 15:59:21', '2025-12-17 19:47:39', '2d20EjoA', '4225444'), + (61594, 639, 895, 'attending', '2021-06-27 04:18:00', '2025-12-17 19:47:39', '2d20EjoA', '4229424'), + (61595, 639, 897, 'attending', '2021-06-27 23:39:34', '2025-12-17 19:47:38', '2d20EjoA', '4232132'), + (61596, 639, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '2d20EjoA', '4239259'), + (61597, 639, 900, 'attending', '2021-07-19 22:39:01', '2025-12-17 19:47:40', '2d20EjoA', '4240316'), + (61598, 639, 901, 'attending', '2021-07-31 01:21:52', '2025-12-17 19:47:40', '2d20EjoA', '4240317'), + (61599, 639, 902, 'attending', '2021-08-06 14:01:00', '2025-12-17 19:47:41', '2d20EjoA', '4240318'), + (61600, 639, 903, 'attending', '2021-08-10 15:21:04', '2025-12-17 19:47:42', '2d20EjoA', '4240320'), + (61601, 639, 905, 'attending', '2021-07-05 11:25:57', '2025-12-17 19:47:39', '2d20EjoA', '4250163'), + (61602, 639, 906, 'maybe', '2021-07-11 18:59:08', '2025-12-17 19:47:39', '2d20EjoA', '4253431'), + (61603, 639, 907, 'attending', '2021-07-05 11:25:43', '2025-12-17 19:47:39', '2d20EjoA', '4254036'), + (61604, 639, 917, 'not_attending', '2021-07-14 20:59:51', '2025-12-17 19:47:39', '2d20EjoA', '4274481'), + (61605, 639, 919, 'maybe', '2021-07-17 20:31:50', '2025-12-17 19:47:39', '2d20EjoA', '4275957'), + (61606, 639, 920, 'attending', '2021-07-19 22:39:05', '2025-12-17 19:47:40', '2d20EjoA', '4277819'), + (61607, 639, 921, 'not_attending', '2021-07-14 20:59:52', '2025-12-17 19:47:39', '2d20EjoA', '4278368'), + (61608, 639, 926, 'attending', '2021-08-17 14:58:17', '2025-12-17 19:47:42', '2d20EjoA', '4297211'), + (61609, 639, 928, 'attending', '2021-07-30 15:11:37', '2025-12-17 19:47:40', '2d20EjoA', '4297218'), + (61610, 639, 929, 'attending', '2021-08-03 21:43:04', '2025-12-17 19:47:41', '2d20EjoA', '4297223'), + (61611, 639, 932, 'maybe', '2021-08-22 17:26:33', '2025-12-17 19:47:42', '2d20EjoA', '4301664'), + (61612, 639, 933, 'attending', '2021-07-25 08:45:28', '2025-12-17 19:47:40', '2d20EjoA', '4301723'), + (61613, 639, 934, 'attending', '2021-08-03 21:47:54', '2025-12-17 19:47:40', '2d20EjoA', '4302093'), + (61614, 639, 935, 'attending', '2021-08-11 21:17:33', '2025-12-17 19:47:41', '2d20EjoA', '4304151'), + (61615, 639, 940, 'maybe', '2021-07-29 18:38:14', '2025-12-17 19:47:40', '2d20EjoA', '4309049'), + (61616, 639, 947, 'attending', '2021-08-03 00:35:50', '2025-12-17 19:47:41', '2d20EjoA', '4315713'), + (61617, 639, 948, 'attending', '2021-08-11 09:35:03', '2025-12-17 19:47:41', '2d20EjoA', '4315714'), + (61618, 639, 951, 'attending', '2021-07-28 02:53:57', '2025-12-17 19:47:43', '2d20EjoA', '4315731'), + (61619, 639, 952, 'maybe', '2021-08-05 20:25:35', '2025-12-17 19:47:41', '2d20EjoA', '4318286'), + (61620, 639, 959, 'attending', '2021-08-07 16:24:50', '2025-12-17 19:47:41', '2d20EjoA', '4344515'), + (61621, 639, 961, 'maybe', '2021-08-10 15:20:55', '2025-12-17 19:47:42', '2d20EjoA', '4345519'), + (61622, 639, 971, 'attending', '2021-09-03 20:05:20', '2025-12-17 19:47:43', '2d20EjoA', '4356801'), + (61623, 639, 973, 'attending', '2021-08-16 21:17:37', '2025-12-17 19:47:42', '2d20EjoA', '4366186'), + (61624, 639, 974, 'attending', '2021-08-24 02:37:47', '2025-12-17 19:47:42', '2d20EjoA', '4366187'), + (61625, 639, 979, 'attending', '2021-08-19 11:59:23', '2025-12-17 19:47:42', '2d20EjoA', '4379085'), + (61626, 639, 980, 'attending', '2021-08-20 05:03:24', '2025-12-17 19:47:42', '2d20EjoA', '4380358'), + (61627, 639, 981, 'attending', '2021-08-27 17:58:55', '2025-12-17 19:47:42', '2d20EjoA', '4387305'), + (61628, 639, 987, 'attending', '2021-09-01 16:06:41', '2025-12-17 19:47:43', '2d20EjoA', '4402634'), + (61629, 639, 990, 'attending', '2021-09-04 21:53:14', '2025-12-17 19:47:43', '2d20EjoA', '4420735'), + (61630, 639, 991, 'attending', '2021-08-29 19:58:38', '2025-12-17 19:47:43', '2d20EjoA', '4420738'), + (61631, 639, 992, 'attending', '2021-08-29 19:58:41', '2025-12-17 19:47:33', '2d20EjoA', '4420739'), + (61632, 639, 993, 'attending', '2021-08-29 19:58:44', '2025-12-17 19:47:34', '2d20EjoA', '4420741'), + (61633, 639, 994, 'not_attending', '2021-10-02 14:56:14', '2025-12-17 19:47:34', '2d20EjoA', '4420742'), + (61634, 639, 995, 'attending', '2021-10-09 17:52:29', '2025-12-17 19:47:34', '2d20EjoA', '4420744'), + (61635, 639, 996, 'attending', '2021-10-12 04:30:03', '2025-12-17 19:47:35', '2d20EjoA', '4420747'), + (61636, 639, 997, 'attending', '2021-10-20 21:00:29', '2025-12-17 19:47:35', '2d20EjoA', '4420748'), + (61637, 639, 998, 'maybe', '2021-10-30 20:46:50', '2025-12-17 19:47:36', '2d20EjoA', '4420749'), + (61638, 639, 999, 'attending', '2021-08-31 17:39:20', '2025-12-17 19:47:43', '2d20EjoA', '4421150'), + (61639, 639, 1003, 'attending', '2021-09-06 17:42:03', '2025-12-17 19:47:43', '2d20EjoA', '4438802'), + (61640, 639, 1005, 'maybe', '2021-09-21 10:45:49', '2025-12-17 19:47:34', '2d20EjoA', '4438807'), + (61641, 639, 1006, 'attending', '2021-10-01 21:44:21', '2025-12-17 19:47:34', '2d20EjoA', '4438808'), + (61642, 639, 1007, 'attending', '2021-09-02 17:20:27', '2025-12-17 19:47:34', '2d20EjoA', '4438809'), + (61643, 639, 1012, 'not_attending', '2021-10-28 21:46:57', '2025-12-17 19:47:36', '2d20EjoA', '4438816'), + (61644, 639, 1013, 'attending', '2021-09-02 17:22:54', '2025-12-17 19:47:43', '2d20EjoA', '4438817'), + (61645, 639, 1018, 'attending', '2021-09-06 17:41:37', '2025-12-17 19:47:43', '2d20EjoA', '4448883'), + (61646, 639, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '2d20EjoA', '4461883'), + (61647, 639, 1036, 'maybe', '2021-09-21 16:07:14', '2025-12-17 19:47:34', '2d20EjoA', '4493166'), + (61648, 639, 1043, 'attending', '2021-10-20 21:00:28', '2025-12-17 19:47:35', '2d20EjoA', '4496608'), + (61649, 639, 1045, 'maybe', '2021-10-30 20:46:46', '2025-12-17 19:47:36', '2d20EjoA', '4496610'), + (61650, 639, 1046, 'attending', '2021-10-12 04:30:00', '2025-12-17 19:47:35', '2d20EjoA', '4496611'), + (61651, 639, 1047, 'attending', '2021-10-09 17:52:19', '2025-12-17 19:47:34', '2d20EjoA', '4496612'), + (61652, 639, 1048, 'attending', '2021-11-12 23:59:47', '2025-12-17 19:47:36', '2d20EjoA', '4496613'), + (61653, 639, 1051, 'maybe', '2022-01-30 06:57:37', '2025-12-17 19:47:32', '2d20EjoA', '4496616'), + (61654, 639, 1065, 'attending', '2021-09-21 15:03:16', '2025-12-17 19:47:34', '2d20EjoA', '4505800'), + (61655, 639, 1066, 'maybe', '2021-09-21 17:39:08', '2025-12-17 19:47:34', '2d20EjoA', '4506039'), + (61656, 639, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '2d20EjoA', '4508342'), + (61657, 639, 1072, 'attending', '2021-10-06 20:52:56', '2025-12-17 19:47:34', '2d20EjoA', '4516287'), + (61658, 639, 1077, 'attending', '2021-10-12 04:29:53', '2025-12-17 19:47:34', '2d20EjoA', '4540903'), + (61659, 639, 1079, 'attending', '2021-10-10 06:04:43', '2025-12-17 19:47:35', '2d20EjoA', '4563823'), + (61660, 639, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '2d20EjoA', '4568602'), + (61661, 639, 1087, 'attending', '2021-10-15 06:22:00', '2025-12-17 19:47:35', '2d20EjoA', '4572153'), + (61662, 639, 1092, 'not_attending', '2021-10-20 12:14:39', '2025-12-17 19:47:35', '2d20EjoA', '4582837'), + (61663, 639, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '2d20EjoA', '4585962'), + (61664, 639, 1094, 'attending', '2021-10-25 06:57:35', '2025-12-17 19:47:36', '2d20EjoA', '4587337'), + (61665, 639, 1095, 'maybe', '2021-10-27 20:15:40', '2025-12-17 19:47:36', '2d20EjoA', '4596356'), + (61666, 639, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '2d20EjoA', '4598860'), + (61667, 639, 1098, 'attending', '2021-11-08 04:15:54', '2025-12-17 19:47:36', '2d20EjoA', '4598861'), + (61668, 639, 1099, 'attending', '2021-11-06 19:28:47', '2025-12-17 19:47:36', '2d20EjoA', '4602797'), + (61669, 639, 1102, 'attending', '2021-11-13 00:01:56', '2025-12-17 19:47:37', '2d20EjoA', '4612098'), + (61670, 639, 1104, 'attending', '2021-11-08 04:06:25', '2025-12-17 19:47:36', '2d20EjoA', '4618310'), + (61671, 639, 1105, 'attending', '2021-11-08 04:06:32', '2025-12-17 19:47:36', '2d20EjoA', '4618567'), + (61672, 639, 1114, 'attending', '2021-11-12 23:59:31', '2025-12-17 19:47:36', '2d20EjoA', '4637896'), + (61673, 639, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '2d20EjoA', '4642994'), + (61674, 639, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '2d20EjoA', '4642995'), + (61675, 639, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '2d20EjoA', '4642996'), + (61676, 639, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '2d20EjoA', '4642997'), + (61677, 639, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '2d20EjoA', '4645687'), + (61678, 639, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '2d20EjoA', '4645698'), + (61679, 639, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '2d20EjoA', '4645704'), + (61680, 639, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '2d20EjoA', '4645705'), + (61681, 639, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '2d20EjoA', '4668385'), + (61682, 639, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '2d20EjoA', '4694407'), + (61683, 639, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '2d20EjoA', '4736497'), + (61684, 639, 1176, 'attending', '2022-01-30 09:08:21', '2025-12-17 19:47:32', '2d20EjoA', '4736498'), + (61685, 639, 1177, 'attending', '2022-02-13 00:04:23', '2025-12-17 19:47:32', '2d20EjoA', '4736499'), + (61686, 639, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '2d20EjoA', '4736500'), + (61687, 639, 1179, 'attending', '2022-02-19 15:30:34', '2025-12-17 19:47:32', '2d20EjoA', '4736501'), + (61688, 639, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '2d20EjoA', '4736503'), + (61689, 639, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '2d20EjoA', '4736504'), + (61690, 639, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '2d20EjoA', '4746789'), + (61691, 639, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '2d20EjoA', '4753929'), + (61692, 639, 1219, 'maybe', '2022-01-30 18:00:44', '2025-12-17 19:47:32', '2d20EjoA', '4788466'), + (61693, 639, 1222, 'attending', '2022-02-14 08:43:47', '2025-12-17 19:47:32', '2d20EjoA', '5015628'), + (61694, 639, 1228, 'attending', '2022-02-11 22:52:14', '2025-12-17 19:47:32', '2d20EjoA', '5028238'), + (61695, 639, 1229, 'attending', '2022-02-18 19:58:01', '2025-12-17 19:47:32', '2d20EjoA', '5034963'), + (61696, 639, 1232, 'attending', '2022-02-09 23:07:20', '2025-12-17 19:47:32', '2d20EjoA', '5038850'), + (61697, 639, 1236, 'attending', '2022-02-14 08:46:12', '2025-12-17 19:47:32', '2d20EjoA', '5045826'), + (61698, 639, 1237, 'maybe', '2022-02-18 19:58:40', '2025-12-17 19:47:32', '2d20EjoA', '5050641'), + (61699, 639, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '2d20EjoA', '5132533'), + (61700, 639, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '2d20EjoA', '5186582'), + (61701, 639, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '2d20EjoA', '5186583'), + (61702, 639, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '2d20EjoA', '5186585'), + (61703, 639, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '2d20EjoA', '5190437'), + (61704, 639, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '2d20EjoA', '5195095'), + (61705, 639, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '2d20EjoA', '5215989'), + (61706, 639, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '2d20EjoA', '5223686'), + (61707, 639, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '2d20EjoA', '5227432'), + (61708, 639, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '2d20EjoA', '5247467'), + (61709, 639, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '2d20EjoA', '5260800'), + (61710, 639, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '2d20EjoA', '5269930'), + (61711, 639, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '2d20EjoA', '5271448'), + (61712, 639, 1379, 'attending', '2022-05-21 03:44:00', '2025-12-17 19:47:29', '2d20EjoA', '5271449'), + (61713, 639, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '2d20EjoA', '5276469'), + (61714, 639, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '2d20EjoA', '5278159'), + (61715, 639, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '2d20EjoA', '5363695'), + (61716, 639, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '2d20EjoA', '5365960'), + (61717, 639, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '2d20EjoA', '5368973'), + (61718, 639, 1427, 'attending', '2022-05-25 22:32:18', '2025-12-17 19:47:30', '2d20EjoA', '5376074'), + (61719, 639, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '2d20EjoA', '5378247'), + (61720, 639, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '2d20EjoA', '5389605'), + (61721, 639, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '2d20EjoA', '5397265'), + (61722, 639, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '2d20EjoA', '5403967'), + (61723, 639, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '2d20EjoA', '5404786'), + (61724, 639, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '2d20EjoA', '5405203'), + (61725, 639, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '2d20EjoA', '5408794'), + (61726, 639, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '2d20EjoA', '5411699'), + (61727, 639, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '2d20EjoA', '5412550'), + (61728, 639, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '2d20EjoA', '5415046'), + (61729, 639, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '2d20EjoA', '5422086'), + (61730, 639, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '2d20EjoA', '5422406'), + (61731, 639, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '2d20EjoA', '5424565'), + (61732, 639, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '2d20EjoA', '5426882'), + (61733, 639, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '2d20EjoA', '5427083'), + (61734, 639, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '2d20EjoA', '5441125'), + (61735, 639, 1514, 'maybe', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '2d20EjoA', '5441126'), + (61736, 639, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '2d20EjoA', '5441128'), + (61737, 639, 1516, 'attending', '2022-08-20 10:18:26', '2025-12-17 19:47:23', '2d20EjoA', '5441129'), + (61738, 639, 1517, 'not_attending', '2022-08-23 04:25:14', '2025-12-17 19:47:23', '2d20EjoA', '5441130'), + (61739, 639, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '2d20EjoA', '5441131'), + (61740, 639, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '2d20EjoA', '5441132'), + (61741, 639, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '2d20EjoA', '5446643'), + (61742, 639, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '2d20EjoA', '5453325'), + (61743, 639, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '2d20EjoA', '5454516'), + (61744, 639, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '2d20EjoA', '5454605'), + (61745, 639, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '2d20EjoA', '5455037'), + (61746, 639, 1561, 'maybe', '2022-08-03 10:14:22', '2025-12-17 19:47:22', '2d20EjoA', '5461278'), + (61747, 639, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '2d20EjoA', '5469480'), + (61748, 639, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '2d20EjoA', '5471073'), + (61749, 639, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '2d20EjoA', '5474663'), + (61750, 639, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '2d20EjoA', '5482022'), + (61751, 639, 1575, 'attending', '2022-08-25 10:04:11', '2025-12-17 19:47:23', '2d20EjoA', '5482250'), + (61752, 639, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '2d20EjoA', '5482793'), + (61753, 639, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '2d20EjoA', '5488912'), + (61754, 639, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '2d20EjoA', '5492192'), + (61755, 639, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '2d20EjoA', '5493139'), + (61756, 639, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '2d20EjoA', '5493200'), + (61757, 639, 1602, 'attending', '2022-08-13 17:27:47', '2025-12-17 19:47:22', '2d20EjoA', '5497383'), + (61758, 639, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '2d20EjoA', '5502188'), + (61759, 639, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '2d20EjoA', '5505059'), + (61760, 639, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '2d20EjoA', '5509055'), + (61761, 639, 1618, 'attending', '2022-08-25 10:04:16', '2025-12-17 19:47:23', '2d20EjoA', '5512005'), + (61762, 639, 1619, 'maybe', '2022-08-23 04:25:03', '2025-12-17 19:47:23', '2d20EjoA', '5512862'), + (61763, 639, 1623, 'attending', '2022-08-25 10:07:30', '2025-12-17 19:47:23', '2d20EjoA', '5513678'), + (61764, 639, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '2d20EjoA', '5513985'), + (61765, 639, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '2d20EjoA', '5519981'), + (61766, 639, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '2d20EjoA', '5522550'), + (61767, 639, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '2d20EjoA', '5534683'), + (61768, 639, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '2d20EjoA', '5537735'), + (61769, 639, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '2d20EjoA', '5540859'), + (61770, 639, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '2d20EjoA', '5546619'), + (61771, 639, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '2d20EjoA', '5555245'), + (61772, 639, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '2d20EjoA', '5557747'), + (61773, 639, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '2d20EjoA', '5560255'), + (61774, 639, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '2d20EjoA', '5562906'), + (61775, 639, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '2d20EjoA', '5600604'), + (61776, 639, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '2d20EjoA', '5605544'), + (61777, 639, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', '2d20EjoA', '5606737'), + (61778, 639, 1719, 'not_attending', '2022-10-07 12:35:12', '2025-12-17 19:47:12', '2d20EjoA', '5630958'), + (61779, 639, 1720, 'attending', '2022-10-14 10:58:15', '2025-12-17 19:47:12', '2d20EjoA', '5630959'), + (61780, 639, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '2d20EjoA', '5630960'), + (61781, 639, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '2d20EjoA', '5630961'), + (61782, 639, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '2d20EjoA', '5630962'), + (61783, 639, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '2d20EjoA', '5630966'), + (61784, 639, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '2d20EjoA', '5630967'), + (61785, 639, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '2d20EjoA', '5630968'), + (61786, 639, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '2d20EjoA', '5635406'), + (61787, 639, 1735, 'not_attending', '2022-10-08 19:07:42', '2025-12-17 19:47:12', '2d20EjoA', '5637484'), + (61788, 639, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '2d20EjoA', '5638765'), + (61789, 639, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '2d20EjoA', '5640097'), + (61790, 639, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '2d20EjoA', '5640843'), + (61791, 639, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '2d20EjoA', '5641521'), + (61792, 639, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '2d20EjoA', '5642818'), + (61793, 639, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '2d20EjoA', '5652395'), + (61794, 639, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '2d20EjoA', '5670445'), + (61795, 639, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '2d20EjoA', '5671637'), + (61796, 639, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '2d20EjoA', '5672329'), + (61797, 639, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '2d20EjoA', '5674057'), + (61798, 639, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '2d20EjoA', '5674060'), + (61799, 639, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '2d20EjoA', '5677461'), + (61800, 639, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '2d20EjoA', '5698046'), + (61801, 639, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '2d20EjoA', '5699760'), + (61802, 639, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '2d20EjoA', '5741601'), + (61803, 639, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '2d20EjoA', '5763458'), + (61804, 639, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '2d20EjoA', '5774172'), + (61805, 639, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '2d20EjoA', '5818247'), + (61806, 639, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '2d20EjoA', '5819471'), + (61807, 639, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '2d20EjoA', '5827739'), + (61808, 639, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '2d20EjoA', '5844306'), + (61809, 639, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '2d20EjoA', '5850159'), + (61810, 639, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '2d20EjoA', '5858999'), + (61811, 639, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '2d20EjoA', '5871984'), + (61812, 639, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '2d20EjoA', '5876354'), + (61813, 639, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '2d20EjoA', '5880939'), + (61814, 639, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '2d20EjoA', '5880940'), + (61815, 639, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '2d20EjoA', '5880942'), + (61816, 639, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '2d20EjoA', '5880943'), + (61817, 639, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '2d20EjoA', '5887890'), + (61818, 639, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '2d20EjoA', '5888598'), + (61819, 639, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '2d20EjoA', '5893260'), + (61820, 639, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '2d20EjoA', '5899826'), + (61821, 639, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '2d20EjoA', '5900199'), + (61822, 639, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '2d20EjoA', '5900200'), + (61823, 639, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '2d20EjoA', '5900202'), + (61824, 639, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '2d20EjoA', '5900203'), + (61825, 639, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '2d20EjoA', '5901108'), + (61826, 639, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '2d20EjoA', '5901126'), + (61827, 639, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '2d20EjoA', '5909655'), + (61828, 639, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '2d20EjoA', '5910522'), + (61829, 639, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '2d20EjoA', '5910526'), + (61830, 639, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '2d20EjoA', '5910528'), + (61831, 639, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '2d20EjoA', '5916219'), + (61832, 639, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '2d20EjoA', '5936234'), + (61833, 639, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '2d20EjoA', '5958351'), + (61834, 639, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '2d20EjoA', '5959751'), + (61835, 639, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '2d20EjoA', '5959755'), + (61836, 639, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '2d20EjoA', '5960055'), + (61837, 639, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '2d20EjoA', '5961684'), + (61838, 639, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '2d20EjoA', '5962132'), + (61839, 639, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '2d20EjoA', '5962133'), + (61840, 639, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '2d20EjoA', '5962134'), + (61841, 639, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '2d20EjoA', '5962317'), + (61842, 639, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '2d20EjoA', '5962318'), + (61843, 639, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '2d20EjoA', '5965933'), + (61844, 639, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '2d20EjoA', '5967014'), + (61845, 639, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '2d20EjoA', '5972763'), + (61846, 639, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '2d20EjoA', '5972815'), + (61847, 639, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '2d20EjoA', '5974016'), + (61848, 639, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '2d20EjoA', '5981515'), + (61849, 639, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '2d20EjoA', '5993516'), + (61850, 639, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '2d20EjoA', '5998939'), + (61851, 639, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '2d20EjoA', '6028191'), + (61852, 639, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '2d20EjoA', '6040066'), + (61853, 639, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '2d20EjoA', '6042717'), + (61854, 639, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '2d20EjoA', '6044838'), + (61855, 639, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '2d20EjoA', '6044839'), + (61856, 639, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d20EjoA', '6045684'), + (61857, 639, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '2d20EjoA', '6050104'), + (61858, 639, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '2d20EjoA', '6053195'), + (61859, 639, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '2d20EjoA', '6053198'), + (61860, 639, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '2d20EjoA', '6056085'), + (61861, 639, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '2d20EjoA', '6056916'), + (61862, 639, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '2d20EjoA', '6059290'), + (61863, 639, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '2d20EjoA', '6060328'), + (61864, 639, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '2d20EjoA', '6061037'), + (61865, 639, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '2d20EjoA', '6061039'), + (61866, 639, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '2d20EjoA', '6067245'), + (61867, 639, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '2d20EjoA', '6068094'), + (61868, 639, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '2d20EjoA', '6068252'), + (61869, 639, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '2d20EjoA', '6068253'), + (61870, 639, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '2d20EjoA', '6068254'), + (61871, 639, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '2d20EjoA', '6068280'), + (61872, 639, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '2d20EjoA', '6069093'), + (61873, 639, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '2d20EjoA', '6072528'), + (61874, 639, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '2d20EjoA', '6079840'), + (61875, 639, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '2d20EjoA', '6083398'), + (61876, 639, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '2d20EjoA', '6093504'), + (61877, 639, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '2d20EjoA', '6097414'), + (61878, 639, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '2d20EjoA', '6097442'), + (61879, 639, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '2d20EjoA', '6097684'), + (61880, 639, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '2d20EjoA', '6098762'), + (61881, 639, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '2d20EjoA', '6101362'), + (61882, 639, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '2d20EjoA', '6103752'), + (61883, 639, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '2d20EjoA', '6107314'), + (61884, 640, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'mq1nab1m', '4356801'), + (61885, 640, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'mq1nab1m', '4366187'), + (61886, 640, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'mq1nab1m', '4420735'), + (61887, 640, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'mq1nab1m', '4420738'), + (61888, 640, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'mq1nab1m', '4420739'), + (61889, 640, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'mq1nab1m', '4420741'), + (61890, 640, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'mq1nab1m', '4420744'), + (61891, 640, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'mq1nab1m', '4420747'), + (61892, 640, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'mq1nab1m', '4420748'), + (61893, 640, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'mq1nab1m', '4420749'), + (61894, 640, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'mq1nab1m', '4461883'), + (61895, 640, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mq1nab1m', '6045684'), + (61896, 641, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'AXoMKVQm', '7704043'), + (61897, 641, 2920, 'not_attending', '2024-11-23 23:13:01', '2025-12-17 19:46:28', 'AXoMKVQm', '7708406'), + (61898, 641, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'AXoMKVQm', '7712467'), + (61899, 641, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'AXoMKVQm', '7713585'), + (61900, 641, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'AXoMKVQm', '7713586'), + (61901, 641, 2947, 'attending', '2024-12-09 03:10:46', '2025-12-17 19:46:21', 'AXoMKVQm', '7727445'), + (61902, 641, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'AXoMKVQm', '7738518'), + (61903, 641, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'AXoMKVQm', '7750636'), + (61904, 641, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'AXoMKVQm', '7796540'), + (61905, 641, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'AXoMKVQm', '7796541'), + (61906, 641, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'AXoMKVQm', '7796542'), + (61907, 641, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'AXoMKVQm', '7825913'), + (61908, 641, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'AXoMKVQm', '7826209'), + (61909, 641, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'AXoMKVQm', '7834742'), + (61910, 641, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'AXoMKVQm', '7842108'), + (61911, 641, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'AXoMKVQm', '7842902'), + (61912, 641, 2992, 'maybe', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'AXoMKVQm', '7842903'), + (61913, 641, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'AXoMKVQm', '7842904'), + (61914, 641, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'AXoMKVQm', '7842905'), + (61915, 641, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'AXoMKVQm', '7855719'), + (61916, 641, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'AXoMKVQm', '7860683'), + (61917, 641, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'AXoMKVQm', '7860684'), + (61918, 641, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'AXoMKVQm', '7866095'), + (61919, 641, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'AXoMKVQm', '7869170'), + (61920, 641, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'AXoMKVQm', '7869188'), + (61921, 641, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'AXoMKVQm', '7869201'), + (61922, 641, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'AXoMKVQm', '7877465'), + (61923, 641, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'AXoMKVQm', '7878570'), + (61924, 641, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'AXoMKVQm', '7888250'), + (61925, 641, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'AXoMKVQm', '8349164'), + (61926, 641, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'AXoMKVQm', '8349545'), + (61927, 641, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'AXoMKVQm', '8353584'), + (61928, 642, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6jjvn3m', '5441131'), + (61929, 642, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6jjvn3m', '5441132'), + (61930, 642, 1561, 'not_attending', '2022-08-11 04:53:05', '2025-12-17 19:47:22', 'm6jjvn3m', '5461278'), + (61931, 642, 1588, 'attending', '2022-08-13 22:37:37', '2025-12-17 19:47:22', 'm6jjvn3m', '5493139'), + (61932, 642, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6jjvn3m', '5502188'), + (61933, 642, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6jjvn3m', '5505059'), + (61934, 642, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6jjvn3m', '5509055'), + (61935, 642, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6jjvn3m', '5512862'), + (61936, 642, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6jjvn3m', '5513985'), + (61937, 642, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6jjvn3m', '5522550'), + (61938, 642, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6jjvn3m', '5534683'), + (61939, 642, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6jjvn3m', '5537735'), + (61940, 642, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6jjvn3m', '5540859'), + (61941, 642, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6jjvn3m', '5546619'), + (61942, 642, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6jjvn3m', '5555245'), + (61943, 642, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6jjvn3m', '5557747'), + (61944, 642, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6jjvn3m', '5560255'), + (61945, 642, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6jjvn3m', '5562906'), + (61946, 642, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6jjvn3m', '5600604'), + (61947, 642, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6jjvn3m', '5605544'), + (61948, 642, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'm6jjvn3m', '5606737'), + (61949, 642, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6jjvn3m', '5635406'), + (61950, 642, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6jjvn3m', '5638765'), + (61951, 642, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm6jjvn3m', '5640843'), + (61952, 642, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6jjvn3m', '6045684'), + (61953, 643, 2276, 'not_attending', '2023-10-12 21:50:13', '2025-12-17 19:46:46', '2d2B7PJd', '6453951'), + (61954, 643, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '2d2B7PJd', '6461696'), + (61955, 643, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '2d2B7PJd', '6462129'), + (61956, 643, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '2d2B7PJd', '6463218'), + (61957, 643, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '2d2B7PJd', '6472181'), + (61958, 643, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '2d2B7PJd', '6482693'), + (61959, 643, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '2d2B7PJd', '6484200'), + (61960, 643, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '2d2B7PJd', '6484680'), + (61961, 643, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '2d2B7PJd', '6507741'), + (61962, 643, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '2d2B7PJd', '6514659'), + (61963, 643, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '2d2B7PJd', '6514660'), + (61964, 643, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '2d2B7PJd', '6519103'), + (61965, 643, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '2d2B7PJd', '6535681'), + (61966, 643, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '2d2B7PJd', '6584747'), + (61967, 643, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '2d2B7PJd', '6587097'), + (61968, 643, 2359, 'attending', '2023-12-01 22:13:07', '2025-12-17 19:46:48', '2d2B7PJd', '6596617'), + (61969, 643, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '2d2B7PJd', '6609022'), + (61970, 643, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '2d2B7PJd', '6632757'), + (61971, 643, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '2d2B7PJd', '6644187'), + (61972, 643, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '2d2B7PJd', '6648951'), + (61973, 643, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '2d2B7PJd', '6648952'), + (61974, 643, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '2d2B7PJd', '6655401'), + (61975, 643, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '2d2B7PJd', '6661585'), + (61976, 643, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '2d2B7PJd', '6661588'), + (61977, 643, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '2d2B7PJd', '6661589'), + (61978, 643, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '2d2B7PJd', '6699906'), + (61979, 643, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '2d2B7PJd', '6699913'), + (61980, 643, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '2d2B7PJd', '6701109'), + (61981, 643, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '2d2B7PJd', '6704561'), + (61982, 643, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '2d2B7PJd', '6705219'), + (61983, 643, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '2d2B7PJd', '6708410'), + (61984, 643, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '2d2B7PJd', '6710153'), + (61985, 643, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '2d2B7PJd', '6711552'), + (61986, 643, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '2d2B7PJd', '6711553'), + (61987, 643, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '2d2B7PJd', '6722688'), + (61988, 643, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '2d2B7PJd', '6730620'), + (61989, 643, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '2d2B7PJd', '6730642'), + (61990, 643, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '2d2B7PJd', '6740364'), + (61991, 643, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '2d2B7PJd', '6743829'), + (61992, 643, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '2d2B7PJd', '7030380'), + (61993, 643, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '2d2B7PJd', '7033677'), + (61994, 643, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '2d2B7PJd', '7035415'), + (61995, 643, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '2d2B7PJd', '7044715'), + (61996, 643, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '2d2B7PJd', '7050318'), + (61997, 643, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '2d2B7PJd', '7050319'), + (61998, 643, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '2d2B7PJd', '7050322'), + (61999, 643, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '2d2B7PJd', '7057804'), + (62000, 643, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '2d2B7PJd', '7072824'), + (62001, 643, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '2d2B7PJd', '7074348'), + (62002, 643, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '2d2B7PJd', '7089267'), + (62003, 643, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '2d2B7PJd', '7098747'), + (62004, 643, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '2d2B7PJd', '7113468'), + (62005, 643, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '2d2B7PJd', '7114856'), + (62006, 643, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '2d2B7PJd', '7114951'), + (62007, 643, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '2d2B7PJd', '7114955'), + (62008, 643, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '2d2B7PJd', '7114956'), + (62009, 643, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '2d2B7PJd', '7153615'), + (62010, 643, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '2d2B7PJd', '7159484'), + (62011, 644, 1824, 'not_attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'xd98Epq4', '5774172'), + (62012, 644, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'xd98Epq4', '5819471'), + (62013, 644, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'xd98Epq4', '5827739'), + (62014, 644, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xd98Epq4', '5844306'), + (62015, 644, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xd98Epq4', '5850159'), + (62016, 644, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xd98Epq4', '5858999'), + (62017, 644, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xd98Epq4', '5871984'), + (62018, 644, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xd98Epq4', '5876354'), + (62019, 644, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xd98Epq4', '5880939'), + (62020, 644, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xd98Epq4', '5880940'), + (62021, 644, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xd98Epq4', '5880942'), + (62022, 644, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xd98Epq4', '5880943'), + (62023, 644, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xd98Epq4', '5887890'), + (62024, 644, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xd98Epq4', '5888598'), + (62025, 644, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xd98Epq4', '5893260'), + (62026, 644, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xd98Epq4', '5899826'), + (62027, 644, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xd98Epq4', '5900199'), + (62028, 644, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xd98Epq4', '5900200'), + (62029, 644, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xd98Epq4', '5900202'), + (62030, 644, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xd98Epq4', '5900203'), + (62031, 644, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xd98Epq4', '5901108'), + (62032, 644, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xd98Epq4', '5901126'), + (62033, 644, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xd98Epq4', '5909655'), + (62034, 644, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xd98Epq4', '5910522'), + (62035, 644, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xd98Epq4', '5910526'), + (62036, 644, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xd98Epq4', '5910528'), + (62037, 644, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xd98Epq4', '5916219'), + (62038, 644, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xd98Epq4', '5936234'), + (62039, 644, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xd98Epq4', '5958351'), + (62040, 644, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xd98Epq4', '5959751'), + (62041, 644, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xd98Epq4', '5959755'), + (62042, 644, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xd98Epq4', '5960055'), + (62043, 644, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xd98Epq4', '5961684'), + (62044, 644, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'xd98Epq4', '5962132'), + (62045, 644, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'xd98Epq4', '5962133'), + (62046, 644, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xd98Epq4', '5962134'), + (62047, 644, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xd98Epq4', '5962317'), + (62048, 644, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xd98Epq4', '5962318'), + (62049, 644, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'xd98Epq4', '5965933'), + (62050, 644, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xd98Epq4', '5967014'), + (62051, 644, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xd98Epq4', '5972815'), + (62052, 644, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xd98Epq4', '5974016'), + (62053, 644, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xd98Epq4', '5981515'), + (62054, 644, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xd98Epq4', '5993516'), + (62055, 644, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xd98Epq4', '5998939'), + (62056, 644, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xd98Epq4', '6028191'), + (62057, 644, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xd98Epq4', '6040066'), + (62058, 644, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xd98Epq4', '6042717'), + (62059, 644, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xd98Epq4', '6044838'), + (62060, 644, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xd98Epq4', '6044839'), + (62061, 644, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd98Epq4', '6045684'), + (62062, 644, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xd98Epq4', '6050104'), + (62063, 644, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xd98Epq4', '6053195'), + (62064, 644, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xd98Epq4', '6053198'), + (62065, 644, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xd98Epq4', '6056085'), + (62066, 644, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xd98Epq4', '6056916'), + (62067, 644, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xd98Epq4', '6059290'), + (62068, 644, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xd98Epq4', '6060328'), + (62069, 644, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xd98Epq4', '6061037'), + (62070, 644, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xd98Epq4', '6061039'), + (62071, 644, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xd98Epq4', '6067245'), + (62072, 644, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xd98Epq4', '6068094'), + (62073, 644, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xd98Epq4', '6068252'), + (62074, 644, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xd98Epq4', '6068253'), + (62075, 644, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xd98Epq4', '6068254'), + (62076, 644, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'xd98Epq4', '6068280'), + (62077, 644, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xd98Epq4', '6069093'), + (62078, 644, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xd98Epq4', '6072528'), + (62079, 644, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xd98Epq4', '6079840'), + (62080, 644, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xd98Epq4', '6083398'), + (62081, 644, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xd98Epq4', '6093504'), + (62082, 644, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xd98Epq4', '6097414'), + (62083, 644, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xd98Epq4', '6097442'), + (62084, 644, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xd98Epq4', '6097684'), + (62085, 644, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xd98Epq4', '6098762'), + (62086, 644, 2064, 'attending', '2023-06-23 18:02:34', '2025-12-17 19:46:50', 'xd98Epq4', '6099988'), + (62087, 644, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xd98Epq4', '6101361'), + (62088, 644, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xd98Epq4', '6101362'), + (62089, 644, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'xd98Epq4', '6103752'), + (62090, 644, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xd98Epq4', '6107314'), + (62091, 644, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xd98Epq4', '6120034'), + (62092, 644, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'xd98Epq4', '6136733'), + (62093, 644, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xd98Epq4', '6137989'), + (62094, 644, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xd98Epq4', '6150864'), + (62095, 644, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xd98Epq4', '6155491'), + (62096, 644, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xd98Epq4', '6164417'), + (62097, 644, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xd98Epq4', '6166388'), + (62098, 644, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xd98Epq4', '6176439'), + (62099, 644, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xd98Epq4', '6182410'), + (62100, 644, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xd98Epq4', '6185812'), + (62101, 644, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xd98Epq4', '6187651'), + (62102, 644, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xd98Epq4', '6187963'), + (62103, 644, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xd98Epq4', '6187964'), + (62104, 644, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xd98Epq4', '6187966'), + (62105, 644, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xd98Epq4', '6187967'), + (62106, 644, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xd98Epq4', '6187969'), + (62107, 644, 2139, 'attending', '2023-07-07 01:54:27', '2025-12-17 19:46:52', 'xd98Epq4', '6188027'), + (62108, 644, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xd98Epq4', '6334878'), + (62109, 644, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xd98Epq4', '6337236'), + (62110, 644, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xd98Epq4', '6337970'), + (62111, 644, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xd98Epq4', '6338308'), + (62112, 644, 2159, 'attending', '2023-07-17 19:56:18', '2025-12-17 19:46:53', 'xd98Epq4', '6338355'), + (62113, 644, 2160, 'attending', '2023-07-23 13:22:46', '2025-12-17 19:46:54', 'xd98Epq4', '6338358'), + (62114, 644, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'xd98Epq4', '6340845'), + (62115, 644, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xd98Epq4', '6341710'), + (62116, 644, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xd98Epq4', '6342044'), + (62117, 644, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xd98Epq4', '6342298'), + (62118, 644, 2173, 'attending', '2023-07-18 15:51:51', '2025-12-17 19:46:53', 'xd98Epq4', '6342769'), + (62119, 644, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xd98Epq4', '6343294'), + (62120, 644, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xd98Epq4', '6347034'), + (62121, 644, 2177, 'not_attending', '2023-08-07 19:40:42', '2025-12-17 19:46:55', 'xd98Epq4', '6347053'), + (62122, 644, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xd98Epq4', '6347056'), + (62123, 644, 2182, 'attending', '2023-07-25 21:25:28', '2025-12-17 19:46:53', 'xd98Epq4', '6349618'), + (62124, 644, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xd98Epq4', '6353830'), + (62125, 644, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xd98Epq4', '6353831'), + (62126, 644, 2187, 'not_attending', '2023-08-01 21:38:04', '2025-12-17 19:46:55', 'xd98Epq4', '6357559'), + (62127, 644, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xd98Epq4', '6357867'), + (62128, 644, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xd98Epq4', '6358652'), + (62129, 644, 2204, 'attending', '2023-08-14 23:01:35', '2025-12-17 19:46:55', 'xd98Epq4', '6361542'), + (62130, 644, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'xd98Epq4', '6361709'), + (62131, 644, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xd98Epq4', '6361710'), + (62132, 644, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xd98Epq4', '6361711'), + (62133, 644, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xd98Epq4', '6361712'), + (62134, 644, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xd98Epq4', '6361713'), + (62135, 644, 2231, 'not_attending', '2023-08-21 12:38:22', '2025-12-17 19:46:55', 'xd98Epq4', '6374748'), + (62136, 644, 2232, 'maybe', '2023-08-25 15:19:59', '2025-12-17 19:46:55', 'xd98Epq4', '6374818'), + (62137, 644, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'xd98Epq4', '6382573'), + (62138, 644, 2239, 'attending', '2023-09-02 20:39:11', '2025-12-17 19:46:56', 'xd98Epq4', '6387592'), + (62139, 644, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'xd98Epq4', '6388604'), + (62140, 644, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xd98Epq4', '6394629'), + (62141, 644, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xd98Epq4', '6394631'), + (62142, 644, 2253, 'not_attending', '2023-09-30 13:00:54', '2025-12-17 19:46:45', 'xd98Epq4', '6401811'), + (62143, 644, 2265, 'attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', 'xd98Epq4', '6439625'), + (62144, 644, 2266, 'maybe', '2023-10-06 14:39:00', '2025-12-17 19:46:45', 'xd98Epq4', '6439635'), + (62145, 644, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xd98Epq4', '6440863'), + (62146, 644, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xd98Epq4', '6445440'), + (62147, 644, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xd98Epq4', '6453951'), + (62148, 644, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xd98Epq4', '6461696'), + (62149, 644, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xd98Epq4', '6462129'), + (62150, 644, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xd98Epq4', '6463218'), + (62151, 644, 2299, 'attending', '2023-10-16 13:26:31', '2025-12-17 19:46:46', 'xd98Epq4', '6472181'), + (62152, 644, 2301, 'attending', '2023-10-16 13:29:56', '2025-12-17 19:46:46', 'xd98Epq4', '6474276'), + (62153, 644, 2303, 'attending', '2023-10-23 18:10:53', '2025-12-17 19:46:47', 'xd98Epq4', '6482691'), + (62154, 644, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'xd98Epq4', '6482693'), + (62155, 644, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'xd98Epq4', '6484200'), + (62156, 644, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xd98Epq4', '6484680'), + (62157, 644, 2310, 'not_attending', '2023-10-29 13:04:45', '2025-12-17 19:46:47', 'xd98Epq4', '6487709'), + (62158, 644, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xd98Epq4', '6507741'), + (62159, 644, 2318, 'maybe', '2023-10-30 14:38:22', '2025-12-17 19:46:47', 'xd98Epq4', '6508566'), + (62160, 644, 2322, 'attending', '2023-11-15 16:35:23', '2025-12-17 19:46:48', 'xd98Epq4', '6514659'), + (62161, 644, 2323, 'not_attending', '2023-11-27 22:57:38', '2025-12-17 19:46:49', 'xd98Epq4', '6514660'), + (62162, 644, 2324, 'attending', '2023-12-09 23:38:24', '2025-12-17 19:46:49', 'xd98Epq4', '6514662'), + (62163, 644, 2325, 'attending', '2023-12-15 02:30:08', '2025-12-17 19:46:36', 'xd98Epq4', '6514663'), + (62164, 644, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xd98Epq4', '6519103'), + (62165, 644, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xd98Epq4', '6535681'), + (62166, 644, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xd98Epq4', '6584747'), + (62167, 644, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xd98Epq4', '6587097'), + (62168, 644, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xd98Epq4', '6609022'), + (62169, 644, 2373, 'attending', '2023-12-26 17:21:14', '2025-12-17 19:46:38', 'xd98Epq4', '6632678'), + (62170, 644, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'xd98Epq4', '6632757'), + (62171, 644, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xd98Epq4', '6644187'), + (62172, 644, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xd98Epq4', '6648951'), + (62173, 644, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xd98Epq4', '6648952'), + (62174, 644, 2388, 'attending', '2024-01-05 00:14:46', '2025-12-17 19:46:37', 'xd98Epq4', '6649244'), + (62175, 644, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xd98Epq4', '6655401'), + (62176, 644, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xd98Epq4', '6661585'), + (62177, 644, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xd98Epq4', '6661588'), + (62178, 644, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xd98Epq4', '6661589'), + (62179, 644, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xd98Epq4', '6699906'), + (62180, 644, 2408, 'not_attending', '2024-01-23 15:13:50', '2025-12-17 19:46:40', 'xd98Epq4', '6699907'), + (62181, 644, 2409, 'attending', '2024-01-30 11:10:31', '2025-12-17 19:46:41', 'xd98Epq4', '6699909'), + (62182, 644, 2411, 'not_attending', '2024-02-15 23:28:36', '2025-12-17 19:46:42', 'xd98Epq4', '6699913'), + (62183, 644, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xd98Epq4', '6701109'), + (62184, 644, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xd98Epq4', '6705219'), + (62185, 644, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xd98Epq4', '6710153'), + (62186, 644, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xd98Epq4', '6711552'), + (62187, 644, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xd98Epq4', '6711553'), + (62188, 644, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xd98Epq4', '6722688'), + (62189, 644, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xd98Epq4', '6730620'), + (62190, 644, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'xd98Epq4', '6730642'), + (62191, 644, 2449, 'not_attending', '2024-02-18 23:59:55', '2025-12-17 19:46:42', 'xd98Epq4', '6735833'), + (62192, 644, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xd98Epq4', '6740364'), + (62193, 644, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xd98Epq4', '6743829'), + (62194, 644, 2467, 'attending', '2024-02-21 02:16:04', '2025-12-17 19:46:43', 'xd98Epq4', '7029987'), + (62195, 644, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xd98Epq4', '7030380'), + (62196, 644, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xd98Epq4', '7033677'), + (62197, 644, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'xd98Epq4', '7035415'), + (62198, 644, 2477, 'maybe', '2024-02-21 19:51:01', '2025-12-17 19:46:42', 'xd98Epq4', '7035692'), + (62199, 644, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xd98Epq4', '7044715'), + (62200, 644, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xd98Epq4', '7050318'), + (62201, 644, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xd98Epq4', '7050319'), + (62202, 644, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xd98Epq4', '7050322'), + (62203, 644, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xd98Epq4', '7057804'), + (62204, 644, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xd98Epq4', '7072824'), + (62205, 644, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xd98Epq4', '7074348'), + (62206, 644, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xd98Epq4', '7074364'), + (62207, 644, 2539, 'attending', '2024-04-01 20:06:00', '2025-12-17 19:46:33', 'xd98Epq4', '7085486'), + (62208, 644, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'xd98Epq4', '7089267'), + (62209, 644, 2543, 'attending', '2024-03-18 14:36:34', '2025-12-17 19:46:33', 'xd98Epq4', '7091456'), + (62210, 644, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xd98Epq4', '7098747'), + (62211, 644, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xd98Epq4', '7113468'), + (62212, 644, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xd98Epq4', '7114856'), + (62213, 644, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xd98Epq4', '7114951'), + (62214, 644, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xd98Epq4', '7114955'), + (62215, 644, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xd98Epq4', '7114956'), + (62216, 644, 2558, 'maybe', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xd98Epq4', '7114957'), + (62217, 644, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'xd98Epq4', '7153615'), + (62218, 644, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xd98Epq4', '7159484'), + (62219, 644, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xd98Epq4', '7178446'), + (62220, 644, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'xd98Epq4', '7220467'), + (62221, 644, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xd98Epq4', '7240354'), + (62222, 644, 2616, 'attending', '2024-05-05 20:44:23', '2025-12-17 19:46:35', 'xd98Epq4', '7250296'), + (62223, 644, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xd98Epq4', '7251633'), + (62224, 644, 2622, 'attending', '2024-05-09 05:24:11', '2025-12-17 19:46:35', 'xd98Epq4', '7262064'), + (62225, 644, 2627, 'attending', '2024-05-24 15:10:27', '2025-12-17 19:46:35', 'xd98Epq4', '7264724'), + (62226, 644, 2628, 'attending', '2024-05-29 12:36:10', '2025-12-17 19:46:36', 'xd98Epq4', '7264725'), + (62227, 644, 2629, 'attending', '2024-06-05 16:43:57', '2025-12-17 19:46:28', 'xd98Epq4', '7264726'), + (62228, 644, 2645, 'attending', '2024-05-19 19:41:28', '2025-12-17 19:46:35', 'xd98Epq4', '7279964'), + (62229, 644, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', 'xd98Epq4', '7302674'), + (62230, 644, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xd98Epq4', '7324073'), + (62231, 644, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xd98Epq4', '7324074'), + (62232, 644, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xd98Epq4', '7324075'), + (62233, 644, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'xd98Epq4', '7324078'), + (62234, 644, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xd98Epq4', '7324082'), + (62235, 644, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xd98Epq4', '7331457'), + (62236, 644, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'xd98Epq4', '7356752'), + (62237, 644, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xd98Epq4', '7363643'), + (62238, 644, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xd98Epq4', '7368606'), + (62239, 644, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xd98Epq4', '7397462'), + (62240, 644, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xd98Epq4', '7424275'), + (62241, 644, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xd98Epq4', '7432751'), + (62242, 644, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xd98Epq4', '7432752'), + (62243, 644, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xd98Epq4', '7432753'), + (62244, 644, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xd98Epq4', '7432754'), + (62245, 644, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xd98Epq4', '7432755'), + (62246, 644, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xd98Epq4', '7432756'), + (62247, 644, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xd98Epq4', '7432758'), + (62248, 644, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xd98Epq4', '7432759'), + (62249, 644, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xd98Epq4', '7433834'), + (62250, 644, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'xd98Epq4', '7470197'), + (62251, 644, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xd98Epq4', '7685613'), + (62252, 644, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xd98Epq4', '7688194'), + (62253, 644, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xd98Epq4', '7688196'), + (62254, 644, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xd98Epq4', '7688289'), + (62255, 644, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xd98Epq4', '7692763'), + (62256, 644, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xd98Epq4', '7697552'), + (62257, 644, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xd98Epq4', '7699878'), + (62258, 644, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'xd98Epq4', '7704043'), + (62259, 644, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'xd98Epq4', '7712467'), + (62260, 644, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'xd98Epq4', '7713585'), + (62261, 644, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'xd98Epq4', '7713586'), + (62262, 644, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xd98Epq4', '7738518'), + (62263, 644, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xd98Epq4', '7750636'), + (62264, 644, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xd98Epq4', '7796540'), + (62265, 644, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xd98Epq4', '7796541'), + (62266, 644, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xd98Epq4', '7796542'), + (62267, 644, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xd98Epq4', '7825913'), + (62268, 644, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xd98Epq4', '7826209'), + (62269, 644, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xd98Epq4', '7834742'), + (62270, 644, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'xd98Epq4', '7842108'), + (62271, 644, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xd98Epq4', '7842902'), + (62272, 644, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xd98Epq4', '7842903'), + (62273, 644, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xd98Epq4', '7842904'), + (62274, 644, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xd98Epq4', '7842905'), + (62275, 644, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xd98Epq4', '7855719'), + (62276, 644, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xd98Epq4', '7860683'), + (62277, 644, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xd98Epq4', '7860684'), + (62278, 644, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xd98Epq4', '7866095'), + (62279, 644, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xd98Epq4', '7869170'), + (62280, 644, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xd98Epq4', '7869188'), + (62281, 644, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xd98Epq4', '7869201'), + (62282, 644, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xd98Epq4', '7877465'), + (62283, 644, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xd98Epq4', '7888250'), + (62284, 644, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xd98Epq4', '7904777'), + (62285, 644, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xd98Epq4', '8349164'), + (62286, 644, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xd98Epq4', '8349545'), + (62287, 644, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xd98Epq4', '8368028'), + (62288, 644, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'xd98Epq4', '8368029'), + (62289, 644, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xd98Epq4', '8388462'), + (62290, 644, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xd98Epq4', '8400273'), + (62291, 644, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'xd98Epq4', '8400275'), + (62292, 644, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'xd98Epq4', '8400276'), + (62293, 644, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xd98Epq4', '8404977'), + (62294, 644, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xd98Epq4', '8430783'), + (62295, 644, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xd98Epq4', '8430784'), + (62296, 644, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xd98Epq4', '8430799'), + (62297, 644, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xd98Epq4', '8430800'), + (62298, 644, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xd98Epq4', '8430801'), + (62299, 644, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'xd98Epq4', '8438709'), + (62300, 644, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xd98Epq4', '8457738'), + (62301, 644, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xd98Epq4', '8459566'), + (62302, 644, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xd98Epq4', '8459567'), + (62303, 644, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xd98Epq4', '8461032'), + (62304, 644, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xd98Epq4', '8477877'), + (62305, 644, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xd98Epq4', '8485688'), + (62306, 644, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xd98Epq4', '8490587'), + (62307, 644, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xd98Epq4', '8493552'), + (62308, 644, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xd98Epq4', '8493553'), + (62309, 644, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xd98Epq4', '8493554'), + (62310, 644, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xd98Epq4', '8493555'), + (62311, 644, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xd98Epq4', '8493556'), + (62312, 644, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xd98Epq4', '8493557'), + (62313, 644, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xd98Epq4', '8493558'), + (62314, 644, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xd98Epq4', '8493559'), + (62315, 644, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xd98Epq4', '8493560'), + (62316, 644, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'xd98Epq4', '8493561'), + (62317, 644, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xd98Epq4', '8493572'), + (62318, 644, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xd98Epq4', '8540725'), + (62319, 644, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xd98Epq4', '8555421'), + (62320, 645, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mpOqPe9d', '5441131'), + (62321, 645, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mpOqPe9d', '5441132'), + (62322, 645, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mpOqPe9d', '5505059'), + (62323, 645, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mpOqPe9d', '5509055'), + (62324, 645, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mpOqPe9d', '5512862'), + (62325, 645, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mpOqPe9d', '5513985'), + (62326, 645, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mpOqPe9d', '5522550'), + (62327, 645, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mpOqPe9d', '5534683'), + (62328, 645, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mpOqPe9d', '5537735'), + (62329, 645, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mpOqPe9d', '5540859'), + (62330, 645, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mpOqPe9d', '5546619'), + (62331, 645, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mpOqPe9d', '5555245'), + (62332, 645, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mpOqPe9d', '5557747'), + (62333, 645, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpOqPe9d', '5560255'), + (62334, 645, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mpOqPe9d', '5562906'), + (62335, 645, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mpOqPe9d', '5600604'), + (62336, 645, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpOqPe9d', '5605544'), + (62337, 645, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'mpOqPe9d', '5606737'), + (62338, 645, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpOqPe9d', '5635406'), + (62339, 645, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpOqPe9d', '5638765'), + (62340, 645, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mpOqPe9d', '5640843'), + (62341, 645, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpOqPe9d', '6045684'), + (62342, 646, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dOx5BLLm', '6044839'), + (62343, 646, 1989, 'not_attending', '2023-05-10 19:47:39', '2025-12-17 19:47:03', 'dOx5BLLm', '6044842'), + (62344, 646, 1994, 'not_attending', '2023-04-08 19:25:16', '2025-12-17 19:46:59', 'dOx5BLLm', '6050104'), + (62345, 646, 1998, 'attending', '2023-04-10 22:21:12', '2025-12-17 19:46:59', 'dOx5BLLm', '6052056'), + (62346, 646, 2002, 'maybe', '2023-04-23 15:43:59', '2025-12-17 19:47:01', 'dOx5BLLm', '6052605'), + (62347, 646, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dOx5BLLm', '6053198'), + (62348, 646, 2007, 'attending', '2023-04-08 01:44:48', '2025-12-17 19:46:58', 'dOx5BLLm', '6055291'), + (62349, 646, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dOx5BLLm', '6056916'), + (62350, 646, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dOx5BLLm', '6059290'), + (62351, 646, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dOx5BLLm', '6060328'), + (62352, 646, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dOx5BLLm', '6061037'), + (62353, 646, 2016, 'attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dOx5BLLm', '6061039'), + (62354, 646, 2021, 'maybe', '2023-04-17 14:39:53', '2025-12-17 19:47:00', 'dOx5BLLm', '6066316'), + (62355, 646, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dOx5BLLm', '6067245'), + (62356, 646, 2026, 'attending', '2023-04-26 00:47:58', '2025-12-17 19:47:01', 'dOx5BLLm', '6068078'), + (62357, 646, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dOx5BLLm', '6068094'), + (62358, 646, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dOx5BLLm', '6068252'), + (62359, 646, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dOx5BLLm', '6068253'), + (62360, 646, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dOx5BLLm', '6068254'), + (62361, 646, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dOx5BLLm', '6068280'), + (62362, 646, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dOx5BLLm', '6069093'), + (62363, 646, 2036, 'attending', '2023-04-30 16:24:02', '2025-12-17 19:47:01', 'dOx5BLLm', '6070780'), + (62364, 646, 2037, 'attending', '2023-04-23 15:43:32', '2025-12-17 19:47:00', 'dOx5BLLm', '6071943'), + (62365, 646, 2038, 'attending', '2023-04-23 15:43:46', '2025-12-17 19:47:01', 'dOx5BLLm', '6071944'), + (62366, 646, 2041, 'attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dOx5BLLm', '6072528'), + (62367, 646, 2046, 'not_attending', '2023-05-10 19:47:29', '2025-12-17 19:47:02', 'dOx5BLLm', '6076020'), + (62368, 646, 2047, 'attending', '2023-04-30 16:24:42', '2025-12-17 19:47:02', 'dOx5BLLm', '6076027'), + (62369, 646, 2049, 'maybe', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dOx5BLLm', '6079840'), + (62370, 646, 2050, 'attending', '2023-04-30 16:25:47', '2025-12-17 19:47:02', 'dOx5BLLm', '6080489'), + (62371, 646, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dOx5BLLm', '6083398'), + (62372, 646, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dOx5BLLm', '6093504'), + (62373, 646, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dOx5BLLm', '6097414'), + (62374, 646, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dOx5BLLm', '6097442'), + (62375, 646, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dOx5BLLm', '6097684'), + (62376, 646, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dOx5BLLm', '6098762'), + (62377, 646, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dOx5BLLm', '6101361'), + (62378, 646, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dOx5BLLm', '6101362'), + (62379, 646, 2068, 'not_attending', '2023-05-15 15:24:52', '2025-12-17 19:47:03', 'dOx5BLLm', '6102837'), + (62380, 646, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dOx5BLLm', '6103752'), + (62381, 646, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dOx5BLLm', '6107314'), + (62382, 646, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dOx5BLLm', '6120034'), + (62383, 646, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dOx5BLLm', '6136733'), + (62384, 646, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dOx5BLLm', '6137989'), + (62385, 646, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dOx5BLLm', '6150864'), + (62386, 646, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dOx5BLLm', '6155491'), + (62387, 646, 2116, 'not_attending', '2023-07-07 01:51:56', '2025-12-17 19:46:51', 'dOx5BLLm', '6163389'), + (62388, 646, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dOx5BLLm', '6164417'), + (62389, 646, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dOx5BLLm', '6166388'), + (62390, 646, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dOx5BLLm', '6176439'), + (62391, 646, 2122, 'attending', '2023-07-02 17:47:07', '2025-12-17 19:46:51', 'dOx5BLLm', '6176476'), + (62392, 646, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dOx5BLLm', '6182410'), + (62393, 646, 2129, 'not_attending', '2023-07-03 15:26:16', '2025-12-17 19:46:51', 'dOx5BLLm', '6182825'), + (62394, 646, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dOx5BLLm', '6185812'), + (62395, 646, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dOx5BLLm', '6187651'), + (62396, 646, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dOx5BLLm', '6187963'), + (62397, 646, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dOx5BLLm', '6187964'), + (62398, 646, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dOx5BLLm', '6187966'), + (62399, 646, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dOx5BLLm', '6187967'), + (62400, 646, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dOx5BLLm', '6187969'), + (62401, 646, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dOx5BLLm', '6334878'), + (62402, 646, 2146, 'attending', '2023-07-21 17:22:16', '2025-12-17 19:46:53', 'dOx5BLLm', '6335638'), + (62403, 646, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dOx5BLLm', '6337236'), + (62404, 646, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dOx5BLLm', '6337970'), + (62405, 646, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dOx5BLLm', '6338308'), + (62406, 646, 2159, 'attending', '2023-07-22 02:32:17', '2025-12-17 19:46:53', 'dOx5BLLm', '6338355'), + (62407, 646, 2160, 'attending', '2023-07-29 18:14:51', '2025-12-17 19:46:54', 'dOx5BLLm', '6338358'), + (62408, 646, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dOx5BLLm', '6340845'), + (62409, 646, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dOx5BLLm', '6341710'), + (62410, 646, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dOx5BLLm', '6342044'), + (62411, 646, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dOx5BLLm', '6342298'), + (62412, 646, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dOx5BLLm', '6343294'), + (62413, 646, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dOx5BLLm', '6347034'), + (62414, 646, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dOx5BLLm', '6347056'), + (62415, 646, 2180, 'maybe', '2023-07-26 01:39:08', '2025-12-17 19:46:54', 'dOx5BLLm', '6348788'), + (62416, 646, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dOx5BLLm', '6353830'), + (62417, 646, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dOx5BLLm', '6353831'), + (62418, 646, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dOx5BLLm', '6357867'), + (62419, 646, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dOx5BLLm', '6358652'), + (62420, 646, 2199, 'attending', '2023-08-15 16:21:12', '2025-12-17 19:46:55', 'dOx5BLLm', '6359849'), + (62421, 646, 2200, 'attending', '2023-08-10 23:04:59', '2025-12-17 19:46:55', 'dOx5BLLm', '6359850'), + (62422, 646, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dOx5BLLm', '6361709'), + (62423, 646, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dOx5BLLm', '6361710'), + (62424, 646, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dOx5BLLm', '6361711'), + (62425, 646, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dOx5BLLm', '6361712'), + (62426, 646, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dOx5BLLm', '6361713'), + (62427, 646, 2232, 'not_attending', '2023-08-25 19:29:35', '2025-12-17 19:46:55', 'dOx5BLLm', '6374818'), + (62428, 646, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dOx5BLLm', '6382573'), + (62429, 646, 2239, 'not_attending', '2023-09-01 02:16:48', '2025-12-17 19:46:56', 'dOx5BLLm', '6387592'), + (62430, 646, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dOx5BLLm', '6388604'), + (62431, 646, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dOx5BLLm', '6394629'), + (62432, 646, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dOx5BLLm', '6394631'), + (62433, 646, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dOx5BLLm', '6440863'), + (62434, 646, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dOx5BLLm', '6445440'), + (62435, 646, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dOx5BLLm', '6453951'), + (62436, 646, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dOx5BLLm', '6461696'), + (62437, 646, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dOx5BLLm', '6462129'), + (62438, 646, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dOx5BLLm', '6463218'), + (62439, 646, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dOx5BLLm', '6472181'), + (62440, 646, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dOx5BLLm', '6482693'), + (62441, 646, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dOx5BLLm', '6484200'), + (62442, 646, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dOx5BLLm', '6484680'), + (62443, 646, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dOx5BLLm', '6507741'), + (62444, 646, 2322, 'attending', '2023-11-17 21:51:09', '2025-12-17 19:46:48', 'dOx5BLLm', '6514659'), + (62445, 646, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOx5BLLm', '6514660'), + (62446, 646, 2325, 'attending', '2023-12-15 04:07:00', '2025-12-17 19:46:36', 'dOx5BLLm', '6514663'), + (62447, 646, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dOx5BLLm', '6519103'), + (62448, 646, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dOx5BLLm', '6535681'), + (62449, 646, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOx5BLLm', '6584747'), + (62450, 646, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOx5BLLm', '6587097'), + (62451, 646, 2357, 'not_attending', '2023-12-17 04:14:48', '2025-12-17 19:46:36', 'dOx5BLLm', '6593341'), + (62452, 646, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOx5BLLm', '6609022'), + (62453, 646, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOx5BLLm', '6632757'), + (62454, 646, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOx5BLLm', '6644187'), + (62455, 646, 2382, 'attending', '2024-01-02 23:28:49', '2025-12-17 19:46:37', 'dOx5BLLm', '6646401'), + (62456, 646, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOx5BLLm', '6648951'), + (62457, 646, 2387, 'attending', '2024-01-04 20:05:18', '2025-12-17 19:46:37', 'dOx5BLLm', '6648952'), + (62458, 646, 2394, 'not_attending', '2024-01-05 00:05:07', '2025-12-17 19:46:38', 'dOx5BLLm', '6654470'), + (62459, 646, 2395, 'attending', '2024-01-05 00:05:02', '2025-12-17 19:46:38', 'dOx5BLLm', '6654471'), + (62460, 646, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOx5BLLm', '6655401'), + (62461, 646, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOx5BLLm', '6661585'), + (62462, 646, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOx5BLLm', '6661588'), + (62463, 646, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOx5BLLm', '6661589'), + (62464, 646, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOx5BLLm', '6699906'), + (62465, 646, 2408, 'not_attending', '2024-01-17 01:29:32', '2025-12-17 19:46:40', 'dOx5BLLm', '6699907'), + (62466, 646, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOx5BLLm', '6699913'), + (62467, 646, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOx5BLLm', '6701109'), + (62468, 646, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOx5BLLm', '6705219'), + (62469, 646, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOx5BLLm', '6710153'), + (62470, 646, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOx5BLLm', '6711552'), + (62471, 646, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOx5BLLm', '6711553'), + (62472, 646, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOx5BLLm', '6722688'), + (62473, 646, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOx5BLLm', '6730620'), + (62474, 646, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOx5BLLm', '6730642'), + (62475, 646, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOx5BLLm', '6740364'), + (62476, 646, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOx5BLLm', '6743829'), + (62477, 646, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOx5BLLm', '7030380'), + (62478, 646, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOx5BLLm', '7033677'), + (62479, 646, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOx5BLLm', '7035415'), + (62480, 646, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOx5BLLm', '7044715'), + (62481, 646, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOx5BLLm', '7050318'), + (62482, 646, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOx5BLLm', '7050319'), + (62483, 646, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOx5BLLm', '7050322'), + (62484, 646, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOx5BLLm', '7057804'), + (62485, 646, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dOx5BLLm', '7059866'), + (62486, 646, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOx5BLLm', '7072824'), + (62487, 646, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOx5BLLm', '7074348'), + (62488, 646, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dOx5BLLm', '7074364'), + (62489, 646, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOx5BLLm', '7089267'), + (62490, 646, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOx5BLLm', '7098747'), + (62491, 646, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOx5BLLm', '7113468'), + (62492, 646, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOx5BLLm', '7114856'), + (62493, 646, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOx5BLLm', '7114951'), + (62494, 646, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOx5BLLm', '7114955'), + (62495, 646, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOx5BLLm', '7114956'), + (62496, 646, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dOx5BLLm', '7114957'), + (62497, 646, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOx5BLLm', '7153615'), + (62498, 646, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOx5BLLm', '7159484'), + (62499, 646, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOx5BLLm', '7178446'), + (62500, 646, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dOx5BLLm', '7220467'), + (62501, 646, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dOx5BLLm', '7240354'), + (62502, 646, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dOx5BLLm', '7251633'), + (62503, 646, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dOx5BLLm', '7263048'), + (62504, 646, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dOx5BLLm', '7302674'), + (62505, 646, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dOx5BLLm', '7324073'), + (62506, 646, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dOx5BLLm', '7324074'), + (62507, 646, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dOx5BLLm', '7324075'), + (62508, 646, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dOx5BLLm', '7324078'), + (62509, 646, 2695, 'attending', '2024-08-16 03:13:11', '2025-12-17 19:46:31', 'dOx5BLLm', '7324080'), + (62510, 646, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dOx5BLLm', '7324082'), + (62511, 646, 2701, 'maybe', '2024-06-26 00:05:02', '2025-12-17 19:46:29', 'dOx5BLLm', '7324391'), + (62512, 646, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dOx5BLLm', '7331457'), + (62513, 646, 2724, 'attending', '2024-06-26 17:28:54', '2025-12-17 19:46:29', 'dOx5BLLm', '7332562'), + (62514, 646, 2731, 'attending', '2024-06-25 14:39:58', '2025-12-17 19:46:29', 'dOx5BLLm', '7335303'), + (62515, 646, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dOx5BLLm', '7356752'), + (62516, 646, 2766, 'attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dOx5BLLm', '7363643'), + (62517, 646, 2767, 'attending', '2024-07-21 23:48:18', '2025-12-17 19:46:30', 'dOx5BLLm', '7364726'), + (62518, 646, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dOx5BLLm', '7368606'), + (62519, 646, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dOx5BLLm', '7397462'), + (62520, 646, 2806, 'maybe', '2024-09-16 02:13:07', '2025-12-17 19:46:25', 'dOx5BLLm', '7404888'), + (62521, 646, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dOx5BLLm', '7424275'), + (62522, 646, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dOx5BLLm', '7432751'), + (62523, 646, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dOx5BLLm', '7432752'), + (62524, 646, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dOx5BLLm', '7432753'), + (62525, 646, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dOx5BLLm', '7432754'), + (62526, 646, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dOx5BLLm', '7432755'), + (62527, 646, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dOx5BLLm', '7432756'), + (62528, 646, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dOx5BLLm', '7432758'), + (62529, 646, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dOx5BLLm', '7432759'), + (62530, 646, 2832, 'maybe', '2024-09-11 02:52:40', '2025-12-17 19:46:24', 'dOx5BLLm', '7433324'), + (62531, 646, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dOx5BLLm', '7433834'), + (62532, 646, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dOx5BLLm', '7470197'), + (62533, 647, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dl2p7PVA', '6045684'), + (62534, 648, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'myDGDeWd', '4736499'), + (62535, 648, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'myDGDeWd', '4736503'), + (62536, 648, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'myDGDeWd', '4736504'), + (62537, 648, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'myDGDeWd', '5038850'), + (62538, 648, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'myDGDeWd', '5045826'), + (62539, 648, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'myDGDeWd', '5132533'), + (62540, 648, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'myDGDeWd', '6045684'), + (62541, 665, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mR02wvQ4', '5880942'), + (62542, 665, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mR02wvQ4', '5880943'), + (62543, 665, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mR02wvQ4', '5900200'), + (62544, 665, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mR02wvQ4', '5900202'), + (62545, 665, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mR02wvQ4', '5900203'), + (62546, 665, 1916, 'attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'mR02wvQ4', '5910526'), + (62547, 665, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'mR02wvQ4', '5910528'), + (62548, 665, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mR02wvQ4', '5916219'), + (62549, 665, 1930, 'attending', '2023-02-26 23:30:51', '2025-12-17 19:47:08', 'mR02wvQ4', '5933462'), + (62550, 665, 1931, 'attending', '2023-02-26 23:29:42', '2025-12-17 19:47:08', 'mR02wvQ4', '5933464'), + (62551, 665, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mR02wvQ4', '5936234'), + (62552, 665, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'mR02wvQ4', '5936691'), + (62553, 665, 1935, 'attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mR02wvQ4', '5958351'), + (62554, 665, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mR02wvQ4', '5959751'), + (62555, 665, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mR02wvQ4', '5959755'), + (62556, 665, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mR02wvQ4', '5960055'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (62557, 665, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mR02wvQ4', '5961684'), + (62558, 665, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mR02wvQ4', '5962132'), + (62559, 665, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mR02wvQ4', '5962133'), + (62560, 665, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mR02wvQ4', '5962134'), + (62561, 665, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mR02wvQ4', '5962317'), + (62562, 665, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mR02wvQ4', '5962318'), + (62563, 665, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mR02wvQ4', '5965933'), + (62564, 665, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mR02wvQ4', '5967014'), + (62565, 665, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mR02wvQ4', '5972815'), + (62566, 665, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mR02wvQ4', '5974016'), + (62567, 665, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mR02wvQ4', '5981515'), + (62568, 665, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mR02wvQ4', '5993516'), + (62569, 665, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mR02wvQ4', '5998939'), + (62570, 665, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mR02wvQ4', '6028191'), + (62571, 665, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mR02wvQ4', '6040066'), + (62572, 665, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mR02wvQ4', '6042717'), + (62573, 665, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mR02wvQ4', '6044838'), + (62574, 665, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mR02wvQ4', '6044839'), + (62575, 665, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR02wvQ4', '6045684'), + (62576, 665, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mR02wvQ4', '6050104'), + (62577, 665, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mR02wvQ4', '6053195'), + (62578, 665, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mR02wvQ4', '6053198'), + (62579, 665, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mR02wvQ4', '6056085'), + (62580, 665, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mR02wvQ4', '6056916'), + (62581, 665, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mR02wvQ4', '6059290'), + (62582, 665, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mR02wvQ4', '6060328'), + (62583, 665, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mR02wvQ4', '6061037'), + (62584, 665, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mR02wvQ4', '6061039'), + (62585, 665, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mR02wvQ4', '6067245'), + (62586, 665, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mR02wvQ4', '6068094'), + (62587, 665, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mR02wvQ4', '6068252'), + (62588, 665, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mR02wvQ4', '6068253'), + (62589, 665, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mR02wvQ4', '6068254'), + (62590, 665, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mR02wvQ4', '6068280'), + (62591, 665, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mR02wvQ4', '6069093'), + (62592, 665, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mR02wvQ4', '6072528'), + (62593, 665, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mR02wvQ4', '6079840'), + (62594, 665, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mR02wvQ4', '6083398'), + (62595, 665, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mR02wvQ4', '6093504'), + (62596, 665, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mR02wvQ4', '6097414'), + (62597, 665, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mR02wvQ4', '6097442'), + (62598, 665, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mR02wvQ4', '6097684'), + (62599, 665, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mR02wvQ4', '6098762'), + (62600, 665, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mR02wvQ4', '6101362'), + (62601, 665, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mR02wvQ4', '6103752'), + (62602, 665, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mR02wvQ4', '6107314'), + (62603, 666, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dBb0rbbd', '7074364'), + (62604, 666, 2556, 'attending', '2024-04-20 17:47:12', '2025-12-17 19:46:34', 'dBb0rbbd', '7114955'), + (62605, 666, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dBb0rbbd', '7114956'), + (62606, 666, 2558, 'attending', '2024-04-30 02:32:44', '2025-12-17 19:46:35', 'dBb0rbbd', '7114957'), + (62607, 666, 2585, 'attending', '2024-04-23 14:21:26', '2025-12-17 19:46:34', 'dBb0rbbd', '7175828'), + (62608, 666, 2599, 'attending', '2024-04-22 13:04:25', '2025-12-17 19:46:34', 'dBb0rbbd', '7189372'), + (62609, 666, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dBb0rbbd', '7220467'), + (62610, 666, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBb0rbbd', '7240354'), + (62611, 666, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBb0rbbd', '7251633'), + (62612, 666, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBb0rbbd', '7263048'), + (62613, 666, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dBb0rbbd', '7302674'), + (62614, 666, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dBb0rbbd', '7324073'), + (62615, 666, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dBb0rbbd', '7324074'), + (62616, 666, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dBb0rbbd', '7324075'), + (62617, 666, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dBb0rbbd', '7324078'), + (62618, 666, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dBb0rbbd', '7324082'), + (62619, 666, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dBb0rbbd', '7331457'), + (62620, 666, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dBb0rbbd', '7356752'), + (62621, 666, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dBb0rbbd', '7363643'), + (62622, 666, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dBb0rbbd', '7368606'), + (62623, 666, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dBb0rbbd', '7397462'), + (62624, 666, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dBb0rbbd', '7424275'), + (62625, 666, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dBb0rbbd', '7424276'), + (62626, 666, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dBb0rbbd', '7432751'), + (62627, 666, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dBb0rbbd', '7432752'), + (62628, 666, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dBb0rbbd', '7432753'), + (62629, 666, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dBb0rbbd', '7432754'), + (62630, 666, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dBb0rbbd', '7432755'), + (62631, 666, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dBb0rbbd', '7432756'), + (62632, 666, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dBb0rbbd', '7432758'), + (62633, 666, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dBb0rbbd', '7432759'), + (62634, 666, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dBb0rbbd', '7433834'), + (62635, 666, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dBb0rbbd', '7470197'), + (62636, 666, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dBb0rbbd', '7685613'), + (62637, 666, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dBb0rbbd', '7688194'), + (62638, 666, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dBb0rbbd', '7688196'), + (62639, 666, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dBb0rbbd', '7688289'), + (62640, 666, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dBb0rbbd', '7692763'), + (62641, 666, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dBb0rbbd', '7697552'), + (62642, 666, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dBb0rbbd', '7699878'), + (62643, 666, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dBb0rbbd', '7704043'), + (62644, 666, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dBb0rbbd', '7712467'), + (62645, 666, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dBb0rbbd', '7713585'), + (62646, 666, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dBb0rbbd', '7713586'), + (62647, 666, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dBb0rbbd', '7738518'), + (62648, 666, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBb0rbbd', '7750636'), + (62649, 666, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBb0rbbd', '7796540'), + (62650, 666, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBb0rbbd', '7796541'), + (62651, 666, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBb0rbbd', '7796542'), + (62652, 667, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mLoVwz8d', '7074364'), + (62653, 667, 2525, 'attending', '2024-06-13 18:43:30', '2025-12-17 19:46:28', 'mLoVwz8d', '7074365'), + (62654, 667, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mLoVwz8d', '7324073'), + (62655, 667, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mLoVwz8d', '7324074'), + (62656, 667, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mLoVwz8d', '7324075'), + (62657, 667, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mLoVwz8d', '7324078'), + (62658, 667, 2702, 'attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'mLoVwz8d', '7324867'), + (62659, 667, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'mLoVwz8d', '7331457'), + (62660, 667, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'mLoVwz8d', '7332564'), + (62661, 667, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'mLoVwz8d', '7335193'), + (62662, 667, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'mLoVwz8d', '7359624'), + (62663, 667, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'mLoVwz8d', '7363643'), + (62664, 667, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mLoVwz8d', '7368606'), + (62665, 668, 2196, 'attending', '2023-08-31 02:45:51', '2025-12-17 19:46:56', 'dVD1xlrA', '6359398'), + (62666, 668, 2197, 'not_attending', '2023-08-31 02:47:19', '2025-12-17 19:46:44', 'dVD1xlrA', '6359399'), + (62667, 668, 2198, 'maybe', '2023-08-31 02:47:37', '2025-12-17 19:46:45', 'dVD1xlrA', '6359400'), + (62668, 668, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dVD1xlrA', '6361711'), + (62669, 668, 2212, 'maybe', '2023-09-11 18:13:23', '2025-12-17 19:46:45', 'dVD1xlrA', '6361713'), + (62670, 668, 2235, 'maybe', '2023-08-31 02:45:05', '2025-12-17 19:46:56', 'dVD1xlrA', '6382573'), + (62671, 668, 2239, 'attending', '2023-09-01 04:38:39', '2025-12-17 19:46:56', 'dVD1xlrA', '6387592'), + (62672, 668, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dVD1xlrA', '6388604'), + (62673, 668, 2242, 'maybe', '2023-09-11 18:12:43', '2025-12-17 19:46:45', 'dVD1xlrA', '6388606'), + (62674, 668, 2244, 'maybe', '2023-09-11 18:09:03', '2025-12-17 19:46:44', 'dVD1xlrA', '6393700'), + (62675, 668, 2248, 'maybe', '2023-09-11 18:09:24', '2025-12-17 19:46:44', 'dVD1xlrA', '6394629'), + (62676, 668, 2249, 'maybe', '2023-09-11 18:11:58', '2025-12-17 19:46:45', 'dVD1xlrA', '6394630'), + (62677, 668, 2250, 'maybe', '2023-09-11 18:13:15', '2025-12-17 19:46:45', 'dVD1xlrA', '6394631'), + (62678, 668, 2252, 'attending', '2023-09-11 18:12:56', '2025-12-17 19:46:45', 'dVD1xlrA', '6396837'), + (62679, 668, 2253, 'maybe', '2023-09-11 18:13:38', '2025-12-17 19:46:45', 'dVD1xlrA', '6401811'), + (62680, 668, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dVD1xlrA', '6440863'), + (62681, 668, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dVD1xlrA', '6445440'), + (62682, 668, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dVD1xlrA', '6453951'), + (62683, 668, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dVD1xlrA', '6461696'), + (62684, 668, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dVD1xlrA', '6462129'), + (62685, 668, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dVD1xlrA', '6463218'), + (62686, 668, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dVD1xlrA', '6472181'), + (62687, 668, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVD1xlrA', '6482693'), + (62688, 668, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVD1xlrA', '6484200'), + (62689, 668, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dVD1xlrA', '6484680'), + (62690, 668, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVD1xlrA', '6507741'), + (62691, 668, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dVD1xlrA', '6514659'), + (62692, 668, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dVD1xlrA', '6514660'), + (62693, 668, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVD1xlrA', '6519103'), + (62694, 668, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVD1xlrA', '6535681'), + (62695, 668, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVD1xlrA', '6584747'), + (62696, 668, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVD1xlrA', '6587097'), + (62697, 668, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVD1xlrA', '6609022'), + (62698, 668, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVD1xlrA', '6632757'), + (62699, 668, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVD1xlrA', '6644187'), + (62700, 668, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVD1xlrA', '6648951'), + (62701, 668, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVD1xlrA', '6648952'), + (62702, 668, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVD1xlrA', '6655401'), + (62703, 668, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVD1xlrA', '6661585'), + (62704, 668, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVD1xlrA', '6661588'), + (62705, 668, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVD1xlrA', '6661589'), + (62706, 668, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVD1xlrA', '6699906'), + (62707, 668, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVD1xlrA', '6701109'), + (62708, 668, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVD1xlrA', '6705219'), + (62709, 668, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVD1xlrA', '6710153'), + (62710, 668, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVD1xlrA', '6711552'), + (62711, 668, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVD1xlrA', '6711553'), + (62712, 669, 397, 'attending', '2021-05-23 00:31:40', '2025-12-17 19:47:47', 'oAQqO2gA', '3236452'), + (62713, 669, 648, 'maybe', '2021-05-29 21:11:01', '2025-12-17 19:47:47', 'oAQqO2gA', '3539923'), + (62714, 669, 743, 'maybe', '2021-06-23 03:01:02', '2025-12-17 19:47:38', 'oAQqO2gA', '3680623'), + (62715, 669, 744, 'maybe', '2021-06-10 15:02:02', '2025-12-17 19:47:47', 'oAQqO2gA', '3680624'), + (62716, 669, 746, 'maybe', '2021-07-08 14:05:41', '2025-12-17 19:47:39', 'oAQqO2gA', '3680626'), + (62717, 669, 815, 'not_attending', '2021-05-28 22:08:49', '2025-12-17 19:47:47', 'oAQqO2gA', '3818136'), + (62718, 669, 820, 'attending', '2021-05-28 16:54:15', '2025-12-17 19:47:47', 'oAQqO2gA', '3963335'), + (62719, 669, 821, 'not_attending', '2021-05-31 20:46:34', '2025-12-17 19:47:47', 'oAQqO2gA', '3963965'), + (62720, 669, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'oAQqO2gA', '3974109'), + (62721, 669, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAQqO2gA', '3975311'), + (62722, 669, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'oAQqO2gA', '3975312'), + (62723, 669, 830, 'attending', '2021-06-03 22:06:14', '2025-12-17 19:47:47', 'oAQqO2gA', '3976648'), + (62724, 669, 834, 'maybe', '2021-06-10 17:01:28', '2025-12-17 19:47:47', 'oAQqO2gA', '3990439'), + (62725, 669, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQqO2gA', '3994992'), + (62726, 669, 844, 'maybe', '2021-06-10 15:02:54', '2025-12-17 19:47:38', 'oAQqO2gA', '4014338'), + (62727, 669, 866, 'maybe', '2021-06-21 16:16:43', '2025-12-17 19:47:38', 'oAQqO2gA', '4020424'), + (62728, 669, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'oAQqO2gA', '4021848'), + (62729, 669, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAQqO2gA', '4136744'), + (62730, 669, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAQqO2gA', '4136937'), + (62731, 669, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAQqO2gA', '4136938'), + (62732, 669, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAQqO2gA', '4136947'), + (62733, 669, 879, 'maybe', '2021-06-23 09:27:41', '2025-12-17 19:47:38', 'oAQqO2gA', '4147806'), + (62734, 669, 882, 'maybe', '2021-06-24 08:53:36', '2025-12-17 19:47:38', 'oAQqO2gA', '4207630'), + (62735, 669, 883, 'maybe', '2021-06-22 20:59:36', '2025-12-17 19:47:38', 'oAQqO2gA', '4209121'), + (62736, 669, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAQqO2gA', '4210314'), + (62737, 669, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAQqO2gA', '4225444'), + (62738, 669, 889, 'maybe', '2021-06-28 11:42:01', '2025-12-17 19:47:38', 'oAQqO2gA', '4227492'), + (62739, 669, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAQqO2gA', '4239259'), + (62740, 669, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAQqO2gA', '4240316'), + (62741, 669, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAQqO2gA', '4240317'), + (62742, 669, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAQqO2gA', '4240318'), + (62743, 669, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'oAQqO2gA', '4240320'), + (62744, 669, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQqO2gA', '4250163'), + (62745, 669, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAQqO2gA', '4275957'), + (62746, 669, 920, 'maybe', '2021-07-25 11:59:49', '2025-12-17 19:47:40', 'oAQqO2gA', '4277819'), + (62747, 669, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAQqO2gA', '4301723'), + (62748, 669, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAQqO2gA', '4302093'), + (62749, 669, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAQqO2gA', '4304151'), + (62750, 669, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAQqO2gA', '4356801'), + (62751, 669, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAQqO2gA', '4366186'), + (62752, 669, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAQqO2gA', '4366187'), + (62753, 669, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'oAQqO2gA', '4420735'), + (62754, 669, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'oAQqO2gA', '4420738'), + (62755, 669, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAQqO2gA', '4420739'), + (62756, 669, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAQqO2gA', '4420741'), + (62757, 669, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAQqO2gA', '4420744'), + (62758, 669, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAQqO2gA', '4420747'), + (62759, 669, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAQqO2gA', '4420748'), + (62760, 669, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAQqO2gA', '4420749'), + (62761, 669, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAQqO2gA', '4461883'), + (62762, 669, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAQqO2gA', '4508342'), + (62763, 669, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQqO2gA', '6045684'), + (62764, 670, 423, 'attending', '2020-11-05 21:58:04', '2025-12-17 19:47:53', 'Vmy6a8yA', '3245296'), + (62765, 670, 440, 'attending', '2020-11-07 21:54:07', '2025-12-17 19:47:53', 'Vmy6a8yA', '3256168'), + (62766, 670, 441, 'attending', '2020-11-14 16:21:01', '2025-12-17 19:47:54', 'Vmy6a8yA', '3256169'), + (62767, 670, 445, 'not_attending', '2020-11-12 19:50:26', '2025-12-17 19:47:54', 'Vmy6a8yA', '3266138'), + (62768, 670, 456, 'maybe', '2020-11-16 17:01:41', '2025-12-17 19:47:54', 'Vmy6a8yA', '3276428'), + (62769, 670, 459, 'attending', '2020-11-16 00:21:30', '2025-12-17 19:47:54', 'Vmy6a8yA', '3281467'), + (62770, 670, 468, 'attending', '2020-11-19 13:32:01', '2025-12-17 19:47:54', 'Vmy6a8yA', '3285413'), + (62771, 670, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Vmy6a8yA', '3285414'), + (62772, 670, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Vmy6a8yA', '3297764'), + (62773, 670, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Vmy6a8yA', '3313856'), + (62774, 670, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Vmy6a8yA', '3314909'), + (62775, 670, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Vmy6a8yA', '3314964'), + (62776, 670, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'Vmy6a8yA', '3323365'), + (62777, 670, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Vmy6a8yA', '3329383'), + (62778, 670, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Vmy6a8yA', '3351539'), + (62779, 670, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Vmy6a8yA', '3386848'), + (62780, 670, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Vmy6a8yA', '3389527'), + (62781, 670, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Vmy6a8yA', '3396499'), + (62782, 670, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Vmy6a8yA', '3403650'), + (62783, 670, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Vmy6a8yA', '3406988'), + (62784, 670, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Vmy6a8yA', '3416576'), + (62785, 670, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'Vmy6a8yA', '3418925'), + (62786, 670, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Vmy6a8yA', '3426074'), + (62787, 670, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'Vmy6a8yA', '3430267'), + (62788, 670, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'Vmy6a8yA', '3470305'), + (62789, 670, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Vmy6a8yA', '3470991'), + (62790, 670, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'Vmy6a8yA', '3517815'), + (62791, 670, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'Vmy6a8yA', '3517816'), + (62792, 670, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'Vmy6a8yA', '3523941'), + (62793, 670, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Vmy6a8yA', '3533850'), + (62794, 670, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Vmy6a8yA', '3536632'), + (62795, 670, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'Vmy6a8yA', '3536656'), + (62796, 670, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'Vmy6a8yA', '3539916'), + (62797, 670, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'Vmy6a8yA', '3539917'), + (62798, 670, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'Vmy6a8yA', '3539918'), + (62799, 670, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539919'), + (62800, 670, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539920'), + (62801, 670, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539921'), + (62802, 670, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'Vmy6a8yA', '3539922'), + (62803, 670, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'Vmy6a8yA', '3539923'), + (62804, 670, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Vmy6a8yA', '3539927'), + (62805, 670, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Vmy6a8yA', '3582734'), + (62806, 670, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Vmy6a8yA', '3583262'), + (62807, 670, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Vmy6a8yA', '3619523'), + (62808, 670, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Vmy6a8yA', '3661369'), + (62809, 670, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Vmy6a8yA', '3674262'), + (62810, 670, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Vmy6a8yA', '3677402'), + (62811, 670, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Vmy6a8yA', '3730212'), + (62812, 670, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Vmy6a8yA', '3793156'), + (62813, 670, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Vmy6a8yA', '3974109'), + (62814, 670, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Vmy6a8yA', '3975311'), + (62815, 670, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Vmy6a8yA', '3975312'), + (62816, 670, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Vmy6a8yA', '3994992'), + (62817, 670, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Vmy6a8yA', '4014338'), + (62818, 670, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'Vmy6a8yA', '4021848'), + (62819, 670, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Vmy6a8yA', '4136744'), + (62820, 670, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Vmy6a8yA', '4136937'), + (62821, 670, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'Vmy6a8yA', '4136938'), + (62822, 670, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Vmy6a8yA', '4136947'), + (62823, 670, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Vmy6a8yA', '4210314'), + (62824, 670, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Vmy6a8yA', '4225444'), + (62825, 670, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Vmy6a8yA', '4239259'), + (62826, 670, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Vmy6a8yA', '4240316'), + (62827, 670, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Vmy6a8yA', '4240317'), + (62828, 670, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Vmy6a8yA', '4240318'), + (62829, 670, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Vmy6a8yA', '4240320'), + (62830, 670, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Vmy6a8yA', '4250163'), + (62831, 670, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'Vmy6a8yA', '4275957'), + (62832, 670, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Vmy6a8yA', '4277819'), + (62833, 670, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Vmy6a8yA', '4301723'), + (62834, 670, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Vmy6a8yA', '4302093'), + (62835, 670, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Vmy6a8yA', '4304151'), + (62836, 670, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Vmy6a8yA', '4356801'), + (62837, 670, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Vmy6a8yA', '4366186'), + (62838, 670, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Vmy6a8yA', '4366187'), + (62839, 670, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Vmy6a8yA', '4420735'), + (62840, 670, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Vmy6a8yA', '4420738'), + (62841, 670, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Vmy6a8yA', '4420739'), + (62842, 670, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Vmy6a8yA', '4420741'), + (62843, 670, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Vmy6a8yA', '4420744'), + (62844, 670, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Vmy6a8yA', '4420747'), + (62845, 670, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Vmy6a8yA', '4420748'), + (62846, 670, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Vmy6a8yA', '4420749'), + (62847, 670, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Vmy6a8yA', '4461883'), + (62848, 670, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Vmy6a8yA', '4508342'), + (62849, 670, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Vmy6a8yA', '4568602'), + (62850, 670, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Vmy6a8yA', '4572153'), + (62851, 670, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Vmy6a8yA', '4585962'), + (62852, 670, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'Vmy6a8yA', '4596356'), + (62853, 670, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Vmy6a8yA', '4598860'), + (62854, 670, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Vmy6a8yA', '4598861'), + (62855, 670, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Vmy6a8yA', '4602797'), + (62856, 670, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Vmy6a8yA', '4637896'), + (62857, 670, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Vmy6a8yA', '4642994'), + (62858, 670, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Vmy6a8yA', '4642995'), + (62859, 670, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Vmy6a8yA', '4642996'), + (62860, 670, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Vmy6a8yA', '4642997'), + (62861, 670, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Vmy6a8yA', '4645687'), + (62862, 670, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Vmy6a8yA', '4645698'), + (62863, 670, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Vmy6a8yA', '4645704'), + (62864, 670, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Vmy6a8yA', '4645705'), + (62865, 670, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Vmy6a8yA', '4668385'), + (62866, 670, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Vmy6a8yA', '4694407'), + (62867, 670, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Vmy6a8yA', '4736497'), + (62868, 670, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Vmy6a8yA', '4736499'), + (62869, 670, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Vmy6a8yA', '4736500'), + (62870, 670, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Vmy6a8yA', '4736503'), + (62871, 670, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Vmy6a8yA', '4736504'), + (62872, 670, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Vmy6a8yA', '4746789'), + (62873, 670, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Vmy6a8yA', '4753929'), + (62874, 670, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Vmy6a8yA', '5038850'), + (62875, 670, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Vmy6a8yA', '5045826'), + (62876, 670, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Vmy6a8yA', '5132533'), + (62877, 670, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Vmy6a8yA', '5186582'), + (62878, 670, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Vmy6a8yA', '5186583'), + (62879, 670, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Vmy6a8yA', '5186585'), + (62880, 670, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Vmy6a8yA', '5190437'), + (62881, 670, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Vmy6a8yA', '5195095'), + (62882, 670, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Vmy6a8yA', '5215989'), + (62883, 670, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Vmy6a8yA', '5223686'), + (62884, 670, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Vmy6a8yA', '5247467'), + (62885, 670, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Vmy6a8yA', '5260800'), + (62886, 670, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Vmy6a8yA', '5269930'), + (62887, 670, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Vmy6a8yA', '5271448'), + (62888, 670, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'Vmy6a8yA', '5271449'), + (62889, 670, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Vmy6a8yA', '5278159'), + (62890, 670, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Vmy6a8yA', '5363695'), + (62891, 670, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Vmy6a8yA', '5365960'), + (62892, 670, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Vmy6a8yA', '5378247'), + (62893, 670, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Vmy6a8yA', '5389605'), + (62894, 670, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Vmy6a8yA', '5397265'), + (62895, 670, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Vmy6a8yA', '5404786'), + (62896, 670, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Vmy6a8yA', '5405203'), + (62897, 670, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Vmy6a8yA', '5412550'), + (62898, 670, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Vmy6a8yA', '5415046'), + (62899, 670, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Vmy6a8yA', '5422086'), + (62900, 670, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Vmy6a8yA', '5422406'), + (62901, 670, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Vmy6a8yA', '5424565'), + (62902, 670, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Vmy6a8yA', '5426882'), + (62903, 670, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Vmy6a8yA', '5441125'), + (62904, 670, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Vmy6a8yA', '5441126'), + (62905, 670, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Vmy6a8yA', '5441128'), + (62906, 670, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Vmy6a8yA', '5441131'), + (62907, 670, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Vmy6a8yA', '5441132'), + (62908, 670, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Vmy6a8yA', '5453325'), + (62909, 670, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Vmy6a8yA', '5454516'), + (62910, 670, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Vmy6a8yA', '5454605'), + (62911, 670, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Vmy6a8yA', '5455037'), + (62912, 670, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Vmy6a8yA', '5461278'), + (62913, 670, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Vmy6a8yA', '5469480'), + (62914, 670, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Vmy6a8yA', '5474663'), + (62915, 670, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Vmy6a8yA', '5482022'), + (62916, 670, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Vmy6a8yA', '5488912'), + (62917, 670, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Vmy6a8yA', '5492192'), + (62918, 670, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Vmy6a8yA', '5493139'), + (62919, 670, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Vmy6a8yA', '5493200'), + (62920, 670, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Vmy6a8yA', '5502188'), + (62921, 670, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Vmy6a8yA', '5505059'), + (62922, 670, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Vmy6a8yA', '5509055'), + (62923, 670, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Vmy6a8yA', '5512862'), + (62924, 670, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Vmy6a8yA', '5513985'), + (62925, 670, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'Vmy6a8yA', '5519981'), + (62926, 670, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Vmy6a8yA', '5522550'), + (62927, 670, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Vmy6a8yA', '5534683'), + (62928, 670, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Vmy6a8yA', '5537735'), + (62929, 670, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Vmy6a8yA', '5540859'), + (62930, 670, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Vmy6a8yA', '5546619'), + (62931, 670, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Vmy6a8yA', '5557747'), + (62932, 670, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Vmy6a8yA', '5560255'), + (62933, 670, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Vmy6a8yA', '5562906'), + (62934, 670, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Vmy6a8yA', '5600604'), + (62935, 670, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Vmy6a8yA', '5605544'), + (62936, 670, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Vmy6a8yA', '5630960'), + (62937, 670, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Vmy6a8yA', '5630961'), + (62938, 670, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Vmy6a8yA', '5630962'), + (62939, 670, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Vmy6a8yA', '5630966'), + (62940, 670, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Vmy6a8yA', '5630967'), + (62941, 670, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Vmy6a8yA', '5630968'), + (62942, 670, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Vmy6a8yA', '5635406'), + (62943, 670, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Vmy6a8yA', '5638765'), + (62944, 670, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Vmy6a8yA', '5640097'), + (62945, 670, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Vmy6a8yA', '5640843'), + (62946, 670, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Vmy6a8yA', '5641521'), + (62947, 670, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Vmy6a8yA', '5642818'), + (62948, 670, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Vmy6a8yA', '5652395'), + (62949, 670, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Vmy6a8yA', '5670445'), + (62950, 670, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Vmy6a8yA', '5671637'), + (62951, 670, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Vmy6a8yA', '5672329'), + (62952, 670, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Vmy6a8yA', '5674057'), + (62953, 670, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Vmy6a8yA', '5674060'), + (62954, 670, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Vmy6a8yA', '5677461'), + (62955, 670, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Vmy6a8yA', '5698046'), + (62956, 670, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Vmy6a8yA', '5699760'), + (62957, 670, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Vmy6a8yA', '5741601'), + (62958, 670, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Vmy6a8yA', '5763458'), + (62959, 670, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Vmy6a8yA', '5774172'), + (62960, 670, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'Vmy6a8yA', '5818247'), + (62961, 670, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Vmy6a8yA', '5819471'), + (62962, 670, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Vmy6a8yA', '5827739'), + (62963, 670, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Vmy6a8yA', '5844306'), + (62964, 670, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Vmy6a8yA', '5850159'), + (62965, 670, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Vmy6a8yA', '5858999'), + (62966, 670, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Vmy6a8yA', '5871984'), + (62967, 670, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Vmy6a8yA', '5876354'), + (62968, 670, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Vmy6a8yA', '5880939'), + (62969, 670, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Vmy6a8yA', '5880940'), + (62970, 670, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Vmy6a8yA', '5880942'), + (62971, 670, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Vmy6a8yA', '5880943'), + (62972, 670, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Vmy6a8yA', '5887890'), + (62973, 670, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Vmy6a8yA', '5888598'), + (62974, 670, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Vmy6a8yA', '5893260'), + (62975, 670, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Vmy6a8yA', '5899826'), + (62976, 670, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Vmy6a8yA', '5900199'), + (62977, 670, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Vmy6a8yA', '5900200'), + (62978, 670, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Vmy6a8yA', '5900202'), + (62979, 670, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Vmy6a8yA', '5900203'), + (62980, 670, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Vmy6a8yA', '5901108'), + (62981, 670, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Vmy6a8yA', '5901126'), + (62982, 670, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'Vmy6a8yA', '5901606'), + (62983, 670, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Vmy6a8yA', '5909655'), + (62984, 670, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Vmy6a8yA', '5910522'), + (62985, 670, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Vmy6a8yA', '5910526'), + (62986, 670, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Vmy6a8yA', '5910528'), + (62987, 670, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Vmy6a8yA', '5916219'), + (62988, 670, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Vmy6a8yA', '5936234'), + (62989, 670, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Vmy6a8yA', '5958351'), + (62990, 670, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Vmy6a8yA', '5959751'), + (62991, 670, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Vmy6a8yA', '5959755'), + (62992, 670, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Vmy6a8yA', '5960055'), + (62993, 670, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Vmy6a8yA', '5961684'), + (62994, 670, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Vmy6a8yA', '5962132'), + (62995, 670, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Vmy6a8yA', '5962133'), + (62996, 670, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Vmy6a8yA', '5962134'), + (62997, 670, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Vmy6a8yA', '5962317'), + (62998, 670, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Vmy6a8yA', '5962318'), + (62999, 670, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Vmy6a8yA', '5965933'), + (63000, 670, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Vmy6a8yA', '5967014'), + (63001, 670, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Vmy6a8yA', '5972815'), + (63002, 670, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Vmy6a8yA', '5974016'), + (63003, 670, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Vmy6a8yA', '5981515'), + (63004, 670, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Vmy6a8yA', '5993516'), + (63005, 670, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Vmy6a8yA', '5998939'), + (63006, 670, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Vmy6a8yA', '6028191'), + (63007, 670, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Vmy6a8yA', '6040066'), + (63008, 670, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Vmy6a8yA', '6042717'), + (63009, 670, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Vmy6a8yA', '6044838'), + (63010, 670, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Vmy6a8yA', '6044839'), + (63011, 670, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Vmy6a8yA', '6045684'), + (63012, 670, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Vmy6a8yA', '6050104'), + (63013, 670, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Vmy6a8yA', '6053195'), + (63014, 670, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Vmy6a8yA', '6053198'), + (63015, 670, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Vmy6a8yA', '6056085'), + (63016, 670, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Vmy6a8yA', '6056916'), + (63017, 670, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Vmy6a8yA', '6059290'), + (63018, 670, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Vmy6a8yA', '6060328'), + (63019, 670, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Vmy6a8yA', '6061037'), + (63020, 670, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Vmy6a8yA', '6061039'), + (63021, 670, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Vmy6a8yA', '6067245'), + (63022, 670, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Vmy6a8yA', '6068094'), + (63023, 670, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Vmy6a8yA', '6068252'), + (63024, 670, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Vmy6a8yA', '6068253'), + (63025, 670, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Vmy6a8yA', '6068254'), + (63026, 670, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Vmy6a8yA', '6068280'), + (63027, 670, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Vmy6a8yA', '6069093'), + (63028, 670, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Vmy6a8yA', '6072528'), + (63029, 670, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Vmy6a8yA', '6079840'), + (63030, 670, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Vmy6a8yA', '6083398'), + (63031, 670, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Vmy6a8yA', '6093504'), + (63032, 670, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Vmy6a8yA', '6097414'), + (63033, 670, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Vmy6a8yA', '6097442'), + (63034, 670, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Vmy6a8yA', '6097684'), + (63035, 670, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Vmy6a8yA', '6098762'), + (63036, 670, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Vmy6a8yA', '6101361'), + (63037, 670, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Vmy6a8yA', '6101362'), + (63038, 670, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Vmy6a8yA', '6107314'), + (63039, 670, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Vmy6a8yA', '6120034'), + (63040, 670, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'Vmy6a8yA', '6136733'), + (63041, 670, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Vmy6a8yA', '6137989'), + (63042, 670, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Vmy6a8yA', '6150864'), + (63043, 670, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Vmy6a8yA', '6155491'), + (63044, 670, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Vmy6a8yA', '6164417'), + (63045, 670, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Vmy6a8yA', '6166388'), + (63046, 670, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Vmy6a8yA', '6176439'), + (63047, 670, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Vmy6a8yA', '6182410'), + (63048, 670, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Vmy6a8yA', '6185812'), + (63049, 670, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Vmy6a8yA', '6187651'), + (63050, 670, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Vmy6a8yA', '6187963'), + (63051, 670, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Vmy6a8yA', '6187964'), + (63052, 670, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Vmy6a8yA', '6187966'), + (63053, 670, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Vmy6a8yA', '6187967'), + (63054, 670, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Vmy6a8yA', '6187969'), + (63055, 670, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Vmy6a8yA', '6334878'), + (63056, 670, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Vmy6a8yA', '6337236'), + (63057, 670, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Vmy6a8yA', '6337970'), + (63058, 670, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Vmy6a8yA', '6338308'), + (63059, 670, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Vmy6a8yA', '6341710'), + (63060, 670, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Vmy6a8yA', '6342044'), + (63061, 670, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Vmy6a8yA', '6342298'), + (63062, 670, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Vmy6a8yA', '6343294'), + (63063, 670, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Vmy6a8yA', '6347034'), + (63064, 670, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Vmy6a8yA', '6347056'), + (63065, 670, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Vmy6a8yA', '6353830'), + (63066, 670, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Vmy6a8yA', '6353831'), + (63067, 670, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Vmy6a8yA', '6357867'), + (63068, 670, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Vmy6a8yA', '6358652'), + (63069, 670, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Vmy6a8yA', '6361709'), + (63070, 670, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Vmy6a8yA', '6361710'), + (63071, 670, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Vmy6a8yA', '6361711'), + (63072, 670, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Vmy6a8yA', '6361712'), + (63073, 670, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Vmy6a8yA', '6361713'), + (63074, 670, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Vmy6a8yA', '6382573'), + (63075, 670, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Vmy6a8yA', '6388604'), + (63076, 670, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Vmy6a8yA', '6394629'), + (63077, 670, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Vmy6a8yA', '6394631'), + (63078, 670, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Vmy6a8yA', '6440863'), + (63079, 670, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Vmy6a8yA', '6445440'), + (63080, 670, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Vmy6a8yA', '6453951'), + (63081, 670, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Vmy6a8yA', '6461696'), + (63082, 670, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Vmy6a8yA', '6462129'), + (63083, 670, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Vmy6a8yA', '6463218'), + (63084, 670, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Vmy6a8yA', '6472181'), + (63085, 670, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Vmy6a8yA', '6482693'), + (63086, 670, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'Vmy6a8yA', '6484200'), + (63087, 670, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Vmy6a8yA', '6484680'), + (63088, 670, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Vmy6a8yA', '6507741'), + (63089, 670, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Vmy6a8yA', '6514659'), + (63090, 670, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Vmy6a8yA', '6514660'), + (63091, 670, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Vmy6a8yA', '6519103'), + (63092, 670, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Vmy6a8yA', '6535681'), + (63093, 670, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Vmy6a8yA', '6584747'), + (63094, 670, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Vmy6a8yA', '6587097'), + (63095, 670, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Vmy6a8yA', '6609022'), + (63096, 670, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Vmy6a8yA', '6632757'), + (63097, 670, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Vmy6a8yA', '6644187'), + (63098, 670, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Vmy6a8yA', '6648951'), + (63099, 670, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Vmy6a8yA', '6648952'), + (63100, 670, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Vmy6a8yA', '6655401'), + (63101, 670, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Vmy6a8yA', '6661585'), + (63102, 670, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Vmy6a8yA', '6661588'), + (63103, 670, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Vmy6a8yA', '6661589'), + (63104, 670, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Vmy6a8yA', '6699906'), + (63105, 670, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Vmy6a8yA', '6699913'), + (63106, 670, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Vmy6a8yA', '6701109'), + (63107, 670, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Vmy6a8yA', '6705219'), + (63108, 670, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Vmy6a8yA', '6710153'), + (63109, 670, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Vmy6a8yA', '6711552'), + (63110, 670, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'Vmy6a8yA', '6711553'), + (63111, 670, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Vmy6a8yA', '6722688'), + (63112, 670, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Vmy6a8yA', '6730620'), + (63113, 670, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Vmy6a8yA', '6740364'), + (63114, 670, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Vmy6a8yA', '6743829'), + (63115, 670, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Vmy6a8yA', '7030380'), + (63116, 670, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Vmy6a8yA', '7033677'), + (63117, 670, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Vmy6a8yA', '7044715'), + (63118, 670, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Vmy6a8yA', '7050318'), + (63119, 670, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Vmy6a8yA', '7050319'), + (63120, 670, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Vmy6a8yA', '7050322'), + (63121, 670, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Vmy6a8yA', '7057804'), + (63122, 670, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Vmy6a8yA', '7072824'), + (63123, 670, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Vmy6a8yA', '7074348'), + (63124, 670, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Vmy6a8yA', '7074364'), + (63125, 670, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'Vmy6a8yA', '7089267'), + (63126, 670, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Vmy6a8yA', '7098747'), + (63127, 670, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Vmy6a8yA', '7113468'), + (63128, 670, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Vmy6a8yA', '7114856'), + (63129, 670, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Vmy6a8yA', '7114951'), + (63130, 670, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Vmy6a8yA', '7114955'), + (63131, 670, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Vmy6a8yA', '7114956'), + (63132, 670, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Vmy6a8yA', '7114957'), + (63133, 670, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Vmy6a8yA', '7159484'), + (63134, 670, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Vmy6a8yA', '7178446'), + (63135, 670, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'Vmy6a8yA', '7220467'), + (63136, 670, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Vmy6a8yA', '7240354'), + (63137, 670, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Vmy6a8yA', '7251633'), + (63138, 670, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Vmy6a8yA', '7324073'), + (63139, 670, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Vmy6a8yA', '7324074'), + (63140, 670, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Vmy6a8yA', '7324075'), + (63141, 670, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Vmy6a8yA', '7324078'), + (63142, 670, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Vmy6a8yA', '7324082'), + (63143, 670, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Vmy6a8yA', '7331457'), + (63144, 670, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Vmy6a8yA', '7363643'), + (63145, 670, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Vmy6a8yA', '7368606'), + (63146, 670, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Vmy6a8yA', '7397462'), + (63147, 670, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Vmy6a8yA', '7424275'), + (63148, 670, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Vmy6a8yA', '7432751'), + (63149, 670, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Vmy6a8yA', '7432752'), + (63150, 670, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Vmy6a8yA', '7432753'), + (63151, 670, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432754'), + (63152, 670, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432755'), + (63153, 670, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432756'), + (63154, 670, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432758'), + (63155, 670, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Vmy6a8yA', '7432759'), + (63156, 670, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Vmy6a8yA', '7433834'), + (63157, 670, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Vmy6a8yA', '7470197'), + (63158, 670, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Vmy6a8yA', '7685613'), + (63159, 670, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Vmy6a8yA', '7688194'), + (63160, 670, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Vmy6a8yA', '7688196'), + (63161, 670, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Vmy6a8yA', '7688289'), + (63162, 670, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Vmy6a8yA', '7692763'), + (63163, 670, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Vmy6a8yA', '7697552'), + (63164, 670, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Vmy6a8yA', '7699878'), + (63165, 670, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Vmy6a8yA', '7704043'), + (63166, 670, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Vmy6a8yA', '7712467'), + (63167, 670, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Vmy6a8yA', '7713585'), + (63168, 670, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Vmy6a8yA', '7713586'), + (63169, 670, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Vmy6a8yA', '7738518'), + (63170, 670, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Vmy6a8yA', '7750636'), + (63171, 670, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Vmy6a8yA', '7796540'), + (63172, 670, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Vmy6a8yA', '7796541'), + (63173, 670, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Vmy6a8yA', '7796542'), + (63174, 670, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Vmy6a8yA', '7825913'), + (63175, 670, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Vmy6a8yA', '7826209'), + (63176, 670, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Vmy6a8yA', '7834742'), + (63177, 670, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Vmy6a8yA', '7842108'), + (63178, 670, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Vmy6a8yA', '7842902'), + (63179, 670, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Vmy6a8yA', '7842903'), + (63180, 670, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Vmy6a8yA', '7842904'), + (63181, 670, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Vmy6a8yA', '7842905'), + (63182, 670, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Vmy6a8yA', '7855719'), + (63183, 670, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Vmy6a8yA', '7860683'), + (63184, 670, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Vmy6a8yA', '7860684'), + (63185, 670, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Vmy6a8yA', '7866095'), + (63186, 670, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Vmy6a8yA', '7869170'), + (63187, 670, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Vmy6a8yA', '7869188'), + (63188, 670, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Vmy6a8yA', '7869201'), + (63189, 670, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Vmy6a8yA', '7877465'), + (63190, 670, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Vmy6a8yA', '7888250'), + (63191, 670, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Vmy6a8yA', '7904777'), + (63192, 670, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Vmy6a8yA', '8349164'), + (63193, 670, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Vmy6a8yA', '8349545'), + (63194, 670, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Vmy6a8yA', '8368028'), + (63195, 670, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Vmy6a8yA', '8368029'), + (63196, 670, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Vmy6a8yA', '8388462'), + (63197, 670, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Vmy6a8yA', '8400273'), + (63198, 670, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Vmy6a8yA', '8400275'), + (63199, 670, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Vmy6a8yA', '8400276'), + (63200, 670, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Vmy6a8yA', '8404977'), + (63201, 670, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Vmy6a8yA', '8430783'), + (63202, 670, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Vmy6a8yA', '8430784'), + (63203, 670, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Vmy6a8yA', '8430799'), + (63204, 670, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Vmy6a8yA', '8430800'), + (63205, 670, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Vmy6a8yA', '8430801'), + (63206, 670, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Vmy6a8yA', '8438709'), + (63207, 670, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Vmy6a8yA', '8457738'), + (63208, 670, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Vmy6a8yA', '8459566'), + (63209, 670, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Vmy6a8yA', '8459567'), + (63210, 670, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Vmy6a8yA', '8461032'), + (63211, 670, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Vmy6a8yA', '8477877'), + (63212, 670, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Vmy6a8yA', '8485688'), + (63213, 670, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Vmy6a8yA', '8490587'), + (63214, 670, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Vmy6a8yA', '8493552'), + (63215, 670, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Vmy6a8yA', '8493553'), + (63216, 670, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Vmy6a8yA', '8493554'), + (63217, 670, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Vmy6a8yA', '8493555'), + (63218, 670, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Vmy6a8yA', '8493556'), + (63219, 670, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Vmy6a8yA', '8493557'), + (63220, 670, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Vmy6a8yA', '8493558'), + (63221, 670, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Vmy6a8yA', '8493559'), + (63222, 670, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Vmy6a8yA', '8493560'), + (63223, 670, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Vmy6a8yA', '8493561'), + (63224, 670, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Vmy6a8yA', '8493572'), + (63225, 670, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Vmy6a8yA', '8540725'), + (63226, 670, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Vmy6a8yA', '8555421'), + (63227, 671, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'AnneYvYA', '5186585'), + (63228, 671, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AnneYvYA', '5195095'), + (63229, 671, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AnneYvYA', '5215989'), + (63230, 671, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AnneYvYA', '5223686'), + (63231, 671, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AnneYvYA', '5227432'), + (63232, 671, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AnneYvYA', '5247467'), + (63233, 671, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AnneYvYA', '5260800'), + (63234, 671, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AnneYvYA', '5269930'), + (63235, 671, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AnneYvYA', '5271448'), + (63236, 671, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AnneYvYA', '5271449'), + (63237, 671, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AnneYvYA', '5276469'), + (63238, 671, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AnneYvYA', '5278159'), + (63239, 671, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AnneYvYA', '6045684'), + (63240, 672, 18, 'not_attending', '2020-04-17 20:22:40', '2025-12-17 19:47:57', 'w4W50Mqm', '2958062'), + (63241, 672, 21, 'not_attending', '2020-05-01 17:18:07', '2025-12-17 19:47:57', 'w4W50Mqm', '2958065'), + (63242, 672, 40, 'not_attending', '2020-04-09 04:16:23', '2025-12-17 19:47:57', 'w4W50Mqm', '2970718'), + (63243, 672, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'w4W50Mqm', '2971546'), + (63244, 672, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'w4W50Mqm', '2974534'), + (63245, 672, 46, 'not_attending', '2020-04-11 15:16:38', '2025-12-17 19:47:57', 'w4W50Mqm', '2974955'), + (63246, 672, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'w4W50Mqm', '2975385'), + (63247, 672, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', 'w4W50Mqm', '2976575'), + (63248, 672, 67, 'not_attending', '2020-06-16 21:53:27', '2025-12-17 19:47:58', 'w4W50Mqm', '2977136'), + (63249, 672, 69, 'maybe', '2020-07-02 23:32:53', '2025-12-17 19:47:55', 'w4W50Mqm', '2977138'), + (63250, 672, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'w4W50Mqm', '2977343'), + (63251, 672, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'w4W50Mqm', '2977812'), + (63252, 672, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'w4W50Mqm', '2977931'), + (63253, 672, 74, 'attending', '2020-04-12 04:01:00', '2025-12-17 19:47:57', 'w4W50Mqm', '2978244'), + (63254, 672, 75, 'attending', '2020-04-19 19:40:05', '2025-12-17 19:47:57', 'w4W50Mqm', '2978245'), + (63255, 672, 76, 'attending', '2020-05-01 21:11:43', '2025-12-17 19:47:57', 'w4W50Mqm', '2978246'), + (63256, 672, 77, 'not_attending', '2020-05-04 13:58:20', '2025-12-17 19:47:57', 'w4W50Mqm', '2978247'), + (63257, 672, 78, 'attending', '2020-05-19 22:58:02', '2025-12-17 19:47:57', 'w4W50Mqm', '2978249'), + (63258, 672, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'w4W50Mqm', '2978250'), + (63259, 672, 80, 'attending', '2020-06-06 01:02:10', '2025-12-17 19:47:58', 'w4W50Mqm', '2978251'), + (63260, 672, 81, 'attending', '2020-06-13 23:05:40', '2025-12-17 19:47:58', 'w4W50Mqm', '2978252'), + (63261, 672, 82, 'attending', '2020-04-12 04:00:53', '2025-12-17 19:47:57', 'w4W50Mqm', '2978433'), + (63262, 672, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'w4W50Mqm', '2978438'), + (63263, 672, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'w4W50Mqm', '2980871'), + (63264, 672, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'w4W50Mqm', '2981388'), + (63265, 672, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'w4W50Mqm', '2986743'), + (63266, 672, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', 'w4W50Mqm', '2990784'), + (63267, 672, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', 'w4W50Mqm', '2991471'), + (63268, 672, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'w4W50Mqm', '2993501'), + (63269, 672, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'w4W50Mqm', '2994480'), + (63270, 672, 115, 'attending', '2020-05-16 00:41:17', '2025-12-17 19:47:57', 'w4W50Mqm', '3001217'), + (63271, 672, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'w4W50Mqm', '3023063'), + (63272, 672, 123, 'attending', '2020-05-25 22:58:29', '2025-12-17 19:47:57', 'w4W50Mqm', '3023729'), + (63273, 672, 125, 'attending', '2020-05-22 23:00:38', '2025-12-17 19:47:57', 'w4W50Mqm', '3023987'), + (63274, 672, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'w4W50Mqm', '3034321'), + (63275, 672, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'w4W50Mqm', '3035881'), + (63276, 672, 137, 'maybe', '2020-06-04 22:57:02', '2025-12-17 19:47:58', 'w4W50Mqm', '3042188'), + (63277, 672, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'w4W50Mqm', '3049983'), + (63278, 672, 171, 'attending', '2020-06-13 00:19:38', '2025-12-17 19:47:58', 'w4W50Mqm', '3058743'), + (63279, 672, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'w4W50Mqm', '3058959'), + (63280, 672, 173, 'attending', '2020-06-19 17:06:25', '2025-12-17 19:47:58', 'w4W50Mqm', '3067093'), + (63281, 672, 182, 'attending', '2020-06-27 17:42:07', '2025-12-17 19:47:55', 'w4W50Mqm', '3074514'), + (63282, 672, 183, 'not_attending', '2020-06-22 21:27:25', '2025-12-17 19:47:58', 'w4W50Mqm', '3075228'), + (63283, 672, 185, 'not_attending', '2020-06-16 18:22:06', '2025-12-17 19:47:58', 'w4W50Mqm', '3075456'), + (63284, 672, 186, 'maybe', '2020-06-18 23:16:19', '2025-12-17 19:47:55', 'w4W50Mqm', '3083791'), + (63285, 672, 187, 'maybe', '2020-06-18 23:16:24', '2025-12-17 19:47:55', 'w4W50Mqm', '3085151'), + (63286, 672, 190, 'attending', '2020-07-03 22:50:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3087258'), + (63287, 672, 191, 'attending', '2020-07-07 17:05:14', '2025-12-17 19:47:55', 'w4W50Mqm', '3087259'), + (63288, 672, 192, 'attending', '2020-07-15 18:59:27', '2025-12-17 19:47:55', 'w4W50Mqm', '3087260'), + (63289, 672, 193, 'attending', '2020-07-26 03:05:08', '2025-12-17 19:47:55', 'w4W50Mqm', '3087261'), + (63290, 672, 194, 'attending', '2020-07-28 02:39:24', '2025-12-17 19:47:55', 'w4W50Mqm', '3087262'), + (63291, 672, 195, 'attending', '2020-08-04 22:29:00', '2025-12-17 19:47:56', 'w4W50Mqm', '3087264'), + (63292, 672, 196, 'attending', '2020-08-11 00:31:41', '2025-12-17 19:47:56', 'w4W50Mqm', '3087265'), + (63293, 672, 197, 'attending', '2020-08-19 19:37:22', '2025-12-17 19:47:56', 'w4W50Mqm', '3087266'), + (63294, 672, 198, 'not_attending', '2020-08-29 02:24:16', '2025-12-17 19:47:56', 'w4W50Mqm', '3087267'), + (63295, 672, 199, 'attending', '2020-09-12 22:46:30', '2025-12-17 19:47:56', 'w4W50Mqm', '3087268'), + (63296, 672, 201, 'maybe', '2020-06-25 21:21:10', '2025-12-17 19:47:55', 'w4W50Mqm', '3088653'), + (63297, 672, 202, 'attending', '2020-07-06 22:20:48', '2025-12-17 19:47:55', 'w4W50Mqm', '3090353'), + (63298, 672, 203, 'maybe', '2020-06-22 10:04:12', '2025-12-17 19:47:58', 'w4W50Mqm', '3091624'), + (63299, 672, 205, 'attending', '2020-07-10 21:44:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3104804'), + (63300, 672, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'w4W50Mqm', '3106813'), + (63301, 672, 214, 'attending', '2020-07-08 21:58:47', '2025-12-17 19:47:55', 'w4W50Mqm', '3124139'), + (63302, 672, 217, 'attending', '2020-07-13 23:58:12', '2025-12-17 19:47:55', 'w4W50Mqm', '3126684'), + (63303, 672, 223, 'attending', '2020-09-12 22:46:45', '2025-12-17 19:47:56', 'w4W50Mqm', '3129980'), + (63304, 672, 225, 'attending', '2020-07-21 16:11:22', '2025-12-17 19:47:55', 'w4W50Mqm', '3132378'), + (63305, 672, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'w4W50Mqm', '3132817'), + (63306, 672, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'w4W50Mqm', '3132820'), + (63307, 672, 267, 'attending', '2020-08-01 01:37:59', '2025-12-17 19:47:55', 'w4W50Mqm', '3152781'), + (63308, 672, 271, 'maybe', '2020-08-01 01:38:14', '2025-12-17 19:47:56', 'w4W50Mqm', '3155321'), + (63309, 672, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'w4W50Mqm', '3162006'), + (63310, 672, 274, 'maybe', '2020-08-06 15:10:21', '2025-12-17 19:47:56', 'w4W50Mqm', '3163404'), + (63311, 672, 276, 'attending', '2020-08-04 22:59:18', '2025-12-17 19:47:56', 'w4W50Mqm', '3163408'), + (63312, 672, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'w4W50Mqm', '3163442'), + (63313, 672, 281, 'attending', '2020-08-09 16:20:11', '2025-12-17 19:47:56', 'w4W50Mqm', '3166945'), + (63314, 672, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'w4W50Mqm', '3169555'), + (63315, 672, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'w4W50Mqm', '3172832'), + (63316, 672, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'w4W50Mqm', '3172833'), + (63317, 672, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'w4W50Mqm', '3172834'), + (63318, 672, 296, 'not_attending', '2020-09-11 23:33:38', '2025-12-17 19:47:56', 'w4W50Mqm', '3172876'), + (63319, 672, 297, 'attending', '2020-08-12 00:42:58', '2025-12-17 19:47:56', 'w4W50Mqm', '3173937'), + (63320, 672, 311, 'maybe', '2020-09-11 22:33:50', '2025-12-17 19:47:56', 'w4W50Mqm', '3186057'), + (63321, 672, 317, 'maybe', '2020-08-27 01:35:33', '2025-12-17 19:47:56', 'w4W50Mqm', '3191735'), + (63322, 672, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'w4W50Mqm', '3200209'), + (63323, 672, 342, 'attending', '2020-10-03 00:11:14', '2025-12-17 19:47:52', 'w4W50Mqm', '3204472'), + (63324, 672, 344, 'attending', '2020-11-01 20:06:04', '2025-12-17 19:47:53', 'w4W50Mqm', '3206906'), + (63325, 672, 362, 'not_attending', '2020-09-26 15:34:36', '2025-12-17 19:47:52', 'w4W50Mqm', '3214207'), + (63326, 672, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'w4W50Mqm', '3217037'), + (63327, 672, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'w4W50Mqm', '3218510'), + (63328, 672, 382, 'attending', '2020-10-13 23:06:46', '2025-12-17 19:47:52', 'w4W50Mqm', '3226873'), + (63329, 672, 385, 'attending', '2020-10-03 20:19:23', '2025-12-17 19:47:52', 'w4W50Mqm', '3228698'), + (63330, 672, 386, 'attending', '2020-10-10 18:43:19', '2025-12-17 19:47:52', 'w4W50Mqm', '3228699'), + (63331, 672, 387, 'attending', '2020-10-17 16:57:26', '2025-12-17 19:47:52', 'w4W50Mqm', '3228700'), + (63332, 672, 388, 'attending', '2020-10-24 22:49:53', '2025-12-17 19:47:52', 'w4W50Mqm', '3228701'), + (63333, 672, 414, 'attending', '2020-10-18 22:03:38', '2025-12-17 19:47:52', 'w4W50Mqm', '3237277'), + (63334, 672, 424, 'attending', '2020-10-19 23:34:06', '2025-12-17 19:47:52', 'w4W50Mqm', '3245751'), + (63335, 672, 426, 'attending', '2020-10-18 19:24:37', '2025-12-17 19:47:52', 'w4W50Mqm', '3250232'), + (63336, 672, 438, 'attending', '2020-10-31 23:10:49', '2025-12-17 19:47:53', 'w4W50Mqm', '3256163'), + (63337, 672, 440, 'attending', '2020-10-18 19:24:50', '2025-12-17 19:47:53', 'w4W50Mqm', '3256168'), + (63338, 672, 441, 'attending', '2020-11-11 01:59:14', '2025-12-17 19:47:54', 'w4W50Mqm', '3256169'), + (63339, 672, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'w4W50Mqm', '3263578'), + (63340, 672, 445, 'maybe', '2020-11-13 01:15:00', '2025-12-17 19:47:54', 'w4W50Mqm', '3266138'), + (63341, 672, 448, 'attending', '2020-10-30 23:54:41', '2025-12-17 19:47:53', 'w4W50Mqm', '3271831'), + (63342, 672, 449, 'attending', '2020-11-08 23:40:32', '2025-12-17 19:47:53', 'w4W50Mqm', '3272055'), + (63343, 672, 452, 'attending', '2020-11-06 01:23:56', '2025-12-17 19:47:54', 'w4W50Mqm', '3272981'), + (63344, 672, 456, 'maybe', '2020-11-17 01:05:39', '2025-12-17 19:47:54', 'w4W50Mqm', '3276428'), + (63345, 672, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'w4W50Mqm', '3281467'), + (63346, 672, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'w4W50Mqm', '3281470'), + (63347, 672, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'w4W50Mqm', '3281829'), + (63348, 672, 468, 'attending', '2020-11-17 22:26:57', '2025-12-17 19:47:54', 'w4W50Mqm', '3285413'), + (63349, 672, 469, 'attending', '2020-11-26 01:34:35', '2025-12-17 19:47:54', 'w4W50Mqm', '3285414'), + (63350, 672, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'w4W50Mqm', '3297764'), + (63351, 672, 493, 'maybe', '2020-11-29 21:31:33', '2025-12-17 19:47:54', 'w4W50Mqm', '3313856'), + (63352, 672, 499, 'maybe', '2020-12-01 01:40:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3314909'), + (63353, 672, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'w4W50Mqm', '3314964'), + (63354, 672, 502, 'maybe', '2020-12-13 00:37:24', '2025-12-17 19:47:55', 'w4W50Mqm', '3323365'), + (63355, 672, 513, 'maybe', '2020-12-20 02:55:56', '2025-12-17 19:47:55', 'w4W50Mqm', '3329383'), + (63356, 672, 516, 'maybe', '2020-12-27 01:00:13', '2025-12-17 19:47:48', 'w4W50Mqm', '3334530'), + (63357, 672, 526, 'not_attending', '2020-12-31 05:20:58', '2025-12-17 19:47:48', 'w4W50Mqm', '3351539'), + (63358, 672, 536, 'not_attending', '2021-01-09 23:21:09', '2025-12-17 19:47:48', 'w4W50Mqm', '3386848'), + (63359, 672, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'w4W50Mqm', '3389527'), + (63360, 672, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'w4W50Mqm', '3396499'), + (63361, 672, 548, 'not_attending', '2021-01-17 00:30:02', '2025-12-17 19:47:48', 'w4W50Mqm', '3403650'), + (63362, 672, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'w4W50Mqm', '3406988'), + (63363, 672, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'w4W50Mqm', '3416576'), + (63364, 672, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'w4W50Mqm', '3418925'), + (63365, 672, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'w4W50Mqm', '3539920'), + (63366, 672, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'w4W50Mqm', '3539921'), + (63367, 672, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'w4W50Mqm', '3539922'), + (63368, 672, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'w4W50Mqm', '3539923'), + (63369, 672, 792, 'attending', '2021-05-19 22:31:56', '2025-12-17 19:47:46', 'w4W50Mqm', '3793156'), + (63370, 672, 794, 'attending', '2021-05-26 20:11:57', '2025-12-17 19:47:47', 'w4W50Mqm', '3793538'), + (63371, 672, 805, 'attending', '2021-06-13 21:23:56', '2025-12-17 19:47:47', 'w4W50Mqm', '3804777'), + (63372, 672, 823, 'attending', '2021-06-19 13:57:25', '2025-12-17 19:47:48', 'w4W50Mqm', '3974109'), + (63373, 672, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'w4W50Mqm', '3975311'), + (63374, 672, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4W50Mqm', '3975312'), + (63375, 672, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4W50Mqm', '3994992'), + (63376, 672, 844, 'attending', '2021-06-23 22:42:32', '2025-12-17 19:47:38', 'w4W50Mqm', '4014338'), + (63377, 672, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'w4W50Mqm', '4021848'), + (63378, 672, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4W50Mqm', '4136744'), + (63379, 672, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4W50Mqm', '4136937'), + (63380, 672, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4W50Mqm', '4136938'), + (63381, 672, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4W50Mqm', '4136947'), + (63382, 672, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4W50Mqm', '4210314'), + (63383, 672, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4W50Mqm', '4225444'), + (63384, 672, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4W50Mqm', '4239259'), + (63385, 672, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4W50Mqm', '4240316'), + (63386, 672, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4W50Mqm', '4240317'), + (63387, 672, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4W50Mqm', '4240318'), + (63388, 672, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4W50Mqm', '4240320'), + (63389, 672, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4W50Mqm', '4250163'), + (63390, 672, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4W50Mqm', '4275957'), + (63391, 672, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4W50Mqm', '4277819'), + (63392, 672, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4W50Mqm', '4301723'), + (63393, 672, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'w4W50Mqm', '4302093'), + (63394, 672, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4W50Mqm', '4304151'), + (63395, 672, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'w4W50Mqm', '4356801'), + (63396, 672, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4W50Mqm', '4366186'), + (63397, 672, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'w4W50Mqm', '4366187'), + (63398, 672, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'w4W50Mqm', '4420735'), + (63399, 672, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'w4W50Mqm', '4420738'), + (63400, 672, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'w4W50Mqm', '4420739'), + (63401, 672, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'w4W50Mqm', '4420741'), + (63402, 672, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'w4W50Mqm', '4420744'), + (63403, 672, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'w4W50Mqm', '4420747'), + (63404, 672, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'w4W50Mqm', '4420748'), + (63405, 672, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4W50Mqm', '4420749'), + (63406, 672, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4W50Mqm', '4461883'), + (63407, 672, 1036, 'maybe', '2021-09-22 22:51:34', '2025-12-17 19:47:34', 'w4W50Mqm', '4493166'), + (63408, 672, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4W50Mqm', '4508342'), + (63409, 672, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4W50Mqm', '4568602'), + (63410, 672, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'w4W50Mqm', '4572153'), + (63411, 672, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4W50Mqm', '4585962'), + (63412, 672, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'w4W50Mqm', '4596356'), + (63413, 672, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4W50Mqm', '4598860'), + (63414, 672, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4W50Mqm', '4598861'), + (63415, 672, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'w4W50Mqm', '4602797'), + (63416, 672, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'w4W50Mqm', '4637896'), + (63417, 672, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'w4W50Mqm', '4642994'), + (63418, 672, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'w4W50Mqm', '4642995'), + (63419, 672, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'w4W50Mqm', '4642996'), + (63420, 672, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'w4W50Mqm', '4642997'), + (63421, 672, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'w4W50Mqm', '4645687'), + (63422, 672, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'w4W50Mqm', '4645698'), + (63423, 672, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'w4W50Mqm', '4645704'), + (63424, 672, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'w4W50Mqm', '4645705'), + (63425, 672, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'w4W50Mqm', '4668385'), + (63426, 672, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'w4W50Mqm', '4694407'), + (63427, 672, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4W50Mqm', '4736497'), + (63428, 672, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4W50Mqm', '4736499'), + (63429, 672, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4W50Mqm', '4736500'), + (63430, 672, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4W50Mqm', '4736503'), + (63431, 672, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4W50Mqm', '4736504'), + (63432, 672, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'w4W50Mqm', '4746789'), + (63433, 672, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'w4W50Mqm', '4753929'), + (63434, 672, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4W50Mqm', '5038850'), + (63435, 672, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4W50Mqm', '5045826'), + (63436, 672, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4W50Mqm', '5132533'), + (63437, 672, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4W50Mqm', '5186582'), + (63438, 672, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4W50Mqm', '5186583'), + (63439, 672, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4W50Mqm', '5186585'), + (63440, 672, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4W50Mqm', '5190437'), + (63441, 672, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'w4W50Mqm', '5195095'), + (63442, 672, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4W50Mqm', '5215989'), + (63443, 672, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'w4W50Mqm', '5223686'), + (63444, 672, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'w4W50Mqm', '5247467'), + (63445, 672, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'w4W50Mqm', '5260800'), + (63446, 672, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'w4W50Mqm', '5269930'), + (63447, 672, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'w4W50Mqm', '5271448'), + (63448, 672, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'w4W50Mqm', '5271449'), + (63449, 672, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'w4W50Mqm', '5278159'), + (63450, 672, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'w4W50Mqm', '5363695'), + (63451, 672, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'w4W50Mqm', '5365960'), + (63452, 672, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'w4W50Mqm', '5378247'), + (63453, 672, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'w4W50Mqm', '5389605'), + (63454, 672, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'w4W50Mqm', '5397265'), + (63455, 672, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'w4W50Mqm', '5404786'), + (63456, 672, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'w4W50Mqm', '5405203'), + (63457, 672, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'w4W50Mqm', '5412550'), + (63458, 672, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'w4W50Mqm', '5415046'), + (63459, 672, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'w4W50Mqm', '5422086'), + (63460, 672, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'w4W50Mqm', '5422406'), + (63461, 672, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'w4W50Mqm', '5424565'), + (63462, 672, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'w4W50Mqm', '5426882'), + (63463, 672, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'w4W50Mqm', '5441125'), + (63464, 672, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'w4W50Mqm', '5441126'), + (63465, 672, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'w4W50Mqm', '5441128'), + (63466, 672, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'w4W50Mqm', '5441131'), + (63467, 672, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'w4W50Mqm', '5441132'), + (63468, 672, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'w4W50Mqm', '5453325'), + (63469, 672, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'w4W50Mqm', '5454516'), + (63470, 672, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'w4W50Mqm', '5454605'), + (63471, 672, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'w4W50Mqm', '5455037'), + (63472, 672, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'w4W50Mqm', '5461278'), + (63473, 672, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'w4W50Mqm', '5469480'), + (63474, 672, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'w4W50Mqm', '5474663'), + (63475, 672, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'w4W50Mqm', '5482022'), + (63476, 672, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'w4W50Mqm', '5488912'), + (63477, 672, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'w4W50Mqm', '5492192'), + (63478, 672, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'w4W50Mqm', '5493139'), + (63479, 672, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'w4W50Mqm', '5493200'), + (63480, 672, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'w4W50Mqm', '5502188'), + (63481, 672, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'w4W50Mqm', '5505059'), + (63482, 672, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'w4W50Mqm', '5509055'), + (63483, 672, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'w4W50Mqm', '5512862'), + (63484, 672, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'w4W50Mqm', '5513985'), + (63485, 672, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'w4W50Mqm', '5519981'), + (63486, 672, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'w4W50Mqm', '5522550'), + (63487, 672, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'w4W50Mqm', '5534683'), + (63488, 672, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'w4W50Mqm', '5537735'), + (63489, 672, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'w4W50Mqm', '5540859'), + (63490, 672, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'w4W50Mqm', '5546619'), + (63491, 672, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'w4W50Mqm', '5557747'), + (63492, 672, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'w4W50Mqm', '5560255'), + (63493, 672, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'w4W50Mqm', '5562906'), + (63494, 672, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'w4W50Mqm', '5600604'), + (63495, 672, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'w4W50Mqm', '5605544'), + (63496, 672, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'w4W50Mqm', '5606737'), + (63497, 672, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'w4W50Mqm', '5630960'), + (63498, 672, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'w4W50Mqm', '5630961'), + (63499, 672, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'w4W50Mqm', '5630962'), + (63500, 672, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'w4W50Mqm', '5630966'), + (63501, 672, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'w4W50Mqm', '5630967'), + (63502, 672, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'w4W50Mqm', '5630968'), + (63503, 672, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'w4W50Mqm', '5635406'), + (63504, 672, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'w4W50Mqm', '5638765'), + (63505, 672, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'w4W50Mqm', '5640097'), + (63506, 672, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'w4W50Mqm', '5640843'), + (63507, 672, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'w4W50Mqm', '5641521'), + (63508, 672, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'w4W50Mqm', '5642818'), + (63509, 672, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'w4W50Mqm', '5652395'), + (63510, 672, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'w4W50Mqm', '5670445'), + (63511, 672, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'w4W50Mqm', '5671637'), + (63512, 672, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'w4W50Mqm', '5672329'), + (63513, 672, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'w4W50Mqm', '5674057'), + (63514, 672, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'w4W50Mqm', '5674060'), + (63515, 672, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'w4W50Mqm', '5677461'), + (63516, 672, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'w4W50Mqm', '5698046'), + (63517, 672, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'w4W50Mqm', '5699760'), + (63518, 672, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'w4W50Mqm', '5741601'), + (63519, 672, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'w4W50Mqm', '5763458'), + (63520, 672, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'w4W50Mqm', '5774172'), + (63521, 672, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'w4W50Mqm', '5818247'), + (63522, 672, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'w4W50Mqm', '5819471'), + (63523, 672, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'w4W50Mqm', '5827739'), + (63524, 672, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'w4W50Mqm', '5844306'), + (63525, 672, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'w4W50Mqm', '5850159'), + (63526, 672, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'w4W50Mqm', '5858999'), + (63527, 672, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'w4W50Mqm', '5871984'), + (63528, 672, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'w4W50Mqm', '5876354'), + (63529, 672, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'w4W50Mqm', '5880939'), + (63530, 672, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'w4W50Mqm', '5880940'), + (63531, 672, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'w4W50Mqm', '5880942'), + (63532, 672, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'w4W50Mqm', '5880943'), + (63533, 672, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'w4W50Mqm', '5887890'), + (63534, 672, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'w4W50Mqm', '5888598'), + (63535, 672, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'w4W50Mqm', '5893260'), + (63536, 672, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'w4W50Mqm', '5899826'), + (63537, 672, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'w4W50Mqm', '5900199'), + (63538, 672, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'w4W50Mqm', '5900200'), + (63539, 672, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'w4W50Mqm', '5900202'), + (63540, 672, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'w4W50Mqm', '5900203'), + (63541, 672, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'w4W50Mqm', '5901108'), + (63542, 672, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'w4W50Mqm', '5901126'), + (63543, 672, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'w4W50Mqm', '5909655'), + (63544, 672, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'w4W50Mqm', '5910522'), + (63545, 672, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'w4W50Mqm', '5910526'), + (63546, 672, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'w4W50Mqm', '5910528'), + (63547, 672, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'w4W50Mqm', '5916219'), + (63548, 672, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'w4W50Mqm', '5936234'), + (63549, 672, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'w4W50Mqm', '5958351'), + (63550, 672, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'w4W50Mqm', '5959751'), + (63551, 672, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'w4W50Mqm', '5959755'), + (63552, 672, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'w4W50Mqm', '5960055'), + (63553, 672, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'w4W50Mqm', '5961684'), + (63554, 672, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'w4W50Mqm', '5962132'), + (63555, 672, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'w4W50Mqm', '5962133'), + (63556, 672, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'w4W50Mqm', '5962134'), + (63557, 672, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'w4W50Mqm', '5962317'), + (63558, 672, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'w4W50Mqm', '5962318'), + (63559, 672, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'w4W50Mqm', '5965933'), + (63560, 672, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'w4W50Mqm', '5967014'), + (63561, 672, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'w4W50Mqm', '5972815'), + (63562, 672, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'w4W50Mqm', '5974016'), + (63563, 672, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'w4W50Mqm', '5981515'), + (63564, 672, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'w4W50Mqm', '5993516'), + (63565, 672, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'w4W50Mqm', '5998939'), + (63566, 672, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'w4W50Mqm', '6028191'), + (63567, 672, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'w4W50Mqm', '6040066'), + (63568, 672, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'w4W50Mqm', '6042717'), + (63569, 672, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'w4W50Mqm', '6044838'), + (63570, 672, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'w4W50Mqm', '6044839'), + (63571, 672, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4W50Mqm', '6045684'), + (63572, 672, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'w4W50Mqm', '6050104'), + (63573, 672, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'w4W50Mqm', '6053195'), + (63574, 672, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'w4W50Mqm', '6053198'), + (63575, 672, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'w4W50Mqm', '6056085'), + (63576, 672, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'w4W50Mqm', '6056916'), + (63577, 672, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'w4W50Mqm', '6059290'), + (63578, 672, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'w4W50Mqm', '6060328'), + (63579, 672, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'w4W50Mqm', '6061037'), + (63580, 672, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'w4W50Mqm', '6061039'), + (63581, 672, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'w4W50Mqm', '6067245'), + (63582, 672, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'w4W50Mqm', '6068094'), + (63583, 672, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'w4W50Mqm', '6068252'), + (63584, 672, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'w4W50Mqm', '6068253'), + (63585, 672, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'w4W50Mqm', '6068254'), + (63586, 672, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'w4W50Mqm', '6068280'), + (63587, 672, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'w4W50Mqm', '6069093'), + (63588, 672, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'w4W50Mqm', '6072528'), + (63589, 672, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'w4W50Mqm', '6079840'), + (63590, 672, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'w4W50Mqm', '6083398'), + (63591, 672, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'w4W50Mqm', '6093504'), + (63592, 672, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'w4W50Mqm', '6097414'), + (63593, 672, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'w4W50Mqm', '6097442'), + (63594, 672, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'w4W50Mqm', '6097684'), + (63595, 672, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'w4W50Mqm', '6098762'), + (63596, 672, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'w4W50Mqm', '6101361'), + (63597, 672, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'w4W50Mqm', '6101362'), + (63598, 672, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'w4W50Mqm', '6107314'), + (63599, 672, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'w4W50Mqm', '6120034'), + (63600, 672, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'w4W50Mqm', '6136733'), + (63601, 672, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'w4W50Mqm', '6137989'), + (63602, 672, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'w4W50Mqm', '6150864'), + (63603, 672, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'w4W50Mqm', '6155491'), + (63604, 672, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'w4W50Mqm', '6164417'), + (63605, 672, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'w4W50Mqm', '6166388'), + (63606, 672, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'w4W50Mqm', '6176439'), + (63607, 672, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'w4W50Mqm', '6182410'), + (63608, 672, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'w4W50Mqm', '6185812'), + (63609, 672, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'w4W50Mqm', '6187651'), + (63610, 672, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'w4W50Mqm', '6187963'), + (63611, 672, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'w4W50Mqm', '6187964'), + (63612, 672, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'w4W50Mqm', '6187966'), + (63613, 672, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'w4W50Mqm', '6187967'), + (63614, 672, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'w4W50Mqm', '6187969'), + (63615, 672, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'w4W50Mqm', '6334878'), + (63616, 672, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'w4W50Mqm', '6337236'), + (63617, 672, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'w4W50Mqm', '6337970'), + (63618, 672, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'w4W50Mqm', '6338308'), + (63619, 672, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'w4W50Mqm', '6341710'), + (63620, 672, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'w4W50Mqm', '6342044'), + (63621, 672, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'w4W50Mqm', '6342298'), + (63622, 672, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'w4W50Mqm', '6343294'), + (63623, 672, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'w4W50Mqm', '6347034'), + (63624, 672, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'w4W50Mqm', '6347056'), + (63625, 672, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'w4W50Mqm', '6353830'), + (63626, 672, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'w4W50Mqm', '6353831'), + (63627, 672, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'w4W50Mqm', '6357867'), + (63628, 672, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'w4W50Mqm', '6358652'), + (63629, 672, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'w4W50Mqm', '6361709'), + (63630, 672, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'w4W50Mqm', '6361710'), + (63631, 672, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'w4W50Mqm', '6361711'), + (63632, 672, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'w4W50Mqm', '6361712'), + (63633, 672, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'w4W50Mqm', '6361713'), + (63634, 672, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'w4W50Mqm', '6382573'), + (63635, 672, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'w4W50Mqm', '6388604'), + (63636, 672, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'w4W50Mqm', '6394629'), + (63637, 672, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'w4W50Mqm', '6394631'), + (63638, 672, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'w4W50Mqm', '6440863'), + (63639, 672, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'w4W50Mqm', '6445440'), + (63640, 672, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'w4W50Mqm', '6453951'), + (63641, 672, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'w4W50Mqm', '6461696'), + (63642, 672, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'w4W50Mqm', '6462129'), + (63643, 672, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'w4W50Mqm', '6463218'), + (63644, 672, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'w4W50Mqm', '6472181'), + (63645, 672, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'w4W50Mqm', '6482693'), + (63646, 672, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'w4W50Mqm', '6484200'), + (63647, 672, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'w4W50Mqm', '6484680'), + (63648, 672, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'w4W50Mqm', '6507741'), + (63649, 672, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'w4W50Mqm', '6514659'), + (63650, 672, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'w4W50Mqm', '6514660'), + (63651, 672, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'w4W50Mqm', '6519103'), + (63652, 672, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'w4W50Mqm', '6535681'), + (63653, 672, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'w4W50Mqm', '6584747'), + (63654, 672, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'w4W50Mqm', '6587097'), + (63655, 672, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'w4W50Mqm', '6609022'), + (63656, 672, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'w4W50Mqm', '6632757'), + (63657, 672, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'w4W50Mqm', '6644187'), + (63658, 672, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'w4W50Mqm', '6648951'), + (63659, 672, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'w4W50Mqm', '6648952'), + (63660, 672, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'w4W50Mqm', '6655401'), + (63661, 672, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'w4W50Mqm', '6661585'), + (63662, 672, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'w4W50Mqm', '6661588'), + (63663, 672, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'w4W50Mqm', '6661589'), + (63664, 672, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'w4W50Mqm', '6699906'), + (63665, 672, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'w4W50Mqm', '6699913'), + (63666, 672, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'w4W50Mqm', '6701109'), + (63667, 672, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'w4W50Mqm', '6705219'), + (63668, 672, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'w4W50Mqm', '6710153'), + (63669, 672, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'w4W50Mqm', '6711552'), + (63670, 672, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'w4W50Mqm', '6711553'), + (63671, 672, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'w4W50Mqm', '6722688'), + (63672, 672, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'w4W50Mqm', '6730620'), + (63673, 672, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'w4W50Mqm', '6740364'), + (63674, 672, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'w4W50Mqm', '6743829'), + (63675, 672, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'w4W50Mqm', '7030380'), + (63676, 672, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'w4W50Mqm', '7033677'), + (63677, 672, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'w4W50Mqm', '7044715'), + (63678, 672, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'w4W50Mqm', '7050318'), + (63679, 672, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'w4W50Mqm', '7050319'), + (63680, 672, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'w4W50Mqm', '7050322'), + (63681, 672, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'w4W50Mqm', '7057804'), + (63682, 672, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'w4W50Mqm', '7072824'), + (63683, 672, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'w4W50Mqm', '7074348'), + (63684, 672, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'w4W50Mqm', '7074364'), + (63685, 672, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'w4W50Mqm', '7089267'), + (63686, 672, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'w4W50Mqm', '7098747'), + (63687, 672, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'w4W50Mqm', '7113468'), + (63688, 672, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'w4W50Mqm', '7114856'), + (63689, 672, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'w4W50Mqm', '7114951'), + (63690, 672, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'w4W50Mqm', '7114955'), + (63691, 672, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'w4W50Mqm', '7114956'), + (63692, 672, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'w4W50Mqm', '7114957'), + (63693, 672, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'w4W50Mqm', '7159484'), + (63694, 672, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'w4W50Mqm', '7178446'), + (63695, 672, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'w4W50Mqm', '7220467'), + (63696, 672, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'w4W50Mqm', '7240354'), + (63697, 672, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'w4W50Mqm', '7251633'), + (63698, 672, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'w4W50Mqm', '7324073'), + (63699, 672, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'w4W50Mqm', '7324074'), + (63700, 672, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'w4W50Mqm', '7324075'), + (63701, 672, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'w4W50Mqm', '7324078'), + (63702, 672, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'w4W50Mqm', '7324082'), + (63703, 672, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'w4W50Mqm', '7331457'), + (63704, 672, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'w4W50Mqm', '7363643'), + (63705, 672, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'w4W50Mqm', '7368606'), + (63706, 672, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'w4W50Mqm', '7397462'), + (63707, 672, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'w4W50Mqm', '7424275'), + (63708, 672, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'w4W50Mqm', '7432751'), + (63709, 672, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'w4W50Mqm', '7432752'), + (63710, 672, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'w4W50Mqm', '7432753'), + (63711, 672, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'w4W50Mqm', '7432754'), + (63712, 672, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'w4W50Mqm', '7432755'), + (63713, 672, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'w4W50Mqm', '7432756'), + (63714, 672, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'w4W50Mqm', '7432758'), + (63715, 672, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'w4W50Mqm', '7432759'), + (63716, 672, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'w4W50Mqm', '7433834'), + (63717, 672, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'w4W50Mqm', '7470197'), + (63718, 672, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'w4W50Mqm', '7685613'), + (63719, 672, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'w4W50Mqm', '7688194'), + (63720, 672, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'w4W50Mqm', '7688196'), + (63721, 672, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'w4W50Mqm', '7688289'), + (63722, 672, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'w4W50Mqm', '7692763'), + (63723, 672, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'w4W50Mqm', '7697552'), + (63724, 672, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'w4W50Mqm', '7699878'), + (63725, 672, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'w4W50Mqm', '7704043'), + (63726, 672, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'w4W50Mqm', '7712467'), + (63727, 672, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'w4W50Mqm', '7713585'), + (63728, 672, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'w4W50Mqm', '7713586'), + (63729, 672, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'w4W50Mqm', '7738518'), + (63730, 672, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'w4W50Mqm', '7750636'), + (63731, 672, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'w4W50Mqm', '7796540'), + (63732, 672, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'w4W50Mqm', '7796541'), + (63733, 672, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'w4W50Mqm', '7796542'), + (63734, 672, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'w4W50Mqm', '7825913'), + (63735, 672, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'w4W50Mqm', '7826209'), + (63736, 672, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'w4W50Mqm', '7834742'), + (63737, 672, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'w4W50Mqm', '7842108'), + (63738, 672, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'w4W50Mqm', '7842902'), + (63739, 672, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'w4W50Mqm', '7842903'), + (63740, 672, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'w4W50Mqm', '7842904'), + (63741, 672, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'w4W50Mqm', '7842905'), + (63742, 672, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'w4W50Mqm', '7855719'), + (63743, 672, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'w4W50Mqm', '7860683'), + (63744, 672, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'w4W50Mqm', '7860684'), + (63745, 672, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'w4W50Mqm', '7866095'), + (63746, 672, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'w4W50Mqm', '7869170'), + (63747, 672, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'w4W50Mqm', '7869188'), + (63748, 672, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'w4W50Mqm', '7869201'), + (63749, 672, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'w4W50Mqm', '7877465'), + (63750, 672, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'w4W50Mqm', '7888250'), + (63751, 672, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'w4W50Mqm', '7904777'), + (63752, 672, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'w4W50Mqm', '8349164'), + (63753, 672, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'w4W50Mqm', '8349545'), + (63754, 672, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'w4W50Mqm', '8368028'), + (63755, 672, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'w4W50Mqm', '8368029'), + (63756, 672, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'w4W50Mqm', '8388462'), + (63757, 672, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'w4W50Mqm', '8400273'), + (63758, 672, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'w4W50Mqm', '8400275'), + (63759, 672, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'w4W50Mqm', '8400276'), + (63760, 672, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'w4W50Mqm', '8404977'), + (63761, 672, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'w4W50Mqm', '8430783'), + (63762, 672, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'w4W50Mqm', '8430784'), + (63763, 672, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'w4W50Mqm', '8430799'), + (63764, 672, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'w4W50Mqm', '8430800'), + (63765, 672, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'w4W50Mqm', '8430801'), + (63766, 672, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'w4W50Mqm', '8438709'), + (63767, 672, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'w4W50Mqm', '8457738'), + (63768, 672, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'w4W50Mqm', '8459566'), + (63769, 672, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'w4W50Mqm', '8459567'), + (63770, 672, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'w4W50Mqm', '8461032'), + (63771, 672, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'w4W50Mqm', '8477877'), + (63772, 672, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'w4W50Mqm', '8485688'), + (63773, 672, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'w4W50Mqm', '8490587'), + (63774, 672, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'w4W50Mqm', '8493552'), + (63775, 672, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'w4W50Mqm', '8493553'), + (63776, 672, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'w4W50Mqm', '8493554'), + (63777, 672, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'w4W50Mqm', '8493555'), + (63778, 672, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'w4W50Mqm', '8493556'), + (63779, 672, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'w4W50Mqm', '8493557'), + (63780, 672, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'w4W50Mqm', '8493558'), + (63781, 672, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'w4W50Mqm', '8493559'), + (63782, 672, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'w4W50Mqm', '8493560'), + (63783, 672, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'w4W50Mqm', '8493561'), + (63784, 672, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'w4W50Mqm', '8493572'), + (63785, 672, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'w4W50Mqm', '8540725'), + (63786, 672, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'w4W50Mqm', '8555421'), + (63787, 673, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd3GJVGGd', '6361713'), + (63788, 673, 2245, 'attending', '2023-09-26 19:44:09', '2025-12-17 19:46:45', 'd3GJVGGd', '6393703'), + (63789, 673, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd3GJVGGd', '6394631'), + (63790, 673, 2253, 'attending', '2023-09-28 16:06:03', '2025-12-17 19:46:45', 'd3GJVGGd', '6401811'), + (63791, 673, 2256, 'maybe', '2023-09-21 19:15:32', '2025-12-17 19:46:45', 'd3GJVGGd', '6404369'), + (63792, 673, 2263, 'maybe', '2023-10-02 01:42:52', '2025-12-17 19:46:45', 'd3GJVGGd', '6429351'), + (63793, 673, 2264, 'attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd3GJVGGd', '6431478'), + (63794, 673, 2267, 'maybe', '2023-10-02 01:42:32', '2025-12-17 19:46:45', 'd3GJVGGd', '6440034'), + (63795, 673, 2268, 'maybe', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd3GJVGGd', '6440863'), + (63796, 673, 2270, 'maybe', '2023-10-03 00:16:59', '2025-12-17 19:46:46', 'd3GJVGGd', '6443067'), + (63797, 673, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd3GJVGGd', '6445440'), + (63798, 673, 2273, 'attending', '2023-10-04 01:19:39', '2025-12-17 19:46:45', 'd3GJVGGd', '6448282'), + (63799, 673, 2274, 'attending', '2023-10-03 22:52:13', '2025-12-17 19:46:45', 'd3GJVGGd', '6448287'), + (63800, 673, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd3GJVGGd', '6453951'), + (63801, 673, 2277, 'not_attending', '2023-10-09 00:55:37', '2025-12-17 19:46:46', 'd3GJVGGd', '6455211'), + (63802, 673, 2279, 'attending', '2023-10-09 00:55:25', '2025-12-17 19:46:46', 'd3GJVGGd', '6455460'), + (63803, 673, 2280, 'maybe', '2023-10-09 00:54:44', '2025-12-17 19:46:46', 'd3GJVGGd', '6455470'), + (63804, 673, 2283, 'maybe', '2023-10-09 00:55:01', '2025-12-17 19:46:46', 'd3GJVGGd', '6455503'), + (63805, 673, 2284, 'not_attending', '2023-10-10 17:12:28', '2025-12-17 19:46:46', 'd3GJVGGd', '6460928'), + (63806, 673, 2285, 'attending', '2023-10-18 01:40:56', '2025-12-17 19:46:47', 'd3GJVGGd', '6460929'), + (63807, 673, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd3GJVGGd', '6461696'), + (63808, 673, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd3GJVGGd', '6462129'), + (63809, 673, 2290, 'attending', '2023-10-18 01:40:17', '2025-12-17 19:46:46', 'd3GJVGGd', '6462214'), + (63810, 673, 2291, 'not_attending', '2023-10-18 01:40:22', '2025-12-17 19:46:46', 'd3GJVGGd', '6462215'), + (63811, 673, 2292, 'maybe', '2023-10-23 02:01:24', '2025-12-17 19:46:47', 'd3GJVGGd', '6462216'), + (63812, 673, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd3GJVGGd', '6463218'), + (63813, 673, 2294, 'maybe', '2023-10-18 01:41:12', '2025-12-17 19:46:46', 'd3GJVGGd', '6465907'), + (63814, 673, 2296, 'maybe', '2023-10-18 01:40:49', '2025-12-17 19:46:47', 'd3GJVGGd', '6468393'), + (63815, 673, 2299, 'not_attending', '2023-10-18 01:40:27', '2025-12-17 19:46:46', 'd3GJVGGd', '6472181'), + (63816, 673, 2303, 'attending', '2023-10-23 02:01:04', '2025-12-17 19:46:47', 'd3GJVGGd', '6482691'), + (63817, 673, 2304, 'maybe', '2023-10-23 02:01:30', '2025-12-17 19:46:47', 'd3GJVGGd', '6482693'), + (63818, 673, 2306, 'attending', '2023-11-15 17:57:02', '2025-12-17 19:46:47', 'd3GJVGGd', '6484200'), + (63819, 673, 2307, 'attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd3GJVGGd', '6484680'), + (63820, 673, 2310, 'not_attending', '2023-11-01 23:51:21', '2025-12-17 19:46:47', 'd3GJVGGd', '6487709'), + (63821, 673, 2311, 'not_attending', '2023-11-01 23:51:06', '2025-12-17 19:46:47', 'd3GJVGGd', '6487725'), + (63822, 673, 2316, 'maybe', '2023-11-01 23:51:33', '2025-12-17 19:46:48', 'd3GJVGGd', '6493668'), + (63823, 673, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd3GJVGGd', '6507741'), + (63824, 673, 2320, 'maybe', '2023-11-01 23:50:39', '2025-12-17 19:46:47', 'd3GJVGGd', '6508647'), + (63825, 673, 2322, 'attending', '2023-11-01 23:51:38', '2025-12-17 19:46:48', 'd3GJVGGd', '6514659'), + (63826, 673, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd3GJVGGd', '6514660'), + (63827, 673, 2324, 'not_attending', '2023-12-07 18:45:57', '2025-12-17 19:46:49', 'd3GJVGGd', '6514662'), + (63828, 673, 2325, 'attending', '2023-12-11 02:15:38', '2025-12-17 19:46:36', 'd3GJVGGd', '6514663'), + (63829, 673, 2327, 'maybe', '2023-11-01 23:50:50', '2025-12-17 19:46:47', 'd3GJVGGd', '6515494'), + (63830, 673, 2331, 'attending', '2023-11-05 15:49:43', '2025-12-17 19:46:47', 'd3GJVGGd', '6518640'), + (63831, 673, 2333, 'attending', '2023-11-05 15:49:26', '2025-12-17 19:46:47', 'd3GJVGGd', '6519103'), + (63832, 673, 2335, 'attending', '2023-11-11 00:04:13', '2025-12-17 19:46:47', 'd3GJVGGd', '6534890'), + (63833, 673, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd3GJVGGd', '6535681'), + (63834, 673, 2338, 'attending', '2023-11-21 21:07:34', '2025-12-17 19:46:48', 'd3GJVGGd', '6538868'), + (63835, 673, 2345, 'attending', '2023-11-27 17:43:21', '2025-12-17 19:46:48', 'd3GJVGGd', '6582414'), + (63836, 673, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd3GJVGGd', '6584747'), + (63837, 673, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd3GJVGGd', '6587097'), + (63838, 673, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd3GJVGGd', '6609022'), + (63839, 673, 2364, 'maybe', '2023-12-07 18:45:53', '2025-12-17 19:46:49', 'd3GJVGGd', '6613011'), + (63840, 673, 2368, 'attending', '2023-12-11 02:15:43', '2025-12-17 19:46:36', 'd3GJVGGd', '6621445'), + (63841, 673, 2370, 'attending', '2023-12-14 00:18:20', '2025-12-17 19:46:36', 'd3GJVGGd', '6623765'), + (63842, 673, 2372, 'maybe', '2023-12-17 17:41:58', '2025-12-17 19:46:36', 'd3GJVGGd', '6628243'), + (63843, 673, 2373, 'not_attending', '2024-01-01 17:05:02', '2025-12-17 19:46:38', 'd3GJVGGd', '6632678'), + (63844, 673, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd3GJVGGd', '6632757'), + (63845, 673, 2377, 'not_attending', '2024-01-01 17:04:47', '2025-12-17 19:46:37', 'd3GJVGGd', '6643448'), + (63846, 673, 2378, 'maybe', '2024-01-01 17:04:09', '2025-12-17 19:46:37', 'd3GJVGGd', '6644006'), + (63847, 673, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd3GJVGGd', '6644187'), + (63848, 673, 2381, 'maybe', '2024-01-01 17:04:40', '2025-12-17 19:46:37', 'd3GJVGGd', '6646398'), + (63849, 673, 2382, 'maybe', '2024-01-01 17:04:03', '2025-12-17 19:46:37', 'd3GJVGGd', '6646401'), + (63850, 673, 2384, 'maybe', '2024-01-02 15:39:09', '2025-12-17 19:46:37', 'd3GJVGGd', '6648022'), + (63851, 673, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd3GJVGGd', '6648951'), + (63852, 673, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd3GJVGGd', '6648952'), + (63853, 673, 2388, 'maybe', '2024-01-03 13:57:19', '2025-12-17 19:46:37', 'd3GJVGGd', '6649244'), + (63854, 673, 2389, 'not_attending', '2024-01-12 16:11:06', '2025-12-17 19:46:40', 'd3GJVGGd', '6651094'), + (63855, 673, 2391, 'attending', '2024-01-08 18:33:09', '2025-12-17 19:46:37', 'd3GJVGGd', '6654138'), + (63856, 673, 2396, 'maybe', '2024-01-12 16:07:43', '2025-12-17 19:46:38', 'd3GJVGGd', '6655401'), + (63857, 673, 2397, 'attending', '2024-01-08 18:32:49', '2025-12-17 19:46:37', 'd3GJVGGd', '6657379'), + (63858, 673, 2398, 'maybe', '2024-01-08 18:32:59', '2025-12-17 19:46:37', 'd3GJVGGd', '6657381'), + (63859, 673, 2399, 'maybe', '2024-01-12 16:11:30', '2025-12-17 19:46:38', 'd3GJVGGd', '6657583'), + (63860, 673, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd3GJVGGd', '6661585'), + (63861, 673, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd3GJVGGd', '6661588'), + (63862, 673, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd3GJVGGd', '6661589'), + (63863, 673, 2404, 'maybe', '2024-01-12 16:07:32', '2025-12-17 19:46:38', 'd3GJVGGd', '6666858'), + (63864, 673, 2405, 'attending', '2024-01-12 16:08:23', '2025-12-17 19:46:38', 'd3GJVGGd', '6667332'), + (63865, 673, 2406, 'attending', '2024-01-15 16:35:03', '2025-12-17 19:46:40', 'd3GJVGGd', '6692344'), + (63866, 673, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd3GJVGGd', '6699906'), + (63867, 673, 2408, 'attending', '2024-01-22 16:47:25', '2025-12-17 19:46:40', 'd3GJVGGd', '6699907'), + (63868, 673, 2409, 'not_attending', '2024-01-22 16:47:09', '2025-12-17 19:46:41', 'd3GJVGGd', '6699909'), + (63869, 673, 2410, 'not_attending', '2024-02-07 17:52:14', '2025-12-17 19:46:41', 'd3GJVGGd', '6699911'), + (63870, 673, 2411, 'attending', '2024-02-07 17:52:41', '2025-12-17 19:46:41', 'd3GJVGGd', '6699913'), + (63871, 673, 2412, 'maybe', '2024-02-19 21:05:55', '2025-12-17 19:46:43', 'd3GJVGGd', '6700717'), + (63872, 673, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd3GJVGGd', '6701109'), + (63873, 673, 2417, 'maybe', '2024-01-21 21:50:55', '2025-12-17 19:46:40', 'd3GJVGGd', '6701905'), + (63874, 673, 2420, 'maybe', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'd3GJVGGd', '6704561'), + (63875, 673, 2421, 'attending', '2024-01-22 16:47:33', '2025-12-17 19:46:40', 'd3GJVGGd', '6704598'), + (63876, 673, 2422, 'maybe', '2024-01-22 16:47:39', '2025-12-17 19:46:40', 'd3GJVGGd', '6704650'), + (63877, 673, 2423, 'maybe', '2024-01-22 16:47:57', '2025-12-17 19:46:40', 'd3GJVGGd', '6705141'), + (63878, 673, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd3GJVGGd', '6705219'), + (63879, 673, 2426, 'maybe', '2024-01-22 16:48:12', '2025-12-17 19:46:40', 'd3GJVGGd', '6705569'), + (63880, 673, 2427, 'maybe', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'd3GJVGGd', '6708410'), + (63881, 673, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd3GJVGGd', '6710153'), + (63882, 673, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd3GJVGGd', '6711552'), + (63883, 673, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd3GJVGGd', '6711553'), + (63884, 673, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd3GJVGGd', '6722688'), + (63885, 673, 2438, 'attending', '2024-02-07 17:52:00', '2025-12-17 19:46:41', 'd3GJVGGd', '6730201'), + (63886, 673, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd3GJVGGd', '6730620'), + (63887, 673, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd3GJVGGd', '6730642'), + (63888, 673, 2444, 'not_attending', '2024-02-07 17:52:10', '2025-12-17 19:46:41', 'd3GJVGGd', '6734367'), + (63889, 673, 2445, 'attending', '2024-02-10 17:38:15', '2025-12-17 19:46:41', 'd3GJVGGd', '6734368'), + (63890, 673, 2447, 'maybe', '2024-03-11 20:38:25', '2025-12-17 19:46:32', 'd3GJVGGd', '6734370'), + (63891, 673, 2452, 'attending', '2024-02-07 17:52:22', '2025-12-17 19:46:41', 'd3GJVGGd', '6740361'), + (63892, 673, 2453, 'attending', '2024-02-07 17:52:30', '2025-12-17 19:46:42', 'd3GJVGGd', '6740364'), + (63893, 673, 2456, 'not_attending', '2024-02-08 16:20:40', '2025-12-17 19:46:41', 'd3GJVGGd', '6742202'), + (63894, 673, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd3GJVGGd', '6743829'), + (63895, 673, 2468, 'maybe', '2024-02-25 16:00:31', '2025-12-17 19:46:43', 'd3GJVGGd', '7030380'), + (63896, 673, 2469, 'maybe', '2024-02-19 21:08:01', '2025-12-17 19:46:42', 'd3GJVGGd', '7030632'), + (63897, 673, 2471, 'attending', '2024-02-19 21:05:48', '2025-12-17 19:46:42', 'd3GJVGGd', '7032425'), + (63898, 673, 2472, 'attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd3GJVGGd', '7033677'), + (63899, 673, 2473, 'attending', '2024-02-25 16:00:23', '2025-12-17 19:46:43', 'd3GJVGGd', '7033724'), + (63900, 673, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd3GJVGGd', '7035415'), + (63901, 673, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd3GJVGGd', '7044715'), + (63902, 673, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd3GJVGGd', '7050318'), + (63903, 673, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd3GJVGGd', '7050319'), + (63904, 673, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd3GJVGGd', '7050322'), + (63905, 673, 2498, 'maybe', '2024-03-11 20:38:44', '2025-12-17 19:46:33', 'd3GJVGGd', '7057662'), + (63906, 673, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd3GJVGGd', '7057804'), + (63907, 673, 2500, 'attending', '2024-03-07 00:21:16', '2025-12-17 19:46:43', 'd3GJVGGd', '7058603'), + (63908, 673, 2502, 'not_attending', '2024-03-06 02:24:22', '2025-12-17 19:46:33', 'd3GJVGGd', '7061202'), + (63909, 673, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd3GJVGGd', '7072824'), + (63910, 673, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd3GJVGGd', '7074348'), + (63911, 673, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd3GJVGGd', '7074364'), + (63912, 673, 2534, 'attending', '2024-03-13 21:17:58', '2025-12-17 19:46:32', 'd3GJVGGd', '7076875'), + (63913, 673, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd3GJVGGd', '7089267'), + (63914, 673, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd3GJVGGd', '7098747'), + (63915, 673, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd3GJVGGd', '7113468'), + (63916, 673, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd3GJVGGd', '7114856'), + (63917, 673, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd3GJVGGd', '7114951'), + (63918, 673, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd3GJVGGd', '7114955'), + (63919, 673, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd3GJVGGd', '7114956'), + (63920, 673, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd3GJVGGd', '7114957'), + (63921, 673, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd3GJVGGd', '7153615'), + (63922, 673, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd3GJVGGd', '7159484'), + (63923, 673, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd3GJVGGd', '7178446'), + (63924, 673, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd3GJVGGd', '7220467'), + (63925, 673, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd3GJVGGd', '7240354'), + (63926, 673, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd3GJVGGd', '7251633'), + (63927, 673, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd3GJVGGd', '7302674'), + (63928, 673, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd3GJVGGd', '7324073'), + (63929, 673, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd3GJVGGd', '7324074'), + (63930, 673, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd3GJVGGd', '7324075'), + (63931, 673, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd3GJVGGd', '7324078'), + (63932, 673, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd3GJVGGd', '7324082'), + (63933, 673, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd3GJVGGd', '7331457'), + (63934, 673, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd3GJVGGd', '7363643'), + (63935, 673, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd3GJVGGd', '7368606'), + (63936, 673, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd3GJVGGd', '7397462'), + (63937, 673, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd3GJVGGd', '7424275'), + (63938, 673, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd3GJVGGd', '7424276'), + (63939, 673, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd3GJVGGd', '7432751'), + (63940, 673, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd3GJVGGd', '7432752'), + (63941, 673, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd3GJVGGd', '7432753'), + (63942, 673, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd3GJVGGd', '7432754'), + (63943, 673, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd3GJVGGd', '7432755'), + (63944, 673, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd3GJVGGd', '7432756'), + (63945, 673, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd3GJVGGd', '7432758'), + (63946, 673, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd3GJVGGd', '7432759'), + (63947, 673, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd3GJVGGd', '7433834'), + (63948, 673, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd3GJVGGd', '7470197'), + (63949, 673, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd3GJVGGd', '7685613'), + (63950, 673, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd3GJVGGd', '7688194'), + (63951, 673, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd3GJVGGd', '7688196'), + (63952, 673, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd3GJVGGd', '7688289'), + (63953, 674, 333, 'not_attending', '2020-10-06 18:42:20', '2025-12-17 19:47:52', 'NmLrDoZ4', '3199782'), + (63954, 674, 342, 'attending', '2020-09-29 13:15:40', '2025-12-17 19:47:52', 'NmLrDoZ4', '3204472'), + (63955, 674, 363, 'not_attending', '2020-09-27 21:34:32', '2025-12-17 19:47:52', 'NmLrDoZ4', '3217037'), + (63956, 674, 375, 'attending', '2020-10-02 14:18:58', '2025-12-17 19:47:52', 'NmLrDoZ4', '3222825'), + (63957, 674, 383, 'attending', '2020-09-28 00:01:56', '2025-12-17 19:47:52', 'NmLrDoZ4', '3227946'), + (63958, 674, 385, 'attending', '2020-09-29 13:16:00', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228698'), + (63959, 674, 386, 'attending', '2020-10-02 14:19:05', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228699'), + (63960, 674, 387, 'not_attending', '2020-10-17 17:41:46', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228700'), + (63961, 674, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'NmLrDoZ4', '3228701'), + (63962, 674, 390, 'not_attending', '2020-10-04 15:39:55', '2025-12-17 19:47:52', 'NmLrDoZ4', '3231510'), + (63963, 674, 411, 'not_attending', '2020-10-11 14:58:35', '2025-12-17 19:47:52', 'NmLrDoZ4', '3236596'), + (63964, 674, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLrDoZ4', '3245751'), + (63965, 674, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'NmLrDoZ4', '3250232'), + (63966, 674, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'NmLrDoZ4', '3256168'), + (63967, 674, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLrDoZ4', '3263578'), + (63968, 674, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'NmLrDoZ4', '3266138'), + (63969, 674, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'NmLrDoZ4', '3276428'), + (63970, 674, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'NmLrDoZ4', '3281467'), + (63971, 674, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'NmLrDoZ4', '3281470'), + (63972, 674, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'NmLrDoZ4', '3281829'), + (63973, 674, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'NmLrDoZ4', '3285413'), + (63974, 674, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'NmLrDoZ4', '3285414'), + (63975, 674, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'NmLrDoZ4', '3297764'), + (63976, 674, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'NmLrDoZ4', '3313856'), + (63977, 674, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'NmLrDoZ4', '3314909'), + (63978, 674, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLrDoZ4', '6045684'), + (63979, 675, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOOeV88d', '6632757'), + (63980, 675, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOOeV88d', '6644187'), + (63981, 675, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOOeV88d', '6648951'), + (63982, 675, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOOeV88d', '6648952'), + (63983, 675, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dOOeV88d', '6651141'), + (63984, 675, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOOeV88d', '6655401'), + (63985, 675, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOOeV88d', '6661585'), + (63986, 675, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOOeV88d', '6661588'), + (63987, 675, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOOeV88d', '6661589'), + (63988, 675, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOOeV88d', '6699906'), + (63989, 675, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOOeV88d', '6699913'), + (63990, 675, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOOeV88d', '6701109'), + (63991, 675, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOOeV88d', '6705219'), + (63992, 675, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOOeV88d', '6710153'), + (63993, 675, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOOeV88d', '6711552'), + (63994, 675, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOOeV88d', '6711553'), + (63995, 675, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOOeV88d', '6722688'), + (63996, 675, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOOeV88d', '6730620'), + (63997, 675, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOOeV88d', '6730642'), + (63998, 675, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOOeV88d', '6740364'), + (63999, 675, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOOeV88d', '6743829'), + (64000, 675, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOOeV88d', '7030380'), + (64001, 675, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOOeV88d', '7033677'), + (64002, 675, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOOeV88d', '7035415'), + (64003, 675, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOOeV88d', '7044715'), + (64004, 675, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOOeV88d', '7050318'), + (64005, 675, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOOeV88d', '7050319'), + (64006, 675, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOOeV88d', '7050322'), + (64007, 675, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOOeV88d', '7057804'), + (64008, 675, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOOeV88d', '7072824'), + (64009, 675, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOOeV88d', '7074348'), + (64010, 675, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOOeV88d', '7089267'), + (64011, 675, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOOeV88d', '7098747'), + (64012, 675, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOOeV88d', '7113468'), + (64013, 675, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOOeV88d', '7114856'), + (64014, 675, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOOeV88d', '7114951'), + (64015, 675, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOOeV88d', '7114955'), + (64016, 675, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOOeV88d', '7114956'), + (64017, 675, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOOeV88d', '7153615'), + (64018, 675, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOOeV88d', '7159484'), + (64019, 675, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOOeV88d', '7178446'), + (64020, 676, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'mqEkvrjm', '5186585'), + (64021, 676, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mqEkvrjm', '5195095'), + (64022, 676, 1285, 'not_attending', '2022-03-21 15:41:48', '2025-12-17 19:47:25', 'mqEkvrjm', '5196763'), + (64023, 676, 1288, 'attending', '2022-04-21 16:52:22', '2025-12-17 19:47:25', 'mqEkvrjm', '5199460'), + (64024, 676, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mqEkvrjm', '5215989'), + (64025, 676, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mqEkvrjm', '5223686'), + (64026, 676, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mqEkvrjm', '5227432'), + (64027, 676, 1322, 'maybe', '2022-04-25 14:57:04', '2025-12-17 19:47:27', 'mqEkvrjm', '5238356'), + (64028, 676, 1327, 'not_attending', '2022-04-25 14:56:30', '2025-12-17 19:47:27', 'mqEkvrjm', '5238445'), + (64029, 676, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mqEkvrjm', '5247467'), + (64030, 676, 1350, 'not_attending', '2022-04-21 18:37:17', '2025-12-17 19:47:27', 'mqEkvrjm', '5249763'), + (64031, 676, 1351, 'not_attending', '2022-05-02 22:45:20', '2025-12-17 19:47:28', 'mqEkvrjm', '5251561'), + (64032, 676, 1352, 'not_attending', '2022-05-03 15:46:34', '2025-12-17 19:47:28', 'mqEkvrjm', '5251618'), + (64033, 676, 1353, 'attending', '2022-04-21 18:37:25', '2025-12-17 19:47:27', 'mqEkvrjm', '5251777'), + (64034, 676, 1362, 'attending', '2022-04-28 01:53:26', '2025-12-17 19:47:28', 'mqEkvrjm', '5260800'), + (64035, 676, 1364, 'not_attending', '2022-05-03 19:29:38', '2025-12-17 19:47:28', 'mqEkvrjm', '5261598'), + (64036, 676, 1368, 'not_attending', '2022-05-06 22:45:23', '2025-12-17 19:47:28', 'mqEkvrjm', '5262783'), + (64037, 676, 1371, 'attending', '2022-04-27 21:20:10', '2025-12-17 19:47:27', 'mqEkvrjm', '5263784'), + (64038, 676, 1372, 'attending', '2022-05-02 02:34:30', '2025-12-17 19:47:28', 'mqEkvrjm', '5264352'), + (64039, 676, 1374, 'maybe', '2022-05-03 15:46:51', '2025-12-17 19:47:28', 'mqEkvrjm', '5269930'), + (64040, 676, 1375, 'not_attending', '2022-05-03 15:46:19', '2025-12-17 19:47:28', 'mqEkvrjm', '5269932'), + (64041, 676, 1377, 'attending', '2022-05-13 22:05:04', '2025-12-17 19:47:28', 'mqEkvrjm', '5271447'), + (64042, 676, 1378, 'not_attending', '2022-05-14 20:46:27', '2025-12-17 19:47:29', 'mqEkvrjm', '5271448'), + (64043, 676, 1379, 'not_attending', '2022-05-21 19:58:51', '2025-12-17 19:47:30', 'mqEkvrjm', '5271449'), + (64044, 676, 1380, 'attending', '2022-05-28 21:16:53', '2025-12-17 19:47:30', 'mqEkvrjm', '5271450'), + (64045, 676, 1382, 'not_attending', '2022-05-09 21:53:41', '2025-12-17 19:47:28', 'mqEkvrjm', '5276350'), + (64046, 676, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mqEkvrjm', '5276469'), + (64047, 676, 1385, 'not_attending', '2022-05-11 22:41:33', '2025-12-17 19:47:28', 'mqEkvrjm', '5277822'), + (64048, 676, 1386, 'not_attending', '2022-05-06 22:45:29', '2025-12-17 19:47:28', 'mqEkvrjm', '5278159'), + (64049, 676, 1390, 'not_attending', '2022-05-09 11:55:51', '2025-12-17 19:47:28', 'mqEkvrjm', '5279509'), + (64050, 676, 1394, 'not_attending', '2022-05-27 11:19:35', '2025-12-17 19:47:30', 'mqEkvrjm', '5280667'), + (64051, 676, 1401, 'attending', '2022-05-15 19:13:52', '2025-12-17 19:47:29', 'mqEkvrjm', '5286295'), + (64052, 676, 1402, 'not_attending', '2022-05-23 14:47:28', '2025-12-17 19:47:30', 'mqEkvrjm', '5287977'), + (64053, 676, 1403, 'not_attending', '2022-05-20 13:48:02', '2025-12-17 19:47:29', 'mqEkvrjm', '5288052'), + (64054, 676, 1407, 'attending', '2022-05-31 12:37:33', '2025-12-17 19:47:30', 'mqEkvrjm', '5363695'), + (64055, 676, 1408, 'not_attending', '2022-05-20 13:47:55', '2025-12-17 19:47:29', 'mqEkvrjm', '5365960'), + (64056, 676, 1410, 'not_attending', '2022-05-19 18:04:41', '2025-12-17 19:47:29', 'mqEkvrjm', '5367530'), + (64057, 676, 1411, 'not_attending', '2022-05-19 22:15:27', '2025-12-17 19:47:29', 'mqEkvrjm', '5367531'), + (64058, 676, 1415, 'attending', '2022-06-03 19:27:10', '2025-12-17 19:47:30', 'mqEkvrjm', '5368973'), + (64059, 676, 1416, 'not_attending', '2022-05-28 14:47:41', '2025-12-17 19:47:30', 'mqEkvrjm', '5369628'), + (64060, 676, 1417, 'not_attending', '2022-05-23 14:47:32', '2025-12-17 19:47:30', 'mqEkvrjm', '5370465'), + (64061, 676, 1419, 'attending', '2022-06-04 13:42:46', '2025-12-17 19:47:30', 'mqEkvrjm', '5373081'), + (64062, 676, 1420, 'not_attending', '2022-05-27 20:45:17', '2025-12-17 19:47:30', 'mqEkvrjm', '5374882'), + (64063, 676, 1421, 'not_attending', '2022-05-30 14:14:52', '2025-12-17 19:47:30', 'mqEkvrjm', '5374885'), + (64064, 676, 1423, 'not_attending', '2022-06-15 15:46:17', '2025-12-17 19:47:17', 'mqEkvrjm', '5375727'), + (64065, 676, 1424, 'not_attending', '2022-05-26 16:32:29', '2025-12-17 19:47:30', 'mqEkvrjm', '5375772'), + (64066, 676, 1425, 'not_attending', '2022-05-26 16:32:26', '2025-12-17 19:47:30', 'mqEkvrjm', '5375861'), + (64067, 676, 1427, 'attending', '2022-05-24 12:32:51', '2025-12-17 19:47:30', 'mqEkvrjm', '5376074'), + (64068, 676, 1428, 'not_attending', '2022-06-10 23:13:05', '2025-12-17 19:47:30', 'mqEkvrjm', '5378247'), + (64069, 676, 1429, 'attending', '2022-05-30 14:14:50', '2025-12-17 19:47:30', 'mqEkvrjm', '5388761'), + (64070, 676, 1431, 'attending', '2022-06-11 21:45:41', '2025-12-17 19:47:30', 'mqEkvrjm', '5389605'), + (64071, 676, 1433, 'attending', '2022-06-03 14:40:10', '2025-12-17 19:47:30', 'mqEkvrjm', '5391667'), + (64072, 676, 1434, 'not_attending', '2022-05-31 21:53:43', '2025-12-17 19:47:30', 'mqEkvrjm', '5393861'), + (64073, 676, 1435, 'not_attending', '2022-06-01 21:16:08', '2025-12-17 19:47:30', 'mqEkvrjm', '5394015'), + (64074, 676, 1436, 'not_attending', '2022-06-01 21:16:12', '2025-12-17 19:47:30', 'mqEkvrjm', '5394292'), + (64075, 676, 1437, 'attending', '2022-06-01 17:38:17', '2025-12-17 19:47:30', 'mqEkvrjm', '5394493'), + (64076, 676, 1438, 'attending', '2022-06-01 21:16:03', '2025-12-17 19:47:30', 'mqEkvrjm', '5395032'), + (64077, 676, 1441, 'not_attending', '2022-06-05 22:45:20', '2025-12-17 19:47:30', 'mqEkvrjm', '5397171'), + (64078, 676, 1442, 'not_attending', '2022-06-18 17:44:51', '2025-12-17 19:47:17', 'mqEkvrjm', '5397265'), + (64079, 676, 1447, 'not_attending', '2022-06-08 22:17:03', '2025-12-17 19:47:30', 'mqEkvrjm', '5401089'), + (64080, 676, 1451, 'not_attending', '2022-06-17 17:42:49', '2025-12-17 19:47:17', 'mqEkvrjm', '5403967'), + (64081, 676, 1454, 'not_attending', '2022-06-13 01:15:29', '2025-12-17 19:47:31', 'mqEkvrjm', '5404771'), + (64082, 676, 1455, 'not_attending', '2022-06-13 17:29:45', '2025-12-17 19:47:31', 'mqEkvrjm', '5404772'), + (64083, 676, 1458, 'not_attending', '2022-06-19 22:50:49', '2025-12-17 19:47:17', 'mqEkvrjm', '5404786'), + (64084, 676, 1461, 'maybe', '2022-06-14 12:27:39', '2025-12-17 19:47:31', 'mqEkvrjm', '5405149'), + (64085, 676, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mqEkvrjm', '5405203'), + (64086, 676, 1469, 'not_attending', '2022-06-20 22:45:31', '2025-12-17 19:47:17', 'mqEkvrjm', '5406838'), + (64087, 676, 1470, 'not_attending', '2022-06-18 17:45:01', '2025-12-17 19:47:17', 'mqEkvrjm', '5407053'), + (64088, 676, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mqEkvrjm', '5408794'), + (64089, 676, 1480, 'not_attending', '2022-06-25 21:13:28', '2025-12-17 19:47:19', 'mqEkvrjm', '5411699'), + (64090, 676, 1482, 'attending', '2022-06-23 18:18:57', '2025-12-17 19:47:19', 'mqEkvrjm', '5412550'), + (64091, 676, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mqEkvrjm', '5415046'), + (64092, 676, 1489, 'not_attending', '2022-07-04 14:17:11', '2025-12-17 19:47:19', 'mqEkvrjm', '5420155'), + (64093, 676, 1491, 'not_attending', '2022-07-02 01:21:11', '2025-12-17 19:47:19', 'mqEkvrjm', '5420158'), + (64094, 676, 1492, 'not_attending', '2022-07-04 14:17:24', '2025-12-17 19:47:19', 'mqEkvrjm', '5420175'), + (64095, 676, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mqEkvrjm', '5422086'), + (64096, 676, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mqEkvrjm', '5422406'), + (64097, 676, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mqEkvrjm', '5424565'), + (64098, 676, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mqEkvrjm', '5426882'), + (64099, 676, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mqEkvrjm', '5427083'), + (64100, 676, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mqEkvrjm', '5441125'), + (64101, 676, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mqEkvrjm', '5441126'), + (64102, 676, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mqEkvrjm', '5441128'), + (64103, 676, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mqEkvrjm', '5441131'), + (64104, 676, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mqEkvrjm', '5441132'), + (64105, 676, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mqEkvrjm', '5446643'), + (64106, 676, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mqEkvrjm', '5453325'), + (64107, 676, 1541, 'maybe', '2022-07-24 03:57:46', '2025-12-17 19:47:20', 'mqEkvrjm', '5453542'), + (64108, 676, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mqEkvrjm', '5454516'), + (64109, 676, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mqEkvrjm', '5454605'), + (64110, 676, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mqEkvrjm', '5455037'), + (64111, 676, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mqEkvrjm', '5461278'), + (64112, 676, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mqEkvrjm', '5469480'), + (64113, 676, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mqEkvrjm', '5471073'), + (64114, 676, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mqEkvrjm', '5474663'), + (64115, 676, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mqEkvrjm', '5482022'), + (64116, 676, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mqEkvrjm', '5482793'), + (64117, 676, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mqEkvrjm', '5488912'), + (64118, 676, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mqEkvrjm', '5492192'), + (64119, 676, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mqEkvrjm', '5493139'), + (64120, 676, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mqEkvrjm', '5493200'), + (64121, 676, 1595, 'maybe', '2022-08-12 03:33:17', '2025-12-17 19:47:22', 'mqEkvrjm', '5495736'), + (64122, 676, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mqEkvrjm', '5502188'), + (64123, 676, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mqEkvrjm', '5505059'), + (64124, 676, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mqEkvrjm', '5509055'), + (64125, 676, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mqEkvrjm', '5512862'), + (64126, 676, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mqEkvrjm', '5513985'), + (64127, 676, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mqEkvrjm', '5519981'), + (64128, 676, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mqEkvrjm', '5522550'), + (64129, 676, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mqEkvrjm', '5534683'), + (64130, 676, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mqEkvrjm', '5537735'), + (64131, 676, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mqEkvrjm', '5540859'), + (64132, 676, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mqEkvrjm', '5546619'), + (64133, 676, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mqEkvrjm', '5555245'), + (64134, 676, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mqEkvrjm', '5557747'), + (64135, 676, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mqEkvrjm', '5560255'), + (64136, 676, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mqEkvrjm', '5562906'), + (64137, 676, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mqEkvrjm', '5600604'), + (64138, 676, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mqEkvrjm', '5605544'), + (64139, 676, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'mqEkvrjm', '5606737'), + (64140, 676, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mqEkvrjm', '5630960'), + (64141, 676, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mqEkvrjm', '5630961'), + (64142, 676, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mqEkvrjm', '5630962'), + (64143, 676, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mqEkvrjm', '5630966'), + (64144, 676, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mqEkvrjm', '5630967'), + (64145, 676, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mqEkvrjm', '5630968'), + (64146, 676, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mqEkvrjm', '5635406'), + (64147, 676, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mqEkvrjm', '5638765'), + (64148, 676, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mqEkvrjm', '5640097'), + (64149, 676, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mqEkvrjm', '5640843'), + (64150, 676, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mqEkvrjm', '5641521'), + (64151, 676, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mqEkvrjm', '5642818'), + (64152, 676, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mqEkvrjm', '5652395'), + (64153, 676, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mqEkvrjm', '5670445'), + (64154, 676, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mqEkvrjm', '5671637'), + (64155, 676, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mqEkvrjm', '5672329'), + (64156, 676, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mqEkvrjm', '5674057'), + (64157, 676, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mqEkvrjm', '5674060'), + (64158, 676, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mqEkvrjm', '5677461'), + (64159, 676, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mqEkvrjm', '5698046'), + (64160, 676, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mqEkvrjm', '5699760'), + (64161, 676, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mqEkvrjm', '5741601'), + (64162, 676, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mqEkvrjm', '5763458'), + (64163, 676, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mqEkvrjm', '5774172'), + (64164, 676, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mqEkvrjm', '5818247'), + (64165, 676, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mqEkvrjm', '5819471'), + (64166, 676, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mqEkvrjm', '5827739'), + (64167, 676, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mqEkvrjm', '5844306'), + (64168, 676, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mqEkvrjm', '5850159'), + (64169, 676, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mqEkvrjm', '5858999'), + (64170, 676, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mqEkvrjm', '5871984'), + (64171, 676, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mqEkvrjm', '5876354'), + (64172, 676, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mqEkvrjm', '5880939'), + (64173, 676, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mqEkvrjm', '5880940'), + (64174, 676, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mqEkvrjm', '5880942'), + (64175, 676, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mqEkvrjm', '5880943'), + (64176, 676, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mqEkvrjm', '5887890'), + (64177, 676, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mqEkvrjm', '5888598'), + (64178, 676, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mqEkvrjm', '5893260'), + (64179, 676, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mqEkvrjm', '5899826'), + (64180, 676, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mqEkvrjm', '5900199'), + (64181, 676, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mqEkvrjm', '5900200'), + (64182, 676, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mqEkvrjm', '5900202'), + (64183, 676, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mqEkvrjm', '5900203'), + (64184, 676, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mqEkvrjm', '5901108'), + (64185, 676, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mqEkvrjm', '5901126'), + (64186, 676, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mqEkvrjm', '5909655'), + (64187, 676, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mqEkvrjm', '5910522'), + (64188, 676, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mqEkvrjm', '5910526'), + (64189, 676, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mqEkvrjm', '5910528'), + (64190, 676, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mqEkvrjm', '5916219'), + (64191, 676, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mqEkvrjm', '5936234'), + (64192, 676, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mqEkvrjm', '5958351'), + (64193, 676, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mqEkvrjm', '5959751'), + (64194, 676, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mqEkvrjm', '5959755'), + (64195, 676, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mqEkvrjm', '5960055'), + (64196, 676, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mqEkvrjm', '5961684'), + (64197, 676, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mqEkvrjm', '5962132'), + (64198, 676, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mqEkvrjm', '5962133'), + (64199, 676, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mqEkvrjm', '5962134'), + (64200, 676, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mqEkvrjm', '5962317'), + (64201, 676, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mqEkvrjm', '5962318'), + (64202, 676, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mqEkvrjm', '5965933'), + (64203, 676, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mqEkvrjm', '5967014'), + (64204, 676, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mqEkvrjm', '5972815'), + (64205, 676, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mqEkvrjm', '5974016'), + (64206, 676, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mqEkvrjm', '5981515'), + (64207, 676, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mqEkvrjm', '5993516'), + (64208, 676, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mqEkvrjm', '5998939'), + (64209, 676, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mqEkvrjm', '6028191'), + (64210, 676, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mqEkvrjm', '6040066'), + (64211, 676, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mqEkvrjm', '6042717'), + (64212, 676, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mqEkvrjm', '6044838'), + (64213, 676, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mqEkvrjm', '6044839'), + (64214, 676, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mqEkvrjm', '6045684'), + (64215, 676, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mqEkvrjm', '6050104'), + (64216, 676, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mqEkvrjm', '6053195'), + (64217, 676, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mqEkvrjm', '6053198'), + (64218, 676, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mqEkvrjm', '6056085'), + (64219, 676, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mqEkvrjm', '6056916'), + (64220, 676, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mqEkvrjm', '6059290'), + (64221, 676, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mqEkvrjm', '6060328'), + (64222, 676, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mqEkvrjm', '6061037'), + (64223, 676, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mqEkvrjm', '6061039'), + (64224, 676, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mqEkvrjm', '6067245'), + (64225, 676, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mqEkvrjm', '6068094'), + (64226, 676, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mqEkvrjm', '6068252'), + (64227, 676, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mqEkvrjm', '6068253'), + (64228, 676, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mqEkvrjm', '6068254'), + (64229, 676, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mqEkvrjm', '6068280'), + (64230, 676, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mqEkvrjm', '6069093'), + (64231, 676, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mqEkvrjm', '6072528'), + (64232, 676, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mqEkvrjm', '6079840'), + (64233, 676, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mqEkvrjm', '6083398'), + (64234, 676, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mqEkvrjm', '6093504'), + (64235, 676, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mqEkvrjm', '6097414'), + (64236, 676, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mqEkvrjm', '6097442'), + (64237, 676, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mqEkvrjm', '6097684'), + (64238, 676, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mqEkvrjm', '6098762'), + (64239, 676, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mqEkvrjm', '6101362'), + (64240, 676, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mqEkvrjm', '6103752'), + (64241, 676, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mqEkvrjm', '6107314'), + (64242, 677, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'lAepJYPm', '4210314'), + (64243, 677, 901, 'not_attending', '2021-07-31 16:26:33', '2025-12-17 19:47:40', 'lAepJYPm', '4240317'), + (64244, 677, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'lAepJYPm', '4240318'), + (64245, 677, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'lAepJYPm', '4240320'), + (64246, 677, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'lAepJYPm', '4302093'), + (64247, 677, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'lAepJYPm', '4304151'), + (64248, 677, 947, 'not_attending', '2021-08-04 05:12:06', '2025-12-17 19:47:41', 'lAepJYPm', '4315713'), + (64249, 677, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'lAepJYPm', '4315714'), + (64250, 677, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'lAepJYPm', '4315726'), + (64251, 677, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'lAepJYPm', '4356801'), + (64252, 677, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'lAepJYPm', '4366186'), + (64253, 677, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'lAepJYPm', '4366187'), + (64254, 677, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'lAepJYPm', '4420735'), + (64255, 677, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'lAepJYPm', '4420738'), + (64256, 677, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'lAepJYPm', '4420739'), + (64257, 677, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'lAepJYPm', '4420741'), + (64258, 677, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'lAepJYPm', '4420744'), + (64259, 677, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'lAepJYPm', '4420747'), + (64260, 677, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'lAepJYPm', '4420748'), + (64261, 677, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'lAepJYPm', '4420749'), + (64262, 677, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'lAepJYPm', '4461883'), + (64263, 677, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'lAepJYPm', '4508342'), + (64264, 677, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'lAepJYPm', '4568602'), + (64265, 677, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'lAepJYPm', '4572153'), + (64266, 677, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'lAepJYPm', '4585962'), + (64267, 677, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'lAepJYPm', '4596356'), + (64268, 677, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'lAepJYPm', '4598860'), + (64269, 677, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'lAepJYPm', '4598861'), + (64270, 677, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'lAepJYPm', '4602797'), + (64271, 677, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'lAepJYPm', '4637896'), + (64272, 677, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'lAepJYPm', '4642994'), + (64273, 677, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'lAepJYPm', '4642995'), + (64274, 677, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'lAepJYPm', '4642996'), + (64275, 677, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'lAepJYPm', '4642997'), + (64276, 677, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'lAepJYPm', '4645687'), + (64277, 677, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'lAepJYPm', '4645698'), + (64278, 677, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'lAepJYPm', '4645704'), + (64279, 677, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'lAepJYPm', '4645705'), + (64280, 677, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'lAepJYPm', '4668385'), + (64281, 677, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAepJYPm', '6045684'), + (64282, 678, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'dBGPpv1m', '7738518'), + (64283, 678, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBGPpv1m', '7750636'), + (64284, 678, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBGPpv1m', '7796540'), + (64285, 678, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBGPpv1m', '7796541'), + (64286, 678, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBGPpv1m', '7796542'), + (64287, 678, 2967, 'not_attending', '2025-01-07 14:57:05', '2025-12-17 19:46:22', 'dBGPpv1m', '7797181'), + (64288, 678, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dBGPpv1m', '7825913'), + (64289, 678, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dBGPpv1m', '7826209'), + (64290, 678, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dBGPpv1m', '7834742'), + (64291, 678, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dBGPpv1m', '7842108'), + (64292, 678, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dBGPpv1m', '7842902'), + (64293, 678, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dBGPpv1m', '7842903'), + (64294, 678, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dBGPpv1m', '7842904'), + (64295, 678, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dBGPpv1m', '7842905'), + (64296, 678, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'dBGPpv1m', '7844784'), + (64297, 678, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dBGPpv1m', '7855719'), + (64298, 678, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dBGPpv1m', '7860683'), + (64299, 678, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dBGPpv1m', '7860684'), + (64300, 678, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dBGPpv1m', '7866095'), + (64301, 678, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dBGPpv1m', '7869170'), + (64302, 678, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dBGPpv1m', '7869201'), + (64303, 678, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'dBGPpv1m', '7872088'), + (64304, 679, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', '4WPbQKpd', '4210314'), + (64305, 679, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '4WPbQKpd', '4240320'), + (64306, 679, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4WPbQKpd', '4304151'), + (64307, 679, 948, 'attending', '2021-08-10 23:16:19', '2025-12-17 19:47:41', '4WPbQKpd', '4315714'), + (64308, 679, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', '4WPbQKpd', '4315726'), + (64309, 679, 951, 'attending', '2021-08-19 21:47:57', '2025-12-17 19:47:43', '4WPbQKpd', '4315731'), + (64310, 679, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4WPbQKpd', '4356801'), + (64311, 679, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '4WPbQKpd', '4366186'), + (64312, 679, 974, 'attending', '2021-08-28 20:56:17', '2025-12-17 19:47:42', '4WPbQKpd', '4366187'), + (64313, 679, 983, 'attending', '2021-08-20 20:10:56', '2025-12-17 19:47:42', '4WPbQKpd', '4390051'), + (64314, 679, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4WPbQKpd', '4402823'), + (64315, 679, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4WPbQKpd', '4420735'), + (64316, 679, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4WPbQKpd', '4420738'), + (64317, 679, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4WPbQKpd', '4420739'), + (64318, 679, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4WPbQKpd', '4420741'), + (64319, 679, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4WPbQKpd', '4420744'), + (64320, 679, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4WPbQKpd', '4420747'), + (64321, 679, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4WPbQKpd', '4420748'), + (64322, 679, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4WPbQKpd', '4420749'), + (64323, 679, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4WPbQKpd', '4461883'), + (64324, 679, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WPbQKpd', '6045684'), + (64325, 680, 604, 'attending', '2021-02-27 18:27:35', '2025-12-17 19:47:50', 'o4PKzewA', '3470305'), + (64326, 680, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'o4PKzewA', '3517815'), + (64327, 680, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'o4PKzewA', '3517816'), + (64328, 680, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'o4PKzewA', '3523941'), + (64329, 680, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'o4PKzewA', '3533850'), + (64330, 680, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'o4PKzewA', '3536632'), + (64331, 680, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'o4PKzewA', '3536656'), + (64332, 680, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'o4PKzewA', '3539916'), + (64333, 680, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'o4PKzewA', '3539917'), + (64334, 680, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'o4PKzewA', '3539918'), + (64335, 680, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'o4PKzewA', '3539919'), + (64336, 680, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'o4PKzewA', '3539920'), + (64337, 680, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'o4PKzewA', '3539921'), + (64338, 680, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'o4PKzewA', '3539922'), + (64339, 680, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'o4PKzewA', '3539923'), + (64340, 680, 649, 'maybe', '2021-03-19 13:28:46', '2025-12-17 19:47:51', 'o4PKzewA', '3539927'), + (64341, 680, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'o4PKzewA', '3582734'), + (64342, 680, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'o4PKzewA', '3583262'), + (64343, 680, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'o4PKzewA', '3619523'), + (64344, 680, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'o4PKzewA', '3661369'), + (64345, 680, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'o4PKzewA', '3674262'), + (64346, 680, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'o4PKzewA', '3677402'), + (64347, 680, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PKzewA', '6045684'), + (64348, 681, 1281, 'maybe', '2022-04-09 19:07:13', '2025-12-17 19:47:27', 'd3Yly1gA', '5190437'), + (64349, 681, 1284, 'not_attending', '2022-04-16 19:38:38', '2025-12-17 19:47:27', 'd3Yly1gA', '5195095'), + (64350, 681, 1306, 'attending', '2022-04-04 03:35:18', '2025-12-17 19:47:26', 'd3Yly1gA', '5223682'), + (64351, 681, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd3Yly1gA', '5223686'), + (64352, 681, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd3Yly1gA', '5227432'), + (64353, 681, 1316, 'attending', '2022-04-11 22:01:56', '2025-12-17 19:47:27', 'd3Yly1gA', '5237536'), + (64354, 681, 1318, 'attending', '2022-04-11 18:20:17', '2025-12-17 19:47:27', 'd3Yly1gA', '5238343'), + (64355, 681, 1319, 'not_attending', '2022-04-24 20:48:07', '2025-12-17 19:47:27', 'd3Yly1gA', '5238353'), + (64356, 681, 1321, 'attending', '2022-04-11 21:53:46', '2025-12-17 19:47:27', 'd3Yly1gA', '5238355'), + (64357, 681, 1322, 'not_attending', '2022-04-26 20:44:01', '2025-12-17 19:47:27', 'd3Yly1gA', '5238356'), + (64358, 681, 1324, 'not_attending', '2022-04-27 07:35:47', '2025-12-17 19:47:27', 'd3Yly1gA', '5238360'), + (64359, 681, 1327, 'not_attending', '2022-04-25 07:37:25', '2025-12-17 19:47:27', 'd3Yly1gA', '5238445'), + (64360, 681, 1346, 'attending', '2022-04-22 07:37:07', '2025-12-17 19:47:27', 'd3Yly1gA', '5247467'), + (64361, 681, 1351, 'not_attending', '2022-05-03 00:14:11', '2025-12-17 19:47:28', 'd3Yly1gA', '5251561'), + (64362, 681, 1359, 'not_attending', '2022-05-03 09:17:23', '2025-12-17 19:47:28', 'd3Yly1gA', '5258360'), + (64363, 681, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd3Yly1gA', '5260800'), + (64364, 681, 1364, 'attending', '2022-04-26 09:07:07', '2025-12-17 19:47:28', 'd3Yly1gA', '5261598'), + (64365, 681, 1369, 'not_attending', '2022-05-10 16:45:17', '2025-12-17 19:47:28', 'd3Yly1gA', '5262809'), + (64366, 681, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd3Yly1gA', '5269930'), + (64367, 681, 1378, 'not_attending', '2022-05-24 23:57:25', '2025-12-17 19:47:29', 'd3Yly1gA', '5271448'), + (64368, 681, 1379, 'maybe', '2022-05-20 20:48:00', '2025-12-17 19:47:30', 'd3Yly1gA', '5271449'), + (64369, 681, 1380, 'maybe', '2022-05-28 20:06:44', '2025-12-17 19:47:30', 'd3Yly1gA', '5271450'), + (64370, 681, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd3Yly1gA', '5276469'), + (64371, 681, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd3Yly1gA', '5278159'), + (64372, 681, 1399, 'not_attending', '2022-05-08 20:02:15', '2025-12-17 19:47:28', 'd3Yly1gA', '5281796'), + (64373, 681, 1404, 'not_attending', '2022-05-17 09:06:14', '2025-12-17 19:47:29', 'd3Yly1gA', '5288114'), + (64374, 681, 1405, 'attending', '2022-05-12 21:39:29', '2025-12-17 19:47:29', 'd3Yly1gA', '5288115'), + (64375, 681, 1407, 'attending', '2022-05-16 20:51:13', '2025-12-17 19:47:30', 'd3Yly1gA', '5363695'), + (64376, 681, 1408, 'not_attending', '2022-05-19 07:48:36', '2025-12-17 19:47:29', 'd3Yly1gA', '5365960'), + (64377, 681, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd3Yly1gA', '5368973'), + (64378, 681, 1420, 'attending', '2022-05-24 05:58:53', '2025-12-17 19:47:30', 'd3Yly1gA', '5374882'), + (64379, 681, 1422, 'attending', '2022-05-24 05:59:01', '2025-12-17 19:47:30', 'd3Yly1gA', '5375603'), + (64380, 681, 1426, 'attending', '2022-05-24 05:58:32', '2025-12-17 19:47:30', 'd3Yly1gA', '5375873'), + (64381, 681, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd3Yly1gA', '5378247'), + (64382, 681, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd3Yly1gA', '5389605'), + (64383, 681, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd3Yly1gA', '5397265'), + (64384, 681, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd3Yly1gA', '5403967'), + (64385, 681, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd3Yly1gA', '5404786'), + (64386, 681, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd3Yly1gA', '5405203'), + (64387, 681, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd3Yly1gA', '5411699'), + (64388, 681, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd3Yly1gA', '5412550'), + (64389, 681, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd3Yly1gA', '5415046'), + (64390, 681, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd3Yly1gA', '5422086'), + (64391, 681, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd3Yly1gA', '5422406'), + (64392, 681, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd3Yly1gA', '5424565'), + (64393, 681, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd3Yly1gA', '5426882'), + (64394, 681, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd3Yly1gA', '5427083'), + (64395, 681, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd3Yly1gA', '5441125'), + (64396, 681, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd3Yly1gA', '5441126'), + (64397, 681, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd3Yly1gA', '5441128'), + (64398, 681, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd3Yly1gA', '5441131'), + (64399, 681, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd3Yly1gA', '5441132'), + (64400, 681, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd3Yly1gA', '5446643'), + (64401, 681, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd3Yly1gA', '5453325'), + (64402, 681, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd3Yly1gA', '5454516'), + (64403, 681, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd3Yly1gA', '5454605'), + (64404, 681, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd3Yly1gA', '5455037'), + (64405, 681, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd3Yly1gA', '5461278'), + (64406, 681, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd3Yly1gA', '5469480'), + (64407, 681, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd3Yly1gA', '5471073'), + (64408, 681, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd3Yly1gA', '5474663'), + (64409, 681, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd3Yly1gA', '5482022'), + (64410, 681, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd3Yly1gA', '5482793'), + (64411, 681, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd3Yly1gA', '5488912'), + (64412, 681, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd3Yly1gA', '5492192'), + (64413, 681, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd3Yly1gA', '5493139'), + (64414, 681, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd3Yly1gA', '5493200'), + (64415, 681, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd3Yly1gA', '5502188'), + (64416, 681, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd3Yly1gA', '5505059'), + (64417, 681, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd3Yly1gA', '5509055'), + (64418, 681, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd3Yly1gA', '5512862'), + (64419, 681, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd3Yly1gA', '5513985'), + (64420, 681, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd3Yly1gA', '5519981'), + (64421, 681, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd3Yly1gA', '5522550'), + (64422, 681, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd3Yly1gA', '5534683'), + (64423, 681, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd3Yly1gA', '5546619'), + (64424, 681, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd3Yly1gA', '5555245'), + (64425, 681, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd3Yly1gA', '5557747'), + (64426, 681, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3Yly1gA', '6045684'), + (64427, 682, 1118, 'attending', '2021-12-14 08:26:07', '2025-12-17 19:47:38', '40kyrOyA', '4642996'), + (64428, 682, 1124, 'attending', '2021-12-12 20:25:49', '2025-12-17 19:47:38', '40kyrOyA', '4644025'), + (64429, 682, 1131, 'attending', '2021-12-17 12:47:58', '2025-12-17 19:47:31', '40kyrOyA', '4658825'), + (64430, 682, 1156, 'not_attending', '2021-12-22 00:26:01', '2025-12-17 19:47:31', '40kyrOyA', '4715207'), + (64431, 682, 1157, 'attending', '2021-12-18 21:35:43', '2025-12-17 19:47:31', '40kyrOyA', '4715208'), + (64432, 682, 1174, 'attending', '2022-01-15 02:12:13', '2025-12-17 19:47:31', '40kyrOyA', '4736496'), + (64433, 682, 1175, 'not_attending', '2022-01-20 02:30:28', '2025-12-17 19:47:32', '40kyrOyA', '4736497'), + (64434, 682, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '40kyrOyA', '4736499'), + (64435, 682, 1178, 'not_attending', '2022-01-29 22:25:33', '2025-12-17 19:47:32', '40kyrOyA', '4736500'), + (64436, 682, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '40kyrOyA', '4736503'), + (64437, 682, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '40kyrOyA', '4736504'), + (64438, 682, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '40kyrOyA', '4746789'), + (64439, 682, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '40kyrOyA', '4753929'), + (64440, 682, 1198, 'not_attending', '2022-01-24 14:36:27', '2025-12-17 19:47:32', '40kyrOyA', '4766801'), + (64441, 682, 1199, 'not_attending', '2022-01-24 14:36:29', '2025-12-17 19:47:32', '40kyrOyA', '4766802'), + (64442, 682, 1208, 'attending', '2022-01-24 14:36:36', '2025-12-17 19:47:32', '40kyrOyA', '4774419'), + (64443, 682, 1220, 'not_attending', '2022-01-28 21:35:17', '2025-12-17 19:47:32', '40kyrOyA', '4790257'), + (64444, 682, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '40kyrOyA', '5038850'), + (64445, 682, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '40kyrOyA', '5045826'), + (64446, 682, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '40kyrOyA', '5132533'), + (64447, 682, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '40kyrOyA', '5186582'), + (64448, 682, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '40kyrOyA', '5186583'), + (64449, 682, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '40kyrOyA', '5186585'), + (64450, 682, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '40kyrOyA', '5190437'), + (64451, 682, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '40kyrOyA', '5195095'), + (64452, 682, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '40kyrOyA', '5215989'), + (64453, 682, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '40kyrOyA', '5223686'), + (64454, 682, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '40kyrOyA', '5227432'), + (64455, 682, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '40kyrOyA', '5247467'), + (64456, 682, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '40kyrOyA', '5260800'), + (64457, 682, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '40kyrOyA', '5269930'), + (64458, 682, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '40kyrOyA', '5271448'), + (64459, 682, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '40kyrOyA', '5271449'), + (64460, 682, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '40kyrOyA', '5276469'), + (64461, 682, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '40kyrOyA', '5278159'), + (64462, 682, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '40kyrOyA', '5363695'), + (64463, 682, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '40kyrOyA', '5365960'), + (64464, 682, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '40kyrOyA', '5368973'), + (64465, 682, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '40kyrOyA', '5378247'), + (64466, 682, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '40kyrOyA', '5389605'), + (64467, 682, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '40kyrOyA', '5397265'), + (64468, 682, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '40kyrOyA', '5403967'), + (64469, 682, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '40kyrOyA', '5404786'), + (64470, 682, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '40kyrOyA', '5405203'), + (64471, 682, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '40kyrOyA', '5408794'), + (64472, 682, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '40kyrOyA', '5411699'), + (64473, 682, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '40kyrOyA', '5412550'), + (64474, 682, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '40kyrOyA', '5415046'), + (64475, 682, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '40kyrOyA', '5422086'), + (64476, 682, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '40kyrOyA', '5422406'), + (64477, 682, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '40kyrOyA', '5424565'), + (64478, 682, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '40kyrOyA', '5426882'), + (64479, 682, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '40kyrOyA', '5427083'), + (64480, 682, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '40kyrOyA', '5441125'), + (64481, 682, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '40kyrOyA', '5441126'), + (64482, 682, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '40kyrOyA', '5441128'), + (64483, 682, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '40kyrOyA', '5446643'), + (64484, 682, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '40kyrOyA', '5453325'), + (64485, 682, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '40kyrOyA', '5454516'), + (64486, 682, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '40kyrOyA', '5454605'), + (64487, 682, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '40kyrOyA', '5455037'), + (64488, 682, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '40kyrOyA', '5461278'), + (64489, 682, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '40kyrOyA', '5469480'), + (64490, 682, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '40kyrOyA', '5471073'), + (64491, 682, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '40kyrOyA', '5474663'), + (64492, 682, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '40kyrOyA', '5482022'), + (64493, 682, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '40kyrOyA', '5482793'), + (64494, 682, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '40kyrOyA', '5488912'), + (64495, 682, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '40kyrOyA', '5492192'), + (64496, 682, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '40kyrOyA', '5493139'), + (64497, 682, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '40kyrOyA', '5493200'), + (64498, 682, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '40kyrOyA', '5502188'), + (64499, 682, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '40kyrOyA', '5512862'), + (64500, 682, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '40kyrOyA', '5513985'), + (64501, 682, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', '40kyrOyA', '5519981'), + (64502, 682, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '40kyrOyA', '5522550'), + (64503, 682, 1679, 'maybe', '2022-10-02 16:03:07', '2025-12-17 19:47:12', '40kyrOyA', '5601099'), + (64504, 682, 1707, 'attending', '2022-10-02 16:26:02', '2025-12-17 19:47:12', '40kyrOyA', '5613104'), + (64505, 682, 1719, 'attending', '2022-10-08 16:07:43', '2025-12-17 19:47:12', '40kyrOyA', '5630958'), + (64506, 682, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '40kyrOyA', '5630960'), + (64507, 682, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '40kyrOyA', '5630961'), + (64508, 682, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '40kyrOyA', '5630962'), + (64509, 682, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '40kyrOyA', '5630966'), + (64510, 682, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '40kyrOyA', '5630967'), + (64511, 682, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '40kyrOyA', '5630968'), + (64512, 682, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '40kyrOyA', '5635406'), + (64513, 682, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '40kyrOyA', '5638765'), + (64514, 682, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '40kyrOyA', '5640097'), + (64515, 682, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '40kyrOyA', '5640843'), + (64516, 682, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '40kyrOyA', '5641521'), + (64517, 682, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '40kyrOyA', '5642818'), + (64518, 682, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '40kyrOyA', '5652395'), + (64519, 682, 1761, 'not_attending', '2022-11-17 17:24:16', '2025-12-17 19:47:16', '40kyrOyA', '5670434'), + (64520, 682, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '40kyrOyA', '5670445'), + (64521, 682, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '40kyrOyA', '5671637'), + (64522, 682, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '40kyrOyA', '5672329'), + (64523, 682, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '40kyrOyA', '5674057'), + (64524, 682, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '40kyrOyA', '5674060'), + (64525, 682, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '40kyrOyA', '5677461'), + (64526, 682, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '40kyrOyA', '5698046'), + (64527, 682, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '40kyrOyA', '5699760'), + (64528, 682, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '40kyrOyA', '5741601'), + (64529, 682, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '40kyrOyA', '5763458'), + (64530, 682, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '40kyrOyA', '5774172'), + (64531, 682, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '40kyrOyA', '5818247'), + (64532, 682, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '40kyrOyA', '5819471'), + (64533, 682, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '40kyrOyA', '5827739'), + (64534, 682, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '40kyrOyA', '5844306'), + (64535, 682, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '40kyrOyA', '5850159'), + (64536, 682, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '40kyrOyA', '5858999'), + (64537, 682, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '40kyrOyA', '5871984'), + (64538, 682, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '40kyrOyA', '5876354'), + (64539, 682, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '40kyrOyA', '5880939'), + (64540, 682, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '40kyrOyA', '5880940'), + (64541, 682, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '40kyrOyA', '5880942'), + (64542, 682, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '40kyrOyA', '5880943'), + (64543, 682, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '40kyrOyA', '5887890'), + (64544, 682, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '40kyrOyA', '5888598'), + (64545, 682, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '40kyrOyA', '5893260'), + (64546, 682, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '40kyrOyA', '5899826'), + (64547, 682, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '40kyrOyA', '5900199'), + (64548, 682, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '40kyrOyA', '5900200'), + (64549, 682, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '40kyrOyA', '5900202'), + (64550, 682, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '40kyrOyA', '5900203'), + (64551, 682, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '40kyrOyA', '5901108'), + (64552, 682, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '40kyrOyA', '5901126'), + (64553, 682, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '40kyrOyA', '5909655'), + (64554, 682, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '40kyrOyA', '5910522'), + (64555, 682, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '40kyrOyA', '5910526'), + (64556, 682, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '40kyrOyA', '5910528'), + (64557, 682, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '40kyrOyA', '5916219'), + (64558, 682, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '40kyrOyA', '5936234'), + (64559, 682, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '40kyrOyA', '5958351'), + (64560, 682, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '40kyrOyA', '5959751'), + (64561, 682, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '40kyrOyA', '5959755'), + (64562, 682, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '40kyrOyA', '5960055'), + (64563, 682, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '40kyrOyA', '5961684'), + (64564, 682, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '40kyrOyA', '5962132'), + (64565, 682, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '40kyrOyA', '5962133'), + (64566, 682, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '40kyrOyA', '5962134'), + (64567, 682, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '40kyrOyA', '5962317'), + (64568, 682, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '40kyrOyA', '5962318'), + (64569, 682, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '40kyrOyA', '5965933'), + (64570, 682, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '40kyrOyA', '5967014'), + (64571, 682, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '40kyrOyA', '5972815'), + (64572, 682, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '40kyrOyA', '5974016'), + (64573, 682, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '40kyrOyA', '5981515'), + (64574, 682, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '40kyrOyA', '5993516'), + (64575, 682, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '40kyrOyA', '5998939'), + (64576, 682, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '40kyrOyA', '6028191'), + (64577, 682, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '40kyrOyA', '6040066'), + (64578, 682, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '40kyrOyA', '6042717'), + (64579, 682, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '40kyrOyA', '6044838'), + (64580, 682, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '40kyrOyA', '6044839'), + (64581, 682, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '40kyrOyA', '6045684'), + (64582, 682, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '40kyrOyA', '6050104'), + (64583, 682, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '40kyrOyA', '6053195'), + (64584, 682, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '40kyrOyA', '6053198'), + (64585, 682, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '40kyrOyA', '6056085'), + (64586, 682, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '40kyrOyA', '6056916'), + (64587, 682, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '40kyrOyA', '6059290'), + (64588, 682, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '40kyrOyA', '6060328'), + (64589, 682, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '40kyrOyA', '6061037'), + (64590, 682, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '40kyrOyA', '6061039'), + (64591, 682, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '40kyrOyA', '6067245'), + (64592, 682, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '40kyrOyA', '6068094'), + (64593, 682, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '40kyrOyA', '6068252'), + (64594, 682, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '40kyrOyA', '6068253'), + (64595, 682, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '40kyrOyA', '6068254'), + (64596, 682, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '40kyrOyA', '6068280'), + (64597, 682, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '40kyrOyA', '6069093'), + (64598, 682, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '40kyrOyA', '6072528'), + (64599, 682, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '40kyrOyA', '6079840'), + (64600, 682, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '40kyrOyA', '6083398'), + (64601, 682, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '40kyrOyA', '6093504'), + (64602, 682, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '40kyrOyA', '6097414'), + (64603, 682, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '40kyrOyA', '6097442'), + (64604, 682, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '40kyrOyA', '6097684'), + (64605, 682, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '40kyrOyA', '6098762'), + (64606, 682, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '40kyrOyA', '6101361'), + (64607, 682, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '40kyrOyA', '6101362'), + (64608, 682, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '40kyrOyA', '6107314'), + (64609, 682, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '40kyrOyA', '6120034'), + (64610, 682, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '40kyrOyA', '6136733'), + (64611, 682, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '40kyrOyA', '6137989'), + (64612, 682, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '40kyrOyA', '6150864'), + (64613, 682, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '40kyrOyA', '6155491'), + (64614, 682, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '40kyrOyA', '6164417'), + (64615, 682, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '40kyrOyA', '6166388'), + (64616, 682, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '40kyrOyA', '6176439'), + (64617, 682, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '40kyrOyA', '6182410'), + (64618, 682, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '40kyrOyA', '6185812'), + (64619, 682, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '40kyrOyA', '6187651'), + (64620, 682, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '40kyrOyA', '6187963'), + (64621, 682, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '40kyrOyA', '6187964'), + (64622, 682, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '40kyrOyA', '6187966'), + (64623, 682, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '40kyrOyA', '6187967'), + (64624, 682, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '40kyrOyA', '6187969'), + (64625, 682, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '40kyrOyA', '6334878'), + (64626, 682, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '40kyrOyA', '6337236'), + (64627, 682, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '40kyrOyA', '6337970'), + (64628, 682, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '40kyrOyA', '6338308'), + (64629, 682, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '40kyrOyA', '6341710'), + (64630, 682, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '40kyrOyA', '6342044'), + (64631, 682, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '40kyrOyA', '6342298'), + (64632, 682, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '40kyrOyA', '6343294'), + (64633, 682, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '40kyrOyA', '6347034'), + (64634, 682, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '40kyrOyA', '6347056'), + (64635, 682, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '40kyrOyA', '6353830'), + (64636, 682, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '40kyrOyA', '6353831'), + (64637, 682, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '40kyrOyA', '6357867'), + (64638, 682, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '40kyrOyA', '6358652'), + (64639, 682, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '40kyrOyA', '6361709'), + (64640, 682, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '40kyrOyA', '6361710'), + (64641, 682, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '40kyrOyA', '6361711'), + (64642, 682, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '40kyrOyA', '6361712'), + (64643, 682, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '40kyrOyA', '6361713'), + (64644, 682, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '40kyrOyA', '6382573'), + (64645, 682, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '40kyrOyA', '6388604'), + (64646, 682, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '40kyrOyA', '6394629'), + (64647, 682, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '40kyrOyA', '6394631'), + (64648, 682, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '40kyrOyA', '6440863'), + (64649, 682, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '40kyrOyA', '6445440'), + (64650, 682, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '40kyrOyA', '6453951'), + (64651, 682, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '40kyrOyA', '6461696'), + (64652, 682, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '40kyrOyA', '6462129'), + (64653, 682, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '40kyrOyA', '6463218'), + (64654, 682, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '40kyrOyA', '6472181'), + (64655, 682, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '40kyrOyA', '6482693'), + (64656, 682, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '40kyrOyA', '6484200'), + (64657, 682, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '40kyrOyA', '6484680'), + (64658, 682, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '40kyrOyA', '6507741'), + (64659, 682, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '40kyrOyA', '6514659'), + (64660, 682, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '40kyrOyA', '6514660'), + (64661, 682, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '40kyrOyA', '6519103'), + (64662, 682, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '40kyrOyA', '6535681'), + (64663, 682, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '40kyrOyA', '6584747'), + (64664, 682, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '40kyrOyA', '6587097'), + (64665, 682, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '40kyrOyA', '6609022'), + (64666, 682, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '40kyrOyA', '6632757'), + (64667, 682, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '40kyrOyA', '6644187'), + (64668, 682, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '40kyrOyA', '6648951'), + (64669, 682, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '40kyrOyA', '6648952'), + (64670, 682, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '40kyrOyA', '6655401'), + (64671, 682, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '40kyrOyA', '6661585'), + (64672, 682, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '40kyrOyA', '6661588'), + (64673, 682, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '40kyrOyA', '6661589'), + (64674, 682, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '40kyrOyA', '6699906'), + (64675, 682, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '40kyrOyA', '6699913'), + (64676, 682, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '40kyrOyA', '6701109'), + (64677, 682, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '40kyrOyA', '6705219'), + (64678, 682, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '40kyrOyA', '6710153'), + (64679, 682, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '40kyrOyA', '6711552'), + (64680, 682, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '40kyrOyA', '6711553'), + (64681, 682, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '40kyrOyA', '6722688'), + (64682, 682, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '40kyrOyA', '6730620'), + (64683, 682, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '40kyrOyA', '6740364'), + (64684, 682, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '40kyrOyA', '6743829'), + (64685, 682, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '40kyrOyA', '7030380'), + (64686, 682, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '40kyrOyA', '7033677'), + (64687, 682, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '40kyrOyA', '7044715'), + (64688, 682, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '40kyrOyA', '7050318'), + (64689, 682, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '40kyrOyA', '7050319'), + (64690, 682, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '40kyrOyA', '7050322'), + (64691, 682, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '40kyrOyA', '7057804'), + (64692, 682, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '40kyrOyA', '7072824'), + (64693, 682, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '40kyrOyA', '7074348'), + (64694, 682, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '40kyrOyA', '7074364'), + (64695, 682, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '40kyrOyA', '7089267'), + (64696, 682, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '40kyrOyA', '7098747'), + (64697, 682, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '40kyrOyA', '7113468'), + (64698, 682, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '40kyrOyA', '7114856'), + (64699, 682, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '40kyrOyA', '7114951'), + (64700, 682, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '40kyrOyA', '7114955'), + (64701, 682, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '40kyrOyA', '7114956'), + (64702, 682, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '40kyrOyA', '7114957'), + (64703, 682, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '40kyrOyA', '7159484'), + (64704, 682, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '40kyrOyA', '7178446'), + (64705, 682, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '40kyrOyA', '7220467'), + (64706, 682, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '40kyrOyA', '7240354'), + (64707, 682, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '40kyrOyA', '7251633'), + (64708, 682, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '40kyrOyA', '7324073'), + (64709, 682, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '40kyrOyA', '7324074'), + (64710, 682, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '40kyrOyA', '7324075'), + (64711, 682, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '40kyrOyA', '7324078'), + (64712, 682, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '40kyrOyA', '7324082'), + (64713, 682, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '40kyrOyA', '7331457'), + (64714, 682, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '40kyrOyA', '7363643'), + (64715, 682, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '40kyrOyA', '7368606'), + (64716, 682, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '40kyrOyA', '7397462'), + (64717, 682, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '40kyrOyA', '7424275'), + (64718, 682, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '40kyrOyA', '7432751'), + (64719, 682, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '40kyrOyA', '7432752'), + (64720, 682, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '40kyrOyA', '7432753'), + (64721, 682, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '40kyrOyA', '7432754'), + (64722, 682, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '40kyrOyA', '7432755'), + (64723, 682, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '40kyrOyA', '7432756'), + (64724, 682, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '40kyrOyA', '7432758'), + (64725, 682, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '40kyrOyA', '7432759'), + (64726, 682, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '40kyrOyA', '7433834'), + (64727, 682, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '40kyrOyA', '7470197'), + (64728, 682, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '40kyrOyA', '7685613'), + (64729, 682, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '40kyrOyA', '7688194'), + (64730, 682, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '40kyrOyA', '7688196'), + (64731, 682, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '40kyrOyA', '7688289'), + (64732, 682, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '40kyrOyA', '7692763'), + (64733, 682, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '40kyrOyA', '7697552'), + (64734, 682, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '40kyrOyA', '7699878'), + (64735, 682, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '40kyrOyA', '7704043'), + (64736, 682, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '40kyrOyA', '7712467'), + (64737, 682, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '40kyrOyA', '7713585'), + (64738, 682, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '40kyrOyA', '7713586'), + (64739, 682, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '40kyrOyA', '7738518'), + (64740, 682, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '40kyrOyA', '7750636'), + (64741, 682, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '40kyrOyA', '7796540'), + (64742, 682, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '40kyrOyA', '7796541'), + (64743, 682, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '40kyrOyA', '7796542'), + (64744, 682, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '40kyrOyA', '7825913'), + (64745, 682, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '40kyrOyA', '7826209'), + (64746, 682, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '40kyrOyA', '7834742'), + (64747, 682, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '40kyrOyA', '7842108'), + (64748, 682, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '40kyrOyA', '7842902'), + (64749, 682, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '40kyrOyA', '7842903'), + (64750, 682, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '40kyrOyA', '7842904'), + (64751, 682, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '40kyrOyA', '7842905'), + (64752, 682, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '40kyrOyA', '7855719'), + (64753, 682, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '40kyrOyA', '7860683'), + (64754, 682, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '40kyrOyA', '7860684'), + (64755, 682, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '40kyrOyA', '7866095'), + (64756, 682, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '40kyrOyA', '7869170'), + (64757, 682, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '40kyrOyA', '7869188'), + (64758, 682, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '40kyrOyA', '7869201'), + (64759, 682, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '40kyrOyA', '7877465'), + (64760, 682, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '40kyrOyA', '7888250'), + (64761, 682, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '40kyrOyA', '7904777'), + (64762, 682, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '40kyrOyA', '8349164'), + (64763, 682, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '40kyrOyA', '8349545'), + (64764, 682, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '40kyrOyA', '8368028'), + (64765, 682, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '40kyrOyA', '8368029'), + (64766, 682, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '40kyrOyA', '8388462'), + (64767, 682, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '40kyrOyA', '8400273'), + (64768, 682, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '40kyrOyA', '8400275'), + (64769, 682, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '40kyrOyA', '8400276'), + (64770, 682, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '40kyrOyA', '8404977'), + (64771, 682, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '40kyrOyA', '8430783'), + (64772, 682, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '40kyrOyA', '8430784'), + (64773, 682, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '40kyrOyA', '8430799'), + (64774, 682, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '40kyrOyA', '8430800'), + (64775, 682, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '40kyrOyA', '8430801'), + (64776, 682, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '40kyrOyA', '8438709'), + (64777, 682, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '40kyrOyA', '8457738'), + (64778, 682, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '40kyrOyA', '8459566'), + (64779, 682, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '40kyrOyA', '8459567'), + (64780, 682, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '40kyrOyA', '8461032'), + (64781, 682, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '40kyrOyA', '8477877'), + (64782, 682, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '40kyrOyA', '8485688'), + (64783, 682, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '40kyrOyA', '8490587'), + (64784, 682, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '40kyrOyA', '8493552'), + (64785, 682, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '40kyrOyA', '8493553'), + (64786, 682, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '40kyrOyA', '8493554'), + (64787, 682, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '40kyrOyA', '8493555'), + (64788, 682, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '40kyrOyA', '8493556'), + (64789, 682, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '40kyrOyA', '8493557'), + (64790, 682, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '40kyrOyA', '8493558'), + (64791, 682, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '40kyrOyA', '8493559'), + (64792, 682, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '40kyrOyA', '8493560'), + (64793, 682, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '40kyrOyA', '8493561'), + (64794, 682, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '40kyrOyA', '8493572'), + (64795, 682, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '40kyrOyA', '8540725'), + (64796, 682, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '40kyrOyA', '8555421'), + (64797, 683, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mGGlGakm', '6472181'), + (64798, 683, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mGGlGakm', '6482693'), + (64799, 683, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mGGlGakm', '6484200'), + (64800, 683, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mGGlGakm', '6484680'), + (64801, 683, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mGGlGakm', '6507741'), + (64802, 683, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mGGlGakm', '6514659'), + (64803, 683, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mGGlGakm', '6514660'), + (64804, 683, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mGGlGakm', '6519103'), + (64805, 683, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mGGlGakm', '6535681'), + (64806, 683, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mGGlGakm', '6545076'), + (64807, 683, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mGGlGakm', '6584747'), + (64808, 683, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mGGlGakm', '6587097'), + (64809, 683, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mGGlGakm', '6609022'), + (64810, 683, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mGGlGakm', '6632757'), + (64811, 683, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mGGlGakm', '6644187'), + (64812, 683, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mGGlGakm', '6648951'), + (64813, 683, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mGGlGakm', '6648952'), + (64814, 683, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mGGlGakm', '6651141'), + (64815, 683, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mGGlGakm', '6655401'), + (64816, 683, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mGGlGakm', '6661585'), + (64817, 683, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mGGlGakm', '6661588'), + (64818, 683, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mGGlGakm', '6661589'), + (64819, 683, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mGGlGakm', '6699906'), + (64820, 683, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mGGlGakm', '6699913'), + (64821, 683, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mGGlGakm', '6701109'), + (64822, 683, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mGGlGakm', '6705219'), + (64823, 683, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mGGlGakm', '6710153'), + (64824, 683, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mGGlGakm', '6711552'), + (64825, 683, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mGGlGakm', '6711553'), + (64826, 683, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mGGlGakm', '6722688'), + (64827, 683, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mGGlGakm', '6730620'), + (64828, 683, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mGGlGakm', '6730642'), + (64829, 683, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mGGlGakm', '6740364'), + (64830, 683, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mGGlGakm', '6743829'), + (64831, 683, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mGGlGakm', '7030380'), + (64832, 683, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mGGlGakm', '7033677'), + (64833, 683, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mGGlGakm', '7035415'), + (64834, 683, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mGGlGakm', '7044715'), + (64835, 683, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mGGlGakm', '7050318'), + (64836, 683, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mGGlGakm', '7050319'), + (64837, 683, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mGGlGakm', '7050322'), + (64838, 683, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mGGlGakm', '7057804'), + (64839, 683, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mGGlGakm', '7072824'), + (64840, 683, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mGGlGakm', '7074348'), + (64841, 683, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mGGlGakm', '7089267'), + (64842, 683, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mGGlGakm', '7098747'), + (64843, 683, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mGGlGakm', '7113468'), + (64844, 683, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mGGlGakm', '7114856'), + (64845, 683, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mGGlGakm', '7114951'), + (64846, 683, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mGGlGakm', '7114955'), + (64847, 683, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mGGlGakm', '7114956'), + (64848, 683, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mGGlGakm', '7153615'), + (64849, 683, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mGGlGakm', '7159484'), + (64850, 683, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mGGlGakm', '7178446'), + (64851, 684, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '2d27Z2Pm', '3087265'), + (64852, 684, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', '2d27Z2Pm', '3087266'), + (64853, 684, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', '2d27Z2Pm', '3087267'), + (64854, 684, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', '2d27Z2Pm', '3087268'), + (64855, 684, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', '2d27Z2Pm', '3129980'), + (64856, 684, 273, 'not_attending', '2020-08-03 17:20:14', '2025-12-17 19:47:56', '2d27Z2Pm', '3162006'), + (64857, 684, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '2d27Z2Pm', '3163442'), + (64858, 684, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '2d27Z2Pm', '3169555'), + (64859, 684, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', '2d27Z2Pm', '3169556'), + (64860, 684, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '2d27Z2Pm', '3172832'), + (64861, 684, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '2d27Z2Pm', '3172833'), + (64862, 684, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '2d27Z2Pm', '3172834'), + (64863, 684, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '2d27Z2Pm', '3172876'), + (64864, 684, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', '2d27Z2Pm', '3186057'), + (64865, 684, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '2d27Z2Pm', '3191735'), + (64866, 684, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', '2d27Z2Pm', '3193885'), + (64867, 684, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '2d27Z2Pm', '3200209'), + (64868, 684, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', '2d27Z2Pm', '3200495'), + (64869, 684, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '2d27Z2Pm', '3217037'), + (64870, 684, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '2d27Z2Pm', '3218510'), + (64871, 684, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d27Z2Pm', '6045684'), + (64872, 685, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'QdJ6n0wd', '3468125'), + (64873, 685, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'QdJ6n0wd', '3470303'), + (64874, 685, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'QdJ6n0wd', '3470305'), + (64875, 685, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'QdJ6n0wd', '3470991'), + (64876, 685, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'QdJ6n0wd', '3517815'), + (64877, 685, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'QdJ6n0wd', '3517816'), + (64878, 685, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'QdJ6n0wd', '3523941'), + (64879, 685, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'QdJ6n0wd', '3533850'), + (64880, 685, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'QdJ6n0wd', '3536632'), + (64881, 685, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'QdJ6n0wd', '3536656'), + (64882, 685, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'QdJ6n0wd', '3539916'), + (64883, 685, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'QdJ6n0wd', '3539917'), + (64884, 685, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'QdJ6n0wd', '3539918'), + (64885, 685, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539919'), + (64886, 685, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539920'), + (64887, 685, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539921'), + (64888, 685, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'QdJ6n0wd', '3539922'), + (64889, 685, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'QdJ6n0wd', '3539923'), + (64890, 685, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'QdJ6n0wd', '3539927'), + (64891, 685, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'QdJ6n0wd', '3582734'), + (64892, 685, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'QdJ6n0wd', '3619523'), + (64893, 685, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJ6n0wd', '6045684'), + (64894, 686, 1182, 'attending', '2022-03-11 03:54:18', '2025-12-17 19:47:33', 'dJZMZVod', '4736504'), + (64895, 686, 1251, 'maybe', '2022-03-11 00:47:25', '2025-12-17 19:47:33', 'dJZMZVod', '5128466'), + (64896, 686, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'dJZMZVod', '5132533'), + (64897, 686, 1271, 'attending', '2022-03-18 14:23:12', '2025-12-17 19:47:25', 'dJZMZVod', '5181648'), + (64898, 686, 1272, 'attending', '2022-03-17 15:08:47', '2025-12-17 19:47:25', 'dJZMZVod', '5186582'), + (64899, 686, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'dJZMZVod', '5186583'), + (64900, 686, 1274, 'attending', '2022-04-02 14:49:52', '2025-12-17 19:47:26', 'dJZMZVod', '5186585'), + (64901, 686, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dJZMZVod', '5190437'), + (64902, 686, 1284, 'attending', '2022-04-16 17:17:12', '2025-12-17 19:47:27', 'dJZMZVod', '5195095'), + (64903, 686, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dJZMZVod', '5215989'), + (64904, 686, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dJZMZVod', '5223686'), + (64905, 686, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dJZMZVod', '5227432'), + (64906, 686, 1346, 'attending', '2022-04-22 20:24:25', '2025-12-17 19:47:27', 'dJZMZVod', '5247467'), + (64907, 686, 1362, 'not_attending', '2022-04-30 19:45:58', '2025-12-17 19:47:28', 'dJZMZVod', '5260800'), + (64908, 686, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dJZMZVod', '5269930'), + (64909, 686, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dJZMZVod', '5271448'), + (64910, 686, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dJZMZVod', '5271449'), + (64911, 686, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dJZMZVod', '5276469'), + (64912, 686, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dJZMZVod', '5278159'), + (64913, 686, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dJZMZVod', '5363695'), + (64914, 686, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dJZMZVod', '5365960'), + (64915, 686, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dJZMZVod', '5368973'), + (64916, 686, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dJZMZVod', '5378247'), + (64917, 686, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dJZMZVod', '5389605'), + (64918, 686, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dJZMZVod', '5397265'), + (64919, 686, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dJZMZVod', '5403967'), + (64920, 686, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dJZMZVod', '5404786'), + (64921, 686, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dJZMZVod', '5405203'), + (64922, 686, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dJZMZVod', '5408794'), + (64923, 686, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dJZMZVod', '5411699'), + (64924, 686, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dJZMZVod', '5412550'), + (64925, 686, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dJZMZVod', '5415046'), + (64926, 686, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dJZMZVod', '5422086'), + (64927, 686, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dJZMZVod', '5422406'), + (64928, 686, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dJZMZVod', '5424565'), + (64929, 686, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dJZMZVod', '5426882'), + (64930, 686, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dJZMZVod', '5427083'), + (64931, 686, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dJZMZVod', '5441125'), + (64932, 686, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dJZMZVod', '5441126'), + (64933, 686, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dJZMZVod', '5441128'), + (64934, 686, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dJZMZVod', '5446643'), + (64935, 686, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dJZMZVod', '5453325'), + (64936, 686, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dJZMZVod', '5454516'), + (64937, 686, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dJZMZVod', '5454605'), + (64938, 686, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dJZMZVod', '5455037'), + (64939, 686, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dJZMZVod', '5461278'), + (64940, 686, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dJZMZVod', '5469480'), + (64941, 686, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dJZMZVod', '5471073'), + (64942, 686, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dJZMZVod', '5474663'), + (64943, 686, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dJZMZVod', '5482022'), + (64944, 686, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dJZMZVod', '5482793'), + (64945, 686, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dJZMZVod', '5488912'), + (64946, 686, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dJZMZVod', '5492192'), + (64947, 686, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dJZMZVod', '5493139'), + (64948, 686, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dJZMZVod', '5493200'), + (64949, 686, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dJZMZVod', '5502188'), + (64950, 686, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dJZMZVod', '5512862'), + (64951, 686, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dJZMZVod', '5513985'), + (64952, 686, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dJZMZVod', '6045684'), + (64953, 687, 401, 'not_attending', '2021-05-12 00:49:50', '2025-12-17 19:47:46', 'EdVGlG6m', '3236456'), + (64954, 687, 646, 'not_attending', '2021-05-15 16:16:07', '2025-12-17 19:47:46', 'EdVGlG6m', '3539921'), + (64955, 687, 647, 'not_attending', '2021-05-21 15:13:04', '2025-12-17 19:47:46', 'EdVGlG6m', '3539922'), + (64956, 687, 648, 'not_attending', '2021-05-29 18:32:51', '2025-12-17 19:47:47', 'EdVGlG6m', '3539923'), + (64957, 687, 743, 'attending', '2021-06-25 21:34:01', '2025-12-17 19:47:38', 'EdVGlG6m', '3680623'), + (64958, 687, 760, 'not_attending', '2021-05-14 16:56:38', '2025-12-17 19:47:46', 'EdVGlG6m', '3716035'), + (64959, 687, 785, 'not_attending', '2021-05-15 16:16:23', '2025-12-17 19:47:46', 'EdVGlG6m', '3779779'), + (64960, 687, 792, 'attending', '2021-05-16 03:44:52', '2025-12-17 19:47:46', 'EdVGlG6m', '3793156'), + (64961, 687, 798, 'not_attending', '2021-05-20 13:16:20', '2025-12-17 19:47:46', 'EdVGlG6m', '3796262'), + (64962, 687, 801, 'attending', '2021-05-13 22:54:56', '2025-12-17 19:47:46', 'EdVGlG6m', '3800910'), + (64963, 687, 802, 'attending', '2021-05-12 00:49:44', '2025-12-17 19:47:46', 'EdVGlG6m', '3803310'), + (64964, 687, 803, 'not_attending', '2021-05-19 22:52:54', '2025-12-17 19:47:46', 'EdVGlG6m', '3804665'), + (64965, 687, 819, 'not_attending', '2021-05-30 22:26:56', '2025-12-17 19:47:47', 'EdVGlG6m', '3833017'), + (64966, 687, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'EdVGlG6m', '3974109'), + (64967, 687, 827, 'attending', '2021-06-05 19:28:37', '2025-12-17 19:47:47', 'EdVGlG6m', '3975311'), + (64968, 687, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'EdVGlG6m', '3975312'), + (64969, 687, 833, 'not_attending', '2021-06-11 18:31:54', '2025-12-17 19:47:47', 'EdVGlG6m', '3990438'), + (64970, 687, 838, 'maybe', '2021-06-09 02:10:16', '2025-12-17 19:47:47', 'EdVGlG6m', '3994992'), + (64971, 687, 840, 'not_attending', '2021-06-14 01:37:42', '2025-12-17 19:47:47', 'EdVGlG6m', '4007283'), + (64972, 687, 841, 'maybe', '2021-06-15 18:33:35', '2025-12-17 19:47:48', 'EdVGlG6m', '4007434'), + (64973, 687, 844, 'attending', '2021-06-21 22:21:29', '2025-12-17 19:47:38', 'EdVGlG6m', '4014338'), + (64974, 687, 845, 'not_attending', '2021-06-27 04:05:17', '2025-12-17 19:47:38', 'EdVGlG6m', '4015717'), + (64975, 687, 846, 'attending', '2021-07-07 19:25:35', '2025-12-17 19:47:39', 'EdVGlG6m', '4015718'), + (64976, 687, 850, 'maybe', '2021-08-25 17:56:16', '2025-12-17 19:47:42', 'EdVGlG6m', '4015722'), + (64977, 687, 866, 'attending', '2021-06-20 19:05:37', '2025-12-17 19:47:38', 'EdVGlG6m', '4020424'), + (64978, 687, 867, 'not_attending', '2021-06-25 18:41:37', '2025-12-17 19:47:38', 'EdVGlG6m', '4021848'), + (64979, 687, 868, 'not_attending', '2021-06-18 14:07:34', '2025-12-17 19:47:48', 'EdVGlG6m', '4022012'), + (64980, 687, 869, 'attending', '2021-06-27 04:05:15', '2025-12-17 19:47:38', 'EdVGlG6m', '4136744'), + (64981, 687, 870, 'not_attending', '2021-06-30 07:22:31', '2025-12-17 19:47:39', 'EdVGlG6m', '4136937'), + (64982, 687, 871, 'not_attending', '2021-07-10 13:12:04', '2025-12-17 19:47:39', 'EdVGlG6m', '4136938'), + (64983, 687, 872, 'maybe', '2021-06-21 22:07:31', '2025-12-17 19:47:40', 'EdVGlG6m', '4136947'), + (64984, 687, 874, 'attending', '2021-06-24 21:53:14', '2025-12-17 19:47:38', 'EdVGlG6m', '4139815'), + (64985, 687, 879, 'maybe', '2021-06-28 20:16:37', '2025-12-17 19:47:38', 'EdVGlG6m', '4147806'), + (64986, 687, 882, 'attending', '2021-06-25 21:34:15', '2025-12-17 19:47:38', 'EdVGlG6m', '4207630'), + (64987, 687, 883, 'attending', '2021-06-23 02:48:10', '2025-12-17 19:47:38', 'EdVGlG6m', '4209121'), + (64988, 687, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'EdVGlG6m', '4210314'), + (64989, 687, 885, 'attending', '2021-06-27 22:09:53', '2025-12-17 19:47:38', 'EdVGlG6m', '4222370'), + (64990, 687, 887, 'not_attending', '2021-07-17 22:47:34', '2025-12-17 19:47:39', 'EdVGlG6m', '4225444'), + (64991, 687, 897, 'not_attending', '2021-06-28 17:11:47', '2025-12-17 19:47:38', 'EdVGlG6m', '4232132'), + (64992, 687, 899, 'not_attending', '2021-07-05 21:23:36', '2025-12-17 19:47:39', 'EdVGlG6m', '4239259'), + (64993, 687, 900, 'not_attending', '2021-07-24 19:35:36', '2025-12-17 19:47:40', 'EdVGlG6m', '4240316'), + (64994, 687, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'EdVGlG6m', '4240317'), + (64995, 687, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'EdVGlG6m', '4240318'), + (64996, 687, 903, 'attending', '2021-08-13 20:57:23', '2025-12-17 19:47:42', 'EdVGlG6m', '4240320'), + (64997, 687, 905, 'attending', '2021-07-07 22:07:42', '2025-12-17 19:47:39', 'EdVGlG6m', '4250163'), + (64998, 687, 919, 'not_attending', '2021-07-17 22:46:27', '2025-12-17 19:47:39', 'EdVGlG6m', '4275957'), + (64999, 687, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'EdVGlG6m', '4277819'), + (65000, 687, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'EdVGlG6m', '4301723'), + (65001, 687, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'EdVGlG6m', '4302093'), + (65002, 687, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'EdVGlG6m', '4304151'), + (65003, 687, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'EdVGlG6m', '4356801'), + (65004, 687, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'EdVGlG6m', '4366186'), + (65005, 687, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'EdVGlG6m', '4366187'), + (65006, 687, 986, 'not_attending', '2021-08-22 23:08:16', '2025-12-17 19:47:42', 'EdVGlG6m', '4394209'), + (65007, 687, 987, 'not_attending', '2021-09-01 22:45:50', '2025-12-17 19:47:43', 'EdVGlG6m', '4402634'), + (65008, 687, 990, 'attending', '2021-09-02 23:48:05', '2025-12-17 19:47:43', 'EdVGlG6m', '4420735'), + (65009, 687, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'EdVGlG6m', '4420738'), + (65010, 687, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'EdVGlG6m', '4420739'), + (65011, 687, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'EdVGlG6m', '4420741'), + (65012, 687, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'EdVGlG6m', '4420744'), + (65013, 687, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'EdVGlG6m', '4420747'), + (65014, 687, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'EdVGlG6m', '4420748'), + (65015, 687, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'EdVGlG6m', '4420749'), + (65016, 687, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'EdVGlG6m', '4461883'), + (65017, 687, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVGlG6m', '6045684'), + (65018, 688, 406, 'not_attending', '2021-04-21 02:39:31', '2025-12-17 19:47:44', 'ndaobMlA', '3236464'), + (65019, 688, 644, 'attending', '2021-04-22 07:04:59', '2025-12-17 19:47:45', 'ndaobMlA', '3539919'), + (65020, 688, 645, 'attending', '2021-04-21 02:43:15', '2025-12-17 19:47:46', 'ndaobMlA', '3539920'), + (65021, 688, 646, 'not_attending', '2021-05-15 19:12:48', '2025-12-17 19:47:46', 'ndaobMlA', '3539921'), + (65022, 688, 647, 'attending', '2021-04-23 15:45:14', '2025-12-17 19:47:46', 'ndaobMlA', '3539922'), + (65023, 688, 648, 'attending', '2021-04-23 15:45:18', '2025-12-17 19:47:47', 'ndaobMlA', '3539923'), + (65024, 688, 700, 'not_attending', '2021-04-21 02:39:23', '2025-12-17 19:47:44', 'ndaobMlA', '3575725'), + (65025, 688, 707, 'attending', '2021-04-22 21:09:55', '2025-12-17 19:47:46', 'ndaobMlA', '3583262'), + (65026, 688, 724, 'attending', '2021-04-23 15:44:09', '2025-12-17 19:47:46', 'ndaobMlA', '3661369'), + (65027, 688, 725, 'not_attending', '2021-05-23 20:19:39', '2025-12-17 19:47:47', 'ndaobMlA', '3661372'), + (65028, 688, 756, 'not_attending', '2021-04-26 15:45:10', '2025-12-17 19:47:46', 'ndaobMlA', '3704795'), + (65029, 688, 761, 'not_attending', '2021-05-14 23:04:02', '2025-12-17 19:47:46', 'ndaobMlA', '3716041'), + (65030, 688, 767, 'not_attending', '2021-05-02 18:32:39', '2025-12-17 19:47:46', 'ndaobMlA', '3722476'), + (65031, 688, 771, 'not_attending', '2021-04-29 23:14:08', '2025-12-17 19:47:46', 'ndaobMlA', '3726420'), + (65032, 688, 773, 'not_attending', '2021-04-23 15:42:10', '2025-12-17 19:47:46', 'ndaobMlA', '3729399'), + (65033, 688, 774, 'not_attending', '2021-04-21 13:08:03', '2025-12-17 19:47:45', 'ndaobMlA', '3730212'), + (65034, 688, 775, 'attending', '2021-04-22 06:56:23', '2025-12-17 19:47:45', 'ndaobMlA', '3731062'), + (65035, 688, 776, 'not_attending', '2021-04-25 14:38:50', '2025-12-17 19:47:46', 'ndaobMlA', '3733455'), + (65036, 688, 779, 'attending', '2021-05-03 15:25:42', '2025-12-17 19:47:46', 'ndaobMlA', '3757118'), + (65037, 688, 781, 'attending', '2021-04-29 01:46:04', '2025-12-17 19:47:46', 'ndaobMlA', '3760130'), + (65038, 688, 782, 'maybe', '2021-05-03 15:25:38', '2025-12-17 19:47:46', 'ndaobMlA', '3761843'), + (65039, 688, 788, 'attending', '2021-05-07 16:54:24', '2025-12-17 19:47:46', 'ndaobMlA', '3781975'), + (65040, 688, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ndaobMlA', '3793156'), + (65041, 688, 805, 'maybe', '2021-06-13 20:44:57', '2025-12-17 19:47:47', 'ndaobMlA', '3804777'), + (65042, 688, 815, 'maybe', '2021-05-28 22:45:33', '2025-12-17 19:47:47', 'ndaobMlA', '3818136'), + (65043, 688, 823, 'attending', '2021-06-18 20:23:01', '2025-12-17 19:47:48', 'ndaobMlA', '3974109'), + (65044, 688, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ndaobMlA', '3975311'), + (65045, 688, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ndaobMlA', '3975312'), + (65046, 688, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ndaobMlA', '3994992'), + (65047, 688, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ndaobMlA', '4014338'), + (65048, 688, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'ndaobMlA', '4021848'), + (65049, 688, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ndaobMlA', '4136744'), + (65050, 688, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'ndaobMlA', '4136937'), + (65051, 688, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ndaobMlA', '4136938'), + (65052, 688, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ndaobMlA', '4136947'), + (65053, 688, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ndaobMlA', '4210314'), + (65054, 688, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ndaobMlA', '4225444'), + (65055, 688, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ndaobMlA', '4239259'), + (65056, 688, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'ndaobMlA', '4240316'), + (65057, 688, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'ndaobMlA', '4240317'), + (65058, 688, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ndaobMlA', '4240318'), + (65059, 688, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'ndaobMlA', '4240320'), + (65060, 688, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ndaobMlA', '4250163'), + (65061, 688, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ndaobMlA', '4275957'), + (65062, 688, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ndaobMlA', '4277819'), + (65063, 688, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ndaobMlA', '4301723'), + (65064, 688, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ndaobMlA', '4302093'), + (65065, 688, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ndaobMlA', '4304151'), + (65066, 688, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ndaobMlA', '4345519'), + (65067, 688, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ndaobMlA', '4356801'), + (65068, 688, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ndaobMlA', '4358025'), + (65069, 688, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ndaobMlA', '4366186'), + (65070, 688, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'ndaobMlA', '4366187'), + (65071, 688, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ndaobMlA', '4402823'), + (65072, 688, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ndaobMlA', '4420735'), + (65073, 688, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ndaobMlA', '4420738'), + (65074, 688, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ndaobMlA', '4420739'), + (65075, 688, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ndaobMlA', '4420741'), + (65076, 688, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ndaobMlA', '4420744'), + (65077, 688, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ndaobMlA', '4420747'), + (65078, 688, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ndaobMlA', '4420748'), + (65079, 688, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ndaobMlA', '4420749'), + (65080, 688, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ndaobMlA', '4461883'), + (65081, 688, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ndaobMlA', '4508342'), + (65082, 688, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ndaobMlA', '4568602'), + (65083, 688, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ndaobMlA', '4572153'), + (65084, 688, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ndaobMlA', '4585962'), + (65085, 688, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'ndaobMlA', '4596356'), + (65086, 688, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ndaobMlA', '4598860'), + (65087, 688, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ndaobMlA', '4598861'), + (65088, 688, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ndaobMlA', '4602797'), + (65089, 688, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ndaobMlA', '4637896'), + (65090, 688, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ndaobMlA', '4642994'), + (65091, 688, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ndaobMlA', '4642995'), + (65092, 688, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ndaobMlA', '4642996'), + (65093, 688, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ndaobMlA', '4642997'), + (65094, 688, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ndaobMlA', '4645687'), + (65095, 688, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ndaobMlA', '4645698'), + (65096, 688, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ndaobMlA', '4645704'), + (65097, 688, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ndaobMlA', '4645705'), + (65098, 688, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ndaobMlA', '4668385'), + (65099, 688, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ndaobMlA', '4694407'), + (65100, 688, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ndaobMlA', '4736497'), + (65101, 688, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ndaobMlA', '4736499'), + (65102, 688, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ndaobMlA', '4736500'), + (65103, 688, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ndaobMlA', '4736503'), + (65104, 688, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ndaobMlA', '4736504'), + (65105, 688, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ndaobMlA', '4746789'), + (65106, 688, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ndaobMlA', '4753929'), + (65107, 688, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ndaobMlA', '5038850'), + (65108, 688, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ndaobMlA', '5045826'), + (65109, 688, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ndaobMlA', '5132533'), + (65110, 688, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ndaobMlA', '5186582'), + (65111, 688, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ndaobMlA', '5186583'), + (65112, 688, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ndaobMlA', '5186585'), + (65113, 688, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ndaobMlA', '5190437'), + (65114, 688, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ndaobMlA', '5215989'), + (65115, 688, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaobMlA', '6045684'), + (65116, 689, 258, 'not_attending', '2021-06-01 01:29:28', '2025-12-17 19:47:47', 'x4oYk6Ym', '3149489'), + (65117, 689, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'x4oYk6Ym', '3149491'), + (65118, 689, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'x4oYk6Ym', '3236450'), + (65119, 689, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'x4oYk6Ym', '3975311'), + (65120, 689, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'x4oYk6Ym', '3994992'), + (65121, 689, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'x4oYk6Ym', '4014338'), + (65122, 689, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oYk6Ym', '6045684'), + (65123, 690, 568, 'attending', '2021-01-30 23:04:27', '2025-12-17 19:47:50', 'kdKoePBd', '3430267'), + (65124, 690, 574, 'attending', '2021-02-28 04:17:41', '2025-12-17 19:47:51', 'kdKoePBd', '3435543'), + (65125, 690, 579, 'attending', '2021-01-31 04:11:32', '2025-12-17 19:47:50', 'kdKoePBd', '3440978'), + (65126, 690, 594, 'not_attending', '2021-03-02 01:33:23', '2025-12-17 19:47:51', 'kdKoePBd', '3467759'), + (65127, 690, 597, 'maybe', '2021-03-14 04:28:34', '2025-12-17 19:47:51', 'kdKoePBd', '3467764'), + (65128, 690, 602, 'not_attending', '2021-02-20 21:46:20', '2025-12-17 19:47:50', 'kdKoePBd', '3470303'), + (65129, 690, 603, 'attending', '2021-02-20 23:56:52', '2025-12-17 19:47:50', 'kdKoePBd', '3470304'), + (65130, 690, 604, 'maybe', '2021-02-27 23:54:00', '2025-12-17 19:47:50', 'kdKoePBd', '3470305'), + (65131, 690, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdKoePBd', '3470991'), + (65132, 690, 620, 'attending', '2021-02-23 19:03:41', '2025-12-17 19:47:50', 'kdKoePBd', '3513703'), + (65133, 690, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdKoePBd', '3517815'), + (65134, 690, 622, 'attending', '2021-03-14 00:26:05', '2025-12-17 19:47:51', 'kdKoePBd', '3517816'), + (65135, 690, 623, 'attending', '2021-02-26 04:32:55', '2025-12-17 19:47:50', 'kdKoePBd', '3523941'), + (65136, 690, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKoePBd', '3533850'), + (65137, 690, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKoePBd', '3536632'), + (65138, 690, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKoePBd', '3536656'), + (65139, 690, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdKoePBd', '3539916'), + (65140, 690, 642, 'attending', '2021-04-09 12:05:39', '2025-12-17 19:47:44', 'kdKoePBd', '3539917'), + (65141, 690, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKoePBd', '3539918'), + (65142, 690, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKoePBd', '3539919'), + (65143, 690, 645, 'attending', '2021-05-07 18:06:40', '2025-12-17 19:47:46', 'kdKoePBd', '3539920'), + (65144, 690, 646, 'not_attending', '2021-05-14 20:16:20', '2025-12-17 19:47:46', 'kdKoePBd', '3539921'), + (65145, 690, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKoePBd', '3539922'), + (65146, 690, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKoePBd', '3539923'), + (65147, 690, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdKoePBd', '3539927'), + (65148, 690, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKoePBd', '3582734'), + (65149, 690, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKoePBd', '3583262'), + (65150, 690, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKoePBd', '3619523'), + (65151, 690, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKoePBd', '3661369'), + (65152, 690, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKoePBd', '3674262'), + (65153, 690, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKoePBd', '3677402'), + (65154, 690, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdKoePBd', '3730212'), + (65155, 690, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdKoePBd', '3793156'), + (65156, 690, 823, 'attending', '2021-06-19 20:28:49', '2025-12-17 19:47:48', 'kdKoePBd', '3974109'), + (65157, 690, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdKoePBd', '3975311'), + (65158, 690, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKoePBd', '3975312'), + (65159, 690, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdKoePBd', '3994992'), + (65160, 690, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKoePBd', '4014338'), + (65161, 690, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdKoePBd', '4021848'), + (65162, 690, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKoePBd', '4136744'), + (65163, 690, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdKoePBd', '4136937'), + (65164, 690, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdKoePBd', '4136938'), + (65165, 690, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdKoePBd', '4136947'), + (65166, 690, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdKoePBd', '4210314'), + (65167, 690, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdKoePBd', '4225444'), + (65168, 690, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdKoePBd', '4239259'), + (65169, 690, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdKoePBd', '4240316'), + (65170, 690, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdKoePBd', '4240317'), + (65171, 690, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdKoePBd', '4240318'), + (65172, 690, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdKoePBd', '4240320'), + (65173, 690, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdKoePBd', '4250163'), + (65174, 690, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdKoePBd', '4275957'), + (65175, 690, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdKoePBd', '4277819'), + (65176, 690, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdKoePBd', '4301723'), + (65177, 690, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'kdKoePBd', '4302093'), + (65178, 690, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdKoePBd', '4304151'), + (65179, 690, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdKoePBd', '4356801'), + (65180, 690, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdKoePBd', '4366186'), + (65181, 690, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdKoePBd', '4366187'), + (65182, 690, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdKoePBd', '4420735'), + (65183, 690, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdKoePBd', '4420738'), + (65184, 690, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdKoePBd', '4420739'), + (65185, 690, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'kdKoePBd', '4420741'), + (65186, 690, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdKoePBd', '4420744'), + (65187, 690, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdKoePBd', '4420747'), + (65188, 690, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdKoePBd', '4420748'), + (65189, 690, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdKoePBd', '4420749'), + (65190, 690, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdKoePBd', '4461883'), + (65191, 690, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKoePBd', '4508342'), + (65192, 690, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKoePBd', '4568602'), + (65193, 690, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKoePBd', '4572153'), + (65194, 690, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'kdKoePBd', '4585962'), + (65195, 690, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdKoePBd', '4596356'), + (65196, 690, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKoePBd', '4598860'), + (65197, 690, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKoePBd', '4598861'), + (65198, 690, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKoePBd', '4602797'), + (65199, 690, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKoePBd', '4637896'), + (65200, 690, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKoePBd', '4642994'), + (65201, 690, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'kdKoePBd', '4642995'), + (65202, 690, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKoePBd', '4642996'), + (65203, 690, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKoePBd', '4642997'), + (65204, 690, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKoePBd', '4645687'), + (65205, 690, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKoePBd', '4645698'), + (65206, 690, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdKoePBd', '4645704'), + (65207, 690, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKoePBd', '4645705'), + (65208, 690, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKoePBd', '4668385'), + (65209, 690, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKoePBd', '4694407'), + (65210, 690, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKoePBd', '4736497'), + (65211, 690, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKoePBd', '4736499'), + (65212, 690, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKoePBd', '4736500'), + (65213, 690, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKoePBd', '4736503'), + (65214, 690, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKoePBd', '4736504'), + (65215, 690, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKoePBd', '4746789'), + (65216, 690, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdKoePBd', '4753929'), + (65217, 690, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKoePBd', '5038850'), + (65218, 690, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKoePBd', '5045826'), + (65219, 690, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKoePBd', '5132533'), + (65220, 690, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdKoePBd', '5186582'), + (65221, 690, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdKoePBd', '5186583'), + (65222, 690, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdKoePBd', '5186585'), + (65223, 690, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdKoePBd', '5190437'), + (65224, 690, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdKoePBd', '5195095'), + (65225, 690, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKoePBd', '5215989'), + (65226, 690, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdKoePBd', '5223686'), + (65227, 690, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdKoePBd', '5247467'), + (65228, 690, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdKoePBd', '5260800'), + (65229, 690, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdKoePBd', '5269930'), + (65230, 690, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdKoePBd', '5271448'), + (65231, 690, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'kdKoePBd', '5271449'), + (65232, 690, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdKoePBd', '5278159'), + (65233, 690, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdKoePBd', '5363695'), + (65234, 690, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdKoePBd', '5365960'), + (65235, 690, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdKoePBd', '5378247'), + (65236, 690, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'kdKoePBd', '5389605'), + (65237, 690, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdKoePBd', '5397265'), + (65238, 690, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdKoePBd', '5404786'), + (65239, 690, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdKoePBd', '5405203'), + (65240, 690, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdKoePBd', '5412550'), + (65241, 690, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdKoePBd', '5415046'), + (65242, 690, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdKoePBd', '5422086'), + (65243, 690, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdKoePBd', '5422406'), + (65244, 690, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdKoePBd', '5424565'), + (65245, 690, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdKoePBd', '5426882'), + (65246, 690, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdKoePBd', '5441125'), + (65247, 690, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdKoePBd', '5441126'), + (65248, 690, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdKoePBd', '5441128'), + (65249, 690, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdKoePBd', '5441131'), + (65250, 690, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdKoePBd', '5441132'), + (65251, 690, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdKoePBd', '5453325'), + (65252, 690, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdKoePBd', '5454516'), + (65253, 690, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdKoePBd', '5454605'), + (65254, 690, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdKoePBd', '5455037'), + (65255, 690, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdKoePBd', '5461278'), + (65256, 690, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdKoePBd', '5469480'), + (65257, 690, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdKoePBd', '5474663'), + (65258, 690, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdKoePBd', '5482022'), + (65259, 690, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdKoePBd', '5488912'), + (65260, 690, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdKoePBd', '5492192'), + (65261, 690, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdKoePBd', '5493139'), + (65262, 690, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdKoePBd', '5493200'), + (65263, 690, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdKoePBd', '5502188'), + (65264, 690, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdKoePBd', '5505059'), + (65265, 690, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdKoePBd', '5509055'), + (65266, 690, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdKoePBd', '5512862'), + (65267, 690, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdKoePBd', '5513985'), + (65268, 690, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdKoePBd', '5519981'), + (65269, 690, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdKoePBd', '5522550'), + (65270, 690, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdKoePBd', '5534683'), + (65271, 690, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdKoePBd', '5537735'), + (65272, 690, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdKoePBd', '5540859'), + (65273, 690, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdKoePBd', '5546619'), + (65274, 690, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdKoePBd', '5557747'), + (65275, 690, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdKoePBd', '5560255'), + (65276, 690, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdKoePBd', '5562906'), + (65277, 690, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdKoePBd', '5600604'), + (65278, 690, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdKoePBd', '5605544'), + (65279, 690, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdKoePBd', '5630960'), + (65280, 690, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdKoePBd', '5630961'), + (65281, 690, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdKoePBd', '5630962'), + (65282, 690, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdKoePBd', '5630966'), + (65283, 690, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdKoePBd', '5630967'), + (65284, 690, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdKoePBd', '5630968'), + (65285, 690, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdKoePBd', '5635406'), + (65286, 690, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdKoePBd', '5638765'), + (65287, 690, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdKoePBd', '5640097'), + (65288, 690, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdKoePBd', '5640843'), + (65289, 690, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdKoePBd', '5641521'), + (65290, 690, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdKoePBd', '5642818'), + (65291, 690, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdKoePBd', '5652395'), + (65292, 690, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdKoePBd', '5670445'), + (65293, 690, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdKoePBd', '5671637'), + (65294, 690, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdKoePBd', '5672329'), + (65295, 690, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdKoePBd', '5674057'), + (65296, 690, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdKoePBd', '5674060'), + (65297, 690, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdKoePBd', '5677461'), + (65298, 690, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdKoePBd', '5698046'), + (65299, 690, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdKoePBd', '5699760'), + (65300, 690, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdKoePBd', '5741601'), + (65301, 690, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdKoePBd', '5763458'), + (65302, 690, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdKoePBd', '5774172'), + (65303, 690, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdKoePBd', '5818247'), + (65304, 690, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdKoePBd', '5819471'), + (65305, 690, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'kdKoePBd', '5827739'), + (65306, 690, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdKoePBd', '5844306'), + (65307, 690, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdKoePBd', '5850159'), + (65308, 690, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdKoePBd', '5858999'), + (65309, 690, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdKoePBd', '5871984'), + (65310, 690, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdKoePBd', '5876354'), + (65311, 690, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdKoePBd', '5880939'), + (65312, 690, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdKoePBd', '5880940'), + (65313, 690, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdKoePBd', '5880942'), + (65314, 690, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdKoePBd', '5880943'), + (65315, 690, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdKoePBd', '5887890'), + (65316, 690, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdKoePBd', '5888598'), + (65317, 690, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdKoePBd', '5893260'), + (65318, 690, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdKoePBd', '5899826'), + (65319, 690, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdKoePBd', '5900199'), + (65320, 690, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdKoePBd', '5900200'), + (65321, 690, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdKoePBd', '5900202'), + (65322, 690, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdKoePBd', '5900203'), + (65323, 690, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdKoePBd', '5901108'), + (65324, 690, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdKoePBd', '5901126'), + (65325, 690, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'kdKoePBd', '5901606'), + (65326, 690, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdKoePBd', '5909655'), + (65327, 690, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdKoePBd', '5910522'), + (65328, 690, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdKoePBd', '5910526'), + (65329, 690, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdKoePBd', '5910528'), + (65330, 690, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdKoePBd', '5916219'), + (65331, 690, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdKoePBd', '5936234'), + (65332, 690, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdKoePBd', '5958351'), + (65333, 690, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdKoePBd', '5959751'), + (65334, 690, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdKoePBd', '5959755'), + (65335, 690, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdKoePBd', '5960055'), + (65336, 690, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdKoePBd', '5961684'), + (65337, 690, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdKoePBd', '5962132'), + (65338, 690, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdKoePBd', '5962133'), + (65339, 690, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdKoePBd', '5962134'), + (65340, 690, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdKoePBd', '5962317'), + (65341, 690, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdKoePBd', '5962318'), + (65342, 690, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'kdKoePBd', '5965933'), + (65343, 690, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdKoePBd', '5967014'), + (65344, 690, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdKoePBd', '5972815'), + (65345, 690, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdKoePBd', '5974016'), + (65346, 690, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdKoePBd', '5981515'), + (65347, 690, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdKoePBd', '5993516'), + (65348, 690, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdKoePBd', '5998939'), + (65349, 690, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdKoePBd', '6028191'), + (65350, 690, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdKoePBd', '6040066'), + (65351, 690, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdKoePBd', '6042717'), + (65352, 690, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdKoePBd', '6044838'), + (65353, 690, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdKoePBd', '6044839'), + (65354, 690, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKoePBd', '6045684'), + (65355, 690, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdKoePBd', '6050104'), + (65356, 690, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdKoePBd', '6053195'), + (65357, 690, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdKoePBd', '6053198'), + (65358, 690, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdKoePBd', '6056085'), + (65359, 690, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdKoePBd', '6056916'), + (65360, 690, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdKoePBd', '6059290'), + (65361, 690, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdKoePBd', '6060328'), + (65362, 690, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdKoePBd', '6061037'), + (65363, 690, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdKoePBd', '6061039'), + (65364, 690, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdKoePBd', '6067245'), + (65365, 690, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdKoePBd', '6068094'), + (65366, 690, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdKoePBd', '6068252'), + (65367, 690, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdKoePBd', '6068253'), + (65368, 690, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdKoePBd', '6068254'), + (65369, 690, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdKoePBd', '6068280'), + (65370, 690, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdKoePBd', '6069093'), + (65371, 690, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdKoePBd', '6072528'), + (65372, 690, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdKoePBd', '6079840'), + (65373, 690, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdKoePBd', '6083398'), + (65374, 690, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdKoePBd', '6093504'), + (65375, 690, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdKoePBd', '6097414'), + (65376, 690, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdKoePBd', '6097442'), + (65377, 690, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdKoePBd', '6097684'), + (65378, 690, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdKoePBd', '6098762'), + (65379, 690, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdKoePBd', '6101361'), + (65380, 690, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdKoePBd', '6101362'), + (65381, 690, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdKoePBd', '6107314'), + (65382, 690, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdKoePBd', '6120034'), + (65383, 690, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'kdKoePBd', '6136733'), + (65384, 690, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdKoePBd', '6137989'), + (65385, 690, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdKoePBd', '6150864'), + (65386, 690, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdKoePBd', '6155491'), + (65387, 690, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdKoePBd', '6164417'), + (65388, 690, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdKoePBd', '6166388'), + (65389, 690, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdKoePBd', '6176439'), + (65390, 690, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdKoePBd', '6182410'), + (65391, 690, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdKoePBd', '6185812'), + (65392, 690, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdKoePBd', '6187651'), + (65393, 690, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdKoePBd', '6187963'), + (65394, 690, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdKoePBd', '6187964'), + (65395, 690, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdKoePBd', '6187966'), + (65396, 690, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdKoePBd', '6187967'), + (65397, 690, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdKoePBd', '6187969'), + (65398, 690, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdKoePBd', '6334878'), + (65399, 690, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdKoePBd', '6337236'), + (65400, 690, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdKoePBd', '6337970'), + (65401, 690, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdKoePBd', '6338308'), + (65402, 690, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdKoePBd', '6341710'), + (65403, 690, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdKoePBd', '6342044'), + (65404, 690, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdKoePBd', '6342298'), + (65405, 690, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdKoePBd', '6343294'), + (65406, 690, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdKoePBd', '6347034'), + (65407, 690, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdKoePBd', '6347056'), + (65408, 690, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdKoePBd', '6353830'), + (65409, 690, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdKoePBd', '6353831'), + (65410, 690, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdKoePBd', '6357867'), + (65411, 690, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdKoePBd', '6358652'), + (65412, 690, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdKoePBd', '6361709'), + (65413, 690, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdKoePBd', '6361710'), + (65414, 690, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdKoePBd', '6361711'), + (65415, 690, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdKoePBd', '6361712'), + (65416, 690, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdKoePBd', '6361713'), + (65417, 690, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdKoePBd', '6382573'), + (65418, 690, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdKoePBd', '6388604'), + (65419, 690, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdKoePBd', '6394629'), + (65420, 690, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdKoePBd', '6394631'), + (65421, 690, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdKoePBd', '6440863'), + (65422, 690, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdKoePBd', '6445440'), + (65423, 690, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdKoePBd', '6453951'), + (65424, 690, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdKoePBd', '6461696'), + (65425, 690, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdKoePBd', '6462129'), + (65426, 690, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdKoePBd', '6463218'), + (65427, 690, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdKoePBd', '6472181'), + (65428, 690, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdKoePBd', '6482693'), + (65429, 690, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdKoePBd', '6484200'), + (65430, 690, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdKoePBd', '6484680'), + (65431, 690, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdKoePBd', '6507741'), + (65432, 690, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdKoePBd', '6514659'), + (65433, 690, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdKoePBd', '6514660'), + (65434, 690, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdKoePBd', '6519103'), + (65435, 690, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdKoePBd', '6535681'), + (65436, 690, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdKoePBd', '6584747'), + (65437, 690, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdKoePBd', '6587097'), + (65438, 690, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdKoePBd', '6609022'), + (65439, 690, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'kdKoePBd', '6632757'), + (65440, 690, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdKoePBd', '6644187'), + (65441, 690, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdKoePBd', '6648951'), + (65442, 690, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdKoePBd', '6648952'), + (65443, 690, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdKoePBd', '6655401'), + (65444, 690, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdKoePBd', '6661585'), + (65445, 690, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdKoePBd', '6661588'), + (65446, 690, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdKoePBd', '6661589'), + (65447, 690, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdKoePBd', '6699906'), + (65448, 690, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdKoePBd', '6699913'), + (65449, 690, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdKoePBd', '6701109'), + (65450, 690, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdKoePBd', '6705219'), + (65451, 690, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdKoePBd', '6710153'), + (65452, 690, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdKoePBd', '6711552'), + (65453, 690, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdKoePBd', '6711553'), + (65454, 690, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdKoePBd', '6722688'), + (65455, 690, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdKoePBd', '6730620'), + (65456, 690, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdKoePBd', '6740364'), + (65457, 690, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdKoePBd', '6743829'), + (65458, 690, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdKoePBd', '7030380'), + (65459, 690, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'kdKoePBd', '7033677'), + (65460, 690, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdKoePBd', '7044715'), + (65461, 690, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdKoePBd', '7050318'), + (65462, 690, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdKoePBd', '7050319'), + (65463, 690, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdKoePBd', '7050322'), + (65464, 690, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdKoePBd', '7057804'), + (65465, 690, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdKoePBd', '7072824'), + (65466, 690, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdKoePBd', '7074348'), + (65467, 690, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdKoePBd', '7074364'), + (65468, 690, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdKoePBd', '7089267'), + (65469, 690, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdKoePBd', '7098747'), + (65470, 690, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdKoePBd', '7113468'), + (65471, 690, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdKoePBd', '7114856'), + (65472, 690, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdKoePBd', '7114951'), + (65473, 690, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdKoePBd', '7114955'), + (65474, 690, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdKoePBd', '7114956'), + (65475, 690, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdKoePBd', '7114957'), + (65476, 690, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdKoePBd', '7159484'), + (65477, 690, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdKoePBd', '7178446'), + (65478, 690, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdKoePBd', '7220467'), + (65479, 690, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdKoePBd', '7240354'), + (65480, 690, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdKoePBd', '7251633'), + (65481, 690, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdKoePBd', '7324073'), + (65482, 690, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdKoePBd', '7324074'), + (65483, 690, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdKoePBd', '7324075'), + (65484, 690, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdKoePBd', '7324078'), + (65485, 690, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdKoePBd', '7324082'), + (65486, 690, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdKoePBd', '7331457'), + (65487, 690, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdKoePBd', '7363643'), + (65488, 690, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdKoePBd', '7368606'), + (65489, 690, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdKoePBd', '7397462'), + (65490, 690, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdKoePBd', '7424275'), + (65491, 690, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdKoePBd', '7432751'), + (65492, 690, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdKoePBd', '7432752'), + (65493, 690, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdKoePBd', '7432753'), + (65494, 690, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdKoePBd', '7432754'), + (65495, 690, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdKoePBd', '7432755'), + (65496, 690, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdKoePBd', '7432756'), + (65497, 690, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdKoePBd', '7432758'), + (65498, 690, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdKoePBd', '7432759'), + (65499, 690, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdKoePBd', '7433834'), + (65500, 690, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'kdKoePBd', '7470197'), + (65501, 690, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdKoePBd', '7685613'), + (65502, 690, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdKoePBd', '7688194'), + (65503, 690, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdKoePBd', '7688196'), + (65504, 690, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdKoePBd', '7688289'), + (65505, 690, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdKoePBd', '7692763'), + (65506, 690, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdKoePBd', '7697552'), + (65507, 690, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdKoePBd', '7699878'), + (65508, 690, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdKoePBd', '7704043'), + (65509, 690, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdKoePBd', '7712467'), + (65510, 690, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdKoePBd', '7713585'), + (65511, 690, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdKoePBd', '7713586'), + (65512, 690, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdKoePBd', '7738518'), + (65513, 690, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdKoePBd', '7750636'), + (65514, 690, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdKoePBd', '7796540'), + (65515, 690, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdKoePBd', '7796541'), + (65516, 690, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdKoePBd', '7796542'), + (65517, 690, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdKoePBd', '7825913'), + (65518, 690, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdKoePBd', '7826209'), + (65519, 690, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdKoePBd', '7834742'), + (65520, 690, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'kdKoePBd', '7842108'), + (65521, 690, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdKoePBd', '7842902'), + (65522, 690, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdKoePBd', '7842903'), + (65523, 690, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdKoePBd', '7842904'), + (65524, 690, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdKoePBd', '7842905'), + (65525, 690, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdKoePBd', '7855719'), + (65526, 690, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdKoePBd', '7860683'), + (65527, 690, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdKoePBd', '7860684'), + (65528, 690, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdKoePBd', '7866095'), + (65529, 690, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdKoePBd', '7869170'), + (65530, 690, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdKoePBd', '7869188'), + (65531, 690, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdKoePBd', '7869201'), + (65532, 690, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdKoePBd', '7877465'), + (65533, 690, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdKoePBd', '7888250'), + (65534, 690, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdKoePBd', '7904777'), + (65535, 690, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdKoePBd', '8349164'), + (65536, 690, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdKoePBd', '8349545'), + (65537, 690, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdKoePBd', '8368028'), + (65538, 690, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdKoePBd', '8368029'), + (65539, 690, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdKoePBd', '8388462'), + (65540, 690, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdKoePBd', '8400273'), + (65541, 690, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdKoePBd', '8400275'), + (65542, 690, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'kdKoePBd', '8400276'), + (65543, 690, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdKoePBd', '8404977'), + (65544, 690, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdKoePBd', '8430783'), + (65545, 690, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdKoePBd', '8430784'), + (65546, 690, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdKoePBd', '8430799'), + (65547, 690, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdKoePBd', '8430800'), + (65548, 690, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdKoePBd', '8430801'), + (65549, 690, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdKoePBd', '8438709'), + (65550, 690, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdKoePBd', '8457738'), + (65551, 690, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdKoePBd', '8459566'), + (65552, 690, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdKoePBd', '8459567'), + (65553, 690, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdKoePBd', '8461032'), + (65554, 690, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdKoePBd', '8477877'), + (65555, 690, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdKoePBd', '8485688'), + (65556, 690, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdKoePBd', '8490587'), + (65557, 690, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdKoePBd', '8493552'), + (65558, 690, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdKoePBd', '8493553'), + (65559, 690, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdKoePBd', '8493554'), + (65560, 690, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdKoePBd', '8493555'), + (65561, 690, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdKoePBd', '8493556'), + (65562, 690, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdKoePBd', '8493557'), + (65563, 690, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdKoePBd', '8493558'), + (65564, 690, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdKoePBd', '8493559'), + (65565, 690, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdKoePBd', '8493560'), + (65566, 690, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdKoePBd', '8493561'), + (65567, 690, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdKoePBd', '8493572'), + (65568, 690, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdKoePBd', '8540725'), + (65569, 690, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdKoePBd', '8555421'), + (65570, 691, 853, 'attending', '2021-08-11 22:30:45', '2025-12-17 19:47:41', 'Agk5xMRA', '4015725'), + (65571, 691, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'Agk5xMRA', '4210314'), + (65572, 691, 902, 'attending', '2021-08-07 17:07:32', '2025-12-17 19:47:41', 'Agk5xMRA', '4240318'), + (65573, 691, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Agk5xMRA', '4240320'), + (65574, 691, 935, 'attending', '2021-08-11 22:04:25', '2025-12-17 19:47:41', 'Agk5xMRA', '4304151'), + (65575, 691, 960, 'not_attending', '2021-08-11 19:37:22', '2025-12-17 19:47:41', 'Agk5xMRA', '4344519'), + (65576, 691, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'Agk5xMRA', '4345519'), + (65577, 691, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Agk5xMRA', '4356801'), + (65578, 691, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'Agk5xMRA', '4358025'), + (65579, 691, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Agk5xMRA', '4366186'), + (65580, 691, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Agk5xMRA', '4366187'), + (65581, 691, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'Agk5xMRA', '4402823'), + (65582, 691, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Agk5xMRA', '4420735'), + (65583, 691, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Agk5xMRA', '4420738'), + (65584, 691, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'Agk5xMRA', '4420739'), + (65585, 691, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Agk5xMRA', '4420741'), + (65586, 691, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Agk5xMRA', '4420744'), + (65587, 691, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Agk5xMRA', '4420747'), + (65588, 691, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Agk5xMRA', '4420748'), + (65589, 691, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Agk5xMRA', '4420749'), + (65590, 691, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Agk5xMRA', '4461883'), + (65591, 691, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Agk5xMRA', '4508342'), + (65592, 691, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Agk5xMRA', '6045684'), + (65593, 692, 404, 'attending', '2021-03-17 13:48:15', '2025-12-17 19:47:51', 'GmjwwOgA', '3236460'), + (65594, 692, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'GmjwwOgA', '3236465'), + (65595, 692, 629, 'attending', '2021-03-17 13:52:38', '2025-12-17 19:47:51', 'GmjwwOgA', '3533307'), + (65596, 692, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'GmjwwOgA', '3539916'), + (65597, 692, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'GmjwwOgA', '3539918'), + (65598, 692, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'GmjwwOgA', '3539919'), + (65599, 692, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'GmjwwOgA', '3539920'), + (65600, 692, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GmjwwOgA', '3539927'), + (65601, 692, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GmjwwOgA', '3582734'), + (65602, 692, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GmjwwOgA', '3583262'), + (65603, 692, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GmjwwOgA', '3619523'), + (65604, 692, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GmjwwOgA', '3661369'), + (65605, 692, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GmjwwOgA', '3674262'), + (65606, 692, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GmjwwOgA', '3677402'), + (65607, 692, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GmjwwOgA', '3730212'), + (65608, 692, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjwwOgA', '6045684'), + (65609, 693, 1611, 'attending', '2022-09-05 03:57:32', '2025-12-17 19:47:24', '4PRkellm', '5507652'), + (65610, 693, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', '4PRkellm', '5513985'), + (65611, 693, 1628, 'not_attending', '2022-09-05 03:55:50', '2025-12-17 19:47:23', '4PRkellm', '5522500'), + (65612, 693, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', '4PRkellm', '5534683'), + (65613, 693, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '4PRkellm', '5537735'), + (65614, 693, 1637, 'attending', '2022-09-05 03:58:51', '2025-12-17 19:47:24', '4PRkellm', '5539591'), + (65615, 693, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4PRkellm', '5540859'), + (65616, 693, 1648, 'attending', '2022-09-05 03:59:06', '2025-12-17 19:47:24', '4PRkellm', '5548974'), + (65617, 693, 1651, 'attending', '2022-09-05 03:57:58', '2025-12-17 19:47:24', '4PRkellm', '5551425'), + (65618, 693, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4PRkellm', '5555245'), + (65619, 693, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4PRkellm', '5557747'), + (65620, 693, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4PRkellm', '5560255'), + (65621, 693, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4PRkellm', '5562906'), + (65622, 693, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4PRkellm', '5600604'), + (65623, 693, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4PRkellm', '5605544'), + (65624, 693, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4PRkellm', '5635406'), + (65625, 693, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4PRkellm', '5638765'), + (65626, 693, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4PRkellm', '5640843'), + (65627, 693, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PRkellm', '6045684'), + (65628, 694, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAY1YN0A', '6045684'), + (65629, 695, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4v0pOYBm', '7114957'), + (65630, 695, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4v0pOYBm', '7240354'), + (65631, 695, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4v0pOYBm', '7251633'), + (65632, 695, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', '4v0pOYBm', '7265589'), + (65633, 695, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', '4v0pOYBm', '7291219'), + (65634, 695, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', '4v0pOYBm', '7301638'), + (65635, 696, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'mbZ0PJam', '5132533'), + (65636, 696, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mbZ0PJam', '5186582'), + (65637, 696, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mbZ0PJam', '5186583'), + (65638, 696, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mbZ0PJam', '5186585'), + (65639, 696, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mbZ0PJam', '5190437'), + (65640, 696, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'mbZ0PJam', '5196763'), + (65641, 696, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'mbZ0PJam', '5199460'), + (65642, 696, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mbZ0PJam', '5215989'), + (65643, 696, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mbZ0PJam', '5223686'), + (65644, 696, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mbZ0PJam', '5227432'), + (65645, 696, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZ0PJam', '6045684'), + (65646, 697, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'ndla2kbm', '3236465'), + (65647, 697, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'ndla2kbm', '3539918'), + (65648, 697, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'ndla2kbm', '3539919'), + (65649, 697, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'ndla2kbm', '3539920'), + (65650, 697, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'ndla2kbm', '3539921'), + (65651, 697, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ndla2kbm', '3583262'), + (65652, 697, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ndla2kbm', '3661369'), + (65653, 697, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ndla2kbm', '3730212'), + (65654, 697, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ndla2kbm', '3793156'), + (65655, 697, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'ndla2kbm', '3803310'), + (65656, 697, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'ndla2kbm', '3806392'), + (65657, 697, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndla2kbm', '6045684'), + (65658, 698, 1442, 'not_attending', '2022-06-12 02:47:11', '2025-12-17 19:47:17', '4DnkGqym', '5397265'), + (65659, 698, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4DnkGqym', '5403967'), + (65660, 698, 1458, 'attending', '2022-06-19 23:10:34', '2025-12-17 19:47:17', '4DnkGqym', '5404786'), + (65661, 698, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4DnkGqym', '5405203'), + (65662, 698, 1466, 'attending', '2022-06-13 21:40:53', '2025-12-17 19:47:17', '4DnkGqym', '5406427'), + (65663, 698, 1476, 'attending', '2022-06-19 16:32:57', '2025-12-17 19:47:17', '4DnkGqym', '5408130'), + (65664, 698, 1478, 'not_attending', '2022-06-24 20:57:53', '2025-12-17 19:47:19', '4DnkGqym', '5408794'), + (65665, 698, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4DnkGqym', '5411699'), + (65666, 698, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4DnkGqym', '5412550'), + (65667, 698, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4DnkGqym', '5415046'), + (65668, 698, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4DnkGqym', '5422086'), + (65669, 698, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4DnkGqym', '5422406'), + (65670, 698, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4DnkGqym', '5424565'), + (65671, 698, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4DnkGqym', '5426882'), + (65672, 698, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4DnkGqym', '5427083'), + (65673, 698, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4DnkGqym', '5441125'), + (65674, 698, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4DnkGqym', '5441126'), + (65675, 698, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4DnkGqym', '5441128'), + (65676, 698, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4DnkGqym', '5446643'), + (65677, 698, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4DnkGqym', '5453325'), + (65678, 698, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4DnkGqym', '5454516'), + (65679, 698, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4DnkGqym', '5454605'), + (65680, 698, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4DnkGqym', '5455037'), + (65681, 698, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4DnkGqym', '5461278'), + (65682, 698, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4DnkGqym', '5469480'), + (65683, 698, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4DnkGqym', '5471073'), + (65684, 698, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '4DnkGqym', '5474663'), + (65685, 698, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4DnkGqym', '5482022'), + (65686, 698, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4DnkGqym', '5482793'), + (65687, 698, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4DnkGqym', '5488912'), + (65688, 698, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4DnkGqym', '5492192'), + (65689, 698, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4DnkGqym', '5493139'), + (65690, 698, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4DnkGqym', '5493200'), + (65691, 698, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4DnkGqym', '5502188'), + (65692, 698, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4DnkGqym', '5512862'), + (65693, 698, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4DnkGqym', '5513985'), + (65694, 698, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DnkGqym', '6045684'), + (65695, 699, 398, 'attending', '2021-01-18 21:46:27', '2025-12-17 19:47:49', 'LmpVLZk4', '3236453'), + (65696, 699, 548, 'attending', '2021-01-17 01:10:12', '2025-12-17 19:47:48', 'LmpVLZk4', '3403650'), + (65697, 699, 555, 'attending', '2021-01-23 04:01:32', '2025-12-17 19:47:49', 'LmpVLZk4', '3416576'), + (65698, 699, 558, 'attending', '2021-01-22 02:56:21', '2025-12-17 19:47:49', 'LmpVLZk4', '3418925'), + (65699, 699, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'LmpVLZk4', '3426074'), + (65700, 699, 568, 'attending', '2021-01-26 20:14:10', '2025-12-17 19:47:50', 'LmpVLZk4', '3430267'), + (65701, 699, 569, 'maybe', '2021-01-26 20:14:05', '2025-12-17 19:47:49', 'LmpVLZk4', '3432673'), + (65702, 699, 576, 'attending', '2021-02-01 21:15:20', '2025-12-17 19:47:50', 'LmpVLZk4', '3438748'), + (65703, 699, 579, 'attending', '2021-02-02 04:59:23', '2025-12-17 19:47:50', 'LmpVLZk4', '3440978'), + (65704, 699, 580, 'maybe', '2021-01-30 00:40:02', '2025-12-17 19:47:50', 'LmpVLZk4', '3444240'), + (65705, 699, 591, 'attending', '2021-02-07 00:46:03', '2025-12-17 19:47:50', 'LmpVLZk4', '3465880'), + (65706, 699, 598, 'attending', '2021-02-09 23:32:16', '2025-12-17 19:47:50', 'LmpVLZk4', '3468003'), + (65707, 699, 600, 'attending', '2021-02-21 18:31:49', '2025-12-17 19:47:50', 'LmpVLZk4', '3468125'), + (65708, 699, 602, 'attending', '2021-02-12 04:58:11', '2025-12-17 19:47:50', 'LmpVLZk4', '3470303'), + (65709, 699, 603, 'attending', '2021-02-19 01:35:11', '2025-12-17 19:47:50', 'LmpVLZk4', '3470304'), + (65710, 699, 604, 'attending', '2021-02-27 07:52:06', '2025-12-17 19:47:50', 'LmpVLZk4', '3470305'), + (65711, 699, 605, 'maybe', '2021-02-14 16:51:57', '2025-12-17 19:47:50', 'LmpVLZk4', '3470991'), + (65712, 699, 607, 'attending', '2021-02-19 01:34:54', '2025-12-17 19:47:50', 'LmpVLZk4', '3471882'), + (65713, 699, 615, 'attending', '2021-02-20 22:12:02', '2025-12-17 19:47:50', 'LmpVLZk4', '3490045'), + (65714, 699, 621, 'attending', '2021-03-06 15:41:06', '2025-12-17 19:47:51', 'LmpVLZk4', '3517815'), + (65715, 699, 622, 'not_attending', '2021-03-09 18:58:35', '2025-12-17 19:47:51', 'LmpVLZk4', '3517816'), + (65716, 699, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'LmpVLZk4', '3523941'), + (65717, 699, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'LmpVLZk4', '3533850'), + (65718, 699, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'LmpVLZk4', '3536632'), + (65719, 699, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'LmpVLZk4', '3536656'), + (65720, 699, 641, 'attending', '2021-04-03 21:53:55', '2025-12-17 19:47:44', 'LmpVLZk4', '3539916'), + (65721, 699, 642, 'attending', '2021-04-10 16:34:23', '2025-12-17 19:47:44', 'LmpVLZk4', '3539917'), + (65722, 699, 643, 'attending', '2021-04-16 01:56:21', '2025-12-17 19:47:45', 'LmpVLZk4', '3539918'), + (65723, 699, 644, 'not_attending', '2021-04-20 10:39:05', '2025-12-17 19:47:46', 'LmpVLZk4', '3539919'), + (65724, 699, 645, 'attending', '2021-05-08 18:46:16', '2025-12-17 19:47:46', 'LmpVLZk4', '3539920'), + (65725, 699, 646, 'not_attending', '2021-05-15 18:57:50', '2025-12-17 19:47:46', 'LmpVLZk4', '3539921'), + (65726, 699, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'LmpVLZk4', '3539922'), + (65727, 699, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'LmpVLZk4', '3539923'), + (65728, 699, 649, 'not_attending', '2021-03-18 21:09:12', '2025-12-17 19:47:51', 'LmpVLZk4', '3539927'), + (65729, 699, 650, 'not_attending', '2021-03-24 11:30:24', '2025-12-17 19:47:44', 'LmpVLZk4', '3539928'), + (65730, 699, 687, 'attending', '2021-03-10 21:29:44', '2025-12-17 19:47:51', 'LmpVLZk4', '3553405'), + (65731, 699, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'LmpVLZk4', '3582734'), + (65732, 699, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'LmpVLZk4', '3583262'), + (65733, 699, 708, 'attending', '2021-03-25 23:27:56', '2025-12-17 19:47:44', 'LmpVLZk4', '3587850'), + (65734, 699, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'LmpVLZk4', '3619523'), + (65735, 699, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'LmpVLZk4', '3661369'), + (65736, 699, 729, 'not_attending', '2021-04-28 17:33:55', '2025-12-17 19:47:46', 'LmpVLZk4', '3668075'), + (65737, 699, 730, 'not_attending', '2021-04-28 17:34:03', '2025-12-17 19:47:46', 'LmpVLZk4', '3668076'), + (65738, 699, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'LmpVLZk4', '3674262'), + (65739, 699, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'LmpVLZk4', '3677402'), + (65740, 699, 766, 'not_attending', '2021-05-12 22:26:07', '2025-12-17 19:47:46', 'LmpVLZk4', '3721383'), + (65741, 699, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'LmpVLZk4', '3730212'), + (65742, 699, 777, 'attending', '2021-04-28 17:34:46', '2025-12-17 19:47:46', 'LmpVLZk4', '3746248'), + (65743, 699, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'LmpVLZk4', '3793156'), + (65744, 699, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'LmpVLZk4', '3974109'), + (65745, 699, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'LmpVLZk4', '3975311'), + (65746, 699, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpVLZk4', '3975312'), + (65747, 699, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpVLZk4', '3994992'), + (65748, 699, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpVLZk4', '4014338'), + (65749, 699, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'LmpVLZk4', '4021848'), + (65750, 699, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpVLZk4', '4136744'), + (65751, 699, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'LmpVLZk4', '4136937'), + (65752, 699, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'LmpVLZk4', '4136938'), + (65753, 699, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpVLZk4', '4136947'), + (65754, 699, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'LmpVLZk4', '4210314'), + (65755, 699, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'LmpVLZk4', '4225444'), + (65756, 699, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'LmpVLZk4', '4239259'), + (65757, 699, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'LmpVLZk4', '4240316'), + (65758, 699, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'LmpVLZk4', '4240317'), + (65759, 699, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'LmpVLZk4', '4240318'), + (65760, 699, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'LmpVLZk4', '4240320'), + (65761, 699, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'LmpVLZk4', '4250163'), + (65762, 699, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'LmpVLZk4', '4275957'), + (65763, 699, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'LmpVLZk4', '4277819'), + (65764, 699, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'LmpVLZk4', '4301723'), + (65765, 699, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'LmpVLZk4', '4302093'), + (65766, 699, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'LmpVLZk4', '4304151'), + (65767, 699, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'LmpVLZk4', '4345519'), + (65768, 699, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'LmpVLZk4', '4356801'), + (65769, 699, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'LmpVLZk4', '4358025'), + (65770, 699, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'LmpVLZk4', '4366186'), + (65771, 699, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'LmpVLZk4', '4366187'), + (65772, 699, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'LmpVLZk4', '4402823'), + (65773, 699, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'LmpVLZk4', '4420735'), + (65774, 699, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'LmpVLZk4', '4420738'), + (65775, 699, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'LmpVLZk4', '4420739'), + (65776, 699, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'LmpVLZk4', '4420741'), + (65777, 699, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'LmpVLZk4', '4420744'), + (65778, 699, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'LmpVLZk4', '4420747'), + (65779, 699, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'LmpVLZk4', '4420748'), + (65780, 699, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'LmpVLZk4', '4420749'), + (65781, 699, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'LmpVLZk4', '4461883'), + (65782, 699, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'LmpVLZk4', '4508342'), + (65783, 699, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'LmpVLZk4', '4568602'), + (65784, 699, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'LmpVLZk4', '4572153'), + (65785, 699, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'LmpVLZk4', '4585962'), + (65786, 699, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'LmpVLZk4', '4596356'), + (65787, 699, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'LmpVLZk4', '4598860'), + (65788, 699, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'LmpVLZk4', '4598861'), + (65789, 699, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'LmpVLZk4', '4602797'), + (65790, 699, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'LmpVLZk4', '4637896'), + (65791, 699, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'LmpVLZk4', '4642994'), + (65792, 699, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'LmpVLZk4', '4642995'), + (65793, 699, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'LmpVLZk4', '4642996'), + (65794, 699, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'LmpVLZk4', '4642997'), + (65795, 699, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'LmpVLZk4', '4645687'), + (65796, 699, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'LmpVLZk4', '4645698'), + (65797, 699, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'LmpVLZk4', '4645704'), + (65798, 699, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'LmpVLZk4', '4645705'), + (65799, 699, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'LmpVLZk4', '4668385'), + (65800, 699, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'LmpVLZk4', '4694407'), + (65801, 699, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpVLZk4', '6045684'), + (65802, 700, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VmMzM3rA', '3517816'), + (65803, 700, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'VmMzM3rA', '3539916'), + (65804, 700, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VmMzM3rA', '3539927'), + (65805, 700, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VmMzM3rA', '3582734'), + (65806, 700, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VmMzM3rA', '3619523'), + (65807, 700, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VmMzM3rA', '3674262'), + (65808, 700, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VmMzM3rA', '3677402'), + (65809, 700, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMzM3rA', '6045684'), + (65810, 701, 1138, 'not_attending', '2021-11-29 22:40:59', '2025-12-17 19:47:37', '4PP5yPl4', '4675407'), + (65811, 701, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4PP5yPl4', '4694407'), + (65812, 701, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4PP5yPl4', '4736497'), + (65813, 701, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4PP5yPl4', '4736500'), + (65814, 701, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4PP5yPl4', '4746789'), + (65815, 701, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4PP5yPl4', '4753929'), + (65816, 701, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PP5yPl4', '6045684'), + (65817, 702, 2276, 'maybe', '2023-10-12 01:05:18', '2025-12-17 19:46:46', 'mM6lNBkA', '6453951'), + (65818, 702, 2299, 'not_attending', '2023-10-16 20:09:03', '2025-12-17 19:46:46', 'mM6lNBkA', '6472181'), + (65819, 702, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mM6lNBkA', '6482693'), + (65820, 702, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mM6lNBkA', '6484200'), + (65821, 702, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mM6lNBkA', '6484680'), + (65822, 702, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mM6lNBkA', '6507741'), + (65823, 702, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mM6lNBkA', '6514659'), + (65824, 702, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mM6lNBkA', '6514660'), + (65825, 702, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mM6lNBkA', '6519103'), + (65826, 702, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mM6lNBkA', '6535681'), + (65827, 702, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mM6lNBkA', '6584747'), + (65828, 702, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mM6lNBkA', '6587097'), + (65829, 702, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mM6lNBkA', '6609022'), + (65830, 702, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mM6lNBkA', '6632757'), + (65831, 702, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mM6lNBkA', '6644187'), + (65832, 702, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mM6lNBkA', '6648951'), + (65833, 702, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mM6lNBkA', '6648952'), + (65834, 702, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mM6lNBkA', '6655401'), + (65835, 702, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mM6lNBkA', '6661585'), + (65836, 702, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mM6lNBkA', '6661588'), + (65837, 702, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mM6lNBkA', '6661589'), + (65838, 702, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mM6lNBkA', '6699906'), + (65839, 702, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mM6lNBkA', '6701109'), + (65840, 702, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mM6lNBkA', '6705219'), + (65841, 702, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mM6lNBkA', '6710153'), + (65842, 702, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mM6lNBkA', '6711552'), + (65843, 702, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mM6lNBkA', '6711553'), + (65844, 703, 1857, 'not_attending', '2023-01-22 14:10:10', '2025-12-17 19:47:05', 'AQ1oVjNA', '5873973'), + (65845, 703, 1863, 'attending', '2023-01-23 20:13:56', '2025-12-17 19:47:06', 'AQ1oVjNA', '5877255'), + (65846, 703, 1865, 'attending', '2023-01-22 14:10:37', '2025-12-17 19:47:06', 'AQ1oVjNA', '5879676'), + (65847, 703, 1866, 'not_attending', '2023-01-22 14:10:17', '2025-12-17 19:47:05', 'AQ1oVjNA', '5880939'), + (65848, 703, 1873, 'not_attending', '2023-01-22 14:09:56', '2025-12-17 19:47:05', 'AQ1oVjNA', '5885295'), + (65849, 703, 1874, 'not_attending', '2023-01-21 23:59:46', '2025-12-17 19:47:05', 'AQ1oVjNA', '5887890'), + (65850, 703, 1875, 'attending', '2023-01-22 14:10:29', '2025-12-17 19:47:06', 'AQ1oVjNA', '5887908'), + (65851, 703, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AQ1oVjNA', '5888598'), + (65852, 703, 1877, 'not_attending', '2023-01-22 14:10:04', '2025-12-17 19:47:05', 'AQ1oVjNA', '5888693'), + (65853, 703, 1879, 'not_attending', '2023-01-28 22:29:38', '2025-12-17 19:47:06', 'AQ1oVjNA', '5893001'), + (65854, 703, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AQ1oVjNA', '5893260'), + (65855, 703, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AQ1oVjNA', '5899826'), + (65856, 703, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901055'), + (65857, 703, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901108'), + (65858, 703, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901126'), + (65859, 703, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'AQ1oVjNA', '5901606'), + (65860, 703, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ1oVjNA', '6045684'), + (65861, 704, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ArrpbPqA', '5630968'), + (65862, 704, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArrpbPqA', '6045684'), + (65863, 705, 646, 'not_attending', '2021-05-13 00:01:49', '2025-12-17 19:47:46', '1ArED5Bm', '3539921'), + (65864, 705, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArED5Bm', '6045684'), + (65865, 706, 1362, 'attending', '2022-04-30 22:42:28', '2025-12-17 19:47:28', 'ArQKkjYm', '5260800'), + (65866, 706, 1369, 'attending', '2022-05-09 03:09:28', '2025-12-17 19:47:28', 'ArQKkjYm', '5262809'), + (65867, 706, 1374, 'attending', '2022-05-02 02:06:49', '2025-12-17 19:47:28', 'ArQKkjYm', '5269930'), + (65868, 706, 1378, 'attending', '2022-05-13 22:47:01', '2025-12-17 19:47:29', 'ArQKkjYm', '5271448'), + (65869, 706, 1379, 'attending', '2022-05-19 23:18:42', '2025-12-17 19:47:29', 'ArQKkjYm', '5271449'), + (65870, 706, 1380, 'not_attending', '2022-05-28 19:28:32', '2025-12-17 19:47:30', 'ArQKkjYm', '5271450'), + (65871, 706, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'ArQKkjYm', '5276469'), + (65872, 706, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'ArQKkjYm', '5278159'), + (65873, 706, 1389, 'attending', '2022-05-08 07:37:15', '2025-12-17 19:47:28', 'ArQKkjYm', '5278202'), + (65874, 706, 1407, 'attending', '2022-06-03 02:46:51', '2025-12-17 19:47:30', 'ArQKkjYm', '5363695'), + (65875, 706, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQKkjYm', '5365960'), + (65876, 706, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQKkjYm', '5368973'), + (65877, 706, 1422, 'attending', '2022-05-26 23:58:42', '2025-12-17 19:47:30', 'ArQKkjYm', '5375603'), + (65878, 706, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'ArQKkjYm', '5378247'), + (65879, 706, 1430, 'attending', '2022-06-07 22:16:50', '2025-12-17 19:47:30', 'ArQKkjYm', '5389402'), + (65880, 706, 1431, 'attending', '2022-06-10 23:17:08', '2025-12-17 19:47:30', 'ArQKkjYm', '5389605'), + (65881, 706, 1442, 'attending', '2022-06-17 18:56:38', '2025-12-17 19:47:17', 'ArQKkjYm', '5397265'), + (65882, 706, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'ArQKkjYm', '5403967'), + (65883, 706, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ArQKkjYm', '5404786'), + (65884, 706, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'ArQKkjYm', '5405203'), + (65885, 706, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ArQKkjYm', '5411699'), + (65886, 706, 1482, 'attending', '2022-06-23 11:16:30', '2025-12-17 19:47:19', 'ArQKkjYm', '5412550'), + (65887, 706, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ArQKkjYm', '5415046'), + (65888, 706, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ArQKkjYm', '5422086'), + (65889, 706, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ArQKkjYm', '5422406'), + (65890, 706, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ArQKkjYm', '5424565'), + (65891, 706, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQKkjYm', '5426882'), + (65892, 706, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ArQKkjYm', '5427083'), + (65893, 706, 1511, 'not_attending', '2022-07-09 20:58:31', '2025-12-17 19:47:19', 'ArQKkjYm', '5437733'), + (65894, 706, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'ArQKkjYm', '5441125'), + (65895, 706, 1514, 'attending', '2022-07-21 21:13:49', '2025-12-17 19:47:20', 'ArQKkjYm', '5441126'), + (65896, 706, 1515, 'attending', '2022-08-05 19:31:08', '2025-12-17 19:47:21', 'ArQKkjYm', '5441128'), + (65897, 706, 1516, 'attending', '2022-08-19 17:41:43', '2025-12-17 19:47:23', 'ArQKkjYm', '5441129'), + (65898, 706, 1517, 'attending', '2022-08-27 01:12:35', '2025-12-17 19:47:23', 'ArQKkjYm', '5441130'), + (65899, 706, 1518, 'maybe', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ArQKkjYm', '5441131'), + (65900, 706, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'ArQKkjYm', '5441132'), + (65901, 706, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQKkjYm', '5446643'), + (65902, 706, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQKkjYm', '5453325'), + (65903, 706, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQKkjYm', '5454516'), + (65904, 706, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQKkjYm', '5454605'), + (65905, 706, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQKkjYm', '5455037'), + (65906, 706, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQKkjYm', '5461278'), + (65907, 706, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQKkjYm', '5469480'), + (65908, 706, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQKkjYm', '5471073'), + (65909, 706, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ArQKkjYm', '5474663'), + (65910, 706, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQKkjYm', '5482022'), + (65911, 706, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQKkjYm', '5482793'), + (65912, 706, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQKkjYm', '5488912'), + (65913, 706, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQKkjYm', '5492192'), + (65914, 706, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQKkjYm', '5493139'), + (65915, 706, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQKkjYm', '5493200'), + (65916, 706, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQKkjYm', '5502188'), + (65917, 706, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ArQKkjYm', '5505059'), + (65918, 706, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ArQKkjYm', '5509055'), + (65919, 706, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ArQKkjYm', '5512862'), + (65920, 706, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ArQKkjYm', '5513985'), + (65921, 706, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ArQKkjYm', '5519981'), + (65922, 706, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ArQKkjYm', '5522550'), + (65923, 706, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ArQKkjYm', '5534683'), + (65924, 706, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'ArQKkjYm', '5537735'), + (65925, 706, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ArQKkjYm', '5540859'), + (65926, 706, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ArQKkjYm', '5546619'), + (65927, 706, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ArQKkjYm', '5555245'), + (65928, 706, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ArQKkjYm', '5557747'), + (65929, 706, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'ArQKkjYm', '5560255'), + (65930, 706, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ArQKkjYm', '5562906'), + (65931, 706, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ArQKkjYm', '5600604'), + (65932, 706, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ArQKkjYm', '5605544'), + (65933, 706, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'ArQKkjYm', '5606737'), + (65934, 706, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ArQKkjYm', '5630960'), + (65935, 706, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ArQKkjYm', '5630961'), + (65936, 706, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ArQKkjYm', '5630962'), + (65937, 706, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ArQKkjYm', '5630966'), + (65938, 706, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ArQKkjYm', '5630967'), + (65939, 706, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ArQKkjYm', '5630968'), + (65940, 706, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ArQKkjYm', '5635406'), + (65941, 706, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ArQKkjYm', '5638765'), + (65942, 706, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ArQKkjYm', '5640097'), + (65943, 706, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ArQKkjYm', '5640843'), + (65944, 706, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ArQKkjYm', '5641521'), + (65945, 706, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ArQKkjYm', '5642818'), + (65946, 706, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ArQKkjYm', '5652395'), + (65947, 706, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ArQKkjYm', '5670445'), + (65948, 706, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ArQKkjYm', '5671637'), + (65949, 706, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ArQKkjYm', '5672329'), + (65950, 706, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ArQKkjYm', '5674057'), + (65951, 706, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ArQKkjYm', '5674060'), + (65952, 706, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ArQKkjYm', '5677461'), + (65953, 706, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ArQKkjYm', '5698046'), + (65954, 706, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ArQKkjYm', '5699760'), + (65955, 706, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ArQKkjYm', '5741601'), + (65956, 706, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ArQKkjYm', '5763458'), + (65957, 706, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ArQKkjYm', '5774172'), + (65958, 706, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'ArQKkjYm', '5818247'), + (65959, 706, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ArQKkjYm', '5819471'), + (65960, 706, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ArQKkjYm', '5827739'), + (65961, 706, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ArQKkjYm', '5844306'), + (65962, 706, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ArQKkjYm', '5850159'), + (65963, 706, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ArQKkjYm', '5858999'), + (65964, 706, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ArQKkjYm', '5871984'), + (65965, 706, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ArQKkjYm', '5876354'), + (65966, 706, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'ArQKkjYm', '5880939'), + (65967, 706, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ArQKkjYm', '5887890'), + (65968, 706, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ArQKkjYm', '5888598'), + (65969, 706, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ArQKkjYm', '5893260'), + (65970, 706, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQKkjYm', '6045684'), + (65971, 707, 1722, 'attending', '2022-10-28 19:12:43', '2025-12-17 19:47:14', 'daDMjbK4', '5630961'), + (65972, 707, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'daDMjbK4', '5630962'), + (65973, 707, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'daDMjbK4', '5630966'), + (65974, 707, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'daDMjbK4', '5630967'), + (65975, 707, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'daDMjbK4', '5630968'), + (65976, 707, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'daDMjbK4', '5642818'), + (65977, 707, 1765, 'maybe', '2022-10-30 16:31:58', '2025-12-17 19:47:14', 'daDMjbK4', '5672329'), + (65978, 707, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'daDMjbK4', '5698046'), + (65979, 707, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'daDMjbK4', '5699760'), + (65980, 707, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'daDMjbK4', '5741601'), + (65981, 707, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'daDMjbK4', '5763458'), + (65982, 707, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'daDMjbK4', '5774172'), + (65983, 707, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daDMjbK4', '6045684'), + (65984, 708, 406, 'attending', '2021-04-01 18:35:57', '2025-12-17 19:47:44', 'lAeXawzm', '3236464'), + (65985, 708, 641, 'attending', '2021-04-02 16:39:24', '2025-12-17 19:47:44', 'lAeXawzm', '3539916'), + (65986, 708, 642, 'attending', '2021-04-09 20:10:31', '2025-12-17 19:47:44', 'lAeXawzm', '3539917'), + (65987, 708, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'lAeXawzm', '3539918'), + (65988, 708, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'lAeXawzm', '3539919'), + (65989, 708, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'lAeXawzm', '3539920'), + (65990, 708, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'lAeXawzm', '3539921'), + (65991, 708, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'lAeXawzm', '3539922'), + (65992, 708, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'lAeXawzm', '3539923'), + (65993, 708, 700, 'attending', '2021-03-28 20:41:11', '2025-12-17 19:47:44', 'lAeXawzm', '3575725'), + (65994, 708, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'lAeXawzm', '3583262'), + (65995, 708, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'lAeXawzm', '3661369'), + (65996, 708, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'lAeXawzm', '3674262'), + (65997, 708, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'lAeXawzm', '3677402'), + (65998, 708, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'lAeXawzm', '3730212'), + (65999, 708, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'lAeXawzm', '3793156'), + (66000, 708, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAeXawzm', '6045684'), + (66001, 709, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mjjMya5m', '6361713'), + (66002, 709, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mjjMya5m', '6394631'), + (66003, 709, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mjjMya5m', '6431478'), + (66004, 709, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mjjMya5m', '6440863'), + (66005, 709, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mjjMya5m', '6445440'), + (66006, 709, 2274, 'not_attending', '2023-10-04 19:10:55', '2025-12-17 19:46:45', 'mjjMya5m', '6448287'), + (66007, 709, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mjjMya5m', '6453951'), + (66008, 709, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mjjMya5m', '6461696'), + (66009, 709, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mjjMya5m', '6462129'), + (66010, 709, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mjjMya5m', '6463218'), + (66011, 709, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mjjMya5m', '6472181'), + (66012, 709, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mjjMya5m', '6482693'), + (66013, 709, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'mjjMya5m', '6484200'), + (66014, 709, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mjjMya5m', '6484680'), + (66015, 709, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mjjMya5m', '6507741'), + (66016, 709, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mjjMya5m', '6514659'), + (66017, 709, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mjjMya5m', '6514660'), + (66018, 709, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mjjMya5m', '6519103'), + (66019, 709, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mjjMya5m', '6535681'), + (66020, 709, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'mjjMya5m', '6545076'), + (66021, 709, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mjjMya5m', '6584747'), + (66022, 709, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mjjMya5m', '6587097'), + (66023, 709, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mjjMya5m', '6609022'), + (66024, 709, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mjjMya5m', '6632757'), + (66025, 709, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mjjMya5m', '6644187'), + (66026, 709, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mjjMya5m', '6648951'), + (66027, 709, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mjjMya5m', '6648952'), + (66028, 709, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'mjjMya5m', '6651141'), + (66029, 709, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mjjMya5m', '6655401'), + (66030, 709, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mjjMya5m', '6661585'), + (66031, 709, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mjjMya5m', '6661588'), + (66032, 709, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mjjMya5m', '6661589'), + (66033, 709, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mjjMya5m', '6699906'), + (66034, 709, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mjjMya5m', '6699913'), + (66035, 709, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mjjMya5m', '6701109'), + (66036, 709, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mjjMya5m', '6705219'), + (66037, 709, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mjjMya5m', '6710153'), + (66038, 709, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mjjMya5m', '6711552'), + (66039, 709, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mjjMya5m', '6711553'), + (66040, 709, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mjjMya5m', '6722688'), + (66041, 709, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mjjMya5m', '6730620'), + (66042, 709, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mjjMya5m', '6730642'), + (66043, 709, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mjjMya5m', '6740364'), + (66044, 709, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mjjMya5m', '6743829'), + (66045, 709, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mjjMya5m', '7030380'), + (66046, 709, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mjjMya5m', '7033677'), + (66047, 709, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mjjMya5m', '7035415'), + (66048, 709, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mjjMya5m', '7044715'), + (66049, 709, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mjjMya5m', '7050318'), + (66050, 709, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mjjMya5m', '7050319'), + (66051, 709, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mjjMya5m', '7050322'), + (66052, 709, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mjjMya5m', '7057804'), + (66053, 709, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mjjMya5m', '7072824'), + (66054, 709, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mjjMya5m', '7074348'), + (66055, 709, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mjjMya5m', '7089267'), + (66056, 709, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mjjMya5m', '7098747'), + (66057, 709, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mjjMya5m', '7113468'), + (66058, 709, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mjjMya5m', '7114856'), + (66059, 709, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mjjMya5m', '7114951'), + (66060, 709, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mjjMya5m', '7114955'), + (66061, 709, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mjjMya5m', '7114956'), + (66062, 709, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mjjMya5m', '7153615'), + (66063, 709, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mjjMya5m', '7159484'), + (66064, 709, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mjjMya5m', '7178446'), + (66065, 710, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Arb2RR8A', '6361710'), + (66066, 710, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Arb2RR8A', '6361711'), + (66067, 710, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Arb2RR8A', '6361713'), + (66068, 710, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Arb2RR8A', '6382573'), + (66069, 710, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Arb2RR8A', '6388604'), + (66070, 710, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Arb2RR8A', '6394629'), + (66071, 710, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Arb2RR8A', '6394631'), + (66072, 710, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'Arb2RR8A', '6431478'), + (66073, 711, 262, 'maybe', '2021-06-29 16:20:10', '2025-12-17 19:47:38', '8dBeWjv4', '3149493'), + (66074, 711, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '8dBeWjv4', '4136937'), + (66075, 711, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '8dBeWjv4', '4136938'), + (66076, 711, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8dBeWjv4', '4225444'), + (66077, 711, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '8dBeWjv4', '4229417'), + (66078, 711, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '8dBeWjv4', '4229418'), + (66079, 711, 895, 'maybe', '2021-07-01 01:08:07', '2025-12-17 19:47:39', '8dBeWjv4', '4229424'), + (66080, 711, 899, 'maybe', '2021-07-03 03:27:11', '2025-12-17 19:47:39', '8dBeWjv4', '4239259'), + (66081, 711, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8dBeWjv4', '4250163'), + (66082, 711, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dBeWjv4', '6045684'), + (66083, 712, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dxO05ND4', '5900202'), + (66084, 712, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dxO05ND4', '5962317'), + (66085, 712, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dxO05ND4', '5962318'), + (66086, 712, 1951, 'maybe', '2023-03-21 00:52:15', '2025-12-17 19:46:57', 'dxO05ND4', '5965933'), + (66087, 712, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'dxO05ND4', '6028191'), + (66088, 712, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dxO05ND4', '6040066'), + (66089, 712, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dxO05ND4', '6042717'), + (66090, 712, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dxO05ND4', '6044838'), + (66091, 712, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dxO05ND4', '6044839'), + (66092, 712, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxO05ND4', '6045684'), + (66093, 712, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'dxO05ND4', '6048955'), + (66094, 712, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dxO05ND4', '6050104'), + (66095, 712, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dxO05ND4', '6053195'), + (66096, 712, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dxO05ND4', '6053198'), + (66097, 712, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dxO05ND4', '6056085'), + (66098, 712, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dxO05ND4', '6056916'), + (66099, 712, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dxO05ND4', '6059290'), + (66100, 712, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dxO05ND4', '6060328'), + (66101, 712, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dxO05ND4', '6061037'), + (66102, 712, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dxO05ND4', '6061039'), + (66103, 712, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dxO05ND4', '6067245'), + (66104, 712, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dxO05ND4', '6068094'), + (66105, 712, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dxO05ND4', '6068252'), + (66106, 712, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dxO05ND4', '6068253'), + (66107, 712, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dxO05ND4', '6068254'), + (66108, 712, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dxO05ND4', '6068280'), + (66109, 712, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dxO05ND4', '6069093'), + (66110, 712, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dxO05ND4', '6072528'), + (66111, 712, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dxO05ND4', '6079840'), + (66112, 712, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dxO05ND4', '6083398'), + (66113, 712, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dxO05ND4', '6093504'), + (66114, 712, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dxO05ND4', '6097414'), + (66115, 712, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dxO05ND4', '6097442'), + (66116, 712, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dxO05ND4', '6097684'), + (66117, 712, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dxO05ND4', '6098762'), + (66118, 712, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dxO05ND4', '6101362'), + (66119, 712, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dxO05ND4', '6107314'), + (66120, 712, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dxO05ND4', '6120034'), + (66121, 712, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxO05ND4', '6337236'), + (66122, 712, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxO05ND4', '6337970'), + (66123, 712, 2156, 'attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'dxO05ND4', '6338308'), + (66124, 712, 2160, 'attending', '2023-07-27 22:31:24', '2025-12-17 19:46:54', 'dxO05ND4', '6338358'), + (66125, 712, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dxO05ND4', '6341710'), + (66126, 712, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxO05ND4', '6342044'), + (66127, 712, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxO05ND4', '6342298'), + (66128, 712, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxO05ND4', '6342591'), + (66129, 712, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dxO05ND4', '6343294'), + (66130, 712, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxO05ND4', '6347034'), + (66131, 712, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxO05ND4', '6347056'), + (66132, 712, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxO05ND4', '6353830'), + (66133, 712, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxO05ND4', '6353831'), + (66134, 712, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxO05ND4', '6357867'), + (66135, 712, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxO05ND4', '6358652'), + (66136, 712, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxO05ND4', '6361709'), + (66137, 712, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxO05ND4', '6361710'), + (66138, 712, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxO05ND4', '6361711'), + (66139, 712, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxO05ND4', '6361712'), + (66140, 712, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxO05ND4', '6361713'), + (66141, 712, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxO05ND4', '6382573'), + (66142, 712, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dxO05ND4', '6388604'), + (66143, 712, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxO05ND4', '6394629'), + (66144, 712, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxO05ND4', '6394631'), + (66145, 712, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxO05ND4', '6431478'), + (66146, 713, 2306, 'maybe', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dNxOQMoA', '6484200'), + (66147, 713, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dNxOQMoA', '6514659'), + (66148, 713, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dNxOQMoA', '6514660'), + (66149, 713, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dNxOQMoA', '6584747'), + (66150, 713, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dNxOQMoA', '6587097'), + (66151, 713, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', 'dNxOQMoA', '6596617'), + (66152, 713, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dNxOQMoA', '6609022'), + (66153, 713, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dNxOQMoA', '6632757'), + (66154, 713, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dNxOQMoA', '6644187'), + (66155, 713, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dNxOQMoA', '6648951'), + (66156, 713, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dNxOQMoA', '6648952'), + (66157, 713, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dNxOQMoA', '6651141'), + (66158, 713, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dNxOQMoA', '6655401'), + (66159, 713, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dNxOQMoA', '6661585'), + (66160, 713, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dNxOQMoA', '6661588'), + (66161, 713, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dNxOQMoA', '6661589'), + (66162, 713, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dNxOQMoA', '6699906'), + (66163, 713, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dNxOQMoA', '6699913'), + (66164, 713, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dNxOQMoA', '6701109'), + (66165, 713, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dNxOQMoA', '6705219'), + (66166, 713, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dNxOQMoA', '6710153'), + (66167, 713, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dNxOQMoA', '6711552'), + (66168, 713, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dNxOQMoA', '6711553'), + (66169, 713, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dNxOQMoA', '6722688'), + (66170, 713, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dNxOQMoA', '6730620'), + (66171, 713, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dNxOQMoA', '6730642'), + (66172, 713, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dNxOQMoA', '6740364'), + (66173, 713, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dNxOQMoA', '6743829'), + (66174, 713, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dNxOQMoA', '7030380'), + (66175, 713, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dNxOQMoA', '7033677'), + (66176, 713, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dNxOQMoA', '7035415'), + (66177, 713, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dNxOQMoA', '7044715'), + (66178, 713, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dNxOQMoA', '7050318'), + (66179, 713, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dNxOQMoA', '7050319'), + (66180, 713, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dNxOQMoA', '7050322'), + (66181, 713, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dNxOQMoA', '7057804'), + (66182, 713, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dNxOQMoA', '7072824'), + (66183, 713, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dNxOQMoA', '7074348'), + (66184, 713, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dNxOQMoA', '7089267'), + (66185, 713, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dNxOQMoA', '7098747'), + (66186, 713, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dNxOQMoA', '7113468'), + (66187, 713, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dNxOQMoA', '7114856'), + (66188, 713, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dNxOQMoA', '7114951'), + (66189, 713, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dNxOQMoA', '7114955'), + (66190, 713, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dNxOQMoA', '7114956'), + (66191, 713, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dNxOQMoA', '7153615'), + (66192, 713, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dNxOQMoA', '7159484'), + (66193, 713, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dNxOQMoA', '7178446'), + (66194, 714, 850, 'attending', '2021-08-21 12:28:57', '2025-12-17 19:47:42', 'AgkZVxrA', '4015722'), + (66195, 714, 852, 'attending', '2021-09-01 17:29:35', '2025-12-17 19:47:43', 'AgkZVxrA', '4015724'), + (66196, 714, 854, 'not_attending', '2021-09-08 22:25:20', '2025-12-17 19:47:43', 'AgkZVxrA', '4015726'), + (66197, 714, 964, 'not_attending', '2021-08-23 22:49:14', '2025-12-17 19:47:42', 'AgkZVxrA', '4353160'), + (66198, 714, 971, 'not_attending', '2021-09-08 22:25:10', '2025-12-17 19:47:43', 'AgkZVxrA', '4356801'), + (66199, 714, 972, 'not_attending', '2021-08-20 19:50:55', '2025-12-17 19:47:42', 'AgkZVxrA', '4358025'), + (66200, 714, 973, 'attending', '2021-08-20 03:13:06', '2025-12-17 19:47:42', 'AgkZVxrA', '4366186'), + (66201, 714, 974, 'attending', '2021-08-24 12:23:34', '2025-12-17 19:47:42', 'AgkZVxrA', '4366187'), + (66202, 714, 976, 'attending', '2021-08-19 21:48:26', '2025-12-17 19:47:42', 'AgkZVxrA', '4373933'), + (66203, 714, 981, 'attending', '2021-08-24 12:24:03', '2025-12-17 19:47:42', 'AgkZVxrA', '4387305'), + (66204, 714, 983, 'attending', '2021-08-20 19:51:19', '2025-12-17 19:47:42', 'AgkZVxrA', '4390051'), + (66205, 714, 985, 'attending', '2021-08-21 18:33:37', '2025-12-17 19:47:42', 'AgkZVxrA', '4391748'), + (66206, 714, 987, 'attending', '2021-09-01 17:29:32', '2025-12-17 19:47:43', 'AgkZVxrA', '4402634'), + (66207, 714, 989, 'not_attending', '2021-09-09 19:54:46', '2025-12-17 19:47:43', 'AgkZVxrA', '4414282'), + (66208, 714, 990, 'attending', '2021-08-28 22:23:10', '2025-12-17 19:47:43', 'AgkZVxrA', '4420735'), + (66209, 714, 991, 'attending', '2021-08-28 22:23:20', '2025-12-17 19:47:43', 'AgkZVxrA', '4420738'), + (66210, 714, 992, 'attending', '2021-09-18 18:13:28', '2025-12-17 19:47:33', 'AgkZVxrA', '4420739'), + (66211, 714, 993, 'attending', '2021-09-23 18:37:25', '2025-12-17 19:47:34', 'AgkZVxrA', '4420741'), + (66212, 714, 994, 'attending', '2021-10-02 02:30:34', '2025-12-17 19:47:34', 'AgkZVxrA', '4420742'), + (66213, 714, 995, 'attending', '2021-10-09 16:13:40', '2025-12-17 19:47:34', 'AgkZVxrA', '4420744'), + (66214, 714, 996, 'attending', '2021-10-15 15:40:50', '2025-12-17 19:47:35', 'AgkZVxrA', '4420747'), + (66215, 714, 997, 'attending', '2021-10-23 15:19:37', '2025-12-17 19:47:35', 'AgkZVxrA', '4420748'), + (66216, 714, 998, 'attending', '2021-10-28 16:26:40', '2025-12-17 19:47:36', 'AgkZVxrA', '4420749'), + (66217, 714, 1000, 'attending', '2021-09-01 17:31:49', '2025-12-17 19:47:43', 'AgkZVxrA', '4424456'), + (66218, 714, 1001, 'not_attending', '2021-09-03 12:17:20', '2025-12-17 19:47:43', 'AgkZVxrA', '4424687'), + (66219, 714, 1014, 'attending', '2021-09-06 20:51:17', '2025-12-17 19:47:43', 'AgkZVxrA', '4439233'), + (66220, 714, 1015, 'attending', '2021-09-03 14:29:40', '2025-12-17 19:47:43', 'AgkZVxrA', '4440800'), + (66221, 714, 1016, 'attending', '2021-09-07 02:22:36', '2025-12-17 19:47:43', 'AgkZVxrA', '4441271'), + (66222, 714, 1017, 'attending', '2021-09-03 18:19:36', '2025-12-17 19:47:43', 'AgkZVxrA', '4441822'), + (66223, 714, 1019, 'attending', '2021-09-15 00:59:41', '2025-12-17 19:47:43', 'AgkZVxrA', '4450515'), + (66224, 714, 1020, 'not_attending', '2021-09-13 21:58:51', '2025-12-17 19:47:43', 'AgkZVxrA', '4451787'), + (66225, 714, 1021, 'attending', '2021-09-07 16:06:22', '2025-12-17 19:47:34', 'AgkZVxrA', '4451803'), + (66226, 714, 1022, 'attending', '2021-09-15 00:59:47', '2025-12-17 19:47:43', 'AgkZVxrA', '4458628'), + (66227, 714, 1023, 'not_attending', '2021-09-13 20:35:05', '2025-12-17 19:47:43', 'AgkZVxrA', '4461883'), + (66228, 714, 1024, 'attending', '2021-09-10 02:16:09', '2025-12-17 19:47:43', 'AgkZVxrA', '4462044'), + (66229, 714, 1025, 'attending', '2021-09-12 16:48:45', '2025-12-17 19:47:43', 'AgkZVxrA', '4462052'), + (66230, 714, 1026, 'attending', '2021-09-12 16:46:36', '2025-12-17 19:47:43', 'AgkZVxrA', '4472951'), + (66231, 714, 1028, 'attending', '2021-09-25 14:35:50', '2025-12-17 19:47:34', 'AgkZVxrA', '4472983'), + (66232, 714, 1029, 'attending', '2021-09-15 00:59:29', '2025-12-17 19:47:43', 'AgkZVxrA', '4473063'), + (66233, 714, 1030, 'attending', '2021-09-14 23:34:24', '2025-12-17 19:47:34', 'AgkZVxrA', '4473064'), + (66234, 714, 1034, 'not_attending', '2021-09-16 12:11:50', '2025-12-17 19:47:43', 'AgkZVxrA', '4486265'), + (66235, 714, 1049, 'attending', '2022-01-22 22:12:22', '2025-12-17 19:47:32', 'AgkZVxrA', '4496614'), + (66236, 714, 1052, 'attending', '2022-01-13 14:48:20', '2025-12-17 19:47:31', 'AgkZVxrA', '4496617'), + (66237, 714, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AgkZVxrA', '4508342'), + (66238, 714, 1072, 'not_attending', '2021-10-06 22:48:22', '2025-12-17 19:47:34', 'AgkZVxrA', '4516287'), + (66239, 714, 1073, 'attending', '2021-09-28 03:44:21', '2025-12-17 19:47:34', 'AgkZVxrA', '4518993'), + (66240, 714, 1074, 'attending', '2021-09-29 21:14:53', '2025-12-17 19:47:34', 'AgkZVxrA', '4528953'), + (66241, 714, 1076, 'attending', '2021-10-08 23:02:21', '2025-12-17 19:47:34', 'AgkZVxrA', '4539147'), + (66242, 714, 1077, 'not_attending', '2021-10-13 14:15:00', '2025-12-17 19:47:34', 'AgkZVxrA', '4540903'), + (66243, 714, 1078, 'attending', '2021-10-06 01:21:40', '2025-12-17 19:47:34', 'AgkZVxrA', '4541281'), + (66244, 714, 1079, 'not_attending', '2021-10-20 20:14:57', '2025-12-17 19:47:35', 'AgkZVxrA', '4563823'), + (66245, 714, 1081, 'not_attending', '2021-10-12 19:58:21', '2025-12-17 19:47:34', 'AgkZVxrA', '4564602'), + (66246, 714, 1082, 'not_attending', '2021-10-15 15:39:56', '2025-12-17 19:47:35', 'AgkZVxrA', '4566762'), + (66247, 714, 1086, 'not_attending', '2021-10-15 15:39:54', '2025-12-17 19:47:35', 'AgkZVxrA', '4568602'), + (66248, 714, 1087, 'not_attending', '2021-10-15 15:40:43', '2025-12-17 19:47:35', 'AgkZVxrA', '4572153'), + (66249, 714, 1089, 'not_attending', '2021-10-18 21:03:17', '2025-12-17 19:47:35', 'AgkZVxrA', '4574712'), + (66250, 714, 1090, 'maybe', '2021-10-16 16:19:53', '2025-12-17 19:47:35', 'AgkZVxrA', '4574713'), + (66251, 714, 1091, 'not_attending', '2021-10-18 21:03:15', '2025-12-17 19:47:35', 'AgkZVxrA', '4575829'), + (66252, 714, 1092, 'attending', '2021-10-21 13:12:09', '2025-12-17 19:47:35', 'AgkZVxrA', '4582837'), + (66253, 714, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'AgkZVxrA', '4585962'), + (66254, 714, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'AgkZVxrA', '4596356'), + (66255, 714, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'AgkZVxrA', '4598860'), + (66256, 714, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'AgkZVxrA', '4598861'), + (66257, 714, 1099, 'not_attending', '2021-11-06 15:06:33', '2025-12-17 19:47:36', 'AgkZVxrA', '4602797'), + (66258, 714, 1105, 'attending', '2021-11-10 23:36:32', '2025-12-17 19:47:36', 'AgkZVxrA', '4618567'), + (66259, 714, 1109, 'attending', '2021-11-13 20:14:16', '2025-12-17 19:47:37', 'AgkZVxrA', '4635221'), + (66260, 714, 1111, 'attending', '2021-11-21 00:25:12', '2025-12-17 19:47:31', 'AgkZVxrA', '4635279'), + (66261, 714, 1112, 'attending', '2021-11-24 15:04:17', '2025-12-17 19:47:37', 'AgkZVxrA', '4635420'), + (66262, 714, 1114, 'not_attending', '2021-11-13 21:21:39', '2025-12-17 19:47:36', 'AgkZVxrA', '4637896'), + (66263, 714, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'AgkZVxrA', '4642994'), + (66264, 714, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'AgkZVxrA', '4642995'), + (66265, 714, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'AgkZVxrA', '4642996'), + (66266, 714, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'AgkZVxrA', '4642997'), + (66267, 714, 1126, 'attending', '2021-12-08 14:56:26', '2025-12-17 19:47:38', 'AgkZVxrA', '4645687'), + (66268, 714, 1127, 'attending', '2021-11-30 16:03:22', '2025-12-17 19:47:38', 'AgkZVxrA', '4645698'), + (66269, 714, 1128, 'attending', '2021-11-20 18:47:10', '2025-12-17 19:47:37', 'AgkZVxrA', '4645704'), + (66270, 714, 1129, 'attending', '2021-11-27 23:29:37', '2025-12-17 19:47:37', 'AgkZVxrA', '4645705'), + (66271, 714, 1130, 'attending', '2021-12-04 17:12:41', '2025-12-17 19:47:37', 'AgkZVxrA', '4658824'), + (66272, 714, 1131, 'attending', '2021-12-16 18:45:22', '2025-12-17 19:47:31', 'AgkZVxrA', '4658825'), + (66273, 714, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AgkZVxrA', '4668385'), + (66274, 714, 1136, 'attending', '2021-11-26 01:17:42', '2025-12-17 19:47:37', 'AgkZVxrA', '4670473'), + (66275, 714, 1145, 'not_attending', '2021-12-10 01:05:55', '2025-12-17 19:47:38', 'AgkZVxrA', '4691157'), + (66276, 714, 1146, 'not_attending', '2021-12-10 22:57:25', '2025-12-17 19:47:38', 'AgkZVxrA', '4692841'), + (66277, 714, 1149, 'attending', '2021-12-08 14:53:53', '2025-12-17 19:47:38', 'AgkZVxrA', '4694407'), + (66278, 714, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'AgkZVxrA', '4706262'), + (66279, 714, 1153, 'not_attending', '2022-01-19 23:14:46', '2025-12-17 19:47:32', 'AgkZVxrA', '4708707'), + (66280, 714, 1163, 'maybe', '2022-01-02 07:08:36', '2025-12-17 19:47:31', 'AgkZVxrA', '4724206'), + (66281, 714, 1166, 'attending', '2022-01-11 01:12:48', '2025-12-17 19:47:31', 'AgkZVxrA', '4725109'), + (66282, 714, 1172, 'attending', '2022-01-11 01:18:27', '2025-12-17 19:47:32', 'AgkZVxrA', '4735348'), + (66283, 714, 1173, 'attending', '2022-01-04 19:09:22', '2025-12-17 19:47:31', 'AgkZVxrA', '4736495'), + (66284, 714, 1174, 'attending', '2022-01-13 14:48:25', '2025-12-17 19:47:31', 'AgkZVxrA', '4736496'), + (66285, 714, 1175, 'attending', '2022-01-11 01:18:35', '2025-12-17 19:47:32', 'AgkZVxrA', '4736497'), + (66286, 714, 1176, 'attending', '2022-02-03 02:41:19', '2025-12-17 19:47:32', 'AgkZVxrA', '4736498'), + (66287, 714, 1177, 'attending', '2022-02-11 19:49:08', '2025-12-17 19:47:32', 'AgkZVxrA', '4736499'), + (66288, 714, 1178, 'attending', '2022-01-27 01:01:30', '2025-12-17 19:47:32', 'AgkZVxrA', '4736500'), + (66289, 714, 1179, 'not_attending', '2022-02-19 17:54:05', '2025-12-17 19:47:32', 'AgkZVxrA', '4736501'), + (66290, 714, 1180, 'attending', '2022-02-26 23:29:50', '2025-12-17 19:47:33', 'AgkZVxrA', '4736502'), + (66291, 714, 1181, 'attending', '2022-03-05 22:49:03', '2025-12-17 19:47:33', 'AgkZVxrA', '4736503'), + (66292, 714, 1182, 'not_attending', '2022-03-11 20:32:00', '2025-12-17 19:47:33', 'AgkZVxrA', '4736504'), + (66293, 714, 1185, 'attending', '2022-01-15 02:25:24', '2025-12-17 19:47:31', 'AgkZVxrA', '4746789'), + (66294, 714, 1186, 'attending', '2022-01-13 14:48:15', '2025-12-17 19:47:31', 'AgkZVxrA', '4747800'), + (66295, 714, 1187, 'attending', '2022-01-11 22:56:22', '2025-12-17 19:47:31', 'AgkZVxrA', '4753907'), + (66296, 714, 1188, 'attending', '2022-01-11 22:56:00', '2025-12-17 19:47:31', 'AgkZVxrA', '4753929'), + (66297, 714, 1190, 'not_attending', '2022-01-13 14:47:09', '2025-12-17 19:47:31', 'AgkZVxrA', '4757377'), + (66298, 714, 1196, 'attending', '2022-01-21 15:08:56', '2025-12-17 19:47:32', 'AgkZVxrA', '4765583'), + (66299, 714, 1210, 'attending', '2022-01-24 00:26:22', '2025-12-17 19:47:32', 'AgkZVxrA', '4776927'), + (66300, 714, 1211, 'not_attending', '2022-01-28 23:08:09', '2025-12-17 19:47:32', 'AgkZVxrA', '4780754'), + (66301, 714, 1213, 'attending', '2022-02-08 18:52:26', '2025-12-17 19:47:32', 'AgkZVxrA', '4780760'), + (66302, 714, 1222, 'attending', '2022-02-17 00:28:55', '2025-12-17 19:47:32', 'AgkZVxrA', '5015628'), + (66303, 714, 1225, 'attending', '2022-02-03 02:41:14', '2025-12-17 19:47:32', 'AgkZVxrA', '5019063'), + (66304, 714, 1229, 'attending', '2022-02-19 00:38:17', '2025-12-17 19:47:32', 'AgkZVxrA', '5034963'), + (66305, 714, 1232, 'attending', '2022-02-09 14:43:25', '2025-12-17 19:47:32', 'AgkZVxrA', '5038850'), + (66306, 714, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AgkZVxrA', '5045826'), + (66307, 714, 1239, 'attending', '2022-03-02 19:08:01', '2025-12-17 19:47:33', 'AgkZVxrA', '5052238'), + (66308, 714, 1244, 'attending', '2022-02-25 23:20:31', '2025-12-17 19:47:33', 'AgkZVxrA', '5060490'), + (66309, 714, 1245, 'maybe', '2022-03-02 19:08:17', '2025-12-17 19:47:33', 'AgkZVxrA', '5061301'), + (66310, 714, 1259, 'attending', '2022-03-11 20:32:39', '2025-12-17 19:47:33', 'AgkZVxrA', '5132533'), + (66311, 714, 1272, 'attending', '2022-03-17 00:12:08', '2025-12-17 19:47:25', 'AgkZVxrA', '5186582'), + (66312, 714, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'AgkZVxrA', '5186583'), + (66313, 714, 1274, 'attending', '2022-04-02 14:13:04', '2025-12-17 19:47:26', 'AgkZVxrA', '5186585'), + (66314, 714, 1277, 'not_attending', '2022-03-17 00:11:47', '2025-12-17 19:47:25', 'AgkZVxrA', '5186865'), + (66315, 714, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'AgkZVxrA', '5190437'), + (66316, 714, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgkZVxrA', '5195095'), + (66317, 714, 1297, 'attending', '2022-04-02 14:13:17', '2025-12-17 19:47:25', 'AgkZVxrA', '5215989'), + (66318, 714, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgkZVxrA', '5223686'), + (66319, 714, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgkZVxrA', '5227432'), + (66320, 714, 1311, 'not_attending', '2022-04-08 02:44:27', '2025-12-17 19:47:27', 'AgkZVxrA', '5231430'), + (66321, 714, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'AgkZVxrA', '5231461'), + (66322, 714, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgkZVxrA', '5247467'), + (66323, 714, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', 'AgkZVxrA', '5249631'), + (66324, 714, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgkZVxrA', '5260800'), + (66325, 714, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgkZVxrA', '5269930'), + (66326, 714, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgkZVxrA', '5271448'), + (66327, 714, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'AgkZVxrA', '5271449'), + (66328, 714, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgkZVxrA', '5276469'), + (66329, 714, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgkZVxrA', '5278159'), + (66330, 714, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AgkZVxrA', '5363695'), + (66331, 714, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AgkZVxrA', '5365960'), + (66332, 714, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AgkZVxrA', '5368973'), + (66333, 714, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AgkZVxrA', '5378247'), + (66334, 714, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'AgkZVxrA', '5389605'), + (66335, 714, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AgkZVxrA', '5397265'), + (66336, 714, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AgkZVxrA', '5403967'), + (66337, 714, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgkZVxrA', '5404786'), + (66338, 714, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgkZVxrA', '5405203'), + (66339, 714, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AgkZVxrA', '5411699'), + (66340, 714, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AgkZVxrA', '5412550'), + (66341, 714, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AgkZVxrA', '5415046'), + (66342, 714, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgkZVxrA', '5422086'), + (66343, 714, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgkZVxrA', '5422406'), + (66344, 714, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgkZVxrA', '5424565'), + (66345, 714, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgkZVxrA', '5426882'), + (66346, 714, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgkZVxrA', '5427083'), + (66347, 714, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AgkZVxrA', '5441125'), + (66348, 714, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AgkZVxrA', '5441126'), + (66349, 714, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AgkZVxrA', '5441128'), + (66350, 714, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AgkZVxrA', '5441131'), + (66351, 714, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AgkZVxrA', '5441132'), + (66352, 714, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgkZVxrA', '5446643'), + (66353, 714, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgkZVxrA', '5453325'), + (66354, 714, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgkZVxrA', '5454516'), + (66355, 714, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgkZVxrA', '5454605'), + (66356, 714, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgkZVxrA', '5455037'), + (66357, 714, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgkZVxrA', '5461278'), + (66358, 714, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgkZVxrA', '5469480'), + (66359, 714, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgkZVxrA', '5471073'), + (66360, 714, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AgkZVxrA', '5474663'), + (66361, 714, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgkZVxrA', '5482022'), + (66362, 714, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgkZVxrA', '5482793'), + (66363, 714, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgkZVxrA', '5488912'), + (66364, 714, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgkZVxrA', '5492192'), + (66365, 714, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgkZVxrA', '5493139'), + (66366, 714, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgkZVxrA', '5493200'), + (66367, 714, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgkZVxrA', '5502188'), + (66368, 714, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AgkZVxrA', '5505059'), + (66369, 714, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AgkZVxrA', '5509055'), + (66370, 714, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgkZVxrA', '5512862'), + (66371, 714, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgkZVxrA', '5513985'), + (66372, 714, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'AgkZVxrA', '5519981'), + (66373, 714, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AgkZVxrA', '5522550'), + (66374, 714, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AgkZVxrA', '5534683'), + (66375, 714, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'AgkZVxrA', '5537735'), + (66376, 714, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AgkZVxrA', '5540859'), + (66377, 714, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AgkZVxrA', '5546619'), + (66378, 714, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AgkZVxrA', '5555245'), + (66379, 714, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AgkZVxrA', '5557747'), + (66380, 714, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AgkZVxrA', '5560255'), + (66381, 714, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AgkZVxrA', '5562906'), + (66382, 714, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AgkZVxrA', '5600604'), + (66383, 714, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AgkZVxrA', '5605544'), + (66384, 714, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'AgkZVxrA', '5606737'), + (66385, 714, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AgkZVxrA', '5635406'), + (66386, 714, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AgkZVxrA', '5638765'), + (66387, 714, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AgkZVxrA', '5640843'), + (66388, 714, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AgkZVxrA', '5641521'), + (66389, 714, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AgkZVxrA', '5652395'), + (66390, 714, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AgkZVxrA', '6045684'), + (66391, 715, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mR09Xw54', '5880943'), + (66392, 715, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mR09Xw54', '5900202'), + (66393, 715, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mR09Xw54', '5900203'), + (66394, 715, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'mR09Xw54', '5910528'), + (66395, 715, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'mR09Xw54', '5962317'), + (66396, 715, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'mR09Xw54', '5962318'), + (66397, 715, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mR09Xw54', '5965933'), + (66398, 715, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mR09Xw54', '5972815'), + (66399, 715, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mR09Xw54', '5974016'), + (66400, 715, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mR09Xw54', '5981515'), + (66401, 715, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mR09Xw54', '5993516'), + (66402, 715, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mR09Xw54', '5998939'), + (66403, 715, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mR09Xw54', '6028191'), + (66404, 715, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mR09Xw54', '6040066'), + (66405, 715, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mR09Xw54', '6042717'), + (66406, 715, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mR09Xw54', '6044838'), + (66407, 715, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mR09Xw54', '6044839'), + (66408, 715, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR09Xw54', '6045684'), + (66409, 715, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'mR09Xw54', '6048955'), + (66410, 715, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mR09Xw54', '6050104'), + (66411, 715, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mR09Xw54', '6053195'), + (66412, 715, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mR09Xw54', '6053198'), + (66413, 715, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mR09Xw54', '6056085'), + (66414, 715, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mR09Xw54', '6056916'), + (66415, 715, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mR09Xw54', '6059290'), + (66416, 715, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mR09Xw54', '6060328'), + (66417, 715, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mR09Xw54', '6061037'), + (66418, 715, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mR09Xw54', '6061039'), + (66419, 715, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mR09Xw54', '6067245'), + (66420, 715, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mR09Xw54', '6068094'), + (66421, 715, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mR09Xw54', '6068252'), + (66422, 715, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mR09Xw54', '6068253'), + (66423, 715, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mR09Xw54', '6068254'), + (66424, 715, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mR09Xw54', '6068280'), + (66425, 715, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mR09Xw54', '6069093'), + (66426, 715, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mR09Xw54', '6072528'), + (66427, 715, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mR09Xw54', '6079840'), + (66428, 715, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mR09Xw54', '6083398'), + (66429, 715, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mR09Xw54', '6093504'), + (66430, 715, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mR09Xw54', '6097414'), + (66431, 715, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mR09Xw54', '6097442'), + (66432, 715, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mR09Xw54', '6097684'), + (66433, 715, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mR09Xw54', '6098762'), + (66434, 715, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mR09Xw54', '6101362'), + (66435, 715, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mR09Xw54', '6107314'), + (66436, 715, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mR09Xw54', '6120034'), + (66437, 716, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd2jYaY9d', '5441128'), + (66438, 716, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd2jYaY9d', '5441131'), + (66439, 716, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd2jYaY9d', '5441132'), + (66440, 716, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd2jYaY9d', '5461278'), + (66441, 716, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd2jYaY9d', '5469480'), + (66442, 716, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd2jYaY9d', '5471073'), + (66443, 716, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'd2jYaY9d', '5474663'), + (66444, 716, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd2jYaY9d', '5482022'), + (66445, 716, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd2jYaY9d', '5482793'), + (66446, 716, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd2jYaY9d', '5488912'), + (66447, 716, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd2jYaY9d', '5492192'), + (66448, 716, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd2jYaY9d', '5493139'), + (66449, 716, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd2jYaY9d', '5493200'), + (66450, 716, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd2jYaY9d', '5502188'), + (66451, 716, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd2jYaY9d', '5505059'), + (66452, 716, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd2jYaY9d', '5509055'), + (66453, 716, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd2jYaY9d', '5512862'), + (66454, 716, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd2jYaY9d', '5513985'), + (66455, 716, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd2jYaY9d', '5519981'), + (66456, 716, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd2jYaY9d', '5522550'), + (66457, 716, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd2jYaY9d', '5534683'), + (66458, 716, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd2jYaY9d', '5537735'), + (66459, 716, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd2jYaY9d', '5540859'), + (66460, 716, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd2jYaY9d', '5546619'), + (66461, 716, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd2jYaY9d', '5555245'), + (66462, 716, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd2jYaY9d', '5557747'), + (66463, 716, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd2jYaY9d', '5560255'), + (66464, 716, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd2jYaY9d', '5562906'), + (66465, 716, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd2jYaY9d', '5600604'), + (66466, 716, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd2jYaY9d', '5605544'), + (66467, 716, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'd2jYaY9d', '5606737'), + (66468, 716, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd2jYaY9d', '5635406'), + (66469, 716, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd2jYaY9d', '5638765'), + (66470, 716, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd2jYaY9d', '5640843'), + (66471, 716, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2jYaY9d', '6045684'), + (66472, 717, 857, 'maybe', '2021-11-24 04:52:28', '2025-12-17 19:47:37', '4E5P7kX4', '4015731'), + (66473, 717, 1056, 'maybe', '2022-01-08 15:19:35', '2025-12-17 19:47:31', '4E5P7kX4', '4496622'), + (66474, 717, 1099, 'attending', '2021-11-06 15:39:02', '2025-12-17 19:47:36', '4E5P7kX4', '4602797'), + (66475, 717, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4E5P7kX4', '4637896'), + (66476, 717, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4E5P7kX4', '4642994'), + (66477, 717, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4E5P7kX4', '4642995'), + (66478, 717, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4E5P7kX4', '4642996'), + (66479, 717, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4E5P7kX4', '4642997'), + (66480, 717, 1122, 'maybe', '2021-11-24 04:53:30', '2025-12-17 19:47:37', '4E5P7kX4', '4644023'), + (66481, 717, 1126, 'attending', '2021-12-11 17:13:31', '2025-12-17 19:47:38', '4E5P7kX4', '4645687'), + (66482, 717, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4E5P7kX4', '4645698'), + (66483, 717, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4E5P7kX4', '4645704'), + (66484, 717, 1129, 'maybe', '2021-11-27 17:39:36', '2025-12-17 19:47:37', '4E5P7kX4', '4645705'), + (66485, 717, 1130, 'attending', '2021-12-04 22:36:20', '2025-12-17 19:47:37', '4E5P7kX4', '4658824'), + (66486, 717, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4E5P7kX4', '4668385'), + (66487, 717, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4E5P7kX4', '4694407'), + (66488, 717, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '4E5P7kX4', '4706262'), + (66489, 717, 1163, 'attending', '2022-01-08 15:19:41', '2025-12-17 19:47:31', '4E5P7kX4', '4724206'), + (66490, 717, 1165, 'attending', '2022-01-04 02:30:17', '2025-12-17 19:47:31', '4E5P7kX4', '4724210'), + (66491, 717, 1174, 'attending', '2022-01-15 19:45:21', '2025-12-17 19:47:31', '4E5P7kX4', '4736496'), + (66492, 717, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4E5P7kX4', '4736497'), + (66493, 717, 1177, 'attending', '2022-02-12 23:03:00', '2025-12-17 19:47:32', '4E5P7kX4', '4736499'), + (66494, 717, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4E5P7kX4', '4736500'), + (66495, 717, 1179, 'attending', '2022-02-19 20:04:42', '2025-12-17 19:47:32', '4E5P7kX4', '4736501'), + (66496, 717, 1180, 'attending', '2022-02-26 22:38:41', '2025-12-17 19:47:33', '4E5P7kX4', '4736502'), + (66497, 717, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4E5P7kX4', '4736503'), + (66498, 717, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4E5P7kX4', '4736504'), + (66499, 717, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4E5P7kX4', '4746789'), + (66500, 717, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4E5P7kX4', '4753929'), + (66501, 717, 1222, 'attending', '2022-02-16 21:51:55', '2025-12-17 19:47:32', '4E5P7kX4', '5015628'), + (66502, 717, 1232, 'attending', '2022-02-09 03:50:23', '2025-12-17 19:47:32', '4E5P7kX4', '5038850'), + (66503, 717, 1236, 'attending', '2022-02-17 22:14:02', '2025-12-17 19:47:32', '4E5P7kX4', '5045826'), + (66504, 717, 1238, 'attending', '2022-02-24 00:28:39', '2025-12-17 19:47:32', '4E5P7kX4', '5052236'), + (66505, 717, 1240, 'attending', '2022-03-16 21:10:03', '2025-12-17 19:47:33', '4E5P7kX4', '5052239'), + (66506, 717, 1242, 'attending', '2022-03-30 22:14:42', '2025-12-17 19:47:25', '4E5P7kX4', '5052241'), + (66507, 717, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4E5P7kX4', '5132533'), + (66508, 717, 1272, 'attending', '2022-03-26 20:53:25', '2025-12-17 19:47:25', '4E5P7kX4', '5186582'), + (66509, 717, 1273, 'attending', '2022-03-26 22:02:05', '2025-12-17 19:47:25', '4E5P7kX4', '5186583'), + (66510, 717, 1274, 'attending', '2022-04-02 15:33:31', '2025-12-17 19:47:26', '4E5P7kX4', '5186585'), + (66511, 717, 1276, 'attending', '2022-03-27 22:45:37', '2025-12-17 19:47:25', '4E5P7kX4', '5186820'), + (66512, 717, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4E5P7kX4', '5190437'), + (66513, 717, 1284, 'attending', '2022-04-16 15:24:55', '2025-12-17 19:47:27', '4E5P7kX4', '5195095'), + (66514, 717, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4E5P7kX4', '5215989'), + (66515, 717, 1304, 'maybe', '2022-04-06 21:49:39', '2025-12-17 19:47:26', '4E5P7kX4', '5223468'), + (66516, 717, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4E5P7kX4', '5223686'), + (66517, 717, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4E5P7kX4', '5227432'), + (66518, 717, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4E5P7kX4', '5247467'), + (66519, 717, 1360, 'attending', '2022-04-26 23:24:40', '2025-12-17 19:47:27', '4E5P7kX4', '5260197'), + (66520, 717, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4E5P7kX4', '5260800'), + (66521, 717, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4E5P7kX4', '5269930'), + (66522, 717, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4E5P7kX4', '5271448'), + (66523, 717, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4E5P7kX4', '5271449'), + (66524, 717, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4E5P7kX4', '5276469'), + (66525, 717, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', '4E5P7kX4', '5277078'), + (66526, 717, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4E5P7kX4', '5278159'), + (66527, 717, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4E5P7kX4', '5363695'), + (66528, 717, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4E5P7kX4', '5365960'), + (66529, 717, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4E5P7kX4', '5368973'), + (66530, 717, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4E5P7kX4', '5378247'), + (66531, 717, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4E5P7kX4', '5389605'), + (66532, 717, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4E5P7kX4', '5397265'), + (66533, 717, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4E5P7kX4', '5403967'), + (66534, 717, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4E5P7kX4', '5404786'), + (66535, 717, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4E5P7kX4', '5405203'), + (66536, 717, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4E5P7kX4', '5411699'), + (66537, 717, 1482, 'attending', '2022-06-25 22:25:04', '2025-12-17 19:47:19', '4E5P7kX4', '5412550'), + (66538, 717, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4E5P7kX4', '5415046'), + (66539, 717, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4E5P7kX4', '5422086'), + (66540, 717, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4E5P7kX4', '5422406'), + (66541, 717, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4E5P7kX4', '5424565'), + (66542, 717, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4E5P7kX4', '5426882'), + (66543, 717, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4E5P7kX4', '5427083'), + (66544, 717, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4E5P7kX4', '5441125'), + (66545, 717, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4E5P7kX4', '5441126'), + (66546, 717, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4E5P7kX4', '5441128'), + (66547, 717, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4E5P7kX4', '5446643'), + (66548, 717, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4E5P7kX4', '5453325'), + (66549, 717, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4E5P7kX4', '5454516'), + (66550, 717, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4E5P7kX4', '5454605'), + (66551, 717, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4E5P7kX4', '5455037'), + (66552, 717, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4E5P7kX4', '5461278'), + (66553, 717, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4E5P7kX4', '5469480'), + (66554, 717, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4E5P7kX4', '5471073'), + (66555, 717, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4E5P7kX4', '5474663'), + (66556, 717, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4E5P7kX4', '5482022'), + (66557, 717, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4E5P7kX4', '5482793'), + (66558, 717, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4E5P7kX4', '5488912'), + (66559, 717, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4E5P7kX4', '5492192'), + (66560, 717, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4E5P7kX4', '5493139'), + (66561, 717, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4E5P7kX4', '5493200'), + (66562, 717, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4E5P7kX4', '5502188'), + (66563, 717, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4E5P7kX4', '5512862'), + (66564, 717, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4E5P7kX4', '5513985'), + (66565, 717, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4E5P7kX4', '6045684'), + (66566, 718, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'myx78L1d', '5186582'), + (66567, 718, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'myx78L1d', '5186583'), + (66568, 718, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'myx78L1d', '5186585'), + (66569, 718, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'myx78L1d', '5190437'), + (66570, 718, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'myx78L1d', '5195095'), + (66571, 718, 1285, 'not_attending', '2022-03-21 15:41:48', '2025-12-17 19:47:25', 'myx78L1d', '5196763'), + (66572, 718, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'myx78L1d', '5199460'), + (66573, 718, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'myx78L1d', '5215989'), + (66574, 718, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'myx78L1d', '5223686'), + (66575, 718, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'myx78L1d', '5227432'), + (66576, 718, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'myx78L1d', '5247467'), + (66577, 718, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'myx78L1d', '5260800'), + (66578, 718, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'myx78L1d', '5269930'), + (66579, 718, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'myx78L1d', '5271448'), + (66580, 718, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'myx78L1d', '5271449'), + (66581, 718, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'myx78L1d', '5276469'), + (66582, 718, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'myx78L1d', '5278159'), + (66583, 718, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'myx78L1d', '5363695'), + (66584, 718, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'myx78L1d', '5365960'), + (66585, 718, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'myx78L1d', '5368973'), + (66586, 718, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'myx78L1d', '5378247'), + (66587, 718, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'myx78L1d', '5389605'), + (66588, 718, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'myx78L1d', '5397265'), + (66589, 718, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myx78L1d', '6045684'), + (66590, 719, 507, 'attending', '2020-12-20 21:39:01', '2025-12-17 19:47:48', 'O4ZrXoe4', '3324148'), + (66591, 719, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'O4ZrXoe4', '3351539'), + (66592, 719, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'O4ZrXoe4', '3386848'), + (66593, 719, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'O4ZrXoe4', '3389527'), + (66594, 719, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'O4ZrXoe4', '3396499'), + (66595, 719, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'O4ZrXoe4', '3403650'), + (66596, 719, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'O4ZrXoe4', '3406988'), + (66597, 719, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'O4ZrXoe4', '3416576'), + (66598, 719, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'O4ZrXoe4', '3430267'), + (66599, 719, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4ZrXoe4', '6045684'), + (66600, 720, 3014, 'attending', '2025-04-05 03:45:47', '2025-12-17 19:46:20', '41qKwzE4', '7869185'), + (66601, 720, 3016, 'attending', '2025-04-18 14:21:31', '2025-12-17 19:46:20', '41qKwzE4', '7869187'), + (66602, 720, 3067, 'attending', '2025-03-31 00:17:04', '2025-12-17 19:46:19', '41qKwzE4', '7894745'), + (66603, 720, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', '41qKwzE4', '7897784'), + (66604, 720, 3075, 'attending', '2025-04-11 15:07:52', '2025-12-17 19:46:20', '41qKwzE4', '7898896'), + (66605, 720, 3076, 'attending', '2025-04-06 16:40:53', '2025-12-17 19:46:20', '41qKwzE4', '7899007'), + (66606, 720, 3078, 'attending', '2025-04-06 02:48:45', '2025-12-17 19:46:20', '41qKwzE4', '7901213'), + (66607, 720, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '41qKwzE4', '7904777'), + (66608, 720, 3090, 'attending', '2025-04-17 19:37:58', '2025-12-17 19:46:20', '41qKwzE4', '7914315'), + (66609, 720, 3094, 'attending', '2025-04-26 03:36:31', '2025-12-17 19:46:21', '41qKwzE4', '8342292'), + (66610, 720, 3095, 'attending', '2025-05-03 17:38:13', '2025-12-17 19:46:20', '41qKwzE4', '8342293'), + (66611, 720, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '41qKwzE4', '8349164'), + (66612, 720, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '41qKwzE4', '8349545'), + (66613, 720, 3106, 'maybe', '2025-04-29 01:06:01', '2025-12-17 19:46:20', '41qKwzE4', '8349552'), + (66614, 720, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '41qKwzE4', '8353584'), + (66615, 720, 3121, 'maybe', '2025-05-10 14:44:56', '2025-12-17 19:46:21', '41qKwzE4', '8362730'), + (66616, 720, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '41qKwzE4', '8368028'), + (66617, 720, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '41qKwzE4', '8368029'), + (66618, 720, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '41qKwzE4', '8388462'), + (66619, 720, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '41qKwzE4', '8400273'), + (66620, 720, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '41qKwzE4', '8400274'), + (66621, 720, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '41qKwzE4', '8400275'), + (66622, 720, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '41qKwzE4', '8400276'), + (66623, 720, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '41qKwzE4', '8404977'), + (66624, 720, 3175, 'not_attending', '2025-06-14 21:06:28', '2025-12-17 19:46:15', '41qKwzE4', '8410815'), + (66625, 720, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', '41qKwzE4', '8430783'), + (66626, 720, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '41qKwzE4', '8430784'), + (66627, 720, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '41qKwzE4', '8430799'), + (66628, 720, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '41qKwzE4', '8430800'), + (66629, 720, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '41qKwzE4', '8430801'), + (66630, 720, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '41qKwzE4', '8438709'), + (66631, 720, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '41qKwzE4', '8457738'), + (66632, 720, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '41qKwzE4', '8459566'), + (66633, 720, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '41qKwzE4', '8459567'), + (66634, 720, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '41qKwzE4', '8461032'), + (66635, 720, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '41qKwzE4', '8477877'), + (66636, 720, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '41qKwzE4', '8485688'), + (66637, 721, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd3R9xke4', '4736497'), + (66638, 721, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd3R9xke4', '4736499'), + (66639, 721, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'd3R9xke4', '4736500'), + (66640, 721, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd3R9xke4', '4736503'), + (66641, 721, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd3R9xke4', '4736504'), + (66642, 721, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'd3R9xke4', '4746789'), + (66643, 721, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'd3R9xke4', '4753929'), + (66644, 721, 1213, 'attending', '2022-02-06 22:59:56', '2025-12-17 19:47:32', 'd3R9xke4', '4780760'), + (66645, 721, 1214, 'attending', '2022-02-09 13:37:00', '2025-12-17 19:47:32', 'd3R9xke4', '4780761'), + (66646, 721, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd3R9xke4', '5038850'), + (66647, 721, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd3R9xke4', '5045826'), + (66648, 721, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd3R9xke4', '5132533'), + (66649, 721, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3R9xke4', '6045684'), + (66650, 722, 2491, 'attending', '2024-03-07 05:49:17', '2025-12-17 19:46:44', 'myxqLX0d', '7050319'), + (66651, 722, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'myxqLX0d', '7057804'), + (66652, 722, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'myxqLX0d', '7072824'), + (66653, 722, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'myxqLX0d', '7074348'), + (66654, 722, 2536, 'attending', '2024-03-14 02:13:06', '2025-12-17 19:46:33', 'myxqLX0d', '7077689'), + (66655, 722, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'myxqLX0d', '7089267'), + (66656, 722, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'myxqLX0d', '7098747'), + (66657, 722, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'myxqLX0d', '7113468'), + (66658, 722, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'myxqLX0d', '7114856'), + (66659, 722, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'myxqLX0d', '7114951'), + (66660, 722, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'myxqLX0d', '7114955'), + (66661, 722, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'myxqLX0d', '7114956'), + (66662, 722, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'myxqLX0d', '7114957'), + (66663, 722, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'myxqLX0d', '7153615'), + (66664, 722, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'myxqLX0d', '7159484'), + (66665, 722, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'myxqLX0d', '7178446'), + (66666, 722, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'myxqLX0d', '7220467'), + (66667, 722, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'myxqLX0d', '7240354'), + (66668, 722, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'myxqLX0d', '7251633'), + (66669, 722, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'myxqLX0d', '7302674'), + (66670, 723, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'ydwwL1kd', '3236465'), + (66671, 723, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'ydwwL1kd', '3539916'), + (66672, 723, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'ydwwL1kd', '3539918'), + (66673, 723, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'ydwwL1kd', '3539919'), + (66674, 723, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'ydwwL1kd', '3539920'), + (66675, 723, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'ydwwL1kd', '3539921'), + (66676, 723, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ydwwL1kd', '3539927'), + (66677, 723, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ydwwL1kd', '3582734'), + (66678, 723, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ydwwL1kd', '3583262'), + (66679, 723, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydwwL1kd', '3619523'), + (66680, 723, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydwwL1kd', '3661369'), + (66681, 723, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydwwL1kd', '3674262'), + (66682, 723, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydwwL1kd', '3677402'), + (66683, 723, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydwwL1kd', '3730212'), + (66684, 723, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydwwL1kd', '3793156'), + (66685, 723, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'ydwwL1kd', '3803310'), + (66686, 723, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'ydwwL1kd', '3806392'), + (66687, 723, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwwL1kd', '6045684'), + (66688, 724, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mR6oaVgm', '4736503'), + (66689, 724, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mR6oaVgm', '4736504'), + (66690, 724, 1241, 'maybe', '2022-03-19 00:15:45', '2025-12-17 19:47:25', 'mR6oaVgm', '5052240'), + (66691, 724, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mR6oaVgm', '5132533'), + (66692, 724, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mR6oaVgm', '5186582'), + (66693, 724, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mR6oaVgm', '5186583'), + (66694, 724, 1274, 'maybe', '2022-03-19 00:14:49', '2025-12-17 19:47:26', 'mR6oaVgm', '5186585'), + (66695, 724, 1281, 'not_attending', '2022-03-19 00:14:38', '2025-12-17 19:47:27', 'mR6oaVgm', '5190437'), + (66696, 724, 1285, 'maybe', '2022-03-23 05:00:53', '2025-12-17 19:47:25', 'mR6oaVgm', '5196763'), + (66697, 724, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'mR6oaVgm', '5199460'), + (66698, 724, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mR6oaVgm', '5215989'), + (66699, 724, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mR6oaVgm', '6045684'), + (66700, 725, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4kRjJORA', '4694407'), + (66701, 725, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4kRjJORA', '4736497'), + (66702, 725, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4kRjJORA', '4736499'), + (66703, 725, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4kRjJORA', '4736500'), + (66704, 725, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kRjJORA', '4736503'), + (66705, 725, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kRjJORA', '4736504'), + (66706, 725, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4kRjJORA', '4746789'), + (66707, 725, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4kRjJORA', '4753929'), + (66708, 725, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4kRjJORA', '5038850'), + (66709, 725, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4kRjJORA', '5045826'), + (66710, 725, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kRjJORA', '5132533'), + (66711, 725, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4kRjJORA', '6045684'), + (66712, 726, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mb29oVXm', '6045684'), + (66713, 727, 1274, 'maybe', '2022-04-02 13:59:15', '2025-12-17 19:47:26', '4orXBxXA', '5186585'), + (66714, 727, 1281, 'attending', '2022-04-06 04:03:35', '2025-12-17 19:47:27', '4orXBxXA', '5190437'), + (66715, 727, 1284, 'attending', '2022-04-11 04:19:26', '2025-12-17 19:47:27', '4orXBxXA', '5195095'), + (66716, 727, 1302, 'attending', '2022-04-08 19:12:54', '2025-12-17 19:47:27', '4orXBxXA', '5220867'), + (66717, 727, 1304, 'maybe', '2022-04-06 04:03:02', '2025-12-17 19:47:26', '4orXBxXA', '5223468'), + (66718, 727, 1305, 'attending', '2022-04-10 21:47:16', '2025-12-17 19:47:27', '4orXBxXA', '5223673'), + (66719, 727, 1306, 'attending', '2022-04-04 00:23:50', '2025-12-17 19:47:26', '4orXBxXA', '5223682'), + (66720, 727, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4orXBxXA', '5223686'), + (66721, 727, 1308, 'attending', '2022-04-13 23:30:44', '2025-12-17 19:47:27', '4orXBxXA', '5226703'), + (66722, 727, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4orXBxXA', '5227432'), + (66723, 727, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4orXBxXA', '5247467'), + (66724, 727, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4orXBxXA', '5260800'), + (66725, 727, 1370, 'attending', '2022-04-29 17:54:19', '2025-12-17 19:47:28', '4orXBxXA', '5263775'), + (66726, 727, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4orXBxXA', '5269930'), + (66727, 727, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4orXBxXA', '5271448'), + (66728, 727, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4orXBxXA', '5271449'), + (66729, 727, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4orXBxXA', '5276469'), + (66730, 727, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4orXBxXA', '5278159'), + (66731, 727, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4orXBxXA', '5363695'), + (66732, 727, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4orXBxXA', '5365960'), + (66733, 727, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4orXBxXA', '5368973'), + (66734, 727, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4orXBxXA', '5378247'), + (66735, 727, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4orXBxXA', '5389605'), + (66736, 727, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4orXBxXA', '5397265'), + (66737, 727, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4orXBxXA', '5403967'), + (66738, 727, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4orXBxXA', '5404786'), + (66739, 727, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4orXBxXA', '5405203'), + (66740, 727, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '4orXBxXA', '5408794'), + (66741, 727, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4orXBxXA', '5411699'), + (66742, 727, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4orXBxXA', '5412550'), + (66743, 727, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4orXBxXA', '5415046'), + (66744, 727, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4orXBxXA', '5422086'), + (66745, 727, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4orXBxXA', '5422406'), + (66746, 727, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4orXBxXA', '5424565'), + (66747, 727, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4orXBxXA', '5426882'), + (66748, 727, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4orXBxXA', '5427083'), + (66749, 727, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4orXBxXA', '5441125'), + (66750, 727, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4orXBxXA', '5441126'), + (66751, 727, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4orXBxXA', '5441128'), + (66752, 727, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4orXBxXA', '5446643'), + (66753, 727, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4orXBxXA', '5453325'), + (66754, 727, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4orXBxXA', '5454516'), + (66755, 727, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4orXBxXA', '5454605'), + (66756, 727, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4orXBxXA', '5455037'), + (66757, 727, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4orXBxXA', '5461278'), + (66758, 727, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4orXBxXA', '5469480'), + (66759, 727, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4orXBxXA', '5471073'), + (66760, 727, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4orXBxXA', '5474663'), + (66761, 727, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4orXBxXA', '5482022'), + (66762, 727, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4orXBxXA', '5482793'), + (66763, 727, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4orXBxXA', '5488912'), + (66764, 727, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4orXBxXA', '5492192'), + (66765, 727, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4orXBxXA', '5493139'), + (66766, 727, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4orXBxXA', '5493200'), + (66767, 727, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4orXBxXA', '5502188'), + (66768, 727, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4orXBxXA', '5512862'), + (66769, 727, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4orXBxXA', '5513985'), + (66770, 727, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4orXBxXA', '6045684'), + (66771, 728, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mpGO9Nld', '7324082'), + (66772, 728, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mpGO9Nld', '7397462'), + (66773, 728, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mpGO9Nld', '7424275'), + (66774, 728, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mpGO9Nld', '7432751'), + (66775, 728, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mpGO9Nld', '7432752'), + (66776, 728, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mpGO9Nld', '7432753'), + (66777, 728, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mpGO9Nld', '7432754'), + (66778, 728, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mpGO9Nld', '7432755'), + (66779, 728, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mpGO9Nld', '7432756'), + (66780, 728, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mpGO9Nld', '7432758'), + (66781, 728, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mpGO9Nld', '7432759'), + (66782, 728, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mpGO9Nld', '7433834'), + (66783, 728, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mpGO9Nld', '7470197'), + (66784, 728, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mpGO9Nld', '7685613'), + (66785, 728, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mpGO9Nld', '7688194'), + (66786, 728, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mpGO9Nld', '7688196'), + (66787, 728, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mpGO9Nld', '7688289'), + (66788, 729, 191, 'attending', '2020-07-11 21:47:51', '2025-12-17 19:47:55', 'w4WM2Jqm', '3087259'), + (66789, 729, 193, 'attending', '2020-07-21 17:41:15', '2025-12-17 19:47:55', 'w4WM2Jqm', '3087261'), + (66790, 729, 194, 'not_attending', '2020-08-01 19:51:25', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087262'), + (66791, 729, 195, 'attending', '2020-08-03 17:35:24', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087264'), + (66792, 729, 196, 'attending', '2020-08-10 15:52:05', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087265'), + (66793, 729, 197, 'attending', '2020-08-10 15:52:10', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087266'), + (66794, 729, 198, 'not_attending', '2020-08-27 16:25:02', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087267'), + (66795, 729, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'w4WM2Jqm', '3087268'), + (66796, 729, 207, 'attending', '2020-07-20 02:39:14', '2025-12-17 19:47:55', 'w4WM2Jqm', '3104807'), + (66797, 729, 212, 'not_attending', '2020-07-14 22:50:23', '2025-12-17 19:47:55', 'w4WM2Jqm', '3118517'), + (66798, 729, 217, 'attending', '2020-07-11 06:30:06', '2025-12-17 19:47:55', 'w4WM2Jqm', '3126684'), + (66799, 729, 223, 'attending', '2020-09-09 17:21:41', '2025-12-17 19:47:56', 'w4WM2Jqm', '3129980'), + (66800, 729, 224, 'attending', '2020-07-25 22:53:44', '2025-12-17 19:47:55', 'w4WM2Jqm', '3130712'), + (66801, 729, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'w4WM2Jqm', '3132817'), + (66802, 729, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'w4WM2Jqm', '3132820'), + (66803, 729, 228, 'attending', '2020-07-14 20:27:42', '2025-12-17 19:47:55', 'w4WM2Jqm', '3132821'), + (66804, 729, 230, 'attending', '2020-07-26 03:12:47', '2025-12-17 19:47:55', 'w4WM2Jqm', '3139232'), + (66805, 729, 231, 'attending', '2020-07-20 22:46:55', '2025-12-17 19:47:55', 'w4WM2Jqm', '3139762'), + (66806, 729, 233, 'attending', '2020-07-22 19:47:37', '2025-12-17 19:47:55', 'w4WM2Jqm', '3139773'), + (66807, 729, 235, 'not_attending', '2020-07-24 19:25:21', '2025-12-17 19:47:55', 'w4WM2Jqm', '3140861'), + (66808, 729, 236, 'attending', '2020-07-20 22:47:10', '2025-12-17 19:47:55', 'w4WM2Jqm', '3140873'), + (66809, 729, 238, 'attending', '2020-07-25 22:53:30', '2025-12-17 19:47:55', 'w4WM2Jqm', '3145669'), + (66810, 729, 243, 'not_attending', '2020-11-02 20:02:41', '2025-12-17 19:47:53', 'w4WM2Jqm', '3149474'), + (66811, 729, 245, 'not_attending', '2020-11-02 20:04:18', '2025-12-17 19:47:54', 'w4WM2Jqm', '3149476'), + (66812, 729, 249, 'not_attending', '2020-11-02 20:04:11', '2025-12-17 19:47:54', 'w4WM2Jqm', '3149480'), + (66813, 729, 264, 'attending', '2020-08-03 17:35:15', '2025-12-17 19:47:56', 'w4WM2Jqm', '3150735'), + (66814, 729, 269, 'attending', '2020-07-29 18:36:50', '2025-12-17 19:47:55', 'w4WM2Jqm', '3153076'), + (66815, 729, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'w4WM2Jqm', '3155321'), + (66816, 729, 272, 'attending', '2020-08-03 17:35:18', '2025-12-17 19:47:56', 'w4WM2Jqm', '3161472'), + (66817, 729, 273, 'not_attending', '2020-08-06 16:54:24', '2025-12-17 19:47:56', 'w4WM2Jqm', '3162006'), + (66818, 729, 275, 'not_attending', '2020-08-03 23:17:37', '2025-12-17 19:47:56', 'w4WM2Jqm', '3163405'), + (66819, 729, 276, 'attending', '2020-08-03 20:22:08', '2025-12-17 19:47:56', 'w4WM2Jqm', '3163408'), + (66820, 729, 277, 'attending', '2020-08-04 01:06:40', '2025-12-17 19:47:56', 'w4WM2Jqm', '3163442'), + (66821, 729, 283, 'attending', '2020-08-07 16:01:57', '2025-12-17 19:47:56', 'w4WM2Jqm', '3169555'), + (66822, 729, 284, 'attending', '2020-08-07 16:01:59', '2025-12-17 19:47:56', 'w4WM2Jqm', '3169556'), + (66823, 729, 286, 'not_attending', '2020-08-26 22:07:52', '2025-12-17 19:47:56', 'w4WM2Jqm', '3170246'), + (66824, 729, 291, 'not_attending', '2020-09-09 17:21:25', '2025-12-17 19:47:56', 'w4WM2Jqm', '3170252'), + (66825, 729, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172832'), + (66826, 729, 294, 'not_attending', '2020-08-26 22:07:56', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172833'), + (66827, 729, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172834'), + (66828, 729, 296, 'not_attending', '2020-09-09 17:21:35', '2025-12-17 19:47:56', 'w4WM2Jqm', '3172876'), + (66829, 729, 298, 'attending', '2020-08-24 14:41:51', '2025-12-17 19:47:56', 'w4WM2Jqm', '3174556'), + (66830, 729, 301, 'attending', '2020-08-24 14:41:44', '2025-12-17 19:47:56', 'w4WM2Jqm', '3178027'), + (66831, 729, 302, 'attending', '2020-08-24 14:41:28', '2025-12-17 19:47:56', 'w4WM2Jqm', '3178028'), + (66832, 729, 311, 'attending', '2020-09-10 21:25:22', '2025-12-17 19:47:56', 'w4WM2Jqm', '3186057'), + (66833, 729, 312, 'not_attending', '2020-09-09 17:21:18', '2025-12-17 19:47:56', 'w4WM2Jqm', '3187795'), + (66834, 729, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'w4WM2Jqm', '3191735'), + (66835, 729, 318, 'not_attending', '2020-09-09 17:20:35', '2025-12-17 19:47:56', 'w4WM2Jqm', '3193885'), + (66836, 729, 321, 'attending', '2020-09-06 22:02:30', '2025-12-17 19:47:56', 'w4WM2Jqm', '3197077'), + (66837, 729, 332, 'not_attending', '2020-09-09 17:21:07', '2025-12-17 19:47:56', 'w4WM2Jqm', '3198873'), + (66838, 729, 333, 'attending', '2020-10-06 22:26:05', '2025-12-17 19:47:52', 'w4WM2Jqm', '3199782'), + (66839, 729, 334, 'attending', '2020-10-11 03:47:18', '2025-12-17 19:47:52', 'w4WM2Jqm', '3199784'), + (66840, 729, 335, 'not_attending', '2020-09-09 17:20:33', '2025-12-17 19:47:56', 'w4WM2Jqm', '3200209'), + (66841, 729, 336, 'attending', '2020-09-13 03:57:59', '2025-12-17 19:47:56', 'w4WM2Jqm', '3200495'), + (66842, 729, 337, 'not_attending', '2020-09-09 17:21:02', '2025-12-17 19:47:56', 'w4WM2Jqm', '3201771'), + (66843, 729, 339, 'not_attending', '2020-09-09 17:21:12', '2025-12-17 19:47:56', 'w4WM2Jqm', '3204469'), + (66844, 729, 340, 'attending', '2020-09-12 15:27:36', '2025-12-17 19:47:56', 'w4WM2Jqm', '3204470'), + (66845, 729, 343, 'attending', '2020-09-20 16:42:30', '2025-12-17 19:47:56', 'w4WM2Jqm', '3206759'), + (66846, 729, 345, 'attending', '2020-09-13 17:47:46', '2025-12-17 19:47:56', 'w4WM2Jqm', '3207423'), + (66847, 729, 346, 'attending', '2020-09-12 15:27:20', '2025-12-17 19:47:56', 'w4WM2Jqm', '3207515'), + (66848, 729, 347, 'attending', '2020-09-23 01:27:17', '2025-12-17 19:47:51', 'w4WM2Jqm', '3207930'), + (66849, 729, 351, 'attending', '2020-09-12 15:27:43', '2025-12-17 19:47:56', 'w4WM2Jqm', '3209257'), + (66850, 729, 352, 'attending', '2020-09-14 05:37:30', '2025-12-17 19:47:56', 'w4WM2Jqm', '3210514'), + (66851, 729, 355, 'attending', '2020-09-15 22:46:29', '2025-12-17 19:47:56', 'w4WM2Jqm', '3212571'), + (66852, 729, 356, 'attending', '2020-09-21 03:00:42', '2025-12-17 19:47:51', 'w4WM2Jqm', '3212572'), + (66853, 729, 358, 'attending', '2020-09-15 22:47:15', '2025-12-17 19:47:56', 'w4WM2Jqm', '3212579'), + (66854, 729, 362, 'attending', '2020-09-25 19:23:17', '2025-12-17 19:47:52', 'w4WM2Jqm', '3214207'), + (66855, 729, 363, 'maybe', '2020-09-16 22:39:57', '2025-12-17 19:47:52', 'w4WM2Jqm', '3217037'), + (66856, 729, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'w4WM2Jqm', '3218510'), + (66857, 729, 368, 'attending', '2020-10-01 16:25:36', '2025-12-17 19:47:52', 'w4WM2Jqm', '3221403'), + (66858, 729, 376, 'attending', '2020-10-11 03:47:55', '2025-12-17 19:47:52', 'w4WM2Jqm', '3222827'), + (66859, 729, 385, 'attending', '2020-10-01 18:00:15', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228698'), + (66860, 729, 386, 'attending', '2020-10-10 17:52:52', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228699'), + (66861, 729, 387, 'attending', '2020-10-15 22:45:42', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228700'), + (66862, 729, 388, 'not_attending', '2020-10-20 10:00:42', '2025-12-17 19:47:52', 'w4WM2Jqm', '3228701'), + (66863, 729, 390, 'attending', '2020-10-04 22:13:42', '2025-12-17 19:47:52', 'w4WM2Jqm', '3231510'), + (66864, 729, 399, 'not_attending', '2020-11-02 20:03:45', '2025-12-17 19:47:54', 'w4WM2Jqm', '3236454'), + (66865, 729, 409, 'not_attending', '2020-11-02 20:04:35', '2025-12-17 19:47:54', 'w4WM2Jqm', '3236467'), + (66866, 729, 410, 'not_attending', '2020-11-02 20:04:14', '2025-12-17 19:47:54', 'w4WM2Jqm', '3236469'), + (66867, 729, 411, 'attending', '2020-10-11 03:50:04', '2025-12-17 19:47:52', 'w4WM2Jqm', '3236596'), + (66868, 729, 413, 'not_attending', '2020-10-20 10:00:37', '2025-12-17 19:47:52', 'w4WM2Jqm', '3236670'), + (66869, 729, 414, 'attending', '2020-10-18 22:54:44', '2025-12-17 19:47:52', 'w4WM2Jqm', '3237277'), + (66870, 729, 416, 'not_attending', '2020-10-09 23:03:22', '2025-12-17 19:47:52', 'w4WM2Jqm', '3238073'), + (66871, 729, 419, 'attending', '2020-10-11 03:49:24', '2025-12-17 19:47:52', 'w4WM2Jqm', '3242234'), + (66872, 729, 420, 'attending', '2020-10-12 23:11:39', '2025-12-17 19:47:52', 'w4WM2Jqm', '3245293'), + (66873, 729, 423, 'maybe', '2020-11-02 20:03:34', '2025-12-17 19:47:53', 'w4WM2Jqm', '3245296'), + (66874, 729, 424, 'not_attending', '2020-10-16 01:15:26', '2025-12-17 19:47:52', 'w4WM2Jqm', '3245751'), + (66875, 729, 426, 'attending', '2020-10-14 16:12:59', '2025-12-17 19:47:52', 'w4WM2Jqm', '3250232'), + (66876, 729, 432, 'not_attending', '2020-11-02 20:02:52', '2025-12-17 19:47:53', 'w4WM2Jqm', '3254416'), + (66877, 729, 433, 'not_attending', '2020-11-02 20:03:38', '2025-12-17 19:47:53', 'w4WM2Jqm', '3254417'), + (66878, 729, 434, 'not_attending', '2020-11-02 20:04:01', '2025-12-17 19:47:53', 'w4WM2Jqm', '3254418'), + (66879, 729, 438, 'attending', '2020-10-31 22:23:27', '2025-12-17 19:47:53', 'w4WM2Jqm', '3256163'), + (66880, 729, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'w4WM2Jqm', '3256168'), + (66881, 729, 441, 'attending', '2020-11-13 21:29:42', '2025-12-17 19:47:54', 'w4WM2Jqm', '3256169'), + (66882, 729, 443, 'not_attending', '2020-10-27 01:29:33', '2025-12-17 19:47:53', 'w4WM2Jqm', '3263578'), + (66883, 729, 445, 'not_attending', '2020-11-02 20:02:55', '2025-12-17 19:47:54', 'w4WM2Jqm', '3266138'), + (66884, 729, 449, 'not_attending', '2020-11-02 20:04:04', '2025-12-17 19:47:53', 'w4WM2Jqm', '3272055'), + (66885, 729, 451, 'not_attending', '2020-11-02 20:02:37', '2025-12-17 19:47:53', 'w4WM2Jqm', '3272186'), + (66886, 729, 452, 'not_attending', '2020-11-02 20:04:07', '2025-12-17 19:47:54', 'w4WM2Jqm', '3272981'), + (66887, 729, 454, 'not_attending', '2020-11-13 02:29:17', '2025-12-17 19:47:54', 'w4WM2Jqm', '3275665'), + (66888, 729, 456, 'attending', '2020-11-14 20:47:09', '2025-12-17 19:47:54', 'w4WM2Jqm', '3276428'), + (66889, 729, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'w4WM2Jqm', '3281467'), + (66890, 729, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'w4WM2Jqm', '3281470'), + (66891, 729, 463, 'attending', '2020-11-13 02:29:27', '2025-12-17 19:47:54', 'w4WM2Jqm', '3281553'), + (66892, 729, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'w4WM2Jqm', '3281829'), + (66893, 729, 467, 'attending', '2020-11-17 21:40:05', '2025-12-17 19:47:54', 'w4WM2Jqm', '3282756'), + (66894, 729, 468, 'maybe', '2020-11-21 03:48:53', '2025-12-17 19:47:54', 'w4WM2Jqm', '3285413'), + (66895, 729, 469, 'attending', '2020-11-28 00:08:42', '2025-12-17 19:47:54', 'w4WM2Jqm', '3285414'), + (66896, 729, 476, 'attending', '2020-11-18 23:49:32', '2025-12-17 19:47:54', 'w4WM2Jqm', '3286982'), + (66897, 729, 477, 'attending', '2020-12-05 01:55:18', '2025-12-17 19:47:54', 'w4WM2Jqm', '3289559'), + (66898, 729, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'w4WM2Jqm', '3297764'), + (66899, 729, 482, 'attending', '2020-11-25 00:59:28', '2025-12-17 19:47:54', 'w4WM2Jqm', '3297769'), + (66900, 729, 484, 'maybe', '2020-11-21 00:00:33', '2025-12-17 19:47:54', 'w4WM2Jqm', '3297792'), + (66901, 729, 491, 'attending', '2020-12-09 03:37:11', '2025-12-17 19:47:55', 'w4WM2Jqm', '3313533'), + (66902, 729, 492, 'attending', '2020-12-03 19:15:26', '2025-12-17 19:47:54', 'w4WM2Jqm', '3313731'), + (66903, 729, 493, 'not_attending', '2020-12-01 00:07:36', '2025-12-17 19:47:54', 'w4WM2Jqm', '3313856'), + (66904, 729, 496, 'attending', '2020-12-09 01:39:07', '2025-12-17 19:47:54', 'w4WM2Jqm', '3314269'), + (66905, 729, 497, 'attending', '2020-12-09 01:39:16', '2025-12-17 19:47:55', 'w4WM2Jqm', '3314270'), + (66906, 729, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'w4WM2Jqm', '3314909'), + (66907, 729, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'w4WM2Jqm', '3314964'), + (66908, 729, 501, 'attending', '2020-12-09 01:14:31', '2025-12-17 19:47:54', 'w4WM2Jqm', '3317834'), + (66909, 729, 502, 'attending', '2020-12-11 04:19:25', '2025-12-17 19:47:55', 'w4WM2Jqm', '3323365'), + (66910, 729, 509, 'attending', '2021-01-22 21:16:01', '2025-12-17 19:47:49', 'w4WM2Jqm', '3324232'), + (66911, 729, 513, 'not_attending', '2020-12-19 05:54:45', '2025-12-17 19:47:55', 'w4WM2Jqm', '3329383'), + (66912, 729, 526, 'attending', '2021-01-02 22:33:55', '2025-12-17 19:47:48', 'w4WM2Jqm', '3351539'), + (66913, 729, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'w4WM2Jqm', '3386848'), + (66914, 729, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'w4WM2Jqm', '3389527'), + (66915, 729, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'w4WM2Jqm', '3396499'), + (66916, 729, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'w4WM2Jqm', '3403650'), + (66917, 729, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'w4WM2Jqm', '3406988'), + (66918, 729, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'w4WM2Jqm', '3408338'), + (66919, 729, 555, 'attending', '2021-01-22 18:37:11', '2025-12-17 19:47:49', 'w4WM2Jqm', '3416576'), + (66920, 729, 568, 'attending', '2021-01-28 19:57:14', '2025-12-17 19:47:50', 'w4WM2Jqm', '3430267'), + (66921, 729, 572, 'maybe', '2021-02-06 02:11:50', '2025-12-17 19:47:50', 'w4WM2Jqm', '3435540'), + (66922, 729, 574, 'attending', '2021-02-28 04:37:06', '2025-12-17 19:47:51', 'w4WM2Jqm', '3435543'), + (66923, 729, 576, 'attending', '2021-02-02 23:37:24', '2025-12-17 19:47:50', 'w4WM2Jqm', '3438748'), + (66924, 729, 578, 'attending', '2021-02-02 20:40:19', '2025-12-17 19:47:50', 'w4WM2Jqm', '3440043'), + (66925, 729, 579, 'attending', '2021-02-03 21:21:36', '2025-12-17 19:47:50', 'w4WM2Jqm', '3440978'), + (66926, 729, 584, 'attending', '2021-02-03 21:21:34', '2025-12-17 19:47:50', 'w4WM2Jqm', '3449466'), + (66927, 729, 587, 'not_attending', '2021-02-15 21:38:31', '2025-12-17 19:47:50', 'w4WM2Jqm', '3449470'), + (66928, 729, 592, 'attending', '2021-02-22 08:58:23', '2025-12-17 19:47:50', 'w4WM2Jqm', '3467757'), + (66929, 729, 593, 'attending', '2021-02-22 08:57:55', '2025-12-17 19:47:50', 'w4WM2Jqm', '3467758'), + (66930, 729, 594, 'attending', '2021-02-28 04:36:46', '2025-12-17 19:47:51', 'w4WM2Jqm', '3467759'), + (66931, 729, 596, 'attending', '2021-03-11 01:33:20', '2025-12-17 19:47:51', 'w4WM2Jqm', '3467762'), + (66932, 729, 602, 'attending', '2021-02-13 03:49:58', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470303'), + (66933, 729, 603, 'attending', '2021-02-17 01:18:43', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470304'), + (66934, 729, 604, 'attending', '2021-02-25 08:16:05', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470305'), + (66935, 729, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470991'), + (66936, 729, 606, 'attending', '2021-02-12 00:49:13', '2025-12-17 19:47:50', 'w4WM2Jqm', '3470998'), + (66937, 729, 614, 'attending', '2021-03-04 00:16:14', '2025-12-17 19:47:51', 'w4WM2Jqm', '3490042'), + (66938, 729, 616, 'attending', '2021-02-21 16:34:38', '2025-12-17 19:47:50', 'w4WM2Jqm', '3493478'), + (66939, 729, 617, 'attending', '2021-02-22 22:38:52', '2025-12-17 19:47:50', 'w4WM2Jqm', '3499119'), + (66940, 729, 621, 'attending', '2021-03-06 02:10:17', '2025-12-17 19:47:51', 'w4WM2Jqm', '3517815'), + (66941, 729, 622, 'not_attending', '2021-03-12 07:54:46', '2025-12-17 19:47:51', 'w4WM2Jqm', '3517816'), + (66942, 729, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'w4WM2Jqm', '3523941'), + (66943, 729, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4WM2Jqm', '3533850'), + (66944, 729, 636, 'attending', '2021-04-16 23:04:15', '2025-12-17 19:47:45', 'w4WM2Jqm', '3534720'), + (66945, 729, 637, 'attending', '2021-03-09 11:15:22', '2025-12-17 19:47:51', 'w4WM2Jqm', '3536411'), + (66946, 729, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4WM2Jqm', '3536632'), + (66947, 729, 639, 'attending', '2021-03-09 11:15:17', '2025-12-17 19:47:51', 'w4WM2Jqm', '3536656'), + (66948, 729, 640, 'attending', '2021-03-04 23:34:21', '2025-12-17 19:47:51', 'w4WM2Jqm', '3538866'), + (66949, 729, 641, 'attending', '2021-04-02 20:18:07', '2025-12-17 19:47:44', 'w4WM2Jqm', '3539916'), + (66950, 729, 642, 'attending', '2021-04-10 19:55:46', '2025-12-17 19:47:44', 'w4WM2Jqm', '3539917'), + (66951, 729, 643, 'attending', '2021-04-16 16:49:34', '2025-12-17 19:47:45', 'w4WM2Jqm', '3539918'), + (66952, 729, 644, 'not_attending', '2021-04-24 20:02:03', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539919'), + (66953, 729, 645, 'attending', '2021-05-07 11:08:38', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539920'), + (66954, 729, 646, 'attending', '2021-05-15 22:36:11', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539921'), + (66955, 729, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4WM2Jqm', '3539922'), + (66956, 729, 648, 'attending', '2021-05-29 21:26:20', '2025-12-17 19:47:47', 'w4WM2Jqm', '3539923'), + (66957, 729, 649, 'attending', '2021-03-19 00:08:35', '2025-12-17 19:47:51', 'w4WM2Jqm', '3539927'), + (66958, 729, 663, 'attending', '2021-05-07 11:08:49', '2025-12-17 19:47:46', 'w4WM2Jqm', '3547140'), + (66959, 729, 699, 'maybe', '2021-03-29 23:02:11', '2025-12-17 19:47:44', 'w4WM2Jqm', '3572241'), + (66960, 729, 703, 'attending', '2021-04-11 22:46:46', '2025-12-17 19:47:44', 'w4WM2Jqm', '3578388'), + (66961, 729, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'w4WM2Jqm', '3582734'), + (66962, 729, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'w4WM2Jqm', '3583262'), + (66963, 729, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'w4WM2Jqm', '3619523'), + (66964, 729, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'w4WM2Jqm', '3661369'), + (66965, 729, 729, 'attending', '2021-04-28 23:15:50', '2025-12-17 19:47:46', 'w4WM2Jqm', '3668075'), + (66966, 729, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'w4WM2Jqm', '3674262'), + (66967, 729, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'w4WM2Jqm', '3677402'), + (66968, 729, 738, 'attending', '2021-04-19 17:39:58', '2025-12-17 19:47:45', 'w4WM2Jqm', '3680615'), + (66969, 729, 739, 'attending', '2021-05-07 11:08:30', '2025-12-17 19:47:46', 'w4WM2Jqm', '3680616'), + (66970, 729, 750, 'attending', '2021-04-13 21:06:16', '2025-12-17 19:47:44', 'w4WM2Jqm', '3689962'), + (66971, 729, 758, 'attending', '2021-04-19 17:40:06', '2025-12-17 19:47:45', 'w4WM2Jqm', '3713700'), + (66972, 729, 759, 'attending', '2021-04-19 17:40:04', '2025-12-17 19:47:45', 'w4WM2Jqm', '3713701'), + (66973, 729, 765, 'attending', '2021-04-22 20:10:28', '2025-12-17 19:47:45', 'w4WM2Jqm', '3720508'), + (66974, 729, 768, 'attending', '2021-04-19 22:26:18', '2025-12-17 19:47:46', 'w4WM2Jqm', '3724124'), + (66975, 729, 769, 'attending', '2021-04-19 22:26:21', '2025-12-17 19:47:46', 'w4WM2Jqm', '3724127'), + (66976, 729, 770, 'attending', '2021-04-19 22:26:23', '2025-12-17 19:47:46', 'w4WM2Jqm', '3724559'), + (66977, 729, 774, 'attending', '2021-04-20 23:36:01', '2025-12-17 19:47:45', 'w4WM2Jqm', '3730212'), + (66978, 729, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'w4WM2Jqm', '3793156'), + (66979, 729, 822, 'not_attending', '2021-06-03 01:51:55', '2025-12-17 19:47:47', 'w4WM2Jqm', '3969986'), + (66980, 729, 823, 'attending', '2021-06-19 21:20:36', '2025-12-17 19:47:48', 'w4WM2Jqm', '3974109'), + (66981, 729, 827, 'attending', '2021-06-05 21:37:51', '2025-12-17 19:47:47', 'w4WM2Jqm', '3975311'), + (66982, 729, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4WM2Jqm', '3975312'), + (66983, 729, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4WM2Jqm', '3994992'), + (66984, 729, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4WM2Jqm', '4014338'), + (66985, 729, 867, 'not_attending', '2021-06-26 22:14:33', '2025-12-17 19:47:38', 'w4WM2Jqm', '4021848'), + (66986, 729, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4WM2Jqm', '4136744'), + (66987, 729, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4WM2Jqm', '4136937'), + (66988, 729, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4WM2Jqm', '4136938'), + (66989, 729, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4WM2Jqm', '4136947'), + (66990, 729, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4WM2Jqm', '4210314'), + (66991, 729, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4WM2Jqm', '4225444'), + (66992, 729, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4WM2Jqm', '4239259'), + (66993, 729, 900, 'attending', '2021-07-24 21:35:56', '2025-12-17 19:47:40', 'w4WM2Jqm', '4240316'), + (66994, 729, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4WM2Jqm', '4240317'), + (66995, 729, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4WM2Jqm', '4240318'), + (66996, 729, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4WM2Jqm', '4240320'), + (66997, 729, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4WM2Jqm', '4250163'), + (66998, 729, 906, 'not_attending', '2021-07-05 05:49:09', '2025-12-17 19:47:39', 'w4WM2Jqm', '4253431'), + (66999, 729, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4WM2Jqm', '4275957'), + (67000, 729, 920, 'attending', '2021-07-25 21:21:56', '2025-12-17 19:47:40', 'w4WM2Jqm', '4277819'), + (67001, 729, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4WM2Jqm', '4301723'), + (67002, 729, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'w4WM2Jqm', '4302093'), + (67003, 729, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4WM2Jqm', '4304151'), + (67004, 729, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'w4WM2Jqm', '4356801'), + (67005, 729, 973, 'attending', '2021-08-18 22:02:02', '2025-12-17 19:47:42', 'w4WM2Jqm', '4366186'), + (67006, 729, 974, 'attending', '2021-08-18 22:02:12', '2025-12-17 19:47:42', 'w4WM2Jqm', '4366187'), + (67007, 729, 990, 'attending', '2021-09-01 23:50:25', '2025-12-17 19:47:43', 'w4WM2Jqm', '4420735'), + (67008, 729, 991, 'attending', '2021-09-10 22:06:38', '2025-12-17 19:47:43', 'w4WM2Jqm', '4420738'), + (67009, 729, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'w4WM2Jqm', '4420739'), + (67010, 729, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'w4WM2Jqm', '4420741'), + (67011, 729, 994, 'not_attending', '2021-10-02 13:28:34', '2025-12-17 19:47:34', 'w4WM2Jqm', '4420742'), + (67012, 729, 995, 'attending', '2021-10-09 21:40:04', '2025-12-17 19:47:34', 'w4WM2Jqm', '4420744'), + (67013, 729, 996, 'attending', '2021-10-16 19:11:10', '2025-12-17 19:47:35', 'w4WM2Jqm', '4420747'), + (67014, 729, 997, 'attending', '2021-10-23 21:16:32', '2025-12-17 19:47:35', 'w4WM2Jqm', '4420748'), + (67015, 729, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4WM2Jqm', '4420749'), + (67016, 729, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4WM2Jqm', '4461883'), + (67017, 729, 1046, 'attending', '2021-10-16 19:11:26', '2025-12-17 19:47:35', 'w4WM2Jqm', '4496611'), + (67018, 729, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4WM2Jqm', '4508342'), + (67019, 729, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4WM2Jqm', '4568602'), + (67020, 729, 1087, 'attending', '2021-10-16 19:11:22', '2025-12-17 19:47:35', 'w4WM2Jqm', '4572153'), + (67021, 729, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4WM2Jqm', '4585962'), + (67022, 729, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'w4WM2Jqm', '4596356'), + (67023, 729, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4WM2Jqm', '4598860'), + (67024, 729, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4WM2Jqm', '4598861'), + (67025, 729, 1099, 'not_attending', '2021-11-06 20:43:57', '2025-12-17 19:47:36', 'w4WM2Jqm', '4602797'), + (67026, 729, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4WM2Jqm', '4736497'), + (67027, 729, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4WM2Jqm', '4736499'), + (67028, 729, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4WM2Jqm', '4736500'), + (67029, 729, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4WM2Jqm', '4736503'), + (67030, 729, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4WM2Jqm', '4736504'), + (67031, 729, 1185, 'attending', '2022-01-09 04:56:54', '2025-12-17 19:47:31', 'w4WM2Jqm', '4746789'), + (67032, 729, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'w4WM2Jqm', '4753929'), + (67033, 729, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4WM2Jqm', '5038850'), + (67034, 729, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4WM2Jqm', '5045826'), + (67035, 729, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4WM2Jqm', '5132533'), + (67036, 729, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4WM2Jqm', '5186582'), + (67037, 729, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4WM2Jqm', '5186583'), + (67038, 729, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4WM2Jqm', '5186585'), + (67039, 729, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4WM2Jqm', '5190437'), + (67040, 729, 1284, 'attending', '2022-04-16 22:30:49', '2025-12-17 19:47:27', 'w4WM2Jqm', '5195095'), + (67041, 729, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4WM2Jqm', '5215989'), + (67042, 729, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'w4WM2Jqm', '5223686'), + (67043, 729, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'w4WM2Jqm', '5247467'), + (67044, 729, 1354, 'not_attending', '2022-04-21 18:07:01', '2025-12-17 19:47:27', 'w4WM2Jqm', '5252569'), + (67045, 729, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'w4WM2Jqm', '5260800'), + (67046, 729, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'w4WM2Jqm', '5269930'), + (67047, 729, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'w4WM2Jqm', '5271448'), + (67048, 729, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'w4WM2Jqm', '5271449'), + (67049, 729, 1380, 'attending', '2022-05-28 22:51:33', '2025-12-17 19:47:30', 'w4WM2Jqm', '5271450'), + (67050, 729, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'w4WM2Jqm', '5276469'), + (67051, 729, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'w4WM2Jqm', '5278159'), + (67052, 729, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'w4WM2Jqm', '5363695'), + (67053, 729, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'w4WM2Jqm', '5365960'), + (67054, 729, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'w4WM2Jqm', '5368973'), + (67055, 729, 1423, 'attending', '2022-06-15 19:26:24', '2025-12-17 19:47:17', 'w4WM2Jqm', '5375727'), + (67056, 729, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'w4WM2Jqm', '5378247'), + (67057, 729, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'w4WM2Jqm', '5389605'), + (67058, 729, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'w4WM2Jqm', '5397265'), + (67059, 729, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'w4WM2Jqm', '5403967'), + (67060, 729, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'w4WM2Jqm', '5404786'), + (67061, 729, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'w4WM2Jqm', '5405203'), + (67062, 729, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'w4WM2Jqm', '5411699'), + (67063, 729, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'w4WM2Jqm', '5412550'), + (67064, 729, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'w4WM2Jqm', '5415046'), + (67065, 729, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'w4WM2Jqm', '5422086'), + (67066, 729, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'w4WM2Jqm', '5422406'), + (67067, 729, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'w4WM2Jqm', '5424565'), + (67068, 729, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'w4WM2Jqm', '5426882'), + (67069, 729, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'w4WM2Jqm', '5427083'), + (67070, 729, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'w4WM2Jqm', '5441125'), + (67071, 729, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'w4WM2Jqm', '5441126'), + (67072, 729, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'w4WM2Jqm', '5441128'), + (67073, 729, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'w4WM2Jqm', '5441131'), + (67074, 729, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'w4WM2Jqm', '5441132'), + (67075, 729, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'w4WM2Jqm', '5446643'), + (67076, 729, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'w4WM2Jqm', '5453325'), + (67077, 729, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'w4WM2Jqm', '5454516'), + (67078, 729, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'w4WM2Jqm', '5454605'), + (67079, 729, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'w4WM2Jqm', '5455037'), + (67080, 729, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'w4WM2Jqm', '5461278'), + (67081, 729, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'w4WM2Jqm', '5469480'), + (67082, 729, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'w4WM2Jqm', '5471073'), + (67083, 729, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'w4WM2Jqm', '5474663'), + (67084, 729, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'w4WM2Jqm', '5482022'), + (67085, 729, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'w4WM2Jqm', '5482793'), + (67086, 729, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'w4WM2Jqm', '5488912'), + (67087, 729, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'w4WM2Jqm', '5492192'), + (67088, 729, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'w4WM2Jqm', '5493139'), + (67089, 729, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'w4WM2Jqm', '5493200'), + (67090, 729, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'w4WM2Jqm', '5502188'), + (67091, 729, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'w4WM2Jqm', '5505059'), + (67092, 729, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'w4WM2Jqm', '5509055'), + (67093, 729, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'w4WM2Jqm', '5512862'), + (67094, 729, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'w4WM2Jqm', '5513985'), + (67095, 729, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'w4WM2Jqm', '5519981'), + (67096, 729, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'w4WM2Jqm', '5522550'), + (67097, 729, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'w4WM2Jqm', '5534683'), + (67098, 729, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'w4WM2Jqm', '5537735'), + (67099, 729, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'w4WM2Jqm', '5540859'), + (67100, 729, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'w4WM2Jqm', '5546619'), + (67101, 729, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'w4WM2Jqm', '5555245'), + (67102, 729, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'w4WM2Jqm', '5557747'), + (67103, 729, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'w4WM2Jqm', '5560255'), + (67104, 729, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'w4WM2Jqm', '5562906'), + (67105, 729, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'w4WM2Jqm', '5600604'), + (67106, 729, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'w4WM2Jqm', '5605544'), + (67107, 729, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'w4WM2Jqm', '5606737'), + (67108, 729, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'w4WM2Jqm', '5630960'), + (67109, 729, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'w4WM2Jqm', '5630961'), + (67110, 729, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'w4WM2Jqm', '5630962'), + (67111, 729, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'w4WM2Jqm', '5630966'), + (67112, 729, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'w4WM2Jqm', '5630967'), + (67113, 729, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'w4WM2Jqm', '5630968'), + (67114, 729, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'w4WM2Jqm', '5635406'), + (67115, 729, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'w4WM2Jqm', '5638765'), + (67116, 729, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'w4WM2Jqm', '5640097'), + (67117, 729, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'w4WM2Jqm', '5640843'), + (67118, 729, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'w4WM2Jqm', '5641521'), + (67119, 729, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'w4WM2Jqm', '5642818'), + (67120, 729, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'w4WM2Jqm', '5652395'), + (67121, 729, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'w4WM2Jqm', '5670445'), + (67122, 729, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'w4WM2Jqm', '5671637'), + (67123, 729, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'w4WM2Jqm', '5672329'), + (67124, 729, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'w4WM2Jqm', '5674057'), + (67125, 729, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'w4WM2Jqm', '5674060'), + (67126, 729, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'w4WM2Jqm', '5677461'), + (67127, 729, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'w4WM2Jqm', '5698046'), + (67128, 729, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'w4WM2Jqm', '5699760'), + (67129, 729, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'w4WM2Jqm', '5741601'), + (67130, 729, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'w4WM2Jqm', '5763458'), + (67131, 729, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'w4WM2Jqm', '5774172'), + (67132, 729, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'w4WM2Jqm', '5818247'), + (67133, 729, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'w4WM2Jqm', '5819471'), + (67134, 729, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'w4WM2Jqm', '5827739'), + (67135, 729, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'w4WM2Jqm', '5844306'), + (67136, 729, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'w4WM2Jqm', '5850159'), + (67137, 729, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'w4WM2Jqm', '5858999'), + (67138, 729, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'w4WM2Jqm', '5871984'), + (67139, 729, 1858, 'attending', '2023-01-15 00:42:42', '2025-12-17 19:47:05', 'w4WM2Jqm', '5875044'), + (67140, 729, 1860, 'attending', '2023-01-15 00:42:57', '2025-12-17 19:47:05', 'w4WM2Jqm', '5876309'), + (67141, 729, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'w4WM2Jqm', '5876354'), + (67142, 729, 1864, 'attending', '2023-01-19 17:03:28', '2025-12-17 19:47:05', 'w4WM2Jqm', '5879675'), + (67143, 729, 1865, 'attending', '2023-01-23 21:10:59', '2025-12-17 19:47:06', 'w4WM2Jqm', '5879676'), + (67144, 729, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'w4WM2Jqm', '5880939'), + (67145, 729, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'w4WM2Jqm', '5880940'), + (67146, 729, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'w4WM2Jqm', '5880942'), + (67147, 729, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'w4WM2Jqm', '5880943'), + (67148, 729, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'w4WM2Jqm', '5887890'), + (67149, 729, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'w4WM2Jqm', '5888598'), + (67150, 729, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'w4WM2Jqm', '5893260'), + (67151, 729, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'w4WM2Jqm', '5899826'), + (67152, 729, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'w4WM2Jqm', '5900199'), + (67153, 729, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'w4WM2Jqm', '5900200'), + (67154, 729, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'w4WM2Jqm', '5900202'), + (67155, 729, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'w4WM2Jqm', '5900203'), + (67156, 729, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'w4WM2Jqm', '5901108'), + (67157, 729, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'w4WM2Jqm', '5901126'), + (67158, 729, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'w4WM2Jqm', '5909655'), + (67159, 729, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'w4WM2Jqm', '5910522'), + (67160, 729, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'w4WM2Jqm', '5910526'), + (67161, 729, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'w4WM2Jqm', '5910528'), + (67162, 729, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'w4WM2Jqm', '5916219'), + (67163, 729, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'w4WM2Jqm', '5936234'), + (67164, 729, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'w4WM2Jqm', '5958351'), + (67165, 729, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'w4WM2Jqm', '5959751'), + (67166, 729, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'w4WM2Jqm', '5959755'), + (67167, 729, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'w4WM2Jqm', '5960055'), + (67168, 729, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'w4WM2Jqm', '5961684'), + (67169, 729, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'w4WM2Jqm', '5962132'), + (67170, 729, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'w4WM2Jqm', '5962133'), + (67171, 729, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'w4WM2Jqm', '5962134'), + (67172, 729, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'w4WM2Jqm', '5962317'), + (67173, 729, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'w4WM2Jqm', '5962318'), + (67174, 729, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'w4WM2Jqm', '5965933'), + (67175, 729, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'w4WM2Jqm', '5967014'), + (67176, 729, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'w4WM2Jqm', '5972815'), + (67177, 729, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'w4WM2Jqm', '5974016'), + (67178, 729, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'w4WM2Jqm', '5975052'), + (67179, 729, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'w4WM2Jqm', '5975054'), + (67180, 729, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'w4WM2Jqm', '5981515'), + (67181, 729, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'w4WM2Jqm', '5993516'), + (67182, 729, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'w4WM2Jqm', '5998939'), + (67183, 729, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'w4WM2Jqm', '6028191'), + (67184, 729, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'w4WM2Jqm', '6040066'), + (67185, 729, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'w4WM2Jqm', '6042717'), + (67186, 729, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'w4WM2Jqm', '6044838'), + (67187, 729, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'w4WM2Jqm', '6044839'), + (67188, 729, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WM2Jqm', '6045684'), + (67189, 729, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'w4WM2Jqm', '6050104'), + (67190, 729, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'w4WM2Jqm', '6053195'), + (67191, 729, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'w4WM2Jqm', '6053198'), + (67192, 729, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'w4WM2Jqm', '6056085'), + (67193, 729, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'w4WM2Jqm', '6056916'), + (67194, 729, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'w4WM2Jqm', '6059290'), + (67195, 729, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'w4WM2Jqm', '6060328'), + (67196, 729, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'w4WM2Jqm', '6061037'), + (67197, 729, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'w4WM2Jqm', '6061039'), + (67198, 729, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'w4WM2Jqm', '6065813'), + (67199, 729, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'w4WM2Jqm', '6067245'), + (67200, 729, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'w4WM2Jqm', '6068094'), + (67201, 729, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'w4WM2Jqm', '6068252'), + (67202, 729, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'w4WM2Jqm', '6068253'), + (67203, 729, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'w4WM2Jqm', '6068254'), + (67204, 729, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'w4WM2Jqm', '6068280'), + (67205, 729, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'w4WM2Jqm', '6069093'), + (67206, 729, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'w4WM2Jqm', '6072528'), + (67207, 729, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'w4WM2Jqm', '6075556'), + (67208, 729, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'w4WM2Jqm', '6079840'), + (67209, 729, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'w4WM2Jqm', '6083398'), + (67210, 729, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'w4WM2Jqm', '6093504'), + (67211, 729, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'w4WM2Jqm', '6097414'), + (67212, 729, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'w4WM2Jqm', '6097442'), + (67213, 729, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'w4WM2Jqm', '6097684'), + (67214, 729, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'w4WM2Jqm', '6098762'), + (67215, 729, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'w4WM2Jqm', '6101361'), + (67216, 729, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'w4WM2Jqm', '6101362'), + (67217, 729, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'w4WM2Jqm', '6107314'), + (67218, 729, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'w4WM2Jqm', '6120034'), + (67219, 729, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'w4WM2Jqm', '6136733'), + (67220, 729, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'w4WM2Jqm', '6137989'), + (67221, 729, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'w4WM2Jqm', '6150864'), + (67222, 729, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'w4WM2Jqm', '6155491'), + (67223, 729, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'w4WM2Jqm', '6164417'), + (67224, 729, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'w4WM2Jqm', '6166388'), + (67225, 729, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'w4WM2Jqm', '6176439'), + (67226, 729, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'w4WM2Jqm', '6182410'), + (67227, 729, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'w4WM2Jqm', '6185812'), + (67228, 729, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'w4WM2Jqm', '6187651'), + (67229, 729, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'w4WM2Jqm', '6187963'), + (67230, 729, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'w4WM2Jqm', '6187964'), + (67231, 729, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'w4WM2Jqm', '6187966'), + (67232, 729, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'w4WM2Jqm', '6187967'), + (67233, 729, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'w4WM2Jqm', '6187969'), + (67234, 729, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'w4WM2Jqm', '6334878'), + (67235, 729, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'w4WM2Jqm', '6337236'), + (67236, 729, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'w4WM2Jqm', '6337970'), + (67237, 729, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'w4WM2Jqm', '6338308'), + (67238, 729, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'w4WM2Jqm', '6341710'), + (67239, 729, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'w4WM2Jqm', '6342044'), + (67240, 729, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'w4WM2Jqm', '6342298'), + (67241, 729, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'w4WM2Jqm', '6343294'), + (67242, 729, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'w4WM2Jqm', '6347034'), + (67243, 729, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'w4WM2Jqm', '6347056'), + (67244, 729, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'w4WM2Jqm', '6353830'), + (67245, 729, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'w4WM2Jqm', '6353831'), + (67246, 729, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'w4WM2Jqm', '6357867'), + (67247, 729, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'w4WM2Jqm', '6358652'), + (67248, 729, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'w4WM2Jqm', '6361709'), + (67249, 729, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'w4WM2Jqm', '6361710'), + (67250, 729, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'w4WM2Jqm', '6361711'), + (67251, 729, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'w4WM2Jqm', '6361712'), + (67252, 729, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'w4WM2Jqm', '6361713'), + (67253, 729, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'w4WM2Jqm', '6382573'), + (67254, 729, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'w4WM2Jqm', '6388604'), + (67255, 729, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'w4WM2Jqm', '6394629'), + (67256, 729, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'w4WM2Jqm', '6394631'), + (67257, 729, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'w4WM2Jqm', '6440863'), + (67258, 729, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'w4WM2Jqm', '6445440'), + (67259, 729, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'w4WM2Jqm', '6453951'), + (67260, 729, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'w4WM2Jqm', '6461696'), + (67261, 729, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'w4WM2Jqm', '6462129'), + (67262, 729, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'w4WM2Jqm', '6463218'), + (67263, 729, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'w4WM2Jqm', '6472181'), + (67264, 729, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'w4WM2Jqm', '6482693'), + (67265, 729, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'w4WM2Jqm', '6484200'), + (67266, 729, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'w4WM2Jqm', '6484680'), + (67267, 729, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'w4WM2Jqm', '6507741'), + (67268, 729, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'w4WM2Jqm', '6514659'), + (67269, 729, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'w4WM2Jqm', '6514660'), + (67270, 729, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'w4WM2Jqm', '6519103'), + (67271, 729, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'w4WM2Jqm', '6535681'), + (67272, 729, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'w4WM2Jqm', '6584747'), + (67273, 729, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'w4WM2Jqm', '6587097'), + (67274, 729, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'w4WM2Jqm', '6609022'), + (67275, 729, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'w4WM2Jqm', '6632757'), + (67276, 729, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'w4WM2Jqm', '6644187'), + (67277, 729, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'w4WM2Jqm', '6648951'), + (67278, 729, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'w4WM2Jqm', '6648952'), + (67279, 729, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'w4WM2Jqm', '6655401'), + (67280, 729, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'w4WM2Jqm', '6661585'), + (67281, 729, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'w4WM2Jqm', '6661588'), + (67282, 729, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'w4WM2Jqm', '6661589'), + (67283, 729, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'w4WM2Jqm', '6699906'), + (67284, 729, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'w4WM2Jqm', '6699913'), + (67285, 729, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'w4WM2Jqm', '6701109'), + (67286, 729, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'w4WM2Jqm', '6705219'), + (67287, 729, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'w4WM2Jqm', '6710153'), + (67288, 729, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'w4WM2Jqm', '6711552'), + (67289, 729, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'w4WM2Jqm', '6711553'), + (67290, 729, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'w4WM2Jqm', '6722688'), + (67291, 729, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'w4WM2Jqm', '6730620'), + (67292, 729, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'w4WM2Jqm', '6740364'), + (67293, 729, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'w4WM2Jqm', '6743829'), + (67294, 729, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'w4WM2Jqm', '7030380'), + (67295, 729, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'w4WM2Jqm', '7033677'), + (67296, 729, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'w4WM2Jqm', '7044715'), + (67297, 729, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'w4WM2Jqm', '7050318'), + (67298, 729, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'w4WM2Jqm', '7050319'), + (67299, 729, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'w4WM2Jqm', '7050322'), + (67300, 729, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'w4WM2Jqm', '7057804'), + (67301, 729, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'w4WM2Jqm', '7072824'), + (67302, 729, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'w4WM2Jqm', '7074348'), + (67303, 729, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'w4WM2Jqm', '7074364'), + (67304, 729, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'w4WM2Jqm', '7089267'), + (67305, 729, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'w4WM2Jqm', '7098747'), + (67306, 729, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'w4WM2Jqm', '7113468'), + (67307, 729, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'w4WM2Jqm', '7114856'), + (67308, 729, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'w4WM2Jqm', '7114951'), + (67309, 729, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'w4WM2Jqm', '7114955'), + (67310, 729, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'w4WM2Jqm', '7114956'), + (67311, 729, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'w4WM2Jqm', '7114957'), + (67312, 729, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'w4WM2Jqm', '7159484'), + (67313, 729, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'w4WM2Jqm', '7178446'), + (67314, 729, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'w4WM2Jqm', '7220467'), + (67315, 729, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'w4WM2Jqm', '7240354'), + (67316, 729, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'w4WM2Jqm', '7251633'), + (67317, 729, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'w4WM2Jqm', '7324073'), + (67318, 729, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'w4WM2Jqm', '7324074'), + (67319, 729, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'w4WM2Jqm', '7324075'), + (67320, 729, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'w4WM2Jqm', '7324078'), + (67321, 729, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'w4WM2Jqm', '7324082'), + (67322, 729, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'w4WM2Jqm', '7331457'), + (67323, 729, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'w4WM2Jqm', '7363643'), + (67324, 729, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'w4WM2Jqm', '7368606'), + (67325, 729, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'w4WM2Jqm', '7397462'), + (67326, 729, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'w4WM2Jqm', '7424275'), + (67327, 729, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'w4WM2Jqm', '7432751'), + (67328, 729, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'w4WM2Jqm', '7432752'), + (67329, 729, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'w4WM2Jqm', '7432753'), + (67330, 729, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432754'), + (67331, 729, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432755'), + (67332, 729, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432756'), + (67333, 729, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432758'), + (67334, 729, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'w4WM2Jqm', '7432759'), + (67335, 729, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'w4WM2Jqm', '7433834'), + (67336, 729, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'w4WM2Jqm', '7470197'), + (67337, 729, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'w4WM2Jqm', '7685613'), + (67338, 729, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'w4WM2Jqm', '7688194'), + (67339, 729, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'w4WM2Jqm', '7688196'), + (67340, 729, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'w4WM2Jqm', '7688289'), + (67341, 729, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'w4WM2Jqm', '7692763'), + (67342, 729, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'w4WM2Jqm', '7697552'), + (67343, 729, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'w4WM2Jqm', '7699878'), + (67344, 729, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'w4WM2Jqm', '7704043'), + (67345, 729, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'w4WM2Jqm', '7712467'), + (67346, 729, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'w4WM2Jqm', '7713585'), + (67347, 729, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'w4WM2Jqm', '7713586'), + (67348, 729, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'w4WM2Jqm', '7738518'), + (67349, 729, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'w4WM2Jqm', '7750636'), + (67350, 729, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'w4WM2Jqm', '7796540'), + (67351, 729, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'w4WM2Jqm', '7796541'), + (67352, 729, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'w4WM2Jqm', '7796542'), + (67353, 729, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'w4WM2Jqm', '7825913'), + (67354, 729, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'w4WM2Jqm', '7826209'), + (67355, 729, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'w4WM2Jqm', '7834742'), + (67356, 729, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'w4WM2Jqm', '7842108'), + (67357, 729, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'w4WM2Jqm', '7842902'), + (67358, 729, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'w4WM2Jqm', '7842903'), + (67359, 729, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'w4WM2Jqm', '7842904'), + (67360, 729, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'w4WM2Jqm', '7842905'), + (67361, 729, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'w4WM2Jqm', '7855719'), + (67362, 729, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'w4WM2Jqm', '7860683'), + (67363, 729, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'w4WM2Jqm', '7860684'), + (67364, 729, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'w4WM2Jqm', '7866095'), + (67365, 729, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'w4WM2Jqm', '7869170'), + (67366, 729, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'w4WM2Jqm', '7869188'), + (67367, 729, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'w4WM2Jqm', '7869201'), + (67368, 729, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'w4WM2Jqm', '7877465'), + (67369, 729, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'w4WM2Jqm', '7888250'), + (67370, 729, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'w4WM2Jqm', '7904777'), + (67371, 729, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'w4WM2Jqm', '8349164'), + (67372, 729, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'w4WM2Jqm', '8349545'), + (67373, 729, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'w4WM2Jqm', '8368028'), + (67374, 729, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'w4WM2Jqm', '8368029'), + (67375, 729, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'w4WM2Jqm', '8388462'), + (67376, 729, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'w4WM2Jqm', '8400273'), + (67377, 729, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'w4WM2Jqm', '8400275'), + (67378, 729, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'w4WM2Jqm', '8400276'), + (67379, 729, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'w4WM2Jqm', '8404977'), + (67380, 729, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'w4WM2Jqm', '8430783'), + (67381, 729, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'w4WM2Jqm', '8430784'), + (67382, 729, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'w4WM2Jqm', '8430799'), + (67383, 729, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'w4WM2Jqm', '8430800'), + (67384, 729, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'w4WM2Jqm', '8430801'), + (67385, 729, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'w4WM2Jqm', '8438709'), + (67386, 729, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'w4WM2Jqm', '8457738'), + (67387, 729, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'w4WM2Jqm', '8459566'), + (67388, 729, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'w4WM2Jqm', '8459567'), + (67389, 729, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'w4WM2Jqm', '8461032'), + (67390, 729, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'w4WM2Jqm', '8477877'), + (67391, 729, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'w4WM2Jqm', '8485688'), + (67392, 729, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'w4WM2Jqm', '8490587'), + (67393, 729, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'w4WM2Jqm', '8493552'), + (67394, 729, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'w4WM2Jqm', '8493553'), + (67395, 729, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'w4WM2Jqm', '8493554'), + (67396, 729, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'w4WM2Jqm', '8493555'), + (67397, 729, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'w4WM2Jqm', '8493556'), + (67398, 729, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'w4WM2Jqm', '8493557'), + (67399, 729, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'w4WM2Jqm', '8493558'), + (67400, 729, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'w4WM2Jqm', '8493559'), + (67401, 729, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'w4WM2Jqm', '8493560'), + (67402, 729, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'w4WM2Jqm', '8493561'), + (67403, 729, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'w4WM2Jqm', '8493572'), + (67404, 729, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'w4WM2Jqm', '8540725'), + (67405, 729, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'w4WM2Jqm', '8555421'), + (67406, 730, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oeVrMm', '6045684'), + (67407, 731, 3278, 'attending', '2025-09-30 15:00:37', '2025-12-17 19:46:13', 'Arneo6wA', '8535533'), + (67408, 731, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'Arneo6wA', '8540725'), + (67409, 731, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Arneo6wA', '8555421'), + (67410, 733, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kxlDVzd', '4736503'), + (67411, 733, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kxlDVzd', '4736504'), + (67412, 733, 1212, 'not_attending', '2022-03-01 05:06:31', '2025-12-17 19:47:32', '4kxlDVzd', '4780759'), + (67413, 733, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kxlDVzd', '5132533'), + (67414, 733, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4kxlDVzd', '5186582'), + (67415, 733, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4kxlDVzd', '5186583'), + (67416, 733, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4kxlDVzd', '5186585'), + (67417, 733, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4kxlDVzd', '5190437'), + (67418, 733, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', '4kxlDVzd', '5196763'), + (67419, 733, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '4kxlDVzd', '5199460'), + (67420, 733, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4kxlDVzd', '5215989'), + (67421, 733, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4kxlDVzd', '5223686'), + (67422, 733, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4kxlDVzd', '5227432'), + (67423, 733, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kxlDVzd', '6045684'), + (67424, 734, 991, 'not_attending', '2021-09-11 21:32:48', '2025-12-17 19:47:43', 'mRBnX7Qm', '4420738'), + (67425, 734, 992, 'not_attending', '2021-09-13 06:12:01', '2025-12-17 19:47:34', 'mRBnX7Qm', '4420739'), + (67426, 734, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'mRBnX7Qm', '4420741'), + (67427, 734, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'mRBnX7Qm', '4420744'), + (67428, 734, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mRBnX7Qm', '4420747'), + (67429, 734, 1023, 'not_attending', '2021-09-10 01:51:52', '2025-12-17 19:47:43', 'mRBnX7Qm', '4461883'), + (67430, 734, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'mRBnX7Qm', '4508342'), + (67431, 734, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mRBnX7Qm', '4568602'), + (67432, 734, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mRBnX7Qm', '4572153'), + (67433, 734, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mRBnX7Qm', '4585962'), + (67434, 734, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mRBnX7Qm', '4596356'), + (67435, 734, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'mRBnX7Qm', '4598860'), + (67436, 734, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'mRBnX7Qm', '4598861'), + (67437, 734, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'mRBnX7Qm', '4602797'), + (67438, 734, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'mRBnX7Qm', '4637896'), + (67439, 734, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mRBnX7Qm', '4642994'), + (67440, 734, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mRBnX7Qm', '4642995'), + (67441, 734, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mRBnX7Qm', '4642996'), + (67442, 734, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mRBnX7Qm', '4642997'), + (67443, 734, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mRBnX7Qm', '4645687'), + (67444, 734, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mRBnX7Qm', '4645698'), + (67445, 734, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mRBnX7Qm', '4645704'), + (67446, 734, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mRBnX7Qm', '4645705'), + (67447, 734, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mRBnX7Qm', '4668385'), + (67448, 734, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mRBnX7Qm', '6045684'), + (67449, 735, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXBv5Bvd', '6045684'), + (67450, 736, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'LmpVXGB4', '3470305'), + (67451, 736, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'LmpVXGB4', '3470991'), + (67452, 736, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'LmpVXGB4', '3517815'), + (67453, 736, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'LmpVXGB4', '3523941'), + (67454, 736, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'LmpVXGB4', '3533850'), + (67455, 736, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'LmpVXGB4', '3536632'), + (67456, 736, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'LmpVXGB4', '3536656'), + (67457, 736, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'LmpVXGB4', '3539916'), + (67458, 736, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'LmpVXGB4', '3539917'), + (67459, 736, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'LmpVXGB4', '3539918'), + (67460, 736, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'LmpVXGB4', '3539919'), + (67461, 736, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'LmpVXGB4', '3539920'), + (67462, 736, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'LmpVXGB4', '3539921'), + (67463, 736, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'LmpVXGB4', '3539922'), + (67464, 736, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'LmpVXGB4', '3539923'), + (67465, 736, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpVXGB4', '6045684'), + (67466, 737, 441, 'not_attending', '2020-11-08 05:29:16', '2025-12-17 19:47:54', 'Qd5zVgOm', '3256169'), + (67467, 737, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'Qd5zVgOm', '3266138'), + (67468, 737, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'Qd5zVgOm', '3281467'), + (67469, 737, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Qd5zVgOm', '3281470'), + (67470, 737, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'Qd5zVgOm', '3281829'), + (67471, 737, 468, 'attending', '2020-11-13 23:02:34', '2025-12-17 19:47:54', 'Qd5zVgOm', '3285413'), + (67472, 737, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Qd5zVgOm', '3285414'), + (67473, 737, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Qd5zVgOm', '3297764'), + (67474, 737, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Qd5zVgOm', '3313856'), + (67475, 737, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Qd5zVgOm', '3314909'), + (67476, 737, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Qd5zVgOm', '3314964'), + (67477, 737, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'Qd5zVgOm', '3323365'), + (67478, 737, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Qd5zVgOm', '3329383'), + (67479, 737, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Qd5zVgOm', '3351539'), + (67480, 737, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Qd5zVgOm', '3386848'), + (67481, 737, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Qd5zVgOm', '3389527'), + (67482, 737, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Qd5zVgOm', '3396499'), + (67483, 737, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Qd5zVgOm', '3403650'), + (67484, 737, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Qd5zVgOm', '3406988'), + (67485, 737, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Qd5zVgOm', '3416576'), + (67486, 737, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Qd5zVgOm', '3426074'), + (67487, 737, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd5zVgOm', '6045684'), + (67488, 738, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dw83JB0m', '5195095'), + (67489, 738, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dw83JB0m', '5223686'), + (67490, 738, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dw83JB0m', '5227432'), + (67491, 738, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dw83JB0m', '5247467'), + (67492, 738, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dw83JB0m', '5260800'), + (67493, 738, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dw83JB0m', '5269930'), + (67494, 738, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dw83JB0m', '5271448'), + (67495, 738, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dw83JB0m', '5271449'), + (67496, 738, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dw83JB0m', '5276469'), + (67497, 738, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dw83JB0m', '5278159'), + (67498, 738, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dw83JB0m', '6045684'), + (67499, 739, 919, 'not_attending', '2021-07-15 00:59:54', '2025-12-17 19:47:39', 'AnbbDwwA', '4275957'), + (67500, 739, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AnbbDwwA', '6045684'), + (67501, 740, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Pm7X27pA', '3539919'), + (67502, 740, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm7X27pA', '3539920'), + (67503, 740, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm7X27pA', '3539921'), + (67504, 740, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Pm7X27pA', '3539922'), + (67505, 740, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Pm7X27pA', '3539923'), + (67506, 740, 671, 'not_attending', '2021-07-17 19:52:36', '2025-12-17 19:47:39', 'Pm7X27pA', '3547149'), + (67507, 740, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'Pm7X27pA', '3583262'), + (67508, 740, 744, 'not_attending', '2021-06-12 20:33:00', '2025-12-17 19:47:47', 'Pm7X27pA', '3680624'), + (67509, 740, 746, 'attending', '2021-06-30 17:39:26', '2025-12-17 19:47:39', 'Pm7X27pA', '3680626'), + (67510, 740, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7X27pA', '3730212'), + (67511, 740, 775, 'attending', '2021-04-21 08:25:59', '2025-12-17 19:47:45', 'Pm7X27pA', '3731062'), + (67512, 740, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7X27pA', '3793156'), + (67513, 740, 805, 'not_attending', '2021-06-14 18:15:47', '2025-12-17 19:47:47', 'Pm7X27pA', '3804777'), + (67514, 740, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'Pm7X27pA', '3974109'), + (67515, 740, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7X27pA', '3975311'), + (67516, 740, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'Pm7X27pA', '3975312'), + (67517, 740, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7X27pA', '3994992'), + (67518, 740, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Pm7X27pA', '4014338'), + (67519, 740, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'Pm7X27pA', '4021848'), + (67520, 740, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Pm7X27pA', '4136744'), + (67521, 740, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'Pm7X27pA', '4136937'), + (67522, 740, 871, 'attending', '2021-07-07 13:07:31', '2025-12-17 19:47:39', 'Pm7X27pA', '4136938'), + (67523, 740, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Pm7X27pA', '4136947'), + (67524, 740, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Pm7X27pA', '4210314'), + (67525, 740, 887, 'attending', '2021-07-14 20:35:40', '2025-12-17 19:47:39', 'Pm7X27pA', '4225444'), + (67526, 740, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Pm7X27pA', '4239259'), + (67527, 740, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'Pm7X27pA', '4240316'), + (67528, 740, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Pm7X27pA', '4240317'), + (67529, 740, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Pm7X27pA', '4240318'), + (67530, 740, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Pm7X27pA', '4240320'), + (67531, 740, 904, 'maybe', '2021-07-06 08:50:06', '2025-12-17 19:47:39', 'Pm7X27pA', '4241594'), + (67532, 740, 905, 'attending', '2021-07-06 08:49:05', '2025-12-17 19:47:39', 'Pm7X27pA', '4250163'), + (67533, 740, 909, 'maybe', '2021-07-10 18:29:14', '2025-12-17 19:47:39', 'Pm7X27pA', '4258187'), + (67534, 740, 910, 'maybe', '2021-07-13 20:40:42', '2025-12-17 19:47:39', 'Pm7X27pA', '4258189'), + (67535, 740, 919, 'not_attending', '2021-07-17 19:52:32', '2025-12-17 19:47:39', 'Pm7X27pA', '4275957'), + (67536, 740, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Pm7X27pA', '4277819'), + (67537, 740, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Pm7X27pA', '4301723'), + (67538, 740, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'Pm7X27pA', '4302093'), + (67539, 740, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Pm7X27pA', '4304151'), + (67540, 740, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Pm7X27pA', '4356801'), + (67541, 740, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Pm7X27pA', '4366186'), + (67542, 740, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Pm7X27pA', '4366187'), + (67543, 740, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Pm7X27pA', '4420735'), + (67544, 740, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Pm7X27pA', '4420738'), + (67545, 740, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Pm7X27pA', '4420739'), + (67546, 740, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Pm7X27pA', '4420741'), + (67547, 740, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Pm7X27pA', '4420744'), + (67548, 740, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Pm7X27pA', '4420747'), + (67549, 740, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Pm7X27pA', '4420748'), + (67550, 740, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Pm7X27pA', '4420749'), + (67551, 740, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Pm7X27pA', '4461883'), + (67552, 740, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Pm7X27pA', '4508342'), + (67553, 740, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7X27pA', '6045684'), + (67554, 741, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4736497'), + (67555, 741, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4736499'), + (67556, 741, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4736500'), + (67557, 741, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm7Q1o9Y4', '4736503'), + (67558, 741, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm7Q1o9Y4', '4736504'), + (67559, 741, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm7Q1o9Y4', '4746789'), + (67560, 741, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm7Q1o9Y4', '4753929'), + (67561, 741, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm7Q1o9Y4', '5038850'), + (67562, 741, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm7Q1o9Y4', '5045826'), + (67563, 741, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm7Q1o9Y4', '5132533'), + (67564, 741, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm7Q1o9Y4', '6045684'), + (67565, 742, 975, 'maybe', '2021-08-16 17:44:22', '2025-12-17 19:47:42', 'QdJbkbPd', '4367341'), + (67566, 742, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'QdJbkbPd', '6045684'), + (67567, 743, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', 'AYwOGa9d', '5426882'), + (67568, 743, 1513, 'attending', '2022-07-16 01:15:13', '2025-12-17 19:47:19', 'AYwOGa9d', '5441125'), + (67569, 743, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AYwOGa9d', '5441126'), + (67570, 743, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AYwOGa9d', '5441128'), + (67571, 743, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AYwOGa9d', '5446643'), + (67572, 743, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'AYwOGa9d', '5449068'), + (67573, 743, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AYwOGa9d', '5453325'), + (67574, 743, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AYwOGa9d', '5454516'), + (67575, 743, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AYwOGa9d', '5454605'), + (67576, 743, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AYwOGa9d', '5455037'), + (67577, 743, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AYwOGa9d', '5461278'), + (67578, 743, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AYwOGa9d', '5469480'), + (67579, 743, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AYwOGa9d', '5471073'), + (67580, 743, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AYwOGa9d', '5474663'), + (67581, 743, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AYwOGa9d', '5482022'), + (67582, 743, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AYwOGa9d', '5482793'), + (67583, 743, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AYwOGa9d', '5488912'), + (67584, 743, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AYwOGa9d', '5492192'), + (67585, 743, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AYwOGa9d', '5493139'), + (67586, 743, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AYwOGa9d', '5493200'), + (67587, 743, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AYwOGa9d', '5502188'), + (67588, 743, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AYwOGa9d', '6045684'), + (67589, 744, 398, 'attending', '2021-01-20 17:38:30', '2025-12-17 19:47:49', 'rdOrzKW4', '3236453'), + (67590, 744, 555, 'not_attending', '2021-01-22 16:37:59', '2025-12-17 19:47:49', 'rdOrzKW4', '3416576'), + (67591, 744, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'rdOrzKW4', '3426074'), + (67592, 744, 565, 'attending', '2021-01-27 16:58:05', '2025-12-17 19:47:49', 'rdOrzKW4', '3426083'), + (67593, 744, 566, 'attending', '2021-01-30 17:35:35', '2025-12-17 19:47:49', 'rdOrzKW4', '3427928'), + (67594, 744, 568, 'attending', '2021-01-27 22:40:22', '2025-12-17 19:47:50', 'rdOrzKW4', '3430267'), + (67595, 744, 569, 'not_attending', '2021-01-25 07:02:07', '2025-12-17 19:47:49', 'rdOrzKW4', '3432673'), + (67596, 744, 571, 'attending', '2021-02-12 21:48:48', '2025-12-17 19:47:50', 'rdOrzKW4', '3435539'), + (67597, 744, 578, 'attending', '2021-02-03 18:55:57', '2025-12-17 19:47:50', 'rdOrzKW4', '3440043'), + (67598, 744, 579, 'attending', '2021-02-06 23:56:21', '2025-12-17 19:47:50', 'rdOrzKW4', '3440978'), + (67599, 744, 581, 'attending', '2021-02-01 23:59:23', '2025-12-17 19:47:50', 'rdOrzKW4', '3445029'), + (67600, 744, 585, 'attending', '2021-02-08 20:28:20', '2025-12-17 19:47:50', 'rdOrzKW4', '3449468'), + (67601, 744, 586, 'attending', '2021-02-10 22:59:27', '2025-12-17 19:47:50', 'rdOrzKW4', '3449469'), + (67602, 744, 587, 'attending', '2021-02-15 19:46:25', '2025-12-17 19:47:50', 'rdOrzKW4', '3449470'), + (67603, 744, 588, 'attending', '2021-02-14 21:01:44', '2025-12-17 19:47:50', 'rdOrzKW4', '3449471'), + (67604, 744, 590, 'attending', '2021-02-11 21:54:30', '2025-12-17 19:47:50', 'rdOrzKW4', '3459150'), + (67605, 744, 592, 'attending', '2021-02-24 22:12:06', '2025-12-17 19:47:50', 'rdOrzKW4', '3467757'), + (67606, 744, 598, 'attending', '2021-02-09 22:24:25', '2025-12-17 19:47:50', 'rdOrzKW4', '3468003'), + (67607, 744, 602, 'attending', '2021-02-12 21:47:01', '2025-12-17 19:47:50', 'rdOrzKW4', '3470303'), + (67608, 744, 603, 'attending', '2021-02-21 00:52:38', '2025-12-17 19:47:50', 'rdOrzKW4', '3470304'), + (67609, 744, 604, 'attending', '2021-02-24 22:12:58', '2025-12-17 19:47:50', 'rdOrzKW4', '3470305'), + (67610, 744, 605, 'attending', '2021-02-15 00:40:56', '2025-12-17 19:47:50', 'rdOrzKW4', '3470991'), + (67611, 744, 621, 'not_attending', '2021-03-07 00:08:40', '2025-12-17 19:47:51', 'rdOrzKW4', '3517815'), + (67612, 744, 622, 'attending', '2021-03-13 06:40:12', '2025-12-17 19:47:51', 'rdOrzKW4', '3517816'), + (67613, 744, 623, 'attending', '2021-02-25 18:09:53', '2025-12-17 19:47:50', 'rdOrzKW4', '3523941'), + (67614, 744, 628, 'not_attending', '2021-03-15 21:46:02', '2025-12-17 19:47:51', 'rdOrzKW4', '3533305'), + (67615, 744, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'rdOrzKW4', '3533850'), + (67616, 744, 635, 'not_attending', '2021-04-06 18:15:29', '2025-12-17 19:47:44', 'rdOrzKW4', '3534719'), + (67617, 744, 637, 'attending', '2021-03-01 17:33:22', '2025-12-17 19:47:51', 'rdOrzKW4', '3536411'), + (67618, 744, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'rdOrzKW4', '3536632'), + (67619, 744, 639, 'attending', '2021-03-01 19:41:07', '2025-12-17 19:47:51', 'rdOrzKW4', '3536656'), + (67620, 744, 641, 'not_attending', '2021-03-31 23:07:26', '2025-12-17 19:47:44', 'rdOrzKW4', '3539916'), + (67621, 744, 642, 'attending', '2021-04-08 16:46:39', '2025-12-17 19:47:44', 'rdOrzKW4', '3539917'), + (67622, 744, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'rdOrzKW4', '3539918'), + (67623, 744, 644, 'not_attending', '2021-04-24 01:18:20', '2025-12-17 19:47:46', 'rdOrzKW4', '3539919'), + (67624, 744, 645, 'not_attending', '2021-05-04 21:36:08', '2025-12-17 19:47:46', 'rdOrzKW4', '3539920'), + (67625, 744, 646, 'not_attending', '2021-05-13 22:41:24', '2025-12-17 19:47:46', 'rdOrzKW4', '3539921'), + (67626, 744, 647, 'not_attending', '2021-05-29 19:27:51', '2025-12-17 19:47:47', 'rdOrzKW4', '3539922'), + (67627, 744, 648, 'not_attending', '2021-05-29 22:49:36', '2025-12-17 19:47:47', 'rdOrzKW4', '3539923'), + (67628, 744, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'rdOrzKW4', '3539927'), + (67629, 744, 682, 'not_attending', '2021-03-20 21:12:08', '2025-12-17 19:47:51', 'rdOrzKW4', '3548806'), + (67630, 744, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'rdOrzKW4', '3582734'), + (67631, 744, 707, 'attending', '2021-04-25 19:48:56', '2025-12-17 19:47:46', 'rdOrzKW4', '3583262'), + (67632, 744, 713, 'attending', '2021-04-01 22:51:22', '2025-12-17 19:47:44', 'rdOrzKW4', '3604061'), + (67633, 744, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'rdOrzKW4', '3619523'), + (67634, 744, 724, 'attending', '2021-05-04 21:36:21', '2025-12-17 19:47:46', 'rdOrzKW4', '3661369'), + (67635, 744, 731, 'not_attending', '2021-04-06 18:15:12', '2025-12-17 19:47:44', 'rdOrzKW4', '3674262'), + (67636, 744, 735, 'maybe', '2021-04-06 18:15:06', '2025-12-17 19:47:46', 'rdOrzKW4', '3677402'), + (67637, 744, 759, 'attending', '2021-04-22 20:24:38', '2025-12-17 19:47:45', 'rdOrzKW4', '3713701'), + (67638, 744, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'rdOrzKW4', '3730212'), + (67639, 744, 777, 'not_attending', '2021-05-01 18:01:06', '2025-12-17 19:47:46', 'rdOrzKW4', '3746248'), + (67640, 744, 788, 'attending', '2021-05-07 22:30:20', '2025-12-17 19:47:46', 'rdOrzKW4', '3781975'), + (67641, 744, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'rdOrzKW4', '3793156'), + (67642, 744, 805, 'attending', '2021-06-13 17:35:56', '2025-12-17 19:47:47', 'rdOrzKW4', '3804777'), + (67643, 744, 823, 'not_attending', '2021-06-19 18:32:25', '2025-12-17 19:47:48', 'rdOrzKW4', '3974109'), + (67644, 744, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'rdOrzKW4', '3975311'), + (67645, 744, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'rdOrzKW4', '3975312'), + (67646, 744, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOrzKW4', '3994992'), + (67647, 744, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'rdOrzKW4', '4014338'), + (67648, 744, 867, 'not_attending', '2021-06-26 21:22:46', '2025-12-17 19:47:38', 'rdOrzKW4', '4021848'), + (67649, 744, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'rdOrzKW4', '4136744'), + (67650, 744, 870, 'not_attending', '2021-07-03 18:17:28', '2025-12-17 19:47:39', 'rdOrzKW4', '4136937'), + (67651, 744, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'rdOrzKW4', '4136938'), + (67652, 744, 872, 'attending', '2021-07-19 22:58:34', '2025-12-17 19:47:40', 'rdOrzKW4', '4136947'), + (67653, 744, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOrzKW4', '4210314'), + (67654, 744, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'rdOrzKW4', '4225444'), + (67655, 744, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdOrzKW4', '4239259'), + (67656, 744, 900, 'attending', '2021-07-24 16:11:44', '2025-12-17 19:47:40', 'rdOrzKW4', '4240316'), + (67657, 744, 901, 'not_attending', '2021-07-31 02:00:36', '2025-12-17 19:47:40', 'rdOrzKW4', '4240317'), + (67658, 744, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdOrzKW4', '4240318'), + (67659, 744, 903, 'attending', '2021-08-14 00:23:17', '2025-12-17 19:47:42', 'rdOrzKW4', '4240320'), + (67660, 744, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdOrzKW4', '4250163'), + (67661, 744, 919, 'attending', '2021-07-16 15:57:18', '2025-12-17 19:47:39', 'rdOrzKW4', '4275957'), + (67662, 744, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdOrzKW4', '4277819'), + (67663, 744, 924, 'not_attending', '2021-07-22 02:21:38', '2025-12-17 19:47:40', 'rdOrzKW4', '4297137'), + (67664, 744, 926, 'attending', '2021-08-18 22:49:27', '2025-12-17 19:47:42', 'rdOrzKW4', '4297211'), + (67665, 744, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdOrzKW4', '4301723'), + (67666, 744, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'rdOrzKW4', '4302093'), + (67667, 744, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOrzKW4', '4304151'), + (67668, 744, 967, 'attending', '2021-08-19 19:12:36', '2025-12-17 19:47:42', 'rdOrzKW4', '4356164'), + (67669, 744, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOrzKW4', '4356801'), + (67670, 744, 973, 'attending', '2021-08-15 21:33:26', '2025-12-17 19:47:42', 'rdOrzKW4', '4366186'), + (67671, 744, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdOrzKW4', '4366187'), + (67672, 744, 976, 'attending', '2021-08-19 15:41:24', '2025-12-17 19:47:42', 'rdOrzKW4', '4373933'), + (67673, 744, 990, 'attending', '2021-09-01 18:19:04', '2025-12-17 19:47:43', 'rdOrzKW4', '4420735'), + (67674, 744, 991, 'attending', '2021-09-11 17:31:24', '2025-12-17 19:47:43', 'rdOrzKW4', '4420738'), + (67675, 744, 992, 'not_attending', '2021-09-18 07:00:08', '2025-12-17 19:47:34', 'rdOrzKW4', '4420739'), + (67676, 744, 993, 'attending', '2021-09-22 00:56:56', '2025-12-17 19:47:34', 'rdOrzKW4', '4420741'), + (67677, 744, 994, 'attending', '2021-10-02 02:31:48', '2025-12-17 19:47:34', 'rdOrzKW4', '4420742'), + (67678, 744, 995, 'not_attending', '2021-10-09 16:47:52', '2025-12-17 19:47:34', 'rdOrzKW4', '4420744'), + (67679, 744, 996, 'attending', '2021-10-16 18:02:32', '2025-12-17 19:47:35', 'rdOrzKW4', '4420747'), + (67680, 744, 997, 'attending', '2021-10-22 20:48:10', '2025-12-17 19:47:35', 'rdOrzKW4', '4420748'), + (67681, 744, 998, 'attending', '2021-10-30 20:52:53', '2025-12-17 19:47:36', 'rdOrzKW4', '4420749'), + (67682, 744, 1020, 'attending', '2021-09-13 21:55:51', '2025-12-17 19:47:43', 'rdOrzKW4', '4451787'), + (67683, 744, 1022, 'attending', '2021-09-15 17:59:07', '2025-12-17 19:47:43', 'rdOrzKW4', '4458628'), + (67684, 744, 1023, 'not_attending', '2021-09-13 20:45:43', '2025-12-17 19:47:43', 'rdOrzKW4', '4461883'), + (67685, 744, 1032, 'not_attending', '2021-09-26 16:40:24', '2025-12-17 19:47:34', 'rdOrzKW4', '4473825'), + (67686, 744, 1036, 'attending', '2021-09-22 20:42:29', '2025-12-17 19:47:34', 'rdOrzKW4', '4493166'), + (67687, 744, 1064, 'not_attending', '2021-09-21 23:30:25', '2025-12-17 19:47:34', 'rdOrzKW4', '4499526'), + (67688, 744, 1065, 'attending', '2021-09-21 23:30:29', '2025-12-17 19:47:34', 'rdOrzKW4', '4505800'), + (67689, 744, 1067, 'attending', '2021-09-24 15:30:12', '2025-12-17 19:47:34', 'rdOrzKW4', '4508342'), + (67690, 744, 1072, 'attending', '2021-10-03 06:12:33', '2025-12-17 19:47:34', 'rdOrzKW4', '4516287'), + (67691, 744, 1074, 'attending', '2021-09-29 19:41:54', '2025-12-17 19:47:34', 'rdOrzKW4', '4528953'), + (67692, 744, 1080, 'attending', '2021-10-11 00:09:12', '2025-12-17 19:47:34', 'rdOrzKW4', '4564599'), + (67693, 744, 1081, 'attending', '2021-10-11 00:09:55', '2025-12-17 19:47:34', 'rdOrzKW4', '4564602'), + (67694, 744, 1086, 'attending', '2021-10-14 20:16:55', '2025-12-17 19:47:34', 'rdOrzKW4', '4568602'), + (67695, 744, 1087, 'not_attending', '2021-10-16 18:02:24', '2025-12-17 19:47:35', 'rdOrzKW4', '4572153'), + (67696, 744, 1088, 'attending', '2021-10-16 04:22:19', '2025-12-17 19:47:35', 'rdOrzKW4', '4574382'), + (67697, 744, 1091, 'attending', '2021-10-17 02:16:51', '2025-12-17 19:47:35', 'rdOrzKW4', '4575829'), + (67698, 744, 1093, 'attending', '2021-10-22 18:43:17', '2025-12-17 19:47:35', 'rdOrzKW4', '4585962'), + (67699, 744, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'rdOrzKW4', '4596356'), + (67700, 744, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'rdOrzKW4', '4598860'), + (67701, 744, 1098, 'not_attending', '2021-11-10 20:26:48', '2025-12-17 19:47:36', 'rdOrzKW4', '4598861'), + (67702, 744, 1099, 'not_attending', '2021-11-06 14:58:39', '2025-12-17 19:47:36', 'rdOrzKW4', '4602797'), + (67703, 744, 1105, 'attending', '2021-11-10 20:26:33', '2025-12-17 19:47:36', 'rdOrzKW4', '4618567'), + (67704, 744, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'rdOrzKW4', '4637896'), + (67705, 744, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'rdOrzKW4', '4642994'), + (67706, 744, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'rdOrzKW4', '4642995'), + (67707, 744, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'rdOrzKW4', '4642996'), + (67708, 744, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'rdOrzKW4', '4642997'), + (67709, 744, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'rdOrzKW4', '4645687'), + (67710, 744, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'rdOrzKW4', '4645698'), + (67711, 744, 1128, 'not_attending', '2021-11-19 18:58:48', '2025-12-17 19:47:37', 'rdOrzKW4', '4645704'), + (67712, 744, 1129, 'not_attending', '2021-11-27 22:37:31', '2025-12-17 19:47:37', 'rdOrzKW4', '4645705'), + (67713, 744, 1130, 'not_attending', '2021-12-01 02:39:55', '2025-12-17 19:47:37', 'rdOrzKW4', '4658824'), + (67714, 744, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'rdOrzKW4', '4668385'), + (67715, 744, 1149, 'not_attending', '2021-12-09 04:32:30', '2025-12-17 19:47:38', 'rdOrzKW4', '4694407'), + (67716, 744, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'rdOrzKW4', '4706262'), + (67717, 744, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'rdOrzKW4', '4736497'), + (67718, 744, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'rdOrzKW4', '4736499'), + (67719, 744, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'rdOrzKW4', '4736500'), + (67720, 744, 1181, 'attending', '2022-03-05 02:55:52', '2025-12-17 19:47:33', 'rdOrzKW4', '4736503'), + (67721, 744, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'rdOrzKW4', '4736504'), + (67722, 744, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'rdOrzKW4', '4746789'), + (67723, 744, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'rdOrzKW4', '4753929'), + (67724, 744, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'rdOrzKW4', '5038850'), + (67725, 744, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'rdOrzKW4', '5045826'), + (67726, 744, 1259, 'maybe', '2022-03-01 19:53:17', '2025-12-17 19:47:33', 'rdOrzKW4', '5132533'), + (67727, 744, 1272, 'not_attending', '2022-03-19 18:06:05', '2025-12-17 19:47:25', 'rdOrzKW4', '5186582'), + (67728, 744, 1273, 'not_attending', '2022-03-26 21:34:14', '2025-12-17 19:47:25', 'rdOrzKW4', '5186583'), + (67729, 744, 1274, 'attending', '2022-04-02 17:46:08', '2025-12-17 19:47:26', 'rdOrzKW4', '5186585'), + (67730, 744, 1281, 'not_attending', '2022-04-09 20:31:08', '2025-12-17 19:47:27', 'rdOrzKW4', '5190437'), + (67731, 744, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'rdOrzKW4', '5195095'), + (67732, 744, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'rdOrzKW4', '5215989'), + (67733, 744, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'rdOrzKW4', '5223686'), + (67734, 744, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'rdOrzKW4', '5227432'), + (67735, 744, 1311, 'not_attending', '2022-04-08 02:44:27', '2025-12-17 19:47:27', 'rdOrzKW4', '5231430'), + (67736, 744, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', 'rdOrzKW4', '5231461'), + (67737, 744, 1346, 'not_attending', '2022-04-23 15:05:08', '2025-12-17 19:47:27', 'rdOrzKW4', '5247467'), + (67738, 744, 1362, 'not_attending', '2022-04-30 22:23:51', '2025-12-17 19:47:28', 'rdOrzKW4', '5260800'), + (67739, 744, 1374, 'not_attending', '2022-05-07 15:33:10', '2025-12-17 19:47:28', 'rdOrzKW4', '5269930'), + (67740, 744, 1378, 'not_attending', '2022-05-14 22:23:06', '2025-12-17 19:47:29', 'rdOrzKW4', '5271448'), + (67741, 744, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'rdOrzKW4', '5271449'), + (67742, 744, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'rdOrzKW4', '5276469'), + (67743, 744, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'rdOrzKW4', '5278159'), + (67744, 744, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'rdOrzKW4', '5363695'), + (67745, 744, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'rdOrzKW4', '5365960'), + (67746, 744, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'rdOrzKW4', '5368973'), + (67747, 744, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'rdOrzKW4', '5378247'), + (67748, 744, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'rdOrzKW4', '5389605'), + (67749, 744, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'rdOrzKW4', '5397265'), + (67750, 744, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'rdOrzKW4', '5403967'), + (67751, 744, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'rdOrzKW4', '5404786'), + (67752, 744, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'rdOrzKW4', '5405203'), + (67753, 744, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'rdOrzKW4', '5411699'), + (67754, 744, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'rdOrzKW4', '5412550'), + (67755, 744, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'rdOrzKW4', '5415046'), + (67756, 744, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'rdOrzKW4', '5422086'), + (67757, 744, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'rdOrzKW4', '5422406'), + (67758, 744, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'rdOrzKW4', '5424565'), + (67759, 744, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'rdOrzKW4', '5426882'), + (67760, 744, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'rdOrzKW4', '5427083'), + (67761, 744, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'rdOrzKW4', '5441125'), + (67762, 744, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'rdOrzKW4', '5441126'), + (67763, 744, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'rdOrzKW4', '5441128'), + (67764, 744, 1517, 'attending', '2022-08-27 17:39:16', '2025-12-17 19:47:23', 'rdOrzKW4', '5441130'), + (67765, 744, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'rdOrzKW4', '5441131'), + (67766, 744, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'rdOrzKW4', '5441132'), + (67767, 744, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'rdOrzKW4', '5446643'), + (67768, 744, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'rdOrzKW4', '5453325'), + (67769, 744, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'rdOrzKW4', '5454516'), + (67770, 744, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'rdOrzKW4', '5454605'), + (67771, 744, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'rdOrzKW4', '5455037'), + (67772, 744, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'rdOrzKW4', '5461278'), + (67773, 744, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'rdOrzKW4', '5469480'), + (67774, 744, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'rdOrzKW4', '5471073'), + (67775, 744, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'rdOrzKW4', '5474663'), + (67776, 744, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'rdOrzKW4', '5482022'), + (67777, 744, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'rdOrzKW4', '5482793'), + (67778, 744, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'rdOrzKW4', '5488912'), + (67779, 744, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'rdOrzKW4', '5492192'), + (67780, 744, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'rdOrzKW4', '5493139'), + (67781, 744, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'rdOrzKW4', '5493200'), + (67782, 744, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'rdOrzKW4', '5502188'), + (67783, 744, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'rdOrzKW4', '5505059'), + (67784, 744, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'rdOrzKW4', '5509055'), + (67785, 744, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'rdOrzKW4', '5512862'), + (67786, 744, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'rdOrzKW4', '5513985'), + (67787, 744, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'rdOrzKW4', '5519981'), + (67788, 744, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'rdOrzKW4', '5522550'), + (67789, 744, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'rdOrzKW4', '5534683'), + (67790, 744, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'rdOrzKW4', '5537735'), + (67791, 744, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'rdOrzKW4', '5540859'), + (67792, 744, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'rdOrzKW4', '5546619'), + (67793, 744, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'rdOrzKW4', '5555245'), + (67794, 744, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'rdOrzKW4', '5557747'), + (67795, 744, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'rdOrzKW4', '5560255'), + (67796, 744, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'rdOrzKW4', '5562906'), + (67797, 744, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'rdOrzKW4', '5600604'), + (67798, 744, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'rdOrzKW4', '5605544'), + (67799, 744, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'rdOrzKW4', '5606737'), + (67800, 744, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'rdOrzKW4', '5630960'), + (67801, 744, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'rdOrzKW4', '5630961'), + (67802, 744, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'rdOrzKW4', '5630962'), + (67803, 744, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'rdOrzKW4', '5630966'), + (67804, 744, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'rdOrzKW4', '5630967'), + (67805, 744, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'rdOrzKW4', '5630968'), + (67806, 744, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'rdOrzKW4', '5635406'), + (67807, 744, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'rdOrzKW4', '5638765'), + (67808, 744, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'rdOrzKW4', '5640097'), + (67809, 744, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'rdOrzKW4', '5640843'), + (67810, 744, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'rdOrzKW4', '5641521'), + (67811, 744, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'rdOrzKW4', '5642818'), + (67812, 744, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'rdOrzKW4', '5652395'), + (67813, 744, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'rdOrzKW4', '5670445'), + (67814, 744, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'rdOrzKW4', '5671637'), + (67815, 744, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'rdOrzKW4', '5672329'), + (67816, 744, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'rdOrzKW4', '5674057'), + (67817, 744, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'rdOrzKW4', '5674060'), + (67818, 744, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'rdOrzKW4', '5677461'), + (67819, 744, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'rdOrzKW4', '5698046'), + (67820, 744, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'rdOrzKW4', '5699760'), + (67821, 744, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'rdOrzKW4', '5741601'), + (67822, 744, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'rdOrzKW4', '5763458'), + (67823, 744, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'rdOrzKW4', '5774172'), + (67824, 744, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'rdOrzKW4', '5818247'), + (67825, 744, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'rdOrzKW4', '5819471'), + (67826, 744, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'rdOrzKW4', '5827739'), + (67827, 744, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'rdOrzKW4', '5844306'), + (67828, 744, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'rdOrzKW4', '5850159'), + (67829, 744, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'rdOrzKW4', '5858999'), + (67830, 744, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'rdOrzKW4', '5871984'), + (67831, 744, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'rdOrzKW4', '5876354'), + (67832, 744, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'rdOrzKW4', '5880939'), + (67833, 744, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'rdOrzKW4', '5880940'), + (67834, 744, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'rdOrzKW4', '5880942'), + (67835, 744, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'rdOrzKW4', '5880943'), + (67836, 744, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'rdOrzKW4', '5887890'), + (67837, 744, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'rdOrzKW4', '5888598'), + (67838, 744, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'rdOrzKW4', '5893260'), + (67839, 744, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'rdOrzKW4', '5899826'), + (67840, 744, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'rdOrzKW4', '5900199'), + (67841, 744, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'rdOrzKW4', '5900200'), + (67842, 744, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'rdOrzKW4', '5900202'), + (67843, 744, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'rdOrzKW4', '5900203'), + (67844, 744, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'rdOrzKW4', '5901108'), + (67845, 744, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'rdOrzKW4', '5901126'), + (67846, 744, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'rdOrzKW4', '5909655'), + (67847, 744, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'rdOrzKW4', '5910522'), + (67848, 744, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'rdOrzKW4', '5910526'), + (67849, 744, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'rdOrzKW4', '5910528'), + (67850, 744, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'rdOrzKW4', '5916219'), + (67851, 744, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'rdOrzKW4', '5936234'), + (67852, 744, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'rdOrzKW4', '5958351'), + (67853, 744, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'rdOrzKW4', '5959751'), + (67854, 744, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'rdOrzKW4', '5959755'), + (67855, 744, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'rdOrzKW4', '5960055'), + (67856, 744, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'rdOrzKW4', '5961684'), + (67857, 744, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'rdOrzKW4', '5962132'), + (67858, 744, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'rdOrzKW4', '5962133'), + (67859, 744, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'rdOrzKW4', '5962134'), + (67860, 744, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'rdOrzKW4', '5962317'), + (67861, 744, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'rdOrzKW4', '5962318'), + (67862, 744, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'rdOrzKW4', '5965933'), + (67863, 744, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'rdOrzKW4', '5967014'), + (67864, 744, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'rdOrzKW4', '5972763'), + (67865, 744, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'rdOrzKW4', '5972815'), + (67866, 744, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'rdOrzKW4', '5974016'), + (67867, 744, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'rdOrzKW4', '5975052'), + (67868, 744, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'rdOrzKW4', '5975054'), + (67869, 744, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'rdOrzKW4', '5981515'), + (67870, 744, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'rdOrzKW4', '5993516'), + (67871, 744, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'rdOrzKW4', '5998939'), + (67872, 744, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'rdOrzKW4', '6028191'), + (67873, 744, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'rdOrzKW4', '6040066'), + (67874, 744, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'rdOrzKW4', '6042717'), + (67875, 744, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'rdOrzKW4', '6044838'), + (67876, 744, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'rdOrzKW4', '6044839'), + (67877, 744, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOrzKW4', '6045684'), + (67878, 744, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'rdOrzKW4', '6050104'), + (67879, 744, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'rdOrzKW4', '6053195'), + (67880, 744, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'rdOrzKW4', '6053198'), + (67881, 744, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'rdOrzKW4', '6056085'), + (67882, 744, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'rdOrzKW4', '6056916'), + (67883, 744, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'rdOrzKW4', '6059290'), + (67884, 744, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'rdOrzKW4', '6060328'), + (67885, 744, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'rdOrzKW4', '6061037'), + (67886, 744, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'rdOrzKW4', '6061039'), + (67887, 744, 2020, 'not_attending', '2023-04-14 17:15:22', '2025-12-17 19:46:59', 'rdOrzKW4', '6065813'), + (67888, 744, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'rdOrzKW4', '6067245'), + (67889, 744, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'rdOrzKW4', '6068094'), + (67890, 744, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'rdOrzKW4', '6068252'), + (67891, 744, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'rdOrzKW4', '6068253'), + (67892, 744, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'rdOrzKW4', '6068254'), + (67893, 744, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'rdOrzKW4', '6068280'), + (67894, 744, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'rdOrzKW4', '6069093'), + (67895, 744, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'rdOrzKW4', '6072528'), + (67896, 744, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'rdOrzKW4', '6075556'), + (67897, 744, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'rdOrzKW4', '6079840'), + (67898, 744, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'rdOrzKW4', '6083398'), + (67899, 744, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'rdOrzKW4', '6093504'), + (67900, 744, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'rdOrzKW4', '6097414'), + (67901, 744, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'rdOrzKW4', '6097442'), + (67902, 744, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'rdOrzKW4', '6097684'), + (67903, 744, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'rdOrzKW4', '6098762'), + (67904, 744, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'rdOrzKW4', '6101362'), + (67905, 744, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'rdOrzKW4', '6107314'), + (67906, 745, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AnbXzrLA', '6045684'), + (67907, 746, 245, 'not_attending', '2020-12-01 21:33:56', '2025-12-17 19:47:54', 'oAQp8RZm', '3149476'), + (67908, 746, 247, 'not_attending', '2020-12-15 01:40:46', '2025-12-17 19:47:48', 'oAQp8RZm', '3149478'), + (67909, 746, 251, 'not_attending', '2021-01-26 18:53:29', '2025-12-17 19:47:49', 'oAQp8RZm', '3149482'), + (67910, 746, 398, 'not_attending', '2021-01-19 13:40:02', '2025-12-17 19:47:49', 'oAQp8RZm', '3236453'), + (67911, 746, 399, 'attending', '2020-11-12 00:48:46', '2025-12-17 19:47:54', 'oAQp8RZm', '3236454'), + (67912, 746, 409, 'not_attending', '2020-12-08 23:30:02', '2025-12-17 19:47:54', 'oAQp8RZm', '3236467'), + (67913, 746, 460, 'not_attending', '2020-11-19 23:35:23', '2025-12-17 19:47:54', 'oAQp8RZm', '3281468'), + (67914, 746, 464, 'attending', '2020-11-20 00:09:43', '2025-12-17 19:47:54', 'oAQp8RZm', '3281554'), + (67915, 746, 465, 'not_attending', '2020-11-27 04:32:55', '2025-12-17 19:47:54', 'oAQp8RZm', '3281555'), + (67916, 746, 468, 'attending', '2020-11-19 23:43:23', '2025-12-17 19:47:54', 'oAQp8RZm', '3285413'), + (67917, 746, 469, 'not_attending', '2020-11-27 04:32:38', '2025-12-17 19:47:54', 'oAQp8RZm', '3285414'), + (67918, 746, 477, 'attending', '2020-12-01 21:33:41', '2025-12-17 19:47:54', 'oAQp8RZm', '3289559'), + (67919, 746, 481, 'not_attending', '2020-11-23 17:45:24', '2025-12-17 19:47:54', 'oAQp8RZm', '3297764'), + (67920, 746, 482, 'attending', '2020-11-23 17:45:36', '2025-12-17 19:47:54', 'oAQp8RZm', '3297769'), + (67921, 746, 488, 'not_attending', '2020-12-01 21:34:06', '2025-12-17 19:47:54', 'oAQp8RZm', '3312757'), + (67922, 746, 490, 'not_attending', '2020-12-08 23:30:08', '2025-12-17 19:47:54', 'oAQp8RZm', '3313532'), + (67923, 746, 492, 'not_attending', '2020-12-03 20:38:37', '2025-12-17 19:47:54', 'oAQp8RZm', '3313731'), + (67924, 746, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'oAQp8RZm', '3313856'), + (67925, 746, 495, 'not_attending', '2020-12-07 21:39:40', '2025-12-17 19:47:54', 'oAQp8RZm', '3314009'), + (67926, 746, 499, 'not_attending', '2020-12-08 23:30:40', '2025-12-17 19:47:55', 'oAQp8RZm', '3314909'), + (67927, 746, 500, 'not_attending', '2020-12-17 02:47:39', '2025-12-17 19:47:55', 'oAQp8RZm', '3314964'), + (67928, 746, 502, 'not_attending', '2020-12-08 23:30:43', '2025-12-17 19:47:55', 'oAQp8RZm', '3323365'), + (67929, 746, 503, 'not_attending', '2020-12-15 01:40:16', '2025-12-17 19:47:55', 'oAQp8RZm', '3323366'), + (67930, 746, 504, 'not_attending', '2020-12-15 01:40:24', '2025-12-17 19:47:55', 'oAQp8RZm', '3323368'), + (67931, 746, 505, 'not_attending', '2020-12-20 15:45:30', '2025-12-17 19:47:55', 'oAQp8RZm', '3323369'), + (67932, 746, 506, 'attending', '2020-12-13 15:59:19', '2025-12-17 19:47:55', 'oAQp8RZm', '3323375'), + (67933, 746, 507, 'not_attending', '2020-12-15 01:40:56', '2025-12-17 19:47:48', 'oAQp8RZm', '3324148'), + (67934, 746, 508, 'attending', '2021-01-13 14:36:10', '2025-12-17 19:47:48', 'oAQp8RZm', '3324231'), + (67935, 746, 509, 'not_attending', '2021-01-13 18:25:31', '2025-12-17 19:47:49', 'oAQp8RZm', '3324232'), + (67936, 746, 510, 'not_attending', '2021-01-29 06:06:16', '2025-12-17 19:47:49', 'oAQp8RZm', '3324233'), + (67937, 746, 511, 'not_attending', '2020-12-13 16:07:06', '2025-12-17 19:47:55', 'oAQp8RZm', '3325335'), + (67938, 746, 512, 'maybe', '2020-12-13 16:06:57', '2025-12-17 19:47:55', 'oAQp8RZm', '3325336'), + (67939, 746, 513, 'attending', '2020-12-13 16:07:35', '2025-12-17 19:47:55', 'oAQp8RZm', '3329383'), + (67940, 746, 517, 'attending', '2020-12-28 23:46:12', '2025-12-17 19:47:48', 'oAQp8RZm', '3337137'), + (67941, 746, 518, 'not_attending', '2021-01-05 21:02:27', '2025-12-17 19:47:48', 'oAQp8RZm', '3337138'), + (67942, 746, 519, 'not_attending', '2020-12-15 01:40:59', '2025-12-17 19:47:55', 'oAQp8RZm', '3337448'), + (67943, 746, 520, 'not_attending', '2020-12-20 15:45:34', '2025-12-17 19:47:55', 'oAQp8RZm', '3337453'), + (67944, 746, 521, 'not_attending', '2020-12-28 23:42:45', '2025-12-17 19:47:48', 'oAQp8RZm', '3337454'), + (67945, 746, 525, 'not_attending', '2020-12-20 15:45:50', '2025-12-17 19:47:48', 'oAQp8RZm', '3350467'), + (67946, 746, 526, 'attending', '2020-12-28 23:45:43', '2025-12-17 19:47:48', 'oAQp8RZm', '3351539'), + (67947, 746, 529, 'attending', '2021-01-05 21:02:12', '2025-12-17 19:47:48', 'oAQp8RZm', '3364568'), + (67948, 746, 532, 'not_attending', '2021-01-08 05:28:50', '2025-12-17 19:47:48', 'oAQp8RZm', '3381412'), + (67949, 746, 534, 'not_attending', '2021-01-08 05:29:08', '2025-12-17 19:47:48', 'oAQp8RZm', '3384157'), + (67950, 746, 535, 'not_attending', '2021-01-08 05:29:00', '2025-12-17 19:47:48', 'oAQp8RZm', '3384729'), + (67951, 746, 536, 'not_attending', '2021-01-08 05:29:13', '2025-12-17 19:47:48', 'oAQp8RZm', '3386848'), + (67952, 746, 537, 'not_attending', '2021-01-08 05:29:04', '2025-12-17 19:47:48', 'oAQp8RZm', '3387153'), + (67953, 746, 538, 'attending', '2021-01-13 18:24:49', '2025-12-17 19:47:48', 'oAQp8RZm', '3388151'), + (67954, 746, 539, 'not_attending', '2021-01-13 18:24:39', '2025-12-17 19:47:48', 'oAQp8RZm', '3389158'), + (67955, 746, 540, 'not_attending', '2021-01-08 23:51:55', '2025-12-17 19:47:48', 'oAQp8RZm', '3389527'), + (67956, 746, 541, 'not_attending', '2021-01-08 23:51:51', '2025-12-17 19:47:48', 'oAQp8RZm', '3391683'), + (67957, 746, 542, 'not_attending', '2021-01-10 22:21:16', '2025-12-17 19:47:48', 'oAQp8RZm', '3395013'), + (67958, 746, 543, 'not_attending', '2021-01-13 14:36:12', '2025-12-17 19:47:48', 'oAQp8RZm', '3396499'), + (67959, 746, 544, 'attending', '2021-01-12 18:17:32', '2025-12-17 19:47:48', 'oAQp8RZm', '3396500'), + (67960, 746, 545, 'not_attending', '2021-01-20 01:13:21', '2025-12-17 19:47:49', 'oAQp8RZm', '3396502'), + (67961, 746, 546, 'not_attending', '2021-01-21 06:07:00', '2025-12-17 19:47:49', 'oAQp8RZm', '3396503'), + (67962, 746, 547, 'attending', '2021-01-13 18:25:24', '2025-12-17 19:47:49', 'oAQp8RZm', '3396504'), + (67963, 746, 548, 'not_attending', '2021-01-13 14:36:23', '2025-12-17 19:47:48', 'oAQp8RZm', '3403650'), + (67964, 746, 549, 'not_attending', '2021-01-13 14:37:03', '2025-12-17 19:47:48', 'oAQp8RZm', '3406988'), + (67965, 746, 550, 'attending', '2021-01-13 14:36:36', '2025-12-17 19:47:48', 'oAQp8RZm', '3407018'), + (67966, 746, 551, 'not_attending', '2021-01-13 18:25:12', '2025-12-17 19:47:49', 'oAQp8RZm', '3407219'), + (67967, 746, 552, 'not_attending', '2021-01-13 18:24:42', '2025-12-17 19:47:48', 'oAQp8RZm', '3407225'), + (67968, 746, 554, 'not_attending', '2021-01-14 00:37:06', '2025-12-17 19:47:49', 'oAQp8RZm', '3408338'), + (67969, 746, 555, 'not_attending', '2021-01-19 13:39:33', '2025-12-17 19:47:49', 'oAQp8RZm', '3416576'), + (67970, 746, 556, 'not_attending', '2021-01-26 18:53:31', '2025-12-17 19:47:49', 'oAQp8RZm', '3417170'), + (67971, 746, 557, 'not_attending', '2021-01-19 13:39:56', '2025-12-17 19:47:49', 'oAQp8RZm', '3418748'), + (67972, 746, 558, 'not_attending', '2021-01-19 13:40:10', '2025-12-17 19:47:49', 'oAQp8RZm', '3418925'), + (67973, 746, 559, 'not_attending', '2021-01-26 18:53:42', '2025-12-17 19:47:49', 'oAQp8RZm', '3421439'), + (67974, 746, 560, 'not_attending', '2021-01-21 06:07:04', '2025-12-17 19:47:49', 'oAQp8RZm', '3421715'), + (67975, 746, 563, 'not_attending', '2021-01-24 16:04:02', '2025-12-17 19:47:49', 'oAQp8RZm', '3425913'), + (67976, 746, 564, 'not_attending', '2021-01-24 16:03:58', '2025-12-17 19:47:49', 'oAQp8RZm', '3426074'), + (67977, 746, 565, 'not_attending', '2021-01-26 18:53:35', '2025-12-17 19:47:49', 'oAQp8RZm', '3426083'), + (67978, 746, 566, 'not_attending', '2021-01-26 18:53:51', '2025-12-17 19:47:49', 'oAQp8RZm', '3427928'), + (67979, 746, 567, 'not_attending', '2021-01-26 18:53:55', '2025-12-17 19:47:50', 'oAQp8RZm', '3428895'), + (67980, 746, 568, 'not_attending', '2021-01-29 06:06:22', '2025-12-17 19:47:50', 'oAQp8RZm', '3430267'), + (67981, 746, 569, 'not_attending', '2021-01-26 18:53:38', '2025-12-17 19:47:49', 'oAQp8RZm', '3432673'), + (67982, 746, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'oAQp8RZm', '3470303'), + (67983, 746, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'oAQp8RZm', '3470305'), + (67984, 746, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'oAQp8RZm', '3470991'), + (67985, 746, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'oAQp8RZm', '3517815'), + (67986, 746, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'oAQp8RZm', '3517816'), + (67987, 746, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'oAQp8RZm', '3523941'), + (67988, 746, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'oAQp8RZm', '3533850'), + (67989, 746, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'oAQp8RZm', '3536632'), + (67990, 746, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'oAQp8RZm', '3536656'), + (67991, 746, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'oAQp8RZm', '3539916'), + (67992, 746, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'oAQp8RZm', '3539917'), + (67993, 746, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'oAQp8RZm', '3539918'), + (67994, 746, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'oAQp8RZm', '3539919'), + (67995, 746, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'oAQp8RZm', '3539920'), + (67996, 746, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'oAQp8RZm', '3539921'), + (67997, 746, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'oAQp8RZm', '3539922'), + (67998, 746, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'oAQp8RZm', '3539923'), + (67999, 746, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'oAQp8RZm', '3539927'), + (68000, 746, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'oAQp8RZm', '3582734'), + (68001, 746, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'oAQp8RZm', '3583262'), + (68002, 746, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'oAQp8RZm', '3619523'), + (68003, 746, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'oAQp8RZm', '3661369'), + (68004, 746, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'oAQp8RZm', '3674262'), + (68005, 746, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'oAQp8RZm', '3677402'), + (68006, 746, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'oAQp8RZm', '3730212'), + (68007, 746, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAQp8RZm', '3793156'), + (68008, 746, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'oAQp8RZm', '3974109'), + (68009, 746, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAQp8RZm', '3975311'), + (68010, 746, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'oAQp8RZm', '3975312'), + (68011, 746, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAQp8RZm', '3994992'), + (68012, 746, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'oAQp8RZm', '4014338'), + (68013, 746, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'oAQp8RZm', '4021848'), + (68014, 746, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAQp8RZm', '4136744'), + (68015, 746, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAQp8RZm', '4136937'), + (68016, 746, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAQp8RZm', '4136938'), + (68017, 746, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAQp8RZm', '4136947'), + (68018, 746, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAQp8RZm', '4210314'), + (68019, 746, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAQp8RZm', '4225444'), + (68020, 746, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAQp8RZm', '4239259'), + (68021, 746, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAQp8RZm', '4240316'), + (68022, 746, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAQp8RZm', '4240317'), + (68023, 746, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAQp8RZm', '4240318'), + (68024, 746, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'oAQp8RZm', '4240320'), + (68025, 746, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAQp8RZm', '4250163'), + (68026, 746, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAQp8RZm', '4275957'), + (68027, 746, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAQp8RZm', '4277819'), + (68028, 746, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAQp8RZm', '4301723'), + (68029, 746, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAQp8RZm', '4302093'), + (68030, 746, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAQp8RZm', '4304151'), + (68031, 746, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAQp8RZm', '4356801'), + (68032, 746, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAQp8RZm', '4366186'), + (68033, 746, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAQp8RZm', '4366187'), + (68034, 746, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'oAQp8RZm', '4420735'), + (68035, 746, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'oAQp8RZm', '4420738'), + (68036, 746, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAQp8RZm', '4420739'), + (68037, 746, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAQp8RZm', '4420741'), + (68038, 746, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAQp8RZm', '4420744'), + (68039, 746, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAQp8RZm', '4420747'), + (68040, 746, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAQp8RZm', '4420748'), + (68041, 746, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAQp8RZm', '4420749'), + (68042, 746, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAQp8RZm', '4461883'), + (68043, 746, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAQp8RZm', '4508342'), + (68044, 746, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAQp8RZm', '4568602'), + (68045, 746, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'oAQp8RZm', '4572153'), + (68046, 746, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'oAQp8RZm', '4585962'), + (68047, 746, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'oAQp8RZm', '4596356'), + (68048, 746, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'oAQp8RZm', '4598860'), + (68049, 746, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'oAQp8RZm', '4598861'), + (68050, 746, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'oAQp8RZm', '4602797'), + (68051, 746, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'oAQp8RZm', '4637896'), + (68052, 746, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'oAQp8RZm', '4642994'), + (68053, 746, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'oAQp8RZm', '4642995'), + (68054, 746, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'oAQp8RZm', '4642996'), + (68055, 746, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'oAQp8RZm', '4642997'), + (68056, 746, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'oAQp8RZm', '4645687'), + (68057, 746, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'oAQp8RZm', '4645698'), + (68058, 746, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'oAQp8RZm', '4645704'), + (68059, 746, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'oAQp8RZm', '4645705'), + (68060, 746, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'oAQp8RZm', '4668385'), + (68061, 746, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAQp8RZm', '4694407'), + (68062, 746, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'oAQp8RZm', '4706262'), + (68063, 746, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'oAQp8RZm', '4736497'), + (68064, 746, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'oAQp8RZm', '4736500'), + (68065, 746, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'oAQp8RZm', '4746789'), + (68066, 746, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'oAQp8RZm', '4753929'), + (68067, 746, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'oAQp8RZm', '5038850'), + (68068, 746, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQp8RZm', '6045684'), + (68069, 747, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'myDBjDwd', '4356801'), + (68070, 747, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'myDBjDwd', '4420738'), + (68071, 747, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'myDBjDwd', '4420739'), + (68072, 747, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'myDBjDwd', '4420741'), + (68073, 747, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'myDBjDwd', '4420744'), + (68074, 747, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'myDBjDwd', '4420747'), + (68075, 747, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'myDBjDwd', '4461883'), + (68076, 747, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'myDBjDwd', '4508342'), + (68077, 747, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'myDBjDwd', '4568602'), + (68078, 747, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'myDBjDwd', '4572153'), + (68079, 747, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'myDBjDwd', '4585962'), + (68080, 747, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'myDBjDwd', '4596356'), + (68081, 747, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'myDBjDwd', '4598860'), + (68082, 747, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'myDBjDwd', '4598861'), + (68083, 747, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'myDBjDwd', '4602797'), + (68084, 747, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'myDBjDwd', '4637896'), + (68085, 747, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'myDBjDwd', '4642994'), + (68086, 747, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'myDBjDwd', '4642995'), + (68087, 747, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'myDBjDwd', '4642996'), + (68088, 747, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'myDBjDwd', '4642997'), + (68089, 747, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'myDBjDwd', '4645687'), + (68090, 747, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'myDBjDwd', '4645698'), + (68091, 747, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'myDBjDwd', '4645704'), + (68092, 747, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'myDBjDwd', '4645705'), + (68093, 747, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'myDBjDwd', '4668385'), + (68094, 747, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'myDBjDwd', '6045684'), + (68095, 748, 1181, 'attending', '2022-03-06 00:53:08', '2025-12-17 19:47:33', '4DnM363m', '4736503'), + (68096, 748, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4DnM363m', '4736504'), + (68097, 748, 1215, 'attending', '2022-02-25 23:59:34', '2025-12-17 19:47:33', '4DnM363m', '4780763'), + (68098, 748, 1239, 'attending', '2022-03-02 19:03:40', '2025-12-17 19:47:33', '4DnM363m', '5052238'), + (68099, 748, 1240, 'attending', '2022-03-15 19:32:21', '2025-12-17 19:47:33', '4DnM363m', '5052239'), + (68100, 748, 1249, 'maybe', '2022-03-09 23:02:02', '2025-12-17 19:47:33', '4DnM363m', '5068530'), + (68101, 748, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4DnM363m', '5132533'), + (68102, 748, 1260, 'attending', '2022-03-01 18:46:13', '2025-12-17 19:47:33', '4DnM363m', '5142082'), + (68103, 748, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4DnM363m', '5186582'), + (68104, 748, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4DnM363m', '5186583'), + (68105, 748, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4DnM363m', '5186585'), + (68106, 748, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4DnM363m', '5190437'), + (68107, 748, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4DnM363m', '5195095'), + (68108, 748, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4DnM363m', '5215989'), + (68109, 748, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4DnM363m', '5223686'), + (68110, 748, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4DnM363m', '5227432'), + (68111, 748, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4DnM363m', '5247467'), + (68112, 748, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4DnM363m', '5260800'), + (68113, 748, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4DnM363m', '5269930'), + (68114, 748, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4DnM363m', '5271448'), + (68115, 748, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4DnM363m', '5271449'), + (68116, 748, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4DnM363m', '5276469'), + (68117, 748, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4DnM363m', '5278159'), + (68118, 748, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4DnM363m', '5363695'), + (68119, 748, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4DnM363m', '5365960'), + (68120, 748, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4DnM363m', '5368973'), + (68121, 748, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4DnM363m', '5378247'), + (68122, 748, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4DnM363m', '6045684'), + (68123, 749, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dJQGxOb4', '7074364'), + (68124, 749, 2688, 'not_attending', '2024-06-25 12:50:21', '2025-12-17 19:46:29', 'dJQGxOb4', '7324073'), + (68125, 749, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dJQGxOb4', '7324074'), + (68126, 749, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dJQGxOb4', '7324075'), + (68127, 749, 2691, 'attending', '2024-07-19 22:42:10', '2025-12-17 19:46:30', 'dJQGxOb4', '7324076'), + (68128, 749, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dJQGxOb4', '7324078'), + (68129, 749, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dJQGxOb4', '7324082'), + (68130, 749, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dJQGxOb4', '7331457'), + (68131, 749, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'dJQGxOb4', '7332564'), + (68132, 749, 2727, 'attending', '2024-06-19 21:45:03', '2025-12-17 19:46:29', 'dJQGxOb4', '7332865'), + (68133, 749, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dJQGxOb4', '7356752'), + (68134, 749, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dJQGxOb4', '7363643'), + (68135, 749, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dJQGxOb4', '7368606'), + (68136, 749, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dJQGxOb4', '7397462'), + (68137, 749, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dJQGxOb4', '7424275'), + (68138, 749, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dJQGxOb4', '7424276'), + (68139, 749, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dJQGxOb4', '7432751'), + (68140, 749, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dJQGxOb4', '7432752'), + (68141, 749, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dJQGxOb4', '7432753'), + (68142, 749, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dJQGxOb4', '7432754'), + (68143, 749, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dJQGxOb4', '7432755'), + (68144, 749, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dJQGxOb4', '7432756'), + (68145, 749, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dJQGxOb4', '7432758'), + (68146, 749, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dJQGxOb4', '7432759'), + (68147, 749, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'dJQGxOb4', '7433834'), + (68148, 749, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dJQGxOb4', '7470197'), + (68149, 749, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dJQGxOb4', '7685613'), + (68150, 749, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dJQGxOb4', '7688194'), + (68151, 749, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dJQGxOb4', '7688196'), + (68152, 749, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dJQGxOb4', '7688289'), + (68153, 750, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndlEEEYm', '3351539'), + (68154, 750, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndlEEEYm', '3386848'), + (68155, 750, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndlEEEYm', '3389527'), + (68156, 750, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndlEEEYm', '3396499'), + (68157, 750, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndlEEEYm', '3403650'), + (68158, 750, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndlEEEYm', '3406988'), + (68159, 750, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndlEEEYm', '3416576'), + (68160, 750, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'ndlEEEYm', '3430267'), + (68161, 750, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlEEEYm', '6045684'), + (68162, 751, 158, 'not_attending', '2020-09-26 15:50:29', '2025-12-17 19:47:52', 'NmLj55J4', '3058695'), + (68163, 751, 221, 'attending', '2020-09-11 00:13:38', '2025-12-17 19:47:56', 'NmLj55J4', '3129265'), + (68164, 751, 223, 'not_attending', '2020-09-11 00:13:15', '2025-12-17 19:47:56', 'NmLj55J4', '3129980'), + (68165, 751, 296, 'maybe', '2020-09-11 00:13:03', '2025-12-17 19:47:56', 'NmLj55J4', '3172876'), + (68166, 751, 311, 'attending', '2020-09-14 00:29:28', '2025-12-17 19:47:56', 'NmLj55J4', '3186057'), + (68167, 751, 324, 'not_attending', '2020-09-20 04:32:31', '2025-12-17 19:47:56', 'NmLj55J4', '3197082'), + (68168, 751, 341, 'attending', '2020-09-19 18:46:12', '2025-12-17 19:47:52', 'NmLj55J4', '3204471'), + (68169, 751, 342, 'not_attending', '2020-10-02 23:30:22', '2025-12-17 19:47:52', 'NmLj55J4', '3204472'), + (68170, 751, 348, 'attending', '2020-09-29 21:31:47', '2025-12-17 19:47:52', 'NmLj55J4', '3209159'), + (68171, 751, 349, 'attending', '2020-09-11 21:33:04', '2025-12-17 19:47:56', 'NmLj55J4', '3209194'), + (68172, 751, 354, 'not_attending', '2020-09-20 04:28:57', '2025-12-17 19:47:56', 'NmLj55J4', '3212570'), + (68173, 751, 359, 'not_attending', '2020-09-20 04:29:59', '2025-12-17 19:47:56', 'NmLj55J4', '3212624'), + (68174, 751, 362, 'attending', '2020-09-22 18:02:32', '2025-12-17 19:47:52', 'NmLj55J4', '3214207'), + (68175, 751, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'NmLj55J4', '3217037'), + (68176, 751, 364, 'attending', '2020-09-20 04:29:33', '2025-12-17 19:47:56', 'NmLj55J4', '3217106'), + (68177, 751, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'NmLj55J4', '3218510'), + (68178, 751, 375, 'attending', '2020-10-08 22:43:47', '2025-12-17 19:47:52', 'NmLj55J4', '3222825'), + (68179, 751, 385, 'attending', '2020-09-29 04:22:04', '2025-12-17 19:47:52', 'NmLj55J4', '3228698'), + (68180, 751, 386, 'attending', '2020-10-10 01:31:11', '2025-12-17 19:47:52', 'NmLj55J4', '3228699'), + (68181, 751, 387, 'attending', '2020-10-16 15:52:57', '2025-12-17 19:47:52', 'NmLj55J4', '3228700'), + (68182, 751, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'NmLj55J4', '3228701'), + (68183, 751, 412, 'not_attending', '2020-10-07 22:56:39', '2025-12-17 19:47:52', 'NmLj55J4', '3236636'), + (68184, 751, 415, 'maybe', '2020-10-12 19:35:52', '2025-12-17 19:47:52', 'NmLj55J4', '3238044'), + (68185, 751, 416, 'attending', '2020-10-09 14:56:55', '2025-12-17 19:47:52', 'NmLj55J4', '3238073'), + (68186, 751, 418, 'attending', '2020-10-14 22:25:40', '2025-12-17 19:47:52', 'NmLj55J4', '3241728'), + (68187, 751, 420, 'attending', '2020-10-15 22:37:22', '2025-12-17 19:47:52', 'NmLj55J4', '3245293'), + (68188, 751, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'NmLj55J4', '3245751'), + (68189, 751, 425, 'maybe', '2020-10-16 20:46:14', '2025-12-17 19:47:52', 'NmLj55J4', '3250097'), + (68190, 751, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'NmLj55J4', '3250232'), + (68191, 751, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'NmLj55J4', '3256168'), + (68192, 751, 441, 'attending', '2020-11-13 19:10:28', '2025-12-17 19:47:54', 'NmLj55J4', '3256169'), + (68193, 751, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'NmLj55J4', '3263578'), + (68194, 751, 445, 'attending', '2020-11-13 00:01:50', '2025-12-17 19:47:54', 'NmLj55J4', '3266138'), + (68195, 751, 452, 'attending', '2020-11-28 04:34:43', '2025-12-17 19:47:54', 'NmLj55J4', '3272981'), + (68196, 751, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'NmLj55J4', '3276428'), + (68197, 751, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'NmLj55J4', '3281467'), + (68198, 751, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'NmLj55J4', '3281470'), + (68199, 751, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'NmLj55J4', '3281829'), + (68200, 751, 467, 'attending', '2020-11-13 00:04:42', '2025-12-17 19:47:54', 'NmLj55J4', '3282756'), + (68201, 751, 468, 'attending', '2020-11-19 18:10:53', '2025-12-17 19:47:54', 'NmLj55J4', '3285413'), + (68202, 751, 469, 'attending', '2020-11-27 05:56:03', '2025-12-17 19:47:54', 'NmLj55J4', '3285414'), + (68203, 751, 476, 'attending', '2020-11-18 03:38:21', '2025-12-17 19:47:54', 'NmLj55J4', '3286982'), + (68204, 751, 480, 'attending', '2020-11-19 18:10:42', '2025-12-17 19:47:54', 'NmLj55J4', '3295313'), + (68205, 751, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'NmLj55J4', '3297764'), + (68206, 751, 488, 'attending', '2020-12-02 00:15:16', '2025-12-17 19:47:54', 'NmLj55J4', '3312757'), + (68207, 751, 493, 'not_attending', '2020-12-03 19:27:56', '2025-12-17 19:47:54', 'NmLj55J4', '3313856'), + (68208, 751, 496, 'not_attending', '2020-12-09 17:02:19', '2025-12-17 19:47:54', 'NmLj55J4', '3314269'), + (68209, 751, 497, 'attending', '2020-12-15 21:54:13', '2025-12-17 19:47:55', 'NmLj55J4', '3314270'), + (68210, 751, 499, 'not_attending', '2020-12-09 17:02:32', '2025-12-17 19:47:55', 'NmLj55J4', '3314909'), + (68211, 751, 500, 'attending', '2020-12-18 22:41:01', '2025-12-17 19:47:55', 'NmLj55J4', '3314964'), + (68212, 751, 501, 'maybe', '2020-12-03 19:28:16', '2025-12-17 19:47:54', 'NmLj55J4', '3317834'), + (68213, 751, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'NmLj55J4', '3323365'), + (68214, 751, 513, 'attending', '2020-12-20 00:23:59', '2025-12-17 19:47:55', 'NmLj55J4', '3329383'), + (68215, 751, 517, 'not_attending', '2021-01-04 16:53:00', '2025-12-17 19:47:48', 'NmLj55J4', '3337137'), + (68216, 751, 520, 'maybe', '2020-12-20 05:29:26', '2025-12-17 19:47:55', 'NmLj55J4', '3337453'), + (68217, 751, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'NmLj55J4', '3351539'), + (68218, 751, 530, 'attending', '2021-01-03 18:16:55', '2025-12-17 19:47:48', 'NmLj55J4', '3373923'), + (68219, 751, 532, 'not_attending', '2021-01-04 16:52:53', '2025-12-17 19:47:48', 'NmLj55J4', '3381412'), + (68220, 751, 536, 'not_attending', '2021-01-06 17:21:40', '2025-12-17 19:47:48', 'NmLj55J4', '3386848'), + (68221, 751, 539, 'maybe', '2021-01-14 00:50:04', '2025-12-17 19:47:48', 'NmLj55J4', '3389158'), + (68222, 751, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'NmLj55J4', '3389527'), + (68223, 751, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'NmLj55J4', '3396499'), + (68224, 751, 548, 'attending', '2021-01-16 01:17:51', '2025-12-17 19:47:48', 'NmLj55J4', '3403650'), + (68225, 751, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'NmLj55J4', '3406988'), + (68226, 751, 555, 'attending', '2021-01-20 02:27:31', '2025-12-17 19:47:49', 'NmLj55J4', '3416576'), + (68227, 751, 557, 'attending', '2021-01-20 02:27:21', '2025-12-17 19:47:49', 'NmLj55J4', '3418748'), + (68228, 751, 558, 'maybe', '2021-01-21 18:04:12', '2025-12-17 19:47:49', 'NmLj55J4', '3418925'), + (68229, 751, 560, 'attending', '2021-01-20 02:27:25', '2025-12-17 19:47:49', 'NmLj55J4', '3421715'), + (68230, 751, 568, 'attending', '2021-01-29 18:09:29', '2025-12-17 19:47:50', 'NmLj55J4', '3430267'), + (68231, 751, 569, 'not_attending', '2021-01-27 22:52:47', '2025-12-17 19:47:49', 'NmLj55J4', '3432673'), + (68232, 751, 579, 'attending', '2021-02-02 06:55:18', '2025-12-17 19:47:50', 'NmLj55J4', '3440978'), + (68233, 751, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'NmLj55J4', '3468125'), + (68234, 751, 602, 'attending', '2021-02-07 17:44:50', '2025-12-17 19:47:50', 'NmLj55J4', '3470303'), + (68235, 751, 603, 'not_attending', '2021-02-12 23:28:40', '2025-12-17 19:47:50', 'NmLj55J4', '3470304'), + (68236, 751, 604, 'not_attending', '2021-02-27 18:39:10', '2025-12-17 19:47:50', 'NmLj55J4', '3470305'), + (68237, 751, 605, 'attending', '2021-02-07 17:44:33', '2025-12-17 19:47:50', 'NmLj55J4', '3470991'), + (68238, 751, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'NmLj55J4', '3517815'), + (68239, 751, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'NmLj55J4', '3517816'), + (68240, 751, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'NmLj55J4', '3523941'), + (68241, 751, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'NmLj55J4', '3533850'), + (68242, 751, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'NmLj55J4', '3536632'), + (68243, 751, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'NmLj55J4', '3536656'), + (68244, 751, 641, 'not_attending', '2021-04-02 15:00:31', '2025-12-17 19:47:44', 'NmLj55J4', '3539916'), + (68245, 751, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'NmLj55J4', '3539917'), + (68246, 751, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'NmLj55J4', '3539918'), + (68247, 751, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'NmLj55J4', '3539919'), + (68248, 751, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'NmLj55J4', '3539920'), + (68249, 751, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'NmLj55J4', '3539921'), + (68250, 751, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'NmLj55J4', '3539922'), + (68251, 751, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'NmLj55J4', '3539923'), + (68252, 751, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'NmLj55J4', '3539927'), + (68253, 751, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'NmLj55J4', '3582734'), + (68254, 751, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLj55J4', '3583262'), + (68255, 751, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLj55J4', '3619523'), + (68256, 751, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLj55J4', '3661369'), + (68257, 751, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLj55J4', '3674262'), + (68258, 751, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'NmLj55J4', '3677402'), + (68259, 751, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLj55J4', '3730212'), + (68260, 751, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLj55J4', '3793156'), + (68261, 751, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'NmLj55J4', '3974109'), + (68262, 751, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLj55J4', '3975311'), + (68263, 751, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'NmLj55J4', '3975312'), + (68264, 751, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLj55J4', '3994992'), + (68265, 751, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLj55J4', '4014338'), + (68266, 751, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'NmLj55J4', '4021848'), + (68267, 751, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLj55J4', '4136744'), + (68268, 751, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'NmLj55J4', '4136937'), + (68269, 751, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'NmLj55J4', '4136938'), + (68270, 751, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'NmLj55J4', '4136947'), + (68271, 751, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'NmLj55J4', '4210314'), + (68272, 751, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLj55J4', '4225444'), + (68273, 751, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLj55J4', '4239259'), + (68274, 751, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'NmLj55J4', '4240316'), + (68275, 751, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'NmLj55J4', '4240317'), + (68276, 751, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'NmLj55J4', '4240318'), + (68277, 751, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'NmLj55J4', '4240320'), + (68278, 751, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmLj55J4', '4250163'), + (68279, 751, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'NmLj55J4', '4275957'), + (68280, 751, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'NmLj55J4', '4277819'), + (68281, 751, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'NmLj55J4', '4301723'), + (68282, 751, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'NmLj55J4', '4302093'), + (68283, 751, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'NmLj55J4', '4304151'), + (68284, 751, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'NmLj55J4', '4345519'), + (68285, 751, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLj55J4', '4356801'), + (68286, 751, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'NmLj55J4', '4358025'), + (68287, 751, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'NmLj55J4', '4366186'), + (68288, 751, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'NmLj55J4', '4366187'), + (68289, 751, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'NmLj55J4', '4402823'), + (68290, 751, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'NmLj55J4', '4420735'), + (68291, 751, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'NmLj55J4', '4420738'), + (68292, 751, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'NmLj55J4', '4420739'), + (68293, 751, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'NmLj55J4', '4420741'), + (68294, 751, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'NmLj55J4', '4420744'), + (68295, 751, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'NmLj55J4', '4420747'), + (68296, 751, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'NmLj55J4', '4420748'), + (68297, 751, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'NmLj55J4', '4420749'), + (68298, 751, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'NmLj55J4', '4461883'), + (68299, 751, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLj55J4', '4508342'), + (68300, 751, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLj55J4', '4568602'), + (68301, 751, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLj55J4', '4572153'), + (68302, 751, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'NmLj55J4', '4585962'), + (68303, 751, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'NmLj55J4', '4596356'), + (68304, 751, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLj55J4', '4598860'), + (68305, 751, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLj55J4', '4598861'), + (68306, 751, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmLj55J4', '4602797'), + (68307, 751, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmLj55J4', '4637896'), + (68308, 751, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLj55J4', '4642994'), + (68309, 751, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'NmLj55J4', '4642995'), + (68310, 751, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLj55J4', '4642996'), + (68311, 751, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLj55J4', '4642997'), + (68312, 751, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmLj55J4', '4645687'), + (68313, 751, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmLj55J4', '4645698'), + (68314, 751, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLj55J4', '4645704'), + (68315, 751, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLj55J4', '4645705'), + (68316, 751, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLj55J4', '4668385'), + (68317, 751, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLj55J4', '4694407'), + (68318, 751, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmLj55J4', '4736497'), + (68319, 751, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'NmLj55J4', '4736499'), + (68320, 751, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmLj55J4', '4736500'), + (68321, 751, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'NmLj55J4', '4736503'), + (68322, 751, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'NmLj55J4', '4736504'), + (68323, 751, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLj55J4', '4746789'), + (68324, 751, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'NmLj55J4', '4753929'), + (68325, 751, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmLj55J4', '5038850'), + (68326, 751, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmLj55J4', '5045826'), + (68327, 751, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLj55J4', '5132533'), + (68328, 751, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'NmLj55J4', '5186582'), + (68329, 751, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'NmLj55J4', '5186583'), + (68330, 751, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'NmLj55J4', '5186585'), + (68331, 751, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'NmLj55J4', '5190437'), + (68332, 751, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'NmLj55J4', '5195095'), + (68333, 751, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmLj55J4', '5215989'), + (68334, 751, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLj55J4', '5223686'), + (68335, 751, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLj55J4', '5227432'), + (68336, 751, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'NmLj55J4', '5247467'), + (68337, 751, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'NmLj55J4', '5260800'), + (68338, 751, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'NmLj55J4', '5269930'), + (68339, 751, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'NmLj55J4', '5271448'), + (68340, 751, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'NmLj55J4', '5271449'), + (68341, 751, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmLj55J4', '5276469'), + (68342, 751, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmLj55J4', '5278159'), + (68343, 751, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'NmLj55J4', '5363695'), + (68344, 751, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLj55J4', '5365960'), + (68345, 751, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmLj55J4', '5368973'), + (68346, 751, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'NmLj55J4', '5378247'), + (68347, 751, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'NmLj55J4', '5389605'), + (68348, 751, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'NmLj55J4', '5397265'), + (68349, 751, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmLj55J4', '5403967'), + (68350, 751, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLj55J4', '5404786'), + (68351, 751, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmLj55J4', '5405203'), + (68352, 751, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'NmLj55J4', '5408794'), + (68353, 751, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLj55J4', '5411699'), + (68354, 751, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'NmLj55J4', '5412550'), + (68355, 751, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmLj55J4', '5415046'), + (68356, 751, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'NmLj55J4', '5422086'), + (68357, 751, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'NmLj55J4', '5422406'), + (68358, 751, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLj55J4', '5424565'), + (68359, 751, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLj55J4', '5426882'), + (68360, 751, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmLj55J4', '5427083'), + (68361, 751, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLj55J4', '5441125'), + (68362, 751, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmLj55J4', '5441126'), + (68363, 751, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmLj55J4', '5441128'), + (68364, 751, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'NmLj55J4', '5441131'), + (68365, 751, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLj55J4', '5441132'), + (68366, 751, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLj55J4', '5446643'), + (68367, 751, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLj55J4', '5453325'), + (68368, 751, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLj55J4', '5454516'), + (68369, 751, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLj55J4', '5454605'), + (68370, 751, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLj55J4', '5455037'), + (68371, 751, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLj55J4', '5461278'), + (68372, 751, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLj55J4', '5469480'), + (68373, 751, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLj55J4', '5471073'), + (68374, 751, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'NmLj55J4', '5474663'), + (68375, 751, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLj55J4', '5482022'), + (68376, 751, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLj55J4', '5482793'), + (68377, 751, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLj55J4', '5488912'), + (68378, 751, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLj55J4', '5492192'), + (68379, 751, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLj55J4', '5493139'), + (68380, 751, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLj55J4', '5493200'), + (68381, 751, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLj55J4', '5502188'), + (68382, 751, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLj55J4', '5505059'), + (68383, 751, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'NmLj55J4', '5509055'), + (68384, 751, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLj55J4', '5512862'), + (68385, 751, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLj55J4', '5513985'), + (68386, 751, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'NmLj55J4', '5519981'), + (68387, 751, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLj55J4', '5522550'), + (68388, 751, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLj55J4', '5534683'), + (68389, 751, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLj55J4', '5537735'), + (68390, 751, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLj55J4', '5540859'), + (68391, 751, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLj55J4', '5546619'), + (68392, 751, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLj55J4', '5555245'), + (68393, 751, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLj55J4', '5557747'), + (68394, 751, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLj55J4', '5560255'), + (68395, 751, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLj55J4', '5562906'), + (68396, 751, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLj55J4', '5600604'), + (68397, 751, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLj55J4', '5605544'), + (68398, 751, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLj55J4', '5630960'), + (68399, 751, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLj55J4', '5630961'), + (68400, 751, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLj55J4', '5630962'), + (68401, 751, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLj55J4', '5630966'), + (68402, 751, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLj55J4', '5630967'), + (68403, 751, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLj55J4', '5630968'), + (68404, 751, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLj55J4', '5635406'), + (68405, 751, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLj55J4', '5638765'), + (68406, 751, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLj55J4', '5640097'), + (68407, 751, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLj55J4', '5640843'), + (68408, 751, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLj55J4', '5641521'), + (68409, 751, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLj55J4', '5642818'), + (68410, 751, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLj55J4', '5652395'), + (68411, 751, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLj55J4', '5670445'), + (68412, 751, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLj55J4', '5671637'), + (68413, 751, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLj55J4', '5672329'), + (68414, 751, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLj55J4', '5674057'), + (68415, 751, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLj55J4', '5674060'), + (68416, 751, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLj55J4', '5677461'), + (68417, 751, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLj55J4', '5698046'), + (68418, 751, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLj55J4', '5699760'), + (68419, 751, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLj55J4', '5741601'), + (68420, 751, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLj55J4', '5763458'), + (68421, 751, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLj55J4', '5774172'), + (68422, 751, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'NmLj55J4', '5818247'), + (68423, 751, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLj55J4', '5819471'), + (68424, 751, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLj55J4', '5827739'), + (68425, 751, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLj55J4', '5844306'), + (68426, 751, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLj55J4', '5850159'), + (68427, 751, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLj55J4', '5858999'), + (68428, 751, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLj55J4', '5871984'), + (68429, 751, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLj55J4', '5876354'), + (68430, 751, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLj55J4', '5880939'), + (68431, 751, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLj55J4', '5887890'), + (68432, 751, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLj55J4', '5888598'), + (68433, 751, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLj55J4', '5893260'), + (68434, 751, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLj55J4', '6045684'), + (68435, 752, 1116, 'not_attending', '2021-12-01 21:48:23', '2025-12-17 19:47:37', 'mRB33Eom', '4642994'), + (68436, 752, 1130, 'attending', '2021-12-04 12:49:18', '2025-12-17 19:47:37', 'mRB33Eom', '4658824'), + (68437, 752, 1138, 'attending', '2021-11-30 00:21:04', '2025-12-17 19:47:37', 'mRB33Eom', '4675407'), + (68438, 752, 1140, 'attending', '2021-12-04 02:15:32', '2025-12-17 19:47:37', 'mRB33Eom', '4679701'), + (68439, 752, 1143, 'attending', '2021-12-01 21:48:28', '2025-12-17 19:47:37', 'mRB33Eom', '4683667'), + (68440, 752, 1144, 'maybe', '2021-12-08 00:52:02', '2025-12-17 19:47:37', 'mRB33Eom', '4687090'), + (68441, 752, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mRB33Eom', '4694407'), + (68442, 752, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mRB33Eom', '4736497'), + (68443, 752, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mRB33Eom', '4736499'), + (68444, 752, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mRB33Eom', '4736500'), + (68445, 752, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mRB33Eom', '4736503'), + (68446, 752, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mRB33Eom', '4736504'), + (68447, 752, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mRB33Eom', '4746789'), + (68448, 752, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mRB33Eom', '4753929'), + (68449, 752, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mRB33Eom', '5038850'), + (68450, 752, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mRB33Eom', '5045826'), + (68451, 752, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mRB33Eom', '5132533'), + (68452, 752, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mRB33Eom', '5186582'), + (68453, 752, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mRB33Eom', '5186583'), + (68454, 752, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mRB33Eom', '5186585'), + (68455, 752, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mRB33Eom', '5190437'), + (68456, 752, 1284, 'attending', '2022-04-16 20:19:05', '2025-12-17 19:47:27', 'mRB33Eom', '5195095'), + (68457, 752, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mRB33Eom', '5215989'), + (68458, 752, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mRB33Eom', '5223686'), + (68459, 752, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mRB33Eom', '5227432'), + (68460, 752, 1346, 'attending', '2022-04-20 20:58:20', '2025-12-17 19:47:27', 'mRB33Eom', '5247467'), + (68461, 752, 1362, 'attending', '2022-04-25 21:01:10', '2025-12-17 19:47:28', 'mRB33Eom', '5260800'), + (68462, 752, 1368, 'attending', '2022-05-05 21:14:29', '2025-12-17 19:47:28', 'mRB33Eom', '5262783'), + (68463, 752, 1374, 'attending', '2022-05-02 19:16:43', '2025-12-17 19:47:28', 'mRB33Eom', '5269930'), + (68464, 752, 1378, 'attending', '2022-05-06 22:00:48', '2025-12-17 19:47:28', 'mRB33Eom', '5271448'), + (68465, 752, 1379, 'attending', '2022-05-06 22:00:50', '2025-12-17 19:47:29', 'mRB33Eom', '5271449'), + (68466, 752, 1383, 'not_attending', '2022-05-14 15:18:22', '2025-12-17 19:47:28', 'mRB33Eom', '5276469'), + (68467, 752, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mRB33Eom', '5278159'), + (68468, 752, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mRB33Eom', '5363695'), + (68469, 752, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mRB33Eom', '5365960'), + (68470, 752, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mRB33Eom', '5368973'), + (68471, 752, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mRB33Eom', '5378247'), + (68472, 752, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mRB33Eom', '5389605'), + (68473, 752, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mRB33Eom', '5397265'), + (68474, 752, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mRB33Eom', '5403967'), + (68475, 752, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mRB33Eom', '5404786'), + (68476, 752, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mRB33Eom', '5405203'), + (68477, 752, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mRB33Eom', '5408794'), + (68478, 752, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mRB33Eom', '5411699'), + (68479, 752, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mRB33Eom', '5412550'), + (68480, 752, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mRB33Eom', '5415046'), + (68481, 752, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mRB33Eom', '5422086'), + (68482, 752, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mRB33Eom', '5422406'), + (68483, 752, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mRB33Eom', '5424565'), + (68484, 752, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mRB33Eom', '5426882'), + (68485, 752, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mRB33Eom', '5427083'), + (68486, 752, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mRB33Eom', '5441125'), + (68487, 752, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mRB33Eom', '5446643'), + (68488, 752, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mRB33Eom', '5454516'), + (68489, 752, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mRB33Eom', '5454605'), + (68490, 752, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRB33Eom', '6045684'), + (68491, 753, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', '2d2GZj9m', '4136938'), + (68492, 753, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', '2d2GZj9m', '4229418'), + (68493, 753, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2GZj9m', '6045684'), + (68494, 754, 1948, 'attending', '2023-03-23 18:19:12', '2025-12-17 19:46:57', '4v6OQZN4', '5962317'), + (68495, 754, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4v6OQZN4', '5962318'), + (68496, 754, 1951, 'not_attending', '2023-03-23 15:39:37', '2025-12-17 19:46:57', '4v6OQZN4', '5965933'), + (68497, 754, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', '4v6OQZN4', '6028191'), + (68498, 754, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4v6OQZN4', '6040066'), + (68499, 754, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4v6OQZN4', '6042717'), + (68500, 754, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4v6OQZN4', '6044838'), + (68501, 754, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4v6OQZN4', '6044839'), + (68502, 754, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v6OQZN4', '6045684'), + (68503, 754, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', '4v6OQZN4', '6048955'), + (68504, 754, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4v6OQZN4', '6050104'), + (68505, 754, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4v6OQZN4', '6053195'), + (68506, 754, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4v6OQZN4', '6053198'), + (68507, 754, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4v6OQZN4', '6056085'), + (68508, 754, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4v6OQZN4', '6056916'), + (68509, 754, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4v6OQZN4', '6059290'), + (68510, 754, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4v6OQZN4', '6060328'), + (68511, 754, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4v6OQZN4', '6061037'), + (68512, 754, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4v6OQZN4', '6061039'), + (68513, 754, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4v6OQZN4', '6067245'), + (68514, 754, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4v6OQZN4', '6068094'), + (68515, 754, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4v6OQZN4', '6068252'), + (68516, 754, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4v6OQZN4', '6068253'), + (68517, 754, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4v6OQZN4', '6068254'), + (68518, 754, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4v6OQZN4', '6068280'), + (68519, 754, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4v6OQZN4', '6069093'), + (68520, 754, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4v6OQZN4', '6072528'), + (68521, 754, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4v6OQZN4', '6079840'), + (68522, 754, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4v6OQZN4', '6083398'), + (68523, 754, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4v6OQZN4', '6093504'), + (68524, 754, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4v6OQZN4', '6097414'), + (68525, 754, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4v6OQZN4', '6097442'), + (68526, 754, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4v6OQZN4', '6097684'), + (68527, 754, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4v6OQZN4', '6098762'), + (68528, 754, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4v6OQZN4', '6101362'), + (68529, 754, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4v6OQZN4', '6107314'), + (68530, 754, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4v6OQZN4', '6120034'), + (68531, 755, 1240, 'attending', '2022-03-17 02:17:42', '2025-12-17 19:47:33', 'mj62BqVm', '5052239'), + (68532, 755, 1241, 'maybe', '2022-03-22 23:40:41', '2025-12-17 19:47:25', 'mj62BqVm', '5052240'), + (68533, 755, 1242, 'not_attending', '2022-03-30 22:45:54', '2025-12-17 19:47:25', 'mj62BqVm', '5052241'), + (68534, 755, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'mj62BqVm', '5132533'), + (68535, 755, 1268, 'attending', '2022-03-13 03:09:11', '2025-12-17 19:47:33', 'mj62BqVm', '5176296'), + (68536, 755, 1272, 'not_attending', '2022-03-17 11:30:55', '2025-12-17 19:47:25', 'mj62BqVm', '5186582'), + (68537, 755, 1273, 'attending', '2022-03-26 08:53:54', '2025-12-17 19:47:25', 'mj62BqVm', '5186583'), + (68538, 755, 1274, 'not_attending', '2022-04-02 05:50:19', '2025-12-17 19:47:26', 'mj62BqVm', '5186585'), + (68539, 755, 1280, 'not_attending', '2022-03-17 11:29:54', '2025-12-17 19:47:25', 'mj62BqVm', '5189749'), + (68540, 755, 1281, 'not_attending', '2022-03-18 01:19:06', '2025-12-17 19:47:27', 'mj62BqVm', '5190437'), + (68541, 755, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mj62BqVm', '5195095'), + (68542, 755, 1293, 'maybe', '2022-04-07 09:24:26', '2025-12-17 19:47:27', 'mj62BqVm', '5214641'), + (68543, 755, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mj62BqVm', '5215989'), + (68544, 755, 1304, 'not_attending', '2022-04-05 01:36:54', '2025-12-17 19:47:26', 'mj62BqVm', '5223468'), + (68545, 755, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mj62BqVm', '5223686'), + (68546, 755, 1308, 'not_attending', '2022-04-13 20:45:34', '2025-12-17 19:47:27', 'mj62BqVm', '5226703'), + (68547, 755, 1309, 'not_attending', '2022-04-07 09:06:44', '2025-12-17 19:47:26', 'mj62BqVm', '5227432'), + (68548, 755, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mj62BqVm', '5247467'), + (68549, 755, 1362, 'not_attending', '2022-04-26 10:41:19', '2025-12-17 19:47:28', 'mj62BqVm', '5260800'), + (68550, 755, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mj62BqVm', '5269930'), + (68551, 755, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mj62BqVm', '5271448'), + (68552, 755, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mj62BqVm', '5271449'), + (68553, 755, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mj62BqVm', '5276469'), + (68554, 755, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mj62BqVm', '5278159'), + (68555, 755, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mj62BqVm', '5363695'), + (68556, 755, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mj62BqVm', '5365960'), + (68557, 755, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mj62BqVm', '5368973'), + (68558, 755, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mj62BqVm', '5378247'), + (68559, 755, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mj62BqVm', '5389605'), + (68560, 755, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mj62BqVm', '5397265'), + (68561, 755, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mj62BqVm', '5403967'), + (68562, 755, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mj62BqVm', '5404786'), + (68563, 755, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mj62BqVm', '5405203'), + (68564, 755, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mj62BqVm', '5408794'), + (68565, 755, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mj62BqVm', '5411699'), + (68566, 755, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mj62BqVm', '5412550'), + (68567, 755, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mj62BqVm', '5415046'), + (68568, 755, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mj62BqVm', '5422086'), + (68569, 755, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mj62BqVm', '5422406'), + (68570, 755, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mj62BqVm', '5424565'), + (68571, 755, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mj62BqVm', '5426882'), + (68572, 755, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mj62BqVm', '5427083'), + (68573, 755, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mj62BqVm', '5441125'), + (68574, 755, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mj62BqVm', '5441126'), + (68575, 755, 1515, 'not_attending', '2022-08-05 03:30:05', '2025-12-17 19:47:21', 'mj62BqVm', '5441128'), + (68576, 755, 1516, 'attending', '2022-08-20 21:18:03', '2025-12-17 19:47:23', 'mj62BqVm', '5441129'), + (68577, 755, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mj62BqVm', '5441131'), + (68578, 755, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mj62BqVm', '5441132'), + (68579, 755, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mj62BqVm', '5446643'), + (68580, 755, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mj62BqVm', '5453325'), + (68581, 755, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mj62BqVm', '5454516'), + (68582, 755, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mj62BqVm', '5454605'), + (68583, 755, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mj62BqVm', '5455037'), + (68584, 755, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mj62BqVm', '5461278'), + (68585, 755, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mj62BqVm', '5469480'), + (68586, 755, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mj62BqVm', '5471073'), + (68587, 755, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mj62BqVm', '5474663'), + (68588, 755, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mj62BqVm', '5482022'), + (68589, 755, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mj62BqVm', '5482793'), + (68590, 755, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mj62BqVm', '5488912'), + (68591, 755, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mj62BqVm', '5492192'), + (68592, 755, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mj62BqVm', '5493139'), + (68593, 755, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mj62BqVm', '5493200'), + (68594, 755, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mj62BqVm', '5502188'), + (68595, 755, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mj62BqVm', '5505059'), + (68596, 755, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mj62BqVm', '5509055'), + (68597, 755, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mj62BqVm', '5512862'), + (68598, 755, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mj62BqVm', '5513985'), + (68599, 755, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mj62BqVm', '5519981'), + (68600, 755, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mj62BqVm', '5522550'), + (68601, 755, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mj62BqVm', '5534683'), + (68602, 755, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mj62BqVm', '5537735'), + (68603, 755, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mj62BqVm', '5540859'), + (68604, 755, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mj62BqVm', '5546619'), + (68605, 755, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mj62BqVm', '5555245'), + (68606, 755, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mj62BqVm', '5557747'), + (68607, 755, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mj62BqVm', '5560255'), + (68608, 755, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mj62BqVm', '5562906'), + (68609, 755, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mj62BqVm', '5600604'), + (68610, 755, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mj62BqVm', '5605544'), + (68611, 755, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'mj62BqVm', '5606737'), + (68612, 755, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mj62BqVm', '5630960'), + (68613, 755, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mj62BqVm', '5630961'), + (68614, 755, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mj62BqVm', '5630962'), + (68615, 755, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mj62BqVm', '5630966'), + (68616, 755, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mj62BqVm', '5630967'), + (68617, 755, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mj62BqVm', '5630968'), + (68618, 755, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mj62BqVm', '5635406'), + (68619, 755, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mj62BqVm', '5638765'), + (68620, 755, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mj62BqVm', '5640097'), + (68621, 755, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mj62BqVm', '5640843'), + (68622, 755, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mj62BqVm', '5641521'), + (68623, 755, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mj62BqVm', '5642818'), + (68624, 755, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mj62BqVm', '5652395'), + (68625, 755, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mj62BqVm', '5670445'), + (68626, 755, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mj62BqVm', '5671637'), + (68627, 755, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mj62BqVm', '5672329'), + (68628, 755, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mj62BqVm', '5674057'), + (68629, 755, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mj62BqVm', '5674060'), + (68630, 755, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mj62BqVm', '5677461'), + (68631, 755, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mj62BqVm', '5698046'), + (68632, 755, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mj62BqVm', '5699760'), + (68633, 755, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mj62BqVm', '5741601'), + (68634, 755, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mj62BqVm', '5763458'), + (68635, 755, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mj62BqVm', '5774172'), + (68636, 755, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mj62BqVm', '5818247'), + (68637, 755, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mj62BqVm', '5819471'), + (68638, 755, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mj62BqVm', '5827739'), + (68639, 755, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mj62BqVm', '5844306'), + (68640, 755, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mj62BqVm', '5850159'), + (68641, 755, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mj62BqVm', '5858999'), + (68642, 755, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mj62BqVm', '5871984'), + (68643, 755, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mj62BqVm', '5876354'), + (68644, 755, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mj62BqVm', '5880939'), + (68645, 755, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mj62BqVm', '5887890'), + (68646, 755, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mj62BqVm', '5888598'), + (68647, 755, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mj62BqVm', '5893260'), + (68648, 755, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mj62BqVm', '6045684'), + (68649, 756, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'm7zeYEed', '5513985'), + (68650, 756, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'm7zeYEed', '5534683'), + (68651, 756, 1633, 'attending', '2022-09-04 19:48:02', '2025-12-17 19:47:24', 'm7zeYEed', '5536575'), + (68652, 756, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm7zeYEed', '5537735'), + (68653, 756, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm7zeYEed', '5540859'), + (68654, 756, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm7zeYEed', '5555245'), + (68655, 756, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm7zeYEed', '5557747'), + (68656, 756, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm7zeYEed', '5560255'), + (68657, 756, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm7zeYEed', '5562906'), + (68658, 756, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm7zeYEed', '5600604'), + (68659, 756, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm7zeYEed', '5605544'), + (68660, 756, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'm7zeYEed', '5606737'), + (68661, 756, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm7zeYEed', '5630960'), + (68662, 756, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm7zeYEed', '5630961'), + (68663, 756, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm7zeYEed', '5630962'), + (68664, 756, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm7zeYEed', '5630966'), + (68665, 756, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm7zeYEed', '5630967'), + (68666, 756, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm7zeYEed', '5630968'), + (68667, 756, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm7zeYEed', '5635406'), + (68668, 756, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm7zeYEed', '5638765'), + (68669, 756, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm7zeYEed', '5640097'), + (68670, 756, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm7zeYEed', '5640843'), + (68671, 756, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm7zeYEed', '5641521'), + (68672, 756, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm7zeYEed', '5642818'), + (68673, 756, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm7zeYEed', '5652395'), + (68674, 756, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm7zeYEed', '5670445'), + (68675, 756, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm7zeYEed', '5671637'), + (68676, 756, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm7zeYEed', '5672329'), + (68677, 756, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm7zeYEed', '5674057'), + (68678, 756, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm7zeYEed', '5674060'), + (68679, 756, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm7zeYEed', '5677461'), + (68680, 756, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm7zeYEed', '5698046'), + (68681, 756, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm7zeYEed', '5699760'), + (68682, 756, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm7zeYEed', '5741601'), + (68683, 756, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm7zeYEed', '5763458'), + (68684, 756, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm7zeYEed', '5774172'), + (68685, 756, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'm7zeYEed', '5818247'), + (68686, 756, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm7zeYEed', '5819471'), + (68687, 756, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm7zeYEed', '5827739'), + (68688, 756, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm7zeYEed', '5844306'), + (68689, 756, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm7zeYEed', '5850159'), + (68690, 756, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm7zeYEed', '5858999'), + (68691, 756, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm7zeYEed', '5871984'), + (68692, 756, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm7zeYEed', '5876354'), + (68693, 756, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm7zeYEed', '5880939'), + (68694, 756, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm7zeYEed', '5887890'), + (68695, 756, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm7zeYEed', '5888598'), + (68696, 756, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm7zeYEed', '5893260'), + (68697, 756, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7zeYEed', '6045684'), + (68698, 757, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'R40Q9Ybd', '3236448'), + (68699, 757, 823, 'maybe', '2021-06-19 21:20:31', '2025-12-17 19:47:48', 'R40Q9Ybd', '3974109'), + (68700, 757, 844, 'attending', '2021-06-22 03:24:37', '2025-12-17 19:47:38', 'R40Q9Ybd', '4014338'), + (68701, 757, 867, 'not_attending', '2021-06-26 13:43:43', '2025-12-17 19:47:38', 'R40Q9Ybd', '4021848'), + (68702, 757, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40Q9Ybd', '4136937'), + (68703, 757, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40Q9Ybd', '4136938'), + (68704, 757, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40Q9Ybd', '4136947'), + (68705, 757, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'R40Q9Ybd', '4210314'), + (68706, 757, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40Q9Ybd', '4225444'), + (68707, 757, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40Q9Ybd', '4239259'), + (68708, 757, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'R40Q9Ybd', '4240316'), + (68709, 757, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'R40Q9Ybd', '4240317'), + (68710, 757, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'R40Q9Ybd', '4240318'), + (68711, 757, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'R40Q9Ybd', '4240320'), + (68712, 757, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40Q9Ybd', '4250163'), + (68713, 757, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'R40Q9Ybd', '4275957'), + (68714, 757, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'R40Q9Ybd', '4277819'), + (68715, 757, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'R40Q9Ybd', '4301723'), + (68716, 757, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'R40Q9Ybd', '4302093'), + (68717, 757, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'R40Q9Ybd', '4304151'), + (68718, 757, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'R40Q9Ybd', '4356801'), + (68719, 757, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'R40Q9Ybd', '4366186'), + (68720, 757, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'R40Q9Ybd', '4366187'), + (68721, 757, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'R40Q9Ybd', '4420735'), + (68722, 757, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'R40Q9Ybd', '4420738'), + (68723, 757, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'R40Q9Ybd', '4420739'), + (68724, 757, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'R40Q9Ybd', '4420741'), + (68725, 757, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'R40Q9Ybd', '4420744'), + (68726, 757, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'R40Q9Ybd', '4420747'), + (68727, 757, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'R40Q9Ybd', '4420748'), + (68728, 757, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'R40Q9Ybd', '4420749'), + (68729, 757, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'R40Q9Ybd', '4461883'), + (68730, 757, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'R40Q9Ybd', '4508342'), + (68731, 757, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'R40Q9Ybd', '4568602'), + (68732, 757, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'R40Q9Ybd', '4572153'), + (68733, 757, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'R40Q9Ybd', '4585962'), + (68734, 757, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'R40Q9Ybd', '4596356'), + (68735, 757, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'R40Q9Ybd', '4598860'), + (68736, 757, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'R40Q9Ybd', '4598861'), + (68737, 757, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'R40Q9Ybd', '4602797'), + (68738, 757, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'R40Q9Ybd', '4637896'), + (68739, 757, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'R40Q9Ybd', '4642994'), + (68740, 757, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'R40Q9Ybd', '4642995'), + (68741, 757, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'R40Q9Ybd', '4642996'), + (68742, 757, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'R40Q9Ybd', '4642997'), + (68743, 757, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'R40Q9Ybd', '4645687'), + (68744, 757, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'R40Q9Ybd', '4645698'), + (68745, 757, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'R40Q9Ybd', '4645704'), + (68746, 757, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'R40Q9Ybd', '4645705'), + (68747, 757, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'R40Q9Ybd', '4668385'), + (68748, 757, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'R40Q9Ybd', '4694407'), + (68749, 757, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'R40Q9Ybd', '4706262'), + (68750, 757, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'R40Q9Ybd', '4736497'), + (68751, 757, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'R40Q9Ybd', '4736499'), + (68752, 757, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'R40Q9Ybd', '4736500'), + (68753, 757, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'R40Q9Ybd', '4736503'), + (68754, 757, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'R40Q9Ybd', '4736504'), + (68755, 757, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'R40Q9Ybd', '4746789'), + (68756, 757, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'R40Q9Ybd', '4753929'), + (68757, 757, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'R40Q9Ybd', '5038850'), + (68758, 757, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'R40Q9Ybd', '5045826'), + (68759, 757, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'R40Q9Ybd', '5132533'), + (68760, 757, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'R40Q9Ybd', '5186582'), + (68761, 757, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'R40Q9Ybd', '5186583'), + (68762, 757, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'R40Q9Ybd', '5186585'), + (68763, 757, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'R40Q9Ybd', '5190437'), + (68764, 757, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40Q9Ybd', '6045684'), + (68765, 758, 1131, 'maybe', '2021-12-18 22:34:04', '2025-12-17 19:47:31', '4oMYJDvm', '4658825'), + (68766, 758, 1151, 'maybe', '2022-01-05 20:35:29', '2025-12-17 19:47:31', '4oMYJDvm', '4708704'), + (68767, 758, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMYJDvm', '4736497'), + (68768, 758, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMYJDvm', '4736499'), + (68769, 758, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4oMYJDvm', '4736500'), + (68770, 758, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMYJDvm', '4736503'), + (68771, 758, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMYJDvm', '4736504'), + (68772, 758, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4oMYJDvm', '4746789'), + (68773, 758, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMYJDvm', '4753929'), + (68774, 758, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMYJDvm', '5038850'), + (68775, 758, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMYJDvm', '5045826'), + (68776, 758, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMYJDvm', '5132533'), + (68777, 758, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMYJDvm', '5186582'), + (68778, 758, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMYJDvm', '5186583'), + (68779, 758, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMYJDvm', '5186585'), + (68780, 758, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMYJDvm', '5190437'), + (68781, 758, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4oMYJDvm', '5195095'), + (68782, 758, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMYJDvm', '5215989'), + (68783, 758, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4oMYJDvm', '5223686'), + (68784, 758, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4oMYJDvm', '5227432'), + (68785, 758, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4oMYJDvm', '5247467'), + (68786, 758, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4oMYJDvm', '5260800'), + (68787, 758, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4oMYJDvm', '5269930'), + (68788, 758, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4oMYJDvm', '5271448'), + (68789, 758, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4oMYJDvm', '5271449'), + (68790, 758, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4oMYJDvm', '5276469'), + (68791, 758, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4oMYJDvm', '5278159'), + (68792, 758, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4oMYJDvm', '5363695'), + (68793, 758, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMYJDvm', '5365960'), + (68794, 758, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMYJDvm', '5368973'), + (68795, 758, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMYJDvm', '5378247'), + (68796, 758, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4oMYJDvm', '5389605'), + (68797, 758, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4oMYJDvm', '5397265'), + (68798, 758, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMYJDvm', '5403967'), + (68799, 758, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMYJDvm', '5404786'), + (68800, 758, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMYJDvm', '5405203'), + (68801, 758, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '4oMYJDvm', '5408794'), + (68802, 758, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMYJDvm', '5411699'), + (68803, 758, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4oMYJDvm', '5412550'), + (68804, 758, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMYJDvm', '5415046'), + (68805, 758, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4oMYJDvm', '5422086'), + (68806, 758, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4oMYJDvm', '5422406'), + (68807, 758, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMYJDvm', '5424565'), + (68808, 758, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMYJDvm', '5426882'), + (68809, 758, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMYJDvm', '5427083'), + (68810, 758, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4oMYJDvm', '5441125'), + (68811, 758, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4oMYJDvm', '5441126'), + (68812, 758, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMYJDvm', '5441128'), + (68813, 758, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMYJDvm', '5446643'), + (68814, 758, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMYJDvm', '5453325'), + (68815, 758, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMYJDvm', '5454516'), + (68816, 758, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMYJDvm', '5454605'), + (68817, 758, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMYJDvm', '5455037'), + (68818, 758, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4oMYJDvm', '5461278'), + (68819, 758, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMYJDvm', '5469480'), + (68820, 758, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4oMYJDvm', '5471073'), + (68821, 758, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMYJDvm', '5474663'), + (68822, 758, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMYJDvm', '5482022'), + (68823, 758, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMYJDvm', '5482793'), + (68824, 758, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4oMYJDvm', '5488912'), + (68825, 758, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4oMYJDvm', '5492192'), + (68826, 758, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4oMYJDvm', '5493139'), + (68827, 758, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4oMYJDvm', '5493200'), + (68828, 758, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4oMYJDvm', '5502188'), + (68829, 758, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4oMYJDvm', '5512862'), + (68830, 758, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4oMYJDvm', '5513985'), + (68831, 758, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4oMYJDvm', '6045684'), + (68832, 759, 166, 'attending', '2020-11-21 01:51:00', '2025-12-17 19:47:54', 'kdK0aaBm', '3058704'), + (68833, 759, 245, 'not_attending', '2020-11-30 16:15:05', '2025-12-17 19:47:54', 'kdK0aaBm', '3149476'), + (68834, 759, 246, 'attending', '2020-12-15 22:10:26', '2025-12-17 19:47:55', 'kdK0aaBm', '3149477'), + (68835, 759, 249, 'not_attending', '2020-11-17 03:55:40', '2025-12-17 19:47:54', 'kdK0aaBm', '3149480'), + (68836, 759, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'kdK0aaBm', '3236467'), + (68837, 759, 468, 'attending', '2020-11-21 01:50:54', '2025-12-17 19:47:54', 'kdK0aaBm', '3285413'), + (68838, 759, 469, 'attending', '2020-11-28 20:05:20', '2025-12-17 19:47:54', 'kdK0aaBm', '3285414'), + (68839, 759, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'kdK0aaBm', '3297764'), + (68840, 759, 493, 'attending', '2020-12-05 23:52:43', '2025-12-17 19:47:54', 'kdK0aaBm', '3313856'), + (68841, 759, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'kdK0aaBm', '3314909'), + (68842, 759, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'kdK0aaBm', '3314964'), + (68843, 759, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'kdK0aaBm', '3323365'), + (68844, 759, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'kdK0aaBm', '3324148'), + (68845, 759, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'kdK0aaBm', '3329383'), + (68846, 759, 526, 'attending', '2021-01-02 20:53:21', '2025-12-17 19:47:48', 'kdK0aaBm', '3351539'), + (68847, 759, 536, 'attending', '2021-01-07 20:40:30', '2025-12-17 19:47:48', 'kdK0aaBm', '3386848'), + (68848, 759, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'kdK0aaBm', '3389527'), + (68849, 759, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'kdK0aaBm', '3396499'), + (68850, 759, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'kdK0aaBm', '3403650'), + (68851, 759, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdK0aaBm', '3406988'), + (68852, 759, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'kdK0aaBm', '3416576'), + (68853, 759, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'kdK0aaBm', '3418925'), + (68854, 759, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'kdK0aaBm', '3426074'), + (68855, 759, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'kdK0aaBm', '3430267'), + (68856, 759, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'kdK0aaBm', '3432673'), + (68857, 759, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'kdK0aaBm', '3468125'), + (68858, 759, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'kdK0aaBm', '3470303'), + (68859, 759, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdK0aaBm', '3470305'), + (68860, 759, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdK0aaBm', '3470991'), + (68861, 759, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdK0aaBm', '3517815'), + (68862, 759, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdK0aaBm', '3517816'), + (68863, 759, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdK0aaBm', '3523941'), + (68864, 759, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdK0aaBm', '3533850'), + (68865, 759, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdK0aaBm', '3536632'), + (68866, 759, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdK0aaBm', '3536656'), + (68867, 759, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdK0aaBm', '3539916'), + (68868, 759, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdK0aaBm', '3539917'), + (68869, 759, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdK0aaBm', '3539918'), + (68870, 759, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdK0aaBm', '3539919'), + (68871, 759, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdK0aaBm', '3539920'), + (68872, 759, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdK0aaBm', '3539921'), + (68873, 759, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdK0aaBm', '3539922'), + (68874, 759, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdK0aaBm', '3539923'), + (68875, 759, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdK0aaBm', '3539927'), + (68876, 759, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdK0aaBm', '3582734'), + (68877, 759, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdK0aaBm', '3583262'), + (68878, 759, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdK0aaBm', '3619523'), + (68879, 759, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdK0aaBm', '3661369'), + (68880, 759, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdK0aaBm', '3674262'), + (68881, 759, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdK0aaBm', '3677402'), + (68882, 759, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdK0aaBm', '3730212'), + (68883, 759, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0aaBm', '6045684'), + (68884, 760, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd3YjJxzA', '5441128'), + (68885, 760, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd3YjJxzA', '5441131'), + (68886, 760, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd3YjJxzA', '5441132'), + (68887, 760, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd3YjJxzA', '5461278'), + (68888, 760, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd3YjJxzA', '5469480'), + (68889, 760, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'd3YjJxzA', '5471073'), + (68890, 760, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'd3YjJxzA', '5474663'), + (68891, 760, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd3YjJxzA', '5482022'), + (68892, 760, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd3YjJxzA', '5482793'), + (68893, 760, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd3YjJxzA', '5488912'), + (68894, 760, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd3YjJxzA', '5492192'), + (68895, 760, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd3YjJxzA', '5493139'), + (68896, 760, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd3YjJxzA', '5493200'), + (68897, 760, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd3YjJxzA', '5502188'), + (68898, 760, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd3YjJxzA', '5505059'), + (68899, 760, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd3YjJxzA', '5509055'), + (68900, 760, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd3YjJxzA', '5512862'), + (68901, 760, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd3YjJxzA', '5513985'), + (68902, 760, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd3YjJxzA', '5519981'), + (68903, 760, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd3YjJxzA', '5522550'), + (68904, 760, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd3YjJxzA', '5534683'), + (68905, 760, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd3YjJxzA', '5537735'), + (68906, 760, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd3YjJxzA', '5540859'), + (68907, 760, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd3YjJxzA', '5546619'), + (68908, 760, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd3YjJxzA', '5555245'), + (68909, 760, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd3YjJxzA', '5557747'), + (68910, 760, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd3YjJxzA', '5560255'), + (68911, 760, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd3YjJxzA', '5562906'), + (68912, 760, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd3YjJxzA', '5600604'), + (68913, 760, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd3YjJxzA', '5605544'), + (68914, 760, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'd3YjJxzA', '5606737'), + (68915, 760, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd3YjJxzA', '5635406'), + (68916, 760, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd3YjJxzA', '5638765'), + (68917, 760, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd3YjJxzA', '5640843'), + (68918, 760, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3YjJxzA', '6045684'), + (68919, 761, 2448, 'attending', '2024-03-28 21:33:32', '2025-12-17 19:46:33', 'Md3N3XD4', '6734371'), + (68920, 761, 2509, 'attending', '2024-03-28 21:27:31', '2025-12-17 19:46:33', 'Md3N3XD4', '7074349'), + (68921, 761, 2511, 'attending', '2024-04-02 18:34:03', '2025-12-17 19:46:33', 'Md3N3XD4', '7074351'), + (68922, 761, 2512, 'attending', '2024-04-02 19:14:17', '2025-12-17 19:46:33', 'Md3N3XD4', '7074352'), + (68923, 761, 2521, 'not_attending', '2024-06-03 21:59:53', '2025-12-17 19:46:29', 'Md3N3XD4', '7074361'), + (68924, 761, 2522, 'attending', '2024-07-17 14:48:29', '2025-12-17 19:46:30', 'Md3N3XD4', '7074362'), + (68925, 761, 2523, 'not_attending', '2024-06-03 22:01:20', '2025-12-17 19:46:36', 'Md3N3XD4', '7074363'), + (68926, 761, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Md3N3XD4', '7074364'), + (68927, 761, 2529, 'maybe', '2024-05-23 13:39:52', '2025-12-17 19:46:35', 'Md3N3XD4', '7074369'), + (68928, 761, 2537, 'attending', '2024-03-22 23:49:40', '2025-12-17 19:46:33', 'Md3N3XD4', '7085484'), + (68929, 761, 2539, 'attending', '2024-04-02 19:14:34', '2025-12-17 19:46:33', 'Md3N3XD4', '7085486'), + (68930, 761, 2547, 'attending', '2024-03-28 21:33:45', '2025-12-17 19:46:33', 'Md3N3XD4', '7096945'), + (68931, 761, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Md3N3XD4', '7098747'), + (68932, 761, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Md3N3XD4', '7113468'), + (68933, 761, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Md3N3XD4', '7114856'), + (68934, 761, 2555, 'attending', '2024-04-02 19:58:57', '2025-12-17 19:46:33', 'Md3N3XD4', '7114951'), + (68935, 761, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Md3N3XD4', '7114955'), + (68936, 761, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Md3N3XD4', '7114956'), + (68937, 761, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Md3N3XD4', '7114957'), + (68938, 761, 2562, 'attending', '2024-04-02 18:34:34', '2025-12-17 19:46:33', 'Md3N3XD4', '7134552'), + (68939, 761, 2563, 'not_attending', '2024-04-02 19:59:03', '2025-12-17 19:46:33', 'Md3N3XD4', '7134734'), + (68940, 761, 2564, 'attending', '2024-04-02 19:58:46', '2025-12-17 19:46:33', 'Md3N3XD4', '7134735'), + (68941, 761, 2566, 'maybe', '2024-04-09 00:00:18', '2025-12-17 19:46:34', 'Md3N3XD4', '7140664'), + (68942, 761, 2568, 'attending', '2024-04-05 18:45:50', '2025-12-17 19:46:33', 'Md3N3XD4', '7153615'), + (68943, 761, 2569, 'maybe', '2024-04-05 20:35:32', '2025-12-17 19:46:33', 'Md3N3XD4', '7154056'), + (68944, 761, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Md3N3XD4', '7159484'), + (68945, 761, 2572, 'attending', '2024-04-11 10:58:42', '2025-12-17 19:46:33', 'Md3N3XD4', '7159522'), + (68946, 761, 2573, 'maybe', '2024-04-08 23:53:23', '2025-12-17 19:46:34', 'Md3N3XD4', '7160612'), + (68947, 761, 2574, 'attending', '2024-04-11 10:58:27', '2025-12-17 19:46:33', 'Md3N3XD4', '7163825'), + (68948, 761, 2575, 'maybe', '2024-04-12 22:07:50', '2025-12-17 19:46:33', 'Md3N3XD4', '7164534'), + (68949, 761, 2579, 'attending', '2024-04-11 11:50:31', '2025-12-17 19:46:33', 'Md3N3XD4', '7167020'), + (68950, 761, 2581, 'attending', '2024-04-23 12:14:36', '2025-12-17 19:46:34', 'Md3N3XD4', '7169048'), + (68951, 761, 2585, 'attending', '2024-04-23 12:14:43', '2025-12-17 19:46:34', 'Md3N3XD4', '7175828'), + (68952, 761, 2590, 'maybe', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Md3N3XD4', '7178446'), + (68953, 761, 2601, 'attending', '2024-04-24 03:28:54', '2025-12-17 19:46:34', 'Md3N3XD4', '7197023'), + (68954, 761, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Md3N3XD4', '7220467'), + (68955, 761, 2603, 'attending', '2024-05-15 19:51:37', '2025-12-17 19:46:35', 'Md3N3XD4', '7225669'), + (68956, 761, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Md3N3XD4', '7240354'), + (68957, 761, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Md3N3XD4', '7251633'), + (68958, 761, 2622, 'attending', '2024-05-09 05:24:44', '2025-12-17 19:46:35', 'Md3N3XD4', '7262064'), + (68959, 761, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'Md3N3XD4', '7263048'), + (68960, 761, 2625, 'maybe', '2024-05-12 15:52:15', '2025-12-17 19:46:35', 'Md3N3XD4', '7263302'), + (68961, 761, 2627, 'attending', '2024-05-23 13:39:49', '2025-12-17 19:46:35', 'Md3N3XD4', '7264724'), + (68962, 761, 2629, 'maybe', '2024-06-03 22:01:23', '2025-12-17 19:46:28', 'Md3N3XD4', '7264726'), + (68963, 761, 2630, 'attending', '2024-05-16 22:51:42', '2025-12-17 19:46:35', 'Md3N3XD4', '7264801'), + (68964, 761, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'Md3N3XD4', '7302674'), + (68965, 761, 2666, 'attending', '2024-06-06 18:28:16', '2025-12-17 19:46:36', 'Md3N3XD4', '7307775'), + (68966, 761, 2672, 'attending', '2024-06-09 17:11:46', '2025-12-17 19:46:28', 'Md3N3XD4', '7318459'), + (68967, 761, 2673, 'not_attending', '2024-06-09 20:30:18', '2025-12-17 19:46:28', 'Md3N3XD4', '7319473'), + (68968, 761, 2679, 'attending', '2024-06-16 18:23:06', '2025-12-17 19:46:29', 'Md3N3XD4', '7319490'), + (68969, 761, 2681, 'attending', '2024-06-10 01:51:30', '2025-12-17 19:46:28', 'Md3N3XD4', '7320409'), + (68970, 761, 2684, 'maybe', '2024-06-11 10:34:44', '2025-12-17 19:46:28', 'Md3N3XD4', '7322001'), + (68971, 761, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Md3N3XD4', '7324073'), + (68972, 761, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Md3N3XD4', '7324074'), + (68973, 761, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Md3N3XD4', '7324075'), + (68974, 761, 2691, 'attending', '2024-07-17 14:48:34', '2025-12-17 19:46:30', 'Md3N3XD4', '7324076'), + (68975, 761, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Md3N3XD4', '7324078'), + (68976, 761, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Md3N3XD4', '7324082'), + (68977, 761, 2706, 'maybe', '2024-06-18 19:41:55', '2025-12-17 19:46:28', 'Md3N3XD4', '7324947'), + (68978, 761, 2716, 'attending', '2024-06-16 18:23:04', '2025-12-17 19:46:29', 'Md3N3XD4', '7329096'), + (68979, 761, 2718, 'maybe', '2024-06-18 19:41:46', '2025-12-17 19:46:28', 'Md3N3XD4', '7330458'), + (68980, 761, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Md3N3XD4', '7331457'), + (68981, 761, 2728, 'maybe', '2024-06-21 19:03:33', '2025-12-17 19:46:29', 'Md3N3XD4', '7334124'), + (68982, 761, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'Md3N3XD4', '7356752'), + (68983, 761, 2760, 'attending', '2024-07-17 14:48:23', '2025-12-17 19:46:30', 'Md3N3XD4', '7359871'), + (68984, 761, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Md3N3XD4', '7363643'), + (68985, 761, 2770, 'attending', '2024-07-20 20:02:37', '2025-12-17 19:46:30', 'Md3N3XD4', '7368196'), + (68986, 761, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Md3N3XD4', '7368606'), + (68987, 761, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Md3N3XD4', '7397462'), + (68988, 761, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Md3N3XD4', '7424275'), + (68989, 761, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Md3N3XD4', '7424276'), + (68990, 761, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Md3N3XD4', '7432751'), + (68991, 761, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Md3N3XD4', '7432752'), + (68992, 761, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Md3N3XD4', '7432753'), + (68993, 761, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Md3N3XD4', '7432754'), + (68994, 761, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Md3N3XD4', '7432755'), + (68995, 761, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Md3N3XD4', '7432756'), + (68996, 761, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Md3N3XD4', '7432758'), + (68997, 761, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Md3N3XD4', '7432759'), + (68998, 761, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Md3N3XD4', '7433834'), + (68999, 761, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Md3N3XD4', '7470197'), + (69000, 761, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Md3N3XD4', '7685613'), + (69001, 761, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Md3N3XD4', '7688194'), + (69002, 761, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Md3N3XD4', '7688196'), + (69003, 761, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Md3N3XD4', '7688289'), + (69004, 761, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Md3N3XD4', '7692763'), + (69005, 761, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Md3N3XD4', '7697552'), + (69006, 761, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Md3N3XD4', '7699878'), + (69007, 761, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Md3N3XD4', '7704043'), + (69008, 761, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Md3N3XD4', '7712467'), + (69009, 761, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Md3N3XD4', '7713585'), + (69010, 761, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Md3N3XD4', '7713586'), + (69011, 761, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Md3N3XD4', '7738518'), + (69012, 761, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Md3N3XD4', '7750636'), + (69013, 761, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Md3N3XD4', '7796540'), + (69014, 761, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Md3N3XD4', '7796541'), + (69015, 761, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Md3N3XD4', '7796542'), + (69016, 761, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Md3N3XD4', '7825913'), + (69017, 761, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Md3N3XD4', '7826209'), + (69018, 761, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Md3N3XD4', '7834742'), + (69019, 761, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Md3N3XD4', '7842108'), + (69020, 761, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Md3N3XD4', '7842902'), + (69021, 761, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Md3N3XD4', '7842903'), + (69022, 761, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Md3N3XD4', '7842904'), + (69023, 761, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Md3N3XD4', '7842905'), + (69024, 761, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Md3N3XD4', '7855719'), + (69025, 761, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Md3N3XD4', '7860683'), + (69026, 761, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Md3N3XD4', '7860684'), + (69027, 761, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Md3N3XD4', '7866095'), + (69028, 761, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Md3N3XD4', '7869170'), + (69029, 761, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Md3N3XD4', '7869188'), + (69030, 761, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Md3N3XD4', '7869201'), + (69031, 761, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Md3N3XD4', '7877465'), + (69032, 761, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Md3N3XD4', '7888250'), + (69033, 761, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Md3N3XD4', '7904777'), + (69034, 761, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Md3N3XD4', '8349164'), + (69035, 761, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Md3N3XD4', '8349545'), + (69036, 761, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Md3N3XD4', '8368028'), + (69037, 761, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Md3N3XD4', '8368029'), + (69038, 761, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Md3N3XD4', '8388462'), + (69039, 761, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Md3N3XD4', '8400273'), + (69040, 761, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Md3N3XD4', '8400275'), + (69041, 761, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Md3N3XD4', '8400276'), + (69042, 761, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Md3N3XD4', '8404977'), + (69043, 761, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Md3N3XD4', '8430783'), + (69044, 761, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Md3N3XD4', '8430784'), + (69045, 761, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Md3N3XD4', '8430799'), + (69046, 761, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Md3N3XD4', '8430800'), + (69047, 761, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Md3N3XD4', '8430801'), + (69048, 761, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Md3N3XD4', '8438709'), + (69049, 761, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Md3N3XD4', '8457738'), + (69050, 761, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Md3N3XD4', '8459566'), + (69051, 761, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Md3N3XD4', '8459567'), + (69052, 761, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Md3N3XD4', '8461032'), + (69053, 761, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Md3N3XD4', '8477877'), + (69054, 761, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Md3N3XD4', '8485688'), + (69055, 761, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Md3N3XD4', '8490587'), + (69056, 761, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Md3N3XD4', '8493552'), + (69057, 761, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Md3N3XD4', '8493553'), + (69058, 761, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Md3N3XD4', '8493554'), + (69059, 761, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Md3N3XD4', '8493555'), + (69060, 761, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Md3N3XD4', '8493556'), + (69061, 761, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Md3N3XD4', '8493557'), + (69062, 761, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Md3N3XD4', '8493558'), + (69063, 761, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Md3N3XD4', '8493559'), + (69064, 761, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Md3N3XD4', '8493560'), + (69065, 761, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Md3N3XD4', '8493561'), + (69066, 761, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Md3N3XD4', '8493572'), + (69067, 761, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Md3N3XD4', '8540725'), + (69068, 761, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Md3N3XD4', '8555421'), + (69069, 762, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaRrKpm', '3314964'), + (69070, 762, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'ndaRrKpm', '3323365'), + (69071, 762, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'ndaRrKpm', '3329383'), + (69072, 762, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndaRrKpm', '3351539'), + (69073, 762, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndaRrKpm', '3386848'), + (69074, 762, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndaRrKpm', '3389527'), + (69075, 762, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndaRrKpm', '3396499'), + (69076, 762, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndaRrKpm', '3403650'), + (69077, 762, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaRrKpm', '3406988'), + (69078, 762, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndaRrKpm', '3416576'), + (69079, 762, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'ndaRrKpm', '3430267'), + (69080, 762, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaRrKpm', '6045684'), + (69081, 763, 793, 'not_attending', '2021-06-02 23:17:49', '2025-12-17 19:47:47', '6AX5WDz4', '3793537'), + (69082, 763, 824, 'not_attending', '2021-06-03 18:13:20', '2025-12-17 19:47:47', '6AX5WDz4', '3974112'), + (69083, 763, 827, 'not_attending', '2021-06-02 20:04:51', '2025-12-17 19:47:47', '6AX5WDz4', '3975311'), + (69084, 763, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AX5WDz4', '6045684'), + (69085, 764, 2197, 'not_attending', '2023-09-15 13:36:01', '2025-12-17 19:46:44', '4olXe3od', '6359399'), + (69086, 764, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4olXe3od', '6361711'), + (69087, 764, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4olXe3od', '6361713'), + (69088, 764, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4olXe3od', '6388604'), + (69089, 764, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4olXe3od', '6394629'), + (69090, 764, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4olXe3od', '6394631'), + (69091, 764, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', '4olXe3od', '6431478'), + (69092, 765, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'ndlkJ8b4', '7074364'), + (69093, 765, 2555, 'attending', '2024-04-13 21:48:38', '2025-12-17 19:46:34', 'ndlkJ8b4', '7114951'), + (69094, 765, 2556, 'attending', '2024-04-20 22:30:57', '2025-12-17 19:46:34', 'ndlkJ8b4', '7114955'), + (69095, 765, 2557, 'attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'ndlkJ8b4', '7114956'), + (69096, 765, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'ndlkJ8b4', '7114957'), + (69097, 765, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'ndlkJ8b4', '7153615'), + (69098, 765, 2570, 'not_attending', '2024-04-07 22:52:26', '2025-12-17 19:46:33', 'ndlkJ8b4', '7159187'), + (69099, 765, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'ndlkJ8b4', '7159484'), + (69100, 765, 2577, 'attending', '2024-04-10 20:46:42', '2025-12-17 19:46:33', 'ndlkJ8b4', '7166293'), + (69101, 765, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'ndlkJ8b4', '7178446'), + (69102, 765, 2597, 'attending', '2024-04-22 15:27:07', '2025-12-17 19:46:34', 'ndlkJ8b4', '7186726'), + (69103, 765, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'ndlkJ8b4', '7220467'), + (69104, 765, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'ndlkJ8b4', '7240354'), + (69105, 765, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'ndlkJ8b4', '7251633'), + (69106, 765, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'ndlkJ8b4', '7263048'), + (69107, 765, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'ndlkJ8b4', '7302674'), + (69108, 765, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'ndlkJ8b4', '7324073'), + (69109, 765, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'ndlkJ8b4', '7324074'), + (69110, 765, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'ndlkJ8b4', '7324075'), + (69111, 765, 2693, 'attending', '2024-07-27 04:21:04', '2025-12-17 19:46:31', 'ndlkJ8b4', '7324078'), + (69112, 765, 2694, 'attending', '2024-08-05 22:41:47', '2025-12-17 19:46:31', 'ndlkJ8b4', '7324079'), + (69113, 765, 2695, 'attending', '2024-08-17 21:59:43', '2025-12-17 19:46:31', 'ndlkJ8b4', '7324080'), + (69114, 765, 2696, 'attending', '2024-08-18 20:14:48', '2025-12-17 19:46:32', 'ndlkJ8b4', '7324081'), + (69115, 765, 2697, 'attending', '2024-08-30 14:34:12', '2025-12-17 19:46:32', 'ndlkJ8b4', '7324082'), + (69116, 765, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'ndlkJ8b4', '7331457'), + (69117, 765, 2737, 'attending', '2024-07-02 22:35:06', '2025-12-17 19:46:29', 'ndlkJ8b4', '7344070'), + (69118, 765, 2738, 'attending', '2024-07-01 23:33:36', '2025-12-17 19:46:29', 'ndlkJ8b4', '7344085'), + (69119, 765, 2739, 'attending', '2024-07-01 20:01:46', '2025-12-17 19:46:29', 'ndlkJ8b4', '7344575'), + (69120, 765, 2742, 'attending', '2024-07-03 22:52:42', '2025-12-17 19:46:29', 'ndlkJ8b4', '7345167'), + (69121, 765, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'ndlkJ8b4', '7356752'), + (69122, 765, 2766, 'attending', '2024-07-27 04:21:12', '2025-12-17 19:46:30', 'ndlkJ8b4', '7363643'), + (69123, 765, 2773, 'not_attending', '2024-07-21 18:44:45', '2025-12-17 19:46:31', 'ndlkJ8b4', '7368605'), + (69124, 765, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'ndlkJ8b4', '7368606'), + (69125, 765, 2789, 'attending', '2024-08-06 00:08:08', '2025-12-17 19:46:31', 'ndlkJ8b4', '7384047'), + (69126, 765, 2790, 'attending', '2024-08-04 03:49:55', '2025-12-17 19:46:31', 'ndlkJ8b4', '7384857'), + (69127, 765, 2795, 'attending', '2024-08-09 18:57:17', '2025-12-17 19:46:31', 'ndlkJ8b4', '7391265'), + (69128, 765, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'ndlkJ8b4', '7397462'), + (69129, 765, 2804, 'attending', '2024-08-18 20:14:42', '2025-12-17 19:46:32', 'ndlkJ8b4', '7399270'), + (69130, 765, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'ndlkJ8b4', '7424275'), + (69131, 765, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'ndlkJ8b4', '7424276'), + (69132, 765, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'ndlkJ8b4', '7432751'), + (69133, 765, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'ndlkJ8b4', '7432752'), + (69134, 765, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'ndlkJ8b4', '7432753'), + (69135, 765, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432754'), + (69136, 765, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432755'), + (69137, 765, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432756'), + (69138, 765, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432758'), + (69139, 765, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'ndlkJ8b4', '7432759'), + (69140, 765, 2832, 'attending', '2024-09-11 22:09:15', '2025-12-17 19:46:24', 'ndlkJ8b4', '7433324'), + (69141, 765, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'ndlkJ8b4', '7433834'), + (69142, 765, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'ndlkJ8b4', '7470197'), + (69143, 765, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'ndlkJ8b4', '7685613'), + (69144, 765, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'ndlkJ8b4', '7688194'), + (69145, 765, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'ndlkJ8b4', '7688196'), + (69146, 765, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'ndlkJ8b4', '7688289'), + (69147, 765, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'ndlkJ8b4', '7692763'), + (69148, 765, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'ndlkJ8b4', '7697552'), + (69149, 765, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'ndlkJ8b4', '7699878'), + (69150, 765, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'ndlkJ8b4', '7704043'), + (69151, 765, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ndlkJ8b4', '7712467'), + (69152, 765, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ndlkJ8b4', '7713585'), + (69153, 765, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ndlkJ8b4', '7713586'), + (69154, 765, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'ndlkJ8b4', '7738518'), + (69155, 765, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ndlkJ8b4', '7750636'), + (69156, 765, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ndlkJ8b4', '7796540'), + (69157, 765, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ndlkJ8b4', '7796541'), + (69158, 765, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ndlkJ8b4', '7796542'), + (69159, 765, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ndlkJ8b4', '7825913'), + (69160, 765, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ndlkJ8b4', '7826209'), + (69161, 765, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ndlkJ8b4', '7834742'), + (69162, 765, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ndlkJ8b4', '7842108'), + (69163, 765, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ndlkJ8b4', '7842902'), + (69164, 765, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ndlkJ8b4', '7842903'), + (69165, 765, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ndlkJ8b4', '7842904'), + (69166, 765, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ndlkJ8b4', '7842905'), + (69167, 765, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ndlkJ8b4', '7855719'), + (69168, 765, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ndlkJ8b4', '7860683'), + (69169, 765, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ndlkJ8b4', '7860684'), + (69170, 765, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ndlkJ8b4', '7866095'), + (69171, 765, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ndlkJ8b4', '7869170'), + (69172, 765, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ndlkJ8b4', '7869188'), + (69173, 765, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ndlkJ8b4', '7869201'), + (69174, 765, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ndlkJ8b4', '7877465'), + (69175, 765, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ndlkJ8b4', '7888250'), + (69176, 765, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'ndlkJ8b4', '7904777'), + (69177, 765, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ndlkJ8b4', '8349164'), + (69178, 765, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ndlkJ8b4', '8349545'), + (69179, 765, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ndlkJ8b4', '8353584'), + (69180, 765, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'ndlkJ8b4', '8368028'), + (69181, 765, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'ndlkJ8b4', '8368029'), + (69182, 765, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'ndlkJ8b4', '8388462'), + (69183, 765, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'ndlkJ8b4', '8400273'), + (69184, 765, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'ndlkJ8b4', '8400274'), + (69185, 765, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'ndlkJ8b4', '8400275'), + (69186, 765, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'ndlkJ8b4', '8400276'), + (69187, 765, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'ndlkJ8b4', '8404977'), + (69188, 765, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'ndlkJ8b4', '8430783'), + (69189, 765, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'ndlkJ8b4', '8430784'), + (69190, 765, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'ndlkJ8b4', '8430799'), + (69191, 765, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'ndlkJ8b4', '8430800'), + (69192, 765, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'ndlkJ8b4', '8430801'), + (69193, 765, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'ndlkJ8b4', '8438709'), + (69194, 765, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'ndlkJ8b4', '8457738'), + (69195, 765, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'ndlkJ8b4', '8459566'), + (69196, 765, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'ndlkJ8b4', '8459567'), + (69197, 765, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'ndlkJ8b4', '8461032'), + (69198, 765, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'ndlkJ8b4', '8477877'), + (69199, 765, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'ndlkJ8b4', '8485688'), + (69200, 766, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dN9zVk74', '5271448'), + (69201, 766, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dN9zVk74', '5271449'), + (69202, 766, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dN9zVk74', '5276469'), + (69203, 766, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dN9zVk74', '5278159'), + (69204, 766, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dN9zVk74', '5363695'), + (69205, 766, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dN9zVk74', '5365960'), + (69206, 766, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dN9zVk74', '5368973'), + (69207, 766, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dN9zVk74', '5378247'), + (69208, 766, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dN9zVk74', '5389605'), + (69209, 766, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dN9zVk74', '5397265'), + (69210, 766, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9zVk74', '6045684'), + (69211, 767, 258, 'maybe', '2021-06-10 05:18:40', '2025-12-17 19:47:47', 'bdzxzqbA', '3149489'), + (69212, 767, 395, 'attending', '2021-06-10 05:19:54', '2025-12-17 19:47:47', 'bdzxzqbA', '3236450'), + (69213, 767, 744, 'attending', '2021-06-11 01:57:54', '2025-12-17 19:47:47', 'bdzxzqbA', '3680624'), + (69214, 767, 745, 'attending', '2021-06-30 17:17:32', '2025-12-17 19:47:38', 'bdzxzqbA', '3680625'), + (69215, 767, 805, 'attending', '2021-06-13 19:00:53', '2025-12-17 19:47:47', 'bdzxzqbA', '3804777'), + (69216, 767, 823, 'attending', '2021-06-12 17:14:35', '2025-12-17 19:47:48', 'bdzxzqbA', '3974109'), + (69217, 767, 828, 'attending', '2021-06-12 22:15:33', '2025-12-17 19:47:47', 'bdzxzqbA', '3975312'), + (69218, 767, 829, 'attending', '2021-06-10 05:18:43', '2025-12-17 19:47:47', 'bdzxzqbA', '3976202'), + (69219, 767, 841, 'attending', '2021-06-15 23:13:40', '2025-12-17 19:47:48', 'bdzxzqbA', '4007434'), + (69220, 767, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'bdzxzqbA', '4014338'), + (69221, 767, 867, 'attending', '2021-06-26 21:41:16', '2025-12-17 19:47:38', 'bdzxzqbA', '4021848'), + (69222, 767, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'bdzxzqbA', '4136744'), + (69223, 767, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'bdzxzqbA', '4136937'), + (69224, 767, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'bdzxzqbA', '4136938'), + (69225, 767, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'bdzxzqbA', '4136947'), + (69226, 767, 877, 'maybe', '2021-06-17 04:18:29', '2025-12-17 19:47:48', 'bdzxzqbA', '4140575'), + (69227, 767, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'bdzxzqbA', '4210314'), + (69228, 767, 886, 'not_attending', '2021-06-27 19:56:42', '2025-12-17 19:47:38', 'bdzxzqbA', '4222371'), + (69229, 767, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'bdzxzqbA', '4225444'), + (69230, 767, 896, 'attending', '2021-06-29 21:18:42', '2025-12-17 19:47:38', 'bdzxzqbA', '4231145'), + (69231, 767, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'bdzxzqbA', '4239259'), + (69232, 767, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'bdzxzqbA', '4240316'), + (69233, 767, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'bdzxzqbA', '4240317'), + (69234, 767, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'bdzxzqbA', '4240318'), + (69235, 767, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'bdzxzqbA', '4240320'), + (69236, 767, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'bdzxzqbA', '4250163'), + (69237, 767, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'bdzxzqbA', '4275957'), + (69238, 767, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'bdzxzqbA', '4277819'), + (69239, 767, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'bdzxzqbA', '4301723'), + (69240, 767, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'bdzxzqbA', '4302093'), + (69241, 767, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'bdzxzqbA', '4304151'), + (69242, 767, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'bdzxzqbA', '4345519'), + (69243, 767, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'bdzxzqbA', '4356801'), + (69244, 767, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'bdzxzqbA', '4358025'), + (69245, 767, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'bdzxzqbA', '4366186'), + (69246, 767, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'bdzxzqbA', '4366187'), + (69247, 767, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'bdzxzqbA', '4402823'), + (69248, 767, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'bdzxzqbA', '4420735'), + (69249, 767, 991, 'attending', '2021-09-09 22:17:23', '2025-12-17 19:47:43', 'bdzxzqbA', '4420738'), + (69250, 767, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'bdzxzqbA', '4420739'), + (69251, 767, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'bdzxzqbA', '4420741'), + (69252, 767, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'bdzxzqbA', '4420744'), + (69253, 767, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'bdzxzqbA', '4420747'), + (69254, 767, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'bdzxzqbA', '4420748'), + (69255, 767, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'bdzxzqbA', '4420749'), + (69256, 767, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'bdzxzqbA', '4461883'), + (69257, 767, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'bdzxzqbA', '4508342'), + (69258, 767, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'bdzxzqbA', '4568602'), + (69259, 767, 1415, 'not_attending', '2022-05-29 07:06:03', '2025-12-17 19:47:30', 'bdzxzqbA', '5368973'), + (69260, 767, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'bdzxzqbA', '5389605'), + (69261, 767, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'bdzxzqbA', '5397265'), + (69262, 767, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzxzqbA', '6045684'), + (69263, 768, 4, 'attending', '2020-03-19 13:05:29', '2025-12-17 19:47:58', '1Are5NBm', '2958046'), + (69264, 768, 5, 'attending', '2020-03-19 13:05:30', '2025-12-17 19:47:58', '1Are5NBm', '2958047'), + (69265, 768, 7, 'attending', '2020-03-19 12:59:34', '2025-12-17 19:47:58', '1Are5NBm', '2958049'), + (69266, 768, 9, 'attending', '2020-03-27 16:24:02', '2025-12-17 19:47:56', '1Are5NBm', '2958052'), + (69267, 768, 10, 'attending', '2020-03-27 16:24:04', '2025-12-17 19:47:56', '1Are5NBm', '2958053'), + (69268, 768, 11, 'attending', '2020-04-03 02:01:24', '2025-12-17 19:47:57', '1Are5NBm', '2958055'), + (69269, 768, 29, 'maybe', '2020-03-30 20:16:22', '2025-12-17 19:47:56', '1Are5NBm', '2961309'), + (69270, 768, 30, 'maybe', '2020-04-06 23:47:19', '2025-12-17 19:47:57', '1Are5NBm', '2961895'), + (69271, 768, 32, 'attending', '2020-03-31 20:45:02', '2025-12-17 19:47:56', '1Are5NBm', '2963931'), + (69272, 768, 33, 'attending', '2020-04-07 18:33:46', '2025-12-17 19:47:57', '1Are5NBm', '2963932'), + (69273, 768, 36, 'not_attending', '2020-04-03 02:01:20', '2025-12-17 19:47:57', '1Are5NBm', '2969208'), + (69274, 768, 39, 'not_attending', '2020-04-03 02:01:19', '2025-12-17 19:47:57', '1Are5NBm', '2970637'), + (69275, 768, 41, 'attending', '2020-04-07 18:33:36', '2025-12-17 19:47:57', '1Are5NBm', '2971546'), + (69276, 768, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '1Are5NBm', '2974534'), + (69277, 768, 46, 'attending', '2020-04-06 12:31:31', '2025-12-17 19:47:57', '1Are5NBm', '2974955'), + (69278, 768, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', '1Are5NBm', '2975384'), + (69279, 768, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', '1Are5NBm', '2975385'), + (69280, 768, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', '1Are5NBm', '2976575'), + (69281, 768, 58, 'attending', '2020-04-18 00:12:38', '2025-12-17 19:47:57', '1Are5NBm', '2977127'), + (69282, 768, 61, 'attending', '2020-04-07 18:33:58', '2025-12-17 19:47:57', '1Are5NBm', '2977130'), + (69283, 768, 62, 'attending', '2020-05-12 17:02:20', '2025-12-17 19:47:57', '1Are5NBm', '2977131'), + (69284, 768, 63, 'attending', '2020-05-19 21:27:29', '2025-12-17 19:47:57', '1Are5NBm', '2977132'), + (69285, 768, 65, 'attending', '2020-05-25 18:07:31', '2025-12-17 19:47:57', '1Are5NBm', '2977134'), + (69286, 768, 66, 'attending', '2020-06-09 14:32:23', '2025-12-17 19:47:58', '1Are5NBm', '2977135'), + (69287, 768, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '1Are5NBm', '2977343'), + (69288, 768, 71, 'attending', '2020-04-09 11:59:37', '2025-12-17 19:47:57', '1Are5NBm', '2977526'), + (69289, 768, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '1Are5NBm', '2977812'), + (69290, 768, 73, 'attending', '2020-04-10 16:31:41', '2025-12-17 19:47:57', '1Are5NBm', '2977931'), + (69291, 768, 74, 'attending', '2020-04-18 00:12:25', '2025-12-17 19:47:57', '1Are5NBm', '2978244'), + (69292, 768, 75, 'attending', '2020-04-19 17:47:24', '2025-12-17 19:47:57', '1Are5NBm', '2978245'), + (69293, 768, 76, 'attending', '2020-04-29 14:48:06', '2025-12-17 19:47:57', '1Are5NBm', '2978246'), + (69294, 768, 77, 'attending', '2020-05-01 11:41:11', '2025-12-17 19:47:57', '1Are5NBm', '2978247'), + (69295, 768, 78, 'attending', '2020-05-01 11:41:19', '2025-12-17 19:47:57', '1Are5NBm', '2978249'), + (69296, 768, 79, 'attending', '2020-05-01 11:41:22', '2025-12-17 19:47:57', '1Are5NBm', '2978250'), + (69297, 768, 80, 'attending', '2020-06-06 03:51:38', '2025-12-17 19:47:58', '1Are5NBm', '2978251'), + (69298, 768, 81, 'attending', '2020-06-13 02:20:34', '2025-12-17 19:47:58', '1Are5NBm', '2978252'), + (69299, 768, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', '1Are5NBm', '2978433'), + (69300, 768, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '1Are5NBm', '2978438'), + (69301, 768, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '1Are5NBm', '2980871'), + (69302, 768, 85, 'maybe', '2020-04-22 21:49:12', '2025-12-17 19:47:57', '1Are5NBm', '2980872'), + (69303, 768, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '1Are5NBm', '2981388'), + (69304, 768, 87, 'attending', '2020-04-19 17:47:25', '2025-12-17 19:47:57', '1Are5NBm', '2982602'), + (69305, 768, 88, 'attending', '2020-04-14 18:50:23', '2025-12-17 19:47:57', '1Are5NBm', '2982603'), + (69306, 768, 89, 'attending', '2020-04-29 14:47:58', '2025-12-17 19:47:57', '1Are5NBm', '2982604'), + (69307, 768, 91, 'maybe', '2020-05-01 21:10:24', '2025-12-17 19:47:57', '1Are5NBm', '2985130'), + (69308, 768, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '1Are5NBm', '2986743'), + (69309, 768, 93, 'attending', '2020-04-19 17:47:08', '2025-12-17 19:47:57', '1Are5NBm', '2987418'), + (69310, 768, 94, 'attending', '2020-04-19 17:47:21', '2025-12-17 19:47:57', '1Are5NBm', '2987421'), + (69311, 768, 100, 'attending', '2020-04-21 18:05:17', '2025-12-17 19:47:57', '1Are5NBm', '2989142'), + (69312, 768, 104, 'maybe', '2020-04-26 16:30:39', '2025-12-17 19:47:57', '1Are5NBm', '2991471'), + (69313, 768, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', '1Are5NBm', '2993501'), + (69314, 768, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '1Are5NBm', '2994480'), + (69315, 768, 112, 'attending', '2020-07-05 14:19:58', '2025-12-17 19:47:55', '1Are5NBm', '2994908'), + (69316, 768, 113, 'attending', '2020-08-02 02:17:34', '2025-12-17 19:47:56', '1Are5NBm', '2994909'), + (69317, 768, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', '1Are5NBm', '3001217'), + (69318, 768, 119, 'attending', '2020-05-09 14:45:40', '2025-12-17 19:47:57', '1Are5NBm', '3015486'), + (69319, 768, 121, 'attending', '2020-05-18 19:34:57', '2025-12-17 19:47:57', '1Are5NBm', '3023063'), + (69320, 768, 126, 'attending', '2020-05-24 22:00:39', '2025-12-17 19:47:57', '1Are5NBm', '3024022'), + (69321, 768, 128, 'attending', '2020-05-21 14:59:54', '2025-12-17 19:47:57', '1Are5NBm', '3027185'), + (69322, 768, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '1Are5NBm', '3034321'), + (69323, 768, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '1Are5NBm', '3035881'), + (69324, 768, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '1Are5NBm', '3049983'), + (69325, 768, 147, 'attending', '2020-08-14 15:31:44', '2025-12-17 19:47:56', '1Are5NBm', '3058684'), + (69326, 768, 148, 'attending', '2020-07-05 14:14:02', '2025-12-17 19:47:55', '1Are5NBm', '3058685'), + (69327, 768, 151, 'not_attending', '2020-08-24 19:59:48', '2025-12-17 19:47:56', '1Are5NBm', '3058688'), + (69328, 768, 154, 'attending', '2020-08-02 14:03:28', '2025-12-17 19:47:56', '1Are5NBm', '3058691'), + (69329, 768, 155, 'attending', '2020-08-14 15:31:45', '2025-12-17 19:47:56', '1Are5NBm', '3058692'), + (69330, 768, 157, 'not_attending', '2020-09-19 18:58:54', '2025-12-17 19:47:56', '1Are5NBm', '3058694'), + (69331, 768, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '1Are5NBm', '3058959'), + (69332, 768, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', '1Are5NBm', '3067093'), + (69333, 768, 183, 'attending', '2020-06-15 17:43:20', '2025-12-17 19:47:58', '1Are5NBm', '3075228'), + (69334, 768, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '1Are5NBm', '3075456'), + (69335, 768, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '1Are5NBm', '3083791'), + (69336, 768, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '1Are5NBm', '3085151'), + (69337, 768, 190, 'attending', '2020-07-02 17:03:45', '2025-12-17 19:47:55', '1Are5NBm', '3087258'), + (69338, 768, 191, 'attending', '2020-07-05 14:14:00', '2025-12-17 19:47:55', '1Are5NBm', '3087259'), + (69339, 768, 192, 'not_attending', '2020-07-05 14:27:36', '2025-12-17 19:47:55', '1Are5NBm', '3087260'), + (69340, 768, 193, 'attending', '2020-07-20 21:08:35', '2025-12-17 19:47:55', '1Are5NBm', '3087261'), + (69341, 768, 194, 'attending', '2020-07-20 21:08:38', '2025-12-17 19:47:55', '1Are5NBm', '3087262'), + (69342, 768, 195, 'attending', '2020-07-21 00:50:59', '2025-12-17 19:47:56', '1Are5NBm', '3087264'), + (69343, 768, 196, 'attending', '2020-07-21 00:51:00', '2025-12-17 19:47:56', '1Are5NBm', '3087265'), + (69344, 768, 197, 'attending', '2020-07-21 00:51:12', '2025-12-17 19:47:56', '1Are5NBm', '3087266'), + (69345, 768, 198, 'not_attending', '2020-08-24 20:00:01', '2025-12-17 19:47:56', '1Are5NBm', '3087267'), + (69346, 768, 199, 'attending', '2020-09-05 12:18:23', '2025-12-17 19:47:56', '1Are5NBm', '3087268'), + (69347, 768, 201, 'not_attending', '2020-06-20 22:37:43', '2025-12-17 19:47:55', '1Are5NBm', '3088653'), + (69348, 768, 202, 'attending', '2020-06-21 18:27:35', '2025-12-17 19:47:55', '1Are5NBm', '3090353'), + (69349, 768, 207, 'attending', '2020-07-24 22:48:35', '2025-12-17 19:47:55', '1Are5NBm', '3104807'), + (69350, 768, 208, 'attending', '2020-08-02 14:03:36', '2025-12-17 19:47:56', '1Are5NBm', '3104808'), + (69351, 768, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '1Are5NBm', '3106813'), + (69352, 768, 214, 'maybe', '2020-07-08 21:37:52', '2025-12-17 19:47:55', '1Are5NBm', '3124139'), + (69353, 768, 219, 'attending', '2020-08-06 21:11:14', '2025-12-17 19:47:56', '1Are5NBm', '3129263'), + (69354, 768, 223, 'attending', '2020-09-05 04:05:37', '2025-12-17 19:47:56', '1Are5NBm', '3129980'), + (69355, 768, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '1Are5NBm', '3132817'), + (69356, 768, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '1Are5NBm', '3132820'), + (69357, 768, 233, 'not_attending', '2020-07-22 19:59:27', '2025-12-17 19:47:55', '1Are5NBm', '3139773'), + (69358, 768, 267, 'attending', '2020-07-28 22:20:02', '2025-12-17 19:47:55', '1Are5NBm', '3152781'), + (69359, 768, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '1Are5NBm', '3155321'), + (69360, 768, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '1Are5NBm', '3162006'), + (69361, 768, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '1Are5NBm', '3163442'), + (69362, 768, 281, 'attending', '2020-08-06 13:20:47', '2025-12-17 19:47:56', '1Are5NBm', '3166945'), + (69363, 768, 293, 'maybe', '2020-08-14 15:31:24', '2025-12-17 19:47:56', '1Are5NBm', '3172832'), + (69364, 768, 294, 'maybe', '2020-08-14 15:31:54', '2025-12-17 19:47:56', '1Are5NBm', '3172833'), + (69365, 768, 295, 'maybe', '2020-08-14 15:32:23', '2025-12-17 19:47:56', '1Are5NBm', '3172834'), + (69366, 768, 296, 'attending', '2020-09-09 12:18:32', '2025-12-17 19:47:56', '1Are5NBm', '3172876'), + (69367, 768, 298, 'maybe', '2020-08-14 15:32:06', '2025-12-17 19:47:56', '1Are5NBm', '3174556'), + (69368, 768, 299, 'not_attending', '2020-08-14 15:31:32', '2025-12-17 19:47:56', '1Are5NBm', '3176591'), + (69369, 768, 306, 'attending', '2020-08-14 22:35:31', '2025-12-17 19:47:56', '1Are5NBm', '3179777'), + (69370, 768, 307, 'not_attending', '2020-08-17 15:06:26', '2025-12-17 19:47:56', '1Are5NBm', '3182590'), + (69371, 768, 311, 'not_attending', '2020-09-18 21:12:49', '2025-12-17 19:47:56', '1Are5NBm', '3186057'), + (69372, 768, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '1Are5NBm', '3191735'), + (69373, 768, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '1Are5NBm', '3200209'), + (69374, 768, 339, 'not_attending', '2020-09-10 00:01:17', '2025-12-17 19:47:56', '1Are5NBm', '3204469'), + (69375, 768, 340, 'maybe', '2020-09-13 20:16:33', '2025-12-17 19:47:56', '1Are5NBm', '3204470'), + (69376, 768, 341, 'attending', '2020-09-18 21:12:41', '2025-12-17 19:47:52', '1Are5NBm', '3204471'), + (69377, 768, 342, 'maybe', '2020-09-13 20:16:27', '2025-12-17 19:47:52', '1Are5NBm', '3204472'), + (69378, 768, 361, 'attending', '2020-09-16 14:17:34', '2025-12-17 19:47:56', '1Are5NBm', '3213323'), + (69379, 768, 362, 'maybe', '2020-09-26 19:14:34', '2025-12-17 19:47:52', '1Are5NBm', '3214207'), + (69380, 768, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '1Are5NBm', '3217037'), + (69381, 768, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '1Are5NBm', '3218510'), + (69382, 768, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', '1Are5NBm', '3228698'), + (69383, 768, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', '1Are5NBm', '3228699'), + (69384, 768, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', '1Are5NBm', '3228700'), + (69385, 768, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', '1Are5NBm', '3228701'), + (69386, 768, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', '1Are5NBm', '3245751'), + (69387, 768, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '1Are5NBm', '3250232'), + (69388, 768, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', '1Are5NBm', '3256168'), + (69389, 768, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', '1Are5NBm', '3263578'), + (69390, 768, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '1Are5NBm', '3276428'), + (69391, 768, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '1Are5NBm', '3281467'), + (69392, 768, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '1Are5NBm', '3281470'), + (69393, 768, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '1Are5NBm', '3281829'), + (69394, 768, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '1Are5NBm', '3285413'), + (69395, 768, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '1Are5NBm', '3285414'), + (69396, 768, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '1Are5NBm', '4736497'), + (69397, 768, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '1Are5NBm', '4736499'), + (69398, 768, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '1Are5NBm', '4736500'), + (69399, 768, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '1Are5NBm', '4736503'), + (69400, 768, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '1Are5NBm', '4736504'), + (69401, 768, 1185, 'not_attending', '2022-01-12 23:28:47', '2025-12-17 19:47:31', '1Are5NBm', '4746789'), + (69402, 768, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '1Are5NBm', '5038850'), + (69403, 768, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '1Are5NBm', '5045826'), + (69404, 768, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '1Are5NBm', '5132533'), + (69405, 768, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '1Are5NBm', '5186582'), + (69406, 768, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '1Are5NBm', '5186583'), + (69407, 768, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '1Are5NBm', '5186585'), + (69408, 768, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '1Are5NBm', '5190437'), + (69409, 768, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '1Are5NBm', '5195095'), + (69410, 768, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '1Are5NBm', '5215989'), + (69411, 768, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '1Are5NBm', '5223686'), + (69412, 768, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '1Are5NBm', '5247467'), + (69413, 768, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '1Are5NBm', '5260800'), + (69414, 768, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '1Are5NBm', '5269930'), + (69415, 768, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '1Are5NBm', '5271448'), + (69416, 768, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '1Are5NBm', '5271449'), + (69417, 768, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '1Are5NBm', '5278159'), + (69418, 768, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '1Are5NBm', '5363695'), + (69419, 768, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '1Are5NBm', '5365960'), + (69420, 768, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '1Are5NBm', '5378247'), + (69421, 768, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '1Are5NBm', '5389605'), + (69422, 768, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '1Are5NBm', '5397265'), + (69423, 768, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '1Are5NBm', '5404786'), + (69424, 768, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '1Are5NBm', '5405203'), + (69425, 768, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '1Are5NBm', '5412550'), + (69426, 768, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '1Are5NBm', '5415046'), + (69427, 768, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '1Are5NBm', '5422086'), + (69428, 768, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '1Are5NBm', '5422406'), + (69429, 768, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '1Are5NBm', '5424565'), + (69430, 768, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '1Are5NBm', '5426882'), + (69431, 768, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '1Are5NBm', '5441125'), + (69432, 768, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '1Are5NBm', '5441126'), + (69433, 768, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '1Are5NBm', '5441128'), + (69434, 768, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '1Are5NBm', '5441131'), + (69435, 768, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '1Are5NBm', '5441132'), + (69436, 768, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '1Are5NBm', '5453325'), + (69437, 768, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '1Are5NBm', '5454516'), + (69438, 768, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '1Are5NBm', '5454605'), + (69439, 768, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '1Are5NBm', '5455037'), + (69440, 768, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '1Are5NBm', '5461278'), + (69441, 768, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '1Are5NBm', '5469480'), + (69442, 768, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '1Are5NBm', '5474663'), + (69443, 768, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '1Are5NBm', '5482022'), + (69444, 768, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '1Are5NBm', '5488912'), + (69445, 768, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '1Are5NBm', '5492192'), + (69446, 768, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '1Are5NBm', '5493139'), + (69447, 768, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '1Are5NBm', '5493200'), + (69448, 768, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '1Are5NBm', '5502188'), + (69449, 768, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '1Are5NBm', '5505059'), + (69450, 768, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '1Are5NBm', '5509055'), + (69451, 768, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '1Are5NBm', '5512862'), + (69452, 768, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '1Are5NBm', '5513985'), + (69453, 768, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '1Are5NBm', '5519981'), + (69454, 768, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '1Are5NBm', '5522550'), + (69455, 768, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '1Are5NBm', '5534683'), + (69456, 768, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '1Are5NBm', '5537735'), + (69457, 768, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '1Are5NBm', '5540859'), + (69458, 768, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '1Are5NBm', '5546619'), + (69459, 768, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '1Are5NBm', '5557747'), + (69460, 768, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '1Are5NBm', '5560255'), + (69461, 768, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '1Are5NBm', '5562906'), + (69462, 768, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '1Are5NBm', '5600604'), + (69463, 768, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '1Are5NBm', '5605544'), + (69464, 768, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '1Are5NBm', '5630960'), + (69465, 768, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '1Are5NBm', '5630961'), + (69466, 768, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '1Are5NBm', '5630962'), + (69467, 768, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '1Are5NBm', '5630966'), + (69468, 768, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '1Are5NBm', '5630967'), + (69469, 768, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '1Are5NBm', '5630968'), + (69470, 768, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '1Are5NBm', '5635406'), + (69471, 768, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '1Are5NBm', '5638765'), + (69472, 768, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '1Are5NBm', '5640097'), + (69473, 768, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '1Are5NBm', '5640843'), + (69474, 768, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '1Are5NBm', '5641521'), + (69475, 768, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '1Are5NBm', '5642818'), + (69476, 768, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '1Are5NBm', '5652395'), + (69477, 768, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '1Are5NBm', '5670445'), + (69478, 768, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '1Are5NBm', '5671637'), + (69479, 768, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '1Are5NBm', '5672329'), + (69480, 768, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '1Are5NBm', '5674057'), + (69481, 768, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '1Are5NBm', '5674060'), + (69482, 768, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', '1Are5NBm', '5677461'), + (69483, 768, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '1Are5NBm', '5698046'), + (69484, 768, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '1Are5NBm', '5699760'), + (69485, 768, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '1Are5NBm', '5741601'), + (69486, 768, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '1Are5NBm', '5763458'), + (69487, 768, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '1Are5NBm', '5774172'), + (69488, 768, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '1Are5NBm', '5818247'), + (69489, 768, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '1Are5NBm', '5819471'), + (69490, 768, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '1Are5NBm', '5827739'), + (69491, 768, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '1Are5NBm', '5844306'), + (69492, 768, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '1Are5NBm', '5850159'), + (69493, 768, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '1Are5NBm', '5858999'), + (69494, 768, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '1Are5NBm', '5871984'), + (69495, 768, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '1Are5NBm', '5876354'), + (69496, 768, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '1Are5NBm', '5880939'), + (69497, 768, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '1Are5NBm', '5880940'), + (69498, 768, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '1Are5NBm', '5880942'), + (69499, 768, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '1Are5NBm', '5880943'), + (69500, 768, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '1Are5NBm', '5887890'), + (69501, 768, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '1Are5NBm', '5888598'), + (69502, 768, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '1Are5NBm', '5893260'), + (69503, 768, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '1Are5NBm', '5899826'), + (69504, 768, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '1Are5NBm', '5900199'), + (69505, 768, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '1Are5NBm', '5900200'), + (69506, 768, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '1Are5NBm', '5900202'), + (69507, 768, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '1Are5NBm', '5900203'), + (69508, 768, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '1Are5NBm', '5901108'), + (69509, 768, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '1Are5NBm', '5901126'), + (69510, 768, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '1Are5NBm', '5909655'), + (69511, 768, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '1Are5NBm', '5910522'), + (69512, 768, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '1Are5NBm', '5910526'), + (69513, 768, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '1Are5NBm', '5910528'), + (69514, 768, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '1Are5NBm', '5916219'), + (69515, 768, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '1Are5NBm', '5936234'), + (69516, 768, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '1Are5NBm', '5958351'), + (69517, 768, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '1Are5NBm', '5959751'), + (69518, 768, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '1Are5NBm', '5959755'), + (69519, 768, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '1Are5NBm', '5960055'), + (69520, 768, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '1Are5NBm', '5961684'), + (69521, 768, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '1Are5NBm', '5962132'), + (69522, 768, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '1Are5NBm', '5962133'), + (69523, 768, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '1Are5NBm', '5962134'), + (69524, 768, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '1Are5NBm', '5962317'), + (69525, 768, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '1Are5NBm', '5962318'), + (69526, 768, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '1Are5NBm', '5965933'), + (69527, 768, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '1Are5NBm', '5967014'), + (69528, 768, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '1Are5NBm', '5972815'), + (69529, 768, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '1Are5NBm', '5974016'), + (69530, 768, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '1Are5NBm', '5981515'), + (69531, 768, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '1Are5NBm', '5993516'), + (69532, 768, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '1Are5NBm', '5998939'), + (69533, 768, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '1Are5NBm', '6028191'), + (69534, 768, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '1Are5NBm', '6040066'), + (69535, 768, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '1Are5NBm', '6042717'), + (69536, 768, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '1Are5NBm', '6044838'), + (69537, 768, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '1Are5NBm', '6044839'), + (69538, 768, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1Are5NBm', '6045684'), + (69539, 768, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '1Are5NBm', '6050104'), + (69540, 768, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '1Are5NBm', '6053195'), + (69541, 768, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '1Are5NBm', '6053198'), + (69542, 768, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '1Are5NBm', '6056085'), + (69543, 768, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '1Are5NBm', '6056916'), + (69544, 768, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '1Are5NBm', '6059290'), + (69545, 768, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '1Are5NBm', '6060328'), + (69546, 768, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '1Are5NBm', '6061037'), + (69547, 768, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '1Are5NBm', '6061039'), + (69548, 768, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '1Are5NBm', '6067245'), + (69549, 768, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '1Are5NBm', '6068094'), + (69550, 768, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '1Are5NBm', '6068252'), + (69551, 768, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '1Are5NBm', '6068253'), + (69552, 768, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '1Are5NBm', '6068254'), + (69553, 768, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '1Are5NBm', '6068280'), + (69554, 768, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '1Are5NBm', '6069093'), + (69555, 768, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '1Are5NBm', '6072528'), + (69556, 768, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '1Are5NBm', '6079840'), + (69557, 768, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '1Are5NBm', '6083398'), + (69558, 768, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '1Are5NBm', '6093504'), + (69559, 768, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '1Are5NBm', '6097414'), + (69560, 768, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '1Are5NBm', '6097442'), + (69561, 768, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '1Are5NBm', '6097684'), + (69562, 768, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '1Are5NBm', '6098762'), + (69563, 768, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '1Are5NBm', '6101361'), + (69564, 768, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '1Are5NBm', '6101362'), + (69565, 768, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '1Are5NBm', '6107314'), + (69566, 768, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '1Are5NBm', '6120034'), + (69567, 768, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '1Are5NBm', '6136733'), + (69568, 768, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '1Are5NBm', '6137989'), + (69569, 768, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '1Are5NBm', '6150864'), + (69570, 768, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '1Are5NBm', '6155491'), + (69571, 768, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '1Are5NBm', '6164417'), + (69572, 768, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '1Are5NBm', '6166388'), + (69573, 768, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '1Are5NBm', '6176439'), + (69574, 768, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '1Are5NBm', '6182410'), + (69575, 768, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '1Are5NBm', '6185812'), + (69576, 768, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '1Are5NBm', '6187651'), + (69577, 768, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '1Are5NBm', '6187963'), + (69578, 768, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '1Are5NBm', '6187964'), + (69579, 768, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '1Are5NBm', '6187966'), + (69580, 768, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '1Are5NBm', '6187967'), + (69581, 768, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '1Are5NBm', '6187969'), + (69582, 768, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '1Are5NBm', '6334878'), + (69583, 768, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '1Are5NBm', '6337236'), + (69584, 768, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '1Are5NBm', '6337970'), + (69585, 768, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '1Are5NBm', '6338308'), + (69586, 768, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '1Are5NBm', '6341710'), + (69587, 768, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '1Are5NBm', '6342044'), + (69588, 768, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '1Are5NBm', '6342298'), + (69589, 768, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '1Are5NBm', '6343294'), + (69590, 768, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '1Are5NBm', '6347034'), + (69591, 768, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '1Are5NBm', '6347056'), + (69592, 768, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '1Are5NBm', '6353830'), + (69593, 768, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '1Are5NBm', '6353831'), + (69594, 768, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '1Are5NBm', '6357867'), + (69595, 768, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '1Are5NBm', '6358652'), + (69596, 768, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '1Are5NBm', '6361709'), + (69597, 768, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '1Are5NBm', '6361710'), + (69598, 768, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '1Are5NBm', '6361711'), + (69599, 768, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '1Are5NBm', '6361712'), + (69600, 768, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '1Are5NBm', '6361713'), + (69601, 768, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', '1Are5NBm', '6382573'), + (69602, 768, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '1Are5NBm', '6388604'), + (69603, 768, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '1Are5NBm', '6394629'), + (69604, 768, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '1Are5NBm', '6394631'), + (69605, 768, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '1Are5NBm', '6440863'), + (69606, 768, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '1Are5NBm', '6445440'), + (69607, 768, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '1Are5NBm', '6453951'), + (69608, 768, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '1Are5NBm', '6461696'), + (69609, 768, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '1Are5NBm', '6462129'), + (69610, 768, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '1Are5NBm', '6463218'), + (69611, 768, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '1Are5NBm', '6472181'), + (69612, 768, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '1Are5NBm', '6482693'), + (69613, 768, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '1Are5NBm', '6484200'), + (69614, 768, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '1Are5NBm', '6484680'), + (69615, 768, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '1Are5NBm', '6507741'), + (69616, 768, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '1Are5NBm', '6514659'), + (69617, 768, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '1Are5NBm', '6514660'), + (69618, 768, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '1Are5NBm', '6519103'), + (69619, 768, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '1Are5NBm', '6535681'), + (69620, 768, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '1Are5NBm', '6584747'), + (69621, 768, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '1Are5NBm', '6587097'), + (69622, 768, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '1Are5NBm', '6609022'), + (69623, 768, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', '1Are5NBm', '6632757'), + (69624, 768, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '1Are5NBm', '6644187'), + (69625, 768, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '1Are5NBm', '6648951'), + (69626, 768, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '1Are5NBm', '6648952'), + (69627, 768, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '1Are5NBm', '6655401'), + (69628, 768, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '1Are5NBm', '6661585'), + (69629, 768, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '1Are5NBm', '6661588'), + (69630, 768, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '1Are5NBm', '6661589'), + (69631, 768, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '1Are5NBm', '6699906'), + (69632, 768, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '1Are5NBm', '6699913'), + (69633, 768, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '1Are5NBm', '6701109'), + (69634, 768, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '1Are5NBm', '6705219'), + (69635, 768, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '1Are5NBm', '6710153'), + (69636, 768, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '1Are5NBm', '6711552'), + (69637, 768, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '1Are5NBm', '6711553'), + (69638, 768, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '1Are5NBm', '6722688'), + (69639, 768, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '1Are5NBm', '6730620'), + (69640, 768, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '1Are5NBm', '6740364'), + (69641, 768, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '1Are5NBm', '6743829'), + (69642, 768, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '1Are5NBm', '7030380'), + (69643, 768, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', '1Are5NBm', '7033677'), + (69644, 768, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '1Are5NBm', '7044715'), + (69645, 768, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '1Are5NBm', '7050318'), + (69646, 768, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '1Are5NBm', '7050319'), + (69647, 768, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '1Are5NBm', '7050322'), + (69648, 768, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '1Are5NBm', '7057804'), + (69649, 768, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '1Are5NBm', '7072824'), + (69650, 768, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '1Are5NBm', '7074348'), + (69651, 768, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '1Are5NBm', '7074364'), + (69652, 768, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '1Are5NBm', '7089267'), + (69653, 768, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '1Are5NBm', '7098747'), + (69654, 768, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '1Are5NBm', '7113468'), + (69655, 768, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '1Are5NBm', '7114856'), + (69656, 768, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '1Are5NBm', '7114951'), + (69657, 768, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '1Are5NBm', '7114955'), + (69658, 768, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '1Are5NBm', '7114956'), + (69659, 768, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '1Are5NBm', '7114957'), + (69660, 768, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '1Are5NBm', '7159484'), + (69661, 768, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '1Are5NBm', '7178446'), + (69662, 768, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '1Are5NBm', '7220467'), + (69663, 768, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '1Are5NBm', '7240354'), + (69664, 768, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '1Are5NBm', '7251633'), + (69665, 768, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '1Are5NBm', '7324073'), + (69666, 768, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '1Are5NBm', '7324074'), + (69667, 768, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '1Are5NBm', '7324075'), + (69668, 768, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '1Are5NBm', '7324078'), + (69669, 768, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '1Are5NBm', '7324082'), + (69670, 768, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '1Are5NBm', '7331457'), + (69671, 768, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '1Are5NBm', '7363643'), + (69672, 768, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '1Are5NBm', '7368606'), + (69673, 768, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '1Are5NBm', '7397462'), + (69674, 768, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '1Are5NBm', '7424275'), + (69675, 768, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '1Are5NBm', '7432751'), + (69676, 768, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '1Are5NBm', '7432752'), + (69677, 768, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '1Are5NBm', '7432753'), + (69678, 768, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '1Are5NBm', '7432754'), + (69679, 768, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '1Are5NBm', '7432755'), + (69680, 768, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '1Are5NBm', '7432756'), + (69681, 768, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '1Are5NBm', '7432758'), + (69682, 768, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '1Are5NBm', '7432759'), + (69683, 768, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '1Are5NBm', '7433834'), + (69684, 768, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '1Are5NBm', '7470197'), + (69685, 768, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '1Are5NBm', '7685613'), + (69686, 768, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '1Are5NBm', '7688194'), + (69687, 768, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '1Are5NBm', '7688196'), + (69688, 768, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '1Are5NBm', '7688289'), + (69689, 768, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '1Are5NBm', '7692763'), + (69690, 768, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '1Are5NBm', '7697552'), + (69691, 768, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '1Are5NBm', '7699878'), + (69692, 768, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '1Are5NBm', '7704043'), + (69693, 768, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '1Are5NBm', '7712467'), + (69694, 768, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '1Are5NBm', '7713585'), + (69695, 768, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '1Are5NBm', '7713586'), + (69696, 768, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '1Are5NBm', '7738518'), + (69697, 768, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '1Are5NBm', '7750636'), + (69698, 768, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '1Are5NBm', '7796540'), + (69699, 768, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '1Are5NBm', '7796541'), + (69700, 768, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '1Are5NBm', '7796542'), + (69701, 768, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '1Are5NBm', '7825913'), + (69702, 768, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '1Are5NBm', '7826209'), + (69703, 768, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '1Are5NBm', '7834742'), + (69704, 768, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '1Are5NBm', '7842108'), + (69705, 768, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '1Are5NBm', '7842902'), + (69706, 768, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '1Are5NBm', '7842903'), + (69707, 768, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '1Are5NBm', '7842904'), + (69708, 768, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '1Are5NBm', '7842905'), + (69709, 768, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '1Are5NBm', '7855719'), + (69710, 768, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '1Are5NBm', '7860683'), + (69711, 768, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '1Are5NBm', '7860684'), + (69712, 768, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '1Are5NBm', '7866095'), + (69713, 768, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '1Are5NBm', '7869170'), + (69714, 768, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1Are5NBm', '7869188'), + (69715, 768, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '1Are5NBm', '7869201'), + (69716, 768, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '1Are5NBm', '7877465'), + (69717, 768, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '1Are5NBm', '7888250'), + (69718, 768, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1Are5NBm', '7904777'), + (69719, 768, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1Are5NBm', '8349164'), + (69720, 768, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1Are5NBm', '8349545'), + (69721, 768, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1Are5NBm', '8368028'), + (69722, 768, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1Are5NBm', '8368029'), + (69723, 768, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1Are5NBm', '8388462'), + (69724, 768, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1Are5NBm', '8400273'), + (69725, 768, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1Are5NBm', '8400275'), + (69726, 768, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '1Are5NBm', '8400276'), + (69727, 768, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1Are5NBm', '8404977'), + (69728, 768, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1Are5NBm', '8430783'), + (69729, 768, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1Are5NBm', '8430784'), + (69730, 768, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1Are5NBm', '8430799'), + (69731, 768, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1Are5NBm', '8430800'), + (69732, 768, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1Are5NBm', '8430801'), + (69733, 768, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1Are5NBm', '8438709'), + (69734, 768, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1Are5NBm', '8457738'), + (69735, 768, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1Are5NBm', '8459566'), + (69736, 768, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1Are5NBm', '8459567'), + (69737, 768, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1Are5NBm', '8461032'), + (69738, 768, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1Are5NBm', '8477877'), + (69739, 768, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1Are5NBm', '8485688'), + (69740, 768, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '1Are5NBm', '8490587'), + (69741, 768, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '1Are5NBm', '8493552'), + (69742, 768, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '1Are5NBm', '8493553'), + (69743, 768, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '1Are5NBm', '8493554'), + (69744, 768, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '1Are5NBm', '8493555'), + (69745, 768, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '1Are5NBm', '8493556'), + (69746, 768, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '1Are5NBm', '8493557'), + (69747, 768, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '1Are5NBm', '8493558'), + (69748, 768, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '1Are5NBm', '8493559'), + (69749, 768, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '1Are5NBm', '8493560'), + (69750, 768, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '1Are5NBm', '8493561'), + (69751, 768, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '1Are5NBm', '8493572'), + (69752, 768, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '1Are5NBm', '8540725'), + (69753, 768, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '1Are5NBm', '8555421'), + (69754, 769, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'ArBjWNBA', '5900202'), + (69755, 769, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'ArBjWNBA', '5900203'), + (69756, 769, 1917, 'not_attending', '2023-03-12 16:07:19', '2025-12-17 19:47:10', 'ArBjWNBA', '5910528'), + (69757, 769, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'ArBjWNBA', '5962317'), + (69758, 769, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'ArBjWNBA', '5962318'), + (69759, 769, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'ArBjWNBA', '5965933'), + (69760, 769, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'ArBjWNBA', '5981515'), + (69761, 769, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'ArBjWNBA', '5993516'), + (69762, 769, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'ArBjWNBA', '5998939'), + (69763, 769, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'ArBjWNBA', '6028191'), + (69764, 769, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'ArBjWNBA', '6040066'), + (69765, 769, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'ArBjWNBA', '6042717'), + (69766, 769, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'ArBjWNBA', '6044838'), + (69767, 769, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ArBjWNBA', '6044839'), + (69768, 769, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArBjWNBA', '6045684'), + (69769, 769, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'ArBjWNBA', '6048955'), + (69770, 769, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'ArBjWNBA', '6050104'), + (69771, 769, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'ArBjWNBA', '6053195'), + (69772, 769, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ArBjWNBA', '6053198'), + (69773, 769, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ArBjWNBA', '6056085'), + (69774, 769, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ArBjWNBA', '6056916'), + (69775, 769, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ArBjWNBA', '6059290'), + (69776, 769, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ArBjWNBA', '6060328'), + (69777, 769, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ArBjWNBA', '6061037'), + (69778, 769, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ArBjWNBA', '6061039'), + (69779, 769, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ArBjWNBA', '6067245'), + (69780, 769, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ArBjWNBA', '6068094'), + (69781, 769, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ArBjWNBA', '6068252'), + (69782, 769, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ArBjWNBA', '6068253'), + (69783, 769, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ArBjWNBA', '6068254'), + (69784, 769, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ArBjWNBA', '6068280'), + (69785, 769, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ArBjWNBA', '6069093'), + (69786, 769, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'ArBjWNBA', '6072528'), + (69787, 769, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ArBjWNBA', '6079840'), + (69788, 769, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ArBjWNBA', '6083398'), + (69789, 769, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'ArBjWNBA', '6093504'), + (69790, 769, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ArBjWNBA', '6097414'), + (69791, 769, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ArBjWNBA', '6097442'), + (69792, 769, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ArBjWNBA', '6097684'), + (69793, 769, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ArBjWNBA', '6098762'), + (69794, 769, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ArBjWNBA', '6101362'), + (69795, 769, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ArBjWNBA', '6107314'), + (69796, 769, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ArBjWNBA', '6120034'), + (69797, 770, 221, 'attending', '2020-09-17 19:45:46', '2025-12-17 19:47:56', 'Lmp0DO9m', '3129265'), + (69798, 770, 311, 'not_attending', '2020-09-14 14:45:56', '2025-12-17 19:47:56', 'Lmp0DO9m', '3186057'), + (69799, 770, 362, 'not_attending', '2020-09-25 19:23:20', '2025-12-17 19:47:52', 'Lmp0DO9m', '3214207'), + (69800, 770, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'Lmp0DO9m', '3217037'), + (69801, 770, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'Lmp0DO9m', '3218510'), + (69802, 770, 367, 'attending', '2020-09-23 01:53:27', '2025-12-17 19:47:51', 'Lmp0DO9m', '3219751'), + (69803, 770, 385, 'not_attending', '2020-09-29 10:45:47', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228698'), + (69804, 770, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228699'), + (69805, 770, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228700'), + (69806, 770, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'Lmp0DO9m', '3228701'), + (69807, 770, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'Lmp0DO9m', '3245751'), + (69808, 770, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'Lmp0DO9m', '3250232'), + (69809, 770, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'Lmp0DO9m', '3256168'), + (69810, 770, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'Lmp0DO9m', '3263578'), + (69811, 770, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'Lmp0DO9m', '3276428'), + (69812, 770, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'Lmp0DO9m', '3281467'), + (69813, 770, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'Lmp0DO9m', '3281470'), + (69814, 770, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'Lmp0DO9m', '3281829'), + (69815, 770, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'Lmp0DO9m', '3285413'), + (69816, 770, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'Lmp0DO9m', '3285414'), + (69817, 770, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Lmp0DO9m', '3297764'), + (69818, 770, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Lmp0DO9m', '3313856'), + (69819, 770, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Lmp0DO9m', '3314909'), + (69820, 770, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Lmp0DO9m', '6045684'), + (69821, 771, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mjnM7DJm', '6045684'), + (69822, 772, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dOWbaDnd', '5271448'), + (69823, 772, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dOWbaDnd', '5271449'), + (69824, 772, 1383, 'not_attending', '2022-05-05 20:53:38', '2025-12-17 19:47:28', 'dOWbaDnd', '5276469'), + (69825, 772, 1384, 'attending', '2022-05-06 04:48:31', '2025-12-17 19:47:28', 'dOWbaDnd', '5277078'), + (69826, 772, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dOWbaDnd', '5278159'), + (69827, 772, 1388, 'attending', '2022-05-05 20:04:49', '2025-12-17 19:47:28', 'dOWbaDnd', '5278201'), + (69828, 772, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dOWbaDnd', '5363695'), + (69829, 772, 1408, 'maybe', '2022-05-20 18:28:53', '2025-12-17 19:47:29', 'dOWbaDnd', '5365960'), + (69830, 772, 1414, 'maybe', '2022-05-20 18:29:12', '2025-12-17 19:47:29', 'dOWbaDnd', '5368445'), + (69831, 772, 1415, 'not_attending', '2022-06-03 19:09:12', '2025-12-17 19:47:30', 'dOWbaDnd', '5368973'), + (69832, 772, 1419, 'attending', '2022-06-07 14:07:59', '2025-12-17 19:47:30', 'dOWbaDnd', '5373081'), + (69833, 772, 1423, 'attending', '2022-06-15 17:48:29', '2025-12-17 19:47:17', 'dOWbaDnd', '5375727'), + (69834, 772, 1425, 'attending', '2022-05-26 21:58:52', '2025-12-17 19:47:30', 'dOWbaDnd', '5375861'), + (69835, 772, 1428, 'not_attending', '2022-06-10 16:07:16', '2025-12-17 19:47:30', 'dOWbaDnd', '5378247'), + (69836, 772, 1430, 'attending', '2022-06-09 22:59:05', '2025-12-17 19:47:30', 'dOWbaDnd', '5389402'), + (69837, 772, 1431, 'attending', '2022-06-09 15:25:50', '2025-12-17 19:47:30', 'dOWbaDnd', '5389605'), + (69838, 772, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dOWbaDnd', '5397265'), + (69839, 772, 1449, 'attending', '2022-06-14 00:17:57', '2025-12-17 19:47:31', 'dOWbaDnd', '5403335'), + (69840, 772, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dOWbaDnd', '5403967'), + (69841, 772, 1452, 'attending', '2022-06-10 16:07:21', '2025-12-17 19:47:30', 'dOWbaDnd', '5404197'), + (69842, 772, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dOWbaDnd', '5404786'), + (69843, 772, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dOWbaDnd', '5405203'), + (69844, 772, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dOWbaDnd', '5411699'), + (69845, 772, 1482, 'not_attending', '2022-06-24 19:53:42', '2025-12-17 19:47:19', 'dOWbaDnd', '5412550'), + (69846, 772, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dOWbaDnd', '5415046'), + (69847, 772, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dOWbaDnd', '5422086'), + (69848, 772, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dOWbaDnd', '5422406'), + (69849, 772, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dOWbaDnd', '5424565'), + (69850, 772, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dOWbaDnd', '5426882'), + (69851, 772, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dOWbaDnd', '5427083'), + (69852, 772, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'dOWbaDnd', '5441125'), + (69853, 772, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dOWbaDnd', '5441126'), + (69854, 772, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dOWbaDnd', '5446643'), + (69855, 772, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dOWbaDnd', '5453325'), + (69856, 772, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dOWbaDnd', '5454516'), + (69857, 772, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dOWbaDnd', '5454605'), + (69858, 772, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dOWbaDnd', '5455037'), + (69859, 772, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dOWbaDnd', '5471073'), + (69860, 772, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dOWbaDnd', '5474663'), + (69861, 772, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dOWbaDnd', '5482022'), + (69862, 772, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dOWbaDnd', '5482793'), + (69863, 772, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOWbaDnd', '6045684'), + (69864, 773, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AXjwyzQd', '5630960'), + (69865, 773, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AXjwyzQd', '5630961'), + (69866, 773, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AXjwyzQd', '5630962'), + (69867, 773, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AXjwyzQd', '5630966'), + (69868, 773, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AXjwyzQd', '5630967'), + (69869, 773, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AXjwyzQd', '5630968'), + (69870, 773, 1730, 'maybe', '2022-10-08 02:13:24', '2025-12-17 19:47:12', 'AXjwyzQd', '5634666'), + (69871, 773, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AXjwyzQd', '5638765'), + (69872, 773, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AXjwyzQd', '5640097'), + (69873, 773, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'AXjwyzQd', '5640843'), + (69874, 773, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AXjwyzQd', '5641521'), + (69875, 773, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AXjwyzQd', '5642818'), + (69876, 773, 1745, 'attending', '2022-10-13 18:21:47', '2025-12-17 19:47:12', 'AXjwyzQd', '5643088'), + (69877, 773, 1750, 'attending', '2022-11-04 14:53:57', '2025-12-17 19:47:15', 'AXjwyzQd', '5652365'), + (69878, 773, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AXjwyzQd', '5652395'), + (69879, 773, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AXjwyzQd', '5670445'), + (69880, 773, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AXjwyzQd', '5671637'), + (69881, 773, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AXjwyzQd', '5672329'), + (69882, 773, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AXjwyzQd', '5674057'), + (69883, 773, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AXjwyzQd', '5674060'), + (69884, 773, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AXjwyzQd', '5677461'), + (69885, 773, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AXjwyzQd', '5698046'), + (69886, 773, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AXjwyzQd', '5699760'), + (69887, 773, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AXjwyzQd', '5741601'), + (69888, 773, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AXjwyzQd', '5763458'), + (69889, 773, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AXjwyzQd', '5774172'), + (69890, 773, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AXjwyzQd', '5818247'), + (69891, 773, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AXjwyzQd', '5819471'), + (69892, 773, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AXjwyzQd', '5827739'), + (69893, 773, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AXjwyzQd', '5844306'), + (69894, 773, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AXjwyzQd', '5850159'), + (69895, 773, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AXjwyzQd', '5858999'), + (69896, 773, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AXjwyzQd', '5871984'), + (69897, 773, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AXjwyzQd', '5876354'), + (69898, 773, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AXjwyzQd', '5880939'), + (69899, 773, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AXjwyzQd', '5880940'), + (69900, 773, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AXjwyzQd', '5880942'), + (69901, 773, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AXjwyzQd', '5880943'), + (69902, 773, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AXjwyzQd', '5887890'), + (69903, 773, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AXjwyzQd', '5888598'), + (69904, 773, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AXjwyzQd', '5893260'), + (69905, 773, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AXjwyzQd', '5899826'), + (69906, 773, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AXjwyzQd', '5900199'), + (69907, 773, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AXjwyzQd', '5900200'), + (69908, 773, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AXjwyzQd', '5900202'), + (69909, 773, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AXjwyzQd', '5900203'), + (69910, 773, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AXjwyzQd', '5901108'), + (69911, 773, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AXjwyzQd', '5901126'), + (69912, 773, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AXjwyzQd', '5909655'), + (69913, 773, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AXjwyzQd', '5910522'), + (69914, 773, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AXjwyzQd', '5910526'), + (69915, 773, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AXjwyzQd', '5910528'), + (69916, 773, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AXjwyzQd', '5916219'), + (69917, 773, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AXjwyzQd', '5936234'), + (69918, 773, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AXjwyzQd', '5958351'), + (69919, 773, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AXjwyzQd', '5959751'), + (69920, 773, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AXjwyzQd', '5959755'), + (69921, 773, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AXjwyzQd', '5960055'), + (69922, 773, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AXjwyzQd', '5961684'), + (69923, 773, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'AXjwyzQd', '5962132'), + (69924, 773, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AXjwyzQd', '5962133'), + (69925, 773, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AXjwyzQd', '5962134'), + (69926, 773, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AXjwyzQd', '5962317'), + (69927, 773, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AXjwyzQd', '5962318'), + (69928, 773, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AXjwyzQd', '5965933'), + (69929, 773, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AXjwyzQd', '5967014'), + (69930, 773, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AXjwyzQd', '5972815'), + (69931, 773, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AXjwyzQd', '5974016'), + (69932, 773, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AXjwyzQd', '5981515'), + (69933, 773, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AXjwyzQd', '5993516'), + (69934, 773, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AXjwyzQd', '5998939'), + (69935, 773, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AXjwyzQd', '6028191'), + (69936, 773, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AXjwyzQd', '6040066'), + (69937, 773, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AXjwyzQd', '6042717'), + (69938, 773, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AXjwyzQd', '6044838'), + (69939, 773, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AXjwyzQd', '6044839'), + (69940, 773, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AXjwyzQd', '6045684'), + (69941, 773, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AXjwyzQd', '6050104'), + (69942, 773, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AXjwyzQd', '6053195'), + (69943, 773, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AXjwyzQd', '6053198'), + (69944, 773, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AXjwyzQd', '6056085'), + (69945, 773, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AXjwyzQd', '6056916'), + (69946, 773, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AXjwyzQd', '6059290'), + (69947, 773, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AXjwyzQd', '6060328'), + (69948, 773, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AXjwyzQd', '6061037'), + (69949, 773, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AXjwyzQd', '6061039'), + (69950, 773, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AXjwyzQd', '6067245'), + (69951, 773, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AXjwyzQd', '6068094'), + (69952, 773, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AXjwyzQd', '6068252'), + (69953, 773, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AXjwyzQd', '6068253'), + (69954, 773, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AXjwyzQd', '6068254'), + (69955, 773, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'AXjwyzQd', '6068280'), + (69956, 773, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AXjwyzQd', '6069093'), + (69957, 773, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'AXjwyzQd', '6072528'), + (69958, 773, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AXjwyzQd', '6079840'), + (69959, 773, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AXjwyzQd', '6083398'), + (69960, 773, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'AXjwyzQd', '6093504'), + (69961, 773, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AXjwyzQd', '6097414'), + (69962, 773, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AXjwyzQd', '6097442'), + (69963, 773, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AXjwyzQd', '6097684'), + (69964, 773, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AXjwyzQd', '6098762'), + (69965, 773, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AXjwyzQd', '6101362'), + (69966, 773, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'AXjwyzQd', '6103752'), + (69967, 773, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AXjwyzQd', '6107314'), + (69968, 774, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'ArgX9Rn4', '4420747'), + (69969, 774, 997, 'attending', '2021-10-23 21:20:24', '2025-12-17 19:47:35', 'ArgX9Rn4', '4420748'), + (69970, 774, 998, 'not_attending', '2021-10-30 21:40:41', '2025-12-17 19:47:36', 'ArgX9Rn4', '4420749'), + (69971, 774, 1008, 'attending', '2021-10-16 14:28:23', '2025-12-17 19:47:35', 'ArgX9Rn4', '4438810'), + (69972, 774, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ArgX9Rn4', '4568602'), + (69973, 774, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ArgX9Rn4', '4572153'), + (69974, 774, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'ArgX9Rn4', '4585962'), + (69975, 774, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ArgX9Rn4', '4596356'), + (69976, 774, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ArgX9Rn4', '4598860'), + (69977, 774, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ArgX9Rn4', '4598861'), + (69978, 774, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ArgX9Rn4', '4602797'), + (69979, 774, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ArgX9Rn4', '4637896'), + (69980, 774, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ArgX9Rn4', '4642994'), + (69981, 774, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ArgX9Rn4', '4642995'), + (69982, 774, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ArgX9Rn4', '4642996'), + (69983, 774, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ArgX9Rn4', '4642997'), + (69984, 774, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ArgX9Rn4', '4645687'), + (69985, 774, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ArgX9Rn4', '4645698'), + (69986, 774, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ArgX9Rn4', '4645704'), + (69987, 774, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ArgX9Rn4', '4645705'), + (69988, 774, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ArgX9Rn4', '4668385'), + (69989, 774, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ArgX9Rn4', '4694407'), + (69990, 774, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'ArgX9Rn4', '4706262'), + (69991, 774, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ArgX9Rn4', '4736497'), + (69992, 774, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ArgX9Rn4', '4736499'), + (69993, 774, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ArgX9Rn4', '4736500'), + (69994, 774, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ArgX9Rn4', '4736503'), + (69995, 774, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ArgX9Rn4', '4736504'), + (69996, 774, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ArgX9Rn4', '4746789'), + (69997, 774, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ArgX9Rn4', '4753929'), + (69998, 774, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ArgX9Rn4', '5038850'), + (69999, 774, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ArgX9Rn4', '5045826'), + (70000, 774, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ArgX9Rn4', '5132533'), + (70001, 774, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ArgX9Rn4', '5186582'), + (70002, 774, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ArgX9Rn4', '5186583'), + (70003, 774, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ArgX9Rn4', '5186585'), + (70004, 774, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ArgX9Rn4', '5190437'), + (70005, 774, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ArgX9Rn4', '5215989'), + (70006, 774, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArgX9Rn4', '6045684'), + (70007, 775, 646, 'maybe', '2021-05-13 19:07:57', '2025-12-17 19:47:46', '54kjyNlA', '3539921'), + (70008, 775, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '54kjyNlA', '3539922'), + (70009, 775, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '54kjyNlA', '3539923'), + (70010, 775, 802, 'not_attending', '2021-05-12 22:58:29', '2025-12-17 19:47:46', '54kjyNlA', '3803310'), + (70011, 775, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '54kjyNlA', '3974109'), + (70012, 775, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '54kjyNlA', '3975311'), + (70013, 775, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '54kjyNlA', '3975312'), + (70014, 775, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54kjyNlA', '3994992'), + (70015, 775, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '54kjyNlA', '4014338'), + (70016, 775, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '54kjyNlA', '4021848'), + (70017, 775, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '54kjyNlA', '4136744'), + (70018, 775, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '54kjyNlA', '4136937'), + (70019, 775, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '54kjyNlA', '4136938'), + (70020, 775, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '54kjyNlA', '4136947'), + (70021, 775, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54kjyNlA', '4210314'), + (70022, 775, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54kjyNlA', '4225444'), + (70023, 775, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54kjyNlA', '4239259'), + (70024, 775, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '54kjyNlA', '4240316'), + (70025, 775, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '54kjyNlA', '4250163'), + (70026, 775, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54kjyNlA', '4275957'), + (70027, 775, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54kjyNlA', '4277819'), + (70028, 775, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54kjyNlA', '4301723'), + (70029, 775, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kjyNlA', '6045684'), + (70030, 776, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dODVOKym', '4356801'), + (70031, 776, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'dODVOKym', '4420738'), + (70032, 776, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'dODVOKym', '4420739'), + (70033, 776, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dODVOKym', '4420741'), + (70034, 776, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'dODVOKym', '4420744'), + (70035, 776, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'dODVOKym', '4420747'), + (70036, 776, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODVOKym', '4461883'), + (70037, 776, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODVOKym', '4508342'), + (70038, 776, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODVOKym', '4568602'), + (70039, 776, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dODVOKym', '4572153'), + (70040, 776, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dODVOKym', '4585962'), + (70041, 776, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dODVOKym', '4596356'), + (70042, 776, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dODVOKym', '4598860'), + (70043, 776, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dODVOKym', '4598861'), + (70044, 776, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dODVOKym', '4602797'), + (70045, 776, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dODVOKym', '4637896'), + (70046, 776, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dODVOKym', '4642994'), + (70047, 776, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dODVOKym', '4642995'), + (70048, 776, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dODVOKym', '4642996'), + (70049, 776, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dODVOKym', '4642997'), + (70050, 776, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dODVOKym', '4645687'), + (70051, 776, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dODVOKym', '4645698'), + (70052, 776, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dODVOKym', '4645704'), + (70053, 776, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dODVOKym', '4645705'), + (70054, 776, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dODVOKym', '4668385'), + (70055, 776, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODVOKym', '6045684'), + (70056, 777, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'AnaKYpkm', '6632757'), + (70057, 777, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AnaKYpkm', '6644187'), + (70058, 777, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AnaKYpkm', '6648951'), + (70059, 777, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AnaKYpkm', '6648952'), + (70060, 777, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'AnaKYpkm', '6651141'), + (70061, 777, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AnaKYpkm', '6655401'), + (70062, 777, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AnaKYpkm', '6661585'), + (70063, 777, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AnaKYpkm', '6661588'), + (70064, 777, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AnaKYpkm', '6661589'), + (70065, 777, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AnaKYpkm', '6699906'), + (70066, 777, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'AnaKYpkm', '6699913'), + (70067, 777, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AnaKYpkm', '6701109'), + (70068, 777, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AnaKYpkm', '6705219'), + (70069, 777, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AnaKYpkm', '6710153'), + (70070, 777, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AnaKYpkm', '6711552'), + (70071, 777, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AnaKYpkm', '6711553'), + (70072, 777, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AnaKYpkm', '6722688'), + (70073, 777, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AnaKYpkm', '6730620'), + (70074, 777, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AnaKYpkm', '6730642'), + (70075, 777, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AnaKYpkm', '6740364'), + (70076, 777, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AnaKYpkm', '6743829'), + (70077, 777, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AnaKYpkm', '7030380'), + (70078, 777, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AnaKYpkm', '7033677'), + (70079, 777, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'AnaKYpkm', '7035415'), + (70080, 777, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AnaKYpkm', '7044715'), + (70081, 777, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AnaKYpkm', '7050318'), + (70082, 777, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AnaKYpkm', '7050319'), + (70083, 777, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AnaKYpkm', '7050322'), + (70084, 777, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AnaKYpkm', '7057804'), + (70085, 777, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AnaKYpkm', '7072824'), + (70086, 777, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AnaKYpkm', '7074348'), + (70087, 777, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AnaKYpkm', '7089267'), + (70088, 777, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'AnaKYpkm', '7098747'), + (70089, 777, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AnaKYpkm', '7113468'), + (70090, 777, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AnaKYpkm', '7114856'), + (70091, 777, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AnaKYpkm', '7114951'), + (70092, 777, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AnaKYpkm', '7114955'), + (70093, 777, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AnaKYpkm', '7114956'), + (70094, 777, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AnaKYpkm', '7153615'), + (70095, 777, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AnaKYpkm', '7159484'), + (70096, 777, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AnaKYpkm', '7178446'), + (70097, 778, 258, 'not_attending', '2021-06-01 01:29:28', '2025-12-17 19:47:47', '54kpKPNd', '3149489'), + (70098, 778, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '54kpKPNd', '3149491'), + (70099, 778, 393, 'attending', '2021-06-22 00:33:46', '2025-12-17 19:47:38', '54kpKPNd', '3236448'), + (70100, 778, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '54kpKPNd', '3236450'), + (70101, 778, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '54kpKPNd', '3974109'), + (70102, 778, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '54kpKPNd', '3975311'), + (70103, 778, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '54kpKPNd', '3975312'), + (70104, 778, 829, 'attending', '2021-05-31 15:46:51', '2025-12-17 19:47:47', '54kpKPNd', '3976202'), + (70105, 778, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '54kpKPNd', '3994992'), + (70106, 778, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '54kpKPNd', '4014338'), + (70107, 778, 848, 'not_attending', '2021-08-22 23:17:00', '2025-12-17 19:47:40', '54kpKPNd', '4015720'), + (70108, 778, 867, 'attending', '2021-06-26 06:38:26', '2025-12-17 19:47:38', '54kpKPNd', '4021848'), + (70109, 778, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '54kpKPNd', '4136744'), + (70110, 778, 870, 'attending', '2021-06-30 10:51:48', '2025-12-17 19:47:39', '54kpKPNd', '4136937'), + (70111, 778, 871, 'attending', '2021-07-05 18:56:09', '2025-12-17 19:47:39', '54kpKPNd', '4136938'), + (70112, 778, 872, 'attending', '2021-07-21 22:03:03', '2025-12-17 19:47:40', '54kpKPNd', '4136947'), + (70113, 778, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '54kpKPNd', '4210314'), + (70114, 778, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '54kpKPNd', '4225444'), + (70115, 778, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '54kpKPNd', '4239259'), + (70116, 778, 900, 'attending', '2021-07-24 22:40:38', '2025-12-17 19:47:40', '54kpKPNd', '4240316'), + (70117, 778, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '54kpKPNd', '4240317'), + (70118, 778, 902, 'attending', '2021-08-06 15:47:31', '2025-12-17 19:47:41', '54kpKPNd', '4240318'), + (70119, 778, 903, 'attending', '2021-08-14 21:21:17', '2025-12-17 19:47:42', '54kpKPNd', '4240320'), + (70120, 778, 905, 'attending', '2021-07-05 18:55:52', '2025-12-17 19:47:39', '54kpKPNd', '4250163'), + (70121, 778, 911, 'attending', '2021-07-13 21:51:40', '2025-12-17 19:47:39', '54kpKPNd', '4264465'), + (70122, 778, 918, 'attending', '2021-07-12 23:07:42', '2025-12-17 19:47:39', '54kpKPNd', '4274486'), + (70123, 778, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '54kpKPNd', '4275957'), + (70124, 778, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '54kpKPNd', '4277819'), + (70125, 778, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '54kpKPNd', '4301723'), + (70126, 778, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '54kpKPNd', '4302093'), + (70127, 778, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '54kpKPNd', '4304151'), + (70128, 778, 965, 'not_attending', '2021-08-19 21:51:35', '2025-12-17 19:47:42', '54kpKPNd', '4353703'), + (70129, 778, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '54kpKPNd', '4356801'), + (70130, 778, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '54kpKPNd', '4366186'), + (70131, 778, 974, 'attending', '2021-08-22 23:17:09', '2025-12-17 19:47:42', '54kpKPNd', '4366187'), + (70132, 778, 981, 'attending', '2021-08-22 21:43:36', '2025-12-17 19:47:42', '54kpKPNd', '4387305'), + (70133, 778, 987, 'maybe', '2021-09-29 19:10:11', '2025-12-17 19:47:43', '54kpKPNd', '4402634'), + (70134, 778, 988, 'not_attending', '2021-08-27 21:26:46', '2025-12-17 19:47:42', '54kpKPNd', '4402823'), + (70135, 778, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '54kpKPNd', '4420735'), + (70136, 778, 991, 'attending', '2021-09-11 22:35:19', '2025-12-17 19:47:43', '54kpKPNd', '4420738'), + (70137, 778, 992, 'maybe', '2021-09-18 21:37:31', '2025-12-17 19:47:34', '54kpKPNd', '4420739'), + (70138, 778, 993, 'attending', '2021-09-25 19:02:21', '2025-12-17 19:47:34', '54kpKPNd', '4420741'), + (70139, 778, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '54kpKPNd', '4420744'), + (70140, 778, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '54kpKPNd', '4420747'), + (70141, 778, 997, 'attending', '2021-10-23 16:41:11', '2025-12-17 19:47:35', '54kpKPNd', '4420748'), + (70142, 778, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '54kpKPNd', '4420749'), + (70143, 778, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '54kpKPNd', '4461883'), + (70144, 778, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '54kpKPNd', '4508342'), + (70145, 778, 1074, 'not_attending', '2021-09-29 22:16:09', '2025-12-17 19:47:34', '54kpKPNd', '4528953'), + (70146, 778, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '54kpKPNd', '4568602'), + (70147, 778, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '54kpKPNd', '4572153'), + (70148, 778, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '54kpKPNd', '4585962'), + (70149, 778, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '54kpKPNd', '4596356'), + (70150, 778, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '54kpKPNd', '4598860'), + (70151, 778, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '54kpKPNd', '4598861'), + (70152, 778, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '54kpKPNd', '4602797'), + (70153, 778, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '54kpKPNd', '4637896'), + (70154, 778, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '54kpKPNd', '4642994'), + (70155, 778, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '54kpKPNd', '4642995'), + (70156, 778, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '54kpKPNd', '4642996'), + (70157, 778, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '54kpKPNd', '4642997'), + (70158, 778, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '54kpKPNd', '4645687'), + (70159, 778, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '54kpKPNd', '4645698'), + (70160, 778, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '54kpKPNd', '4645704'), + (70161, 778, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '54kpKPNd', '4645705'), + (70162, 778, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '54kpKPNd', '4668385'), + (70163, 778, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '54kpKPNd', '4694407'), + (70164, 778, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '54kpKPNd', '4706262'), + (70165, 778, 1174, 'attending', '2022-01-15 19:42:57', '2025-12-17 19:47:31', '54kpKPNd', '4736496'), + (70166, 778, 1175, 'attending', '2022-01-22 22:50:10', '2025-12-17 19:47:32', '54kpKPNd', '4736497'), + (70167, 778, 1176, 'attending', '2022-02-05 23:45:24', '2025-12-17 19:47:32', '54kpKPNd', '4736498'), + (70168, 778, 1177, 'attending', '2022-02-12 22:18:08', '2025-12-17 19:47:32', '54kpKPNd', '4736499'), + (70169, 778, 1178, 'attending', '2022-01-27 19:25:46', '2025-12-17 19:47:32', '54kpKPNd', '4736500'), + (70170, 778, 1179, 'attending', '2022-02-18 00:11:16', '2025-12-17 19:47:32', '54kpKPNd', '4736501'), + (70171, 778, 1180, 'attending', '2022-02-27 00:39:55', '2025-12-17 19:47:33', '54kpKPNd', '4736502'), + (70172, 778, 1181, 'attending', '2022-03-02 20:33:54', '2025-12-17 19:47:33', '54kpKPNd', '4736503'), + (70173, 778, 1182, 'attending', '2022-03-13 00:11:07', '2025-12-17 19:47:33', '54kpKPNd', '4736504'), + (70174, 778, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '54kpKPNd', '4746789'), + (70175, 778, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '54kpKPNd', '4753929'), + (70176, 778, 1222, 'attending', '2022-02-14 15:03:38', '2025-12-17 19:47:32', '54kpKPNd', '5015628'), + (70177, 778, 1223, 'not_attending', '2022-01-30 04:52:48', '2025-12-17 19:47:32', '54kpKPNd', '5015635'), + (70178, 778, 1232, 'maybe', '2022-02-09 19:31:45', '2025-12-17 19:47:32', '54kpKPNd', '5038850'), + (70179, 778, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '54kpKPNd', '5045826'), + (70180, 778, 1238, 'maybe', '2022-02-23 05:42:44', '2025-12-17 19:47:32', '54kpKPNd', '5052236'), + (70181, 778, 1239, 'not_attending', '2022-03-03 00:29:12', '2025-12-17 19:47:33', '54kpKPNd', '5052238'), + (70182, 778, 1240, 'attending', '2022-03-16 22:29:27', '2025-12-17 19:47:33', '54kpKPNd', '5052239'), + (70183, 778, 1241, 'attending', '2022-03-23 22:37:59', '2025-12-17 19:47:25', '54kpKPNd', '5052240'), + (70184, 778, 1242, 'attending', '2022-03-30 21:00:43', '2025-12-17 19:47:25', '54kpKPNd', '5052241'), + (70185, 778, 1249, 'attending', '2022-03-09 22:44:52', '2025-12-17 19:47:33', '54kpKPNd', '5068530'), + (70186, 778, 1254, 'attending', '2022-02-28 21:17:44', '2025-12-17 19:47:33', '54kpKPNd', '5129129'), + (70187, 778, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '54kpKPNd', '5132533'), + (70188, 778, 1272, 'attending', '2022-03-19 05:41:24', '2025-12-17 19:47:25', '54kpKPNd', '5186582'), + (70189, 778, 1273, 'attending', '2022-03-25 23:00:13', '2025-12-17 19:47:25', '54kpKPNd', '5186583'), + (70190, 778, 1274, 'attending', '2022-04-02 15:46:37', '2025-12-17 19:47:26', '54kpKPNd', '5186585'), + (70191, 778, 1281, 'attending', '2022-04-09 20:53:38', '2025-12-17 19:47:27', '54kpKPNd', '5190437'), + (70192, 778, 1284, 'attending', '2022-04-16 21:45:04', '2025-12-17 19:47:27', '54kpKPNd', '5195095'), + (70193, 778, 1291, 'attending', '2022-03-25 20:53:26', '2025-12-17 19:47:25', '54kpKPNd', '5200458'), + (70194, 778, 1296, 'attending', '2022-03-28 15:08:56', '2025-12-17 19:47:26', '54kpKPNd', '5215985'), + (70195, 778, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '54kpKPNd', '5215989'), + (70196, 778, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '54kpKPNd', '5223686'), + (70197, 778, 1308, 'attending', '2022-04-13 18:43:36', '2025-12-17 19:47:27', '54kpKPNd', '5226703'), + (70198, 778, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '54kpKPNd', '5227432'), + (70199, 778, 1319, 'attending', '2022-04-24 21:33:31', '2025-12-17 19:47:27', '54kpKPNd', '5238353'), + (70200, 778, 1320, 'not_attending', '2022-04-24 21:33:40', '2025-12-17 19:47:27', '54kpKPNd', '5238354'), + (70201, 778, 1323, 'not_attending', '2022-04-25 04:11:06', '2025-12-17 19:47:27', '54kpKPNd', '5238357'), + (70202, 778, 1326, 'not_attending', '2022-04-25 04:11:00', '2025-12-17 19:47:28', '54kpKPNd', '5238362'), + (70203, 778, 1327, 'not_attending', '2022-04-25 04:11:39', '2025-12-17 19:47:27', '54kpKPNd', '5238445'), + (70204, 778, 1330, 'attending', '2022-04-18 20:47:04', '2025-12-17 19:47:27', '54kpKPNd', '5242155'), + (70205, 778, 1336, 'attending', '2022-04-19 16:05:14', '2025-12-17 19:47:27', '54kpKPNd', '5244915'), + (70206, 778, 1340, 'attending', '2022-04-28 22:14:41', '2025-12-17 19:47:27', '54kpKPNd', '5245754'), + (70207, 778, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '54kpKPNd', '5247467'), + (70208, 778, 1348, 'attending', '2022-04-25 04:12:26', '2025-12-17 19:47:28', '54kpKPNd', '5247605'), + (70209, 778, 1356, 'attending', '2022-04-22 01:30:14', '2025-12-17 19:47:27', '54kpKPNd', '5252913'), + (70210, 778, 1357, 'attending', '2022-04-25 04:11:33', '2025-12-17 19:47:27', '54kpKPNd', '5256017'), + (70211, 778, 1362, 'attending', '2022-04-25 18:19:25', '2025-12-17 19:47:28', '54kpKPNd', '5260800'), + (70212, 778, 1371, 'attending', '2022-04-27 22:24:32', '2025-12-17 19:47:27', '54kpKPNd', '5263784'), + (70213, 778, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '54kpKPNd', '5269930'), + (70214, 778, 1377, 'not_attending', '2022-05-11 14:47:56', '2025-12-17 19:47:28', '54kpKPNd', '5271447'), + (70215, 778, 1378, 'attending', '2022-05-11 14:47:41', '2025-12-17 19:47:28', '54kpKPNd', '5271448'), + (70216, 778, 1379, 'attending', '2022-05-21 19:52:19', '2025-12-17 19:47:29', '54kpKPNd', '5271449'), + (70217, 778, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '54kpKPNd', '5276469'), + (70218, 778, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', '54kpKPNd', '5277078'), + (70219, 778, 1385, 'attending', '2022-05-11 14:47:36', '2025-12-17 19:47:28', '54kpKPNd', '5277822'), + (70220, 778, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '54kpKPNd', '5278159'), + (70221, 778, 1407, 'attending', '2022-06-03 22:17:50', '2025-12-17 19:47:30', '54kpKPNd', '5363695'), + (70222, 778, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '54kpKPNd', '5365960'), + (70223, 778, 1415, 'attending', '2022-06-03 22:17:46', '2025-12-17 19:47:30', '54kpKPNd', '5368973'), + (70224, 778, 1422, 'attending', '2022-05-25 18:32:26', '2025-12-17 19:47:30', '54kpKPNd', '5375603'), + (70225, 778, 1427, 'attending', '2022-05-25 18:31:01', '2025-12-17 19:47:30', '54kpKPNd', '5376074'), + (70226, 778, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '54kpKPNd', '5378247'), + (70227, 778, 1431, 'attending', '2022-06-11 20:17:53', '2025-12-17 19:47:30', '54kpKPNd', '5389605'), + (70228, 778, 1438, 'attending', '2022-06-01 20:56:44', '2025-12-17 19:47:30', '54kpKPNd', '5395032'), + (70229, 778, 1442, 'attending', '2022-06-11 18:50:26', '2025-12-17 19:47:17', '54kpKPNd', '5397265'), + (70230, 778, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '54kpKPNd', '5403967'), + (70231, 778, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '54kpKPNd', '5404786'), + (70232, 778, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '54kpKPNd', '5405203'), + (70233, 778, 1476, 'maybe', '2022-06-19 02:13:12', '2025-12-17 19:47:17', '54kpKPNd', '5408130'), + (70234, 778, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '54kpKPNd', '5412550'), + (70235, 778, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '54kpKPNd', '5415046'), + (70236, 778, 1824, 'maybe', '2022-12-21 23:22:23', '2025-12-17 19:47:04', '54kpKPNd', '5774172'), + (70237, 778, 1826, 'attending', '2022-12-20 00:33:47', '2025-12-17 19:47:04', '54kpKPNd', '5776768'), + (70238, 778, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '54kpKPNd', '5819471'), + (70239, 778, 1842, 'attending', '2022-12-23 00:24:31', '2025-12-17 19:47:04', '54kpKPNd', '5827739'), + (70240, 778, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '54kpKPNd', '5850159'), + (70241, 778, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '54kpKPNd', '5858999'), + (70242, 778, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '54kpKPNd', '5871984'), + (70243, 778, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '54kpKPNd', '5876354'), + (70244, 778, 1865, 'attending', '2023-01-28 20:36:06', '2025-12-17 19:47:06', '54kpKPNd', '5879676'), + (70245, 778, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '54kpKPNd', '5880939'), + (70246, 778, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '54kpKPNd', '5880940'), + (70247, 778, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '54kpKPNd', '5880942'), + (70248, 778, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '54kpKPNd', '5880943'), + (70249, 778, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '54kpKPNd', '5887890'), + (70250, 778, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '54kpKPNd', '5888598'), + (70251, 778, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '54kpKPNd', '5893260'), + (70252, 778, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '54kpKPNd', '5899826'), + (70253, 778, 1886, 'attending', '2023-03-07 23:46:35', '2025-12-17 19:47:09', '54kpKPNd', '5899930'), + (70254, 778, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '54kpKPNd', '5900199'), + (70255, 778, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '54kpKPNd', '5900200'), + (70256, 778, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '54kpKPNd', '5900202'), + (70257, 778, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '54kpKPNd', '5900203'), + (70258, 778, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '54kpKPNd', '5901108'), + (70259, 778, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '54kpKPNd', '5901126'), + (70260, 778, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '54kpKPNd', '5909655'), + (70261, 778, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '54kpKPNd', '5910522'), + (70262, 778, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '54kpKPNd', '5910526'), + (70263, 778, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '54kpKPNd', '5910528'), + (70264, 778, 1918, 'not_attending', '2023-02-09 18:38:02', '2025-12-17 19:47:07', '54kpKPNd', '5911180'), + (70265, 778, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '54kpKPNd', '5916219'), + (70266, 778, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '54kpKPNd', '5936234'), + (70267, 778, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '54kpKPNd', '5958351'), + (70268, 778, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '54kpKPNd', '5959751'), + (70269, 778, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '54kpKPNd', '5959755'), + (70270, 778, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '54kpKPNd', '5960055'), + (70271, 778, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '54kpKPNd', '5961684'), + (70272, 778, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '54kpKPNd', '5962132'), + (70273, 778, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '54kpKPNd', '5962133'), + (70274, 778, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '54kpKPNd', '5962134'), + (70275, 778, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '54kpKPNd', '5962317'), + (70276, 778, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '54kpKPNd', '5962318'), + (70277, 778, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '54kpKPNd', '5965933'), + (70278, 778, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '54kpKPNd', '5967014'), + (70279, 778, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '54kpKPNd', '5972815'), + (70280, 778, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '54kpKPNd', '5974016'), + (70281, 778, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '54kpKPNd', '5975052'), + (70282, 778, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '54kpKPNd', '5975054'), + (70283, 778, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '54kpKPNd', '5981515'), + (70284, 778, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '54kpKPNd', '5993516'), + (70285, 778, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '54kpKPNd', '5998939'), + (70286, 778, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '54kpKPNd', '6028191'), + (70287, 778, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '54kpKPNd', '6040066'), + (70288, 778, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '54kpKPNd', '6042717'), + (70289, 778, 1986, 'attending', '2023-04-03 01:49:35', '2025-12-17 19:46:58', '54kpKPNd', '6044838'), + (70290, 778, 1987, 'attending', '2023-04-03 01:49:48', '2025-12-17 19:47:00', '54kpKPNd', '6044839'), + (70291, 778, 1988, 'attending', '2023-04-03 01:49:53', '2025-12-17 19:47:01', '54kpKPNd', '6044840'), + (70292, 778, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kpKPNd', '6045684'), + (70293, 778, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '54kpKPNd', '6050104'), + (70294, 778, 1996, 'attending', '2023-04-03 01:49:26', '2025-12-17 19:46:58', '54kpKPNd', '6050667'), + (70295, 778, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '54kpKPNd', '6053195'), + (70296, 778, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '54kpKPNd', '6053198'), + (70297, 778, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '54kpKPNd', '6056085'), + (70298, 778, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '54kpKPNd', '6056916'), + (70299, 778, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '54kpKPNd', '6059290'), + (70300, 778, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '54kpKPNd', '6060328'), + (70301, 778, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '54kpKPNd', '6061037'), + (70302, 778, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '54kpKPNd', '6061039'), + (70303, 778, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '54kpKPNd', '6067245'), + (70304, 778, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '54kpKPNd', '6068094'), + (70305, 778, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '54kpKPNd', '6068252'), + (70306, 778, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '54kpKPNd', '6068253'), + (70307, 778, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '54kpKPNd', '6068254'), + (70308, 778, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '54kpKPNd', '6068280'), + (70309, 778, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '54kpKPNd', '6069093'), + (70310, 778, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '54kpKPNd', '6072528'), + (70311, 778, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '54kpKPNd', '6079840'), + (70312, 778, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '54kpKPNd', '6083398'), + (70313, 778, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '54kpKPNd', '6093504'), + (70314, 778, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '54kpKPNd', '6097414'), + (70315, 778, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '54kpKPNd', '6097442'), + (70316, 778, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '54kpKPNd', '6097684'), + (70317, 778, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '54kpKPNd', '6098762'), + (70318, 778, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '54kpKPNd', '6101361'), + (70319, 778, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '54kpKPNd', '6101362'), + (70320, 778, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '54kpKPNd', '6103752'), + (70321, 778, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '54kpKPNd', '6107314'), + (70322, 778, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '54kpKPNd', '6120034'), + (70323, 778, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '54kpKPNd', '6136733'), + (70324, 778, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '54kpKPNd', '6137989'), + (70325, 778, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '54kpKPNd', '6150864'), + (70326, 778, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '54kpKPNd', '6155491'), + (70327, 778, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '54kpKPNd', '6164417'), + (70328, 778, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '54kpKPNd', '6166388'), + (70329, 778, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '54kpKPNd', '6176439'), + (70330, 778, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '54kpKPNd', '6182410'), + (70331, 778, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '54kpKPNd', '6185812'), + (70332, 778, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '54kpKPNd', '6187651'), + (70333, 778, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '54kpKPNd', '6187963'), + (70334, 778, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '54kpKPNd', '6187964'), + (70335, 778, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '54kpKPNd', '6187966'), + (70336, 778, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '54kpKPNd', '6187967'), + (70337, 778, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '54kpKPNd', '6187969'), + (70338, 778, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '54kpKPNd', '6334878'), + (70339, 778, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '54kpKPNd', '6337236'), + (70340, 778, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '54kpKPNd', '6337970'), + (70341, 778, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '54kpKPNd', '6338308'), + (70342, 778, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '54kpKPNd', '6341710'), + (70343, 778, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '54kpKPNd', '6342044'), + (70344, 778, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '54kpKPNd', '6342298'), + (70345, 778, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '54kpKPNd', '6343294'), + (70346, 778, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '54kpKPNd', '6347034'), + (70347, 778, 2177, 'attending', '2023-08-12 20:25:32', '2025-12-17 19:46:55', '54kpKPNd', '6347053'), + (70348, 778, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '54kpKPNd', '6347056'), + (70349, 778, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '54kpKPNd', '6353830'), + (70350, 778, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '54kpKPNd', '6353831'), + (70351, 778, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '54kpKPNd', '6357867'), + (70352, 778, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '54kpKPNd', '6358652'), + (70353, 778, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', '54kpKPNd', '6358668'), + (70354, 778, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', '54kpKPNd', '6358669'), + (70355, 778, 2204, 'attending', '2023-08-19 19:21:13', '2025-12-17 19:46:55', '54kpKPNd', '6361542'), + (70356, 778, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '54kpKPNd', '6361709'), + (70357, 778, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '54kpKPNd', '6361710'), + (70358, 778, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '54kpKPNd', '6361711'), + (70359, 778, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '54kpKPNd', '6361712'), + (70360, 778, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '54kpKPNd', '6361713'), + (70361, 778, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '54kpKPNd', '6382573'), + (70362, 778, 2239, 'attending', '2023-09-02 20:04:54', '2025-12-17 19:46:56', '54kpKPNd', '6387592'), + (70363, 778, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '54kpKPNd', '6388604'), + (70364, 778, 2242, 'attending', '2023-09-23 21:57:04', '2025-12-17 19:46:45', '54kpKPNd', '6388606'), + (70365, 778, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '54kpKPNd', '6394629'), + (70366, 778, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '54kpKPNd', '6394631'), + (70367, 778, 2253, 'attending', '2023-09-30 21:06:10', '2025-12-17 19:46:45', '54kpKPNd', '6401811'), + (70368, 778, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '54kpKPNd', '6440863'), + (70369, 778, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '54kpKPNd', '6445440'), + (70370, 778, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '54kpKPNd', '6453951'), + (70371, 778, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '54kpKPNd', '6461696'), + (70372, 778, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '54kpKPNd', '6462129'), + (70373, 778, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '54kpKPNd', '6463218'), + (70374, 778, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '54kpKPNd', '6472181'), + (70375, 778, 2303, 'attending', '2023-10-28 20:12:28', '2025-12-17 19:46:47', '54kpKPNd', '6482691'), + (70376, 778, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '54kpKPNd', '6482693'), + (70377, 778, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '54kpKPNd', '6484200'), + (70378, 778, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '54kpKPNd', '6484680'), + (70379, 778, 2310, 'attending', '2023-11-11 23:12:25', '2025-12-17 19:46:47', '54kpKPNd', '6487709'), + (70380, 778, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '54kpKPNd', '6507741'), + (70381, 778, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '54kpKPNd', '6514659'), + (70382, 778, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '54kpKPNd', '6514660'), + (70383, 778, 2324, 'attending', '2023-12-09 19:55:03', '2025-12-17 19:46:49', '54kpKPNd', '6514662'), + (70384, 778, 2332, 'not_attending', '2023-11-03 20:58:05', '2025-12-17 19:46:47', '54kpKPNd', '6518655'), + (70385, 778, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '54kpKPNd', '6519103'), + (70386, 778, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '54kpKPNd', '6535681'), + (70387, 778, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '54kpKPNd', '6584747'), + (70388, 778, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '54kpKPNd', '6587097'), + (70389, 778, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '54kpKPNd', '6609022'), + (70390, 778, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '54kpKPNd', '6632757'), + (70391, 778, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '54kpKPNd', '6644187'), + (70392, 778, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '54kpKPNd', '6648951'), + (70393, 778, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '54kpKPNd', '6648952'), + (70394, 778, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '54kpKPNd', '6655401'), + (70395, 778, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '54kpKPNd', '6661585'), + (70396, 778, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '54kpKPNd', '6661588'), + (70397, 778, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '54kpKPNd', '6661589'), + (70398, 778, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '54kpKPNd', '6699906'), + (70399, 778, 2408, 'attending', '2024-01-20 02:28:08', '2025-12-17 19:46:40', '54kpKPNd', '6699907'), + (70400, 778, 2410, 'attending', '2024-02-11 00:18:10', '2025-12-17 19:46:41', '54kpKPNd', '6699911'), + (70401, 778, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '54kpKPNd', '6699913'), + (70402, 778, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '54kpKPNd', '6701109'), + (70403, 778, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', '54kpKPNd', '6704561'), + (70404, 778, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '54kpKPNd', '6705219'), + (70405, 778, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', '54kpKPNd', '6708410'), + (70406, 778, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '54kpKPNd', '6710153'), + (70407, 778, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '54kpKPNd', '6711552'), + (70408, 778, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '54kpKPNd', '6711553'), + (70409, 778, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '54kpKPNd', '6722688'), + (70410, 778, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '54kpKPNd', '6730620'), + (70411, 778, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '54kpKPNd', '6730642'), + (70412, 778, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '54kpKPNd', '6740364'), + (70413, 778, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '54kpKPNd', '6743829'), + (70414, 778, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '54kpKPNd', '7030380'), + (70415, 778, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '54kpKPNd', '7033677'), + (70416, 778, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '54kpKPNd', '7035415'), + (70417, 778, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '54kpKPNd', '7044715'), + (70418, 778, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '54kpKPNd', '7050318'), + (70419, 778, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '54kpKPNd', '7050319'), + (70420, 778, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '54kpKPNd', '7050322'), + (70421, 778, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '54kpKPNd', '7057804'), + (70422, 778, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '54kpKPNd', '7072824'), + (70423, 778, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '54kpKPNd', '7074348'), + (70424, 778, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '54kpKPNd', '7074364'), + (70425, 778, 2525, 'not_attending', '2024-06-13 02:22:47', '2025-12-17 19:46:28', '54kpKPNd', '7074365'), + (70426, 778, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '54kpKPNd', '7089267'), + (70427, 778, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '54kpKPNd', '7098747'), + (70428, 778, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '54kpKPNd', '7113468'), + (70429, 778, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '54kpKPNd', '7114856'), + (70430, 778, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '54kpKPNd', '7114951'), + (70431, 778, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '54kpKPNd', '7114955'), + (70432, 778, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '54kpKPNd', '7114956'), + (70433, 778, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '54kpKPNd', '7114957'), + (70434, 778, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '54kpKPNd', '7153615'), + (70435, 778, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '54kpKPNd', '7159484'), + (70436, 778, 2582, 'attending', '2024-04-17 05:43:46', '2025-12-17 19:46:34', '54kpKPNd', '7169765'), + (70437, 778, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '54kpKPNd', '7178446'), + (70438, 778, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '54kpKPNd', '7220467'), + (70439, 778, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '54kpKPNd', '7240354'), + (70440, 778, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '54kpKPNd', '7251633'), + (70441, 778, 2628, 'attending', '2024-06-01 15:57:43', '2025-12-17 19:46:36', '54kpKPNd', '7264725'), + (70442, 778, 2629, 'attending', '2024-06-08 20:00:33', '2025-12-17 19:46:28', '54kpKPNd', '7264726'), + (70443, 778, 2661, 'attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '54kpKPNd', '7302674'), + (70444, 778, 2667, 'attending', '2024-06-05 22:46:32', '2025-12-17 19:46:36', '54kpKPNd', '7307776'), + (70445, 778, 2678, 'attending', '2024-06-15 20:10:00', '2025-12-17 19:46:28', '54kpKPNd', '7319489'), + (70446, 778, 2687, 'maybe', '2024-06-12 22:09:21', '2025-12-17 19:46:28', '54kpKPNd', '7324019'), + (70447, 778, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '54kpKPNd', '7324073'), + (70448, 778, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '54kpKPNd', '7324074'), + (70449, 778, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '54kpKPNd', '7324075'), + (70450, 778, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '54kpKPNd', '7324078'), + (70451, 778, 2696, 'attending', '2024-08-24 22:14:42', '2025-12-17 19:46:32', '54kpKPNd', '7324081'), + (70452, 778, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '54kpKPNd', '7324082'), + (70453, 778, 2703, 'maybe', '2024-06-13 02:23:17', '2025-12-17 19:46:28', '54kpKPNd', '7324873'), + (70454, 778, 2713, 'attending', '2024-06-16 18:53:18', '2025-12-17 19:46:28', '54kpKPNd', '7326593'), + (70455, 778, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '54kpKPNd', '7331457'), + (70456, 778, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '54kpKPNd', '7363643'), + (70457, 778, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '54kpKPNd', '7368606'), + (70458, 778, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '54kpKPNd', '7397462'), + (70459, 778, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '54kpKPNd', '7424275'), + (70460, 778, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '54kpKPNd', '7424276'), + (70461, 778, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '54kpKPNd', '7432751'), + (70462, 778, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '54kpKPNd', '7432752'), + (70463, 778, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '54kpKPNd', '7432753'), + (70464, 778, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '54kpKPNd', '7432754'), + (70465, 778, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '54kpKPNd', '7432755'), + (70466, 778, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '54kpKPNd', '7432756'), + (70467, 778, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '54kpKPNd', '7432758'), + (70468, 778, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '54kpKPNd', '7432759'), + (70469, 778, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '54kpKPNd', '7433834'), + (70470, 778, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '54kpKPNd', '7470197'), + (70471, 778, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '54kpKPNd', '7685613'), + (70472, 778, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '54kpKPNd', '7688194'), + (70473, 778, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '54kpKPNd', '7688196'), + (70474, 778, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '54kpKPNd', '7688289'), + (70475, 778, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '54kpKPNd', '7692763'), + (70476, 778, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '54kpKPNd', '7697552'), + (70477, 778, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '54kpKPNd', '7699878'), + (70478, 778, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '54kpKPNd', '7704043'), + (70479, 778, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '54kpKPNd', '7712467'), + (70480, 778, 2925, 'attending', '2024-12-15 00:07:05', '2025-12-17 19:46:21', '54kpKPNd', '7713584'), + (70481, 778, 2926, 'attending', '2024-12-03 04:55:51', '2025-12-17 19:46:21', '54kpKPNd', '7713585'), + (70482, 778, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '54kpKPNd', '7713586'), + (70483, 778, 2954, 'attending', '2024-12-14 22:16:27', '2025-12-17 19:46:21', '54kpKPNd', '7734260'), + (70484, 778, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '54kpKPNd', '7738518'), + (70485, 778, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', '54kpKPNd', '7750632'), + (70486, 778, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '54kpKPNd', '7750636'), + (70487, 778, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '54kpKPNd', '7796540'), + (70488, 778, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '54kpKPNd', '7796541'), + (70489, 778, 2966, 'attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '54kpKPNd', '7796542'), + (70490, 778, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '54kpKPNd', '7825913'), + (70491, 778, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', '54kpKPNd', '7825920'), + (70492, 778, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '54kpKPNd', '7826209'), + (70493, 778, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '54kpKPNd', '7834742'), + (70494, 778, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', '54kpKPNd', '7842108'), + (70495, 778, 2991, 'attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '54kpKPNd', '7842902'), + (70496, 778, 2992, 'attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '54kpKPNd', '7842903'), + (70497, 778, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '54kpKPNd', '7842904'), + (70498, 778, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '54kpKPNd', '7842905'), + (70499, 778, 3001, 'attending', '2025-02-21 23:48:06', '2025-12-17 19:46:24', '54kpKPNd', '7854184'), + (70500, 778, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '54kpKPNd', '7855719'), + (70501, 778, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '54kpKPNd', '7860683'), + (70502, 778, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '54kpKPNd', '7860684'), + (70503, 778, 3012, 'attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '54kpKPNd', '7866095'), + (70504, 778, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '54kpKPNd', '7869170'), + (70505, 778, 3014, 'attending', '2025-04-05 13:42:25', '2025-12-17 19:46:20', '54kpKPNd', '7869185'), + (70506, 778, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '54kpKPNd', '7869188'), + (70507, 778, 3018, 'attending', '2025-04-12 15:04:17', '2025-12-17 19:46:20', '54kpKPNd', '7869189'), + (70508, 778, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '54kpKPNd', '7869201'), + (70509, 778, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '54kpKPNd', '7877465'), + (70510, 778, 3053, 'not_attending', '2025-03-17 00:15:05', '2025-12-17 19:46:19', '54kpKPNd', '7884030'), + (70511, 778, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '54kpKPNd', '7888250'), + (70512, 778, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '54kpKPNd', '7904777'), + (70513, 778, 3094, 'attending', '2025-05-10 22:29:47', '2025-12-17 19:46:21', '54kpKPNd', '8342292'), + (70514, 778, 3095, 'attending', '2025-05-03 16:36:20', '2025-12-17 19:46:20', '54kpKPNd', '8342293'), + (70515, 778, 3099, 'attending', '2025-04-21 17:07:53', '2025-12-17 19:46:20', '54kpKPNd', '8343522'), + (70516, 778, 3102, 'attending', '2025-04-29 19:47:14', '2025-12-17 19:46:20', '54kpKPNd', '8346008'), + (70517, 778, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '54kpKPNd', '8349164'), + (70518, 778, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '54kpKPNd', '8349545'), + (70519, 778, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '54kpKPNd', '8353584'), + (70520, 778, 3115, 'attending', '2025-05-03 04:16:14', '2025-12-17 19:46:20', '54kpKPNd', '8357635'), + (70521, 778, 3126, 'maybe', '2025-05-14 17:02:17', '2025-12-17 19:46:21', '54kpKPNd', '8365614'), + (70522, 778, 3130, 'maybe', '2025-05-27 23:40:03', '2025-12-17 19:46:21', '54kpKPNd', '8367403'), + (70523, 778, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '54kpKPNd', '8368028'), + (70524, 778, 3132, 'attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '54kpKPNd', '8368029'), + (70525, 778, 3133, 'attending', '2025-05-31 15:42:07', '2025-12-17 19:46:14', '54kpKPNd', '8368030'), + (70526, 778, 3141, 'attending', '2025-05-23 15:12:23', '2025-12-17 19:46:21', '54kpKPNd', '8383440'), + (70527, 778, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '54kpKPNd', '8388462'), + (70528, 778, 3152, 'attending', '2025-06-05 02:08:38', '2025-12-17 19:46:14', '54kpKPNd', '8393582'), + (70529, 778, 3153, 'attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '54kpKPNd', '8400273'), + (70530, 778, 3154, 'attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '54kpKPNd', '8400274'), + (70531, 778, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '54kpKPNd', '8400275'), + (70532, 778, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '54kpKPNd', '8400276'), + (70533, 778, 3159, 'attending', '2025-06-04 04:33:31', '2025-12-17 19:46:15', '54kpKPNd', '8401410'), + (70534, 778, 3163, 'not_attending', '2025-06-08 21:32:46', '2025-12-17 19:46:15', '54kpKPNd', '8402899'), + (70535, 778, 3165, 'attending', '2025-06-07 22:02:09', '2025-12-17 19:46:14', '54kpKPNd', '8404220'), + (70536, 778, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '54kpKPNd', '8404977'), + (70537, 778, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '54kpKPNd', '8430783'), + (70538, 778, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '54kpKPNd', '8430784'), + (70539, 778, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '54kpKPNd', '8430799'), + (70540, 778, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '54kpKPNd', '8430800'), + (70541, 778, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '54kpKPNd', '8430801'), + (70542, 778, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '54kpKPNd', '8438709'), + (70543, 778, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '54kpKPNd', '8457738'), + (70544, 778, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '54kpKPNd', '8459566'), + (70545, 778, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '54kpKPNd', '8459567'), + (70546, 778, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '54kpKPNd', '8461032'), + (70547, 778, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '54kpKPNd', '8477877'), + (70548, 778, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '54kpKPNd', '8485688'), + (70549, 778, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '54kpKPNd', '8490587'), + (70550, 778, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '54kpKPNd', '8493552'), + (70551, 778, 3237, 'attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '54kpKPNd', '8493553'), + (70552, 778, 3238, 'attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '54kpKPNd', '8493554'), + (70553, 778, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '54kpKPNd', '8493555'), + (70554, 778, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '54kpKPNd', '8493556'), + (70555, 778, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '54kpKPNd', '8493557'), + (70556, 778, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '54kpKPNd', '8493558'), + (70557, 778, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '54kpKPNd', '8493559'), + (70558, 778, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '54kpKPNd', '8493560'), + (70559, 778, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '54kpKPNd', '8493561'), + (70560, 778, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '54kpKPNd', '8493572'), + (70561, 779, 1, 'not_attending', '2020-03-19 16:00:29', '2025-12-17 19:47:58', 'w4W5L2qm', '2958042'), + (70562, 779, 2, 'attending', '2020-03-21 03:34:59', '2025-12-17 19:47:58', 'w4W5L2qm', '2958044'), + (70563, 779, 3, 'not_attending', '2020-03-19 16:01:08', '2025-12-17 19:47:58', 'w4W5L2qm', '2958045'), + (70564, 779, 4, 'attending', '2020-03-19 05:29:25', '2025-12-17 19:47:58', 'w4W5L2qm', '2958046'), + (70565, 779, 5, 'attending', '2020-03-19 05:29:27', '2025-12-17 19:47:58', 'w4W5L2qm', '2958047'), + (70566, 779, 6, 'not_attending', '2020-03-23 18:55:53', '2025-12-17 19:47:58', 'w4W5L2qm', '2958048'), + (70567, 779, 7, 'maybe', '2020-03-24 16:02:09', '2025-12-17 19:47:58', 'w4W5L2qm', '2958049'), + (70568, 779, 8, 'attending', '2020-03-23 18:55:37', '2025-12-17 19:47:58', 'w4W5L2qm', '2958050'), + (70569, 779, 9, 'attending', '2020-03-25 00:06:20', '2025-12-17 19:47:56', 'w4W5L2qm', '2958052'), + (70570, 779, 10, 'attending', '2020-03-25 00:06:23', '2025-12-17 19:47:56', 'w4W5L2qm', '2958053'), + (70571, 779, 11, 'attending', '2020-03-25 00:07:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2958055'), + (70572, 779, 13, 'attending', '2020-03-25 00:07:34', '2025-12-17 19:47:57', 'w4W5L2qm', '2958057'), + (70573, 779, 15, 'not_attending', '2020-04-10 16:53:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2958059'), + (70574, 779, 16, 'attending', '2020-03-23 18:55:49', '2025-12-17 19:47:56', 'w4W5L2qm', '2958060'), + (70575, 779, 17, 'maybe', '2020-03-19 05:29:34', '2025-12-17 19:47:58', 'w4W5L2qm', '2958061'), + (70576, 779, 19, 'maybe', '2020-03-31 22:12:02', '2025-12-17 19:47:56', 'w4W5L2qm', '2958063'), + (70577, 779, 26, 'maybe', '2020-04-03 00:09:36', '2025-12-17 19:47:57', 'w4W5L2qm', '2958082'), + (70578, 779, 28, 'not_attending', '2020-03-29 01:45:50', '2025-12-17 19:47:56', 'w4W5L2qm', '2960421'), + (70579, 779, 29, 'maybe', '2020-03-23 18:55:31', '2025-12-17 19:47:56', 'w4W5L2qm', '2961309'), + (70580, 779, 30, 'attending', '2020-03-23 20:41:13', '2025-12-17 19:47:57', 'w4W5L2qm', '2961895'), + (70581, 779, 36, 'not_attending', '2020-03-31 22:12:06', '2025-12-17 19:47:57', 'w4W5L2qm', '2969208'), + (70582, 779, 38, 'maybe', '2020-03-31 22:11:59', '2025-12-17 19:47:56', 'w4W5L2qm', '2969751'), + (70583, 779, 39, 'not_attending', '2020-04-01 19:21:40', '2025-12-17 19:47:57', 'w4W5L2qm', '2970637'), + (70584, 779, 40, 'attending', '2020-03-30 21:51:30', '2025-12-17 19:47:57', 'w4W5L2qm', '2970718'), + (70585, 779, 41, 'maybe', '2020-04-10 16:53:27', '2025-12-17 19:47:57', 'w4W5L2qm', '2971546'), + (70586, 779, 44, 'not_attending', '2020-04-10 16:53:22', '2025-12-17 19:47:57', 'w4W5L2qm', '2974534'), + (70587, 779, 46, 'not_attending', '2020-04-11 21:31:07', '2025-12-17 19:47:57', 'w4W5L2qm', '2974955'), + (70588, 779, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'w4W5L2qm', '2975384'), + (70589, 779, 56, 'maybe', '2020-04-10 16:53:16', '2025-12-17 19:47:57', 'w4W5L2qm', '2975385'), + (70590, 779, 57, 'attending', '2020-04-22 17:15:00', '2025-12-17 19:47:57', 'w4W5L2qm', '2976575'), + (70591, 779, 58, 'attending', '2020-04-18 18:52:03', '2025-12-17 19:47:57', 'w4W5L2qm', '2977127'), + (70592, 779, 59, 'maybe', '2020-05-05 20:52:19', '2025-12-17 19:47:57', 'w4W5L2qm', '2977128'), + (70593, 779, 60, 'attending', '2020-04-18 18:53:31', '2025-12-17 19:47:57', 'w4W5L2qm', '2977129'), + (70594, 779, 61, 'attending', '2020-04-10 16:53:23', '2025-12-17 19:47:57', 'w4W5L2qm', '2977130'), + (70595, 779, 62, 'attending', '2020-05-09 19:52:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2977131'), + (70596, 779, 63, 'attending', '2020-05-17 18:09:34', '2025-12-17 19:47:57', 'w4W5L2qm', '2977132'), + (70597, 779, 64, 'not_attending', '2020-06-02 02:01:43', '2025-12-17 19:47:58', 'w4W5L2qm', '2977133'), + (70598, 779, 65, 'not_attending', '2020-05-17 18:09:21', '2025-12-17 19:47:57', 'w4W5L2qm', '2977134'), + (70599, 779, 66, 'maybe', '2020-06-02 02:02:24', '2025-12-17 19:47:58', 'w4W5L2qm', '2977135'), + (70600, 779, 70, 'not_attending', '2020-04-10 16:53:10', '2025-12-17 19:47:57', 'w4W5L2qm', '2977343'), + (70601, 779, 71, 'not_attending', '2020-04-11 21:31:05', '2025-12-17 19:47:57', 'w4W5L2qm', '2977526'), + (70602, 779, 72, 'maybe', '2020-05-05 02:45:10', '2025-12-17 19:47:57', 'w4W5L2qm', '2977812'), + (70603, 779, 73, 'maybe', '2020-04-11 03:56:28', '2025-12-17 19:47:57', 'w4W5L2qm', '2977931'), + (70604, 779, 74, 'attending', '2020-04-11 03:56:34', '2025-12-17 19:47:57', 'w4W5L2qm', '2978244'), + (70605, 779, 75, 'attending', '2020-04-18 18:53:26', '2025-12-17 19:47:57', 'w4W5L2qm', '2978245'), + (70606, 779, 76, 'attending', '2020-04-29 15:46:17', '2025-12-17 19:47:57', 'w4W5L2qm', '2978246'), + (70607, 779, 77, 'attending', '2020-05-05 02:45:21', '2025-12-17 19:47:57', 'w4W5L2qm', '2978247'), + (70608, 779, 78, 'not_attending', '2020-05-14 03:30:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2978249'), + (70609, 779, 79, 'not_attending', '2020-05-17 18:08:55', '2025-12-17 19:47:57', 'w4W5L2qm', '2978250'), + (70610, 779, 80, 'not_attending', '2020-06-06 18:44:15', '2025-12-17 19:47:58', 'w4W5L2qm', '2978251'), + (70611, 779, 81, 'attending', '2020-06-13 03:32:28', '2025-12-17 19:47:58', 'w4W5L2qm', '2978252'), + (70612, 779, 82, 'attending', '2020-04-22 17:14:39', '2025-12-17 19:47:57', 'w4W5L2qm', '2978433'), + (70613, 779, 83, 'not_attending', '2020-05-05 17:10:42', '2025-12-17 19:47:57', 'w4W5L2qm', '2978438'), + (70614, 779, 84, 'maybe', '2020-04-18 18:51:56', '2025-12-17 19:47:57', 'w4W5L2qm', '2980871'), + (70615, 779, 85, 'not_attending', '2020-04-22 22:03:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2980872'), + (70616, 779, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'w4W5L2qm', '2981388'), + (70617, 779, 87, 'attending', '2020-04-18 18:53:24', '2025-12-17 19:47:57', 'w4W5L2qm', '2982602'), + (70618, 779, 88, 'attending', '2020-04-14 19:04:58', '2025-12-17 19:47:57', 'w4W5L2qm', '2982603'), + (70619, 779, 89, 'not_attending', '2020-05-02 15:49:18', '2025-12-17 19:47:57', 'w4W5L2qm', '2982604'), + (70620, 779, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'w4W5L2qm', '2986743'), + (70621, 779, 94, 'maybe', '2020-04-24 21:24:12', '2025-12-17 19:47:57', 'w4W5L2qm', '2987421'), + (70622, 779, 96, 'maybe', '2020-05-01 18:28:35', '2025-12-17 19:47:57', 'w4W5L2qm', '2987453'), + (70623, 779, 102, 'attending', '2020-04-23 23:34:36', '2025-12-17 19:47:57', 'w4W5L2qm', '2990784'), + (70624, 779, 103, 'maybe', '2020-05-04 23:48:29', '2025-12-17 19:47:57', 'w4W5L2qm', '2991407'), + (70625, 779, 104, 'attending', '2020-04-25 02:35:39', '2025-12-17 19:47:57', 'w4W5L2qm', '2991471'), + (70626, 779, 106, 'maybe', '2020-05-02 15:49:23', '2025-12-17 19:47:57', 'w4W5L2qm', '2993501'), + (70627, 779, 109, 'maybe', '2020-05-12 00:21:21', '2025-12-17 19:47:57', 'w4W5L2qm', '2994480'), + (70628, 779, 111, 'attending', '2020-06-05 12:44:48', '2025-12-17 19:47:58', 'w4W5L2qm', '2994907'), + (70629, 779, 115, 'attending', '2020-05-05 02:45:24', '2025-12-17 19:47:57', 'w4W5L2qm', '3001217'), + (70630, 779, 119, 'not_attending', '2020-05-09 14:45:02', '2025-12-17 19:47:57', 'w4W5L2qm', '3015486'), + (70631, 779, 121, 'not_attending', '2020-05-19 18:42:40', '2025-12-17 19:47:57', 'w4W5L2qm', '3023063'), + (70632, 779, 122, 'maybe', '2020-05-17 18:08:29', '2025-12-17 19:47:57', 'w4W5L2qm', '3023491'), + (70633, 779, 123, 'not_attending', '2020-05-19 18:42:35', '2025-12-17 19:47:57', 'w4W5L2qm', '3023729'), + (70634, 779, 124, 'not_attending', '2020-05-19 18:42:45', '2025-12-17 19:47:57', 'w4W5L2qm', '3023809'), + (70635, 779, 125, 'not_attending', '2020-05-19 18:42:22', '2025-12-17 19:47:57', 'w4W5L2qm', '3023987'), + (70636, 779, 126, 'not_attending', '2020-05-19 18:42:30', '2025-12-17 19:47:57', 'w4W5L2qm', '3024022'), + (70637, 779, 128, 'not_attending', '2020-05-18 17:57:21', '2025-12-17 19:47:57', 'w4W5L2qm', '3027185'), + (70638, 779, 130, 'not_attending', '2020-05-25 00:05:58', '2025-12-17 19:47:57', 'w4W5L2qm', '3028781'), + (70639, 779, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'w4W5L2qm', '3034321'), + (70640, 779, 135, 'not_attending', '2020-05-25 00:05:49', '2025-12-17 19:47:57', 'w4W5L2qm', '3034368'), + (70641, 779, 136, 'not_attending', '2020-05-25 00:05:38', '2025-12-17 19:47:57', 'w4W5L2qm', '3035881'), + (70642, 779, 143, 'not_attending', '2020-06-07 23:01:26', '2025-12-17 19:47:58', 'w4W5L2qm', '3049983'), + (70643, 779, 145, 'attending', '2020-06-13 03:32:25', '2025-12-17 19:47:58', 'w4W5L2qm', '3058680'), + (70644, 779, 146, 'not_attending', '2020-06-27 22:51:24', '2025-12-17 19:47:55', 'w4W5L2qm', '3058683'), + (70645, 779, 150, 'attending', '2020-07-25 22:02:36', '2025-12-17 19:47:55', 'w4W5L2qm', '3058687'), + (70646, 779, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'w4W5L2qm', '3058959'), + (70647, 779, 173, 'maybe', '2020-06-16 19:00:01', '2025-12-17 19:47:58', 'w4W5L2qm', '3067093'), + (70648, 779, 182, 'not_attending', '2020-06-27 22:51:22', '2025-12-17 19:47:55', 'w4W5L2qm', '3074514'), + (70649, 779, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'w4W5L2qm', '3075228'), + (70650, 779, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'w4W5L2qm', '3075456'), + (70651, 779, 186, 'not_attending', '2020-06-18 21:16:29', '2025-12-17 19:47:55', 'w4W5L2qm', '3083791'), + (70652, 779, 187, 'not_attending', '2020-06-18 21:16:20', '2025-12-17 19:47:55', 'w4W5L2qm', '3085151'), + (70653, 779, 189, 'maybe', '2020-06-20 02:55:04', '2025-12-17 19:47:58', 'w4W5L2qm', '3087016'), + (70654, 779, 191, 'not_attending', '2020-07-09 17:46:12', '2025-12-17 19:47:55', 'w4W5L2qm', '3087259'), + (70655, 779, 192, 'not_attending', '2020-07-18 22:13:14', '2025-12-17 19:47:55', 'w4W5L2qm', '3087260'), + (70656, 779, 193, 'attending', '2020-07-25 22:02:59', '2025-12-17 19:47:55', 'w4W5L2qm', '3087261'), + (70657, 779, 195, 'maybe', '2020-08-08 12:02:33', '2025-12-17 19:47:56', 'w4W5L2qm', '3087264'), + (70658, 779, 196, 'maybe', '2020-08-14 14:07:44', '2025-12-17 19:47:56', 'w4W5L2qm', '3087265'), + (70659, 779, 197, 'not_attending', '2020-08-14 14:07:49', '2025-12-17 19:47:56', 'w4W5L2qm', '3087266'), + (70660, 779, 198, 'not_attending', '2020-08-14 14:07:52', '2025-12-17 19:47:56', 'w4W5L2qm', '3087267'), + (70661, 779, 199, 'not_attending', '2020-08-14 14:07:59', '2025-12-17 19:47:56', 'w4W5L2qm', '3087268'), + (70662, 779, 201, 'not_attending', '2020-06-20 22:39:49', '2025-12-17 19:47:55', 'w4W5L2qm', '3088653'), + (70663, 779, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'w4W5L2qm', '3106813'), + (70664, 779, 223, 'not_attending', '2020-08-14 14:08:02', '2025-12-17 19:47:56', 'w4W5L2qm', '3129980'), + (70665, 779, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'w4W5L2qm', '3132817'), + (70666, 779, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'w4W5L2qm', '3132820'), + (70667, 779, 232, 'maybe', '2020-07-20 00:05:02', '2025-12-17 19:47:55', 'w4W5L2qm', '3139770'), + (70668, 779, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'w4W5L2qm', '3155321'), + (70669, 779, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'w4W5L2qm', '3162006'), + (70670, 779, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'w4W5L2qm', '3163442'), + (70671, 779, 293, 'not_attending', '2020-08-14 19:29:11', '2025-12-17 19:47:56', 'w4W5L2qm', '3172832'), + (70672, 779, 294, 'not_attending', '2020-08-14 19:29:28', '2025-12-17 19:47:56', 'w4W5L2qm', '3172833'), + (70673, 779, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'w4W5L2qm', '3172834'), + (70674, 779, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'w4W5L2qm', '3172876'), + (70675, 779, 298, 'not_attending', '2020-08-14 19:29:39', '2025-12-17 19:47:56', 'w4W5L2qm', '3174556'), + (70676, 779, 299, 'not_attending', '2020-08-14 19:28:52', '2025-12-17 19:47:56', 'w4W5L2qm', '3176591'), + (70677, 779, 311, 'maybe', '2020-09-19 12:19:56', '2025-12-17 19:47:56', 'w4W5L2qm', '3186057'), + (70678, 779, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'w4W5L2qm', '3191735'), + (70679, 779, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'w4W5L2qm', '3200209'), + (70680, 779, 362, 'maybe', '2020-09-25 21:14:47', '2025-12-17 19:47:52', 'w4W5L2qm', '3214207'), + (70681, 779, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'w4W5L2qm', '3217037'), + (70682, 779, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'w4W5L2qm', '3218510'), + (70683, 779, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'w4W5L2qm', '3228698'), + (70684, 779, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'w4W5L2qm', '3228699'), + (70685, 779, 387, 'maybe', '2020-10-14 01:00:09', '2025-12-17 19:47:52', 'w4W5L2qm', '3228700'), + (70686, 779, 388, 'maybe', '2020-10-14 01:00:15', '2025-12-17 19:47:52', 'w4W5L2qm', '3228701'), + (70687, 779, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'w4W5L2qm', '3245751'), + (70688, 779, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'w4W5L2qm', '3250232'), + (70689, 779, 438, 'not_attending', '2020-10-31 19:00:13', '2025-12-17 19:47:53', 'w4W5L2qm', '3256163'), + (70690, 779, 440, 'not_attending', '2020-11-07 18:49:40', '2025-12-17 19:47:53', 'w4W5L2qm', '3256168'), + (70691, 779, 441, 'not_attending', '2020-11-07 18:49:42', '2025-12-17 19:47:54', 'w4W5L2qm', '3256169'), + (70692, 779, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'w4W5L2qm', '3263578'), + (70693, 779, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'w4W5L2qm', '3266138'), + (70694, 779, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'w4W5L2qm', '3276428'), + (70695, 779, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'w4W5L2qm', '3281467'), + (70696, 779, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'w4W5L2qm', '3281470'), + (70697, 779, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'w4W5L2qm', '3281829'), + (70698, 779, 468, 'not_attending', '2020-11-19 20:00:16', '2025-12-17 19:47:54', 'w4W5L2qm', '3285413'), + (70699, 779, 469, 'not_attending', '2020-11-19 20:00:19', '2025-12-17 19:47:54', 'w4W5L2qm', '3285414'), + (70700, 779, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'w4W5L2qm', '3297764'), + (70701, 779, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'w4W5L2qm', '3313856'), + (70702, 779, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'w4W5L2qm', '3314909'), + (70703, 779, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'w4W5L2qm', '3314964'), + (70704, 779, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'w4W5L2qm', '3323365'), + (70705, 779, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'w4W5L2qm', '3329383'), + (70706, 779, 526, 'not_attending', '2021-01-03 00:24:45', '2025-12-17 19:47:48', 'w4W5L2qm', '3351539'), + (70707, 779, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'w4W5L2qm', '3386848'), + (70708, 779, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'w4W5L2qm', '3389527'), + (70709, 779, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'w4W5L2qm', '3396499'), + (70710, 779, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'w4W5L2qm', '3403650'), + (70711, 779, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'w4W5L2qm', '3406988'), + (70712, 779, 555, 'not_attending', '2021-01-23 23:08:05', '2025-12-17 19:47:49', 'w4W5L2qm', '3416576'), + (70713, 779, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'w4W5L2qm', '3418925'), + (70714, 779, 568, 'not_attending', '2021-01-31 00:01:18', '2025-12-17 19:47:50', 'w4W5L2qm', '3430267'), + (70715, 779, 569, 'not_attending', '2021-01-25 06:51:07', '2025-12-17 19:47:49', 'w4W5L2qm', '3432673'), + (70716, 779, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'w4W5L2qm', '3468125'), + (70717, 779, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'w4W5L2qm', '3470303'), + (70718, 779, 604, 'not_attending', '2021-02-25 17:31:05', '2025-12-17 19:47:50', 'w4W5L2qm', '3470305'), + (70719, 779, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'w4W5L2qm', '3470991'), + (70720, 779, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'w4W5L2qm', '3517815'), + (70721, 779, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'w4W5L2qm', '3517816'), + (70722, 779, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'w4W5L2qm', '3523941'), + (70723, 779, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4W5L2qm', '3533850'), + (70724, 779, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4W5L2qm', '3536632'), + (70725, 779, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'w4W5L2qm', '3536656'), + (70726, 779, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'w4W5L2qm', '3539916'), + (70727, 779, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'w4W5L2qm', '3539917'), + (70728, 779, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'w4W5L2qm', '3539918'), + (70729, 779, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'w4W5L2qm', '3539919'), + (70730, 779, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'w4W5L2qm', '3539920'), + (70731, 779, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'w4W5L2qm', '3539921'), + (70732, 779, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4W5L2qm', '3539922'), + (70733, 779, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'w4W5L2qm', '3539923'), + (70734, 779, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'w4W5L2qm', '3539927'), + (70735, 779, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'w4W5L2qm', '3582734'), + (70736, 779, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'w4W5L2qm', '3583262'), + (70737, 779, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'w4W5L2qm', '3619523'), + (70738, 779, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'w4W5L2qm', '3661369'), + (70739, 779, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'w4W5L2qm', '3674262'), + (70740, 779, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'w4W5L2qm', '3677402'), + (70741, 779, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'w4W5L2qm', '3730212'), + (70742, 779, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'w4W5L2qm', '3793156'), + (70743, 779, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'w4W5L2qm', '3974109'), + (70744, 779, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'w4W5L2qm', '3975311'), + (70745, 779, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4W5L2qm', '3975312'), + (70746, 779, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'w4W5L2qm', '3994992'), + (70747, 779, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4W5L2qm', '4014338'), + (70748, 779, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'w4W5L2qm', '4021848'), + (70749, 779, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4W5L2qm', '4136744'), + (70750, 779, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4W5L2qm', '4136937'), + (70751, 779, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4W5L2qm', '4136938'), + (70752, 779, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4W5L2qm', '4136947'), + (70753, 779, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4W5L2qm', '4210314'), + (70754, 779, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4W5L2qm', '4225444'), + (70755, 779, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4W5L2qm', '4239259'), + (70756, 779, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4W5L2qm', '4240316'), + (70757, 779, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4W5L2qm', '4240317'), + (70758, 779, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4W5L2qm', '4240318'), + (70759, 779, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4W5L2qm', '4240320'), + (70760, 779, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4W5L2qm', '4250163'), + (70761, 779, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4W5L2qm', '4275957'), + (70762, 779, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4W5L2qm', '4277819'), + (70763, 779, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4W5L2qm', '4301723'), + (70764, 779, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'w4W5L2qm', '4302093'), + (70765, 779, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4W5L2qm', '4304151'), + (70766, 779, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'w4W5L2qm', '4345519'), + (70767, 779, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'w4W5L2qm', '4356801'), + (70768, 779, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'w4W5L2qm', '4358025'), + (70769, 779, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4W5L2qm', '4366186'), + (70770, 779, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'w4W5L2qm', '4366187'), + (70771, 779, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'w4W5L2qm', '4402823'), + (70772, 779, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'w4W5L2qm', '4420735'), + (70773, 779, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'w4W5L2qm', '4420738'), + (70774, 779, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'w4W5L2qm', '4420739'), + (70775, 779, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'w4W5L2qm', '4420741'), + (70776, 779, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'w4W5L2qm', '4420744'), + (70777, 779, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'w4W5L2qm', '4420747'), + (70778, 779, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'w4W5L2qm', '4420748'), + (70779, 779, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'w4W5L2qm', '4420749'), + (70780, 779, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'w4W5L2qm', '4461883'), + (70781, 779, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'w4W5L2qm', '4508342'), + (70782, 779, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'w4W5L2qm', '4568602'), + (70783, 779, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'w4W5L2qm', '4572153'), + (70784, 779, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'w4W5L2qm', '4585962'), + (70785, 779, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'w4W5L2qm', '4596356'), + (70786, 779, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'w4W5L2qm', '4598860'), + (70787, 779, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'w4W5L2qm', '4598861'), + (70788, 779, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'w4W5L2qm', '4602797'), + (70789, 779, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'w4W5L2qm', '4637896'), + (70790, 779, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'w4W5L2qm', '4642994'), + (70791, 779, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'w4W5L2qm', '4642995'), + (70792, 779, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'w4W5L2qm', '4642996'), + (70793, 779, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'w4W5L2qm', '4642997'), + (70794, 779, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'w4W5L2qm', '4645687'), + (70795, 779, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'w4W5L2qm', '4645698'), + (70796, 779, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'w4W5L2qm', '4645704'), + (70797, 779, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'w4W5L2qm', '4645705'), + (70798, 779, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'w4W5L2qm', '4668385'), + (70799, 779, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'w4W5L2qm', '4694407'), + (70800, 779, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'w4W5L2qm', '4736497'), + (70801, 779, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'w4W5L2qm', '4736499'), + (70802, 779, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'w4W5L2qm', '4736500'), + (70803, 779, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'w4W5L2qm', '4736503'), + (70804, 779, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'w4W5L2qm', '4736504'), + (70805, 779, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'w4W5L2qm', '4746789'), + (70806, 779, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'w4W5L2qm', '4753929'), + (70807, 779, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'w4W5L2qm', '5038850'), + (70808, 779, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'w4W5L2qm', '5045826'), + (70809, 779, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'w4W5L2qm', '5132533'), + (70810, 779, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'w4W5L2qm', '5186582'), + (70811, 779, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'w4W5L2qm', '5186583'), + (70812, 779, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'w4W5L2qm', '5186585'), + (70813, 779, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'w4W5L2qm', '5190437'), + (70814, 779, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'w4W5L2qm', '5215989'), + (70815, 779, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4W5L2qm', '6045684'), + (70816, 781, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd8bw0GBA', '5630961'), + (70817, 781, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd8bw0GBA', '5630962'), + (70818, 781, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd8bw0GBA', '5630966'), + (70819, 781, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd8bw0GBA', '5630967'), + (70820, 781, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd8bw0GBA', '5630968'), + (70821, 781, 1738, 'not_attending', '2022-10-25 17:37:20', '2025-12-17 19:47:14', 'd8bw0GBA', '5638765'), + (70822, 781, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd8bw0GBA', '5640097'), + (70823, 781, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd8bw0GBA', '5642818'), + (70824, 781, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd8bw0GBA', '5671637'), + (70825, 781, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd8bw0GBA', '5672329'), + (70826, 781, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd8bw0GBA', '5674057'), + (70827, 781, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd8bw0GBA', '5674060'), + (70828, 781, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd8bw0GBA', '5677461'), + (70829, 781, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd8bw0GBA', '5698046'), + (70830, 781, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'd8bw0GBA', '5699760'), + (70831, 781, 1786, 'not_attending', '2022-11-08 23:41:29', '2025-12-17 19:47:15', 'd8bw0GBA', '5727232'), + (70832, 781, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd8bw0GBA', '5741601'), + (70833, 781, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd8bw0GBA', '5763458'), + (70834, 781, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd8bw0GBA', '5774172'), + (70835, 781, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8bw0GBA', '6045684'), + (70836, 782, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dOO121nd', '6514659'), + (70837, 782, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dOO121nd', '6514660'), + (70838, 782, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dOO121nd', '6584747'), + (70839, 782, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dOO121nd', '6587097'), + (70840, 782, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', 'dOO121nd', '6596617'), + (70841, 782, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dOO121nd', '6609022'), + (70842, 782, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dOO121nd', '6632757'), + (70843, 782, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dOO121nd', '6644187'), + (70844, 782, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dOO121nd', '6648951'), + (70845, 782, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dOO121nd', '6648952'), + (70846, 782, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'dOO121nd', '6651141'), + (70847, 782, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dOO121nd', '6655401'), + (70848, 782, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dOO121nd', '6661585'), + (70849, 782, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dOO121nd', '6661588'), + (70850, 782, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dOO121nd', '6661589'), + (70851, 782, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dOO121nd', '6699906'), + (70852, 782, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dOO121nd', '6699913'), + (70853, 782, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dOO121nd', '6701109'), + (70854, 782, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dOO121nd', '6705219'), + (70855, 782, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dOO121nd', '6710153'), + (70856, 782, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dOO121nd', '6711552'), + (70857, 782, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dOO121nd', '6711553'), + (70858, 782, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dOO121nd', '6722688'), + (70859, 782, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dOO121nd', '6730620'), + (70860, 782, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dOO121nd', '6730642'), + (70861, 782, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dOO121nd', '6740364'), + (70862, 782, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dOO121nd', '6743829'), + (70863, 782, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dOO121nd', '7030380'), + (70864, 782, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dOO121nd', '7033677'), + (70865, 782, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dOO121nd', '7035415'), + (70866, 782, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dOO121nd', '7044715'), + (70867, 782, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dOO121nd', '7050318'), + (70868, 782, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dOO121nd', '7050319'), + (70869, 782, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dOO121nd', '7050322'), + (70870, 782, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dOO121nd', '7057804'), + (70871, 782, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dOO121nd', '7072824'), + (70872, 782, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dOO121nd', '7074348'), + (70873, 782, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dOO121nd', '7089267'), + (70874, 782, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dOO121nd', '7098747'), + (70875, 782, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dOO121nd', '7113468'), + (70876, 782, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dOO121nd', '7114856'), + (70877, 782, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dOO121nd', '7114951'), + (70878, 782, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dOO121nd', '7114955'), + (70879, 782, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dOO121nd', '7114956'), + (70880, 782, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dOO121nd', '7153615'), + (70881, 782, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dOO121nd', '7159484'), + (70882, 782, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dOO121nd', '7178446'), + (70883, 783, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mjnw1xJm', '4694407'), + (70884, 783, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mjnw1xJm', '4736497'), + (70885, 783, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mjnw1xJm', '4736499'), + (70886, 783, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mjnw1xJm', '4736500'), + (70887, 783, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mjnw1xJm', '4736503'), + (70888, 783, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mjnw1xJm', '4736504'), + (70889, 783, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mjnw1xJm', '4746789'), + (70890, 783, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mjnw1xJm', '4753929'), + (70891, 783, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mjnw1xJm', '5038850'), + (70892, 783, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mjnw1xJm', '5045826'), + (70893, 783, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mjnw1xJm', '5132533'), + (70894, 783, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mjnw1xJm', '5186582'), + (70895, 783, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mjnw1xJm', '5186583'), + (70896, 783, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mjnw1xJm', '5186585'), + (70897, 783, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mjnw1xJm', '5190437'), + (70898, 783, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mjnw1xJm', '5215989'), + (70899, 783, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mjnw1xJm', '6045684'), + (70900, 784, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7114951'), + (70901, 784, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7114956'), + (70902, 784, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7114957'), + (70903, 784, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AYgYJ9Rd', '7153615'), + (70904, 784, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AYgYJ9Rd', '7159484'), + (70905, 784, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7178446'), + (70906, 784, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AYgYJ9Rd', '7220467'), + (70907, 784, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7240354'), + (70908, 784, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7251633'), + (70909, 784, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7265589'), + (70910, 784, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'AYgYJ9Rd', '7281768'), + (70911, 785, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dKPMLzem', '5630966'), + (70912, 785, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dKPMLzem', '5630967'), + (70913, 785, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dKPMLzem', '5630968'), + (70914, 785, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dKPMLzem', '5642818'), + (70915, 785, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dKPMLzem', '5670445'), + (70916, 785, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dKPMLzem', '5699760'), + (70917, 785, 1786, 'not_attending', '2022-11-08 23:41:08', '2025-12-17 19:47:15', 'dKPMLzem', '5727232'), + (70918, 785, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dKPMLzem', '5741601'), + (70919, 785, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dKPMLzem', '5763458'), + (70920, 785, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dKPMLzem', '5774172'), + (70921, 785, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dKPMLzem', '5818247'), + (70922, 785, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dKPMLzem', '5819471'), + (70923, 785, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dKPMLzem', '5827739'), + (70924, 785, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dKPMLzem', '5844306'), + (70925, 785, 1846, 'not_attending', '2022-12-18 18:53:23', '2025-12-17 19:47:04', 'dKPMLzem', '5845237'), + (70926, 785, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dKPMLzem', '5850159'), + (70927, 785, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dKPMLzem', '5858999'), + (70928, 785, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dKPMLzem', '5871984'), + (70929, 785, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dKPMLzem', '5876354'), + (70930, 785, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKPMLzem', '6045684'), + (70931, 786, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dVBkwjqd', '4210314'), + (70932, 786, 901, 'attending', '2021-07-31 17:53:58', '2025-12-17 19:47:40', 'dVBkwjqd', '4240317'), + (70933, 786, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'dVBkwjqd', '4240318'), + (70934, 786, 903, 'maybe', '2021-08-14 18:13:58', '2025-12-17 19:47:42', 'dVBkwjqd', '4240320'), + (70935, 786, 929, 'maybe', '2021-08-05 19:49:21', '2025-12-17 19:47:41', 'dVBkwjqd', '4297223'), + (70936, 786, 934, 'attending', '2021-08-04 20:55:27', '2025-12-17 19:47:40', 'dVBkwjqd', '4302093'), + (70937, 786, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dVBkwjqd', '4304151'), + (70938, 786, 939, 'maybe', '2021-08-01 02:30:25', '2025-12-17 19:47:40', 'dVBkwjqd', '4308354'), + (70939, 786, 944, 'attending', '2021-08-08 19:40:02', '2025-12-17 19:47:41', 'dVBkwjqd', '4310980'), + (70940, 786, 945, 'maybe', '2021-08-15 19:21:03', '2025-12-17 19:47:42', 'dVBkwjqd', '4310981'), + (70941, 786, 947, 'maybe', '2021-08-06 14:31:33', '2025-12-17 19:47:41', 'dVBkwjqd', '4315713'), + (70942, 786, 948, 'attending', '2021-08-11 18:14:40', '2025-12-17 19:47:41', 'dVBkwjqd', '4315714'), + (70943, 786, 956, 'attending', '2021-08-03 19:50:55', '2025-12-17 19:47:40', 'dVBkwjqd', '4331968'), + (70944, 786, 960, 'attending', '2021-08-11 23:14:03', '2025-12-17 19:47:41', 'dVBkwjqd', '4344519'), + (70945, 786, 969, 'maybe', '2021-08-11 23:34:29', '2025-12-17 19:47:42', 'dVBkwjqd', '4356699'), + (70946, 786, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dVBkwjqd', '4356801'), + (70947, 786, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dVBkwjqd', '4366186'), + (70948, 786, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dVBkwjqd', '4366187'), + (70949, 786, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dVBkwjqd', '4420735'), + (70950, 786, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dVBkwjqd', '4420738'), + (70951, 786, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dVBkwjqd', '4420739'), + (70952, 786, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dVBkwjqd', '4420741'), + (70953, 786, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dVBkwjqd', '4420744'), + (70954, 786, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dVBkwjqd', '4420747'), + (70955, 786, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dVBkwjqd', '4420748'), + (70956, 786, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dVBkwjqd', '4420749'), + (70957, 786, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dVBkwjqd', '4461883'), + (70958, 786, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dVBkwjqd', '4508342'), + (70959, 786, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBkwjqd', '6045684'), + (70960, 787, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '4vrBGVb4', '7869188'), + (70961, 787, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '4vrBGVb4', '7877465'), + (70962, 787, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', '4vrBGVb4', '7878570'), + (70963, 787, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', '4vrBGVb4', '7880977'), + (70964, 787, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '4vrBGVb4', '7888250'), + (70965, 787, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', '4vrBGVb4', '7897784'), + (70966, 787, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', '4vrBGVb4', '7903856'), + (70967, 787, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', '4vrBGVb4', '8347770'), + (70968, 787, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4vrBGVb4', '8349164'), + (70969, 787, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4vrBGVb4', '8349545'), + (70970, 787, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4vrBGVb4', '8353584'), + (70971, 788, 2125, 'attending', '2023-07-04 23:56:05', '2025-12-17 19:46:51', 'daOLN7ZA', '6177485'), + (70972, 788, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'daOLN7ZA', '6182410'), + (70973, 788, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'daOLN7ZA', '6185812'), + (70974, 788, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'daOLN7ZA', '6187651'), + (70975, 788, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'daOLN7ZA', '6187963'), + (70976, 788, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'daOLN7ZA', '6187964'), + (70977, 788, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'daOLN7ZA', '6187966'), + (70978, 788, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'daOLN7ZA', '6187967'), + (70979, 788, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'daOLN7ZA', '6187969'), + (70980, 788, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'daOLN7ZA', '6334878'), + (70981, 788, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'daOLN7ZA', '6337236'), + (70982, 788, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'daOLN7ZA', '6337970'), + (70983, 788, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'daOLN7ZA', '6338308'), + (70984, 788, 2157, 'not_attending', '2023-07-12 21:55:24', '2025-12-17 19:46:52', 'daOLN7ZA', '6338342'), + (70985, 788, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'daOLN7ZA', '6341710'), + (70986, 788, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'daOLN7ZA', '6342044'), + (70987, 788, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'daOLN7ZA', '6342298'), + (70988, 788, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'daOLN7ZA', '6343294'), + (70989, 788, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'daOLN7ZA', '6347034'), + (70990, 788, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'daOLN7ZA', '6347056'), + (70991, 788, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'daOLN7ZA', '6353830'), + (70992, 788, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'daOLN7ZA', '6353831'), + (70993, 788, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'daOLN7ZA', '6357867'), + (70994, 788, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'daOLN7ZA', '6358652'), + (70995, 788, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'daOLN7ZA', '6358668'), + (70996, 788, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'daOLN7ZA', '6358669'), + (70997, 788, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'daOLN7ZA', '6361709'), + (70998, 788, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'daOLN7ZA', '6361710'), + (70999, 788, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'daOLN7ZA', '6361711'), + (71000, 788, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'daOLN7ZA', '6361712'), + (71001, 788, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'daOLN7ZA', '6361713'), + (71002, 788, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'daOLN7ZA', '6382573'), + (71003, 788, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'daOLN7ZA', '6388604'), + (71004, 788, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'daOLN7ZA', '6394629'), + (71005, 788, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'daOLN7ZA', '6394631'), + (71006, 788, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'daOLN7ZA', '6440863'), + (71007, 788, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'daOLN7ZA', '6445440'), + (71008, 788, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'daOLN7ZA', '6453951'), + (71009, 788, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'daOLN7ZA', '6461696'), + (71010, 788, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'daOLN7ZA', '6462129'), + (71011, 788, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'daOLN7ZA', '6463218'), + (71012, 788, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'daOLN7ZA', '6472181'), + (71013, 788, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'daOLN7ZA', '6482693'), + (71014, 788, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'daOLN7ZA', '6484200'), + (71015, 788, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'daOLN7ZA', '6484680'), + (71016, 788, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'daOLN7ZA', '6507741'), + (71017, 788, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'daOLN7ZA', '6514659'), + (71018, 788, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'daOLN7ZA', '6514660'), + (71019, 788, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'daOLN7ZA', '6519103'), + (71020, 788, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'daOLN7ZA', '6535681'), + (71021, 788, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'daOLN7ZA', '6584747'), + (71022, 788, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'daOLN7ZA', '6587097'), + (71023, 788, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'daOLN7ZA', '6609022'), + (71024, 788, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'daOLN7ZA', '6632757'), + (71025, 788, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'daOLN7ZA', '6644187'), + (71026, 788, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'daOLN7ZA', '6648951'), + (71027, 788, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'daOLN7ZA', '6648952'), + (71028, 788, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'daOLN7ZA', '6655401'), + (71029, 788, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'daOLN7ZA', '6661585'), + (71030, 788, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'daOLN7ZA', '6661588'), + (71031, 788, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'daOLN7ZA', '6661589'), + (71032, 788, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'daOLN7ZA', '6699906'), + (71033, 788, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'daOLN7ZA', '6701109'), + (71034, 788, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'daOLN7ZA', '6704561'), + (71035, 788, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'daOLN7ZA', '6705219'), + (71036, 788, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'daOLN7ZA', '6708410'), + (71037, 788, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'daOLN7ZA', '6710153'), + (71038, 788, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'daOLN7ZA', '6711552'), + (71039, 788, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'daOLN7ZA', '6711553'), + (71040, 789, 24, 'attending', '2020-06-21 20:15:26', '2025-12-17 19:47:55', 'bdzpw7VA', '2958068'), + (71041, 789, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'bdzpw7VA', '3034321'), + (71042, 789, 201, 'not_attending', '2020-06-22 21:19:36', '2025-12-17 19:47:55', 'bdzpw7VA', '3088653'), + (71043, 789, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'bdzpw7VA', '3106813'), + (71044, 789, 223, 'attending', '2020-09-12 04:27:08', '2025-12-17 19:47:56', 'bdzpw7VA', '3129980'), + (71045, 789, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'bdzpw7VA', '3132817'), + (71046, 789, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'bdzpw7VA', '3132820'), + (71047, 789, 240, 'attending', '2020-09-07 04:15:11', '2025-12-17 19:47:56', 'bdzpw7VA', '3149471'), + (71048, 789, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'bdzpw7VA', '3155321'), + (71049, 789, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'bdzpw7VA', '3162006'), + (71050, 789, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'bdzpw7VA', '3163442'), + (71051, 789, 311, 'attending', '2020-09-18 20:09:15', '2025-12-17 19:47:56', 'bdzpw7VA', '3186057'), + (71052, 789, 339, 'not_attending', '2020-09-09 19:11:01', '2025-12-17 19:47:56', 'bdzpw7VA', '3204469'), + (71053, 789, 347, 'attending', '2020-09-24 22:46:22', '2025-12-17 19:47:51', 'bdzpw7VA', '3207930'), + (71054, 789, 348, 'attending', '2020-09-13 03:15:57', '2025-12-17 19:47:52', 'bdzpw7VA', '3209159'), + (71055, 789, 350, 'attending', '2020-09-12 04:26:56', '2025-12-17 19:47:56', 'bdzpw7VA', '3209255'), + (71056, 789, 362, 'attending', '2020-09-26 02:24:34', '2025-12-17 19:47:52', 'bdzpw7VA', '3214207'), + (71057, 789, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'bdzpw7VA', '3217037'), + (71058, 789, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'bdzpw7VA', '3218510'), + (71059, 789, 366, 'attending', '2020-09-22 20:50:57', '2025-12-17 19:47:56', 'bdzpw7VA', '3219750'), + (71060, 789, 373, 'not_attending', '2020-10-22 18:41:08', '2025-12-17 19:47:52', 'bdzpw7VA', '3221413'), + (71061, 789, 375, 'attending', '2020-10-08 16:56:27', '2025-12-17 19:47:52', 'bdzpw7VA', '3222825'), + (71062, 789, 385, 'attending', '2020-10-03 23:09:20', '2025-12-17 19:47:52', 'bdzpw7VA', '3228698'), + (71063, 789, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'bdzpw7VA', '3228699'), + (71064, 789, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'bdzpw7VA', '3228700'), + (71065, 789, 388, 'attending', '2020-10-24 15:59:55', '2025-12-17 19:47:52', 'bdzpw7VA', '3228701'), + (71066, 789, 412, 'attending', '2020-10-05 11:58:38', '2025-12-17 19:47:52', 'bdzpw7VA', '3236636'), + (71067, 789, 415, 'attending', '2020-10-12 23:08:24', '2025-12-17 19:47:52', 'bdzpw7VA', '3238044'), + (71068, 789, 418, 'attending', '2020-10-12 23:16:36', '2025-12-17 19:47:52', 'bdzpw7VA', '3241728'), + (71069, 789, 419, 'attending', '2020-10-12 23:16:49', '2025-12-17 19:47:52', 'bdzpw7VA', '3242234'), + (71070, 789, 424, 'attending', '2020-10-14 17:17:50', '2025-12-17 19:47:52', 'bdzpw7VA', '3245751'), + (71071, 789, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'bdzpw7VA', '3250232'), + (71072, 789, 435, 'attending', '2020-10-20 21:44:45', '2025-12-17 19:47:52', 'bdzpw7VA', '3254790'), + (71073, 789, 439, 'attending', '2020-10-28 17:01:44', '2025-12-17 19:47:53', 'bdzpw7VA', '3256164'), + (71074, 789, 440, 'attending', '2020-11-07 16:11:48', '2025-12-17 19:47:53', 'bdzpw7VA', '3256168'), + (71075, 789, 441, 'attending', '2020-11-14 18:29:07', '2025-12-17 19:47:54', 'bdzpw7VA', '3256169'), + (71076, 789, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'bdzpw7VA', '3263578'), + (71077, 789, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'bdzpw7VA', '3266138'), + (71078, 789, 449, 'attending', '2020-11-04 17:54:23', '2025-12-17 19:47:53', 'bdzpw7VA', '3272055'), + (71079, 789, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'bdzpw7VA', '3276428'), + (71080, 789, 457, 'not_attending', '2020-11-07 23:11:27', '2025-12-17 19:47:53', 'bdzpw7VA', '3279087'), + (71081, 789, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'bdzpw7VA', '3281467'), + (71082, 789, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'bdzpw7VA', '3281470'), + (71083, 789, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'bdzpw7VA', '3281829'), + (71084, 789, 468, 'not_attending', '2020-11-21 23:37:31', '2025-12-17 19:47:54', 'bdzpw7VA', '3285413'), + (71085, 789, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'bdzpw7VA', '3285414'), + (71086, 789, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'bdzpw7VA', '3297764'), + (71087, 789, 493, 'not_attending', '2020-12-06 00:03:45', '2025-12-17 19:47:54', 'bdzpw7VA', '3313856'), + (71088, 789, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'bdzpw7VA', '3314909'), + (71089, 789, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'bdzpw7VA', '3314964'), + (71090, 789, 502, 'attending', '2020-12-13 00:00:39', '2025-12-17 19:47:55', 'bdzpw7VA', '3323365'), + (71091, 789, 513, 'not_attending', '2020-12-20 00:52:14', '2025-12-17 19:47:55', 'bdzpw7VA', '3329383'), + (71092, 789, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'bdzpw7VA', '3351539'), + (71093, 789, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'bdzpw7VA', '3386848'), + (71094, 789, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'bdzpw7VA', '3389527'), + (71095, 789, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'bdzpw7VA', '3396499'), + (71096, 789, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'bdzpw7VA', '3403650'), + (71097, 789, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'bdzpw7VA', '3406988'), + (71098, 789, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'bdzpw7VA', '3416576'), + (71099, 789, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'bdzpw7VA', '3418925'), + (71100, 789, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzpw7VA', '6045684'), + (71101, 790, 901, 'attending', '2021-07-27 22:19:17', '2025-12-17 19:47:40', 'd3R7WbD4', '4240317'), + (71102, 790, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'd3R7WbD4', '4240318'), + (71103, 790, 933, 'attending', '2021-07-27 22:20:34', '2025-12-17 19:47:40', 'd3R7WbD4', '4301723'), + (71104, 790, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'd3R7WbD4', '4302093'), + (71105, 790, 940, 'not_attending', '2021-07-30 16:29:52', '2025-12-17 19:47:40', 'd3R7WbD4', '4309049'), + (71106, 790, 947, 'attending', '2021-07-28 04:31:26', '2025-12-17 19:47:41', 'd3R7WbD4', '4315713'), + (71107, 790, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd3R7WbD4', '6045684'), + (71108, 791, 2448, 'attending', '2024-03-29 22:59:36', '2025-12-17 19:46:33', 'dljLEeBA', '6734371'), + (71109, 791, 2498, 'attending', '2024-03-20 21:15:20', '2025-12-17 19:46:33', 'dljLEeBA', '7057662'), + (71110, 791, 2507, 'not_attending', '2024-03-18 21:23:07', '2025-12-17 19:46:33', 'dljLEeBA', '7072824'), + (71111, 791, 2509, 'not_attending', '2024-03-25 02:26:23', '2025-12-17 19:46:33', 'dljLEeBA', '7074349'), + (71112, 791, 2512, 'attending', '2024-03-31 02:22:54', '2025-12-17 19:46:33', 'dljLEeBA', '7074352'), + (71113, 791, 2513, 'attending', '2024-04-18 04:16:16', '2025-12-17 19:46:34', 'dljLEeBA', '7074353'), + (71114, 791, 2516, 'not_attending', '2024-04-29 20:43:43', '2025-12-17 19:46:35', 'dljLEeBA', '7074356'), + (71115, 791, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dljLEeBA', '7074364'), + (71116, 791, 2528, 'not_attending', '2024-08-04 02:04:59', '2025-12-17 19:46:31', 'dljLEeBA', '7074368'), + (71117, 791, 2529, 'maybe', '2024-05-23 20:11:27', '2025-12-17 19:46:35', 'dljLEeBA', '7074369'), + (71118, 791, 2536, 'attending', '2024-03-18 02:02:47', '2025-12-17 19:46:33', 'dljLEeBA', '7077689'), + (71119, 791, 2538, 'attending', '2024-03-25 02:25:59', '2025-12-17 19:46:33', 'dljLEeBA', '7085485'), + (71120, 791, 2539, 'attending', '2024-03-31 02:23:14', '2025-12-17 19:46:33', 'dljLEeBA', '7085486'), + (71121, 791, 2542, 'attending', '2024-03-23 22:46:38', '2025-12-17 19:46:33', 'dljLEeBA', '7090025'), + (71122, 791, 2547, 'maybe', '2024-03-25 02:24:42', '2025-12-17 19:46:33', 'dljLEeBA', '7096945'), + (71123, 791, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dljLEeBA', '7098747'), + (71124, 791, 2551, 'attending', '2024-03-28 23:58:15', '2025-12-17 19:46:33', 'dljLEeBA', '7109912'), + (71125, 791, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dljLEeBA', '7113468'), + (71126, 791, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dljLEeBA', '7114856'), + (71127, 791, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dljLEeBA', '7114951'), + (71128, 791, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dljLEeBA', '7114955'), + (71129, 791, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dljLEeBA', '7114956'), + (71130, 791, 2558, 'attending', '2024-04-29 20:43:52', '2025-12-17 19:46:35', 'dljLEeBA', '7114957'), + (71131, 791, 2562, 'attending', '2024-04-02 23:23:28', '2025-12-17 19:46:33', 'dljLEeBA', '7134552'), + (71132, 791, 2563, 'attending', '2024-04-05 23:15:16', '2025-12-17 19:46:33', 'dljLEeBA', '7134734'), + (71133, 791, 2568, 'attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dljLEeBA', '7153615'), + (71134, 791, 2571, 'attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dljLEeBA', '7159484'), + (71135, 791, 2575, 'maybe', '2024-04-12 22:39:09', '2025-12-17 19:46:33', 'dljLEeBA', '7164534'), + (71136, 791, 2580, 'maybe', '2024-04-14 01:59:53', '2025-12-17 19:46:34', 'dljLEeBA', '7167272'), + (71137, 791, 2584, 'attending', '2024-04-21 01:30:10', '2025-12-17 19:46:34', 'dljLEeBA', '7175057'), + (71138, 791, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dljLEeBA', '7178446'), + (71139, 791, 2600, 'not_attending', '2024-04-29 20:43:05', '2025-12-17 19:46:35', 'dljLEeBA', '7196794'), + (71140, 791, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dljLEeBA', '7220467'), + (71141, 791, 2605, 'attending', '2024-04-28 17:40:46', '2025-12-17 19:46:35', 'dljLEeBA', '7229243'), + (71142, 791, 2609, 'maybe', '2024-05-06 20:55:01', '2025-12-17 19:46:35', 'dljLEeBA', '7240354'), + (71143, 791, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dljLEeBA', '7251633'), + (71144, 791, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dljLEeBA', '7263048'), + (71145, 791, 2626, 'attending', '2024-05-15 03:10:25', '2025-12-17 19:46:35', 'dljLEeBA', '7264723'), + (71146, 791, 2627, 'attending', '2024-05-23 20:11:15', '2025-12-17 19:46:35', 'dljLEeBA', '7264724'), + (71147, 791, 2628, 'attending', '2024-05-27 17:05:01', '2025-12-17 19:46:36', 'dljLEeBA', '7264725'), + (71148, 791, 2644, 'attending', '2024-05-21 23:19:16', '2025-12-17 19:46:35', 'dljLEeBA', '7279039'), + (71149, 791, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dljLEeBA', '7302674'), + (71150, 791, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dljLEeBA', '7324073'), + (71151, 791, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dljLEeBA', '7324074'), + (71152, 791, 2690, 'attending', '2024-07-06 23:54:17', '2025-12-17 19:46:30', 'dljLEeBA', '7324075'), + (71153, 791, 2691, 'attending', '2024-07-14 02:00:01', '2025-12-17 19:46:30', 'dljLEeBA', '7324076'), + (71154, 791, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dljLEeBA', '7324078'), + (71155, 791, 2694, 'attending', '2024-08-04 02:05:09', '2025-12-17 19:46:31', 'dljLEeBA', '7324079'), + (71156, 791, 2695, 'not_attending', '2024-08-16 04:38:45', '2025-12-17 19:46:31', 'dljLEeBA', '7324080'), + (71157, 791, 2696, 'attending', '2024-08-17 19:03:07', '2025-12-17 19:46:32', 'dljLEeBA', '7324081'), + (71158, 791, 2697, 'not_attending', '2024-08-31 03:05:06', '2025-12-17 19:46:32', 'dljLEeBA', '7324082'), + (71159, 791, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dljLEeBA', '7331457'), + (71160, 791, 2747, 'attending', '2024-07-16 20:42:42', '2025-12-17 19:46:30', 'dljLEeBA', '7353587'), + (71161, 791, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dljLEeBA', '7356752'), + (71162, 791, 2758, 'attending', '2024-07-14 01:59:44', '2025-12-17 19:46:30', 'dljLEeBA', '7358837'), + (71163, 791, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dljLEeBA', '7363595'), + (71164, 791, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dljLEeBA', '7363643'), + (71165, 791, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dljLEeBA', '7368606'), + (71166, 791, 2788, 'maybe', '2024-08-04 02:04:16', '2025-12-17 19:46:31', 'dljLEeBA', '7384036'), + (71167, 791, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dljLEeBA', '7397462'), + (71168, 791, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dljLEeBA', '7424275'), + (71169, 791, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dljLEeBA', '7424276'), + (71170, 791, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dljLEeBA', '7432751'), + (71171, 791, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dljLEeBA', '7432752'), + (71172, 791, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dljLEeBA', '7432753'), + (71173, 791, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dljLEeBA', '7432754'), + (71174, 791, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dljLEeBA', '7432755'), + (71175, 791, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dljLEeBA', '7432756'), + (71176, 791, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dljLEeBA', '7432758'), + (71177, 791, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dljLEeBA', '7432759'), + (71178, 791, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dljLEeBA', '7433834'), + (71179, 791, 2856, 'attending', '2024-10-08 18:14:11', '2025-12-17 19:46:26', 'dljLEeBA', '7469386'), + (71180, 791, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dljLEeBA', '7470197'), + (71181, 791, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dljLEeBA', '7685613'), + (71182, 791, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dljLEeBA', '7688194'), + (71183, 791, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dljLEeBA', '7688196'), + (71184, 791, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dljLEeBA', '7688289'), + (71185, 791, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dljLEeBA', '7692763'), + (71186, 791, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dljLEeBA', '7697552'), + (71187, 791, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dljLEeBA', '7699878'), + (71188, 791, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dljLEeBA', '7704043'), + (71189, 791, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dljLEeBA', '7712467'), + (71190, 791, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dljLEeBA', '7713585'), + (71191, 791, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dljLEeBA', '7713586'), + (71192, 791, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dljLEeBA', '7738518'), + (71193, 791, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dljLEeBA', '7750636'), + (71194, 791, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dljLEeBA', '7796540'), + (71195, 791, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dljLEeBA', '7796541'), + (71196, 791, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dljLEeBA', '7796542'), + (71197, 792, 256, 'attending', '2021-05-02 16:54:21', '2025-12-17 19:47:46', 'VmMVyWbA', '3149487'), + (71198, 792, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'VmMVyWbA', '3149489'), + (71199, 792, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'VmMVyWbA', '3149491'), + (71200, 792, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'VmMVyWbA', '3236450'), + (71201, 792, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'VmMVyWbA', '3236452'), + (71202, 792, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'VmMVyWbA', '3539920'), + (71203, 792, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'VmMVyWbA', '3539921'), + (71204, 792, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'VmMVyWbA', '3539922'), + (71205, 792, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'VmMVyWbA', '3539923'), + (71206, 792, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'VmMVyWbA', '3793156'), + (71207, 792, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'VmMVyWbA', '3806392'), + (71208, 792, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'VmMVyWbA', '3963335'), + (71209, 792, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'VmMVyWbA', '3974109'), + (71210, 792, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VmMVyWbA', '3975311'), + (71211, 792, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VmMVyWbA', '3975312'), + (71212, 792, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VmMVyWbA', '3994992'), + (71213, 792, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VmMVyWbA', '4014338'), + (71214, 792, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmMVyWbA', '4136744'), + (71215, 792, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMVyWbA', '6045684'), + (71216, 793, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mb1JLe6d', '6361711'), + (71217, 793, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mb1JLe6d', '6361713'), + (71218, 793, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mb1JLe6d', '6388604'), + (71219, 793, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mb1JLe6d', '6394629'), + (71220, 793, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mb1JLe6d', '6394631'), + (71221, 793, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mb1JLe6d', '6431478'), + (71222, 794, 2189, 'maybe', '2023-08-05 03:37:48', '2025-12-17 19:46:54', '4090MrKd', '6357867'), + (71223, 794, 2191, 'attending', '2023-08-05 00:08:53', '2025-12-17 19:46:54', '4090MrKd', '6358652'), + (71224, 794, 2200, 'attending', '2023-08-10 20:13:20', '2025-12-17 19:46:55', '4090MrKd', '6359850'), + (71225, 794, 2203, 'attending', '2023-08-10 20:15:19', '2025-12-17 19:46:55', '4090MrKd', '6361524'), + (71226, 794, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', '4090MrKd', '6361709'), + (71227, 794, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4090MrKd', '6361710'), + (71228, 794, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4090MrKd', '6361711'), + (71229, 794, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4090MrKd', '6361712'), + (71230, 794, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4090MrKd', '6361713'), + (71231, 794, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4090MrKd', '6382573'), + (71232, 794, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4090MrKd', '6388604'), + (71233, 794, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4090MrKd', '6394629'), + (71234, 794, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4090MrKd', '6394631'), + (71235, 794, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4090MrKd', '6440863'), + (71236, 794, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4090MrKd', '6445440'), + (71237, 794, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4090MrKd', '6453951'), + (71238, 794, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4090MrKd', '6461696'), + (71239, 794, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4090MrKd', '6462129'), + (71240, 794, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4090MrKd', '6463218'), + (71241, 794, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4090MrKd', '6472181'), + (71242, 794, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4090MrKd', '6482693'), + (71243, 794, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4090MrKd', '6484200'), + (71244, 794, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4090MrKd', '6484680'), + (71245, 794, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4090MrKd', '6507741'), + (71246, 794, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4090MrKd', '6514659'), + (71247, 794, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4090MrKd', '6514660'), + (71248, 794, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4090MrKd', '6519103'), + (71249, 794, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4090MrKd', '6535681'), + (71250, 794, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4090MrKd', '6584747'), + (71251, 794, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4090MrKd', '6587097'), + (71252, 794, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4090MrKd', '6609022'), + (71253, 794, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4090MrKd', '6632757'), + (71254, 794, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4090MrKd', '6644187'), + (71255, 794, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4090MrKd', '6648951'), + (71256, 794, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4090MrKd', '6648952'), + (71257, 794, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4090MrKd', '6655401'), + (71258, 794, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4090MrKd', '6661585'), + (71259, 794, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4090MrKd', '6661588'), + (71260, 794, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4090MrKd', '6661589'), + (71261, 794, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4090MrKd', '6699906'), + (71262, 794, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4090MrKd', '6701109'), + (71263, 794, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4090MrKd', '6705219'), + (71264, 794, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4090MrKd', '6710153'), + (71265, 794, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4090MrKd', '6711552'), + (71266, 794, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4090MrKd', '6711553'), + (71267, 795, 665, 'not_attending', '2021-09-01 00:30:26', '2025-12-17 19:47:43', 'nda9aXVd', '3547143'), + (71268, 795, 667, 'not_attending', '2021-08-28 14:11:27', '2025-12-17 19:47:42', 'nda9aXVd', '3547145'), + (71269, 795, 850, 'maybe', '2021-08-22 17:33:27', '2025-12-17 19:47:42', 'nda9aXVd', '4015722'), + (71270, 795, 854, 'maybe', '2021-09-03 21:06:26', '2025-12-17 19:47:43', 'nda9aXVd', '4015726'), + (71271, 795, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'nda9aXVd', '4136947'), + (71272, 795, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nda9aXVd', '4210314'), + (71273, 795, 900, 'attending', '2021-07-24 16:57:35', '2025-12-17 19:47:40', 'nda9aXVd', '4240316'), + (71274, 795, 901, 'attending', '2021-07-28 01:59:06', '2025-12-17 19:47:40', 'nda9aXVd', '4240317'), + (71275, 795, 902, 'attending', '2021-08-02 14:32:50', '2025-12-17 19:47:41', 'nda9aXVd', '4240318'), + (71276, 795, 903, 'attending', '2021-08-12 14:39:32', '2025-12-17 19:47:42', 'nda9aXVd', '4240320'), + (71277, 795, 916, 'attending', '2021-07-22 22:29:41', '2025-12-17 19:47:40', 'nda9aXVd', '4273772'), + (71278, 795, 917, 'attending', '2021-07-16 19:03:11', '2025-12-17 19:47:39', 'nda9aXVd', '4274481'), + (71279, 795, 919, 'attending', '2021-07-16 16:29:41', '2025-12-17 19:47:39', 'nda9aXVd', '4275957'), + (71280, 795, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nda9aXVd', '4277819'), + (71281, 795, 921, 'maybe', '2021-07-16 16:29:34', '2025-12-17 19:47:39', 'nda9aXVd', '4278368'), + (71282, 795, 933, 'not_attending', '2021-07-28 22:51:44', '2025-12-17 19:47:40', 'nda9aXVd', '4301723'), + (71283, 795, 934, 'not_attending', '2021-08-04 22:01:46', '2025-12-17 19:47:41', 'nda9aXVd', '4302093'), + (71284, 795, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nda9aXVd', '4304151'), + (71285, 795, 946, 'attending', '2021-08-02 03:00:25', '2025-12-17 19:47:40', 'nda9aXVd', '4314835'), + (71286, 795, 951, 'not_attending', '2021-08-28 14:11:32', '2025-12-17 19:47:43', 'nda9aXVd', '4315731'), + (71287, 795, 952, 'not_attending', '2021-08-05 21:16:32', '2025-12-17 19:47:41', 'nda9aXVd', '4318286'), + (71288, 795, 955, 'attending', '2021-08-06 01:18:21', '2025-12-17 19:47:41', 'nda9aXVd', '4331588'), + (71289, 795, 958, 'attending', '2021-08-07 01:12:51', '2025-12-17 19:47:41', 'nda9aXVd', '4342996'), + (71290, 795, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'nda9aXVd', '4345519'), + (71291, 795, 963, 'attending', '2021-08-12 14:41:39', '2025-12-17 19:47:42', 'nda9aXVd', '4353159'), + (71292, 795, 964, 'attending', '2021-08-23 22:57:09', '2025-12-17 19:47:42', 'nda9aXVd', '4353160'), + (71293, 795, 965, 'maybe', '2021-08-19 02:55:28', '2025-12-17 19:47:42', 'nda9aXVd', '4353703'), + (71294, 795, 971, 'maybe', '2021-09-08 22:57:37', '2025-12-17 19:47:43', 'nda9aXVd', '4356801'), + (71295, 795, 972, 'attending', '2021-08-19 02:53:21', '2025-12-17 19:47:42', 'nda9aXVd', '4358025'), + (71296, 795, 973, 'maybe', '2021-08-21 22:25:06', '2025-12-17 19:47:42', 'nda9aXVd', '4366186'), + (71297, 795, 974, 'attending', '2021-08-24 02:16:25', '2025-12-17 19:47:42', 'nda9aXVd', '4366187'), + (71298, 795, 977, 'attending', '2021-08-19 02:53:17', '2025-12-17 19:47:42', 'nda9aXVd', '4378479'), + (71299, 795, 980, 'attending', '2021-08-21 18:44:07', '2025-12-17 19:47:42', 'nda9aXVd', '4380358'), + (71300, 795, 982, 'not_attending', '2021-08-28 14:11:17', '2025-12-17 19:47:42', 'nda9aXVd', '4389739'), + (71301, 795, 987, 'not_attending', '2021-09-01 22:53:11', '2025-12-17 19:47:43', 'nda9aXVd', '4402634'), + (71302, 795, 988, 'not_attending', '2021-08-26 15:49:27', '2025-12-17 19:47:42', 'nda9aXVd', '4402823'), + (71303, 795, 989, 'not_attending', '2021-09-05 15:08:43', '2025-12-17 19:47:43', 'nda9aXVd', '4414282'), + (71304, 795, 990, 'attending', '2021-09-01 00:30:23', '2025-12-17 19:47:43', 'nda9aXVd', '4420735'), + (71305, 795, 991, 'not_attending', '2021-09-11 22:48:32', '2025-12-17 19:47:43', 'nda9aXVd', '4420738'), + (71306, 795, 992, 'attending', '2021-09-12 14:31:12', '2025-12-17 19:47:33', 'nda9aXVd', '4420739'), + (71307, 795, 993, 'not_attending', '2021-09-20 16:14:36', '2025-12-17 19:47:34', 'nda9aXVd', '4420741'), + (71308, 795, 994, 'not_attending', '2021-10-02 23:31:18', '2025-12-17 19:47:34', 'nda9aXVd', '4420742'), + (71309, 795, 995, 'not_attending', '2021-10-07 10:42:29', '2025-12-17 19:47:34', 'nda9aXVd', '4420744'), + (71310, 795, 996, 'not_attending', '2021-10-16 21:51:09', '2025-12-17 19:47:35', 'nda9aXVd', '4420747'), + (71311, 795, 997, 'attending', '2021-10-23 21:09:34', '2025-12-17 19:47:35', 'nda9aXVd', '4420748'), + (71312, 795, 998, 'attending', '2021-10-30 21:54:59', '2025-12-17 19:47:36', 'nda9aXVd', '4420749'), + (71313, 795, 999, 'not_attending', '2021-09-01 00:28:53', '2025-12-17 19:47:43', 'nda9aXVd', '4421150'), + (71314, 795, 1000, 'not_attending', '2021-09-01 00:29:44', '2025-12-17 19:47:43', 'nda9aXVd', '4424456'), + (71315, 795, 1001, 'maybe', '2021-09-01 00:29:53', '2025-12-17 19:47:43', 'nda9aXVd', '4424687'), + (71316, 795, 1003, 'not_attending', '2021-09-05 15:07:39', '2025-12-17 19:47:43', 'nda9aXVd', '4438802'), + (71317, 795, 1004, 'not_attending', '2021-09-06 17:30:17', '2025-12-17 19:47:43', 'nda9aXVd', '4438804'), + (71318, 795, 1006, 'not_attending', '2021-09-26 18:29:09', '2025-12-17 19:47:34', 'nda9aXVd', '4438808'), + (71319, 795, 1013, 'not_attending', '2021-09-07 21:56:29', '2025-12-17 19:47:43', 'nda9aXVd', '4438817'), + (71320, 795, 1014, 'not_attending', '2021-09-03 21:06:51', '2025-12-17 19:47:43', 'nda9aXVd', '4439233'), + (71321, 795, 1015, 'not_attending', '2021-09-18 21:06:32', '2025-12-17 19:47:43', 'nda9aXVd', '4440800'), + (71322, 795, 1016, 'not_attending', '2021-09-09 22:16:02', '2025-12-17 19:47:43', 'nda9aXVd', '4441271'), + (71323, 795, 1017, 'attending', '2021-09-03 21:07:03', '2025-12-17 19:47:43', 'nda9aXVd', '4441822'), + (71324, 795, 1019, 'not_attending', '2021-09-16 23:04:27', '2025-12-17 19:47:43', 'nda9aXVd', '4450515'), + (71325, 795, 1020, 'not_attending', '2021-09-13 23:01:02', '2025-12-17 19:47:43', 'nda9aXVd', '4451787'), + (71326, 795, 1021, 'not_attending', '2021-09-20 22:04:32', '2025-12-17 19:47:34', 'nda9aXVd', '4451803'), + (71327, 795, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nda9aXVd', '4461883'), + (71328, 795, 1032, 'not_attending', '2021-09-26 20:56:45', '2025-12-17 19:47:34', 'nda9aXVd', '4473825'), + (71329, 795, 1034, 'maybe', '2021-09-18 18:48:35', '2025-12-17 19:47:43', 'nda9aXVd', '4486265'), + (71330, 795, 1036, 'attending', '2021-09-20 16:15:46', '2025-12-17 19:47:34', 'nda9aXVd', '4493166'), + (71331, 795, 1050, 'not_attending', '2022-01-26 23:17:06', '2025-12-17 19:47:32', 'nda9aXVd', '4496615'), + (71332, 795, 1051, 'not_attending', '2022-01-31 04:52:12', '2025-12-17 19:47:32', 'nda9aXVd', '4496616'), + (71333, 795, 1053, 'not_attending', '2022-02-09 13:49:43', '2025-12-17 19:47:32', 'nda9aXVd', '4496618'), + (71334, 795, 1058, 'maybe', '2022-02-09 13:51:43', '2025-12-17 19:47:33', 'nda9aXVd', '4496625'), + (71335, 795, 1059, 'not_attending', '2022-03-07 21:06:35', '2025-12-17 19:47:33', 'nda9aXVd', '4496626'), + (71336, 795, 1060, 'maybe', '2022-03-25 13:07:33', '2025-12-17 19:47:25', 'nda9aXVd', '4496627'), + (71337, 795, 1061, 'not_attending', '2022-02-09 13:48:55', '2025-12-17 19:47:32', 'nda9aXVd', '4496628'), + (71338, 795, 1062, 'not_attending', '2022-02-27 05:52:25', '2025-12-17 19:47:33', 'nda9aXVd', '4496629'), + (71339, 795, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nda9aXVd', '4508342'), + (71340, 795, 1068, 'maybe', '2021-09-26 18:28:51', '2025-12-17 19:47:34', 'nda9aXVd', '4511471'), + (71341, 795, 1070, 'not_attending', '2021-09-26 18:29:04', '2025-12-17 19:47:34', 'nda9aXVd', '4512562'), + (71342, 795, 1071, 'not_attending', '2021-10-04 22:57:39', '2025-12-17 19:47:34', 'nda9aXVd', '4516078'), + (71343, 795, 1072, 'not_attending', '2021-10-06 22:12:15', '2025-12-17 19:47:34', 'nda9aXVd', '4516287'), + (71344, 795, 1074, 'attending', '2021-09-29 22:07:14', '2025-12-17 19:47:34', 'nda9aXVd', '4528953'), + (71345, 795, 1077, 'not_attending', '2021-10-13 22:48:39', '2025-12-17 19:47:34', 'nda9aXVd', '4540903'), + (71346, 795, 1079, 'maybe', '2021-10-20 12:46:09', '2025-12-17 19:47:35', 'nda9aXVd', '4563823'), + (71347, 795, 1085, 'attending', '2021-12-27 19:16:10', '2025-12-17 19:47:31', 'nda9aXVd', '4568542'), + (71348, 795, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nda9aXVd', '4568602'), + (71349, 795, 1087, 'not_attending', '2021-10-16 19:45:16', '2025-12-17 19:47:35', 'nda9aXVd', '4572153'), + (71350, 795, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'nda9aXVd', '4585962'), + (71351, 795, 1094, 'maybe', '2021-10-25 19:33:11', '2025-12-17 19:47:36', 'nda9aXVd', '4587337'), + (71352, 795, 1095, 'not_attending', '2021-10-27 22:45:39', '2025-12-17 19:47:36', 'nda9aXVd', '4596356'), + (71353, 795, 1097, 'maybe', '2021-11-01 21:52:19', '2025-12-17 19:47:36', 'nda9aXVd', '4598860'), + (71354, 795, 1098, 'maybe', '2021-11-10 23:20:18', '2025-12-17 19:47:36', 'nda9aXVd', '4598861'), + (71355, 795, 1099, 'maybe', '2021-10-31 01:25:48', '2025-12-17 19:47:36', 'nda9aXVd', '4602797'), + (71356, 795, 1100, 'maybe', '2021-11-06 22:49:51', '2025-12-17 19:47:36', 'nda9aXVd', '4607305'), + (71357, 795, 1101, 'not_attending', '2021-11-11 23:17:21', '2025-12-17 19:47:36', 'nda9aXVd', '4607339'), + (71358, 795, 1106, 'maybe', '2021-11-11 23:17:56', '2025-12-17 19:47:36', 'nda9aXVd', '4620452'), + (71359, 795, 1107, 'maybe', '2021-11-14 00:34:33', '2025-12-17 19:47:37', 'nda9aXVd', '4620697'), + (71360, 795, 1108, 'maybe', '2021-11-14 00:34:10', '2025-12-17 19:47:37', 'nda9aXVd', '4632276'), + (71361, 795, 1110, 'not_attending', '2021-11-20 20:40:34', '2025-12-17 19:47:37', 'nda9aXVd', '4635224'), + (71362, 795, 1114, 'maybe', '2021-11-11 23:18:14', '2025-12-17 19:47:36', 'nda9aXVd', '4637896'), + (71363, 795, 1116, 'maybe', '2021-11-30 17:35:00', '2025-12-17 19:47:37', 'nda9aXVd', '4642994'), + (71364, 795, 1117, 'not_attending', '2021-12-09 00:45:26', '2025-12-17 19:47:38', 'nda9aXVd', '4642995'), + (71365, 795, 1118, 'not_attending', '2021-12-16 01:37:59', '2025-12-17 19:47:38', 'nda9aXVd', '4642996'), + (71366, 795, 1119, 'maybe', '2021-12-20 18:48:50', '2025-12-17 19:47:31', 'nda9aXVd', '4642997'), + (71367, 795, 1126, 'not_attending', '2021-12-10 23:56:17', '2025-12-17 19:47:38', 'nda9aXVd', '4645687'), + (71368, 795, 1127, 'maybe', '2021-12-06 19:16:29', '2025-12-17 19:47:38', 'nda9aXVd', '4645698'), + (71369, 795, 1128, 'not_attending', '2021-11-21 00:24:24', '2025-12-17 19:47:37', 'nda9aXVd', '4645704'), + (71370, 795, 1129, 'not_attending', '2021-11-21 13:18:11', '2025-12-17 19:47:37', 'nda9aXVd', '4645705'), + (71371, 795, 1130, 'attending', '2021-12-04 22:17:26', '2025-12-17 19:47:37', 'nda9aXVd', '4658824'), + (71372, 795, 1131, 'attending', '2021-12-18 19:13:23', '2025-12-17 19:47:31', 'nda9aXVd', '4658825'), + (71373, 795, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nda9aXVd', '4668385'), + (71374, 795, 1139, 'maybe', '2021-11-30 17:45:40', '2025-12-17 19:47:37', 'nda9aXVd', '4675604'), + (71375, 795, 1140, 'attending', '2021-11-30 17:45:35', '2025-12-17 19:47:37', 'nda9aXVd', '4679701'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (71376, 795, 1142, 'maybe', '2021-12-04 03:46:00', '2025-12-17 19:47:37', 'nda9aXVd', '4681923'), + (71377, 795, 1146, 'not_attending', '2021-12-10 23:56:02', '2025-12-17 19:47:38', 'nda9aXVd', '4692841'), + (71378, 795, 1147, 'maybe', '2021-12-08 18:29:08', '2025-12-17 19:47:38', 'nda9aXVd', '4692842'), + (71379, 795, 1148, 'not_attending', '2021-12-17 22:47:33', '2025-12-17 19:47:31', 'nda9aXVd', '4692843'), + (71380, 795, 1149, 'not_attending', '2021-12-08 18:28:45', '2025-12-17 19:47:38', 'nda9aXVd', '4694407'), + (71381, 795, 1154, 'maybe', '2022-01-26 20:40:07', '2025-12-17 19:47:32', 'nda9aXVd', '4708708'), + (71382, 795, 1155, 'attending', '2021-12-20 05:03:47', '2025-12-17 19:47:31', 'nda9aXVd', '4715119'), + (71383, 795, 1163, 'not_attending', '2022-01-08 18:05:26', '2025-12-17 19:47:31', 'nda9aXVd', '4724206'), + (71384, 795, 1164, 'attending', '2022-01-03 04:32:05', '2025-12-17 19:47:31', 'nda9aXVd', '4724208'), + (71385, 795, 1165, 'attending', '2022-01-03 04:32:09', '2025-12-17 19:47:31', 'nda9aXVd', '4724210'), + (71386, 795, 1170, 'not_attending', '2022-01-10 01:27:57', '2025-12-17 19:47:31', 'nda9aXVd', '4731045'), + (71387, 795, 1172, 'not_attending', '2022-01-17 22:39:27', '2025-12-17 19:47:32', 'nda9aXVd', '4735348'), + (71388, 795, 1173, 'not_attending', '2022-01-08 18:05:22', '2025-12-17 19:47:31', 'nda9aXVd', '4736495'), + (71389, 795, 1174, 'attending', '2022-01-15 22:48:09', '2025-12-17 19:47:31', 'nda9aXVd', '4736496'), + (71390, 795, 1175, 'attending', '2022-01-21 03:04:44', '2025-12-17 19:47:32', 'nda9aXVd', '4736497'), + (71391, 795, 1176, 'attending', '2022-01-31 04:52:15', '2025-12-17 19:47:32', 'nda9aXVd', '4736498'), + (71392, 795, 1177, 'attending', '2022-02-06 03:59:01', '2025-12-17 19:47:32', 'nda9aXVd', '4736499'), + (71393, 795, 1178, 'not_attending', '2022-01-26 20:40:22', '2025-12-17 19:47:32', 'nda9aXVd', '4736500'), + (71394, 795, 1179, 'not_attending', '2022-02-18 00:22:16', '2025-12-17 19:47:32', 'nda9aXVd', '4736501'), + (71395, 795, 1180, 'attending', '2022-02-23 21:09:38', '2025-12-17 19:47:33', 'nda9aXVd', '4736502'), + (71396, 795, 1181, 'not_attending', '2022-03-04 21:09:57', '2025-12-17 19:47:33', 'nda9aXVd', '4736503'), + (71397, 795, 1182, 'not_attending', '2022-03-07 21:06:42', '2025-12-17 19:47:33', 'nda9aXVd', '4736504'), + (71398, 795, 1184, 'maybe', '2022-01-09 15:28:13', '2025-12-17 19:47:31', 'nda9aXVd', '4742350'), + (71399, 795, 1185, 'not_attending', '2022-01-09 15:28:24', '2025-12-17 19:47:31', 'nda9aXVd', '4746789'), + (71400, 795, 1188, 'not_attending', '2022-01-17 22:39:21', '2025-12-17 19:47:32', 'nda9aXVd', '4753929'), + (71401, 795, 1189, 'not_attending', '2022-01-17 18:45:52', '2025-12-17 19:47:31', 'nda9aXVd', '4753938'), + (71402, 795, 1192, 'not_attending', '2022-01-19 13:40:23', '2025-12-17 19:47:32', 'nda9aXVd', '4758745'), + (71403, 795, 1193, 'maybe', '2022-01-19 13:40:32', '2025-12-17 19:47:32', 'nda9aXVd', '4759563'), + (71404, 795, 1196, 'not_attending', '2022-01-21 03:04:13', '2025-12-17 19:47:32', 'nda9aXVd', '4765583'), + (71405, 795, 1200, 'not_attending', '2022-01-17 22:39:25', '2025-12-17 19:47:32', 'nda9aXVd', '4766830'), + (71406, 795, 1202, 'maybe', '2022-01-26 23:16:56', '2025-12-17 19:47:32', 'nda9aXVd', '4769423'), + (71407, 795, 1204, 'not_attending', '2022-02-09 13:49:05', '2025-12-17 19:47:32', 'nda9aXVd', '4773576'), + (71408, 795, 1205, 'attending', '2022-03-13 21:55:40', '2025-12-17 19:47:33', 'nda9aXVd', '4773577'), + (71409, 795, 1207, 'not_attending', '2022-05-01 22:24:32', '2025-12-17 19:47:28', 'nda9aXVd', '4773579'), + (71410, 795, 1210, 'not_attending', '2022-01-26 23:17:02', '2025-12-17 19:47:32', 'nda9aXVd', '4776927'), + (71411, 795, 1211, 'not_attending', '2022-01-26 23:17:01', '2025-12-17 19:47:32', 'nda9aXVd', '4780754'), + (71412, 795, 1212, 'not_attending', '2022-02-02 23:51:57', '2025-12-17 19:47:32', 'nda9aXVd', '4780759'), + (71413, 795, 1213, 'not_attending', '2022-01-31 04:52:19', '2025-12-17 19:47:32', 'nda9aXVd', '4780760'), + (71414, 795, 1214, 'not_attending', '2022-02-09 13:49:12', '2025-12-17 19:47:32', 'nda9aXVd', '4780761'), + (71415, 795, 1216, 'not_attending', '2022-01-26 23:17:08', '2025-12-17 19:47:32', 'nda9aXVd', '4781137'), + (71416, 795, 1217, 'not_attending', '2022-01-31 04:52:39', '2025-12-17 19:47:32', 'nda9aXVd', '4781139'), + (71417, 795, 1218, 'attending', '2022-01-31 04:49:32', '2025-12-17 19:47:32', 'nda9aXVd', '4788464'), + (71418, 795, 1219, 'attending', '2022-01-31 21:29:14', '2025-12-17 19:47:32', 'nda9aXVd', '4788466'), + (71419, 795, 1221, 'not_attending', '2022-01-28 15:21:26', '2025-12-17 19:47:32', 'nda9aXVd', '4790261'), + (71420, 795, 1222, 'maybe', '2022-02-09 13:49:08', '2025-12-17 19:47:32', 'nda9aXVd', '5015628'), + (71421, 795, 1223, 'not_attending', '2022-01-31 04:52:10', '2025-12-17 19:47:32', 'nda9aXVd', '5015635'), + (71422, 795, 1224, 'not_attending', '2022-01-31 04:51:59', '2025-12-17 19:47:32', 'nda9aXVd', '5016682'), + (71423, 795, 1226, 'not_attending', '2022-02-02 23:51:27', '2025-12-17 19:47:32', 'nda9aXVd', '5019064'), + (71424, 795, 1227, 'not_attending', '2022-02-15 00:45:25', '2025-12-17 19:47:32', 'nda9aXVd', '5027602'), + (71425, 795, 1228, 'maybe', '2022-02-11 13:00:21', '2025-12-17 19:47:32', 'nda9aXVd', '5028238'), + (71426, 795, 1229, 'not_attending', '2022-02-09 13:49:54', '2025-12-17 19:47:32', 'nda9aXVd', '5034963'), + (71427, 795, 1231, 'not_attending', '2022-02-09 13:50:37', '2025-12-17 19:47:33', 'nda9aXVd', '5037637'), + (71428, 795, 1232, 'maybe', '2022-02-09 13:39:58', '2025-12-17 19:47:32', 'nda9aXVd', '5038850'), + (71429, 795, 1233, 'not_attending', '2022-02-09 13:48:49', '2025-12-17 19:47:32', 'nda9aXVd', '5038910'), + (71430, 795, 1234, 'not_attending', '2022-02-14 15:45:13', '2025-12-17 19:47:32', 'nda9aXVd', '5042197'), + (71431, 795, 1235, 'not_attending', '2022-02-14 15:45:11', '2025-12-17 19:47:32', 'nda9aXVd', '5044505'), + (71432, 795, 1236, 'not_attending', '2022-02-14 15:45:51', '2025-12-17 19:47:32', 'nda9aXVd', '5045826'), + (71433, 795, 1237, 'not_attending', '2022-02-19 01:43:20', '2025-12-17 19:47:32', 'nda9aXVd', '5050641'), + (71434, 795, 1238, 'not_attending', '2022-02-24 00:45:02', '2025-12-17 19:47:32', 'nda9aXVd', '5052236'), + (71435, 795, 1239, 'maybe', '2022-02-28 01:59:34', '2025-12-17 19:47:33', 'nda9aXVd', '5052238'), + (71436, 795, 1240, 'maybe', '2022-03-11 04:49:49', '2025-12-17 19:47:33', 'nda9aXVd', '5052239'), + (71437, 795, 1241, 'maybe', '2022-03-23 11:49:14', '2025-12-17 19:47:25', 'nda9aXVd', '5052240'), + (71438, 795, 1242, 'maybe', '2022-03-25 12:45:29', '2025-12-17 19:47:25', 'nda9aXVd', '5052241'), + (71439, 795, 1243, 'not_attending', '2022-03-06 20:01:40', '2025-12-17 19:47:33', 'nda9aXVd', '5058336'), + (71440, 795, 1245, 'not_attending', '2022-02-28 01:59:35', '2025-12-17 19:47:33', 'nda9aXVd', '5061301'), + (71441, 795, 1246, 'not_attending', '2022-02-28 01:59:53', '2025-12-17 19:47:33', 'nda9aXVd', '5064727'), + (71442, 795, 1248, 'not_attending', '2022-02-23 21:08:50', '2025-12-17 19:47:33', 'nda9aXVd', '5065064'), + (71443, 795, 1249, 'not_attending', '2022-03-11 04:49:29', '2025-12-17 19:47:33', 'nda9aXVd', '5068530'), + (71444, 795, 1250, 'not_attending', '2022-02-28 01:59:56', '2025-12-17 19:47:33', 'nda9aXVd', '5069735'), + (71445, 795, 1251, 'not_attending', '2022-03-07 21:06:17', '2025-12-17 19:47:33', 'nda9aXVd', '5128466'), + (71446, 795, 1252, 'not_attending', '2022-02-28 23:55:10', '2025-12-17 19:47:33', 'nda9aXVd', '5129121'), + (71447, 795, 1253, 'maybe', '2022-02-28 02:02:50', '2025-12-17 19:47:33', 'nda9aXVd', '5129122'), + (71448, 795, 1254, 'not_attending', '2022-02-28 01:58:56', '2025-12-17 19:47:33', 'nda9aXVd', '5129129'), + (71449, 795, 1255, 'maybe', '2022-02-28 01:59:49', '2025-12-17 19:47:33', 'nda9aXVd', '5129140'), + (71450, 795, 1256, 'not_attending', '2022-02-28 01:59:38', '2025-12-17 19:47:33', 'nda9aXVd', '5129142'), + (71451, 795, 1257, 'not_attending', '2022-02-28 01:59:43', '2025-12-17 19:47:33', 'nda9aXVd', '5129274'), + (71452, 795, 1259, 'not_attending', '2022-03-09 14:46:01', '2025-12-17 19:47:33', 'nda9aXVd', '5132533'), + (71453, 795, 1262, 'not_attending', '2022-03-09 14:45:18', '2025-12-17 19:47:33', 'nda9aXVd', '5157773'), + (71454, 795, 1263, 'not_attending', '2022-03-07 21:05:44', '2025-12-17 19:47:33', 'nda9aXVd', '5158145'), + (71455, 795, 1264, 'attending', '2022-03-22 16:58:47', '2025-12-17 19:47:25', 'nda9aXVd', '5160281'), + (71456, 795, 1265, 'not_attending', '2022-03-07 21:06:30', '2025-12-17 19:47:33', 'nda9aXVd', '5160862'), + (71457, 795, 1266, 'maybe', '2022-03-14 20:54:25', '2025-12-17 19:47:33', 'nda9aXVd', '5166407'), + (71458, 795, 1267, 'maybe', '2022-03-16 02:02:49', '2025-12-17 19:47:25', 'nda9aXVd', '5169578'), + (71459, 795, 1269, 'maybe', '2022-03-16 02:03:10', '2025-12-17 19:47:25', 'nda9aXVd', '5179439'), + (71460, 795, 1270, 'attending', '2022-03-15 02:35:34', '2025-12-17 19:47:25', 'nda9aXVd', '5181277'), + (71461, 795, 1271, 'maybe', '2022-03-16 02:03:01', '2025-12-17 19:47:25', 'nda9aXVd', '5181648'), + (71462, 795, 1272, 'attending', '2022-03-16 02:03:18', '2025-12-17 19:47:25', 'nda9aXVd', '5186582'), + (71463, 795, 1273, 'attending', '2022-03-25 13:06:12', '2025-12-17 19:47:25', 'nda9aXVd', '5186583'), + (71464, 795, 1274, 'attending', '2022-04-02 19:26:25', '2025-12-17 19:47:26', 'nda9aXVd', '5186585'), + (71465, 795, 1275, 'not_attending', '2022-03-28 11:27:51', '2025-12-17 19:47:26', 'nda9aXVd', '5186587'), + (71466, 795, 1276, 'maybe', '2022-03-25 13:07:38', '2025-12-17 19:47:25', 'nda9aXVd', '5186820'), + (71467, 795, 1277, 'not_attending', '2022-03-18 16:34:43', '2025-12-17 19:47:25', 'nda9aXVd', '5186865'), + (71468, 795, 1278, 'not_attending', '2022-03-17 03:36:55', '2025-12-17 19:47:33', 'nda9aXVd', '5186920'), + (71469, 795, 1279, 'attending', '2022-03-16 13:39:25', '2025-12-17 19:47:25', 'nda9aXVd', '5187212'), + (71470, 795, 1280, 'not_attending', '2022-03-18 16:34:52', '2025-12-17 19:47:25', 'nda9aXVd', '5189749'), + (71471, 795, 1281, 'attending', '2022-04-08 21:32:37', '2025-12-17 19:47:27', 'nda9aXVd', '5190437'), + (71472, 795, 1282, 'attending', '2022-03-21 23:42:59', '2025-12-17 19:47:25', 'nda9aXVd', '5191241'), + (71473, 795, 1284, 'attending', '2022-04-16 22:57:03', '2025-12-17 19:47:27', 'nda9aXVd', '5195095'), + (71474, 795, 1285, 'not_attending', '2022-03-25 13:07:45', '2025-12-17 19:47:25', 'nda9aXVd', '5196763'), + (71475, 795, 1287, 'attending', '2022-03-28 22:37:01', '2025-12-17 19:47:25', 'nda9aXVd', '5199425'), + (71476, 795, 1288, 'not_attending', '2022-03-25 13:07:52', '2025-12-17 19:47:25', 'nda9aXVd', '5199460'), + (71477, 795, 1289, 'not_attending', '2022-03-25 13:07:40', '2025-12-17 19:47:25', 'nda9aXVd', '5200190'), + (71478, 795, 1290, 'maybe', '2022-03-25 12:45:22', '2025-12-17 19:47:25', 'nda9aXVd', '5200196'), + (71479, 795, 1291, 'not_attending', '2022-03-25 13:07:44', '2025-12-17 19:47:25', 'nda9aXVd', '5200458'), + (71480, 795, 1292, 'not_attending', '2022-03-28 11:27:45', '2025-12-17 19:47:25', 'nda9aXVd', '5214043'), + (71481, 795, 1293, 'maybe', '2022-04-08 21:33:45', '2025-12-17 19:47:27', 'nda9aXVd', '5214641'), + (71482, 795, 1294, 'not_attending', '2022-04-01 18:07:03', '2025-12-17 19:47:26', 'nda9aXVd', '5214686'), + (71483, 795, 1296, 'not_attending', '2022-04-01 18:06:36', '2025-12-17 19:47:26', 'nda9aXVd', '5215985'), + (71484, 795, 1297, 'not_attending', '2022-03-29 21:44:19', '2025-12-17 19:47:26', 'nda9aXVd', '5215989'), + (71485, 795, 1298, 'not_attending', '2022-04-01 19:24:27', '2025-12-17 19:47:25', 'nda9aXVd', '5216645'), + (71486, 795, 1299, 'not_attending', '2022-03-31 16:19:51', '2025-12-17 19:47:25', 'nda9aXVd', '5217660'), + (71487, 795, 1300, 'not_attending', '2022-03-31 16:20:10', '2025-12-17 19:47:25', 'nda9aXVd', '5217936'), + (71488, 795, 1302, 'maybe', '2022-04-08 23:02:28', '2025-12-17 19:47:27', 'nda9aXVd', '5220867'), + (71489, 795, 1305, 'maybe', '2022-04-10 23:41:11', '2025-12-17 19:47:27', 'nda9aXVd', '5223673'), + (71490, 795, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nda9aXVd', '5223686'), + (71491, 795, 1308, 'not_attending', '2022-04-13 23:16:14', '2025-12-17 19:47:27', 'nda9aXVd', '5226703'), + (71492, 795, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'nda9aXVd', '5227432'), + (71493, 795, 1312, 'not_attending', '2022-04-11 14:33:40', '2025-12-17 19:47:27', 'nda9aXVd', '5231459'), + (71494, 795, 1313, 'not_attending', '2022-04-11 14:34:05', '2025-12-17 19:47:27', 'nda9aXVd', '5231461'), + (71495, 795, 1314, 'not_attending', '2022-04-11 16:44:26', '2025-12-17 19:47:27', 'nda9aXVd', '5233137'), + (71496, 795, 1315, 'maybe', '2022-04-22 19:20:20', '2025-12-17 19:47:27', 'nda9aXVd', '5237522'), + (71497, 795, 1316, 'attending', '2022-04-11 14:33:45', '2025-12-17 19:47:27', 'nda9aXVd', '5237536'), + (71498, 795, 1317, 'maybe', '2022-04-11 16:45:48', '2025-12-17 19:47:27', 'nda9aXVd', '5237543'), + (71499, 795, 1318, 'not_attending', '2022-04-11 14:33:43', '2025-12-17 19:47:27', 'nda9aXVd', '5238343'), + (71500, 795, 1319, 'not_attending', '2022-04-11 14:32:57', '2025-12-17 19:47:27', 'nda9aXVd', '5238353'), + (71501, 795, 1320, 'not_attending', '2022-04-11 14:33:11', '2025-12-17 19:47:27', 'nda9aXVd', '5238354'), + (71502, 795, 1321, 'maybe', '2022-04-22 19:20:16', '2025-12-17 19:47:27', 'nda9aXVd', '5238355'), + (71503, 795, 1322, 'attending', '2022-04-14 16:19:20', '2025-12-17 19:47:27', 'nda9aXVd', '5238356'), + (71504, 795, 1323, 'not_attending', '2022-04-11 14:32:45', '2025-12-17 19:47:27', 'nda9aXVd', '5238357'), + (71505, 795, 1324, 'not_attending', '2022-04-11 14:32:50', '2025-12-17 19:47:27', 'nda9aXVd', '5238360'), + (71506, 795, 1325, 'not_attending', '2022-04-21 01:44:42', '2025-12-17 19:47:28', 'nda9aXVd', '5238361'), + (71507, 795, 1326, 'not_attending', '2022-04-21 01:44:44', '2025-12-17 19:47:28', 'nda9aXVd', '5238362'), + (71508, 795, 1327, 'attending', '2022-04-11 14:31:24', '2025-12-17 19:47:27', 'nda9aXVd', '5238445'), + (71509, 795, 1328, 'attending', '2022-04-11 22:11:57', '2025-12-17 19:47:27', 'nda9aXVd', '5238759'), + (71510, 795, 1329, 'not_attending', '2022-04-13 18:08:42', '2025-12-17 19:47:27', 'nda9aXVd', '5240135'), + (71511, 795, 1330, 'maybe', '2022-04-14 23:04:23', '2025-12-17 19:47:27', 'nda9aXVd', '5242155'), + (71512, 795, 1331, 'maybe', '2022-04-14 23:04:28', '2025-12-17 19:47:27', 'nda9aXVd', '5242156'), + (71513, 795, 1332, 'maybe', '2022-04-14 23:01:17', '2025-12-17 19:47:27', 'nda9aXVd', '5243274'), + (71514, 795, 1333, 'not_attending', '2022-04-14 23:01:13', '2025-12-17 19:47:27', 'nda9aXVd', '5243711'), + (71515, 795, 1334, 'attending', '2022-04-14 23:03:50', '2025-12-17 19:47:27', 'nda9aXVd', '5244797'), + (71516, 795, 1335, 'not_attending', '2022-04-14 23:03:22', '2025-12-17 19:47:27', 'nda9aXVd', '5244906'), + (71517, 795, 1336, 'attending', '2022-04-14 23:00:44', '2025-12-17 19:47:27', 'nda9aXVd', '5244915'), + (71518, 795, 1340, 'maybe', '2022-04-25 11:50:31', '2025-12-17 19:47:27', 'nda9aXVd', '5245754'), + (71519, 795, 1341, 'attending', '2022-05-01 23:00:34', '2025-12-17 19:47:28', 'nda9aXVd', '5245755'), + (71520, 795, 1343, 'not_attending', '2022-05-01 22:24:26', '2025-12-17 19:47:28', 'nda9aXVd', '5247200'), + (71521, 795, 1344, 'not_attending', '2022-04-21 01:45:00', '2025-12-17 19:47:28', 'nda9aXVd', '5247465'), + (71522, 795, 1345, 'not_attending', '2022-04-21 01:43:21', '2025-12-17 19:47:27', 'nda9aXVd', '5247466'), + (71523, 795, 1346, 'not_attending', '2022-04-21 01:43:24', '2025-12-17 19:47:27', 'nda9aXVd', '5247467'), + (71524, 795, 1348, 'maybe', '2022-04-21 01:42:20', '2025-12-17 19:47:28', 'nda9aXVd', '5247605'), + (71525, 795, 1349, 'not_attending', '2022-04-21 01:42:56', '2025-12-17 19:47:27', 'nda9aXVd', '5249631'), + (71526, 795, 1350, 'not_attending', '2022-04-21 01:42:58', '2025-12-17 19:47:27', 'nda9aXVd', '5249763'), + (71527, 795, 1351, 'not_attending', '2022-05-02 12:55:32', '2025-12-17 19:47:28', 'nda9aXVd', '5251561'), + (71528, 795, 1353, 'not_attending', '2022-04-21 01:43:42', '2025-12-17 19:47:27', 'nda9aXVd', '5251777'), + (71529, 795, 1354, 'not_attending', '2022-04-21 22:35:12', '2025-12-17 19:47:27', 'nda9aXVd', '5252569'), + (71530, 795, 1355, 'not_attending', '2022-04-27 16:41:23', '2025-12-17 19:47:28', 'nda9aXVd', '5252573'), + (71531, 795, 1357, 'maybe', '2022-04-25 16:19:59', '2025-12-17 19:47:27', 'nda9aXVd', '5256017'), + (71532, 795, 1359, 'not_attending', '2022-04-27 16:43:13', '2025-12-17 19:47:28', 'nda9aXVd', '5258360'), + (71533, 795, 1360, 'maybe', '2022-04-25 11:50:09', '2025-12-17 19:47:27', 'nda9aXVd', '5260197'), + (71534, 795, 1361, 'not_attending', '2022-04-27 16:43:00', '2025-12-17 19:47:28', 'nda9aXVd', '5260491'), + (71535, 795, 1362, 'not_attending', '2022-04-25 20:28:57', '2025-12-17 19:47:28', 'nda9aXVd', '5260800'), + (71536, 795, 1363, 'not_attending', '2022-04-27 16:41:36', '2025-12-17 19:47:28', 'nda9aXVd', '5261577'), + (71537, 795, 1364, 'attending', '2022-04-27 16:42:44', '2025-12-17 19:47:28', 'nda9aXVd', '5261598'), + (71538, 795, 1365, 'not_attending', '2022-05-01 16:22:55', '2025-12-17 19:47:28', 'nda9aXVd', '5261600'), + (71539, 795, 1366, 'not_attending', '2022-04-27 16:41:15', '2025-12-17 19:47:27', 'nda9aXVd', '5262344'), + (71540, 795, 1367, 'not_attending', '2022-05-01 16:23:00', '2025-12-17 19:47:28', 'nda9aXVd', '5262345'), + (71541, 795, 1368, 'attending', '2022-05-06 01:10:15', '2025-12-17 19:47:28', 'nda9aXVd', '5262783'), + (71542, 795, 1369, 'maybe', '2022-04-27 16:43:51', '2025-12-17 19:47:28', 'nda9aXVd', '5262809'), + (71543, 795, 1370, 'not_attending', '2022-04-29 16:24:04', '2025-12-17 19:47:28', 'nda9aXVd', '5263775'), + (71544, 795, 1372, 'not_attending', '2022-05-03 21:55:15', '2025-12-17 19:47:28', 'nda9aXVd', '5264352'), + (71545, 795, 1374, 'attending', '2022-05-01 22:24:28', '2025-12-17 19:47:28', 'nda9aXVd', '5269930'), + (71546, 795, 1375, 'attending', '2022-05-05 17:44:34', '2025-12-17 19:47:28', 'nda9aXVd', '5269932'), + (71547, 795, 1376, 'maybe', '2022-05-08 02:05:23', '2025-12-17 19:47:28', 'nda9aXVd', '5271446'), + (71548, 795, 1377, 'not_attending', '2022-05-08 02:05:35', '2025-12-17 19:47:28', 'nda9aXVd', '5271447'), + (71549, 795, 1378, 'not_attending', '2022-05-13 15:50:24', '2025-12-17 19:47:29', 'nda9aXVd', '5271448'), + (71550, 795, 1379, 'attending', '2022-05-21 15:30:18', '2025-12-17 19:47:29', 'nda9aXVd', '5271449'), + (71551, 795, 1380, 'maybe', '2022-05-13 15:51:04', '2025-12-17 19:47:30', 'nda9aXVd', '5271450'), + (71552, 795, 1381, 'not_attending', '2022-05-05 17:45:17', '2025-12-17 19:47:28', 'nda9aXVd', '5271453'), + (71553, 795, 1382, 'maybe', '2022-05-05 17:45:55', '2025-12-17 19:47:28', 'nda9aXVd', '5276350'), + (71554, 795, 1383, 'maybe', '2022-05-13 21:56:11', '2025-12-17 19:47:28', 'nda9aXVd', '5276469'), + (71555, 795, 1384, 'maybe', '2022-05-05 17:45:20', '2025-12-17 19:47:28', 'nda9aXVd', '5277078'), + (71556, 795, 1385, 'maybe', '2022-05-08 02:05:16', '2025-12-17 19:47:28', 'nda9aXVd', '5277822'), + (71557, 795, 1386, 'not_attending', '2022-05-05 17:45:13', '2025-12-17 19:47:28', 'nda9aXVd', '5278159'), + (71558, 795, 1388, 'not_attending', '2022-05-05 17:45:15', '2025-12-17 19:47:28', 'nda9aXVd', '5278201'), + (71559, 795, 1389, 'not_attending', '2022-05-05 17:45:34', '2025-12-17 19:47:28', 'nda9aXVd', '5278202'), + (71560, 795, 1393, 'not_attending', '2022-06-10 18:34:10', '2025-12-17 19:47:30', 'nda9aXVd', '5280603'), + (71561, 795, 1394, 'not_attending', '2022-05-27 11:07:23', '2025-12-17 19:47:30', 'nda9aXVd', '5280667'), + (71562, 795, 1396, 'not_attending', '2022-05-13 15:50:31', '2025-12-17 19:47:28', 'nda9aXVd', '5281103'), + (71563, 795, 1397, 'maybe', '2022-05-13 15:50:56', '2025-12-17 19:47:29', 'nda9aXVd', '5281104'), + (71564, 795, 1399, 'not_attending', '2022-05-08 02:05:20', '2025-12-17 19:47:28', 'nda9aXVd', '5281796'), + (71565, 795, 1400, 'not_attending', '2022-05-13 15:50:48', '2025-12-17 19:47:29', 'nda9aXVd', '5284864'), + (71566, 795, 1401, 'maybe', '2022-05-13 15:11:37', '2025-12-17 19:47:29', 'nda9aXVd', '5286295'), + (71567, 795, 1402, 'not_attending', '2022-05-27 16:48:38', '2025-12-17 19:47:30', 'nda9aXVd', '5287977'), + (71568, 795, 1403, 'attending', '2022-05-19 21:44:21', '2025-12-17 19:47:29', 'nda9aXVd', '5288052'), + (71569, 795, 1404, 'not_attending', '2022-05-13 15:11:45', '2025-12-17 19:47:29', 'nda9aXVd', '5288114'), + (71570, 795, 1405, 'not_attending', '2022-05-13 15:11:49', '2025-12-17 19:47:29', 'nda9aXVd', '5288115'), + (71571, 795, 1406, 'maybe', '2022-05-15 18:17:13', '2025-12-17 19:47:29', 'nda9aXVd', '5288619'), + (71572, 795, 1407, 'attending', '2022-05-21 22:28:01', '2025-12-17 19:47:30', 'nda9aXVd', '5363695'), + (71573, 795, 1408, 'maybe', '2022-05-16 14:24:34', '2025-12-17 19:47:29', 'nda9aXVd', '5365960'), + (71574, 795, 1413, 'maybe', '2022-05-19 21:45:17', '2025-12-17 19:47:29', 'nda9aXVd', '5367533'), + (71575, 795, 1414, 'maybe', '2022-05-20 22:52:27', '2025-12-17 19:47:29', 'nda9aXVd', '5368445'), + (71576, 795, 1415, 'attending', '2022-05-31 01:32:58', '2025-12-17 19:47:30', 'nda9aXVd', '5368973'), + (71577, 795, 1416, 'not_attending', '2022-05-28 12:09:09', '2025-12-17 19:47:30', 'nda9aXVd', '5369628'), + (71578, 795, 1419, 'maybe', '2022-06-03 00:26:13', '2025-12-17 19:47:30', 'nda9aXVd', '5373081'), + (71579, 795, 1420, 'not_attending', '2022-05-27 16:49:02', '2025-12-17 19:47:30', 'nda9aXVd', '5374882'), + (71580, 795, 1421, 'not_attending', '2022-05-29 04:14:23', '2025-12-17 19:47:30', 'nda9aXVd', '5374885'), + (71581, 795, 1422, 'not_attending', '2022-05-28 19:48:21', '2025-12-17 19:47:30', 'nda9aXVd', '5375603'), + (71582, 795, 1423, 'not_attending', '2022-06-15 19:29:47', '2025-12-17 19:47:17', 'nda9aXVd', '5375727'), + (71583, 795, 1424, 'maybe', '2022-05-25 15:39:02', '2025-12-17 19:47:30', 'nda9aXVd', '5375772'), + (71584, 795, 1427, 'not_attending', '2022-05-25 22:54:13', '2025-12-17 19:47:30', 'nda9aXVd', '5376074'), + (71585, 795, 1428, 'not_attending', '2022-06-10 18:19:05', '2025-12-17 19:47:30', 'nda9aXVd', '5378247'), + (71586, 795, 1429, 'attending', '2022-05-30 20:28:22', '2025-12-17 19:47:30', 'nda9aXVd', '5388761'), + (71587, 795, 1430, 'not_attending', '2022-06-05 02:59:14', '2025-12-17 19:47:30', 'nda9aXVd', '5389402'), + (71588, 795, 1431, 'attending', '2022-06-07 23:20:23', '2025-12-17 19:47:30', 'nda9aXVd', '5389605'), + (71589, 795, 1432, 'attending', '2022-05-31 19:30:30', '2025-12-17 19:47:30', 'nda9aXVd', '5391566'), + (71590, 795, 1433, 'attending', '2022-05-31 19:31:07', '2025-12-17 19:47:30', 'nda9aXVd', '5391667'), + (71591, 795, 1434, 'not_attending', '2022-06-01 02:53:30', '2025-12-17 19:47:30', 'nda9aXVd', '5393861'), + (71592, 795, 1435, 'attending', '2022-05-31 21:51:44', '2025-12-17 19:47:30', 'nda9aXVd', '5394015'), + (71593, 795, 1437, 'not_attending', '2022-06-03 00:56:47', '2025-12-17 19:47:30', 'nda9aXVd', '5394493'), + (71594, 795, 1438, 'maybe', '2022-06-01 17:37:51', '2025-12-17 19:47:30', 'nda9aXVd', '5395032'), + (71595, 795, 1439, 'maybe', '2022-06-06 17:10:37', '2025-12-17 19:47:30', 'nda9aXVd', '5396072'), + (71596, 795, 1440, 'not_attending', '2022-06-03 00:26:26', '2025-12-17 19:47:30', 'nda9aXVd', '5396080'), + (71597, 795, 1441, 'not_attending', '2022-06-04 20:46:25', '2025-12-17 19:47:30', 'nda9aXVd', '5397171'), + (71598, 795, 1442, 'attending', '2022-06-10 18:35:43', '2025-12-17 19:47:17', 'nda9aXVd', '5397265'), + (71599, 795, 1444, 'maybe', '2022-06-07 04:14:08', '2025-12-17 19:47:30', 'nda9aXVd', '5397614'), + (71600, 795, 1445, 'maybe', '2022-06-10 18:35:49', '2025-12-17 19:47:17', 'nda9aXVd', '5397615'), + (71601, 795, 1446, 'not_attending', '2022-06-09 20:45:46', '2025-12-17 19:47:30', 'nda9aXVd', '5399721'), + (71602, 795, 1447, 'not_attending', '2022-06-07 13:46:31', '2025-12-17 19:47:30', 'nda9aXVd', '5401089'), + (71603, 795, 1448, 'attending', '2022-06-08 00:03:14', '2025-12-17 19:47:30', 'nda9aXVd', '5401479'), + (71604, 795, 1449, 'not_attending', '2022-06-10 18:35:19', '2025-12-17 19:47:31', 'nda9aXVd', '5403335'), + (71605, 795, 1450, 'not_attending', '2022-06-10 18:34:07', '2025-12-17 19:47:30', 'nda9aXVd', '5403421'), + (71606, 795, 1451, 'attending', '2022-06-10 00:42:24', '2025-12-17 19:47:17', 'nda9aXVd', '5403967'), + (71607, 795, 1452, 'not_attending', '2022-06-10 18:34:04', '2025-12-17 19:47:30', 'nda9aXVd', '5404197'), + (71608, 795, 1453, 'not_attending', '2022-06-10 18:20:28', '2025-12-17 19:47:31', 'nda9aXVd', '5404745'), + (71609, 795, 1454, 'not_attending', '2022-06-10 18:35:09', '2025-12-17 19:47:31', 'nda9aXVd', '5404771'), + (71610, 795, 1455, 'not_attending', '2022-06-10 18:35:12', '2025-12-17 19:47:31', 'nda9aXVd', '5404772'), + (71611, 795, 1456, 'not_attending', '2022-06-10 18:35:27', '2025-12-17 19:47:17', 'nda9aXVd', '5404779'), + (71612, 795, 1457, 'not_attending', '2022-06-10 18:23:16', '2025-12-17 19:47:31', 'nda9aXVd', '5404780'), + (71613, 795, 1458, 'attending', '2022-06-19 22:28:57', '2025-12-17 19:47:17', 'nda9aXVd', '5404786'), + (71614, 795, 1459, 'attending', '2022-06-10 01:17:41', '2025-12-17 19:47:17', 'nda9aXVd', '5404793'), + (71615, 795, 1460, 'attending', '2022-06-13 23:01:46', '2025-12-17 19:47:31', 'nda9aXVd', '5404817'), + (71616, 795, 1461, 'not_attending', '2022-06-10 18:35:23', '2025-12-17 19:47:31', 'nda9aXVd', '5405149'), + (71617, 795, 1462, 'not_attending', '2022-06-13 16:25:53', '2025-12-17 19:47:17', 'nda9aXVd', '5405203'), + (71618, 795, 1463, 'attending', '2022-06-10 18:35:20', '2025-12-17 19:47:31', 'nda9aXVd', '5405208'), + (71619, 795, 1464, 'maybe', '2022-06-10 22:11:24', '2025-12-17 19:47:30', 'nda9aXVd', '5405212'), + (71620, 795, 1466, 'not_attending', '2022-06-13 16:25:48', '2025-12-17 19:47:17', 'nda9aXVd', '5406427'), + (71621, 795, 1468, 'attending', '2022-06-16 01:13:42', '2025-12-17 19:47:19', 'nda9aXVd', '5406832'), + (71622, 795, 1469, 'not_attending', '2022-06-13 16:26:08', '2025-12-17 19:47:17', 'nda9aXVd', '5406838'), + (71623, 795, 1470, 'not_attending', '2022-06-18 18:57:51', '2025-12-17 19:47:17', 'nda9aXVd', '5407053'), + (71624, 795, 1471, 'not_attending', '2022-06-16 01:13:13', '2025-12-17 19:47:17', 'nda9aXVd', '5407063'), + (71625, 795, 1472, 'not_attending', '2022-06-16 01:13:23', '2025-12-17 19:47:17', 'nda9aXVd', '5407065'), + (71626, 795, 1473, 'maybe', '2022-06-13 16:23:25', '2025-12-17 19:47:31', 'nda9aXVd', '5407267'), + (71627, 795, 1474, 'not_attending', '2022-06-16 01:13:32', '2025-12-17 19:47:19', 'nda9aXVd', '5408029'), + (71628, 795, 1475, 'attending', '2022-06-16 22:59:38', '2025-12-17 19:47:17', 'nda9aXVd', '5408108'), + (71629, 795, 1476, 'maybe', '2022-06-16 01:12:32', '2025-12-17 19:47:17', 'nda9aXVd', '5408130'), + (71630, 795, 1477, 'attending', '2022-06-22 00:11:36', '2025-12-17 19:47:17', 'nda9aXVd', '5408766'), + (71631, 795, 1478, 'attending', '2022-06-24 03:11:21', '2025-12-17 19:47:17', 'nda9aXVd', '5408794'), + (71632, 795, 1479, 'not_attending', '2022-06-17 16:45:05', '2025-12-17 19:47:17', 'nda9aXVd', '5410322'), + (71633, 795, 1480, 'not_attending', '2022-06-26 22:45:43', '2025-12-17 19:47:19', 'nda9aXVd', '5411699'), + (71634, 795, 1481, 'not_attending', '2022-06-20 17:39:19', '2025-12-17 19:47:17', 'nda9aXVd', '5412237'), + (71635, 795, 1482, 'attending', '2022-06-23 18:18:49', '2025-12-17 19:47:19', 'nda9aXVd', '5412550'), + (71636, 795, 1483, 'not_attending', '2022-06-20 17:40:12', '2025-12-17 19:47:17', 'nda9aXVd', '5414556'), + (71637, 795, 1484, 'not_attending', '2022-06-22 23:44:49', '2025-12-17 19:47:17', 'nda9aXVd', '5415046'), + (71638, 795, 1485, 'not_attending', '2022-06-23 17:29:17', '2025-12-17 19:47:17', 'nda9aXVd', '5416276'), + (71639, 795, 1486, 'not_attending', '2022-06-26 18:51:21', '2025-12-17 19:47:19', 'nda9aXVd', '5416339'), + (71640, 795, 1487, 'not_attending', '2022-06-26 18:51:16', '2025-12-17 19:47:19', 'nda9aXVd', '5419006'), + (71641, 795, 1488, 'not_attending', '2022-06-26 18:51:51', '2025-12-17 19:47:19', 'nda9aXVd', '5420154'), + (71642, 795, 1489, 'not_attending', '2022-06-26 18:51:53', '2025-12-17 19:47:19', 'nda9aXVd', '5420155'), + (71643, 795, 1490, 'not_attending', '2022-06-26 18:52:04', '2025-12-17 19:47:19', 'nda9aXVd', '5420156'), + (71644, 795, 1491, 'not_attending', '2022-06-26 18:52:09', '2025-12-17 19:47:19', 'nda9aXVd', '5420158'), + (71645, 795, 1492, 'not_attending', '2022-06-26 18:52:06', '2025-12-17 19:47:19', 'nda9aXVd', '5420175'), + (71646, 795, 1493, 'attending', '2022-06-25 15:59:15', '2025-12-17 19:47:19', 'nda9aXVd', '5420218'), + (71647, 795, 1494, 'not_attending', '2022-06-26 18:52:12', '2025-12-17 19:47:19', 'nda9aXVd', '5421626'), + (71648, 795, 1495, 'not_attending', '2022-06-26 18:50:11', '2025-12-17 19:47:19', 'nda9aXVd', '5422086'), + (71649, 795, 1496, 'not_attending', '2022-06-26 18:51:18', '2025-12-17 19:47:19', 'nda9aXVd', '5422404'), + (71650, 795, 1497, 'not_attending', '2022-06-26 18:51:22', '2025-12-17 19:47:19', 'nda9aXVd', '5422405'), + (71651, 795, 1498, 'not_attending', '2022-06-28 15:24:55', '2025-12-17 19:47:19', 'nda9aXVd', '5422406'), + (71652, 795, 1499, 'not_attending', '2022-06-26 18:51:31', '2025-12-17 19:47:19', 'nda9aXVd', '5422407'), + (71653, 795, 1501, 'not_attending', '2022-06-28 15:24:28', '2025-12-17 19:47:19', 'nda9aXVd', '5424546'), + (71654, 795, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nda9aXVd', '5424565'), + (71655, 795, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nda9aXVd', '5426882'), + (71656, 795, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'nda9aXVd', '5427083'), + (71657, 795, 1513, 'not_attending', '2022-07-10 14:43:29', '2025-12-17 19:47:20', 'nda9aXVd', '5441125'), + (71658, 795, 1514, 'attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nda9aXVd', '5441126'), + (71659, 795, 1515, 'attending', '2022-08-03 03:01:45', '2025-12-17 19:47:21', 'nda9aXVd', '5441128'), + (71660, 795, 1516, 'attending', '2022-08-11 00:46:10', '2025-12-17 19:47:23', 'nda9aXVd', '5441129'), + (71661, 795, 1517, 'attending', '2022-08-26 04:10:52', '2025-12-17 19:47:23', 'nda9aXVd', '5441130'), + (71662, 795, 1518, 'attending', '2022-08-22 15:14:43', '2025-12-17 19:47:24', 'nda9aXVd', '5441131'), + (71663, 795, 1519, 'attending', '2022-08-22 15:15:04', '2025-12-17 19:47:24', 'nda9aXVd', '5441132'), + (71664, 795, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'nda9aXVd', '5446643'), + (71665, 795, 1530, 'not_attending', '2022-07-23 19:22:54', '2025-12-17 19:47:20', 'nda9aXVd', '5448612'), + (71666, 795, 1532, 'maybe', '2022-07-23 19:23:29', '2025-12-17 19:47:20', 'nda9aXVd', '5448757'), + (71667, 795, 1533, 'attending', '2022-07-23 19:23:24', '2025-12-17 19:47:21', 'nda9aXVd', '5448758'), + (71668, 795, 1534, 'not_attending', '2022-08-03 03:01:43', '2025-12-17 19:47:21', 'nda9aXVd', '5448759'), + (71669, 795, 1538, 'maybe', '2022-07-29 22:04:18', '2025-12-17 19:47:21', 'nda9aXVd', '5449565'), + (71670, 795, 1539, 'not_attending', '2022-07-23 19:23:10', '2025-12-17 19:47:21', 'nda9aXVd', '5449671'), + (71671, 795, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nda9aXVd', '5453325'), + (71672, 795, 1541, 'not_attending', '2022-07-23 19:22:46', '2025-12-17 19:47:20', 'nda9aXVd', '5453542'), + (71673, 795, 1542, 'not_attending', '2022-07-23 19:22:44', '2025-12-17 19:47:20', 'nda9aXVd', '5454064'), + (71674, 795, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nda9aXVd', '5454516'), + (71675, 795, 1544, 'attending', '2022-09-06 00:37:06', '2025-12-17 19:47:11', 'nda9aXVd', '5454517'), + (71676, 795, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nda9aXVd', '5454605'), + (71677, 795, 1546, 'maybe', '2022-07-23 19:22:52', '2025-12-17 19:47:20', 'nda9aXVd', '5454607'), + (71678, 795, 1547, 'not_attending', '2022-07-23 19:22:50', '2025-12-17 19:47:20', 'nda9aXVd', '5454608'), + (71679, 795, 1549, 'not_attending', '2022-07-23 19:22:40', '2025-12-17 19:47:20', 'nda9aXVd', '5454789'), + (71680, 795, 1550, 'attending', '2022-07-23 19:23:00', '2025-12-17 19:47:20', 'nda9aXVd', '5454803'), + (71681, 795, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nda9aXVd', '5455037'), + (71682, 795, 1552, 'not_attending', '2022-07-23 19:23:08', '2025-12-17 19:47:20', 'nda9aXVd', '5455149'), + (71683, 795, 1556, 'not_attending', '2022-07-23 19:23:30', '2025-12-17 19:47:20', 'nda9aXVd', '5457734'), + (71684, 795, 1557, 'not_attending', '2022-07-29 22:04:21', '2025-12-17 19:47:21', 'nda9aXVd', '5458729'), + (71685, 795, 1558, 'maybe', '2022-08-22 15:15:09', '2025-12-17 19:47:10', 'nda9aXVd', '5458730'), + (71686, 795, 1559, 'maybe', '2022-09-06 00:37:27', '2025-12-17 19:47:11', 'nda9aXVd', '5458731'), + (71687, 795, 1560, 'maybe', '2022-08-07 02:46:39', '2025-12-17 19:47:23', 'nda9aXVd', '5458768'), + (71688, 795, 1561, 'maybe', '2022-08-07 02:46:31', '2025-12-17 19:47:22', 'nda9aXVd', '5461278'), + (71689, 795, 1562, 'not_attending', '2022-08-07 02:46:41', '2025-12-17 19:47:22', 'nda9aXVd', '5469480'), + (71690, 795, 1563, 'not_attending', '2022-07-29 22:04:14', '2025-12-17 19:47:21', 'nda9aXVd', '5469889'), + (71691, 795, 1564, 'not_attending', '2022-07-29 22:04:16', '2025-12-17 19:47:21', 'nda9aXVd', '5469890'), + (71692, 795, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'nda9aXVd', '5471073'), + (71693, 795, 1566, 'maybe', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nda9aXVd', '5474663'), + (71694, 795, 1567, 'not_attending', '2022-08-03 03:09:26', '2025-12-17 19:47:21', 'nda9aXVd', '5477629'), + (71695, 795, 1568, 'not_attending', '2022-08-01 16:01:57', '2025-12-17 19:47:21', 'nda9aXVd', '5480628'), + (71696, 795, 1569, 'maybe', '2022-08-01 16:02:04', '2025-12-17 19:47:21', 'nda9aXVd', '5481507'), + (71697, 795, 1570, 'not_attending', '2022-08-03 03:09:18', '2025-12-17 19:47:21', 'nda9aXVd', '5481830'), + (71698, 795, 1571, 'attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nda9aXVd', '5482022'), + (71699, 795, 1572, 'not_attending', '2022-08-03 03:10:37', '2025-12-17 19:47:22', 'nda9aXVd', '5482078'), + (71700, 795, 1573, 'not_attending', '2022-08-07 02:45:34', '2025-12-17 19:47:22', 'nda9aXVd', '5482152'), + (71701, 795, 1574, 'not_attending', '2022-08-07 02:45:42', '2025-12-17 19:47:22', 'nda9aXVd', '5482153'), + (71702, 795, 1575, 'maybe', '2022-08-07 02:46:46', '2025-12-17 19:47:23', 'nda9aXVd', '5482250'), + (71703, 795, 1577, 'maybe', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'nda9aXVd', '5482793'), + (71704, 795, 1578, 'not_attending', '2022-08-03 03:09:06', '2025-12-17 19:47:21', 'nda9aXVd', '5483073'), + (71705, 795, 1579, 'not_attending', '2022-08-04 03:08:59', '2025-12-17 19:47:22', 'nda9aXVd', '5486019'), + (71706, 795, 1580, 'maybe', '2022-08-07 02:45:45', '2025-12-17 19:47:22', 'nda9aXVd', '5488912'), + (71707, 795, 1581, 'attending', '2022-08-07 02:45:48', '2025-12-17 19:47:22', 'nda9aXVd', '5490302'), + (71708, 795, 1582, 'maybe', '2022-08-11 00:46:08', '2025-12-17 19:47:23', 'nda9aXVd', '5492001'), + (71709, 795, 1583, 'not_attending', '2022-08-07 23:00:04', '2025-12-17 19:47:22', 'nda9aXVd', '5492002'), + (71710, 795, 1584, 'maybe', '2022-08-26 04:10:54', '2025-12-17 19:47:23', 'nda9aXVd', '5492004'), + (71711, 795, 1586, 'not_attending', '2022-08-09 06:39:58', '2025-12-17 19:47:23', 'nda9aXVd', '5492019'), + (71712, 795, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nda9aXVd', '5492192'), + (71713, 795, 1588, 'maybe', '2022-08-09 06:38:59', '2025-12-17 19:47:22', 'nda9aXVd', '5493139'), + (71714, 795, 1589, 'not_attending', '2022-08-17 17:00:14', '2025-12-17 19:47:23', 'nda9aXVd', '5493159'), + (71715, 795, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nda9aXVd', '5493200'), + (71716, 795, 1591, 'not_attending', '2022-08-14 00:35:48', '2025-12-17 19:47:22', 'nda9aXVd', '5493764'), + (71717, 795, 1592, 'not_attending', '2022-08-09 06:38:20', '2025-12-17 19:47:22', 'nda9aXVd', '5494031'), + (71718, 795, 1593, 'maybe', '2022-08-11 00:46:26', '2025-12-17 19:47:22', 'nda9aXVd', '5494043'), + (71719, 795, 1594, 'attending', '2022-08-09 17:08:45', '2025-12-17 19:47:22', 'nda9aXVd', '5495523'), + (71720, 795, 1595, 'not_attending', '2022-08-10 15:55:10', '2025-12-17 19:47:22', 'nda9aXVd', '5495736'), + (71721, 795, 1597, 'not_attending', '2022-08-14 00:35:51', '2025-12-17 19:47:22', 'nda9aXVd', '5496566'), + (71722, 795, 1598, 'not_attending', '2022-08-14 00:35:56', '2025-12-17 19:47:22', 'nda9aXVd', '5496567'), + (71723, 795, 1599, 'maybe', '2022-08-22 15:13:49', '2025-12-17 19:47:23', 'nda9aXVd', '5496568'), + (71724, 795, 1600, 'not_attending', '2022-08-22 15:14:27', '2025-12-17 19:47:24', 'nda9aXVd', '5496569'), + (71725, 795, 1601, 'not_attending', '2022-08-14 00:35:53', '2025-12-17 19:47:22', 'nda9aXVd', '5496589'), + (71726, 795, 1602, 'not_attending', '2022-08-11 16:40:52', '2025-12-17 19:47:22', 'nda9aXVd', '5497383'), + (71727, 795, 1603, 'maybe', '2022-08-12 03:12:43', '2025-12-17 19:47:23', 'nda9aXVd', '5497895'), + (71728, 795, 1604, 'not_attending', '2022-08-17 16:59:10', '2025-12-17 19:47:22', 'nda9aXVd', '5501504'), + (71729, 795, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nda9aXVd', '5502188'), + (71730, 795, 1606, 'not_attending', '2022-08-22 15:14:17', '2025-12-17 19:47:23', 'nda9aXVd', '5504585'), + (71731, 795, 1607, 'not_attending', '2022-08-17 17:00:16', '2025-12-17 19:47:23', 'nda9aXVd', '5504589'), + (71732, 795, 1608, 'maybe', '2022-08-22 15:14:34', '2025-12-17 19:47:24', 'nda9aXVd', '5505059'), + (71733, 795, 1609, 'attending', '2022-08-22 15:13:36', '2025-12-17 19:47:23', 'nda9aXVd', '5506590'), + (71734, 795, 1610, 'not_attending', '2022-08-22 15:13:53', '2025-12-17 19:47:23', 'nda9aXVd', '5506595'), + (71735, 795, 1611, 'maybe', '2022-08-22 15:14:55', '2025-12-17 19:47:24', 'nda9aXVd', '5507652'), + (71736, 795, 1612, 'not_attending', '2022-09-06 00:37:42', '2025-12-17 19:47:12', 'nda9aXVd', '5507653'), + (71737, 795, 1613, 'not_attending', '2022-10-10 00:52:57', '2025-12-17 19:47:14', 'nda9aXVd', '5507654'), + (71738, 795, 1614, 'maybe', '2022-08-22 15:13:18', '2025-12-17 19:47:23', 'nda9aXVd', '5508371'), + (71739, 795, 1615, 'maybe', '2022-08-22 15:14:20', '2025-12-17 19:47:23', 'nda9aXVd', '5509055'), + (71740, 795, 1616, 'not_attending', '2022-08-22 15:13:02', '2025-12-17 19:47:23', 'nda9aXVd', '5509478'), + (71741, 795, 1617, 'not_attending', '2022-08-22 15:14:59', '2025-12-17 19:47:24', 'nda9aXVd', '5512003'), + (71742, 795, 1618, 'maybe', '2022-08-26 04:11:06', '2025-12-17 19:47:23', 'nda9aXVd', '5512005'), + (71743, 795, 1619, 'attending', '2022-08-23 16:02:40', '2025-12-17 19:47:23', 'nda9aXVd', '5512862'), + (71744, 795, 1620, 'not_attending', '2022-08-23 16:02:52', '2025-12-17 19:47:23', 'nda9aXVd', '5513046'), + (71745, 795, 1621, 'not_attending', '2022-08-23 16:02:16', '2025-12-17 19:47:23', 'nda9aXVd', '5513531'), + (71746, 795, 1622, 'not_attending', '2022-08-23 16:02:46', '2025-12-17 19:47:23', 'nda9aXVd', '5513677'), + (71747, 795, 1623, 'attending', '2022-08-23 16:03:03', '2025-12-17 19:47:23', 'nda9aXVd', '5513678'), + (71748, 795, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nda9aXVd', '5513985'), + (71749, 795, 1625, 'not_attending', '2022-08-26 15:17:42', '2025-12-17 19:47:23', 'nda9aXVd', '5519736'), + (71750, 795, 1626, 'not_attending', '2022-08-26 04:10:24', '2025-12-17 19:47:11', 'nda9aXVd', '5519981'), + (71751, 795, 1627, 'not_attending', '2022-09-01 15:02:35', '2025-12-17 19:47:24', 'nda9aXVd', '5521552'), + (71752, 795, 1628, 'attending', '2022-08-28 18:12:16', '2025-12-17 19:47:23', 'nda9aXVd', '5522500'), + (71753, 795, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nda9aXVd', '5522550'), + (71754, 795, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nda9aXVd', '5534683'), + (71755, 795, 1631, 'attending', '2022-08-27 22:08:18', '2025-12-17 19:47:23', 'nda9aXVd', '5534684'), + (71756, 795, 1633, 'not_attending', '2022-09-04 15:48:28', '2025-12-17 19:47:24', 'nda9aXVd', '5536575'), + (71757, 795, 1634, 'not_attending', '2022-08-29 15:21:07', '2025-12-17 19:47:23', 'nda9aXVd', '5536950'), + (71758, 795, 1635, 'not_attending', '2022-09-06 00:36:34', '2025-12-17 19:47:10', 'nda9aXVd', '5537735'), + (71759, 795, 1636, 'attending', '2022-09-04 15:28:33', '2025-12-17 19:47:24', 'nda9aXVd', '5538454'), + (71760, 795, 1637, 'not_attending', '2022-09-04 15:29:00', '2025-12-17 19:47:24', 'nda9aXVd', '5539591'), + (71761, 795, 1638, 'not_attending', '2022-09-01 15:02:33', '2025-12-17 19:47:24', 'nda9aXVd', '5540402'), + (71762, 795, 1639, 'not_attending', '2022-09-01 15:02:44', '2025-12-17 19:47:24', 'nda9aXVd', '5540403'), + (71763, 795, 1640, 'not_attending', '2022-09-06 00:36:28', '2025-12-17 19:47:10', 'nda9aXVd', '5540859'), + (71764, 795, 1641, 'maybe', '2022-09-01 15:02:04', '2025-12-17 19:47:24', 'nda9aXVd', '5544226'), + (71765, 795, 1642, 'maybe', '2022-09-04 15:49:12', '2025-12-17 19:47:24', 'nda9aXVd', '5544227'), + (71766, 795, 1643, 'attending', '2022-09-05 15:07:23', '2025-12-17 19:47:11', 'nda9aXVd', '5545856'), + (71767, 795, 1644, 'not_attending', '2022-09-06 00:36:48', '2025-12-17 19:47:11', 'nda9aXVd', '5545857'), + (71768, 795, 1645, 'maybe', '2022-09-04 15:49:23', '2025-12-17 19:47:25', 'nda9aXVd', '5546559'), + (71769, 795, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nda9aXVd', '5546619'), + (71770, 795, 1647, 'not_attending', '2022-09-06 00:36:42', '2025-12-17 19:47:11', 'nda9aXVd', '5548660'), + (71771, 795, 1648, 'not_attending', '2022-09-04 15:29:04', '2025-12-17 19:47:24', 'nda9aXVd', '5548974'), + (71772, 795, 1650, 'not_attending', '2022-09-04 15:48:15', '2025-12-17 19:47:24', 'nda9aXVd', '5549611'), + (71773, 795, 1651, 'not_attending', '2022-09-04 15:28:48', '2025-12-17 19:47:24', 'nda9aXVd', '5551425'), + (71774, 795, 1652, 'not_attending', '2022-09-06 00:35:50', '2025-12-17 19:47:24', 'nda9aXVd', '5552671'), + (71775, 795, 1653, 'not_attending', '2022-09-06 00:37:00', '2025-12-17 19:47:11', 'nda9aXVd', '5554400'), + (71776, 795, 1654, 'not_attending', '2022-09-06 00:36:08', '2025-12-17 19:47:25', 'nda9aXVd', '5554471'), + (71777, 795, 1655, 'not_attending', '2022-09-05 18:15:44', '2025-12-17 19:47:11', 'nda9aXVd', '5554482'), + (71778, 795, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'nda9aXVd', '5555245'), + (71779, 795, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nda9aXVd', '5557747'), + (71780, 795, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nda9aXVd', '5560255'), + (71781, 795, 1663, 'not_attending', '2022-09-10 16:01:15', '2025-12-17 19:47:24', 'nda9aXVd', '5562345'), + (71782, 795, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nda9aXVd', '5562906'), + (71783, 795, 1665, 'maybe', '2022-09-11 15:41:45', '2025-12-17 19:47:25', 'nda9aXVd', '5563133'), + (71784, 795, 1666, 'not_attending', '2022-09-26 19:39:49', '2025-12-17 19:47:11', 'nda9aXVd', '5563208'), + (71785, 795, 1667, 'not_attending', '2022-09-18 17:34:58', '2025-12-17 19:47:11', 'nda9aXVd', '5563221'), + (71786, 795, 1668, 'not_attending', '2022-09-26 19:40:01', '2025-12-17 19:47:12', 'nda9aXVd', '5563222'), + (71787, 795, 1669, 'not_attending', '2022-09-13 11:00:11', '2025-12-17 19:47:10', 'nda9aXVd', '5564033'), + (71788, 795, 1670, 'maybe', '2022-09-17 16:50:46', '2025-12-17 19:47:11', 'nda9aXVd', '5575076'), + (71789, 795, 1672, 'maybe', '2022-09-17 16:49:32', '2025-12-17 19:47:11', 'nda9aXVd', '5586237'), + (71790, 795, 1673, 'not_attending', '2022-09-26 19:39:54', '2025-12-17 19:47:11', 'nda9aXVd', '5592454'), + (71791, 795, 1674, 'not_attending', '2022-09-26 19:40:03', '2025-12-17 19:47:12', 'nda9aXVd', '5593112'), + (71792, 795, 1675, 'attending', '2022-09-18 21:42:58', '2025-12-17 19:47:11', 'nda9aXVd', '5593342'), + (71793, 795, 1676, 'not_attending', '2022-09-22 21:18:49', '2025-12-17 19:47:11', 'nda9aXVd', '5596181'), + (71794, 795, 1677, 'not_attending', '2022-09-21 22:52:12', '2025-12-17 19:47:11', 'nda9aXVd', '5600604'), + (71795, 795, 1679, 'not_attending', '2022-10-01 16:16:37', '2025-12-17 19:47:12', 'nda9aXVd', '5601099'), + (71796, 795, 1680, 'not_attending', '2022-09-26 19:39:47', '2025-12-17 19:47:11', 'nda9aXVd', '5601577'), + (71797, 795, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nda9aXVd', '5605544'), + (71798, 795, 1698, 'attending', '2022-09-26 19:39:30', '2025-12-17 19:47:11', 'nda9aXVd', '5606366'), + (71799, 795, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'nda9aXVd', '5606737'), + (71800, 795, 1700, 'not_attending', '2022-09-26 19:39:58', '2025-12-17 19:47:12', 'nda9aXVd', '5606814'), + (71801, 795, 1701, 'not_attending', '2022-09-28 11:39:04', '2025-12-17 19:47:11', 'nda9aXVd', '5607857'), + (71802, 795, 1702, 'not_attending', '2022-10-01 16:17:06', '2025-12-17 19:47:12', 'nda9aXVd', '5609173'), + (71803, 795, 1704, 'not_attending', '2022-10-03 02:45:46', '2025-12-17 19:47:12', 'nda9aXVd', '5610508'), + (71804, 795, 1705, 'not_attending', '2022-10-01 16:16:25', '2025-12-17 19:47:12', 'nda9aXVd', '5612209'), + (71805, 795, 1707, 'not_attending', '2022-10-01 16:17:16', '2025-12-17 19:47:12', 'nda9aXVd', '5613104'), + (71806, 795, 1708, 'maybe', '2022-10-01 16:17:00', '2025-12-17 19:47:12', 'nda9aXVd', '5617648'), + (71807, 795, 1709, 'not_attending', '2022-10-10 00:52:27', '2025-12-17 19:47:13', 'nda9aXVd', '5619533'), + (71808, 795, 1710, 'not_attending', '2022-10-03 02:45:36', '2025-12-17 19:47:12', 'nda9aXVd', '5621822'), + (71809, 795, 1711, 'not_attending', '2022-10-03 02:45:44', '2025-12-17 19:47:12', 'nda9aXVd', '5621883'), + (71810, 795, 1712, 'not_attending', '2022-10-03 02:46:18', '2025-12-17 19:47:12', 'nda9aXVd', '5622073'), + (71811, 795, 1713, 'not_attending', '2022-10-03 02:46:26', '2025-12-17 19:47:13', 'nda9aXVd', '5622108'), + (71812, 795, 1714, 'not_attending', '2022-10-10 00:52:39', '2025-12-17 19:47:14', 'nda9aXVd', '5622347'), + (71813, 795, 1715, 'not_attending', '2022-10-03 02:45:56', '2025-12-17 19:47:12', 'nda9aXVd', '5622411'), + (71814, 795, 1716, 'maybe', '2022-10-03 02:46:01', '2025-12-17 19:47:12', 'nda9aXVd', '5622429'), + (71815, 795, 1717, 'not_attending', '2022-10-03 02:46:30', '2025-12-17 19:47:13', 'nda9aXVd', '5622842'), + (71816, 795, 1718, 'not_attending', '2022-10-10 00:51:56', '2025-12-17 19:47:12', 'nda9aXVd', '5630907'), + (71817, 795, 1719, 'not_attending', '2022-10-08 22:20:51', '2025-12-17 19:47:12', 'nda9aXVd', '5630958'), + (71818, 795, 1720, 'attending', '2022-10-10 00:50:52', '2025-12-17 19:47:12', 'nda9aXVd', '5630959'), + (71819, 795, 1721, 'not_attending', '2022-10-10 00:52:22', '2025-12-17 19:47:13', 'nda9aXVd', '5630960'), + (71820, 795, 1722, 'not_attending', '2022-10-10 00:52:48', '2025-12-17 19:47:14', 'nda9aXVd', '5630961'), + (71821, 795, 1723, 'maybe', '2022-10-10 00:53:05', '2025-12-17 19:47:15', 'nda9aXVd', '5630962'), + (71822, 795, 1724, 'attending', '2022-10-31 22:52:10', '2025-12-17 19:47:15', 'nda9aXVd', '5630966'), + (71823, 795, 1725, 'not_attending', '2022-11-12 19:21:45', '2025-12-17 19:47:16', 'nda9aXVd', '5630967'), + (71824, 795, 1726, 'not_attending', '2022-11-20 22:16:22', '2025-12-17 19:47:16', 'nda9aXVd', '5630968'), + (71825, 795, 1727, 'attending', '2022-11-12 19:23:35', '2025-12-17 19:47:16', 'nda9aXVd', '5630969'), + (71826, 795, 1728, 'not_attending', '2022-12-06 15:00:38', '2025-12-17 19:47:17', 'nda9aXVd', '5630970'), + (71827, 795, 1730, 'not_attending', '2022-10-10 00:50:23', '2025-12-17 19:47:12', 'nda9aXVd', '5634666'), + (71828, 795, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nda9aXVd', '5635406'), + (71829, 795, 1733, 'not_attending', '2022-10-10 00:50:38', '2025-12-17 19:47:12', 'nda9aXVd', '5635411'), + (71830, 795, 1736, 'not_attending', '2022-10-10 00:53:01', '2025-12-17 19:47:15', 'nda9aXVd', '5638456'), + (71831, 795, 1737, 'maybe', '2022-11-29 00:47:53', '2025-12-17 19:47:16', 'nda9aXVd', '5638457'), + (71832, 795, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nda9aXVd', '5638765'), + (71833, 795, 1739, 'maybe', '2022-10-10 00:52:43', '2025-12-17 19:47:14', 'nda9aXVd', '5640097'), + (71834, 795, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'nda9aXVd', '5640843'), + (71835, 795, 1741, 'not_attending', '2022-10-10 00:50:31', '2025-12-17 19:47:12', 'nda9aXVd', '5641132'), + (71836, 795, 1742, 'not_attending', '2022-10-10 00:52:16', '2025-12-17 19:47:13', 'nda9aXVd', '5641245'), + (71837, 795, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nda9aXVd', '5641521'), + (71838, 795, 1744, 'not_attending', '2022-11-21 16:34:38', '2025-12-17 19:47:16', 'nda9aXVd', '5642818'), + (71839, 795, 1745, 'not_attending', '2022-10-15 18:29:12', '2025-12-17 19:47:12', 'nda9aXVd', '5643088'), + (71840, 795, 1747, 'not_attending', '2022-10-21 15:23:12', '2025-12-17 19:47:14', 'nda9aXVd', '5648009'), + (71841, 795, 1750, 'maybe', '2022-10-25 01:59:53', '2025-12-17 19:47:15', 'nda9aXVd', '5652365'), + (71842, 795, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nda9aXVd', '5652395'), + (71843, 795, 1752, 'not_attending', '2022-10-15 18:29:18', '2025-12-17 19:47:12', 'nda9aXVd', '5653503'), + (71844, 795, 1753, 'not_attending', '2022-10-21 15:22:53', '2025-12-17 19:47:13', 'nda9aXVd', '5656228'), + (71845, 795, 1756, 'not_attending', '2022-10-21 15:23:08', '2025-12-17 19:47:13', 'nda9aXVd', '5663338'), + (71846, 795, 1757, 'not_attending', '2022-10-25 01:59:49', '2025-12-17 19:47:15', 'nda9aXVd', '5668974'), + (71847, 795, 1758, 'not_attending', '2022-10-21 15:22:55', '2025-12-17 19:47:13', 'nda9aXVd', '5668976'), + (71848, 795, 1759, 'not_attending', '2022-10-21 15:23:02', '2025-12-17 19:47:13', 'nda9aXVd', '5669097'), + (71849, 795, 1761, 'maybe', '2022-11-12 19:21:17', '2025-12-17 19:47:16', 'nda9aXVd', '5670434'), + (71850, 795, 1762, 'not_attending', '2022-11-12 19:23:22', '2025-12-17 19:47:16', 'nda9aXVd', '5670445'), + (71851, 795, 1763, 'attending', '2022-10-31 22:51:57', '2025-12-17 19:47:15', 'nda9aXVd', '5670803'), + (71852, 795, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nda9aXVd', '5671637'), + (71853, 795, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nda9aXVd', '5672329'), + (71854, 795, 1766, 'maybe', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nda9aXVd', '5674057'), + (71855, 795, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nda9aXVd', '5674060'), + (71856, 795, 1768, 'maybe', '2022-11-12 19:21:47', '2025-12-17 19:47:16', 'nda9aXVd', '5674062'), + (71857, 795, 1769, 'not_attending', '2022-10-31 22:51:19', '2025-12-17 19:47:15', 'nda9aXVd', '5676351'), + (71858, 795, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nda9aXVd', '5677461'), + (71859, 795, 1773, 'not_attending', '2022-10-30 00:18:13', '2025-12-17 19:47:14', 'nda9aXVd', '5677707'), + (71860, 795, 1774, 'not_attending', '2022-10-31 22:51:13', '2025-12-17 19:47:15', 'nda9aXVd', '5677843'), + (71861, 795, 1776, 'maybe', '2022-10-31 22:51:53', '2025-12-17 19:47:15', 'nda9aXVd', '5691067'), + (71862, 795, 1777, 'not_attending', '2022-10-31 22:51:47', '2025-12-17 19:47:15', 'nda9aXVd', '5693021'), + (71863, 795, 1778, 'not_attending', '2022-10-31 22:51:04', '2025-12-17 19:47:15', 'nda9aXVd', '5694251'), + (71864, 795, 1779, 'maybe', '2022-10-31 22:51:40', '2025-12-17 19:47:15', 'nda9aXVd', '5694252'), + (71865, 795, 1780, 'not_attending', '2022-11-07 13:15:53', '2025-12-17 19:47:15', 'nda9aXVd', '5696082'), + (71866, 795, 1781, 'not_attending', '2022-11-02 23:00:21', '2025-12-17 19:47:15', 'nda9aXVd', '5696178'), + (71867, 795, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nda9aXVd', '5698046'), + (71868, 795, 1783, 'not_attending', '2022-11-12 19:21:13', '2025-12-17 19:47:16', 'nda9aXVd', '5698621'), + (71869, 795, 1784, 'maybe', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'nda9aXVd', '5699760'), + (71870, 795, 1785, 'not_attending', '2022-11-12 19:20:53', '2025-12-17 19:47:15', 'nda9aXVd', '5702414'), + (71871, 795, 1786, 'not_attending', '2022-11-07 13:16:16', '2025-12-17 19:47:15', 'nda9aXVd', '5727232'), + (71872, 795, 1787, 'not_attending', '2022-11-12 19:21:02', '2025-12-17 19:47:16', 'nda9aXVd', '5727234'), + (71873, 795, 1788, 'attending', '2022-11-06 23:51:12', '2025-12-17 19:47:16', 'nda9aXVd', '5727236'), + (71874, 795, 1789, 'attending', '2022-11-07 00:35:05', '2025-12-17 19:47:15', 'nda9aXVd', '5727274'), + (71875, 795, 1790, 'not_attending', '2022-11-07 13:16:18', '2025-12-17 19:47:15', 'nda9aXVd', '5727424'), + (71876, 795, 1792, 'not_attending', '2022-11-12 01:37:40', '2025-12-17 19:47:15', 'nda9aXVd', '5728512'), + (71877, 795, 1793, 'not_attending', '2022-11-12 19:22:02', '2025-12-17 19:47:16', 'nda9aXVd', '5736365'), + (71878, 795, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nda9aXVd', '5741601'), + (71879, 795, 1795, 'not_attending', '2022-11-17 01:04:09', '2025-12-17 19:47:16', 'nda9aXVd', '5754366'), + (71880, 795, 1796, 'not_attending', '2022-11-21 16:34:14', '2025-12-17 19:47:16', 'nda9aXVd', '5756755'), + (71881, 795, 1797, 'not_attending', '2022-11-29 00:48:36', '2025-12-17 19:47:17', 'nda9aXVd', '5757486'), + (71882, 795, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nda9aXVd', '5763458'), + (71883, 795, 1799, 'not_attending', '2022-11-20 22:16:25', '2025-12-17 19:47:16', 'nda9aXVd', '5764666'), + (71884, 795, 1801, 'maybe', '2022-11-29 00:48:17', '2025-12-17 19:47:16', 'nda9aXVd', '5764668'), + (71885, 795, 1802, 'not_attending', '2022-12-06 15:00:33', '2025-12-17 19:47:17', 'nda9aXVd', '5764669'), + (71886, 795, 1803, 'maybe', '2022-12-28 01:02:03', '2025-12-17 19:47:05', 'nda9aXVd', '5764673'), + (71887, 795, 1804, 'maybe', '2023-01-21 18:04:23', '2025-12-17 19:47:06', 'nda9aXVd', '5764674'), + (71888, 795, 1805, 'not_attending', '2023-02-03 20:06:04', '2025-12-17 19:47:06', 'nda9aXVd', '5764675'), + (71889, 795, 1806, 'maybe', '2023-01-08 22:19:27', '2025-12-17 19:47:05', 'nda9aXVd', '5764676'), + (71890, 795, 1807, 'maybe', '2023-01-08 22:19:25', '2025-12-17 19:47:05', 'nda9aXVd', '5764677'), + (71891, 795, 1808, 'not_attending', '2023-02-26 02:54:35', '2025-12-17 19:47:08', 'nda9aXVd', '5764678'), + (71892, 795, 1809, 'not_attending', '2023-04-15 11:41:22', '2025-12-17 19:46:59', 'nda9aXVd', '5764679'), + (71893, 795, 1810, 'not_attending', '2023-04-18 17:22:35', '2025-12-17 19:47:00', 'nda9aXVd', '5764680'), + (71894, 795, 1811, 'not_attending', '2023-05-04 10:47:26', '2025-12-17 19:47:02', 'nda9aXVd', '5764681'), + (71895, 795, 1812, 'not_attending', '2023-02-26 03:02:21', '2025-12-17 19:47:09', 'nda9aXVd', '5764682'), + (71896, 795, 1813, 'not_attending', '2023-04-18 17:41:38', '2025-12-17 19:47:01', 'nda9aXVd', '5764683'), + (71897, 795, 1814, 'not_attending', '2023-02-17 08:18:14', '2025-12-17 19:47:08', 'nda9aXVd', '5764684'), + (71898, 795, 1815, 'not_attending', '2023-02-17 08:17:16', '2025-12-17 19:47:07', 'nda9aXVd', '5764685'), + (71899, 795, 1816, 'maybe', '2023-05-05 11:23:12', '2025-12-17 19:47:03', 'nda9aXVd', '5764686'), + (71900, 795, 1817, 'maybe', '2023-02-26 03:02:28', '2025-12-17 19:46:57', 'nda9aXVd', '5764687'), + (71901, 795, 1818, 'maybe', '2023-02-06 16:38:51', '2025-12-17 19:47:07', 'nda9aXVd', '5764688'), + (71902, 795, 1819, 'not_attending', '2023-04-05 16:23:43', '2025-12-17 19:46:58', 'nda9aXVd', '5764689'), + (71903, 795, 1820, 'maybe', '2023-04-05 16:25:49', '2025-12-17 19:46:58', 'nda9aXVd', '5764690'), + (71904, 795, 1821, 'not_attending', '2023-02-26 02:55:18', '2025-12-17 19:46:56', 'nda9aXVd', '5764691'), + (71905, 795, 1822, 'not_attending', '2023-05-05 11:22:53', '2025-12-17 19:47:02', 'nda9aXVd', '5764692'), + (71906, 795, 1823, 'not_attending', '2022-11-29 00:48:31', '2025-12-17 19:47:16', 'nda9aXVd', '5768880'), + (71907, 795, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nda9aXVd', '5774172'), + (71908, 795, 1825, 'not_attending', '2022-11-29 00:48:33', '2025-12-17 19:47:16', 'nda9aXVd', '5776760'), + (71909, 795, 1826, 'maybe', '2022-12-08 06:54:22', '2025-12-17 19:47:04', 'nda9aXVd', '5776768'), + (71910, 795, 1827, 'not_attending', '2022-11-29 00:47:44', '2025-12-17 19:47:16', 'nda9aXVd', '5776786'), + (71911, 795, 1828, 'maybe', '2022-11-29 00:47:55', '2025-12-17 19:47:16', 'nda9aXVd', '5778865'), + (71912, 795, 1829, 'maybe', '2022-11-29 00:48:25', '2025-12-17 19:47:16', 'nda9aXVd', '5778867'), + (71913, 795, 1830, 'not_attending', '2022-11-29 00:47:45', '2025-12-17 19:47:16', 'nda9aXVd', '5778871'), + (71914, 795, 1831, 'not_attending', '2022-12-06 15:00:25', '2025-12-17 19:47:16', 'nda9aXVd', '5813239'), + (71915, 795, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nda9aXVd', '5818247'), + (71916, 795, 1833, 'not_attending', '2022-12-05 04:49:51', '2025-12-17 19:47:16', 'nda9aXVd', '5819465'), + (71917, 795, 1834, 'not_attending', '2022-12-06 15:00:35', '2025-12-17 19:47:17', 'nda9aXVd', '5819470'), + (71918, 795, 1835, 'maybe', '2022-12-08 06:54:00', '2025-12-17 19:47:05', 'nda9aXVd', '5819471'), + (71919, 795, 1836, 'not_attending', '2022-12-05 16:51:03', '2025-12-17 19:47:16', 'nda9aXVd', '5819484'), + (71920, 795, 1837, 'not_attending', '2022-12-06 21:40:03', '2025-12-17 19:47:16', 'nda9aXVd', '5820146'), + (71921, 795, 1838, 'not_attending', '2022-12-06 15:00:08', '2025-12-17 19:47:16', 'nda9aXVd', '5821722'), + (71922, 795, 1839, 'not_attending', '2022-12-08 06:54:17', '2025-12-17 19:47:04', 'nda9aXVd', '5821920'), + (71923, 795, 1840, 'not_attending', '2022-12-06 15:00:29', '2025-12-17 19:47:16', 'nda9aXVd', '5822288'), + (71924, 795, 1841, 'maybe', '2022-12-09 04:01:31', '2025-12-17 19:47:05', 'nda9aXVd', '5827665'), + (71925, 795, 1842, 'not_attending', '2022-12-09 04:01:11', '2025-12-17 19:47:04', 'nda9aXVd', '5827739'), + (71926, 795, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nda9aXVd', '5844306'), + (71927, 795, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nda9aXVd', '5850159'), + (71928, 795, 1848, 'not_attending', '2022-12-28 01:02:00', '2025-12-17 19:47:05', 'nda9aXVd', '5852466'), + (71929, 795, 1849, 'maybe', '2022-12-28 01:01:57', '2025-12-17 19:47:05', 'nda9aXVd', '5852467'), + (71930, 795, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nda9aXVd', '5858999'), + (71931, 795, 1851, 'not_attending', '2023-01-08 22:19:20', '2025-12-17 19:47:05', 'nda9aXVd', '5869316'), + (71932, 795, 1852, 'maybe', '2023-01-09 17:39:00', '2025-12-17 19:47:05', 'nda9aXVd', '5869898'), + (71933, 795, 1853, 'maybe', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nda9aXVd', '5871984'), + (71934, 795, 1855, 'attending', '2023-01-13 13:37:26', '2025-12-17 19:47:05', 'nda9aXVd', '5873968'), + (71935, 795, 1856, 'not_attending', '2023-01-14 21:30:13', '2025-12-17 19:47:05', 'nda9aXVd', '5873970'), + (71936, 795, 1857, 'attending', '2023-01-21 18:04:13', '2025-12-17 19:47:05', 'nda9aXVd', '5873973'), + (71937, 795, 1858, 'not_attending', '2023-01-14 21:30:11', '2025-12-17 19:47:05', 'nda9aXVd', '5875044'), + (71938, 795, 1859, 'maybe', '2023-01-14 21:30:44', '2025-12-17 19:47:05', 'nda9aXVd', '5876234'), + (71939, 795, 1860, 'not_attending', '2023-01-14 21:30:30', '2025-12-17 19:47:05', 'nda9aXVd', '5876309'), + (71940, 795, 1861, 'not_attending', '2023-01-14 21:30:23', '2025-12-17 19:47:05', 'nda9aXVd', '5876354'), + (71941, 795, 1862, 'not_attending', '2023-02-03 20:06:09', '2025-12-17 19:47:06', 'nda9aXVd', '5877254'), + (71942, 795, 1863, 'maybe', '2023-01-21 18:04:29', '2025-12-17 19:47:06', 'nda9aXVd', '5877255'), + (71943, 795, 1865, 'attending', '2023-01-21 18:04:26', '2025-12-17 19:47:06', 'nda9aXVd', '5879676'), + (71944, 795, 1866, 'not_attending', '2023-01-21 18:04:17', '2025-12-17 19:47:05', 'nda9aXVd', '5880939'), + (71945, 795, 1867, 'not_attending', '2023-02-03 20:06:16', '2025-12-17 19:47:07', 'nda9aXVd', '5880940'), + (71946, 795, 1868, 'not_attending', '2023-02-17 08:18:05', '2025-12-17 19:47:07', 'nda9aXVd', '5880942'), + (71947, 795, 1869, 'not_attending', '2023-02-26 02:54:49', '2025-12-17 19:47:09', 'nda9aXVd', '5880943'), + (71948, 795, 1873, 'not_attending', '2023-01-21 18:04:05', '2025-12-17 19:47:05', 'nda9aXVd', '5885295'), + (71949, 795, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nda9aXVd', '5887890'), + (71950, 795, 1875, 'not_attending', '2023-01-24 05:04:00', '2025-12-17 19:47:06', 'nda9aXVd', '5887908'), + (71951, 795, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nda9aXVd', '5888598'), + (71952, 795, 1877, 'not_attending', '2023-01-23 02:40:19', '2025-12-17 19:47:05', 'nda9aXVd', '5888693'), + (71953, 795, 1878, 'not_attending', '2023-02-03 20:06:13', '2025-12-17 19:47:07', 'nda9aXVd', '5893000'), + (71954, 795, 1879, 'maybe', '2023-01-24 20:52:56', '2025-12-17 19:47:06', 'nda9aXVd', '5893001'), + (71955, 795, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nda9aXVd', '5893260'), + (71956, 795, 1881, 'not_attending', '2023-02-05 15:40:09', '2025-12-17 19:47:07', 'nda9aXVd', '5894218'), + (71957, 795, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nda9aXVd', '5899826'), + (71958, 795, 1885, 'not_attending', '2023-02-17 08:18:12', '2025-12-17 19:47:08', 'nda9aXVd', '5899928'), + (71959, 795, 1886, 'maybe', '2023-02-26 02:54:51', '2025-12-17 19:47:09', 'nda9aXVd', '5899930'), + (71960, 795, 1889, 'maybe', '2023-02-03 20:06:19', '2025-12-17 19:47:07', 'nda9aXVd', '5900199'), + (71961, 795, 1890, 'not_attending', '2023-02-17 08:18:08', '2025-12-17 19:47:08', 'nda9aXVd', '5900200'), + (71962, 795, 1891, 'maybe', '2023-03-19 21:12:55', '2025-12-17 19:46:56', 'nda9aXVd', '5900202'), + (71963, 795, 1892, 'not_attending', '2023-02-26 03:02:32', '2025-12-17 19:46:56', 'nda9aXVd', '5900203'), + (71964, 795, 1894, 'not_attending', '2023-02-03 20:05:49', '2025-12-17 19:47:06', 'nda9aXVd', '5901100'), + (71965, 795, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nda9aXVd', '5901108'), + (71966, 795, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nda9aXVd', '5901126'), + (71967, 795, 1897, 'attending', '2023-02-06 16:38:54', '2025-12-17 19:47:07', 'nda9aXVd', '5901128'), + (71968, 795, 1899, 'not_attending', '2023-02-03 20:06:23', '2025-12-17 19:47:07', 'nda9aXVd', '5901323'), + (71969, 795, 1900, 'not_attending', '2023-02-03 20:05:54', '2025-12-17 19:47:06', 'nda9aXVd', '5901331'), + (71970, 795, 1901, 'not_attending', '2023-02-03 20:06:11', '2025-12-17 19:47:07', 'nda9aXVd', '5901606'), + (71971, 795, 1902, 'not_attending', '2023-02-03 20:06:03', '2025-12-17 19:47:06', 'nda9aXVd', '5902254'), + (71972, 795, 1904, 'not_attending', '2023-02-03 20:06:21', '2025-12-17 19:47:07', 'nda9aXVd', '5903239'), + (71973, 795, 1905, 'not_attending', '2023-02-03 20:06:08', '2025-12-17 19:47:06', 'nda9aXVd', '5904479'), + (71974, 795, 1906, 'not_attending', '2023-02-26 02:54:56', '2025-12-17 19:47:09', 'nda9aXVd', '5904523'), + (71975, 795, 1909, 'not_attending', '2023-02-06 16:38:21', '2025-12-17 19:47:07', 'nda9aXVd', '5906541'), + (71976, 795, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nda9aXVd', '5909655'), + (71977, 795, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nda9aXVd', '5910522'), + (71978, 795, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nda9aXVd', '5910526'), + (71979, 795, 1917, 'maybe', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nda9aXVd', '5910528'), + (71980, 795, 1920, 'attending', '2023-02-09 21:08:06', '2025-12-17 19:47:07', 'nda9aXVd', '5914091'), + (71981, 795, 1921, 'attending', '2023-02-09 21:08:04', '2025-12-17 19:47:08', 'nda9aXVd', '5914092'), + (71982, 795, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nda9aXVd', '5916219'), + (71983, 795, 1923, 'not_attending', '2023-02-16 22:29:20', '2025-12-17 19:47:07', 'nda9aXVd', '5930436'), + (71984, 795, 1924, 'not_attending', '2023-02-17 08:18:01', '2025-12-17 19:47:07', 'nda9aXVd', '5931095'), + (71985, 795, 1926, 'not_attending', '2023-02-26 02:54:23', '2025-12-17 19:47:08', 'nda9aXVd', '5932620'), + (71986, 795, 1927, 'not_attending', '2023-02-26 03:02:38', '2025-12-17 19:47:10', 'nda9aXVd', '5932621'), + (71987, 795, 1930, 'not_attending', '2023-02-25 01:56:45', '2025-12-17 19:47:08', 'nda9aXVd', '5933462'), + (71988, 795, 1931, 'not_attending', '2023-02-25 01:56:46', '2025-12-17 19:47:08', 'nda9aXVd', '5933464'), + (71989, 795, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nda9aXVd', '5936234'), + (71990, 795, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nda9aXVd', '5958351'), + (71991, 795, 1936, 'not_attending', '2023-02-26 02:53:23', '2025-12-17 19:47:08', 'nda9aXVd', '5959397'), + (71992, 795, 1937, 'not_attending', '2023-02-25 01:56:43', '2025-12-17 19:47:08', 'nda9aXVd', '5959584'), + (71993, 795, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nda9aXVd', '5959751'), + (71994, 795, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nda9aXVd', '5959755'), + (71995, 795, 1940, 'maybe', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nda9aXVd', '5960055'), + (71996, 795, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nda9aXVd', '5961684'), + (71997, 795, 1942, 'maybe', '2023-02-26 02:54:20', '2025-12-17 19:47:08', 'nda9aXVd', '5962085'), + (71998, 795, 1943, 'not_attending', '2023-02-26 03:02:46', '2025-12-17 19:47:10', 'nda9aXVd', '5962091'), + (71999, 795, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nda9aXVd', '5962132'), + (72000, 795, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nda9aXVd', '5962133'), + (72001, 795, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nda9aXVd', '5962134'), + (72002, 795, 1947, 'not_attending', '2023-02-26 02:54:39', '2025-12-17 19:47:09', 'nda9aXVd', '5962233'), + (72003, 795, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nda9aXVd', '5962317'), + (72004, 795, 1949, 'maybe', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nda9aXVd', '5962318'), + (72005, 795, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nda9aXVd', '5965933'), + (72006, 795, 1952, 'not_attending', '2023-03-01 18:25:08', '2025-12-17 19:47:08', 'nda9aXVd', '5965937'), + (72007, 795, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nda9aXVd', '5967014'), + (72008, 795, 1955, 'maybe', '2023-03-25 13:33:30', '2025-12-17 19:46:57', 'nda9aXVd', '5972529'), + (72009, 795, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'nda9aXVd', '5972763'), + (72010, 795, 1957, 'maybe', '2023-03-06 06:10:48', '2025-12-17 19:47:10', 'nda9aXVd', '5972815'), + (72011, 795, 1958, 'not_attending', '2023-03-06 16:54:05', '2025-12-17 19:47:09', 'nda9aXVd', '5972821'), + (72012, 795, 1959, 'maybe', '2023-03-13 04:01:28', '2025-12-17 19:46:57', 'nda9aXVd', '5972829'), + (72013, 795, 1960, 'maybe', '2023-03-11 02:42:48', '2025-12-17 19:47:09', 'nda9aXVd', '5973267'), + (72014, 795, 1961, 'maybe', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nda9aXVd', '5974016'), + (72015, 795, 1963, 'not_attending', '2023-03-11 02:43:03', '2025-12-17 19:47:10', 'nda9aXVd', '5975054'), + (72016, 795, 1964, 'not_attending', '2023-03-11 02:42:44', '2025-12-17 19:47:09', 'nda9aXVd', '5977129'), + (72017, 795, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nda9aXVd', '5981515'), + (72018, 795, 1967, 'not_attending', '2023-03-13 04:00:23', '2025-12-17 19:47:10', 'nda9aXVd', '5985650'), + (72019, 795, 1968, 'not_attending', '2023-03-13 04:00:36', '2025-12-17 19:47:10', 'nda9aXVd', '5993515'), + (72020, 795, 1969, 'maybe', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nda9aXVd', '5993516'), + (72021, 795, 1970, 'maybe', '2023-03-19 21:12:36', '2025-12-17 19:46:56', 'nda9aXVd', '5993758'), + (72022, 795, 1971, 'attending', '2023-03-13 03:53:06', '2025-12-17 19:46:56', 'nda9aXVd', '5993765'), + (72023, 795, 1972, 'maybe', '2023-03-17 01:00:37', '2025-12-17 19:46:56', 'nda9aXVd', '5993776'), + (72024, 795, 1973, 'maybe', '2023-03-17 01:02:09', '2025-12-17 19:46:56', 'nda9aXVd', '5993777'), + (72025, 795, 1974, 'maybe', '2023-03-25 13:33:32', '2025-12-17 19:46:57', 'nda9aXVd', '5993778'), + (72026, 795, 1975, 'not_attending', '2023-03-13 23:08:23', '2025-12-17 19:46:57', 'nda9aXVd', '5995351'), + (72027, 795, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nda9aXVd', '5998939'), + (72028, 795, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nda9aXVd', '6028191'), + (72029, 795, 1980, 'not_attending', '2023-03-25 13:33:25', '2025-12-17 19:46:57', 'nda9aXVd', '6036032'), + (72030, 795, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nda9aXVd', '6040066'), + (72031, 795, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nda9aXVd', '6042717'), + (72032, 795, 1985, 'not_attending', '2023-03-27 11:42:33', '2025-12-17 19:46:57', 'nda9aXVd', '6043041'), + (72033, 795, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nda9aXVd', '6044838'), + (72034, 795, 1987, 'not_attending', '2023-04-15 11:41:35', '2025-12-17 19:47:00', 'nda9aXVd', '6044839'), + (72035, 795, 1989, 'maybe', '2023-05-05 11:23:01', '2025-12-17 19:47:03', 'nda9aXVd', '6044842'), + (72036, 795, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'nda9aXVd', '6045684'), + (72037, 795, 1991, 'not_attending', '2023-04-05 16:23:46', '2025-12-17 19:46:58', 'nda9aXVd', '6047354'), + (72038, 795, 1992, 'not_attending', '2023-04-05 16:23:48', '2025-12-17 19:46:58', 'nda9aXVd', '6048742'), + (72039, 795, 1993, 'not_attending', '2023-04-05 16:24:01', '2025-12-17 19:46:58', 'nda9aXVd', '6048955'), + (72040, 795, 1994, 'maybe', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nda9aXVd', '6050104'), + (72041, 795, 1995, 'not_attending', '2023-04-05 16:24:34', '2025-12-17 19:46:58', 'nda9aXVd', '6050663'), + (72042, 795, 1996, 'not_attending', '2023-04-05 16:23:50', '2025-12-17 19:46:58', 'nda9aXVd', '6050667'), + (72043, 795, 1997, 'not_attending', '2023-04-05 16:24:38', '2025-12-17 19:46:58', 'nda9aXVd', '6051604'), + (72044, 795, 1999, 'maybe', '2023-04-15 11:41:50', '2025-12-17 19:47:00', 'nda9aXVd', '6052057'), + (72045, 795, 2000, 'not_attending', '2023-04-05 16:24:40', '2025-12-17 19:46:58', 'nda9aXVd', '6052107'), + (72046, 795, 2001, 'not_attending', '2023-04-05 16:24:32', '2025-12-17 19:46:58', 'nda9aXVd', '6052569'), + (72047, 795, 2002, 'not_attending', '2023-04-18 17:22:04', '2025-12-17 19:47:01', 'nda9aXVd', '6052605'), + (72048, 795, 2003, 'not_attending', '2023-05-05 11:23:08', '2025-12-17 19:47:03', 'nda9aXVd', '6052606'), + (72049, 795, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nda9aXVd', '6053195'), + (72050, 795, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nda9aXVd', '6053198'), + (72051, 795, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nda9aXVd', '6056085'), + (72052, 795, 2011, 'attending', '2023-04-08 21:15:45', '2025-12-17 19:46:59', 'nda9aXVd', '6056916'), + (72053, 795, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nda9aXVd', '6059290'), + (72054, 795, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nda9aXVd', '6060328'), + (72055, 795, 2014, 'not_attending', '2023-04-15 11:41:17', '2025-12-17 19:46:59', 'nda9aXVd', '6060337'), + (72056, 795, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nda9aXVd', '6061037'), + (72057, 795, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nda9aXVd', '6061039'), + (72058, 795, 2018, 'not_attending', '2023-04-15 11:41:15', '2025-12-17 19:46:59', 'nda9aXVd', '6061171'), + (72059, 795, 2019, 'not_attending', '2023-04-15 11:41:49', '2025-12-17 19:47:00', 'nda9aXVd', '6062934'), + (72060, 795, 2021, 'maybe', '2023-04-16 14:33:45', '2025-12-17 19:47:00', 'nda9aXVd', '6066316'), + (72061, 795, 2022, 'not_attending', '2023-05-05 11:23:32', '2025-12-17 19:47:03', 'nda9aXVd', '6067245'), + (72062, 795, 2023, 'maybe', '2023-04-17 13:12:08', '2025-12-17 19:47:00', 'nda9aXVd', '6067396'), + (72063, 795, 2024, 'not_attending', '2023-04-17 13:12:28', '2025-12-17 19:47:00', 'nda9aXVd', '6067437'), + (72064, 795, 2025, 'maybe', '2023-04-17 13:12:53', '2025-12-17 19:47:00', 'nda9aXVd', '6067457'), + (72065, 795, 2026, 'maybe', '2023-04-18 17:21:59', '2025-12-17 19:47:01', 'nda9aXVd', '6068078'), + (72066, 795, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nda9aXVd', '6068094'), + (72067, 795, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nda9aXVd', '6068252'), + (72068, 795, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nda9aXVd', '6068253'), + (72069, 795, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nda9aXVd', '6068254'), + (72070, 795, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'nda9aXVd', '6068280'), + (72071, 795, 2032, 'not_attending', '2023-05-25 23:05:03', '2025-12-17 19:47:04', 'nda9aXVd', '6068281'), + (72072, 795, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nda9aXVd', '6069093'), + (72073, 795, 2035, 'not_attending', '2023-05-03 20:00:45', '2025-12-17 19:47:02', 'nda9aXVd', '6070142'), + (72074, 795, 2038, 'not_attending', '2023-04-27 16:44:11', '2025-12-17 19:47:01', 'nda9aXVd', '6071944'), + (72075, 795, 2040, 'not_attending', '2023-04-27 16:44:16', '2025-12-17 19:47:01', 'nda9aXVd', '6072453'), + (72076, 795, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nda9aXVd', '6072528'), + (72077, 795, 2042, 'not_attending', '2023-04-27 16:43:55', '2025-12-17 19:47:01', 'nda9aXVd', '6072941'), + (72078, 795, 2044, 'maybe', '2023-04-27 16:44:54', '2025-12-17 19:47:03', 'nda9aXVd', '6073678'), + (72079, 795, 2045, 'not_attending', '2023-04-27 16:44:00', '2025-12-17 19:47:01', 'nda9aXVd', '6075556'), + (72080, 795, 2046, 'maybe', '2023-05-05 11:22:48', '2025-12-17 19:47:02', 'nda9aXVd', '6076020'), + (72081, 795, 2047, 'not_attending', '2023-05-05 11:22:35', '2025-12-17 19:47:02', 'nda9aXVd', '6076027'), + (72082, 795, 2048, 'not_attending', '2023-05-05 11:22:57', '2025-12-17 19:47:03', 'nda9aXVd', '6076415'), + (72083, 795, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nda9aXVd', '6079840'), + (72084, 795, 2050, 'maybe', '2023-05-05 11:22:38', '2025-12-17 19:47:02', 'nda9aXVd', '6080489'), + (72085, 795, 2051, 'maybe', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nda9aXVd', '6083398'), + (72086, 795, 2052, 'not_attending', '2023-05-05 11:22:32', '2025-12-17 19:47:02', 'nda9aXVd', '6088220'), + (72087, 795, 2054, 'not_attending', '2023-05-10 22:01:36', '2025-12-17 19:47:03', 'nda9aXVd', '6093445'), + (72088, 795, 2055, 'not_attending', '2023-05-10 22:01:39', '2025-12-17 19:47:03', 'nda9aXVd', '6093473'), + (72089, 795, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nda9aXVd', '6093504'), + (72090, 795, 2057, 'not_attending', '2023-05-09 11:34:02', '2025-12-17 19:47:02', 'nda9aXVd', '6093692'), + (72091, 795, 2058, 'maybe', '2023-05-09 11:34:06', '2025-12-17 19:47:02', 'nda9aXVd', '6096374'), + (72092, 795, 2059, 'maybe', '2023-05-10 22:01:11', '2025-12-17 19:47:02', 'nda9aXVd', '6097361'), + (72093, 795, 2060, 'maybe', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nda9aXVd', '6097414'), + (72094, 795, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nda9aXVd', '6097442'), + (72095, 795, 2062, 'maybe', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nda9aXVd', '6097684'), + (72096, 795, 2063, 'maybe', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nda9aXVd', '6098762'), + (72097, 795, 2064, 'maybe', '2023-06-24 20:22:32', '2025-12-17 19:46:50', 'nda9aXVd', '6099988'), + (72098, 795, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nda9aXVd', '6101361'), + (72099, 795, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nda9aXVd', '6101362'), + (72100, 795, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'nda9aXVd', '6103752'), + (72101, 795, 2072, 'attending', '2023-05-15 11:16:27', '2025-12-17 19:47:03', 'nda9aXVd', '6105573'), + (72102, 795, 2073, 'maybe', '2023-05-19 18:43:23', '2025-12-17 19:47:03', 'nda9aXVd', '6106002'), + (72103, 795, 2074, 'not_attending', '2023-05-22 18:55:52', '2025-12-17 19:47:03', 'nda9aXVd', '6107312'), + (72104, 795, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nda9aXVd', '6107314'), + (72105, 795, 2076, 'not_attending', '2023-05-19 18:42:58', '2025-12-17 19:47:03', 'nda9aXVd', '6108350'), + (72106, 795, 2078, 'not_attending', '2023-05-22 18:56:03', '2025-12-17 19:47:03', 'nda9aXVd', '6114163'), + (72107, 795, 2079, 'maybe', '2023-05-22 18:56:14', '2025-12-17 19:47:03', 'nda9aXVd', '6114521'), + (72108, 795, 2080, 'not_attending', '2023-05-22 18:56:24', '2025-12-17 19:47:04', 'nda9aXVd', '6114677'), + (72109, 795, 2081, 'not_attending', '2023-05-22 18:56:05', '2025-12-17 19:47:03', 'nda9aXVd', '6115611'), + (72110, 795, 2083, 'attending', '2023-05-24 18:37:19', '2025-12-17 19:47:04', 'nda9aXVd', '6115629'), + (72111, 795, 2084, 'maybe', '2023-05-25 23:04:37', '2025-12-17 19:47:04', 'nda9aXVd', '6117127'), + (72112, 795, 2085, 'maybe', '2023-05-25 23:05:05', '2025-12-17 19:47:04', 'nda9aXVd', '6118068'), + (72113, 795, 2086, 'maybe', '2023-05-28 14:26:54', '2025-12-17 19:47:04', 'nda9aXVd', '6119877'), + (72114, 795, 2087, 'maybe', '2023-05-28 14:26:47', '2025-12-17 19:47:04', 'nda9aXVd', '6120034'), + (72115, 795, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nda9aXVd', '6136733'), + (72116, 795, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nda9aXVd', '6137989'), + (72117, 795, 2103, 'not_attending', '2023-06-19 20:41:07', '2025-12-17 19:46:50', 'nda9aXVd', '6149451'), + (72118, 795, 2105, 'attending', '2023-06-18 22:58:24', '2025-12-17 19:46:50', 'nda9aXVd', '6149551'), + (72119, 795, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nda9aXVd', '6150864'), + (72120, 795, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nda9aXVd', '6155491'), + (72121, 795, 2115, 'not_attending', '2023-06-30 16:33:58', '2025-12-17 19:46:50', 'nda9aXVd', '6161437'), + (72122, 795, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nda9aXVd', '6164417'), + (72123, 795, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nda9aXVd', '6166388'), + (72124, 795, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nda9aXVd', '6176439'), + (72125, 795, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nda9aXVd', '6182410'), + (72126, 795, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nda9aXVd', '6185812'), + (72127, 795, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nda9aXVd', '6187651'), + (72128, 795, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nda9aXVd', '6187963'), + (72129, 795, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nda9aXVd', '6187964'), + (72130, 795, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nda9aXVd', '6187966'), + (72131, 795, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nda9aXVd', '6187967'), + (72132, 795, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nda9aXVd', '6187969'), + (72133, 795, 2139, 'maybe', '2023-07-11 20:33:32', '2025-12-17 19:46:52', 'nda9aXVd', '6188027'), + (72134, 795, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nda9aXVd', '6334878'), + (72135, 795, 2147, 'maybe', '2023-07-11 20:33:42', '2025-12-17 19:46:52', 'nda9aXVd', '6335666'), + (72136, 795, 2150, 'not_attending', '2023-07-11 20:33:19', '2025-12-17 19:46:52', 'nda9aXVd', '6335687'), + (72137, 795, 2151, 'not_attending', '2023-07-11 20:33:36', '2025-12-17 19:46:52', 'nda9aXVd', '6335700'), + (72138, 795, 2152, 'maybe', '2023-07-11 20:33:30', '2025-12-17 19:46:52', 'nda9aXVd', '6337021'), + (72139, 795, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nda9aXVd', '6337236'), + (72140, 795, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nda9aXVd', '6337970'), + (72141, 795, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nda9aXVd', '6338308'), + (72142, 795, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'nda9aXVd', '6340845'), + (72143, 795, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nda9aXVd', '6341710'), + (72144, 795, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nda9aXVd', '6342044'), + (72145, 795, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nda9aXVd', '6342298'), + (72146, 795, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nda9aXVd', '6343294'), + (72147, 795, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nda9aXVd', '6347034'), + (72148, 795, 2177, 'maybe', '2023-08-07 20:58:20', '2025-12-17 19:46:55', 'nda9aXVd', '6347053'), + (72149, 795, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nda9aXVd', '6347056'), + (72150, 795, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nda9aXVd', '6353830'), + (72151, 795, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nda9aXVd', '6353831'), + (72152, 795, 2187, 'not_attending', '2023-08-07 20:58:12', '2025-12-17 19:46:55', 'nda9aXVd', '6357559'), + (72153, 795, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nda9aXVd', '6357867'), + (72154, 795, 2190, 'not_attending', '2023-08-07 20:58:05', '2025-12-17 19:46:55', 'nda9aXVd', '6357892'), + (72155, 795, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nda9aXVd', '6358652'), + (72156, 795, 2193, 'not_attending', '2023-08-07 20:57:53', '2025-12-17 19:46:54', 'nda9aXVd', '6358668'), + (72157, 795, 2194, 'not_attending', '2023-08-07 20:58:02', '2025-12-17 19:46:54', 'nda9aXVd', '6358669'), + (72158, 795, 2195, 'maybe', '2023-08-07 20:58:27', '2025-12-17 19:46:55', 'nda9aXVd', '6359397'), + (72159, 795, 2199, 'maybe', '2023-08-07 20:58:25', '2025-12-17 19:46:55', 'nda9aXVd', '6359849'), + (72160, 795, 2200, 'not_attending', '2023-08-07 20:58:09', '2025-12-17 19:46:55', 'nda9aXVd', '6359850'), + (72161, 795, 2203, 'not_attending', '2023-08-07 20:58:07', '2025-12-17 19:46:55', 'nda9aXVd', '6361524'), + (72162, 795, 2204, 'maybe', '2023-08-15 15:56:06', '2025-12-17 19:46:55', 'nda9aXVd', '6361542'), + (72163, 795, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nda9aXVd', '6361709'), + (72164, 795, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nda9aXVd', '6361710'), + (72165, 795, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nda9aXVd', '6361711'), + (72166, 795, 2211, 'maybe', '2023-08-15 15:56:03', '2025-12-17 19:46:55', 'nda9aXVd', '6361712'), + (72167, 795, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nda9aXVd', '6361713'), + (72168, 795, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nda9aXVd', '6382573'), + (72169, 795, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nda9aXVd', '6388604'), + (72170, 795, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nda9aXVd', '6394629'), + (72171, 795, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nda9aXVd', '6394631'), + (72172, 795, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nda9aXVd', '6440863'), + (72173, 795, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nda9aXVd', '6445440'), + (72174, 795, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nda9aXVd', '6453951'), + (72175, 795, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nda9aXVd', '6461696'), + (72176, 795, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nda9aXVd', '6462129'), + (72177, 795, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nda9aXVd', '6463218'), + (72178, 795, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nda9aXVd', '6472181'), + (72179, 795, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nda9aXVd', '6482693'), + (72180, 795, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nda9aXVd', '6484200'), + (72181, 795, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nda9aXVd', '6484680'), + (72182, 795, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nda9aXVd', '6507741'), + (72183, 795, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nda9aXVd', '6514659'), + (72184, 795, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nda9aXVd', '6514660'), + (72185, 795, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nda9aXVd', '6519103'), + (72186, 795, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nda9aXVd', '6535681'), + (72187, 795, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nda9aXVd', '6584747'), + (72188, 795, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nda9aXVd', '6587097'), + (72189, 795, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nda9aXVd', '6609022'), + (72190, 795, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nda9aXVd', '6632757'), + (72191, 795, 2376, 'maybe', '2024-01-19 20:06:40', '2025-12-17 19:46:40', 'nda9aXVd', '6642900'), + (72192, 795, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nda9aXVd', '6644187'), + (72193, 795, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nda9aXVd', '6648951'), + (72194, 795, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nda9aXVd', '6648952'), + (72195, 795, 2389, 'maybe', '2024-01-19 20:05:50', '2025-12-17 19:46:40', 'nda9aXVd', '6651094'), + (72196, 795, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nda9aXVd', '6655401'), + (72197, 795, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nda9aXVd', '6661585'), + (72198, 795, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nda9aXVd', '6661588'), + (72199, 795, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nda9aXVd', '6661589'), + (72200, 795, 2406, 'maybe', '2024-01-19 20:06:17', '2025-12-17 19:46:40', 'nda9aXVd', '6692344'), + (72201, 795, 2407, 'maybe', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nda9aXVd', '6699906'), + (72202, 795, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', 'nda9aXVd', '6699913'), + (72203, 795, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nda9aXVd', '6701109'), + (72204, 795, 2421, 'maybe', '2024-01-19 20:05:05', '2025-12-17 19:46:40', 'nda9aXVd', '6704598'), + (72205, 795, 2423, 'maybe', '2024-01-19 20:05:01', '2025-12-17 19:46:40', 'nda9aXVd', '6705141'), + (72206, 795, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nda9aXVd', '6705219'), + (72207, 795, 2426, 'maybe', '2024-01-19 20:04:29', '2025-12-17 19:46:40', 'nda9aXVd', '6705569'), + (72208, 795, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nda9aXVd', '6710153'), + (72209, 795, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nda9aXVd', '6711552'), + (72210, 795, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nda9aXVd', '6711553'), + (72211, 795, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nda9aXVd', '6722688'), + (72212, 795, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nda9aXVd', '6730620'), + (72213, 795, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'nda9aXVd', '6730642'), + (72214, 795, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nda9aXVd', '6740364'), + (72215, 795, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nda9aXVd', '6743829'), + (72216, 795, 2462, 'attending', '2024-02-12 20:56:26', '2025-12-17 19:46:41', 'nda9aXVd', '6744701'), + (72217, 795, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nda9aXVd', '7030380'), + (72218, 795, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nda9aXVd', '7033677'), + (72219, 795, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'nda9aXVd', '7035415'), + (72220, 795, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nda9aXVd', '7044715'), + (72221, 795, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nda9aXVd', '7050318'), + (72222, 795, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nda9aXVd', '7050319'), + (72223, 795, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nda9aXVd', '7050322'), + (72224, 795, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nda9aXVd', '7057804'), + (72225, 795, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'nda9aXVd', '7059866'), + (72226, 795, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nda9aXVd', '7072824'), + (72227, 795, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nda9aXVd', '7074348'), + (72228, 795, 2518, 'maybe', '2024-07-23 03:55:37', '2025-12-17 19:46:30', 'nda9aXVd', '7074358'), + (72229, 795, 2522, 'maybe', '2024-07-17 01:23:16', '2025-12-17 19:46:30', 'nda9aXVd', '7074362'), + (72230, 795, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nda9aXVd', '7074364'), + (72231, 795, 2527, 'maybe', '2024-06-27 00:59:25', '2025-12-17 19:46:29', 'nda9aXVd', '7074367'), + (72232, 795, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nda9aXVd', '7089267'), + (72233, 795, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nda9aXVd', '7098747'), + (72234, 795, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nda9aXVd', '7113468'), + (72235, 795, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nda9aXVd', '7114856'), + (72236, 795, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nda9aXVd', '7114951'), + (72237, 795, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nda9aXVd', '7114955'), + (72238, 795, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nda9aXVd', '7114956'), + (72239, 795, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nda9aXVd', '7114957'), + (72240, 795, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'nda9aXVd', '7153615'), + (72241, 795, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nda9aXVd', '7159484'), + (72242, 795, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nda9aXVd', '7178446'), + (72243, 795, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nda9aXVd', '7220467'), + (72244, 795, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nda9aXVd', '7240354'), + (72245, 795, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nda9aXVd', '7251633'), + (72246, 795, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'nda9aXVd', '7263048'), + (72247, 795, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'nda9aXVd', '7302674'), + (72248, 795, 2688, 'maybe', '2024-06-27 00:59:52', '2025-12-17 19:46:29', 'nda9aXVd', '7324073'), + (72249, 795, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nda9aXVd', '7324074'), + (72250, 795, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nda9aXVd', '7324075'), + (72251, 795, 2691, 'not_attending', '2024-07-13 22:36:26', '2025-12-17 19:46:30', 'nda9aXVd', '7324076'), + (72252, 795, 2692, 'maybe', '2024-07-17 01:23:50', '2025-12-17 19:46:30', 'nda9aXVd', '7324077'), + (72253, 795, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nda9aXVd', '7324078'), + (72254, 795, 2696, 'attending', '2024-08-24 22:08:54', '2025-12-17 19:46:32', 'nda9aXVd', '7324081'), + (72255, 795, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nda9aXVd', '7324082'), + (72256, 795, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nda9aXVd', '7331457'), + (72257, 795, 2745, 'maybe', '2024-07-17 01:23:52', '2025-12-17 19:46:30', 'nda9aXVd', '7348712'), + (72258, 795, 2747, 'attending', '2024-07-17 01:23:10', '2025-12-17 19:46:30', 'nda9aXVd', '7353587'), + (72259, 795, 2753, 'maybe', '2024-07-08 21:00:58', '2025-12-17 19:46:30', 'nda9aXVd', '7355538'), + (72260, 795, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'nda9aXVd', '7356752'), + (72261, 795, 2766, 'maybe', '2024-07-23 03:56:05', '2025-12-17 19:46:30', 'nda9aXVd', '7363643'), + (72262, 795, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nda9aXVd', '7368606'), + (72263, 795, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nda9aXVd', '7397462'), + (72264, 795, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nda9aXVd', '7424275'), + (72265, 795, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'nda9aXVd', '7424276'), + (72266, 795, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nda9aXVd', '7432751'), + (72267, 795, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nda9aXVd', '7432752'), + (72268, 795, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nda9aXVd', '7432753'), + (72269, 795, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nda9aXVd', '7432754'), + (72270, 795, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nda9aXVd', '7432755'), + (72271, 795, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nda9aXVd', '7432756'), + (72272, 795, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nda9aXVd', '7432758'), + (72273, 795, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nda9aXVd', '7432759'), + (72274, 795, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nda9aXVd', '7433834'), + (72275, 795, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nda9aXVd', '7470197'), + (72276, 795, 2866, 'maybe', '2024-11-15 23:42:27', '2025-12-17 19:46:27', 'nda9aXVd', '7471201'), + (72277, 795, 2867, 'maybe', '2024-11-15 23:42:06', '2025-12-17 19:46:21', 'nda9aXVd', '7471202'), + (72278, 795, 2897, 'not_attending', '2024-11-15 23:41:35', '2025-12-17 19:46:27', 'nda9aXVd', '7683650'), + (72279, 795, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nda9aXVd', '7685613'), + (72280, 795, 2902, 'not_attending', '2024-11-15 23:41:29', '2025-12-17 19:46:27', 'nda9aXVd', '7686381'), + (72281, 795, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nda9aXVd', '7688194'), + (72282, 795, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nda9aXVd', '7688196'), + (72283, 795, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nda9aXVd', '7688289'), + (72284, 795, 2909, 'not_attending', '2024-11-15 23:41:27', '2025-12-17 19:46:27', 'nda9aXVd', '7689771'), + (72285, 795, 2910, 'not_attending', '2024-11-15 23:41:37', '2025-12-17 19:46:27', 'nda9aXVd', '7689867'), + (72286, 795, 2912, 'maybe', '2024-11-15 23:41:50', '2025-12-17 19:46:27', 'nda9aXVd', '7692763'), + (72287, 795, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nda9aXVd', '7697552'), + (72288, 795, 2915, 'not_attending', '2024-11-21 01:23:35', '2025-12-17 19:46:27', 'nda9aXVd', '7698151'), + (72289, 795, 2916, 'not_attending', '2024-11-21 01:23:12', '2025-12-17 19:46:27', 'nda9aXVd', '7699006'), + (72290, 795, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nda9aXVd', '7699878'), + (72291, 795, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nda9aXVd', '7704043'), + (72292, 795, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nda9aXVd', '7712467'), + (72293, 795, 2925, 'maybe', '2024-12-07 23:56:15', '2025-12-17 19:46:21', 'nda9aXVd', '7713584'), + (72294, 795, 2926, 'maybe', '2024-12-07 03:07:16', '2025-12-17 19:46:21', 'nda9aXVd', '7713585'), + (72295, 795, 2927, 'not_attending', '2024-12-07 23:56:21', '2025-12-17 19:46:22', 'nda9aXVd', '7713586'), + (72296, 795, 2929, 'maybe', '2024-12-07 23:56:07', '2025-12-17 19:46:21', 'nda9aXVd', '7723465'), + (72297, 795, 2930, 'maybe', '2024-12-07 23:56:11', '2025-12-17 19:46:21', 'nda9aXVd', '7724554'), + (72298, 795, 2931, 'not_attending', '2024-12-07 23:55:57', '2025-12-17 19:46:21', 'nda9aXVd', '7725490'), + (72299, 795, 2932, 'not_attending', '2024-12-07 23:56:00', '2025-12-17 19:46:21', 'nda9aXVd', '7725949'), + (72300, 795, 2933, 'not_attending', '2024-12-07 23:56:23', '2025-12-17 19:46:22', 'nda9aXVd', '7725950'), + (72301, 795, 2934, 'not_attending', '2025-01-10 04:00:38', '2025-12-17 19:46:22', 'nda9aXVd', '7725952'), + (72302, 795, 2937, 'not_attending', '2024-12-07 23:56:16', '2025-12-17 19:46:21', 'nda9aXVd', '7725955'), + (72303, 795, 2942, 'maybe', '2025-02-11 07:17:13', '2025-12-17 19:46:24', 'nda9aXVd', '7725960'), + (72304, 795, 2944, 'maybe', '2025-02-11 07:17:15', '2025-12-17 19:46:24', 'nda9aXVd', '7725963'), + (72305, 795, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nda9aXVd', '7738518'), + (72306, 795, 2962, 'not_attending', '2024-12-27 22:26:12', '2025-12-17 19:46:22', 'nda9aXVd', '7750632'), + (72307, 795, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nda9aXVd', '7750636'), + (72308, 795, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nda9aXVd', '7796540'), + (72309, 795, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nda9aXVd', '7796541'), + (72310, 795, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nda9aXVd', '7796542'), + (72311, 795, 2968, 'not_attending', '2025-01-10 04:00:40', '2025-12-17 19:46:22', 'nda9aXVd', '7797967'), + (72312, 795, 2971, 'not_attending', '2025-01-18 20:07:19', '2025-12-17 19:46:22', 'nda9aXVd', '7812230'), + (72313, 795, 2972, 'maybe', '2025-01-18 20:07:16', '2025-12-17 19:46:22', 'nda9aXVd', '7812563'), + (72314, 795, 2989, 'maybe', '2025-02-11 07:17:04', '2025-12-17 19:46:24', 'nda9aXVd', '7842108'), + (72315, 795, 2994, 'maybe', '2025-02-11 07:17:19', '2025-12-17 19:46:18', 'nda9aXVd', '7842905'), + (72316, 796, 1152, 'not_attending', '2022-01-12 23:01:31', '2025-12-17 19:47:31', 'AXBe2ZZd', '4708705'), + (72317, 796, 1173, 'attending', '2022-01-07 17:58:46', '2025-12-17 19:47:31', 'AXBe2ZZd', '4736495'), + (72318, 796, 1175, 'attending', '2022-01-22 22:59:42', '2025-12-17 19:47:32', 'AXBe2ZZd', '4736497'), + (72319, 796, 1177, 'maybe', '2022-02-12 18:08:02', '2025-12-17 19:47:32', 'AXBe2ZZd', '4736499'), + (72320, 796, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'AXBe2ZZd', '4736500'), + (72321, 796, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'AXBe2ZZd', '4736503'), + (72322, 796, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'AXBe2ZZd', '4736504'), + (72323, 796, 1183, 'attending', '2022-01-12 00:06:43', '2025-12-17 19:47:31', 'AXBe2ZZd', '4742171'), + (72324, 796, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AXBe2ZZd', '4746789'), + (72325, 796, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AXBe2ZZd', '4753929'), + (72326, 796, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'AXBe2ZZd', '5038850'), + (72327, 796, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AXBe2ZZd', '5045826'), + (72328, 796, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'AXBe2ZZd', '5132533'), + (72329, 796, 1272, 'not_attending', '2022-03-19 23:02:26', '2025-12-17 19:47:25', 'AXBe2ZZd', '5186582'), + (72330, 796, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'AXBe2ZZd', '5186583'), + (72331, 796, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'AXBe2ZZd', '5186585'), + (72332, 796, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'AXBe2ZZd', '5190437'), + (72333, 796, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AXBe2ZZd', '5195095'), + (72334, 796, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', 'AXBe2ZZd', '5215989'), + (72335, 796, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AXBe2ZZd', '5223686'), + (72336, 796, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AXBe2ZZd', '5227432'), + (72337, 796, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AXBe2ZZd', '5247467'), + (72338, 796, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AXBe2ZZd', '5260800'), + (72339, 796, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AXBe2ZZd', '5269930'), + (72340, 796, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AXBe2ZZd', '5271448'), + (72341, 796, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'AXBe2ZZd', '5271449'), + (72342, 796, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AXBe2ZZd', '5276469'), + (72343, 796, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AXBe2ZZd', '5278159'), + (72344, 796, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AXBe2ZZd', '5363695'), + (72345, 796, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AXBe2ZZd', '5365960'), + (72346, 796, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AXBe2ZZd', '5368973'), + (72347, 796, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AXBe2ZZd', '5378247'), + (72348, 796, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AXBe2ZZd', '5389605'), + (72349, 796, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AXBe2ZZd', '5397265'), + (72350, 796, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AXBe2ZZd', '5403967'), + (72351, 796, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AXBe2ZZd', '5404786'), + (72352, 796, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AXBe2ZZd', '5405203'), + (72353, 796, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'AXBe2ZZd', '5408794'), + (72354, 796, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AXBe2ZZd', '5411699'), + (72355, 796, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AXBe2ZZd', '5412550'), + (72356, 796, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AXBe2ZZd', '5415046'), + (72357, 796, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AXBe2ZZd', '5422086'), + (72358, 796, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AXBe2ZZd', '5422406'), + (72359, 796, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AXBe2ZZd', '5424565'), + (72360, 796, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AXBe2ZZd', '5426882'), + (72361, 796, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AXBe2ZZd', '5427083'), + (72362, 796, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AXBe2ZZd', '5441125'), + (72363, 796, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AXBe2ZZd', '5441126'), + (72364, 796, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AXBe2ZZd', '5441128'), + (72365, 796, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AXBe2ZZd', '5441131'), + (72366, 796, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'AXBe2ZZd', '5441132'), + (72367, 796, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AXBe2ZZd', '5446643'), + (72368, 796, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AXBe2ZZd', '5453325'), + (72369, 796, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AXBe2ZZd', '5454516'), + (72370, 796, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AXBe2ZZd', '5454605'), + (72371, 796, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AXBe2ZZd', '5455037'), + (72372, 796, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AXBe2ZZd', '5461278'), + (72373, 796, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AXBe2ZZd', '5469480'), + (72374, 796, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AXBe2ZZd', '5471073'), + (72375, 796, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AXBe2ZZd', '5474663'), + (72376, 796, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AXBe2ZZd', '5482022'), + (72377, 796, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AXBe2ZZd', '5482793'), + (72378, 796, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AXBe2ZZd', '5488912'), + (72379, 796, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AXBe2ZZd', '5492192'), + (72380, 796, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AXBe2ZZd', '5493139'), + (72381, 796, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AXBe2ZZd', '5493200'), + (72382, 796, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AXBe2ZZd', '5502188'), + (72383, 796, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AXBe2ZZd', '5505059'), + (72384, 796, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AXBe2ZZd', '5509055'), + (72385, 796, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AXBe2ZZd', '5512862'), + (72386, 796, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AXBe2ZZd', '5513985'), + (72387, 796, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'AXBe2ZZd', '5519981'), + (72388, 796, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AXBe2ZZd', '5522550'), + (72389, 796, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AXBe2ZZd', '5534683'), + (72390, 796, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AXBe2ZZd', '5546619'), + (72391, 796, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AXBe2ZZd', '5555245'), + (72392, 796, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AXBe2ZZd', '5557747'), + (72393, 796, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AXBe2ZZd', '6045684'), + (72394, 797, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMQYVOm', '6514660'), + (72395, 797, 2325, 'attending', '2023-12-17 00:40:25', '2025-12-17 19:46:36', 'dxMQYVOm', '6514663'), + (72396, 797, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMQYVOm', '6587097'), + (72397, 797, 2356, 'attending', '2023-12-07 07:46:45', '2025-12-17 19:46:36', 'dxMQYVOm', '6593340'), + (72398, 797, 2357, 'attending', '2023-12-07 07:47:40', '2025-12-17 19:46:36', 'dxMQYVOm', '6593341'), + (72399, 797, 2359, 'attending', '2023-12-01 21:53:16', '2025-12-17 19:46:48', 'dxMQYVOm', '6596617'), + (72400, 797, 2361, 'not_attending', '2023-12-02 23:55:33', '2025-12-17 19:46:48', 'dxMQYVOm', '6602009'), + (72401, 797, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMQYVOm', '6609022'), + (72402, 797, 2366, 'not_attending', '2023-12-07 22:53:14', '2025-12-17 19:46:36', 'dxMQYVOm', '6615304'), + (72403, 797, 2368, 'attending', '2023-12-10 23:00:12', '2025-12-17 19:46:36', 'dxMQYVOm', '6621445'), + (72404, 797, 2370, 'attending', '2023-12-13 15:00:25', '2025-12-17 19:46:36', 'dxMQYVOm', '6623765'), + (72405, 797, 2374, 'attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMQYVOm', '6632757'), + (72406, 797, 2375, 'attending', '2023-12-20 18:28:15', '2025-12-17 19:46:36', 'dxMQYVOm', '6634548'), + (72407, 797, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMQYVOm', '6644187'), + (72408, 797, 2382, 'attending', '2024-01-02 22:18:52', '2025-12-17 19:46:37', 'dxMQYVOm', '6646401'), + (72409, 797, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMQYVOm', '6648951'), + (72410, 797, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMQYVOm', '6648952'), + (72411, 797, 2388, 'attending', '2024-01-06 08:09:57', '2025-12-17 19:46:37', 'dxMQYVOm', '6649244'), + (72412, 797, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMQYVOm', '6655401'), + (72413, 797, 2399, 'attending', '2024-01-13 23:04:31', '2025-12-17 19:46:38', 'dxMQYVOm', '6657583'), + (72414, 797, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMQYVOm', '6661585'), + (72415, 797, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMQYVOm', '6661588'), + (72416, 797, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMQYVOm', '6661589'), + (72417, 797, 2405, 'attending', '2024-01-18 17:43:44', '2025-12-17 19:46:38', 'dxMQYVOm', '6667332'), + (72418, 797, 2406, 'not_attending', '2024-01-18 17:28:31', '2025-12-17 19:46:40', 'dxMQYVOm', '6692344'), + (72419, 797, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMQYVOm', '6699906'), + (72420, 797, 2408, 'attending', '2024-01-23 15:53:51', '2025-12-17 19:46:40', 'dxMQYVOm', '6699907'), + (72421, 797, 2410, 'attending', '2024-02-10 23:30:13', '2025-12-17 19:46:41', 'dxMQYVOm', '6699911'), + (72422, 797, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dxMQYVOm', '6699913'), + (72423, 797, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMQYVOm', '6701109'), + (72424, 797, 2417, 'attending', '2024-01-18 17:28:08', '2025-12-17 19:46:40', 'dxMQYVOm', '6701905'), + (72425, 797, 2425, 'attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMQYVOm', '6705219'), + (72426, 797, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMQYVOm', '6710153'), + (72427, 797, 2429, 'attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMQYVOm', '6711552'), + (72428, 797, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMQYVOm', '6711553'), + (72429, 797, 2431, 'attending', '2024-02-02 00:48:23', '2025-12-17 19:46:41', 'dxMQYVOm', '6712394'), + (72430, 797, 2435, 'attending', '2024-01-28 04:47:25', '2025-12-17 19:46:41', 'dxMQYVOm', '6721547'), + (72431, 797, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMQYVOm', '6722688'), + (72432, 797, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMQYVOm', '6730620'), + (72433, 797, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMQYVOm', '6730642'), + (72434, 797, 2441, 'not_attending', '2024-02-01 02:15:38', '2025-12-17 19:46:41', 'dxMQYVOm', '6731263'), + (72435, 797, 2446, 'attending', '2024-03-01 18:09:30', '2025-12-17 19:46:43', 'dxMQYVOm', '6734369'), + (72436, 797, 2449, 'attending', '2024-02-05 12:26:31', '2025-12-17 19:46:42', 'dxMQYVOm', '6735833'), + (72437, 797, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMQYVOm', '6740364'), + (72438, 797, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMQYVOm', '6743829'), + (72439, 797, 2461, 'attending', '2024-02-10 23:30:16', '2025-12-17 19:46:41', 'dxMQYVOm', '6744245'), + (72440, 797, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMQYVOm', '7030380'), + (72441, 797, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMQYVOm', '7033677'), + (72442, 797, 2473, 'attending', '2024-02-24 02:55:31', '2025-12-17 19:46:43', 'dxMQYVOm', '7033724'), + (72443, 797, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMQYVOm', '7035415'), + (72444, 797, 2475, 'attending', '2024-02-24 02:55:35', '2025-12-17 19:46:43', 'dxMQYVOm', '7035643'), + (72445, 797, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMQYVOm', '7044715'), + (72446, 797, 2482, 'attending', '2024-03-05 20:33:47', '2025-12-17 19:46:44', 'dxMQYVOm', '7044719'), + (72447, 797, 2485, 'attending', '2024-02-27 20:15:42', '2025-12-17 19:46:43', 'dxMQYVOm', '7048111'), + (72448, 797, 2486, 'attending', '2024-03-01 18:08:26', '2025-12-17 19:46:43', 'dxMQYVOm', '7048277'), + (72449, 797, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMQYVOm', '7050318'), + (72450, 797, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMQYVOm', '7050319'), + (72451, 797, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMQYVOm', '7050322'), + (72452, 797, 2495, 'not_attending', '2024-03-04 01:04:52', '2025-12-17 19:46:32', 'dxMQYVOm', '7052982'), + (72453, 797, 2498, 'attending', '2024-03-20 22:31:00', '2025-12-17 19:46:33', 'dxMQYVOm', '7057662'), + (72454, 797, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMQYVOm', '7057804'), + (72455, 797, 2500, 'attending', '2024-03-06 19:14:09', '2025-12-17 19:46:43', 'dxMQYVOm', '7058603'), + (72456, 797, 2501, 'attending', '2024-03-05 20:09:41', '2025-12-17 19:46:43', 'dxMQYVOm', '7059866'), + (72457, 797, 2502, 'not_attending', '2024-03-06 02:24:43', '2025-12-17 19:46:33', 'dxMQYVOm', '7061202'), + (72458, 797, 2504, 'attending', '2024-03-22 16:39:05', '2025-12-17 19:46:33', 'dxMQYVOm', '7063296'), + (72459, 797, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMQYVOm', '7072824'), + (72460, 797, 2508, 'attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMQYVOm', '7074348'), + (72461, 797, 2510, 'attending', '2024-03-21 23:57:44', '2025-12-17 19:46:33', 'dxMQYVOm', '7074350'), + (72462, 797, 2512, 'attending', '2024-04-02 22:01:44', '2025-12-17 19:46:33', 'dxMQYVOm', '7074352'), + (72463, 797, 2516, 'attending', '2024-05-02 22:55:26', '2025-12-17 19:46:35', 'dxMQYVOm', '7074356'), + (72464, 797, 2521, 'attending', '2024-06-21 00:03:38', '2025-12-17 19:46:29', 'dxMQYVOm', '7074361'), + (72465, 797, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxMQYVOm', '7074364'), + (72466, 797, 2537, 'attending', '2024-03-22 03:26:30', '2025-12-17 19:46:33', 'dxMQYVOm', '7085484'), + (72467, 797, 2538, 'attending', '2024-03-27 13:57:35', '2025-12-17 19:46:33', 'dxMQYVOm', '7085485'), + (72468, 797, 2539, 'attending', '2024-04-06 15:34:18', '2025-12-17 19:46:33', 'dxMQYVOm', '7085486'), + (72469, 797, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMQYVOm', '7089267'), + (72470, 797, 2541, 'attending', '2024-03-17 02:27:21', '2025-12-17 19:46:33', 'dxMQYVOm', '7089404'), + (72471, 797, 2542, 'not_attending', '2024-03-25 12:38:04', '2025-12-17 19:46:33', 'dxMQYVOm', '7090025'), + (72472, 797, 2544, 'attending', '2024-03-22 14:23:49', '2025-12-17 19:46:33', 'dxMQYVOm', '7096941'), + (72473, 797, 2545, 'attending', '2024-03-22 14:24:20', '2025-12-17 19:46:33', 'dxMQYVOm', '7096942'), + (72474, 797, 2546, 'not_attending', '2024-03-22 14:23:22', '2025-12-17 19:46:33', 'dxMQYVOm', '7096944'), + (72475, 797, 2547, 'attending', '2024-03-25 12:38:01', '2025-12-17 19:46:33', 'dxMQYVOm', '7096945'), + (72476, 797, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMQYVOm', '7098747'), + (72477, 797, 2551, 'attending', '2024-03-27 13:57:15', '2025-12-17 19:46:33', 'dxMQYVOm', '7109912'), + (72478, 797, 2552, 'attending', '2024-03-27 21:22:38', '2025-12-17 19:46:33', 'dxMQYVOm', '7111123'), + (72479, 797, 2553, 'attending', '2024-03-29 12:05:54', '2025-12-17 19:46:33', 'dxMQYVOm', '7113468'), + (72480, 797, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMQYVOm', '7114856'), + (72481, 797, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMQYVOm', '7114951'), + (72482, 797, 2556, 'attending', '2024-04-02 22:02:28', '2025-12-17 19:46:34', 'dxMQYVOm', '7114955'), + (72483, 797, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMQYVOm', '7114956'), + (72484, 797, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMQYVOm', '7114957'), + (72485, 797, 2560, 'attending', '2024-04-09 15:33:29', '2025-12-17 19:46:33', 'dxMQYVOm', '7130086'), + (72486, 797, 2563, 'not_attending', '2024-04-02 21:59:45', '2025-12-17 19:46:33', 'dxMQYVOm', '7134734'), + (72487, 797, 2564, 'attending', '2024-04-02 21:59:52', '2025-12-17 19:46:33', 'dxMQYVOm', '7134735'), + (72488, 797, 2567, 'attending', '2024-04-04 10:32:29', '2025-12-17 19:46:33', 'dxMQYVOm', '7144962'), + (72489, 797, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMQYVOm', '7153615'), + (72490, 797, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMQYVOm', '7159484'), + (72491, 797, 2573, 'attending', '2024-04-08 22:59:13', '2025-12-17 19:46:34', 'dxMQYVOm', '7160612'), + (72492, 797, 2575, 'attending', '2024-04-11 18:36:56', '2025-12-17 19:46:33', 'dxMQYVOm', '7164534'), + (72493, 797, 2578, 'attending', '2024-04-11 18:55:36', '2025-12-17 19:46:34', 'dxMQYVOm', '7167016'), + (72494, 797, 2580, 'attending', '2024-04-11 18:56:04', '2025-12-17 19:46:34', 'dxMQYVOm', '7167272'), + (72495, 797, 2581, 'attending', '2024-04-23 17:19:12', '2025-12-17 19:46:34', 'dxMQYVOm', '7169048'), + (72496, 797, 2583, 'attending', '2024-04-14 14:53:08', '2025-12-17 19:46:34', 'dxMQYVOm', '7172946'), + (72497, 797, 2584, 'attending', '2024-04-20 03:10:27', '2025-12-17 19:46:34', 'dxMQYVOm', '7175057'), + (72498, 797, 2585, 'attending', '2024-04-20 03:10:10', '2025-12-17 19:46:34', 'dxMQYVOm', '7175828'), + (72499, 797, 2588, 'attending', '2024-04-17 21:16:06', '2025-12-17 19:46:34', 'dxMQYVOm', '7177233'), + (72500, 797, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMQYVOm', '7178446'), + (72501, 797, 2594, 'attending', '2024-04-20 04:25:37', '2025-12-17 19:46:34', 'dxMQYVOm', '7182117'), + (72502, 797, 2600, 'attending', '2024-04-30 21:11:09', '2025-12-17 19:46:35', 'dxMQYVOm', '7196794'), + (72503, 797, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMQYVOm', '7220467'), + (72504, 797, 2603, 'attending', '2024-05-15 13:15:29', '2025-12-17 19:46:35', 'dxMQYVOm', '7225669'), + (72505, 797, 2607, 'attending', '2024-04-29 21:57:17', '2025-12-17 19:46:35', 'dxMQYVOm', '7240136'), + (72506, 797, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMQYVOm', '7240354'), + (72507, 797, 2616, 'attending', '2024-05-07 17:16:03', '2025-12-17 19:46:35', 'dxMQYVOm', '7250296'), + (72508, 797, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMQYVOm', '7251633'), + (72509, 797, 2626, 'attending', '2024-05-18 21:42:48', '2025-12-17 19:46:35', 'dxMQYVOm', '7264723'), + (72510, 797, 2628, 'attending', '2024-06-01 23:07:39', '2025-12-17 19:46:36', 'dxMQYVOm', '7264725'), + (72511, 797, 2632, 'attending', '2024-05-14 21:12:13', '2025-12-17 19:46:35', 'dxMQYVOm', '7269123'), + (72512, 797, 2650, 'attending', '2024-05-24 16:28:50', '2025-12-17 19:46:35', 'dxMQYVOm', '7288199'), + (72513, 797, 2652, 'attending', '2024-05-31 16:04:17', '2025-12-17 19:46:36', 'dxMQYVOm', '7288339'), + (72514, 797, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMQYVOm', '7302674'), + (72515, 797, 2664, 'attending', '2024-06-04 22:05:13', '2025-12-17 19:46:36', 'dxMQYVOm', '7306358'), + (72516, 797, 2678, 'attending', '2024-06-12 15:06:03', '2025-12-17 19:46:28', 'dxMQYVOm', '7319489'), + (72517, 797, 2679, 'attending', '2024-06-21 00:15:03', '2025-12-17 19:46:29', 'dxMQYVOm', '7319490'), + (72518, 797, 2684, 'attending', '2024-06-11 19:41:32', '2025-12-17 19:46:28', 'dxMQYVOm', '7322001'), + (72519, 797, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dxMQYVOm', '7324073'), + (72520, 797, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxMQYVOm', '7324074'), + (72521, 797, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxMQYVOm', '7324075'), + (72522, 797, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxMQYVOm', '7324078'), + (72523, 797, 2695, 'attending', '2024-08-17 21:58:54', '2025-12-17 19:46:31', 'dxMQYVOm', '7324080'), + (72524, 797, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxMQYVOm', '7324082'), + (72525, 797, 2706, 'attending', '2024-06-19 16:06:09', '2025-12-17 19:46:28', 'dxMQYVOm', '7324947'), + (72526, 797, 2708, 'attending', '2024-06-15 15:22:38', '2025-12-17 19:46:28', 'dxMQYVOm', '7325048'), + (72527, 797, 2720, 'attending', '2024-06-18 21:13:57', '2025-12-17 19:46:28', 'dxMQYVOm', '7331436'), + (72528, 797, 2721, 'attending', '2024-06-18 22:32:13', '2025-12-17 19:46:29', 'dxMQYVOm', '7331456'), + (72529, 797, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxMQYVOm', '7331457'), + (72530, 797, 2724, 'attending', '2024-06-22 22:02:48', '2025-12-17 19:46:29', 'dxMQYVOm', '7332562'), + (72531, 797, 2727, 'attending', '2024-06-21 00:03:28', '2025-12-17 19:46:29', 'dxMQYVOm', '7332865'), + (72532, 797, 2729, 'attending', '2024-06-21 22:28:46', '2025-12-17 19:46:29', 'dxMQYVOm', '7335092'), + (72533, 797, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxMQYVOm', '7356752'), + (72534, 797, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxMQYVOm', '7363643'), + (72535, 797, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxMQYVOm', '7368606'), + (72536, 797, 2787, 'attending', '2024-08-07 00:09:01', '2025-12-17 19:46:32', 'dxMQYVOm', '7381568'), + (72537, 797, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxMQYVOm', '7397462'), + (72538, 797, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxMQYVOm', '7424275'), + (72539, 797, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxMQYVOm', '7424276'), + (72540, 797, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxMQYVOm', '7432751'), + (72541, 797, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxMQYVOm', '7432752'), + (72542, 797, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxMQYVOm', '7432753'), + (72543, 797, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxMQYVOm', '7432754'), + (72544, 797, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxMQYVOm', '7432755'), + (72545, 797, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxMQYVOm', '7432756'), + (72546, 797, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxMQYVOm', '7432758'), + (72547, 797, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxMQYVOm', '7432759'), + (72548, 797, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxMQYVOm', '7433834'), + (72549, 797, 2845, 'attending', '2024-09-21 21:34:39', '2025-12-17 19:46:25', 'dxMQYVOm', '7452129'), + (72550, 797, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxMQYVOm', '7470197'), + (72551, 797, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxMQYVOm', '7685613'), + (72552, 797, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxMQYVOm', '7688194'), + (72553, 797, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxMQYVOm', '7688196'), + (72554, 797, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxMQYVOm', '7688289'), + (72555, 797, 2912, 'not_attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'dxMQYVOm', '7692763'), + (72556, 797, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxMQYVOm', '7697552'), + (72557, 797, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxMQYVOm', '7699878'), + (72558, 797, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxMQYVOm', '7704043'), + (72559, 797, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxMQYVOm', '7712467'), + (72560, 797, 2925, 'attending', '2024-12-14 02:37:56', '2025-12-17 19:46:21', 'dxMQYVOm', '7713584'), + (72561, 797, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxMQYVOm', '7713585'), + (72562, 797, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxMQYVOm', '7713586'), + (72563, 797, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMQYVOm', '7738518'), + (72564, 797, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMQYVOm', '7750636'), + (72565, 797, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMQYVOm', '7796540'), + (72566, 797, 2965, 'attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMQYVOm', '7796541'), + (72567, 797, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMQYVOm', '7796542'), + (72568, 797, 2979, 'attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dxMQYVOm', '7825913'), + (72569, 797, 2980, 'not_attending', '2025-01-28 23:25:25', '2025-12-17 19:46:22', 'dxMQYVOm', '7825920'), + (72570, 797, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dxMQYVOm', '7826209'), + (72571, 797, 2984, 'attending', '2025-02-02 04:41:54', '2025-12-17 19:46:23', 'dxMQYVOm', '7830134'), + (72572, 797, 2985, 'attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dxMQYVOm', '7834742'), + (72573, 797, 2989, 'attending', '2025-02-10 19:52:02', '2025-12-17 19:46:23', 'dxMQYVOm', '7842108'), + (72574, 797, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dxMQYVOm', '7842902'), + (72575, 797, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dxMQYVOm', '7842903'), + (72576, 797, 2993, 'attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dxMQYVOm', '7842904'), + (72577, 797, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dxMQYVOm', '7842905'), + (72578, 797, 3005, 'attending', '2025-02-19 23:12:45', '2025-12-17 19:46:24', 'dxMQYVOm', '7854604'), + (72579, 797, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dxMQYVOm', '7855719'), + (72580, 797, 3007, 'attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dxMQYVOm', '7860683'), + (72581, 797, 3008, 'attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dxMQYVOm', '7860684'), + (72582, 797, 3009, 'attending', '2025-03-04 23:51:33', '2025-12-17 19:46:18', 'dxMQYVOm', '7864019'), + (72583, 797, 3010, 'attending', '2025-03-05 15:32:50', '2025-12-17 19:46:18', 'dxMQYVOm', '7864879'), + (72584, 797, 3012, 'maybe', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dxMQYVOm', '7866095'), + (72585, 797, 3013, 'attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dxMQYVOm', '7869170'), + (72586, 797, 3014, 'attending', '2025-04-05 13:42:00', '2025-12-17 19:46:20', 'dxMQYVOm', '7869185'), + (72587, 797, 3016, 'attending', '2025-04-19 22:02:02', '2025-12-17 19:46:20', 'dxMQYVOm', '7869187'), + (72588, 797, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dxMQYVOm', '7869188'), + (72589, 797, 3018, 'attending', '2025-04-08 23:33:55', '2025-12-17 19:46:20', 'dxMQYVOm', '7869189'), + (72590, 797, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dxMQYVOm', '7869201'), + (72591, 797, 3033, 'attending', '2025-03-11 02:32:42', '2025-12-17 19:46:19', 'dxMQYVOm', '7877465'), + (72592, 797, 3036, 'attending', '2025-03-13 15:38:41', '2025-12-17 19:46:19', 'dxMQYVOm', '7880952'), + (72593, 797, 3041, 'attending', '2025-03-14 14:20:51', '2025-12-17 19:46:19', 'dxMQYVOm', '7881995'), + (72594, 797, 3042, 'attending', '2025-03-15 04:44:21', '2025-12-17 19:46:19', 'dxMQYVOm', '7882467'), + (72595, 797, 3043, 'attending', '2025-03-15 19:15:31', '2025-12-17 19:46:19', 'dxMQYVOm', '7882587'), + (72596, 797, 3044, 'attending', '2025-03-29 20:52:28', '2025-12-17 19:46:19', 'dxMQYVOm', '7882690'), + (72597, 797, 3045, 'attending', '2025-04-05 21:02:38', '2025-12-17 19:46:19', 'dxMQYVOm', '7882691'), + (72598, 797, 3046, 'attending', '2025-04-08 23:33:57', '2025-12-17 19:46:20', 'dxMQYVOm', '7882692'), + (72599, 797, 3053, 'maybe', '2025-03-16 23:27:32', '2025-12-17 19:46:19', 'dxMQYVOm', '7884030'), + (72600, 797, 3054, 'maybe', '2025-03-17 03:21:22', '2025-12-17 19:46:19', 'dxMQYVOm', '7884168'), + (72601, 797, 3055, 'attending', '2025-03-21 11:36:20', '2025-12-17 19:46:19', 'dxMQYVOm', '7888118'), + (72602, 797, 3056, 'attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dxMQYVOm', '7888250'), + (72603, 797, 3058, 'attending', '2025-03-27 15:49:22', '2025-12-17 19:46:19', 'dxMQYVOm', '7891460'), + (72604, 797, 3062, 'attending', '2025-03-30 13:23:58', '2025-12-17 19:46:19', 'dxMQYVOm', '7892738'), + (72605, 797, 3069, 'attending', '2025-03-30 23:31:27', '2025-12-17 19:46:19', 'dxMQYVOm', '7894828'), + (72606, 797, 3072, 'attending', '2025-04-03 21:52:34', '2025-12-17 19:46:19', 'dxMQYVOm', '7895449'), + (72607, 797, 3073, 'attending', '2025-04-03 21:52:32', '2025-12-17 19:46:19', 'dxMQYVOm', '7897303'), + (72608, 797, 3079, 'attending', '2025-04-06 15:58:14', '2025-12-17 19:46:20', 'dxMQYVOm', '7901439'), + (72609, 797, 3082, 'attending', '2025-04-07 19:43:12', '2025-12-17 19:46:20', 'dxMQYVOm', '7902819'), + (72610, 797, 3084, 'attending', '2025-04-08 23:32:33', '2025-12-17 19:46:20', 'dxMQYVOm', '7903687'), + (72611, 797, 3086, 'attending', '2025-04-09 22:00:38', '2025-12-17 19:46:20', 'dxMQYVOm', '7903852'), + (72612, 797, 3090, 'attending', '2025-04-16 17:13:44', '2025-12-17 19:46:20', 'dxMQYVOm', '7914315'), + (72613, 797, 3094, 'attending', '2025-04-30 22:03:06', '2025-12-17 19:46:21', 'dxMQYVOm', '8342292'), + (72614, 797, 3095, 'attending', '2025-04-30 22:03:04', '2025-12-17 19:46:20', 'dxMQYVOm', '8342293'), + (72615, 797, 3097, 'not_attending', '2025-04-21 05:25:16', '2025-12-17 19:46:20', 'dxMQYVOm', '8342993'), + (72616, 797, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dxMQYVOm', '8349164'), + (72617, 797, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dxMQYVOm', '8349545'), + (72618, 797, 3112, 'attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dxMQYVOm', '8353584'), + (72619, 797, 3128, 'attending', '2025-05-11 18:17:21', '2025-12-17 19:46:21', 'dxMQYVOm', '8366077'), + (72620, 797, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'dxMQYVOm', '8368028'), + (72621, 797, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'dxMQYVOm', '8368029'), + (72622, 798, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', '41o5LVRm', '5132533'), + (72623, 798, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '41o5LVRm', '5186582'), + (72624, 798, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '41o5LVRm', '5186583'), + (72625, 798, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '41o5LVRm', '5186585'), + (72626, 798, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '41o5LVRm', '5190437'), + (72627, 798, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', '41o5LVRm', '5196763'), + (72628, 798, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', '41o5LVRm', '5199460'), + (72629, 798, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41o5LVRm', '5215989'), + (72630, 798, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41o5LVRm', '5223686'), + (72631, 798, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41o5LVRm', '5227432'), + (72632, 798, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41o5LVRm', '6045684'), + (72633, 799, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mb2lygEm', '5630960'), + (72634, 799, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mb2lygEm', '5630961'), + (72635, 799, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mb2lygEm', '5630962'), + (72636, 799, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mb2lygEm', '5635406'), + (72637, 799, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mb2lygEm', '5638765'), + (72638, 799, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mb2lygEm', '5640097'), + (72639, 799, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mb2lygEm', '5640843'), + (72640, 799, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mb2lygEm', '5641521'), + (72641, 799, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mb2lygEm', '5652395'), + (72642, 799, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mb2lygEm', '5671637'), + (72643, 799, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mb2lygEm', '5672329'), + (72644, 799, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mb2lygEm', '5674057'), + (72645, 799, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mb2lygEm', '5674060'), + (72646, 799, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mb2lygEm', '5677461'), + (72647, 799, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mb2lygEm', '6045684'), + (72648, 800, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dxK3Op24', '7114956'), + (72649, 800, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxK3Op24', '7114957'), + (72650, 800, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxK3Op24', '7178446'), + (72651, 800, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'dxK3Op24', '7220467'), + (72652, 800, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxK3Op24', '7240354'), + (72653, 800, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxK3Op24', '7251633'), + (72654, 800, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'dxK3Op24', '7265589'), + (72655, 801, 4, 'attending', '2020-03-21 22:09:07', '2025-12-17 19:47:58', 'oAgeoZMd', '2958046'), + (72656, 801, 7, 'not_attending', '2020-03-24 16:06:32', '2025-12-17 19:47:58', 'oAgeoZMd', '2958049'), + (72657, 801, 9, 'attending', '2020-03-28 14:00:59', '2025-12-17 19:47:56', 'oAgeoZMd', '2958052'), + (72658, 801, 10, 'attending', '2020-03-28 14:01:01', '2025-12-17 19:47:56', 'oAgeoZMd', '2958053'), + (72659, 801, 11, 'attending', '2020-03-29 15:24:19', '2025-12-17 19:47:57', 'oAgeoZMd', '2958055'), + (72660, 801, 12, 'attending', '2020-04-01 22:22:25', '2025-12-17 19:47:56', 'oAgeoZMd', '2958056'), + (72661, 801, 14, 'attending', '2020-04-07 18:47:35', '2025-12-17 19:47:57', 'oAgeoZMd', '2958058'), + (72662, 801, 15, 'attending', '2020-04-10 15:04:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2958059'), + (72663, 801, 16, 'attending', '2020-03-27 22:26:31', '2025-12-17 19:47:56', 'oAgeoZMd', '2958060'), + (72664, 801, 21, 'attending', '2020-04-20 19:54:27', '2025-12-17 19:47:57', 'oAgeoZMd', '2958065'), + (72665, 801, 24, 'not_attending', '2020-06-26 20:38:09', '2025-12-17 19:47:55', 'oAgeoZMd', '2958068'), + (72666, 801, 28, 'attending', '2020-04-02 22:55:54', '2025-12-17 19:47:56', 'oAgeoZMd', '2960421'), + (72667, 801, 29, 'maybe', '2020-03-30 18:34:57', '2025-12-17 19:47:56', 'oAgeoZMd', '2961309'), + (72668, 801, 30, 'attending', '2020-03-23 16:40:54', '2025-12-17 19:47:57', 'oAgeoZMd', '2961895'), + (72669, 801, 36, 'attending', '2020-03-29 01:48:56', '2025-12-17 19:47:57', 'oAgeoZMd', '2969208'), + (72670, 801, 37, 'maybe', '2020-03-30 18:35:06', '2025-12-17 19:47:56', 'oAgeoZMd', '2969680'), + (72671, 801, 39, 'attending', '2020-03-30 16:38:05', '2025-12-17 19:47:56', 'oAgeoZMd', '2970637'), + (72672, 801, 41, 'attending', '2020-04-03 14:06:09', '2025-12-17 19:47:57', 'oAgeoZMd', '2971546'), + (72673, 801, 44, 'not_attending', '2020-04-11 22:17:49', '2025-12-17 19:47:57', 'oAgeoZMd', '2974534'), + (72674, 801, 46, 'attending', '2020-04-06 01:37:48', '2025-12-17 19:47:57', 'oAgeoZMd', '2974955'), + (72675, 801, 48, 'attending', '2020-05-18 17:14:51', '2025-12-17 19:47:57', 'oAgeoZMd', '2975273'), + (72676, 801, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', 'oAgeoZMd', '2975384'), + (72677, 801, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', 'oAgeoZMd', '2975385'), + (72678, 801, 57, 'attending', '2020-04-07 02:39:43', '2025-12-17 19:47:57', 'oAgeoZMd', '2976575'), + (72679, 801, 58, 'not_attending', '2020-04-21 21:43:38', '2025-12-17 19:47:57', 'oAgeoZMd', '2977127'), + (72680, 801, 59, 'maybe', '2020-05-05 21:47:17', '2025-12-17 19:47:57', 'oAgeoZMd', '2977128'), + (72681, 801, 67, 'maybe', '2020-06-15 18:57:01', '2025-12-17 19:47:58', 'oAgeoZMd', '2977136'), + (72682, 801, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'oAgeoZMd', '2977343'), + (72683, 801, 71, 'attending', '2020-04-09 03:01:38', '2025-12-17 19:47:57', 'oAgeoZMd', '2977526'), + (72684, 801, 72, 'attending', '2020-05-01 17:27:14', '2025-12-17 19:47:57', 'oAgeoZMd', '2977812'), + (72685, 801, 73, 'attending', '2020-04-16 13:02:18', '2025-12-17 19:47:57', 'oAgeoZMd', '2977931'), + (72686, 801, 74, 'attending', '2020-04-11 15:13:30', '2025-12-17 19:47:57', 'oAgeoZMd', '2978244'), + (72687, 801, 75, 'attending', '2020-04-19 19:39:53', '2025-12-17 19:47:57', 'oAgeoZMd', '2978245'), + (72688, 801, 77, 'attending', '2020-05-02 22:36:58', '2025-12-17 19:47:57', 'oAgeoZMd', '2978247'), + (72689, 801, 78, 'attending', '2020-05-19 18:50:04', '2025-12-17 19:47:57', 'oAgeoZMd', '2978249'), + (72690, 801, 79, 'attending', '2020-05-24 20:04:34', '2025-12-17 19:47:57', 'oAgeoZMd', '2978250'), + (72691, 801, 80, 'attending', '2020-05-31 18:27:09', '2025-12-17 19:47:58', 'oAgeoZMd', '2978251'), + (72692, 801, 81, 'attending', '2020-06-13 21:27:42', '2025-12-17 19:47:58', 'oAgeoZMd', '2978252'), + (72693, 801, 82, 'attending', '2020-04-10 22:34:46', '2025-12-17 19:47:57', 'oAgeoZMd', '2978433'), + (72694, 801, 83, 'attending', '2020-05-08 22:05:03', '2025-12-17 19:47:57', 'oAgeoZMd', '2978438'), + (72695, 801, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2980871'), + (72696, 801, 85, 'not_attending', '2020-04-22 16:27:25', '2025-12-17 19:47:57', 'oAgeoZMd', '2980872'), + (72697, 801, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'oAgeoZMd', '2981388'), + (72698, 801, 87, 'attending', '2020-04-19 19:40:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2982602'), + (72699, 801, 88, 'attending', '2020-04-14 17:51:06', '2025-12-17 19:47:57', 'oAgeoZMd', '2982603'), + (72700, 801, 89, 'attending', '2020-05-01 17:17:37', '2025-12-17 19:47:57', 'oAgeoZMd', '2982604'), + (72701, 801, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'oAgeoZMd', '2986743'), + (72702, 801, 93, 'not_attending', '2020-04-19 23:36:39', '2025-12-17 19:47:57', 'oAgeoZMd', '2987418'), + (72703, 801, 94, 'not_attending', '2020-04-24 19:17:17', '2025-12-17 19:47:57', 'oAgeoZMd', '2987421'), + (72704, 801, 96, 'maybe', '2020-05-05 21:47:25', '2025-12-17 19:47:57', 'oAgeoZMd', '2987453'), + (72705, 801, 100, 'attending', '2020-04-21 21:45:52', '2025-12-17 19:47:57', 'oAgeoZMd', '2989142'), + (72706, 801, 101, 'not_attending', '2020-04-21 22:00:10', '2025-12-17 19:47:57', 'oAgeoZMd', '2989975'), + (72707, 801, 103, 'maybe', '2020-05-04 17:15:27', '2025-12-17 19:47:57', 'oAgeoZMd', '2991407'), + (72708, 801, 104, 'attending', '2020-04-24 14:20:00', '2025-12-17 19:47:57', 'oAgeoZMd', '2991471'), + (72709, 801, 106, 'attending', '2020-05-01 17:15:10', '2025-12-17 19:47:57', 'oAgeoZMd', '2993501'), + (72710, 801, 109, 'attending', '2020-04-28 02:11:02', '2025-12-17 19:47:57', 'oAgeoZMd', '2994480'), + (72711, 801, 110, 'attending', '2020-05-03 18:49:08', '2025-12-17 19:47:57', 'oAgeoZMd', '2994906'), + (72712, 801, 115, 'attending', '2020-05-02 22:36:59', '2025-12-17 19:47:57', 'oAgeoZMd', '3001217'), + (72713, 801, 121, 'attending', '2020-05-26 17:02:17', '2025-12-17 19:47:57', 'oAgeoZMd', '3023063'), + (72714, 801, 122, 'attending', '2020-05-18 13:25:34', '2025-12-17 19:47:57', 'oAgeoZMd', '3023491'), + (72715, 801, 125, 'attending', '2020-05-22 16:53:26', '2025-12-17 19:47:57', 'oAgeoZMd', '3023987'), + (72716, 801, 133, 'attending', '2020-06-24 17:02:14', '2025-12-17 19:47:58', 'oAgeoZMd', '3034321'), + (72717, 801, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'oAgeoZMd', '3049983'), + (72718, 801, 144, 'attending', '2020-06-06 21:42:54', '2025-12-17 19:47:58', 'oAgeoZMd', '3058679'), + (72719, 801, 145, 'attending', '2020-06-13 21:27:48', '2025-12-17 19:47:58', 'oAgeoZMd', '3058680'), + (72720, 801, 147, 'attending', '2020-08-22 15:03:27', '2025-12-17 19:47:56', 'oAgeoZMd', '3058684'), + (72721, 801, 148, 'attending', '2020-07-11 17:25:44', '2025-12-17 19:47:55', 'oAgeoZMd', '3058685'), + (72722, 801, 149, 'attending', '2020-07-18 18:36:25', '2025-12-17 19:47:55', 'oAgeoZMd', '3058686'), + (72723, 801, 150, 'maybe', '2020-07-23 21:46:49', '2025-12-17 19:47:55', 'oAgeoZMd', '3058687'), + (72724, 801, 151, 'attending', '2020-08-29 22:06:30', '2025-12-17 19:47:56', 'oAgeoZMd', '3058688'), + (72725, 801, 152, 'not_attending', '2020-09-03 14:33:09', '2025-12-17 19:47:56', 'oAgeoZMd', '3058689'), + (72726, 801, 155, 'attending', '2020-08-15 15:50:36', '2025-12-17 19:47:56', 'oAgeoZMd', '3058692'), + (72727, 801, 156, 'attending', '2020-09-12 22:04:19', '2025-12-17 19:47:56', 'oAgeoZMd', '3058693'), + (72728, 801, 160, 'attending', '2020-10-14 00:43:14', '2025-12-17 19:47:52', 'oAgeoZMd', '3058697'), + (72729, 801, 161, 'attending', '2020-10-10 18:31:26', '2025-12-17 19:47:52', 'oAgeoZMd', '3058698'), + (72730, 801, 162, 'attending', '2020-10-14 00:43:05', '2025-12-17 19:47:52', 'oAgeoZMd', '3058699'), + (72731, 801, 164, 'attending', '2020-11-14 23:21:58', '2025-12-17 19:47:54', 'oAgeoZMd', '3058701'), + (72732, 801, 165, 'attending', '2020-11-04 23:19:24', '2025-12-17 19:47:53', 'oAgeoZMd', '3058702'), + (72733, 801, 166, 'attending', '2020-11-19 03:36:21', '2025-12-17 19:47:54', 'oAgeoZMd', '3058704'), + (72734, 801, 167, 'attending', '2020-11-27 16:33:28', '2025-12-17 19:47:54', 'oAgeoZMd', '3058705'), + (72735, 801, 168, 'attending', '2020-06-15 18:57:14', '2025-12-17 19:47:58', 'oAgeoZMd', '3058740'), + (72736, 801, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'oAgeoZMd', '3058959'), + (72737, 801, 173, 'attending', '2020-06-14 17:27:24', '2025-12-17 19:47:58', 'oAgeoZMd', '3067093'), + (72738, 801, 175, 'maybe', '2020-06-15 18:57:16', '2025-12-17 19:47:58', 'oAgeoZMd', '3068305'), + (72739, 801, 181, 'maybe', '2020-06-20 00:46:08', '2025-12-17 19:47:58', 'oAgeoZMd', '3074513'), + (72740, 801, 182, 'attending', '2020-06-26 19:14:06', '2025-12-17 19:47:55', 'oAgeoZMd', '3074514'), + (72741, 801, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'oAgeoZMd', '3075228'), + (72742, 801, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'oAgeoZMd', '3075456'), + (72743, 801, 186, 'not_attending', '2020-06-24 23:16:57', '2025-12-17 19:47:55', 'oAgeoZMd', '3083791'), + (72744, 801, 187, 'attending', '2020-06-18 20:11:42', '2025-12-17 19:47:55', 'oAgeoZMd', '3085151'), + (72745, 801, 189, 'attending', '2020-06-20 14:52:07', '2025-12-17 19:47:58', 'oAgeoZMd', '3087016'), + (72746, 801, 190, 'not_attending', '2020-07-03 22:02:10', '2025-12-17 19:47:55', 'oAgeoZMd', '3087258'), + (72747, 801, 191, 'attending', '2020-07-03 22:02:06', '2025-12-17 19:47:55', 'oAgeoZMd', '3087259'), + (72748, 801, 192, 'attending', '2020-07-18 18:36:23', '2025-12-17 19:47:55', 'oAgeoZMd', '3087260'), + (72749, 801, 193, 'maybe', '2020-07-23 21:46:56', '2025-12-17 19:47:55', 'oAgeoZMd', '3087261'), + (72750, 801, 194, 'not_attending', '2020-08-01 18:34:36', '2025-12-17 19:47:56', 'oAgeoZMd', '3087262'), + (72751, 801, 196, 'attending', '2020-08-10 13:50:31', '2025-12-17 19:47:56', 'oAgeoZMd', '3087265'), + (72752, 801, 197, 'attending', '2020-08-22 15:03:25', '2025-12-17 19:47:56', 'oAgeoZMd', '3087266'), + (72753, 801, 198, 'attending', '2020-08-29 22:06:34', '2025-12-17 19:47:56', 'oAgeoZMd', '3087267'), + (72754, 801, 199, 'not_attending', '2020-09-05 21:51:27', '2025-12-17 19:47:56', 'oAgeoZMd', '3087268'), + (72755, 801, 201, 'attending', '2020-06-20 22:34:57', '2025-12-17 19:47:55', 'oAgeoZMd', '3088653'), + (72756, 801, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'oAgeoZMd', '3106813'), + (72757, 801, 210, 'maybe', '2020-06-30 02:49:35', '2025-12-17 19:47:55', 'oAgeoZMd', '3108972'), + (72758, 801, 223, 'attending', '2020-09-03 14:44:37', '2025-12-17 19:47:56', 'oAgeoZMd', '3129980'), + (72759, 801, 225, 'not_attending', '2020-07-13 21:09:13', '2025-12-17 19:47:55', 'oAgeoZMd', '3132378'), + (72760, 801, 226, 'attending', '2020-07-13 19:51:14', '2025-12-17 19:47:55', 'oAgeoZMd', '3132817'), + (72761, 801, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'oAgeoZMd', '3132820'), + (72762, 801, 228, 'not_attending', '2020-07-15 17:56:39', '2025-12-17 19:47:55', 'oAgeoZMd', '3132821'), + (72763, 801, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'oAgeoZMd', '3155321'), + (72764, 801, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'oAgeoZMd', '3162006'), + (72765, 801, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'oAgeoZMd', '3163442'), + (72766, 801, 281, 'attending', '2020-08-08 17:39:56', '2025-12-17 19:47:56', 'oAgeoZMd', '3166945'), + (72767, 801, 293, 'not_attending', '2020-08-19 14:20:57', '2025-12-17 19:47:56', 'oAgeoZMd', '3172832'), + (72768, 801, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'oAgeoZMd', '3172833'), + (72769, 801, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'oAgeoZMd', '3172834'), + (72770, 801, 296, 'not_attending', '2020-09-12 02:16:18', '2025-12-17 19:47:56', 'oAgeoZMd', '3172876'), + (72771, 801, 298, 'attending', '2020-08-27 21:38:14', '2025-12-17 19:47:56', 'oAgeoZMd', '3174556'), + (72772, 801, 306, 'attending', '2020-08-14 20:27:42', '2025-12-17 19:47:56', 'oAgeoZMd', '3179777'), + (72773, 801, 311, 'attending', '2020-09-02 16:58:05', '2025-12-17 19:47:56', 'oAgeoZMd', '3186057'), + (72774, 801, 312, 'attending', '2020-08-22 00:07:35', '2025-12-17 19:47:56', 'oAgeoZMd', '3187795'), + (72775, 801, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'oAgeoZMd', '3191735'), + (72776, 801, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'oAgeoZMd', '3200209'), + (72777, 801, 344, 'attending', '2020-10-05 21:14:43', '2025-12-17 19:47:53', 'oAgeoZMd', '3206906'), + (72778, 801, 359, 'attending', '2020-09-13 23:12:56', '2025-12-17 19:47:56', 'oAgeoZMd', '3212624'), + (72779, 801, 361, 'attending', '2020-09-14 19:12:09', '2025-12-17 19:47:56', 'oAgeoZMd', '3213323'), + (72780, 801, 362, 'not_attending', '2020-09-25 19:22:09', '2025-12-17 19:47:52', 'oAgeoZMd', '3214207'), + (72781, 801, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'oAgeoZMd', '3217037'), + (72782, 801, 365, 'not_attending', '2020-09-18 14:55:46', '2025-12-17 19:47:51', 'oAgeoZMd', '3218510'), + (72783, 801, 375, 'attending', '2020-10-08 14:55:57', '2025-12-17 19:47:52', 'oAgeoZMd', '3222825'), + (72784, 801, 380, 'not_attending', '2020-09-28 02:13:50', '2025-12-17 19:47:52', 'oAgeoZMd', '3226281'), + (72785, 801, 385, 'attending', '2020-10-03 22:05:25', '2025-12-17 19:47:52', 'oAgeoZMd', '3228698'), + (72786, 801, 386, 'attending', '2020-10-10 18:31:28', '2025-12-17 19:47:52', 'oAgeoZMd', '3228699'), + (72787, 801, 387, 'attending', '2020-10-14 00:43:07', '2025-12-17 19:47:52', 'oAgeoZMd', '3228700'), + (72788, 801, 388, 'attending', '2020-10-24 03:36:31', '2025-12-17 19:47:52', 'oAgeoZMd', '3228701'), + (72789, 801, 411, 'not_attending', '2020-10-11 22:04:58', '2025-12-17 19:47:52', 'oAgeoZMd', '3236596'), + (72790, 801, 416, 'not_attending', '2020-10-07 01:26:59', '2025-12-17 19:47:52', 'oAgeoZMd', '3238073'), + (72791, 801, 418, 'not_attending', '2020-10-14 18:09:16', '2025-12-17 19:47:52', 'oAgeoZMd', '3241728'), + (72792, 801, 420, 'attending', '2020-10-15 15:05:52', '2025-12-17 19:47:52', 'oAgeoZMd', '3245293'), + (72793, 801, 421, 'attending', '2020-10-23 16:32:51', '2025-12-17 19:47:52', 'oAgeoZMd', '3245294'), + (72794, 801, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'oAgeoZMd', '3245751'), + (72795, 801, 425, 'maybe', '2020-10-14 02:05:07', '2025-12-17 19:47:52', 'oAgeoZMd', '3250097'), + (72796, 801, 426, 'attending', '2020-10-14 14:18:44', '2025-12-17 19:47:52', 'oAgeoZMd', '3250232'), + (72797, 801, 427, 'attending', '2020-10-14 14:18:45', '2025-12-17 19:47:53', 'oAgeoZMd', '3250233'), + (72798, 801, 429, 'attending', '2020-11-30 06:24:35', '2025-12-17 19:47:54', 'oAgeoZMd', '3250523'), + (72799, 801, 435, 'not_attending', '2020-10-20 17:21:20', '2025-12-17 19:47:52', 'oAgeoZMd', '3254790'), + (72800, 801, 438, 'not_attending', '2020-10-29 20:10:12', '2025-12-17 19:47:53', 'oAgeoZMd', '3256163'), + (72801, 801, 439, 'attending', '2020-10-28 21:59:32', '2025-12-17 19:47:53', 'oAgeoZMd', '3256164'), + (72802, 801, 440, 'attending', '2020-11-04 23:19:26', '2025-12-17 19:47:53', 'oAgeoZMd', '3256168'), + (72803, 801, 441, 'attending', '2020-11-11 02:20:59', '2025-12-17 19:47:54', 'oAgeoZMd', '3256169'), + (72804, 801, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'oAgeoZMd', '3263578'), + (72805, 801, 445, 'attending', '2020-10-25 02:34:17', '2025-12-17 19:47:54', 'oAgeoZMd', '3266138'), + (72806, 801, 452, 'attending', '2020-11-16 20:24:13', '2025-12-17 19:47:54', 'oAgeoZMd', '3272981'), + (72807, 801, 456, 'not_attending', '2020-11-05 06:07:40', '2025-12-17 19:47:54', 'oAgeoZMd', '3276428'), + (72808, 801, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'oAgeoZMd', '3281467'), + (72809, 801, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'oAgeoZMd', '3281470'), + (72810, 801, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'oAgeoZMd', '3281829'), + (72811, 801, 468, 'attending', '2020-11-21 16:15:26', '2025-12-17 19:47:54', 'oAgeoZMd', '3285413'), + (72812, 801, 469, 'attending', '2020-11-26 04:03:06', '2025-12-17 19:47:54', 'oAgeoZMd', '3285414'), + (72813, 801, 476, 'not_attending', '2020-11-19 03:36:13', '2025-12-17 19:47:54', 'oAgeoZMd', '3286982'), + (72814, 801, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'oAgeoZMd', '3297764'), + (72815, 801, 493, 'not_attending', '2020-12-04 15:43:38', '2025-12-17 19:47:54', 'oAgeoZMd', '3313856'), + (72816, 801, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'oAgeoZMd', '3314909'), + (72817, 801, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'oAgeoZMd', '3314964'), + (72818, 801, 502, 'not_attending', '2020-12-09 06:28:56', '2025-12-17 19:47:55', 'oAgeoZMd', '3323365'), + (72819, 801, 513, 'not_attending', '2020-12-10 21:07:32', '2025-12-17 19:47:55', 'oAgeoZMd', '3329383'), + (72820, 801, 526, 'maybe', '2021-01-01 19:30:55', '2025-12-17 19:47:48', 'oAgeoZMd', '3351539'), + (72821, 801, 536, 'maybe', '2021-01-07 15:19:16', '2025-12-17 19:47:48', 'oAgeoZMd', '3386848'), + (72822, 801, 540, 'not_attending', '2021-01-07 15:18:57', '2025-12-17 19:47:48', 'oAgeoZMd', '3389527'), + (72823, 801, 543, 'not_attending', '2021-01-12 23:14:51', '2025-12-17 19:47:48', 'oAgeoZMd', '3396499'), + (72824, 801, 548, 'not_attending', '2021-01-12 23:14:49', '2025-12-17 19:47:48', 'oAgeoZMd', '3403650'), + (72825, 801, 549, 'not_attending', '2021-01-22 21:53:10', '2025-12-17 19:47:49', 'oAgeoZMd', '3406988'), + (72826, 801, 555, 'not_attending', '2021-01-22 21:53:07', '2025-12-17 19:47:49', 'oAgeoZMd', '3416576'), + (72827, 801, 558, 'not_attending', '2021-01-22 21:53:06', '2025-12-17 19:47:49', 'oAgeoZMd', '3418925'), + (72828, 801, 568, 'maybe', '2021-01-31 00:01:03', '2025-12-17 19:47:50', 'oAgeoZMd', '3430267'), + (72829, 801, 569, 'not_attending', '2021-01-27 16:59:57', '2025-12-17 19:47:49', 'oAgeoZMd', '3432673'), + (72830, 801, 579, 'attending', '2021-02-01 22:37:18', '2025-12-17 19:47:50', 'oAgeoZMd', '3440978'), + (72831, 801, 602, 'not_attending', '2021-02-10 21:43:42', '2025-12-17 19:47:50', 'oAgeoZMd', '3470303'), + (72832, 801, 603, 'attending', '2021-02-19 02:45:02', '2025-12-17 19:47:50', 'oAgeoZMd', '3470304'), + (72833, 801, 604, 'not_attending', '2021-02-25 18:40:10', '2025-12-17 19:47:50', 'oAgeoZMd', '3470305'), + (72834, 801, 605, 'attending', '2021-02-07 17:15:40', '2025-12-17 19:47:50', 'oAgeoZMd', '3470991'), + (72835, 801, 621, 'maybe', '2021-03-04 20:04:26', '2025-12-17 19:47:51', 'oAgeoZMd', '3517815'), + (72836, 801, 622, 'maybe', '2021-03-12 15:18:48', '2025-12-17 19:47:51', 'oAgeoZMd', '3517816'), + (72837, 801, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'oAgeoZMd', '3523941'), + (72838, 801, 627, 'not_attending', '2021-03-01 00:03:24', '2025-12-17 19:47:51', 'oAgeoZMd', '3533303'), + (72839, 801, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'oAgeoZMd', '3533850'), + (72840, 801, 637, 'attending', '2021-03-01 19:03:28', '2025-12-17 19:47:51', 'oAgeoZMd', '3536411'), + (72841, 801, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'oAgeoZMd', '3536632'), + (72842, 801, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'oAgeoZMd', '3536656'), + (72843, 801, 641, 'maybe', '2021-03-28 19:38:52', '2025-12-17 19:47:44', 'oAgeoZMd', '3539916'), + (72844, 801, 642, 'attending', '2021-04-09 22:34:49', '2025-12-17 19:47:44', 'oAgeoZMd', '3539917'), + (72845, 801, 643, 'not_attending', '2021-04-17 21:29:01', '2025-12-17 19:47:45', 'oAgeoZMd', '3539918'), + (72846, 801, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'oAgeoZMd', '3539919'), + (72847, 801, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'oAgeoZMd', '3539920'), + (72848, 801, 646, 'attending', '2021-05-15 21:37:28', '2025-12-17 19:47:46', 'oAgeoZMd', '3539921'), + (72849, 801, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'oAgeoZMd', '3539922'), + (72850, 801, 648, 'maybe', '2021-05-27 22:27:42', '2025-12-17 19:47:47', 'oAgeoZMd', '3539923'), + (72851, 801, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'oAgeoZMd', '3539927'), + (72852, 801, 679, 'attending', '2021-03-14 21:11:31', '2025-12-17 19:47:44', 'oAgeoZMd', '3547168'), + (72853, 801, 698, 'not_attending', '2021-03-21 20:14:20', '2025-12-17 19:47:44', 'oAgeoZMd', '3571867'), + (72854, 801, 705, 'attending', '2021-03-28 17:47:05', '2025-12-17 19:47:44', 'oAgeoZMd', '3581895'), + (72855, 801, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'oAgeoZMd', '3582734'), + (72856, 801, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'oAgeoZMd', '3583262'), + (72857, 801, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'oAgeoZMd', '3619523'), + (72858, 801, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'oAgeoZMd', '3661369'), + (72859, 801, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'oAgeoZMd', '3674262'), + (72860, 801, 735, 'maybe', '2021-04-06 19:43:31', '2025-12-17 19:47:46', 'oAgeoZMd', '3677402'), + (72861, 801, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'oAgeoZMd', '3730212'), + (72862, 801, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAgeoZMd', '3793156'), + (72863, 801, 823, 'maybe', '2021-06-12 22:07:43', '2025-12-17 19:47:48', 'oAgeoZMd', '3974109'), + (72864, 801, 827, 'attending', '2021-06-05 17:03:20', '2025-12-17 19:47:47', 'oAgeoZMd', '3975311'), + (72865, 801, 828, 'maybe', '2021-06-10 17:01:38', '2025-12-17 19:47:47', 'oAgeoZMd', '3975312'), + (72866, 801, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAgeoZMd', '3994992'), + (72867, 801, 844, 'attending', '2021-06-09 23:34:19', '2025-12-17 19:47:38', 'oAgeoZMd', '4014338'), + (72868, 801, 867, 'attending', '2021-06-26 16:11:33', '2025-12-17 19:47:38', 'oAgeoZMd', '4021848'), + (72869, 801, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'oAgeoZMd', '4136744'), + (72870, 801, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'oAgeoZMd', '4136937'), + (72871, 801, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'oAgeoZMd', '4136938'), + (72872, 801, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'oAgeoZMd', '4136947'), + (72873, 801, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAgeoZMd', '4210314'), + (72874, 801, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAgeoZMd', '4225444'), + (72875, 801, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'oAgeoZMd', '4239259'), + (72876, 801, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAgeoZMd', '4240316'), + (72877, 801, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAgeoZMd', '4240317'), + (72878, 801, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAgeoZMd', '4240318'), + (72879, 801, 903, 'maybe', '2021-08-14 20:41:35', '2025-12-17 19:47:42', 'oAgeoZMd', '4240320'), + (72880, 801, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'oAgeoZMd', '4250163'), + (72881, 801, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAgeoZMd', '4275957'), + (72882, 801, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAgeoZMd', '4277819'), + (72883, 801, 932, 'attending', '2021-08-22 15:47:00', '2025-12-17 19:47:42', 'oAgeoZMd', '4301664'), + (72884, 801, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'oAgeoZMd', '4301723'), + (72885, 801, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'oAgeoZMd', '4302093'), + (72886, 801, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAgeoZMd', '4304151'), + (72887, 801, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'oAgeoZMd', '4345519'), + (72888, 801, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAgeoZMd', '4356801'), + (72889, 801, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'oAgeoZMd', '4358025'), + (72890, 801, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAgeoZMd', '4366186'), + (72891, 801, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAgeoZMd', '4366187'), + (72892, 801, 990, 'attending', '2021-09-05 01:11:14', '2025-12-17 19:47:43', 'oAgeoZMd', '4420735'), + (72893, 801, 991, 'maybe', '2021-09-05 01:32:36', '2025-12-17 19:47:43', 'oAgeoZMd', '4420738'), + (72894, 801, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAgeoZMd', '4420739'), + (72895, 801, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAgeoZMd', '4420741'), + (72896, 801, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAgeoZMd', '4420744'), + (72897, 801, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAgeoZMd', '4420747'), + (72898, 801, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAgeoZMd', '4420748'), + (72899, 801, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAgeoZMd', '4420749'), + (72900, 801, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAgeoZMd', '4461883'), + (72901, 801, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAgeoZMd', '4508342'), + (72902, 801, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAgeoZMd', '4568602'), + (72903, 801, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'oAgeoZMd', '4572153'), + (72904, 801, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'oAgeoZMd', '4585962'), + (72905, 801, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'oAgeoZMd', '4596356'), + (72906, 801, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'oAgeoZMd', '4598860'), + (72907, 801, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'oAgeoZMd', '4598861'), + (72908, 801, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'oAgeoZMd', '4602797'), + (72909, 801, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'oAgeoZMd', '4637896'), + (72910, 801, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'oAgeoZMd', '4642994'), + (72911, 801, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'oAgeoZMd', '4642995'), + (72912, 801, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'oAgeoZMd', '4642996'), + (72913, 801, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'oAgeoZMd', '4642997'), + (72914, 801, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'oAgeoZMd', '4645687'), + (72915, 801, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'oAgeoZMd', '4645698'), + (72916, 801, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'oAgeoZMd', '4645704'), + (72917, 801, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'oAgeoZMd', '4645705'), + (72918, 801, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'oAgeoZMd', '4668385'), + (72919, 801, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'oAgeoZMd', '4694407'), + (72920, 801, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'oAgeoZMd', '4736497'), + (72921, 801, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'oAgeoZMd', '4736499'), + (72922, 801, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'oAgeoZMd', '4736500'), + (72923, 801, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'oAgeoZMd', '4736503'), + (72924, 801, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'oAgeoZMd', '4736504'), + (72925, 801, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'oAgeoZMd', '4746789'), + (72926, 801, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'oAgeoZMd', '4753929'), + (72927, 801, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'oAgeoZMd', '5038850'), + (72928, 801, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'oAgeoZMd', '5045826'), + (72929, 801, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'oAgeoZMd', '5132533'), + (72930, 801, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'oAgeoZMd', '5186582'), + (72931, 801, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'oAgeoZMd', '5186583'), + (72932, 801, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'oAgeoZMd', '5186585'), + (72933, 801, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'oAgeoZMd', '5190437'), + (72934, 801, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'oAgeoZMd', '5195095'), + (72935, 801, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'oAgeoZMd', '5215989'), + (72936, 801, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'oAgeoZMd', '5223686'), + (72937, 801, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'oAgeoZMd', '5247467'), + (72938, 801, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'oAgeoZMd', '5260800'), + (72939, 801, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'oAgeoZMd', '5269930'), + (72940, 801, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'oAgeoZMd', '5271448'), + (72941, 801, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'oAgeoZMd', '5271449'), + (72942, 801, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'oAgeoZMd', '5278159'), + (72943, 801, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'oAgeoZMd', '5363695'), + (72944, 801, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'oAgeoZMd', '5365960'), + (72945, 801, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'oAgeoZMd', '5378247'), + (72946, 801, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'oAgeoZMd', '5389605'), + (72947, 801, 1442, 'attending', '2022-06-13 15:33:55', '2025-12-17 19:47:17', 'oAgeoZMd', '5397265'), + (72948, 801, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'oAgeoZMd', '5404786'), + (72949, 801, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'oAgeoZMd', '5405203'), + (72950, 801, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'oAgeoZMd', '5412550'), + (72951, 801, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'oAgeoZMd', '5415046'), + (72952, 801, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'oAgeoZMd', '5422086'), + (72953, 801, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'oAgeoZMd', '5422406'), + (72954, 801, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'oAgeoZMd', '5424565'), + (72955, 801, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'oAgeoZMd', '5426882'), + (72956, 801, 1511, 'attending', '2022-07-09 13:05:30', '2025-12-17 19:47:19', 'oAgeoZMd', '5437733'), + (72957, 801, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'oAgeoZMd', '5441125'), + (72958, 801, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'oAgeoZMd', '5441126'), + (72959, 801, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'oAgeoZMd', '5441128'), + (72960, 801, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'oAgeoZMd', '5441131'), + (72961, 801, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'oAgeoZMd', '5441132'), + (72962, 801, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'oAgeoZMd', '5453325'), + (72963, 801, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'oAgeoZMd', '5454516'), + (72964, 801, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'oAgeoZMd', '5454605'), + (72965, 801, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'oAgeoZMd', '5455037'), + (72966, 801, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'oAgeoZMd', '5461278'), + (72967, 801, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'oAgeoZMd', '5469480'), + (72968, 801, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'oAgeoZMd', '5474663'), + (72969, 801, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'oAgeoZMd', '5482022'), + (72970, 801, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'oAgeoZMd', '5488912'), + (72971, 801, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'oAgeoZMd', '5492192'), + (72972, 801, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'oAgeoZMd', '5493139'), + (72973, 801, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'oAgeoZMd', '5493200'), + (72974, 801, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'oAgeoZMd', '5502188'), + (72975, 801, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'oAgeoZMd', '5505059'), + (72976, 801, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'oAgeoZMd', '5509055'), + (72977, 801, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'oAgeoZMd', '5512862'), + (72978, 801, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'oAgeoZMd', '5513985'), + (72979, 801, 1626, 'maybe', '2022-08-26 01:10:26', '2025-12-17 19:47:11', 'oAgeoZMd', '5519981'), + (72980, 801, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'oAgeoZMd', '5522550'), + (72981, 801, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'oAgeoZMd', '5534683'), + (72982, 801, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'oAgeoZMd', '5537735'), + (72983, 801, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'oAgeoZMd', '5540859'), + (72984, 801, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'oAgeoZMd', '5546619'), + (72985, 801, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'oAgeoZMd', '5557747'), + (72986, 801, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'oAgeoZMd', '5560255'), + (72987, 801, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'oAgeoZMd', '5562906'), + (72988, 801, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'oAgeoZMd', '5600604'), + (72989, 801, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'oAgeoZMd', '5605544'), + (72990, 801, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'oAgeoZMd', '5630960'), + (72991, 801, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'oAgeoZMd', '5630961'), + (72992, 801, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'oAgeoZMd', '5630962'), + (72993, 801, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'oAgeoZMd', '5630966'), + (72994, 801, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'oAgeoZMd', '5630967'), + (72995, 801, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'oAgeoZMd', '5630968'), + (72996, 801, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'oAgeoZMd', '5635406'), + (72997, 801, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'oAgeoZMd', '5638765'), + (72998, 801, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'oAgeoZMd', '5640097'), + (72999, 801, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'oAgeoZMd', '5640843'), + (73000, 801, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'oAgeoZMd', '5641521'), + (73001, 801, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'oAgeoZMd', '5642818'), + (73002, 801, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'oAgeoZMd', '5652395'), + (73003, 801, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'oAgeoZMd', '5670445'), + (73004, 801, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'oAgeoZMd', '5671637'), + (73005, 801, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'oAgeoZMd', '5672329'), + (73006, 801, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'oAgeoZMd', '5674057'), + (73007, 801, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'oAgeoZMd', '5674060'), + (73008, 801, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'oAgeoZMd', '5677461'), + (73009, 801, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'oAgeoZMd', '5698046'), + (73010, 801, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'oAgeoZMd', '5699760'), + (73011, 801, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'oAgeoZMd', '5741601'), + (73012, 801, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'oAgeoZMd', '5763458'), + (73013, 801, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'oAgeoZMd', '5774172'), + (73014, 801, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'oAgeoZMd', '5818247'), + (73015, 801, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'oAgeoZMd', '5819471'), + (73016, 801, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'oAgeoZMd', '5827739'), + (73017, 801, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'oAgeoZMd', '5844306'), + (73018, 801, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'oAgeoZMd', '5850159'), + (73019, 801, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'oAgeoZMd', '5858999'), + (73020, 801, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'oAgeoZMd', '5871984'), + (73021, 801, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'oAgeoZMd', '5876354'), + (73022, 801, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'oAgeoZMd', '5880939'), + (73023, 801, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'oAgeoZMd', '5880940'), + (73024, 801, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'oAgeoZMd', '5880942'), + (73025, 801, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'oAgeoZMd', '5880943'), + (73026, 801, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'oAgeoZMd', '5887890'), + (73027, 801, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'oAgeoZMd', '5888598'), + (73028, 801, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'oAgeoZMd', '5893260'), + (73029, 801, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'oAgeoZMd', '5899826'), + (73030, 801, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'oAgeoZMd', '5900199'), + (73031, 801, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'oAgeoZMd', '5900200'), + (73032, 801, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'oAgeoZMd', '5900202'), + (73033, 801, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'oAgeoZMd', '5900203'), + (73034, 801, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'oAgeoZMd', '5901108'), + (73035, 801, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'oAgeoZMd', '5901126'), + (73036, 801, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'oAgeoZMd', '5909655'), + (73037, 801, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'oAgeoZMd', '5910522'), + (73038, 801, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'oAgeoZMd', '5910526'), + (73039, 801, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'oAgeoZMd', '5910528'), + (73040, 801, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'oAgeoZMd', '5916219'), + (73041, 801, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'oAgeoZMd', '5936234'), + (73042, 801, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'oAgeoZMd', '5958351'), + (73043, 801, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'oAgeoZMd', '5959751'), + (73044, 801, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'oAgeoZMd', '5959755'), + (73045, 801, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'oAgeoZMd', '5960055'), + (73046, 801, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'oAgeoZMd', '5961684'), + (73047, 801, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'oAgeoZMd', '5962132'), + (73048, 801, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'oAgeoZMd', '5962133'), + (73049, 801, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'oAgeoZMd', '5962134'), + (73050, 801, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'oAgeoZMd', '5962317'), + (73051, 801, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'oAgeoZMd', '5962318'), + (73052, 801, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'oAgeoZMd', '5965933'), + (73053, 801, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'oAgeoZMd', '5967014'), + (73054, 801, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'oAgeoZMd', '5972815'), + (73055, 801, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'oAgeoZMd', '5974016'), + (73056, 801, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'oAgeoZMd', '5981515'), + (73057, 801, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'oAgeoZMd', '5993516'), + (73058, 801, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'oAgeoZMd', '5998939'), + (73059, 801, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'oAgeoZMd', '6028191'), + (73060, 801, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'oAgeoZMd', '6040066'), + (73061, 801, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'oAgeoZMd', '6042717'), + (73062, 801, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'oAgeoZMd', '6044838'), + (73063, 801, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'oAgeoZMd', '6044839'), + (73064, 801, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgeoZMd', '6045684'), + (73065, 801, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'oAgeoZMd', '6050104'), + (73066, 801, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'oAgeoZMd', '6053195'), + (73067, 801, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'oAgeoZMd', '6053198'), + (73068, 801, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'oAgeoZMd', '6056085'), + (73069, 801, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'oAgeoZMd', '6056916'), + (73070, 801, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'oAgeoZMd', '6059290'), + (73071, 801, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'oAgeoZMd', '6060328'), + (73072, 801, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'oAgeoZMd', '6061037'), + (73073, 801, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'oAgeoZMd', '6061039'), + (73074, 801, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'oAgeoZMd', '6067245'), + (73075, 801, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'oAgeoZMd', '6068094'), + (73076, 801, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'oAgeoZMd', '6068252'), + (73077, 801, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'oAgeoZMd', '6068253'), + (73078, 801, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'oAgeoZMd', '6068254'), + (73079, 801, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'oAgeoZMd', '6068280'), + (73080, 801, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'oAgeoZMd', '6069093'), + (73081, 801, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'oAgeoZMd', '6072528'), + (73082, 801, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'oAgeoZMd', '6079840'), + (73083, 801, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'oAgeoZMd', '6083398'), + (73084, 801, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'oAgeoZMd', '6093504'), + (73085, 801, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'oAgeoZMd', '6097414'), + (73086, 801, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'oAgeoZMd', '6097442'), + (73087, 801, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'oAgeoZMd', '6097684'), + (73088, 801, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'oAgeoZMd', '6098762'), + (73089, 801, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'oAgeoZMd', '6101361'), + (73090, 801, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'oAgeoZMd', '6101362'), + (73091, 801, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'oAgeoZMd', '6107314'), + (73092, 801, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'oAgeoZMd', '6120034'), + (73093, 801, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'oAgeoZMd', '6136733'), + (73094, 801, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'oAgeoZMd', '6137989'), + (73095, 801, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'oAgeoZMd', '6150864'), + (73096, 801, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'oAgeoZMd', '6155491'), + (73097, 801, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'oAgeoZMd', '6164417'), + (73098, 801, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'oAgeoZMd', '6166388'), + (73099, 801, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'oAgeoZMd', '6176439'), + (73100, 801, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'oAgeoZMd', '6182410'), + (73101, 801, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'oAgeoZMd', '6185812'), + (73102, 801, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'oAgeoZMd', '6187651'), + (73103, 801, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'oAgeoZMd', '6187963'), + (73104, 801, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'oAgeoZMd', '6187964'), + (73105, 801, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'oAgeoZMd', '6187966'), + (73106, 801, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'oAgeoZMd', '6187967'), + (73107, 801, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'oAgeoZMd', '6187969'), + (73108, 801, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'oAgeoZMd', '6334878'), + (73109, 801, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'oAgeoZMd', '6337236'), + (73110, 801, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'oAgeoZMd', '6337970'), + (73111, 801, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'oAgeoZMd', '6338308'), + (73112, 801, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'oAgeoZMd', '6341710'), + (73113, 801, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'oAgeoZMd', '6342044'), + (73114, 801, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'oAgeoZMd', '6342298'), + (73115, 801, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'oAgeoZMd', '6343294'), + (73116, 801, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'oAgeoZMd', '6347034'), + (73117, 801, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'oAgeoZMd', '6347056'), + (73118, 801, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'oAgeoZMd', '6353830'), + (73119, 801, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'oAgeoZMd', '6353831'), + (73120, 801, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'oAgeoZMd', '6357867'), + (73121, 801, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'oAgeoZMd', '6358652'), + (73122, 801, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'oAgeoZMd', '6361709'), + (73123, 801, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'oAgeoZMd', '6361710'), + (73124, 801, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'oAgeoZMd', '6361711'), + (73125, 801, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'oAgeoZMd', '6361712'), + (73126, 801, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'oAgeoZMd', '6361713'), + (73127, 801, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'oAgeoZMd', '6382573'), + (73128, 801, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'oAgeoZMd', '6388604'), + (73129, 801, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'oAgeoZMd', '6394629'), + (73130, 801, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'oAgeoZMd', '6394631'), + (73131, 801, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'oAgeoZMd', '6440863'), + (73132, 801, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'oAgeoZMd', '6445440'), + (73133, 801, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'oAgeoZMd', '6453951'), + (73134, 801, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'oAgeoZMd', '6461696'), + (73135, 801, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'oAgeoZMd', '6462129'), + (73136, 801, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'oAgeoZMd', '6463218'), + (73137, 801, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'oAgeoZMd', '6472181'), + (73138, 801, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'oAgeoZMd', '6482693'), + (73139, 801, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'oAgeoZMd', '6484200'), + (73140, 801, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'oAgeoZMd', '6484680'), + (73141, 801, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'oAgeoZMd', '6507741'), + (73142, 801, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'oAgeoZMd', '6514659'), + (73143, 801, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'oAgeoZMd', '6514660'), + (73144, 801, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'oAgeoZMd', '6519103'), + (73145, 801, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'oAgeoZMd', '6535681'), + (73146, 801, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'oAgeoZMd', '6584747'), + (73147, 801, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'oAgeoZMd', '6587097'), + (73148, 801, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'oAgeoZMd', '6609022'), + (73149, 801, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'oAgeoZMd', '6632757'), + (73150, 801, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAgeoZMd', '6644187'), + (73151, 801, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAgeoZMd', '6648951'), + (73152, 801, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAgeoZMd', '6648952'), + (73153, 801, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAgeoZMd', '6655401'), + (73154, 801, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAgeoZMd', '6661585'), + (73155, 801, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAgeoZMd', '6661588'), + (73156, 801, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAgeoZMd', '6661589'), + (73157, 801, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAgeoZMd', '6699906'), + (73158, 801, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'oAgeoZMd', '6699913'), + (73159, 801, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAgeoZMd', '6701109'), + (73160, 801, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAgeoZMd', '6705219'), + (73161, 801, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAgeoZMd', '6710153'), + (73162, 801, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAgeoZMd', '6711552'), + (73163, 801, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'oAgeoZMd', '6711553'), + (73164, 801, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAgeoZMd', '6722688'), + (73165, 801, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAgeoZMd', '6730620'), + (73166, 801, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAgeoZMd', '6740364'), + (73167, 801, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAgeoZMd', '6743829'), + (73168, 801, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAgeoZMd', '7030380'), + (73169, 801, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'oAgeoZMd', '7033677'), + (73170, 801, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAgeoZMd', '7044715'), + (73171, 801, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAgeoZMd', '7050318'), + (73172, 801, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAgeoZMd', '7050319'), + (73173, 801, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAgeoZMd', '7050322'), + (73174, 801, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAgeoZMd', '7057804'), + (73175, 801, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAgeoZMd', '7072824'), + (73176, 801, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAgeoZMd', '7074348'), + (73177, 801, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'oAgeoZMd', '7074364'), + (73178, 801, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAgeoZMd', '7089267'), + (73179, 801, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAgeoZMd', '7098747'), + (73180, 801, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'oAgeoZMd', '7113468'), + (73181, 801, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAgeoZMd', '7114856'), + (73182, 801, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAgeoZMd', '7114951'), + (73183, 801, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAgeoZMd', '7114955'), + (73184, 801, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAgeoZMd', '7114956'), + (73185, 801, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'oAgeoZMd', '7114957'), + (73186, 801, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAgeoZMd', '7159484'), + (73187, 801, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAgeoZMd', '7178446'), + (73188, 801, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'oAgeoZMd', '7220467'), + (73189, 801, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'oAgeoZMd', '7240354'), + (73190, 801, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'oAgeoZMd', '7251633'), + (73191, 801, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'oAgeoZMd', '7324073'), + (73192, 801, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'oAgeoZMd', '7324074'), + (73193, 801, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'oAgeoZMd', '7324075'), + (73194, 801, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'oAgeoZMd', '7324078'), + (73195, 801, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'oAgeoZMd', '7324082'), + (73196, 801, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'oAgeoZMd', '7331457'), + (73197, 801, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'oAgeoZMd', '7363643'), + (73198, 801, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'oAgeoZMd', '7368606'), + (73199, 801, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'oAgeoZMd', '7397462'), + (73200, 801, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'oAgeoZMd', '7424275'), + (73201, 801, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'oAgeoZMd', '7432751'), + (73202, 801, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'oAgeoZMd', '7432752'), + (73203, 801, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'oAgeoZMd', '7432753'), + (73204, 801, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'oAgeoZMd', '7432754'), + (73205, 801, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'oAgeoZMd', '7432755'), + (73206, 801, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'oAgeoZMd', '7432756'), + (73207, 801, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'oAgeoZMd', '7432758'), + (73208, 801, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'oAgeoZMd', '7432759'), + (73209, 801, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'oAgeoZMd', '7433834'), + (73210, 801, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'oAgeoZMd', '7470197'), + (73211, 801, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'oAgeoZMd', '7685613'), + (73212, 801, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'oAgeoZMd', '7688194'), + (73213, 801, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'oAgeoZMd', '7688196'), + (73214, 801, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'oAgeoZMd', '7688289'), + (73215, 801, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'oAgeoZMd', '7692763'), + (73216, 801, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'oAgeoZMd', '7697552'), + (73217, 801, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'oAgeoZMd', '7699878'), + (73218, 801, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'oAgeoZMd', '7704043'), + (73219, 801, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'oAgeoZMd', '7712467'), + (73220, 801, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'oAgeoZMd', '7713585'), + (73221, 801, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'oAgeoZMd', '7713586'), + (73222, 801, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'oAgeoZMd', '7738518'), + (73223, 801, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'oAgeoZMd', '7750636'), + (73224, 801, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'oAgeoZMd', '7796540'), + (73225, 801, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'oAgeoZMd', '7796541'), + (73226, 801, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'oAgeoZMd', '7796542'), + (73227, 801, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'oAgeoZMd', '7825913'), + (73228, 801, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'oAgeoZMd', '7826209'), + (73229, 801, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'oAgeoZMd', '7834742'), + (73230, 801, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'oAgeoZMd', '7842108'), + (73231, 801, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'oAgeoZMd', '7842902'), + (73232, 801, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'oAgeoZMd', '7842903'), + (73233, 801, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'oAgeoZMd', '7842904'), + (73234, 801, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'oAgeoZMd', '7842905'), + (73235, 801, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'oAgeoZMd', '7855719'), + (73236, 801, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'oAgeoZMd', '7860683'), + (73237, 801, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'oAgeoZMd', '7860684'), + (73238, 801, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'oAgeoZMd', '7866095'), + (73239, 801, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'oAgeoZMd', '7869170'), + (73240, 801, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'oAgeoZMd', '7869188'), + (73241, 801, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'oAgeoZMd', '7869201'), + (73242, 801, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'oAgeoZMd', '7877465'), + (73243, 801, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'oAgeoZMd', '7888250'), + (73244, 801, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'oAgeoZMd', '7904777'), + (73245, 801, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'oAgeoZMd', '8349164'), + (73246, 801, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'oAgeoZMd', '8349545'), + (73247, 801, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'oAgeoZMd', '8368028'), + (73248, 801, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'oAgeoZMd', '8368029'), + (73249, 801, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'oAgeoZMd', '8388462'), + (73250, 801, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'oAgeoZMd', '8400273'), + (73251, 801, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'oAgeoZMd', '8400275'), + (73252, 801, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'oAgeoZMd', '8400276'), + (73253, 801, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'oAgeoZMd', '8404977'), + (73254, 801, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'oAgeoZMd', '8430783'), + (73255, 801, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'oAgeoZMd', '8430784'), + (73256, 801, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'oAgeoZMd', '8430799'), + (73257, 801, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'oAgeoZMd', '8430800'), + (73258, 801, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'oAgeoZMd', '8430801'), + (73259, 801, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'oAgeoZMd', '8438709'), + (73260, 801, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'oAgeoZMd', '8457738'), + (73261, 801, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'oAgeoZMd', '8459566'), + (73262, 801, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'oAgeoZMd', '8459567'), + (73263, 801, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'oAgeoZMd', '8461032'), + (73264, 801, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'oAgeoZMd', '8477877'), + (73265, 801, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'oAgeoZMd', '8485688'), + (73266, 801, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'oAgeoZMd', '8490587'), + (73267, 801, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'oAgeoZMd', '8493552'), + (73268, 801, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'oAgeoZMd', '8493553'), + (73269, 801, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'oAgeoZMd', '8493554'), + (73270, 801, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'oAgeoZMd', '8493555'), + (73271, 801, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'oAgeoZMd', '8493556'), + (73272, 801, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'oAgeoZMd', '8493557'), + (73273, 801, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'oAgeoZMd', '8493558'), + (73274, 801, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'oAgeoZMd', '8493559'), + (73275, 801, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'oAgeoZMd', '8493560'), + (73276, 801, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'oAgeoZMd', '8493561'), + (73277, 801, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'oAgeoZMd', '8493572'), + (73278, 801, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'oAgeoZMd', '8540725'), + (73279, 801, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'oAgeoZMd', '8555421'), + (73280, 802, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mMp5NZYd', '5630960'), + (73281, 802, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mMp5NZYd', '5630961'), + (73282, 802, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mMp5NZYd', '5630962'), + (73283, 802, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mMp5NZYd', '5630966'), + (73284, 802, 1738, 'not_attending', '2022-10-12 14:33:30', '2025-12-17 19:47:14', 'mMp5NZYd', '5638765'), + (73285, 802, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mMp5NZYd', '5640097'), + (73286, 802, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mMp5NZYd', '5652395'), + (73287, 802, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mMp5NZYd', '5671637'), + (73288, 802, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mMp5NZYd', '5672329'), + (73289, 802, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mMp5NZYd', '5674057'), + (73290, 802, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mMp5NZYd', '5674060'), + (73291, 802, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mMp5NZYd', '5677461'), + (73292, 802, 1775, 'attending', '2022-10-28 11:16:49', '2025-12-17 19:47:14', 'mMp5NZYd', '5679063'), + (73293, 802, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mMp5NZYd', '5698046'), + (73294, 802, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'mMp5NZYd', '5699760'), + (73295, 802, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mMp5NZYd', '6045684'), + (73296, 803, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxDr08wd', '6045684'), + (73297, 804, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'o4PyBMnd', '3149489'), + (73298, 804, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'o4PyBMnd', '3149491'), + (73299, 804, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'o4PyBMnd', '3236450'), + (73300, 804, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'o4PyBMnd', '3236452'), + (73301, 804, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'o4PyBMnd', '3539922'), + (73302, 804, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'o4PyBMnd', '3539923'), + (73303, 804, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'o4PyBMnd', '3963335'), + (73304, 804, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'o4PyBMnd', '3975311'), + (73305, 804, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'o4PyBMnd', '3975312'), + (73306, 804, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'o4PyBMnd', '3994992'), + (73307, 804, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'o4PyBMnd', '4014338'), + (73308, 804, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'o4PyBMnd', '4136744'), + (73309, 804, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PyBMnd', '6045684'), + (73310, 805, 2515, 'maybe', '2024-05-02 16:52:25', '2025-12-17 19:46:35', '841XajMA', '7074355'), + (73311, 805, 2520, 'attending', '2024-05-14 23:35:38', '2025-12-17 19:46:35', '841XajMA', '7074360'), + (73312, 805, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '841XajMA', '7074364'), + (73313, 805, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '841XajMA', '7114957'), + (73314, 805, 2602, 'attending', '2024-04-28 16:17:23', '2025-12-17 19:46:34', '841XajMA', '7220467'), + (73315, 805, 2604, 'maybe', '2024-05-26 20:12:25', '2025-12-17 19:46:36', '841XajMA', '7225670'), + (73316, 805, 2605, 'attending', '2024-05-03 16:44:40', '2025-12-17 19:46:35', '841XajMA', '7229243'), + (73317, 805, 2606, 'attending', '2024-04-28 15:47:51', '2025-12-17 19:46:35', '841XajMA', '7230496'), + (73318, 805, 2608, 'attending', '2024-05-01 13:43:54', '2025-12-17 19:46:35', '841XajMA', '7240272'), + (73319, 805, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '841XajMA', '7240354'), + (73320, 805, 2613, 'attending', '2024-05-02 16:52:19', '2025-12-17 19:46:35', '841XajMA', '7247644'), + (73321, 805, 2614, 'maybe', '2024-05-02 16:52:36', '2025-12-17 19:46:35', '841XajMA', '7247645'), + (73322, 805, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '841XajMA', '7251633'), + (73323, 805, 2618, 'attending', '2024-05-05 03:10:07', '2025-12-17 19:46:35', '841XajMA', '7251685'), + (73324, 805, 2620, 'maybe', '2024-05-15 13:58:34', '2025-12-17 19:46:35', '841XajMA', '7258097'), + (73325, 805, 2625, 'not_attending', '2024-05-12 03:05:57', '2025-12-17 19:46:35', '841XajMA', '7263302'), + (73326, 805, 2626, 'attending', '2024-05-15 13:59:06', '2025-12-17 19:46:35', '841XajMA', '7264723'), + (73327, 805, 2628, 'maybe', '2024-05-26 20:12:48', '2025-12-17 19:46:36', '841XajMA', '7264725'), + (73328, 805, 2629, 'attending', '2024-06-08 02:20:13', '2025-12-17 19:46:28', '841XajMA', '7264726'), + (73329, 805, 2630, 'attending', '2024-05-14 23:35:24', '2025-12-17 19:46:35', '841XajMA', '7264801'), + (73330, 805, 2632, 'not_attending', '2024-05-14 12:44:20', '2025-12-17 19:46:35', '841XajMA', '7269123'), + (73331, 805, 2633, 'attending', '2024-05-15 13:58:55', '2025-12-17 19:46:35', '841XajMA', '7270095'), + (73332, 805, 2644, 'attending', '2024-05-23 21:21:16', '2025-12-17 19:46:35', '841XajMA', '7279039'), + (73333, 805, 2651, 'maybe', '2024-05-24 21:26:58', '2025-12-17 19:46:35', '841XajMA', '7288200'), + (73334, 805, 2652, 'maybe', '2024-05-26 20:12:43', '2025-12-17 19:46:36', '841XajMA', '7288339'), + (73335, 805, 2655, 'maybe', '2024-05-27 23:43:57', '2025-12-17 19:46:35', '841XajMA', '7291225'), + (73336, 805, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '841XajMA', '7302674'), + (73337, 805, 2666, 'maybe', '2024-06-06 23:51:16', '2025-12-17 19:46:36', '841XajMA', '7307775'), + (73338, 805, 2667, 'maybe', '2024-06-05 12:22:48', '2025-12-17 19:46:36', '841XajMA', '7307776'), + (73339, 805, 2668, 'attending', '2024-06-06 02:09:56', '2025-12-17 19:46:36', '841XajMA', '7308821'), + (73340, 805, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '841XajMA', '7324073'), + (73341, 805, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '841XajMA', '7324074'), + (73342, 805, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '841XajMA', '7324075'), + (73343, 805, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '841XajMA', '7324078'), + (73344, 805, 2696, 'attending', '2024-08-24 11:04:45', '2025-12-17 19:46:32', '841XajMA', '7324081'), + (73345, 805, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '841XajMA', '7324082'), + (73346, 805, 2699, 'maybe', '2024-06-12 16:47:43', '2025-12-17 19:46:28', '841XajMA', '7324385'), + (73347, 805, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '841XajMA', '7331457'), + (73348, 805, 2723, 'maybe', '2024-06-20 19:06:43', '2025-12-17 19:46:29', '841XajMA', '7332389'), + (73349, 805, 2724, 'attending', '2024-06-26 00:38:49', '2025-12-17 19:46:29', '841XajMA', '7332562'), + (73350, 805, 2729, 'maybe', '2024-06-23 16:47:52', '2025-12-17 19:46:29', '841XajMA', '7335092'), + (73351, 805, 2763, 'maybe', '2024-07-21 13:23:01', '2025-12-17 19:46:30', '841XajMA', '7363594'), + (73352, 805, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '841XajMA', '7363643'), + (73353, 805, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '841XajMA', '7368606'), + (73354, 805, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '841XajMA', '7397462'), + (73355, 805, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '841XajMA', '7424275'), + (73356, 805, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '841XajMA', '7424276'), + (73357, 805, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '841XajMA', '7432751'), + (73358, 805, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '841XajMA', '7432752'), + (73359, 805, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '841XajMA', '7432753'), + (73360, 805, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '841XajMA', '7432754'), + (73361, 805, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '841XajMA', '7432755'), + (73362, 805, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '841XajMA', '7432756'), + (73363, 805, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '841XajMA', '7432758'), + (73364, 805, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '841XajMA', '7432759'), + (73365, 805, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '841XajMA', '7433834'), + (73366, 805, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '841XajMA', '7470197'), + (73367, 805, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '841XajMA', '7685613'), + (73368, 805, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '841XajMA', '7688194'), + (73369, 805, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '841XajMA', '7688196'), + (73370, 805, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '841XajMA', '7688289'), + (73371, 805, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '841XajMA', '7692763'), + (73372, 805, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '841XajMA', '7697552'), + (73373, 805, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '841XajMA', '7699878'), + (73374, 806, 258, 'not_attending', '2021-05-29 17:28:18', '2025-12-17 19:47:47', 'rdOJWoP4', '3149489'), + (73375, 806, 397, 'not_attending', '2021-05-27 22:05:46', '2025-12-17 19:47:47', 'rdOJWoP4', '3236452'), + (73376, 806, 647, 'maybe', '2021-05-22 00:07:46', '2025-12-17 19:47:46', 'rdOJWoP4', '3539922'), + (73377, 806, 648, 'maybe', '2021-05-24 22:13:03', '2025-12-17 19:47:47', 'rdOJWoP4', '3539923'), + (73378, 806, 725, 'maybe', '2021-05-23 21:39:10', '2025-12-17 19:47:47', 'rdOJWoP4', '3661372'), + (73379, 806, 773, 'not_attending', '2021-05-27 18:32:57', '2025-12-17 19:47:46', 'rdOJWoP4', '3729399'), + (73380, 806, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'rdOJWoP4', '3963335'), + (73381, 806, 821, 'maybe', '2021-05-31 18:22:32', '2025-12-17 19:47:47', 'rdOJWoP4', '3963965'), + (73382, 806, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'rdOJWoP4', '3974109'), + (73383, 806, 824, 'maybe', '2021-06-03 22:48:05', '2025-12-17 19:47:47', 'rdOJWoP4', '3974112'), + (73384, 806, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'rdOJWoP4', '3975311'), + (73385, 806, 828, 'not_attending', '2021-06-12 22:59:34', '2025-12-17 19:47:47', 'rdOJWoP4', '3975312'), + (73386, 806, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOJWoP4', '3994992'), + (73387, 806, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'rdOJWoP4', '4014338'), + (73388, 806, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'rdOJWoP4', '4021848'), + (73389, 806, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'rdOJWoP4', '4136744'), + (73390, 806, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'rdOJWoP4', '4136937'), + (73391, 806, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'rdOJWoP4', '4136938'), + (73392, 806, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'rdOJWoP4', '4136947'), + (73393, 806, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOJWoP4', '4210314'), + (73394, 806, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'rdOJWoP4', '4225444'), + (73395, 806, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'rdOJWoP4', '4239259'), + (73396, 806, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'rdOJWoP4', '4240316'), + (73397, 806, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'rdOJWoP4', '4240317'), + (73398, 806, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdOJWoP4', '4240318'), + (73399, 806, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'rdOJWoP4', '4240320'), + (73400, 806, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'rdOJWoP4', '4250163'), + (73401, 806, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'rdOJWoP4', '4275957'), + (73402, 806, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdOJWoP4', '4277819'), + (73403, 806, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdOJWoP4', '4301723'), + (73404, 806, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'rdOJWoP4', '4302093'), + (73405, 806, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOJWoP4', '4304151'), + (73406, 806, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'rdOJWoP4', '4345519'), + (73407, 806, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOJWoP4', '4356801'), + (73408, 806, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'rdOJWoP4', '4358025'), + (73409, 806, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'rdOJWoP4', '4366186'), + (73410, 806, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdOJWoP4', '4366187'), + (73411, 806, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'rdOJWoP4', '4402823'), + (73412, 806, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'rdOJWoP4', '4420735'), + (73413, 806, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'rdOJWoP4', '4420738'), + (73414, 806, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'rdOJWoP4', '4420739'), + (73415, 806, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'rdOJWoP4', '4420741'), + (73416, 806, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'rdOJWoP4', '4420744'), + (73417, 806, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'rdOJWoP4', '4420747'), + (73418, 806, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'rdOJWoP4', '4420748'), + (73419, 806, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'rdOJWoP4', '4420749'), + (73420, 806, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'rdOJWoP4', '4461883'), + (73421, 806, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOJWoP4', '6045684'), + (73422, 807, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd9oGkMpA', '4736503'), + (73423, 807, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd9oGkMpA', '4736504'), + (73424, 807, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd9oGkMpA', '5045826'), + (73425, 807, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd9oGkMpA', '5132533'), + (73426, 807, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd9oGkMpA', '5186582'), + (73427, 807, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd9oGkMpA', '5186583'), + (73428, 807, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd9oGkMpA', '5186585'), + (73429, 807, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9oGkMpA', '5190437'), + (73430, 807, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'd9oGkMpA', '5196763'), + (73431, 807, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'd9oGkMpA', '5199460'), + (73432, 807, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9oGkMpA', '5215989'), + (73433, 807, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd9oGkMpA', '6045684'), + (73434, 808, 2104, 'attending', '2023-06-19 03:13:45', '2025-12-17 19:46:50', 'dKZnkrY4', '6149499'), + (73435, 808, 2108, 'attending', '2023-06-18 17:37:22', '2025-12-17 19:46:50', 'dKZnkrY4', '6150864'), + (73436, 808, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKZnkrY4', '6155491'), + (73437, 808, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKZnkrY4', '6164417'), + (73438, 808, 2120, 'maybe', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKZnkrY4', '6166388'), + (73439, 808, 2121, 'attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKZnkrY4', '6176439'), + (73440, 808, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKZnkrY4', '6182410'), + (73441, 808, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKZnkrY4', '6185812'), + (73442, 808, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKZnkrY4', '6187651'), + (73443, 808, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKZnkrY4', '6187963'), + (73444, 808, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKZnkrY4', '6187964'), + (73445, 808, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKZnkrY4', '6187966'), + (73446, 808, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKZnkrY4', '6187967'), + (73447, 808, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKZnkrY4', '6187969'), + (73448, 808, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKZnkrY4', '6334878'), + (73449, 808, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dKZnkrY4', '6337236'), + (73450, 808, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKZnkrY4', '6337970'), + (73451, 808, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dKZnkrY4', '6338308'), + (73452, 808, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dKZnkrY4', '6340845'), + (73453, 808, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dKZnkrY4', '6341710'), + (73454, 808, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKZnkrY4', '6342044'), + (73455, 808, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKZnkrY4', '6342298'), + (73456, 808, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dKZnkrY4', '6343294'), + (73457, 808, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKZnkrY4', '6347034'), + (73458, 808, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKZnkrY4', '6347056'), + (73459, 808, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKZnkrY4', '6353830'), + (73460, 808, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKZnkrY4', '6353831'), + (73461, 808, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKZnkrY4', '6357867'), + (73462, 808, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKZnkrY4', '6358652'), + (73463, 808, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKZnkrY4', '6361709'), + (73464, 808, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKZnkrY4', '6361710'), + (73465, 808, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKZnkrY4', '6361711'), + (73466, 808, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dKZnkrY4', '6361712'), + (73467, 808, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKZnkrY4', '6361713'), + (73468, 808, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKZnkrY4', '6382573'), + (73469, 808, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dKZnkrY4', '6388604'), + (73470, 808, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKZnkrY4', '6394629'), + (73471, 808, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKZnkrY4', '6394631'), + (73472, 808, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKZnkrY4', '6440863'), + (73473, 808, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKZnkrY4', '6445440'), + (73474, 808, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKZnkrY4', '6453951'), + (73475, 808, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKZnkrY4', '6461696'), + (73476, 808, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKZnkrY4', '6462129'), + (73477, 808, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKZnkrY4', '6463218'), + (73478, 808, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dKZnkrY4', '6472181'), + (73479, 808, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZnkrY4', '6482693'), + (73480, 808, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZnkrY4', '6484200'), + (73481, 808, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKZnkrY4', '6484680'), + (73482, 808, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZnkrY4', '6507741'), + (73483, 808, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZnkrY4', '6514659'), + (73484, 808, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZnkrY4', '6514660'), + (73485, 808, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZnkrY4', '6519103'), + (73486, 808, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZnkrY4', '6535681'), + (73487, 808, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZnkrY4', '6584747'), + (73488, 808, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZnkrY4', '6587097'), + (73489, 808, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZnkrY4', '6609022'), + (73490, 808, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZnkrY4', '6632757'), + (73491, 808, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZnkrY4', '6644187'), + (73492, 808, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZnkrY4', '6648951'), + (73493, 808, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZnkrY4', '6648952'), + (73494, 808, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZnkrY4', '6655401'), + (73495, 808, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZnkrY4', '6661585'), + (73496, 808, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZnkrY4', '6661588'), + (73497, 808, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZnkrY4', '6661589'), + (73498, 808, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZnkrY4', '6699906'), + (73499, 808, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZnkrY4', '6701109'), + (73500, 808, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZnkrY4', '6705219'), + (73501, 808, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZnkrY4', '6710153'), + (73502, 808, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZnkrY4', '6711552'), + (73503, 808, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZnkrY4', '6711553'), + (73504, 809, 252, 'attending', '2021-02-23 22:27:34', '2025-12-17 19:47:50', '1ArjK9lA', '3149483'), + (73505, 809, 574, 'not_attending', '2021-03-05 05:02:37', '2025-12-17 19:47:51', '1ArjK9lA', '3435543'), + (73506, 809, 604, 'attending', '2021-02-23 22:28:04', '2025-12-17 19:47:50', '1ArjK9lA', '3470305'), + (73507, 809, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '1ArjK9lA', '3517815'), + (73508, 809, 622, 'attending', '2021-03-14 00:06:45', '2025-12-17 19:47:51', '1ArjK9lA', '3517816'), + (73509, 809, 623, 'attending', '2021-02-26 00:25:39', '2025-12-17 19:47:50', '1ArjK9lA', '3523941'), + (73510, 809, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '1ArjK9lA', '3533850'), + (73511, 809, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '1ArjK9lA', '3536632'), + (73512, 809, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '1ArjK9lA', '3536656'), + (73513, 809, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '1ArjK9lA', '3539916'), + (73514, 809, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '1ArjK9lA', '3539917'), + (73515, 809, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '1ArjK9lA', '3539918'), + (73516, 809, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '1ArjK9lA', '3539919'), + (73517, 809, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '1ArjK9lA', '3539920'), + (73518, 809, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '1ArjK9lA', '3539921'), + (73519, 809, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '1ArjK9lA', '3539922'), + (73520, 809, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '1ArjK9lA', '3539923'), + (73521, 809, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '1ArjK9lA', '3539927'), + (73522, 809, 705, 'not_attending', '2021-03-28 18:10:07', '2025-12-17 19:47:44', '1ArjK9lA', '3581895'), + (73523, 809, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '1ArjK9lA', '3582734'), + (73524, 809, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '1ArjK9lA', '3583262'), + (73525, 809, 717, 'attending', '2021-03-28 18:10:09', '2025-12-17 19:47:44', '1ArjK9lA', '3619523'), + (73526, 809, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '1ArjK9lA', '3661369'), + (73527, 809, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '1ArjK9lA', '3674262'), + (73528, 809, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '1ArjK9lA', '3677402'), + (73529, 809, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '1ArjK9lA', '3730212'), + (73530, 809, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArjK9lA', '6045684'), + (73531, 810, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dx6OrX1A', '4736499'), + (73532, 810, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dx6OrX1A', '4736503'), + (73533, 810, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dx6OrX1A', '4736504'), + (73534, 810, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dx6OrX1A', '5038850'), + (73535, 810, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dx6OrX1A', '5045826'), + (73536, 810, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dx6OrX1A', '5132533'), + (73537, 810, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dx6OrX1A', '6045684'), + (73538, 811, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'nda5rLnd', '3314964'), + (73539, 811, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'nda5rLnd', '3323365'), + (73540, 811, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'nda5rLnd', '3329383'), + (73541, 811, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'nda5rLnd', '3351539'), + (73542, 811, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'nda5rLnd', '3386848'), + (73543, 811, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'nda5rLnd', '3389527'), + (73544, 811, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'nda5rLnd', '3396499'), + (73545, 811, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'nda5rLnd', '3403650'), + (73546, 811, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nda5rLnd', '3406988'), + (73547, 811, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'nda5rLnd', '3416576'), + (73548, 811, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'nda5rLnd', '3430267'), + (73549, 811, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'nda5rLnd', '3470305'), + (73550, 811, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'nda5rLnd', '3470991'), + (73551, 811, 621, 'attending', '2021-03-05 15:32:05', '2025-12-17 19:47:51', 'nda5rLnd', '3517815'), + (73552, 811, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'nda5rLnd', '3517816'), + (73553, 811, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'nda5rLnd', '3523941'), + (73554, 811, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'nda5rLnd', '3533850'), + (73555, 811, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'nda5rLnd', '3536632'), + (73556, 811, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'nda5rLnd', '3536656'), + (73557, 811, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'nda5rLnd', '3539916'), + (73558, 811, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'nda5rLnd', '3539917'), + (73559, 811, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'nda5rLnd', '3539918'), + (73560, 811, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'nda5rLnd', '3539919'), + (73561, 811, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'nda5rLnd', '3539920'), + (73562, 811, 646, 'attending', '2021-05-14 14:10:11', '2025-12-17 19:47:46', 'nda5rLnd', '3539921'), + (73563, 811, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'nda5rLnd', '3539922'), + (73564, 811, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'nda5rLnd', '3539923'), + (73565, 811, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'nda5rLnd', '3539927'), + (73566, 811, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'nda5rLnd', '3582734'), + (73567, 811, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'nda5rLnd', '3583262'), + (73568, 811, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'nda5rLnd', '3619523'), + (73569, 811, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'nda5rLnd', '3661369'), + (73570, 811, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'nda5rLnd', '3674262'), + (73571, 811, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'nda5rLnd', '3677402'), + (73572, 811, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'nda5rLnd', '3730212'), + (73573, 811, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'nda5rLnd', '3793156'), + (73574, 811, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'nda5rLnd', '3974109'), + (73575, 811, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'nda5rLnd', '3975311'), + (73576, 811, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'nda5rLnd', '3975312'), + (73577, 811, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'nda5rLnd', '3994992'), + (73578, 811, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'nda5rLnd', '4014338'), + (73579, 811, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'nda5rLnd', '4021848'), + (73580, 811, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'nda5rLnd', '4136744'), + (73581, 811, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'nda5rLnd', '4136937'), + (73582, 811, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'nda5rLnd', '4136938'), + (73583, 811, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'nda5rLnd', '4136947'), + (73584, 811, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nda5rLnd', '4210314'), + (73585, 811, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'nda5rLnd', '4225444'), + (73586, 811, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'nda5rLnd', '4239259'), + (73587, 811, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'nda5rLnd', '4240316'), + (73588, 811, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'nda5rLnd', '4240317'), + (73589, 811, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'nda5rLnd', '4240318'), + (73590, 811, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'nda5rLnd', '4240320'), + (73591, 811, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'nda5rLnd', '4250163'), + (73592, 811, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'nda5rLnd', '4275957'), + (73593, 811, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nda5rLnd', '4277819'), + (73594, 811, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'nda5rLnd', '4301723'), + (73595, 811, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'nda5rLnd', '4302093'), + (73596, 811, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nda5rLnd', '4304151'), + (73597, 811, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nda5rLnd', '4356801'), + (73598, 811, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'nda5rLnd', '4366186'), + (73599, 811, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'nda5rLnd', '4366187'), + (73600, 811, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'nda5rLnd', '4420735'), + (73601, 811, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nda5rLnd', '4420738'), + (73602, 811, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nda5rLnd', '4420739'), + (73603, 811, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nda5rLnd', '4420741'), + (73604, 811, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nda5rLnd', '4420744'), + (73605, 811, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nda5rLnd', '4420747'), + (73606, 811, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nda5rLnd', '4420748'), + (73607, 811, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nda5rLnd', '4420749'), + (73608, 811, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nda5rLnd', '4461883'), + (73609, 811, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nda5rLnd', '4508342'), + (73610, 811, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nda5rLnd', '4568602'), + (73611, 811, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nda5rLnd', '4572153'), + (73612, 811, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'nda5rLnd', '4585962'), + (73613, 811, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'nda5rLnd', '4596356'), + (73614, 811, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nda5rLnd', '4598860'), + (73615, 811, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'nda5rLnd', '4598861'), + (73616, 811, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'nda5rLnd', '4602797'), + (73617, 811, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'nda5rLnd', '4637896'), + (73618, 811, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nda5rLnd', '4642994'), + (73619, 811, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'nda5rLnd', '4642995'), + (73620, 811, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'nda5rLnd', '4642996'), + (73621, 811, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'nda5rLnd', '4642997'), + (73622, 811, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'nda5rLnd', '4645687'), + (73623, 811, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nda5rLnd', '4645698'), + (73624, 811, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'nda5rLnd', '4645704'), + (73625, 811, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'nda5rLnd', '4645705'), + (73626, 811, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'nda5rLnd', '4668385'), + (73627, 811, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nda5rLnd', '4694407'), + (73628, 811, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nda5rLnd', '4736497'), + (73629, 811, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nda5rLnd', '4736499'), + (73630, 811, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nda5rLnd', '4736500'), + (73631, 811, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nda5rLnd', '4736503'), + (73632, 811, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nda5rLnd', '4736504'), + (73633, 811, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nda5rLnd', '4746789'), + (73634, 811, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'nda5rLnd', '4753929'), + (73635, 811, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nda5rLnd', '5038850'), + (73636, 811, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nda5rLnd', '5045826'), + (73637, 811, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nda5rLnd', '5132533'), + (73638, 811, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'nda5rLnd', '5186582'), + (73639, 811, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nda5rLnd', '5186583'), + (73640, 811, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nda5rLnd', '5186585'), + (73641, 811, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'nda5rLnd', '5190437'), + (73642, 811, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nda5rLnd', '5195095'), + (73643, 811, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nda5rLnd', '5215989'), + (73644, 811, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nda5rLnd', '5223686'), + (73645, 811, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nda5rLnd', '5247467'), + (73646, 811, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nda5rLnd', '5260800'), + (73647, 811, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nda5rLnd', '5269930'), + (73648, 811, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nda5rLnd', '5271448'), + (73649, 811, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'nda5rLnd', '5271449'), + (73650, 811, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nda5rLnd', '5278159'), + (73651, 811, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'nda5rLnd', '5363695'), + (73652, 811, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nda5rLnd', '5365960'), + (73653, 811, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nda5rLnd', '5378247'), + (73654, 811, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'nda5rLnd', '5389605'), + (73655, 811, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nda5rLnd', '5397265'), + (73656, 811, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nda5rLnd', '5404786'), + (73657, 811, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nda5rLnd', '5405203'), + (73658, 811, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nda5rLnd', '5412550'), + (73659, 811, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nda5rLnd', '5415046'), + (73660, 811, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nda5rLnd', '5422086'), + (73661, 811, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nda5rLnd', '5422406'), + (73662, 811, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nda5rLnd', '5424565'), + (73663, 811, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nda5rLnd', '5426882'), + (73664, 811, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nda5rLnd', '5441125'), + (73665, 811, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nda5rLnd', '5441126'), + (73666, 811, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nda5rLnd', '5441128'), + (73667, 811, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nda5rLnd', '5441131'), + (73668, 811, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nda5rLnd', '5441132'), + (73669, 811, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nda5rLnd', '5453325'), + (73670, 811, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nda5rLnd', '5454516'), + (73671, 811, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nda5rLnd', '5454605'), + (73672, 811, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nda5rLnd', '5455037'), + (73673, 811, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nda5rLnd', '5461278'), + (73674, 811, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nda5rLnd', '5469480'), + (73675, 811, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nda5rLnd', '5474663'), + (73676, 811, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nda5rLnd', '5482022'), + (73677, 811, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nda5rLnd', '5488912'), + (73678, 811, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nda5rLnd', '5492192'), + (73679, 811, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nda5rLnd', '5493139'), + (73680, 811, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nda5rLnd', '5493200'), + (73681, 811, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nda5rLnd', '5502188'), + (73682, 811, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nda5rLnd', '5505059'), + (73683, 811, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nda5rLnd', '5509055'), + (73684, 811, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nda5rLnd', '5512862'), + (73685, 811, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nda5rLnd', '5513985'), + (73686, 811, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nda5rLnd', '5519981'), + (73687, 811, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nda5rLnd', '5522550'), + (73688, 811, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nda5rLnd', '5534683'), + (73689, 811, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nda5rLnd', '5537735'), + (73690, 811, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nda5rLnd', '5540859'), + (73691, 811, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nda5rLnd', '5546619'), + (73692, 811, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nda5rLnd', '5557747'), + (73693, 811, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nda5rLnd', '5560255'), + (73694, 811, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nda5rLnd', '5562906'), + (73695, 811, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nda5rLnd', '5600604'), + (73696, 811, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nda5rLnd', '5605544'), + (73697, 811, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nda5rLnd', '5630960'), + (73698, 811, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nda5rLnd', '5630961'), + (73699, 811, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nda5rLnd', '5630962'), + (73700, 811, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nda5rLnd', '5630966'), + (73701, 811, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nda5rLnd', '5630967'), + (73702, 811, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nda5rLnd', '5630968'), + (73703, 811, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nda5rLnd', '5635406'), + (73704, 811, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nda5rLnd', '5638765'), + (73705, 811, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nda5rLnd', '5640097'), + (73706, 811, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nda5rLnd', '5640843'), + (73707, 811, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nda5rLnd', '5641521'), + (73708, 811, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nda5rLnd', '5642818'), + (73709, 811, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nda5rLnd', '5652395'), + (73710, 811, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nda5rLnd', '5670445'), + (73711, 811, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nda5rLnd', '5671637'), + (73712, 811, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nda5rLnd', '5672329'), + (73713, 811, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nda5rLnd', '5674057'), + (73714, 811, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nda5rLnd', '5674060'), + (73715, 811, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nda5rLnd', '5677461'), + (73716, 811, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nda5rLnd', '5698046'), + (73717, 811, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nda5rLnd', '5699760'), + (73718, 811, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nda5rLnd', '5741601'), + (73719, 811, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nda5rLnd', '5763458'), + (73720, 811, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nda5rLnd', '5774172'), + (73721, 811, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nda5rLnd', '5818247'), + (73722, 811, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nda5rLnd', '5819471'), + (73723, 811, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'nda5rLnd', '5827739'), + (73724, 811, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nda5rLnd', '5844306'), + (73725, 811, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nda5rLnd', '5850159'), + (73726, 811, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nda5rLnd', '5858999'), + (73727, 811, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nda5rLnd', '5871984'), + (73728, 811, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nda5rLnd', '5876354'), + (73729, 811, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nda5rLnd', '5880939'), + (73730, 811, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nda5rLnd', '5880940'), + (73731, 811, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nda5rLnd', '5880942'), + (73732, 811, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nda5rLnd', '5880943'), + (73733, 811, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nda5rLnd', '5887890'), + (73734, 811, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nda5rLnd', '5888598'), + (73735, 811, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nda5rLnd', '5893260'), + (73736, 811, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nda5rLnd', '5899826'), + (73737, 811, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nda5rLnd', '5900199'), + (73738, 811, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nda5rLnd', '5900200'), + (73739, 811, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nda5rLnd', '5900202'), + (73740, 811, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nda5rLnd', '5900203'), + (73741, 811, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nda5rLnd', '5901108'), + (73742, 811, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nda5rLnd', '5901126'), + (73743, 811, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'nda5rLnd', '5901606'), + (73744, 811, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nda5rLnd', '5909655'), + (73745, 811, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nda5rLnd', '5910522'), + (73746, 811, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nda5rLnd', '5910526'), + (73747, 811, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nda5rLnd', '5910528'), + (73748, 811, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nda5rLnd', '5916219'), + (73749, 811, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nda5rLnd', '5936234'), + (73750, 811, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nda5rLnd', '5958351'), + (73751, 811, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nda5rLnd', '5959751'), + (73752, 811, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nda5rLnd', '5959755'), + (73753, 811, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nda5rLnd', '5960055'), + (73754, 811, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nda5rLnd', '5961684'), + (73755, 811, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nda5rLnd', '5962132'), + (73756, 811, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nda5rLnd', '5962133'), + (73757, 811, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nda5rLnd', '5962134'), + (73758, 811, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nda5rLnd', '5962317'), + (73759, 811, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nda5rLnd', '5962318'), + (73760, 811, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nda5rLnd', '5965933'), + (73761, 811, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nda5rLnd', '5967014'), + (73762, 811, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nda5rLnd', '5972815'), + (73763, 811, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nda5rLnd', '5974016'), + (73764, 811, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nda5rLnd', '5981515'), + (73765, 811, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nda5rLnd', '5993516'), + (73766, 811, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nda5rLnd', '5998939'), + (73767, 811, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nda5rLnd', '6028191'), + (73768, 811, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nda5rLnd', '6040066'), + (73769, 811, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nda5rLnd', '6042717'), + (73770, 811, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nda5rLnd', '6044838'), + (73771, 811, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nda5rLnd', '6044839'), + (73772, 811, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nda5rLnd', '6045684'), + (73773, 811, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nda5rLnd', '6050104'), + (73774, 811, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nda5rLnd', '6053195'), + (73775, 811, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nda5rLnd', '6053198'), + (73776, 811, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nda5rLnd', '6056085'), + (73777, 811, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nda5rLnd', '6056916'), + (73778, 811, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nda5rLnd', '6059290'), + (73779, 811, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nda5rLnd', '6060328'), + (73780, 811, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nda5rLnd', '6061037'), + (73781, 811, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nda5rLnd', '6061039'), + (73782, 811, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nda5rLnd', '6067245'), + (73783, 811, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nda5rLnd', '6068094'), + (73784, 811, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nda5rLnd', '6068252'), + (73785, 811, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nda5rLnd', '6068253'), + (73786, 811, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nda5rLnd', '6068254'), + (73787, 811, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nda5rLnd', '6068280'), + (73788, 811, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nda5rLnd', '6069093'), + (73789, 811, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nda5rLnd', '6072528'), + (73790, 811, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nda5rLnd', '6079840'), + (73791, 811, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nda5rLnd', '6083398'), + (73792, 811, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nda5rLnd', '6093504'), + (73793, 811, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nda5rLnd', '6097414'), + (73794, 811, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nda5rLnd', '6097442'), + (73795, 811, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nda5rLnd', '6097684'), + (73796, 811, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nda5rLnd', '6098762'), + (73797, 811, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nda5rLnd', '6101361'), + (73798, 811, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nda5rLnd', '6101362'), + (73799, 811, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nda5rLnd', '6107314'), + (73800, 811, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nda5rLnd', '6120034'), + (73801, 811, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nda5rLnd', '6136733'), + (73802, 811, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nda5rLnd', '6137989'), + (73803, 811, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nda5rLnd', '6150864'), + (73804, 811, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nda5rLnd', '6155491'), + (73805, 811, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nda5rLnd', '6164417'), + (73806, 811, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nda5rLnd', '6166388'), + (73807, 811, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nda5rLnd', '6176439'), + (73808, 811, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nda5rLnd', '6182410'), + (73809, 811, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nda5rLnd', '6185812'), + (73810, 811, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nda5rLnd', '6187651'), + (73811, 811, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nda5rLnd', '6187963'), + (73812, 811, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nda5rLnd', '6187964'), + (73813, 811, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nda5rLnd', '6187966'), + (73814, 811, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nda5rLnd', '6187967'), + (73815, 811, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nda5rLnd', '6187969'), + (73816, 811, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nda5rLnd', '6334878'), + (73817, 811, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nda5rLnd', '6337236'), + (73818, 811, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nda5rLnd', '6337970'), + (73819, 811, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nda5rLnd', '6338308'), + (73820, 811, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nda5rLnd', '6341710'), + (73821, 811, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nda5rLnd', '6342044'), + (73822, 811, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nda5rLnd', '6342298'), + (73823, 811, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nda5rLnd', '6343294'), + (73824, 811, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nda5rLnd', '6347034'), + (73825, 811, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nda5rLnd', '6347056'), + (73826, 811, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nda5rLnd', '6353830'), + (73827, 811, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nda5rLnd', '6353831'), + (73828, 811, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nda5rLnd', '6357867'), + (73829, 811, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nda5rLnd', '6358652'), + (73830, 811, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nda5rLnd', '6361709'), + (73831, 811, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nda5rLnd', '6361710'), + (73832, 811, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nda5rLnd', '6361711'), + (73833, 811, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nda5rLnd', '6361712'), + (73834, 811, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nda5rLnd', '6361713'), + (73835, 811, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nda5rLnd', '6382573'), + (73836, 811, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nda5rLnd', '6388604'), + (73837, 811, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nda5rLnd', '6394629'), + (73838, 811, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nda5rLnd', '6394631'), + (73839, 811, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nda5rLnd', '6440863'), + (73840, 811, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nda5rLnd', '6445440'), + (73841, 811, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nda5rLnd', '6453951'), + (73842, 811, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nda5rLnd', '6461696'), + (73843, 811, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nda5rLnd', '6462129'), + (73844, 811, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nda5rLnd', '6463218'), + (73845, 811, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nda5rLnd', '6472181'), + (73846, 811, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nda5rLnd', '6482693'), + (73847, 811, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'nda5rLnd', '6484200'), + (73848, 811, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nda5rLnd', '6484680'), + (73849, 811, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nda5rLnd', '6507741'), + (73850, 811, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nda5rLnd', '6514659'), + (73851, 811, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nda5rLnd', '6514660'), + (73852, 811, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nda5rLnd', '6519103'), + (73853, 811, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nda5rLnd', '6535681'), + (73854, 811, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nda5rLnd', '6584747'), + (73855, 811, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nda5rLnd', '6587097'), + (73856, 811, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nda5rLnd', '6609022'), + (73857, 811, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nda5rLnd', '6632757'), + (73858, 811, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nda5rLnd', '6644187'), + (73859, 811, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nda5rLnd', '6648951'), + (73860, 811, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nda5rLnd', '6648952'), + (73861, 811, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nda5rLnd', '6655401'), + (73862, 811, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nda5rLnd', '6661585'), + (73863, 811, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nda5rLnd', '6661588'), + (73864, 811, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nda5rLnd', '6661589'), + (73865, 811, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nda5rLnd', '6699906'), + (73866, 811, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nda5rLnd', '6699913'), + (73867, 811, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nda5rLnd', '6701109'), + (73868, 811, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nda5rLnd', '6705219'), + (73869, 811, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nda5rLnd', '6710153'), + (73870, 811, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nda5rLnd', '6711552'), + (73871, 811, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'nda5rLnd', '6711553'), + (73872, 811, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nda5rLnd', '6722688'), + (73873, 811, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nda5rLnd', '6730620'), + (73874, 811, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nda5rLnd', '6740364'), + (73875, 811, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nda5rLnd', '6743829'), + (73876, 811, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nda5rLnd', '7030380'), + (73877, 811, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nda5rLnd', '7033677'), + (73878, 811, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nda5rLnd', '7044715'), + (73879, 811, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nda5rLnd', '7050318'), + (73880, 811, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nda5rLnd', '7050319'), + (73881, 811, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nda5rLnd', '7050322'), + (73882, 811, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nda5rLnd', '7057804'), + (73883, 811, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nda5rLnd', '7072824'), + (73884, 811, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nda5rLnd', '7074348'), + (73885, 811, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nda5rLnd', '7074364'), + (73886, 811, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'nda5rLnd', '7089267'), + (73887, 811, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nda5rLnd', '7098747'), + (73888, 811, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nda5rLnd', '7113468'), + (73889, 811, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nda5rLnd', '7114856'), + (73890, 811, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nda5rLnd', '7114951'), + (73891, 811, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nda5rLnd', '7114955'), + (73892, 811, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nda5rLnd', '7114956'), + (73893, 811, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nda5rLnd', '7114957'), + (73894, 811, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nda5rLnd', '7159484'), + (73895, 811, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nda5rLnd', '7178446'), + (73896, 811, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nda5rLnd', '7220467'), + (73897, 811, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nda5rLnd', '7240354'), + (73898, 811, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nda5rLnd', '7251633'), + (73899, 811, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nda5rLnd', '7324073'), + (73900, 811, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nda5rLnd', '7324074'), + (73901, 811, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nda5rLnd', '7324075'), + (73902, 811, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nda5rLnd', '7324078'), + (73903, 811, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nda5rLnd', '7324082'), + (73904, 811, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nda5rLnd', '7331457'), + (73905, 811, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nda5rLnd', '7363643'), + (73906, 811, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nda5rLnd', '7368606'), + (73907, 811, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nda5rLnd', '7397462'), + (73908, 811, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nda5rLnd', '7424275'), + (73909, 811, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nda5rLnd', '7432751'), + (73910, 811, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nda5rLnd', '7432752'), + (73911, 811, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nda5rLnd', '7432753'), + (73912, 811, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nda5rLnd', '7432754'), + (73913, 811, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nda5rLnd', '7432755'), + (73914, 811, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nda5rLnd', '7432756'), + (73915, 811, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nda5rLnd', '7432758'), + (73916, 811, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nda5rLnd', '7432759'), + (73917, 811, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nda5rLnd', '7433834'), + (73918, 811, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nda5rLnd', '7470197'), + (73919, 811, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nda5rLnd', '7685613'), + (73920, 811, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nda5rLnd', '7688194'), + (73921, 811, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nda5rLnd', '7688196'), + (73922, 811, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nda5rLnd', '7688289'), + (73923, 811, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nda5rLnd', '7692763'), + (73924, 811, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nda5rLnd', '7697552'), + (73925, 811, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nda5rLnd', '7699878'), + (73926, 811, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nda5rLnd', '7704043'), + (73927, 811, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nda5rLnd', '7712467'), + (73928, 811, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nda5rLnd', '7713585'), + (73929, 811, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nda5rLnd', '7713586'), + (73930, 811, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nda5rLnd', '7738518'), + (73931, 811, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nda5rLnd', '7750636'), + (73932, 811, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nda5rLnd', '7796540'), + (73933, 811, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nda5rLnd', '7796541'), + (73934, 811, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nda5rLnd', '7796542'), + (73935, 811, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nda5rLnd', '7825913'), + (73936, 811, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nda5rLnd', '7826209'), + (73937, 811, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nda5rLnd', '7834742'), + (73938, 811, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nda5rLnd', '7842108'), + (73939, 811, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nda5rLnd', '7842902'), + (73940, 811, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nda5rLnd', '7842903'), + (73941, 811, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nda5rLnd', '7842904'), + (73942, 811, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nda5rLnd', '7842905'), + (73943, 811, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nda5rLnd', '7855719'), + (73944, 811, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nda5rLnd', '7860683'), + (73945, 811, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nda5rLnd', '7860684'), + (73946, 811, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nda5rLnd', '7866095'), + (73947, 811, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nda5rLnd', '7869170'), + (73948, 811, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nda5rLnd', '7869188'), + (73949, 811, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nda5rLnd', '7869201'), + (73950, 811, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nda5rLnd', '7877465'), + (73951, 811, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nda5rLnd', '7888250'), + (73952, 811, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nda5rLnd', '7904777'), + (73953, 811, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nda5rLnd', '8349164'), + (73954, 811, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nda5rLnd', '8349545'), + (73955, 811, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nda5rLnd', '8368028'), + (73956, 811, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nda5rLnd', '8368029'), + (73957, 811, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nda5rLnd', '8388462'), + (73958, 811, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nda5rLnd', '8400273'), + (73959, 811, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nda5rLnd', '8400275'), + (73960, 811, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nda5rLnd', '8400276'), + (73961, 811, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nda5rLnd', '8404977'), + (73962, 811, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nda5rLnd', '8430783'), + (73963, 811, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nda5rLnd', '8430784'), + (73964, 811, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nda5rLnd', '8430799'), + (73965, 811, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nda5rLnd', '8430800'), + (73966, 811, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nda5rLnd', '8430801'), + (73967, 811, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nda5rLnd', '8438709'), + (73968, 811, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nda5rLnd', '8457738'), + (73969, 811, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nda5rLnd', '8459566'), + (73970, 811, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nda5rLnd', '8459567'), + (73971, 811, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nda5rLnd', '8461032'), + (73972, 811, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nda5rLnd', '8477877'), + (73973, 811, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nda5rLnd', '8485688'), + (73974, 811, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nda5rLnd', '8490587'), + (73975, 811, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nda5rLnd', '8493552'), + (73976, 811, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nda5rLnd', '8493553'), + (73977, 811, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nda5rLnd', '8493554'), + (73978, 811, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nda5rLnd', '8493555'), + (73979, 811, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nda5rLnd', '8493556'), + (73980, 811, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nda5rLnd', '8493557'), + (73981, 811, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nda5rLnd', '8493558'), + (73982, 811, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nda5rLnd', '8493559'), + (73983, 811, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nda5rLnd', '8493560'), + (73984, 811, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nda5rLnd', '8493561'), + (73985, 811, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nda5rLnd', '8493572'), + (73986, 811, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nda5rLnd', '8540725'), + (73987, 811, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nda5rLnd', '8555421'), + (73988, 812, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'w4WkZoP4', '3468125'), + (73989, 812, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'w4WkZoP4', '3470303'), + (73990, 812, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'w4WkZoP4', '3470305'), + (73991, 812, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'w4WkZoP4', '3470991'), + (73992, 812, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'w4WkZoP4', '3517815'), + (73993, 812, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'w4WkZoP4', '3517816'), + (73994, 812, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'w4WkZoP4', '3523941'), + (73995, 812, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'w4WkZoP4', '3533850'), + (73996, 812, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'w4WkZoP4', '3536632'), + (73997, 812, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'w4WkZoP4', '3536656'), + (73998, 812, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'w4WkZoP4', '3539916'), + (73999, 812, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'w4WkZoP4', '3539917'), + (74000, 812, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'w4WkZoP4', '3539918'), + (74001, 812, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'w4WkZoP4', '3539919'), + (74002, 812, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'w4WkZoP4', '3539920'), + (74003, 812, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'w4WkZoP4', '3539921'), + (74004, 812, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'w4WkZoP4', '3539922'), + (74005, 812, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'w4WkZoP4', '3539923'), + (74006, 812, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'w4WkZoP4', '3539927'), + (74007, 812, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'w4WkZoP4', '3582734'), + (74008, 812, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'w4WkZoP4', '3619523'), + (74009, 812, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WkZoP4', '6045684'), + (74010, 813, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'lAe9LlzA', '4225444'), + (74011, 813, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'lAe9LlzA', '4275957'), + (74012, 813, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAe9LlzA', '6045684'), + (74013, 814, 409, 'maybe', '2020-12-10 21:40:39', '2025-12-17 19:47:54', 'oAQyv3LA', '3236467'), + (74014, 814, 493, 'not_attending', '2020-12-04 15:43:42', '2025-12-17 19:47:54', 'oAQyv3LA', '3313856'), + (74015, 814, 499, 'attending', '2020-12-11 21:51:12', '2025-12-17 19:47:55', 'oAQyv3LA', '3314909'), + (74016, 814, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'oAQyv3LA', '3314964'), + (74017, 814, 502, 'maybe', '2020-12-12 05:04:10', '2025-12-17 19:47:55', 'oAQyv3LA', '3323365'), + (74018, 814, 503, 'maybe', '2020-12-09 21:55:55', '2025-12-17 19:47:55', 'oAQyv3LA', '3323366'), + (74019, 814, 504, 'maybe', '2020-12-09 21:55:46', '2025-12-17 19:47:55', 'oAQyv3LA', '3323368'), + (74020, 814, 506, 'maybe', '2020-12-13 22:31:18', '2025-12-17 19:47:55', 'oAQyv3LA', '3323375'), + (74021, 814, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'oAQyv3LA', '3324148'), + (74022, 814, 511, 'maybe', '2020-12-15 18:42:04', '2025-12-17 19:47:55', 'oAQyv3LA', '3325335'), + (74023, 814, 513, 'maybe', '2020-12-15 18:42:14', '2025-12-17 19:47:55', 'oAQyv3LA', '3329383'), + (74024, 814, 520, 'maybe', '2020-12-15 18:41:46', '2025-12-17 19:47:55', 'oAQyv3LA', '3337453'), + (74025, 814, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'oAQyv3LA', '3351539'), + (74026, 814, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'oAQyv3LA', '3386848'), + (74027, 814, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'oAQyv3LA', '3389527'), + (74028, 814, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'oAQyv3LA', '3396499'), + (74029, 814, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'oAQyv3LA', '3403650'), + (74030, 814, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'oAQyv3LA', '3406988'), + (74031, 814, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'oAQyv3LA', '3408338'), + (74032, 814, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'oAQyv3LA', '3416576'), + (74033, 814, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAQyv3LA', '6045684'), + (74034, 815, 2303, 'attending', '2023-10-28 02:43:44', '2025-12-17 19:46:47', 'dVD9ygpA', '6482691'), + (74035, 815, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dVD9ygpA', '6482693'), + (74036, 815, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dVD9ygpA', '6484200'), + (74037, 815, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'dVD9ygpA', '6484680'), + (74038, 815, 2310, 'maybe', '2023-11-11 23:31:04', '2025-12-17 19:46:47', 'dVD9ygpA', '6487709'), + (74039, 815, 2315, 'maybe', '2023-11-01 19:27:25', '2025-12-17 19:46:47', 'dVD9ygpA', '6493666'), + (74040, 815, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dVD9ygpA', '6507741'), + (74041, 815, 2321, 'attending', '2023-10-30 21:42:31', '2025-12-17 19:46:47', 'dVD9ygpA', '6512075'), + (74042, 815, 2322, 'attending', '2023-11-12 06:46:20', '2025-12-17 19:46:48', 'dVD9ygpA', '6514659'), + (74043, 815, 2323, 'attending', '2023-11-28 03:37:47', '2025-12-17 19:46:48', 'dVD9ygpA', '6514660'), + (74044, 815, 2324, 'attending', '2023-12-06 23:48:09', '2025-12-17 19:46:49', 'dVD9ygpA', '6514662'), + (74045, 815, 2325, 'attending', '2023-12-11 17:26:45', '2025-12-17 19:46:36', 'dVD9ygpA', '6514663'), + (74046, 815, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dVD9ygpA', '6519103'), + (74047, 815, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dVD9ygpA', '6535681'), + (74048, 815, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dVD9ygpA', '6584747'), + (74049, 815, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dVD9ygpA', '6587097'), + (74050, 815, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dVD9ygpA', '6609022'), + (74051, 815, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dVD9ygpA', '6632757'), + (74052, 815, 2378, 'maybe', '2023-12-31 03:40:05', '2025-12-17 19:46:37', 'dVD9ygpA', '6644006'), + (74053, 815, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dVD9ygpA', '6644187'), + (74054, 815, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dVD9ygpA', '6648951'), + (74055, 815, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dVD9ygpA', '6648952'), + (74056, 815, 2392, 'maybe', '2024-01-06 02:04:34', '2025-12-17 19:46:37', 'dVD9ygpA', '6654412'), + (74057, 815, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dVD9ygpA', '6655401'), + (74058, 815, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dVD9ygpA', '6661585'), + (74059, 815, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dVD9ygpA', '6661588'), + (74060, 815, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dVD9ygpA', '6661589'), + (74061, 815, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dVD9ygpA', '6699906'), + (74062, 815, 2408, 'attending', '2024-01-22 03:07:51', '2025-12-17 19:46:40', 'dVD9ygpA', '6699907'), + (74063, 815, 2409, 'attending', '2024-01-31 15:35:04', '2025-12-17 19:46:41', 'dVD9ygpA', '6699909'), + (74064, 815, 2410, 'attending', '2024-02-07 03:12:26', '2025-12-17 19:46:41', 'dVD9ygpA', '6699911'), + (74065, 815, 2411, 'attending', '2024-02-14 15:36:02', '2025-12-17 19:46:41', 'dVD9ygpA', '6699913'), + (74066, 815, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dVD9ygpA', '6701109'), + (74067, 815, 2417, 'maybe', '2024-01-18 15:54:37', '2025-12-17 19:46:40', 'dVD9ygpA', '6701905'), + (74068, 815, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dVD9ygpA', '6704561'), + (74069, 815, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dVD9ygpA', '6705219'), + (74070, 815, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dVD9ygpA', '6708410'), + (74071, 815, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dVD9ygpA', '6710153'), + (74072, 815, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dVD9ygpA', '6711552'), + (74073, 815, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dVD9ygpA', '6711553'), + (74074, 815, 2431, 'attending', '2024-01-23 23:29:33', '2025-12-17 19:46:41', 'dVD9ygpA', '6712394'), + (74075, 815, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dVD9ygpA', '6722688'), + (74076, 815, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dVD9ygpA', '6730620'), + (74077, 815, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dVD9ygpA', '6730642'), + (74078, 815, 2451, 'maybe', '2024-02-08 17:13:24', '2025-12-17 19:46:41', 'dVD9ygpA', '6740333'), + (74079, 815, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dVD9ygpA', '6740364'), + (74080, 815, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dVD9ygpA', '6743829'), + (74081, 815, 2463, 'attending', '2024-02-11 07:09:50', '2025-12-17 19:46:41', 'dVD9ygpA', '6746394'), + (74082, 815, 2464, 'maybe', '2024-02-11 21:26:48', '2025-12-17 19:46:41', 'dVD9ygpA', '6746982'), + (74083, 815, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dVD9ygpA', '7030380'), + (74084, 815, 2469, 'attending', '2024-02-16 23:52:09', '2025-12-17 19:46:42', 'dVD9ygpA', '7030632'), + (74085, 815, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dVD9ygpA', '7033677'), + (74086, 815, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dVD9ygpA', '7035415'), + (74087, 815, 2481, 'attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dVD9ygpA', '7044715'), + (74088, 815, 2486, 'attending', '2024-02-28 04:11:06', '2025-12-17 19:46:43', 'dVD9ygpA', '7048277'), + (74089, 815, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dVD9ygpA', '7050318'), + (74090, 815, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dVD9ygpA', '7050319'), + (74091, 815, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dVD9ygpA', '7050322'), + (74092, 815, 2499, 'attending', '2024-03-04 19:52:30', '2025-12-17 19:46:43', 'dVD9ygpA', '7057804'), + (74093, 815, 2503, 'attending', '2024-03-06 21:16:33', '2025-12-17 19:46:32', 'dVD9ygpA', '7062500'), + (74094, 815, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dVD9ygpA', '7072824'), + (74095, 815, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dVD9ygpA', '7074348'), + (74096, 815, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dVD9ygpA', '7074364'), + (74097, 815, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dVD9ygpA', '7089267'), + (74098, 815, 2547, 'attending', '2024-03-22 01:47:48', '2025-12-17 19:46:33', 'dVD9ygpA', '7096945'), + (74099, 815, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dVD9ygpA', '7098747'), + (74100, 815, 2551, 'not_attending', '2024-03-28 16:11:38', '2025-12-17 19:46:33', 'dVD9ygpA', '7109912'), + (74101, 815, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dVD9ygpA', '7113468'), + (74102, 815, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dVD9ygpA', '7114856'), + (74103, 815, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dVD9ygpA', '7114951'), + (74104, 815, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dVD9ygpA', '7114955'), + (74105, 815, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dVD9ygpA', '7114956'), + (74106, 815, 2558, 'attending', '2024-04-29 22:44:12', '2025-12-17 19:46:35', 'dVD9ygpA', '7114957'), + (74107, 815, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dVD9ygpA', '7153615'), + (74108, 815, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dVD9ygpA', '7159484'), + (74109, 815, 2585, 'attending', '2024-04-24 21:08:31', '2025-12-17 19:46:34', 'dVD9ygpA', '7175828'), + (74110, 815, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dVD9ygpA', '7178446'), + (74111, 815, 2594, 'attending', '2024-04-20 18:43:11', '2025-12-17 19:46:34', 'dVD9ygpA', '7182117'), + (74112, 815, 2597, 'attending', '2024-04-21 22:46:10', '2025-12-17 19:46:34', 'dVD9ygpA', '7186726'), + (74113, 815, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dVD9ygpA', '7220467'), + (74114, 815, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dVD9ygpA', '7240354'), + (74115, 815, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dVD9ygpA', '7251633'), + (74116, 815, 2626, 'attending', '2024-05-15 17:49:26', '2025-12-17 19:46:35', 'dVD9ygpA', '7264723'), + (74117, 815, 2627, 'attending', '2024-05-23 14:06:43', '2025-12-17 19:46:35', 'dVD9ygpA', '7264724'), + (74118, 815, 2628, 'attending', '2024-05-30 18:45:07', '2025-12-17 19:46:36', 'dVD9ygpA', '7264725'), + (74119, 815, 2629, 'attending', '2024-06-07 00:40:23', '2025-12-17 19:46:28', 'dVD9ygpA', '7264726'), + (74120, 815, 2633, 'maybe', '2024-05-15 17:49:07', '2025-12-17 19:46:35', 'dVD9ygpA', '7270095'), + (74121, 815, 2655, 'maybe', '2024-05-27 01:49:00', '2025-12-17 19:46:35', 'dVD9ygpA', '7291225'), + (74122, 815, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dVD9ygpA', '7302674'), + (74123, 815, 2678, 'maybe', '2024-06-15 22:31:04', '2025-12-17 19:46:28', 'dVD9ygpA', '7319489'), + (74124, 815, 2686, 'maybe', '2024-06-11 19:28:24', '2025-12-17 19:46:29', 'dVD9ygpA', '7323802'), + (74125, 815, 2688, 'attending', '2024-06-25 00:21:42', '2025-12-17 19:46:29', 'dVD9ygpA', '7324073'), + (74126, 815, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dVD9ygpA', '7324074'), + (74127, 815, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dVD9ygpA', '7324075'), + (74128, 815, 2691, 'attending', '2024-07-19 04:07:09', '2025-12-17 19:46:30', 'dVD9ygpA', '7324076'), + (74129, 815, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dVD9ygpA', '7324078'), + (74130, 815, 2694, 'not_attending', '2024-08-10 13:24:25', '2025-12-17 19:46:31', 'dVD9ygpA', '7324079'), + (74131, 815, 2695, 'maybe', '2024-08-17 07:53:22', '2025-12-17 19:46:32', 'dVD9ygpA', '7324080'), + (74132, 815, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dVD9ygpA', '7324082'), + (74133, 815, 2698, 'not_attending', '2024-09-04 15:49:19', '2025-12-17 19:46:24', 'dVD9ygpA', '7324083'), + (74134, 815, 2710, 'maybe', '2024-06-19 19:31:57', '2025-12-17 19:46:29', 'dVD9ygpA', '7325108'), + (74135, 815, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dVD9ygpA', '7331457'), + (74136, 815, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dVD9ygpA', '7363643'), + (74137, 815, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dVD9ygpA', '7368606'), + (74138, 815, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dVD9ygpA', '7397462'), + (74139, 815, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dVD9ygpA', '7424275'), + (74140, 815, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dVD9ygpA', '7424276'), + (74141, 815, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dVD9ygpA', '7432751'), + (74142, 815, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dVD9ygpA', '7432752'), + (74143, 815, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dVD9ygpA', '7432753'), + (74144, 815, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dVD9ygpA', '7432754'), + (74145, 815, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dVD9ygpA', '7432755'), + (74146, 815, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dVD9ygpA', '7432756'), + (74147, 815, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dVD9ygpA', '7432758'), + (74148, 815, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dVD9ygpA', '7432759'), + (74149, 815, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dVD9ygpA', '7433834'), + (74150, 815, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dVD9ygpA', '7470197'), + (74151, 815, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dVD9ygpA', '7685613'), + (74152, 815, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dVD9ygpA', '7688194'), + (74153, 815, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dVD9ygpA', '7688196'), + (74154, 815, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dVD9ygpA', '7688289'), + (74155, 815, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dVD9ygpA', '7692763'), + (74156, 815, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dVD9ygpA', '7697552'), + (74157, 815, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dVD9ygpA', '7699878'), + (74158, 815, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dVD9ygpA', '7704043'), + (74159, 815, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dVD9ygpA', '7712467'), + (74160, 815, 2925, 'maybe', '2024-12-12 08:05:08', '2025-12-17 19:46:21', 'dVD9ygpA', '7713584'), + (74161, 815, 2926, 'maybe', '2024-12-06 07:06:13', '2025-12-17 19:46:21', 'dVD9ygpA', '7713585'), + (74162, 815, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dVD9ygpA', '7713586'), + (74163, 815, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dVD9ygpA', '7738518'), + (74164, 815, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dVD9ygpA', '7750636'), + (74165, 815, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dVD9ygpA', '7796540'), + (74166, 815, 2965, 'maybe', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dVD9ygpA', '7796541'), + (74167, 815, 2966, 'maybe', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dVD9ygpA', '7796542'), + (74168, 815, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dVD9ygpA', '7825913'), + (74169, 815, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dVD9ygpA', '7826209'), + (74170, 815, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dVD9ygpA', '7834742'), + (74171, 815, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dVD9ygpA', '7842108'), + (74172, 815, 2991, 'maybe', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dVD9ygpA', '7842902'), + (74173, 815, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dVD9ygpA', '7842903'), + (74174, 815, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dVD9ygpA', '7842904'), + (74175, 815, 2994, 'maybe', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dVD9ygpA', '7842905'), + (74176, 815, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dVD9ygpA', '7855719'), + (74177, 815, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dVD9ygpA', '7860683'), + (74178, 815, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dVD9ygpA', '7860684'), + (74179, 815, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dVD9ygpA', '7866095'), + (74180, 815, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dVD9ygpA', '7869170'), + (74181, 815, 3016, 'maybe', '2025-04-19 21:31:55', '2025-12-17 19:46:20', 'dVD9ygpA', '7869187'), + (74182, 815, 3017, 'maybe', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dVD9ygpA', '7869188'), + (74183, 815, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dVD9ygpA', '7869201'), + (74184, 815, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dVD9ygpA', '7877465'), + (74185, 815, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dVD9ygpA', '7888250'), + (74186, 815, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dVD9ygpA', '8349164'), + (74187, 815, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dVD9ygpA', '8349545'), + (74188, 815, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dVD9ygpA', '8353584'), + (74189, 816, 599, 'attending', '2021-02-17 01:06:18', '2025-12-17 19:47:50', 'pmb61Q6m', '3468117'), + (74190, 816, 603, 'attending', '2021-02-16 07:02:01', '2025-12-17 19:47:50', 'pmb61Q6m', '3470304'), + (74191, 816, 604, 'not_attending', '2021-02-27 18:29:38', '2025-12-17 19:47:50', 'pmb61Q6m', '3470305'), + (74192, 816, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'pmb61Q6m', '3470991'), + (74193, 816, 610, 'attending', '2021-02-15 23:15:49', '2025-12-17 19:47:50', 'pmb61Q6m', '3482159'), + (74194, 816, 618, 'attending', '2021-02-19 21:23:23', '2025-12-17 19:47:50', 'pmb61Q6m', '3503991'), + (74195, 816, 621, 'not_attending', '2021-03-05 09:47:32', '2025-12-17 19:47:51', 'pmb61Q6m', '3517815'), + (74196, 816, 622, 'attending', '2021-03-09 20:47:59', '2025-12-17 19:47:51', 'pmb61Q6m', '3517816'), + (74197, 816, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'pmb61Q6m', '3523941'), + (74198, 816, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmb61Q6m', '3533850'), + (74199, 816, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmb61Q6m', '3536632'), + (74200, 816, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmb61Q6m', '3536656'), + (74201, 816, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'pmb61Q6m', '3539916'), + (74202, 816, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'pmb61Q6m', '3539917'), + (74203, 816, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmb61Q6m', '3539918'), + (74204, 816, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'pmb61Q6m', '3539919'), + (74205, 816, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmb61Q6m', '3539920'), + (74206, 816, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'pmb61Q6m', '3539921'), + (74207, 816, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmb61Q6m', '3539922'), + (74208, 816, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmb61Q6m', '3539923'), + (74209, 816, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmb61Q6m', '3539927'), + (74210, 816, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmb61Q6m', '3582734'), + (74211, 816, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmb61Q6m', '3583262'), + (74212, 816, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmb61Q6m', '3619523'), + (74213, 816, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmb61Q6m', '3661369'), + (74214, 816, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmb61Q6m', '3674262'), + (74215, 816, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmb61Q6m', '3677402'), + (74216, 816, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmb61Q6m', '3730212'), + (74217, 816, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'pmb61Q6m', '3793156'), + (74218, 816, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmb61Q6m', '3974109'), + (74219, 816, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmb61Q6m', '3975311'), + (74220, 816, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmb61Q6m', '3975312'), + (74221, 816, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmb61Q6m', '3994992'), + (74222, 816, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmb61Q6m', '4014338'), + (74223, 816, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmb61Q6m', '4021848'), + (74224, 816, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmb61Q6m', '4136744'), + (74225, 816, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'pmb61Q6m', '4136937'), + (74226, 816, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmb61Q6m', '4136938'), + (74227, 816, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmb61Q6m', '4136947'), + (74228, 816, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmb61Q6m', '4210314'), + (74229, 816, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmb61Q6m', '4225444'), + (74230, 816, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmb61Q6m', '4239259'), + (74231, 816, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmb61Q6m', '4240316'), + (74232, 816, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmb61Q6m', '4240317'), + (74233, 816, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmb61Q6m', '4240318'), + (74234, 816, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmb61Q6m', '4240320'), + (74235, 816, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmb61Q6m', '4250163'), + (74236, 816, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmb61Q6m', '4275957'), + (74237, 816, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmb61Q6m', '4277819'), + (74238, 816, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmb61Q6m', '4301723'), + (74239, 816, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'pmb61Q6m', '4302093'), + (74240, 816, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmb61Q6m', '4304151'), + (74241, 816, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'pmb61Q6m', '4345519'), + (74242, 816, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'pmb61Q6m', '4358025'), + (74243, 816, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmb61Q6m', '4366186'), + (74244, 816, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmb61Q6m', '4366187'), + (74245, 816, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmb61Q6m', '6045684'), + (74246, 817, 1119, 'attending', '2021-12-22 02:54:38', '2025-12-17 19:47:31', '4oMY95Mm', '4642997'), + (74247, 817, 1125, 'attending', '2021-12-20 20:50:35', '2025-12-17 19:47:31', '4oMY95Mm', '4644027'), + (74248, 817, 1131, 'attending', '2021-12-18 05:01:54', '2025-12-17 19:47:31', '4oMY95Mm', '4658825'), + (74249, 817, 1148, 'attending', '2021-12-17 23:48:32', '2025-12-17 19:47:31', '4oMY95Mm', '4692843'), + (74250, 817, 1151, 'maybe', '2021-12-20 23:51:32', '2025-12-17 19:47:31', '4oMY95Mm', '4708704'), + (74251, 817, 1152, 'attending', '2022-01-13 00:50:55', '2025-12-17 19:47:31', '4oMY95Mm', '4708705'), + (74252, 817, 1155, 'attending', '2021-12-20 23:49:36', '2025-12-17 19:47:31', '4oMY95Mm', '4715119'), + (74253, 817, 1158, 'not_attending', '2021-12-21 05:16:10', '2025-12-17 19:47:31', '4oMY95Mm', '4715311'), + (74254, 817, 1162, 'attending', '2021-12-30 18:17:54', '2025-12-17 19:47:31', '4oMY95Mm', '4718771'), + (74255, 817, 1164, 'attending', '2021-12-30 03:14:07', '2025-12-17 19:47:31', '4oMY95Mm', '4724208'), + (74256, 817, 1165, 'attending', '2021-12-30 03:14:09', '2025-12-17 19:47:31', '4oMY95Mm', '4724210'), + (74257, 817, 1172, 'not_attending', '2022-01-19 01:02:06', '2025-12-17 19:47:32', '4oMY95Mm', '4735348'), + (74258, 817, 1173, 'attending', '2022-01-08 23:00:36', '2025-12-17 19:47:31', '4oMY95Mm', '4736495'), + (74259, 817, 1174, 'attending', '2022-01-15 20:03:12', '2025-12-17 19:47:31', '4oMY95Mm', '4736496'), + (74260, 817, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMY95Mm', '4736497'), + (74261, 817, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMY95Mm', '4736499'), + (74262, 817, 1178, 'attending', '2022-01-29 23:51:03', '2025-12-17 19:47:32', '4oMY95Mm', '4736500'), + (74263, 817, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMY95Mm', '4736503'), + (74264, 817, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMY95Mm', '4736504'), + (74265, 817, 1185, 'maybe', '2022-01-09 08:03:58', '2025-12-17 19:47:31', '4oMY95Mm', '4746789'), + (74266, 817, 1186, 'attending', '2022-01-09 08:33:04', '2025-12-17 19:47:31', '4oMY95Mm', '4747800'), + (74267, 817, 1187, 'maybe', '2022-01-11 01:40:54', '2025-12-17 19:47:31', '4oMY95Mm', '4753907'), + (74268, 817, 1188, 'maybe', '2022-01-13 19:13:35', '2025-12-17 19:47:32', '4oMY95Mm', '4753929'), + (74269, 817, 1189, 'maybe', '2022-01-13 19:13:11', '2025-12-17 19:47:31', '4oMY95Mm', '4753938'), + (74270, 817, 1198, 'maybe', '2022-01-19 20:50:13', '2025-12-17 19:47:32', '4oMY95Mm', '4766801'), + (74271, 817, 1199, 'maybe', '2022-01-19 20:50:15', '2025-12-17 19:47:32', '4oMY95Mm', '4766802'), + (74272, 817, 1200, 'not_attending', '2022-01-18 23:13:08', '2025-12-17 19:47:32', '4oMY95Mm', '4766830'), + (74273, 817, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMY95Mm', '5038850'), + (74274, 817, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMY95Mm', '5045826'), + (74275, 817, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMY95Mm', '5132533'), + (74276, 817, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMY95Mm', '5186582'), + (74277, 817, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMY95Mm', '5186583'), + (74278, 817, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMY95Mm', '5186585'), + (74279, 817, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMY95Mm', '5190437'), + (74280, 817, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4oMY95Mm', '5195095'), + (74281, 817, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMY95Mm', '5215989'), + (74282, 817, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4oMY95Mm', '5223686'), + (74283, 817, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4oMY95Mm', '5227432'), + (74284, 817, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4oMY95Mm', '5247467'), + (74285, 817, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4oMY95Mm', '5260800'), + (74286, 817, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4oMY95Mm', '5269930'), + (74287, 817, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4oMY95Mm', '5271448'), + (74288, 817, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4oMY95Mm', '5271449'), + (74289, 817, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4oMY95Mm', '5276469'), + (74290, 817, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', '4oMY95Mm', '5277078'), + (74291, 817, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4oMY95Mm', '5278159'), + (74292, 817, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4oMY95Mm', '5363695'), + (74293, 817, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMY95Mm', '5365960'), + (74294, 817, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMY95Mm', '5368973'), + (74295, 817, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMY95Mm', '5378247'), + (74296, 817, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4oMY95Mm', '5389605'), + (74297, 817, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4oMY95Mm', '5397265'), + (74298, 817, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMY95Mm', '5403967'), + (74299, 817, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMY95Mm', '5404786'), + (74300, 817, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMY95Mm', '5405203'), + (74301, 817, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMY95Mm', '5411699'), + (74302, 817, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4oMY95Mm', '5412550'), + (74303, 817, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMY95Mm', '5415046'), + (74304, 817, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4oMY95Mm', '5422086'), + (74305, 817, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4oMY95Mm', '5422406'), + (74306, 817, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMY95Mm', '5424565'), + (74307, 817, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMY95Mm', '5426882'), + (74308, 817, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMY95Mm', '5427083'), + (74309, 817, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4oMY95Mm', '5441125'), + (74310, 817, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4oMY95Mm', '5441126'), + (74311, 817, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMY95Mm', '5441128'), + (74312, 817, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMY95Mm', '5446643'), + (74313, 817, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMY95Mm', '5453325'), + (74314, 817, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMY95Mm', '5454516'), + (74315, 817, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMY95Mm', '5454605'), + (74316, 817, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMY95Mm', '5455037'), + (74317, 817, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4oMY95Mm', '5461278'), + (74318, 817, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMY95Mm', '5469480'), + (74319, 817, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4oMY95Mm', '5471073'), + (74320, 817, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMY95Mm', '5474663'), + (74321, 817, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMY95Mm', '5482022'), + (74322, 817, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMY95Mm', '5482793'), + (74323, 817, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4oMY95Mm', '5488912'), + (74324, 817, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4oMY95Mm', '5492192'), + (74325, 817, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4oMY95Mm', '5493139'), + (74326, 817, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4oMY95Mm', '5493200'), + (74327, 817, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4oMY95Mm', '5502188'), + (74328, 817, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4oMY95Mm', '5512862'), + (74329, 817, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4oMY95Mm', '5513985'), + (74330, 817, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4oMY95Mm', '6045684'), + (74331, 818, 221, 'attending', '2020-09-16 21:06:18', '2025-12-17 19:47:56', 'GmjMOQbd', '3129265'), + (74332, 818, 223, 'attending', '2020-09-12 18:40:16', '2025-12-17 19:47:56', 'GmjMOQbd', '3129980'), + (74333, 818, 311, 'not_attending', '2020-09-18 04:11:09', '2025-12-17 19:47:56', 'GmjMOQbd', '3186057'), + (74334, 818, 340, 'not_attending', '2020-09-18 04:10:20', '2025-12-17 19:47:56', 'GmjMOQbd', '3204470'), + (74335, 818, 341, 'attending', '2020-09-25 23:55:21', '2025-12-17 19:47:52', 'GmjMOQbd', '3204471'), + (74336, 818, 342, 'not_attending', '2020-10-02 20:06:24', '2025-12-17 19:47:52', 'GmjMOQbd', '3204472'), + (74337, 818, 346, 'attending', '2020-09-15 22:38:57', '2025-12-17 19:47:56', 'GmjMOQbd', '3207515'), + (74338, 818, 348, 'not_attending', '2020-09-29 22:25:06', '2025-12-17 19:47:52', 'GmjMOQbd', '3209159'), + (74339, 818, 350, 'attending', '2020-09-11 23:59:13', '2025-12-17 19:47:56', 'GmjMOQbd', '3209255'), + (74340, 818, 362, 'not_attending', '2020-09-26 22:46:19', '2025-12-17 19:47:52', 'GmjMOQbd', '3214207'), + (74341, 818, 363, 'not_attending', '2020-09-18 18:47:24', '2025-12-17 19:47:52', 'GmjMOQbd', '3217037'), + (74342, 818, 365, 'maybe', '2020-09-18 18:48:23', '2025-12-17 19:47:51', 'GmjMOQbd', '3218510'), + (74343, 818, 375, 'attending', '2020-10-08 22:54:09', '2025-12-17 19:47:52', 'GmjMOQbd', '3222825'), + (74344, 818, 382, 'not_attending', '2020-10-14 00:19:59', '2025-12-17 19:47:52', 'GmjMOQbd', '3226873'), + (74345, 818, 385, 'not_attending', '2020-10-03 19:57:11', '2025-12-17 19:47:52', 'GmjMOQbd', '3228698'), + (74346, 818, 386, 'attending', '2020-10-10 19:53:12', '2025-12-17 19:47:52', 'GmjMOQbd', '3228699'), + (74347, 818, 387, 'not_attending', '2020-10-17 20:19:45', '2025-12-17 19:47:52', 'GmjMOQbd', '3228700'), + (74348, 818, 388, 'not_attending', '2020-10-25 03:56:44', '2025-12-17 19:47:52', 'GmjMOQbd', '3228701'), + (74349, 818, 414, 'not_attending', '2020-10-18 22:04:10', '2025-12-17 19:47:52', 'GmjMOQbd', '3237277'), + (74350, 818, 416, 'not_attending', '2020-10-08 21:17:13', '2025-12-17 19:47:52', 'GmjMOQbd', '3238073'), + (74351, 818, 424, 'maybe', '2020-10-12 02:25:18', '2025-12-17 19:47:52', 'GmjMOQbd', '3245751'), + (74352, 818, 426, 'maybe', '2020-10-15 14:16:44', '2025-12-17 19:47:52', 'GmjMOQbd', '3250232'), + (74353, 818, 438, 'not_attending', '2020-10-31 22:21:42', '2025-12-17 19:47:53', 'GmjMOQbd', '3256163'), + (74354, 818, 440, 'attending', '2020-11-07 22:03:48', '2025-12-17 19:47:53', 'GmjMOQbd', '3256168'), + (74355, 818, 441, 'not_attending', '2020-11-14 23:22:39', '2025-12-17 19:47:54', 'GmjMOQbd', '3256169'), + (74356, 818, 443, 'not_attending', '2020-10-25 03:57:12', '2025-12-17 19:47:53', 'GmjMOQbd', '3263578'), + (74357, 818, 445, 'not_attending', '2020-11-12 20:16:17', '2025-12-17 19:47:54', 'GmjMOQbd', '3266138'), + (74358, 818, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GmjMOQbd', '3276428'), + (74359, 818, 459, 'not_attending', '2020-11-08 05:46:40', '2025-12-17 19:47:54', 'GmjMOQbd', '3281467'), + (74360, 818, 462, 'not_attending', '2020-11-11 22:16:27', '2025-12-17 19:47:54', 'GmjMOQbd', '3281470'), + (74361, 818, 466, 'not_attending', '2020-11-08 21:37:08', '2025-12-17 19:47:54', 'GmjMOQbd', '3281829'), + (74362, 818, 468, 'not_attending', '2020-11-21 22:59:57', '2025-12-17 19:47:54', 'GmjMOQbd', '3285413'), + (74363, 818, 469, 'not_attending', '2020-11-29 00:20:35', '2025-12-17 19:47:54', 'GmjMOQbd', '3285414'), + (74364, 818, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GmjMOQbd', '3297764'), + (74365, 818, 493, 'not_attending', '2020-12-06 01:13:41', '2025-12-17 19:47:54', 'GmjMOQbd', '3313856'), + (74366, 818, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GmjMOQbd', '3314909'), + (74367, 818, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GmjMOQbd', '3314964'), + (74368, 818, 502, 'not_attending', '2020-12-12 23:44:25', '2025-12-17 19:47:55', 'GmjMOQbd', '3323365'), + (74369, 818, 513, 'not_attending', '2020-12-19 23:16:06', '2025-12-17 19:47:55', 'GmjMOQbd', '3329383'), + (74370, 818, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GmjMOQbd', '3351539'), + (74371, 818, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GmjMOQbd', '3386848'), + (74372, 818, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GmjMOQbd', '3389527'), + (74373, 818, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GmjMOQbd', '3396499'), + (74374, 818, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GmjMOQbd', '3403650'), + (74375, 818, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GmjMOQbd', '3406988'), + (74376, 818, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GmjMOQbd', '3416576'), + (74377, 818, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'GmjMOQbd', '3418925'), + (74378, 818, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjMOQbd', '6045684'), + (74379, 819, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'daPe9lp4', '5630960'), + (74380, 819, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'daPe9lp4', '5630961'), + (74381, 819, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'daPe9lp4', '5630962'), + (74382, 819, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'daPe9lp4', '5630966'), + (74383, 819, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'daPe9lp4', '5638765'), + (74384, 819, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'daPe9lp4', '5640097'), + (74385, 819, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'daPe9lp4', '5640843'), + (74386, 819, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'daPe9lp4', '5641521'), + (74387, 819, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'daPe9lp4', '5652395'), + (74388, 819, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'daPe9lp4', '5671637'), + (74389, 819, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'daPe9lp4', '5672329'), + (74390, 819, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'daPe9lp4', '5674057'), + (74391, 819, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'daPe9lp4', '5674060'), + (74392, 819, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'daPe9lp4', '5677461'), + (74393, 819, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'daPe9lp4', '5698046'), + (74394, 819, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'daPe9lp4', '5699760'), + (74395, 819, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daPe9lp4', '6045684'), + (74396, 820, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Arxk10Xd', '7904777'), + (74397, 820, 3096, 'maybe', '2025-04-24 19:53:04', '2025-12-17 19:46:20', 'Arxk10Xd', '8342987'), + (74398, 820, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'Arxk10Xd', '8347770'), + (74399, 820, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Arxk10Xd', '8349164'), + (74400, 820, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Arxk10Xd', '8349545'), + (74401, 820, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'Arxk10Xd', '8353584'), + (74402, 820, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Arxk10Xd', '8368028'), + (74403, 820, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Arxk10Xd', '8368029'), + (74404, 820, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Arxk10Xd', '8388462'), + (74405, 820, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Arxk10Xd', '8400273'), + (74406, 820, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'Arxk10Xd', '8400274'), + (74407, 820, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Arxk10Xd', '8400275'), + (74408, 820, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'Arxk10Xd', '8400276'), + (74409, 820, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Arxk10Xd', '8404977'), + (74410, 820, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'Arxk10Xd', '8430783'), + (74411, 820, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Arxk10Xd', '8430784'), + (74412, 820, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Arxk10Xd', '8430799'), + (74413, 820, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Arxk10Xd', '8430800'), + (74414, 820, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Arxk10Xd', '8430801'), + (74415, 820, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Arxk10Xd', '8438709'), + (74416, 820, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Arxk10Xd', '8457738'), + (74417, 820, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Arxk10Xd', '8459566'), + (74418, 820, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Arxk10Xd', '8459567'), + (74419, 820, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Arxk10Xd', '8461032'), + (74420, 820, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Arxk10Xd', '8477877'), + (74421, 820, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Arxk10Xd', '8485688'), + (74422, 821, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'rdOKrVEd', '6155491'), + (74423, 821, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'rdOKrVEd', '6164417'), + (74424, 821, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'rdOKrVEd', '6166388'), + (74425, 821, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'rdOKrVEd', '6176439'), + (74426, 821, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'rdOKrVEd', '6177485'), + (74427, 821, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'rdOKrVEd', '6182410'), + (74428, 821, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'rdOKrVEd', '6185812'), + (74429, 821, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'rdOKrVEd', '6187651'), + (74430, 821, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'rdOKrVEd', '6187963'), + (74431, 821, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'rdOKrVEd', '6187964'), + (74432, 821, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'rdOKrVEd', '6187966'), + (74433, 821, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'rdOKrVEd', '6187967'), + (74434, 821, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'rdOKrVEd', '6187969'), + (74435, 821, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'rdOKrVEd', '6334878'), + (74436, 821, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', 'rdOKrVEd', '6334903'), + (74437, 821, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'rdOKrVEd', '6337236'), + (74438, 821, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'rdOKrVEd', '6337970'), + (74439, 821, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'rdOKrVEd', '6338308'), + (74440, 821, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'rdOKrVEd', '6341710'), + (74441, 821, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'rdOKrVEd', '6342044'), + (74442, 821, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'rdOKrVEd', '6342298'), + (74443, 821, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'rdOKrVEd', '6342591'), + (74444, 821, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'rdOKrVEd', '6343294'), + (74445, 821, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'rdOKrVEd', '6347034'), + (74446, 821, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'rdOKrVEd', '6347056'), + (74447, 821, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'rdOKrVEd', '6353830'), + (74448, 821, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'rdOKrVEd', '6353831'), + (74449, 821, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'rdOKrVEd', '6357867'), + (74450, 821, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'rdOKrVEd', '6358652'), + (74451, 821, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'rdOKrVEd', '6361709'), + (74452, 821, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'rdOKrVEd', '6361710'), + (74453, 821, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'rdOKrVEd', '6361711'), + (74454, 821, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'rdOKrVEd', '6361712'), + (74455, 821, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'rdOKrVEd', '6361713'), + (74456, 821, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'rdOKrVEd', '6382573'), + (74457, 821, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'rdOKrVEd', '6388604'), + (74458, 821, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'rdOKrVEd', '6394629'), + (74459, 821, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'rdOKrVEd', '6394631'), + (74460, 821, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'rdOKrVEd', '6431478'), + (74461, 822, 1242, 'attending', '2022-03-30 22:27:15', '2025-12-17 19:47:25', 'AgxeLXR4', '5052241'), + (74462, 822, 1274, 'attending', '2022-04-02 20:12:28', '2025-12-17 19:47:26', 'AgxeLXR4', '5186585'), + (74463, 822, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgxeLXR4', '5195095'), + (74464, 822, 1288, 'attending', '2022-03-27 16:57:21', '2025-12-17 19:47:25', 'AgxeLXR4', '5199460'), + (74465, 822, 1294, 'maybe', '2022-04-03 15:44:50', '2025-12-17 19:47:26', 'AgxeLXR4', '5214686'), + (74466, 822, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AgxeLXR4', '5215989'), + (74467, 822, 1300, 'maybe', '2022-03-31 20:09:28', '2025-12-17 19:47:25', 'AgxeLXR4', '5217936'), + (74468, 822, 1302, 'maybe', '2022-04-03 15:43:52', '2025-12-17 19:47:27', 'AgxeLXR4', '5220867'), + (74469, 822, 1305, 'maybe', '2022-04-10 03:43:27', '2025-12-17 19:47:27', 'AgxeLXR4', '5223673'), + (74470, 822, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgxeLXR4', '5223686'), + (74471, 822, 1308, 'maybe', '2022-04-11 17:55:45', '2025-12-17 19:47:27', 'AgxeLXR4', '5226703'), + (74472, 822, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgxeLXR4', '5227432'), + (74473, 822, 1316, 'maybe', '2022-04-11 17:56:26', '2025-12-17 19:47:27', 'AgxeLXR4', '5237536'), + (74474, 822, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgxeLXR4', '5247467'), + (74475, 822, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgxeLXR4', '5260800'), + (74476, 822, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgxeLXR4', '5269930'), + (74477, 822, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgxeLXR4', '5271448'), + (74478, 822, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AgxeLXR4', '5271449'), + (74479, 822, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgxeLXR4', '5276469'), + (74480, 822, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgxeLXR4', '5278159'), + (74481, 822, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AgxeLXR4', '5363695'), + (74482, 822, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AgxeLXR4', '5365960'), + (74483, 822, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AgxeLXR4', '5368973'), + (74484, 822, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AgxeLXR4', '5378247'), + (74485, 822, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AgxeLXR4', '5389605'), + (74486, 822, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AgxeLXR4', '5397265'), + (74487, 822, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AgxeLXR4', '5403967'), + (74488, 822, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgxeLXR4', '5404786'), + (74489, 822, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgxeLXR4', '5405203'), + (74490, 822, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'AgxeLXR4', '5408794'), + (74491, 822, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AgxeLXR4', '5411699'), + (74492, 822, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AgxeLXR4', '5412550'), + (74493, 822, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AgxeLXR4', '5415046'), + (74494, 822, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgxeLXR4', '5422086'), + (74495, 822, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgxeLXR4', '5422406'), + (74496, 822, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgxeLXR4', '5424565'), + (74497, 822, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgxeLXR4', '5426882'), + (74498, 822, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgxeLXR4', '5427083'), + (74499, 822, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AgxeLXR4', '5441125'), + (74500, 822, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AgxeLXR4', '5441126'), + (74501, 822, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AgxeLXR4', '5441128'), + (74502, 822, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgxeLXR4', '5446643'), + (74503, 822, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgxeLXR4', '5453325'), + (74504, 822, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgxeLXR4', '5454516'), + (74505, 822, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgxeLXR4', '5454605'), + (74506, 822, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgxeLXR4', '5455037'), + (74507, 822, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgxeLXR4', '5461278'), + (74508, 822, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgxeLXR4', '5469480'), + (74509, 822, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgxeLXR4', '5471073'), + (74510, 822, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AgxeLXR4', '5474663'), + (74511, 822, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgxeLXR4', '5482022'), + (74512, 822, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgxeLXR4', '5482793'), + (74513, 822, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgxeLXR4', '5488912'), + (74514, 822, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgxeLXR4', '5492192'), + (74515, 822, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgxeLXR4', '5493139'), + (74516, 822, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgxeLXR4', '5493200'), + (74517, 822, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgxeLXR4', '5502188'), + (74518, 822, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgxeLXR4', '5512862'), + (74519, 822, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgxeLXR4', '5513985'), + (74520, 822, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxeLXR4', '6045684'), + (74521, 823, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mRQYOzYd', '5630960'), + (74522, 823, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mRQYOzYd', '5630961'), + (74523, 823, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mRQYOzYd', '5630962'), + (74524, 823, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mRQYOzYd', '5630966'), + (74525, 823, 1730, 'not_attending', '2022-10-08 07:04:45', '2025-12-17 19:47:12', 'mRQYOzYd', '5634666'), + (74526, 823, 1731, 'not_attending', '2022-10-07 22:40:32', '2025-12-17 19:47:12', 'mRQYOzYd', '5635226'), + (74527, 823, 1732, 'not_attending', '2022-10-07 20:13:50', '2025-12-17 19:47:12', 'mRQYOzYd', '5635406'), + (74528, 823, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mRQYOzYd', '5638765'), + (74529, 823, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mRQYOzYd', '5640097'), + (74530, 823, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mRQYOzYd', '5640843'), + (74531, 823, 1741, 'not_attending', '2022-10-10 04:46:14', '2025-12-17 19:47:12', 'mRQYOzYd', '5641132'), + (74532, 823, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mRQYOzYd', '5641521'), + (74533, 823, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mRQYOzYd', '5652395'), + (74534, 823, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mRQYOzYd', '5671637'), + (74535, 823, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mRQYOzYd', '5672329'), + (74536, 823, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mRQYOzYd', '5674057'), + (74537, 823, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mRQYOzYd', '5674060'), + (74538, 823, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mRQYOzYd', '5677461'), + (74539, 823, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mRQYOzYd', '5698046'), + (74540, 823, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mRQYOzYd', '5699760'), + (74541, 823, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRQYOzYd', '6045684'), + (74542, 824, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '2d28Q65A', '5195095'), + (74543, 824, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '2d28Q65A', '5247467'), + (74544, 824, 1362, 'attending', '2022-04-29 18:54:14', '2025-12-17 19:47:28', '2d28Q65A', '5260800'), + (74545, 824, 1374, 'not_attending', '2022-05-28 03:05:34', '2025-12-17 19:47:28', '2d28Q65A', '5269930'), + (74546, 824, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '2d28Q65A', '5271448'), + (74547, 824, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '2d28Q65A', '5271449'), + (74548, 824, 1380, 'attending', '2022-05-28 03:05:45', '2025-12-17 19:47:30', '2d28Q65A', '5271450'), + (74549, 824, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '2d28Q65A', '5276469'), + (74550, 824, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '2d28Q65A', '5278159'), + (74551, 824, 1407, 'not_attending', '2022-06-04 10:06:58', '2025-12-17 19:47:30', '2d28Q65A', '5363695'), + (74552, 824, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '2d28Q65A', '5365960'), + (74553, 824, 1415, 'maybe', '2022-05-31 21:42:45', '2025-12-17 19:47:30', '2d28Q65A', '5368973'), + (74554, 824, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '2d28Q65A', '5378247'), + (74555, 824, 1431, 'attending', '2022-06-11 00:29:13', '2025-12-17 19:47:30', '2d28Q65A', '5389605'), + (74556, 824, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '2d28Q65A', '5397265'), + (74557, 824, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '2d28Q65A', '5403967'), + (74558, 824, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '2d28Q65A', '5404786'), + (74559, 824, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '2d28Q65A', '5405203'), + (74560, 824, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '2d28Q65A', '5408794'), + (74561, 824, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '2d28Q65A', '5411699'), + (74562, 824, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '2d28Q65A', '5412550'), + (74563, 824, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '2d28Q65A', '5415046'), + (74564, 824, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '2d28Q65A', '5422086'), + (74565, 824, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '2d28Q65A', '5422406'), + (74566, 824, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '2d28Q65A', '5424565'), + (74567, 824, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '2d28Q65A', '5426882'), + (74568, 824, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '2d28Q65A', '5427083'), + (74569, 824, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '2d28Q65A', '5441125'), + (74570, 824, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '2d28Q65A', '5441126'), + (74571, 824, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '2d28Q65A', '5441128'), + (74572, 824, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '2d28Q65A', '5446643'), + (74573, 824, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '2d28Q65A', '5453325'), + (74574, 824, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '2d28Q65A', '5454516'), + (74575, 824, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '2d28Q65A', '5454605'), + (74576, 824, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '2d28Q65A', '5455037'), + (74577, 824, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '2d28Q65A', '5461278'), + (74578, 824, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '2d28Q65A', '5469480'), + (74579, 824, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '2d28Q65A', '5471073'), + (74580, 824, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '2d28Q65A', '5474663'), + (74581, 824, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '2d28Q65A', '5482022'), + (74582, 824, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '2d28Q65A', '5482793'), + (74583, 824, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '2d28Q65A', '5488912'), + (74584, 824, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '2d28Q65A', '5492192'), + (74585, 824, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '2d28Q65A', '5493139'), + (74586, 824, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '2d28Q65A', '5493200'), + (74587, 824, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '2d28Q65A', '5502188'), + (74588, 824, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '2d28Q65A', '5512862'), + (74589, 824, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '2d28Q65A', '5513985'), + (74590, 824, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d28Q65A', '6045684'), + (74591, 825, 3234, 'not_attending', '2025-08-15 02:56:47', '2025-12-17 19:46:17', 'Arnl9YnA', '8488773'), + (74592, 825, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Arnl9YnA', '8490587'), + (74593, 825, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Arnl9YnA', '8493552'), + (74594, 825, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Arnl9YnA', '8493553'), + (74595, 825, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Arnl9YnA', '8493554'), + (74596, 825, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Arnl9YnA', '8493555'), + (74597, 825, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Arnl9YnA', '8493556'), + (74598, 825, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Arnl9YnA', '8493557'), + (74599, 825, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Arnl9YnA', '8493558'), + (74600, 825, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Arnl9YnA', '8493559'), + (74601, 825, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Arnl9YnA', '8493560'), + (74602, 825, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'Arnl9YnA', '8493561'), + (74603, 825, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Arnl9YnA', '8493572'), + (74604, 825, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'Arnl9YnA', '8529058'), + (74605, 826, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dxPJ3y1d', '5600604'), + (74606, 826, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dxPJ3y1d', '5605544'), + (74607, 826, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dxPJ3y1d', '5630960'), + (74608, 826, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dxPJ3y1d', '5635406'), + (74609, 826, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dxPJ3y1d', '5638765'), + (74610, 826, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dxPJ3y1d', '5640843'), + (74611, 826, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dxPJ3y1d', '5641521'), + (74612, 826, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dxPJ3y1d', '5652395'), + (74613, 826, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxPJ3y1d', '6045684'), + (74614, 827, 1518, 'attending', '2022-08-29 00:08:44', '2025-12-17 19:47:24', 'dBLQEWPA', '5441131'), + (74615, 827, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dBLQEWPA', '5441132'), + (74616, 827, 1544, 'attending', '2022-09-17 21:55:43', '2025-12-17 19:47:11', 'dBLQEWPA', '5454517'), + (74617, 827, 1558, 'attending', '2022-09-11 02:42:10', '2025-12-17 19:47:10', 'dBLQEWPA', '5458730'), + (74618, 827, 1559, 'attending', '2022-09-28 22:00:15', '2025-12-17 19:47:11', 'dBLQEWPA', '5458731'), + (74619, 827, 1608, 'attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dBLQEWPA', '5505059'), + (74620, 827, 1610, 'maybe', '2022-08-30 19:14:10', '2025-12-17 19:47:23', 'dBLQEWPA', '5506595'), + (74621, 827, 1615, 'attending', '2022-08-30 19:12:05', '2025-12-17 19:47:23', 'dBLQEWPA', '5509055'), + (74622, 827, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'dBLQEWPA', '5513985'), + (74623, 827, 1626, 'attending', '2022-09-30 17:31:54', '2025-12-17 19:47:11', 'dBLQEWPA', '5519981'), + (74624, 827, 1629, 'attending', '2022-09-19 04:20:03', '2025-12-17 19:47:11', 'dBLQEWPA', '5522550'), + (74625, 827, 1630, 'attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'dBLQEWPA', '5534683'), + (74626, 827, 1634, 'attending', '2022-08-29 00:10:35', '2025-12-17 19:47:23', 'dBLQEWPA', '5536950'), + (74627, 827, 1635, 'attending', '2022-09-11 02:42:03', '2025-12-17 19:47:10', 'dBLQEWPA', '5537735'), + (74628, 827, 1636, 'attending', '2022-09-04 03:20:25', '2025-12-17 19:47:24', 'dBLQEWPA', '5538454'), + (74629, 827, 1640, 'attending', '2022-09-11 02:42:06', '2025-12-17 19:47:10', 'dBLQEWPA', '5540859'), + (74630, 827, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dBLQEWPA', '5546619'), + (74631, 827, 1647, 'attending', '2022-09-13 21:15:56', '2025-12-17 19:47:11', 'dBLQEWPA', '5548660'), + (74632, 827, 1658, 'maybe', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dBLQEWPA', '5555245'), + (74633, 827, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dBLQEWPA', '5557747'), + (74634, 827, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dBLQEWPA', '5560255'), + (74635, 827, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dBLQEWPA', '5562906'), + (74636, 827, 1666, 'attending', '2022-09-15 20:55:22', '2025-12-17 19:47:11', 'dBLQEWPA', '5563208'), + (74637, 827, 1668, 'attending', '2022-09-17 21:55:54', '2025-12-17 19:47:12', 'dBLQEWPA', '5563222'), + (74638, 827, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dBLQEWPA', '5600604'), + (74639, 827, 1679, 'attending', '2022-10-01 15:28:23', '2025-12-17 19:47:12', 'dBLQEWPA', '5601099'), + (74640, 827, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dBLQEWPA', '5605544'), + (74641, 827, 1699, 'not_attending', '2022-09-26 12:19:02', '2025-12-17 19:47:12', 'dBLQEWPA', '5606737'), + (74642, 827, 1708, 'maybe', '2022-10-05 02:37:28', '2025-12-17 19:47:12', 'dBLQEWPA', '5617648'), + (74643, 827, 1711, 'maybe', '2022-10-02 21:11:33', '2025-12-17 19:47:12', 'dBLQEWPA', '5621883'), + (74644, 827, 1712, 'attending', '2022-10-02 21:11:35', '2025-12-17 19:47:12', 'dBLQEWPA', '5622073'), + (74645, 827, 1713, 'attending', '2022-10-02 21:11:36', '2025-12-17 19:47:13', 'dBLQEWPA', '5622108'), + (74646, 827, 1714, 'maybe', '2022-10-02 21:11:39', '2025-12-17 19:47:14', 'dBLQEWPA', '5622347'), + (74647, 827, 1717, 'attending', '2022-10-21 10:43:16', '2025-12-17 19:47:13', 'dBLQEWPA', '5622842'), + (74648, 827, 1718, 'attending', '2022-10-05 01:07:48', '2025-12-17 19:47:12', 'dBLQEWPA', '5630907'), + (74649, 827, 1719, 'maybe', '2022-10-08 15:54:21', '2025-12-17 19:47:12', 'dBLQEWPA', '5630958'), + (74650, 827, 1721, 'attending', '2022-10-22 13:59:14', '2025-12-17 19:47:13', 'dBLQEWPA', '5630960'), + (74651, 827, 1722, 'attending', '2022-10-23 03:04:49', '2025-12-17 19:47:14', 'dBLQEWPA', '5630961'), + (74652, 827, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dBLQEWPA', '5630962'), + (74653, 827, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dBLQEWPA', '5630966'), + (74654, 827, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dBLQEWPA', '5630967'), + (74655, 827, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dBLQEWPA', '5630968'), + (74656, 827, 1727, 'attending', '2022-12-04 00:41:54', '2025-12-17 19:47:16', 'dBLQEWPA', '5630969'), + (74657, 827, 1728, 'attending', '2022-12-11 20:39:49', '2025-12-17 19:47:17', 'dBLQEWPA', '5630970'), + (74658, 827, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dBLQEWPA', '5635406'), + (74659, 827, 1737, 'attending', '2022-11-30 22:52:07', '2025-12-17 19:47:16', 'dBLQEWPA', '5638457'), + (74660, 827, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dBLQEWPA', '5638765'), + (74661, 827, 1739, 'not_attending', '2022-10-23 03:04:41', '2025-12-17 19:47:14', 'dBLQEWPA', '5640097'), + (74662, 827, 1740, 'not_attending', '2022-10-09 21:07:09', '2025-12-17 19:47:13', 'dBLQEWPA', '5640843'), + (74663, 827, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dBLQEWPA', '5641521'), + (74664, 827, 1744, 'attending', '2022-11-21 20:35:50', '2025-12-17 19:47:16', 'dBLQEWPA', '5642818'), + (74665, 827, 1747, 'not_attending', '2022-10-25 16:14:59', '2025-12-17 19:47:14', 'dBLQEWPA', '5648009'), + (74666, 827, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dBLQEWPA', '5652395'), + (74667, 827, 1753, 'attending', '2022-10-22 13:59:08', '2025-12-17 19:47:13', 'dBLQEWPA', '5656228'), + (74668, 827, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dBLQEWPA', '5670445'), + (74669, 827, 1763, 'attending', '2022-11-11 05:17:58', '2025-12-17 19:47:15', 'dBLQEWPA', '5670803'), + (74670, 827, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dBLQEWPA', '5671637'), + (74671, 827, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dBLQEWPA', '5672329'), + (74672, 827, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dBLQEWPA', '5674057'), + (74673, 827, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dBLQEWPA', '5674060'), + (74674, 827, 1770, 'not_attending', '2022-10-28 20:32:49', '2025-12-17 19:47:14', 'dBLQEWPA', '5676936'), + (74675, 827, 1772, 'maybe', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'dBLQEWPA', '5677461'), + (74676, 827, 1776, 'attending', '2022-11-09 23:48:31', '2025-12-17 19:47:15', 'dBLQEWPA', '5691067'), + (74677, 827, 1781, 'attending', '2022-11-02 17:16:59', '2025-12-17 19:47:15', 'dBLQEWPA', '5696178'), + (74678, 827, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dBLQEWPA', '5698046'), + (74679, 827, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dBLQEWPA', '5699760'), + (74680, 827, 1791, 'not_attending', '2022-11-08 05:22:20', '2025-12-17 19:47:15', 'dBLQEWPA', '5728511'), + (74681, 827, 1793, 'maybe', '2022-11-21 20:35:57', '2025-12-17 19:47:16', 'dBLQEWPA', '5736365'), + (74682, 827, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dBLQEWPA', '5741601'), + (74683, 827, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dBLQEWPA', '5763458'), + (74684, 827, 1806, 'not_attending', '2023-01-21 04:14:14', '2025-12-17 19:47:05', 'dBLQEWPA', '5764676'), + (74685, 827, 1807, 'attending', '2023-01-14 23:31:17', '2025-12-17 19:47:05', 'dBLQEWPA', '5764677'), + (74686, 827, 1808, 'attending', '2023-03-04 11:14:42', '2025-12-17 19:47:08', 'dBLQEWPA', '5764678'), + (74687, 827, 1810, 'attending', '2023-04-22 21:09:51', '2025-12-17 19:47:00', 'dBLQEWPA', '5764680'), + (74688, 827, 1812, 'attending', '2023-03-11 18:27:32', '2025-12-17 19:47:09', 'dBLQEWPA', '5764682'), + (74689, 827, 1813, 'attending', '2023-04-29 16:49:21', '2025-12-17 19:47:01', 'dBLQEWPA', '5764683'), + (74690, 827, 1814, 'attending', '2023-02-24 21:33:33', '2025-12-17 19:47:08', 'dBLQEWPA', '5764684'), + (74691, 827, 1816, 'attending', '2023-05-20 02:36:22', '2025-12-17 19:47:03', 'dBLQEWPA', '5764686'), + (74692, 827, 1821, 'maybe', '2023-03-17 00:11:58', '2025-12-17 19:46:56', 'dBLQEWPA', '5764691'), + (74693, 827, 1822, 'attending', '2023-05-13 02:19:13', '2025-12-17 19:47:02', 'dBLQEWPA', '5764692'), + (74694, 827, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dBLQEWPA', '5774172'), + (74695, 827, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dBLQEWPA', '5818247'), + (74696, 827, 1834, 'attending', '2022-12-10 17:52:35', '2025-12-17 19:47:17', 'dBLQEWPA', '5819470'), + (74697, 827, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dBLQEWPA', '5819471'), + (74698, 827, 1837, 'attending', '2022-12-05 20:05:49', '2025-12-17 19:47:16', 'dBLQEWPA', '5820146'), + (74699, 827, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dBLQEWPA', '5827739'), + (74700, 827, 1843, 'maybe', '2022-12-17 22:03:14', '2025-12-17 19:47:04', 'dBLQEWPA', '5844304'), + (74701, 827, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dBLQEWPA', '5844306'), + (74702, 827, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dBLQEWPA', '5850159'), + (74703, 827, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dBLQEWPA', '5858999'), + (74704, 827, 1852, 'attending', '2023-01-09 07:01:13', '2025-12-17 19:47:05', 'dBLQEWPA', '5869898'), + (74705, 827, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dBLQEWPA', '5871984'), + (74706, 827, 1859, 'attending', '2023-01-20 17:14:56', '2025-12-17 19:47:05', 'dBLQEWPA', '5876234'), + (74707, 827, 1861, 'attending', '2023-01-17 05:11:00', '2025-12-17 19:47:05', 'dBLQEWPA', '5876354'), + (74708, 827, 1864, 'not_attending', '2023-01-21 04:14:15', '2025-12-17 19:47:05', 'dBLQEWPA', '5879675'), + (74709, 827, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dBLQEWPA', '5880939'), + (74710, 827, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dBLQEWPA', '5880940'), + (74711, 827, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dBLQEWPA', '5880942'), + (74712, 827, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dBLQEWPA', '5880943'), + (74713, 827, 1872, 'maybe', '2023-01-19 04:49:59', '2025-12-17 19:47:05', 'dBLQEWPA', '5883546'), + (74714, 827, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dBLQEWPA', '5887890'), + (74715, 827, 1875, 'maybe', '2023-01-26 01:40:50', '2025-12-17 19:47:06', 'dBLQEWPA', '5887908'), + (74716, 827, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dBLQEWPA', '5888598'), + (74717, 827, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dBLQEWPA', '5893260'), + (74718, 827, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dBLQEWPA', '5899826'), + (74719, 827, 1885, 'attending', '2023-02-24 21:33:23', '2025-12-17 19:47:08', 'dBLQEWPA', '5899928'), + (74720, 827, 1886, 'attending', '2023-03-08 19:18:49', '2025-12-17 19:47:09', 'dBLQEWPA', '5899930'), + (74721, 827, 1889, 'maybe', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dBLQEWPA', '5900199'), + (74722, 827, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dBLQEWPA', '5900200'), + (74723, 827, 1891, 'attending', '2023-03-20 19:38:43', '2025-12-17 19:46:56', 'dBLQEWPA', '5900202'), + (74724, 827, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dBLQEWPA', '5900203'), + (74725, 827, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dBLQEWPA', '5901108'), + (74726, 827, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dBLQEWPA', '5901126'), + (74727, 827, 1898, 'not_attending', '2023-02-01 23:52:29', '2025-12-17 19:47:06', 'dBLQEWPA', '5901263'), + (74728, 827, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dBLQEWPA', '5909655'), + (74729, 827, 1915, 'maybe', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dBLQEWPA', '5910522'), + (74730, 827, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dBLQEWPA', '5910526'), + (74731, 827, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dBLQEWPA', '5910528'), + (74732, 827, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dBLQEWPA', '5916219'), + (74733, 827, 1923, 'attending', '2023-02-16 19:40:45', '2025-12-17 19:47:07', 'dBLQEWPA', '5930436'), + (74734, 827, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dBLQEWPA', '5936234'), + (74735, 827, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dBLQEWPA', '5958351'), + (74736, 827, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dBLQEWPA', '5959751'), + (74737, 827, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dBLQEWPA', '5959755'), + (74738, 827, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dBLQEWPA', '5960055'), + (74739, 827, 1941, 'maybe', '2023-02-25 03:31:22', '2025-12-17 19:47:09', 'dBLQEWPA', '5961684'), + (74740, 827, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dBLQEWPA', '5962132'), + (74741, 827, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dBLQEWPA', '5962133'), + (74742, 827, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dBLQEWPA', '5962134'), + (74743, 827, 1947, 'attending', '2023-03-05 22:43:30', '2025-12-17 19:47:09', 'dBLQEWPA', '5962233'), + (74744, 827, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dBLQEWPA', '5962317'), + (74745, 827, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dBLQEWPA', '5962318'), + (74746, 827, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dBLQEWPA', '5965933'), + (74747, 827, 1953, 'maybe', '2023-03-05 20:34:38', '2025-12-17 19:47:09', 'dBLQEWPA', '5966307'), + (74748, 827, 1954, 'maybe', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dBLQEWPA', '5967014'), + (74749, 827, 1955, 'maybe', '2023-03-29 18:56:59', '2025-12-17 19:46:57', 'dBLQEWPA', '5972529'), + (74750, 827, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dBLQEWPA', '5972763'), + (74751, 827, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dBLQEWPA', '5972815'), + (74752, 827, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dBLQEWPA', '5974016'), + (74753, 827, 1965, 'attending', '2023-03-10 22:07:13', '2025-12-17 19:47:09', 'dBLQEWPA', '5981515'), + (74754, 827, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dBLQEWPA', '5993516'), + (74755, 827, 1970, 'attending', '2023-03-20 19:38:24', '2025-12-17 19:46:56', 'dBLQEWPA', '5993758'), + (74756, 827, 1972, 'attending', '2023-03-19 02:55:05', '2025-12-17 19:46:56', 'dBLQEWPA', '5993776'), + (74757, 827, 1974, 'not_attending', '2023-03-20 19:38:14', '2025-12-17 19:46:57', 'dBLQEWPA', '5993778'), + (74758, 827, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dBLQEWPA', '5998939'), + (74759, 827, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dBLQEWPA', '6028191'), + (74760, 827, 1979, 'attending', '2023-03-18 01:07:49', '2025-12-17 19:46:56', 'dBLQEWPA', '6030009'), + (74761, 827, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dBLQEWPA', '6040066'), + (74762, 827, 1984, 'attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dBLQEWPA', '6042717'), + (74763, 827, 1986, 'maybe', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dBLQEWPA', '6044838'), + (74764, 827, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dBLQEWPA', '6044839'), + (74765, 827, 1990, 'attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBLQEWPA', '6045684'), + (74766, 827, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:58', 'dBLQEWPA', '6050104'), + (74767, 827, 2002, 'maybe', '2023-04-28 19:53:15', '2025-12-17 19:47:01', 'dBLQEWPA', '6052605'), + (74768, 827, 2005, 'attending', '2023-04-04 22:14:57', '2025-12-17 19:46:58', 'dBLQEWPA', '6053195'), + (74769, 827, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dBLQEWPA', '6053198'), + (74770, 827, 2008, 'attending', '2023-04-07 20:07:56', '2025-12-17 19:46:58', 'dBLQEWPA', '6055808'), + (74771, 827, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dBLQEWPA', '6056085'), + (74772, 827, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dBLQEWPA', '6056916'), + (74773, 827, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dBLQEWPA', '6059290'), + (74774, 827, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dBLQEWPA', '6060328'), + (74775, 827, 2015, 'attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dBLQEWPA', '6061037'), + (74776, 827, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dBLQEWPA', '6061039'), + (74777, 827, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'dBLQEWPA', '6061099'), + (74778, 827, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dBLQEWPA', '6067245'), + (74779, 827, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dBLQEWPA', '6068094'), + (74780, 827, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dBLQEWPA', '6068252'), + (74781, 827, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dBLQEWPA', '6068253'), + (74782, 827, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dBLQEWPA', '6068254'), + (74783, 827, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dBLQEWPA', '6068280'), + (74784, 827, 2032, 'attending', '2023-05-20 16:34:22', '2025-12-17 19:47:04', 'dBLQEWPA', '6068281'), + (74785, 827, 2033, 'attending', '2023-04-19 00:09:08', '2025-12-17 19:47:00', 'dBLQEWPA', '6069093'), + (74786, 827, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dBLQEWPA', '6072528'), + (74787, 827, 2043, 'attending', '2023-04-26 18:49:13', '2025-12-17 19:47:01', 'dBLQEWPA', '6073023'), + (74788, 827, 2044, 'maybe', '2023-05-23 22:33:51', '2025-12-17 19:47:03', 'dBLQEWPA', '6073678'), + (74789, 827, 2048, 'attending', '2023-04-28 13:39:46', '2025-12-17 19:47:03', 'dBLQEWPA', '6076415'), + (74790, 827, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dBLQEWPA', '6079840'), + (74791, 827, 2051, 'attending', '2023-05-01 04:19:32', '2025-12-17 19:47:02', 'dBLQEWPA', '6083398'), + (74792, 827, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'dBLQEWPA', '6093504'), + (74793, 827, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dBLQEWPA', '6097414'), + (74794, 827, 2061, 'attending', '2023-05-09 00:06:35', '2025-12-17 19:47:02', 'dBLQEWPA', '6097442'), + (74795, 827, 2062, 'attending', '2023-05-09 01:04:07', '2025-12-17 19:47:02', 'dBLQEWPA', '6097684'), + (74796, 827, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dBLQEWPA', '6098762'), + (74797, 827, 2064, 'attending', '2023-05-27 19:35:33', '2025-12-17 19:46:50', 'dBLQEWPA', '6099988'), + (74798, 827, 2065, 'attending', '2023-05-27 19:35:31', '2025-12-17 19:46:49', 'dBLQEWPA', '6101169'), + (74799, 827, 2066, 'attending', '2023-05-11 22:23:31', '2025-12-17 19:47:04', 'dBLQEWPA', '6101361'), + (74800, 827, 2067, 'attending', '2023-05-11 22:28:47', '2025-12-17 19:47:03', 'dBLQEWPA', '6101362'), + (74801, 827, 2074, 'attending', '2023-05-19 00:24:02', '2025-12-17 19:47:03', 'dBLQEWPA', '6107312'), + (74802, 827, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dBLQEWPA', '6107314'), + (74803, 827, 2076, 'not_attending', '2023-05-20 02:36:20', '2025-12-17 19:47:03', 'dBLQEWPA', '6108350'), + (74804, 827, 2081, 'attending', '2023-05-23 22:30:29', '2025-12-17 19:47:03', 'dBLQEWPA', '6115611'), + (74805, 827, 2083, 'maybe', '2023-05-23 22:30:30', '2025-12-17 19:47:04', 'dBLQEWPA', '6115629'), + (74806, 827, 2087, 'attending', '2023-05-26 21:01:47', '2025-12-17 19:47:04', 'dBLQEWPA', '6120034'), + (74807, 827, 2091, 'attending', '2023-06-04 17:41:14', '2025-12-17 19:47:04', 'dBLQEWPA', '6130657'), + (74808, 827, 2092, 'attending', '2023-06-03 20:51:20', '2025-12-17 19:47:04', 'dBLQEWPA', '6132543'), + (74809, 827, 2094, 'maybe', '2023-06-09 16:07:55', '2025-12-17 19:47:04', 'dBLQEWPA', '6135924'), + (74810, 827, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dBLQEWPA', '6136733'), + (74811, 827, 2096, 'attending', '2023-06-06 18:53:25', '2025-12-17 19:47:04', 'dBLQEWPA', '6137989'), + (74812, 827, 2108, 'attending', '2023-06-18 16:30:53', '2025-12-17 19:46:50', 'dBLQEWPA', '6150864'), + (74813, 827, 2109, 'attending', '2023-06-19 19:28:10', '2025-12-17 19:46:50', 'dBLQEWPA', '6152821'), + (74814, 827, 2110, 'attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dBLQEWPA', '6155491'), + (74815, 827, 2116, 'maybe', '2023-07-06 20:35:36', '2025-12-17 19:46:51', 'dBLQEWPA', '6163389'), + (74816, 827, 2118, 'attending', '2023-06-25 16:16:43', '2025-12-17 19:46:50', 'dBLQEWPA', '6164417'), + (74817, 827, 2120, 'attending', '2023-06-26 21:35:50', '2025-12-17 19:46:50', 'dBLQEWPA', '6166388'), + (74818, 827, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dBLQEWPA', '6176439'), + (74819, 827, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dBLQEWPA', '6180853'), + (74820, 827, 2128, 'attending', '2023-07-02 18:16:50', '2025-12-17 19:46:50', 'dBLQEWPA', '6182410'), + (74821, 827, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dBLQEWPA', '6185812'), + (74822, 827, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dBLQEWPA', '6187651'), + (74823, 827, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dBLQEWPA', '6187963'), + (74824, 827, 2135, 'maybe', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dBLQEWPA', '6187964'), + (74825, 827, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dBLQEWPA', '6187966'), + (74826, 827, 2137, 'maybe', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dBLQEWPA', '6187967'), + (74827, 827, 2138, 'maybe', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dBLQEWPA', '6187969'), + (74828, 827, 2143, 'attending', '2023-07-08 18:41:33', '2025-12-17 19:46:51', 'dBLQEWPA', '6334348'), + (74829, 827, 2144, 'attending', '2023-07-08 22:23:33', '2025-12-17 19:46:52', 'dBLQEWPA', '6334878'), + (74830, 827, 2146, 'maybe', '2023-07-18 16:19:29', '2025-12-17 19:46:53', 'dBLQEWPA', '6335638'), + (74831, 827, 2147, 'maybe', '2023-07-09 20:53:18', '2025-12-17 19:46:52', 'dBLQEWPA', '6335666'), + (74832, 827, 2149, 'attending', '2023-07-19 05:10:38', '2025-12-17 19:46:53', 'dBLQEWPA', '6335682'), + (74833, 827, 2152, 'maybe', '2023-07-13 23:25:32', '2025-12-17 19:46:52', 'dBLQEWPA', '6337021'), + (74834, 827, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dBLQEWPA', '6337236'), + (74835, 827, 2155, 'attending', '2023-07-18 16:16:57', '2025-12-17 19:46:53', 'dBLQEWPA', '6337970'), + (74836, 827, 2156, 'attending', '2023-07-12 21:16:26', '2025-12-17 19:46:52', 'dBLQEWPA', '6338308'), + (74837, 827, 2158, 'attending', '2023-07-23 07:21:36', '2025-12-17 19:46:53', 'dBLQEWPA', '6338353'), + (74838, 827, 2159, 'attending', '2023-07-18 16:19:34', '2025-12-17 19:46:53', 'dBLQEWPA', '6338355'), + (74839, 827, 2160, 'attending', '2023-07-17 18:49:27', '2025-12-17 19:46:54', 'dBLQEWPA', '6338358'), + (74840, 827, 2161, 'attending', '2023-07-15 19:31:05', '2025-12-17 19:46:52', 'dBLQEWPA', '6340748'), + (74841, 827, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dBLQEWPA', '6340845'), + (74842, 827, 2163, 'attending', '2023-07-16 20:05:15', '2025-12-17 19:46:52', 'dBLQEWPA', '6341710'), + (74843, 827, 2165, 'attending', '2023-08-02 05:17:03', '2025-12-17 19:46:54', 'dBLQEWPA', '6342044'), + (74844, 827, 2166, 'not_attending', '2023-07-23 07:09:59', '2025-12-17 19:46:54', 'dBLQEWPA', '6342115'), + (74845, 827, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dBLQEWPA', '6342298'), + (74846, 827, 2172, 'attending', '2023-07-18 16:19:16', '2025-12-17 19:46:53', 'dBLQEWPA', '6342591'), + (74847, 827, 2174, 'attending', '2023-07-19 05:14:37', '2025-12-17 19:46:53', 'dBLQEWPA', '6343294'), + (74848, 827, 2175, 'attending', '2023-07-22 18:59:10', '2025-12-17 19:46:53', 'dBLQEWPA', '6346982'), + (74849, 827, 2176, 'attending', '2023-07-23 07:36:49', '2025-12-17 19:46:54', 'dBLQEWPA', '6347034'), + (74850, 827, 2177, 'attending', '2023-08-07 03:56:23', '2025-12-17 19:46:55', 'dBLQEWPA', '6347053'), + (74851, 827, 2178, 'attending', '2023-07-23 07:34:05', '2025-12-17 19:46:53', 'dBLQEWPA', '6347056'), + (74852, 827, 2182, 'not_attending', '2023-07-26 20:15:58', '2025-12-17 19:46:53', 'dBLQEWPA', '6349618'), + (74853, 827, 2183, 'not_attending', '2023-07-29 17:42:20', '2025-12-17 19:46:54', 'dBLQEWPA', '6353008'), + (74854, 827, 2184, 'attending', '2023-07-29 20:37:46', '2025-12-17 19:46:54', 'dBLQEWPA', '6353825'), + (74855, 827, 2185, 'maybe', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dBLQEWPA', '6353830'), + (74856, 827, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dBLQEWPA', '6353831'), + (74857, 827, 2187, 'not_attending', '2023-08-02 05:17:20', '2025-12-17 19:46:55', 'dBLQEWPA', '6357559'), + (74858, 827, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dBLQEWPA', '6357867'), + (74859, 827, 2191, 'attending', '2023-08-03 20:26:42', '2025-12-17 19:46:54', 'dBLQEWPA', '6358652'), + (74860, 827, 2196, 'attending', '2023-09-08 23:31:01', '2025-12-17 19:46:56', 'dBLQEWPA', '6359398'), + (74861, 827, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'dBLQEWPA', '6359940'), + (74862, 827, 2202, 'not_attending', '2023-08-06 18:29:36', '2025-12-17 19:46:54', 'dBLQEWPA', '6360509'), + (74863, 827, 2204, 'attending', '2023-08-19 13:59:52', '2025-12-17 19:46:55', 'dBLQEWPA', '6361542'), + (74864, 827, 2208, 'attending', '2023-08-09 00:58:17', '2025-12-17 19:46:54', 'dBLQEWPA', '6361709'), + (74865, 827, 2209, 'attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dBLQEWPA', '6361710'), + (74866, 827, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dBLQEWPA', '6361711'), + (74867, 827, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dBLQEWPA', '6361712'), + (74868, 827, 2212, 'attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dBLQEWPA', '6361713'), + (74869, 827, 2216, 'not_attending', '2023-08-14 17:00:48', '2025-12-17 19:46:55', 'dBLQEWPA', '6364123'), + (74870, 827, 2217, 'attending', '2023-08-14 19:05:08', '2025-12-17 19:46:55', 'dBLQEWPA', '6364333'), + (74871, 827, 2219, 'maybe', '2023-08-14 22:42:38', '2025-12-17 19:46:55', 'dBLQEWPA', '6367309'), + (74872, 827, 2226, 'not_attending', '2023-08-17 16:37:51', '2025-12-17 19:46:55', 'dBLQEWPA', '6370006'), + (74873, 827, 2227, 'maybe', '2023-08-20 22:57:43', '2025-12-17 19:46:55', 'dBLQEWPA', '6370581'), + (74874, 827, 2228, 'not_attending', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'dBLQEWPA', '6372777'), + (74875, 827, 2232, 'attending', '2023-08-23 20:26:46', '2025-12-17 19:46:55', 'dBLQEWPA', '6374818'), + (74876, 827, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dBLQEWPA', '6382573'), + (74877, 827, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'dBLQEWPA', '6383149'), + (74878, 827, 2239, 'attending', '2023-09-02 04:12:37', '2025-12-17 19:46:56', 'dBLQEWPA', '6387592'), + (74879, 827, 2240, 'attending', '2023-09-02 04:12:40', '2025-12-17 19:46:56', 'dBLQEWPA', '6388603'), + (74880, 827, 2241, 'attending', '2023-09-02 04:12:42', '2025-12-17 19:46:44', 'dBLQEWPA', '6388604'), + (74881, 827, 2242, 'not_attending', '2023-09-02 04:13:05', '2025-12-17 19:46:45', 'dBLQEWPA', '6388606'), + (74882, 827, 2247, 'attending', '2023-09-06 16:48:44', '2025-12-17 19:46:56', 'dBLQEWPA', '6394628'), + (74883, 827, 2248, 'attending', '2023-09-09 21:46:04', '2025-12-17 19:46:44', 'dBLQEWPA', '6394629'), + (74884, 827, 2249, 'attending', '2023-09-09 21:46:10', '2025-12-17 19:46:45', 'dBLQEWPA', '6394630'), + (74885, 827, 2250, 'attending', '2023-09-09 21:46:14', '2025-12-17 19:46:45', 'dBLQEWPA', '6394631'), + (74886, 827, 2253, 'not_attending', '2023-09-11 05:54:47', '2025-12-17 19:46:45', 'dBLQEWPA', '6401811'), + (74887, 827, 2257, 'attending', '2023-09-16 17:15:39', '2025-12-17 19:46:44', 'dBLQEWPA', '6408068'), + (74888, 827, 2265, 'attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', 'dBLQEWPA', '6439625'), + (74889, 827, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dBLQEWPA', '6440863'), + (74890, 827, 2272, 'attending', '2023-10-03 01:31:41', '2025-12-17 19:46:45', 'dBLQEWPA', '6445440'), + (74891, 827, 2276, 'attending', '2023-10-08 04:06:43', '2025-12-17 19:46:46', 'dBLQEWPA', '6453951'), + (74892, 827, 2279, 'maybe', '2023-10-12 20:33:45', '2025-12-17 19:46:46', 'dBLQEWPA', '6455460'), + (74893, 827, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dBLQEWPA', '6461696'), + (74894, 827, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dBLQEWPA', '6462129'), + (74895, 827, 2290, 'attending', '2023-10-18 03:53:16', '2025-12-17 19:46:46', 'dBLQEWPA', '6462214'), + (74896, 827, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dBLQEWPA', '6463218'), + (74897, 827, 2299, 'attending', '2023-10-21 02:10:35', '2025-12-17 19:46:46', 'dBLQEWPA', '6472181'), + (74898, 827, 2304, 'attending', '2023-10-29 02:17:22', '2025-12-17 19:46:47', 'dBLQEWPA', '6482693'), + (74899, 827, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dBLQEWPA', '6484200'), + (74900, 827, 2307, 'attending', '2023-10-22 18:40:44', '2025-12-17 19:46:46', 'dBLQEWPA', '6484680'), + (74901, 827, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dBLQEWPA', '6507741'), + (74902, 827, 2322, 'attending', '2023-11-01 04:45:49', '2025-12-17 19:46:48', 'dBLQEWPA', '6514659'), + (74903, 827, 2323, 'attending', '2023-11-01 04:45:45', '2025-12-17 19:46:48', 'dBLQEWPA', '6514660'), + (74904, 827, 2324, 'attending', '2023-11-01 04:45:43', '2025-12-17 19:46:49', 'dBLQEWPA', '6514662'), + (74905, 827, 2325, 'attending', '2023-11-01 04:45:42', '2025-12-17 19:46:36', 'dBLQEWPA', '6514663'), + (74906, 827, 2333, 'attending', '2023-11-05 03:00:45', '2025-12-17 19:46:47', 'dBLQEWPA', '6519103'), + (74907, 827, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dBLQEWPA', '6535681'), + (74908, 827, 2345, 'maybe', '2023-11-29 21:02:18', '2025-12-17 19:46:48', 'dBLQEWPA', '6582414'), + (74909, 827, 2350, 'attending', '2023-11-22 19:12:05', '2025-12-17 19:46:48', 'dBLQEWPA', '6584352'), + (74910, 827, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dBLQEWPA', '6584747'), + (74911, 827, 2352, 'attending', '2023-11-21 09:50:58', '2025-12-17 19:46:48', 'dBLQEWPA', '6587097'), + (74912, 827, 2363, 'attending', '2023-12-04 23:38:16', '2025-12-17 19:46:49', 'dBLQEWPA', '6609022'), + (74913, 827, 2370, 'attending', '2023-12-12 05:32:50', '2025-12-17 19:46:36', 'dBLQEWPA', '6623765'), + (74914, 827, 2373, 'attending', '2023-12-22 01:59:34', '2025-12-17 19:46:38', 'dBLQEWPA', '6632678'), + (74915, 827, 2374, 'attending', '2023-12-18 22:28:35', '2025-12-17 19:46:36', 'dBLQEWPA', '6632757'), + (74916, 827, 2379, 'maybe', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dBLQEWPA', '6644187'), + (74917, 827, 2386, 'attending', '2024-01-02 23:53:39', '2025-12-17 19:46:37', 'dBLQEWPA', '6648951'), + (74918, 827, 2387, 'attending', '2024-01-04 03:39:49', '2025-12-17 19:46:37', 'dBLQEWPA', '6648952'), + (74919, 827, 2388, 'attending', '2024-01-03 02:35:05', '2025-12-17 19:46:37', 'dBLQEWPA', '6649244'), + (74920, 827, 2393, 'not_attending', '2024-01-10 23:19:04', '2025-12-17 19:46:38', 'dBLQEWPA', '6654468'), + (74921, 827, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dBLQEWPA', '6655401'), + (74922, 827, 2399, 'attending', '2024-01-10 23:38:52', '2025-12-17 19:46:38', 'dBLQEWPA', '6657583'), + (74923, 827, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dBLQEWPA', '6661585'), + (74924, 827, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dBLQEWPA', '6661588'), + (74925, 827, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dBLQEWPA', '6661589'), + (74926, 827, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dBLQEWPA', '6699906'), + (74927, 827, 2408, 'attending', '2024-01-15 03:42:02', '2025-12-17 19:46:40', 'dBLQEWPA', '6699907'), + (74928, 827, 2409, 'attending', '2024-01-15 03:52:26', '2025-12-17 19:46:41', 'dBLQEWPA', '6699909'), + (74929, 827, 2410, 'attending', '2024-01-15 03:52:28', '2025-12-17 19:46:41', 'dBLQEWPA', '6699911'), + (74930, 827, 2411, 'attending', '2024-01-15 04:03:05', '2025-12-17 19:46:41', 'dBLQEWPA', '6699913'), + (74931, 827, 2413, 'maybe', '2024-02-18 18:34:20', '2025-12-17 19:46:42', 'dBLQEWPA', '6700719'), + (74932, 827, 2414, 'attending', '2024-01-16 01:26:44', '2025-12-17 19:46:40', 'dBLQEWPA', '6701000'), + (74933, 827, 2415, 'attending', '2024-01-20 17:45:21', '2025-12-17 19:46:40', 'dBLQEWPA', '6701001'), + (74934, 827, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dBLQEWPA', '6701109'), + (74935, 827, 2419, 'maybe', '2024-01-24 20:49:06', '2025-12-17 19:46:41', 'dBLQEWPA', '6704505'), + (74936, 827, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dBLQEWPA', '6705219'), + (74937, 827, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dBLQEWPA', '6710153'), + (74938, 827, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dBLQEWPA', '6711552'), + (74939, 827, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dBLQEWPA', '6711553'), + (74940, 827, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dBLQEWPA', '6722688'), + (74941, 827, 2438, 'attending', '2024-02-08 00:34:34', '2025-12-17 19:46:41', 'dBLQEWPA', '6730201'), + (74942, 827, 2439, 'attending', '2024-01-31 02:58:26', '2025-12-17 19:46:41', 'dBLQEWPA', '6730620'), + (74943, 827, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dBLQEWPA', '6730642'), + (74944, 827, 2450, 'attending', '2024-02-05 17:50:23', '2025-12-17 19:46:41', 'dBLQEWPA', '6738807'), + (74945, 827, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dBLQEWPA', '6740364'), + (74946, 827, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dBLQEWPA', '6743829'), + (74947, 827, 2461, 'attending', '2024-02-10 05:06:11', '2025-12-17 19:46:41', 'dBLQEWPA', '6744245'), + (74948, 827, 2466, 'attending', '2024-02-14 23:58:57', '2025-12-17 19:46:41', 'dBLQEWPA', '7026777'), + (74949, 827, 2467, 'attending', '2024-02-22 00:44:55', '2025-12-17 19:46:43', 'dBLQEWPA', '7029987'), + (74950, 827, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dBLQEWPA', '7030380'), + (74951, 827, 2471, 'attending', '2024-02-23 07:11:08', '2025-12-17 19:46:42', 'dBLQEWPA', '7032425'), + (74952, 827, 2472, 'attending', '2024-02-19 22:45:48', '2025-12-17 19:46:42', 'dBLQEWPA', '7033677'), + (74953, 827, 2474, 'attending', '2024-02-20 23:54:27', '2025-12-17 19:46:43', 'dBLQEWPA', '7035415'), + (74954, 827, 2475, 'not_attending', '2024-02-20 23:58:54', '2025-12-17 19:46:43', 'dBLQEWPA', '7035643'), + (74955, 827, 2476, 'maybe', '2024-02-20 23:58:51', '2025-12-17 19:46:43', 'dBLQEWPA', '7035691'), + (74956, 827, 2478, 'attending', '2024-02-20 23:53:29', '2025-12-17 19:46:43', 'dBLQEWPA', '7036478'), + (74957, 827, 2480, 'attending', '2024-02-24 08:26:58', '2025-12-17 19:46:43', 'dBLQEWPA', '7042160'), + (74958, 827, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dBLQEWPA', '7044715'), + (74959, 827, 2486, 'not_attending', '2024-02-27 06:26:10', '2025-12-17 19:46:43', 'dBLQEWPA', '7048277'), + (74960, 827, 2489, 'attending', '2024-02-27 23:01:34', '2025-12-17 19:46:43', 'dBLQEWPA', '7050161'), + (74961, 827, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dBLQEWPA', '7050318'), + (74962, 827, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dBLQEWPA', '7050319'), + (74963, 827, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dBLQEWPA', '7050322'), + (74964, 827, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dBLQEWPA', '7057804'), + (74965, 827, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dBLQEWPA', '7059866'), + (74966, 827, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dBLQEWPA', '7072824'), + (74967, 827, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dBLQEWPA', '7074348'), + (74968, 827, 2512, 'not_attending', '2024-04-01 18:57:10', '2025-12-17 19:46:33', 'dBLQEWPA', '7074352'), + (74969, 827, 2513, 'maybe', '2024-04-11 22:53:38', '2025-12-17 19:46:34', 'dBLQEWPA', '7074353'), + (74970, 827, 2539, 'maybe', '2024-04-01 18:56:51', '2025-12-17 19:46:33', 'dBLQEWPA', '7085486'), + (74971, 827, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dBLQEWPA', '7089267'), + (74972, 827, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dBLQEWPA', '7098747'), + (74973, 827, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dBLQEWPA', '7113468'), + (74974, 827, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dBLQEWPA', '7114856'), + (74975, 827, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', 'dBLQEWPA', '7114951'), + (74976, 827, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dBLQEWPA', '7114955'), + (74977, 827, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dBLQEWPA', '7114956'), + (74978, 827, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dBLQEWPA', '7114957'), + (74979, 827, 2563, 'not_attending', '2024-04-11 22:53:10', '2025-12-17 19:46:33', 'dBLQEWPA', '7134734'), + (74980, 827, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dBLQEWPA', '7153615'), + (74981, 827, 2571, 'maybe', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dBLQEWPA', '7159484'), + (74982, 827, 2590, 'attending', '2024-04-16 19:59:28', '2025-12-17 19:46:34', 'dBLQEWPA', '7178446'), + (74983, 827, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dBLQEWPA', '7220467'), + (74984, 827, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBLQEWPA', '7240354'), + (74985, 827, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBLQEWPA', '7251633'), + (74986, 827, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBLQEWPA', '7263048'), + (74987, 828, 1824, 'attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'mLDJpvJm', '5774172'), + (74988, 828, 1825, 'attending', '2022-12-07 16:45:17', '2025-12-17 19:47:16', 'mLDJpvJm', '5776760'), + (74989, 828, 1829, 'attending', '2022-12-03 22:14:24', '2025-12-17 19:47:16', 'mLDJpvJm', '5778867'), + (74990, 828, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'mLDJpvJm', '5818247'), + (74991, 828, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mLDJpvJm', '5819471'), + (74992, 828, 1836, 'maybe', '2022-12-07 16:44:44', '2025-12-17 19:47:16', 'mLDJpvJm', '5819484'), + (74993, 828, 1842, 'maybe', '2022-12-17 20:16:14', '2025-12-17 19:47:04', 'mLDJpvJm', '5827739'), + (74994, 828, 1843, 'attending', '2022-12-17 20:14:54', '2025-12-17 19:47:04', 'mLDJpvJm', '5844304'), + (74995, 828, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mLDJpvJm', '5844306'), + (74996, 828, 1845, 'attending', '2022-12-17 21:27:26', '2025-12-17 19:47:05', 'mLDJpvJm', '5844406'), + (74997, 828, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mLDJpvJm', '5850159'), + (74998, 828, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mLDJpvJm', '5858999'), + (74999, 828, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mLDJpvJm', '5871984'), + (75000, 828, 1860, 'maybe', '2023-01-13 17:05:03', '2025-12-17 19:47:05', 'mLDJpvJm', '5876309'), + (75001, 828, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mLDJpvJm', '5876354'), + (75002, 828, 1864, 'attending', '2023-01-18 23:59:55', '2025-12-17 19:47:05', 'mLDJpvJm', '5879675'), + (75003, 828, 1865, 'attending', '2023-01-26 20:50:31', '2025-12-17 19:47:06', 'mLDJpvJm', '5879676'), + (75004, 828, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mLDJpvJm', '5880939'), + (75005, 828, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mLDJpvJm', '5880940'), + (75006, 828, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mLDJpvJm', '5880942'), + (75007, 828, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mLDJpvJm', '5880943'), + (75008, 828, 1874, 'attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mLDJpvJm', '5887890'), + (75009, 828, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mLDJpvJm', '5888598'), + (75010, 828, 1879, 'maybe', '2023-01-29 20:12:12', '2025-12-17 19:47:06', 'mLDJpvJm', '5893001'), + (75011, 828, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mLDJpvJm', '5893260'), + (75012, 828, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mLDJpvJm', '5899826'), + (75013, 828, 1888, 'maybe', '2023-02-13 23:18:49', '2025-12-17 19:47:07', 'mLDJpvJm', '5900197'), + (75014, 828, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mLDJpvJm', '5900199'), + (75015, 828, 1890, 'maybe', '2023-02-20 15:05:02', '2025-12-17 19:47:08', 'mLDJpvJm', '5900200'), + (75016, 828, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mLDJpvJm', '5900202'), + (75017, 828, 1892, 'maybe', '2023-03-09 19:40:23', '2025-12-17 19:46:56', 'mLDJpvJm', '5900203'), + (75018, 828, 1895, 'maybe', '2023-01-31 22:15:47', '2025-12-17 19:47:06', 'mLDJpvJm', '5901108'), + (75019, 828, 1896, 'maybe', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mLDJpvJm', '5901126'), + (75020, 828, 1898, 'maybe', '2023-01-31 23:58:18', '2025-12-17 19:47:06', 'mLDJpvJm', '5901263'), + (75021, 828, 1899, 'attending', '2023-02-09 16:05:46', '2025-12-17 19:47:07', 'mLDJpvJm', '5901323'), + (75022, 828, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mLDJpvJm', '5909655'), + (75023, 828, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mLDJpvJm', '5910522'), + (75024, 828, 1916, 'maybe', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mLDJpvJm', '5910526'), + (75025, 828, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mLDJpvJm', '5910528'), + (75026, 828, 1922, 'maybe', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mLDJpvJm', '5916219'), + (75027, 828, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mLDJpvJm', '5936234'), + (75028, 828, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mLDJpvJm', '5958351'), + (75029, 828, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mLDJpvJm', '5959751'), + (75030, 828, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mLDJpvJm', '5959755'), + (75031, 828, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mLDJpvJm', '5960055'), + (75032, 828, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mLDJpvJm', '5961684'), + (75033, 828, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mLDJpvJm', '5962132'), + (75034, 828, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mLDJpvJm', '5962133'), + (75035, 828, 1946, 'maybe', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mLDJpvJm', '5962134'), + (75036, 828, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mLDJpvJm', '5962317'), + (75037, 828, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mLDJpvJm', '5962318'), + (75038, 828, 1951, 'maybe', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'mLDJpvJm', '5965933'), + (75039, 828, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mLDJpvJm', '5967014'), + (75040, 828, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mLDJpvJm', '5972815'), + (75041, 828, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mLDJpvJm', '5974016'), + (75042, 828, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'mLDJpvJm', '5975052'), + (75043, 828, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'mLDJpvJm', '5975054'), + (75044, 828, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mLDJpvJm', '5981515'), + (75045, 828, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mLDJpvJm', '5993516'), + (75046, 828, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mLDJpvJm', '5998939'), + (75047, 828, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mLDJpvJm', '6028191'), + (75048, 828, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mLDJpvJm', '6040066'), + (75049, 828, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mLDJpvJm', '6042717'), + (75050, 828, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mLDJpvJm', '6044838'), + (75051, 828, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mLDJpvJm', '6044839'), + (75052, 828, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mLDJpvJm', '6045684'), + (75053, 828, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mLDJpvJm', '6050104'), + (75054, 828, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mLDJpvJm', '6053195'), + (75055, 828, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mLDJpvJm', '6053198'), + (75056, 828, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mLDJpvJm', '6056085'), + (75057, 828, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mLDJpvJm', '6056916'), + (75058, 828, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mLDJpvJm', '6059290'), + (75059, 828, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mLDJpvJm', '6060328'), + (75060, 828, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mLDJpvJm', '6061037'), + (75061, 828, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mLDJpvJm', '6061039'), + (75062, 828, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mLDJpvJm', '6067245'), + (75063, 828, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mLDJpvJm', '6068094'), + (75064, 828, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mLDJpvJm', '6068252'), + (75065, 828, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mLDJpvJm', '6068253'), + (75066, 828, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mLDJpvJm', '6068254'), + (75067, 828, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mLDJpvJm', '6068280'), + (75068, 828, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mLDJpvJm', '6069093'), + (75069, 828, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'mLDJpvJm', '6072528'), + (75070, 828, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'mLDJpvJm', '6075556'), + (75071, 828, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mLDJpvJm', '6079840'), + (75072, 828, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mLDJpvJm', '6083398'), + (75073, 828, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mLDJpvJm', '6093504'), + (75074, 828, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mLDJpvJm', '6097414'), + (75075, 828, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mLDJpvJm', '6097442'), + (75076, 828, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mLDJpvJm', '6097684'), + (75077, 828, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mLDJpvJm', '6098762'), + (75078, 828, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mLDJpvJm', '6101361'), + (75079, 828, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mLDJpvJm', '6101362'), + (75080, 828, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mLDJpvJm', '6107314'), + (75081, 828, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mLDJpvJm', '6120034'), + (75082, 828, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mLDJpvJm', '6136733'), + (75083, 828, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mLDJpvJm', '6137989'), + (75084, 828, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mLDJpvJm', '6150864'), + (75085, 828, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mLDJpvJm', '6155491'), + (75086, 828, 2116, 'maybe', '2023-07-04 18:28:40', '2025-12-17 19:46:51', 'mLDJpvJm', '6163389'), + (75087, 828, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mLDJpvJm', '6164417'), + (75088, 828, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mLDJpvJm', '6166388'), + (75089, 828, 2121, 'maybe', '2023-06-28 18:49:32', '2025-12-17 19:46:50', 'mLDJpvJm', '6176439'), + (75090, 828, 2126, 'maybe', '2023-07-02 12:40:56', '2025-12-17 19:46:51', 'mLDJpvJm', '6177548'), + (75091, 828, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'mLDJpvJm', '6182410'), + (75092, 828, 2130, 'attending', '2023-07-04 18:28:32', '2025-12-17 19:46:51', 'mLDJpvJm', '6183891'), + (75093, 828, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mLDJpvJm', '6185812'), + (75094, 828, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mLDJpvJm', '6187651'), + (75095, 828, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mLDJpvJm', '6187963'), + (75096, 828, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mLDJpvJm', '6187964'), + (75097, 828, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mLDJpvJm', '6187966'), + (75098, 828, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mLDJpvJm', '6187967'), + (75099, 828, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mLDJpvJm', '6187969'), + (75100, 828, 2142, 'maybe', '2023-07-17 18:49:08', '2025-12-17 19:46:52', 'mLDJpvJm', '6333850'), + (75101, 828, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mLDJpvJm', '6334878'), + (75102, 828, 2152, 'maybe', '2023-07-14 15:54:45', '2025-12-17 19:46:52', 'mLDJpvJm', '6337021'), + (75103, 828, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mLDJpvJm', '6337236'), + (75104, 828, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mLDJpvJm', '6337970'), + (75105, 828, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mLDJpvJm', '6338308'), + (75106, 828, 2157, 'not_attending', '2023-07-12 21:56:12', '2025-12-17 19:46:52', 'mLDJpvJm', '6338342'), + (75107, 828, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mLDJpvJm', '6341710'), + (75108, 828, 2165, 'attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mLDJpvJm', '6342044'), + (75109, 828, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mLDJpvJm', '6342298'), + (75110, 828, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mLDJpvJm', '6343294'), + (75111, 828, 2176, 'maybe', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mLDJpvJm', '6347034'), + (75112, 828, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mLDJpvJm', '6347056'), + (75113, 828, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mLDJpvJm', '6353830'), + (75114, 828, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mLDJpvJm', '6353831'), + (75115, 828, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mLDJpvJm', '6357867'), + (75116, 828, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mLDJpvJm', '6358652'), + (75117, 828, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'mLDJpvJm', '6358668'), + (75118, 828, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'mLDJpvJm', '6358669'), + (75119, 828, 2195, 'attending', '2023-08-24 22:14:36', '2025-12-17 19:46:55', 'mLDJpvJm', '6359397'), + (75120, 828, 2198, 'attending', '2023-09-22 15:24:15', '2025-12-17 19:46:45', 'mLDJpvJm', '6359400'), + (75121, 828, 2200, 'attending', '2023-08-09 23:20:00', '2025-12-17 19:46:55', 'mLDJpvJm', '6359850'), + (75122, 828, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mLDJpvJm', '6361709'), + (75123, 828, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mLDJpvJm', '6361710'), + (75124, 828, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mLDJpvJm', '6361711'), + (75125, 828, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mLDJpvJm', '6361712'), + (75126, 828, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mLDJpvJm', '6361713'), + (75127, 828, 2213, 'attending', '2023-08-15 22:00:34', '2025-12-17 19:46:55', 'mLDJpvJm', '6362935'), + (75128, 828, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mLDJpvJm', '6382573'), + (75129, 828, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mLDJpvJm', '6388604'), + (75130, 828, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mLDJpvJm', '6394629'), + (75131, 828, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mLDJpvJm', '6394631'), + (75132, 828, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mLDJpvJm', '6440863'), + (75133, 828, 2272, 'maybe', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mLDJpvJm', '6445440'), + (75134, 828, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mLDJpvJm', '6453951'), + (75135, 828, 2284, 'maybe', '2023-10-13 20:32:18', '2025-12-17 19:46:46', 'mLDJpvJm', '6460928'), + (75136, 828, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mLDJpvJm', '6461696'), + (75137, 828, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mLDJpvJm', '6462129'), + (75138, 828, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mLDJpvJm', '6463218'), + (75139, 828, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mLDJpvJm', '6472181'), + (75140, 828, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mLDJpvJm', '6482693'), + (75141, 828, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mLDJpvJm', '6484200'), + (75142, 828, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'mLDJpvJm', '6484680'), + (75143, 828, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mLDJpvJm', '6507741'), + (75144, 828, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mLDJpvJm', '6514659'), + (75145, 828, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mLDJpvJm', '6514660'), + (75146, 828, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mLDJpvJm', '6519103'), + (75147, 828, 2337, 'attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mLDJpvJm', '6535681'), + (75148, 828, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mLDJpvJm', '6584747'), + (75149, 828, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mLDJpvJm', '6587097'), + (75150, 828, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mLDJpvJm', '6609022'), + (75151, 828, 2371, 'maybe', '2023-12-15 03:22:24', '2025-12-17 19:46:36', 'mLDJpvJm', '6624495'), + (75152, 828, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mLDJpvJm', '6632757'), + (75153, 828, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mLDJpvJm', '6644187'), + (75154, 828, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mLDJpvJm', '6648951'), + (75155, 828, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mLDJpvJm', '6648952'), + (75156, 828, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mLDJpvJm', '6655401'), + (75157, 828, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mLDJpvJm', '6661585'), + (75158, 828, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mLDJpvJm', '6661588'), + (75159, 828, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mLDJpvJm', '6661589'), + (75160, 828, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mLDJpvJm', '6699906'), + (75161, 828, 2409, 'attending', '2024-02-03 01:57:48', '2025-12-17 19:46:41', 'mLDJpvJm', '6699909'), + (75162, 828, 2411, 'maybe', '2024-02-16 00:53:21', '2025-12-17 19:46:42', 'mLDJpvJm', '6699913'), + (75163, 828, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mLDJpvJm', '6701109'), + (75164, 828, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'mLDJpvJm', '6704561'), + (75165, 828, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mLDJpvJm', '6705219'), + (75166, 828, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'mLDJpvJm', '6708410'), + (75167, 828, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mLDJpvJm', '6710153'), + (75168, 828, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mLDJpvJm', '6711552'), + (75169, 828, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mLDJpvJm', '6711553'), + (75170, 828, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mLDJpvJm', '6722688'), + (75171, 828, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mLDJpvJm', '6730620'), + (75172, 828, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mLDJpvJm', '6730642'), + (75173, 828, 2445, 'maybe', '2024-02-16 00:53:08', '2025-12-17 19:46:41', 'mLDJpvJm', '6734368'), + (75174, 828, 2446, 'maybe', '2024-02-29 14:36:18', '2025-12-17 19:46:43', 'mLDJpvJm', '6734369'), + (75175, 828, 2447, 'maybe', '2024-03-15 00:22:34', '2025-12-17 19:46:32', 'mLDJpvJm', '6734370'), + (75176, 828, 2448, 'attending', '2024-03-27 18:12:28', '2025-12-17 19:46:33', 'mLDJpvJm', '6734371'), + (75177, 828, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mLDJpvJm', '6740364'), + (75178, 828, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mLDJpvJm', '6743829'), + (75179, 828, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mLDJpvJm', '7030380'), + (75180, 828, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mLDJpvJm', '7033677'), + (75181, 828, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mLDJpvJm', '7035415'), + (75182, 828, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mLDJpvJm', '7044715'), + (75183, 828, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mLDJpvJm', '7050318'), + (75184, 828, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mLDJpvJm', '7050319'), + (75185, 828, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mLDJpvJm', '7050322'), + (75186, 828, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mLDJpvJm', '7057804'), + (75187, 828, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mLDJpvJm', '7072824'), + (75188, 828, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mLDJpvJm', '7074348'), + (75189, 828, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mLDJpvJm', '7074364'), + (75190, 828, 2527, 'not_attending', '2024-06-24 15:17:28', '2025-12-17 19:46:29', 'mLDJpvJm', '7074367'), + (75191, 828, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mLDJpvJm', '7089267'), + (75192, 828, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mLDJpvJm', '7098747'), + (75193, 828, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mLDJpvJm', '7113468'), + (75194, 828, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mLDJpvJm', '7114856'), + (75195, 828, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mLDJpvJm', '7114951'), + (75196, 828, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mLDJpvJm', '7114955'), + (75197, 828, 2557, 'maybe', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mLDJpvJm', '7114956'), + (75198, 828, 2558, 'maybe', '2024-04-30 19:15:13', '2025-12-17 19:46:35', 'mLDJpvJm', '7114957'), + (75199, 828, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mLDJpvJm', '7153615'), + (75200, 828, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mLDJpvJm', '7159484'), + (75201, 828, 2575, 'maybe', '2024-04-12 01:09:30', '2025-12-17 19:46:33', 'mLDJpvJm', '7164534'), + (75202, 828, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mLDJpvJm', '7178446'), + (75203, 828, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mLDJpvJm', '7220467'), + (75204, 828, 2603, 'maybe', '2024-05-14 22:51:06', '2025-12-17 19:46:35', 'mLDJpvJm', '7225669'), + (75205, 828, 2604, 'attending', '2024-05-25 15:45:45', '2025-12-17 19:46:36', 'mLDJpvJm', '7225670'), + (75206, 828, 2607, 'attending', '2024-04-30 19:14:48', '2025-12-17 19:46:35', 'mLDJpvJm', '7240136'), + (75207, 828, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mLDJpvJm', '7240354'), + (75208, 828, 2616, 'attending', '2024-05-06 15:23:15', '2025-12-17 19:46:35', 'mLDJpvJm', '7250296'), + (75209, 828, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mLDJpvJm', '7251633'), + (75210, 828, 2626, 'not_attending', '2024-05-17 22:40:45', '2025-12-17 19:46:35', 'mLDJpvJm', '7264723'), + (75211, 828, 2627, 'attending', '2024-05-21 19:09:18', '2025-12-17 19:46:35', 'mLDJpvJm', '7264724'), + (75212, 828, 2628, 'attending', '2024-05-30 21:05:09', '2025-12-17 19:46:36', 'mLDJpvJm', '7264725'), + (75213, 828, 2650, 'attending', '2024-05-24 17:29:03', '2025-12-17 19:46:35', 'mLDJpvJm', '7288199'), + (75214, 828, 2651, 'maybe', '2024-05-24 17:28:41', '2025-12-17 19:46:35', 'mLDJpvJm', '7288200'), + (75215, 828, 2652, 'not_attending', '2024-05-30 21:04:57', '2025-12-17 19:46:36', 'mLDJpvJm', '7288339'), + (75216, 828, 2655, 'attending', '2024-05-26 22:55:02', '2025-12-17 19:46:35', 'mLDJpvJm', '7291225'), + (75217, 828, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mLDJpvJm', '7302674'), + (75218, 828, 2668, 'attending', '2024-06-05 18:48:40', '2025-12-17 19:46:36', 'mLDJpvJm', '7308821'), + (75219, 828, 2678, 'maybe', '2024-06-11 13:31:25', '2025-12-17 19:46:28', 'mLDJpvJm', '7319489'), + (75220, 828, 2686, 'attending', '2024-06-20 16:30:42', '2025-12-17 19:46:29', 'mLDJpvJm', '7323802'), + (75221, 828, 2688, 'attending', '2024-06-24 15:17:48', '2025-12-17 19:46:29', 'mLDJpvJm', '7324073'), + (75222, 828, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mLDJpvJm', '7324074'), + (75223, 828, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mLDJpvJm', '7324075'), + (75224, 828, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mLDJpvJm', '7324078'), + (75225, 828, 2695, 'not_attending', '2024-08-15 23:40:37', '2025-12-17 19:46:31', 'mLDJpvJm', '7324080'), + (75226, 828, 2696, 'attending', '2024-08-20 02:49:50', '2025-12-17 19:46:32', 'mLDJpvJm', '7324081'), + (75227, 828, 2697, 'attending', '2024-08-26 12:28:05', '2025-12-17 19:46:32', 'mLDJpvJm', '7324082'), + (75228, 828, 2700, 'attending', '2024-06-13 16:52:45', '2025-12-17 19:46:28', 'mLDJpvJm', '7324388'), + (75229, 828, 2706, 'maybe', '2024-06-19 17:17:18', '2025-12-17 19:46:28', 'mLDJpvJm', '7324947'), + (75230, 828, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mLDJpvJm', '7331457'), + (75231, 828, 2724, 'attending', '2024-06-21 16:36:30', '2025-12-17 19:46:29', 'mLDJpvJm', '7332562'), + (75232, 828, 2726, 'attending', '2024-06-19 19:17:45', '2025-12-17 19:46:29', 'mLDJpvJm', '7332853'), + (75233, 828, 2742, 'maybe', '2024-07-01 23:31:47', '2025-12-17 19:46:29', 'mLDJpvJm', '7345167'), + (75234, 828, 2745, 'maybe', '2024-07-24 22:43:23', '2025-12-17 19:46:30', 'mLDJpvJm', '7348712'), + (75235, 828, 2746, 'maybe', '2024-07-08 02:04:59', '2025-12-17 19:46:29', 'mLDJpvJm', '7348713'), + (75236, 828, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'mLDJpvJm', '7356752'), + (75237, 828, 2766, 'attending', '2024-07-26 11:17:56', '2025-12-17 19:46:30', 'mLDJpvJm', '7363643'), + (75238, 828, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mLDJpvJm', '7368606'), + (75239, 828, 2800, 'maybe', '2024-08-15 23:40:23', '2025-12-17 19:46:31', 'mLDJpvJm', '7397405'), + (75240, 828, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mLDJpvJm', '7397462'), + (75241, 828, 2806, 'attending', '2024-09-16 23:46:13', '2025-12-17 19:46:25', 'mLDJpvJm', '7404888'), + (75242, 828, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mLDJpvJm', '7424275'), + (75243, 828, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mLDJpvJm', '7424276'), + (75244, 828, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mLDJpvJm', '7432751'), + (75245, 828, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mLDJpvJm', '7432752'), + (75246, 828, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mLDJpvJm', '7432753'), + (75247, 828, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mLDJpvJm', '7432754'), + (75248, 828, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mLDJpvJm', '7432755'), + (75249, 828, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mLDJpvJm', '7432756'), + (75250, 828, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mLDJpvJm', '7432758'), + (75251, 828, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mLDJpvJm', '7432759'), + (75252, 828, 2832, 'attending', '2024-09-09 23:36:36', '2025-12-17 19:46:24', 'mLDJpvJm', '7433324'), + (75253, 828, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mLDJpvJm', '7433834'), + (75254, 828, 2838, 'maybe', '2024-09-26 14:09:32', '2025-12-17 19:46:25', 'mLDJpvJm', '7439182'), + (75255, 828, 2839, 'attending', '2024-09-23 19:18:45', '2025-12-17 19:46:25', 'mLDJpvJm', '7439262'), + (75256, 828, 2858, 'not_attending', '2024-10-15 22:00:20', '2025-12-17 19:46:26', 'mLDJpvJm', '7469388'), + (75257, 828, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mLDJpvJm', '7470197'), + (75258, 828, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mLDJpvJm', '7685613'), + (75259, 828, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mLDJpvJm', '7688194'), + (75260, 828, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mLDJpvJm', '7688196'), + (75261, 828, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mLDJpvJm', '7688289'), + (75262, 828, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mLDJpvJm', '7692763'), + (75263, 828, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mLDJpvJm', '7697552'), + (75264, 828, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mLDJpvJm', '7699878'), + (75265, 828, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mLDJpvJm', '7704043'), + (75266, 828, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mLDJpvJm', '7712467'), + (75267, 828, 2926, 'attending', '2024-12-05 07:30:24', '2025-12-17 19:46:21', 'mLDJpvJm', '7713585'), + (75268, 828, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mLDJpvJm', '7713586'), + (75269, 828, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mLDJpvJm', '7738518'), + (75270, 828, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mLDJpvJm', '7750636'), + (75271, 828, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mLDJpvJm', '7796540'), + (75272, 828, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mLDJpvJm', '7796541'), + (75273, 828, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mLDJpvJm', '7796542'), + (75274, 829, 2518, 'attending', '2024-07-25 20:48:03', '2025-12-17 19:46:30', 'Vmyl5z1d', '7074358'), + (75275, 829, 2691, 'not_attending', '2024-07-20 01:54:43', '2025-12-17 19:46:30', 'Vmyl5z1d', '7324076'), + (75276, 829, 2692, 'not_attending', '2024-07-27 21:57:02', '2025-12-17 19:46:30', 'Vmyl5z1d', '7324077'), + (75277, 829, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Vmyl5z1d', '7324078'), + (75278, 829, 2694, 'not_attending', '2024-08-09 23:44:47', '2025-12-17 19:46:31', 'Vmyl5z1d', '7324079'), + (75279, 829, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Vmyl5z1d', '7324082'), + (75280, 829, 2711, 'attending', '2024-07-19 23:18:22', '2025-12-17 19:46:30', 'Vmyl5z1d', '7326524'), + (75281, 829, 2763, 'not_attending', '2024-07-20 01:55:15', '2025-12-17 19:46:30', 'Vmyl5z1d', '7363594'), + (75282, 829, 2764, 'not_attending', '2024-07-27 21:58:10', '2025-12-17 19:46:30', 'Vmyl5z1d', '7363595'), + (75283, 829, 2766, 'not_attending', '2024-07-27 21:59:00', '2025-12-17 19:46:30', 'Vmyl5z1d', '7363643'), + (75284, 829, 2767, 'not_attending', '2024-07-20 01:55:23', '2025-12-17 19:46:30', 'Vmyl5z1d', '7364726'), + (75285, 829, 2768, 'not_attending', '2024-07-20 01:55:01', '2025-12-17 19:46:30', 'Vmyl5z1d', '7366031'), + (75286, 829, 2769, 'attending', '2024-07-19 21:03:36', '2025-12-17 19:46:30', 'Vmyl5z1d', '7366803'), + (75287, 829, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Vmyl5z1d', '7368606'), + (75288, 829, 2776, 'attending', '2024-07-25 20:47:03', '2025-12-17 19:46:30', 'Vmyl5z1d', '7370690'), + (75289, 829, 2781, 'not_attending', '2024-07-27 21:58:48', '2025-12-17 19:46:30', 'Vmyl5z1d', '7373194'), + (75290, 829, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Vmyl5z1d', '7397462'), + (75291, 829, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Vmyl5z1d', '7424275'), + (75292, 829, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Vmyl5z1d', '7424276'), + (75293, 829, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Vmyl5z1d', '7432751'), + (75294, 829, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Vmyl5z1d', '7432752'), + (75295, 829, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Vmyl5z1d', '7432753'), + (75296, 829, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432754'), + (75297, 829, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432755'), + (75298, 829, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432756'), + (75299, 829, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432758'), + (75300, 829, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Vmyl5z1d', '7432759'), + (75301, 829, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', 'Vmyl5z1d', '7433834'), + (75302, 829, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Vmyl5z1d', '7470197'), + (75303, 829, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Vmyl5z1d', '7685613'), + (75304, 829, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Vmyl5z1d', '7688194'), + (75305, 829, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Vmyl5z1d', '7688196'), + (75306, 829, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Vmyl5z1d', '7688289'), + (75307, 830, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AXZDx1Zd', '7113468'), + (75308, 830, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AXZDx1Zd', '7114856'), + (75309, 830, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'AXZDx1Zd', '7114951'), + (75310, 830, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'AXZDx1Zd', '7114956'), + (75311, 830, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AXZDx1Zd', '7114957'), + (75312, 830, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AXZDx1Zd', '7153615'), + (75313, 830, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AXZDx1Zd', '7159484'), + (75314, 830, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AXZDx1Zd', '7178446'), + (75315, 830, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AXZDx1Zd', '7220467'), + (75316, 830, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AXZDx1Zd', '7240354'), + (75317, 830, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AXZDx1Zd', '7251633'), + (75318, 830, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'AXZDx1Zd', '7265589'), + (75319, 831, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '54kwV8z4', '3236465'), + (75320, 831, 622, 'attending', '2021-03-14 00:00:00', '2025-12-17 19:47:51', '54kwV8z4', '3517816'), + (75321, 831, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '54kwV8z4', '3539916'), + (75322, 831, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '54kwV8z4', '3539918'), + (75323, 831, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '54kwV8z4', '3539919'), + (75324, 831, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '54kwV8z4', '3539920'), + (75325, 831, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '54kwV8z4', '3539921'), + (75326, 831, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '54kwV8z4', '3539927'), + (75327, 831, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '54kwV8z4', '3582734'), + (75328, 831, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '54kwV8z4', '3583262'), + (75329, 831, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '54kwV8z4', '3619523'), + (75330, 831, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '54kwV8z4', '3661369'), + (75331, 831, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '54kwV8z4', '3674262'), + (75332, 831, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '54kwV8z4', '3677402'), + (75333, 831, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '54kwV8z4', '3730212'), + (75334, 831, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '54kwV8z4', '3793156'), + (75335, 831, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '54kwV8z4', '3803310'), + (75336, 831, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '54kwV8z4', '3806392'), + (75337, 831, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '54kwV8z4', '6045684'), + (75338, 832, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', '8mRbE7Em', '3468125'), + (75339, 832, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '8mRbE7Em', '3470303'), + (75340, 832, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '8mRbE7Em', '3470305'), + (75341, 832, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '8mRbE7Em', '3470991'), + (75342, 832, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '8mRbE7Em', '3517815'), + (75343, 832, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '8mRbE7Em', '3517816'), + (75344, 832, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '8mRbE7Em', '3523941'), + (75345, 832, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '8mRbE7Em', '3533850'), + (75346, 832, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8mRbE7Em', '3536632'), + (75347, 832, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8mRbE7Em', '3536656'), + (75348, 832, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '8mRbE7Em', '3539916'), + (75349, 832, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '8mRbE7Em', '3539917'), + (75350, 832, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '8mRbE7Em', '3539918'), + (75351, 832, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '8mRbE7Em', '3539919'), + (75352, 832, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '8mRbE7Em', '3539920'), + (75353, 832, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '8mRbE7Em', '3539921'), + (75354, 832, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '8mRbE7Em', '3539922'), + (75355, 832, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8mRbE7Em', '3539923'), + (75356, 832, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8mRbE7Em', '3539927'), + (75357, 832, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8mRbE7Em', '3582734'), + (75358, 832, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8mRbE7Em', '3619523'), + (75359, 832, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRbE7Em', '6045684'), + (75360, 833, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dKRoqz54', '5247467'), + (75361, 833, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dKRoqz54', '5260800'), + (75362, 833, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dKRoqz54', '5269930'), + (75363, 833, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dKRoqz54', '5271448'), + (75364, 833, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dKRoqz54', '5271449'), + (75365, 833, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dKRoqz54', '5276469'), + (75366, 833, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dKRoqz54', '5278159'), + (75367, 833, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dKRoqz54', '5363695'), + (75368, 833, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dKRoqz54', '5365960'), + (75369, 833, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dKRoqz54', '5368973'), + (75370, 833, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dKRoqz54', '5378247'), + (75371, 833, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dKRoqz54', '5389605'), + (75372, 833, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dKRoqz54', '5397265'), + (75373, 833, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKRoqz54', '6045684'), + (75374, 834, 1504, 'attending', '2022-07-13 02:00:39', '2025-12-17 19:47:19', 'd8DojRNd', '5426882'), + (75375, 834, 1513, 'attending', '2022-07-14 00:00:27', '2025-12-17 19:47:19', 'd8DojRNd', '5441125'), + (75376, 834, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd8DojRNd', '5441126'), + (75377, 834, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd8DojRNd', '5441128'), + (75378, 834, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd8DojRNd', '5446643'), + (75379, 834, 1536, 'not_attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'd8DojRNd', '5449068'), + (75380, 834, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd8DojRNd', '5453325'), + (75381, 834, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd8DojRNd', '5454516'), + (75382, 834, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd8DojRNd', '5454605'), + (75383, 834, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd8DojRNd', '5455037'), + (75384, 834, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd8DojRNd', '5461278'), + (75385, 834, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd8DojRNd', '5469480'), + (75386, 834, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd8DojRNd', '5471073'), + (75387, 834, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'd8DojRNd', '5474663'), + (75388, 834, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd8DojRNd', '5482022'), + (75389, 834, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd8DojRNd', '5482793'), + (75390, 834, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd8DojRNd', '5488912'), + (75391, 834, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd8DojRNd', '5492192'), + (75392, 834, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd8DojRNd', '5493139'), + (75393, 834, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd8DojRNd', '5493200'), + (75394, 834, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd8DojRNd', '5502188'), + (75395, 834, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd8DojRNd', '5512862'), + (75396, 834, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd8DojRNd', '5513985'), + (75397, 834, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8DojRNd', '6045684'), + (75398, 835, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'xAY89qnm', '3149491'), + (75399, 835, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'xAY89qnm', '3149493'), + (75400, 835, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'xAY89qnm', '3236448'), + (75401, 835, 395, 'maybe', '2021-06-07 13:34:58', '2025-12-17 19:47:47', 'xAY89qnm', '3236450'), + (75402, 835, 793, 'attending', '2021-06-02 14:10:06', '2025-12-17 19:47:47', 'xAY89qnm', '3793537'), + (75403, 835, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xAY89qnm', '3974109'), + (75404, 835, 827, 'not_attending', '2021-06-06 14:57:23', '2025-12-17 19:47:47', 'xAY89qnm', '3975311'), + (75405, 835, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xAY89qnm', '3975312'), + (75406, 835, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xAY89qnm', '3994992'), + (75407, 835, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xAY89qnm', '4014338'), + (75408, 835, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xAY89qnm', '4021848'), + (75409, 835, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xAY89qnm', '4136744'), + (75410, 835, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'xAY89qnm', '4136937'), + (75411, 835, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xAY89qnm', '4136938'), + (75412, 835, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xAY89qnm', '4136947'), + (75413, 835, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xAY89qnm', '4225444'), + (75414, 835, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'xAY89qnm', '4229417'), + (75415, 835, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'xAY89qnm', '4229418'), + (75416, 835, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xAY89qnm', '4239259'), + (75417, 835, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xAY89qnm', '4250163'), + (75418, 835, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'xAY89qnm', '4420744'), + (75419, 835, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'xAY89qnm', '4420747'), + (75420, 835, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'xAY89qnm', '4568602'), + (75421, 835, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'xAY89qnm', '4572153'), + (75422, 835, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xAY89qnm', '4585962'), + (75423, 835, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'xAY89qnm', '4596356'), + (75424, 835, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xAY89qnm', '4598860'), + (75425, 835, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xAY89qnm', '4598861'), + (75426, 835, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'xAY89qnm', '4602797'), + (75427, 835, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'xAY89qnm', '4637896'), + (75428, 835, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xAY89qnm', '4642994'), + (75429, 835, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'xAY89qnm', '4642995'), + (75430, 835, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xAY89qnm', '4642996'), + (75431, 835, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'xAY89qnm', '4642997'), + (75432, 835, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'xAY89qnm', '4645687'), + (75433, 835, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xAY89qnm', '4645698'), + (75434, 835, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'xAY89qnm', '4645704'), + (75435, 835, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'xAY89qnm', '4645705'), + (75436, 835, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'xAY89qnm', '4668385'), + (75437, 835, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'xAY89qnm', '4694407'), + (75438, 835, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'xAY89qnm', '4736497'), + (75439, 835, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'xAY89qnm', '4736499'), + (75440, 835, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'xAY89qnm', '4736500'), + (75441, 835, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'xAY89qnm', '4736503'), + (75442, 835, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'xAY89qnm', '4736504'), + (75443, 835, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xAY89qnm', '4746789'), + (75444, 835, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xAY89qnm', '4753929'), + (75445, 835, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xAY89qnm', '5038850'), + (75446, 835, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xAY89qnm', '5045826'), + (75447, 835, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xAY89qnm', '5132533'), + (75448, 835, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'xAY89qnm', '5186582'), + (75449, 835, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'xAY89qnm', '5186583'), + (75450, 835, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'xAY89qnm', '5186585'), + (75451, 835, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'xAY89qnm', '5190437'), + (75452, 835, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'xAY89qnm', '5195095'), + (75453, 835, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xAY89qnm', '5215989'), + (75454, 835, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'xAY89qnm', '5223686'), + (75455, 835, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'xAY89qnm', '5247467'), + (75456, 835, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'xAY89qnm', '5260800'), + (75457, 835, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'xAY89qnm', '5269930'), + (75458, 835, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'xAY89qnm', '5271448'), + (75459, 835, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'xAY89qnm', '5271449'), + (75460, 835, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'xAY89qnm', '5278159'), + (75461, 835, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'xAY89qnm', '5363695'), + (75462, 835, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'xAY89qnm', '5365960'), + (75463, 835, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'xAY89qnm', '5378247'), + (75464, 835, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'xAY89qnm', '5389605'), + (75465, 835, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'xAY89qnm', '5397265'), + (75466, 835, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'xAY89qnm', '5404786'), + (75467, 835, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'xAY89qnm', '5405203'), + (75468, 835, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'xAY89qnm', '5412550'), + (75469, 835, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'xAY89qnm', '5415046'), + (75470, 835, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'xAY89qnm', '5422086'), + (75471, 835, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'xAY89qnm', '5422406'), + (75472, 835, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'xAY89qnm', '5424565'), + (75473, 835, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'xAY89qnm', '5426882'), + (75474, 835, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'xAY89qnm', '5441125'), + (75475, 835, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'xAY89qnm', '5441126'), + (75476, 835, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'xAY89qnm', '5441128'), + (75477, 835, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'xAY89qnm', '5441131'), + (75478, 835, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'xAY89qnm', '5441132'), + (75479, 835, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'xAY89qnm', '5453325'), + (75480, 835, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'xAY89qnm', '5454516'), + (75481, 835, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'xAY89qnm', '5454605'), + (75482, 835, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'xAY89qnm', '5455037'), + (75483, 835, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'xAY89qnm', '5461278'), + (75484, 835, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'xAY89qnm', '5469480'), + (75485, 835, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'xAY89qnm', '5474663'), + (75486, 835, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'xAY89qnm', '5482022'), + (75487, 835, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'xAY89qnm', '5488912'), + (75488, 835, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'xAY89qnm', '5492192'), + (75489, 835, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'xAY89qnm', '5493139'), + (75490, 835, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'xAY89qnm', '5493200'), + (75491, 835, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'xAY89qnm', '5502188'), + (75492, 835, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'xAY89qnm', '5505059'), + (75493, 835, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'xAY89qnm', '5509055'), + (75494, 835, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'xAY89qnm', '5512862'), + (75495, 835, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'xAY89qnm', '5513985'), + (75496, 835, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'xAY89qnm', '5519981'), + (75497, 835, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'xAY89qnm', '5522550'), + (75498, 835, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'xAY89qnm', '5534683'), + (75499, 835, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'xAY89qnm', '5537735'), + (75500, 835, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'xAY89qnm', '5540859'), + (75501, 835, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'xAY89qnm', '5546619'), + (75502, 835, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'xAY89qnm', '5557747'), + (75503, 835, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'xAY89qnm', '5560255'), + (75504, 835, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'xAY89qnm', '5562906'), + (75505, 835, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'xAY89qnm', '5600604'), + (75506, 835, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'xAY89qnm', '5605544'), + (75507, 835, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'xAY89qnm', '5630960'), + (75508, 835, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'xAY89qnm', '5630961'), + (75509, 835, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'xAY89qnm', '5630962'), + (75510, 835, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'xAY89qnm', '5630966'), + (75511, 835, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'xAY89qnm', '5630967'), + (75512, 835, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'xAY89qnm', '5630968'), + (75513, 835, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'xAY89qnm', '5635406'), + (75514, 835, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'xAY89qnm', '5638765'), + (75515, 835, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'xAY89qnm', '5640097'), + (75516, 835, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'xAY89qnm', '5640843'), + (75517, 835, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'xAY89qnm', '5641521'), + (75518, 835, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'xAY89qnm', '5642818'), + (75519, 835, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'xAY89qnm', '5652395'), + (75520, 835, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'xAY89qnm', '5670445'), + (75521, 835, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'xAY89qnm', '5671637'), + (75522, 835, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'xAY89qnm', '5672329'), + (75523, 835, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'xAY89qnm', '5674057'), + (75524, 835, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'xAY89qnm', '5674060'), + (75525, 835, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'xAY89qnm', '5677461'), + (75526, 835, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'xAY89qnm', '5698046'), + (75527, 835, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'xAY89qnm', '5699760'), + (75528, 835, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'xAY89qnm', '5741601'), + (75529, 835, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'xAY89qnm', '5763458'), + (75530, 835, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'xAY89qnm', '5774172'), + (75531, 835, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'xAY89qnm', '5818247'), + (75532, 835, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'xAY89qnm', '5819471'), + (75533, 835, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'xAY89qnm', '5827739'), + (75534, 835, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'xAY89qnm', '5844306'), + (75535, 835, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'xAY89qnm', '5850159'), + (75536, 835, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'xAY89qnm', '5858999'), + (75537, 835, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'xAY89qnm', '5871984'), + (75538, 835, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'xAY89qnm', '5876354'), + (75539, 835, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'xAY89qnm', '5880939'), + (75540, 835, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'xAY89qnm', '5880940'), + (75541, 835, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'xAY89qnm', '5880942'), + (75542, 835, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'xAY89qnm', '5880943'), + (75543, 835, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'xAY89qnm', '5887890'), + (75544, 835, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'xAY89qnm', '5888598'), + (75545, 835, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'xAY89qnm', '5893260'), + (75546, 835, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'xAY89qnm', '5899826'), + (75547, 835, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'xAY89qnm', '5900199'), + (75548, 835, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'xAY89qnm', '5900200'), + (75549, 835, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'xAY89qnm', '5900202'), + (75550, 835, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'xAY89qnm', '5900203'), + (75551, 835, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'xAY89qnm', '5901108'), + (75552, 835, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'xAY89qnm', '5901126'), + (75553, 835, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'xAY89qnm', '5901606'), + (75554, 835, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'xAY89qnm', '5909655'), + (75555, 835, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'xAY89qnm', '5910522'), + (75556, 835, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'xAY89qnm', '5910526'), + (75557, 835, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'xAY89qnm', '5910528'), + (75558, 835, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'xAY89qnm', '5916219'), + (75559, 835, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'xAY89qnm', '5936234'), + (75560, 835, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'xAY89qnm', '5958351'), + (75561, 835, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'xAY89qnm', '5959751'), + (75562, 835, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'xAY89qnm', '5959755'), + (75563, 835, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'xAY89qnm', '5960055'), + (75564, 835, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'xAY89qnm', '5961684'), + (75565, 835, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'xAY89qnm', '5962132'), + (75566, 835, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'xAY89qnm', '5962133'), + (75567, 835, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'xAY89qnm', '5962134'), + (75568, 835, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'xAY89qnm', '5962317'), + (75569, 835, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'xAY89qnm', '5962318'), + (75570, 835, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'xAY89qnm', '5965933'), + (75571, 835, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'xAY89qnm', '5967014'), + (75572, 835, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'xAY89qnm', '5972815'), + (75573, 835, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'xAY89qnm', '5974016'), + (75574, 835, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'xAY89qnm', '5981515'), + (75575, 835, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'xAY89qnm', '5993516'), + (75576, 835, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'xAY89qnm', '5998939'), + (75577, 835, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'xAY89qnm', '6028191'), + (75578, 835, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'xAY89qnm', '6040066'), + (75579, 835, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'xAY89qnm', '6042717'), + (75580, 835, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'xAY89qnm', '6044838'), + (75581, 835, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'xAY89qnm', '6044839'), + (75582, 835, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAY89qnm', '6045684'), + (75583, 835, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'xAY89qnm', '6050104'), + (75584, 835, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'xAY89qnm', '6053195'), + (75585, 835, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'xAY89qnm', '6053198'), + (75586, 835, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'xAY89qnm', '6056085'), + (75587, 835, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'xAY89qnm', '6056916'), + (75588, 835, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'xAY89qnm', '6059290'), + (75589, 835, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'xAY89qnm', '6060328'), + (75590, 835, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'xAY89qnm', '6061037'), + (75591, 835, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'xAY89qnm', '6061039'), + (75592, 835, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'xAY89qnm', '6067245'), + (75593, 835, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'xAY89qnm', '6068094'), + (75594, 835, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'xAY89qnm', '6068252'), + (75595, 835, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'xAY89qnm', '6068253'), + (75596, 835, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'xAY89qnm', '6068254'), + (75597, 835, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'xAY89qnm', '6068280'), + (75598, 835, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'xAY89qnm', '6069093'), + (75599, 835, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'xAY89qnm', '6072528'), + (75600, 835, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'xAY89qnm', '6079840'), + (75601, 835, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'xAY89qnm', '6083398'), + (75602, 835, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'xAY89qnm', '6093504'), + (75603, 835, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'xAY89qnm', '6097414'), + (75604, 835, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'xAY89qnm', '6097442'), + (75605, 835, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'xAY89qnm', '6097684'), + (75606, 835, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'xAY89qnm', '6098762'), + (75607, 835, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'xAY89qnm', '6101361'), + (75608, 835, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'xAY89qnm', '6101362'), + (75609, 835, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'xAY89qnm', '6107314'), + (75610, 835, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'xAY89qnm', '6120034'), + (75611, 835, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'xAY89qnm', '6136733'), + (75612, 835, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'xAY89qnm', '6137989'), + (75613, 835, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'xAY89qnm', '6150864'), + (75614, 835, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'xAY89qnm', '6155491'), + (75615, 835, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'xAY89qnm', '6164417'), + (75616, 835, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'xAY89qnm', '6166388'), + (75617, 835, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'xAY89qnm', '6176439'), + (75618, 835, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'xAY89qnm', '6182410'), + (75619, 835, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'xAY89qnm', '6185812'), + (75620, 835, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'xAY89qnm', '6187651'), + (75621, 835, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'xAY89qnm', '6187963'), + (75622, 835, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'xAY89qnm', '6187964'), + (75623, 835, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'xAY89qnm', '6187966'), + (75624, 835, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'xAY89qnm', '6187967'), + (75625, 835, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'xAY89qnm', '6187969'), + (75626, 835, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'xAY89qnm', '6334878'), + (75627, 835, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'xAY89qnm', '6337236'), + (75628, 835, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'xAY89qnm', '6337970'), + (75629, 835, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'xAY89qnm', '6338308'), + (75630, 835, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'xAY89qnm', '6341710'), + (75631, 835, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'xAY89qnm', '6342044'), + (75632, 835, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'xAY89qnm', '6342298'), + (75633, 835, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'xAY89qnm', '6343294'), + (75634, 835, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'xAY89qnm', '6347034'), + (75635, 835, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'xAY89qnm', '6347056'), + (75636, 835, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'xAY89qnm', '6353830'), + (75637, 835, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'xAY89qnm', '6353831'), + (75638, 835, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'xAY89qnm', '6357867'), + (75639, 835, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'xAY89qnm', '6358652'), + (75640, 835, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'xAY89qnm', '6361709'), + (75641, 835, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'xAY89qnm', '6361710'), + (75642, 835, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'xAY89qnm', '6361711'), + (75643, 835, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'xAY89qnm', '6361712'), + (75644, 835, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'xAY89qnm', '6361713'), + (75645, 835, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'xAY89qnm', '6382573'), + (75646, 835, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'xAY89qnm', '6388604'), + (75647, 835, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'xAY89qnm', '6394629'), + (75648, 835, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'xAY89qnm', '6394631'), + (75649, 835, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'xAY89qnm', '6440863'), + (75650, 835, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'xAY89qnm', '6445440'), + (75651, 835, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'xAY89qnm', '6453951'), + (75652, 835, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'xAY89qnm', '6461696'), + (75653, 835, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'xAY89qnm', '6462129'), + (75654, 835, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'xAY89qnm', '6463218'), + (75655, 835, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'xAY89qnm', '6472181'), + (75656, 835, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'xAY89qnm', '6482693'), + (75657, 835, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'xAY89qnm', '6484200'), + (75658, 835, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'xAY89qnm', '6484680'), + (75659, 835, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'xAY89qnm', '6507741'), + (75660, 835, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'xAY89qnm', '6514659'), + (75661, 835, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'xAY89qnm', '6514660'), + (75662, 835, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'xAY89qnm', '6519103'), + (75663, 835, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'xAY89qnm', '6535681'), + (75664, 835, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'xAY89qnm', '6584747'), + (75665, 835, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'xAY89qnm', '6587097'), + (75666, 835, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'xAY89qnm', '6609022'), + (75667, 835, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'xAY89qnm', '6632757'), + (75668, 835, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'xAY89qnm', '6644187'), + (75669, 835, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'xAY89qnm', '6648951'), + (75670, 835, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'xAY89qnm', '6648952'), + (75671, 835, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'xAY89qnm', '6655401'), + (75672, 835, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'xAY89qnm', '6661585'), + (75673, 835, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'xAY89qnm', '6661588'), + (75674, 835, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'xAY89qnm', '6661589'), + (75675, 835, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'xAY89qnm', '6699906'), + (75676, 835, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'xAY89qnm', '6699913'), + (75677, 835, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'xAY89qnm', '6701109'), + (75678, 835, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'xAY89qnm', '6705219'), + (75679, 835, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'xAY89qnm', '6710153'), + (75680, 835, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'xAY89qnm', '6711552'), + (75681, 835, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'xAY89qnm', '6711553'), + (75682, 835, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'xAY89qnm', '6722688'), + (75683, 835, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'xAY89qnm', '6730620'), + (75684, 835, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'xAY89qnm', '6740364'), + (75685, 835, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'xAY89qnm', '6743829'), + (75686, 835, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'xAY89qnm', '7030380'), + (75687, 835, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'xAY89qnm', '7033677'), + (75688, 835, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'xAY89qnm', '7044715'), + (75689, 835, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'xAY89qnm', '7050318'), + (75690, 835, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'xAY89qnm', '7050319'), + (75691, 835, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'xAY89qnm', '7050322'), + (75692, 835, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'xAY89qnm', '7057804'), + (75693, 835, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'xAY89qnm', '7072824'), + (75694, 835, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'xAY89qnm', '7074348'), + (75695, 835, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'xAY89qnm', '7074364'), + (75696, 835, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'xAY89qnm', '7089267'), + (75697, 835, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'xAY89qnm', '7098747'), + (75698, 835, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'xAY89qnm', '7113468'), + (75699, 835, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'xAY89qnm', '7114856'), + (75700, 835, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'xAY89qnm', '7114951'), + (75701, 835, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'xAY89qnm', '7114955'), + (75702, 835, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'xAY89qnm', '7114956'), + (75703, 835, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'xAY89qnm', '7114957'), + (75704, 835, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'xAY89qnm', '7159484'), + (75705, 835, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'xAY89qnm', '7178446'), + (75706, 835, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'xAY89qnm', '7220467'), + (75707, 835, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'xAY89qnm', '7240354'), + (75708, 835, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'xAY89qnm', '7251633'), + (75709, 835, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'xAY89qnm', '7324073'), + (75710, 835, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'xAY89qnm', '7324074'), + (75711, 835, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'xAY89qnm', '7324075'), + (75712, 835, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'xAY89qnm', '7324078'), + (75713, 835, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'xAY89qnm', '7324082'), + (75714, 835, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'xAY89qnm', '7331457'), + (75715, 835, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'xAY89qnm', '7363643'), + (75716, 835, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'xAY89qnm', '7368606'), + (75717, 835, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'xAY89qnm', '7397462'), + (75718, 835, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'xAY89qnm', '7424275'), + (75719, 835, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'xAY89qnm', '7432751'), + (75720, 835, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'xAY89qnm', '7432752'), + (75721, 835, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'xAY89qnm', '7432753'), + (75722, 835, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'xAY89qnm', '7432754'), + (75723, 835, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'xAY89qnm', '7432755'), + (75724, 835, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'xAY89qnm', '7432756'), + (75725, 835, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'xAY89qnm', '7432758'), + (75726, 835, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'xAY89qnm', '7432759'), + (75727, 835, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'xAY89qnm', '7433834'), + (75728, 835, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'xAY89qnm', '7470197'), + (75729, 835, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'xAY89qnm', '7685613'), + (75730, 835, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'xAY89qnm', '7688194'), + (75731, 835, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'xAY89qnm', '7688196'), + (75732, 835, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'xAY89qnm', '7688289'), + (75733, 835, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'xAY89qnm', '7692763'), + (75734, 835, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'xAY89qnm', '7697552'), + (75735, 835, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'xAY89qnm', '7699878'), + (75736, 835, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'xAY89qnm', '7704043'), + (75737, 835, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'xAY89qnm', '7712467'), + (75738, 835, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'xAY89qnm', '7713585'), + (75739, 835, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'xAY89qnm', '7713586'), + (75740, 835, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'xAY89qnm', '7738518'), + (75741, 835, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'xAY89qnm', '7750636'), + (75742, 835, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'xAY89qnm', '7796540'), + (75743, 835, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'xAY89qnm', '7796541'), + (75744, 835, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'xAY89qnm', '7796542'), + (75745, 835, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'xAY89qnm', '7825913'), + (75746, 835, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'xAY89qnm', '7826209'), + (75747, 835, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'xAY89qnm', '7834742'), + (75748, 835, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'xAY89qnm', '7842108'), + (75749, 835, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'xAY89qnm', '7842902'), + (75750, 835, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'xAY89qnm', '7842903'), + (75751, 835, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'xAY89qnm', '7842904'), + (75752, 835, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'xAY89qnm', '7842905'), + (75753, 835, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'xAY89qnm', '7855719'), + (75754, 835, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'xAY89qnm', '7860683'), + (75755, 835, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'xAY89qnm', '7860684'), + (75756, 835, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'xAY89qnm', '7866095'), + (75757, 835, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'xAY89qnm', '7869170'), + (75758, 835, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'xAY89qnm', '7869188'), + (75759, 835, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'xAY89qnm', '7869201'), + (75760, 835, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'xAY89qnm', '7877465'), + (75761, 835, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'xAY89qnm', '7888250'), + (75762, 835, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'xAY89qnm', '7904777'), + (75763, 835, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'xAY89qnm', '8349164'), + (75764, 835, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'xAY89qnm', '8349545'), + (75765, 835, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'xAY89qnm', '8368028'), + (75766, 835, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'xAY89qnm', '8368029'), + (75767, 835, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'xAY89qnm', '8388462'), + (75768, 835, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'xAY89qnm', '8400273'), + (75769, 835, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'xAY89qnm', '8400275'), + (75770, 835, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'xAY89qnm', '8400276'), + (75771, 835, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'xAY89qnm', '8404977'), + (75772, 835, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'xAY89qnm', '8430783'), + (75773, 835, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'xAY89qnm', '8430784'), + (75774, 835, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'xAY89qnm', '8430799'), + (75775, 835, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'xAY89qnm', '8430800'), + (75776, 835, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'xAY89qnm', '8430801'), + (75777, 835, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'xAY89qnm', '8438709'), + (75778, 835, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'xAY89qnm', '8457738'), + (75779, 835, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'xAY89qnm', '8459566'), + (75780, 835, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'xAY89qnm', '8459567'), + (75781, 835, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'xAY89qnm', '8461032'), + (75782, 835, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'xAY89qnm', '8477877'), + (75783, 835, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'xAY89qnm', '8485688'), + (75784, 835, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'xAY89qnm', '8490587'), + (75785, 835, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'xAY89qnm', '8493552'), + (75786, 835, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'xAY89qnm', '8493553'), + (75787, 835, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'xAY89qnm', '8493554'), + (75788, 835, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'xAY89qnm', '8493555'), + (75789, 835, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'xAY89qnm', '8493556'), + (75790, 835, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'xAY89qnm', '8493557'), + (75791, 835, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'xAY89qnm', '8493558'), + (75792, 835, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'xAY89qnm', '8493559'), + (75793, 835, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'xAY89qnm', '8493560'), + (75794, 835, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'xAY89qnm', '8493561'), + (75795, 835, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'xAY89qnm', '8493572'), + (75796, 835, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'xAY89qnm', '8540725'), + (75797, 835, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'xAY89qnm', '8555421'), + (75798, 836, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'NmLq3RgA', '3149489'), + (75799, 836, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'NmLq3RgA', '3236450'), + (75800, 836, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'NmLq3RgA', '3236452'), + (75801, 836, 646, 'not_attending', '2021-05-13 05:48:59', '2025-12-17 19:47:46', 'NmLq3RgA', '3539921'), + (75802, 836, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'NmLq3RgA', '3539922'), + (75803, 836, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'NmLq3RgA', '3539923'), + (75804, 836, 806, 'attending', '2021-05-15 05:17:28', '2025-12-17 19:47:46', 'NmLq3RgA', '3806392'), + (75805, 836, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'NmLq3RgA', '3963335'), + (75806, 836, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLq3RgA', '3975311'), + (75807, 836, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLq3RgA', '3994992'), + (75808, 836, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLq3RgA', '6045684'), + (75809, 837, 1274, 'not_attending', '2022-04-02 15:58:37', '2025-12-17 19:47:26', 'dKRvyp54', '5186585'), + (75810, 837, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dKRvyp54', '5195095'), + (75811, 837, 1305, 'maybe', '2022-04-05 19:20:14', '2025-12-17 19:47:27', 'dKRvyp54', '5223673'), + (75812, 837, 1306, 'attending', '2022-04-05 16:36:42', '2025-12-17 19:47:26', 'dKRvyp54', '5223682'), + (75813, 837, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dKRvyp54', '5223686'), + (75814, 837, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dKRvyp54', '5227432'), + (75815, 837, 1316, 'attending', '2022-04-14 02:39:47', '2025-12-17 19:47:27', 'dKRvyp54', '5237536'), + (75816, 837, 1332, 'attending', '2022-04-14 02:42:38', '2025-12-17 19:47:27', 'dKRvyp54', '5243274'), + (75817, 837, 1337, 'attending', '2022-04-18 14:54:20', '2025-12-17 19:47:27', 'dKRvyp54', '5245036'), + (75818, 837, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dKRvyp54', '5247467'), + (75819, 837, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dKRvyp54', '5260800'), + (75820, 837, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dKRvyp54', '5269930'), + (75821, 837, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dKRvyp54', '5271448'), + (75822, 837, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dKRvyp54', '5271449'), + (75823, 837, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dKRvyp54', '5276469'), + (75824, 837, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dKRvyp54', '5278159'), + (75825, 837, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dKRvyp54', '5363695'), + (75826, 837, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dKRvyp54', '5365960'), + (75827, 837, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dKRvyp54', '5368973'), + (75828, 837, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dKRvyp54', '5378247'), + (75829, 837, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dKRvyp54', '5389605'), + (75830, 837, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dKRvyp54', '5397265'), + (75831, 837, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dKRvyp54', '5403967'), + (75832, 837, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dKRvyp54', '5404786'), + (75833, 837, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dKRvyp54', '5405203'), + (75834, 837, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dKRvyp54', '5408794'), + (75835, 837, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dKRvyp54', '5411699'), + (75836, 837, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dKRvyp54', '5412550'), + (75837, 837, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dKRvyp54', '5415046'), + (75838, 837, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dKRvyp54', '5422086'), + (75839, 837, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dKRvyp54', '5422406'), + (75840, 837, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dKRvyp54', '5424565'), + (75841, 837, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dKRvyp54', '5426882'), + (75842, 837, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dKRvyp54', '5427083'), + (75843, 837, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dKRvyp54', '5441125'), + (75844, 837, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dKRvyp54', '5441126'), + (75845, 837, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dKRvyp54', '5441128'), + (75846, 837, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dKRvyp54', '5446643'), + (75847, 837, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dKRvyp54', '5453325'), + (75848, 837, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dKRvyp54', '5454516'), + (75849, 837, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dKRvyp54', '5454605'), + (75850, 837, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dKRvyp54', '5455037'), + (75851, 837, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dKRvyp54', '5461278'), + (75852, 837, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dKRvyp54', '5469480'), + (75853, 837, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dKRvyp54', '5471073'), + (75854, 837, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dKRvyp54', '5474663'), + (75855, 837, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dKRvyp54', '5482022'), + (75856, 837, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dKRvyp54', '5482793'), + (75857, 837, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dKRvyp54', '5488912'), + (75858, 837, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dKRvyp54', '5492192'), + (75859, 837, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dKRvyp54', '5493139'), + (75860, 837, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dKRvyp54', '5493200'), + (75861, 837, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dKRvyp54', '5502188'), + (75862, 837, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dKRvyp54', '5512862'), + (75863, 837, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dKRvyp54', '5513985'), + (75864, 837, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKRvyp54', '6045684'), + (75865, 838, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'lAekNrPd', '3149489'), + (75866, 838, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'lAekNrPd', '3149491'), + (75867, 838, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'lAekNrPd', '3236450'), + (75868, 838, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'lAekNrPd', '3236452'), + (75869, 838, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'lAekNrPd', '3236465'), + (75870, 838, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'lAekNrPd', '3539918'), + (75871, 838, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'lAekNrPd', '3539919'), + (75872, 838, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'lAekNrPd', '3539920'), + (75873, 838, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'lAekNrPd', '3539921'), + (75874, 838, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'lAekNrPd', '3539922'), + (75875, 838, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'lAekNrPd', '3539923'), + (75876, 838, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'lAekNrPd', '3583262'), + (75877, 838, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'lAekNrPd', '3730212'), + (75878, 838, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'lAekNrPd', '3793156'), + (75879, 838, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'lAekNrPd', '3803310'), + (75880, 838, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'lAekNrPd', '3806392'), + (75881, 838, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'lAekNrPd', '3963335'), + (75882, 838, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'lAekNrPd', '3975311'), + (75883, 838, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'lAekNrPd', '3975312'), + (75884, 838, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'lAekNrPd', '3994992'), + (75885, 838, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'lAekNrPd', '4014338'), + (75886, 838, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAekNrPd', '6045684'), + (75887, 839, 1856, 'maybe', '2023-01-17 23:45:31', '2025-12-17 19:47:05', 'AY2jJ9W4', '5873970'), + (75888, 839, 1857, 'maybe', '2023-01-18 19:27:35', '2025-12-17 19:47:05', 'AY2jJ9W4', '5873973'), + (75889, 839, 1862, 'maybe', '2023-01-30 22:14:37', '2025-12-17 19:47:06', 'AY2jJ9W4', '5877254'), + (75890, 839, 1863, 'attending', '2023-01-23 23:23:55', '2025-12-17 19:47:06', 'AY2jJ9W4', '5877255'), + (75891, 839, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'AY2jJ9W4', '5880939'), + (75892, 839, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'AY2jJ9W4', '5880940'), + (75893, 839, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'AY2jJ9W4', '5880942'), + (75894, 839, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AY2jJ9W4', '5887890'), + (75895, 839, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AY2jJ9W4', '5888598'), + (75896, 839, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AY2jJ9W4', '5893260'), + (75897, 839, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AY2jJ9W4', '5899826'), + (75898, 839, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'AY2jJ9W4', '5900199'), + (75899, 839, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'AY2jJ9W4', '5900200'), + (75900, 839, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901055'), + (75901, 839, 1894, 'maybe', '2023-02-02 03:20:47', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901100'), + (75902, 839, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901108'), + (75903, 839, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901126'), + (75904, 839, 1901, 'maybe', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'AY2jJ9W4', '5901606'), + (75905, 839, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AY2jJ9W4', '5909655'), + (75906, 839, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AY2jJ9W4', '5910522'), + (75907, 839, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AY2jJ9W4', '5910526'), + (75908, 839, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AY2jJ9W4', '5910528'), + (75909, 839, 1920, 'attending', '2023-02-10 12:35:08', '2025-12-17 19:47:07', 'AY2jJ9W4', '5914091'), + (75910, 839, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'AY2jJ9W4', '5916219'), + (75911, 839, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AY2jJ9W4', '5936234'), + (75912, 839, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'AY2jJ9W4', '5936691'), + (75913, 839, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AY2jJ9W4', '5958351'), + (75914, 839, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AY2jJ9W4', '5959751'), + (75915, 839, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AY2jJ9W4', '5959755'), + (75916, 839, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AY2jJ9W4', '5960055'), + (75917, 839, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AY2jJ9W4', '5961684'), + (75918, 839, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'AY2jJ9W4', '5962132'), + (75919, 839, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'AY2jJ9W4', '5962133'), + (75920, 839, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AY2jJ9W4', '5962134'), + (75921, 839, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AY2jJ9W4', '5962317'), + (75922, 839, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AY2jJ9W4', '5962318'), + (75923, 839, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AY2jJ9W4', '6045684'), + (75924, 840, 1419, 'attending', '2022-06-06 23:46:45', '2025-12-17 19:47:30', 'AgxWpzq4', '5373081'), + (75925, 840, 1423, 'attending', '2022-06-08 18:24:22', '2025-12-17 19:47:17', 'AgxWpzq4', '5375727'), + (75926, 840, 1428, 'attending', '2022-06-08 06:24:00', '2025-12-17 19:47:30', 'AgxWpzq4', '5378247'), + (75927, 840, 1430, 'attending', '2022-06-08 06:23:53', '2025-12-17 19:47:30', 'AgxWpzq4', '5389402'), + (75928, 840, 1431, 'attending', '2022-06-08 06:24:04', '2025-12-17 19:47:30', 'AgxWpzq4', '5389605'), + (75929, 840, 1442, 'attending', '2022-06-08 18:24:24', '2025-12-17 19:47:17', 'AgxWpzq4', '5397265'), + (75930, 840, 1446, 'attending', '2022-06-08 06:23:50', '2025-12-17 19:47:30', 'AgxWpzq4', '5399721'), + (75931, 840, 1448, 'attending', '2022-06-07 02:24:50', '2025-12-17 19:47:30', 'AgxWpzq4', '5401479'), + (75932, 840, 1449, 'not_attending', '2022-06-13 22:19:10', '2025-12-17 19:47:31', 'AgxWpzq4', '5403335'), + (75933, 840, 1451, 'attending', '2022-06-09 19:05:54', '2025-12-17 19:47:17', 'AgxWpzq4', '5403967'), + (75934, 840, 1454, 'not_attending', '2022-06-13 02:27:15', '2025-12-17 19:47:31', 'AgxWpzq4', '5404771'), + (75935, 840, 1455, 'not_attending', '2022-06-13 22:18:34', '2025-12-17 19:47:31', 'AgxWpzq4', '5404772'), + (75936, 840, 1456, 'attending', '2022-06-13 03:36:44', '2025-12-17 19:47:17', 'AgxWpzq4', '5404779'), + (75937, 840, 1457, 'not_attending', '2022-06-12 05:26:35', '2025-12-17 19:47:31', 'AgxWpzq4', '5404780'), + (75938, 840, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgxWpzq4', '5404786'), + (75939, 840, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgxWpzq4', '5405203'), + (75940, 840, 1463, 'attending', '2022-06-13 03:37:59', '2025-12-17 19:47:31', 'AgxWpzq4', '5405208'), + (75941, 840, 1464, 'attending', '2022-06-10 21:47:43', '2025-12-17 19:47:30', 'AgxWpzq4', '5405212'), + (75942, 840, 1473, 'attending', '2022-06-13 22:19:18', '2025-12-17 19:47:31', 'AgxWpzq4', '5407267'), + (75943, 840, 1478, 'not_attending', '2022-06-24 19:34:42', '2025-12-17 19:47:19', 'AgxWpzq4', '5408794'), + (75944, 840, 1480, 'attending', '2022-06-20 01:38:48', '2025-12-17 19:47:19', 'AgxWpzq4', '5411699'), + (75945, 840, 1481, 'attending', '2022-06-20 01:38:26', '2025-12-17 19:47:17', 'AgxWpzq4', '5412237'), + (75946, 840, 1482, 'not_attending', '2022-06-25 22:21:03', '2025-12-17 19:47:19', 'AgxWpzq4', '5412550'), + (75947, 840, 1484, 'maybe', '2022-06-22 16:30:32', '2025-12-17 19:47:17', 'AgxWpzq4', '5415046'), + (75948, 840, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgxWpzq4', '5422086'), + (75949, 840, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgxWpzq4', '5422406'), + (75950, 840, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgxWpzq4', '5424565'), + (75951, 840, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgxWpzq4', '5426882'), + (75952, 840, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgxWpzq4', '5427083'), + (75953, 840, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'AgxWpzq4', '5441125'), + (75954, 840, 1514, 'attending', '2022-07-21 17:55:44', '2025-12-17 19:47:20', 'AgxWpzq4', '5441126'), + (75955, 840, 1515, 'attending', '2022-08-03 18:35:57', '2025-12-17 19:47:21', 'AgxWpzq4', '5441128'), + (75956, 840, 1516, 'attending', '2022-08-18 02:13:27', '2025-12-17 19:47:23', 'AgxWpzq4', '5441129'), + (75957, 840, 1517, 'attending', '2022-08-23 15:06:25', '2025-12-17 19:47:23', 'AgxWpzq4', '5441130'), + (75958, 840, 1518, 'attending', '2022-08-29 00:25:45', '2025-12-17 19:47:24', 'AgxWpzq4', '5441131'), + (75959, 840, 1519, 'attending', '2022-08-29 00:26:53', '2025-12-17 19:47:24', 'AgxWpzq4', '5441132'), + (75960, 840, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgxWpzq4', '5446643'), + (75961, 840, 1538, 'attending', '2022-07-30 19:38:44', '2025-12-17 19:47:21', 'AgxWpzq4', '5449565'), + (75962, 840, 1539, 'attending', '2022-07-21 17:56:26', '2025-12-17 19:47:21', 'AgxWpzq4', '5449671'), + (75963, 840, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgxWpzq4', '5453325'), + (75964, 840, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgxWpzq4', '5454516'), + (75965, 840, 1544, 'attending', '2022-09-11 06:48:29', '2025-12-17 19:47:11', 'AgxWpzq4', '5454517'), + (75966, 840, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgxWpzq4', '5454605'), + (75967, 840, 1547, 'attending', '2022-07-26 21:46:08', '2025-12-17 19:47:20', 'AgxWpzq4', '5454608'), + (75968, 840, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgxWpzq4', '5455037'), + (75969, 840, 1557, 'attending', '2022-08-03 17:53:58', '2025-12-17 19:47:21', 'AgxWpzq4', '5458729'), + (75970, 840, 1558, 'attending', '2022-08-29 00:27:03', '2025-12-17 19:47:10', 'AgxWpzq4', '5458730'), + (75971, 840, 1559, 'attending', '2022-09-11 06:48:36', '2025-12-17 19:47:11', 'AgxWpzq4', '5458731'), + (75972, 840, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgxWpzq4', '5461278'), + (75973, 840, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgxWpzq4', '5469480'), + (75974, 840, 1565, 'attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgxWpzq4', '5471073'), + (75975, 840, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'AgxWpzq4', '5474663'), + (75976, 840, 1569, 'attending', '2022-08-03 18:35:36', '2025-12-17 19:47:21', 'AgxWpzq4', '5481507'), + (75977, 840, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgxWpzq4', '5482022'), + (75978, 840, 1573, 'attending', '2022-08-03 18:36:10', '2025-12-17 19:47:22', 'AgxWpzq4', '5482152'), + (75979, 840, 1575, 'attending', '2022-08-23 15:06:19', '2025-12-17 19:47:23', 'AgxWpzq4', '5482250'), + (75980, 840, 1577, 'attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgxWpzq4', '5482793'), + (75981, 840, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgxWpzq4', '5488912'), + (75982, 840, 1581, 'attending', '2022-08-11 07:12:38', '2025-12-17 19:47:22', 'AgxWpzq4', '5490302'), + (75983, 840, 1586, 'maybe', '2022-08-11 03:28:17', '2025-12-17 19:47:23', 'AgxWpzq4', '5492019'), + (75984, 840, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgxWpzq4', '5492192'), + (75985, 840, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgxWpzq4', '5493139'), + (75986, 840, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgxWpzq4', '5493200'), + (75987, 840, 1592, 'attending', '2022-08-09 02:32:20', '2025-12-17 19:47:22', 'AgxWpzq4', '5494031'), + (75988, 840, 1595, 'attending', '2022-08-12 19:32:17', '2025-12-17 19:47:22', 'AgxWpzq4', '5495736'), + (75989, 840, 1597, 'attending', '2022-08-13 20:56:38', '2025-12-17 19:47:22', 'AgxWpzq4', '5496566'), + (75990, 840, 1603, 'attending', '2022-08-12 03:28:51', '2025-12-17 19:47:23', 'AgxWpzq4', '5497895'), + (75991, 840, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgxWpzq4', '5502188'), + (75992, 840, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AgxWpzq4', '5505059'), + (75993, 840, 1612, 'maybe', '2022-09-20 23:26:42', '2025-12-17 19:47:12', 'AgxWpzq4', '5507653'), + (75994, 840, 1615, 'attending', '2022-08-29 00:25:09', '2025-12-17 19:47:23', 'AgxWpzq4', '5509055'), + (75995, 840, 1617, 'attending', '2022-08-29 00:26:51', '2025-12-17 19:47:24', 'AgxWpzq4', '5512003'), + (75996, 840, 1618, 'attending', '2022-08-28 06:49:04', '2025-12-17 19:47:23', 'AgxWpzq4', '5512005'), + (75997, 840, 1619, 'attending', '2022-08-23 07:08:34', '2025-12-17 19:47:23', 'AgxWpzq4', '5512862'), + (75998, 840, 1620, 'attending', '2022-08-23 15:05:53', '2025-12-17 19:47:23', 'AgxWpzq4', '5513046'), + (75999, 840, 1621, 'not_attending', '2022-08-23 15:05:24', '2025-12-17 19:47:23', 'AgxWpzq4', '5513531'), + (76000, 840, 1623, 'attending', '2022-08-23 15:06:16', '2025-12-17 19:47:23', 'AgxWpzq4', '5513678'), + (76001, 840, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgxWpzq4', '5513985'), + (76002, 840, 1626, 'attending', '2022-08-26 18:44:43', '2025-12-17 19:47:11', 'AgxWpzq4', '5519981'), + (76003, 840, 1627, 'attending', '2022-08-28 04:09:35', '2025-12-17 19:47:24', 'AgxWpzq4', '5521552'), + (76004, 840, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AgxWpzq4', '5522550'), + (76005, 840, 1630, 'attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AgxWpzq4', '5534683'), + (76006, 840, 1635, 'attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AgxWpzq4', '5537735'), + (76007, 840, 1636, 'attending', '2022-09-04 19:03:05', '2025-12-17 19:47:24', 'AgxWpzq4', '5538454'), + (76008, 840, 1637, 'not_attending', '2022-09-06 20:44:27', '2025-12-17 19:47:24', 'AgxWpzq4', '5539591'), + (76009, 840, 1640, 'attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AgxWpzq4', '5540859'), + (76010, 840, 1642, 'attending', '2022-09-10 16:14:01', '2025-12-17 19:47:24', 'AgxWpzq4', '5544227'), + (76011, 840, 1645, 'attending', '2022-09-09 20:46:20', '2025-12-17 19:47:25', 'AgxWpzq4', '5546559'), + (76012, 840, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AgxWpzq4', '5546619'), + (76013, 840, 1647, 'attending', '2022-09-12 14:22:44', '2025-12-17 19:47:11', 'AgxWpzq4', '5548660'), + (76014, 840, 1648, 'attending', '2022-09-09 21:07:05', '2025-12-17 19:47:24', 'AgxWpzq4', '5548974'), + (76015, 840, 1650, 'attending', '2022-09-04 19:01:59', '2025-12-17 19:47:24', 'AgxWpzq4', '5549611'), + (76016, 840, 1652, 'attending', '2022-09-10 16:14:06', '2025-12-17 19:47:24', 'AgxWpzq4', '5552671'), + (76017, 840, 1653, 'attending', '2022-09-15 06:41:15', '2025-12-17 19:47:11', 'AgxWpzq4', '5554400'), + (76018, 840, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AgxWpzq4', '5555245'), + (76019, 840, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AgxWpzq4', '5557747'), + (76020, 840, 1661, 'not_attending', '2022-09-09 00:19:23', '2025-12-17 19:47:24', 'AgxWpzq4', '5560254'), + (76021, 840, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AgxWpzq4', '5560255'), + (76022, 840, 1664, 'attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AgxWpzq4', '5562906'), + (76023, 840, 1665, 'attending', '2022-09-12 14:21:52', '2025-12-17 19:47:25', 'AgxWpzq4', '5563133'), + (76024, 840, 1666, 'attending', '2022-09-27 04:15:17', '2025-12-17 19:47:11', 'AgxWpzq4', '5563208'), + (76025, 840, 1667, 'attending', '2022-09-11 06:48:17', '2025-12-17 19:47:11', 'AgxWpzq4', '5563221'), + (76026, 840, 1668, 'attending', '2022-09-11 06:48:26', '2025-12-17 19:47:12', 'AgxWpzq4', '5563222'), + (76027, 840, 1670, 'attending', '2022-09-15 06:38:33', '2025-12-17 19:47:11', 'AgxWpzq4', '5575076'), + (76028, 840, 1671, 'not_attending', '2022-09-15 19:59:06', '2025-12-17 19:47:10', 'AgxWpzq4', '5585041'), + (76029, 840, 1672, 'attending', '2022-09-17 20:00:04', '2025-12-17 19:47:11', 'AgxWpzq4', '5586237'), + (76030, 840, 1673, 'attending', '2022-09-24 17:14:21', '2025-12-17 19:47:11', 'AgxWpzq4', '5592454'), + (76031, 840, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AgxWpzq4', '5600604'), + (76032, 840, 1679, 'maybe', '2022-10-03 22:16:07', '2025-12-17 19:47:12', 'AgxWpzq4', '5601099'), + (76033, 840, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AgxWpzq4', '5605544'), + (76034, 840, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'AgxWpzq4', '5606737'), + (76035, 840, 1703, 'attending', '2022-09-30 18:01:00', '2025-12-17 19:47:12', 'AgxWpzq4', '5609176'), + (76036, 840, 1708, 'maybe', '2022-10-03 22:16:11', '2025-12-17 19:47:12', 'AgxWpzq4', '5617648'), + (76037, 840, 1718, 'not_attending', '2022-10-05 02:41:19', '2025-12-17 19:47:12', 'AgxWpzq4', '5630907'), + (76038, 840, 1719, 'attending', '2022-10-08 15:36:36', '2025-12-17 19:47:12', 'AgxWpzq4', '5630958'), + (76039, 840, 1720, 'attending', '2022-10-15 21:46:46', '2025-12-17 19:47:12', 'AgxWpzq4', '5630959'), + (76040, 840, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AgxWpzq4', '5630960'), + (76041, 840, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AgxWpzq4', '5630961'), + (76042, 840, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AgxWpzq4', '5630962'), + (76043, 840, 1724, 'attending', '2022-11-04 19:09:50', '2025-12-17 19:47:15', 'AgxWpzq4', '5630966'), + (76044, 840, 1725, 'attending', '2022-11-04 19:09:54', '2025-12-17 19:47:16', 'AgxWpzq4', '5630967'), + (76045, 840, 1726, 'not_attending', '2022-11-04 19:09:55', '2025-12-17 19:47:16', 'AgxWpzq4', '5630968'), + (76046, 840, 1727, 'attending', '2022-11-04 19:09:57', '2025-12-17 19:47:16', 'AgxWpzq4', '5630969'), + (76047, 840, 1728, 'attending', '2022-12-11 20:47:15', '2025-12-17 19:47:17', 'AgxWpzq4', '5630970'), + (76048, 840, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AgxWpzq4', '5635406'), + (76049, 840, 1737, 'attending', '2022-11-30 06:52:46', '2025-12-17 19:47:16', 'AgxWpzq4', '5638457'), + (76050, 840, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AgxWpzq4', '5638765'), + (76051, 840, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AgxWpzq4', '5640097'), + (76052, 840, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'AgxWpzq4', '5640843'), + (76053, 840, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AgxWpzq4', '5641521'), + (76054, 840, 1744, 'attending', '2022-11-23 09:28:39', '2025-12-17 19:47:16', 'AgxWpzq4', '5642818'), + (76055, 840, 1750, 'attending', '2022-11-02 09:05:31', '2025-12-17 19:47:15', 'AgxWpzq4', '5652365'), + (76056, 840, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AgxWpzq4', '5652395'), + (76057, 840, 1753, 'attending', '2022-10-19 01:07:34', '2025-12-17 19:47:13', 'AgxWpzq4', '5656228'), + (76058, 840, 1759, 'attending', '2022-10-22 21:27:20', '2025-12-17 19:47:13', 'AgxWpzq4', '5669097'), + (76059, 840, 1761, 'attending', '2022-11-17 08:10:30', '2025-12-17 19:47:16', 'AgxWpzq4', '5670434'), + (76060, 840, 1762, 'attending', '2022-11-02 01:54:28', '2025-12-17 19:47:16', 'AgxWpzq4', '5670445'), + (76061, 840, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AgxWpzq4', '5671637'), + (76062, 840, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AgxWpzq4', '5672329'), + (76063, 840, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AgxWpzq4', '5674057'), + (76064, 840, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AgxWpzq4', '5674060'), + (76065, 840, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'AgxWpzq4', '5677461'), + (76066, 840, 1774, 'attending', '2022-10-29 11:34:26', '2025-12-17 19:47:15', 'AgxWpzq4', '5677843'), + (76067, 840, 1776, 'attending', '2022-11-08 05:33:38', '2025-12-17 19:47:15', 'AgxWpzq4', '5691067'), + (76068, 840, 1777, 'attending', '2022-11-01 19:04:19', '2025-12-17 19:47:15', 'AgxWpzq4', '5693021'), + (76069, 840, 1779, 'attending', '2022-11-04 19:09:42', '2025-12-17 19:47:15', 'AgxWpzq4', '5694252'), + (76070, 840, 1781, 'attending', '2022-11-02 04:46:19', '2025-12-17 19:47:15', 'AgxWpzq4', '5696178'), + (76071, 840, 1782, 'attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AgxWpzq4', '5698046'), + (76072, 840, 1783, 'attending', '2022-11-03 19:28:46', '2025-12-17 19:47:16', 'AgxWpzq4', '5698621'), + (76073, 840, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'AgxWpzq4', '5699760'), + (76074, 840, 1785, 'maybe', '2022-11-05 22:44:05', '2025-12-17 19:47:15', 'AgxWpzq4', '5702414'), + (76075, 840, 1786, 'attending', '2022-11-07 00:56:59', '2025-12-17 19:47:15', 'AgxWpzq4', '5727232'), + (76076, 840, 1791, 'attending', '2022-11-07 18:13:04', '2025-12-17 19:47:15', 'AgxWpzq4', '5728511'), + (76077, 840, 1792, 'attending', '2022-11-07 18:13:19', '2025-12-17 19:47:15', 'AgxWpzq4', '5728512'), + (76078, 840, 1793, 'attending', '2022-11-26 00:11:11', '2025-12-17 19:47:16', 'AgxWpzq4', '5736365'), + (76079, 840, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AgxWpzq4', '5741601'), + (76080, 840, 1796, 'attending', '2022-11-18 02:45:27', '2025-12-17 19:47:16', 'AgxWpzq4', '5756755'), + (76081, 840, 1797, 'attending', '2022-12-10 00:18:54', '2025-12-17 19:47:17', 'AgxWpzq4', '5757486'), + (76082, 840, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AgxWpzq4', '5763458'), + (76083, 840, 1800, 'attending', '2022-11-19 22:42:22', '2025-12-17 19:47:16', 'AgxWpzq4', '5764667'), + (76084, 840, 1802, 'attending', '2022-12-10 23:59:54', '2025-12-17 19:47:17', 'AgxWpzq4', '5764669'), + (76085, 840, 1804, 'attending', '2023-01-13 09:29:28', '2025-12-17 19:47:06', 'AgxWpzq4', '5764674'), + (76086, 840, 1805, 'attending', '2023-01-13 09:29:30', '2025-12-17 19:47:06', 'AgxWpzq4', '5764675'), + (76087, 840, 1806, 'attending', '2023-01-13 09:29:27', '2025-12-17 19:47:05', 'AgxWpzq4', '5764676'), + (76088, 840, 1807, 'attending', '2023-01-13 09:29:25', '2025-12-17 19:47:05', 'AgxWpzq4', '5764677'), + (76089, 840, 1808, 'attending', '2023-02-26 06:52:52', '2025-12-17 19:47:08', 'AgxWpzq4', '5764678'), + (76090, 840, 1810, 'attending', '2023-04-22 16:52:54', '2025-12-17 19:47:00', 'AgxWpzq4', '5764680'), + (76091, 840, 1812, 'attending', '2023-02-26 06:52:57', '2025-12-17 19:47:09', 'AgxWpzq4', '5764682'), + (76092, 840, 1813, 'attending', '2023-04-23 06:12:56', '2025-12-17 19:47:01', 'AgxWpzq4', '5764683'), + (76093, 840, 1814, 'attending', '2023-02-24 08:52:55', '2025-12-17 19:47:08', 'AgxWpzq4', '5764684'), + (76094, 840, 1815, 'attending', '2023-02-18 07:47:08', '2025-12-17 19:47:07', 'AgxWpzq4', '5764685'), + (76095, 840, 1817, 'attending', '2023-02-26 06:53:18', '2025-12-17 19:46:57', 'AgxWpzq4', '5764687'), + (76096, 840, 1819, 'attending', '2023-02-26 06:53:32', '2025-12-17 19:46:58', 'AgxWpzq4', '5764689'), + (76097, 840, 1820, 'attending', '2023-02-26 06:53:34', '2025-12-17 19:46:58', 'AgxWpzq4', '5764690'), + (76098, 840, 1821, 'attending', '2023-02-26 06:53:14', '2025-12-17 19:46:56', 'AgxWpzq4', '5764691'), + (76099, 840, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AgxWpzq4', '5774172'), + (76100, 840, 1825, 'attending', '2022-12-08 21:50:52', '2025-12-17 19:47:16', 'AgxWpzq4', '5776760'), + (76101, 840, 1828, 'maybe', '2022-12-01 18:45:41', '2025-12-17 19:47:16', 'AgxWpzq4', '5778865'), + (76102, 840, 1832, 'attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'AgxWpzq4', '5818247'), + (76103, 840, 1833, 'attending', '2022-12-05 04:48:50', '2025-12-17 19:47:16', 'AgxWpzq4', '5819465'), + (76104, 840, 1834, 'attending', '2022-12-05 20:42:49', '2025-12-17 19:47:17', 'AgxWpzq4', '5819470'), + (76105, 840, 1835, 'attending', '2022-12-05 20:42:56', '2025-12-17 19:47:05', 'AgxWpzq4', '5819471'), + (76106, 840, 1837, 'attending', '2022-12-07 03:16:02', '2025-12-17 19:47:16', 'AgxWpzq4', '5820146'), + (76107, 840, 1841, 'attending', '2023-01-02 21:09:02', '2025-12-17 19:47:05', 'AgxWpzq4', '5827665'), + (76108, 840, 1842, 'attending', '2022-12-22 22:04:37', '2025-12-17 19:47:04', 'AgxWpzq4', '5827739'), + (76109, 840, 1843, 'attending', '2022-12-17 23:30:28', '2025-12-17 19:47:04', 'AgxWpzq4', '5844304'), + (76110, 840, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AgxWpzq4', '5844306'), + (76111, 840, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AgxWpzq4', '5850159'), + (76112, 840, 1849, 'attending', '2023-01-04 04:27:15', '2025-12-17 19:47:05', 'AgxWpzq4', '5852467'), + (76113, 840, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AgxWpzq4', '5858999'), + (76114, 840, 1851, 'not_attending', '2023-01-08 22:12:45', '2025-12-17 19:47:05', 'AgxWpzq4', '5869316'), + (76115, 840, 1852, 'attending', '2023-01-11 10:40:54', '2025-12-17 19:47:05', 'AgxWpzq4', '5869898'), + (76116, 840, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AgxWpzq4', '5871984'), + (76117, 840, 1855, 'attending', '2023-01-13 09:29:20', '2025-12-17 19:47:05', 'AgxWpzq4', '5873968'), + (76118, 840, 1856, 'not_attending', '2023-01-13 09:29:16', '2025-12-17 19:47:05', 'AgxWpzq4', '5873970'), + (76119, 840, 1857, 'attending', '2023-01-13 09:29:18', '2025-12-17 19:47:05', 'AgxWpzq4', '5873973'), + (76120, 840, 1859, 'attending', '2023-01-13 09:29:34', '2025-12-17 19:47:05', 'AgxWpzq4', '5876234'), + (76121, 840, 1861, 'attending', '2023-01-19 00:21:35', '2025-12-17 19:47:05', 'AgxWpzq4', '5876354'), + (76122, 840, 1863, 'attending', '2023-01-14 21:27:54', '2025-12-17 19:47:06', 'AgxWpzq4', '5877255'), + (76123, 840, 1864, 'attending', '2023-01-19 04:49:08', '2025-12-17 19:47:05', 'AgxWpzq4', '5879675'), + (76124, 840, 1865, 'attending', '2023-01-19 04:49:10', '2025-12-17 19:47:06', 'AgxWpzq4', '5879676'), + (76125, 840, 1866, 'attending', '2023-01-17 03:43:23', '2025-12-17 19:47:05', 'AgxWpzq4', '5880939'), + (76126, 840, 1867, 'attending', '2023-01-17 03:43:28', '2025-12-17 19:47:07', 'AgxWpzq4', '5880940'), + (76127, 840, 1868, 'attending', '2023-01-17 03:43:39', '2025-12-17 19:47:07', 'AgxWpzq4', '5880942'), + (76128, 840, 1869, 'attending', '2023-01-17 03:43:42', '2025-12-17 19:47:09', 'AgxWpzq4', '5880943'), + (76129, 840, 1872, 'attending', '2023-01-19 04:48:58', '2025-12-17 19:47:05', 'AgxWpzq4', '5883546'), + (76130, 840, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AgxWpzq4', '5887890'), + (76131, 840, 1875, 'attending', '2023-01-23 11:12:35', '2025-12-17 19:47:06', 'AgxWpzq4', '5887908'), + (76132, 840, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AgxWpzq4', '5888598'), + (76133, 840, 1880, 'attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AgxWpzq4', '5893260'), + (76134, 840, 1881, 'attending', '2023-02-06 08:52:33', '2025-12-17 19:47:07', 'AgxWpzq4', '5894218'), + (76135, 840, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'AgxWpzq4', '5899826'), + (76136, 840, 1885, 'attending', '2023-02-24 02:21:04', '2025-12-17 19:47:08', 'AgxWpzq4', '5899928'), + (76137, 840, 1886, 'attending', '2023-03-06 04:55:46', '2025-12-17 19:47:09', 'AgxWpzq4', '5899930'), + (76138, 840, 1888, 'attending', '2023-02-13 19:33:07', '2025-12-17 19:47:07', 'AgxWpzq4', '5900197'), + (76139, 840, 1889, 'attending', '2023-02-09 00:20:33', '2025-12-17 19:47:07', 'AgxWpzq4', '5900199'), + (76140, 840, 1890, 'attending', '2023-02-21 11:17:01', '2025-12-17 19:47:08', 'AgxWpzq4', '5900200'), + (76141, 840, 1891, 'attending', '2023-02-26 06:53:36', '2025-12-17 19:46:56', 'AgxWpzq4', '5900202'), + (76142, 840, 1892, 'attending', '2023-03-16 21:50:54', '2025-12-17 19:46:56', 'AgxWpzq4', '5900203'), + (76143, 840, 1895, 'attending', '2023-01-31 22:03:10', '2025-12-17 19:47:06', 'AgxWpzq4', '5901108'), + (76144, 840, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'AgxWpzq4', '5901126'), + (76145, 840, 1897, 'attending', '2023-02-10 18:31:42', '2025-12-17 19:47:07', 'AgxWpzq4', '5901128'), + (76146, 840, 1898, 'attending', '2023-01-31 23:55:49', '2025-12-17 19:47:06', 'AgxWpzq4', '5901263'), + (76147, 840, 1899, 'attending', '2023-02-05 06:37:15', '2025-12-17 19:47:07', 'AgxWpzq4', '5901323'), + (76148, 840, 1902, 'attending', '2023-02-01 19:54:02', '2025-12-17 19:47:06', 'AgxWpzq4', '5902254'), + (76149, 840, 1906, 'attending', '2023-02-25 20:59:07', '2025-12-17 19:47:09', 'AgxWpzq4', '5904523'), + (76150, 840, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'AgxWpzq4', '5909655'), + (76151, 840, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'AgxWpzq4', '5910522'), + (76152, 840, 1916, 'attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'AgxWpzq4', '5910526'), + (76153, 840, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'AgxWpzq4', '5910528'), + (76154, 840, 1920, 'attending', '2023-02-12 19:25:17', '2025-12-17 19:47:07', 'AgxWpzq4', '5914091'), + (76155, 840, 1922, 'attending', '2023-02-12 02:48:06', '2025-12-17 19:47:07', 'AgxWpzq4', '5916219'), + (76156, 840, 1923, 'attending', '2023-02-16 05:27:32', '2025-12-17 19:47:07', 'AgxWpzq4', '5930436'), + (76157, 840, 1930, 'maybe', '2023-02-24 04:01:00', '2025-12-17 19:47:08', 'AgxWpzq4', '5933462'), + (76158, 840, 1931, 'attending', '2023-02-24 04:01:02', '2025-12-17 19:47:08', 'AgxWpzq4', '5933464'), + (76159, 840, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'AgxWpzq4', '5936234'), + (76160, 840, 1934, 'attending', '2023-02-20 19:06:51', '2025-12-17 19:47:08', 'AgxWpzq4', '5936691'), + (76161, 840, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'AgxWpzq4', '5958351'), + (76162, 840, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'AgxWpzq4', '5959751'), + (76163, 840, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'AgxWpzq4', '5959755'), + (76164, 840, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'AgxWpzq4', '5960055'), + (76165, 840, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'AgxWpzq4', '5961684'), + (76166, 840, 1943, 'attending', '2023-03-14 18:35:42', '2025-12-17 19:47:10', 'AgxWpzq4', '5962091'), + (76167, 840, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'AgxWpzq4', '5962132'), + (76168, 840, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'AgxWpzq4', '5962133'), + (76169, 840, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'AgxWpzq4', '5962134'), + (76170, 840, 1947, 'attending', '2023-02-26 00:00:13', '2025-12-17 19:47:09', 'AgxWpzq4', '5962233'), + (76171, 840, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'AgxWpzq4', '5962317'), + (76172, 840, 1949, 'attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'AgxWpzq4', '5962318'), + (76173, 840, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'AgxWpzq4', '5965933'), + (76174, 840, 1953, 'attending', '2023-03-05 05:18:38', '2025-12-17 19:47:09', 'AgxWpzq4', '5966307'), + (76175, 840, 1954, 'attending', '2023-03-03 03:03:16', '2025-12-17 19:47:08', 'AgxWpzq4', '5967014'), + (76176, 840, 1955, 'attending', '2023-03-29 11:30:35', '2025-12-17 19:46:57', 'AgxWpzq4', '5972529'), + (76177, 840, 1956, 'attending', '2023-03-06 04:28:44', '2025-12-17 19:47:09', 'AgxWpzq4', '5972763'), + (76178, 840, 1957, 'attending', '2023-03-06 05:38:29', '2025-12-17 19:47:10', 'AgxWpzq4', '5972815'), + (76179, 840, 1959, 'attending', '2023-03-13 05:12:17', '2025-12-17 19:46:57', 'AgxWpzq4', '5972829'), + (76180, 840, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AgxWpzq4', '5974016'), + (76181, 840, 1964, 'attending', '2023-03-08 23:51:15', '2025-12-17 19:47:09', 'AgxWpzq4', '5977129'), + (76182, 840, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AgxWpzq4', '5981515'), + (76183, 840, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AgxWpzq4', '5993516'), + (76184, 840, 1972, 'attending', '2023-03-13 05:09:13', '2025-12-17 19:46:56', 'AgxWpzq4', '5993776'), + (76185, 840, 1973, 'attending', '2023-03-13 05:09:10', '2025-12-17 19:46:56', 'AgxWpzq4', '5993777'), + (76186, 840, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AgxWpzq4', '5998939'), + (76187, 840, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AgxWpzq4', '6028191'), + (76188, 840, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AgxWpzq4', '6040066'), + (76189, 840, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AgxWpzq4', '6042717'), + (76190, 840, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AgxWpzq4', '6044838'), + (76191, 840, 1987, 'maybe', '2023-04-16 23:16:19', '2025-12-17 19:47:00', 'AgxWpzq4', '6044839'), + (76192, 840, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxWpzq4', '6045684'), + (76193, 840, 1991, 'maybe', '2023-04-01 14:26:30', '2025-12-17 19:46:58', 'AgxWpzq4', '6047354'), + (76194, 840, 1992, 'attending', '2023-04-01 14:26:19', '2025-12-17 19:46:58', 'AgxWpzq4', '6048742'), + (76195, 840, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AgxWpzq4', '6050104'), + (76196, 840, 2001, 'attending', '2023-04-04 20:10:13', '2025-12-17 19:46:58', 'AgxWpzq4', '6052569'), + (76197, 840, 2002, 'attending', '2023-04-28 12:01:14', '2025-12-17 19:47:01', 'AgxWpzq4', '6052605'), + (76198, 840, 2005, 'attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AgxWpzq4', '6053195'), + (76199, 840, 2006, 'attending', '2023-04-07 22:30:52', '2025-12-17 19:46:59', 'AgxWpzq4', '6053198'), + (76200, 840, 2010, 'attending', '2023-04-07 18:37:30', '2025-12-17 19:46:59', 'AgxWpzq4', '6056085'), + (76201, 840, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AgxWpzq4', '6056916'), + (76202, 840, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AgxWpzq4', '6059290'), + (76203, 840, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AgxWpzq4', '6060328'), + (76204, 840, 2015, 'maybe', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AgxWpzq4', '6061037'), + (76205, 840, 2016, 'maybe', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'AgxWpzq4', '6061039'), + (76206, 840, 2017, 'attending', '2023-04-11 23:12:15', '2025-12-17 19:46:59', 'AgxWpzq4', '6061099'), + (76207, 840, 2022, 'attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'AgxWpzq4', '6067245'), + (76208, 840, 2025, 'attending', '2023-04-23 06:13:00', '2025-12-17 19:47:00', 'AgxWpzq4', '6067457'), + (76209, 840, 2026, 'attending', '2023-04-17 23:57:01', '2025-12-17 19:47:01', 'AgxWpzq4', '6068078'), + (76210, 840, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AgxWpzq4', '6068094'), + (76211, 840, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AgxWpzq4', '6068252'), + (76212, 840, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AgxWpzq4', '6068253'), + (76213, 840, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AgxWpzq4', '6068254'), + (76214, 840, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'AgxWpzq4', '6068280'), + (76215, 840, 2032, 'attending', '2023-05-31 22:29:27', '2025-12-17 19:47:04', 'AgxWpzq4', '6068281'), + (76216, 840, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AgxWpzq4', '6069093'), + (76217, 840, 2039, 'attending', '2023-04-23 21:09:23', '2025-12-17 19:47:01', 'AgxWpzq4', '6072398'), + (76218, 840, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'AgxWpzq4', '6072528'), + (76219, 840, 2043, 'attending', '2023-04-25 18:45:16', '2025-12-17 19:47:01', 'AgxWpzq4', '6073023'), + (76220, 840, 2044, 'attending', '2023-04-26 00:29:04', '2025-12-17 19:47:03', 'AgxWpzq4', '6073678'), + (76221, 840, 2046, 'attending', '2023-05-10 04:05:34', '2025-12-17 19:47:02', 'AgxWpzq4', '6076020'), + (76222, 840, 2048, 'attending', '2023-04-30 19:00:20', '2025-12-17 19:47:03', 'AgxWpzq4', '6076415'), + (76223, 840, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'AgxWpzq4', '6079840'), + (76224, 840, 2051, 'attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'AgxWpzq4', '6083398'), + (76225, 840, 2052, 'attending', '2023-05-05 16:16:38', '2025-12-17 19:47:02', 'AgxWpzq4', '6088220'), + (76226, 840, 2053, 'attending', '2023-05-09 01:59:53', '2025-12-17 19:47:02', 'AgxWpzq4', '6092644'), + (76227, 840, 2056, 'attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'AgxWpzq4', '6093504'), + (76228, 840, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'AgxWpzq4', '6097414'), + (76229, 840, 2061, 'attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'AgxWpzq4', '6097442'), + (76230, 840, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'AgxWpzq4', '6097684'), + (76231, 840, 2063, 'attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'AgxWpzq4', '6098762'), + (76232, 840, 2064, 'attending', '2023-06-02 17:57:25', '2025-12-17 19:46:50', 'AgxWpzq4', '6099988'), + (76233, 840, 2065, 'attending', '2023-06-02 17:57:22', '2025-12-17 19:46:49', 'AgxWpzq4', '6101169'), + (76234, 840, 2066, 'attending', '2023-06-02 17:57:16', '2025-12-17 19:47:04', 'AgxWpzq4', '6101361'), + (76235, 840, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'AgxWpzq4', '6101362'), + (76236, 840, 2070, 'attending', '2023-05-15 18:25:32', '2025-12-17 19:47:03', 'AgxWpzq4', '6103752'), + (76237, 840, 2074, 'attending', '2023-05-18 17:18:50', '2025-12-17 19:47:03', 'AgxWpzq4', '6107312'), + (76238, 840, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'AgxWpzq4', '6107314'), + (76239, 840, 2077, 'attending', '2023-06-17 14:43:05', '2025-12-17 19:46:49', 'AgxWpzq4', '6110217'), + (76240, 840, 2084, 'maybe', '2023-05-27 01:55:10', '2025-12-17 19:47:04', 'AgxWpzq4', '6117127'), + (76241, 840, 2086, 'attending', '2023-05-26 18:00:53', '2025-12-17 19:47:04', 'AgxWpzq4', '6119877'), + (76242, 840, 2087, 'attending', '2023-05-26 22:01:36', '2025-12-17 19:47:04', 'AgxWpzq4', '6120034'), + (76243, 840, 2091, 'maybe', '2023-06-02 17:57:07', '2025-12-17 19:47:04', 'AgxWpzq4', '6130657'), + (76244, 840, 2092, 'attending', '2023-06-03 20:51:10', '2025-12-17 19:47:04', 'AgxWpzq4', '6132543'), + (76245, 840, 2094, 'attending', '2023-06-05 12:41:24', '2025-12-17 19:47:04', 'AgxWpzq4', '6135924'), + (76246, 840, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'AgxWpzq4', '6136733'), + (76247, 840, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'AgxWpzq4', '6137989'), + (76248, 840, 2104, 'attending', '2023-06-19 03:13:40', '2025-12-17 19:46:50', 'AgxWpzq4', '6149499'), + (76249, 840, 2105, 'attending', '2023-06-17 06:17:57', '2025-12-17 19:46:50', 'AgxWpzq4', '6149551'), + (76250, 840, 2106, 'maybe', '2023-06-19 16:28:15', '2025-12-17 19:46:50', 'AgxWpzq4', '6150479'), + (76251, 840, 2107, 'maybe', '2023-06-19 16:28:21', '2025-12-17 19:46:50', 'AgxWpzq4', '6150480'), + (76252, 840, 2108, 'attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'AgxWpzq4', '6150864'), + (76253, 840, 2110, 'attending', '2023-06-20 17:43:22', '2025-12-17 19:46:50', 'AgxWpzq4', '6155491'), + (76254, 840, 2112, 'not_attending', '2023-06-21 16:26:36', '2025-12-17 19:46:50', 'AgxWpzq4', '6156213'), + (76255, 840, 2114, 'maybe', '2023-06-24 21:55:35', '2025-12-17 19:46:50', 'AgxWpzq4', '6158648'), + (76256, 840, 2118, 'attending', '2023-06-25 17:30:37', '2025-12-17 19:46:50', 'AgxWpzq4', '6164417'), + (76257, 840, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'AgxWpzq4', '6166388'), + (76258, 840, 2121, 'attending', '2023-06-27 20:11:26', '2025-12-17 19:46:50', 'AgxWpzq4', '6176439'), + (76259, 840, 2125, 'attending', '2023-06-29 19:29:06', '2025-12-17 19:46:51', 'AgxWpzq4', '6177485'), + (76260, 840, 2127, 'attending', '2023-07-01 18:42:09', '2025-12-17 19:46:50', 'AgxWpzq4', '6180853'), + (76261, 840, 2128, 'maybe', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'AgxWpzq4', '6182410'), + (76262, 840, 2129, 'not_attending', '2023-07-05 22:47:06', '2025-12-17 19:46:51', 'AgxWpzq4', '6182825'), + (76263, 840, 2131, 'attending', '2023-07-05 17:28:13', '2025-12-17 19:46:51', 'AgxWpzq4', '6185812'), + (76264, 840, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'AgxWpzq4', '6187651'), + (76265, 840, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'AgxWpzq4', '6187963'), + (76266, 840, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'AgxWpzq4', '6187964'), + (76267, 840, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'AgxWpzq4', '6187966'), + (76268, 840, 2137, 'maybe', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'AgxWpzq4', '6187967'), + (76269, 840, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'AgxWpzq4', '6187969'), + (76270, 840, 2142, 'attending', '2023-07-07 22:14:12', '2025-12-17 19:46:52', 'AgxWpzq4', '6333850'), + (76271, 840, 2143, 'attending', '2023-07-08 17:16:10', '2025-12-17 19:46:51', 'AgxWpzq4', '6334348'), + (76272, 840, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'AgxWpzq4', '6334878'), + (76273, 840, 2145, 'attending', '2023-07-10 08:07:01', '2025-12-17 19:46:52', 'AgxWpzq4', '6334903'), + (76274, 840, 2146, 'attending', '2023-07-18 02:37:09', '2025-12-17 19:46:53', 'AgxWpzq4', '6335638'), + (76275, 840, 2149, 'attending', '2023-07-09 22:37:17', '2025-12-17 19:46:53', 'AgxWpzq4', '6335682'), + (76276, 840, 2152, 'attending', '2023-07-11 02:18:01', '2025-12-17 19:46:52', 'AgxWpzq4', '6337021'), + (76277, 840, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AgxWpzq4', '6337236'), + (76278, 840, 2155, 'attending', '2023-07-12 20:20:12', '2025-12-17 19:46:53', 'AgxWpzq4', '6337970'), + (76279, 840, 2156, 'attending', '2023-07-12 21:21:34', '2025-12-17 19:46:52', 'AgxWpzq4', '6338308'), + (76280, 840, 2158, 'attending', '2023-07-17 20:01:03', '2025-12-17 19:46:53', 'AgxWpzq4', '6338353'), + (76281, 840, 2159, 'attending', '2023-07-15 05:52:41', '2025-12-17 19:46:53', 'AgxWpzq4', '6338355'), + (76282, 840, 2160, 'attending', '2023-07-15 05:52:42', '2025-12-17 19:46:54', 'AgxWpzq4', '6338358'), + (76283, 840, 2161, 'attending', '2023-07-15 19:11:39', '2025-12-17 19:46:52', 'AgxWpzq4', '6340748'), + (76284, 840, 2162, 'attending', '2023-07-16 06:33:07', '2025-12-17 19:46:53', 'AgxWpzq4', '6340845'), + (76285, 840, 2163, 'attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AgxWpzq4', '6341710'), + (76286, 840, 2165, 'attending', '2023-07-20 19:13:28', '2025-12-17 19:46:54', 'AgxWpzq4', '6342044'), + (76287, 840, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AgxWpzq4', '6342298'), + (76288, 840, 2172, 'attending', '2023-07-18 02:39:07', '2025-12-17 19:46:53', 'AgxWpzq4', '6342591'), + (76289, 840, 2174, 'maybe', '2023-07-23 07:08:14', '2025-12-17 19:46:53', 'AgxWpzq4', '6343294'), + (76290, 840, 2175, 'attending', '2023-07-22 18:59:04', '2025-12-17 19:46:53', 'AgxWpzq4', '6346982'), + (76291, 840, 2176, 'maybe', '2023-07-23 07:08:15', '2025-12-17 19:46:54', 'AgxWpzq4', '6347034'), + (76292, 840, 2177, 'not_attending', '2023-08-06 05:55:23', '2025-12-17 19:46:55', 'AgxWpzq4', '6347053'), + (76293, 840, 2178, 'maybe', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AgxWpzq4', '6347056'), + (76294, 840, 2183, 'attending', '2023-07-28 18:36:05', '2025-12-17 19:46:54', 'AgxWpzq4', '6353008'), + (76295, 840, 2184, 'attending', '2023-07-29 20:37:39', '2025-12-17 19:46:54', 'AgxWpzq4', '6353825'), + (76296, 840, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AgxWpzq4', '6353830'), + (76297, 840, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AgxWpzq4', '6353831'), + (76298, 840, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AgxWpzq4', '6357867'), + (76299, 840, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AgxWpzq4', '6358652'), + (76300, 840, 2192, 'attending', '2023-08-04 04:31:50', '2025-12-17 19:46:54', 'AgxWpzq4', '6358666'), + (76301, 840, 2199, 'attending', '2023-08-09 16:55:57', '2025-12-17 19:46:55', 'AgxWpzq4', '6359849'), + (76302, 840, 2200, 'attending', '2023-08-06 05:54:58', '2025-12-17 19:46:55', 'AgxWpzq4', '6359850'), + (76303, 840, 2203, 'attending', '2023-08-07 20:14:49', '2025-12-17 19:46:55', 'AgxWpzq4', '6361524'), + (76304, 840, 2204, 'attending', '2023-08-09 16:56:15', '2025-12-17 19:46:55', 'AgxWpzq4', '6361542'), + (76305, 840, 2208, 'attending', '2023-08-09 14:38:38', '2025-12-17 19:46:54', 'AgxWpzq4', '6361709'), + (76306, 840, 2209, 'attending', '2023-08-09 16:56:00', '2025-12-17 19:46:55', 'AgxWpzq4', '6361710'), + (76307, 840, 2210, 'attending', '2023-08-09 16:56:01', '2025-12-17 19:46:55', 'AgxWpzq4', '6361711'), + (76308, 840, 2211, 'attending', '2023-08-09 16:56:06', '2025-12-17 19:46:55', 'AgxWpzq4', '6361712'), + (76309, 840, 2212, 'attending', '2023-09-09 21:07:04', '2025-12-17 19:46:45', 'AgxWpzq4', '6361713'), + (76310, 840, 2216, 'attending', '2023-08-11 16:04:44', '2025-12-17 19:46:55', 'AgxWpzq4', '6364123'), + (76311, 840, 2217, 'attending', '2023-08-13 04:49:45', '2025-12-17 19:46:55', 'AgxWpzq4', '6364333'), + (76312, 840, 2226, 'attending', '2023-08-17 23:18:46', '2025-12-17 19:46:55', 'AgxWpzq4', '6370006'), + (76313, 840, 2228, 'attending', '2023-08-19 20:04:44', '2025-12-17 19:46:55', 'AgxWpzq4', '6372777'), + (76314, 840, 2231, 'attending', '2023-08-21 17:45:41', '2025-12-17 19:46:55', 'AgxWpzq4', '6374748'), + (76315, 840, 2232, 'attending', '2023-08-25 15:05:24', '2025-12-17 19:46:55', 'AgxWpzq4', '6374818'), + (76316, 840, 2234, 'attending', '2023-08-26 19:38:33', '2025-12-17 19:46:56', 'AgxWpzq4', '6382559'), + (76317, 840, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'AgxWpzq4', '6382573'), + (76318, 840, 2236, 'attending', '2023-08-27 06:20:05', '2025-12-17 19:46:55', 'AgxWpzq4', '6382618'), + (76319, 840, 2237, 'attending', '2023-08-26 20:09:01', '2025-12-17 19:46:55', 'AgxWpzq4', '6383149'), + (76320, 840, 2239, 'attending', '2023-09-01 20:05:27', '2025-12-17 19:46:56', 'AgxWpzq4', '6387592'), + (76321, 840, 2240, 'attending', '2023-09-07 20:07:15', '2025-12-17 19:46:56', 'AgxWpzq4', '6388603'), + (76322, 840, 2241, 'attending', '2023-09-07 20:07:13', '2025-12-17 19:46:44', 'AgxWpzq4', '6388604'), + (76323, 840, 2242, 'attending', '2023-09-07 20:07:10', '2025-12-17 19:46:45', 'AgxWpzq4', '6388606'), + (76324, 840, 2244, 'attending', '2023-09-05 16:49:14', '2025-12-17 19:46:44', 'AgxWpzq4', '6393700'), + (76325, 840, 2247, 'attending', '2023-09-06 22:56:27', '2025-12-17 19:46:56', 'AgxWpzq4', '6394628'), + (76326, 840, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AgxWpzq4', '6394629'), + (76327, 840, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AgxWpzq4', '6394631'), + (76328, 840, 2253, 'attending', '2023-09-15 04:46:53', '2025-12-17 19:46:45', 'AgxWpzq4', '6401811'), + (76329, 840, 2255, 'attending', '2023-09-12 08:52:07', '2025-12-17 19:46:45', 'AgxWpzq4', '6403562'), + (76330, 840, 2257, 'attending', '2023-09-16 19:42:24', '2025-12-17 19:46:44', 'AgxWpzq4', '6408068'), + (76331, 840, 2265, 'attending', '2023-09-29 16:28:37', '2025-12-17 19:46:45', 'AgxWpzq4', '6439625'), + (76332, 840, 2266, 'attending', '2023-10-03 23:06:54', '2025-12-17 19:46:45', 'AgxWpzq4', '6439635'), + (76333, 840, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AgxWpzq4', '6440863'), + (76334, 840, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AgxWpzq4', '6445440'), + (76335, 840, 2274, 'attending', '2023-10-03 22:55:02', '2025-12-17 19:46:45', 'AgxWpzq4', '6448287'), + (76336, 840, 2275, 'attending', '2023-10-07 19:28:33', '2025-12-17 19:46:45', 'AgxWpzq4', '6453777'), + (76337, 840, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AgxWpzq4', '6453951'), + (76338, 840, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AgxWpzq4', '6461696'), + (76339, 840, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AgxWpzq4', '6462129'), + (76340, 840, 2290, 'maybe', '2023-10-18 00:11:48', '2025-12-17 19:46:46', 'AgxWpzq4', '6462214'), + (76341, 840, 2292, 'maybe', '2023-10-22 19:25:57', '2025-12-17 19:46:47', 'AgxWpzq4', '6462216'), + (76342, 840, 2293, 'attending', '2023-10-11 22:08:06', '2025-12-17 19:46:46', 'AgxWpzq4', '6463218'), + (76343, 840, 2299, 'attending', '2023-10-20 22:34:17', '2025-12-17 19:46:46', 'AgxWpzq4', '6472181'), + (76344, 840, 2301, 'not_attending', '2023-10-16 13:32:16', '2025-12-17 19:46:46', 'AgxWpzq4', '6474276'), + (76345, 840, 2302, 'not_attending', '2023-10-22 12:26:52', '2025-12-17 19:46:46', 'AgxWpzq4', '6482535'), + (76346, 840, 2303, 'attending', '2023-10-22 12:34:55', '2025-12-17 19:46:47', 'AgxWpzq4', '6482691'), + (76347, 840, 2304, 'attending', '2023-10-22 12:34:57', '2025-12-17 19:46:47', 'AgxWpzq4', '6482693'), + (76348, 840, 2305, 'attending', '2023-10-21 21:46:45', '2025-12-17 19:46:46', 'AgxWpzq4', '6483945'), + (76349, 840, 2306, 'attending', '2023-11-14 23:05:59', '2025-12-17 19:46:47', 'AgxWpzq4', '6484200'), + (76350, 840, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'AgxWpzq4', '6484680'), + (76351, 840, 2310, 'maybe', '2023-10-25 13:23:13', '2025-12-17 19:46:47', 'AgxWpzq4', '6487709'), + (76352, 840, 2313, 'attending', '2023-10-28 17:55:46', '2025-12-17 19:46:47', 'AgxWpzq4', '6492612'), + (76353, 840, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AgxWpzq4', '6507741'), + (76354, 840, 2322, 'attending', '2023-11-09 10:27:45', '2025-12-17 19:46:48', 'AgxWpzq4', '6514659'), + (76355, 840, 2323, 'attending', '2023-11-09 10:27:44', '2025-12-17 19:46:48', 'AgxWpzq4', '6514660'), + (76356, 840, 2324, 'attending', '2023-11-09 10:27:46', '2025-12-17 19:46:49', 'AgxWpzq4', '6514662'), + (76357, 840, 2325, 'attending', '2023-11-09 10:27:50', '2025-12-17 19:46:36', 'AgxWpzq4', '6514663'), + (76358, 840, 2328, 'attending', '2023-11-01 21:51:55', '2025-12-17 19:46:47', 'AgxWpzq4', '6515504'), + (76359, 840, 2330, 'maybe', '2023-11-04 22:26:18', '2025-12-17 19:46:47', 'AgxWpzq4', '6517941'), + (76360, 840, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AgxWpzq4', '6519103'), + (76361, 840, 2335, 'attending', '2023-11-07 20:24:36', '2025-12-17 19:46:47', 'AgxWpzq4', '6534890'), + (76362, 840, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AgxWpzq4', '6535681'), + (76363, 840, 2338, 'not_attending', '2023-11-24 10:08:15', '2025-12-17 19:46:48', 'AgxWpzq4', '6538868'), + (76364, 840, 2342, 'attending', '2023-11-13 19:03:21', '2025-12-17 19:46:47', 'AgxWpzq4', '6545076'), + (76365, 840, 2343, 'maybe', '2023-11-15 07:44:49', '2025-12-17 19:46:48', 'AgxWpzq4', '6574728'), + (76366, 840, 2346, 'attending', '2023-11-18 22:27:49', '2025-12-17 19:46:48', 'AgxWpzq4', '6582418'), + (76367, 840, 2350, 'attending', '2023-11-21 04:41:04', '2025-12-17 19:46:48', 'AgxWpzq4', '6584352'), + (76368, 840, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AgxWpzq4', '6584747'), + (76369, 840, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AgxWpzq4', '6587097'), + (76370, 840, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AgxWpzq4', '6609022'), + (76371, 840, 2373, 'attending', '2023-12-18 19:16:45', '2025-12-17 19:46:38', 'AgxWpzq4', '6632678'), + (76372, 840, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AgxWpzq4', '6632757'), + (76373, 840, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AgxWpzq4', '6644187'), + (76374, 840, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AgxWpzq4', '6648951'), + (76375, 840, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AgxWpzq4', '6648952'), + (76376, 840, 2388, 'attending', '2024-01-06 11:15:17', '2025-12-17 19:46:37', 'AgxWpzq4', '6649244'), + (76377, 840, 2390, 'attending', '2024-01-03 21:50:22', '2025-12-17 19:46:37', 'AgxWpzq4', '6651141'), + (76378, 840, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AgxWpzq4', '6655401'), + (76379, 840, 2399, 'attending', '2024-01-09 09:41:56', '2025-12-17 19:46:37', 'AgxWpzq4', '6657583'), + (76380, 840, 2400, 'maybe', '2024-01-08 19:48:23', '2025-12-17 19:46:37', 'AgxWpzq4', '6659378'), + (76381, 840, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AgxWpzq4', '6661585'), + (76382, 840, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AgxWpzq4', '6661588'), + (76383, 840, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AgxWpzq4', '6661589'), + (76384, 840, 2407, 'attending', '2024-01-15 03:36:33', '2025-12-17 19:46:40', 'AgxWpzq4', '6699906'), + (76385, 840, 2408, 'attending', '2024-01-15 03:47:21', '2025-12-17 19:46:40', 'AgxWpzq4', '6699907'), + (76386, 840, 2409, 'attending', '2024-01-15 03:47:22', '2025-12-17 19:46:41', 'AgxWpzq4', '6699909'), + (76387, 840, 2410, 'attending', '2024-01-15 03:50:04', '2025-12-17 19:46:41', 'AgxWpzq4', '6699911'), + (76388, 840, 2411, 'attending', '2024-01-15 04:15:43', '2025-12-17 19:46:41', 'AgxWpzq4', '6699913'), + (76389, 840, 2412, 'attending', '2024-01-15 21:49:00', '2025-12-17 19:46:43', 'AgxWpzq4', '6700717'), + (76390, 840, 2413, 'attending', '2024-01-15 21:53:45', '2025-12-17 19:46:42', 'AgxWpzq4', '6700719'), + (76391, 840, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AgxWpzq4', '6701109'), + (76392, 840, 2424, 'attending', '2024-01-19 01:47:27', '2025-12-17 19:46:40', 'AgxWpzq4', '6705143'), + (76393, 840, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AgxWpzq4', '6705219'), + (76394, 840, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AgxWpzq4', '6710153'), + (76395, 840, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AgxWpzq4', '6711552'), + (76396, 840, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'AgxWpzq4', '6711553'), + (76397, 840, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'AgxWpzq4', '6722688'), + (76398, 840, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'AgxWpzq4', '6730620'), + (76399, 840, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'AgxWpzq4', '6730642'), + (76400, 840, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'AgxWpzq4', '6740364'), + (76401, 840, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'AgxWpzq4', '6743829'), + (76402, 840, 2467, 'attending', '2024-02-16 01:31:57', '2025-12-17 19:46:43', 'AgxWpzq4', '7029987'), + (76403, 840, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'AgxWpzq4', '7030380'), + (76404, 840, 2471, 'attending', '2024-02-19 05:55:14', '2025-12-17 19:46:42', 'AgxWpzq4', '7032425'), + (76405, 840, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'AgxWpzq4', '7033677'), + (76406, 840, 2474, 'attending', '2024-02-20 21:12:09', '2025-12-17 19:46:43', 'AgxWpzq4', '7035415'), + (76407, 840, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'AgxWpzq4', '7044715'), + (76408, 840, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'AgxWpzq4', '7050318'), + (76409, 840, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'AgxWpzq4', '7050319'), + (76410, 840, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'AgxWpzq4', '7050322'), + (76411, 840, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'AgxWpzq4', '7057804'), + (76412, 840, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'AgxWpzq4', '7072824'), + (76413, 840, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'AgxWpzq4', '7074348'), + (76414, 840, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AgxWpzq4', '7074364'), + (76415, 840, 2537, 'attending', '2024-03-16 06:13:19', '2025-12-17 19:46:33', 'AgxWpzq4', '7085484'), + (76416, 840, 2538, 'attending', '2024-03-16 06:14:09', '2025-12-17 19:46:33', 'AgxWpzq4', '7085485'), + (76417, 840, 2539, 'attending', '2024-03-16 06:14:10', '2025-12-17 19:46:33', 'AgxWpzq4', '7085486'), + (76418, 840, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'AgxWpzq4', '7089267'), + (76419, 840, 2543, 'attending', '2024-03-24 02:18:13', '2025-12-17 19:46:33', 'AgxWpzq4', '7091456'), + (76420, 840, 2548, 'attending', '2024-03-23 18:28:53', '2025-12-17 19:46:33', 'AgxWpzq4', '7098747'), + (76421, 840, 2549, 'attending', '2024-03-24 19:56:20', '2025-12-17 19:46:33', 'AgxWpzq4', '7099657'), + (76422, 840, 2553, 'attending', '2024-03-29 18:43:09', '2025-12-17 19:46:33', 'AgxWpzq4', '7113468'), + (76423, 840, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AgxWpzq4', '7114856'), + (76424, 840, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'AgxWpzq4', '7114951'), + (76425, 840, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'AgxWpzq4', '7114955'), + (76426, 840, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'AgxWpzq4', '7114956'), + (76427, 840, 2558, 'attending', '2024-04-04 06:32:54', '2025-12-17 19:46:35', 'AgxWpzq4', '7114957'), + (76428, 840, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AgxWpzq4', '7153615'), + (76429, 840, 2569, 'attending', '2024-04-05 19:19:33', '2025-12-17 19:46:33', 'AgxWpzq4', '7154056'), + (76430, 840, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AgxWpzq4', '7159484'), + (76431, 840, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AgxWpzq4', '7178446'), + (76432, 840, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AgxWpzq4', '7220467'), + (76433, 840, 2609, 'attending', '2024-05-06 16:41:05', '2025-12-17 19:46:35', 'AgxWpzq4', '7240354'), + (76434, 840, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AgxWpzq4', '7251633'), + (76435, 840, 2622, 'attending', '2024-05-09 05:24:02', '2025-12-17 19:46:35', 'AgxWpzq4', '7262064'), + (76436, 840, 2626, 'attending', '2024-05-17 04:38:48', '2025-12-17 19:46:35', 'AgxWpzq4', '7264723'), + (76437, 840, 2627, 'attending', '2024-05-17 04:38:46', '2025-12-17 19:46:35', 'AgxWpzq4', '7264724'), + (76438, 840, 2628, 'attending', '2024-05-17 04:38:49', '2025-12-17 19:46:36', 'AgxWpzq4', '7264725'), + (76439, 840, 2629, 'attending', '2024-05-17 04:38:51', '2025-12-17 19:46:28', 'AgxWpzq4', '7264726'), + (76440, 840, 2645, 'attending', '2024-05-20 22:11:18', '2025-12-17 19:46:35', 'AgxWpzq4', '7279964'), + (76441, 840, 2647, 'attending', '2024-05-20 19:20:39', '2025-12-17 19:46:28', 'AgxWpzq4', '7282057'), + (76442, 840, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AgxWpzq4', '7302674'), + (76443, 840, 2688, 'attending', '2024-06-25 17:17:33', '2025-12-17 19:46:29', 'AgxWpzq4', '7324073'), + (76444, 840, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AgxWpzq4', '7324074'), + (76445, 840, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AgxWpzq4', '7324075'), + (76446, 840, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AgxWpzq4', '7324078'), + (76447, 840, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AgxWpzq4', '7324082'), + (76448, 840, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'AgxWpzq4', '7331457'), + (76449, 840, 2726, 'not_attending', '2024-06-19 19:17:45', '2025-12-17 19:46:29', 'AgxWpzq4', '7332853'), + (76450, 840, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AgxWpzq4', '7356752'), + (76451, 840, 2766, 'attending', '2024-07-21 22:07:22', '2025-12-17 19:46:30', 'AgxWpzq4', '7363643'), + (76452, 840, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AgxWpzq4', '7368606'), + (76453, 840, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AgxWpzq4', '7397462'), + (76454, 840, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AgxWpzq4', '7424275'), + (76455, 840, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AgxWpzq4', '7424276'), + (76456, 840, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AgxWpzq4', '7432751'), + (76457, 840, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AgxWpzq4', '7432752'), + (76458, 840, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AgxWpzq4', '7432753'), + (76459, 840, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AgxWpzq4', '7432754'), + (76460, 840, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AgxWpzq4', '7432755'), + (76461, 840, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AgxWpzq4', '7432756'), + (76462, 840, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AgxWpzq4', '7432758'), + (76463, 840, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AgxWpzq4', '7432759'), + (76464, 840, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AgxWpzq4', '7433834'), + (76465, 840, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AgxWpzq4', '7470197'), + (76466, 840, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AgxWpzq4', '7685613'), + (76467, 840, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AgxWpzq4', '7688194'), + (76468, 840, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AgxWpzq4', '7688196'), + (76469, 840, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AgxWpzq4', '7688289'), + (76470, 841, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'd5jREKOm', '7291219'), + (76471, 841, 2657, 'not_attending', '2024-05-29 15:52:43', '2025-12-17 19:46:36', 'd5jREKOm', '7294438'), + (76472, 841, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'd5jREKOm', '7301638'), + (76473, 842, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'ndlplxld', '3470305'), + (76474, 842, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ndlplxld', '3517815'), + (76475, 842, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ndlplxld', '3517816'), + (76476, 842, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ndlplxld', '3523941'), + (76477, 842, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ndlplxld', '3533850'), + (76478, 842, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ndlplxld', '3536632'), + (76479, 842, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ndlplxld', '3536656'), + (76480, 842, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ndlplxld', '3539916'), + (76481, 842, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ndlplxld', '3539917'), + (76482, 842, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ndlplxld', '3539918'), + (76483, 842, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ndlplxld', '3539919'), + (76484, 842, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ndlplxld', '3539920'), + (76485, 842, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ndlplxld', '3539921'), + (76486, 842, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ndlplxld', '3539922'), + (76487, 842, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndlplxld', '3539923'), + (76488, 842, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndlplxld', '3539927'), + (76489, 842, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndlplxld', '3582734'), + (76490, 842, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndlplxld', '3619523'), + (76491, 842, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlplxld', '6045684'), + (76492, 843, 950, 'maybe', '2021-08-20 14:34:32', '2025-12-17 19:47:42', 'AgkZVeMA', '4315730'), + (76493, 843, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'AgkZVeMA', '4356801'), + (76494, 843, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'AgkZVeMA', '4366186'), + (76495, 843, 974, 'maybe', '2021-08-27 01:03:27', '2025-12-17 19:47:43', 'AgkZVeMA', '4366187'), + (76496, 843, 978, 'not_attending', '2021-08-21 22:30:35', '2025-12-17 19:47:42', 'AgkZVeMA', '4378509'), + (76497, 843, 981, 'attending', '2021-08-27 21:59:40', '2025-12-17 19:47:42', 'AgkZVeMA', '4387305'), + (76498, 843, 983, 'not_attending', '2021-08-30 15:33:21', '2025-12-17 19:47:42', 'AgkZVeMA', '4390051'), + (76499, 843, 988, 'not_attending', '2021-08-25 14:58:04', '2025-12-17 19:47:42', 'AgkZVeMA', '4402823'), + (76500, 843, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'AgkZVeMA', '4420735'), + (76501, 843, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'AgkZVeMA', '4420738'), + (76502, 843, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'AgkZVeMA', '4420739'), + (76503, 843, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'AgkZVeMA', '4420741'), + (76504, 843, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'AgkZVeMA', '4420744'), + (76505, 843, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'AgkZVeMA', '4420747'), + (76506, 843, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'AgkZVeMA', '4420748'), + (76507, 843, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'AgkZVeMA', '4420749'), + (76508, 843, 1002, 'attending', '2021-08-30 15:22:55', '2025-12-17 19:47:43', 'AgkZVeMA', '4424932'), + (76509, 843, 1013, 'not_attending', '2021-09-04 17:06:37', '2025-12-17 19:47:43', 'AgkZVeMA', '4438817'), + (76510, 843, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'AgkZVeMA', '4461883'), + (76511, 843, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'AgkZVeMA', '4508342'), + (76512, 843, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'AgkZVeMA', '4568602'), + (76513, 843, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AgkZVeMA', '6045684'), + (76514, 844, 1154, 'maybe', '2022-01-25 04:16:03', '2025-12-17 19:47:32', 'd8Go37v4', '4708708'), + (76515, 844, 1175, 'attending', '2022-01-22 23:29:09', '2025-12-17 19:47:32', 'd8Go37v4', '4736497'), + (76516, 844, 1177, 'not_attending', '2022-02-13 00:06:27', '2025-12-17 19:47:32', 'd8Go37v4', '4736499'), + (76517, 844, 1178, 'attending', '2022-01-29 21:56:57', '2025-12-17 19:47:32', 'd8Go37v4', '4736500'), + (76518, 844, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd8Go37v4', '4736503'), + (76519, 844, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd8Go37v4', '4736504'), + (76520, 844, 1193, 'attending', '2022-01-18 10:58:23', '2025-12-17 19:47:32', 'd8Go37v4', '4759563'), + (76521, 844, 1197, 'not_attending', '2022-01-25 04:15:40', '2025-12-17 19:47:32', 'd8Go37v4', '4766799'), + (76522, 844, 1198, 'attending', '2022-01-22 05:58:41', '2025-12-17 19:47:32', 'd8Go37v4', '4766801'), + (76523, 844, 1199, 'attending', '2022-01-25 04:15:33', '2025-12-17 19:47:32', 'd8Go37v4', '4766802'), + (76524, 844, 1200, 'attending', '2022-01-19 02:14:20', '2025-12-17 19:47:32', 'd8Go37v4', '4766830'), + (76525, 844, 1201, 'attending', '2022-01-18 10:58:08', '2025-12-17 19:47:32', 'd8Go37v4', '4766841'), + (76526, 844, 1202, 'maybe', '2022-01-25 04:16:00', '2025-12-17 19:47:32', 'd8Go37v4', '4769423'), + (76527, 844, 1210, 'maybe', '2022-01-25 04:16:12', '2025-12-17 19:47:32', 'd8Go37v4', '4776927'), + (76528, 844, 1216, 'maybe', '2022-01-25 14:53:56', '2025-12-17 19:47:32', 'd8Go37v4', '4781137'), + (76529, 844, 1217, 'attending', '2022-01-30 20:34:53', '2025-12-17 19:47:32', 'd8Go37v4', '4781139'), + (76530, 844, 1218, 'maybe', '2022-02-01 01:14:54', '2025-12-17 19:47:32', 'd8Go37v4', '4788464'), + (76531, 844, 1219, 'maybe', '2022-01-31 04:28:33', '2025-12-17 19:47:32', 'd8Go37v4', '4788466'), + (76532, 844, 1220, 'maybe', '2022-01-28 00:56:11', '2025-12-17 19:47:32', 'd8Go37v4', '4790257'), + (76533, 844, 1221, 'maybe', '2022-01-28 00:56:22', '2025-12-17 19:47:32', 'd8Go37v4', '4790261'), + (76534, 844, 1223, 'not_attending', '2022-02-05 22:05:44', '2025-12-17 19:47:32', 'd8Go37v4', '5015635'), + (76535, 844, 1224, 'maybe', '2022-01-31 04:28:46', '2025-12-17 19:47:32', 'd8Go37v4', '5016682'), + (76536, 844, 1226, 'not_attending', '2022-02-01 23:21:56', '2025-12-17 19:47:32', 'd8Go37v4', '5019064'), + (76537, 844, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd8Go37v4', '5038850'), + (76538, 844, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd8Go37v4', '5045826'), + (76539, 844, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd8Go37v4', '5132533'), + (76540, 844, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd8Go37v4', '5186582'), + (76541, 844, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd8Go37v4', '5186583'), + (76542, 844, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd8Go37v4', '5186585'), + (76543, 844, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd8Go37v4', '5190437'), + (76544, 844, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd8Go37v4', '5215989'), + (76545, 844, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd8Go37v4', '6045684'), + (76546, 845, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4ojJnrZA', '7240354'), + (76547, 845, 2611, 'attending', '2024-05-06 10:11:22', '2025-12-17 19:46:35', '4ojJnrZA', '7247642'), + (76548, 845, 2613, 'attending', '2024-05-07 10:03:36', '2025-12-17 19:46:35', '4ojJnrZA', '7247644'), + (76549, 845, 2614, 'attending', '2024-05-07 10:03:45', '2025-12-17 19:46:35', '4ojJnrZA', '7247645'), + (76550, 845, 2617, 'attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4ojJnrZA', '7251633'), + (76551, 845, 2620, 'not_attending', '2024-05-08 19:30:32', '2025-12-17 19:46:35', '4ojJnrZA', '7258097'), + (76552, 845, 2621, 'attending', '2024-05-07 01:27:41', '2025-12-17 19:46:35', '4ojJnrZA', '7258170'), + (76553, 845, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4ojJnrZA', '7263048'), + (76554, 845, 2624, 'not_attending', '2024-05-10 21:44:47', '2025-12-17 19:46:35', '4ojJnrZA', '7263301'), + (76555, 846, 1176, 'attending', '2022-02-05 23:42:10', '2025-12-17 19:47:32', 'mq1VBn1m', '4736498'), + (76556, 846, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mq1VBn1m', '4736499'), + (76557, 846, 1179, 'attending', '2022-02-19 16:52:31', '2025-12-17 19:47:32', 'mq1VBn1m', '4736501'), + (76558, 846, 1180, 'attending', '2022-02-27 00:08:33', '2025-12-17 19:47:33', 'mq1VBn1m', '4736502'), + (76559, 846, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mq1VBn1m', '4736503'), + (76560, 846, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mq1VBn1m', '4736504'), + (76561, 846, 1212, 'attending', '2022-01-27 15:52:36', '2025-12-17 19:47:32', 'mq1VBn1m', '4780759'), + (76562, 846, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mq1VBn1m', '5038850'), + (76563, 846, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mq1VBn1m', '5045826'), + (76564, 846, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mq1VBn1m', '5132533'), + (76565, 846, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mq1VBn1m', '5186582'), + (76566, 846, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mq1VBn1m', '5186583'), + (76567, 846, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mq1VBn1m', '5186585'), + (76568, 846, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mq1VBn1m', '5190437'), + (76569, 846, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mq1VBn1m', '5195095'), + (76570, 846, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mq1VBn1m', '5215989'), + (76571, 846, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mq1VBn1m', '5223686'), + (76572, 846, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mq1VBn1m', '5227432'), + (76573, 846, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'mq1VBn1m', '5247467'), + (76574, 846, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mq1VBn1m', '5260800'), + (76575, 846, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mq1VBn1m', '5269930'), + (76576, 846, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mq1VBn1m', '5271448'), + (76577, 846, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mq1VBn1m', '5271449'), + (76578, 846, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mq1VBn1m', '5276469'), + (76579, 846, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mq1VBn1m', '5278159'), + (76580, 846, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mq1VBn1m', '5363695'), + (76581, 846, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mq1VBn1m', '5365960'), + (76582, 846, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mq1VBn1m', '5368973'), + (76583, 846, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mq1VBn1m', '5378247'), + (76584, 846, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mq1VBn1m', '5389605'), + (76585, 846, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mq1VBn1m', '5397265'), + (76586, 846, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mq1VBn1m', '5403967'), + (76587, 846, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mq1VBn1m', '5404786'), + (76588, 846, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mq1VBn1m', '5405203'), + (76589, 846, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mq1VBn1m', '5408794'), + (76590, 846, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mq1VBn1m', '5411699'), + (76591, 846, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mq1VBn1m', '5412550'), + (76592, 846, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mq1VBn1m', '5415046'), + (76593, 846, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mq1VBn1m', '5422086'), + (76594, 846, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mq1VBn1m', '5422406'), + (76595, 846, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mq1VBn1m', '5424565'), + (76596, 846, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mq1VBn1m', '5426882'), + (76597, 846, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mq1VBn1m', '5427083'), + (76598, 846, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mq1VBn1m', '5441125'), + (76599, 846, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mq1VBn1m', '5441126'), + (76600, 846, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mq1VBn1m', '5441128'), + (76601, 846, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mq1VBn1m', '5441131'), + (76602, 846, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mq1VBn1m', '5441132'), + (76603, 846, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mq1VBn1m', '5446643'), + (76604, 846, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mq1VBn1m', '5453325'), + (76605, 846, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mq1VBn1m', '5454516'), + (76606, 846, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mq1VBn1m', '5454605'), + (76607, 846, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mq1VBn1m', '5455037'), + (76608, 846, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mq1VBn1m', '5461278'), + (76609, 846, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mq1VBn1m', '5469480'), + (76610, 846, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mq1VBn1m', '5471073'), + (76611, 846, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mq1VBn1m', '5474663'), + (76612, 846, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mq1VBn1m', '5482022'), + (76613, 846, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mq1VBn1m', '5482793'), + (76614, 846, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mq1VBn1m', '5488912'), + (76615, 846, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mq1VBn1m', '5492192'), + (76616, 846, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mq1VBn1m', '5493139'), + (76617, 846, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mq1VBn1m', '5493200'), + (76618, 846, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mq1VBn1m', '5502188'), + (76619, 846, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mq1VBn1m', '5505059'), + (76620, 846, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mq1VBn1m', '5509055'), + (76621, 846, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mq1VBn1m', '5512862'), + (76622, 846, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mq1VBn1m', '5513985'), + (76623, 846, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', 'mq1VBn1m', '5519981'), + (76624, 846, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mq1VBn1m', '5522550'), + (76625, 846, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mq1VBn1m', '5534683'), + (76626, 846, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mq1VBn1m', '5546619'), + (76627, 846, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mq1VBn1m', '5555245'), + (76628, 846, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mq1VBn1m', '5557747'), + (76629, 846, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mq1VBn1m', '6045684'), + (76630, 847, 157, 'not_attending', '2020-09-14 00:02:09', '2025-12-17 19:47:56', '841kEKMm', '3058694'), + (76631, 847, 158, 'not_attending', '2020-09-26 00:13:14', '2025-12-17 19:47:52', '841kEKMm', '3058695'), + (76632, 847, 160, 'not_attending', '2020-10-17 22:33:50', '2025-12-17 19:47:52', '841kEKMm', '3058697'), + (76633, 847, 161, 'not_attending', '2020-10-09 23:54:19', '2025-12-17 19:47:52', '841kEKMm', '3058698'), + (76634, 847, 162, 'not_attending', '2020-10-11 18:40:10', '2025-12-17 19:47:52', '841kEKMm', '3058699'), + (76635, 847, 163, 'not_attending', '2020-10-28 13:16:09', '2025-12-17 19:47:53', '841kEKMm', '3058700'), + (76636, 847, 221, 'not_attending', '2020-09-13 22:56:08', '2025-12-17 19:47:56', '841kEKMm', '3129265'), + (76637, 847, 223, 'attending', '2020-09-12 23:07:51', '2025-12-17 19:47:56', '841kEKMm', '3129980'), + (76638, 847, 241, 'not_attending', '2020-10-01 23:31:56', '2025-12-17 19:47:52', '841kEKMm', '3149472'), + (76639, 847, 242, 'not_attending', '2020-09-13 22:56:41', '2025-12-17 19:47:56', '841kEKMm', '3149473'), + (76640, 847, 244, 'not_attending', '2020-10-17 22:33:30', '2025-12-17 19:47:52', '841kEKMm', '3149475'), + (76641, 847, 296, 'not_attending', '2020-09-15 16:44:33', '2025-12-17 19:47:56', '841kEKMm', '3172876'), + (76642, 847, 311, 'not_attending', '2020-09-13 22:55:51', '2025-12-17 19:47:56', '841kEKMm', '3186057'), + (76643, 847, 323, 'not_attending', '2020-09-15 16:44:37', '2025-12-17 19:47:56', '841kEKMm', '3197081'), + (76644, 847, 326, 'not_attending', '2020-09-26 00:13:07', '2025-12-17 19:47:52', '841kEKMm', '3197084'), + (76645, 847, 328, 'not_attending', '2020-09-28 12:13:02', '2025-12-17 19:47:52', '841kEKMm', '3197086'), + (76646, 847, 329, 'not_attending', '2020-09-28 12:14:26', '2025-12-17 19:47:52', '841kEKMm', '3197087'), + (76647, 847, 333, 'not_attending', '2020-10-01 23:31:58', '2025-12-17 19:47:52', '841kEKMm', '3199782'), + (76648, 847, 336, 'not_attending', '2020-09-15 16:40:38', '2025-12-17 19:47:56', '841kEKMm', '3200495'), + (76649, 847, 340, 'attending', '2020-09-18 22:03:35', '2025-12-17 19:47:56', '841kEKMm', '3204470'), + (76650, 847, 341, 'not_attending', '2020-09-24 19:34:02', '2025-12-17 19:47:52', '841kEKMm', '3204471'), + (76651, 847, 342, 'not_attending', '2020-10-02 19:43:21', '2025-12-17 19:47:52', '841kEKMm', '3204472'), + (76652, 847, 343, 'not_attending', '2020-09-21 00:52:54', '2025-12-17 19:47:56', '841kEKMm', '3206759'), + (76653, 847, 344, 'not_attending', '2020-10-17 22:34:18', '2025-12-17 19:47:53', '841kEKMm', '3206906'), + (76654, 847, 346, 'not_attending', '2020-09-15 16:40:35', '2025-12-17 19:47:56', '841kEKMm', '3207515'), + (76655, 847, 347, 'not_attending', '2020-09-21 00:53:21', '2025-12-17 19:47:51', '841kEKMm', '3207930'), + (76656, 847, 348, 'not_attending', '2020-09-27 02:35:41', '2025-12-17 19:47:52', '841kEKMm', '3209159'), + (76657, 847, 349, 'not_attending', '2020-09-15 16:40:41', '2025-12-17 19:47:56', '841kEKMm', '3209194'), + (76658, 847, 350, 'attending', '2020-09-12 23:07:54', '2025-12-17 19:47:56', '841kEKMm', '3209255'), + (76659, 847, 351, 'not_attending', '2020-09-15 16:44:09', '2025-12-17 19:47:56', '841kEKMm', '3209257'), + (76660, 847, 352, 'not_attending', '2020-09-13 22:56:00', '2025-12-17 19:47:56', '841kEKMm', '3210514'), + (76661, 847, 354, 'not_attending', '2020-09-20 16:43:41', '2025-12-17 19:47:56', '841kEKMm', '3212570'), + (76662, 847, 357, 'not_attending', '2020-09-28 12:13:00', '2025-12-17 19:47:52', '841kEKMm', '3212573'), + (76663, 847, 358, 'not_attending', '2020-09-19 18:45:33', '2025-12-17 19:47:56', '841kEKMm', '3212579'), + (76664, 847, 359, 'not_attending', '2020-09-20 16:43:39', '2025-12-17 19:47:56', '841kEKMm', '3212624'), + (76665, 847, 360, 'not_attending', '2020-09-15 16:41:12', '2025-12-17 19:47:56', '841kEKMm', '3212671'), + (76666, 847, 361, 'not_attending', '2020-09-15 16:41:24', '2025-12-17 19:47:56', '841kEKMm', '3213323'), + (76667, 847, 362, 'attending', '2020-09-26 22:38:31', '2025-12-17 19:47:52', '841kEKMm', '3214207'), + (76668, 847, 363, 'not_attending', '2020-09-27 02:35:27', '2025-12-17 19:47:52', '841kEKMm', '3217037'), + (76669, 847, 365, 'not_attending', '2020-09-20 14:30:58', '2025-12-17 19:47:52', '841kEKMm', '3218510'), + (76670, 847, 366, 'not_attending', '2020-09-22 21:32:24', '2025-12-17 19:47:56', '841kEKMm', '3219750'), + (76671, 847, 367, 'not_attending', '2020-09-24 21:19:42', '2025-12-17 19:47:51', '841kEKMm', '3219751'), + (76672, 847, 368, 'not_attending', '2020-09-28 12:14:19', '2025-12-17 19:47:52', '841kEKMm', '3221403'), + (76673, 847, 369, 'not_attending', '2020-10-09 23:54:46', '2025-12-17 19:47:52', '841kEKMm', '3221404'), + (76674, 847, 370, 'not_attending', '2020-10-13 12:17:12', '2025-12-17 19:47:52', '841kEKMm', '3221405'), + (76675, 847, 372, 'not_attending', '2020-10-17 22:33:31', '2025-12-17 19:47:52', '841kEKMm', '3221407'), + (76676, 847, 373, 'not_attending', '2020-10-17 22:33:44', '2025-12-17 19:47:52', '841kEKMm', '3221413'), + (76677, 847, 375, 'not_attending', '2020-10-08 22:59:50', '2025-12-17 19:47:52', '841kEKMm', '3222825'), + (76678, 847, 378, 'not_attending', '2020-09-27 02:35:18', '2025-12-17 19:47:52', '841kEKMm', '3223725'), + (76679, 847, 379, 'not_attending', '2020-10-01 23:31:51', '2025-12-17 19:47:52', '841kEKMm', '3226266'), + (76680, 847, 380, 'not_attending', '2020-09-30 22:15:14', '2025-12-17 19:47:52', '841kEKMm', '3226281'), + (76681, 847, 383, 'not_attending', '2020-09-28 12:14:22', '2025-12-17 19:47:52', '841kEKMm', '3227946'), + (76682, 847, 385, 'attending', '2020-10-03 16:57:24', '2025-12-17 19:47:52', '841kEKMm', '3228698'), + (76683, 847, 386, 'not_attending', '2020-10-10 23:10:54', '2025-12-17 19:47:52', '841kEKMm', '3228699'), + (76684, 847, 387, 'not_attending', '2020-10-17 22:32:33', '2025-12-17 19:47:52', '841kEKMm', '3228700'), + (76685, 847, 388, 'not_attending', '2020-10-24 22:46:13', '2025-12-17 19:47:52', '841kEKMm', '3228701'), + (76686, 847, 389, 'not_attending', '2020-09-30 22:15:06', '2025-12-17 19:47:52', '841kEKMm', '3231284'), + (76687, 847, 390, 'not_attending', '2020-10-01 23:31:49', '2025-12-17 19:47:52', '841kEKMm', '3231510'), + (76688, 847, 392, 'not_attending', '2020-10-28 13:15:51', '2025-12-17 19:47:53', '841kEKMm', '3236447'), + (76689, 847, 411, 'maybe', '2020-10-09 23:54:26', '2025-12-17 19:47:52', '841kEKMm', '3236596'), + (76690, 847, 413, 'not_attending', '2020-10-17 22:33:36', '2025-12-17 19:47:52', '841kEKMm', '3236670'), + (76691, 847, 414, 'not_attending', '2020-10-17 22:33:25', '2025-12-17 19:47:52', '841kEKMm', '3237277'), + (76692, 847, 415, 'not_attending', '2020-10-09 23:54:42', '2025-12-17 19:47:52', '841kEKMm', '3238044'), + (76693, 847, 416, 'not_attending', '2020-10-07 23:45:18', '2025-12-17 19:47:52', '841kEKMm', '3238073'), + (76694, 847, 417, 'not_attending', '2020-10-13 12:17:09', '2025-12-17 19:47:52', '841kEKMm', '3238779'), + (76695, 847, 418, 'not_attending', '2020-10-13 12:17:05', '2025-12-17 19:47:52', '841kEKMm', '3241728'), + (76696, 847, 420, 'not_attending', '2020-10-13 12:17:24', '2025-12-17 19:47:52', '841kEKMm', '3245293'), + (76697, 847, 421, 'not_attending', '2020-10-17 22:33:38', '2025-12-17 19:47:52', '841kEKMm', '3245294'), + (76698, 847, 424, 'not_attending', '2020-10-13 13:52:43', '2025-12-17 19:47:52', '841kEKMm', '3245751'), + (76699, 847, 425, 'not_attending', '2020-10-14 14:38:50', '2025-12-17 19:47:52', '841kEKMm', '3250097'), + (76700, 847, 426, 'not_attending', '2020-10-17 22:33:21', '2025-12-17 19:47:52', '841kEKMm', '3250232'), + (76701, 847, 430, 'not_attending', '2020-10-17 22:33:34', '2025-12-17 19:47:52', '841kEKMm', '3253094'), + (76702, 847, 433, 'not_attending', '2020-11-06 15:31:24', '2025-12-17 19:47:53', '841kEKMm', '3254417'), + (76703, 847, 435, 'not_attending', '2020-10-17 22:33:46', '2025-12-17 19:47:52', '841kEKMm', '3254790'), + (76704, 847, 436, 'not_attending', '2020-10-20 17:24:26', '2025-12-17 19:47:52', '841kEKMm', '3256119'), + (76705, 847, 437, 'not_attending', '2020-10-28 13:14:57', '2025-12-17 19:47:53', '841kEKMm', '3256160'), + (76706, 847, 438, 'not_attending', '2020-10-31 22:45:41', '2025-12-17 19:47:53', '841kEKMm', '3256163'), + (76707, 847, 439, 'not_attending', '2020-10-28 13:14:50', '2025-12-17 19:47:53', '841kEKMm', '3256164'), + (76708, 847, 440, 'not_attending', '2020-11-08 02:10:17', '2025-12-17 19:47:53', '841kEKMm', '3256168'), + (76709, 847, 441, 'maybe', '2020-11-10 03:06:43', '2025-12-17 19:47:54', '841kEKMm', '3256169'), + (76710, 847, 443, 'not_attending', '2020-10-24 23:10:07', '2025-12-17 19:47:53', '841kEKMm', '3263578'), + (76711, 847, 444, 'not_attending', '2020-10-30 20:13:10', '2025-12-17 19:47:53', '841kEKMm', '3263745'), + (76712, 847, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', '841kEKMm', '3266138'), + (76713, 847, 446, 'not_attending', '2020-10-27 17:06:00', '2025-12-17 19:47:53', '841kEKMm', '3267163'), + (76714, 847, 447, 'not_attending', '2020-10-28 13:14:52', '2025-12-17 19:47:53', '841kEKMm', '3267895'), + (76715, 847, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '841kEKMm', '3276428'), + (76716, 847, 459, 'not_attending', '2020-11-09 03:22:24', '2025-12-17 19:47:54', '841kEKMm', '3281467'), + (76717, 847, 462, 'maybe', '2020-11-09 03:22:21', '2025-12-17 19:47:54', '841kEKMm', '3281470'), + (76718, 847, 463, 'not_attending', '2020-11-14 02:44:29', '2025-12-17 19:47:54', '841kEKMm', '3281553'), + (76719, 847, 464, 'maybe', '2020-11-19 03:15:58', '2025-12-17 19:47:54', '841kEKMm', '3281554'), + (76720, 847, 466, 'not_attending', '2020-11-09 03:22:28', '2025-12-17 19:47:54', '841kEKMm', '3281829'), + (76721, 847, 468, 'not_attending', '2020-11-22 02:28:39', '2025-12-17 19:47:54', '841kEKMm', '3285413'), + (76722, 847, 469, 'maybe', '2020-11-23 03:30:44', '2025-12-17 19:47:54', '841kEKMm', '3285414'), + (76723, 847, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '841kEKMm', '3297764'), + (76724, 847, 487, 'not_attending', '2020-11-30 13:31:12', '2025-12-17 19:47:54', '841kEKMm', '3311122'), + (76725, 847, 493, 'not_attending', '2020-12-06 00:46:50', '2025-12-17 19:47:54', '841kEKMm', '3313856'), + (76726, 847, 499, 'not_attending', '2020-12-12 00:24:02', '2025-12-17 19:47:55', '841kEKMm', '3314909'), + (76727, 847, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '841kEKMm', '3314964'), + (76728, 847, 502, 'not_attending', '2020-12-13 00:56:22', '2025-12-17 19:47:55', '841kEKMm', '3323365'), + (76729, 847, 507, 'not_attending', '2020-12-22 00:19:38', '2025-12-17 19:47:48', '841kEKMm', '3324148'), + (76730, 847, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '841kEKMm', '3329383'), + (76731, 847, 516, 'attending', '2020-12-23 13:05:25', '2025-12-17 19:47:48', '841kEKMm', '3334530'), + (76732, 847, 523, 'attending', '2020-12-22 00:19:48', '2025-12-17 19:47:48', '841kEKMm', '3342960'), + (76733, 847, 525, 'not_attending', '2020-12-22 00:19:40', '2025-12-17 19:47:48', '841kEKMm', '3350467'), + (76734, 847, 526, 'maybe', '2020-12-22 00:20:20', '2025-12-17 19:47:48', '841kEKMm', '3351539'), + (76735, 847, 532, 'not_attending', '2021-01-09 01:43:51', '2025-12-17 19:47:48', '841kEKMm', '3381412'), + (76736, 847, 534, 'not_attending', '2021-01-07 14:53:38', '2025-12-17 19:47:48', '841kEKMm', '3384157'), + (76737, 847, 535, 'maybe', '2021-01-07 14:53:18', '2025-12-17 19:47:48', '841kEKMm', '3384729'), + (76738, 847, 536, 'not_attending', '2021-01-10 01:57:26', '2025-12-17 19:47:48', '841kEKMm', '3386848'), + (76739, 847, 540, 'not_attending', '2021-01-07 14:54:29', '2025-12-17 19:47:48', '841kEKMm', '3389527'), + (76740, 847, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '841kEKMm', '3396499'), + (76741, 847, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', '841kEKMm', '3403650'), + (76742, 847, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '841kEKMm', '3406988'), + (76743, 847, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', '841kEKMm', '3416576'), + (76744, 847, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '841kEKMm', '3418925'), + (76745, 847, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', '841kEKMm', '3430267'), + (76746, 847, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '841kEKMm', '3470303'), + (76747, 847, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', '841kEKMm', '3470305'), + (76748, 847, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '841kEKMm', '3470991'), + (76749, 847, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '841kEKMm', '3517815'), + (76750, 847, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '841kEKMm', '3517816'), + (76751, 847, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', '841kEKMm', '3523941'), + (76752, 847, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '841kEKMm', '3533850'), + (76753, 847, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '841kEKMm', '3536632'), + (76754, 847, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '841kEKMm', '3536656'), + (76755, 847, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '841kEKMm', '3539916'), + (76756, 847, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '841kEKMm', '3539917'), + (76757, 847, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '841kEKMm', '3539918'), + (76758, 847, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '841kEKMm', '3539919'), + (76759, 847, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '841kEKMm', '3539920'), + (76760, 847, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '841kEKMm', '3539921'), + (76761, 847, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '841kEKMm', '3539922'), + (76762, 847, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '841kEKMm', '3539923'), + (76763, 847, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '841kEKMm', '3539927'), + (76764, 847, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '841kEKMm', '3582734'), + (76765, 847, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '841kEKMm', '3583262'), + (76766, 847, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '841kEKMm', '3619523'), + (76767, 847, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '841kEKMm', '3661369'), + (76768, 847, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '841kEKMm', '3674262'), + (76769, 847, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '841kEKMm', '3677402'), + (76770, 847, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '841kEKMm', '3730212'), + (76771, 847, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '841kEKMm', '3793156'), + (76772, 847, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '841kEKMm', '3974109'), + (76773, 847, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '841kEKMm', '3975311'), + (76774, 847, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '841kEKMm', '3975312'), + (76775, 847, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '841kEKMm', '3994992'), + (76776, 847, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '841kEKMm', '4014338'), + (76777, 847, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '841kEKMm', '4021848'), + (76778, 847, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '841kEKMm', '4136744'), + (76779, 847, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '841kEKMm', '4136937'), + (76780, 847, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '841kEKMm', '4136938'), + (76781, 847, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '841kEKMm', '4136947'), + (76782, 847, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '841kEKMm', '4210314'), + (76783, 847, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '841kEKMm', '4225444'), + (76784, 847, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '841kEKMm', '4239259'), + (76785, 847, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '841kEKMm', '4240316'), + (76786, 847, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '841kEKMm', '4240317'), + (76787, 847, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '841kEKMm', '4240318'), + (76788, 847, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '841kEKMm', '4240320'), + (76789, 847, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '841kEKMm', '4250163'), + (76790, 847, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '841kEKMm', '4275957'), + (76791, 847, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '841kEKMm', '4277819'), + (76792, 847, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '841kEKMm', '4301723'), + (76793, 847, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '841kEKMm', '4302093'), + (76794, 847, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '841kEKMm', '4304151'), + (76795, 847, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '841kEKMm', '4356801'), + (76796, 847, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '841kEKMm', '4366186'), + (76797, 847, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '841kEKMm', '4366187'), + (76798, 847, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '841kEKMm', '4420735'), + (76799, 847, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '841kEKMm', '4420738'), + (76800, 847, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '841kEKMm', '4420739'), + (76801, 847, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '841kEKMm', '4420741'), + (76802, 847, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '841kEKMm', '4420744'), + (76803, 847, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '841kEKMm', '4420747'), + (76804, 847, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '841kEKMm', '4420748'), + (76805, 847, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '841kEKMm', '4420749'), + (76806, 847, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '841kEKMm', '4461883'), + (76807, 847, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '841kEKMm', '4508342'), + (76808, 847, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '841kEKMm', '4568602'), + (76809, 847, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '841kEKMm', '4572153'), + (76810, 847, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '841kEKMm', '4585962'), + (76811, 847, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '841kEKMm', '4596356'), + (76812, 847, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '841kEKMm', '4598860'), + (76813, 847, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '841kEKMm', '4598861'), + (76814, 847, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '841kEKMm', '4602797'), + (76815, 847, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '841kEKMm', '4637896'), + (76816, 847, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '841kEKMm', '4642994'), + (76817, 847, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '841kEKMm', '4642995'), + (76818, 847, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '841kEKMm', '4642996'), + (76819, 847, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '841kEKMm', '4642997'), + (76820, 847, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '841kEKMm', '4645687'), + (76821, 847, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '841kEKMm', '4645698'), + (76822, 847, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '841kEKMm', '4645704'), + (76823, 847, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '841kEKMm', '4645705'), + (76824, 847, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '841kEKMm', '4668385'), + (76825, 847, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '841kEKMm', '4694407'), + (76826, 847, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '841kEKMm', '4736497'), + (76827, 847, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '841kEKMm', '4736499'), + (76828, 847, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '841kEKMm', '4736500'), + (76829, 847, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '841kEKMm', '4736503'), + (76830, 847, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '841kEKMm', '4736504'), + (76831, 847, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '841kEKMm', '4746789'), + (76832, 847, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '841kEKMm', '4753929'), + (76833, 847, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '841kEKMm', '5038850'), + (76834, 847, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '841kEKMm', '5045826'), + (76835, 847, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '841kEKMm', '5132533'), + (76836, 847, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '841kEKMm', '5186582'), + (76837, 847, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '841kEKMm', '5186583'), + (76838, 847, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '841kEKMm', '5186585'), + (76839, 847, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '841kEKMm', '5190437'), + (76840, 847, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '841kEKMm', '5195095'), + (76841, 847, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '841kEKMm', '5215989'), + (76842, 847, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '841kEKMm', '5223686'), + (76843, 847, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '841kEKMm', '5247467'), + (76844, 847, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '841kEKMm', '5260800'), + (76845, 847, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '841kEKMm', '5269930'), + (76846, 847, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '841kEKMm', '5271448'), + (76847, 847, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '841kEKMm', '5271449'), + (76848, 847, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '841kEKMm', '5278159'), + (76849, 847, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '841kEKMm', '5363695'), + (76850, 847, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '841kEKMm', '5365960'), + (76851, 847, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '841kEKMm', '5378247'), + (76852, 847, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '841kEKMm', '5389605'), + (76853, 847, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '841kEKMm', '5397265'), + (76854, 847, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '841kEKMm', '5404786'), + (76855, 847, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '841kEKMm', '5405203'), + (76856, 847, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '841kEKMm', '5412550'), + (76857, 847, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '841kEKMm', '5415046'), + (76858, 847, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '841kEKMm', '5422086'), + (76859, 847, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '841kEKMm', '5422406'), + (76860, 847, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '841kEKMm', '5424565'), + (76861, 847, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '841kEKMm', '5426882'), + (76862, 847, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '841kEKMm', '5441125'), + (76863, 847, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '841kEKMm', '5441126'), + (76864, 847, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '841kEKMm', '5441128'), + (76865, 847, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '841kEKMm', '5441131'), + (76866, 847, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '841kEKMm', '5441132'), + (76867, 847, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '841kEKMm', '5453325'), + (76868, 847, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '841kEKMm', '5454516'), + (76869, 847, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '841kEKMm', '5454605'), + (76870, 847, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '841kEKMm', '5455037'), + (76871, 847, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '841kEKMm', '5461278'), + (76872, 847, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '841kEKMm', '5469480'), + (76873, 847, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '841kEKMm', '5474663'), + (76874, 847, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '841kEKMm', '5482022'), + (76875, 847, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '841kEKMm', '5488912'), + (76876, 847, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '841kEKMm', '5492192'), + (76877, 847, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '841kEKMm', '5493139'), + (76878, 847, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '841kEKMm', '5493200'), + (76879, 847, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '841kEKMm', '5502188'), + (76880, 847, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '841kEKMm', '5505059'), + (76881, 847, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '841kEKMm', '5509055'), + (76882, 847, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '841kEKMm', '5512862'), + (76883, 847, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '841kEKMm', '5513985'), + (76884, 847, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', '841kEKMm', '5519981'), + (76885, 847, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '841kEKMm', '5522550'), + (76886, 847, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '841kEKMm', '5534683'), + (76887, 847, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '841kEKMm', '5537735'), + (76888, 847, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '841kEKMm', '5540859'), + (76889, 847, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '841kEKMm', '5546619'), + (76890, 847, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '841kEKMm', '5557747'), + (76891, 847, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '841kEKMm', '5560255'), + (76892, 847, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '841kEKMm', '5562906'), + (76893, 847, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '841kEKMm', '5600604'), + (76894, 847, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '841kEKMm', '5605544'), + (76895, 847, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '841kEKMm', '5630960'), + (76896, 847, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '841kEKMm', '5630961'), + (76897, 847, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '841kEKMm', '5630962'), + (76898, 847, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '841kEKMm', '5630966'), + (76899, 847, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '841kEKMm', '5630967'), + (76900, 847, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '841kEKMm', '5630968'), + (76901, 847, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '841kEKMm', '5635406'), + (76902, 847, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '841kEKMm', '5638765'), + (76903, 847, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '841kEKMm', '5640097'), + (76904, 847, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '841kEKMm', '5640843'), + (76905, 847, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '841kEKMm', '5641521'), + (76906, 847, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '841kEKMm', '5642818'), + (76907, 847, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '841kEKMm', '5652395'), + (76908, 847, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '841kEKMm', '5670445'), + (76909, 847, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '841kEKMm', '5671637'), + (76910, 847, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '841kEKMm', '5672329'), + (76911, 847, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '841kEKMm', '5674057'), + (76912, 847, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '841kEKMm', '5674060'), + (76913, 847, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '841kEKMm', '5677461'), + (76914, 847, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '841kEKMm', '5698046'), + (76915, 847, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '841kEKMm', '5699760'), + (76916, 847, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '841kEKMm', '5741601'), + (76917, 847, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '841kEKMm', '5763458'), + (76918, 847, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '841kEKMm', '5774172'), + (76919, 847, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', '841kEKMm', '5818247'), + (76920, 847, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '841kEKMm', '5819471'), + (76921, 847, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '841kEKMm', '5827739'), + (76922, 847, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '841kEKMm', '5844306'), + (76923, 847, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '841kEKMm', '5850159'), + (76924, 847, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '841kEKMm', '5858999'), + (76925, 847, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '841kEKMm', '5871984'), + (76926, 847, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '841kEKMm', '5876354'), + (76927, 847, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '841kEKMm', '5880939'), + (76928, 847, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '841kEKMm', '5880940'), + (76929, 847, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '841kEKMm', '5880942'), + (76930, 847, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '841kEKMm', '5880943'), + (76931, 847, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '841kEKMm', '5887890'), + (76932, 847, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '841kEKMm', '5888598'), + (76933, 847, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '841kEKMm', '5893260'), + (76934, 847, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '841kEKMm', '5899826'), + (76935, 847, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '841kEKMm', '5900199'), + (76936, 847, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '841kEKMm', '5900200'), + (76937, 847, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '841kEKMm', '5900202'), + (76938, 847, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '841kEKMm', '5900203'), + (76939, 847, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '841kEKMm', '5901108'), + (76940, 847, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '841kEKMm', '5901126'), + (76941, 847, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '841kEKMm', '5901606'), + (76942, 847, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '841kEKMm', '5909655'), + (76943, 847, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '841kEKMm', '5910522'), + (76944, 847, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '841kEKMm', '5910526'), + (76945, 847, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '841kEKMm', '5910528'), + (76946, 847, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '841kEKMm', '5916219'), + (76947, 847, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '841kEKMm', '5936234'), + (76948, 847, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '841kEKMm', '5958351'), + (76949, 847, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '841kEKMm', '5959751'), + (76950, 847, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '841kEKMm', '5959755'), + (76951, 847, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '841kEKMm', '5960055'), + (76952, 847, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '841kEKMm', '5961684'), + (76953, 847, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '841kEKMm', '5962132'), + (76954, 847, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '841kEKMm', '5962133'), + (76955, 847, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '841kEKMm', '5962134'), + (76956, 847, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '841kEKMm', '5962317'), + (76957, 847, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '841kEKMm', '5962318'), + (76958, 847, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '841kEKMm', '5965933'), + (76959, 847, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '841kEKMm', '5967014'), + (76960, 847, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '841kEKMm', '5972815'), + (76961, 847, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '841kEKMm', '5974016'), + (76962, 847, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '841kEKMm', '5981515'), + (76963, 847, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '841kEKMm', '5993516'), + (76964, 847, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '841kEKMm', '5998939'), + (76965, 847, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '841kEKMm', '6028191'), + (76966, 847, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '841kEKMm', '6040066'), + (76967, 847, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '841kEKMm', '6042717'), + (76968, 847, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '841kEKMm', '6044838'), + (76969, 847, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '841kEKMm', '6044839'), + (76970, 847, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841kEKMm', '6045684'), + (76971, 847, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '841kEKMm', '6050104'), + (76972, 847, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '841kEKMm', '6053195'), + (76973, 847, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '841kEKMm', '6053198'), + (76974, 847, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '841kEKMm', '6056085'), + (76975, 847, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '841kEKMm', '6056916'), + (76976, 847, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '841kEKMm', '6059290'), + (76977, 847, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '841kEKMm', '6060328'), + (76978, 847, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '841kEKMm', '6061037'), + (76979, 847, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '841kEKMm', '6061039'), + (76980, 847, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '841kEKMm', '6067245'), + (76981, 847, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '841kEKMm', '6068094'), + (76982, 847, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '841kEKMm', '6068252'), + (76983, 847, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '841kEKMm', '6068253'), + (76984, 847, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '841kEKMm', '6068254'), + (76985, 847, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '841kEKMm', '6068280'), + (76986, 847, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '841kEKMm', '6069093'), + (76987, 847, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '841kEKMm', '6072528'), + (76988, 847, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '841kEKMm', '6079840'), + (76989, 847, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '841kEKMm', '6083398'), + (76990, 847, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '841kEKMm', '6093504'), + (76991, 847, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '841kEKMm', '6097414'), + (76992, 847, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '841kEKMm', '6097442'), + (76993, 847, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '841kEKMm', '6097684'), + (76994, 847, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '841kEKMm', '6098762'), + (76995, 847, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '841kEKMm', '6101361'), + (76996, 847, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '841kEKMm', '6101362'), + (76997, 847, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '841kEKMm', '6107314'), + (76998, 847, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '841kEKMm', '6120034'), + (76999, 847, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', '841kEKMm', '6136733'), + (77000, 847, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '841kEKMm', '6137989'), + (77001, 847, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '841kEKMm', '6150864'), + (77002, 847, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '841kEKMm', '6155491'), + (77003, 847, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '841kEKMm', '6164417'), + (77004, 847, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '841kEKMm', '6166388'), + (77005, 847, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '841kEKMm', '6176439'), + (77006, 847, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '841kEKMm', '6182410'), + (77007, 847, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '841kEKMm', '6185812'), + (77008, 847, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '841kEKMm', '6187651'), + (77009, 847, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '841kEKMm', '6187963'), + (77010, 847, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '841kEKMm', '6187964'), + (77011, 847, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '841kEKMm', '6187966'), + (77012, 847, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '841kEKMm', '6187967'), + (77013, 847, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '841kEKMm', '6187969'), + (77014, 847, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '841kEKMm', '6334878'), + (77015, 847, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '841kEKMm', '6337236'), + (77016, 847, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '841kEKMm', '6337970'), + (77017, 847, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '841kEKMm', '6338308'), + (77018, 847, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '841kEKMm', '6341710'), + (77019, 847, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '841kEKMm', '6342044'), + (77020, 847, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '841kEKMm', '6342298'), + (77021, 847, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '841kEKMm', '6343294'), + (77022, 847, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '841kEKMm', '6347034'), + (77023, 847, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '841kEKMm', '6347056'), + (77024, 847, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '841kEKMm', '6353830'), + (77025, 847, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '841kEKMm', '6353831'), + (77026, 847, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '841kEKMm', '6357867'), + (77027, 847, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '841kEKMm', '6358652'), + (77028, 847, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '841kEKMm', '6361709'), + (77029, 847, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '841kEKMm', '6361710'), + (77030, 847, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '841kEKMm', '6361711'), + (77031, 847, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '841kEKMm', '6361712'), + (77032, 847, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '841kEKMm', '6361713'), + (77033, 847, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '841kEKMm', '6382573'), + (77034, 847, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '841kEKMm', '6388604'), + (77035, 847, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '841kEKMm', '6394629'), + (77036, 847, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '841kEKMm', '6394631'), + (77037, 847, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '841kEKMm', '6440863'), + (77038, 847, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '841kEKMm', '6445440'), + (77039, 847, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '841kEKMm', '6453951'), + (77040, 847, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '841kEKMm', '6461696'), + (77041, 847, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '841kEKMm', '6462129'), + (77042, 847, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '841kEKMm', '6463218'), + (77043, 847, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '841kEKMm', '6472181'), + (77044, 847, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '841kEKMm', '6482693'), + (77045, 847, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '841kEKMm', '6484200'), + (77046, 847, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '841kEKMm', '6484680'), + (77047, 847, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '841kEKMm', '6507741'), + (77048, 847, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '841kEKMm', '6514659'), + (77049, 847, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '841kEKMm', '6514660'), + (77050, 847, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '841kEKMm', '6519103'), + (77051, 847, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '841kEKMm', '6535681'), + (77052, 847, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '841kEKMm', '6584747'), + (77053, 847, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '841kEKMm', '6587097'), + (77054, 847, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '841kEKMm', '6609022'), + (77055, 847, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '841kEKMm', '6632757'), + (77056, 847, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '841kEKMm', '6644187'), + (77057, 847, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '841kEKMm', '6648951'), + (77058, 847, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '841kEKMm', '6648952'), + (77059, 847, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '841kEKMm', '6655401'), + (77060, 847, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '841kEKMm', '6661585'), + (77061, 847, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '841kEKMm', '6661588'), + (77062, 847, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '841kEKMm', '6661589'), + (77063, 847, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '841kEKMm', '6699906'), + (77064, 847, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '841kEKMm', '6699913'), + (77065, 847, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '841kEKMm', '6701109'), + (77066, 847, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '841kEKMm', '6705219'), + (77067, 847, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '841kEKMm', '6710153'), + (77068, 847, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '841kEKMm', '6711552'), + (77069, 847, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '841kEKMm', '6711553'), + (77070, 847, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '841kEKMm', '6722688'), + (77071, 847, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '841kEKMm', '6730620'), + (77072, 847, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '841kEKMm', '6740364'), + (77073, 847, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '841kEKMm', '6743829'), + (77074, 847, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '841kEKMm', '7030380'), + (77075, 847, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '841kEKMm', '7033677'), + (77076, 847, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '841kEKMm', '7044715'), + (77077, 847, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '841kEKMm', '7050318'), + (77078, 847, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '841kEKMm', '7050319'), + (77079, 847, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '841kEKMm', '7050322'), + (77080, 847, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '841kEKMm', '7057804'), + (77081, 847, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '841kEKMm', '7072824'), + (77082, 847, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '841kEKMm', '7074348'), + (77083, 847, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '841kEKMm', '7074364'), + (77084, 847, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', '841kEKMm', '7089267'), + (77085, 847, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '841kEKMm', '7098747'), + (77086, 847, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '841kEKMm', '7113468'), + (77087, 847, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '841kEKMm', '7114856'), + (77088, 847, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '841kEKMm', '7114951'), + (77089, 847, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '841kEKMm', '7114955'), + (77090, 847, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '841kEKMm', '7114956'), + (77091, 847, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '841kEKMm', '7114957'), + (77092, 847, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '841kEKMm', '7159484'), + (77093, 847, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '841kEKMm', '7178446'), + (77094, 847, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', '841kEKMm', '7220467'), + (77095, 847, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '841kEKMm', '7240354'), + (77096, 847, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '841kEKMm', '7251633'), + (77097, 847, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '841kEKMm', '7324073'), + (77098, 847, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '841kEKMm', '7324074'), + (77099, 847, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '841kEKMm', '7324075'), + (77100, 847, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '841kEKMm', '7324078'), + (77101, 847, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '841kEKMm', '7324082'), + (77102, 847, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '841kEKMm', '7331457'), + (77103, 847, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '841kEKMm', '7363643'), + (77104, 847, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '841kEKMm', '7368606'), + (77105, 847, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '841kEKMm', '7397462'), + (77106, 847, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '841kEKMm', '7424275'), + (77107, 847, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '841kEKMm', '7432751'), + (77108, 847, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '841kEKMm', '7432752'), + (77109, 847, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '841kEKMm', '7432753'), + (77110, 847, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '841kEKMm', '7432754'), + (77111, 847, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '841kEKMm', '7432755'), + (77112, 847, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '841kEKMm', '7432756'), + (77113, 847, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '841kEKMm', '7432758'), + (77114, 847, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '841kEKMm', '7432759'), + (77115, 847, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '841kEKMm', '7433834'), + (77116, 847, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '841kEKMm', '7470197'), + (77117, 847, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '841kEKMm', '7685613'), + (77118, 847, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '841kEKMm', '7688194'), + (77119, 847, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '841kEKMm', '7688196'), + (77120, 847, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '841kEKMm', '7688289'), + (77121, 847, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '841kEKMm', '7692763'), + (77122, 847, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '841kEKMm', '7697552'), + (77123, 847, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '841kEKMm', '7699878'), + (77124, 847, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '841kEKMm', '7704043'), + (77125, 847, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '841kEKMm', '7712467'), + (77126, 847, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '841kEKMm', '7713585'), + (77127, 847, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '841kEKMm', '7713586'), + (77128, 847, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '841kEKMm', '7738518'), + (77129, 847, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '841kEKMm', '7750636'), + (77130, 847, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '841kEKMm', '7796540'), + (77131, 847, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '841kEKMm', '7796541'), + (77132, 847, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '841kEKMm', '7796542'), + (77133, 847, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '841kEKMm', '7825913'), + (77134, 847, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '841kEKMm', '7826209'), + (77135, 847, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '841kEKMm', '7834742'), + (77136, 847, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '841kEKMm', '7842108'), + (77137, 847, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '841kEKMm', '7842902'), + (77138, 847, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '841kEKMm', '7842903'), + (77139, 847, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '841kEKMm', '7842904'), + (77140, 847, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '841kEKMm', '7842905'), + (77141, 847, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '841kEKMm', '7855719'), + (77142, 847, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '841kEKMm', '7860683'), + (77143, 847, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '841kEKMm', '7860684'), + (77144, 847, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '841kEKMm', '7866095'), + (77145, 847, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '841kEKMm', '7869170'), + (77146, 847, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '841kEKMm', '7869188'), + (77147, 847, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '841kEKMm', '7869201'), + (77148, 847, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '841kEKMm', '7877465'), + (77149, 847, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '841kEKMm', '7888250'), + (77150, 847, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '841kEKMm', '7904777'), + (77151, 847, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '841kEKMm', '8349164'), + (77152, 847, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '841kEKMm', '8349545'), + (77153, 847, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '841kEKMm', '8368028'), + (77154, 847, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '841kEKMm', '8368029'), + (77155, 847, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '841kEKMm', '8388462'), + (77156, 847, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '841kEKMm', '8400273'), + (77157, 847, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '841kEKMm', '8400275'), + (77158, 847, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '841kEKMm', '8400276'), + (77159, 847, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '841kEKMm', '8404977'), + (77160, 847, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '841kEKMm', '8430783'), + (77161, 847, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '841kEKMm', '8430784'), + (77162, 847, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '841kEKMm', '8430799'), + (77163, 847, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '841kEKMm', '8430800'), + (77164, 847, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '841kEKMm', '8430801'), + (77165, 847, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '841kEKMm', '8438709'), + (77166, 847, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '841kEKMm', '8457738'), + (77167, 847, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '841kEKMm', '8459566'), + (77168, 847, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '841kEKMm', '8459567'), + (77169, 847, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '841kEKMm', '8461032'), + (77170, 847, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '841kEKMm', '8477877'), + (77171, 847, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '841kEKMm', '8485688'), + (77172, 847, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '841kEKMm', '8490587'), + (77173, 847, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '841kEKMm', '8493552'), + (77174, 847, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '841kEKMm', '8493553'), + (77175, 847, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '841kEKMm', '8493554'), + (77176, 847, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '841kEKMm', '8493555'), + (77177, 847, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '841kEKMm', '8493556'), + (77178, 847, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '841kEKMm', '8493557'), + (77179, 847, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '841kEKMm', '8493558'), + (77180, 847, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '841kEKMm', '8493559'), + (77181, 847, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '841kEKMm', '8493560'), + (77182, 847, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '841kEKMm', '8493561'), + (77183, 847, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '841kEKMm', '8493572'), + (77184, 847, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '841kEKMm', '8540725'), + (77185, 847, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '841kEKMm', '8555421'), + (77186, 848, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'm7Qjkb54', '4210314'), + (77187, 848, 902, 'attending', '2021-08-06 01:38:03', '2025-12-17 19:47:41', 'm7Qjkb54', '4240318'), + (77188, 848, 903, 'attending', '2021-08-14 23:02:33', '2025-12-17 19:47:42', 'm7Qjkb54', '4240320'), + (77189, 848, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'm7Qjkb54', '4302093'), + (77190, 848, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'm7Qjkb54', '4304151'), + (77191, 848, 947, 'not_attending', '2021-08-09 19:20:34', '2025-12-17 19:47:41', 'm7Qjkb54', '4315713'), + (77192, 848, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'm7Qjkb54', '4345519'), + (77193, 848, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'm7Qjkb54', '4356801'), + (77194, 848, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'm7Qjkb54', '4358025'), + (77195, 848, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'm7Qjkb54', '4366186'), + (77196, 848, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'm7Qjkb54', '4366187'), + (77197, 848, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'm7Qjkb54', '4402823'), + (77198, 848, 990, 'attending', '2021-09-03 20:44:59', '2025-12-17 19:47:43', 'm7Qjkb54', '4420735'), + (77199, 848, 991, 'attending', '2021-09-11 22:01:51', '2025-12-17 19:47:43', 'm7Qjkb54', '4420738'), + (77200, 848, 992, 'attending', '2021-09-18 21:38:52', '2025-12-17 19:47:33', 'm7Qjkb54', '4420739'), + (77201, 848, 993, 'maybe', '2021-09-25 20:47:04', '2025-12-17 19:47:34', 'm7Qjkb54', '4420741'), + (77202, 848, 995, 'attending', '2021-10-09 19:17:06', '2025-12-17 19:47:34', 'm7Qjkb54', '4420744'), + (77203, 848, 996, 'attending', '2021-10-16 17:22:43', '2025-12-17 19:47:35', 'm7Qjkb54', '4420747'), + (77204, 848, 997, 'attending', '2021-10-23 00:03:37', '2025-12-17 19:47:35', 'm7Qjkb54', '4420748'), + (77205, 848, 998, 'attending', '2021-10-28 20:45:41', '2025-12-17 19:47:36', 'm7Qjkb54', '4420749'), + (77206, 848, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm7Qjkb54', '4461883'), + (77207, 848, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm7Qjkb54', '4508342'), + (77208, 848, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm7Qjkb54', '4568602'), + (77209, 848, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm7Qjkb54', '4572153'), + (77210, 848, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'm7Qjkb54', '4585962'), + (77211, 848, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm7Qjkb54', '4596356'), + (77212, 848, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm7Qjkb54', '4598860'), + (77213, 848, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm7Qjkb54', '4598861'), + (77214, 848, 1099, 'maybe', '2021-11-06 21:40:44', '2025-12-17 19:47:36', 'm7Qjkb54', '4602797'), + (77215, 848, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm7Qjkb54', '4637896'), + (77216, 848, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm7Qjkb54', '4642994'), + (77217, 848, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm7Qjkb54', '4642995'), + (77218, 848, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm7Qjkb54', '4642996'), + (77219, 848, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm7Qjkb54', '4642997'), + (77220, 848, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm7Qjkb54', '4645687'), + (77221, 848, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm7Qjkb54', '4645698'), + (77222, 848, 1128, 'attending', '2021-11-20 07:51:35', '2025-12-17 19:47:37', 'm7Qjkb54', '4645704'), + (77223, 848, 1129, 'attending', '2021-11-27 21:10:38', '2025-12-17 19:47:37', 'm7Qjkb54', '4645705'), + (77224, 848, 1130, 'attending', '2021-12-04 22:20:36', '2025-12-17 19:47:37', 'm7Qjkb54', '4658824'), + (77225, 848, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm7Qjkb54', '4668385'), + (77226, 848, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'm7Qjkb54', '4694407'), + (77227, 848, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm7Qjkb54', '4736497'), + (77228, 848, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm7Qjkb54', '4736499'), + (77229, 848, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm7Qjkb54', '4736500'), + (77230, 848, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm7Qjkb54', '4736503'), + (77231, 848, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm7Qjkb54', '4736504'), + (77232, 848, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm7Qjkb54', '4746789'), + (77233, 848, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm7Qjkb54', '4753929'), + (77234, 848, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm7Qjkb54', '5038850'), + (77235, 848, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm7Qjkb54', '5045826'), + (77236, 848, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm7Qjkb54', '5132533'), + (77237, 848, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm7Qjkb54', '5186582'), + (77238, 848, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm7Qjkb54', '5186583'), + (77239, 848, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm7Qjkb54', '5186585'), + (77240, 848, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm7Qjkb54', '5190437'), + (77241, 848, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm7Qjkb54', '5215989'), + (77242, 848, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm7Qjkb54', '6045684'), + (77243, 849, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd56WXgrm', '6337970'), + (77244, 849, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd56WXgrm', '6342044'), + (77245, 849, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'd56WXgrm', '6342591'), + (77246, 849, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'd56WXgrm', '6343294'), + (77247, 849, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd56WXgrm', '6347034'), + (77248, 849, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd56WXgrm', '6347056'), + (77249, 849, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd56WXgrm', '6353830'), + (77250, 849, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd56WXgrm', '6353831'), + (77251, 849, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd56WXgrm', '6357867'), + (77252, 849, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd56WXgrm', '6358652'), + (77253, 849, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd56WXgrm', '6361709'), + (77254, 849, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd56WXgrm', '6361710'), + (77255, 849, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd56WXgrm', '6361711'), + (77256, 849, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd56WXgrm', '6361712'), + (77257, 849, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd56WXgrm', '6361713'), + (77258, 849, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd56WXgrm', '6382573'), + (77259, 849, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd56WXgrm', '6388604'), + (77260, 849, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd56WXgrm', '6394629'), + (77261, 849, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd56WXgrm', '6394631'), + (77262, 849, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd56WXgrm', '6431478'), + (77263, 850, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '1ArjgwZA', '7869188'), + (77264, 850, 3057, 'attending', '2025-03-24 18:19:49', '2025-12-17 19:46:19', '1ArjgwZA', '7890059'), + (77265, 850, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '1ArjgwZA', '7904777'), + (77266, 850, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '1ArjgwZA', '8349164'), + (77267, 850, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '1ArjgwZA', '8349545'), + (77268, 850, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '1ArjgwZA', '8353584'), + (77269, 850, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '1ArjgwZA', '8368028'), + (77270, 850, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '1ArjgwZA', '8368029'), + (77271, 850, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '1ArjgwZA', '8388462'), + (77272, 850, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '1ArjgwZA', '8400273'), + (77273, 850, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', '1ArjgwZA', '8400274'), + (77274, 850, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '1ArjgwZA', '8400275'), + (77275, 850, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', '1ArjgwZA', '8400276'), + (77276, 850, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '1ArjgwZA', '8404977'), + (77277, 850, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '1ArjgwZA', '8430783'), + (77278, 850, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '1ArjgwZA', '8430784'), + (77279, 850, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '1ArjgwZA', '8430799'), + (77280, 850, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '1ArjgwZA', '8430800'), + (77281, 850, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '1ArjgwZA', '8430801'), + (77282, 850, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '1ArjgwZA', '8438709'), + (77283, 850, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '1ArjgwZA', '8457738'), + (77284, 850, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '1ArjgwZA', '8459566'), + (77285, 850, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '1ArjgwZA', '8459567'), + (77286, 850, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '1ArjgwZA', '8461032'), + (77287, 850, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '1ArjgwZA', '8477877'), + (77288, 850, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '1ArjgwZA', '8485688'), + (77289, 851, 1700, 'maybe', '2022-10-01 19:53:53', '2025-12-17 19:47:12', '4vjVNj14', '5606814'), + (77290, 851, 1713, 'attending', '2022-10-20 22:09:46', '2025-12-17 19:47:13', '4vjVNj14', '5622108'), + (77291, 851, 1718, 'attending', '2022-10-18 22:02:56', '2025-12-17 19:47:12', '4vjVNj14', '5630907'), + (77292, 851, 1719, 'attending', '2022-10-08 02:00:56', '2025-12-17 19:47:12', '4vjVNj14', '5630958'), + (77293, 851, 1720, 'attending', '2022-10-15 03:13:31', '2025-12-17 19:47:12', '4vjVNj14', '5630959'), + (77294, 851, 1721, 'attending', '2022-10-16 23:37:29', '2025-12-17 19:47:13', '4vjVNj14', '5630960'), + (77295, 851, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4vjVNj14', '5630961'), + (77296, 851, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4vjVNj14', '5630962'), + (77297, 851, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4vjVNj14', '5630966'), + (77298, 851, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4vjVNj14', '5630967'), + (77299, 851, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4vjVNj14', '5630968'), + (77300, 851, 1727, 'attending', '2022-12-03 04:15:04', '2025-12-17 19:47:16', '4vjVNj14', '5630969'), + (77301, 851, 1730, 'maybe', '2022-10-06 20:10:36', '2025-12-17 19:47:12', '4vjVNj14', '5634666'), + (77302, 851, 1731, 'attending', '2022-10-07 22:29:34', '2025-12-17 19:47:12', '4vjVNj14', '5635226'), + (77303, 851, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4vjVNj14', '5635406'), + (77304, 851, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4vjVNj14', '5638765'), + (77305, 851, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4vjVNj14', '5640097'), + (77306, 851, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4vjVNj14', '5640843'), + (77307, 851, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4vjVNj14', '5641521'), + (77308, 851, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4vjVNj14', '5642818'), + (77309, 851, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4vjVNj14', '5652395'), + (77310, 851, 1761, 'attending', '2022-11-18 22:39:52', '2025-12-17 19:47:16', '4vjVNj14', '5670434'), + (77311, 851, 1762, 'attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4vjVNj14', '5670445'), + (77312, 851, 1763, 'maybe', '2022-11-11 19:28:43', '2025-12-17 19:47:15', '4vjVNj14', '5670803'), + (77313, 851, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4vjVNj14', '5671637'), + (77314, 851, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4vjVNj14', '5672329'), + (77315, 851, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4vjVNj14', '5674057'), + (77316, 851, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4vjVNj14', '5674060'), + (77317, 851, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4vjVNj14', '5677461'), + (77318, 851, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4vjVNj14', '5698046'), + (77319, 851, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4vjVNj14', '5699760'), + (77320, 851, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4vjVNj14', '5741601'), + (77321, 851, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4vjVNj14', '5763458'), + (77322, 851, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4vjVNj14', '5774172'), + (77323, 851, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4vjVNj14', '5818247'), + (77324, 851, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4vjVNj14', '5819471'), + (77325, 851, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4vjVNj14', '5827739'), + (77326, 851, 1844, 'attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4vjVNj14', '5844306'), + (77327, 851, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4vjVNj14', '5850159'), + (77328, 851, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4vjVNj14', '5858999'), + (77329, 851, 1852, 'attending', '2023-01-12 00:23:17', '2025-12-17 19:47:05', '4vjVNj14', '5869898'), + (77330, 851, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4vjVNj14', '5871984'), + (77331, 851, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4vjVNj14', '5876354'), + (77332, 851, 1864, 'attending', '2023-01-21 05:01:29', '2025-12-17 19:47:05', '4vjVNj14', '5879675'), + (77333, 851, 1865, 'attending', '2023-01-28 07:29:25', '2025-12-17 19:47:06', '4vjVNj14', '5879676'), + (77334, 851, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4vjVNj14', '5880939'), + (77335, 851, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4vjVNj14', '5880940'), + (77336, 851, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4vjVNj14', '5880942'), + (77337, 851, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4vjVNj14', '5880943'), + (77338, 851, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4vjVNj14', '5887890'), + (77339, 851, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4vjVNj14', '5888598'), + (77340, 851, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4vjVNj14', '5893260'), + (77341, 851, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4vjVNj14', '5899826'), + (77342, 851, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4vjVNj14', '5900199'), + (77343, 851, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4vjVNj14', '5900200'), + (77344, 851, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4vjVNj14', '5900202'), + (77345, 851, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4vjVNj14', '5900203'), + (77346, 851, 1895, 'attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4vjVNj14', '5901108'), + (77347, 851, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4vjVNj14', '5901126'), + (77348, 851, 1897, 'attending', '2023-02-10 19:20:08', '2025-12-17 19:47:07', '4vjVNj14', '5901128'), + (77349, 851, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4vjVNj14', '5909655'), + (77350, 851, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4vjVNj14', '5910522'), + (77351, 851, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4vjVNj14', '5910526'), + (77352, 851, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4vjVNj14', '5910528'), + (77353, 851, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4vjVNj14', '5916219'), + (77354, 851, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4vjVNj14', '5936234'), + (77355, 851, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4vjVNj14', '5958351'), + (77356, 851, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4vjVNj14', '5959751'), + (77357, 851, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4vjVNj14', '5959755'), + (77358, 851, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4vjVNj14', '5960055'), + (77359, 851, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4vjVNj14', '5961684'), + (77360, 851, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', '4vjVNj14', '5962132'), + (77361, 851, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', '4vjVNj14', '5962133'), + (77362, 851, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4vjVNj14', '5962134'), + (77363, 851, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4vjVNj14', '5962317'), + (77364, 851, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4vjVNj14', '5962318'), + (77365, 851, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4vjVNj14', '5965933'), + (77366, 851, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4vjVNj14', '5967014'), + (77367, 851, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4vjVNj14', '5972815'), + (77368, 851, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4vjVNj14', '5974016'), + (77369, 851, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4vjVNj14', '5981515'), + (77370, 851, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4vjVNj14', '5993516'), + (77371, 851, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4vjVNj14', '5998939'), + (77372, 851, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4vjVNj14', '6028191'), + (77373, 851, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4vjVNj14', '6040066'), + (77374, 851, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4vjVNj14', '6042717'), + (77375, 851, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4vjVNj14', '6044838'), + (77376, 851, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4vjVNj14', '6044839'), + (77377, 851, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4vjVNj14', '6045684'), + (77378, 851, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4vjVNj14', '6050104'), + (77379, 851, 2003, 'maybe', '2023-05-19 23:02:23', '2025-12-17 19:47:03', '4vjVNj14', '6052606'), + (77380, 851, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4vjVNj14', '6053195'), + (77381, 851, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4vjVNj14', '6053198'), + (77382, 851, 2008, 'attending', '2023-04-07 22:48:53', '2025-12-17 19:46:58', '4vjVNj14', '6055808'), + (77383, 851, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4vjVNj14', '6056085'), + (77384, 851, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4vjVNj14', '6056916'), + (77385, 851, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4vjVNj14', '6059290'), + (77386, 851, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4vjVNj14', '6060328'), + (77387, 851, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4vjVNj14', '6061037'), + (77388, 851, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4vjVNj14', '6061039'), + (77389, 851, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4vjVNj14', '6067245'), + (77390, 851, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4vjVNj14', '6068094'), + (77391, 851, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4vjVNj14', '6068252'), + (77392, 851, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4vjVNj14', '6068253'), + (77393, 851, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4vjVNj14', '6068254'), + (77394, 851, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '4vjVNj14', '6068280'), + (77395, 851, 2032, 'not_attending', '2023-06-03 06:34:48', '2025-12-17 19:47:04', '4vjVNj14', '6068281'), + (77396, 851, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4vjVNj14', '6069093'), + (77397, 851, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4vjVNj14', '6072528'), + (77398, 851, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4vjVNj14', '6079840'), + (77399, 851, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4vjVNj14', '6083398'), + (77400, 851, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4vjVNj14', '6093504'), + (77401, 851, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4vjVNj14', '6097414'), + (77402, 851, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4vjVNj14', '6097442'), + (77403, 851, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4vjVNj14', '6097684'), + (77404, 851, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4vjVNj14', '6098762'), + (77405, 851, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4vjVNj14', '6101361'), + (77406, 851, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4vjVNj14', '6101362'), + (77407, 851, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', '4vjVNj14', '6103752'), + (77408, 851, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4vjVNj14', '6107314'), + (77409, 851, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4vjVNj14', '6120034'), + (77410, 851, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4vjVNj14', '6136733'), + (77411, 851, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4vjVNj14', '6137989'), + (77412, 851, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '4vjVNj14', '6150864'), + (77413, 851, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '4vjVNj14', '6155491'), + (77414, 851, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '4vjVNj14', '6164417'), + (77415, 851, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '4vjVNj14', '6166388'), + (77416, 851, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '4vjVNj14', '6176439'), + (77417, 851, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', '4vjVNj14', '6182410'), + (77418, 851, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '4vjVNj14', '6185812'), + (77419, 851, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '4vjVNj14', '6187651'), + (77420, 851, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '4vjVNj14', '6187963'), + (77421, 851, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '4vjVNj14', '6187964'), + (77422, 851, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '4vjVNj14', '6187966'), + (77423, 851, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '4vjVNj14', '6187967'), + (77424, 851, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '4vjVNj14', '6187969'), + (77425, 851, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '4vjVNj14', '6334878'), + (77426, 851, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4vjVNj14', '6337236'), + (77427, 851, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4vjVNj14', '6337970'), + (77428, 851, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4vjVNj14', '6338308'), + (77429, 851, 2160, 'attending', '2023-07-29 16:15:49', '2025-12-17 19:46:54', '4vjVNj14', '6338358'), + (77430, 851, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4vjVNj14', '6340845'), + (77431, 851, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4vjVNj14', '6341710'), + (77432, 851, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4vjVNj14', '6342044'), + (77433, 851, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4vjVNj14', '6342298'), + (77434, 851, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4vjVNj14', '6343294'), + (77435, 851, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4vjVNj14', '6347034'), + (77436, 851, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4vjVNj14', '6347056'), + (77437, 851, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4vjVNj14', '6353830'), + (77438, 851, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4vjVNj14', '6353831'), + (77439, 851, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4vjVNj14', '6357867'), + (77440, 851, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4vjVNj14', '6358652'), + (77441, 851, 2196, 'attending', '2023-09-08 22:49:53', '2025-12-17 19:46:56', '4vjVNj14', '6359398'), + (77442, 851, 2197, 'attending', '2023-09-15 21:03:54', '2025-12-17 19:46:44', '4vjVNj14', '6359399'), + (77443, 851, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4vjVNj14', '6361709'), + (77444, 851, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4vjVNj14', '6361710'), + (77445, 851, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4vjVNj14', '6361711'), + (77446, 851, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4vjVNj14', '6361712'), + (77447, 851, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4vjVNj14', '6361713'), + (77448, 851, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4vjVNj14', '6382573'), + (77449, 851, 2240, 'attending', '2023-09-09 21:05:06', '2025-12-17 19:46:56', '4vjVNj14', '6388603'), + (77450, 851, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '4vjVNj14', '6388604'), + (77451, 851, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4vjVNj14', '6394629'), + (77452, 851, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4vjVNj14', '6394631'), + (77453, 851, 2258, 'attending', '2023-09-24 20:10:02', '2025-12-17 19:46:45', '4vjVNj14', '6419492'), + (77454, 851, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4vjVNj14', '6440863'), + (77455, 851, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4vjVNj14', '6445440'), + (77456, 851, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4vjVNj14', '6453951'), + (77457, 851, 2286, 'attending', '2023-12-01 22:22:43', '2025-12-17 19:46:48', '4vjVNj14', '6460930'), + (77458, 851, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4vjVNj14', '6461696'), + (77459, 851, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4vjVNj14', '6462129'), + (77460, 851, 2290, 'attending', '2023-10-19 00:21:39', '2025-12-17 19:46:46', '4vjVNj14', '6462214'), + (77461, 851, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4vjVNj14', '6463218'), + (77462, 851, 2299, 'attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4vjVNj14', '6472181'), + (77463, 851, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4vjVNj14', '6482693'), + (77464, 851, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '4vjVNj14', '6484200'), + (77465, 851, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '4vjVNj14', '6484680'), + (77466, 851, 2317, 'attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4vjVNj14', '6507741'), + (77467, 851, 2322, 'attending', '2023-11-18 07:36:49', '2025-12-17 19:46:48', '4vjVNj14', '6514659'), + (77468, 851, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4vjVNj14', '6514660'), + (77469, 851, 2325, 'attending', '2023-12-16 22:47:13', '2025-12-17 19:46:36', '4vjVNj14', '6514663'), + (77470, 851, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4vjVNj14', '6519103'), + (77471, 851, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4vjVNj14', '6535681'), + (77472, 851, 2338, 'maybe', '2023-11-26 01:23:18', '2025-12-17 19:46:48', '4vjVNj14', '6538868'), + (77473, 851, 2345, 'attending', '2023-11-30 00:12:12', '2025-12-17 19:46:48', '4vjVNj14', '6582414'), + (77474, 851, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4vjVNj14', '6584747'), + (77475, 851, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4vjVNj14', '6587097'), + (77476, 851, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4vjVNj14', '6609022'), + (77477, 851, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4vjVNj14', '6632757'), + (77478, 851, 2375, 'attending', '2023-12-21 00:09:47', '2025-12-17 19:46:36', '4vjVNj14', '6634548'), + (77479, 851, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4vjVNj14', '6644187'), + (77480, 851, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4vjVNj14', '6648951'), + (77481, 851, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4vjVNj14', '6648952'), + (77482, 851, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4vjVNj14', '6655401'), + (77483, 851, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4vjVNj14', '6661585'), + (77484, 851, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4vjVNj14', '6661588'), + (77485, 851, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4vjVNj14', '6661589'), + (77486, 851, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4vjVNj14', '6699906'), + (77487, 851, 2408, 'attending', '2024-01-27 02:59:28', '2025-12-17 19:46:40', '4vjVNj14', '6699907'), + (77488, 851, 2409, 'attending', '2024-02-03 00:27:20', '2025-12-17 19:46:41', '4vjVNj14', '6699909'), + (77489, 851, 2410, 'attending', '2024-02-10 05:17:54', '2025-12-17 19:46:41', '4vjVNj14', '6699911'), + (77490, 851, 2411, 'attending', '2024-02-17 00:01:34', '2025-12-17 19:46:41', '4vjVNj14', '6699913'), + (77491, 851, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4vjVNj14', '6701109'), + (77492, 851, 2424, 'attending', '2024-01-20 03:50:08', '2025-12-17 19:46:40', '4vjVNj14', '6705143'), + (77493, 851, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4vjVNj14', '6705219'), + (77494, 851, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4vjVNj14', '6710153'), + (77495, 851, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4vjVNj14', '6711552'), + (77496, 851, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', '4vjVNj14', '6711553'), + (77497, 851, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4vjVNj14', '6722688'), + (77498, 851, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4vjVNj14', '6730620'), + (77499, 851, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4vjVNj14', '6730642'), + (77500, 851, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4vjVNj14', '6740364'), + (77501, 851, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4vjVNj14', '6743829'), + (77502, 851, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4vjVNj14', '7030380'), + (77503, 851, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4vjVNj14', '7033677'), + (77504, 851, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4vjVNj14', '7035415'), + (77505, 851, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4vjVNj14', '7044715'), + (77506, 851, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4vjVNj14', '7050318'), + (77507, 851, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4vjVNj14', '7050319'), + (77508, 851, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4vjVNj14', '7050322'), + (77509, 851, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4vjVNj14', '7057804'), + (77510, 851, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', '4vjVNj14', '7059866'), + (77511, 851, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4vjVNj14', '7072824'), + (77512, 851, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4vjVNj14', '7074348'), + (77513, 851, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4vjVNj14', '7074364'), + (77514, 851, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4vjVNj14', '7089267'), + (77515, 851, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4vjVNj14', '7098747'), + (77516, 851, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4vjVNj14', '7113468'), + (77517, 851, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4vjVNj14', '7114856'), + (77518, 851, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:33', '4vjVNj14', '7114951'), + (77519, 851, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4vjVNj14', '7114955'), + (77520, 851, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4vjVNj14', '7114956'), + (77521, 851, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', '4vjVNj14', '7114957'), + (77522, 851, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4vjVNj14', '7153615'), + (77523, 851, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4vjVNj14', '7159484'), + (77524, 851, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4vjVNj14', '7178446'), + (77525, 851, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', '4vjVNj14', '7220467'), + (77526, 851, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', '4vjVNj14', '7240354'), + (77527, 851, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', '4vjVNj14', '7251633'), + (77528, 851, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', '4vjVNj14', '7263048'), + (77529, 851, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '4vjVNj14', '7302674'), + (77530, 851, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4vjVNj14', '7324073'), + (77531, 851, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4vjVNj14', '7324074'), + (77532, 851, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4vjVNj14', '7324075'), + (77533, 851, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4vjVNj14', '7324078'), + (77534, 851, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4vjVNj14', '7324082'), + (77535, 851, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4vjVNj14', '7331457'), + (77536, 851, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4vjVNj14', '7356752'), + (77537, 851, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4vjVNj14', '7363643'), + (77538, 851, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4vjVNj14', '7368606'), + (77539, 851, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4vjVNj14', '7397462'), + (77540, 851, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4vjVNj14', '7424275'), + (77541, 851, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4vjVNj14', '7424276'), + (77542, 851, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4vjVNj14', '7432751'), + (77543, 851, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4vjVNj14', '7432752'), + (77544, 851, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4vjVNj14', '7432753'), + (77545, 851, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4vjVNj14', '7432754'), + (77546, 851, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4vjVNj14', '7432755'), + (77547, 851, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4vjVNj14', '7432756'), + (77548, 851, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4vjVNj14', '7432758'), + (77549, 851, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4vjVNj14', '7432759'), + (77550, 851, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4vjVNj14', '7433834'), + (77551, 851, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4vjVNj14', '7470197'), + (77552, 851, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4vjVNj14', '7685613'), + (77553, 851, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4vjVNj14', '7688194'), + (77554, 851, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4vjVNj14', '7688196'), + (77555, 851, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4vjVNj14', '7688289'), + (77556, 852, 871, 'attending', '2021-07-09 13:44:45', '2025-12-17 19:47:39', 'x4oRDGnA', '4136938'), + (77557, 852, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'x4oRDGnA', '4136947'), + (77558, 852, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'x4oRDGnA', '4210314'), + (77559, 852, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'x4oRDGnA', '4225444'), + (77560, 852, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'x4oRDGnA', '4229420'), + (77561, 852, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'x4oRDGnA', '4229423'), + (77562, 852, 900, 'attending', '2021-07-24 16:23:33', '2025-12-17 19:47:40', 'x4oRDGnA', '4240316'), + (77563, 852, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'x4oRDGnA', '4240317'), + (77564, 852, 902, 'attending', '2021-08-07 16:34:58', '2025-12-17 19:47:41', 'x4oRDGnA', '4240318'), + (77565, 852, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'x4oRDGnA', '4240320'), + (77566, 852, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'x4oRDGnA', '4275957'), + (77567, 852, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'x4oRDGnA', '4277819'), + (77568, 852, 923, 'attending', '2021-07-19 20:23:39', '2025-12-17 19:47:40', 'x4oRDGnA', '4292773'), + (77569, 852, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'x4oRDGnA', '4301723'), + (77570, 852, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'x4oRDGnA', '4302093'), + (77571, 852, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'x4oRDGnA', '4304151'), + (77572, 852, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'x4oRDGnA', '4345519'), + (77573, 852, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'x4oRDGnA', '4356801'), + (77574, 852, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'x4oRDGnA', '4358025'), + (77575, 852, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'x4oRDGnA', '4366186'), + (77576, 852, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'x4oRDGnA', '4366187'), + (77577, 852, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'x4oRDGnA', '4402823'), + (77578, 852, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'x4oRDGnA', '4420735'), + (77579, 852, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'x4oRDGnA', '4420738'), + (77580, 852, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'x4oRDGnA', '4420739'), + (77581, 852, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'x4oRDGnA', '4420741'), + (77582, 852, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'x4oRDGnA', '4420744'), + (77583, 852, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'x4oRDGnA', '4420747'), + (77584, 852, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'x4oRDGnA', '4420748'), + (77585, 852, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'x4oRDGnA', '4420749'), + (77586, 852, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'x4oRDGnA', '4461883'), + (77587, 852, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oRDGnA', '6045684'), + (77588, 853, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oxGnYMd', '6045684'), + (77589, 854, 245, 'attending', '2020-12-01 21:16:13', '2025-12-17 19:47:54', 'Pm7o7GYm', '3149476'), + (77590, 854, 249, 'not_attending', '2020-11-17 03:54:21', '2025-12-17 19:47:54', 'Pm7o7GYm', '3149480'), + (77591, 854, 468, 'attending', '2020-11-21 23:36:26', '2025-12-17 19:47:54', 'Pm7o7GYm', '3285413'), + (77592, 854, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'Pm7o7GYm', '3285414'), + (77593, 854, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'Pm7o7GYm', '3297764'), + (77594, 854, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'Pm7o7GYm', '3313856'), + (77595, 854, 495, 'not_attending', '2020-12-07 19:19:59', '2025-12-17 19:47:54', 'Pm7o7GYm', '3314009'), + (77596, 854, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'Pm7o7GYm', '3314909'), + (77597, 854, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'Pm7o7GYm', '3314964'), + (77598, 854, 502, 'attending', '2020-12-12 19:15:53', '2025-12-17 19:47:55', 'Pm7o7GYm', '3323365'), + (77599, 854, 509, 'attending', '2021-01-21 03:05:41', '2025-12-17 19:47:49', 'Pm7o7GYm', '3324232'), + (77600, 854, 511, 'maybe', '2020-12-14 21:11:45', '2025-12-17 19:47:55', 'Pm7o7GYm', '3325335'), + (77601, 854, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'Pm7o7GYm', '3329383'), + (77602, 854, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'Pm7o7GYm', '3351539'), + (77603, 854, 533, 'attending', '2021-01-06 23:21:09', '2025-12-17 19:47:48', 'Pm7o7GYm', '3382812'), + (77604, 854, 536, 'attending', '2021-01-09 00:03:07', '2025-12-17 19:47:48', 'Pm7o7GYm', '3386848'), + (77605, 854, 537, 'attending', '2021-01-09 21:29:08', '2025-12-17 19:47:48', 'Pm7o7GYm', '3387153'), + (77606, 854, 540, 'maybe', '2021-01-07 03:04:20', '2025-12-17 19:47:48', 'Pm7o7GYm', '3389527'), + (77607, 854, 543, 'attending', '2021-01-15 18:06:08', '2025-12-17 19:47:48', 'Pm7o7GYm', '3396499'), + (77608, 854, 548, 'attending', '2021-01-14 00:24:30', '2025-12-17 19:47:48', 'Pm7o7GYm', '3403650'), + (77609, 854, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Pm7o7GYm', '3406988'), + (77610, 854, 554, 'attending', '2021-01-20 22:40:48', '2025-12-17 19:47:49', 'Pm7o7GYm', '3408338'), + (77611, 854, 555, 'attending', '2021-01-20 22:39:29', '2025-12-17 19:47:49', 'Pm7o7GYm', '3416576'), + (77612, 854, 559, 'attending', '2021-01-28 23:55:20', '2025-12-17 19:47:49', 'Pm7o7GYm', '3421439'), + (77613, 854, 562, 'attending', '2021-01-23 19:36:05', '2025-12-17 19:47:49', 'Pm7o7GYm', '3424911'), + (77614, 854, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Pm7o7GYm', '3426074'), + (77615, 854, 567, 'attending', '2021-01-24 04:46:36', '2025-12-17 19:47:50', 'Pm7o7GYm', '3428895'), + (77616, 854, 568, 'attending', '2021-01-27 23:53:50', '2025-12-17 19:47:50', 'Pm7o7GYm', '3430267'), + (77617, 854, 579, 'attending', '2021-02-03 21:14:29', '2025-12-17 19:47:50', 'Pm7o7GYm', '3440978'), + (77618, 854, 581, 'attending', '2021-02-01 14:18:31', '2025-12-17 19:47:50', 'Pm7o7GYm', '3445029'), + (77619, 854, 594, 'attending', '2021-03-01 17:39:07', '2025-12-17 19:47:51', 'Pm7o7GYm', '3467759'), + (77620, 854, 598, 'attending', '2021-02-07 21:49:17', '2025-12-17 19:47:50', 'Pm7o7GYm', '3468003'), + (77621, 854, 602, 'not_attending', '2021-02-12 14:29:10', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470303'), + (77622, 854, 603, 'attending', '2021-02-14 05:09:33', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470304'), + (77623, 854, 604, 'attending', '2021-02-21 17:57:35', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470305'), + (77624, 854, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Pm7o7GYm', '3470991'), + (77625, 854, 608, 'attending', '2021-02-09 19:05:22', '2025-12-17 19:47:50', 'Pm7o7GYm', '3475332'), + (77626, 854, 611, 'attending', '2021-02-15 17:01:53', '2025-12-17 19:47:50', 'Pm7o7GYm', '3482659'), + (77627, 854, 615, 'attending', '2021-02-19 17:20:01', '2025-12-17 19:47:50', 'Pm7o7GYm', '3490045'), + (77628, 854, 621, 'attending', '2021-03-04 21:43:12', '2025-12-17 19:47:51', 'Pm7o7GYm', '3517815'), + (77629, 854, 622, 'attending', '2021-03-09 19:11:21', '2025-12-17 19:47:51', 'Pm7o7GYm', '3517816'), + (77630, 854, 623, 'maybe', '2021-02-28 20:22:33', '2025-12-17 19:47:51', 'Pm7o7GYm', '3523941'), + (77631, 854, 625, 'attending', '2021-02-28 21:42:19', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533296'), + (77632, 854, 626, 'attending', '2021-02-28 21:42:17', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533298'), + (77633, 854, 627, 'attending', '2021-03-10 01:47:29', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533303'), + (77634, 854, 628, 'not_attending', '2021-03-14 21:37:11', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533305'), + (77635, 854, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'Pm7o7GYm', '3533850'), + (77636, 854, 637, 'maybe', '2021-03-01 17:34:03', '2025-12-17 19:47:51', 'Pm7o7GYm', '3536411'), + (77637, 854, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'Pm7o7GYm', '3536632'), + (77638, 854, 639, 'maybe', '2021-03-07 05:41:01', '2025-12-17 19:47:51', 'Pm7o7GYm', '3536656'), + (77639, 854, 640, 'attending', '2021-03-03 01:19:30', '2025-12-17 19:47:51', 'Pm7o7GYm', '3538866'), + (77640, 854, 641, 'not_attending', '2021-03-28 04:28:59', '2025-12-17 19:47:44', 'Pm7o7GYm', '3539916'), + (77641, 854, 642, 'attending', '2021-04-08 14:43:10', '2025-12-17 19:47:44', 'Pm7o7GYm', '3539917'), + (77642, 854, 643, 'attending', '2021-04-14 20:32:19', '2025-12-17 19:47:45', 'Pm7o7GYm', '3539918'), + (77643, 854, 644, 'attending', '2021-04-24 02:03:40', '2025-12-17 19:47:45', 'Pm7o7GYm', '3539919'), + (77644, 854, 645, 'attending', '2021-05-08 14:32:15', '2025-12-17 19:47:46', 'Pm7o7GYm', '3539920'), + (77645, 854, 646, 'attending', '2021-05-14 14:05:18', '2025-12-17 19:47:46', 'Pm7o7GYm', '3539921'), + (77646, 854, 647, 'attending', '2021-05-21 21:18:54', '2025-12-17 19:47:46', 'Pm7o7GYm', '3539922'), + (77647, 854, 648, 'not_attending', '2021-05-15 19:44:27', '2025-12-17 19:47:47', 'Pm7o7GYm', '3539923'), + (77648, 854, 649, 'not_attending', '2021-03-19 23:17:20', '2025-12-17 19:47:51', 'Pm7o7GYm', '3539927'), + (77649, 854, 650, 'attending', '2021-03-26 03:25:48', '2025-12-17 19:47:44', 'Pm7o7GYm', '3539928'), + (77650, 854, 680, 'maybe', '2021-03-10 23:19:42', '2025-12-17 19:47:51', 'Pm7o7GYm', '3547700'), + (77651, 854, 684, 'maybe', '2021-03-12 06:05:27', '2025-12-17 19:47:51', 'Pm7o7GYm', '3549257'), + (77652, 854, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Pm7o7GYm', '3582734'), + (77653, 854, 707, 'attending', '2021-04-25 21:05:55', '2025-12-17 19:47:46', 'Pm7o7GYm', '3583262'), + (77654, 854, 711, 'maybe', '2021-03-26 03:26:07', '2025-12-17 19:47:44', 'Pm7o7GYm', '3588075'), + (77655, 854, 717, 'maybe', '2021-03-25 20:43:21', '2025-12-17 19:47:44', 'Pm7o7GYm', '3619523'), + (77656, 854, 724, 'maybe', '2021-04-11 16:41:09', '2025-12-17 19:47:46', 'Pm7o7GYm', '3661369'), + (77657, 854, 725, 'attending', '2021-05-18 00:13:54', '2025-12-17 19:47:47', 'Pm7o7GYm', '3661372'), + (77658, 854, 728, 'attending', '2021-04-14 20:32:03', '2025-12-17 19:47:44', 'Pm7o7GYm', '3668073'), + (77659, 854, 729, 'attending', '2021-04-28 21:09:41', '2025-12-17 19:47:46', 'Pm7o7GYm', '3668075'), + (77660, 854, 730, 'maybe', '2021-04-04 20:45:48', '2025-12-17 19:47:46', 'Pm7o7GYm', '3668076'), + (77661, 854, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm7o7GYm', '3674262'), + (77662, 854, 732, 'maybe', '2021-04-05 00:09:59', '2025-12-17 19:47:45', 'Pm7o7GYm', '3674268'), + (77663, 854, 734, 'attending', '2021-04-04 20:41:09', '2025-12-17 19:47:44', 'Pm7o7GYm', '3676806'), + (77664, 854, 735, 'maybe', '2021-04-05 00:35:27', '2025-12-17 19:47:46', 'Pm7o7GYm', '3677402'), + (77665, 854, 766, 'attending', '2021-05-12 01:35:42', '2025-12-17 19:47:46', 'Pm7o7GYm', '3721383'), + (77666, 854, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7o7GYm', '3730212'), + (77667, 854, 777, 'not_attending', '2021-05-01 15:15:45', '2025-12-17 19:47:46', 'Pm7o7GYm', '3746248'), + (77668, 854, 785, 'maybe', '2021-05-12 22:54:17', '2025-12-17 19:47:46', 'Pm7o7GYm', '3779779'), + (77669, 854, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7o7GYm', '3793156'), + (77670, 854, 816, 'attending', '2021-05-19 22:28:41', '2025-12-17 19:47:46', 'Pm7o7GYm', '3826524'), + (77671, 854, 823, 'attending', '2021-06-19 14:43:50', '2025-12-17 19:47:48', 'Pm7o7GYm', '3974109'), + (77672, 854, 827, 'not_attending', '2021-06-04 21:47:21', '2025-12-17 19:47:47', 'Pm7o7GYm', '3975311'), + (77673, 854, 828, 'attending', '2021-06-12 14:10:30', '2025-12-17 19:47:47', 'Pm7o7GYm', '3975312'), + (77674, 854, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7o7GYm', '3994992'), + (77675, 854, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'Pm7o7GYm', '4014338'), + (77676, 854, 867, 'attending', '2021-06-25 19:19:10', '2025-12-17 19:47:38', 'Pm7o7GYm', '4021848'), + (77677, 854, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'Pm7o7GYm', '4136744'), + (77678, 854, 870, 'not_attending', '2021-06-27 23:26:20', '2025-12-17 19:47:39', 'Pm7o7GYm', '4136937'), + (77679, 854, 871, 'attending', '2021-07-07 22:20:05', '2025-12-17 19:47:39', 'Pm7o7GYm', '4136938'), + (77680, 854, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'Pm7o7GYm', '4136947'), + (77681, 854, 884, 'not_attending', '2021-08-15 19:09:35', '2025-12-17 19:47:42', 'Pm7o7GYm', '4210314'), + (77682, 854, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'Pm7o7GYm', '4225444'), + (77683, 854, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'Pm7o7GYm', '4239259'), + (77684, 854, 900, 'attending', '2021-07-19 16:06:59', '2025-12-17 19:47:40', 'Pm7o7GYm', '4240316'), + (77685, 854, 901, 'attending', '2021-07-26 20:40:05', '2025-12-17 19:47:40', 'Pm7o7GYm', '4240317'), + (77686, 854, 902, 'not_attending', '2021-08-04 19:02:43', '2025-12-17 19:47:41', 'Pm7o7GYm', '4240318'), + (77687, 854, 903, 'not_attending', '2021-08-13 15:06:44', '2025-12-17 19:47:42', 'Pm7o7GYm', '4240320'), + (77688, 854, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'Pm7o7GYm', '4250163'), + (77689, 854, 916, 'attending', '2021-07-22 22:21:08', '2025-12-17 19:47:40', 'Pm7o7GYm', '4273772'), + (77690, 854, 919, 'not_attending', '2021-07-14 15:08:09', '2025-12-17 19:47:39', 'Pm7o7GYm', '4275957'), + (77691, 854, 920, 'maybe', '2021-07-21 20:44:31', '2025-12-17 19:47:40', 'Pm7o7GYm', '4277819'), + (77692, 854, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Pm7o7GYm', '4301723'), + (77693, 854, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'Pm7o7GYm', '4302093'), + (77694, 854, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Pm7o7GYm', '4304151'), + (77695, 854, 937, 'maybe', '2021-07-24 13:46:58', '2025-12-17 19:47:40', 'Pm7o7GYm', '4306596'), + (77696, 854, 940, 'attending', '2021-07-30 11:22:08', '2025-12-17 19:47:40', 'Pm7o7GYm', '4309049'), + (77697, 854, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Pm7o7GYm', '4356801'), + (77698, 854, 973, 'not_attending', '2021-08-21 19:03:52', '2025-12-17 19:47:42', 'Pm7o7GYm', '4366186'), + (77699, 854, 974, 'attending', '2021-08-23 16:31:59', '2025-12-17 19:47:42', 'Pm7o7GYm', '4366187'), + (77700, 854, 990, 'attending', '2021-09-01 12:53:28', '2025-12-17 19:47:43', 'Pm7o7GYm', '4420735'), + (77701, 854, 991, 'attending', '2021-09-08 12:24:58', '2025-12-17 19:47:43', 'Pm7o7GYm', '4420738'), + (77702, 854, 992, 'not_attending', '2021-09-13 02:51:54', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420739'), + (77703, 854, 993, 'not_attending', '2021-09-22 19:03:52', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420741'), + (77704, 854, 994, 'attending', '2021-10-02 02:41:54', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420742'), + (77705, 854, 995, 'attending', '2021-10-09 16:07:31', '2025-12-17 19:47:34', 'Pm7o7GYm', '4420744'), + (77706, 854, 996, 'attending', '2021-10-16 03:49:57', '2025-12-17 19:47:35', 'Pm7o7GYm', '4420747'), + (77707, 854, 997, 'attending', '2021-10-23 15:29:39', '2025-12-17 19:47:35', 'Pm7o7GYm', '4420748'), + (77708, 854, 998, 'not_attending', '2021-10-27 01:07:01', '2025-12-17 19:47:36', 'Pm7o7GYm', '4420749'), + (77709, 854, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Pm7o7GYm', '4461883'), + (77710, 854, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Pm7o7GYm', '4508342'), + (77711, 854, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Pm7o7GYm', '4568602'), + (77712, 854, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Pm7o7GYm', '4572153'), + (77713, 854, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'Pm7o7GYm', '4585962'), + (77714, 854, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'Pm7o7GYm', '4596356'), + (77715, 854, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Pm7o7GYm', '4598860'), + (77716, 854, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Pm7o7GYm', '4598861'), + (77717, 854, 1099, 'not_attending', '2021-11-01 02:52:12', '2025-12-17 19:47:36', 'Pm7o7GYm', '4602797'), + (77718, 854, 1114, 'attending', '2021-11-12 16:06:15', '2025-12-17 19:47:36', 'Pm7o7GYm', '4637896'), + (77719, 854, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Pm7o7GYm', '4642994'), + (77720, 854, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Pm7o7GYm', '4642995'), + (77721, 854, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Pm7o7GYm', '4642996'), + (77722, 854, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Pm7o7GYm', '4642997'), + (77723, 854, 1126, 'not_attending', '2021-12-09 12:57:04', '2025-12-17 19:47:38', 'Pm7o7GYm', '4645687'), + (77724, 854, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Pm7o7GYm', '4645698'), + (77725, 854, 1128, 'not_attending', '2021-11-19 20:31:43', '2025-12-17 19:47:37', 'Pm7o7GYm', '4645704'), + (77726, 854, 1129, 'not_attending', '2021-11-19 20:31:52', '2025-12-17 19:47:37', 'Pm7o7GYm', '4645705'), + (77727, 854, 1130, 'not_attending', '2021-12-04 20:25:27', '2025-12-17 19:47:37', 'Pm7o7GYm', '4658824'), + (77728, 854, 1131, 'not_attending', '2021-12-09 12:57:21', '2025-12-17 19:47:31', 'Pm7o7GYm', '4658825'), + (77729, 854, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Pm7o7GYm', '4668385'), + (77730, 854, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Pm7o7GYm', '4694407'), + (77731, 854, 1173, 'attending', '2022-01-04 15:30:11', '2025-12-17 19:47:31', 'Pm7o7GYm', '4736495'), + (77732, 854, 1174, 'attending', '2022-01-14 15:11:09', '2025-12-17 19:47:31', 'Pm7o7GYm', '4736496'), + (77733, 854, 1175, 'attending', '2022-01-22 22:31:24', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736497'), + (77734, 854, 1176, 'not_attending', '2022-02-12 22:27:25', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736498'), + (77735, 854, 1177, 'attending', '2022-02-12 16:56:52', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736499'), + (77736, 854, 1178, 'attending', '2022-01-28 16:00:20', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736500'), + (77737, 854, 1179, 'attending', '2022-02-18 20:23:21', '2025-12-17 19:47:32', 'Pm7o7GYm', '4736501'), + (77738, 854, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Pm7o7GYm', '4736503'), + (77739, 854, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Pm7o7GYm', '4736504'), + (77740, 854, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Pm7o7GYm', '4746789'), + (77741, 854, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Pm7o7GYm', '4753929'), + (77742, 854, 1190, 'attending', '2022-01-11 23:09:18', '2025-12-17 19:47:31', 'Pm7o7GYm', '4757377'), + (77743, 854, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Pm7o7GYm', '5038850'), + (77744, 854, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Pm7o7GYm', '5045826'), + (77745, 854, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Pm7o7GYm', '5132533'), + (77746, 854, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Pm7o7GYm', '5186582'), + (77747, 854, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Pm7o7GYm', '5186583'), + (77748, 854, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Pm7o7GYm', '5186585'), + (77749, 854, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Pm7o7GYm', '5190437'), + (77750, 854, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Pm7o7GYm', '5195095'), + (77751, 854, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Pm7o7GYm', '5215989'), + (77752, 854, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Pm7o7GYm', '5223686'), + (77753, 854, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'Pm7o7GYm', '5227432'), + (77754, 854, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Pm7o7GYm', '5247467'), + (77755, 854, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Pm7o7GYm', '5260800'), + (77756, 854, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Pm7o7GYm', '5269930'), + (77757, 854, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Pm7o7GYm', '5271448'), + (77758, 854, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'Pm7o7GYm', '5271449'), + (77759, 854, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'Pm7o7GYm', '5276469'), + (77760, 854, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Pm7o7GYm', '5278159'), + (77761, 854, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Pm7o7GYm', '5363695'), + (77762, 854, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Pm7o7GYm', '5365960'), + (77763, 854, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'Pm7o7GYm', '5368973'), + (77764, 854, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Pm7o7GYm', '5378247'), + (77765, 854, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'Pm7o7GYm', '5389605'), + (77766, 854, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Pm7o7GYm', '5397265'), + (77767, 854, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7o7GYm', '6045684'), + (77768, 855, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dKOv1DBd', '7424276'), + (77769, 855, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'dKOv1DBd', '7432756'), + (77770, 855, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'dKOv1DBd', '7432758'), + (77771, 855, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'dKOv1DBd', '7682072'), + (77772, 855, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'dKOv1DBd', '7685613'), + (77773, 855, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dKOv1DBd', '7688194'), + (77774, 855, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dKOv1DBd', '7688196'), + (77775, 855, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dKOv1DBd', '7688289'), + (77776, 855, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dKOv1DBd', '7692763'), + (77777, 855, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dKOv1DBd', '7697552'), + (77778, 855, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dKOv1DBd', '7699878'), + (77779, 855, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dKOv1DBd', '7704043'), + (77780, 855, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dKOv1DBd', '7712467'), + (77781, 855, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dKOv1DBd', '7713585'), + (77782, 855, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dKOv1DBd', '7713586'), + (77783, 855, 2947, 'not_attending', '2024-12-09 03:10:21', '2025-12-17 19:46:21', 'dKOv1DBd', '7727445'), + (77784, 855, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'dKOv1DBd', '7738518'), + (77785, 855, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dKOv1DBd', '7750636'), + (77786, 855, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dKOv1DBd', '7796540'), + (77787, 855, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dKOv1DBd', '7796541'), + (77788, 855, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dKOv1DBd', '7796542'), + (77789, 855, 2967, 'not_attending', '2025-01-07 14:55:51', '2025-12-17 19:46:22', 'dKOv1DBd', '7797181'), + (77790, 855, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dKOv1DBd', '7825913'), + (77791, 855, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dKOv1DBd', '7826209'), + (77792, 855, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dKOv1DBd', '7834742'), + (77793, 855, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dKOv1DBd', '7842108'), + (77794, 855, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dKOv1DBd', '7842902'), + (77795, 855, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dKOv1DBd', '7842903'), + (77796, 855, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dKOv1DBd', '7842904'), + (77797, 855, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dKOv1DBd', '7842905'), + (77798, 855, 2999, 'not_attending', '2025-02-13 22:19:11', '2025-12-17 19:46:23', 'dKOv1DBd', '7844784'), + (77799, 855, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dKOv1DBd', '7855719'), + (77800, 855, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dKOv1DBd', '7860683'), + (77801, 855, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dKOv1DBd', '7860684'), + (77802, 855, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dKOv1DBd', '7866095'), + (77803, 855, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dKOv1DBd', '7869170'), + (77804, 855, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dKOv1DBd', '7869201'), + (77805, 855, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'dKOv1DBd', '7872088'), + (77806, 856, 1504, 'not_attending', '2022-07-15 10:55:30', '2025-12-17 19:47:19', 'daJp8Epm', '5426882'), + (77807, 856, 1512, 'attending', '2022-07-15 03:42:45', '2025-12-17 19:47:19', 'daJp8Epm', '5441112'), + (77808, 856, 1513, 'attending', '2022-07-15 04:56:24', '2025-12-17 19:47:19', 'daJp8Epm', '5441125'), + (77809, 856, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'daJp8Epm', '5441126'), + (77810, 856, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'daJp8Epm', '5441128'), + (77811, 856, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'daJp8Epm', '5441131'), + (77812, 856, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'daJp8Epm', '5441132'), + (77813, 856, 1527, 'not_attending', '2022-07-19 03:06:53', '2025-12-17 19:47:20', 'daJp8Epm', '5446425'), + (77814, 856, 1528, 'not_attending', '2022-07-17 17:31:19', '2025-12-17 19:47:20', 'daJp8Epm', '5446643'), + (77815, 856, 1536, 'attending', '2022-07-16 16:30:55', '2025-12-17 19:47:20', 'daJp8Epm', '5449068'), + (77816, 856, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'daJp8Epm', '5453325'), + (77817, 856, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'daJp8Epm', '5454516'), + (77818, 856, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'daJp8Epm', '5454605'), + (77819, 856, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'daJp8Epm', '5455037'), + (77820, 856, 1556, 'not_attending', '2022-07-22 01:53:44', '2025-12-17 19:47:20', 'daJp8Epm', '5457734'), + (77821, 856, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'daJp8Epm', '5461278'), + (77822, 856, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'daJp8Epm', '5469480'), + (77823, 856, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'daJp8Epm', '5471073'), + (77824, 856, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'daJp8Epm', '5474663'), + (77825, 856, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'daJp8Epm', '5482022'), + (77826, 856, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'daJp8Epm', '5482793'), + (77827, 856, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'daJp8Epm', '5488912'), + (77828, 856, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'daJp8Epm', '5492192'), + (77829, 856, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'daJp8Epm', '5493139'), + (77830, 856, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'daJp8Epm', '5493200'), + (77831, 856, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'daJp8Epm', '5502188'), + (77832, 856, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'daJp8Epm', '5505059'), + (77833, 856, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'daJp8Epm', '5509055'), + (77834, 856, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'daJp8Epm', '5512862'), + (77835, 856, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'daJp8Epm', '5513985'), + (77836, 856, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'daJp8Epm', '5519981'), + (77837, 856, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'daJp8Epm', '5522550'), + (77838, 856, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'daJp8Epm', '5534683'), + (77839, 856, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'daJp8Epm', '5546619'), + (77840, 856, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'daJp8Epm', '5555245'), + (77841, 856, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'daJp8Epm', '5557747'), + (77842, 856, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daJp8Epm', '6045684'), + (77843, 857, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'AgPbGry4', '5441131'), + (77844, 857, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'AgPbGry4', '5441132'), + (77845, 857, 1561, 'attending', '2022-08-12 09:07:38', '2025-12-17 19:47:22', 'AgPbGry4', '5461278'), + (77846, 857, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgPbGry4', '5502188'), + (77847, 857, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'AgPbGry4', '5505059'), + (77848, 857, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'AgPbGry4', '5509055'), + (77849, 857, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgPbGry4', '5512862'), + (77850, 857, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgPbGry4', '5513985'), + (77851, 857, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'AgPbGry4', '5522550'), + (77852, 857, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'AgPbGry4', '5534683'), + (77853, 857, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'AgPbGry4', '5537735'), + (77854, 857, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'AgPbGry4', '5540859'), + (77855, 857, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'AgPbGry4', '5546619'), + (77856, 857, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'AgPbGry4', '5555245'), + (77857, 857, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'AgPbGry4', '5557747'), + (77858, 857, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'AgPbGry4', '5560255'), + (77859, 857, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'AgPbGry4', '5562906'), + (77860, 857, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'AgPbGry4', '5600604'), + (77861, 857, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'AgPbGry4', '5605544'), + (77862, 857, 1699, 'not_attending', '2022-09-26 12:18:45', '2025-12-17 19:47:12', 'AgPbGry4', '5606737'), + (77863, 857, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'AgPbGry4', '5630960'), + (77864, 857, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'AgPbGry4', '5630961'), + (77865, 857, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'AgPbGry4', '5630962'), + (77866, 857, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'AgPbGry4', '5630966'), + (77867, 857, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AgPbGry4', '5630967'), + (77868, 857, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AgPbGry4', '5630968'), + (77869, 857, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'AgPbGry4', '5635406'), + (77870, 857, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'AgPbGry4', '5638765'), + (77871, 857, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'AgPbGry4', '5640097'), + (77872, 857, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'AgPbGry4', '5640843'), + (77873, 857, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'AgPbGry4', '5641521'), + (77874, 857, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AgPbGry4', '5642818'), + (77875, 857, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'AgPbGry4', '5652395'), + (77876, 857, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AgPbGry4', '5670445'), + (77877, 857, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'AgPbGry4', '5671637'), + (77878, 857, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'AgPbGry4', '5672329'), + (77879, 857, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'AgPbGry4', '5674057'), + (77880, 857, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'AgPbGry4', '5674060'), + (77881, 857, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'AgPbGry4', '5677461'), + (77882, 857, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'AgPbGry4', '5698046'), + (77883, 857, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'AgPbGry4', '5699760'), + (77884, 857, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AgPbGry4', '5741601'), + (77885, 857, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AgPbGry4', '5763458'), + (77886, 857, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AgPbGry4', '5774172'), + (77887, 857, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AgPbGry4', '5818247'), + (77888, 857, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AgPbGry4', '5819471'), + (77889, 857, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AgPbGry4', '5827739'), + (77890, 857, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AgPbGry4', '5844306'), + (77891, 857, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AgPbGry4', '5850159'), + (77892, 857, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AgPbGry4', '5858999'), + (77893, 857, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AgPbGry4', '5871984'), + (77894, 857, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AgPbGry4', '5876354'), + (77895, 857, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'AgPbGry4', '5880939'), + (77896, 857, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'AgPbGry4', '5887890'), + (77897, 857, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'AgPbGry4', '5888598'), + (77898, 857, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'AgPbGry4', '5893260'), + (77899, 857, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgPbGry4', '6045684'), + (77900, 858, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'xAYLkKRm', '3285414'), + (77901, 858, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'xAYLkKRm', '3313856'), + (77902, 858, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'xAYLkKRm', '3314909'), + (77903, 858, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'xAYLkKRm', '3314964'), + (77904, 858, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'xAYLkKRm', '3323365'), + (77905, 858, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'xAYLkKRm', '3329383'), + (77906, 858, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'xAYLkKRm', '3351539'), + (77907, 858, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'xAYLkKRm', '3386848'), + (77908, 858, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'xAYLkKRm', '3389527'), + (77909, 858, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'xAYLkKRm', '3396499'), + (77910, 858, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'xAYLkKRm', '3403650'), + (77911, 858, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'xAYLkKRm', '3406988'), + (77912, 858, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'xAYLkKRm', '3408338'), + (77913, 858, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'xAYLkKRm', '3416576'), + (77914, 858, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYLkKRm', '6045684'), + (77915, 859, 1824, 'not_attending', '2022-11-30 14:58:07', '2025-12-17 19:47:04', '41YKlP84', '5774172'), + (77916, 859, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '41YKlP84', '6045684'), + (77917, 860, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'VdxBlnXA', '3468125'), + (77918, 860, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VdxBlnXA', '3470303'), + (77919, 860, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'VdxBlnXA', '3470305'), + (77920, 860, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VdxBlnXA', '3470991'), + (77921, 860, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VdxBlnXA', '3517815'), + (77922, 860, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VdxBlnXA', '3517816'), + (77923, 860, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'VdxBlnXA', '3523941'), + (77924, 860, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VdxBlnXA', '3533850'), + (77925, 860, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VdxBlnXA', '3536632'), + (77926, 860, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VdxBlnXA', '3536656'), + (77927, 860, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VdxBlnXA', '3539916'), + (77928, 860, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VdxBlnXA', '3539917'), + (77929, 860, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VdxBlnXA', '3539918'), + (77930, 860, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VdxBlnXA', '3539919'), + (77931, 860, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VdxBlnXA', '3539920'), + (77932, 860, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VdxBlnXA', '3539921'), + (77933, 860, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VdxBlnXA', '3539922'), + (77934, 860, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VdxBlnXA', '3539923'), + (77935, 860, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VdxBlnXA', '3539927'), + (77936, 860, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VdxBlnXA', '3582734'), + (77937, 860, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VdxBlnXA', '3619523'), + (77938, 860, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxBlnXA', '6045684'), + (77939, 861, 1123, 'not_attending', '2021-12-09 16:46:52', '2025-12-17 19:47:38', 'd9nJYMem', '4644024'), + (77940, 861, 1124, 'attending', '2021-12-10 17:13:20', '2025-12-17 19:47:38', 'd9nJYMem', '4644025'), + (77941, 861, 1146, 'not_attending', '2021-12-10 17:11:10', '2025-12-17 19:47:38', 'd9nJYMem', '4692841'), + (77942, 861, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd9nJYMem', '4736497'), + (77943, 861, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'd9nJYMem', '4736500'), + (77944, 861, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'd9nJYMem', '4746789'), + (77945, 861, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'd9nJYMem', '4753929'), + (77946, 861, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd9nJYMem', '5038850'), + (77947, 861, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'd9nJYMem', '6045684'), + (77948, 862, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4DQwr0yd', '5441131'), + (77949, 862, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4DQwr0yd', '5441132'), + (77950, 862, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4DQwr0yd', '5509055'), + (77951, 862, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', '4DQwr0yd', '5513985'), + (77952, 862, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', '4DQwr0yd', '5534683'), + (77953, 862, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4DQwr0yd', '5537735'), + (77954, 862, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4DQwr0yd', '5540859'), + (77955, 862, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4DQwr0yd', '5546619'), + (77956, 862, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4DQwr0yd', '5555245'), + (77957, 862, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4DQwr0yd', '5557747'), + (77958, 862, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4DQwr0yd', '5560255'), + (77959, 862, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4DQwr0yd', '5562906'), + (77960, 862, 1675, 'attending', '2022-09-18 20:06:02', '2025-12-17 19:47:11', '4DQwr0yd', '5593342'), + (77961, 862, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4DQwr0yd', '5600604'), + (77962, 862, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4DQwr0yd', '5605544'), + (77963, 862, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', '4DQwr0yd', '5606737'), + (77964, 862, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4DQwr0yd', '5630960'), + (77965, 862, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4DQwr0yd', '5630961'), + (77966, 862, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4DQwr0yd', '5630962'), + (77967, 862, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4DQwr0yd', '5630966'), + (77968, 862, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4DQwr0yd', '5630967'), + (77969, 862, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4DQwr0yd', '5630968'), + (77970, 862, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4DQwr0yd', '5635406'), + (77971, 862, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4DQwr0yd', '5638765'), + (77972, 862, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4DQwr0yd', '5640097'), + (77973, 862, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4DQwr0yd', '5640843'), + (77974, 862, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4DQwr0yd', '5641521'), + (77975, 862, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4DQwr0yd', '5642818'), + (77976, 862, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4DQwr0yd', '5652395'), + (77977, 862, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4DQwr0yd', '5670445'), + (77978, 862, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4DQwr0yd', '5671637'), + (77979, 862, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4DQwr0yd', '5672329'), + (77980, 862, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4DQwr0yd', '5674057'), + (77981, 862, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4DQwr0yd', '5674060'), + (77982, 862, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4DQwr0yd', '5677461'), + (77983, 862, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4DQwr0yd', '5698046'), + (77984, 862, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4DQwr0yd', '5699760'), + (77985, 862, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4DQwr0yd', '5741601'), + (77986, 862, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4DQwr0yd', '5763458'), + (77987, 862, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4DQwr0yd', '5774172'), + (77988, 862, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4DQwr0yd', '5818247'), + (77989, 862, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4DQwr0yd', '5819471'), + (77990, 862, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4DQwr0yd', '5827739'), + (77991, 862, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4DQwr0yd', '5844306'), + (77992, 862, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4DQwr0yd', '5850159'), + (77993, 862, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4DQwr0yd', '5858999'), + (77994, 862, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4DQwr0yd', '5871984'), + (77995, 862, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4DQwr0yd', '5876354'), + (77996, 862, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4DQwr0yd', '5880939'), + (77997, 862, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4DQwr0yd', '5887890'), + (77998, 862, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4DQwr0yd', '5888598'), + (77999, 862, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4DQwr0yd', '5893260'), + (78000, 862, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DQwr0yd', '6045684'), + (78001, 863, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZkjEErd', '6045684'), + (78002, 864, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'rdOeYxEA', '4136947'), + (78003, 864, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'rdOeYxEA', '4210314'), + (78004, 864, 887, 'not_attending', '2021-07-13 21:31:19', '2025-12-17 19:47:39', 'rdOeYxEA', '4225444'), + (78005, 864, 895, 'attending', '2021-07-10 03:58:23', '2025-12-17 19:47:39', 'rdOeYxEA', '4229424'), + (78006, 864, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'rdOeYxEA', '4240316'), + (78007, 864, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'rdOeYxEA', '4240317'), + (78008, 864, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'rdOeYxEA', '4240318'), + (78009, 864, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'rdOeYxEA', '4240320'), + (78010, 864, 908, 'not_attending', '2021-07-13 21:31:28', '2025-12-17 19:47:39', 'rdOeYxEA', '4257613'), + (78011, 864, 912, 'not_attending', '2021-07-13 21:31:05', '2025-12-17 19:47:39', 'rdOeYxEA', '4271104'), + (78012, 864, 918, 'not_attending', '2021-07-12 21:44:48', '2025-12-17 19:47:39', 'rdOeYxEA', '4274486'), + (78013, 864, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'rdOeYxEA', '4275957'), + (78014, 864, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'rdOeYxEA', '4277819'), + (78015, 864, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'rdOeYxEA', '4301723'), + (78016, 864, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'rdOeYxEA', '4302093'), + (78017, 864, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'rdOeYxEA', '4304151'), + (78018, 864, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'rdOeYxEA', '4356801'), + (78019, 864, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'rdOeYxEA', '4366186'), + (78020, 864, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'rdOeYxEA', '4366187'), + (78021, 864, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'rdOeYxEA', '4420735'), + (78022, 864, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'rdOeYxEA', '4420738'), + (78023, 864, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'rdOeYxEA', '4420739'), + (78024, 864, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'rdOeYxEA', '4420741'), + (78025, 864, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'rdOeYxEA', '4420744'), + (78026, 864, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'rdOeYxEA', '4420747'), + (78027, 864, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'rdOeYxEA', '4420748'), + (78028, 864, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'rdOeYxEA', '4420749'), + (78029, 864, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'rdOeYxEA', '4461883'), + (78030, 864, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'rdOeYxEA', '4508342'), + (78031, 864, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'rdOeYxEA', '4568602'), + (78032, 864, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'rdOeYxEA', '4572153'), + (78033, 864, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'rdOeYxEA', '4585962'), + (78034, 864, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'rdOeYxEA', '4596356'), + (78035, 864, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'rdOeYxEA', '4598860'), + (78036, 864, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'rdOeYxEA', '4598861'), + (78037, 864, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'rdOeYxEA', '4602797'), + (78038, 864, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'rdOeYxEA', '4637896'), + (78039, 864, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'rdOeYxEA', '4642994'), + (78040, 864, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'rdOeYxEA', '4642995'), + (78041, 864, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'rdOeYxEA', '4642996'), + (78042, 864, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'rdOeYxEA', '4642997'), + (78043, 864, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'rdOeYxEA', '4645687'), + (78044, 864, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'rdOeYxEA', '4645698'), + (78045, 864, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'rdOeYxEA', '4645704'), + (78046, 864, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'rdOeYxEA', '4645705'), + (78047, 864, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'rdOeYxEA', '4668385'), + (78048, 864, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'rdOeYxEA', '4694407'), + (78049, 864, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'rdOeYxEA', '4736497'), + (78050, 864, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'rdOeYxEA', '4736499'), + (78051, 864, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'rdOeYxEA', '4736500'), + (78052, 864, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'rdOeYxEA', '4736503'), + (78053, 864, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'rdOeYxEA', '4736504'), + (78054, 864, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'rdOeYxEA', '4746789'), + (78055, 864, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'rdOeYxEA', '4753929'), + (78056, 864, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'rdOeYxEA', '5038850'), + (78057, 864, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'rdOeYxEA', '5045826'), + (78058, 864, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'rdOeYxEA', '5132533'), + (78059, 864, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'rdOeYxEA', '5186582'), + (78060, 864, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'rdOeYxEA', '5186583'), + (78061, 864, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'rdOeYxEA', '5186585'), + (78062, 864, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'rdOeYxEA', '5190437'), + (78063, 864, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'rdOeYxEA', '5195095'), + (78064, 864, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'rdOeYxEA', '5215989'), + (78065, 864, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'rdOeYxEA', '5223686'), + (78066, 864, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'rdOeYxEA', '5247467'), + (78067, 864, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'rdOeYxEA', '5260800'), + (78068, 864, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'rdOeYxEA', '5269930'), + (78069, 864, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'rdOeYxEA', '5271448'), + (78070, 864, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'rdOeYxEA', '5271449'), + (78071, 864, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'rdOeYxEA', '5278159'), + (78072, 864, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'rdOeYxEA', '5363695'), + (78073, 864, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'rdOeYxEA', '5365960'), + (78074, 864, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'rdOeYxEA', '5378247'), + (78075, 864, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'rdOeYxEA', '5389605'), + (78076, 864, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'rdOeYxEA', '5397265'), + (78077, 864, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'rdOeYxEA', '5404786'), + (78078, 864, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'rdOeYxEA', '5405203'), + (78079, 864, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'rdOeYxEA', '5412550'), + (78080, 864, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'rdOeYxEA', '5415046'), + (78081, 864, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'rdOeYxEA', '5422086'), + (78082, 864, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'rdOeYxEA', '5422406'), + (78083, 864, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'rdOeYxEA', '5424565'), + (78084, 864, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'rdOeYxEA', '5426882'), + (78085, 864, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'rdOeYxEA', '5441125'), + (78086, 864, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'rdOeYxEA', '5441126'), + (78087, 864, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'rdOeYxEA', '5441128'), + (78088, 864, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'rdOeYxEA', '5441131'), + (78089, 864, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'rdOeYxEA', '5441132'), + (78090, 864, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'rdOeYxEA', '5453325'), + (78091, 864, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'rdOeYxEA', '5454516'), + (78092, 864, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'rdOeYxEA', '5454605'), + (78093, 864, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'rdOeYxEA', '5455037'), + (78094, 864, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'rdOeYxEA', '5461278'), + (78095, 864, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'rdOeYxEA', '5469480'), + (78096, 864, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'rdOeYxEA', '5474663'), + (78097, 864, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'rdOeYxEA', '5482022'), + (78098, 864, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'rdOeYxEA', '5488912'), + (78099, 864, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'rdOeYxEA', '5492192'), + (78100, 864, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'rdOeYxEA', '5493139'), + (78101, 864, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'rdOeYxEA', '5493200'), + (78102, 864, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'rdOeYxEA', '5502188'), + (78103, 864, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'rdOeYxEA', '5505059'), + (78104, 864, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'rdOeYxEA', '5509055'), + (78105, 864, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'rdOeYxEA', '5512862'), + (78106, 864, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'rdOeYxEA', '5513985'), + (78107, 864, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'rdOeYxEA', '5519981'), + (78108, 864, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'rdOeYxEA', '5522550'), + (78109, 864, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'rdOeYxEA', '5534683'), + (78110, 864, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'rdOeYxEA', '5537735'), + (78111, 864, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'rdOeYxEA', '5540859'), + (78112, 864, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'rdOeYxEA', '5546619'), + (78113, 864, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'rdOeYxEA', '5557747'), + (78114, 864, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'rdOeYxEA', '5560255'), + (78115, 864, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'rdOeYxEA', '5562906'), + (78116, 864, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'rdOeYxEA', '5600604'), + (78117, 864, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'rdOeYxEA', '5605544'), + (78118, 864, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'rdOeYxEA', '5630960'), + (78119, 864, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'rdOeYxEA', '5630961'), + (78120, 864, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'rdOeYxEA', '5630962'), + (78121, 864, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'rdOeYxEA', '5630966'), + (78122, 864, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'rdOeYxEA', '5630967'), + (78123, 864, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'rdOeYxEA', '5630968'), + (78124, 864, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'rdOeYxEA', '5635406'), + (78125, 864, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'rdOeYxEA', '5638765'), + (78126, 864, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'rdOeYxEA', '5640097'), + (78127, 864, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'rdOeYxEA', '5640843'), + (78128, 864, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'rdOeYxEA', '5641521'), + (78129, 864, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'rdOeYxEA', '5642818'), + (78130, 864, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'rdOeYxEA', '5652395'), + (78131, 864, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'rdOeYxEA', '5670445'), + (78132, 864, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'rdOeYxEA', '5671637'), + (78133, 864, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'rdOeYxEA', '5672329'), + (78134, 864, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'rdOeYxEA', '5674057'), + (78135, 864, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'rdOeYxEA', '5674060'), + (78136, 864, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'rdOeYxEA', '5677461'), + (78137, 864, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'rdOeYxEA', '5698046'), + (78138, 864, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'rdOeYxEA', '5699760'), + (78139, 864, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'rdOeYxEA', '5741601'), + (78140, 864, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'rdOeYxEA', '5763458'), + (78141, 864, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'rdOeYxEA', '5774172'), + (78142, 864, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'rdOeYxEA', '5818247'), + (78143, 864, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'rdOeYxEA', '5819471'), + (78144, 864, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'rdOeYxEA', '5827739'), + (78145, 864, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'rdOeYxEA', '5844306'), + (78146, 864, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'rdOeYxEA', '5850159'), + (78147, 864, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'rdOeYxEA', '5858999'), + (78148, 864, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'rdOeYxEA', '5871984'), + (78149, 864, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'rdOeYxEA', '5876354'), + (78150, 864, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'rdOeYxEA', '5880939'), + (78151, 864, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'rdOeYxEA', '5880940'), + (78152, 864, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'rdOeYxEA', '5880942'), + (78153, 864, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'rdOeYxEA', '5880943'), + (78154, 864, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'rdOeYxEA', '5887890'), + (78155, 864, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'rdOeYxEA', '5888598'), + (78156, 864, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'rdOeYxEA', '5893260'), + (78157, 864, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'rdOeYxEA', '5899826'), + (78158, 864, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'rdOeYxEA', '5900199'), + (78159, 864, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'rdOeYxEA', '5900200'), + (78160, 864, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'rdOeYxEA', '5900202'), + (78161, 864, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'rdOeYxEA', '5900203'), + (78162, 864, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'rdOeYxEA', '5901108'), + (78163, 864, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'rdOeYxEA', '5901126'), + (78164, 864, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'rdOeYxEA', '5909655'), + (78165, 864, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'rdOeYxEA', '5910522'), + (78166, 864, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'rdOeYxEA', '5910526'), + (78167, 864, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'rdOeYxEA', '5910528'), + (78168, 864, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'rdOeYxEA', '5916219'), + (78169, 864, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'rdOeYxEA', '5936234'), + (78170, 864, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'rdOeYxEA', '5958351'), + (78171, 864, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'rdOeYxEA', '5959751'), + (78172, 864, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'rdOeYxEA', '5959755'), + (78173, 864, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'rdOeYxEA', '5960055'), + (78174, 864, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'rdOeYxEA', '5961684'), + (78175, 864, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'rdOeYxEA', '5962132'), + (78176, 864, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'rdOeYxEA', '5962133'), + (78177, 864, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'rdOeYxEA', '5962134'), + (78178, 864, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'rdOeYxEA', '5962317'), + (78179, 864, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'rdOeYxEA', '5962318'), + (78180, 864, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'rdOeYxEA', '5965933'), + (78181, 864, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'rdOeYxEA', '5967014'), + (78182, 864, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'rdOeYxEA', '5972815'), + (78183, 864, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'rdOeYxEA', '5974016'), + (78184, 864, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'rdOeYxEA', '5981515'), + (78185, 864, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'rdOeYxEA', '5993516'), + (78186, 864, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'rdOeYxEA', '5998939'), + (78187, 864, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'rdOeYxEA', '6028191'), + (78188, 864, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'rdOeYxEA', '6040066'), + (78189, 864, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'rdOeYxEA', '6042717'), + (78190, 864, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'rdOeYxEA', '6044838'), + (78191, 864, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'rdOeYxEA', '6044839'), + (78192, 864, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOeYxEA', '6045684'), + (78193, 864, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'rdOeYxEA', '6050104'), + (78194, 864, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'rdOeYxEA', '6053195'), + (78195, 864, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'rdOeYxEA', '6053198'), + (78196, 864, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'rdOeYxEA', '6056085'), + (78197, 864, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'rdOeYxEA', '6056916'), + (78198, 864, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'rdOeYxEA', '6059290'), + (78199, 864, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'rdOeYxEA', '6060328'), + (78200, 864, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'rdOeYxEA', '6061037'), + (78201, 864, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'rdOeYxEA', '6061039'), + (78202, 864, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'rdOeYxEA', '6067245'), + (78203, 864, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'rdOeYxEA', '6068094'), + (78204, 864, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'rdOeYxEA', '6068252'), + (78205, 864, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'rdOeYxEA', '6068253'), + (78206, 864, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'rdOeYxEA', '6068254'), + (78207, 864, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'rdOeYxEA', '6068280'), + (78208, 864, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'rdOeYxEA', '6069093'), + (78209, 864, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'rdOeYxEA', '6072528'), + (78210, 864, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'rdOeYxEA', '6079840'), + (78211, 864, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'rdOeYxEA', '6083398'), + (78212, 864, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'rdOeYxEA', '6093504'), + (78213, 864, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'rdOeYxEA', '6097414'), + (78214, 864, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'rdOeYxEA', '6097442'), + (78215, 864, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'rdOeYxEA', '6097684'), + (78216, 864, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'rdOeYxEA', '6098762'), + (78217, 864, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'rdOeYxEA', '6101361'), + (78218, 864, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'rdOeYxEA', '6101362'), + (78219, 864, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'rdOeYxEA', '6107314'), + (78220, 864, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'rdOeYxEA', '6120034'), + (78221, 864, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'rdOeYxEA', '6136733'), + (78222, 864, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'rdOeYxEA', '6137989'), + (78223, 864, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'rdOeYxEA', '6150864'), + (78224, 864, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'rdOeYxEA', '6155491'), + (78225, 864, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'rdOeYxEA', '6164417'), + (78226, 864, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'rdOeYxEA', '6166388'), + (78227, 864, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'rdOeYxEA', '6176439'), + (78228, 864, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'rdOeYxEA', '6182410'), + (78229, 864, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'rdOeYxEA', '6185812'), + (78230, 864, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'rdOeYxEA', '6187651'), + (78231, 864, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'rdOeYxEA', '6187963'), + (78232, 864, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'rdOeYxEA', '6187964'), + (78233, 864, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'rdOeYxEA', '6187966'), + (78234, 864, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'rdOeYxEA', '6187967'), + (78235, 864, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'rdOeYxEA', '6187969'), + (78236, 864, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'rdOeYxEA', '6334878'), + (78237, 864, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'rdOeYxEA', '6337236'), + (78238, 864, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'rdOeYxEA', '6337970'), + (78239, 864, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'rdOeYxEA', '6338308'), + (78240, 864, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'rdOeYxEA', '6341710'), + (78241, 864, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'rdOeYxEA', '6342044'), + (78242, 864, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'rdOeYxEA', '6342298'), + (78243, 864, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'rdOeYxEA', '6343294'), + (78244, 864, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'rdOeYxEA', '6347034'), + (78245, 864, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'rdOeYxEA', '6347056'), + (78246, 864, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'rdOeYxEA', '6353830'), + (78247, 864, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'rdOeYxEA', '6353831'), + (78248, 864, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'rdOeYxEA', '6357867'), + (78249, 864, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'rdOeYxEA', '6358652'), + (78250, 864, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'rdOeYxEA', '6361709'), + (78251, 864, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'rdOeYxEA', '6361710'), + (78252, 864, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'rdOeYxEA', '6361711'), + (78253, 864, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'rdOeYxEA', '6361712'), + (78254, 864, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'rdOeYxEA', '6361713'), + (78255, 864, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'rdOeYxEA', '6382573'), + (78256, 864, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'rdOeYxEA', '6388604'), + (78257, 864, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'rdOeYxEA', '6394629'), + (78258, 864, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'rdOeYxEA', '6394631'), + (78259, 864, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'rdOeYxEA', '6440863'), + (78260, 864, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'rdOeYxEA', '6445440'), + (78261, 864, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'rdOeYxEA', '6453951'), + (78262, 864, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'rdOeYxEA', '6461696'), + (78263, 864, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'rdOeYxEA', '6462129'), + (78264, 864, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'rdOeYxEA', '6463218'), + (78265, 864, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'rdOeYxEA', '6472181'), + (78266, 864, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'rdOeYxEA', '6482693'), + (78267, 864, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'rdOeYxEA', '6484200'), + (78268, 864, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'rdOeYxEA', '6484680'), + (78269, 864, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'rdOeYxEA', '6507741'), + (78270, 864, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'rdOeYxEA', '6514659'), + (78271, 864, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'rdOeYxEA', '6514660'), + (78272, 864, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'rdOeYxEA', '6519103'), + (78273, 864, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'rdOeYxEA', '6535681'), + (78274, 864, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'rdOeYxEA', '6584747'), + (78275, 864, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'rdOeYxEA', '6587097'), + (78276, 864, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'rdOeYxEA', '6609022'), + (78277, 864, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'rdOeYxEA', '6632757'), + (78278, 864, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'rdOeYxEA', '6644187'), + (78279, 864, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'rdOeYxEA', '6648951'), + (78280, 864, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'rdOeYxEA', '6648952'), + (78281, 864, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'rdOeYxEA', '6655401'), + (78282, 864, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'rdOeYxEA', '6661585'), + (78283, 864, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'rdOeYxEA', '6661588'), + (78284, 864, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'rdOeYxEA', '6661589'), + (78285, 864, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'rdOeYxEA', '6699906'), + (78286, 864, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'rdOeYxEA', '6699913'), + (78287, 864, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'rdOeYxEA', '6701109'), + (78288, 864, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'rdOeYxEA', '6705219'), + (78289, 864, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'rdOeYxEA', '6710153'), + (78290, 864, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'rdOeYxEA', '6711552'), + (78291, 864, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'rdOeYxEA', '6711553'), + (78292, 864, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'rdOeYxEA', '6722688'), + (78293, 864, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'rdOeYxEA', '6730620'), + (78294, 864, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'rdOeYxEA', '6740364'), + (78295, 864, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'rdOeYxEA', '6743829'), + (78296, 864, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'rdOeYxEA', '7030380'), + (78297, 864, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'rdOeYxEA', '7033677'), + (78298, 864, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'rdOeYxEA', '7044715'), + (78299, 864, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'rdOeYxEA', '7050318'), + (78300, 864, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'rdOeYxEA', '7050319'), + (78301, 864, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'rdOeYxEA', '7050322'), + (78302, 864, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'rdOeYxEA', '7057804'), + (78303, 864, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'rdOeYxEA', '7072824'), + (78304, 864, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'rdOeYxEA', '7074348'), + (78305, 864, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'rdOeYxEA', '7074364'), + (78306, 864, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'rdOeYxEA', '7089267'), + (78307, 864, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'rdOeYxEA', '7098747'), + (78308, 864, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'rdOeYxEA', '7113468'), + (78309, 864, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'rdOeYxEA', '7114856'), + (78310, 864, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'rdOeYxEA', '7114951'), + (78311, 864, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'rdOeYxEA', '7114955'), + (78312, 864, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'rdOeYxEA', '7114956'), + (78313, 864, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'rdOeYxEA', '7114957'), + (78314, 864, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'rdOeYxEA', '7159484'), + (78315, 864, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'rdOeYxEA', '7178446'), + (78316, 864, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'rdOeYxEA', '7220467'), + (78317, 864, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'rdOeYxEA', '7240354'), + (78318, 864, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'rdOeYxEA', '7251633'), + (78319, 864, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'rdOeYxEA', '7324073'), + (78320, 864, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'rdOeYxEA', '7324074'), + (78321, 864, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'rdOeYxEA', '7324075'), + (78322, 864, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'rdOeYxEA', '7324078'), + (78323, 864, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'rdOeYxEA', '7324082'), + (78324, 864, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'rdOeYxEA', '7331457'), + (78325, 864, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'rdOeYxEA', '7363643'), + (78326, 864, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'rdOeYxEA', '7368606'), + (78327, 864, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'rdOeYxEA', '7397462'), + (78328, 864, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'rdOeYxEA', '7424275'), + (78329, 864, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'rdOeYxEA', '7432751'), + (78330, 864, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'rdOeYxEA', '7432752'), + (78331, 864, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'rdOeYxEA', '7432753'), + (78332, 864, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'rdOeYxEA', '7432754'), + (78333, 864, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'rdOeYxEA', '7432755'), + (78334, 864, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'rdOeYxEA', '7432756'), + (78335, 864, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'rdOeYxEA', '7432758'), + (78336, 864, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'rdOeYxEA', '7432759'), + (78337, 864, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'rdOeYxEA', '7433834'), + (78338, 864, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'rdOeYxEA', '7470197'), + (78339, 864, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'rdOeYxEA', '7685613'), + (78340, 864, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'rdOeYxEA', '7688194'), + (78341, 864, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'rdOeYxEA', '7688196'), + (78342, 864, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'rdOeYxEA', '7688289'), + (78343, 864, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'rdOeYxEA', '7692763'), + (78344, 864, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'rdOeYxEA', '7697552'), + (78345, 864, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'rdOeYxEA', '7699878'), + (78346, 864, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'rdOeYxEA', '7704043'), + (78347, 864, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'rdOeYxEA', '7712467'), + (78348, 864, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'rdOeYxEA', '7713585'), + (78349, 864, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'rdOeYxEA', '7713586'), + (78350, 864, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'rdOeYxEA', '7738518'), + (78351, 864, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'rdOeYxEA', '7750636'), + (78352, 864, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'rdOeYxEA', '7796540'), + (78353, 864, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'rdOeYxEA', '7796541'), + (78354, 864, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'rdOeYxEA', '7796542'), + (78355, 864, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'rdOeYxEA', '7825913'), + (78356, 864, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'rdOeYxEA', '7826209'), + (78357, 864, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'rdOeYxEA', '7834742'), + (78358, 864, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'rdOeYxEA', '7842108'), + (78359, 864, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'rdOeYxEA', '7842902'), + (78360, 864, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'rdOeYxEA', '7842903'), + (78361, 864, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'rdOeYxEA', '7842904'), + (78362, 864, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'rdOeYxEA', '7842905'), + (78363, 864, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'rdOeYxEA', '7855719'), + (78364, 864, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'rdOeYxEA', '7860683'), + (78365, 864, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'rdOeYxEA', '7860684'), + (78366, 864, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'rdOeYxEA', '7866095'), + (78367, 864, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'rdOeYxEA', '7869170'), + (78368, 864, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'rdOeYxEA', '7869188'), + (78369, 864, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'rdOeYxEA', '7869201'), + (78370, 864, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'rdOeYxEA', '7877465'), + (78371, 864, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'rdOeYxEA', '7888250'), + (78372, 864, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'rdOeYxEA', '7904777'), + (78373, 864, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'rdOeYxEA', '8349164'), + (78374, 864, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'rdOeYxEA', '8349545'), + (78375, 864, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'rdOeYxEA', '8368028'), + (78376, 864, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'rdOeYxEA', '8368029'), + (78377, 864, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'rdOeYxEA', '8388462'), + (78378, 864, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'rdOeYxEA', '8400273'), + (78379, 864, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'rdOeYxEA', '8400275'), + (78380, 864, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'rdOeYxEA', '8400276'), + (78381, 864, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'rdOeYxEA', '8404977'), + (78382, 864, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'rdOeYxEA', '8430783'), + (78383, 864, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'rdOeYxEA', '8430784'), + (78384, 864, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'rdOeYxEA', '8430799'), + (78385, 864, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'rdOeYxEA', '8430800'), + (78386, 864, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'rdOeYxEA', '8430801'), + (78387, 864, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'rdOeYxEA', '8438709'), + (78388, 864, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'rdOeYxEA', '8457738'), + (78389, 864, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'rdOeYxEA', '8459566'), + (78390, 864, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'rdOeYxEA', '8459567'), + (78391, 864, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'rdOeYxEA', '8461032'), + (78392, 864, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'rdOeYxEA', '8477877'), + (78393, 864, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'rdOeYxEA', '8485688'), + (78394, 864, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'rdOeYxEA', '8490587'), + (78395, 864, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'rdOeYxEA', '8493552'), + (78396, 864, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'rdOeYxEA', '8493553'), + (78397, 864, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'rdOeYxEA', '8493554'), + (78398, 864, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'rdOeYxEA', '8493555'), + (78399, 864, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'rdOeYxEA', '8493556'), + (78400, 864, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'rdOeYxEA', '8493557'), + (78401, 864, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'rdOeYxEA', '8493558'), + (78402, 864, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'rdOeYxEA', '8493559'), + (78403, 864, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'rdOeYxEA', '8493560'), + (78404, 864, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'rdOeYxEA', '8493561'), + (78405, 864, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'rdOeYxEA', '8493572'), + (78406, 864, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'rdOeYxEA', '8540725'), + (78407, 864, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'rdOeYxEA', '8555421'), + (78408, 865, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4EKjz8Zm', '8485688'), + (78409, 865, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4EKjz8Zm', '8490587'), + (78410, 865, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4EKjz8Zm', '8493552'), + (78411, 865, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4EKjz8Zm', '8493553'), + (78412, 865, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4EKjz8Zm', '8493554'), + (78413, 865, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4EKjz8Zm', '8493555'), + (78414, 865, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4EKjz8Zm', '8493556'), + (78415, 865, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4EKjz8Zm', '8493557'), + (78416, 865, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4EKjz8Zm', '8493558'), + (78417, 865, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4EKjz8Zm', '8493559'), + (78418, 865, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4EKjz8Zm', '8493560'), + (78419, 865, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '4EKjz8Zm', '8493561'), + (78420, 865, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4EKjz8Zm', '8493572'), + (78421, 865, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', '4EKjz8Zm', '8529058'), + (78422, 866, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'd9oEzweA', '5186585'), + (78423, 866, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9oEzweA', '5190437'), + (78424, 866, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'd9oEzweA', '5195095'), + (78425, 866, 1285, 'maybe', '2022-03-26 00:53:57', '2025-12-17 19:47:25', 'd9oEzweA', '5196763'), + (78426, 866, 1288, 'attending', '2022-03-26 00:54:10', '2025-12-17 19:47:25', 'd9oEzweA', '5199460'), + (78427, 866, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9oEzweA', '5215989'), + (78428, 866, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'd9oEzweA', '5223686'), + (78429, 866, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'd9oEzweA', '5227432'), + (78430, 866, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'd9oEzweA', '5247467'), + (78431, 866, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd9oEzweA', '5260800'), + (78432, 866, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd9oEzweA', '5269930'), + (78433, 866, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd9oEzweA', '5271448'), + (78434, 866, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'd9oEzweA', '5271449'), + (78435, 866, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd9oEzweA', '5276469'), + (78436, 866, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd9oEzweA', '5278159'), + (78437, 866, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'd9oEzweA', '5363695'), + (78438, 866, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'd9oEzweA', '5365960'), + (78439, 866, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'd9oEzweA', '5368973'), + (78440, 866, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'd9oEzweA', '5378247'), + (78441, 866, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'd9oEzweA', '5389605'), + (78442, 866, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'd9oEzweA', '5397265'), + (78443, 866, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd9oEzweA', '5403967'), + (78444, 866, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'd9oEzweA', '5404786'), + (78445, 866, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'd9oEzweA', '5405203'), + (78446, 866, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'd9oEzweA', '5408794'), + (78447, 866, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'd9oEzweA', '5411699'), + (78448, 866, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'd9oEzweA', '5412550'), + (78449, 866, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'd9oEzweA', '5415046'), + (78450, 866, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd9oEzweA', '5422086'), + (78451, 866, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'd9oEzweA', '5422406'), + (78452, 866, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'd9oEzweA', '5424565'), + (78453, 866, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'd9oEzweA', '5426882'), + (78454, 866, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'd9oEzweA', '5427083'), + (78455, 866, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'd9oEzweA', '5441125'), + (78456, 866, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'd9oEzweA', '5441126'), + (78457, 866, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd9oEzweA', '5441128'), + (78458, 866, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd9oEzweA', '5441131'), + (78459, 866, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'd9oEzweA', '5441132'), + (78460, 866, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'd9oEzweA', '5446643'), + (78461, 866, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'd9oEzweA', '5453325'), + (78462, 866, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd9oEzweA', '5454516'), + (78463, 866, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd9oEzweA', '5454605'), + (78464, 866, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd9oEzweA', '5455037'), + (78465, 866, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd9oEzweA', '5461278'), + (78466, 866, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd9oEzweA', '5469480'), + (78467, 866, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd9oEzweA', '5471073'), + (78468, 866, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd9oEzweA', '5474663'), + (78469, 866, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd9oEzweA', '5482022'), + (78470, 866, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd9oEzweA', '5482793'), + (78471, 866, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd9oEzweA', '5488912'), + (78472, 866, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd9oEzweA', '5492192'), + (78473, 866, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd9oEzweA', '5493139'), + (78474, 866, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd9oEzweA', '5493200'), + (78475, 866, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd9oEzweA', '5502188'), + (78476, 866, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd9oEzweA', '5505059'), + (78477, 866, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd9oEzweA', '5509055'), + (78478, 866, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd9oEzweA', '5512862'), + (78479, 866, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd9oEzweA', '5513985'), + (78480, 866, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd9oEzweA', '5519981'), + (78481, 866, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd9oEzweA', '5522550'), + (78482, 866, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd9oEzweA', '5534683'), + (78483, 866, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd9oEzweA', '5546619'), + (78484, 866, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd9oEzweA', '5555245'), + (78485, 866, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd9oEzweA', '5557747'), + (78486, 866, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9oEzweA', '6045684'), + (78487, 867, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4DMQRx3d', '7324082'), + (78488, 867, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4DMQRx3d', '7397462'), + (78489, 867, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4DMQRx3d', '7424275'), + (78490, 867, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4DMQRx3d', '7432751'), + (78491, 867, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4DMQRx3d', '7432752'), + (78492, 867, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4DMQRx3d', '7432753'), + (78493, 867, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4DMQRx3d', '7432754'), + (78494, 867, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4DMQRx3d', '7432755'), + (78495, 867, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4DMQRx3d', '7432756'), + (78496, 867, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4DMQRx3d', '7432758'), + (78497, 867, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4DMQRx3d', '7432759'), + (78498, 867, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4DMQRx3d', '7433834'), + (78499, 867, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4DMQRx3d', '7470197'), + (78500, 867, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4DMQRx3d', '7685613'), + (78501, 867, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4DMQRx3d', '7688194'), + (78502, 867, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4DMQRx3d', '7688196'), + (78503, 867, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4DMQRx3d', '7688289'), + (78504, 868, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Pm72e15d', '3236465'), + (78505, 868, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'Pm72e15d', '3539916'), + (78506, 868, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Pm72e15d', '3539918'), + (78507, 868, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Pm72e15d', '3539919'), + (78508, 868, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm72e15d', '3539920'), + (78509, 868, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm72e15d', '3539921'), + (78510, 868, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm72e15d', '3583262'), + (78511, 868, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm72e15d', '3661369'), + (78512, 868, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Pm72e15d', '3674262'), + (78513, 868, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Pm72e15d', '3677402'), + (78514, 868, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm72e15d', '3730212'), + (78515, 868, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm72e15d', '3793156'), + (78516, 868, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Pm72e15d', '3803310'), + (78517, 868, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Pm72e15d', '3806392'), + (78518, 868, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm72e15d', '6045684'), + (78519, 869, 1340, 'not_attending', '2022-04-28 01:59:35', '2025-12-17 19:47:27', 'mpQ6axqA', '5245754'), + (78520, 869, 1350, 'not_attending', '2022-04-20 14:17:09', '2025-12-17 19:47:27', 'mpQ6axqA', '5249763'), + (78521, 869, 1353, 'attending', '2022-04-21 00:06:17', '2025-12-17 19:47:27', 'mpQ6axqA', '5251777'), + (78522, 869, 1360, 'maybe', '2022-04-27 00:30:11', '2025-12-17 19:47:27', 'mpQ6axqA', '5260197'), + (78523, 869, 1362, 'attending', '2022-04-30 20:03:13', '2025-12-17 19:47:28', 'mpQ6axqA', '5260800'), + (78524, 869, 1364, 'maybe', '2022-05-02 17:48:45', '2025-12-17 19:47:28', 'mpQ6axqA', '5261598'), + (78525, 869, 1368, 'attending', '2022-05-05 18:06:52', '2025-12-17 19:47:28', 'mpQ6axqA', '5262783'), + (78526, 869, 1371, 'attending', '2022-04-27 21:19:41', '2025-12-17 19:47:27', 'mpQ6axqA', '5263784'), + (78527, 869, 1372, 'attending', '2022-05-04 20:12:07', '2025-12-17 19:47:28', 'mpQ6axqA', '5264352'), + (78528, 869, 1374, 'not_attending', '2022-05-07 17:28:22', '2025-12-17 19:47:28', 'mpQ6axqA', '5269930'), + (78529, 869, 1376, 'not_attending', '2022-05-12 20:03:13', '2025-12-17 19:47:28', 'mpQ6axqA', '5271446'), + (78530, 869, 1377, 'not_attending', '2022-05-12 20:03:17', '2025-12-17 19:47:28', 'mpQ6axqA', '5271447'), + (78531, 869, 1378, 'attending', '2022-05-14 01:36:19', '2025-12-17 19:47:29', 'mpQ6axqA', '5271448'), + (78532, 869, 1379, 'not_attending', '2022-05-22 14:53:54', '2025-12-17 19:47:30', 'mpQ6axqA', '5271449'), + (78533, 869, 1380, 'attending', '2022-05-28 14:43:35', '2025-12-17 19:47:30', 'mpQ6axqA', '5271450'), + (78534, 869, 1382, 'not_attending', '2022-05-09 21:53:56', '2025-12-17 19:47:28', 'mpQ6axqA', '5276350'), + (78535, 869, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mpQ6axqA', '5276469'), + (78536, 869, 1385, 'attending', '2022-05-11 21:08:23', '2025-12-17 19:47:28', 'mpQ6axqA', '5277822'), + (78537, 869, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mpQ6axqA', '5278159'), + (78538, 869, 1391, 'attending', '2022-05-08 18:02:36', '2025-12-17 19:47:28', 'mpQ6axqA', '5279531'), + (78539, 869, 1392, 'attending', '2022-05-10 22:45:25', '2025-12-17 19:47:28', 'mpQ6axqA', '5279532'), + (78540, 869, 1394, 'maybe', '2022-05-22 14:54:54', '2025-12-17 19:47:30', 'mpQ6axqA', '5280667'), + (78541, 869, 1401, 'attending', '2022-05-18 16:33:08', '2025-12-17 19:47:29', 'mpQ6axqA', '5286295'), + (78542, 869, 1403, 'attending', '2022-05-20 21:09:07', '2025-12-17 19:47:29', 'mpQ6axqA', '5288052'), + (78543, 869, 1407, 'attending', '2022-06-02 03:00:01', '2025-12-17 19:47:30', 'mpQ6axqA', '5363695'), + (78544, 869, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mpQ6axqA', '5365960'), + (78545, 869, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mpQ6axqA', '5368973'), + (78546, 869, 1416, 'not_attending', '2022-05-28 14:48:03', '2025-12-17 19:47:30', 'mpQ6axqA', '5369628'), + (78547, 869, 1419, 'attending', '2022-06-08 18:30:48', '2025-12-17 19:47:30', 'mpQ6axqA', '5373081'), + (78548, 869, 1421, 'not_attending', '2022-05-30 21:01:01', '2025-12-17 19:47:30', 'mpQ6axqA', '5374885'), + (78549, 869, 1423, 'maybe', '2022-06-15 14:01:31', '2025-12-17 19:47:17', 'mpQ6axqA', '5375727'), + (78550, 869, 1424, 'attending', '2022-05-23 22:50:04', '2025-12-17 19:47:30', 'mpQ6axqA', '5375772'), + (78551, 869, 1427, 'attending', '2022-05-25 19:19:08', '2025-12-17 19:47:30', 'mpQ6axqA', '5376074'), + (78552, 869, 1428, 'attending', '2022-06-10 13:10:52', '2025-12-17 19:47:30', 'mpQ6axqA', '5378247'), + (78553, 869, 1429, 'attending', '2022-05-29 13:02:49', '2025-12-17 19:47:30', 'mpQ6axqA', '5388761'), + (78554, 869, 1431, 'attending', '2022-06-10 13:12:57', '2025-12-17 19:47:30', 'mpQ6axqA', '5389605'), + (78555, 869, 1435, 'not_attending', '2022-05-31 21:59:31', '2025-12-17 19:47:30', 'mpQ6axqA', '5394015'), + (78556, 869, 1436, 'not_attending', '2022-06-02 23:15:45', '2025-12-17 19:47:30', 'mpQ6axqA', '5394292'), + (78557, 869, 1438, 'attending', '2022-06-01 18:39:10', '2025-12-17 19:47:30', 'mpQ6axqA', '5395032'), + (78558, 869, 1440, 'not_attending', '2022-06-07 22:43:53', '2025-12-17 19:47:30', 'mpQ6axqA', '5396080'), + (78559, 869, 1442, 'attending', '2022-06-18 02:01:29', '2025-12-17 19:47:17', 'mpQ6axqA', '5397265'), + (78560, 869, 1447, 'not_attending', '2022-06-08 22:19:07', '2025-12-17 19:47:30', 'mpQ6axqA', '5401089'), + (78561, 869, 1451, 'attending', '2022-06-14 13:51:55', '2025-12-17 19:47:17', 'mpQ6axqA', '5403967'), + (78562, 869, 1455, 'attending', '2022-06-10 13:12:06', '2025-12-17 19:47:31', 'mpQ6axqA', '5404772'), + (78563, 869, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mpQ6axqA', '5404786'), + (78564, 869, 1462, 'not_attending', '2022-06-13 12:38:49', '2025-12-17 19:47:17', 'mpQ6axqA', '5405203'), + (78565, 869, 1463, 'attending', '2022-06-14 23:01:13', '2025-12-17 19:47:31', 'mpQ6axqA', '5405208'), + (78566, 869, 1464, 'attending', '2022-06-10 19:43:25', '2025-12-17 19:47:30', 'mpQ6axqA', '5405212'), + (78567, 869, 1469, 'attending', '2022-06-20 21:52:58', '2025-12-17 19:47:17', 'mpQ6axqA', '5406838'), + (78568, 869, 1470, 'attending', '2022-06-13 12:37:55', '2025-12-17 19:47:17', 'mpQ6axqA', '5407053'), + (78569, 869, 1471, 'attending', '2022-06-21 23:06:29', '2025-12-17 19:47:17', 'mpQ6axqA', '5407063'), + (78570, 869, 1472, 'attending', '2022-06-18 21:05:11', '2025-12-17 19:47:17', 'mpQ6axqA', '5407065'), + (78571, 869, 1473, 'attending', '2022-06-14 13:57:35', '2025-12-17 19:47:31', 'mpQ6axqA', '5407267'), + (78572, 869, 1475, 'attending', '2022-06-15 14:01:19', '2025-12-17 19:47:17', 'mpQ6axqA', '5408108'), + (78573, 869, 1478, 'not_attending', '2022-06-24 17:38:13', '2025-12-17 19:47:19', 'mpQ6axqA', '5408794'), + (78574, 869, 1480, 'not_attending', '2022-06-21 23:27:10', '2025-12-17 19:47:19', 'mpQ6axqA', '5411699'), + (78575, 869, 1481, 'attending', '2022-06-19 16:21:39', '2025-12-17 19:47:17', 'mpQ6axqA', '5412237'), + (78576, 869, 1482, 'attending', '2022-06-19 16:19:17', '2025-12-17 19:47:19', 'mpQ6axqA', '5412550'), + (78577, 869, 1484, 'attending', '2022-06-21 15:12:24', '2025-12-17 19:47:17', 'mpQ6axqA', '5415046'), + (78578, 869, 1488, 'attending', '2022-07-04 01:39:12', '2025-12-17 19:47:19', 'mpQ6axqA', '5420154'), + (78579, 869, 1489, 'attending', '2022-06-30 22:09:12', '2025-12-17 19:47:19', 'mpQ6axqA', '5420155'), + (78580, 869, 1491, 'attending', '2022-06-30 22:09:26', '2025-12-17 19:47:19', 'mpQ6axqA', '5420158'), + (78581, 869, 1492, 'attending', '2022-06-30 22:09:16', '2025-12-17 19:47:19', 'mpQ6axqA', '5420175'), + (78582, 869, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mpQ6axqA', '5422086'), + (78583, 869, 1497, 'attending', '2022-06-28 19:07:19', '2025-12-17 19:47:19', 'mpQ6axqA', '5422405'), + (78584, 869, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mpQ6axqA', '5422406'), + (78585, 869, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mpQ6axqA', '5424565'), + (78586, 869, 1504, 'attending', '2022-07-12 18:15:44', '2025-12-17 19:47:19', 'mpQ6axqA', '5426882'), + (78587, 869, 1505, 'attending', '2022-07-03 13:24:51', '2025-12-17 19:47:19', 'mpQ6axqA', '5427083'), + (78588, 869, 1508, 'attending', '2022-07-09 14:40:53', '2025-12-17 19:47:19', 'mpQ6axqA', '5433453'), + (78589, 869, 1509, 'attending', '2022-07-03 13:22:15', '2025-12-17 19:47:19', 'mpQ6axqA', '5434019'), + (78590, 869, 1511, 'attending', '2022-07-07 01:55:37', '2025-12-17 19:47:19', 'mpQ6axqA', '5437733'), + (78591, 869, 1513, 'attending', '2022-07-11 13:17:48', '2025-12-17 19:47:19', 'mpQ6axqA', '5441125'), + (78592, 869, 1514, 'attending', '2022-07-19 02:55:13', '2025-12-17 19:47:20', 'mpQ6axqA', '5441126'), + (78593, 869, 1515, 'attending', '2022-07-26 18:26:10', '2025-12-17 19:47:21', 'mpQ6axqA', '5441128'), + (78594, 869, 1516, 'attending', '2022-08-15 16:24:56', '2025-12-17 19:47:23', 'mpQ6axqA', '5441129'), + (78595, 869, 1517, 'attending', '2022-08-21 13:17:47', '2025-12-17 19:47:23', 'mpQ6axqA', '5441130'), + (78596, 869, 1518, 'attending', '2022-08-28 17:55:48', '2025-12-17 19:47:24', 'mpQ6axqA', '5441131'), + (78597, 869, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mpQ6axqA', '5441132'), + (78598, 869, 1521, 'not_attending', '2022-07-10 15:30:09', '2025-12-17 19:47:19', 'mpQ6axqA', '5442180'), + (78599, 869, 1524, 'attending', '2022-07-11 15:51:19', '2025-12-17 19:47:19', 'mpQ6axqA', '5443300'), + (78600, 869, 1525, 'attending', '2022-07-12 21:47:51', '2025-12-17 19:47:19', 'mpQ6axqA', '5444962'), + (78601, 869, 1526, 'not_attending', '2022-07-13 00:53:48', '2025-12-17 19:47:20', 'mpQ6axqA', '5445059'), + (78602, 869, 1528, 'attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mpQ6axqA', '5446643'), + (78603, 869, 1535, 'maybe', '2022-07-16 12:56:22', '2025-12-17 19:47:20', 'mpQ6axqA', '5448830'), + (78604, 869, 1537, 'attending', '2022-07-17 13:44:23', '2025-12-17 19:47:20', 'mpQ6axqA', '5449117'), + (78605, 869, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mpQ6axqA', '5453325'), + (78606, 869, 1541, 'attending', '2022-07-25 18:51:13', '2025-12-17 19:47:20', 'mpQ6axqA', '5453542'), + (78607, 869, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mpQ6axqA', '5454516'), + (78608, 869, 1544, 'not_attending', '2022-09-11 22:47:10', '2025-12-17 19:47:11', 'mpQ6axqA', '5454517'), + (78609, 869, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mpQ6axqA', '5454605'), + (78610, 869, 1546, 'attending', '2022-07-21 23:06:57', '2025-12-17 19:47:20', 'mpQ6axqA', '5454607'), + (78611, 869, 1550, 'attending', '2022-07-21 23:06:47', '2025-12-17 19:47:20', 'mpQ6axqA', '5454803'), + (78612, 869, 1551, 'attending', '2022-07-19 22:16:28', '2025-12-17 19:47:20', 'mpQ6axqA', '5455037'), + (78613, 869, 1554, 'attending', '2022-07-20 12:55:08', '2025-12-17 19:47:20', 'mpQ6axqA', '5455230'), + (78614, 869, 1556, 'not_attending', '2022-07-23 13:52:06', '2025-12-17 19:47:20', 'mpQ6axqA', '5457734'), + (78615, 869, 1557, 'attending', '2022-07-29 16:01:03', '2025-12-17 19:47:21', 'mpQ6axqA', '5458729'), + (78616, 869, 1558, 'attending', '2022-09-06 18:10:52', '2025-12-17 19:47:10', 'mpQ6axqA', '5458730'), + (78617, 869, 1559, 'attending', '2022-09-26 22:43:55', '2025-12-17 19:47:11', 'mpQ6axqA', '5458731'), + (78618, 869, 1561, 'attending', '2022-07-27 21:29:30', '2025-12-17 19:47:22', 'mpQ6axqA', '5461278'), + (78619, 869, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mpQ6axqA', '5469480'), + (78620, 869, 1565, 'attending', '2022-07-27 01:30:12', '2025-12-17 19:47:21', 'mpQ6axqA', '5471073'), + (78621, 869, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mpQ6axqA', '5474663'), + (78622, 869, 1571, 'attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mpQ6axqA', '5482022'), + (78623, 869, 1573, 'not_attending', '2022-08-01 20:45:32', '2025-12-17 19:47:22', 'mpQ6axqA', '5482152'), + (78624, 869, 1574, 'not_attending', '2022-08-01 20:45:40', '2025-12-17 19:47:22', 'mpQ6axqA', '5482153'), + (78625, 869, 1575, 'attending', '2022-08-21 13:17:10', '2025-12-17 19:47:23', 'mpQ6axqA', '5482250'), + (78626, 869, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mpQ6axqA', '5482793'), + (78627, 869, 1579, 'maybe', '2022-08-04 13:40:45', '2025-12-17 19:47:22', 'mpQ6axqA', '5486019'), + (78628, 869, 1580, 'attending', '2022-08-06 19:53:26', '2025-12-17 19:47:22', 'mpQ6axqA', '5488912'), + (78629, 869, 1581, 'attending', '2022-08-10 00:06:09', '2025-12-17 19:47:22', 'mpQ6axqA', '5490302'), + (78630, 869, 1582, 'maybe', '2022-08-08 02:14:12', '2025-12-17 19:47:23', 'mpQ6axqA', '5492001'), + (78631, 869, 1583, 'attending', '2022-08-07 22:07:50', '2025-12-17 19:47:22', 'mpQ6axqA', '5492002'), + (78632, 869, 1584, 'not_attending', '2022-08-08 22:03:50', '2025-12-17 19:47:23', 'mpQ6axqA', '5492004'), + (78633, 869, 1585, 'attending', '2022-08-07 21:31:48', '2025-12-17 19:47:22', 'mpQ6axqA', '5492013'), + (78634, 869, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mpQ6axqA', '5492192'), + (78635, 869, 1588, 'attending', '2022-08-08 19:49:57', '2025-12-17 19:47:22', 'mpQ6axqA', '5493139'), + (78636, 869, 1589, 'attending', '2022-08-18 19:36:39', '2025-12-17 19:47:23', 'mpQ6axqA', '5493159'), + (78637, 869, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:22', 'mpQ6axqA', '5493200'), + (78638, 869, 1595, 'attending', '2022-08-09 23:20:49', '2025-12-17 19:47:22', 'mpQ6axqA', '5495736'), + (78639, 869, 1598, 'attending', '2022-08-10 20:51:01', '2025-12-17 19:47:22', 'mpQ6axqA', '5496567'), + (78640, 869, 1603, 'attending', '2022-08-14 04:14:03', '2025-12-17 19:47:23', 'mpQ6axqA', '5497895'), + (78641, 869, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mpQ6axqA', '5502188'), + (78642, 869, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mpQ6axqA', '5505059'), + (78643, 869, 1609, 'maybe', '2022-08-27 11:55:37', '2025-12-17 19:47:23', 'mpQ6axqA', '5506590'), + (78644, 869, 1610, 'attending', '2022-08-27 11:55:45', '2025-12-17 19:47:23', 'mpQ6axqA', '5506595'), + (78645, 869, 1615, 'attending', '2022-08-26 00:36:57', '2025-12-17 19:47:23', 'mpQ6axqA', '5509055'), + (78646, 869, 1618, 'not_attending', '2022-08-26 00:28:55', '2025-12-17 19:47:23', 'mpQ6axqA', '5512005'), + (78647, 869, 1619, 'maybe', '2022-08-23 18:27:31', '2025-12-17 19:47:23', 'mpQ6axqA', '5512862'), + (78648, 869, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mpQ6axqA', '5513985'), + (78649, 869, 1626, 'attending', '2022-08-26 18:44:43', '2025-12-17 19:47:11', 'mpQ6axqA', '5519981'), + (78650, 869, 1629, 'maybe', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mpQ6axqA', '5522550'), + (78651, 869, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mpQ6axqA', '5534683'), + (78652, 869, 1635, 'not_attending', '2022-09-09 17:55:41', '2025-12-17 19:47:10', 'mpQ6axqA', '5537735'), + (78653, 869, 1636, 'attending', '2022-09-03 18:37:50', '2025-12-17 19:47:24', 'mpQ6axqA', '5538454'), + (78654, 869, 1638, 'attending', '2022-08-30 23:37:17', '2025-12-17 19:47:24', 'mpQ6axqA', '5540402'), + (78655, 869, 1639, 'attending', '2022-08-30 23:37:10', '2025-12-17 19:47:24', 'mpQ6axqA', '5540403'), + (78656, 869, 1640, 'attending', '2022-09-07 00:11:21', '2025-12-17 19:47:10', 'mpQ6axqA', '5540859'), + (78657, 869, 1642, 'not_attending', '2022-09-01 19:42:10', '2025-12-17 19:47:24', 'mpQ6axqA', '5544227'), + (78658, 869, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mpQ6axqA', '5546619'), + (78659, 869, 1648, 'not_attending', '2022-09-03 18:37:30', '2025-12-17 19:47:24', 'mpQ6axqA', '5548974'), + (78660, 869, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mpQ6axqA', '5555245'), + (78661, 869, 1659, 'attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mpQ6axqA', '5557747'), + (78662, 869, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mpQ6axqA', '5560255'), + (78663, 869, 1664, 'attending', '2022-09-10 18:47:40', '2025-12-17 19:47:25', 'mpQ6axqA', '5562906'), + (78664, 869, 1666, 'attending', '2022-09-26 22:42:41', '2025-12-17 19:47:11', 'mpQ6axqA', '5563208'), + (78665, 869, 1667, 'not_attending', '2022-09-21 19:44:00', '2025-12-17 19:47:11', 'mpQ6axqA', '5563221'), + (78666, 869, 1668, 'not_attending', '2022-09-18 21:10:49', '2025-12-17 19:47:12', 'mpQ6axqA', '5563222'), + (78667, 869, 1673, 'not_attending', '2022-09-21 19:45:19', '2025-12-17 19:47:11', 'mpQ6axqA', '5592454'), + (78668, 869, 1677, 'attending', '2022-09-22 01:31:37', '2025-12-17 19:47:11', 'mpQ6axqA', '5600604'), + (78669, 869, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mpQ6axqA', '5605544'), + (78670, 869, 1699, 'attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'mpQ6axqA', '5606737'), + (78671, 869, 1704, 'attending', '2022-10-06 22:18:27', '2025-12-17 19:47:12', 'mpQ6axqA', '5610508'), + (78672, 869, 1708, 'attending', '2022-10-02 15:04:02', '2025-12-17 19:47:12', 'mpQ6axqA', '5617648'), + (78673, 869, 1711, 'attending', '2022-10-02 21:11:40', '2025-12-17 19:47:12', 'mpQ6axqA', '5621883'), + (78674, 869, 1714, 'attending', '2022-10-02 21:11:48', '2025-12-17 19:47:14', 'mpQ6axqA', '5622347'), + (78675, 869, 1717, 'not_attending', '2022-10-18 20:07:59', '2025-12-17 19:47:13', 'mpQ6axqA', '5622842'), + (78676, 869, 1718, 'not_attending', '2022-10-18 20:07:29', '2025-12-17 19:47:12', 'mpQ6axqA', '5630907'), + (78677, 869, 1719, 'attending', '2022-10-05 20:14:24', '2025-12-17 19:47:12', 'mpQ6axqA', '5630958'), + (78678, 869, 1720, 'not_attending', '2022-10-09 11:55:38', '2025-12-17 19:47:12', 'mpQ6axqA', '5630959'), + (78679, 869, 1721, 'maybe', '2022-10-09 11:55:41', '2025-12-17 19:47:13', 'mpQ6axqA', '5630960'), + (78680, 869, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mpQ6axqA', '5630961'), + (78681, 869, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mpQ6axqA', '5630962'), + (78682, 869, 1724, 'maybe', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mpQ6axqA', '5630966'), + (78683, 869, 1725, 'attending', '2022-11-12 00:02:40', '2025-12-17 19:47:16', 'mpQ6axqA', '5630967'), + (78684, 869, 1726, 'maybe', '2022-11-16 00:30:35', '2025-12-17 19:47:16', 'mpQ6axqA', '5630968'), + (78685, 869, 1727, 'maybe', '2022-12-03 03:40:13', '2025-12-17 19:47:16', 'mpQ6axqA', '5630969'), + (78686, 869, 1728, 'maybe', '2022-11-27 16:28:15', '2025-12-17 19:47:17', 'mpQ6axqA', '5630970'), + (78687, 869, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mpQ6axqA', '5635406'), + (78688, 869, 1736, 'attending', '2022-10-31 17:00:33', '2025-12-17 19:47:15', 'mpQ6axqA', '5638456'), + (78689, 869, 1737, 'attending', '2022-11-28 19:49:03', '2025-12-17 19:47:16', 'mpQ6axqA', '5638457'), + (78690, 869, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mpQ6axqA', '5638765'), + (78691, 869, 1739, 'attending', '2022-10-24 17:50:20', '2025-12-17 19:47:14', 'mpQ6axqA', '5640097'), + (78692, 869, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'mpQ6axqA', '5640843'), + (78693, 869, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mpQ6axqA', '5641521'), + (78694, 869, 1744, 'attending', '2022-11-16 00:29:54', '2025-12-17 19:47:16', 'mpQ6axqA', '5642818'), + (78695, 869, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mpQ6axqA', '5652395'), + (78696, 869, 1761, 'attending', '2022-11-08 21:52:32', '2025-12-17 19:47:16', 'mpQ6axqA', '5670434'), + (78697, 869, 1762, 'attending', '2022-11-27 16:26:35', '2025-12-17 19:47:16', 'mpQ6axqA', '5670445'), + (78698, 869, 1763, 'attending', '2022-11-07 15:19:09', '2025-12-17 19:47:15', 'mpQ6axqA', '5670803'), + (78699, 869, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mpQ6axqA', '5671637'), + (78700, 869, 1765, 'maybe', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mpQ6axqA', '5672329'), + (78701, 869, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mpQ6axqA', '5674057'), + (78702, 869, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mpQ6axqA', '5674060'), + (78703, 869, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mpQ6axqA', '5677461'), + (78704, 869, 1774, 'not_attending', '2022-11-01 21:52:53', '2025-12-17 19:47:15', 'mpQ6axqA', '5677843'), + (78705, 869, 1776, 'not_attending', '2022-11-07 15:18:18', '2025-12-17 19:47:15', 'mpQ6axqA', '5691067'), + (78706, 869, 1777, 'maybe', '2022-11-01 21:51:34', '2025-12-17 19:47:15', 'mpQ6axqA', '5693021'), + (78707, 869, 1779, 'attending', '2022-11-01 22:17:52', '2025-12-17 19:47:15', 'mpQ6axqA', '5694252'), + (78708, 869, 1781, 'attending', '2022-11-02 02:25:31', '2025-12-17 19:47:15', 'mpQ6axqA', '5696178'), + (78709, 869, 1782, 'maybe', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mpQ6axqA', '5698046'), + (78710, 869, 1784, 'maybe', '2022-11-12 16:04:42', '2025-12-17 19:47:15', 'mpQ6axqA', '5699760'), + (78711, 869, 1792, 'attending', '2022-11-07 15:04:11', '2025-12-17 19:47:15', 'mpQ6axqA', '5728512'), + (78712, 869, 1793, 'attending', '2022-11-16 00:30:24', '2025-12-17 19:47:16', 'mpQ6axqA', '5736365'), + (78713, 869, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mpQ6axqA', '5741601'), + (78714, 869, 1797, 'maybe', '2022-12-06 01:21:43', '2025-12-17 19:47:17', 'mpQ6axqA', '5757486'), + (78715, 869, 1798, 'maybe', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mpQ6axqA', '5763458'), + (78716, 869, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mpQ6axqA', '5774172'), + (78717, 869, 1825, 'maybe', '2022-11-27 16:26:17', '2025-12-17 19:47:16', 'mpQ6axqA', '5776760'), + (78718, 869, 1828, 'not_attending', '2022-11-28 22:04:15', '2025-12-17 19:47:16', 'mpQ6axqA', '5778865'), + (78719, 869, 1829, 'not_attending', '2022-12-01 04:56:02', '2025-12-17 19:47:16', 'mpQ6axqA', '5778867'), + (78720, 869, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mpQ6axqA', '5818247'), + (78721, 869, 1834, 'not_attending', '2022-12-06 01:21:56', '2025-12-17 19:47:17', 'mpQ6axqA', '5819470'), + (78722, 869, 1835, 'attending', '2022-12-06 01:21:51', '2025-12-17 19:47:05', 'mpQ6axqA', '5819471'), + (78723, 869, 1837, 'attending', '2022-12-06 01:21:27', '2025-12-17 19:47:16', 'mpQ6axqA', '5820146'), + (78724, 869, 1838, 'maybe', '2022-12-06 13:58:39', '2025-12-17 19:47:16', 'mpQ6axqA', '5821722'), + (78725, 869, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mpQ6axqA', '5827739'), + (78726, 869, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mpQ6axqA', '5844306'), + (78727, 869, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mpQ6axqA', '5850159'), + (78728, 869, 1850, 'attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mpQ6axqA', '5858999'), + (78729, 869, 1852, 'maybe', '2023-01-09 15:04:14', '2025-12-17 19:47:05', 'mpQ6axqA', '5869898'), + (78730, 869, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mpQ6axqA', '5871984'), + (78731, 869, 1859, 'not_attending', '2023-01-16 02:14:19', '2025-12-17 19:47:05', 'mpQ6axqA', '5876234'), + (78732, 869, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mpQ6axqA', '5876354'), + (78733, 869, 1864, 'maybe', '2023-01-20 02:22:29', '2025-12-17 19:47:05', 'mpQ6axqA', '5879675'), + (78734, 869, 1865, 'maybe', '2023-01-21 20:06:24', '2025-12-17 19:47:06', 'mpQ6axqA', '5879676'), + (78735, 869, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mpQ6axqA', '5880939'), + (78736, 869, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'mpQ6axqA', '5880940'), + (78737, 869, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'mpQ6axqA', '5880942'), + (78738, 869, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'mpQ6axqA', '5880943'), + (78739, 869, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mpQ6axqA', '5887890'), + (78740, 869, 1875, 'maybe', '2023-01-27 14:11:27', '2025-12-17 19:47:06', 'mpQ6axqA', '5887908'), + (78741, 869, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mpQ6axqA', '5888598'), + (78742, 869, 1880, 'maybe', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mpQ6axqA', '5893260'), + (78743, 869, 1884, 'attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'mpQ6axqA', '5899826'), + (78744, 869, 1885, 'maybe', '2023-02-24 01:30:51', '2025-12-17 19:47:08', 'mpQ6axqA', '5899928'), + (78745, 869, 1888, 'maybe', '2023-02-14 01:09:53', '2025-12-17 19:47:07', 'mpQ6axqA', '5900197'), + (78746, 869, 1889, 'attending', '2023-02-06 02:33:12', '2025-12-17 19:47:07', 'mpQ6axqA', '5900199'), + (78747, 869, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mpQ6axqA', '5900200'), + (78748, 869, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mpQ6axqA', '5900202'), + (78749, 869, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mpQ6axqA', '5900203'), + (78750, 869, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mpQ6axqA', '5901108'), + (78751, 869, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mpQ6axqA', '5901126'), + (78752, 869, 1897, 'attending', '2023-02-06 02:33:29', '2025-12-17 19:47:07', 'mpQ6axqA', '5901128'), + (78753, 869, 1898, 'attending', '2023-02-01 22:52:56', '2025-12-17 19:47:06', 'mpQ6axqA', '5901263'), + (78754, 869, 1899, 'not_attending', '2023-02-06 02:33:22', '2025-12-17 19:47:07', 'mpQ6axqA', '5901323'), + (78755, 869, 1910, 'maybe', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mpQ6axqA', '5909655'), + (78756, 869, 1912, 'not_attending', '2023-02-14 01:09:43', '2025-12-17 19:47:07', 'mpQ6axqA', '5909808'), + (78757, 869, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mpQ6axqA', '5910522'), + (78758, 869, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mpQ6axqA', '5910526'), + (78759, 869, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mpQ6axqA', '5910528'), + (78760, 869, 1922, 'attending', '2023-02-14 01:10:26', '2025-12-17 19:47:07', 'mpQ6axqA', '5916219'), + (78761, 869, 1927, 'maybe', '2023-03-10 01:37:11', '2025-12-17 19:47:10', 'mpQ6axqA', '5932621'), + (78762, 869, 1933, 'maybe', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mpQ6axqA', '5936234'), + (78763, 869, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mpQ6axqA', '5958351'), + (78764, 869, 1938, 'maybe', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mpQ6axqA', '5959751'), + (78765, 869, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mpQ6axqA', '5959755'), + (78766, 869, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mpQ6axqA', '5960055'), + (78767, 869, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mpQ6axqA', '5961684'), + (78768, 869, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mpQ6axqA', '5962132'), + (78769, 869, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'mpQ6axqA', '5962133'), + (78770, 869, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mpQ6axqA', '5962134'), + (78771, 869, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mpQ6axqA', '5962317'), + (78772, 869, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mpQ6axqA', '5962318'), + (78773, 869, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mpQ6axqA', '5965933'), + (78774, 869, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mpQ6axqA', '5967014'), + (78775, 869, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mpQ6axqA', '5972815'), + (78776, 869, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mpQ6axqA', '5974016'), + (78777, 869, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mpQ6axqA', '5981515'), + (78778, 869, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mpQ6axqA', '5993516'), + (78779, 869, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mpQ6axqA', '5998939'), + (78780, 869, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mpQ6axqA', '6028191'), + (78781, 869, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mpQ6axqA', '6040066'), + (78782, 869, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mpQ6axqA', '6042717'), + (78783, 869, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'mpQ6axqA', '6044838'), + (78784, 869, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'mpQ6axqA', '6044839'), + (78785, 869, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mpQ6axqA', '6045684'), + (78786, 869, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mpQ6axqA', '6050104'), + (78787, 869, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mpQ6axqA', '6053195'), + (78788, 869, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mpQ6axqA', '6053198'), + (78789, 869, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mpQ6axqA', '6056085'), + (78790, 869, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mpQ6axqA', '6056916'), + (78791, 869, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mpQ6axqA', '6059290'), + (78792, 869, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mpQ6axqA', '6060328'), + (78793, 869, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mpQ6axqA', '6061037'), + (78794, 869, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mpQ6axqA', '6061039'), + (78795, 869, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mpQ6axqA', '6067245'), + (78796, 869, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mpQ6axqA', '6068094'), + (78797, 869, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mpQ6axqA', '6068252'), + (78798, 869, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mpQ6axqA', '6068253'), + (78799, 869, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mpQ6axqA', '6068254'), + (78800, 869, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'mpQ6axqA', '6068280'), + (78801, 869, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mpQ6axqA', '6069093'), + (78802, 869, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mpQ6axqA', '6072528'), + (78803, 869, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mpQ6axqA', '6079840'), + (78804, 869, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mpQ6axqA', '6083398'), + (78805, 869, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mpQ6axqA', '6093504'), + (78806, 869, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mpQ6axqA', '6097414'), + (78807, 869, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mpQ6axqA', '6097442'), + (78808, 869, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mpQ6axqA', '6097684'), + (78809, 869, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mpQ6axqA', '6098762'), + (78810, 869, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mpQ6axqA', '6101361'), + (78811, 869, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mpQ6axqA', '6101362'), + (78812, 869, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mpQ6axqA', '6103752'), + (78813, 869, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mpQ6axqA', '6107314'), + (78814, 869, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mpQ6axqA', '6120034'), + (78815, 869, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mpQ6axqA', '6136733'), + (78816, 869, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mpQ6axqA', '6137989'), + (78817, 869, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mpQ6axqA', '6150864'), + (78818, 869, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mpQ6axqA', '6155491'), + (78819, 869, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mpQ6axqA', '6164417'), + (78820, 869, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mpQ6axqA', '6166388'), + (78821, 869, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mpQ6axqA', '6176439'), + (78822, 869, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mpQ6axqA', '6182410'), + (78823, 869, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mpQ6axqA', '6185812'), + (78824, 869, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mpQ6axqA', '6187651'), + (78825, 869, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mpQ6axqA', '6187963'), + (78826, 869, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mpQ6axqA', '6187964'), + (78827, 869, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mpQ6axqA', '6187966'), + (78828, 869, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mpQ6axqA', '6187967'), + (78829, 869, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mpQ6axqA', '6187969'), + (78830, 869, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mpQ6axqA', '6334878'), + (78831, 869, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mpQ6axqA', '6337236'), + (78832, 869, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mpQ6axqA', '6337970'), + (78833, 869, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mpQ6axqA', '6338308'), + (78834, 869, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mpQ6axqA', '6340845'), + (78835, 869, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mpQ6axqA', '6341710'), + (78836, 869, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mpQ6axqA', '6342044'), + (78837, 869, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mpQ6axqA', '6342298'), + (78838, 869, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mpQ6axqA', '6343294'), + (78839, 869, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mpQ6axqA', '6347034'), + (78840, 869, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mpQ6axqA', '6347056'), + (78841, 869, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mpQ6axqA', '6353830'), + (78842, 869, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mpQ6axqA', '6353831'), + (78843, 869, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mpQ6axqA', '6357867'), + (78844, 869, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mpQ6axqA', '6358652'), + (78845, 869, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mpQ6axqA', '6361709'), + (78846, 869, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mpQ6axqA', '6361710'), + (78847, 869, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mpQ6axqA', '6361711'), + (78848, 869, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mpQ6axqA', '6361712'), + (78849, 869, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mpQ6axqA', '6361713'), + (78850, 869, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mpQ6axqA', '6382573'), + (78851, 869, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mpQ6axqA', '6388604'), + (78852, 869, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mpQ6axqA', '6394629'), + (78853, 869, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mpQ6axqA', '6394631'), + (78854, 869, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mpQ6axqA', '6440863'), + (78855, 869, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mpQ6axqA', '6445440'), + (78856, 869, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mpQ6axqA', '6453951'), + (78857, 869, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mpQ6axqA', '6461696'), + (78858, 869, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mpQ6axqA', '6462129'), + (78859, 869, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mpQ6axqA', '6463218'), + (78860, 869, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mpQ6axqA', '6472181'), + (78861, 869, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mpQ6axqA', '6482693'), + (78862, 869, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mpQ6axqA', '6484200'), + (78863, 869, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mpQ6axqA', '6484680'), + (78864, 869, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mpQ6axqA', '6507741'), + (78865, 869, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mpQ6axqA', '6514659'), + (78866, 869, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mpQ6axqA', '6514660'), + (78867, 869, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mpQ6axqA', '6519103'), + (78868, 869, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mpQ6axqA', '6535681'), + (78869, 869, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mpQ6axqA', '6584747'), + (78870, 869, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mpQ6axqA', '6587097'), + (78871, 869, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mpQ6axqA', '6609022'), + (78872, 869, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mpQ6axqA', '6632757'), + (78873, 869, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mpQ6axqA', '6644187'), + (78874, 869, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mpQ6axqA', '6648951'), + (78875, 869, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mpQ6axqA', '6648952'), + (78876, 869, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mpQ6axqA', '6655401'), + (78877, 869, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mpQ6axqA', '6661585'), + (78878, 869, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mpQ6axqA', '6661588'), + (78879, 869, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mpQ6axqA', '6661589'), + (78880, 869, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mpQ6axqA', '6699906'), + (78881, 869, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mpQ6axqA', '6701109'), + (78882, 869, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mpQ6axqA', '6705219'), + (78883, 869, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mpQ6axqA', '6710153'), + (78884, 869, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mpQ6axqA', '6711552'), + (78885, 869, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'mpQ6axqA', '6711553'), + (78886, 870, 1724, 'attending', '2022-11-10 04:42:58', '2025-12-17 19:47:15', 'daDEYVl4', '5630966'), + (78887, 870, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'daDEYVl4', '5630967'), + (78888, 870, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'daDEYVl4', '5630968'), + (78889, 870, 1727, 'attending', '2022-11-26 21:32:25', '2025-12-17 19:47:16', 'daDEYVl4', '5630969'), + (78890, 870, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'daDEYVl4', '5642818'), + (78891, 870, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'daDEYVl4', '5670445'), + (78892, 870, 1780, 'not_attending', '2022-11-10 03:41:27', '2025-12-17 19:47:15', 'daDEYVl4', '5696082'), + (78893, 870, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'daDEYVl4', '5699760'), + (78894, 870, 1786, 'attending', '2022-11-10 03:37:22', '2025-12-17 19:47:15', 'daDEYVl4', '5727232'), + (78895, 870, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'daDEYVl4', '5741601'), + (78896, 870, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'daDEYVl4', '5763458'), + (78897, 870, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'daDEYVl4', '5774172'), + (78898, 870, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'daDEYVl4', '5818247'), + (78899, 870, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'daDEYVl4', '5819471'), + (78900, 870, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'daDEYVl4', '5827739'), + (78901, 870, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'daDEYVl4', '5844306'), + (78902, 870, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'daDEYVl4', '5850159'), + (78903, 870, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'daDEYVl4', '5858999'), + (78904, 870, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'daDEYVl4', '5871984'), + (78905, 870, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'daDEYVl4', '5876354'), + (78906, 870, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'daDEYVl4', '5880939'), + (78907, 870, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'daDEYVl4', '5887890'), + (78908, 870, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'daDEYVl4', '5888598'), + (78909, 870, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'daDEYVl4', '5893260'), + (78910, 870, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'daDEYVl4', '6044839'), + (78911, 870, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daDEYVl4', '6045684'), + (78912, 870, 2013, 'attending', '2023-04-14 17:47:35', '2025-12-17 19:46:59', 'daDEYVl4', '6060328'), + (78913, 870, 2015, 'not_attending', '2023-04-20 02:17:20', '2025-12-17 19:47:00', 'daDEYVl4', '6061037'), + (78914, 870, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'daDEYVl4', '6061039'), + (78915, 870, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'daDEYVl4', '6067245'), + (78916, 870, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'daDEYVl4', '6068094'), + (78917, 870, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'daDEYVl4', '6068252'), + (78918, 870, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'daDEYVl4', '6068253'), + (78919, 870, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'daDEYVl4', '6068254'), + (78920, 870, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'daDEYVl4', '6068280'), + (78921, 870, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'daDEYVl4', '6069093'), + (78922, 870, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'daDEYVl4', '6072528'), + (78923, 870, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'daDEYVl4', '6079840'), + (78924, 870, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'daDEYVl4', '6083398'), + (78925, 870, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'daDEYVl4', '6093504'), + (78926, 870, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'daDEYVl4', '6097414'), + (78927, 870, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'daDEYVl4', '6097442'), + (78928, 870, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'daDEYVl4', '6097684'), + (78929, 870, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'daDEYVl4', '6098762'), + (78930, 870, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'daDEYVl4', '6101361'), + (78931, 870, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'daDEYVl4', '6101362'), + (78932, 870, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'daDEYVl4', '6103752'), + (78933, 870, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'daDEYVl4', '6107314'), + (78934, 870, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'daDEYVl4', '6120034'), + (78935, 870, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'daDEYVl4', '6136733'), + (78936, 870, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'daDEYVl4', '6137989'), + (78937, 870, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'daDEYVl4', '6150864'), + (78938, 870, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'daDEYVl4', '6155491'), + (78939, 870, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'daDEYVl4', '6164417'), + (78940, 870, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'daDEYVl4', '6166388'), + (78941, 870, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'daDEYVl4', '6176439'), + (78942, 870, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'daDEYVl4', '6182410'), + (78943, 870, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'daDEYVl4', '6185812'), + (78944, 870, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'daDEYVl4', '6187651'), + (78945, 870, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'daDEYVl4', '6187963'), + (78946, 870, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'daDEYVl4', '6187964'), + (78947, 870, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'daDEYVl4', '6187966'), + (78948, 870, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'daDEYVl4', '6187967'), + (78949, 870, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'daDEYVl4', '6187969'), + (78950, 870, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'daDEYVl4', '6334878'), + (78951, 870, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'daDEYVl4', '6337236'), + (78952, 870, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'daDEYVl4', '6337970'), + (78953, 870, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'daDEYVl4', '6338308'), + (78954, 870, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'daDEYVl4', '6341710'), + (78955, 870, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'daDEYVl4', '6342044'), + (78956, 870, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'daDEYVl4', '6342298'), + (78957, 870, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'daDEYVl4', '6343294'), + (78958, 870, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'daDEYVl4', '6347034'), + (78959, 870, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'daDEYVl4', '6347056'), + (78960, 870, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'daDEYVl4', '6353830'), + (78961, 870, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'daDEYVl4', '6353831'), + (78962, 870, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'daDEYVl4', '6357867'), + (78963, 870, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'daDEYVl4', '6358652'), + (78964, 870, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'daDEYVl4', '6361709'), + (78965, 870, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'daDEYVl4', '6361710'), + (78966, 870, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'daDEYVl4', '6361711'), + (78967, 870, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'daDEYVl4', '6361712'), + (78968, 870, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'daDEYVl4', '6361713'), + (78969, 870, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'daDEYVl4', '6382573'), + (78970, 870, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'daDEYVl4', '6388604'), + (78971, 870, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'daDEYVl4', '6394629'), + (78972, 870, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'daDEYVl4', '6394631'), + (78973, 870, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'daDEYVl4', '6440863'), + (78974, 870, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'daDEYVl4', '6445440'), + (78975, 870, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'daDEYVl4', '6453951'), + (78976, 870, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'daDEYVl4', '6461696'), + (78977, 870, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'daDEYVl4', '6462129'), + (78978, 870, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'daDEYVl4', '6463218'), + (78979, 870, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'daDEYVl4', '6472181'), + (78980, 870, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'daDEYVl4', '6482693'), + (78981, 870, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'daDEYVl4', '6484200'), + (78982, 870, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'daDEYVl4', '6484680'), + (78983, 870, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'daDEYVl4', '6507741'), + (78984, 870, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'daDEYVl4', '6514659'), + (78985, 870, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'daDEYVl4', '6514660'), + (78986, 870, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'daDEYVl4', '6519103'), + (78987, 870, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'daDEYVl4', '6535681'), + (78988, 870, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'daDEYVl4', '6584747'), + (78989, 870, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'daDEYVl4', '6587097'), + (78990, 870, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'daDEYVl4', '6609022'), + (78991, 870, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'daDEYVl4', '6632757'), + (78992, 870, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'daDEYVl4', '6644187'), + (78993, 870, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'daDEYVl4', '6648951'), + (78994, 870, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'daDEYVl4', '6648952'), + (78995, 870, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'daDEYVl4', '6655401'), + (78996, 870, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'daDEYVl4', '6661585'), + (78997, 870, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'daDEYVl4', '6661588'), + (78998, 870, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'daDEYVl4', '6661589'), + (78999, 870, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'daDEYVl4', '6699906'), + (79000, 870, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'daDEYVl4', '6699913'), + (79001, 870, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'daDEYVl4', '6701109'), + (79002, 870, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'daDEYVl4', '6705219'), + (79003, 870, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'daDEYVl4', '6710153'), + (79004, 870, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'daDEYVl4', '6711552'), + (79005, 870, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'daDEYVl4', '6711553'), + (79006, 870, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'daDEYVl4', '6722688'), + (79007, 870, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'daDEYVl4', '6730620'), + (79008, 870, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'daDEYVl4', '6740364'), + (79009, 870, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'daDEYVl4', '6743829'), + (79010, 870, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'daDEYVl4', '7030380'), + (79011, 870, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'daDEYVl4', '7033677'), + (79012, 870, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'daDEYVl4', '7044715'), + (79013, 870, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'daDEYVl4', '7050318'), + (79014, 870, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'daDEYVl4', '7050319'), + (79015, 870, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'daDEYVl4', '7050322'), + (79016, 870, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'daDEYVl4', '7057804'), + (79017, 870, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'daDEYVl4', '7072824'), + (79018, 870, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'daDEYVl4', '7074348'), + (79019, 870, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'daDEYVl4', '7074364'), + (79020, 870, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'daDEYVl4', '7089267'), + (79021, 870, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'daDEYVl4', '7098747'), + (79022, 870, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'daDEYVl4', '7113468'), + (79023, 870, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'daDEYVl4', '7114856'), + (79024, 870, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'daDEYVl4', '7114951'), + (79025, 870, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'daDEYVl4', '7114955'), + (79026, 870, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'daDEYVl4', '7114956'), + (79027, 870, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'daDEYVl4', '7114957'), + (79028, 870, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'daDEYVl4', '7159484'), + (79029, 870, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'daDEYVl4', '7178446'), + (79030, 870, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'daDEYVl4', '7220467'), + (79031, 870, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'daDEYVl4', '7240354'), + (79032, 870, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'daDEYVl4', '7251633'), + (79033, 870, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'daDEYVl4', '7324073'), + (79034, 870, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'daDEYVl4', '7324074'), + (79035, 870, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'daDEYVl4', '7324075'), + (79036, 870, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'daDEYVl4', '7324078'), + (79037, 870, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'daDEYVl4', '7324082'), + (79038, 870, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'daDEYVl4', '7331457'), + (79039, 870, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'daDEYVl4', '7363643'), + (79040, 870, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'daDEYVl4', '7368606'), + (79041, 870, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'daDEYVl4', '7397462'), + (79042, 870, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'daDEYVl4', '7424275'), + (79043, 870, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'daDEYVl4', '7432751'), + (79044, 870, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'daDEYVl4', '7432752'), + (79045, 870, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'daDEYVl4', '7432753'), + (79046, 870, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'daDEYVl4', '7432754'), + (79047, 870, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'daDEYVl4', '7432755'), + (79048, 870, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'daDEYVl4', '7432756'), + (79049, 870, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'daDEYVl4', '7432758'), + (79050, 870, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'daDEYVl4', '7432759'), + (79051, 870, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'daDEYVl4', '7433834'), + (79052, 870, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'daDEYVl4', '7470197'), + (79053, 870, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'daDEYVl4', '7685613'), + (79054, 870, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'daDEYVl4', '7688194'), + (79055, 870, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'daDEYVl4', '7688196'), + (79056, 870, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'daDEYVl4', '7688289'), + (79057, 870, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'daDEYVl4', '7692763'), + (79058, 870, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'daDEYVl4', '7697552'), + (79059, 870, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'daDEYVl4', '7699878'), + (79060, 870, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'daDEYVl4', '7704043'), + (79061, 870, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'daDEYVl4', '7712467'), + (79062, 870, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'daDEYVl4', '7713585'), + (79063, 870, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'daDEYVl4', '7713586'), + (79064, 870, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'daDEYVl4', '7738518'), + (79065, 870, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'daDEYVl4', '7750636'), + (79066, 870, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'daDEYVl4', '7796540'), + (79067, 870, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'daDEYVl4', '7796541'), + (79068, 870, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'daDEYVl4', '7796542'), + (79069, 870, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'daDEYVl4', '7825913'), + (79070, 870, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'daDEYVl4', '7826209'), + (79071, 870, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'daDEYVl4', '7834742'), + (79072, 870, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'daDEYVl4', '7842108'), + (79073, 870, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'daDEYVl4', '7842902'), + (79074, 870, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'daDEYVl4', '7842903'), + (79075, 870, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'daDEYVl4', '7842904'), + (79076, 870, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'daDEYVl4', '7842905'), + (79077, 870, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'daDEYVl4', '7855719'), + (79078, 870, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'daDEYVl4', '7860683'), + (79079, 870, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'daDEYVl4', '7860684'), + (79080, 870, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'daDEYVl4', '7866095'), + (79081, 870, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'daDEYVl4', '7869170'), + (79082, 870, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'daDEYVl4', '7869188'), + (79083, 870, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'daDEYVl4', '7869201'), + (79084, 870, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'daDEYVl4', '7877465'), + (79085, 870, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'daDEYVl4', '7888250'), + (79086, 870, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'daDEYVl4', '7904777'), + (79087, 870, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'daDEYVl4', '8349164'), + (79088, 870, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'daDEYVl4', '8349545'), + (79089, 870, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'daDEYVl4', '8368028'), + (79090, 870, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'daDEYVl4', '8368029'), + (79091, 870, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'daDEYVl4', '8388462'), + (79092, 870, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'daDEYVl4', '8400273'), + (79093, 870, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'daDEYVl4', '8400275'), + (79094, 870, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'daDEYVl4', '8400276'), + (79095, 870, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'daDEYVl4', '8404977'), + (79096, 870, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'daDEYVl4', '8430783'), + (79097, 870, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'daDEYVl4', '8430784'), + (79098, 870, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'daDEYVl4', '8430799'), + (79099, 870, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'daDEYVl4', '8430800'), + (79100, 870, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'daDEYVl4', '8430801'), + (79101, 870, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'daDEYVl4', '8438709'), + (79102, 870, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'daDEYVl4', '8457738'), + (79103, 870, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'daDEYVl4', '8459566'), + (79104, 870, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'daDEYVl4', '8459567'), + (79105, 870, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'daDEYVl4', '8461032'), + (79106, 870, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'daDEYVl4', '8477877'), + (79107, 870, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'daDEYVl4', '8485688'), + (79108, 870, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'daDEYVl4', '8490587'), + (79109, 870, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'daDEYVl4', '8493552'), + (79110, 870, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'daDEYVl4', '8493553'), + (79111, 870, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'daDEYVl4', '8493554'), + (79112, 870, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'daDEYVl4', '8493555'), + (79113, 870, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'daDEYVl4', '8493556'), + (79114, 870, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'daDEYVl4', '8493557'), + (79115, 870, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'daDEYVl4', '8493558'), + (79116, 870, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'daDEYVl4', '8493559'), + (79117, 870, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'daDEYVl4', '8493560'), + (79118, 870, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'daDEYVl4', '8493561'), + (79119, 870, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'daDEYVl4', '8493572'), + (79120, 870, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'daDEYVl4', '8540725'), + (79121, 870, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'daDEYVl4', '8555421'), + (79122, 871, 1380, 'attending', '2022-05-28 22:30:36', '2025-12-17 19:47:30', 'mbZ6E6zm', '5271450'), + (79123, 871, 1407, 'attending', '2022-06-04 05:26:52', '2025-12-17 19:47:30', 'mbZ6E6zm', '5363695'), + (79124, 871, 1415, 'attending', '2022-05-24 18:56:36', '2025-12-17 19:47:30', 'mbZ6E6zm', '5368973'), + (79125, 871, 1417, 'attending', '2022-05-23 21:46:29', '2025-12-17 19:47:30', 'mbZ6E6zm', '5370465'), + (79126, 871, 1427, 'maybe', '2022-05-24 18:57:16', '2025-12-17 19:47:30', 'mbZ6E6zm', '5376074'), + (79127, 871, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mbZ6E6zm', '5378247'), + (79128, 871, 1431, 'attending', '2022-06-11 22:47:09', '2025-12-17 19:47:30', 'mbZ6E6zm', '5389605'), + (79129, 871, 1438, 'attending', '2022-06-01 22:34:34', '2025-12-17 19:47:30', 'mbZ6E6zm', '5395032'), + (79130, 871, 1442, 'attending', '2022-06-18 22:58:01', '2025-12-17 19:47:17', 'mbZ6E6zm', '5397265'), + (79131, 871, 1451, 'attending', '2022-06-18 22:57:37', '2025-12-17 19:47:17', 'mbZ6E6zm', '5403967'), + (79132, 871, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mbZ6E6zm', '5404786'), + (79133, 871, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mbZ6E6zm', '5405203'), + (79134, 871, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mbZ6E6zm', '5408794'), + (79135, 871, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mbZ6E6zm', '5411699'), + (79136, 871, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mbZ6E6zm', '5412550'), + (79137, 871, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mbZ6E6zm', '5415046'), + (79138, 871, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mbZ6E6zm', '5422086'), + (79139, 871, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mbZ6E6zm', '5422406'), + (79140, 871, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mbZ6E6zm', '5424565'), + (79141, 871, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mbZ6E6zm', '5426882'), + (79142, 871, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mbZ6E6zm', '5427083'), + (79143, 871, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'mbZ6E6zm', '5441125'), + (79144, 871, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mbZ6E6zm', '5441126'), + (79145, 871, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mbZ6E6zm', '5441128'), + (79146, 871, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mbZ6E6zm', '5446643'), + (79147, 871, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mbZ6E6zm', '5453325'), + (79148, 871, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mbZ6E6zm', '5454516'), + (79149, 871, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mbZ6E6zm', '5454605'), + (79150, 871, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mbZ6E6zm', '5455037'), + (79151, 871, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mbZ6E6zm', '5461278'), + (79152, 871, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mbZ6E6zm', '5469480'), + (79153, 871, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mbZ6E6zm', '5471073'), + (79154, 871, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mbZ6E6zm', '5474663'), + (79155, 871, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mbZ6E6zm', '5482022'), + (79156, 871, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mbZ6E6zm', '5482793'), + (79157, 871, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mbZ6E6zm', '5488912'), + (79158, 871, 1586, 'maybe', '2022-08-14 23:32:49', '2025-12-17 19:47:23', 'mbZ6E6zm', '5492019'), + (79159, 871, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mbZ6E6zm', '5492192'), + (79160, 871, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mbZ6E6zm', '5493139'), + (79161, 871, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mbZ6E6zm', '5493200'), + (79162, 871, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mbZ6E6zm', '5502188'), + (79163, 871, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mbZ6E6zm', '5512862'), + (79164, 871, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mbZ6E6zm', '5513985'), + (79165, 871, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZ6E6zm', '6045684'), + (79166, 872, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '406g6vRm', '5880942'), + (79167, 872, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '406g6vRm', '5880943'), + (79168, 872, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '406g6vRm', '5900200'), + (79169, 872, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '406g6vRm', '5900202'), + (79170, 872, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '406g6vRm', '5900203'), + (79171, 872, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', '406g6vRm', '5910522'), + (79172, 872, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '406g6vRm', '5910526'), + (79173, 872, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '406g6vRm', '5910528'), + (79174, 872, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '406g6vRm', '5916219'), + (79175, 872, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '406g6vRm', '5936234'), + (79176, 872, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '406g6vRm', '5936691'), + (79177, 872, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '406g6vRm', '5958351'), + (79178, 872, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '406g6vRm', '5959751'), + (79179, 872, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '406g6vRm', '5959755'), + (79180, 872, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '406g6vRm', '5960055'), + (79181, 872, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '406g6vRm', '5961684'), + (79182, 872, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '406g6vRm', '5962132'), + (79183, 872, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '406g6vRm', '5962133'), + (79184, 872, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '406g6vRm', '5962134'), + (79185, 872, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '406g6vRm', '5962317'), + (79186, 872, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '406g6vRm', '5962318'), + (79187, 872, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '406g6vRm', '5965933'), + (79188, 872, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '406g6vRm', '5967014'), + (79189, 872, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '406g6vRm', '5972815'), + (79190, 872, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '406g6vRm', '5974016'), + (79191, 872, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '406g6vRm', '5981515'), + (79192, 872, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '406g6vRm', '5993516'), + (79193, 872, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '406g6vRm', '5998939'), + (79194, 872, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '406g6vRm', '6028191'), + (79195, 872, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '406g6vRm', '6040066'), + (79196, 872, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '406g6vRm', '6042717'), + (79197, 872, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '406g6vRm', '6045684'), + (79198, 873, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Lmp0wDWm', '6045684'), + (79199, 874, 256, 'not_attending', '2021-05-04 21:40:26', '2025-12-17 19:47:46', 'xd9ZbRym', '3149487'), + (79200, 874, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'xd9ZbRym', '3539920'), + (79201, 874, 646, 'attending', '2021-05-15 14:32:29', '2025-12-17 19:47:46', 'xd9ZbRym', '3539921'), + (79202, 874, 647, 'attending', '2021-05-22 16:21:20', '2025-12-17 19:47:46', 'xd9ZbRym', '3539922'), + (79203, 874, 648, 'maybe', '2021-05-29 22:06:30', '2025-12-17 19:47:47', 'xd9ZbRym', '3539923'), + (79204, 874, 761, 'not_attending', '2021-05-14 21:56:50', '2025-12-17 19:47:46', 'xd9ZbRym', '3716041'), + (79205, 874, 766, 'maybe', '2021-05-12 07:57:59', '2025-12-17 19:47:46', 'xd9ZbRym', '3721383'), + (79206, 874, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'xd9ZbRym', '3793156'), + (79207, 874, 802, 'attending', '2021-05-12 07:58:03', '2025-12-17 19:47:46', 'xd9ZbRym', '3803310'), + (79208, 874, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'xd9ZbRym', '3974109'), + (79209, 874, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xd9ZbRym', '3975311'), + (79210, 874, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'xd9ZbRym', '3975312'), + (79211, 874, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xd9ZbRym', '3994992'), + (79212, 874, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'xd9ZbRym', '4014338'), + (79213, 874, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'xd9ZbRym', '4021848'), + (79214, 874, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'xd9ZbRym', '4136744'), + (79215, 874, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'xd9ZbRym', '4136937'), + (79216, 874, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'xd9ZbRym', '4136938'), + (79217, 874, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'xd9ZbRym', '4136947'), + (79218, 874, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'xd9ZbRym', '4210314'), + (79219, 874, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'xd9ZbRym', '4225444'), + (79220, 874, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'xd9ZbRym', '4239259'), + (79221, 874, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'xd9ZbRym', '4240316'), + (79222, 874, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'xd9ZbRym', '4240317'), + (79223, 874, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'xd9ZbRym', '4240318'), + (79224, 874, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'xd9ZbRym', '4240320'), + (79225, 874, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'xd9ZbRym', '4250163'), + (79226, 874, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'xd9ZbRym', '4275957'), + (79227, 874, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'xd9ZbRym', '4277819'), + (79228, 874, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'xd9ZbRym', '4301723'), + (79229, 874, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'xd9ZbRym', '4302093'), + (79230, 874, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'xd9ZbRym', '4304151'), + (79231, 874, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'xd9ZbRym', '4345519'), + (79232, 874, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'xd9ZbRym', '4356801'), + (79233, 874, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'xd9ZbRym', '4358025'), + (79234, 874, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'xd9ZbRym', '4366186'), + (79235, 874, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'xd9ZbRym', '4366187'), + (79236, 874, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'xd9ZbRym', '4402823'), + (79237, 874, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'xd9ZbRym', '4420735'), + (79238, 874, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'xd9ZbRym', '4420738'), + (79239, 874, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'xd9ZbRym', '4420739'), + (79240, 874, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'xd9ZbRym', '4420741'), + (79241, 874, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'xd9ZbRym', '4420744'), + (79242, 874, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'xd9ZbRym', '4420747'), + (79243, 874, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'xd9ZbRym', '4420748'), + (79244, 874, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'xd9ZbRym', '4420749'), + (79245, 874, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'xd9ZbRym', '4461883'), + (79246, 874, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'xd9ZbRym', '4508342'), + (79247, 874, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'xd9ZbRym', '4568602'), + (79248, 874, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'xd9ZbRym', '4572153'), + (79249, 874, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'xd9ZbRym', '4585962'), + (79250, 874, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'xd9ZbRym', '4596356'), + (79251, 874, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'xd9ZbRym', '4598860'), + (79252, 874, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'xd9ZbRym', '4598861'), + (79253, 874, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'xd9ZbRym', '4602797'), + (79254, 874, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'xd9ZbRym', '4637896'), + (79255, 874, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'xd9ZbRym', '4642994'), + (79256, 874, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'xd9ZbRym', '4642995'), + (79257, 874, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'xd9ZbRym', '4642996'), + (79258, 874, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'xd9ZbRym', '4642997'), + (79259, 874, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'xd9ZbRym', '4645687'), + (79260, 874, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'xd9ZbRym', '4645698'), + (79261, 874, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'xd9ZbRym', '4645704'), + (79262, 874, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'xd9ZbRym', '4645705'), + (79263, 874, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'xd9ZbRym', '4668385'), + (79264, 874, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'xd9ZbRym', '4694407'), + (79265, 874, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'xd9ZbRym', '4736497'), + (79266, 874, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'xd9ZbRym', '4736499'), + (79267, 874, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'xd9ZbRym', '4736500'), + (79268, 874, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'xd9ZbRym', '4736503'), + (79269, 874, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'xd9ZbRym', '4736504'), + (79270, 874, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'xd9ZbRym', '4746789'), + (79271, 874, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xd9ZbRym', '4753929'), + (79272, 874, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xd9ZbRym', '5038850'), + (79273, 874, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xd9ZbRym', '5045826'), + (79274, 874, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xd9ZbRym', '5132533'), + (79275, 874, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'xd9ZbRym', '5186582'), + (79276, 874, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'xd9ZbRym', '5186583'), + (79277, 874, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'xd9ZbRym', '5186585'), + (79278, 874, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'xd9ZbRym', '5190437'), + (79279, 874, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'xd9ZbRym', '5215989'), + (79280, 874, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9ZbRym', '6045684'), + (79281, 875, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'ZdNeWDo4', '4136938'), + (79282, 875, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'ZdNeWDo4', '4229418'), + (79283, 875, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNeWDo4', '6045684'), + (79284, 876, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ndaKkoVA', '3975312'), + (79285, 876, 844, 'not_attending', '2021-06-12 01:01:54', '2025-12-17 19:47:38', 'ndaKkoVA', '4014338'), + (79286, 876, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaKkoVA', '6045684'), + (79287, 877, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4oo036Z4', '5880940'), + (79288, 877, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4oo036Z4', '5880942'), + (79289, 877, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4oo036Z4', '5880943'), + (79290, 877, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4oo036Z4', '5900199'), + (79291, 877, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4oo036Z4', '5900200'), + (79292, 877, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4oo036Z4', '5900202'), + (79293, 877, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4oo036Z4', '5900203'), + (79294, 877, 1893, 'not_attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', '4oo036Z4', '5901055'), + (79295, 877, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4oo036Z4', '5901108'), + (79296, 877, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4oo036Z4', '5901126'), + (79297, 877, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', '4oo036Z4', '5901606'), + (79298, 877, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4oo036Z4', '5909655'), + (79299, 877, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4oo036Z4', '5910522'), + (79300, 877, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4oo036Z4', '5910526'), + (79301, 877, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4oo036Z4', '5910528'), + (79302, 877, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4oo036Z4', '5916219'), + (79303, 877, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4oo036Z4', '5936234'), + (79304, 877, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '4oo036Z4', '5936691'), + (79305, 877, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4oo036Z4', '5958351'), + (79306, 877, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4oo036Z4', '5959751'), + (79307, 877, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4oo036Z4', '5959755'), + (79308, 877, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4oo036Z4', '5960055'), + (79309, 877, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4oo036Z4', '5961684'), + (79310, 877, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4oo036Z4', '5962132'), + (79311, 877, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4oo036Z4', '5962133'), + (79312, 877, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4oo036Z4', '5962134'), + (79313, 877, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4oo036Z4', '5962317'), + (79314, 877, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4oo036Z4', '5962318'), + (79315, 877, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4oo036Z4', '5965933'), + (79316, 877, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4oo036Z4', '5967014'), + (79317, 877, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4oo036Z4', '5972815'), + (79318, 877, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4oo036Z4', '5974016'), + (79319, 877, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4oo036Z4', '5981515'), + (79320, 877, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4oo036Z4', '5993516'), + (79321, 877, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4oo036Z4', '5998939'), + (79322, 877, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4oo036Z4', '6028191'), + (79323, 877, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4oo036Z4', '6040066'), + (79324, 877, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4oo036Z4', '6042717'), + (79325, 877, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oo036Z4', '6045684'), + (79326, 878, 2867, 'attending', '2024-11-25 00:48:11', '2025-12-17 19:46:21', 'ArxK7R8d', '7471202'), + (79327, 878, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'ArxK7R8d', '7712467'), + (79328, 878, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'ArxK7R8d', '7713585'), + (79329, 878, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'ArxK7R8d', '7713586'), + (79330, 878, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'ArxK7R8d', '7738518'), + (79331, 878, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'ArxK7R8d', '7750636'), + (79332, 878, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'ArxK7R8d', '7796540'), + (79333, 878, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'ArxK7R8d', '7796541'), + (79334, 878, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'ArxK7R8d', '7796542'), + (79335, 878, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'ArxK7R8d', '7825913'), + (79336, 878, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'ArxK7R8d', '7826209'), + (79337, 878, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'ArxK7R8d', '7834742'), + (79338, 878, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'ArxK7R8d', '7842108'), + (79339, 878, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'ArxK7R8d', '7842902'), + (79340, 878, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'ArxK7R8d', '7842903'), + (79341, 878, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'ArxK7R8d', '7842904'), + (79342, 878, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'ArxK7R8d', '7842905'), + (79343, 878, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'ArxK7R8d', '7855719'), + (79344, 878, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'ArxK7R8d', '7860683'), + (79345, 878, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'ArxK7R8d', '7860684'), + (79346, 878, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'ArxK7R8d', '7866095'), + (79347, 878, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'ArxK7R8d', '7869170'), + (79348, 878, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'ArxK7R8d', '7869188'), + (79349, 878, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'ArxK7R8d', '7869201'), + (79350, 878, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'ArxK7R8d', '7877465'), + (79351, 878, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'ArxK7R8d', '7878570'), + (79352, 878, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'ArxK7R8d', '7888250'), + (79353, 878, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'ArxK7R8d', '8349164'), + (79354, 878, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'ArxK7R8d', '8349545'), + (79355, 878, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'ArxK7R8d', '8353584'), + (79356, 879, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'o4PZQEGm', '3149493'), + (79357, 879, 393, 'not_attending', '2021-06-24 22:36:54', '2025-12-17 19:47:38', 'o4PZQEGm', '3236448'), + (79358, 879, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'o4PZQEGm', '4021848'), + (79359, 879, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PZQEGm', '6045684'), + (79360, 880, 991, 'not_attending', '2021-09-11 21:32:48', '2025-12-17 19:47:43', 'myD7bnWd', '4420738'), + (79361, 880, 1003, 'attending', '2021-09-10 19:03:02', '2025-12-17 19:47:43', 'myD7bnWd', '4438802'), + (79362, 880, 1004, 'attending', '2021-09-10 21:12:49', '2025-12-17 19:47:43', 'myD7bnWd', '4438804'), + (79363, 880, 1023, 'not_attending', '2021-09-11 04:00:24', '2025-12-17 19:47:43', 'myD7bnWd', '4461883'), + (79364, 880, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myD7bnWd', '6045684'), + (79365, 881, 1893, 'attending', '2023-01-31 21:04:36', '2025-12-17 19:47:06', 'd8V7NJvA', '5901055'), + (79366, 881, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'd8V7NJvA', '5901108'), + (79367, 881, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd8V7NJvA', '5901126'), + (79368, 881, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'd8V7NJvA', '5901606'), + (79369, 881, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8V7NJvA', '6045684'), + (79370, 882, 162, 'not_attending', '2020-10-15 19:17:29', '2025-12-17 19:47:52', 'kdK0nLZm', '3058699'), + (79371, 882, 243, 'not_attending', '2020-11-03 21:35:13', '2025-12-17 19:47:53', 'kdK0nLZm', '3149474'), + (79372, 882, 244, 'not_attending', '2020-10-20 22:00:32', '2025-12-17 19:47:52', 'kdK0nLZm', '3149475'), + (79373, 882, 245, 'not_attending', '2020-12-01 22:24:08', '2025-12-17 19:47:54', 'kdK0nLZm', '3149476'), + (79374, 882, 249, 'not_attending', '2020-11-17 20:56:38', '2025-12-17 19:47:54', 'kdK0nLZm', '3149480'), + (79375, 882, 344, 'attending', '2020-11-02 00:07:58', '2025-12-17 19:47:53', 'kdK0nLZm', '3206906'), + (79376, 882, 374, 'maybe', '2020-10-25 02:21:46', '2025-12-17 19:47:53', 'kdK0nLZm', '3221415'), + (79377, 882, 377, 'not_attending', '2020-10-25 02:22:48', '2025-12-17 19:47:53', 'kdK0nLZm', '3222828'), + (79378, 882, 382, 'attending', '2020-10-13 18:50:33', '2025-12-17 19:47:52', 'kdK0nLZm', '3226873'), + (79379, 882, 386, 'attending', '2020-10-10 21:33:30', '2025-12-17 19:47:52', 'kdK0nLZm', '3228699'), + (79380, 882, 387, 'attending', '2020-10-17 23:02:55', '2025-12-17 19:47:52', 'kdK0nLZm', '3228700'), + (79381, 882, 388, 'attending', '2020-10-24 17:16:13', '2025-12-17 19:47:52', 'kdK0nLZm', '3228701'), + (79382, 882, 391, 'not_attending', '2020-10-15 19:17:06', '2025-12-17 19:47:52', 'kdK0nLZm', '3236446'), + (79383, 882, 392, 'maybe', '2020-10-25 02:22:25', '2025-12-17 19:47:53', 'kdK0nLZm', '3236447'), + (79384, 882, 410, 'maybe', '2020-11-26 21:19:24', '2025-12-17 19:47:54', 'kdK0nLZm', '3236469'), + (79385, 882, 411, 'not_attending', '2020-10-11 22:38:47', '2025-12-17 19:47:52', 'kdK0nLZm', '3236596'), + (79386, 882, 414, 'attending', '2020-10-18 17:39:21', '2025-12-17 19:47:52', 'kdK0nLZm', '3237277'), + (79387, 882, 415, 'attending', '2020-10-12 22:38:10', '2025-12-17 19:47:52', 'kdK0nLZm', '3238044'), + (79388, 882, 416, 'attending', '2020-10-09 21:31:32', '2025-12-17 19:47:52', 'kdK0nLZm', '3238073'), + (79389, 882, 418, 'maybe', '2020-10-13 03:21:22', '2025-12-17 19:47:52', 'kdK0nLZm', '3241728'), + (79390, 882, 419, 'maybe', '2020-10-13 18:50:40', '2025-12-17 19:47:52', 'kdK0nLZm', '3242234'), + (79391, 882, 420, 'attending', '2020-10-15 19:17:00', '2025-12-17 19:47:52', 'kdK0nLZm', '3245293'), + (79392, 882, 421, 'attending', '2020-10-23 01:41:13', '2025-12-17 19:47:52', 'kdK0nLZm', '3245294'), + (79393, 882, 422, 'attending', '2020-10-25 02:22:28', '2025-12-17 19:47:53', 'kdK0nLZm', '3245295'), + (79394, 882, 423, 'maybe', '2020-11-06 00:45:31', '2025-12-17 19:47:53', 'kdK0nLZm', '3245296'), + (79395, 882, 424, 'maybe', '2020-10-12 02:17:58', '2025-12-17 19:47:52', 'kdK0nLZm', '3245751'), + (79396, 882, 425, 'maybe', '2020-10-14 03:18:51', '2025-12-17 19:47:52', 'kdK0nLZm', '3250097'), + (79397, 882, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'kdK0nLZm', '3250232'), + (79398, 882, 428, 'attending', '2020-10-26 21:47:38', '2025-12-17 19:47:53', 'kdK0nLZm', '3250332'), + (79399, 882, 429, 'maybe', '2020-11-29 08:13:36', '2025-12-17 19:47:54', 'kdK0nLZm', '3250523'), + (79400, 882, 430, 'attending', '2020-10-21 19:28:21', '2025-12-17 19:47:52', 'kdK0nLZm', '3253094'), + (79401, 882, 431, 'attending', '2020-10-25 02:22:05', '2025-12-17 19:47:53', 'kdK0nLZm', '3253225'), + (79402, 882, 432, 'maybe', '2020-11-04 20:39:14', '2025-12-17 19:47:53', 'kdK0nLZm', '3254416'), + (79403, 882, 435, 'attending', '2020-10-22 19:04:40', '2025-12-17 19:47:52', 'kdK0nLZm', '3254790'), + (79404, 882, 437, 'maybe', '2020-10-25 02:22:19', '2025-12-17 19:47:53', 'kdK0nLZm', '3256160'), + (79405, 882, 438, 'attending', '2020-10-25 02:23:09', '2025-12-17 19:47:53', 'kdK0nLZm', '3256163'), + (79406, 882, 439, 'attending', '2020-10-25 02:22:16', '2025-12-17 19:47:53', 'kdK0nLZm', '3256164'), + (79407, 882, 440, 'attending', '2020-11-05 22:48:10', '2025-12-17 19:47:53', 'kdK0nLZm', '3256168'), + (79408, 882, 441, 'attending', '2020-11-15 00:36:03', '2025-12-17 19:47:54', 'kdK0nLZm', '3256169'), + (79409, 882, 443, 'attending', '2020-10-25 02:21:37', '2025-12-17 19:47:53', 'kdK0nLZm', '3263578'), + (79410, 882, 444, 'maybe', '2020-10-25 02:22:58', '2025-12-17 19:47:53', 'kdK0nLZm', '3263745'), + (79411, 882, 445, 'maybe', '2020-11-13 00:58:05', '2025-12-17 19:47:54', 'kdK0nLZm', '3266138'), + (79412, 882, 446, 'maybe', '2020-10-27 23:22:09', '2025-12-17 19:47:53', 'kdK0nLZm', '3267163'), + (79413, 882, 447, 'attending', '2020-10-28 03:17:25', '2025-12-17 19:47:53', 'kdK0nLZm', '3267895'), + (79414, 882, 448, 'attending', '2020-10-30 23:51:03', '2025-12-17 19:47:53', 'kdK0nLZm', '3271831'), + (79415, 882, 449, 'maybe', '2020-11-08 23:11:07', '2025-12-17 19:47:53', 'kdK0nLZm', '3272055'), + (79416, 882, 451, 'maybe', '2020-11-02 17:39:35', '2025-12-17 19:47:53', 'kdK0nLZm', '3272186'), + (79417, 882, 452, 'attending', '2020-11-26 21:22:09', '2025-12-17 19:47:54', 'kdK0nLZm', '3272981'), + (79418, 882, 454, 'maybe', '2020-11-14 00:41:35', '2025-12-17 19:47:54', 'kdK0nLZm', '3275665'), + (79419, 882, 455, 'attending', '2020-11-05 22:44:23', '2025-12-17 19:47:53', 'kdK0nLZm', '3276391'), + (79420, 882, 456, 'maybe', '2020-11-05 22:44:01', '2025-12-17 19:47:54', 'kdK0nLZm', '3276428'), + (79421, 882, 457, 'maybe', '2020-11-07 05:52:54', '2025-12-17 19:47:53', 'kdK0nLZm', '3279087'), + (79422, 882, 459, 'attending', '2020-11-08 18:45:23', '2025-12-17 19:47:54', 'kdK0nLZm', '3281467'), + (79423, 882, 460, 'maybe', '2020-11-19 20:05:11', '2025-12-17 19:47:54', 'kdK0nLZm', '3281468'), + (79424, 882, 461, 'attending', '2020-11-08 18:45:38', '2025-12-17 19:47:53', 'kdK0nLZm', '3281469'), + (79425, 882, 462, 'attending', '2020-11-08 18:45:13', '2025-12-17 19:47:53', 'kdK0nLZm', '3281470'), + (79426, 882, 465, 'maybe', '2020-11-26 21:19:29', '2025-12-17 19:47:54', 'kdK0nLZm', '3281555'), + (79427, 882, 466, 'maybe', '2020-11-22 04:09:41', '2025-12-17 19:47:54', 'kdK0nLZm', '3281829'), + (79428, 882, 467, 'not_attending', '2020-11-17 20:56:33', '2025-12-17 19:47:54', 'kdK0nLZm', '3282756'), + (79429, 882, 468, 'attending', '2020-11-10 23:24:35', '2025-12-17 19:47:54', 'kdK0nLZm', '3285413'), + (79430, 882, 469, 'attending', '2020-11-26 21:19:35', '2025-12-17 19:47:54', 'kdK0nLZm', '3285414'), + (79431, 882, 474, 'attending', '2020-11-11 23:25:56', '2025-12-17 19:47:54', 'kdK0nLZm', '3286570'), + (79432, 882, 475, 'attending', '2020-11-25 19:34:59', '2025-12-17 19:47:54', 'kdK0nLZm', '3286760'), + (79433, 882, 476, 'attending', '2020-11-15 05:40:19', '2025-12-17 19:47:54', 'kdK0nLZm', '3286982'), + (79434, 882, 477, 'not_attending', '2020-12-04 00:07:28', '2025-12-17 19:47:54', 'kdK0nLZm', '3289559'), + (79435, 882, 478, 'maybe', '2020-11-17 20:56:24', '2025-12-17 19:47:54', 'kdK0nLZm', '3290899'), + (79436, 882, 481, 'maybe', '2020-11-19 23:44:24', '2025-12-17 19:47:54', 'kdK0nLZm', '3297764'), + (79437, 882, 483, 'attending', '2020-11-23 20:59:21', '2025-12-17 19:47:54', 'kdK0nLZm', '3297791'), + (79438, 882, 484, 'attending', '2020-11-20 18:47:07', '2025-12-17 19:47:54', 'kdK0nLZm', '3297792'), + (79439, 882, 486, 'attending', '2020-11-24 20:57:28', '2025-12-17 19:47:54', 'kdK0nLZm', '3300281'), + (79440, 882, 487, 'maybe', '2020-11-30 18:24:02', '2025-12-17 19:47:54', 'kdK0nLZm', '3311122'), + (79441, 882, 488, 'maybe', '2020-11-30 20:09:45', '2025-12-17 19:47:54', 'kdK0nLZm', '3312757'), + (79442, 882, 489, 'attending', '2020-11-28 00:25:06', '2025-12-17 19:47:54', 'kdK0nLZm', '3313022'), + (79443, 882, 492, 'maybe', '2020-12-03 18:41:44', '2025-12-17 19:47:54', 'kdK0nLZm', '3313731'), + (79444, 882, 493, 'attending', '2020-11-29 04:22:56', '2025-12-17 19:47:54', 'kdK0nLZm', '3313856'), + (79445, 882, 497, 'maybe', '2020-12-13 07:11:36', '2025-12-17 19:47:55', 'kdK0nLZm', '3314270'), + (79446, 882, 499, 'attending', '2020-11-30 20:09:32', '2025-12-17 19:47:55', 'kdK0nLZm', '3314909'), + (79447, 882, 500, 'not_attending', '2020-12-19 22:02:28', '2025-12-17 19:47:55', 'kdK0nLZm', '3314964'), + (79448, 882, 501, 'not_attending', '2020-12-08 23:22:39', '2025-12-17 19:47:54', 'kdK0nLZm', '3317834'), + (79449, 882, 502, 'maybe', '2020-12-12 23:57:41', '2025-12-17 19:47:55', 'kdK0nLZm', '3323365'), + (79450, 882, 505, 'maybe', '2020-12-13 07:12:00', '2025-12-17 19:47:55', 'kdK0nLZm', '3323369'), + (79451, 882, 506, 'maybe', '2020-12-13 07:11:23', '2025-12-17 19:47:55', 'kdK0nLZm', '3323375'), + (79452, 882, 511, 'maybe', '2020-12-19 00:04:04', '2025-12-17 19:47:55', 'kdK0nLZm', '3325335'), + (79453, 882, 513, 'maybe', '2020-12-13 07:11:55', '2025-12-17 19:47:55', 'kdK0nLZm', '3329383'), + (79454, 882, 515, 'maybe', '2020-12-12 18:15:14', '2025-12-17 19:47:55', 'kdK0nLZm', '3331196'), + (79455, 882, 520, 'maybe', '2020-12-21 20:16:09', '2025-12-17 19:47:55', 'kdK0nLZm', '3337453'), + (79456, 882, 525, 'not_attending', '2020-12-22 21:05:52', '2025-12-17 19:47:48', 'kdK0nLZm', '3350467'), + (79457, 882, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'kdK0nLZm', '3351539'), + (79458, 882, 536, 'maybe', '2021-01-16 02:39:29', '2025-12-17 19:47:48', 'kdK0nLZm', '3386848'), + (79459, 882, 540, 'maybe', '2021-01-16 02:39:43', '2025-12-17 19:47:48', 'kdK0nLZm', '3389527'), + (79460, 882, 543, 'maybe', '2021-01-16 02:39:41', '2025-12-17 19:47:48', 'kdK0nLZm', '3396499'), + (79461, 882, 548, 'maybe', '2021-01-16 02:39:39', '2025-12-17 19:47:48', 'kdK0nLZm', '3403650'), + (79462, 882, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdK0nLZm', '3406988'), + (79463, 882, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'kdK0nLZm', '3416576'), + (79464, 882, 571, 'attending', '2021-02-12 19:51:24', '2025-12-17 19:47:50', 'kdK0nLZm', '3435539'), + (79465, 882, 602, 'maybe', '2021-02-14 02:26:42', '2025-12-17 19:47:50', 'kdK0nLZm', '3470303'), + (79466, 882, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdK0nLZm', '3470305'), + (79467, 882, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'kdK0nLZm', '3470991'), + (79468, 882, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdK0nLZm', '3517815'), + (79469, 882, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdK0nLZm', '3517816'), + (79470, 882, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'kdK0nLZm', '3523941'), + (79471, 882, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdK0nLZm', '3533850'), + (79472, 882, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdK0nLZm', '3536632'), + (79473, 882, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdK0nLZm', '3536656'), + (79474, 882, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdK0nLZm', '3539916'), + (79475, 882, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdK0nLZm', '3539917'), + (79476, 882, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdK0nLZm', '3539918'), + (79477, 882, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdK0nLZm', '3539919'), + (79478, 882, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdK0nLZm', '3539920'), + (79479, 882, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdK0nLZm', '3539921'), + (79480, 882, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdK0nLZm', '3539922'), + (79481, 882, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdK0nLZm', '3539923'), + (79482, 882, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdK0nLZm', '3539927'), + (79483, 882, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdK0nLZm', '3582734'), + (79484, 882, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdK0nLZm', '3583262'), + (79485, 882, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdK0nLZm', '3619523'), + (79486, 882, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdK0nLZm', '3661369'), + (79487, 882, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdK0nLZm', '3674262'), + (79488, 882, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdK0nLZm', '3677402'), + (79489, 882, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'kdK0nLZm', '3730212'), + (79490, 882, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'kdK0nLZm', '3793156'), + (79491, 882, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'kdK0nLZm', '3974109'), + (79492, 882, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdK0nLZm', '3975311'), + (79493, 882, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdK0nLZm', '3975312'), + (79494, 882, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdK0nLZm', '3994992'), + (79495, 882, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdK0nLZm', '4014338'), + (79496, 882, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdK0nLZm', '4021848'), + (79497, 882, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdK0nLZm', '4136744'), + (79498, 882, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdK0nLZm', '4136937'), + (79499, 882, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdK0nLZm', '4136938'), + (79500, 882, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdK0nLZm', '4136947'), + (79501, 882, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdK0nLZm', '4210314'), + (79502, 882, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdK0nLZm', '4225444'), + (79503, 882, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdK0nLZm', '4239259'), + (79504, 882, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdK0nLZm', '4240316'), + (79505, 882, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdK0nLZm', '4240317'), + (79506, 882, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdK0nLZm', '4240318'), + (79507, 882, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdK0nLZm', '4240320'), + (79508, 882, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdK0nLZm', '4250163'), + (79509, 882, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdK0nLZm', '4275957'), + (79510, 882, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdK0nLZm', '4277819'), + (79511, 882, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdK0nLZm', '4301723'), + (79512, 882, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdK0nLZm', '4302093'), + (79513, 882, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdK0nLZm', '4304151'), + (79514, 882, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdK0nLZm', '4356801'), + (79515, 882, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdK0nLZm', '4366186'), + (79516, 882, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdK0nLZm', '4366187'), + (79517, 882, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdK0nLZm', '4420735'), + (79518, 882, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdK0nLZm', '4420738'), + (79519, 882, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdK0nLZm', '4420739'), + (79520, 882, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'kdK0nLZm', '4420741'), + (79521, 882, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdK0nLZm', '4420744'), + (79522, 882, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdK0nLZm', '4420747'), + (79523, 882, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdK0nLZm', '4420748'), + (79524, 882, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdK0nLZm', '4420749'), + (79525, 882, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdK0nLZm', '4461883'), + (79526, 882, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdK0nLZm', '4508342'), + (79527, 882, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdK0nLZm', '4568602'), + (79528, 882, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdK0nLZm', '4572153'), + (79529, 882, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdK0nLZm', '4585962'), + (79530, 882, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'kdK0nLZm', '4596356'), + (79531, 882, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdK0nLZm', '4598860'), + (79532, 882, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdK0nLZm', '4598861'), + (79533, 882, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdK0nLZm', '4602797'), + (79534, 882, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdK0nLZm', '4637896'), + (79535, 882, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdK0nLZm', '4642994'), + (79536, 882, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdK0nLZm', '4642995'), + (79537, 882, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdK0nLZm', '4642996'), + (79538, 882, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdK0nLZm', '4642997'), + (79539, 882, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdK0nLZm', '4645687'), + (79540, 882, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdK0nLZm', '4645698'), + (79541, 882, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdK0nLZm', '4645704'), + (79542, 882, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdK0nLZm', '4645705'), + (79543, 882, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdK0nLZm', '4668385'), + (79544, 882, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdK0nLZm', '4694407'), + (79545, 882, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdK0nLZm', '4736497'), + (79546, 882, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdK0nLZm', '4736499'), + (79547, 882, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdK0nLZm', '4736500'), + (79548, 882, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdK0nLZm', '4736503'), + (79549, 882, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdK0nLZm', '4736504'), + (79550, 882, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdK0nLZm', '4746789'), + (79551, 882, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'kdK0nLZm', '4753929'), + (79552, 882, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdK0nLZm', '5038850'), + (79553, 882, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdK0nLZm', '5045826'), + (79554, 882, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdK0nLZm', '5132533'), + (79555, 882, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdK0nLZm', '5186582'), + (79556, 882, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdK0nLZm', '5186583'), + (79557, 882, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdK0nLZm', '5186585'), + (79558, 882, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdK0nLZm', '5190437'), + (79559, 882, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdK0nLZm', '5195095'), + (79560, 882, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdK0nLZm', '5215989'), + (79561, 882, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdK0nLZm', '5223686'), + (79562, 882, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdK0nLZm', '5247467'), + (79563, 882, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdK0nLZm', '5260800'), + (79564, 882, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdK0nLZm', '5269930'), + (79565, 882, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdK0nLZm', '5271448'), + (79566, 882, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'kdK0nLZm', '5271449'), + (79567, 882, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdK0nLZm', '5278159'), + (79568, 882, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdK0nLZm', '5363695'), + (79569, 882, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdK0nLZm', '5365960'), + (79570, 882, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdK0nLZm', '5378247'), + (79571, 882, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'kdK0nLZm', '5389605'), + (79572, 882, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdK0nLZm', '5397265'), + (79573, 882, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdK0nLZm', '5404786'), + (79574, 882, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdK0nLZm', '5405203'), + (79575, 882, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdK0nLZm', '5412550'), + (79576, 882, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdK0nLZm', '5415046'), + (79577, 882, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdK0nLZm', '5422086'), + (79578, 882, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdK0nLZm', '5422406'), + (79579, 882, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdK0nLZm', '5424565'), + (79580, 882, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdK0nLZm', '5426882'), + (79581, 882, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdK0nLZm', '5441125'), + (79582, 882, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdK0nLZm', '5441126'), + (79583, 882, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdK0nLZm', '5441128'), + (79584, 882, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdK0nLZm', '5441131'), + (79585, 882, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdK0nLZm', '5441132'), + (79586, 882, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdK0nLZm', '5453325'), + (79587, 882, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdK0nLZm', '5454516'), + (79588, 882, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdK0nLZm', '5454605'), + (79589, 882, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdK0nLZm', '5455037'), + (79590, 882, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdK0nLZm', '5461278'), + (79591, 882, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdK0nLZm', '5469480'), + (79592, 882, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdK0nLZm', '5474663'), + (79593, 882, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdK0nLZm', '5482022'), + (79594, 882, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdK0nLZm', '5488912'), + (79595, 882, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdK0nLZm', '5492192'), + (79596, 882, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdK0nLZm', '5493139'), + (79597, 882, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdK0nLZm', '5493200'), + (79598, 882, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdK0nLZm', '5502188'), + (79599, 882, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdK0nLZm', '5505059'), + (79600, 882, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdK0nLZm', '5509055'), + (79601, 882, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdK0nLZm', '5512862'), + (79602, 882, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdK0nLZm', '5513985'), + (79603, 882, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdK0nLZm', '5519981'), + (79604, 882, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdK0nLZm', '5522550'), + (79605, 882, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdK0nLZm', '5534683'), + (79606, 882, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdK0nLZm', '5537735'), + (79607, 882, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdK0nLZm', '5540859'), + (79608, 882, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdK0nLZm', '5546619'), + (79609, 882, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdK0nLZm', '5557747'), + (79610, 882, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdK0nLZm', '5560255'), + (79611, 882, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdK0nLZm', '5562906'), + (79612, 882, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdK0nLZm', '5600604'), + (79613, 882, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdK0nLZm', '5605544'), + (79614, 882, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdK0nLZm', '5630960'), + (79615, 882, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdK0nLZm', '5630961'), + (79616, 882, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdK0nLZm', '5630962'), + (79617, 882, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdK0nLZm', '5630966'), + (79618, 882, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdK0nLZm', '5630967'), + (79619, 882, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdK0nLZm', '5630968'), + (79620, 882, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdK0nLZm', '5635406'), + (79621, 882, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdK0nLZm', '5638765'), + (79622, 882, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdK0nLZm', '5640097'), + (79623, 882, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdK0nLZm', '5640843'), + (79624, 882, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdK0nLZm', '5641521'), + (79625, 882, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdK0nLZm', '5642818'), + (79626, 882, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdK0nLZm', '5652395'), + (79627, 882, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdK0nLZm', '5670445'), + (79628, 882, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdK0nLZm', '5671637'), + (79629, 882, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdK0nLZm', '5672329'), + (79630, 882, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdK0nLZm', '5674057'), + (79631, 882, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdK0nLZm', '5674060'), + (79632, 882, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdK0nLZm', '5677461'), + (79633, 882, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdK0nLZm', '5698046'), + (79634, 882, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdK0nLZm', '5699760'), + (79635, 882, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdK0nLZm', '5741601'), + (79636, 882, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdK0nLZm', '5763458'), + (79637, 882, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdK0nLZm', '5774172'), + (79638, 882, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdK0nLZm', '5818247'), + (79639, 882, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdK0nLZm', '5819471'), + (79640, 882, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdK0nLZm', '5827739'), + (79641, 882, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdK0nLZm', '5844306'), + (79642, 882, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdK0nLZm', '5850159'), + (79643, 882, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdK0nLZm', '5858999'), + (79644, 882, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdK0nLZm', '5871984'), + (79645, 882, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdK0nLZm', '5876354'), + (79646, 882, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdK0nLZm', '5880939'), + (79647, 882, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdK0nLZm', '5880940'), + (79648, 882, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdK0nLZm', '5880942'), + (79649, 882, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdK0nLZm', '5880943'), + (79650, 882, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdK0nLZm', '5887890'), + (79651, 882, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdK0nLZm', '5888598'), + (79652, 882, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdK0nLZm', '5893260'), + (79653, 882, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdK0nLZm', '5899826'), + (79654, 882, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdK0nLZm', '5900199'), + (79655, 882, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdK0nLZm', '5900200'), + (79656, 882, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdK0nLZm', '5900202'), + (79657, 882, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdK0nLZm', '5900203'), + (79658, 882, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdK0nLZm', '5901108'), + (79659, 882, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdK0nLZm', '5901126'), + (79660, 882, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdK0nLZm', '5909655'), + (79661, 882, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdK0nLZm', '5910522'), + (79662, 882, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdK0nLZm', '5910526'), + (79663, 882, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdK0nLZm', '5910528'), + (79664, 882, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdK0nLZm', '5916219'), + (79665, 882, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdK0nLZm', '5936234'), + (79666, 882, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdK0nLZm', '5958351'), + (79667, 882, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdK0nLZm', '5959751'), + (79668, 882, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdK0nLZm', '5959755'), + (79669, 882, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdK0nLZm', '5960055'), + (79670, 882, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdK0nLZm', '5961684'), + (79671, 882, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdK0nLZm', '5962132'), + (79672, 882, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdK0nLZm', '5962133'), + (79673, 882, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdK0nLZm', '5962134'), + (79674, 882, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdK0nLZm', '5962317'), + (79675, 882, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdK0nLZm', '5962318'), + (79676, 882, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdK0nLZm', '5965933'), + (79677, 882, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdK0nLZm', '5967014'), + (79678, 882, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdK0nLZm', '5972815'), + (79679, 882, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdK0nLZm', '5974016'), + (79680, 882, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdK0nLZm', '5981515'), + (79681, 882, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdK0nLZm', '5993516'), + (79682, 882, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdK0nLZm', '5998939'), + (79683, 882, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdK0nLZm', '6028191'), + (79684, 882, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdK0nLZm', '6040066'), + (79685, 882, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdK0nLZm', '6042717'), + (79686, 882, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdK0nLZm', '6044838'), + (79687, 882, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdK0nLZm', '6044839'), + (79688, 882, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0nLZm', '6045684'), + (79689, 882, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdK0nLZm', '6050104'), + (79690, 882, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdK0nLZm', '6053195'), + (79691, 882, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdK0nLZm', '6053198'), + (79692, 882, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdK0nLZm', '6056085'), + (79693, 882, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdK0nLZm', '6056916'), + (79694, 882, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdK0nLZm', '6059290'), + (79695, 882, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdK0nLZm', '6060328'), + (79696, 882, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdK0nLZm', '6061037'), + (79697, 882, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdK0nLZm', '6061039'), + (79698, 882, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdK0nLZm', '6067245'), + (79699, 882, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdK0nLZm', '6068094'), + (79700, 882, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdK0nLZm', '6068252'), + (79701, 882, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdK0nLZm', '6068253'), + (79702, 882, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdK0nLZm', '6068254'), + (79703, 882, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdK0nLZm', '6068280'), + (79704, 882, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdK0nLZm', '6069093'), + (79705, 882, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdK0nLZm', '6072528'), + (79706, 882, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdK0nLZm', '6079840'), + (79707, 882, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdK0nLZm', '6083398'), + (79708, 882, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdK0nLZm', '6093504'), + (79709, 882, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdK0nLZm', '6097414'), + (79710, 882, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdK0nLZm', '6097442'), + (79711, 882, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdK0nLZm', '6097684'), + (79712, 882, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdK0nLZm', '6098762'), + (79713, 882, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdK0nLZm', '6101361'), + (79714, 882, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdK0nLZm', '6101362'), + (79715, 882, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdK0nLZm', '6107314'), + (79716, 882, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdK0nLZm', '6120034'), + (79717, 882, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'kdK0nLZm', '6136733'), + (79718, 882, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdK0nLZm', '6137989'), + (79719, 882, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdK0nLZm', '6150864'), + (79720, 882, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdK0nLZm', '6155491'), + (79721, 882, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdK0nLZm', '6164417'), + (79722, 882, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdK0nLZm', '6166388'), + (79723, 882, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdK0nLZm', '6176439'), + (79724, 882, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdK0nLZm', '6182410'), + (79725, 882, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdK0nLZm', '6185812'), + (79726, 882, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdK0nLZm', '6187651'), + (79727, 882, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdK0nLZm', '6187963'), + (79728, 882, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdK0nLZm', '6187964'), + (79729, 882, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdK0nLZm', '6187966'), + (79730, 882, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdK0nLZm', '6187967'), + (79731, 882, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdK0nLZm', '6187969'), + (79732, 882, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdK0nLZm', '6334878'), + (79733, 882, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdK0nLZm', '6337236'), + (79734, 882, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdK0nLZm', '6337970'), + (79735, 882, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdK0nLZm', '6338308'), + (79736, 882, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdK0nLZm', '6341710'), + (79737, 882, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdK0nLZm', '6342044'), + (79738, 882, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdK0nLZm', '6342298'), + (79739, 882, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdK0nLZm', '6343294'), + (79740, 882, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdK0nLZm', '6347034'), + (79741, 882, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdK0nLZm', '6347056'), + (79742, 882, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdK0nLZm', '6353830'), + (79743, 882, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdK0nLZm', '6353831'), + (79744, 882, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdK0nLZm', '6357867'), + (79745, 882, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdK0nLZm', '6358652'), + (79746, 882, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdK0nLZm', '6361709'), + (79747, 882, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdK0nLZm', '6361710'), + (79748, 882, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdK0nLZm', '6361711'), + (79749, 882, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdK0nLZm', '6361712'), + (79750, 882, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdK0nLZm', '6361713'), + (79751, 882, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'kdK0nLZm', '6382573'), + (79752, 882, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdK0nLZm', '6388604'), + (79753, 882, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdK0nLZm', '6394629'), + (79754, 882, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdK0nLZm', '6394631'), + (79755, 882, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdK0nLZm', '6440863'), + (79756, 882, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdK0nLZm', '6445440'), + (79757, 882, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdK0nLZm', '6453951'), + (79758, 882, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdK0nLZm', '6461696'), + (79759, 882, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdK0nLZm', '6462129'), + (79760, 882, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdK0nLZm', '6463218'), + (79761, 882, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdK0nLZm', '6472181'), + (79762, 882, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdK0nLZm', '6482693'), + (79763, 882, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdK0nLZm', '6484200'), + (79764, 882, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdK0nLZm', '6484680'), + (79765, 882, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdK0nLZm', '6507741'), + (79766, 882, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdK0nLZm', '6514659'), + (79767, 882, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdK0nLZm', '6514660'), + (79768, 882, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdK0nLZm', '6519103'), + (79769, 882, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdK0nLZm', '6535681'), + (79770, 882, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdK0nLZm', '6584747'), + (79771, 882, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdK0nLZm', '6587097'), + (79772, 882, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdK0nLZm', '6609022'), + (79773, 882, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'kdK0nLZm', '6632757'), + (79774, 882, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdK0nLZm', '6644187'), + (79775, 882, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdK0nLZm', '6648951'), + (79776, 882, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdK0nLZm', '6648952'), + (79777, 882, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdK0nLZm', '6655401'), + (79778, 882, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdK0nLZm', '6661585'), + (79779, 882, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdK0nLZm', '6661588'), + (79780, 882, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdK0nLZm', '6661589'), + (79781, 882, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdK0nLZm', '6699906'), + (79782, 882, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdK0nLZm', '6699913'), + (79783, 882, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdK0nLZm', '6701109'), + (79784, 882, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdK0nLZm', '6705219'), + (79785, 882, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdK0nLZm', '6710153'), + (79786, 882, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdK0nLZm', '6711552'), + (79787, 882, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdK0nLZm', '6711553'), + (79788, 882, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdK0nLZm', '6722688'), + (79789, 882, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdK0nLZm', '6730620'), + (79790, 882, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdK0nLZm', '6740364'), + (79791, 882, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdK0nLZm', '6743829'), + (79792, 882, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdK0nLZm', '7030380'), + (79793, 882, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'kdK0nLZm', '7033677'), + (79794, 882, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdK0nLZm', '7044715'), + (79795, 882, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdK0nLZm', '7050318'), + (79796, 882, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdK0nLZm', '7050319'), + (79797, 882, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdK0nLZm', '7050322'), + (79798, 882, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdK0nLZm', '7057804'), + (79799, 882, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdK0nLZm', '7072824'), + (79800, 882, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdK0nLZm', '7074348'), + (79801, 882, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdK0nLZm', '7074364'), + (79802, 882, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdK0nLZm', '7089267'), + (79803, 882, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdK0nLZm', '7098747'), + (79804, 882, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdK0nLZm', '7113468'), + (79805, 882, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdK0nLZm', '7114856'), + (79806, 882, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdK0nLZm', '7114951'), + (79807, 882, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdK0nLZm', '7114955'), + (79808, 882, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdK0nLZm', '7114956'), + (79809, 882, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdK0nLZm', '7114957'), + (79810, 882, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdK0nLZm', '7159484'), + (79811, 882, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdK0nLZm', '7178446'), + (79812, 882, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdK0nLZm', '7220467'), + (79813, 882, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdK0nLZm', '7240354'), + (79814, 882, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdK0nLZm', '7251633'), + (79815, 882, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdK0nLZm', '7324073'), + (79816, 882, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdK0nLZm', '7324074'), + (79817, 882, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdK0nLZm', '7324075'), + (79818, 882, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdK0nLZm', '7324078'), + (79819, 882, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdK0nLZm', '7324082'), + (79820, 882, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdK0nLZm', '7331457'), + (79821, 882, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdK0nLZm', '7363643'), + (79822, 882, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdK0nLZm', '7368606'), + (79823, 882, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdK0nLZm', '7397462'), + (79824, 882, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdK0nLZm', '7424275'), + (79825, 882, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdK0nLZm', '7432751'), + (79826, 882, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdK0nLZm', '7432752'), + (79827, 882, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdK0nLZm', '7432753'), + (79828, 882, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdK0nLZm', '7432754'), + (79829, 882, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdK0nLZm', '7432755'), + (79830, 882, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdK0nLZm', '7432756'), + (79831, 882, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdK0nLZm', '7432758'), + (79832, 882, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdK0nLZm', '7432759'), + (79833, 882, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdK0nLZm', '7433834'), + (79834, 882, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'kdK0nLZm', '7470197'), + (79835, 882, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdK0nLZm', '7685613'), + (79836, 882, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdK0nLZm', '7688194'), + (79837, 882, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdK0nLZm', '7688196'), + (79838, 882, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdK0nLZm', '7688289'), + (79839, 882, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdK0nLZm', '7692763'), + (79840, 882, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdK0nLZm', '7697552'), + (79841, 882, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdK0nLZm', '7699878'), + (79842, 882, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdK0nLZm', '7704043'), + (79843, 882, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdK0nLZm', '7712467'), + (79844, 882, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdK0nLZm', '7713585'), + (79845, 882, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdK0nLZm', '7713586'), + (79846, 882, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdK0nLZm', '7738518'), + (79847, 882, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdK0nLZm', '7750636'), + (79848, 882, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdK0nLZm', '7796540'), + (79849, 882, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdK0nLZm', '7796541'), + (79850, 882, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdK0nLZm', '7796542'), + (79851, 882, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdK0nLZm', '7825913'), + (79852, 882, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdK0nLZm', '7826209'), + (79853, 882, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdK0nLZm', '7834742'), + (79854, 882, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'kdK0nLZm', '7842108'), + (79855, 882, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdK0nLZm', '7842902'), + (79856, 882, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdK0nLZm', '7842903'), + (79857, 882, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdK0nLZm', '7842904'), + (79858, 882, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdK0nLZm', '7842905'), + (79859, 882, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdK0nLZm', '7855719'), + (79860, 882, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdK0nLZm', '7860683'), + (79861, 882, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdK0nLZm', '7860684'), + (79862, 882, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdK0nLZm', '7866095'), + (79863, 882, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdK0nLZm', '7869170'), + (79864, 882, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdK0nLZm', '7869188'), + (79865, 882, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdK0nLZm', '7869201'), + (79866, 882, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdK0nLZm', '7877465'), + (79867, 882, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdK0nLZm', '7888250'), + (79868, 882, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdK0nLZm', '7904777'), + (79869, 882, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdK0nLZm', '8349164'), + (79870, 882, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdK0nLZm', '8349545'), + (79871, 882, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdK0nLZm', '8368028'), + (79872, 882, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdK0nLZm', '8368029'), + (79873, 882, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdK0nLZm', '8388462'), + (79874, 882, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdK0nLZm', '8400273'), + (79875, 882, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdK0nLZm', '8400275'), + (79876, 882, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'kdK0nLZm', '8400276'), + (79877, 882, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdK0nLZm', '8404977'), + (79878, 882, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdK0nLZm', '8430783'), + (79879, 882, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdK0nLZm', '8430784'), + (79880, 882, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdK0nLZm', '8430799'), + (79881, 882, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdK0nLZm', '8430800'), + (79882, 882, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdK0nLZm', '8430801'), + (79883, 882, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdK0nLZm', '8438709'), + (79884, 882, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdK0nLZm', '8457738'), + (79885, 882, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdK0nLZm', '8459566'), + (79886, 882, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdK0nLZm', '8459567'), + (79887, 882, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdK0nLZm', '8461032'), + (79888, 882, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdK0nLZm', '8477877'), + (79889, 882, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdK0nLZm', '8485688'), + (79890, 882, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdK0nLZm', '8490587'), + (79891, 882, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdK0nLZm', '8493552'), + (79892, 882, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdK0nLZm', '8493553'), + (79893, 882, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdK0nLZm', '8493554'), + (79894, 882, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdK0nLZm', '8493555'), + (79895, 882, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdK0nLZm', '8493556'), + (79896, 882, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdK0nLZm', '8493557'), + (79897, 882, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdK0nLZm', '8493558'), + (79898, 882, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdK0nLZm', '8493559'), + (79899, 882, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdK0nLZm', '8493560'), + (79900, 882, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdK0nLZm', '8493561'), + (79901, 882, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdK0nLZm', '8493572'), + (79902, 882, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdK0nLZm', '8540725'), + (79903, 882, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdK0nLZm', '8555421'), + (79904, 883, 1374, 'attending', '2022-05-07 22:56:01', '2025-12-17 19:47:28', 'mbZOZKEm', '5269930'), + (79905, 883, 1378, 'attending', '2022-05-07 14:40:16', '2025-12-17 19:47:28', 'mbZOZKEm', '5271448'), + (79906, 883, 1379, 'maybe', '2022-05-21 12:49:07', '2025-12-17 19:47:30', 'mbZOZKEm', '5271449'), + (79907, 883, 1380, 'not_attending', '2022-05-29 00:01:04', '2025-12-17 19:47:30', 'mbZOZKEm', '5271450'), + (79908, 883, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mbZOZKEm', '5276469'), + (79909, 883, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mbZOZKEm', '5278159'), + (79910, 883, 1407, 'attending', '2022-06-04 12:15:34', '2025-12-17 19:47:30', 'mbZOZKEm', '5363695'), + (79911, 883, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mbZOZKEm', '5365960'), + (79912, 883, 1415, 'attending', '2022-05-23 06:58:13', '2025-12-17 19:47:30', 'mbZOZKEm', '5368973'), + (79913, 883, 1427, 'attending', '2022-05-25 15:10:23', '2025-12-17 19:47:30', 'mbZOZKEm', '5376074'), + (79914, 883, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mbZOZKEm', '5378247'), + (79915, 883, 1431, 'attending', '2022-06-11 12:58:32', '2025-12-17 19:47:30', 'mbZOZKEm', '5389605'), + (79916, 883, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mbZOZKEm', '5397265'), + (79917, 883, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mbZOZKEm', '5403967'), + (79918, 883, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mbZOZKEm', '5404786'), + (79919, 883, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mbZOZKEm', '5405203'), + (79920, 883, 1471, 'attending', '2022-06-20 10:22:01', '2025-12-17 19:47:17', 'mbZOZKEm', '5407063'), + (79921, 883, 1475, 'attending', '2022-06-16 13:00:19', '2025-12-17 19:47:17', 'mbZOZKEm', '5408108'), + (79922, 883, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mbZOZKEm', '5408794'), + (79923, 883, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mbZOZKEm', '5411699'), + (79924, 883, 1482, 'attending', '2022-06-20 10:21:46', '2025-12-17 19:47:19', 'mbZOZKEm', '5412550'), + (79925, 883, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'mbZOZKEm', '5415046'), + (79926, 883, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mbZOZKEm', '5422086'), + (79927, 883, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mbZOZKEm', '5422406'), + (79928, 883, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mbZOZKEm', '5424565'), + (79929, 883, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mbZOZKEm', '5426882'), + (79930, 883, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mbZOZKEm', '5427083'), + (79931, 883, 1511, 'attending', '2022-07-09 16:15:21', '2025-12-17 19:47:19', 'mbZOZKEm', '5437733'), + (79932, 883, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'mbZOZKEm', '5441125'), + (79933, 883, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mbZOZKEm', '5441126'), + (79934, 883, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mbZOZKEm', '5441128'), + (79935, 883, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mbZOZKEm', '5441131'), + (79936, 883, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mbZOZKEm', '5441132'), + (79937, 883, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mbZOZKEm', '5446643'), + (79938, 883, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mbZOZKEm', '5453325'), + (79939, 883, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mbZOZKEm', '5454516'), + (79940, 883, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mbZOZKEm', '5454605'), + (79941, 883, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mbZOZKEm', '5455037'), + (79942, 883, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mbZOZKEm', '5461278'), + (79943, 883, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mbZOZKEm', '5469480'), + (79944, 883, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mbZOZKEm', '5471073'), + (79945, 883, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mbZOZKEm', '5474663'), + (79946, 883, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mbZOZKEm', '5482022'), + (79947, 883, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mbZOZKEm', '5482793'), + (79948, 883, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mbZOZKEm', '5488912'), + (79949, 883, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mbZOZKEm', '5492192'), + (79950, 883, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mbZOZKEm', '5493139'), + (79951, 883, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mbZOZKEm', '5493200'), + (79952, 883, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mbZOZKEm', '5502188'), + (79953, 883, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mbZOZKEm', '5505059'), + (79954, 883, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mbZOZKEm', '5509055'), + (79955, 883, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mbZOZKEm', '5512862'), + (79956, 883, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mbZOZKEm', '5513985'), + (79957, 883, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mbZOZKEm', '5519981'), + (79958, 883, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mbZOZKEm', '5522550'), + (79959, 883, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mbZOZKEm', '5534683'), + (79960, 883, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mbZOZKEm', '5537735'), + (79961, 883, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mbZOZKEm', '5540859'), + (79962, 883, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mbZOZKEm', '5546619'), + (79963, 883, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mbZOZKEm', '5555245'), + (79964, 883, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mbZOZKEm', '5557747'), + (79965, 883, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mbZOZKEm', '5560255'), + (79966, 883, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mbZOZKEm', '5562906'), + (79967, 883, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mbZOZKEm', '5600604'), + (79968, 883, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mbZOZKEm', '5605544'), + (79969, 883, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'mbZOZKEm', '5606737'), + (79970, 883, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mbZOZKEm', '5630960'), + (79971, 883, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mbZOZKEm', '5630961'), + (79972, 883, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mbZOZKEm', '5630962'), + (79973, 883, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mbZOZKEm', '5630966'), + (79974, 883, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mbZOZKEm', '5630967'), + (79975, 883, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mbZOZKEm', '5630968'), + (79976, 883, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mbZOZKEm', '5635406'), + (79977, 883, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mbZOZKEm', '5638765'), + (79978, 883, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mbZOZKEm', '5640097'), + (79979, 883, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mbZOZKEm', '5640843'), + (79980, 883, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mbZOZKEm', '5641521'), + (79981, 883, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mbZOZKEm', '5642818'), + (79982, 883, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mbZOZKEm', '5652395'), + (79983, 883, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mbZOZKEm', '5670445'), + (79984, 883, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mbZOZKEm', '5671637'), + (79985, 883, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mbZOZKEm', '5672329'), + (79986, 883, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mbZOZKEm', '5674057'), + (79987, 883, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mbZOZKEm', '5674060'), + (79988, 883, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mbZOZKEm', '5677461'), + (79989, 883, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mbZOZKEm', '5698046'), + (79990, 883, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mbZOZKEm', '5699760'), + (79991, 883, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mbZOZKEm', '5741601'), + (79992, 883, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mbZOZKEm', '5763458'), + (79993, 883, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mbZOZKEm', '5774172'), + (79994, 883, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mbZOZKEm', '5818247'), + (79995, 883, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mbZOZKEm', '5819471'), + (79996, 883, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mbZOZKEm', '5827739'), + (79997, 883, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mbZOZKEm', '5844306'), + (79998, 883, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mbZOZKEm', '5850159'), + (79999, 883, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mbZOZKEm', '5858999'), + (80000, 883, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mbZOZKEm', '5871984'), + (80001, 883, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mbZOZKEm', '5876354'), + (80002, 883, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mbZOZKEm', '5880939'), + (80003, 883, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mbZOZKEm', '5887890'), + (80004, 883, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mbZOZKEm', '5888598'), + (80005, 883, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mbZOZKEm', '5893260'), + (80006, 883, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZOZKEm', '6045684'), + (80007, 884, 255, 'maybe', '2021-03-19 18:35:01', '2025-12-17 19:47:43', '64vwwwkd', '3149486'), + (80008, 884, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '64vwwwkd', '3236465'), + (80009, 884, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '64vwwwkd', '3539916'), + (80010, 884, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '64vwwwkd', '3539918'), + (80011, 884, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '64vwwwkd', '3539919'), + (80012, 884, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '64vwwwkd', '3539920'), + (80013, 884, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '64vwwwkd', '3539921'), + (80014, 884, 649, 'maybe', '2021-03-19 18:34:36', '2025-12-17 19:47:51', '64vwwwkd', '3539927'), + (80015, 884, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '64vwwwkd', '3582734'), + (80016, 884, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '64vwwwkd', '3583262'), + (80017, 884, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '64vwwwkd', '3619523'), + (80018, 884, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '64vwwwkd', '3661369'), + (80019, 884, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '64vwwwkd', '3674262'), + (80020, 884, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '64vwwwkd', '3677402'), + (80021, 884, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '64vwwwkd', '3730212'), + (80022, 884, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '64vwwwkd', '3793156'), + (80023, 884, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '64vwwwkd', '3803310'), + (80024, 884, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '64vwwwkd', '3806392'), + (80025, 884, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64vwwwkd', '6045684'), + (80026, 885, 993, 'not_attending', '2021-09-25 19:05:27', '2025-12-17 19:47:34', 'Ae75vozd', '4420741'), + (80027, 885, 994, 'not_attending', '2021-10-02 22:32:36', '2025-12-17 19:47:34', 'Ae75vozd', '4420742'), + (80028, 885, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'Ae75vozd', '4420744'), + (80029, 885, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'Ae75vozd', '4420747'), + (80030, 885, 1006, 'maybe', '2021-09-25 19:42:19', '2025-12-17 19:47:34', 'Ae75vozd', '4438808'), + (80031, 885, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Ae75vozd', '4568602'), + (80032, 885, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Ae75vozd', '4572153'), + (80033, 885, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'Ae75vozd', '4585962'), + (80034, 885, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Ae75vozd', '4596356'), + (80035, 885, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Ae75vozd', '4598860'), + (80036, 885, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Ae75vozd', '4598861'), + (80037, 885, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Ae75vozd', '4602797'), + (80038, 885, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Ae75vozd', '4637896'), + (80039, 885, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Ae75vozd', '4642994'), + (80040, 885, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Ae75vozd', '4642995'), + (80041, 885, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Ae75vozd', '4642996'), + (80042, 885, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Ae75vozd', '4642997'), + (80043, 885, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Ae75vozd', '4645687'), + (80044, 885, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Ae75vozd', '4645698'), + (80045, 885, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Ae75vozd', '4645704'), + (80046, 885, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Ae75vozd', '4645705'), + (80047, 885, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae75vozd', '4668385'), + (80048, 885, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ae75vozd', '6045684'), + (80049, 886, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'o4PKJyGA', '3470303'), + (80050, 886, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'o4PKJyGA', '3470305'), + (80051, 886, 605, 'maybe', '2021-02-08 21:49:34', '2025-12-17 19:47:50', 'o4PKJyGA', '3470991'), + (80052, 886, 610, 'attending', '2021-02-11 13:29:04', '2025-12-17 19:47:50', 'o4PKJyGA', '3482159'), + (80053, 886, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'o4PKJyGA', '3517815'), + (80054, 886, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'o4PKJyGA', '3523941'), + (80055, 886, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'o4PKJyGA', '3533850'), + (80056, 886, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'o4PKJyGA', '3536632'), + (80057, 886, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'o4PKJyGA', '3536656'), + (80058, 886, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'o4PKJyGA', '3539916'), + (80059, 886, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'o4PKJyGA', '3539917'), + (80060, 886, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'o4PKJyGA', '3539918'), + (80061, 886, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'o4PKJyGA', '3539919'), + (80062, 886, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'o4PKJyGA', '3539920'), + (80063, 886, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'o4PKJyGA', '3539921'), + (80064, 886, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'o4PKJyGA', '3539922'), + (80065, 886, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'o4PKJyGA', '3539923'), + (80066, 886, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4PKJyGA', '6045684'), + (80067, 887, 251, 'attending', '2021-01-22 06:19:32', '2025-12-17 19:47:49', 'bdzyrkL4', '3149482'), + (80068, 887, 400, 'attending', '2021-01-27 22:22:11', '2025-12-17 19:47:50', 'bdzyrkL4', '3236455'), + (80069, 887, 555, 'not_attending', '2021-01-22 16:36:49', '2025-12-17 19:47:49', 'bdzyrkL4', '3416576'), + (80070, 887, 558, 'attending', '2021-01-22 04:33:03', '2025-12-17 19:47:49', 'bdzyrkL4', '3418925'), + (80071, 887, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'bdzyrkL4', '3426074'), + (80072, 887, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'bdzyrkL4', '3430267'), + (80073, 887, 570, 'maybe', '2021-02-05 03:34:54', '2025-12-17 19:47:50', 'bdzyrkL4', '3435538'), + (80074, 887, 591, 'maybe', '2021-02-08 17:59:46', '2025-12-17 19:47:50', 'bdzyrkL4', '3465880'), + (80075, 887, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'bdzyrkL4', '3468125'), + (80076, 887, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'bdzyrkL4', '3470303'), + (80077, 887, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'bdzyrkL4', '3470305'), + (80078, 887, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'bdzyrkL4', '3470991'), + (80079, 887, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'bdzyrkL4', '3517815'), + (80080, 887, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'bdzyrkL4', '3517816'), + (80081, 887, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'bdzyrkL4', '3523941'), + (80082, 887, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'bdzyrkL4', '3533850'), + (80083, 887, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'bdzyrkL4', '3536632'), + (80084, 887, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'bdzyrkL4', '3536656'), + (80085, 887, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'bdzyrkL4', '3539916'), + (80086, 887, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'bdzyrkL4', '3539917'), + (80087, 887, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'bdzyrkL4', '3539918'), + (80088, 887, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'bdzyrkL4', '3539919'), + (80089, 887, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'bdzyrkL4', '3539920'), + (80090, 887, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'bdzyrkL4', '3539921'), + (80091, 887, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'bdzyrkL4', '3539922'), + (80092, 887, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'bdzyrkL4', '3539923'), + (80093, 887, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'bdzyrkL4', '3539927'), + (80094, 887, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'bdzyrkL4', '3582734'), + (80095, 887, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdzyrkL4', '3583262'), + (80096, 887, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'bdzyrkL4', '3619523'), + (80097, 887, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdzyrkL4', '3661369'), + (80098, 887, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'bdzyrkL4', '3674262'), + (80099, 887, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdzyrkL4', '3677402'), + (80100, 887, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'bdzyrkL4', '3730212'), + (80101, 887, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzyrkL4', '6045684'), + (80102, 915, 4, 'attending', '2020-03-21 19:29:15', '2025-12-17 19:47:58', '6AXQDZ64', '2958046'), + (80103, 915, 5, 'attending', '2020-03-21 19:29:14', '2025-12-17 19:47:58', '6AXQDZ64', '2958047'), + (80104, 915, 9, 'attending', '2020-03-28 21:12:36', '2025-12-17 19:47:56', '6AXQDZ64', '2958052'), + (80105, 915, 10, 'attending', '2020-03-28 21:12:42', '2025-12-17 19:47:56', '6AXQDZ64', '2958053'), + (80106, 915, 29, 'maybe', '2020-03-22 18:22:21', '2025-12-17 19:47:56', '6AXQDZ64', '2961309'), + (80107, 915, 30, 'attending', '2020-03-23 17:16:01', '2025-12-17 19:47:57', '6AXQDZ64', '2961895'), + (80108, 915, 36, 'maybe', '2020-03-29 08:55:11', '2025-12-17 19:47:57', '6AXQDZ64', '2969208'), + (80109, 915, 39, 'maybe', '2020-03-30 23:01:08', '2025-12-17 19:47:57', '6AXQDZ64', '2970637'), + (80110, 915, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', '6AXQDZ64', '2971546'), + (80111, 915, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '6AXQDZ64', '2974534'), + (80112, 915, 46, 'not_attending', '2020-04-06 00:47:13', '2025-12-17 19:47:57', '6AXQDZ64', '2974955'), + (80113, 915, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', '6AXQDZ64', '2975384'), + (80114, 915, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', '6AXQDZ64', '2975385'), + (80115, 915, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', '6AXQDZ64', '2976575'), + (80116, 915, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '6AXQDZ64', '2977343'), + (80117, 915, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '6AXQDZ64', '2977812'), + (80118, 915, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', '6AXQDZ64', '2977931'), + (80119, 915, 74, 'not_attending', '2020-04-11 15:13:34', '2025-12-17 19:47:57', '6AXQDZ64', '2978244'), + (80120, 915, 75, 'not_attending', '2020-04-19 19:31:11', '2025-12-17 19:47:57', '6AXQDZ64', '2978245'), + (80121, 915, 76, 'not_attending', '2020-05-01 17:16:21', '2025-12-17 19:47:57', '6AXQDZ64', '2978246'), + (80122, 915, 77, 'not_attending', '2020-05-04 13:58:20', '2025-12-17 19:47:57', '6AXQDZ64', '2978247'), + (80123, 915, 78, 'not_attending', '2020-05-19 18:49:52', '2025-12-17 19:47:57', '6AXQDZ64', '2978249'), + (80124, 915, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', '6AXQDZ64', '2978250'), + (80125, 915, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', '6AXQDZ64', '2978433'), + (80126, 915, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '6AXQDZ64', '2978438'), + (80127, 915, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '6AXQDZ64', '2980871'), + (80128, 915, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '6AXQDZ64', '2981388'), + (80129, 915, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '6AXQDZ64', '2986743'), + (80130, 915, 104, 'not_attending', '2020-04-24 13:42:22', '2025-12-17 19:47:57', '6AXQDZ64', '2991471'), + (80131, 915, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', '6AXQDZ64', '2993501'), + (80132, 915, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '6AXQDZ64', '2994480'), + (80133, 915, 115, 'not_attending', '2020-05-15 14:42:32', '2025-12-17 19:47:57', '6AXQDZ64', '3001217'), + (80134, 915, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', '6AXQDZ64', '3023063'), + (80135, 915, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '6AXQDZ64', '3034321'), + (80136, 915, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '6AXQDZ64', '3035881'), + (80137, 915, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '6AXQDZ64', '3049983'), + (80138, 915, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '6AXQDZ64', '3058959'), + (80139, 915, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', '6AXQDZ64', '3067093'), + (80140, 915, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '6AXQDZ64', '3075228'), + (80141, 915, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '6AXQDZ64', '3075456'), + (80142, 915, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '6AXQDZ64', '3083791'), + (80143, 915, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '6AXQDZ64', '3085151'), + (80144, 915, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '6AXQDZ64', '3087265'), + (80145, 915, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', '6AXQDZ64', '3087266'), + (80146, 915, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', '6AXQDZ64', '3087267'), + (80147, 915, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', '6AXQDZ64', '3087268'), + (80148, 915, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '6AXQDZ64', '3088653'), + (80149, 915, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '6AXQDZ64', '3106813'), + (80150, 915, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '6AXQDZ64', '3132817'), + (80151, 915, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '6AXQDZ64', '3132820'), + (80152, 915, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '6AXQDZ64', '3155321'), + (80153, 915, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '6AXQDZ64', '3162006'), + (80154, 915, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '6AXQDZ64', '3163442'), + (80155, 915, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '6AXQDZ64', '3172832'), + (80156, 915, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', '6AXQDZ64', '3172833'), + (80157, 915, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '6AXQDZ64', '3172834'), + (80158, 915, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '6AXQDZ64', '3172876'), + (80159, 915, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXQDZ64', '6045684'), + (80160, 916, 21, 'attending', '2020-04-21 23:52:06', '2025-12-17 19:47:57', 'amGX6NqA', '2958065'), + (80161, 916, 57, 'not_attending', '2020-04-27 14:12:02', '2025-12-17 19:47:57', 'amGX6NqA', '2976575'), + (80162, 916, 66, 'maybe', '2020-06-08 18:45:47', '2025-12-17 19:47:58', 'amGX6NqA', '2977135'), + (80163, 916, 72, 'not_attending', '2020-05-07 23:13:47', '2025-12-17 19:47:57', 'amGX6NqA', '2977812'), + (80164, 916, 76, 'not_attending', '2020-05-02 04:05:11', '2025-12-17 19:47:57', 'amGX6NqA', '2978246'), + (80165, 916, 77, 'attending', '2020-05-04 14:03:48', '2025-12-17 19:47:57', 'amGX6NqA', '2978247'), + (80166, 916, 78, 'attending', '2020-05-12 15:29:52', '2025-12-17 19:47:57', 'amGX6NqA', '2978249'), + (80167, 916, 79, 'attending', '2020-05-14 01:19:07', '2025-12-17 19:47:57', 'amGX6NqA', '2978250'), + (80168, 916, 80, 'attending', '2020-05-14 01:19:16', '2025-12-17 19:47:58', 'amGX6NqA', '2978251'), + (80169, 916, 81, 'attending', '2020-05-14 01:19:19', '2025-12-17 19:47:58', 'amGX6NqA', '2978252'), + (80170, 916, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'amGX6NqA', '2978438'), + (80171, 916, 95, 'attending', '2020-04-30 01:38:05', '2025-12-17 19:47:57', 'amGX6NqA', '2987452'), + (80172, 916, 96, 'attending', '2020-05-01 01:30:31', '2025-12-17 19:47:57', 'amGX6NqA', '2987453'), + (80173, 916, 97, 'attending', '2020-05-01 01:28:27', '2025-12-17 19:47:57', 'amGX6NqA', '2987454'), + (80174, 916, 98, 'maybe', '2020-05-21 04:32:22', '2025-12-17 19:47:57', 'amGX6NqA', '2987455'), + (80175, 916, 99, 'attending', '2020-05-02 16:09:03', '2025-12-17 19:47:57', 'amGX6NqA', '2988545'), + (80176, 916, 102, 'attending', '2020-04-26 22:08:11', '2025-12-17 19:47:57', 'amGX6NqA', '2990784'), + (80177, 916, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', 'amGX6NqA', '2991471'), + (80178, 916, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'amGX6NqA', '2993501'), + (80179, 916, 109, 'maybe', '2020-05-13 19:19:41', '2025-12-17 19:47:57', 'amGX6NqA', '2994480'), + (80180, 916, 115, 'attending', '2020-05-11 16:26:11', '2025-12-17 19:47:57', 'amGX6NqA', '3001217'), + (80181, 916, 116, 'not_attending', '2020-05-04 22:48:17', '2025-12-17 19:47:57', 'amGX6NqA', '3006242'), + (80182, 916, 120, 'attending', '2020-05-10 21:57:44', '2025-12-17 19:47:57', 'amGX6NqA', '3018282'), + (80183, 916, 121, 'maybe', '2020-05-26 19:29:06', '2025-12-17 19:47:57', 'amGX6NqA', '3023063'), + (80184, 916, 122, 'maybe', '2020-05-18 16:02:42', '2025-12-17 19:47:57', 'amGX6NqA', '3023491'), + (80185, 916, 123, 'maybe', '2020-05-25 02:48:20', '2025-12-17 19:47:57', 'amGX6NqA', '3023729'), + (80186, 916, 124, 'maybe', '2020-05-16 16:11:57', '2025-12-17 19:47:57', 'amGX6NqA', '3023809'), + (80187, 916, 125, 'maybe', '2020-05-15 18:19:18', '2025-12-17 19:47:57', 'amGX6NqA', '3023987'), + (80188, 916, 126, 'not_attending', '2020-05-25 02:48:06', '2025-12-17 19:47:57', 'amGX6NqA', '3024022'), + (80189, 916, 127, 'attending', '2020-05-17 15:54:08', '2025-12-17 19:47:57', 'amGX6NqA', '3025623'), + (80190, 916, 129, 'maybe', '2020-05-30 16:16:42', '2025-12-17 19:47:58', 'amGX6NqA', '3028743'), + (80191, 916, 130, 'maybe', '2020-05-27 01:51:16', '2025-12-17 19:47:57', 'amGX6NqA', '3028781'), + (80192, 916, 133, 'not_attending', '2020-06-24 21:54:47', '2025-12-17 19:47:58', 'amGX6NqA', '3034321'), + (80193, 916, 134, 'attending', '2020-05-24 03:19:32', '2025-12-17 19:47:57', 'amGX6NqA', '3034367'), + (80194, 916, 135, 'attending', '2020-05-24 03:19:37', '2025-12-17 19:47:57', 'amGX6NqA', '3034368'), + (80195, 916, 136, 'attending', '2020-05-24 20:26:07', '2025-12-17 19:47:57', 'amGX6NqA', '3035881'), + (80196, 916, 137, 'maybe', '2020-05-30 16:16:34', '2025-12-17 19:47:58', 'amGX6NqA', '3042188'), + (80197, 916, 138, 'maybe', '2020-05-29 18:39:20', '2025-12-17 19:47:58', 'amGX6NqA', '3042932'), + (80198, 916, 139, 'maybe', '2020-05-31 04:01:44', '2025-12-17 19:47:58', 'amGX6NqA', '3046190'), + (80199, 916, 140, 'maybe', '2020-05-31 04:05:36', '2025-12-17 19:47:57', 'amGX6NqA', '3046980'), + (80200, 916, 142, 'attending', '2020-05-31 23:36:37', '2025-12-17 19:47:57', 'amGX6NqA', '3049860'), + (80201, 916, 143, 'maybe', '2020-06-07 22:52:15', '2025-12-17 19:47:58', 'amGX6NqA', '3049983'), + (80202, 916, 168, 'attending', '2020-06-06 17:58:32', '2025-12-17 19:47:58', 'amGX6NqA', '3058740'), + (80203, 916, 169, 'attending', '2020-06-06 17:58:27', '2025-12-17 19:47:58', 'amGX6NqA', '3058741'), + (80204, 916, 171, 'attending', '2020-06-12 23:43:16', '2025-12-17 19:47:58', 'amGX6NqA', '3058743'), + (80205, 916, 172, 'attending', '2020-06-07 16:14:00', '2025-12-17 19:47:58', 'amGX6NqA', '3058959'), + (80206, 916, 173, 'maybe', '2020-06-15 01:03:21', '2025-12-17 19:47:58', 'amGX6NqA', '3067093'), + (80207, 916, 174, 'attending', '2020-06-08 18:44:21', '2025-12-17 19:47:58', 'amGX6NqA', '3067927'), + (80208, 916, 175, 'maybe', '2020-06-17 22:30:32', '2025-12-17 19:47:58', 'amGX6NqA', '3068305'), + (80209, 916, 176, 'attending', '2020-06-15 19:42:34', '2025-12-17 19:47:58', 'amGX6NqA', '3073192'), + (80210, 916, 177, 'attending', '2020-06-14 18:00:45', '2025-12-17 19:47:58', 'amGX6NqA', '3073193'), + (80211, 916, 178, 'attending', '2020-06-14 18:00:39', '2025-12-17 19:47:58', 'amGX6NqA', '3073195'), + (80212, 916, 179, 'attending', '2020-06-14 18:00:42', '2025-12-17 19:47:58', 'amGX6NqA', '3073687'), + (80213, 916, 181, 'attending', '2020-06-16 14:19:18', '2025-12-17 19:47:58', 'amGX6NqA', '3074513'), + (80214, 916, 182, 'not_attending', '2020-06-23 20:54:42', '2025-12-17 19:47:55', 'amGX6NqA', '3074514'), + (80215, 916, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'amGX6NqA', '3075228'), + (80216, 916, 185, 'attending', '2020-06-16 02:36:54', '2025-12-17 19:47:58', 'amGX6NqA', '3075456'), + (80217, 916, 186, 'maybe', '2020-06-22 02:59:09', '2025-12-17 19:47:55', 'amGX6NqA', '3083791'), + (80218, 916, 187, 'not_attending', '2020-06-23 20:54:47', '2025-12-17 19:47:55', 'amGX6NqA', '3085151'), + (80219, 916, 188, 'maybe', '2020-06-19 23:10:42', '2025-12-17 19:47:58', 'amGX6NqA', '3086646'), + (80220, 916, 191, 'attending', '2020-07-07 17:16:26', '2025-12-17 19:47:55', 'amGX6NqA', '3087259'), + (80221, 916, 192, 'attending', '2020-07-13 19:11:46', '2025-12-17 19:47:55', 'amGX6NqA', '3087260'), + (80222, 916, 193, 'attending', '2020-07-19 18:34:50', '2025-12-17 19:47:55', 'amGX6NqA', '3087261'), + (80223, 916, 194, 'attending', '2020-07-29 03:24:43', '2025-12-17 19:47:56', 'amGX6NqA', '3087262'), + (80224, 916, 195, 'not_attending', '2020-08-06 18:30:56', '2025-12-17 19:47:56', 'amGX6NqA', '3087264'), + (80225, 916, 196, 'attending', '2020-08-10 04:08:28', '2025-12-17 19:47:56', 'amGX6NqA', '3087265'), + (80226, 916, 197, 'not_attending', '2020-08-21 14:48:46', '2025-12-17 19:47:56', 'amGX6NqA', '3087266'), + (80227, 916, 198, 'attending', '2020-08-27 02:22:25', '2025-12-17 19:47:56', 'amGX6NqA', '3087267'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (80228, 916, 199, 'attending', '2020-08-31 23:50:01', '2025-12-17 19:47:56', 'amGX6NqA', '3087268'), + (80229, 916, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'amGX6NqA', '3088653'), + (80230, 916, 202, 'maybe', '2020-07-05 18:48:19', '2025-12-17 19:47:55', 'amGX6NqA', '3090353'), + (80231, 916, 203, 'attending', '2020-06-22 14:43:03', '2025-12-17 19:47:58', 'amGX6NqA', '3091624'), + (80232, 916, 209, 'attending', '2020-06-30 00:15:00', '2025-12-17 19:47:55', 'amGX6NqA', '3106813'), + (80233, 916, 212, 'maybe', '2020-07-12 17:08:50', '2025-12-17 19:47:55', 'amGX6NqA', '3118517'), + (80234, 916, 217, 'attending', '2020-07-08 02:46:20', '2025-12-17 19:47:55', 'amGX6NqA', '3126684'), + (80235, 916, 223, 'attending', '2020-09-10 16:14:05', '2025-12-17 19:47:56', 'amGX6NqA', '3129980'), + (80236, 916, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'amGX6NqA', '3132817'), + (80237, 916, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'amGX6NqA', '3132820'), + (80238, 916, 228, 'maybe', '2020-07-14 14:12:42', '2025-12-17 19:47:55', 'amGX6NqA', '3132821'), + (80239, 916, 249, 'attending', '2020-11-18 00:46:02', '2025-12-17 19:47:54', 'amGX6NqA', '3149480'), + (80240, 916, 270, 'attending', '2020-08-08 02:08:12', '2025-12-17 19:47:56', 'amGX6NqA', '3154457'), + (80241, 916, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'amGX6NqA', '3155321'), + (80242, 916, 273, 'maybe', '2020-08-06 21:10:16', '2025-12-17 19:47:56', 'amGX6NqA', '3162006'), + (80243, 916, 275, 'attending', '2020-08-03 20:37:10', '2025-12-17 19:47:56', 'amGX6NqA', '3163405'), + (80244, 916, 277, 'attending', '2020-08-03 21:53:34', '2025-12-17 19:47:56', 'amGX6NqA', '3163442'), + (80245, 916, 280, 'maybe', '2020-08-08 21:48:13', '2025-12-17 19:47:56', 'amGX6NqA', '3166942'), + (80246, 916, 283, 'not_attending', '2020-08-08 00:12:00', '2025-12-17 19:47:56', 'amGX6NqA', '3169555'), + (80247, 916, 284, 'attending', '2020-08-06 23:06:39', '2025-12-17 19:47:56', 'amGX6NqA', '3169556'), + (80248, 916, 285, 'attending', '2020-08-25 00:08:01', '2025-12-17 19:47:56', 'amGX6NqA', '3170245'), + (80249, 916, 286, 'attending', '2020-08-27 00:10:34', '2025-12-17 19:47:56', 'amGX6NqA', '3170246'), + (80250, 916, 287, 'maybe', '2020-08-28 15:33:56', '2025-12-17 19:47:56', 'amGX6NqA', '3170247'), + (80251, 916, 288, 'maybe', '2020-09-02 22:20:00', '2025-12-17 19:47:56', 'amGX6NqA', '3170249'), + (80252, 916, 289, 'maybe', '2020-09-04 03:36:37', '2025-12-17 19:47:56', 'amGX6NqA', '3170250'), + (80253, 916, 291, 'maybe', '2020-09-10 21:26:25', '2025-12-17 19:47:56', 'amGX6NqA', '3170252'), + (80254, 916, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'amGX6NqA', '3172832'), + (80255, 916, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'amGX6NqA', '3172833'), + (80256, 916, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'amGX6NqA', '3172834'), + (80257, 916, 296, 'maybe', '2020-09-06 17:54:33', '2025-12-17 19:47:56', 'amGX6NqA', '3172876'), + (80258, 916, 301, 'attending', '2020-08-28 00:03:08', '2025-12-17 19:47:56', 'amGX6NqA', '3178027'), + (80259, 916, 302, 'attending', '2020-08-14 17:09:19', '2025-12-17 19:47:56', 'amGX6NqA', '3178028'), + (80260, 916, 307, 'attending', '2020-08-17 15:44:58', '2025-12-17 19:47:56', 'amGX6NqA', '3182590'), + (80261, 916, 308, 'not_attending', '2020-09-01 12:54:33', '2025-12-17 19:47:56', 'amGX6NqA', '3183341'), + (80262, 916, 311, 'attending', '2020-09-18 15:01:38', '2025-12-17 19:47:56', 'amGX6NqA', '3186057'), + (80263, 916, 313, 'not_attending', '2020-08-23 22:09:21', '2025-12-17 19:47:56', 'amGX6NqA', '3188127'), + (80264, 916, 316, 'attending', '2020-08-26 02:07:24', '2025-12-17 19:47:56', 'amGX6NqA', '3191519'), + (80265, 916, 317, 'maybe', '2020-08-27 02:22:07', '2025-12-17 19:47:56', 'amGX6NqA', '3191735'), + (80266, 916, 318, 'attending', '2020-09-01 23:53:57', '2025-12-17 19:47:56', 'amGX6NqA', '3193885'), + (80267, 916, 319, 'attending', '2020-08-31 19:56:37', '2025-12-17 19:47:56', 'amGX6NqA', '3194179'), + (80268, 916, 320, 'attending', '2020-08-30 03:02:20', '2025-12-17 19:47:56', 'amGX6NqA', '3195552'), + (80269, 916, 323, 'maybe', '2020-09-17 15:37:03', '2025-12-17 19:47:56', 'amGX6NqA', '3197081'), + (80270, 916, 324, 'attending', '2020-09-18 22:36:42', '2025-12-17 19:47:56', 'amGX6NqA', '3197082'), + (80271, 916, 325, 'attending', '2020-09-22 05:06:39', '2025-12-17 19:47:51', 'amGX6NqA', '3197083'), + (80272, 916, 326, 'maybe', '2020-09-25 23:15:21', '2025-12-17 19:47:52', 'amGX6NqA', '3197084'), + (80273, 916, 331, 'maybe', '2020-09-04 03:37:22', '2025-12-17 19:47:56', 'amGX6NqA', '3198871'), + (80274, 916, 335, 'maybe', '2020-09-02 15:45:08', '2025-12-17 19:47:56', 'amGX6NqA', '3200209'), + (80275, 916, 336, 'maybe', '2020-09-13 03:48:05', '2025-12-17 19:47:56', 'amGX6NqA', '3200495'), + (80276, 916, 337, 'attending', '2020-09-04 02:39:19', '2025-12-17 19:47:56', 'amGX6NqA', '3201771'), + (80277, 916, 340, 'maybe', '2020-09-15 16:38:53', '2025-12-17 19:47:56', 'amGX6NqA', '3204470'), + (80278, 916, 343, 'maybe', '2020-09-21 23:28:13', '2025-12-17 19:47:56', 'amGX6NqA', '3206759'), + (80279, 916, 354, 'maybe', '2020-09-13 21:33:41', '2025-12-17 19:47:56', 'amGX6NqA', '3212570'), + (80280, 916, 358, 'attending', '2020-09-19 18:45:28', '2025-12-17 19:47:56', 'amGX6NqA', '3212579'), + (80281, 916, 360, 'maybe', '2020-09-15 17:01:41', '2025-12-17 19:47:56', 'amGX6NqA', '3212671'), + (80282, 916, 362, 'not_attending', '2020-09-26 01:33:47', '2025-12-17 19:47:52', 'amGX6NqA', '3214207'), + (80283, 916, 363, 'maybe', '2020-09-26 03:43:07', '2025-12-17 19:47:52', 'amGX6NqA', '3217037'), + (80284, 916, 364, 'maybe', '2020-09-17 03:42:13', '2025-12-17 19:47:56', 'amGX6NqA', '3217106'), + (80285, 916, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'amGX6NqA', '3218510'), + (80286, 916, 368, 'not_attending', '2020-09-29 21:01:53', '2025-12-17 19:47:52', 'amGX6NqA', '3221403'), + (80287, 916, 374, 'attending', '2020-10-26 23:31:37', '2025-12-17 19:47:53', 'amGX6NqA', '3221415'), + (80288, 916, 377, 'maybe', '2020-10-29 18:15:12', '2025-12-17 19:47:53', 'amGX6NqA', '3222828'), + (80289, 916, 385, 'attending', '2020-10-01 02:30:44', '2025-12-17 19:47:52', 'amGX6NqA', '3228698'), + (80290, 916, 386, 'attending', '2020-10-10 15:21:28', '2025-12-17 19:47:52', 'amGX6NqA', '3228699'), + (80291, 916, 387, 'not_attending', '2020-10-13 03:22:59', '2025-12-17 19:47:52', 'amGX6NqA', '3228700'), + (80292, 916, 388, 'attending', '2020-10-22 22:34:03', '2025-12-17 19:47:52', 'amGX6NqA', '3228701'), + (80293, 916, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'amGX6NqA', '3245751'), + (80294, 916, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'amGX6NqA', '3250232'), + (80295, 916, 427, 'maybe', '2020-10-30 00:52:56', '2025-12-17 19:47:53', 'amGX6NqA', '3250233'), + (80296, 916, 432, 'maybe', '2020-11-04 18:17:00', '2025-12-17 19:47:53', 'amGX6NqA', '3254416'), + (80297, 916, 438, 'maybe', '2020-10-31 17:15:11', '2025-12-17 19:47:53', 'amGX6NqA', '3256163'), + (80298, 916, 440, 'maybe', '2020-11-07 23:16:08', '2025-12-17 19:47:53', 'amGX6NqA', '3256168'), + (80299, 916, 441, 'not_attending', '2020-11-14 16:17:01', '2025-12-17 19:47:54', 'amGX6NqA', '3256169'), + (80300, 916, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'amGX6NqA', '3263578'), + (80301, 916, 446, 'attending', '2020-10-27 22:55:59', '2025-12-17 19:47:53', 'amGX6NqA', '3267163'), + (80302, 916, 451, 'maybe', '2020-11-02 02:00:27', '2025-12-17 19:47:53', 'amGX6NqA', '3272186'), + (80303, 916, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'amGX6NqA', '3276428'), + (80304, 916, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'amGX6NqA', '3281467'), + (80305, 916, 462, 'not_attending', '2020-11-11 22:50:57', '2025-12-17 19:47:54', 'amGX6NqA', '3281470'), + (80306, 916, 464, 'maybe', '2020-11-16 17:53:56', '2025-12-17 19:47:54', 'amGX6NqA', '3281554'), + (80307, 916, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'amGX6NqA', '3281829'), + (80308, 916, 467, 'maybe', '2020-11-12 22:50:10', '2025-12-17 19:47:54', 'amGX6NqA', '3282756'), + (80309, 916, 468, 'attending', '2020-11-21 17:14:12', '2025-12-17 19:47:54', 'amGX6NqA', '3285413'), + (80310, 916, 469, 'attending', '2020-11-28 23:01:27', '2025-12-17 19:47:54', 'amGX6NqA', '3285414'), + (80311, 916, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'amGX6NqA', '3297764'), + (80312, 916, 487, 'maybe', '2020-11-25 23:49:22', '2025-12-17 19:47:54', 'amGX6NqA', '3311122'), + (80313, 916, 493, 'not_attending', '2020-12-05 23:39:46', '2025-12-17 19:47:54', 'amGX6NqA', '3313856'), + (80314, 916, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'amGX6NqA', '3314909'), + (80315, 916, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'amGX6NqA', '3314964'), + (80316, 916, 502, 'not_attending', '2020-12-12 15:44:37', '2025-12-17 19:47:55', 'amGX6NqA', '3323365'), + (80317, 916, 513, 'not_attending', '2020-12-19 23:56:56', '2025-12-17 19:47:55', 'amGX6NqA', '3329383'), + (80318, 916, 526, 'maybe', '2021-01-02 20:42:25', '2025-12-17 19:47:48', 'amGX6NqA', '3351539'), + (80319, 916, 536, 'attending', '2021-01-08 21:05:05', '2025-12-17 19:47:48', 'amGX6NqA', '3386848'), + (80320, 916, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'amGX6NqA', '3389527'), + (80321, 916, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'amGX6NqA', '3396499'), + (80322, 916, 548, 'not_attending', '2021-01-17 00:26:56', '2025-12-17 19:47:48', 'amGX6NqA', '3403650'), + (80323, 916, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'amGX6NqA', '3406988'), + (80324, 916, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'amGX6NqA', '3408338'), + (80325, 916, 555, 'maybe', '2021-01-23 20:05:21', '2025-12-17 19:47:49', 'amGX6NqA', '3416576'), + (80326, 916, 568, 'attending', '2021-01-29 01:13:13', '2025-12-17 19:47:50', 'amGX6NqA', '3430267'), + (80327, 916, 579, 'not_attending', '2021-02-06 22:39:04', '2025-12-17 19:47:50', 'amGX6NqA', '3440978'), + (80328, 916, 602, 'not_attending', '2021-02-13 22:52:49', '2025-12-17 19:47:50', 'amGX6NqA', '3470303'), + (80329, 916, 603, 'maybe', '2021-02-20 20:59:32', '2025-12-17 19:47:50', 'amGX6NqA', '3470304'), + (80330, 916, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'amGX6NqA', '3470305'), + (80331, 916, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'amGX6NqA', '3470991'), + (80332, 916, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'amGX6NqA', '3517815'), + (80333, 916, 622, 'attending', '2021-03-11 15:00:04', '2025-12-17 19:47:51', 'amGX6NqA', '3517816'), + (80334, 916, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'amGX6NqA', '3523941'), + (80335, 916, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'amGX6NqA', '3533850'), + (80336, 916, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'amGX6NqA', '3536632'), + (80337, 916, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'amGX6NqA', '3536656'), + (80338, 916, 641, 'attending', '2021-04-02 16:31:44', '2025-12-17 19:47:44', 'amGX6NqA', '3539916'), + (80339, 916, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'amGX6NqA', '3539917'), + (80340, 916, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'amGX6NqA', '3539918'), + (80341, 916, 644, 'not_attending', '2021-04-24 16:09:07', '2025-12-17 19:47:46', 'amGX6NqA', '3539919'), + (80342, 916, 645, 'not_attending', '2021-05-08 21:10:30', '2025-12-17 19:47:46', 'amGX6NqA', '3539920'), + (80343, 916, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'amGX6NqA', '3539921'), + (80344, 916, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'amGX6NqA', '3539922'), + (80345, 916, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'amGX6NqA', '3539923'), + (80346, 916, 649, 'not_attending', '2021-03-20 22:46:52', '2025-12-17 19:47:51', 'amGX6NqA', '3539927'), + (80347, 916, 650, 'not_attending', '2021-03-27 16:26:16', '2025-12-17 19:47:44', 'amGX6NqA', '3539928'), + (80348, 916, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'amGX6NqA', '3582734'), + (80349, 916, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'amGX6NqA', '3583262'), + (80350, 916, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'amGX6NqA', '3619523'), + (80351, 916, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'amGX6NqA', '3661369'), + (80352, 916, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'amGX6NqA', '3674262'), + (80353, 916, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'amGX6NqA', '3677402'), + (80354, 916, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'amGX6NqA', '3730212'), + (80355, 916, 777, 'not_attending', '2021-05-01 16:11:29', '2025-12-17 19:47:46', 'amGX6NqA', '3746248'), + (80356, 916, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'amGX6NqA', '3793156'), + (80357, 916, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amGX6NqA', '3974109'), + (80358, 916, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGX6NqA', '3975311'), + (80359, 916, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amGX6NqA', '3975312'), + (80360, 916, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amGX6NqA', '3994992'), + (80361, 916, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGX6NqA', '4014338'), + (80362, 916, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amGX6NqA', '4021848'), + (80363, 916, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amGX6NqA', '4136744'), + (80364, 916, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'amGX6NqA', '4136937'), + (80365, 916, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'amGX6NqA', '4136938'), + (80366, 916, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amGX6NqA', '4136947'), + (80367, 916, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGX6NqA', '4210314'), + (80368, 916, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGX6NqA', '4225444'), + (80369, 916, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amGX6NqA', '4239259'), + (80370, 916, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGX6NqA', '4240316'), + (80371, 916, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'amGX6NqA', '4240317'), + (80372, 916, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'amGX6NqA', '4240318'), + (80373, 916, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'amGX6NqA', '4240320'), + (80374, 916, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amGX6NqA', '4250163'), + (80375, 916, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGX6NqA', '4275957'), + (80376, 916, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amGX6NqA', '4277819'), + (80377, 916, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amGX6NqA', '4301723'), + (80378, 916, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'amGX6NqA', '4302093'), + (80379, 916, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amGX6NqA', '4304151'), + (80380, 916, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'amGX6NqA', '4366186'), + (80381, 916, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'amGX6NqA', '4366187'), + (80382, 916, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGX6NqA', '6045684'), + (80383, 917, 2646, 'not_attending', '2024-05-20 19:29:25', '2025-12-17 19:46:35', 'dJQn8Wq4', '7281768'), + (80384, 918, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '4WBMYObA', '7074364'), + (80385, 918, 2647, 'attending', '2024-06-09 19:16:31', '2025-12-17 19:46:28', '4WBMYObA', '7282057'), + (80386, 918, 2661, 'not_attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', '4WBMYObA', '7302674'), + (80387, 918, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '4WBMYObA', '7324073'), + (80388, 918, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '4WBMYObA', '7324074'), + (80389, 918, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '4WBMYObA', '7324075'), + (80390, 918, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '4WBMYObA', '7324078'), + (80391, 918, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '4WBMYObA', '7324082'), + (80392, 918, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '4WBMYObA', '7331457'), + (80393, 918, 2726, 'attending', '2024-06-20 22:12:09', '2025-12-17 19:46:29', '4WBMYObA', '7332853'), + (80394, 918, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '4WBMYObA', '7356752'), + (80395, 918, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', '4WBMYObA', '7363643'), + (80396, 918, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '4WBMYObA', '7368606'), + (80397, 918, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '4WBMYObA', '7397462'), + (80398, 918, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '4WBMYObA', '7424275'), + (80399, 918, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '4WBMYObA', '7424276'), + (80400, 918, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '4WBMYObA', '7432751'), + (80401, 918, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '4WBMYObA', '7432752'), + (80402, 918, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '4WBMYObA', '7432753'), + (80403, 918, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '4WBMYObA', '7432754'), + (80404, 918, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '4WBMYObA', '7432755'), + (80405, 918, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '4WBMYObA', '7432756'), + (80406, 918, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '4WBMYObA', '7432758'), + (80407, 918, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '4WBMYObA', '7432759'), + (80408, 918, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '4WBMYObA', '7433834'), + (80409, 918, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '4WBMYObA', '7470197'), + (80410, 918, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '4WBMYObA', '7685613'), + (80411, 918, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '4WBMYObA', '7688194'), + (80412, 918, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '4WBMYObA', '7688196'), + (80413, 918, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '4WBMYObA', '7688289'), + (80414, 919, 2994, 'not_attending', '2025-03-05 05:48:24', '2025-12-17 19:46:18', 'dlnBLwYA', '7842905'), + (80415, 919, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dlnBLwYA', '7860683'), + (80416, 919, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dlnBLwYA', '7860684'), + (80417, 919, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dlnBLwYA', '7866095'), + (80418, 919, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dlnBLwYA', '7869170'), + (80419, 919, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dlnBLwYA', '7869188'), + (80420, 919, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dlnBLwYA', '7869201'), + (80421, 919, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', 'dlnBLwYA', '7872088'), + (80422, 919, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dlnBLwYA', '7877465'), + (80423, 919, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dlnBLwYA', '7878570'), + (80424, 919, 3037, 'not_attending', '2025-03-13 16:53:03', '2025-12-17 19:46:19', 'dlnBLwYA', '7880977'), + (80425, 919, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dlnBLwYA', '7888250'), + (80426, 919, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dlnBLwYA', '7903856'), + (80427, 919, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dlnBLwYA', '8347770'), + (80428, 919, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dlnBLwYA', '8349164'), + (80429, 919, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dlnBLwYA', '8349545'), + (80430, 919, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dlnBLwYA', '8353584'), + (80431, 920, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '6AXqWOQ4', '3539921'), + (80432, 920, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '6AXqWOQ4', '3539922'), + (80433, 920, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '6AXqWOQ4', '3539923'), + (80434, 920, 812, 'maybe', '2021-05-17 17:18:06', '2025-12-17 19:47:46', '6AXqWOQ4', '3808031'), + (80435, 920, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '6AXqWOQ4', '3974109'), + (80436, 920, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '6AXqWOQ4', '3975311'), + (80437, 920, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '6AXqWOQ4', '3975312'), + (80438, 920, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '6AXqWOQ4', '3994992'), + (80439, 920, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '6AXqWOQ4', '4014338'), + (80440, 920, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '6AXqWOQ4', '4021848'), + (80441, 920, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '6AXqWOQ4', '4136744'), + (80442, 920, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '6AXqWOQ4', '4136937'), + (80443, 920, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '6AXqWOQ4', '4136938'), + (80444, 920, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '6AXqWOQ4', '4136947'), + (80445, 920, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '6AXqWOQ4', '4210314'), + (80446, 920, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '6AXqWOQ4', '4225444'), + (80447, 920, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '6AXqWOQ4', '4239259'), + (80448, 920, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '6AXqWOQ4', '4240316'), + (80449, 920, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '6AXqWOQ4', '4240317'), + (80450, 920, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '6AXqWOQ4', '4240318'), + (80451, 920, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '6AXqWOQ4', '4240320'), + (80452, 920, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '6AXqWOQ4', '4250163'), + (80453, 920, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '6AXqWOQ4', '4275957'), + (80454, 920, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '6AXqWOQ4', '4277819'), + (80455, 920, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '6AXqWOQ4', '4301723'), + (80456, 920, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '6AXqWOQ4', '4302093'), + (80457, 920, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '6AXqWOQ4', '4304151'), + (80458, 920, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '6AXqWOQ4', '4366186'), + (80459, 920, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '6AXqWOQ4', '4366187'), + (80460, 920, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXqWOQ4', '6045684'), + (80461, 921, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41olEapm', '6045684'), + (80462, 922, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'pmbxKLg4', '3236452'), + (80463, 922, 648, 'not_attending', '2021-05-26 01:43:55', '2025-12-17 19:47:47', 'pmbxKLg4', '3539923'), + (80464, 922, 789, 'not_attending', '2021-05-29 22:06:14', '2025-12-17 19:47:47', 'pmbxKLg4', '3785818'), + (80465, 922, 815, 'attending', '2021-05-28 22:17:35', '2025-12-17 19:47:47', 'pmbxKLg4', '3818136'), + (80466, 922, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbxKLg4', '3974109'), + (80467, 922, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmbxKLg4', '3975311'), + (80468, 922, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmbxKLg4', '3975312'), + (80469, 922, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbxKLg4', '3994992'), + (80470, 922, 841, 'attending', '2021-06-15 23:02:19', '2025-12-17 19:47:48', 'pmbxKLg4', '4007434'), + (80471, 922, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmbxKLg4', '4014338'), + (80472, 922, 866, 'attending', '2021-06-13 12:25:34', '2025-12-17 19:47:38', 'pmbxKLg4', '4020424'), + (80473, 922, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmbxKLg4', '4021848'), + (80474, 922, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmbxKLg4', '4136744'), + (80475, 922, 870, 'maybe', '2021-07-03 17:25:25', '2025-12-17 19:47:39', 'pmbxKLg4', '4136937'), + (80476, 922, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmbxKLg4', '4136938'), + (80477, 922, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbxKLg4', '4136947'), + (80478, 922, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbxKLg4', '4210314'), + (80479, 922, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbxKLg4', '4225444'), + (80480, 922, 890, 'attending', '2021-06-28 00:19:27', '2025-12-17 19:47:38', 'pmbxKLg4', '4228666'), + (80481, 922, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbxKLg4', '4239259'), + (80482, 922, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmbxKLg4', '4240316'), + (80483, 922, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbxKLg4', '4240317'), + (80484, 922, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbxKLg4', '4240318'), + (80485, 922, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbxKLg4', '4240320'), + (80486, 922, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbxKLg4', '4250163'), + (80487, 922, 916, 'not_attending', '2021-07-22 13:07:18', '2025-12-17 19:47:40', 'pmbxKLg4', '4273772'), + (80488, 922, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmbxKLg4', '4275957'), + (80489, 922, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbxKLg4', '4277819'), + (80490, 922, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbxKLg4', '4301723'), + (80491, 922, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbxKLg4', '4302093'), + (80492, 922, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbxKLg4', '4304151'), + (80493, 922, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbxKLg4', '4356801'), + (80494, 922, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbxKLg4', '4366186'), + (80495, 922, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbxKLg4', '4366187'), + (80496, 922, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbxKLg4', '4420735'), + (80497, 922, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbxKLg4', '4420738'), + (80498, 922, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbxKLg4', '4420739'), + (80499, 922, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbxKLg4', '4420741'), + (80500, 922, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbxKLg4', '4420744'), + (80501, 922, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbxKLg4', '4420747'), + (80502, 922, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbxKLg4', '4420748'), + (80503, 922, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbxKLg4', '4420749'), + (80504, 922, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbxKLg4', '4461883'), + (80505, 922, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbxKLg4', '4508342'), + (80506, 922, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbxKLg4', '4568602'), + (80507, 922, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbxKLg4', '6045684'), + (80508, 923, 1517, 'maybe', '2022-08-24 03:36:33', '2025-12-17 19:47:23', 'dOj68D54', '5441130'), + (80509, 923, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dOj68D54', '5441131'), + (80510, 923, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dOj68D54', '5441132'), + (80511, 923, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dOj68D54', '5505059'), + (80512, 923, 1609, 'attending', '2022-08-25 01:38:41', '2025-12-17 19:47:23', 'dOj68D54', '5506590'), + (80513, 923, 1610, 'not_attending', '2022-08-25 01:39:43', '2025-12-17 19:47:23', 'dOj68D54', '5506595'), + (80514, 923, 1614, 'attending', '2022-08-23 19:14:56', '2025-12-17 19:47:23', 'dOj68D54', '5508371'), + (80515, 923, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dOj68D54', '5509055'), + (80516, 923, 1619, 'attending', '2022-08-24 03:35:55', '2025-12-17 19:47:23', 'dOj68D54', '5512862'), + (80517, 923, 1624, 'not_attending', '2022-08-24 04:07:31', '2025-12-17 19:47:24', 'dOj68D54', '5513985'), + (80518, 923, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'dOj68D54', '5519981'), + (80519, 923, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dOj68D54', '5522550'), + (80520, 923, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dOj68D54', '5534683'), + (80521, 923, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dOj68D54', '5537735'), + (80522, 923, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dOj68D54', '5540859'), + (80523, 923, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dOj68D54', '5546619'), + (80524, 923, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dOj68D54', '5555245'), + (80525, 923, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dOj68D54', '5557747'), + (80526, 923, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dOj68D54', '5560255'), + (80527, 923, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dOj68D54', '5562906'), + (80528, 923, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dOj68D54', '5600604'), + (80529, 923, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dOj68D54', '5605544'), + (80530, 923, 1699, 'not_attending', '2022-09-26 12:18:55', '2025-12-17 19:47:12', 'dOj68D54', '5606737'), + (80531, 923, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dOj68D54', '5630960'), + (80532, 923, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dOj68D54', '5630961'), + (80533, 923, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dOj68D54', '5630962'), + (80534, 923, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOj68D54', '5630966'), + (80535, 923, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOj68D54', '5630967'), + (80536, 923, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOj68D54', '5630968'), + (80537, 923, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dOj68D54', '5635406'), + (80538, 923, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dOj68D54', '5638765'), + (80539, 923, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dOj68D54', '5640097'), + (80540, 923, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dOj68D54', '5640843'), + (80541, 923, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dOj68D54', '5641521'), + (80542, 923, 1744, 'attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOj68D54', '5642818'), + (80543, 923, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dOj68D54', '5652395'), + (80544, 923, 1757, 'attending', '2022-10-31 16:44:13', '2025-12-17 19:47:15', 'dOj68D54', '5668974'), + (80545, 923, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOj68D54', '5670445'), + (80546, 923, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dOj68D54', '5671637'), + (80547, 923, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dOj68D54', '5672329'), + (80548, 923, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dOj68D54', '5674057'), + (80549, 923, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dOj68D54', '5674060'), + (80550, 923, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dOj68D54', '5677461'), + (80551, 923, 1780, 'attending', '2022-11-10 17:50:26', '2025-12-17 19:47:15', 'dOj68D54', '5696082'), + (80552, 923, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOj68D54', '5698046'), + (80553, 923, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dOj68D54', '5699760'), + (80554, 923, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOj68D54', '5741601'), + (80555, 923, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOj68D54', '5763458'), + (80556, 923, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOj68D54', '5774172'), + (80557, 923, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dOj68D54', '5818247'), + (80558, 923, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOj68D54', '5819471'), + (80559, 923, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOj68D54', '5827739'), + (80560, 923, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOj68D54', '5844306'), + (80561, 923, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOj68D54', '5850159'), + (80562, 923, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOj68D54', '5858999'), + (80563, 923, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOj68D54', '5871984'), + (80564, 923, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOj68D54', '5876354'), + (80565, 923, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOj68D54', '5880939'), + (80566, 923, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOj68D54', '5887890'), + (80567, 923, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOj68D54', '5888598'), + (80568, 923, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOj68D54', '5893260'), + (80569, 923, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOj68D54', '6045684'), + (80570, 924, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mq1pqQXm', '4736497'), + (80571, 924, 1177, 'attending', '2022-02-27 01:05:16', '2025-12-17 19:47:32', 'mq1pqQXm', '4736499'), + (80572, 924, 1178, 'attending', '2022-01-30 01:10:05', '2025-12-17 19:47:32', 'mq1pqQXm', '4736500'), + (80573, 924, 1179, 'attending', '2022-02-19 15:51:59', '2025-12-17 19:47:32', 'mq1pqQXm', '4736501'), + (80574, 924, 1181, 'attending', '2022-03-06 01:08:34', '2025-12-17 19:47:33', 'mq1pqQXm', '4736503'), + (80575, 924, 1182, 'attending', '2022-03-10 17:21:32', '2025-12-17 19:47:33', 'mq1pqQXm', '4736504'), + (80576, 924, 1222, 'attending', '2022-02-16 23:23:23', '2025-12-17 19:47:32', 'mq1pqQXm', '5015628'), + (80577, 924, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mq1pqQXm', '5038850'), + (80578, 924, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mq1pqQXm', '5045826'), + (80579, 924, 1238, 'attending', '2022-02-21 18:00:00', '2025-12-17 19:47:32', 'mq1pqQXm', '5052236'), + (80580, 924, 1239, 'attending', '2022-03-03 01:00:37', '2025-12-17 19:47:33', 'mq1pqQXm', '5052238'), + (80581, 924, 1240, 'attending', '2022-03-10 17:37:22', '2025-12-17 19:47:33', 'mq1pqQXm', '5052239'), + (80582, 924, 1241, 'attending', '2022-03-20 15:02:59', '2025-12-17 19:47:25', 'mq1pqQXm', '5052240'), + (80583, 924, 1243, 'attending', '2022-03-06 20:49:55', '2025-12-17 19:47:33', 'mq1pqQXm', '5058336'), + (80584, 924, 1249, 'attending', '2022-03-07 21:16:21', '2025-12-17 19:47:33', 'mq1pqQXm', '5068530'), + (80585, 924, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mq1pqQXm', '5132533'), + (80586, 924, 1265, 'attending', '2022-03-10 17:21:24', '2025-12-17 19:47:33', 'mq1pqQXm', '5160862'), + (80587, 924, 1266, 'attending', '2022-03-10 17:37:10', '2025-12-17 19:47:33', 'mq1pqQXm', '5166407'), + (80588, 924, 1267, 'attending', '2022-03-17 15:05:49', '2025-12-17 19:47:25', 'mq1pqQXm', '5169578'), + (80589, 924, 1269, 'attending', '2022-03-18 02:59:21', '2025-12-17 19:47:25', 'mq1pqQXm', '5179439'), + (80590, 924, 1270, 'attending', '2022-03-15 19:05:26', '2025-12-17 19:47:25', 'mq1pqQXm', '5181277'), + (80591, 924, 1271, 'attending', '2022-03-18 02:59:12', '2025-12-17 19:47:25', 'mq1pqQXm', '5181648'), + (80592, 924, 1272, 'attending', '2022-03-16 01:13:09', '2025-12-17 19:47:25', 'mq1pqQXm', '5186582'), + (80593, 924, 1273, 'attending', '2022-03-20 15:03:02', '2025-12-17 19:47:25', 'mq1pqQXm', '5186583'), + (80594, 924, 1274, 'attending', '2022-04-01 16:01:20', '2025-12-17 19:47:26', 'mq1pqQXm', '5186585'), + (80595, 924, 1280, 'attending', '2022-03-17 15:05:38', '2025-12-17 19:47:25', 'mq1pqQXm', '5189749'), + (80596, 924, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mq1pqQXm', '5190437'), + (80597, 924, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'mq1pqQXm', '5195095'), + (80598, 924, 1291, 'not_attending', '2022-03-25 17:16:26', '2025-12-17 19:47:25', 'mq1pqQXm', '5200458'), + (80599, 924, 1294, 'attending', '2022-04-01 16:01:29', '2025-12-17 19:47:26', 'mq1pqQXm', '5214686'), + (80600, 924, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mq1pqQXm', '5215989'), + (80601, 924, 1302, 'attending', '2022-04-07 18:17:38', '2025-12-17 19:47:27', 'mq1pqQXm', '5220867'), + (80602, 924, 1304, 'attending', '2022-04-04 22:02:49', '2025-12-17 19:47:26', 'mq1pqQXm', '5223468'), + (80603, 924, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'mq1pqQXm', '5223686'), + (80604, 924, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'mq1pqQXm', '5227432'), + (80605, 924, 1337, 'attending', '2022-04-19 23:18:30', '2025-12-17 19:47:27', 'mq1pqQXm', '5245036'), + (80606, 924, 1346, 'attending', '2022-04-22 18:32:40', '2025-12-17 19:47:27', 'mq1pqQXm', '5247467'), + (80607, 924, 1360, 'attending', '2022-04-26 23:42:19', '2025-12-17 19:47:27', 'mq1pqQXm', '5260197'), + (80608, 924, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'mq1pqQXm', '5260800'), + (80609, 924, 1371, 'attending', '2022-04-27 19:00:03', '2025-12-17 19:47:27', 'mq1pqQXm', '5263784'), + (80610, 924, 1372, 'attending', '2022-05-03 03:52:43', '2025-12-17 19:47:28', 'mq1pqQXm', '5264352'), + (80611, 924, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'mq1pqQXm', '5269930'), + (80612, 924, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'mq1pqQXm', '5271448'), + (80613, 924, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'mq1pqQXm', '5271449'), + (80614, 924, 1380, 'attending', '2022-05-26 19:26:05', '2025-12-17 19:47:30', 'mq1pqQXm', '5271450'), + (80615, 924, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mq1pqQXm', '5276469'), + (80616, 924, 1385, 'attending', '2022-05-11 22:58:24', '2025-12-17 19:47:28', 'mq1pqQXm', '5277822'), + (80617, 924, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mq1pqQXm', '5278159'), + (80618, 924, 1407, 'attending', '2022-05-30 20:26:00', '2025-12-17 19:47:30', 'mq1pqQXm', '5363695'), + (80619, 924, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mq1pqQXm', '5365960'), + (80620, 924, 1410, 'not_attending', '2022-05-19 20:39:59', '2025-12-17 19:47:29', 'mq1pqQXm', '5367530'), + (80621, 924, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mq1pqQXm', '5368973'), + (80622, 924, 1423, 'attending', '2022-06-15 20:13:22', '2025-12-17 19:47:17', 'mq1pqQXm', '5375727'), + (80623, 924, 1424, 'attending', '2022-05-26 19:26:00', '2025-12-17 19:47:30', 'mq1pqQXm', '5375772'), + (80624, 924, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mq1pqQXm', '5378247'), + (80625, 924, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mq1pqQXm', '5389605'), + (80626, 924, 1442, 'attending', '2022-06-18 18:19:05', '2025-12-17 19:47:17', 'mq1pqQXm', '5397265'), + (80627, 924, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mq1pqQXm', '5403967'), + (80628, 924, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mq1pqQXm', '5404786'), + (80629, 924, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mq1pqQXm', '5405203'), + (80630, 924, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mq1pqQXm', '5408794'), + (80631, 924, 1480, 'attending', '2022-06-23 05:57:07', '2025-12-17 19:47:19', 'mq1pqQXm', '5411699'), + (80632, 924, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'mq1pqQXm', '5412550'), + (80633, 924, 1484, 'attending', '2022-06-22 20:31:30', '2025-12-17 19:47:17', 'mq1pqQXm', '5415046'), + (80634, 924, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mq1pqQXm', '5422086'), + (80635, 924, 1498, 'attending', '2022-07-02 21:12:30', '2025-12-17 19:47:19', 'mq1pqQXm', '5422406'), + (80636, 924, 1501, 'attending', '2022-06-29 20:24:52', '2025-12-17 19:47:19', 'mq1pqQXm', '5424546'), + (80637, 924, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mq1pqQXm', '5424565'), + (80638, 924, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mq1pqQXm', '5426882'), + (80639, 924, 1505, 'attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mq1pqQXm', '5427083'), + (80640, 924, 1511, 'maybe', '2022-07-08 02:16:35', '2025-12-17 19:47:19', 'mq1pqQXm', '5437733'), + (80641, 924, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mq1pqQXm', '5441125'), + (80642, 924, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'mq1pqQXm', '5441126'), + (80643, 924, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mq1pqQXm', '5441128'), + (80644, 924, 1517, 'attending', '2022-08-27 20:10:45', '2025-12-17 19:47:23', 'mq1pqQXm', '5441130'), + (80645, 924, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mq1pqQXm', '5441131'), + (80646, 924, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mq1pqQXm', '5441132'), + (80647, 924, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mq1pqQXm', '5446643'), + (80648, 924, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mq1pqQXm', '5453325'), + (80649, 924, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mq1pqQXm', '5454516'), + (80650, 924, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mq1pqQXm', '5454605'), + (80651, 924, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mq1pqQXm', '5455037'), + (80652, 924, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mq1pqQXm', '5461278'), + (80653, 924, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mq1pqQXm', '5469480'), + (80654, 924, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mq1pqQXm', '5471073'), + (80655, 924, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mq1pqQXm', '5474663'), + (80656, 924, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mq1pqQXm', '5482022'), + (80657, 924, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mq1pqQXm', '5482793'), + (80658, 924, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mq1pqQXm', '5488912'), + (80659, 924, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mq1pqQXm', '5492192'), + (80660, 924, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mq1pqQXm', '5493139'), + (80661, 924, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mq1pqQXm', '5493200'), + (80662, 924, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mq1pqQXm', '5502188'), + (80663, 924, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mq1pqQXm', '5505059'), + (80664, 924, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mq1pqQXm', '5509055'), + (80665, 924, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mq1pqQXm', '5512862'), + (80666, 924, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mq1pqQXm', '5513985'), + (80667, 924, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'mq1pqQXm', '5534683'), + (80668, 924, 1635, 'attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mq1pqQXm', '5537735'), + (80669, 924, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mq1pqQXm', '5540859'), + (80670, 924, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mq1pqQXm', '5546619'), + (80671, 924, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mq1pqQXm', '5555245'), + (80672, 924, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mq1pqQXm', '5557747'), + (80673, 924, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mq1pqQXm', '5560255'), + (80674, 924, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mq1pqQXm', '5562906'), + (80675, 924, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mq1pqQXm', '5600604'), + (80676, 924, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mq1pqQXm', '5605544'), + (80677, 924, 1699, 'not_attending', '2022-09-26 12:17:19', '2025-12-17 19:47:12', 'mq1pqQXm', '5606737'), + (80678, 924, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mq1pqQXm', '5630960'), + (80679, 924, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mq1pqQXm', '5630961'), + (80680, 924, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mq1pqQXm', '5630962'), + (80681, 924, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mq1pqQXm', '5630966'), + (80682, 924, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mq1pqQXm', '5630967'), + (80683, 924, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mq1pqQXm', '5630968'), + (80684, 924, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mq1pqQXm', '5635406'), + (80685, 924, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mq1pqQXm', '5638765'), + (80686, 924, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mq1pqQXm', '5640097'), + (80687, 924, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mq1pqQXm', '5640843'), + (80688, 924, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mq1pqQXm', '5641521'), + (80689, 924, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mq1pqQXm', '5642818'), + (80690, 924, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mq1pqQXm', '5652395'), + (80691, 924, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mq1pqQXm', '5670445'), + (80692, 924, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mq1pqQXm', '5671637'), + (80693, 924, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mq1pqQXm', '5672329'), + (80694, 924, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mq1pqQXm', '5674057'), + (80695, 924, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mq1pqQXm', '5674060'), + (80696, 924, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mq1pqQXm', '5677461'), + (80697, 924, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mq1pqQXm', '5698046'), + (80698, 924, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mq1pqQXm', '5699760'), + (80699, 924, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mq1pqQXm', '5741601'), + (80700, 924, 1797, 'attending', '2022-12-10 01:49:55', '2025-12-17 19:47:17', 'mq1pqQXm', '5757486'), + (80701, 924, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mq1pqQXm', '5763458'), + (80702, 924, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mq1pqQXm', '5774172'), + (80703, 924, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mq1pqQXm', '5818247'), + (80704, 924, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mq1pqQXm', '5819471'), + (80705, 924, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mq1pqQXm', '5827739'), + (80706, 924, 1843, 'attending', '2022-12-17 22:11:45', '2025-12-17 19:47:04', 'mq1pqQXm', '5844304'), + (80707, 924, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mq1pqQXm', '5844306'), + (80708, 924, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mq1pqQXm', '5850159'), + (80709, 924, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mq1pqQXm', '5858999'), + (80710, 924, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mq1pqQXm', '5871984'), + (80711, 924, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mq1pqQXm', '5876354'), + (80712, 924, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mq1pqQXm', '5880939'), + (80713, 924, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mq1pqQXm', '5887890'), + (80714, 924, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mq1pqQXm', '5888598'), + (80715, 924, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mq1pqQXm', '5893260'), + (80716, 924, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mq1pqQXm', '6045684'), + (80717, 924, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mq1pqQXm', '6067245'), + (80718, 924, 2056, 'attending', '2023-05-13 21:19:42', '2025-12-17 19:47:02', 'mq1pqQXm', '6093504'), + (80719, 924, 2060, 'not_attending', '2023-05-20 22:43:24', '2025-12-17 19:47:03', 'mq1pqQXm', '6097414'), + (80720, 924, 2061, 'not_attending', '2023-05-11 23:34:43', '2025-12-17 19:47:02', 'mq1pqQXm', '6097442'), + (80721, 924, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mq1pqQXm', '6101362'), + (80722, 924, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mq1pqQXm', '6103752'), + (80723, 924, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mq1pqQXm', '6107314'), + (80724, 924, 2110, 'attending', '2023-06-21 22:52:42', '2025-12-17 19:46:50', 'mq1pqQXm', '6155491'), + (80725, 924, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mq1pqQXm', '6164417'), + (80726, 924, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mq1pqQXm', '6166388'), + (80727, 924, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mq1pqQXm', '6176439'), + (80728, 924, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mq1pqQXm', '6182410'), + (80729, 924, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mq1pqQXm', '6185812'), + (80730, 924, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mq1pqQXm', '6187651'), + (80731, 924, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mq1pqQXm', '6187963'), + (80732, 924, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mq1pqQXm', '6187964'), + (80733, 924, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mq1pqQXm', '6187966'), + (80734, 924, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mq1pqQXm', '6187967'), + (80735, 924, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mq1pqQXm', '6187969'), + (80736, 924, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mq1pqQXm', '6334878'), + (80737, 924, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mq1pqQXm', '6337236'), + (80738, 924, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mq1pqQXm', '6337970'), + (80739, 924, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mq1pqQXm', '6338308'), + (80740, 924, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mq1pqQXm', '6341710'), + (80741, 924, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mq1pqQXm', '6342044'), + (80742, 924, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mq1pqQXm', '6342298'), + (80743, 924, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mq1pqQXm', '6343294'), + (80744, 924, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mq1pqQXm', '6347034'), + (80745, 924, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mq1pqQXm', '6347056'), + (80746, 924, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mq1pqQXm', '6353830'), + (80747, 924, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mq1pqQXm', '6353831'), + (80748, 924, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mq1pqQXm', '6357867'), + (80749, 924, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mq1pqQXm', '6358652'), + (80750, 924, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mq1pqQXm', '6361709'), + (80751, 924, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mq1pqQXm', '6361710'), + (80752, 924, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mq1pqQXm', '6361711'), + (80753, 924, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mq1pqQXm', '6361712'), + (80754, 924, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mq1pqQXm', '6361713'), + (80755, 924, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mq1pqQXm', '6382573'), + (80756, 924, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mq1pqQXm', '6388604'), + (80757, 924, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mq1pqQXm', '6394629'), + (80758, 924, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mq1pqQXm', '6394631'), + (80759, 924, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mq1pqQXm', '6440863'), + (80760, 924, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mq1pqQXm', '6445440'), + (80761, 924, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mq1pqQXm', '6453951'), + (80762, 924, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mq1pqQXm', '6461696'), + (80763, 924, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mq1pqQXm', '6462129'), + (80764, 924, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mq1pqQXm', '6463218'), + (80765, 924, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mq1pqQXm', '6472181'), + (80766, 924, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mq1pqQXm', '6482693'), + (80767, 924, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mq1pqQXm', '6484200'), + (80768, 924, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mq1pqQXm', '6484680'), + (80769, 924, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mq1pqQXm', '6507741'), + (80770, 924, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'mq1pqQXm', '6514659'), + (80771, 924, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mq1pqQXm', '6514660'), + (80772, 924, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mq1pqQXm', '6519103'), + (80773, 924, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'mq1pqQXm', '6535681'), + (80774, 924, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mq1pqQXm', '6584747'), + (80775, 924, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mq1pqQXm', '6587097'), + (80776, 924, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mq1pqQXm', '6609022'), + (80777, 924, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mq1pqQXm', '6632757'), + (80778, 924, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'mq1pqQXm', '6644187'), + (80779, 924, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mq1pqQXm', '6648951'), + (80780, 924, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mq1pqQXm', '6648952'), + (80781, 924, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'mq1pqQXm', '6655401'), + (80782, 924, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mq1pqQXm', '6661585'), + (80783, 924, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mq1pqQXm', '6661588'), + (80784, 924, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mq1pqQXm', '6661589'), + (80785, 924, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mq1pqQXm', '6699906'), + (80786, 924, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'mq1pqQXm', '6699913'), + (80787, 924, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mq1pqQXm', '6701109'), + (80788, 924, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mq1pqQXm', '6705219'), + (80789, 924, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'mq1pqQXm', '6710153'), + (80790, 924, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'mq1pqQXm', '6711552'), + (80791, 924, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'mq1pqQXm', '6711553'), + (80792, 924, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mq1pqQXm', '6722688'), + (80793, 924, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mq1pqQXm', '6730620'), + (80794, 924, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mq1pqQXm', '6740364'), + (80795, 924, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mq1pqQXm', '6743829'), + (80796, 924, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mq1pqQXm', '7030380'), + (80797, 924, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mq1pqQXm', '7033677'), + (80798, 924, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mq1pqQXm', '7044715'), + (80799, 924, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mq1pqQXm', '7050318'), + (80800, 924, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mq1pqQXm', '7050319'), + (80801, 924, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mq1pqQXm', '7050322'), + (80802, 924, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mq1pqQXm', '7057804'), + (80803, 924, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mq1pqQXm', '7072824'), + (80804, 924, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mq1pqQXm', '7074348'), + (80805, 924, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mq1pqQXm', '7074364'), + (80806, 924, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mq1pqQXm', '7089267'), + (80807, 924, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mq1pqQXm', '7098747'), + (80808, 924, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'mq1pqQXm', '7113468'), + (80809, 924, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mq1pqQXm', '7114856'), + (80810, 924, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mq1pqQXm', '7114951'), + (80811, 924, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mq1pqQXm', '7114955'), + (80812, 924, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mq1pqQXm', '7114956'), + (80813, 924, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mq1pqQXm', '7114957'), + (80814, 924, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mq1pqQXm', '7159484'), + (80815, 924, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mq1pqQXm', '7178446'), + (80816, 924, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mq1pqQXm', '7220467'), + (80817, 924, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mq1pqQXm', '7240354'), + (80818, 924, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mq1pqQXm', '7251633'), + (80819, 924, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'mq1pqQXm', '7324073'), + (80820, 924, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mq1pqQXm', '7324074'), + (80821, 924, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mq1pqQXm', '7324075'), + (80822, 924, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mq1pqQXm', '7324078'), + (80823, 924, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mq1pqQXm', '7324082'), + (80824, 924, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mq1pqQXm', '7331457'), + (80825, 924, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mq1pqQXm', '7363643'), + (80826, 924, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mq1pqQXm', '7368606'), + (80827, 924, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mq1pqQXm', '7397462'), + (80828, 924, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'mq1pqQXm', '7424275'), + (80829, 924, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mq1pqQXm', '7432751'), + (80830, 924, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mq1pqQXm', '7432752'), + (80831, 924, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mq1pqQXm', '7432753'), + (80832, 924, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mq1pqQXm', '7432754'), + (80833, 924, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mq1pqQXm', '7432755'), + (80834, 924, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mq1pqQXm', '7432756'), + (80835, 924, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mq1pqQXm', '7432758'), + (80836, 924, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mq1pqQXm', '7432759'), + (80837, 924, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mq1pqQXm', '7433834'), + (80838, 924, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mq1pqQXm', '7470197'), + (80839, 924, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mq1pqQXm', '7685613'), + (80840, 924, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mq1pqQXm', '7688194'), + (80841, 924, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mq1pqQXm', '7688196'), + (80842, 924, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mq1pqQXm', '7688289'), + (80843, 924, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mq1pqQXm', '7692763'), + (80844, 924, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mq1pqQXm', '7697552'), + (80845, 924, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mq1pqQXm', '7699878'), + (80846, 924, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mq1pqQXm', '7704043'), + (80847, 924, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mq1pqQXm', '7712467'), + (80848, 924, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mq1pqQXm', '7713585'), + (80849, 924, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mq1pqQXm', '7713586'), + (80850, 924, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'mq1pqQXm', '7738518'), + (80851, 924, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mq1pqQXm', '7750636'), + (80852, 924, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mq1pqQXm', '7796540'), + (80853, 924, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mq1pqQXm', '7796541'), + (80854, 924, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mq1pqQXm', '7796542'), + (80855, 924, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mq1pqQXm', '7825913'), + (80856, 924, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mq1pqQXm', '7826209'), + (80857, 924, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mq1pqQXm', '7834742'), + (80858, 924, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mq1pqQXm', '7842108'), + (80859, 924, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mq1pqQXm', '7842902'), + (80860, 924, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mq1pqQXm', '7842903'), + (80861, 924, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mq1pqQXm', '7842904'), + (80862, 924, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mq1pqQXm', '7842905'), + (80863, 924, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mq1pqQXm', '7855719'), + (80864, 924, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mq1pqQXm', '7860683'), + (80865, 924, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mq1pqQXm', '7860684'), + (80866, 924, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mq1pqQXm', '7866095'), + (80867, 924, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mq1pqQXm', '7869170'), + (80868, 924, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mq1pqQXm', '7869188'), + (80869, 924, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mq1pqQXm', '7869201'), + (80870, 924, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mq1pqQXm', '7877465'), + (80871, 924, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mq1pqQXm', '7888250'), + (80872, 924, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mq1pqQXm', '7904777'), + (80873, 924, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mq1pqQXm', '8349164'), + (80874, 924, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mq1pqQXm', '8349545'), + (80875, 924, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mq1pqQXm', '8368028'), + (80876, 924, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mq1pqQXm', '8368029'), + (80877, 924, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mq1pqQXm', '8388462'), + (80878, 924, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mq1pqQXm', '8400273'), + (80879, 924, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mq1pqQXm', '8400275'), + (80880, 924, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'mq1pqQXm', '8400276'), + (80881, 924, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mq1pqQXm', '8404977'), + (80882, 924, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'mq1pqQXm', '8430783'), + (80883, 924, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mq1pqQXm', '8430784'), + (80884, 924, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mq1pqQXm', '8430799'), + (80885, 924, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mq1pqQXm', '8430800'), + (80886, 924, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mq1pqQXm', '8430801'), + (80887, 924, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mq1pqQXm', '8438709'), + (80888, 924, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mq1pqQXm', '8457738'), + (80889, 924, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mq1pqQXm', '8459566'), + (80890, 924, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mq1pqQXm', '8459567'), + (80891, 924, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mq1pqQXm', '8461032'), + (80892, 924, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mq1pqQXm', '8477877'), + (80893, 924, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mq1pqQXm', '8485688'), + (80894, 924, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mq1pqQXm', '8490587'), + (80895, 924, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mq1pqQXm', '8493552'), + (80896, 924, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'mq1pqQXm', '8493553'), + (80897, 924, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mq1pqQXm', '8493554'), + (80898, 924, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mq1pqQXm', '8493555'), + (80899, 924, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mq1pqQXm', '8493556'), + (80900, 924, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mq1pqQXm', '8493557'), + (80901, 924, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mq1pqQXm', '8493558'), + (80902, 924, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mq1pqQXm', '8493559'), + (80903, 924, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mq1pqQXm', '8493560'), + (80904, 924, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'mq1pqQXm', '8493561'), + (80905, 924, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mq1pqQXm', '8493572'), + (80906, 924, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'mq1pqQXm', '8540725'), + (80907, 924, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'mq1pqQXm', '8555421'), + (80908, 925, 499, 'attending', '2020-12-11 23:32:13', '2025-12-17 19:47:55', 'x4oNZgGA', '3314909'), + (80909, 925, 500, 'not_attending', '2020-12-19 01:10:46', '2025-12-17 19:47:55', 'x4oNZgGA', '3314964'), + (80910, 925, 502, 'not_attending', '2020-12-12 16:13:14', '2025-12-17 19:47:55', 'x4oNZgGA', '3323365'), + (80911, 925, 513, 'attending', '2020-12-19 18:19:50', '2025-12-17 19:47:55', 'x4oNZgGA', '3329383'), + (80912, 925, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'x4oNZgGA', '3351539'), + (80913, 925, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'x4oNZgGA', '3386848'), + (80914, 925, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'x4oNZgGA', '3389527'), + (80915, 925, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'x4oNZgGA', '3396499'), + (80916, 925, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'x4oNZgGA', '3403650'), + (80917, 925, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'x4oNZgGA', '3406988'), + (80918, 925, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'x4oNZgGA', '3416576'), + (80919, 925, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'x4oNZgGA', '3418925'), + (80920, 925, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'x4oNZgGA', '3430267'), + (80921, 925, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'x4oNZgGA', '3432673'), + (80922, 925, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'x4oNZgGA', '3468125'), + (80923, 925, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'x4oNZgGA', '3470303'), + (80924, 925, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'x4oNZgGA', '3470305'), + (80925, 925, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'x4oNZgGA', '3470991'), + (80926, 925, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'x4oNZgGA', '3517815'), + (80927, 925, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'x4oNZgGA', '3517816'), + (80928, 925, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'x4oNZgGA', '3523941'), + (80929, 925, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'x4oNZgGA', '3533850'), + (80930, 925, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'x4oNZgGA', '3536632'), + (80931, 925, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'x4oNZgGA', '3536656'), + (80932, 925, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'x4oNZgGA', '3539916'), + (80933, 925, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'x4oNZgGA', '3539917'), + (80934, 925, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'x4oNZgGA', '3539918'), + (80935, 925, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'x4oNZgGA', '3539919'), + (80936, 925, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'x4oNZgGA', '3539920'), + (80937, 925, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'x4oNZgGA', '3539921'), + (80938, 925, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'x4oNZgGA', '3539922'), + (80939, 925, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'x4oNZgGA', '3539923'), + (80940, 925, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'x4oNZgGA', '3539927'), + (80941, 925, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'x4oNZgGA', '3582734'), + (80942, 925, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'x4oNZgGA', '3583262'), + (80943, 925, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'x4oNZgGA', '3619523'), + (80944, 925, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'x4oNZgGA', '3661369'), + (80945, 925, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'x4oNZgGA', '3674262'), + (80946, 925, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'x4oNZgGA', '3677402'), + (80947, 925, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'x4oNZgGA', '3730212'), + (80948, 925, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4oNZgGA', '6045684'), + (80949, 926, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'v4DLM6o4', '3236448'), + (80950, 926, 823, 'not_attending', '2021-06-17 18:43:07', '2025-12-17 19:47:48', 'v4DLM6o4', '3974109'), + (80951, 926, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DLM6o4', '6045684'), + (80952, 927, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', '4PPRXBG4', '4136947'), + (80953, 927, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '4PPRXBG4', '4210314'), + (80954, 927, 900, 'attending', '2021-07-20 18:37:09', '2025-12-17 19:47:40', '4PPRXBG4', '4240316'), + (80955, 927, 901, 'not_attending', '2021-07-31 20:06:06', '2025-12-17 19:47:40', '4PPRXBG4', '4240317'), + (80956, 927, 902, 'attending', '2021-08-04 20:42:26', '2025-12-17 19:47:41', '4PPRXBG4', '4240318'), + (80957, 927, 903, 'not_attending', '2021-08-14 18:00:09', '2025-12-17 19:47:42', '4PPRXBG4', '4240320'), + (80958, 927, 919, 'not_attending', '2021-07-17 18:19:26', '2025-12-17 19:47:39', '4PPRXBG4', '4275957'), + (80959, 927, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '4PPRXBG4', '4277819'), + (80960, 927, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '4PPRXBG4', '4301723'), + (80961, 927, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '4PPRXBG4', '4302093'), + (80962, 927, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4PPRXBG4', '4304151'), + (80963, 927, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '4PPRXBG4', '4345519'), + (80964, 927, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4PPRXBG4', '4356801'), + (80965, 927, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '4PPRXBG4', '4358025'), + (80966, 927, 973, 'not_attending', '2021-08-21 15:51:21', '2025-12-17 19:47:42', '4PPRXBG4', '4366186'), + (80967, 927, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '4PPRXBG4', '4366187'), + (80968, 927, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4PPRXBG4', '4402823'), + (80969, 927, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4PPRXBG4', '4420735'), + (80970, 927, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4PPRXBG4', '4420738'), + (80971, 927, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4PPRXBG4', '4420739'), + (80972, 927, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4PPRXBG4', '4420741'), + (80973, 927, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4PPRXBG4', '4420744'), + (80974, 927, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4PPRXBG4', '4420747'), + (80975, 927, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4PPRXBG4', '4420748'), + (80976, 927, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4PPRXBG4', '4420749'), + (80977, 927, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4PPRXBG4', '4461883'), + (80978, 927, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4PPRXBG4', '4508342'), + (80979, 927, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4PPRXBG4', '4568602'), + (80980, 927, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4PPRXBG4', '6045684'), + (80981, 928, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '8412WDwd', '3236465'), + (80982, 928, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '8412WDwd', '3539916'), + (80983, 928, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '8412WDwd', '3539918'), + (80984, 928, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '8412WDwd', '3539919'), + (80985, 928, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '8412WDwd', '3539920'), + (80986, 928, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '8412WDwd', '3539921'), + (80987, 928, 650, 'not_attending', '2021-03-27 21:01:49', '2025-12-17 19:47:44', '8412WDwd', '3539928'), + (80988, 928, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8412WDwd', '3583262'), + (80989, 928, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8412WDwd', '3619523'), + (80990, 928, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8412WDwd', '3661369'), + (80991, 928, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8412WDwd', '3674262'), + (80992, 928, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8412WDwd', '3677402'), + (80993, 928, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '8412WDwd', '3730212'), + (80994, 928, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8412WDwd', '3793156'), + (80995, 928, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '8412WDwd', '3803310'), + (80996, 928, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '8412WDwd', '3806392'), + (80997, 928, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8412WDwd', '6045684'), + (80998, 929, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', 'dKRvvVZ4', '5186585'), + (80999, 929, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dKRvvVZ4', '5195095'), + (81000, 929, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dKRvvVZ4', '5223686'), + (81001, 929, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dKRvvVZ4', '5227432'), + (81002, 929, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dKRvvVZ4', '5247467'), + (81003, 929, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dKRvvVZ4', '5260800'), + (81004, 929, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dKRvvVZ4', '5269930'), + (81005, 929, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dKRvvVZ4', '5271448'), + (81006, 929, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dKRvvVZ4', '5271449'), + (81007, 929, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dKRvvVZ4', '5276469'), + (81008, 929, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dKRvvVZ4', '5278159'), + (81009, 929, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKRvvVZ4', '6045684'), + (81010, 930, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mLDJDMJm', '5670445'), + (81011, 930, 1824, 'not_attending', '2022-11-30 14:58:07', '2025-12-17 19:47:04', 'mLDJDMJm', '5774172'), + (81012, 930, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'mLDJDMJm', '5818247'), + (81013, 930, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mLDJDMJm', '5819471'), + (81014, 930, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mLDJDMJm', '5827739'), + (81015, 930, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mLDJDMJm', '5844306'), + (81016, 930, 1846, 'not_attending', '2022-12-18 18:54:16', '2025-12-17 19:47:04', 'mLDJDMJm', '5845237'), + (81017, 930, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mLDJDMJm', '5850159'), + (81018, 930, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mLDJDMJm', '5858999'), + (81019, 930, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mLDJDMJm', '5871984'), + (81020, 930, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mLDJDMJm', '5876354'), + (81021, 930, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mLDJDMJm', '6045684'), + (81022, 931, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ndlwGx54', '3517815'), + (81023, 931, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'ndlwGx54', '3517816'), + (81024, 931, 639, 'not_attending', '2021-03-07 04:16:32', '2025-12-17 19:47:51', 'ndlwGx54', '3536656'), + (81025, 931, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'ndlwGx54', '3539916'), + (81026, 931, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'ndlwGx54', '3539927'), + (81027, 931, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'ndlwGx54', '3582734'), + (81028, 931, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ndlwGx54', '3619523'), + (81029, 931, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ndlwGx54', '3674262'), + (81030, 931, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ndlwGx54', '3677402'), + (81031, 931, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlwGx54', '6045684'), + (81032, 932, 7, 'attending', '2020-03-24 01:35:21', '2025-12-17 19:47:58', 'GmjeNObd', '2958049'), + (81033, 932, 8, 'maybe', '2020-03-24 01:35:44', '2025-12-17 19:47:58', 'GmjeNObd', '2958050'), + (81034, 932, 9, 'not_attending', '2020-03-24 01:36:05', '2025-12-17 19:47:56', 'GmjeNObd', '2958052'), + (81035, 932, 10, 'attending', '2020-03-24 01:36:07', '2025-12-17 19:47:56', 'GmjeNObd', '2958053'), + (81036, 932, 12, 'not_attending', '2020-04-01 00:32:14', '2025-12-17 19:47:56', 'GmjeNObd', '2958056'), + (81037, 932, 14, 'maybe', '2020-04-09 21:07:59', '2025-12-17 19:47:57', 'GmjeNObd', '2958058'), + (81038, 932, 15, 'not_attending', '2020-04-13 16:05:49', '2025-12-17 19:47:57', 'GmjeNObd', '2958059'), + (81039, 932, 16, 'not_attending', '2020-03-26 04:03:40', '2025-12-17 19:47:56', 'GmjeNObd', '2958060'), + (81040, 932, 18, 'attending', '2020-04-17 21:43:57', '2025-12-17 19:47:57', 'GmjeNObd', '2958062'), + (81041, 932, 19, 'not_attending', '2020-04-01 00:32:20', '2025-12-17 19:47:56', 'GmjeNObd', '2958063'), + (81042, 932, 21, 'not_attending', '2020-04-30 18:37:50', '2025-12-17 19:47:57', 'GmjeNObd', '2958065'), + (81043, 932, 28, 'not_attending', '2020-04-01 00:31:41', '2025-12-17 19:47:56', 'GmjeNObd', '2960421'), + (81044, 932, 29, 'maybe', '2020-03-23 15:45:42', '2025-12-17 19:47:56', 'GmjeNObd', '2961309'), + (81045, 932, 30, 'maybe', '2020-03-23 22:32:07', '2025-12-17 19:47:57', 'GmjeNObd', '2961895'), + (81046, 932, 31, 'attending', '2020-03-25 22:28:47', '2025-12-17 19:47:58', 'GmjeNObd', '2963118'), + (81047, 932, 34, 'not_attending', '2020-03-26 04:02:46', '2025-12-17 19:47:56', 'GmjeNObd', '2966259'), + (81048, 932, 36, 'maybe', '2020-04-04 22:10:26', '2025-12-17 19:47:57', 'GmjeNObd', '2969208'), + (81049, 932, 38, 'not_attending', '2020-04-01 00:32:19', '2025-12-17 19:47:56', 'GmjeNObd', '2969751'), + (81050, 932, 39, 'maybe', '2020-04-04 17:05:31', '2025-12-17 19:47:57', 'GmjeNObd', '2970637'), + (81051, 932, 41, 'attending', '2020-04-16 19:04:55', '2025-12-17 19:47:57', 'GmjeNObd', '2971546'), + (81052, 932, 42, 'attending', '2020-04-04 18:29:33', '2025-12-17 19:47:57', 'GmjeNObd', '2973471'), + (81053, 932, 43, 'not_attending', '2020-04-19 05:01:00', '2025-12-17 19:47:57', 'GmjeNObd', '2974519'), + (81054, 932, 44, 'attending', '2020-04-11 04:29:47', '2025-12-17 19:47:57', 'GmjeNObd', '2974534'), + (81055, 932, 45, 'attending', '2020-04-06 04:48:35', '2025-12-17 19:47:57', 'GmjeNObd', '2974760'), + (81056, 932, 46, 'attending', '2020-04-11 21:26:31', '2025-12-17 19:47:57', 'GmjeNObd', '2974955'), + (81057, 932, 48, 'not_attending', '2020-05-19 18:43:09', '2025-12-17 19:47:57', 'GmjeNObd', '2975273'), + (81058, 932, 52, 'not_attending', '2020-06-15 21:23:06', '2025-12-17 19:47:58', 'GmjeNObd', '2975277'), + (81059, 932, 55, 'attending', '2020-04-06 16:46:32', '2025-12-17 19:47:57', 'GmjeNObd', '2975384'), + (81060, 932, 56, 'attending', '2020-04-11 21:27:23', '2025-12-17 19:47:57', 'GmjeNObd', '2975385'), + (81061, 932, 57, 'not_attending', '2020-04-27 16:05:23', '2025-12-17 19:47:57', 'GmjeNObd', '2976575'), + (81062, 932, 60, 'not_attending', '2020-04-24 19:26:32', '2025-12-17 19:47:57', 'GmjeNObd', '2977129'), + (81063, 932, 61, 'attending', '2020-04-13 16:01:38', '2025-12-17 19:47:57', 'GmjeNObd', '2977130'), + (81064, 932, 63, 'not_attending', '2020-05-19 18:43:08', '2025-12-17 19:47:57', 'GmjeNObd', '2977132'), + (81065, 932, 67, 'not_attending', '2020-06-15 21:23:03', '2025-12-17 19:47:58', 'GmjeNObd', '2977136'), + (81066, 932, 70, 'attending', '2020-04-08 02:13:20', '2025-12-17 19:47:57', 'GmjeNObd', '2977343'), + (81067, 932, 71, 'attending', '2020-04-11 21:27:17', '2025-12-17 19:47:57', 'GmjeNObd', '2977526'), + (81068, 932, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'GmjeNObd', '2977812'), + (81069, 932, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'GmjeNObd', '2977931'), + (81070, 932, 74, 'attending', '2020-04-17 23:40:07', '2025-12-17 19:47:57', 'GmjeNObd', '2978244'), + (81071, 932, 75, 'attending', '2020-04-23 00:28:27', '2025-12-17 19:47:57', 'GmjeNObd', '2978245'), + (81072, 932, 76, 'attending', '2020-04-30 18:38:08', '2025-12-17 19:47:57', 'GmjeNObd', '2978246'), + (81073, 932, 77, 'attending', '2020-05-05 22:51:39', '2025-12-17 19:47:57', 'GmjeNObd', '2978247'), + (81074, 932, 78, 'attending', '2020-05-19 18:43:35', '2025-12-17 19:47:57', 'GmjeNObd', '2978249'), + (81075, 932, 79, 'attending', '2020-05-25 18:47:09', '2025-12-17 19:47:57', 'GmjeNObd', '2978250'), + (81076, 932, 80, 'maybe', '2020-06-02 23:47:01', '2025-12-17 19:47:58', 'GmjeNObd', '2978251'), + (81077, 932, 81, 'attending', '2020-06-07 06:52:21', '2025-12-17 19:47:58', 'GmjeNObd', '2978252'), + (81078, 932, 82, 'not_attending', '2020-04-24 19:25:56', '2025-12-17 19:47:57', 'GmjeNObd', '2978433'), + (81079, 932, 83, 'attending', '2020-05-07 22:05:12', '2025-12-17 19:47:57', 'GmjeNObd', '2978438'), + (81080, 932, 84, 'attending', '2020-04-19 20:51:24', '2025-12-17 19:47:57', 'GmjeNObd', '2980871'), + (81081, 932, 86, 'attending', '2020-04-13 18:45:13', '2025-12-17 19:47:57', 'GmjeNObd', '2981388'), + (81082, 932, 87, 'not_attending', '2020-04-24 19:26:11', '2025-12-17 19:47:57', 'GmjeNObd', '2982602'), + (81083, 932, 88, 'attending', '2020-04-17 23:40:11', '2025-12-17 19:47:57', 'GmjeNObd', '2982603'), + (81084, 932, 89, 'maybe', '2020-04-27 16:05:57', '2025-12-17 19:47:57', 'GmjeNObd', '2982604'), + (81085, 932, 91, 'maybe', '2020-04-30 18:38:01', '2025-12-17 19:47:57', 'GmjeNObd', '2985130'), + (81086, 932, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'GmjeNObd', '2986743'), + (81087, 932, 94, 'not_attending', '2020-04-24 19:26:14', '2025-12-17 19:47:57', 'GmjeNObd', '2987421'), + (81088, 932, 95, 'maybe', '2020-04-24 19:26:44', '2025-12-17 19:47:57', 'GmjeNObd', '2987452'), + (81089, 932, 96, 'maybe', '2020-05-06 21:58:45', '2025-12-17 19:47:57', 'GmjeNObd', '2987453'), + (81090, 932, 98, 'not_attending', '2020-05-19 18:43:24', '2025-12-17 19:47:57', 'GmjeNObd', '2987455'), + (81091, 932, 100, 'not_attending', '2020-04-24 19:25:48', '2025-12-17 19:47:57', 'GmjeNObd', '2989142'), + (81092, 932, 101, 'maybe', '2020-04-21 21:59:46', '2025-12-17 19:47:57', 'GmjeNObd', '2989975'), + (81093, 932, 102, 'maybe', '2020-04-24 19:26:36', '2025-12-17 19:47:57', 'GmjeNObd', '2990784'), + (81094, 932, 103, 'attending', '2020-05-04 16:17:57', '2025-12-17 19:47:57', 'GmjeNObd', '2991407'), + (81095, 932, 104, 'not_attending', '2020-04-25 22:12:31', '2025-12-17 19:47:57', 'GmjeNObd', '2991471'), + (81096, 932, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'GmjeNObd', '2993501'), + (81097, 932, 108, 'maybe', '2020-05-17 06:37:15', '2025-12-17 19:47:57', 'GmjeNObd', '2993504'), + (81098, 932, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'GmjeNObd', '2994480'), + (81099, 932, 111, 'attending', '2020-06-07 02:43:08', '2025-12-17 19:47:58', 'GmjeNObd', '2994907'), + (81100, 932, 112, 'not_attending', '2020-07-04 18:32:03', '2025-12-17 19:47:55', 'GmjeNObd', '2994908'), + (81101, 932, 114, 'maybe', '2020-04-28 15:57:15', '2025-12-17 19:47:57', 'GmjeNObd', '2994911'), + (81102, 932, 115, 'attending', '2020-05-16 18:58:16', '2025-12-17 19:47:57', 'GmjeNObd', '3001217'), + (81103, 932, 118, 'attending', '2020-05-05 21:31:57', '2025-12-17 19:47:57', 'GmjeNObd', '3007644'), + (81104, 932, 119, 'attending', '2020-05-09 17:42:26', '2025-12-17 19:47:57', 'GmjeNObd', '3015486'), + (81105, 932, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'GmjeNObd', '3023063'), + (81106, 932, 125, 'attending', '2020-05-22 03:08:05', '2025-12-17 19:47:57', 'GmjeNObd', '3023987'), + (81107, 932, 127, 'attending', '2020-05-17 03:12:47', '2025-12-17 19:47:57', 'GmjeNObd', '3025623'), + (81108, 932, 128, 'not_attending', '2020-05-19 18:43:32', '2025-12-17 19:47:57', 'GmjeNObd', '3027185'), + (81109, 932, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'GmjeNObd', '3034321'), + (81110, 932, 136, 'attending', '2020-05-24 20:14:24', '2025-12-17 19:47:57', 'GmjeNObd', '3035881'), + (81111, 932, 139, 'not_attending', '2020-06-15 21:23:36', '2025-12-17 19:47:58', 'GmjeNObd', '3046190'), + (81112, 932, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'GmjeNObd', '3049983'), + (81113, 932, 156, 'not_attending', '2020-09-08 01:40:54', '2025-12-17 19:47:56', 'GmjeNObd', '3058693'), + (81114, 932, 157, 'maybe', '2020-09-13 03:31:15', '2025-12-17 19:47:56', 'GmjeNObd', '3058694'), + (81115, 932, 158, 'maybe', '2020-09-13 03:31:49', '2025-12-17 19:47:52', 'GmjeNObd', '3058695'), + (81116, 932, 159, 'maybe', '2020-09-29 14:27:22', '2025-12-17 19:47:52', 'GmjeNObd', '3058696'), + (81117, 932, 160, 'maybe', '2020-10-12 23:05:15', '2025-12-17 19:47:52', 'GmjeNObd', '3058697'), + (81118, 932, 161, 'maybe', '2020-09-29 14:27:50', '2025-12-17 19:47:52', 'GmjeNObd', '3058698'), + (81119, 932, 162, 'maybe', '2020-10-12 23:03:44', '2025-12-17 19:47:52', 'GmjeNObd', '3058699'), + (81120, 932, 168, 'maybe', '2020-06-15 21:23:18', '2025-12-17 19:47:58', 'GmjeNObd', '3058740'), + (81121, 932, 169, 'not_attending', '2020-06-15 21:22:56', '2025-12-17 19:47:58', 'GmjeNObd', '3058741'), + (81122, 932, 171, 'maybe', '2020-06-11 20:53:01', '2025-12-17 19:47:58', 'GmjeNObd', '3058743'), + (81123, 932, 172, 'attending', '2020-06-07 05:14:20', '2025-12-17 19:47:58', 'GmjeNObd', '3058959'), + (81124, 932, 173, 'not_attending', '2020-06-15 21:23:52', '2025-12-17 19:47:58', 'GmjeNObd', '3067093'), + (81125, 932, 174, 'attending', '2020-06-08 22:17:06', '2025-12-17 19:47:58', 'GmjeNObd', '3067927'), + (81126, 932, 175, 'not_attending', '2020-06-15 21:23:13', '2025-12-17 19:47:58', 'GmjeNObd', '3068305'), + (81127, 932, 177, 'maybe', '2020-06-15 21:23:27', '2025-12-17 19:47:58', 'GmjeNObd', '3073193'), + (81128, 932, 178, 'attending', '2020-06-15 21:22:44', '2025-12-17 19:47:58', 'GmjeNObd', '3073195'), + (81129, 932, 179, 'not_attending', '2020-06-15 21:24:03', '2025-12-17 19:47:58', 'GmjeNObd', '3073687'), + (81130, 932, 180, 'not_attending', '2020-06-15 21:23:34', '2025-12-17 19:47:58', 'GmjeNObd', '3074048'), + (81131, 932, 181, 'maybe', '2020-06-15 21:23:59', '2025-12-17 19:47:58', 'GmjeNObd', '3074513'), + (81132, 932, 182, 'maybe', '2020-06-22 18:36:37', '2025-12-17 19:47:55', 'GmjeNObd', '3074514'), + (81133, 932, 183, 'maybe', '2020-06-22 18:36:01', '2025-12-17 19:47:58', 'GmjeNObd', '3075228'), + (81134, 932, 185, 'attending', '2020-06-15 21:25:42', '2025-12-17 19:47:58', 'GmjeNObd', '3075456'), + (81135, 932, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'GmjeNObd', '3083791'), + (81136, 932, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', 'GmjeNObd', '3085151'), + (81137, 932, 190, 'maybe', '2020-06-28 23:29:43', '2025-12-17 19:47:55', 'GmjeNObd', '3087258'), + (81138, 932, 191, 'attending', '2020-07-07 23:35:01', '2025-12-17 19:47:55', 'GmjeNObd', '3087259'), + (81139, 932, 192, 'maybe', '2020-07-15 00:21:45', '2025-12-17 19:47:55', 'GmjeNObd', '3087260'), + (81140, 932, 193, 'attending', '2020-07-24 05:32:56', '2025-12-17 19:47:55', 'GmjeNObd', '3087261'), + (81141, 932, 194, 'attending', '2020-08-01 21:54:46', '2025-12-17 19:47:56', 'GmjeNObd', '3087262'), + (81142, 932, 196, 'maybe', '2020-08-12 23:37:36', '2025-12-17 19:47:56', 'GmjeNObd', '3087265'), + (81143, 932, 197, 'maybe', '2020-08-20 22:27:13', '2025-12-17 19:47:56', 'GmjeNObd', '3087266'), + (81144, 932, 198, 'attending', '2020-08-27 15:57:32', '2025-12-17 19:47:56', 'GmjeNObd', '3087267'), + (81145, 932, 199, 'not_attending', '2020-09-02 21:10:51', '2025-12-17 19:47:56', 'GmjeNObd', '3087268'), + (81146, 932, 201, 'attending', '2020-06-25 01:52:26', '2025-12-17 19:47:55', 'GmjeNObd', '3088653'), + (81147, 932, 202, 'not_attending', '2020-07-04 18:32:13', '2025-12-17 19:47:55', 'GmjeNObd', '3090353'), + (81148, 932, 204, 'attending', '2020-06-28 23:27:34', '2025-12-17 19:47:55', 'GmjeNObd', '3102758'), + (81149, 932, 209, 'attending', '2020-06-28 23:28:12', '2025-12-17 19:47:55', 'GmjeNObd', '3106813'), + (81150, 932, 216, 'attending', '2020-07-07 23:35:12', '2025-12-17 19:47:55', 'GmjeNObd', '3126500'), + (81151, 932, 221, 'maybe', '2020-09-13 03:31:09', '2025-12-17 19:47:56', 'GmjeNObd', '3129265'), + (81152, 932, 223, 'attending', '2020-09-08 01:40:58', '2025-12-17 19:47:56', 'GmjeNObd', '3129980'), + (81153, 932, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'GmjeNObd', '3132817'), + (81154, 932, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'GmjeNObd', '3132820'), + (81155, 932, 228, 'attending', '2020-07-15 00:21:30', '2025-12-17 19:47:55', 'GmjeNObd', '3132821'), + (81156, 932, 241, 'maybe', '2020-09-29 14:27:33', '2025-12-17 19:47:52', 'GmjeNObd', '3149472'), + (81157, 932, 242, 'maybe', '2020-09-13 03:31:27', '2025-12-17 19:47:56', 'GmjeNObd', '3149473'), + (81158, 932, 244, 'maybe', '2020-10-12 23:04:10', '2025-12-17 19:47:52', 'GmjeNObd', '3149475'), + (81159, 932, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'GmjeNObd', '3155321'), + (81160, 932, 273, 'attending', '2020-08-03 17:20:44', '2025-12-17 19:47:56', 'GmjeNObd', '3162006'), + (81161, 932, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'GmjeNObd', '3163442'), + (81162, 932, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', 'GmjeNObd', '3169555'), + (81163, 932, 284, 'not_attending', '2020-08-06 22:30:53', '2025-12-17 19:47:56', 'GmjeNObd', '3169556'), + (81164, 932, 288, 'maybe', '2020-09-02 21:11:08', '2025-12-17 19:47:56', 'GmjeNObd', '3170249'), + (81165, 932, 290, 'not_attending', '2020-09-08 01:40:12', '2025-12-17 19:47:56', 'GmjeNObd', '3170251'), + (81166, 932, 291, 'not_attending', '2020-09-08 01:40:35', '2025-12-17 19:47:56', 'GmjeNObd', '3170252'), + (81167, 932, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'GmjeNObd', '3172832'), + (81168, 932, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'GmjeNObd', '3172833'), + (81169, 932, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'GmjeNObd', '3172834'), + (81170, 932, 296, 'maybe', '2020-09-08 01:40:48', '2025-12-17 19:47:56', 'GmjeNObd', '3172876'), + (81171, 932, 301, 'attending', '2020-08-26 18:44:30', '2025-12-17 19:47:56', 'GmjeNObd', '3178027'), + (81172, 932, 311, 'maybe', '2020-09-08 01:42:00', '2025-12-17 19:47:56', 'GmjeNObd', '3186057'), + (81173, 932, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'GmjeNObd', '3191735'), + (81174, 932, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', 'GmjeNObd', '3193885'), + (81175, 932, 320, 'maybe', '2020-09-02 21:11:00', '2025-12-17 19:47:56', 'GmjeNObd', '3195552'), + (81176, 932, 322, 'maybe', '2020-09-08 01:41:30', '2025-12-17 19:47:56', 'GmjeNObd', '3197080'), + (81177, 932, 323, 'maybe', '2020-09-08 01:41:35', '2025-12-17 19:47:56', 'GmjeNObd', '3197081'), + (81178, 932, 324, 'maybe', '2020-09-13 03:31:21', '2025-12-17 19:47:56', 'GmjeNObd', '3197082'), + (81179, 932, 325, 'maybe', '2020-09-13 03:31:34', '2025-12-17 19:47:51', 'GmjeNObd', '3197083'), + (81180, 932, 326, 'maybe', '2020-09-13 03:31:45', '2025-12-17 19:47:52', 'GmjeNObd', '3197084'), + (81181, 932, 327, 'maybe', '2020-09-23 18:40:57', '2025-12-17 19:47:52', 'GmjeNObd', '3197085'), + (81182, 932, 328, 'maybe', '2020-09-23 18:41:05', '2025-12-17 19:47:52', 'GmjeNObd', '3197086'), + (81183, 932, 329, 'maybe', '2020-09-29 14:27:15', '2025-12-17 19:47:52', 'GmjeNObd', '3197087'), + (81184, 932, 331, 'not_attending', '2020-09-02 21:11:58', '2025-12-17 19:47:56', 'GmjeNObd', '3198871'), + (81185, 932, 332, 'maybe', '2020-09-08 01:40:23', '2025-12-17 19:47:56', 'GmjeNObd', '3198873'), + (81186, 932, 333, 'maybe', '2020-09-29 14:27:36', '2025-12-17 19:47:52', 'GmjeNObd', '3199782'), + (81187, 932, 334, 'maybe', '2020-09-29 14:27:41', '2025-12-17 19:47:52', 'GmjeNObd', '3199784'), + (81188, 932, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'GmjeNObd', '3200209'), + (81189, 932, 336, 'maybe', '2020-09-08 01:41:24', '2025-12-17 19:47:56', 'GmjeNObd', '3200495'), + (81190, 932, 340, 'maybe', '2020-09-13 03:31:02', '2025-12-17 19:47:56', 'GmjeNObd', '3204470'), + (81191, 932, 341, 'maybe', '2020-09-13 03:31:37', '2025-12-17 19:47:52', 'GmjeNObd', '3204471'), + (81192, 932, 342, 'maybe', '2020-09-29 14:27:17', '2025-12-17 19:47:52', 'GmjeNObd', '3204472'), + (81193, 932, 343, 'maybe', '2020-09-13 03:31:30', '2025-12-17 19:47:56', 'GmjeNObd', '3206759'), + (81194, 932, 345, 'maybe', '2020-09-13 03:30:26', '2025-12-17 19:47:56', 'GmjeNObd', '3207423'), + (81195, 932, 346, 'maybe', '2020-09-13 03:30:52', '2025-12-17 19:47:56', 'GmjeNObd', '3207515'), + (81196, 932, 347, 'maybe', '2020-09-24 18:21:58', '2025-12-17 19:47:51', 'GmjeNObd', '3207930'), + (81197, 932, 348, 'maybe', '2020-09-23 18:41:01', '2025-12-17 19:47:52', 'GmjeNObd', '3209159'), + (81198, 932, 349, 'maybe', '2020-09-13 03:30:56', '2025-12-17 19:47:56', 'GmjeNObd', '3209194'), + (81199, 932, 350, 'attending', '2020-09-12 19:37:04', '2025-12-17 19:47:56', 'GmjeNObd', '3209255'), + (81200, 932, 351, 'maybe', '2020-09-13 03:31:05', '2025-12-17 19:47:56', 'GmjeNObd', '3209257'), + (81201, 932, 352, 'maybe', '2020-09-13 03:30:33', '2025-12-17 19:47:56', 'GmjeNObd', '3210514'), + (81202, 932, 356, 'maybe', '2020-09-23 18:41:14', '2025-12-17 19:47:51', 'GmjeNObd', '3212572'), + (81203, 932, 357, 'maybe', '2020-09-23 18:41:07', '2025-12-17 19:47:52', 'GmjeNObd', '3212573'), + (81204, 932, 362, 'attending', '2020-09-23 18:40:37', '2025-12-17 19:47:52', 'GmjeNObd', '3214207'), + (81205, 932, 363, 'attending', '2020-09-16 22:03:19', '2025-12-17 19:47:52', 'GmjeNObd', '3217037'), + (81206, 932, 364, 'attending', '2020-09-21 20:57:29', '2025-12-17 19:47:56', 'GmjeNObd', '3217106'), + (81207, 932, 365, 'maybe', '2020-09-23 18:40:20', '2025-12-17 19:47:52', 'GmjeNObd', '3218510'), + (81208, 932, 367, 'not_attending', '2020-09-23 18:41:19', '2025-12-17 19:47:51', 'GmjeNObd', '3219751'), + (81209, 932, 368, 'maybe', '2020-09-29 14:27:11', '2025-12-17 19:47:52', 'GmjeNObd', '3221403'), + (81210, 932, 369, 'maybe', '2020-10-07 21:16:32', '2025-12-17 19:47:52', 'GmjeNObd', '3221404'), + (81211, 932, 370, 'maybe', '2020-10-07 21:16:39', '2025-12-17 19:47:52', 'GmjeNObd', '3221405'), + (81212, 932, 371, 'maybe', '2020-10-07 21:16:48', '2025-12-17 19:47:52', 'GmjeNObd', '3221406'), + (81213, 932, 372, 'maybe', '2020-10-12 23:04:11', '2025-12-17 19:47:52', 'GmjeNObd', '3221407'), + (81214, 932, 373, 'maybe', '2020-10-12 23:05:13', '2025-12-17 19:47:52', 'GmjeNObd', '3221413'), + (81215, 932, 374, 'maybe', '2020-10-25 23:25:04', '2025-12-17 19:47:53', 'GmjeNObd', '3221415'), + (81216, 932, 375, 'maybe', '2020-09-29 14:27:39', '2025-12-17 19:47:52', 'GmjeNObd', '3222825'), + (81217, 932, 376, 'maybe', '2020-10-07 21:16:46', '2025-12-17 19:47:52', 'GmjeNObd', '3222827'), + (81218, 932, 377, 'maybe', '2020-10-25 23:25:14', '2025-12-17 19:47:53', 'GmjeNObd', '3222828'), + (81219, 932, 378, 'maybe', '2020-09-23 18:40:53', '2025-12-17 19:47:52', 'GmjeNObd', '3223725'), + (81220, 932, 379, 'not_attending', '2020-09-29 14:27:28', '2025-12-17 19:47:52', 'GmjeNObd', '3226266'), + (81221, 932, 382, 'maybe', '2020-10-07 21:16:35', '2025-12-17 19:47:52', 'GmjeNObd', '3226873'), + (81222, 932, 383, 'maybe', '2020-09-29 14:27:04', '2025-12-17 19:47:52', 'GmjeNObd', '3227946'), + (81223, 932, 384, 'maybe', '2020-09-29 14:26:29', '2025-12-17 19:47:52', 'GmjeNObd', '3228696'), + (81224, 932, 385, 'maybe', '2020-09-29 14:58:57', '2025-12-17 19:47:52', 'GmjeNObd', '3228698'), + (81225, 932, 386, 'maybe', '2020-09-29 14:27:48', '2025-12-17 19:47:52', 'GmjeNObd', '3228699'), + (81226, 932, 387, 'maybe', '2020-10-16 23:49:15', '2025-12-17 19:47:52', 'GmjeNObd', '3228700'), + (81227, 932, 388, 'attending', '2020-10-24 22:31:34', '2025-12-17 19:47:52', 'GmjeNObd', '3228701'), + (81228, 932, 391, 'maybe', '2020-10-07 21:16:42', '2025-12-17 19:47:52', 'GmjeNObd', '3236446'), + (81229, 932, 392, 'maybe', '2020-10-25 23:25:12', '2025-12-17 19:47:53', 'GmjeNObd', '3236447'), + (81230, 932, 411, 'maybe', '2020-10-07 21:16:25', '2025-12-17 19:47:52', 'GmjeNObd', '3236596'), + (81231, 932, 412, 'maybe', '2020-10-07 21:16:15', '2025-12-17 19:47:52', 'GmjeNObd', '3236636'), + (81232, 932, 413, 'maybe', '2020-10-12 23:04:16', '2025-12-17 19:47:52', 'GmjeNObd', '3236670'), + (81233, 932, 414, 'maybe', '2020-10-12 23:03:47', '2025-12-17 19:47:52', 'GmjeNObd', '3237277'), + (81234, 932, 415, 'maybe', '2020-10-07 21:16:29', '2025-12-17 19:47:52', 'GmjeNObd', '3238044'), + (81235, 932, 416, 'maybe', '2020-10-07 21:16:19', '2025-12-17 19:47:52', 'GmjeNObd', '3238073'), + (81236, 932, 417, 'maybe', '2020-10-12 23:03:32', '2025-12-17 19:47:52', 'GmjeNObd', '3238779'), + (81237, 932, 418, 'maybe', '2020-10-12 23:03:34', '2025-12-17 19:47:52', 'GmjeNObd', '3241728'), + (81238, 932, 419, 'maybe', '2020-10-12 23:03:20', '2025-12-17 19:47:52', 'GmjeNObd', '3242234'), + (81239, 932, 420, 'maybe', '2020-10-12 23:03:38', '2025-12-17 19:47:52', 'GmjeNObd', '3245293'), + (81240, 932, 421, 'maybe', '2020-10-12 23:04:20', '2025-12-17 19:47:52', 'GmjeNObd', '3245294'), + (81241, 932, 422, 'maybe', '2020-10-25 23:25:11', '2025-12-17 19:47:53', 'GmjeNObd', '3245295'), + (81242, 932, 424, 'maybe', '2020-10-12 23:04:02', '2025-12-17 19:47:52', 'GmjeNObd', '3245751'), + (81243, 932, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GmjeNObd', '3250232'), + (81244, 932, 428, 'maybe', '2020-10-25 23:25:03', '2025-12-17 19:47:53', 'GmjeNObd', '3250332'), + (81245, 932, 431, 'maybe', '2020-10-25 23:25:06', '2025-12-17 19:47:53', 'GmjeNObd', '3253225'), + (81246, 932, 437, 'maybe', '2020-10-25 23:25:09', '2025-12-17 19:47:53', 'GmjeNObd', '3256160'), + (81247, 932, 439, 'maybe', '2020-10-25 23:25:08', '2025-12-17 19:47:53', 'GmjeNObd', '3256164'), + (81248, 932, 440, 'attending', '2020-11-07 23:58:51', '2025-12-17 19:47:53', 'GmjeNObd', '3256168'), + (81249, 932, 441, 'maybe', '2020-11-07 23:59:10', '2025-12-17 19:47:54', 'GmjeNObd', '3256169'), + (81250, 932, 443, 'attending', '2020-10-23 21:29:31', '2025-12-17 19:47:52', 'GmjeNObd', '3263578'), + (81251, 932, 444, 'maybe', '2020-10-25 23:25:15', '2025-12-17 19:47:53', 'GmjeNObd', '3263745'), + (81252, 932, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GmjeNObd', '3276428'), + (81253, 932, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'GmjeNObd', '3281467'), + (81254, 932, 460, 'maybe', '2020-11-19 22:48:55', '2025-12-17 19:47:54', 'GmjeNObd', '3281468'), + (81255, 932, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GmjeNObd', '3281470'), + (81256, 932, 464, 'maybe', '2020-11-19 22:49:00', '2025-12-17 19:47:54', 'GmjeNObd', '3281554'), + (81257, 932, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GmjeNObd', '3281829'), + (81258, 932, 468, 'maybe', '2020-11-19 22:49:04', '2025-12-17 19:47:54', 'GmjeNObd', '3285413'), + (81259, 932, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'GmjeNObd', '3285414'), + (81260, 932, 481, 'attending', '2020-11-19 22:50:22', '2025-12-17 19:47:54', 'GmjeNObd', '3297764'), + (81261, 932, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'GmjeNObd', '3313856'), + (81262, 932, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GmjeNObd', '3314909'), + (81263, 932, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GmjeNObd', '3314964'), + (81264, 932, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'GmjeNObd', '3323365'), + (81265, 932, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GmjeNObd', '3329383'), + (81266, 932, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GmjeNObd', '3351539'), + (81267, 932, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GmjeNObd', '3386848'), + (81268, 932, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GmjeNObd', '3389527'), + (81269, 932, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GmjeNObd', '3396499'), + (81270, 932, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GmjeNObd', '3403650'), + (81271, 932, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GmjeNObd', '3406988'), + (81272, 932, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'GmjeNObd', '3408338'), + (81273, 932, 555, 'attending', '2021-01-23 19:27:37', '2025-12-17 19:47:49', 'GmjeNObd', '3416576'), + (81274, 932, 564, 'attending', '2021-01-22 21:42:51', '2025-12-17 19:47:49', 'GmjeNObd', '3426074'), + (81275, 932, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'GmjeNObd', '3430267'), + (81276, 932, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'GmjeNObd', '3470303'), + (81277, 932, 604, 'attending', '2021-02-27 23:59:00', '2025-12-17 19:47:50', 'GmjeNObd', '3470305'), + (81278, 932, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GmjeNObd', '3470991'), + (81279, 932, 621, 'attending', '2021-03-06 22:48:05', '2025-12-17 19:47:51', 'GmjeNObd', '3517815'), + (81280, 932, 622, 'attending', '2021-03-10 23:58:11', '2025-12-17 19:47:51', 'GmjeNObd', '3517816'), + (81281, 932, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'GmjeNObd', '3523941'), + (81282, 932, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GmjeNObd', '3533850'), + (81283, 932, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GmjeNObd', '3536632'), + (81284, 932, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GmjeNObd', '3536656'), + (81285, 932, 641, 'attending', '2021-04-03 21:05:12', '2025-12-17 19:47:44', 'GmjeNObd', '3539916'), + (81286, 932, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'GmjeNObd', '3539917'), + (81287, 932, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'GmjeNObd', '3539918'), + (81288, 932, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:45', 'GmjeNObd', '3539919'), + (81289, 932, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'GmjeNObd', '3539920'), + (81290, 932, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'GmjeNObd', '3539921'), + (81291, 932, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'GmjeNObd', '3539922'), + (81292, 932, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'GmjeNObd', '3539923'), + (81293, 932, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GmjeNObd', '3539927'), + (81294, 932, 680, 'attending', '2021-03-10 23:57:55', '2025-12-17 19:47:51', 'GmjeNObd', '3547700'), + (81295, 932, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GmjeNObd', '3582734'), + (81296, 932, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GmjeNObd', '3583262'), + (81297, 932, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GmjeNObd', '3619523'), + (81298, 932, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GmjeNObd', '3661369'), + (81299, 932, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GmjeNObd', '3674262'), + (81300, 932, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GmjeNObd', '3677402'), + (81301, 932, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GmjeNObd', '3730212'), + (81302, 932, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GmjeNObd', '3793156'), + (81303, 932, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjeNObd', '3974109'), + (81304, 932, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjeNObd', '3975311'), + (81305, 932, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjeNObd', '3975312'), + (81306, 932, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjeNObd', '3994992'), + (81307, 932, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjeNObd', '4014338'), + (81308, 932, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GmjeNObd', '4021848'), + (81309, 932, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjeNObd', '4136744'), + (81310, 932, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GmjeNObd', '4136937'), + (81311, 932, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GmjeNObd', '4136938'), + (81312, 932, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GmjeNObd', '4136947'), + (81313, 932, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GmjeNObd', '4239259'), + (81314, 932, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GmjeNObd', '4250163'), + (81315, 932, 1516, 'attending', '2022-08-16 23:23:39', '2025-12-17 19:47:23', 'GmjeNObd', '5441129'), + (81316, 932, 1517, 'attending', '2022-08-26 21:53:15', '2025-12-17 19:47:23', 'GmjeNObd', '5441130'), + (81317, 932, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GmjeNObd', '5441131'), + (81318, 932, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GmjeNObd', '5441132'), + (81319, 932, 1544, 'attending', '2022-09-15 22:23:54', '2025-12-17 19:47:11', 'GmjeNObd', '5454517'), + (81320, 932, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GmjeNObd', '5461278'), + (81321, 932, 1575, 'attending', '2022-08-26 21:53:48', '2025-12-17 19:47:23', 'GmjeNObd', '5482250'), + (81322, 932, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GmjeNObd', '5488912'), + (81323, 932, 1587, 'attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GmjeNObd', '5492192'), + (81324, 932, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GmjeNObd', '5493139'), + (81325, 932, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GmjeNObd', '5493200'), + (81326, 932, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GmjeNObd', '5502188'), + (81327, 932, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GmjeNObd', '5505059'), + (81328, 932, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GmjeNObd', '5509055'), + (81329, 932, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GmjeNObd', '5512862'), + (81330, 932, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GmjeNObd', '5513985'), + (81331, 932, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GmjeNObd', '5519981'), + (81332, 932, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GmjeNObd', '5522550'), + (81333, 932, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GmjeNObd', '5534683'), + (81334, 932, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GmjeNObd', '5537735'), + (81335, 932, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GmjeNObd', '5540859'), + (81336, 932, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GmjeNObd', '5546619'), + (81337, 932, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'GmjeNObd', '5555245'), + (81338, 932, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GmjeNObd', '5557747'), + (81339, 932, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GmjeNObd', '5560255'), + (81340, 932, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GmjeNObd', '5562906'), + (81341, 932, 1667, 'maybe', '2022-09-24 19:37:15', '2025-12-17 19:47:11', 'GmjeNObd', '5563221'), + (81342, 932, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GmjeNObd', '5600604'), + (81343, 932, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GmjeNObd', '5605544'), + (81344, 932, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'GmjeNObd', '5606737'), + (81345, 932, 1719, 'not_attending', '2022-10-08 21:29:37', '2025-12-17 19:47:12', 'GmjeNObd', '5630958'), + (81346, 932, 1720, 'attending', '2022-10-08 21:29:42', '2025-12-17 19:47:12', 'GmjeNObd', '5630959'), + (81347, 932, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GmjeNObd', '5630960'), + (81348, 932, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GmjeNObd', '5630961'), + (81349, 932, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GmjeNObd', '5630962'), + (81350, 932, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GmjeNObd', '5630966'), + (81351, 932, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GmjeNObd', '5630967'), + (81352, 932, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GmjeNObd', '5630968'), + (81353, 932, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GmjeNObd', '5635406'), + (81354, 932, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GmjeNObd', '5638765'), + (81355, 932, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GmjeNObd', '5640097'), + (81356, 932, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GmjeNObd', '5640843'), + (81357, 932, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GmjeNObd', '5641521'), + (81358, 932, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GmjeNObd', '5642818'), + (81359, 932, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GmjeNObd', '5652395'), + (81360, 932, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GmjeNObd', '5670445'), + (81361, 932, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GmjeNObd', '5671637'), + (81362, 932, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GmjeNObd', '5672329'), + (81363, 932, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GmjeNObd', '5674057'), + (81364, 932, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GmjeNObd', '5674060'), + (81365, 932, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:15', 'GmjeNObd', '5677461'), + (81366, 932, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GmjeNObd', '5698046'), + (81367, 932, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GmjeNObd', '5699760'), + (81368, 932, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GmjeNObd', '5741601'), + (81369, 932, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GmjeNObd', '5763458'), + (81370, 932, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GmjeNObd', '5774172'), + (81371, 932, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GmjeNObd', '5818247'), + (81372, 932, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GmjeNObd', '5819471'), + (81373, 932, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GmjeNObd', '5827739'), + (81374, 932, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GmjeNObd', '5844306'), + (81375, 932, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GmjeNObd', '5850159'), + (81376, 932, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GmjeNObd', '5858999'), + (81377, 932, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GmjeNObd', '5871984'), + (81378, 932, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GmjeNObd', '5876354'), + (81379, 932, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GmjeNObd', '5880939'), + (81380, 932, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GmjeNObd', '5880940'), + (81381, 932, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GmjeNObd', '5880942'), + (81382, 932, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GmjeNObd', '5880943'), + (81383, 932, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GmjeNObd', '5887890'), + (81384, 932, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GmjeNObd', '5888598'), + (81385, 932, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GmjeNObd', '5893260'), + (81386, 932, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GmjeNObd', '5899826'), + (81387, 932, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GmjeNObd', '5900199'), + (81388, 932, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GmjeNObd', '5900200'), + (81389, 932, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GmjeNObd', '5900202'), + (81390, 932, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GmjeNObd', '5900203'), + (81391, 932, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GmjeNObd', '5901108'), + (81392, 932, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GmjeNObd', '5901126'), + (81393, 932, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GmjeNObd', '5909655'), + (81394, 932, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GmjeNObd', '5910522'), + (81395, 932, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GmjeNObd', '5910526'), + (81396, 932, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GmjeNObd', '5910528'), + (81397, 932, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GmjeNObd', '5916219'), + (81398, 932, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GmjeNObd', '5936234'), + (81399, 932, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GmjeNObd', '5958351'), + (81400, 932, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GmjeNObd', '5959751'), + (81401, 932, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GmjeNObd', '5959755'), + (81402, 932, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GmjeNObd', '5960055'), + (81403, 932, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GmjeNObd', '5961684'), + (81404, 932, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GmjeNObd', '5962132'), + (81405, 932, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GmjeNObd', '5962133'), + (81406, 932, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GmjeNObd', '5962134'), + (81407, 932, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GmjeNObd', '5962317'), + (81408, 932, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GmjeNObd', '5962318'), + (81409, 932, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GmjeNObd', '5965933'), + (81410, 932, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GmjeNObd', '5967014'), + (81411, 932, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GmjeNObd', '5972815'), + (81412, 932, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GmjeNObd', '5974016'), + (81413, 932, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GmjeNObd', '5981515'), + (81414, 932, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GmjeNObd', '5993516'), + (81415, 932, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GmjeNObd', '5998939'), + (81416, 932, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GmjeNObd', '6028191'), + (81417, 932, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GmjeNObd', '6040066'), + (81418, 932, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GmjeNObd', '6042717'), + (81419, 932, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GmjeNObd', '6044838'), + (81420, 932, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GmjeNObd', '6044839'), + (81421, 932, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjeNObd', '6045684'), + (81422, 932, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GmjeNObd', '6050104'), + (81423, 932, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GmjeNObd', '6053195'), + (81424, 932, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GmjeNObd', '6053198'), + (81425, 932, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GmjeNObd', '6056085'), + (81426, 932, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GmjeNObd', '6056916'), + (81427, 932, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GmjeNObd', '6059290'), + (81428, 932, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GmjeNObd', '6060328'), + (81429, 932, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GmjeNObd', '6061037'), + (81430, 932, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GmjeNObd', '6061039'), + (81431, 932, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GmjeNObd', '6067245'), + (81432, 932, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GmjeNObd', '6068094'), + (81433, 932, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GmjeNObd', '6068252'), + (81434, 932, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GmjeNObd', '6068253'), + (81435, 932, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GmjeNObd', '6068254'), + (81436, 932, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GmjeNObd', '6068280'), + (81437, 932, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GmjeNObd', '6069093'), + (81438, 932, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GmjeNObd', '6072528'), + (81439, 932, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GmjeNObd', '6079840'), + (81440, 932, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GmjeNObd', '6083398'), + (81441, 932, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GmjeNObd', '6093504'), + (81442, 932, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GmjeNObd', '6097414'), + (81443, 932, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GmjeNObd', '6097442'), + (81444, 932, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GmjeNObd', '6097684'), + (81445, 932, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GmjeNObd', '6098762'), + (81446, 932, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GmjeNObd', '6101361'), + (81447, 932, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GmjeNObd', '6101362'), + (81448, 932, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GmjeNObd', '6107314'), + (81449, 932, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GmjeNObd', '6120034'), + (81450, 932, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GmjeNObd', '6136733'), + (81451, 932, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GmjeNObd', '6137989'), + (81452, 932, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GmjeNObd', '6150864'), + (81453, 932, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GmjeNObd', '6155491'), + (81454, 932, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GmjeNObd', '6164417'), + (81455, 932, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GmjeNObd', '6166388'), + (81456, 932, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GmjeNObd', '6176439'), + (81457, 932, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GmjeNObd', '6182410'), + (81458, 932, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GmjeNObd', '6185812'), + (81459, 932, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GmjeNObd', '6187651'), + (81460, 932, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GmjeNObd', '6187963'), + (81461, 932, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GmjeNObd', '6187964'), + (81462, 932, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GmjeNObd', '6187966'), + (81463, 932, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GmjeNObd', '6187967'), + (81464, 932, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GmjeNObd', '6187969'), + (81465, 932, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GmjeNObd', '6334878'), + (81466, 932, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GmjeNObd', '6337236'), + (81467, 932, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GmjeNObd', '6337970'), + (81468, 932, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GmjeNObd', '6338308'), + (81469, 932, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GmjeNObd', '6341710'), + (81470, 932, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GmjeNObd', '6342044'), + (81471, 932, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GmjeNObd', '6342298'), + (81472, 932, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GmjeNObd', '6343294'), + (81473, 932, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GmjeNObd', '6347034'), + (81474, 932, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GmjeNObd', '6347056'), + (81475, 932, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GmjeNObd', '6353830'), + (81476, 932, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GmjeNObd', '6353831'), + (81477, 932, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GmjeNObd', '6357867'), + (81478, 932, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GmjeNObd', '6358652'), + (81479, 932, 2204, 'attending', '2023-08-19 20:31:09', '2025-12-17 19:46:55', 'GmjeNObd', '6361542'), + (81480, 932, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GmjeNObd', '6361709'), + (81481, 932, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GmjeNObd', '6361710'), + (81482, 932, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GmjeNObd', '6361711'), + (81483, 932, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GmjeNObd', '6361712'), + (81484, 932, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GmjeNObd', '6361713'), + (81485, 932, 2232, 'attending', '2023-08-26 20:59:39', '2025-12-17 19:46:55', 'GmjeNObd', '6374818'), + (81486, 932, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'GmjeNObd', '6382573'), + (81487, 932, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'GmjeNObd', '6388604'), + (81488, 932, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GmjeNObd', '6394629'), + (81489, 932, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GmjeNObd', '6394631'), + (81490, 932, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GmjeNObd', '6440863'), + (81491, 932, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GmjeNObd', '6445440'), + (81492, 932, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GmjeNObd', '6453951'), + (81493, 932, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GmjeNObd', '6461696'), + (81494, 932, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GmjeNObd', '6462129'), + (81495, 932, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GmjeNObd', '6463218'), + (81496, 932, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GmjeNObd', '6472181'), + (81497, 932, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GmjeNObd', '6482693'), + (81498, 932, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GmjeNObd', '6484200'), + (81499, 932, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'GmjeNObd', '6484680'), + (81500, 932, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GmjeNObd', '6507741'), + (81501, 932, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GmjeNObd', '6514659'), + (81502, 932, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GmjeNObd', '6514660'), + (81503, 932, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GmjeNObd', '6519103'), + (81504, 932, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GmjeNObd', '6535681'), + (81505, 932, 2338, 'attending', '2023-11-26 00:05:24', '2025-12-17 19:46:48', 'GmjeNObd', '6538868'), + (81506, 932, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GmjeNObd', '6584747'), + (81507, 932, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GmjeNObd', '6587097'), + (81508, 932, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GmjeNObd', '6609022'), + (81509, 932, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'GmjeNObd', '6632757'), + (81510, 932, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GmjeNObd', '6644187'), + (81511, 932, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GmjeNObd', '6648951'), + (81512, 932, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GmjeNObd', '6648952'), + (81513, 932, 2388, 'attending', '2024-01-07 00:31:40', '2025-12-17 19:46:37', 'GmjeNObd', '6649244'), + (81514, 932, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GmjeNObd', '6655401'), + (81515, 932, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GmjeNObd', '6661585'), + (81516, 932, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GmjeNObd', '6661588'), + (81517, 932, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GmjeNObd', '6661589'), + (81518, 932, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GmjeNObd', '6699906'), + (81519, 932, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GmjeNObd', '6699913'), + (81520, 932, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GmjeNObd', '6701109'), + (81521, 932, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GmjeNObd', '6705219'), + (81522, 932, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GmjeNObd', '6710153'), + (81523, 932, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GmjeNObd', '6711552'), + (81524, 932, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GmjeNObd', '6711553'), + (81525, 932, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GmjeNObd', '6722688'), + (81526, 932, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GmjeNObd', '6730620'), + (81527, 932, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GmjeNObd', '6740364'), + (81528, 932, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GmjeNObd', '6743829'), + (81529, 932, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GmjeNObd', '7030380'), + (81530, 932, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'GmjeNObd', '7033677'), + (81531, 932, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GmjeNObd', '7044715'), + (81532, 932, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GmjeNObd', '7050318'), + (81533, 932, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GmjeNObd', '7050319'), + (81534, 932, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GmjeNObd', '7050322'), + (81535, 932, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GmjeNObd', '7057804'), + (81536, 932, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GmjeNObd', '7072824'), + (81537, 932, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GmjeNObd', '7074348'), + (81538, 932, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GmjeNObd', '7089267'), + (81539, 932, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GmjeNObd', '7098747'), + (81540, 932, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GmjeNObd', '7113468'), + (81541, 932, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GmjeNObd', '7114856'), + (81542, 932, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GmjeNObd', '7114951'), + (81543, 932, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GmjeNObd', '7114955'), + (81544, 932, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GmjeNObd', '7114956'), + (81545, 932, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GmjeNObd', '7114957'), + (81546, 932, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GmjeNObd', '7159484'), + (81547, 932, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GmjeNObd', '7178446'), + (81548, 932, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GmjeNObd', '7220467'), + (81549, 932, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GmjeNObd', '7240354'), + (81550, 932, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GmjeNObd', '7251633'), + (81551, 932, 2626, 'attending', '2024-05-17 02:21:52', '2025-12-17 19:46:35', 'GmjeNObd', '7264723'), + (81552, 932, 2627, 'attending', '2024-05-20 23:48:57', '2025-12-17 19:46:35', 'GmjeNObd', '7264724'), + (81553, 932, 2628, 'attending', '2024-06-01 20:58:12', '2025-12-17 19:46:36', 'GmjeNObd', '7264725'), + (81554, 932, 2629, 'attending', '2024-06-08 21:53:14', '2025-12-17 19:46:28', 'GmjeNObd', '7264726'), + (81555, 932, 2647, 'attending', '2024-06-09 20:02:11', '2025-12-17 19:46:28', 'GmjeNObd', '7282057'), + (81556, 932, 2649, 'not_attending', '2024-05-28 19:55:33', '2025-12-17 19:46:35', 'GmjeNObd', '7282950'), + (81557, 932, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'GmjeNObd', '7302674'), + (81558, 932, 2678, 'attending', '2024-06-15 22:44:21', '2025-12-17 19:46:28', 'GmjeNObd', '7319489'), + (81559, 932, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GmjeNObd', '7324073'), + (81560, 932, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GmjeNObd', '7324074'), + (81561, 933, 1379, 'not_attending', '2022-05-21 22:15:48', '2025-12-17 19:47:30', 'mR695gEm', '5271449'), + (81562, 933, 1380, 'not_attending', '2022-05-26 21:39:17', '2025-12-17 19:47:30', 'mR695gEm', '5271450'), + (81563, 933, 1400, 'attending', '2022-05-10 02:23:25', '2025-12-17 19:47:29', 'mR695gEm', '5284864'), + (81564, 933, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mR695gEm', '5363695'), + (81565, 933, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mR695gEm', '5365960'), + (81566, 933, 1410, 'not_attending', '2022-05-17 17:52:29', '2025-12-17 19:47:29', 'mR695gEm', '5367530'), + (81567, 933, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'mR695gEm', '5368973'), + (81568, 933, 1424, 'attending', '2022-05-23 23:11:30', '2025-12-17 19:47:30', 'mR695gEm', '5375772'), + (81569, 933, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mR695gEm', '5378247'), + (81570, 933, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'mR695gEm', '5389605'), + (81571, 933, 1442, 'not_attending', '2022-06-18 15:35:52', '2025-12-17 19:47:17', 'mR695gEm', '5397265'), + (81572, 933, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mR695gEm', '5403967'), + (81573, 933, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mR695gEm', '5404786'), + (81574, 933, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mR695gEm', '5405203'), + (81575, 933, 1476, 'attending', '2022-06-19 19:21:12', '2025-12-17 19:47:17', 'mR695gEm', '5408130'), + (81576, 933, 1478, 'not_attending', '2022-06-24 13:45:06', '2025-12-17 19:47:19', 'mR695gEm', '5408794'), + (81577, 933, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'mR695gEm', '5411699'), + (81578, 933, 1482, 'attending', '2022-06-24 13:45:12', '2025-12-17 19:47:19', 'mR695gEm', '5412550'), + (81579, 933, 1484, 'not_attending', '2022-06-21 12:39:39', '2025-12-17 19:47:17', 'mR695gEm', '5415046'), + (81580, 933, 1488, 'not_attending', '2022-07-05 22:36:07', '2025-12-17 19:47:19', 'mR695gEm', '5420154'), + (81581, 933, 1490, 'maybe', '2022-07-01 13:17:12', '2025-12-17 19:47:19', 'mR695gEm', '5420156'), + (81582, 933, 1495, 'maybe', '2022-07-01 13:21:03', '2025-12-17 19:47:19', 'mR695gEm', '5422086'), + (81583, 933, 1496, 'attending', '2022-06-26 20:19:47', '2025-12-17 19:47:19', 'mR695gEm', '5422404'), + (81584, 933, 1497, 'attending', '2022-06-26 20:19:53', '2025-12-17 19:47:19', 'mR695gEm', '5422405'), + (81585, 933, 1498, 'not_attending', '2022-07-02 22:45:58', '2025-12-17 19:47:19', 'mR695gEm', '5422406'), + (81586, 933, 1500, 'maybe', '2022-07-01 13:17:16', '2025-12-17 19:47:19', 'mR695gEm', '5423915'), + (81587, 933, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'mR695gEm', '5424565'), + (81588, 933, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'mR695gEm', '5426882'), + (81589, 933, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'mR695gEm', '5427083'), + (81590, 933, 1509, 'attending', '2022-07-06 22:03:12', '2025-12-17 19:47:19', 'mR695gEm', '5434019'), + (81591, 933, 1511, 'attending', '2022-07-07 02:19:33', '2025-12-17 19:47:19', 'mR695gEm', '5437733'), + (81592, 933, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'mR695gEm', '5441125'), + (81593, 933, 1514, 'attending', '2022-07-19 14:27:44', '2025-12-17 19:47:20', 'mR695gEm', '5441126'), + (81594, 933, 1515, 'attending', '2022-08-04 13:38:38', '2025-12-17 19:47:21', 'mR695gEm', '5441128'), + (81595, 933, 1516, 'attending', '2022-08-19 18:23:09', '2025-12-17 19:47:23', 'mR695gEm', '5441129'), + (81596, 933, 1517, 'attending', '2022-08-26 11:35:34', '2025-12-17 19:47:23', 'mR695gEm', '5441130'), + (81597, 933, 1518, 'attending', '2022-08-30 18:45:03', '2025-12-17 19:47:24', 'mR695gEm', '5441131'), + (81598, 933, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'mR695gEm', '5441132'), + (81599, 933, 1522, 'not_attending', '2022-07-16 18:07:54', '2025-12-17 19:47:20', 'mR695gEm', '5442832'), + (81600, 933, 1528, 'attending', '2022-07-14 13:56:59', '2025-12-17 19:47:20', 'mR695gEm', '5446643'), + (81601, 933, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'mR695gEm', '5453325'), + (81602, 933, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mR695gEm', '5454516'), + (81603, 933, 1544, 'attending', '2022-09-11 18:50:00', '2025-12-17 19:47:11', 'mR695gEm', '5454517'), + (81604, 933, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mR695gEm', '5454605'), + (81605, 933, 1546, 'attending', '2022-07-27 17:34:02', '2025-12-17 19:47:20', 'mR695gEm', '5454607'), + (81606, 933, 1547, 'attending', '2022-07-23 18:55:13', '2025-12-17 19:47:20', 'mR695gEm', '5454608'), + (81607, 933, 1550, 'attending', '2022-07-22 02:21:21', '2025-12-17 19:47:20', 'mR695gEm', '5454803'), + (81608, 933, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mR695gEm', '5455037'), + (81609, 933, 1553, 'attending', '2022-07-19 23:02:15', '2025-12-17 19:47:20', 'mR695gEm', '5455164'), + (81610, 933, 1557, 'not_attending', '2022-08-01 04:08:56', '2025-12-17 19:47:21', 'mR695gEm', '5458729'), + (81611, 933, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mR695gEm', '5461278'), + (81612, 933, 1562, 'maybe', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mR695gEm', '5469480'), + (81613, 933, 1565, 'maybe', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mR695gEm', '5471073'), + (81614, 933, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'mR695gEm', '5474663'), + (81615, 933, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mR695gEm', '5482022'), + (81616, 933, 1574, 'maybe', '2022-08-07 17:43:18', '2025-12-17 19:47:22', 'mR695gEm', '5482153'), + (81617, 933, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mR695gEm', '5482793'), + (81618, 933, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mR695gEm', '5488912'), + (81619, 933, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mR695gEm', '5492192'), + (81620, 933, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mR695gEm', '5493139'), + (81621, 933, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mR695gEm', '5493200'), + (81622, 933, 1592, 'maybe', '2022-08-09 21:46:35', '2025-12-17 19:47:22', 'mR695gEm', '5494031'), + (81623, 933, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mR695gEm', '5502188'), + (81624, 933, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mR695gEm', '5505059'), + (81625, 933, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mR695gEm', '5509055'), + (81626, 933, 1618, 'attending', '2022-08-28 20:32:32', '2025-12-17 19:47:23', 'mR695gEm', '5512005'), + (81627, 933, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mR695gEm', '5512862'), + (81628, 933, 1624, 'maybe', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mR695gEm', '5513985'), + (81629, 933, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'mR695gEm', '5519981'), + (81630, 933, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'mR695gEm', '5522550'), + (81631, 933, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mR695gEm', '5534683'), + (81632, 933, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'mR695gEm', '5537735'), + (81633, 933, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mR695gEm', '5540859'), + (81634, 933, 1644, 'not_attending', '2022-09-18 17:16:14', '2025-12-17 19:47:11', 'mR695gEm', '5545857'), + (81635, 933, 1645, 'maybe', '2022-09-10 00:37:46', '2025-12-17 19:47:25', 'mR695gEm', '5546559'), + (81636, 933, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mR695gEm', '5546619'), + (81637, 933, 1652, 'attending', '2022-09-09 00:16:08', '2025-12-17 19:47:24', 'mR695gEm', '5552671'), + (81638, 933, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mR695gEm', '5555245'), + (81639, 933, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mR695gEm', '5557747'), + (81640, 933, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mR695gEm', '5560255'), + (81641, 933, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mR695gEm', '5562906'), + (81642, 933, 1667, 'attending', '2022-09-22 15:45:17', '2025-12-17 19:47:11', 'mR695gEm', '5563221'), + (81643, 933, 1668, 'not_attending', '2022-09-29 11:20:33', '2025-12-17 19:47:12', 'mR695gEm', '5563222'), + (81644, 933, 1670, 'not_attending', '2022-09-17 13:06:54', '2025-12-17 19:47:11', 'mR695gEm', '5575076'), + (81645, 933, 1677, 'maybe', '2022-09-22 15:45:50', '2025-12-17 19:47:11', 'mR695gEm', '5600604'), + (81646, 933, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mR695gEm', '5605544'), + (81647, 933, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'mR695gEm', '5606737'), + (81648, 933, 1714, 'maybe', '2022-10-24 16:26:32', '2025-12-17 19:47:14', 'mR695gEm', '5622347'), + (81649, 933, 1718, 'maybe', '2022-10-18 13:19:09', '2025-12-17 19:47:12', 'mR695gEm', '5630907'), + (81650, 933, 1719, 'not_attending', '2022-10-06 15:56:40', '2025-12-17 19:47:12', 'mR695gEm', '5630958'), + (81651, 933, 1720, 'attending', '2022-10-15 15:42:12', '2025-12-17 19:47:12', 'mR695gEm', '5630959'), + (81652, 933, 1721, 'not_attending', '2022-10-17 03:54:40', '2025-12-17 19:47:13', 'mR695gEm', '5630960'), + (81653, 933, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mR695gEm', '5630961'), + (81654, 933, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mR695gEm', '5630962'), + (81655, 933, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mR695gEm', '5630966'), + (81656, 933, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mR695gEm', '5630967'), + (81657, 933, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mR695gEm', '5630968'), + (81658, 933, 1727, 'attending', '2022-12-01 22:46:14', '2025-12-17 19:47:16', 'mR695gEm', '5630969'), + (81659, 933, 1728, 'maybe', '2022-12-09 15:10:22', '2025-12-17 19:47:17', 'mR695gEm', '5630970'), + (81660, 933, 1730, 'attending', '2022-10-06 15:58:45', '2025-12-17 19:47:12', 'mR695gEm', '5634666'), + (81661, 933, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mR695gEm', '5635406'), + (81662, 933, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mR695gEm', '5638765'), + (81663, 933, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mR695gEm', '5640097'), + (81664, 933, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mR695gEm', '5640843'), + (81665, 933, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mR695gEm', '5641521'), + (81666, 933, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mR695gEm', '5642818'), + (81667, 933, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mR695gEm', '5652395'), + (81668, 933, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mR695gEm', '5670445'), + (81669, 933, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mR695gEm', '5671637'), + (81670, 933, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mR695gEm', '5672329'), + (81671, 933, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mR695gEm', '5674057'), + (81672, 933, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mR695gEm', '5674060'), + (81673, 933, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mR695gEm', '5677461'), + (81674, 933, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mR695gEm', '5698046'), + (81675, 933, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mR695gEm', '5699760'), + (81676, 933, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mR695gEm', '5741601'), + (81677, 933, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mR695gEm', '5763458'), + (81678, 933, 1812, 'attending', '2023-03-10 12:54:14', '2025-12-17 19:47:09', 'mR695gEm', '5764682'), + (81679, 933, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mR695gEm', '5774172'), + (81680, 933, 1829, 'maybe', '2022-12-01 22:46:37', '2025-12-17 19:47:16', 'mR695gEm', '5778867'), + (81681, 933, 1830, 'maybe', '2022-11-29 22:34:45', '2025-12-17 19:47:16', 'mR695gEm', '5778871'), + (81682, 933, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mR695gEm', '5818247'), + (81683, 933, 1834, 'attending', '2022-12-10 11:56:16', '2025-12-17 19:47:17', 'mR695gEm', '5819470'), + (81684, 933, 1835, 'attending', '2023-01-03 03:36:48', '2025-12-17 19:47:05', 'mR695gEm', '5819471'), + (81685, 933, 1841, 'attending', '2023-01-03 03:36:53', '2025-12-17 19:47:05', 'mR695gEm', '5827665'), + (81686, 933, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'mR695gEm', '5827739'), + (81687, 933, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mR695gEm', '5844306'), + (81688, 933, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mR695gEm', '5850159'), + (81689, 933, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mR695gEm', '5858999'), + (81690, 933, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mR695gEm', '5871984'), + (81691, 933, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mR695gEm', '5876354'), + (81692, 933, 1864, 'attending', '2023-01-17 03:40:40', '2025-12-17 19:47:05', 'mR695gEm', '5879675'), + (81693, 933, 1865, 'attending', '2023-01-27 14:23:06', '2025-12-17 19:47:06', 'mR695gEm', '5879676'), + (81694, 933, 1866, 'attending', '2023-01-17 03:40:32', '2025-12-17 19:47:05', 'mR695gEm', '5880939'), + (81695, 933, 1868, 'attending', '2023-02-22 00:24:50', '2025-12-17 19:47:07', 'mR695gEm', '5880942'), + (81696, 933, 1873, 'attending', '2023-01-20 00:49:51', '2025-12-17 19:47:05', 'mR695gEm', '5885295'), + (81697, 933, 1874, 'maybe', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mR695gEm', '5887890'), + (81698, 933, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mR695gEm', '5888598'), + (81699, 933, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mR695gEm', '5893260'), + (81700, 933, 1881, 'attending', '2023-02-12 19:57:47', '2025-12-17 19:47:07', 'mR695gEm', '5894218'), + (81701, 933, 1884, 'attending', '2023-01-30 21:30:15', '2025-12-17 19:47:06', 'mR695gEm', '5899826'), + (81702, 933, 1885, 'maybe', '2023-02-23 15:09:17', '2025-12-17 19:47:08', 'mR695gEm', '5899928'), + (81703, 933, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'mR695gEm', '5900199'), + (81704, 933, 1890, 'maybe', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'mR695gEm', '5900200'), + (81705, 933, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'mR695gEm', '5900202'), + (81706, 933, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'mR695gEm', '5900203'), + (81707, 933, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'mR695gEm', '5901108'), + (81708, 933, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'mR695gEm', '5901126'), + (81709, 933, 1897, 'attending', '2023-02-10 18:29:31', '2025-12-17 19:47:07', 'mR695gEm', '5901128'), + (81710, 933, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'mR695gEm', '5909655'), + (81711, 933, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'mR695gEm', '5910522'), + (81712, 933, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'mR695gEm', '5910526'), + (81713, 933, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'mR695gEm', '5910528'), + (81714, 933, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'mR695gEm', '5916219'), + (81715, 933, 1929, 'maybe', '2023-02-19 22:05:54', '2025-12-17 19:47:07', 'mR695gEm', '5932628'), + (81716, 933, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'mR695gEm', '5936234'), + (81717, 933, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'mR695gEm', '5958351'), + (81718, 933, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'mR695gEm', '5959751'), + (81719, 933, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'mR695gEm', '5959755'), + (81720, 933, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'mR695gEm', '5960055'), + (81721, 933, 1941, 'maybe', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'mR695gEm', '5961684'), + (81722, 933, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'mR695gEm', '5962132'), + (81723, 933, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'mR695gEm', '5962133'), + (81724, 933, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'mR695gEm', '5962134'), + (81725, 933, 1947, 'not_attending', '2023-02-26 00:00:13', '2025-12-17 19:47:09', 'mR695gEm', '5962233'), + (81726, 933, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'mR695gEm', '5962317'), + (81727, 933, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'mR695gEm', '5962318'), + (81728, 933, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'mR695gEm', '5965933'), + (81729, 933, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'mR695gEm', '5967014'), + (81730, 933, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'mR695gEm', '5972763'), + (81731, 933, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'mR695gEm', '5972815'), + (81732, 933, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'mR695gEm', '5974016'), + (81733, 933, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'mR695gEm', '5981515'), + (81734, 933, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'mR695gEm', '5993516'), + (81735, 933, 1972, 'not_attending', '2023-03-17 00:30:57', '2025-12-17 19:46:56', 'mR695gEm', '5993776'), + (81736, 933, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'mR695gEm', '5998939'), + (81737, 933, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'mR695gEm', '6028191'), + (81738, 933, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'mR695gEm', '6040066'), + (81739, 933, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'mR695gEm', '6042717'), + (81740, 933, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR695gEm', '6045684'), + (81741, 933, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'mR695gEm', '6050104'), + (81742, 933, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'mR695gEm', '6053195'), + (81743, 933, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'mR695gEm', '6053198'), + (81744, 933, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'mR695gEm', '6056085'), + (81745, 933, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'mR695gEm', '6056916'), + (81746, 933, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'mR695gEm', '6059290'), + (81747, 933, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'mR695gEm', '6060328'), + (81748, 933, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'mR695gEm', '6061037'), + (81749, 933, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'mR695gEm', '6061039'), + (81750, 933, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'mR695gEm', '6067245'), + (81751, 933, 2025, 'attending', '2023-04-17 20:33:17', '2025-12-17 19:47:00', 'mR695gEm', '6067457'), + (81752, 933, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'mR695gEm', '6068094'), + (81753, 933, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'mR695gEm', '6068252'), + (81754, 933, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'mR695gEm', '6068253'), + (81755, 933, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'mR695gEm', '6068254'), + (81756, 933, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'mR695gEm', '6068280'), + (81757, 933, 2032, 'attending', '2023-06-02 18:56:58', '2025-12-17 19:47:04', 'mR695gEm', '6068281'), + (81758, 933, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'mR695gEm', '6069093'), + (81759, 933, 2039, 'not_attending', '2023-04-23 21:09:03', '2025-12-17 19:47:01', 'mR695gEm', '6072398'), + (81760, 933, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'mR695gEm', '6072528'), + (81761, 933, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'mR695gEm', '6079840'), + (81762, 933, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'mR695gEm', '6083398'), + (81763, 933, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'mR695gEm', '6093504'), + (81764, 933, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'mR695gEm', '6097414'), + (81765, 933, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'mR695gEm', '6097442'), + (81766, 933, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'mR695gEm', '6097684'), + (81767, 933, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'mR695gEm', '6098762'), + (81768, 933, 2064, 'not_attending', '2023-06-24 22:26:36', '2025-12-17 19:46:50', 'mR695gEm', '6099988'), + (81769, 933, 2065, 'not_attending', '2023-06-17 18:08:40', '2025-12-17 19:46:49', 'mR695gEm', '6101169'), + (81770, 933, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'mR695gEm', '6101361'), + (81771, 933, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'mR695gEm', '6101362'), + (81772, 933, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'mR695gEm', '6103752'), + (81773, 933, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'mR695gEm', '6107314'), + (81774, 933, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'mR695gEm', '6120034'), + (81775, 933, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'mR695gEm', '6136733'), + (81776, 933, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'mR695gEm', '6137989'), + (81777, 933, 2108, 'maybe', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'mR695gEm', '6150864'), + (81778, 933, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'mR695gEm', '6155491'), + (81779, 933, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'mR695gEm', '6164417'), + (81780, 933, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'mR695gEm', '6166388'), + (81781, 933, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'mR695gEm', '6176439'), + (81782, 933, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'mR695gEm', '6182410'), + (81783, 933, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'mR695gEm', '6185812'), + (81784, 933, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'mR695gEm', '6187651'), + (81785, 933, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'mR695gEm', '6187963'), + (81786, 933, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'mR695gEm', '6187964'), + (81787, 933, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'mR695gEm', '6187966'), + (81788, 933, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'mR695gEm', '6187967'), + (81789, 933, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'mR695gEm', '6187969'), + (81790, 933, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'mR695gEm', '6334878'), + (81791, 933, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'mR695gEm', '6337236'), + (81792, 933, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mR695gEm', '6337970'), + (81793, 933, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'mR695gEm', '6338308'), + (81794, 933, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'mR695gEm', '6340845'), + (81795, 933, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'mR695gEm', '6341710'), + (81796, 933, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mR695gEm', '6342044'), + (81797, 933, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'mR695gEm', '6342298'), + (81798, 933, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'mR695gEm', '6343294'), + (81799, 933, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mR695gEm', '6347034'), + (81800, 933, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mR695gEm', '6347056'), + (81801, 933, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mR695gEm', '6353830'), + (81802, 933, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mR695gEm', '6353831'), + (81803, 933, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mR695gEm', '6357867'), + (81804, 933, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mR695gEm', '6358652'), + (81805, 933, 2199, 'maybe', '2023-08-16 17:31:49', '2025-12-17 19:46:55', 'mR695gEm', '6359849'), + (81806, 933, 2200, 'maybe', '2023-08-10 21:32:08', '2025-12-17 19:46:55', 'mR695gEm', '6359850'), + (81807, 933, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'mR695gEm', '6361709'), + (81808, 933, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mR695gEm', '6361710'), + (81809, 933, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mR695gEm', '6361711'), + (81810, 933, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mR695gEm', '6361712'), + (81811, 933, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mR695gEm', '6361713'), + (81812, 933, 2215, 'maybe', '2023-08-11 19:59:18', '2025-12-17 19:46:55', 'mR695gEm', '6363479'), + (81813, 933, 2232, 'attending', '2023-08-26 18:11:20', '2025-12-17 19:46:55', 'mR695gEm', '6374818'), + (81814, 933, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mR695gEm', '6382573'), + (81815, 933, 2239, 'attending', '2023-08-31 22:07:01', '2025-12-17 19:46:56', 'mR695gEm', '6387592'), + (81816, 933, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'mR695gEm', '6388604'), + (81817, 933, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mR695gEm', '6394629'), + (81818, 933, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mR695gEm', '6394631'), + (81819, 933, 2253, 'attending', '2023-09-30 22:19:18', '2025-12-17 19:46:45', 'mR695gEm', '6401811'), + (81820, 933, 2262, 'maybe', '2023-10-01 14:01:28', '2025-12-17 19:46:45', 'mR695gEm', '6427423'), + (81821, 933, 2267, 'maybe', '2023-10-02 18:36:42', '2025-12-17 19:46:45', 'mR695gEm', '6440034'), + (81822, 933, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'mR695gEm', '6440863'), + (81823, 933, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'mR695gEm', '6445440'), + (81824, 933, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'mR695gEm', '6453951'), + (81825, 933, 2277, 'maybe', '2023-10-08 17:12:58', '2025-12-17 19:46:46', 'mR695gEm', '6455211'), + (81826, 933, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'mR695gEm', '6461696'), + (81827, 933, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'mR695gEm', '6462129'), + (81828, 933, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'mR695gEm', '6463218'), + (81829, 933, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'mR695gEm', '6472181'), + (81830, 933, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'mR695gEm', '6482693'), + (81831, 933, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'mR695gEm', '6484200'), + (81832, 933, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'mR695gEm', '6484680'), + (81833, 933, 2310, 'attending', '2023-11-09 17:51:42', '2025-12-17 19:46:47', 'mR695gEm', '6487709'), + (81834, 933, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'mR695gEm', '6507741'), + (81835, 933, 2322, 'attending', '2023-11-17 22:24:50', '2025-12-17 19:46:48', 'mR695gEm', '6514659'), + (81836, 933, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'mR695gEm', '6514660'), + (81837, 933, 2324, 'attending', '2023-12-09 20:23:44', '2025-12-17 19:46:49', 'mR695gEm', '6514662'), + (81838, 933, 2325, 'attending', '2023-12-13 16:45:46', '2025-12-17 19:46:36', 'mR695gEm', '6514663'), + (81839, 933, 2326, 'maybe', '2023-11-06 21:16:23', '2025-12-17 19:46:48', 'mR695gEm', '6514805'), + (81840, 933, 2332, 'attending', '2023-11-03 20:51:14', '2025-12-17 19:46:47', 'mR695gEm', '6518655'), + (81841, 933, 2333, 'attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'mR695gEm', '6519103'), + (81842, 933, 2335, 'not_attending', '2023-11-09 17:49:01', '2025-12-17 19:46:47', 'mR695gEm', '6534890'), + (81843, 933, 2337, 'not_attending', '2023-11-08 01:11:38', '2025-12-17 19:46:48', 'mR695gEm', '6535681'), + (81844, 933, 2340, 'attending', '2023-11-22 00:01:38', '2025-12-17 19:46:48', 'mR695gEm', '6540279'), + (81845, 933, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'mR695gEm', '6584747'), + (81846, 933, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'mR695gEm', '6587097'), + (81847, 933, 2355, 'attending', '2023-12-04 23:06:28', '2025-12-17 19:46:49', 'mR695gEm', '6593339'), + (81848, 933, 2363, 'attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'mR695gEm', '6609022'), + (81849, 933, 2365, 'attending', '2023-12-23 03:15:23', '2025-12-17 19:46:37', 'mR695gEm', '6613093'), + (81850, 933, 2368, 'not_attending', '2023-12-14 16:29:37', '2025-12-17 19:46:36', 'mR695gEm', '6621445'), + (81851, 933, 2371, 'maybe', '2023-12-15 21:17:04', '2025-12-17 19:46:36', 'mR695gEm', '6624495'), + (81852, 933, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'mR695gEm', '6632757'), + (81853, 933, 2379, 'attending', '2024-01-03 17:29:47', '2025-12-17 19:46:37', 'mR695gEm', '6644187'), + (81854, 933, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'mR695gEm', '6648951'), + (81855, 933, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'mR695gEm', '6648952'), + (81856, 933, 2388, 'attending', '2024-01-06 16:02:35', '2025-12-17 19:46:37', 'mR695gEm', '6649244'), + (81857, 933, 2395, 'attending', '2024-01-17 00:22:42', '2025-12-17 19:46:38', 'mR695gEm', '6654471'), + (81858, 933, 2396, 'attending', '2024-01-16 14:31:43', '2025-12-17 19:46:38', 'mR695gEm', '6655401'), + (81859, 933, 2399, 'attending', '2024-01-11 17:19:50', '2025-12-17 19:46:38', 'mR695gEm', '6657583'), + (81860, 933, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'mR695gEm', '6661585'), + (81861, 933, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'mR695gEm', '6661588'), + (81862, 933, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'mR695gEm', '6661589'), + (81863, 933, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'mR695gEm', '6699906'), + (81864, 933, 2408, 'attending', '2024-01-25 20:34:55', '2025-12-17 19:46:40', 'mR695gEm', '6699907'), + (81865, 933, 2409, 'attending', '2024-01-31 00:21:53', '2025-12-17 19:46:41', 'mR695gEm', '6699909'), + (81866, 933, 2410, 'attending', '2024-02-08 00:35:50', '2025-12-17 19:46:41', 'mR695gEm', '6699911'), + (81867, 933, 2411, 'not_attending', '2024-02-16 16:39:59', '2025-12-17 19:46:42', 'mR695gEm', '6699913'), + (81868, 933, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'mR695gEm', '6701109'), + (81869, 933, 2425, 'maybe', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'mR695gEm', '6705219'), + (81870, 933, 2428, 'not_attending', '2024-01-21 05:55:21', '2025-12-17 19:46:40', 'mR695gEm', '6710153'), + (81871, 933, 2429, 'attending', '2024-01-24 00:52:26', '2025-12-17 19:46:40', 'mR695gEm', '6711552'), + (81872, 933, 2430, 'attending', '2024-01-25 22:13:44', '2025-12-17 19:46:40', 'mR695gEm', '6711553'), + (81873, 933, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'mR695gEm', '6722688'), + (81874, 933, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'mR695gEm', '6730620'), + (81875, 933, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'mR695gEm', '6730642'), + (81876, 933, 2444, 'attending', '2024-02-09 19:20:40', '2025-12-17 19:46:41', 'mR695gEm', '6734367'), + (81877, 933, 2445, 'attending', '2024-02-17 00:17:26', '2025-12-17 19:46:41', 'mR695gEm', '6734368'), + (81878, 933, 2446, 'attending', '2024-03-01 21:02:10', '2025-12-17 19:46:43', 'mR695gEm', '6734369'), + (81879, 933, 2449, 'attending', '2024-02-20 01:08:50', '2025-12-17 19:46:42', 'mR695gEm', '6735833'), + (81880, 933, 2453, 'attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'mR695gEm', '6740364'), + (81881, 933, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'mR695gEm', '6743829'), + (81882, 933, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'mR695gEm', '7030380'), + (81883, 933, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'mR695gEm', '7033677'), + (81884, 933, 2474, 'maybe', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'mR695gEm', '7035415'), + (81885, 933, 2477, 'not_attending', '2024-02-23 00:49:26', '2025-12-17 19:46:42', 'mR695gEm', '7035692'), + (81886, 933, 2480, 'maybe', '2024-02-24 08:29:33', '2025-12-17 19:46:43', 'mR695gEm', '7042160'), + (81887, 933, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'mR695gEm', '7044715'), + (81888, 933, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'mR695gEm', '7050318'), + (81889, 933, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'mR695gEm', '7050319'), + (81890, 933, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'mR695gEm', '7050322'), + (81891, 933, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'mR695gEm', '7057804'), + (81892, 933, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'mR695gEm', '7059866'), + (81893, 933, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'mR695gEm', '7072824'), + (81894, 933, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'mR695gEm', '7074348'), + (81895, 933, 2510, 'attending', '2024-03-21 22:02:41', '2025-12-17 19:46:33', 'mR695gEm', '7074350'), + (81896, 933, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'mR695gEm', '7074364'), + (81897, 933, 2526, 'attending', '2024-07-30 16:01:42', '2025-12-17 19:46:31', 'mR695gEm', '7074366'), + (81898, 933, 2532, 'attending', '2024-09-03 16:00:17', '2025-12-17 19:46:32', 'mR695gEm', '7074383'), + (81899, 933, 2537, 'attending', '2024-03-22 14:09:56', '2025-12-17 19:46:33', 'mR695gEm', '7085484'), + (81900, 933, 2538, 'attending', '2024-03-24 16:41:52', '2025-12-17 19:46:33', 'mR695gEm', '7085485'), + (81901, 933, 2539, 'attending', '2024-04-01 20:17:12', '2025-12-17 19:46:33', 'mR695gEm', '7085486'), + (81902, 933, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'mR695gEm', '7089267'), + (81903, 933, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'mR695gEm', '7098747'), + (81904, 933, 2553, 'attending', '2024-03-29 18:00:00', '2025-12-17 19:46:33', 'mR695gEm', '7113468'), + (81905, 933, 2554, 'attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'mR695gEm', '7114856'), + (81906, 933, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'mR695gEm', '7114951'), + (81907, 933, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'mR695gEm', '7114955'), + (81908, 933, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'mR695gEm', '7114956'), + (81909, 933, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'mR695gEm', '7114957'), + (81910, 933, 2560, 'maybe', '2024-04-09 12:34:20', '2025-12-17 19:46:33', 'mR695gEm', '7130086'), + (81911, 933, 2564, 'attending', '2024-04-06 20:05:56', '2025-12-17 19:46:33', 'mR695gEm', '7134735'), + (81912, 933, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'mR695gEm', '7153615'), + (81913, 933, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'mR695gEm', '7159484'), + (81914, 933, 2572, 'attending', '2024-04-13 20:27:37', '2025-12-17 19:46:33', 'mR695gEm', '7159522'), + (81915, 933, 2573, 'maybe', '2024-04-15 16:36:32', '2025-12-17 19:46:34', 'mR695gEm', '7160612'), + (81916, 933, 2576, 'attending', '2024-04-26 14:34:02', '2025-12-17 19:46:34', 'mR695gEm', '7164538'), + (81917, 933, 2582, 'attending', '2024-04-12 21:56:24', '2025-12-17 19:46:34', 'mR695gEm', '7169765'), + (81918, 933, 2584, 'attending', '2024-04-21 17:50:52', '2025-12-17 19:46:34', 'mR695gEm', '7175057'), + (81919, 933, 2585, 'attending', '2024-04-24 00:15:52', '2025-12-17 19:46:34', 'mR695gEm', '7175828'), + (81920, 933, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'mR695gEm', '7178446'), + (81921, 933, 2598, 'attending', '2024-04-22 01:03:09', '2025-12-17 19:46:34', 'mR695gEm', '7186731'), + (81922, 933, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'mR695gEm', '7220467'), + (81923, 933, 2607, 'not_attending', '2024-05-01 14:49:16', '2025-12-17 19:46:35', 'mR695gEm', '7240136'), + (81924, 933, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'mR695gEm', '7240354'), + (81925, 933, 2610, 'not_attending', '2024-05-02 00:06:50', '2025-12-17 19:46:35', 'mR695gEm', '7241797'), + (81926, 933, 2612, 'attending', '2024-05-08 17:04:21', '2025-12-17 19:46:35', 'mR695gEm', '7247643'), + (81927, 933, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'mR695gEm', '7251633'), + (81928, 933, 2619, 'maybe', '2024-05-07 13:38:54', '2025-12-17 19:46:35', 'mR695gEm', '7252965'), + (81929, 933, 2623, 'attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'mR695gEm', '7263048'), + (81930, 933, 2626, 'attending', '2024-05-13 18:44:53', '2025-12-17 19:46:35', 'mR695gEm', '7264723'), + (81931, 933, 2627, 'not_attending', '2024-05-25 01:22:26', '2025-12-17 19:46:35', 'mR695gEm', '7264724'), + (81932, 933, 2628, 'attending', '2024-06-01 21:09:20', '2025-12-17 19:46:36', 'mR695gEm', '7264725'), + (81933, 933, 2629, 'not_attending', '2024-06-08 02:12:10', '2025-12-17 19:46:28', 'mR695gEm', '7264726'), + (81934, 933, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'mR695gEm', '7302674'), + (81935, 933, 2678, 'attending', '2024-06-13 12:34:30', '2025-12-17 19:46:28', 'mR695gEm', '7319489'), + (81936, 933, 2679, 'attending', '2024-06-22 02:47:01', '2025-12-17 19:46:29', 'mR695gEm', '7319490'), + (81937, 933, 2685, 'attending', '2024-06-12 19:52:34', '2025-12-17 19:46:28', 'mR695gEm', '7322675'), + (81938, 933, 2688, 'attending', '2024-06-27 00:39:58', '2025-12-17 19:46:29', 'mR695gEm', '7324073'), + (81939, 933, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'mR695gEm', '7324074'), + (81940, 933, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'mR695gEm', '7324075'), + (81941, 933, 2691, 'attending', '2024-07-20 18:12:11', '2025-12-17 19:46:30', 'mR695gEm', '7324076'), + (81942, 933, 2692, 'attending', '2024-07-26 23:37:31', '2025-12-17 19:46:30', 'mR695gEm', '7324077'), + (81943, 933, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'mR695gEm', '7324078'), + (81944, 933, 2694, 'not_attending', '2024-08-09 20:14:31', '2025-12-17 19:46:31', 'mR695gEm', '7324079'), + (81945, 933, 2697, 'attending', '2024-08-31 14:54:33', '2025-12-17 19:46:32', 'mR695gEm', '7324082'), + (81946, 933, 2699, 'attending', '2024-06-12 18:54:56', '2025-12-17 19:46:28', 'mR695gEm', '7324385'), + (81947, 933, 2701, 'attending', '2024-06-28 15:28:37', '2025-12-17 19:46:29', 'mR695gEm', '7324391'), + (81948, 933, 2703, 'maybe', '2024-06-13 12:34:14', '2025-12-17 19:46:28', 'mR695gEm', '7324873'), + (81949, 933, 2711, 'maybe', '2024-07-19 13:27:17', '2025-12-17 19:46:30', 'mR695gEm', '7326524'), + (81950, 933, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'mR695gEm', '7331457'), + (81951, 933, 2723, 'maybe', '2024-06-21 20:39:21', '2025-12-17 19:46:29', 'mR695gEm', '7332389'), + (81952, 933, 2724, 'maybe', '2024-06-26 15:39:55', '2025-12-17 19:46:29', 'mR695gEm', '7332562'), + (81953, 933, 2737, 'maybe', '2024-07-02 18:28:14', '2025-12-17 19:46:29', 'mR695gEm', '7344070'), + (81954, 933, 2742, 'attending', '2024-07-02 17:02:54', '2025-12-17 19:46:29', 'mR695gEm', '7345167'), + (81955, 933, 2747, 'maybe', '2024-07-17 20:03:45', '2025-12-17 19:46:30', 'mR695gEm', '7353587'), + (81956, 933, 2755, 'maybe', '2024-07-09 15:58:18', '2025-12-17 19:46:29', 'mR695gEm', '7357808'), + (81957, 933, 2756, 'attending', '2024-07-10 01:53:33', '2025-12-17 19:46:29', 'mR695gEm', '7358329'), + (81958, 933, 2761, 'not_attending', '2024-07-17 13:42:54', '2025-12-17 19:46:30', 'mR695gEm', '7363412'), + (81959, 933, 2762, 'attending', '2024-07-14 15:31:49', '2025-12-17 19:46:30', 'mR695gEm', '7363413'), + (81960, 933, 2765, 'attending', '2024-07-16 20:56:24', '2025-12-17 19:46:30', 'mR695gEm', '7363604'), + (81961, 933, 2766, 'maybe', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'mR695gEm', '7363643'), + (81962, 933, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'mR695gEm', '7368606'), + (81963, 933, 2775, 'attending', '2024-07-25 15:40:58', '2025-12-17 19:46:30', 'mR695gEm', '7368642'), + (81964, 933, 2800, 'maybe', '2024-08-16 19:40:53', '2025-12-17 19:46:31', 'mR695gEm', '7397405'), + (81965, 933, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mR695gEm', '7397462'), + (81966, 933, 2821, 'attending', '2024-10-12 04:29:38', '2025-12-17 19:46:26', 'mR695gEm', '7424275'), + (81967, 933, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mR695gEm', '7424276'), + (81968, 933, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mR695gEm', '7432751'), + (81969, 933, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mR695gEm', '7432752'), + (81970, 933, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mR695gEm', '7432753'), + (81971, 933, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mR695gEm', '7432754'), + (81972, 933, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mR695gEm', '7432755'), + (81973, 933, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mR695gEm', '7432756'), + (81974, 933, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mR695gEm', '7432758'), + (81975, 933, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mR695gEm', '7432759'), + (81976, 933, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mR695gEm', '7433834'), + (81977, 933, 2857, 'maybe', '2024-10-24 18:57:59', '2025-12-17 19:46:26', 'mR695gEm', '7469387'), + (81978, 933, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'mR695gEm', '7470197'), + (81979, 933, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'mR695gEm', '7685613'), + (81980, 933, 2899, 'maybe', '2024-11-11 03:00:49', '2025-12-17 19:46:27', 'mR695gEm', '7685616'), + (81981, 933, 2903, 'attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mR695gEm', '7688194'), + (81982, 933, 2904, 'attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mR695gEm', '7688196'), + (81983, 933, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mR695gEm', '7688289'), + (81984, 933, 2908, 'not_attending', '2024-11-11 01:15:02', '2025-12-17 19:46:27', 'mR695gEm', '7689420'), + (81985, 933, 2912, 'attending', '2024-11-13 19:37:30', '2025-12-17 19:46:27', 'mR695gEm', '7692763'), + (81986, 933, 2913, 'attending', '2024-11-16 19:01:34', '2025-12-17 19:46:27', 'mR695gEm', '7697552'), + (81987, 933, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mR695gEm', '7699878'), + (81988, 933, 2919, 'attending', '2024-11-22 18:50:56', '2025-12-17 19:46:27', 'mR695gEm', '7704043'), + (81989, 933, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mR695gEm', '7712467'), + (81990, 933, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mR695gEm', '7713585'), + (81991, 933, 2927, 'attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mR695gEm', '7713586'), + (81992, 933, 2931, 'attending', '2024-12-07 20:13:09', '2025-12-17 19:46:21', 'mR695gEm', '7725490'), + (81993, 933, 2958, 'attending', '2024-12-18 21:23:29', '2025-12-17 19:46:21', 'mR695gEm', '7738518'), + (81994, 933, 2963, 'attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mR695gEm', '7750636'), + (81995, 933, 2964, 'attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mR695gEm', '7796540'), + (81996, 933, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mR695gEm', '7796541'), + (81997, 933, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mR695gEm', '7796542'), + (81998, 933, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mR695gEm', '7825913'), + (81999, 933, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mR695gEm', '7826209'), + (82000, 933, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mR695gEm', '7834742'), + (82001, 933, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mR695gEm', '7842108'), + (82002, 933, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mR695gEm', '7842902'), + (82003, 933, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mR695gEm', '7842903'), + (82004, 933, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mR695gEm', '7842904'), + (82005, 933, 2994, 'attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mR695gEm', '7842905'), + (82006, 933, 2995, 'not_attending', '2025-02-11 04:06:32', '2025-12-17 19:46:24', 'mR695gEm', '7842906'), + (82007, 933, 2998, 'not_attending', '2025-03-04 03:23:47', '2025-12-17 19:46:18', 'mR695gEm', '7842909'), + (82008, 933, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mR695gEm', '7855719'), + (82009, 933, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mR695gEm', '7860683'), + (82010, 933, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mR695gEm', '7860684'), + (82011, 933, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mR695gEm', '7866095'), + (82012, 933, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mR695gEm', '7869170'), + (82013, 933, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mR695gEm', '7869188'), + (82014, 933, 3023, 'not_attending', '2025-03-04 03:45:01', '2025-12-17 19:46:19', 'mR695gEm', '7869194'), + (82015, 933, 3024, 'not_attending', '2025-03-04 03:56:17', '2025-12-17 19:46:19', 'mR695gEm', '7869195'), + (82016, 933, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mR695gEm', '7869201'), + (82017, 933, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mR695gEm', '7877465'), + (82018, 933, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'mR695gEm', '7878570'), + (82019, 933, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mR695gEm', '7888250'), + (82020, 933, 3068, 'not_attending', '2025-03-30 22:47:02', '2025-12-17 19:46:19', 'mR695gEm', '7894823'), + (82021, 933, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mR695gEm', '8349164'), + (82022, 933, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mR695gEm', '8349545'), + (82023, 933, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mR695gEm', '8353584'), + (82024, 934, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dlO2Qkl4', '4210314'), + (82025, 934, 901, 'not_attending', '2021-07-31 16:26:33', '2025-12-17 19:47:40', 'dlO2Qkl4', '4240317'), + (82026, 934, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'dlO2Qkl4', '4240318'), + (82027, 934, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'dlO2Qkl4', '4240320'), + (82028, 934, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'dlO2Qkl4', '4302093'), + (82029, 934, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dlO2Qkl4', '4304151'), + (82030, 934, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dlO2Qkl4', '4345519'), + (82031, 934, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dlO2Qkl4', '4356801'), + (82032, 934, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'dlO2Qkl4', '4358025'), + (82033, 934, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dlO2Qkl4', '4366186'), + (82034, 934, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dlO2Qkl4', '4366187'), + (82035, 934, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'dlO2Qkl4', '4402823'), + (82036, 934, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dlO2Qkl4', '4420735'), + (82037, 934, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dlO2Qkl4', '4420738'), + (82038, 934, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dlO2Qkl4', '4420739'), + (82039, 934, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dlO2Qkl4', '4420741'), + (82040, 934, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dlO2Qkl4', '4420744'), + (82041, 934, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dlO2Qkl4', '4420747'), + (82042, 934, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dlO2Qkl4', '4420748'), + (82043, 934, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dlO2Qkl4', '4420749'), + (82044, 934, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dlO2Qkl4', '4461883'), + (82045, 934, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlO2Qkl4', '4508342'), + (82046, 934, 1361, 'attending', '2022-05-02 21:34:07', '2025-12-17 19:47:28', 'dlO2Qkl4', '5260491'), + (82047, 934, 1369, 'attending', '2022-05-10 22:44:46', '2025-12-17 19:47:28', 'dlO2Qkl4', '5262809'), + (82048, 934, 1372, 'attending', '2022-05-04 20:57:59', '2025-12-17 19:47:28', 'dlO2Qkl4', '5264352'), + (82049, 934, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dlO2Qkl4', '5269930'), + (82050, 934, 1375, 'attending', '2022-05-05 22:53:02', '2025-12-17 19:47:28', 'dlO2Qkl4', '5269932'), + (82051, 934, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dlO2Qkl4', '5271448'), + (82052, 934, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dlO2Qkl4', '5271449'), + (82053, 934, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dlO2Qkl4', '5276469'), + (82054, 934, 1384, 'attending', '2022-05-06 00:54:29', '2025-12-17 19:47:28', 'dlO2Qkl4', '5277078'), + (82055, 934, 1386, 'attending', '2022-05-06 00:54:34', '2025-12-17 19:47:28', 'dlO2Qkl4', '5278159'), + (82056, 934, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dlO2Qkl4', '5363695'), + (82057, 934, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dlO2Qkl4', '5365960'), + (82058, 934, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dlO2Qkl4', '5368973'), + (82059, 934, 1422, 'attending', '2022-05-23 18:39:18', '2025-12-17 19:47:30', 'dlO2Qkl4', '5375603'), + (82060, 934, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dlO2Qkl4', '5378247'), + (82061, 934, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'dlO2Qkl4', '5389605'), + (82062, 934, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dlO2Qkl4', '5397265'), + (82063, 934, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dlO2Qkl4', '5403967'), + (82064, 934, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dlO2Qkl4', '5404786'), + (82065, 934, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dlO2Qkl4', '5405203'), + (82066, 934, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dlO2Qkl4', '5411699'), + (82067, 934, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dlO2Qkl4', '5412550'), + (82068, 934, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dlO2Qkl4', '5415046'), + (82069, 934, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dlO2Qkl4', '5422086'), + (82070, 934, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dlO2Qkl4', '5422406'), + (82071, 934, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dlO2Qkl4', '5424565'), + (82072, 934, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dlO2Qkl4', '5426882'), + (82073, 934, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dlO2Qkl4', '5427083'), + (82074, 934, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dlO2Qkl4', '5441125'), + (82075, 934, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dlO2Qkl4', '5441126'), + (82076, 934, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dlO2Qkl4', '5441128'), + (82077, 934, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dlO2Qkl4', '5446643'), + (82078, 934, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dlO2Qkl4', '5453325'), + (82079, 934, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dlO2Qkl4', '5454516'), + (82080, 934, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dlO2Qkl4', '5454605'), + (82081, 934, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dlO2Qkl4', '5455037'), + (82082, 934, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dlO2Qkl4', '5461278'), + (82083, 934, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dlO2Qkl4', '5469480'), + (82084, 934, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dlO2Qkl4', '5471073'), + (82085, 934, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dlO2Qkl4', '5474663'), + (82086, 934, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dlO2Qkl4', '5482022'), + (82087, 934, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dlO2Qkl4', '5482793'), + (82088, 934, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dlO2Qkl4', '5488912'), + (82089, 934, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dlO2Qkl4', '5492192'), + (82090, 934, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dlO2Qkl4', '5493139'), + (82091, 934, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dlO2Qkl4', '5493200'), + (82092, 934, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dlO2Qkl4', '5502188'), + (82093, 934, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dlO2Qkl4', '5512862'), + (82094, 934, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dlO2Qkl4', '5513985'), + (82095, 934, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dlO2Qkl4', '6045684'), + (82096, 935, 1415, 'not_attending', '2022-05-20 03:46:21', '2025-12-17 19:47:30', '41WP2Vbm', '5368973'), + (82097, 935, 1419, 'attending', '2022-06-08 07:03:20', '2025-12-17 19:47:30', '41WP2Vbm', '5373081'), + (82098, 935, 1423, 'attending', '2022-06-15 20:04:33', '2025-12-17 19:47:17', '41WP2Vbm', '5375727'), + (82099, 935, 1427, 'not_attending', '2022-05-25 18:10:54', '2025-12-17 19:47:30', '41WP2Vbm', '5376074'), + (82100, 935, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41WP2Vbm', '5378247'), + (82101, 935, 1431, 'attending', '2022-06-08 07:03:53', '2025-12-17 19:47:30', '41WP2Vbm', '5389605'), + (82102, 935, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41WP2Vbm', '5397265'), + (82103, 935, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WP2Vbm', '5403967'), + (82104, 935, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WP2Vbm', '5404786'), + (82105, 935, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WP2Vbm', '5405203'), + (82106, 935, 1478, 'not_attending', '2022-06-15 20:05:21', '2025-12-17 19:47:19', '41WP2Vbm', '5408794'), + (82107, 935, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WP2Vbm', '5411699'), + (82108, 935, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WP2Vbm', '5412550'), + (82109, 935, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WP2Vbm', '5415046'), + (82110, 935, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WP2Vbm', '5422086'), + (82111, 935, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WP2Vbm', '5422406'), + (82112, 935, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WP2Vbm', '5424565'), + (82113, 935, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WP2Vbm', '5426882'), + (82114, 935, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WP2Vbm', '5427083'), + (82115, 935, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '41WP2Vbm', '5441125'), + (82116, 935, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WP2Vbm', '5441126'), + (82117, 935, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WP2Vbm', '5441128'), + (82118, 935, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '41WP2Vbm', '5441131'), + (82119, 935, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '41WP2Vbm', '5441132'), + (82120, 935, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WP2Vbm', '5446643'), + (82121, 935, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WP2Vbm', '5453325'), + (82122, 935, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WP2Vbm', '5454516'), + (82123, 935, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WP2Vbm', '5454605'), + (82124, 935, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WP2Vbm', '5455037'), + (82125, 935, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WP2Vbm', '5461278'), + (82126, 935, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WP2Vbm', '5469480'), + (82127, 935, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WP2Vbm', '5471073'), + (82128, 935, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41WP2Vbm', '5474663'), + (82129, 935, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WP2Vbm', '5482022'), + (82130, 935, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WP2Vbm', '5482793'), + (82131, 935, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WP2Vbm', '5488912'), + (82132, 935, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WP2Vbm', '5492192'), + (82133, 935, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WP2Vbm', '5493139'), + (82134, 935, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WP2Vbm', '5493200'), + (82135, 935, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WP2Vbm', '5502188'), + (82136, 935, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41WP2Vbm', '5505059'), + (82137, 935, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41WP2Vbm', '5509055'), + (82138, 935, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WP2Vbm', '5512862'), + (82139, 935, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WP2Vbm', '5513985'), + (82140, 935, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '41WP2Vbm', '5519981'), + (82141, 935, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41WP2Vbm', '5522550'), + (82142, 935, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41WP2Vbm', '5534683'), + (82143, 935, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41WP2Vbm', '5546619'), + (82144, 935, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41WP2Vbm', '5555245'), + (82145, 935, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41WP2Vbm', '5557747'), + (82146, 935, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WP2Vbm', '6045684'), + (82147, 936, 1281, 'not_attending', '2022-04-09 22:15:36', '2025-12-17 19:47:27', 'R40XbQV4', '5190437'), + (82148, 936, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'R40XbQV4', '5195095'), + (82149, 936, 1318, 'maybe', '2022-04-14 06:01:16', '2025-12-17 19:47:27', 'R40XbQV4', '5238343'), + (82150, 936, 1321, 'not_attending', '2022-04-21 23:37:25', '2025-12-17 19:47:27', 'R40XbQV4', '5238355'), + (82151, 936, 1322, 'attending', '2022-04-11 16:40:17', '2025-12-17 19:47:27', 'R40XbQV4', '5238356'), + (82152, 936, 1323, 'not_attending', '2022-04-27 00:15:44', '2025-12-17 19:47:27', 'R40XbQV4', '5238357'), + (82153, 936, 1325, 'not_attending', '2022-04-11 16:46:22', '2025-12-17 19:47:28', 'R40XbQV4', '5238361'), + (82154, 936, 1326, 'not_attending', '2022-04-11 16:46:44', '2025-12-17 19:47:28', 'R40XbQV4', '5238362'), + (82155, 936, 1327, 'not_attending', '2022-04-14 05:58:36', '2025-12-17 19:47:27', 'R40XbQV4', '5238445'), + (82156, 936, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'R40XbQV4', '5247467'), + (82157, 936, 1352, 'not_attending', '2022-05-05 22:56:16', '2025-12-17 19:47:28', 'R40XbQV4', '5251618'), + (82158, 936, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'R40XbQV4', '5260800'), + (82159, 936, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'R40XbQV4', '5269930'), + (82160, 936, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'R40XbQV4', '5271448'), + (82161, 936, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'R40XbQV4', '5271449'), + (82162, 936, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'R40XbQV4', '5276469'), + (82163, 936, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'R40XbQV4', '5277078'), + (82164, 936, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'R40XbQV4', '5278159'), + (82165, 936, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'R40XbQV4', '5363695'), + (82166, 936, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'R40XbQV4', '5365960'), + (82167, 936, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'R40XbQV4', '5368973'), + (82168, 936, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'R40XbQV4', '5378247'), + (82169, 936, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'R40XbQV4', '5389605'), + (82170, 936, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'R40XbQV4', '5397265'), + (82171, 936, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'R40XbQV4', '5403967'), + (82172, 936, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'R40XbQV4', '5404786'), + (82173, 936, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'R40XbQV4', '5405203'), + (82174, 936, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'R40XbQV4', '5411699'), + (82175, 936, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'R40XbQV4', '5412550'), + (82176, 936, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'R40XbQV4', '5415046'), + (82177, 936, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'R40XbQV4', '5422086'), + (82178, 936, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'R40XbQV4', '5422406'), + (82179, 936, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'R40XbQV4', '5424565'), + (82180, 936, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'R40XbQV4', '5426882'), + (82181, 936, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'R40XbQV4', '5427083'), + (82182, 936, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'R40XbQV4', '5441125'), + (82183, 936, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'R40XbQV4', '5441126'), + (82184, 936, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'R40XbQV4', '5441128'), + (82185, 936, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'R40XbQV4', '5446643'), + (82186, 936, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'R40XbQV4', '5453325'), + (82187, 936, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'R40XbQV4', '5454516'), + (82188, 936, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'R40XbQV4', '5454605'), + (82189, 936, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'R40XbQV4', '5455037'), + (82190, 936, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'R40XbQV4', '5461278'), + (82191, 936, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'R40XbQV4', '5469480'), + (82192, 936, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'R40XbQV4', '5471073'), + (82193, 936, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'R40XbQV4', '5474663'), + (82194, 936, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'R40XbQV4', '5482022'), + (82195, 936, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'R40XbQV4', '5482793'), + (82196, 936, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'R40XbQV4', '5488912'), + (82197, 936, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'R40XbQV4', '5492192'), + (82198, 936, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'R40XbQV4', '5493139'), + (82199, 936, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'R40XbQV4', '5493200'), + (82200, 936, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'R40XbQV4', '5502188'), + (82201, 936, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'R40XbQV4', '5512862'), + (82202, 936, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'R40XbQV4', '5513985'), + (82203, 936, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'R40XbQV4', '6045684'), + (82204, 937, 1315, 'not_attending', '2022-04-21 20:25:37', '2025-12-17 19:47:27', 'd2jMg0Xd', '5237522'), + (82205, 937, 1336, 'attending', '2022-04-19 22:23:37', '2025-12-17 19:47:27', 'd2jMg0Xd', '5244915'), + (82206, 937, 1350, 'attending', '2022-04-21 20:24:54', '2025-12-17 19:47:27', 'd2jMg0Xd', '5249763'), + (82207, 937, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'd2jMg0Xd', '5260800'), + (82208, 937, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'd2jMg0Xd', '5269930'), + (82209, 937, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'd2jMg0Xd', '5271448'), + (82210, 937, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'd2jMg0Xd', '5271449'), + (82211, 937, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'd2jMg0Xd', '5276469'), + (82212, 937, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'd2jMg0Xd', '5278159'), + (82213, 937, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2jMg0Xd', '6045684'), + (82214, 938, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '403vyByA', '7074364'), + (82215, 938, 2661, 'attending', '2024-06-16 14:15:49', '2025-12-17 19:46:28', '403vyByA', '7302674'), + (82216, 938, 2678, 'attending', '2024-06-15 19:41:21', '2025-12-17 19:46:28', '403vyByA', '7319489'), + (82217, 938, 2679, 'attending', '2024-06-20 01:22:42', '2025-12-17 19:46:29', '403vyByA', '7319490'), + (82218, 938, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '403vyByA', '7324073'), + (82219, 938, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '403vyByA', '7324074'), + (82220, 938, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '403vyByA', '7324075'), + (82221, 938, 2691, 'attending', '2024-07-20 22:19:12', '2025-12-17 19:46:30', '403vyByA', '7324076'), + (82222, 938, 2693, 'attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '403vyByA', '7324078'), + (82223, 938, 2695, 'attending', '2024-08-16 05:07:21', '2025-12-17 19:46:31', '403vyByA', '7324080'), + (82224, 938, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '403vyByA', '7324082'), + (82225, 938, 2706, 'attending', '2024-06-19 17:17:16', '2025-12-17 19:46:28', '403vyByA', '7324947'), + (82226, 938, 2714, 'attending', '2024-06-15 19:41:09', '2025-12-17 19:46:28', '403vyByA', '7326981'), + (82227, 938, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', '403vyByA', '7331457'), + (82228, 938, 2723, 'attending', '2024-06-21 21:46:10', '2025-12-17 19:46:29', '403vyByA', '7332389'), + (82229, 938, 2724, 'attending', '2024-06-26 19:39:57', '2025-12-17 19:46:29', '403vyByA', '7332562'), + (82230, 938, 2731, 'attending', '2024-06-22 23:08:59', '2025-12-17 19:46:29', '403vyByA', '7335303'), + (82231, 938, 2747, 'maybe', '2024-07-17 20:01:27', '2025-12-17 19:46:30', '403vyByA', '7353587'), + (82232, 938, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '403vyByA', '7356752'), + (82233, 938, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '403vyByA', '7363643'), + (82234, 938, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '403vyByA', '7368606'), + (82235, 938, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '403vyByA', '7397462'), + (82236, 938, 2821, 'attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '403vyByA', '7424275'), + (82237, 938, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '403vyByA', '7424276'), + (82238, 938, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '403vyByA', '7432751'), + (82239, 938, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '403vyByA', '7432752'), + (82240, 938, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '403vyByA', '7432753'), + (82241, 938, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '403vyByA', '7432754'), + (82242, 938, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '403vyByA', '7432755'), + (82243, 938, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '403vyByA', '7432756'), + (82244, 938, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '403vyByA', '7432758'), + (82245, 938, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '403vyByA', '7432759'), + (82246, 938, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:24', '403vyByA', '7433834'), + (82247, 938, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '403vyByA', '7470197'), + (82248, 938, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '403vyByA', '7685613'), + (82249, 938, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '403vyByA', '7688194'), + (82250, 938, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '403vyByA', '7688196'), + (82251, 938, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '403vyByA', '7688289'), + (82252, 938, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '403vyByA', '7692763'), + (82253, 938, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '403vyByA', '7697552'), + (82254, 938, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '403vyByA', '7699878'), + (82255, 938, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '403vyByA', '7704043'), + (82256, 938, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '403vyByA', '7712467'), + (82257, 938, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '403vyByA', '7713585'), + (82258, 938, 2927, 'maybe', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '403vyByA', '7713586'), + (82259, 938, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '403vyByA', '7738518'), + (82260, 938, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '403vyByA', '7750636'), + (82261, 938, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '403vyByA', '7796540'), + (82262, 938, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '403vyByA', '7796541'), + (82263, 938, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '403vyByA', '7796542'), + (82264, 939, 926, 'maybe', '2021-08-18 22:38:29', '2025-12-17 19:47:42', 'dODObNWm', '4297211'), + (82265, 939, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dODObNWm', '4356801'), + (82266, 939, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'dODObNWm', '4366186'), + (82267, 939, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'dODObNWm', '4366187'), + (82268, 939, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dODObNWm', '4420735'), + (82269, 939, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dODObNWm', '4420738'), + (82270, 939, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dODObNWm', '4420739'), + (82271, 939, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dODObNWm', '4420741'), + (82272, 939, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dODObNWm', '4420744'), + (82273, 939, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dODObNWm', '4420747'), + (82274, 939, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dODObNWm', '4420748'), + (82275, 939, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dODObNWm', '4420749'), + (82276, 939, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODObNWm', '4461883'), + (82277, 939, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODObNWm', '4508342'), + (82278, 939, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODObNWm', '4568602'), + (82279, 939, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dODObNWm', '4572153'), + (82280, 939, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dODObNWm', '4585962'), + (82281, 939, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dODObNWm', '4596356'), + (82282, 939, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dODObNWm', '4598860'), + (82283, 939, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dODObNWm', '4598861'), + (82284, 939, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dODObNWm', '4602797'), + (82285, 939, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dODObNWm', '4637896'), + (82286, 939, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dODObNWm', '4642994'), + (82287, 939, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dODObNWm', '4642995'), + (82288, 939, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dODObNWm', '4642996'), + (82289, 939, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dODObNWm', '4642997'), + (82290, 939, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dODObNWm', '4645687'), + (82291, 939, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dODObNWm', '4645698'), + (82292, 939, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dODObNWm', '4645704'), + (82293, 939, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dODObNWm', '4645705'), + (82294, 939, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dODObNWm', '4668385'), + (82295, 939, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODObNWm', '6045684'), + (82296, 940, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'An2RlrXA', '5900202'), + (82297, 940, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'An2RlrXA', '5900203'), + (82298, 940, 1917, 'not_attending', '2023-03-15 21:03:13', '2025-12-17 19:47:10', 'An2RlrXA', '5910528'), + (82299, 940, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'An2RlrXA', '5962317'), + (82300, 940, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'An2RlrXA', '5962318'), + (82301, 940, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'An2RlrXA', '5965933'), + (82302, 940, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'An2RlrXA', '5998939'), + (82303, 940, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'An2RlrXA', '6028191'), + (82304, 940, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'An2RlrXA', '6040066'), + (82305, 940, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'An2RlrXA', '6042717'), + (82306, 940, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'An2RlrXA', '6044838'), + (82307, 940, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'An2RlrXA', '6044839'), + (82308, 940, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'An2RlrXA', '6045684'), + (82309, 940, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'An2RlrXA', '6048955'), + (82310, 940, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'An2RlrXA', '6050104'), + (82311, 940, 2002, 'attending', '2023-04-28 12:18:29', '2025-12-17 19:47:01', 'An2RlrXA', '6052605'), + (82312, 940, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'An2RlrXA', '6053195'), + (82313, 940, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'An2RlrXA', '6053198'), + (82314, 940, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'An2RlrXA', '6056085'), + (82315, 940, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'An2RlrXA', '6056916'), + (82316, 940, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'An2RlrXA', '6059290'), + (82317, 940, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'An2RlrXA', '6060328'), + (82318, 940, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'An2RlrXA', '6061037'), + (82319, 940, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'An2RlrXA', '6061039'), + (82320, 940, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'An2RlrXA', '6067245'), + (82321, 940, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'An2RlrXA', '6068094'), + (82322, 940, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'An2RlrXA', '6068252'), + (82323, 940, 2029, 'attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'An2RlrXA', '6068253'), + (82324, 940, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'An2RlrXA', '6068254'), + (82325, 940, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'An2RlrXA', '6068280'), + (82326, 940, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'An2RlrXA', '6069093'), + (82327, 940, 2038, 'not_attending', '2023-04-28 22:30:12', '2025-12-17 19:47:01', 'An2RlrXA', '6071944'), + (82328, 940, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'An2RlrXA', '6072528'), + (82329, 940, 2042, 'attending', '2023-04-27 14:22:11', '2025-12-17 19:47:01', 'An2RlrXA', '6072941'), + (82330, 940, 2045, 'not_attending', '2023-04-30 19:25:05', '2025-12-17 19:47:01', 'An2RlrXA', '6075556'), + (82331, 940, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'An2RlrXA', '6079840'), + (82332, 940, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'An2RlrXA', '6083398'), + (82333, 940, 2053, 'maybe', '2023-05-08 23:25:44', '2025-12-17 19:47:02', 'An2RlrXA', '6092644'), + (82334, 940, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'An2RlrXA', '6093504'), + (82335, 940, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'An2RlrXA', '6097414'), + (82336, 940, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'An2RlrXA', '6097442'), + (82337, 940, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'An2RlrXA', '6097684'), + (82338, 940, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'An2RlrXA', '6098762'), + (82339, 940, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'An2RlrXA', '6101361'), + (82340, 940, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'An2RlrXA', '6101362'), + (82341, 940, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'An2RlrXA', '6103752'), + (82342, 940, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'An2RlrXA', '6107314'), + (82343, 940, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'An2RlrXA', '6120034'), + (82344, 940, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'An2RlrXA', '6136733'), + (82345, 940, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'An2RlrXA', '6137989'), + (82346, 940, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'An2RlrXA', '6150864'), + (82347, 940, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'An2RlrXA', '6155491'), + (82348, 940, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'An2RlrXA', '6164417'), + (82349, 940, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'An2RlrXA', '6166388'), + (82350, 940, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'An2RlrXA', '6176439'), + (82351, 940, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'An2RlrXA', '6182410'), + (82352, 940, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'An2RlrXA', '6185812'), + (82353, 940, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'An2RlrXA', '6187651'), + (82354, 940, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'An2RlrXA', '6187963'), + (82355, 940, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'An2RlrXA', '6187964'), + (82356, 940, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'An2RlrXA', '6187966'), + (82357, 940, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'An2RlrXA', '6187967'), + (82358, 940, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'An2RlrXA', '6187969'), + (82359, 940, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'An2RlrXA', '6334878'), + (82360, 940, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'An2RlrXA', '6337236'), + (82361, 940, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'An2RlrXA', '6337970'), + (82362, 940, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'An2RlrXA', '6338308'), + (82363, 940, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'An2RlrXA', '6340845'), + (82364, 940, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'An2RlrXA', '6341710'), + (82365, 940, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'An2RlrXA', '6342044'), + (82366, 940, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'An2RlrXA', '6342298'), + (82367, 940, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'An2RlrXA', '6343294'), + (82368, 940, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'An2RlrXA', '6347034'), + (82369, 940, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'An2RlrXA', '6347056'), + (82370, 940, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'An2RlrXA', '6353830'), + (82371, 940, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'An2RlrXA', '6353831'), + (82372, 940, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'An2RlrXA', '6357867'), + (82373, 940, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'An2RlrXA', '6358652'), + (82374, 940, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'An2RlrXA', '6361709'), + (82375, 940, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'An2RlrXA', '6361710'), + (82376, 940, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'An2RlrXA', '6361711'), + (82377, 940, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'An2RlrXA', '6361712'), + (82378, 940, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'An2RlrXA', '6361713'), + (82379, 940, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'An2RlrXA', '6382573'), + (82380, 940, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'An2RlrXA', '6388604'), + (82381, 940, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'An2RlrXA', '6394629'), + (82382, 940, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'An2RlrXA', '6394631'), + (82383, 940, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'An2RlrXA', '6440863'), + (82384, 940, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'An2RlrXA', '6445440'), + (82385, 940, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'An2RlrXA', '6453951'), + (82386, 940, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'An2RlrXA', '6461696'), + (82387, 940, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'An2RlrXA', '6462129'), + (82388, 940, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'An2RlrXA', '6463218'), + (82389, 940, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'An2RlrXA', '6472181'), + (82390, 940, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'An2RlrXA', '6482693'), + (82391, 940, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'An2RlrXA', '6484200'), + (82392, 940, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'An2RlrXA', '6484680'), + (82393, 940, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'An2RlrXA', '6507741'), + (82394, 940, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'An2RlrXA', '6514659'), + (82395, 940, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'An2RlrXA', '6514660'), + (82396, 940, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'An2RlrXA', '6519103'), + (82397, 940, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'An2RlrXA', '6535681'), + (82398, 940, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'An2RlrXA', '6584747'), + (82399, 940, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'An2RlrXA', '6587097'), + (82400, 940, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'An2RlrXA', '6609022'), + (82401, 940, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'An2RlrXA', '6632757'), + (82402, 940, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'An2RlrXA', '6644187'), + (82403, 940, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'An2RlrXA', '6648951'), + (82404, 940, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'An2RlrXA', '6648952'), + (82405, 940, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'An2RlrXA', '6655401'), + (82406, 940, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'An2RlrXA', '6661585'), + (82407, 940, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'An2RlrXA', '6661588'), + (82408, 940, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'An2RlrXA', '6661589'), + (82409, 940, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'An2RlrXA', '6699906'), + (82410, 940, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'An2RlrXA', '6701109'), + (82411, 940, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'An2RlrXA', '6705219'), + (82412, 940, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'An2RlrXA', '6710153'), + (82413, 940, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'An2RlrXA', '6711552'), + (82414, 940, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'An2RlrXA', '6711553'), + (82415, 940, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'An2RlrXA', '6722688'), + (82416, 940, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'An2RlrXA', '6730620'), + (82417, 940, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'An2RlrXA', '6730642'), + (82418, 941, 1104, 'attending', '2021-11-14 04:23:08', '2025-12-17 19:47:36', 'd9nJKGqm', '4618310'), + (82419, 941, 1114, 'attending', '2021-11-13 19:47:20', '2025-12-17 19:47:36', 'd9nJKGqm', '4637896'), + (82420, 941, 1121, 'attending', '2021-11-17 21:33:37', '2025-12-17 19:47:37', 'd9nJKGqm', '4644022'), + (82421, 941, 1123, 'attending', '2021-12-07 16:37:12', '2025-12-17 19:47:38', 'd9nJKGqm', '4644024'), + (82422, 941, 1124, 'attending', '2021-12-07 16:37:05', '2025-12-17 19:47:38', 'd9nJKGqm', '4644025'), + (82423, 941, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd9nJKGqm', '4645687'), + (82424, 941, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd9nJKGqm', '4645698'), + (82425, 941, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd9nJKGqm', '4645704'), + (82426, 941, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd9nJKGqm', '4645705'), + (82427, 941, 1134, 'attending', '2021-11-26 16:41:25', '2025-12-17 19:47:37', 'd9nJKGqm', '4668385'), + (82428, 941, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'd9nJKGqm', '4694407'), + (82429, 941, 1173, 'attending', '2022-01-04 22:20:34', '2025-12-17 19:47:31', 'd9nJKGqm', '4736495'), + (82430, 941, 1174, 'attending', '2022-01-15 18:27:45', '2025-12-17 19:47:31', 'd9nJKGqm', '4736496'), + (82431, 941, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'd9nJKGqm', '4736497'), + (82432, 941, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd9nJKGqm', '4736499'), + (82433, 941, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'd9nJKGqm', '4736500'), + (82434, 941, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd9nJKGqm', '4736503'), + (82435, 941, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd9nJKGqm', '4736504'), + (82436, 941, 1183, 'attending', '2022-01-11 21:25:01', '2025-12-17 19:47:31', 'd9nJKGqm', '4742171'), + (82437, 941, 1185, 'attending', '2022-01-14 23:15:13', '2025-12-17 19:47:31', 'd9nJKGqm', '4746789'), + (82438, 941, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'd9nJKGqm', '4753929'), + (82439, 941, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd9nJKGqm', '5038850'), + (82440, 941, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd9nJKGqm', '5045826'), + (82441, 941, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd9nJKGqm', '5132533'), + (82442, 941, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd9nJKGqm', '5186582'), + (82443, 941, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd9nJKGqm', '5186583'), + (82444, 941, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd9nJKGqm', '5186585'), + (82445, 941, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9nJKGqm', '5190437'), + (82446, 941, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9nJKGqm', '5215989'), + (82447, 941, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd9nJKGqm', '5630968'), + (82448, 941, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd9nJKGqm', '5642818'), + (82449, 941, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd9nJKGqm', '5670445'), + (82450, 941, 1788, 'attending', '2022-11-20 00:08:55', '2025-12-17 19:47:16', 'd9nJKGqm', '5727236'), + (82451, 941, 1798, 'attending', '2022-11-24 05:06:01', '2025-12-17 19:47:16', 'd9nJKGqm', '5763458'), + (82452, 941, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd9nJKGqm', '5774172'), + (82453, 941, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'd9nJKGqm', '5818247'), + (82454, 941, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd9nJKGqm', '5819471'), + (82455, 941, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd9nJKGqm', '5827739'), + (82456, 941, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd9nJKGqm', '5844306'), + (82457, 941, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd9nJKGqm', '5850159'), + (82458, 941, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd9nJKGqm', '5858999'), + (82459, 941, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd9nJKGqm', '5871984'), + (82460, 941, 1859, 'not_attending', '2023-01-18 13:14:10', '2025-12-17 19:47:05', 'd9nJKGqm', '5876234'), + (82461, 941, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd9nJKGqm', '5876354'), + (82462, 941, 1866, 'attending', '2023-01-23 02:16:35', '2025-12-17 19:47:05', 'd9nJKGqm', '5880939'), + (82463, 941, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'd9nJKGqm', '5880940'), + (82464, 941, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd9nJKGqm', '5880942'), + (82465, 941, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd9nJKGqm', '5880943'), + (82466, 941, 1871, 'attending', '2023-01-18 13:14:32', '2025-12-17 19:47:05', 'd9nJKGqm', '5883502'), + (82467, 941, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd9nJKGqm', '5887890'), + (82468, 941, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd9nJKGqm', '5888598'), + (82469, 941, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd9nJKGqm', '5893260'), + (82470, 941, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'd9nJKGqm', '5899826'), + (82471, 941, 1888, 'attending', '2023-02-18 01:08:06', '2025-12-17 19:47:07', 'd9nJKGqm', '5900197'), + (82472, 941, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'd9nJKGqm', '5900199'), + (82473, 941, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd9nJKGqm', '5900200'), + (82474, 941, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd9nJKGqm', '5900202'), + (82475, 941, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd9nJKGqm', '5900203'), + (82476, 941, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'd9nJKGqm', '5901108'), + (82477, 941, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'd9nJKGqm', '5901126'), + (82478, 941, 1898, 'attending', '2023-02-01 18:27:06', '2025-12-17 19:47:06', 'd9nJKGqm', '5901263'), + (82479, 941, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'd9nJKGqm', '5909655'), + (82480, 941, 1912, 'attending', '2023-02-16 20:23:59', '2025-12-17 19:47:07', 'd9nJKGqm', '5909808'), + (82481, 941, 1915, 'attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'd9nJKGqm', '5910522'), + (82482, 941, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'd9nJKGqm', '5910526'), + (82483, 941, 1917, 'attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'd9nJKGqm', '5910528'), + (82484, 941, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd9nJKGqm', '5916219'), + (82485, 941, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd9nJKGqm', '5936234'), + (82486, 941, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd9nJKGqm', '5958351'), + (82487, 941, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd9nJKGqm', '5959751'), + (82488, 941, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd9nJKGqm', '5959755'), + (82489, 941, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd9nJKGqm', '5960055'), + (82490, 941, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd9nJKGqm', '5961684'), + (82491, 941, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd9nJKGqm', '5962132'), + (82492, 941, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd9nJKGqm', '5962133'), + (82493, 941, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd9nJKGqm', '5962134'), + (82494, 941, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd9nJKGqm', '5962317'), + (82495, 941, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd9nJKGqm', '5962318'), + (82496, 941, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd9nJKGqm', '5965933'), + (82497, 941, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd9nJKGqm', '5967014'), + (82498, 941, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd9nJKGqm', '5972815'), + (82499, 941, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd9nJKGqm', '5974016'), + (82500, 941, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'd9nJKGqm', '5975052'), + (82501, 941, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'd9nJKGqm', '5975054'), + (82502, 941, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd9nJKGqm', '5981515'), + (82503, 941, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd9nJKGqm', '5993516'), + (82504, 941, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd9nJKGqm', '5998939'), + (82505, 941, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd9nJKGqm', '6028191'), + (82506, 941, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd9nJKGqm', '6040066'), + (82507, 941, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd9nJKGqm', '6042717'), + (82508, 941, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd9nJKGqm', '6044838'), + (82509, 941, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd9nJKGqm', '6044839'), + (82510, 941, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9nJKGqm', '6045684'), + (82511, 941, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd9nJKGqm', '6050104'), + (82512, 941, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd9nJKGqm', '6053195'), + (82513, 941, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd9nJKGqm', '6053198'), + (82514, 941, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd9nJKGqm', '6056085'), + (82515, 941, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd9nJKGqm', '6056916'), + (82516, 941, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd9nJKGqm', '6059290'), + (82517, 941, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd9nJKGqm', '6060328'), + (82518, 941, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd9nJKGqm', '6061037'), + (82519, 941, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd9nJKGqm', '6061039'), + (82520, 941, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd9nJKGqm', '6067245'), + (82521, 941, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd9nJKGqm', '6068094'), + (82522, 941, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd9nJKGqm', '6068252'), + (82523, 941, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd9nJKGqm', '6068253'), + (82524, 941, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd9nJKGqm', '6068254'), + (82525, 941, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd9nJKGqm', '6068280'), + (82526, 941, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd9nJKGqm', '6069093'), + (82527, 941, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'd9nJKGqm', '6072528'), + (82528, 941, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'd9nJKGqm', '6075556'), + (82529, 941, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd9nJKGqm', '6079840'), + (82530, 941, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd9nJKGqm', '6083398'), + (82531, 941, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'd9nJKGqm', '6093504'), + (82532, 941, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd9nJKGqm', '6097414'), + (82533, 941, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd9nJKGqm', '6097442'), + (82534, 941, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd9nJKGqm', '6097684'), + (82535, 941, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd9nJKGqm', '6098762'), + (82536, 941, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'd9nJKGqm', '6101361'), + (82537, 941, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd9nJKGqm', '6101362'), + (82538, 941, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd9nJKGqm', '6107314'), + (82539, 941, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd9nJKGqm', '6120034'), + (82540, 941, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'd9nJKGqm', '6136733'), + (82541, 941, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'd9nJKGqm', '6137989'), + (82542, 941, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'd9nJKGqm', '6150864'), + (82543, 941, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'd9nJKGqm', '6155491'), + (82544, 941, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'd9nJKGqm', '6164417'), + (82545, 941, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'd9nJKGqm', '6166388'), + (82546, 941, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'd9nJKGqm', '6176439'), + (82547, 941, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'd9nJKGqm', '6182410'), + (82548, 941, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'd9nJKGqm', '6185812'), + (82549, 941, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'd9nJKGqm', '6187651'), + (82550, 941, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'd9nJKGqm', '6187963'), + (82551, 941, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'd9nJKGqm', '6187964'), + (82552, 941, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'd9nJKGqm', '6187966'), + (82553, 941, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'd9nJKGqm', '6187967'), + (82554, 941, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'd9nJKGqm', '6187969'), + (82555, 941, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'd9nJKGqm', '6334878'), + (82556, 941, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd9nJKGqm', '6337236'), + (82557, 941, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd9nJKGqm', '6337970'), + (82558, 941, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'd9nJKGqm', '6338308'), + (82559, 941, 2157, 'not_attending', '2023-07-12 21:55:48', '2025-12-17 19:46:52', 'd9nJKGqm', '6338342'), + (82560, 941, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd9nJKGqm', '6341710'), + (82561, 941, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd9nJKGqm', '6342044'), + (82562, 941, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd9nJKGqm', '6342298'), + (82563, 941, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'd9nJKGqm', '6343294'), + (82564, 941, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd9nJKGqm', '6347034'), + (82565, 941, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd9nJKGqm', '6347056'), + (82566, 941, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd9nJKGqm', '6353830'), + (82567, 941, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd9nJKGqm', '6353831'), + (82568, 941, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd9nJKGqm', '6357867'), + (82569, 941, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd9nJKGqm', '6358652'), + (82570, 941, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'd9nJKGqm', '6358668'), + (82571, 941, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'd9nJKGqm', '6358669'), + (82572, 941, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd9nJKGqm', '6361709'), + (82573, 941, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd9nJKGqm', '6361710'), + (82574, 941, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd9nJKGqm', '6361711'), + (82575, 941, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd9nJKGqm', '6361712'), + (82576, 941, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd9nJKGqm', '6361713'), + (82577, 941, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd9nJKGqm', '6382573'), + (82578, 941, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'd9nJKGqm', '6388604'), + (82579, 941, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd9nJKGqm', '6394629'), + (82580, 941, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd9nJKGqm', '6394631'), + (82581, 941, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd9nJKGqm', '6440863'), + (82582, 941, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd9nJKGqm', '6445440'), + (82583, 941, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd9nJKGqm', '6453951'), + (82584, 941, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd9nJKGqm', '6461696'), + (82585, 941, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd9nJKGqm', '6462129'), + (82586, 941, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd9nJKGqm', '6463218'), + (82587, 941, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd9nJKGqm', '6472181'), + (82588, 941, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd9nJKGqm', '6482693'), + (82589, 941, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd9nJKGqm', '6484200'), + (82590, 941, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'd9nJKGqm', '6484680'), + (82591, 941, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd9nJKGqm', '6507741'), + (82592, 941, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd9nJKGqm', '6514659'), + (82593, 941, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd9nJKGqm', '6514660'), + (82594, 941, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd9nJKGqm', '6519103'), + (82595, 941, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd9nJKGqm', '6535681'), + (82596, 941, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd9nJKGqm', '6584747'), + (82597, 941, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd9nJKGqm', '6587097'), + (82598, 941, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd9nJKGqm', '6609022'), + (82599, 941, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd9nJKGqm', '6632757'), + (82600, 941, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd9nJKGqm', '6644187'), + (82601, 941, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd9nJKGqm', '6648951'), + (82602, 941, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd9nJKGqm', '6648952'), + (82603, 941, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd9nJKGqm', '6655401'), + (82604, 941, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd9nJKGqm', '6661585'), + (82605, 941, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd9nJKGqm', '6661588'), + (82606, 941, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd9nJKGqm', '6661589'), + (82607, 941, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd9nJKGqm', '6699906'), + (82608, 941, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd9nJKGqm', '6701109'), + (82609, 941, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'd9nJKGqm', '6704561'), + (82610, 941, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd9nJKGqm', '6705219'), + (82611, 941, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'd9nJKGqm', '6708410'), + (82612, 941, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd9nJKGqm', '6710153'), + (82613, 941, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd9nJKGqm', '6711552'), + (82614, 941, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd9nJKGqm', '6711553'), + (82615, 942, 850, 'maybe', '2021-08-25 20:41:04', '2025-12-17 19:47:42', 'dVBkpPrd', '4015722'), + (82616, 942, 857, 'maybe', '2021-11-23 16:37:25', '2025-12-17 19:47:37', 'dVBkpPrd', '4015731'), + (82617, 942, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'dVBkpPrd', '4210314'), + (82618, 942, 902, 'attending', '2021-08-07 04:59:57', '2025-12-17 19:47:41', 'dVBkpPrd', '4240318'), + (82619, 942, 903, 'attending', '2021-08-09 23:46:39', '2025-12-17 19:47:42', 'dVBkpPrd', '4240320'), + (82620, 942, 926, 'attending', '2021-08-17 20:43:21', '2025-12-17 19:47:42', 'dVBkpPrd', '4297211'), + (82621, 942, 935, 'attending', '2021-08-11 21:52:20', '2025-12-17 19:47:41', 'dVBkpPrd', '4304151'), + (82622, 942, 947, 'attending', '2021-08-04 07:54:23', '2025-12-17 19:47:41', 'dVBkpPrd', '4315713'), + (82623, 942, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dVBkpPrd', '4345519'), + (82624, 942, 963, 'attending', '2021-08-15 03:10:52', '2025-12-17 19:47:42', 'dVBkpPrd', '4353159'), + (82625, 942, 964, 'attending', '2021-08-15 03:19:46', '2025-12-17 19:47:42', 'dVBkpPrd', '4353160'), + (82626, 942, 971, 'attending', '2021-09-08 20:35:38', '2025-12-17 19:47:43', 'dVBkpPrd', '4356801'), + (82627, 942, 972, 'maybe', '2021-08-20 21:06:02', '2025-12-17 19:47:42', 'dVBkpPrd', '4358025'), + (82628, 942, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dVBkpPrd', '4366186'), + (82629, 942, 974, 'attending', '2021-08-23 22:01:25', '2025-12-17 19:47:42', 'dVBkpPrd', '4366187'), + (82630, 942, 985, 'attending', '2021-08-21 02:32:48', '2025-12-17 19:47:42', 'dVBkpPrd', '4391748'), + (82631, 942, 987, 'attending', '2021-09-01 22:47:35', '2025-12-17 19:47:43', 'dVBkpPrd', '4402634'), + (82632, 942, 988, 'attending', '2021-08-24 02:50:47', '2025-12-17 19:47:42', 'dVBkpPrd', '4402823'), + (82633, 942, 989, 'maybe', '2021-09-09 02:06:38', '2025-12-17 19:47:43', 'dVBkpPrd', '4414282'), + (82634, 942, 990, 'attending', '2021-08-29 04:06:36', '2025-12-17 19:47:43', 'dVBkpPrd', '4420735'), + (82635, 942, 991, 'attending', '2021-08-29 23:02:23', '2025-12-17 19:47:43', 'dVBkpPrd', '4420738'), + (82636, 942, 992, 'attending', '2021-09-07 23:26:07', '2025-12-17 19:47:33', 'dVBkpPrd', '4420739'), + (82637, 942, 993, 'attending', '2021-09-14 04:53:43', '2025-12-17 19:47:34', 'dVBkpPrd', '4420741'), + (82638, 942, 994, 'attending', '2021-10-02 02:32:09', '2025-12-17 19:47:34', 'dVBkpPrd', '4420742'), + (82639, 942, 995, 'attending', '2021-09-26 20:14:52', '2025-12-17 19:47:34', 'dVBkpPrd', '4420744'), + (82640, 942, 996, 'attending', '2021-09-26 20:15:01', '2025-12-17 19:47:35', 'dVBkpPrd', '4420747'), + (82641, 942, 997, 'attending', '2021-09-28 07:20:36', '2025-12-17 19:47:35', 'dVBkpPrd', '4420748'), + (82642, 942, 998, 'attending', '2021-09-28 07:20:51', '2025-12-17 19:47:36', 'dVBkpPrd', '4420749'), + (82643, 942, 1001, 'maybe', '2021-08-30 21:56:25', '2025-12-17 19:47:43', 'dVBkpPrd', '4424687'), + (82644, 942, 1015, 'maybe', '2021-09-17 23:00:57', '2025-12-17 19:47:43', 'dVBkpPrd', '4440800'), + (82645, 942, 1016, 'maybe', '2021-09-06 21:01:24', '2025-12-17 19:47:43', 'dVBkpPrd', '4441271'), + (82646, 942, 1017, 'attending', '2021-09-03 20:33:46', '2025-12-17 19:47:43', 'dVBkpPrd', '4441822'), + (82647, 942, 1019, 'attending', '2021-09-06 21:04:03', '2025-12-17 19:47:43', 'dVBkpPrd', '4450515'), + (82648, 942, 1020, 'attending', '2021-09-06 21:01:33', '2025-12-17 19:47:43', 'dVBkpPrd', '4451787'), + (82649, 942, 1021, 'attending', '2021-09-06 21:02:49', '2025-12-17 19:47:34', 'dVBkpPrd', '4451803'), + (82650, 942, 1022, 'attending', '2021-09-14 00:51:12', '2025-12-17 19:47:43', 'dVBkpPrd', '4458628'), + (82651, 942, 1023, 'maybe', '2021-09-12 03:56:31', '2025-12-17 19:47:43', 'dVBkpPrd', '4461883'), + (82652, 942, 1025, 'maybe', '2021-09-14 16:29:35', '2025-12-17 19:47:43', 'dVBkpPrd', '4462052'), + (82653, 942, 1027, 'attending', '2021-09-14 00:46:28', '2025-12-17 19:47:34', 'dVBkpPrd', '4472982'), + (82654, 942, 1028, 'attending', '2021-09-20 09:52:02', '2025-12-17 19:47:34', 'dVBkpPrd', '4472983'), + (82655, 942, 1029, 'attending', '2021-09-14 05:02:25', '2025-12-17 19:47:43', 'dVBkpPrd', '4473063'), + (82656, 942, 1036, 'attending', '2021-09-20 09:50:34', '2025-12-17 19:47:34', 'dVBkpPrd', '4493166'), + (82657, 942, 1037, 'attending', '2021-09-18 21:37:21', '2025-12-17 19:47:34', 'dVBkpPrd', '4493233'), + (82658, 942, 1040, 'attending', '2021-12-11 06:07:35', '2025-12-17 19:47:38', 'dVBkpPrd', '4496605'), + (82659, 942, 1049, 'attending', '2022-01-20 22:55:42', '2025-12-17 19:47:32', 'dVBkpPrd', '4496614'), + (82660, 942, 1050, 'attending', '2022-01-22 20:43:40', '2025-12-17 19:47:32', 'dVBkpPrd', '4496615'), + (82661, 942, 1051, 'attending', '2022-02-01 20:25:16', '2025-12-17 19:47:32', 'dVBkpPrd', '4496616'), + (82662, 942, 1052, 'attending', '2022-01-10 04:13:38', '2025-12-17 19:47:31', 'dVBkpPrd', '4496617'), + (82663, 942, 1053, 'attending', '2022-02-15 19:57:28', '2025-12-17 19:47:32', 'dVBkpPrd', '4496618'), + (82664, 942, 1054, 'not_attending', '2022-03-19 03:20:23', '2025-12-17 19:47:25', 'dVBkpPrd', '4496619'), + (82665, 942, 1055, 'attending', '2021-12-13 23:03:27', '2025-12-17 19:47:31', 'dVBkpPrd', '4496621'), + (82666, 942, 1056, 'attending', '2022-01-04 02:59:02', '2025-12-17 19:47:31', 'dVBkpPrd', '4496622'), + (82667, 942, 1059, 'attending', '2022-03-10 19:24:39', '2025-12-17 19:47:33', 'dVBkpPrd', '4496626'), + (82668, 942, 1060, 'attending', '2022-03-19 03:20:48', '2025-12-17 19:47:25', 'dVBkpPrd', '4496627'), + (82669, 942, 1061, 'attending', '2022-02-07 05:23:32', '2025-12-17 19:47:32', 'dVBkpPrd', '4496628'), + (82670, 942, 1062, 'attending', '2022-03-04 22:34:14', '2025-12-17 19:47:33', 'dVBkpPrd', '4496629'), + (82671, 942, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dVBkpPrd', '4508342'), + (82672, 942, 1068, 'not_attending', '2021-09-28 03:59:08', '2025-12-17 19:47:34', 'dVBkpPrd', '4511471'), + (82673, 942, 1070, 'maybe', '2021-09-27 10:00:23', '2025-12-17 19:47:34', 'dVBkpPrd', '4512562'), + (82674, 942, 1071, 'attending', '2021-10-02 06:17:16', '2025-12-17 19:47:34', 'dVBkpPrd', '4516078'), + (82675, 942, 1072, 'attending', '2021-10-03 20:01:33', '2025-12-17 19:47:34', 'dVBkpPrd', '4516287'), + (82676, 942, 1073, 'attending', '2021-09-28 03:58:57', '2025-12-17 19:47:34', 'dVBkpPrd', '4518993'), + (82677, 942, 1074, 'maybe', '2021-09-29 03:30:49', '2025-12-17 19:47:34', 'dVBkpPrd', '4528953'), + (82678, 942, 1076, 'attending', '2021-10-03 20:01:42', '2025-12-17 19:47:34', 'dVBkpPrd', '4539147'), + (82679, 942, 1077, 'attending', '2021-10-12 19:44:22', '2025-12-17 19:47:34', 'dVBkpPrd', '4540903'), + (82680, 942, 1078, 'attending', '2021-10-05 03:15:38', '2025-12-17 19:47:34', 'dVBkpPrd', '4541281'), + (82681, 942, 1079, 'attending', '2021-10-19 18:41:58', '2025-12-17 19:47:35', 'dVBkpPrd', '4563823'), + (82682, 942, 1082, 'attending', '2021-10-11 23:03:17', '2025-12-17 19:47:35', 'dVBkpPrd', '4566762'), + (82683, 942, 1083, 'maybe', '2021-10-11 23:29:11', '2025-12-17 19:47:34', 'dVBkpPrd', '4566768'), + (82684, 942, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dVBkpPrd', '4568602'), + (82685, 942, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVBkpPrd', '4572153'), + (82686, 942, 1088, 'attending', '2021-10-16 05:15:55', '2025-12-17 19:47:35', 'dVBkpPrd', '4574382'), + (82687, 942, 1092, 'attending', '2021-10-19 21:36:48', '2025-12-17 19:47:35', 'dVBkpPrd', '4582837'), + (82688, 942, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'dVBkpPrd', '4585962'), + (82689, 942, 1095, 'attending', '2021-10-26 21:28:24', '2025-12-17 19:47:35', 'dVBkpPrd', '4596356'), + (82690, 942, 1096, 'attending', '2021-10-27 01:16:33', '2025-12-17 19:47:36', 'dVBkpPrd', '4596453'), + (82691, 942, 1097, 'attending', '2021-10-28 08:59:29', '2025-12-17 19:47:36', 'dVBkpPrd', '4598860'), + (82692, 942, 1098, 'attending', '2021-11-03 05:40:54', '2025-12-17 19:47:36', 'dVBkpPrd', '4598861'), + (82693, 942, 1099, 'attending', '2021-11-03 05:40:46', '2025-12-17 19:47:36', 'dVBkpPrd', '4602797'), + (82694, 942, 1100, 'maybe', '2021-11-08 10:02:21', '2025-12-17 19:47:36', 'dVBkpPrd', '4607305'), + (82695, 942, 1103, 'maybe', '2021-11-07 04:23:48', '2025-12-17 19:47:36', 'dVBkpPrd', '4616350'), + (82696, 942, 1106, 'attending', '2021-11-09 03:41:41', '2025-12-17 19:47:36', 'dVBkpPrd', '4620452'), + (82697, 942, 1108, 'attending', '2021-11-17 21:44:59', '2025-12-17 19:47:37', 'dVBkpPrd', '4632276'), + (82698, 942, 1114, 'attending', '2021-11-12 05:23:00', '2025-12-17 19:47:36', 'dVBkpPrd', '4637896'), + (82699, 942, 1116, 'attending', '2021-11-13 02:31:07', '2025-12-17 19:47:37', 'dVBkpPrd', '4642994'), + (82700, 942, 1117, 'attending', '2021-11-13 02:31:22', '2025-12-17 19:47:37', 'dVBkpPrd', '4642995'), + (82701, 942, 1118, 'not_attending', '2021-12-16 00:47:46', '2025-12-17 19:47:38', 'dVBkpPrd', '4642996'), + (82702, 942, 1119, 'attending', '2021-11-13 02:31:35', '2025-12-17 19:47:31', 'dVBkpPrd', '4642997'), + (82703, 942, 1120, 'not_attending', '2021-11-15 23:14:14', '2025-12-17 19:47:37', 'dVBkpPrd', '4644021'), + (82704, 942, 1121, 'maybe', '2021-11-19 05:51:41', '2025-12-17 19:47:37', 'dVBkpPrd', '4644022'), + (82705, 942, 1122, 'maybe', '2021-12-02 22:58:23', '2025-12-17 19:47:37', 'dVBkpPrd', '4644023'), + (82706, 942, 1124, 'attending', '2021-12-13 23:00:14', '2025-12-17 19:47:38', 'dVBkpPrd', '4644025'), + (82707, 942, 1125, 'not_attending', '2021-12-21 23:55:22', '2025-12-17 19:47:31', 'dVBkpPrd', '4644027'), + (82708, 942, 1126, 'attending', '2021-12-06 07:38:27', '2025-12-17 19:47:38', 'dVBkpPrd', '4645687'), + (82709, 942, 1127, 'attending', '2021-12-04 00:45:09', '2025-12-17 19:47:38', 'dVBkpPrd', '4645698'), + (82710, 942, 1128, 'attending', '2021-11-14 22:36:20', '2025-12-17 19:47:37', 'dVBkpPrd', '4645704'), + (82711, 942, 1129, 'attending', '2021-11-19 05:52:49', '2025-12-17 19:47:37', 'dVBkpPrd', '4645705'), + (82712, 942, 1130, 'attending', '2021-11-26 07:27:07', '2025-12-17 19:47:37', 'dVBkpPrd', '4658824'), + (82713, 942, 1131, 'attending', '2021-12-06 21:05:55', '2025-12-17 19:47:31', 'dVBkpPrd', '4658825'), + (82714, 942, 1132, 'attending', '2021-11-21 15:10:27', '2025-12-17 19:47:37', 'dVBkpPrd', '4660657'), + (82715, 942, 1134, 'attending', '2021-11-24 11:00:05', '2025-12-17 19:47:37', 'dVBkpPrd', '4668385'), + (82716, 942, 1135, 'attending', '2021-11-25 07:17:37', '2025-12-17 19:47:37', 'dVBkpPrd', '4670469'), + (82717, 942, 1138, 'attending', '2021-11-29 21:40:52', '2025-12-17 19:47:37', 'dVBkpPrd', '4675407'), + (82718, 942, 1139, 'maybe', '2021-11-29 04:04:44', '2025-12-17 19:47:37', 'dVBkpPrd', '4675604'), + (82719, 942, 1142, 'attending', '2021-12-01 23:31:43', '2025-12-17 19:47:37', 'dVBkpPrd', '4681923'), + (82720, 942, 1143, 'attending', '2021-12-01 21:49:11', '2025-12-17 19:47:37', 'dVBkpPrd', '4683667'), + (82721, 942, 1145, 'maybe', '2021-12-10 00:46:31', '2025-12-17 19:47:38', 'dVBkpPrd', '4691157'), + (82722, 942, 1146, 'not_attending', '2021-12-10 23:46:53', '2025-12-17 19:47:38', 'dVBkpPrd', '4692841'), + (82723, 942, 1147, 'maybe', '2021-12-08 00:57:10', '2025-12-17 19:47:38', 'dVBkpPrd', '4692842'), + (82724, 942, 1148, 'attending', '2021-12-13 23:03:41', '2025-12-17 19:47:31', 'dVBkpPrd', '4692843'), + (82725, 942, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dVBkpPrd', '4694407'), + (82726, 942, 1151, 'attending', '2021-12-23 03:55:43', '2025-12-17 19:47:31', 'dVBkpPrd', '4708704'), + (82727, 942, 1152, 'attending', '2022-01-06 22:46:51', '2025-12-17 19:47:31', 'dVBkpPrd', '4708705'), + (82728, 942, 1153, 'attending', '2022-01-11 03:58:58', '2025-12-17 19:47:32', 'dVBkpPrd', '4708707'), + (82729, 942, 1154, 'attending', '2022-01-25 09:08:35', '2025-12-17 19:47:32', 'dVBkpPrd', '4708708'), + (82730, 942, 1155, 'maybe', '2021-12-20 22:42:32', '2025-12-17 19:47:31', 'dVBkpPrd', '4715119'), + (82731, 942, 1156, 'not_attending', '2021-12-20 22:43:11', '2025-12-17 19:47:31', 'dVBkpPrd', '4715207'), + (82732, 942, 1158, 'maybe', '2021-12-19 01:24:46', '2025-12-17 19:47:31', 'dVBkpPrd', '4715311'), + (82733, 942, 1163, 'maybe', '2021-12-27 23:01:07', '2025-12-17 19:47:31', 'dVBkpPrd', '4724206'), + (82734, 942, 1164, 'attending', '2021-12-28 03:07:15', '2025-12-17 19:47:31', 'dVBkpPrd', '4724208'), + (82735, 942, 1165, 'attending', '2021-12-28 03:07:19', '2025-12-17 19:47:31', 'dVBkpPrd', '4724210'), + (82736, 942, 1166, 'not_attending', '2022-01-11 00:55:40', '2025-12-17 19:47:31', 'dVBkpPrd', '4725109'), + (82737, 942, 1170, 'attending', '2022-01-05 05:23:09', '2025-12-17 19:47:31', 'dVBkpPrd', '4731045'), + (82738, 942, 1172, 'attending', '2022-01-19 00:59:31', '2025-12-17 19:47:32', 'dVBkpPrd', '4735348'), + (82739, 942, 1173, 'attending', '2022-01-04 02:58:55', '2025-12-17 19:47:31', 'dVBkpPrd', '4736495'), + (82740, 942, 1174, 'attending', '2022-01-05 05:23:33', '2025-12-17 19:47:31', 'dVBkpPrd', '4736496'), + (82741, 942, 1175, 'attending', '2022-01-08 22:18:57', '2025-12-17 19:47:32', 'dVBkpPrd', '4736497'), + (82742, 942, 1176, 'attending', '2022-01-05 05:23:56', '2025-12-17 19:47:32', 'dVBkpPrd', '4736498'), + (82743, 942, 1177, 'attending', '2022-02-05 08:21:47', '2025-12-17 19:47:32', 'dVBkpPrd', '4736499'), + (82744, 942, 1178, 'attending', '2022-01-16 19:24:32', '2025-12-17 19:47:32', 'dVBkpPrd', '4736500'), + (82745, 942, 1179, 'attending', '2022-02-13 06:12:33', '2025-12-17 19:47:32', 'dVBkpPrd', '4736501'), + (82746, 942, 1180, 'attending', '2022-02-27 00:28:33', '2025-12-17 19:47:33', 'dVBkpPrd', '4736502'), + (82747, 942, 1181, 'attending', '2022-02-13 06:12:40', '2025-12-17 19:47:33', 'dVBkpPrd', '4736503'), + (82748, 942, 1182, 'attending', '2022-02-13 06:12:47', '2025-12-17 19:47:33', 'dVBkpPrd', '4736504'), + (82749, 942, 1183, 'maybe', '2022-01-08 02:47:57', '2025-12-17 19:47:31', 'dVBkpPrd', '4742171'), + (82750, 942, 1184, 'maybe', '2022-01-06 22:46:45', '2025-12-17 19:47:31', 'dVBkpPrd', '4742350'), + (82751, 942, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVBkpPrd', '4746789'), + (82752, 942, 1188, 'attending', '2022-01-11 03:58:44', '2025-12-17 19:47:31', 'dVBkpPrd', '4753929'), + (82753, 942, 1190, 'maybe', '2022-01-13 23:17:32', '2025-12-17 19:47:31', 'dVBkpPrd', '4757377'), + (82754, 942, 1200, 'not_attending', '2022-01-18 23:55:45', '2025-12-17 19:47:32', 'dVBkpPrd', '4766830'), + (82755, 942, 1210, 'attending', '2022-01-29 01:39:38', '2025-12-17 19:47:32', 'dVBkpPrd', '4776927'), + (82756, 942, 1214, 'maybe', '2022-02-17 20:24:28', '2025-12-17 19:47:32', 'dVBkpPrd', '4780761'), + (82757, 942, 1217, 'attending', '2022-01-25 08:45:48', '2025-12-17 19:47:32', 'dVBkpPrd', '4781139'), + (82758, 942, 1219, 'attending', '2022-01-27 07:43:50', '2025-12-17 19:47:32', 'dVBkpPrd', '4788466'), + (82759, 942, 1222, 'maybe', '2022-02-13 21:18:55', '2025-12-17 19:47:32', 'dVBkpPrd', '5015628'), + (82760, 942, 1224, 'maybe', '2022-02-03 22:49:40', '2025-12-17 19:47:32', 'dVBkpPrd', '5016682'), + (82761, 942, 1228, 'maybe', '2022-02-07 05:23:27', '2025-12-17 19:47:32', 'dVBkpPrd', '5028238'), + (82762, 942, 1229, 'maybe', '2022-02-13 06:12:27', '2025-12-17 19:47:32', 'dVBkpPrd', '5034963'), + (82763, 942, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dVBkpPrd', '5038850'), + (82764, 942, 1234, 'attending', '2022-02-11 09:54:53', '2025-12-17 19:47:32', 'dVBkpPrd', '5042197'), + (82765, 942, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dVBkpPrd', '5045826'), + (82766, 942, 1237, 'attending', '2022-02-18 19:14:31', '2025-12-17 19:47:32', 'dVBkpPrd', '5050641'), + (82767, 942, 1238, 'attending', '2022-02-24 00:49:12', '2025-12-17 19:47:32', 'dVBkpPrd', '5052236'), + (82768, 942, 1239, 'attending', '2022-03-03 00:10:03', '2025-12-17 19:47:33', 'dVBkpPrd', '5052238'), + (82769, 942, 1240, 'not_attending', '2022-03-16 22:44:38', '2025-12-17 19:47:33', 'dVBkpPrd', '5052239'), + (82770, 942, 1241, 'attending', '2022-03-15 21:34:41', '2025-12-17 19:47:25', 'dVBkpPrd', '5052240'), + (82771, 942, 1242, 'attending', '2022-03-22 21:36:57', '2025-12-17 19:47:25', 'dVBkpPrd', '5052241'), + (82772, 942, 1246, 'not_attending', '2022-03-03 23:21:42', '2025-12-17 19:47:33', 'dVBkpPrd', '5064727'), + (82773, 942, 1248, 'maybe', '2022-02-24 00:12:18', '2025-12-17 19:47:33', 'dVBkpPrd', '5065064'), + (82774, 942, 1249, 'maybe', '2022-03-05 20:18:35', '2025-12-17 19:47:33', 'dVBkpPrd', '5068530'), + (82775, 942, 1253, 'maybe', '2022-03-05 23:02:45', '2025-12-17 19:47:33', 'dVBkpPrd', '5129122'), + (82776, 942, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVBkpPrd', '5132533'), + (82777, 942, 1261, 'maybe', '2022-03-05 23:01:29', '2025-12-17 19:47:33', 'dVBkpPrd', '5154274'), + (82778, 942, 1262, 'maybe', '2022-03-05 23:04:23', '2025-12-17 19:47:33', 'dVBkpPrd', '5157773'), + (82779, 942, 1264, 'maybe', '2022-03-11 22:05:35', '2025-12-17 19:47:25', 'dVBkpPrd', '5160281'), + (82780, 942, 1266, 'attending', '2022-03-14 21:49:54', '2025-12-17 19:47:33', 'dVBkpPrd', '5166407'), + (82781, 942, 1267, 'maybe', '2022-03-13 23:41:28', '2025-12-17 19:47:25', 'dVBkpPrd', '5169578'), + (82782, 942, 1268, 'not_attending', '2022-03-15 21:32:51', '2025-12-17 19:47:33', 'dVBkpPrd', '5176296'), + (82783, 942, 1270, 'not_attending', '2022-03-16 21:36:19', '2025-12-17 19:47:25', 'dVBkpPrd', '5181277'), + (82784, 942, 1272, 'not_attending', '2022-03-19 03:20:15', '2025-12-17 19:47:25', 'dVBkpPrd', '5186582'), + (82785, 942, 1273, 'attending', '2022-03-15 21:33:29', '2025-12-17 19:47:25', 'dVBkpPrd', '5186583'), + (82786, 942, 1274, 'attending', '2022-03-15 21:33:41', '2025-12-17 19:47:26', 'dVBkpPrd', '5186585'), + (82787, 942, 1275, 'attending', '2022-03-29 04:49:37', '2025-12-17 19:47:26', 'dVBkpPrd', '5186587'), + (82788, 942, 1276, 'attending', '2022-03-21 22:08:38', '2025-12-17 19:47:25', 'dVBkpPrd', '5186820'), + (82789, 942, 1278, 'maybe', '2022-03-17 16:32:50', '2025-12-17 19:47:33', 'dVBkpPrd', '5186920'), + (82790, 942, 1279, 'not_attending', '2022-03-19 03:20:35', '2025-12-17 19:47:25', 'dVBkpPrd', '5187212'), + (82791, 942, 1281, 'attending', '2022-03-29 04:49:48', '2025-12-17 19:47:27', 'dVBkpPrd', '5190437'), + (82792, 942, 1284, 'maybe', '2022-04-03 07:02:52', '2025-12-17 19:47:27', 'dVBkpPrd', '5195095'), + (82793, 942, 1288, 'maybe', '2022-03-27 20:24:13', '2025-12-17 19:47:25', 'dVBkpPrd', '5199460'), + (82794, 942, 1293, 'attending', '2022-03-27 20:23:48', '2025-12-17 19:47:27', 'dVBkpPrd', '5214641'), + (82795, 942, 1294, 'attending', '2022-03-29 19:51:17', '2025-12-17 19:47:26', 'dVBkpPrd', '5214686'), + (82796, 942, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVBkpPrd', '5215989'), + (82797, 942, 1304, 'maybe', '2022-04-06 21:08:32', '2025-12-17 19:47:26', 'dVBkpPrd', '5223468'), + (82798, 942, 1305, 'attending', '2022-04-09 07:38:54', '2025-12-17 19:47:27', 'dVBkpPrd', '5223673'), + (82799, 942, 1306, 'maybe', '2022-04-05 03:38:16', '2025-12-17 19:47:26', 'dVBkpPrd', '5223682'), + (82800, 942, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVBkpPrd', '5223686'), + (82801, 942, 1308, 'maybe', '2022-04-13 17:04:59', '2025-12-17 19:47:27', 'dVBkpPrd', '5226703'), + (82802, 942, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVBkpPrd', '5227432'), + (82803, 942, 1313, 'attending', '2022-04-10 20:55:26', '2025-12-17 19:47:27', 'dVBkpPrd', '5231461'), + (82804, 942, 1315, 'maybe', '2022-04-22 21:59:42', '2025-12-17 19:47:27', 'dVBkpPrd', '5237522'), + (82805, 942, 1319, 'maybe', '2022-04-11 15:33:27', '2025-12-17 19:47:27', 'dVBkpPrd', '5238353'), + (82806, 942, 1321, 'maybe', '2022-04-11 15:34:31', '2025-12-17 19:47:27', 'dVBkpPrd', '5238355'), + (82807, 942, 1325, 'attending', '2022-04-11 15:15:29', '2025-12-17 19:47:28', 'dVBkpPrd', '5238361'), + (82808, 942, 1326, 'attending', '2022-04-11 15:32:41', '2025-12-17 19:47:28', 'dVBkpPrd', '5238362'), + (82809, 942, 1327, 'attending', '2022-04-11 15:15:06', '2025-12-17 19:47:27', 'dVBkpPrd', '5238445'), + (82810, 942, 1328, 'maybe', '2022-04-13 07:21:31', '2025-12-17 19:47:27', 'dVBkpPrd', '5238759'), + (82811, 942, 1330, 'maybe', '2022-04-18 22:00:33', '2025-12-17 19:47:27', 'dVBkpPrd', '5242155'), + (82812, 942, 1331, 'maybe', '2022-04-20 05:49:35', '2025-12-17 19:47:27', 'dVBkpPrd', '5242156'), + (82813, 942, 1336, 'maybe', '2022-04-16 03:57:56', '2025-12-17 19:47:27', 'dVBkpPrd', '5244915'), + (82814, 942, 1337, 'not_attending', '2022-04-19 18:11:12', '2025-12-17 19:47:27', 'dVBkpPrd', '5245036'), + (82815, 942, 1340, 'maybe', '2022-04-25 16:42:09', '2025-12-17 19:47:27', 'dVBkpPrd', '5245754'), + (82816, 942, 1344, 'attending', '2022-04-28 19:43:33', '2025-12-17 19:47:28', 'dVBkpPrd', '5247465'), + (82817, 942, 1345, 'attending', '2022-04-21 21:51:33', '2025-12-17 19:47:27', 'dVBkpPrd', '5247466'), + (82818, 942, 1346, 'attending', '2022-04-17 22:13:13', '2025-12-17 19:47:27', 'dVBkpPrd', '5247467'), + (82819, 942, 1354, 'not_attending', '2022-04-23 08:16:50', '2025-12-17 19:47:27', 'dVBkpPrd', '5252569'), + (82820, 942, 1359, 'not_attending', '2022-05-04 11:32:04', '2025-12-17 19:47:28', 'dVBkpPrd', '5258360'), + (82821, 942, 1362, 'attending', '2022-04-26 07:59:26', '2025-12-17 19:47:28', 'dVBkpPrd', '5260800'), + (82822, 942, 1365, 'maybe', '2022-04-27 18:32:12', '2025-12-17 19:47:28', 'dVBkpPrd', '5261600'), + (82823, 942, 1368, 'maybe', '2022-04-27 18:32:53', '2025-12-17 19:47:28', 'dVBkpPrd', '5262783'), + (82824, 942, 1371, 'maybe', '2022-04-27 18:28:52', '2025-12-17 19:47:27', 'dVBkpPrd', '5263784'), + (82825, 942, 1372, 'not_attending', '2022-05-04 21:13:25', '2025-12-17 19:47:28', 'dVBkpPrd', '5264352'), + (82826, 942, 1374, 'attending', '2022-05-01 17:47:21', '2025-12-17 19:47:28', 'dVBkpPrd', '5269930'), + (82827, 942, 1375, 'not_attending', '2022-05-02 18:01:19', '2025-12-17 19:47:28', 'dVBkpPrd', '5269932'), + (82828, 942, 1378, 'attending', '2022-05-04 11:32:30', '2025-12-17 19:47:28', 'dVBkpPrd', '5271448'), + (82829, 942, 1379, 'attending', '2022-05-04 11:32:35', '2025-12-17 19:47:29', 'dVBkpPrd', '5271449'), + (82830, 942, 1380, 'not_attending', '2022-05-25 05:41:23', '2025-12-17 19:47:30', 'dVBkpPrd', '5271450'), + (82831, 942, 1383, 'attending', '2022-05-13 17:08:21', '2025-12-17 19:47:28', 'dVBkpPrd', '5276469'), + (82832, 942, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVBkpPrd', '5278159'), + (82833, 942, 1390, 'not_attending', '2022-05-10 02:15:45', '2025-12-17 19:47:28', 'dVBkpPrd', '5279509'), + (82834, 942, 1394, 'not_attending', '2022-05-26 20:18:59', '2025-12-17 19:47:30', 'dVBkpPrd', '5280667'), + (82835, 942, 1397, 'attending', '2022-05-18 19:03:03', '2025-12-17 19:47:29', 'dVBkpPrd', '5281104'), + (82836, 942, 1403, 'maybe', '2022-05-20 20:51:05', '2025-12-17 19:47:29', 'dVBkpPrd', '5288052'), + (82837, 942, 1407, 'not_attending', '2022-06-04 21:46:28', '2025-12-17 19:47:30', 'dVBkpPrd', '5363695'), + (82838, 942, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVBkpPrd', '5365960'), + (82839, 942, 1410, 'attending', '2022-05-17 01:59:56', '2025-12-17 19:47:29', 'dVBkpPrd', '5367530'), + (82840, 942, 1411, 'attending', '2022-05-17 02:00:15', '2025-12-17 19:47:29', 'dVBkpPrd', '5367531'), + (82841, 942, 1412, 'not_attending', '2022-05-19 19:16:38', '2025-12-17 19:47:29', 'dVBkpPrd', '5367532'), + (82842, 942, 1413, 'not_attending', '2022-05-20 21:21:21', '2025-12-17 19:47:29', 'dVBkpPrd', '5367533'), + (82843, 942, 1415, 'attending', '2022-05-18 22:27:04', '2025-12-17 19:47:30', 'dVBkpPrd', '5368973'), + (82844, 942, 1420, 'attending', '2022-05-27 20:38:04', '2025-12-17 19:47:30', 'dVBkpPrd', '5374882'), + (82845, 942, 1421, 'maybe', '2022-05-29 17:26:29', '2025-12-17 19:47:30', 'dVBkpPrd', '5374885'), + (82846, 942, 1427, 'not_attending', '2022-05-25 20:33:26', '2025-12-17 19:47:30', 'dVBkpPrd', '5376074'), + (82847, 942, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVBkpPrd', '5378247'), + (82848, 942, 1429, 'maybe', '2022-05-29 17:23:47', '2025-12-17 19:47:30', 'dVBkpPrd', '5388761'), + (82849, 942, 1431, 'not_attending', '2022-06-09 22:23:34', '2025-12-17 19:47:31', 'dVBkpPrd', '5389605'), + (82850, 942, 1435, 'attending', '2022-06-02 20:56:32', '2025-12-17 19:47:30', 'dVBkpPrd', '5394015'), + (82851, 942, 1442, 'not_attending', '2022-06-13 00:14:20', '2025-12-17 19:47:17', 'dVBkpPrd', '5397265'), + (82852, 942, 1443, 'not_attending', '2022-06-04 21:47:12', '2025-12-17 19:47:30', 'dVBkpPrd', '5397613'), + (82853, 942, 1444, 'not_attending', '2022-06-09 22:23:37', '2025-12-17 19:47:30', 'dVBkpPrd', '5397614'), + (82854, 942, 1451, 'maybe', '2022-06-12 04:05:42', '2025-12-17 19:47:17', 'dVBkpPrd', '5403967'), + (82855, 942, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVBkpPrd', '5404786'), + (82856, 942, 1462, 'not_attending', '2022-06-13 00:13:03', '2025-12-17 19:47:17', 'dVBkpPrd', '5405203'), + (82857, 942, 1478, 'maybe', '2022-06-23 21:03:14', '2025-12-17 19:47:19', 'dVBkpPrd', '5408794'), + (82858, 942, 1480, 'not_attending', '2022-06-23 21:04:13', '2025-12-17 19:47:19', 'dVBkpPrd', '5411699'), + (82859, 942, 1482, 'not_attending', '2022-06-21 21:57:01', '2025-12-17 19:47:19', 'dVBkpPrd', '5412550'), + (82860, 942, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dVBkpPrd', '5415046'), + (82861, 942, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVBkpPrd', '5422086'), + (82862, 942, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dVBkpPrd', '5422406'), + (82863, 942, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVBkpPrd', '5424565'), + (82864, 942, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVBkpPrd', '5426882'), + (82865, 942, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dVBkpPrd', '5427083'), + (82866, 942, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dVBkpPrd', '5441125'), + (82867, 942, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dVBkpPrd', '5441126'), + (82868, 942, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVBkpPrd', '5441128'), + (82869, 942, 1516, 'not_attending', '2022-08-16 22:13:03', '2025-12-17 19:47:23', 'dVBkpPrd', '5441129'), + (82870, 942, 1517, 'not_attending', '2022-08-16 22:15:00', '2025-12-17 19:47:23', 'dVBkpPrd', '5441130'), + (82871, 942, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVBkpPrd', '5441131'), + (82872, 942, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVBkpPrd', '5441132'), + (82873, 942, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVBkpPrd', '5446643'), + (82874, 942, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVBkpPrd', '5453325'), + (82875, 942, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVBkpPrd', '5454516'), + (82876, 942, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVBkpPrd', '5454605'), + (82877, 942, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVBkpPrd', '5455037'), + (82878, 942, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVBkpPrd', '5461278'), + (82879, 942, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVBkpPrd', '5469480'), + (82880, 942, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVBkpPrd', '5471073'), + (82881, 942, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVBkpPrd', '5474663'), + (82882, 942, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVBkpPrd', '5482022'), + (82883, 942, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVBkpPrd', '5482793'), + (82884, 942, 1580, 'attending', '2022-08-07 20:02:34', '2025-12-17 19:47:22', 'dVBkpPrd', '5488912'), + (82885, 942, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVBkpPrd', '5492192'), + (82886, 942, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVBkpPrd', '5493139'), + (82887, 942, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVBkpPrd', '5493200'), + (82888, 942, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVBkpPrd', '5502188'), + (82889, 942, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVBkpPrd', '5505059'), + (82890, 942, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVBkpPrd', '5509055'), + (82891, 942, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVBkpPrd', '5512862'), + (82892, 942, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVBkpPrd', '5513985'), + (82893, 942, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'dVBkpPrd', '5519981'), + (82894, 942, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVBkpPrd', '5522550'), + (82895, 942, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVBkpPrd', '5534683'), + (82896, 942, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dVBkpPrd', '5537735'), + (82897, 942, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVBkpPrd', '5540859'), + (82898, 942, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVBkpPrd', '5546619'), + (82899, 942, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVBkpPrd', '5555245'), + (82900, 942, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVBkpPrd', '5557747'), + (82901, 942, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVBkpPrd', '5560255'), + (82902, 942, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVBkpPrd', '5562906'), + (82903, 942, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVBkpPrd', '5600604'), + (82904, 942, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVBkpPrd', '5605544'), + (82905, 942, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'dVBkpPrd', '5606737'), + (82906, 942, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dVBkpPrd', '5630960'), + (82907, 942, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dVBkpPrd', '5630961'), + (82908, 942, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dVBkpPrd', '5630962'), + (82909, 942, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dVBkpPrd', '5630966'), + (82910, 942, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dVBkpPrd', '5630967'), + (82911, 942, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dVBkpPrd', '5630968'), + (82912, 942, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVBkpPrd', '5635406'), + (82913, 942, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVBkpPrd', '5638765'), + (82914, 942, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dVBkpPrd', '5640097'), + (82915, 942, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVBkpPrd', '5640843'), + (82916, 942, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVBkpPrd', '5641521'), + (82917, 942, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dVBkpPrd', '5642818'), + (82918, 942, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dVBkpPrd', '5652395'), + (82919, 942, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dVBkpPrd', '5670445'), + (82920, 942, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dVBkpPrd', '5671637'), + (82921, 942, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dVBkpPrd', '5672329'), + (82922, 942, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dVBkpPrd', '5674057'), + (82923, 942, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dVBkpPrd', '5674060'), + (82924, 942, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dVBkpPrd', '5677461'), + (82925, 942, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dVBkpPrd', '5698046'), + (82926, 942, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dVBkpPrd', '5699760'), + (82927, 942, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dVBkpPrd', '5741601'), + (82928, 942, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dVBkpPrd', '5763458'), + (82929, 942, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dVBkpPrd', '5774172'), + (82930, 942, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'dVBkpPrd', '5818247'), + (82931, 942, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dVBkpPrd', '5819471'), + (82932, 942, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dVBkpPrd', '5827739'), + (82933, 942, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dVBkpPrd', '5844306'), + (82934, 942, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dVBkpPrd', '5850159'), + (82935, 942, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dVBkpPrd', '5858999'), + (82936, 942, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dVBkpPrd', '5871984'), + (82937, 942, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dVBkpPrd', '5876354'), + (82938, 942, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dVBkpPrd', '5880939'), + (82939, 942, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dVBkpPrd', '5887890'), + (82940, 942, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dVBkpPrd', '5888598'), + (82941, 942, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dVBkpPrd', '5893260'), + (82942, 942, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVBkpPrd', '6045684'), + (82943, 943, 853, 'attending', '2021-08-11 17:28:24', '2025-12-17 19:47:41', '4v8oWW5m', '4015725'), + (82944, 943, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', '4v8oWW5m', '4210314'), + (82945, 943, 902, 'attending', '2021-08-06 12:20:16', '2025-12-17 19:47:41', '4v8oWW5m', '4240318'), + (82946, 943, 903, 'attending', '2021-08-13 21:25:56', '2025-12-17 19:47:42', '4v8oWW5m', '4240320'), + (82947, 943, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '4v8oWW5m', '4304151'), + (82948, 943, 947, 'attending', '2021-08-04 23:39:16', '2025-12-17 19:47:41', '4v8oWW5m', '4315713'), + (82949, 943, 948, 'attending', '2021-08-09 10:32:29', '2025-12-17 19:47:41', '4v8oWW5m', '4315714'), + (82950, 943, 952, 'attending', '2021-08-05 19:59:41', '2025-12-17 19:47:41', '4v8oWW5m', '4318286'), + (82951, 943, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4v8oWW5m', '4356801'), + (82952, 943, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '4v8oWW5m', '4358025'), + (82953, 943, 973, 'attending', '2021-08-19 23:01:09', '2025-12-17 19:47:42', '4v8oWW5m', '4366186'), + (82954, 943, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '4v8oWW5m', '4366187'), + (82955, 943, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '4v8oWW5m', '4402823'), + (82956, 943, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4v8oWW5m', '4420735'), + (82957, 943, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4v8oWW5m', '4420738'), + (82958, 943, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4v8oWW5m', '4420739'), + (82959, 943, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4v8oWW5m', '4420741'), + (82960, 943, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4v8oWW5m', '4420744'), + (82961, 943, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4v8oWW5m', '4420747'), + (82962, 943, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4v8oWW5m', '4420748'), + (82963, 943, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4v8oWW5m', '4420749'), + (82964, 943, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4v8oWW5m', '4461883'), + (82965, 943, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4v8oWW5m', '4508342'), + (82966, 943, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4v8oWW5m', '4568602'), + (82967, 943, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4v8oWW5m', '6045684'), + (82968, 944, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'AeBNK1W4', '7113468'), + (82969, 944, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'AeBNK1W4', '7114856'), + (82970, 944, 2555, 'not_attending', '2024-04-13 21:49:13', '2025-12-17 19:46:34', 'AeBNK1W4', '7114951'), + (82971, 944, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'AeBNK1W4', '7114956'), + (82972, 944, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'AeBNK1W4', '7114957'), + (82973, 944, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'AeBNK1W4', '7153615'), + (82974, 944, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'AeBNK1W4', '7159484'), + (82975, 944, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'AeBNK1W4', '7178446'), + (82976, 944, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'AeBNK1W4', '7220467'), + (82977, 944, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'AeBNK1W4', '7240354'), + (82978, 944, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'AeBNK1W4', '7251633'), + (82979, 944, 2631, 'not_attending', '2024-05-12 16:01:32', '2025-12-17 19:46:35', 'AeBNK1W4', '7265589'), + (82980, 945, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'd9LbGPg4', '5880942'), + (82981, 945, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd9LbGPg4', '5880943'), + (82982, 945, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd9LbGPg4', '5900200'), + (82983, 945, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd9LbGPg4', '5900202'), + (82984, 945, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd9LbGPg4', '5900203'), + (82985, 945, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', 'd9LbGPg4', '5910522'), + (82986, 945, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'd9LbGPg4', '5910526'), + (82987, 945, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'd9LbGPg4', '5910528'), + (82988, 945, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'd9LbGPg4', '5916219'), + (82989, 945, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd9LbGPg4', '5936234'), + (82990, 945, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', 'd9LbGPg4', '5936691'), + (82991, 945, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd9LbGPg4', '5958351'), + (82992, 945, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd9LbGPg4', '5959751'), + (82993, 945, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd9LbGPg4', '5959755'), + (82994, 945, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd9LbGPg4', '5960055'), + (82995, 945, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd9LbGPg4', '5961684'), + (82996, 945, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd9LbGPg4', '5962132'), + (82997, 945, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd9LbGPg4', '5962133'), + (82998, 945, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd9LbGPg4', '5962134'), + (82999, 945, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd9LbGPg4', '5962317'), + (83000, 945, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd9LbGPg4', '5962318'), + (83001, 945, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd9LbGPg4', '5965933'), + (83002, 945, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd9LbGPg4', '5967014'), + (83003, 945, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd9LbGPg4', '5972815'), + (83004, 945, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd9LbGPg4', '5974016'), + (83005, 945, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd9LbGPg4', '5981515'), + (83006, 945, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd9LbGPg4', '5993516'), + (83007, 945, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd9LbGPg4', '5998939'), + (83008, 945, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd9LbGPg4', '6028191'), + (83009, 945, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd9LbGPg4', '6040066'), + (83010, 945, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd9LbGPg4', '6042717'), + (83011, 945, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9LbGPg4', '6045684'), + (83012, 946, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6obYezA', '5269930'), + (83013, 946, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6obYezA', '5271448'), + (83014, 946, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'm6obYezA', '5271449'), + (83015, 946, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'm6obYezA', '5276469'), + (83016, 946, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6obYezA', '5278159'), + (83017, 946, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'm6obYezA', '5363695'), + (83018, 946, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'm6obYezA', '5365960'), + (83019, 946, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'm6obYezA', '5368973'), + (83020, 946, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'm6obYezA', '5378247'), + (83021, 946, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'm6obYezA', '5389605'), + (83022, 946, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'm6obYezA', '5397265'), + (83023, 946, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'm6obYezA', '5403967'), + (83024, 946, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'm6obYezA', '5404786'), + (83025, 946, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'm6obYezA', '5405203'), + (83026, 946, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'm6obYezA', '5411699'), + (83027, 946, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'm6obYezA', '5412550'), + (83028, 946, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6obYezA', '5415046'), + (83029, 946, 1487, 'maybe', '2022-06-27 23:52:10', '2025-12-17 19:47:19', 'm6obYezA', '5419006'), + (83030, 946, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6obYezA', '5422086'), + (83031, 946, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6obYezA', '5422406'), + (83032, 946, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6obYezA', '5424565'), + (83033, 946, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6obYezA', '5426882'), + (83034, 946, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'm6obYezA', '5427083'), + (83035, 946, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'm6obYezA', '5441125'), + (83036, 946, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6obYezA', '5441126'), + (83037, 946, 1515, 'attending', '2022-08-03 03:57:34', '2025-12-17 19:47:21', 'm6obYezA', '5441128'), + (83038, 946, 1516, 'attending', '2022-08-18 22:44:50', '2025-12-17 19:47:23', 'm6obYezA', '5441129'), + (83039, 946, 1517, 'maybe', '2022-08-27 23:04:27', '2025-12-17 19:47:23', 'm6obYezA', '5441130'), + (83040, 946, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6obYezA', '5441131'), + (83041, 946, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6obYezA', '5441132'), + (83042, 946, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6obYezA', '5446643'), + (83043, 946, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6obYezA', '5453325'), + (83044, 946, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6obYezA', '5454516'), + (83045, 946, 1544, 'attending', '2022-09-14 05:04:22', '2025-12-17 19:47:11', 'm6obYezA', '5454517'), + (83046, 946, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6obYezA', '5454605'), + (83047, 946, 1549, 'attending', '2022-07-22 07:55:59', '2025-12-17 19:47:20', 'm6obYezA', '5454789'), + (83048, 946, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6obYezA', '5455037'), + (83049, 946, 1556, 'not_attending', '2022-07-22 07:56:45', '2025-12-17 19:47:20', 'm6obYezA', '5457734'), + (83050, 946, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6obYezA', '5461278'), + (83051, 946, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6obYezA', '5469480'), + (83052, 946, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6obYezA', '5471073'), + (83053, 946, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'm6obYezA', '5474663'), + (83054, 946, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6obYezA', '5482022'), + (83055, 946, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6obYezA', '5482793'), + (83056, 946, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6obYezA', '5488912'), + (83057, 946, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6obYezA', '5492192'), + (83058, 946, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6obYezA', '5493139'), + (83059, 946, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6obYezA', '5493200'), + (83060, 946, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6obYezA', '5502188'), + (83061, 946, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6obYezA', '5505059'), + (83062, 946, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6obYezA', '5509055'), + (83063, 946, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6obYezA', '5512862'), + (83064, 946, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6obYezA', '5513985'), + (83065, 946, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'm6obYezA', '5519981'), + (83066, 946, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6obYezA', '5522550'), + (83067, 946, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6obYezA', '5534683'), + (83068, 946, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'm6obYezA', '5537735'), + (83069, 946, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6obYezA', '5540859'), + (83070, 946, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6obYezA', '5546619'), + (83071, 946, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6obYezA', '5555245'), + (83072, 946, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6obYezA', '5557747'), + (83073, 946, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6obYezA', '5560255'), + (83074, 946, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6obYezA', '5562906'), + (83075, 946, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6obYezA', '5600604'), + (83076, 946, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6obYezA', '5605544'), + (83077, 946, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'm6obYezA', '5606737'), + (83078, 946, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6obYezA', '5630960'), + (83079, 946, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6obYezA', '5630961'), + (83080, 946, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6obYezA', '5630962'), + (83081, 946, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6obYezA', '5630966'), + (83082, 946, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6obYezA', '5630967'), + (83083, 946, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm6obYezA', '5630968'), + (83084, 946, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6obYezA', '5635406'), + (83085, 946, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6obYezA', '5638765'), + (83086, 946, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6obYezA', '5640097'), + (83087, 946, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6obYezA', '5640843'), + (83088, 946, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6obYezA', '5641521'), + (83089, 946, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6obYezA', '5642818'), + (83090, 946, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6obYezA', '5652395'), + (83091, 946, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6obYezA', '5670445'), + (83092, 946, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6obYezA', '5671637'), + (83093, 946, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6obYezA', '5672329'), + (83094, 946, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6obYezA', '5674057'), + (83095, 946, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6obYezA', '5674060'), + (83096, 946, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6obYezA', '5677461'), + (83097, 946, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6obYezA', '5698046'), + (83098, 946, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6obYezA', '5699760'), + (83099, 946, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6obYezA', '5741601'), + (83100, 946, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6obYezA', '5763458'), + (83101, 946, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6obYezA', '5774172'), + (83102, 946, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'm6obYezA', '5818247'), + (83103, 946, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6obYezA', '5819471'), + (83104, 946, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6obYezA', '5827739'), + (83105, 946, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6obYezA', '5844306'), + (83106, 946, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6obYezA', '5850159'), + (83107, 946, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6obYezA', '5858999'), + (83108, 946, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6obYezA', '5871984'), + (83109, 946, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6obYezA', '5876354'), + (83110, 946, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm6obYezA', '5880939'), + (83111, 946, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm6obYezA', '5880940'), + (83112, 946, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm6obYezA', '5880942'), + (83113, 946, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm6obYezA', '5880943'), + (83114, 946, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6obYezA', '5887890'), + (83115, 946, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6obYezA', '5888598'), + (83116, 946, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6obYezA', '5893260'), + (83117, 946, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm6obYezA', '5899826'), + (83118, 946, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm6obYezA', '5900199'), + (83119, 946, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm6obYezA', '5900200'), + (83120, 946, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm6obYezA', '5900202'), + (83121, 946, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm6obYezA', '5900203'), + (83122, 946, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm6obYezA', '5901108'), + (83123, 946, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm6obYezA', '5901126'), + (83124, 946, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm6obYezA', '5909655'), + (83125, 946, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm6obYezA', '5910522'), + (83126, 946, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm6obYezA', '5910526'), + (83127, 946, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm6obYezA', '5910528'), + (83128, 946, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm6obYezA', '5916219'), + (83129, 946, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm6obYezA', '5936234'), + (83130, 946, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm6obYezA', '5958351'), + (83131, 946, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm6obYezA', '5959751'), + (83132, 946, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm6obYezA', '5959755'), + (83133, 946, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm6obYezA', '5960055'), + (83134, 946, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm6obYezA', '5961684'), + (83135, 946, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm6obYezA', '5962132'), + (83136, 946, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm6obYezA', '5962133'), + (83137, 946, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm6obYezA', '5962134'), + (83138, 946, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm6obYezA', '5962317'), + (83139, 946, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm6obYezA', '5962318'), + (83140, 946, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm6obYezA', '5965933'), + (83141, 946, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm6obYezA', '5967014'), + (83142, 946, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm6obYezA', '5972815'), + (83143, 946, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm6obYezA', '5974016'), + (83144, 946, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'm6obYezA', '5975052'), + (83145, 946, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'm6obYezA', '5975054'), + (83146, 946, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm6obYezA', '5981515'), + (83147, 946, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm6obYezA', '5993516'), + (83148, 946, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm6obYezA', '5998939'), + (83149, 946, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm6obYezA', '6028191'), + (83150, 946, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm6obYezA', '6040066'), + (83151, 946, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm6obYezA', '6042717'), + (83152, 946, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm6obYezA', '6044838'), + (83153, 946, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm6obYezA', '6044839'), + (83154, 946, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6obYezA', '6045684'), + (83155, 946, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm6obYezA', '6050104'), + (83156, 946, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm6obYezA', '6053195'), + (83157, 946, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm6obYezA', '6053198'), + (83158, 946, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm6obYezA', '6056085'), + (83159, 946, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm6obYezA', '6056916'), + (83160, 946, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm6obYezA', '6059290'), + (83161, 946, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm6obYezA', '6060328'), + (83162, 946, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm6obYezA', '6061037'), + (83163, 946, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm6obYezA', '6061039'), + (83164, 946, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm6obYezA', '6067245'), + (83165, 946, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm6obYezA', '6068094'), + (83166, 946, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm6obYezA', '6068252'), + (83167, 946, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm6obYezA', '6068253'), + (83168, 946, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm6obYezA', '6068254'), + (83169, 946, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm6obYezA', '6068280'), + (83170, 946, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm6obYezA', '6069093'), + (83171, 946, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'm6obYezA', '6072528'), + (83172, 946, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'm6obYezA', '6075556'), + (83173, 946, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm6obYezA', '6079840'), + (83174, 946, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm6obYezA', '6083398'), + (83175, 946, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm6obYezA', '6093504'), + (83176, 946, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm6obYezA', '6097414'), + (83177, 946, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm6obYezA', '6097442'), + (83178, 946, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm6obYezA', '6097684'), + (83179, 946, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm6obYezA', '6098762'), + (83180, 946, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm6obYezA', '6101362'), + (83181, 946, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm6obYezA', '6107314'), + (83182, 947, 243, 'not_attending', '2020-11-03 23:16:02', '2025-12-17 19:47:53', 'xd9VKoJm', '3149474'), + (83183, 947, 245, 'not_attending', '2020-11-30 16:15:05', '2025-12-17 19:47:54', 'xd9VKoJm', '3149476'), + (83184, 947, 249, 'not_attending', '2020-11-17 03:54:21', '2025-12-17 19:47:54', 'xd9VKoJm', '3149480'), + (83185, 947, 388, 'not_attending', '2020-10-24 20:04:53', '2025-12-17 19:47:52', 'xd9VKoJm', '3228701'), + (83186, 947, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'xd9VKoJm', '3236467'), + (83187, 947, 440, 'not_attending', '2020-11-03 03:35:37', '2025-12-17 19:47:53', 'xd9VKoJm', '3256168'), + (83188, 947, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'xd9VKoJm', '3263578'), + (83189, 947, 450, 'not_attending', '2020-10-31 20:27:08', '2025-12-17 19:47:53', 'xd9VKoJm', '3272102'), + (83190, 947, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'xd9VKoJm', '3276428'), + (83191, 947, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'xd9VKoJm', '3281467'), + (83192, 947, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'xd9VKoJm', '3281470'), + (83193, 947, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'xd9VKoJm', '3281829'), + (83194, 947, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'xd9VKoJm', '3285413'), + (83195, 947, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'xd9VKoJm', '3285414'), + (83196, 947, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'xd9VKoJm', '3297764'), + (83197, 947, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'xd9VKoJm', '3313856'), + (83198, 947, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'xd9VKoJm', '3314909'), + (83199, 947, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'xd9VKoJm', '3314964'), + (83200, 947, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'xd9VKoJm', '3323365'), + (83201, 947, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'xd9VKoJm', '3324148'), + (83202, 947, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'xd9VKoJm', '3329383'), + (83203, 947, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'xd9VKoJm', '3351539'), + (83204, 947, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'xd9VKoJm', '3386848'), + (83205, 947, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'xd9VKoJm', '3389527'), + (83206, 947, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'xd9VKoJm', '3396499'), + (83207, 947, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'xd9VKoJm', '3403650'), + (83208, 947, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'xd9VKoJm', '3406988'), + (83209, 947, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'xd9VKoJm', '3416576'), + (83210, 947, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'xd9VKoJm', '3430267'), + (83211, 947, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'xd9VKoJm', '3468125'), + (83212, 947, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'xd9VKoJm', '3470303'), + (83213, 947, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'xd9VKoJm', '3470305'), + (83214, 947, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'xd9VKoJm', '3470991'), + (83215, 947, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'xd9VKoJm', '3517815'), + (83216, 947, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'xd9VKoJm', '3523941'), + (83217, 947, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'xd9VKoJm', '3533850'), + (83218, 947, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'xd9VKoJm', '3536632'), + (83219, 947, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'xd9VKoJm', '3536656'), + (83220, 947, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'xd9VKoJm', '3539916'), + (83221, 947, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'xd9VKoJm', '3539917'), + (83222, 947, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'xd9VKoJm', '3539918'), + (83223, 947, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'xd9VKoJm', '3539919'), + (83224, 947, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'xd9VKoJm', '3539920'), + (83225, 947, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'xd9VKoJm', '3539921'), + (83226, 947, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'xd9VKoJm', '3539922'), + (83227, 947, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'xd9VKoJm', '3539923'), + (83228, 947, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd9VKoJm', '6045684'), + (83229, 948, 629, 'attending', '2021-03-17 01:33:54', '2025-12-17 19:47:51', 'kdKrxDe4', '3533307'), + (83230, 948, 637, 'attending', '2021-03-21 01:04:58', '2025-12-17 19:47:51', 'kdKrxDe4', '3536411'), + (83231, 948, 638, 'attending', '2021-04-04 02:17:40', '2025-12-17 19:47:44', 'kdKrxDe4', '3536632'), + (83232, 948, 639, 'attending', '2021-03-21 01:05:04', '2025-12-17 19:47:51', 'kdKrxDe4', '3536656'), + (83233, 948, 641, 'attending', '2021-03-18 00:51:18', '2025-12-17 19:47:44', 'kdKrxDe4', '3539916'), + (83234, 948, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'kdKrxDe4', '3539918'), + (83235, 948, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'kdKrxDe4', '3539919'), + (83236, 948, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdKrxDe4', '3539927'), + (83237, 948, 650, 'attending', '2021-03-25 19:50:43', '2025-12-17 19:47:44', 'kdKrxDe4', '3539928'), + (83238, 948, 656, 'attending', '2021-03-21 01:04:44', '2025-12-17 19:47:51', 'kdKrxDe4', '3547130'), + (83239, 948, 661, 'attending', '2021-03-18 00:51:16', '2025-12-17 19:47:44', 'kdKrxDe4', '3547137'), + (83240, 948, 688, 'attending', '2021-03-16 20:32:25', '2025-12-17 19:47:51', 'kdKrxDe4', '3553729'), + (83241, 948, 690, 'attending', '2021-03-21 01:07:39', '2025-12-17 19:47:43', 'kdKrxDe4', '3559954'), + (83242, 948, 697, 'attending', '2021-03-18 00:52:32', '2025-12-17 19:47:44', 'kdKrxDe4', '3567537'), + (83243, 948, 706, 'attending', '2021-03-19 21:38:06', '2025-12-17 19:47:45', 'kdKrxDe4', '3582734'), + (83244, 948, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'kdKrxDe4', '3583262'), + (83245, 948, 708, 'attending', '2021-03-22 12:10:54', '2025-12-17 19:47:44', 'kdKrxDe4', '3587850'), + (83246, 948, 715, 'not_attending', '2021-03-31 21:47:35', '2025-12-17 19:47:44', 'kdKrxDe4', '3604146'), + (83247, 948, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKrxDe4', '3619523'), + (83248, 948, 722, 'attending', '2021-04-02 15:26:46', '2025-12-17 19:47:44', 'kdKrxDe4', '3646347'), + (83249, 948, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'kdKrxDe4', '3661369'), + (83250, 948, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'kdKrxDe4', '3674262'), + (83251, 948, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'kdKrxDe4', '3677402'), + (83252, 948, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKrxDe4', '6045684'), + (83253, 949, 245, 'attending', '2020-11-30 15:45:31', '2025-12-17 19:47:54', 'pmbkZ0RA', '3149476'), + (83254, 949, 493, 'not_attending', '2020-12-04 18:37:04', '2025-12-17 19:47:54', 'pmbkZ0RA', '3313856'), + (83255, 949, 496, 'attending', '2020-12-08 00:15:15', '2025-12-17 19:47:54', 'pmbkZ0RA', '3314269'), + (83256, 949, 497, 'attending', '2020-12-17 22:32:23', '2025-12-17 19:47:55', 'pmbkZ0RA', '3314270'), + (83257, 949, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'pmbkZ0RA', '3314964'), + (83258, 949, 501, 'attending', '2020-12-08 00:15:00', '2025-12-17 19:47:54', 'pmbkZ0RA', '3317834'), + (83259, 949, 502, 'attending', '2020-12-12 22:14:50', '2025-12-17 19:47:55', 'pmbkZ0RA', '3323365'), + (83260, 949, 513, 'not_attending', '2020-12-20 00:23:50', '2025-12-17 19:47:55', 'pmbkZ0RA', '3329383'), + (83261, 949, 526, 'attending', '2021-01-01 17:04:52', '2025-12-17 19:47:48', 'pmbkZ0RA', '3351539'), + (83262, 949, 532, 'not_attending', '2021-01-08 20:12:23', '2025-12-17 19:47:48', 'pmbkZ0RA', '3381412'), + (83263, 949, 536, 'attending', '2021-01-08 20:09:08', '2025-12-17 19:47:48', 'pmbkZ0RA', '3386848'), + (83264, 949, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'pmbkZ0RA', '3389527'), + (83265, 949, 542, 'not_attending', '2021-01-11 20:16:25', '2025-12-17 19:47:48', 'pmbkZ0RA', '3395013'), + (83266, 949, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'pmbkZ0RA', '3396499'), + (83267, 949, 548, 'attending', '2021-01-15 19:21:45', '2025-12-17 19:47:48', 'pmbkZ0RA', '3403650'), + (83268, 949, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'pmbkZ0RA', '3406988'), + (83269, 949, 555, 'not_attending', '2021-01-21 20:31:12', '2025-12-17 19:47:49', 'pmbkZ0RA', '3416576'), + (83270, 949, 558, 'not_attending', '2021-01-21 20:31:10', '2025-12-17 19:47:49', 'pmbkZ0RA', '3418925'), + (83271, 949, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'pmbkZ0RA', '3426074'), + (83272, 949, 568, 'maybe', '2021-01-31 00:01:30', '2025-12-17 19:47:50', 'pmbkZ0RA', '3430267'), + (83273, 949, 569, 'not_attending', '2021-01-25 06:51:08', '2025-12-17 19:47:49', 'pmbkZ0RA', '3432673'), + (83274, 949, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'pmbkZ0RA', '3468125'), + (83275, 949, 602, 'not_attending', '2021-02-13 21:49:01', '2025-12-17 19:47:50', 'pmbkZ0RA', '3470303'), + (83276, 949, 604, 'not_attending', '2021-02-27 18:55:58', '2025-12-17 19:47:50', 'pmbkZ0RA', '3470305'), + (83277, 949, 605, 'not_attending', '2021-02-14 18:40:34', '2025-12-17 19:47:50', 'pmbkZ0RA', '3470991'), + (83278, 949, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'pmbkZ0RA', '3517815'), + (83279, 949, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'pmbkZ0RA', '3517816'), + (83280, 949, 623, 'not_attending', '2021-02-27 18:55:53', '2025-12-17 19:47:51', 'pmbkZ0RA', '3523941'), + (83281, 949, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmbkZ0RA', '3533850'), + (83282, 949, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmbkZ0RA', '3536632'), + (83283, 949, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmbkZ0RA', '3536656'), + (83284, 949, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'pmbkZ0RA', '3539916'), + (83285, 949, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'pmbkZ0RA', '3539917'), + (83286, 949, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmbkZ0RA', '3539918'), + (83287, 949, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539919'), + (83288, 949, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539920'), + (83289, 949, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539921'), + (83290, 949, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmbkZ0RA', '3539922'), + (83291, 949, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmbkZ0RA', '3539923'), + (83292, 949, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmbkZ0RA', '3539927'), + (83293, 949, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmbkZ0RA', '3582734'), + (83294, 949, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmbkZ0RA', '3583262'), + (83295, 949, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmbkZ0RA', '3619523'), + (83296, 949, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmbkZ0RA', '3661369'), + (83297, 949, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmbkZ0RA', '3674262'), + (83298, 949, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmbkZ0RA', '3677402'), + (83299, 949, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmbkZ0RA', '3730212'), + (83300, 949, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbkZ0RA', '6045684'), + (83301, 950, 2999, 'not_attending', '2025-02-13 02:18:52', '2025-12-17 19:46:23', 'Aen0O0j4', '7844784'), + (83302, 951, 951, 'not_attending', '2021-08-29 21:00:17', '2025-12-17 19:47:43', 'dlOnPVX4', '4315731'), + (83303, 951, 971, 'maybe', '2021-09-07 15:01:38', '2025-12-17 19:47:43', 'dlOnPVX4', '4356801'), + (83304, 951, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'dlOnPVX4', '4366187'), + (83305, 951, 990, 'attending', '2021-08-31 23:35:43', '2025-12-17 19:47:43', 'dlOnPVX4', '4420735'), + (83306, 951, 991, 'attending', '2021-09-11 22:10:18', '2025-12-17 19:47:43', 'dlOnPVX4', '4420738'), + (83307, 951, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'dlOnPVX4', '4420739'), + (83308, 951, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dlOnPVX4', '4420741'), + (83309, 951, 994, 'attending', '2021-10-02 21:47:23', '2025-12-17 19:47:34', 'dlOnPVX4', '4420742'), + (83310, 951, 995, 'attending', '2021-10-09 16:58:46', '2025-12-17 19:47:34', 'dlOnPVX4', '4420744'), + (83311, 951, 996, 'attending', '2021-10-16 20:15:45', '2025-12-17 19:47:35', 'dlOnPVX4', '4420747'), + (83312, 951, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dlOnPVX4', '4420748'), + (83313, 951, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dlOnPVX4', '4420749'), + (83314, 951, 1002, 'attending', '2021-08-30 14:46:59', '2025-12-17 19:47:43', 'dlOnPVX4', '4424932'), + (83315, 951, 1016, 'attending', '2021-09-07 15:02:52', '2025-12-17 19:47:43', 'dlOnPVX4', '4441271'), + (83316, 951, 1017, 'maybe', '2021-09-05 19:43:19', '2025-12-17 19:47:43', 'dlOnPVX4', '4441822'), + (83317, 951, 1019, 'attending', '2021-09-07 15:03:10', '2025-12-17 19:47:43', 'dlOnPVX4', '4450515'), + (83318, 951, 1020, 'not_attending', '2021-09-13 20:34:58', '2025-12-17 19:47:43', 'dlOnPVX4', '4451787'), + (83319, 951, 1021, 'attending', '2021-09-07 15:03:06', '2025-12-17 19:47:34', 'dlOnPVX4', '4451803'), + (83320, 951, 1022, 'attending', '2021-09-15 21:54:02', '2025-12-17 19:47:43', 'dlOnPVX4', '4458628'), + (83321, 951, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dlOnPVX4', '4461883'), + (83322, 951, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dlOnPVX4', '4508342'), + (83323, 951, 1072, 'attending', '2021-10-05 01:37:15', '2025-12-17 19:47:34', 'dlOnPVX4', '4516287'), + (83324, 951, 1078, 'not_attending', '2021-10-07 20:33:10', '2025-12-17 19:47:34', 'dlOnPVX4', '4541281'), + (83325, 951, 1079, 'attending', '2021-10-20 15:42:21', '2025-12-17 19:47:35', 'dlOnPVX4', '4563823'), + (83326, 951, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dlOnPVX4', '4568602'), + (83327, 951, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dlOnPVX4', '4572153'), + (83328, 951, 1092, 'attending', '2021-10-21 03:31:13', '2025-12-17 19:47:35', 'dlOnPVX4', '4582837'), + (83329, 951, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dlOnPVX4', '4585962'), + (83330, 951, 1094, 'attending', '2021-10-27 15:43:41', '2025-12-17 19:47:36', 'dlOnPVX4', '4587337'), + (83331, 951, 1095, 'attending', '2021-10-27 13:43:32', '2025-12-17 19:47:35', 'dlOnPVX4', '4596356'), + (83332, 951, 1096, 'not_attending', '2021-10-27 13:43:20', '2025-12-17 19:47:36', 'dlOnPVX4', '4596453'), + (83333, 951, 1097, 'attending', '2021-11-01 02:10:41', '2025-12-17 19:47:36', 'dlOnPVX4', '4598860'), + (83334, 951, 1098, 'attending', '2021-11-10 18:33:15', '2025-12-17 19:47:36', 'dlOnPVX4', '4598861'), + (83335, 951, 1099, 'attending', '2021-11-06 14:01:17', '2025-12-17 19:47:36', 'dlOnPVX4', '4602797'), + (83336, 951, 1103, 'attending', '2021-11-13 21:16:06', '2025-12-17 19:47:36', 'dlOnPVX4', '4616350'), + (83337, 951, 1108, 'attending', '2021-11-13 21:15:40', '2025-12-17 19:47:37', 'dlOnPVX4', '4632276'), + (83338, 951, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dlOnPVX4', '4637896'), + (83339, 951, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dlOnPVX4', '4642994'), + (83340, 951, 1117, 'attending', '2021-12-06 01:31:40', '2025-12-17 19:47:37', 'dlOnPVX4', '4642995'), + (83341, 951, 1118, 'attending', '2021-12-14 20:16:29', '2025-12-17 19:47:38', 'dlOnPVX4', '4642996'), + (83342, 951, 1119, 'not_attending', '2021-12-23 00:28:36', '2025-12-17 19:47:31', 'dlOnPVX4', '4642997'), + (83343, 951, 1126, 'attending', '2021-12-06 01:31:59', '2025-12-17 19:47:38', 'dlOnPVX4', '4645687'), + (83344, 951, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dlOnPVX4', '4645698'), + (83345, 951, 1128, 'attending', '2021-11-20 18:01:15', '2025-12-17 19:47:37', 'dlOnPVX4', '4645704'), + (83346, 951, 1129, 'attending', '2021-11-21 04:00:16', '2025-12-17 19:47:37', 'dlOnPVX4', '4645705'), + (83347, 951, 1130, 'attending', '2021-12-04 23:15:21', '2025-12-17 19:47:37', 'dlOnPVX4', '4658824'), + (83348, 951, 1131, 'attending', '2021-12-13 01:05:26', '2025-12-17 19:47:31', 'dlOnPVX4', '4658825'), + (83349, 951, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dlOnPVX4', '4668385'), + (83350, 951, 1143, 'attending', '2021-12-02 00:00:09', '2025-12-17 19:47:37', 'dlOnPVX4', '4683667'), + (83351, 951, 1147, 'attending', '2021-12-14 20:16:26', '2025-12-17 19:47:38', 'dlOnPVX4', '4692842'), + (83352, 951, 1148, 'attending', '2021-12-14 20:16:37', '2025-12-17 19:47:31', 'dlOnPVX4', '4692843'), + (83353, 951, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dlOnPVX4', '4694407'), + (83354, 951, 1151, 'attending', '2021-12-19 17:28:58', '2025-12-17 19:47:31', 'dlOnPVX4', '4708704'), + (83355, 951, 1152, 'attending', '2022-01-10 21:24:47', '2025-12-17 19:47:31', 'dlOnPVX4', '4708705'), + (83356, 951, 1153, 'attending', '2022-01-26 18:08:33', '2025-12-17 19:47:32', 'dlOnPVX4', '4708707'), + (83357, 951, 1155, 'attending', '2021-12-19 17:28:34', '2025-12-17 19:47:31', 'dlOnPVX4', '4715119'), + (83358, 951, 1156, 'not_attending', '2021-12-21 23:55:51', '2025-12-17 19:47:31', 'dlOnPVX4', '4715207'), + (83359, 951, 1164, 'attending', '2021-12-28 22:28:52', '2025-12-17 19:47:31', 'dlOnPVX4', '4724208'), + (83360, 951, 1165, 'attending', '2021-12-28 22:28:54', '2025-12-17 19:47:31', 'dlOnPVX4', '4724210'), + (83361, 951, 1170, 'attending', '2022-01-08 19:19:49', '2025-12-17 19:47:31', 'dlOnPVX4', '4731045'), + (83362, 951, 1175, 'attending', '2022-01-22 21:52:25', '2025-12-17 19:47:32', 'dlOnPVX4', '4736497'), + (83363, 951, 1176, 'maybe', '2022-02-02 19:53:39', '2025-12-17 19:47:32', 'dlOnPVX4', '4736498'), + (83364, 951, 1177, 'attending', '2022-02-12 23:47:47', '2025-12-17 19:47:32', 'dlOnPVX4', '4736499'), + (83365, 951, 1178, 'attending', '2022-01-22 23:13:25', '2025-12-17 19:47:32', 'dlOnPVX4', '4736500'), + (83366, 951, 1179, 'attending', '2022-02-13 17:25:45', '2025-12-17 19:47:32', 'dlOnPVX4', '4736501'), + (83367, 951, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dlOnPVX4', '4736503'), + (83368, 951, 1182, 'attending', '2022-03-09 18:27:51', '2025-12-17 19:47:33', 'dlOnPVX4', '4736504'), + (83369, 951, 1184, 'attending', '2022-01-08 19:19:46', '2025-12-17 19:47:31', 'dlOnPVX4', '4742350'), + (83370, 951, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dlOnPVX4', '4746789'), + (83371, 951, 1188, 'attending', '2022-01-11 16:10:53', '2025-12-17 19:47:31', 'dlOnPVX4', '4753929'), + (83372, 951, 1190, 'maybe', '2022-01-12 20:24:21', '2025-12-17 19:47:31', 'dlOnPVX4', '4757377'), + (83373, 951, 1192, 'attending', '2022-01-16 22:01:19', '2025-12-17 19:47:32', 'dlOnPVX4', '4758745'), + (83374, 951, 1200, 'attending', '2022-01-17 23:05:15', '2025-12-17 19:47:32', 'dlOnPVX4', '4766830'), + (83375, 951, 1202, 'maybe', '2022-01-22 23:14:49', '2025-12-17 19:47:32', 'dlOnPVX4', '4769423'), + (83376, 951, 1206, 'not_attending', '2022-04-07 20:35:36', '2025-12-17 19:47:27', 'dlOnPVX4', '4773578'), + (83377, 951, 1219, 'attending', '2022-01-31 19:37:31', '2025-12-17 19:47:32', 'dlOnPVX4', '4788466'), + (83378, 951, 1222, 'attending', '2022-02-13 17:25:57', '2025-12-17 19:47:32', 'dlOnPVX4', '5015628'), + (83379, 951, 1224, 'attending', '2022-01-31 19:37:29', '2025-12-17 19:47:32', 'dlOnPVX4', '5016682'), + (83380, 951, 1228, 'attending', '2022-02-06 20:45:53', '2025-12-17 19:47:32', 'dlOnPVX4', '5028238'), + (83381, 951, 1229, 'not_attending', '2022-02-19 00:54:27', '2025-12-17 19:47:32', 'dlOnPVX4', '5034963'), + (83382, 951, 1232, 'attending', '2022-02-08 23:36:56', '2025-12-17 19:47:32', 'dlOnPVX4', '5038850'), + (83383, 951, 1236, 'maybe', '2022-02-14 14:44:10', '2025-12-17 19:47:32', 'dlOnPVX4', '5045826'), + (83384, 951, 1239, 'attending', '2022-03-02 23:45:17', '2025-12-17 19:47:33', 'dlOnPVX4', '5052238'), + (83385, 951, 1240, 'attending', '2022-03-12 23:31:49', '2025-12-17 19:47:33', 'dlOnPVX4', '5052239'), + (83386, 951, 1241, 'attending', '2022-03-17 23:06:55', '2025-12-17 19:47:25', 'dlOnPVX4', '5052240'), + (83387, 951, 1249, 'attending', '2022-03-09 18:27:58', '2025-12-17 19:47:33', 'dlOnPVX4', '5068530'), + (83388, 951, 1252, 'maybe', '2022-03-04 23:22:03', '2025-12-17 19:47:33', 'dlOnPVX4', '5129121'), + (83389, 951, 1259, 'attending', '2022-03-02 23:45:01', '2025-12-17 19:47:33', 'dlOnPVX4', '5132533'), + (83390, 951, 1264, 'attending', '2022-03-12 23:31:53', '2025-12-17 19:47:25', 'dlOnPVX4', '5160281'), + (83391, 951, 1266, 'not_attending', '2022-03-14 21:48:59', '2025-12-17 19:47:33', 'dlOnPVX4', '5166407'), + (83392, 951, 1269, 'attending', '2022-03-14 20:00:27', '2025-12-17 19:47:25', 'dlOnPVX4', '5179439'), + (83393, 951, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dlOnPVX4', '5186582'), + (83394, 951, 1273, 'attending', '2022-03-17 23:06:58', '2025-12-17 19:47:25', 'dlOnPVX4', '5186583'), + (83395, 951, 1274, 'not_attending', '2022-04-02 19:53:27', '2025-12-17 19:47:26', 'dlOnPVX4', '5186585'), + (83396, 951, 1276, 'attending', '2022-03-25 21:59:58', '2025-12-17 19:47:25', 'dlOnPVX4', '5186820'), + (83397, 951, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dlOnPVX4', '5190437'), + (83398, 951, 1284, 'attending', '2022-04-10 15:17:07', '2025-12-17 19:47:27', 'dlOnPVX4', '5195095'), + (83399, 951, 1289, 'attending', '2022-03-28 18:12:52', '2025-12-17 19:47:25', 'dlOnPVX4', '5200190'), + (83400, 951, 1290, 'attending', '2022-03-28 18:12:50', '2025-12-17 19:47:25', 'dlOnPVX4', '5200196'), + (83401, 951, 1293, 'attending', '2022-04-03 14:11:52', '2025-12-17 19:47:27', 'dlOnPVX4', '5214641'), + (83402, 951, 1297, 'attending', '2022-03-28 18:12:59', '2025-12-17 19:47:25', 'dlOnPVX4', '5215989'), + (83403, 951, 1298, 'attending', '2022-03-31 16:32:38', '2025-12-17 19:47:25', 'dlOnPVX4', '5216645'), + (83404, 951, 1300, 'attending', '2022-03-31 12:05:21', '2025-12-17 19:47:25', 'dlOnPVX4', '5217936'), + (83405, 951, 1302, 'not_attending', '2022-04-08 23:14:25', '2025-12-17 19:47:27', 'dlOnPVX4', '5220867'), + (83406, 951, 1304, 'maybe', '2022-04-06 13:08:17', '2025-12-17 19:47:26', 'dlOnPVX4', '5223468'), + (83407, 951, 1306, 'attending', '2022-04-05 21:32:57', '2025-12-17 19:47:26', 'dlOnPVX4', '5223682'), + (83408, 951, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dlOnPVX4', '5223686'), + (83409, 951, 1308, 'attending', '2022-04-10 15:17:05', '2025-12-17 19:47:27', 'dlOnPVX4', '5226703'), + (83410, 951, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dlOnPVX4', '5227432'), + (83411, 951, 1312, 'not_attending', '2022-04-15 00:27:49', '2025-12-17 19:47:27', 'dlOnPVX4', '5231459'), + (83412, 951, 1313, 'attending', '2022-04-08 23:14:02', '2025-12-17 19:47:27', 'dlOnPVX4', '5231461'), + (83413, 951, 1314, 'not_attending', '2022-04-11 18:37:18', '2025-12-17 19:47:27', 'dlOnPVX4', '5233137'), + (83414, 951, 1319, 'attending', '2022-04-13 19:46:06', '2025-12-17 19:47:27', 'dlOnPVX4', '5238353'), + (83415, 951, 1320, 'not_attending', '2022-04-11 18:33:43', '2025-12-17 19:47:27', 'dlOnPVX4', '5238354'), + (83416, 951, 1325, 'attending', '2022-04-21 14:30:24', '2025-12-17 19:47:28', 'dlOnPVX4', '5238361'), + (83417, 951, 1326, 'attending', '2022-04-21 14:30:27', '2025-12-17 19:47:28', 'dlOnPVX4', '5238362'), + (83418, 951, 1328, 'attending', '2022-04-12 22:46:31', '2025-12-17 19:47:27', 'dlOnPVX4', '5238759'), + (83419, 951, 1330, 'attending', '2022-04-13 00:12:36', '2025-12-17 19:47:27', 'dlOnPVX4', '5242155'), + (83420, 951, 1334, 'not_attending', '2022-04-14 19:25:43', '2025-12-17 19:47:27', 'dlOnPVX4', '5244797'), + (83421, 951, 1336, 'attending', '2022-04-15 00:27:41', '2025-12-17 19:47:27', 'dlOnPVX4', '5244915'), + (83422, 951, 1337, 'attending', '2022-04-19 17:45:43', '2025-12-17 19:47:27', 'dlOnPVX4', '5245036'), + (83423, 951, 1345, 'not_attending', '2022-04-23 20:32:58', '2025-12-17 19:47:27', 'dlOnPVX4', '5247466'), + (83424, 951, 1346, 'attending', '2022-04-19 21:41:59', '2025-12-17 19:47:27', 'dlOnPVX4', '5247467'), + (83425, 951, 1362, 'attending', '2022-04-25 17:45:35', '2025-12-17 19:47:28', 'dlOnPVX4', '5260800'), + (83426, 951, 1364, 'attending', '2022-04-30 18:41:44', '2025-12-17 19:47:28', 'dlOnPVX4', '5261598'), + (83427, 951, 1365, 'attending', '2022-04-29 19:40:38', '2025-12-17 19:47:28', 'dlOnPVX4', '5261600'), + (83428, 951, 1371, 'attending', '2022-04-27 21:16:59', '2025-12-17 19:47:27', 'dlOnPVX4', '5263784'), + (83429, 951, 1374, 'attending', '2022-05-05 17:52:20', '2025-12-17 19:47:28', 'dlOnPVX4', '5269930'), + (83430, 951, 1378, 'maybe', '2022-05-11 21:20:21', '2025-12-17 19:47:29', 'dlOnPVX4', '5271448'), + (83431, 951, 1379, 'attending', '2022-05-15 23:18:18', '2025-12-17 19:47:29', 'dlOnPVX4', '5271449'), + (83432, 951, 1381, 'attending', '2022-05-03 15:41:58', '2025-12-17 19:47:28', 'dlOnPVX4', '5271453'), + (83433, 951, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dlOnPVX4', '5276469'), + (83434, 951, 1385, 'attending', '2022-05-11 19:56:20', '2025-12-17 19:47:28', 'dlOnPVX4', '5277822'), + (83435, 951, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dlOnPVX4', '5278159'), + (83436, 951, 1390, 'not_attending', '2022-05-14 15:53:44', '2025-12-17 19:47:28', 'dlOnPVX4', '5279509'), + (83437, 951, 1395, 'attending', '2022-05-07 16:30:45', '2025-12-17 19:47:28', 'dlOnPVX4', '5281102'), + (83438, 951, 1401, 'attending', '2022-05-16 17:43:22', '2025-12-17 19:47:29', 'dlOnPVX4', '5286295'), + (83439, 951, 1407, 'attending', '2022-05-15 23:18:04', '2025-12-17 19:47:30', 'dlOnPVX4', '5363695'), + (83440, 951, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dlOnPVX4', '5365960'), + (83441, 951, 1409, 'attending', '2022-05-16 21:53:32', '2025-12-17 19:47:30', 'dlOnPVX4', '5367032'), + (83442, 951, 1412, 'not_attending', '2022-05-19 23:14:36', '2025-12-17 19:47:29', 'dlOnPVX4', '5367532'), + (83443, 951, 1414, 'attending', '2022-05-20 01:22:15', '2025-12-17 19:47:29', 'dlOnPVX4', '5368445'), + (83444, 951, 1415, 'attending', '2022-06-03 17:30:57', '2025-12-17 19:47:30', 'dlOnPVX4', '5368973'), + (83445, 951, 1416, 'attending', '2022-05-28 16:21:13', '2025-12-17 19:47:30', 'dlOnPVX4', '5369628'), + (83446, 951, 1419, 'attending', '2022-06-03 17:31:14', '2025-12-17 19:47:30', 'dlOnPVX4', '5373081'), + (83447, 951, 1423, 'attending', '2022-06-09 21:54:48', '2025-12-17 19:47:17', 'dlOnPVX4', '5375727'), + (83448, 951, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dlOnPVX4', '5378247'), + (83449, 951, 1431, 'attending', '2022-06-07 13:24:29', '2025-12-17 19:47:30', 'dlOnPVX4', '5389605'), + (83450, 951, 1436, 'not_attending', '2022-06-02 21:19:01', '2025-12-17 19:47:30', 'dlOnPVX4', '5394292'), + (83451, 951, 1438, 'attending', '2022-06-01 17:54:43', '2025-12-17 19:47:30', 'dlOnPVX4', '5395032'), + (83452, 951, 1442, 'attending', '2022-06-18 18:26:46', '2025-12-17 19:47:17', 'dlOnPVX4', '5397265'), + (83453, 951, 1443, 'attending', '2022-06-03 17:30:48', '2025-12-17 19:47:30', 'dlOnPVX4', '5397613'), + (83454, 951, 1451, 'attending', '2022-06-09 21:54:50', '2025-12-17 19:47:17', 'dlOnPVX4', '5403967'), + (83455, 951, 1454, 'not_attending', '2022-06-13 00:57:53', '2025-12-17 19:47:31', 'dlOnPVX4', '5404771'), + (83456, 951, 1455, 'maybe', '2022-06-10 16:36:54', '2025-12-17 19:47:31', 'dlOnPVX4', '5404772'), + (83457, 951, 1458, 'not_attending', '2022-06-19 19:18:38', '2025-12-17 19:47:17', 'dlOnPVX4', '5404786'), + (83458, 951, 1460, 'attending', '2022-06-13 16:35:24', '2025-12-17 19:47:31', 'dlOnPVX4', '5404817'), + (83459, 951, 1462, 'maybe', '2022-06-10 19:00:22', '2025-12-17 19:47:17', 'dlOnPVX4', '5405203'), + (83460, 951, 1475, 'attending', '2022-06-16 22:43:11', '2025-12-17 19:47:17', 'dlOnPVX4', '5408108'), + (83461, 951, 1477, 'maybe', '2022-06-21 23:25:06', '2025-12-17 19:47:17', 'dlOnPVX4', '5408766'), + (83462, 951, 1479, 'not_attending', '2022-06-17 14:27:53', '2025-12-17 19:47:17', 'dlOnPVX4', '5410322'), + (83463, 951, 1480, 'attending', '2022-06-18 18:26:37', '2025-12-17 19:47:19', 'dlOnPVX4', '5411699'), + (83464, 951, 1481, 'not_attending', '2022-06-20 21:22:40', '2025-12-17 19:47:17', 'dlOnPVX4', '5412237'), + (83465, 951, 1482, 'attending', '2022-06-20 13:31:54', '2025-12-17 19:47:19', 'dlOnPVX4', '5412550'), + (83466, 951, 1483, 'attending', '2022-06-20 22:19:56', '2025-12-17 19:47:17', 'dlOnPVX4', '5414556'), + (83467, 951, 1484, 'attending', '2022-06-20 21:22:02', '2025-12-17 19:47:17', 'dlOnPVX4', '5415046'), + (83468, 951, 1490, 'not_attending', '2022-07-05 23:02:40', '2025-12-17 19:47:19', 'dlOnPVX4', '5420156'), + (83469, 951, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dlOnPVX4', '5422086'), + (83470, 951, 1496, 'attending', '2022-06-28 13:52:49', '2025-12-17 19:47:19', 'dlOnPVX4', '5422404'), + (83471, 951, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dlOnPVX4', '5422406'), + (83472, 951, 1501, 'attending', '2022-06-28 15:35:25', '2025-12-17 19:47:19', 'dlOnPVX4', '5424546'), + (83473, 951, 1502, 'attending', '2022-06-28 17:22:04', '2025-12-17 19:47:19', 'dlOnPVX4', '5424565'), + (83474, 951, 1504, 'attending', '2022-07-05 23:03:18', '2025-12-17 19:47:19', 'dlOnPVX4', '5426882'), + (83475, 951, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dlOnPVX4', '5427083'), + (83476, 951, 1508, 'attending', '2022-07-02 20:51:53', '2025-12-17 19:47:19', 'dlOnPVX4', '5433453'), + (83477, 951, 1511, 'attending', '2022-07-09 20:14:21', '2025-12-17 19:47:19', 'dlOnPVX4', '5437733'), + (83478, 951, 1513, 'attending', '2022-07-09 13:36:22', '2025-12-17 19:47:19', 'dlOnPVX4', '5441125'), + (83479, 951, 1514, 'attending', '2022-07-09 20:14:27', '2025-12-17 19:47:20', 'dlOnPVX4', '5441126'), + (83480, 951, 1515, 'attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dlOnPVX4', '5441128'), + (83481, 951, 1516, 'attending', '2022-08-19 23:07:06', '2025-12-17 19:47:23', 'dlOnPVX4', '5441129'), + (83482, 951, 1517, 'attending', '2022-08-27 16:03:26', '2025-12-17 19:47:23', 'dlOnPVX4', '5441130'), + (83483, 951, 1518, 'attending', '2022-08-25 15:08:54', '2025-12-17 19:47:24', 'dlOnPVX4', '5441131'), + (83484, 951, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dlOnPVX4', '5441132'), + (83485, 951, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dlOnPVX4', '5446643'), + (83486, 951, 1540, 'not_attending', '2022-07-18 13:12:46', '2025-12-17 19:47:20', 'dlOnPVX4', '5453325'), + (83487, 951, 1541, 'attending', '2022-07-18 19:51:25', '2025-12-17 19:47:20', 'dlOnPVX4', '5453542'), + (83488, 951, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dlOnPVX4', '5454516'), + (83489, 951, 1544, 'attending', '2022-09-17 03:51:09', '2025-12-17 19:47:11', 'dlOnPVX4', '5454517'), + (83490, 951, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dlOnPVX4', '5454605'), + (83491, 951, 1551, 'attending', '2022-07-19 21:32:07', '2025-12-17 19:47:20', 'dlOnPVX4', '5455037'), + (83492, 951, 1558, 'attending', '2022-09-11 22:55:32', '2025-12-17 19:47:10', 'dlOnPVX4', '5458730'), + (83493, 951, 1559, 'attending', '2022-09-28 18:54:59', '2025-12-17 19:47:11', 'dlOnPVX4', '5458731'), + (83494, 951, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dlOnPVX4', '5461278'), + (83495, 951, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dlOnPVX4', '5469480'), + (83496, 951, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dlOnPVX4', '5471073'), + (83497, 951, 1566, 'attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dlOnPVX4', '5474663'), + (83498, 951, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dlOnPVX4', '5482022'), + (83499, 951, 1572, 'attending', '2022-08-02 14:40:13', '2025-12-17 19:47:22', 'dlOnPVX4', '5482078'), + (83500, 951, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dlOnPVX4', '5482793'), + (83501, 951, 1578, 'attending', '2022-08-02 14:32:55', '2025-12-17 19:47:21', 'dlOnPVX4', '5483073'), + (83502, 951, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dlOnPVX4', '5488912'), + (83503, 951, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dlOnPVX4', '5492192'), + (83504, 951, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dlOnPVX4', '5493139'), + (83505, 951, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dlOnPVX4', '5493200'), + (83506, 951, 1592, 'attending', '2022-08-09 17:54:36', '2025-12-17 19:47:22', 'dlOnPVX4', '5494031'), + (83507, 951, 1593, 'attending', '2022-08-09 17:54:54', '2025-12-17 19:47:22', 'dlOnPVX4', '5494043'), + (83508, 951, 1602, 'attending', '2022-08-13 16:46:37', '2025-12-17 19:47:22', 'dlOnPVX4', '5497383'), + (83509, 951, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dlOnPVX4', '5502188'), + (83510, 951, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dlOnPVX4', '5505059'), + (83511, 951, 1615, 'attending', '2022-08-27 16:03:33', '2025-12-17 19:47:23', 'dlOnPVX4', '5509055'), + (83512, 951, 1619, 'attending', '2022-08-23 17:40:34', '2025-12-17 19:47:23', 'dlOnPVX4', '5512862'), + (83513, 951, 1621, 'not_attending', '2022-08-23 17:40:19', '2025-12-17 19:47:23', 'dlOnPVX4', '5513531'), + (83514, 951, 1623, 'not_attending', '2022-08-23 17:40:22', '2025-12-17 19:47:23', 'dlOnPVX4', '5513678'), + (83515, 951, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dlOnPVX4', '5513985'), + (83516, 951, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'dlOnPVX4', '5519981'), + (83517, 951, 1629, 'attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dlOnPVX4', '5522550'), + (83518, 951, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dlOnPVX4', '5534683'), + (83519, 951, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dlOnPVX4', '5537735'), + (83520, 951, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dlOnPVX4', '5540859'), + (83521, 951, 1642, 'not_attending', '2022-09-07 16:36:00', '2025-12-17 19:47:24', 'dlOnPVX4', '5544227'), + (83522, 951, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dlOnPVX4', '5546619'), + (83523, 951, 1648, 'not_attending', '2022-09-07 16:35:53', '2025-12-17 19:47:24', 'dlOnPVX4', '5548974'), + (83524, 951, 1652, 'not_attending', '2022-09-07 16:36:03', '2025-12-17 19:47:24', 'dlOnPVX4', '5552671'), + (83525, 951, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dlOnPVX4', '5555245'), + (83526, 951, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dlOnPVX4', '5557747'), + (83527, 951, 1661, 'maybe', '2022-09-09 16:00:05', '2025-12-17 19:47:24', 'dlOnPVX4', '5560254'), + (83528, 951, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dlOnPVX4', '5560255'), + (83529, 951, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dlOnPVX4', '5562906'), + (83530, 951, 1674, 'attending', '2022-09-18 17:35:01', '2025-12-17 19:47:12', 'dlOnPVX4', '5593112'), + (83531, 951, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dlOnPVX4', '5600604'), + (83532, 951, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dlOnPVX4', '5605544'), + (83533, 951, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'dlOnPVX4', '5606737'), + (83534, 951, 1705, 'attending', '2022-10-02 19:07:39', '2025-12-17 19:47:12', 'dlOnPVX4', '5612209'), + (83535, 951, 1708, 'attending', '2022-10-05 20:28:54', '2025-12-17 19:47:12', 'dlOnPVX4', '5617648'), + (83536, 951, 1713, 'maybe', '2022-10-15 19:51:55', '2025-12-17 19:47:13', 'dlOnPVX4', '5622108'), + (83537, 951, 1714, 'attending', '2022-10-23 19:53:19', '2025-12-17 19:47:14', 'dlOnPVX4', '5622347'), + (83538, 951, 1719, 'attending', '2022-10-05 20:28:46', '2025-12-17 19:47:12', 'dlOnPVX4', '5630958'), + (83539, 951, 1720, 'maybe', '2022-10-15 19:48:05', '2025-12-17 19:47:12', 'dlOnPVX4', '5630959'), + (83540, 951, 1721, 'attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dlOnPVX4', '5630960'), + (83541, 951, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dlOnPVX4', '5630961'), + (83542, 951, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dlOnPVX4', '5630962'), + (83543, 951, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dlOnPVX4', '5630966'), + (83544, 951, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dlOnPVX4', '5630967'), + (83545, 951, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dlOnPVX4', '5630968'), + (83546, 951, 1727, 'attending', '2022-12-03 23:50:46', '2025-12-17 19:47:16', 'dlOnPVX4', '5630969'), + (83547, 951, 1728, 'attending', '2022-11-30 17:27:43', '2025-12-17 19:47:17', 'dlOnPVX4', '5630970'), + (83548, 951, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dlOnPVX4', '5635406'), + (83549, 951, 1736, 'attending', '2022-11-01 20:15:14', '2025-12-17 19:47:15', 'dlOnPVX4', '5638456'), + (83550, 951, 1737, 'attending', '2022-11-29 17:42:05', '2025-12-17 19:47:16', 'dlOnPVX4', '5638457'), + (83551, 951, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dlOnPVX4', '5638765'), + (83552, 951, 1739, 'attending', '2022-10-12 22:21:15', '2025-12-17 19:47:14', 'dlOnPVX4', '5640097'), + (83553, 951, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dlOnPVX4', '5640843'), + (83554, 951, 1743, 'attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dlOnPVX4', '5641521'), + (83555, 951, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dlOnPVX4', '5642818'), + (83556, 951, 1750, 'attending', '2022-11-01 17:40:59', '2025-12-17 19:47:15', 'dlOnPVX4', '5652365'), + (83557, 951, 1751, 'attending', '2022-10-15 19:51:35', '2025-12-17 19:47:13', 'dlOnPVX4', '5652395'), + (83558, 951, 1758, 'attending', '2022-10-21 13:36:52', '2025-12-17 19:47:13', 'dlOnPVX4', '5668976'), + (83559, 951, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dlOnPVX4', '5670445'), + (83560, 951, 1763, 'attending', '2022-11-11 15:01:58', '2025-12-17 19:47:15', 'dlOnPVX4', '5670803'), + (83561, 951, 1764, 'attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dlOnPVX4', '5671637'), + (83562, 951, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dlOnPVX4', '5672329'), + (83563, 951, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dlOnPVX4', '5674057'), + (83564, 951, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dlOnPVX4', '5674060'), + (83565, 951, 1768, 'attending', '2022-11-19 16:41:35', '2025-12-17 19:47:16', 'dlOnPVX4', '5674062'), + (83566, 951, 1770, 'attending', '2022-10-28 16:44:38', '2025-12-17 19:47:14', 'dlOnPVX4', '5676936'), + (83567, 951, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dlOnPVX4', '5677461'), + (83568, 951, 1781, 'attending', '2022-11-02 15:38:43', '2025-12-17 19:47:15', 'dlOnPVX4', '5696178'), + (83569, 951, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dlOnPVX4', '5698046'), + (83570, 951, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dlOnPVX4', '5699760'), + (83571, 951, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dlOnPVX4', '5741601'), + (83572, 951, 1796, 'attending', '2022-11-18 17:10:05', '2025-12-17 19:47:16', 'dlOnPVX4', '5756755'), + (83573, 951, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dlOnPVX4', '5763458'), + (83574, 951, 1804, 'attending', '2023-01-24 23:04:25', '2025-12-17 19:47:06', 'dlOnPVX4', '5764674'), + (83575, 951, 1805, 'attending', '2023-01-31 00:38:06', '2025-12-17 19:47:06', 'dlOnPVX4', '5764675'), + (83576, 951, 1812, 'attending', '2023-03-11 21:36:49', '2025-12-17 19:47:09', 'dlOnPVX4', '5764682'), + (83577, 951, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dlOnPVX4', '5774172'), + (83578, 951, 1828, 'attending', '2022-11-29 17:42:14', '2025-12-17 19:47:16', 'dlOnPVX4', '5778865'), + (83579, 951, 1829, 'attending', '2022-12-01 13:44:40', '2025-12-17 19:47:16', 'dlOnPVX4', '5778867'), + (83580, 951, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'dlOnPVX4', '5818247'), + (83581, 951, 1834, 'attending', '2022-12-08 16:06:39', '2025-12-17 19:47:17', 'dlOnPVX4', '5819470'), + (83582, 951, 1835, 'maybe', '2022-12-08 16:06:44', '2025-12-17 19:47:05', 'dlOnPVX4', '5819471'), + (83583, 951, 1841, 'attending', '2023-01-02 18:54:43', '2025-12-17 19:47:05', 'dlOnPVX4', '5827665'), + (83584, 951, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dlOnPVX4', '5827739'), + (83585, 951, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dlOnPVX4', '5844306'), + (83586, 951, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dlOnPVX4', '5850159'), + (83587, 951, 1848, 'attending', '2022-12-27 23:57:38', '2025-12-17 19:47:05', 'dlOnPVX4', '5852466'), + (83588, 951, 1850, 'maybe', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dlOnPVX4', '5858999'), + (83589, 951, 1852, 'attending', '2023-01-11 00:52:09', '2025-12-17 19:47:05', 'dlOnPVX4', '5869898'), + (83590, 951, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dlOnPVX4', '5871984'), + (83591, 951, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dlOnPVX4', '5876354'), + (83592, 951, 1865, 'attending', '2023-01-24 23:04:23', '2025-12-17 19:47:06', 'dlOnPVX4', '5879676'), + (83593, 951, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'dlOnPVX4', '5880939'), + (83594, 951, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dlOnPVX4', '5880940'), + (83595, 951, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dlOnPVX4', '5880942'), + (83596, 951, 1869, 'attending', '2023-02-26 21:45:47', '2025-12-17 19:47:09', 'dlOnPVX4', '5880943'), + (83597, 951, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dlOnPVX4', '5887890'), + (83598, 951, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dlOnPVX4', '5888598'), + (83599, 951, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dlOnPVX4', '5893260'), + (83600, 951, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dlOnPVX4', '5899826'), + (83601, 951, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dlOnPVX4', '5900199'), + (83602, 951, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dlOnPVX4', '5900200'), + (83603, 951, 1891, 'attending', '2023-03-22 17:10:09', '2025-12-17 19:46:56', 'dlOnPVX4', '5900202'), + (83604, 951, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dlOnPVX4', '5900203'), + (83605, 951, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dlOnPVX4', '5901108'), + (83606, 951, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dlOnPVX4', '5901126'), + (83607, 951, 1897, 'attending', '2023-02-10 18:30:33', '2025-12-17 19:47:07', 'dlOnPVX4', '5901128'), + (83608, 951, 1898, 'attending', '2023-02-01 19:56:48', '2025-12-17 19:47:06', 'dlOnPVX4', '5901263'), + (83609, 951, 1900, 'attending', '2023-02-01 19:57:06', '2025-12-17 19:47:06', 'dlOnPVX4', '5901331'), + (83610, 951, 1902, 'attending', '2023-02-01 19:56:50', '2025-12-17 19:47:06', 'dlOnPVX4', '5902254'), + (83611, 951, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dlOnPVX4', '5909655'), + (83612, 951, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dlOnPVX4', '5910522'), + (83613, 951, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dlOnPVX4', '5910526'), + (83614, 951, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dlOnPVX4', '5910528'), + (83615, 951, 1922, 'not_attending', '2023-02-12 23:05:39', '2025-12-17 19:47:07', 'dlOnPVX4', '5916219'), + (83616, 951, 1924, 'not_attending', '2023-02-16 23:48:00', '2025-12-17 19:47:07', 'dlOnPVX4', '5931095'), + (83617, 951, 1927, 'attending', '2023-02-26 21:46:06', '2025-12-17 19:47:10', 'dlOnPVX4', '5932621'), + (83618, 951, 1930, 'attending', '2023-02-20 20:55:00', '2025-12-17 19:47:08', 'dlOnPVX4', '5933462'), + (83619, 951, 1931, 'attending', '2023-02-20 20:54:49', '2025-12-17 19:47:08', 'dlOnPVX4', '5933464'), + (83620, 951, 1933, 'attending', '2023-02-20 20:55:22', '2025-12-17 19:47:08', 'dlOnPVX4', '5936234'), + (83621, 951, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dlOnPVX4', '5958351'), + (83622, 951, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dlOnPVX4', '5959751'), + (83623, 951, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dlOnPVX4', '5959755'), + (83624, 951, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dlOnPVX4', '5960055'), + (83625, 951, 1941, 'attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dlOnPVX4', '5961684'), + (83626, 951, 1943, 'attending', '2023-03-10 15:31:17', '2025-12-17 19:47:10', 'dlOnPVX4', '5962091'), + (83627, 951, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dlOnPVX4', '5962132'), + (83628, 951, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dlOnPVX4', '5962133'), + (83629, 951, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dlOnPVX4', '5962134'), + (83630, 951, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dlOnPVX4', '5962317'), + (83631, 951, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dlOnPVX4', '5962318'), + (83632, 951, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dlOnPVX4', '5965933'), + (83633, 951, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dlOnPVX4', '5967014'), + (83634, 951, 1956, 'attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'dlOnPVX4', '5972763'), + (83635, 951, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dlOnPVX4', '5972815'), + (83636, 951, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dlOnPVX4', '5974016'), + (83637, 951, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dlOnPVX4', '5981515'), + (83638, 951, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dlOnPVX4', '5993516'), + (83639, 951, 1977, 'attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dlOnPVX4', '5998939'), + (83640, 951, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dlOnPVX4', '6028191'), + (83641, 951, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dlOnPVX4', '6040066'), + (83642, 951, 1984, 'maybe', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dlOnPVX4', '6042717'), + (83643, 951, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dlOnPVX4', '6044838'), + (83644, 951, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dlOnPVX4', '6044839'), + (83645, 951, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dlOnPVX4', '6045684'), + (83646, 951, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dlOnPVX4', '6050104'), + (83647, 951, 2001, 'attending', '2023-04-05 16:55:17', '2025-12-17 19:46:58', 'dlOnPVX4', '6052569'), + (83648, 951, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dlOnPVX4', '6053195'), + (83649, 951, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dlOnPVX4', '6053198'), + (83650, 951, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dlOnPVX4', '6056085'), + (83651, 951, 2011, 'attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dlOnPVX4', '6056916'), + (83652, 951, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dlOnPVX4', '6059290'), + (83653, 951, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dlOnPVX4', '6060328'), + (83654, 951, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dlOnPVX4', '6061037'), + (83655, 951, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dlOnPVX4', '6061039'), + (83656, 951, 2017, 'attending', '2023-04-12 22:47:58', '2025-12-17 19:46:59', 'dlOnPVX4', '6061099'), + (83657, 951, 2019, 'attending', '2023-04-18 18:53:39', '2025-12-17 19:47:00', 'dlOnPVX4', '6062934'), + (83658, 951, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dlOnPVX4', '6067245'), + (83659, 951, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dlOnPVX4', '6068094'), + (83660, 951, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dlOnPVX4', '6068252'), + (83661, 951, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dlOnPVX4', '6068253'), + (83662, 951, 2030, 'attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dlOnPVX4', '6068254'), + (83663, 951, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dlOnPVX4', '6068280'), + (83664, 951, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dlOnPVX4', '6069093'), + (83665, 951, 2040, 'attending', '2023-04-28 00:02:30', '2025-12-17 19:47:01', 'dlOnPVX4', '6072453'), + (83666, 951, 2041, 'attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dlOnPVX4', '6072528'), + (83667, 951, 2043, 'attending', '2023-04-26 14:45:54', '2025-12-17 19:47:01', 'dlOnPVX4', '6073023'), + (83668, 951, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dlOnPVX4', '6079840'), + (83669, 951, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dlOnPVX4', '6083398'), + (83670, 951, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dlOnPVX4', '6093504'), + (83671, 951, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dlOnPVX4', '6097414'), + (83672, 951, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dlOnPVX4', '6097442'), + (83673, 951, 2062, 'attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dlOnPVX4', '6097684'), + (83674, 951, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dlOnPVX4', '6098762'), + (83675, 951, 2064, 'not_attending', '2023-06-24 19:26:58', '2025-12-17 19:46:50', 'dlOnPVX4', '6099988'), + (83676, 951, 2065, 'attending', '2023-06-16 21:50:08', '2025-12-17 19:46:49', 'dlOnPVX4', '6101169'), + (83677, 951, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dlOnPVX4', '6101361'), + (83678, 951, 2067, 'attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dlOnPVX4', '6101362'), + (83679, 951, 2070, 'attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dlOnPVX4', '6103752'), + (83680, 951, 2074, 'attending', '2023-05-22 18:09:48', '2025-12-17 19:47:03', 'dlOnPVX4', '6107312'), + (83681, 951, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dlOnPVX4', '6107314'), + (83682, 951, 2076, 'attending', '2023-05-19 14:53:20', '2025-12-17 19:47:03', 'dlOnPVX4', '6108350'), + (83683, 951, 2080, 'attending', '2023-05-22 18:09:54', '2025-12-17 19:47:04', 'dlOnPVX4', '6114677'), + (83684, 951, 2081, 'attending', '2023-05-22 22:18:04', '2025-12-17 19:47:03', 'dlOnPVX4', '6115611'), + (83685, 951, 2084, 'attending', '2023-05-25 22:00:07', '2025-12-17 19:47:04', 'dlOnPVX4', '6117127'), + (83686, 951, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dlOnPVX4', '6120034'), + (83687, 951, 2093, 'attending', '2023-06-12 18:52:46', '2025-12-17 19:47:04', 'dlOnPVX4', '6132598'), + (83688, 951, 2095, 'attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dlOnPVX4', '6136733'), + (83689, 951, 2096, 'attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dlOnPVX4', '6137989'), + (83690, 951, 2099, 'attending', '2023-06-12 18:52:50', '2025-12-17 19:46:49', 'dlOnPVX4', '6143012'), + (83691, 951, 2103, 'attending', '2023-06-16 21:50:02', '2025-12-17 19:46:50', 'dlOnPVX4', '6149451'), + (83692, 951, 2105, 'attending', '2023-06-17 20:59:00', '2025-12-17 19:46:50', 'dlOnPVX4', '6149551'), + (83693, 951, 2106, 'attending', '2023-06-18 20:01:50', '2025-12-17 19:46:50', 'dlOnPVX4', '6150479'), + (83694, 951, 2107, 'attending', '2023-06-18 20:01:57', '2025-12-17 19:46:50', 'dlOnPVX4', '6150480'), + (83695, 951, 2108, 'attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dlOnPVX4', '6150864'), + (83696, 951, 2109, 'attending', '2023-06-19 16:29:37', '2025-12-17 19:46:50', 'dlOnPVX4', '6152821'), + (83697, 951, 2110, 'attending', '2023-06-21 06:36:03', '2025-12-17 19:46:50', 'dlOnPVX4', '6155491'), + (83698, 951, 2116, 'not_attending', '2023-07-07 19:47:49', '2025-12-17 19:46:51', 'dlOnPVX4', '6163389'), + (83699, 951, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dlOnPVX4', '6164417'), + (83700, 951, 2119, 'attending', '2023-06-27 18:58:21', '2025-12-17 19:46:50', 'dlOnPVX4', '6165461'), + (83701, 951, 2120, 'attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dlOnPVX4', '6166388'), + (83702, 951, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dlOnPVX4', '6176439'), + (83703, 951, 2127, 'not_attending', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dlOnPVX4', '6180853'), + (83704, 951, 2128, 'attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dlOnPVX4', '6182410'), + (83705, 951, 2131, 'attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dlOnPVX4', '6185812'), + (83706, 951, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dlOnPVX4', '6187651'), + (83707, 951, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dlOnPVX4', '6187963'), + (83708, 951, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dlOnPVX4', '6187964'), + (83709, 951, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dlOnPVX4', '6187966'), + (83710, 951, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dlOnPVX4', '6187967'), + (83711, 951, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dlOnPVX4', '6187969'), + (83712, 951, 2139, 'attending', '2023-07-07 19:48:06', '2025-12-17 19:46:52', 'dlOnPVX4', '6188027'), + (83713, 951, 2140, 'attending', '2023-07-07 19:48:15', '2025-12-17 19:46:52', 'dlOnPVX4', '6188074'), + (83714, 951, 2142, 'attending', '2023-07-17 21:47:04', '2025-12-17 19:46:52', 'dlOnPVX4', '6333850'), + (83715, 951, 2144, 'attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dlOnPVX4', '6334878'), + (83716, 951, 2146, 'attending', '2023-07-21 14:42:46', '2025-12-17 19:46:53', 'dlOnPVX4', '6335638'), + (83717, 951, 2149, 'attending', '2023-07-13 18:26:47', '2025-12-17 19:46:53', 'dlOnPVX4', '6335682'), + (83718, 951, 2152, 'not_attending', '2023-07-12 15:45:44', '2025-12-17 19:46:52', 'dlOnPVX4', '6337021'), + (83719, 951, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dlOnPVX4', '6337236'), + (83720, 951, 2155, 'maybe', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dlOnPVX4', '6337970'), + (83721, 951, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dlOnPVX4', '6338308'), + (83722, 951, 2158, 'attending', '2023-07-17 21:47:39', '2025-12-17 19:46:53', 'dlOnPVX4', '6338353'), + (83723, 951, 2159, 'attending', '2023-07-20 01:55:36', '2025-12-17 19:46:53', 'dlOnPVX4', '6338355'), + (83724, 951, 2160, 'attending', '2023-07-20 01:55:43', '2025-12-17 19:46:54', 'dlOnPVX4', '6338358'), + (83725, 951, 2162, 'attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dlOnPVX4', '6340845'), + (83726, 951, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dlOnPVX4', '6341710'), + (83727, 951, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dlOnPVX4', '6342044'), + (83728, 951, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dlOnPVX4', '6342298'), + (83729, 951, 2171, 'attending', '2023-07-17 21:48:44', '2025-12-17 19:46:54', 'dlOnPVX4', '6342328'), + (83730, 951, 2174, 'not_attending', '2023-07-20 23:01:18', '2025-12-17 19:46:53', 'dlOnPVX4', '6343294'), + (83731, 951, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dlOnPVX4', '6347034'), + (83732, 951, 2177, 'attending', '2023-08-12 14:15:31', '2025-12-17 19:46:55', 'dlOnPVX4', '6347053'), + (83733, 951, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dlOnPVX4', '6347056'), + (83734, 951, 2183, 'attending', '2023-07-28 19:09:26', '2025-12-17 19:46:54', 'dlOnPVX4', '6353008'), + (83735, 951, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dlOnPVX4', '6353830'), + (83736, 951, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dlOnPVX4', '6353831'), + (83737, 951, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dlOnPVX4', '6357867'), + (83738, 951, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dlOnPVX4', '6358652'), + (83739, 951, 2199, 'attending', '2023-08-15 23:17:45', '2025-12-17 19:46:55', 'dlOnPVX4', '6359849'), + (83740, 951, 2201, 'not_attending', '2023-08-05 21:11:08', '2025-12-17 19:46:54', 'dlOnPVX4', '6359940'), + (83741, 951, 2204, 'attending', '2023-08-16 15:44:19', '2025-12-17 19:46:55', 'dlOnPVX4', '6361542'), + (83742, 951, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dlOnPVX4', '6361709'), + (83743, 951, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dlOnPVX4', '6361710'), + (83744, 951, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dlOnPVX4', '6361711'), + (83745, 951, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dlOnPVX4', '6361712'), + (83746, 951, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dlOnPVX4', '6361713'), + (83747, 951, 2225, 'maybe', '2023-08-21 13:03:52', '2025-12-17 19:46:55', 'dlOnPVX4', '6368434'), + (83748, 951, 2231, 'attending', '2023-08-21 13:03:27', '2025-12-17 19:46:55', 'dlOnPVX4', '6374748'), + (83749, 951, 2232, 'attending', '2023-08-23 12:50:37', '2025-12-17 19:46:55', 'dlOnPVX4', '6374818'), + (83750, 951, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dlOnPVX4', '6382573'), + (83751, 951, 2237, 'not_attending', '2023-08-26 20:09:00', '2025-12-17 19:46:55', 'dlOnPVX4', '6383149'), + (83752, 951, 2239, 'not_attending', '2023-08-31 22:00:58', '2025-12-17 19:46:56', 'dlOnPVX4', '6387592'), + (83753, 951, 2240, 'maybe', '2023-09-03 22:19:13', '2025-12-17 19:46:56', 'dlOnPVX4', '6388603'), + (83754, 951, 2241, 'attending', '2023-09-03 22:19:16', '2025-12-17 19:46:44', 'dlOnPVX4', '6388604'), + (83755, 951, 2242, 'maybe', '2023-09-06 19:14:35', '2025-12-17 19:46:45', 'dlOnPVX4', '6388606'), + (83756, 951, 2244, 'not_attending', '2023-09-09 16:38:19', '2025-12-17 19:46:44', 'dlOnPVX4', '6393700'), + (83757, 951, 2247, 'attending', '2023-09-06 19:14:21', '2025-12-17 19:46:56', 'dlOnPVX4', '6394628'), + (83758, 951, 2248, 'maybe', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dlOnPVX4', '6394629'), + (83759, 951, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dlOnPVX4', '6394631'), + (83760, 951, 2252, 'attending', '2023-09-06 19:15:46', '2025-12-17 19:46:45', 'dlOnPVX4', '6396837'), + (83761, 951, 2253, 'maybe', '2023-09-10 15:34:30', '2025-12-17 19:46:45', 'dlOnPVX4', '6401811'), + (83762, 951, 2257, 'attending', '2023-09-16 18:21:10', '2025-12-17 19:46:44', 'dlOnPVX4', '6408068'), + (83763, 951, 2263, 'maybe', '2023-10-03 17:50:26', '2025-12-17 19:46:45', 'dlOnPVX4', '6429351'), + (83764, 951, 2266, 'not_attending', '2023-10-02 17:01:45', '2025-12-17 19:46:45', 'dlOnPVX4', '6439635'), + (83765, 951, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dlOnPVX4', '6440863'), + (83766, 951, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dlOnPVX4', '6445440'), + (83767, 951, 2275, 'attending', '2023-10-07 19:57:44', '2025-12-17 19:46:45', 'dlOnPVX4', '6453777'), + (83768, 951, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dlOnPVX4', '6453951'), + (83769, 951, 2285, 'attending', '2023-10-27 17:47:15', '2025-12-17 19:46:47', 'dlOnPVX4', '6460929'), + (83770, 951, 2287, 'attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dlOnPVX4', '6461696'), + (83771, 951, 2288, 'attending', '2023-10-11 20:55:13', '2025-12-17 19:46:46', 'dlOnPVX4', '6462068'), + (83772, 951, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dlOnPVX4', '6462129'), + (83773, 951, 2290, 'attending', '2023-10-11 20:55:28', '2025-12-17 19:46:46', 'dlOnPVX4', '6462214'), + (83774, 951, 2292, 'attending', '2023-10-19 20:29:22', '2025-12-17 19:46:47', 'dlOnPVX4', '6462216'), + (83775, 951, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dlOnPVX4', '6463218'), + (83776, 951, 2296, 'attending', '2023-10-15 20:47:36', '2025-12-17 19:46:47', 'dlOnPVX4', '6468393'), + (83777, 951, 2299, 'attending', '2023-10-19 20:29:00', '2025-12-17 19:46:46', 'dlOnPVX4', '6472181'), + (83778, 951, 2300, 'not_attending', '2023-10-15 20:50:04', '2025-12-17 19:46:47', 'dlOnPVX4', '6472185'), + (83779, 951, 2301, 'attending', '2023-10-19 20:29:13', '2025-12-17 19:46:46', 'dlOnPVX4', '6474276'), + (83780, 951, 2303, 'attending', '2023-10-28 17:19:10', '2025-12-17 19:46:47', 'dlOnPVX4', '6482691'), + (83781, 951, 2304, 'attending', '2023-10-30 23:18:52', '2025-12-17 19:46:47', 'dlOnPVX4', '6482693'), + (83782, 951, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dlOnPVX4', '6484200'), + (83783, 951, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dlOnPVX4', '6484680'), + (83784, 951, 2310, 'attending', '2023-11-02 15:51:58', '2025-12-17 19:46:47', 'dlOnPVX4', '6487709'), + (83785, 951, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dlOnPVX4', '6507741'), + (83786, 951, 2318, 'attending', '2023-10-30 17:10:06', '2025-12-17 19:46:47', 'dlOnPVX4', '6508566'), + (83787, 951, 2322, 'attending', '2023-11-02 15:51:50', '2025-12-17 19:46:48', 'dlOnPVX4', '6514659'), + (83788, 951, 2323, 'attending', '2023-11-02 15:52:01', '2025-12-17 19:46:48', 'dlOnPVX4', '6514660'), + (83789, 951, 2324, 'attending', '2023-11-02 15:52:03', '2025-12-17 19:46:49', 'dlOnPVX4', '6514662'), + (83790, 951, 2325, 'not_attending', '2023-12-16 02:14:40', '2025-12-17 19:46:36', 'dlOnPVX4', '6514663'), + (83791, 951, 2326, 'not_attending', '2023-11-06 17:00:27', '2025-12-17 19:46:48', 'dlOnPVX4', '6514805'), + (83792, 951, 2329, 'attending', '2023-11-02 15:48:22', '2025-12-17 19:46:47', 'dlOnPVX4', '6517138'), + (83793, 951, 2330, 'attending', '2023-11-06 17:00:34', '2025-12-17 19:46:47', 'dlOnPVX4', '6517941'), + (83794, 951, 2331, 'attending', '2023-11-15 00:36:30', '2025-12-17 19:46:47', 'dlOnPVX4', '6518640'), + (83795, 951, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dlOnPVX4', '6519103'), + (83796, 951, 2335, 'not_attending', '2023-11-09 16:19:47', '2025-12-17 19:46:47', 'dlOnPVX4', '6534890'), + (83797, 951, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dlOnPVX4', '6535681'), + (83798, 951, 2338, 'attending', '2023-11-17 21:44:57', '2025-12-17 19:46:48', 'dlOnPVX4', '6538868'), + (83799, 951, 2345, 'attending', '2023-11-29 20:39:39', '2025-12-17 19:46:48', 'dlOnPVX4', '6582414'), + (83800, 951, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlOnPVX4', '6584747'), + (83801, 951, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlOnPVX4', '6587097'), + (83802, 951, 2362, 'attending', '2023-12-04 18:32:09', '2025-12-17 19:46:49', 'dlOnPVX4', '6605708'), + (83803, 951, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlOnPVX4', '6609022'), + (83804, 951, 2365, 'attending', '2023-12-22 15:55:45', '2025-12-17 19:46:37', 'dlOnPVX4', '6613093'), + (83805, 951, 2370, 'not_attending', '2023-12-12 18:02:23', '2025-12-17 19:46:36', 'dlOnPVX4', '6623765'), + (83806, 951, 2373, 'attending', '2023-12-26 16:24:32', '2025-12-17 19:46:38', 'dlOnPVX4', '6632678'), + (83807, 951, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlOnPVX4', '6632757'), + (83808, 951, 2377, 'attending', '2023-12-29 21:52:17', '2025-12-17 19:46:37', 'dlOnPVX4', '6643448'), + (83809, 951, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlOnPVX4', '6644187'), + (83810, 951, 2380, 'attending', '2023-12-30 21:40:57', '2025-12-17 19:46:37', 'dlOnPVX4', '6645105'), + (83811, 951, 2381, 'maybe', '2024-01-02 17:11:44', '2025-12-17 19:46:37', 'dlOnPVX4', '6646398'), + (83812, 951, 2386, 'attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlOnPVX4', '6648951'), + (83813, 951, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlOnPVX4', '6648952'), + (83814, 951, 2388, 'attending', '2024-01-03 02:47:25', '2025-12-17 19:46:37', 'dlOnPVX4', '6649244'), + (83815, 951, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dlOnPVX4', '6655401'), + (83816, 951, 2399, 'attending', '2024-01-07 18:24:15', '2025-12-17 19:46:37', 'dlOnPVX4', '6657583'), + (83817, 951, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlOnPVX4', '6661585'), + (83818, 951, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlOnPVX4', '6661588'), + (83819, 951, 2403, 'attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlOnPVX4', '6661589'), + (83820, 951, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlOnPVX4', '6699906'), + (83821, 951, 2408, 'attending', '2024-01-23 19:47:18', '2025-12-17 19:46:40', 'dlOnPVX4', '6699907'), + (83822, 951, 2409, 'attending', '2024-01-23 19:47:20', '2025-12-17 19:46:41', 'dlOnPVX4', '6699909'), + (83823, 951, 2410, 'attending', '2024-01-23 19:47:22', '2025-12-17 19:46:41', 'dlOnPVX4', '6699911'), + (83824, 951, 2411, 'maybe', '2024-02-01 17:03:07', '2025-12-17 19:46:41', 'dlOnPVX4', '6699913'), + (83825, 951, 2413, 'maybe', '2024-02-07 22:14:42', '2025-12-17 19:46:42', 'dlOnPVX4', '6700719'), + (83826, 951, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlOnPVX4', '6701109'), + (83827, 951, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlOnPVX4', '6705219'), + (83828, 951, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlOnPVX4', '6710153'), + (83829, 951, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlOnPVX4', '6711552'), + (83830, 951, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dlOnPVX4', '6711553'), + (83831, 951, 2431, 'attending', '2024-01-23 19:47:35', '2025-12-17 19:46:41', 'dlOnPVX4', '6712394'), + (83832, 951, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlOnPVX4', '6722688'), + (83833, 951, 2438, 'attending', '2024-02-01 17:03:00', '2025-12-17 19:46:41', 'dlOnPVX4', '6730201'), + (83834, 951, 2439, 'attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlOnPVX4', '6730620'), + (83835, 951, 2440, 'attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlOnPVX4', '6730642'), + (83836, 951, 2451, 'not_attending', '2024-02-07 22:15:10', '2025-12-17 19:46:41', 'dlOnPVX4', '6740333'), + (83837, 951, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlOnPVX4', '6740364'), + (83838, 951, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlOnPVX4', '6743829'), + (83839, 951, 2462, 'attending', '2024-02-11 05:16:18', '2025-12-17 19:46:41', 'dlOnPVX4', '6744701'), + (83840, 951, 2467, 'attending', '2024-02-16 03:56:12', '2025-12-17 19:46:43', 'dlOnPVX4', '7029987'), + (83841, 951, 2468, 'attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlOnPVX4', '7030380'), + (83842, 951, 2471, 'attending', '2024-02-23 03:35:57', '2025-12-17 19:46:42', 'dlOnPVX4', '7032425'), + (83843, 951, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlOnPVX4', '7033677'), + (83844, 951, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlOnPVX4', '7035415'), + (83845, 951, 2477, 'attending', '2024-02-22 22:23:05', '2025-12-17 19:46:42', 'dlOnPVX4', '7035692'), + (83846, 951, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlOnPVX4', '7044715'), + (83847, 951, 2487, 'maybe', '2024-03-07 15:27:03', '2025-12-17 19:46:33', 'dlOnPVX4', '7049279'), + (83848, 951, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlOnPVX4', '7050318'), + (83849, 951, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlOnPVX4', '7050319'), + (83850, 951, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlOnPVX4', '7050322'), + (83851, 951, 2493, 'attending', '2024-03-01 00:58:55', '2025-12-17 19:46:32', 'dlOnPVX4', '7052471'), + (83852, 951, 2494, 'attending', '2024-03-01 00:58:56', '2025-12-17 19:46:32', 'dlOnPVX4', '7052472'), + (83853, 951, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlOnPVX4', '7057804'), + (83854, 951, 2500, 'maybe', '2024-03-06 23:12:03', '2025-12-17 19:46:43', 'dlOnPVX4', '7058603'), + (83855, 951, 2501, 'attending', '2024-03-05 14:55:12', '2025-12-17 19:46:43', 'dlOnPVX4', '7059866'), + (83856, 951, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlOnPVX4', '7072824'), + (83857, 951, 2508, 'attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlOnPVX4', '7074348'), + (83858, 951, 2509, 'attending', '2024-03-12 16:30:09', '2025-12-17 19:46:33', 'dlOnPVX4', '7074349'), + (83859, 951, 2511, 'attending', '2024-03-29 16:57:53', '2025-12-17 19:46:33', 'dlOnPVX4', '7074351'), + (83860, 951, 2512, 'attending', '2024-04-01 17:43:38', '2025-12-17 19:46:33', 'dlOnPVX4', '7074352'), + (83861, 951, 2514, 'attending', '2024-04-22 14:08:55', '2025-12-17 19:46:34', 'dlOnPVX4', '7074354'), + (83862, 951, 2516, 'attending', '2024-04-24 20:24:43', '2025-12-17 19:46:35', 'dlOnPVX4', '7074356'), + (83863, 951, 2522, 'attending', '2024-07-15 17:32:21', '2025-12-17 19:46:30', 'dlOnPVX4', '7074362'), + (83864, 951, 2523, 'attending', '2024-05-30 22:44:15', '2025-12-17 19:46:36', 'dlOnPVX4', '7074363'), + (83865, 951, 2524, 'attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dlOnPVX4', '7074364'), + (83866, 951, 2525, 'attending', '2024-06-04 14:10:32', '2025-12-17 19:46:28', 'dlOnPVX4', '7074365'), + (83867, 951, 2526, 'attending', '2024-08-01 23:50:38', '2025-12-17 19:46:31', 'dlOnPVX4', '7074366'), + (83868, 951, 2530, 'attending', '2024-08-14 22:53:53', '2025-12-17 19:46:31', 'dlOnPVX4', '7074373'), + (83869, 951, 2531, 'attending', '2024-08-29 21:13:03', '2025-12-17 19:46:32', 'dlOnPVX4', '7074378'), + (83870, 951, 2539, 'attending', '2024-04-01 19:09:19', '2025-12-17 19:46:33', 'dlOnPVX4', '7085486'), + (83871, 951, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlOnPVX4', '7089267'), + (83872, 951, 2543, 'attending', '2024-04-03 14:16:41', '2025-12-17 19:46:33', 'dlOnPVX4', '7091456'), + (83873, 951, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlOnPVX4', '7098747'), + (83874, 951, 2553, 'attending', '2024-03-30 01:59:23', '2025-12-17 19:46:33', 'dlOnPVX4', '7113468'), + (83875, 951, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlOnPVX4', '7114856'), + (83876, 951, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlOnPVX4', '7114951'), + (83877, 951, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlOnPVX4', '7114955'), + (83878, 951, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlOnPVX4', '7114956'), + (83879, 951, 2558, 'attending', '2024-04-08 15:27:54', '2025-12-17 19:46:35', 'dlOnPVX4', '7114957'), + (83880, 951, 2563, 'attending', '2024-04-07 20:47:20', '2025-12-17 19:46:33', 'dlOnPVX4', '7134734'), + (83881, 951, 2564, 'attending', '2024-04-06 20:14:39', '2025-12-17 19:46:33', 'dlOnPVX4', '7134735'), + (83882, 951, 2566, 'attending', '2024-04-03 14:16:25', '2025-12-17 19:46:34', 'dlOnPVX4', '7140664'), + (83883, 951, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlOnPVX4', '7153615'), + (83884, 951, 2569, 'attending', '2024-04-07 16:45:08', '2025-12-17 19:46:33', 'dlOnPVX4', '7154056'), + (83885, 951, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dlOnPVX4', '7159484'), + (83886, 951, 2581, 'maybe', '2024-04-22 14:09:25', '2025-12-17 19:46:34', 'dlOnPVX4', '7169048'), + (83887, 951, 2585, 'maybe', '2024-04-22 14:09:12', '2025-12-17 19:46:34', 'dlOnPVX4', '7175828'), + (83888, 951, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dlOnPVX4', '7178446'), + (83889, 951, 2592, 'attending', '2024-04-20 21:22:01', '2025-12-17 19:46:34', 'dlOnPVX4', '7180959'), + (83890, 951, 2596, 'attending', '2024-04-22 14:08:53', '2025-12-17 19:46:34', 'dlOnPVX4', '7183788'), + (83891, 951, 2601, 'attending', '2024-04-24 20:24:11', '2025-12-17 19:46:34', 'dlOnPVX4', '7197023'), + (83892, 951, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dlOnPVX4', '7220467'), + (83893, 951, 2604, 'attending', '2024-05-29 15:42:14', '2025-12-17 19:46:36', 'dlOnPVX4', '7225670'), + (83894, 951, 2609, 'attending', '2024-05-01 22:33:45', '2025-12-17 19:46:35', 'dlOnPVX4', '7240354'), + (83895, 951, 2610, 'not_attending', '2024-04-30 22:40:05', '2025-12-17 19:46:35', 'dlOnPVX4', '7241797'), + (83896, 951, 2616, 'attending', '2024-05-06 17:33:12', '2025-12-17 19:46:35', 'dlOnPVX4', '7250296'), + (83897, 951, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dlOnPVX4', '7251633'), + (83898, 951, 2623, 'attending', '2024-05-10 13:57:53', '2025-12-17 19:46:35', 'dlOnPVX4', '7263048'), + (83899, 951, 2626, 'not_attending', '2024-05-12 15:23:55', '2025-12-17 19:46:35', 'dlOnPVX4', '7264723'), + (83900, 951, 2627, 'not_attending', '2024-05-12 15:23:59', '2025-12-17 19:46:35', 'dlOnPVX4', '7264724'), + (83901, 951, 2628, 'attending', '2024-05-12 15:24:02', '2025-12-17 19:46:36', 'dlOnPVX4', '7264725'), + (83902, 951, 2629, 'attending', '2024-05-12 15:24:04', '2025-12-17 19:46:28', 'dlOnPVX4', '7264726'), + (83903, 951, 2647, 'attending', '2024-05-29 15:42:51', '2025-12-17 19:46:28', 'dlOnPVX4', '7282057'), + (83904, 951, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dlOnPVX4', '7302674'), + (83905, 951, 2675, 'attending', '2024-07-31 19:31:30', '2025-12-17 19:46:31', 'dlOnPVX4', '7319481'), + (83906, 951, 2676, 'not_attending', '2024-08-04 21:22:40', '2025-12-17 19:46:32', 'dlOnPVX4', '7319482'), + (83907, 951, 2677, 'attending', '2024-09-01 21:13:02', '2025-12-17 19:46:26', 'dlOnPVX4', '7319483'), + (83908, 951, 2679, 'attending', '2024-06-22 23:16:23', '2025-12-17 19:46:29', 'dlOnPVX4', '7319490'), + (83909, 951, 2684, 'attending', '2024-06-10 19:03:12', '2025-12-17 19:46:28', 'dlOnPVX4', '7322001'), + (83910, 951, 2688, 'attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dlOnPVX4', '7324073'), + (83911, 951, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dlOnPVX4', '7324074'), + (83912, 951, 2690, 'attending', '2024-07-02 22:21:16', '2025-12-17 19:46:30', 'dlOnPVX4', '7324075'), + (83913, 951, 2691, 'attending', '2024-07-02 22:21:17', '2025-12-17 19:46:30', 'dlOnPVX4', '7324076'), + (83914, 951, 2692, 'attending', '2024-07-26 23:37:12', '2025-12-17 19:46:30', 'dlOnPVX4', '7324077'), + (83915, 951, 2693, 'attending', '2024-08-01 18:19:03', '2025-12-17 19:46:31', 'dlOnPVX4', '7324078'), + (83916, 951, 2694, 'attending', '2024-08-01 18:19:04', '2025-12-17 19:46:31', 'dlOnPVX4', '7324079'), + (83917, 951, 2695, 'attending', '2024-08-01 18:19:06', '2025-12-17 19:46:31', 'dlOnPVX4', '7324080'), + (83918, 951, 2696, 'attending', '2024-08-01 18:19:08', '2025-12-17 19:46:32', 'dlOnPVX4', '7324081'), + (83919, 951, 2697, 'maybe', '2024-08-01 18:19:10', '2025-12-17 19:46:32', 'dlOnPVX4', '7324082'), + (83920, 951, 2698, 'not_attending', '2024-08-01 18:19:12', '2025-12-17 19:46:24', 'dlOnPVX4', '7324083'), + (83921, 951, 2722, 'attending', '2024-07-08 16:48:43', '2025-12-17 19:46:29', 'dlOnPVX4', '7331457'), + (83922, 951, 2754, 'attending', '2024-07-08 16:51:31', '2025-12-17 19:46:30', 'dlOnPVX4', '7356752'), + (83923, 951, 2755, 'not_attending', '2024-07-10 23:22:47', '2025-12-17 19:46:29', 'dlOnPVX4', '7357808'), + (83924, 951, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dlOnPVX4', '7363643'), + (83925, 951, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dlOnPVX4', '7368606'), + (83926, 951, 2780, 'attending', '2024-07-26 21:26:03', '2025-12-17 19:46:30', 'dlOnPVX4', '7371849'), + (83927, 951, 2785, 'attending', '2024-07-31 19:31:27', '2025-12-17 19:46:31', 'dlOnPVX4', '7380988'), + (83928, 951, 2786, 'maybe', '2024-07-31 19:35:04', '2025-12-17 19:46:31', 'dlOnPVX4', '7381403'), + (83929, 951, 2787, 'attending', '2024-07-31 19:47:51', '2025-12-17 19:46:32', 'dlOnPVX4', '7381568'), + (83930, 951, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dlOnPVX4', '7397462'), + (83931, 951, 2821, 'not_attending', '2024-09-16 18:31:15', '2025-12-17 19:46:26', 'dlOnPVX4', '7424275'), + (83932, 951, 2822, 'attending', '2024-09-30 22:44:40', '2025-12-17 19:46:26', 'dlOnPVX4', '7424276'), + (83933, 951, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dlOnPVX4', '7432751'), + (83934, 951, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dlOnPVX4', '7432752'), + (83935, 951, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dlOnPVX4', '7432753'), + (83936, 951, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dlOnPVX4', '7432754'), + (83937, 951, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dlOnPVX4', '7432755'), + (83938, 951, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dlOnPVX4', '7432756'), + (83939, 951, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dlOnPVX4', '7432758'), + (83940, 951, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dlOnPVX4', '7432759'), + (83941, 951, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dlOnPVX4', '7433834'), + (83942, 951, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dlOnPVX4', '7470197'), + (83943, 951, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dlOnPVX4', '7685613'), + (83944, 951, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dlOnPVX4', '7688194'), + (83945, 951, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dlOnPVX4', '7688196'), + (83946, 951, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dlOnPVX4', '7688289'), + (83947, 951, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dlOnPVX4', '7692763'), + (83948, 951, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dlOnPVX4', '7697552'), + (83949, 951, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dlOnPVX4', '7699878'), + (83950, 951, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dlOnPVX4', '7704043'), + (83951, 951, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dlOnPVX4', '7712467'), + (83952, 951, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dlOnPVX4', '7713585'), + (83953, 951, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dlOnPVX4', '7713586'), + (83954, 951, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dlOnPVX4', '7738518'), + (83955, 952, 993, 'attending', '2021-09-25 21:12:14', '2025-12-17 19:47:34', 'Pm7QVLP4', '4420741'), + (83956, 952, 994, 'attending', '2021-10-02 22:10:19', '2025-12-17 19:47:34', 'Pm7QVLP4', '4420742'), + (83957, 952, 995, 'attending', '2021-10-04 17:06:22', '2025-12-17 19:47:34', 'Pm7QVLP4', '4420744'), + (83958, 952, 996, 'attending', '2021-10-16 21:32:11', '2025-12-17 19:47:35', 'Pm7QVLP4', '4420747'), + (83959, 952, 997, 'attending', '2021-10-23 15:19:04', '2025-12-17 19:47:35', 'Pm7QVLP4', '4420748'), + (83960, 952, 998, 'maybe', '2021-10-30 20:46:03', '2025-12-17 19:47:36', 'Pm7QVLP4', '4420749'), + (83961, 952, 1006, 'attending', '2021-09-29 21:54:27', '2025-12-17 19:47:34', 'Pm7QVLP4', '4438808'), + (83962, 952, 1071, 'maybe', '2021-10-04 23:17:31', '2025-12-17 19:47:34', 'Pm7QVLP4', '4516078'), + (83963, 952, 1072, 'attending', '2021-10-06 21:37:34', '2025-12-17 19:47:34', 'Pm7QVLP4', '4516287'), + (83964, 952, 1074, 'attending', '2021-09-29 21:54:16', '2025-12-17 19:47:34', 'Pm7QVLP4', '4528953'), + (83965, 952, 1083, 'attending', '2021-10-14 22:30:20', '2025-12-17 19:47:34', 'Pm7QVLP4', '4566768'), + (83966, 952, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Pm7QVLP4', '4568602'), + (83967, 952, 1087, 'maybe', '2021-10-16 00:08:47', '2025-12-17 19:47:35', 'Pm7QVLP4', '4572153'), + (83968, 952, 1089, 'attending', '2021-10-18 23:04:04', '2025-12-17 19:47:35', 'Pm7QVLP4', '4574712'), + (83969, 952, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'Pm7QVLP4', '4585962'), + (83970, 952, 1094, 'maybe', '2021-10-29 13:53:59', '2025-12-17 19:47:36', 'Pm7QVLP4', '4587337'), + (83971, 952, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'Pm7QVLP4', '4596356'), + (83972, 952, 1096, 'attending', '2021-10-28 21:56:36', '2025-12-17 19:47:36', 'Pm7QVLP4', '4596453'), + (83973, 952, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Pm7QVLP4', '4598860'), + (83974, 952, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Pm7QVLP4', '4598861'), + (83975, 952, 1099, 'attending', '2021-11-06 20:22:22', '2025-12-17 19:47:36', 'Pm7QVLP4', '4602797'), + (83976, 952, 1114, 'not_attending', '2021-11-13 19:51:44', '2025-12-17 19:47:36', 'Pm7QVLP4', '4637896'), + (83977, 952, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Pm7QVLP4', '4642994'), + (83978, 952, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Pm7QVLP4', '4642995'), + (83979, 952, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Pm7QVLP4', '4642996'), + (83980, 952, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Pm7QVLP4', '4642997'), + (83981, 952, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Pm7QVLP4', '4645687'), + (83982, 952, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Pm7QVLP4', '4645698'), + (83983, 952, 1128, 'attending', '2021-11-20 22:06:21', '2025-12-17 19:47:37', 'Pm7QVLP4', '4645704'), + (83984, 952, 1129, 'not_attending', '2021-11-27 16:53:45', '2025-12-17 19:47:37', 'Pm7QVLP4', '4645705'), + (83985, 952, 1130, 'maybe', '2021-12-04 20:49:12', '2025-12-17 19:47:37', 'Pm7QVLP4', '4658824'), + (83986, 952, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Pm7QVLP4', '4668385'), + (83987, 952, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Pm7QVLP4', '4694407'), + (83988, 952, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Pm7QVLP4', '4736497'), + (83989, 952, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Pm7QVLP4', '4736499'), + (83990, 952, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Pm7QVLP4', '4736500'), + (83991, 952, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Pm7QVLP4', '4736503'), + (83992, 952, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Pm7QVLP4', '4736504'), + (83993, 952, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Pm7QVLP4', '4746789'), + (83994, 952, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Pm7QVLP4', '4753929'), + (83995, 952, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Pm7QVLP4', '5038850'), + (83996, 952, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Pm7QVLP4', '5045826'), + (83997, 952, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Pm7QVLP4', '5132533'), + (83998, 952, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Pm7QVLP4', '5186582'), + (83999, 952, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Pm7QVLP4', '5186583'), + (84000, 952, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Pm7QVLP4', '5186585'), + (84001, 952, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Pm7QVLP4', '5190437'), + (84002, 952, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Pm7QVLP4', '5215989'), + (84003, 952, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Pm7QVLP4', '6045684'), + (84004, 953, 971, 'attending', '2021-09-08 18:11:45', '2025-12-17 19:47:43', '4ZkLvKWd', '4356801'), + (84005, 953, 989, 'attending', '2021-09-10 19:52:07', '2025-12-17 19:47:43', '4ZkLvKWd', '4414282'), + (84006, 953, 991, 'attending', '2021-09-10 18:07:39', '2025-12-17 19:47:43', '4ZkLvKWd', '4420738'), + (84007, 953, 992, 'attending', '2021-09-20 17:14:26', '2025-12-17 19:47:33', '4ZkLvKWd', '4420739'), + (84008, 953, 993, 'not_attending', '2021-09-25 22:27:29', '2025-12-17 19:47:34', '4ZkLvKWd', '4420741'), + (84009, 953, 995, 'maybe', '2021-10-09 18:12:22', '2025-12-17 19:47:34', '4ZkLvKWd', '4420744'), + (84010, 953, 996, 'not_attending', '2021-10-22 21:51:41', '2025-12-17 19:47:35', '4ZkLvKWd', '4420747'), + (84011, 953, 997, 'not_attending', '2021-10-17 18:47:29', '2025-12-17 19:47:35', '4ZkLvKWd', '4420748'), + (84012, 953, 998, 'attending', '2021-10-28 02:17:24', '2025-12-17 19:47:36', '4ZkLvKWd', '4420749'), + (84013, 953, 1004, 'attending', '2021-09-09 22:48:20', '2025-12-17 19:47:43', '4ZkLvKWd', '4438804'), + (84014, 953, 1009, 'not_attending', '2021-10-10 20:58:58', '2025-12-17 19:47:34', '4ZkLvKWd', '4438811'), + (84015, 953, 1015, 'attending', '2021-09-18 19:05:03', '2025-12-17 19:47:43', '4ZkLvKWd', '4440800'), + (84016, 953, 1016, 'attending', '2021-09-09 22:58:47', '2025-12-17 19:47:43', '4ZkLvKWd', '4441271'), + (84017, 953, 1019, 'attending', '2021-09-10 22:09:10', '2025-12-17 19:47:43', '4ZkLvKWd', '4450515'), + (84018, 953, 1020, 'attending', '2021-09-12 21:12:52', '2025-12-17 19:47:43', '4ZkLvKWd', '4451787'), + (84019, 953, 1021, 'maybe', '2021-09-20 20:00:12', '2025-12-17 19:47:34', '4ZkLvKWd', '4451803'), + (84020, 953, 1022, 'attending', '2021-09-15 03:10:37', '2025-12-17 19:47:43', '4ZkLvKWd', '4458628'), + (84021, 953, 1023, 'attending', '2021-09-12 21:12:47', '2025-12-17 19:47:43', '4ZkLvKWd', '4461883'), + (84022, 953, 1025, 'not_attending', '2021-09-14 00:47:36', '2025-12-17 19:47:43', '4ZkLvKWd', '4462052'), + (84023, 953, 1026, 'not_attending', '2021-09-17 02:20:25', '2025-12-17 19:47:43', '4ZkLvKWd', '4472951'), + (84024, 953, 1027, 'not_attending', '2021-09-21 03:27:33', '2025-12-17 19:47:34', '4ZkLvKWd', '4472982'), + (84025, 953, 1029, 'maybe', '2021-09-17 23:00:40', '2025-12-17 19:47:43', '4ZkLvKWd', '4473063'), + (84026, 953, 1030, 'not_attending', '2021-09-16 19:47:35', '2025-12-17 19:47:34', '4ZkLvKWd', '4473064'), + (84027, 953, 1031, 'attending', '2021-09-20 18:09:36', '2025-12-17 19:47:34', '4ZkLvKWd', '4473789'), + (84028, 953, 1034, 'not_attending', '2021-09-16 19:46:57', '2025-12-17 19:47:43', '4ZkLvKWd', '4486265'), + (84029, 953, 1035, 'attending', '2021-09-19 03:35:53', '2025-12-17 19:47:34', '4ZkLvKWd', '4492184'), + (84030, 953, 1036, 'not_attending', '2021-09-21 03:26:40', '2025-12-17 19:47:34', '4ZkLvKWd', '4493166'), + (84031, 953, 1037, 'attending', '2021-09-21 03:26:49', '2025-12-17 19:47:34', '4ZkLvKWd', '4493233'), + (84032, 953, 1064, 'not_attending', '2021-09-21 03:24:57', '2025-12-17 19:47:34', '4ZkLvKWd', '4499526'), + (84033, 953, 1067, 'attending', '2021-09-24 20:11:52', '2025-12-17 19:47:34', '4ZkLvKWd', '4508342'), + (84034, 953, 1068, 'attending', '2021-09-27 06:57:30', '2025-12-17 19:47:34', '4ZkLvKWd', '4511471'), + (84035, 953, 1070, 'attending', '2021-10-01 22:50:55', '2025-12-17 19:47:34', '4ZkLvKWd', '4512562'), + (84036, 953, 1071, 'not_attending', '2021-10-04 17:54:59', '2025-12-17 19:47:34', '4ZkLvKWd', '4516078'), + (84037, 953, 1072, 'attending', '2021-10-06 22:14:27', '2025-12-17 19:47:34', '4ZkLvKWd', '4516287'), + (84038, 953, 1074, 'attending', '2021-09-29 18:27:31', '2025-12-17 19:47:34', '4ZkLvKWd', '4528953'), + (84039, 953, 1075, 'not_attending', '2021-10-08 20:13:05', '2025-12-17 19:47:34', '4ZkLvKWd', '4536351'), + (84040, 953, 1076, 'not_attending', '2021-10-08 20:13:12', '2025-12-17 19:47:34', '4ZkLvKWd', '4539147'), + (84041, 953, 1077, 'attending', '2021-10-10 20:59:17', '2025-12-17 19:47:34', '4ZkLvKWd', '4540903'), + (84042, 953, 1078, 'attending', '2021-10-07 21:55:30', '2025-12-17 19:47:34', '4ZkLvKWd', '4541281'), + (84043, 953, 1079, 'attending', '2021-10-20 21:29:53', '2025-12-17 19:47:35', '4ZkLvKWd', '4563823'), + (84044, 953, 1080, 'not_attending', '2021-10-10 20:58:50', '2025-12-17 19:47:34', '4ZkLvKWd', '4564599'), + (84045, 953, 1081, 'not_attending', '2021-10-10 20:59:11', '2025-12-17 19:47:34', '4ZkLvKWd', '4564602'), + (84046, 953, 1082, 'attending', '2021-10-15 22:39:11', '2025-12-17 19:47:35', '4ZkLvKWd', '4566762'), + (84047, 953, 1083, 'not_attending', '2021-10-14 17:00:17', '2025-12-17 19:47:34', '4ZkLvKWd', '4566768'), + (84048, 953, 1086, 'not_attending', '2021-10-13 22:06:41', '2025-12-17 19:47:35', '4ZkLvKWd', '4568602'), + (84049, 953, 1087, 'attending', '2021-10-15 18:01:11', '2025-12-17 19:47:35', '4ZkLvKWd', '4572153'), + (84050, 953, 1089, 'maybe', '2021-10-17 18:48:28', '2025-12-17 19:47:35', '4ZkLvKWd', '4574712'), + (84051, 953, 1090, 'not_attending', '2021-10-17 18:47:22', '2025-12-17 19:47:35', '4ZkLvKWd', '4574713'), + (84052, 953, 1091, 'not_attending', '2021-10-17 18:48:22', '2025-12-17 19:47:35', '4ZkLvKWd', '4575829'), + (84053, 953, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4ZkLvKWd', '4585962'), + (84054, 953, 1094, 'attending', '2021-10-28 02:17:51', '2025-12-17 19:47:36', '4ZkLvKWd', '4587337'), + (84055, 953, 1095, 'attending', '2021-10-27 17:50:00', '2025-12-17 19:47:35', '4ZkLvKWd', '4596356'), + (84056, 953, 1096, 'attending', '2021-10-29 22:42:44', '2025-12-17 19:47:36', '4ZkLvKWd', '4596453'), + (84057, 953, 1097, 'not_attending', '2021-11-03 23:34:41', '2025-12-17 19:47:36', '4ZkLvKWd', '4598860'), + (84058, 953, 1098, 'attending', '2021-11-01 19:10:10', '2025-12-17 19:47:36', '4ZkLvKWd', '4598861'), + (84059, 953, 1099, 'maybe', '2021-11-04 18:34:57', '2025-12-17 19:47:36', '4ZkLvKWd', '4602797'), + (84060, 953, 1100, 'not_attending', '2021-11-09 01:56:53', '2025-12-17 19:47:36', '4ZkLvKWd', '4607305'), + (84061, 953, 1101, 'not_attending', '2021-11-12 04:27:09', '2025-12-17 19:47:36', '4ZkLvKWd', '4607339'), + (84062, 953, 1103, 'not_attending', '2021-11-13 21:31:33', '2025-12-17 19:47:36', '4ZkLvKWd', '4616350'), + (84063, 953, 1107, 'not_attending', '2021-11-17 01:44:45', '2025-12-17 19:47:37', '4ZkLvKWd', '4620697'), + (84064, 953, 1108, 'attending', '2021-11-16 00:15:37', '2025-12-17 19:47:37', '4ZkLvKWd', '4632276'), + (84065, 953, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4ZkLvKWd', '4637896'), + (84066, 953, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4ZkLvKWd', '4642994'), + (84067, 953, 1117, 'maybe', '2021-12-06 01:57:56', '2025-12-17 19:47:38', '4ZkLvKWd', '4642995'), + (84068, 953, 1118, 'attending', '2021-12-11 22:22:33', '2025-12-17 19:47:38', '4ZkLvKWd', '4642996'), + (84069, 953, 1119, 'attending', '2021-12-19 23:33:17', '2025-12-17 19:47:31', '4ZkLvKWd', '4642997'), + (84070, 953, 1126, 'not_attending', '2021-12-11 22:22:13', '2025-12-17 19:47:38', '4ZkLvKWd', '4645687'), + (84071, 953, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4ZkLvKWd', '4645698'), + (84072, 953, 1128, 'attending', '2021-11-21 00:37:23', '2025-12-17 19:47:37', '4ZkLvKWd', '4645704'), + (84073, 953, 1129, 'maybe', '2021-11-27 23:29:16', '2025-12-17 19:47:37', '4ZkLvKWd', '4645705'), + (84074, 953, 1131, 'maybe', '2021-12-18 23:41:31', '2025-12-17 19:47:31', '4ZkLvKWd', '4658825'), + (84075, 953, 1132, 'attending', '2021-11-22 06:42:58', '2025-12-17 19:47:37', '4ZkLvKWd', '4660657'), + (84076, 953, 1134, 'attending', '2021-11-24 22:13:59', '2025-12-17 19:47:37', '4ZkLvKWd', '4668385'), + (84077, 953, 1135, 'maybe', '2021-11-25 06:18:14', '2025-12-17 19:47:37', '4ZkLvKWd', '4670469'), + (84078, 953, 1139, 'attending', '2021-12-03 23:48:50', '2025-12-17 19:47:37', '4ZkLvKWd', '4675604'), + (84079, 953, 1140, 'attending', '2021-12-03 23:36:16', '2025-12-17 19:47:37', '4ZkLvKWd', '4679701'), + (84080, 953, 1144, 'attending', '2021-12-06 01:57:47', '2025-12-17 19:47:37', '4ZkLvKWd', '4687090'), + (84081, 953, 1147, 'attending', '2021-12-14 21:12:31', '2025-12-17 19:47:38', '4ZkLvKWd', '4692842'), + (84082, 953, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4ZkLvKWd', '4694407'), + (84083, 953, 1151, 'attending', '2022-01-02 06:20:19', '2025-12-17 19:47:31', '4ZkLvKWd', '4708704'), + (84084, 953, 1152, 'attending', '2022-01-12 00:10:10', '2025-12-17 19:47:31', '4ZkLvKWd', '4708705'), + (84085, 953, 1153, 'attending', '2022-01-26 22:32:21', '2025-12-17 19:47:32', '4ZkLvKWd', '4708707'), + (84086, 953, 1154, 'attending', '2022-01-24 20:36:09', '2025-12-17 19:47:32', '4ZkLvKWd', '4708708'), + (84087, 953, 1156, 'attending', '2021-12-19 23:33:00', '2025-12-17 19:47:31', '4ZkLvKWd', '4715207'), + (84088, 953, 1157, 'not_attending', '2021-12-19 23:34:20', '2025-12-17 19:47:31', '4ZkLvKWd', '4715208'), + (84089, 953, 1158, 'not_attending', '2021-12-19 23:32:53', '2025-12-17 19:47:31', '4ZkLvKWd', '4715311'), + (84090, 953, 1159, 'not_attending', '2022-01-02 06:20:15', '2025-12-17 19:47:31', '4ZkLvKWd', '4717532'), + (84091, 953, 1162, 'not_attending', '2022-01-08 00:31:33', '2025-12-17 19:47:31', '4ZkLvKWd', '4718771'), + (84092, 953, 1163, 'maybe', '2022-01-08 00:32:15', '2025-12-17 19:47:31', '4ZkLvKWd', '4724206'), + (84093, 953, 1164, 'attending', '2022-01-02 06:19:55', '2025-12-17 19:47:31', '4ZkLvKWd', '4724208'), + (84094, 953, 1165, 'attending', '2022-01-02 06:20:00', '2025-12-17 19:47:31', '4ZkLvKWd', '4724210'), + (84095, 953, 1168, 'attending', '2022-01-05 02:12:14', '2025-12-17 19:47:31', '4ZkLvKWd', '4731043'), + (84096, 953, 1169, 'not_attending', '2022-01-07 23:55:49', '2025-12-17 19:47:31', '4ZkLvKWd', '4731044'), + (84097, 953, 1170, 'not_attending', '2022-01-09 23:43:18', '2025-12-17 19:47:31', '4ZkLvKWd', '4731045'), + (84098, 953, 1171, 'not_attending', '2022-01-02 06:20:09', '2025-12-17 19:47:31', '4ZkLvKWd', '4733292'), + (84099, 953, 1173, 'attending', '2022-01-09 00:55:04', '2025-12-17 19:47:31', '4ZkLvKWd', '4736495'), + (84100, 953, 1175, 'attending', '2022-01-23 00:04:01', '2025-12-17 19:47:32', '4ZkLvKWd', '4736497'), + (84101, 953, 1176, 'not_attending', '2022-02-05 20:40:49', '2025-12-17 19:47:32', '4ZkLvKWd', '4736498'), + (84102, 953, 1177, 'not_attending', '2022-02-05 20:40:57', '2025-12-17 19:47:32', '4ZkLvKWd', '4736499'), + (84103, 953, 1178, 'attending', '2022-01-29 21:56:53', '2025-12-17 19:47:32', '4ZkLvKWd', '4736500'), + (84104, 953, 1179, 'not_attending', '2022-02-05 20:41:28', '2025-12-17 19:47:32', '4ZkLvKWd', '4736501'), + (84105, 953, 1180, 'not_attending', '2022-02-05 20:41:22', '2025-12-17 19:47:33', '4ZkLvKWd', '4736502'), + (84106, 953, 1181, 'attending', '2022-03-06 00:00:05', '2025-12-17 19:47:33', '4ZkLvKWd', '4736503'), + (84107, 953, 1182, 'attending', '2022-03-11 21:23:13', '2025-12-17 19:47:33', '4ZkLvKWd', '4736504'), + (84108, 953, 1184, 'maybe', '2022-01-09 23:43:56', '2025-12-17 19:47:31', '4ZkLvKWd', '4742350'), + (84109, 953, 1185, 'maybe', '2022-01-09 23:43:42', '2025-12-17 19:47:31', '4ZkLvKWd', '4746789'), + (84110, 953, 1188, 'attending', '2022-01-12 00:09:51', '2025-12-17 19:47:31', '4ZkLvKWd', '4753929'), + (84111, 953, 1190, 'attending', '2022-01-12 00:10:02', '2025-12-17 19:47:31', '4ZkLvKWd', '4757377'), + (84112, 953, 1198, 'attending', '2022-01-24 20:35:33', '2025-12-17 19:47:32', '4ZkLvKWd', '4766801'), + (84113, 953, 1199, 'attending', '2022-01-24 20:35:40', '2025-12-17 19:47:32', '4ZkLvKWd', '4766802'), + (84114, 953, 1202, 'not_attending', '2022-01-26 22:32:30', '2025-12-17 19:47:32', '4ZkLvKWd', '4769423'), + (84115, 953, 1214, 'not_attending', '2022-02-13 04:39:21', '2025-12-17 19:47:32', '4ZkLvKWd', '4780761'), + (84116, 953, 1215, 'not_attending', '2022-02-13 04:39:32', '2025-12-17 19:47:33', '4ZkLvKWd', '4780763'), + (84117, 953, 1219, 'attending', '2022-01-31 22:19:22', '2025-12-17 19:47:32', '4ZkLvKWd', '4788466'), + (84118, 953, 1220, 'maybe', '2022-01-27 23:53:27', '2025-12-17 19:47:32', '4ZkLvKWd', '4790257'), + (84119, 953, 1222, 'not_attending', '2022-02-05 20:41:18', '2025-12-17 19:47:32', '4ZkLvKWd', '5015628'), + (84120, 953, 1224, 'maybe', '2022-01-31 22:19:47', '2025-12-17 19:47:32', '4ZkLvKWd', '5016682'), + (84121, 953, 1227, 'not_attending', '2022-02-05 20:41:44', '2025-12-17 19:47:32', '4ZkLvKWd', '5027602'), + (84122, 953, 1228, 'not_attending', '2022-02-05 20:41:05', '2025-12-17 19:47:32', '4ZkLvKWd', '5028238'), + (84123, 953, 1229, 'not_attending', '2022-02-13 04:39:16', '2025-12-17 19:47:32', '4ZkLvKWd', '5034963'), + (84124, 953, 1231, 'not_attending', '2022-02-13 04:39:27', '2025-12-17 19:47:33', '4ZkLvKWd', '5037637'), + (84125, 953, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4ZkLvKWd', '5038850'), + (84126, 953, 1234, 'not_attending', '2022-02-13 04:39:03', '2025-12-17 19:47:32', '4ZkLvKWd', '5042197'), + (84127, 953, 1235, 'not_attending', '2022-02-13 04:39:00', '2025-12-17 19:47:32', '4ZkLvKWd', '5044505'), + (84128, 953, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4ZkLvKWd', '5045826'), + (84129, 953, 1237, 'not_attending', '2022-02-18 08:27:24', '2025-12-17 19:47:32', '4ZkLvKWd', '5050641'), + (84130, 953, 1238, 'not_attending', '2022-02-24 03:12:55', '2025-12-17 19:47:32', '4ZkLvKWd', '5052236'), + (84131, 953, 1239, 'not_attending', '2022-03-03 00:40:07', '2025-12-17 19:47:33', '4ZkLvKWd', '5052238'), + (84132, 953, 1240, 'not_attending', '2022-03-16 21:17:45', '2025-12-17 19:47:33', '4ZkLvKWd', '5052239'), + (84133, 953, 1241, 'attending', '2022-03-23 22:48:04', '2025-12-17 19:47:25', '4ZkLvKWd', '5052240'), + (84134, 953, 1242, 'attending', '2022-03-27 17:04:55', '2025-12-17 19:47:25', '4ZkLvKWd', '5052241'), + (84135, 953, 1244, 'not_attending', '2022-02-24 03:13:39', '2025-12-17 19:47:33', '4ZkLvKWd', '5060490'), + (84136, 953, 1246, 'not_attending', '2022-03-03 00:40:13', '2025-12-17 19:47:33', '4ZkLvKWd', '5064727'), + (84137, 953, 1247, 'not_attending', '2022-02-24 03:13:20', '2025-12-17 19:47:33', '4ZkLvKWd', '5065027'), + (84138, 953, 1248, 'not_attending', '2022-02-24 03:13:29', '2025-12-17 19:47:33', '4ZkLvKWd', '5065064'), + (84139, 953, 1249, 'attending', '2022-03-09 15:24:18', '2025-12-17 19:47:33', '4ZkLvKWd', '5068530'), + (84140, 953, 1250, 'not_attending', '2022-03-03 00:40:23', '2025-12-17 19:47:33', '4ZkLvKWd', '5069735'), + (84141, 953, 1251, 'not_attending', '2022-03-03 00:42:09', '2025-12-17 19:47:33', '4ZkLvKWd', '5128466'), + (84142, 953, 1252, 'not_attending', '2022-03-03 00:40:34', '2025-12-17 19:47:33', '4ZkLvKWd', '5129121'), + (84143, 953, 1253, 'not_attending', '2022-03-03 00:41:45', '2025-12-17 19:47:33', '4ZkLvKWd', '5129122'), + (84144, 953, 1258, 'not_attending', '2022-03-03 00:40:18', '2025-12-17 19:47:33', '4ZkLvKWd', '5132531'), + (84145, 953, 1259, 'not_attending', '2022-03-03 00:42:00', '2025-12-17 19:47:33', '4ZkLvKWd', '5132533'), + (84146, 953, 1261, 'not_attending', '2022-03-08 00:03:53', '2025-12-17 19:47:33', '4ZkLvKWd', '5154274'), + (84147, 953, 1264, 'maybe', '2022-03-22 22:38:56', '2025-12-17 19:47:25', '4ZkLvKWd', '5160281'), + (84148, 953, 1265, 'attending', '2022-03-11 21:23:16', '2025-12-17 19:47:33', '4ZkLvKWd', '5160862'), + (84149, 953, 1266, 'attending', '2022-03-13 18:33:37', '2025-12-17 19:47:33', '4ZkLvKWd', '5166407'), + (84150, 953, 1267, 'not_attending', '2022-03-15 07:55:53', '2025-12-17 19:47:25', '4ZkLvKWd', '5169578'), + (84151, 953, 1268, 'not_attending', '2022-03-15 21:19:53', '2025-12-17 19:47:33', '4ZkLvKWd', '5176296'), + (84152, 953, 1269, 'not_attending', '2022-03-17 21:06:03', '2025-12-17 19:47:25', '4ZkLvKWd', '5179439'), + (84153, 953, 1270, 'attending', '2022-03-20 22:36:44', '2025-12-17 19:47:25', '4ZkLvKWd', '5181277'), + (84154, 953, 1272, 'attending', '2022-03-19 20:54:25', '2025-12-17 19:47:25', '4ZkLvKWd', '5186582'), + (84155, 953, 1273, 'attending', '2022-03-24 23:15:26', '2025-12-17 19:47:25', '4ZkLvKWd', '5186583'), + (84156, 953, 1274, 'attending', '2022-03-27 17:05:23', '2025-12-17 19:47:26', '4ZkLvKWd', '5186585'), + (84157, 953, 1275, 'not_attending', '2022-03-27 17:05:33', '2025-12-17 19:47:26', '4ZkLvKWd', '5186587'), + (84158, 953, 1276, 'attending', '2022-03-27 17:04:09', '2025-12-17 19:47:25', '4ZkLvKWd', '5186820'), + (84159, 953, 1279, 'not_attending', '2022-03-20 22:37:00', '2025-12-17 19:47:25', '4ZkLvKWd', '5187212'), + (84160, 953, 1281, 'maybe', '2022-04-09 21:14:18', '2025-12-17 19:47:27', '4ZkLvKWd', '5190437'), + (84161, 953, 1282, 'not_attending', '2022-03-21 23:04:45', '2025-12-17 19:47:25', '4ZkLvKWd', '5191241'), + (84162, 953, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4ZkLvKWd', '5195095'), + (84163, 953, 1285, 'not_attending', '2022-03-24 23:15:16', '2025-12-17 19:47:25', '4ZkLvKWd', '5196763'), + (84164, 953, 1287, 'not_attending', '2022-03-27 17:04:23', '2025-12-17 19:47:25', '4ZkLvKWd', '5199425'), + (84165, 953, 1288, 'not_attending', '2022-03-27 17:04:44', '2025-12-17 19:47:25', '4ZkLvKWd', '5199460'), + (84166, 953, 1290, 'not_attending', '2022-03-27 17:04:40', '2025-12-17 19:47:25', '4ZkLvKWd', '5200196'), + (84167, 953, 1291, 'not_attending', '2022-03-24 23:15:10', '2025-12-17 19:47:25', '4ZkLvKWd', '5200458'), + (84168, 953, 1293, 'maybe', '2022-03-27 22:11:33', '2025-12-17 19:47:27', '4ZkLvKWd', '5214641'), + (84169, 953, 1294, 'attending', '2022-04-03 01:56:48', '2025-12-17 19:47:26', '4ZkLvKWd', '5214686'), + (84170, 953, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4ZkLvKWd', '5215989'), + (84171, 953, 1300, 'not_attending', '2022-03-31 23:48:17', '2025-12-17 19:47:25', '4ZkLvKWd', '5217936'), + (84172, 953, 1301, 'attending', '2022-03-31 23:48:30', '2025-12-17 19:47:26', '4ZkLvKWd', '5218175'), + (84173, 953, 1302, 'maybe', '2022-04-08 18:19:33', '2025-12-17 19:47:27', '4ZkLvKWd', '5220867'), + (84174, 953, 1304, 'attending', '2022-04-06 19:07:47', '2025-12-17 19:47:26', '4ZkLvKWd', '5223468'), + (84175, 953, 1305, 'attending', '2022-04-09 21:14:29', '2025-12-17 19:47:27', '4ZkLvKWd', '5223673'), + (84176, 953, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4ZkLvKWd', '5223686'), + (84177, 953, 1308, 'not_attending', '2022-04-13 20:02:06', '2025-12-17 19:47:27', '4ZkLvKWd', '5226703'), + (84178, 953, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4ZkLvKWd', '5227432'), + (84179, 953, 1314, 'not_attending', '2022-04-11 03:01:15', '2025-12-17 19:47:27', '4ZkLvKWd', '5233137'), + (84180, 953, 1315, 'attending', '2022-04-22 22:24:43', '2025-12-17 19:47:27', '4ZkLvKWd', '5237522'), + (84181, 953, 1316, 'not_attending', '2022-04-13 20:02:18', '2025-12-17 19:47:27', '4ZkLvKWd', '5237536'), + (84182, 953, 1321, 'not_attending', '2022-04-22 20:08:41', '2025-12-17 19:47:27', '4ZkLvKWd', '5238355'), + (84183, 953, 1322, 'not_attending', '2022-04-26 20:58:22', '2025-12-17 19:47:27', '4ZkLvKWd', '5238356'), + (84184, 953, 1331, 'maybe', '2022-04-27 20:21:30', '2025-12-17 19:47:27', '4ZkLvKWd', '5242156'), + (84185, 953, 1337, 'attending', '2022-04-20 21:08:55', '2025-12-17 19:47:27', '4ZkLvKWd', '5245036'), + (84186, 953, 1340, 'not_attending', '2022-04-27 20:21:39', '2025-12-17 19:47:27', '4ZkLvKWd', '5245754'), + (84187, 953, 1346, 'attending', '2022-04-23 21:59:35', '2025-12-17 19:47:27', '4ZkLvKWd', '5247467'), + (84188, 953, 1349, 'not_attending', '2022-04-27 20:21:17', '2025-12-17 19:47:27', '4ZkLvKWd', '5249631'), + (84189, 953, 1360, 'not_attending', '2022-04-26 20:58:13', '2025-12-17 19:47:27', '4ZkLvKWd', '5260197'), + (84190, 953, 1362, 'maybe', '2022-04-29 01:20:13', '2025-12-17 19:47:28', '4ZkLvKWd', '5260800'), + (84191, 953, 1363, 'not_attending', '2022-04-27 20:22:16', '2025-12-17 19:47:28', '4ZkLvKWd', '5261577'), + (84192, 953, 1366, 'not_attending', '2022-04-27 20:21:45', '2025-12-17 19:47:27', '4ZkLvKWd', '5262344'), + (84193, 953, 1370, 'not_attending', '2022-04-29 01:20:09', '2025-12-17 19:47:28', '4ZkLvKWd', '5263775'), + (84194, 953, 1371, 'attending', '2022-04-27 20:18:11', '2025-12-17 19:47:27', '4ZkLvKWd', '5263784'), + (84195, 953, 1372, 'maybe', '2022-05-03 18:57:36', '2025-12-17 19:47:28', '4ZkLvKWd', '5264352'), + (84196, 953, 1374, 'attending', '2022-05-07 04:34:37', '2025-12-17 19:47:28', '4ZkLvKWd', '5269930'), + (84197, 953, 1376, 'not_attending', '2022-05-11 21:37:39', '2025-12-17 19:47:28', '4ZkLvKWd', '5271446'), + (84198, 953, 1377, 'not_attending', '2022-05-13 22:30:20', '2025-12-17 19:47:28', '4ZkLvKWd', '5271447'), + (84199, 953, 1378, 'not_attending', '2022-05-07 22:21:07', '2025-12-17 19:47:29', '4ZkLvKWd', '5271448'), + (84200, 953, 1379, 'not_attending', '2022-05-21 19:19:18', '2025-12-17 19:47:30', '4ZkLvKWd', '5271449'), + (84201, 953, 1382, 'maybe', '2022-05-09 21:38:17', '2025-12-17 19:47:28', '4ZkLvKWd', '5276350'), + (84202, 953, 1383, 'attending', '2022-05-13 22:32:57', '2025-12-17 19:47:28', '4ZkLvKWd', '5276469'), + (84203, 953, 1385, 'maybe', '2022-05-11 21:37:27', '2025-12-17 19:47:28', '4ZkLvKWd', '5277822'), + (84204, 953, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4ZkLvKWd', '5278159'), + (84205, 953, 1393, 'not_attending', '2022-06-08 16:33:25', '2025-12-17 19:47:30', '4ZkLvKWd', '5280603'), + (84206, 953, 1399, 'not_attending', '2022-05-11 21:37:43', '2025-12-17 19:47:28', '4ZkLvKWd', '5281796'), + (84207, 953, 1407, 'attending', '2022-06-04 21:04:41', '2025-12-17 19:47:30', '4ZkLvKWd', '5363695'), + (84208, 953, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4ZkLvKWd', '5365960'), + (84209, 953, 1415, 'attending', '2022-06-03 05:20:58', '2025-12-17 19:47:30', '4ZkLvKWd', '5368973'), + (84210, 953, 1416, 'not_attending', '2022-05-29 23:05:38', '2025-12-17 19:47:30', '4ZkLvKWd', '5369628'), + (84211, 953, 1419, 'attending', '2022-06-08 16:32:59', '2025-12-17 19:47:30', '4ZkLvKWd', '5373081'), + (84212, 953, 1421, 'not_attending', '2022-05-30 21:45:49', '2025-12-17 19:47:30', '4ZkLvKWd', '5374885'), + (84213, 953, 1423, 'not_attending', '2022-06-15 22:37:08', '2025-12-17 19:47:17', '4ZkLvKWd', '5375727'), + (84214, 953, 1424, 'maybe', '2022-05-26 19:50:50', '2025-12-17 19:47:30', '4ZkLvKWd', '5375772'), + (84215, 953, 1427, 'maybe', '2022-05-24 22:14:16', '2025-12-17 19:47:30', '4ZkLvKWd', '5376074'), + (84216, 953, 1428, 'maybe', '2022-06-08 16:33:32', '2025-12-17 19:47:30', '4ZkLvKWd', '5378247'), + (84217, 953, 1429, 'not_attending', '2022-05-30 21:45:43', '2025-12-17 19:47:30', '4ZkLvKWd', '5388761'), + (84218, 953, 1430, 'not_attending', '2022-06-08 16:33:13', '2025-12-17 19:47:30', '4ZkLvKWd', '5389402'), + (84219, 953, 1431, 'attending', '2022-06-10 18:55:25', '2025-12-17 19:47:30', '4ZkLvKWd', '5389605'), + (84220, 953, 1432, 'not_attending', '2022-06-03 05:21:58', '2025-12-17 19:47:30', '4ZkLvKWd', '5391566'), + (84221, 953, 1433, 'not_attending', '2022-06-03 05:22:01', '2025-12-17 19:47:30', '4ZkLvKWd', '5391667'), + (84222, 953, 1435, 'attending', '2022-06-02 20:55:39', '2025-12-17 19:47:30', '4ZkLvKWd', '5394015'), + (84223, 953, 1439, 'not_attending', '2022-06-06 22:25:13', '2025-12-17 19:47:30', '4ZkLvKWd', '5396072'), + (84224, 953, 1440, 'not_attending', '2022-06-07 22:21:15', '2025-12-17 19:47:30', '4ZkLvKWd', '5396080'), + (84225, 953, 1441, 'maybe', '2022-06-05 22:31:23', '2025-12-17 19:47:30', '4ZkLvKWd', '5397171'), + (84226, 953, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4ZkLvKWd', '5397265'), + (84227, 953, 1446, 'maybe', '2022-06-08 16:33:10', '2025-12-17 19:47:30', '4ZkLvKWd', '5399721'), + (84228, 953, 1447, 'not_attending', '2022-06-08 16:33:20', '2025-12-17 19:47:30', '4ZkLvKWd', '5401089'), + (84229, 953, 1448, 'not_attending', '2022-06-07 22:21:22', '2025-12-17 19:47:30', '4ZkLvKWd', '5401479'), + (84230, 953, 1451, 'attending', '2022-06-15 22:36:00', '2025-12-17 19:47:17', '4ZkLvKWd', '5403967'), + (84231, 953, 1453, 'not_attending', '2022-06-11 22:10:07', '2025-12-17 19:47:31', '4ZkLvKWd', '5404745'), + (84232, 953, 1454, 'not_attending', '2022-06-11 22:10:01', '2025-12-17 19:47:31', '4ZkLvKWd', '5404771'), + (84233, 953, 1457, 'not_attending', '2022-06-11 22:09:57', '2025-12-17 19:47:31', '4ZkLvKWd', '5404780'), + (84234, 953, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4ZkLvKWd', '5404786'), + (84235, 953, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4ZkLvKWd', '5405203'), + (84236, 953, 1478, 'maybe', '2022-06-23 22:33:50', '2025-12-17 19:47:19', '4ZkLvKWd', '5408794'), + (84237, 953, 1479, 'not_attending', '2022-06-17 21:17:27', '2025-12-17 19:47:17', '4ZkLvKWd', '5410322'), + (84238, 953, 1480, 'maybe', '2022-06-29 22:14:07', '2025-12-17 19:47:19', '4ZkLvKWd', '5411699'), + (84239, 953, 1482, 'attending', '2022-06-25 22:27:42', '2025-12-17 19:47:19', '4ZkLvKWd', '5412550'), + (84240, 953, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4ZkLvKWd', '5415046'), + (84241, 953, 1495, 'not_attending', '2022-06-29 22:14:04', '2025-12-17 19:47:19', '4ZkLvKWd', '5422086'), + (84242, 953, 1498, 'not_attending', '2022-06-29 22:13:59', '2025-12-17 19:47:19', '4ZkLvKWd', '5422406'), + (84243, 953, 1501, 'not_attending', '2022-06-29 22:14:33', '2025-12-17 19:47:19', '4ZkLvKWd', '5424546'), + (84244, 953, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4ZkLvKWd', '5424565'), + (84245, 953, 1504, 'maybe', '2022-07-05 18:51:44', '2025-12-17 19:47:19', '4ZkLvKWd', '5426882'), + (84246, 953, 1505, 'not_attending', '2022-07-05 01:12:39', '2025-12-17 19:47:19', '4ZkLvKWd', '5427083'), + (84247, 953, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4ZkLvKWd', '5441125'), + (84248, 953, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4ZkLvKWd', '5441126'), + (84249, 953, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4ZkLvKWd', '5441128'), + (84250, 953, 1516, 'attending', '2022-08-20 19:04:05', '2025-12-17 19:47:23', '4ZkLvKWd', '5441129'), + (84251, 953, 1528, 'maybe', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4ZkLvKWd', '5446643'), + (84252, 953, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4ZkLvKWd', '5453325'), + (84253, 953, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4ZkLvKWd', '5454516'), + (84254, 953, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4ZkLvKWd', '5454605'), + (84255, 953, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4ZkLvKWd', '5455037'), + (84256, 953, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4ZkLvKWd', '5461278'), + (84257, 953, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4ZkLvKWd', '5469480'), + (84258, 953, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4ZkLvKWd', '5471073'), + (84259, 953, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4ZkLvKWd', '5474663'), + (84260, 953, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4ZkLvKWd', '5482022'), + (84261, 953, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4ZkLvKWd', '5482793'), + (84262, 953, 1580, 'maybe', '2022-08-10 02:37:45', '2025-12-17 19:47:22', '4ZkLvKWd', '5488912'), + (84263, 953, 1581, 'maybe', '2022-08-10 02:37:54', '2025-12-17 19:47:22', '4ZkLvKWd', '5490302'), + (84264, 953, 1582, 'not_attending', '2022-08-20 19:04:12', '2025-12-17 19:47:23', '4ZkLvKWd', '5492001'), + (84265, 953, 1585, 'attending', '2022-08-07 23:25:19', '2025-12-17 19:47:22', '4ZkLvKWd', '5492013'), + (84266, 953, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4ZkLvKWd', '5492192'), + (84267, 953, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4ZkLvKWd', '5493139'), + (84268, 953, 1589, 'maybe', '2022-08-20 19:04:23', '2025-12-17 19:47:23', '4ZkLvKWd', '5493159'), + (84269, 953, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4ZkLvKWd', '5493200'), + (84270, 953, 1595, 'not_attending', '2022-08-12 21:02:03', '2025-12-17 19:47:22', '4ZkLvKWd', '5495736'), + (84271, 953, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4ZkLvKWd', '5502188'), + (84272, 953, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4ZkLvKWd', '5512862'), + (84273, 953, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4ZkLvKWd', '5513985'), + (84274, 953, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4ZkLvKWd', '6045684'), + (84275, 954, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dzO27l1m', '4694407'), + (84276, 954, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dzO27l1m', '4736497'), + (84277, 954, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dzO27l1m', '4736499'), + (84278, 954, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dzO27l1m', '4736500'), + (84279, 954, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dzO27l1m', '4736503'), + (84280, 954, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dzO27l1m', '4736504'), + (84281, 954, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dzO27l1m', '4746789'), + (84282, 954, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dzO27l1m', '4753929'), + (84283, 954, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dzO27l1m', '5038850'), + (84284, 954, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dzO27l1m', '5045826'), + (84285, 954, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dzO27l1m', '5132533'), + (84286, 954, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dzO27l1m', '6045684'), + (84287, 955, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '4ZkENLLd', '4356801'), + (84288, 955, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', '4ZkENLLd', '4366187'), + (84289, 955, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '4ZkENLLd', '4420735'), + (84290, 955, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '4ZkENLLd', '4420738'), + (84291, 955, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '4ZkENLLd', '4420739'), + (84292, 955, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '4ZkENLLd', '4420741'), + (84293, 955, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '4ZkENLLd', '4420744'), + (84294, 955, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '4ZkENLLd', '4420747'), + (84295, 955, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '4ZkENLLd', '4420748'), + (84296, 955, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '4ZkENLLd', '4420749'), + (84297, 955, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '4ZkENLLd', '4461883'), + (84298, 955, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4ZkENLLd', '6045684'), + (84299, 956, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6YlDZRd', '6045684'), + (84300, 957, 1507, 'attending', '2022-07-29 01:04:26', '2025-12-17 19:47:19', '4vEyyVkA', '5433100'), + (84301, 957, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4vEyyVkA', '5441128'), + (84302, 957, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4vEyyVkA', '5441131'), + (84303, 957, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4vEyyVkA', '5441132'), + (84304, 957, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4vEyyVkA', '5461278'), + (84305, 957, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4vEyyVkA', '5469480'), + (84306, 957, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', '4vEyyVkA', '5471073'), + (84307, 957, 1567, 'attending', '2022-07-31 05:29:35', '2025-12-17 19:47:21', '4vEyyVkA', '5477629'), + (84308, 957, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4vEyyVkA', '5482022'), + (84309, 957, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4vEyyVkA', '5482793'), + (84310, 957, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4vEyyVkA', '5488912'), + (84311, 957, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4vEyyVkA', '5492192'), + (84312, 957, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4vEyyVkA', '5493139'), + (84313, 957, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4vEyyVkA', '5493200'), + (84314, 957, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4vEyyVkA', '5502188'), + (84315, 957, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4vEyyVkA', '5505059'), + (84316, 957, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4vEyyVkA', '5509055'), + (84317, 957, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4vEyyVkA', '5512862'), + (84318, 957, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4vEyyVkA', '5513985'), + (84319, 957, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4vEyyVkA', '5522550'), + (84320, 957, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4vEyyVkA', '5534683'), + (84321, 957, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4vEyyVkA', '5537735'), + (84322, 957, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4vEyyVkA', '5540859'), + (84323, 957, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4vEyyVkA', '5546619'), + (84324, 957, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4vEyyVkA', '5555245'), + (84325, 957, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4vEyyVkA', '5557747'), + (84326, 957, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4vEyyVkA', '5560255'), + (84327, 957, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4vEyyVkA', '5562906'), + (84328, 957, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4vEyyVkA', '5600604'), + (84329, 957, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4vEyyVkA', '5605544'), + (84330, 957, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', '4vEyyVkA', '5606737'), + (84331, 957, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4vEyyVkA', '5635406'), + (84332, 957, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4vEyyVkA', '5638765'), + (84333, 957, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '4vEyyVkA', '5640843'), + (84334, 957, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4vEyyVkA', '6045684'), + (84335, 958, 1274, 'not_attending', '2022-03-30 05:35:51', '2025-12-17 19:47:26', '4EQLVPn4', '5186585'), + (84336, 958, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4EQLVPn4', '5195095'), + (84337, 958, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4EQLVPn4', '5215989'), + (84338, 958, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4EQLVPn4', '5223686'), + (84339, 958, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4EQLVPn4', '5227432'), + (84340, 958, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '4EQLVPn4', '5247467'), + (84341, 958, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4EQLVPn4', '5260800'), + (84342, 958, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4EQLVPn4', '5269930'), + (84343, 958, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4EQLVPn4', '5271448'), + (84344, 958, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '4EQLVPn4', '5271449'), + (84345, 958, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4EQLVPn4', '5276469'), + (84346, 958, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4EQLVPn4', '5278159'), + (84347, 958, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4EQLVPn4', '6045684'), + (84348, 959, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'mLzPbxy4', '4637896'), + (84349, 959, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mLzPbxy4', '4642994'), + (84350, 959, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'mLzPbxy4', '4642995'), + (84351, 959, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mLzPbxy4', '4642996'), + (84352, 959, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mLzPbxy4', '4642997'), + (84353, 959, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mLzPbxy4', '4645687'), + (84354, 959, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mLzPbxy4', '4645698'), + (84355, 959, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mLzPbxy4', '4645704'), + (84356, 959, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mLzPbxy4', '4645705'), + (84357, 959, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mLzPbxy4', '4668385'), + (84358, 959, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'mLzPbxy4', '4694407'), + (84359, 959, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mLzPbxy4', '4736497'), + (84360, 959, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mLzPbxy4', '4736499'), + (84361, 959, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mLzPbxy4', '4736500'), + (84362, 959, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mLzPbxy4', '4736503'), + (84363, 959, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mLzPbxy4', '4736504'), + (84364, 959, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mLzPbxy4', '4746789'), + (84365, 959, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mLzPbxy4', '4753929'), + (84366, 959, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mLzPbxy4', '5038850'), + (84367, 959, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mLzPbxy4', '5045826'), + (84368, 959, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mLzPbxy4', '5132533'), + (84369, 959, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mLzPbxy4', '6045684'), + (84370, 960, 1891, 'attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4ZgwX0Xd', '5900202'), + (84371, 960, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4ZgwX0Xd', '5900203'), + (84372, 960, 1917, 'maybe', '2023-03-12 16:07:19', '2025-12-17 19:47:10', '4ZgwX0Xd', '5910528'), + (84373, 960, 1943, 'not_attending', '2023-03-11 01:08:02', '2025-12-17 19:47:10', '4ZgwX0Xd', '5962091'), + (84374, 960, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '4ZgwX0Xd', '5962317'), + (84375, 960, 1949, 'maybe', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '4ZgwX0Xd', '5962318'), + (84376, 960, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4ZgwX0Xd', '5965933'), + (84377, 960, 1957, 'maybe', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4ZgwX0Xd', '5972815'), + (84378, 960, 1965, 'attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4ZgwX0Xd', '5981515'), + (84379, 960, 1969, 'attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4ZgwX0Xd', '5993516'), + (84380, 960, 1971, 'attending', '2023-03-20 18:42:19', '2025-12-17 19:46:56', '4ZgwX0Xd', '5993765'), + (84381, 960, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4ZgwX0Xd', '5998939'), + (84382, 960, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4ZgwX0Xd', '6028191'), + (84383, 960, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4ZgwX0Xd', '6040066'), + (84384, 960, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4ZgwX0Xd', '6042717'), + (84385, 960, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4ZgwX0Xd', '6044838'), + (84386, 960, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4ZgwX0Xd', '6044839'), + (84387, 960, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ZgwX0Xd', '6045684'), + (84388, 960, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4ZgwX0Xd', '6050104'), + (84389, 960, 2005, 'maybe', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4ZgwX0Xd', '6053195'), + (84390, 960, 2006, 'maybe', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4ZgwX0Xd', '6053198'), + (84391, 960, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4ZgwX0Xd', '6056085'), + (84392, 960, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4ZgwX0Xd', '6056916'), + (84393, 960, 2012, 'attending', '2023-04-10 23:15:12', '2025-12-17 19:46:59', '4ZgwX0Xd', '6059290'), + (84394, 960, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4ZgwX0Xd', '6060328'), + (84395, 960, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4ZgwX0Xd', '6061037'), + (84396, 960, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4ZgwX0Xd', '6061039'), + (84397, 960, 2018, 'attending', '2023-04-12 00:51:19', '2025-12-17 19:46:59', '4ZgwX0Xd', '6061171'), + (84398, 960, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4ZgwX0Xd', '6067245'), + (84399, 960, 2027, 'maybe', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4ZgwX0Xd', '6068094'), + (84400, 960, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4ZgwX0Xd', '6068252'), + (84401, 960, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4ZgwX0Xd', '6068253'), + (84402, 960, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4ZgwX0Xd', '6068254'), + (84403, 960, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4ZgwX0Xd', '6068280'), + (84404, 960, 2033, 'attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4ZgwX0Xd', '6069093'), + (84405, 960, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4ZgwX0Xd', '6072528'), + (84406, 960, 2045, 'maybe', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4ZgwX0Xd', '6075556'), + (84407, 960, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4ZgwX0Xd', '6079840'), + (84408, 960, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4ZgwX0Xd', '6083398'), + (84409, 960, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4ZgwX0Xd', '6093504'), + (84410, 960, 2060, 'maybe', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4ZgwX0Xd', '6097414'), + (84411, 960, 2061, 'maybe', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4ZgwX0Xd', '6097442'), + (84412, 960, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4ZgwX0Xd', '6097684'), + (84413, 960, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4ZgwX0Xd', '6098762'), + (84414, 960, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4ZgwX0Xd', '6101362'), + (84415, 960, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4ZgwX0Xd', '6107314'), + (84416, 961, 1379, 'not_attending', '2022-05-21 01:26:15', '2025-12-17 19:47:30', 'myDlkJgd', '5271449'), + (84417, 961, 1380, 'attending', '2022-05-25 23:02:38', '2025-12-17 19:47:30', 'myDlkJgd', '5271450'), + (84418, 961, 1407, 'attending', '2022-05-29 15:43:57', '2025-12-17 19:47:30', 'myDlkJgd', '5363695'), + (84419, 961, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'myDlkJgd', '5365960'), + (84420, 961, 1409, 'not_attending', '2022-05-20 21:25:16', '2025-12-17 19:47:30', 'myDlkJgd', '5367032'), + (84421, 961, 1415, 'attending', '2022-05-29 15:43:53', '2025-12-17 19:47:30', 'myDlkJgd', '5368973'), + (84422, 961, 1419, 'attending', '2022-06-05 21:05:05', '2025-12-17 19:47:30', 'myDlkJgd', '5373081'), + (84423, 961, 1423, 'attending', '2022-06-10 18:53:14', '2025-12-17 19:47:17', 'myDlkJgd', '5375727'), + (84424, 961, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'myDlkJgd', '5378247'), + (84425, 961, 1431, 'not_attending', '2022-06-07 19:20:34', '2025-12-17 19:47:31', 'myDlkJgd', '5389605'), + (84426, 961, 1433, 'attending', '2022-05-31 22:02:56', '2025-12-17 19:47:30', 'myDlkJgd', '5391667'), + (84427, 961, 1437, 'attending', '2022-06-02 00:18:51', '2025-12-17 19:47:30', 'myDlkJgd', '5394493'), + (84428, 961, 1440, 'attending', '2022-06-05 21:04:18', '2025-12-17 19:47:30', 'myDlkJgd', '5396080'), + (84429, 961, 1442, 'attending', '2022-06-10 18:53:50', '2025-12-17 19:47:17', 'myDlkJgd', '5397265'), + (84430, 961, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'myDlkJgd', '5403967'), + (84431, 961, 1454, 'not_attending', '2022-06-13 02:23:01', '2025-12-17 19:47:31', 'myDlkJgd', '5404771'), + (84432, 961, 1455, 'not_attending', '2022-06-13 22:19:16', '2025-12-17 19:47:31', 'myDlkJgd', '5404772'), + (84433, 961, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'myDlkJgd', '5404786'), + (84434, 961, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'myDlkJgd', '5405203'), + (84435, 961, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'myDlkJgd', '5408794'), + (84436, 961, 1480, 'attending', '2022-06-26 16:36:40', '2025-12-17 19:47:19', 'myDlkJgd', '5411699'), + (84437, 961, 1482, 'attending', '2022-06-20 15:05:28', '2025-12-17 19:47:19', 'myDlkJgd', '5412550'), + (84438, 961, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'myDlkJgd', '5415046'), + (84439, 961, 1491, 'not_attending', '2022-07-02 18:34:02', '2025-12-17 19:47:19', 'myDlkJgd', '5420158'), + (84440, 961, 1492, 'not_attending', '2022-07-05 14:03:04', '2025-12-17 19:47:19', 'myDlkJgd', '5420175'), + (84441, 961, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'myDlkJgd', '5422086'), + (84442, 961, 1496, 'attending', '2022-06-26 16:39:42', '2025-12-17 19:47:19', 'myDlkJgd', '5422404'), + (84443, 961, 1497, 'attending', '2022-06-26 16:39:45', '2025-12-17 19:47:19', 'myDlkJgd', '5422405'), + (84444, 961, 1498, 'attending', '2022-06-26 16:40:54', '2025-12-17 19:47:19', 'myDlkJgd', '5422406'), + (84445, 961, 1500, 'not_attending', '2022-07-05 14:02:52', '2025-12-17 19:47:19', 'myDlkJgd', '5423915'), + (84446, 961, 1501, 'not_attending', '2022-06-29 23:43:05', '2025-12-17 19:47:19', 'myDlkJgd', '5424546'), + (84447, 961, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'myDlkJgd', '5424565'), + (84448, 961, 1504, 'not_attending', '2022-07-11 16:09:10', '2025-12-17 19:47:19', 'myDlkJgd', '5426882'), + (84449, 961, 1505, 'not_attending', '2022-07-02 18:34:40', '2025-12-17 19:47:19', 'myDlkJgd', '5427083'), + (84450, 961, 1508, 'attending', '2022-07-11 16:08:52', '2025-12-17 19:47:19', 'myDlkJgd', '5433453'), + (84451, 961, 1513, 'not_attending', '2022-07-09 16:05:36', '2025-12-17 19:47:20', 'myDlkJgd', '5441125'), + (84452, 961, 1514, 'attending', '2022-07-17 16:01:23', '2025-12-17 19:47:20', 'myDlkJgd', '5441126'), + (84453, 961, 1515, 'not_attending', '2022-08-01 03:34:17', '2025-12-17 19:47:21', 'myDlkJgd', '5441128'), + (84454, 961, 1516, 'attending', '2022-08-15 01:53:39', '2025-12-17 19:47:23', 'myDlkJgd', '5441129'), + (84455, 961, 1517, 'attending', '2022-08-24 16:14:16', '2025-12-17 19:47:23', 'myDlkJgd', '5441130'), + (84456, 961, 1522, 'not_attending', '2022-07-17 16:00:42', '2025-12-17 19:47:20', 'myDlkJgd', '5442832'), + (84457, 961, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'myDlkJgd', '5446643'), + (84458, 961, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'myDlkJgd', '5453325'), + (84459, 961, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'myDlkJgd', '5454516'), + (84460, 961, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'myDlkJgd', '5454605'), + (84461, 961, 1546, 'not_attending', '2022-07-25 16:08:55', '2025-12-17 19:47:20', 'myDlkJgd', '5454607'), + (84462, 961, 1547, 'not_attending', '2022-07-25 03:05:59', '2025-12-17 19:47:20', 'myDlkJgd', '5454608'), + (84463, 961, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'myDlkJgd', '5455037'), + (84464, 961, 1553, 'attending', '2022-07-19 23:06:36', '2025-12-17 19:47:20', 'myDlkJgd', '5455164'), + (84465, 961, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'myDlkJgd', '5461278'), + (84466, 961, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'myDlkJgd', '5469480'), + (84467, 961, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'myDlkJgd', '5471073'), + (84468, 961, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'myDlkJgd', '5474663'), + (84469, 961, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'myDlkJgd', '5482022'), + (84470, 961, 1573, 'not_attending', '2022-08-07 17:33:03', '2025-12-17 19:47:22', 'myDlkJgd', '5482152'), + (84471, 961, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'myDlkJgd', '5482793'), + (84472, 961, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'myDlkJgd', '5488912'), + (84473, 961, 1583, 'attending', '2022-08-08 03:29:25', '2025-12-17 19:47:22', 'myDlkJgd', '5492002'), + (84474, 961, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'myDlkJgd', '5492192'), + (84475, 961, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'myDlkJgd', '5493139'), + (84476, 961, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'myDlkJgd', '5493200'), + (84477, 961, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'myDlkJgd', '5502188'), + (84478, 961, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'myDlkJgd', '5512862'), + (84479, 961, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'myDlkJgd', '5513985'), + (84480, 961, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myDlkJgd', '6045684'), + (84481, 962, 646, 'not_attending', '2021-05-12 14:13:28', '2025-12-17 19:47:46', '2d2EloM4', '3539921'), + (84482, 962, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '2d2EloM4', '3539922'), + (84483, 962, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '2d2EloM4', '3806392'), + (84484, 962, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2EloM4', '6045684'), + (84485, 963, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4WP72Xjd', '4736497'), + (84486, 963, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4WP72Xjd', '4736500'), + (84487, 963, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4WP72Xjd', '4746789'), + (84488, 963, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4WP72Xjd', '4753929'), + (84489, 963, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4WP72Xjd', '6045684'), + (84490, 964, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dVgJGDrm', '5880943'), + (84491, 964, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dVgJGDrm', '5900202'), + (84492, 964, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVgJGDrm', '5900203'), + (84493, 964, 1916, 'not_attending', '2023-03-01 16:36:14', '2025-12-17 19:47:08', 'dVgJGDrm', '5910526'), + (84494, 964, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dVgJGDrm', '5910528'), + (84495, 964, 1943, 'attending', '2023-03-03 19:09:19', '2025-12-17 19:47:10', 'dVgJGDrm', '5962091'), + (84496, 964, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'dVgJGDrm', '5962317'), + (84497, 964, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'dVgJGDrm', '5962318'), + (84498, 964, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dVgJGDrm', '5965933'), + (84499, 964, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVgJGDrm', '5967014'), + (84500, 964, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVgJGDrm', '5972815'), + (84501, 964, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVgJGDrm', '5974016'), + (84502, 964, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVgJGDrm', '5981515'), + (84503, 964, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVgJGDrm', '5993516'), + (84504, 964, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVgJGDrm', '5998939'), + (84505, 964, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVgJGDrm', '6028191'), + (84506, 964, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVgJGDrm', '6040066'), + (84507, 964, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVgJGDrm', '6042717'), + (84508, 964, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVgJGDrm', '6044838'), + (84509, 964, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVgJGDrm', '6044839'), + (84510, 964, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVgJGDrm', '6045684'), + (84511, 964, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'dVgJGDrm', '6048955'), + (84512, 964, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVgJGDrm', '6050104'), + (84513, 964, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVgJGDrm', '6053195'), + (84514, 964, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVgJGDrm', '6053198'), + (84515, 964, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVgJGDrm', '6056085'), + (84516, 964, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVgJGDrm', '6056916'), + (84517, 964, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVgJGDrm', '6059290'), + (84518, 964, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVgJGDrm', '6060328'), + (84519, 964, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVgJGDrm', '6061037'), + (84520, 964, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVgJGDrm', '6061039'), + (84521, 964, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVgJGDrm', '6067245'), + (84522, 964, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVgJGDrm', '6068094'), + (84523, 964, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVgJGDrm', '6068252'), + (84524, 964, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVgJGDrm', '6068253'), + (84525, 964, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVgJGDrm', '6068254'), + (84526, 964, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVgJGDrm', '6068280'), + (84527, 964, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVgJGDrm', '6069093'), + (84528, 964, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVgJGDrm', '6072528'), + (84529, 964, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVgJGDrm', '6079840'), + (84530, 964, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVgJGDrm', '6083398'), + (84531, 964, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVgJGDrm', '6093504'), + (84532, 964, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVgJGDrm', '6097414'), + (84533, 964, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVgJGDrm', '6097442'), + (84534, 964, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVgJGDrm', '6097684'), + (84535, 964, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVgJGDrm', '6098762'), + (84536, 964, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVgJGDrm', '6101362'), + (84537, 964, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVgJGDrm', '6107314'), + (84538, 964, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dVgJGDrm', '6120034'), + (84539, 965, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4DYbJZLd', '6045684'), + (84540, 966, 258, 'not_attending', '2021-06-01 01:29:28', '2025-12-17 19:47:47', '0mqjJWlA', '3149489'), + (84541, 966, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '0mqjJWlA', '3149491'), + (84542, 966, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', '0mqjJWlA', '3149493'), + (84543, 966, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', '0mqjJWlA', '3236448'), + (84544, 966, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '0mqjJWlA', '3236450'), + (84545, 966, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '0mqjJWlA', '3974109'), + (84546, 966, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '0mqjJWlA', '3975311'), + (84547, 966, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '0mqjJWlA', '3975312'), + (84548, 966, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '0mqjJWlA', '3994992'), + (84549, 966, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '0mqjJWlA', '4014338'), + (84550, 966, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '0mqjJWlA', '4021848'), + (84551, 966, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '0mqjJWlA', '4136744'), + (84552, 966, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '0mqjJWlA', '4136937'), + (84553, 966, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '0mqjJWlA', '4136938'), + (84554, 966, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '0mqjJWlA', '4136947'), + (84555, 966, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '0mqjJWlA', '4225444'), + (84556, 966, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '0mqjJWlA', '4229417'), + (84557, 966, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '0mqjJWlA', '4229418'), + (84558, 966, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '0mqjJWlA', '4239259'), + (84559, 966, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '0mqjJWlA', '4250163'), + (84560, 966, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqjJWlA', '6045684'), + (84561, 967, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'd2OXVO8m', '5962318'), + (84562, 967, 1978, 'not_attending', '2023-03-30 20:43:10', '2025-12-17 19:46:58', 'd2OXVO8m', '6028191'), + (84563, 967, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd2OXVO8m', '6044838'), + (84564, 967, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd2OXVO8m', '6044839'), + (84565, 967, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd2OXVO8m', '6045684'), + (84566, 967, 1993, 'attending', '2023-04-03 17:09:14', '2025-12-17 19:46:58', 'd2OXVO8m', '6048955'), + (84567, 967, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd2OXVO8m', '6050104'), + (84568, 967, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd2OXVO8m', '6053195'), + (84569, 967, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd2OXVO8m', '6053198'), + (84570, 967, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd2OXVO8m', '6056085'), + (84571, 967, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd2OXVO8m', '6056916'), + (84572, 967, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd2OXVO8m', '6059290'), + (84573, 967, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd2OXVO8m', '6060328'), + (84574, 967, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd2OXVO8m', '6061037'), + (84575, 967, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd2OXVO8m', '6061039'), + (84576, 967, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd2OXVO8m', '6067245'), + (84577, 967, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd2OXVO8m', '6068094'), + (84578, 967, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd2OXVO8m', '6068252'), + (84579, 967, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd2OXVO8m', '6068253'), + (84580, 967, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd2OXVO8m', '6068254'), + (84581, 967, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd2OXVO8m', '6068280'), + (84582, 967, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd2OXVO8m', '6069093'), + (84583, 967, 2034, 'attending', '2023-04-21 16:37:52', '2025-12-17 19:47:00', 'd2OXVO8m', '6069372'), + (84584, 967, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd2OXVO8m', '6072528'), + (84585, 967, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd2OXVO8m', '6079840'), + (84586, 967, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd2OXVO8m', '6083398'), + (84587, 967, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd2OXVO8m', '6093504'), + (84588, 967, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd2OXVO8m', '6097414'), + (84589, 967, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd2OXVO8m', '6097442'), + (84590, 967, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd2OXVO8m', '6097684'), + (84591, 967, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd2OXVO8m', '6098762'), + (84592, 967, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd2OXVO8m', '6101362'), + (84593, 967, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd2OXVO8m', '6107314'), + (84594, 967, 2085, 'attending', '2023-05-29 20:40:31', '2025-12-17 19:47:04', 'd2OXVO8m', '6118068'), + (84595, 967, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd2OXVO8m', '6120034'), + (84596, 968, 645, 'not_attending', '2021-04-25 17:27:14', '2025-12-17 19:47:46', 'oAgeGNqd', '3539920'), + (84597, 968, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'oAgeGNqd', '3539921'), + (84598, 968, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'oAgeGNqd', '3539922'), + (84599, 968, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'oAgeGNqd', '3539923'), + (84600, 968, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', 'oAgeGNqd', '3583262'), + (84601, 968, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'oAgeGNqd', '3793156'), + (84602, 968, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'oAgeGNqd', '3975311'), + (84603, 968, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'oAgeGNqd', '3994992'), + (84604, 968, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgeGNqd', '6045684'), + (84605, 969, 1514, 'maybe', '2022-07-20 00:56:32', '2025-12-17 19:47:20', '4orbn6JA', '5441126'), + (84606, 969, 1515, 'attending', '2022-08-04 23:57:07', '2025-12-17 19:47:21', '4orbn6JA', '5441128'), + (84607, 969, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4orbn6JA', '5441131'), + (84608, 969, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4orbn6JA', '5441132'), + (84609, 969, 1522, 'attending', '2022-07-19 13:46:15', '2025-12-17 19:47:20', '4orbn6JA', '5442832'), + (84610, 969, 1536, 'attending', '2022-07-18 23:09:03', '2025-12-17 19:47:20', '4orbn6JA', '5449068'), + (84611, 969, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4orbn6JA', '5453325'), + (84612, 969, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4orbn6JA', '5454516'), + (84613, 969, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4orbn6JA', '5454605'), + (84614, 969, 1546, 'maybe', '2022-07-24 14:48:48', '2025-12-17 19:47:20', '4orbn6JA', '5454607'), + (84615, 969, 1551, 'attending', '2022-07-19 21:43:14', '2025-12-17 19:47:20', '4orbn6JA', '5455037'), + (84616, 969, 1557, 'maybe', '2022-08-03 22:52:52', '2025-12-17 19:47:21', '4orbn6JA', '5458729'), + (84617, 969, 1561, 'maybe', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4orbn6JA', '5461278'), + (84618, 969, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4orbn6JA', '5469480'), + (84619, 969, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4orbn6JA', '5471073'), + (84620, 969, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '4orbn6JA', '5474663'), + (84621, 969, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4orbn6JA', '5482022'), + (84622, 969, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4orbn6JA', '5482793'), + (84623, 969, 1580, 'maybe', '2022-08-10 15:28:20', '2025-12-17 19:47:22', '4orbn6JA', '5488912'), + (84624, 969, 1581, 'maybe', '2022-08-11 18:07:17', '2025-12-17 19:47:22', '4orbn6JA', '5490302'), + (84625, 969, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4orbn6JA', '5492192'), + (84626, 969, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4orbn6JA', '5493139'), + (84627, 969, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4orbn6JA', '5493200'), + (84628, 969, 1595, 'maybe', '2022-08-12 18:11:28', '2025-12-17 19:47:22', '4orbn6JA', '5495736'), + (84629, 969, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4orbn6JA', '5502188'), + (84630, 969, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4orbn6JA', '5505059'), + (84631, 969, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4orbn6JA', '5509055'), + (84632, 969, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4orbn6JA', '5512862'), + (84633, 969, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4orbn6JA', '5513985'), + (84634, 969, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '4orbn6JA', '5519981'), + (84635, 969, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4orbn6JA', '5522550'), + (84636, 969, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4orbn6JA', '5534683'), + (84637, 969, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4orbn6JA', '5537735'), + (84638, 969, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4orbn6JA', '5540859'), + (84639, 969, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4orbn6JA', '5546619'), + (84640, 969, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4orbn6JA', '5555245'), + (84641, 969, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4orbn6JA', '5557747'), + (84642, 969, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4orbn6JA', '5560255'), + (84643, 969, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4orbn6JA', '5562906'), + (84644, 969, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4orbn6JA', '5600604'), + (84645, 969, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4orbn6JA', '5605544'), + (84646, 969, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', '4orbn6JA', '5606737'), + (84647, 969, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4orbn6JA', '5635406'), + (84648, 969, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4orbn6JA', '5638765'), + (84649, 969, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '4orbn6JA', '5640843'), + (84650, 969, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4orbn6JA', '5641521'), + (84651, 969, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4orbn6JA', '5652395'), + (84652, 969, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4orbn6JA', '6045684'), + (84653, 970, 1419, 'maybe', '2022-06-08 23:09:14', '2025-12-17 19:47:30', '41WD6j8m', '5373081'), + (84654, 970, 1442, 'not_attending', '2022-06-12 02:47:11', '2025-12-17 19:47:17', '41WD6j8m', '5397265'), + (84655, 970, 1448, 'attending', '2022-06-07 02:24:55', '2025-12-17 19:47:30', '41WD6j8m', '5401479'), + (84656, 970, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WD6j8m', '5403967'), + (84657, 970, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WD6j8m', '5404786'), + (84658, 970, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WD6j8m', '5405203'), + (84659, 970, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', '41WD6j8m', '5408794'), + (84660, 970, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WD6j8m', '5411699'), + (84661, 970, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WD6j8m', '5412550'), + (84662, 970, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WD6j8m', '5415046'), + (84663, 970, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WD6j8m', '5422086'), + (84664, 970, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WD6j8m', '5422406'), + (84665, 970, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WD6j8m', '5424565'), + (84666, 970, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WD6j8m', '5426882'), + (84667, 970, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WD6j8m', '5427083'), + (84668, 970, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41WD6j8m', '5441125'), + (84669, 970, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WD6j8m', '5441126'), + (84670, 970, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WD6j8m', '5441128'), + (84671, 970, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WD6j8m', '5446643'), + (84672, 970, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WD6j8m', '5453325'), + (84673, 970, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WD6j8m', '5454516'), + (84674, 970, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WD6j8m', '5454605'), + (84675, 970, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WD6j8m', '5455037'), + (84676, 970, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WD6j8m', '5461278'), + (84677, 970, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WD6j8m', '5469480'), + (84678, 970, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WD6j8m', '5471073'), + (84679, 970, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', '41WD6j8m', '5474663'), + (84680, 970, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WD6j8m', '5482022'), + (84681, 970, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WD6j8m', '5482793'), + (84682, 970, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WD6j8m', '5488912'), + (84683, 970, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WD6j8m', '5492192'), + (84684, 970, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WD6j8m', '5493139'), + (84685, 970, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WD6j8m', '5493200'), + (84686, 970, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WD6j8m', '5502188'), + (84687, 970, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WD6j8m', '5512862'), + (84688, 970, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WD6j8m', '5513985'), + (84689, 970, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WD6j8m', '6045684'), + (84690, 971, 1207, 'attending', '2022-05-08 09:09:32', '2025-12-17 19:47:28', 'ArQK5rBm', '4773579'), + (84691, 971, 1322, 'attending', '2022-04-25 17:33:58', '2025-12-17 19:47:27', 'ArQK5rBm', '5238356'), + (84692, 971, 1323, 'not_attending', '2022-04-25 08:55:12', '2025-12-17 19:47:27', 'ArQK5rBm', '5238357'), + (84693, 971, 1324, 'attending', '2022-04-27 19:55:01', '2025-12-17 19:47:27', 'ArQK5rBm', '5238360'), + (84694, 971, 1325, 'not_attending', '2022-04-29 21:52:36', '2025-12-17 19:47:28', 'ArQK5rBm', '5238361'), + (84695, 971, 1326, 'not_attending', '2022-04-29 21:52:53', '2025-12-17 19:47:28', 'ArQK5rBm', '5238362'), + (84696, 971, 1327, 'not_attending', '2022-04-25 19:48:02', '2025-12-17 19:47:27', 'ArQK5rBm', '5238445'), + (84697, 971, 1337, 'not_attending', '2022-05-09 09:21:08', '2025-12-17 19:47:27', 'ArQK5rBm', '5245036'), + (84698, 971, 1340, 'maybe', '2022-04-27 06:49:20', '2025-12-17 19:47:27', 'ArQK5rBm', '5245754'), + (84699, 971, 1341, 'not_attending', '2022-05-01 19:52:30', '2025-12-17 19:47:28', 'ArQK5rBm', '5245755'), + (84700, 971, 1343, 'not_attending', '2022-05-02 03:27:59', '2025-12-17 19:47:28', 'ArQK5rBm', '5247200'), + (84701, 971, 1344, 'not_attending', '2022-04-29 01:23:34', '2025-12-17 19:47:28', 'ArQK5rBm', '5247465'), + (84702, 971, 1346, 'attending', '2022-04-22 20:32:10', '2025-12-17 19:47:27', 'ArQK5rBm', '5247467'), + (84703, 971, 1348, 'attending', '2022-04-29 21:57:46', '2025-12-17 19:47:28', 'ArQK5rBm', '5247605'), + (84704, 971, 1351, 'attending', '2022-04-29 17:02:01', '2025-12-17 19:47:28', 'ArQK5rBm', '5251561'), + (84705, 971, 1352, 'not_attending', '2022-05-05 17:27:57', '2025-12-17 19:47:28', 'ArQK5rBm', '5251618'), + (84706, 971, 1353, 'attending', '2022-04-22 20:32:09', '2025-12-17 19:47:27', 'ArQK5rBm', '5251777'), + (84707, 971, 1355, 'not_attending', '2022-04-28 11:56:51', '2025-12-17 19:47:28', 'ArQK5rBm', '5252573'), + (84708, 971, 1357, 'not_attending', '2022-04-25 12:02:04', '2025-12-17 19:47:27', 'ArQK5rBm', '5256017'), + (84709, 971, 1358, 'not_attending', '2022-04-25 17:33:56', '2025-12-17 19:47:27', 'ArQK5rBm', '5258022'), + (84710, 971, 1359, 'not_attending', '2022-05-04 21:39:38', '2025-12-17 19:47:28', 'ArQK5rBm', '5258360'), + (84711, 971, 1360, 'maybe', '2022-04-25 17:34:07', '2025-12-17 19:47:27', 'ArQK5rBm', '5260197'), + (84712, 971, 1361, 'not_attending', '2022-04-30 05:23:50', '2025-12-17 19:47:28', 'ArQK5rBm', '5260491'), + (84713, 971, 1362, 'attending', '2022-04-25 17:32:30', '2025-12-17 19:47:28', 'ArQK5rBm', '5260800'), + (84714, 971, 1363, 'maybe', '2022-04-27 06:52:10', '2025-12-17 19:47:28', 'ArQK5rBm', '5261577'), + (84715, 971, 1364, 'not_attending', '2022-05-03 20:57:39', '2025-12-17 19:47:28', 'ArQK5rBm', '5261598'), + (84716, 971, 1365, 'maybe', '2022-05-01 15:21:47', '2025-12-17 19:47:28', 'ArQK5rBm', '5261600'), + (84717, 971, 1366, 'attending', '2022-04-26 18:35:26', '2025-12-17 19:47:27', 'ArQK5rBm', '5262344'), + (84718, 971, 1367, 'attending', '2022-04-29 01:23:30', '2025-12-17 19:47:28', 'ArQK5rBm', '5262345'), + (84719, 971, 1368, 'attending', '2022-05-02 03:27:57', '2025-12-17 19:47:28', 'ArQK5rBm', '5262783'), + (84720, 971, 1369, 'not_attending', '2022-05-07 10:27:33', '2025-12-17 19:47:28', 'ArQK5rBm', '5262809'), + (84721, 971, 1370, 'not_attending', '2022-04-29 16:58:07', '2025-12-17 19:47:28', 'ArQK5rBm', '5263775'), + (84722, 971, 1371, 'attending', '2022-04-27 19:54:27', '2025-12-17 19:47:27', 'ArQK5rBm', '5263784'), + (84723, 971, 1372, 'attending', '2022-05-01 09:09:09', '2025-12-17 19:47:28', 'ArQK5rBm', '5264352'), + (84724, 971, 1374, 'not_attending', '2022-05-07 19:05:28', '2025-12-17 19:47:28', 'ArQK5rBm', '5269930'), + (84725, 971, 1375, 'attending', '2022-04-30 20:04:38', '2025-12-17 19:47:28', 'ArQK5rBm', '5269932'), + (84726, 971, 1376, 'not_attending', '2022-05-12 09:02:00', '2025-12-17 19:47:28', 'ArQK5rBm', '5271446'), + (84727, 971, 1377, 'not_attending', '2022-05-12 09:02:04', '2025-12-17 19:47:28', 'ArQK5rBm', '5271447'), + (84728, 971, 1378, 'not_attending', '2022-05-12 09:02:16', '2025-12-17 19:47:29', 'ArQK5rBm', '5271448'), + (84729, 971, 1379, 'maybe', '2022-05-20 18:00:03', '2025-12-17 19:47:30', 'ArQK5rBm', '5271449'), + (84730, 971, 1380, 'maybe', '2022-05-28 07:24:35', '2025-12-17 19:47:30', 'ArQK5rBm', '5271450'), + (84731, 971, 1381, 'not_attending', '2022-05-02 03:27:55', '2025-12-17 19:47:28', 'ArQK5rBm', '5271453'), + (84732, 971, 1382, 'attending', '2022-05-04 07:25:45', '2025-12-17 19:47:28', 'ArQK5rBm', '5276350'), + (84733, 971, 1383, 'not_attending', '2022-05-12 09:02:07', '2025-12-17 19:47:28', 'ArQK5rBm', '5276469'), + (84734, 971, 1384, 'not_attending', '2022-05-05 10:34:04', '2025-12-17 19:47:28', 'ArQK5rBm', '5277078'), + (84735, 971, 1385, 'attending', '2022-05-08 22:08:12', '2025-12-17 19:47:28', 'ArQK5rBm', '5277822'), + (84736, 971, 1386, 'maybe', '2022-05-05 14:59:08', '2025-12-17 19:47:28', 'ArQK5rBm', '5278159'), + (84737, 971, 1387, 'attending', '2022-05-07 10:27:32', '2025-12-17 19:47:28', 'ArQK5rBm', '5278173'), + (84738, 971, 1388, 'not_attending', '2022-05-05 21:39:09', '2025-12-17 19:47:28', 'ArQK5rBm', '5278201'), + (84739, 971, 1389, 'not_attending', '2022-05-07 18:56:18', '2025-12-17 19:47:28', 'ArQK5rBm', '5278202'), + (84740, 971, 1390, 'not_attending', '2022-05-12 09:02:09', '2025-12-17 19:47:28', 'ArQK5rBm', '5279509'), + (84741, 971, 1391, 'attending', '2022-05-07 18:43:23', '2025-12-17 19:47:28', 'ArQK5rBm', '5279531'), + (84742, 971, 1392, 'not_attending', '2022-05-09 19:51:10', '2025-12-17 19:47:28', 'ArQK5rBm', '5279532'), + (84743, 971, 1394, 'attending', '2022-05-23 06:02:01', '2025-12-17 19:47:30', 'ArQK5rBm', '5280667'), + (84744, 971, 1395, 'not_attending', '2022-05-07 19:05:43', '2025-12-17 19:47:28', 'ArQK5rBm', '5281102'), + (84745, 971, 1396, 'not_attending', '2022-05-12 09:02:12', '2025-12-17 19:47:28', 'ArQK5rBm', '5281103'), + (84746, 971, 1398, 'not_attending', '2022-05-08 22:08:00', '2025-12-17 19:47:28', 'ArQK5rBm', '5281795'), + (84747, 971, 1399, 'not_attending', '2022-05-12 09:02:01', '2025-12-17 19:47:28', 'ArQK5rBm', '5281796'), + (84748, 971, 1400, 'attending', '2022-05-12 09:02:29', '2025-12-17 19:47:29', 'ArQK5rBm', '5284864'), + (84749, 971, 1402, 'not_attending', '2022-05-23 06:00:51', '2025-12-17 19:47:30', 'ArQK5rBm', '5287977'), + (84750, 971, 1405, 'attending', '2022-05-19 20:14:26', '2025-12-17 19:47:29', 'ArQK5rBm', '5288115'), + (84751, 971, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'ArQK5rBm', '5363695'), + (84752, 971, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'ArQK5rBm', '5365960'), + (84753, 971, 1410, 'not_attending', '2022-05-19 19:56:34', '2025-12-17 19:47:29', 'ArQK5rBm', '5367530'), + (84754, 971, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'ArQK5rBm', '5368973'), + (84755, 971, 1416, 'maybe', '2022-05-28 07:24:35', '2025-12-17 19:47:30', 'ArQK5rBm', '5369628'), + (84756, 971, 1417, 'not_attending', '2022-05-23 06:00:40', '2025-12-17 19:47:30', 'ArQK5rBm', '5370465'), + (84757, 971, 1418, 'attending', '2022-05-24 22:00:18', '2025-12-17 19:47:30', 'ArQK5rBm', '5372162'), + (84758, 971, 1422, 'maybe', '2022-05-28 07:25:02', '2025-12-17 19:47:30', 'ArQK5rBm', '5375603'), + (84759, 971, 1423, 'not_attending', '2022-06-14 20:21:45', '2025-12-17 19:47:17', 'ArQK5rBm', '5375727'), + (84760, 971, 1428, 'not_attending', '2022-06-10 17:44:36', '2025-12-17 19:47:30', 'ArQK5rBm', '5378247'), + (84761, 971, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'ArQK5rBm', '5389605'), + (84762, 971, 1432, 'maybe', '2022-06-02 09:09:26', '2025-12-17 19:47:30', 'ArQK5rBm', '5391566'), + (84763, 971, 1433, 'maybe', '2022-06-03 07:53:37', '2025-12-17 19:47:30', 'ArQK5rBm', '5391667'), + (84764, 971, 1442, 'not_attending', '2022-06-18 22:28:28', '2025-12-17 19:47:17', 'ArQK5rBm', '5397265'), + (84765, 971, 1445, 'not_attending', '2022-06-17 22:28:02', '2025-12-17 19:47:17', 'ArQK5rBm', '5397615'), + (84766, 971, 1449, 'attending', '2022-06-14 20:21:22', '2025-12-17 19:47:31', 'ArQK5rBm', '5403335'), + (84767, 971, 1450, 'attending', '2022-06-10 16:31:44', '2025-12-17 19:47:30', 'ArQK5rBm', '5403421'), + (84768, 971, 1451, 'not_attending', '2022-06-17 22:25:52', '2025-12-17 19:47:17', 'ArQK5rBm', '5403967'), + (84769, 971, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'ArQK5rBm', '5404786'), + (84770, 971, 1462, 'not_attending', '2022-06-17 20:28:06', '2025-12-17 19:47:17', 'ArQK5rBm', '5405203'), + (84771, 971, 1463, 'not_attending', '2022-06-14 20:21:24', '2025-12-17 19:47:31', 'ArQK5rBm', '5405208'), + (84772, 971, 1469, 'attending', '2022-06-17 22:28:36', '2025-12-17 19:47:17', 'ArQK5rBm', '5406838'), + (84773, 971, 1470, 'not_attending', '2022-06-18 21:24:43', '2025-12-17 19:47:17', 'ArQK5rBm', '5407053'), + (84774, 971, 1473, 'maybe', '2022-06-14 20:21:19', '2025-12-17 19:47:31', 'ArQK5rBm', '5407267'), + (84775, 971, 1476, 'maybe', '2022-06-17 22:28:20', '2025-12-17 19:47:17', 'ArQK5rBm', '5408130'), + (84776, 971, 1478, 'attending', '2022-06-15 10:11:33', '2025-12-17 19:47:17', 'ArQK5rBm', '5408794'), + (84777, 971, 1479, 'not_attending', '2022-06-17 22:28:04', '2025-12-17 19:47:17', 'ArQK5rBm', '5410322'), + (84778, 971, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'ArQK5rBm', '5411699'), + (84779, 971, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'ArQK5rBm', '5412550'), + (84780, 971, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'ArQK5rBm', '5415046'), + (84781, 971, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'ArQK5rBm', '5422086'), + (84782, 971, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'ArQK5rBm', '5422406'), + (84783, 971, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'ArQK5rBm', '5424565'), + (84784, 971, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'ArQK5rBm', '5426882'), + (84785, 971, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'ArQK5rBm', '5427083'), + (84786, 971, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', 'ArQK5rBm', '5441125'), + (84787, 971, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'ArQK5rBm', '5441126'), + (84788, 971, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'ArQK5rBm', '5441128'), + (84789, 971, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'ArQK5rBm', '5441131'), + (84790, 971, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'ArQK5rBm', '5441132'), + (84791, 971, 1526, 'maybe', '2022-07-18 18:54:04', '2025-12-17 19:47:20', 'ArQK5rBm', '5445059'), + (84792, 971, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'ArQK5rBm', '5446643'), + (84793, 971, 1536, 'maybe', '2022-07-18 18:53:51', '2025-12-17 19:47:20', 'ArQK5rBm', '5449068'), + (84794, 971, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'ArQK5rBm', '5453325'), + (84795, 971, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'ArQK5rBm', '5454516'), + (84796, 971, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'ArQK5rBm', '5454605'), + (84797, 971, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'ArQK5rBm', '5455037'), + (84798, 971, 1558, 'attending', '2022-09-08 15:24:43', '2025-12-17 19:47:10', 'ArQK5rBm', '5458730'), + (84799, 971, 1559, 'attending', '2022-09-08 15:26:45', '2025-12-17 19:47:11', 'ArQK5rBm', '5458731'), + (84800, 971, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'ArQK5rBm', '5461278'), + (84801, 971, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'ArQK5rBm', '5469480'), + (84802, 971, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'ArQK5rBm', '5471073'), + (84803, 971, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'ArQK5rBm', '5474663'), + (84804, 971, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'ArQK5rBm', '5482022'), + (84805, 971, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'ArQK5rBm', '5482793'), + (84806, 971, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'ArQK5rBm', '5488912'), + (84807, 971, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'ArQK5rBm', '5492192'), + (84808, 971, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'ArQK5rBm', '5493139'), + (84809, 971, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'ArQK5rBm', '5493200'), + (84810, 971, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'ArQK5rBm', '5502188'), + (84811, 971, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'ArQK5rBm', '5505059'), + (84812, 971, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'ArQK5rBm', '5509055'), + (84813, 971, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'ArQK5rBm', '5512862'), + (84814, 971, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'ArQK5rBm', '5513985'), + (84815, 971, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'ArQK5rBm', '5519981'), + (84816, 971, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'ArQK5rBm', '5522550'), + (84817, 971, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'ArQK5rBm', '5534683'), + (84818, 971, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'ArQK5rBm', '5537735'), + (84819, 971, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'ArQK5rBm', '5540859'), + (84820, 971, 1643, 'maybe', '2022-09-08 15:26:34', '2025-12-17 19:47:11', 'ArQK5rBm', '5545856'), + (84821, 971, 1644, 'maybe', '2022-09-08 15:26:18', '2025-12-17 19:47:11', 'ArQK5rBm', '5545857'), + (84822, 971, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'ArQK5rBm', '5546619'), + (84823, 971, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'ArQK5rBm', '5555245'), + (84824, 971, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'ArQK5rBm', '5557747'), + (84825, 971, 1662, 'maybe', '2022-09-13 18:39:45', '2025-12-17 19:47:11', 'ArQK5rBm', '5560255'), + (84826, 971, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'ArQK5rBm', '5562906'), + (84827, 971, 1667, 'maybe', '2022-09-21 21:56:44', '2025-12-17 19:47:11', 'ArQK5rBm', '5563221'), + (84828, 971, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'ArQK5rBm', '5600604'), + (84829, 971, 1679, 'not_attending', '2022-09-29 03:11:59', '2025-12-17 19:47:12', 'ArQK5rBm', '5601099'), + (84830, 971, 1680, 'maybe', '2022-09-21 21:57:16', '2025-12-17 19:47:11', 'ArQK5rBm', '5601577'), + (84831, 971, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'ArQK5rBm', '5605544'), + (84832, 971, 1699, 'not_attending', '2022-09-26 12:17:55', '2025-12-17 19:47:12', 'ArQK5rBm', '5606737'), + (84833, 971, 1700, 'attending', '2022-10-01 16:14:36', '2025-12-17 19:47:12', 'ArQK5rBm', '5606814'), + (84834, 971, 1701, 'not_attending', '2022-09-29 03:12:35', '2025-12-17 19:47:11', 'ArQK5rBm', '5607857'), + (84835, 971, 1703, 'maybe', '2022-09-29 03:11:05', '2025-12-17 19:47:12', 'ArQK5rBm', '5609176'), + (84836, 971, 1708, 'attending', '2022-10-04 17:48:59', '2025-12-17 19:47:12', 'ArQK5rBm', '5617648'), + (84837, 971, 1716, 'not_attending', '2022-10-11 21:33:23', '2025-12-17 19:47:12', 'ArQK5rBm', '5622429'), + (84838, 971, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'ArQK5rBm', '5630960'), + (84839, 971, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'ArQK5rBm', '5630961'), + (84840, 971, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'ArQK5rBm', '5630962'), + (84841, 971, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'ArQK5rBm', '5630966'), + (84842, 971, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'ArQK5rBm', '5630967'), + (84843, 971, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'ArQK5rBm', '5630968'), + (84844, 971, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'ArQK5rBm', '5635406'), + (84845, 971, 1738, 'maybe', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'ArQK5rBm', '5638765'), + (84846, 971, 1739, 'attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'ArQK5rBm', '5640097'), + (84847, 971, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'ArQK5rBm', '5640843'), + (84848, 971, 1743, 'maybe', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'ArQK5rBm', '5641521'), + (84849, 971, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'ArQK5rBm', '5642818'), + (84850, 971, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'ArQK5rBm', '5652395'), + (84851, 971, 1757, 'maybe', '2022-10-31 13:27:14', '2025-12-17 19:47:15', 'ArQK5rBm', '5668974'), + (84852, 971, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'ArQK5rBm', '5670445'), + (84853, 971, 1763, 'attending', '2022-11-10 00:42:18', '2025-12-17 19:47:15', 'ArQK5rBm', '5670803'), + (84854, 971, 1764, 'maybe', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'ArQK5rBm', '5671637'), + (84855, 971, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'ArQK5rBm', '5672329'), + (84856, 971, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'ArQK5rBm', '5674057'), + (84857, 971, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'ArQK5rBm', '5674060'), + (84858, 971, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'ArQK5rBm', '5677461'), + (84859, 971, 1773, 'attending', '2022-10-29 16:26:04', '2025-12-17 19:47:14', 'ArQK5rBm', '5677707'), + (84860, 971, 1776, 'not_attending', '2022-11-09 00:06:55', '2025-12-17 19:47:15', 'ArQK5rBm', '5691067'), + (84861, 971, 1780, 'maybe', '2022-11-02 05:35:15', '2025-12-17 19:47:15', 'ArQK5rBm', '5696082'), + (84862, 971, 1781, 'maybe', '2022-11-02 22:22:55', '2025-12-17 19:47:15', 'ArQK5rBm', '5696178'), + (84863, 971, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'ArQK5rBm', '5698046'), + (84864, 971, 1783, 'attending', '2022-11-10 00:41:53', '2025-12-17 19:47:16', 'ArQK5rBm', '5698621'), + (84865, 971, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'ArQK5rBm', '5699760'), + (84866, 971, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'ArQK5rBm', '5741601'), + (84867, 971, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'ArQK5rBm', '5763458'), + (84868, 971, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'ArQK5rBm', '5774172'), + (84869, 971, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'ArQK5rBm', '5818247'), + (84870, 971, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'ArQK5rBm', '5819471'), + (84871, 971, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'ArQK5rBm', '5827739'), + (84872, 971, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'ArQK5rBm', '5844306'), + (84873, 971, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'ArQK5rBm', '5850159'), + (84874, 971, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'ArQK5rBm', '5858999'), + (84875, 971, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'ArQK5rBm', '5871984'), + (84876, 971, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'ArQK5rBm', '5876354'), + (84877, 971, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'ArQK5rBm', '5880939'), + (84878, 971, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'ArQK5rBm', '5887890'), + (84879, 971, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'ArQK5rBm', '5888598'), + (84880, 971, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'ArQK5rBm', '5893260'), + (84881, 971, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArQK5rBm', '6045684'), + (84882, 972, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dODKNwym', '4356801'), + (84883, 972, 974, 'attending', '2021-08-28 22:41:12', '2025-12-17 19:47:42', 'dODKNwym', '4366187'), + (84884, 972, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dODKNwym', '4420735'), + (84885, 972, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dODKNwym', '4420738'), + (84886, 972, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dODKNwym', '4420739'), + (84887, 972, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dODKNwym', '4420741'), + (84888, 972, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dODKNwym', '4420744'), + (84889, 972, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dODKNwym', '4420747'), + (84890, 972, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dODKNwym', '4420748'), + (84891, 972, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dODKNwym', '4420749'), + (84892, 972, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODKNwym', '4461883'), + (84893, 972, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODKNwym', '4508342'), + (84894, 972, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODKNwym', '4568602'), + (84895, 972, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODKNwym', '6045684'), + (84896, 973, 971, 'maybe', '2021-09-08 19:12:56', '2025-12-17 19:47:43', 'dODnKK5m', '4356801'), + (84897, 973, 991, 'maybe', '2021-09-07 20:17:53', '2025-12-17 19:47:43', 'dODnKK5m', '4420738'), + (84898, 973, 992, 'not_attending', '2021-09-08 19:11:11', '2025-12-17 19:47:34', 'dODnKK5m', '4420739'), + (84899, 973, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dODnKK5m', '4420741'), + (84900, 973, 995, 'maybe', '2021-10-04 21:41:58', '2025-12-17 19:47:34', 'dODnKK5m', '4420744'), + (84901, 973, 996, 'maybe', '2021-10-09 16:22:22', '2025-12-17 19:47:35', 'dODnKK5m', '4420747'), + (84902, 973, 1003, 'attending', '2021-09-06 15:44:19', '2025-12-17 19:47:43', 'dODnKK5m', '4438802'), + (84903, 973, 1019, 'maybe', '2021-09-06 15:44:46', '2025-12-17 19:47:43', 'dODnKK5m', '4450515'), + (84904, 973, 1020, 'maybe', '2021-09-06 15:50:31', '2025-12-17 19:47:43', 'dODnKK5m', '4451787'), + (84905, 973, 1021, 'maybe', '2021-09-06 15:46:42', '2025-12-17 19:47:34', 'dODnKK5m', '4451803'), + (84906, 973, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dODnKK5m', '4461883'), + (84907, 973, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dODnKK5m', '4508342'), + (84908, 973, 1072, 'not_attending', '2021-10-06 15:13:38', '2025-12-17 19:47:34', 'dODnKK5m', '4516287'), + (84909, 973, 1074, 'not_attending', '2021-09-29 15:22:49', '2025-12-17 19:47:34', 'dODnKK5m', '4528953'), + (84910, 973, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'dODnKK5m', '4568602'), + (84911, 973, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dODnKK5m', '6045684'), + (84912, 974, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'AX2M2Jvd', '5880943'), + (84913, 974, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'AX2M2Jvd', '5900202'), + (84914, 974, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'AX2M2Jvd', '5900203'), + (84915, 974, 1916, 'not_attending', '2023-03-01 16:36:14', '2025-12-17 19:47:08', 'AX2M2Jvd', '5910526'), + (84916, 974, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'AX2M2Jvd', '5910528'), + (84917, 974, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'AX2M2Jvd', '5962317'), + (84918, 974, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'AX2M2Jvd', '5962318'), + (84919, 974, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'AX2M2Jvd', '5965933'), + (84920, 974, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'AX2M2Jvd', '5967014'), + (84921, 974, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'AX2M2Jvd', '5972815'), + (84922, 974, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'AX2M2Jvd', '5974016'), + (84923, 974, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'AX2M2Jvd', '5981515'), + (84924, 974, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'AX2M2Jvd', '5993516'), + (84925, 974, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'AX2M2Jvd', '5998939'), + (84926, 974, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'AX2M2Jvd', '6028191'), + (84927, 974, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'AX2M2Jvd', '6040066'), + (84928, 974, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'AX2M2Jvd', '6042717'), + (84929, 974, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'AX2M2Jvd', '6044838'), + (84930, 974, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'AX2M2Jvd', '6044839'), + (84931, 974, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AX2M2Jvd', '6045684'), + (84932, 974, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'AX2M2Jvd', '6050104'), + (84933, 974, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'AX2M2Jvd', '6053195'), + (84934, 974, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'AX2M2Jvd', '6053198'), + (84935, 974, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'AX2M2Jvd', '6056085'), + (84936, 974, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'AX2M2Jvd', '6056916'), + (84937, 974, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'AX2M2Jvd', '6059290'), + (84938, 974, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'AX2M2Jvd', '6060328'), + (84939, 974, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'AX2M2Jvd', '6061037'), + (84940, 974, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'AX2M2Jvd', '6068094'), + (84941, 974, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'AX2M2Jvd', '6068252'), + (84942, 974, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'AX2M2Jvd', '6068253'), + (84943, 974, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'AX2M2Jvd', '6068254'), + (84944, 974, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'AX2M2Jvd', '6068280'), + (84945, 974, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'AX2M2Jvd', '6069093'), + (84946, 975, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'd2rggqVd', '8529058'), + (84947, 975, 3278, 'not_attending', '2025-09-30 15:01:05', '2025-12-17 19:46:13', 'd2rggqVd', '8535533'), + (84948, 976, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'AXZ9NBZd', '7074364'), + (84949, 976, 2628, 'attending', '2024-06-01 21:30:04', '2025-12-17 19:46:36', 'AXZ9NBZd', '7264725'), + (84950, 976, 2657, 'attending', '2024-05-29 19:04:14', '2025-12-17 19:46:36', 'AXZ9NBZd', '7294438'), + (84951, 976, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'AXZ9NBZd', '7302674'), + (84952, 976, 2678, 'attending', '2024-06-15 22:44:02', '2025-12-17 19:46:28', 'AXZ9NBZd', '7319489'), + (84953, 976, 2688, 'maybe', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'AXZ9NBZd', '7324073'), + (84954, 976, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'AXZ9NBZd', '7324074'), + (84955, 976, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'AXZ9NBZd', '7324075'), + (84956, 976, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'AXZ9NBZd', '7324078'), + (84957, 976, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'AXZ9NBZd', '7324082'), + (84958, 976, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'AXZ9NBZd', '7331457'), + (84959, 976, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'AXZ9NBZd', '7356752'), + (84960, 976, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'AXZ9NBZd', '7363643'), + (84961, 976, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'AXZ9NBZd', '7368606'), + (84962, 976, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'AXZ9NBZd', '7397462'), + (84963, 976, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'AXZ9NBZd', '7424275'), + (84964, 976, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'AXZ9NBZd', '7424276'), + (84965, 976, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'AXZ9NBZd', '7432751'), + (84966, 976, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'AXZ9NBZd', '7432752'), + (84967, 976, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'AXZ9NBZd', '7432753'), + (84968, 976, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432754'), + (84969, 976, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432755'), + (84970, 976, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432756'), + (84971, 976, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432758'), + (84972, 976, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'AXZ9NBZd', '7432759'), + (84973, 976, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'AXZ9NBZd', '7433834'), + (84974, 976, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'AXZ9NBZd', '7470197'), + (84975, 976, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'AXZ9NBZd', '7685613'), + (84976, 976, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'AXZ9NBZd', '7688194'), + (84977, 976, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'AXZ9NBZd', '7688196'), + (84978, 976, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'AXZ9NBZd', '7688289'), + (84979, 977, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4E2rVMZd', '6044839'), + (84980, 977, 1994, 'not_attending', '2023-04-05 21:32:02', '2025-12-17 19:46:59', '4E2rVMZd', '6050104'), + (84981, 977, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4E2rVMZd', '6053195'), + (84982, 977, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4E2rVMZd', '6053198'), + (84983, 977, 2007, 'attending', '2023-04-06 23:54:47', '2025-12-17 19:46:58', '4E2rVMZd', '6055291'), + (84984, 977, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4E2rVMZd', '6056085'), + (84985, 977, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4E2rVMZd', '6056916'), + (84986, 977, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4E2rVMZd', '6059290'), + (84987, 977, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4E2rVMZd', '6060328'), + (84988, 977, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4E2rVMZd', '6061037'), + (84989, 977, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4E2rVMZd', '6061039'), + (84990, 977, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4E2rVMZd', '6067245'), + (84991, 977, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4E2rVMZd', '6068094'), + (84992, 977, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4E2rVMZd', '6068252'), + (84993, 977, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4E2rVMZd', '6068253'), + (84994, 977, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4E2rVMZd', '6068254'), + (84995, 977, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4E2rVMZd', '6068280'), + (84996, 977, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4E2rVMZd', '6069093'), + (84997, 977, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '4E2rVMZd', '6072528'), + (84998, 977, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4E2rVMZd', '6079840'), + (84999, 977, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4E2rVMZd', '6083398'), + (85000, 977, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', '4E2rVMZd', '6093504'), + (85001, 977, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4E2rVMZd', '6097414'), + (85002, 977, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4E2rVMZd', '6097442'), + (85003, 977, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4E2rVMZd', '6097684'), + (85004, 977, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4E2rVMZd', '6098762'), + (85005, 977, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4E2rVMZd', '6101362'), + (85006, 977, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4E2rVMZd', '6107314'), + (85007, 977, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4E2rVMZd', '6120034'), + (85008, 978, 47, 'maybe', '2020-05-05 18:02:56', '2025-12-17 19:47:57', 'GAneQwbm', '2975272'), + (85009, 978, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', 'GAneQwbm', '2977812'), + (85010, 978, 76, 'attending', '2020-05-02 20:27:37', '2025-12-17 19:47:57', 'GAneQwbm', '2978246'), + (85011, 978, 77, 'not_attending', '2020-05-09 22:28:58', '2025-12-17 19:47:57', 'GAneQwbm', '2978247'), + (85012, 978, 78, 'not_attending', '2020-05-23 22:03:12', '2025-12-17 19:47:57', 'GAneQwbm', '2978249'), + (85013, 978, 79, 'not_attending', '2020-05-24 20:04:27', '2025-12-17 19:47:57', 'GAneQwbm', '2978250'), + (85014, 978, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'GAneQwbm', '2978438'), + (85015, 978, 105, 'maybe', '2020-05-10 15:07:42', '2025-12-17 19:47:57', 'GAneQwbm', '2993500'), + (85016, 978, 106, 'attending', '2020-05-03 14:34:46', '2025-12-17 19:47:57', 'GAneQwbm', '2993501'), + (85017, 978, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', 'GAneQwbm', '2994480'), + (85018, 978, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', 'GAneQwbm', '3023063'), + (85019, 978, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', 'GAneQwbm', '3034321'), + (85020, 978, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'GAneQwbm', '3035881'), + (85021, 978, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', 'GAneQwbm', '3049983'), + (85022, 978, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'GAneQwbm', '3058959'), + (85023, 978, 173, 'not_attending', '2020-06-15 17:49:52', '2025-12-17 19:47:58', 'GAneQwbm', '3067093'), + (85024, 978, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', 'GAneQwbm', '3075228'), + (85025, 978, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', 'GAneQwbm', '3075456'), + (85026, 978, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', 'GAneQwbm', '3083791'), + (85027, 978, 187, 'not_attending', '2020-06-28 19:31:11', '2025-12-17 19:47:55', 'GAneQwbm', '3085151'), + (85028, 978, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', 'GAneQwbm', '3087265'), + (85029, 978, 197, 'not_attending', '2020-08-10 04:05:59', '2025-12-17 19:47:56', 'GAneQwbm', '3087266'), + (85030, 978, 198, 'not_attending', '2020-08-10 04:06:07', '2025-12-17 19:47:56', 'GAneQwbm', '3087267'), + (85031, 978, 199, 'not_attending', '2020-08-10 04:06:19', '2025-12-17 19:47:56', 'GAneQwbm', '3087268'), + (85032, 978, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', 'GAneQwbm', '3088653'), + (85033, 978, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'GAneQwbm', '3106813'), + (85034, 978, 223, 'not_attending', '2020-09-05 04:04:38', '2025-12-17 19:47:56', 'GAneQwbm', '3129980'), + (85035, 978, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', 'GAneQwbm', '3132817'), + (85036, 978, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', 'GAneQwbm', '3132820'), + (85037, 978, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', 'GAneQwbm', '3155321'), + (85038, 978, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'GAneQwbm', '3162006'), + (85039, 978, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', 'GAneQwbm', '3163442'), + (85040, 978, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', 'GAneQwbm', '3172832'), + (85041, 978, 294, 'not_attending', '2020-08-10 03:22:49', '2025-12-17 19:47:56', 'GAneQwbm', '3172833'), + (85042, 978, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'GAneQwbm', '3172834'), + (85043, 978, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'GAneQwbm', '3172876'), + (85044, 978, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'GAneQwbm', '3186057'), + (85045, 978, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'GAneQwbm', '3191735'), + (85046, 978, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'GAneQwbm', '3200209'), + (85047, 978, 362, 'not_attending', '2020-09-26 00:22:25', '2025-12-17 19:47:52', 'GAneQwbm', '3214207'), + (85048, 978, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'GAneQwbm', '3217037'), + (85049, 978, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'GAneQwbm', '3218510'), + (85050, 978, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'GAneQwbm', '3228698'), + (85051, 978, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'GAneQwbm', '3228699'), + (85052, 978, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'GAneQwbm', '3228700'), + (85053, 978, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'GAneQwbm', '3228701'), + (85054, 978, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'GAneQwbm', '3245751'), + (85055, 978, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GAneQwbm', '3250232'), + (85056, 978, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'GAneQwbm', '3256168'), + (85057, 978, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GAneQwbm', '3263578'), + (85058, 978, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GAneQwbm', '3276428'), + (85059, 978, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GAneQwbm', '3281470'), + (85060, 978, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GAneQwbm', '3281829'), + (85061, 978, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'GAneQwbm', '3285413'), + (85062, 978, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'GAneQwbm', '3285414'), + (85063, 978, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GAneQwbm', '3297764'), + (85064, 978, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'GAneQwbm', '3313856'), + (85065, 978, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GAneQwbm', '3314909'), + (85066, 978, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GAneQwbm', '3314964'), + (85067, 978, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'GAneQwbm', '3323365'), + (85068, 978, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GAneQwbm', '3329383'), + (85069, 978, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GAneQwbm', '3351539'), + (85070, 978, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GAneQwbm', '3386848'), + (85071, 978, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GAneQwbm', '3389527'), + (85072, 978, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GAneQwbm', '3396499'), + (85073, 978, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GAneQwbm', '3403650'), + (85074, 978, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GAneQwbm', '3406988'), + (85075, 978, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GAneQwbm', '3416576'), + (85076, 978, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'GAneQwbm', '3430267'), + (85077, 978, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'GAneQwbm', '3470305'), + (85078, 978, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'GAneQwbm', '3470991'), + (85079, 978, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'GAneQwbm', '3517815'), + (85080, 978, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'GAneQwbm', '3517816'), + (85081, 978, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'GAneQwbm', '3523941'), + (85082, 978, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'GAneQwbm', '3533850'), + (85083, 978, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'GAneQwbm', '3536632'), + (85084, 978, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'GAneQwbm', '3536656'), + (85085, 978, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'GAneQwbm', '3539916'), + (85086, 978, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'GAneQwbm', '3539917'), + (85087, 978, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'GAneQwbm', '3539918'), + (85088, 978, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'GAneQwbm', '3539919'), + (85089, 978, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'GAneQwbm', '3539920'), + (85090, 978, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'GAneQwbm', '3539921'), + (85091, 978, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'GAneQwbm', '3539922'), + (85092, 978, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'GAneQwbm', '3539923'), + (85093, 978, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GAneQwbm', '3539927'), + (85094, 978, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GAneQwbm', '3582734'), + (85095, 978, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GAneQwbm', '3583262'), + (85096, 978, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GAneQwbm', '3619523'), + (85097, 978, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GAneQwbm', '3661369'), + (85098, 978, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GAneQwbm', '3674262'), + (85099, 978, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GAneQwbm', '3677402'), + (85100, 978, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GAneQwbm', '3730212'), + (85101, 978, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GAneQwbm', '3793156'), + (85102, 978, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GAneQwbm', '3974109'), + (85103, 978, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GAneQwbm', '3975311'), + (85104, 978, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GAneQwbm', '3975312'), + (85105, 978, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GAneQwbm', '3994992'), + (85106, 978, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GAneQwbm', '4014338'), + (85107, 978, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GAneQwbm', '4021848'), + (85108, 978, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GAneQwbm', '4136744'), + (85109, 978, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GAneQwbm', '4136937'), + (85110, 978, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GAneQwbm', '4136938'), + (85111, 978, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GAneQwbm', '4136947'), + (85112, 978, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GAneQwbm', '4210314'), + (85113, 978, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GAneQwbm', '4225444'), + (85114, 978, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GAneQwbm', '4239259'), + (85115, 978, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GAneQwbm', '4240316'), + (85116, 978, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GAneQwbm', '4240317'), + (85117, 978, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GAneQwbm', '4240318'), + (85118, 978, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GAneQwbm', '4240320'), + (85119, 978, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GAneQwbm', '4250163'), + (85120, 978, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GAneQwbm', '4275957'), + (85121, 978, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GAneQwbm', '4277819'), + (85122, 978, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GAneQwbm', '4301723'), + (85123, 978, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GAneQwbm', '4302093'), + (85124, 978, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GAneQwbm', '4304151'), + (85125, 978, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GAneQwbm', '4356801'), + (85126, 978, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GAneQwbm', '4366186'), + (85127, 978, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GAneQwbm', '4366187'), + (85128, 978, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GAneQwbm', '4420735'), + (85129, 978, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GAneQwbm', '4420738'), + (85130, 978, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GAneQwbm', '4420739'), + (85131, 978, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GAneQwbm', '4420741'), + (85132, 978, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GAneQwbm', '4420744'), + (85133, 978, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GAneQwbm', '4420747'), + (85134, 978, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GAneQwbm', '4420748'), + (85135, 978, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GAneQwbm', '4420749'), + (85136, 978, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GAneQwbm', '4461883'), + (85137, 978, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GAneQwbm', '4508342'), + (85138, 978, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GAneQwbm', '4568602'), + (85139, 978, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GAneQwbm', '4572153'), + (85140, 978, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GAneQwbm', '4585962'), + (85141, 978, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'GAneQwbm', '4596356'), + (85142, 978, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GAneQwbm', '4598860'), + (85143, 978, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'GAneQwbm', '4598861'), + (85144, 978, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GAneQwbm', '4602797'), + (85145, 978, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'GAneQwbm', '4637896'), + (85146, 978, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'GAneQwbm', '4642994'), + (85147, 978, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'GAneQwbm', '4642995'), + (85148, 978, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GAneQwbm', '4642996'), + (85149, 978, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GAneQwbm', '4642997'), + (85150, 978, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'GAneQwbm', '4645687'), + (85151, 978, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GAneQwbm', '4645698'), + (85152, 978, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'GAneQwbm', '4645704'), + (85153, 978, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'GAneQwbm', '4645705'), + (85154, 978, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GAneQwbm', '4668385'), + (85155, 978, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GAneQwbm', '4694407'), + (85156, 978, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GAneQwbm', '4736497'), + (85157, 978, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GAneQwbm', '4736499'), + (85158, 978, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GAneQwbm', '4736500'), + (85159, 978, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GAneQwbm', '4736503'), + (85160, 978, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'GAneQwbm', '4736504'), + (85161, 978, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GAneQwbm', '4746789'), + (85162, 978, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'GAneQwbm', '4753929'), + (85163, 978, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GAneQwbm', '5038850'), + (85164, 978, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GAneQwbm', '5045826'), + (85165, 978, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GAneQwbm', '5132533'), + (85166, 978, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GAneQwbm', '5186582'), + (85167, 978, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GAneQwbm', '5186583'), + (85168, 978, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'GAneQwbm', '5186585'), + (85169, 978, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GAneQwbm', '5190437'), + (85170, 978, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GAneQwbm', '5195095'), + (85171, 978, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GAneQwbm', '5215989'), + (85172, 978, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GAneQwbm', '5223686'), + (85173, 978, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GAneQwbm', '5247467'), + (85174, 978, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'GAneQwbm', '5260800'), + (85175, 978, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GAneQwbm', '5269930'), + (85176, 978, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GAneQwbm', '5271448'), + (85177, 978, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'GAneQwbm', '5271449'), + (85178, 978, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GAneQwbm', '5278159'), + (85179, 978, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'GAneQwbm', '5363695'), + (85180, 978, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GAneQwbm', '5365960'), + (85181, 978, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GAneQwbm', '5378247'), + (85182, 978, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GAneQwbm', '5389605'), + (85183, 978, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GAneQwbm', '5397265'), + (85184, 978, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GAneQwbm', '5404786'), + (85185, 978, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GAneQwbm', '5405203'), + (85186, 978, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GAneQwbm', '5412550'), + (85187, 978, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GAneQwbm', '5415046'), + (85188, 978, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GAneQwbm', '5422086'), + (85189, 978, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GAneQwbm', '5422406'), + (85190, 978, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GAneQwbm', '5424565'), + (85191, 978, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GAneQwbm', '5426882'), + (85192, 978, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GAneQwbm', '5441125'), + (85193, 978, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GAneQwbm', '5441126'), + (85194, 978, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GAneQwbm', '5441128'), + (85195, 978, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GAneQwbm', '5441131'), + (85196, 978, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GAneQwbm', '5441132'), + (85197, 978, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GAneQwbm', '5453325'), + (85198, 978, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GAneQwbm', '5454516'), + (85199, 978, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GAneQwbm', '5454605'), + (85200, 978, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GAneQwbm', '5455037'), + (85201, 978, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GAneQwbm', '5461278'), + (85202, 978, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GAneQwbm', '5469480'), + (85203, 978, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GAneQwbm', '5474663'), + (85204, 978, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GAneQwbm', '5482022'), + (85205, 978, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GAneQwbm', '5488912'), + (85206, 978, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GAneQwbm', '5492192'), + (85207, 978, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GAneQwbm', '5493139'), + (85208, 978, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GAneQwbm', '5493200'), + (85209, 978, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GAneQwbm', '5502188'), + (85210, 978, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GAneQwbm', '5505059'), + (85211, 978, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GAneQwbm', '5509055'), + (85212, 978, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GAneQwbm', '5512862'), + (85213, 978, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GAneQwbm', '5513985'), + (85214, 978, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GAneQwbm', '5519981'), + (85215, 978, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GAneQwbm', '5522550'), + (85216, 978, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GAneQwbm', '5534683'), + (85217, 978, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GAneQwbm', '5537735'), + (85218, 978, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GAneQwbm', '5540859'), + (85219, 978, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GAneQwbm', '5546619'), + (85220, 978, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GAneQwbm', '5557747'), + (85221, 978, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GAneQwbm', '5560255'), + (85222, 978, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GAneQwbm', '5562906'), + (85223, 978, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GAneQwbm', '5600604'), + (85224, 978, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GAneQwbm', '5605544'), + (85225, 978, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GAneQwbm', '5630960'), + (85226, 978, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GAneQwbm', '5630961'), + (85227, 978, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GAneQwbm', '5630962'), + (85228, 978, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GAneQwbm', '5630966'), + (85229, 978, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GAneQwbm', '5630967'), + (85230, 978, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GAneQwbm', '5630968'), + (85231, 978, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GAneQwbm', '5635406'), + (85232, 978, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GAneQwbm', '5638765'), + (85233, 978, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GAneQwbm', '5640097'), + (85234, 978, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GAneQwbm', '5640843'), + (85235, 978, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GAneQwbm', '5641521'), + (85236, 978, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GAneQwbm', '5642818'), + (85237, 978, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GAneQwbm', '5652395'), + (85238, 978, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GAneQwbm', '5670445'), + (85239, 978, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GAneQwbm', '5671637'), + (85240, 978, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GAneQwbm', '5672329'), + (85241, 978, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GAneQwbm', '5674057'), + (85242, 978, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GAneQwbm', '5674060'), + (85243, 978, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GAneQwbm', '5677461'), + (85244, 978, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GAneQwbm', '5698046'), + (85245, 978, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GAneQwbm', '5699760'), + (85246, 978, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GAneQwbm', '5741601'), + (85247, 978, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GAneQwbm', '5763458'), + (85248, 978, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GAneQwbm', '5774172'), + (85249, 978, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GAneQwbm', '5818247'), + (85250, 978, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GAneQwbm', '5819471'), + (85251, 978, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'GAneQwbm', '5827739'), + (85252, 978, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GAneQwbm', '5844306'), + (85253, 978, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GAneQwbm', '5850159'), + (85254, 978, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GAneQwbm', '5858999'), + (85255, 978, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GAneQwbm', '5871984'), + (85256, 978, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GAneQwbm', '5876354'), + (85257, 978, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GAneQwbm', '5880939'), + (85258, 978, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GAneQwbm', '5880940'), + (85259, 978, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GAneQwbm', '5880942'), + (85260, 978, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GAneQwbm', '5880943'), + (85261, 978, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GAneQwbm', '5887890'), + (85262, 978, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GAneQwbm', '5888598'), + (85263, 978, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GAneQwbm', '5893260'), + (85264, 978, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GAneQwbm', '5899826'), + (85265, 978, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GAneQwbm', '5900199'), + (85266, 978, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GAneQwbm', '5900200'), + (85267, 978, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GAneQwbm', '5900202'), + (85268, 978, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GAneQwbm', '5900203'), + (85269, 978, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GAneQwbm', '5901108'), + (85270, 978, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GAneQwbm', '5901126'), + (85271, 978, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'GAneQwbm', '5901606'), + (85272, 978, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GAneQwbm', '5909655'), + (85273, 978, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GAneQwbm', '5910522'), + (85274, 978, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GAneQwbm', '5910526'), + (85275, 978, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GAneQwbm', '5910528'), + (85276, 978, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GAneQwbm', '5916219'), + (85277, 978, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GAneQwbm', '5936234'), + (85278, 978, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GAneQwbm', '5958351'), + (85279, 978, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GAneQwbm', '5959751'), + (85280, 978, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GAneQwbm', '5959755'), + (85281, 978, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GAneQwbm', '5960055'), + (85282, 978, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GAneQwbm', '5961684'), + (85283, 978, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GAneQwbm', '5962132'), + (85284, 978, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GAneQwbm', '5962133'), + (85285, 978, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GAneQwbm', '5962134'), + (85286, 978, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GAneQwbm', '5962317'), + (85287, 978, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GAneQwbm', '5962318'), + (85288, 978, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GAneQwbm', '5965933'), + (85289, 978, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GAneQwbm', '5967014'), + (85290, 978, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GAneQwbm', '5972815'), + (85291, 978, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GAneQwbm', '5974016'), + (85292, 978, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GAneQwbm', '5981515'), + (85293, 978, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GAneQwbm', '5993516'), + (85294, 978, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GAneQwbm', '5998939'), + (85295, 978, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GAneQwbm', '6028191'), + (85296, 978, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GAneQwbm', '6040066'), + (85297, 978, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GAneQwbm', '6042717'), + (85298, 978, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GAneQwbm', '6044838'), + (85299, 978, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GAneQwbm', '6044839'), + (85300, 978, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GAneQwbm', '6045684'), + (85301, 978, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GAneQwbm', '6050104'), + (85302, 978, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GAneQwbm', '6053195'), + (85303, 978, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GAneQwbm', '6053198'), + (85304, 978, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GAneQwbm', '6056085'), + (85305, 978, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GAneQwbm', '6056916'), + (85306, 978, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GAneQwbm', '6059290'), + (85307, 978, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GAneQwbm', '6060328'), + (85308, 978, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GAneQwbm', '6061037'), + (85309, 978, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GAneQwbm', '6061039'), + (85310, 978, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GAneQwbm', '6067245'), + (85311, 978, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GAneQwbm', '6068094'), + (85312, 978, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GAneQwbm', '6068252'), + (85313, 978, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GAneQwbm', '6068253'), + (85314, 978, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GAneQwbm', '6068254'), + (85315, 978, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'GAneQwbm', '6068280'), + (85316, 978, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GAneQwbm', '6069093'), + (85317, 978, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GAneQwbm', '6072528'), + (85318, 978, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GAneQwbm', '6079840'), + (85319, 978, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GAneQwbm', '6083398'), + (85320, 978, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GAneQwbm', '6093504'), + (85321, 978, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GAneQwbm', '6097414'), + (85322, 978, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GAneQwbm', '6097442'), + (85323, 978, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GAneQwbm', '6097684'), + (85324, 978, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GAneQwbm', '6098762'), + (85325, 978, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GAneQwbm', '6101361'), + (85326, 978, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GAneQwbm', '6101362'), + (85327, 978, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GAneQwbm', '6107314'), + (85328, 978, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GAneQwbm', '6120034'), + (85329, 978, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GAneQwbm', '6136733'), + (85330, 978, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GAneQwbm', '6137989'), + (85331, 978, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GAneQwbm', '6150864'), + (85332, 978, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GAneQwbm', '6155491'), + (85333, 978, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GAneQwbm', '6164417'), + (85334, 978, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GAneQwbm', '6166388'), + (85335, 978, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GAneQwbm', '6176439'), + (85336, 978, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GAneQwbm', '6182410'), + (85337, 978, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GAneQwbm', '6185812'), + (85338, 978, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GAneQwbm', '6187651'), + (85339, 978, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GAneQwbm', '6187963'), + (85340, 978, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GAneQwbm', '6187964'), + (85341, 978, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GAneQwbm', '6187966'), + (85342, 978, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GAneQwbm', '6187967'), + (85343, 978, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GAneQwbm', '6187969'), + (85344, 978, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GAneQwbm', '6334878'), + (85345, 978, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GAneQwbm', '6337236'), + (85346, 978, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GAneQwbm', '6337970'), + (85347, 978, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GAneQwbm', '6338308'), + (85348, 978, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GAneQwbm', '6341710'), + (85349, 978, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GAneQwbm', '6342044'), + (85350, 978, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GAneQwbm', '6342298'), + (85351, 978, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GAneQwbm', '6343294'), + (85352, 978, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GAneQwbm', '6347034'), + (85353, 978, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GAneQwbm', '6347056'), + (85354, 978, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GAneQwbm', '6353830'), + (85355, 978, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GAneQwbm', '6353831'), + (85356, 978, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GAneQwbm', '6357867'), + (85357, 978, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GAneQwbm', '6358652'), + (85358, 978, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GAneQwbm', '6361709'), + (85359, 978, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GAneQwbm', '6361710'), + (85360, 978, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GAneQwbm', '6361711'), + (85361, 978, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GAneQwbm', '6361712'), + (85362, 978, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GAneQwbm', '6361713'), + (85363, 978, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'GAneQwbm', '6382573'), + (85364, 978, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GAneQwbm', '6388604'), + (85365, 978, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GAneQwbm', '6394629'), + (85366, 978, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GAneQwbm', '6394631'), + (85367, 978, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GAneQwbm', '6440863'), + (85368, 978, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GAneQwbm', '6445440'), + (85369, 978, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GAneQwbm', '6453951'), + (85370, 978, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GAneQwbm', '6461696'), + (85371, 978, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GAneQwbm', '6462129'), + (85372, 978, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GAneQwbm', '6463218'), + (85373, 978, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GAneQwbm', '6472181'), + (85374, 978, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GAneQwbm', '6482693'), + (85375, 978, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GAneQwbm', '6484200'), + (85376, 978, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GAneQwbm', '6484680'), + (85377, 978, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GAneQwbm', '6507741'), + (85378, 978, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GAneQwbm', '6514659'), + (85379, 978, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GAneQwbm', '6514660'), + (85380, 978, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GAneQwbm', '6519103'), + (85381, 978, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GAneQwbm', '6535681'), + (85382, 978, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GAneQwbm', '6584747'), + (85383, 978, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GAneQwbm', '6587097'), + (85384, 978, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GAneQwbm', '6609022'), + (85385, 978, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'GAneQwbm', '6632757'), + (85386, 978, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GAneQwbm', '6644187'), + (85387, 978, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GAneQwbm', '6648951'), + (85388, 978, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GAneQwbm', '6648952'), + (85389, 978, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GAneQwbm', '6655401'), + (85390, 978, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GAneQwbm', '6661585'), + (85391, 978, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GAneQwbm', '6661588'), + (85392, 978, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GAneQwbm', '6661589'), + (85393, 978, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GAneQwbm', '6699906'), + (85394, 978, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GAneQwbm', '6699913'), + (85395, 978, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GAneQwbm', '6701109'), + (85396, 978, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GAneQwbm', '6705219'), + (85397, 978, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GAneQwbm', '6710153'), + (85398, 978, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GAneQwbm', '6711552'), + (85399, 978, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GAneQwbm', '6711553'), + (85400, 978, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GAneQwbm', '6722688'), + (85401, 978, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GAneQwbm', '6730620'), + (85402, 978, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GAneQwbm', '6740364'), + (85403, 978, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GAneQwbm', '6743829'), + (85404, 978, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GAneQwbm', '7030380'), + (85405, 978, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'GAneQwbm', '7033677'), + (85406, 978, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GAneQwbm', '7044715'), + (85407, 978, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GAneQwbm', '7050318'), + (85408, 978, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GAneQwbm', '7050319'), + (85409, 978, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GAneQwbm', '7050322'), + (85410, 978, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GAneQwbm', '7057804'), + (85411, 978, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GAneQwbm', '7072824'), + (85412, 978, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GAneQwbm', '7074348'), + (85413, 978, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAneQwbm', '7074364'), + (85414, 978, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GAneQwbm', '7089267'), + (85415, 978, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GAneQwbm', '7098747'), + (85416, 978, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GAneQwbm', '7113468'), + (85417, 978, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GAneQwbm', '7114856'), + (85418, 978, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GAneQwbm', '7114951'), + (85419, 978, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GAneQwbm', '7114955'), + (85420, 978, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GAneQwbm', '7114956'), + (85421, 978, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GAneQwbm', '7114957'), + (85422, 978, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GAneQwbm', '7159484'), + (85423, 978, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GAneQwbm', '7178446'), + (85424, 978, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GAneQwbm', '7220467'), + (85425, 978, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GAneQwbm', '7240354'), + (85426, 978, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GAneQwbm', '7251633'), + (85427, 978, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GAneQwbm', '7324073'), + (85428, 978, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAneQwbm', '7324074'), + (85429, 978, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAneQwbm', '7324075'), + (85430, 978, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GAneQwbm', '7324078'), + (85431, 978, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GAneQwbm', '7324082'), + (85432, 978, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GAneQwbm', '7331457'), + (85433, 978, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GAneQwbm', '7363643'), + (85434, 978, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAneQwbm', '7368606'), + (85435, 978, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GAneQwbm', '7397462'), + (85436, 978, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GAneQwbm', '7424275'), + (85437, 978, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAneQwbm', '7432751'), + (85438, 978, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAneQwbm', '7432752'), + (85439, 978, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAneQwbm', '7432753'), + (85440, 978, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAneQwbm', '7432754'), + (85441, 978, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAneQwbm', '7432755'), + (85442, 978, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAneQwbm', '7432756'), + (85443, 978, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAneQwbm', '7432758'), + (85444, 978, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAneQwbm', '7432759'), + (85445, 978, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAneQwbm', '7433834'), + (85446, 978, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'GAneQwbm', '7470197'), + (85447, 978, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GAneQwbm', '7685613'), + (85448, 978, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAneQwbm', '7688194'), + (85449, 978, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAneQwbm', '7688196'), + (85450, 978, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAneQwbm', '7688289'), + (85451, 978, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAneQwbm', '7692763'), + (85452, 978, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAneQwbm', '7697552'), + (85453, 978, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAneQwbm', '7699878'), + (85454, 978, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GAneQwbm', '7704043'), + (85455, 978, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GAneQwbm', '7712467'), + (85456, 978, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GAneQwbm', '7713585'), + (85457, 978, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAneQwbm', '7713586'), + (85458, 978, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAneQwbm', '7738518'), + (85459, 978, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAneQwbm', '7750636'), + (85460, 978, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAneQwbm', '7796540'), + (85461, 978, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAneQwbm', '7796541'), + (85462, 978, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAneQwbm', '7796542'), + (85463, 978, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAneQwbm', '7825913'), + (85464, 978, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GAneQwbm', '7826209'), + (85465, 978, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAneQwbm', '7834742'), + (85466, 978, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GAneQwbm', '7842108'), + (85467, 978, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAneQwbm', '7842902'), + (85468, 978, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAneQwbm', '7842903'), + (85469, 978, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAneQwbm', '7842904'), + (85470, 978, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAneQwbm', '7842905'), + (85471, 978, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAneQwbm', '7855719'), + (85472, 978, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAneQwbm', '7860683'), + (85473, 978, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAneQwbm', '7860684'), + (85474, 978, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAneQwbm', '7866095'), + (85475, 978, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GAneQwbm', '7869170'), + (85476, 978, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GAneQwbm', '7869188'), + (85477, 978, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAneQwbm', '7869201'), + (85478, 978, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAneQwbm', '7877465'), + (85479, 978, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAneQwbm', '7888250'), + (85480, 978, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GAneQwbm', '7904777'), + (85481, 978, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAneQwbm', '8349164'), + (85482, 978, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAneQwbm', '8349545'), + (85483, 978, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GAneQwbm', '8368028'), + (85484, 978, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GAneQwbm', '8368029'), + (85485, 978, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAneQwbm', '8388462'), + (85486, 978, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GAneQwbm', '8400273'), + (85487, 978, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GAneQwbm', '8400275'), + (85488, 978, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'GAneQwbm', '8400276'), + (85489, 978, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GAneQwbm', '8404977'), + (85490, 978, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GAneQwbm', '8430783'), + (85491, 978, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GAneQwbm', '8430784'), + (85492, 978, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GAneQwbm', '8430799'), + (85493, 978, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GAneQwbm', '8430800'), + (85494, 978, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GAneQwbm', '8430801'), + (85495, 978, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GAneQwbm', '8438709'), + (85496, 978, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAneQwbm', '8457738'), + (85497, 978, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GAneQwbm', '8459566'), + (85498, 978, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GAneQwbm', '8459567'), + (85499, 978, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GAneQwbm', '8461032'), + (85500, 978, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAneQwbm', '8477877'), + (85501, 978, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAneQwbm', '8485688'), + (85502, 978, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAneQwbm', '8490587'), + (85503, 978, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAneQwbm', '8493552'), + (85504, 978, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAneQwbm', '8493553'), + (85505, 978, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAneQwbm', '8493554'), + (85506, 978, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAneQwbm', '8493555'), + (85507, 978, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAneQwbm', '8493556'), + (85508, 978, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAneQwbm', '8493557'), + (85509, 978, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAneQwbm', '8493558'), + (85510, 978, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAneQwbm', '8493559'), + (85511, 978, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAneQwbm', '8493560'), + (85512, 978, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GAneQwbm', '8493561'), + (85513, 978, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAneQwbm', '8493572'), + (85514, 978, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAneQwbm', '8540725'), + (85515, 978, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAneQwbm', '8555421'), + (85516, 979, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', '4oMXO5Ym', '4420747'), + (85517, 979, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4oMXO5Ym', '4568602'), + (85518, 979, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4oMXO5Ym', '4572153'), + (85519, 979, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMXO5Ym', '4585962'), + (85520, 979, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4oMXO5Ym', '4596356'), + (85521, 979, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4oMXO5Ym', '4598860'), + (85522, 979, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4oMXO5Ym', '4598861'), + (85523, 979, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4oMXO5Ym', '4602797'), + (85524, 979, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4oMXO5Ym', '4637896'), + (85525, 979, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4oMXO5Ym', '4642994'), + (85526, 979, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4oMXO5Ym', '4642995'), + (85527, 979, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4oMXO5Ym', '4642996'), + (85528, 979, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4oMXO5Ym', '4642997'), + (85529, 979, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4oMXO5Ym', '4645687'), + (85530, 979, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4oMXO5Ym', '4645698'), + (85531, 979, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4oMXO5Ym', '4645704'), + (85532, 979, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4oMXO5Ym', '4645705'), + (85533, 979, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4oMXO5Ym', '4668385'), + (85534, 979, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMXO5Ym', '6045684'), + (85535, 980, 872, 'not_attending', '2021-07-20 02:29:51', '2025-12-17 19:47:40', 'mLzGroL4', '4136947'), + (85536, 980, 884, 'attending', '2021-08-15 19:22:08', '2025-12-17 19:47:42', 'mLzGroL4', '4210314'), + (85537, 980, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'mLzGroL4', '4229420'), + (85538, 980, 894, 'maybe', '2021-07-19 20:23:44', '2025-12-17 19:47:39', 'mLzGroL4', '4229423'), + (85539, 980, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'mLzGroL4', '4240316'), + (85540, 980, 901, 'attending', '2021-07-28 16:28:57', '2025-12-17 19:47:40', 'mLzGroL4', '4240317'), + (85541, 980, 902, 'attending', '2021-08-07 19:54:13', '2025-12-17 19:47:41', 'mLzGroL4', '4240318'), + (85542, 980, 903, 'attending', '2021-08-14 22:23:12', '2025-12-17 19:47:42', 'mLzGroL4', '4240320'), + (85543, 980, 916, 'attending', '2021-07-22 23:22:50', '2025-12-17 19:47:40', 'mLzGroL4', '4273772'), + (85544, 980, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'mLzGroL4', '4277819'), + (85545, 980, 923, 'attending', '2021-07-22 19:58:27', '2025-12-17 19:47:40', 'mLzGroL4', '4292773'), + (85546, 980, 933, 'maybe', '2021-07-30 06:26:27', '2025-12-17 19:47:40', 'mLzGroL4', '4301723'), + (85547, 980, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'mLzGroL4', '4302093'), + (85548, 980, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'mLzGroL4', '4304151'), + (85549, 980, 946, 'attending', '2021-08-02 21:46:38', '2025-12-17 19:47:40', 'mLzGroL4', '4314835'), + (85550, 980, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'mLzGroL4', '4345519'), + (85551, 980, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'mLzGroL4', '4356801'), + (85552, 980, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'mLzGroL4', '4358025'), + (85553, 980, 973, 'maybe', '2021-08-21 21:00:28', '2025-12-17 19:47:42', 'mLzGroL4', '4366186'), + (85554, 980, 974, 'attending', '2021-08-28 19:46:29', '2025-12-17 19:47:42', 'mLzGroL4', '4366187'), + (85555, 980, 988, 'not_attending', '2021-08-28 19:40:56', '2025-12-17 19:47:42', 'mLzGroL4', '4402823'), + (85556, 980, 990, 'not_attending', '2021-09-04 19:07:02', '2025-12-17 19:47:43', 'mLzGroL4', '4420735'), + (85557, 980, 991, 'attending', '2021-09-11 20:09:40', '2025-12-17 19:47:43', 'mLzGroL4', '4420738'), + (85558, 980, 992, 'attending', '2021-09-18 05:00:55', '2025-12-17 19:47:33', 'mLzGroL4', '4420739'), + (85559, 980, 993, 'not_attending', '2021-09-26 04:26:27', '2025-12-17 19:47:34', 'mLzGroL4', '4420741'), + (85560, 980, 995, 'maybe', '2021-09-01 05:45:07', '2025-12-17 19:47:34', 'mLzGroL4', '4420744'), + (85561, 980, 996, 'maybe', '2021-09-01 05:45:09', '2025-12-17 19:47:35', 'mLzGroL4', '4420747'), + (85562, 980, 997, 'maybe', '2021-09-01 05:45:12', '2025-12-17 19:47:35', 'mLzGroL4', '4420748'), + (85563, 980, 998, 'maybe', '2021-09-01 05:45:16', '2025-12-17 19:47:36', 'mLzGroL4', '4420749'), + (85564, 980, 1023, 'maybe', '2021-09-11 20:09:07', '2025-12-17 19:47:43', 'mLzGroL4', '4461883'), + (85565, 980, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'mLzGroL4', '4508342'), + (85566, 980, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mLzGroL4', '4568602'), + (85567, 980, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mLzGroL4', '6045684'), + (85568, 981, 1181, 'attending', '2022-02-28 23:33:34', '2025-12-17 19:47:33', 'mGMb37P4', '4736503'), + (85569, 981, 1239, 'attending', '2022-02-28 23:32:46', '2025-12-17 19:47:33', 'mGMb37P4', '5052238'), + (85570, 981, 1240, 'attending', '2022-03-01 19:21:18', '2025-12-17 19:47:33', 'mGMb37P4', '5052239'), + (85571, 981, 1241, 'attending', '2022-03-01 19:21:19', '2025-12-17 19:47:25', 'mGMb37P4', '5052240'), + (85572, 981, 1242, 'attending', '2022-03-01 19:21:21', '2025-12-17 19:47:25', 'mGMb37P4', '5052241'), + (85573, 981, 1249, 'attending', '2022-03-01 19:21:16', '2025-12-17 19:47:33', 'mGMb37P4', '5068530'), + (85574, 981, 1250, 'not_attending', '2022-03-04 23:07:40', '2025-12-17 19:47:33', 'mGMb37P4', '5069735'), + (85575, 981, 1251, 'attending', '2022-02-27 21:01:02', '2025-12-17 19:47:33', 'mGMb37P4', '5128466'), + (85576, 981, 1252, 'not_attending', '2022-03-05 00:57:36', '2025-12-17 19:47:33', 'mGMb37P4', '5129121'), + (85577, 981, 1253, 'attending', '2022-03-01 19:21:30', '2025-12-17 19:47:33', 'mGMb37P4', '5129122'), + (85578, 981, 1257, 'attending', '2022-02-28 02:22:11', '2025-12-17 19:47:33', 'mGMb37P4', '5129274'), + (85579, 981, 1258, 'attending', '2022-02-28 23:33:03', '2025-12-17 19:47:33', 'mGMb37P4', '5132531'), + (85580, 981, 1259, 'attending', '2022-02-28 23:32:17', '2025-12-17 19:47:33', 'mGMb37P4', '5132533'), + (85581, 981, 1260, 'not_attending', '2022-03-01 23:33:40', '2025-12-17 19:47:33', 'mGMb37P4', '5142082'), + (85582, 981, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mGMb37P4', '6045684'), + (85583, 982, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4PNaOJZm', '5260800'), + (85584, 982, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4PNaOJZm', '5269930'), + (85585, 982, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4PNaOJZm', '5271448'), + (85586, 982, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4PNaOJZm', '5271449'), + (85587, 982, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4PNaOJZm', '5276469'), + (85588, 982, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4PNaOJZm', '5278159'), + (85589, 982, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4PNaOJZm', '5363695'), + (85590, 982, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4PNaOJZm', '5365960'), + (85591, 982, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4PNaOJZm', '5368973'), + (85592, 982, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4PNaOJZm', '5378247'), + (85593, 982, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4PNaOJZm', '5389605'), + (85594, 982, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4PNaOJZm', '5397265'), + (85595, 982, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNaOJZm', '6045684'), + (85596, 983, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdKXPlam', '3470305'), + (85597, 983, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'kdKXPlam', '3470991'), + (85598, 983, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdKXPlam', '3517815'), + (85599, 983, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKXPlam', '3523941'), + (85600, 983, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKXPlam', '3533850'), + (85601, 983, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKXPlam', '3536632'), + (85602, 983, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKXPlam', '3536656'), + (85603, 983, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdKXPlam', '3539916'), + (85604, 983, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdKXPlam', '3539917'), + (85605, 983, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKXPlam', '3539918'), + (85606, 983, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKXPlam', '3539919'), + (85607, 983, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKXPlam', '3539920'), + (85608, 983, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKXPlam', '3539921'), + (85609, 983, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKXPlam', '3539922'), + (85610, 983, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKXPlam', '3539923'), + (85611, 983, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKXPlam', '6045684'), + (85612, 984, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAgLn6V4', '6045684'), + (85613, 985, 3210, 'attending', '2025-08-25 23:48:29', '2025-12-17 19:46:18', 'ndloDNY4', '8471162'), + (85614, 985, 3256, 'attending', '2025-08-28 21:15:17', '2025-12-17 19:46:11', 'ndloDNY4', '8501354'), + (85615, 985, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', 'ndloDNY4', '8540725'), + (85616, 985, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'ndloDNY4', '8555421'), + (85617, 986, 1442, 'not_attending', '2022-06-18 02:29:06', '2025-12-17 19:47:17', 'm6ok8yzA', '5397265'), + (85618, 986, 1451, 'not_attending', '2022-06-15 23:14:01', '2025-12-17 19:47:17', 'm6ok8yzA', '5403967'), + (85619, 986, 1466, 'attending', '2022-06-16 17:49:52', '2025-12-17 19:47:17', 'm6ok8yzA', '5406427'), + (85620, 986, 1469, 'attending', '2022-06-16 17:53:13', '2025-12-17 19:47:17', 'm6ok8yzA', '5406838'), + (85621, 986, 1472, 'attending', '2022-06-16 17:53:05', '2025-12-17 19:47:17', 'm6ok8yzA', '5407065'), + (85622, 986, 1474, 'attending', '2022-06-16 17:53:43', '2025-12-17 19:47:19', 'm6ok8yzA', '5408029'), + (85623, 986, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'm6ok8yzA', '5411699'), + (85624, 986, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'm6ok8yzA', '5412550'), + (85625, 986, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6ok8yzA', '5415046'), + (85626, 986, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6ok8yzA', '5422086'), + (85627, 986, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6ok8yzA', '5422406'), + (85628, 986, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6ok8yzA', '5424565'), + (85629, 986, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6ok8yzA', '5426882'), + (85630, 986, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'm6ok8yzA', '5427083'), + (85631, 986, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'm6ok8yzA', '5441125'), + (85632, 986, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6ok8yzA', '5441126'), + (85633, 986, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'm6ok8yzA', '5441128'), + (85634, 986, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6ok8yzA', '5441131'), + (85635, 986, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'm6ok8yzA', '5441132'), + (85636, 986, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'm6ok8yzA', '5446643'), + (85637, 986, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6ok8yzA', '5453325'), + (85638, 986, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6ok8yzA', '5454516'), + (85639, 986, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6ok8yzA', '5454605'), + (85640, 986, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6ok8yzA', '5455037'), + (85641, 986, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6ok8yzA', '5461278'), + (85642, 986, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6ok8yzA', '5469480'), + (85643, 986, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'm6ok8yzA', '5471073'), + (85644, 986, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'm6ok8yzA', '5474663'), + (85645, 986, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6ok8yzA', '5482022'), + (85646, 986, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'm6ok8yzA', '5482793'), + (85647, 986, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6ok8yzA', '5488912'), + (85648, 986, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6ok8yzA', '5492192'), + (85649, 986, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6ok8yzA', '5493139'), + (85650, 986, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6ok8yzA', '5493200'), + (85651, 986, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6ok8yzA', '5502188'), + (85652, 986, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6ok8yzA', '5505059'), + (85653, 986, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6ok8yzA', '5509055'), + (85654, 986, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6ok8yzA', '5512862'), + (85655, 986, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6ok8yzA', '5513985'), + (85656, 986, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'm6ok8yzA', '5519981'), + (85657, 986, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6ok8yzA', '5522550'), + (85658, 986, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6ok8yzA', '5534683'), + (85659, 986, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6ok8yzA', '5546619'), + (85660, 986, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'm6ok8yzA', '5555245'), + (85661, 986, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6ok8yzA', '5557747'), + (85662, 986, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm6ok8yzA', '6045684'), + (85663, 987, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'bdz21yad', '3149489'), + (85664, 987, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'bdz21yad', '3149491'), + (85665, 987, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'bdz21yad', '3236450'), + (85666, 987, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'bdz21yad', '3236452'), + (85667, 987, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'bdz21yad', '3539921'), + (85668, 987, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'bdz21yad', '3539922'), + (85669, 987, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'bdz21yad', '3539923'), + (85670, 987, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'bdz21yad', '3806392'), + (85671, 987, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'bdz21yad', '3963335'), + (85672, 987, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'bdz21yad', '3975311'), + (85673, 987, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'bdz21yad', '3975312'), + (85674, 987, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'bdz21yad', '3994992'), + (85675, 987, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'bdz21yad', '4014338'), + (85676, 987, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'bdz21yad', '4136744'), + (85677, 987, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz21yad', '6045684'), + (85678, 988, 1471, 'maybe', '2022-06-21 20:54:21', '2025-12-17 19:47:17', 'mbZvVkRm', '5407063'), + (85679, 988, 1480, 'attending', '2022-06-26 22:37:43', '2025-12-17 19:47:19', 'mbZvVkRm', '5411699'), + (85680, 988, 1482, 'attending', '2022-06-25 16:58:07', '2025-12-17 19:47:19', 'mbZvVkRm', '5412550'), + (85681, 988, 1484, 'maybe', '2022-06-22 08:12:02', '2025-12-17 19:47:17', 'mbZvVkRm', '5415046'), + (85682, 988, 1485, 'not_attending', '2022-06-21 20:52:32', '2025-12-17 19:47:17', 'mbZvVkRm', '5416276'), + (85683, 988, 1487, 'attending', '2022-06-27 22:40:29', '2025-12-17 19:47:19', 'mbZvVkRm', '5419006'), + (85684, 988, 1488, 'attending', '2022-07-05 22:51:36', '2025-12-17 19:47:19', 'mbZvVkRm', '5420154'), + (85685, 988, 1490, 'attending', '2022-07-07 21:50:55', '2025-12-17 19:47:19', 'mbZvVkRm', '5420156'), + (85686, 988, 1492, 'attending', '2022-07-07 23:59:35', '2025-12-17 19:47:19', 'mbZvVkRm', '5420175'), + (85687, 988, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'mbZvVkRm', '5422086'), + (85688, 988, 1497, 'attending', '2022-06-30 12:44:37', '2025-12-17 19:47:19', 'mbZvVkRm', '5422405'), + (85689, 988, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'mbZvVkRm', '5422406'), + (85690, 988, 1500, 'maybe', '2022-07-07 16:14:34', '2025-12-17 19:47:19', 'mbZvVkRm', '5423915'), + (85691, 988, 1502, 'attending', '2022-07-08 21:54:49', '2025-12-17 19:47:19', 'mbZvVkRm', '5424565'), + (85692, 988, 1504, 'not_attending', '2022-07-14 12:54:40', '2025-12-17 19:47:19', 'mbZvVkRm', '5426882'), + (85693, 988, 1505, 'attending', '2022-07-04 21:13:38', '2025-12-17 19:47:19', 'mbZvVkRm', '5427083'), + (85694, 988, 1508, 'maybe', '2022-07-13 12:57:30', '2025-12-17 19:47:19', 'mbZvVkRm', '5433453'), + (85695, 988, 1509, 'attending', '2022-07-06 22:47:39', '2025-12-17 19:47:19', 'mbZvVkRm', '5434019'), + (85696, 988, 1513, 'maybe', '2022-07-09 06:46:30', '2025-12-17 19:47:20', 'mbZvVkRm', '5441125'), + (85697, 988, 1514, 'attending', '2022-07-21 18:20:17', '2025-12-17 19:47:20', 'mbZvVkRm', '5441126'), + (85698, 988, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'mbZvVkRm', '5441128'), + (85699, 988, 1516, 'maybe', '2022-08-20 20:54:30', '2025-12-17 19:47:23', 'mbZvVkRm', '5441129'), + (85700, 988, 1517, 'attending', '2022-08-27 10:27:30', '2025-12-17 19:47:23', 'mbZvVkRm', '5441130'), + (85701, 988, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'mbZvVkRm', '5441131'), + (85702, 988, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'mbZvVkRm', '5441132'), + (85703, 988, 1522, 'maybe', '2022-07-19 21:27:26', '2025-12-17 19:47:20', 'mbZvVkRm', '5442832'), + (85704, 988, 1523, 'attending', '2022-07-11 06:43:00', '2025-12-17 19:47:19', 'mbZvVkRm', '5442868'), + (85705, 988, 1527, 'not_attending', '2022-07-13 15:29:00', '2025-12-17 19:47:20', 'mbZvVkRm', '5446425'), + (85706, 988, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'mbZvVkRm', '5446643'), + (85707, 988, 1530, 'not_attending', '2022-07-17 01:28:02', '2025-12-17 19:47:20', 'mbZvVkRm', '5448612'), + (85708, 988, 1535, 'maybe', '2022-07-19 21:27:19', '2025-12-17 19:47:20', 'mbZvVkRm', '5448830'), + (85709, 988, 1540, 'attending', '2022-07-18 17:38:47', '2025-12-17 19:47:20', 'mbZvVkRm', '5453325'), + (85710, 988, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'mbZvVkRm', '5454516'), + (85711, 988, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'mbZvVkRm', '5454605'), + (85712, 988, 1551, 'attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'mbZvVkRm', '5455037'), + (85713, 988, 1553, 'attending', '2022-07-21 01:58:15', '2025-12-17 19:47:20', 'mbZvVkRm', '5455164'), + (85714, 988, 1556, 'attending', '2022-07-22 01:46:44', '2025-12-17 19:47:20', 'mbZvVkRm', '5457734'), + (85715, 988, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'mbZvVkRm', '5461278'), + (85716, 988, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'mbZvVkRm', '5469480'), + (85717, 988, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'mbZvVkRm', '5471073'), + (85718, 988, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'mbZvVkRm', '5474663'), + (85719, 988, 1569, 'maybe', '2022-08-05 02:34:11', '2025-12-17 19:47:21', 'mbZvVkRm', '5481507'), + (85720, 988, 1571, 'maybe', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'mbZvVkRm', '5482022'), + (85721, 988, 1575, 'attending', '2022-08-26 06:02:38', '2025-12-17 19:47:23', 'mbZvVkRm', '5482250'), + (85722, 988, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'mbZvVkRm', '5482793'), + (85723, 988, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'mbZvVkRm', '5488912'), + (85724, 988, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'mbZvVkRm', '5492192'), + (85725, 988, 1588, 'maybe', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'mbZvVkRm', '5493139'), + (85726, 988, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'mbZvVkRm', '5493200'), + (85727, 988, 1601, 'maybe', '2022-08-16 18:06:41', '2025-12-17 19:47:22', 'mbZvVkRm', '5496589'), + (85728, 988, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'mbZvVkRm', '5502188'), + (85729, 988, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'mbZvVkRm', '5505059'), + (85730, 988, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'mbZvVkRm', '5509055'), + (85731, 988, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'mbZvVkRm', '5512862'), + (85732, 988, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'mbZvVkRm', '5513985'), + (85733, 988, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'mbZvVkRm', '5534683'), + (85734, 988, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'mbZvVkRm', '5537735'), + (85735, 988, 1636, 'attending', '2022-09-04 15:47:01', '2025-12-17 19:47:24', 'mbZvVkRm', '5538454'), + (85736, 988, 1639, 'not_attending', '2022-09-02 19:50:47', '2025-12-17 19:47:24', 'mbZvVkRm', '5540403'), + (85737, 988, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'mbZvVkRm', '5540859'), + (85738, 988, 1644, 'not_attending', '2022-09-19 21:34:23', '2025-12-17 19:47:11', 'mbZvVkRm', '5545857'), + (85739, 988, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'mbZvVkRm', '5546619'), + (85740, 988, 1650, 'attending', '2022-09-04 18:50:47', '2025-12-17 19:47:24', 'mbZvVkRm', '5549611'), + (85741, 988, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'mbZvVkRm', '5555245'), + (85742, 988, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'mbZvVkRm', '5557747'), + (85743, 988, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'mbZvVkRm', '5560255'), + (85744, 988, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'mbZvVkRm', '5562906'), + (85745, 988, 1670, 'attending', '2022-09-18 13:14:02', '2025-12-17 19:47:11', 'mbZvVkRm', '5575076'), + (85746, 988, 1677, 'maybe', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'mbZvVkRm', '5600604'), + (85747, 988, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'mbZvVkRm', '5605544'), + (85748, 988, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'mbZvVkRm', '5606737'), + (85749, 988, 1701, 'maybe', '2022-09-26 22:58:49', '2025-12-17 19:47:11', 'mbZvVkRm', '5607857'), + (85750, 988, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'mbZvVkRm', '5630960'), + (85751, 988, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'mbZvVkRm', '5630961'), + (85752, 988, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'mbZvVkRm', '5630962'), + (85753, 988, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'mbZvVkRm', '5630966'), + (85754, 988, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'mbZvVkRm', '5630967'), + (85755, 988, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'mbZvVkRm', '5630968'), + (85756, 988, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'mbZvVkRm', '5635406'), + (85757, 988, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'mbZvVkRm', '5638765'), + (85758, 988, 1739, 'maybe', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'mbZvVkRm', '5640097'), + (85759, 988, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'mbZvVkRm', '5640843'), + (85760, 988, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'mbZvVkRm', '5641521'), + (85761, 988, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'mbZvVkRm', '5642818'), + (85762, 988, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'mbZvVkRm', '5652395'), + (85763, 988, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'mbZvVkRm', '5670445'), + (85764, 988, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'mbZvVkRm', '5671637'), + (85765, 988, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'mbZvVkRm', '5672329'), + (85766, 988, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'mbZvVkRm', '5674057'), + (85767, 988, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'mbZvVkRm', '5674060'), + (85768, 988, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'mbZvVkRm', '5677461'), + (85769, 988, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'mbZvVkRm', '5698046'), + (85770, 988, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'mbZvVkRm', '5699760'), + (85771, 988, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'mbZvVkRm', '5741601'), + (85772, 988, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'mbZvVkRm', '5763458'), + (85773, 988, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'mbZvVkRm', '5774172'), + (85774, 988, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'mbZvVkRm', '5818247'), + (85775, 988, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mbZvVkRm', '5819471'), + (85776, 988, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'mbZvVkRm', '5827739'), + (85777, 988, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mbZvVkRm', '5844306'), + (85778, 988, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mbZvVkRm', '5850159'), + (85779, 988, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mbZvVkRm', '5858999'), + (85780, 988, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mbZvVkRm', '5871984'), + (85781, 988, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mbZvVkRm', '5876354'), + (85782, 988, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'mbZvVkRm', '5880939'), + (85783, 988, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mbZvVkRm', '5887890'), + (85784, 988, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mbZvVkRm', '5888598'), + (85785, 988, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mbZvVkRm', '5893260'), + (85786, 988, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mbZvVkRm', '6045684'), + (85787, 989, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dO6GO8e4', '7074364'), + (85788, 989, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'dO6GO8e4', '7301638'), + (85789, 989, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dO6GO8e4', '7324073'), + (85790, 989, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dO6GO8e4', '7324074'), + (85791, 989, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dO6GO8e4', '7324075'), + (85792, 989, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dO6GO8e4', '7324078'), + (85793, 989, 2702, 'not_attending', '2024-06-12 22:14:26', '2025-12-17 19:46:28', 'dO6GO8e4', '7324867'), + (85794, 989, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'dO6GO8e4', '7331457'), + (85795, 989, 2725, 'not_attending', '2024-06-19 17:56:55', '2025-12-17 19:46:28', 'dO6GO8e4', '7332564'), + (85796, 989, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'dO6GO8e4', '7335193'), + (85797, 989, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'dO6GO8e4', '7359624'), + (85798, 989, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dO6GO8e4', '7363643'), + (85799, 989, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dO6GO8e4', '7368606'), + (85800, 990, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'bdz6r0Ld', '4136937'), + (85801, 990, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'bdz6r0Ld', '4136938'), + (85802, 990, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'bdz6r0Ld', '4136947'), + (85803, 990, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'bdz6r0Ld', '4210314'), + (85804, 990, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'bdz6r0Ld', '4225444'), + (85805, 990, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'bdz6r0Ld', '4229417'), + (85806, 990, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'bdz6r0Ld', '4229418'), + (85807, 990, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'bdz6r0Ld', '4229420'), + (85808, 990, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'bdz6r0Ld', '4229423'), + (85809, 990, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'bdz6r0Ld', '4239259'), + (85810, 990, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'bdz6r0Ld', '4240316'), + (85811, 990, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'bdz6r0Ld', '4240317'), + (85812, 990, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'bdz6r0Ld', '4240318'), + (85813, 990, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'bdz6r0Ld', '4240320'), + (85814, 990, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'bdz6r0Ld', '4250163'), + (85815, 990, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'bdz6r0Ld', '4275957'), + (85816, 990, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'bdz6r0Ld', '4277819'), + (85817, 990, 923, 'not_attending', '2021-07-20 02:30:40', '2025-12-17 19:47:40', 'bdz6r0Ld', '4292773'), + (85818, 990, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'bdz6r0Ld', '4301723'), + (85819, 990, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'bdz6r0Ld', '4302093'), + (85820, 990, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'bdz6r0Ld', '4304151'), + (85821, 990, 940, 'not_attending', '2021-07-30 16:29:38', '2025-12-17 19:47:40', 'bdz6r0Ld', '4309049'), + (85822, 990, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'bdz6r0Ld', '4315713'), + (85823, 990, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'bdz6r0Ld', '4315714'), + (85824, 990, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'bdz6r0Ld', '4315726'), + (85825, 990, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'bdz6r0Ld', '4356801'), + (85826, 990, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'bdz6r0Ld', '4366186'), + (85827, 990, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'bdz6r0Ld', '4366187'), + (85828, 990, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'bdz6r0Ld', '4420735'), + (85829, 990, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'bdz6r0Ld', '4420738'), + (85830, 990, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'bdz6r0Ld', '4420739'), + (85831, 990, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'bdz6r0Ld', '4420741'), + (85832, 990, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'bdz6r0Ld', '4420744'), + (85833, 990, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'bdz6r0Ld', '4420747'), + (85834, 990, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'bdz6r0Ld', '4420748'), + (85835, 990, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'bdz6r0Ld', '4420749'), + (85836, 990, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz6r0Ld', '6045684'), + (85837, 991, 993, 'attending', '2021-09-24 03:42:42', '2025-12-17 19:47:34', 'pmbxDWz4', '4420741'), + (85838, 991, 994, 'attending', '2021-10-02 02:41:44', '2025-12-17 19:47:34', 'pmbxDWz4', '4420742'), + (85839, 991, 995, 'attending', '2021-09-28 23:09:05', '2025-12-17 19:47:34', 'pmbxDWz4', '4420744'), + (85840, 991, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'pmbxDWz4', '4420747'), + (85841, 991, 1005, 'attending', '2021-09-21 09:08:39', '2025-12-17 19:47:34', 'pmbxDWz4', '4438807'), + (85842, 991, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbxDWz4', '4508342'), + (85843, 991, 1070, 'maybe', '2021-10-01 22:41:42', '2025-12-17 19:47:34', 'pmbxDWz4', '4512562'), + (85844, 991, 1072, 'attending', '2021-10-02 02:42:36', '2025-12-17 19:47:34', 'pmbxDWz4', '4516287'), + (85845, 991, 1074, 'attending', '2021-09-29 22:24:18', '2025-12-17 19:47:34', 'pmbxDWz4', '4528953'), + (85846, 991, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbxDWz4', '4568602'), + (85847, 991, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbxDWz4', '4572153'), + (85848, 991, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'pmbxDWz4', '4585962'), + (85849, 991, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'pmbxDWz4', '4596356'), + (85850, 991, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbxDWz4', '4598860'), + (85851, 991, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbxDWz4', '4598861'), + (85852, 991, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbxDWz4', '4602797'), + (85853, 991, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbxDWz4', '4637896'), + (85854, 991, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbxDWz4', '4642994'), + (85855, 991, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'pmbxDWz4', '4642995'), + (85856, 991, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbxDWz4', '4642996'), + (85857, 991, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbxDWz4', '4642997'), + (85858, 991, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbxDWz4', '4645687'), + (85859, 991, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbxDWz4', '4645698'), + (85860, 991, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbxDWz4', '4645704'), + (85861, 991, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbxDWz4', '4645705'), + (85862, 991, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbxDWz4', '4668385'), + (85863, 991, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbxDWz4', '4694407'), + (85864, 991, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbxDWz4', '4736497'), + (85865, 991, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbxDWz4', '4736499'), + (85866, 991, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbxDWz4', '4736500'), + (85867, 991, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbxDWz4', '4736503'), + (85868, 991, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbxDWz4', '4736504'), + (85869, 991, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbxDWz4', '4746789'), + (85870, 991, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbxDWz4', '4753929'), + (85871, 991, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbxDWz4', '5038850'), + (85872, 991, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbxDWz4', '5045826'), + (85873, 991, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbxDWz4', '5132533'), + (85874, 991, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbxDWz4', '5186582'), + (85875, 991, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbxDWz4', '5186583'), + (85876, 991, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbxDWz4', '5186585'), + (85877, 991, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbxDWz4', '5190437'), + (85878, 991, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbxDWz4', '5215989'), + (85879, 991, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'pmbxDWz4', '6045684'), + (85880, 992, 406, 'attending', '2021-04-01 17:59:50', '2025-12-17 19:47:44', 'NmLaxygA', '3236464'), + (85881, 992, 641, 'maybe', '2021-04-03 15:17:49', '2025-12-17 19:47:44', 'NmLaxygA', '3539916'), + (85882, 992, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'NmLaxygA', '3539918'), + (85883, 992, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'NmLaxygA', '3539919'), + (85884, 992, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'NmLaxygA', '3539920'), + (85885, 992, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'NmLaxygA', '3539921'), + (85886, 992, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'NmLaxygA', '3539922'), + (85887, 992, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'NmLaxygA', '3539923'), + (85888, 992, 700, 'attending', '2021-03-30 10:50:53', '2025-12-17 19:47:44', 'NmLaxygA', '3575725'), + (85889, 992, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLaxygA', '3583262'), + (85890, 992, 715, 'maybe', '2021-03-31 21:57:32', '2025-12-17 19:47:44', 'NmLaxygA', '3604146'), + (85891, 992, 723, 'not_attending', '2021-04-04 03:31:47', '2025-12-17 19:47:44', 'NmLaxygA', '3649179'), + (85892, 992, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLaxygA', '3661369'), + (85893, 992, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLaxygA', '3674262'), + (85894, 992, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'NmLaxygA', '3677402'), + (85895, 992, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLaxygA', '3730212'), + (85896, 992, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLaxygA', '3793156'), + (85897, 992, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLaxygA', '6045684'), + (85898, 993, 2306, 'attending', '2023-11-15 05:00:50', '2025-12-17 19:46:47', 'dw2bPaM4', '6484200'), + (85899, 993, 2322, 'attending', '2023-11-15 18:30:59', '2025-12-17 19:46:48', 'dw2bPaM4', '6514659'), + (85900, 993, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dw2bPaM4', '6514660'), + (85901, 993, 2338, 'attending', '2023-11-19 17:20:09', '2025-12-17 19:46:48', 'dw2bPaM4', '6538868'), + (85902, 993, 2340, 'not_attending', '2023-11-16 22:27:10', '2025-12-17 19:46:48', 'dw2bPaM4', '6540279'), + (85903, 993, 2342, 'attending', '2023-11-14 02:11:29', '2025-12-17 19:46:47', 'dw2bPaM4', '6545076'), + (85904, 993, 2344, 'not_attending', '2023-11-18 17:20:03', '2025-12-17 19:46:48', 'dw2bPaM4', '6581040'), + (85905, 993, 2345, 'maybe', '2023-11-19 17:20:24', '2025-12-17 19:46:48', 'dw2bPaM4', '6582414'), + (85906, 993, 2348, 'attending', '2023-11-19 17:06:13', '2025-12-17 19:46:48', 'dw2bPaM4', '6583064'), + (85907, 993, 2349, 'not_attending', '2023-11-19 17:19:59', '2025-12-17 19:46:48', 'dw2bPaM4', '6583065'), + (85908, 993, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dw2bPaM4', '6584747'), + (85909, 993, 2352, 'attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dw2bPaM4', '6587097'), + (85910, 993, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dw2bPaM4', '6609022'), + (85911, 993, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dw2bPaM4', '6632757'), + (85912, 993, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dw2bPaM4', '6644187'), + (85913, 993, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dw2bPaM4', '6648951'), + (85914, 993, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dw2bPaM4', '6648952'), + (85915, 993, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dw2bPaM4', '6655401'), + (85916, 993, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dw2bPaM4', '6661585'), + (85917, 993, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dw2bPaM4', '6661588'), + (85918, 993, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dw2bPaM4', '6661589'), + (85919, 993, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dw2bPaM4', '6699906'), + (85920, 993, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dw2bPaM4', '6699913'), + (85921, 993, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dw2bPaM4', '6701109'), + (85922, 993, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'dw2bPaM4', '6704561'), + (85923, 993, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dw2bPaM4', '6705219'), + (85924, 993, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'dw2bPaM4', '6708410'), + (85925, 993, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dw2bPaM4', '6710153'), + (85926, 993, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dw2bPaM4', '6711552'), + (85927, 993, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dw2bPaM4', '6711553'), + (85928, 993, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dw2bPaM4', '6722688'), + (85929, 993, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dw2bPaM4', '6730620'), + (85930, 993, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dw2bPaM4', '6730642'), + (85931, 993, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dw2bPaM4', '6740364'), + (85932, 993, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dw2bPaM4', '6743829'), + (85933, 993, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dw2bPaM4', '7030380'), + (85934, 993, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dw2bPaM4', '7033677'), + (85935, 993, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dw2bPaM4', '7035415'), + (85936, 993, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dw2bPaM4', '7044715'), + (85937, 993, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dw2bPaM4', '7050318'), + (85938, 993, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dw2bPaM4', '7050319'), + (85939, 993, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dw2bPaM4', '7050322'), + (85940, 993, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dw2bPaM4', '7057804'), + (85941, 993, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dw2bPaM4', '7072824'), + (85942, 993, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dw2bPaM4', '7074348'), + (85943, 993, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dw2bPaM4', '7089267'), + (85944, 993, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dw2bPaM4', '7098747'), + (85945, 993, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dw2bPaM4', '7113468'), + (85946, 993, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dw2bPaM4', '7114856'), + (85947, 993, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dw2bPaM4', '7114951'), + (85948, 993, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dw2bPaM4', '7114955'), + (85949, 993, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dw2bPaM4', '7114956'), + (85950, 993, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dw2bPaM4', '7153615'), + (85951, 993, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dw2bPaM4', '7159484'), + (85952, 994, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'ndlzWnwA', '3468125'), + (85953, 994, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'ndlzWnwA', '3470303'), + (85954, 994, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'ndlzWnwA', '3470305'), + (85955, 994, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'ndlzWnwA', '3470991'), + (85956, 994, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'ndlzWnwA', '3517815'), + (85957, 994, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'ndlzWnwA', '3523941'), + (85958, 994, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'ndlzWnwA', '3533850'), + (85959, 994, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'ndlzWnwA', '3536632'), + (85960, 994, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'ndlzWnwA', '3536656'), + (85961, 994, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'ndlzWnwA', '3539916'), + (85962, 994, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'ndlzWnwA', '3539917'), + (85963, 994, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'ndlzWnwA', '3539918'), + (85964, 994, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'ndlzWnwA', '3539919'), + (85965, 994, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'ndlzWnwA', '3539920'), + (85966, 994, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'ndlzWnwA', '3539921'), + (85967, 994, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'ndlzWnwA', '3539922'), + (85968, 994, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'ndlzWnwA', '3539923'), + (85969, 994, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndlzWnwA', '6045684'), + (85970, 995, 1655, 'attending', '2022-09-23 01:28:12', '2025-12-17 19:47:11', 'm7zEyzMd', '5554482'), + (85971, 995, 1668, 'maybe', '2022-09-29 00:18:17', '2025-12-17 19:47:12', 'm7zEyzMd', '5563222'), + (85972, 995, 1673, 'attending', '2022-09-29 00:17:55', '2025-12-17 19:47:11', 'm7zEyzMd', '5592454'), + (85973, 995, 1674, 'maybe', '2022-09-24 20:15:02', '2025-12-17 19:47:12', 'm7zEyzMd', '5593112'), + (85974, 995, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm7zEyzMd', '5605544'), + (85975, 995, 1698, 'attending', '2022-09-26 20:17:27', '2025-12-17 19:47:11', 'm7zEyzMd', '5606366'), + (85976, 995, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm7zEyzMd', '5630960'), + (85977, 995, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm7zEyzMd', '5630961'), + (85978, 995, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm7zEyzMd', '5630962'), + (85979, 995, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm7zEyzMd', '5630966'), + (85980, 995, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm7zEyzMd', '5630967'), + (85981, 995, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm7zEyzMd', '5630968'), + (85982, 995, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm7zEyzMd', '5635406'), + (85983, 995, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm7zEyzMd', '5638765'), + (85984, 995, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm7zEyzMd', '5640097'), + (85985, 995, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'm7zEyzMd', '5640843'), + (85986, 995, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm7zEyzMd', '5641521'), + (85987, 995, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm7zEyzMd', '5642818'), + (85988, 995, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm7zEyzMd', '5652395'), + (85989, 995, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm7zEyzMd', '5670445'), + (85990, 995, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm7zEyzMd', '5671637'), + (85991, 995, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm7zEyzMd', '5672329'), + (85992, 995, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm7zEyzMd', '5674057'), + (85993, 995, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm7zEyzMd', '5674060'), + (85994, 995, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm7zEyzMd', '5677461'), + (85995, 995, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm7zEyzMd', '5698046'), + (85996, 995, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm7zEyzMd', '5699760'), + (85997, 995, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm7zEyzMd', '5741601'), + (85998, 995, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm7zEyzMd', '5763458'), + (85999, 995, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm7zEyzMd', '5774172'), + (86000, 995, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'm7zEyzMd', '5818247'), + (86001, 995, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm7zEyzMd', '5819471'), + (86002, 995, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm7zEyzMd', '5827739'), + (86003, 995, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm7zEyzMd', '5844306'), + (86004, 995, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm7zEyzMd', '5850159'), + (86005, 995, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm7zEyzMd', '5858999'), + (86006, 995, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm7zEyzMd', '5871984'), + (86007, 995, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm7zEyzMd', '5876354'), + (86008, 995, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'm7zEyzMd', '5880939'), + (86009, 995, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm7zEyzMd', '5880940'), + (86010, 995, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm7zEyzMd', '5880942'), + (86011, 995, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm7zEyzMd', '5880943'), + (86012, 995, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm7zEyzMd', '5887890'), + (86013, 995, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm7zEyzMd', '5888598'), + (86014, 995, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm7zEyzMd', '5893260'), + (86015, 995, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm7zEyzMd', '5899826'), + (86016, 995, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm7zEyzMd', '5900199'), + (86017, 995, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm7zEyzMd', '5900200'), + (86018, 995, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm7zEyzMd', '5900202'), + (86019, 995, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm7zEyzMd', '5900203'), + (86020, 995, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm7zEyzMd', '5901108'), + (86021, 995, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm7zEyzMd', '5901126'), + (86022, 995, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm7zEyzMd', '5909655'), + (86023, 995, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm7zEyzMd', '5910522'), + (86024, 995, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm7zEyzMd', '5910526'), + (86025, 995, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm7zEyzMd', '5910528'), + (86026, 995, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm7zEyzMd', '5916219'), + (86027, 995, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm7zEyzMd', '5936234'), + (86028, 995, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm7zEyzMd', '5958351'), + (86029, 995, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm7zEyzMd', '5959751'), + (86030, 995, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm7zEyzMd', '5959755'), + (86031, 995, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm7zEyzMd', '5960055'), + (86032, 995, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm7zEyzMd', '5961684'), + (86033, 995, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm7zEyzMd', '5962132'), + (86034, 995, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm7zEyzMd', '5962133'), + (86035, 995, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm7zEyzMd', '5962134'), + (86036, 995, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm7zEyzMd', '5962317'), + (86037, 995, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm7zEyzMd', '5962318'), + (86038, 995, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm7zEyzMd', '5965933'), + (86039, 995, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm7zEyzMd', '5967014'), + (86040, 995, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm7zEyzMd', '5972815'), + (86041, 995, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm7zEyzMd', '5974016'), + (86042, 995, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm7zEyzMd', '5981515'), + (86043, 995, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm7zEyzMd', '5993516'), + (86044, 995, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm7zEyzMd', '5998939'), + (86045, 995, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm7zEyzMd', '6028191'), + (86046, 995, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7zEyzMd', '6045684'), + (86047, 996, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4ol91zMd', '6472181'), + (86048, 996, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4ol91zMd', '6482693'), + (86049, 996, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4ol91zMd', '6484200'), + (86050, 996, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4ol91zMd', '6484680'), + (86051, 996, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4ol91zMd', '6507741'), + (86052, 996, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4ol91zMd', '6514659'), + (86053, 996, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4ol91zMd', '6514660'), + (86054, 996, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4ol91zMd', '6519103'), + (86055, 996, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4ol91zMd', '6535681'), + (86056, 996, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', '4ol91zMd', '6545076'), + (86057, 996, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4ol91zMd', '6584747'), + (86058, 996, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4ol91zMd', '6587097'), + (86059, 996, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4ol91zMd', '6609022'), + (86060, 996, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4ol91zMd', '6632757'), + (86061, 996, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4ol91zMd', '6644187'), + (86062, 996, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4ol91zMd', '6648951'), + (86063, 996, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4ol91zMd', '6648952'), + (86064, 996, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4ol91zMd', '6655401'), + (86065, 996, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4ol91zMd', '6661585'), + (86066, 996, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4ol91zMd', '6661588'), + (86067, 996, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4ol91zMd', '6661589'), + (86068, 996, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4ol91zMd', '6699906'), + (86069, 996, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '4ol91zMd', '6699913'), + (86070, 996, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4ol91zMd', '6701109'), + (86071, 996, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4ol91zMd', '6705219'), + (86072, 996, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4ol91zMd', '6710153'), + (86073, 996, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4ol91zMd', '6711552'), + (86074, 996, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4ol91zMd', '6711553'), + (86075, 996, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '4ol91zMd', '6722688'), + (86076, 996, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '4ol91zMd', '6730620'), + (86077, 996, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '4ol91zMd', '6730642'), + (86078, 996, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '4ol91zMd', '6740364'), + (86079, 996, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '4ol91zMd', '6743829'), + (86080, 996, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '4ol91zMd', '7030380'), + (86081, 996, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '4ol91zMd', '7033677'), + (86082, 996, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '4ol91zMd', '7035415'), + (86083, 996, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '4ol91zMd', '7044715'), + (86084, 996, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '4ol91zMd', '7050318'), + (86085, 996, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '4ol91zMd', '7050319'), + (86086, 996, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '4ol91zMd', '7050322'), + (86087, 996, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '4ol91zMd', '7057804'), + (86088, 996, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '4ol91zMd', '7072824'), + (86089, 996, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '4ol91zMd', '7074348'), + (86090, 996, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '4ol91zMd', '7089267'), + (86091, 996, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '4ol91zMd', '7098747'), + (86092, 996, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '4ol91zMd', '7113468'), + (86093, 996, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '4ol91zMd', '7114856'), + (86094, 996, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '4ol91zMd', '7114951'), + (86095, 996, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '4ol91zMd', '7114955'), + (86096, 996, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '4ol91zMd', '7114956'), + (86097, 996, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '4ol91zMd', '7153615'), + (86098, 996, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '4ol91zMd', '7159484'), + (86099, 996, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '4ol91zMd', '7178446'), + (86100, 997, 645, 'attending', '2021-05-02 17:36:48', '2025-12-17 19:47:46', 'amGR3Jkd', '3539920'), + (86101, 997, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'amGR3Jkd', '3539921'), + (86102, 997, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'amGR3Jkd', '3539922'), + (86103, 997, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'amGR3Jkd', '3539923'), + (86104, 997, 739, 'maybe', '2021-05-01 05:44:58', '2025-12-17 19:47:46', 'amGR3Jkd', '3680616'), + (86105, 997, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'amGR3Jkd', '3793156'), + (86106, 997, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amGR3Jkd', '3974109'), + (86107, 997, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGR3Jkd', '3975311'), + (86108, 997, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amGR3Jkd', '3975312'), + (86109, 997, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'amGR3Jkd', '3994992'), + (86110, 997, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGR3Jkd', '4014338'), + (86111, 997, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amGR3Jkd', '4021848'), + (86112, 997, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amGR3Jkd', '4136744'), + (86113, 997, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'amGR3Jkd', '4136937'), + (86114, 997, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'amGR3Jkd', '4136938'), + (86115, 997, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amGR3Jkd', '4136947'), + (86116, 997, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGR3Jkd', '4210314'), + (86117, 997, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGR3Jkd', '4225444'), + (86118, 997, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amGR3Jkd', '4239259'), + (86119, 997, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGR3Jkd', '4240316'), + (86120, 997, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'amGR3Jkd', '4240317'), + (86121, 997, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'amGR3Jkd', '4240318'), + (86122, 997, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'amGR3Jkd', '4240320'), + (86123, 997, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amGR3Jkd', '4250163'), + (86124, 997, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGR3Jkd', '4275957'), + (86125, 997, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amGR3Jkd', '4277819'), + (86126, 997, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amGR3Jkd', '4301723'), + (86127, 997, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'amGR3Jkd', '4302093'), + (86128, 997, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amGR3Jkd', '4304151'), + (86129, 997, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'amGR3Jkd', '4356801'), + (86130, 997, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'amGR3Jkd', '4366186'), + (86131, 997, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'amGR3Jkd', '4366187'), + (86132, 997, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'amGR3Jkd', '4420735'), + (86133, 997, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'amGR3Jkd', '4420738'), + (86134, 997, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'amGR3Jkd', '4420739'), + (86135, 997, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'amGR3Jkd', '4420741'), + (86136, 997, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'amGR3Jkd', '4420744'), + (86137, 997, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'amGR3Jkd', '4420747'), + (86138, 997, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'amGR3Jkd', '4420748'), + (86139, 997, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'amGR3Jkd', '4420749'), + (86140, 997, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'amGR3Jkd', '4461883'), + (86141, 997, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'amGR3Jkd', '4508342'), + (86142, 997, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'amGR3Jkd', '4568602'), + (86143, 997, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'amGR3Jkd', '4572153'), + (86144, 997, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'amGR3Jkd', '4585962'), + (86145, 997, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'amGR3Jkd', '4596356'), + (86146, 997, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'amGR3Jkd', '4598860'), + (86147, 997, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'amGR3Jkd', '4598861'), + (86148, 997, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'amGR3Jkd', '4602797'), + (86149, 997, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'amGR3Jkd', '4637896'), + (86150, 997, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'amGR3Jkd', '4642994'), + (86151, 997, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'amGR3Jkd', '4642995'), + (86152, 997, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'amGR3Jkd', '4642996'), + (86153, 997, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'amGR3Jkd', '4642997'), + (86154, 997, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'amGR3Jkd', '4645687'), + (86155, 997, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'amGR3Jkd', '4645698'), + (86156, 997, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'amGR3Jkd', '4645704'), + (86157, 997, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'amGR3Jkd', '4645705'), + (86158, 997, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'amGR3Jkd', '4668385'), + (86159, 997, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amGR3Jkd', '4694407'), + (86160, 997, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'amGR3Jkd', '4706262'), + (86161, 997, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'amGR3Jkd', '4736497'), + (86162, 997, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amGR3Jkd', '4736499'), + (86163, 997, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'amGR3Jkd', '4736500'), + (86164, 997, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'amGR3Jkd', '4736503'), + (86165, 997, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amGR3Jkd', '4736504'), + (86166, 997, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'amGR3Jkd', '4746789'), + (86167, 997, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amGR3Jkd', '4753929'), + (86168, 997, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amGR3Jkd', '5038850'), + (86169, 997, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amGR3Jkd', '5045826'), + (86170, 997, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amGR3Jkd', '5132533'), + (86171, 997, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'amGR3Jkd', '5186582'), + (86172, 997, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'amGR3Jkd', '5186583'), + (86173, 997, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amGR3Jkd', '5186585'), + (86174, 997, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amGR3Jkd', '5190437'), + (86175, 997, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGR3Jkd', '6045684'), + (86176, 998, 870, 'not_attending', '2021-07-03 01:49:22', '2025-12-17 19:47:39', 'N4EeZ1w4', '4136937'), + (86177, 998, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'N4EeZ1w4', '4136938'), + (86178, 998, 891, 'attending', '2021-07-02 01:28:14', '2025-12-17 19:47:38', 'N4EeZ1w4', '4229417'), + (86179, 998, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'N4EeZ1w4', '4229418'), + (86180, 998, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'N4EeZ1w4', '4239259'), + (86181, 998, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'N4EeZ1w4', '4250163'), + (86182, 998, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4EeZ1w4', '6045684'), + (86183, 999, 2306, 'attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'd3R6VJ24', '6484200'), + (86184, 999, 2322, 'attending', '2023-11-16 03:55:25', '2025-12-17 19:46:48', 'd3R6VJ24', '6514659'), + (86185, 999, 2323, 'not_attending', '2023-11-19 04:46:57', '2025-12-17 19:46:49', 'd3R6VJ24', '6514660'), + (86186, 999, 2324, 'attending', '2023-12-04 21:51:27', '2025-12-17 19:46:49', 'd3R6VJ24', '6514662'), + (86187, 999, 2325, 'attending', '2023-12-15 19:52:37', '2025-12-17 19:46:36', 'd3R6VJ24', '6514663'), + (86188, 999, 2338, 'maybe', '2023-11-21 01:16:34', '2025-12-17 19:46:48', 'd3R6VJ24', '6538868'), + (86189, 999, 2339, 'not_attending', '2023-11-13 23:24:20', '2025-12-17 19:46:47', 'd3R6VJ24', '6539128'), + (86190, 999, 2340, 'maybe', '2023-11-20 22:49:42', '2025-12-17 19:46:48', 'd3R6VJ24', '6540279'), + (86191, 999, 2342, 'attending', '2023-11-13 19:47:41', '2025-12-17 19:46:47', 'd3R6VJ24', '6545076'), + (86192, 999, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd3R6VJ24', '6584747'), + (86193, 999, 2352, 'maybe', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd3R6VJ24', '6587097'), + (86194, 999, 2363, 'maybe', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd3R6VJ24', '6609022'), + (86195, 999, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd3R6VJ24', '6632757'), + (86196, 999, 2379, 'attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd3R6VJ24', '6644187'), + (86197, 999, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd3R6VJ24', '6648951'), + (86198, 999, 2387, 'attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd3R6VJ24', '6648952'), + (86199, 999, 2391, 'attending', '2024-01-11 00:06:48', '2025-12-17 19:46:37', 'd3R6VJ24', '6654138'), + (86200, 999, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd3R6VJ24', '6655401'), + (86201, 999, 2399, 'attending', '2024-01-13 03:51:38', '2025-12-17 19:46:38', 'd3R6VJ24', '6657583'), + (86202, 999, 2401, 'maybe', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd3R6VJ24', '6661585'), + (86203, 999, 2402, 'maybe', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd3R6VJ24', '6661588'), + (86204, 999, 2403, 'maybe', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd3R6VJ24', '6661589'), + (86205, 999, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd3R6VJ24', '6699906'), + (86206, 999, 2408, 'attending', '2024-01-21 04:43:09', '2025-12-17 19:46:40', 'd3R6VJ24', '6699907'), + (86207, 999, 2410, 'attending', '2024-02-09 21:29:51', '2025-12-17 19:46:41', 'd3R6VJ24', '6699911'), + (86208, 999, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd3R6VJ24', '6699913'), + (86209, 999, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd3R6VJ24', '6701109'), + (86210, 999, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd3R6VJ24', '6705219'), + (86211, 999, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd3R6VJ24', '6710153'), + (86212, 999, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd3R6VJ24', '6711552'), + (86213, 999, 2430, 'maybe', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'd3R6VJ24', '6711553'), + (86214, 999, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd3R6VJ24', '6722688'), + (86215, 999, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd3R6VJ24', '6730620'), + (86216, 999, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd3R6VJ24', '6730642'), + (86217, 999, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd3R6VJ24', '6740364'), + (86218, 999, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd3R6VJ24', '6743829'), + (86219, 999, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd3R6VJ24', '7030380'), + (86220, 999, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd3R6VJ24', '7033677'), + (86221, 999, 2474, 'maybe', '2024-02-21 01:50:48', '2025-12-17 19:46:43', 'd3R6VJ24', '7035415'), + (86222, 999, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd3R6VJ24', '7044715'), + (86223, 999, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd3R6VJ24', '7050318'), + (86224, 999, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd3R6VJ24', '7050319'), + (86225, 999, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd3R6VJ24', '7050322'), + (86226, 999, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd3R6VJ24', '7057804'), + (86227, 999, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'd3R6VJ24', '7059866'), + (86228, 999, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd3R6VJ24', '7072824'), + (86229, 999, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd3R6VJ24', '7074348'), + (86230, 999, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd3R6VJ24', '7074364'), + (86231, 999, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd3R6VJ24', '7089267'), + (86232, 999, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd3R6VJ24', '7098747'), + (86233, 999, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd3R6VJ24', '7113468'), + (86234, 999, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd3R6VJ24', '7114856'), + (86235, 999, 2555, 'maybe', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd3R6VJ24', '7114951'), + (86236, 999, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd3R6VJ24', '7114955'), + (86237, 999, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd3R6VJ24', '7114956'), + (86238, 999, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'd3R6VJ24', '7114957'), + (86239, 999, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd3R6VJ24', '7153615'), + (86240, 999, 2570, 'maybe', '2024-04-08 17:00:18', '2025-12-17 19:46:33', 'd3R6VJ24', '7159187'), + (86241, 999, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd3R6VJ24', '7159484'), + (86242, 999, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd3R6VJ24', '7178446'), + (86243, 999, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'd3R6VJ24', '7220467'), + (86244, 999, 2609, 'maybe', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd3R6VJ24', '7240354'), + (86245, 999, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd3R6VJ24', '7251633'), + (86246, 999, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd3R6VJ24', '7324073'), + (86247, 999, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd3R6VJ24', '7324074'), + (86248, 999, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd3R6VJ24', '7324075'), + (86249, 999, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd3R6VJ24', '7324078'), + (86250, 999, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd3R6VJ24', '7324082'), + (86251, 999, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'd3R6VJ24', '7331457'), + (86252, 999, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'd3R6VJ24', '7363643'), + (86253, 999, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd3R6VJ24', '7368606'), + (86254, 999, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd3R6VJ24', '7397462'), + (86255, 999, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd3R6VJ24', '7424275'), + (86256, 999, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd3R6VJ24', '7424276'), + (86257, 999, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd3R6VJ24', '7432751'), + (86258, 999, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd3R6VJ24', '7432752'), + (86259, 999, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd3R6VJ24', '7432753'), + (86260, 999, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd3R6VJ24', '7432754'), + (86261, 999, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd3R6VJ24', '7432755'), + (86262, 999, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd3R6VJ24', '7432756'), + (86263, 999, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd3R6VJ24', '7432758'), + (86264, 999, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd3R6VJ24', '7432759'), + (86265, 999, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd3R6VJ24', '7433834'), + (86266, 999, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd3R6VJ24', '7470197'), + (86267, 999, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd3R6VJ24', '7685613'), + (86268, 999, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd3R6VJ24', '7688194'), + (86269, 999, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd3R6VJ24', '7688196'), + (86270, 999, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd3R6VJ24', '7688289'), + (86271, 999, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd3R6VJ24', '7692763'), + (86272, 999, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd3R6VJ24', '7697552'), + (86273, 999, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd3R6VJ24', '7699878'), + (86274, 999, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd3R6VJ24', '7704043'), + (86275, 999, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd3R6VJ24', '7712467'), + (86276, 999, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd3R6VJ24', '7713585'), + (86277, 999, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd3R6VJ24', '7713586'), + (86278, 999, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd3R6VJ24', '7738518'), + (86279, 999, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd3R6VJ24', '7750636'), + (86280, 999, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd3R6VJ24', '7796540'), + (86281, 999, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd3R6VJ24', '7796541'), + (86282, 999, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd3R6VJ24', '7796542'), + (86283, 999, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd3R6VJ24', '7825913'), + (86284, 999, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd3R6VJ24', '7826209'), + (86285, 999, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd3R6VJ24', '7834742'), + (86286, 999, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd3R6VJ24', '7842108'), + (86287, 999, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd3R6VJ24', '7842902'), + (86288, 999, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd3R6VJ24', '7842903'), + (86289, 999, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd3R6VJ24', '7842904'), + (86290, 999, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd3R6VJ24', '7842905'), + (86291, 999, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd3R6VJ24', '7855719'), + (86292, 999, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd3R6VJ24', '7860683'), + (86293, 999, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd3R6VJ24', '7860684'), + (86294, 999, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd3R6VJ24', '7866095'), + (86295, 999, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd3R6VJ24', '7869170'), + (86296, 999, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd3R6VJ24', '7869188'), + (86297, 999, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd3R6VJ24', '7869201'), + (86298, 999, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd3R6VJ24', '7877465'), + (86299, 999, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd3R6VJ24', '7888250'), + (86300, 999, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'd3R6VJ24', '7904777'), + (86301, 999, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd3R6VJ24', '8349164'), + (86302, 999, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd3R6VJ24', '8349545'), + (86303, 999, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd3R6VJ24', '8353584'), + (86304, 999, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'd3R6VJ24', '8368028'), + (86305, 999, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'd3R6VJ24', '8368029'), + (86306, 999, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'd3R6VJ24', '8388462'), + (86307, 999, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'd3R6VJ24', '8400273'), + (86308, 999, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'd3R6VJ24', '8400274'), + (86309, 999, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'd3R6VJ24', '8400275'), + (86310, 999, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'd3R6VJ24', '8400276'), + (86311, 999, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'd3R6VJ24', '8404977'), + (86312, 999, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'd3R6VJ24', '8430783'), + (86313, 999, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'd3R6VJ24', '8430784'), + (86314, 999, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'd3R6VJ24', '8430799'), + (86315, 999, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'd3R6VJ24', '8430800'), + (86316, 999, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'd3R6VJ24', '8430801'), + (86317, 999, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'd3R6VJ24', '8438709'), + (86318, 999, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'd3R6VJ24', '8457738'), + (86319, 999, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'd3R6VJ24', '8459566'), + (86320, 999, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'd3R6VJ24', '8459567'), + (86321, 999, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'd3R6VJ24', '8461032'), + (86322, 999, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'd3R6VJ24', '8477877'), + (86323, 999, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'd3R6VJ24', '8485688'), + (86324, 999, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'd3R6VJ24', '8490587'), + (86325, 999, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'd3R6VJ24', '8493552'), + (86326, 999, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'd3R6VJ24', '8493553'), + (86327, 999, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'd3R6VJ24', '8493554'), + (86328, 999, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'd3R6VJ24', '8493555'), + (86329, 999, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'd3R6VJ24', '8493556'), + (86330, 999, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'd3R6VJ24', '8493557'), + (86331, 999, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'd3R6VJ24', '8493558'), + (86332, 999, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'd3R6VJ24', '8493559'), + (86333, 999, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'd3R6VJ24', '8493560'), + (86334, 999, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'd3R6VJ24', '8493561'), + (86335, 999, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'd3R6VJ24', '8493572'), + (86336, 999, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'd3R6VJ24', '8540725'), + (86337, 999, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'd3R6VJ24', '8555421'), + (86338, 1000, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mjVOrW5m', '7869188'), + (86339, 1000, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mjVOrW5m', '7888250'), + (86340, 1000, 3057, 'not_attending', '2025-03-24 18:19:49', '2025-12-17 19:46:19', 'mjVOrW5m', '7890059'), + (86341, 1000, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'mjVOrW5m', '7904777'), + (86342, 1000, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mjVOrW5m', '8349164'), + (86343, 1000, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mjVOrW5m', '8349545'), + (86344, 1000, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mjVOrW5m', '8353584'), + (86345, 1000, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'mjVOrW5m', '8368028'), + (86346, 1000, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'mjVOrW5m', '8368029'), + (86347, 1000, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'mjVOrW5m', '8388462'), + (86348, 1000, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'mjVOrW5m', '8400273'), + (86349, 1000, 3154, 'not_attending', '2025-06-28 21:28:53', '2025-12-17 19:46:15', 'mjVOrW5m', '8400274'), + (86350, 1000, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'mjVOrW5m', '8400275'), + (86351, 1000, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'mjVOrW5m', '8400276'), + (86352, 1000, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'mjVOrW5m', '8404977'), + (86353, 1000, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:15', 'mjVOrW5m', '8430783'), + (86354, 1000, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'mjVOrW5m', '8430784'), + (86355, 1000, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'mjVOrW5m', '8430799'), + (86356, 1000, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'mjVOrW5m', '8430800'), + (86357, 1000, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'mjVOrW5m', '8430801'), + (86358, 1000, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'mjVOrW5m', '8438709'), + (86359, 1000, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'mjVOrW5m', '8457738'), + (86360, 1000, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'mjVOrW5m', '8459566'), + (86361, 1000, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'mjVOrW5m', '8459567'), + (86362, 1000, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'mjVOrW5m', '8461032'), + (86363, 1000, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mjVOrW5m', '8477877'), + (86364, 1000, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mjVOrW5m', '8485688'), + (86365, 1001, 1273, 'attending', '2022-03-26 14:21:56', '2025-12-17 19:47:25', 'AgxD25n4', '5186583'), + (86366, 1001, 1274, 'attending', '2022-04-01 12:59:42', '2025-12-17 19:47:26', 'AgxD25n4', '5186585'), + (86367, 1001, 1281, 'not_attending', '2022-04-09 22:15:36', '2025-12-17 19:47:27', 'AgxD25n4', '5190437'), + (86368, 1001, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'AgxD25n4', '5195095'), + (86369, 1001, 1285, 'attending', '2022-03-25 20:07:12', '2025-12-17 19:47:25', 'AgxD25n4', '5196763'), + (86370, 1001, 1290, 'attending', '2022-03-29 18:02:43', '2025-12-17 19:47:25', 'AgxD25n4', '5200196'), + (86371, 1001, 1291, 'maybe', '2022-03-25 20:07:17', '2025-12-17 19:47:25', 'AgxD25n4', '5200458'), + (86372, 1001, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'AgxD25n4', '5215989'), + (86373, 1001, 1301, 'not_attending', '2022-04-01 12:59:30', '2025-12-17 19:47:26', 'AgxD25n4', '5218175'), + (86374, 1001, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'AgxD25n4', '5223686'), + (86375, 1001, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'AgxD25n4', '5227432'), + (86376, 1001, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'AgxD25n4', '5247467'), + (86377, 1001, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'AgxD25n4', '5260800'), + (86378, 1001, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'AgxD25n4', '5269930'), + (86379, 1001, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'AgxD25n4', '5271448'), + (86380, 1001, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'AgxD25n4', '5271449'), + (86381, 1001, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'AgxD25n4', '5276469'), + (86382, 1001, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'AgxD25n4', '5277078'), + (86383, 1001, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'AgxD25n4', '5278159'), + (86384, 1001, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'AgxD25n4', '5363695'), + (86385, 1001, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'AgxD25n4', '5365960'), + (86386, 1001, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'AgxD25n4', '5368973'), + (86387, 1001, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'AgxD25n4', '5378247'), + (86388, 1001, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'AgxD25n4', '5389605'), + (86389, 1001, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'AgxD25n4', '5397265'), + (86390, 1001, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'AgxD25n4', '5403967'), + (86391, 1001, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'AgxD25n4', '5404786'), + (86392, 1001, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'AgxD25n4', '5405203'), + (86393, 1001, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'AgxD25n4', '5411699'), + (86394, 1001, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'AgxD25n4', '5412550'), + (86395, 1001, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'AgxD25n4', '5415046'), + (86396, 1001, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'AgxD25n4', '5422086'), + (86397, 1001, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'AgxD25n4', '5422406'), + (86398, 1001, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'AgxD25n4', '5424565'), + (86399, 1001, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'AgxD25n4', '5426882'), + (86400, 1001, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'AgxD25n4', '5427083'), + (86401, 1001, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'AgxD25n4', '5441125'), + (86402, 1001, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'AgxD25n4', '5441126'), + (86403, 1001, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'AgxD25n4', '5441128'), + (86404, 1001, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'AgxD25n4', '5446643'), + (86405, 1001, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'AgxD25n4', '5453325'), + (86406, 1001, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'AgxD25n4', '5454516'), + (86407, 1001, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'AgxD25n4', '5454605'), + (86408, 1001, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'AgxD25n4', '5455037'), + (86409, 1001, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'AgxD25n4', '5461278'), + (86410, 1001, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'AgxD25n4', '5469480'), + (86411, 1001, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'AgxD25n4', '5471073'), + (86412, 1001, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'AgxD25n4', '5474663'), + (86413, 1001, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'AgxD25n4', '5482022'), + (86414, 1001, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'AgxD25n4', '5482793'), + (86415, 1001, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'AgxD25n4', '5488912'), + (86416, 1001, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'AgxD25n4', '5492192'), + (86417, 1001, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'AgxD25n4', '5493139'), + (86418, 1001, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'AgxD25n4', '5493200'), + (86419, 1001, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'AgxD25n4', '5502188'), + (86420, 1001, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'AgxD25n4', '5512862'), + (86421, 1001, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'AgxD25n4', '5513985'), + (86422, 1001, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgxD25n4', '6045684'), + (86423, 1002, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', '841vvvRd', '3149489'), + (86424, 1002, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', '841vvvRd', '3149491'), + (86425, 1002, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '841vvvRd', '3236450'), + (86426, 1002, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', '841vvvRd', '3236452'), + (86427, 1002, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '841vvvRd', '3539921'), + (86428, 1002, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '841vvvRd', '3539922'), + (86429, 1002, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '841vvvRd', '3539923'), + (86430, 1002, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '841vvvRd', '3806392'), + (86431, 1002, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', '841vvvRd', '3963335'), + (86432, 1002, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '841vvvRd', '3975311'), + (86433, 1002, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '841vvvRd', '3975312'), + (86434, 1002, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '841vvvRd', '3994992'), + (86435, 1002, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '841vvvRd', '4014338'), + (86436, 1002, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '841vvvRd', '4136744'), + (86437, 1002, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841vvvRd', '6045684'), + (86438, 1003, 535, 'attending', '2021-01-09 19:52:30', '2025-12-17 19:47:48', 'O4Z5pM9A', '3384729'), + (86439, 1003, 536, 'attending', '2021-01-08 05:40:21', '2025-12-17 19:47:48', 'O4Z5pM9A', '3386848'), + (86440, 1003, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'O4Z5pM9A', '3396499'), + (86441, 1003, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'O4Z5pM9A', '3403650'), + (86442, 1003, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'O4Z5pM9A', '3406988'), + (86443, 1003, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'O4Z5pM9A', '3416576'), + (86444, 1003, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'O4Z5pM9A', '3426074'), + (86445, 1003, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'O4Z5pM9A', '3430267'), + (86446, 1003, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'O4Z5pM9A', '3468125'), + (86447, 1003, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'O4Z5pM9A', '3470303'), + (86448, 1003, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'O4Z5pM9A', '3470991'), + (86449, 1003, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'O4Z5pM9A', '6045684'), + (86450, 1004, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'd90BPKE4', '6337236'), + (86451, 1004, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'd90BPKE4', '6337970'), + (86452, 1004, 2156, 'not_attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'd90BPKE4', '6338308'), + (86453, 1004, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'd90BPKE4', '6341710'), + (86454, 1004, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'd90BPKE4', '6342044'), + (86455, 1004, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'd90BPKE4', '6342298'), + (86456, 1004, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'd90BPKE4', '6342591'), + (86457, 1004, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'd90BPKE4', '6343294'), + (86458, 1004, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'd90BPKE4', '6347034'), + (86459, 1004, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'd90BPKE4', '6347056'), + (86460, 1004, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'd90BPKE4', '6353830'), + (86461, 1004, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'd90BPKE4', '6353831'), + (86462, 1004, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'd90BPKE4', '6357867'), + (86463, 1004, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'd90BPKE4', '6358652'), + (86464, 1004, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'd90BPKE4', '6361709'), + (86465, 1004, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'd90BPKE4', '6361710'), + (86466, 1004, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd90BPKE4', '6361711'), + (86467, 1004, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd90BPKE4', '6361712'), + (86468, 1004, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd90BPKE4', '6361713'), + (86469, 1004, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd90BPKE4', '6382573'), + (86470, 1004, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd90BPKE4', '6388604'), + (86471, 1004, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd90BPKE4', '6394629'), + (86472, 1004, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd90BPKE4', '6394631'), + (86473, 1004, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd90BPKE4', '6431478'), + (86474, 1005, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3V9LjY4', '6045684'), + (86475, 1006, 2145, 'not_attending', '2023-07-12 05:07:39', '2025-12-17 19:46:52', '4WWw56j4', '6334903'), + (86476, 1006, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '4WWw56j4', '6337236'), + (86477, 1006, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '4WWw56j4', '6337970'), + (86478, 1006, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '4WWw56j4', '6338308'), + (86479, 1006, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '4WWw56j4', '6340845'), + (86480, 1006, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '4WWw56j4', '6341710'), + (86481, 1006, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4WWw56j4', '6342044'), + (86482, 1006, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '4WWw56j4', '6342298'), + (86483, 1006, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '4WWw56j4', '6343294'), + (86484, 1006, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '4WWw56j4', '6347034'), + (86485, 1006, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '4WWw56j4', '6347056'), + (86486, 1006, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4WWw56j4', '6353830'), + (86487, 1006, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4WWw56j4', '6353831'), + (86488, 1006, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4WWw56j4', '6357867'), + (86489, 1006, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4WWw56j4', '6358652'), + (86490, 1006, 2204, 'attending', '2023-08-18 15:46:58', '2025-12-17 19:46:55', '4WWw56j4', '6361542'), + (86491, 1006, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4WWw56j4', '6361709'), + (86492, 1006, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4WWw56j4', '6361710'), + (86493, 1006, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4WWw56j4', '6361711'), + (86494, 1006, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4WWw56j4', '6361712'), + (86495, 1006, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4WWw56j4', '6361713'), + (86496, 1006, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4WWw56j4', '6382573'), + (86497, 1006, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4WWw56j4', '6388604'), + (86498, 1006, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4WWw56j4', '6394629'), + (86499, 1006, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4WWw56j4', '6394631'), + (86500, 1006, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4WWw56j4', '6440863'), + (86501, 1006, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4WWw56j4', '6445440'), + (86502, 1006, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4WWw56j4', '6453951'), + (86503, 1006, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4WWw56j4', '6461696'), + (86504, 1006, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4WWw56j4', '6462129'), + (86505, 1006, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4WWw56j4', '6463218'), + (86506, 1006, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4WWw56j4', '6472181'), + (86507, 1006, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4WWw56j4', '6482693'), + (86508, 1006, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4WWw56j4', '6484200'), + (86509, 1006, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4WWw56j4', '6484680'), + (86510, 1006, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4WWw56j4', '6507741'), + (86511, 1006, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4WWw56j4', '6514659'), + (86512, 1006, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4WWw56j4', '6514660'), + (86513, 1006, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4WWw56j4', '6519103'), + (86514, 1006, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4WWw56j4', '6535681'), + (86515, 1006, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4WWw56j4', '6584747'), + (86516, 1006, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4WWw56j4', '6587097'), + (86517, 1006, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4WWw56j4', '6609022'), + (86518, 1006, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4WWw56j4', '6632757'), + (86519, 1006, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4WWw56j4', '6644187'), + (86520, 1006, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4WWw56j4', '6648951'), + (86521, 1006, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4WWw56j4', '6648952'), + (86522, 1006, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4WWw56j4', '6655401'), + (86523, 1006, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4WWw56j4', '6661585'), + (86524, 1006, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4WWw56j4', '6661588'), + (86525, 1006, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4WWw56j4', '6661589'), + (86526, 1006, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4WWw56j4', '6699906'), + (86527, 1006, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4WWw56j4', '6701109'), + (86528, 1006, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4WWw56j4', '6705219'), + (86529, 1006, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4WWw56j4', '6710153'), + (86530, 1006, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4WWw56j4', '6711552'), + (86531, 1006, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4WWw56j4', '6711553'), + (86532, 1007, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'VmMkrJJ4', '3149489'), + (86533, 1007, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'VmMkrJJ4', '3149491'), + (86534, 1007, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'VmMkrJJ4', '3149493'), + (86535, 1007, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'VmMkrJJ4', '3236448'), + (86536, 1007, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'VmMkrJJ4', '3236450'), + (86537, 1007, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'VmMkrJJ4', '3236452'), + (86538, 1007, 648, 'attending', '2021-05-26 16:09:26', '2025-12-17 19:47:47', 'VmMkrJJ4', '3539923'), + (86539, 1007, 777, 'attending', '2021-05-26 20:41:53', '2025-12-17 19:47:46', 'VmMkrJJ4', '3746248'), + (86540, 1007, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'VmMkrJJ4', '3963335'), + (86541, 1007, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'VmMkrJJ4', '3974109'), + (86542, 1007, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VmMkrJJ4', '3975311'), + (86543, 1007, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VmMkrJJ4', '3975312'), + (86544, 1007, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'VmMkrJJ4', '3994992'), + (86545, 1007, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VmMkrJJ4', '4014338'), + (86546, 1007, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'VmMkrJJ4', '4021848'), + (86547, 1007, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmMkrJJ4', '4136744'), + (86548, 1007, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'VmMkrJJ4', '4136937'), + (86549, 1007, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'VmMkrJJ4', '4136947'), + (86550, 1007, 891, 'attending', '2021-07-01 20:55:16', '2025-12-17 19:47:38', 'VmMkrJJ4', '4229417'), + (86551, 1007, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VmMkrJJ4', '4239259'), + (86552, 1007, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmMkrJJ4', '6045684'), + (86553, 1008, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd81gn6km', '6361713'), + (86554, 1008, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd81gn6km', '6388604'), + (86555, 1008, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd81gn6km', '6394629'), + (86556, 1008, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd81gn6km', '6394631'), + (86557, 1008, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'd81gn6km', '6431478'), + (86558, 1009, 1797, 'attending', '2022-12-08 04:37:28', '2025-12-17 19:47:17', 'mGOk1anm', '5757486'), + (86559, 1009, 1824, 'not_attending', '2022-12-13 16:40:23', '2025-12-17 19:47:04', 'mGOk1anm', '5774172'), + (86560, 1009, 1832, 'not_attending', '2022-12-03 19:14:16', '2025-12-17 19:47:16', 'mGOk1anm', '5818247'), + (86561, 1009, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'mGOk1anm', '5819471'), + (86562, 1009, 1836, 'attending', '2022-12-05 07:45:13', '2025-12-17 19:47:16', 'mGOk1anm', '5819484'), + (86563, 1009, 1842, 'maybe', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'mGOk1anm', '5827739'), + (86564, 1009, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'mGOk1anm', '5844306'), + (86565, 1009, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'mGOk1anm', '5850159'), + (86566, 1009, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'mGOk1anm', '5858999'), + (86567, 1009, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'mGOk1anm', '5871984'), + (86568, 1009, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'mGOk1anm', '5876354'), + (86569, 1009, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'mGOk1anm', '5880939'), + (86570, 1009, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'mGOk1anm', '5887890'), + (86571, 1009, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'mGOk1anm', '5888598'), + (86572, 1009, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'mGOk1anm', '5893260'), + (86573, 1009, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mGOk1anm', '6045684'), + (86574, 1010, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dKP6GPem', '5652395'), + (86575, 1010, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKP6GPem', '6045684'), + (86576, 1011, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'kdKlG99m', '3470305'), + (86577, 1011, 605, 'not_attending', '2021-02-14 01:27:06', '2025-12-17 19:47:50', 'kdKlG99m', '3470991'), + (86578, 1011, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'kdKlG99m', '3517815'), + (86579, 1011, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'kdKlG99m', '3517816'), + (86580, 1011, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKlG99m', '3523941'), + (86581, 1011, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKlG99m', '3533850'), + (86582, 1011, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKlG99m', '3536632'), + (86583, 1011, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKlG99m', '3536656'), + (86584, 1011, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'kdKlG99m', '3539916'), + (86585, 1011, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdKlG99m', '3539917'), + (86586, 1011, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKlG99m', '3539918'), + (86587, 1011, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKlG99m', '3539919'), + (86588, 1011, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKlG99m', '3539920'), + (86589, 1011, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKlG99m', '3539921'), + (86590, 1011, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKlG99m', '3539922'), + (86591, 1011, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKlG99m', '3539923'), + (86592, 1011, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'kdKlG99m', '3539927'), + (86593, 1011, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKlG99m', '3582734'), + (86594, 1011, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKlG99m', '3619523'), + (86595, 1011, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKlG99m', '6045684'), + (86596, 1012, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dxOr5nD4', '5880942'), + (86597, 1012, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dxOr5nD4', '5880943'), + (86598, 1012, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dxOr5nD4', '5900200'), + (86599, 1012, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dxOr5nD4', '5900202'), + (86600, 1012, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dxOr5nD4', '5900203'), + (86601, 1012, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', 'dxOr5nD4', '5910526'), + (86602, 1012, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dxOr5nD4', '5910528'), + (86603, 1012, 1921, 'not_attending', '2023-02-18 05:13:57', '2025-12-17 19:47:08', 'dxOr5nD4', '5914092'), + (86604, 1012, 1925, 'attending', '2023-02-23 23:22:43', '2025-12-17 19:47:08', 'dxOr5nD4', '5932619'), + (86605, 1012, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dxOr5nD4', '5936234'), + (86606, 1012, 1934, 'attending', '2023-02-22 15:15:46', '2025-12-17 19:47:08', 'dxOr5nD4', '5936691'), + (86607, 1012, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dxOr5nD4', '5958351'), + (86608, 1012, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dxOr5nD4', '5959751'), + (86609, 1012, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dxOr5nD4', '5959755'), + (86610, 1012, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dxOr5nD4', '5960055'), + (86611, 1012, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dxOr5nD4', '5961684'), + (86612, 1012, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dxOr5nD4', '5962132'), + (86613, 1012, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dxOr5nD4', '5962133'), + (86614, 1012, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dxOr5nD4', '5962134'), + (86615, 1012, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dxOr5nD4', '5962317'), + (86616, 1012, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dxOr5nD4', '5962318'), + (86617, 1012, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dxOr5nD4', '5965933'), + (86618, 1012, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dxOr5nD4', '5967014'), + (86619, 1012, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dxOr5nD4', '5972815'), + (86620, 1012, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dxOr5nD4', '5974016'), + (86621, 1012, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dxOr5nD4', '5981515'), + (86622, 1012, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dxOr5nD4', '5993516'), + (86623, 1012, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dxOr5nD4', '5998939'), + (86624, 1012, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dxOr5nD4', '6028191'), + (86625, 1012, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dxOr5nD4', '6040066'), + (86626, 1012, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dxOr5nD4', '6042717'), + (86627, 1012, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dxOr5nD4', '6044838'), + (86628, 1012, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dxOr5nD4', '6044839'), + (86629, 1012, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dxOr5nD4', '6045684'), + (86630, 1012, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dxOr5nD4', '6050104'), + (86631, 1012, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dxOr5nD4', '6053195'), + (86632, 1012, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dxOr5nD4', '6053198'), + (86633, 1012, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dxOr5nD4', '6056085'), + (86634, 1012, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dxOr5nD4', '6056916'), + (86635, 1012, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dxOr5nD4', '6059290'), + (86636, 1012, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dxOr5nD4', '6060328'), + (86637, 1012, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dxOr5nD4', '6061037'), + (86638, 1012, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dxOr5nD4', '6061039'), + (86639, 1012, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dxOr5nD4', '6067245'), + (86640, 1012, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dxOr5nD4', '6068094'), + (86641, 1012, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dxOr5nD4', '6068252'), + (86642, 1012, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dxOr5nD4', '6068253'), + (86643, 1012, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dxOr5nD4', '6068254'), + (86644, 1012, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dxOr5nD4', '6068280'), + (86645, 1012, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dxOr5nD4', '6069093'), + (86646, 1012, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dxOr5nD4', '6072528'), + (86647, 1012, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dxOr5nD4', '6079840'), + (86648, 1012, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dxOr5nD4', '6083398'), + (86649, 1012, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dxOr5nD4', '6093504'), + (86650, 1012, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dxOr5nD4', '6097414'), + (86651, 1012, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dxOr5nD4', '6097442'), + (86652, 1012, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dxOr5nD4', '6097684'), + (86653, 1012, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dxOr5nD4', '6098762'), + (86654, 1012, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dxOr5nD4', '6101362'), + (86655, 1012, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dxOr5nD4', '6103752'), + (86656, 1012, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dxOr5nD4', '6107314'), + (86657, 1013, 1315, 'attending', '2022-04-22 22:46:43', '2025-12-17 19:47:27', '41WMnERm', '5237522'), + (86658, 1013, 1337, 'maybe', '2022-04-20 22:39:19', '2025-12-17 19:47:27', '41WMnERm', '5245036'), + (86659, 1013, 1350, 'attending', '2022-04-20 22:40:54', '2025-12-17 19:47:27', '41WMnERm', '5249763'), + (86660, 1013, 1362, 'attending', '2022-04-30 19:21:52', '2025-12-17 19:47:28', '41WMnERm', '5260800'), + (86661, 1013, 1371, 'attending', '2022-04-27 22:39:52', '2025-12-17 19:47:27', '41WMnERm', '5263784'), + (86662, 1013, 1372, 'attending', '2022-05-04 20:49:37', '2025-12-17 19:47:28', '41WMnERm', '5264352'), + (86663, 1013, 1374, 'attending', '2022-05-07 21:25:18', '2025-12-17 19:47:28', '41WMnERm', '5269930'), + (86664, 1013, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41WMnERm', '5271448'), + (86665, 1013, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '41WMnERm', '5271449'), + (86666, 1013, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '41WMnERm', '5276469'), + (86667, 1013, 1385, 'attending', '2022-05-11 22:29:38', '2025-12-17 19:47:28', '41WMnERm', '5277822'), + (86668, 1013, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41WMnERm', '5278159'), + (86669, 1013, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41WMnERm', '5363695'), + (86670, 1013, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41WMnERm', '5365960'), + (86671, 1013, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '41WMnERm', '5368973'), + (86672, 1013, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41WMnERm', '5378247'), + (86673, 1013, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '41WMnERm', '5389605'), + (86674, 1013, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41WMnERm', '5397265'), + (86675, 1013, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WMnERm', '5403967'), + (86676, 1013, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WMnERm', '5404786'), + (86677, 1013, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WMnERm', '5405203'), + (86678, 1013, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', '41WMnERm', '5408794'), + (86679, 1013, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WMnERm', '5411699'), + (86680, 1013, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WMnERm', '5412550'), + (86681, 1013, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WMnERm', '5415046'), + (86682, 1013, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WMnERm', '5422086'), + (86683, 1013, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WMnERm', '5422406'), + (86684, 1013, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WMnERm', '5424565'), + (86685, 1013, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WMnERm', '5426882'), + (86686, 1013, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WMnERm', '5427083'), + (86687, 1013, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '41WMnERm', '5441125'), + (86688, 1013, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WMnERm', '5441126'), + (86689, 1013, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WMnERm', '5441128'), + (86690, 1013, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WMnERm', '5446643'), + (86691, 1013, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WMnERm', '5453325'), + (86692, 1013, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WMnERm', '5454516'), + (86693, 1013, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WMnERm', '5454605'), + (86694, 1013, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WMnERm', '5455037'), + (86695, 1013, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WMnERm', '5461278'), + (86696, 1013, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WMnERm', '5469480'), + (86697, 1013, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WMnERm', '5471073'), + (86698, 1013, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41WMnERm', '5474663'), + (86699, 1013, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WMnERm', '5482022'), + (86700, 1013, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WMnERm', '5482793'), + (86701, 1013, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WMnERm', '5488912'), + (86702, 1013, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WMnERm', '5492192'), + (86703, 1013, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WMnERm', '5493139'), + (86704, 1013, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WMnERm', '5493200'), + (86705, 1013, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WMnERm', '5502188'), + (86706, 1013, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WMnERm', '5512862'), + (86707, 1013, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WMnERm', '5513985'), + (86708, 1013, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WMnERm', '6045684'), + (86709, 1014, 2136, 'attending', '2023-07-21 15:05:04', '2025-12-17 19:46:53', 'AXV3GXvd', '6187966'), + (86710, 1014, 2137, 'attending', '2023-07-21 15:06:57', '2025-12-17 19:46:54', 'AXV3GXvd', '6187967'), + (86711, 1014, 2146, 'attending', '2023-07-21 14:06:26', '2025-12-17 19:46:53', 'AXV3GXvd', '6335638'), + (86712, 1014, 2148, 'attending', '2023-07-21 15:04:40', '2025-12-17 19:46:53', 'AXV3GXvd', '6335667'), + (86713, 1014, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AXV3GXvd', '6337236'), + (86714, 1014, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AXV3GXvd', '6337970'), + (86715, 1014, 2156, 'not_attending', '2023-07-15 18:21:31', '2025-12-17 19:46:52', 'AXV3GXvd', '6338308'), + (86716, 1014, 2158, 'attending', '2023-07-21 14:04:11', '2025-12-17 19:46:53', 'AXV3GXvd', '6338353'), + (86717, 1014, 2159, 'attending', '2023-07-22 22:17:14', '2025-12-17 19:46:53', 'AXV3GXvd', '6338355'), + (86718, 1014, 2160, 'maybe', '2023-07-24 22:42:18', '2025-12-17 19:46:54', 'AXV3GXvd', '6338358'), + (86719, 1014, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AXV3GXvd', '6341710'), + (86720, 1014, 2164, 'maybe', '2023-07-24 22:42:45', '2025-12-17 19:46:54', 'AXV3GXvd', '6341797'), + (86721, 1014, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AXV3GXvd', '6342044'), + (86722, 1014, 2166, 'attending', '2023-07-21 15:05:27', '2025-12-17 19:46:54', 'AXV3GXvd', '6342115'), + (86723, 1014, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AXV3GXvd', '6342298'), + (86724, 1014, 2171, 'maybe', '2023-07-21 15:05:39', '2025-12-17 19:46:54', 'AXV3GXvd', '6342328'), + (86725, 1014, 2172, 'attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'AXV3GXvd', '6342591'), + (86726, 1014, 2173, 'attending', '2023-07-20 23:34:57', '2025-12-17 19:46:53', 'AXV3GXvd', '6342769'), + (86727, 1014, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AXV3GXvd', '6343294'), + (86728, 1014, 2175, 'attending', '2023-07-22 21:19:33', '2025-12-17 19:46:53', 'AXV3GXvd', '6346982'), + (86729, 1014, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AXV3GXvd', '6347034'), + (86730, 1014, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AXV3GXvd', '6347056'), + (86731, 1014, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AXV3GXvd', '6353830'), + (86732, 1014, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AXV3GXvd', '6353831'), + (86733, 1014, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AXV3GXvd', '6357867'), + (86734, 1014, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AXV3GXvd', '6358652'), + (86735, 1014, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AXV3GXvd', '6361709'), + (86736, 1014, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AXV3GXvd', '6361710'), + (86737, 1014, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AXV3GXvd', '6361711'), + (86738, 1014, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AXV3GXvd', '6361712'), + (86739, 1014, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AXV3GXvd', '6361713'), + (86740, 1014, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AXV3GXvd', '6382573'), + (86741, 1014, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'AXV3GXvd', '6388604'), + (86742, 1014, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AXV3GXvd', '6394629'), + (86743, 1014, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AXV3GXvd', '6394631'), + (86744, 1014, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AXV3GXvd', '6440863'), + (86745, 1014, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AXV3GXvd', '6445440'), + (86746, 1014, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AXV3GXvd', '6453951'), + (86747, 1014, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AXV3GXvd', '6461696'), + (86748, 1014, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AXV3GXvd', '6462129'), + (86749, 1014, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AXV3GXvd', '6463218'), + (86750, 1014, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AXV3GXvd', '6472181'), + (86751, 1014, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AXV3GXvd', '6482693'), + (86752, 1014, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'AXV3GXvd', '6484200'), + (86753, 1014, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'AXV3GXvd', '6484680'), + (86754, 1014, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AXV3GXvd', '6507741'), + (86755, 1014, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AXV3GXvd', '6514659'), + (86756, 1014, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AXV3GXvd', '6514660'), + (86757, 1014, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AXV3GXvd', '6519103'), + (86758, 1014, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AXV3GXvd', '6535681'), + (86759, 1014, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AXV3GXvd', '6584747'), + (86760, 1014, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AXV3GXvd', '6587097'), + (86761, 1014, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AXV3GXvd', '6609022'), + (86762, 1014, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AXV3GXvd', '6632757'), + (86763, 1014, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AXV3GXvd', '6644187'), + (86764, 1014, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AXV3GXvd', '6648951'), + (86765, 1014, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AXV3GXvd', '6648952'), + (86766, 1014, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AXV3GXvd', '6655401'), + (86767, 1014, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AXV3GXvd', '6661585'), + (86768, 1014, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AXV3GXvd', '6661588'), + (86769, 1014, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AXV3GXvd', '6661589'), + (86770, 1014, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AXV3GXvd', '6699906'), + (86771, 1014, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AXV3GXvd', '6701109'), + (86772, 1014, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AXV3GXvd', '6705219'), + (86773, 1014, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AXV3GXvd', '6710153'), + (86774, 1014, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AXV3GXvd', '6711552'), + (86775, 1014, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AXV3GXvd', '6711553'), + (86776, 1015, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'daBnr1Dm', '4366187'), + (86777, 1015, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'daBnr1Dm', '4420735'), + (86778, 1015, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'daBnr1Dm', '4420738'), + (86779, 1015, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'daBnr1Dm', '4420739'), + (86780, 1015, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'daBnr1Dm', '4420741'), + (86781, 1015, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'daBnr1Dm', '4420744'), + (86782, 1015, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'daBnr1Dm', '4420747'), + (86783, 1015, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'daBnr1Dm', '4420748'), + (86784, 1015, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'daBnr1Dm', '4420749'), + (86785, 1015, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daBnr1Dm', '6045684'), + (86786, 1016, 884, 'maybe', '2021-08-11 10:50:25', '2025-12-17 19:47:42', 'dwYoWLaA', '4210314'), + (86787, 1016, 902, 'attending', '2021-08-07 17:33:01', '2025-12-17 19:47:41', 'dwYoWLaA', '4240318'), + (86788, 1016, 903, 'attending', '2021-08-11 10:50:11', '2025-12-17 19:47:42', 'dwYoWLaA', '4240320'), + (86789, 1016, 930, 'attending', '2021-08-08 21:28:56', '2025-12-17 19:47:41', 'dwYoWLaA', '4300787'), + (86790, 1016, 934, 'attending', '2021-08-04 21:18:05', '2025-12-17 19:47:40', 'dwYoWLaA', '4302093'), + (86791, 1016, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'dwYoWLaA', '4304151'), + (86792, 1016, 947, 'attending', '2021-08-06 20:10:48', '2025-12-17 19:47:41', 'dwYoWLaA', '4315713'), + (86793, 1016, 952, 'attending', '2021-08-05 17:37:05', '2025-12-17 19:47:41', 'dwYoWLaA', '4318286'), + (86794, 1016, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'dwYoWLaA', '4345519'), + (86795, 1016, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'dwYoWLaA', '4356801'), + (86796, 1016, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'dwYoWLaA', '4358025'), + (86797, 1016, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'dwYoWLaA', '4366186'), + (86798, 1016, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'dwYoWLaA', '4366187'), + (86799, 1016, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'dwYoWLaA', '4402823'), + (86800, 1016, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'dwYoWLaA', '4420735'), + (86801, 1016, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'dwYoWLaA', '4420738'), + (86802, 1016, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'dwYoWLaA', '4420739'), + (86803, 1016, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'dwYoWLaA', '4420741'), + (86804, 1016, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'dwYoWLaA', '4420744'), + (86805, 1016, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'dwYoWLaA', '4420747'), + (86806, 1016, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'dwYoWLaA', '4420748'), + (86807, 1016, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'dwYoWLaA', '4420749'), + (86808, 1016, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'dwYoWLaA', '4461883'), + (86809, 1016, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'dwYoWLaA', '4508342'), + (86810, 1016, 1723, 'attending', '2022-11-05 21:11:50', '2025-12-17 19:47:15', 'dwYoWLaA', '5630962'), + (86811, 1016, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dwYoWLaA', '5630966'), + (86812, 1016, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dwYoWLaA', '5630967'), + (86813, 1016, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dwYoWLaA', '5630968'), + (86814, 1016, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dwYoWLaA', '5642818'), + (86815, 1016, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dwYoWLaA', '5670445'), + (86816, 1016, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dwYoWLaA', '5699760'), + (86817, 1016, 1786, 'maybe', '2022-11-08 23:41:18', '2025-12-17 19:47:15', 'dwYoWLaA', '5727232'), + (86818, 1016, 1787, 'attending', '2022-11-13 23:23:40', '2025-12-17 19:47:16', 'dwYoWLaA', '5727234'), + (86819, 1016, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dwYoWLaA', '5741601'), + (86820, 1016, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dwYoWLaA', '5763458'), + (86821, 1016, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dwYoWLaA', '5774172'), + (86822, 1016, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'dwYoWLaA', '5818247'), + (86823, 1016, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dwYoWLaA', '5819471'), + (86824, 1016, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dwYoWLaA', '5827739'), + (86825, 1016, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dwYoWLaA', '5844306'), + (86826, 1016, 1846, 'not_attending', '2022-12-18 18:53:15', '2025-12-17 19:47:04', 'dwYoWLaA', '5845237'), + (86827, 1016, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dwYoWLaA', '5850159'), + (86828, 1016, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dwYoWLaA', '5858999'), + (86829, 1016, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dwYoWLaA', '5871984'), + (86830, 1016, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dwYoWLaA', '5876354'), + (86831, 1016, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dwYoWLaA', '6045684'), + (86832, 1017, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd9Xg3GX4', '7424275'), + (86833, 1017, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd9Xg3GX4', '7424276'), + (86834, 1017, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'd9Xg3GX4', '7432756'), + (86835, 1017, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'd9Xg3GX4', '7432758'), + (86836, 1017, 2880, 'attending', '2024-10-11 17:49:59', '2025-12-17 19:46:26', 'd9Xg3GX4', '7636316'), + (86837, 1017, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd9Xg3GX4', '7685613'), + (86838, 1017, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd9Xg3GX4', '7688194'), + (86839, 1017, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd9Xg3GX4', '7688196'), + (86840, 1017, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd9Xg3GX4', '7688289'), + (86841, 1017, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd9Xg3GX4', '7692763'), + (86842, 1017, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd9Xg3GX4', '7697552'), + (86843, 1017, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd9Xg3GX4', '7699878'), + (86844, 1017, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd9Xg3GX4', '7704043'), + (86845, 1017, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd9Xg3GX4', '7712467'), + (86846, 1017, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd9Xg3GX4', '7713585'), + (86847, 1017, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd9Xg3GX4', '7713586'), + (86848, 1017, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'd9Xg3GX4', '7738518'), + (86849, 1017, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd9Xg3GX4', '7750636'), + (86850, 1017, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd9Xg3GX4', '7796540'), + (86851, 1017, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd9Xg3GX4', '7796541'), + (86852, 1017, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd9Xg3GX4', '7796542'), + (86853, 1017, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'd9Xg3GX4', '7825913'), + (86854, 1017, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'd9Xg3GX4', '7826209'), + (86855, 1017, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'd9Xg3GX4', '7834742'), + (86856, 1017, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'd9Xg3GX4', '7842108'), + (86857, 1017, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'd9Xg3GX4', '7842902'), + (86858, 1017, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'd9Xg3GX4', '7842903'), + (86859, 1017, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'd9Xg3GX4', '7842904'), + (86860, 1017, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'd9Xg3GX4', '7842905'), + (86861, 1017, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'd9Xg3GX4', '7855719'), + (86862, 1017, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'd9Xg3GX4', '7860683'), + (86863, 1017, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'd9Xg3GX4', '7860684'), + (86864, 1017, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'd9Xg3GX4', '7866095'), + (86865, 1017, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'd9Xg3GX4', '7869170'), + (86866, 1017, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'd9Xg3GX4', '7869188'), + (86867, 1017, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'd9Xg3GX4', '7869201'), + (86868, 1017, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'd9Xg3GX4', '7877465'), + (86869, 1017, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'd9Xg3GX4', '7878570'), + (86870, 1017, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'd9Xg3GX4', '7888250'), + (86871, 1017, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'd9Xg3GX4', '8349164'), + (86872, 1017, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'd9Xg3GX4', '8349545'), + (86873, 1017, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'd9Xg3GX4', '8353584'), + (86874, 1018, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Gmjwwe0A', '3236465'), + (86875, 1018, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'Gmjwwe0A', '3539916'), + (86876, 1018, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Gmjwwe0A', '3539918'), + (86877, 1018, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Gmjwwe0A', '3539919'), + (86878, 1018, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Gmjwwe0A', '3539920'), + (86879, 1018, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Gmjwwe0A', '3539921'), + (86880, 1018, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'Gmjwwe0A', '3539927'), + (86881, 1018, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'Gmjwwe0A', '3582734'), + (86882, 1018, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Gmjwwe0A', '3583262'), + (86883, 1018, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'Gmjwwe0A', '3619523'), + (86884, 1018, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Gmjwwe0A', '3661369'), + (86885, 1018, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'Gmjwwe0A', '3674262'), + (86886, 1018, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'Gmjwwe0A', '3677402'), + (86887, 1018, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Gmjwwe0A', '3730212'), + (86888, 1018, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Gmjwwe0A', '3793156'), + (86889, 1018, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Gmjwwe0A', '3803310'), + (86890, 1018, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Gmjwwe0A', '3806392'), + (86891, 1018, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Gmjwwe0A', '6045684'), + (86892, 1019, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dxMx6p1m', '6482693'), + (86893, 1019, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dxMx6p1m', '6484200'), + (86894, 1019, 2307, 'not_attending', '2023-10-24 19:24:11', '2025-12-17 19:46:47', 'dxMx6p1m', '6484680'), + (86895, 1019, 2310, 'attending', '2023-11-11 18:00:00', '2025-12-17 19:46:47', 'dxMx6p1m', '6487709'), + (86896, 1019, 2315, 'attending', '2023-11-07 00:49:55', '2025-12-17 19:46:47', 'dxMx6p1m', '6493666'), + (86897, 1019, 2317, 'maybe', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dxMx6p1m', '6507741'), + (86898, 1019, 2320, 'attending', '2023-11-07 04:03:28', '2025-12-17 19:46:47', 'dxMx6p1m', '6508647'), + (86899, 1019, 2322, 'attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dxMx6p1m', '6514659'), + (86900, 1019, 2323, 'attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dxMx6p1m', '6514660'), + (86901, 1019, 2324, 'not_attending', '2023-12-05 22:45:10', '2025-12-17 19:46:49', 'dxMx6p1m', '6514662'), + (86902, 1019, 2325, 'attending', '2023-12-16 18:39:41', '2025-12-17 19:46:36', 'dxMx6p1m', '6514663'), + (86903, 1019, 2331, 'maybe', '2023-11-14 01:36:21', '2025-12-17 19:46:47', 'dxMx6p1m', '6518640'), + (86904, 1019, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dxMx6p1m', '6519103'), + (86905, 1019, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dxMx6p1m', '6535681'), + (86906, 1019, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dxMx6p1m', '6584747'), + (86907, 1019, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dxMx6p1m', '6587097'), + (86908, 1019, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dxMx6p1m', '6609022'), + (86909, 1019, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dxMx6p1m', '6632757'), + (86910, 1019, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dxMx6p1m', '6644187'), + (86911, 1019, 2382, 'maybe', '2024-01-03 18:03:07', '2025-12-17 19:46:37', 'dxMx6p1m', '6646401'), + (86912, 1019, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dxMx6p1m', '6648951'), + (86913, 1019, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dxMx6p1m', '6648952'), + (86914, 1019, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dxMx6p1m', '6655401'), + (86915, 1019, 2399, 'attending', '2024-01-10 18:36:27', '2025-12-17 19:46:38', 'dxMx6p1m', '6657583'), + (86916, 1019, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dxMx6p1m', '6661585'), + (86917, 1019, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dxMx6p1m', '6661588'), + (86918, 1019, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dxMx6p1m', '6661589'), + (86919, 1019, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dxMx6p1m', '6699906'), + (86920, 1019, 2408, 'attending', '2024-01-25 16:49:38', '2025-12-17 19:46:40', 'dxMx6p1m', '6699907'), + (86921, 1019, 2409, 'attending', '2024-01-28 19:07:09', '2025-12-17 19:46:41', 'dxMx6p1m', '6699909'), + (86922, 1019, 2410, 'attending', '2024-02-10 22:33:10', '2025-12-17 19:46:41', 'dxMx6p1m', '6699911'), + (86923, 1019, 2411, 'not_attending', '2024-02-08 17:09:49', '2025-12-17 19:46:42', 'dxMx6p1m', '6699913'), + (86924, 1019, 2412, 'maybe', '2024-02-20 02:04:10', '2025-12-17 19:46:43', 'dxMx6p1m', '6700717'), + (86925, 1019, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dxMx6p1m', '6701109'), + (86926, 1019, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dxMx6p1m', '6705219'), + (86927, 1019, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dxMx6p1m', '6710153'), + (86928, 1019, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dxMx6p1m', '6711552'), + (86929, 1019, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dxMx6p1m', '6711553'), + (86930, 1019, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dxMx6p1m', '6722688'), + (86931, 1019, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dxMx6p1m', '6730620'), + (86932, 1019, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dxMx6p1m', '6730642'), + (86933, 1019, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dxMx6p1m', '6740364'), + (86934, 1019, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dxMx6p1m', '6743829'), + (86935, 1019, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dxMx6p1m', '7030380'), + (86936, 1019, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dxMx6p1m', '7033677'), + (86937, 1019, 2474, 'attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dxMx6p1m', '7035415'), + (86938, 1019, 2475, 'attending', '2024-02-28 02:50:30', '2025-12-17 19:46:43', 'dxMx6p1m', '7035643'), + (86939, 1019, 2476, 'attending', '2024-02-28 00:13:04', '2025-12-17 19:46:43', 'dxMx6p1m', '7035691'), + (86940, 1019, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dxMx6p1m', '7044715'), + (86941, 1019, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dxMx6p1m', '7050318'), + (86942, 1019, 2491, 'attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dxMx6p1m', '7050319'), + (86943, 1019, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dxMx6p1m', '7050322'), + (86944, 1019, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dxMx6p1m', '7057804'), + (86945, 1019, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dxMx6p1m', '7059866'), + (86946, 1019, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dxMx6p1m', '7072824'), + (86947, 1019, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dxMx6p1m', '7074348'), + (86948, 1019, 2511, 'attending', '2024-04-10 01:24:21', '2025-12-17 19:46:33', 'dxMx6p1m', '7074351'), + (86949, 1019, 2521, 'attending', '2024-06-17 20:05:44', '2025-12-17 19:46:29', 'dxMx6p1m', '7074361'), + (86950, 1019, 2522, 'attending', '2024-07-14 23:32:11', '2025-12-17 19:46:30', 'dxMx6p1m', '7074362'), + (86951, 1019, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dxMx6p1m', '7074364'), + (86952, 1019, 2525, 'attending', '2024-06-13 19:38:37', '2025-12-17 19:46:28', 'dxMx6p1m', '7074365'), + (86953, 1019, 2527, 'attending', '2024-06-24 02:49:41', '2025-12-17 19:46:29', 'dxMx6p1m', '7074367'), + (86954, 1019, 2530, 'maybe', '2024-08-15 00:59:19', '2025-12-17 19:46:31', 'dxMx6p1m', '7074373'), + (86955, 1019, 2537, 'attending', '2024-03-23 15:36:56', '2025-12-17 19:46:33', 'dxMx6p1m', '7085484'), + (86956, 1019, 2539, 'attending', '2024-04-06 04:17:14', '2025-12-17 19:46:33', 'dxMx6p1m', '7085486'), + (86957, 1019, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dxMx6p1m', '7089267'), + (86958, 1019, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dxMx6p1m', '7098747'), + (86959, 1019, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dxMx6p1m', '7113468'), + (86960, 1019, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dxMx6p1m', '7114856'), + (86961, 1019, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dxMx6p1m', '7114951'), + (86962, 1019, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dxMx6p1m', '7114955'), + (86963, 1019, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dxMx6p1m', '7114956'), + (86964, 1019, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dxMx6p1m', '7114957'), + (86965, 1019, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dxMx6p1m', '7153615'), + (86966, 1019, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dxMx6p1m', '7159484'), + (86967, 1019, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dxMx6p1m', '7178446'), + (86968, 1019, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dxMx6p1m', '7220467'), + (86969, 1019, 2609, 'attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dxMx6p1m', '7240354'), + (86970, 1019, 2611, 'attending', '2024-05-06 16:26:54', '2025-12-17 19:46:35', 'dxMx6p1m', '7247642'), + (86971, 1019, 2614, 'attending', '2024-05-09 15:09:58', '2025-12-17 19:46:35', 'dxMx6p1m', '7247645'), + (86972, 1019, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dxMx6p1m', '7251633'), + (86973, 1019, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dxMx6p1m', '7263048'), + (86974, 1019, 2625, 'maybe', '2024-05-11 01:02:45', '2025-12-17 19:46:35', 'dxMx6p1m', '7263302'), + (86975, 1019, 2626, 'attending', '2024-05-18 15:28:03', '2025-12-17 19:46:35', 'dxMx6p1m', '7264723'), + (86976, 1019, 2627, 'attending', '2024-05-25 16:16:56', '2025-12-17 19:46:35', 'dxMx6p1m', '7264724'), + (86977, 1019, 2628, 'attending', '2024-06-01 15:06:45', '2025-12-17 19:46:36', 'dxMx6p1m', '7264725'), + (86978, 1019, 2629, 'attending', '2024-06-08 18:30:08', '2025-12-17 19:46:28', 'dxMx6p1m', '7264726'), + (86979, 1019, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dxMx6p1m', '7302674'), + (86980, 1019, 2666, 'maybe', '2024-06-06 20:41:07', '2025-12-17 19:46:36', 'dxMx6p1m', '7307775'), + (86981, 1019, 2678, 'not_attending', '2024-06-12 21:52:22', '2025-12-17 19:46:28', 'dxMx6p1m', '7319489'), + (86982, 1019, 2679, 'attending', '2024-06-11 02:18:04', '2025-12-17 19:46:29', 'dxMx6p1m', '7319490'), + (86983, 1019, 2687, 'attending', '2024-06-11 19:37:02', '2025-12-17 19:46:28', 'dxMx6p1m', '7324019'), + (86984, 1019, 2688, 'attending', '2024-06-23 04:52:01', '2025-12-17 19:46:29', 'dxMx6p1m', '7324073'), + (86985, 1019, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dxMx6p1m', '7324074'), + (86986, 1019, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dxMx6p1m', '7324075'), + (86987, 1019, 2691, 'attending', '2024-07-14 23:32:31', '2025-12-17 19:46:30', 'dxMx6p1m', '7324076'), + (86988, 1019, 2692, 'attending', '2024-07-27 21:14:28', '2025-12-17 19:46:30', 'dxMx6p1m', '7324077'), + (86989, 1019, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dxMx6p1m', '7324078'), + (86990, 1019, 2694, 'attending', '2024-08-08 23:35:42', '2025-12-17 19:46:31', 'dxMx6p1m', '7324079'), + (86991, 1019, 2695, 'attending', '2024-08-15 00:59:25', '2025-12-17 19:46:31', 'dxMx6p1m', '7324080'), + (86992, 1019, 2696, 'attending', '2024-08-22 16:07:38', '2025-12-17 19:46:32', 'dxMx6p1m', '7324081'), + (86993, 1019, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dxMx6p1m', '7324082'), + (86994, 1019, 2698, 'not_attending', '2024-09-01 20:15:07', '2025-12-17 19:46:24', 'dxMx6p1m', '7324083'), + (86995, 1019, 2720, 'attending', '2024-06-18 21:16:39', '2025-12-17 19:46:28', 'dxMx6p1m', '7331436'), + (86996, 1019, 2721, 'attending', '2024-06-23 04:34:55', '2025-12-17 19:46:29', 'dxMx6p1m', '7331456'), + (86997, 1019, 2722, 'maybe', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dxMx6p1m', '7331457'), + (86998, 1019, 2743, 'attending', '2024-07-01 22:17:43', '2025-12-17 19:46:29', 'dxMx6p1m', '7345688'), + (86999, 1019, 2747, 'maybe', '2024-07-17 20:56:22', '2025-12-17 19:46:30', 'dxMx6p1m', '7353587'), + (87000, 1019, 2753, 'maybe', '2024-07-16 11:38:48', '2025-12-17 19:46:30', 'dxMx6p1m', '7355538'), + (87001, 1019, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dxMx6p1m', '7356752'), + (87002, 1019, 2755, 'maybe', '2024-07-09 23:12:25', '2025-12-17 19:46:29', 'dxMx6p1m', '7357808'), + (87003, 1019, 2757, 'not_attending', '2024-07-11 15:40:57', '2025-12-17 19:46:30', 'dxMx6p1m', '7358733'), + (87004, 1019, 2764, 'not_attending', '2024-07-17 01:31:10', '2025-12-17 19:46:30', 'dxMx6p1m', '7363595'), + (87005, 1019, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dxMx6p1m', '7363643'), + (87006, 1019, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dxMx6p1m', '7368606'), + (87007, 1019, 2801, 'maybe', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dxMx6p1m', '7397462'), + (87008, 1019, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dxMx6p1m', '7424275'), + (87009, 1019, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dxMx6p1m', '7424276'), + (87010, 1019, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dxMx6p1m', '7432751'), + (87011, 1019, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dxMx6p1m', '7432752'), + (87012, 1019, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dxMx6p1m', '7432753'), + (87013, 1019, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dxMx6p1m', '7432754'), + (87014, 1019, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dxMx6p1m', '7432755'), + (87015, 1019, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dxMx6p1m', '7432756'), + (87016, 1019, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dxMx6p1m', '7432758'), + (87017, 1019, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dxMx6p1m', '7432759'), + (87018, 1019, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dxMx6p1m', '7433834'), + (87019, 1019, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dxMx6p1m', '7470197'), + (87020, 1019, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dxMx6p1m', '7685613'), + (87021, 1019, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dxMx6p1m', '7688194'), + (87022, 1019, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dxMx6p1m', '7688196'), + (87023, 1019, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dxMx6p1m', '7688289'), + (87024, 1019, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dxMx6p1m', '7692763'), + (87025, 1019, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dxMx6p1m', '7697552'), + (87026, 1019, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dxMx6p1m', '7699878'), + (87027, 1019, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dxMx6p1m', '7704043'), + (87028, 1019, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dxMx6p1m', '7712467'), + (87029, 1019, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dxMx6p1m', '7713585'), + (87030, 1019, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dxMx6p1m', '7713586'), + (87031, 1019, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dxMx6p1m', '7738518'), + (87032, 1019, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dxMx6p1m', '7750636'), + (87033, 1019, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dxMx6p1m', '7796540'), + (87034, 1019, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dxMx6p1m', '7796541'), + (87035, 1019, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dxMx6p1m', '7796542'), + (87036, 1020, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', '0mq8QOLd', '3149489'), + (87037, 1020, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', '0mq8QOLd', '3149491'), + (87038, 1020, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', '0mq8QOLd', '3236450'), + (87039, 1020, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', '0mq8QOLd', '3236452'), + (87040, 1020, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '0mq8QOLd', '3236465'), + (87041, 1020, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '0mq8QOLd', '3539918'), + (87042, 1020, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '0mq8QOLd', '3539919'), + (87043, 1020, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '0mq8QOLd', '3539920'), + (87044, 1020, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '0mq8QOLd', '3539921'), + (87045, 1020, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '0mq8QOLd', '3539922'), + (87046, 1020, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '0mq8QOLd', '3539923'), + (87047, 1020, 707, 'not_attending', '2021-04-25 02:59:22', '2025-12-17 19:47:46', '0mq8QOLd', '3583262'), + (87048, 1020, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '0mq8QOLd', '3730212'), + (87049, 1020, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '0mq8QOLd', '3793156'), + (87050, 1020, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '0mq8QOLd', '3803310'), + (87051, 1020, 806, 'not_attending', '2021-05-14 05:25:38', '2025-12-17 19:47:46', '0mq8QOLd', '3806392'), + (87052, 1020, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', '0mq8QOLd', '3963335'), + (87053, 1020, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '0mq8QOLd', '3974109'), + (87054, 1020, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '0mq8QOLd', '3975311'), + (87055, 1020, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '0mq8QOLd', '3975312'), + (87056, 1020, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '0mq8QOLd', '3994992'), + (87057, 1020, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '0mq8QOLd', '4014338'), + (87058, 1020, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '0mq8QOLd', '4136744'), + (87059, 1020, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mq8QOLd', '6045684'), + (87060, 1021, 2136, 'attending', '2023-07-25 22:04:43', '2025-12-17 19:46:53', '41GBnN8m', '6187966'), + (87061, 1021, 2137, 'attending', '2023-07-27 03:34:56', '2025-12-17 19:46:54', '41GBnN8m', '6187967'), + (87062, 1021, 2148, 'attending', '2023-07-24 02:24:48', '2025-12-17 19:46:53', '41GBnN8m', '6335667'), + (87063, 1021, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '41GBnN8m', '6337236'), + (87064, 1021, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '41GBnN8m', '6337970'), + (87065, 1021, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '41GBnN8m', '6338308'), + (87066, 1021, 2159, 'attending', '2023-07-22 16:16:14', '2025-12-17 19:46:53', '41GBnN8m', '6338355'), + (87067, 1021, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '41GBnN8m', '6341710'), + (87068, 1021, 2165, 'attending', '2023-07-27 03:35:13', '2025-12-17 19:46:54', '41GBnN8m', '6342044'), + (87069, 1021, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '41GBnN8m', '6342298'), + (87070, 1021, 2171, 'attending', '2023-07-27 03:34:11', '2025-12-17 19:46:54', '41GBnN8m', '6342328'), + (87071, 1021, 2172, 'attending', '2023-07-20 23:11:02', '2025-12-17 19:46:53', '41GBnN8m', '6342591'), + (87072, 1021, 2173, 'not_attending', '2023-07-20 05:21:44', '2025-12-17 19:46:53', '41GBnN8m', '6342769'), + (87073, 1021, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', '41GBnN8m', '6343294'), + (87074, 1021, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '41GBnN8m', '6347034'), + (87075, 1021, 2177, 'maybe', '2023-07-27 03:41:25', '2025-12-17 19:46:55', '41GBnN8m', '6347053'), + (87076, 1021, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '41GBnN8m', '6347056'), + (87077, 1021, 2180, 'attending', '2023-07-27 03:33:36', '2025-12-17 19:46:54', '41GBnN8m', '6348788'), + (87078, 1021, 2185, 'attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '41GBnN8m', '6353830'), + (87079, 1021, 2186, 'maybe', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '41GBnN8m', '6353831'), + (87080, 1021, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '41GBnN8m', '6357867'), + (87081, 1021, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '41GBnN8m', '6358652'), + (87082, 1021, 2193, 'maybe', '2023-08-06 16:42:12', '2025-12-17 19:46:54', '41GBnN8m', '6358668'), + (87083, 1021, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '41GBnN8m', '6361709'), + (87084, 1021, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '41GBnN8m', '6361710'), + (87085, 1021, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '41GBnN8m', '6361711'), + (87086, 1021, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '41GBnN8m', '6361712'), + (87087, 1021, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '41GBnN8m', '6361713'), + (87088, 1021, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '41GBnN8m', '6382573'), + (87089, 1021, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '41GBnN8m', '6388604'), + (87090, 1021, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '41GBnN8m', '6394629'), + (87091, 1021, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '41GBnN8m', '6394631'), + (87092, 1021, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '41GBnN8m', '6440863'), + (87093, 1021, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '41GBnN8m', '6445440'), + (87094, 1021, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '41GBnN8m', '6453951'), + (87095, 1021, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '41GBnN8m', '6461696'), + (87096, 1021, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '41GBnN8m', '6462129'), + (87097, 1021, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '41GBnN8m', '6463218'), + (87098, 1021, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '41GBnN8m', '6472181'), + (87099, 1021, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41GBnN8m', '6482693'), + (87100, 1021, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '41GBnN8m', '6484200'), + (87101, 1021, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '41GBnN8m', '6484680'), + (87102, 1021, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41GBnN8m', '6507741'), + (87103, 1021, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41GBnN8m', '6514659'), + (87104, 1021, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41GBnN8m', '6514660'), + (87105, 1021, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41GBnN8m', '6519103'), + (87106, 1021, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41GBnN8m', '6535681'), + (87107, 1021, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41GBnN8m', '6584747'), + (87108, 1021, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41GBnN8m', '6587097'), + (87109, 1021, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41GBnN8m', '6609022'), + (87110, 1021, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41GBnN8m', '6632757'), + (87111, 1021, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41GBnN8m', '6644187'), + (87112, 1021, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41GBnN8m', '6648951'), + (87113, 1021, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41GBnN8m', '6648952'), + (87114, 1021, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41GBnN8m', '6655401'), + (87115, 1021, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41GBnN8m', '6661585'), + (87116, 1021, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41GBnN8m', '6661588'), + (87117, 1021, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41GBnN8m', '6661589'), + (87118, 1021, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41GBnN8m', '6699906'), + (87119, 1021, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41GBnN8m', '6699913'), + (87120, 1021, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41GBnN8m', '6701109'), + (87121, 1021, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41GBnN8m', '6705219'), + (87122, 1021, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41GBnN8m', '6710153'), + (87123, 1021, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41GBnN8m', '6711552'), + (87124, 1021, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '41GBnN8m', '6711553'), + (87125, 1021, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41GBnN8m', '6722688'), + (87126, 1021, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41GBnN8m', '6730620'), + (87127, 1021, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '41GBnN8m', '6730642'), + (87128, 1021, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41GBnN8m', '6740364'), + (87129, 1021, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41GBnN8m', '6743829'), + (87130, 1021, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41GBnN8m', '7030380'), + (87131, 1021, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41GBnN8m', '7033677'), + (87132, 1021, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '41GBnN8m', '7035415'), + (87133, 1021, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '41GBnN8m', '7044715'), + (87134, 1021, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '41GBnN8m', '7050318'), + (87135, 1021, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '41GBnN8m', '7050319'), + (87136, 1021, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '41GBnN8m', '7050322'), + (87137, 1021, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '41GBnN8m', '7057804'), + (87138, 1021, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', '41GBnN8m', '7059866'), + (87139, 1021, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '41GBnN8m', '7072824'), + (87140, 1021, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '41GBnN8m', '7074348'), + (87141, 1021, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '41GBnN8m', '7089267'), + (87142, 1021, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '41GBnN8m', '7098747'), + (87143, 1021, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '41GBnN8m', '7113468'), + (87144, 1021, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '41GBnN8m', '7114856'), + (87145, 1021, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '41GBnN8m', '7114951'), + (87146, 1021, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '41GBnN8m', '7114955'), + (87147, 1021, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '41GBnN8m', '7114956'), + (87148, 1021, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '41GBnN8m', '7153615'), + (87149, 1021, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '41GBnN8m', '7159484'), + (87150, 1021, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '41GBnN8m', '7178446'), + (87151, 1022, 1379, 'not_attending', '2022-05-19 23:42:22', '2025-12-17 19:47:30', '4oMoxJwm', '5271449'), + (87152, 1022, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMoxJwm', '5365960'), + (87153, 1022, 1409, 'attending', '2022-05-18 22:24:41', '2025-12-17 19:47:30', '4oMoxJwm', '5367032'), + (87154, 1022, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMoxJwm', '5368973'), + (87155, 1022, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMoxJwm', '5378247'), + (87156, 1022, 1429, 'attending', '2022-05-30 18:26:04', '2025-12-17 19:47:30', '4oMoxJwm', '5388761'), + (87157, 1022, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4oMoxJwm', '5389605'), + (87158, 1022, 1442, 'attending', '2022-06-04 13:24:44', '2025-12-17 19:47:17', '4oMoxJwm', '5397265'), + (87159, 1022, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMoxJwm', '5403967'), + (87160, 1022, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMoxJwm', '5404786'), + (87161, 1022, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMoxJwm', '5405203'), + (87162, 1022, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMoxJwm', '5411699'), + (87163, 1022, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4oMoxJwm', '5412550'), + (87164, 1022, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMoxJwm', '5415046'), + (87165, 1022, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4oMoxJwm', '5422086'), + (87166, 1022, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4oMoxJwm', '5422406'), + (87167, 1022, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMoxJwm', '5424565'), + (87168, 1022, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMoxJwm', '5426882'), + (87169, 1022, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMoxJwm', '5427083'), + (87170, 1022, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '4oMoxJwm', '5441125'), + (87171, 1022, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4oMoxJwm', '5441126'), + (87172, 1022, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMoxJwm', '5441128'), + (87173, 1022, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMoxJwm', '5446643'), + (87174, 1022, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMoxJwm', '5453325'), + (87175, 1022, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMoxJwm', '5454516'), + (87176, 1022, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMoxJwm', '5454605'), + (87177, 1022, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMoxJwm', '5455037'), + (87178, 1022, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4oMoxJwm', '5461278'), + (87179, 1022, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMoxJwm', '5469480'), + (87180, 1022, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4oMoxJwm', '5471073'), + (87181, 1022, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMoxJwm', '5474663'), + (87182, 1022, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMoxJwm', '5482022'), + (87183, 1022, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMoxJwm', '5482793'), + (87184, 1022, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4oMoxJwm', '5488912'), + (87185, 1022, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4oMoxJwm', '5492192'), + (87186, 1022, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4oMoxJwm', '5493139'), + (87187, 1022, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4oMoxJwm', '5493200'), + (87188, 1022, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4oMoxJwm', '5502188'), + (87189, 1022, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4oMoxJwm', '5512862'), + (87190, 1022, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4oMoxJwm', '5513985'), + (87191, 1022, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMoxJwm', '6045684'), + (87192, 1023, 1259, 'attending', '2022-03-12 00:18:08', '2025-12-17 19:47:33', '41WV1yEm', '5132533'), + (87193, 1023, 1272, 'attending', '2022-03-15 22:36:43', '2025-12-17 19:47:25', '41WV1yEm', '5186582'), + (87194, 1023, 1273, 'attending', '2022-03-15 22:36:52', '2025-12-17 19:47:25', '41WV1yEm', '5186583'), + (87195, 1023, 1274, 'attending', '2022-03-15 22:36:48', '2025-12-17 19:47:26', '41WV1yEm', '5186585'), + (87196, 1023, 1281, 'maybe', '2022-03-17 22:39:33', '2025-12-17 19:47:27', '41WV1yEm', '5190437'), + (87197, 1023, 1284, 'attending', '2022-04-13 22:59:05', '2025-12-17 19:47:27', '41WV1yEm', '5195095'), + (87198, 1023, 1291, 'not_attending', '2022-04-03 01:35:15', '2025-12-17 19:47:25', '41WV1yEm', '5200458'), + (87199, 1023, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41WV1yEm', '5215989'), + (87200, 1023, 1307, 'not_attending', '2022-04-05 08:34:07', '2025-12-17 19:47:27', '41WV1yEm', '5223686'), + (87201, 1023, 1309, 'not_attending', '2022-04-07 06:19:09', '2025-12-17 19:47:26', '41WV1yEm', '5227432'), + (87202, 1023, 1318, 'not_attending', '2022-04-11 12:03:32', '2025-12-17 19:47:27', '41WV1yEm', '5238343'), + (87203, 1023, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', '41WV1yEm', '5247467'), + (87204, 1023, 1354, 'not_attending', '2022-04-22 01:12:22', '2025-12-17 19:47:27', '41WV1yEm', '5252569'), + (87205, 1023, 1362, 'not_attending', '2022-04-28 22:25:27', '2025-12-17 19:47:28', '41WV1yEm', '5260800'), + (87206, 1023, 1374, 'maybe', '2022-05-03 07:23:26', '2025-12-17 19:47:28', '41WV1yEm', '5269930'), + (87207, 1023, 1375, 'attending', '2022-05-05 22:32:58', '2025-12-17 19:47:28', '41WV1yEm', '5269932'), + (87208, 1023, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41WV1yEm', '5271448'), + (87209, 1023, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', '41WV1yEm', '5271449'), + (87210, 1023, 1380, 'maybe', '2022-05-28 08:18:41', '2025-12-17 19:47:30', '41WV1yEm', '5271450'), + (87211, 1023, 1383, 'attending', '2022-05-04 06:41:13', '2025-12-17 19:47:28', '41WV1yEm', '5276469'), + (87212, 1023, 1384, 'not_attending', '2022-05-05 22:29:08', '2025-12-17 19:47:28', '41WV1yEm', '5277078'), + (87213, 1023, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41WV1yEm', '5278159'), + (87214, 1023, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41WV1yEm', '5363695'), + (87215, 1023, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41WV1yEm', '5365960'), + (87216, 1023, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '41WV1yEm', '5368973'), + (87217, 1023, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41WV1yEm', '5378247'), + (87218, 1023, 1431, 'not_attending', '2022-06-03 22:06:23', '2025-12-17 19:47:31', '41WV1yEm', '5389605'), + (87219, 1023, 1442, 'not_attending', '2022-06-03 22:06:27', '2025-12-17 19:47:17', '41WV1yEm', '5397265'), + (87220, 1023, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41WV1yEm', '5403967'), + (87221, 1023, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41WV1yEm', '5404786'), + (87222, 1023, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41WV1yEm', '5405203'), + (87223, 1023, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41WV1yEm', '5411699'), + (87224, 1023, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '41WV1yEm', '5412550'), + (87225, 1023, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41WV1yEm', '5415046'), + (87226, 1023, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41WV1yEm', '5422086'), + (87227, 1023, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '41WV1yEm', '5422406'), + (87228, 1023, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41WV1yEm', '5424565'), + (87229, 1023, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41WV1yEm', '5426882'), + (87230, 1023, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41WV1yEm', '5427083'), + (87231, 1023, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41WV1yEm', '5441125'), + (87232, 1023, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41WV1yEm', '5441126'), + (87233, 1023, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41WV1yEm', '5441128'), + (87234, 1023, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '41WV1yEm', '5441131'), + (87235, 1023, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41WV1yEm', '5441132'), + (87236, 1023, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41WV1yEm', '5446643'), + (87237, 1023, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41WV1yEm', '5453325'), + (87238, 1023, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41WV1yEm', '5454516'), + (87239, 1023, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41WV1yEm', '5454605'), + (87240, 1023, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41WV1yEm', '5455037'), + (87241, 1023, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41WV1yEm', '5461278'), + (87242, 1023, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41WV1yEm', '5469480'), + (87243, 1023, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41WV1yEm', '5471073'), + (87244, 1023, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41WV1yEm', '5474663'), + (87245, 1023, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41WV1yEm', '5482022'), + (87246, 1023, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41WV1yEm', '5482793'), + (87247, 1023, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41WV1yEm', '5488912'), + (87248, 1023, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41WV1yEm', '5492192'), + (87249, 1023, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41WV1yEm', '5493139'), + (87250, 1023, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41WV1yEm', '5493200'), + (87251, 1023, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41WV1yEm', '5502188'), + (87252, 1023, 1608, 'attending', '2022-08-29 07:07:38', '2025-12-17 19:47:24', '41WV1yEm', '5505059'), + (87253, 1023, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41WV1yEm', '5509055'), + (87254, 1023, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41WV1yEm', '5512862'), + (87255, 1023, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41WV1yEm', '5513985'), + (87256, 1023, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '41WV1yEm', '5519981'), + (87257, 1023, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41WV1yEm', '5522550'), + (87258, 1023, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41WV1yEm', '5534683'), + (87259, 1023, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '41WV1yEm', '5537735'), + (87260, 1023, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41WV1yEm', '5540859'), + (87261, 1023, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41WV1yEm', '5546619'), + (87262, 1023, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41WV1yEm', '5555245'), + (87263, 1023, 1659, 'attending', '2022-09-23 01:35:16', '2025-12-17 19:47:11', '41WV1yEm', '5557747'), + (87264, 1023, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41WV1yEm', '5560255'), + (87265, 1023, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41WV1yEm', '5562906'), + (87266, 1023, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41WV1yEm', '5600604'), + (87267, 1023, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41WV1yEm', '5605544'), + (87268, 1023, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', '41WV1yEm', '5606737'), + (87269, 1023, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41WV1yEm', '5630960'), + (87270, 1023, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41WV1yEm', '5630961'), + (87271, 1023, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41WV1yEm', '5630962'), + (87272, 1023, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41WV1yEm', '5630966'), + (87273, 1023, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41WV1yEm', '5630967'), + (87274, 1023, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41WV1yEm', '5630968'), + (87275, 1023, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41WV1yEm', '5635406'), + (87276, 1023, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41WV1yEm', '5638765'), + (87277, 1023, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41WV1yEm', '5640097'), + (87278, 1023, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41WV1yEm', '5640843'), + (87279, 1023, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41WV1yEm', '5641521'), + (87280, 1023, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41WV1yEm', '5642818'), + (87281, 1023, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41WV1yEm', '5652395'), + (87282, 1023, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41WV1yEm', '5670445'), + (87283, 1023, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41WV1yEm', '5671637'), + (87284, 1023, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41WV1yEm', '5672329'), + (87285, 1023, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41WV1yEm', '5674057'), + (87286, 1023, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41WV1yEm', '5674060'), + (87287, 1023, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41WV1yEm', '5677461'), + (87288, 1023, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41WV1yEm', '5698046'), + (87289, 1023, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41WV1yEm', '5699760'), + (87290, 1023, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41WV1yEm', '5741601'), + (87291, 1023, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41WV1yEm', '5763458'), + (87292, 1023, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41WV1yEm', '5774172'), + (87293, 1023, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', '41WV1yEm', '5818247'), + (87294, 1023, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41WV1yEm', '5819471'), + (87295, 1023, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41WV1yEm', '5827739'), + (87296, 1023, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41WV1yEm', '5844306'), + (87297, 1023, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41WV1yEm', '5850159'), + (87298, 1023, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41WV1yEm', '5858999'), + (87299, 1023, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41WV1yEm', '5871984'), + (87300, 1023, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41WV1yEm', '5876354'), + (87301, 1023, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '41WV1yEm', '5880939'), + (87302, 1023, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41WV1yEm', '5887890'), + (87303, 1023, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41WV1yEm', '5888598'), + (87304, 1023, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41WV1yEm', '5893260'), + (87305, 1023, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41WV1yEm', '6045684'), + (87306, 1024, 259, 'attending', '2021-05-14 03:22:26', '2025-12-17 19:47:46', 'VmyZvY1A', '3149490'), + (87307, 1024, 646, 'not_attending', '2021-05-14 06:14:34', '2025-12-17 19:47:46', 'VmyZvY1A', '3539921'), + (87308, 1024, 647, 'attending', '2021-05-17 06:36:36', '2025-12-17 19:47:46', 'VmyZvY1A', '3539922'), + (87309, 1024, 648, 'not_attending', '2021-05-24 23:13:37', '2025-12-17 19:47:47', 'VmyZvY1A', '3539923'), + (87310, 1024, 741, 'not_attending', '2021-05-20 06:24:48', '2025-12-17 19:47:46', 'VmyZvY1A', '3680618'), + (87311, 1024, 742, 'not_attending', '2021-06-17 07:08:01', '2025-12-17 19:47:48', 'VmyZvY1A', '3680622'), + (87312, 1024, 744, 'attending', '2021-05-20 06:31:38', '2025-12-17 19:47:47', 'VmyZvY1A', '3680624'), + (87313, 1024, 746, 'not_attending', '2021-07-07 23:01:51', '2025-12-17 19:47:39', 'VmyZvY1A', '3680626'), + (87314, 1024, 761, 'attending', '2021-05-14 19:05:19', '2025-12-17 19:47:46', 'VmyZvY1A', '3716041'), + (87315, 1024, 797, 'not_attending', '2021-05-20 06:30:34', '2025-12-17 19:47:47', 'VmyZvY1A', '3796195'), + (87316, 1024, 804, 'not_attending', '2021-05-20 06:29:51', '2025-12-17 19:47:47', 'VmyZvY1A', '3804775'), + (87317, 1024, 806, 'not_attending', '2021-05-14 06:14:08', '2025-12-17 19:47:46', 'VmyZvY1A', '3806392'), + (87318, 1024, 815, 'attending', '2021-05-28 04:17:35', '2025-12-17 19:47:47', 'VmyZvY1A', '3818136'), + (87319, 1024, 821, 'attending', '2021-05-28 06:23:45', '2025-12-17 19:47:47', 'VmyZvY1A', '3963965'), + (87320, 1024, 823, 'attending', '2021-06-19 21:23:52', '2025-12-17 19:47:48', 'VmyZvY1A', '3974109'), + (87321, 1024, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'VmyZvY1A', '3975311'), + (87322, 1024, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'VmyZvY1A', '3975312'), + (87323, 1024, 837, 'not_attending', '2021-06-17 07:07:51', '2025-12-17 19:47:48', 'VmyZvY1A', '3992545'), + (87324, 1024, 838, 'not_attending', '2021-06-09 06:35:30', '2025-12-17 19:47:47', 'VmyZvY1A', '3994992'), + (87325, 1024, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'VmyZvY1A', '4014338'), + (87326, 1024, 848, 'not_attending', '2021-07-21 21:15:02', '2025-12-17 19:47:40', 'VmyZvY1A', '4015720'), + (87327, 1024, 866, 'not_attending', '2021-06-17 07:08:06', '2025-12-17 19:47:38', 'VmyZvY1A', '4020424'), + (87328, 1024, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'VmyZvY1A', '4021848'), + (87329, 1024, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'VmyZvY1A', '4136744'), + (87330, 1024, 870, 'not_attending', '2021-07-03 22:51:42', '2025-12-17 19:47:39', 'VmyZvY1A', '4136937'), + (87331, 1024, 871, 'not_attending', '2021-07-10 22:38:01', '2025-12-17 19:47:39', 'VmyZvY1A', '4136938'), + (87332, 1024, 872, 'not_attending', '2021-07-21 21:15:14', '2025-12-17 19:47:40', 'VmyZvY1A', '4136947'), + (87333, 1024, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'VmyZvY1A', '4210314'), + (87334, 1024, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'VmyZvY1A', '4225444'), + (87335, 1024, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'VmyZvY1A', '4239259'), + (87336, 1024, 900, 'not_attending', '2021-07-21 21:14:55', '2025-12-17 19:47:40', 'VmyZvY1A', '4240316'), + (87337, 1024, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'VmyZvY1A', '4240317'), + (87338, 1024, 902, 'not_attending', '2021-08-06 21:22:09', '2025-12-17 19:47:41', 'VmyZvY1A', '4240318'), + (87339, 1024, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'VmyZvY1A', '4240320'), + (87340, 1024, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'VmyZvY1A', '4250163'), + (87341, 1024, 909, 'not_attending', '2021-07-10 22:37:43', '2025-12-17 19:47:39', 'VmyZvY1A', '4258187'), + (87342, 1024, 919, 'maybe', '2021-07-17 06:48:30', '2025-12-17 19:47:39', 'VmyZvY1A', '4275957'), + (87343, 1024, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'VmyZvY1A', '4277819'), + (87344, 1024, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'VmyZvY1A', '4301723'), + (87345, 1024, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'VmyZvY1A', '4302093'), + (87346, 1024, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'VmyZvY1A', '4304151'), + (87347, 1024, 943, 'not_attending', '2021-08-06 21:22:25', '2025-12-17 19:47:41', 'VmyZvY1A', '4310979'), + (87348, 1024, 944, 'not_attending', '2021-08-06 21:22:42', '2025-12-17 19:47:41', 'VmyZvY1A', '4310980'), + (87349, 1024, 966, 'not_attending', '2021-08-19 19:01:05', '2025-12-17 19:47:42', 'VmyZvY1A', '4356162'), + (87350, 1024, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'VmyZvY1A', '4356801'), + (87351, 1024, 973, 'not_attending', '2021-08-19 19:02:10', '2025-12-17 19:47:42', 'VmyZvY1A', '4366186'), + (87352, 1024, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'VmyZvY1A', '4366187'), + (87353, 1024, 976, 'maybe', '2021-08-19 19:00:04', '2025-12-17 19:47:42', 'VmyZvY1A', '4373933'), + (87354, 1024, 978, 'not_attending', '2021-08-19 19:01:51', '2025-12-17 19:47:42', 'VmyZvY1A', '4378509'), + (87355, 1024, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'VmyZvY1A', '4420735'), + (87356, 1024, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'VmyZvY1A', '4420738'), + (87357, 1024, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'VmyZvY1A', '4420739'), + (87358, 1024, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'VmyZvY1A', '4420741'), + (87359, 1024, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'VmyZvY1A', '4420744'), + (87360, 1024, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'VmyZvY1A', '4420747'), + (87361, 1024, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'VmyZvY1A', '4420748'), + (87362, 1024, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'VmyZvY1A', '4420749'), + (87363, 1024, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'VmyZvY1A', '4461883'), + (87364, 1024, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'VmyZvY1A', '4508342'), + (87365, 1024, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'VmyZvY1A', '4568602'), + (87366, 1024, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'VmyZvY1A', '4572153'), + (87367, 1024, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'VmyZvY1A', '4585962'), + (87368, 1024, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'VmyZvY1A', '4596356'), + (87369, 1024, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'VmyZvY1A', '4598860'), + (87370, 1024, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'VmyZvY1A', '4598861'), + (87371, 1024, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'VmyZvY1A', '4602797'), + (87372, 1024, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'VmyZvY1A', '4637896'), + (87373, 1024, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'VmyZvY1A', '4642994'), + (87374, 1024, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'VmyZvY1A', '4642995'), + (87375, 1024, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'VmyZvY1A', '4642996'), + (87376, 1024, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'VmyZvY1A', '4642997'), + (87377, 1024, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'VmyZvY1A', '4645687'), + (87378, 1024, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'VmyZvY1A', '4645698'), + (87379, 1024, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'VmyZvY1A', '4645704'), + (87380, 1024, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'VmyZvY1A', '4645705'), + (87381, 1024, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'VmyZvY1A', '4668385'), + (87382, 1024, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'VmyZvY1A', '4694407'), + (87383, 1024, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'VmyZvY1A', '4706262'), + (87384, 1024, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'VmyZvY1A', '4736497'), + (87385, 1024, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'VmyZvY1A', '4736499'), + (87386, 1024, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'VmyZvY1A', '4736500'), + (87387, 1024, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'VmyZvY1A', '4736503'), + (87388, 1024, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'VmyZvY1A', '4736504'), + (87389, 1024, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'VmyZvY1A', '4746789'), + (87390, 1024, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'VmyZvY1A', '4753929'), + (87391, 1024, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'VmyZvY1A', '5038850'), + (87392, 1024, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'VmyZvY1A', '5045826'), + (87393, 1024, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'VmyZvY1A', '5132533'), + (87394, 1024, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'VmyZvY1A', '5186582'), + (87395, 1024, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'VmyZvY1A', '5186583'), + (87396, 1024, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'VmyZvY1A', '5186585'), + (87397, 1024, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'VmyZvY1A', '5190437'), + (87398, 1024, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmyZvY1A', '6045684'), + (87399, 1025, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd56zRMOm', '6445440'), + (87400, 1025, 2274, 'not_attending', '2023-10-04 19:10:55', '2025-12-17 19:46:45', 'd56zRMOm', '6448287'), + (87401, 1025, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd56zRMOm', '6453951'), + (87402, 1025, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd56zRMOm', '6461696'), + (87403, 1025, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd56zRMOm', '6462129'), + (87404, 1025, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd56zRMOm', '6463218'), + (87405, 1025, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd56zRMOm', '6472181'), + (87406, 1025, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd56zRMOm', '6482693'), + (87407, 1025, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd56zRMOm', '6484200'), + (87408, 1025, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd56zRMOm', '6484680'), + (87409, 1025, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd56zRMOm', '6507741'), + (87410, 1025, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd56zRMOm', '6514659'), + (87411, 1025, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd56zRMOm', '6514660'), + (87412, 1025, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd56zRMOm', '6519103'), + (87413, 1025, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd56zRMOm', '6535681'), + (87414, 1025, 2342, 'not_attending', '2023-11-13 19:45:46', '2025-12-17 19:46:47', 'd56zRMOm', '6545076'), + (87415, 1025, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd56zRMOm', '6584747'), + (87416, 1025, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd56zRMOm', '6587097'), + (87417, 1025, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd56zRMOm', '6609022'), + (87418, 1025, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd56zRMOm', '6632757'), + (87419, 1025, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd56zRMOm', '6644187'), + (87420, 1025, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd56zRMOm', '6648951'), + (87421, 1025, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd56zRMOm', '6648952'), + (87422, 1025, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'd56zRMOm', '6651141'), + (87423, 1025, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd56zRMOm', '6655401'), + (87424, 1025, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd56zRMOm', '6661585'), + (87425, 1025, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd56zRMOm', '6661588'), + (87426, 1025, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd56zRMOm', '6661589'), + (87427, 1025, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd56zRMOm', '6699906'), + (87428, 1025, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd56zRMOm', '6699913'), + (87429, 1025, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd56zRMOm', '6701109'), + (87430, 1025, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd56zRMOm', '6705219'), + (87431, 1025, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd56zRMOm', '6710153'), + (87432, 1025, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd56zRMOm', '6711552'), + (87433, 1025, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd56zRMOm', '6711553'), + (87434, 1025, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd56zRMOm', '6722688'), + (87435, 1025, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd56zRMOm', '6730620'), + (87436, 1025, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd56zRMOm', '6730642'), + (87437, 1025, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd56zRMOm', '6740364'), + (87438, 1025, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd56zRMOm', '6743829'), + (87439, 1025, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd56zRMOm', '7030380'), + (87440, 1025, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd56zRMOm', '7033677'), + (87441, 1025, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd56zRMOm', '7035415'), + (87442, 1025, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd56zRMOm', '7044715'), + (87443, 1025, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd56zRMOm', '7050318'), + (87444, 1025, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd56zRMOm', '7050319'), + (87445, 1025, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd56zRMOm', '7050322'), + (87446, 1025, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd56zRMOm', '7057804'), + (87447, 1025, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd56zRMOm', '7072824'), + (87448, 1025, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd56zRMOm', '7074348'), + (87449, 1025, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd56zRMOm', '7089267'), + (87450, 1025, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd56zRMOm', '7098747'), + (87451, 1025, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd56zRMOm', '7113468'), + (87452, 1025, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd56zRMOm', '7114856'), + (87453, 1025, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd56zRMOm', '7114951'), + (87454, 1025, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd56zRMOm', '7114955'), + (87455, 1025, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd56zRMOm', '7114956'), + (87456, 1025, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd56zRMOm', '7153615'), + (87457, 1025, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd56zRMOm', '7159484'), + (87458, 1025, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd56zRMOm', '7178446'), + (87459, 1026, 1010, 'attending', '2021-11-05 22:52:44', '2025-12-17 19:47:36', '4kRQerLA', '4438812'), + (87460, 1026, 1011, 'not_attending', '2021-10-29 11:20:28', '2025-12-17 19:47:36', '4kRQerLA', '4438814'), + (87461, 1026, 1012, 'not_attending', '2021-10-30 15:35:52', '2025-12-17 19:47:36', '4kRQerLA', '4438816'), + (87462, 1026, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4kRQerLA', '4596356'), + (87463, 1026, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4kRQerLA', '4598860'), + (87464, 1026, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4kRQerLA', '4598861'), + (87465, 1026, 1099, 'maybe', '2021-11-06 04:38:33', '2025-12-17 19:47:36', '4kRQerLA', '4602797'), + (87466, 1026, 1109, 'attending', '2021-11-13 03:39:55', '2025-12-17 19:47:37', '4kRQerLA', '4635221'), + (87467, 1026, 1110, 'attending', '2021-11-13 03:39:58', '2025-12-17 19:47:37', '4kRQerLA', '4635224'), + (87468, 1026, 1113, 'not_attending', '2021-11-27 19:33:38', '2025-12-17 19:47:37', '4kRQerLA', '4635421'), + (87469, 1026, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4kRQerLA', '4637896'), + (87470, 1026, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4kRQerLA', '4642994'), + (87471, 1026, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4kRQerLA', '4642995'), + (87472, 1026, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4kRQerLA', '4642996'), + (87473, 1026, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4kRQerLA', '4642997'), + (87474, 1026, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4kRQerLA', '4645687'), + (87475, 1026, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4kRQerLA', '4645698'), + (87476, 1026, 1128, 'attending', '2021-11-20 22:59:46', '2025-12-17 19:47:37', '4kRQerLA', '4645704'), + (87477, 1026, 1129, 'attending', '2021-11-21 03:51:03', '2025-12-17 19:47:37', '4kRQerLA', '4645705'), + (87478, 1026, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4kRQerLA', '4668385'), + (87479, 1026, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4kRQerLA', '4694407'), + (87480, 1026, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '4kRQerLA', '4706262'), + (87481, 1026, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4kRQerLA', '4736497'), + (87482, 1026, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4kRQerLA', '4736499'), + (87483, 1026, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4kRQerLA', '4736500'), + (87484, 1026, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kRQerLA', '4736503'), + (87485, 1026, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kRQerLA', '4736504'), + (87486, 1026, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4kRQerLA', '4746789'), + (87487, 1026, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4kRQerLA', '4753929'), + (87488, 1026, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4kRQerLA', '5038850'), + (87489, 1026, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4kRQerLA', '5045826'), + (87490, 1026, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kRQerLA', '5132533'), + (87491, 1026, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4kRQerLA', '5186582'), + (87492, 1026, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4kRQerLA', '5186583'), + (87493, 1026, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4kRQerLA', '5186585'), + (87494, 1026, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4kRQerLA', '5190437'), + (87495, 1026, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4kRQerLA', '5215989'), + (87496, 1026, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kRQerLA', '6045684'), + (87497, 1027, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'N4Er0JRd', '3149491'), + (87498, 1027, 395, 'not_attending', '2021-06-07 16:53:08', '2025-12-17 19:47:47', 'N4Er0JRd', '3236450'), + (87499, 1027, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'N4Er0JRd', '3975312'), + (87500, 1027, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'N4Er0JRd', '4014338'), + (87501, 1027, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4Er0JRd', '6045684'), + (87502, 1028, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd8b7vrVA', '5630960'), + (87503, 1028, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd8b7vrVA', '5630961'), + (87504, 1028, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd8b7vrVA', '5630962'), + (87505, 1028, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd8b7vrVA', '5630966'), + (87506, 1028, 1738, 'not_attending', '2022-10-21 01:08:00', '2025-12-17 19:47:14', 'd8b7vrVA', '5638765'), + (87507, 1028, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd8b7vrVA', '5640097'), + (87508, 1028, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd8b7vrVA', '5652395'), + (87509, 1028, 1752, 'attending', '2022-10-15 02:50:43', '2025-12-17 19:47:12', 'd8b7vrVA', '5653503'), + (87510, 1028, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd8b7vrVA', '5671637'), + (87511, 1028, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd8b7vrVA', '5672329'), + (87512, 1028, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd8b7vrVA', '5674057'), + (87513, 1028, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd8b7vrVA', '5674060'), + (87514, 1028, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd8b7vrVA', '5677461'), + (87515, 1028, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd8b7vrVA', '5698046'), + (87516, 1028, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'd8b7vrVA', '5699760'), + (87517, 1028, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd8b7vrVA', '6045684'), + (87518, 1029, 401, 'attending', '2021-05-07 22:57:01', '2025-12-17 19:47:46', 'R40yKWEd', '3236456'), + (87519, 1029, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'R40yKWEd', '3539920'), + (87520, 1029, 646, 'maybe', '2021-05-12 17:40:36', '2025-12-17 19:47:46', 'R40yKWEd', '3539921'), + (87521, 1029, 647, 'attending', '2021-05-21 02:41:05', '2025-12-17 19:47:46', 'R40yKWEd', '3539922'), + (87522, 1029, 648, 'attending', '2021-05-26 16:57:59', '2025-12-17 19:47:47', 'R40yKWEd', '3539923'), + (87523, 1029, 805, 'maybe', '2021-06-07 19:24:44', '2025-12-17 19:47:47', 'R40yKWEd', '3804777'), + (87524, 1029, 808, 'attending', '2021-05-20 17:10:09', '2025-12-17 19:47:46', 'R40yKWEd', '3807358'), + (87525, 1029, 815, 'not_attending', '2021-05-27 15:47:13', '2025-12-17 19:47:47', 'R40yKWEd', '3818136'), + (87526, 1029, 818, 'attending', '2021-05-27 15:47:42', '2025-12-17 19:47:47', 'R40yKWEd', '3833015'), + (87527, 1029, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40yKWEd', '3974109'), + (87528, 1029, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'R40yKWEd', '3975311'), + (87529, 1029, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40yKWEd', '3975312'), + (87530, 1029, 834, 'not_attending', '2021-06-10 22:46:15', '2025-12-17 19:47:47', 'R40yKWEd', '3990439'), + (87531, 1029, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'R40yKWEd', '3994992'), + (87532, 1029, 841, 'attending', '2021-06-14 19:39:34', '2025-12-17 19:47:48', 'R40yKWEd', '4007434'), + (87533, 1029, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40yKWEd', '4014338'), + (87534, 1029, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'R40yKWEd', '4021848'), + (87535, 1029, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40yKWEd', '4136744'), + (87536, 1029, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40yKWEd', '4136937'), + (87537, 1029, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40yKWEd', '4136938'), + (87538, 1029, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40yKWEd', '4136947'), + (87539, 1029, 873, 'attending', '2021-06-16 16:17:49', '2025-12-17 19:47:48', 'R40yKWEd', '4138297'), + (87540, 1029, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'R40yKWEd', '4210314'), + (87541, 1029, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40yKWEd', '4225444'), + (87542, 1029, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40yKWEd', '4239259'), + (87543, 1029, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'R40yKWEd', '4240316'), + (87544, 1029, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'R40yKWEd', '4240317'), + (87545, 1029, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'R40yKWEd', '4240318'), + (87546, 1029, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'R40yKWEd', '4240320'), + (87547, 1029, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40yKWEd', '4250163'), + (87548, 1029, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'R40yKWEd', '4275957'), + (87549, 1029, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'R40yKWEd', '4277819'), + (87550, 1029, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'R40yKWEd', '4301723'), + (87551, 1029, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'R40yKWEd', '4302093'), + (87552, 1029, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'R40yKWEd', '4304151'), + (87553, 1029, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'R40yKWEd', '4345519'), + (87554, 1029, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'R40yKWEd', '4358025'), + (87555, 1029, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'R40yKWEd', '4366186'), + (87556, 1029, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'R40yKWEd', '4366187'), + (87557, 1029, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40yKWEd', '6045684'), + (87558, 1030, 1175, 'attending', '2022-01-22 23:36:40', '2025-12-17 19:47:32', 'mbqWlw6d', '4736497'), + (87559, 1030, 1176, 'maybe', '2022-02-05 23:58:36', '2025-12-17 19:47:32', 'mbqWlw6d', '4736498'), + (87560, 1030, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'mbqWlw6d', '4736499'), + (87561, 1030, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mbqWlw6d', '4736500'), + (87562, 1030, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mbqWlw6d', '4736503'), + (87563, 1030, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mbqWlw6d', '4736504'), + (87564, 1030, 1211, 'maybe', '2022-01-27 11:29:43', '2025-12-17 19:47:32', 'mbqWlw6d', '4780754'), + (87565, 1030, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'mbqWlw6d', '5038850'), + (87566, 1030, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mbqWlw6d', '5045826'), + (87567, 1030, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mbqWlw6d', '5132533'), + (87568, 1030, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mbqWlw6d', '6045684'), + (87569, 1031, 1125, 'attending', '2021-12-18 12:00:53', '2025-12-17 19:47:31', 'NmLjz6g4', '4644027'), + (87570, 1031, 1171, 'attending', '2022-01-02 04:33:58', '2025-12-17 19:47:31', 'NmLjz6g4', '4733292'), + (87571, 1031, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmLjz6g4', '4736497'), + (87572, 1031, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmLjz6g4', '4736500'), + (87573, 1031, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLjz6g4', '4746789'), + (87574, 1031, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmLjz6g4', '4753929'), + (87575, 1031, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLjz6g4', '6045684'), + (87576, 1032, 2199, 'not_attending', '2023-08-16 08:29:32', '2025-12-17 19:46:55', 'd2wKPkZm', '6359849'), + (87577, 1032, 2203, 'attending', '2023-08-08 02:39:09', '2025-12-17 19:46:55', 'd2wKPkZm', '6361524'), + (87578, 1032, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'd2wKPkZm', '6361709'), + (87579, 1032, 2209, 'attending', '2023-08-22 00:33:33', '2025-12-17 19:46:55', 'd2wKPkZm', '6361710'), + (87580, 1032, 2210, 'attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'd2wKPkZm', '6361711'), + (87581, 1032, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'd2wKPkZm', '6361712'), + (87582, 1032, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'd2wKPkZm', '6361713'), + (87583, 1032, 2215, 'attending', '2023-08-11 20:36:50', '2025-12-17 19:46:55', 'd2wKPkZm', '6363479'), + (87584, 1032, 2232, 'not_attending', '2023-08-25 22:28:26', '2025-12-17 19:46:55', 'd2wKPkZm', '6374818'), + (87585, 1032, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'd2wKPkZm', '6382573'), + (87586, 1032, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'd2wKPkZm', '6388604'), + (87587, 1032, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'd2wKPkZm', '6394629'), + (87588, 1032, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'd2wKPkZm', '6394631'), + (87589, 1032, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'd2wKPkZm', '6440863'), + (87590, 1032, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'd2wKPkZm', '6445440'), + (87591, 1032, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'd2wKPkZm', '6453951'), + (87592, 1032, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'd2wKPkZm', '6461696'), + (87593, 1032, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'd2wKPkZm', '6462129'), + (87594, 1032, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'd2wKPkZm', '6463218'), + (87595, 1032, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'd2wKPkZm', '6472181'), + (87596, 1032, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'd2wKPkZm', '6482693'), + (87597, 1032, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'd2wKPkZm', '6484200'), + (87598, 1032, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'd2wKPkZm', '6484680'), + (87599, 1032, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'd2wKPkZm', '6507741'), + (87600, 1032, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'd2wKPkZm', '6514659'), + (87601, 1032, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd2wKPkZm', '6514660'), + (87602, 1032, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'd2wKPkZm', '6519103'), + (87603, 1032, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'd2wKPkZm', '6535681'), + (87604, 1032, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd2wKPkZm', '6584747'), + (87605, 1032, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd2wKPkZm', '6587097'), + (87606, 1032, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd2wKPkZm', '6609022'), + (87607, 1032, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd2wKPkZm', '6632757'), + (87608, 1032, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd2wKPkZm', '6644187'), + (87609, 1032, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd2wKPkZm', '6648951'), + (87610, 1032, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd2wKPkZm', '6648952'), + (87611, 1032, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd2wKPkZm', '6655401'), + (87612, 1032, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd2wKPkZm', '6661585'), + (87613, 1032, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd2wKPkZm', '6661588'), + (87614, 1032, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd2wKPkZm', '6661589'), + (87615, 1032, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd2wKPkZm', '6699906'), + (87616, 1032, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd2wKPkZm', '6699913'), + (87617, 1032, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd2wKPkZm', '6701109'), + (87618, 1032, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd2wKPkZm', '6705219'), + (87619, 1032, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd2wKPkZm', '6710153'), + (87620, 1032, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd2wKPkZm', '6711552'), + (87621, 1032, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd2wKPkZm', '6711553'), + (87622, 1032, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd2wKPkZm', '6722688'), + (87623, 1032, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd2wKPkZm', '6730620'), + (87624, 1032, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd2wKPkZm', '6730642'), + (87625, 1032, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd2wKPkZm', '6740364'), + (87626, 1032, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd2wKPkZm', '6743829'), + (87627, 1032, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd2wKPkZm', '7030380'), + (87628, 1032, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd2wKPkZm', '7033677'), + (87629, 1032, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd2wKPkZm', '7035415'), + (87630, 1032, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd2wKPkZm', '7044715'), + (87631, 1032, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd2wKPkZm', '7050318'), + (87632, 1032, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd2wKPkZm', '7050319'), + (87633, 1032, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd2wKPkZm', '7050322'), + (87634, 1032, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd2wKPkZm', '7057804'), + (87635, 1032, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'd2wKPkZm', '7059866'), + (87636, 1032, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd2wKPkZm', '7072824'), + (87637, 1032, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd2wKPkZm', '7074348'), + (87638, 1032, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd2wKPkZm', '7089267'), + (87639, 1032, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd2wKPkZm', '7098747'), + (87640, 1032, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd2wKPkZm', '7113468'), + (87641, 1032, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd2wKPkZm', '7114856'), + (87642, 1032, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd2wKPkZm', '7114951'), + (87643, 1032, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd2wKPkZm', '7114955'), + (87644, 1032, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd2wKPkZm', '7114956'), + (87645, 1032, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd2wKPkZm', '7153615'), + (87646, 1032, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd2wKPkZm', '7159484'), + (87647, 1032, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd2wKPkZm', '7178446'), + (87648, 1033, 2075, 'not_attending', '2023-07-01 12:40:40', '2025-12-17 19:46:50', 'dJNwVJ6d', '6107314'), + (87649, 1033, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dJNwVJ6d', '6176439'), + (87650, 1033, 2125, 'attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'dJNwVJ6d', '6177485'), + (87651, 1033, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'dJNwVJ6d', '6182410'), + (87652, 1033, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dJNwVJ6d', '6185812'), + (87653, 1033, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dJNwVJ6d', '6187651'), + (87654, 1033, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dJNwVJ6d', '6187963'), + (87655, 1033, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dJNwVJ6d', '6187964'), + (87656, 1033, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dJNwVJ6d', '6187966'), + (87657, 1033, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dJNwVJ6d', '6187967'), + (87658, 1033, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dJNwVJ6d', '6187969'), + (87659, 1033, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dJNwVJ6d', '6334878'), + (87660, 1033, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dJNwVJ6d', '6337236'), + (87661, 1033, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dJNwVJ6d', '6337970'), + (87662, 1033, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dJNwVJ6d', '6338308'), + (87663, 1033, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dJNwVJ6d', '6340845'), + (87664, 1033, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dJNwVJ6d', '6341710'), + (87665, 1033, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dJNwVJ6d', '6342044'), + (87666, 1033, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dJNwVJ6d', '6342298'), + (87667, 1033, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dJNwVJ6d', '6343294'), + (87668, 1033, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dJNwVJ6d', '6347034'), + (87669, 1033, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dJNwVJ6d', '6347056'), + (87670, 1033, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dJNwVJ6d', '6353830'), + (87671, 1033, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dJNwVJ6d', '6353831'), + (87672, 1033, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dJNwVJ6d', '6357867'), + (87673, 1033, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dJNwVJ6d', '6358652'), + (87674, 1033, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dJNwVJ6d', '6361709'), + (87675, 1033, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dJNwVJ6d', '6361710'), + (87676, 1033, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dJNwVJ6d', '6361711'), + (87677, 1033, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dJNwVJ6d', '6361712'), + (87678, 1033, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dJNwVJ6d', '6361713'), + (87679, 1033, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dJNwVJ6d', '6382573'), + (87680, 1033, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dJNwVJ6d', '6388604'), + (87681, 1033, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dJNwVJ6d', '6394629'), + (87682, 1033, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dJNwVJ6d', '6394631'), + (87683, 1033, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dJNwVJ6d', '6440863'), + (87684, 1033, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dJNwVJ6d', '6445440'), + (87685, 1033, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dJNwVJ6d', '6453951'), + (87686, 1033, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dJNwVJ6d', '6461696'), + (87687, 1033, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dJNwVJ6d', '6462129'), + (87688, 1033, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dJNwVJ6d', '6463218'), + (87689, 1033, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dJNwVJ6d', '6472181'), + (87690, 1033, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dJNwVJ6d', '6482693'), + (87691, 1033, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dJNwVJ6d', '6484200'), + (87692, 1033, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dJNwVJ6d', '6484680'), + (87693, 1033, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dJNwVJ6d', '6507741'), + (87694, 1033, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dJNwVJ6d', '6514659'), + (87695, 1033, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dJNwVJ6d', '6514660'), + (87696, 1033, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dJNwVJ6d', '6519103'), + (87697, 1033, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dJNwVJ6d', '6535681'), + (87698, 1033, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dJNwVJ6d', '6584747'), + (87699, 1033, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dJNwVJ6d', '6587097'), + (87700, 1033, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dJNwVJ6d', '6609022'), + (87701, 1033, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dJNwVJ6d', '6632757'), + (87702, 1033, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dJNwVJ6d', '6644187'), + (87703, 1033, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dJNwVJ6d', '6648951'), + (87704, 1033, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dJNwVJ6d', '6648952'), + (87705, 1033, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dJNwVJ6d', '6655401'), + (87706, 1033, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dJNwVJ6d', '6661585'), + (87707, 1033, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dJNwVJ6d', '6661588'), + (87708, 1033, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dJNwVJ6d', '6661589'), + (87709, 1033, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dJNwVJ6d', '6699906'), + (87710, 1033, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'dJNwVJ6d', '6699913'), + (87711, 1033, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dJNwVJ6d', '6701109'), + (87712, 1033, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dJNwVJ6d', '6705219'), + (87713, 1033, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dJNwVJ6d', '6710153'), + (87714, 1033, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dJNwVJ6d', '6711552'), + (87715, 1033, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dJNwVJ6d', '6711553'), + (87716, 1033, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dJNwVJ6d', '6722688'), + (87717, 1033, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dJNwVJ6d', '6730620'), + (87718, 1033, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dJNwVJ6d', '6730642'), + (87719, 1033, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dJNwVJ6d', '6740364'), + (87720, 1033, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dJNwVJ6d', '6743829'), + (87721, 1033, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dJNwVJ6d', '7030380'), + (87722, 1033, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dJNwVJ6d', '7033677'), + (87723, 1033, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dJNwVJ6d', '7035415'), + (87724, 1033, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dJNwVJ6d', '7044715'), + (87725, 1033, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dJNwVJ6d', '7050318'), + (87726, 1033, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dJNwVJ6d', '7050319'), + (87727, 1033, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dJNwVJ6d', '7050322'), + (87728, 1033, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dJNwVJ6d', '7057804'), + (87729, 1033, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:43', 'dJNwVJ6d', '7059866'), + (87730, 1033, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dJNwVJ6d', '7072824'), + (87731, 1033, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dJNwVJ6d', '7074348'), + (87732, 1033, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dJNwVJ6d', '7089267'), + (87733, 1033, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dJNwVJ6d', '7098747'), + (87734, 1033, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dJNwVJ6d', '7113468'), + (87735, 1033, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dJNwVJ6d', '7114856'), + (87736, 1033, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dJNwVJ6d', '7114951'), + (87737, 1033, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dJNwVJ6d', '7114955'), + (87738, 1033, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dJNwVJ6d', '7114956'), + (87739, 1033, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dJNwVJ6d', '7153615'), + (87740, 1033, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dJNwVJ6d', '7159484'), + (87741, 1033, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dJNwVJ6d', '7178446'), + (87742, 1034, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4v8qbebm', '6045684'), + (87743, 1035, 857, 'maybe', '2021-11-24 04:52:30', '2025-12-17 19:47:37', '41oPGr8m', '4015731'), + (87744, 1035, 1010, 'attending', '2021-11-05 22:58:48', '2025-12-17 19:47:36', '41oPGr8m', '4438812'), + (87745, 1035, 1012, 'not_attending', '2021-11-06 05:12:21', '2025-12-17 19:47:36', '41oPGr8m', '4438816'), + (87746, 1035, 1049, 'attending', '2022-01-22 22:33:29', '2025-12-17 19:47:32', '41oPGr8m', '4496614'), + (87747, 1035, 1050, 'maybe', '2022-01-27 07:33:40', '2025-12-17 19:47:32', '41oPGr8m', '4496615'), + (87748, 1035, 1051, 'attending', '2022-02-05 21:32:24', '2025-12-17 19:47:32', '41oPGr8m', '4496616'), + (87749, 1035, 1052, 'attending', '2022-01-14 03:16:07', '2025-12-17 19:47:31', '41oPGr8m', '4496617'), + (87750, 1035, 1053, 'attending', '2022-02-19 22:48:28', '2025-12-17 19:47:32', '41oPGr8m', '4496618'), + (87751, 1035, 1054, 'attending', '2022-03-19 21:16:59', '2025-12-17 19:47:25', '41oPGr8m', '4496619'), + (87752, 1035, 1056, 'attending', '2022-01-08 22:40:57', '2025-12-17 19:47:31', '41oPGr8m', '4496622'), + (87753, 1035, 1058, 'attending', '2022-02-26 22:20:59', '2025-12-17 19:47:33', '41oPGr8m', '4496625'), + (87754, 1035, 1061, 'maybe', '2022-02-08 20:20:56', '2025-12-17 19:47:32', '41oPGr8m', '4496628'), + (87755, 1035, 1062, 'maybe', '2022-03-03 04:38:13', '2025-12-17 19:47:33', '41oPGr8m', '4496629'), + (87756, 1035, 1085, 'maybe', '2021-12-22 18:11:07', '2025-12-17 19:47:31', '41oPGr8m', '4568542'), + (87757, 1035, 1099, 'attending', '2021-11-05 04:23:50', '2025-12-17 19:47:36', '41oPGr8m', '4602797'), + (87758, 1035, 1108, 'maybe', '2021-11-24 03:16:12', '2025-12-17 19:47:37', '41oPGr8m', '4632276'), + (87759, 1035, 1109, 'attending', '2021-11-20 21:49:58', '2025-12-17 19:47:37', '41oPGr8m', '4635221'), + (87760, 1035, 1110, 'attending', '2021-11-20 21:49:51', '2025-12-17 19:47:37', '41oPGr8m', '4635224'), + (87761, 1035, 1111, 'not_attending', '2021-12-06 09:09:28', '2025-12-17 19:47:31', '41oPGr8m', '4635279'), + (87762, 1035, 1112, 'attending', '2021-12-04 05:31:23', '2025-12-17 19:47:37', '41oPGr8m', '4635420'), + (87763, 1035, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '41oPGr8m', '4637896'), + (87764, 1035, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '41oPGr8m', '4642994'), + (87765, 1035, 1117, 'attending', '2021-12-08 23:39:55', '2025-12-17 19:47:37', '41oPGr8m', '4642995'), + (87766, 1035, 1118, 'attending', '2021-12-15 21:54:32', '2025-12-17 19:47:38', '41oPGr8m', '4642996'), + (87767, 1035, 1119, 'attending', '2021-12-22 18:10:37', '2025-12-17 19:47:31', '41oPGr8m', '4642997'), + (87768, 1035, 1126, 'attending', '2021-12-07 00:09:08', '2025-12-17 19:47:38', '41oPGr8m', '4645687'), + (87769, 1035, 1127, 'maybe', '2021-12-12 20:35:27', '2025-12-17 19:47:38', '41oPGr8m', '4645698'), + (87770, 1035, 1128, 'attending', '2021-11-20 21:50:02', '2025-12-17 19:47:37', '41oPGr8m', '4645704'), + (87771, 1035, 1129, 'attending', '2021-11-25 18:26:49', '2025-12-17 19:47:37', '41oPGr8m', '4645705'), + (87772, 1035, 1130, 'attending', '2021-12-04 15:12:59', '2025-12-17 19:47:37', '41oPGr8m', '4658824'), + (87773, 1035, 1131, 'attending', '2021-12-07 00:18:43', '2025-12-17 19:47:31', '41oPGr8m', '4658825'), + (87774, 1035, 1132, 'maybe', '2021-11-22 00:17:06', '2025-12-17 19:47:37', '41oPGr8m', '4660657'), + (87775, 1035, 1133, 'attending', '2021-11-24 00:40:18', '2025-12-17 19:47:37', '41oPGr8m', '4661671'), + (87776, 1035, 1134, 'attending', '2021-11-25 00:22:19', '2025-12-17 19:47:37', '41oPGr8m', '4668385'), + (87777, 1035, 1139, 'maybe', '2021-12-01 22:22:26', '2025-12-17 19:47:37', '41oPGr8m', '4675604'), + (87778, 1035, 1140, 'attending', '2021-12-04 01:19:59', '2025-12-17 19:47:37', '41oPGr8m', '4679701'), + (87779, 1035, 1142, 'attending', '2021-12-06 09:09:45', '2025-12-17 19:47:37', '41oPGr8m', '4681923'), + (87780, 1035, 1143, 'attending', '2021-12-01 22:21:11', '2025-12-17 19:47:37', '41oPGr8m', '4683667'), + (87781, 1035, 1145, 'attending', '2021-12-06 18:14:32', '2025-12-17 19:47:38', '41oPGr8m', '4691157'), + (87782, 1035, 1146, 'attending', '2021-12-10 21:18:01', '2025-12-17 19:47:38', '41oPGr8m', '4692841'), + (87783, 1035, 1147, 'maybe', '2021-12-07 00:18:28', '2025-12-17 19:47:38', '41oPGr8m', '4692842'), + (87784, 1035, 1148, 'maybe', '2021-12-07 00:18:34', '2025-12-17 19:47:31', '41oPGr8m', '4692843'), + (87785, 1035, 1149, 'maybe', '2021-12-10 21:18:33', '2025-12-17 19:47:38', '41oPGr8m', '4694407'), + (87786, 1035, 1150, 'attending', '2021-12-16 19:48:25', '2025-12-17 19:47:38', '41oPGr8m', '4706262'), + (87787, 1035, 1151, 'maybe', '2021-12-27 23:37:14', '2025-12-17 19:47:31', '41oPGr8m', '4708704'), + (87788, 1035, 1155, 'maybe', '2021-12-18 20:15:47', '2025-12-17 19:47:31', '41oPGr8m', '4715119'), + (87789, 1035, 1156, 'attending', '2021-12-18 21:32:31', '2025-12-17 19:47:31', '41oPGr8m', '4715207'), + (87790, 1035, 1158, 'maybe', '2021-12-19 01:24:44', '2025-12-17 19:47:31', '41oPGr8m', '4715311'), + (87791, 1035, 1159, 'attending', '2022-01-05 00:36:09', '2025-12-17 19:47:31', '41oPGr8m', '4717532'), + (87792, 1035, 1162, 'not_attending', '2022-01-08 00:25:22', '2025-12-17 19:47:31', '41oPGr8m', '4718771'), + (87793, 1035, 1163, 'maybe', '2021-12-27 23:37:30', '2025-12-17 19:47:31', '41oPGr8m', '4724206'), + (87794, 1035, 1164, 'maybe', '2021-12-27 23:37:02', '2025-12-17 19:47:31', '41oPGr8m', '4724208'), + (87795, 1035, 1165, 'maybe', '2021-12-27 23:37:07', '2025-12-17 19:47:31', '41oPGr8m', '4724210'), + (87796, 1035, 1166, 'maybe', '2022-01-03 02:07:16', '2025-12-17 19:47:31', '41oPGr8m', '4725109'), + (87797, 1035, 1170, 'maybe', '2022-01-03 02:07:06', '2025-12-17 19:47:31', '41oPGr8m', '4731045'), + (87798, 1035, 1173, 'attending', '2022-01-08 22:40:54', '2025-12-17 19:47:31', '41oPGr8m', '4736495'), + (87799, 1035, 1174, 'attending', '2022-01-14 03:16:04', '2025-12-17 19:47:31', '41oPGr8m', '4736496'), + (87800, 1035, 1175, 'attending', '2022-01-21 21:42:51', '2025-12-17 19:47:32', '41oPGr8m', '4736497'), + (87801, 1035, 1176, 'attending', '2022-01-31 21:31:20', '2025-12-17 19:47:32', '41oPGr8m', '4736498'), + (87802, 1035, 1177, 'attending', '2022-02-11 23:04:01', '2025-12-17 19:47:32', '41oPGr8m', '4736499'), + (87803, 1035, 1178, 'attending', '2022-01-29 21:45:45', '2025-12-17 19:47:32', '41oPGr8m', '4736500'), + (87804, 1035, 1179, 'attending', '2022-02-15 19:37:26', '2025-12-17 19:47:32', '41oPGr8m', '4736501'), + (87805, 1035, 1180, 'attending', '2022-02-26 22:21:06', '2025-12-17 19:47:33', '41oPGr8m', '4736502'), + (87806, 1035, 1181, 'attending', '2022-03-05 23:25:25', '2025-12-17 19:47:33', '41oPGr8m', '4736503'), + (87807, 1035, 1182, 'attending', '2022-03-06 10:06:43', '2025-12-17 19:47:33', '41oPGr8m', '4736504'), + (87808, 1035, 1185, 'maybe', '2022-01-09 05:48:32', '2025-12-17 19:47:31', '41oPGr8m', '4746789'), + (87809, 1035, 1188, 'not_attending', '2022-01-17 22:31:00', '2025-12-17 19:47:32', '41oPGr8m', '4753929'), + (87810, 1035, 1193, 'maybe', '2022-01-20 09:31:31', '2025-12-17 19:47:32', '41oPGr8m', '4759563'), + (87811, 1035, 1196, 'maybe', '2022-01-21 21:42:32', '2025-12-17 19:47:32', '41oPGr8m', '4765583'), + (87812, 1035, 1198, 'attending', '2022-01-24 23:07:36', '2025-12-17 19:47:32', '41oPGr8m', '4766801'), + (87813, 1035, 1199, 'attending', '2022-01-24 23:11:53', '2025-12-17 19:47:32', '41oPGr8m', '4766802'), + (87814, 1035, 1203, 'not_attending', '2022-01-23 22:48:06', '2025-12-17 19:47:32', '41oPGr8m', '4773535'), + (87815, 1035, 1204, 'not_attending', '2022-02-11 23:04:17', '2025-12-17 19:47:32', '41oPGr8m', '4773576'), + (87816, 1035, 1208, 'maybe', '2022-01-25 01:02:29', '2025-12-17 19:47:32', '41oPGr8m', '4774419'), + (87817, 1035, 1215, 'attending', '2022-02-25 23:59:01', '2025-12-17 19:47:33', '41oPGr8m', '4780763'), + (87818, 1035, 1221, 'attending', '2022-01-29 22:02:02', '2025-12-17 19:47:32', '41oPGr8m', '4790261'), + (87819, 1035, 1223, 'attending', '2022-02-05 21:28:30', '2025-12-17 19:47:32', '41oPGr8m', '5015635'), + (87820, 1035, 1225, 'attending', '2022-02-04 18:19:29', '2025-12-17 19:47:32', '41oPGr8m', '5019063'), + (87821, 1035, 1227, 'maybe', '2022-02-10 17:35:43', '2025-12-17 19:47:32', '41oPGr8m', '5027602'), + (87822, 1035, 1228, 'not_attending', '2022-02-11 23:03:55', '2025-12-17 19:47:32', '41oPGr8m', '5028238'), + (87823, 1035, 1229, 'maybe', '2022-02-12 20:29:59', '2025-12-17 19:47:32', '41oPGr8m', '5034963'), + (87824, 1035, 1230, 'maybe', '2022-02-08 20:20:26', '2025-12-17 19:47:32', '41oPGr8m', '5037632'), + (87825, 1035, 1231, 'not_attending', '2022-02-12 20:30:22', '2025-12-17 19:47:33', '41oPGr8m', '5037637'), + (87826, 1035, 1232, 'attending', '2022-02-09 23:26:08', '2025-12-17 19:47:32', '41oPGr8m', '5038850'), + (87827, 1035, 1235, 'not_attending', '2022-02-12 20:30:29', '2025-12-17 19:47:32', '41oPGr8m', '5044505'), + (87828, 1035, 1236, 'not_attending', '2022-02-15 19:37:09', '2025-12-17 19:47:32', '41oPGr8m', '5045826'), + (87829, 1035, 1239, 'attending', '2022-03-02 21:19:34', '2025-12-17 19:47:33', '41oPGr8m', '5052238'), + (87830, 1035, 1240, 'attending', '2022-03-16 15:46:04', '2025-12-17 19:47:33', '41oPGr8m', '5052239'), + (87831, 1035, 1241, 'maybe', '2022-03-23 16:49:13', '2025-12-17 19:47:25', '41oPGr8m', '5052240'), + (87832, 1035, 1243, 'attending', '2022-03-06 05:48:24', '2025-12-17 19:47:33', '41oPGr8m', '5058336'), + (87833, 1035, 1244, 'attending', '2022-02-21 04:29:42', '2025-12-17 19:47:33', '41oPGr8m', '5060490'), + (87834, 1035, 1245, 'attending', '2022-03-02 21:19:37', '2025-12-17 19:47:33', '41oPGr8m', '5061301'), + (87835, 1035, 1249, 'attending', '2022-03-09 20:22:57', '2025-12-17 19:47:33', '41oPGr8m', '5068530'), + (87836, 1035, 1253, 'maybe', '2022-02-28 20:22:49', '2025-12-17 19:47:33', '41oPGr8m', '5129122'), + (87837, 1035, 1254, 'maybe', '2022-03-03 04:38:09', '2025-12-17 19:47:33', '41oPGr8m', '5129129'), + (87838, 1035, 1259, 'attending', '2022-03-09 20:22:39', '2025-12-17 19:47:33', '41oPGr8m', '5132533'), + (87839, 1035, 1262, 'attending', '2022-03-10 23:00:57', '2025-12-17 19:47:33', '41oPGr8m', '5157773'), + (87840, 1035, 1269, 'maybe', '2022-03-16 15:46:35', '2025-12-17 19:47:25', '41oPGr8m', '5179439'), + (87841, 1035, 1272, 'attending', '2022-03-16 15:48:05', '2025-12-17 19:47:25', '41oPGr8m', '5186582'), + (87842, 1035, 1273, 'attending', '2022-03-16 15:47:53', '2025-12-17 19:47:25', '41oPGr8m', '5186583'), + (87843, 1035, 1274, 'attending', '2022-03-16 15:47:42', '2025-12-17 19:47:26', '41oPGr8m', '5186585'), + (87844, 1035, 1277, 'attending', '2022-03-16 15:46:20', '2025-12-17 19:47:25', '41oPGr8m', '5186865'), + (87845, 1035, 1281, 'maybe', '2022-03-17 16:01:02', '2025-12-17 19:47:27', '41oPGr8m', '5190437'), + (87846, 1035, 1284, 'not_attending', '2022-04-16 12:50:22', '2025-12-17 19:47:27', '41oPGr8m', '5195095'), + (87847, 1035, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41oPGr8m', '5215989'), + (87848, 1035, 1304, 'attending', '2022-04-06 22:24:07', '2025-12-17 19:47:26', '41oPGr8m', '5223468'), + (87849, 1035, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41oPGr8m', '5223686'), + (87850, 1035, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41oPGr8m', '5227432'), + (87851, 1035, 1311, 'maybe', '2022-04-08 22:17:19', '2025-12-17 19:47:27', '41oPGr8m', '5231430'), + (87852, 1035, 1313, 'not_attending', '2022-04-11 21:32:14', '2025-12-17 19:47:27', '41oPGr8m', '5231461'), + (87853, 1035, 1317, 'attending', '2022-04-11 22:04:45', '2025-12-17 19:47:27', '41oPGr8m', '5237543'), + (87854, 1035, 1325, 'not_attending', '2022-04-18 10:35:32', '2025-12-17 19:47:28', '41oPGr8m', '5238361'), + (87855, 1035, 1326, 'not_attending', '2022-04-18 10:35:35', '2025-12-17 19:47:28', '41oPGr8m', '5238362'), + (87856, 1035, 1330, 'maybe', '2022-04-18 10:34:22', '2025-12-17 19:47:27', '41oPGr8m', '5242155'), + (87857, 1035, 1346, 'not_attending', '2022-04-22 16:15:04', '2025-12-17 19:47:27', '41oPGr8m', '5247467'), + (87858, 1035, 1348, 'attending', '2022-05-01 21:59:51', '2025-12-17 19:47:28', '41oPGr8m', '5247605'), + (87859, 1035, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', '41oPGr8m', '5249631'), + (87860, 1035, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '41oPGr8m', '5260800'), + (87861, 1035, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '41oPGr8m', '5269930'), + (87862, 1035, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '41oPGr8m', '5271448'), + (87863, 1035, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '41oPGr8m', '5271449'), + (87864, 1035, 1380, 'attending', '2022-05-27 15:58:42', '2025-12-17 19:47:30', '41oPGr8m', '5271450'), + (87865, 1035, 1383, 'attending', '2022-05-13 19:39:20', '2025-12-17 19:47:28', '41oPGr8m', '5276469'), + (87866, 1035, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41oPGr8m', '5278159'), + (87867, 1035, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '41oPGr8m', '5363695'), + (87868, 1035, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41oPGr8m', '5365960'), + (87869, 1035, 1415, 'not_attending', '2022-05-19 19:14:24', '2025-12-17 19:47:30', '41oPGr8m', '5368973'), + (87870, 1035, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '41oPGr8m', '5378247'), + (87871, 1035, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '41oPGr8m', '5389605'), + (87872, 1035, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '41oPGr8m', '5397265'), + (87873, 1035, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '41oPGr8m', '5403967'), + (87874, 1035, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41oPGr8m', '5404786'), + (87875, 1035, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41oPGr8m', '5405203'), + (87876, 1035, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '41oPGr8m', '5411699'), + (87877, 1035, 1482, 'attending', '2022-06-24 18:12:12', '2025-12-17 19:47:19', '41oPGr8m', '5412550'), + (87878, 1035, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '41oPGr8m', '5415046'), + (87879, 1035, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41oPGr8m', '5422086'), + (87880, 1035, 1498, 'maybe', '2022-07-02 21:28:54', '2025-12-17 19:47:19', '41oPGr8m', '5422406'), + (87881, 1035, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41oPGr8m', '5424565'), + (87882, 1035, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '41oPGr8m', '5426882'), + (87883, 1035, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '41oPGr8m', '5427083'), + (87884, 1035, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '41oPGr8m', '5441125'), + (87885, 1035, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '41oPGr8m', '5441126'), + (87886, 1035, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '41oPGr8m', '5441128'), + (87887, 1035, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '41oPGr8m', '5441131'), + (87888, 1035, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41oPGr8m', '5441132'), + (87889, 1035, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41oPGr8m', '5446643'), + (87890, 1035, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41oPGr8m', '5453325'), + (87891, 1035, 1543, 'maybe', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41oPGr8m', '5454516'), + (87892, 1035, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41oPGr8m', '5454605'), + (87893, 1035, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41oPGr8m', '5455037'), + (87894, 1035, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '41oPGr8m', '5461278'), + (87895, 1035, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41oPGr8m', '5469480'), + (87896, 1035, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41oPGr8m', '5471073'), + (87897, 1035, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41oPGr8m', '5474663'), + (87898, 1035, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41oPGr8m', '5482022'), + (87899, 1035, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41oPGr8m', '5482793'), + (87900, 1035, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '41oPGr8m', '5488912'), + (87901, 1035, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41oPGr8m', '5492192'), + (87902, 1035, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41oPGr8m', '5493139'), + (87903, 1035, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41oPGr8m', '5493200'), + (87904, 1035, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41oPGr8m', '5502188'), + (87905, 1035, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41oPGr8m', '5505059'), + (87906, 1035, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41oPGr8m', '5509055'), + (87907, 1035, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41oPGr8m', '5512862'), + (87908, 1035, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41oPGr8m', '5513985'), + (87909, 1035, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:12', '41oPGr8m', '5519981'), + (87910, 1035, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41oPGr8m', '5522550'), + (87911, 1035, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41oPGr8m', '5534683'), + (87912, 1035, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '41oPGr8m', '5537735'), + (87913, 1035, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41oPGr8m', '5540859'), + (87914, 1035, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41oPGr8m', '5546619'), + (87915, 1035, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41oPGr8m', '5555245'), + (87916, 1035, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41oPGr8m', '5557747'), + (87917, 1035, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41oPGr8m', '5560255'), + (87918, 1035, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41oPGr8m', '5562906'), + (87919, 1035, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41oPGr8m', '5600604'), + (87920, 1035, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41oPGr8m', '5605544'), + (87921, 1035, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', '41oPGr8m', '5606737'), + (87922, 1035, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '41oPGr8m', '5630960'), + (87923, 1035, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41oPGr8m', '5630961'), + (87924, 1035, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41oPGr8m', '5630962'), + (87925, 1035, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41oPGr8m', '5630966'), + (87926, 1035, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41oPGr8m', '5630967'), + (87927, 1035, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41oPGr8m', '5630968'), + (87928, 1035, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41oPGr8m', '5635406'), + (87929, 1035, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41oPGr8m', '5638765'), + (87930, 1035, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41oPGr8m', '5640097'), + (87931, 1035, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41oPGr8m', '5640843'), + (87932, 1035, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41oPGr8m', '5641521'), + (87933, 1035, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41oPGr8m', '5642818'), + (87934, 1035, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41oPGr8m', '5652395'), + (87935, 1035, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '41oPGr8m', '5670445'), + (87936, 1035, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41oPGr8m', '5671637'), + (87937, 1035, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41oPGr8m', '5672329'), + (87938, 1035, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41oPGr8m', '5674057'), + (87939, 1035, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41oPGr8m', '5674060'), + (87940, 1035, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41oPGr8m', '5677461'), + (87941, 1035, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41oPGr8m', '5698046'), + (87942, 1035, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41oPGr8m', '5699760'), + (87943, 1035, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41oPGr8m', '5741601'), + (87944, 1035, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41oPGr8m', '5763458'), + (87945, 1035, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41oPGr8m', '5774172'), + (87946, 1035, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '41oPGr8m', '5818247'), + (87947, 1035, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41oPGr8m', '5819471'), + (87948, 1035, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41oPGr8m', '5827739'), + (87949, 1035, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41oPGr8m', '5844306'), + (87950, 1035, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41oPGr8m', '5850159'), + (87951, 1035, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41oPGr8m', '5858999'), + (87952, 1035, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41oPGr8m', '5871984'), + (87953, 1035, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41oPGr8m', '5876354'), + (87954, 1035, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '41oPGr8m', '5880939'), + (87955, 1035, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41oPGr8m', '5887890'), + (87956, 1035, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41oPGr8m', '5888598'), + (87957, 1035, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41oPGr8m', '5893260'), + (87958, 1035, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41oPGr8m', '6045684'), + (87959, 1036, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mbZNWRzm', '4736503'), + (87960, 1036, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mbZNWRzm', '4736504'), + (87961, 1036, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mbZNWRzm', '5132533'), + (87962, 1036, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mbZNWRzm', '5186582'), + (87963, 1036, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mbZNWRzm', '5186583'), + (87964, 1036, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mbZNWRzm', '5186585'), + (87965, 1036, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mbZNWRzm', '5190437'), + (87966, 1036, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mbZNWRzm', '5215989'), + (87967, 1036, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mbZNWRzm', '6045684'), + (87968, 1037, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '4Pz0ORvm', '7842108'), + (87969, 1037, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '4Pz0ORvm', '7842902'), + (87970, 1037, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '4Pz0ORvm', '7842903'), + (87971, 1037, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '4Pz0ORvm', '7842904'), + (87972, 1037, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '4Pz0ORvm', '7842905'), + (87973, 1037, 2999, 'not_attending', '2025-02-13 02:18:52', '2025-12-17 19:46:23', '4Pz0ORvm', '7844784'), + (87974, 1037, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '4Pz0ORvm', '7855719'), + (87975, 1037, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '4Pz0ORvm', '7860683'), + (87976, 1037, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '4Pz0ORvm', '7860684'), + (87977, 1037, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '4Pz0ORvm', '7866095'), + (87978, 1037, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '4Pz0ORvm', '7869170'), + (87979, 1037, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '4Pz0ORvm', '7869201'), + (87980, 1037, 3030, 'not_attending', '2025-03-06 16:24:28', '2025-12-17 19:46:18', '4Pz0ORvm', '7872088'), + (87981, 1038, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'm6Yj0JQd', '4210314'), + (87982, 1038, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'm6Yj0JQd', '4229420'), + (87983, 1038, 900, 'not_attending', '2021-07-21 14:13:52', '2025-12-17 19:47:40', 'm6Yj0JQd', '4240316'), + (87984, 1038, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'm6Yj0JQd', '4240317'), + (87985, 1038, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'm6Yj0JQd', '4240318'), + (87986, 1038, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'm6Yj0JQd', '4240320'), + (87987, 1038, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'm6Yj0JQd', '4277819'), + (87988, 1038, 923, 'attending', '2021-07-24 01:30:43', '2025-12-17 19:47:40', 'm6Yj0JQd', '4292773'), + (87989, 1038, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'm6Yj0JQd', '4301723'), + (87990, 1038, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'm6Yj0JQd', '4302093'), + (87991, 1038, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'm6Yj0JQd', '4304151'), + (87992, 1038, 940, 'not_attending', '2021-07-30 16:29:27', '2025-12-17 19:47:40', 'm6Yj0JQd', '4309049'), + (87993, 1038, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'm6Yj0JQd', '4315713'), + (87994, 1038, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'm6Yj0JQd', '4315714'), + (87995, 1038, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'm6Yj0JQd', '4315726'), + (87996, 1038, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'm6Yj0JQd', '4356801'), + (87997, 1038, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'm6Yj0JQd', '4366186'), + (87998, 1038, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'm6Yj0JQd', '4366187'), + (87999, 1038, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'm6Yj0JQd', '4420735'), + (88000, 1038, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'm6Yj0JQd', '4420738'), + (88001, 1038, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'm6Yj0JQd', '4420739'), + (88002, 1038, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'm6Yj0JQd', '4420741'), + (88003, 1038, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'm6Yj0JQd', '4420744'), + (88004, 1038, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'm6Yj0JQd', '4420747'), + (88005, 1038, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'm6Yj0JQd', '4420748'), + (88006, 1038, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'm6Yj0JQd', '4420749'), + (88007, 1038, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm6Yj0JQd', '4461883'), + (88008, 1038, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm6Yj0JQd', '4508342'), + (88009, 1038, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm6Yj0JQd', '4568602'), + (88010, 1038, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm6Yj0JQd', '4572153'), + (88011, 1038, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'm6Yj0JQd', '4585962'), + (88012, 1038, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm6Yj0JQd', '4596356'), + (88013, 1038, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm6Yj0JQd', '4598860'), + (88014, 1038, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm6Yj0JQd', '4598861'), + (88015, 1038, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm6Yj0JQd', '4602797'), + (88016, 1038, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm6Yj0JQd', '4637896'), + (88017, 1038, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm6Yj0JQd', '4642994'), + (88018, 1038, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm6Yj0JQd', '4642995'), + (88019, 1038, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm6Yj0JQd', '4642996'), + (88020, 1038, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm6Yj0JQd', '4642997'), + (88021, 1038, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm6Yj0JQd', '4645687'), + (88022, 1038, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm6Yj0JQd', '4645698'), + (88023, 1038, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm6Yj0JQd', '4645704'), + (88024, 1038, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm6Yj0JQd', '4645705'), + (88025, 1038, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm6Yj0JQd', '4668385'), + (88026, 1038, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6Yj0JQd', '6045684'), + (88027, 1039, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '4EQlP9n4', '8438709'), + (88028, 1039, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '4EQlP9n4', '8457738'), + (88029, 1039, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '4EQlP9n4', '8459566'), + (88030, 1039, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '4EQlP9n4', '8459567'), + (88031, 1039, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '4EQlP9n4', '8461032'), + (88032, 1039, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '4EQlP9n4', '8477877'), + (88033, 1039, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '4EQlP9n4', '8485688'), + (88034, 1039, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '4EQlP9n4', '8490587'), + (88035, 1039, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '4EQlP9n4', '8493552'), + (88036, 1039, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '4EQlP9n4', '8493553'), + (88037, 1039, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '4EQlP9n4', '8493554'), + (88038, 1039, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '4EQlP9n4', '8493555'), + (88039, 1039, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '4EQlP9n4', '8493556'), + (88040, 1039, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '4EQlP9n4', '8493557'), + (88041, 1039, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '4EQlP9n4', '8493558'), + (88042, 1039, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '4EQlP9n4', '8493559'), + (88043, 1039, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '4EQlP9n4', '8493560'), + (88044, 1039, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', '4EQlP9n4', '8493561'), + (88045, 1039, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '4EQlP9n4', '8493572'), + (88046, 1040, 998, 'not_attending', '2021-10-29 23:59:55', '2025-12-17 19:47:36', '4kRMMjwA', '4420749'), + (88047, 1040, 1011, 'attending', '2021-10-28 22:17:31', '2025-12-17 19:47:36', '4kRMMjwA', '4438814'), + (88048, 1040, 1074, 'not_attending', '2021-10-27 04:15:00', '2025-12-17 19:47:34', '4kRMMjwA', '4528953'), + (88049, 1040, 1085, 'attending', '2021-12-18 22:59:27', '2025-12-17 19:47:31', '4kRMMjwA', '4568542'), + (88050, 1040, 1095, 'not_attending', '2021-10-27 04:15:25', '2025-12-17 19:47:35', '4kRMMjwA', '4596356'), + (88051, 1040, 1096, 'not_attending', '2021-10-29 12:39:02', '2025-12-17 19:47:36', '4kRMMjwA', '4596453'), + (88052, 1040, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4kRMMjwA', '4598860'), + (88053, 1040, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4kRMMjwA', '4598861'), + (88054, 1040, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4kRMMjwA', '4602797'), + (88055, 1040, 1100, 'attending', '2021-11-04 00:26:30', '2025-12-17 19:47:36', '4kRMMjwA', '4607305'), + (88056, 1040, 1101, 'not_attending', '2021-11-11 23:13:16', '2025-12-17 19:47:36', '4kRMMjwA', '4607339'), + (88057, 1040, 1109, 'attending', '2021-11-11 03:45:59', '2025-12-17 19:47:37', '4kRMMjwA', '4635221'), + (88058, 1040, 1110, 'attending', '2021-11-11 03:45:58', '2025-12-17 19:47:37', '4kRMMjwA', '4635224'), + (88059, 1040, 1111, 'attending', '2021-11-11 03:46:03', '2025-12-17 19:47:31', '4kRMMjwA', '4635279'), + (88060, 1040, 1112, 'attending', '2021-11-30 05:28:41', '2025-12-17 19:47:37', '4kRMMjwA', '4635420'), + (88061, 1040, 1113, 'attending', '2021-11-21 00:18:42', '2025-12-17 19:47:37', '4kRMMjwA', '4635421'), + (88062, 1040, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4kRMMjwA', '4637896'), + (88063, 1040, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4kRMMjwA', '4642994'), + (88064, 1040, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '4kRMMjwA', '4642995'), + (88065, 1040, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4kRMMjwA', '4642996'), + (88066, 1040, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4kRMMjwA', '4642997'), + (88067, 1040, 1126, 'not_attending', '2021-12-12 00:01:57', '2025-12-17 19:47:38', '4kRMMjwA', '4645687'), + (88068, 1040, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4kRMMjwA', '4645698'), + (88069, 1040, 1128, 'not_attending', '2021-11-20 17:40:18', '2025-12-17 19:47:37', '4kRMMjwA', '4645704'), + (88070, 1040, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4kRMMjwA', '4645705'), + (88071, 1040, 1130, 'not_attending', '2021-12-05 00:23:48', '2025-12-17 19:47:37', '4kRMMjwA', '4658824'), + (88072, 1040, 1131, 'attending', '2021-12-18 18:05:30', '2025-12-17 19:47:31', '4kRMMjwA', '4658825'), + (88073, 1040, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4kRMMjwA', '4668385'), + (88074, 1040, 1140, 'attending', '2021-11-30 05:28:34', '2025-12-17 19:47:37', '4kRMMjwA', '4679701'), + (88075, 1040, 1144, 'not_attending', '2021-12-07 19:50:07', '2025-12-17 19:47:37', '4kRMMjwA', '4687090'), + (88076, 1040, 1147, 'not_attending', '2021-12-13 16:30:05', '2025-12-17 19:47:38', '4kRMMjwA', '4692842'), + (88077, 1040, 1148, 'not_attending', '2021-12-13 16:30:08', '2025-12-17 19:47:31', '4kRMMjwA', '4692843'), + (88078, 1040, 1149, 'not_attending', '2021-12-09 00:14:51', '2025-12-17 19:47:38', '4kRMMjwA', '4694407'), + (88079, 1040, 1150, 'attending', '2021-12-13 16:29:04', '2025-12-17 19:47:38', '4kRMMjwA', '4706262'), + (88080, 1040, 1152, 'attending', '2022-01-12 21:51:41', '2025-12-17 19:47:31', '4kRMMjwA', '4708705'), + (88081, 1040, 1153, 'not_attending', '2022-01-19 23:27:41', '2025-12-17 19:47:32', '4kRMMjwA', '4708707'), + (88082, 1040, 1166, 'attending', '2022-01-07 16:45:14', '2025-12-17 19:47:31', '4kRMMjwA', '4725109'), + (88083, 1040, 1174, 'not_attending', '2022-01-15 22:29:50', '2025-12-17 19:47:31', '4kRMMjwA', '4736496'), + (88084, 1040, 1175, 'attending', '2022-01-22 22:23:37', '2025-12-17 19:47:32', '4kRMMjwA', '4736497'), + (88085, 1040, 1176, 'not_attending', '2022-02-05 16:57:43', '2025-12-17 19:47:32', '4kRMMjwA', '4736498'), + (88086, 1040, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4kRMMjwA', '4736499'), + (88087, 1040, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4kRMMjwA', '4736500'), + (88088, 1040, 1179, 'not_attending', '2022-02-19 19:16:11', '2025-12-17 19:47:32', '4kRMMjwA', '4736501'), + (88089, 1040, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4kRMMjwA', '4736503'), + (88090, 1040, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4kRMMjwA', '4736504'), + (88091, 1040, 1185, 'attending', '2022-01-13 23:58:13', '2025-12-17 19:47:31', '4kRMMjwA', '4746789'), + (88092, 1040, 1188, 'not_attending', '2022-01-18 20:00:14', '2025-12-17 19:47:32', '4kRMMjwA', '4753929'), + (88093, 1040, 1209, 'attending', '2022-01-23 05:27:13', '2025-12-17 19:47:32', '4kRMMjwA', '4776926'), + (88094, 1040, 1210, 'maybe', '2022-01-23 05:28:24', '2025-12-17 19:47:32', '4kRMMjwA', '4776927'), + (88095, 1040, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4kRMMjwA', '5038850'), + (88096, 1040, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4kRMMjwA', '5045826'), + (88097, 1040, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4kRMMjwA', '5132533'), + (88098, 1040, 1272, 'attending', '2022-03-17 15:07:06', '2025-12-17 19:47:25', '4kRMMjwA', '5186582'), + (88099, 1040, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4kRMMjwA', '5186583'), + (88100, 1040, 1274, 'attending', '2022-03-31 01:25:32', '2025-12-17 19:47:26', '4kRMMjwA', '5186585'), + (88101, 1040, 1281, 'not_attending', '2022-04-09 18:34:32', '2025-12-17 19:47:27', '4kRMMjwA', '5190437'), + (88102, 1040, 1284, 'not_attending', '2022-04-16 06:02:09', '2025-12-17 19:47:27', '4kRMMjwA', '5195095'), + (88103, 1040, 1297, 'not_attending', '2022-03-31 01:25:20', '2025-12-17 19:47:26', '4kRMMjwA', '5215989'), + (88104, 1040, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4kRMMjwA', '5223686'), + (88105, 1040, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4kRMMjwA', '5227432'), + (88106, 1040, 1311, 'maybe', '2022-04-09 18:34:56', '2025-12-17 19:47:27', '4kRMMjwA', '5231430'), + (88107, 1040, 1313, 'not_attending', '2022-04-12 21:56:38', '2025-12-17 19:47:27', '4kRMMjwA', '5231461'), + (88108, 1040, 1316, 'attending', '2022-04-12 13:13:15', '2025-12-17 19:47:27', '4kRMMjwA', '5237536'), + (88109, 1040, 1346, 'not_attending', '2022-04-19 16:05:11', '2025-12-17 19:47:27', '4kRMMjwA', '5247467'), + (88110, 1040, 1349, 'attending', '2022-04-19 16:05:23', '2025-12-17 19:47:27', '4kRMMjwA', '5249631'), + (88111, 1040, 1354, 'not_attending', '2022-04-21 20:58:09', '2025-12-17 19:47:27', '4kRMMjwA', '5252569'), + (88112, 1040, 1356, 'not_attending', '2022-04-22 17:34:33', '2025-12-17 19:47:27', '4kRMMjwA', '5252913'), + (88113, 1040, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', '4kRMMjwA', '5260800'), + (88114, 1040, 1366, 'attending', '2022-04-26 17:03:49', '2025-12-17 19:47:27', '4kRMMjwA', '5262344'), + (88115, 1040, 1367, 'attending', '2022-04-26 17:03:39', '2025-12-17 19:47:28', '4kRMMjwA', '5262345'), + (88116, 1040, 1374, 'attending', '2022-05-06 21:46:28', '2025-12-17 19:47:28', '4kRMMjwA', '5269930'), + (88117, 1040, 1378, 'attending', '2022-05-13 16:05:51', '2025-12-17 19:47:28', '4kRMMjwA', '5271448'), + (88118, 1040, 1379, 'attending', '2022-05-19 23:53:42', '2025-12-17 19:47:29', '4kRMMjwA', '5271449'), + (88119, 1040, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', '4kRMMjwA', '5276469'), + (88120, 1040, 1386, 'not_attending', '2022-05-06 21:46:08', '2025-12-17 19:47:28', '4kRMMjwA', '5278159'), + (88121, 1040, 1407, 'attending', '2022-06-03 03:10:43', '2025-12-17 19:47:30', '4kRMMjwA', '5363695'), + (88122, 1040, 1408, 'not_attending', '2022-05-19 23:51:32', '2025-12-17 19:47:29', '4kRMMjwA', '5365960'), + (88123, 1040, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4kRMMjwA', '5368973'), + (88124, 1040, 1422, 'not_attending', '2022-05-28 19:44:36', '2025-12-17 19:47:30', '4kRMMjwA', '5375603'), + (88125, 1040, 1425, 'attending', '2022-05-24 01:47:39', '2025-12-17 19:47:30', '4kRMMjwA', '5375861'), + (88126, 1040, 1427, 'attending', '2022-05-25 22:12:24', '2025-12-17 19:47:30', '4kRMMjwA', '5376074'), + (88127, 1040, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4kRMMjwA', '5378247'), + (88128, 1040, 1431, 'attending', '2022-06-09 16:55:17', '2025-12-17 19:47:30', '4kRMMjwA', '5389605'), + (88129, 1040, 1442, 'attending', '2022-06-16 21:38:26', '2025-12-17 19:47:17', '4kRMMjwA', '5397265'), + (88130, 1040, 1449, 'not_attending', '2022-06-08 19:25:08', '2025-12-17 19:47:31', '4kRMMjwA', '5403335'), + (88131, 1040, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4kRMMjwA', '5403967'), + (88132, 1040, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4kRMMjwA', '5404786'), + (88133, 1040, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4kRMMjwA', '5405203'), + (88134, 1040, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4kRMMjwA', '5411699'), + (88135, 1040, 1482, 'attending', '2022-06-23 01:25:09', '2025-12-17 19:47:19', '4kRMMjwA', '5412550'), + (88136, 1040, 1484, 'not_attending', '2022-06-23 01:25:06', '2025-12-17 19:47:17', '4kRMMjwA', '5415046'), + (88137, 1040, 1485, 'attending', '2022-06-24 14:24:39', '2025-12-17 19:47:17', '4kRMMjwA', '5416276'), + (88138, 1040, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4kRMMjwA', '5422086'), + (88139, 1040, 1498, 'not_attending', '2022-07-02 17:21:14', '2025-12-17 19:47:19', '4kRMMjwA', '5422406'), + (88140, 1040, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4kRMMjwA', '5424565'), + (88141, 1040, 1503, 'attending', '2022-06-29 18:19:14', '2025-12-17 19:47:19', '4kRMMjwA', '5426820'), + (88142, 1040, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4kRMMjwA', '5426882'), + (88143, 1040, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4kRMMjwA', '5427083'), + (88144, 1040, 1511, 'attending', '2022-07-08 03:53:02', '2025-12-17 19:47:19', '4kRMMjwA', '5437733'), + (88145, 1040, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', '4kRMMjwA', '5441125'), + (88146, 1040, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4kRMMjwA', '5441126'), + (88147, 1040, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4kRMMjwA', '5441128'), + (88148, 1040, 1516, 'not_attending', '2022-08-19 02:04:58', '2025-12-17 19:47:23', '4kRMMjwA', '5441129'), + (88149, 1040, 1517, 'not_attending', '2022-08-27 14:22:55', '2025-12-17 19:47:23', '4kRMMjwA', '5441130'), + (88150, 1040, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4kRMMjwA', '5441131'), + (88151, 1040, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '4kRMMjwA', '5441132'), + (88152, 1040, 1523, 'attending', '2022-07-11 18:50:15', '2025-12-17 19:47:19', '4kRMMjwA', '5442868'), + (88153, 1040, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4kRMMjwA', '5446643'), + (88154, 1040, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4kRMMjwA', '5453325'), + (88155, 1040, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4kRMMjwA', '5454516'), + (88156, 1040, 1544, 'attending', '2022-09-15 14:21:03', '2025-12-17 19:47:11', '4kRMMjwA', '5454517'), + (88157, 1040, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4kRMMjwA', '5454605'), + (88158, 1040, 1551, 'attending', '2022-07-19 21:13:39', '2025-12-17 19:47:20', '4kRMMjwA', '5455037'), + (88159, 1040, 1554, 'attending', '2022-07-20 01:17:27', '2025-12-17 19:47:20', '4kRMMjwA', '5455230'), + (88160, 1040, 1558, 'attending', '2022-09-04 12:08:55', '2025-12-17 19:47:10', '4kRMMjwA', '5458730'), + (88161, 1040, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4kRMMjwA', '5461278'), + (88162, 1040, 1562, 'attending', '2022-07-27 18:42:25', '2025-12-17 19:47:22', '4kRMMjwA', '5469480'), + (88163, 1040, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4kRMMjwA', '5471073'), + (88164, 1040, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4kRMMjwA', '5474663'), + (88165, 1040, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4kRMMjwA', '5482022'), + (88166, 1040, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4kRMMjwA', '5482793'), + (88167, 1040, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4kRMMjwA', '5488912'), + (88168, 1040, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4kRMMjwA', '5492192'), + (88169, 1040, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4kRMMjwA', '5493139'), + (88170, 1040, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4kRMMjwA', '5493200'), + (88171, 1040, 1601, 'attending', '2022-08-10 21:46:43', '2025-12-17 19:47:22', '4kRMMjwA', '5496589'), + (88172, 1040, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4kRMMjwA', '5502188'), + (88173, 1040, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4kRMMjwA', '5505059'), + (88174, 1040, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4kRMMjwA', '5509055'), + (88175, 1040, 1616, 'attending', '2022-08-21 18:42:03', '2025-12-17 19:47:23', '4kRMMjwA', '5509478'), + (88176, 1040, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4kRMMjwA', '5512862'), + (88177, 1040, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4kRMMjwA', '5513985'), + (88178, 1040, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', '4kRMMjwA', '5519981'), + (88179, 1040, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4kRMMjwA', '5522550'), + (88180, 1040, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4kRMMjwA', '5534683'), + (88181, 1040, 1632, 'attending', '2022-08-27 14:25:50', '2025-12-17 19:47:23', '4kRMMjwA', '5534954'), + (88182, 1040, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4kRMMjwA', '5537735'), + (88183, 1040, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4kRMMjwA', '5540859'), + (88184, 1040, 1646, 'attending', '2022-09-02 00:03:17', '2025-12-17 19:47:24', '4kRMMjwA', '5546619'), + (88185, 1040, 1651, 'attending', '2022-09-04 13:58:41', '2025-12-17 19:47:24', '4kRMMjwA', '5551425'), + (88186, 1040, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4kRMMjwA', '5555245'), + (88187, 1040, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4kRMMjwA', '5557747'), + (88188, 1040, 1660, 'attending', '2022-09-08 02:43:56', '2025-12-17 19:47:24', '4kRMMjwA', '5558979'), + (88189, 1040, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4kRMMjwA', '5560255'), + (88190, 1040, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4kRMMjwA', '5562906'), + (88191, 1040, 1667, 'not_attending', '2022-09-24 21:33:39', '2025-12-17 19:47:11', '4kRMMjwA', '5563221'), + (88192, 1040, 1668, 'not_attending', '2022-10-01 18:10:14', '2025-12-17 19:47:12', '4kRMMjwA', '5563222'), + (88193, 1040, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4kRMMjwA', '5600604'), + (88194, 1040, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4kRMMjwA', '5605544'), + (88195, 1040, 1699, 'not_attending', '2022-09-26 12:17:02', '2025-12-17 19:47:12', '4kRMMjwA', '5606737'), + (88196, 1040, 1701, 'attending', '2022-09-26 21:36:20', '2025-12-17 19:47:11', '4kRMMjwA', '5607857'), + (88197, 1040, 1708, 'attending', '2022-10-05 23:37:03', '2025-12-17 19:47:12', '4kRMMjwA', '5617648'), + (88198, 1040, 1710, 'attending', '2022-10-02 19:21:17', '2025-12-17 19:47:12', '4kRMMjwA', '5621822'), + (88199, 1040, 1717, 'attending', '2022-10-21 13:58:58', '2025-12-17 19:47:13', '4kRMMjwA', '5622842'), + (88200, 1040, 1718, 'not_attending', '2022-10-13 03:38:21', '2025-12-17 19:47:12', '4kRMMjwA', '5630907'), + (88201, 1040, 1719, 'attending', '2022-10-07 14:50:48', '2025-12-17 19:47:12', '4kRMMjwA', '5630958'), + (88202, 1040, 1720, 'attending', '2022-10-13 03:38:03', '2025-12-17 19:47:12', '4kRMMjwA', '5630959'), + (88203, 1040, 1721, 'not_attending', '2022-10-20 14:52:34', '2025-12-17 19:47:13', '4kRMMjwA', '5630960'), + (88204, 1040, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4kRMMjwA', '5630961'), + (88205, 1040, 1723, 'not_attending', '2022-10-31 23:15:25', '2025-12-17 19:47:15', '4kRMMjwA', '5630962'), + (88206, 1040, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4kRMMjwA', '5630966'), + (88207, 1040, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4kRMMjwA', '5630967'), + (88208, 1040, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4kRMMjwA', '5630968'), + (88209, 1040, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4kRMMjwA', '5635406'), + (88210, 1040, 1733, 'attending', '2022-10-11 15:28:11', '2025-12-17 19:47:12', '4kRMMjwA', '5635411'), + (88211, 1040, 1736, 'not_attending', '2022-10-31 23:15:34', '2025-12-17 19:47:15', '4kRMMjwA', '5638456'), + (88212, 1040, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4kRMMjwA', '5638765'), + (88213, 1040, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4kRMMjwA', '5640097'), + (88214, 1040, 1740, 'maybe', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4kRMMjwA', '5640843'), + (88215, 1040, 1743, 'attending', '2022-10-10 11:21:35', '2025-12-17 19:47:12', '4kRMMjwA', '5641521'), + (88216, 1040, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4kRMMjwA', '5642818'), + (88217, 1040, 1746, 'attending', '2022-10-13 03:38:33', '2025-12-17 19:47:12', '4kRMMjwA', '5647518'), + (88218, 1040, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4kRMMjwA', '5652395'), + (88219, 1040, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4kRMMjwA', '5670445'), + (88220, 1040, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4kRMMjwA', '5671637'), + (88221, 1040, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4kRMMjwA', '5672329'), + (88222, 1040, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4kRMMjwA', '5674057'), + (88223, 1040, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4kRMMjwA', '5674060'), + (88224, 1040, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4kRMMjwA', '5677461'), + (88225, 1040, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4kRMMjwA', '5698046'), + (88226, 1040, 1784, 'attending', '2022-11-04 11:40:23', '2025-12-17 19:47:15', '4kRMMjwA', '5699760'), + (88227, 1040, 1794, 'maybe', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4kRMMjwA', '5741601'), + (88228, 1040, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4kRMMjwA', '5763458'), + (88229, 1040, 1806, 'not_attending', '2023-01-11 23:28:22', '2025-12-17 19:47:05', '4kRMMjwA', '5764676'), + (88230, 1040, 1807, 'not_attending', '2023-01-11 23:28:16', '2025-12-17 19:47:05', '4kRMMjwA', '5764677'), + (88231, 1040, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4kRMMjwA', '5774172'), + (88232, 1040, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '4kRMMjwA', '5818247'), + (88233, 1040, 1834, 'not_attending', '2022-12-10 20:05:03', '2025-12-17 19:47:17', '4kRMMjwA', '5819470'), + (88234, 1040, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4kRMMjwA', '5819471'), + (88235, 1040, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', '4kRMMjwA', '5827739'), + (88236, 1040, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4kRMMjwA', '5844306'), + (88237, 1040, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4kRMMjwA', '5850159'), + (88238, 1040, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4kRMMjwA', '5858999'), + (88239, 1040, 1852, 'not_attending', '2023-01-11 23:28:14', '2025-12-17 19:47:05', '4kRMMjwA', '5869898'), + (88240, 1040, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4kRMMjwA', '5871984'), + (88241, 1040, 1860, 'maybe', '2023-01-13 23:24:29', '2025-12-17 19:47:05', '4kRMMjwA', '5876309'), + (88242, 1040, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4kRMMjwA', '5876354'), + (88243, 1040, 1864, 'not_attending', '2023-01-21 19:54:27', '2025-12-17 19:47:05', '4kRMMjwA', '5879675'), + (88244, 1040, 1865, 'not_attending', '2023-01-27 23:50:24', '2025-12-17 19:47:06', '4kRMMjwA', '5879676'), + (88245, 1040, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '4kRMMjwA', '5880939'), + (88246, 1040, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4kRMMjwA', '5880940'), + (88247, 1040, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4kRMMjwA', '5887890'), + (88248, 1040, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4kRMMjwA', '5888598'), + (88249, 1040, 1878, 'not_attending', '2023-02-06 13:26:14', '2025-12-17 19:47:07', '4kRMMjwA', '5893000'), + (88250, 1040, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4kRMMjwA', '5893260'), + (88251, 1040, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '4kRMMjwA', '5899826'), + (88252, 1040, 1888, 'attending', '2023-02-18 00:01:09', '2025-12-17 19:47:07', '4kRMMjwA', '5900197'), + (88253, 1040, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4kRMMjwA', '5900199'), + (88254, 1040, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4kRMMjwA', '5900200'), + (88255, 1040, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '4kRMMjwA', '5901108'), + (88256, 1040, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '4kRMMjwA', '5901126'), + (88257, 1040, 1897, 'not_attending', '2023-02-11 00:49:46', '2025-12-17 19:47:07', '4kRMMjwA', '5901128'), + (88258, 1040, 1910, 'attending', '2023-02-08 02:47:47', '2025-12-17 19:47:07', '4kRMMjwA', '5909655'), + (88259, 1040, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4kRMMjwA', '5910522'), + (88260, 1040, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4kRMMjwA', '5910526'), + (88261, 1040, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4kRMMjwA', '5910528'), + (88262, 1040, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4kRMMjwA', '5916219'), + (88263, 1040, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4kRMMjwA', '5936234'), + (88264, 1040, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4kRMMjwA', '6045684'), + (88265, 1041, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oOZWZJ4', '6045684'), + (88266, 1042, 243, 'maybe', '2020-11-03 15:56:15', '2025-12-17 19:47:53', 'ndaxNQp4', '3149474'), + (88267, 1042, 244, 'maybe', '2020-10-20 12:07:40', '2025-12-17 19:47:52', 'ndaxNQp4', '3149475'), + (88268, 1042, 373, 'maybe', '2020-10-24 12:24:15', '2025-12-17 19:47:52', 'ndaxNQp4', '3221413'), + (88269, 1042, 388, 'maybe', '2020-10-24 12:24:22', '2025-12-17 19:47:52', 'ndaxNQp4', '3228701'), + (88270, 1042, 394, 'attending', '2021-01-02 08:37:22', '2025-12-17 19:47:48', 'ndaxNQp4', '3236449'), + (88271, 1042, 399, 'not_attending', '2020-11-06 00:54:49', '2025-12-17 19:47:54', 'ndaxNQp4', '3236454'), + (88272, 1042, 409, 'not_attending', '2020-12-11 00:52:01', '2025-12-17 19:47:54', 'ndaxNQp4', '3236467'), + (88273, 1042, 429, 'attending', '2020-11-20 21:57:38', '2025-12-17 19:47:54', 'ndaxNQp4', '3250523'), + (88274, 1042, 433, 'maybe', '2020-11-06 01:16:53', '2025-12-17 19:47:53', 'ndaxNQp4', '3254417'), + (88275, 1042, 440, 'attending', '2020-11-07 16:13:58', '2025-12-17 19:47:53', 'ndaxNQp4', '3256168'), + (88276, 1042, 441, 'attending', '2020-11-03 09:09:11', '2025-12-17 19:47:54', 'ndaxNQp4', '3256169'), + (88277, 1042, 443, 'maybe', '2020-10-25 11:21:53', '2025-12-17 19:47:53', 'ndaxNQp4', '3263578'), + (88278, 1042, 445, 'not_attending', '2020-11-12 00:41:39', '2025-12-17 19:47:54', 'ndaxNQp4', '3266138'), + (88279, 1042, 450, 'not_attending', '2020-10-31 20:27:08', '2025-12-17 19:47:53', 'ndaxNQp4', '3272102'), + (88280, 1042, 452, 'attending', '2020-11-11 22:06:41', '2025-12-17 19:47:54', 'ndaxNQp4', '3272981'), + (88281, 1042, 453, 'attending', '2020-11-11 21:58:39', '2025-12-17 19:47:54', 'ndaxNQp4', '3274032'), + (88282, 1042, 454, 'maybe', '2020-11-13 16:30:58', '2025-12-17 19:47:54', 'ndaxNQp4', '3275665'), + (88283, 1042, 456, 'attending', '2020-11-05 14:44:04', '2025-12-17 19:47:54', 'ndaxNQp4', '3276428'), + (88284, 1042, 457, 'maybe', '2020-11-07 14:58:11', '2025-12-17 19:47:53', 'ndaxNQp4', '3279087'), + (88285, 1042, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'ndaxNQp4', '3281467'), + (88286, 1042, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'ndaxNQp4', '3281470'), + (88287, 1042, 463, 'maybe', '2020-11-13 16:30:41', '2025-12-17 19:47:54', 'ndaxNQp4', '3281553'), + (88288, 1042, 464, 'attending', '2020-11-11 22:06:31', '2025-12-17 19:47:54', 'ndaxNQp4', '3281554'), + (88289, 1042, 465, 'attending', '2020-11-11 22:06:35', '2025-12-17 19:47:54', 'ndaxNQp4', '3281555'), + (88290, 1042, 466, 'maybe', '2020-11-23 23:20:05', '2025-12-17 19:47:54', 'ndaxNQp4', '3281829'), + (88291, 1042, 468, 'attending', '2020-11-11 21:57:12', '2025-12-17 19:47:54', 'ndaxNQp4', '3285413'), + (88292, 1042, 469, 'maybe', '2020-11-28 06:13:03', '2025-12-17 19:47:54', 'ndaxNQp4', '3285414'), + (88293, 1042, 470, 'attending', '2020-11-11 22:07:04', '2025-12-17 19:47:54', 'ndaxNQp4', '3285443'), + (88294, 1042, 471, 'maybe', '2020-11-18 22:57:29', '2025-12-17 19:47:54', 'ndaxNQp4', '3285445'), + (88295, 1042, 472, 'attending', '2020-11-12 00:41:35', '2025-12-17 19:47:54', 'ndaxNQp4', '3286541'), + (88296, 1042, 473, 'attending', '2020-11-12 00:42:01', '2025-12-17 19:47:54', 'ndaxNQp4', '3286569'), + (88297, 1042, 475, 'attending', '2020-11-13 16:32:13', '2025-12-17 19:47:54', 'ndaxNQp4', '3286760'), + (88298, 1042, 477, 'maybe', '2020-12-05 01:48:14', '2025-12-17 19:47:54', 'ndaxNQp4', '3289559'), + (88299, 1042, 478, 'attending', '2020-11-16 20:21:13', '2025-12-17 19:47:54', 'ndaxNQp4', '3290899'), + (88300, 1042, 481, 'maybe', '2020-11-23 23:20:09', '2025-12-17 19:47:54', 'ndaxNQp4', '3297764'), + (88301, 1042, 482, 'attending', '2020-11-25 00:59:18', '2025-12-17 19:47:54', 'ndaxNQp4', '3297769'), + (88302, 1042, 484, 'maybe', '2020-11-21 00:17:16', '2025-12-17 19:47:54', 'ndaxNQp4', '3297792'), + (88303, 1042, 493, 'maybe', '2020-12-05 22:33:07', '2025-12-17 19:47:54', 'ndaxNQp4', '3313856'), + (88304, 1042, 495, 'attending', '2020-12-04 23:39:07', '2025-12-17 19:47:54', 'ndaxNQp4', '3314009'), + (88305, 1042, 496, 'attending', '2020-12-08 01:10:00', '2025-12-17 19:47:54', 'ndaxNQp4', '3314269'), + (88306, 1042, 497, 'attending', '2020-12-08 01:10:48', '2025-12-17 19:47:55', 'ndaxNQp4', '3314270'), + (88307, 1042, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'ndaxNQp4', '3314909'), + (88308, 1042, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'ndaxNQp4', '3314964'), + (88309, 1042, 502, 'attending', '2020-12-08 01:10:26', '2025-12-17 19:47:55', 'ndaxNQp4', '3323365'), + (88310, 1042, 511, 'attending', '2020-12-08 02:08:45', '2025-12-17 19:47:55', 'ndaxNQp4', '3325335'), + (88311, 1042, 513, 'maybe', '2020-12-20 00:58:27', '2025-12-17 19:47:55', 'ndaxNQp4', '3329383'), + (88312, 1042, 518, 'attending', '2021-01-02 08:37:41', '2025-12-17 19:47:48', 'ndaxNQp4', '3337138'), + (88313, 1042, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'ndaxNQp4', '3351539'), + (88314, 1042, 528, 'attending', '2021-01-02 08:35:39', '2025-12-17 19:47:48', 'ndaxNQp4', '3363022'), + (88315, 1042, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'ndaxNQp4', '3386848'), + (88316, 1042, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'ndaxNQp4', '3389527'), + (88317, 1042, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'ndaxNQp4', '3396499'), + (88318, 1042, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'ndaxNQp4', '3403650'), + (88319, 1042, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'ndaxNQp4', '3406988'), + (88320, 1042, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'ndaxNQp4', '3416576'), + (88321, 1042, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ndaxNQp4', '6045684'), + (88322, 1043, 856, 'attending', '2021-09-09 02:34:51', '2025-12-17 19:47:43', 'm6YW7Eqd', '4015730'), + (88323, 1043, 971, 'maybe', '2021-09-08 22:50:20', '2025-12-17 19:47:43', 'm6YW7Eqd', '4356801'), + (88324, 1043, 991, 'attending', '2021-09-09 02:32:37', '2025-12-17 19:47:43', 'm6YW7Eqd', '4420738'), + (88325, 1043, 992, 'not_attending', '2021-09-25 19:43:34', '2025-12-17 19:47:34', 'm6YW7Eqd', '4420739'), + (88326, 1043, 993, 'attending', '2021-09-25 19:43:31', '2025-12-17 19:47:34', 'm6YW7Eqd', '4420741'), + (88327, 1043, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'm6YW7Eqd', '4420744'), + (88328, 1043, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'm6YW7Eqd', '4420747'), + (88329, 1043, 1004, 'not_attending', '2021-09-14 22:58:24', '2025-12-17 19:47:43', 'm6YW7Eqd', '4438804'), + (88330, 1043, 1005, 'attending', '2021-09-18 23:15:49', '2025-12-17 19:47:34', 'm6YW7Eqd', '4438807'), + (88331, 1043, 1016, 'attending', '2021-09-09 22:53:09', '2025-12-17 19:47:43', 'm6YW7Eqd', '4441271'), + (88332, 1043, 1019, 'attending', '2021-09-09 02:32:25', '2025-12-17 19:47:43', 'm6YW7Eqd', '4450515'), + (88333, 1043, 1020, 'attending', '2021-09-09 02:33:00', '2025-12-17 19:47:43', 'm6YW7Eqd', '4451787'), + (88334, 1043, 1021, 'attending', '2021-09-09 02:34:20', '2025-12-17 19:47:34', 'm6YW7Eqd', '4451803'), + (88335, 1043, 1022, 'attending', '2021-09-11 15:53:47', '2025-12-17 19:47:43', 'm6YW7Eqd', '4458628'), + (88336, 1043, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'm6YW7Eqd', '4461883'), + (88337, 1043, 1030, 'not_attending', '2021-09-26 14:11:30', '2025-12-17 19:47:34', 'm6YW7Eqd', '4473064'), + (88338, 1043, 1032, 'maybe', '2021-09-26 20:20:11', '2025-12-17 19:47:34', 'm6YW7Eqd', '4473825'), + (88339, 1043, 1066, 'attending', '2021-09-24 18:56:53', '2025-12-17 19:47:34', 'm6YW7Eqd', '4506039'), + (88340, 1043, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'm6YW7Eqd', '4508342'), + (88341, 1043, 1068, 'attending', '2021-09-26 19:31:53', '2025-12-17 19:47:34', 'm6YW7Eqd', '4511471'), + (88342, 1043, 1069, 'attending', '2021-09-24 18:56:51', '2025-12-17 19:47:34', 'm6YW7Eqd', '4512090'), + (88343, 1043, 1074, 'attending', '2021-09-29 22:22:52', '2025-12-17 19:47:34', 'm6YW7Eqd', '4528953'), + (88344, 1043, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'm6YW7Eqd', '4568602'), + (88345, 1043, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'm6YW7Eqd', '4572153'), + (88346, 1043, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'm6YW7Eqd', '4585962'), + (88347, 1043, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'm6YW7Eqd', '4596356'), + (88348, 1043, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'm6YW7Eqd', '4598860'), + (88349, 1043, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'm6YW7Eqd', '4598861'), + (88350, 1043, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'm6YW7Eqd', '4602797'), + (88351, 1043, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'm6YW7Eqd', '4637896'), + (88352, 1043, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'm6YW7Eqd', '4642994'), + (88353, 1043, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'm6YW7Eqd', '4642995'), + (88354, 1043, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'm6YW7Eqd', '4642996'), + (88355, 1043, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'm6YW7Eqd', '4642997'), + (88356, 1043, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'm6YW7Eqd', '4645687'), + (88357, 1043, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'm6YW7Eqd', '4645698'), + (88358, 1043, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'm6YW7Eqd', '4645704'), + (88359, 1043, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'm6YW7Eqd', '4645705'), + (88360, 1043, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'm6YW7Eqd', '4668385'), + (88361, 1043, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'm6YW7Eqd', '4694407'), + (88362, 1043, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'm6YW7Eqd', '4736497'), + (88363, 1043, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'm6YW7Eqd', '4736499'), + (88364, 1043, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'm6YW7Eqd', '4736500'), + (88365, 1043, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'm6YW7Eqd', '4736503'), + (88366, 1043, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'm6YW7Eqd', '4736504'), + (88367, 1043, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'm6YW7Eqd', '4746789'), + (88368, 1043, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'm6YW7Eqd', '4753929'), + (88369, 1043, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'm6YW7Eqd', '5038850'), + (88370, 1043, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'm6YW7Eqd', '5045826'), + (88371, 1043, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'm6YW7Eqd', '5132533'), + (88372, 1043, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'm6YW7Eqd', '5186582'), + (88373, 1043, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'm6YW7Eqd', '5186583'), + (88374, 1043, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'm6YW7Eqd', '5186585'), + (88375, 1043, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'm6YW7Eqd', '5190437'), + (88376, 1043, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'm6YW7Eqd', '5195095'), + (88377, 1043, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'm6YW7Eqd', '5215989'), + (88378, 1043, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'm6YW7Eqd', '5223686'), + (88379, 1043, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'm6YW7Eqd', '5247467'), + (88380, 1043, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'm6YW7Eqd', '5260800'), + (88381, 1043, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'm6YW7Eqd', '5269930'), + (88382, 1043, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'm6YW7Eqd', '5271448'), + (88383, 1043, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'm6YW7Eqd', '5271449'), + (88384, 1043, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'm6YW7Eqd', '5278159'), + (88385, 1043, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'm6YW7Eqd', '5363695'), + (88386, 1043, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'm6YW7Eqd', '5365960'), + (88387, 1043, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'm6YW7Eqd', '5378247'), + (88388, 1043, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'm6YW7Eqd', '5389605'), + (88389, 1043, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'm6YW7Eqd', '5397265'), + (88390, 1043, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'm6YW7Eqd', '5404786'), + (88391, 1043, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'm6YW7Eqd', '5405203'), + (88392, 1043, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'm6YW7Eqd', '5412550'), + (88393, 1043, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'm6YW7Eqd', '5415046'), + (88394, 1043, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'm6YW7Eqd', '5422086'), + (88395, 1043, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'm6YW7Eqd', '5422406'), + (88396, 1043, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'm6YW7Eqd', '5424565'), + (88397, 1043, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'm6YW7Eqd', '5426882'), + (88398, 1043, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'm6YW7Eqd', '5441125'), + (88399, 1043, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'm6YW7Eqd', '5441126'), + (88400, 1043, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'm6YW7Eqd', '5441128'), + (88401, 1043, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'm6YW7Eqd', '5441131'), + (88402, 1043, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'm6YW7Eqd', '5441132'), + (88403, 1043, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'm6YW7Eqd', '5453325'), + (88404, 1043, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'm6YW7Eqd', '5454516'), + (88405, 1043, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'm6YW7Eqd', '5454605'), + (88406, 1043, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'm6YW7Eqd', '5455037'), + (88407, 1043, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'm6YW7Eqd', '5461278'), + (88408, 1043, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'm6YW7Eqd', '5469480'), + (88409, 1043, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'm6YW7Eqd', '5474663'), + (88410, 1043, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'm6YW7Eqd', '5482022'), + (88411, 1043, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'm6YW7Eqd', '5488912'), + (88412, 1043, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'm6YW7Eqd', '5492192'), + (88413, 1043, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'm6YW7Eqd', '5493139'), + (88414, 1043, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'm6YW7Eqd', '5493200'), + (88415, 1043, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'm6YW7Eqd', '5502188'), + (88416, 1043, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'm6YW7Eqd', '5505059'), + (88417, 1043, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'm6YW7Eqd', '5509055'), + (88418, 1043, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'm6YW7Eqd', '5512862'), + (88419, 1043, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'm6YW7Eqd', '5513985'), + (88420, 1043, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'm6YW7Eqd', '5519981'), + (88421, 1043, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'm6YW7Eqd', '5522550'), + (88422, 1043, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'm6YW7Eqd', '5534683'), + (88423, 1043, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'm6YW7Eqd', '5537735'), + (88424, 1043, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'm6YW7Eqd', '5540859'), + (88425, 1043, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'm6YW7Eqd', '5546619'), + (88426, 1043, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'm6YW7Eqd', '5557747'), + (88427, 1043, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'm6YW7Eqd', '5560255'), + (88428, 1043, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'm6YW7Eqd', '5562906'), + (88429, 1043, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'm6YW7Eqd', '5600604'), + (88430, 1043, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'm6YW7Eqd', '5605544'), + (88431, 1043, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', 'm6YW7Eqd', '5606737'), + (88432, 1043, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'm6YW7Eqd', '5630960'), + (88433, 1043, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'm6YW7Eqd', '5630961'), + (88434, 1043, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'm6YW7Eqd', '5630962'), + (88435, 1043, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'm6YW7Eqd', '5630966'), + (88436, 1043, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'm6YW7Eqd', '5630967'), + (88437, 1043, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'm6YW7Eqd', '5630968'), + (88438, 1043, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'm6YW7Eqd', '5635406'), + (88439, 1043, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'm6YW7Eqd', '5638765'), + (88440, 1043, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'm6YW7Eqd', '5640097'), + (88441, 1043, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'm6YW7Eqd', '5640843'), + (88442, 1043, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'm6YW7Eqd', '5641521'), + (88443, 1043, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'm6YW7Eqd', '5642818'), + (88444, 1043, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'm6YW7Eqd', '5652395'), + (88445, 1043, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'm6YW7Eqd', '5670445'), + (88446, 1043, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'm6YW7Eqd', '5671637'), + (88447, 1043, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'm6YW7Eqd', '5672329'), + (88448, 1043, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'm6YW7Eqd', '5674057'), + (88449, 1043, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'm6YW7Eqd', '5674060'), + (88450, 1043, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'm6YW7Eqd', '5677461'), + (88451, 1043, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'm6YW7Eqd', '5698046'), + (88452, 1043, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'm6YW7Eqd', '5699760'), + (88453, 1043, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'm6YW7Eqd', '5741601'), + (88454, 1043, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'm6YW7Eqd', '5763458'), + (88455, 1043, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'm6YW7Eqd', '5774172'), + (88456, 1043, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'm6YW7Eqd', '5818247'), + (88457, 1043, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'm6YW7Eqd', '5819471'), + (88458, 1043, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'm6YW7Eqd', '5827739'), + (88459, 1043, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'm6YW7Eqd', '5844306'), + (88460, 1043, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'm6YW7Eqd', '5850159'), + (88461, 1043, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'm6YW7Eqd', '5858999'), + (88462, 1043, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'm6YW7Eqd', '5871984'), + (88463, 1043, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'm6YW7Eqd', '5876354'), + (88464, 1043, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'm6YW7Eqd', '5880939'), + (88465, 1043, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'm6YW7Eqd', '5880940'), + (88466, 1043, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'm6YW7Eqd', '5880942'), + (88467, 1043, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm6YW7Eqd', '5880943'), + (88468, 1043, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'm6YW7Eqd', '5887890'), + (88469, 1043, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'm6YW7Eqd', '5888598'), + (88470, 1043, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'm6YW7Eqd', '5893260'), + (88471, 1043, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'm6YW7Eqd', '5899826'), + (88472, 1043, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'm6YW7Eqd', '5900199'), + (88473, 1043, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'm6YW7Eqd', '5900200'), + (88474, 1043, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm6YW7Eqd', '5900202'), + (88475, 1043, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm6YW7Eqd', '5900203'), + (88476, 1043, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'm6YW7Eqd', '5901108'), + (88477, 1043, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'm6YW7Eqd', '5901126'), + (88478, 1043, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'm6YW7Eqd', '5909655'), + (88479, 1043, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'm6YW7Eqd', '5910522'), + (88480, 1043, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'm6YW7Eqd', '5910526'), + (88481, 1043, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'm6YW7Eqd', '5910528'), + (88482, 1043, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'm6YW7Eqd', '5916219'), + (88483, 1043, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'm6YW7Eqd', '5936234'), + (88484, 1043, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'm6YW7Eqd', '5958351'), + (88485, 1043, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'm6YW7Eqd', '5959751'), + (88486, 1043, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'm6YW7Eqd', '5959755'), + (88487, 1043, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'm6YW7Eqd', '5960055'), + (88488, 1043, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'm6YW7Eqd', '5961684'), + (88489, 1043, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'm6YW7Eqd', '5962132'), + (88490, 1043, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'm6YW7Eqd', '5962133'), + (88491, 1043, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'm6YW7Eqd', '5962134'), + (88492, 1043, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'm6YW7Eqd', '5962317'), + (88493, 1043, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'm6YW7Eqd', '5962318'), + (88494, 1043, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm6YW7Eqd', '5965933'), + (88495, 1043, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'm6YW7Eqd', '5967014'), + (88496, 1043, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm6YW7Eqd', '5972815'), + (88497, 1043, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm6YW7Eqd', '5974016'), + (88498, 1043, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm6YW7Eqd', '5981515'), + (88499, 1043, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm6YW7Eqd', '5993516'), + (88500, 1043, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm6YW7Eqd', '5998939'), + (88501, 1043, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm6YW7Eqd', '6028191'), + (88502, 1043, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm6YW7Eqd', '6040066'), + (88503, 1043, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm6YW7Eqd', '6042717'), + (88504, 1043, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm6YW7Eqd', '6044838'), + (88505, 1043, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm6YW7Eqd', '6044839'), + (88506, 1043, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'm6YW7Eqd', '6045684'), + (88507, 1043, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm6YW7Eqd', '6050104'), + (88508, 1043, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm6YW7Eqd', '6053195'), + (88509, 1043, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm6YW7Eqd', '6053198'), + (88510, 1043, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm6YW7Eqd', '6056085'), + (88511, 1043, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm6YW7Eqd', '6056916'), + (88512, 1043, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm6YW7Eqd', '6059290'), + (88513, 1043, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm6YW7Eqd', '6060328'), + (88514, 1043, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm6YW7Eqd', '6061037'), + (88515, 1043, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm6YW7Eqd', '6061039'), + (88516, 1043, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm6YW7Eqd', '6067245'), + (88517, 1043, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm6YW7Eqd', '6068094'), + (88518, 1043, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm6YW7Eqd', '6068252'), + (88519, 1043, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm6YW7Eqd', '6068253'), + (88520, 1043, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm6YW7Eqd', '6068254'), + (88521, 1043, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm6YW7Eqd', '6068280'), + (88522, 1043, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm6YW7Eqd', '6069093'), + (88523, 1043, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'm6YW7Eqd', '6072528'), + (88524, 1043, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm6YW7Eqd', '6079840'), + (88525, 1043, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm6YW7Eqd', '6083398'), + (88526, 1043, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm6YW7Eqd', '6093504'), + (88527, 1043, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm6YW7Eqd', '6097414'), + (88528, 1043, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm6YW7Eqd', '6097442'), + (88529, 1043, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm6YW7Eqd', '6097684'), + (88530, 1043, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm6YW7Eqd', '6098762'), + (88531, 1043, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'm6YW7Eqd', '6101361'), + (88532, 1043, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm6YW7Eqd', '6101362'), + (88533, 1043, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm6YW7Eqd', '6107314'), + (88534, 1043, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'm6YW7Eqd', '6120034'), + (88535, 1043, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'm6YW7Eqd', '6136733'), + (88536, 1043, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'm6YW7Eqd', '6137989'), + (88537, 1043, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'm6YW7Eqd', '6150864'), + (88538, 1043, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'm6YW7Eqd', '6155491'), + (88539, 1043, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'm6YW7Eqd', '6164417'), + (88540, 1043, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'm6YW7Eqd', '6166388'), + (88541, 1043, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'm6YW7Eqd', '6176439'), + (88542, 1043, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'm6YW7Eqd', '6182410'), + (88543, 1043, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'm6YW7Eqd', '6185812'), + (88544, 1043, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'm6YW7Eqd', '6187651'), + (88545, 1043, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'm6YW7Eqd', '6187963'), + (88546, 1043, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'm6YW7Eqd', '6187964'), + (88547, 1043, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'm6YW7Eqd', '6187966'), + (88548, 1043, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'm6YW7Eqd', '6187967'), + (88549, 1043, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'm6YW7Eqd', '6187969'), + (88550, 1043, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'm6YW7Eqd', '6334878'), + (88551, 1043, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'm6YW7Eqd', '6337236'), + (88552, 1043, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'm6YW7Eqd', '6337970'), + (88553, 1043, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'm6YW7Eqd', '6338308'), + (88554, 1043, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'm6YW7Eqd', '6341710'), + (88555, 1043, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'm6YW7Eqd', '6342044'), + (88556, 1043, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'm6YW7Eqd', '6342298'), + (88557, 1043, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'm6YW7Eqd', '6343294'), + (88558, 1043, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'm6YW7Eqd', '6347034'), + (88559, 1043, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'm6YW7Eqd', '6347056'), + (88560, 1043, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'm6YW7Eqd', '6353830'), + (88561, 1043, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'm6YW7Eqd', '6353831'), + (88562, 1043, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'm6YW7Eqd', '6357867'), + (88563, 1043, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'm6YW7Eqd', '6358652'), + (88564, 1043, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'm6YW7Eqd', '6361709'), + (88565, 1043, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'm6YW7Eqd', '6361710'), + (88566, 1043, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'm6YW7Eqd', '6361711'), + (88567, 1043, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'm6YW7Eqd', '6361712'), + (88568, 1043, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'm6YW7Eqd', '6361713'), + (88569, 1043, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'm6YW7Eqd', '6382573'), + (88570, 1043, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'm6YW7Eqd', '6388604'), + (88571, 1043, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'm6YW7Eqd', '6394629'), + (88572, 1043, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'm6YW7Eqd', '6394631'), + (88573, 1043, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'm6YW7Eqd', '6440863'), + (88574, 1043, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'm6YW7Eqd', '6445440'), + (88575, 1043, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'm6YW7Eqd', '6453951'), + (88576, 1043, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'm6YW7Eqd', '6461696'), + (88577, 1043, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'm6YW7Eqd', '6462129'), + (88578, 1043, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'm6YW7Eqd', '6463218'), + (88579, 1043, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'm6YW7Eqd', '6472181'), + (88580, 1043, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'm6YW7Eqd', '6482693'), + (88581, 1043, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'm6YW7Eqd', '6484200'), + (88582, 1043, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'm6YW7Eqd', '6484680'), + (88583, 1043, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'm6YW7Eqd', '6507741'), + (88584, 1043, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'm6YW7Eqd', '6514659'), + (88585, 1043, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'm6YW7Eqd', '6514660'), + (88586, 1043, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'm6YW7Eqd', '6519103'), + (88587, 1043, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'm6YW7Eqd', '6535681'), + (88588, 1043, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'm6YW7Eqd', '6584747'), + (88589, 1043, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'm6YW7Eqd', '6587097'), + (88590, 1043, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'm6YW7Eqd', '6609022'), + (88591, 1043, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'm6YW7Eqd', '6632757'), + (88592, 1043, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'm6YW7Eqd', '6644187'), + (88593, 1043, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'm6YW7Eqd', '6648951'), + (88594, 1043, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'm6YW7Eqd', '6648952'), + (88595, 1043, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'm6YW7Eqd', '6655401'), + (88596, 1043, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'm6YW7Eqd', '6661585'), + (88597, 1043, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'm6YW7Eqd', '6661588'), + (88598, 1043, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'm6YW7Eqd', '6661589'), + (88599, 1043, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'm6YW7Eqd', '6699906'), + (88600, 1043, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'm6YW7Eqd', '6699913'), + (88601, 1043, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'm6YW7Eqd', '6701109'), + (88602, 1043, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'm6YW7Eqd', '6705219'), + (88603, 1043, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'm6YW7Eqd', '6710153'), + (88604, 1043, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'm6YW7Eqd', '6711552'), + (88605, 1043, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'm6YW7Eqd', '6711553'), + (88606, 1043, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'm6YW7Eqd', '6722688'), + (88607, 1043, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'm6YW7Eqd', '6730620'), + (88608, 1043, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'm6YW7Eqd', '6740364'), + (88609, 1043, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'm6YW7Eqd', '6743829'), + (88610, 1043, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'm6YW7Eqd', '7030380'), + (88611, 1043, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'm6YW7Eqd', '7033677'), + (88612, 1043, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'm6YW7Eqd', '7044715'), + (88613, 1043, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'm6YW7Eqd', '7050318'), + (88614, 1043, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'm6YW7Eqd', '7050319'), + (88615, 1043, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'm6YW7Eqd', '7050322'), + (88616, 1043, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'm6YW7Eqd', '7057804'), + (88617, 1043, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'm6YW7Eqd', '7072824'), + (88618, 1043, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'm6YW7Eqd', '7074348'), + (88619, 1043, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'm6YW7Eqd', '7074364'), + (88620, 1043, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'm6YW7Eqd', '7089267'), + (88621, 1043, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'm6YW7Eqd', '7098747'), + (88622, 1043, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'm6YW7Eqd', '7113468'), + (88623, 1043, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'm6YW7Eqd', '7114856'), + (88624, 1043, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'm6YW7Eqd', '7114951'), + (88625, 1043, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'm6YW7Eqd', '7114955'), + (88626, 1043, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'm6YW7Eqd', '7114956'), + (88627, 1043, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'm6YW7Eqd', '7114957'), + (88628, 1043, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'm6YW7Eqd', '7159484'), + (88629, 1043, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'm6YW7Eqd', '7178446'), + (88630, 1043, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'm6YW7Eqd', '7220467'), + (88631, 1043, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'm6YW7Eqd', '7240354'), + (88632, 1043, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'm6YW7Eqd', '7251633'), + (88633, 1043, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'm6YW7Eqd', '7324073'), + (88634, 1043, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'm6YW7Eqd', '7324074'), + (88635, 1043, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'm6YW7Eqd', '7324075'), + (88636, 1043, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'm6YW7Eqd', '7324078'), + (88637, 1043, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'm6YW7Eqd', '7324082'), + (88638, 1043, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'm6YW7Eqd', '7331457'), + (88639, 1043, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'm6YW7Eqd', '7363643'), + (88640, 1043, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'm6YW7Eqd', '7368606'), + (88641, 1043, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'm6YW7Eqd', '7397462'), + (88642, 1043, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'm6YW7Eqd', '7424275'), + (88643, 1043, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'm6YW7Eqd', '7432751'), + (88644, 1043, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'm6YW7Eqd', '7432752'), + (88645, 1043, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'm6YW7Eqd', '7432753'), + (88646, 1043, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432754'), + (88647, 1043, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432755'), + (88648, 1043, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432756'), + (88649, 1043, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432758'), + (88650, 1043, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'm6YW7Eqd', '7432759'), + (88651, 1043, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'm6YW7Eqd', '7433834'), + (88652, 1043, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'm6YW7Eqd', '7470197'), + (88653, 1043, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'm6YW7Eqd', '7685613'), + (88654, 1043, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'm6YW7Eqd', '7688194'), + (88655, 1043, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'm6YW7Eqd', '7688196'), + (88656, 1043, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'm6YW7Eqd', '7688289'), + (88657, 1043, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'm6YW7Eqd', '7692763'), + (88658, 1043, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'm6YW7Eqd', '7697552'), + (88659, 1043, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'm6YW7Eqd', '7699878'), + (88660, 1043, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'm6YW7Eqd', '7704043'), + (88661, 1043, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'm6YW7Eqd', '7712467'), + (88662, 1043, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'm6YW7Eqd', '7713585'), + (88663, 1043, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'm6YW7Eqd', '7713586'), + (88664, 1043, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'm6YW7Eqd', '7738518'), + (88665, 1043, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'm6YW7Eqd', '7750636'), + (88666, 1043, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'm6YW7Eqd', '7796540'), + (88667, 1043, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'm6YW7Eqd', '7796541'), + (88668, 1043, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'm6YW7Eqd', '7796542'), + (88669, 1043, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'm6YW7Eqd', '7825913'), + (88670, 1043, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'm6YW7Eqd', '7826209'), + (88671, 1043, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'm6YW7Eqd', '7834742'), + (88672, 1043, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'm6YW7Eqd', '7842108'), + (88673, 1043, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'm6YW7Eqd', '7842902'), + (88674, 1043, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'm6YW7Eqd', '7842903'), + (88675, 1043, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'm6YW7Eqd', '7842904'), + (88676, 1043, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'm6YW7Eqd', '7842905'), + (88677, 1043, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'm6YW7Eqd', '7855719'), + (88678, 1043, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'm6YW7Eqd', '7860683'), + (88679, 1043, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'm6YW7Eqd', '7860684'), + (88680, 1043, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'm6YW7Eqd', '7866095'), + (88681, 1043, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'm6YW7Eqd', '7869170'), + (88682, 1043, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'm6YW7Eqd', '7869188'), + (88683, 1043, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'm6YW7Eqd', '7869201'), + (88684, 1043, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'm6YW7Eqd', '7877465'), + (88685, 1043, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'm6YW7Eqd', '7888250'), + (88686, 1043, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'm6YW7Eqd', '7904777'), + (88687, 1043, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'm6YW7Eqd', '8349164'), + (88688, 1043, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'm6YW7Eqd', '8349545'), + (88689, 1043, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'm6YW7Eqd', '8368028'), + (88690, 1043, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'm6YW7Eqd', '8368029'), + (88691, 1043, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'm6YW7Eqd', '8388462'), + (88692, 1043, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'm6YW7Eqd', '8400273'), + (88693, 1043, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'm6YW7Eqd', '8400275'), + (88694, 1043, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'm6YW7Eqd', '8400276'), + (88695, 1043, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'm6YW7Eqd', '8404977'), + (88696, 1043, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'm6YW7Eqd', '8430783'), + (88697, 1043, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'm6YW7Eqd', '8430784'), + (88698, 1043, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'm6YW7Eqd', '8430799'), + (88699, 1043, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'm6YW7Eqd', '8430800'), + (88700, 1043, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'm6YW7Eqd', '8430801'), + (88701, 1043, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'm6YW7Eqd', '8438709'), + (88702, 1043, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'm6YW7Eqd', '8457738'), + (88703, 1043, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'm6YW7Eqd', '8459566'), + (88704, 1043, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'm6YW7Eqd', '8459567'), + (88705, 1043, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'm6YW7Eqd', '8461032'), + (88706, 1043, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'm6YW7Eqd', '8477877'), + (88707, 1043, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'm6YW7Eqd', '8485688'), + (88708, 1043, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'm6YW7Eqd', '8490587'), + (88709, 1043, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'm6YW7Eqd', '8493552'), + (88710, 1043, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'm6YW7Eqd', '8493553'), + (88711, 1043, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'm6YW7Eqd', '8493554'), + (88712, 1043, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'm6YW7Eqd', '8493555'), + (88713, 1043, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'm6YW7Eqd', '8493556'), + (88714, 1043, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'm6YW7Eqd', '8493557'), + (88715, 1043, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'm6YW7Eqd', '8493558'), + (88716, 1043, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'm6YW7Eqd', '8493559'), + (88717, 1043, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'm6YW7Eqd', '8493560'), + (88718, 1043, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'm6YW7Eqd', '8493561'), + (88719, 1043, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'm6YW7Eqd', '8493572'), + (88720, 1043, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'm6YW7Eqd', '8540725'), + (88721, 1043, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'm6YW7Eqd', '8555421'), + (88722, 1044, 245, 'not_attending', '2020-11-30 16:15:05', '2025-12-17 19:47:54', 'pmbMYjgd', '3149476'), + (88723, 1044, 249, 'not_attending', '2020-11-17 03:54:21', '2025-12-17 19:47:54', 'pmbMYjgd', '3149480'), + (88724, 1044, 409, 'not_attending', '2020-12-10 20:13:08', '2025-12-17 19:47:54', 'pmbMYjgd', '3236467'), + (88725, 1044, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'pmbMYjgd', '3285413'), + (88726, 1044, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'pmbMYjgd', '3285414'), + (88727, 1044, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'pmbMYjgd', '3297764'), + (88728, 1044, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'pmbMYjgd', '3313856'), + (88729, 1044, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'pmbMYjgd', '3314909'), + (88730, 1044, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'pmbMYjgd', '3314964'), + (88731, 1044, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'pmbMYjgd', '3323365'), + (88732, 1044, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'pmbMYjgd', '3324148'), + (88733, 1044, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'pmbMYjgd', '3329383'), + (88734, 1044, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'pmbMYjgd', '3351539'), + (88735, 1044, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'pmbMYjgd', '3386848'), + (88736, 1044, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'pmbMYjgd', '3389527'), + (88737, 1044, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'pmbMYjgd', '3396499'), + (88738, 1044, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'pmbMYjgd', '3403650'), + (88739, 1044, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'pmbMYjgd', '3406988'), + (88740, 1044, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'pmbMYjgd', '3416576'), + (88741, 1044, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'pmbMYjgd', '3426074'), + (88742, 1044, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'pmbMYjgd', '3430267'), + (88743, 1044, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'pmbMYjgd', '3468125'), + (88744, 1044, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'pmbMYjgd', '3470303'), + (88745, 1044, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'pmbMYjgd', '3470305'), + (88746, 1044, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'pmbMYjgd', '3470991'), + (88747, 1044, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'pmbMYjgd', '3517815'), + (88748, 1044, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'pmbMYjgd', '3517816'), + (88749, 1044, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'pmbMYjgd', '3523941'), + (88750, 1044, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'pmbMYjgd', '3533850'), + (88751, 1044, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'pmbMYjgd', '3536632'), + (88752, 1044, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'pmbMYjgd', '3536656'), + (88753, 1044, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'pmbMYjgd', '3539916'), + (88754, 1044, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'pmbMYjgd', '3539917'), + (88755, 1044, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'pmbMYjgd', '3539918'), + (88756, 1044, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'pmbMYjgd', '3539919'), + (88757, 1044, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'pmbMYjgd', '3539920'), + (88758, 1044, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'pmbMYjgd', '3539921'), + (88759, 1044, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'pmbMYjgd', '3539922'), + (88760, 1044, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'pmbMYjgd', '3539923'), + (88761, 1044, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'pmbMYjgd', '3539927'), + (88762, 1044, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'pmbMYjgd', '3582734'), + (88763, 1044, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'pmbMYjgd', '3583262'), + (88764, 1044, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'pmbMYjgd', '3619523'), + (88765, 1044, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'pmbMYjgd', '3661369'), + (88766, 1044, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'pmbMYjgd', '3674262'), + (88767, 1044, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'pmbMYjgd', '3677402'), + (88768, 1044, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'pmbMYjgd', '3730212'), + (88769, 1044, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'pmbMYjgd', '3793156'), + (88770, 1044, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'pmbMYjgd', '3974109'), + (88771, 1044, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'pmbMYjgd', '3975311'), + (88772, 1044, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'pmbMYjgd', '3975312'), + (88773, 1044, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'pmbMYjgd', '3994992'), + (88774, 1044, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'pmbMYjgd', '4014338'), + (88775, 1044, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'pmbMYjgd', '4021848'), + (88776, 1044, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'pmbMYjgd', '4136744'), + (88777, 1044, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'pmbMYjgd', '4136937'), + (88778, 1044, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'pmbMYjgd', '4136938'), + (88779, 1044, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'pmbMYjgd', '4136947'), + (88780, 1044, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'pmbMYjgd', '4210314'), + (88781, 1044, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'pmbMYjgd', '4225444'), + (88782, 1044, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'pmbMYjgd', '4239259'), + (88783, 1044, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'pmbMYjgd', '4240316'), + (88784, 1044, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'pmbMYjgd', '4240317'), + (88785, 1044, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'pmbMYjgd', '4240318'), + (88786, 1044, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'pmbMYjgd', '4240320'), + (88787, 1044, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'pmbMYjgd', '4250163'), + (88788, 1044, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'pmbMYjgd', '4275957'), + (88789, 1044, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'pmbMYjgd', '4277819'), + (88790, 1044, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'pmbMYjgd', '4301723'), + (88791, 1044, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'pmbMYjgd', '4302093'), + (88792, 1044, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'pmbMYjgd', '4304151'), + (88793, 1044, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'pmbMYjgd', '4356801'), + (88794, 1044, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'pmbMYjgd', '4366186'), + (88795, 1044, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'pmbMYjgd', '4366187'), + (88796, 1044, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'pmbMYjgd', '4420735'), + (88797, 1044, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'pmbMYjgd', '4420738'), + (88798, 1044, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'pmbMYjgd', '4420739'), + (88799, 1044, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'pmbMYjgd', '4420741'), + (88800, 1044, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'pmbMYjgd', '4420744'), + (88801, 1044, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'pmbMYjgd', '4420747'), + (88802, 1044, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'pmbMYjgd', '4420748'), + (88803, 1044, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'pmbMYjgd', '4420749'), + (88804, 1044, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'pmbMYjgd', '4461883'), + (88805, 1044, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'pmbMYjgd', '4508342'), + (88806, 1044, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'pmbMYjgd', '4568602'), + (88807, 1044, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'pmbMYjgd', '4572153'), + (88808, 1044, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'pmbMYjgd', '4585962'), + (88809, 1044, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'pmbMYjgd', '4596356'), + (88810, 1044, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'pmbMYjgd', '4598860'), + (88811, 1044, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'pmbMYjgd', '4598861'), + (88812, 1044, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'pmbMYjgd', '4602797'), + (88813, 1044, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'pmbMYjgd', '4637896'), + (88814, 1044, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'pmbMYjgd', '4642994'), + (88815, 1044, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'pmbMYjgd', '4642995'), + (88816, 1044, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'pmbMYjgd', '4642996'), + (88817, 1044, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'pmbMYjgd', '4642997'), + (88818, 1044, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'pmbMYjgd', '4645687'), + (88819, 1044, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'pmbMYjgd', '4645698'), + (88820, 1044, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'pmbMYjgd', '4645704'), + (88821, 1044, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'pmbMYjgd', '4645705'), + (88822, 1044, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'pmbMYjgd', '4668385'), + (88823, 1044, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'pmbMYjgd', '4694407'), + (88824, 1044, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'pmbMYjgd', '4736497'), + (88825, 1044, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'pmbMYjgd', '4736499'), + (88826, 1044, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'pmbMYjgd', '4736500'), + (88827, 1044, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'pmbMYjgd', '4736503'), + (88828, 1044, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'pmbMYjgd', '4736504'), + (88829, 1044, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'pmbMYjgd', '4746789'), + (88830, 1044, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'pmbMYjgd', '4753929'), + (88831, 1044, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'pmbMYjgd', '5038850'), + (88832, 1044, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'pmbMYjgd', '5045826'), + (88833, 1044, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'pmbMYjgd', '5132533'), + (88834, 1044, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'pmbMYjgd', '5186582'), + (88835, 1044, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'pmbMYjgd', '5186583'), + (88836, 1044, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'pmbMYjgd', '5186585'), + (88837, 1044, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'pmbMYjgd', '5190437'), + (88838, 1044, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'pmbMYjgd', '5195095'), + (88839, 1044, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'pmbMYjgd', '5215989'), + (88840, 1044, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'pmbMYjgd', '5223686'), + (88841, 1044, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'pmbMYjgd', '5247467'), + (88842, 1044, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'pmbMYjgd', '5260800'), + (88843, 1044, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'pmbMYjgd', '5269930'), + (88844, 1044, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'pmbMYjgd', '5271448'), + (88845, 1044, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'pmbMYjgd', '5271449'), + (88846, 1044, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'pmbMYjgd', '5278159'), + (88847, 1044, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'pmbMYjgd', '5363695'), + (88848, 1044, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'pmbMYjgd', '5365960'), + (88849, 1044, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'pmbMYjgd', '5378247'), + (88850, 1044, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'pmbMYjgd', '5389605'), + (88851, 1044, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'pmbMYjgd', '5397265'), + (88852, 1044, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'pmbMYjgd', '5404786'), + (88853, 1044, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'pmbMYjgd', '5405203'), + (88854, 1044, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'pmbMYjgd', '5412550'), + (88855, 1044, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'pmbMYjgd', '5415046'), + (88856, 1044, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'pmbMYjgd', '5422086'), + (88857, 1044, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'pmbMYjgd', '5422406'), + (88858, 1044, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'pmbMYjgd', '5424565'), + (88859, 1044, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'pmbMYjgd', '5426882'), + (88860, 1044, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'pmbMYjgd', '5441125'), + (88861, 1044, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'pmbMYjgd', '5441126'), + (88862, 1044, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'pmbMYjgd', '5441128'), + (88863, 1044, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'pmbMYjgd', '5441131'), + (88864, 1044, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'pmbMYjgd', '5441132'), + (88865, 1044, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'pmbMYjgd', '5453325'), + (88866, 1044, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'pmbMYjgd', '5454516'), + (88867, 1044, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'pmbMYjgd', '5454605'), + (88868, 1044, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'pmbMYjgd', '5455037'), + (88869, 1044, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'pmbMYjgd', '5461278'), + (88870, 1044, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'pmbMYjgd', '5469480'), + (88871, 1044, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'pmbMYjgd', '5474663'), + (88872, 1044, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'pmbMYjgd', '5482022'), + (88873, 1044, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'pmbMYjgd', '5488912'), + (88874, 1044, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'pmbMYjgd', '5492192'), + (88875, 1044, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'pmbMYjgd', '5493139'), + (88876, 1044, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'pmbMYjgd', '5493200'), + (88877, 1044, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'pmbMYjgd', '5502188'), + (88878, 1044, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'pmbMYjgd', '5505059'), + (88879, 1044, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'pmbMYjgd', '5509055'), + (88880, 1044, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'pmbMYjgd', '5512862'), + (88881, 1044, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'pmbMYjgd', '5513985'), + (88882, 1044, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'pmbMYjgd', '5519981'), + (88883, 1044, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'pmbMYjgd', '5522550'), + (88884, 1044, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'pmbMYjgd', '5534683'), + (88885, 1044, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'pmbMYjgd', '5537735'), + (88886, 1044, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'pmbMYjgd', '5540859'), + (88887, 1044, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'pmbMYjgd', '5546619'), + (88888, 1044, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'pmbMYjgd', '5557747'), + (88889, 1044, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'pmbMYjgd', '5560255'), + (88890, 1044, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'pmbMYjgd', '5562906'), + (88891, 1044, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'pmbMYjgd', '5600604'), + (88892, 1044, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'pmbMYjgd', '5605544'), + (88893, 1044, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'pmbMYjgd', '5630960'), + (88894, 1044, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'pmbMYjgd', '5630961'), + (88895, 1044, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'pmbMYjgd', '5630962'), + (88896, 1044, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'pmbMYjgd', '5630966'), + (88897, 1044, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'pmbMYjgd', '5630967'), + (88898, 1044, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'pmbMYjgd', '5630968'), + (88899, 1044, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'pmbMYjgd', '5635406'), + (88900, 1044, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'pmbMYjgd', '5638765'), + (88901, 1044, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'pmbMYjgd', '5640097'), + (88902, 1044, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'pmbMYjgd', '5640843'), + (88903, 1044, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'pmbMYjgd', '5641521'), + (88904, 1044, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'pmbMYjgd', '5642818'), + (88905, 1044, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'pmbMYjgd', '5652395'), + (88906, 1044, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'pmbMYjgd', '5670445'), + (88907, 1044, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'pmbMYjgd', '5671637'), + (88908, 1044, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'pmbMYjgd', '5672329'), + (88909, 1044, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'pmbMYjgd', '5674057'), + (88910, 1044, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'pmbMYjgd', '5674060'), + (88911, 1044, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'pmbMYjgd', '5677461'), + (88912, 1044, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'pmbMYjgd', '5698046'), + (88913, 1044, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'pmbMYjgd', '5699760'), + (88914, 1044, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'pmbMYjgd', '5741601'), + (88915, 1044, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'pmbMYjgd', '5763458'), + (88916, 1044, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'pmbMYjgd', '5774172'), + (88917, 1044, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'pmbMYjgd', '5818247'), + (88918, 1044, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'pmbMYjgd', '5819471'), + (88919, 1044, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'pmbMYjgd', '5827739'), + (88920, 1044, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'pmbMYjgd', '5844306'), + (88921, 1044, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'pmbMYjgd', '5850159'), + (88922, 1044, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'pmbMYjgd', '5858999'), + (88923, 1044, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'pmbMYjgd', '5871984'), + (88924, 1044, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'pmbMYjgd', '5876354'), + (88925, 1044, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'pmbMYjgd', '5880939'), + (88926, 1044, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'pmbMYjgd', '5880940'), + (88927, 1044, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'pmbMYjgd', '5880942'), + (88928, 1044, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'pmbMYjgd', '5880943'), + (88929, 1044, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'pmbMYjgd', '5887890'), + (88930, 1044, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'pmbMYjgd', '5888598'), + (88931, 1044, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'pmbMYjgd', '5893260'), + (88932, 1044, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'pmbMYjgd', '5899826'), + (88933, 1044, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'pmbMYjgd', '5900199'), + (88934, 1044, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'pmbMYjgd', '5900200'), + (88935, 1044, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'pmbMYjgd', '5900202'), + (88936, 1044, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'pmbMYjgd', '5900203'), + (88937, 1044, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'pmbMYjgd', '5901108'), + (88938, 1044, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'pmbMYjgd', '5901126'), + (88939, 1044, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'pmbMYjgd', '5901606'), + (88940, 1044, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'pmbMYjgd', '5909655'), + (88941, 1044, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'pmbMYjgd', '5910522'), + (88942, 1044, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'pmbMYjgd', '5910526'), + (88943, 1044, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'pmbMYjgd', '5910528'), + (88944, 1044, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'pmbMYjgd', '5916219'), + (88945, 1044, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'pmbMYjgd', '5936234'), + (88946, 1044, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'pmbMYjgd', '5958351'), + (88947, 1044, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'pmbMYjgd', '5959751'), + (88948, 1044, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'pmbMYjgd', '5959755'), + (88949, 1044, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'pmbMYjgd', '5960055'), + (88950, 1044, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'pmbMYjgd', '5961684'), + (88951, 1044, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'pmbMYjgd', '5962132'), + (88952, 1044, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'pmbMYjgd', '5962133'), + (88953, 1044, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'pmbMYjgd', '5962134'), + (88954, 1044, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'pmbMYjgd', '5962317'), + (88955, 1044, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'pmbMYjgd', '5962318'), + (88956, 1044, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'pmbMYjgd', '5965933'), + (88957, 1044, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'pmbMYjgd', '5967014'), + (88958, 1044, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'pmbMYjgd', '5972815'), + (88959, 1044, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'pmbMYjgd', '5974016'), + (88960, 1044, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'pmbMYjgd', '5981515'), + (88961, 1044, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'pmbMYjgd', '5993516'), + (88962, 1044, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'pmbMYjgd', '5998939'), + (88963, 1044, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'pmbMYjgd', '6028191'), + (88964, 1044, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'pmbMYjgd', '6040066'), + (88965, 1044, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'pmbMYjgd', '6042717'), + (88966, 1044, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'pmbMYjgd', '6044838'), + (88967, 1044, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'pmbMYjgd', '6044839'), + (88968, 1044, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'pmbMYjgd', '6045684'), + (88969, 1044, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'pmbMYjgd', '6050104'), + (88970, 1044, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'pmbMYjgd', '6053195'), + (88971, 1044, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'pmbMYjgd', '6053198'), + (88972, 1044, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'pmbMYjgd', '6056085'), + (88973, 1044, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'pmbMYjgd', '6056916'), + (88974, 1044, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'pmbMYjgd', '6059290'), + (88975, 1044, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'pmbMYjgd', '6060328'), + (88976, 1044, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'pmbMYjgd', '6061037'), + (88977, 1044, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'pmbMYjgd', '6061039'), + (88978, 1044, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'pmbMYjgd', '6067245'), + (88979, 1044, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'pmbMYjgd', '6068094'), + (88980, 1044, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'pmbMYjgd', '6068252'), + (88981, 1044, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'pmbMYjgd', '6068253'), + (88982, 1044, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'pmbMYjgd', '6068254'), + (88983, 1044, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'pmbMYjgd', '6068280'), + (88984, 1044, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'pmbMYjgd', '6069093'), + (88985, 1044, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'pmbMYjgd', '6072528'), + (88986, 1044, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'pmbMYjgd', '6079840'), + (88987, 1044, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'pmbMYjgd', '6083398'), + (88988, 1044, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'pmbMYjgd', '6093504'), + (88989, 1044, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'pmbMYjgd', '6097414'), + (88990, 1044, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'pmbMYjgd', '6097442'), + (88991, 1044, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'pmbMYjgd', '6097684'), + (88992, 1044, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'pmbMYjgd', '6098762'), + (88993, 1044, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'pmbMYjgd', '6101361'), + (88994, 1044, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'pmbMYjgd', '6101362'), + (88995, 1044, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'pmbMYjgd', '6107314'), + (88996, 1044, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'pmbMYjgd', '6120034'), + (88997, 1044, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'pmbMYjgd', '6136733'), + (88998, 1044, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'pmbMYjgd', '6137989'), + (88999, 1044, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'pmbMYjgd', '6150864'), + (89000, 1044, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'pmbMYjgd', '6155491'), + (89001, 1044, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'pmbMYjgd', '6164417'), + (89002, 1044, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'pmbMYjgd', '6166388'), + (89003, 1044, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'pmbMYjgd', '6176439'), + (89004, 1044, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'pmbMYjgd', '6182410'), + (89005, 1044, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'pmbMYjgd', '6185812'), + (89006, 1044, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'pmbMYjgd', '6187651'), + (89007, 1044, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'pmbMYjgd', '6187963'), + (89008, 1044, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'pmbMYjgd', '6187964'), + (89009, 1044, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'pmbMYjgd', '6187966'), + (89010, 1044, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'pmbMYjgd', '6187967'), + (89011, 1044, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'pmbMYjgd', '6187969'), + (89012, 1044, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'pmbMYjgd', '6334878'), + (89013, 1044, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'pmbMYjgd', '6337236'), + (89014, 1044, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'pmbMYjgd', '6337970'), + (89015, 1044, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'pmbMYjgd', '6338308'), + (89016, 1044, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'pmbMYjgd', '6341710'), + (89017, 1044, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'pmbMYjgd', '6342044'), + (89018, 1044, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'pmbMYjgd', '6342298'), + (89019, 1044, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'pmbMYjgd', '6343294'), + (89020, 1044, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'pmbMYjgd', '6347034'), + (89021, 1044, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'pmbMYjgd', '6347056'), + (89022, 1044, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'pmbMYjgd', '6353830'), + (89023, 1044, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'pmbMYjgd', '6353831'), + (89024, 1044, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'pmbMYjgd', '6357867'), + (89025, 1044, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'pmbMYjgd', '6358652'), + (89026, 1044, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'pmbMYjgd', '6361709'), + (89027, 1044, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'pmbMYjgd', '6361710'), + (89028, 1044, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'pmbMYjgd', '6361711'), + (89029, 1044, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'pmbMYjgd', '6361712'), + (89030, 1044, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'pmbMYjgd', '6361713'), + (89031, 1044, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'pmbMYjgd', '6382573'), + (89032, 1044, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'pmbMYjgd', '6388604'), + (89033, 1044, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'pmbMYjgd', '6394629'), + (89034, 1044, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'pmbMYjgd', '6394631'), + (89035, 1044, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'pmbMYjgd', '6440863'), + (89036, 1044, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'pmbMYjgd', '6445440'), + (89037, 1044, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'pmbMYjgd', '6453951'), + (89038, 1044, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'pmbMYjgd', '6461696'), + (89039, 1044, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'pmbMYjgd', '6462129'), + (89040, 1044, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'pmbMYjgd', '6463218'), + (89041, 1044, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'pmbMYjgd', '6472181'), + (89042, 1044, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'pmbMYjgd', '6482693'), + (89043, 1044, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'pmbMYjgd', '6484200'), + (89044, 1044, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'pmbMYjgd', '6484680'), + (89045, 1044, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'pmbMYjgd', '6507741'), + (89046, 1044, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'pmbMYjgd', '6514659'), + (89047, 1044, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'pmbMYjgd', '6514660'), + (89048, 1044, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'pmbMYjgd', '6519103'), + (89049, 1044, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'pmbMYjgd', '6535681'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (89050, 1044, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'pmbMYjgd', '6584747'), + (89051, 1044, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'pmbMYjgd', '6587097'), + (89052, 1044, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'pmbMYjgd', '6609022'), + (89053, 1044, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'pmbMYjgd', '6632757'), + (89054, 1044, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'pmbMYjgd', '6644187'), + (89055, 1044, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'pmbMYjgd', '6648951'), + (89056, 1044, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'pmbMYjgd', '6648952'), + (89057, 1044, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'pmbMYjgd', '6655401'), + (89058, 1044, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'pmbMYjgd', '6661585'), + (89059, 1044, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'pmbMYjgd', '6661588'), + (89060, 1044, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'pmbMYjgd', '6661589'), + (89061, 1044, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'pmbMYjgd', '6699906'), + (89062, 1044, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'pmbMYjgd', '6699913'), + (89063, 1044, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'pmbMYjgd', '6701109'), + (89064, 1044, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'pmbMYjgd', '6705219'), + (89065, 1044, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'pmbMYjgd', '6710153'), + (89066, 1044, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'pmbMYjgd', '6711552'), + (89067, 1044, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'pmbMYjgd', '6711553'), + (89068, 1044, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'pmbMYjgd', '6722688'), + (89069, 1044, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'pmbMYjgd', '6730620'), + (89070, 1044, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'pmbMYjgd', '6740364'), + (89071, 1044, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'pmbMYjgd', '6743829'), + (89072, 1044, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'pmbMYjgd', '7030380'), + (89073, 1044, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'pmbMYjgd', '7033677'), + (89074, 1044, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'pmbMYjgd', '7044715'), + (89075, 1044, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'pmbMYjgd', '7050318'), + (89076, 1044, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'pmbMYjgd', '7050319'), + (89077, 1044, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'pmbMYjgd', '7050322'), + (89078, 1044, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'pmbMYjgd', '7057804'), + (89079, 1044, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'pmbMYjgd', '7072824'), + (89080, 1044, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'pmbMYjgd', '7074348'), + (89081, 1044, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'pmbMYjgd', '7074364'), + (89082, 1044, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'pmbMYjgd', '7089267'), + (89083, 1044, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'pmbMYjgd', '7098747'), + (89084, 1044, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'pmbMYjgd', '7113468'), + (89085, 1044, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'pmbMYjgd', '7114856'), + (89086, 1044, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'pmbMYjgd', '7114951'), + (89087, 1044, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'pmbMYjgd', '7114955'), + (89088, 1044, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'pmbMYjgd', '7114956'), + (89089, 1044, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'pmbMYjgd', '7114957'), + (89090, 1044, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'pmbMYjgd', '7159484'), + (89091, 1044, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'pmbMYjgd', '7178446'), + (89092, 1044, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'pmbMYjgd', '7220467'), + (89093, 1044, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'pmbMYjgd', '7240354'), + (89094, 1044, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'pmbMYjgd', '7251633'), + (89095, 1044, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'pmbMYjgd', '7324073'), + (89096, 1044, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'pmbMYjgd', '7324074'), + (89097, 1044, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'pmbMYjgd', '7324075'), + (89098, 1044, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'pmbMYjgd', '7324078'), + (89099, 1044, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'pmbMYjgd', '7324082'), + (89100, 1044, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'pmbMYjgd', '7331457'), + (89101, 1044, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'pmbMYjgd', '7363643'), + (89102, 1044, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'pmbMYjgd', '7368606'), + (89103, 1044, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'pmbMYjgd', '7397462'), + (89104, 1044, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'pmbMYjgd', '7424275'), + (89105, 1044, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'pmbMYjgd', '7432751'), + (89106, 1044, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'pmbMYjgd', '7432752'), + (89107, 1044, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'pmbMYjgd', '7432753'), + (89108, 1044, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'pmbMYjgd', '7432754'), + (89109, 1044, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'pmbMYjgd', '7432755'), + (89110, 1044, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'pmbMYjgd', '7432756'), + (89111, 1044, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'pmbMYjgd', '7432758'), + (89112, 1044, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'pmbMYjgd', '7432759'), + (89113, 1044, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'pmbMYjgd', '7433834'), + (89114, 1044, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'pmbMYjgd', '7470197'), + (89115, 1044, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'pmbMYjgd', '7685613'), + (89116, 1044, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'pmbMYjgd', '7688194'), + (89117, 1044, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'pmbMYjgd', '7688196'), + (89118, 1044, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'pmbMYjgd', '7688289'), + (89119, 1044, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'pmbMYjgd', '7692763'), + (89120, 1044, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'pmbMYjgd', '7697552'), + (89121, 1044, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'pmbMYjgd', '7699878'), + (89122, 1044, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'pmbMYjgd', '7704043'), + (89123, 1044, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'pmbMYjgd', '7712467'), + (89124, 1044, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'pmbMYjgd', '7713585'), + (89125, 1044, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'pmbMYjgd', '7713586'), + (89126, 1044, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'pmbMYjgd', '7738518'), + (89127, 1044, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'pmbMYjgd', '7750636'), + (89128, 1044, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'pmbMYjgd', '7796540'), + (89129, 1044, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'pmbMYjgd', '7796541'), + (89130, 1044, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'pmbMYjgd', '7796542'), + (89131, 1044, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'pmbMYjgd', '7825913'), + (89132, 1044, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'pmbMYjgd', '7826209'), + (89133, 1044, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'pmbMYjgd', '7834742'), + (89134, 1044, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'pmbMYjgd', '7842108'), + (89135, 1044, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'pmbMYjgd', '7842902'), + (89136, 1044, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'pmbMYjgd', '7842903'), + (89137, 1044, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'pmbMYjgd', '7842904'), + (89138, 1044, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'pmbMYjgd', '7842905'), + (89139, 1044, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'pmbMYjgd', '7855719'), + (89140, 1044, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'pmbMYjgd', '7860683'), + (89141, 1044, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'pmbMYjgd', '7860684'), + (89142, 1044, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'pmbMYjgd', '7866095'), + (89143, 1044, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'pmbMYjgd', '7869170'), + (89144, 1044, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'pmbMYjgd', '7869188'), + (89145, 1044, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'pmbMYjgd', '7869201'), + (89146, 1044, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'pmbMYjgd', '7877465'), + (89147, 1044, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'pmbMYjgd', '7888250'), + (89148, 1044, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'pmbMYjgd', '7904777'), + (89149, 1044, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'pmbMYjgd', '8349164'), + (89150, 1044, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'pmbMYjgd', '8349545'), + (89151, 1044, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'pmbMYjgd', '8368028'), + (89152, 1044, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'pmbMYjgd', '8368029'), + (89153, 1044, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'pmbMYjgd', '8388462'), + (89154, 1044, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'pmbMYjgd', '8400273'), + (89155, 1044, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'pmbMYjgd', '8400275'), + (89156, 1044, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'pmbMYjgd', '8400276'), + (89157, 1044, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'pmbMYjgd', '8404977'), + (89158, 1044, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'pmbMYjgd', '8430783'), + (89159, 1044, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'pmbMYjgd', '8430784'), + (89160, 1044, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'pmbMYjgd', '8430799'), + (89161, 1044, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'pmbMYjgd', '8430800'), + (89162, 1044, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'pmbMYjgd', '8430801'), + (89163, 1044, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'pmbMYjgd', '8438709'), + (89164, 1044, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'pmbMYjgd', '8457738'), + (89165, 1044, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'pmbMYjgd', '8459566'), + (89166, 1044, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'pmbMYjgd', '8459567'), + (89167, 1044, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'pmbMYjgd', '8461032'), + (89168, 1044, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'pmbMYjgd', '8477877'), + (89169, 1044, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'pmbMYjgd', '8485688'), + (89170, 1044, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'pmbMYjgd', '8490587'), + (89171, 1044, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'pmbMYjgd', '8493552'), + (89172, 1044, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'pmbMYjgd', '8493553'), + (89173, 1044, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'pmbMYjgd', '8493554'), + (89174, 1044, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'pmbMYjgd', '8493555'), + (89175, 1044, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'pmbMYjgd', '8493556'), + (89176, 1044, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'pmbMYjgd', '8493557'), + (89177, 1044, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'pmbMYjgd', '8493558'), + (89178, 1044, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'pmbMYjgd', '8493559'), + (89179, 1044, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'pmbMYjgd', '8493560'), + (89180, 1044, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'pmbMYjgd', '8493561'), + (89181, 1044, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'pmbMYjgd', '8493572'), + (89182, 1044, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'pmbMYjgd', '8540725'), + (89183, 1044, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'pmbMYjgd', '8555421'), + (89184, 1045, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd5j1rN5m', '7074364'), + (89185, 1045, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'd5j1rN5m', '7291219'), + (89186, 1045, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'd5j1rN5m', '7301638'), + (89187, 1045, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd5j1rN5m', '7324073'), + (89188, 1045, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd5j1rN5m', '7324074'), + (89189, 1045, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd5j1rN5m', '7324075'), + (89190, 1045, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd5j1rN5m', '7324078'), + (89191, 1045, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd5j1rN5m', '7331457'), + (89192, 1045, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'd5j1rN5m', '7335193'), + (89193, 1045, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'd5j1rN5m', '7359624'), + (89194, 1045, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd5j1rN5m', '7363643'), + (89195, 1045, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd5j1rN5m', '7368606'), + (89196, 1046, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'mb10vYRd', '6337970'), + (89197, 1046, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'mb10vYRd', '6342044'), + (89198, 1046, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'mb10vYRd', '6343294'), + (89199, 1046, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'mb10vYRd', '6347034'), + (89200, 1046, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'mb10vYRd', '6347056'), + (89201, 1046, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'mb10vYRd', '6353830'), + (89202, 1046, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'mb10vYRd', '6353831'), + (89203, 1046, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'mb10vYRd', '6357867'), + (89204, 1046, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'mb10vYRd', '6358652'), + (89205, 1046, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:55', 'mb10vYRd', '6361709'), + (89206, 1046, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'mb10vYRd', '6361710'), + (89207, 1046, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'mb10vYRd', '6361711'), + (89208, 1046, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'mb10vYRd', '6361712'), + (89209, 1046, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'mb10vYRd', '6361713'), + (89210, 1046, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'mb10vYRd', '6382573'), + (89211, 1046, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'mb10vYRd', '6388604'), + (89212, 1046, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'mb10vYRd', '6394629'), + (89213, 1046, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'mb10vYRd', '6394631'), + (89214, 1046, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'mb10vYRd', '6431478'), + (89215, 1047, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AYRakkR4', '6337970'), + (89216, 1047, 2159, 'attending', '2023-07-22 21:52:03', '2025-12-17 19:46:53', 'AYRakkR4', '6338355'), + (89217, 1047, 2160, 'attending', '2023-07-29 16:34:48', '2025-12-17 19:46:54', 'AYRakkR4', '6338358'), + (89218, 1047, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AYRakkR4', '6342044'), + (89219, 1047, 2172, 'attending', '2023-07-20 02:43:20', '2025-12-17 19:46:53', 'AYRakkR4', '6342591'), + (89220, 1047, 2173, 'not_attending', '2023-07-20 00:59:43', '2025-12-17 19:46:53', 'AYRakkR4', '6342769'), + (89221, 1047, 2174, 'attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AYRakkR4', '6343294'), + (89222, 1047, 2176, 'attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AYRakkR4', '6347034'), + (89223, 1047, 2178, 'attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AYRakkR4', '6347056'), + (89224, 1047, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AYRakkR4', '6353830'), + (89225, 1047, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AYRakkR4', '6353831'), + (89226, 1047, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AYRakkR4', '6357867'), + (89227, 1048, 245, 'attending', '2020-11-30 18:54:48', '2025-12-17 19:47:54', 'o4Po0QwA', '3149476'), + (89228, 1048, 246, 'attending', '2020-12-15 19:26:37', '2025-12-17 19:47:55', 'o4Po0QwA', '3149477'), + (89229, 1048, 409, 'attending', '2020-12-07 21:25:21', '2025-12-17 19:47:54', 'o4Po0QwA', '3236467'), + (89230, 1048, 469, 'not_attending', '2020-11-28 16:11:16', '2025-12-17 19:47:54', 'o4Po0QwA', '3285414'), + (89231, 1048, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'o4Po0QwA', '3297764'), + (89232, 1048, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'o4Po0QwA', '3313856'), + (89233, 1048, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'o4Po0QwA', '3314909'), + (89234, 1048, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'o4Po0QwA', '3314964'), + (89235, 1048, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'o4Po0QwA', '3323365'), + (89236, 1048, 507, 'not_attending', '2020-12-07 15:56:41', '2025-12-17 19:47:48', 'o4Po0QwA', '3324148'), + (89237, 1048, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'o4Po0QwA', '3329383'), + (89238, 1048, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'o4Po0QwA', '3351539'), + (89239, 1048, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'o4Po0QwA', '3386848'), + (89240, 1048, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'o4Po0QwA', '3389527'), + (89241, 1048, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'o4Po0QwA', '3396499'), + (89242, 1048, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'o4Po0QwA', '3403650'), + (89243, 1048, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'o4Po0QwA', '3406988'), + (89244, 1048, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'o4Po0QwA', '3416576'), + (89245, 1048, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'o4Po0QwA', '3418925'), + (89246, 1048, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'o4Po0QwA', '6045684'), + (89247, 1049, 255, 'maybe', '2021-03-23 23:10:55', '2025-12-17 19:47:43', 'bdzMMpD4', '3149486'), + (89248, 1049, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'bdzMMpD4', '3236465'), + (89249, 1049, 641, 'maybe', '2021-04-03 15:37:40', '2025-12-17 19:47:44', 'bdzMMpD4', '3539916'), + (89250, 1049, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'bdzMMpD4', '3539918'), + (89251, 1049, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'bdzMMpD4', '3539919'), + (89252, 1049, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'bdzMMpD4', '3539920'), + (89253, 1049, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'bdzMMpD4', '3539921'), + (89254, 1049, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'bdzMMpD4', '3539927'), + (89255, 1049, 689, 'attending', '2021-03-23 23:11:04', '2025-12-17 19:47:44', 'bdzMMpD4', '3555564'), + (89256, 1049, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'bdzMMpD4', '3582734'), + (89257, 1049, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'bdzMMpD4', '3583262'), + (89258, 1049, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'bdzMMpD4', '3619523'), + (89259, 1049, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'bdzMMpD4', '3661369'), + (89260, 1049, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'bdzMMpD4', '3674262'), + (89261, 1049, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'bdzMMpD4', '3677402'), + (89262, 1049, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'bdzMMpD4', '3730212'), + (89263, 1049, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'bdzMMpD4', '3793156'), + (89264, 1049, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'bdzMMpD4', '3803310'), + (89265, 1049, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'bdzMMpD4', '3806392'), + (89266, 1049, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdzMMpD4', '6045684'), + (89267, 1050, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AnaYGVYm', '6361713'), + (89268, 1050, 2253, 'not_attending', '2023-09-27 22:18:44', '2025-12-17 19:46:45', 'AnaYGVYm', '6401811'), + (89269, 1050, 2264, 'attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'AnaYGVYm', '6431478'), + (89270, 1050, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'AnaYGVYm', '6440863'), + (89271, 1050, 2272, 'attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'AnaYGVYm', '6445440'), + (89272, 1050, 2276, 'attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'AnaYGVYm', '6453951'), + (89273, 1050, 2284, 'maybe', '2023-10-12 14:42:43', '2025-12-17 19:46:46', 'AnaYGVYm', '6460928'), + (89274, 1050, 2287, 'maybe', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'AnaYGVYm', '6461696'), + (89275, 1050, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'AnaYGVYm', '6462129'), + (89276, 1050, 2290, 'not_attending', '2023-10-11 23:48:45', '2025-12-17 19:46:46', 'AnaYGVYm', '6462214'), + (89277, 1050, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'AnaYGVYm', '6463218'), + (89278, 1050, 2296, 'maybe', '2023-10-18 22:32:39', '2025-12-17 19:46:47', 'AnaYGVYm', '6468393'), + (89279, 1050, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'AnaYGVYm', '6472181'), + (89280, 1050, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'AnaYGVYm', '6482693'), + (89281, 1050, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'AnaYGVYm', '6484200'), + (89282, 1050, 2307, 'maybe', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'AnaYGVYm', '6484680'), + (89283, 1050, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'AnaYGVYm', '6507741'), + (89284, 1050, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'AnaYGVYm', '6514659'), + (89285, 1050, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'AnaYGVYm', '6514660'), + (89286, 1050, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'AnaYGVYm', '6519103'), + (89287, 1050, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'AnaYGVYm', '6535681'), + (89288, 1050, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'AnaYGVYm', '6584747'), + (89289, 1050, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'AnaYGVYm', '6587097'), + (89290, 1050, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'AnaYGVYm', '6609022'), + (89291, 1050, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'AnaYGVYm', '6632757'), + (89292, 1050, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'AnaYGVYm', '6644187'), + (89293, 1050, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'AnaYGVYm', '6648951'), + (89294, 1050, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'AnaYGVYm', '6648952'), + (89295, 1050, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'AnaYGVYm', '6655401'), + (89296, 1050, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'AnaYGVYm', '6661585'), + (89297, 1050, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'AnaYGVYm', '6661588'), + (89298, 1050, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'AnaYGVYm', '6661589'), + (89299, 1050, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'AnaYGVYm', '6699906'), + (89300, 1050, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'AnaYGVYm', '6701109'), + (89301, 1050, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'AnaYGVYm', '6705219'), + (89302, 1050, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'AnaYGVYm', '6710153'), + (89303, 1050, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'AnaYGVYm', '6711552'), + (89304, 1050, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'AnaYGVYm', '6711553'), + (89305, 1051, 1242, 'attending', '2022-04-30 22:53:32', '2025-12-17 19:47:25', '4PNL6PZm', '5052241'), + (89306, 1051, 1348, 'attending', '2022-05-01 18:39:16', '2025-12-17 19:47:28', '4PNL6PZm', '5247605'), + (89307, 1051, 1355, 'attending', '2022-04-29 18:10:47', '2025-12-17 19:47:27', '4PNL6PZm', '5252573'), + (89308, 1051, 1362, 'not_attending', '2022-04-30 02:25:09', '2025-12-17 19:47:28', '4PNL6PZm', '5260800'), + (89309, 1051, 1365, 'attending', '2022-05-01 18:38:26', '2025-12-17 19:47:28', '4PNL6PZm', '5261600'), + (89310, 1051, 1367, 'not_attending', '2022-05-01 18:39:01', '2025-12-17 19:47:28', '4PNL6PZm', '5262345'), + (89311, 1051, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', '4PNL6PZm', '5269930'), + (89312, 1051, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', '4PNL6PZm', '5271448'), + (89313, 1051, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', '4PNL6PZm', '5271449'), + (89314, 1051, 1383, 'not_attending', '2022-05-04 23:14:02', '2025-12-17 19:47:28', '4PNL6PZm', '5276469'), + (89315, 1051, 1384, 'not_attending', '2022-05-08 21:45:44', '2025-12-17 19:47:28', '4PNL6PZm', '5277078'), + (89316, 1051, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4PNL6PZm', '5278159'), + (89317, 1051, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', '4PNL6PZm', '5363695'), + (89318, 1051, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4PNL6PZm', '5365960'), + (89319, 1051, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4PNL6PZm', '5368973'), + (89320, 1051, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4PNL6PZm', '5378247'), + (89321, 1051, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', '4PNL6PZm', '5389605'), + (89322, 1051, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', '4PNL6PZm', '5397265'), + (89323, 1051, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4PNL6PZm', '5403967'), + (89324, 1051, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4PNL6PZm', '5404786'), + (89325, 1051, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4PNL6PZm', '5405203'), + (89326, 1051, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4PNL6PZm', '5411699'), + (89327, 1051, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', '4PNL6PZm', '5412550'), + (89328, 1051, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4PNL6PZm', '5415046'), + (89329, 1051, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '4PNL6PZm', '5422086'), + (89330, 1051, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', '4PNL6PZm', '5422406'), + (89331, 1051, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4PNL6PZm', '5424565'), + (89332, 1051, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4PNL6PZm', '5426882'), + (89333, 1051, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4PNL6PZm', '5427083'), + (89334, 1051, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:20', '4PNL6PZm', '5441125'), + (89335, 1051, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', '4PNL6PZm', '5441126'), + (89336, 1051, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4PNL6PZm', '5441128'), + (89337, 1051, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4PNL6PZm', '5441131'), + (89338, 1051, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4PNL6PZm', '5441132'), + (89339, 1051, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4PNL6PZm', '5446643'), + (89340, 1051, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4PNL6PZm', '5453325'), + (89341, 1051, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4PNL6PZm', '5454516'), + (89342, 1051, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4PNL6PZm', '5454605'), + (89343, 1051, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4PNL6PZm', '5455037'), + (89344, 1051, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4PNL6PZm', '5461278'), + (89345, 1051, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4PNL6PZm', '5469480'), + (89346, 1051, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '4PNL6PZm', '5471073'), + (89347, 1051, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4PNL6PZm', '5474663'), + (89348, 1051, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4PNL6PZm', '5482022'), + (89349, 1051, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4PNL6PZm', '5482793'), + (89350, 1051, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4PNL6PZm', '5488912'), + (89351, 1051, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '4PNL6PZm', '5492192'), + (89352, 1051, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '4PNL6PZm', '5493139'), + (89353, 1051, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '4PNL6PZm', '5493200'), + (89354, 1051, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4PNL6PZm', '5502188'), + (89355, 1051, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4PNL6PZm', '5505059'), + (89356, 1051, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4PNL6PZm', '5509055'), + (89357, 1051, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4PNL6PZm', '5512862'), + (89358, 1051, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4PNL6PZm', '5513985'), + (89359, 1051, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', '4PNL6PZm', '5519981'), + (89360, 1051, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4PNL6PZm', '5522550'), + (89361, 1051, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4PNL6PZm', '5534683'), + (89362, 1051, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4PNL6PZm', '5546619'), + (89363, 1051, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4PNL6PZm', '5555245'), + (89364, 1051, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4PNL6PZm', '5557747'), + (89365, 1051, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PNL6PZm', '6045684'), + (89366, 1052, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '8dBNlzvd', '3517816'), + (89367, 1052, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8dBNlzvd', '3539927'), + (89368, 1052, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8dBNlzvd', '3582734'), + (89369, 1052, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dBNlzvd', '6045684'), + (89370, 1053, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'nda6Q9am', '3149489'), + (89371, 1053, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'nda6Q9am', '3149491'), + (89372, 1053, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'nda6Q9am', '3236450'), + (89373, 1053, 644, 'maybe', '2021-05-29 15:49:48', '2025-12-17 19:47:46', 'nda6Q9am', '3539919'), + (89374, 1053, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'nda6Q9am', '3975311'), + (89375, 1053, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'nda6Q9am', '3994992'), + (89376, 1053, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'nda6Q9am', '4014338'), + (89377, 1053, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nda6Q9am', '6045684'), + (89378, 1054, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'AgkYqBrA', '4736497'), + (89379, 1054, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'AgkYqBrA', '4736499'), + (89380, 1054, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'AgkYqBrA', '4736500'), + (89381, 1054, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'AgkYqBrA', '4736503'), + (89382, 1054, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'AgkYqBrA', '4736504'), + (89383, 1054, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AgkYqBrA', '4746789'), + (89384, 1054, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AgkYqBrA', '4753929'), + (89385, 1054, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'AgkYqBrA', '5038850'), + (89386, 1054, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'AgkYqBrA', '5045826'), + (89387, 1054, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'AgkYqBrA', '5132533'), + (89388, 1054, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'AgkYqBrA', '6045684'), + (89389, 1055, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dzbaOMbd', '7113468'), + (89390, 1055, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dzbaOMbd', '7114856'), + (89391, 1055, 2555, 'not_attending', '2024-04-13 21:48:38', '2025-12-17 19:46:34', 'dzbaOMbd', '7114951'), + (89392, 1055, 2557, 'not_attending', '2024-04-27 19:03:31', '2025-12-17 19:46:34', 'dzbaOMbd', '7114956'), + (89393, 1055, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dzbaOMbd', '7114957'), + (89394, 1055, 2561, 'attending', '2024-04-01 22:20:07', '2025-12-17 19:46:33', 'dzbaOMbd', '7131267'), + (89395, 1055, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dzbaOMbd', '7153615'), + (89396, 1055, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dzbaOMbd', '7159484'), + (89397, 1055, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzbaOMbd', '7178446'), + (89398, 1055, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dzbaOMbd', '7220467'), + (89399, 1055, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dzbaOMbd', '7240354'), + (89400, 1055, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dzbaOMbd', '7251633'), + (89401, 1055, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dzbaOMbd', '7302674'), + (89402, 1056, 1114, 'maybe', '2021-11-13 00:51:29', '2025-12-17 19:47:36', 'd9nPZvEm', '4637896'), + (89403, 1056, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'd9nPZvEm', '4642994'), + (89404, 1056, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'd9nPZvEm', '4642995'), + (89405, 1056, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'd9nPZvEm', '4642996'), + (89406, 1056, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'd9nPZvEm', '4642997'), + (89407, 1056, 1120, 'maybe', '2021-11-14 22:33:17', '2025-12-17 19:47:37', 'd9nPZvEm', '4644021'), + (89408, 1056, 1124, 'maybe', '2021-12-07 17:03:13', '2025-12-17 19:47:38', 'd9nPZvEm', '4644025'), + (89409, 1056, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'd9nPZvEm', '4645687'), + (89410, 1056, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'd9nPZvEm', '4645698'), + (89411, 1056, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'd9nPZvEm', '4645704'), + (89412, 1056, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'd9nPZvEm', '4645705'), + (89413, 1056, 1131, 'maybe', '2021-12-18 22:59:27', '2025-12-17 19:47:31', 'd9nPZvEm', '4658825'), + (89414, 1056, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'd9nPZvEm', '4668385'), + (89415, 1056, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'd9nPZvEm', '4694407'), + (89416, 1056, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'd9nPZvEm', '4706262'), + (89417, 1056, 1162, 'maybe', '2022-01-03 16:27:59', '2025-12-17 19:47:31', 'd9nPZvEm', '4718771'), + (89418, 1056, 1173, 'maybe', '2022-01-03 19:49:35', '2025-12-17 19:47:31', 'd9nPZvEm', '4736495'), + (89419, 1056, 1174, 'maybe', '2022-01-11 18:23:08', '2025-12-17 19:47:31', 'd9nPZvEm', '4736496'), + (89420, 1056, 1175, 'maybe', '2022-01-16 23:50:40', '2025-12-17 19:47:32', 'd9nPZvEm', '4736497'), + (89421, 1056, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'd9nPZvEm', '4736499'), + (89422, 1056, 1178, 'maybe', '2022-01-26 21:34:27', '2025-12-17 19:47:32', 'd9nPZvEm', '4736500'), + (89423, 1056, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'd9nPZvEm', '4736503'), + (89424, 1056, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'd9nPZvEm', '4736504'), + (89425, 1056, 1185, 'not_attending', '2022-01-14 14:25:45', '2025-12-17 19:47:31', 'd9nPZvEm', '4746789'), + (89426, 1056, 1188, 'maybe', '2022-01-11 18:22:38', '2025-12-17 19:47:32', 'd9nPZvEm', '4753929'), + (89427, 1056, 1210, 'not_attending', '2022-01-22 22:53:32', '2025-12-17 19:47:32', 'd9nPZvEm', '4776927'), + (89428, 1056, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'd9nPZvEm', '5038850'), + (89429, 1056, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'd9nPZvEm', '5045826'), + (89430, 1056, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'd9nPZvEm', '5132533'), + (89431, 1056, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'd9nPZvEm', '5186582'), + (89432, 1056, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'd9nPZvEm', '5186583'), + (89433, 1056, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'd9nPZvEm', '5186585'), + (89434, 1056, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'd9nPZvEm', '5190437'), + (89435, 1056, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'd9nPZvEm', '5215989'), + (89436, 1056, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9nPZvEm', '6045684'), + (89437, 1057, 634, 'attending', '2021-03-30 02:17:50', '2025-12-17 19:47:44', 'ydwwbMjd', '3534718'), + (89438, 1057, 635, 'attending', '2021-04-07 23:35:59', '2025-12-17 19:47:44', 'ydwwbMjd', '3534719'), + (89439, 1057, 636, 'attending', '2021-04-16 11:31:15', '2025-12-17 19:47:45', 'ydwwbMjd', '3534720'), + (89440, 1057, 641, 'attending', '2021-03-31 04:22:11', '2025-12-17 19:47:44', 'ydwwbMjd', '3539916'), + (89441, 1057, 642, 'attending', '2021-04-10 15:47:40', '2025-12-17 19:47:44', 'ydwwbMjd', '3539917'), + (89442, 1057, 643, 'attending', '2021-04-15 13:14:06', '2025-12-17 19:47:45', 'ydwwbMjd', '3539918'), + (89443, 1057, 644, 'attending', '2021-04-18 16:11:05', '2025-12-17 19:47:45', 'ydwwbMjd', '3539919'), + (89444, 1057, 645, 'attending', '2021-04-22 14:37:24', '2025-12-17 19:47:46', 'ydwwbMjd', '3539920'), + (89445, 1057, 646, 'attending', '2021-05-09 13:59:33', '2025-12-17 19:47:46', 'ydwwbMjd', '3539921'), + (89446, 1057, 647, 'attending', '2021-05-17 10:52:14', '2025-12-17 19:47:46', 'ydwwbMjd', '3539922'), + (89447, 1057, 648, 'attending', '2021-05-23 02:24:26', '2025-12-17 19:47:47', 'ydwwbMjd', '3539923'), + (89448, 1057, 689, 'attending', '2021-03-21 20:23:54', '2025-12-17 19:47:44', 'ydwwbMjd', '3555564'), + (89449, 1057, 703, 'not_attending', '2021-04-11 21:43:11', '2025-12-17 19:47:44', 'ydwwbMjd', '3578388'), + (89450, 1057, 704, 'attending', '2021-03-31 16:47:58', '2025-12-17 19:47:44', 'ydwwbMjd', '3581429'), + (89451, 1057, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'ydwwbMjd', '3583262'), + (89452, 1057, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'ydwwbMjd', '3619523'), + (89453, 1057, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'ydwwbMjd', '3661369'), + (89454, 1057, 728, 'not_attending', '2021-04-14 22:02:03', '2025-12-17 19:47:44', 'ydwwbMjd', '3668073'), + (89455, 1057, 729, 'not_attending', '2021-04-28 14:28:03', '2025-12-17 19:47:46', 'ydwwbMjd', '3668075'), + (89456, 1057, 730, 'not_attending', '2021-04-28 14:28:11', '2025-12-17 19:47:46', 'ydwwbMjd', '3668076'), + (89457, 1057, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'ydwwbMjd', '3674262'), + (89458, 1057, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'ydwwbMjd', '3677402'), + (89459, 1057, 738, 'attending', '2021-04-22 14:37:42', '2025-12-17 19:47:45', 'ydwwbMjd', '3680615'), + (89460, 1057, 739, 'attending', '2021-05-05 02:08:56', '2025-12-17 19:47:46', 'ydwwbMjd', '3680616'), + (89461, 1057, 741, 'attending', '2021-05-20 13:58:51', '2025-12-17 19:47:46', 'ydwwbMjd', '3680618'), + (89462, 1057, 748, 'attending', '2021-04-07 23:35:41', '2025-12-17 19:47:44', 'ydwwbMjd', '3685353'), + (89463, 1057, 752, 'attending', '2021-04-11 15:39:58', '2025-12-17 19:47:44', 'ydwwbMjd', '3699422'), + (89464, 1057, 756, 'not_attending', '2021-04-23 01:09:54', '2025-12-17 19:47:46', 'ydwwbMjd', '3704795'), + (89465, 1057, 758, 'attending', '2021-04-16 11:31:54', '2025-12-17 19:47:45', 'ydwwbMjd', '3713700'), + (89466, 1057, 759, 'attending', '2021-04-16 11:32:14', '2025-12-17 19:47:45', 'ydwwbMjd', '3713701'), + (89467, 1057, 761, 'attending', '2021-05-14 13:20:52', '2025-12-17 19:47:46', 'ydwwbMjd', '3716041'), + (89468, 1057, 768, 'attending', '2021-04-23 01:09:21', '2025-12-17 19:47:46', 'ydwwbMjd', '3724124'), + (89469, 1057, 769, 'attending', '2021-04-23 01:09:27', '2025-12-17 19:47:46', 'ydwwbMjd', '3724127'), + (89470, 1057, 770, 'attending', '2021-04-23 01:09:38', '2025-12-17 19:47:46', 'ydwwbMjd', '3724559'), + (89471, 1057, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ydwwbMjd', '3730212'), + (89472, 1057, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ydwwbMjd', '3793156'), + (89473, 1057, 796, 'attending', '2021-05-10 20:06:48', '2025-12-17 19:47:46', 'ydwwbMjd', '3793862'), + (89474, 1057, 797, 'attending', '2021-05-25 20:42:21', '2025-12-17 19:47:47', 'ydwwbMjd', '3796195'), + (89475, 1057, 804, 'attending', '2021-05-16 02:53:10', '2025-12-17 19:47:47', 'ydwwbMjd', '3804775'), + (89476, 1057, 809, 'attending', '2021-05-16 02:52:06', '2025-12-17 19:47:46', 'ydwwbMjd', '3807964'), + (89477, 1057, 815, 'attending', '2021-05-28 11:19:07', '2025-12-17 19:47:47', 'ydwwbMjd', '3818136'), + (89478, 1057, 823, 'attending', '2021-06-16 11:47:44', '2025-12-17 19:47:48', 'ydwwbMjd', '3974109'), + (89479, 1057, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'ydwwbMjd', '3975311'), + (89480, 1057, 828, 'attending', '2021-06-12 12:07:29', '2025-12-17 19:47:47', 'ydwwbMjd', '3975312'), + (89481, 1057, 832, 'not_attending', '2021-05-31 00:06:27', '2025-12-17 19:47:47', 'ydwwbMjd', '3976650'), + (89482, 1057, 833, 'attending', '2021-06-07 11:13:25', '2025-12-17 19:47:47', 'ydwwbMjd', '3990438'), + (89483, 1057, 838, 'attending', '2021-06-06 21:44:34', '2025-12-17 19:47:47', 'ydwwbMjd', '3994992'), + (89484, 1057, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ydwwbMjd', '4014338'), + (89485, 1057, 866, 'attending', '2021-06-21 13:07:20', '2025-12-17 19:47:38', 'ydwwbMjd', '4020424'), + (89486, 1057, 867, 'attending', '2021-06-25 18:07:04', '2025-12-17 19:47:38', 'ydwwbMjd', '4021848'), + (89487, 1057, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ydwwbMjd', '4136744'), + (89488, 1057, 870, 'attending', '2021-06-27 14:27:00', '2025-12-17 19:47:38', 'ydwwbMjd', '4136937'), + (89489, 1057, 871, 'attending', '2021-07-04 05:51:35', '2025-12-17 19:47:39', 'ydwwbMjd', '4136938'), + (89490, 1057, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwwbMjd', '4136947'), + (89491, 1057, 879, 'not_attending', '2021-06-26 14:10:07', '2025-12-17 19:47:38', 'ydwwbMjd', '4147806'), + (89492, 1057, 884, 'attending', '2021-07-17 05:01:46', '2025-12-17 19:47:42', 'ydwwbMjd', '4210314'), + (89493, 1057, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwwbMjd', '4225444'), + (89494, 1057, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ydwwbMjd', '4239259'), + (89495, 1057, 900, 'attending', '2021-07-23 22:14:40', '2025-12-17 19:47:40', 'ydwwbMjd', '4240316'), + (89496, 1057, 901, 'attending', '2021-07-25 18:57:42', '2025-12-17 19:47:40', 'ydwwbMjd', '4240317'), + (89497, 1057, 902, 'attending', '2021-08-06 01:10:31', '2025-12-17 19:47:41', 'ydwwbMjd', '4240318'), + (89498, 1057, 903, 'attending', '2021-08-11 11:14:51', '2025-12-17 19:47:42', 'ydwwbMjd', '4240320'), + (89499, 1057, 905, 'attending', '2021-07-06 12:18:25', '2025-12-17 19:47:39', 'ydwwbMjd', '4250163'), + (89500, 1057, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ydwwbMjd', '4275957'), + (89501, 1057, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydwwbMjd', '4277819'), + (89502, 1057, 922, 'attending', '2021-07-14 02:24:58', '2025-12-17 19:47:40', 'ydwwbMjd', '4280811'), + (89503, 1057, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydwwbMjd', '4301723'), + (89504, 1057, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ydwwbMjd', '4302093'), + (89505, 1057, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydwwbMjd', '4304151'), + (89506, 1057, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ydwwbMjd', '4356801'), + (89507, 1057, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ydwwbMjd', '4366186'), + (89508, 1057, 974, 'attending', '2021-08-18 23:35:00', '2025-12-17 19:47:42', 'ydwwbMjd', '4366187'), + (89509, 1057, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'ydwwbMjd', '4420735'), + (89510, 1057, 991, 'attending', '2021-09-08 01:17:22', '2025-12-17 19:47:43', 'ydwwbMjd', '4420738'), + (89511, 1057, 992, 'attending', '2021-09-15 23:15:24', '2025-12-17 19:47:33', 'ydwwbMjd', '4420739'), + (89512, 1057, 993, 'attending', '2021-09-22 18:59:50', '2025-12-17 19:47:34', 'ydwwbMjd', '4420741'), + (89513, 1057, 995, 'attending', '2021-10-04 19:34:14', '2025-12-17 19:47:34', 'ydwwbMjd', '4420744'), + (89514, 1057, 996, 'attending', '2021-10-16 02:13:53', '2025-12-17 19:47:35', 'ydwwbMjd', '4420747'), + (89515, 1057, 997, 'attending', '2021-10-23 15:27:03', '2025-12-17 19:47:35', 'ydwwbMjd', '4420748'), + (89516, 1057, 998, 'attending', '2021-10-26 01:37:02', '2025-12-17 19:47:36', 'ydwwbMjd', '4420749'), + (89517, 1057, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ydwwbMjd', '4461883'), + (89518, 1057, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ydwwbMjd', '4508342'), + (89519, 1057, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ydwwbMjd', '4568602'), + (89520, 1057, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ydwwbMjd', '4572153'), + (89521, 1057, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ydwwbMjd', '4585962'), + (89522, 1057, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ydwwbMjd', '4596356'), + (89523, 1057, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ydwwbMjd', '4598860'), + (89524, 1057, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ydwwbMjd', '4598861'), + (89525, 1057, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ydwwbMjd', '4602797'), + (89526, 1057, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ydwwbMjd', '4645687'), + (89527, 1057, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ydwwbMjd', '4645698'), + (89528, 1057, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ydwwbMjd', '4645704'), + (89529, 1057, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ydwwbMjd', '4645705'), + (89530, 1057, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ydwwbMjd', '4668385'), + (89531, 1057, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ydwwbMjd', '4694407'), + (89532, 1057, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'ydwwbMjd', '4706262'), + (89533, 1057, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwwbMjd', '6045684'), + (89534, 1058, 573, 'maybe', '2021-02-23 20:02:13', '2025-12-17 19:47:50', 'NmLPbEJm', '3435542'), + (89535, 1058, 594, 'attending', '2021-02-27 19:41:47', '2025-12-17 19:47:51', 'NmLPbEJm', '3467759'), + (89536, 1058, 595, 'not_attending', '2021-03-09 00:13:59', '2025-12-17 19:47:51', 'NmLPbEJm', '3467761'), + (89537, 1058, 603, 'maybe', '2021-02-20 23:28:09', '2025-12-17 19:47:50', 'NmLPbEJm', '3470304'), + (89538, 1058, 604, 'maybe', '2021-02-27 19:41:22', '2025-12-17 19:47:50', 'NmLPbEJm', '3470305'), + (89539, 1058, 610, 'attending', '2021-02-14 03:57:24', '2025-12-17 19:47:50', 'NmLPbEJm', '3482159'), + (89540, 1058, 612, 'attending', '2021-02-16 03:54:25', '2025-12-17 19:47:50', 'NmLPbEJm', '3490040'), + (89541, 1058, 613, 'maybe', '2021-02-23 20:01:52', '2025-12-17 19:47:50', 'NmLPbEJm', '3490041'), + (89542, 1058, 614, 'attending', '2021-03-03 23:29:07', '2025-12-17 19:47:51', 'NmLPbEJm', '3490042'), + (89543, 1058, 615, 'attending', '2021-02-18 22:19:57', '2025-12-17 19:47:50', 'NmLPbEJm', '3490045'), + (89544, 1058, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'NmLPbEJm', '3517815'), + (89545, 1058, 622, 'attending', '2021-03-12 03:22:50', '2025-12-17 19:47:51', 'NmLPbEJm', '3517816'), + (89546, 1058, 623, 'attending', '2021-02-27 19:41:17', '2025-12-17 19:47:50', 'NmLPbEJm', '3523941'), + (89547, 1058, 628, 'attending', '2021-03-14 04:21:30', '2025-12-17 19:47:51', 'NmLPbEJm', '3533305'), + (89548, 1058, 631, 'attending', '2021-03-07 23:51:50', '2025-12-17 19:47:51', 'NmLPbEJm', '3533850'), + (89549, 1058, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'NmLPbEJm', '3536632'), + (89550, 1058, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'NmLPbEJm', '3536656'), + (89551, 1058, 640, 'attending', '2021-03-03 23:29:18', '2025-12-17 19:47:51', 'NmLPbEJm', '3538866'), + (89552, 1058, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'NmLPbEJm', '3539916'), + (89553, 1058, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'NmLPbEJm', '3539917'), + (89554, 1058, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'NmLPbEJm', '3539918'), + (89555, 1058, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'NmLPbEJm', '3539919'), + (89556, 1058, 645, 'attending', '2021-05-03 17:58:33', '2025-12-17 19:47:46', 'NmLPbEJm', '3539920'), + (89557, 1058, 646, 'attending', '2021-05-15 22:32:25', '2025-12-17 19:47:46', 'NmLPbEJm', '3539921'), + (89558, 1058, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'NmLPbEJm', '3539922'), + (89559, 1058, 648, 'attending', '2021-05-29 21:34:03', '2025-12-17 19:47:47', 'NmLPbEJm', '3539923'), + (89560, 1058, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'NmLPbEJm', '3539927'), + (89561, 1058, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'NmLPbEJm', '3582734'), + (89562, 1058, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'NmLPbEJm', '3583262'), + (89563, 1058, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'NmLPbEJm', '3619523'), + (89564, 1058, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'NmLPbEJm', '3661369'), + (89565, 1058, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'NmLPbEJm', '3674262'), + (89566, 1058, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'NmLPbEJm', '3677402'), + (89567, 1058, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'NmLPbEJm', '3730212'), + (89568, 1058, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'NmLPbEJm', '3793156'), + (89569, 1058, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'NmLPbEJm', '3974109'), + (89570, 1058, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'NmLPbEJm', '3975311'), + (89571, 1058, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'NmLPbEJm', '3975312'), + (89572, 1058, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'NmLPbEJm', '3994992'), + (89573, 1058, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'NmLPbEJm', '4014338'), + (89574, 1058, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'NmLPbEJm', '4021848'), + (89575, 1058, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'NmLPbEJm', '4136744'), + (89576, 1058, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'NmLPbEJm', '4136937'), + (89577, 1058, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'NmLPbEJm', '4136938'), + (89578, 1058, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'NmLPbEJm', '4136947'), + (89579, 1058, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmLPbEJm', '4225444'), + (89580, 1058, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmLPbEJm', '4239259'), + (89581, 1058, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmLPbEJm', '4250163'), + (89582, 1058, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLPbEJm', '6045684'), + (89583, 1059, 407, 'maybe', '2021-04-15 00:59:10', '2025-12-17 19:47:44', 'xAYxbq9m', '3236465'), + (89584, 1059, 643, 'not_attending', '2021-04-16 03:26:51', '2025-12-17 19:47:45', 'xAYxbq9m', '3539918'), + (89585, 1059, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'xAYxbq9m', '3539919'), + (89586, 1059, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'xAYxbq9m', '3539920'), + (89587, 1059, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'xAYxbq9m', '3539921'), + (89588, 1059, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'xAYxbq9m', '3539922'), + (89589, 1059, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'xAYxbq9m', '3539923'), + (89590, 1059, 706, 'maybe', '2021-04-16 02:03:02', '2025-12-17 19:47:45', 'xAYxbq9m', '3582734'), + (89591, 1059, 707, 'not_attending', '2021-04-19 21:57:13', '2025-12-17 19:47:46', 'xAYxbq9m', '3583262'), + (89592, 1059, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'xAYxbq9m', '3730212'), + (89593, 1059, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'xAYxbq9m', '3793156'), + (89594, 1059, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'xAYxbq9m', '3975311'), + (89595, 1059, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'xAYxbq9m', '3994992'), + (89596, 1059, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYxbq9m', '6045684'), + (89597, 1060, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8mRlpDQ4', '6045684'), + (89598, 1061, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4ooDMYw4', '5880940'), + (89599, 1061, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4ooDMYw4', '5880942'), + (89600, 1061, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4ooDMYw4', '5880943'), + (89601, 1061, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4ooDMYw4', '5900199'), + (89602, 1061, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4ooDMYw4', '5900200'), + (89603, 1061, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4ooDMYw4', '5900202'), + (89604, 1061, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4ooDMYw4', '5900203'), + (89605, 1061, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4ooDMYw4', '5909655'), + (89606, 1061, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4ooDMYw4', '5910522'), + (89607, 1061, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4ooDMYw4', '5910526'), + (89608, 1061, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4ooDMYw4', '5910528'), + (89609, 1061, 1920, 'attending', '2023-02-10 03:08:00', '2025-12-17 19:47:07', '4ooDMYw4', '5914091'), + (89610, 1061, 1921, 'attending', '2023-02-14 05:48:02', '2025-12-17 19:47:08', '4ooDMYw4', '5914092'), + (89611, 1061, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4ooDMYw4', '5916219'), + (89612, 1061, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4ooDMYw4', '5936234'), + (89613, 1061, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '4ooDMYw4', '5936691'), + (89614, 1061, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4ooDMYw4', '5958351'), + (89615, 1061, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4ooDMYw4', '5959751'), + (89616, 1061, 1939, 'attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4ooDMYw4', '5959755'), + (89617, 1061, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4ooDMYw4', '5960055'), + (89618, 1061, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4ooDMYw4', '5961684'), + (89619, 1061, 1943, 'attending', '2023-03-07 11:58:53', '2025-12-17 19:47:10', '4ooDMYw4', '5962091'), + (89620, 1061, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4ooDMYw4', '5962132'), + (89621, 1061, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4ooDMYw4', '5962133'), + (89622, 1061, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4ooDMYw4', '5962134'), + (89623, 1061, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4ooDMYw4', '5962317'), + (89624, 1061, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4ooDMYw4', '5962318'), + (89625, 1061, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4ooDMYw4', '5965933'), + (89626, 1061, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4ooDMYw4', '5967014'), + (89627, 1061, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4ooDMYw4', '5972815'), + (89628, 1061, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4ooDMYw4', '5974016'), + (89629, 1061, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4ooDMYw4', '5981515'), + (89630, 1061, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4ooDMYw4', '5993516'), + (89631, 1061, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4ooDMYw4', '5998939'), + (89632, 1061, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4ooDMYw4', '6028191'), + (89633, 1061, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4ooDMYw4', '6040066'), + (89634, 1061, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4ooDMYw4', '6042717'), + (89635, 1061, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4ooDMYw4', '6045684'), + (89636, 1062, 646, 'not_attending', '2021-05-12 19:39:44', '2025-12-17 19:47:46', '1ArL9Wwd', '3539921'), + (89637, 1062, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', '1ArL9Wwd', '3539922'), + (89638, 1062, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', '1ArL9Wwd', '3539923'), + (89639, 1062, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', '1ArL9Wwd', '3974109'), + (89640, 1062, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', '1ArL9Wwd', '3975311'), + (89641, 1062, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', '1ArL9Wwd', '3975312'), + (89642, 1062, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '1ArL9Wwd', '3994992'), + (89643, 1062, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '1ArL9Wwd', '4014338'), + (89644, 1062, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '1ArL9Wwd', '4021848'), + (89645, 1062, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '1ArL9Wwd', '4136744'), + (89646, 1062, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '1ArL9Wwd', '4136937'), + (89647, 1062, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '1ArL9Wwd', '4136938'), + (89648, 1062, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '1ArL9Wwd', '4136947'), + (89649, 1062, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '1ArL9Wwd', '4210314'), + (89650, 1062, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '1ArL9Wwd', '4225444'), + (89651, 1062, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '1ArL9Wwd', '4239259'), + (89652, 1062, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '1ArL9Wwd', '4240316'), + (89653, 1062, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '1ArL9Wwd', '4240317'), + (89654, 1062, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '1ArL9Wwd', '4240318'), + (89655, 1062, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '1ArL9Wwd', '4240320'), + (89656, 1062, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '1ArL9Wwd', '4250163'), + (89657, 1062, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '1ArL9Wwd', '4275957'), + (89658, 1062, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '1ArL9Wwd', '4277819'), + (89659, 1062, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '1ArL9Wwd', '4301723'), + (89660, 1062, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '1ArL9Wwd', '4302093'), + (89661, 1062, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '1ArL9Wwd', '4304151'), + (89662, 1062, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '1ArL9Wwd', '4356801'), + (89663, 1062, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '1ArL9Wwd', '4366186'), + (89664, 1062, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '1ArL9Wwd', '4366187'), + (89665, 1062, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '1ArL9Wwd', '4420735'), + (89666, 1062, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '1ArL9Wwd', '4420738'), + (89667, 1062, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '1ArL9Wwd', '4420739'), + (89668, 1062, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '1ArL9Wwd', '4420741'), + (89669, 1062, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '1ArL9Wwd', '4420744'), + (89670, 1062, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '1ArL9Wwd', '4420747'), + (89671, 1062, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '1ArL9Wwd', '4420748'), + (89672, 1062, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '1ArL9Wwd', '4420749'), + (89673, 1062, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '1ArL9Wwd', '4461883'), + (89674, 1062, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '1ArL9Wwd', '4508342'), + (89675, 1062, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '1ArL9Wwd', '4568602'), + (89676, 1062, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '1ArL9Wwd', '4572153'), + (89677, 1062, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '1ArL9Wwd', '4585962'), + (89678, 1062, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', '1ArL9Wwd', '4596356'), + (89679, 1062, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '1ArL9Wwd', '4598860'), + (89680, 1062, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '1ArL9Wwd', '4598861'), + (89681, 1062, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '1ArL9Wwd', '4602797'), + (89682, 1062, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '1ArL9Wwd', '4637896'), + (89683, 1062, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '1ArL9Wwd', '4642994'), + (89684, 1062, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '1ArL9Wwd', '4642995'), + (89685, 1062, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '1ArL9Wwd', '4642996'), + (89686, 1062, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '1ArL9Wwd', '4642997'), + (89687, 1062, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '1ArL9Wwd', '4645687'), + (89688, 1062, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '1ArL9Wwd', '4645698'), + (89689, 1062, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '1ArL9Wwd', '4645704'), + (89690, 1062, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '1ArL9Wwd', '4645705'), + (89691, 1062, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '1ArL9Wwd', '4668385'), + (89692, 1062, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '1ArL9Wwd', '4694407'), + (89693, 1062, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', '1ArL9Wwd', '4706262'), + (89694, 1062, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '1ArL9Wwd', '4736497'), + (89695, 1062, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '1ArL9Wwd', '4736499'), + (89696, 1062, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '1ArL9Wwd', '4736500'), + (89697, 1062, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '1ArL9Wwd', '4736503'), + (89698, 1062, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '1ArL9Wwd', '4736504'), + (89699, 1062, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '1ArL9Wwd', '4746789'), + (89700, 1062, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '1ArL9Wwd', '4753929'), + (89701, 1062, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '1ArL9Wwd', '5038850'), + (89702, 1062, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '1ArL9Wwd', '5045826'), + (89703, 1062, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '1ArL9Wwd', '5132533'), + (89704, 1062, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '1ArL9Wwd', '5186582'), + (89705, 1062, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '1ArL9Wwd', '5186583'), + (89706, 1062, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '1ArL9Wwd', '5186585'), + (89707, 1062, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '1ArL9Wwd', '5190437'), + (89708, 1062, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '1ArL9Wwd', '5215989'), + (89709, 1062, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '1ArL9Wwd', '6045684'), + (89710, 1063, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'lAe1EMWA', '3470305'), + (89711, 1063, 605, 'not_attending', '2021-02-11 00:09:19', '2025-12-17 19:47:50', 'lAe1EMWA', '3470991'), + (89712, 1063, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'lAe1EMWA', '3517815'), + (89713, 1063, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'lAe1EMWA', '3523941'), + (89714, 1063, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'lAe1EMWA', '3533850'), + (89715, 1063, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'lAe1EMWA', '3536632'), + (89716, 1063, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'lAe1EMWA', '3536656'), + (89717, 1063, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'lAe1EMWA', '3539916'), + (89718, 1063, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'lAe1EMWA', '3539917'), + (89719, 1063, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'lAe1EMWA', '3539918'), + (89720, 1063, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'lAe1EMWA', '3539919'), + (89721, 1063, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'lAe1EMWA', '3539920'), + (89722, 1063, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'lAe1EMWA', '3539921'), + (89723, 1063, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'lAe1EMWA', '3539922'), + (89724, 1063, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'lAe1EMWA', '3539923'), + (89725, 1063, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'lAe1EMWA', '6045684'), + (89726, 1064, 258, 'attending', '2021-06-01 03:51:14', '2025-12-17 19:47:47', 'N4ErGrDd', '3149489'), + (89727, 1064, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'N4ErGrDd', '3974109'), + (89728, 1064, 824, 'attending', '2021-06-03 22:06:56', '2025-12-17 19:47:47', 'N4ErGrDd', '3974112'), + (89729, 1064, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'N4ErGrDd', '3975311'), + (89730, 1064, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'N4ErGrDd', '3975312'), + (89731, 1064, 830, 'attending', '2021-06-03 22:06:52', '2025-12-17 19:47:47', 'N4ErGrDd', '3976648'), + (89732, 1064, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'N4ErGrDd', '3994992'), + (89733, 1064, 841, 'attending', '2021-06-14 20:00:37', '2025-12-17 19:47:48', 'N4ErGrDd', '4007434'), + (89734, 1064, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'N4ErGrDd', '4014338'), + (89735, 1064, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'N4ErGrDd', '4136744'), + (89736, 1064, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'N4ErGrDd', '4136947'), + (89737, 1064, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'N4ErGrDd', '6045684'), + (89738, 1065, 1355, 'attending', '2022-04-29 04:45:27', '2025-12-17 19:47:27', 'mR6vj3Pm', '5252573'), + (89739, 1065, 1362, 'attending', '2022-04-27 21:46:16', '2025-12-17 19:47:28', 'mR6vj3Pm', '5260800'), + (89740, 1065, 1374, 'not_attending', '2022-05-07 20:14:49', '2025-12-17 19:47:28', 'mR6vj3Pm', '5269930'), + (89741, 1065, 1378, 'not_attending', '2022-05-14 22:13:38', '2025-12-17 19:47:29', 'mR6vj3Pm', '5271448'), + (89742, 1065, 1379, 'maybe', '2022-05-06 21:07:29', '2025-12-17 19:47:30', 'mR6vj3Pm', '5271449'), + (89743, 1065, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'mR6vj3Pm', '5276469'), + (89744, 1065, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'mR6vj3Pm', '5278159'), + (89745, 1065, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'mR6vj3Pm', '5363695'), + (89746, 1065, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'mR6vj3Pm', '5365960'), + (89747, 1065, 1415, 'maybe', '2022-05-19 18:57:59', '2025-12-17 19:47:30', 'mR6vj3Pm', '5368973'), + (89748, 1065, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'mR6vj3Pm', '5378247'), + (89749, 1065, 1431, 'attending', '2022-06-09 18:17:27', '2025-12-17 19:47:30', 'mR6vj3Pm', '5389605'), + (89750, 1065, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'mR6vj3Pm', '5397265'), + (89751, 1065, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'mR6vj3Pm', '5403967'), + (89752, 1065, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'mR6vj3Pm', '5404786'), + (89753, 1065, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'mR6vj3Pm', '5405203'), + (89754, 1065, 1470, 'maybe', '2022-06-13 00:07:44', '2025-12-17 19:47:17', 'mR6vj3Pm', '5407053'), + (89755, 1065, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'mR6vj3Pm', '5408794'), + (89756, 1065, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mR6vj3Pm', '6045684'), + (89757, 1066, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '0mqwqKX4', '3236465'), + (89758, 1066, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '0mqwqKX4', '3539916'), + (89759, 1066, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '0mqwqKX4', '3539918'), + (89760, 1066, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '0mqwqKX4', '3539919'), + (89761, 1066, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '0mqwqKX4', '3539920'), + (89762, 1066, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '0mqwqKX4', '3539921'), + (89763, 1066, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '0mqwqKX4', '3539927'), + (89764, 1066, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '0mqwqKX4', '3582734'), + (89765, 1066, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '0mqwqKX4', '3583262'), + (89766, 1066, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '0mqwqKX4', '3619523'), + (89767, 1066, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '0mqwqKX4', '3661369'), + (89768, 1066, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '0mqwqKX4', '3674262'), + (89769, 1066, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '0mqwqKX4', '3677402'), + (89770, 1066, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '0mqwqKX4', '3730212'), + (89771, 1066, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '0mqwqKX4', '3793156'), + (89772, 1066, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '0mqwqKX4', '3803310'), + (89773, 1066, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '0mqwqKX4', '3806392'), + (89774, 1066, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '0mqwqKX4', '6045684'), + (89775, 1067, 2518, 'not_attending', '2024-07-23 00:48:29', '2025-12-17 19:46:30', 'GAneN0Jm', '7074358'), + (89776, 1067, 2521, 'maybe', '2024-06-16 19:43:36', '2025-12-17 19:46:29', 'GAneN0Jm', '7074361'), + (89777, 1067, 2522, 'maybe', '2024-07-14 14:18:27', '2025-12-17 19:46:30', 'GAneN0Jm', '7074362'), + (89778, 1067, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAneN0Jm', '7074364'), + (89779, 1067, 2525, 'maybe', '2024-06-12 02:38:29', '2025-12-17 19:46:28', 'GAneN0Jm', '7074365'), + (89780, 1067, 2526, 'maybe', '2024-07-30 17:45:25', '2025-12-17 19:46:31', 'GAneN0Jm', '7074366'), + (89781, 1067, 2527, 'maybe', '2024-06-24 14:40:05', '2025-12-17 19:46:29', 'GAneN0Jm', '7074367'), + (89782, 1067, 2528, 'not_attending', '2024-08-06 02:07:41', '2025-12-17 19:46:31', 'GAneN0Jm', '7074368'), + (89783, 1067, 2530, 'not_attending', '2024-08-13 02:47:49', '2025-12-17 19:46:31', 'GAneN0Jm', '7074373'), + (89784, 1067, 2531, 'not_attending', '2024-08-28 01:17:34', '2025-12-17 19:46:32', 'GAneN0Jm', '7074378'), + (89785, 1067, 2532, 'not_attending', '2024-08-31 21:59:35', '2025-12-17 19:46:32', 'GAneN0Jm', '7074383'), + (89786, 1067, 2533, 'not_attending', '2024-08-18 15:53:57', '2025-12-17 19:46:32', 'GAneN0Jm', '7074384'), + (89787, 1067, 2629, 'maybe', '2024-06-08 18:08:04', '2025-12-17 19:46:28', 'GAneN0Jm', '7264726'), + (89788, 1067, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', 'GAneN0Jm', '7291219'), + (89789, 1067, 2661, 'maybe', '2024-06-13 02:26:08', '2025-12-17 19:46:28', 'GAneN0Jm', '7302674'), + (89790, 1067, 2671, 'maybe', '2024-06-09 21:35:16', '2025-12-17 19:46:28', 'GAneN0Jm', '7318256'), + (89791, 1067, 2673, 'attending', '2024-06-09 22:31:37', '2025-12-17 19:46:28', 'GAneN0Jm', '7319473'), + (89792, 1067, 2675, 'maybe', '2024-07-30 03:24:49', '2025-12-17 19:46:31', 'GAneN0Jm', '7319481'), + (89793, 1067, 2677, 'maybe', '2024-10-06 12:41:22', '2025-12-17 19:46:26', 'GAneN0Jm', '7319483'), + (89794, 1067, 2678, 'attending', '2024-06-15 11:45:44', '2025-12-17 19:46:28', 'GAneN0Jm', '7319489'), + (89795, 1067, 2679, 'attending', '2024-06-12 02:38:21', '2025-12-17 19:46:29', 'GAneN0Jm', '7319490'), + (89796, 1067, 2682, 'attending', '2024-06-10 15:01:15', '2025-12-17 19:46:28', 'GAneN0Jm', '7321862'), + (89797, 1067, 2683, 'attending', '2024-06-12 02:38:41', '2025-12-17 19:46:28', 'GAneN0Jm', '7321978'), + (89798, 1067, 2688, 'attending', '2024-06-22 21:48:22', '2025-12-17 19:46:29', 'GAneN0Jm', '7324073'), + (89799, 1067, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAneN0Jm', '7324074'), + (89800, 1067, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAneN0Jm', '7324075'), + (89801, 1067, 2691, 'attending', '2024-07-14 23:43:37', '2025-12-17 19:46:30', 'GAneN0Jm', '7324076'), + (89802, 1067, 2692, 'attending', '2024-07-14 23:43:52', '2025-12-17 19:46:30', 'GAneN0Jm', '7324077'), + (89803, 1067, 2693, 'attending', '2024-07-29 16:22:26', '2025-12-17 19:46:31', 'GAneN0Jm', '7324078'), + (89804, 1067, 2694, 'attending', '2024-08-06 23:13:30', '2025-12-17 19:46:31', 'GAneN0Jm', '7324079'), + (89805, 1067, 2695, 'attending', '2024-08-13 02:48:02', '2025-12-17 19:46:31', 'GAneN0Jm', '7324080'), + (89806, 1067, 2696, 'attending', '2024-08-19 15:41:30', '2025-12-17 19:46:32', 'GAneN0Jm', '7324081'), + (89807, 1067, 2697, 'not_attending', '2024-08-28 01:17:48', '2025-12-17 19:46:32', 'GAneN0Jm', '7324082'), + (89808, 1067, 2698, 'maybe', '2024-08-31 21:59:51', '2025-12-17 19:46:24', 'GAneN0Jm', '7324083'), + (89809, 1067, 2700, 'maybe', '2024-06-14 18:55:52', '2025-12-17 19:46:28', 'GAneN0Jm', '7324388'), + (89810, 1067, 2705, 'maybe', '2024-06-29 17:24:01', '2025-12-17 19:46:29', 'GAneN0Jm', '7324944'), + (89811, 1067, 2708, 'attending', '2024-06-14 23:07:26', '2025-12-17 19:46:28', 'GAneN0Jm', '7325048'), + (89812, 1067, 2711, 'maybe', '2024-07-19 16:34:35', '2025-12-17 19:46:30', 'GAneN0Jm', '7326524'), + (89813, 1067, 2712, 'maybe', '2024-08-01 19:55:35', '2025-12-17 19:46:31', 'GAneN0Jm', '7326525'), + (89814, 1067, 2720, 'maybe', '2024-06-18 20:56:46', '2025-12-17 19:46:28', 'GAneN0Jm', '7331436'), + (89815, 1067, 2721, 'maybe', '2024-06-19 16:30:16', '2025-12-17 19:46:29', 'GAneN0Jm', '7331456'), + (89816, 1067, 2722, 'maybe', '2024-07-05 21:07:28', '2025-12-17 19:46:29', 'GAneN0Jm', '7331457'), + (89817, 1067, 2724, 'maybe', '2024-06-26 22:18:14', '2025-12-17 19:46:29', 'GAneN0Jm', '7332562'), + (89818, 1067, 2729, 'maybe', '2024-06-21 21:28:22', '2025-12-17 19:46:29', 'GAneN0Jm', '7335092'), + (89819, 1067, 2733, 'maybe', '2024-06-26 02:57:59', '2025-12-17 19:46:29', 'GAneN0Jm', '7338853'), + (89820, 1067, 2741, 'maybe', '2024-06-30 23:33:56', '2025-12-17 19:46:30', 'GAneN0Jm', '7344592'), + (89821, 1067, 2743, 'maybe', '2024-07-05 18:01:50', '2025-12-17 19:46:29', 'GAneN0Jm', '7345688'), + (89822, 1067, 2745, 'maybe', '2024-07-23 00:48:51', '2025-12-17 19:46:30', 'GAneN0Jm', '7348712'), + (89823, 1067, 2747, 'maybe', '2024-07-14 23:43:19', '2025-12-17 19:46:30', 'GAneN0Jm', '7353587'), + (89824, 1067, 2753, 'maybe', '2024-07-08 23:41:42', '2025-12-17 19:46:30', 'GAneN0Jm', '7355538'), + (89825, 1067, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'GAneN0Jm', '7356752'), + (89826, 1067, 2755, 'attending', '2024-07-10 20:41:35', '2025-12-17 19:46:29', 'GAneN0Jm', '7357808'), + (89827, 1067, 2766, 'maybe', '2024-07-22 22:18:10', '2025-12-17 19:46:30', 'GAneN0Jm', '7363643'), + (89828, 1067, 2767, 'maybe', '2024-07-21 19:59:26', '2025-12-17 19:46:30', 'GAneN0Jm', '7364726'), + (89829, 1067, 2772, 'not_attending', '2024-07-23 20:15:14', '2025-12-17 19:46:30', 'GAneN0Jm', '7368267'), + (89830, 1067, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAneN0Jm', '7368606'), + (89831, 1067, 2785, 'maybe', '2024-07-30 15:45:03', '2025-12-17 19:46:31', 'GAneN0Jm', '7380988'), + (89832, 1067, 2787, 'not_attending', '2024-08-03 13:57:02', '2025-12-17 19:46:32', 'GAneN0Jm', '7381568'), + (89833, 1067, 2792, 'not_attending', '2024-08-08 14:15:15', '2025-12-17 19:46:31', 'GAneN0Jm', '7390763'), + (89834, 1067, 2800, 'not_attending', '2024-08-13 02:47:56', '2025-12-17 19:46:31', 'GAneN0Jm', '7397405'), + (89835, 1067, 2801, 'maybe', '2024-08-18 15:54:47', '2025-12-17 19:46:32', 'GAneN0Jm', '7397462'), + (89836, 1067, 2803, 'not_attending', '2024-08-14 12:52:16', '2025-12-17 19:46:32', 'GAneN0Jm', '7397869'), + (89837, 1067, 2806, 'maybe', '2024-09-15 21:24:43', '2025-12-17 19:46:25', 'GAneN0Jm', '7404888'), + (89838, 1067, 2808, 'maybe', '2024-08-28 20:26:44', '2025-12-17 19:46:32', 'GAneN0Jm', '7412860'), + (89839, 1067, 2811, 'not_attending', '2024-08-31 19:34:41', '2025-12-17 19:46:32', 'GAneN0Jm', '7418895'), + (89840, 1067, 2814, 'attending', '2024-09-06 23:53:54', '2025-12-17 19:46:24', 'GAneN0Jm', '7424267'), + (89841, 1067, 2816, 'maybe', '2024-09-17 02:56:43', '2025-12-17 19:46:25', 'GAneN0Jm', '7424269'), + (89842, 1067, 2817, 'maybe', '2024-09-29 01:52:07', '2025-12-17 19:46:25', 'GAneN0Jm', '7424270'), + (89843, 1067, 2818, 'attending', '2024-10-07 20:50:37', '2025-12-17 19:46:26', 'GAneN0Jm', '7424272'), + (89844, 1067, 2821, 'not_attending', '2024-10-07 20:50:26', '2025-12-17 19:46:26', 'GAneN0Jm', '7424275'), + (89845, 1067, 2822, 'maybe', '2024-11-09 21:46:02', '2025-12-17 19:46:26', 'GAneN0Jm', '7424276'), + (89846, 1067, 2824, 'maybe', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAneN0Jm', '7432751'), + (89847, 1067, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAneN0Jm', '7432752'), + (89848, 1067, 2826, 'attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAneN0Jm', '7432753'), + (89849, 1067, 2827, 'attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAneN0Jm', '7432754'), + (89850, 1067, 2828, 'attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAneN0Jm', '7432755'), + (89851, 1067, 2829, 'attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAneN0Jm', '7432756'), + (89852, 1067, 2830, 'attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAneN0Jm', '7432758'), + (89853, 1067, 2831, 'maybe', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAneN0Jm', '7432759'), + (89854, 1067, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAneN0Jm', '7433834'), + (89855, 1067, 2834, 'not_attending', '2024-09-11 22:00:40', '2025-12-17 19:46:25', 'GAneN0Jm', '7433852'), + (89856, 1067, 2835, 'maybe', '2024-09-11 22:00:33', '2025-12-17 19:46:24', 'GAneN0Jm', '7437354'), + (89857, 1067, 2836, 'maybe', '2024-09-13 21:02:29', '2025-12-17 19:46:25', 'GAneN0Jm', '7438708'), + (89858, 1067, 2837, 'maybe', '2024-09-12 18:57:43', '2025-12-17 19:46:25', 'GAneN0Jm', '7438711'), + (89859, 1067, 2838, 'maybe', '2024-09-24 10:12:27', '2025-12-17 19:46:25', 'GAneN0Jm', '7439182'), + (89860, 1067, 2839, 'maybe', '2024-09-25 00:42:54', '2025-12-17 19:46:25', 'GAneN0Jm', '7439262'), + (89861, 1067, 2840, 'maybe', '2024-09-15 21:24:36', '2025-12-17 19:46:25', 'GAneN0Jm', '7444429'), + (89862, 1067, 2843, 'not_attending', '2024-09-26 20:12:33', '2025-12-17 19:46:25', 'GAneN0Jm', '7450219'), + (89863, 1067, 2850, 'not_attending', '2024-10-01 20:45:06', '2025-12-17 19:46:25', 'GAneN0Jm', '7457153'), + (89864, 1067, 2854, 'maybe', '2024-10-03 00:23:09', '2025-12-17 19:46:26', 'GAneN0Jm', '7465684'), + (89865, 1067, 2856, 'not_attending', '2024-10-10 23:02:17', '2025-12-17 19:46:26', 'GAneN0Jm', '7469386'), + (89866, 1067, 2857, 'maybe', '2024-10-18 22:57:07', '2025-12-17 19:46:26', 'GAneN0Jm', '7469387'), + (89867, 1067, 2858, 'maybe', '2024-10-17 00:52:01', '2025-12-17 19:46:26', 'GAneN0Jm', '7469388'), + (89868, 1067, 2859, 'not_attending', '2024-10-29 21:41:46', '2025-12-17 19:46:26', 'GAneN0Jm', '7469389'), + (89869, 1067, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'GAneN0Jm', '7470197'), + (89870, 1067, 2865, 'maybe', '2024-10-29 21:41:55', '2025-12-17 19:46:26', 'GAneN0Jm', '7471200'), + (89871, 1067, 2868, 'not_attending', '2024-10-07 21:55:58', '2025-12-17 19:46:26', 'GAneN0Jm', '7474506'), + (89872, 1067, 2874, 'not_attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'GAneN0Jm', '7482239'), + (89873, 1067, 2876, 'not_attending', '2024-10-08 17:12:14', '2025-12-17 19:46:26', 'GAneN0Jm', '7490980'), + (89874, 1067, 2883, 'maybe', '2024-10-20 22:01:19', '2025-12-17 19:46:26', 'GAneN0Jm', '7649157'), + (89875, 1067, 2885, 'maybe', '2024-10-17 13:05:27', '2025-12-17 19:46:26', 'GAneN0Jm', '7649944'), + (89876, 1067, 2888, 'not_attending', '2024-10-20 22:01:09', '2025-12-17 19:46:26', 'GAneN0Jm', '7654822'), + (89877, 1067, 2892, 'not_attending', '2024-10-29 21:41:37', '2025-12-17 19:46:26', 'GAneN0Jm', '7672064'), + (89878, 1067, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'GAneN0Jm', '7685613'), + (89879, 1067, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAneN0Jm', '7688194'), + (89880, 1067, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAneN0Jm', '7688196'), + (89881, 1067, 2905, 'maybe', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAneN0Jm', '7688289'), + (89882, 1067, 2909, 'maybe', '2024-11-11 23:05:12', '2025-12-17 19:46:27', 'GAneN0Jm', '7689771'), + (89883, 1067, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAneN0Jm', '7692763'), + (89884, 1067, 2913, 'maybe', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAneN0Jm', '7697552'), + (89885, 1067, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAneN0Jm', '7699878'), + (89886, 1067, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GAneN0Jm', '7712467'), + (89887, 1067, 2926, 'maybe', '2024-12-06 23:50:51', '2025-12-17 19:46:21', 'GAneN0Jm', '7713585'), + (89888, 1067, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAneN0Jm', '7713586'), + (89889, 1067, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAneN0Jm', '7738518'), + (89890, 1067, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAneN0Jm', '7750636'), + (89891, 1067, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAneN0Jm', '7796540'), + (89892, 1067, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAneN0Jm', '7796541'), + (89893, 1067, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAneN0Jm', '7796542'), + (89894, 1067, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAneN0Jm', '7825913'), + (89895, 1067, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GAneN0Jm', '7826209'), + (89896, 1067, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAneN0Jm', '7834742'), + (89897, 1067, 2989, 'maybe', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GAneN0Jm', '7842108'), + (89898, 1067, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAneN0Jm', '7842902'), + (89899, 1067, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAneN0Jm', '7842903'), + (89900, 1067, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAneN0Jm', '7842904'), + (89901, 1067, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAneN0Jm', '7842905'), + (89902, 1067, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAneN0Jm', '7855719'), + (89903, 1067, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAneN0Jm', '7860683'), + (89904, 1067, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAneN0Jm', '7860684'), + (89905, 1067, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAneN0Jm', '7866095'), + (89906, 1067, 3013, 'maybe', '2025-03-05 23:22:47', '2025-12-17 19:46:18', 'GAneN0Jm', '7869170'), + (89907, 1067, 3017, 'not_attending', '2025-03-19 18:26:30', '2025-12-17 19:46:19', 'GAneN0Jm', '7869188'), + (89908, 1067, 3029, 'maybe', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAneN0Jm', '7869201'), + (89909, 1067, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAneN0Jm', '7877465'), + (89910, 1067, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAneN0Jm', '7888250'), + (89911, 1067, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GAneN0Jm', '7904777'), + (89912, 1067, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAneN0Jm', '8349164'), + (89913, 1067, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAneN0Jm', '8349545'), + (89914, 1067, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GAneN0Jm', '8368028'), + (89915, 1067, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GAneN0Jm', '8368029'), + (89916, 1067, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAneN0Jm', '8388462'), + (89917, 1067, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GAneN0Jm', '8400273'), + (89918, 1067, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GAneN0Jm', '8400275'), + (89919, 1067, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'GAneN0Jm', '8400276'), + (89920, 1067, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GAneN0Jm', '8404977'), + (89921, 1067, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GAneN0Jm', '8430783'), + (89922, 1067, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GAneN0Jm', '8430784'), + (89923, 1067, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GAneN0Jm', '8430799'), + (89924, 1067, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GAneN0Jm', '8430800'), + (89925, 1067, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GAneN0Jm', '8430801'), + (89926, 1067, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GAneN0Jm', '8438709'), + (89927, 1067, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAneN0Jm', '8457738'), + (89928, 1067, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GAneN0Jm', '8459566'), + (89929, 1067, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GAneN0Jm', '8459567'), + (89930, 1067, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GAneN0Jm', '8461032'), + (89931, 1067, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAneN0Jm', '8477877'), + (89932, 1067, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAneN0Jm', '8485688'), + (89933, 1067, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAneN0Jm', '8490587'), + (89934, 1067, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAneN0Jm', '8493552'), + (89935, 1067, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAneN0Jm', '8493553'), + (89936, 1067, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAneN0Jm', '8493554'), + (89937, 1067, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAneN0Jm', '8493555'), + (89938, 1067, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAneN0Jm', '8493556'), + (89939, 1067, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAneN0Jm', '8493557'), + (89940, 1067, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAneN0Jm', '8493558'), + (89941, 1067, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAneN0Jm', '8493559'), + (89942, 1067, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAneN0Jm', '8493560'), + (89943, 1067, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GAneN0Jm', '8493561'), + (89944, 1067, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAneN0Jm', '8493572'), + (89945, 1067, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAneN0Jm', '8540725'), + (89946, 1067, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAneN0Jm', '8555421'), + (89947, 1067, 3346, 'maybe', '2025-12-31 18:15:35', '2025-12-31 18:15:35', NULL, NULL), + (89948, 1068, 926, 'attending', '2021-08-18 19:12:09', '2025-12-17 19:47:42', 'NmLGzPJd', '4297211'), + (89949, 1068, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'NmLGzPJd', '4356801'), + (89950, 1068, 973, 'attending', '2021-08-16 05:20:51', '2025-12-17 19:47:42', 'NmLGzPJd', '4366186'), + (89951, 1068, 974, 'maybe', '2021-08-28 11:22:36', '2025-12-17 19:47:43', 'NmLGzPJd', '4366187'), + (89952, 1068, 975, 'attending', '2021-08-16 04:47:52', '2025-12-17 19:47:42', 'NmLGzPJd', '4367341'), + (89953, 1068, 978, 'attending', '2021-08-21 22:02:13', '2025-12-17 19:47:42', 'NmLGzPJd', '4378509'), + (89954, 1068, 985, 'attending', '2021-08-21 02:33:16', '2025-12-17 19:47:42', 'NmLGzPJd', '4391748'), + (89955, 1068, 988, 'maybe', '2021-08-24 02:44:24', '2025-12-17 19:47:42', 'NmLGzPJd', '4402823'), + (89956, 1068, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'NmLGzPJd', '4420735'), + (89957, 1068, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'NmLGzPJd', '4420738'), + (89958, 1068, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:34', 'NmLGzPJd', '4420739'), + (89959, 1068, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'NmLGzPJd', '4420741'), + (89960, 1068, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'NmLGzPJd', '4420744'), + (89961, 1068, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'NmLGzPJd', '4420747'), + (89962, 1068, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'NmLGzPJd', '4420748'), + (89963, 1068, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'NmLGzPJd', '4420749'), + (89964, 1068, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'NmLGzPJd', '4461883'), + (89965, 1068, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'NmLGzPJd', '4508342'), + (89966, 1068, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'NmLGzPJd', '4568602'), + (89967, 1068, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'NmLGzPJd', '4572153'), + (89968, 1068, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'NmLGzPJd', '4585962'), + (89969, 1068, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'NmLGzPJd', '4596356'), + (89970, 1068, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'NmLGzPJd', '4598860'), + (89971, 1068, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'NmLGzPJd', '4598861'), + (89972, 1068, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'NmLGzPJd', '4602797'), + (89973, 1068, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'NmLGzPJd', '4637896'), + (89974, 1068, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'NmLGzPJd', '4642994'), + (89975, 1068, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'NmLGzPJd', '4642995'), + (89976, 1068, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'NmLGzPJd', '4642996'), + (89977, 1068, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'NmLGzPJd', '4642997'), + (89978, 1068, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'NmLGzPJd', '4645687'), + (89979, 1068, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'NmLGzPJd', '4645698'), + (89980, 1068, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'NmLGzPJd', '4645704'), + (89981, 1068, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'NmLGzPJd', '4645705'), + (89982, 1068, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'NmLGzPJd', '4668385'), + (89983, 1068, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'NmLGzPJd', '4694407'), + (89984, 1068, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'NmLGzPJd', '4736497'), + (89985, 1068, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'NmLGzPJd', '4736499'), + (89986, 1068, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'NmLGzPJd', '4736500'), + (89987, 1068, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'NmLGzPJd', '4736503'), + (89988, 1068, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'NmLGzPJd', '4736504'), + (89989, 1068, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'NmLGzPJd', '4746789'), + (89990, 1068, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'NmLGzPJd', '4753929'), + (89991, 1068, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'NmLGzPJd', '5038850'), + (89992, 1068, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'NmLGzPJd', '5045826'), + (89993, 1068, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'NmLGzPJd', '5132533'), + (89994, 1068, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'NmLGzPJd', '5186582'), + (89995, 1068, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'NmLGzPJd', '5186583'), + (89996, 1068, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'NmLGzPJd', '5186585'), + (89997, 1068, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'NmLGzPJd', '5190437'), + (89998, 1068, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'NmLGzPJd', '5195095'), + (89999, 1068, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'NmLGzPJd', '5215989'), + (90000, 1068, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'NmLGzPJd', '5223686'), + (90001, 1068, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'NmLGzPJd', '5227432'), + (90002, 1068, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'NmLGzPJd', '5247467'), + (90003, 1068, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'NmLGzPJd', '5260800'), + (90004, 1068, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'NmLGzPJd', '5269930'), + (90005, 1068, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'NmLGzPJd', '5271448'), + (90006, 1068, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'NmLGzPJd', '5271449'), + (90007, 1068, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'NmLGzPJd', '5276469'), + (90008, 1068, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'NmLGzPJd', '5278159'), + (90009, 1068, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'NmLGzPJd', '5363695'), + (90010, 1068, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'NmLGzPJd', '5365960'), + (90011, 1068, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'NmLGzPJd', '5368973'), + (90012, 1068, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'NmLGzPJd', '5378247'), + (90013, 1068, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'NmLGzPJd', '5389605'), + (90014, 1068, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'NmLGzPJd', '5397265'), + (90015, 1068, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'NmLGzPJd', '5403967'), + (90016, 1068, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'NmLGzPJd', '5404786'), + (90017, 1068, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'NmLGzPJd', '5405203'), + (90018, 1068, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'NmLGzPJd', '5408794'), + (90019, 1068, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'NmLGzPJd', '5411699'), + (90020, 1068, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'NmLGzPJd', '5412550'), + (90021, 1068, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'NmLGzPJd', '5415046'), + (90022, 1068, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'NmLGzPJd', '5422086'), + (90023, 1068, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'NmLGzPJd', '5422406'), + (90024, 1068, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'NmLGzPJd', '5424565'), + (90025, 1068, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'NmLGzPJd', '5426882'), + (90026, 1068, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'NmLGzPJd', '5427083'), + (90027, 1068, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'NmLGzPJd', '5441125'), + (90028, 1068, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'NmLGzPJd', '5441126'), + (90029, 1068, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'NmLGzPJd', '5441128'), + (90030, 1068, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'NmLGzPJd', '5441131'), + (90031, 1068, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'NmLGzPJd', '5441132'), + (90032, 1068, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'NmLGzPJd', '5446643'), + (90033, 1068, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'NmLGzPJd', '5453325'), + (90034, 1068, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'NmLGzPJd', '5454516'), + (90035, 1068, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'NmLGzPJd', '5454605'), + (90036, 1068, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'NmLGzPJd', '5455037'), + (90037, 1068, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'NmLGzPJd', '5461278'), + (90038, 1068, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'NmLGzPJd', '5469480'), + (90039, 1068, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'NmLGzPJd', '5471073'), + (90040, 1068, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'NmLGzPJd', '5474663'), + (90041, 1068, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'NmLGzPJd', '5482022'), + (90042, 1068, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'NmLGzPJd', '5482793'), + (90043, 1068, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'NmLGzPJd', '5488912'), + (90044, 1068, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'NmLGzPJd', '5492192'), + (90045, 1068, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'NmLGzPJd', '5493139'), + (90046, 1068, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'NmLGzPJd', '5493200'), + (90047, 1068, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'NmLGzPJd', '5502188'), + (90048, 1068, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'NmLGzPJd', '5505059'), + (90049, 1068, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'NmLGzPJd', '5509055'), + (90050, 1068, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'NmLGzPJd', '5512862'), + (90051, 1068, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'NmLGzPJd', '5513985'), + (90052, 1068, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'NmLGzPJd', '5519981'), + (90053, 1068, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'NmLGzPJd', '5522550'), + (90054, 1068, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'NmLGzPJd', '5534683'), + (90055, 1068, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'NmLGzPJd', '5537735'), + (90056, 1068, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'NmLGzPJd', '5540859'), + (90057, 1068, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'NmLGzPJd', '5546619'), + (90058, 1068, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'NmLGzPJd', '5555245'), + (90059, 1068, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'NmLGzPJd', '5557747'), + (90060, 1068, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'NmLGzPJd', '5560255'), + (90061, 1068, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'NmLGzPJd', '5562906'), + (90062, 1068, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'NmLGzPJd', '5600604'), + (90063, 1068, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'NmLGzPJd', '5605544'), + (90064, 1068, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'NmLGzPJd', '5606737'), + (90065, 1068, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'NmLGzPJd', '5630960'), + (90066, 1068, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'NmLGzPJd', '5630961'), + (90067, 1068, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'NmLGzPJd', '5630962'), + (90068, 1068, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'NmLGzPJd', '5630966'), + (90069, 1068, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'NmLGzPJd', '5630967'), + (90070, 1068, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'NmLGzPJd', '5630968'), + (90071, 1068, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'NmLGzPJd', '5635406'), + (90072, 1068, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'NmLGzPJd', '5638765'), + (90073, 1068, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'NmLGzPJd', '5640097'), + (90074, 1068, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'NmLGzPJd', '5640843'), + (90075, 1068, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'NmLGzPJd', '5641521'), + (90076, 1068, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'NmLGzPJd', '5642818'), + (90077, 1068, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'NmLGzPJd', '5652395'), + (90078, 1068, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'NmLGzPJd', '5670445'), + (90079, 1068, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'NmLGzPJd', '5671637'), + (90080, 1068, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'NmLGzPJd', '5672329'), + (90081, 1068, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'NmLGzPJd', '5674057'), + (90082, 1068, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'NmLGzPJd', '5674060'), + (90083, 1068, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'NmLGzPJd', '5677461'), + (90084, 1068, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'NmLGzPJd', '5698046'), + (90085, 1068, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'NmLGzPJd', '5699760'), + (90086, 1068, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'NmLGzPJd', '5741601'), + (90087, 1068, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'NmLGzPJd', '5763458'), + (90088, 1068, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'NmLGzPJd', '5774172'), + (90089, 1068, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'NmLGzPJd', '5818247'), + (90090, 1068, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'NmLGzPJd', '5819471'), + (90091, 1068, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'NmLGzPJd', '5827739'), + (90092, 1068, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'NmLGzPJd', '5844306'), + (90093, 1068, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'NmLGzPJd', '5850159'), + (90094, 1068, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'NmLGzPJd', '5858999'), + (90095, 1068, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'NmLGzPJd', '5871984'), + (90096, 1068, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'NmLGzPJd', '5876354'), + (90097, 1068, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'NmLGzPJd', '5880939'), + (90098, 1068, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'NmLGzPJd', '5880940'), + (90099, 1068, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'NmLGzPJd', '5880942'), + (90100, 1068, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'NmLGzPJd', '5880943'), + (90101, 1068, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'NmLGzPJd', '5887890'), + (90102, 1068, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'NmLGzPJd', '5888598'), + (90103, 1068, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'NmLGzPJd', '5893260'), + (90104, 1068, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'NmLGzPJd', '5899826'), + (90105, 1068, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'NmLGzPJd', '5900199'), + (90106, 1068, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'NmLGzPJd', '5900200'), + (90107, 1068, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'NmLGzPJd', '5900202'), + (90108, 1068, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'NmLGzPJd', '5900203'), + (90109, 1068, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'NmLGzPJd', '5901108'), + (90110, 1068, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'NmLGzPJd', '5901126'), + (90111, 1068, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'NmLGzPJd', '5909655'), + (90112, 1068, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'NmLGzPJd', '5910522'), + (90113, 1068, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'NmLGzPJd', '5910526'), + (90114, 1068, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'NmLGzPJd', '5910528'), + (90115, 1068, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'NmLGzPJd', '5916219'), + (90116, 1068, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'NmLGzPJd', '5936234'), + (90117, 1068, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'NmLGzPJd', '5958351'), + (90118, 1068, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'NmLGzPJd', '5959751'), + (90119, 1068, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'NmLGzPJd', '5959755'), + (90120, 1068, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'NmLGzPJd', '5960055'), + (90121, 1068, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'NmLGzPJd', '5961684'), + (90122, 1068, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'NmLGzPJd', '5962132'), + (90123, 1068, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'NmLGzPJd', '5962133'), + (90124, 1068, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'NmLGzPJd', '5962134'), + (90125, 1068, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'NmLGzPJd', '5962317'), + (90126, 1068, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'NmLGzPJd', '5962318'), + (90127, 1068, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'NmLGzPJd', '5965933'), + (90128, 1068, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'NmLGzPJd', '5967014'), + (90129, 1068, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'NmLGzPJd', '5972815'), + (90130, 1068, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'NmLGzPJd', '5974016'), + (90131, 1068, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'NmLGzPJd', '5981515'), + (90132, 1068, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'NmLGzPJd', '5993516'), + (90133, 1068, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'NmLGzPJd', '5998939'), + (90134, 1068, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'NmLGzPJd', '6028191'), + (90135, 1068, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'NmLGzPJd', '6040066'), + (90136, 1068, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'NmLGzPJd', '6042717'), + (90137, 1068, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'NmLGzPJd', '6044838'), + (90138, 1068, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'NmLGzPJd', '6044839'), + (90139, 1068, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmLGzPJd', '6045684'), + (90140, 1068, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'NmLGzPJd', '6050104'), + (90141, 1068, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'NmLGzPJd', '6053195'), + (90142, 1068, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'NmLGzPJd', '6053198'), + (90143, 1068, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'NmLGzPJd', '6056085'), + (90144, 1068, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'NmLGzPJd', '6056916'), + (90145, 1068, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'NmLGzPJd', '6059290'), + (90146, 1068, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'NmLGzPJd', '6060328'), + (90147, 1068, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'NmLGzPJd', '6061037'), + (90148, 1068, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'NmLGzPJd', '6061039'), + (90149, 1068, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'NmLGzPJd', '6067245'), + (90150, 1068, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'NmLGzPJd', '6068094'), + (90151, 1068, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'NmLGzPJd', '6068252'), + (90152, 1068, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'NmLGzPJd', '6068253'), + (90153, 1068, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'NmLGzPJd', '6068254'), + (90154, 1068, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'NmLGzPJd', '6068280'), + (90155, 1068, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'NmLGzPJd', '6069093'), + (90156, 1068, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'NmLGzPJd', '6072528'), + (90157, 1068, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'NmLGzPJd', '6079840'), + (90158, 1068, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'NmLGzPJd', '6083398'), + (90159, 1068, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'NmLGzPJd', '6093504'), + (90160, 1068, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'NmLGzPJd', '6097414'), + (90161, 1068, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'NmLGzPJd', '6097442'), + (90162, 1068, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'NmLGzPJd', '6097684'), + (90163, 1068, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'NmLGzPJd', '6098762'), + (90164, 1068, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'NmLGzPJd', '6101361'), + (90165, 1068, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'NmLGzPJd', '6101362'), + (90166, 1068, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'NmLGzPJd', '6103752'), + (90167, 1068, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'NmLGzPJd', '6107314'), + (90168, 1068, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'NmLGzPJd', '6120034'), + (90169, 1068, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'NmLGzPJd', '6136733'), + (90170, 1068, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'NmLGzPJd', '6137989'), + (90171, 1068, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'NmLGzPJd', '6150864'), + (90172, 1068, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'NmLGzPJd', '6155491'), + (90173, 1068, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'NmLGzPJd', '6164417'), + (90174, 1068, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'NmLGzPJd', '6166388'), + (90175, 1068, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'NmLGzPJd', '6176439'), + (90176, 1068, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'NmLGzPJd', '6182410'), + (90177, 1068, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'NmLGzPJd', '6185812'), + (90178, 1068, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'NmLGzPJd', '6187651'), + (90179, 1068, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'NmLGzPJd', '6187963'), + (90180, 1068, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'NmLGzPJd', '6187964'), + (90181, 1068, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'NmLGzPJd', '6187966'), + (90182, 1068, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'NmLGzPJd', '6187967'), + (90183, 1068, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'NmLGzPJd', '6187969'), + (90184, 1068, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'NmLGzPJd', '6334878'), + (90185, 1068, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'NmLGzPJd', '6337236'), + (90186, 1068, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'NmLGzPJd', '6337970'), + (90187, 1068, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'NmLGzPJd', '6338308'), + (90188, 1068, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'NmLGzPJd', '6340845'), + (90189, 1068, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'NmLGzPJd', '6341710'), + (90190, 1068, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'NmLGzPJd', '6342044'), + (90191, 1068, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'NmLGzPJd', '6342298'), + (90192, 1068, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'NmLGzPJd', '6343294'), + (90193, 1068, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'NmLGzPJd', '6347034'), + (90194, 1068, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'NmLGzPJd', '6347056'), + (90195, 1068, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'NmLGzPJd', '6353830'), + (90196, 1068, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'NmLGzPJd', '6353831'), + (90197, 1068, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'NmLGzPJd', '6357867'), + (90198, 1068, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'NmLGzPJd', '6358652'), + (90199, 1068, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'NmLGzPJd', '6361709'), + (90200, 1068, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'NmLGzPJd', '6361710'), + (90201, 1068, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'NmLGzPJd', '6361711'), + (90202, 1068, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'NmLGzPJd', '6361712'), + (90203, 1068, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'NmLGzPJd', '6361713'), + (90204, 1068, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'NmLGzPJd', '6382573'), + (90205, 1068, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'NmLGzPJd', '6388604'), + (90206, 1068, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'NmLGzPJd', '6394629'), + (90207, 1068, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'NmLGzPJd', '6394631'), + (90208, 1068, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'NmLGzPJd', '6440863'), + (90209, 1068, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'NmLGzPJd', '6445440'), + (90210, 1068, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'NmLGzPJd', '6453951'), + (90211, 1068, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'NmLGzPJd', '6461696'), + (90212, 1068, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'NmLGzPJd', '6462129'), + (90213, 1068, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'NmLGzPJd', '6463218'), + (90214, 1068, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'NmLGzPJd', '6472181'), + (90215, 1068, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'NmLGzPJd', '6482693'), + (90216, 1068, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'NmLGzPJd', '6484200'), + (90217, 1068, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'NmLGzPJd', '6484680'), + (90218, 1068, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'NmLGzPJd', '6507741'), + (90219, 1068, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'NmLGzPJd', '6514659'), + (90220, 1068, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'NmLGzPJd', '6514660'), + (90221, 1068, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'NmLGzPJd', '6519103'), + (90222, 1068, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'NmLGzPJd', '6535681'), + (90223, 1068, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'NmLGzPJd', '6584747'), + (90224, 1068, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'NmLGzPJd', '6587097'), + (90225, 1068, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'NmLGzPJd', '6609022'), + (90226, 1068, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'NmLGzPJd', '6632757'), + (90227, 1068, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'NmLGzPJd', '6644187'), + (90228, 1068, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'NmLGzPJd', '6648951'), + (90229, 1068, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'NmLGzPJd', '6648952'), + (90230, 1068, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'NmLGzPJd', '6655401'), + (90231, 1068, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'NmLGzPJd', '6661585'), + (90232, 1068, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'NmLGzPJd', '6661588'), + (90233, 1068, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'NmLGzPJd', '6661589'), + (90234, 1068, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'NmLGzPJd', '6699906'), + (90235, 1068, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'NmLGzPJd', '6701109'), + (90236, 1068, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'NmLGzPJd', '6705219'), + (90237, 1068, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'NmLGzPJd', '6710153'), + (90238, 1068, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'NmLGzPJd', '6711552'), + (90239, 1068, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'NmLGzPJd', '6711553'), + (90240, 1069, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'Ae7VLJOd', '4136947'), + (90241, 1069, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'Ae7VLJOd', '4210314'), + (90242, 1069, 893, 'attending', '2021-07-23 16:47:39', '2025-12-17 19:47:40', 'Ae7VLJOd', '4229420'), + (90243, 1069, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'Ae7VLJOd', '4229423'), + (90244, 1069, 900, 'attending', '2021-07-24 22:46:42', '2025-12-17 19:47:40', 'Ae7VLJOd', '4240316'), + (90245, 1069, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'Ae7VLJOd', '4240317'), + (90246, 1069, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'Ae7VLJOd', '4240318'), + (90247, 1069, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'Ae7VLJOd', '4240320'), + (90248, 1069, 919, 'not_attending', '2021-07-17 04:16:39', '2025-12-17 19:47:39', 'Ae7VLJOd', '4275957'), + (90249, 1069, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'Ae7VLJOd', '4277819'), + (90250, 1069, 923, 'not_attending', '2021-07-20 02:30:14', '2025-12-17 19:47:40', 'Ae7VLJOd', '4292773'), + (90251, 1069, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'Ae7VLJOd', '4301723'), + (90252, 1069, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'Ae7VLJOd', '4302093'), + (90253, 1069, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'Ae7VLJOd', '4304151'), + (90254, 1069, 940, 'not_attending', '2021-07-30 16:29:46', '2025-12-17 19:47:40', 'Ae7VLJOd', '4309049'), + (90255, 1069, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'Ae7VLJOd', '4315713'), + (90256, 1069, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'Ae7VLJOd', '4315714'), + (90257, 1069, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'Ae7VLJOd', '4315726'), + (90258, 1069, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'Ae7VLJOd', '4356801'), + (90259, 1069, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'Ae7VLJOd', '4366186'), + (90260, 1069, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'Ae7VLJOd', '4366187'), + (90261, 1069, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'Ae7VLJOd', '4420735'), + (90262, 1069, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'Ae7VLJOd', '4420738'), + (90263, 1069, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'Ae7VLJOd', '4420739'), + (90264, 1069, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'Ae7VLJOd', '4420741'), + (90265, 1069, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'Ae7VLJOd', '4420744'), + (90266, 1069, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'Ae7VLJOd', '4420747'), + (90267, 1069, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'Ae7VLJOd', '4420748'), + (90268, 1069, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'Ae7VLJOd', '4420749'), + (90269, 1069, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'Ae7VLJOd', '4461883'), + (90270, 1069, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'Ae7VLJOd', '4508342'), + (90271, 1069, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'Ae7VLJOd', '4568602'), + (90272, 1069, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'Ae7VLJOd', '4572153'), + (90273, 1069, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'Ae7VLJOd', '4585962'), + (90274, 1069, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'Ae7VLJOd', '4596356'), + (90275, 1069, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'Ae7VLJOd', '4598860'), + (90276, 1069, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'Ae7VLJOd', '4598861'), + (90277, 1069, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'Ae7VLJOd', '4602797'), + (90278, 1069, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'Ae7VLJOd', '4637896'), + (90279, 1069, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Ae7VLJOd', '4642994'), + (90280, 1069, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'Ae7VLJOd', '4642995'), + (90281, 1069, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Ae7VLJOd', '4642996'), + (90282, 1069, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Ae7VLJOd', '4642997'), + (90283, 1069, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Ae7VLJOd', '4645687'), + (90284, 1069, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Ae7VLJOd', '4645698'), + (90285, 1069, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'Ae7VLJOd', '4645704'), + (90286, 1069, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Ae7VLJOd', '4645705'), + (90287, 1069, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae7VLJOd', '4668385'), + (90288, 1069, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Ae7VLJOd', '4694407'), + (90289, 1069, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'Ae7VLJOd', '4736497'), + (90290, 1069, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'Ae7VLJOd', '4736499'), + (90291, 1069, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'Ae7VLJOd', '4736500'), + (90292, 1069, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'Ae7VLJOd', '4736503'), + (90293, 1069, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'Ae7VLJOd', '4736504'), + (90294, 1069, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Ae7VLJOd', '4746789'), + (90295, 1069, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Ae7VLJOd', '4753929'), + (90296, 1069, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'Ae7VLJOd', '5038850'), + (90297, 1069, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'Ae7VLJOd', '5045826'), + (90298, 1069, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'Ae7VLJOd', '5132533'), + (90299, 1069, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'Ae7VLJOd', '5186582'), + (90300, 1069, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'Ae7VLJOd', '5186583'), + (90301, 1069, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'Ae7VLJOd', '5186585'), + (90302, 1069, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'Ae7VLJOd', '5190437'), + (90303, 1069, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'Ae7VLJOd', '5195095'), + (90304, 1069, 1288, 'not_attending', '2022-03-23 01:16:50', '2025-12-17 19:47:25', 'Ae7VLJOd', '5199460'), + (90305, 1069, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'Ae7VLJOd', '5215989'), + (90306, 1069, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'Ae7VLJOd', '5223686'), + (90307, 1069, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'Ae7VLJOd', '5247467'), + (90308, 1069, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'Ae7VLJOd', '5260800'), + (90309, 1069, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'Ae7VLJOd', '5269930'), + (90310, 1069, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'Ae7VLJOd', '5271448'), + (90311, 1069, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'Ae7VLJOd', '5271449'), + (90312, 1069, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'Ae7VLJOd', '5278159'), + (90313, 1069, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'Ae7VLJOd', '5363695'), + (90314, 1069, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'Ae7VLJOd', '5365960'), + (90315, 1069, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'Ae7VLJOd', '5378247'), + (90316, 1069, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'Ae7VLJOd', '5389605'), + (90317, 1069, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'Ae7VLJOd', '5397265'), + (90318, 1069, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'Ae7VLJOd', '5404786'), + (90319, 1069, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'Ae7VLJOd', '5405203'), + (90320, 1069, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'Ae7VLJOd', '5412550'), + (90321, 1069, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'Ae7VLJOd', '5415046'), + (90322, 1069, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'Ae7VLJOd', '5422086'), + (90323, 1069, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'Ae7VLJOd', '5422406'), + (90324, 1069, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'Ae7VLJOd', '5424565'), + (90325, 1069, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'Ae7VLJOd', '5426882'), + (90326, 1069, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'Ae7VLJOd', '5441125'), + (90327, 1069, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'Ae7VLJOd', '5441126'), + (90328, 1069, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'Ae7VLJOd', '5441128'), + (90329, 1069, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'Ae7VLJOd', '5441131'), + (90330, 1069, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'Ae7VLJOd', '5441132'), + (90331, 1069, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'Ae7VLJOd', '5453325'), + (90332, 1069, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'Ae7VLJOd', '5454516'), + (90333, 1069, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'Ae7VLJOd', '5454605'), + (90334, 1069, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'Ae7VLJOd', '5455037'), + (90335, 1069, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'Ae7VLJOd', '5461278'), + (90336, 1069, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'Ae7VLJOd', '5469480'), + (90337, 1069, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'Ae7VLJOd', '5474663'), + (90338, 1069, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'Ae7VLJOd', '5482022'), + (90339, 1069, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'Ae7VLJOd', '5488912'), + (90340, 1069, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'Ae7VLJOd', '5492192'), + (90341, 1069, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'Ae7VLJOd', '5493139'), + (90342, 1069, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'Ae7VLJOd', '5493200'), + (90343, 1069, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'Ae7VLJOd', '5502188'), + (90344, 1069, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'Ae7VLJOd', '5505059'), + (90345, 1069, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'Ae7VLJOd', '5509055'), + (90346, 1069, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'Ae7VLJOd', '5512862'), + (90347, 1069, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'Ae7VLJOd', '5513985'), + (90348, 1069, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'Ae7VLJOd', '5519981'), + (90349, 1069, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'Ae7VLJOd', '5522550'), + (90350, 1069, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'Ae7VLJOd', '5534683'), + (90351, 1069, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'Ae7VLJOd', '5537735'), + (90352, 1069, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'Ae7VLJOd', '5540859'), + (90353, 1069, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'Ae7VLJOd', '5546619'), + (90354, 1069, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'Ae7VLJOd', '5557747'), + (90355, 1069, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'Ae7VLJOd', '5560255'), + (90356, 1069, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'Ae7VLJOd', '5562906'), + (90357, 1069, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'Ae7VLJOd', '5600604'), + (90358, 1069, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'Ae7VLJOd', '5605544'), + (90359, 1069, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'Ae7VLJOd', '5630960'), + (90360, 1069, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'Ae7VLJOd', '5630961'), + (90361, 1069, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'Ae7VLJOd', '5630962'), + (90362, 1069, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'Ae7VLJOd', '5630966'), + (90363, 1069, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'Ae7VLJOd', '5630967'), + (90364, 1069, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'Ae7VLJOd', '5630968'), + (90365, 1069, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'Ae7VLJOd', '5635406'), + (90366, 1069, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'Ae7VLJOd', '5638765'), + (90367, 1069, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'Ae7VLJOd', '5640097'), + (90368, 1069, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'Ae7VLJOd', '5640843'), + (90369, 1069, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'Ae7VLJOd', '5641521'), + (90370, 1069, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'Ae7VLJOd', '5642818'), + (90371, 1069, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'Ae7VLJOd', '5652395'), + (90372, 1069, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'Ae7VLJOd', '5670445'), + (90373, 1069, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'Ae7VLJOd', '5671637'), + (90374, 1069, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'Ae7VLJOd', '5672329'), + (90375, 1069, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'Ae7VLJOd', '5674057'), + (90376, 1069, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'Ae7VLJOd', '5674060'), + (90377, 1069, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'Ae7VLJOd', '5677461'), + (90378, 1069, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'Ae7VLJOd', '5698046'), + (90379, 1069, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'Ae7VLJOd', '5699760'), + (90380, 1069, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'Ae7VLJOd', '5741601'), + (90381, 1069, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'Ae7VLJOd', '5763458'), + (90382, 1069, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'Ae7VLJOd', '5774172'), + (90383, 1069, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'Ae7VLJOd', '5818247'), + (90384, 1069, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'Ae7VLJOd', '5819471'), + (90385, 1069, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'Ae7VLJOd', '5827739'), + (90386, 1069, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'Ae7VLJOd', '5844306'), + (90387, 1069, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'Ae7VLJOd', '5850159'), + (90388, 1069, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'Ae7VLJOd', '5858999'), + (90389, 1069, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'Ae7VLJOd', '5871984'), + (90390, 1069, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'Ae7VLJOd', '5876354'), + (90391, 1069, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'Ae7VLJOd', '5880939'), + (90392, 1069, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'Ae7VLJOd', '5880940'), + (90393, 1069, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'Ae7VLJOd', '5880942'), + (90394, 1069, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'Ae7VLJOd', '5880943'), + (90395, 1069, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'Ae7VLJOd', '5887890'), + (90396, 1069, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'Ae7VLJOd', '5888598'), + (90397, 1069, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'Ae7VLJOd', '5893260'), + (90398, 1069, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'Ae7VLJOd', '5899826'), + (90399, 1069, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'Ae7VLJOd', '5900199'), + (90400, 1069, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'Ae7VLJOd', '5900200'), + (90401, 1069, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Ae7VLJOd', '5900202'), + (90402, 1069, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Ae7VLJOd', '5900203'), + (90403, 1069, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'Ae7VLJOd', '5901108'), + (90404, 1069, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'Ae7VLJOd', '5901126'), + (90405, 1069, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'Ae7VLJOd', '5909655'), + (90406, 1069, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'Ae7VLJOd', '5910522'), + (90407, 1069, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'Ae7VLJOd', '5910526'), + (90408, 1069, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'Ae7VLJOd', '5910528'), + (90409, 1069, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'Ae7VLJOd', '5916219'), + (90410, 1069, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'Ae7VLJOd', '5936234'), + (90411, 1069, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'Ae7VLJOd', '5958351'), + (90412, 1069, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'Ae7VLJOd', '5959751'), + (90413, 1069, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'Ae7VLJOd', '5959755'), + (90414, 1069, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'Ae7VLJOd', '5960055'), + (90415, 1069, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'Ae7VLJOd', '5961684'), + (90416, 1069, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'Ae7VLJOd', '5962132'), + (90417, 1069, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'Ae7VLJOd', '5962133'), + (90418, 1069, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'Ae7VLJOd', '5962134'), + (90419, 1069, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'Ae7VLJOd', '5962317'), + (90420, 1069, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'Ae7VLJOd', '5962318'), + (90421, 1069, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Ae7VLJOd', '5965933'), + (90422, 1069, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'Ae7VLJOd', '5967014'), + (90423, 1069, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'Ae7VLJOd', '5972815'), + (90424, 1069, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'Ae7VLJOd', '5974016'), + (90425, 1069, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Ae7VLJOd', '5981515'), + (90426, 1069, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Ae7VLJOd', '5993516'), + (90427, 1069, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Ae7VLJOd', '5998939'), + (90428, 1069, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Ae7VLJOd', '6028191'), + (90429, 1069, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Ae7VLJOd', '6040066'), + (90430, 1069, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Ae7VLJOd', '6042717'), + (90431, 1069, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Ae7VLJOd', '6044838'), + (90432, 1069, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Ae7VLJOd', '6044839'), + (90433, 1069, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Ae7VLJOd', '6045684'), + (90434, 1069, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Ae7VLJOd', '6050104'), + (90435, 1069, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Ae7VLJOd', '6053195'), + (90436, 1069, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Ae7VLJOd', '6053198'), + (90437, 1069, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Ae7VLJOd', '6056085'), + (90438, 1069, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Ae7VLJOd', '6056916'), + (90439, 1069, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Ae7VLJOd', '6059290'), + (90440, 1069, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Ae7VLJOd', '6060328'), + (90441, 1069, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Ae7VLJOd', '6061037'), + (90442, 1069, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Ae7VLJOd', '6061039'), + (90443, 1069, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Ae7VLJOd', '6067245'), + (90444, 1069, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Ae7VLJOd', '6068094'), + (90445, 1069, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Ae7VLJOd', '6068252'), + (90446, 1069, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Ae7VLJOd', '6068253'), + (90447, 1069, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Ae7VLJOd', '6068254'), + (90448, 1069, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Ae7VLJOd', '6068280'), + (90449, 1069, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Ae7VLJOd', '6069093'), + (90450, 1069, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'Ae7VLJOd', '6072528'), + (90451, 1069, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Ae7VLJOd', '6079840'), + (90452, 1069, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Ae7VLJOd', '6083398'), + (90453, 1069, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'Ae7VLJOd', '6093504'), + (90454, 1069, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Ae7VLJOd', '6097414'), + (90455, 1069, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Ae7VLJOd', '6097442'), + (90456, 1069, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Ae7VLJOd', '6097684'), + (90457, 1069, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Ae7VLJOd', '6098762'), + (90458, 1069, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'Ae7VLJOd', '6101361'), + (90459, 1069, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Ae7VLJOd', '6101362'), + (90460, 1069, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Ae7VLJOd', '6107314'), + (90461, 1069, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'Ae7VLJOd', '6120034'), + (90462, 1069, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'Ae7VLJOd', '6136733'), + (90463, 1069, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'Ae7VLJOd', '6137989'), + (90464, 1069, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'Ae7VLJOd', '6150864'), + (90465, 1069, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'Ae7VLJOd', '6155491'), + (90466, 1069, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'Ae7VLJOd', '6164417'), + (90467, 1069, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'Ae7VLJOd', '6166388'), + (90468, 1069, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'Ae7VLJOd', '6176439'), + (90469, 1069, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'Ae7VLJOd', '6182410'), + (90470, 1069, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'Ae7VLJOd', '6185812'), + (90471, 1069, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'Ae7VLJOd', '6187651'), + (90472, 1069, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'Ae7VLJOd', '6187963'), + (90473, 1069, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'Ae7VLJOd', '6187964'), + (90474, 1069, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'Ae7VLJOd', '6187966'), + (90475, 1069, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'Ae7VLJOd', '6187967'), + (90476, 1069, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'Ae7VLJOd', '6187969'), + (90477, 1069, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'Ae7VLJOd', '6334878'), + (90478, 1069, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'Ae7VLJOd', '6337236'), + (90479, 1069, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'Ae7VLJOd', '6337970'), + (90480, 1069, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'Ae7VLJOd', '6338308'), + (90481, 1069, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'Ae7VLJOd', '6341710'), + (90482, 1069, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'Ae7VLJOd', '6342044'), + (90483, 1069, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'Ae7VLJOd', '6342298'), + (90484, 1069, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'Ae7VLJOd', '6343294'), + (90485, 1069, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'Ae7VLJOd', '6347034'), + (90486, 1069, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'Ae7VLJOd', '6347056'), + (90487, 1069, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'Ae7VLJOd', '6353830'), + (90488, 1069, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'Ae7VLJOd', '6353831'), + (90489, 1069, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'Ae7VLJOd', '6357867'), + (90490, 1069, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'Ae7VLJOd', '6358652'), + (90491, 1069, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'Ae7VLJOd', '6361709'), + (90492, 1069, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'Ae7VLJOd', '6361710'), + (90493, 1069, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'Ae7VLJOd', '6361711'), + (90494, 1069, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'Ae7VLJOd', '6361712'), + (90495, 1069, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'Ae7VLJOd', '6361713'), + (90496, 1069, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'Ae7VLJOd', '6382573'), + (90497, 1069, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'Ae7VLJOd', '6388604'), + (90498, 1069, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'Ae7VLJOd', '6394629'), + (90499, 1069, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'Ae7VLJOd', '6394631'), + (90500, 1069, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'Ae7VLJOd', '6440863'), + (90501, 1069, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'Ae7VLJOd', '6445440'), + (90502, 1069, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'Ae7VLJOd', '6453951'), + (90503, 1069, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'Ae7VLJOd', '6461696'), + (90504, 1069, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'Ae7VLJOd', '6462129'), + (90505, 1069, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'Ae7VLJOd', '6463218'), + (90506, 1069, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'Ae7VLJOd', '6472181'), + (90507, 1069, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'Ae7VLJOd', '6482693'), + (90508, 1069, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'Ae7VLJOd', '6484200'), + (90509, 1069, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'Ae7VLJOd', '6484680'), + (90510, 1069, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'Ae7VLJOd', '6507741'), + (90511, 1069, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'Ae7VLJOd', '6514659'), + (90512, 1069, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'Ae7VLJOd', '6514660'), + (90513, 1069, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'Ae7VLJOd', '6519103'), + (90514, 1069, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'Ae7VLJOd', '6535681'), + (90515, 1069, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'Ae7VLJOd', '6584747'), + (90516, 1069, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'Ae7VLJOd', '6587097'), + (90517, 1069, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'Ae7VLJOd', '6609022'), + (90518, 1069, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'Ae7VLJOd', '6632757'), + (90519, 1069, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'Ae7VLJOd', '6644187'), + (90520, 1069, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'Ae7VLJOd', '6648951'), + (90521, 1069, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'Ae7VLJOd', '6648952'), + (90522, 1069, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'Ae7VLJOd', '6655401'), + (90523, 1069, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'Ae7VLJOd', '6661585'), + (90524, 1069, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'Ae7VLJOd', '6661588'), + (90525, 1069, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'Ae7VLJOd', '6661589'), + (90526, 1069, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'Ae7VLJOd', '6699906'), + (90527, 1069, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'Ae7VLJOd', '6699913'), + (90528, 1069, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'Ae7VLJOd', '6701109'), + (90529, 1069, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'Ae7VLJOd', '6705219'), + (90530, 1069, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'Ae7VLJOd', '6710153'), + (90531, 1069, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'Ae7VLJOd', '6711552'), + (90532, 1069, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'Ae7VLJOd', '6711553'), + (90533, 1069, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'Ae7VLJOd', '6722688'), + (90534, 1069, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'Ae7VLJOd', '6730620'), + (90535, 1069, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'Ae7VLJOd', '6740364'), + (90536, 1069, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'Ae7VLJOd', '6743829'), + (90537, 1069, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'Ae7VLJOd', '7030380'), + (90538, 1069, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'Ae7VLJOd', '7033677'), + (90539, 1069, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'Ae7VLJOd', '7044715'), + (90540, 1069, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'Ae7VLJOd', '7050318'), + (90541, 1069, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'Ae7VLJOd', '7050319'), + (90542, 1069, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'Ae7VLJOd', '7050322'), + (90543, 1069, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'Ae7VLJOd', '7057804'), + (90544, 1069, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'Ae7VLJOd', '7072824'), + (90545, 1069, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'Ae7VLJOd', '7074348'), + (90546, 1069, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'Ae7VLJOd', '7074364'), + (90547, 1069, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'Ae7VLJOd', '7089267'), + (90548, 1069, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'Ae7VLJOd', '7098747'), + (90549, 1069, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'Ae7VLJOd', '7113468'), + (90550, 1069, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'Ae7VLJOd', '7114856'), + (90551, 1069, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'Ae7VLJOd', '7114951'), + (90552, 1069, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'Ae7VLJOd', '7114955'), + (90553, 1069, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'Ae7VLJOd', '7114956'), + (90554, 1069, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'Ae7VLJOd', '7114957'), + (90555, 1069, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'Ae7VLJOd', '7159484'), + (90556, 1069, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'Ae7VLJOd', '7178446'), + (90557, 1069, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'Ae7VLJOd', '7220467'), + (90558, 1069, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'Ae7VLJOd', '7240354'), + (90559, 1069, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'Ae7VLJOd', '7251633'), + (90560, 1069, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'Ae7VLJOd', '7324073'), + (90561, 1069, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'Ae7VLJOd', '7324074'), + (90562, 1069, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'Ae7VLJOd', '7324075'), + (90563, 1069, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'Ae7VLJOd', '7324078'), + (90564, 1069, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'Ae7VLJOd', '7324082'), + (90565, 1069, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'Ae7VLJOd', '7331457'), + (90566, 1069, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'Ae7VLJOd', '7363643'), + (90567, 1069, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'Ae7VLJOd', '7368606'), + (90568, 1069, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'Ae7VLJOd', '7397462'), + (90569, 1069, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'Ae7VLJOd', '7424275'), + (90570, 1069, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'Ae7VLJOd', '7432751'), + (90571, 1069, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'Ae7VLJOd', '7432752'), + (90572, 1069, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'Ae7VLJOd', '7432753'), + (90573, 1069, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432754'), + (90574, 1069, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432755'), + (90575, 1069, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432756'), + (90576, 1069, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432758'), + (90577, 1069, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'Ae7VLJOd', '7432759'), + (90578, 1069, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'Ae7VLJOd', '7433834'), + (90579, 1069, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Ae7VLJOd', '7470197'), + (90580, 1069, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Ae7VLJOd', '7685613'), + (90581, 1069, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Ae7VLJOd', '7688194'), + (90582, 1069, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Ae7VLJOd', '7688196'), + (90583, 1069, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Ae7VLJOd', '7688289'), + (90584, 1069, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Ae7VLJOd', '7692763'), + (90585, 1069, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Ae7VLJOd', '7697552'), + (90586, 1069, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Ae7VLJOd', '7699878'), + (90587, 1069, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Ae7VLJOd', '7704043'), + (90588, 1069, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Ae7VLJOd', '7712467'), + (90589, 1069, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Ae7VLJOd', '7713585'), + (90590, 1069, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Ae7VLJOd', '7713586'), + (90591, 1069, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'Ae7VLJOd', '7738518'), + (90592, 1069, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Ae7VLJOd', '7750636'), + (90593, 1069, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Ae7VLJOd', '7796540'), + (90594, 1069, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Ae7VLJOd', '7796541'), + (90595, 1069, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Ae7VLJOd', '7796542'), + (90596, 1069, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Ae7VLJOd', '7825913'), + (90597, 1069, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Ae7VLJOd', '7826209'), + (90598, 1069, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Ae7VLJOd', '7834742'), + (90599, 1069, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Ae7VLJOd', '7842108'), + (90600, 1069, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Ae7VLJOd', '7842902'), + (90601, 1069, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Ae7VLJOd', '7842903'), + (90602, 1069, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Ae7VLJOd', '7842904'), + (90603, 1069, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Ae7VLJOd', '7842905'), + (90604, 1069, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Ae7VLJOd', '7855719'), + (90605, 1069, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Ae7VLJOd', '7860683'), + (90606, 1069, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Ae7VLJOd', '7860684'), + (90607, 1069, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Ae7VLJOd', '7866095'), + (90608, 1069, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Ae7VLJOd', '7869170'), + (90609, 1069, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Ae7VLJOd', '7869188'), + (90610, 1069, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Ae7VLJOd', '7869201'), + (90611, 1069, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Ae7VLJOd', '7877465'), + (90612, 1069, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Ae7VLJOd', '7888250'), + (90613, 1069, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'Ae7VLJOd', '7904777'), + (90614, 1069, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Ae7VLJOd', '8349164'), + (90615, 1069, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Ae7VLJOd', '8349545'), + (90616, 1069, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'Ae7VLJOd', '8368028'), + (90617, 1069, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'Ae7VLJOd', '8368029'), + (90618, 1069, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'Ae7VLJOd', '8388462'), + (90619, 1069, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'Ae7VLJOd', '8400273'), + (90620, 1069, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'Ae7VLJOd', '8400275'), + (90621, 1069, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'Ae7VLJOd', '8400276'), + (90622, 1069, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'Ae7VLJOd', '8404977'), + (90623, 1069, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'Ae7VLJOd', '8430783'), + (90624, 1069, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'Ae7VLJOd', '8430784'), + (90625, 1069, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'Ae7VLJOd', '8430799'), + (90626, 1069, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'Ae7VLJOd', '8430800'), + (90627, 1069, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'Ae7VLJOd', '8430801'), + (90628, 1069, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'Ae7VLJOd', '8438709'), + (90629, 1069, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'Ae7VLJOd', '8457738'), + (90630, 1069, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'Ae7VLJOd', '8459566'), + (90631, 1069, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'Ae7VLJOd', '8459567'), + (90632, 1069, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'Ae7VLJOd', '8461032'), + (90633, 1069, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'Ae7VLJOd', '8477877'), + (90634, 1069, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'Ae7VLJOd', '8485688'), + (90635, 1069, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'Ae7VLJOd', '8490587'), + (90636, 1069, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'Ae7VLJOd', '8493552'), + (90637, 1069, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'Ae7VLJOd', '8493553'), + (90638, 1069, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'Ae7VLJOd', '8493554'), + (90639, 1069, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'Ae7VLJOd', '8493555'), + (90640, 1069, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'Ae7VLJOd', '8493556'), + (90641, 1069, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'Ae7VLJOd', '8493557'), + (90642, 1069, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'Ae7VLJOd', '8493558'), + (90643, 1069, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'Ae7VLJOd', '8493559'), + (90644, 1069, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'Ae7VLJOd', '8493560'), + (90645, 1069, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'Ae7VLJOd', '8493561'), + (90646, 1069, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'Ae7VLJOd', '8493572'), + (90647, 1069, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'Ae7VLJOd', '8540725'), + (90648, 1069, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'Ae7VLJOd', '8555421'), + (90649, 1070, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'w4WENrEm', '3236450'), + (90650, 1070, 823, 'not_attending', '2021-06-18 12:02:07', '2025-12-17 19:47:48', 'w4WENrEm', '3974109'), + (90651, 1070, 827, 'maybe', '2021-06-05 22:35:00', '2025-12-17 19:47:47', 'w4WENrEm', '3975311'), + (90652, 1070, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'w4WENrEm', '3975312'), + (90653, 1070, 834, 'maybe', '2021-06-10 21:33:10', '2025-12-17 19:47:47', 'w4WENrEm', '3990439'), + (90654, 1070, 838, 'maybe', '2021-06-09 06:25:09', '2025-12-17 19:47:47', 'w4WENrEm', '3994992'), + (90655, 1070, 842, 'attending', '2021-06-08 15:38:36', '2025-12-17 19:47:47', 'w4WENrEm', '4009741'), + (90656, 1070, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'w4WENrEm', '4014338'), + (90657, 1070, 859, 'not_attending', '2021-06-16 21:36:11', '2025-12-17 19:47:48', 'w4WENrEm', '4015993'), + (90658, 1070, 866, 'not_attending', '2021-06-18 12:05:58', '2025-12-17 19:47:38', 'w4WENrEm', '4020424'), + (90659, 1070, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'w4WENrEm', '4021848'), + (90660, 1070, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'w4WENrEm', '4136744'), + (90661, 1070, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'w4WENrEm', '4136937'), + (90662, 1070, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'w4WENrEm', '4136938'), + (90663, 1070, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'w4WENrEm', '4136947'), + (90664, 1070, 873, 'not_attending', '2021-06-18 12:05:59', '2025-12-17 19:47:48', 'w4WENrEm', '4138297'), + (90665, 1070, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'w4WENrEm', '4210314'), + (90666, 1070, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'w4WENrEm', '4225444'), + (90667, 1070, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'w4WENrEm', '4239259'), + (90668, 1070, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'w4WENrEm', '4240316'), + (90669, 1070, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'w4WENrEm', '4240317'), + (90670, 1070, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'w4WENrEm', '4240318'), + (90671, 1070, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'w4WENrEm', '4240320'), + (90672, 1070, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'w4WENrEm', '4250163'), + (90673, 1070, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'w4WENrEm', '4275957'), + (90674, 1070, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'w4WENrEm', '4277819'), + (90675, 1070, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'w4WENrEm', '4301723'), + (90676, 1070, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'w4WENrEm', '4302093'), + (90677, 1070, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'w4WENrEm', '4304151'), + (90678, 1070, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'w4WENrEm', '4345519'), + (90679, 1070, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'w4WENrEm', '4358025'), + (90680, 1070, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'w4WENrEm', '4366186'), + (90681, 1070, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'w4WENrEm', '4366187'), + (90682, 1070, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'w4WENrEm', '6045684'), + (90683, 1071, 846, 'attending', '2021-07-04 02:48:30', '2025-12-17 19:47:39', 'nm62xD1m', '4015718'), + (90684, 1071, 851, 'attending', '2021-08-18 16:16:57', '2025-12-17 19:47:42', 'nm62xD1m', '4015723'), + (90685, 1071, 853, 'attending', '2021-08-10 17:53:55', '2025-12-17 19:47:41', 'nm62xD1m', '4015725'), + (90686, 1071, 870, 'attending', '2021-07-03 01:53:26', '2025-12-17 19:47:39', 'nm62xD1m', '4136937'), + (90687, 1071, 871, 'attending', '2021-07-05 18:13:22', '2025-12-17 19:47:39', 'nm62xD1m', '4136938'), + (90688, 1071, 872, 'attending', '2021-07-19 10:20:45', '2025-12-17 19:47:40', 'nm62xD1m', '4136947'), + (90689, 1071, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nm62xD1m', '4210314'), + (90690, 1071, 887, 'attending', '2021-07-11 02:34:21', '2025-12-17 19:47:39', 'nm62xD1m', '4225444'), + (90691, 1071, 891, 'attending', '2021-07-01 19:00:40', '2025-12-17 19:47:38', 'nm62xD1m', '4229417'), + (90692, 1071, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'nm62xD1m', '4239259'), + (90693, 1071, 900, 'attending', '2021-07-19 10:20:37', '2025-12-17 19:47:40', 'nm62xD1m', '4240316'), + (90694, 1071, 901, 'attending', '2021-07-27 15:43:02', '2025-12-17 19:47:40', 'nm62xD1m', '4240317'), + (90695, 1071, 902, 'attending', '2021-08-07 03:21:44', '2025-12-17 19:47:41', 'nm62xD1m', '4240318'), + (90696, 1071, 903, 'attending', '2021-08-10 17:54:54', '2025-12-17 19:47:42', 'nm62xD1m', '4240320'), + (90697, 1071, 905, 'attending', '2021-07-04 14:50:44', '2025-12-17 19:47:39', 'nm62xD1m', '4250163'), + (90698, 1071, 916, 'attending', '2021-07-18 00:02:37', '2025-12-17 19:47:40', 'nm62xD1m', '4273772'), + (90699, 1071, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'nm62xD1m', '4275957'), + (90700, 1071, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nm62xD1m', '4277819'), + (90701, 1071, 933, 'attending', '2021-07-27 15:39:09', '2025-12-17 19:47:40', 'nm62xD1m', '4301723'), + (90702, 1071, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'nm62xD1m', '4302093'), + (90703, 1071, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nm62xD1m', '4304151'), + (90704, 1071, 937, 'attending', '2021-07-27 15:38:50', '2025-12-17 19:47:40', 'nm62xD1m', '4306596'), + (90705, 1071, 940, 'attending', '2021-07-27 15:42:59', '2025-12-17 19:47:40', 'nm62xD1m', '4309049'), + (90706, 1071, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'nm62xD1m', '4345519'), + (90707, 1071, 971, 'attending', '2021-09-07 10:32:18', '2025-12-17 19:47:43', 'nm62xD1m', '4356801'), + (90708, 1071, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'nm62xD1m', '4358025'), + (90709, 1071, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'nm62xD1m', '4366186'), + (90710, 1071, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'nm62xD1m', '4366187'), + (90711, 1071, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'nm62xD1m', '4402823'), + (90712, 1071, 990, 'attending', '2021-08-29 04:32:18', '2025-12-17 19:47:43', 'nm62xD1m', '4420735'), + (90713, 1071, 991, 'attending', '2021-08-29 04:32:16', '2025-12-17 19:47:43', 'nm62xD1m', '4420738'), + (90714, 1071, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nm62xD1m', '4420739'), + (90715, 1071, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm62xD1m', '4420741'), + (90716, 1071, 995, 'attending', '2021-10-04 09:01:01', '2025-12-17 19:47:34', 'nm62xD1m', '4420744'), + (90717, 1071, 996, 'attending', '2021-10-05 03:39:08', '2025-12-17 19:47:35', 'nm62xD1m', '4420747'), + (90718, 1071, 997, 'attending', '2021-10-23 17:41:48', '2025-12-17 19:47:35', 'nm62xD1m', '4420748'), + (90719, 1071, 998, 'attending', '2021-10-27 00:26:21', '2025-12-17 19:47:36', 'nm62xD1m', '4420749'), + (90720, 1071, 1022, 'attending', '2021-09-15 22:59:20', '2025-12-17 19:47:43', 'nm62xD1m', '4458628'), + (90721, 1071, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'nm62xD1m', '4461883'), + (90722, 1071, 1040, 'attending', '2021-12-12 00:01:46', '2025-12-17 19:47:38', 'nm62xD1m', '4496605'), + (90723, 1071, 1041, 'attending', '2021-12-04 20:24:52', '2025-12-17 19:47:37', 'nm62xD1m', '4496606'), + (90724, 1071, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'nm62xD1m', '4508342'), + (90725, 1071, 1079, 'attending', '2021-10-20 21:58:38', '2025-12-17 19:47:35', 'nm62xD1m', '4563823'), + (90726, 1071, 1082, 'attending', '2021-10-15 17:56:22', '2025-12-17 19:47:35', 'nm62xD1m', '4566762'), + (90727, 1071, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'nm62xD1m', '4568602'), + (90728, 1071, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'nm62xD1m', '4572153'), + (90729, 1071, 1092, 'attending', '2021-10-21 03:35:01', '2025-12-17 19:47:35', 'nm62xD1m', '4582837'), + (90730, 1071, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'nm62xD1m', '4585962'), + (90731, 1071, 1094, 'attending', '2021-10-21 03:39:36', '2025-12-17 19:47:36', 'nm62xD1m', '4587337'), + (90732, 1071, 1095, 'attending', '2021-10-27 00:25:43', '2025-12-17 19:47:35', 'nm62xD1m', '4596356'), + (90733, 1071, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'nm62xD1m', '4598860'), + (90734, 1071, 1098, 'attending', '2021-11-10 20:31:16', '2025-12-17 19:47:36', 'nm62xD1m', '4598861'), + (90735, 1071, 1099, 'attending', '2021-10-31 01:27:16', '2025-12-17 19:47:36', 'nm62xD1m', '4602797'), + (90736, 1071, 1103, 'attending', '2021-11-13 08:58:22', '2025-12-17 19:47:36', 'nm62xD1m', '4616350'), + (90737, 1071, 1106, 'attending', '2021-11-11 18:38:29', '2025-12-17 19:47:36', 'nm62xD1m', '4620452'), + (90738, 1071, 1114, 'attending', '2021-11-14 00:28:23', '2025-12-17 19:47:36', 'nm62xD1m', '4637896'), + (90739, 1071, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'nm62xD1m', '4642994'), + (90740, 1071, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'nm62xD1m', '4642995'), + (90741, 1071, 1118, 'attending', '2021-12-15 21:18:17', '2025-12-17 19:47:38', 'nm62xD1m', '4642996'), + (90742, 1071, 1119, 'attending', '2021-12-21 15:15:43', '2025-12-17 19:47:31', 'nm62xD1m', '4642997'), + (90743, 1071, 1126, 'attending', '2021-12-11 18:23:23', '2025-12-17 19:47:38', 'nm62xD1m', '4645687'), + (90744, 1071, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'nm62xD1m', '4645698'), + (90745, 1071, 1128, 'attending', '2021-11-21 00:04:21', '2025-12-17 19:47:37', 'nm62xD1m', '4645704'), + (90746, 1071, 1129, 'attending', '2021-11-27 22:37:56', '2025-12-17 19:47:37', 'nm62xD1m', '4645705'), + (90747, 1071, 1130, 'attending', '2021-12-04 20:24:50', '2025-12-17 19:47:37', 'nm62xD1m', '4658824'), + (90748, 1071, 1134, 'attending', '2021-11-24 22:11:56', '2025-12-17 19:47:37', 'nm62xD1m', '4668385'), + (90749, 1071, 1135, 'attending', '2021-11-26 23:08:11', '2025-12-17 19:47:37', 'nm62xD1m', '4670469'), + (90750, 1071, 1137, 'maybe', '2021-11-29 17:48:58', '2025-12-17 19:47:37', 'nm62xD1m', '4674797'), + (90751, 1071, 1143, 'attending', '2021-12-02 00:17:44', '2025-12-17 19:47:37', 'nm62xD1m', '4683667'), + (90752, 1071, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'nm62xD1m', '4694407'), + (90753, 1071, 1151, 'attending', '2022-01-05 23:28:07', '2025-12-17 19:47:31', 'nm62xD1m', '4708704'), + (90754, 1071, 1152, 'attending', '2022-01-13 00:10:43', '2025-12-17 19:47:31', 'nm62xD1m', '4708705'), + (90755, 1071, 1154, 'attending', '2022-01-25 22:40:33', '2025-12-17 19:47:32', 'nm62xD1m', '4708708'), + (90756, 1071, 1163, 'maybe', '2022-01-08 15:58:00', '2025-12-17 19:47:31', 'nm62xD1m', '4724206'), + (90757, 1071, 1173, 'attending', '2022-01-07 17:00:05', '2025-12-17 19:47:31', 'nm62xD1m', '4736495'), + (90758, 1071, 1174, 'attending', '2022-01-15 18:30:34', '2025-12-17 19:47:31', 'nm62xD1m', '4736496'), + (90759, 1071, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm62xD1m', '4736497'), + (90760, 1071, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'nm62xD1m', '4736499'), + (90761, 1071, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm62xD1m', '4736500'), + (90762, 1071, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'nm62xD1m', '4736503'), + (90763, 1071, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'nm62xD1m', '4736504'), + (90764, 1071, 1183, 'attending', '2022-01-11 23:48:33', '2025-12-17 19:47:31', 'nm62xD1m', '4742171'), + (90765, 1071, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'nm62xD1m', '4746789'), + (90766, 1071, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'nm62xD1m', '4753929'), + (90767, 1071, 1222, 'attending', '2022-02-17 00:32:03', '2025-12-17 19:47:32', 'nm62xD1m', '5015628'), + (90768, 1071, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'nm62xD1m', '5038850'), + (90769, 1071, 1236, 'attending', '2022-02-17 22:41:44', '2025-12-17 19:47:32', 'nm62xD1m', '5045826'), + (90770, 1071, 1239, 'attending', '2022-03-02 20:32:29', '2025-12-17 19:47:33', 'nm62xD1m', '5052238'), + (90771, 1071, 1241, 'attending', '2022-03-23 23:07:35', '2025-12-17 19:47:25', 'nm62xD1m', '5052240'), + (90772, 1071, 1245, 'attending', '2022-03-02 22:41:16', '2025-12-17 19:47:33', 'nm62xD1m', '5061301'), + (90773, 1071, 1249, 'maybe', '2022-03-10 00:30:16', '2025-12-17 19:47:33', 'nm62xD1m', '5068530'), + (90774, 1071, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm62xD1m', '5132533'), + (90775, 1071, 1272, 'maybe', '2022-03-19 03:42:09', '2025-12-17 19:47:25', 'nm62xD1m', '5186582'), + (90776, 1071, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'nm62xD1m', '5186583'), + (90777, 1071, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'nm62xD1m', '5186585'), + (90778, 1071, 1276, 'attending', '2022-03-27 22:45:41', '2025-12-17 19:47:25', 'nm62xD1m', '5186820'), + (90779, 1071, 1281, 'attending', '2022-04-09 20:33:58', '2025-12-17 19:47:27', 'nm62xD1m', '5190437'), + (90780, 1071, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'nm62xD1m', '5195095'), + (90781, 1071, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm62xD1m', '5215989'), + (90782, 1071, 1304, 'attending', '2022-04-06 19:08:10', '2025-12-17 19:47:26', 'nm62xD1m', '5223468'), + (90783, 1071, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm62xD1m', '5223686'), + (90784, 1071, 1308, 'attending', '2022-04-13 01:20:30', '2025-12-17 19:47:27', 'nm62xD1m', '5226703'), + (90785, 1071, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'nm62xD1m', '5227432'), + (90786, 1071, 1315, 'attending', '2022-04-21 20:07:11', '2025-12-17 19:47:27', 'nm62xD1m', '5237522'), + (90787, 1071, 1337, 'attending', '2022-04-20 21:04:51', '2025-12-17 19:47:27', 'nm62xD1m', '5245036'), + (90788, 1071, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'nm62xD1m', '5247467'), + (90789, 1071, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'nm62xD1m', '5260800'), + (90790, 1071, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'nm62xD1m', '5269930'), + (90791, 1071, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'nm62xD1m', '5271448'), + (90792, 1071, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'nm62xD1m', '5271449'), + (90793, 1071, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'nm62xD1m', '5276469'), + (90794, 1071, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm62xD1m', '5278159'), + (90795, 1071, 1407, 'attending', '2022-06-04 20:14:36', '2025-12-17 19:47:30', 'nm62xD1m', '5363695'), + (90796, 1071, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm62xD1m', '5365960'), + (90797, 1071, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'nm62xD1m', '5368973'), + (90798, 1071, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm62xD1m', '5378247'), + (90799, 1071, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'nm62xD1m', '5389605'), + (90800, 1071, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'nm62xD1m', '5397265'), + (90801, 1071, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'nm62xD1m', '5403967'), + (90802, 1071, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm62xD1m', '5404786'), + (90803, 1071, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm62xD1m', '5405203'), + (90804, 1071, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'nm62xD1m', '5408794'), + (90805, 1071, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'nm62xD1m', '5411699'), + (90806, 1071, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm62xD1m', '5412550'), + (90807, 1071, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm62xD1m', '5415046'), + (90808, 1071, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm62xD1m', '5422086'), + (90809, 1071, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'nm62xD1m', '5422406'), + (90810, 1071, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm62xD1m', '5424565'), + (90811, 1071, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm62xD1m', '5426882'), + (90812, 1071, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'nm62xD1m', '5427083'), + (90813, 1071, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm62xD1m', '5441125'), + (90814, 1071, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm62xD1m', '5441126'), + (90815, 1071, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'nm62xD1m', '5441128'), + (90816, 1071, 1517, 'attending', '2022-08-27 18:39:04', '2025-12-17 19:47:23', 'nm62xD1m', '5441130'), + (90817, 1071, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm62xD1m', '5441131'), + (90818, 1071, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm62xD1m', '5441132'), + (90819, 1071, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'nm62xD1m', '5446643'), + (90820, 1071, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm62xD1m', '5453325'), + (90821, 1071, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm62xD1m', '5454516'), + (90822, 1071, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm62xD1m', '5454605'), + (90823, 1071, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm62xD1m', '5455037'), + (90824, 1071, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm62xD1m', '5461278'), + (90825, 1071, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm62xD1m', '5469480'), + (90826, 1071, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'nm62xD1m', '5471073'), + (90827, 1071, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm62xD1m', '5474663'), + (90828, 1071, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm62xD1m', '5482022'), + (90829, 1071, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'nm62xD1m', '5482793'), + (90830, 1071, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm62xD1m', '5488912'), + (90831, 1071, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm62xD1m', '5492192'), + (90832, 1071, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm62xD1m', '5493139'), + (90833, 1071, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm62xD1m', '5493200'), + (90834, 1071, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm62xD1m', '5502188'), + (90835, 1071, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm62xD1m', '5505059'), + (90836, 1071, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm62xD1m', '5509055'), + (90837, 1071, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm62xD1m', '5512862'), + (90838, 1071, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm62xD1m', '5513985'), + (90839, 1071, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nm62xD1m', '5519981'), + (90840, 1071, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm62xD1m', '5522550'), + (90841, 1071, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm62xD1m', '5534683'), + (90842, 1071, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm62xD1m', '5537735'), + (90843, 1071, 1636, 'attending', '2022-09-03 05:07:28', '2025-12-17 19:47:24', 'nm62xD1m', '5538454'), + (90844, 1071, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm62xD1m', '5540859'), + (90845, 1071, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm62xD1m', '5546619'), + (90846, 1071, 1647, 'attending', '2022-09-16 10:30:19', '2025-12-17 19:47:11', 'nm62xD1m', '5548660'), + (90847, 1071, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'nm62xD1m', '5555245'), + (90848, 1071, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm62xD1m', '5557747'), + (90849, 1071, 1662, 'attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm62xD1m', '5560255'), + (90850, 1071, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm62xD1m', '5562906'), + (90851, 1071, 1673, 'attending', '2022-09-18 23:22:58', '2025-12-17 19:47:11', 'nm62xD1m', '5592454'), + (90852, 1071, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm62xD1m', '5600604'), + (90853, 1071, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm62xD1m', '5605544'), + (90854, 1071, 1699, 'not_attending', '2022-09-26 12:15:58', '2025-12-17 19:47:12', 'nm62xD1m', '5606737'), + (90855, 1071, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm62xD1m', '5630960'), + (90856, 1071, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm62xD1m', '5630961'), + (90857, 1071, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm62xD1m', '5630962'), + (90858, 1071, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm62xD1m', '5630966'), + (90859, 1071, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm62xD1m', '5630967'), + (90860, 1071, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm62xD1m', '5630968'), + (90861, 1071, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm62xD1m', '5635406'), + (90862, 1071, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm62xD1m', '5638765'), + (90863, 1071, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm62xD1m', '5640097'), + (90864, 1071, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm62xD1m', '5640843'), + (90865, 1071, 1742, 'attending', '2022-10-17 03:51:57', '2025-12-17 19:47:13', 'nm62xD1m', '5641245'), + (90866, 1071, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm62xD1m', '5641521'), + (90867, 1071, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm62xD1m', '5642818'), + (90868, 1071, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm62xD1m', '5652395'), + (90869, 1071, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm62xD1m', '5670445'), + (90870, 1071, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm62xD1m', '5671637'), + (90871, 1071, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm62xD1m', '5672329'), + (90872, 1071, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm62xD1m', '5674057'), + (90873, 1071, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm62xD1m', '5674060'), + (90874, 1071, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm62xD1m', '5677461'), + (90875, 1071, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm62xD1m', '5698046'), + (90876, 1071, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm62xD1m', '5699760'), + (90877, 1071, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm62xD1m', '5741601'), + (90878, 1071, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm62xD1m', '5763458'), + (90879, 1071, 1824, 'attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm62xD1m', '5774172'), + (90880, 1071, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nm62xD1m', '5818247'), + (90881, 1071, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm62xD1m', '5819471'), + (90882, 1071, 1842, 'attending', '2022-12-17 07:45:55', '2025-12-17 19:47:04', 'nm62xD1m', '5827739'), + (90883, 1071, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm62xD1m', '5844306'), + (90884, 1071, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm62xD1m', '5850159'), + (90885, 1071, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm62xD1m', '5858999'), + (90886, 1071, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm62xD1m', '5871984'), + (90887, 1071, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm62xD1m', '5876354'), + (90888, 1071, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm62xD1m', '5880939'), + (90889, 1071, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm62xD1m', '5880940'), + (90890, 1071, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm62xD1m', '5880942'), + (90891, 1071, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm62xD1m', '5880943'), + (90892, 1071, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm62xD1m', '5887890'), + (90893, 1071, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm62xD1m', '5888598'), + (90894, 1071, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm62xD1m', '5893260'), + (90895, 1071, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm62xD1m', '5899826'), + (90896, 1071, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm62xD1m', '5900199'), + (90897, 1071, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm62xD1m', '5900200'), + (90898, 1071, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm62xD1m', '5900202'), + (90899, 1071, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm62xD1m', '5900203'), + (90900, 1071, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm62xD1m', '5901108'), + (90901, 1071, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm62xD1m', '5901126'), + (90902, 1071, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm62xD1m', '5909655'), + (90903, 1071, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm62xD1m', '5910522'), + (90904, 1071, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm62xD1m', '5910526'), + (90905, 1071, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm62xD1m', '5910528'), + (90906, 1071, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm62xD1m', '5916219'), + (90907, 1071, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm62xD1m', '5936234'), + (90908, 1071, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm62xD1m', '5958351'), + (90909, 1071, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm62xD1m', '5959751'), + (90910, 1071, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm62xD1m', '5959755'), + (90911, 1071, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm62xD1m', '5960055'), + (90912, 1071, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm62xD1m', '5961684'), + (90913, 1071, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm62xD1m', '5962132'), + (90914, 1071, 1945, 'attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'nm62xD1m', '5962133'), + (90915, 1071, 1946, 'attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm62xD1m', '5962134'), + (90916, 1071, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm62xD1m', '5962317'), + (90917, 1071, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm62xD1m', '5962318'), + (90918, 1071, 1951, 'attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'nm62xD1m', '5965933'), + (90919, 1071, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm62xD1m', '5967014'), + (90920, 1071, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm62xD1m', '5972815'), + (90921, 1071, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm62xD1m', '5974016'), + (90922, 1071, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm62xD1m', '5981515'), + (90923, 1071, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm62xD1m', '5993516'), + (90924, 1071, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm62xD1m', '5998939'), + (90925, 1071, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm62xD1m', '6028191'), + (90926, 1071, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm62xD1m', '6040066'), + (90927, 1071, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm62xD1m', '6042717'), + (90928, 1071, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm62xD1m', '6044838'), + (90929, 1071, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm62xD1m', '6044839'), + (90930, 1071, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm62xD1m', '6045684'), + (90931, 1071, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm62xD1m', '6050104'), + (90932, 1071, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm62xD1m', '6053195'), + (90933, 1071, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm62xD1m', '6053198'), + (90934, 1071, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm62xD1m', '6056085'), + (90935, 1071, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm62xD1m', '6056916'), + (90936, 1071, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm62xD1m', '6059290'), + (90937, 1071, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm62xD1m', '6060328'), + (90938, 1071, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm62xD1m', '6061037'), + (90939, 1071, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm62xD1m', '6061039'), + (90940, 1071, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm62xD1m', '6067245'), + (90941, 1071, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm62xD1m', '6068094'), + (90942, 1071, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm62xD1m', '6068252'), + (90943, 1071, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm62xD1m', '6068253'), + (90944, 1071, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm62xD1m', '6068254'), + (90945, 1071, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm62xD1m', '6068280'), + (90946, 1071, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm62xD1m', '6069093'), + (90947, 1071, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm62xD1m', '6072528'), + (90948, 1071, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm62xD1m', '6079840'), + (90949, 1071, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm62xD1m', '6083398'), + (90950, 1071, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm62xD1m', '6093504'), + (90951, 1071, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm62xD1m', '6097414'), + (90952, 1071, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm62xD1m', '6097442'), + (90953, 1071, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm62xD1m', '6097684'), + (90954, 1071, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm62xD1m', '6098762'), + (90955, 1071, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm62xD1m', '6101361'), + (90956, 1071, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm62xD1m', '6101362'), + (90957, 1071, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm62xD1m', '6107314'), + (90958, 1071, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm62xD1m', '6120034'), + (90959, 1071, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nm62xD1m', '6136733'), + (90960, 1071, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm62xD1m', '6137989'), + (90961, 1071, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm62xD1m', '6150864'), + (90962, 1071, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm62xD1m', '6155491'), + (90963, 1071, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm62xD1m', '6164417'), + (90964, 1071, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm62xD1m', '6166388'), + (90965, 1071, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm62xD1m', '6176439'), + (90966, 1071, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm62xD1m', '6182410'), + (90967, 1071, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm62xD1m', '6185812'), + (90968, 1071, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm62xD1m', '6187651'), + (90969, 1071, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm62xD1m', '6187963'), + (90970, 1071, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm62xD1m', '6187964'), + (90971, 1071, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm62xD1m', '6187966'), + (90972, 1071, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm62xD1m', '6187967'), + (90973, 1071, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm62xD1m', '6187969'), + (90974, 1071, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm62xD1m', '6334878'), + (90975, 1071, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm62xD1m', '6337236'), + (90976, 1071, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm62xD1m', '6337970'), + (90977, 1071, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm62xD1m', '6338308'), + (90978, 1071, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm62xD1m', '6341710'), + (90979, 1071, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm62xD1m', '6342044'), + (90980, 1071, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm62xD1m', '6342298'), + (90981, 1071, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm62xD1m', '6343294'), + (90982, 1071, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm62xD1m', '6347034'), + (90983, 1071, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm62xD1m', '6347056'), + (90984, 1071, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm62xD1m', '6353830'), + (90985, 1071, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm62xD1m', '6353831'), + (90986, 1071, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm62xD1m', '6357867'), + (90987, 1071, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm62xD1m', '6358652'), + (90988, 1071, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm62xD1m', '6361709'), + (90989, 1071, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm62xD1m', '6361710'), + (90990, 1071, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm62xD1m', '6361711'), + (90991, 1071, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm62xD1m', '6361712'), + (90992, 1071, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm62xD1m', '6361713'), + (90993, 1071, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nm62xD1m', '6382573'), + (90994, 1071, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm62xD1m', '6388604'), + (90995, 1071, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm62xD1m', '6394629'), + (90996, 1071, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm62xD1m', '6394631'), + (90997, 1071, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm62xD1m', '6440863'), + (90998, 1071, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm62xD1m', '6445440'), + (90999, 1071, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm62xD1m', '6453951'), + (91000, 1071, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm62xD1m', '6461696'), + (91001, 1071, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm62xD1m', '6462129'), + (91002, 1071, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm62xD1m', '6463218'), + (91003, 1071, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm62xD1m', '6472181'), + (91004, 1071, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm62xD1m', '6482693'), + (91005, 1071, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nm62xD1m', '6484200'), + (91006, 1071, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm62xD1m', '6484680'), + (91007, 1071, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm62xD1m', '6507741'), + (91008, 1071, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm62xD1m', '6514659'), + (91009, 1071, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm62xD1m', '6514660'), + (91010, 1071, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm62xD1m', '6519103'), + (91011, 1071, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm62xD1m', '6535681'), + (91012, 1071, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm62xD1m', '6584747'), + (91013, 1071, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm62xD1m', '6587097'), + (91014, 1071, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm62xD1m', '6609022'), + (91015, 1071, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nm62xD1m', '6632757'), + (91016, 1071, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm62xD1m', '6644187'), + (91017, 1071, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm62xD1m', '6648951'), + (91018, 1071, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm62xD1m', '6648952'), + (91019, 1071, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm62xD1m', '6655401'), + (91020, 1071, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm62xD1m', '6661585'), + (91021, 1071, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm62xD1m', '6661588'), + (91022, 1071, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm62xD1m', '6661589'), + (91023, 1071, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm62xD1m', '6699906'), + (91024, 1071, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm62xD1m', '6699913'), + (91025, 1071, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm62xD1m', '6701109'), + (91026, 1071, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm62xD1m', '6705219'), + (91027, 1071, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm62xD1m', '6710153'), + (91028, 1071, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm62xD1m', '6711552'), + (91029, 1071, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nm62xD1m', '6711553'), + (91030, 1071, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm62xD1m', '6722688'), + (91031, 1071, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm62xD1m', '6730620'), + (91032, 1071, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm62xD1m', '6740364'), + (91033, 1071, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm62xD1m', '6743829'), + (91034, 1071, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm62xD1m', '7030380'), + (91035, 1071, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nm62xD1m', '7033677'), + (91036, 1071, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm62xD1m', '7044715'), + (91037, 1071, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm62xD1m', '7050318'), + (91038, 1071, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm62xD1m', '7050319'), + (91039, 1071, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm62xD1m', '7050322'), + (91040, 1071, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm62xD1m', '7057804'), + (91041, 1071, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm62xD1m', '7072824'), + (91042, 1071, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm62xD1m', '7074348'), + (91043, 1071, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm62xD1m', '7074364'), + (91044, 1071, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nm62xD1m', '7089267'), + (91045, 1071, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm62xD1m', '7098747'), + (91046, 1071, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm62xD1m', '7113468'), + (91047, 1071, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm62xD1m', '7114856'), + (91048, 1071, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm62xD1m', '7114951'), + (91049, 1071, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm62xD1m', '7114955'), + (91050, 1071, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm62xD1m', '7114956'), + (91051, 1071, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm62xD1m', '7114957'), + (91052, 1071, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm62xD1m', '7159484'), + (91053, 1071, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm62xD1m', '7178446'), + (91054, 1071, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nm62xD1m', '7220467'), + (91055, 1071, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm62xD1m', '7240354'), + (91056, 1071, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm62xD1m', '7251633'), + (91057, 1071, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm62xD1m', '7324073'), + (91058, 1071, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm62xD1m', '7324074'), + (91059, 1071, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm62xD1m', '7324075'), + (91060, 1071, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm62xD1m', '7324078'), + (91061, 1071, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm62xD1m', '7324082'), + (91062, 1071, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm62xD1m', '7331457'), + (91063, 1071, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm62xD1m', '7363643'), + (91064, 1071, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm62xD1m', '7368606'), + (91065, 1071, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm62xD1m', '7397462'), + (91066, 1071, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm62xD1m', '7424275'), + (91067, 1071, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm62xD1m', '7432751'), + (91068, 1071, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm62xD1m', '7432752'), + (91069, 1071, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm62xD1m', '7432753'), + (91070, 1071, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm62xD1m', '7432754'), + (91071, 1071, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm62xD1m', '7432755'), + (91072, 1071, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm62xD1m', '7432756'), + (91073, 1071, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm62xD1m', '7432758'), + (91074, 1071, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm62xD1m', '7432759'), + (91075, 1071, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm62xD1m', '7433834'), + (91076, 1071, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nm62xD1m', '7470197'), + (91077, 1071, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm62xD1m', '7685613'), + (91078, 1071, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm62xD1m', '7688194'), + (91079, 1071, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm62xD1m', '7688196'), + (91080, 1071, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm62xD1m', '7688289'), + (91081, 1071, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm62xD1m', '7692763'), + (91082, 1071, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm62xD1m', '7697552'), + (91083, 1071, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm62xD1m', '7699878'), + (91084, 1071, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nm62xD1m', '7704043'), + (91085, 1071, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm62xD1m', '7712467'), + (91086, 1071, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm62xD1m', '7713585'), + (91087, 1071, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm62xD1m', '7713586'), + (91088, 1071, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm62xD1m', '7738518'), + (91089, 1071, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm62xD1m', '7750636'), + (91090, 1071, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm62xD1m', '7796540'), + (91091, 1071, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm62xD1m', '7796541'), + (91092, 1071, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm62xD1m', '7796542'), + (91093, 1071, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm62xD1m', '7825913'), + (91094, 1071, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm62xD1m', '7826209'), + (91095, 1071, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm62xD1m', '7834742'), + (91096, 1071, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm62xD1m', '7842108'), + (91097, 1071, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm62xD1m', '7842902'), + (91098, 1071, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm62xD1m', '7842903'), + (91099, 1071, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm62xD1m', '7842904'), + (91100, 1071, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm62xD1m', '7842905'), + (91101, 1071, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm62xD1m', '7855719'), + (91102, 1071, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm62xD1m', '7860683'), + (91103, 1071, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm62xD1m', '7860684'), + (91104, 1071, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm62xD1m', '7866095'), + (91105, 1071, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm62xD1m', '7869170'), + (91106, 1071, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm62xD1m', '7869188'), + (91107, 1071, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm62xD1m', '7869201'), + (91108, 1071, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm62xD1m', '7877465'), + (91109, 1071, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm62xD1m', '7888250'), + (91110, 1071, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm62xD1m', '7904777'), + (91111, 1071, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm62xD1m', '8349164'), + (91112, 1071, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm62xD1m', '8349545'), + (91113, 1071, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm62xD1m', '8368028'), + (91114, 1071, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm62xD1m', '8368029'), + (91115, 1071, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm62xD1m', '8388462'), + (91116, 1071, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm62xD1m', '8400273'), + (91117, 1071, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm62xD1m', '8400275'), + (91118, 1071, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nm62xD1m', '8400276'), + (91119, 1071, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm62xD1m', '8404977'), + (91120, 1071, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm62xD1m', '8430783'), + (91121, 1071, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm62xD1m', '8430784'), + (91122, 1071, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm62xD1m', '8430799'), + (91123, 1071, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm62xD1m', '8430800'), + (91124, 1071, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm62xD1m', '8430801'), + (91125, 1071, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm62xD1m', '8438709'), + (91126, 1071, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm62xD1m', '8457738'), + (91127, 1071, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm62xD1m', '8459566'), + (91128, 1071, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm62xD1m', '8459567'), + (91129, 1071, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm62xD1m', '8461032'), + (91130, 1071, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm62xD1m', '8477877'), + (91131, 1071, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm62xD1m', '8485688'), + (91132, 1071, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm62xD1m', '8490587'), + (91133, 1071, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm62xD1m', '8493552'), + (91134, 1071, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm62xD1m', '8493553'), + (91135, 1071, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm62xD1m', '8493554'), + (91136, 1071, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm62xD1m', '8493555'), + (91137, 1071, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm62xD1m', '8493556'), + (91138, 1071, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm62xD1m', '8493557'), + (91139, 1071, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm62xD1m', '8493558'), + (91140, 1071, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm62xD1m', '8493559'), + (91141, 1071, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm62xD1m', '8493560'), + (91142, 1071, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nm62xD1m', '8493561'), + (91143, 1071, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm62xD1m', '8493572'), + (91144, 1071, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm62xD1m', '8540725'), + (91145, 1071, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm62xD1m', '8555421'), + (91146, 1072, 401, 'maybe', '2021-05-10 01:09:17', '2025-12-17 19:47:46', 'ydwD6DMm', '3236456'), + (91147, 1072, 646, 'not_attending', '2021-05-10 19:13:45', '2025-12-17 19:47:46', 'ydwD6DMm', '3539921'), + (91148, 1072, 647, 'not_attending', '2021-05-10 19:13:56', '2025-12-17 19:47:46', 'ydwD6DMm', '3539922'), + (91149, 1072, 648, 'not_attending', '2021-05-28 02:45:00', '2025-12-17 19:47:47', 'ydwD6DMm', '3539923'), + (91150, 1072, 667, 'attending', '2021-08-28 21:59:38', '2025-12-17 19:47:42', 'ydwD6DMm', '3547145'), + (91151, 1072, 741, 'not_attending', '2021-05-19 13:21:10', '2025-12-17 19:47:46', 'ydwD6DMm', '3680618'), + (91152, 1072, 742, 'attending', '2021-06-18 23:15:18', '2025-12-17 19:47:48', 'ydwD6DMm', '3680622'), + (91153, 1072, 743, 'maybe', '2021-06-25 19:37:22', '2025-12-17 19:47:38', 'ydwD6DMm', '3680623'), + (91154, 1072, 761, 'not_attending', '2021-05-10 01:09:23', '2025-12-17 19:47:46', 'ydwD6DMm', '3716041'), + (91155, 1072, 792, 'attending', '2021-05-10 19:15:24', '2025-12-17 19:47:46', 'ydwD6DMm', '3793156'), + (91156, 1072, 793, 'attending', '2021-06-02 13:34:25', '2025-12-17 19:47:47', 'ydwD6DMm', '3793537'), + (91157, 1072, 795, 'maybe', '2021-06-09 16:11:44', '2025-12-17 19:47:47', 'ydwD6DMm', '3793539'), + (91158, 1072, 800, 'attending', '2021-05-12 18:37:39', '2025-12-17 19:47:46', 'ydwD6DMm', '3800908'), + (91159, 1072, 801, 'attending', '2021-05-13 20:52:00', '2025-12-17 19:47:46', 'ydwD6DMm', '3800910'), + (91160, 1072, 807, 'attending', '2021-05-13 00:53:44', '2025-12-17 19:47:46', 'ydwD6DMm', '3807154'), + (91161, 1072, 812, 'attending', '2021-05-19 13:20:18', '2025-12-17 19:47:46', 'ydwD6DMm', '3808031'), + (91162, 1072, 817, 'not_attending', '2021-05-21 00:19:48', '2025-12-17 19:47:46', 'ydwD6DMm', '3832498'), + (91163, 1072, 819, 'maybe', '2021-05-30 16:10:21', '2025-12-17 19:47:47', 'ydwD6DMm', '3833017'), + (91164, 1072, 823, 'attending', '2021-06-19 17:34:41', '2025-12-17 19:47:48', 'ydwD6DMm', '3974109'), + (91165, 1072, 825, 'attending', '2021-06-08 17:55:35', '2025-12-17 19:47:47', 'ydwD6DMm', '3975283'), + (91166, 1072, 826, 'not_attending', '2021-06-16 20:20:54', '2025-12-17 19:47:48', 'ydwD6DMm', '3975310'), + (91167, 1072, 827, 'attending', '2021-06-05 22:33:26', '2025-12-17 19:47:47', 'ydwD6DMm', '3975311'), + (91168, 1072, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'ydwD6DMm', '3975312'), + (91169, 1072, 830, 'maybe', '2021-05-31 00:04:31', '2025-12-17 19:47:47', 'ydwD6DMm', '3976648'), + (91170, 1072, 831, 'attending', '2021-06-04 21:42:42', '2025-12-17 19:47:47', 'ydwD6DMm', '3976649'), + (91171, 1072, 832, 'attending', '2021-05-31 00:04:39', '2025-12-17 19:47:47', 'ydwD6DMm', '3976650'), + (91172, 1072, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'ydwD6DMm', '3994992'), + (91173, 1072, 844, 'not_attending', '2021-06-23 23:49:05', '2025-12-17 19:47:38', 'ydwD6DMm', '4014338'), + (91174, 1072, 866, 'not_attending', '2021-06-18 23:15:21', '2025-12-17 19:47:38', 'ydwD6DMm', '4020424'), + (91175, 1072, 867, 'attending', '2021-06-20 16:10:21', '2025-12-17 19:47:38', 'ydwD6DMm', '4021848'), + (91176, 1072, 869, 'maybe', '2021-06-30 16:49:08', '2025-12-17 19:47:38', 'ydwD6DMm', '4136744'), + (91177, 1072, 870, 'not_attending', '2021-07-03 01:39:17', '2025-12-17 19:47:39', 'ydwD6DMm', '4136937'), + (91178, 1072, 871, 'not_attending', '2021-07-03 01:39:23', '2025-12-17 19:47:39', 'ydwD6DMm', '4136938'), + (91179, 1072, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ydwD6DMm', '4136947'), + (91180, 1072, 877, 'attending', '2021-06-16 20:20:56', '2025-12-17 19:47:48', 'ydwD6DMm', '4140575'), + (91181, 1072, 884, 'not_attending', '2021-07-17 13:14:48', '2025-12-17 19:47:42', 'ydwD6DMm', '4210314'), + (91182, 1072, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ydwD6DMm', '4225444'), + (91183, 1072, 899, 'maybe', '2021-07-02 18:06:25', '2025-12-17 19:47:39', 'ydwD6DMm', '4239259'), + (91184, 1072, 900, 'attending', '2021-07-20 00:14:19', '2025-12-17 19:47:40', 'ydwD6DMm', '4240316'), + (91185, 1072, 901, 'attending', '2021-07-30 22:56:30', '2025-12-17 19:47:40', 'ydwD6DMm', '4240317'), + (91186, 1072, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ydwD6DMm', '4240318'), + (91187, 1072, 903, 'not_attending', '2021-08-11 17:41:00', '2025-12-17 19:47:42', 'ydwD6DMm', '4240320'), + (91188, 1072, 904, 'attending', '2021-07-11 11:23:07', '2025-12-17 19:47:39', 'ydwD6DMm', '4241594'), + (91189, 1072, 905, 'maybe', '2021-07-05 02:49:15', '2025-12-17 19:47:39', 'ydwD6DMm', '4250163'), + (91190, 1072, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ydwD6DMm', '4275957'), + (91191, 1072, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ydwD6DMm', '4277819'), + (91192, 1072, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ydwD6DMm', '4301723'), + (91193, 1072, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'ydwD6DMm', '4302093'), + (91194, 1072, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ydwD6DMm', '4304151'), + (91195, 1072, 940, 'attending', '2021-07-30 22:56:57', '2025-12-17 19:47:40', 'ydwD6DMm', '4309049'), + (91196, 1072, 958, 'attending', '2021-08-12 00:30:29', '2025-12-17 19:47:41', 'ydwD6DMm', '4342996'), + (91197, 1072, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ydwD6DMm', '4366186'), + (91198, 1072, 974, 'attending', '2021-08-25 17:35:31', '2025-12-17 19:47:42', 'ydwD6DMm', '4366187'), + (91199, 1072, 984, 'maybe', '2021-08-22 19:30:07', '2025-12-17 19:47:42', 'ydwD6DMm', '4391258'), + (91200, 1072, 990, 'attending', '2021-08-29 03:34:39', '2025-12-17 19:47:43', 'ydwD6DMm', '4420735'), + (91201, 1072, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ydwD6DMm', '4420738'), + (91202, 1072, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ydwD6DMm', '4420739'), + (91203, 1072, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'ydwD6DMm', '4420741'), + (91204, 1072, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ydwD6DMm', '4420744'), + (91205, 1072, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ydwD6DMm', '4420747'), + (91206, 1072, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ydwD6DMm', '4420748'), + (91207, 1072, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ydwD6DMm', '4420749'), + (91208, 1072, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ydwD6DMm', '6045684'), + (91209, 1073, 2530, 'maybe', '2024-08-15 16:53:23', '2025-12-17 19:46:31', 'mRoDkloA', '7074373'), + (91210, 1073, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'mRoDkloA', '7324082'), + (91211, 1073, 2798, 'attending', '2024-08-12 18:59:41', '2025-12-17 19:46:31', 'mRoDkloA', '7395910'), + (91212, 1073, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'mRoDkloA', '7397462'), + (91213, 1073, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'mRoDkloA', '7432751'), + (91214, 1073, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'mRoDkloA', '7432752'), + (91215, 1073, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'mRoDkloA', '7432753'), + (91216, 1073, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'mRoDkloA', '7432754'), + (91217, 1073, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'mRoDkloA', '7432755'), + (91218, 1073, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'mRoDkloA', '7432756'), + (91219, 1073, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'mRoDkloA', '7432758'), + (91220, 1073, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'mRoDkloA', '7432759'), + (91221, 1073, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'mRoDkloA', '7433834'), + (91222, 1074, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'R40OJqVA', '3236452'), + (91223, 1074, 646, 'not_attending', '2021-05-13 00:01:49', '2025-12-17 19:47:46', 'R40OJqVA', '3539921'), + (91224, 1074, 647, 'not_attending', '2021-05-22 17:49:12', '2025-12-17 19:47:46', 'R40OJqVA', '3539922'), + (91225, 1074, 648, 'not_attending', '2021-05-28 20:56:47', '2025-12-17 19:47:47', 'R40OJqVA', '3539923'), + (91226, 1074, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'R40OJqVA', '3806392'), + (91227, 1074, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'R40OJqVA', '3963335'), + (91228, 1074, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40OJqVA', '3974109'), + (91229, 1074, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'R40OJqVA', '3975311'), + (91230, 1074, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40OJqVA', '3975312'), + (91231, 1074, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'R40OJqVA', '3994992'), + (91232, 1074, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40OJqVA', '4014338'), + (91233, 1074, 867, 'maybe', '2021-07-02 23:31:25', '2025-12-17 19:47:38', 'R40OJqVA', '4021848'), + (91234, 1074, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40OJqVA', '4136744'), + (91235, 1074, 870, 'maybe', '2021-07-03 23:09:41', '2025-12-17 19:47:39', 'R40OJqVA', '4136937'), + (91236, 1074, 871, 'not_attending', '2021-07-10 06:02:16', '2025-12-17 19:47:39', 'R40OJqVA', '4136938'), + (91237, 1074, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40OJqVA', '4136947'), + (91238, 1074, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'R40OJqVA', '4210314'), + (91239, 1074, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40OJqVA', '4225444'), + (91240, 1074, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40OJqVA', '4239259'), + (91241, 1074, 900, 'not_attending', '2021-07-31 21:15:07', '2025-12-17 19:47:40', 'R40OJqVA', '4240316'), + (91242, 1074, 901, 'not_attending', '2021-07-31 21:15:03', '2025-12-17 19:47:40', 'R40OJqVA', '4240317'), + (91243, 1074, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'R40OJqVA', '4240318'), + (91244, 1074, 903, 'not_attending', '2021-08-13 20:57:41', '2025-12-17 19:47:42', 'R40OJqVA', '4240320'), + (91245, 1074, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40OJqVA', '4250163'), + (91246, 1074, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'R40OJqVA', '4275957'), + (91247, 1074, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'R40OJqVA', '4277819'), + (91248, 1074, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'R40OJqVA', '4301723'), + (91249, 1074, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'R40OJqVA', '4302093'), + (91250, 1074, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'R40OJqVA', '4304151'), + (91251, 1074, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:41', 'R40OJqVA', '4345519'), + (91252, 1074, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'R40OJqVA', '4356801'), + (91253, 1074, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'R40OJqVA', '4358025'), + (91254, 1074, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'R40OJqVA', '4366186'), + (91255, 1074, 974, 'maybe', '2021-08-28 12:31:16', '2025-12-17 19:47:43', 'R40OJqVA', '4366187'), + (91256, 1074, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'R40OJqVA', '4402823'), + (91257, 1074, 990, 'not_attending', '2021-09-04 17:15:31', '2025-12-17 19:47:43', 'R40OJqVA', '4420735'), + (91258, 1074, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'R40OJqVA', '4420738'), + (91259, 1074, 992, 'not_attending', '2021-09-18 21:36:19', '2025-12-17 19:47:34', 'R40OJqVA', '4420739'), + (91260, 1074, 993, 'not_attending', '2021-09-25 19:40:11', '2025-12-17 19:47:34', 'R40OJqVA', '4420741'), + (91261, 1074, 995, 'not_attending', '2021-10-09 17:44:02', '2025-12-17 19:47:34', 'R40OJqVA', '4420744'), + (91262, 1074, 996, 'maybe', '2021-10-09 17:45:13', '2025-12-17 19:47:35', 'R40OJqVA', '4420747'), + (91263, 1074, 997, 'not_attending', '2021-10-30 21:40:27', '2025-12-17 19:47:35', 'R40OJqVA', '4420748'), + (91264, 1074, 998, 'not_attending', '2021-10-30 21:40:07', '2025-12-17 19:47:36', 'R40OJqVA', '4420749'), + (91265, 1074, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'R40OJqVA', '4461883'), + (91266, 1074, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'R40OJqVA', '4508342'), + (91267, 1074, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'R40OJqVA', '4568602'), + (91268, 1074, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'R40OJqVA', '4572153'), + (91269, 1074, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'R40OJqVA', '4585962'), + (91270, 1074, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'R40OJqVA', '4596356'), + (91271, 1074, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'R40OJqVA', '4598860'), + (91272, 1074, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'R40OJqVA', '4598861'), + (91273, 1074, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'R40OJqVA', '4602797'), + (91274, 1074, 1108, 'not_attending', '2021-11-18 02:09:37', '2025-12-17 19:47:37', 'R40OJqVA', '4632276'), + (91275, 1074, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'R40OJqVA', '4637896'), + (91276, 1074, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'R40OJqVA', '4642994'), + (91277, 1074, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'R40OJqVA', '4642995'), + (91278, 1074, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'R40OJqVA', '4642996'), + (91279, 1074, 1119, 'maybe', '2021-12-17 22:03:54', '2025-12-17 19:47:31', 'R40OJqVA', '4642997'), + (91280, 1074, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'R40OJqVA', '4645687'), + (91281, 1074, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'R40OJqVA', '4645698'), + (91282, 1074, 1128, 'not_attending', '2021-11-20 17:39:58', '2025-12-17 19:47:37', 'R40OJqVA', '4645704'), + (91283, 1074, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'R40OJqVA', '4645705'), + (91284, 1074, 1130, 'not_attending', '2021-12-04 22:21:40', '2025-12-17 19:47:37', 'R40OJqVA', '4658824'), + (91285, 1074, 1131, 'attending', '2021-12-17 22:03:32', '2025-12-17 19:47:31', 'R40OJqVA', '4658825'), + (91286, 1074, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'R40OJqVA', '4668385'), + (91287, 1074, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'R40OJqVA', '4694407'), + (91288, 1074, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'R40OJqVA', '4736497'), + (91289, 1074, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'R40OJqVA', '4736499'), + (91290, 1074, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'R40OJqVA', '4736500'), + (91291, 1074, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'R40OJqVA', '4736503'), + (91292, 1074, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'R40OJqVA', '4736504'), + (91293, 1074, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'R40OJqVA', '4746789'), + (91294, 1074, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'R40OJqVA', '4753929'), + (91295, 1074, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'R40OJqVA', '5038850'), + (91296, 1074, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'R40OJqVA', '5045826'), + (91297, 1074, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'R40OJqVA', '5132533'), + (91298, 1074, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'R40OJqVA', '5186582'), + (91299, 1074, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'R40OJqVA', '5186583'), + (91300, 1074, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'R40OJqVA', '5186585'), + (91301, 1074, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'R40OJqVA', '5190437'), + (91302, 1074, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'R40OJqVA', '5215989'), + (91303, 1074, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40OJqVA', '6045684'), + (91304, 1075, 1725, 'not_attending', '2022-11-18 09:02:55', '2025-12-17 19:47:16', '8d8DY6Nd', '5630967'), + (91305, 1075, 1726, 'maybe', '2022-11-20 22:48:56', '2025-12-17 19:47:16', '8d8DY6Nd', '5630968'), + (91306, 1075, 1727, 'attending', '2022-11-21 12:10:21', '2025-12-17 19:47:16', '8d8DY6Nd', '5630969'), + (91307, 1075, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '8d8DY6Nd', '5642818'), + (91308, 1075, 1761, 'maybe', '2022-11-17 11:59:46', '2025-12-17 19:47:16', '8d8DY6Nd', '5670434'), + (91309, 1075, 1762, 'maybe', '2022-11-21 12:10:13', '2025-12-17 19:47:16', '8d8DY6Nd', '5670445'), + (91310, 1075, 1768, 'attending', '2022-11-17 22:25:20', '2025-12-17 19:47:16', '8d8DY6Nd', '5674062'), + (91311, 1075, 1787, 'attending', '2022-11-17 22:32:33', '2025-12-17 19:47:16', '8d8DY6Nd', '5727234'), + (91312, 1075, 1793, 'attending', '2022-11-17 07:32:05', '2025-12-17 19:47:16', '8d8DY6Nd', '5736365'), + (91313, 1075, 1797, 'maybe', '2022-12-08 23:30:19', '2025-12-17 19:47:17', '8d8DY6Nd', '5757486'), + (91314, 1075, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '8d8DY6Nd', '5763458'), + (91315, 1075, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '8d8DY6Nd', '5774172'), + (91316, 1075, 1828, 'attending', '2022-11-28 20:40:03', '2025-12-17 19:47:16', '8d8DY6Nd', '5778865'), + (91317, 1075, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '8d8DY6Nd', '5818247'), + (91318, 1075, 1834, 'maybe', '2022-12-08 23:30:12', '2025-12-17 19:47:17', '8d8DY6Nd', '5819470'), + (91319, 1075, 1835, 'maybe', '2022-12-10 13:07:09', '2025-12-17 19:47:05', '8d8DY6Nd', '5819471'), + (91320, 1075, 1840, 'maybe', '2022-12-08 23:29:33', '2025-12-17 19:47:17', '8d8DY6Nd', '5822288'), + (91321, 1075, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '8d8DY6Nd', '5827739'), + (91322, 1075, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '8d8DY6Nd', '5844306'), + (91323, 1075, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '8d8DY6Nd', '5850159'), + (91324, 1075, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '8d8DY6Nd', '5858999'), + (91325, 1075, 1853, 'maybe', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '8d8DY6Nd', '5871984'), + (91326, 1075, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '8d8DY6Nd', '5876354'), + (91327, 1075, 1864, 'maybe', '2023-01-21 19:52:07', '2025-12-17 19:47:05', '8d8DY6Nd', '5879675'), + (91328, 1075, 1865, 'maybe', '2023-01-22 00:32:18', '2025-12-17 19:47:06', '8d8DY6Nd', '5879676'), + (91329, 1075, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '8d8DY6Nd', '5880939'), + (91330, 1075, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '8d8DY6Nd', '5880940'), + (91331, 1075, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '8d8DY6Nd', '5880942'), + (91332, 1075, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '8d8DY6Nd', '5880943'), + (91333, 1075, 1870, 'attending', '2023-01-17 22:17:02', '2025-12-17 19:47:05', '8d8DY6Nd', '5881740'), + (91334, 1075, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '8d8DY6Nd', '5887890'), + (91335, 1075, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '8d8DY6Nd', '5888598'), + (91336, 1075, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '8d8DY6Nd', '5893260'), + (91337, 1075, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '8d8DY6Nd', '5899826'), + (91338, 1075, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '8d8DY6Nd', '5900199'), + (91339, 1075, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '8d8DY6Nd', '5900200'), + (91340, 1075, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '8d8DY6Nd', '5900202'), + (91341, 1075, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '8d8DY6Nd', '5900203'), + (91342, 1075, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '8d8DY6Nd', '5901108'), + (91343, 1075, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '8d8DY6Nd', '5901126'), + (91344, 1075, 1897, 'maybe', '2023-02-10 21:49:25', '2025-12-17 19:47:07', '8d8DY6Nd', '5901128'), + (91345, 1075, 1899, 'not_attending', '2023-02-10 21:49:14', '2025-12-17 19:47:07', '8d8DY6Nd', '5901323'), + (91346, 1075, 1909, 'not_attending', '2023-02-10 21:49:02', '2025-12-17 19:47:07', '8d8DY6Nd', '5906541'), + (91347, 1075, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '8d8DY6Nd', '5909655'), + (91348, 1075, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '8d8DY6Nd', '5910522'), + (91349, 1075, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '8d8DY6Nd', '5910526'), + (91350, 1075, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '8d8DY6Nd', '5910528'), + (91351, 1075, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '8d8DY6Nd', '5916219'), + (91352, 1075, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '8d8DY6Nd', '5936234'), + (91353, 1075, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '8d8DY6Nd', '5958351'), + (91354, 1075, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '8d8DY6Nd', '5959751'), + (91355, 1075, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '8d8DY6Nd', '5959755'), + (91356, 1075, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '8d8DY6Nd', '5960055'), + (91357, 1075, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '8d8DY6Nd', '5961684'), + (91358, 1075, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '8d8DY6Nd', '5962132'), + (91359, 1075, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '8d8DY6Nd', '5962133'), + (91360, 1075, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '8d8DY6Nd', '5962134'), + (91361, 1075, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '8d8DY6Nd', '5962317'), + (91362, 1075, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '8d8DY6Nd', '5962318'), + (91363, 1075, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '8d8DY6Nd', '5965933'), + (91364, 1075, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '8d8DY6Nd', '5967014'), + (91365, 1075, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '8d8DY6Nd', '5972815'), + (91366, 1075, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '8d8DY6Nd', '5974016'), + (91367, 1075, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '8d8DY6Nd', '5975052'), + (91368, 1075, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '8d8DY6Nd', '5975054'), + (91369, 1075, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '8d8DY6Nd', '5981515'), + (91370, 1075, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '8d8DY6Nd', '5993516'), + (91371, 1075, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '8d8DY6Nd', '5998939'), + (91372, 1075, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '8d8DY6Nd', '6028191'), + (91373, 1075, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '8d8DY6Nd', '6040066'), + (91374, 1075, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '8d8DY6Nd', '6042717'), + (91375, 1075, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '8d8DY6Nd', '6044838'), + (91376, 1075, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '8d8DY6Nd', '6044839'), + (91377, 1075, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '8d8DY6Nd', '6045684'), + (91378, 1075, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '8d8DY6Nd', '6050104'), + (91379, 1075, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '8d8DY6Nd', '6053195'), + (91380, 1075, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '8d8DY6Nd', '6053198'), + (91381, 1075, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '8d8DY6Nd', '6056085'), + (91382, 1075, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '8d8DY6Nd', '6056916'), + (91383, 1075, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '8d8DY6Nd', '6059290'), + (91384, 1075, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '8d8DY6Nd', '6060328'), + (91385, 1075, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '8d8DY6Nd', '6061037'), + (91386, 1075, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '8d8DY6Nd', '6061039'), + (91387, 1075, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '8d8DY6Nd', '6067245'), + (91388, 1075, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '8d8DY6Nd', '6068094'), + (91389, 1075, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '8d8DY6Nd', '6068252'), + (91390, 1075, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '8d8DY6Nd', '6068253'), + (91391, 1075, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '8d8DY6Nd', '6068254'), + (91392, 1075, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '8d8DY6Nd', '6068280'), + (91393, 1075, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '8d8DY6Nd', '6069093'), + (91394, 1075, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '8d8DY6Nd', '6072528'), + (91395, 1075, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '8d8DY6Nd', '6075556'), + (91396, 1075, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '8d8DY6Nd', '6079840'), + (91397, 1075, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '8d8DY6Nd', '6083398'), + (91398, 1075, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '8d8DY6Nd', '6093504'), + (91399, 1075, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '8d8DY6Nd', '6097414'), + (91400, 1075, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '8d8DY6Nd', '6097442'), + (91401, 1075, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '8d8DY6Nd', '6097684'), + (91402, 1075, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '8d8DY6Nd', '6098762'), + (91403, 1075, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '8d8DY6Nd', '6101362'), + (91404, 1075, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '8d8DY6Nd', '6107314'), + (91405, 1076, 2555, 'attending', '2024-04-13 18:08:16', '2025-12-17 19:46:34', 'dzb96lLd', '7114951'), + (91406, 1076, 2556, 'attending', '2024-04-16 22:15:50', '2025-12-17 19:46:34', 'dzb96lLd', '7114955'), + (91407, 1076, 2582, 'maybe', '2024-04-16 22:15:08', '2025-12-17 19:46:34', 'dzb96lLd', '7169765'), + (91408, 1076, 2587, 'attending', '2024-04-16 20:02:22', '2025-12-17 19:46:34', 'dzb96lLd', '7176152'), + (91409, 1076, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dzb96lLd', '7178446'), + (91410, 1077, 971, 'attending', '2021-09-08 22:26:49', '2025-12-17 19:47:43', '4oMyE8om', '4356801'), + (91411, 1077, 991, 'attending', '2021-09-07 05:41:28', '2025-12-17 19:47:43', '4oMyE8om', '4420738'), + (91412, 1077, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', '4oMyE8om', '4420739'), + (91413, 1077, 993, 'not_attending', '2021-09-25 21:03:58', '2025-12-17 19:47:34', '4oMyE8om', '4420741'), + (91414, 1077, 995, 'maybe', '2021-10-09 16:38:52', '2025-12-17 19:47:34', '4oMyE8om', '4420744'), + (91415, 1077, 996, 'attending', '2021-10-10 16:49:42', '2025-12-17 19:47:35', '4oMyE8om', '4420747'), + (91416, 1077, 1003, 'attending', '2021-09-03 22:12:30', '2025-12-17 19:47:43', '4oMyE8om', '4438802'), + (91417, 1077, 1023, 'not_attending', '2021-09-09 23:49:24', '2025-12-17 19:47:43', '4oMyE8om', '4461883'), + (91418, 1077, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '4oMyE8om', '4508342'), + (91419, 1077, 1086, 'not_attending', '2021-10-15 22:52:25', '2025-12-17 19:47:35', '4oMyE8om', '4568602'), + (91420, 1077, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '4oMyE8om', '4572153'), + (91421, 1077, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMyE8om', '4585962'), + (91422, 1077, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '4oMyE8om', '4596356'), + (91423, 1077, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '4oMyE8om', '4598860'), + (91424, 1077, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '4oMyE8om', '4598861'), + (91425, 1077, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '4oMyE8om', '4602797'), + (91426, 1077, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '4oMyE8om', '4637896'), + (91427, 1077, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '4oMyE8om', '4642994'), + (91428, 1077, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '4oMyE8om', '4642995'), + (91429, 1077, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '4oMyE8om', '4642996'), + (91430, 1077, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '4oMyE8om', '4642997'), + (91431, 1077, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '4oMyE8om', '4645687'), + (91432, 1077, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '4oMyE8om', '4645698'), + (91433, 1077, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '4oMyE8om', '4645704'), + (91434, 1077, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '4oMyE8om', '4645705'), + (91435, 1077, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '4oMyE8om', '4668385'), + (91436, 1077, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '4oMyE8om', '4694407'), + (91437, 1077, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '4oMyE8om', '4736497'), + (91438, 1077, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '4oMyE8om', '4736499'), + (91439, 1077, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '4oMyE8om', '4736500'), + (91440, 1077, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '4oMyE8om', '4736503'), + (91441, 1077, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '4oMyE8om', '4736504'), + (91442, 1077, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '4oMyE8om', '4746789'), + (91443, 1077, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMyE8om', '4753929'), + (91444, 1077, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMyE8om', '5038850'), + (91445, 1077, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '4oMyE8om', '5045826'), + (91446, 1077, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMyE8om', '5132533'), + (91447, 1077, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '4oMyE8om', '5186582'), + (91448, 1077, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '4oMyE8om', '5186583'), + (91449, 1077, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '4oMyE8om', '5186585'), + (91450, 1077, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '4oMyE8om', '5190437'), + (91451, 1077, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '4oMyE8om', '5215989'), + (91452, 1077, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4oMyE8om', '6045684'), + (91453, 1078, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBnge3wd', '6045684'), + (91454, 1079, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '41qWD0b4', '7324082'), + (91455, 1079, 2798, 'not_attending', '2024-08-11 19:42:25', '2025-12-17 19:46:31', '41qWD0b4', '7395910'), + (91456, 1079, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '41qWD0b4', '7397462'), + (91457, 1079, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '41qWD0b4', '7424275'), + (91458, 1079, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '41qWD0b4', '7432751'), + (91459, 1079, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '41qWD0b4', '7432752'), + (91460, 1079, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '41qWD0b4', '7432753'), + (91461, 1079, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '41qWD0b4', '7432754'), + (91462, 1079, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '41qWD0b4', '7432755'), + (91463, 1079, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '41qWD0b4', '7432756'), + (91464, 1079, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '41qWD0b4', '7432758'), + (91465, 1079, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '41qWD0b4', '7432759'), + (91466, 1079, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '41qWD0b4', '7433834'), + (91467, 1079, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '41qWD0b4', '7470197'), + (91468, 1079, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '41qWD0b4', '7685613'), + (91469, 1079, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '41qWD0b4', '7688194'), + (91470, 1079, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '41qWD0b4', '7688196'), + (91471, 1079, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '41qWD0b4', '7688289'), + (91472, 1080, 1515, 'maybe', '2022-08-06 14:04:51', '2025-12-17 19:47:21', 'd3VYzrO4', '5441128'), + (91473, 1080, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'd3VYzrO4', '5441131'), + (91474, 1080, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'd3VYzrO4', '5441132'), + (91475, 1080, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd3VYzrO4', '5461278'), + (91476, 1080, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd3VYzrO4', '5469480'), + (91477, 1080, 1569, 'attending', '2022-08-05 19:33:46', '2025-12-17 19:47:21', 'd3VYzrO4', '5481507'), + (91478, 1080, 1574, 'attending', '2022-08-08 05:40:19', '2025-12-17 19:47:22', 'd3VYzrO4', '5482153'), + (91479, 1080, 1576, 'attending', '2022-08-02 03:04:28', '2025-12-17 19:47:21', 'd3VYzrO4', '5482623'), + (91480, 1080, 1577, 'attending', '2022-08-03 22:06:56', '2025-12-17 19:47:21', 'd3VYzrO4', '5482793'), + (91481, 1080, 1578, 'maybe', '2022-08-02 05:55:46', '2025-12-17 19:47:21', 'd3VYzrO4', '5483073'), + (91482, 1080, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd3VYzrO4', '5488912'), + (91483, 1080, 1582, 'maybe', '2022-08-08 05:40:03', '2025-12-17 19:47:23', 'd3VYzrO4', '5492001'), + (91484, 1080, 1583, 'attending', '2022-08-08 05:39:53', '2025-12-17 19:47:22', 'd3VYzrO4', '5492002'), + (91485, 1080, 1586, 'attending', '2022-08-08 05:40:05', '2025-12-17 19:47:23', 'd3VYzrO4', '5492019'), + (91486, 1080, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd3VYzrO4', '5492192'), + (91487, 1080, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd3VYzrO4', '5493139'), + (91488, 1080, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd3VYzrO4', '5493200'), + (91489, 1080, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd3VYzrO4', '5502188'), + (91490, 1080, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd3VYzrO4', '5505059'), + (91491, 1080, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:24', 'd3VYzrO4', '5509055'), + (91492, 1080, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd3VYzrO4', '5512862'), + (91493, 1080, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd3VYzrO4', '5513985'), + (91494, 1080, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'd3VYzrO4', '5519981'), + (91495, 1080, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd3VYzrO4', '5522550'), + (91496, 1080, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd3VYzrO4', '5534683'), + (91497, 1080, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd3VYzrO4', '5537735'), + (91498, 1080, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd3VYzrO4', '5540859'), + (91499, 1080, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd3VYzrO4', '5546619'), + (91500, 1080, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd3VYzrO4', '5555245'), + (91501, 1080, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd3VYzrO4', '5557747'), + (91502, 1080, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd3VYzrO4', '5560255'), + (91503, 1080, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd3VYzrO4', '5562906'), + (91504, 1080, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd3VYzrO4', '5600604'), + (91505, 1080, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd3VYzrO4', '5605544'), + (91506, 1080, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', 'd3VYzrO4', '5606737'), + (91507, 1080, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd3VYzrO4', '5630960'), + (91508, 1080, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd3VYzrO4', '5630961'), + (91509, 1080, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd3VYzrO4', '5630962'), + (91510, 1080, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd3VYzrO4', '5630966'), + (91511, 1080, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd3VYzrO4', '5630967'), + (91512, 1080, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd3VYzrO4', '5630968'), + (91513, 1080, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd3VYzrO4', '5635406'), + (91514, 1080, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd3VYzrO4', '5638765'), + (91515, 1080, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd3VYzrO4', '5640097'), + (91516, 1080, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'd3VYzrO4', '5640843'), + (91517, 1080, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd3VYzrO4', '5641521'), + (91518, 1080, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd3VYzrO4', '5642818'), + (91519, 1080, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd3VYzrO4', '5652395'), + (91520, 1080, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd3VYzrO4', '5670445'), + (91521, 1080, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd3VYzrO4', '5671637'), + (91522, 1080, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd3VYzrO4', '5672329'), + (91523, 1080, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd3VYzrO4', '5674057'), + (91524, 1080, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd3VYzrO4', '5674060'), + (91525, 1080, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd3VYzrO4', '5677461'), + (91526, 1080, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd3VYzrO4', '5698046'), + (91527, 1080, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd3VYzrO4', '5699760'), + (91528, 1080, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd3VYzrO4', '5741601'), + (91529, 1080, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd3VYzrO4', '5763458'), + (91530, 1080, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd3VYzrO4', '5774172'), + (91531, 1080, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'd3VYzrO4', '5818247'), + (91532, 1080, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd3VYzrO4', '5819471'), + (91533, 1080, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd3VYzrO4', '5827739'), + (91534, 1080, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd3VYzrO4', '5844306'), + (91535, 1080, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd3VYzrO4', '5850159'), + (91536, 1080, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd3VYzrO4', '5858999'), + (91537, 1080, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd3VYzrO4', '5871984'), + (91538, 1080, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd3VYzrO4', '5876354'), + (91539, 1080, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd3VYzrO4', '5880939'), + (91540, 1080, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd3VYzrO4', '5887890'), + (91541, 1080, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd3VYzrO4', '5888598'), + (91542, 1080, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd3VYzrO4', '5893260'), + (91543, 1080, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd3VYzrO4', '6045684'), + (91544, 1081, 1518, 'attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4oxjazYd', '5441131'), + (91545, 1081, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '4oxjazYd', '5441132'), + (91546, 1081, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4oxjazYd', '5505059'), + (91547, 1081, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4oxjazYd', '5509055'), + (91548, 1081, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', '4oxjazYd', '5513985'), + (91549, 1081, 1628, 'attending', '2022-08-29 22:47:19', '2025-12-17 19:47:23', '4oxjazYd', '5522500'), + (91550, 1081, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', '4oxjazYd', '5534683'), + (91551, 1081, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4oxjazYd', '5537735'), + (91552, 1081, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4oxjazYd', '5540859'), + (91553, 1081, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4oxjazYd', '5546619'), + (91554, 1081, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4oxjazYd', '5555245'), + (91555, 1081, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4oxjazYd', '5557747'), + (91556, 1081, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4oxjazYd', '5560255'), + (91557, 1081, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4oxjazYd', '5562906'), + (91558, 1081, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4oxjazYd', '5600604'), + (91559, 1081, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4oxjazYd', '5605544'), + (91560, 1081, 1699, 'not_attending', '2022-09-26 12:19:16', '2025-12-17 19:47:12', '4oxjazYd', '5606737'), + (91561, 1081, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4oxjazYd', '5630960'), + (91562, 1081, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4oxjazYd', '5630961'), + (91563, 1081, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4oxjazYd', '5630962'), + (91564, 1081, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4oxjazYd', '5630966'), + (91565, 1081, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4oxjazYd', '5630967'), + (91566, 1081, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4oxjazYd', '5630968'), + (91567, 1081, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4oxjazYd', '5635406'), + (91568, 1081, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4oxjazYd', '5638765'), + (91569, 1081, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4oxjazYd', '5640097'), + (91570, 1081, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4oxjazYd', '5640843'), + (91571, 1081, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4oxjazYd', '5641521'), + (91572, 1081, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4oxjazYd', '5642818'), + (91573, 1081, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4oxjazYd', '5652395'), + (91574, 1081, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4oxjazYd', '5670445'), + (91575, 1081, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4oxjazYd', '5671637'), + (91576, 1081, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4oxjazYd', '5672329'), + (91577, 1081, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4oxjazYd', '5674057'), + (91578, 1081, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4oxjazYd', '5674060'), + (91579, 1081, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4oxjazYd', '5677461'), + (91580, 1081, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4oxjazYd', '5698046'), + (91581, 1081, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4oxjazYd', '5699760'), + (91582, 1081, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4oxjazYd', '5741601'), + (91583, 1081, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4oxjazYd', '5763458'), + (91584, 1081, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4oxjazYd', '5774172'), + (91585, 1081, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4oxjazYd', '5818247'), + (91586, 1081, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4oxjazYd', '5819471'), + (91587, 1081, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4oxjazYd', '5827739'), + (91588, 1081, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4oxjazYd', '5844306'), + (91589, 1081, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4oxjazYd', '5850159'), + (91590, 1081, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4oxjazYd', '5858999'), + (91591, 1081, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4oxjazYd', '5871984'), + (91592, 1081, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4oxjazYd', '5876354'), + (91593, 1081, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4oxjazYd', '5880939'), + (91594, 1081, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4oxjazYd', '5887890'), + (91595, 1081, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4oxjazYd', '5888598'), + (91596, 1081, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4oxjazYd', '5893260'), + (91597, 1081, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oxjazYd', '6045684'), + (91598, 1082, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'o4PK2xrA', '5630966'), + (91599, 1082, 1725, 'attending', '2022-11-13 04:50:33', '2025-12-17 19:47:16', 'o4PK2xrA', '5630967'), + (91600, 1082, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'o4PK2xrA', '5630968'), + (91601, 1082, 1727, 'attending', '2022-12-03 03:35:39', '2025-12-17 19:47:16', 'o4PK2xrA', '5630969'), + (91602, 1082, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'o4PK2xrA', '5642818'), + (91603, 1082, 1750, 'not_attending', '2022-11-03 03:14:46', '2025-12-17 19:47:15', 'o4PK2xrA', '5652365'), + (91604, 1082, 1757, 'attending', '2022-11-03 03:05:42', '2025-12-17 19:47:15', 'o4PK2xrA', '5668974'), + (91605, 1082, 1761, 'maybe', '2022-11-14 06:22:19', '2025-12-17 19:47:16', 'o4PK2xrA', '5670434'), + (91606, 1082, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'o4PK2xrA', '5670445'), + (91607, 1082, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'o4PK2xrA', '5699760'), + (91608, 1082, 1786, 'not_attending', '2022-11-07 00:16:26', '2025-12-17 19:47:15', 'o4PK2xrA', '5727232'), + (91609, 1082, 1789, 'attending', '2022-11-10 02:28:49', '2025-12-17 19:47:15', 'o4PK2xrA', '5727274'), + (91610, 1082, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'o4PK2xrA', '5741601'), + (91611, 1082, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'o4PK2xrA', '5763458'), + (91612, 1082, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'o4PK2xrA', '5774172'), + (91613, 1082, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'o4PK2xrA', '5818247'), + (91614, 1082, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'o4PK2xrA', '5819471'), + (91615, 1082, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'o4PK2xrA', '5827739'), + (91616, 1082, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'o4PK2xrA', '5844306'), + (91617, 1082, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'o4PK2xrA', '5850159'), + (91618, 1082, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'o4PK2xrA', '5858999'), + (91619, 1082, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'o4PK2xrA', '5871984'), + (91620, 1082, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'o4PK2xrA', '5876354'), + (91621, 1082, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'o4PK2xrA', '5880939'), + (91622, 1082, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'o4PK2xrA', '5880940'), + (91623, 1082, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'o4PK2xrA', '5880942'), + (91624, 1082, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'o4PK2xrA', '5880943'), + (91625, 1082, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'o4PK2xrA', '5887890'), + (91626, 1082, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'o4PK2xrA', '5888598'), + (91627, 1082, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'o4PK2xrA', '5893260'), + (91628, 1082, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'o4PK2xrA', '5899826'), + (91629, 1082, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'o4PK2xrA', '5900199'), + (91630, 1082, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'o4PK2xrA', '5900200'), + (91631, 1082, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'o4PK2xrA', '5900202'), + (91632, 1082, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'o4PK2xrA', '5900203'), + (91633, 1082, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'o4PK2xrA', '5901108'), + (91634, 1082, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'o4PK2xrA', '5901126'), + (91635, 1082, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'o4PK2xrA', '5909655'), + (91636, 1082, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'o4PK2xrA', '5910522'), + (91637, 1082, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'o4PK2xrA', '5910526'), + (91638, 1082, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'o4PK2xrA', '5910528'), + (91639, 1082, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'o4PK2xrA', '5916219'), + (91640, 1082, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'o4PK2xrA', '5936234'), + (91641, 1082, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'o4PK2xrA', '5958351'), + (91642, 1082, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'o4PK2xrA', '5959751'), + (91643, 1082, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'o4PK2xrA', '5959755'), + (91644, 1082, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'o4PK2xrA', '5960055'), + (91645, 1082, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'o4PK2xrA', '5961684'), + (91646, 1082, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'o4PK2xrA', '5962132'), + (91647, 1082, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'o4PK2xrA', '5962133'), + (91648, 1082, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'o4PK2xrA', '5962134'), + (91649, 1082, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'o4PK2xrA', '5962317'), + (91650, 1082, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'o4PK2xrA', '5962318'), + (91651, 1082, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'o4PK2xrA', '5965933'), + (91652, 1082, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'o4PK2xrA', '5967014'), + (91653, 1082, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'o4PK2xrA', '5972815'), + (91654, 1082, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'o4PK2xrA', '5974016'), + (91655, 1082, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'o4PK2xrA', '5981515'), + (91656, 1082, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'o4PK2xrA', '5993516'), + (91657, 1082, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'o4PK2xrA', '5998939'), + (91658, 1082, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'o4PK2xrA', '6028191'), + (91659, 1082, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'o4PK2xrA', '6040066'), + (91660, 1082, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'o4PK2xrA', '6042717'), + (91661, 1082, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'o4PK2xrA', '6044838'), + (91662, 1082, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'o4PK2xrA', '6044839'), + (91663, 1082, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'o4PK2xrA', '6045684'), + (91664, 1082, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'o4PK2xrA', '6050104'), + (91665, 1082, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'o4PK2xrA', '6053195'), + (91666, 1082, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'o4PK2xrA', '6053198'), + (91667, 1082, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'o4PK2xrA', '6056085'), + (91668, 1082, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'o4PK2xrA', '6056916'), + (91669, 1082, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'o4PK2xrA', '6059290'), + (91670, 1082, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'o4PK2xrA', '6060328'), + (91671, 1082, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'o4PK2xrA', '6061037'), + (91672, 1082, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'o4PK2xrA', '6061039'), + (91673, 1082, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'o4PK2xrA', '6067245'), + (91674, 1082, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'o4PK2xrA', '6068094'), + (91675, 1082, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'o4PK2xrA', '6068252'), + (91676, 1082, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'o4PK2xrA', '6068253'), + (91677, 1082, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'o4PK2xrA', '6068254'), + (91678, 1082, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'o4PK2xrA', '6068280'), + (91679, 1082, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'o4PK2xrA', '6069093'), + (91680, 1082, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'o4PK2xrA', '6072528'), + (91681, 1082, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'o4PK2xrA', '6079840'), + (91682, 1082, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'o4PK2xrA', '6083398'), + (91683, 1082, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'o4PK2xrA', '6093504'), + (91684, 1082, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'o4PK2xrA', '6097414'), + (91685, 1082, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'o4PK2xrA', '6097442'), + (91686, 1082, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'o4PK2xrA', '6097684'), + (91687, 1082, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'o4PK2xrA', '6098762'), + (91688, 1082, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'o4PK2xrA', '6101362'), + (91689, 1082, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'o4PK2xrA', '6103752'), + (91690, 1082, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'o4PK2xrA', '6107314'), + (91691, 1083, 197, 'attending', '2020-08-22 17:39:59', '2025-12-17 19:47:56', 'x4o1pKJm', '3087266'), + (91692, 1083, 198, 'attending', '2020-08-28 18:57:32', '2025-12-17 19:47:56', 'x4o1pKJm', '3087267'), + (91693, 1083, 199, 'not_attending', '2020-09-05 23:18:15', '2025-12-17 19:47:56', 'x4o1pKJm', '3087268'), + (91694, 1083, 219, 'attending', '2020-08-19 22:57:19', '2025-12-17 19:47:56', 'x4o1pKJm', '3129263'), + (91695, 1083, 223, 'not_attending', '2020-09-05 21:28:16', '2025-12-17 19:47:56', 'x4o1pKJm', '3129980'), + (91696, 1083, 311, 'not_attending', '2020-09-10 18:16:01', '2025-12-17 19:47:56', 'x4o1pKJm', '3186057'), + (91697, 1083, 313, 'maybe', '2020-08-23 14:42:26', '2025-12-17 19:47:56', 'x4o1pKJm', '3188127'), + (91698, 1083, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', 'x4o1pKJm', '3191735'), + (91699, 1083, 318, 'not_attending', '2020-08-28 23:46:21', '2025-12-17 19:47:56', 'x4o1pKJm', '3193885'), + (91700, 1083, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', 'x4o1pKJm', '3200209'), + (91701, 1083, 336, 'not_attending', '2020-09-13 03:47:50', '2025-12-17 19:47:56', 'x4o1pKJm', '3200495'), + (91702, 1083, 343, 'not_attending', '2020-09-21 22:56:44', '2025-12-17 19:47:56', 'x4o1pKJm', '3206759'), + (91703, 1083, 362, 'not_attending', '2020-09-25 19:23:20', '2025-12-17 19:47:52', 'x4o1pKJm', '3214207'), + (91704, 1083, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'x4o1pKJm', '3217037'), + (91705, 1083, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'x4o1pKJm', '3218510'), + (91706, 1083, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', 'x4o1pKJm', '3221403'), + (91707, 1083, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'x4o1pKJm', '3228698'), + (91708, 1083, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'x4o1pKJm', '3228699'), + (91709, 1083, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'x4o1pKJm', '3228700'), + (91710, 1083, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'x4o1pKJm', '3228701'), + (91711, 1083, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'x4o1pKJm', '3245751'), + (91712, 1083, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'x4o1pKJm', '3250232'), + (91713, 1083, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'x4o1pKJm', '3256168'), + (91714, 1083, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'x4o1pKJm', '6045684'), + (91715, 1084, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mRBbYXYm', '6045684'), + (91716, 1085, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dK3xjJ9d', '4736497'), + (91717, 1085, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dK3xjJ9d', '4736499'), + (91718, 1085, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dK3xjJ9d', '4736500'), + (91719, 1085, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dK3xjJ9d', '4736503'), + (91720, 1085, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dK3xjJ9d', '4736504'), + (91721, 1085, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dK3xjJ9d', '4746789'), + (91722, 1085, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dK3xjJ9d', '4753929'), + (91723, 1085, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'dK3xjJ9d', '5038850'), + (91724, 1085, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dK3xjJ9d', '5045826'), + (91725, 1085, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dK3xjJ9d', '5132533'), + (91726, 1085, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dK3xjJ9d', '6045684'), + (91727, 1086, 707, 'maybe', '2021-04-11 10:30:01', '2025-12-17 19:47:46', 'bdz1vya4', '3583262'), + (91728, 1086, 724, 'maybe', '2021-04-11 10:29:54', '2025-12-17 19:47:46', 'bdz1vya4', '3661369'), + (91729, 1086, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'bdz1vya4', '6045684'), + (91730, 1087, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'VmM1BMQm', '3406988'), + (91731, 1087, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'VmM1BMQm', '3416576'), + (91732, 1087, 564, 'attending', '2021-01-22 21:46:55', '2025-12-17 19:47:49', 'VmM1BMQm', '3426074'), + (91733, 1087, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'VmM1BMQm', '3430267'), + (91734, 1087, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'VmM1BMQm', '3468125'), + (91735, 1087, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VmM1BMQm', '3470303'), + (91736, 1087, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'VmM1BMQm', '3470305'), + (91737, 1087, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VmM1BMQm', '3470991'), + (91738, 1087, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VmM1BMQm', '3517815'), + (91739, 1087, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'VmM1BMQm', '3523941'), + (91740, 1087, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VmM1BMQm', '3533850'), + (91741, 1087, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VmM1BMQm', '3536632'), + (91742, 1087, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VmM1BMQm', '3536656'), + (91743, 1087, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VmM1BMQm', '3539916'), + (91744, 1087, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VmM1BMQm', '3539917'), + (91745, 1087, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VmM1BMQm', '3539918'), + (91746, 1087, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VmM1BMQm', '3539919'), + (91747, 1087, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VmM1BMQm', '3539920'), + (91748, 1087, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VmM1BMQm', '3539921'), + (91749, 1087, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VmM1BMQm', '3539922'), + (91750, 1087, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VmM1BMQm', '3539923'), + (91751, 1087, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VmM1BMQm', '6045684'), + (91752, 1088, 1624, 'not_attending', '2022-09-06 21:02:08', '2025-12-17 19:47:24', 'dlK19nw4', '5513985'), + (91753, 1088, 1630, 'not_attending', '2022-09-10 21:28:36', '2025-12-17 19:47:10', 'dlK19nw4', '5534683'), + (91754, 1088, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dlK19nw4', '5537735'), + (91755, 1088, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dlK19nw4', '5540859'), + (91756, 1088, 1643, 'maybe', '2022-09-20 03:22:57', '2025-12-17 19:47:11', 'dlK19nw4', '5545856'), + (91757, 1088, 1644, 'attending', '2022-09-19 15:04:23', '2025-12-17 19:47:11', 'dlK19nw4', '5545857'), + (91758, 1088, 1654, 'not_attending', '2022-09-05 18:28:29', '2025-12-17 19:47:25', 'dlK19nw4', '5554471'), + (91759, 1088, 1655, 'not_attending', '2022-09-09 13:34:03', '2025-12-17 19:47:11', 'dlK19nw4', '5554482'), + (91760, 1088, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dlK19nw4', '5555245'), + (91761, 1088, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dlK19nw4', '5557747'), + (91762, 1088, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dlK19nw4', '5560255'), + (91763, 1088, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dlK19nw4', '5562906'), + (91764, 1088, 1675, 'attending', '2022-09-18 21:09:28', '2025-12-17 19:47:11', 'dlK19nw4', '5593342'), + (91765, 1088, 1677, 'attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dlK19nw4', '5600604'), + (91766, 1088, 1684, 'maybe', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dlK19nw4', '5605544'), + (91767, 1088, 1699, 'not_attending', '2022-09-26 12:19:27', '2025-12-17 19:47:12', 'dlK19nw4', '5606737'), + (91768, 1088, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dlK19nw4', '5630960'), + (91769, 1088, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dlK19nw4', '5630961'), + (91770, 1088, 1723, 'maybe', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dlK19nw4', '5630962'), + (91771, 1088, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dlK19nw4', '5630966'), + (91772, 1088, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dlK19nw4', '5630967'), + (91773, 1088, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dlK19nw4', '5630968'), + (91774, 1088, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dlK19nw4', '5635406'), + (91775, 1088, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dlK19nw4', '5638765'), + (91776, 1088, 1739, 'maybe', '2022-10-22 15:17:07', '2025-12-17 19:47:14', 'dlK19nw4', '5640097'), + (91777, 1088, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dlK19nw4', '5640843'), + (91778, 1088, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dlK19nw4', '5641521'), + (91779, 1088, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dlK19nw4', '5642818'), + (91780, 1088, 1750, 'maybe', '2022-10-31 18:32:15', '2025-12-17 19:47:15', 'dlK19nw4', '5652365'), + (91781, 1088, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dlK19nw4', '5652395'), + (91782, 1088, 1757, 'attending', '2022-10-31 18:31:54', '2025-12-17 19:47:15', 'dlK19nw4', '5668974'), + (91783, 1088, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dlK19nw4', '5670445'), + (91784, 1088, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dlK19nw4', '5671637'), + (91785, 1088, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dlK19nw4', '5672329'), + (91786, 1088, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dlK19nw4', '5674057'), + (91787, 1088, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dlK19nw4', '5674060'), + (91788, 1088, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dlK19nw4', '5677461'), + (91789, 1088, 1773, 'not_attending', '2022-10-31 18:30:58', '2025-12-17 19:47:14', 'dlK19nw4', '5677707'), + (91790, 1088, 1776, 'attending', '2022-11-09 13:57:36', '2025-12-17 19:47:15', 'dlK19nw4', '5691067'), + (91791, 1088, 1781, 'attending', '2022-11-02 21:36:10', '2025-12-17 19:47:15', 'dlK19nw4', '5696178'), + (91792, 1088, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dlK19nw4', '5698046'), + (91793, 1088, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dlK19nw4', '5699760'), + (91794, 1088, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dlK19nw4', '5741601'), + (91795, 1088, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dlK19nw4', '5763458'), + (91796, 1088, 1824, 'maybe', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dlK19nw4', '5774172'), + (91797, 1088, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dlK19nw4', '5818247'), + (91798, 1088, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dlK19nw4', '5819471'), + (91799, 1088, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dlK19nw4', '5827739'), + (91800, 1088, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dlK19nw4', '5844306'), + (91801, 1088, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dlK19nw4', '5850159'), + (91802, 1088, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dlK19nw4', '5858999'), + (91803, 1088, 1852, 'attending', '2023-01-09 18:55:30', '2025-12-17 19:47:05', 'dlK19nw4', '5869898'), + (91804, 1088, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dlK19nw4', '5871984'), + (91805, 1088, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dlK19nw4', '5876354'), + (91806, 1088, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dlK19nw4', '5880939'), + (91807, 1088, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dlK19nw4', '5880940'), + (91808, 1088, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dlK19nw4', '5880942'), + (91809, 1088, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dlK19nw4', '5880943'), + (91810, 1088, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dlK19nw4', '5887890'), + (91811, 1088, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dlK19nw4', '5888598'), + (91812, 1088, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dlK19nw4', '5893260'), + (91813, 1088, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dlK19nw4', '5899826'), + (91814, 1088, 1888, 'attending', '2023-02-17 16:58:58', '2025-12-17 19:47:07', 'dlK19nw4', '5900197'), + (91815, 1088, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dlK19nw4', '5900199'), + (91816, 1088, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dlK19nw4', '5900200'), + (91817, 1088, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dlK19nw4', '5900202'), + (91818, 1088, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dlK19nw4', '5900203'), + (91819, 1088, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dlK19nw4', '5901108'), + (91820, 1088, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dlK19nw4', '5901126'), + (91821, 1088, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dlK19nw4', '5909655'), + (91822, 1088, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dlK19nw4', '5910522'), + (91823, 1088, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dlK19nw4', '5910526'), + (91824, 1088, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dlK19nw4', '5910528'), + (91825, 1088, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dlK19nw4', '5916219'), + (91826, 1088, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dlK19nw4', '5936234'), + (91827, 1088, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dlK19nw4', '5958351'), + (91828, 1088, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dlK19nw4', '5959751'), + (91829, 1088, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dlK19nw4', '5959755'), + (91830, 1088, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dlK19nw4', '5960055'), + (91831, 1088, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dlK19nw4', '5961684'), + (91832, 1088, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'dlK19nw4', '5962132'), + (91833, 1088, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:09', 'dlK19nw4', '5962133'), + (91834, 1088, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dlK19nw4', '5962134'), + (91835, 1088, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dlK19nw4', '5962317'), + (91836, 1088, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dlK19nw4', '5962318'), + (91837, 1088, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dlK19nw4', '5965933'), + (91838, 1088, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dlK19nw4', '5967014'), + (91839, 1088, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dlK19nw4', '5972815'), + (91840, 1088, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dlK19nw4', '5974016'), + (91841, 1088, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dlK19nw4', '5981515'), + (91842, 1088, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dlK19nw4', '5993516'), + (91843, 1088, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dlK19nw4', '5998939'), + (91844, 1088, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dlK19nw4', '6028191'), + (91845, 1088, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dlK19nw4', '6040066'), + (91846, 1088, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dlK19nw4', '6042717'), + (91847, 1088, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dlK19nw4', '6044838'), + (91848, 1088, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dlK19nw4', '6044839'), + (91849, 1088, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dlK19nw4', '6045684'), + (91850, 1088, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dlK19nw4', '6050104'), + (91851, 1088, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dlK19nw4', '6053195'), + (91852, 1088, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dlK19nw4', '6053198'), + (91853, 1088, 2008, 'attending', '2023-04-07 19:25:47', '2025-12-17 19:46:58', 'dlK19nw4', '6055808'), + (91854, 1088, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dlK19nw4', '6056085'), + (91855, 1088, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dlK19nw4', '6056916'), + (91856, 1088, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dlK19nw4', '6059290'), + (91857, 1088, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dlK19nw4', '6060328'), + (91858, 1088, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dlK19nw4', '6061037'), + (91859, 1088, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dlK19nw4', '6061039'), + (91860, 1088, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dlK19nw4', '6067245'), + (91861, 1088, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dlK19nw4', '6068094'), + (91862, 1088, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dlK19nw4', '6068252'), + (91863, 1088, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dlK19nw4', '6068253'), + (91864, 1088, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dlK19nw4', '6068254'), + (91865, 1088, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dlK19nw4', '6068280'), + (91866, 1088, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dlK19nw4', '6069093'), + (91867, 1088, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dlK19nw4', '6072528'), + (91868, 1088, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dlK19nw4', '6079840'), + (91869, 1088, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dlK19nw4', '6083398'), + (91870, 1088, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dlK19nw4', '6093504'), + (91871, 1088, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dlK19nw4', '6097414'), + (91872, 1088, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dlK19nw4', '6097442'), + (91873, 1088, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dlK19nw4', '6097684'), + (91874, 1088, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dlK19nw4', '6098762'), + (91875, 1088, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dlK19nw4', '6101361'), + (91876, 1088, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dlK19nw4', '6101362'), + (91877, 1088, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dlK19nw4', '6103752'), + (91878, 1088, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dlK19nw4', '6107314'), + (91879, 1088, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dlK19nw4', '6120034'), + (91880, 1088, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dlK19nw4', '6136733'), + (91881, 1088, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dlK19nw4', '6137989'), + (91882, 1088, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dlK19nw4', '6150864'), + (91883, 1088, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dlK19nw4', '6155491'), + (91884, 1088, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dlK19nw4', '6164417'), + (91885, 1088, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dlK19nw4', '6166388'), + (91886, 1088, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dlK19nw4', '6176439'), + (91887, 1088, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dlK19nw4', '6182410'), + (91888, 1088, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dlK19nw4', '6185812'), + (91889, 1088, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dlK19nw4', '6187651'), + (91890, 1088, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dlK19nw4', '6187963'), + (91891, 1088, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dlK19nw4', '6187964'), + (91892, 1088, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dlK19nw4', '6187966'), + (91893, 1088, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dlK19nw4', '6187967'), + (91894, 1088, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dlK19nw4', '6187969'), + (91895, 1088, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dlK19nw4', '6334878'), + (91896, 1088, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dlK19nw4', '6337236'), + (91897, 1088, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dlK19nw4', '6337970'), + (91898, 1088, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dlK19nw4', '6338308'), + (91899, 1088, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dlK19nw4', '6340845'), + (91900, 1088, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dlK19nw4', '6341710'), + (91901, 1088, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dlK19nw4', '6342044'), + (91902, 1088, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dlK19nw4', '6342298'), + (91903, 1088, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dlK19nw4', '6343294'), + (91904, 1088, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dlK19nw4', '6347034'), + (91905, 1088, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dlK19nw4', '6347056'), + (91906, 1088, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dlK19nw4', '6353830'), + (91907, 1088, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dlK19nw4', '6353831'), + (91908, 1088, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dlK19nw4', '6357867'), + (91909, 1088, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dlK19nw4', '6358652'), + (91910, 1088, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dlK19nw4', '6361709'), + (91911, 1088, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dlK19nw4', '6361710'), + (91912, 1088, 2210, 'not_attending', '2023-08-28 04:18:29', '2025-12-17 19:46:55', 'dlK19nw4', '6361711'), + (91913, 1088, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dlK19nw4', '6361712'), + (91914, 1088, 2212, 'maybe', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dlK19nw4', '6361713'), + (91915, 1088, 2219, 'not_attending', '2023-08-28 04:18:15', '2025-12-17 19:46:55', 'dlK19nw4', '6367309'), + (91916, 1088, 2220, 'not_attending', '2023-08-28 04:19:35', '2025-12-17 19:46:56', 'dlK19nw4', '6367310'), + (91917, 1088, 2235, 'maybe', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dlK19nw4', '6382573'), + (91918, 1088, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dlK19nw4', '6388604'), + (91919, 1088, 2245, 'attending', '2023-09-26 16:54:48', '2025-12-17 19:46:45', 'dlK19nw4', '6393703'), + (91920, 1088, 2248, 'attending', '2023-09-11 14:27:54', '2025-12-17 19:46:44', 'dlK19nw4', '6394629'), + (91921, 1088, 2249, 'maybe', '2023-09-16 21:50:05', '2025-12-17 19:46:45', 'dlK19nw4', '6394630'), + (91922, 1088, 2250, 'attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dlK19nw4', '6394631'), + (91923, 1088, 2253, 'maybe', '2023-09-30 15:14:43', '2025-12-17 19:46:45', 'dlK19nw4', '6401811'), + (91924, 1088, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dlK19nw4', '6440863'), + (91925, 1088, 2270, 'attending', '2023-10-03 16:32:34', '2025-12-17 19:46:46', 'dlK19nw4', '6443067'), + (91926, 1088, 2272, 'maybe', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dlK19nw4', '6445440'), + (91927, 1088, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dlK19nw4', '6453951'), + (91928, 1088, 2277, 'not_attending', '2023-10-12 21:29:45', '2025-12-17 19:46:46', 'dlK19nw4', '6455211'), + (91929, 1088, 2279, 'not_attending', '2023-10-12 21:29:30', '2025-12-17 19:46:46', 'dlK19nw4', '6455460'), + (91930, 1088, 2284, 'not_attending', '2023-10-12 21:29:42', '2025-12-17 19:46:46', 'dlK19nw4', '6460928'), + (91931, 1088, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dlK19nw4', '6461696'), + (91932, 1088, 2289, 'maybe', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dlK19nw4', '6462129'), + (91933, 1088, 2290, 'maybe', '2023-10-12 21:29:58', '2025-12-17 19:46:46', 'dlK19nw4', '6462214'), + (91934, 1088, 2292, 'not_attending', '2023-10-30 04:25:35', '2025-12-17 19:46:47', 'dlK19nw4', '6462216'), + (91935, 1088, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dlK19nw4', '6463218'), + (91936, 1088, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dlK19nw4', '6472181'), + (91937, 1088, 2300, 'not_attending', '2023-10-30 04:25:22', '2025-12-17 19:46:47', 'dlK19nw4', '6472185'), + (91938, 1088, 2304, 'not_attending', '2023-10-30 04:25:40', '2025-12-17 19:46:47', 'dlK19nw4', '6482693'), + (91939, 1088, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dlK19nw4', '6484200'), + (91940, 1088, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dlK19nw4', '6484680'), + (91941, 1088, 2310, 'not_attending', '2023-10-30 04:25:52', '2025-12-17 19:46:47', 'dlK19nw4', '6487709'), + (91942, 1088, 2311, 'not_attending', '2023-10-30 04:25:47', '2025-12-17 19:46:47', 'dlK19nw4', '6487725'), + (91943, 1088, 2314, 'not_attending', '2023-10-30 04:25:38', '2025-12-17 19:46:47', 'dlK19nw4', '6493665'), + (91944, 1088, 2315, 'not_attending', '2023-10-30 04:25:43', '2025-12-17 19:46:47', 'dlK19nw4', '6493666'), + (91945, 1088, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dlK19nw4', '6507741'), + (91946, 1088, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dlK19nw4', '6514659'), + (91947, 1088, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dlK19nw4', '6514660'), + (91948, 1088, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dlK19nw4', '6519103'), + (91949, 1088, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dlK19nw4', '6535681'), + (91950, 1088, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dlK19nw4', '6584747'), + (91951, 1088, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dlK19nw4', '6587097'), + (91952, 1088, 2357, 'attending', '2023-12-17 05:01:57', '2025-12-17 19:46:36', 'dlK19nw4', '6593341'), + (91953, 1088, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dlK19nw4', '6609022'), + (91954, 1088, 2373, 'not_attending', '2024-01-14 16:17:33', '2025-12-17 19:46:38', 'dlK19nw4', '6632678'), + (91955, 1088, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dlK19nw4', '6632757'), + (91956, 1088, 2375, 'attending', '2023-12-21 00:28:46', '2025-12-17 19:46:36', 'dlK19nw4', '6634548'), + (91957, 1088, 2376, 'not_attending', '2024-01-19 17:03:34', '2025-12-17 19:46:40', 'dlK19nw4', '6642900'), + (91958, 1088, 2377, 'attending', '2024-01-07 07:08:39', '2025-12-17 19:46:37', 'dlK19nw4', '6643448'), + (91959, 1088, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dlK19nw4', '6644187'), + (91960, 1088, 2385, 'not_attending', '2024-01-07 07:09:00', '2025-12-17 19:46:37', 'dlK19nw4', '6648943'), + (91961, 1088, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dlK19nw4', '6648951'), + (91962, 1088, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dlK19nw4', '6648952'), + (91963, 1088, 2389, 'not_attending', '2024-01-07 07:10:30', '2025-12-17 19:46:40', 'dlK19nw4', '6651094'), + (91964, 1088, 2391, 'not_attending', '2024-01-07 07:09:26', '2025-12-17 19:46:37', 'dlK19nw4', '6654138'), + (91965, 1088, 2392, 'not_attending', '2024-01-07 07:09:15', '2025-12-17 19:46:37', 'dlK19nw4', '6654412'), + (91966, 1088, 2393, 'not_attending', '2024-01-07 07:09:54', '2025-12-17 19:46:38', 'dlK19nw4', '6654468'), + (91967, 1088, 2394, 'not_attending', '2024-01-07 07:10:04', '2025-12-17 19:46:38', 'dlK19nw4', '6654470'), + (91968, 1088, 2395, 'not_attending', '2024-01-14 16:17:58', '2025-12-17 19:46:38', 'dlK19nw4', '6654471'), + (91969, 1088, 2396, 'not_attending', '2024-01-14 16:18:00', '2025-12-17 19:46:38', 'dlK19nw4', '6655401'), + (91970, 1088, 2397, 'not_attending', '2024-01-07 07:08:48', '2025-12-17 19:46:37', 'dlK19nw4', '6657379'), + (91971, 1088, 2398, 'not_attending', '2024-01-07 07:09:12', '2025-12-17 19:46:37', 'dlK19nw4', '6657381'), + (91972, 1088, 2399, 'not_attending', '2024-01-13 19:05:47', '2025-12-17 19:46:38', 'dlK19nw4', '6657583'), + (91973, 1088, 2400, 'not_attending', '2024-01-10 06:02:58', '2025-12-17 19:46:37', 'dlK19nw4', '6659378'), + (91974, 1088, 2401, 'attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dlK19nw4', '6661585'), + (91975, 1088, 2402, 'attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dlK19nw4', '6661588'), + (91976, 1088, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dlK19nw4', '6661589'), + (91977, 1088, 2404, 'not_attending', '2024-01-14 16:17:42', '2025-12-17 19:46:38', 'dlK19nw4', '6666858'), + (91978, 1088, 2405, 'not_attending', '2024-01-14 16:18:10', '2025-12-17 19:46:38', 'dlK19nw4', '6667332'), + (91979, 1088, 2406, 'not_attending', '2024-01-14 16:18:24', '2025-12-17 19:46:40', 'dlK19nw4', '6692344'), + (91980, 1088, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dlK19nw4', '6699906'), + (91981, 1088, 2408, 'not_attending', '2024-01-19 17:02:54', '2025-12-17 19:46:40', 'dlK19nw4', '6699907'), + (91982, 1088, 2410, 'not_attending', '2024-02-05 18:28:00', '2025-12-17 19:46:41', 'dlK19nw4', '6699911'), + (91983, 1088, 2411, 'not_attending', '2024-02-13 05:17:20', '2025-12-17 19:46:42', 'dlK19nw4', '6699913'), + (91984, 1088, 2412, 'not_attending', '2024-02-13 05:17:51', '2025-12-17 19:46:43', 'dlK19nw4', '6700717'), + (91985, 1088, 2414, 'not_attending', '2024-01-19 17:02:58', '2025-12-17 19:46:40', 'dlK19nw4', '6701000'), + (91986, 1088, 2415, 'not_attending', '2024-01-19 17:03:00', '2025-12-17 19:46:40', 'dlK19nw4', '6701001'), + (91987, 1088, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dlK19nw4', '6701109'), + (91988, 1088, 2417, 'not_attending', '2024-01-19 17:03:09', '2025-12-17 19:46:40', 'dlK19nw4', '6701905'), + (91989, 1088, 2421, 'not_attending', '2024-01-19 17:03:25', '2025-12-17 19:46:40', 'dlK19nw4', '6704598'), + (91990, 1088, 2422, 'not_attending', '2024-01-19 17:03:22', '2025-12-17 19:46:40', 'dlK19nw4', '6704650'), + (91991, 1088, 2423, 'maybe', '2024-01-19 17:03:20', '2025-12-17 19:46:40', 'dlK19nw4', '6705141'), + (91992, 1088, 2424, 'not_attending', '2024-01-19 17:02:47', '2025-12-17 19:46:40', 'dlK19nw4', '6705143'), + (91993, 1088, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dlK19nw4', '6705219'), + (91994, 1088, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dlK19nw4', '6710153'), + (91995, 1088, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dlK19nw4', '6711552'), + (91996, 1088, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'dlK19nw4', '6711553'), + (91997, 1088, 2435, 'not_attending', '2024-01-29 02:58:16', '2025-12-17 19:46:41', 'dlK19nw4', '6721547'), + (91998, 1088, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dlK19nw4', '6722688'), + (91999, 1088, 2438, 'attending', '2024-02-05 18:27:48', '2025-12-17 19:46:41', 'dlK19nw4', '6730201'), + (92000, 1088, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dlK19nw4', '6730620'), + (92001, 1088, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dlK19nw4', '6730642'), + (92002, 1088, 2444, 'not_attending', '2024-02-05 18:27:56', '2025-12-17 19:46:41', 'dlK19nw4', '6734367'), + (92003, 1088, 2445, 'not_attending', '2024-02-13 05:17:13', '2025-12-17 19:46:41', 'dlK19nw4', '6734368'), + (92004, 1088, 2447, 'not_attending', '2024-03-11 02:37:08', '2025-12-17 19:46:32', 'dlK19nw4', '6734370'), + (92005, 1088, 2453, 'maybe', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dlK19nw4', '6740364'), + (92006, 1088, 2460, 'maybe', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dlK19nw4', '6743829'), + (92007, 1088, 2466, 'not_attending', '2024-02-14 22:58:09', '2025-12-17 19:46:41', 'dlK19nw4', '7026777'), + (92008, 1088, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dlK19nw4', '7030380'), + (92009, 1088, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dlK19nw4', '7033677'), + (92010, 1088, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'dlK19nw4', '7035415'), + (92011, 1088, 2475, 'not_attending', '2024-02-27 08:06:37', '2025-12-17 19:46:43', 'dlK19nw4', '7035643'), + (92012, 1088, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dlK19nw4', '7044715'), + (92013, 1088, 2487, 'not_attending', '2024-03-17 18:07:30', '2025-12-17 19:46:33', 'dlK19nw4', '7049279'), + (92014, 1088, 2488, 'not_attending', '2024-03-17 18:07:25', '2025-12-17 19:46:33', 'dlK19nw4', '7049398'), + (92015, 1088, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dlK19nw4', '7050318'), + (92016, 1088, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dlK19nw4', '7050319'), + (92017, 1088, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dlK19nw4', '7050322'), + (92018, 1088, 2495, 'not_attending', '2024-03-11 02:37:02', '2025-12-17 19:46:32', 'dlK19nw4', '7052982'), + (92019, 1088, 2498, 'not_attending', '2024-03-17 18:07:15', '2025-12-17 19:46:33', 'dlK19nw4', '7057662'), + (92020, 1088, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dlK19nw4', '7057804'), + (92021, 1088, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dlK19nw4', '7059866'), + (92022, 1088, 2502, 'not_attending', '2024-03-17 18:07:10', '2025-12-17 19:46:33', 'dlK19nw4', '7061202'), + (92023, 1088, 2504, 'not_attending', '2024-03-17 18:07:24', '2025-12-17 19:46:33', 'dlK19nw4', '7063296'), + (92024, 1088, 2505, 'not_attending', '2024-03-17 18:07:18', '2025-12-17 19:46:33', 'dlK19nw4', '7069163'), + (92025, 1088, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dlK19nw4', '7072824'), + (92026, 1088, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dlK19nw4', '7074348'), + (92027, 1088, 2510, 'not_attending', '2024-03-17 18:07:20', '2025-12-17 19:46:33', 'dlK19nw4', '7074350'), + (92028, 1088, 2511, 'not_attending', '2024-04-08 20:11:49', '2025-12-17 19:46:33', 'dlK19nw4', '7074351'), + (92029, 1088, 2512, 'not_attending', '2024-04-01 15:09:47', '2025-12-17 19:46:33', 'dlK19nw4', '7074352'), + (92030, 1088, 2513, 'not_attending', '2024-04-17 22:57:14', '2025-12-17 19:46:34', 'dlK19nw4', '7074353'), + (92031, 1088, 2515, 'not_attending', '2024-05-02 16:08:32', '2025-12-17 19:46:35', 'dlK19nw4', '7074355'), + (92032, 1088, 2516, 'not_attending', '2024-04-30 09:34:44', '2025-12-17 19:46:35', 'dlK19nw4', '7074356'), + (92033, 1088, 2520, 'not_attending', '2024-05-12 16:46:12', '2025-12-17 19:46:35', 'dlK19nw4', '7074360'), + (92034, 1088, 2521, 'not_attending', '2024-06-03 18:57:24', '2025-12-17 19:46:29', 'dlK19nw4', '7074361'), + (92035, 1088, 2523, 'not_attending', '2024-06-03 18:56:46', '2025-12-17 19:46:36', 'dlK19nw4', '7074363'), + (92036, 1088, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dlK19nw4', '7074364'), + (92037, 1088, 2525, 'not_attending', '2024-06-03 18:57:07', '2025-12-17 19:46:28', 'dlK19nw4', '7074365'), + (92038, 1088, 2533, 'maybe', '2024-08-18 20:02:59', '2025-12-17 19:46:32', 'dlK19nw4', '7074384'), + (92039, 1088, 2534, 'not_attending', '2024-03-13 18:30:26', '2025-12-17 19:46:32', 'dlK19nw4', '7076875'), + (92040, 1088, 2536, 'not_attending', '2024-03-17 18:07:12', '2025-12-17 19:46:33', 'dlK19nw4', '7077689'), + (92041, 1088, 2537, 'maybe', '2024-03-17 18:07:33', '2025-12-17 19:46:33', 'dlK19nw4', '7085484'), + (92042, 1088, 2539, 'maybe', '2024-04-01 15:10:02', '2025-12-17 19:46:33', 'dlK19nw4', '7085486'), + (92043, 1088, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dlK19nw4', '7089267'), + (92044, 1088, 2541, 'not_attending', '2024-03-17 18:07:06', '2025-12-17 19:46:33', 'dlK19nw4', '7089404'), + (92045, 1088, 2543, 'not_attending', '2024-04-01 15:09:51', '2025-12-17 19:46:33', 'dlK19nw4', '7091456'), + (92046, 1088, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dlK19nw4', '7098747'), + (92047, 1088, 2551, 'not_attending', '2024-04-01 15:09:36', '2025-12-17 19:46:33', 'dlK19nw4', '7109912'), + (92048, 1088, 2552, 'attending', '2024-03-27 22:21:13', '2025-12-17 19:46:33', 'dlK19nw4', '7111123'), + (92049, 1088, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'dlK19nw4', '7113468'), + (92050, 1088, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dlK19nw4', '7114856'), + (92051, 1088, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dlK19nw4', '7114951'), + (92052, 1088, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dlK19nw4', '7114955'), + (92053, 1088, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dlK19nw4', '7114956'), + (92054, 1088, 2558, 'not_attending', '2024-05-02 16:08:28', '2025-12-17 19:46:35', 'dlK19nw4', '7114957'), + (92055, 1088, 2559, 'not_attending', '2024-04-01 15:09:40', '2025-12-17 19:46:33', 'dlK19nw4', '7115254'), + (92056, 1088, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dlK19nw4', '7153615'), + (92057, 1088, 2571, 'not_attending', '2024-04-08 20:11:44', '2025-12-17 19:46:33', 'dlK19nw4', '7159484'), + (92058, 1088, 2572, 'not_attending', '2024-04-13 21:53:19', '2025-12-17 19:46:33', 'dlK19nw4', '7159522'), + (92059, 1088, 2576, 'not_attending', '2024-04-26 22:43:22', '2025-12-17 19:46:34', 'dlK19nw4', '7164538'), + (92060, 1088, 2585, 'maybe', '2024-04-24 05:59:00', '2025-12-17 19:46:34', 'dlK19nw4', '7175828'), + (92061, 1088, 2590, 'attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dlK19nw4', '7178446'), + (92062, 1088, 2596, 'not_attending', '2024-04-27 13:45:00', '2025-12-17 19:46:34', 'dlK19nw4', '7183788'), + (92063, 1088, 2597, 'not_attending', '2024-04-26 22:43:20', '2025-12-17 19:46:34', 'dlK19nw4', '7186726'), + (92064, 1088, 2600, 'not_attending', '2024-04-30 09:34:13', '2025-12-17 19:46:35', 'dlK19nw4', '7196794'), + (92065, 1088, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dlK19nw4', '7220467'), + (92066, 1088, 2603, 'attending', '2024-05-12 16:46:08', '2025-12-17 19:46:35', 'dlK19nw4', '7225669'), + (92067, 1088, 2604, 'not_attending', '2024-05-29 15:02:10', '2025-12-17 19:46:36', 'dlK19nw4', '7225670'), + (92068, 1088, 2605, 'not_attending', '2024-05-02 16:08:25', '2025-12-17 19:46:35', 'dlK19nw4', '7229243'), + (92069, 1088, 2607, 'not_attending', '2024-04-30 09:34:23', '2025-12-17 19:46:35', 'dlK19nw4', '7240136'), + (92070, 1088, 2608, 'not_attending', '2024-04-30 09:34:29', '2025-12-17 19:46:35', 'dlK19nw4', '7240272'), + (92071, 1088, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dlK19nw4', '7240354'), + (92072, 1088, 2610, 'not_attending', '2024-05-02 16:08:26', '2025-12-17 19:46:35', 'dlK19nw4', '7241797'), + (92073, 1088, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dlK19nw4', '7251633'), + (92074, 1088, 2620, 'not_attending', '2024-05-12 16:46:13', '2025-12-17 19:46:35', 'dlK19nw4', '7258097'), + (92075, 1088, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dlK19nw4', '7263048'), + (92076, 1088, 2624, 'not_attending', '2024-05-12 16:46:00', '2025-12-17 19:46:35', 'dlK19nw4', '7263301'), + (92077, 1088, 2625, 'not_attending', '2024-05-12 16:46:03', '2025-12-17 19:46:35', 'dlK19nw4', '7263302'), + (92078, 1088, 2626, 'attending', '2024-05-12 16:46:16', '2025-12-17 19:46:35', 'dlK19nw4', '7264723'), + (92079, 1088, 2627, 'not_attending', '2024-05-24 09:59:44', '2025-12-17 19:46:35', 'dlK19nw4', '7264724'), + (92080, 1088, 2629, 'not_attending', '2024-06-03 18:56:56', '2025-12-17 19:46:28', 'dlK19nw4', '7264726'), + (92081, 1088, 2630, 'not_attending', '2024-05-12 16:46:10', '2025-12-17 19:46:35', 'dlK19nw4', '7264801'), + (92082, 1088, 2631, 'not_attending', '2024-05-12 16:45:59', '2025-12-17 19:46:35', 'dlK19nw4', '7265589'), + (92083, 1088, 2647, 'not_attending', '2024-06-03 18:57:01', '2025-12-17 19:46:28', 'dlK19nw4', '7282057'), + (92084, 1088, 2658, 'not_attending', '2024-06-03 18:57:04', '2025-12-17 19:46:36', 'dlK19nw4', '7298846'), + (92085, 1088, 2660, 'not_attending', '2024-06-03 18:57:03', '2025-12-17 19:46:36', 'dlK19nw4', '7301638'), + (92086, 1088, 2661, 'maybe', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dlK19nw4', '7302674'), + (92087, 1088, 2662, 'not_attending', '2024-06-03 18:56:46', '2025-12-17 19:46:36', 'dlK19nw4', '7302815'), + (92088, 1088, 2678, 'attending', '2024-06-14 21:25:59', '2025-12-17 19:46:28', 'dlK19nw4', '7319489'), + (92089, 1088, 2679, 'not_attending', '2024-06-17 07:42:57', '2025-12-17 19:46:29', 'dlK19nw4', '7319490'), + (92090, 1088, 2686, 'not_attending', '2024-06-17 07:42:51', '2025-12-17 19:46:29', 'dlK19nw4', '7323802'), + (92091, 1088, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'dlK19nw4', '7324073'), + (92092, 1088, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dlK19nw4', '7324074'), + (92093, 1088, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dlK19nw4', '7324075'), + (92094, 1088, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'dlK19nw4', '7324078'), + (92095, 1088, 2696, 'not_attending', '2024-08-18 20:03:08', '2025-12-17 19:46:32', 'dlK19nw4', '7324081'), + (92096, 1088, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'dlK19nw4', '7324082'), + (92097, 1088, 2706, 'attending', '2024-06-17 07:42:44', '2025-12-17 19:46:28', 'dlK19nw4', '7324947'), + (92098, 1088, 2707, 'not_attending', '2024-06-17 07:42:40', '2025-12-17 19:46:28', 'dlK19nw4', '7324952'), + (92099, 1088, 2708, 'not_attending', '2024-06-14 21:25:57', '2025-12-17 19:46:28', 'dlK19nw4', '7325048'), + (92100, 1088, 2710, 'not_attending', '2024-06-17 07:42:47', '2025-12-17 19:46:29', 'dlK19nw4', '7325108'), + (92101, 1088, 2716, 'not_attending', '2024-06-17 07:42:56', '2025-12-17 19:46:29', 'dlK19nw4', '7329096'), + (92102, 1088, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dlK19nw4', '7331457'), + (92103, 1088, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dlK19nw4', '7356752'), + (92104, 1088, 2764, 'not_attending', '2024-07-26 00:16:03', '2025-12-17 19:46:30', 'dlK19nw4', '7363595'), + (92105, 1088, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'dlK19nw4', '7363643'), + (92106, 1088, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dlK19nw4', '7368606'), + (92107, 1088, 2801, 'not_attending', '2024-08-18 20:02:46', '2025-12-17 19:46:32', 'dlK19nw4', '7397462'), + (92108, 1088, 2803, 'not_attending', '2024-08-18 20:02:37', '2025-12-17 19:46:32', 'dlK19nw4', '7397869'), + (92109, 1088, 2804, 'not_attending', '2024-08-18 20:03:12', '2025-12-17 19:46:32', 'dlK19nw4', '7399270'), + (92110, 1088, 2805, 'not_attending', '2024-08-20 20:49:01', '2025-12-17 19:46:32', 'dlK19nw4', '7403620'), + (92111, 1088, 2807, 'not_attending', '2024-08-23 04:33:43', '2025-12-17 19:46:32', 'dlK19nw4', '7406485'), + (92112, 1088, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dlK19nw4', '7424275'), + (92113, 1088, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dlK19nw4', '7424276'), + (92114, 1088, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dlK19nw4', '7432751'), + (92115, 1088, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dlK19nw4', '7432752'), + (92116, 1088, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dlK19nw4', '7432753'), + (92117, 1088, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dlK19nw4', '7432754'), + (92118, 1088, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dlK19nw4', '7432755'), + (92119, 1088, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dlK19nw4', '7432756'), + (92120, 1088, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dlK19nw4', '7432758'), + (92121, 1088, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dlK19nw4', '7432759'), + (92122, 1088, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dlK19nw4', '7433834'), + (92123, 1088, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dlK19nw4', '7470197'), + (92124, 1088, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dlK19nw4', '7685613'), + (92125, 1088, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dlK19nw4', '7688194'), + (92126, 1088, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dlK19nw4', '7688196'), + (92127, 1088, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dlK19nw4', '7688289'), + (92128, 1089, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'rdO1gaWA', '6045684'), + (92129, 1090, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '406JJWRm', '5880943'), + (92130, 1090, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '406JJWRm', '5900202'), + (92131, 1090, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '406JJWRm', '5900203'), + (92132, 1090, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '406JJWRm', '5910528'), + (92133, 1090, 1945, 'maybe', '2023-03-08 05:15:16', '2025-12-17 19:47:10', '406JJWRm', '5962133'), + (92134, 1090, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', '406JJWRm', '5962317'), + (92135, 1090, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', '406JJWRm', '5962318'), + (92136, 1090, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '406JJWRm', '5965933'), + (92137, 1090, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '406JJWRm', '5972815'), + (92138, 1090, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '406JJWRm', '5974016'), + (92139, 1090, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '406JJWRm', '5981515'), + (92140, 1090, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '406JJWRm', '5993516'), + (92141, 1090, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '406JJWRm', '5998939'), + (92142, 1090, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '406JJWRm', '6028191'), + (92143, 1090, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '406JJWRm', '6040066'), + (92144, 1090, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '406JJWRm', '6042717'), + (92145, 1090, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '406JJWRm', '6044838'), + (92146, 1090, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '406JJWRm', '6044839'), + (92147, 1090, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '406JJWRm', '6045684'), + (92148, 1090, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', '406JJWRm', '6048955'), + (92149, 1090, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '406JJWRm', '6050104'), + (92150, 1090, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '406JJWRm', '6053195'), + (92151, 1090, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '406JJWRm', '6053198'), + (92152, 1090, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '406JJWRm', '6056085'), + (92153, 1090, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '406JJWRm', '6056916'), + (92154, 1090, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '406JJWRm', '6059290'), + (92155, 1090, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '406JJWRm', '6060328'), + (92156, 1090, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '406JJWRm', '6061037'), + (92157, 1090, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '406JJWRm', '6061039'), + (92158, 1090, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '406JJWRm', '6067245'), + (92159, 1090, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '406JJWRm', '6068094'), + (92160, 1090, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '406JJWRm', '6068252'), + (92161, 1090, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '406JJWRm', '6068253'), + (92162, 1090, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '406JJWRm', '6068254'), + (92163, 1090, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '406JJWRm', '6068280'), + (92164, 1090, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '406JJWRm', '6069093'), + (92165, 1090, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', '406JJWRm', '6072528'), + (92166, 1090, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '406JJWRm', '6079840'), + (92167, 1090, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '406JJWRm', '6083398'), + (92168, 1090, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '406JJWRm', '6093504'), + (92169, 1090, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '406JJWRm', '6097414'), + (92170, 1090, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '406JJWRm', '6097442'), + (92171, 1090, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '406JJWRm', '6097684'), + (92172, 1090, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '406JJWRm', '6098762'), + (92173, 1090, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '406JJWRm', '6101362'), + (92174, 1090, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '406JJWRm', '6107314'), + (92175, 1090, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '406JJWRm', '6120034'), + (92176, 1091, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dlk7oNl4', '7869188'), + (92177, 1091, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dlk7oNl4', '7888250'), + (92178, 1091, 3074, 'not_attending', '2025-04-04 08:12:42', '2025-12-17 19:46:19', 'dlk7oNl4', '7897784'), + (92179, 1091, 3087, 'not_attending', '2025-04-09 23:16:01', '2025-12-17 19:46:20', 'dlk7oNl4', '7903856'), + (92180, 1091, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', 'dlk7oNl4', '8347770'), + (92181, 1091, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dlk7oNl4', '8349164'), + (92182, 1091, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dlk7oNl4', '8349545'), + (92183, 1091, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dlk7oNl4', '8353584'), + (92184, 1092, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '8dB9BjL4', '6655401'), + (92185, 1092, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '8dB9BjL4', '6699906'), + (92186, 1092, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '8dB9BjL4', '6699913'), + (92187, 1092, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '8dB9BjL4', '6701109'), + (92188, 1092, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '8dB9BjL4', '6705219'), + (92189, 1092, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '8dB9BjL4', '6710153'), + (92190, 1092, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '8dB9BjL4', '6711552'), + (92191, 1092, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '8dB9BjL4', '6711553'), + (92192, 1092, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '8dB9BjL4', '6722688'), + (92193, 1092, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '8dB9BjL4', '6730620'), + (92194, 1092, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '8dB9BjL4', '6730642'), + (92195, 1092, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '8dB9BjL4', '6740364'), + (92196, 1092, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '8dB9BjL4', '6743829'), + (92197, 1092, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '8dB9BjL4', '7030380'), + (92198, 1092, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '8dB9BjL4', '7033677'), + (92199, 1092, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '8dB9BjL4', '7035415'), + (92200, 1092, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', '8dB9BjL4', '7044715'), + (92201, 1092, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', '8dB9BjL4', '7050318'), + (92202, 1092, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', '8dB9BjL4', '7050319'), + (92203, 1092, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', '8dB9BjL4', '7050322'), + (92204, 1092, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', '8dB9BjL4', '7057804'), + (92205, 1092, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', '8dB9BjL4', '7072824'), + (92206, 1092, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', '8dB9BjL4', '7074348'), + (92207, 1092, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', '8dB9BjL4', '7089267'), + (92208, 1092, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', '8dB9BjL4', '7098747'), + (92209, 1092, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', '8dB9BjL4', '7113468'), + (92210, 1092, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', '8dB9BjL4', '7114856'), + (92211, 1092, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', '8dB9BjL4', '7114951'), + (92212, 1092, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', '8dB9BjL4', '7114955'), + (92213, 1092, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', '8dB9BjL4', '7114956'), + (92214, 1092, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', '8dB9BjL4', '7153615'), + (92215, 1092, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', '8dB9BjL4', '7159484'), + (92216, 1092, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', '8dB9BjL4', '7178446'), + (92217, 1093, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'AYpq90wm', '8477877'), + (92218, 1093, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'AYpq90wm', '8485688'), + (92219, 1093, 3234, 'not_attending', '2025-08-15 02:57:00', '2025-12-17 19:46:17', 'AYpq90wm', '8488773'), + (92220, 1093, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'AYpq90wm', '8490587'), + (92221, 1093, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'AYpq90wm', '8493552'), + (92222, 1093, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'AYpq90wm', '8493553'), + (92223, 1093, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'AYpq90wm', '8493554'), + (92224, 1093, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'AYpq90wm', '8493555'), + (92225, 1093, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'AYpq90wm', '8493556'), + (92226, 1093, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'AYpq90wm', '8493557'), + (92227, 1093, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'AYpq90wm', '8493558'), + (92228, 1093, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'AYpq90wm', '8493559'), + (92229, 1093, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'AYpq90wm', '8493560'), + (92230, 1093, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'AYpq90wm', '8493561'), + (92231, 1093, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'AYpq90wm', '8493572'), + (92232, 1093, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'AYpq90wm', '8529058'), + (92233, 1094, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'Pm7vD5ad', '3386848'), + (92234, 1094, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'Pm7vD5ad', '3389527'), + (92235, 1094, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'Pm7vD5ad', '3396499'), + (92236, 1094, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'Pm7vD5ad', '3403650'), + (92237, 1094, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'Pm7vD5ad', '3406988'), + (92238, 1094, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'Pm7vD5ad', '3416576'), + (92239, 1094, 564, 'not_attending', '2021-01-22 21:43:40', '2025-12-17 19:47:49', 'Pm7vD5ad', '3426074'), + (92240, 1094, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'Pm7vD5ad', '3430267'), + (92241, 1094, 600, 'not_attending', '2021-02-06 03:23:29', '2025-12-17 19:47:50', 'Pm7vD5ad', '3468125'), + (92242, 1094, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'Pm7vD5ad', '3470303'), + (92243, 1094, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'Pm7vD5ad', '3470991'), + (92244, 1094, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7vD5ad', '6045684'), + (92245, 1095, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'mqEnP9lm', '4736503'), + (92246, 1095, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'mqEnP9lm', '4736504'), + (92247, 1095, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'mqEnP9lm', '5045826'), + (92248, 1095, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'mqEnP9lm', '5132533'), + (92249, 1095, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'mqEnP9lm', '5186582'), + (92250, 1095, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'mqEnP9lm', '5186583'), + (92251, 1095, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'mqEnP9lm', '5186585'), + (92252, 1095, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'mqEnP9lm', '5190437'), + (92253, 1095, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'mqEnP9lm', '5196763'), + (92254, 1095, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'mqEnP9lm', '5199460'), + (92255, 1095, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'mqEnP9lm', '5215989'), + (92256, 1095, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mqEnP9lm', '6045684'), + (92257, 1096, 21, 'maybe', '2020-04-27 01:24:34', '2025-12-17 19:47:57', '64veN7BA', '2958065'), + (92258, 1096, 57, 'not_attending', '2020-04-27 14:12:02', '2025-12-17 19:47:57', '64veN7BA', '2976575'), + (92259, 1096, 59, 'attending', '2020-05-04 21:42:01', '2025-12-17 19:47:57', '64veN7BA', '2977128'), + (92260, 1096, 62, 'maybe', '2020-05-11 02:30:50', '2025-12-17 19:47:57', '64veN7BA', '2977131'), + (92261, 1096, 63, 'maybe', '2020-05-11 20:04:11', '2025-12-17 19:47:57', '64veN7BA', '2977132'), + (92262, 1096, 64, 'maybe', '2020-05-27 07:11:16', '2025-12-17 19:47:58', '64veN7BA', '2977133'), + (92263, 1096, 65, 'maybe', '2020-05-26 21:27:52', '2025-12-17 19:47:57', '64veN7BA', '2977134'), + (92264, 1096, 66, 'maybe', '2020-06-06 01:41:48', '2025-12-17 19:47:58', '64veN7BA', '2977135'), + (92265, 1096, 67, 'maybe', '2020-06-11 03:06:11', '2025-12-17 19:47:58', '64veN7BA', '2977136'), + (92266, 1096, 68, 'maybe', '2020-06-20 13:46:02', '2025-12-17 19:47:58', '64veN7BA', '2977137'), + (92267, 1096, 69, 'maybe', '2020-06-29 18:50:50', '2025-12-17 19:47:55', '64veN7BA', '2977138'), + (92268, 1096, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '64veN7BA', '2977812'), + (92269, 1096, 76, 'attending', '2020-05-02 16:14:10', '2025-12-17 19:47:57', '64veN7BA', '2978246'), + (92270, 1096, 77, 'maybe', '2020-05-04 18:01:18', '2025-12-17 19:47:57', '64veN7BA', '2978247'), + (92271, 1096, 78, 'maybe', '2020-05-14 23:01:38', '2025-12-17 19:47:57', '64veN7BA', '2978249'), + (92272, 1096, 79, 'maybe', '2020-05-26 21:28:37', '2025-12-17 19:47:57', '64veN7BA', '2978250'), + (92273, 1096, 80, 'maybe', '2020-05-27 07:11:21', '2025-12-17 19:47:58', '64veN7BA', '2978251'), + (92274, 1096, 81, 'maybe', '2020-06-07 16:32:42', '2025-12-17 19:47:58', '64veN7BA', '2978252'), + (92275, 1096, 83, 'maybe', '2020-05-08 23:10:22', '2025-12-17 19:47:57', '64veN7BA', '2978438'), + (92276, 1096, 97, 'attending', '2020-05-04 21:42:12', '2025-12-17 19:47:57', '64veN7BA', '2987454'), + (92277, 1096, 98, 'attending', '2020-05-11 20:03:36', '2025-12-17 19:47:57', '64veN7BA', '2987455'), + (92278, 1096, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', '64veN7BA', '2990784'), + (92279, 1096, 106, 'maybe', '2020-05-03 15:43:10', '2025-12-17 19:47:57', '64veN7BA', '2993501'), + (92280, 1096, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '64veN7BA', '2994480'), + (92281, 1096, 113, 'maybe', '2020-07-28 18:38:19', '2025-12-17 19:47:56', '64veN7BA', '2994909'), + (92282, 1096, 115, 'maybe', '2020-05-09 06:30:23', '2025-12-17 19:47:57', '64veN7BA', '3001217'), + (92283, 1096, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', '64veN7BA', '3023063'), + (92284, 1096, 123, 'attending', '2020-05-15 21:03:13', '2025-12-17 19:47:57', '64veN7BA', '3023729'), + (92285, 1096, 125, 'attending', '2020-05-15 21:03:05', '2025-12-17 19:47:57', '64veN7BA', '3023987'), + (92286, 1096, 130, 'attending', '2020-05-21 22:36:55', '2025-12-17 19:47:57', '64veN7BA', '3028781'), + (92287, 1096, 132, 'attending', '2020-05-25 21:22:33', '2025-12-17 19:47:58', '64veN7BA', '3033648'), + (92288, 1096, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '64veN7BA', '3034321'), + (92289, 1096, 135, 'maybe', '2020-05-26 00:42:27', '2025-12-17 19:47:57', '64veN7BA', '3034368'), + (92290, 1096, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '64veN7BA', '3035881'), + (92291, 1096, 138, 'maybe', '2020-06-07 09:57:30', '2025-12-17 19:47:58', '64veN7BA', '3042932'), + (92292, 1096, 140, 'attending', '2020-06-01 01:04:06', '2025-12-17 19:47:57', '64veN7BA', '3046980'), + (92293, 1096, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '64veN7BA', '3049983'), + (92294, 1096, 170, 'attending', '2020-06-08 01:08:02', '2025-12-17 19:47:58', '64veN7BA', '3058742'), + (92295, 1096, 171, 'maybe', '2020-06-07 02:23:15', '2025-12-17 19:47:58', '64veN7BA', '3058743'), + (92296, 1096, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '64veN7BA', '3058959'), + (92297, 1096, 173, 'maybe', '2020-06-11 03:06:14', '2025-12-17 19:47:58', '64veN7BA', '3067093'), + (92298, 1096, 181, 'maybe', '2020-06-15 22:29:34', '2025-12-17 19:47:58', '64veN7BA', '3074513'), + (92299, 1096, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '64veN7BA', '3075228'), + (92300, 1096, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '64veN7BA', '3075456'), + (92301, 1096, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '64veN7BA', '3083791'), + (92302, 1096, 187, 'maybe', '2020-06-28 19:51:53', '2025-12-17 19:47:55', '64veN7BA', '3085151'), + (92303, 1096, 190, 'not_attending', '2020-07-03 03:42:24', '2025-12-17 19:47:55', '64veN7BA', '3087258'), + (92304, 1096, 191, 'attending', '2020-07-07 16:56:34', '2025-12-17 19:47:55', '64veN7BA', '3087259'), + (92305, 1096, 192, 'maybe', '2020-07-08 19:55:52', '2025-12-17 19:47:55', '64veN7BA', '3087260'), + (92306, 1096, 193, 'maybe', '2020-07-19 16:17:13', '2025-12-17 19:47:55', '64veN7BA', '3087261'), + (92307, 1096, 194, 'maybe', '2020-07-28 18:38:00', '2025-12-17 19:47:56', '64veN7BA', '3087262'), + (92308, 1096, 195, 'maybe', '2020-08-01 16:00:07', '2025-12-17 19:47:56', '64veN7BA', '3087264'), + (92309, 1096, 196, 'not_attending', '2020-08-10 04:05:51', '2025-12-17 19:47:56', '64veN7BA', '3087265'), + (92310, 1096, 197, 'not_attending', '2020-08-21 00:36:20', '2025-12-17 19:47:56', '64veN7BA', '3087266'), + (92311, 1096, 198, 'maybe', '2020-08-24 17:28:11', '2025-12-17 19:47:56', '64veN7BA', '3087267'), + (92312, 1096, 199, 'not_attending', '2020-09-04 12:59:21', '2025-12-17 19:47:56', '64veN7BA', '3087268'), + (92313, 1096, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '64veN7BA', '3088653'), + (92314, 1096, 205, 'attending', '2020-06-29 18:37:38', '2025-12-17 19:47:55', '64veN7BA', '3104804'), + (92315, 1096, 206, 'maybe', '2020-07-08 19:55:47', '2025-12-17 19:47:55', '64veN7BA', '3104806'), + (92316, 1096, 207, 'maybe', '2020-07-19 16:17:02', '2025-12-17 19:47:55', '64veN7BA', '3104807'), + (92317, 1096, 208, 'maybe', '2020-08-01 16:00:02', '2025-12-17 19:47:56', '64veN7BA', '3104808'), + (92318, 1096, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '64veN7BA', '3106813'), + (92319, 1096, 210, 'maybe', '2020-07-03 03:41:09', '2025-12-17 19:47:55', '64veN7BA', '3108972'), + (92320, 1096, 214, 'maybe', '2020-07-06 16:57:48', '2025-12-17 19:47:55', '64veN7BA', '3124139'), + (92321, 1096, 215, 'attending', '2020-07-07 16:49:20', '2025-12-17 19:47:55', '64veN7BA', '3124987'), + (92322, 1096, 223, 'maybe', '2020-09-08 17:13:34', '2025-12-17 19:47:56', '64veN7BA', '3129980'), + (92323, 1096, 226, 'maybe', '2020-07-13 19:52:04', '2025-12-17 19:47:55', '64veN7BA', '3132817'), + (92324, 1096, 227, 'maybe', '2020-07-13 21:23:11', '2025-12-17 19:47:55', '64veN7BA', '3132820'), + (92325, 1096, 233, 'attending', '2020-07-19 21:20:03', '2025-12-17 19:47:55', '64veN7BA', '3139773'), + (92326, 1096, 236, 'maybe', '2020-07-20 22:07:24', '2025-12-17 19:47:55', '64veN7BA', '3140873'), + (92327, 1096, 264, 'maybe', '2020-08-02 21:10:30', '2025-12-17 19:47:56', '64veN7BA', '3150735'), + (92328, 1096, 269, 'attending', '2020-07-28 22:28:09', '2025-12-17 19:47:55', '64veN7BA', '3153076'), + (92329, 1096, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '64veN7BA', '3155321'), + (92330, 1096, 272, 'maybe', '2020-08-02 18:41:35', '2025-12-17 19:47:56', '64veN7BA', '3161472'), + (92331, 1096, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '64veN7BA', '3162006'), + (92332, 1096, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '64veN7BA', '3163442'), + (92333, 1096, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '64veN7BA', '3169555'), + (92334, 1096, 293, 'not_attending', '2020-08-10 03:21:58', '2025-12-17 19:47:56', '64veN7BA', '3172832'), + (92335, 1096, 294, 'not_attending', '2020-08-24 17:35:26', '2025-12-17 19:47:56', '64veN7BA', '3172833'), + (92336, 1096, 295, 'not_attending', '2020-08-24 17:38:32', '2025-12-17 19:47:56', '64veN7BA', '3172834'), + (92337, 1096, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', '64veN7BA', '3172876'), + (92338, 1096, 298, 'maybe', '2020-08-24 17:35:49', '2025-12-17 19:47:56', '64veN7BA', '3174556'), + (92339, 1096, 311, 'not_attending', '2020-09-12 21:27:54', '2025-12-17 19:47:56', '64veN7BA', '3186057'), + (92340, 1096, 314, 'maybe', '2020-08-24 17:35:55', '2025-12-17 19:47:56', '64veN7BA', '3188480'), + (92341, 1096, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '64veN7BA', '3191735'), + (92342, 1096, 319, 'not_attending', '2020-08-31 20:21:41', '2025-12-17 19:47:56', '64veN7BA', '3194179'), + (92343, 1096, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '64veN7BA', '3200209'), + (92344, 1096, 339, 'not_attending', '2020-09-08 17:13:29', '2025-12-17 19:47:56', '64veN7BA', '3204469'), + (92345, 1096, 340, 'not_attending', '2020-09-13 22:55:05', '2025-12-17 19:47:56', '64veN7BA', '3204470'), + (92346, 1096, 341, 'maybe', '2020-09-23 17:49:48', '2025-12-17 19:47:52', '64veN7BA', '3204471'), + (92347, 1096, 342, 'not_attending', '2020-09-23 17:49:58', '2025-12-17 19:47:52', '64veN7BA', '3204472'), + (92348, 1096, 355, 'maybe', '2020-09-13 23:03:01', '2025-12-17 19:47:56', '64veN7BA', '3212571'), + (92349, 1096, 362, 'maybe', '2020-09-24 18:20:22', '2025-12-17 19:47:52', '64veN7BA', '3214207'), + (92350, 1096, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', '64veN7BA', '3217037'), + (92351, 1096, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', '64veN7BA', '3218510'), + (92352, 1096, 375, 'not_attending', '2020-10-01 15:14:10', '2025-12-17 19:47:52', '64veN7BA', '3222825'), + (92353, 1096, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', '64veN7BA', '3228698'), + (92354, 1096, 386, 'not_attending', '2020-10-01 15:14:00', '2025-12-17 19:47:52', '64veN7BA', '3228699'), + (92355, 1096, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', '64veN7BA', '3228700'), + (92356, 1096, 388, 'not_attending', '2020-10-18 04:16:47', '2025-12-17 19:47:52', '64veN7BA', '3228701'), + (92357, 1096, 418, 'not_attending', '2020-10-12 01:01:58', '2025-12-17 19:47:52', '64veN7BA', '3241728'), + (92358, 1096, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', '64veN7BA', '3245751'), + (92359, 1096, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', '64veN7BA', '3250232'), + (92360, 1096, 435, 'not_attending', '2020-10-18 04:16:45', '2025-12-17 19:47:52', '64veN7BA', '3254790'), + (92361, 1096, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', '64veN7BA', '3256168'), + (92362, 1096, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', '64veN7BA', '3263578'), + (92363, 1096, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', '64veN7BA', '3266138'), + (92364, 1096, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '64veN7BA', '3276428'), + (92365, 1096, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', '64veN7BA', '3281467'), + (92366, 1096, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', '64veN7BA', '3281470'), + (92367, 1096, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', '64veN7BA', '3281829'), + (92368, 1096, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', '64veN7BA', '3285413'), + (92369, 1096, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', '64veN7BA', '3285414'), + (92370, 1096, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '64veN7BA', '3297764'), + (92371, 1096, 493, 'not_attending', '2020-11-30 22:20:08', '2025-12-17 19:47:54', '64veN7BA', '3313856'), + (92372, 1096, 496, 'not_attending', '2020-11-30 22:19:32', '2025-12-17 19:47:54', '64veN7BA', '3314269'), + (92373, 1096, 497, 'not_attending', '2020-12-02 21:00:00', '2025-12-17 19:47:55', '64veN7BA', '3314270'), + (92374, 1096, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '64veN7BA', '3314909'), + (92375, 1096, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '64veN7BA', '3314964'), + (92376, 1096, 502, 'not_attending', '2020-12-08 05:51:25', '2025-12-17 19:47:55', '64veN7BA', '3323365'), + (92377, 1096, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', '64veN7BA', '3329383'), + (92378, 1096, 518, 'not_attending', '2021-01-03 23:47:06', '2025-12-17 19:47:48', '64veN7BA', '3337138'), + (92379, 1096, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', '64veN7BA', '3351539'), + (92380, 1096, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', '64veN7BA', '3386848'), + (92381, 1096, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', '64veN7BA', '3389527'), + (92382, 1096, 542, 'not_attending', '2021-01-11 18:44:06', '2025-12-17 19:47:48', '64veN7BA', '3395013'), + (92383, 1096, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', '64veN7BA', '3396499'), + (92384, 1096, 548, 'not_attending', '2021-01-16 03:55:49', '2025-12-17 19:47:48', '64veN7BA', '3403650'), + (92385, 1096, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', '64veN7BA', '3406988'), + (92386, 1096, 555, 'not_attending', '2021-01-23 03:49:47', '2025-12-17 19:47:49', '64veN7BA', '3416576'), + (92387, 1096, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', '64veN7BA', '3418925'), + (92388, 1096, 568, 'not_attending', '2021-01-27 21:57:45', '2025-12-17 19:47:50', '64veN7BA', '3430267'), + (92389, 1096, 569, 'not_attending', '2021-01-27 21:57:27', '2025-12-17 19:47:49', '64veN7BA', '3432673'), + (92390, 1096, 576, 'not_attending', '2021-01-29 18:30:52', '2025-12-17 19:47:50', '64veN7BA', '3438748'), + (92391, 1096, 579, 'not_attending', '2021-01-29 18:30:59', '2025-12-17 19:47:50', '64veN7BA', '3440978'), + (92392, 1096, 591, 'not_attending', '2021-02-08 18:12:42', '2025-12-17 19:47:50', '64veN7BA', '3465880'), + (92393, 1096, 598, 'not_attending', '2021-02-08 18:12:19', '2025-12-17 19:47:50', '64veN7BA', '3468003'), + (92394, 1096, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', '64veN7BA', '3468125'), + (92395, 1096, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', '64veN7BA', '3470303'), + (92396, 1096, 603, 'not_attending', '2021-02-16 17:36:19', '2025-12-17 19:47:50', '64veN7BA', '3470304'), + (92397, 1096, 604, 'not_attending', '2021-02-26 09:09:58', '2025-12-17 19:47:50', '64veN7BA', '3470305'), + (92398, 1096, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '64veN7BA', '3470991'), + (92399, 1096, 621, 'not_attending', '2021-03-04 20:52:40', '2025-12-17 19:47:51', '64veN7BA', '3517815'), + (92400, 1096, 622, 'not_attending', '2021-03-09 18:44:25', '2025-12-17 19:47:51', '64veN7BA', '3517816'), + (92401, 1096, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '64veN7BA', '3523941'), + (92402, 1096, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '64veN7BA', '3533850'), + (92403, 1096, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '64veN7BA', '3536632'), + (92404, 1096, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '64veN7BA', '3536656'), + (92405, 1096, 641, 'not_attending', '2021-04-03 17:45:39', '2025-12-17 19:47:44', '64veN7BA', '3539916'), + (92406, 1096, 642, 'not_attending', '2021-04-03 17:45:44', '2025-12-17 19:47:44', '64veN7BA', '3539917'), + (92407, 1096, 643, 'not_attending', '2021-04-03 17:45:52', '2025-12-17 19:47:45', '64veN7BA', '3539918'), + (92408, 1096, 644, 'not_attending', '2021-04-14 02:18:16', '2025-12-17 19:47:46', '64veN7BA', '3539919'), + (92409, 1096, 645, 'not_attending', '2021-04-27 11:38:26', '2025-12-17 19:47:46', '64veN7BA', '3539920'), + (92410, 1096, 646, 'not_attending', '2021-05-15 14:12:48', '2025-12-17 19:47:46', '64veN7BA', '3539921'), + (92411, 1096, 647, 'not_attending', '2021-05-17 05:04:00', '2025-12-17 19:47:46', '64veN7BA', '3539922'), + (92412, 1096, 648, 'not_attending', '2021-05-22 19:07:59', '2025-12-17 19:47:47', '64veN7BA', '3539923'), + (92413, 1096, 649, 'not_attending', '2021-03-18 17:38:04', '2025-12-17 19:47:51', '64veN7BA', '3539927'), + (92414, 1096, 650, 'not_attending', '2021-03-18 17:37:56', '2025-12-17 19:47:44', '64veN7BA', '3539928'), + (92415, 1096, 651, 'not_attending', '2021-03-09 18:44:21', '2025-12-17 19:47:51', '64veN7BA', '3541045'), + (92416, 1096, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '64veN7BA', '3582734'), + (92417, 1096, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '64veN7BA', '3583262'), + (92418, 1096, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '64veN7BA', '3619523'), + (92419, 1096, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '64veN7BA', '3661369'), + (92420, 1096, 728, 'not_attending', '2021-04-03 17:46:03', '2025-12-17 19:47:44', '64veN7BA', '3668073'), + (92421, 1096, 729, 'not_attending', '2021-04-03 17:46:14', '2025-12-17 19:47:46', '64veN7BA', '3668075'), + (92422, 1096, 730, 'not_attending', '2021-04-27 11:38:20', '2025-12-17 19:47:46', '64veN7BA', '3668076'), + (92423, 1096, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '64veN7BA', '3674262'), + (92424, 1096, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '64veN7BA', '3677402'), + (92425, 1096, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '64veN7BA', '3730212'), + (92426, 1096, 777, 'not_attending', '2021-04-27 11:38:15', '2025-12-17 19:47:46', '64veN7BA', '3746248'), + (92427, 1096, 782, 'not_attending', '2021-05-01 03:36:25', '2025-12-17 19:47:46', '64veN7BA', '3761843'), + (92428, 1096, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '64veN7BA', '3793156'), + (92429, 1096, 815, 'not_attending', '2021-05-17 05:04:03', '2025-12-17 19:47:47', '64veN7BA', '3818136'), + (92430, 1096, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64veN7BA', '6045684'), + (92431, 1097, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'kdKVpzR4', '3149491'), + (92432, 1097, 395, 'not_attending', '2021-06-07 16:53:08', '2025-12-17 19:47:47', 'kdKVpzR4', '3236450'), + (92433, 1097, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdKVpzR4', '3975312'), + (92434, 1097, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdKVpzR4', '4014338'), + (92435, 1097, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdKVpzR4', '4136744'), + (92436, 1097, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKVpzR4', '6045684'), + (92437, 1098, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'myDE7GWd', '4637896'), + (92438, 1098, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'myDE7GWd', '4642994'), + (92439, 1098, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'myDE7GWd', '4642995'), + (92440, 1098, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'myDE7GWd', '4642996'), + (92441, 1098, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'myDE7GWd', '4642997'), + (92442, 1098, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'myDE7GWd', '4645687'), + (92443, 1098, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'myDE7GWd', '4645698'), + (92444, 1098, 1128, 'attending', '2021-11-20 17:15:27', '2025-12-17 19:47:37', 'myDE7GWd', '4645704'), + (92445, 1098, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'myDE7GWd', '4645705'), + (92446, 1098, 1130, 'attending', '2021-12-04 23:57:41', '2025-12-17 19:47:37', 'myDE7GWd', '4658824'), + (92447, 1098, 1131, 'attending', '2021-12-18 21:18:49', '2025-12-17 19:47:31', 'myDE7GWd', '4658825'), + (92448, 1098, 1132, 'attending', '2021-11-23 00:03:46', '2025-12-17 19:47:37', 'myDE7GWd', '4660657'), + (92449, 1098, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'myDE7GWd', '4668385'), + (92450, 1098, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'myDE7GWd', '4694407'), + (92451, 1098, 1153, 'attending', '2022-01-19 23:47:56', '2025-12-17 19:47:32', 'myDE7GWd', '4708707'), + (92452, 1098, 1167, 'attending', '2022-01-06 22:35:18', '2025-12-17 19:47:31', 'myDE7GWd', '4731015'), + (92453, 1098, 1173, 'attending', '2022-01-08 22:51:59', '2025-12-17 19:47:31', 'myDE7GWd', '4736495'), + (92454, 1098, 1175, 'attending', '2022-01-22 18:23:31', '2025-12-17 19:47:32', 'myDE7GWd', '4736497'), + (92455, 1098, 1178, 'attending', '2022-01-29 18:49:03', '2025-12-17 19:47:32', 'myDE7GWd', '4736500'), + (92456, 1098, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'myDE7GWd', '4746789'), + (92457, 1098, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'myDE7GWd', '4753929'), + (92458, 1098, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'myDE7GWd', '5038850'), + (92459, 1098, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'myDE7GWd', '6045684'), + (92460, 1099, 2142, 'not_attending', '2023-07-17 19:04:57', '2025-12-17 19:46:52', 'dKZ5lWY4', '6333850'), + (92461, 1099, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dKZ5lWY4', '6337970'), + (92462, 1099, 2159, 'not_attending', '2023-07-22 12:20:23', '2025-12-17 19:46:53', 'dKZ5lWY4', '6338355'), + (92463, 1099, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dKZ5lWY4', '6342044'), + (92464, 1099, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dKZ5lWY4', '6342298'), + (92465, 1099, 2172, 'attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dKZ5lWY4', '6342591'), + (92466, 1099, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dKZ5lWY4', '6343294'), + (92467, 1099, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dKZ5lWY4', '6347034'), + (92468, 1099, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dKZ5lWY4', '6347056'), + (92469, 1099, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dKZ5lWY4', '6353830'), + (92470, 1099, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dKZ5lWY4', '6353831'), + (92471, 1099, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dKZ5lWY4', '6357867'), + (92472, 1099, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dKZ5lWY4', '6358652'), + (92473, 1099, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dKZ5lWY4', '6361709'), + (92474, 1099, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dKZ5lWY4', '6361710'), + (92475, 1099, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dKZ5lWY4', '6361711'), + (92476, 1099, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dKZ5lWY4', '6361712'), + (92477, 1099, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dKZ5lWY4', '6361713'), + (92478, 1099, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dKZ5lWY4', '6382573'), + (92479, 1099, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dKZ5lWY4', '6388604'), + (92480, 1099, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dKZ5lWY4', '6394629'), + (92481, 1099, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dKZ5lWY4', '6394631'), + (92482, 1099, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dKZ5lWY4', '6440863'), + (92483, 1099, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dKZ5lWY4', '6445440'), + (92484, 1099, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dKZ5lWY4', '6453951'), + (92485, 1099, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dKZ5lWY4', '6461696'), + (92486, 1099, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dKZ5lWY4', '6462129'), + (92487, 1099, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dKZ5lWY4', '6463218'), + (92488, 1099, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'dKZ5lWY4', '6472181'), + (92489, 1099, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dKZ5lWY4', '6482693'), + (92490, 1099, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'dKZ5lWY4', '6484200'), + (92491, 1099, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', 'dKZ5lWY4', '6484680'), + (92492, 1099, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dKZ5lWY4', '6507741'), + (92493, 1099, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dKZ5lWY4', '6514659'), + (92494, 1099, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dKZ5lWY4', '6514660'), + (92495, 1099, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dKZ5lWY4', '6519103'), + (92496, 1099, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dKZ5lWY4', '6535681'), + (92497, 1099, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dKZ5lWY4', '6584747'), + (92498, 1099, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dKZ5lWY4', '6587097'), + (92499, 1099, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dKZ5lWY4', '6609022'), + (92500, 1099, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dKZ5lWY4', '6632757'), + (92501, 1099, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dKZ5lWY4', '6644187'), + (92502, 1099, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dKZ5lWY4', '6648951'), + (92503, 1099, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dKZ5lWY4', '6648952'), + (92504, 1099, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dKZ5lWY4', '6655401'), + (92505, 1099, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dKZ5lWY4', '6661585'), + (92506, 1099, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dKZ5lWY4', '6661588'), + (92507, 1099, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dKZ5lWY4', '6661589'), + (92508, 1099, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dKZ5lWY4', '6699906'), + (92509, 1099, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dKZ5lWY4', '6701109'), + (92510, 1099, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dKZ5lWY4', '6705219'), + (92511, 1099, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dKZ5lWY4', '6710153'), + (92512, 1099, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dKZ5lWY4', '6711552'), + (92513, 1099, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dKZ5lWY4', '6711553'), + (92514, 1100, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'GmjoW3aA', '3149491'), + (92515, 1100, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'GmjoW3aA', '3236450'), + (92516, 1100, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GmjoW3aA', '3974109'), + (92517, 1100, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GmjoW3aA', '3975311'), + (92518, 1100, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GmjoW3aA', '3975312'), + (92519, 1100, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GmjoW3aA', '3994992'), + (92520, 1100, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GmjoW3aA', '4014338'), + (92521, 1100, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GmjoW3aA', '4136744'), + (92522, 1100, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjoW3aA', '6045684'), + (92523, 1101, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'ArgyLXL4', '6045684'), + (92524, 1102, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Pm7XqnMA', '3236465'), + (92525, 1102, 642, 'attending', '2021-04-10 22:48:15', '2025-12-17 19:47:44', 'Pm7XqnMA', '3539917'), + (92526, 1102, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Pm7XqnMA', '3539918'), + (92527, 1102, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Pm7XqnMA', '3539919'), + (92528, 1102, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Pm7XqnMA', '3539920'), + (92529, 1102, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Pm7XqnMA', '3539921'), + (92530, 1102, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Pm7XqnMA', '3583262'), + (92531, 1102, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Pm7XqnMA', '3661369'), + (92532, 1102, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Pm7XqnMA', '3730212'), + (92533, 1102, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Pm7XqnMA', '3793156'), + (92534, 1102, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Pm7XqnMA', '3803310'), + (92535, 1102, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Pm7XqnMA', '3806392'), + (92536, 1102, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7XqnMA', '6045684'), + (92537, 1103, 408, 'attending', '2021-02-16 01:18:46', '2025-12-17 19:47:50', '8dB5vBw4', '3236466'), + (92538, 1103, 603, 'not_attending', '2021-02-21 00:37:18', '2025-12-17 19:47:50', '8dB5vBw4', '3470304'), + (92539, 1103, 604, 'attending', '2021-02-27 16:54:13', '2025-12-17 19:47:50', '8dB5vBw4', '3470305'), + (92540, 1103, 607, 'attending', '2021-02-18 22:15:10', '2025-12-17 19:47:50', '8dB5vBw4', '3471882'), + (92541, 1103, 621, 'not_attending', '2021-03-07 00:43:48', '2025-12-17 19:47:51', '8dB5vBw4', '3517815'), + (92542, 1103, 622, 'maybe', '2021-03-12 23:30:44', '2025-12-17 19:47:51', '8dB5vBw4', '3517816'), + (92543, 1103, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', '8dB5vBw4', '3523941'), + (92544, 1103, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '8dB5vBw4', '3533850'), + (92545, 1103, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '8dB5vBw4', '3536632'), + (92546, 1103, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8dB5vBw4', '3536656'), + (92547, 1103, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '8dB5vBw4', '3539916'), + (92548, 1103, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '8dB5vBw4', '3539917'), + (92549, 1103, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '8dB5vBw4', '3539918'), + (92550, 1103, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '8dB5vBw4', '3539919'), + (92551, 1103, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '8dB5vBw4', '3539920'), + (92552, 1103, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '8dB5vBw4', '3539921'), + (92553, 1103, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '8dB5vBw4', '3539922'), + (92554, 1103, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '8dB5vBw4', '3539923'), + (92555, 1103, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '8dB5vBw4', '3539927'), + (92556, 1103, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '8dB5vBw4', '3582734'), + (92557, 1103, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8dB5vBw4', '3583262'), + (92558, 1103, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '8dB5vBw4', '3619523'), + (92559, 1103, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8dB5vBw4', '3661369'), + (92560, 1103, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8dB5vBw4', '3674262'), + (92561, 1103, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8dB5vBw4', '3677402'), + (92562, 1103, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '8dB5vBw4', '3730212'), + (92563, 1103, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8dB5vBw4', '6045684'), + (92564, 1104, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'o4PX3ww4', '7074364'), + (92565, 1104, 2661, 'not_attending', '2024-06-16 14:15:12', '2025-12-17 19:46:28', 'o4PX3ww4', '7302674'), + (92566, 1104, 2678, 'maybe', '2024-06-14 20:25:32', '2025-12-17 19:46:28', 'o4PX3ww4', '7319489'), + (92567, 1104, 2679, 'not_attending', '2024-06-14 20:25:28', '2025-12-17 19:46:29', 'o4PX3ww4', '7319490'), + (92568, 1104, 2685, 'attending', '2024-06-12 21:55:26', '2025-12-17 19:46:28', 'o4PX3ww4', '7322675'), + (92569, 1104, 2686, 'maybe', '2024-06-11 13:37:36', '2025-12-17 19:46:29', 'o4PX3ww4', '7323802'), + (92570, 1104, 2688, 'attending', '2024-06-14 20:25:24', '2025-12-17 19:46:29', 'o4PX3ww4', '7324073'), + (92571, 1104, 2689, 'attending', '2024-06-23 23:10:12', '2025-12-17 19:46:29', 'o4PX3ww4', '7324074'), + (92572, 1104, 2690, 'attending', '2024-07-03 22:28:39', '2025-12-17 19:46:30', 'o4PX3ww4', '7324075'), + (92573, 1104, 2691, 'attending', '2024-07-03 22:28:41', '2025-12-17 19:46:30', 'o4PX3ww4', '7324076'), + (92574, 1104, 2692, 'not_attending', '2024-07-25 20:06:23', '2025-12-17 19:46:30', 'o4PX3ww4', '7324077'), + (92575, 1104, 2693, 'maybe', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'o4PX3ww4', '7324078'), + (92576, 1104, 2694, 'attending', '2024-08-09 22:32:56', '2025-12-17 19:46:31', 'o4PX3ww4', '7324079'), + (92577, 1104, 2696, 'attending', '2024-08-24 22:40:45', '2025-12-17 19:46:32', 'o4PX3ww4', '7324081'), + (92578, 1104, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'o4PX3ww4', '7324082'), + (92579, 1104, 2700, 'attending', '2024-06-14 22:39:52', '2025-12-17 19:46:28', 'o4PX3ww4', '7324388'), + (92580, 1104, 2710, 'maybe', '2024-06-14 20:25:07', '2025-12-17 19:46:28', 'o4PX3ww4', '7325108'), + (92581, 1104, 2717, 'attending', '2024-06-27 18:45:58', '2025-12-17 19:46:29', 'o4PX3ww4', '7329149'), + (92582, 1104, 2720, 'not_attending', '2024-06-18 20:49:46', '2025-12-17 19:46:28', 'o4PX3ww4', '7331436'), + (92583, 1104, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'o4PX3ww4', '7331457'), + (92584, 1104, 2747, 'maybe', '2024-07-17 20:47:15', '2025-12-17 19:46:30', 'o4PX3ww4', '7353587'), + (92585, 1104, 2755, 'attending', '2024-07-09 21:02:32', '2025-12-17 19:46:29', 'o4PX3ww4', '7357808'), + (92586, 1104, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'o4PX3ww4', '7363643'), + (92587, 1104, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'o4PX3ww4', '7368606'), + (92588, 1104, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'o4PX3ww4', '7397462'), + (92589, 1104, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'o4PX3ww4', '7424275'), + (92590, 1104, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'o4PX3ww4', '7432751'), + (92591, 1104, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'o4PX3ww4', '7432752'), + (92592, 1104, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'o4PX3ww4', '7432753'), + (92593, 1104, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'o4PX3ww4', '7432754'), + (92594, 1104, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'o4PX3ww4', '7432755'), + (92595, 1104, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'o4PX3ww4', '7432756'), + (92596, 1104, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'o4PX3ww4', '7432758'), + (92597, 1104, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'o4PX3ww4', '7432759'), + (92598, 1104, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'o4PX3ww4', '7433834'), + (92599, 1104, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'o4PX3ww4', '7470197'), + (92600, 1104, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'o4PX3ww4', '7685613'), + (92601, 1104, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'o4PX3ww4', '7688194'), + (92602, 1104, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'o4PX3ww4', '7688196'), + (92603, 1104, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'o4PX3ww4', '7688289'), + (92604, 1104, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'o4PX3ww4', '7692763'), + (92605, 1104, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'o4PX3ww4', '7697552'), + (92606, 1104, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'o4PX3ww4', '7699878'), + (92607, 1104, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', 'o4PX3ww4', '7704043'), + (92608, 1104, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'o4PX3ww4', '7712467'), + (92609, 1104, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'o4PX3ww4', '7713585'), + (92610, 1104, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'o4PX3ww4', '7713586'), + (92611, 1104, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'o4PX3ww4', '7738518'), + (92612, 1104, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'o4PX3ww4', '7750636'), + (92613, 1104, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'o4PX3ww4', '7796540'), + (92614, 1104, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'o4PX3ww4', '7796541'), + (92615, 1104, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'o4PX3ww4', '7796542'), + (92616, 1104, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'o4PX3ww4', '7825913'), + (92617, 1104, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'o4PX3ww4', '7826209'), + (92618, 1104, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'o4PX3ww4', '7834742'), + (92619, 1104, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'o4PX3ww4', '7842108'), + (92620, 1104, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'o4PX3ww4', '7842902'), + (92621, 1104, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'o4PX3ww4', '7842903'), + (92622, 1104, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'o4PX3ww4', '7842904'), + (92623, 1104, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'o4PX3ww4', '7842905'), + (92624, 1104, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'o4PX3ww4', '7855719'), + (92625, 1104, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'o4PX3ww4', '7860683'), + (92626, 1104, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'o4PX3ww4', '7860684'), + (92627, 1104, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'o4PX3ww4', '7866095'), + (92628, 1104, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'o4PX3ww4', '7869170'), + (92629, 1104, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'o4PX3ww4', '7869188'), + (92630, 1104, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'o4PX3ww4', '7869201'), + (92631, 1104, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'o4PX3ww4', '7877465'), + (92632, 1104, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'o4PX3ww4', '7888250'), + (92633, 1104, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'o4PX3ww4', '7904777'), + (92634, 1104, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'o4PX3ww4', '8349164'), + (92635, 1104, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'o4PX3ww4', '8349545'), + (92636, 1104, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'o4PX3ww4', '8368028'), + (92637, 1104, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'o4PX3ww4', '8368029'), + (92638, 1104, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'o4PX3ww4', '8388462'), + (92639, 1104, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'o4PX3ww4', '8400273'), + (92640, 1104, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'o4PX3ww4', '8400275'), + (92641, 1104, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'o4PX3ww4', '8400276'), + (92642, 1104, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'o4PX3ww4', '8404977'), + (92643, 1104, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'o4PX3ww4', '8430783'), + (92644, 1104, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'o4PX3ww4', '8430784'), + (92645, 1104, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'o4PX3ww4', '8430799'), + (92646, 1104, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'o4PX3ww4', '8430800'), + (92647, 1104, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'o4PX3ww4', '8430801'), + (92648, 1104, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'o4PX3ww4', '8438709'), + (92649, 1104, 3193, 'maybe', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'o4PX3ww4', '8457738'), + (92650, 1104, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'o4PX3ww4', '8459566'), + (92651, 1104, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'o4PX3ww4', '8459567'), + (92652, 1104, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'o4PX3ww4', '8461032'), + (92653, 1104, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'o4PX3ww4', '8477877'), + (92654, 1104, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'o4PX3ww4', '8485688'), + (92655, 1104, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'o4PX3ww4', '8490587'), + (92656, 1104, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'o4PX3ww4', '8493552'), + (92657, 1104, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'o4PX3ww4', '8493553'), + (92658, 1104, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'o4PX3ww4', '8493554'), + (92659, 1104, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'o4PX3ww4', '8493555'), + (92660, 1104, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'o4PX3ww4', '8493556'), + (92661, 1104, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'o4PX3ww4', '8493557'), + (92662, 1104, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'o4PX3ww4', '8493558'), + (92663, 1104, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'o4PX3ww4', '8493559'), + (92664, 1104, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'o4PX3ww4', '8493560'), + (92665, 1104, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'o4PX3ww4', '8493561'), + (92666, 1104, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'o4PX3ww4', '8493572'), + (92667, 1104, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'o4PX3ww4', '8540725'), + (92668, 1104, 3307, 'attending', '2025-12-20 01:43:37', '2025-12-20 01:43:38', NULL, NULL), + (92669, 1104, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'o4PX3ww4', '8555421'), + (92670, 1104, 3346, 'attending', '2026-01-01 04:00:22', '2026-01-01 04:00:22', NULL, NULL), + (92671, 1105, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'm7GvVXem', '5880943'), + (92672, 1105, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'm7GvVXem', '5900202'), + (92673, 1105, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'm7GvVXem', '5900203'), + (92674, 1105, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'm7GvVXem', '5910528'), + (92675, 1105, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'm7GvVXem', '5962317'), + (92676, 1105, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'm7GvVXem', '5962318'), + (92677, 1105, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'm7GvVXem', '5965933'), + (92678, 1105, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'm7GvVXem', '5972815'), + (92679, 1105, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'm7GvVXem', '5974016'), + (92680, 1105, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'm7GvVXem', '5981515'), + (92681, 1105, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'm7GvVXem', '5993516'), + (92682, 1105, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'm7GvVXem', '5998939'), + (92683, 1105, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'm7GvVXem', '6028191'), + (92684, 1105, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'm7GvVXem', '6040066'), + (92685, 1105, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'm7GvVXem', '6042717'), + (92686, 1105, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'm7GvVXem', '6044838'), + (92687, 1105, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'm7GvVXem', '6044839'), + (92688, 1105, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'm7GvVXem', '6045684'), + (92689, 1105, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'm7GvVXem', '6048955'), + (92690, 1105, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'm7GvVXem', '6050104'), + (92691, 1105, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'm7GvVXem', '6053195'), + (92692, 1105, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'm7GvVXem', '6053198'), + (92693, 1105, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'm7GvVXem', '6056085'), + (92694, 1105, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'm7GvVXem', '6056916'), + (92695, 1105, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'm7GvVXem', '6059290'), + (92696, 1105, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'm7GvVXem', '6060328'), + (92697, 1105, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'm7GvVXem', '6061037'), + (92698, 1105, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'm7GvVXem', '6061039'), + (92699, 1105, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'm7GvVXem', '6067245'), + (92700, 1105, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'm7GvVXem', '6068094'), + (92701, 1105, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'm7GvVXem', '6068252'), + (92702, 1105, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'm7GvVXem', '6068253'), + (92703, 1105, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'm7GvVXem', '6068254'), + (92704, 1105, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'm7GvVXem', '6068280'), + (92705, 1105, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'm7GvVXem', '6069093'), + (92706, 1105, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'm7GvVXem', '6072528'), + (92707, 1105, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'm7GvVXem', '6079840'), + (92708, 1105, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'm7GvVXem', '6083398'), + (92709, 1105, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'm7GvVXem', '6093504'), + (92710, 1105, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'm7GvVXem', '6097414'), + (92711, 1105, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'm7GvVXem', '6097442'), + (92712, 1105, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'm7GvVXem', '6097684'), + (92713, 1105, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'm7GvVXem', '6098762'), + (92714, 1105, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'm7GvVXem', '6101362'), + (92715, 1105, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'm7GvVXem', '6107314'), + (92716, 1105, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'm7GvVXem', '6120034'), + (92717, 1106, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dxM7BL2m', '6337236'), + (92718, 1106, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dxM7BL2m', '6337970'), + (92719, 1106, 2163, 'not_attending', '2023-07-16 20:18:47', '2025-12-17 19:46:52', 'dxM7BL2m', '6341710'), + (92720, 1106, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dxM7BL2m', '6342044'), + (92721, 1106, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dxM7BL2m', '6342298'), + (92722, 1106, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'dxM7BL2m', '6342591'), + (92723, 1106, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'dxM7BL2m', '6343294'), + (92724, 1106, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dxM7BL2m', '6347034'), + (92725, 1106, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dxM7BL2m', '6347056'), + (92726, 1106, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dxM7BL2m', '6353830'), + (92727, 1106, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dxM7BL2m', '6353831'), + (92728, 1106, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dxM7BL2m', '6357867'), + (92729, 1106, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dxM7BL2m', '6358652'), + (92730, 1106, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dxM7BL2m', '6361709'), + (92731, 1106, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dxM7BL2m', '6361710'), + (92732, 1106, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dxM7BL2m', '6361711'), + (92733, 1106, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dxM7BL2m', '6361712'), + (92734, 1106, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dxM7BL2m', '6361713'), + (92735, 1106, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dxM7BL2m', '6382573'), + (92736, 1106, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'dxM7BL2m', '6388604'), + (92737, 1106, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dxM7BL2m', '6394629'), + (92738, 1106, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dxM7BL2m', '6394631'), + (92739, 1106, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'dxM7BL2m', '6431478'), + (92740, 1107, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4PPQNEG4', '6045684'), + (92741, 1108, 221, 'attending', '2020-09-17 03:29:27', '2025-12-17 19:47:56', 'VdxRqJDA', '3129265'), + (92742, 1108, 311, 'maybe', '2020-09-18 21:01:18', '2025-12-17 19:47:56', 'VdxRqJDA', '3186057'), + (92743, 1108, 340, 'attending', '2020-09-18 21:01:25', '2025-12-17 19:47:56', 'VdxRqJDA', '3204470'), + (92744, 1108, 345, 'not_attending', '2020-09-19 19:39:29', '2025-12-17 19:47:56', 'VdxRqJDA', '3207423'), + (92745, 1108, 362, 'attending', '2020-09-18 02:59:39', '2025-12-17 19:47:52', 'VdxRqJDA', '3214207'), + (92746, 1108, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'VdxRqJDA', '3217037'), + (92747, 1108, 365, 'maybe', '2020-09-18 21:01:03', '2025-12-17 19:47:51', 'VdxRqJDA', '3218510'), + (92748, 1108, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'VdxRqJDA', '3228698'), + (92749, 1108, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'VdxRqJDA', '3228699'), + (92750, 1108, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'VdxRqJDA', '3228700'), + (92751, 1108, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'VdxRqJDA', '3228701'), + (92752, 1108, 399, 'not_attending', '2020-11-13 00:48:28', '2025-12-17 19:47:54', 'VdxRqJDA', '3236454'), + (92753, 1108, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'VdxRqJDA', '3245751'), + (92754, 1108, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'VdxRqJDA', '3250232'), + (92755, 1108, 440, 'not_attending', '2020-11-07 07:17:41', '2025-12-17 19:47:53', 'VdxRqJDA', '3256168'), + (92756, 1108, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'VdxRqJDA', '3263578'), + (92757, 1108, 445, 'attending', '2020-11-13 00:48:35', '2025-12-17 19:47:54', 'VdxRqJDA', '3266138'), + (92758, 1108, 449, 'not_attending', '2020-11-08 21:48:01', '2025-12-17 19:47:53', 'VdxRqJDA', '3272055'), + (92759, 1108, 456, 'maybe', '2020-11-17 00:45:38', '2025-12-17 19:47:54', 'VdxRqJDA', '3276428'), + (92760, 1108, 459, 'not_attending', '2020-11-16 22:30:24', '2025-12-17 19:47:54', 'VdxRqJDA', '3281467'), + (92761, 1108, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'VdxRqJDA', '3281470'), + (92762, 1108, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'VdxRqJDA', '3281829'), + (92763, 1108, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'VdxRqJDA', '3285413'), + (92764, 1108, 469, 'not_attending', '2020-11-28 23:21:57', '2025-12-17 19:47:54', 'VdxRqJDA', '3285414'), + (92765, 1108, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'VdxRqJDA', '3297764'), + (92766, 1108, 492, 'not_attending', '2020-12-06 22:39:14', '2025-12-17 19:47:54', 'VdxRqJDA', '3313731'), + (92767, 1108, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'VdxRqJDA', '3313856'), + (92768, 1108, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'VdxRqJDA', '3314909'), + (92769, 1108, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'VdxRqJDA', '3314964'), + (92770, 1108, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'VdxRqJDA', '3323365'), + (92771, 1108, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'VdxRqJDA', '3329383'), + (92772, 1108, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'VdxRqJDA', '3351539'), + (92773, 1108, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'VdxRqJDA', '3386848'), + (92774, 1108, 538, 'maybe', '2021-01-14 17:28:19', '2025-12-17 19:47:48', 'VdxRqJDA', '3388151'), + (92775, 1108, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'VdxRqJDA', '3389527'), + (92776, 1108, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'VdxRqJDA', '3396499'), + (92777, 1108, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'VdxRqJDA', '3403650'), + (92778, 1108, 549, 'maybe', '2021-01-18 18:03:25', '2025-12-17 19:47:49', 'VdxRqJDA', '3406988'), + (92779, 1108, 555, 'maybe', '2021-01-19 04:09:07', '2025-12-17 19:47:49', 'VdxRqJDA', '3416576'), + (92780, 1108, 558, 'not_attending', '2021-01-23 00:41:44', '2025-12-17 19:47:49', 'VdxRqJDA', '3418925'), + (92781, 1108, 560, 'not_attending', '2021-01-22 01:19:56', '2025-12-17 19:47:49', 'VdxRqJDA', '3421715'), + (92782, 1108, 568, 'not_attending', '2021-01-27 21:51:26', '2025-12-17 19:47:50', 'VdxRqJDA', '3430267'), + (92783, 1108, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'VdxRqJDA', '3432673'), + (92784, 1108, 600, 'not_attending', '2021-02-06 03:29:12', '2025-12-17 19:47:50', 'VdxRqJDA', '3468125'), + (92785, 1108, 602, 'not_attending', '2021-02-09 17:10:00', '2025-12-17 19:47:50', 'VdxRqJDA', '3470303'), + (92786, 1108, 604, 'not_attending', '2021-02-23 21:19:14', '2025-12-17 19:47:50', 'VdxRqJDA', '3470305'), + (92787, 1108, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'VdxRqJDA', '3470991'), + (92788, 1108, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', 'VdxRqJDA', '3517815'), + (92789, 1108, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', 'VdxRqJDA', '3517816'), + (92790, 1108, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'VdxRqJDA', '3523941'), + (92791, 1108, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'VdxRqJDA', '3533850'), + (92792, 1108, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'VdxRqJDA', '3536632'), + (92793, 1108, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'VdxRqJDA', '3536656'), + (92794, 1108, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', 'VdxRqJDA', '3539916'), + (92795, 1108, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'VdxRqJDA', '3539917'), + (92796, 1108, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'VdxRqJDA', '3539918'), + (92797, 1108, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'VdxRqJDA', '3539919'), + (92798, 1108, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'VdxRqJDA', '3539920'), + (92799, 1108, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'VdxRqJDA', '3539921'), + (92800, 1108, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'VdxRqJDA', '3539922'), + (92801, 1108, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'VdxRqJDA', '3539923'), + (92802, 1108, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'VdxRqJDA', '3539927'), + (92803, 1108, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'VdxRqJDA', '3582734'), + (92804, 1108, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'VdxRqJDA', '3583262'), + (92805, 1108, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'VdxRqJDA', '3619523'), + (92806, 1108, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'VdxRqJDA', '3661369'), + (92807, 1108, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'VdxRqJDA', '3674262'), + (92808, 1108, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'VdxRqJDA', '3677402'), + (92809, 1108, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'VdxRqJDA', '3730212'), + (92810, 1108, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'VdxRqJDA', '6045684'), + (92811, 1109, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'kdK0MoRm', '3539921'), + (92812, 1109, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'kdK0MoRm', '3539922'), + (92813, 1109, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'kdK0MoRm', '3539923'), + (92814, 1109, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'kdK0MoRm', '3974109'), + (92815, 1109, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'kdK0MoRm', '3975311'), + (92816, 1109, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'kdK0MoRm', '3975312'), + (92817, 1109, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'kdK0MoRm', '3994992'), + (92818, 1109, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'kdK0MoRm', '4014338'), + (92819, 1109, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'kdK0MoRm', '4021848'), + (92820, 1109, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'kdK0MoRm', '4136744'), + (92821, 1109, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'kdK0MoRm', '4136937'), + (92822, 1109, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'kdK0MoRm', '4136938'), + (92823, 1109, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'kdK0MoRm', '4136947'), + (92824, 1109, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'kdK0MoRm', '4210314'), + (92825, 1109, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'kdK0MoRm', '4225444'), + (92826, 1109, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'kdK0MoRm', '4239259'), + (92827, 1109, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'kdK0MoRm', '4240316'), + (92828, 1109, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'kdK0MoRm', '4240317'), + (92829, 1109, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'kdK0MoRm', '4240318'), + (92830, 1109, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'kdK0MoRm', '4240320'), + (92831, 1109, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'kdK0MoRm', '4250163'), + (92832, 1109, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'kdK0MoRm', '4275957'), + (92833, 1109, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'kdK0MoRm', '4277819'), + (92834, 1109, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'kdK0MoRm', '4301723'), + (92835, 1109, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'kdK0MoRm', '4302093'), + (92836, 1109, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'kdK0MoRm', '4304151'), + (92837, 1109, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'kdK0MoRm', '4356801'), + (92838, 1109, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'kdK0MoRm', '4366186'), + (92839, 1109, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'kdK0MoRm', '4366187'), + (92840, 1109, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'kdK0MoRm', '4420735'), + (92841, 1109, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'kdK0MoRm', '4420738'), + (92842, 1109, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'kdK0MoRm', '4420739'), + (92843, 1109, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'kdK0MoRm', '4420741'), + (92844, 1109, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'kdK0MoRm', '4420744'), + (92845, 1109, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'kdK0MoRm', '4420747'), + (92846, 1109, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'kdK0MoRm', '4420748'), + (92847, 1109, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'kdK0MoRm', '4420749'), + (92848, 1109, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'kdK0MoRm', '4461883'), + (92849, 1109, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdK0MoRm', '4508342'), + (92850, 1109, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdK0MoRm', '4568602'), + (92851, 1109, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdK0MoRm', '4572153'), + (92852, 1109, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdK0MoRm', '4585962'), + (92853, 1109, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdK0MoRm', '4596356'), + (92854, 1109, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdK0MoRm', '4598860'), + (92855, 1109, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdK0MoRm', '4598861'), + (92856, 1109, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdK0MoRm', '4602797'), + (92857, 1109, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdK0MoRm', '4637896'), + (92858, 1109, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdK0MoRm', '4642994'), + (92859, 1109, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdK0MoRm', '4642995'), + (92860, 1109, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdK0MoRm', '4642996'), + (92861, 1109, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdK0MoRm', '4642997'), + (92862, 1109, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdK0MoRm', '4645687'), + (92863, 1109, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdK0MoRm', '4645698'), + (92864, 1109, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdK0MoRm', '4645704'), + (92865, 1109, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdK0MoRm', '4645705'), + (92866, 1109, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdK0MoRm', '4668385'), + (92867, 1109, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdK0MoRm', '4694407'), + (92868, 1109, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'kdK0MoRm', '4706262'), + (92869, 1109, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdK0MoRm', '4736497'), + (92870, 1109, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdK0MoRm', '4736499'), + (92871, 1109, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdK0MoRm', '4736500'), + (92872, 1109, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdK0MoRm', '4736503'), + (92873, 1109, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdK0MoRm', '4736504'), + (92874, 1109, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdK0MoRm', '4746789'), + (92875, 1109, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'kdK0MoRm', '4753929'), + (92876, 1109, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdK0MoRm', '5038850'), + (92877, 1109, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdK0MoRm', '5045826'), + (92878, 1109, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdK0MoRm', '5132533'), + (92879, 1109, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdK0MoRm', '5186582'), + (92880, 1109, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdK0MoRm', '5186583'), + (92881, 1109, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdK0MoRm', '5186585'), + (92882, 1109, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdK0MoRm', '5190437'), + (92883, 1109, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdK0MoRm', '5195095'), + (92884, 1109, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdK0MoRm', '5215989'), + (92885, 1109, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdK0MoRm', '5223686'), + (92886, 1109, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'kdK0MoRm', '5227432'), + (92887, 1109, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdK0MoRm', '5247467'), + (92888, 1109, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdK0MoRm', '5260800'), + (92889, 1109, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdK0MoRm', '5269930'), + (92890, 1109, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdK0MoRm', '5271448'), + (92891, 1109, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'kdK0MoRm', '5271449'), + (92892, 1109, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'kdK0MoRm', '5276469'), + (92893, 1109, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdK0MoRm', '5278159'), + (92894, 1109, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdK0MoRm', '5363695'), + (92895, 1109, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdK0MoRm', '5365960'), + (92896, 1109, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'kdK0MoRm', '5368973'), + (92897, 1109, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdK0MoRm', '5378247'), + (92898, 1109, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'kdK0MoRm', '5389605'), + (92899, 1109, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdK0MoRm', '5397265'), + (92900, 1109, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'kdK0MoRm', '5403967'), + (92901, 1109, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdK0MoRm', '5404786'), + (92902, 1109, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdK0MoRm', '5405203'), + (92903, 1109, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'kdK0MoRm', '5411699'), + (92904, 1109, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdK0MoRm', '5412550'), + (92905, 1109, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdK0MoRm', '5415046'), + (92906, 1109, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdK0MoRm', '5422086'), + (92907, 1109, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdK0MoRm', '5422406'), + (92908, 1109, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdK0MoRm', '5424565'), + (92909, 1109, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdK0MoRm', '5426882'), + (92910, 1109, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'kdK0MoRm', '5427083'), + (92911, 1109, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdK0MoRm', '5441125'), + (92912, 1109, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdK0MoRm', '5441126'), + (92913, 1109, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdK0MoRm', '5441128'), + (92914, 1109, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdK0MoRm', '5441131'), + (92915, 1109, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdK0MoRm', '5441132'), + (92916, 1109, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'kdK0MoRm', '5446643'), + (92917, 1109, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdK0MoRm', '5453325'), + (92918, 1109, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdK0MoRm', '5454516'), + (92919, 1109, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdK0MoRm', '5454605'), + (92920, 1109, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdK0MoRm', '5455037'), + (92921, 1109, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdK0MoRm', '5461278'), + (92922, 1109, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdK0MoRm', '5469480'), + (92923, 1109, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'kdK0MoRm', '5471073'), + (92924, 1109, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdK0MoRm', '5474663'), + (92925, 1109, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdK0MoRm', '5482022'), + (92926, 1109, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'kdK0MoRm', '5482793'), + (92927, 1109, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdK0MoRm', '5488912'), + (92928, 1109, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdK0MoRm', '5492192'), + (92929, 1109, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdK0MoRm', '5493139'), + (92930, 1109, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdK0MoRm', '5493200'), + (92931, 1109, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdK0MoRm', '5502188'), + (92932, 1109, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdK0MoRm', '5505059'), + (92933, 1109, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdK0MoRm', '5509055'), + (92934, 1109, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdK0MoRm', '5512862'), + (92935, 1109, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdK0MoRm', '5513985'), + (92936, 1109, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'kdK0MoRm', '5519981'), + (92937, 1109, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdK0MoRm', '5522550'), + (92938, 1109, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdK0MoRm', '5534683'), + (92939, 1109, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdK0MoRm', '5537735'), + (92940, 1109, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdK0MoRm', '5540859'), + (92941, 1109, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdK0MoRm', '5546619'), + (92942, 1109, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'kdK0MoRm', '5555245'), + (92943, 1109, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdK0MoRm', '5557747'), + (92944, 1109, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdK0MoRm', '5560255'), + (92945, 1109, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdK0MoRm', '5562906'), + (92946, 1109, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdK0MoRm', '5600604'), + (92947, 1109, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdK0MoRm', '5605544'), + (92948, 1109, 1699, 'not_attending', '2022-09-26 12:15:41', '2025-12-17 19:47:12', 'kdK0MoRm', '5606737'), + (92949, 1109, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdK0MoRm', '5630960'), + (92950, 1109, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdK0MoRm', '5630961'), + (92951, 1109, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdK0MoRm', '5630962'), + (92952, 1109, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdK0MoRm', '5630966'), + (92953, 1109, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdK0MoRm', '5630967'), + (92954, 1109, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdK0MoRm', '5630968'), + (92955, 1109, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdK0MoRm', '5635406'), + (92956, 1109, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdK0MoRm', '5638765'), + (92957, 1109, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdK0MoRm', '5640097'), + (92958, 1109, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdK0MoRm', '5640843'), + (92959, 1109, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdK0MoRm', '5641521'), + (92960, 1109, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdK0MoRm', '5642818'), + (92961, 1109, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdK0MoRm', '5652395'), + (92962, 1109, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdK0MoRm', '5670445'), + (92963, 1109, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdK0MoRm', '5671637'), + (92964, 1109, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdK0MoRm', '5672329'), + (92965, 1109, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdK0MoRm', '5674057'), + (92966, 1109, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdK0MoRm', '5674060'), + (92967, 1109, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdK0MoRm', '5677461'), + (92968, 1109, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdK0MoRm', '5698046'), + (92969, 1109, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdK0MoRm', '5699760'), + (92970, 1109, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdK0MoRm', '5741601'), + (92971, 1109, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdK0MoRm', '5763458'), + (92972, 1109, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdK0MoRm', '5774172'), + (92973, 1109, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'kdK0MoRm', '5818247'), + (92974, 1109, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdK0MoRm', '5819471'), + (92975, 1109, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'kdK0MoRm', '5827739'), + (92976, 1109, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdK0MoRm', '5844306'), + (92977, 1109, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdK0MoRm', '5850159'), + (92978, 1109, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdK0MoRm', '5858999'), + (92979, 1109, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdK0MoRm', '5871984'), + (92980, 1109, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdK0MoRm', '5876354'), + (92981, 1109, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdK0MoRm', '5880939'), + (92982, 1109, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdK0MoRm', '5880940'), + (92983, 1109, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdK0MoRm', '5880942'), + (92984, 1109, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdK0MoRm', '5880943'), + (92985, 1109, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdK0MoRm', '5887890'), + (92986, 1109, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdK0MoRm', '5888598'), + (92987, 1109, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdK0MoRm', '5893260'), + (92988, 1109, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdK0MoRm', '5899826'), + (92989, 1109, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdK0MoRm', '5900199'), + (92990, 1109, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdK0MoRm', '5900200'), + (92991, 1109, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdK0MoRm', '5900202'), + (92992, 1109, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdK0MoRm', '5900203'), + (92993, 1109, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdK0MoRm', '5901108'), + (92994, 1109, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdK0MoRm', '5901126'), + (92995, 1109, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdK0MoRm', '5909655'), + (92996, 1109, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdK0MoRm', '5910522'), + (92997, 1109, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdK0MoRm', '5910526'), + (92998, 1109, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdK0MoRm', '5910528'), + (92999, 1109, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdK0MoRm', '5916219'), + (93000, 1109, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdK0MoRm', '5936234'), + (93001, 1109, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdK0MoRm', '5958351'), + (93002, 1109, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdK0MoRm', '5959751'), + (93003, 1109, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdK0MoRm', '5959755'), + (93004, 1109, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdK0MoRm', '5960055'), + (93005, 1109, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdK0MoRm', '5961684'), + (93006, 1109, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdK0MoRm', '5962132'), + (93007, 1109, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdK0MoRm', '5962133'), + (93008, 1109, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdK0MoRm', '5962134'), + (93009, 1109, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdK0MoRm', '5962317'), + (93010, 1109, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdK0MoRm', '5962318'), + (93011, 1109, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdK0MoRm', '5965933'), + (93012, 1109, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdK0MoRm', '5967014'), + (93013, 1109, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdK0MoRm', '5972815'), + (93014, 1109, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdK0MoRm', '5974016'), + (93015, 1109, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'kdK0MoRm', '5975052'), + (93016, 1109, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'kdK0MoRm', '5975054'), + (93017, 1109, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdK0MoRm', '5981515'), + (93018, 1109, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdK0MoRm', '5993516'), + (93019, 1109, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdK0MoRm', '5998939'), + (93020, 1109, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdK0MoRm', '6028191'), + (93021, 1109, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdK0MoRm', '6045684'), + (93022, 1111, 1315, 'attending', '2022-04-21 19:32:53', '2025-12-17 19:47:27', 'AeVQQNX4', '5237522'), + (93023, 1111, 1319, 'attending', '2022-04-19 19:28:43', '2025-12-17 19:47:27', 'AeVQQNX4', '5238353'), + (93024, 1111, 1320, 'attending', '2022-04-24 23:27:19', '2025-12-17 19:47:27', 'AeVQQNX4', '5238354'), + (93025, 1111, 1322, 'attending', '2022-04-19 19:38:49', '2025-12-17 19:47:27', 'AeVQQNX4', '5238356'), + (93026, 1111, 1327, 'not_attending', '2022-04-19 19:53:57', '2025-12-17 19:47:27', 'AeVQQNX4', '5238445'), + (93027, 1111, 1331, 'attending', '2022-04-19 19:37:40', '2025-12-17 19:47:27', 'AeVQQNX4', '5242156'), + (93028, 1111, 1336, 'attending', '2022-04-19 19:36:27', '2025-12-17 19:47:27', 'AeVQQNX4', '5244915'), + (93029, 1111, 1337, 'attending', '2022-04-20 01:59:52', '2025-12-17 19:47:27', 'AeVQQNX4', '5245036'), + (93030, 1111, 1346, 'maybe', '2022-04-23 20:52:34', '2025-12-17 19:47:27', 'AeVQQNX4', '5247467'), + (93031, 1111, 1350, 'attending', '2022-04-19 19:15:11', '2025-12-17 19:47:27', 'AeVQQNX4', '5249763'), + (93032, 1111, 1357, 'attending', '2022-04-24 18:07:12', '2025-12-17 19:47:27', 'AeVQQNX4', '5256017'), + (93033, 1111, 1362, 'attending', '2022-04-29 06:42:01', '2025-12-17 19:47:28', 'AeVQQNX4', '5260800'), + (93034, 1111, 1363, 'attending', '2022-04-26 04:10:08', '2025-12-17 19:47:28', 'AeVQQNX4', '5261577'), + (93035, 1111, 1364, 'attending', '2022-04-26 04:09:39', '2025-12-17 19:47:28', 'AeVQQNX4', '5261598'), + (93036, 1111, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AeVQQNX4', '6045684'), + (93037, 1112, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40R7wQm', '3974109'), + (93038, 1112, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'R40R7wQm', '3975311'), + (93039, 1112, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40R7wQm', '3975312'), + (93040, 1112, 838, 'attending', '2021-06-06 20:26:25', '2025-12-17 19:47:47', 'R40R7wQm', '3994992'), + (93041, 1112, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40R7wQm', '4014338'), + (93042, 1112, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'R40R7wQm', '4021848'), + (93043, 1112, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40R7wQm', '4136744'), + (93044, 1112, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40R7wQm', '4136937'), + (93045, 1112, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40R7wQm', '4136938'), + (93046, 1112, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40R7wQm', '4136947'), + (93047, 1112, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40R7wQm', '4225444'), + (93048, 1112, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40R7wQm', '4239259'), + (93049, 1112, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40R7wQm', '4250163'), + (93050, 1112, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40R7wQm', '6045684'), + (93051, 1113, 973, 'not_attending', '2021-08-21 02:49:56', '2025-12-17 19:47:42', 'daB7qbDm', '4366186'), + (93052, 1113, 974, 'not_attending', '2021-08-26 05:11:54', '2025-12-17 19:47:43', 'daB7qbDm', '4366187'), + (93053, 1113, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'daB7qbDm', '6045684'), + (93054, 1114, 2145, 'not_attending', '2023-07-13 20:59:41', '2025-12-17 19:46:52', 'AYR3ME94', '6334903'), + (93055, 1114, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'AYR3ME94', '6337236'), + (93056, 1114, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'AYR3ME94', '6337970'), + (93057, 1114, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'AYR3ME94', '6338308'), + (93058, 1114, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'AYR3ME94', '6341710'), + (93059, 1114, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'AYR3ME94', '6342044'), + (93060, 1114, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'AYR3ME94', '6342298'), + (93061, 1114, 2172, 'not_attending', '2023-07-18 02:40:21', '2025-12-17 19:46:53', 'AYR3ME94', '6342591'), + (93062, 1114, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'AYR3ME94', '6343294'), + (93063, 1114, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'AYR3ME94', '6347034'), + (93064, 1114, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'AYR3ME94', '6347056'), + (93065, 1114, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'AYR3ME94', '6353830'), + (93066, 1114, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'AYR3ME94', '6353831'), + (93067, 1114, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'AYR3ME94', '6357867'), + (93068, 1114, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'AYR3ME94', '6358652'), + (93069, 1114, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'AYR3ME94', '6361709'), + (93070, 1114, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'AYR3ME94', '6361710'), + (93071, 1114, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'AYR3ME94', '6361711'), + (93072, 1114, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'AYR3ME94', '6361712'), + (93073, 1114, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'AYR3ME94', '6361713'), + (93074, 1114, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'AYR3ME94', '6382573'), + (93075, 1114, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'AYR3ME94', '6388604'), + (93076, 1114, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'AYR3ME94', '6394629'), + (93077, 1114, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'AYR3ME94', '6394631'), + (93078, 1114, 2264, 'not_attending', '2023-09-27 02:24:46', '2025-12-17 19:46:45', 'AYR3ME94', '6431478'), + (93079, 1116, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'rdOa9l5A', '3149489'), + (93080, 1116, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:47', 'rdOa9l5A', '3149491'), + (93081, 1116, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'rdOa9l5A', '3236450'), + (93082, 1116, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'rdOa9l5A', '3236452'), + (93083, 1116, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'rdOa9l5A', '3539922'), + (93084, 1116, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'rdOa9l5A', '3539923'), + (93085, 1116, 814, 'attending', '2021-05-16 03:51:41', '2025-12-17 19:47:46', 'rdOa9l5A', '3817706'), + (93086, 1116, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'rdOa9l5A', '3963335'), + (93087, 1116, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'rdOa9l5A', '3975311'), + (93088, 1116, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'rdOa9l5A', '3975312'), + (93089, 1116, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'rdOa9l5A', '3994992'), + (93090, 1116, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'rdOa9l5A', '4014338'), + (93091, 1116, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'rdOa9l5A', '4136744'), + (93092, 1116, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'rdOa9l5A', '6045684'), + (93093, 1117, 2806, 'attending', '2024-09-14 01:14:02', '2025-12-17 19:46:25', 'Arxb8YZd', '7404888'), + (93094, 1117, 2821, 'maybe', '2024-09-22 02:21:56', '2025-12-17 19:46:26', 'Arxb8YZd', '7424275'), + (93095, 1117, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'Arxb8YZd', '7424276'), + (93096, 1117, 2824, 'attending', '2024-09-13 01:10:52', '2025-12-17 19:46:25', 'Arxb8YZd', '7432751'), + (93097, 1117, 2825, 'attending', '2024-09-14 01:02:33', '2025-12-17 19:46:25', 'Arxb8YZd', '7432752'), + (93098, 1117, 2826, 'attending', '2024-09-14 01:02:57', '2025-12-17 19:46:25', 'Arxb8YZd', '7432753'), + (93099, 1117, 2827, 'attending', '2024-09-22 02:21:45', '2025-12-17 19:46:26', 'Arxb8YZd', '7432754'), + (93100, 1117, 2828, 'not_attending', '2024-10-18 02:57:03', '2025-12-17 19:46:26', 'Arxb8YZd', '7432755'), + (93101, 1117, 2829, 'attending', '2024-10-22 17:52:28', '2025-12-17 19:46:26', 'Arxb8YZd', '7432756'), + (93102, 1117, 2830, 'attending', '2024-10-24 01:41:41', '2025-12-17 19:46:26', 'Arxb8YZd', '7432758'), + (93103, 1117, 2831, 'attending', '2024-11-08 07:17:19', '2025-12-17 19:46:26', 'Arxb8YZd', '7432759'), + (93104, 1117, 2833, 'attending', '2024-09-13 01:13:34', '2025-12-17 19:46:24', 'Arxb8YZd', '7433834'), + (93105, 1117, 2834, 'attending', '2024-09-13 22:36:23', '2025-12-17 19:46:25', 'Arxb8YZd', '7433852'), + (93106, 1117, 2838, 'attending', '2024-09-21 21:28:47', '2025-12-17 19:46:25', 'Arxb8YZd', '7439182'), + (93107, 1117, 2839, 'attending', '2024-09-15 04:25:13', '2025-12-17 19:46:25', 'Arxb8YZd', '7439262'), + (93108, 1117, 2841, 'attending', '2024-09-17 01:55:23', '2025-12-17 19:46:25', 'Arxb8YZd', '7444444'), + (93109, 1117, 2844, 'attending', '2024-09-20 15:26:55', '2025-12-17 19:46:25', 'Arxb8YZd', '7450233'), + (93110, 1117, 2847, 'attending', '2024-09-22 02:19:47', '2025-12-17 19:46:25', 'Arxb8YZd', '7452299'), + (93111, 1117, 2849, 'attending', '2024-09-25 14:34:51', '2025-12-17 19:46:25', 'Arxb8YZd', '7457114'), + (93112, 1117, 2850, 'attending', '2024-09-25 14:34:39', '2025-12-17 19:46:25', 'Arxb8YZd', '7457153'), + (93113, 1117, 2855, 'attending', '2024-09-30 18:20:01', '2025-12-17 19:46:26', 'Arxb8YZd', '7469385'), + (93114, 1117, 2856, 'maybe', '2024-10-03 23:17:19', '2025-12-17 19:46:26', 'Arxb8YZd', '7469386'), + (93115, 1117, 2861, 'attending', '2024-10-02 22:37:59', '2025-12-17 19:46:26', 'Arxb8YZd', '7469826'), + (93116, 1117, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'Arxb8YZd', '7470197'), + (93117, 1117, 2874, 'attending', '2024-10-07 21:44:11', '2025-12-17 19:46:26', 'Arxb8YZd', '7482239'), + (93118, 1117, 2878, 'maybe', '2024-10-10 23:26:05', '2025-12-17 19:46:26', 'Arxb8YZd', '7633857'), + (93119, 1117, 2879, 'not_attending', '2024-10-16 21:38:11', '2025-12-17 19:46:26', 'Arxb8YZd', '7633863'), + (93120, 1117, 2883, 'attending', '2024-10-22 02:43:34', '2025-12-17 19:46:26', 'Arxb8YZd', '7649157'), + (93121, 1117, 2888, 'attending', '2024-10-20 22:24:39', '2025-12-17 19:46:26', 'Arxb8YZd', '7654822'), + (93122, 1117, 2889, 'attending', '2024-10-22 17:50:51', '2025-12-17 19:46:26', 'Arxb8YZd', '7660485'), + (93123, 1117, 2893, 'attending', '2024-10-31 16:05:19', '2025-12-17 19:46:26', 'Arxb8YZd', '7672705'), + (93124, 1117, 2896, 'attending', '2024-11-08 07:17:34', '2025-12-17 19:46:27', 'Arxb8YZd', '7683647'), + (93125, 1117, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'Arxb8YZd', '7685613'), + (93126, 1117, 2903, 'maybe', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'Arxb8YZd', '7688194'), + (93127, 1117, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'Arxb8YZd', '7688196'), + (93128, 1117, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'Arxb8YZd', '7688289'), + (93129, 1117, 2909, 'not_attending', '2024-11-10 21:20:50', '2025-12-17 19:46:27', 'Arxb8YZd', '7689771'), + (93130, 1117, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'Arxb8YZd', '7692763'), + (93131, 1117, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'Arxb8YZd', '7697552'), + (93132, 1117, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'Arxb8YZd', '7699878'), + (93133, 1117, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'Arxb8YZd', '7704043'), + (93134, 1117, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'Arxb8YZd', '7712467'), + (93135, 1117, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'Arxb8YZd', '7713585'), + (93136, 1117, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'Arxb8YZd', '7713586'), + (93137, 1117, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'Arxb8YZd', '7738518'), + (93138, 1117, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'Arxb8YZd', '7750636'), + (93139, 1117, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'Arxb8YZd', '7796540'), + (93140, 1117, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'Arxb8YZd', '7796541'), + (93141, 1117, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'Arxb8YZd', '7796542'), + (93142, 1117, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'Arxb8YZd', '7825913'), + (93143, 1117, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'Arxb8YZd', '7826209'), + (93144, 1117, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'Arxb8YZd', '7834742'), + (93145, 1117, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'Arxb8YZd', '7842108'), + (93146, 1117, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'Arxb8YZd', '7842902'), + (93147, 1117, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'Arxb8YZd', '7842903'), + (93148, 1117, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'Arxb8YZd', '7842904'), + (93149, 1117, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'Arxb8YZd', '7842905'), + (93150, 1117, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'Arxb8YZd', '7855719'), + (93151, 1117, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'Arxb8YZd', '7860683'), + (93152, 1117, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'Arxb8YZd', '7860684'), + (93153, 1117, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'Arxb8YZd', '7866095'), + (93154, 1117, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'Arxb8YZd', '7869170'), + (93155, 1117, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'Arxb8YZd', '7869188'), + (93156, 1117, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'Arxb8YZd', '7869201'), + (93157, 1117, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'Arxb8YZd', '7877465'), + (93158, 1117, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'Arxb8YZd', '7878570'), + (93159, 1117, 3040, 'not_attending', '2025-03-14 03:06:02', '2025-12-17 19:46:19', 'Arxb8YZd', '7881994'), + (93160, 1117, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'Arxb8YZd', '7888250'), + (93161, 1117, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'Arxb8YZd', '8349164'), + (93162, 1117, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'Arxb8YZd', '8349545'), + (93163, 1117, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'Arxb8YZd', '8353584'), + (93164, 1118, 3087, 'not_attending', '2025-04-16 14:59:55', '2025-12-17 19:46:20', '4ZElzOLA', '7903856'), + (93165, 1118, 3103, 'not_attending', '2025-04-25 17:09:34', '2025-12-17 19:46:20', '4ZElzOLA', '8347770'), + (93166, 1118, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '4ZElzOLA', '8349164'), + (93167, 1118, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '4ZElzOLA', '8349545'), + (93168, 1118, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', '4ZElzOLA', '8353584'), + (93169, 1118, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '4ZElzOLA', '8368028'), + (93170, 1118, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '4ZElzOLA', '8368029'), + (93171, 1118, 3140, 'not_attending', '2025-05-21 04:07:31', '2025-12-17 19:46:21', '4ZElzOLA', '8380399'), + (93172, 1118, 3142, 'not_attending', '2025-05-27 12:18:22', '2025-12-17 19:46:21', '4ZElzOLA', '8387505'), + (93173, 1118, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '4ZElzOLA', '8388462'), + (93174, 1118, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '4ZElzOLA', '8400273'), + (93175, 1119, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '841yBBp4', '4642994'), + (93176, 1119, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '841yBBp4', '4642995'), + (93177, 1119, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '841yBBp4', '4642996'), + (93178, 1119, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '841yBBp4', '4642997'), + (93179, 1119, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '841yBBp4', '4645687'), + (93180, 1119, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '841yBBp4', '4645698'), + (93181, 1119, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '841yBBp4', '4645704'), + (93182, 1119, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '841yBBp4', '4645705'), + (93183, 1119, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '841yBBp4', '4668385'), + (93184, 1119, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '841yBBp4', '4694407'), + (93185, 1119, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '841yBBp4', '4746789'), + (93186, 1119, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '841yBBp4', '4753929'), + (93187, 1119, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '841yBBp4', '6045684'), + (93188, 1120, 374, 'not_attending', '2020-10-26 21:36:47', '2025-12-17 19:47:53', 'nm6bl8qm', '3221415'), + (93189, 1120, 392, 'attending', '2020-10-29 21:46:11', '2025-12-17 19:47:53', 'nm6bl8qm', '3236447'), + (93190, 1120, 428, 'attending', '2020-10-26 21:37:16', '2025-12-17 19:47:53', 'nm6bl8qm', '3250332'), + (93191, 1120, 438, 'attending', '2020-10-30 02:38:50', '2025-12-17 19:47:53', 'nm6bl8qm', '3256163'), + (93192, 1120, 440, 'not_attending', '2020-11-03 03:35:37', '2025-12-17 19:47:53', 'nm6bl8qm', '3256168'), + (93193, 1120, 441, 'attending', '2020-11-09 03:24:52', '2025-12-17 19:47:54', 'nm6bl8qm', '3256169'), + (93194, 1120, 444, 'not_attending', '2020-10-30 21:51:26', '2025-12-17 19:47:53', 'nm6bl8qm', '3263745'), + (93195, 1120, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'nm6bl8qm', '3266138'), + (93196, 1120, 446, 'attending', '2020-10-26 21:57:17', '2025-12-17 19:47:53', 'nm6bl8qm', '3267163'), + (93197, 1120, 456, 'maybe', '2020-11-17 00:36:51', '2025-12-17 19:47:54', 'nm6bl8qm', '3276428'), + (93198, 1120, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'nm6bl8qm', '3281467'), + (93199, 1120, 460, 'maybe', '2020-11-17 03:32:04', '2025-12-17 19:47:54', 'nm6bl8qm', '3281468'), + (93200, 1120, 461, 'not_attending', '2020-11-10 01:02:41', '2025-12-17 19:47:53', 'nm6bl8qm', '3281469'), + (93201, 1120, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'nm6bl8qm', '3281470'), + (93202, 1120, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'nm6bl8qm', '3281829'), + (93203, 1120, 468, 'not_attending', '2020-11-22 00:57:42', '2025-12-17 19:47:54', 'nm6bl8qm', '3285413'), + (93204, 1120, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'nm6bl8qm', '3285414'), + (93205, 1120, 478, 'maybe', '2020-11-17 22:50:56', '2025-12-17 19:47:54', 'nm6bl8qm', '3290899'), + (93206, 1120, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'nm6bl8qm', '3297764'), + (93207, 1120, 484, 'attending', '2020-11-20 13:34:39', '2025-12-17 19:47:54', 'nm6bl8qm', '3297792'), + (93208, 1120, 493, 'not_attending', '2020-12-06 00:16:12', '2025-12-17 19:47:54', 'nm6bl8qm', '3313856'), + (93209, 1120, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'nm6bl8qm', '3314909'), + (93210, 1120, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'nm6bl8qm', '3314964'), + (93211, 1120, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'nm6bl8qm', '3323365'), + (93212, 1120, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'nm6bl8qm', '3329383'), + (93213, 1120, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'nm6bl8qm', '3351539'), + (93214, 1120, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'nm6bl8qm', '3386848'), + (93215, 1120, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'nm6bl8qm', '3389527'), + (93216, 1120, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'nm6bl8qm', '3396499'), + (93217, 1120, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'nm6bl8qm', '3403650'), + (93218, 1120, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'nm6bl8qm', '3406988'), + (93219, 1120, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'nm6bl8qm', '3416576'), + (93220, 1120, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'nm6bl8qm', '3418925'), + (93221, 1120, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm6bl8qm', '6045684'), + (93222, 1121, 2160, 'attending', '2023-07-29 22:14:51', '2025-12-17 19:46:54', '4vbVvX14', '6338358'), + (93223, 1121, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '4vbVvX14', '6342044'), + (93224, 1121, 2174, 'not_attending', '2023-07-26 20:15:40', '2025-12-17 19:46:54', '4vbVvX14', '6343294'), + (93225, 1121, 2176, 'not_attending', '2023-07-27 17:23:49', '2025-12-17 19:46:54', '4vbVvX14', '6347034'), + (93226, 1121, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '4vbVvX14', '6353830'), + (93227, 1121, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '4vbVvX14', '6353831'), + (93228, 1121, 2189, 'attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '4vbVvX14', '6357867'), + (93229, 1121, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '4vbVvX14', '6358652'), + (93230, 1121, 2203, 'attending', '2023-08-09 22:18:40', '2025-12-17 19:46:55', '4vbVvX14', '6361524'), + (93231, 1121, 2204, 'maybe', '2023-08-19 22:09:28', '2025-12-17 19:46:55', '4vbVvX14', '6361542'), + (93232, 1121, 2208, 'attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '4vbVvX14', '6361709'), + (93233, 1121, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '4vbVvX14', '6361710'), + (93234, 1121, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '4vbVvX14', '6361711'), + (93235, 1121, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '4vbVvX14', '6361712'), + (93236, 1121, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '4vbVvX14', '6361713'), + (93237, 1121, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '4vbVvX14', '6382573'), + (93238, 1121, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', '4vbVvX14', '6388604'), + (93239, 1121, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '4vbVvX14', '6394629'), + (93240, 1121, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '4vbVvX14', '6394631'), + (93241, 1121, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '4vbVvX14', '6440863'), + (93242, 1121, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '4vbVvX14', '6445440'), + (93243, 1121, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '4vbVvX14', '6453951'), + (93244, 1121, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '4vbVvX14', '6461696'), + (93245, 1121, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '4vbVvX14', '6462129'), + (93246, 1121, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '4vbVvX14', '6463218'), + (93247, 1121, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '4vbVvX14', '6472181'), + (93248, 1121, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '4vbVvX14', '6482693'), + (93249, 1121, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', '4vbVvX14', '6484200'), + (93250, 1121, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:46', '4vbVvX14', '6484680'), + (93251, 1121, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '4vbVvX14', '6507741'), + (93252, 1121, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '4vbVvX14', '6514659'), + (93253, 1121, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '4vbVvX14', '6514660'), + (93254, 1121, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '4vbVvX14', '6519103'), + (93255, 1121, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '4vbVvX14', '6535681'), + (93256, 1121, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '4vbVvX14', '6584747'), + (93257, 1121, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '4vbVvX14', '6587097'), + (93258, 1121, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '4vbVvX14', '6609022'), + (93259, 1121, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '4vbVvX14', '6632757'), + (93260, 1121, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '4vbVvX14', '6644187'), + (93261, 1121, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '4vbVvX14', '6648951'), + (93262, 1121, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '4vbVvX14', '6648952'), + (93263, 1121, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '4vbVvX14', '6655401'), + (93264, 1121, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '4vbVvX14', '6661585'), + (93265, 1121, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '4vbVvX14', '6661588'), + (93266, 1121, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '4vbVvX14', '6661589'), + (93267, 1121, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '4vbVvX14', '6699906'), + (93268, 1121, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '4vbVvX14', '6701109'), + (93269, 1121, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '4vbVvX14', '6705219'), + (93270, 1121, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '4vbVvX14', '6710153'), + (93271, 1121, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '4vbVvX14', '6711552'), + (93272, 1121, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '4vbVvX14', '6711553'), + (93273, 1122, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'mM9kM09m', '4736497'), + (93274, 1122, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'mM9kM09m', '4736500'), + (93275, 1122, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'mM9kM09m', '4746789'), + (93276, 1122, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'mM9kM09m', '4753929'), + (93277, 1122, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mM9kM09m', '6045684'), + (93278, 1123, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ArgqoEq4', '4736497'), + (93279, 1123, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ArgqoEq4', '4736500'), + (93280, 1123, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ArgqoEq4', '4746789'), + (93281, 1123, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ArgqoEq4', '4753929'), + (93282, 1123, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ArgqoEq4', '6045684'), + (93283, 1124, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'daJjeOZm', '4736504'), + (93284, 1124, 1259, 'not_attending', '2022-03-11 23:48:32', '2025-12-17 19:47:33', 'daJjeOZm', '5132533'), + (93285, 1124, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'daJjeOZm', '5186582'), + (93286, 1124, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'daJjeOZm', '5186583'), + (93287, 1124, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'daJjeOZm', '5186585'), + (93288, 1124, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'daJjeOZm', '5190437'), + (93289, 1124, 1285, 'not_attending', '2022-03-21 15:43:53', '2025-12-17 19:47:25', 'daJjeOZm', '5196763'), + (93290, 1124, 1288, 'not_attending', '2022-03-23 01:10:20', '2025-12-17 19:47:25', 'daJjeOZm', '5199460'), + (93291, 1124, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'daJjeOZm', '5215989'), + (93292, 1124, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'daJjeOZm', '5223686'), + (93293, 1124, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'daJjeOZm', '5227432'), + (93294, 1124, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'daJjeOZm', '6045684'), + (93295, 1125, 871, 'not_attending', '2021-07-08 02:58:59', '2025-12-17 19:47:39', 'GmjzRPbm', '4136938'), + (93296, 1125, 872, 'not_attending', '2021-07-17 04:51:55', '2025-12-17 19:47:40', 'GmjzRPbm', '4136947'), + (93297, 1125, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GmjzRPbm', '4210314'), + (93298, 1125, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GmjzRPbm', '4225444'), + (93299, 1125, 892, 'not_attending', '2021-07-08 02:56:25', '2025-12-17 19:47:39', 'GmjzRPbm', '4229418'), + (93300, 1125, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'GmjzRPbm', '4229420'), + (93301, 1125, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'GmjzRPbm', '4229423'), + (93302, 1125, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GmjzRPbm', '4240316'), + (93303, 1125, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GmjzRPbm', '4240317'), + (93304, 1125, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GmjzRPbm', '4240318'), + (93305, 1125, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GmjzRPbm', '4240320'), + (93306, 1125, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GmjzRPbm', '4275957'), + (93307, 1125, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GmjzRPbm', '4277819'), + (93308, 1125, 923, 'not_attending', '2021-07-20 02:30:19', '2025-12-17 19:47:40', 'GmjzRPbm', '4292773'), + (93309, 1125, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GmjzRPbm', '4301723'), + (93310, 1125, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'GmjzRPbm', '4302093'), + (93311, 1125, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GmjzRPbm', '4304151'), + (93312, 1125, 940, 'not_attending', '2021-07-30 16:29:44', '2025-12-17 19:47:40', 'GmjzRPbm', '4309049'), + (93313, 1125, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'GmjzRPbm', '4315713'), + (93314, 1125, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'GmjzRPbm', '4315714'), + (93315, 1125, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'GmjzRPbm', '4315726'), + (93316, 1125, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GmjzRPbm', '4356801'), + (93317, 1125, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GmjzRPbm', '4366186'), + (93318, 1125, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GmjzRPbm', '4366187'), + (93319, 1125, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GmjzRPbm', '4420735'), + (93320, 1125, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GmjzRPbm', '4420738'), + (93321, 1125, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GmjzRPbm', '4420739'), + (93322, 1125, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GmjzRPbm', '4420741'), + (93323, 1125, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GmjzRPbm', '4420744'), + (93324, 1125, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GmjzRPbm', '4420747'), + (93325, 1125, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GmjzRPbm', '4420748'), + (93326, 1125, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GmjzRPbm', '4420749'), + (93327, 1125, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GmjzRPbm', '6045684'), + (93328, 1126, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'oAgR0gjm', '6632757'), + (93329, 1126, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'oAgR0gjm', '6644187'), + (93330, 1126, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'oAgR0gjm', '6648951'), + (93331, 1126, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'oAgR0gjm', '6648952'), + (93332, 1126, 2390, 'attending', '2024-01-05 20:37:43', '2025-12-17 19:46:37', 'oAgR0gjm', '6651141'), + (93333, 1126, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'oAgR0gjm', '6655401'), + (93334, 1126, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'oAgR0gjm', '6661585'), + (93335, 1126, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'oAgR0gjm', '6661588'), + (93336, 1126, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'oAgR0gjm', '6661589'), + (93337, 1126, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'oAgR0gjm', '6699906'), + (93338, 1126, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'oAgR0gjm', '6699913'), + (93339, 1126, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'oAgR0gjm', '6701109'), + (93340, 1126, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'oAgR0gjm', '6705219'), + (93341, 1126, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'oAgR0gjm', '6710153'), + (93342, 1126, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'oAgR0gjm', '6711552'), + (93343, 1126, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'oAgR0gjm', '6711553'), + (93344, 1126, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'oAgR0gjm', '6722688'), + (93345, 1126, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'oAgR0gjm', '6730620'), + (93346, 1126, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'oAgR0gjm', '6730642'), + (93347, 1126, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'oAgR0gjm', '6740364'), + (93348, 1126, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'oAgR0gjm', '6743829'), + (93349, 1126, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'oAgR0gjm', '7030380'), + (93350, 1126, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'oAgR0gjm', '7033677'), + (93351, 1126, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'oAgR0gjm', '7035415'), + (93352, 1126, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'oAgR0gjm', '7044715'), + (93353, 1126, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'oAgR0gjm', '7050318'), + (93354, 1126, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'oAgR0gjm', '7050319'), + (93355, 1126, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'oAgR0gjm', '7050322'), + (93356, 1126, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'oAgR0gjm', '7057804'), + (93357, 1126, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'oAgR0gjm', '7072824'), + (93358, 1126, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'oAgR0gjm', '7074348'), + (93359, 1126, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'oAgR0gjm', '7089267'), + (93360, 1126, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'oAgR0gjm', '7098747'), + (93361, 1126, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'oAgR0gjm', '7113468'), + (93362, 1126, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'oAgR0gjm', '7114856'), + (93363, 1126, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'oAgR0gjm', '7114951'), + (93364, 1126, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'oAgR0gjm', '7114955'), + (93365, 1126, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'oAgR0gjm', '7114956'), + (93366, 1126, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'oAgR0gjm', '7153615'), + (93367, 1126, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'oAgR0gjm', '7159484'), + (93368, 1126, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'oAgR0gjm', '7178446'), + (93369, 1127, 2654, 'not_attending', '2024-05-26 21:21:20', '2025-12-17 19:46:36', '4oj6kOMA', '7291219'), + (93370, 1127, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', '4oj6kOMA', '7301638'), + (93371, 1128, 2498, 'attending', '2024-03-20 21:17:04', '2025-12-17 19:46:33', 'd3yBZLDA', '7057662'), + (93372, 1128, 2509, 'attending', '2024-03-25 02:25:56', '2025-12-17 19:46:33', 'd3yBZLDA', '7074349'), + (93373, 1128, 2511, 'not_attending', '2024-04-07 06:45:32', '2025-12-17 19:46:33', 'd3yBZLDA', '7074351'), + (93374, 1128, 2512, 'attending', '2024-04-05 00:27:50', '2025-12-17 19:46:33', 'd3yBZLDA', '7074352'), + (93375, 1128, 2516, 'attending', '2024-04-29 17:26:10', '2025-12-17 19:46:35', 'd3yBZLDA', '7074356'), + (93376, 1128, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd3yBZLDA', '7074364'), + (93377, 1128, 2537, 'attending', '2024-03-23 02:09:37', '2025-12-17 19:46:33', 'd3yBZLDA', '7085484'), + (93378, 1128, 2539, 'attending', '2024-04-06 23:11:46', '2025-12-17 19:46:33', 'd3yBZLDA', '7085486'), + (93379, 1128, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd3yBZLDA', '7098747'), + (93380, 1128, 2551, 'maybe', '2024-03-29 17:21:46', '2025-12-17 19:46:33', 'd3yBZLDA', '7109912'), + (93381, 1128, 2553, 'attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd3yBZLDA', '7113468'), + (93382, 1128, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd3yBZLDA', '7114856'), + (93383, 1128, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd3yBZLDA', '7114951'), + (93384, 1128, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd3yBZLDA', '7114955'), + (93385, 1128, 2557, 'attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd3yBZLDA', '7114956'), + (93386, 1128, 2558, 'attending', '2024-04-30 01:35:34', '2025-12-17 19:46:35', 'd3yBZLDA', '7114957'), + (93387, 1128, 2563, 'attending', '2024-04-12 21:04:04', '2025-12-17 19:46:33', 'd3yBZLDA', '7134734'), + (93388, 1128, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd3yBZLDA', '7153615'), + (93389, 1128, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd3yBZLDA', '7159484'), + (93390, 1128, 2576, 'maybe', '2024-04-26 00:52:27', '2025-12-17 19:46:34', 'd3yBZLDA', '7164538'), + (93391, 1128, 2584, 'attending', '2024-04-21 01:28:40', '2025-12-17 19:46:34', 'd3yBZLDA', '7175057'), + (93392, 1128, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd3yBZLDA', '7178446'), + (93393, 1128, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'd3yBZLDA', '7220467'), + (93394, 1128, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'd3yBZLDA', '7240354'), + (93395, 1128, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'd3yBZLDA', '7251633'), + (93396, 1128, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'd3yBZLDA', '7263048'), + (93397, 1128, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd3yBZLDA', '7302674'), + (93398, 1128, 2683, 'attending', '2024-06-16 06:32:01', '2025-12-17 19:46:28', 'd3yBZLDA', '7321978'), + (93399, 1128, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd3yBZLDA', '7324073'), + (93400, 1128, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd3yBZLDA', '7324074'), + (93401, 1128, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd3yBZLDA', '7324075'), + (93402, 1128, 2691, 'attending', '2024-07-18 02:48:49', '2025-12-17 19:46:30', 'd3yBZLDA', '7324076'), + (93403, 1128, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd3yBZLDA', '7324078'), + (93404, 1128, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd3yBZLDA', '7324082'), + (93405, 1128, 2706, 'not_attending', '2024-06-18 15:12:28', '2025-12-17 19:46:28', 'd3yBZLDA', '7324947'), + (93406, 1128, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd3yBZLDA', '7331457'), + (93407, 1128, 2723, 'maybe', '2024-06-21 20:23:09', '2025-12-17 19:46:29', 'd3yBZLDA', '7332389'), + (93408, 1128, 2747, 'attending', '2024-07-16 13:11:50', '2025-12-17 19:46:30', 'd3yBZLDA', '7353587'), + (93409, 1128, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'd3yBZLDA', '7356752'), + (93410, 1128, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd3yBZLDA', '7363643'), + (93411, 1128, 2774, 'attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd3yBZLDA', '7368606'), + (93412, 1128, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd3yBZLDA', '7397462'), + (93413, 1128, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd3yBZLDA', '7424275'), + (93414, 1128, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd3yBZLDA', '7424276'), + (93415, 1128, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd3yBZLDA', '7432751'), + (93416, 1128, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd3yBZLDA', '7432752'), + (93417, 1128, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd3yBZLDA', '7432753'), + (93418, 1128, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd3yBZLDA', '7432754'), + (93419, 1128, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd3yBZLDA', '7432755'), + (93420, 1128, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd3yBZLDA', '7432756'), + (93421, 1128, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd3yBZLDA', '7432758'), + (93422, 1128, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd3yBZLDA', '7432759'), + (93423, 1128, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd3yBZLDA', '7433834'), + (93424, 1128, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd3yBZLDA', '7470197'), + (93425, 1128, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd3yBZLDA', '7685613'), + (93426, 1128, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd3yBZLDA', '7688194'), + (93427, 1128, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd3yBZLDA', '7688196'), + (93428, 1128, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd3yBZLDA', '7688289'), + (93429, 1129, 5, 'maybe', '2020-04-12 18:36:46', '2025-12-17 19:47:58', 'kdKXkBam', '2958047'), + (93430, 1129, 18, 'attending', '2020-04-16 19:24:43', '2025-12-17 19:47:57', 'kdKXkBam', '2958062'), + (93431, 1129, 22, 'attending', '2020-05-24 04:36:25', '2025-12-17 19:47:57', 'kdKXkBam', '2958066'), + (93432, 1129, 23, 'attending', '2020-06-10 13:36:58', '2025-12-17 19:47:58', 'kdKXkBam', '2958067'), + (93433, 1129, 24, 'not_attending', '2020-06-20 23:41:35', '2025-12-17 19:47:55', 'kdKXkBam', '2958068'), + (93434, 1129, 40, 'attending', '2020-04-09 12:09:13', '2025-12-17 19:47:57', 'kdKXkBam', '2970718'), + (93435, 1129, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', 'kdKXkBam', '2971546'), + (93436, 1129, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', 'kdKXkBam', '2974534'), + (93437, 1129, 46, 'attending', '2020-04-12 18:37:02', '2025-12-17 19:47:57', 'kdKXkBam', '2974955'), + (93438, 1129, 50, 'not_attending', '2020-07-28 20:51:50', '2025-12-17 19:47:55', 'kdKXkBam', '2975275'), + (93439, 1129, 52, 'attending', '2020-06-16 20:23:57', '2025-12-17 19:47:58', 'kdKXkBam', '2975277'), + (93440, 1129, 53, 'attending', '2020-07-13 22:04:03', '2025-12-17 19:47:55', 'kdKXkBam', '2975278'), + (93441, 1129, 54, 'attending', '2020-08-26 23:44:54', '2025-12-17 19:47:56', 'kdKXkBam', '2975279'), + (93442, 1129, 56, 'maybe', '2020-04-12 18:38:51', '2025-12-17 19:47:57', 'kdKXkBam', '2975385'), + (93443, 1129, 57, 'attending', '2020-04-27 22:39:02', '2025-12-17 19:47:57', 'kdKXkBam', '2976575'), + (93444, 1129, 62, 'attending', '2020-05-12 22:32:40', '2025-12-17 19:47:57', 'kdKXkBam', '2977131'), + (93445, 1129, 63, 'attending', '2020-05-19 14:14:29', '2025-12-17 19:47:57', 'kdKXkBam', '2977132'), + (93446, 1129, 64, 'attending', '2020-05-31 22:45:30', '2025-12-17 19:47:58', 'kdKXkBam', '2977133'), + (93447, 1129, 65, 'not_attending', '2020-05-26 22:31:13', '2025-12-17 19:47:57', 'kdKXkBam', '2977134'), + (93448, 1129, 66, 'attending', '2020-06-09 20:34:47', '2025-12-17 19:47:58', 'kdKXkBam', '2977135'), + (93449, 1129, 67, 'not_attending', '2020-06-16 20:24:01', '2025-12-17 19:47:58', 'kdKXkBam', '2977136'), + (93450, 1129, 68, 'not_attending', '2020-06-20 02:07:49', '2025-12-17 19:47:58', 'kdKXkBam', '2977137'), + (93451, 1129, 69, 'not_attending', '2020-06-25 16:17:16', '2025-12-17 19:47:55', 'kdKXkBam', '2977138'), + (93452, 1129, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', 'kdKXkBam', '2977343'), + (93453, 1129, 72, 'attending', '2020-05-07 22:42:33', '2025-12-17 19:47:57', 'kdKXkBam', '2977812'), + (93454, 1129, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', 'kdKXkBam', '2977931'), + (93455, 1129, 74, 'attending', '2020-04-18 22:04:06', '2025-12-17 19:47:57', 'kdKXkBam', '2978244'), + (93456, 1129, 75, 'attending', '2020-04-25 15:38:01', '2025-12-17 19:47:57', 'kdKXkBam', '2978245'), + (93457, 1129, 76, 'attending', '2020-05-02 14:47:55', '2025-12-17 19:47:57', 'kdKXkBam', '2978246'), + (93458, 1129, 77, 'attending', '2020-05-09 19:35:38', '2025-12-17 19:47:57', 'kdKXkBam', '2978247'), + (93459, 1129, 78, 'attending', '2020-05-19 21:14:17', '2025-12-17 19:47:57', 'kdKXkBam', '2978249'), + (93460, 1129, 79, 'attending', '2020-05-29 18:55:38', '2025-12-17 19:47:57', 'kdKXkBam', '2978250'), + (93461, 1129, 80, 'attending', '2020-06-06 22:38:22', '2025-12-17 19:47:58', 'kdKXkBam', '2978251'), + (93462, 1129, 81, 'attending', '2020-06-10 13:50:27', '2025-12-17 19:47:58', 'kdKXkBam', '2978252'), + (93463, 1129, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', 'kdKXkBam', '2978433'), + (93464, 1129, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', 'kdKXkBam', '2978438'), + (93465, 1129, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', 'kdKXkBam', '2980871'), + (93466, 1129, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', 'kdKXkBam', '2981388'), + (93467, 1129, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', 'kdKXkBam', '2986743'), + (93468, 1129, 95, 'attending', '2020-04-28 23:46:18', '2025-12-17 19:47:57', 'kdKXkBam', '2987452'), + (93469, 1129, 98, 'attending', '2020-05-18 21:15:43', '2025-12-17 19:47:57', 'kdKXkBam', '2987455'), + (93470, 1129, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', 'kdKXkBam', '2990784'), + (93471, 1129, 104, 'not_attending', '2020-04-24 14:20:07', '2025-12-17 19:47:57', 'kdKXkBam', '2991471'), + (93472, 1129, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', 'kdKXkBam', '2993501'), + (93473, 1129, 109, 'attending', '2020-05-13 22:55:27', '2025-12-17 19:47:57', 'kdKXkBam', '2994480'), + (93474, 1129, 111, 'attending', '2020-06-07 01:49:42', '2025-12-17 19:47:58', 'kdKXkBam', '2994907'), + (93475, 1129, 112, 'not_attending', '2020-07-05 18:50:33', '2025-12-17 19:47:55', 'kdKXkBam', '2994908'), + (93476, 1129, 113, 'attending', '2020-08-02 03:21:35', '2025-12-17 19:47:56', 'kdKXkBam', '2994909'), + (93477, 1129, 115, 'attending', '2020-05-12 19:06:18', '2025-12-17 19:47:57', 'kdKXkBam', '3001217'), + (93478, 1129, 121, 'attending', '2020-05-26 09:49:09', '2025-12-17 19:47:57', 'kdKXkBam', '3023063'), + (93479, 1129, 122, 'attending', '2020-05-14 15:18:11', '2025-12-17 19:47:57', 'kdKXkBam', '3023491'), + (93480, 1129, 123, 'attending', '2020-05-25 00:20:45', '2025-12-17 19:47:57', 'kdKXkBam', '3023729'), + (93481, 1129, 125, 'attending', '2020-05-22 17:29:06', '2025-12-17 19:47:57', 'kdKXkBam', '3023987'), + (93482, 1129, 129, 'attending', '2020-05-20 02:55:40', '2025-12-17 19:47:58', 'kdKXkBam', '3028743'), + (93483, 1129, 130, 'attending', '2020-05-28 23:10:51', '2025-12-17 19:47:57', 'kdKXkBam', '3028781'), + (93484, 1129, 132, 'attending', '2020-05-25 21:32:16', '2025-12-17 19:47:58', 'kdKXkBam', '3033648'), + (93485, 1129, 133, 'not_attending', '2020-06-20 02:07:54', '2025-12-17 19:47:58', 'kdKXkBam', '3034321'), + (93486, 1129, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', 'kdKXkBam', '3035881'), + (93487, 1129, 137, 'not_attending', '2020-06-04 19:24:34', '2025-12-17 19:47:58', 'kdKXkBam', '3042188'), + (93488, 1129, 138, 'attending', '2020-05-29 03:54:23', '2025-12-17 19:47:58', 'kdKXkBam', '3042932'), + (93489, 1129, 141, 'attending', '2020-05-31 22:37:58', '2025-12-17 19:47:58', 'kdKXkBam', '3049830'), + (93490, 1129, 143, 'not_attending', '2020-06-08 17:38:46', '2025-12-17 19:47:58', 'kdKXkBam', '3049983'), + (93491, 1129, 145, 'attending', '2020-06-10 13:50:25', '2025-12-17 19:47:58', 'kdKXkBam', '3058680'), + (93492, 1129, 146, 'attending', '2020-06-20 23:41:41', '2025-12-17 19:47:55', 'kdKXkBam', '3058683'), + (93493, 1129, 147, 'attending', '2020-08-18 22:54:42', '2025-12-17 19:47:56', 'kdKXkBam', '3058684'), + (93494, 1129, 148, 'attending', '2020-07-10 15:50:28', '2025-12-17 19:47:55', 'kdKXkBam', '3058685'), + (93495, 1129, 149, 'not_attending', '2020-07-18 21:08:43', '2025-12-17 19:47:55', 'kdKXkBam', '3058686'), + (93496, 1129, 150, 'attending', '2020-07-20 15:57:41', '2025-12-17 19:47:55', 'kdKXkBam', '3058687'), + (93497, 1129, 151, 'not_attending', '2020-08-29 17:00:12', '2025-12-17 19:47:56', 'kdKXkBam', '3058688'), + (93498, 1129, 152, 'attending', '2020-09-05 13:13:49', '2025-12-17 19:47:56', 'kdKXkBam', '3058689'), + (93499, 1129, 153, 'attending', '2020-07-28 04:12:39', '2025-12-17 19:47:55', 'kdKXkBam', '3058690'), + (93500, 1129, 154, 'attending', '2020-08-06 14:01:36', '2025-12-17 19:47:56', 'kdKXkBam', '3058691'), + (93501, 1129, 155, 'not_attending', '2020-08-15 21:21:03', '2025-12-17 19:47:56', 'kdKXkBam', '3058692'), + (93502, 1129, 156, 'not_attending', '2020-09-12 21:05:00', '2025-12-17 19:47:56', 'kdKXkBam', '3058693'), + (93503, 1129, 157, 'attending', '2020-09-19 21:31:44', '2025-12-17 19:47:56', 'kdKXkBam', '3058694'), + (93504, 1129, 158, 'not_attending', '2020-09-26 21:18:42', '2025-12-17 19:47:52', 'kdKXkBam', '3058695'), + (93505, 1129, 159, 'attending', '2020-10-03 21:17:58', '2025-12-17 19:47:52', 'kdKXkBam', '3058696'), + (93506, 1129, 160, 'not_attending', '2020-10-24 10:16:00', '2025-12-17 19:47:52', 'kdKXkBam', '3058697'), + (93507, 1129, 161, 'attending', '2020-10-09 22:47:37', '2025-12-17 19:47:52', 'kdKXkBam', '3058698'), + (93508, 1129, 162, 'attending', '2020-10-17 13:14:16', '2025-12-17 19:47:52', 'kdKXkBam', '3058699'), + (93509, 1129, 164, 'not_attending', '2020-11-14 23:41:47', '2025-12-17 19:47:54', 'kdKXkBam', '3058701'), + (93510, 1129, 165, 'not_attending', '2020-11-07 01:46:08', '2025-12-17 19:47:53', 'kdKXkBam', '3058702'), + (93511, 1129, 166, 'attending', '2020-11-21 21:50:58', '2025-12-17 19:47:54', 'kdKXkBam', '3058704'), + (93512, 1129, 167, 'attending', '2020-11-28 22:22:51', '2025-12-17 19:47:54', 'kdKXkBam', '3058705'), + (93513, 1129, 171, 'attending', '2020-06-10 13:37:00', '2025-12-17 19:47:58', 'kdKXkBam', '3058743'), + (93514, 1129, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', 'kdKXkBam', '3058959'), + (93515, 1129, 173, 'not_attending', '2020-06-17 20:58:19', '2025-12-17 19:47:58', 'kdKXkBam', '3067093'), + (93516, 1129, 174, 'attending', '2020-06-10 20:54:19', '2025-12-17 19:47:58', 'kdKXkBam', '3067927'), + (93517, 1129, 175, 'attending', '2020-06-17 20:56:15', '2025-12-17 19:47:58', 'kdKXkBam', '3068305'), + (93518, 1129, 180, 'not_attending', '2020-06-18 22:41:51', '2025-12-17 19:47:58', 'kdKXkBam', '3074048'), + (93519, 1129, 181, 'not_attending', '2020-06-20 02:07:22', '2025-12-17 19:47:58', 'kdKXkBam', '3074513'), + (93520, 1129, 182, 'not_attending', '2020-06-25 10:58:24', '2025-12-17 19:47:55', 'kdKXkBam', '3074514'), + (93521, 1129, 183, 'not_attending', '2020-06-20 02:07:42', '2025-12-17 19:47:58', 'kdKXkBam', '3075228'), + (93522, 1129, 184, 'not_attending', '2020-06-17 21:01:01', '2025-12-17 19:47:58', 'kdKXkBam', '3075262'), + (93523, 1129, 185, 'not_attending', '2020-06-20 23:40:58', '2025-12-17 19:47:58', 'kdKXkBam', '3075456'), + (93524, 1129, 186, 'not_attending', '2020-06-20 02:08:04', '2025-12-17 19:47:55', 'kdKXkBam', '3083791'), + (93525, 1129, 187, 'not_attending', '2020-06-25 10:58:33', '2025-12-17 19:47:55', 'kdKXkBam', '3085151'), + (93526, 1129, 188, 'not_attending', '2020-06-20 23:41:05', '2025-12-17 19:47:58', 'kdKXkBam', '3086646'), + (93527, 1129, 189, 'maybe', '2020-06-20 02:04:33', '2025-12-17 19:47:58', 'kdKXkBam', '3087016'), + (93528, 1129, 190, 'not_attending', '2020-06-25 16:17:45', '2025-12-17 19:47:55', 'kdKXkBam', '3087258'), + (93529, 1129, 191, 'attending', '2020-07-10 15:50:32', '2025-12-17 19:47:55', 'kdKXkBam', '3087259'), + (93530, 1129, 192, 'not_attending', '2020-07-17 18:43:33', '2025-12-17 19:47:55', 'kdKXkBam', '3087260'), + (93531, 1129, 193, 'attending', '2020-07-20 15:57:42', '2025-12-17 19:47:55', 'kdKXkBam', '3087261'), + (93532, 1129, 194, 'attending', '2020-07-28 04:12:36', '2025-12-17 19:47:55', 'kdKXkBam', '3087262'), + (93533, 1129, 195, 'not_attending', '2020-08-06 14:01:42', '2025-12-17 19:47:56', 'kdKXkBam', '3087264'), + (93534, 1129, 196, 'not_attending', '2020-08-15 21:21:05', '2025-12-17 19:47:56', 'kdKXkBam', '3087265'), + (93535, 1129, 197, 'attending', '2020-08-19 19:08:29', '2025-12-17 19:47:56', 'kdKXkBam', '3087266'), + (93536, 1129, 198, 'not_attending', '2020-08-29 17:00:13', '2025-12-17 19:47:56', 'kdKXkBam', '3087267'), + (93537, 1129, 199, 'attending', '2020-09-05 13:13:46', '2025-12-17 19:47:56', 'kdKXkBam', '3087268'), + (93538, 1129, 200, 'attending', '2020-09-04 23:34:48', '2025-12-17 19:47:56', 'kdKXkBam', '3087269'), + (93539, 1129, 201, 'not_attending', '2020-06-20 22:35:16', '2025-12-17 19:47:55', 'kdKXkBam', '3088653'), + (93540, 1129, 202, 'not_attending', '2020-06-25 16:17:41', '2025-12-17 19:47:55', 'kdKXkBam', '3090353'), + (93541, 1129, 203, 'not_attending', '2020-06-22 17:54:12', '2025-12-17 19:47:58', 'kdKXkBam', '3091624'), + (93542, 1129, 205, 'attending', '2020-07-10 22:56:15', '2025-12-17 19:47:55', 'kdKXkBam', '3104804'), + (93543, 1129, 206, 'not_attending', '2020-07-17 18:43:27', '2025-12-17 19:47:55', 'kdKXkBam', '3104806'), + (93544, 1129, 207, 'maybe', '2020-07-24 19:01:29', '2025-12-17 19:47:55', 'kdKXkBam', '3104807'), + (93545, 1129, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', 'kdKXkBam', '3106813'), + (93546, 1129, 220, 'attending', '2020-09-02 23:30:01', '2025-12-17 19:47:56', 'kdKXkBam', '3129264'), + (93547, 1129, 223, 'not_attending', '2020-09-12 21:05:01', '2025-12-17 19:47:56', 'kdKXkBam', '3129980'), + (93548, 1129, 224, 'attending', '2020-07-23 14:49:46', '2025-12-17 19:47:55', 'kdKXkBam', '3130712'), + (93549, 1129, 225, 'maybe', '2020-07-18 19:35:00', '2025-12-17 19:47:55', 'kdKXkBam', '3132378'), + (93550, 1129, 226, 'attending', '2020-07-15 19:31:40', '2025-12-17 19:47:55', 'kdKXkBam', '3132817'), + (93551, 1129, 227, 'attending', '2020-07-16 01:01:08', '2025-12-17 19:47:55', 'kdKXkBam', '3132820'), + (93552, 1129, 229, 'not_attending', '2020-07-17 18:43:24', '2025-12-17 19:47:55', 'kdKXkBam', '3134135'), + (93553, 1129, 233, 'attending', '2020-07-19 21:20:10', '2025-12-17 19:47:55', 'kdKXkBam', '3139773'), + (93554, 1129, 234, 'attending', '2020-07-20 16:20:00', '2025-12-17 19:47:55', 'kdKXkBam', '3140456'), + (93555, 1129, 235, 'attending', '2020-07-22 16:34:10', '2025-12-17 19:47:55', 'kdKXkBam', '3140861'), + (93556, 1129, 236, 'attending', '2020-07-21 21:50:29', '2025-12-17 19:47:55', 'kdKXkBam', '3140873'), + (93557, 1129, 237, 'attending', '2020-07-23 14:50:48', '2025-12-17 19:47:55', 'kdKXkBam', '3142085'), + (93558, 1129, 245, 'attending', '2020-12-01 23:11:32', '2025-12-17 19:47:54', 'kdKXkBam', '3149476'), + (93559, 1129, 263, 'attending', '2020-07-25 22:22:06', '2025-12-17 19:47:55', 'kdKXkBam', '3149671'), + (93560, 1129, 264, 'not_attending', '2020-08-02 18:09:25', '2025-12-17 19:47:56', 'kdKXkBam', '3150735'), + (93561, 1129, 267, 'attending', '2020-07-28 23:17:56', '2025-12-17 19:47:55', 'kdKXkBam', '3152781'), + (93562, 1129, 269, 'attending', '2020-07-28 22:18:07', '2025-12-17 19:47:55', 'kdKXkBam', '3153076'), + (93563, 1129, 270, 'not_attending', '2020-08-13 22:56:00', '2025-12-17 19:47:56', 'kdKXkBam', '3154457'), + (93564, 1129, 271, 'not_attending', '2020-08-02 18:09:23', '2025-12-17 19:47:56', 'kdKXkBam', '3155321'), + (93565, 1129, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', 'kdKXkBam', '3162006'), + (93566, 1129, 275, 'not_attending', '2020-08-03 20:14:35', '2025-12-17 19:47:56', 'kdKXkBam', '3163405'), + (93567, 1129, 277, 'not_attending', '2020-08-06 14:01:27', '2025-12-17 19:47:56', 'kdKXkBam', '3163442'), + (93568, 1129, 281, 'attending', '2020-08-09 12:18:36', '2025-12-17 19:47:56', 'kdKXkBam', '3166945'), + (93569, 1129, 293, 'not_attending', '2020-08-19 22:37:30', '2025-12-17 19:47:56', 'kdKXkBam', '3172832'), + (93570, 1129, 294, 'not_attending', '2020-08-26 23:45:02', '2025-12-17 19:47:56', 'kdKXkBam', '3172833'), + (93571, 1129, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', 'kdKXkBam', '3172834'), + (93572, 1129, 296, 'not_attending', '2020-08-10 02:04:55', '2025-12-17 19:47:56', 'kdKXkBam', '3172876'), + (93573, 1129, 297, 'not_attending', '2020-08-11 20:24:08', '2025-12-17 19:47:56', 'kdKXkBam', '3173937'), + (93574, 1129, 299, 'not_attending', '2020-08-17 22:58:07', '2025-12-17 19:47:56', 'kdKXkBam', '3176591'), + (93575, 1129, 303, 'attending', '2020-08-13 18:05:50', '2025-12-17 19:47:56', 'kdKXkBam', '3178444'), + (93576, 1129, 304, 'not_attending', '2020-09-07 22:33:53', '2025-12-17 19:47:56', 'kdKXkBam', '3178916'), + (93577, 1129, 305, 'not_attending', '2020-08-17 22:58:11', '2025-12-17 19:47:56', 'kdKXkBam', '3179555'), + (93578, 1129, 308, 'not_attending', '2020-09-02 23:29:58', '2025-12-17 19:47:56', 'kdKXkBam', '3183341'), + (93579, 1129, 310, 'attending', '2020-08-20 18:47:33', '2025-12-17 19:47:56', 'kdKXkBam', '3186005'), + (93580, 1129, 311, 'attending', '2020-09-19 21:31:49', '2025-12-17 19:47:56', 'kdKXkBam', '3186057'), + (93581, 1129, 314, 'attending', '2020-08-24 17:24:52', '2025-12-17 19:47:56', 'kdKXkBam', '3188480'), + (93582, 1129, 317, 'not_attending', '2020-08-29 01:48:26', '2025-12-17 19:47:56', 'kdKXkBam', '3191735'), + (93583, 1129, 335, 'maybe', '2020-09-04 19:02:39', '2025-12-17 19:47:56', 'kdKXkBam', '3200209'), + (93584, 1129, 344, 'not_attending', '2020-10-25 01:49:35', '2025-12-17 19:47:53', 'kdKXkBam', '3206906'), + (93585, 1129, 345, 'attending', '2020-09-09 20:39:40', '2025-12-17 19:47:56', 'kdKXkBam', '3207423'), + (93586, 1129, 346, 'not_attending', '2020-09-15 18:29:34', '2025-12-17 19:47:56', 'kdKXkBam', '3207515'), + (93587, 1129, 348, 'attending', '2020-09-29 21:12:47', '2025-12-17 19:47:52', 'kdKXkBam', '3209159'), + (93588, 1129, 360, 'not_attending', '2020-09-17 22:13:51', '2025-12-17 19:47:56', 'kdKXkBam', '3212671'), + (93589, 1129, 361, 'attending', '2020-09-14 18:46:17', '2025-12-17 19:47:56', 'kdKXkBam', '3213323'), + (93590, 1129, 362, 'not_attending', '2020-09-26 21:18:47', '2025-12-17 19:47:52', 'kdKXkBam', '3214207'), + (93591, 1129, 363, 'maybe', '2020-09-17 10:20:54', '2025-12-17 19:47:52', 'kdKXkBam', '3217037'), + (93592, 1129, 365, 'not_attending', '2020-09-24 06:14:16', '2025-12-17 19:47:52', 'kdKXkBam', '3218510'), + (93593, 1129, 382, 'maybe', '2020-10-13 21:22:33', '2025-12-17 19:47:52', 'kdKXkBam', '3226873'), + (93594, 1129, 385, 'attending', '2020-10-03 21:17:59', '2025-12-17 19:47:52', 'kdKXkBam', '3228698'), + (93595, 1129, 386, 'attending', '2020-10-09 22:47:37', '2025-12-17 19:47:52', 'kdKXkBam', '3228699'), + (93596, 1129, 387, 'attending', '2020-10-17 13:14:16', '2025-12-17 19:47:52', 'kdKXkBam', '3228700'), + (93597, 1129, 388, 'not_attending', '2020-10-24 10:15:56', '2025-12-17 19:47:52', 'kdKXkBam', '3228701'), + (93598, 1129, 390, 'attending', '2020-09-30 22:55:50', '2025-12-17 19:47:52', 'kdKXkBam', '3231510'), + (93599, 1129, 399, 'not_attending', '2020-11-13 00:17:24', '2025-12-17 19:47:54', 'kdKXkBam', '3236454'), + (93600, 1129, 409, 'attending', '2020-12-11 01:00:30', '2025-12-17 19:47:54', 'kdKXkBam', '3236467'), + (93601, 1129, 414, 'attending', '2020-10-05 21:37:25', '2025-12-17 19:47:52', 'kdKXkBam', '3237277'), + (93602, 1129, 416, 'not_attending', '2020-10-09 22:00:03', '2025-12-17 19:47:52', 'kdKXkBam', '3238073'), + (93603, 1129, 417, 'attending', '2020-10-08 11:45:07', '2025-12-17 19:47:52', 'kdKXkBam', '3238779'), + (93604, 1129, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'kdKXkBam', '3245751'), + (93605, 1129, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'kdKXkBam', '3250232'), + (93606, 1129, 429, 'attending', '2020-12-03 12:40:20', '2025-12-17 19:47:54', 'kdKXkBam', '3250523'), + (93607, 1129, 439, 'not_attending', '2020-10-28 13:28:18', '2025-12-17 19:47:53', 'kdKXkBam', '3256164'), + (93608, 1129, 440, 'not_attending', '2020-11-07 01:46:10', '2025-12-17 19:47:53', 'kdKXkBam', '3256168'), + (93609, 1129, 441, 'not_attending', '2020-11-14 23:41:50', '2025-12-17 19:47:54', 'kdKXkBam', '3256169'), + (93610, 1129, 443, 'not_attending', '2020-10-25 21:51:20', '2025-12-17 19:47:53', 'kdKXkBam', '3263578'), + (93611, 1129, 445, 'not_attending', '2020-11-13 00:17:25', '2025-12-17 19:47:54', 'kdKXkBam', '3266138'), + (93612, 1129, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'kdKXkBam', '3276428'), + (93613, 1129, 459, 'attending', '2020-11-08 18:11:38', '2025-12-17 19:47:54', 'kdKXkBam', '3281467'), + (93614, 1129, 462, 'not_attending', '2020-11-10 16:25:11', '2025-12-17 19:47:54', 'kdKXkBam', '3281470'), + (93615, 1129, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'kdKXkBam', '3281829'), + (93616, 1129, 468, 'attending', '2020-11-21 23:47:12', '2025-12-17 19:47:54', 'kdKXkBam', '3285413'), + (93617, 1129, 469, 'attending', '2020-11-28 22:22:53', '2025-12-17 19:47:54', 'kdKXkBam', '3285414'), + (93618, 1129, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'kdKXkBam', '3297764'), + (93619, 1129, 493, 'not_attending', '2020-12-05 19:10:19', '2025-12-17 19:47:54', 'kdKXkBam', '3313856'), + (93620, 1129, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'kdKXkBam', '3314909'), + (93621, 1129, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'kdKXkBam', '3314964'), + (93622, 1129, 502, 'not_attending', '2020-12-12 01:27:39', '2025-12-17 19:47:55', 'kdKXkBam', '3323365'), + (93623, 1129, 513, 'not_attending', '2020-12-19 23:52:13', '2025-12-17 19:47:55', 'kdKXkBam', '3329383'), + (93624, 1129, 514, 'not_attending', '2020-12-12 01:27:43', '2025-12-17 19:47:55', 'kdKXkBam', '3329400'), + (93625, 1129, 516, 'not_attending', '2020-12-27 00:28:39', '2025-12-17 19:47:48', 'kdKXkBam', '3334530'), + (93626, 1129, 524, 'not_attending', '2020-12-19 23:52:12', '2025-12-17 19:47:55', 'kdKXkBam', '3350120'), + (93627, 1129, 526, 'attending', '2021-01-02 05:51:00', '2025-12-17 19:47:48', 'kdKXkBam', '3351539'), + (93628, 1129, 528, 'attending', '2020-12-31 23:53:51', '2025-12-17 19:47:48', 'kdKXkBam', '3363022'), + (93629, 1129, 531, 'attending', '2021-01-02 05:51:05', '2025-12-17 19:47:48', 'kdKXkBam', '3378210'), + (93630, 1129, 536, 'not_attending', '2021-01-09 00:42:55', '2025-12-17 19:47:48', 'kdKXkBam', '3386848'), + (93631, 1129, 540, 'not_attending', '2021-01-07 01:50:33', '2025-12-17 19:47:48', 'kdKXkBam', '3389527'), + (93632, 1129, 541, 'not_attending', '2021-01-09 23:25:36', '2025-12-17 19:47:48', 'kdKXkBam', '3391683'), + (93633, 1129, 543, 'not_attending', '2021-01-16 01:46:23', '2025-12-17 19:47:48', 'kdKXkBam', '3396499'), + (93634, 1129, 548, 'attending', '2021-01-16 04:32:18', '2025-12-17 19:47:48', 'kdKXkBam', '3403650'), + (93635, 1129, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'kdKXkBam', '3406988'), + (93636, 1129, 553, 'attending', '2021-01-16 04:32:16', '2025-12-17 19:47:48', 'kdKXkBam', '3407248'), + (93637, 1129, 555, 'not_attending', '2021-01-23 20:03:47', '2025-12-17 19:47:49', 'kdKXkBam', '3416576'), + (93638, 1129, 558, 'not_attending', '2021-01-19 05:12:49', '2025-12-17 19:47:49', 'kdKXkBam', '3418925'), + (93639, 1129, 561, 'not_attending', '2021-01-23 23:50:00', '2025-12-17 19:47:49', 'kdKXkBam', '3421916'), + (93640, 1129, 568, 'not_attending', '2021-01-30 23:31:48', '2025-12-17 19:47:50', 'kdKXkBam', '3430267'), + (93641, 1129, 569, 'not_attending', '2021-01-27 22:08:42', '2025-12-17 19:47:49', 'kdKXkBam', '3432673'), + (93642, 1129, 571, 'not_attending', '2021-02-13 01:49:11', '2025-12-17 19:47:50', 'kdKXkBam', '3435539'), + (93643, 1129, 575, 'not_attending', '2021-01-30 23:31:47', '2025-12-17 19:47:50', 'kdKXkBam', '3437492'), + (93644, 1129, 579, 'not_attending', '2021-02-06 20:59:05', '2025-12-17 19:47:50', 'kdKXkBam', '3440978'), + (93645, 1129, 580, 'not_attending', '2021-01-30 02:08:16', '2025-12-17 19:47:50', 'kdKXkBam', '3444240'), + (93646, 1129, 600, 'not_attending', '2021-02-06 03:31:38', '2025-12-17 19:47:50', 'kdKXkBam', '3468125'), + (93647, 1129, 602, 'not_attending', '2021-02-13 21:56:05', '2025-12-17 19:47:50', 'kdKXkBam', '3470303'), + (93648, 1129, 603, 'not_attending', '2021-02-20 17:58:19', '2025-12-17 19:47:50', 'kdKXkBam', '3470304'), + (93649, 1129, 604, 'not_attending', '2021-02-27 20:59:18', '2025-12-17 19:47:50', 'kdKXkBam', '3470305'), + (93650, 1129, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', 'kdKXkBam', '3470991'), + (93651, 1129, 609, 'not_attending', '2021-02-13 21:56:04', '2025-12-17 19:47:50', 'kdKXkBam', '3480916'), + (93652, 1129, 619, 'not_attending', '2021-02-20 17:58:18', '2025-12-17 19:47:50', 'kdKXkBam', '3506310'), + (93653, 1129, 621, 'not_attending', '2021-03-06 23:53:44', '2025-12-17 19:47:51', 'kdKXkBam', '3517815'), + (93654, 1129, 622, 'not_attending', '2021-03-14 01:26:13', '2025-12-17 19:47:51', 'kdKXkBam', '3517816'), + (93655, 1129, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:50', 'kdKXkBam', '3523941'), + (93656, 1129, 624, 'not_attending', '2021-02-27 20:59:18', '2025-12-17 19:47:50', 'kdKXkBam', '3528556'), + (93657, 1129, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'kdKXkBam', '3533850'), + (93658, 1129, 637, 'maybe', '2021-03-20 15:19:01', '2025-12-17 19:47:51', 'kdKXkBam', '3536411'), + (93659, 1129, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'kdKXkBam', '3536632'), + (93660, 1129, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'kdKXkBam', '3536656'), + (93661, 1129, 641, 'not_attending', '2021-04-04 23:00:36', '2025-12-17 19:47:44', 'kdKXkBam', '3539916'), + (93662, 1129, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', 'kdKXkBam', '3539917'), + (93663, 1129, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', 'kdKXkBam', '3539918'), + (93664, 1129, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', 'kdKXkBam', '3539919'), + (93665, 1129, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', 'kdKXkBam', '3539920'), + (93666, 1129, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', 'kdKXkBam', '3539921'), + (93667, 1129, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', 'kdKXkBam', '3539922'), + (93668, 1129, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', 'kdKXkBam', '3539923'), + (93669, 1129, 649, 'not_attending', '2021-03-20 15:18:54', '2025-12-17 19:47:51', 'kdKXkBam', '3539927'), + (93670, 1129, 650, 'not_attending', '2021-03-27 20:06:10', '2025-12-17 19:47:44', 'kdKXkBam', '3539928'), + (93671, 1129, 653, 'not_attending', '2021-03-06 23:53:42', '2025-12-17 19:47:51', 'kdKXkBam', '3546917'), + (93672, 1129, 656, 'not_attending', '2021-03-20 15:18:49', '2025-12-17 19:47:51', 'kdKXkBam', '3547130'), + (93673, 1129, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'kdKXkBam', '3582734'), + (93674, 1129, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'kdKXkBam', '3619523'), + (93675, 1129, 718, 'not_attending', '2021-03-27 20:06:09', '2025-12-17 19:47:44', 'kdKXkBam', '3626844'), + (93676, 1129, 992, 'not_attending', '2021-09-17 00:32:00', '2025-12-17 19:47:34', 'kdKXkBam', '4420739'), + (93677, 1129, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'kdKXkBam', '4420741'), + (93678, 1129, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'kdKXkBam', '4420744'), + (93679, 1129, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'kdKXkBam', '4420747'), + (93680, 1129, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'kdKXkBam', '4508342'), + (93681, 1129, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'kdKXkBam', '4568602'), + (93682, 1129, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'kdKXkBam', '4572153'), + (93683, 1129, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'kdKXkBam', '4585962'), + (93684, 1129, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'kdKXkBam', '4596356'), + (93685, 1129, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'kdKXkBam', '4598860'), + (93686, 1129, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'kdKXkBam', '4598861'), + (93687, 1129, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'kdKXkBam', '4602797'), + (93688, 1129, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'kdKXkBam', '4637896'), + (93689, 1129, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'kdKXkBam', '4642994'), + (93690, 1129, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'kdKXkBam', '4642995'), + (93691, 1129, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'kdKXkBam', '4642996'), + (93692, 1129, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'kdKXkBam', '4642997'), + (93693, 1129, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'kdKXkBam', '4645687'), + (93694, 1129, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'kdKXkBam', '4645698'), + (93695, 1129, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'kdKXkBam', '4645704'), + (93696, 1129, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'kdKXkBam', '4645705'), + (93697, 1129, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'kdKXkBam', '4668385'), + (93698, 1129, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'kdKXkBam', '4694407'), + (93699, 1129, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'kdKXkBam', '4736497'), + (93700, 1129, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'kdKXkBam', '4736499'), + (93701, 1129, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'kdKXkBam', '4736500'), + (93702, 1129, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'kdKXkBam', '4736503'), + (93703, 1129, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'kdKXkBam', '4736504'), + (93704, 1129, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'kdKXkBam', '4746789'), + (93705, 1129, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'kdKXkBam', '4753929'), + (93706, 1129, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'kdKXkBam', '5038850'), + (93707, 1129, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'kdKXkBam', '5045826'), + (93708, 1129, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'kdKXkBam', '5132533'), + (93709, 1129, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'kdKXkBam', '5186582'), + (93710, 1129, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'kdKXkBam', '5186583'), + (93711, 1129, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'kdKXkBam', '5186585'), + (93712, 1129, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'kdKXkBam', '5190437'), + (93713, 1129, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'kdKXkBam', '5195095'), + (93714, 1129, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'kdKXkBam', '5215989'), + (93715, 1129, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'kdKXkBam', '5223686'), + (93716, 1129, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'kdKXkBam', '5247467'), + (93717, 1129, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'kdKXkBam', '5260800'), + (93718, 1129, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'kdKXkBam', '5269930'), + (93719, 1129, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'kdKXkBam', '5271448'), + (93720, 1129, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'kdKXkBam', '5271449'), + (93721, 1129, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'kdKXkBam', '5278159'), + (93722, 1129, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'kdKXkBam', '5363695'), + (93723, 1129, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'kdKXkBam', '5365960'), + (93724, 1129, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'kdKXkBam', '5378247'), + (93725, 1129, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'kdKXkBam', '5389605'), + (93726, 1129, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'kdKXkBam', '5397265'), + (93727, 1129, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'kdKXkBam', '5404786'), + (93728, 1129, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'kdKXkBam', '5405203'), + (93729, 1129, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'kdKXkBam', '5412550'), + (93730, 1129, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'kdKXkBam', '5415046'), + (93731, 1129, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'kdKXkBam', '5422086'), + (93732, 1129, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'kdKXkBam', '5422406'), + (93733, 1129, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'kdKXkBam', '5424565'), + (93734, 1129, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'kdKXkBam', '5426882'), + (93735, 1129, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'kdKXkBam', '5441125'), + (93736, 1129, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'kdKXkBam', '5441126'), + (93737, 1129, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'kdKXkBam', '5441128'), + (93738, 1129, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'kdKXkBam', '5441131'), + (93739, 1129, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'kdKXkBam', '5441132'), + (93740, 1129, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'kdKXkBam', '5453325'), + (93741, 1129, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'kdKXkBam', '5454516'), + (93742, 1129, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'kdKXkBam', '5454605'), + (93743, 1129, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'kdKXkBam', '5455037'), + (93744, 1129, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'kdKXkBam', '5461278'), + (93745, 1129, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'kdKXkBam', '5469480'), + (93746, 1129, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'kdKXkBam', '5474663'), + (93747, 1129, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'kdKXkBam', '5482022'), + (93748, 1129, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'kdKXkBam', '5488912'), + (93749, 1129, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'kdKXkBam', '5492192'), + (93750, 1129, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'kdKXkBam', '5493139'), + (93751, 1129, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'kdKXkBam', '5493200'), + (93752, 1129, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'kdKXkBam', '5502188'), + (93753, 1129, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'kdKXkBam', '5505059'), + (93754, 1129, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'kdKXkBam', '5509055'), + (93755, 1129, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'kdKXkBam', '5512862'), + (93756, 1129, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'kdKXkBam', '5513985'), + (93757, 1129, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'kdKXkBam', '5519981'), + (93758, 1129, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'kdKXkBam', '5522550'), + (93759, 1129, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'kdKXkBam', '5534683'), + (93760, 1129, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'kdKXkBam', '5537735'), + (93761, 1129, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'kdKXkBam', '5540859'), + (93762, 1129, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'kdKXkBam', '5546619'), + (93763, 1129, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'kdKXkBam', '5557747'), + (93764, 1129, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'kdKXkBam', '5560255'), + (93765, 1129, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'kdKXkBam', '5562906'), + (93766, 1129, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'kdKXkBam', '5600604'), + (93767, 1129, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'kdKXkBam', '5605544'), + (93768, 1129, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'kdKXkBam', '5630960'), + (93769, 1129, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'kdKXkBam', '5630961'), + (93770, 1129, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'kdKXkBam', '5630962'), + (93771, 1129, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'kdKXkBam', '5630966'), + (93772, 1129, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'kdKXkBam', '5630967'), + (93773, 1129, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'kdKXkBam', '5630968'), + (93774, 1129, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'kdKXkBam', '5635406'), + (93775, 1129, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'kdKXkBam', '5638765'), + (93776, 1129, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'kdKXkBam', '5640097'), + (93777, 1129, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'kdKXkBam', '5640843'), + (93778, 1129, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'kdKXkBam', '5641521'), + (93779, 1129, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'kdKXkBam', '5642818'), + (93780, 1129, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'kdKXkBam', '5652395'), + (93781, 1129, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'kdKXkBam', '5670445'), + (93782, 1129, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'kdKXkBam', '5671637'), + (93783, 1129, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'kdKXkBam', '5672329'), + (93784, 1129, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'kdKXkBam', '5674057'), + (93785, 1129, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'kdKXkBam', '5674060'), + (93786, 1129, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'kdKXkBam', '5677461'), + (93787, 1129, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'kdKXkBam', '5698046'), + (93788, 1129, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'kdKXkBam', '5699760'), + (93789, 1129, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'kdKXkBam', '5741601'), + (93790, 1129, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'kdKXkBam', '5763458'), + (93791, 1129, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'kdKXkBam', '5774172'), + (93792, 1129, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'kdKXkBam', '5818247'), + (93793, 1129, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'kdKXkBam', '5819471'), + (93794, 1129, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:05', 'kdKXkBam', '5827739'), + (93795, 1129, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'kdKXkBam', '5844306'), + (93796, 1129, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'kdKXkBam', '5850159'), + (93797, 1129, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'kdKXkBam', '5858999'), + (93798, 1129, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'kdKXkBam', '5871984'), + (93799, 1129, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'kdKXkBam', '5876354'), + (93800, 1129, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'kdKXkBam', '5880939'), + (93801, 1129, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'kdKXkBam', '5880940'), + (93802, 1129, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'kdKXkBam', '5880942'), + (93803, 1129, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'kdKXkBam', '5880943'), + (93804, 1129, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'kdKXkBam', '5887890'), + (93805, 1129, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'kdKXkBam', '5888598'), + (93806, 1129, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'kdKXkBam', '5893260'), + (93807, 1129, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'kdKXkBam', '5899826'), + (93808, 1129, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'kdKXkBam', '5900199'), + (93809, 1129, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'kdKXkBam', '5900200'), + (93810, 1129, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'kdKXkBam', '5900202'), + (93811, 1129, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'kdKXkBam', '5900203'), + (93812, 1129, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'kdKXkBam', '5901108'), + (93813, 1129, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'kdKXkBam', '5901126'), + (93814, 1129, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'kdKXkBam', '5909655'), + (93815, 1129, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'kdKXkBam', '5910522'), + (93816, 1129, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'kdKXkBam', '5910526'), + (93817, 1129, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'kdKXkBam', '5910528'), + (93818, 1129, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'kdKXkBam', '5916219'), + (93819, 1129, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'kdKXkBam', '5936234'), + (93820, 1129, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'kdKXkBam', '5958351'), + (93821, 1129, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'kdKXkBam', '5959751'), + (93822, 1129, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'kdKXkBam', '5959755'), + (93823, 1129, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'kdKXkBam', '5960055'), + (93824, 1129, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'kdKXkBam', '5961684'), + (93825, 1129, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'kdKXkBam', '5962132'), + (93826, 1129, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'kdKXkBam', '5962133'), + (93827, 1129, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'kdKXkBam', '5962134'), + (93828, 1129, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'kdKXkBam', '5962317'), + (93829, 1129, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'kdKXkBam', '5962318'), + (93830, 1129, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'kdKXkBam', '5965933'), + (93831, 1129, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'kdKXkBam', '5967014'), + (93832, 1129, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'kdKXkBam', '5972815'), + (93833, 1129, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'kdKXkBam', '5974016'), + (93834, 1129, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'kdKXkBam', '5981515'), + (93835, 1129, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'kdKXkBam', '5993516'), + (93836, 1129, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'kdKXkBam', '5998939'), + (93837, 1129, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'kdKXkBam', '6028191'), + (93838, 1129, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'kdKXkBam', '6040066'), + (93839, 1129, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'kdKXkBam', '6042717'), + (93840, 1129, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'kdKXkBam', '6044838'), + (93841, 1129, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'kdKXkBam', '6044839'), + (93842, 1129, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'kdKXkBam', '6045684'), + (93843, 1129, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'kdKXkBam', '6050104'), + (93844, 1129, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'kdKXkBam', '6053195'), + (93845, 1129, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'kdKXkBam', '6053198'), + (93846, 1129, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'kdKXkBam', '6056085'), + (93847, 1129, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'kdKXkBam', '6056916'), + (93848, 1129, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'kdKXkBam', '6059290'), + (93849, 1129, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'kdKXkBam', '6060328'), + (93850, 1129, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'kdKXkBam', '6061037'), + (93851, 1129, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'kdKXkBam', '6061039'), + (93852, 1129, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'kdKXkBam', '6067245'), + (93853, 1129, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'kdKXkBam', '6068094'), + (93854, 1129, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'kdKXkBam', '6068252'), + (93855, 1129, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'kdKXkBam', '6068253'), + (93856, 1129, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'kdKXkBam', '6068254'), + (93857, 1129, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'kdKXkBam', '6068280'), + (93858, 1129, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'kdKXkBam', '6069093'), + (93859, 1129, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'kdKXkBam', '6072528'), + (93860, 1129, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'kdKXkBam', '6079840'), + (93861, 1129, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'kdKXkBam', '6083398'), + (93862, 1129, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'kdKXkBam', '6093504'), + (93863, 1129, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'kdKXkBam', '6097414'), + (93864, 1129, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'kdKXkBam', '6097442'), + (93865, 1129, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'kdKXkBam', '6097684'), + (93866, 1129, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'kdKXkBam', '6098762'), + (93867, 1129, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'kdKXkBam', '6101361'), + (93868, 1129, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'kdKXkBam', '6101362'), + (93869, 1129, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'kdKXkBam', '6103752'), + (93870, 1129, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'kdKXkBam', '6107314'), + (93871, 1129, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'kdKXkBam', '6120034'), + (93872, 1129, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'kdKXkBam', '6136733'), + (93873, 1129, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'kdKXkBam', '6137989'), + (93874, 1129, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'kdKXkBam', '6150864'), + (93875, 1129, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'kdKXkBam', '6155491'), + (93876, 1129, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'kdKXkBam', '6164417'), + (93877, 1129, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'kdKXkBam', '6166388'), + (93878, 1129, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'kdKXkBam', '6176439'), + (93879, 1129, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'kdKXkBam', '6182410'), + (93880, 1129, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'kdKXkBam', '6185812'), + (93881, 1129, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'kdKXkBam', '6187651'), + (93882, 1129, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'kdKXkBam', '6187963'), + (93883, 1129, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'kdKXkBam', '6187964'), + (93884, 1129, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'kdKXkBam', '6187966'), + (93885, 1129, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'kdKXkBam', '6187967'), + (93886, 1129, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'kdKXkBam', '6187969'), + (93887, 1129, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'kdKXkBam', '6334878'), + (93888, 1129, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'kdKXkBam', '6337236'), + (93889, 1129, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'kdKXkBam', '6337970'), + (93890, 1129, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'kdKXkBam', '6338308'), + (93891, 1129, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'kdKXkBam', '6341710'), + (93892, 1129, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'kdKXkBam', '6342044'), + (93893, 1129, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'kdKXkBam', '6342298'), + (93894, 1129, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'kdKXkBam', '6343294'), + (93895, 1129, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'kdKXkBam', '6347034'), + (93896, 1129, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'kdKXkBam', '6347056'), + (93897, 1129, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'kdKXkBam', '6353830'), + (93898, 1129, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'kdKXkBam', '6353831'), + (93899, 1129, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'kdKXkBam', '6357867'), + (93900, 1129, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'kdKXkBam', '6358652'), + (93901, 1129, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'kdKXkBam', '6361709'), + (93902, 1129, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'kdKXkBam', '6361710'), + (93903, 1129, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'kdKXkBam', '6361711'), + (93904, 1129, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'kdKXkBam', '6361712'), + (93905, 1129, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'kdKXkBam', '6361713'), + (93906, 1129, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:56', 'kdKXkBam', '6382573'), + (93907, 1129, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'kdKXkBam', '6388604'), + (93908, 1129, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'kdKXkBam', '6394629'), + (93909, 1129, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'kdKXkBam', '6394631'), + (93910, 1129, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'kdKXkBam', '6440863'), + (93911, 1129, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'kdKXkBam', '6445440'), + (93912, 1129, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'kdKXkBam', '6453951'), + (93913, 1129, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'kdKXkBam', '6461696'), + (93914, 1129, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'kdKXkBam', '6462129'), + (93915, 1129, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'kdKXkBam', '6463218'), + (93916, 1129, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'kdKXkBam', '6472181'), + (93917, 1129, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'kdKXkBam', '6482693'), + (93918, 1129, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'kdKXkBam', '6484200'), + (93919, 1129, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'kdKXkBam', '6484680'), + (93920, 1129, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'kdKXkBam', '6507741'), + (93921, 1129, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'kdKXkBam', '6514659'), + (93922, 1129, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'kdKXkBam', '6514660'), + (93923, 1129, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'kdKXkBam', '6519103'), + (93924, 1129, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'kdKXkBam', '6535681'), + (93925, 1129, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'kdKXkBam', '6584747'), + (93926, 1129, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'kdKXkBam', '6587097'), + (93927, 1129, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'kdKXkBam', '6609022'), + (93928, 1129, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:37', 'kdKXkBam', '6632757'), + (93929, 1129, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'kdKXkBam', '6644187'), + (93930, 1129, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'kdKXkBam', '6648951'), + (93931, 1129, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'kdKXkBam', '6648952'), + (93932, 1129, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'kdKXkBam', '6655401'), + (93933, 1129, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'kdKXkBam', '6661585'), + (93934, 1129, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'kdKXkBam', '6661588'), + (93935, 1129, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'kdKXkBam', '6661589'), + (93936, 1129, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'kdKXkBam', '6699906'), + (93937, 1129, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'kdKXkBam', '6699913'), + (93938, 1129, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'kdKXkBam', '6701109'), + (93939, 1129, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'kdKXkBam', '6705219'), + (93940, 1129, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'kdKXkBam', '6710153'), + (93941, 1129, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'kdKXkBam', '6711552'), + (93942, 1129, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'kdKXkBam', '6711553'), + (93943, 1129, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'kdKXkBam', '6722688'), + (93944, 1129, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'kdKXkBam', '6730620'), + (93945, 1129, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'kdKXkBam', '6740364'), + (93946, 1129, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'kdKXkBam', '6743829'), + (93947, 1129, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'kdKXkBam', '7030380'), + (93948, 1129, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:43', 'kdKXkBam', '7033677'), + (93949, 1129, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'kdKXkBam', '7044715'), + (93950, 1129, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'kdKXkBam', '7050318'), + (93951, 1129, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'kdKXkBam', '7050319'), + (93952, 1129, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'kdKXkBam', '7050322'), + (93953, 1129, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'kdKXkBam', '7057804'), + (93954, 1129, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'kdKXkBam', '7072824'), + (93955, 1129, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'kdKXkBam', '7074348'), + (93956, 1129, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'kdKXkBam', '7074364'), + (93957, 1129, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'kdKXkBam', '7089267'), + (93958, 1129, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'kdKXkBam', '7098747'), + (93959, 1129, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'kdKXkBam', '7113468'), + (93960, 1129, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'kdKXkBam', '7114856'), + (93961, 1129, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'kdKXkBam', '7114951'), + (93962, 1129, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'kdKXkBam', '7114955'), + (93963, 1129, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'kdKXkBam', '7114956'), + (93964, 1129, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'kdKXkBam', '7114957'), + (93965, 1129, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'kdKXkBam', '7159484'), + (93966, 1129, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'kdKXkBam', '7178446'), + (93967, 1129, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'kdKXkBam', '7220467'), + (93968, 1129, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'kdKXkBam', '7240354'), + (93969, 1129, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'kdKXkBam', '7251633'), + (93970, 1129, 2678, 'attending', '2024-06-15 22:29:48', '2025-12-17 19:46:28', 'kdKXkBam', '7319489'), + (93971, 1129, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'kdKXkBam', '7324073'), + (93972, 1129, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'kdKXkBam', '7324074'), + (93973, 1129, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'kdKXkBam', '7324075'), + (93974, 1129, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'kdKXkBam', '7324078'), + (93975, 1129, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'kdKXkBam', '7324082'), + (93976, 1129, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'kdKXkBam', '7331457'), + (93977, 1129, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'kdKXkBam', '7363643'), + (93978, 1129, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'kdKXkBam', '7368606'), + (93979, 1129, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'kdKXkBam', '7397462'), + (93980, 1129, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'kdKXkBam', '7424275'), + (93981, 1129, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'kdKXkBam', '7432751'), + (93982, 1129, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'kdKXkBam', '7432752'), + (93983, 1129, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'kdKXkBam', '7432753'), + (93984, 1129, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'kdKXkBam', '7432754'), + (93985, 1129, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'kdKXkBam', '7432755'), + (93986, 1129, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'kdKXkBam', '7432756'), + (93987, 1129, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'kdKXkBam', '7432758'), + (93988, 1129, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'kdKXkBam', '7432759'), + (93989, 1129, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'kdKXkBam', '7433834'), + (93990, 1129, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', 'kdKXkBam', '7470197'), + (93991, 1129, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'kdKXkBam', '7685613'), + (93992, 1129, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'kdKXkBam', '7688194'), + (93993, 1129, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'kdKXkBam', '7688196'), + (93994, 1129, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'kdKXkBam', '7688289'), + (93995, 1129, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'kdKXkBam', '7692763'), + (93996, 1129, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'kdKXkBam', '7697552'), + (93997, 1129, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'kdKXkBam', '7699878'), + (93998, 1129, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'kdKXkBam', '7704043'), + (93999, 1129, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'kdKXkBam', '7712467'), + (94000, 1129, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'kdKXkBam', '7713585'), + (94001, 1129, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'kdKXkBam', '7713586'), + (94002, 1129, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'kdKXkBam', '7738518'), + (94003, 1129, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'kdKXkBam', '7750636'), + (94004, 1129, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'kdKXkBam', '7796540'), + (94005, 1129, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'kdKXkBam', '7796541'), + (94006, 1129, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'kdKXkBam', '7796542'), + (94007, 1129, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'kdKXkBam', '7825913'), + (94008, 1129, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'kdKXkBam', '7826209'), + (94009, 1129, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'kdKXkBam', '7834742'), + (94010, 1129, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'kdKXkBam', '7842108'), + (94011, 1129, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'kdKXkBam', '7842902'), + (94012, 1129, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'kdKXkBam', '7842903'), + (94013, 1129, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'kdKXkBam', '7842904'), + (94014, 1129, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'kdKXkBam', '7842905'), + (94015, 1129, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'kdKXkBam', '7855719'), + (94016, 1129, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'kdKXkBam', '7860683'), + (94017, 1129, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'kdKXkBam', '7860684'), + (94018, 1129, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'kdKXkBam', '7866095'), + (94019, 1129, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'kdKXkBam', '7869170'), + (94020, 1129, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'kdKXkBam', '7869188'), + (94021, 1129, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'kdKXkBam', '7869201'), + (94022, 1129, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'kdKXkBam', '7877465'), + (94023, 1129, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'kdKXkBam', '7888250'), + (94024, 1129, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'kdKXkBam', '7904777'), + (94025, 1129, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'kdKXkBam', '8349164'), + (94026, 1129, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'kdKXkBam', '8349545'), + (94027, 1129, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'kdKXkBam', '8368028'), + (94028, 1129, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'kdKXkBam', '8368029'), + (94029, 1129, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'kdKXkBam', '8388462'), + (94030, 1129, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'kdKXkBam', '8400273'), + (94031, 1129, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'kdKXkBam', '8400275'), + (94032, 1129, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'kdKXkBam', '8400276'), + (94033, 1129, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'kdKXkBam', '8404977'), + (94034, 1129, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'kdKXkBam', '8430783'), + (94035, 1129, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'kdKXkBam', '8430784'), + (94036, 1129, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'kdKXkBam', '8430799'), + (94037, 1129, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'kdKXkBam', '8430800'), + (94038, 1129, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'kdKXkBam', '8430801'), + (94039, 1129, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'kdKXkBam', '8438709'), + (94040, 1129, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'kdKXkBam', '8457738'), + (94041, 1129, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'kdKXkBam', '8459566'), + (94042, 1129, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'kdKXkBam', '8459567'), + (94043, 1129, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'kdKXkBam', '8461032'), + (94044, 1129, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'kdKXkBam', '8477877'), + (94045, 1129, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'kdKXkBam', '8485688'), + (94046, 1129, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'kdKXkBam', '8490587'), + (94047, 1129, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'kdKXkBam', '8493552'), + (94048, 1129, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'kdKXkBam', '8493553'), + (94049, 1129, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'kdKXkBam', '8493554'), + (94050, 1129, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'kdKXkBam', '8493555'), + (94051, 1129, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'kdKXkBam', '8493556'), + (94052, 1129, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'kdKXkBam', '8493557'), + (94053, 1129, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'kdKXkBam', '8493558'), + (94054, 1129, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'kdKXkBam', '8493559'), + (94055, 1129, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'kdKXkBam', '8493560'), + (94056, 1129, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'kdKXkBam', '8493561'), + (94057, 1129, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'kdKXkBam', '8493572'), + (94058, 1129, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'kdKXkBam', '8540725'), + (94059, 1129, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'kdKXkBam', '8555421'), + (94060, 1130, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '4ZknkYGd', '6045684'), + (94061, 1131, 260, 'not_attending', '2021-06-11 05:28:10', '2025-12-17 19:47:48', 'R40q8LQd', '3149491'), + (94062, 1131, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', 'R40q8LQd', '3149493'), + (94063, 1131, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'R40q8LQd', '3236448'), + (94064, 1131, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'R40q8LQd', '3236450'), + (94065, 1131, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'R40q8LQd', '3974109'), + (94066, 1131, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'R40q8LQd', '3975312'), + (94067, 1131, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'R40q8LQd', '4014338'), + (94068, 1131, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'R40q8LQd', '4021848'), + (94069, 1131, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'R40q8LQd', '4136744'), + (94070, 1131, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'R40q8LQd', '4136937'), + (94071, 1131, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'R40q8LQd', '4136938'), + (94072, 1131, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'R40q8LQd', '4136947'), + (94073, 1131, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'R40q8LQd', '4225444'), + (94074, 1131, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'R40q8LQd', '4229417'), + (94075, 1131, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'R40q8LQd', '4229418'), + (94076, 1131, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'R40q8LQd', '4239259'), + (94077, 1131, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'R40q8LQd', '4250163'), + (94078, 1131, 951, 'attending', '2021-08-29 20:25:14', '2025-12-17 19:47:43', 'R40q8LQd', '4315731'), + (94079, 1131, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'R40q8LQd', '4356801'), + (94080, 1131, 975, 'not_attending', '2021-08-27 14:38:18', '2025-12-17 19:47:42', 'R40q8LQd', '4367341'), + (94081, 1131, 981, 'not_attending', '2021-08-27 14:42:28', '2025-12-17 19:47:42', 'R40q8LQd', '4387305'), + (94082, 1131, 987, 'maybe', '2021-08-31 23:24:56', '2025-12-17 19:47:43', 'R40q8LQd', '4402634'), + (94083, 1131, 988, 'not_attending', '2021-08-27 22:59:26', '2025-12-17 19:47:42', 'R40q8LQd', '4402823'), + (94084, 1131, 990, 'attending', '2021-09-04 20:57:52', '2025-12-17 19:47:43', 'R40q8LQd', '4420735'), + (94085, 1131, 991, 'not_attending', '2021-09-07 17:07:38', '2025-12-17 19:47:43', 'R40q8LQd', '4420738'), + (94086, 1131, 992, 'not_attending', '2021-09-08 04:32:56', '2025-12-17 19:47:34', 'R40q8LQd', '4420739'), + (94087, 1131, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'R40q8LQd', '4420741'), + (94088, 1131, 995, 'not_attending', '2021-10-04 13:58:04', '2025-12-17 19:47:34', 'R40q8LQd', '4420744'), + (94089, 1131, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'R40q8LQd', '4420747'), + (94090, 1131, 1002, 'attending', '2021-08-30 18:42:40', '2025-12-17 19:47:43', 'R40q8LQd', '4424932'), + (94091, 1131, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'R40q8LQd', '4461883'), + (94092, 1131, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'R40q8LQd', '4508342'), + (94093, 1131, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'R40q8LQd', '4568602'), + (94094, 1131, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40q8LQd', '6045684'), + (94095, 1132, 1241, 'attending', '2022-03-23 17:48:24', '2025-12-17 19:47:25', 'dx61xDGA', '5052240'), + (94096, 1132, 1242, 'maybe', '2022-03-30 22:11:58', '2025-12-17 19:47:25', 'dx61xDGA', '5052241'), + (94097, 1132, 1264, 'attending', '2022-03-22 14:45:50', '2025-12-17 19:47:25', 'dx61xDGA', '5160281'), + (94098, 1132, 1274, 'attending', '2022-04-02 19:38:13', '2025-12-17 19:47:26', 'dx61xDGA', '5186585'), + (94099, 1132, 1276, 'maybe', '2022-03-27 19:39:09', '2025-12-17 19:47:25', 'dx61xDGA', '5186820'), + (94100, 1132, 1281, 'not_attending', '2022-04-06 14:19:00', '2025-12-17 19:47:27', 'dx61xDGA', '5190437'), + (94101, 1132, 1284, 'not_attending', '2022-04-16 22:21:55', '2025-12-17 19:47:27', 'dx61xDGA', '5195095'), + (94102, 1132, 1288, 'not_attending', '2022-03-28 14:36:43', '2025-12-17 19:47:25', 'dx61xDGA', '5199460'), + (94103, 1132, 1289, 'attending', '2022-03-23 17:38:11', '2025-12-17 19:47:25', 'dx61xDGA', '5200190'), + (94104, 1132, 1290, 'attending', '2022-03-23 17:48:12', '2025-12-17 19:47:25', 'dx61xDGA', '5200196'), + (94105, 1132, 1294, 'maybe', '2022-04-03 01:40:13', '2025-12-17 19:47:26', 'dx61xDGA', '5214686'), + (94106, 1132, 1295, 'attending', '2022-03-28 14:29:41', '2025-12-17 19:47:25', 'dx61xDGA', '5215609'), + (94107, 1132, 1297, 'maybe', '2022-03-29 14:48:42', '2025-12-17 19:47:26', 'dx61xDGA', '5215989'), + (94108, 1132, 1300, 'attending', '2022-03-30 12:52:27', '2025-12-17 19:47:25', 'dx61xDGA', '5217936'), + (94109, 1132, 1304, 'not_attending', '2022-04-06 14:18:52', '2025-12-17 19:47:26', 'dx61xDGA', '5223468'), + (94110, 1132, 1307, 'attending', '2022-04-04 13:01:17', '2025-12-17 19:47:26', 'dx61xDGA', '5223686'), + (94111, 1132, 1308, 'not_attending', '2022-04-13 15:31:50', '2025-12-17 19:47:27', 'dx61xDGA', '5226703'), + (94112, 1132, 1309, 'not_attending', '2022-04-06 14:19:23', '2025-12-17 19:47:26', 'dx61xDGA', '5227432'), + (94113, 1132, 1316, 'not_attending', '2022-04-14 14:12:03', '2025-12-17 19:47:27', 'dx61xDGA', '5237536'), + (94114, 1132, 1318, 'attending', '2022-04-14 14:31:33', '2025-12-17 19:47:27', 'dx61xDGA', '5238343'), + (94115, 1132, 1319, 'attending', '2022-04-16 22:12:22', '2025-12-17 19:47:27', 'dx61xDGA', '5238353'), + (94116, 1132, 1320, 'not_attending', '2022-04-17 15:03:22', '2025-12-17 19:47:27', 'dx61xDGA', '5238354'), + (94117, 1132, 1322, 'attending', '2022-04-16 00:54:49', '2025-12-17 19:47:27', 'dx61xDGA', '5238356'), + (94118, 1132, 1323, 'not_attending', '2022-04-25 12:15:29', '2025-12-17 19:47:27', 'dx61xDGA', '5238357'), + (94119, 1132, 1324, 'not_attending', '2022-04-24 13:07:48', '2025-12-17 19:47:27', 'dx61xDGA', '5238360'), + (94120, 1132, 1327, 'attending', '2022-04-19 12:24:17', '2025-12-17 19:47:27', 'dx61xDGA', '5238445'), + (94121, 1132, 1330, 'attending', '2022-04-15 00:39:57', '2025-12-17 19:47:27', 'dx61xDGA', '5242155'), + (94122, 1132, 1331, 'attending', '2022-04-15 00:39:59', '2025-12-17 19:47:27', 'dx61xDGA', '5242156'), + (94123, 1132, 1332, 'attending', '2022-04-13 20:38:47', '2025-12-17 19:47:27', 'dx61xDGA', '5243274'), + (94124, 1132, 1337, 'attending', '2022-04-20 14:12:00', '2025-12-17 19:47:27', 'dx61xDGA', '5245036'), + (94125, 1132, 1340, 'not_attending', '2022-04-25 12:15:37', '2025-12-17 19:47:27', 'dx61xDGA', '5245754'), + (94126, 1132, 1341, 'not_attending', '2022-04-25 02:55:29', '2025-12-17 19:47:28', 'dx61xDGA', '5245755'), + (94127, 1132, 1346, 'attending', '2022-04-20 23:06:25', '2025-12-17 19:47:27', 'dx61xDGA', '5247467'), + (94128, 1132, 1348, 'attending', '2022-04-18 15:02:58', '2025-12-17 19:47:28', 'dx61xDGA', '5247605'), + (94129, 1132, 1351, 'not_attending', '2022-05-02 13:59:53', '2025-12-17 19:47:28', 'dx61xDGA', '5251561'), + (94130, 1132, 1354, 'not_attending', '2022-04-23 20:41:18', '2025-12-17 19:47:27', 'dx61xDGA', '5252569'), + (94131, 1132, 1359, 'not_attending', '2022-05-02 14:00:22', '2025-12-17 19:47:28', 'dx61xDGA', '5258360'), + (94132, 1132, 1362, 'attending', '2022-04-25 19:48:41', '2025-12-17 19:47:28', 'dx61xDGA', '5260800'), + (94133, 1132, 1364, 'attending', '2022-04-28 15:17:11', '2025-12-17 19:47:28', 'dx61xDGA', '5261598'), + (94134, 1132, 1366, 'attending', '2022-04-26 20:53:11', '2025-12-17 19:47:27', 'dx61xDGA', '5262344'), + (94135, 1132, 1367, 'attending', '2022-04-26 20:53:13', '2025-12-17 19:47:28', 'dx61xDGA', '5262345'), + (94136, 1132, 1369, 'not_attending', '2022-05-03 23:18:10', '2025-12-17 19:47:28', 'dx61xDGA', '5262809'), + (94137, 1132, 1372, 'attending', '2022-05-03 12:58:54', '2025-12-17 19:47:28', 'dx61xDGA', '5264352'), + (94138, 1132, 1374, 'attending', '2022-04-30 21:44:11', '2025-12-17 19:47:28', 'dx61xDGA', '5269930'), + (94139, 1132, 1376, 'not_attending', '2022-05-12 20:27:41', '2025-12-17 19:47:28', 'dx61xDGA', '5271446'), + (94140, 1132, 1377, 'not_attending', '2022-05-12 20:27:49', '2025-12-17 19:47:28', 'dx61xDGA', '5271447'), + (94141, 1132, 1378, 'not_attending', '2022-05-12 20:28:01', '2025-12-17 19:47:29', 'dx61xDGA', '5271448'), + (94142, 1132, 1379, 'not_attending', '2022-05-21 21:52:28', '2025-12-17 19:47:30', 'dx61xDGA', '5271449'), + (94143, 1132, 1380, 'not_attending', '2022-05-27 17:53:09', '2025-12-17 19:47:30', 'dx61xDGA', '5271450'), + (94144, 1132, 1383, 'not_attending', '2022-05-12 20:27:48', '2025-12-17 19:47:28', 'dx61xDGA', '5276469'), + (94145, 1132, 1385, 'not_attending', '2022-05-11 13:26:56', '2025-12-17 19:47:28', 'dx61xDGA', '5277822'), + (94146, 1132, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dx61xDGA', '5278159'), + (94147, 1132, 1390, 'not_attending', '2022-05-12 20:28:05', '2025-12-17 19:47:28', 'dx61xDGA', '5279509'), + (94148, 1132, 1392, 'attending', '2022-05-10 13:31:15', '2025-12-17 19:47:28', 'dx61xDGA', '5279532'), + (94149, 1132, 1403, 'maybe', '2022-05-17 12:23:17', '2025-12-17 19:47:29', 'dx61xDGA', '5288052'), + (94150, 1132, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dx61xDGA', '5363695'), + (94151, 1132, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dx61xDGA', '5365960'), + (94152, 1132, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dx61xDGA', '5368973'), + (94153, 1132, 1424, 'attending', '2022-05-24 13:09:46', '2025-12-17 19:47:30', 'dx61xDGA', '5375772'), + (94154, 1132, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dx61xDGA', '5378247'), + (94155, 1132, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dx61xDGA', '5389605'), + (94156, 1132, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dx61xDGA', '5397265'), + (94157, 1132, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dx61xDGA', '5403967'), + (94158, 1132, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dx61xDGA', '5404786'), + (94159, 1132, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dx61xDGA', '5405203'), + (94160, 1132, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:19', 'dx61xDGA', '5408794'), + (94161, 1132, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dx61xDGA', '5411699'), + (94162, 1132, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dx61xDGA', '5412550'), + (94163, 1132, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dx61xDGA', '5415046'), + (94164, 1132, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dx61xDGA', '5422086'), + (94165, 1132, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dx61xDGA', '5422406'), + (94166, 1132, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dx61xDGA', '5424565'), + (94167, 1132, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dx61xDGA', '5426882'), + (94168, 1132, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dx61xDGA', '5427083'), + (94169, 1132, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dx61xDGA', '5441125'), + (94170, 1132, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dx61xDGA', '5441126'), + (94171, 1132, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dx61xDGA', '5441128'), + (94172, 1132, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dx61xDGA', '5446643'), + (94173, 1132, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dx61xDGA', '5453325'), + (94174, 1132, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dx61xDGA', '5454516'), + (94175, 1132, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dx61xDGA', '5454605'), + (94176, 1132, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dx61xDGA', '5455037'), + (94177, 1132, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dx61xDGA', '5461278'), + (94178, 1132, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dx61xDGA', '5469480'), + (94179, 1132, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dx61xDGA', '5471073'), + (94180, 1132, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dx61xDGA', '5474663'), + (94181, 1132, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dx61xDGA', '5482022'), + (94182, 1132, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dx61xDGA', '5482793'), + (94183, 1132, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dx61xDGA', '5488912'), + (94184, 1132, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dx61xDGA', '5492192'), + (94185, 1132, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dx61xDGA', '5493139'), + (94186, 1132, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dx61xDGA', '5493200'), + (94187, 1132, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dx61xDGA', '5502188'), + (94188, 1132, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dx61xDGA', '5512862'), + (94189, 1132, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dx61xDGA', '5513985'), + (94190, 1132, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dx61xDGA', '6045684'), + (94191, 1133, 857, 'attending', '2021-11-16 23:38:16', '2025-12-17 19:47:37', '4oMDG0nm', '4015731'), + (94192, 1133, 993, 'attending', '2021-09-24 22:23:11', '2025-12-17 19:47:34', '4oMDG0nm', '4420741'), + (94193, 1133, 994, 'attending', '2021-10-02 18:52:29', '2025-12-17 19:47:34', '4oMDG0nm', '4420742'), + (94194, 1133, 995, 'attending', '2021-09-26 13:12:25', '2025-12-17 19:47:34', '4oMDG0nm', '4420744'), + (94195, 1133, 996, 'attending', '2021-09-26 14:37:05', '2025-12-17 19:47:35', '4oMDG0nm', '4420747'), + (94196, 1133, 997, 'attending', '2021-09-26 14:37:08', '2025-12-17 19:47:35', '4oMDG0nm', '4420748'), + (94197, 1133, 998, 'attending', '2021-09-26 14:37:10', '2025-12-17 19:47:36', '4oMDG0nm', '4420749'), + (94198, 1133, 1006, 'not_attending', '2021-09-24 19:35:45', '2025-12-17 19:47:34', '4oMDG0nm', '4438808'), + (94199, 1133, 1007, 'attending', '2021-09-29 15:35:40', '2025-12-17 19:47:34', '4oMDG0nm', '4438809'), + (94200, 1133, 1009, 'not_attending', '2021-10-07 13:08:33', '2025-12-17 19:47:34', '4oMDG0nm', '4438811'), + (94201, 1133, 1040, 'attending', '2021-12-11 06:46:32', '2025-12-17 19:47:38', '4oMDG0nm', '4496605'), + (94202, 1133, 1049, 'attending', '2022-01-22 22:47:09', '2025-12-17 19:47:32', '4oMDG0nm', '4496614'), + (94203, 1133, 1050, 'attending', '2022-01-22 22:47:09', '2025-12-17 19:47:32', '4oMDG0nm', '4496615'), + (94204, 1133, 1051, 'attending', '2022-02-01 23:06:08', '2025-12-17 19:47:32', '4oMDG0nm', '4496616'), + (94205, 1133, 1052, 'attending', '2022-01-14 18:25:50', '2025-12-17 19:47:31', '4oMDG0nm', '4496617'), + (94206, 1133, 1055, 'attending', '2021-12-18 16:17:42', '2025-12-17 19:47:31', '4oMDG0nm', '4496621'), + (94207, 1133, 1056, 'attending', '2022-01-03 20:33:58', '2025-12-17 19:47:31', '4oMDG0nm', '4496622'), + (94208, 1133, 1059, 'attending', '2022-03-06 16:24:27', '2025-12-17 19:47:33', '4oMDG0nm', '4496626'), + (94209, 1133, 1061, 'attending', '2022-02-10 06:44:12', '2025-12-17 19:47:32', '4oMDG0nm', '4496628'), + (94210, 1133, 1062, 'attending', '2022-02-27 21:30:56', '2025-12-17 19:47:33', '4oMDG0nm', '4496629'), + (94211, 1133, 1068, 'attending', '2021-09-26 20:34:38', '2025-12-17 19:47:34', '4oMDG0nm', '4511471'), + (94212, 1133, 1069, 'attending', '2021-09-24 19:35:33', '2025-12-17 19:47:34', '4oMDG0nm', '4512090'), + (94213, 1133, 1070, 'attending', '2021-09-26 13:12:01', '2025-12-17 19:47:34', '4oMDG0nm', '4512562'), + (94214, 1133, 1071, 'attending', '2021-09-26 22:27:29', '2025-12-17 19:47:34', '4oMDG0nm', '4516078'), + (94215, 1133, 1072, 'attending', '2021-10-03 18:01:28', '2025-12-17 19:47:34', '4oMDG0nm', '4516287'), + (94216, 1133, 1074, 'attending', '2021-09-29 20:41:45', '2025-12-17 19:47:34', '4oMDG0nm', '4528953'), + (94217, 1133, 1075, 'attending', '2021-10-06 04:02:29', '2025-12-17 19:47:34', '4oMDG0nm', '4536351'), + (94218, 1133, 1077, 'attending', '2021-10-04 21:50:13', '2025-12-17 19:47:34', '4oMDG0nm', '4540903'), + (94219, 1133, 1078, 'attending', '2021-10-04 21:50:05', '2025-12-17 19:47:34', '4oMDG0nm', '4541281'), + (94220, 1133, 1079, 'attending', '2021-10-20 02:30:14', '2025-12-17 19:47:35', '4oMDG0nm', '4563823'), + (94221, 1133, 1082, 'attending', '2021-10-11 22:53:40', '2025-12-17 19:47:35', '4oMDG0nm', '4566762'), + (94222, 1133, 1083, 'not_attending', '2021-10-14 17:45:31', '2025-12-17 19:47:34', '4oMDG0nm', '4566768'), + (94223, 1133, 1085, 'attending', '2021-12-18 23:47:02', '2025-12-17 19:47:31', '4oMDG0nm', '4568542'), + (94224, 1133, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '4oMDG0nm', '4568602'), + (94225, 1133, 1087, 'not_attending', '2021-10-15 14:03:18', '2025-12-17 19:47:35', '4oMDG0nm', '4572153'), + (94226, 1133, 1088, 'attending', '2021-10-22 02:47:44', '2025-12-17 19:47:35', '4oMDG0nm', '4574382'), + (94227, 1133, 1089, 'not_attending', '2021-10-17 22:55:40', '2025-12-17 19:47:35', '4oMDG0nm', '4574712'), + (94228, 1133, 1090, 'attending', '2021-10-16 16:34:22', '2025-12-17 19:47:35', '4oMDG0nm', '4574713'), + (94229, 1133, 1091, 'attending', '2021-10-17 22:55:41', '2025-12-17 19:47:35', '4oMDG0nm', '4575829'), + (94230, 1133, 1092, 'attending', '2021-10-19 22:26:14', '2025-12-17 19:47:35', '4oMDG0nm', '4582837'), + (94231, 1133, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '4oMDG0nm', '4585962'), + (94232, 1133, 1094, 'attending', '2021-10-21 03:39:29', '2025-12-17 19:47:36', '4oMDG0nm', '4587337'), + (94233, 1133, 1095, 'attending', '2021-10-27 01:05:52', '2025-12-17 19:47:35', '4oMDG0nm', '4596356'), + (94234, 1133, 1096, 'attending', '2021-10-27 01:05:49', '2025-12-17 19:47:36', '4oMDG0nm', '4596453'), + (94235, 1133, 1097, 'attending', '2021-10-28 02:33:06', '2025-12-17 19:47:36', '4oMDG0nm', '4598860'), + (94236, 1133, 1098, 'attending', '2021-10-28 02:34:14', '2025-12-17 19:47:36', '4oMDG0nm', '4598861'), + (94237, 1133, 1099, 'attending', '2021-10-31 04:30:59', '2025-12-17 19:47:36', '4oMDG0nm', '4602797'), + (94238, 1133, 1101, 'attending', '2021-11-03 05:34:44', '2025-12-17 19:47:36', '4oMDG0nm', '4607339'), + (94239, 1133, 1103, 'attending', '2021-11-07 04:02:07', '2025-12-17 19:47:36', '4oMDG0nm', '4616350'), + (94240, 1133, 1106, 'not_attending', '2021-11-12 22:28:48', '2025-12-17 19:47:36', '4oMDG0nm', '4620452'), + (94241, 1133, 1108, 'attending', '2021-11-11 15:28:06', '2025-12-17 19:47:37', '4oMDG0nm', '4632276'), + (94242, 1133, 1109, 'not_attending', '2021-11-20 23:09:49', '2025-12-17 19:47:37', '4oMDG0nm', '4635221'), + (94243, 1133, 1111, 'not_attending', '2021-11-20 23:09:48', '2025-12-17 19:47:31', '4oMDG0nm', '4635279'), + (94244, 1133, 1112, 'not_attending', '2021-11-27 21:59:39', '2025-12-17 19:47:37', '4oMDG0nm', '4635420'), + (94245, 1133, 1114, 'attending', '2021-11-11 16:17:23', '2025-12-17 19:47:36', '4oMDG0nm', '4637896'), + (94246, 1133, 1115, 'attending', '2021-11-12 00:45:21', '2025-12-17 19:47:37', '4oMDG0nm', '4638673'), + (94247, 1133, 1116, 'attending', '2021-11-13 00:49:05', '2025-12-17 19:47:37', '4oMDG0nm', '4642994'), + (94248, 1133, 1117, 'not_attending', '2021-12-08 17:43:17', '2025-12-17 19:47:38', '4oMDG0nm', '4642995'), + (94249, 1133, 1118, 'attending', '2021-11-13 00:49:08', '2025-12-17 19:47:38', '4oMDG0nm', '4642996'), + (94250, 1133, 1119, 'attending', '2021-11-13 00:49:02', '2025-12-17 19:47:31', '4oMDG0nm', '4642997'), + (94251, 1133, 1124, 'attending', '2021-12-11 19:04:33', '2025-12-17 19:47:38', '4oMDG0nm', '4644025'), + (94252, 1133, 1125, 'attending', '2021-12-20 23:29:14', '2025-12-17 19:47:31', '4oMDG0nm', '4644027'), + (94253, 1133, 1126, 'attending', '2021-11-16 23:22:43', '2025-12-17 19:47:38', '4oMDG0nm', '4645687'), + (94254, 1133, 1127, 'attending', '2021-12-09 20:29:14', '2025-12-17 19:47:38', '4oMDG0nm', '4645698'), + (94255, 1133, 1128, 'attending', '2021-11-16 23:22:21', '2025-12-17 19:47:37', '4oMDG0nm', '4645704'), + (94256, 1133, 1129, 'not_attending', '2021-11-29 22:07:56', '2025-12-17 19:47:37', '4oMDG0nm', '4645705'), + (94257, 1133, 1130, 'not_attending', '2021-12-03 04:56:46', '2025-12-17 19:47:37', '4oMDG0nm', '4658824'), + (94258, 1133, 1131, 'attending', '2021-12-13 01:04:49', '2025-12-17 19:47:31', '4oMDG0nm', '4658825'), + (94259, 1133, 1132, 'attending', '2021-11-21 19:49:00', '2025-12-17 19:47:37', '4oMDG0nm', '4660657'), + (94260, 1133, 1133, 'attending', '2021-11-22 00:37:16', '2025-12-17 19:47:37', '4oMDG0nm', '4661671'), + (94261, 1133, 1134, 'attending', '2021-11-24 15:02:11', '2025-12-17 19:47:37', '4oMDG0nm', '4668385'), + (94262, 1133, 1135, 'attending', '2021-11-25 04:19:56', '2025-12-17 19:47:37', '4oMDG0nm', '4670469'), + (94263, 1133, 1136, 'attending', '2021-11-25 05:05:24', '2025-12-17 19:47:37', '4oMDG0nm', '4670473'), + (94264, 1133, 1139, 'not_attending', '2021-11-30 03:35:43', '2025-12-17 19:47:37', '4oMDG0nm', '4675604'), + (94265, 1133, 1141, 'attending', '2021-12-01 00:13:56', '2025-12-17 19:47:37', '4oMDG0nm', '4680695'), + (94266, 1133, 1142, 'attending', '2021-12-06 20:48:31', '2025-12-17 19:47:37', '4oMDG0nm', '4681923'), + (94267, 1133, 1143, 'attending', '2021-12-01 21:48:02', '2025-12-17 19:47:37', '4oMDG0nm', '4683667'), + (94268, 1133, 1145, 'attending', '2021-12-06 15:47:51', '2025-12-17 19:47:38', '4oMDG0nm', '4691157'), + (94269, 1133, 1147, 'not_attending', '2021-12-09 01:47:31', '2025-12-17 19:47:38', '4oMDG0nm', '4692842'), + (94270, 1133, 1148, 'attending', '2021-12-17 23:55:46', '2025-12-17 19:47:31', '4oMDG0nm', '4692843'), + (94271, 1133, 1149, 'not_attending', '2021-12-08 05:22:13', '2025-12-17 19:47:38', '4oMDG0nm', '4694407'), + (94272, 1133, 1150, 'attending', '2021-12-13 00:52:01', '2025-12-17 19:47:38', '4oMDG0nm', '4706262'), + (94273, 1133, 1151, 'not_attending', '2022-01-05 07:25:47', '2025-12-17 19:47:31', '4oMDG0nm', '4708704'), + (94274, 1133, 1152, 'not_attending', '2022-01-12 20:28:03', '2025-12-17 19:47:31', '4oMDG0nm', '4708705'), + (94275, 1133, 1153, 'not_attending', '2022-01-19 23:33:08', '2025-12-17 19:47:32', '4oMDG0nm', '4708707'), + (94276, 1133, 1159, 'attending', '2021-12-21 00:13:31', '2025-12-17 19:47:31', '4oMDG0nm', '4717532'), + (94277, 1133, 1162, 'attending', '2022-01-03 20:33:47', '2025-12-17 19:47:31', '4oMDG0nm', '4718771'), + (94278, 1133, 1171, 'not_attending', '2022-01-04 17:12:54', '2025-12-17 19:47:31', '4oMDG0nm', '4733292'), + (94279, 1133, 1173, 'attending', '2022-01-03 20:33:52', '2025-12-17 19:47:31', '4oMDG0nm', '4736495'), + (94280, 1133, 1174, 'attending', '2022-01-09 20:22:35', '2025-12-17 19:47:31', '4oMDG0nm', '4736496'), + (94281, 1133, 1175, 'attending', '2022-01-22 02:32:18', '2025-12-17 19:47:32', '4oMDG0nm', '4736497'), + (94282, 1133, 1176, 'attending', '2022-02-05 00:51:54', '2025-12-17 19:47:32', '4oMDG0nm', '4736498'), + (94283, 1133, 1177, 'attending', '2022-02-09 20:12:14', '2025-12-17 19:47:32', '4oMDG0nm', '4736499'), + (94284, 1133, 1178, 'attending', '2022-01-22 22:47:09', '2025-12-17 19:47:32', '4oMDG0nm', '4736500'), + (94285, 1133, 1179, 'attending', '2022-02-13 05:31:57', '2025-12-17 19:47:32', '4oMDG0nm', '4736501'), + (94286, 1133, 1180, 'not_attending', '2022-02-27 00:37:50', '2025-12-17 19:47:33', '4oMDG0nm', '4736502'), + (94287, 1133, 1181, 'attending', '2022-02-27 21:30:53', '2025-12-17 19:47:33', '4oMDG0nm', '4736503'), + (94288, 1133, 1182, 'not_attending', '2022-03-12 18:26:35', '2025-12-17 19:47:33', '4oMDG0nm', '4736504'), + (94289, 1133, 1184, 'not_attending', '2022-01-12 20:28:10', '2025-12-17 19:47:31', '4oMDG0nm', '4742350'), + (94290, 1133, 1185, 'not_attending', '2022-01-12 20:28:08', '2025-12-17 19:47:31', '4oMDG0nm', '4746789'), + (94291, 1133, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '4oMDG0nm', '4753929'), + (94292, 1133, 1203, 'attending', '2022-01-22 19:25:12', '2025-12-17 19:47:32', '4oMDG0nm', '4773535'), + (94293, 1133, 1204, 'attending', '2022-02-13 05:39:28', '2025-12-17 19:47:32', '4oMDG0nm', '4773576'), + (94294, 1133, 1205, 'attending', '2022-03-06 16:24:40', '2025-12-17 19:47:33', '4oMDG0nm', '4773577'), + (94295, 1133, 1206, 'attending', '2022-03-23 15:15:58', '2025-12-17 19:47:27', '4oMDG0nm', '4773578'), + (94296, 1133, 1207, 'attending', '2022-05-04 16:11:20', '2025-12-17 19:47:28', '4oMDG0nm', '4773579'), + (94297, 1133, 1223, 'attending', '2022-01-30 04:52:31', '2025-12-17 19:47:32', '4oMDG0nm', '5015635'), + (94298, 1133, 1225, 'attending', '2022-01-31 23:48:57', '2025-12-17 19:47:32', '4oMDG0nm', '5019063'), + (94299, 1133, 1231, 'not_attending', '2022-02-24 19:48:29', '2025-12-17 19:47:33', '4oMDG0nm', '5037637'), + (94300, 1133, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '4oMDG0nm', '5038850'), + (94301, 1133, 1236, 'not_attending', '2022-02-17 17:30:23', '2025-12-17 19:47:32', '4oMDG0nm', '5045826'), + (94302, 1133, 1254, 'attending', '2022-02-28 22:26:31', '2025-12-17 19:47:33', '4oMDG0nm', '5129129'), + (94303, 1133, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '4oMDG0nm', '5132533'), + (94304, 1133, 1272, 'attending', '2022-03-15 20:49:23', '2025-12-17 19:47:25', '4oMDG0nm', '5186582'), + (94305, 1133, 1273, 'attending', '2022-03-15 20:49:26', '2025-12-17 19:47:25', '4oMDG0nm', '5186583'), + (94306, 1133, 1274, 'attending', '2022-03-15 20:49:31', '2025-12-17 19:47:26', '4oMDG0nm', '5186585'), + (94307, 1133, 1281, 'attending', '2022-03-17 16:00:14', '2025-12-17 19:47:27', '4oMDG0nm', '5190437'), + (94308, 1133, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', '4oMDG0nm', '5195095'), + (94309, 1133, 1293, 'attending', '2022-03-27 20:17:29', '2025-12-17 19:47:27', '4oMDG0nm', '5214641'), + (94310, 1133, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:26', '4oMDG0nm', '5215989'), + (94311, 1133, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '4oMDG0nm', '5223686'), + (94312, 1133, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '4oMDG0nm', '5227432'), + (94313, 1133, 1310, 'attending', '2022-04-08 01:00:22', '2025-12-17 19:47:27', '4oMDG0nm', '5231071'), + (94314, 1133, 1311, 'attending', '2022-04-08 02:44:30', '2025-12-17 19:47:27', '4oMDG0nm', '5231430'), + (94315, 1133, 1313, 'not_attending', '2022-04-08 03:31:01', '2025-12-17 19:47:27', '4oMDG0nm', '5231461'), + (94316, 1133, 1316, 'not_attending', '2022-04-12 13:53:21', '2025-12-17 19:47:27', '4oMDG0nm', '5237536'), + (94317, 1133, 1346, 'attending', '2022-04-17 21:44:26', '2025-12-17 19:47:27', '4oMDG0nm', '5247467'), + (94318, 1133, 1348, 'attending', '2022-04-18 00:19:21', '2025-12-17 19:47:28', '4oMDG0nm', '5247605'), + (94319, 1133, 1349, 'not_attending', '2022-04-19 16:08:24', '2025-12-17 19:47:27', '4oMDG0nm', '5249631'), + (94320, 1133, 1362, 'attending', '2022-04-25 17:57:05', '2025-12-17 19:47:28', '4oMDG0nm', '5260800'), + (94321, 1133, 1374, 'attending', '2022-04-30 19:52:14', '2025-12-17 19:47:28', '4oMDG0nm', '5269930'), + (94322, 1133, 1378, 'not_attending', '2022-05-14 22:54:57', '2025-12-17 19:47:29', '4oMDG0nm', '5271448'), + (94323, 1133, 1379, 'attending', '2022-05-04 16:11:12', '2025-12-17 19:47:29', '4oMDG0nm', '5271449'), + (94324, 1133, 1380, 'attending', '2022-05-27 15:58:23', '2025-12-17 19:47:30', '4oMDG0nm', '5271450'), + (94325, 1133, 1383, 'not_attending', '2022-05-13 22:45:33', '2025-12-17 19:47:28', '4oMDG0nm', '5276469'), + (94326, 1133, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '4oMDG0nm', '5278159'), + (94327, 1133, 1395, 'attending', '2022-05-07 16:28:52', '2025-12-17 19:47:28', '4oMDG0nm', '5281102'), + (94328, 1133, 1396, 'attending', '2022-05-07 16:28:53', '2025-12-17 19:47:28', '4oMDG0nm', '5281103'), + (94329, 1133, 1397, 'attending', '2022-05-07 16:28:56', '2025-12-17 19:47:29', '4oMDG0nm', '5281104'), + (94330, 1133, 1407, 'attending', '2022-06-02 18:44:11', '2025-12-17 19:47:30', '4oMDG0nm', '5363695'), + (94331, 1133, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '4oMDG0nm', '5365960'), + (94332, 1133, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', '4oMDG0nm', '5368973'), + (94333, 1133, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', '4oMDG0nm', '5378247'), + (94334, 1133, 1431, 'attending', '2022-06-03 03:11:03', '2025-12-17 19:47:30', '4oMDG0nm', '5389605'), + (94335, 1133, 1442, 'attending', '2022-06-03 03:11:05', '2025-12-17 19:47:17', '4oMDG0nm', '5397265'), + (94336, 1133, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', '4oMDG0nm', '5403967'), + (94337, 1133, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '4oMDG0nm', '5404786'), + (94338, 1133, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '4oMDG0nm', '5405203'), + (94339, 1133, 1465, 'attending', '2022-06-12 02:56:59', '2025-12-17 19:47:31', '4oMDG0nm', '5406355'), + (94340, 1133, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', '4oMDG0nm', '5411699'), + (94341, 1133, 1482, 'attending', '2022-06-19 23:25:45', '2025-12-17 19:47:19', '4oMDG0nm', '5412550'), + (94342, 1133, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', '4oMDG0nm', '5415046'), + (94343, 1133, 1494, 'attending', '2022-06-25 15:22:35', '2025-12-17 19:47:19', '4oMDG0nm', '5421626'), + (94344, 1133, 1495, 'attending', '2022-06-26 03:32:05', '2025-12-17 19:47:19', '4oMDG0nm', '5422086'), + (94345, 1133, 1498, 'attending', '2022-06-26 18:06:57', '2025-12-17 19:47:19', '4oMDG0nm', '5422406'), + (94346, 1133, 1499, 'attending', '2022-06-26 18:08:55', '2025-12-17 19:47:19', '4oMDG0nm', '5422407'), + (94347, 1133, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '4oMDG0nm', '5424565'), + (94348, 1133, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', '4oMDG0nm', '5426882'), + (94349, 1133, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', '4oMDG0nm', '5427083'), + (94350, 1133, 1513, 'attending', '2022-07-12 13:49:30', '2025-12-17 19:47:19', '4oMDG0nm', '5441125'), + (94351, 1133, 1514, 'not_attending', '2022-07-12 13:49:33', '2025-12-17 19:47:20', '4oMDG0nm', '5441126'), + (94352, 1133, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', '4oMDG0nm', '5441128'), + (94353, 1133, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '4oMDG0nm', '5446643'), + (94354, 1133, 1531, 'attending', '2022-07-16 21:11:27', '2025-12-17 19:47:19', '4oMDG0nm', '5448756'), + (94355, 1133, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '4oMDG0nm', '5453325'), + (94356, 1133, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '4oMDG0nm', '5454516'), + (94357, 1133, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '4oMDG0nm', '5454605'), + (94358, 1133, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '4oMDG0nm', '5455037'), + (94359, 1133, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '4oMDG0nm', '5469480'), + (94360, 1133, 1565, 'not_attending', '2022-07-25 22:36:45', '2025-12-17 19:47:21', '4oMDG0nm', '5471073'), + (94361, 1133, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '4oMDG0nm', '5474663'), + (94362, 1133, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '4oMDG0nm', '5482022'), + (94363, 1133, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '4oMDG0nm', '5482793'), + (94364, 1133, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '4oMDG0nm', '5880940'), + (94365, 1133, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4oMDG0nm', '5880942'), + (94366, 1133, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4oMDG0nm', '5880943'), + (94367, 1133, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '4oMDG0nm', '5900199'), + (94368, 1133, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4oMDG0nm', '5900200'), + (94369, 1133, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4oMDG0nm', '5900202'), + (94370, 1133, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4oMDG0nm', '5900203'), + (94371, 1133, 1895, 'not_attending', '2023-02-03 03:04:24', '2025-12-17 19:47:06', '4oMDG0nm', '5901108'), + (94372, 1133, 1896, 'attending', '2023-02-02 06:20:44', '2025-12-17 19:47:06', '4oMDG0nm', '5901126'), + (94373, 1133, 1897, 'maybe', '2023-02-07 03:59:21', '2025-12-17 19:47:07', '4oMDG0nm', '5901128'), + (94374, 1133, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '4oMDG0nm', '5909655'), + (94375, 1133, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '4oMDG0nm', '5910522'), + (94376, 1133, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '4oMDG0nm', '5910526'), + (94377, 1133, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '4oMDG0nm', '5910528'), + (94378, 1133, 1922, 'not_attending', '2023-02-13 03:40:23', '2025-12-17 19:47:07', '4oMDG0nm', '5916219'), + (94379, 1133, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4oMDG0nm', '5936234'), + (94380, 1133, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4oMDG0nm', '5958351'), + (94381, 1133, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4oMDG0nm', '5959751'), + (94382, 1133, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4oMDG0nm', '5959755'), + (94383, 1133, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4oMDG0nm', '5960055'), + (94384, 1133, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4oMDG0nm', '5961684'), + (94385, 1133, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4oMDG0nm', '5962132'), + (94386, 1133, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4oMDG0nm', '5962133'), + (94387, 1133, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4oMDG0nm', '5962134'), + (94388, 1133, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4oMDG0nm', '5962317'), + (94389, 1133, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4oMDG0nm', '5962318'), + (94390, 1133, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4oMDG0nm', '5965933'), + (94391, 1133, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4oMDG0nm', '5967014'), + (94392, 1133, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4oMDG0nm', '5972815'), + (94393, 1133, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4oMDG0nm', '5974016'), + (94394, 1133, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', '4oMDG0nm', '5975052'), + (94395, 1133, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', '4oMDG0nm', '5975054'), + (94396, 1133, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4oMDG0nm', '5981515'), + (94397, 1133, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4oMDG0nm', '5993516'), + (94398, 1133, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4oMDG0nm', '5998939'), + (94399, 1133, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4oMDG0nm', '6028191'), + (94400, 1133, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4oMDG0nm', '6040066'), + (94401, 1133, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4oMDG0nm', '6042717'), + (94402, 1133, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '4oMDG0nm', '6044838'), + (94403, 1133, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '4oMDG0nm', '6044839'), + (94404, 1133, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4oMDG0nm', '6045684'), + (94405, 1133, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '4oMDG0nm', '6050104'), + (94406, 1133, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '4oMDG0nm', '6053195'), + (94407, 1133, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '4oMDG0nm', '6053198'), + (94408, 1133, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '4oMDG0nm', '6056085'), + (94409, 1133, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '4oMDG0nm', '6056916'), + (94410, 1133, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '4oMDG0nm', '6059290'), + (94411, 1133, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '4oMDG0nm', '6060328'), + (94412, 1133, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '4oMDG0nm', '6061037'), + (94413, 1133, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '4oMDG0nm', '6061039'), + (94414, 1133, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '4oMDG0nm', '6067245'), + (94415, 1133, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '4oMDG0nm', '6068094'), + (94416, 1133, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '4oMDG0nm', '6068252'), + (94417, 1133, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '4oMDG0nm', '6068253'), + (94418, 1133, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '4oMDG0nm', '6068254'), + (94419, 1133, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', '4oMDG0nm', '6068280'), + (94420, 1133, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '4oMDG0nm', '6069093'), + (94421, 1133, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '4oMDG0nm', '6072528'), + (94422, 1133, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', '4oMDG0nm', '6075556'), + (94423, 1133, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '4oMDG0nm', '6079840'), + (94424, 1133, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '4oMDG0nm', '6083398'), + (94425, 1133, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '4oMDG0nm', '6093504'), + (94426, 1133, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '4oMDG0nm', '6097414'), + (94427, 1133, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '4oMDG0nm', '6097442'), + (94428, 1133, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '4oMDG0nm', '6097684'), + (94429, 1133, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '4oMDG0nm', '6098762'), + (94430, 1133, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '4oMDG0nm', '6101361'), + (94431, 1133, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '4oMDG0nm', '6101362'), + (94432, 1133, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '4oMDG0nm', '6107314'), + (94433, 1133, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '4oMDG0nm', '6120034'), + (94434, 1133, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '4oMDG0nm', '6136733'), + (94435, 1133, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '4oMDG0nm', '6137989'), + (94436, 1134, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', '2d2WQWJm', '3236465'), + (94437, 1134, 622, 'attending', '2021-03-11 15:13:45', '2025-12-17 19:47:51', '2d2WQWJm', '3517816'), + (94438, 1134, 628, 'attending', '2021-03-11 03:57:40', '2025-12-17 19:47:51', '2d2WQWJm', '3533305'), + (94439, 1134, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', '2d2WQWJm', '3539916'), + (94440, 1134, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', '2d2WQWJm', '3539918'), + (94441, 1134, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', '2d2WQWJm', '3539919'), + (94442, 1134, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', '2d2WQWJm', '3539920'), + (94443, 1134, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '2d2WQWJm', '3539921'), + (94444, 1134, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '2d2WQWJm', '3539927'), + (94445, 1134, 678, 'attending', '2021-03-12 00:36:36', '2025-12-17 19:47:51', '2d2WQWJm', '3547158'), + (94446, 1134, 684, 'not_attending', '2021-03-12 21:35:54', '2025-12-17 19:47:51', '2d2WQWJm', '3549257'), + (94447, 1134, 688, 'not_attending', '2021-03-16 22:45:27', '2025-12-17 19:47:51', '2d2WQWJm', '3553729'), + (94448, 1134, 690, 'attending', '2021-03-12 15:22:58', '2025-12-17 19:47:43', '2d2WQWJm', '3559954'), + (94449, 1134, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '2d2WQWJm', '3582734'), + (94450, 1134, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '2d2WQWJm', '3583262'), + (94451, 1134, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '2d2WQWJm', '3619523'), + (94452, 1134, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '2d2WQWJm', '3661369'), + (94453, 1134, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '2d2WQWJm', '3674262'), + (94454, 1134, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '2d2WQWJm', '3677402'), + (94455, 1134, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '2d2WQWJm', '3730212'), + (94456, 1134, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '2d2WQWJm', '3793156'), + (94457, 1134, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', '2d2WQWJm', '3803310'), + (94458, 1134, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', '2d2WQWJm', '3806392'), + (94459, 1134, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d2WQWJm', '6045684'), + (94460, 1135, 257, 'attending', '2021-04-20 15:10:09', '2025-12-17 19:47:45', 'EdVl2G5A', '3149488'), + (94461, 1135, 644, 'attending', '2021-04-21 02:32:17', '2025-12-17 19:47:45', 'EdVl2G5A', '3539919'), + (94462, 1135, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'EdVl2G5A', '3539920'), + (94463, 1135, 646, 'attending', '2021-05-17 22:37:07', '2025-12-17 19:47:46', 'EdVl2G5A', '3539921'), + (94464, 1135, 647, 'not_attending', '2021-05-22 13:42:35', '2025-12-17 19:47:46', 'EdVl2G5A', '3539922'), + (94465, 1135, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'EdVl2G5A', '3539923'), + (94466, 1135, 707, 'attending', '2021-04-21 15:16:31', '2025-12-17 19:47:46', 'EdVl2G5A', '3583262'), + (94467, 1135, 726, 'attending', '2021-06-05 01:52:35', '2025-12-17 19:47:47', 'EdVl2G5A', '3661374'), + (94468, 1135, 774, 'not_attending', '2021-04-21 15:17:01', '2025-12-17 19:47:45', 'EdVl2G5A', '3730212'), + (94469, 1135, 777, 'attending', '2021-04-29 16:31:54', '2025-12-17 19:47:46', 'EdVl2G5A', '3746248'), + (94470, 1135, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'EdVl2G5A', '3793156'), + (94471, 1135, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'EdVl2G5A', '3974109'), + (94472, 1135, 827, 'not_attending', '2021-06-05 01:52:18', '2025-12-17 19:47:47', 'EdVl2G5A', '3975311'), + (94473, 1135, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'EdVl2G5A', '3975312'), + (94474, 1135, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'EdVl2G5A', '3994992'), + (94475, 1135, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'EdVl2G5A', '4014338'), + (94476, 1135, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'EdVl2G5A', '4021848'), + (94477, 1135, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'EdVl2G5A', '4136744'), + (94478, 1135, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'EdVl2G5A', '4136937'), + (94479, 1135, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'EdVl2G5A', '4136938'), + (94480, 1135, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'EdVl2G5A', '4136947'), + (94481, 1135, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'EdVl2G5A', '4225444'), + (94482, 1135, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'EdVl2G5A', '4239259'), + (94483, 1135, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'EdVl2G5A', '4250163'), + (94484, 1135, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'EdVl2G5A', '6045684'), + (94485, 1136, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'ydweXYjA', '6044839'), + (94486, 1136, 1994, 'not_attending', '2023-04-05 21:32:02', '2025-12-17 19:46:59', 'ydweXYjA', '6050104'), + (94487, 1136, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'ydweXYjA', '6053198'), + (94488, 1136, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'ydweXYjA', '6056085'), + (94489, 1136, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'ydweXYjA', '6056916'), + (94490, 1136, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'ydweXYjA', '6059290'), + (94491, 1136, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'ydweXYjA', '6060328'), + (94492, 1136, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'ydweXYjA', '6061037'), + (94493, 1136, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'ydweXYjA', '6061039'), + (94494, 1136, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'ydweXYjA', '6067245'), + (94495, 1136, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'ydweXYjA', '6068094'), + (94496, 1136, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'ydweXYjA', '6068252'), + (94497, 1136, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'ydweXYjA', '6068253'), + (94498, 1136, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'ydweXYjA', '6068254'), + (94499, 1136, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'ydweXYjA', '6068280'), + (94500, 1136, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'ydweXYjA', '6069093'), + (94501, 1136, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'ydweXYjA', '6072528'), + (94502, 1136, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'ydweXYjA', '6079840'), + (94503, 1136, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'ydweXYjA', '6083398'), + (94504, 1136, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'ydweXYjA', '6093504'), + (94505, 1136, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'ydweXYjA', '6097414'), + (94506, 1136, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'ydweXYjA', '6097442'), + (94507, 1136, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'ydweXYjA', '6097684'), + (94508, 1136, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'ydweXYjA', '6098762'), + (94509, 1136, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'ydweXYjA', '6101362'), + (94510, 1136, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'ydweXYjA', '6107314'), + (94511, 1136, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'ydweXYjA', '6120034'), + (94512, 1137, 1431, 'attending', '2022-06-11 02:41:19', '2025-12-17 19:47:30', 'dBWV8YPm', '5389605'), + (94513, 1137, 1442, 'attending', '2022-06-12 02:57:04', '2025-12-17 19:47:17', 'dBWV8YPm', '5397265'), + (94514, 1137, 1444, 'maybe', '2022-06-11 02:49:18', '2025-12-17 19:47:30', 'dBWV8YPm', '5397614'), + (94515, 1137, 1445, 'maybe', '2022-06-12 02:57:10', '2025-12-17 19:47:17', 'dBWV8YPm', '5397615'), + (94516, 1137, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dBWV8YPm', '5403967'), + (94517, 1137, 1455, 'not_attending', '2022-06-13 23:42:25', '2025-12-17 19:47:31', 'dBWV8YPm', '5404772'), + (94518, 1137, 1459, 'attending', '2022-06-20 13:00:25', '2025-12-17 19:47:17', 'dBWV8YPm', '5404793'), + (94519, 1137, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dBWV8YPm', '5405203'), + (94520, 1137, 1469, 'attending', '2022-06-20 23:15:30', '2025-12-17 19:47:17', 'dBWV8YPm', '5406838'), + (94521, 1137, 1473, 'not_attending', '2022-06-14 21:51:09', '2025-12-17 19:47:31', 'dBWV8YPm', '5407267'), + (94522, 1137, 1478, 'not_attending', '2022-06-24 19:15:22', '2025-12-17 19:47:19', 'dBWV8YPm', '5408794'), + (94523, 1137, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dBWV8YPm', '5411699'), + (94524, 1137, 1481, 'not_attending', '2022-06-21 01:37:12', '2025-12-17 19:47:17', 'dBWV8YPm', '5412237'), + (94525, 1137, 1482, 'attending', '2022-06-20 13:00:48', '2025-12-17 19:47:19', 'dBWV8YPm', '5412550'), + (94526, 1137, 1484, 'not_attending', '2022-06-22 14:12:49', '2025-12-17 19:47:17', 'dBWV8YPm', '5415046'), + (94527, 1137, 1487, 'not_attending', '2022-06-27 23:04:38', '2025-12-17 19:47:19', 'dBWV8YPm', '5419006'), + (94528, 1137, 1488, 'attending', '2022-07-03 04:46:33', '2025-12-17 19:47:19', 'dBWV8YPm', '5420154'), + (94529, 1137, 1490, 'attending', '2022-07-03 04:46:41', '2025-12-17 19:47:19', 'dBWV8YPm', '5420156'), + (94530, 1137, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dBWV8YPm', '5422086'), + (94531, 1137, 1498, 'maybe', '2022-07-02 21:43:02', '2025-12-17 19:47:19', 'dBWV8YPm', '5422406'), + (94532, 1137, 1501, 'not_attending', '2022-06-29 23:58:10', '2025-12-17 19:47:19', 'dBWV8YPm', '5424546'), + (94533, 1137, 1502, 'not_attending', '2022-07-08 22:55:47', '2025-12-17 19:47:19', 'dBWV8YPm', '5424565'), + (94534, 1137, 1504, 'attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dBWV8YPm', '5426882'), + (94535, 1137, 1505, 'maybe', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dBWV8YPm', '5427083'), + (94536, 1137, 1513, 'attending', '2022-07-10 23:32:33', '2025-12-17 19:47:19', 'dBWV8YPm', '5441125'), + (94537, 1137, 1514, 'attending', '2022-07-21 02:04:39', '2025-12-17 19:47:20', 'dBWV8YPm', '5441126'), + (94538, 1137, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dBWV8YPm', '5441128'), + (94539, 1137, 1517, 'attending', '2022-08-15 19:38:17', '2025-12-17 19:47:23', 'dBWV8YPm', '5441130'), + (94540, 1137, 1518, 'maybe', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dBWV8YPm', '5441131'), + (94541, 1137, 1519, 'maybe', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dBWV8YPm', '5441132'), + (94542, 1137, 1520, 'not_attending', '2022-07-12 00:37:19', '2025-12-17 19:47:19', 'dBWV8YPm', '5441645'), + (94543, 1137, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dBWV8YPm', '5446643'), + (94544, 1137, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dBWV8YPm', '5453325'), + (94545, 1137, 1541, 'attending', '2022-07-25 22:44:40', '2025-12-17 19:47:20', 'dBWV8YPm', '5453542'), + (94546, 1137, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dBWV8YPm', '5454516'), + (94547, 1137, 1544, 'attending', '2022-09-17 17:57:50', '2025-12-17 19:47:11', 'dBWV8YPm', '5454517'), + (94548, 1137, 1545, 'attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dBWV8YPm', '5454605'), + (94549, 1137, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dBWV8YPm', '5455037'), + (94550, 1137, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dBWV8YPm', '5461278'), + (94551, 1137, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dBWV8YPm', '5469480'), + (94552, 1137, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dBWV8YPm', '5471073'), + (94553, 1137, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:20', 'dBWV8YPm', '5474663'), + (94554, 1137, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dBWV8YPm', '5482022'), + (94555, 1137, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dBWV8YPm', '5482793'), + (94556, 1137, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dBWV8YPm', '5488912'), + (94557, 1137, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dBWV8YPm', '5492192'), + (94558, 1137, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dBWV8YPm', '5493139'), + (94559, 1137, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dBWV8YPm', '5493200'), + (94560, 1137, 1598, 'attending', '2022-08-15 19:36:48', '2025-12-17 19:47:22', 'dBWV8YPm', '5496567'), + (94561, 1137, 1603, 'maybe', '2022-08-15 19:37:27', '2025-12-17 19:47:23', 'dBWV8YPm', '5497895'), + (94562, 1137, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dBWV8YPm', '5502188'), + (94563, 1137, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dBWV8YPm', '5505059'), + (94564, 1137, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dBWV8YPm', '5509055'), + (94565, 1137, 1617, 'not_attending', '2022-09-07 03:44:56', '2025-12-17 19:47:24', 'dBWV8YPm', '5512003'), + (94566, 1137, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dBWV8YPm', '5512862'), + (94567, 1137, 1621, 'not_attending', '2022-08-23 00:13:12', '2025-12-17 19:47:23', 'dBWV8YPm', '5513531'), + (94568, 1137, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dBWV8YPm', '5513985'), + (94569, 1137, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dBWV8YPm', '5519981'), + (94570, 1137, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dBWV8YPm', '5522550'), + (94571, 1137, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dBWV8YPm', '5534683'), + (94572, 1137, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dBWV8YPm', '5537735'), + (94573, 1137, 1636, 'attending', '2022-09-05 00:14:37', '2025-12-17 19:47:24', 'dBWV8YPm', '5538454'), + (94574, 1137, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dBWV8YPm', '5540859'), + (94575, 1137, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dBWV8YPm', '5546619'), + (94576, 1137, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dBWV8YPm', '5555245'), + (94577, 1137, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dBWV8YPm', '5557747'), + (94578, 1137, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dBWV8YPm', '5560255'), + (94579, 1137, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dBWV8YPm', '5562906'), + (94580, 1137, 1667, 'attending', '2022-09-21 13:31:58', '2025-12-17 19:47:11', 'dBWV8YPm', '5563221'), + (94581, 1137, 1668, 'attending', '2022-09-30 16:23:40', '2025-12-17 19:47:12', 'dBWV8YPm', '5563222'), + (94582, 1137, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dBWV8YPm', '5600604'), + (94583, 1137, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dBWV8YPm', '5605544'), + (94584, 1137, 1699, 'not_attending', '2022-09-26 12:18:19', '2025-12-17 19:47:12', 'dBWV8YPm', '5606737'), + (94585, 1137, 1720, 'attending', '2022-10-15 14:00:34', '2025-12-17 19:47:12', 'dBWV8YPm', '5630959'), + (94586, 1137, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dBWV8YPm', '5630960'), + (94587, 1137, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dBWV8YPm', '5630961'), + (94588, 1137, 1723, 'attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dBWV8YPm', '5630962'), + (94589, 1137, 1724, 'attending', '2022-11-05 03:34:59', '2025-12-17 19:47:15', 'dBWV8YPm', '5630966'), + (94590, 1137, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dBWV8YPm', '5630967'), + (94591, 1137, 1726, 'attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dBWV8YPm', '5630968'), + (94592, 1137, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dBWV8YPm', '5635406'), + (94593, 1137, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dBWV8YPm', '5638765'), + (94594, 1137, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dBWV8YPm', '5640097'), + (94595, 1137, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dBWV8YPm', '5640843'), + (94596, 1137, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dBWV8YPm', '5641521'), + (94597, 1137, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dBWV8YPm', '5642818'), + (94598, 1137, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dBWV8YPm', '5652395'), + (94599, 1137, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dBWV8YPm', '5670445'), + (94600, 1137, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dBWV8YPm', '5671637'), + (94601, 1137, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dBWV8YPm', '5672329'), + (94602, 1137, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dBWV8YPm', '5674057'), + (94603, 1137, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dBWV8YPm', '5674060'), + (94604, 1137, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dBWV8YPm', '5677461'), + (94605, 1137, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dBWV8YPm', '5698046'), + (94606, 1137, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dBWV8YPm', '5699760'), + (94607, 1137, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dBWV8YPm', '5741601'), + (94608, 1137, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dBWV8YPm', '5763458'), + (94609, 1137, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dBWV8YPm', '5774172'), + (94610, 1137, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dBWV8YPm', '5818247'), + (94611, 1137, 1834, 'attending', '2022-12-10 18:01:14', '2025-12-17 19:47:17', 'dBWV8YPm', '5819470'), + (94612, 1137, 1835, 'attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dBWV8YPm', '5819471'), + (94613, 1137, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dBWV8YPm', '5827739'), + (94614, 1137, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dBWV8YPm', '5844306'), + (94615, 1137, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dBWV8YPm', '5850159'), + (94616, 1137, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dBWV8YPm', '5858999'), + (94617, 1137, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dBWV8YPm', '5871984'), + (94618, 1137, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dBWV8YPm', '5876354'), + (94619, 1137, 1864, 'attending', '2023-01-21 18:52:24', '2025-12-17 19:47:05', 'dBWV8YPm', '5879675'), + (94620, 1137, 1865, 'attending', '2023-01-25 04:45:33', '2025-12-17 19:47:06', 'dBWV8YPm', '5879676'), + (94621, 1137, 1866, 'attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dBWV8YPm', '5880939'), + (94622, 1137, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'dBWV8YPm', '5880940'), + (94623, 1137, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dBWV8YPm', '5880942'), + (94624, 1137, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dBWV8YPm', '5880943'), + (94625, 1137, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dBWV8YPm', '5887890'), + (94626, 1137, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dBWV8YPm', '5888598'), + (94627, 1137, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dBWV8YPm', '5893260'), + (94628, 1137, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'dBWV8YPm', '5899826'), + (94629, 1137, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'dBWV8YPm', '5900199'), + (94630, 1137, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dBWV8YPm', '5900200'), + (94631, 1137, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dBWV8YPm', '5900202'), + (94632, 1137, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dBWV8YPm', '5900203'), + (94633, 1137, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'dBWV8YPm', '5901108'), + (94634, 1137, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'dBWV8YPm', '5901126'), + (94635, 1137, 1897, 'attending', '2023-02-10 18:29:32', '2025-12-17 19:47:07', 'dBWV8YPm', '5901128'), + (94636, 1137, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'dBWV8YPm', '5909655'), + (94637, 1137, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'dBWV8YPm', '5910522'), + (94638, 1137, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'dBWV8YPm', '5910526'), + (94639, 1137, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'dBWV8YPm', '5910528'), + (94640, 1137, 1922, 'attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'dBWV8YPm', '5916219'), + (94641, 1137, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dBWV8YPm', '5936234'), + (94642, 1137, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dBWV8YPm', '5958351'), + (94643, 1137, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dBWV8YPm', '5959751'), + (94644, 1137, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dBWV8YPm', '5959755'), + (94645, 1137, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dBWV8YPm', '5960055'), + (94646, 1137, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'dBWV8YPm', '5961684'), + (94647, 1137, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dBWV8YPm', '5962132'), + (94648, 1137, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dBWV8YPm', '5962133'), + (94649, 1137, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dBWV8YPm', '5962134'), + (94650, 1137, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dBWV8YPm', '5962317'), + (94651, 1137, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dBWV8YPm', '5962318'), + (94652, 1137, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dBWV8YPm', '5965933'), + (94653, 1137, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dBWV8YPm', '5967014'), + (94654, 1137, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dBWV8YPm', '5972815'), + (94655, 1137, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dBWV8YPm', '5974016'), + (94656, 1137, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dBWV8YPm', '5981515'), + (94657, 1137, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dBWV8YPm', '5993516'), + (94658, 1137, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dBWV8YPm', '5998939'), + (94659, 1137, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dBWV8YPm', '6028191'), + (94660, 1137, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dBWV8YPm', '6040066'), + (94661, 1137, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dBWV8YPm', '6042717'), + (94662, 1137, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dBWV8YPm', '6044838'), + (94663, 1137, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dBWV8YPm', '6044839'), + (94664, 1137, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dBWV8YPm', '6045684'), + (94665, 1137, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dBWV8YPm', '6050104'), + (94666, 1137, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dBWV8YPm', '6053195'), + (94667, 1137, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dBWV8YPm', '6053198'), + (94668, 1137, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dBWV8YPm', '6056085'), + (94669, 1137, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dBWV8YPm', '6056916'), + (94670, 1137, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dBWV8YPm', '6059290'), + (94671, 1137, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dBWV8YPm', '6060328'), + (94672, 1137, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dBWV8YPm', '6061037'), + (94673, 1137, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dBWV8YPm', '6061039'), + (94674, 1137, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dBWV8YPm', '6067245'), + (94675, 1137, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dBWV8YPm', '6068094'), + (94676, 1137, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dBWV8YPm', '6068252'), + (94677, 1137, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dBWV8YPm', '6068253'), + (94678, 1137, 2030, 'maybe', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dBWV8YPm', '6068254'), + (94679, 1137, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'dBWV8YPm', '6068280'), + (94680, 1137, 2032, 'attending', '2023-06-02 18:45:17', '2025-12-17 19:47:04', 'dBWV8YPm', '6068281'), + (94681, 1137, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dBWV8YPm', '6069093'), + (94682, 1137, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'dBWV8YPm', '6072528'), + (94683, 1137, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dBWV8YPm', '6079840'), + (94684, 1137, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dBWV8YPm', '6083398'), + (94685, 1137, 2056, 'maybe', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dBWV8YPm', '6093504'), + (94686, 1137, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dBWV8YPm', '6097414'), + (94687, 1137, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dBWV8YPm', '6097442'), + (94688, 1137, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dBWV8YPm', '6097684'), + (94689, 1137, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dBWV8YPm', '6098762'), + (94690, 1137, 2064, 'attending', '2023-06-24 16:36:00', '2025-12-17 19:46:50', 'dBWV8YPm', '6099988'), + (94691, 1137, 2065, 'not_attending', '2023-06-10 01:32:13', '2025-12-17 19:46:49', 'dBWV8YPm', '6101169'), + (94692, 1137, 2066, 'attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dBWV8YPm', '6101361'), + (94693, 1137, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dBWV8YPm', '6101362'), + (94694, 1137, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dBWV8YPm', '6103752'), + (94695, 1137, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dBWV8YPm', '6107314'), + (94696, 1137, 2077, 'attending', '2023-06-10 01:32:04', '2025-12-17 19:46:49', 'dBWV8YPm', '6110217'), + (94697, 1137, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'dBWV8YPm', '6120034'), + (94698, 1137, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'dBWV8YPm', '6136733'), + (94699, 1137, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dBWV8YPm', '6137989'), + (94700, 1137, 2105, 'attending', '2023-06-17 23:14:35', '2025-12-17 19:46:50', 'dBWV8YPm', '6149551'), + (94701, 1137, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dBWV8YPm', '6150864'), + (94702, 1137, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dBWV8YPm', '6155491'), + (94703, 1137, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dBWV8YPm', '6164417'), + (94704, 1137, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dBWV8YPm', '6166388'), + (94705, 1137, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dBWV8YPm', '6176439'), + (94706, 1137, 2127, 'maybe', '2023-07-01 18:42:41', '2025-12-17 19:46:50', 'dBWV8YPm', '6180853'), + (94707, 1137, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dBWV8YPm', '6182410'), + (94708, 1137, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dBWV8YPm', '6185812'), + (94709, 1137, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dBWV8YPm', '6187651'), + (94710, 1137, 2134, 'maybe', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dBWV8YPm', '6187963'), + (94711, 1137, 2135, 'attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dBWV8YPm', '6187964'), + (94712, 1137, 2136, 'attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dBWV8YPm', '6187966'), + (94713, 1137, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dBWV8YPm', '6187967'), + (94714, 1137, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dBWV8YPm', '6187969'), + (94715, 1137, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dBWV8YPm', '6334878'), + (94716, 1137, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'dBWV8YPm', '6337236'), + (94717, 1137, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'dBWV8YPm', '6337970'), + (94718, 1137, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'dBWV8YPm', '6338308'), + (94719, 1137, 2160, 'attending', '2023-07-28 13:36:56', '2025-12-17 19:46:54', 'dBWV8YPm', '6338358'), + (94720, 1137, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', 'dBWV8YPm', '6340845'), + (94721, 1137, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'dBWV8YPm', '6341710'), + (94722, 1137, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'dBWV8YPm', '6342044'), + (94723, 1137, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'dBWV8YPm', '6342298'), + (94724, 1137, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:53', 'dBWV8YPm', '6343294'), + (94725, 1137, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'dBWV8YPm', '6347034'), + (94726, 1137, 2177, 'attending', '2023-08-12 22:04:41', '2025-12-17 19:46:55', 'dBWV8YPm', '6347053'), + (94727, 1137, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'dBWV8YPm', '6347056'), + (94728, 1137, 2183, 'maybe', '2023-07-28 13:36:51', '2025-12-17 19:46:54', 'dBWV8YPm', '6353008'), + (94729, 1137, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'dBWV8YPm', '6353830'), + (94730, 1137, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'dBWV8YPm', '6353831'), + (94731, 1137, 2189, 'maybe', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'dBWV8YPm', '6357867'), + (94732, 1137, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'dBWV8YPm', '6358652'), + (94733, 1137, 2204, 'attending', '2023-08-19 12:17:17', '2025-12-17 19:46:55', 'dBWV8YPm', '6361542'), + (94734, 1137, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'dBWV8YPm', '6361709'), + (94735, 1137, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'dBWV8YPm', '6361710'), + (94736, 1137, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'dBWV8YPm', '6361711'), + (94737, 1137, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'dBWV8YPm', '6361712'), + (94738, 1137, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'dBWV8YPm', '6361713'), + (94739, 1137, 2228, 'maybe', '2023-08-19 20:05:31', '2025-12-17 19:46:55', 'dBWV8YPm', '6372777'), + (94740, 1137, 2232, 'not_attending', '2023-08-23 13:21:11', '2025-12-17 19:46:55', 'dBWV8YPm', '6374818'), + (94741, 1137, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'dBWV8YPm', '6382573'), + (94742, 1137, 2239, 'not_attending', '2023-08-31 18:31:17', '2025-12-17 19:46:56', 'dBWV8YPm', '6387592'), + (94743, 1137, 2240, 'attending', '2023-09-09 15:42:51', '2025-12-17 19:46:56', 'dBWV8YPm', '6388603'), + (94744, 1137, 2241, 'attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', 'dBWV8YPm', '6388604'), + (94745, 1137, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'dBWV8YPm', '6394629'), + (94746, 1137, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'dBWV8YPm', '6394631'), + (94747, 1137, 2253, 'maybe', '2023-09-27 13:30:46', '2025-12-17 19:46:45', 'dBWV8YPm', '6401811'), + (94748, 1137, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'dBWV8YPm', '6440863'), + (94749, 1137, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'dBWV8YPm', '6445440'), + (94750, 1137, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'dBWV8YPm', '6453951'), + (94751, 1137, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'dBWV8YPm', '6461696'), + (94752, 1137, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'dBWV8YPm', '6462129'), + (94753, 1137, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'dBWV8YPm', '6463218'), + (94754, 1137, 2299, 'attending', '2023-10-15 23:18:21', '2025-12-17 19:46:46', 'dBWV8YPm', '6472181'), + (94755, 1137, 2303, 'not_attending', '2023-10-28 22:08:35', '2025-12-17 19:46:47', 'dBWV8YPm', '6482691'), + (94756, 1137, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'dBWV8YPm', '6482693'), + (94757, 1137, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'dBWV8YPm', '6484200'), + (94758, 1137, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'dBWV8YPm', '6484680'), + (94759, 1137, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'dBWV8YPm', '6507741'), + (94760, 1137, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'dBWV8YPm', '6514659'), + (94761, 1137, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'dBWV8YPm', '6514660'), + (94762, 1137, 2324, 'attending', '2023-12-08 15:54:54', '2025-12-17 19:46:49', 'dBWV8YPm', '6514662'), + (94763, 1137, 2325, 'attending', '2023-12-16 05:34:14', '2025-12-17 19:46:36', 'dBWV8YPm', '6514663'), + (94764, 1137, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'dBWV8YPm', '6519103'), + (94765, 1137, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'dBWV8YPm', '6535681'), + (94766, 1137, 2338, 'not_attending', '2023-11-22 17:45:50', '2025-12-17 19:46:48', 'dBWV8YPm', '6538868'), + (94767, 1137, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'dBWV8YPm', '6584747'), + (94768, 1137, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'dBWV8YPm', '6587097'), + (94769, 1137, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'dBWV8YPm', '6609022'), + (94770, 1137, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'dBWV8YPm', '6632757'), + (94771, 1137, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'dBWV8YPm', '6644187'), + (94772, 1137, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'dBWV8YPm', '6648951'), + (94773, 1137, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'dBWV8YPm', '6648952'), + (94774, 1137, 2388, 'attending', '2024-01-06 22:12:35', '2025-12-17 19:46:37', 'dBWV8YPm', '6649244'), + (94775, 1137, 2393, 'attending', '2024-01-15 22:47:43', '2025-12-17 19:46:38', 'dBWV8YPm', '6654468'), + (94776, 1137, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'dBWV8YPm', '6655401'), + (94777, 1137, 2399, 'attending', '2024-01-13 22:47:20', '2025-12-17 19:46:38', 'dBWV8YPm', '6657583'), + (94778, 1137, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'dBWV8YPm', '6661585'), + (94779, 1137, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'dBWV8YPm', '6661588'), + (94780, 1137, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'dBWV8YPm', '6661589'), + (94781, 1137, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'dBWV8YPm', '6699906'), + (94782, 1137, 2408, 'attending', '2024-01-26 17:11:00', '2025-12-17 19:46:40', 'dBWV8YPm', '6699907'), + (94783, 1137, 2409, 'attending', '2024-02-03 22:09:37', '2025-12-17 19:46:41', 'dBWV8YPm', '6699909'), + (94784, 1137, 2410, 'not_attending', '2024-02-07 00:13:04', '2025-12-17 19:46:41', 'dBWV8YPm', '6699911'), + (94785, 1137, 2411, 'attending', '2024-02-12 19:41:49', '2025-12-17 19:46:41', 'dBWV8YPm', '6699913'), + (94786, 1137, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'dBWV8YPm', '6701109'), + (94787, 1137, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'dBWV8YPm', '6705219'), + (94788, 1137, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'dBWV8YPm', '6710153'), + (94789, 1137, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'dBWV8YPm', '6711552'), + (94790, 1137, 2430, 'attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'dBWV8YPm', '6711553'), + (94791, 1137, 2436, 'attending', '2024-01-28 00:23:22', '2025-12-17 19:46:40', 'dBWV8YPm', '6722687'), + (94792, 1137, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'dBWV8YPm', '6722688'), + (94793, 1137, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'dBWV8YPm', '6730620'), + (94794, 1137, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'dBWV8YPm', '6730642'), + (94795, 1137, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'dBWV8YPm', '6740364'), + (94796, 1137, 2460, 'attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'dBWV8YPm', '6743829'), + (94797, 1137, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'dBWV8YPm', '7030380'), + (94798, 1137, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'dBWV8YPm', '7033677'), + (94799, 1137, 2474, 'attending', '2024-02-21 00:16:25', '2025-12-17 19:46:43', 'dBWV8YPm', '7035415'), + (94800, 1137, 2475, 'maybe', '2024-02-24 23:36:06', '2025-12-17 19:46:43', 'dBWV8YPm', '7035643'), + (94801, 1137, 2478, 'attending', '2024-02-21 00:16:18', '2025-12-17 19:46:43', 'dBWV8YPm', '7036478'), + (94802, 1137, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'dBWV8YPm', '7044715'), + (94803, 1137, 2490, 'attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'dBWV8YPm', '7050318'), + (94804, 1137, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'dBWV8YPm', '7050319'), + (94805, 1137, 2492, 'attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'dBWV8YPm', '7050322'), + (94806, 1137, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'dBWV8YPm', '7057804'), + (94807, 1137, 2501, 'not_attending', '2024-03-05 14:57:03', '2025-12-17 19:46:44', 'dBWV8YPm', '7059866'), + (94808, 1137, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'dBWV8YPm', '7072824'), + (94809, 1137, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'dBWV8YPm', '7074348'), + (94810, 1137, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'dBWV8YPm', '7074364'), + (94811, 1137, 2539, 'maybe', '2024-04-05 19:28:18', '2025-12-17 19:46:33', 'dBWV8YPm', '7085486'), + (94812, 1137, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'dBWV8YPm', '7089267'), + (94813, 1137, 2548, 'attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'dBWV8YPm', '7098747'), + (94814, 1137, 2553, 'attending', '2024-03-29 15:38:52', '2025-12-17 19:46:33', 'dBWV8YPm', '7113468'), + (94815, 1137, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'dBWV8YPm', '7114856'), + (94816, 1137, 2555, 'attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'dBWV8YPm', '7114951'), + (94817, 1137, 2556, 'attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'dBWV8YPm', '7114955'), + (94818, 1137, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'dBWV8YPm', '7114956'), + (94819, 1137, 2558, 'attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'dBWV8YPm', '7114957'), + (94820, 1137, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'dBWV8YPm', '7153615'), + (94821, 1137, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'dBWV8YPm', '7159484'), + (94822, 1137, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'dBWV8YPm', '7178446'), + (94823, 1137, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'dBWV8YPm', '7220467'), + (94824, 1137, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'dBWV8YPm', '7240354'), + (94825, 1137, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'dBWV8YPm', '7251633'), + (94826, 1137, 2623, 'not_attending', '2024-05-10 19:32:23', '2025-12-17 19:46:35', 'dBWV8YPm', '7263048'), + (94827, 1137, 2626, 'attending', '2024-05-18 21:28:55', '2025-12-17 19:46:35', 'dBWV8YPm', '7264723'), + (94828, 1137, 2627, 'not_attending', '2024-05-24 21:10:10', '2025-12-17 19:46:35', 'dBWV8YPm', '7264724'), + (94829, 1137, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'dBWV8YPm', '7302674'), + (94830, 1137, 2679, 'maybe', '2024-06-19 13:36:54', '2025-12-17 19:46:29', 'dBWV8YPm', '7319490'), + (94831, 1137, 2688, 'attending', '2024-06-26 15:57:59', '2025-12-17 19:46:29', 'dBWV8YPm', '7324073'), + (94832, 1137, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'dBWV8YPm', '7324074'), + (94833, 1137, 2690, 'attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'dBWV8YPm', '7324075'), + (94834, 1137, 2691, 'maybe', '2024-07-20 21:33:41', '2025-12-17 19:46:30', 'dBWV8YPm', '7324076'), + (94835, 1137, 2692, 'not_attending', '2024-07-12 00:01:49', '2025-12-17 19:46:30', 'dBWV8YPm', '7324077'), + (94836, 1137, 2693, 'maybe', '2024-07-31 00:24:44', '2025-12-17 19:46:31', 'dBWV8YPm', '7324078'), + (94837, 1137, 2694, 'attending', '2024-08-10 19:03:23', '2025-12-17 19:46:31', 'dBWV8YPm', '7324079'), + (94838, 1137, 2695, 'attending', '2024-08-16 03:34:05', '2025-12-17 19:46:31', 'dBWV8YPm', '7324080'), + (94839, 1137, 2696, 'attending', '2024-08-22 15:39:28', '2025-12-17 19:46:32', 'dBWV8YPm', '7324081'), + (94840, 1137, 2697, 'not_attending', '2024-08-31 15:09:02', '2025-12-17 19:46:32', 'dBWV8YPm', '7324082'), + (94841, 1137, 2698, 'not_attending', '2024-09-07 21:38:14', '2025-12-17 19:46:24', 'dBWV8YPm', '7324083'), + (94842, 1137, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'dBWV8YPm', '7331457'), + (94843, 1137, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'dBWV8YPm', '7356752'), + (94844, 1137, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'dBWV8YPm', '7363643'), + (94845, 1137, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'dBWV8YPm', '7368606'), + (94846, 1137, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'dBWV8YPm', '7397462'), + (94847, 1137, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'dBWV8YPm', '7424275'), + (94848, 1137, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'dBWV8YPm', '7424276'), + (94849, 1137, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'dBWV8YPm', '7432751'), + (94850, 1137, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'dBWV8YPm', '7432752'), + (94851, 1137, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'dBWV8YPm', '7432753'), + (94852, 1137, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'dBWV8YPm', '7432754'), + (94853, 1137, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'dBWV8YPm', '7432755'), + (94854, 1137, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'dBWV8YPm', '7432756'), + (94855, 1137, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'dBWV8YPm', '7432758'), + (94856, 1137, 2831, 'attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'dBWV8YPm', '7432759'), + (94857, 1137, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'dBWV8YPm', '7433834'), + (94858, 1137, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'dBWV8YPm', '7470197'), + (94859, 1137, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'dBWV8YPm', '7685613'), + (94860, 1137, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'dBWV8YPm', '7688194'), + (94861, 1137, 2904, 'maybe', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'dBWV8YPm', '7688196'), + (94862, 1137, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'dBWV8YPm', '7688289'), + (94863, 1137, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'dBWV8YPm', '7692763'), + (94864, 1137, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'dBWV8YPm', '7697552'), + (94865, 1137, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'dBWV8YPm', '7699878'), + (94866, 1137, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'dBWV8YPm', '7704043'), + (94867, 1137, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'dBWV8YPm', '7712467'), + (94868, 1137, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'dBWV8YPm', '7713585'), + (94869, 1137, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'dBWV8YPm', '7713586'), + (94870, 1137, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'dBWV8YPm', '7738518'), + (94871, 1137, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'dBWV8YPm', '7750636'), + (94872, 1137, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'dBWV8YPm', '7796540'), + (94873, 1137, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'dBWV8YPm', '7796541'), + (94874, 1137, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'dBWV8YPm', '7796542'), + (94875, 1137, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'dBWV8YPm', '7825913'), + (94876, 1137, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'dBWV8YPm', '7826209'), + (94877, 1137, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'dBWV8YPm', '7834742'), + (94878, 1137, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'dBWV8YPm', '7842108'), + (94879, 1137, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'dBWV8YPm', '7842902'), + (94880, 1137, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'dBWV8YPm', '7842903'), + (94881, 1137, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'dBWV8YPm', '7842904'), + (94882, 1137, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'dBWV8YPm', '7842905'), + (94883, 1137, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'dBWV8YPm', '7855719'), + (94884, 1137, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'dBWV8YPm', '7860683'), + (94885, 1137, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'dBWV8YPm', '7860684'), + (94886, 1137, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'dBWV8YPm', '7866095'), + (94887, 1137, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'dBWV8YPm', '7869170'), + (94888, 1137, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'dBWV8YPm', '7869188'), + (94889, 1137, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'dBWV8YPm', '7869201'), + (94890, 1137, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'dBWV8YPm', '7877465'), + (94891, 1137, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'dBWV8YPm', '7878570'), + (94892, 1137, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'dBWV8YPm', '7888250'), + (94893, 1137, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'dBWV8YPm', '8349164'), + (94894, 1137, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'dBWV8YPm', '8349545'), + (94895, 1137, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'dBWV8YPm', '8353584'), + (94896, 1138, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'w4WLzQqd', '6045684'), + (94897, 1139, 1121, 'attending', '2021-11-14 16:52:43', '2025-12-17 19:47:37', '41oz6QMm', '4644022'), + (94898, 1139, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '41oz6QMm', '4645687'), + (94899, 1139, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '41oz6QMm', '4645698'), + (94900, 1139, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '41oz6QMm', '4645704'), + (94901, 1139, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '41oz6QMm', '4645705'), + (94902, 1139, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '41oz6QMm', '4668385'), + (94903, 1139, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '41oz6QMm', '4694407'), + (94904, 1139, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '41oz6QMm', '4746789'), + (94905, 1139, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '41oz6QMm', '4753929'), + (94906, 1139, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41oz6QMm', '6045684'), + (94907, 1140, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'Qd5XkkO4', '3236465'), + (94908, 1140, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'Qd5XkkO4', '3539918'), + (94909, 1140, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'Qd5XkkO4', '3539919'), + (94910, 1140, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'Qd5XkkO4', '3539920'), + (94911, 1140, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'Qd5XkkO4', '3539921'), + (94912, 1140, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'Qd5XkkO4', '3583262'), + (94913, 1140, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'Qd5XkkO4', '3661369'), + (94914, 1140, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'Qd5XkkO4', '3730212'), + (94915, 1140, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'Qd5XkkO4', '3793156'), + (94916, 1140, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'Qd5XkkO4', '3803310'), + (94917, 1140, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Qd5XkkO4', '3806392'), + (94918, 1140, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Qd5XkkO4', '6045684'), + (94919, 1141, 199, 'maybe', '2020-09-04 02:00:02', '2025-12-17 19:47:56', 'v4DbGQqm', '3087268'), + (94920, 1141, 220, 'attending', '2020-09-03 22:34:25', '2025-12-17 19:47:56', 'v4DbGQqm', '3129264'), + (94921, 1141, 223, 'attending', '2020-09-09 15:45:38', '2025-12-17 19:47:56', 'v4DbGQqm', '3129980'), + (94922, 1141, 249, 'not_attending', '2020-11-16 16:26:50', '2025-12-17 19:47:54', 'v4DbGQqm', '3149480'), + (94923, 1141, 296, 'not_attending', '2020-09-08 16:56:51', '2025-12-17 19:47:56', 'v4DbGQqm', '3172876'), + (94924, 1141, 304, 'not_attending', '2020-09-06 22:09:12', '2025-12-17 19:47:56', 'v4DbGQqm', '3178916'), + (94925, 1141, 311, 'maybe', '2020-09-18 15:13:56', '2025-12-17 19:47:56', 'v4DbGQqm', '3186057'), + (94926, 1141, 312, 'maybe', '2020-09-08 16:56:32', '2025-12-17 19:47:56', 'v4DbGQqm', '3187795'), + (94927, 1141, 315, 'not_attending', '2020-09-08 16:55:46', '2025-12-17 19:47:56', 'v4DbGQqm', '3189085'), + (94928, 1141, 330, 'not_attending', '2020-09-06 22:09:00', '2025-12-17 19:47:56', 'v4DbGQqm', '3197322'), + (94929, 1141, 335, 'not_attending', '2020-09-04 21:13:19', '2025-12-17 19:47:56', 'v4DbGQqm', '3200209'), + (94930, 1141, 339, 'attending', '2020-09-09 15:45:13', '2025-12-17 19:47:56', 'v4DbGQqm', '3204469'), + (94931, 1141, 340, 'not_attending', '2020-09-18 15:14:15', '2025-12-17 19:47:56', 'v4DbGQqm', '3204470'), + (94932, 1141, 362, 'not_attending', '2020-09-26 22:21:23', '2025-12-17 19:47:52', 'v4DbGQqm', '3214207'), + (94933, 1141, 363, 'not_attending', '2020-09-16 22:03:33', '2025-12-17 19:47:52', 'v4DbGQqm', '3217037'), + (94934, 1141, 365, 'not_attending', '2020-09-18 03:43:05', '2025-12-17 19:47:51', 'v4DbGQqm', '3218510'), + (94935, 1141, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'v4DbGQqm', '3228698'), + (94936, 1141, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'v4DbGQqm', '3228699'), + (94937, 1141, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'v4DbGQqm', '3228700'), + (94938, 1141, 388, 'not_attending', '2020-10-24 20:59:45', '2025-12-17 19:47:52', 'v4DbGQqm', '3228701'), + (94939, 1141, 397, 'attending', '2021-05-27 22:43:49', '2025-12-17 19:47:47', 'v4DbGQqm', '3236452'), + (94940, 1141, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'v4DbGQqm', '3245751'), + (94941, 1141, 440, 'not_attending', '2020-11-03 03:35:37', '2025-12-17 19:47:53', 'v4DbGQqm', '3256168'), + (94942, 1141, 441, 'attending', '2020-11-14 20:25:40', '2025-12-17 19:47:54', 'v4DbGQqm', '3256169'), + (94943, 1141, 445, 'not_attending', '2020-11-12 20:23:08', '2025-12-17 19:47:54', 'v4DbGQqm', '3266138'), + (94944, 1141, 452, 'not_attending', '2020-11-29 17:40:45', '2025-12-17 19:47:54', 'v4DbGQqm', '3272981'), + (94945, 1141, 456, 'not_attending', '2020-11-17 00:59:26', '2025-12-17 19:47:54', 'v4DbGQqm', '3276428'), + (94946, 1141, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'v4DbGQqm', '3281467'), + (94947, 1141, 460, 'attending', '2020-11-16 17:17:36', '2025-12-17 19:47:54', 'v4DbGQqm', '3281468'), + (94948, 1141, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'v4DbGQqm', '3281470'), + (94949, 1141, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'v4DbGQqm', '3281829'), + (94950, 1141, 467, 'not_attending', '2020-11-16 16:25:14', '2025-12-17 19:47:54', 'v4DbGQqm', '3282756'), + (94951, 1141, 468, 'attending', '2020-11-16 16:01:21', '2025-12-17 19:47:54', 'v4DbGQqm', '3285413'), + (94952, 1141, 469, 'attending', '2020-11-28 23:40:33', '2025-12-17 19:47:54', 'v4DbGQqm', '3285414'), + (94953, 1141, 476, 'not_attending', '2020-11-16 16:25:26', '2025-12-17 19:47:54', 'v4DbGQqm', '3286982'), + (94954, 1141, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'v4DbGQqm', '3297764'), + (94955, 1141, 487, 'not_attending', '2020-11-30 21:01:14', '2025-12-17 19:47:54', 'v4DbGQqm', '3311122'), + (94956, 1141, 488, 'attending', '2020-11-29 18:25:35', '2025-12-17 19:47:54', 'v4DbGQqm', '3312757'), + (94957, 1141, 493, 'not_attending', '2020-12-06 00:11:07', '2025-12-17 19:47:54', 'v4DbGQqm', '3313856'), + (94958, 1141, 494, 'attending', '2020-11-29 17:40:04', '2025-12-17 19:47:54', 'v4DbGQqm', '3313866'), + (94959, 1141, 496, 'attending', '2020-12-06 19:26:44', '2025-12-17 19:47:54', 'v4DbGQqm', '3314269'), + (94960, 1141, 497, 'attending', '2020-12-06 19:27:29', '2025-12-17 19:47:55', 'v4DbGQqm', '3314270'), + (94961, 1141, 498, 'attending', '2020-12-06 19:26:25', '2025-12-17 19:47:54', 'v4DbGQqm', '3314302'), + (94962, 1141, 499, 'not_attending', '2020-12-11 22:38:03', '2025-12-17 19:47:55', 'v4DbGQqm', '3314909'), + (94963, 1141, 500, 'attending', '2020-12-18 17:06:48', '2025-12-17 19:47:55', 'v4DbGQqm', '3314964'), + (94964, 1141, 501, 'attending', '2020-12-06 19:25:59', '2025-12-17 19:47:54', 'v4DbGQqm', '3317834'), + (94965, 1141, 502, 'attending', '2020-12-07 16:03:05', '2025-12-17 19:47:55', 'v4DbGQqm', '3323365'), + (94966, 1141, 506, 'not_attending', '2020-12-14 00:41:15', '2025-12-17 19:47:55', 'v4DbGQqm', '3323375'), + (94967, 1141, 511, 'not_attending', '2020-12-08 01:54:14', '2025-12-17 19:47:55', 'v4DbGQqm', '3325335'), + (94968, 1141, 513, 'attending', '2020-12-13 05:33:06', '2025-12-17 19:47:55', 'v4DbGQqm', '3329383'), + (94969, 1141, 517, 'attending', '2020-12-30 16:47:23', '2025-12-17 19:47:48', 'v4DbGQqm', '3337137'), + (94970, 1141, 518, 'attending', '2020-12-30 16:47:00', '2025-12-17 19:47:48', 'v4DbGQqm', '3337138'), + (94971, 1141, 519, 'attending', '2020-12-20 16:20:36', '2025-12-17 19:47:55', 'v4DbGQqm', '3337448'), + (94972, 1141, 525, 'attending', '2020-12-20 16:20:46', '2025-12-17 19:47:48', 'v4DbGQqm', '3350467'), + (94973, 1141, 526, 'attending', '2020-12-30 16:46:47', '2025-12-17 19:47:48', 'v4DbGQqm', '3351539'), + (94974, 1141, 529, 'not_attending', '2021-01-05 23:41:40', '2025-12-17 19:47:48', 'v4DbGQqm', '3364568'), + (94975, 1141, 532, 'not_attending', '2021-01-08 23:58:25', '2025-12-17 19:47:48', 'v4DbGQqm', '3381412'), + (94976, 1141, 534, 'not_attending', '2021-01-09 22:09:57', '2025-12-17 19:47:48', 'v4DbGQqm', '3384157'), + (94977, 1141, 536, 'attending', '2021-01-07 02:45:11', '2025-12-17 19:47:48', 'v4DbGQqm', '3386848'), + (94978, 1141, 537, 'not_attending', '2021-01-07 02:46:31', '2025-12-17 19:47:48', 'v4DbGQqm', '3387153'), + (94979, 1141, 540, 'attending', '2021-01-07 02:44:00', '2025-12-17 19:47:48', 'v4DbGQqm', '3389527'), + (94980, 1141, 542, 'not_attending', '2021-01-11 21:34:33', '2025-12-17 19:47:48', 'v4DbGQqm', '3395013'), + (94981, 1141, 543, 'not_attending', '2021-01-15 15:51:27', '2025-12-17 19:47:48', 'v4DbGQqm', '3396499'), + (94982, 1141, 548, 'attending', '2021-01-15 15:52:12', '2025-12-17 19:47:48', 'v4DbGQqm', '3403650'), + (94983, 1141, 549, 'not_attending', '2021-01-18 23:03:09', '2025-12-17 19:47:49', 'v4DbGQqm', '3406988'), + (94984, 1141, 550, 'not_attending', '2021-01-17 21:46:25', '2025-12-17 19:47:48', 'v4DbGQqm', '3407018'), + (94985, 1141, 551, 'attending', '2021-01-18 23:03:19', '2025-12-17 19:47:49', 'v4DbGQqm', '3407219'), + (94986, 1141, 555, 'attending', '2021-01-18 23:03:51', '2025-12-17 19:47:49', 'v4DbGQqm', '3416576'), + (94987, 1141, 557, 'not_attending', '2021-01-21 00:32:12', '2025-12-17 19:47:49', 'v4DbGQqm', '3418748'), + (94988, 1141, 558, 'not_attending', '2021-01-22 23:07:03', '2025-12-17 19:47:49', 'v4DbGQqm', '3418925'), + (94989, 1141, 561, 'attending', '2021-01-22 23:07:35', '2025-12-17 19:47:49', 'v4DbGQqm', '3421916'), + (94990, 1141, 562, 'not_attending', '2021-01-23 20:19:26', '2025-12-17 19:47:49', 'v4DbGQqm', '3424911'), + (94991, 1141, 563, 'attending', '2021-01-22 23:08:16', '2025-12-17 19:47:49', 'v4DbGQqm', '3425913'), + (94992, 1141, 567, 'attending', '2021-01-25 00:18:56', '2025-12-17 19:47:50', 'v4DbGQqm', '3428895'), + (94993, 1141, 568, 'attending', '2021-01-25 00:19:24', '2025-12-17 19:47:50', 'v4DbGQqm', '3430267'), + (94994, 1141, 569, 'not_attending', '2021-01-25 06:48:59', '2025-12-17 19:47:49', 'v4DbGQqm', '3432673'), + (94995, 1141, 570, 'not_attending', '2021-02-05 23:52:48', '2025-12-17 19:47:50', 'v4DbGQqm', '3435538'), + (94996, 1141, 575, 'attending', '2021-01-30 19:48:45', '2025-12-17 19:47:50', 'v4DbGQqm', '3437492'), + (94997, 1141, 578, 'not_attending', '2021-02-04 00:46:26', '2025-12-17 19:47:50', 'v4DbGQqm', '3440043'), + (94998, 1141, 579, 'attending', '2021-01-31 15:41:10', '2025-12-17 19:47:50', 'v4DbGQqm', '3440978'), + (94999, 1141, 580, 'not_attending', '2021-01-31 15:36:01', '2025-12-17 19:47:50', 'v4DbGQqm', '3444240'), + (95000, 1141, 581, 'maybe', '2021-01-31 15:41:59', '2025-12-17 19:47:50', 'v4DbGQqm', '3445029'), + (95001, 1141, 598, 'attending', '2021-02-06 00:55:18', '2025-12-17 19:47:50', 'v4DbGQqm', '3468003'), + (95002, 1141, 600, 'attending', '2021-02-06 14:30:15', '2025-12-17 19:47:50', 'v4DbGQqm', '3468125'), + (95003, 1141, 602, 'attending', '2021-02-07 18:47:03', '2025-12-17 19:47:50', 'v4DbGQqm', '3470303'), + (95004, 1141, 603, 'attending', '2021-02-08 12:14:01', '2025-12-17 19:47:50', 'v4DbGQqm', '3470304'), + (95005, 1141, 604, 'attending', '2021-02-08 12:14:19', '2025-12-17 19:47:50', 'v4DbGQqm', '3470305'), + (95006, 1141, 605, 'attending', '2021-02-15 01:35:02', '2025-12-17 19:47:50', 'v4DbGQqm', '3470991'), + (95007, 1141, 607, 'maybe', '2021-02-18 01:11:33', '2025-12-17 19:47:50', 'v4DbGQqm', '3471882'), + (95008, 1141, 609, 'attending', '2021-02-13 15:04:28', '2025-12-17 19:47:50', 'v4DbGQqm', '3480916'), + (95009, 1141, 611, 'attending', '2021-02-22 23:45:13', '2025-12-17 19:47:50', 'v4DbGQqm', '3482659'), + (95010, 1141, 612, 'not_attending', '2021-02-18 00:21:31', '2025-12-17 19:47:50', 'v4DbGQqm', '3490040'), + (95011, 1141, 615, 'not_attending', '2021-02-20 20:49:28', '2025-12-17 19:47:50', 'v4DbGQqm', '3490045'), + (95012, 1141, 618, 'not_attending', '2021-02-20 20:49:19', '2025-12-17 19:47:50', 'v4DbGQqm', '3503991'), + (95013, 1141, 619, 'attending', '2021-02-20 19:55:27', '2025-12-17 19:47:50', 'v4DbGQqm', '3506310'), + (95014, 1141, 621, 'attending', '2021-03-05 12:26:00', '2025-12-17 19:47:51', 'v4DbGQqm', '3517815'), + (95015, 1141, 622, 'attending', '2021-03-11 07:08:02', '2025-12-17 19:47:51', 'v4DbGQqm', '3517816'), + (95016, 1141, 623, 'not_attending', '2021-02-25 17:12:24', '2025-12-17 19:47:51', 'v4DbGQqm', '3523941'), + (95017, 1141, 624, 'attending', '2021-02-27 13:17:43', '2025-12-17 19:47:50', 'v4DbGQqm', '3528556'), + (95018, 1141, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', 'v4DbGQqm', '3533850'), + (95019, 1141, 637, 'attending', '2021-03-01 17:31:52', '2025-12-17 19:47:51', 'v4DbGQqm', '3536411'), + (95020, 1141, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', 'v4DbGQqm', '3536632'), + (95021, 1141, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', 'v4DbGQqm', '3536656'), + (95022, 1141, 641, 'maybe', '2021-04-02 16:10:16', '2025-12-17 19:47:44', 'v4DbGQqm', '3539916'), + (95023, 1141, 642, 'attending', '2021-04-08 12:38:00', '2025-12-17 19:47:44', 'v4DbGQqm', '3539917'), + (95024, 1141, 643, 'attending', '2021-04-17 18:42:05', '2025-12-17 19:47:45', 'v4DbGQqm', '3539918'), + (95025, 1141, 644, 'attending', '2021-04-24 12:04:13', '2025-12-17 19:47:45', 'v4DbGQqm', '3539919'), + (95026, 1141, 645, 'attending', '2021-05-08 18:23:05', '2025-12-17 19:47:46', 'v4DbGQqm', '3539920'), + (95027, 1141, 646, 'not_attending', '2021-05-15 10:43:02', '2025-12-17 19:47:46', 'v4DbGQqm', '3539921'), + (95028, 1141, 647, 'not_attending', '2021-05-22 21:14:49', '2025-12-17 19:47:47', 'v4DbGQqm', '3539922'), + (95029, 1141, 648, 'attending', '2021-05-29 20:05:41', '2025-12-17 19:47:47', 'v4DbGQqm', '3539923'), + (95030, 1141, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'v4DbGQqm', '3539927'), + (95031, 1141, 650, 'attending', '2021-03-27 19:21:43', '2025-12-17 19:47:44', 'v4DbGQqm', '3539928'), + (95032, 1141, 655, 'attending', '2021-03-11 07:07:56', '2025-12-17 19:47:51', 'v4DbGQqm', '3547129'), + (95033, 1141, 656, 'not_attending', '2021-03-20 21:06:45', '2025-12-17 19:47:51', 'v4DbGQqm', '3547130'), + (95034, 1141, 657, 'attending', '2021-04-17 18:42:01', '2025-12-17 19:47:45', 'v4DbGQqm', '3547132'), + (95035, 1141, 658, 'not_attending', '2021-06-12 20:43:37', '2025-12-17 19:47:47', 'v4DbGQqm', '3547134'), + (95036, 1141, 659, 'attending', '2021-04-08 12:37:52', '2025-12-17 19:47:44', 'v4DbGQqm', '3547135'), + (95037, 1141, 660, 'attending', '2021-07-10 19:56:27', '2025-12-17 19:47:39', 'v4DbGQqm', '3547136'), + (95038, 1141, 661, 'maybe', '2021-04-02 16:10:10', '2025-12-17 19:47:44', 'v4DbGQqm', '3547137'), + (95039, 1141, 662, 'attending', '2021-04-24 12:04:10', '2025-12-17 19:47:45', 'v4DbGQqm', '3547138'), + (95040, 1141, 663, 'attending', '2021-05-08 18:23:03', '2025-12-17 19:47:46', 'v4DbGQqm', '3547140'), + (95041, 1141, 664, 'attending', '2021-09-10 17:05:30', '2025-12-17 19:47:43', 'v4DbGQqm', '3547142'), + (95042, 1141, 665, 'attending', '2021-09-04 12:36:46', '2025-12-17 19:47:43', 'v4DbGQqm', '3547143'), + (95043, 1141, 666, 'not_attending', '2021-08-14 15:12:31', '2025-12-17 19:47:42', 'v4DbGQqm', '3547144'), + (95044, 1141, 668, 'not_attending', '2021-05-15 10:42:54', '2025-12-17 19:47:46', 'v4DbGQqm', '3547146'), + (95045, 1141, 670, 'maybe', '2021-06-19 12:44:30', '2025-12-17 19:47:48', 'v4DbGQqm', '3547148'), + (95046, 1141, 671, 'attending', '2021-07-17 21:52:21', '2025-12-17 19:47:39', 'v4DbGQqm', '3547149'), + (95047, 1141, 672, 'not_attending', '2021-05-22 21:14:45', '2025-12-17 19:47:46', 'v4DbGQqm', '3547150'), + (95048, 1141, 674, 'not_attending', '2021-08-07 12:52:33', '2025-12-17 19:47:41', 'v4DbGQqm', '3547152'), + (95049, 1141, 675, 'attending', '2021-07-31 16:11:16', '2025-12-17 19:47:40', 'v4DbGQqm', '3547153'), + (95050, 1141, 676, 'attending', '2021-07-22 11:39:24', '2025-12-17 19:47:40', 'v4DbGQqm', '3547154'), + (95051, 1141, 677, 'attending', '2021-05-29 20:05:35', '2025-12-17 19:47:47', 'v4DbGQqm', '3547155'), + (95052, 1141, 686, 'maybe', '2021-03-11 07:09:12', '2025-12-17 19:47:51', 'v4DbGQqm', '3553333'), + (95053, 1141, 687, 'not_attending', '2021-03-09 23:12:03', '2025-12-17 19:47:51', 'v4DbGQqm', '3553405'), + (95054, 1141, 690, 'attending', '2021-03-11 12:35:01', '2025-12-17 19:47:43', 'v4DbGQqm', '3559954'), + (95055, 1141, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'v4DbGQqm', '3582734'), + (95056, 1141, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'v4DbGQqm', '3583262'), + (95057, 1141, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'v4DbGQqm', '3619523'), + (95058, 1141, 718, 'attending', '2021-03-27 19:21:52', '2025-12-17 19:47:44', 'v4DbGQqm', '3626844'), + (95059, 1141, 719, 'attending', '2021-04-08 21:35:10', '2025-12-17 19:47:44', 'v4DbGQqm', '3635405'), + (95060, 1141, 724, 'maybe', '2021-05-09 18:43:05', '2025-12-17 19:47:46', 'v4DbGQqm', '3661369'), + (95061, 1141, 726, 'maybe', '2021-06-05 20:33:15', '2025-12-17 19:47:47', 'v4DbGQqm', '3661374'), + (95062, 1141, 729, 'not_attending', '2021-04-28 22:41:34', '2025-12-17 19:47:46', 'v4DbGQqm', '3668075'), + (95063, 1141, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'v4DbGQqm', '3674262'), + (95064, 1141, 735, 'not_attending', '2021-05-02 13:59:45', '2025-12-17 19:47:46', 'v4DbGQqm', '3677402'), + (95065, 1141, 737, 'attending', '2021-04-06 22:37:26', '2025-12-17 19:47:44', 'v4DbGQqm', '3679349'), + (95066, 1141, 752, 'attending', '2021-04-11 03:15:27', '2025-12-17 19:47:44', 'v4DbGQqm', '3699422'), + (95067, 1141, 756, 'not_attending', '2021-04-26 21:30:48', '2025-12-17 19:47:46', 'v4DbGQqm', '3704795'), + (95068, 1141, 767, 'not_attending', '2021-05-02 21:37:31', '2025-12-17 19:47:46', 'v4DbGQqm', '3722476'), + (95069, 1141, 771, 'maybe', '2021-04-29 19:05:43', '2025-12-17 19:47:46', 'v4DbGQqm', '3726420'), + (95070, 1141, 772, 'not_attending', '2021-05-01 00:02:09', '2025-12-17 19:47:46', 'v4DbGQqm', '3726421'), + (95071, 1141, 773, 'not_attending', '2021-04-27 22:32:47', '2025-12-17 19:47:46', 'v4DbGQqm', '3729399'), + (95072, 1141, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'v4DbGQqm', '3730212'), + (95073, 1141, 775, 'not_attending', '2021-04-21 22:42:16', '2025-12-17 19:47:45', 'v4DbGQqm', '3731062'), + (95074, 1141, 777, 'attending', '2021-05-01 18:59:13', '2025-12-17 19:47:46', 'v4DbGQqm', '3746248'), + (95075, 1141, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'v4DbGQqm', '3793156'), + (95076, 1141, 805, 'maybe', '2021-06-13 21:21:56', '2025-12-17 19:47:47', 'v4DbGQqm', '3804777'), + (95077, 1141, 819, 'attending', '2021-05-29 20:24:17', '2025-12-17 19:47:47', 'v4DbGQqm', '3833017'), + (95078, 1141, 823, 'maybe', '2021-06-19 12:44:33', '2025-12-17 19:47:48', 'v4DbGQqm', '3974109'), + (95079, 1141, 827, 'attending', '2021-06-05 20:31:53', '2025-12-17 19:47:47', 'v4DbGQqm', '3975311'), + (95080, 1141, 828, 'not_attending', '2021-06-12 20:43:41', '2025-12-17 19:47:47', 'v4DbGQqm', '3975312'), + (95081, 1141, 829, 'attending', '2021-05-31 16:28:40', '2025-12-17 19:47:47', 'v4DbGQqm', '3976202'), + (95082, 1141, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'v4DbGQqm', '3994992'), + (95083, 1141, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'v4DbGQqm', '4014338'), + (95084, 1141, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'v4DbGQqm', '4021848'), + (95085, 1141, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'v4DbGQqm', '4136744'), + (95086, 1141, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'v4DbGQqm', '4136937'), + (95087, 1141, 871, 'attending', '2021-07-10 19:56:29', '2025-12-17 19:47:39', 'v4DbGQqm', '4136938'), + (95088, 1141, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'v4DbGQqm', '4136947'), + (95089, 1141, 876, 'not_attending', '2021-06-22 22:22:13', '2025-12-17 19:47:38', 'v4DbGQqm', '4139926'), + (95090, 1141, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'v4DbGQqm', '4210314'), + (95091, 1141, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'v4DbGQqm', '4225444'), + (95092, 1141, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'v4DbGQqm', '4239259'), + (95093, 1141, 900, 'attending', '2021-07-22 11:39:28', '2025-12-17 19:47:40', 'v4DbGQqm', '4240316'), + (95094, 1141, 901, 'attending', '2021-07-31 16:11:19', '2025-12-17 19:47:40', 'v4DbGQqm', '4240317'), + (95095, 1141, 902, 'not_attending', '2021-08-07 12:52:37', '2025-12-17 19:47:41', 'v4DbGQqm', '4240318'), + (95096, 1141, 903, 'not_attending', '2021-08-14 15:12:34', '2025-12-17 19:47:42', 'v4DbGQqm', '4240320'), + (95097, 1141, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'v4DbGQqm', '4250163'), + (95098, 1141, 919, 'attending', '2021-07-17 17:49:47', '2025-12-17 19:47:39', 'v4DbGQqm', '4275957'), + (95099, 1141, 920, 'maybe', '2021-07-25 20:41:58', '2025-12-17 19:47:40', 'v4DbGQqm', '4277819'), + (95100, 1141, 931, 'attending', '2021-07-22 21:33:44', '2025-12-17 19:47:40', 'v4DbGQqm', '4301535'), + (95101, 1141, 932, 'attending', '2021-07-22 23:28:49', '2025-12-17 19:47:42', 'v4DbGQqm', '4301664'), + (95102, 1141, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'v4DbGQqm', '4301723'), + (95103, 1141, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'v4DbGQqm', '4302093'), + (95104, 1141, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'v4DbGQqm', '4304151'), + (95105, 1141, 942, 'maybe', '2021-07-31 16:11:43', '2025-12-17 19:47:40', 'v4DbGQqm', '4310297'), + (95106, 1141, 953, 'attending', '2021-07-30 20:31:14', '2025-12-17 19:47:40', 'v4DbGQqm', '4324152'), + (95107, 1141, 961, 'not_attending', '2021-08-08 05:58:48', '2025-12-17 19:47:41', 'v4DbGQqm', '4345519'), + (95108, 1141, 968, 'not_attending', '2021-08-12 22:36:36', '2025-12-17 19:47:42', 'v4DbGQqm', '4356505'), + (95109, 1141, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'v4DbGQqm', '4356801'), + (95110, 1141, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'v4DbGQqm', '4358025'), + (95111, 1141, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'v4DbGQqm', '4366186'), + (95112, 1141, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'v4DbGQqm', '4366187'), + (95113, 1141, 988, 'not_attending', '2021-08-27 20:56:24', '2025-12-17 19:47:42', 'v4DbGQqm', '4402823'), + (95114, 1141, 990, 'attending', '2021-09-04 12:36:49', '2025-12-17 19:47:43', 'v4DbGQqm', '4420735'), + (95115, 1141, 991, 'attending', '2021-09-10 17:05:33', '2025-12-17 19:47:43', 'v4DbGQqm', '4420738'), + (95116, 1141, 992, 'attending', '2021-09-18 18:05:13', '2025-12-17 19:47:33', 'v4DbGQqm', '4420739'), + (95117, 1141, 993, 'attending', '2021-09-24 14:49:45', '2025-12-17 19:47:34', 'v4DbGQqm', '4420741'), + (95118, 1141, 994, 'not_attending', '2021-10-02 21:12:00', '2025-12-17 19:47:34', 'v4DbGQqm', '4420742'), + (95119, 1141, 995, 'not_attending', '2021-10-09 19:09:12', '2025-12-17 19:47:34', 'v4DbGQqm', '4420744'), + (95120, 1141, 996, 'attending', '2021-10-16 00:36:29', '2025-12-17 19:47:35', 'v4DbGQqm', '4420747'), + (95121, 1141, 997, 'not_attending', '2021-10-11 01:23:44', '2025-12-17 19:47:35', 'v4DbGQqm', '4420748'), + (95122, 1141, 998, 'not_attending', '2021-10-30 17:05:24', '2025-12-17 19:47:36', 'v4DbGQqm', '4420749'), + (95123, 1141, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'v4DbGQqm', '4461883'), + (95124, 1141, 1033, 'attending', '2021-09-18 18:05:11', '2025-12-17 19:47:43', 'v4DbGQqm', '4486006'), + (95125, 1141, 1036, 'attending', '2021-09-18 18:05:54', '2025-12-17 19:47:34', 'v4DbGQqm', '4493166'), + (95126, 1141, 1038, 'attending', '2021-09-24 14:49:43', '2025-12-17 19:47:34', 'v4DbGQqm', '4496603'), + (95127, 1141, 1039, 'not_attending', '2021-10-02 21:11:57', '2025-12-17 19:47:34', 'v4DbGQqm', '4496604'), + (95128, 1141, 1042, 'attending', '2021-11-21 19:19:33', '2025-12-17 19:47:37', 'v4DbGQqm', '4496607'), + (95129, 1141, 1043, 'not_attending', '2021-10-11 01:23:41', '2025-12-17 19:47:35', 'v4DbGQqm', '4496608'), + (95130, 1141, 1044, 'not_attending', '2021-11-06 22:47:17', '2025-12-17 19:47:36', 'v4DbGQqm', '4496609'), + (95131, 1141, 1045, 'not_attending', '2021-10-30 17:05:21', '2025-12-17 19:47:36', 'v4DbGQqm', '4496610'), + (95132, 1141, 1046, 'attending', '2021-10-16 00:36:24', '2025-12-17 19:47:35', 'v4DbGQqm', '4496611'), + (95133, 1141, 1047, 'not_attending', '2021-10-09 19:09:08', '2025-12-17 19:47:34', 'v4DbGQqm', '4496612'), + (95134, 1141, 1048, 'not_attending', '2021-11-13 19:59:47', '2025-12-17 19:47:36', 'v4DbGQqm', '4496613'), + (95135, 1141, 1049, 'maybe', '2022-01-22 21:56:20', '2025-12-17 19:47:32', 'v4DbGQqm', '4496614'), + (95136, 1141, 1050, 'attending', '2022-01-26 04:26:33', '2025-12-17 19:47:32', 'v4DbGQqm', '4496615'), + (95137, 1141, 1051, 'attending', '2022-02-06 00:04:53', '2025-12-17 19:47:32', 'v4DbGQqm', '4496616'), + (95138, 1141, 1052, 'attending', '2022-01-03 16:37:07', '2025-12-17 19:47:31', 'v4DbGQqm', '4496617'), + (95139, 1141, 1053, 'attending', '2022-02-15 19:13:17', '2025-12-17 19:47:32', 'v4DbGQqm', '4496618'), + (95140, 1141, 1054, 'attending', '2022-03-17 09:43:46', '2025-12-17 19:47:25', 'v4DbGQqm', '4496619'), + (95141, 1141, 1055, 'attending', '2021-12-17 17:17:09', '2025-12-17 19:47:31', 'v4DbGQqm', '4496621'), + (95142, 1141, 1056, 'attending', '2022-01-03 16:36:34', '2025-12-17 19:47:31', 'v4DbGQqm', '4496622'), + (95143, 1141, 1057, 'not_attending', '2021-11-20 17:24:55', '2025-12-17 19:47:37', 'v4DbGQqm', '4496624'), + (95144, 1141, 1058, 'attending', '2022-02-27 00:20:44', '2025-12-17 19:47:33', 'v4DbGQqm', '4496625'), + (95145, 1141, 1059, 'attending', '2022-03-06 15:49:25', '2025-12-17 19:47:33', 'v4DbGQqm', '4496626'), + (95146, 1141, 1060, 'attending', '2022-03-18 17:52:58', '2025-12-17 19:47:25', 'v4DbGQqm', '4496627'), + (95147, 1141, 1061, 'attending', '2022-02-10 13:34:20', '2025-12-17 19:47:32', 'v4DbGQqm', '4496628'), + (95148, 1141, 1062, 'attending', '2022-03-02 06:51:28', '2025-12-17 19:47:33', 'v4DbGQqm', '4496629'), + (95149, 1141, 1063, 'attending', '2021-09-21 22:57:17', '2025-12-17 19:47:34', 'v4DbGQqm', '4496630'), + (95150, 1141, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'v4DbGQqm', '4508342'), + (95151, 1141, 1069, 'attending', '2021-09-24 15:41:06', '2025-12-17 19:47:34', 'v4DbGQqm', '4512090'), + (95152, 1141, 1074, 'attending', '2021-09-28 23:32:42', '2025-12-17 19:47:34', 'v4DbGQqm', '4528953'), + (95153, 1141, 1079, 'attending', '2021-10-16 14:40:28', '2025-12-17 19:47:35', 'v4DbGQqm', '4563823'), + (95154, 1141, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'v4DbGQqm', '4568602'), + (95155, 1141, 1087, 'attending', '2021-10-16 14:10:24', '2025-12-17 19:47:35', 'v4DbGQqm', '4572153'), + (95156, 1141, 1089, 'attending', '2021-10-16 14:16:41', '2025-12-17 19:47:35', 'v4DbGQqm', '4574712'), + (95157, 1141, 1090, 'attending', '2021-10-16 14:35:07', '2025-12-17 19:47:35', 'v4DbGQqm', '4574713'), + (95158, 1141, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'v4DbGQqm', '4585962'), + (95159, 1141, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'v4DbGQqm', '4596356'), + (95160, 1141, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'v4DbGQqm', '4598860'), + (95161, 1141, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'v4DbGQqm', '4598861'), + (95162, 1141, 1099, 'not_attending', '2021-11-06 22:47:20', '2025-12-17 19:47:36', 'v4DbGQqm', '4602797'), + (95163, 1141, 1103, 'not_attending', '2021-11-13 19:59:57', '2025-12-17 19:47:36', 'v4DbGQqm', '4616350'), + (95164, 1141, 1104, 'maybe', '2021-11-13 20:00:04', '2025-12-17 19:47:36', 'v4DbGQqm', '4618310'), + (95165, 1141, 1108, 'not_attending', '2021-11-18 00:30:43', '2025-12-17 19:47:37', 'v4DbGQqm', '4632276'), + (95166, 1141, 1114, 'not_attending', '2021-11-13 19:59:49', '2025-12-17 19:47:36', 'v4DbGQqm', '4637896'), + (95167, 1141, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'v4DbGQqm', '4642994'), + (95168, 1141, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'v4DbGQqm', '4642995'), + (95169, 1141, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'v4DbGQqm', '4642996'), + (95170, 1141, 1119, 'attending', '2021-12-19 01:27:43', '2025-12-17 19:47:31', 'v4DbGQqm', '4642997'), + (95171, 1141, 1120, 'attending', '2021-11-15 20:11:41', '2025-12-17 19:47:37', 'v4DbGQqm', '4644021'), + (95172, 1141, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'v4DbGQqm', '4645687'), + (95173, 1141, 1127, 'not_attending', '2021-12-12 21:25:03', '2025-12-17 19:47:38', 'v4DbGQqm', '4645698'), + (95174, 1141, 1128, 'not_attending', '2021-11-20 17:24:58', '2025-12-17 19:47:37', 'v4DbGQqm', '4645704'), + (95175, 1141, 1129, 'attending', '2021-11-21 19:19:35', '2025-12-17 19:47:37', 'v4DbGQqm', '4645705'), + (95176, 1141, 1131, 'attending', '2021-12-17 17:17:12', '2025-12-17 19:47:31', 'v4DbGQqm', '4658825'), + (95177, 1141, 1132, 'attending', '2021-11-21 19:14:29', '2025-12-17 19:47:37', 'v4DbGQqm', '4660657'), + (95178, 1141, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'v4DbGQqm', '4668385'), + (95179, 1141, 1140, 'attending', '2021-11-30 04:28:49', '2025-12-17 19:47:37', 'v4DbGQqm', '4679701'), + (95180, 1141, 1148, 'attending', '2021-12-17 17:16:51', '2025-12-17 19:47:31', 'v4DbGQqm', '4692843'), + (95181, 1141, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'v4DbGQqm', '4694407'), + (95182, 1141, 1150, 'attending', '2021-12-17 00:17:36', '2025-12-17 19:47:38', 'v4DbGQqm', '4706262'), + (95183, 1141, 1151, 'not_attending', '2022-01-05 23:37:38', '2025-12-17 19:47:31', 'v4DbGQqm', '4708704'), + (95184, 1141, 1153, 'maybe', '2022-01-19 23:42:50', '2025-12-17 19:47:32', 'v4DbGQqm', '4708707'), + (95185, 1141, 1154, 'attending', '2022-01-26 22:18:31', '2025-12-17 19:47:32', 'v4DbGQqm', '4708708'), + (95186, 1141, 1156, 'attending', '2021-12-18 21:27:04', '2025-12-17 19:47:31', 'v4DbGQqm', '4715207'), + (95187, 1141, 1157, 'attending', '2021-12-18 21:29:11', '2025-12-17 19:47:31', 'v4DbGQqm', '4715208'), + (95188, 1141, 1158, 'attending', '2021-12-18 23:36:27', '2025-12-17 19:47:31', 'v4DbGQqm', '4715311'), + (95189, 1141, 1163, 'attending', '2022-01-08 17:59:14', '2025-12-17 19:47:31', 'v4DbGQqm', '4724206'), + (95190, 1141, 1164, 'attending', '2022-01-03 16:26:27', '2025-12-17 19:47:31', 'v4DbGQqm', '4724208'), + (95191, 1141, 1165, 'attending', '2022-01-03 16:26:30', '2025-12-17 19:47:31', 'v4DbGQqm', '4724210'), + (95192, 1141, 1170, 'not_attending', '2022-01-10 00:19:20', '2025-12-17 19:47:31', 'v4DbGQqm', '4731045'), + (95193, 1141, 1171, 'attending', '2022-01-02 04:33:29', '2025-12-17 19:47:31', 'v4DbGQqm', '4733292'), + (95194, 1141, 1173, 'attending', '2022-01-03 16:37:16', '2025-12-17 19:47:31', 'v4DbGQqm', '4736495'), + (95195, 1141, 1174, 'attending', '2022-01-16 00:06:07', '2025-12-17 19:47:31', 'v4DbGQqm', '4736496'), + (95196, 1141, 1175, 'attending', '2022-01-22 14:48:43', '2025-12-17 19:47:32', 'v4DbGQqm', '4736497'), + (95197, 1141, 1176, 'attending', '2022-02-06 00:04:50', '2025-12-17 19:47:32', 'v4DbGQqm', '4736498'), + (95198, 1141, 1177, 'attending', '2022-02-10 13:34:21', '2025-12-17 19:47:32', 'v4DbGQqm', '4736499'), + (95199, 1141, 1178, 'attending', '2022-01-26 04:26:36', '2025-12-17 19:47:32', 'v4DbGQqm', '4736500'), + (95200, 1141, 1179, 'attending', '2022-02-15 19:13:19', '2025-12-17 19:47:32', 'v4DbGQqm', '4736501'), + (95201, 1141, 1180, 'attending', '2022-02-27 00:20:48', '2025-12-17 19:47:33', 'v4DbGQqm', '4736502'), + (95202, 1141, 1181, 'attending', '2022-03-02 06:51:30', '2025-12-17 19:47:33', 'v4DbGQqm', '4736503'), + (95203, 1141, 1182, 'attending', '2022-03-06 15:49:27', '2025-12-17 19:47:33', 'v4DbGQqm', '4736504'), + (95204, 1141, 1183, 'not_attending', '2022-01-07 16:58:16', '2025-12-17 19:47:31', 'v4DbGQqm', '4742171'), + (95205, 1141, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'v4DbGQqm', '4746789'), + (95206, 1141, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'v4DbGQqm', '4753929'), + (95207, 1141, 1206, 'attending', '2022-04-10 10:37:09', '2025-12-17 19:47:27', 'v4DbGQqm', '4773578'), + (95208, 1141, 1207, 'attending', '2022-05-07 19:36:25', '2025-12-17 19:47:28', 'v4DbGQqm', '4773579'), + (95209, 1141, 1220, 'attending', '2022-01-27 23:50:00', '2025-12-17 19:47:32', 'v4DbGQqm', '4790257'), + (95210, 1141, 1229, 'not_attending', '2022-02-18 19:22:09', '2025-12-17 19:47:32', 'v4DbGQqm', '5034963'), + (95211, 1141, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'v4DbGQqm', '5038850'), + (95212, 1141, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'v4DbGQqm', '5045826'), + (95213, 1141, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'v4DbGQqm', '5132533'), + (95214, 1141, 1260, 'attending', '2022-03-01 17:45:57', '2025-12-17 19:47:33', 'v4DbGQqm', '5142082'), + (95215, 1141, 1264, 'attending', '2022-03-22 22:49:39', '2025-12-17 19:47:25', 'v4DbGQqm', '5160281'), + (95216, 1141, 1265, 'attending', '2022-03-10 13:24:01', '2025-12-17 19:47:33', 'v4DbGQqm', '5160862'), + (95217, 1141, 1271, 'attending', '2022-03-18 17:51:59', '2025-12-17 19:47:25', 'v4DbGQqm', '5181648'), + (95218, 1141, 1272, 'attending', '2022-03-17 09:43:48', '2025-12-17 19:47:25', 'v4DbGQqm', '5186582'), + (95219, 1141, 1273, 'attending', '2022-03-18 17:52:49', '2025-12-17 19:47:25', 'v4DbGQqm', '5186583'), + (95220, 1141, 1274, 'attending', '2022-03-24 15:44:33', '2025-12-17 19:47:26', 'v4DbGQqm', '5186585'), + (95221, 1141, 1275, 'attending', '2022-03-24 15:44:29', '2025-12-17 19:47:26', 'v4DbGQqm', '5186587'), + (95222, 1141, 1279, 'attending', '2022-03-18 17:53:18', '2025-12-17 19:47:25', 'v4DbGQqm', '5187212'), + (95223, 1141, 1280, 'not_attending', '2022-03-18 07:23:33', '2025-12-17 19:47:25', 'v4DbGQqm', '5189749'), + (95224, 1141, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'v4DbGQqm', '5190437'), + (95225, 1141, 1283, 'attending', '2022-03-19 15:31:12', '2025-12-17 19:47:25', 'v4DbGQqm', '5193533'), + (95226, 1141, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'v4DbGQqm', '5195095'), + (95227, 1141, 1289, 'not_attending', '2022-03-31 22:45:34', '2025-12-17 19:47:25', 'v4DbGQqm', '5200190'), + (95228, 1141, 1290, 'not_attending', '2022-03-29 22:46:33', '2025-12-17 19:47:25', 'v4DbGQqm', '5200196'), + (95229, 1141, 1293, 'attending', '2022-04-10 10:36:57', '2025-12-17 19:47:27', 'v4DbGQqm', '5214641'), + (95230, 1141, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'v4DbGQqm', '5215989'), + (95231, 1141, 1301, 'attending', '2022-03-30 11:22:55', '2025-12-17 19:47:26', 'v4DbGQqm', '5218175'), + (95232, 1141, 1307, 'not_attending', '2022-04-05 10:12:55', '2025-12-17 19:47:27', 'v4DbGQqm', '5223686'), + (95233, 1141, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'v4DbGQqm', '5227432'), + (95234, 1141, 1312, 'attending', '2022-04-14 14:14:42', '2025-12-17 19:47:27', 'v4DbGQqm', '5231459'), + (95235, 1141, 1313, 'attending', '2022-04-12 20:59:22', '2025-12-17 19:47:27', 'v4DbGQqm', '5231461'), + (95236, 1141, 1328, 'maybe', '2022-04-14 14:14:37', '2025-12-17 19:47:27', 'v4DbGQqm', '5238759'), + (95237, 1141, 1329, 'not_attending', '2022-04-12 12:03:25', '2025-12-17 19:47:27', 'v4DbGQqm', '5240135'), + (95238, 1141, 1344, 'not_attending', '2022-04-28 13:06:22', '2025-12-17 19:47:28', 'v4DbGQqm', '5247465'), + (95239, 1141, 1345, 'not_attending', '2022-04-23 21:13:43', '2025-12-17 19:47:27', 'v4DbGQqm', '5247466'), + (95240, 1141, 1346, 'not_attending', '2022-04-23 21:13:46', '2025-12-17 19:47:27', 'v4DbGQqm', '5247467'), + (95241, 1141, 1348, 'not_attending', '2022-05-01 22:20:44', '2025-12-17 19:47:28', 'v4DbGQqm', '5247605'), + (95242, 1141, 1362, 'attending', '2022-04-25 19:02:12', '2025-12-17 19:47:28', 'v4DbGQqm', '5260800'), + (95243, 1141, 1370, 'attending', '2022-04-28 13:05:44', '2025-12-17 19:47:28', 'v4DbGQqm', '5263775'), + (95244, 1141, 1371, 'attending', '2022-04-27 22:39:36', '2025-12-17 19:47:27', 'v4DbGQqm', '5263784'), + (95245, 1141, 1374, 'attending', '2022-05-07 16:14:30', '2025-12-17 19:47:28', 'v4DbGQqm', '5269930'), + (95246, 1141, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'v4DbGQqm', '5271448'), + (95247, 1141, 1379, 'attending', '2022-05-21 16:58:03', '2025-12-17 19:47:29', 'v4DbGQqm', '5271449'), + (95248, 1141, 1380, 'not_attending', '2022-05-28 21:52:07', '2025-12-17 19:47:30', 'v4DbGQqm', '5271450'), + (95249, 1141, 1381, 'not_attending', '2022-05-05 02:29:58', '2025-12-17 19:47:28', 'v4DbGQqm', '5271453'), + (95250, 1141, 1383, 'maybe', '2022-05-12 13:28:03', '2025-12-17 19:47:28', 'v4DbGQqm', '5276469'), + (95251, 1141, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'v4DbGQqm', '5278159'), + (95252, 1141, 1395, 'attending', '2022-05-07 16:14:25', '2025-12-17 19:47:28', 'v4DbGQqm', '5281102'), + (95253, 1141, 1397, 'attending', '2022-05-21 16:57:59', '2025-12-17 19:47:29', 'v4DbGQqm', '5281104'), + (95254, 1141, 1407, 'attending', '2022-06-04 21:06:54', '2025-12-17 19:47:30', 'v4DbGQqm', '5363695'), + (95255, 1141, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'v4DbGQqm', '5365960'), + (95256, 1141, 1415, 'attending', '2022-06-03 22:26:47', '2025-12-17 19:47:30', 'v4DbGQqm', '5368973'), + (95257, 1141, 1417, 'attending', '2022-05-23 23:41:28', '2025-12-17 19:47:30', 'v4DbGQqm', '5370465'), + (95258, 1141, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'v4DbGQqm', '5378247'), + (95259, 1141, 1431, 'attending', '2022-06-11 18:31:05', '2025-12-17 19:47:30', 'v4DbGQqm', '5389605'), + (95260, 1141, 1442, 'maybe', '2022-06-18 14:41:01', '2025-12-17 19:47:17', 'v4DbGQqm', '5397265'), + (95261, 1141, 1443, 'attending', '2022-06-04 21:06:51', '2025-12-17 19:47:30', 'v4DbGQqm', '5397613'), + (95262, 1141, 1444, 'not_attending', '2022-06-11 18:31:02', '2025-12-17 19:47:30', 'v4DbGQqm', '5397614'), + (95263, 1141, 1445, 'maybe', '2022-06-18 14:40:58', '2025-12-17 19:47:17', 'v4DbGQqm', '5397615'), + (95264, 1141, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'v4DbGQqm', '5403967'), + (95265, 1141, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'v4DbGQqm', '5404786'), + (95266, 1141, 1460, 'attending', '2022-06-10 04:36:01', '2025-12-17 19:47:31', 'v4DbGQqm', '5404817'), + (95267, 1141, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'v4DbGQqm', '5405203'), + (95268, 1141, 1465, 'not_attending', '2022-06-12 02:56:50', '2025-12-17 19:47:31', 'v4DbGQqm', '5406355'), + (95269, 1141, 1470, 'not_attending', '2022-06-18 14:40:55', '2025-12-17 19:47:17', 'v4DbGQqm', '5407053'), + (95270, 1141, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'v4DbGQqm', '5411699'), + (95271, 1141, 1482, 'not_attending', '2022-06-25 22:19:50', '2025-12-17 19:47:19', 'v4DbGQqm', '5412550'), + (95272, 1141, 1483, 'not_attending', '2022-06-20 21:21:55', '2025-12-17 19:47:17', 'v4DbGQqm', '5414556'), + (95273, 1141, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'v4DbGQqm', '5415046'), + (95274, 1141, 1494, 'not_attending', '2022-06-25 15:19:20', '2025-12-17 19:47:19', 'v4DbGQqm', '5421626'), + (95275, 1141, 1495, 'attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'v4DbGQqm', '5422086'), + (95276, 1141, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'v4DbGQqm', '5422406'), + (95277, 1141, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'v4DbGQqm', '5424565'), + (95278, 1141, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'v4DbGQqm', '5426882'), + (95279, 1141, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'v4DbGQqm', '5427083'), + (95280, 1141, 1508, 'attending', '2022-07-13 22:14:08', '2025-12-17 19:47:19', 'v4DbGQqm', '5433453'), + (95281, 1141, 1512, 'attending', '2022-07-15 21:43:44', '2025-12-17 19:47:19', 'v4DbGQqm', '5441112'), + (95282, 1141, 1513, 'attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'v4DbGQqm', '5441125'), + (95283, 1141, 1514, 'attending', '2022-07-21 19:50:49', '2025-12-17 19:47:20', 'v4DbGQqm', '5441126'), + (95284, 1141, 1515, 'attending', '2022-08-06 16:24:52', '2025-12-17 19:47:21', 'v4DbGQqm', '5441128'), + (95285, 1141, 1516, 'not_attending', '2022-08-20 17:05:40', '2025-12-17 19:47:23', 'v4DbGQqm', '5441129'), + (95286, 1141, 1517, 'attending', '2022-08-25 15:23:55', '2025-12-17 19:47:23', 'v4DbGQqm', '5441130'), + (95287, 1141, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'v4DbGQqm', '5441131'), + (95288, 1141, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'v4DbGQqm', '5441132'), + (95289, 1141, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'v4DbGQqm', '5446643'), + (95290, 1141, 1529, 'attending', '2022-07-14 17:54:02', '2025-12-17 19:47:19', 'v4DbGQqm', '5447079'), + (95291, 1141, 1532, 'maybe', '2022-07-21 19:51:00', '2025-12-17 19:47:20', 'v4DbGQqm', '5448757'), + (95292, 1141, 1533, 'not_attending', '2022-07-29 21:36:09', '2025-12-17 19:47:21', 'v4DbGQqm', '5448758'), + (95293, 1141, 1534, 'maybe', '2022-08-06 16:24:49', '2025-12-17 19:47:21', 'v4DbGQqm', '5448759'), + (95294, 1141, 1535, 'attending', '2022-07-19 18:01:33', '2025-12-17 19:47:20', 'v4DbGQqm', '5448830'), + (95295, 1141, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'v4DbGQqm', '5453325'), + (95296, 1141, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'v4DbGQqm', '5454516'), + (95297, 1141, 1544, 'maybe', '2022-09-15 14:21:27', '2025-12-17 19:47:11', 'v4DbGQqm', '5454517'), + (95298, 1141, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'v4DbGQqm', '5454605'), + (95299, 1141, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'v4DbGQqm', '5455037'), + (95300, 1141, 1557, 'attending', '2022-08-03 22:16:24', '2025-12-17 19:47:21', 'v4DbGQqm', '5458729'), + (95301, 1141, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'v4DbGQqm', '5461278'), + (95302, 1141, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'v4DbGQqm', '5469480'), + (95303, 1141, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'v4DbGQqm', '5471073'), + (95304, 1141, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'v4DbGQqm', '5474663'), + (95305, 1141, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'v4DbGQqm', '5482022'), + (95306, 1141, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'v4DbGQqm', '5482793'), + (95307, 1141, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'v4DbGQqm', '5488912'), + (95308, 1141, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'v4DbGQqm', '5492192'), + (95309, 1141, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'v4DbGQqm', '5493139'), + (95310, 1141, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'v4DbGQqm', '5493200'), + (95311, 1141, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'v4DbGQqm', '5502188'), + (95312, 1141, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'v4DbGQqm', '5505059'), + (95313, 1141, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'v4DbGQqm', '5509055'), + (95314, 1141, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'v4DbGQqm', '5512862'), + (95315, 1141, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'v4DbGQqm', '5513985'), + (95316, 1141, 1626, 'not_attending', '2022-08-25 22:34:49', '2025-12-17 19:47:11', 'v4DbGQqm', '5519981'), + (95317, 1141, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'v4DbGQqm', '5522550'), + (95318, 1141, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'v4DbGQqm', '5534683'), + (95319, 1141, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'v4DbGQqm', '5537735'), + (95320, 1141, 1640, 'maybe', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'v4DbGQqm', '5540859'), + (95321, 1141, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'v4DbGQqm', '5546619'), + (95322, 1141, 1658, 'attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'v4DbGQqm', '5555245'), + (95323, 1141, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'v4DbGQqm', '5557747'), + (95324, 1141, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'v4DbGQqm', '5560255'), + (95325, 1141, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'v4DbGQqm', '5562906'), + (95326, 1141, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'v4DbGQqm', '5600604'), + (95327, 1141, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'v4DbGQqm', '5605544'), + (95328, 1141, 1699, 'not_attending', '2022-09-26 12:15:13', '2025-12-17 19:47:12', 'v4DbGQqm', '5606737'), + (95329, 1141, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'v4DbGQqm', '5630960'), + (95330, 1141, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'v4DbGQqm', '5630961'), + (95331, 1141, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'v4DbGQqm', '5630962'), + (95332, 1141, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'v4DbGQqm', '5630966'), + (95333, 1141, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'v4DbGQqm', '5630967'), + (95334, 1141, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'v4DbGQqm', '5630968'), + (95335, 1141, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'v4DbGQqm', '5635406'), + (95336, 1141, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'v4DbGQqm', '5638765'), + (95337, 1141, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'v4DbGQqm', '5640097'), + (95338, 1141, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'v4DbGQqm', '5640843'), + (95339, 1141, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'v4DbGQqm', '5641521'), + (95340, 1141, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'v4DbGQqm', '5642818'), + (95341, 1141, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'v4DbGQqm', '5652395'), + (95342, 1141, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'v4DbGQqm', '5670445'), + (95343, 1141, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'v4DbGQqm', '5671637'), + (95344, 1141, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'v4DbGQqm', '5672329'), + (95345, 1141, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'v4DbGQqm', '5674057'), + (95346, 1141, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'v4DbGQqm', '5674060'), + (95347, 1141, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'v4DbGQqm', '5677461'), + (95348, 1141, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'v4DbGQqm', '5698046'), + (95349, 1141, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'v4DbGQqm', '5699760'), + (95350, 1141, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'v4DbGQqm', '5741601'), + (95351, 1141, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'v4DbGQqm', '5763458'), + (95352, 1141, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'v4DbGQqm', '5774172'), + (95353, 1141, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'v4DbGQqm', '5818247'), + (95354, 1141, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'v4DbGQqm', '5819471'), + (95355, 1141, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'v4DbGQqm', '5827739'), + (95356, 1141, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'v4DbGQqm', '5844306'), + (95357, 1141, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'v4DbGQqm', '5850159'), + (95358, 1141, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'v4DbGQqm', '5858999'), + (95359, 1141, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'v4DbGQqm', '5871984'), + (95360, 1141, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'v4DbGQqm', '5876354'), + (95361, 1141, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'v4DbGQqm', '5880939'), + (95362, 1141, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'v4DbGQqm', '5880940'), + (95363, 1141, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'v4DbGQqm', '5880942'), + (95364, 1141, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'v4DbGQqm', '5880943'), + (95365, 1141, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'v4DbGQqm', '5887890'), + (95366, 1141, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'v4DbGQqm', '5888598'), + (95367, 1141, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'v4DbGQqm', '5893260'), + (95368, 1141, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'v4DbGQqm', '5899826'), + (95369, 1141, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'v4DbGQqm', '5900199'), + (95370, 1141, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'v4DbGQqm', '5900200'), + (95371, 1141, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'v4DbGQqm', '5900202'), + (95372, 1141, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'v4DbGQqm', '5900203'), + (95373, 1141, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'v4DbGQqm', '5901108'), + (95374, 1141, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'v4DbGQqm', '5901126'), + (95375, 1141, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'v4DbGQqm', '5909655'), + (95376, 1141, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'v4DbGQqm', '5910522'), + (95377, 1141, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'v4DbGQqm', '5910526'), + (95378, 1141, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'v4DbGQqm', '5910528'), + (95379, 1141, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'v4DbGQqm', '5916219'), + (95380, 1141, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'v4DbGQqm', '5936234'), + (95381, 1141, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'v4DbGQqm', '5958351'), + (95382, 1141, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'v4DbGQqm', '5959751'), + (95383, 1141, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'v4DbGQqm', '5959755'), + (95384, 1141, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'v4DbGQqm', '5960055'), + (95385, 1141, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'v4DbGQqm', '5961684'), + (95386, 1141, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'v4DbGQqm', '5962132'), + (95387, 1141, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'v4DbGQqm', '5962133'), + (95388, 1141, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'v4DbGQqm', '5962134'), + (95389, 1141, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'v4DbGQqm', '5962317'), + (95390, 1141, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'v4DbGQqm', '5962318'), + (95391, 1141, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'v4DbGQqm', '5965933'), + (95392, 1141, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'v4DbGQqm', '5967014'), + (95393, 1141, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', 'v4DbGQqm', '5972763'), + (95394, 1141, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'v4DbGQqm', '5972815'), + (95395, 1141, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'v4DbGQqm', '5974016'), + (95396, 1141, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'v4DbGQqm', '5975052'), + (95397, 1141, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'v4DbGQqm', '5975054'), + (95398, 1141, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'v4DbGQqm', '5981515'), + (95399, 1141, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'v4DbGQqm', '5993516'), + (95400, 1141, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'v4DbGQqm', '5998939'), + (95401, 1141, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'v4DbGQqm', '6028191'), + (95402, 1141, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'v4DbGQqm', '6040066'), + (95403, 1141, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'v4DbGQqm', '6042717'), + (95404, 1141, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'v4DbGQqm', '6044838'), + (95405, 1141, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'v4DbGQqm', '6044839'), + (95406, 1141, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'v4DbGQqm', '6045684'), + (95407, 1141, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'v4DbGQqm', '6050104'), + (95408, 1141, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'v4DbGQqm', '6053195'), + (95409, 1141, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'v4DbGQqm', '6053198'), + (95410, 1141, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'v4DbGQqm', '6056085'), + (95411, 1141, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'v4DbGQqm', '6056916'), + (95412, 1141, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'v4DbGQqm', '6059290'), + (95413, 1141, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'v4DbGQqm', '6060328'), + (95414, 1141, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'v4DbGQqm', '6061037'), + (95415, 1141, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'v4DbGQqm', '6061039'), + (95416, 1141, 2020, 'not_attending', '2023-04-14 17:15:11', '2025-12-17 19:46:59', 'v4DbGQqm', '6065813'), + (95417, 1141, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'v4DbGQqm', '6067245'), + (95418, 1141, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'v4DbGQqm', '6068094'), + (95419, 1141, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'v4DbGQqm', '6068252'), + (95420, 1141, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'v4DbGQqm', '6068253'), + (95421, 1141, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'v4DbGQqm', '6068254'), + (95422, 1141, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'v4DbGQqm', '6068280'), + (95423, 1141, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'v4DbGQqm', '6069093'), + (95424, 1141, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'v4DbGQqm', '6072528'), + (95425, 1141, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'v4DbGQqm', '6075556'), + (95426, 1141, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'v4DbGQqm', '6079840'), + (95427, 1141, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'v4DbGQqm', '6083398'), + (95428, 1141, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'v4DbGQqm', '6093504'), + (95429, 1141, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'v4DbGQqm', '6097414'), + (95430, 1141, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'v4DbGQqm', '6097442'), + (95431, 1141, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'v4DbGQqm', '6097684'), + (95432, 1141, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'v4DbGQqm', '6098762'), + (95433, 1141, 2064, 'not_attending', '2023-06-24 16:27:07', '2025-12-17 19:46:50', 'v4DbGQqm', '6099988'), + (95434, 1141, 2065, 'not_attending', '2023-06-17 13:50:32', '2025-12-17 19:46:49', 'v4DbGQqm', '6101169'), + (95435, 1141, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'v4DbGQqm', '6101361'), + (95436, 1141, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'v4DbGQqm', '6101362'), + (95437, 1141, 2075, 'attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'v4DbGQqm', '6107314'), + (95438, 1141, 2077, 'not_attending', '2023-06-17 13:50:38', '2025-12-17 19:46:49', 'v4DbGQqm', '6110217'), + (95439, 1141, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'v4DbGQqm', '6120034'), + (95440, 1141, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'v4DbGQqm', '6136733'), + (95441, 1141, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'v4DbGQqm', '6137989'), + (95442, 1141, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'v4DbGQqm', '6150864'), + (95443, 1141, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'v4DbGQqm', '6155491'), + (95444, 1141, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'v4DbGQqm', '6164417'), + (95445, 1141, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'v4DbGQqm', '6166388'), + (95446, 1141, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'v4DbGQqm', '6176439'), + (95447, 1141, 2123, 'maybe', '2023-06-29 11:09:36', '2025-12-17 19:46:50', 'v4DbGQqm', '6176502'), + (95448, 1141, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'v4DbGQqm', '6182410'), + (95449, 1141, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'v4DbGQqm', '6185812'), + (95450, 1141, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'v4DbGQqm', '6187651'), + (95451, 1141, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'v4DbGQqm', '6187963'), + (95452, 1141, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'v4DbGQqm', '6187964'), + (95453, 1141, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'v4DbGQqm', '6187966'), + (95454, 1141, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'v4DbGQqm', '6187967'), + (95455, 1141, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'v4DbGQqm', '6187969'), + (95456, 1141, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'v4DbGQqm', '6334878'), + (95457, 1141, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'v4DbGQqm', '6337236'), + (95458, 1141, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'v4DbGQqm', '6337970'), + (95459, 1141, 2156, 'attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'v4DbGQqm', '6338308'), + (95460, 1141, 2157, 'not_attending', '2023-07-12 21:53:23', '2025-12-17 19:46:52', 'v4DbGQqm', '6338342'), + (95461, 1141, 2159, 'not_attending', '2023-07-22 21:41:51', '2025-12-17 19:46:53', 'v4DbGQqm', '6338355'), + (95462, 1141, 2160, 'not_attending', '2023-07-29 21:33:04', '2025-12-17 19:46:54', 'v4DbGQqm', '6338358'), + (95463, 1141, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'v4DbGQqm', '6341710'), + (95464, 1141, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'v4DbGQqm', '6342044'), + (95465, 1141, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'v4DbGQqm', '6342298'), + (95466, 1141, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'v4DbGQqm', '6343294'), + (95467, 1141, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'v4DbGQqm', '6347034'), + (95468, 1141, 2177, 'not_attending', '2023-08-12 17:22:56', '2025-12-17 19:46:55', 'v4DbGQqm', '6347053'), + (95469, 1141, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'v4DbGQqm', '6347056'), + (95470, 1141, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'v4DbGQqm', '6353830'), + (95471, 1141, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'v4DbGQqm', '6353831'), + (95472, 1141, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'v4DbGQqm', '6357867'), + (95473, 1141, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'v4DbGQqm', '6358652'), + (95474, 1141, 2193, 'not_attending', '2023-08-03 22:10:29', '2025-12-17 19:46:54', 'v4DbGQqm', '6358668'), + (95475, 1141, 2194, 'not_attending', '2023-08-03 22:09:41', '2025-12-17 19:46:54', 'v4DbGQqm', '6358669'), + (95476, 1141, 2204, 'not_attending', '2023-08-19 21:33:56', '2025-12-17 19:46:55', 'v4DbGQqm', '6361542'), + (95477, 1141, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'v4DbGQqm', '6361709'), + (95478, 1141, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'v4DbGQqm', '6361710'), + (95479, 1141, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'v4DbGQqm', '6361711'), + (95480, 1141, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'v4DbGQqm', '6361712'), + (95481, 1141, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'v4DbGQqm', '6361713'), + (95482, 1141, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'v4DbGQqm', '6382573'), + (95483, 1141, 2239, 'not_attending', '2023-09-02 23:46:47', '2025-12-17 19:46:56', 'v4DbGQqm', '6387592'), + (95484, 1141, 2240, 'not_attending', '2023-09-09 21:44:39', '2025-12-17 19:46:56', 'v4DbGQqm', '6388603'), + (95485, 1141, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'v4DbGQqm', '6388604'), + (95486, 1141, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'v4DbGQqm', '6394629'), + (95487, 1141, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'v4DbGQqm', '6394631'), + (95488, 1141, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'v4DbGQqm', '6440863'), + (95489, 1141, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'v4DbGQqm', '6445440'), + (95490, 1141, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'v4DbGQqm', '6453951'), + (95491, 1141, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'v4DbGQqm', '6461696'), + (95492, 1141, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'v4DbGQqm', '6462129'), + (95493, 1141, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'v4DbGQqm', '6463218'), + (95494, 1141, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'v4DbGQqm', '6472181'), + (95495, 1141, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'v4DbGQqm', '6482693'), + (95496, 1141, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'v4DbGQqm', '6484200'), + (95497, 1141, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'v4DbGQqm', '6484680'), + (95498, 1141, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'v4DbGQqm', '6507741'), + (95499, 1141, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'v4DbGQqm', '6514659'), + (95500, 1141, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'v4DbGQqm', '6514660'), + (95501, 1141, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'v4DbGQqm', '6519103'), + (95502, 1141, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'v4DbGQqm', '6535681'), + (95503, 1141, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'v4DbGQqm', '6584747'), + (95504, 1141, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'v4DbGQqm', '6587097'), + (95505, 1141, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'v4DbGQqm', '6609022'), + (95506, 1141, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'v4DbGQqm', '6632757'), + (95507, 1141, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'v4DbGQqm', '6644187'), + (95508, 1141, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'v4DbGQqm', '6648951'), + (95509, 1141, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'v4DbGQqm', '6648952'), + (95510, 1141, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'v4DbGQqm', '6655401'), + (95511, 1141, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'v4DbGQqm', '6661585'), + (95512, 1141, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'v4DbGQqm', '6661588'), + (95513, 1141, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'v4DbGQqm', '6661589'), + (95514, 1141, 2407, 'attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'v4DbGQqm', '6699906'), + (95515, 1141, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'v4DbGQqm', '6699913'), + (95516, 1141, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'v4DbGQqm', '6701109'), + (95517, 1141, 2419, 'not_attending', '2024-01-18 15:56:08', '2025-12-17 19:46:41', 'v4DbGQqm', '6704505'), + (95518, 1141, 2420, 'not_attending', '2024-01-18 15:51:37', '2025-12-17 19:46:40', 'v4DbGQqm', '6704561'), + (95519, 1141, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'v4DbGQqm', '6705219'), + (95520, 1141, 2427, 'not_attending', '2024-01-20 18:57:45', '2025-12-17 19:46:40', 'v4DbGQqm', '6708410'), + (95521, 1141, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'v4DbGQqm', '6710153'), + (95522, 1141, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'v4DbGQqm', '6711552'), + (95523, 1141, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'v4DbGQqm', '6711553'), + (95524, 1141, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'v4DbGQqm', '6722688'), + (95525, 1141, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'v4DbGQqm', '6730620'), + (95526, 1141, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'v4DbGQqm', '6730642'), + (95527, 1141, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'v4DbGQqm', '6740364'), + (95528, 1141, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'v4DbGQqm', '6743829'), + (95529, 1141, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'v4DbGQqm', '7030380'), + (95530, 1141, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'v4DbGQqm', '7033677'), + (95531, 1141, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'v4DbGQqm', '7035415'), + (95532, 1141, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'v4DbGQqm', '7044715'), + (95533, 1141, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'v4DbGQqm', '7050318'), + (95534, 1141, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'v4DbGQqm', '7050319'), + (95535, 1141, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'v4DbGQqm', '7050322'), + (95536, 1141, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'v4DbGQqm', '7057804'), + (95537, 1141, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'v4DbGQqm', '7072824'), + (95538, 1141, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'v4DbGQqm', '7074348'), + (95539, 1141, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'v4DbGQqm', '7074364'), + (95540, 1141, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'v4DbGQqm', '7089267'), + (95541, 1141, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'v4DbGQqm', '7098747'), + (95542, 1141, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'v4DbGQqm', '7113468'), + (95543, 1141, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'v4DbGQqm', '7114856'), + (95544, 1141, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'v4DbGQqm', '7114951'), + (95545, 1141, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'v4DbGQqm', '7114955'), + (95546, 1141, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'v4DbGQqm', '7114956'), + (95547, 1141, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'v4DbGQqm', '7114957'), + (95548, 1141, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'v4DbGQqm', '7153615'), + (95549, 1141, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'v4DbGQqm', '7159484'), + (95550, 1141, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'v4DbGQqm', '7178446'), + (95551, 1141, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'v4DbGQqm', '7220467'), + (95552, 1141, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'v4DbGQqm', '7240354'), + (95553, 1141, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'v4DbGQqm', '7251633'), + (95554, 1141, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'v4DbGQqm', '7302674'), + (95555, 1141, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'v4DbGQqm', '7324073'), + (95556, 1141, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'v4DbGQqm', '7324074'), + (95557, 1141, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'v4DbGQqm', '7324075'), + (95558, 1141, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'v4DbGQqm', '7324078'), + (95559, 1141, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'v4DbGQqm', '7324082'), + (95560, 1141, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'v4DbGQqm', '7331457'), + (95561, 1141, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'v4DbGQqm', '7363643'), + (95562, 1141, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'v4DbGQqm', '7368606'), + (95563, 1141, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'v4DbGQqm', '7397462'), + (95564, 1141, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'v4DbGQqm', '7424275'), + (95565, 1141, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'v4DbGQqm', '7432751'), + (95566, 1141, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'v4DbGQqm', '7432752'), + (95567, 1141, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'v4DbGQqm', '7432753'), + (95568, 1141, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'v4DbGQqm', '7432754'), + (95569, 1141, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'v4DbGQqm', '7432755'), + (95570, 1141, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'v4DbGQqm', '7432756'), + (95571, 1141, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'v4DbGQqm', '7432758'), + (95572, 1141, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'v4DbGQqm', '7432759'), + (95573, 1141, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'v4DbGQqm', '7433834'), + (95574, 1141, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'v4DbGQqm', '7470197'), + (95575, 1141, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'v4DbGQqm', '7685613'), + (95576, 1141, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'v4DbGQqm', '7688194'), + (95577, 1141, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'v4DbGQqm', '7688196'), + (95578, 1141, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'v4DbGQqm', '7688289'), + (95579, 1141, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'v4DbGQqm', '7692763'), + (95580, 1141, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'v4DbGQqm', '7697552'), + (95581, 1141, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'v4DbGQqm', '7699878'), + (95582, 1141, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'v4DbGQqm', '7704043'), + (95583, 1141, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'v4DbGQqm', '7712467'), + (95584, 1141, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'v4DbGQqm', '7713585'), + (95585, 1141, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'v4DbGQqm', '7713586'), + (95586, 1141, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'v4DbGQqm', '7738518'), + (95587, 1141, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'v4DbGQqm', '7750636'), + (95588, 1141, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'v4DbGQqm', '7796540'), + (95589, 1141, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'v4DbGQqm', '7796541'), + (95590, 1141, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'v4DbGQqm', '7796542'), + (95591, 1141, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'v4DbGQqm', '7825913'), + (95592, 1141, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'v4DbGQqm', '7826209'), + (95593, 1141, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'v4DbGQqm', '7834742'), + (95594, 1141, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'v4DbGQqm', '7842108'), + (95595, 1141, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'v4DbGQqm', '7842902'), + (95596, 1141, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'v4DbGQqm', '7842903'), + (95597, 1141, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'v4DbGQqm', '7842904'), + (95598, 1141, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'v4DbGQqm', '7842905'), + (95599, 1141, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'v4DbGQqm', '7855719'), + (95600, 1141, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'v4DbGQqm', '7860683'), + (95601, 1141, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'v4DbGQqm', '7860684'), + (95602, 1141, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'v4DbGQqm', '7866095'), + (95603, 1141, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'v4DbGQqm', '7869170'), + (95604, 1141, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'v4DbGQqm', '7869188'), + (95605, 1141, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'v4DbGQqm', '7869201'), + (95606, 1141, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'v4DbGQqm', '7877465'), + (95607, 1141, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'v4DbGQqm', '7888250'), + (95608, 1141, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'v4DbGQqm', '7904777'), + (95609, 1141, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'v4DbGQqm', '8349164'), + (95610, 1141, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'v4DbGQqm', '8349545'), + (95611, 1141, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'v4DbGQqm', '8368028'), + (95612, 1141, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'v4DbGQqm', '8368029'), + (95613, 1141, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'v4DbGQqm', '8388462'), + (95614, 1141, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'v4DbGQqm', '8400273'), + (95615, 1141, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'v4DbGQqm', '8400275'), + (95616, 1141, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'v4DbGQqm', '8400276'), + (95617, 1141, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'v4DbGQqm', '8404977'), + (95618, 1141, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'v4DbGQqm', '8430783'), + (95619, 1141, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'v4DbGQqm', '8430784'), + (95620, 1141, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'v4DbGQqm', '8430799'), + (95621, 1141, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'v4DbGQqm', '8430800'), + (95622, 1141, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'v4DbGQqm', '8430801'), + (95623, 1141, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'v4DbGQqm', '8438709'), + (95624, 1141, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'v4DbGQqm', '8457738'), + (95625, 1141, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'v4DbGQqm', '8459566'), + (95626, 1141, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'v4DbGQqm', '8459567'), + (95627, 1141, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'v4DbGQqm', '8461032'), + (95628, 1141, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'v4DbGQqm', '8477877'), + (95629, 1141, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'v4DbGQqm', '8485688'), + (95630, 1141, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'v4DbGQqm', '8490587'), + (95631, 1141, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'v4DbGQqm', '8493552'), + (95632, 1141, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'v4DbGQqm', '8493553'), + (95633, 1141, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'v4DbGQqm', '8493554'), + (95634, 1141, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'v4DbGQqm', '8493555'), + (95635, 1141, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'v4DbGQqm', '8493556'), + (95636, 1141, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'v4DbGQqm', '8493557'), + (95637, 1141, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'v4DbGQqm', '8493558'), + (95638, 1141, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'v4DbGQqm', '8493559'), + (95639, 1141, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'v4DbGQqm', '8493560'), + (95640, 1141, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'v4DbGQqm', '8493561'), + (95641, 1141, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'v4DbGQqm', '8493572'), + (95642, 1141, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'v4DbGQqm', '8540725'), + (95643, 1141, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'v4DbGQqm', '8555421'), + (95644, 1142, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:14', '4DrX66Mm', '8540725'), + (95645, 1142, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '4DrX66Mm', '8555421'), + (95646, 1142, 3324, 'not_attending', '2025-11-18 00:10:55', '2025-12-17 19:46:14', '4DrX66Mm', '8556406'), + (95647, 1142, 3330, 'not_attending', '2025-11-30 19:26:38', '2025-12-17 19:46:11', '4DrX66Mm', '8561720'), + (95648, 1165, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'mqM2p0Lm', '8477877'), + (95649, 1165, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'mqM2p0Lm', '8485688'), + (95650, 1165, 3234, 'not_attending', '2025-08-15 02:57:03', '2025-12-17 19:46:17', 'mqM2p0Lm', '8488773'), + (95651, 1165, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'mqM2p0Lm', '8490587'), + (95652, 1165, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'mqM2p0Lm', '8493552'), + (95653, 1165, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:12', 'mqM2p0Lm', '8493553'), + (95654, 1165, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'mqM2p0Lm', '8493554'), + (95655, 1165, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'mqM2p0Lm', '8493555'), + (95656, 1165, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'mqM2p0Lm', '8493556'), + (95657, 1165, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'mqM2p0Lm', '8493557'), + (95658, 1165, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'mqM2p0Lm', '8493558'), + (95659, 1165, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'mqM2p0Lm', '8493559'), + (95660, 1165, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'mqM2p0Lm', '8493560'), + (95661, 1165, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', 'mqM2p0Lm', '8493561'), + (95662, 1165, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'mqM2p0Lm', '8493572'), + (95663, 1165, 3276, 'not_attending', '2025-09-22 18:18:11', '2025-12-17 19:46:12', 'mqM2p0Lm', '8529058'), + (95664, 1166, 996, 'not_attending', '2021-10-10 04:36:06', '2025-12-17 19:47:35', 'mG2vprPd', '4420747'), + (95665, 1166, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mG2vprPd', '4568602'), + (95666, 1166, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'mG2vprPd', '4572153'), + (95667, 1166, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'mG2vprPd', '4585962'), + (95668, 1166, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'mG2vprPd', '4596356'), + (95669, 1166, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'mG2vprPd', '4598860'), + (95670, 1166, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'mG2vprPd', '4598861'), + (95671, 1166, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'mG2vprPd', '4602797'), + (95672, 1166, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'mG2vprPd', '4637896'), + (95673, 1166, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'mG2vprPd', '4642994'), + (95674, 1166, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'mG2vprPd', '4642995'), + (95675, 1166, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'mG2vprPd', '4642996'), + (95676, 1166, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'mG2vprPd', '4642997'), + (95677, 1166, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'mG2vprPd', '4645687'), + (95678, 1166, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'mG2vprPd', '4645698'), + (95679, 1166, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'mG2vprPd', '4645704'), + (95680, 1166, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'mG2vprPd', '4645705'), + (95681, 1166, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'mG2vprPd', '4668385'), + (95682, 1166, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mG2vprPd', '6045684'), + (95683, 1167, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', '841vDPwd', '3539921'), + (95684, 1167, 802, 'attending', '2021-05-12 21:40:14', '2025-12-17 19:47:46', '841vDPwd', '3803310'), + (95685, 1167, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '841vDPwd', '6045684'), + (95686, 1168, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'dKZw1pR4', '6101361'), + (95687, 1168, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'dKZw1pR4', '6136733'), + (95688, 1168, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'dKZw1pR4', '6137989'), + (95689, 1168, 2098, 'not_attending', '2023-06-08 17:50:17', '2025-12-17 19:47:04', 'dKZw1pR4', '6139831'), + (95690, 1168, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'dKZw1pR4', '6150864'), + (95691, 1168, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'dKZw1pR4', '6155491'), + (95692, 1168, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'dKZw1pR4', '6164417'), + (95693, 1168, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'dKZw1pR4', '6166388'), + (95694, 1168, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'dKZw1pR4', '6176439'), + (95695, 1168, 2125, 'not_attending', '2023-06-29 19:29:50', '2025-12-17 19:46:51', 'dKZw1pR4', '6177485'), + (95696, 1168, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:50', 'dKZw1pR4', '6182410'), + (95697, 1168, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'dKZw1pR4', '6185812'), + (95698, 1168, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'dKZw1pR4', '6187651'), + (95699, 1168, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'dKZw1pR4', '6187963'), + (95700, 1168, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'dKZw1pR4', '6187964'), + (95701, 1168, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'dKZw1pR4', '6187966'), + (95702, 1168, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'dKZw1pR4', '6187967'), + (95703, 1168, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'dKZw1pR4', '6187969'), + (95704, 1168, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'dKZw1pR4', '6334878'), + (95705, 1169, 262, 'not_attending', '2021-06-25 17:59:33', '2025-12-17 19:47:38', '2d26ywPd', '3149493'), + (95706, 1169, 393, 'maybe', '2021-06-23 23:16:18', '2025-12-17 19:47:38', '2d26ywPd', '3236448'), + (95707, 1169, 823, 'attending', '2021-06-22 16:31:44', '2025-12-17 19:47:48', '2d26ywPd', '3974109'), + (95708, 1169, 829, 'attending', '2021-06-21 19:38:53', '2025-12-17 19:47:47', '2d26ywPd', '3976202'), + (95709, 1169, 844, 'not_attending', '2021-06-21 14:59:45', '2025-12-17 19:47:38', '2d26ywPd', '4014338'), + (95710, 1169, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', '2d26ywPd', '4021848'), + (95711, 1169, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', '2d26ywPd', '4136937'), + (95712, 1169, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '2d26ywPd', '4136938'), + (95713, 1169, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '2d26ywPd', '4136947'), + (95714, 1169, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '2d26ywPd', '4210314'), + (95715, 1169, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '2d26ywPd', '4225444'), + (95716, 1169, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', '2d26ywPd', '4229417'), + (95717, 1169, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', '2d26ywPd', '4229418'), + (95718, 1169, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '2d26ywPd', '4239259'), + (95719, 1169, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '2d26ywPd', '4240316'), + (95720, 1169, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '2d26ywPd', '4250163'), + (95721, 1169, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '2d26ywPd', '4275957'), + (95722, 1169, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '2d26ywPd', '6045684'), + (95723, 1170, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', '4EnnRNDd', '5441131'), + (95724, 1170, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', '4EnnRNDd', '5441132'), + (95725, 1170, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', '4EnnRNDd', '5461278'), + (95726, 1170, 1562, 'attending', '2022-08-14 17:14:30', '2025-12-17 19:47:22', '4EnnRNDd', '5469480'), + (95727, 1170, 1580, 'attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', '4EnnRNDd', '5488912'), + (95728, 1170, 1584, 'maybe', '2022-08-26 21:35:49', '2025-12-17 19:47:23', '4EnnRNDd', '5492004'), + (95729, 1170, 1586, 'not_attending', '2022-08-14 17:14:20', '2025-12-17 19:47:23', '4EnnRNDd', '5492019'), + (95730, 1170, 1594, 'attending', '2022-08-09 21:25:39', '2025-12-17 19:47:22', '4EnnRNDd', '5495523'), + (95731, 1170, 1595, 'attending', '2022-08-11 02:39:06', '2025-12-17 19:47:22', '4EnnRNDd', '5495736'), + (95732, 1170, 1597, 'attending', '2022-08-14 17:14:11', '2025-12-17 19:47:22', '4EnnRNDd', '5496566'), + (95733, 1170, 1598, 'attending', '2022-08-16 19:49:11', '2025-12-17 19:47:22', '4EnnRNDd', '5496567'), + (95734, 1170, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '4EnnRNDd', '5502188'), + (95735, 1170, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '4EnnRNDd', '5505059'), + (95736, 1170, 1609, 'attending', '2022-08-21 19:29:58', '2025-12-17 19:47:23', '4EnnRNDd', '5506590'), + (95737, 1170, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '4EnnRNDd', '5509055'), + (95738, 1170, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '4EnnRNDd', '5512862'), + (95739, 1170, 1620, 'not_attending', '2022-08-23 02:18:00', '2025-12-17 19:47:23', '4EnnRNDd', '5513046'), + (95740, 1170, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '4EnnRNDd', '5513985'), + (95741, 1170, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', '4EnnRNDd', '5519981'), + (95742, 1170, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '4EnnRNDd', '5522550'), + (95743, 1170, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '4EnnRNDd', '5534683'), + (95744, 1170, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', '4EnnRNDd', '5537735'), + (95745, 1170, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '4EnnRNDd', '5540859'), + (95746, 1170, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '4EnnRNDd', '5546619'), + (95747, 1170, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '4EnnRNDd', '5555245'), + (95748, 1170, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '4EnnRNDd', '5557747'), + (95749, 1170, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '4EnnRNDd', '5560255'), + (95750, 1170, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '4EnnRNDd', '5562906'), + (95751, 1170, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '4EnnRNDd', '5600604'), + (95752, 1170, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '4EnnRNDd', '5605544'), + (95753, 1170, 1699, 'not_attending', '2022-09-26 12:18:37', '2025-12-17 19:47:12', '4EnnRNDd', '5606737'), + (95754, 1170, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', '4EnnRNDd', '5630960'), + (95755, 1170, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '4EnnRNDd', '5630961'), + (95756, 1170, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '4EnnRNDd', '5630962'), + (95757, 1170, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '4EnnRNDd', '5630966'), + (95758, 1170, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '4EnnRNDd', '5630967'), + (95759, 1170, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '4EnnRNDd', '5630968'), + (95760, 1170, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '4EnnRNDd', '5635406'), + (95761, 1170, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '4EnnRNDd', '5638765'), + (95762, 1170, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '4EnnRNDd', '5640097'), + (95763, 1170, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', '4EnnRNDd', '5640843'), + (95764, 1170, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '4EnnRNDd', '5641521'), + (95765, 1170, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '4EnnRNDd', '5642818'), + (95766, 1170, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '4EnnRNDd', '5652395'), + (95767, 1170, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', '4EnnRNDd', '5670445'), + (95768, 1170, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '4EnnRNDd', '5671637'), + (95769, 1170, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '4EnnRNDd', '5672329'), + (95770, 1170, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '4EnnRNDd', '5674057'), + (95771, 1170, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '4EnnRNDd', '5674060'), + (95772, 1170, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '4EnnRNDd', '5677461'), + (95773, 1170, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '4EnnRNDd', '5698046'), + (95774, 1170, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '4EnnRNDd', '5699760'), + (95775, 1170, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '4EnnRNDd', '5741601'), + (95776, 1170, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '4EnnRNDd', '5763458'), + (95777, 1170, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '4EnnRNDd', '5774172'), + (95778, 1170, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', '4EnnRNDd', '5818247'), + (95779, 1170, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '4EnnRNDd', '5819471'), + (95780, 1170, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '4EnnRNDd', '5827739'), + (95781, 1170, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '4EnnRNDd', '5844306'), + (95782, 1170, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '4EnnRNDd', '5850159'), + (95783, 1170, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '4EnnRNDd', '5858999'), + (95784, 1170, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '4EnnRNDd', '5871984'), + (95785, 1170, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '4EnnRNDd', '5876354'), + (95786, 1170, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', '4EnnRNDd', '5880939'), + (95787, 1170, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '4EnnRNDd', '5887890'), + (95788, 1170, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '4EnnRNDd', '5888598'), + (95789, 1170, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '4EnnRNDd', '5893260'), + (95790, 1170, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4EnnRNDd', '6045684'), + (95791, 1171, 258, 'not_attending', '2021-05-30 06:01:41', '2025-12-17 19:47:47', 'Pm7DrZYA', '3149489'), + (95792, 1171, 395, 'not_attending', '2021-06-07 05:00:49', '2025-12-17 19:47:47', 'Pm7DrZYA', '3236450'), + (95793, 1171, 397, 'not_attending', '2021-05-27 03:33:58', '2025-12-17 19:47:47', 'Pm7DrZYA', '3236452'), + (95794, 1171, 646, 'not_attending', '2021-05-13 00:01:49', '2025-12-17 19:47:46', 'Pm7DrZYA', '3539921'), + (95795, 1171, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'Pm7DrZYA', '3539922'), + (95796, 1171, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'Pm7DrZYA', '3539923'), + (95797, 1171, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'Pm7DrZYA', '3806392'), + (95798, 1171, 820, 'not_attending', '2021-05-28 19:15:11', '2025-12-17 19:47:47', 'Pm7DrZYA', '3963335'), + (95799, 1171, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'Pm7DrZYA', '3975311'), + (95800, 1171, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'Pm7DrZYA', '3994992'), + (95801, 1171, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'Pm7DrZYA', '6045684'), + (95802, 1172, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQ9Be37A', '6045684'), + (95803, 1173, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'dVgaBEqm', '5880942'), + (95804, 1173, 1869, 'attending', '2023-02-24 17:17:24', '2025-12-17 19:47:09', 'dVgaBEqm', '5880943'), + (95805, 1173, 1885, 'attending', '2023-02-23 23:17:40', '2025-12-17 19:47:08', 'dVgaBEqm', '5899928'), + (95806, 1173, 1886, 'attending', '2023-02-24 17:17:26', '2025-12-17 19:47:09', 'dVgaBEqm', '5899930'), + (95807, 1173, 1890, 'attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'dVgaBEqm', '5900200'), + (95808, 1173, 1891, 'attending', '2023-03-21 20:36:41', '2025-12-17 19:46:56', 'dVgaBEqm', '5900202'), + (95809, 1173, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dVgaBEqm', '5900203'), + (95810, 1173, 1916, 'attending', '2023-02-20 04:07:36', '2025-12-17 19:47:08', 'dVgaBEqm', '5910526'), + (95811, 1173, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dVgaBEqm', '5910528'), + (95812, 1173, 1925, 'attending', '2023-02-23 23:17:31', '2025-12-17 19:47:08', 'dVgaBEqm', '5932619'), + (95813, 1173, 1926, 'attending', '2023-02-24 17:17:14', '2025-12-17 19:47:08', 'dVgaBEqm', '5932620'), + (95814, 1173, 1930, 'attending', '2023-02-23 00:00:48', '2025-12-17 19:47:08', 'dVgaBEqm', '5933462'), + (95815, 1173, 1931, 'attending', '2023-02-23 00:01:03', '2025-12-17 19:47:08', 'dVgaBEqm', '5933464'), + (95816, 1173, 1932, 'attending', '2023-02-20 17:07:30', '2025-12-17 19:47:07', 'dVgaBEqm', '5935303'), + (95817, 1173, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'dVgaBEqm', '5936234'), + (95818, 1173, 1935, 'attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'dVgaBEqm', '5958351'), + (95819, 1173, 1936, 'attending', '2023-02-24 17:16:25', '2025-12-17 19:47:08', 'dVgaBEqm', '5959397'), + (95820, 1173, 1938, 'attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'dVgaBEqm', '5959751'), + (95821, 1173, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'dVgaBEqm', '5959755'), + (95822, 1173, 1940, 'attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'dVgaBEqm', '5960055'), + (95823, 1173, 1941, 'maybe', '2023-02-25 03:31:22', '2025-12-17 19:47:09', 'dVgaBEqm', '5961684'), + (95824, 1173, 1942, 'maybe', '2023-02-26 19:22:17', '2025-12-17 19:47:08', 'dVgaBEqm', '5962085'), + (95825, 1173, 1944, 'attending', '2023-02-25 23:07:58', '2025-12-17 19:47:08', 'dVgaBEqm', '5962132'), + (95826, 1173, 1945, 'maybe', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'dVgaBEqm', '5962133'), + (95827, 1173, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'dVgaBEqm', '5962134'), + (95828, 1173, 1948, 'attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dVgaBEqm', '5962317'), + (95829, 1173, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dVgaBEqm', '5962318'), + (95830, 1173, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:56', 'dVgaBEqm', '5965933'), + (95831, 1173, 1954, 'attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dVgaBEqm', '5967014'), + (95832, 1173, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dVgaBEqm', '5972815'), + (95833, 1173, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dVgaBEqm', '5974016'), + (95834, 1173, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dVgaBEqm', '5981515'), + (95835, 1173, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dVgaBEqm', '5993516'), + (95836, 1173, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dVgaBEqm', '5998939'), + (95837, 1173, 1978, 'attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dVgaBEqm', '6028191'), + (95838, 1173, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dVgaBEqm', '6040066'), + (95839, 1173, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dVgaBEqm', '6042717'), + (95840, 1173, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dVgaBEqm', '6044838'), + (95841, 1173, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dVgaBEqm', '6044839'), + (95842, 1173, 1990, 'maybe', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'dVgaBEqm', '6045684'), + (95843, 1173, 1994, 'attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dVgaBEqm', '6050104'), + (95844, 1173, 1996, 'attending', '2023-04-03 22:53:30', '2025-12-17 19:46:58', 'dVgaBEqm', '6050667'), + (95845, 1173, 2005, 'maybe', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dVgaBEqm', '6053195'), + (95846, 1173, 2006, 'attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dVgaBEqm', '6053198'), + (95847, 1173, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dVgaBEqm', '6056085'), + (95848, 1173, 2011, 'maybe', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dVgaBEqm', '6056916'), + (95849, 1173, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dVgaBEqm', '6059290'), + (95850, 1173, 2013, 'attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dVgaBEqm', '6060328'), + (95851, 1173, 2014, 'maybe', '2023-04-11 23:38:33', '2025-12-17 19:46:59', 'dVgaBEqm', '6060337'), + (95852, 1173, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dVgaBEqm', '6061037'), + (95853, 1173, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dVgaBEqm', '6061039'), + (95854, 1173, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dVgaBEqm', '6067245'), + (95855, 1173, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dVgaBEqm', '6068094'), + (95856, 1173, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dVgaBEqm', '6068252'), + (95857, 1173, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dVgaBEqm', '6068253'), + (95858, 1173, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dVgaBEqm', '6068254'), + (95859, 1173, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dVgaBEqm', '6068280'), + (95860, 1173, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dVgaBEqm', '6069093'), + (95861, 1173, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dVgaBEqm', '6072528'), + (95862, 1173, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dVgaBEqm', '6079840'), + (95863, 1173, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dVgaBEqm', '6083398'), + (95864, 1173, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dVgaBEqm', '6093504'), + (95865, 1173, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dVgaBEqm', '6097414'), + (95866, 1173, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dVgaBEqm', '6097442'), + (95867, 1173, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dVgaBEqm', '6097684'), + (95868, 1173, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dVgaBEqm', '6098762'), + (95869, 1173, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dVgaBEqm', '6101362'), + (95870, 1173, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'dVgaBEqm', '6103752'), + (95871, 1173, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dVgaBEqm', '6107314'), + (95872, 1174, 1507, 'attending', '2022-07-30 00:19:51', '2025-12-17 19:47:19', 'dOjDg7O4', '5433100'), + (95873, 1174, 1515, 'attending', '2022-08-06 16:06:12', '2025-12-17 19:47:21', 'dOjDg7O4', '5441128'), + (95874, 1174, 1517, 'attending', '2022-08-27 20:36:40', '2025-12-17 19:47:23', 'dOjDg7O4', '5441130'), + (95875, 1174, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dOjDg7O4', '5441131'), + (95876, 1174, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dOjDg7O4', '5441132'), + (95877, 1174, 1538, 'attending', '2022-08-01 00:34:26', '2025-12-17 19:47:21', 'dOjDg7O4', '5449565'), + (95878, 1174, 1543, 'attending', '2022-07-30 04:07:58', '2025-12-17 19:47:21', 'dOjDg7O4', '5454516'), + (95879, 1174, 1557, 'attending', '2022-08-02 22:24:20', '2025-12-17 19:47:21', 'dOjDg7O4', '5458729'), + (95880, 1174, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dOjDg7O4', '5461278'), + (95881, 1174, 1562, 'attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dOjDg7O4', '5469480'), + (95882, 1174, 1565, 'not_attending', '2022-08-02 15:25:20', '2025-12-17 19:47:21', 'dOjDg7O4', '5471073'), + (95883, 1174, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dOjDg7O4', '5482022'), + (95884, 1174, 1576, 'attending', '2022-08-02 22:05:13', '2025-12-17 19:47:21', 'dOjDg7O4', '5482623'), + (95885, 1174, 1577, 'attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dOjDg7O4', '5482793'), + (95886, 1174, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dOjDg7O4', '5488912'), + (95887, 1174, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dOjDg7O4', '5492192'), + (95888, 1174, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dOjDg7O4', '5493139'), + (95889, 1174, 1589, 'attending', '2022-08-21 18:35:19', '2025-12-17 19:47:23', 'dOjDg7O4', '5493159'), + (95890, 1174, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dOjDg7O4', '5493200'), + (95891, 1174, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dOjDg7O4', '5502188'), + (95892, 1174, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dOjDg7O4', '5505059'), + (95893, 1174, 1615, 'attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dOjDg7O4', '5509055'), + (95894, 1174, 1618, 'attending', '2022-08-28 15:06:53', '2025-12-17 19:47:23', 'dOjDg7O4', '5512005'), + (95895, 1174, 1619, 'attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dOjDg7O4', '5512862'), + (95896, 1174, 1624, 'attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dOjDg7O4', '5513985'), + (95897, 1174, 1626, 'not_attending', '2022-08-26 18:45:02', '2025-12-17 19:47:12', 'dOjDg7O4', '5519981'), + (95898, 1174, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dOjDg7O4', '5522550'), + (95899, 1174, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dOjDg7O4', '5534683'), + (95900, 1174, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dOjDg7O4', '5537735'), + (95901, 1174, 1640, 'attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dOjDg7O4', '5540859'), + (95902, 1174, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dOjDg7O4', '5546619'), + (95903, 1174, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dOjDg7O4', '5555245'), + (95904, 1174, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dOjDg7O4', '5557747'), + (95905, 1174, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dOjDg7O4', '5560255'), + (95906, 1174, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dOjDg7O4', '5562906'), + (95907, 1174, 1668, 'maybe', '2022-10-01 16:56:28', '2025-12-17 19:47:12', 'dOjDg7O4', '5563222'), + (95908, 1174, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dOjDg7O4', '5600604'), + (95909, 1174, 1684, 'attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dOjDg7O4', '5605544'), + (95910, 1174, 1699, 'not_attending', '2022-09-26 12:18:29', '2025-12-17 19:47:12', 'dOjDg7O4', '5606737'), + (95911, 1174, 1708, 'attending', '2022-10-05 21:54:17', '2025-12-17 19:47:12', 'dOjDg7O4', '5617648'), + (95912, 1174, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dOjDg7O4', '5630960'), + (95913, 1174, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dOjDg7O4', '5630961'), + (95914, 1174, 1723, 'attending', '2022-11-01 20:52:33', '2025-12-17 19:47:15', 'dOjDg7O4', '5630962'), + (95915, 1174, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dOjDg7O4', '5630966'), + (95916, 1174, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dOjDg7O4', '5630967'), + (95917, 1174, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dOjDg7O4', '5630968'), + (95918, 1174, 1732, 'attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dOjDg7O4', '5635406'), + (95919, 1174, 1738, 'attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dOjDg7O4', '5638765'), + (95920, 1174, 1739, 'attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dOjDg7O4', '5640097'), + (95921, 1174, 1740, 'attending', '2022-10-09 21:07:02', '2025-12-17 19:47:12', 'dOjDg7O4', '5640843'), + (95922, 1174, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dOjDg7O4', '5641521'), + (95923, 1174, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dOjDg7O4', '5642818'), + (95924, 1174, 1747, 'attending', '2022-10-23 16:39:16', '2025-12-17 19:47:13', 'dOjDg7O4', '5648009'), + (95925, 1174, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dOjDg7O4', '5652395'), + (95926, 1174, 1754, 'attending', '2022-10-18 20:44:57', '2025-12-17 19:47:12', 'dOjDg7O4', '5659773'), + (95927, 1174, 1755, 'attending', '2022-10-18 21:17:16', '2025-12-17 19:47:12', 'dOjDg7O4', '5659774'), + (95928, 1174, 1756, 'attending', '2022-10-24 20:32:38', '2025-12-17 19:47:13', 'dOjDg7O4', '5663338'), + (95929, 1174, 1760, 'attending', '2022-10-21 23:04:13', '2025-12-17 19:47:13', 'dOjDg7O4', '5669463'), + (95930, 1174, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dOjDg7O4', '5670445'), + (95931, 1174, 1764, 'attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dOjDg7O4', '5671637'), + (95932, 1174, 1765, 'attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dOjDg7O4', '5672329'), + (95933, 1174, 1766, 'attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dOjDg7O4', '5674057'), + (95934, 1174, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dOjDg7O4', '5674060'), + (95935, 1174, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dOjDg7O4', '5677461'), + (95936, 1174, 1781, 'attending', '2022-11-02 21:46:38', '2025-12-17 19:47:15', 'dOjDg7O4', '5696178'), + (95937, 1174, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dOjDg7O4', '5698046'), + (95938, 1174, 1784, 'attending', '2022-11-12 19:17:04', '2025-12-17 19:47:15', 'dOjDg7O4', '5699760'), + (95939, 1174, 1794, 'attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dOjDg7O4', '5741601'), + (95940, 1174, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dOjDg7O4', '5763458'), + (95941, 1174, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dOjDg7O4', '5774172'), + (95942, 1174, 1832, 'maybe', '2022-12-03 19:13:38', '2025-12-17 19:47:16', 'dOjDg7O4', '5818247'), + (95943, 1174, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dOjDg7O4', '5819471'), + (95944, 1174, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dOjDg7O4', '5827739'), + (95945, 1174, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dOjDg7O4', '5844306'), + (95946, 1174, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dOjDg7O4', '5850159'), + (95947, 1174, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dOjDg7O4', '5858999'), + (95948, 1174, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dOjDg7O4', '5871984'), + (95949, 1174, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dOjDg7O4', '5876354'), + (95950, 1174, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dOjDg7O4', '5880939'), + (95951, 1174, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dOjDg7O4', '5887890'), + (95952, 1174, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dOjDg7O4', '5888598'), + (95953, 1174, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dOjDg7O4', '5893260'), + (95954, 1174, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dOjDg7O4', '6045684'), + (95955, 1175, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd5wN5bqA', '5900202'), + (95956, 1175, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd5wN5bqA', '5900203'), + (95957, 1175, 1917, 'not_attending', '2023-03-12 22:26:03', '2025-12-17 19:47:10', 'd5wN5bqA', '5910528'), + (95958, 1175, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'd5wN5bqA', '5962317'), + (95959, 1175, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'd5wN5bqA', '5962318'), + (95960, 1175, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd5wN5bqA', '5965933'), + (95961, 1175, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd5wN5bqA', '5993516'), + (95962, 1175, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd5wN5bqA', '5998939'), + (95963, 1175, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd5wN5bqA', '6028191'), + (95964, 1175, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd5wN5bqA', '6040066'), + (95965, 1175, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd5wN5bqA', '6042717'), + (95966, 1175, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'd5wN5bqA', '6044838'), + (95967, 1175, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'd5wN5bqA', '6044839'), + (95968, 1175, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd5wN5bqA', '6045684'), + (95969, 1175, 1993, 'not_attending', '2023-04-04 15:22:54', '2025-12-17 19:46:58', 'd5wN5bqA', '6048955'), + (95970, 1175, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'd5wN5bqA', '6050104'), + (95971, 1175, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'd5wN5bqA', '6053195'), + (95972, 1175, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'd5wN5bqA', '6053198'), + (95973, 1175, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'd5wN5bqA', '6056085'), + (95974, 1175, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'd5wN5bqA', '6056916'), + (95975, 1175, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'd5wN5bqA', '6059290'), + (95976, 1175, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'd5wN5bqA', '6060328'), + (95977, 1175, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'd5wN5bqA', '6061037'), + (95978, 1175, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'd5wN5bqA', '6061039'), + (95979, 1175, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'd5wN5bqA', '6067245'), + (95980, 1175, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'd5wN5bqA', '6068094'), + (95981, 1175, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'd5wN5bqA', '6068252'), + (95982, 1175, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'd5wN5bqA', '6068253'), + (95983, 1175, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'd5wN5bqA', '6068254'), + (95984, 1175, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'd5wN5bqA', '6068280'), + (95985, 1175, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'd5wN5bqA', '6069093'), + (95986, 1175, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'd5wN5bqA', '6072528'), + (95987, 1175, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'd5wN5bqA', '6079840'), + (95988, 1175, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'd5wN5bqA', '6083398'), + (95989, 1175, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'd5wN5bqA', '6093504'), + (95990, 1175, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'd5wN5bqA', '6097414'), + (95991, 1175, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'd5wN5bqA', '6097442'), + (95992, 1175, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'd5wN5bqA', '6097684'), + (95993, 1175, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'd5wN5bqA', '6098762'), + (95994, 1175, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'd5wN5bqA', '6101362'), + (95995, 1175, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'd5wN5bqA', '6107314'), + (95996, 1175, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'd5wN5bqA', '6120034'), + (95997, 1176, 871, 'maybe', '2021-07-06 09:08:04', '2025-12-17 19:47:39', 'oAg03eq4', '4136938'), + (95998, 1176, 872, 'maybe', '2021-07-21 13:32:30', '2025-12-17 19:47:40', 'oAg03eq4', '4136947'), + (95999, 1176, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'oAg03eq4', '4210314'), + (96000, 1176, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'oAg03eq4', '4225444'), + (96001, 1176, 893, 'not_attending', '2021-07-23 04:00:52', '2025-12-17 19:47:40', 'oAg03eq4', '4229420'), + (96002, 1176, 894, 'attending', '2021-07-18 23:25:09', '2025-12-17 19:47:39', 'oAg03eq4', '4229423'), + (96003, 1176, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'oAg03eq4', '4240316'), + (96004, 1176, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'oAg03eq4', '4240317'), + (96005, 1176, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'oAg03eq4', '4240318'), + (96006, 1176, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'oAg03eq4', '4240320'), + (96007, 1176, 916, 'maybe', '2021-07-21 12:58:27', '2025-12-17 19:47:40', 'oAg03eq4', '4273772'), + (96008, 1176, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'oAg03eq4', '4275957'), + (96009, 1176, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'oAg03eq4', '4277819'), + (96010, 1176, 922, 'maybe', '2021-07-24 19:25:53', '2025-12-17 19:47:40', 'oAg03eq4', '4280811'), + (96011, 1176, 923, 'not_attending', '2021-07-23 06:50:25', '2025-12-17 19:47:40', 'oAg03eq4', '4292773'), + (96012, 1176, 924, 'not_attending', '2021-07-23 18:00:20', '2025-12-17 19:47:40', 'oAg03eq4', '4297137'), + (96013, 1176, 933, 'maybe', '2021-07-28 14:00:08', '2025-12-17 19:47:40', 'oAg03eq4', '4301723'), + (96014, 1176, 934, 'attending', '2021-08-04 17:06:30', '2025-12-17 19:47:40', 'oAg03eq4', '4302093'), + (96015, 1176, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'oAg03eq4', '4304151'), + (96016, 1176, 939, 'attending', '2021-07-30 21:03:20', '2025-12-17 19:47:40', 'oAg03eq4', '4308354'), + (96017, 1176, 943, 'attending', '2021-08-01 21:09:16', '2025-12-17 19:47:41', 'oAg03eq4', '4310979'), + (96018, 1176, 944, 'attending', '2021-08-03 21:22:52', '2025-12-17 19:47:41', 'oAg03eq4', '4310980'), + (96019, 1176, 945, 'attending', '2021-08-17 00:32:09', '2025-12-17 19:47:42', 'oAg03eq4', '4310981'), + (96020, 1176, 954, 'attending', '2021-08-03 21:24:06', '2025-12-17 19:47:41', 'oAg03eq4', '4331303'), + (96021, 1176, 958, 'not_attending', '2021-08-11 11:54:02', '2025-12-17 19:47:41', 'oAg03eq4', '4342996'), + (96022, 1176, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'oAg03eq4', '4356801'), + (96023, 1176, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'oAg03eq4', '4366186'), + (96024, 1176, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'oAg03eq4', '4366187'), + (96025, 1176, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'oAg03eq4', '4420735'), + (96026, 1176, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'oAg03eq4', '4420738'), + (96027, 1176, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'oAg03eq4', '4420739'), + (96028, 1176, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'oAg03eq4', '4420741'), + (96029, 1176, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'oAg03eq4', '4420744'), + (96030, 1176, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'oAg03eq4', '4420747'), + (96031, 1176, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'oAg03eq4', '4420748'), + (96032, 1176, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'oAg03eq4', '4420749'), + (96033, 1176, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'oAg03eq4', '4461883'), + (96034, 1176, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'oAg03eq4', '4508342'), + (96035, 1176, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'oAg03eq4', '4568602'), + (96036, 1176, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'oAg03eq4', '6045684'), + (96037, 1177, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd9nV8Wpm', '6045684'), + (96038, 1178, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dN9ZOJy4', '5195095'), + (96039, 1178, 1306, 'not_attending', '2022-04-05 19:30:52', '2025-12-17 19:47:26', 'dN9ZOJy4', '5223682'), + (96040, 1178, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dN9ZOJy4', '5223686'), + (96041, 1178, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dN9ZOJy4', '5227432'), + (96042, 1178, 1314, 'maybe', '2022-04-11 11:19:44', '2025-12-17 19:47:27', 'dN9ZOJy4', '5233137'), + (96043, 1178, 1339, 'attending', '2022-04-16 11:07:20', '2025-12-17 19:47:27', 'dN9ZOJy4', '5245284'), + (96044, 1178, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dN9ZOJy4', '5247467'), + (96045, 1178, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dN9ZOJy4', '5260800'), + (96046, 1178, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dN9ZOJy4', '5269930'), + (96047, 1178, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dN9ZOJy4', '5271448'), + (96048, 1178, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'dN9ZOJy4', '5271449'), + (96049, 1178, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dN9ZOJy4', '5276469'), + (96050, 1178, 1384, 'not_attending', '2022-05-05 14:15:19', '2025-12-17 19:47:28', 'dN9ZOJy4', '5277078'), + (96051, 1178, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dN9ZOJy4', '5278159'), + (96052, 1178, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dN9ZOJy4', '5363695'), + (96053, 1178, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dN9ZOJy4', '5365960'), + (96054, 1178, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dN9ZOJy4', '5368973'), + (96055, 1178, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dN9ZOJy4', '5378247'), + (96056, 1178, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'dN9ZOJy4', '5389605'), + (96057, 1178, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dN9ZOJy4', '5397265'), + (96058, 1178, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dN9ZOJy4', '5403967'), + (96059, 1178, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dN9ZOJy4', '5404786'), + (96060, 1178, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dN9ZOJy4', '5405203'), + (96061, 1178, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dN9ZOJy4', '5411699'), + (96062, 1178, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dN9ZOJy4', '5412550'), + (96063, 1178, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dN9ZOJy4', '5415046'), + (96064, 1178, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dN9ZOJy4', '5422086'), + (96065, 1178, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dN9ZOJy4', '5422406'), + (96066, 1178, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dN9ZOJy4', '5424565'), + (96067, 1178, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dN9ZOJy4', '5426882'), + (96068, 1178, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dN9ZOJy4', '5427083'), + (96069, 1178, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dN9ZOJy4', '5441125'), + (96070, 1178, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dN9ZOJy4', '5441126'), + (96071, 1178, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dN9ZOJy4', '5441128'), + (96072, 1178, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dN9ZOJy4', '5441131'), + (96073, 1178, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:25', 'dN9ZOJy4', '5441132'), + (96074, 1178, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dN9ZOJy4', '5446643'), + (96075, 1178, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dN9ZOJy4', '5453325'), + (96076, 1178, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dN9ZOJy4', '5454516'), + (96077, 1178, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dN9ZOJy4', '5454605'), + (96078, 1178, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dN9ZOJy4', '5455037'), + (96079, 1178, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dN9ZOJy4', '5461278'), + (96080, 1178, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dN9ZOJy4', '5469480'), + (96081, 1178, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dN9ZOJy4', '5471073'), + (96082, 1178, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dN9ZOJy4', '5474663'), + (96083, 1178, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dN9ZOJy4', '5482022'), + (96084, 1178, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dN9ZOJy4', '5482793'), + (96085, 1178, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dN9ZOJy4', '5488912'), + (96086, 1178, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dN9ZOJy4', '5492192'), + (96087, 1178, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dN9ZOJy4', '5493139'), + (96088, 1178, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dN9ZOJy4', '5493200'), + (96089, 1178, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dN9ZOJy4', '5502188'), + (96090, 1178, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dN9ZOJy4', '5505059'), + (96091, 1178, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dN9ZOJy4', '5509055'), + (96092, 1178, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dN9ZOJy4', '5512862'), + (96093, 1178, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dN9ZOJy4', '5513985'), + (96094, 1178, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'dN9ZOJy4', '5519981'), + (96095, 1178, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dN9ZOJy4', '5522550'), + (96096, 1178, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dN9ZOJy4', '5534683'), + (96097, 1178, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'dN9ZOJy4', '5537735'), + (96098, 1178, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dN9ZOJy4', '5540859'), + (96099, 1178, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dN9ZOJy4', '5546619'), + (96100, 1178, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dN9ZOJy4', '5555245'), + (96101, 1178, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dN9ZOJy4', '5557747'), + (96102, 1178, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dN9ZOJy4', '5560255'), + (96103, 1178, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dN9ZOJy4', '5562906'), + (96104, 1178, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dN9ZOJy4', '5600604'), + (96105, 1178, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dN9ZOJy4', '5605544'), + (96106, 1178, 1699, 'not_attending', '2022-09-26 12:17:36', '2025-12-17 19:47:12', 'dN9ZOJy4', '5606737'), + (96107, 1178, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'dN9ZOJy4', '5630960'), + (96108, 1178, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'dN9ZOJy4', '5630961'), + (96109, 1178, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'dN9ZOJy4', '5630962'), + (96110, 1178, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'dN9ZOJy4', '5630966'), + (96111, 1178, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'dN9ZOJy4', '5630967'), + (96112, 1178, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dN9ZOJy4', '5630968'), + (96113, 1178, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dN9ZOJy4', '5635406'), + (96114, 1178, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dN9ZOJy4', '5638765'), + (96115, 1178, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'dN9ZOJy4', '5640097'), + (96116, 1178, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dN9ZOJy4', '5640843'), + (96117, 1178, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dN9ZOJy4', '5641521'), + (96118, 1178, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dN9ZOJy4', '5642818'), + (96119, 1178, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'dN9ZOJy4', '5652395'), + (96120, 1178, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dN9ZOJy4', '5670445'), + (96121, 1178, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'dN9ZOJy4', '5671637'), + (96122, 1178, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'dN9ZOJy4', '5672329'), + (96123, 1178, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'dN9ZOJy4', '5674057'), + (96124, 1178, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'dN9ZOJy4', '5674060'), + (96125, 1178, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'dN9ZOJy4', '5677461'), + (96126, 1178, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'dN9ZOJy4', '5698046'), + (96127, 1178, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'dN9ZOJy4', '5699760'), + (96128, 1178, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'dN9ZOJy4', '5741601'), + (96129, 1178, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'dN9ZOJy4', '5763458'), + (96130, 1178, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dN9ZOJy4', '5774172'), + (96131, 1178, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'dN9ZOJy4', '5818247'), + (96132, 1178, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dN9ZOJy4', '5819471'), + (96133, 1178, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dN9ZOJy4', '5827739'), + (96134, 1178, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dN9ZOJy4', '5844306'), + (96135, 1178, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dN9ZOJy4', '5850159'), + (96136, 1178, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dN9ZOJy4', '5858999'), + (96137, 1178, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dN9ZOJy4', '5871984'), + (96138, 1178, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dN9ZOJy4', '5876354'), + (96139, 1178, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'dN9ZOJy4', '5880939'), + (96140, 1178, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'dN9ZOJy4', '5887890'), + (96141, 1178, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'dN9ZOJy4', '5888598'), + (96142, 1178, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'dN9ZOJy4', '5893260'), + (96143, 1178, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dN9ZOJy4', '6045684'), + (96144, 1179, 1868, 'maybe', '2023-02-21 19:51:26', '2025-12-17 19:47:07', 'd5wM583A', '5880942'), + (96145, 1179, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'd5wM583A', '5880943'), + (96146, 1179, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'd5wM583A', '5900200'), + (96147, 1179, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'd5wM583A', '5900202'), + (96148, 1179, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'd5wM583A', '5900203'), + (96149, 1179, 1916, 'not_attending', '2023-02-22 04:38:46', '2025-12-17 19:47:08', 'd5wM583A', '5910526'), + (96150, 1179, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'd5wM583A', '5910528'), + (96151, 1179, 1921, 'attending', '2023-02-25 18:16:12', '2025-12-17 19:47:08', 'd5wM583A', '5914092'), + (96152, 1179, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'd5wM583A', '5936234'), + (96153, 1179, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'd5wM583A', '5958351'), + (96154, 1179, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'd5wM583A', '5959751'), + (96155, 1179, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'd5wM583A', '5959755'), + (96156, 1179, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'd5wM583A', '5960055'), + (96157, 1179, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'd5wM583A', '5961684'), + (96158, 1179, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'd5wM583A', '5962132'), + (96159, 1179, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'd5wM583A', '5962133'), + (96160, 1179, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'd5wM583A', '5962134'), + (96161, 1179, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'd5wM583A', '5962317'), + (96162, 1179, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'd5wM583A', '5962318'), + (96163, 1179, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'd5wM583A', '5965933'), + (96164, 1179, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'd5wM583A', '5967014'), + (96165, 1179, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'd5wM583A', '5972815'), + (96166, 1179, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'd5wM583A', '5974016'), + (96167, 1179, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'd5wM583A', '5981515'), + (96168, 1179, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'd5wM583A', '5993516'), + (96169, 1179, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'd5wM583A', '5998939'), + (96170, 1179, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'd5wM583A', '6028191'), + (96171, 1179, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'd5wM583A', '6040066'), + (96172, 1179, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'd5wM583A', '6042717'), + (96173, 1179, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd5wM583A', '6045684'), + (96174, 1180, 157, 'not_attending', '2020-09-17 23:01:30', '2025-12-17 19:47:56', 'GAnO3vX4', '3058694'), + (96175, 1180, 158, 'not_attending', '2020-09-18 03:05:33', '2025-12-17 19:47:52', 'GAnO3vX4', '3058695'), + (96176, 1180, 159, 'not_attending', '2020-09-18 03:06:21', '2025-12-17 19:47:52', 'GAnO3vX4', '3058696'), + (96177, 1180, 161, 'not_attending', '2020-09-18 03:06:46', '2025-12-17 19:47:52', 'GAnO3vX4', '3058698'), + (96178, 1180, 199, 'not_attending', '2020-09-14 23:17:44', '2025-12-17 19:47:56', 'GAnO3vX4', '3087268'), + (96179, 1180, 220, 'attending', '2020-09-14 23:14:28', '2025-12-17 19:47:56', 'GAnO3vX4', '3129264'), + (96180, 1180, 221, 'attending', '2020-09-14 23:19:02', '2025-12-17 19:47:56', 'GAnO3vX4', '3129265'), + (96181, 1180, 241, 'not_attending', '2020-09-18 03:06:36', '2025-12-17 19:47:52', 'GAnO3vX4', '3149472'), + (96182, 1180, 242, 'not_attending', '2020-09-18 03:05:09', '2025-12-17 19:47:56', 'GAnO3vX4', '3149473'), + (96183, 1180, 311, 'not_attending', '2020-09-14 23:18:29', '2025-12-17 19:47:56', 'GAnO3vX4', '3186057'), + (96184, 1180, 323, 'attending', '2020-09-18 23:20:00', '2025-12-17 19:47:56', 'GAnO3vX4', '3197081'), + (96185, 1180, 324, 'not_attending', '2020-09-22 17:37:45', '2025-12-17 19:47:56', 'GAnO3vX4', '3197082'), + (96186, 1180, 325, 'attending', '2021-03-11 01:41:15', '2025-12-17 19:47:51', 'GAnO3vX4', '3197083'), + (96187, 1180, 326, 'not_attending', '2020-09-25 22:52:01', '2025-12-17 19:47:52', 'GAnO3vX4', '3197084'), + (96188, 1180, 327, 'maybe', '2020-09-18 03:25:37', '2025-12-17 19:47:52', 'GAnO3vX4', '3197085'), + (96189, 1180, 328, 'maybe', '2020-09-18 03:25:46', '2025-12-17 19:47:52', 'GAnO3vX4', '3197086'), + (96190, 1180, 329, 'maybe', '2020-09-18 03:28:55', '2025-12-17 19:47:52', 'GAnO3vX4', '3197087'), + (96191, 1180, 333, 'maybe', '2020-09-18 03:28:57', '2025-12-17 19:47:52', 'GAnO3vX4', '3199782'), + (96192, 1180, 334, 'maybe', '2020-09-18 03:28:59', '2025-12-17 19:47:52', 'GAnO3vX4', '3199784'), + (96193, 1180, 340, 'not_attending', '2020-09-17 23:01:16', '2025-12-17 19:47:56', 'GAnO3vX4', '3204470'), + (96194, 1180, 341, 'not_attending', '2020-09-18 03:05:30', '2025-12-17 19:47:52', 'GAnO3vX4', '3204471'), + (96195, 1180, 342, 'not_attending', '2020-09-18 03:06:05', '2025-12-17 19:47:52', 'GAnO3vX4', '3204472'), + (96196, 1180, 343, 'attending', '2020-09-22 22:55:39', '2025-12-17 19:47:56', 'GAnO3vX4', '3206759'), + (96197, 1180, 347, 'attending', '2020-09-18 03:03:22', '2025-12-17 19:47:51', 'GAnO3vX4', '3207930'), + (96198, 1180, 348, 'maybe', '2020-09-18 03:28:50', '2025-12-17 19:47:52', 'GAnO3vX4', '3209159'), + (96199, 1180, 351, 'not_attending', '2020-09-18 03:21:54', '2025-12-17 19:47:56', 'GAnO3vX4', '3209257'), + (96200, 1180, 352, 'not_attending', '2020-09-14 23:54:19', '2025-12-17 19:47:56', 'GAnO3vX4', '3210514'), + (96201, 1180, 354, 'not_attending', '2020-09-20 19:57:12', '2025-12-17 19:47:56', 'GAnO3vX4', '3212570'), + (96202, 1180, 356, 'not_attending', '2020-09-18 03:05:19', '2025-12-17 19:47:51', 'GAnO3vX4', '3212572'), + (96203, 1180, 357, 'not_attending', '2020-09-18 03:06:00', '2025-12-17 19:47:52', 'GAnO3vX4', '3212573'), + (96204, 1180, 358, 'attending', '2020-09-17 23:01:23', '2025-12-17 19:47:56', 'GAnO3vX4', '3212579'), + (96205, 1180, 359, 'not_attending', '2020-09-19 18:54:47', '2025-12-17 19:47:56', 'GAnO3vX4', '3212624'), + (96206, 1180, 360, 'not_attending', '2020-09-17 23:01:03', '2025-12-17 19:47:56', 'GAnO3vX4', '3212671'), + (96207, 1180, 361, 'not_attending', '2020-09-18 03:04:38', '2025-12-17 19:47:56', 'GAnO3vX4', '3213323'), + (96208, 1180, 362, 'not_attending', '2020-09-27 02:34:55', '2025-12-17 19:47:52', 'GAnO3vX4', '3214207'), + (96209, 1180, 363, 'maybe', '2020-09-18 03:25:39', '2025-12-17 19:47:52', 'GAnO3vX4', '3217037'), + (96210, 1180, 364, 'not_attending', '2020-09-19 02:26:21', '2025-12-17 19:47:56', 'GAnO3vX4', '3217106'), + (96211, 1180, 365, 'not_attending', '2020-09-18 05:38:40', '2025-12-17 19:47:51', 'GAnO3vX4', '3218510'), + (96212, 1180, 366, 'not_attending', '2020-09-22 22:55:52', '2025-12-17 19:47:56', 'GAnO3vX4', '3219750'), + (96213, 1180, 368, 'not_attending', '2020-09-29 21:01:16', '2025-12-17 19:47:52', 'GAnO3vX4', '3221403'), + (96214, 1180, 385, 'not_attending', '2020-09-28 23:14:27', '2025-12-17 19:47:52', 'GAnO3vX4', '3228698'), + (96215, 1180, 386, 'not_attending', '2020-09-28 23:15:11', '2025-12-17 19:47:52', 'GAnO3vX4', '3228699'), + (96216, 1180, 387, 'not_attending', '2020-09-28 23:16:40', '2025-12-17 19:47:52', 'GAnO3vX4', '3228700'), + (96217, 1180, 388, 'not_attending', '2020-09-28 23:17:30', '2025-12-17 19:47:52', 'GAnO3vX4', '3228701'), + (96218, 1180, 424, 'not_attending', '2020-10-12 00:54:15', '2025-12-17 19:47:52', 'GAnO3vX4', '3245751'), + (96219, 1180, 426, 'not_attending', '2020-10-14 11:51:23', '2025-12-17 19:47:52', 'GAnO3vX4', '3250232'), + (96220, 1180, 440, 'not_attending', '2020-10-18 16:07:38', '2025-12-17 19:47:53', 'GAnO3vX4', '3256168'), + (96221, 1180, 443, 'not_attending', '2020-10-23 21:33:47', '2025-12-17 19:47:53', 'GAnO3vX4', '3263578'), + (96222, 1180, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', 'GAnO3vX4', '3276428'), + (96223, 1180, 459, 'not_attending', '2020-11-08 05:41:16', '2025-12-17 19:47:54', 'GAnO3vX4', '3281467'), + (96224, 1180, 462, 'not_attending', '2020-11-08 05:38:17', '2025-12-17 19:47:53', 'GAnO3vX4', '3281470'), + (96225, 1180, 466, 'not_attending', '2020-11-08 12:32:01', '2025-12-17 19:47:54', 'GAnO3vX4', '3281829'), + (96226, 1180, 468, 'not_attending', '2020-11-10 22:36:44', '2025-12-17 19:47:54', 'GAnO3vX4', '3285413'), + (96227, 1180, 469, 'not_attending', '2020-11-10 22:37:12', '2025-12-17 19:47:54', 'GAnO3vX4', '3285414'), + (96228, 1180, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', 'GAnO3vX4', '3297764'), + (96229, 1180, 493, 'not_attending', '2020-11-29 04:10:10', '2025-12-17 19:47:54', 'GAnO3vX4', '3313856'), + (96230, 1180, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', 'GAnO3vX4', '3314909'), + (96231, 1180, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', 'GAnO3vX4', '3314964'), + (96232, 1180, 502, 'not_attending', '2020-12-12 16:41:29', '2025-12-17 19:47:55', 'GAnO3vX4', '3323365'), + (96233, 1180, 513, 'not_attending', '2020-12-16 00:51:16', '2025-12-17 19:47:55', 'GAnO3vX4', '3329383'), + (96234, 1180, 526, 'not_attending', '2020-12-28 20:20:32', '2025-12-17 19:47:48', 'GAnO3vX4', '3351539'), + (96235, 1180, 536, 'not_attending', '2021-01-08 05:11:13', '2025-12-17 19:47:48', 'GAnO3vX4', '3386848'), + (96236, 1180, 540, 'not_attending', '2021-01-07 01:21:36', '2025-12-17 19:47:48', 'GAnO3vX4', '3389527'), + (96237, 1180, 543, 'not_attending', '2021-01-12 01:16:09', '2025-12-17 19:47:48', 'GAnO3vX4', '3396499'), + (96238, 1180, 548, 'not_attending', '2021-01-13 02:47:11', '2025-12-17 19:47:48', 'GAnO3vX4', '3403650'), + (96239, 1180, 549, 'not_attending', '2021-01-16 16:27:44', '2025-12-17 19:47:49', 'GAnO3vX4', '3406988'), + (96240, 1180, 554, 'not_attending', '2021-01-13 20:16:21', '2025-12-17 19:47:49', 'GAnO3vX4', '3408338'), + (96241, 1180, 555, 'not_attending', '2021-01-19 03:41:20', '2025-12-17 19:47:49', 'GAnO3vX4', '3416576'), + (96242, 1180, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'GAnO3vX4', '3539916'), + (96243, 1180, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'GAnO3vX4', '3539919'), + (96244, 1180, 645, 'not_attending', '2021-05-08 16:58:24', '2025-12-17 19:47:46', 'GAnO3vX4', '3539920'), + (96245, 1180, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'GAnO3vX4', '3539921'), + (96246, 1180, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'GAnO3vX4', '3539922'), + (96247, 1180, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'GAnO3vX4', '3539923'), + (96248, 1180, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', 'GAnO3vX4', '3539927'), + (96249, 1180, 678, 'not_attending', '2021-03-12 01:35:48', '2025-12-17 19:47:51', 'GAnO3vX4', '3547158'), + (96250, 1180, 688, 'not_attending', '2021-03-12 01:35:57', '2025-12-17 19:47:51', 'GAnO3vX4', '3553729'), + (96251, 1180, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', 'GAnO3vX4', '3582734'), + (96252, 1180, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'GAnO3vX4', '3583262'), + (96253, 1180, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'GAnO3vX4', '3619523'), + (96254, 1180, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'GAnO3vX4', '3661369'), + (96255, 1180, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'GAnO3vX4', '3674262'), + (96256, 1180, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'GAnO3vX4', '3677402'), + (96257, 1180, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'GAnO3vX4', '3730212'), + (96258, 1180, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'GAnO3vX4', '3793156'), + (96259, 1180, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'GAnO3vX4', '3974109'), + (96260, 1180, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'GAnO3vX4', '3975311'), + (96261, 1180, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'GAnO3vX4', '3975312'), + (96262, 1180, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'GAnO3vX4', '3994992'), + (96263, 1180, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'GAnO3vX4', '4014338'), + (96264, 1180, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'GAnO3vX4', '4021848'), + (96265, 1180, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'GAnO3vX4', '4136744'), + (96266, 1180, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'GAnO3vX4', '4136937'), + (96267, 1180, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'GAnO3vX4', '4136938'), + (96268, 1180, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'GAnO3vX4', '4136947'), + (96269, 1180, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'GAnO3vX4', '4210314'), + (96270, 1180, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'GAnO3vX4', '4225444'), + (96271, 1180, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'GAnO3vX4', '4239259'), + (96272, 1180, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'GAnO3vX4', '4240316'), + (96273, 1180, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'GAnO3vX4', '4240317'), + (96274, 1180, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'GAnO3vX4', '4240318'), + (96275, 1180, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'GAnO3vX4', '4240320'), + (96276, 1180, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'GAnO3vX4', '4250163'), + (96277, 1180, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'GAnO3vX4', '4275957'), + (96278, 1180, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'GAnO3vX4', '4277819'), + (96279, 1180, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'GAnO3vX4', '4301723'), + (96280, 1180, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'GAnO3vX4', '4302093'), + (96281, 1180, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'GAnO3vX4', '4304151'), + (96282, 1180, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'GAnO3vX4', '4356801'), + (96283, 1180, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'GAnO3vX4', '4366186'), + (96284, 1180, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'GAnO3vX4', '4366187'), + (96285, 1180, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'GAnO3vX4', '4420735'), + (96286, 1180, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'GAnO3vX4', '4420738'), + (96287, 1180, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'GAnO3vX4', '4420739'), + (96288, 1180, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'GAnO3vX4', '4420741'), + (96289, 1180, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'GAnO3vX4', '4420744'), + (96290, 1180, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'GAnO3vX4', '4420747'), + (96291, 1180, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'GAnO3vX4', '4420748'), + (96292, 1180, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'GAnO3vX4', '4420749'), + (96293, 1180, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'GAnO3vX4', '4461883'), + (96294, 1180, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'GAnO3vX4', '4508342'), + (96295, 1180, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'GAnO3vX4', '4568602'), + (96296, 1180, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'GAnO3vX4', '4572153'), + (96297, 1180, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'GAnO3vX4', '4585962'), + (96298, 1180, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:35', 'GAnO3vX4', '4596356'), + (96299, 1180, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'GAnO3vX4', '4598860'), + (96300, 1180, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'GAnO3vX4', '4598861'), + (96301, 1180, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'GAnO3vX4', '4602797'), + (96302, 1180, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'GAnO3vX4', '4637896'), + (96303, 1180, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'GAnO3vX4', '4642994'), + (96304, 1180, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'GAnO3vX4', '4642995'), + (96305, 1180, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'GAnO3vX4', '4642996'), + (96306, 1180, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'GAnO3vX4', '4642997'), + (96307, 1180, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'GAnO3vX4', '4645687'), + (96308, 1180, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'GAnO3vX4', '4645698'), + (96309, 1180, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'GAnO3vX4', '4645704'), + (96310, 1180, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'GAnO3vX4', '4645705'), + (96311, 1180, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'GAnO3vX4', '4668385'), + (96312, 1180, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'GAnO3vX4', '4694407'), + (96313, 1180, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'GAnO3vX4', '4736497'), + (96314, 1180, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'GAnO3vX4', '4736499'), + (96315, 1180, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'GAnO3vX4', '4736500'), + (96316, 1180, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'GAnO3vX4', '4736503'), + (96317, 1180, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'GAnO3vX4', '4736504'), + (96318, 1180, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'GAnO3vX4', '4746789'), + (96319, 1180, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', 'GAnO3vX4', '4753929'), + (96320, 1180, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'GAnO3vX4', '5038850'), + (96321, 1180, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'GAnO3vX4', '5045826'), + (96322, 1180, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'GAnO3vX4', '5132533'), + (96323, 1180, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'GAnO3vX4', '5186582'), + (96324, 1180, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'GAnO3vX4', '5186583'), + (96325, 1180, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'GAnO3vX4', '5186585'), + (96326, 1180, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'GAnO3vX4', '5190437'), + (96327, 1180, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'GAnO3vX4', '5195095'), + (96328, 1180, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'GAnO3vX4', '5215989'), + (96329, 1180, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'GAnO3vX4', '5223686'), + (96330, 1180, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'GAnO3vX4', '5247467'), + (96331, 1180, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'GAnO3vX4', '5260800'), + (96332, 1180, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'GAnO3vX4', '5269930'), + (96333, 1180, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'GAnO3vX4', '5271448'), + (96334, 1180, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:30', 'GAnO3vX4', '5271449'), + (96335, 1180, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'GAnO3vX4', '5278159'), + (96336, 1180, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'GAnO3vX4', '5363695'), + (96337, 1180, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'GAnO3vX4', '5365960'), + (96338, 1180, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'GAnO3vX4', '5378247'), + (96339, 1180, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:31', 'GAnO3vX4', '5389605'), + (96340, 1180, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'GAnO3vX4', '5397265'), + (96341, 1180, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'GAnO3vX4', '5404786'), + (96342, 1180, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'GAnO3vX4', '5405203'), + (96343, 1180, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'GAnO3vX4', '5412550'), + (96344, 1180, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'GAnO3vX4', '5415046'), + (96345, 1180, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'GAnO3vX4', '5422086'), + (96346, 1180, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'GAnO3vX4', '5422406'), + (96347, 1180, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'GAnO3vX4', '5424565'), + (96348, 1180, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'GAnO3vX4', '5426882'), + (96349, 1180, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'GAnO3vX4', '5441125'), + (96350, 1180, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'GAnO3vX4', '5441126'), + (96351, 1180, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'GAnO3vX4', '5441128'), + (96352, 1180, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'GAnO3vX4', '5441131'), + (96353, 1180, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'GAnO3vX4', '5441132'), + (96354, 1180, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'GAnO3vX4', '5453325'), + (96355, 1180, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'GAnO3vX4', '5454516'), + (96356, 1180, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'GAnO3vX4', '5454605'), + (96357, 1180, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'GAnO3vX4', '5455037'), + (96358, 1180, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'GAnO3vX4', '5461278'), + (96359, 1180, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'GAnO3vX4', '5469480'), + (96360, 1180, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'GAnO3vX4', '5474663'), + (96361, 1180, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'GAnO3vX4', '5482022'), + (96362, 1180, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'GAnO3vX4', '5488912'), + (96363, 1180, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'GAnO3vX4', '5492192'), + (96364, 1180, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'GAnO3vX4', '5493139'), + (96365, 1180, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'GAnO3vX4', '5493200'), + (96366, 1180, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'GAnO3vX4', '5502188'), + (96367, 1180, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'GAnO3vX4', '5505059'), + (96368, 1180, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'GAnO3vX4', '5509055'), + (96369, 1180, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'GAnO3vX4', '5512862'), + (96370, 1180, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'GAnO3vX4', '5513985'), + (96371, 1180, 1626, 'not_attending', '2022-08-26 18:42:15', '2025-12-17 19:47:11', 'GAnO3vX4', '5519981'), + (96372, 1180, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'GAnO3vX4', '5522550'), + (96373, 1180, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'GAnO3vX4', '5534683'), + (96374, 1180, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'GAnO3vX4', '5537735'), + (96375, 1180, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'GAnO3vX4', '5540859'), + (96376, 1180, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'GAnO3vX4', '5546619'), + (96377, 1180, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'GAnO3vX4', '5557747'), + (96378, 1180, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'GAnO3vX4', '5560255'), + (96379, 1180, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'GAnO3vX4', '5562906'), + (96380, 1180, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'GAnO3vX4', '5600604'), + (96381, 1180, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'GAnO3vX4', '5605544'), + (96382, 1180, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'GAnO3vX4', '5630960'), + (96383, 1180, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'GAnO3vX4', '5630961'), + (96384, 1180, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'GAnO3vX4', '5630962'), + (96385, 1180, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'GAnO3vX4', '5630966'), + (96386, 1180, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'GAnO3vX4', '5630967'), + (96387, 1180, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'GAnO3vX4', '5630968'), + (96388, 1180, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'GAnO3vX4', '5635406'), + (96389, 1180, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'GAnO3vX4', '5638765'), + (96390, 1180, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'GAnO3vX4', '5640097'), + (96391, 1180, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'GAnO3vX4', '5640843'), + (96392, 1180, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'GAnO3vX4', '5641521'), + (96393, 1180, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'GAnO3vX4', '5642818'), + (96394, 1180, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'GAnO3vX4', '5652395'), + (96395, 1180, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'GAnO3vX4', '5670445'), + (96396, 1180, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'GAnO3vX4', '5671637'), + (96397, 1180, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'GAnO3vX4', '5672329'), + (96398, 1180, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'GAnO3vX4', '5674057'), + (96399, 1180, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'GAnO3vX4', '5674060'), + (96400, 1180, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'GAnO3vX4', '5677461'), + (96401, 1180, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'GAnO3vX4', '5698046'), + (96402, 1180, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'GAnO3vX4', '5699760'), + (96403, 1180, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'GAnO3vX4', '5741601'), + (96404, 1180, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'GAnO3vX4', '5763458'), + (96405, 1180, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'GAnO3vX4', '5774172'), + (96406, 1180, 1832, 'not_attending', '2022-12-03 19:12:20', '2025-12-17 19:47:16', 'GAnO3vX4', '5818247'), + (96407, 1180, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'GAnO3vX4', '5819471'), + (96408, 1180, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'GAnO3vX4', '5827739'), + (96409, 1180, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'GAnO3vX4', '5844306'), + (96410, 1180, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'GAnO3vX4', '5850159'), + (96411, 1180, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'GAnO3vX4', '5858999'), + (96412, 1180, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'GAnO3vX4', '5871984'), + (96413, 1180, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'GAnO3vX4', '5876354'), + (96414, 1180, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'GAnO3vX4', '5880939'), + (96415, 1180, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'GAnO3vX4', '5880940'), + (96416, 1180, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'GAnO3vX4', '5880942'), + (96417, 1180, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'GAnO3vX4', '5880943'), + (96418, 1180, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'GAnO3vX4', '5887890'), + (96419, 1180, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'GAnO3vX4', '5888598'), + (96420, 1180, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'GAnO3vX4', '5893260'), + (96421, 1180, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'GAnO3vX4', '5899826'), + (96422, 1180, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'GAnO3vX4', '5900199'), + (96423, 1180, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'GAnO3vX4', '5900200'), + (96424, 1180, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'GAnO3vX4', '5900202'), + (96425, 1180, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'GAnO3vX4', '5900203'), + (96426, 1180, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'GAnO3vX4', '5901108'), + (96427, 1180, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'GAnO3vX4', '5901126'), + (96428, 1180, 1901, 'not_attending', '2023-02-01 12:38:00', '2025-12-17 19:47:06', 'GAnO3vX4', '5901606'), + (96429, 1180, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'GAnO3vX4', '5909655'), + (96430, 1180, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'GAnO3vX4', '5910522'), + (96431, 1180, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'GAnO3vX4', '5910526'), + (96432, 1180, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'GAnO3vX4', '5910528'), + (96433, 1180, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'GAnO3vX4', '5916219'), + (96434, 1180, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'GAnO3vX4', '5936234'), + (96435, 1180, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'GAnO3vX4', '5958351'), + (96436, 1180, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'GAnO3vX4', '5959751'), + (96437, 1180, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'GAnO3vX4', '5959755'), + (96438, 1180, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'GAnO3vX4', '5960055'), + (96439, 1180, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'GAnO3vX4', '5961684'), + (96440, 1180, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'GAnO3vX4', '5962132'), + (96441, 1180, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'GAnO3vX4', '5962133'), + (96442, 1180, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'GAnO3vX4', '5962134'), + (96443, 1180, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'GAnO3vX4', '5962317'), + (96444, 1180, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'GAnO3vX4', '5962318'), + (96445, 1180, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'GAnO3vX4', '5965933'), + (96446, 1180, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'GAnO3vX4', '5967014'), + (96447, 1180, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'GAnO3vX4', '5972815'), + (96448, 1180, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'GAnO3vX4', '5974016'), + (96449, 1180, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'GAnO3vX4', '5981515'), + (96450, 1180, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'GAnO3vX4', '5993516'), + (96451, 1180, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'GAnO3vX4', '5998939'), + (96452, 1180, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'GAnO3vX4', '6028191'), + (96453, 1180, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'GAnO3vX4', '6040066'), + (96454, 1180, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'GAnO3vX4', '6042717'), + (96455, 1180, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'GAnO3vX4', '6044838'), + (96456, 1180, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'GAnO3vX4', '6044839'), + (96457, 1180, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'GAnO3vX4', '6045684'), + (96458, 1180, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'GAnO3vX4', '6050104'), + (96459, 1180, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'GAnO3vX4', '6053195'), + (96460, 1180, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'GAnO3vX4', '6053198'), + (96461, 1180, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'GAnO3vX4', '6056085'), + (96462, 1180, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'GAnO3vX4', '6056916'), + (96463, 1180, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'GAnO3vX4', '6059290'), + (96464, 1180, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'GAnO3vX4', '6060328'), + (96465, 1180, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'GAnO3vX4', '6061037'), + (96466, 1180, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'GAnO3vX4', '6061039'), + (96467, 1180, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'GAnO3vX4', '6067245'), + (96468, 1180, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'GAnO3vX4', '6068094'), + (96469, 1180, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'GAnO3vX4', '6068252'), + (96470, 1180, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'GAnO3vX4', '6068253'), + (96471, 1180, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'GAnO3vX4', '6068254'), + (96472, 1180, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', 'GAnO3vX4', '6068280'), + (96473, 1180, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'GAnO3vX4', '6069093'), + (96474, 1180, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'GAnO3vX4', '6072528'), + (96475, 1180, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'GAnO3vX4', '6079840'), + (96476, 1180, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'GAnO3vX4', '6083398'), + (96477, 1180, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'GAnO3vX4', '6093504'), + (96478, 1180, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'GAnO3vX4', '6097414'), + (96479, 1180, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'GAnO3vX4', '6097442'), + (96480, 1180, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'GAnO3vX4', '6097684'), + (96481, 1180, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'GAnO3vX4', '6098762'), + (96482, 1180, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'GAnO3vX4', '6101361'), + (96483, 1180, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'GAnO3vX4', '6101362'), + (96484, 1180, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'GAnO3vX4', '6107314'), + (96485, 1180, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'GAnO3vX4', '6120034'), + (96486, 1180, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:52', 'GAnO3vX4', '6136733'), + (96487, 1180, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'GAnO3vX4', '6137989'), + (96488, 1180, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'GAnO3vX4', '6150864'), + (96489, 1180, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'GAnO3vX4', '6155491'), + (96490, 1180, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'GAnO3vX4', '6164417'), + (96491, 1180, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'GAnO3vX4', '6166388'), + (96492, 1180, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'GAnO3vX4', '6176439'), + (96493, 1180, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'GAnO3vX4', '6182410'), + (96494, 1180, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'GAnO3vX4', '6185812'), + (96495, 1180, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'GAnO3vX4', '6187651'), + (96496, 1180, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'GAnO3vX4', '6187963'), + (96497, 1180, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'GAnO3vX4', '6187964'), + (96498, 1180, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'GAnO3vX4', '6187966'), + (96499, 1180, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'GAnO3vX4', '6187967'), + (96500, 1180, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'GAnO3vX4', '6187969'), + (96501, 1180, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'GAnO3vX4', '6334878'), + (96502, 1180, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'GAnO3vX4', '6337236'), + (96503, 1180, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'GAnO3vX4', '6337970'), + (96504, 1180, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'GAnO3vX4', '6338308'), + (96505, 1180, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'GAnO3vX4', '6341710'), + (96506, 1180, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'GAnO3vX4', '6342044'), + (96507, 1180, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'GAnO3vX4', '6342298'), + (96508, 1180, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'GAnO3vX4', '6343294'), + (96509, 1180, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'GAnO3vX4', '6347034'), + (96510, 1180, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'GAnO3vX4', '6347056'), + (96511, 1180, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'GAnO3vX4', '6353830'), + (96512, 1180, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'GAnO3vX4', '6353831'), + (96513, 1180, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'GAnO3vX4', '6357867'), + (96514, 1180, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'GAnO3vX4', '6358652'), + (96515, 1180, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'GAnO3vX4', '6361709'), + (96516, 1180, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'GAnO3vX4', '6361710'), + (96517, 1180, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'GAnO3vX4', '6361711'), + (96518, 1180, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'GAnO3vX4', '6361712'), + (96519, 1180, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'GAnO3vX4', '6361713'), + (96520, 1180, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'GAnO3vX4', '6382573'), + (96521, 1180, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'GAnO3vX4', '6388604'), + (96522, 1180, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'GAnO3vX4', '6394629'), + (96523, 1180, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'GAnO3vX4', '6394631'), + (96524, 1180, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'GAnO3vX4', '6440863'), + (96525, 1180, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'GAnO3vX4', '6445440'), + (96526, 1180, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'GAnO3vX4', '6453951'), + (96527, 1180, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'GAnO3vX4', '6461696'), + (96528, 1180, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'GAnO3vX4', '6462129'), + (96529, 1180, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'GAnO3vX4', '6463218'), + (96530, 1180, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'GAnO3vX4', '6472181'), + (96531, 1180, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'GAnO3vX4', '6482693'), + (96532, 1180, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:48', 'GAnO3vX4', '6484200'), + (96533, 1180, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'GAnO3vX4', '6484680'), + (96534, 1180, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'GAnO3vX4', '6507741'), + (96535, 1180, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'GAnO3vX4', '6514659'), + (96536, 1180, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'GAnO3vX4', '6514660'), + (96537, 1180, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'GAnO3vX4', '6519103'), + (96538, 1180, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'GAnO3vX4', '6535681'), + (96539, 1180, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'GAnO3vX4', '6584747'), + (96540, 1180, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'GAnO3vX4', '6587097'), + (96541, 1180, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'GAnO3vX4', '6609022'), + (96542, 1180, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'GAnO3vX4', '6632757'), + (96543, 1180, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'GAnO3vX4', '6644187'), + (96544, 1180, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'GAnO3vX4', '6648951'), + (96545, 1180, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'GAnO3vX4', '6648952'), + (96546, 1180, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'GAnO3vX4', '6655401'), + (96547, 1180, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'GAnO3vX4', '6661585'), + (96548, 1180, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'GAnO3vX4', '6661588'), + (96549, 1180, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'GAnO3vX4', '6661589'), + (96550, 1180, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'GAnO3vX4', '6699906'), + (96551, 1180, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'GAnO3vX4', '6699913'), + (96552, 1180, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'GAnO3vX4', '6701109'), + (96553, 1180, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'GAnO3vX4', '6705219'), + (96554, 1180, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'GAnO3vX4', '6710153'), + (96555, 1180, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'GAnO3vX4', '6711552'), + (96556, 1180, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:41', 'GAnO3vX4', '6711553'), + (96557, 1180, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'GAnO3vX4', '6722688'), + (96558, 1180, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'GAnO3vX4', '6730620'), + (96559, 1180, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'GAnO3vX4', '6740364'), + (96560, 1180, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'GAnO3vX4', '6743829'), + (96561, 1180, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'GAnO3vX4', '7030380'), + (96562, 1180, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'GAnO3vX4', '7033677'), + (96563, 1180, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'GAnO3vX4', '7044715'), + (96564, 1180, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'GAnO3vX4', '7050318'), + (96565, 1180, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'GAnO3vX4', '7050319'), + (96566, 1180, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'GAnO3vX4', '7050322'), + (96567, 1180, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'GAnO3vX4', '7057804'), + (96568, 1180, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'GAnO3vX4', '7072824'), + (96569, 1180, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'GAnO3vX4', '7074348'), + (96570, 1180, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'GAnO3vX4', '7074364'), + (96571, 1180, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:33', 'GAnO3vX4', '7089267'), + (96572, 1180, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'GAnO3vX4', '7098747'), + (96573, 1180, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'GAnO3vX4', '7113468'), + (96574, 1180, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'GAnO3vX4', '7114856'), + (96575, 1180, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'GAnO3vX4', '7114951'), + (96576, 1180, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'GAnO3vX4', '7114955'), + (96577, 1180, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'GAnO3vX4', '7114956'), + (96578, 1180, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'GAnO3vX4', '7114957'), + (96579, 1180, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'GAnO3vX4', '7159484'), + (96580, 1180, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'GAnO3vX4', '7178446'), + (96581, 1180, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:35', 'GAnO3vX4', '7220467'), + (96582, 1180, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'GAnO3vX4', '7240354'), + (96583, 1180, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'GAnO3vX4', '7251633'), + (96584, 1180, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'GAnO3vX4', '7324073'), + (96585, 1180, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'GAnO3vX4', '7324074'), + (96586, 1180, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'GAnO3vX4', '7324075'), + (96587, 1180, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'GAnO3vX4', '7324078'), + (96588, 1180, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'GAnO3vX4', '7324082'), + (96589, 1180, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'GAnO3vX4', '7331457'), + (96590, 1180, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'GAnO3vX4', '7363643'), + (96591, 1180, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'GAnO3vX4', '7368606'), + (96592, 1180, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'GAnO3vX4', '7397462'), + (96593, 1180, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'GAnO3vX4', '7424275'), + (96594, 1180, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'GAnO3vX4', '7432751'), + (96595, 1180, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'GAnO3vX4', '7432752'), + (96596, 1180, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'GAnO3vX4', '7432753'), + (96597, 1180, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'GAnO3vX4', '7432754'), + (96598, 1180, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'GAnO3vX4', '7432755'), + (96599, 1180, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'GAnO3vX4', '7432756'), + (96600, 1180, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'GAnO3vX4', '7432758'), + (96601, 1180, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'GAnO3vX4', '7432759'), + (96602, 1180, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'GAnO3vX4', '7433834'), + (96603, 1180, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'GAnO3vX4', '7470197'), + (96604, 1180, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'GAnO3vX4', '7685613'), + (96605, 1180, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'GAnO3vX4', '7688194'), + (96606, 1180, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'GAnO3vX4', '7688196'), + (96607, 1180, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'GAnO3vX4', '7688289'), + (96608, 1180, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'GAnO3vX4', '7692763'), + (96609, 1180, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'GAnO3vX4', '7697552'), + (96610, 1180, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'GAnO3vX4', '7699878'), + (96611, 1180, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'GAnO3vX4', '7704043'), + (96612, 1180, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'GAnO3vX4', '7712467'), + (96613, 1180, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'GAnO3vX4', '7713585'), + (96614, 1180, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'GAnO3vX4', '7713586'), + (96615, 1180, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'GAnO3vX4', '7738518'), + (96616, 1180, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'GAnO3vX4', '7750636'), + (96617, 1180, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'GAnO3vX4', '7796540'), + (96618, 1180, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'GAnO3vX4', '7796541'), + (96619, 1180, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'GAnO3vX4', '7796542'), + (96620, 1180, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'GAnO3vX4', '7825913'), + (96621, 1180, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'GAnO3vX4', '7826209'), + (96622, 1180, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'GAnO3vX4', '7834742'), + (96623, 1180, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'GAnO3vX4', '7842108'), + (96624, 1180, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'GAnO3vX4', '7842902'), + (96625, 1180, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'GAnO3vX4', '7842903'), + (96626, 1180, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'GAnO3vX4', '7842904'), + (96627, 1180, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'GAnO3vX4', '7842905'), + (96628, 1180, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'GAnO3vX4', '7855719'), + (96629, 1180, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'GAnO3vX4', '7860683'), + (96630, 1180, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'GAnO3vX4', '7860684'), + (96631, 1180, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'GAnO3vX4', '7866095'), + (96632, 1180, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'GAnO3vX4', '7869170'), + (96633, 1180, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'GAnO3vX4', '7869188'), + (96634, 1180, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'GAnO3vX4', '7869201'), + (96635, 1180, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'GAnO3vX4', '7877465'), + (96636, 1180, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'GAnO3vX4', '7888250'), + (96637, 1180, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'GAnO3vX4', '7904777'), + (96638, 1180, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'GAnO3vX4', '8349164'), + (96639, 1180, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'GAnO3vX4', '8349545'), + (96640, 1180, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'GAnO3vX4', '8368028'), + (96641, 1180, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'GAnO3vX4', '8368029'), + (96642, 1180, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'GAnO3vX4', '8388462'), + (96643, 1180, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'GAnO3vX4', '8400273'), + (96644, 1180, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'GAnO3vX4', '8400275'), + (96645, 1180, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', 'GAnO3vX4', '8400276'), + (96646, 1180, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'GAnO3vX4', '8404977'), + (96647, 1180, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'GAnO3vX4', '8430783'), + (96648, 1180, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'GAnO3vX4', '8430784'), + (96649, 1180, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'GAnO3vX4', '8430799'), + (96650, 1180, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'GAnO3vX4', '8430800'), + (96651, 1180, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'GAnO3vX4', '8430801'), + (96652, 1180, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'GAnO3vX4', '8438709'), + (96653, 1180, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'GAnO3vX4', '8457738'), + (96654, 1180, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'GAnO3vX4', '8459566'), + (96655, 1180, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'GAnO3vX4', '8459567'), + (96656, 1180, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'GAnO3vX4', '8461032'), + (96657, 1180, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'GAnO3vX4', '8477877'), + (96658, 1180, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'GAnO3vX4', '8485688'), + (96659, 1180, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'GAnO3vX4', '8490587'), + (96660, 1180, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'GAnO3vX4', '8493552'), + (96661, 1180, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'GAnO3vX4', '8493553'), + (96662, 1180, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'GAnO3vX4', '8493554'), + (96663, 1180, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'GAnO3vX4', '8493555'), + (96664, 1180, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'GAnO3vX4', '8493556'), + (96665, 1180, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'GAnO3vX4', '8493557'), + (96666, 1180, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'GAnO3vX4', '8493558'), + (96667, 1180, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'GAnO3vX4', '8493559'), + (96668, 1180, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'GAnO3vX4', '8493560'), + (96669, 1180, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'GAnO3vX4', '8493561'), + (96670, 1180, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'GAnO3vX4', '8493572'), + (96671, 1180, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'GAnO3vX4', '8540725'), + (96672, 1180, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'GAnO3vX4', '8555421'), + (96673, 1181, 407, 'maybe', '2021-04-15 14:07:47', '2025-12-17 19:47:44', 'ZdNyKgX4', '3236465'), + (96674, 1181, 641, 'maybe', '2021-04-30 02:32:51', '2025-12-17 19:47:44', 'ZdNyKgX4', '3539916'), + (96675, 1181, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'ZdNyKgX4', '3539918'), + (96676, 1181, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539919'), + (96677, 1181, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539920'), + (96678, 1181, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539921'), + (96679, 1181, 647, 'not_attending', '2021-05-17 05:44:05', '2025-12-17 19:47:46', 'ZdNyKgX4', '3539922'), + (96680, 1181, 648, 'not_attending', '2021-05-24 21:55:36', '2025-12-17 19:47:47', 'ZdNyKgX4', '3539923'), + (96681, 1181, 707, 'not_attending', '2021-04-14 12:59:50', '2025-12-17 19:47:46', 'ZdNyKgX4', '3583262'), + (96682, 1181, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'ZdNyKgX4', '3730212'), + (96683, 1181, 777, 'attending', '2021-05-01 21:24:05', '2025-12-17 19:47:46', 'ZdNyKgX4', '3746248'), + (96684, 1181, 779, 'maybe', '2021-05-03 22:41:26', '2025-12-17 19:47:46', 'ZdNyKgX4', '3757118'), + (96685, 1181, 781, 'attending', '2021-05-05 21:56:50', '2025-12-17 19:47:46', 'ZdNyKgX4', '3760130'), + (96686, 1181, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'ZdNyKgX4', '3793156'), + (96687, 1181, 823, 'attending', '2021-06-19 20:53:47', '2025-12-17 19:47:48', 'ZdNyKgX4', '3974109'), + (96688, 1181, 824, 'attending', '2021-06-03 21:56:07', '2025-12-17 19:47:47', 'ZdNyKgX4', '3974112'), + (96689, 1181, 827, 'attending', '2021-06-05 21:19:23', '2025-12-17 19:47:47', 'ZdNyKgX4', '3975311'), + (96690, 1181, 828, 'attending', '2021-06-12 18:42:08', '2025-12-17 19:47:47', 'ZdNyKgX4', '3975312'), + (96691, 1181, 837, 'attending', '2021-06-15 23:34:31', '2025-12-17 19:47:48', 'ZdNyKgX4', '3992545'), + (96692, 1181, 838, 'maybe', '2021-06-09 15:54:02', '2025-12-17 19:47:47', 'ZdNyKgX4', '3994992'), + (96693, 1181, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'ZdNyKgX4', '4014338'), + (96694, 1181, 866, 'attending', '2021-06-21 23:04:35', '2025-12-17 19:47:38', 'ZdNyKgX4', '4020424'), + (96695, 1181, 867, 'attending', '2021-06-26 19:09:59', '2025-12-17 19:47:38', 'ZdNyKgX4', '4021848'), + (96696, 1181, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'ZdNyKgX4', '4136744'), + (96697, 1181, 870, 'attending', '2021-07-01 18:40:09', '2025-12-17 19:47:39', 'ZdNyKgX4', '4136937'), + (96698, 1181, 871, 'attending', '2021-07-10 15:29:58', '2025-12-17 19:47:39', 'ZdNyKgX4', '4136938'), + (96699, 1181, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'ZdNyKgX4', '4136947'), + (96700, 1181, 873, 'attending', '2021-06-15 23:34:59', '2025-12-17 19:47:48', 'ZdNyKgX4', '4138297'), + (96701, 1181, 874, 'attending', '2021-06-24 16:36:36', '2025-12-17 19:47:38', 'ZdNyKgX4', '4139815'), + (96702, 1181, 875, 'attending', '2021-07-01 18:40:26', '2025-12-17 19:47:38', 'ZdNyKgX4', '4139816'), + (96703, 1181, 877, 'attending', '2021-06-16 17:45:23', '2025-12-17 19:47:48', 'ZdNyKgX4', '4140575'), + (96704, 1181, 878, 'attending', '2021-06-21 23:04:43', '2025-12-17 19:47:38', 'ZdNyKgX4', '4143331'), + (96705, 1181, 879, 'attending', '2021-06-28 21:49:23', '2025-12-17 19:47:38', 'ZdNyKgX4', '4147806'), + (96706, 1181, 880, 'attending', '2021-06-19 21:40:18', '2025-12-17 19:47:48', 'ZdNyKgX4', '4205383'), + (96707, 1181, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'ZdNyKgX4', '4210314'), + (96708, 1181, 885, 'attending', '2021-06-27 22:26:36', '2025-12-17 19:47:38', 'ZdNyKgX4', '4222370'), + (96709, 1181, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'ZdNyKgX4', '4225444'), + (96710, 1181, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'ZdNyKgX4', '4239259'), + (96711, 1181, 900, 'attending', '2021-07-24 18:44:04', '2025-12-17 19:47:40', 'ZdNyKgX4', '4240316'), + (96712, 1181, 901, 'attending', '2021-07-31 20:41:32', '2025-12-17 19:47:40', 'ZdNyKgX4', '4240317'), + (96713, 1181, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'ZdNyKgX4', '4240318'), + (96714, 1181, 903, 'attending', '2021-08-14 20:48:55', '2025-12-17 19:47:42', 'ZdNyKgX4', '4240320'), + (96715, 1181, 904, 'maybe', '2021-07-05 21:00:41', '2025-12-17 19:47:39', 'ZdNyKgX4', '4241594'), + (96716, 1181, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'ZdNyKgX4', '4250163'), + (96717, 1181, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'ZdNyKgX4', '4275957'), + (96718, 1181, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'ZdNyKgX4', '4277819'), + (96719, 1181, 929, 'maybe', '2021-08-05 21:15:21', '2025-12-17 19:47:41', 'ZdNyKgX4', '4297223'), + (96720, 1181, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'ZdNyKgX4', '4301723'), + (96721, 1181, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', 'ZdNyKgX4', '4302093'), + (96722, 1181, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'ZdNyKgX4', '4304151'), + (96723, 1181, 949, 'maybe', '2021-08-16 23:34:54', '2025-12-17 19:47:42', 'ZdNyKgX4', '4315726'), + (96724, 1181, 952, 'maybe', '2021-08-05 20:53:34', '2025-12-17 19:47:41', 'ZdNyKgX4', '4318286'), + (96725, 1181, 957, 'maybe', '2021-08-05 21:14:26', '2025-12-17 19:47:41', 'ZdNyKgX4', '4338834'), + (96726, 1181, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', 'ZdNyKgX4', '4345519'), + (96727, 1181, 967, 'maybe', '2021-08-15 01:48:08', '2025-12-17 19:47:42', 'ZdNyKgX4', '4356164'), + (96728, 1181, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'ZdNyKgX4', '4356801'), + (96729, 1181, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', 'ZdNyKgX4', '4358025'), + (96730, 1181, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'ZdNyKgX4', '4366186'), + (96731, 1181, 974, 'maybe', '2021-08-28 21:22:09', '2025-12-17 19:47:43', 'ZdNyKgX4', '4366187'), + (96732, 1181, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', 'ZdNyKgX4', '4402823'), + (96733, 1181, 990, 'not_attending', '2021-09-04 21:48:38', '2025-12-17 19:47:43', 'ZdNyKgX4', '4420735'), + (96734, 1181, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'ZdNyKgX4', '4420738'), + (96735, 1181, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'ZdNyKgX4', '4420739'), + (96736, 1181, 993, 'not_attending', '2021-09-25 20:48:04', '2025-12-17 19:47:34', 'ZdNyKgX4', '4420741'), + (96737, 1181, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'ZdNyKgX4', '4420744'), + (96738, 1181, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'ZdNyKgX4', '4420747'), + (96739, 1181, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'ZdNyKgX4', '4420748'), + (96740, 1181, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'ZdNyKgX4', '4420749'), + (96741, 1181, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'ZdNyKgX4', '4461883'), + (96742, 1181, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'ZdNyKgX4', '4508342'), + (96743, 1181, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'ZdNyKgX4', '4568602'), + (96744, 1181, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'ZdNyKgX4', '4572153'), + (96745, 1181, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', 'ZdNyKgX4', '4585962'), + (96746, 1181, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'ZdNyKgX4', '4596356'), + (96747, 1181, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'ZdNyKgX4', '4598860'), + (96748, 1181, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'ZdNyKgX4', '4598861'), + (96749, 1181, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'ZdNyKgX4', '4602797'), + (96750, 1181, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'ZdNyKgX4', '4637896'), + (96751, 1181, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'ZdNyKgX4', '4642994'), + (96752, 1181, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'ZdNyKgX4', '4642995'), + (96753, 1181, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'ZdNyKgX4', '4642996'), + (96754, 1181, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'ZdNyKgX4', '4642997'), + (96755, 1181, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'ZdNyKgX4', '4645687'), + (96756, 1181, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'ZdNyKgX4', '4645698'), + (96757, 1181, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'ZdNyKgX4', '4645704'), + (96758, 1181, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'ZdNyKgX4', '4645705'), + (96759, 1181, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'ZdNyKgX4', '4668385'), + (96760, 1181, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'ZdNyKgX4', '4694407'), + (96761, 1181, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'ZdNyKgX4', '4736497'), + (96762, 1181, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'ZdNyKgX4', '4736499'), + (96763, 1181, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'ZdNyKgX4', '4736500'), + (96764, 1181, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'ZdNyKgX4', '4736503'), + (96765, 1181, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'ZdNyKgX4', '4736504'), + (96766, 1181, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'ZdNyKgX4', '4746789'), + (96767, 1181, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'ZdNyKgX4', '4753929'), + (96768, 1181, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'ZdNyKgX4', '5038850'), + (96769, 1181, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'ZdNyKgX4', '5045826'), + (96770, 1181, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'ZdNyKgX4', '5132533'), + (96771, 1181, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'ZdNyKgX4', '5186582'), + (96772, 1181, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'ZdNyKgX4', '5186583'), + (96773, 1181, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'ZdNyKgX4', '5186585'), + (96774, 1181, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'ZdNyKgX4', '5190437'), + (96775, 1181, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'ZdNyKgX4', '5215989'), + (96776, 1181, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'ZdNyKgX4', '6045684'), + (96777, 1182, 991, 'not_attending', '2021-09-11 21:32:48', '2025-12-17 19:47:43', 'dVBLOD6d', '4420738'), + (96778, 1182, 992, 'attending', '2021-09-16 19:47:26', '2025-12-17 19:47:33', 'dVBLOD6d', '4420739'), + (96779, 1182, 993, 'not_attending', '2021-09-20 15:17:07', '2025-12-17 19:47:34', 'dVBLOD6d', '4420741'), + (96780, 1182, 994, 'attending', '2021-10-02 02:03:47', '2025-12-17 19:47:34', 'dVBLOD6d', '4420742'), + (96781, 1182, 995, 'attending', '2021-10-09 21:09:33', '2025-12-17 19:47:34', 'dVBLOD6d', '4420744'), + (96782, 1182, 996, 'attending', '2021-10-16 22:28:33', '2025-12-17 19:47:35', 'dVBLOD6d', '4420747'), + (96783, 1182, 1004, 'attending', '2021-09-13 16:58:09', '2025-12-17 19:47:43', 'dVBLOD6d', '4438804'), + (96784, 1182, 1019, 'attending', '2021-09-16 19:46:19', '2025-12-17 19:47:43', 'dVBLOD6d', '4450515'), + (96785, 1182, 1021, 'attending', '2021-09-18 21:14:48', '2025-12-17 19:47:34', 'dVBLOD6d', '4451803'), + (96786, 1182, 1022, 'attending', '2021-09-15 17:31:18', '2025-12-17 19:47:43', 'dVBLOD6d', '4458628'), + (96787, 1182, 1023, 'not_attending', '2021-09-10 01:51:52', '2025-12-17 19:47:43', 'dVBLOD6d', '4461883'), + (96788, 1182, 1029, 'attending', '2021-09-16 19:47:05', '2025-12-17 19:47:43', 'dVBLOD6d', '4473063'), + (96789, 1182, 1031, 'attending', '2021-09-22 18:49:30', '2025-12-17 19:47:34', 'dVBLOD6d', '4473789'), + (96790, 1182, 1034, 'attending', '2021-09-16 19:47:19', '2025-12-17 19:47:43', 'dVBLOD6d', '4486265'), + (96791, 1182, 1035, 'attending', '2021-09-18 21:14:44', '2025-12-17 19:47:34', 'dVBLOD6d', '4492184'), + (96792, 1182, 1037, 'attending', '2021-09-18 21:15:03', '2025-12-17 19:47:34', 'dVBLOD6d', '4493233'), + (96793, 1182, 1065, 'attending', '2021-09-21 19:44:21', '2025-12-17 19:47:34', 'dVBLOD6d', '4505800'), + (96794, 1182, 1067, 'attending', '2021-09-24 19:52:25', '2025-12-17 19:47:34', 'dVBLOD6d', '4508342'), + (96795, 1182, 1078, 'attending', '2021-10-07 02:29:20', '2025-12-17 19:47:34', 'dVBLOD6d', '4541281'), + (96796, 1182, 1086, 'not_attending', '2021-10-15 18:12:45', '2025-12-17 19:47:35', 'dVBLOD6d', '4568602'), + (96797, 1182, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'dVBLOD6d', '4572153'), + (96798, 1182, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', 'dVBLOD6d', '4585962'), + (96799, 1182, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'dVBLOD6d', '4596356'), + (96800, 1182, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'dVBLOD6d', '4598860'), + (96801, 1182, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'dVBLOD6d', '4598861'), + (96802, 1182, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'dVBLOD6d', '4602797'), + (96803, 1182, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', 'dVBLOD6d', '4637896'), + (96804, 1182, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'dVBLOD6d', '4642994'), + (96805, 1182, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', 'dVBLOD6d', '4642995'), + (96806, 1182, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'dVBLOD6d', '4642996'), + (96807, 1182, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'dVBLOD6d', '4642997'), + (96808, 1182, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'dVBLOD6d', '4645687'), + (96809, 1182, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'dVBLOD6d', '4645698'), + (96810, 1182, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', 'dVBLOD6d', '4645704'), + (96811, 1182, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'dVBLOD6d', '4645705'), + (96812, 1182, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'dVBLOD6d', '4668385'), + (96813, 1182, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'dVBLOD6d', '4694407'), + (96814, 1182, 1174, 'attending', '2022-01-15 18:16:17', '2025-12-17 19:47:31', 'dVBLOD6d', '4736496'), + (96815, 1182, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'dVBLOD6d', '4736497'), + (96816, 1182, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'dVBLOD6d', '4736499'), + (96817, 1182, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'dVBLOD6d', '4736500'), + (96818, 1182, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'dVBLOD6d', '4736503'), + (96819, 1182, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'dVBLOD6d', '4736504'), + (96820, 1182, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'dVBLOD6d', '4746789'), + (96821, 1182, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'dVBLOD6d', '4753929'), + (96822, 1182, 1197, 'attending', '2022-01-24 23:28:53', '2025-12-17 19:47:32', 'dVBLOD6d', '4766799'), + (96823, 1182, 1198, 'attending', '2022-01-24 23:28:47', '2025-12-17 19:47:32', 'dVBLOD6d', '4766801'), + (96824, 1182, 1219, 'attending', '2022-02-02 23:12:21', '2025-12-17 19:47:32', 'dVBLOD6d', '4788466'), + (96825, 1182, 1232, 'not_attending', '2022-02-10 18:39:54', '2025-12-17 19:47:32', 'dVBLOD6d', '5038850'), + (96826, 1182, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'dVBLOD6d', '5045826'), + (96827, 1182, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'dVBLOD6d', '5132533'), + (96828, 1182, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'dVBLOD6d', '5186582'), + (96829, 1182, 1273, 'attending', '2022-03-26 19:55:27', '2025-12-17 19:47:25', 'dVBLOD6d', '5186583'), + (96830, 1182, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'dVBLOD6d', '5186585'), + (96831, 1182, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'dVBLOD6d', '5190437'), + (96832, 1182, 1284, 'not_attending', '2022-04-16 00:35:13', '2025-12-17 19:47:27', 'dVBLOD6d', '5195095'), + (96833, 1182, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'dVBLOD6d', '5215989'), + (96834, 1182, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'dVBLOD6d', '5223686'), + (96835, 1182, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'dVBLOD6d', '5227432'), + (96836, 1182, 1346, 'not_attending', '2022-04-17 16:36:04', '2025-12-17 19:47:27', 'dVBLOD6d', '5247467'), + (96837, 1182, 1362, 'not_attending', '2022-04-25 17:24:16', '2025-12-17 19:47:28', 'dVBLOD6d', '5260800'), + (96838, 1182, 1374, 'not_attending', '2022-05-02 01:56:21', '2025-12-17 19:47:28', 'dVBLOD6d', '5269930'), + (96839, 1182, 1378, 'not_attending', '2022-05-06 16:08:12', '2025-12-17 19:47:29', 'dVBLOD6d', '5271448'), + (96840, 1182, 1379, 'not_attending', '2022-05-06 16:08:29', '2025-12-17 19:47:29', 'dVBLOD6d', '5271449'), + (96841, 1182, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'dVBLOD6d', '5276469'), + (96842, 1182, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'dVBLOD6d', '5278159'), + (96843, 1182, 1407, 'not_attending', '2022-05-15 02:48:58', '2025-12-17 19:47:30', 'dVBLOD6d', '5363695'), + (96844, 1182, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'dVBLOD6d', '5365960'), + (96845, 1182, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'dVBLOD6d', '5368973'), + (96846, 1182, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'dVBLOD6d', '5378247'), + (96847, 1182, 1431, 'not_attending', '2022-06-03 02:46:40', '2025-12-17 19:47:30', 'dVBLOD6d', '5389605'), + (96848, 1182, 1442, 'not_attending', '2022-06-03 02:46:29', '2025-12-17 19:47:17', 'dVBLOD6d', '5397265'), + (96849, 1182, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'dVBLOD6d', '5403967'), + (96850, 1182, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'dVBLOD6d', '5404786'), + (96851, 1182, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'dVBLOD6d', '5405203'), + (96852, 1182, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'dVBLOD6d', '5408794'), + (96853, 1182, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'dVBLOD6d', '5411699'), + (96854, 1182, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'dVBLOD6d', '5412550'), + (96855, 1182, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'dVBLOD6d', '5415046'), + (96856, 1182, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'dVBLOD6d', '5422086'), + (96857, 1182, 1498, 'not_attending', '2022-06-26 14:16:44', '2025-12-17 19:47:19', 'dVBLOD6d', '5422406'), + (96858, 1182, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'dVBLOD6d', '5424565'), + (96859, 1182, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'dVBLOD6d', '5426882'), + (96860, 1182, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'dVBLOD6d', '5427083'), + (96861, 1182, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'dVBLOD6d', '5441125'), + (96862, 1182, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'dVBLOD6d', '5441126'), + (96863, 1182, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'dVBLOD6d', '5441128'), + (96864, 1182, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'dVBLOD6d', '5441131'), + (96865, 1182, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'dVBLOD6d', '5441132'), + (96866, 1182, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'dVBLOD6d', '5446643'), + (96867, 1182, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'dVBLOD6d', '5453325'), + (96868, 1182, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'dVBLOD6d', '5454516'), + (96869, 1182, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'dVBLOD6d', '5454605'), + (96870, 1182, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'dVBLOD6d', '5455037'), + (96871, 1182, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'dVBLOD6d', '5461278'), + (96872, 1182, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'dVBLOD6d', '5469480'), + (96873, 1182, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'dVBLOD6d', '5471073'), + (96874, 1182, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'dVBLOD6d', '5474663'), + (96875, 1182, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'dVBLOD6d', '5482022'), + (96876, 1182, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'dVBLOD6d', '5482793'), + (96877, 1182, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'dVBLOD6d', '5488912'), + (96878, 1182, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'dVBLOD6d', '5492192'), + (96879, 1182, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'dVBLOD6d', '5493139'), + (96880, 1182, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'dVBLOD6d', '5493200'), + (96881, 1182, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'dVBLOD6d', '5502188'), + (96882, 1182, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'dVBLOD6d', '5505059'), + (96883, 1182, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'dVBLOD6d', '5509055'), + (96884, 1182, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'dVBLOD6d', '5512862'), + (96885, 1182, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'dVBLOD6d', '5513985'), + (96886, 1182, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'dVBLOD6d', '5519981'), + (96887, 1182, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'dVBLOD6d', '5522550'), + (96888, 1182, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'dVBLOD6d', '5534683'), + (96889, 1182, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'dVBLOD6d', '5537735'), + (96890, 1182, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'dVBLOD6d', '5540859'), + (96891, 1182, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'dVBLOD6d', '5546619'), + (96892, 1182, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'dVBLOD6d', '5555245'), + (96893, 1182, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'dVBLOD6d', '5557747'), + (96894, 1182, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'dVBLOD6d', '5560255'), + (96895, 1182, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'dVBLOD6d', '5562906'), + (96896, 1182, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'dVBLOD6d', '5600604'), + (96897, 1182, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'dVBLOD6d', '5605544'), + (96898, 1182, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', 'dVBLOD6d', '5606737'), + (96899, 1182, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'dVBLOD6d', '5635406'), + (96900, 1182, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'dVBLOD6d', '5638765'), + (96901, 1182, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'dVBLOD6d', '5640843'), + (96902, 1182, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'dVBLOD6d', '5641521'), + (96903, 1182, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dVBLOD6d', '6045684'), + (96904, 1183, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd8j0vx0A', '7074364'), + (96905, 1183, 2660, 'not_attending', '2024-06-01 21:35:09', '2025-12-17 19:46:36', 'd8j0vx0A', '7301638'), + (96906, 1183, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd8j0vx0A', '7324073'), + (96907, 1183, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd8j0vx0A', '7324074'), + (96908, 1183, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd8j0vx0A', '7324075'), + (96909, 1183, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd8j0vx0A', '7324078'), + (96910, 1183, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd8j0vx0A', '7331457'), + (96911, 1183, 2730, 'not_attending', '2024-06-22 06:18:14', '2025-12-17 19:46:29', 'd8j0vx0A', '7335193'), + (96912, 1183, 2759, 'not_attending', '2024-07-12 16:15:26', '2025-12-17 19:46:30', 'd8j0vx0A', '7359624'), + (96913, 1183, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd8j0vx0A', '7363643'), + (96914, 1183, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd8j0vx0A', '7368606'), + (96915, 1184, 643, 'attending', '2021-04-14 03:59:21', '2025-12-17 19:47:45', '64vkO1Wd', '3539918'), + (96916, 1184, 644, 'attending', '2021-04-17 00:43:00', '2025-12-17 19:47:45', '64vkO1Wd', '3539919'), + (96917, 1184, 645, 'not_attending', '2021-05-08 21:16:45', '2025-12-17 19:47:46', '64vkO1Wd', '3539920'), + (96918, 1184, 646, 'attending', '2021-04-18 02:26:35', '2025-12-17 19:47:46', '64vkO1Wd', '3539921'), + (96919, 1184, 647, 'attending', '2021-04-18 02:26:36', '2025-12-17 19:47:46', '64vkO1Wd', '3539922'), + (96920, 1184, 648, 'attending', '2021-05-29 16:06:18', '2025-12-17 19:47:47', '64vkO1Wd', '3539923'), + (96921, 1184, 707, 'attending', '2021-04-26 13:11:53', '2025-12-17 19:47:46', '64vkO1Wd', '3583262'), + (96922, 1184, 724, 'attending', '2021-05-09 20:45:13', '2025-12-17 19:47:46', '64vkO1Wd', '3661369'), + (96923, 1184, 735, 'attending', '2021-05-01 21:31:28', '2025-12-17 19:47:46', '64vkO1Wd', '3677402'), + (96924, 1184, 756, 'attending', '2021-04-17 19:11:51', '2025-12-17 19:47:46', '64vkO1Wd', '3704795'), + (96925, 1184, 761, 'attending', '2021-05-14 22:50:35', '2025-12-17 19:47:46', '64vkO1Wd', '3716041'), + (96926, 1184, 764, 'maybe', '2021-04-23 20:25:17', '2025-12-17 19:47:45', '64vkO1Wd', '3720507'), + (96927, 1184, 765, 'attending', '2021-04-21 02:30:05', '2025-12-17 19:47:45', '64vkO1Wd', '3720508'), + (96928, 1184, 767, 'attending', '2021-04-26 13:12:29', '2025-12-17 19:47:46', '64vkO1Wd', '3722476'), + (96929, 1184, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', '64vkO1Wd', '3730212'), + (96930, 1184, 776, 'attending', '2021-04-25 02:38:04', '2025-12-17 19:47:46', '64vkO1Wd', '3733455'), + (96931, 1184, 777, 'attending', '2021-05-01 21:31:03', '2025-12-17 19:47:46', '64vkO1Wd', '3746248'), + (96932, 1184, 782, 'attending', '2021-05-01 01:17:08', '2025-12-17 19:47:46', '64vkO1Wd', '3761843'), + (96933, 1184, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '64vkO1Wd', '3793156'), + (96934, 1184, 799, 'maybe', '2021-05-10 00:08:28', '2025-12-17 19:47:46', '64vkO1Wd', '3797767'), + (96935, 1184, 809, 'maybe', '2021-05-16 21:34:30', '2025-12-17 19:47:46', '64vkO1Wd', '3807964'), + (96936, 1184, 823, 'maybe', '2021-06-16 03:24:23', '2025-12-17 19:47:48', '64vkO1Wd', '3974109'), + (96937, 1184, 827, 'attending', '2021-06-05 19:09:25', '2025-12-17 19:47:47', '64vkO1Wd', '3975311'), + (96938, 1184, 828, 'attending', '2021-06-13 02:33:15', '2025-12-17 19:47:47', '64vkO1Wd', '3975312'), + (96939, 1184, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', '64vkO1Wd', '3994992'), + (96940, 1184, 841, 'attending', '2021-06-15 23:20:35', '2025-12-17 19:47:48', '64vkO1Wd', '4007434'), + (96941, 1184, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '64vkO1Wd', '4014338'), + (96942, 1184, 866, 'maybe', '2021-06-15 04:56:33', '2025-12-17 19:47:38', '64vkO1Wd', '4020424'), + (96943, 1184, 867, 'attending', '2021-06-16 03:24:25', '2025-12-17 19:47:38', '64vkO1Wd', '4021848'), + (96944, 1184, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '64vkO1Wd', '4136744'), + (96945, 1184, 870, 'attending', '2021-06-16 03:24:27', '2025-12-17 19:47:38', '64vkO1Wd', '4136937'), + (96946, 1184, 871, 'attending', '2021-06-16 03:24:29', '2025-12-17 19:47:39', '64vkO1Wd', '4136938'), + (96947, 1184, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '64vkO1Wd', '4136947'), + (96948, 1184, 873, 'attending', '2021-06-15 04:56:17', '2025-12-17 19:47:48', '64vkO1Wd', '4138297'), + (96949, 1184, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '64vkO1Wd', '4210314'), + (96950, 1184, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '64vkO1Wd', '4225444'), + (96951, 1184, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '64vkO1Wd', '4239259'), + (96952, 1184, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '64vkO1Wd', '4240316'), + (96953, 1184, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '64vkO1Wd', '4240317'), + (96954, 1184, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '64vkO1Wd', '4240318'), + (96955, 1184, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '64vkO1Wd', '4240320'), + (96956, 1184, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '64vkO1Wd', '4250163'), + (96957, 1184, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '64vkO1Wd', '4275957'), + (96958, 1184, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '64vkO1Wd', '4277819'), + (96959, 1184, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '64vkO1Wd', '4301723'), + (96960, 1184, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:41', '64vkO1Wd', '4302093'), + (96961, 1184, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '64vkO1Wd', '4304151'), + (96962, 1184, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '64vkO1Wd', '4345519'), + (96963, 1184, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '64vkO1Wd', '4356801'), + (96964, 1184, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '64vkO1Wd', '4358025'), + (96965, 1184, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '64vkO1Wd', '4366186'), + (96966, 1184, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '64vkO1Wd', '4366187'), + (96967, 1184, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '64vkO1Wd', '4402823'), + (96968, 1184, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '64vkO1Wd', '4420735'), + (96969, 1184, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '64vkO1Wd', '4420738'), + (96970, 1184, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '64vkO1Wd', '4420739'), + (96971, 1184, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '64vkO1Wd', '4420741'), + (96972, 1184, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '64vkO1Wd', '4420744'), + (96973, 1184, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '64vkO1Wd', '4420747'), + (96974, 1184, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '64vkO1Wd', '4420748'), + (96975, 1184, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '64vkO1Wd', '4420749'), + (96976, 1184, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '64vkO1Wd', '4461883'), + (96977, 1184, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '64vkO1Wd', '4508342'), + (96978, 1184, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '64vkO1Wd', '4568602'), + (96979, 1184, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '64vkO1Wd', '4572153'), + (96980, 1184, 1093, 'not_attending', '2021-10-20 18:46:08', '2025-12-17 19:47:35', '64vkO1Wd', '4585962'), + (96981, 1184, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '64vkO1Wd', '4596356'), + (96982, 1184, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '64vkO1Wd', '4598860'), + (96983, 1184, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '64vkO1Wd', '4598861'), + (96984, 1184, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '64vkO1Wd', '4602797'), + (96985, 1184, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '64vkO1Wd', '4637896'), + (96986, 1184, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '64vkO1Wd', '4642994'), + (96987, 1184, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '64vkO1Wd', '4642995'), + (96988, 1184, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '64vkO1Wd', '4642996'), + (96989, 1184, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '64vkO1Wd', '4642997'), + (96990, 1184, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '64vkO1Wd', '4645687'), + (96991, 1184, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '64vkO1Wd', '4645698'), + (96992, 1184, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '64vkO1Wd', '4645704'), + (96993, 1184, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '64vkO1Wd', '4645705'), + (96994, 1184, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '64vkO1Wd', '4668385'), + (96995, 1184, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '64vkO1Wd', '4694407'), + (96996, 1184, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '64vkO1Wd', '4736497'), + (96997, 1184, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '64vkO1Wd', '4736499'), + (96998, 1184, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '64vkO1Wd', '4736500'), + (96999, 1184, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '64vkO1Wd', '4746789'), + (97000, 1184, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', '64vkO1Wd', '4753929'), + (97001, 1184, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '64vkO1Wd', '5038850'), + (97002, 1184, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '64vkO1Wd', '5045826'), + (97003, 1184, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '64vkO1Wd', '6045684'), + (97004, 1185, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '8418gG8A', '7074364'), + (97005, 1185, 2626, 'not_attending', '2024-05-18 19:20:42', '2025-12-17 19:46:35', '8418gG8A', '7264723'), + (97006, 1185, 2627, 'maybe', '2024-05-21 15:17:01', '2025-12-17 19:46:35', '8418gG8A', '7264724'), + (97007, 1185, 2628, 'attending', '2024-05-28 00:59:30', '2025-12-17 19:46:36', '8418gG8A', '7264725'), + (97008, 1185, 2638, 'not_attending', '2024-05-20 04:32:23', '2025-12-17 19:46:35', '8418gG8A', '7273117'), + (97009, 1185, 2640, 'attending', '2024-05-20 03:57:17', '2025-12-17 19:46:35', '8418gG8A', '7275331'), + (97010, 1185, 2641, 'attending', '2024-05-18 01:55:38', '2025-12-17 19:46:35', '8418gG8A', '7276107'), + (97011, 1185, 2644, 'attending', '2024-05-21 15:16:51', '2025-12-17 19:46:35', '8418gG8A', '7279039'), + (97012, 1185, 2646, 'not_attending', '2024-05-20 14:01:59', '2025-12-17 19:46:35', '8418gG8A', '7281768'), + (97013, 1185, 2647, 'not_attending', '2024-05-21 00:13:44', '2025-12-17 19:46:28', '8418gG8A', '7282057'), + (97014, 1185, 2648, 'attending', '2024-05-21 03:26:53', '2025-12-17 19:46:35', '8418gG8A', '7282283'), + (97015, 1185, 2650, 'maybe', '2024-05-24 16:29:15', '2025-12-17 19:46:36', '8418gG8A', '7288199'), + (97016, 1185, 2651, 'maybe', '2024-05-24 17:12:05', '2025-12-17 19:46:35', '8418gG8A', '7288200'), + (97017, 1185, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '8418gG8A', '7302674'), + (97018, 1185, 2678, 'attending', '2024-06-15 18:41:21', '2025-12-17 19:46:28', '8418gG8A', '7319489'), + (97019, 1185, 2679, 'attending', '2024-06-16 03:25:05', '2025-12-17 19:46:29', '8418gG8A', '7319490'), + (97020, 1185, 2686, 'attending', '2024-06-16 03:30:20', '2025-12-17 19:46:29', '8418gG8A', '7323802'), + (97021, 1185, 2688, 'attending', '2024-06-16 03:25:01', '2025-12-17 19:46:29', '8418gG8A', '7324073'), + (97022, 1185, 2689, 'attending', '2024-06-16 03:25:03', '2025-12-17 19:46:29', '8418gG8A', '7324074'), + (97023, 1185, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '8418gG8A', '7324075'), + (97024, 1185, 2691, 'not_attending', '2024-07-18 21:38:44', '2025-12-17 19:46:30', '8418gG8A', '7324076'), + (97025, 1185, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '8418gG8A', '7324078'), + (97026, 1185, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '8418gG8A', '7324082'), + (97027, 1185, 2698, 'maybe', '2024-09-07 02:24:55', '2025-12-17 19:46:24', '8418gG8A', '7324083'), + (97028, 1185, 2699, 'attending', '2024-06-12 20:36:45', '2025-12-17 19:46:28', '8418gG8A', '7324385'), + (97029, 1185, 2700, 'attending', '2024-06-13 20:23:25', '2025-12-17 19:46:28', '8418gG8A', '7324388'), + (97030, 1185, 2703, 'not_attending', '2024-06-13 01:45:14', '2025-12-17 19:46:28', '8418gG8A', '7324873'), + (97031, 1185, 2707, 'attending', '2024-06-16 03:18:32', '2025-12-17 19:46:28', '8418gG8A', '7324952'), + (97032, 1185, 2709, 'maybe', '2024-06-16 03:30:42', '2025-12-17 19:46:29', '8418gG8A', '7325107'), + (97033, 1185, 2710, 'attending', '2024-06-16 03:30:23', '2025-12-17 19:46:28', '8418gG8A', '7325108'), + (97034, 1185, 2713, 'attending', '2024-06-15 18:56:29', '2025-12-17 19:46:28', '8418gG8A', '7326593'), + (97035, 1185, 2721, 'not_attending', '2024-06-18 22:40:21', '2025-12-17 19:46:29', '8418gG8A', '7331456'), + (97036, 1185, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '8418gG8A', '7331457'), + (97037, 1185, 2756, 'maybe', '2024-07-10 20:55:41', '2025-12-17 19:46:29', '8418gG8A', '7358329'), + (97038, 1185, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', '8418gG8A', '7363643'), + (97039, 1185, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '8418gG8A', '7368606'), + (97040, 1185, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '8418gG8A', '7397462'), + (97041, 1185, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '8418gG8A', '7424275'), + (97042, 1185, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '8418gG8A', '7424276'), + (97043, 1185, 2824, 'attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '8418gG8A', '7432751'), + (97044, 1185, 2825, 'attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '8418gG8A', '7432752'), + (97045, 1185, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '8418gG8A', '7432753'), + (97046, 1185, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '8418gG8A', '7432754'), + (97047, 1185, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '8418gG8A', '7432755'), + (97048, 1185, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '8418gG8A', '7432756'), + (97049, 1185, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '8418gG8A', '7432758'), + (97050, 1185, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '8418gG8A', '7432759'), + (97051, 1185, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '8418gG8A', '7433834'), + (97052, 1185, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:26', '8418gG8A', '7470197'), + (97053, 1185, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '8418gG8A', '7685613'), + (97054, 1185, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '8418gG8A', '7688194'), + (97055, 1185, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '8418gG8A', '7688196'), + (97056, 1185, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '8418gG8A', '7688289'), + (97057, 1185, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '8418gG8A', '7692763'), + (97058, 1185, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '8418gG8A', '7697552'), + (97059, 1185, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '8418gG8A', '7699878'), + (97060, 1185, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:28', '8418gG8A', '7704043'), + (97061, 1185, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '8418gG8A', '7712467'), + (97062, 1185, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '8418gG8A', '7713585'), + (97063, 1185, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '8418gG8A', '7713586'), + (97064, 1185, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '8418gG8A', '7738518'), + (97065, 1185, 2962, 'not_attending', '2024-12-27 22:25:54', '2025-12-17 19:46:22', '8418gG8A', '7750632'), + (97066, 1185, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '8418gG8A', '7750636'), + (97067, 1185, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '8418gG8A', '7796540'), + (97068, 1185, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '8418gG8A', '7796541'), + (97069, 1185, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '8418gG8A', '7796542'), + (97070, 1185, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', '8418gG8A', '7825913'), + (97071, 1185, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', '8418gG8A', '7826209'), + (97072, 1185, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', '8418gG8A', '7834742'), + (97073, 1185, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', '8418gG8A', '7842108'), + (97074, 1185, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', '8418gG8A', '7842902'), + (97075, 1185, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', '8418gG8A', '7842903'), + (97076, 1185, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', '8418gG8A', '7842904'), + (97077, 1185, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', '8418gG8A', '7842905'), + (97078, 1185, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', '8418gG8A', '7855719'), + (97079, 1185, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', '8418gG8A', '7860683'), + (97080, 1185, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', '8418gG8A', '7860684'), + (97081, 1185, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', '8418gG8A', '7866095'), + (97082, 1185, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', '8418gG8A', '7869170'), + (97083, 1185, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', '8418gG8A', '7869188'), + (97084, 1185, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', '8418gG8A', '7869201'), + (97085, 1185, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', '8418gG8A', '7877465'), + (97086, 1185, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', '8418gG8A', '7888250'), + (97087, 1185, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', '8418gG8A', '7904777'), + (97088, 1185, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', '8418gG8A', '8349164'), + (97089, 1185, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', '8418gG8A', '8349545'), + (97090, 1185, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', '8418gG8A', '8368028'), + (97091, 1185, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', '8418gG8A', '8368029'), + (97092, 1185, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', '8418gG8A', '8388462'), + (97093, 1185, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', '8418gG8A', '8400273'), + (97094, 1185, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', '8418gG8A', '8400275'), + (97095, 1185, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:17', '8418gG8A', '8400276'), + (97096, 1185, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', '8418gG8A', '8404977'), + (97097, 1185, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', '8418gG8A', '8430783'), + (97098, 1185, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', '8418gG8A', '8430784'), + (97099, 1185, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', '8418gG8A', '8430799'), + (97100, 1185, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', '8418gG8A', '8430800'), + (97101, 1185, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', '8418gG8A', '8430801'), + (97102, 1185, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', '8418gG8A', '8438709'), + (97103, 1185, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', '8418gG8A', '8457738'), + (97104, 1185, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', '8418gG8A', '8459566'), + (97105, 1185, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', '8418gG8A', '8459567'), + (97106, 1185, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', '8418gG8A', '8461032'), + (97107, 1185, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', '8418gG8A', '8477877'), + (97108, 1185, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', '8418gG8A', '8485688'), + (97109, 1185, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', '8418gG8A', '8490587'), + (97110, 1185, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', '8418gG8A', '8493552'), + (97111, 1185, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', '8418gG8A', '8493553'), + (97112, 1185, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', '8418gG8A', '8493554'), + (97113, 1185, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', '8418gG8A', '8493555'), + (97114, 1185, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', '8418gG8A', '8493556'), + (97115, 1185, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', '8418gG8A', '8493557'), + (97116, 1185, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', '8418gG8A', '8493558'), + (97117, 1185, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', '8418gG8A', '8493559'), + (97118, 1185, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', '8418gG8A', '8493560'), + (97119, 1185, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:13', '8418gG8A', '8493561'), + (97120, 1185, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', '8418gG8A', '8493572'), + (97121, 1185, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', '8418gG8A', '8540725'), + (97122, 1185, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', '8418gG8A', '8555421'), + (97123, 1186, 645, 'attending', '2021-05-09 21:03:39', '2025-12-17 19:47:46', 'amGR6vnd', '3539920'), + (97124, 1186, 646, 'attending', '2021-05-14 16:38:20', '2025-12-17 19:47:46', 'amGR6vnd', '3539921'), + (97125, 1186, 647, 'attending', '2021-05-17 21:04:52', '2025-12-17 19:47:46', 'amGR6vnd', '3539922'), + (97126, 1186, 648, 'attending', '2021-05-24 21:59:52', '2025-12-17 19:47:47', 'amGR6vnd', '3539923'), + (97127, 1186, 724, 'attending', '2021-05-09 18:41:59', '2025-12-17 19:47:46', 'amGR6vnd', '3661369'), + (97128, 1186, 725, 'attending', '2021-05-21 20:36:21', '2025-12-17 19:47:47', 'amGR6vnd', '3661372'), + (97129, 1186, 739, 'attending', '2021-05-07 13:59:28', '2025-12-17 19:47:46', 'amGR6vnd', '3680616'), + (97130, 1186, 741, 'attending', '2021-05-12 16:51:11', '2025-12-17 19:47:46', 'amGR6vnd', '3680618'), + (97131, 1186, 766, 'attending', '2021-05-09 02:45:24', '2025-12-17 19:47:46', 'amGR6vnd', '3721383'), + (97132, 1186, 785, 'maybe', '2021-05-11 18:18:12', '2025-12-17 19:47:46', 'amGR6vnd', '3779779'), + (97133, 1186, 787, 'not_attending', '2021-05-10 19:09:47', '2025-12-17 19:47:46', 'amGR6vnd', '3780558'), + (97134, 1186, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'amGR6vnd', '3793156'), + (97135, 1186, 796, 'attending', '2021-05-11 01:20:02', '2025-12-17 19:47:46', 'amGR6vnd', '3793862'), + (97136, 1186, 797, 'attending', '2021-05-25 01:53:36', '2025-12-17 19:47:47', 'amGR6vnd', '3796195'), + (97137, 1186, 798, 'attending', '2021-05-12 16:51:03', '2025-12-17 19:47:46', 'amGR6vnd', '3796262'), + (97138, 1186, 799, 'maybe', '2021-05-11 18:16:31', '2025-12-17 19:47:46', 'amGR6vnd', '3797767'), + (97139, 1186, 803, 'attending', '2021-05-12 16:51:08', '2025-12-17 19:47:46', 'amGR6vnd', '3804665'), + (97140, 1186, 804, 'attending', '2021-05-12 16:51:29', '2025-12-17 19:47:47', 'amGR6vnd', '3804775'), + (97141, 1186, 813, 'attending', '2021-05-14 16:38:13', '2025-12-17 19:47:46', 'amGR6vnd', '3810231'), + (97142, 1186, 815, 'attending', '2021-05-28 22:59:32', '2025-12-17 19:47:47', 'amGR6vnd', '3818136'), + (97143, 1186, 818, 'attending', '2021-05-31 16:50:37', '2025-12-17 19:47:47', 'amGR6vnd', '3833015'), + (97144, 1186, 819, 'attending', '2021-05-30 16:55:54', '2025-12-17 19:47:47', 'amGR6vnd', '3833017'), + (97145, 1186, 821, 'attending', '2021-05-28 16:09:43', '2025-12-17 19:47:47', 'amGR6vnd', '3963965'), + (97146, 1186, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'amGR6vnd', '3974109'), + (97147, 1186, 824, 'not_attending', '2021-06-03 16:11:00', '2025-12-17 19:47:47', 'amGR6vnd', '3974112'), + (97148, 1186, 825, 'attending', '2021-06-03 16:20:49', '2025-12-17 19:47:47', 'amGR6vnd', '3975283'), + (97149, 1186, 827, 'not_attending', '2021-06-05 22:33:05', '2025-12-17 19:47:47', 'amGR6vnd', '3975311'), + (97150, 1186, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'amGR6vnd', '3975312'), + (97151, 1186, 830, 'attending', '2021-06-03 16:11:04', '2025-12-17 19:47:47', 'amGR6vnd', '3976648'), + (97152, 1186, 831, 'attending', '2021-06-04 21:43:13', '2025-12-17 19:47:47', 'amGR6vnd', '3976649'), + (97153, 1186, 832, 'maybe', '2021-06-05 00:29:30', '2025-12-17 19:47:47', 'amGR6vnd', '3976650'), + (97154, 1186, 833, 'attending', '2021-06-03 16:14:56', '2025-12-17 19:47:47', 'amGR6vnd', '3990438'), + (97155, 1186, 838, 'maybe', '2021-06-09 23:01:03', '2025-12-17 19:47:47', 'amGR6vnd', '3994992'), + (97156, 1186, 839, 'not_attending', '2021-06-06 19:05:34', '2025-12-17 19:47:47', 'amGR6vnd', '4002121'), + (97157, 1186, 840, 'attending', '2021-06-08 00:51:12', '2025-12-17 19:47:47', 'amGR6vnd', '4007283'), + (97158, 1186, 841, 'not_attending', '2021-06-15 22:42:19', '2025-12-17 19:47:48', 'amGR6vnd', '4007434'), + (97159, 1186, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'amGR6vnd', '4014338'), + (97160, 1186, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'amGR6vnd', '4021848'), + (97161, 1186, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'amGR6vnd', '4136744'), + (97162, 1186, 870, 'maybe', '2021-07-02 16:46:43', '2025-12-17 19:47:39', 'amGR6vnd', '4136937'), + (97163, 1186, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'amGR6vnd', '4136938'), + (97164, 1186, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'amGR6vnd', '4136947'), + (97165, 1186, 881, 'not_attending', '2021-06-18 18:41:23', '2025-12-17 19:47:38', 'amGR6vnd', '4205662'), + (97166, 1186, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'amGR6vnd', '4210314'), + (97167, 1186, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'amGR6vnd', '4225444'), + (97168, 1186, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'amGR6vnd', '4239259'), + (97169, 1186, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'amGR6vnd', '4240316'), + (97170, 1186, 901, 'attending', '2021-07-31 19:08:07', '2025-12-17 19:47:40', 'amGR6vnd', '4240317'), + (97171, 1186, 902, 'attending', '2021-08-07 16:09:09', '2025-12-17 19:47:41', 'amGR6vnd', '4240318'), + (97172, 1186, 903, 'attending', '2021-08-08 02:02:44', '2025-12-17 19:47:42', 'amGR6vnd', '4240320'), + (97173, 1186, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'amGR6vnd', '4250163'), + (97174, 1186, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'amGR6vnd', '4275957'), + (97175, 1186, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'amGR6vnd', '4277819'), + (97176, 1186, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'amGR6vnd', '4301723'), + (97177, 1186, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'amGR6vnd', '4302093'), + (97178, 1186, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'amGR6vnd', '4304151'), + (97179, 1186, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'amGR6vnd', '4356801'), + (97180, 1186, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'amGR6vnd', '4366186'), + (97181, 1186, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'amGR6vnd', '4366187'), + (97182, 1186, 990, 'not_attending', '2021-09-04 21:12:12', '2025-12-17 19:47:43', 'amGR6vnd', '4420735'), + (97183, 1186, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'amGR6vnd', '4420738'), + (97184, 1186, 992, 'attending', '2021-09-17 18:06:27', '2025-12-17 19:47:33', 'amGR6vnd', '4420739'), + (97185, 1186, 993, 'attending', '2021-09-24 00:20:46', '2025-12-17 19:47:34', 'amGR6vnd', '4420741'), + (97186, 1186, 994, 'attending', '2021-10-02 20:48:20', '2025-12-17 19:47:34', 'amGR6vnd', '4420742'), + (97187, 1186, 995, 'attending', '2021-10-02 20:48:16', '2025-12-17 19:47:34', 'amGR6vnd', '4420744'), + (97188, 1186, 996, 'attending', '2021-10-02 20:48:11', '2025-12-17 19:47:35', 'amGR6vnd', '4420747'), + (97189, 1186, 997, 'attending', '2021-10-18 22:16:06', '2025-12-17 19:47:35', 'amGR6vnd', '4420748'), + (97190, 1186, 998, 'attending', '2021-10-28 00:28:58', '2025-12-17 19:47:36', 'amGR6vnd', '4420749'), + (97191, 1186, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', 'amGR6vnd', '4461883'), + (97192, 1186, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', 'amGR6vnd', '4508342'), + (97193, 1186, 1070, 'attending', '2021-10-01 22:33:37', '2025-12-17 19:47:34', 'amGR6vnd', '4512562'), + (97194, 1186, 1072, 'maybe', '2021-10-06 21:29:51', '2025-12-17 19:47:34', 'amGR6vnd', '4516287'), + (97195, 1186, 1078, 'attending', '2021-10-06 21:29:34', '2025-12-17 19:47:34', 'amGR6vnd', '4541281'), + (97196, 1186, 1082, 'attending', '2021-10-15 21:04:48', '2025-12-17 19:47:35', 'amGR6vnd', '4566762'), + (97197, 1186, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'amGR6vnd', '4568602'), + (97198, 1186, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', 'amGR6vnd', '4572153'), + (97199, 1186, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', 'amGR6vnd', '4585962'), + (97200, 1186, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', 'amGR6vnd', '4596356'), + (97201, 1186, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', 'amGR6vnd', '4598860'), + (97202, 1186, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', 'amGR6vnd', '4598861'), + (97203, 1186, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', 'amGR6vnd', '4602797'), + (97204, 1186, 1103, 'attending', '2021-11-07 22:53:48', '2025-12-17 19:47:36', 'amGR6vnd', '4616350'), + (97205, 1186, 1106, 'attending', '2021-11-12 20:56:15', '2025-12-17 19:47:36', 'amGR6vnd', '4620452'), + (97206, 1186, 1114, 'attending', '2021-11-13 22:52:05', '2025-12-17 19:47:36', 'amGR6vnd', '4637896'), + (97207, 1186, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'amGR6vnd', '4642994'), + (97208, 1186, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'amGR6vnd', '4642995'), + (97209, 1186, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'amGR6vnd', '4642996'), + (97210, 1186, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'amGR6vnd', '4642997'), + (97211, 1186, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'amGR6vnd', '4645687'), + (97212, 1186, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'amGR6vnd', '4645698'), + (97213, 1186, 1128, 'attending', '2021-11-19 20:25:27', '2025-12-17 19:47:37', 'amGR6vnd', '4645704'), + (97214, 1186, 1129, 'attending', '2021-11-26 21:18:35', '2025-12-17 19:47:37', 'amGR6vnd', '4645705'), + (97215, 1186, 1130, 'not_attending', '2021-12-05 00:21:36', '2025-12-17 19:47:37', 'amGR6vnd', '4658824'), + (97216, 1186, 1131, 'not_attending', '2021-12-23 18:17:10', '2025-12-17 19:47:31', 'amGR6vnd', '4658825'), + (97217, 1186, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'amGR6vnd', '4668385'), + (97218, 1186, 1135, 'maybe', '2021-11-26 21:18:54', '2025-12-17 19:47:37', 'amGR6vnd', '4670469'), + (97219, 1186, 1139, 'attending', '2021-12-03 15:18:32', '2025-12-17 19:47:37', 'amGR6vnd', '4675604'), + (97220, 1186, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'amGR6vnd', '4694407'), + (97221, 1186, 1150, 'not_attending', '2021-12-15 15:57:03', '2025-12-17 19:47:38', 'amGR6vnd', '4706262'), + (97222, 1186, 1173, 'attending', '2022-01-04 22:27:30', '2025-12-17 19:47:31', 'amGR6vnd', '4736495'), + (97223, 1186, 1174, 'attending', '2022-01-14 16:57:21', '2025-12-17 19:47:31', 'amGR6vnd', '4736496'), + (97224, 1186, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'amGR6vnd', '4736497'), + (97225, 1186, 1176, 'attending', '2022-02-05 02:00:11', '2025-12-17 19:47:32', 'amGR6vnd', '4736498'), + (97226, 1186, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'amGR6vnd', '4736499'), + (97227, 1186, 1178, 'attending', '2022-01-26 02:54:35', '2025-12-17 19:47:32', 'amGR6vnd', '4736500'), + (97228, 1186, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'amGR6vnd', '4736503'), + (97229, 1186, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'amGR6vnd', '4736504'), + (97230, 1186, 1185, 'attending', '2022-01-14 16:57:15', '2025-12-17 19:47:31', 'amGR6vnd', '4746789'), + (97231, 1186, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'amGR6vnd', '4753929'), + (97232, 1186, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'amGR6vnd', '5038850'), + (97233, 1186, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'amGR6vnd', '5045826'), + (97234, 1186, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'amGR6vnd', '5132533'), + (97235, 1186, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', 'amGR6vnd', '5186582'), + (97236, 1186, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', 'amGR6vnd', '5186583'), + (97237, 1186, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', 'amGR6vnd', '5186585'), + (97238, 1186, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', 'amGR6vnd', '5190437'), + (97239, 1186, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'amGR6vnd', '5215989'), + (97240, 1186, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'amGR6vnd', '6045684'), + (97241, 1187, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'mbXGj2V4', '7424276'), + (97242, 1187, 2829, 'not_attending', '2024-10-25 21:38:34', '2025-12-17 19:46:26', 'mbXGj2V4', '7432756'), + (97243, 1187, 2830, 'not_attending', '2024-11-02 20:28:55', '2025-12-17 19:46:26', 'mbXGj2V4', '7432758'), + (97244, 1187, 2895, 'not_attending', '2024-11-04 23:21:23', '2025-12-17 19:46:26', 'mbXGj2V4', '7682072'), + (97245, 1187, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:26', 'mbXGj2V4', '7685613'), + (97246, 1187, 2900, 'attending', '2024-11-07 22:12:14', '2025-12-17 19:46:26', 'mbXGj2V4', '7686090'), + (97247, 1187, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'mbXGj2V4', '7688194'), + (97248, 1187, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'mbXGj2V4', '7688196'), + (97249, 1187, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'mbXGj2V4', '7688289'), + (97250, 1187, 2911, 'attending', '2024-11-11 04:01:12', '2025-12-17 19:46:27', 'mbXGj2V4', '7689876'), + (97251, 1187, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'mbXGj2V4', '7692763'), + (97252, 1187, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'mbXGj2V4', '7697552'), + (97253, 1187, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'mbXGj2V4', '7699878'), + (97254, 1187, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'mbXGj2V4', '7704043'), + (97255, 1187, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'mbXGj2V4', '7712467'), + (97256, 1187, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'mbXGj2V4', '7713585'), + (97257, 1187, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'mbXGj2V4', '7713586'), + (97258, 1187, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:21', 'mbXGj2V4', '7738518'), + (97259, 1187, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'mbXGj2V4', '7750636'), + (97260, 1187, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'mbXGj2V4', '7796540'), + (97261, 1187, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'mbXGj2V4', '7796541'), + (97262, 1187, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'mbXGj2V4', '7796542'), + (97263, 1187, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'mbXGj2V4', '7825913'), + (97264, 1187, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'mbXGj2V4', '7826209'), + (97265, 1187, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'mbXGj2V4', '7834742'), + (97266, 1187, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'mbXGj2V4', '7842108'), + (97267, 1187, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'mbXGj2V4', '7842902'), + (97268, 1187, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'mbXGj2V4', '7842903'), + (97269, 1187, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'mbXGj2V4', '7842904'), + (97270, 1187, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'mbXGj2V4', '7842905'), + (97271, 1187, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'mbXGj2V4', '7855719'), + (97272, 1187, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'mbXGj2V4', '7860683'), + (97273, 1187, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'mbXGj2V4', '7860684'), + (97274, 1187, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'mbXGj2V4', '7866095'), + (97275, 1187, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'mbXGj2V4', '7869170'), + (97276, 1187, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'mbXGj2V4', '7869188'), + (97277, 1187, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'mbXGj2V4', '7869201'), + (97278, 1187, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'mbXGj2V4', '7877465'), + (97279, 1187, 3034, 'not_attending', '2025-03-11 22:26:22', '2025-12-17 19:46:18', 'mbXGj2V4', '7878570'), + (97280, 1187, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'mbXGj2V4', '7888250'), + (97281, 1187, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'mbXGj2V4', '8349164'), + (97282, 1187, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'mbXGj2V4', '8349545'), + (97283, 1187, 3112, 'not_attending', '2025-04-30 02:53:01', '2025-12-17 19:46:21', 'mbXGj2V4', '8353584'), + (97284, 1188, 395, 'attending', '2021-06-06 07:05:41', '2025-12-17 19:47:47', 'LmpJy094', '3236450'), + (97285, 1188, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'LmpJy094', '3974109'), + (97286, 1188, 827, 'attending', '2021-06-06 02:55:32', '2025-12-17 19:47:47', 'LmpJy094', '3975311'), + (97287, 1188, 828, 'not_attending', '2021-06-12 22:16:57', '2025-12-17 19:47:47', 'LmpJy094', '3975312'), + (97288, 1188, 836, 'not_attending', '2021-06-04 00:46:16', '2025-12-17 19:47:47', 'LmpJy094', '3992492'), + (97289, 1188, 838, 'not_attending', '2021-06-06 17:32:13', '2025-12-17 19:47:47', 'LmpJy094', '3994992'), + (97290, 1188, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', 'LmpJy094', '4014338'), + (97291, 1188, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'LmpJy094', '4021848'), + (97292, 1188, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', 'LmpJy094', '4136744'), + (97293, 1188, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'LmpJy094', '4136947'), + (97294, 1188, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'LmpJy094', '6045684'), + (97295, 1189, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xd95eKEd', '6045684'), + (97296, 1190, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'Ag5rGXnd', '5900202'), + (97297, 1190, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'Ag5rGXnd', '5900203'), + (97298, 1190, 1917, 'not_attending', '2023-03-12 16:07:19', '2025-12-17 19:47:10', 'Ag5rGXnd', '5910528'), + (97299, 1190, 1943, 'attending', '2023-03-14 21:38:58', '2025-12-17 19:47:10', 'Ag5rGXnd', '5962091'), + (97300, 1190, 1948, 'not_attending', '2023-03-23 21:32:05', '2025-12-17 19:46:57', 'Ag5rGXnd', '5962317'), + (97301, 1190, 1949, 'not_attending', '2023-04-02 20:05:17', '2025-12-17 19:46:59', 'Ag5rGXnd', '5962318'), + (97302, 1190, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'Ag5rGXnd', '5965933'), + (97303, 1190, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'Ag5rGXnd', '5981515'), + (97304, 1190, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'Ag5rGXnd', '5993516'), + (97305, 1190, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'Ag5rGXnd', '5998939'), + (97306, 1190, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'Ag5rGXnd', '6028191'), + (97307, 1190, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'Ag5rGXnd', '6040066'), + (97308, 1190, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'Ag5rGXnd', '6042717'), + (97309, 1190, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'Ag5rGXnd', '6044838'), + (97310, 1190, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'Ag5rGXnd', '6044839'), + (97311, 1190, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ag5rGXnd', '6045684'), + (97312, 1190, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'Ag5rGXnd', '6050104'), + (97313, 1190, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'Ag5rGXnd', '6053195'), + (97314, 1190, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'Ag5rGXnd', '6053198'), + (97315, 1190, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'Ag5rGXnd', '6056085'), + (97316, 1190, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'Ag5rGXnd', '6056916'), + (97317, 1190, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'Ag5rGXnd', '6059290'), + (97318, 1190, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'Ag5rGXnd', '6060328'), + (97319, 1190, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'Ag5rGXnd', '6061037'), + (97320, 1190, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'Ag5rGXnd', '6061039'), + (97321, 1190, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'Ag5rGXnd', '6067245'), + (97322, 1190, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'Ag5rGXnd', '6068094'), + (97323, 1190, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'Ag5rGXnd', '6068252'), + (97324, 1190, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'Ag5rGXnd', '6068253'), + (97325, 1190, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'Ag5rGXnd', '6068254'), + (97326, 1190, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'Ag5rGXnd', '6068280'), + (97327, 1190, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'Ag5rGXnd', '6069093'), + (97328, 1190, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'Ag5rGXnd', '6072528'), + (97329, 1190, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'Ag5rGXnd', '6079840'), + (97330, 1190, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'Ag5rGXnd', '6083398'), + (97331, 1190, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:02', 'Ag5rGXnd', '6093504'), + (97332, 1190, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'Ag5rGXnd', '6097414'), + (97333, 1190, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'Ag5rGXnd', '6097442'), + (97334, 1190, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'Ag5rGXnd', '6097684'), + (97335, 1190, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'Ag5rGXnd', '6098762'), + (97336, 1190, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'Ag5rGXnd', '6101362'), + (97337, 1190, 2070, 'not_attending', '2023-05-14 21:06:09', '2025-12-17 19:47:03', 'Ag5rGXnd', '6103752'), + (97338, 1190, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'Ag5rGXnd', '6107314'), + (97339, 1191, 993, 'attending', '2021-09-25 08:06:08', '2025-12-17 19:47:34', '41orVa7m', '4420741'), + (97340, 1191, 994, 'attending', '2021-09-30 08:19:28', '2025-12-17 19:47:34', '41orVa7m', '4420742'), + (97341, 1191, 995, 'attending', '2021-10-03 22:40:04', '2025-12-17 19:47:34', '41orVa7m', '4420744'), + (97342, 1191, 996, 'attending', '2021-10-10 13:10:10', '2025-12-17 19:47:35', '41orVa7m', '4420747'), + (97343, 1191, 997, 'attending', '2021-10-23 22:55:07', '2025-12-17 19:47:35', '41orVa7m', '4420748'), + (97344, 1191, 998, 'attending', '2021-10-27 00:38:01', '2025-12-17 19:47:36', '41orVa7m', '4420749'), + (97345, 1191, 1005, 'attending', '2021-09-21 03:52:34', '2025-12-17 19:47:34', '41orVa7m', '4438807'), + (97346, 1191, 1031, 'not_attending', '2021-09-22 22:52:48', '2025-12-17 19:47:34', '41orVa7m', '4473789'), + (97347, 1191, 1036, 'not_attending', '2021-09-22 22:53:06', '2025-12-17 19:47:34', '41orVa7m', '4493166'), + (97348, 1191, 1037, 'not_attending', '2021-09-22 23:00:35', '2025-12-17 19:47:34', '41orVa7m', '4493233'), + (97349, 1191, 1054, 'attending', '2022-03-13 04:57:32', '2025-12-17 19:47:25', '41orVa7m', '4496619'), + (97350, 1191, 1059, 'attending', '2022-03-12 23:11:40', '2025-12-17 19:47:33', '41orVa7m', '4496626'), + (97351, 1191, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '41orVa7m', '4508342'), + (97352, 1191, 1068, 'maybe', '2021-09-30 22:20:58', '2025-12-17 19:47:34', '41orVa7m', '4511471'), + (97353, 1191, 1070, 'attending', '2021-09-30 08:19:36', '2025-12-17 19:47:34', '41orVa7m', '4512562'), + (97354, 1191, 1078, 'attending', '2021-10-04 22:06:08', '2025-12-17 19:47:34', '41orVa7m', '4541281'), + (97355, 1191, 1082, 'not_attending', '2021-10-16 00:16:28', '2025-12-17 19:47:35', '41orVa7m', '4566762'), + (97356, 1191, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '41orVa7m', '4568602'), + (97357, 1191, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '41orVa7m', '4572153'), + (97358, 1191, 1093, 'not_attending', '2021-10-20 18:45:27', '2025-12-17 19:47:35', '41orVa7m', '4585962'), + (97359, 1191, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '41orVa7m', '4596356'), + (97360, 1191, 1096, 'attending', '2021-10-27 01:09:05', '2025-12-17 19:47:36', '41orVa7m', '4596453'), + (97361, 1191, 1097, 'maybe', '2021-11-01 03:52:22', '2025-12-17 19:47:36', '41orVa7m', '4598860'), + (97362, 1191, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '41orVa7m', '4598861'), + (97363, 1191, 1099, 'attending', '2021-10-31 01:25:48', '2025-12-17 19:47:36', '41orVa7m', '4602797'), + (97364, 1191, 1103, 'attending', '2021-11-13 22:25:39', '2025-12-17 19:47:36', '41orVa7m', '4616350'), + (97365, 1191, 1106, 'maybe', '2021-11-10 05:46:49', '2025-12-17 19:47:36', '41orVa7m', '4620452'), + (97366, 1191, 1114, 'maybe', '2021-11-14 00:37:27', '2025-12-17 19:47:37', '41orVa7m', '4637896'), + (97367, 1191, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '41orVa7m', '4642994'), + (97368, 1191, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:38', '41orVa7m', '4642995'), + (97369, 1191, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '41orVa7m', '4642996'), + (97370, 1191, 1119, 'attending', '2021-12-23 01:03:26', '2025-12-17 19:47:31', '41orVa7m', '4642997'), + (97371, 1191, 1126, 'attending', '2021-12-11 09:49:55', '2025-12-17 19:47:38', '41orVa7m', '4645687'), + (97372, 1191, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '41orVa7m', '4645698'), + (97373, 1191, 1128, 'maybe', '2021-11-16 22:23:54', '2025-12-17 19:47:37', '41orVa7m', '4645704'), + (97374, 1191, 1129, 'maybe', '2021-11-27 05:34:52', '2025-12-17 19:47:37', '41orVa7m', '4645705'), + (97375, 1191, 1130, 'attending', '2021-12-04 23:33:12', '2025-12-17 19:47:37', '41orVa7m', '4658824'), + (97376, 1191, 1131, 'maybe', '2021-12-14 06:00:33', '2025-12-17 19:47:31', '41orVa7m', '4658825'), + (97377, 1191, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '41orVa7m', '4668385'), + (97378, 1191, 1135, 'attending', '2021-11-27 05:34:32', '2025-12-17 19:47:37', '41orVa7m', '4670469'), + (97379, 1191, 1139, 'attending', '2021-11-29 02:22:16', '2025-12-17 19:47:37', '41orVa7m', '4675604'), + (97380, 1191, 1140, 'maybe', '2021-11-30 03:34:52', '2025-12-17 19:47:37', '41orVa7m', '4679701'), + (97381, 1191, 1144, 'attending', '2021-12-08 03:04:52', '2025-12-17 19:47:37', '41orVa7m', '4687090'), + (97382, 1191, 1145, 'maybe', '2021-12-06 22:39:29', '2025-12-17 19:47:38', '41orVa7m', '4691157'), + (97383, 1191, 1146, 'attending', '2021-12-08 06:49:37', '2025-12-17 19:47:38', '41orVa7m', '4692841'), + (97384, 1191, 1148, 'maybe', '2021-12-16 02:51:35', '2025-12-17 19:47:31', '41orVa7m', '4692843'), + (97385, 1191, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '41orVa7m', '4694407'), + (97386, 1191, 1152, 'maybe', '2022-01-09 12:42:48', '2025-12-17 19:47:31', '41orVa7m', '4708705'), + (97387, 1191, 1154, 'maybe', '2022-01-27 00:48:05', '2025-12-17 19:47:32', '41orVa7m', '4708708'), + (97388, 1191, 1155, 'not_attending', '2021-12-21 01:52:36', '2025-12-17 19:47:31', '41orVa7m', '4715119'), + (97389, 1191, 1156, 'attending', '2021-12-19 10:02:42', '2025-12-17 19:47:31', '41orVa7m', '4715207'), + (97390, 1191, 1158, 'maybe', '2021-12-20 03:23:50', '2025-12-17 19:47:31', '41orVa7m', '4715311'), + (97391, 1191, 1167, 'attending', '2022-01-07 00:35:20', '2025-12-17 19:47:31', '41orVa7m', '4731015'), + (97392, 1191, 1168, 'attending', '2022-01-07 00:35:50', '2025-12-17 19:47:31', '41orVa7m', '4731043'), + (97393, 1191, 1173, 'attending', '2022-01-04 23:36:11', '2025-12-17 19:47:31', '41orVa7m', '4736495'), + (97394, 1191, 1174, 'attending', '2022-01-09 12:42:25', '2025-12-17 19:47:31', '41orVa7m', '4736496'), + (97395, 1191, 1175, 'attending', '2022-01-22 11:40:10', '2025-12-17 19:47:32', '41orVa7m', '4736497'), + (97396, 1191, 1176, 'attending', '2022-01-30 09:36:35', '2025-12-17 19:47:32', '41orVa7m', '4736498'), + (97397, 1191, 1177, 'attending', '2022-02-12 04:59:18', '2025-12-17 19:47:32', '41orVa7m', '4736499'), + (97398, 1191, 1178, 'attending', '2022-01-22 22:32:15', '2025-12-17 19:47:32', '41orVa7m', '4736500'), + (97399, 1191, 1179, 'attending', '2022-02-19 03:41:32', '2025-12-17 19:47:32', '41orVa7m', '4736501'), + (97400, 1191, 1180, 'attending', '2022-02-20 04:42:32', '2025-12-17 19:47:33', '41orVa7m', '4736502'), + (97401, 1191, 1181, 'attending', '2022-02-26 07:00:51', '2025-12-17 19:47:33', '41orVa7m', '4736503'), + (97402, 1191, 1182, 'attending', '2022-03-06 21:54:34', '2025-12-17 19:47:33', '41orVa7m', '4736504'), + (97403, 1191, 1184, 'attending', '2022-01-09 12:42:03', '2025-12-17 19:47:31', '41orVa7m', '4742350'), + (97404, 1191, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '41orVa7m', '4746789'), + (97405, 1191, 1188, 'maybe', '2022-01-16 23:32:05', '2025-12-17 19:47:32', '41orVa7m', '4753929'), + (97406, 1191, 1190, 'maybe', '2022-01-13 00:10:55', '2025-12-17 19:47:31', '41orVa7m', '4757377'), + (97407, 1191, 1191, 'attending', '2022-01-11 23:46:06', '2025-12-17 19:47:31', '41orVa7m', '4757390'), + (97408, 1191, 1192, 'attending', '2022-01-21 00:57:51', '2025-12-17 19:47:32', '41orVa7m', '4758745'), + (97409, 1191, 1200, 'attending', '2022-01-18 05:03:56', '2025-12-17 19:47:32', '41orVa7m', '4766830'), + (97410, 1191, 1216, 'maybe', '2022-01-25 08:19:14', '2025-12-17 19:47:32', '41orVa7m', '4781137'), + (97411, 1191, 1220, 'maybe', '2022-01-28 00:27:02', '2025-12-17 19:47:32', '41orVa7m', '4790257'), + (97412, 1191, 1222, 'maybe', '2022-02-13 13:21:33', '2025-12-17 19:47:32', '41orVa7m', '5015628'), + (97413, 1191, 1224, 'maybe', '2022-01-31 00:07:50', '2025-12-17 19:47:32', '41orVa7m', '5016682'), + (97414, 1191, 1228, 'maybe', '2022-02-06 23:13:28', '2025-12-17 19:47:32', '41orVa7m', '5028238'), + (97415, 1191, 1229, 'attending', '2022-02-13 13:21:50', '2025-12-17 19:47:32', '41orVa7m', '5034963'), + (97416, 1191, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '41orVa7m', '5038850'), + (97417, 1191, 1234, 'maybe', '2022-02-13 13:21:44', '2025-12-17 19:47:32', '41orVa7m', '5042197'), + (97418, 1191, 1236, 'maybe', '2022-02-14 08:57:49', '2025-12-17 19:47:32', '41orVa7m', '5045826'), + (97419, 1191, 1238, 'maybe', '2022-02-23 11:59:32', '2025-12-17 19:47:32', '41orVa7m', '5052236'), + (97420, 1191, 1239, 'attending', '2022-02-26 06:57:47', '2025-12-17 19:47:33', '41orVa7m', '5052238'), + (97421, 1191, 1240, 'attending', '2022-03-16 23:19:31', '2025-12-17 19:47:33', '41orVa7m', '5052239'), + (97422, 1191, 1246, 'maybe', '2022-03-03 10:33:45', '2025-12-17 19:47:33', '41orVa7m', '5064727'), + (97423, 1191, 1250, 'maybe', '2022-03-04 21:53:33', '2025-12-17 19:47:33', '41orVa7m', '5069735'), + (97424, 1191, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '41orVa7m', '5132533'), + (97425, 1191, 1260, 'attending', '2022-03-02 00:02:45', '2025-12-17 19:47:33', '41orVa7m', '5142082'), + (97426, 1191, 1262, 'maybe', '2022-03-10 23:30:11', '2025-12-17 19:47:33', '41orVa7m', '5157773'), + (97427, 1191, 1265, 'attending', '2022-03-10 04:23:51', '2025-12-17 19:47:33', '41orVa7m', '5160862'), + (97428, 1191, 1272, 'attending', '2022-03-15 22:13:23', '2025-12-17 19:47:25', '41orVa7m', '5186582'), + (97429, 1191, 1273, 'attending', '2022-03-19 22:27:31', '2025-12-17 19:47:25', '41orVa7m', '5186583'), + (97430, 1191, 1274, 'attending', '2022-03-30 11:46:20', '2025-12-17 19:47:26', '41orVa7m', '5186585'), + (97431, 1191, 1280, 'maybe', '2022-03-18 14:27:13', '2025-12-17 19:47:25', '41orVa7m', '5189749'), + (97432, 1191, 1281, 'attending', '2022-04-09 07:45:48', '2025-12-17 19:47:27', '41orVa7m', '5190437'), + (97433, 1191, 1284, 'attending', '2022-04-12 07:03:34', '2025-12-17 19:47:27', '41orVa7m', '5195095'), + (97434, 1191, 1285, 'attending', '2022-03-25 06:59:42', '2025-12-17 19:47:25', '41orVa7m', '5196763'), + (97435, 1191, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '41orVa7m', '5215989'), + (97436, 1191, 1301, 'attending', '2022-03-30 11:46:26', '2025-12-17 19:47:26', '41orVa7m', '5218175'), + (97437, 1191, 1306, 'maybe', '2022-04-05 08:40:51', '2025-12-17 19:47:26', '41orVa7m', '5223682'), + (97438, 1191, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', '41orVa7m', '5223686'), + (97439, 1191, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', '41orVa7m', '5227432'), + (97440, 1191, 1312, 'maybe', '2022-04-14 23:07:37', '2025-12-17 19:47:27', '41orVa7m', '5231459'), + (97441, 1191, 1313, 'attending', '2022-04-12 09:53:58', '2025-12-17 19:47:27', '41orVa7m', '5231461'), + (97442, 1191, 1315, 'maybe', '2022-04-17 11:23:57', '2025-12-17 19:47:27', '41orVa7m', '5237522'), + (97443, 1191, 1323, 'not_attending', '2022-04-15 13:01:52', '2025-12-17 19:47:27', '41orVa7m', '5238357'), + (97444, 1191, 1333, 'attending', '2022-04-15 11:08:19', '2025-12-17 19:47:27', '41orVa7m', '5243711'), + (97445, 1191, 1346, 'attending', '2022-04-17 22:16:54', '2025-12-17 19:47:27', '41orVa7m', '5247467'), + (97446, 1191, 1348, 'maybe', '2022-04-25 12:03:03', '2025-12-17 19:47:28', '41orVa7m', '5247605'), + (97447, 1191, 1351, 'maybe', '2022-05-02 05:39:51', '2025-12-17 19:47:28', '41orVa7m', '5251561'), + (97448, 1191, 1362, 'attending', '2022-04-25 22:54:57', '2025-12-17 19:47:28', '41orVa7m', '5260800'), + (97449, 1191, 1368, 'maybe', '2022-05-01 07:17:29', '2025-12-17 19:47:28', '41orVa7m', '5262783'), + (97450, 1191, 1370, 'attending', '2022-04-28 08:14:13', '2025-12-17 19:47:28', '41orVa7m', '5263775'), + (97451, 1191, 1372, 'maybe', '2022-05-04 22:46:54', '2025-12-17 19:47:28', '41orVa7m', '5264352'), + (97452, 1191, 1374, 'attending', '2022-05-06 10:30:07', '2025-12-17 19:47:28', '41orVa7m', '5269930'), + (97453, 1191, 1375, 'maybe', '2022-05-02 05:55:08', '2025-12-17 19:47:28', '41orVa7m', '5269932'), + (97454, 1191, 1378, 'attending', '2022-05-02 05:57:23', '2025-12-17 19:47:28', '41orVa7m', '5271448'), + (97455, 1191, 1379, 'attending', '2022-05-02 05:57:21', '2025-12-17 19:47:29', '41orVa7m', '5271449'), + (97456, 1191, 1380, 'attending', '2022-05-02 05:57:17', '2025-12-17 19:47:30', '41orVa7m', '5271450'), + (97457, 1191, 1381, 'attending', '2022-05-06 22:12:16', '2025-12-17 19:47:28', '41orVa7m', '5271453'), + (97458, 1191, 1383, 'attending', '2022-05-04 00:17:34', '2025-12-17 19:47:28', '41orVa7m', '5276469'), + (97459, 1191, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', '41orVa7m', '5278159'), + (97460, 1191, 1407, 'attending', '2022-06-04 02:02:27', '2025-12-17 19:47:30', '41orVa7m', '5363695'), + (97461, 1191, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', '41orVa7m', '5365960'), + (97462, 1191, 1412, 'not_attending', '2022-05-20 00:09:46', '2025-12-17 19:47:29', '41orVa7m', '5367532'), + (97463, 1191, 1413, 'attending', '2022-05-20 21:21:21', '2025-12-17 19:47:29', '41orVa7m', '5367533'), + (97464, 1191, 1415, 'attending', '2022-05-21 01:32:47', '2025-12-17 19:47:30', '41orVa7m', '5368973'), + (97465, 1191, 1417, 'not_attending', '2022-05-24 00:29:53', '2025-12-17 19:47:30', '41orVa7m', '5370465'), + (97466, 1191, 1423, 'attending', '2022-06-15 23:28:36', '2025-12-17 19:47:17', '41orVa7m', '5375727'), + (97467, 1191, 1426, 'maybe', '2022-05-24 11:29:00', '2025-12-17 19:47:30', '41orVa7m', '5375873'), + (97468, 1191, 1427, 'attending', '2022-05-25 22:27:21', '2025-12-17 19:47:30', '41orVa7m', '5376074'), + (97469, 1191, 1428, 'maybe', '2022-05-26 23:19:18', '2025-12-17 19:47:30', '41orVa7m', '5378247'), + (97470, 1191, 1431, 'attending', '2022-06-03 03:06:28', '2025-12-17 19:47:30', '41orVa7m', '5389605'), + (97471, 1191, 1438, 'maybe', '2022-06-01 22:43:31', '2025-12-17 19:47:30', '41orVa7m', '5395032'), + (97472, 1191, 1439, 'maybe', '2022-06-06 06:53:47', '2025-12-17 19:47:30', '41orVa7m', '5396072'), + (97473, 1191, 1442, 'attending', '2022-06-03 03:06:25', '2025-12-17 19:47:17', '41orVa7m', '5397265'), + (97474, 1191, 1451, 'attending', '2022-06-09 13:54:18', '2025-12-17 19:47:17', '41orVa7m', '5403967'), + (97475, 1191, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', '41orVa7m', '5404786'), + (97476, 1191, 1460, 'maybe', '2022-06-13 13:29:00', '2025-12-17 19:47:31', '41orVa7m', '5404817'), + (97477, 1191, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', '41orVa7m', '5405203'), + (97478, 1191, 1477, 'maybe', '2022-06-15 03:10:14', '2025-12-17 19:47:17', '41orVa7m', '5408766'), + (97479, 1191, 1478, 'not_attending', '2022-06-24 08:02:47', '2025-12-17 19:47:19', '41orVa7m', '5408794'), + (97480, 1191, 1480, 'maybe', '2022-06-21 11:20:58', '2025-12-17 19:47:19', '41orVa7m', '5411699'), + (97481, 1191, 1482, 'attending', '2022-06-19 10:19:42', '2025-12-17 19:47:19', '41orVa7m', '5412550'), + (97482, 1191, 1483, 'maybe', '2022-06-20 02:04:14', '2025-12-17 19:47:17', '41orVa7m', '5414556'), + (97483, 1191, 1484, 'maybe', '2022-06-21 13:40:49', '2025-12-17 19:47:17', '41orVa7m', '5415046'), + (97484, 1191, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', '41orVa7m', '5422086'), + (97485, 1191, 1498, 'maybe', '2022-07-02 14:19:41', '2025-12-17 19:47:19', '41orVa7m', '5422406'), + (97486, 1191, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', '41orVa7m', '5424565'), + (97487, 1191, 1504, 'maybe', '2022-07-06 07:48:54', '2025-12-17 19:47:19', '41orVa7m', '5426882'), + (97488, 1191, 1505, 'maybe', '2022-07-02 16:04:49', '2025-12-17 19:47:19', '41orVa7m', '5427083'), + (97489, 1191, 1508, 'maybe', '2022-07-13 13:55:04', '2025-12-17 19:47:19', '41orVa7m', '5433453'), + (97490, 1191, 1511, 'attending', '2022-07-07 03:39:21', '2025-12-17 19:47:19', '41orVa7m', '5437733'), + (97491, 1191, 1513, 'attending', '2022-07-09 06:09:59', '2025-12-17 19:47:19', '41orVa7m', '5441125'), + (97492, 1191, 1514, 'attending', '2022-07-18 07:09:58', '2025-12-17 19:47:20', '41orVa7m', '5441126'), + (97493, 1191, 1515, 'attending', '2022-08-03 03:57:19', '2025-12-17 19:47:21', '41orVa7m', '5441128'), + (97494, 1191, 1516, 'attending', '2022-08-10 07:48:45', '2025-12-17 19:47:23', '41orVa7m', '5441129'), + (97495, 1191, 1517, 'attending', '2022-08-18 12:22:20', '2025-12-17 19:47:23', '41orVa7m', '5441130'), + (97496, 1191, 1518, 'attending', '2022-08-23 08:53:49', '2025-12-17 19:47:24', '41orVa7m', '5441131'), + (97497, 1191, 1519, 'attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', '41orVa7m', '5441132'), + (97498, 1191, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', '41orVa7m', '5446643'), + (97499, 1191, 1539, 'maybe', '2022-07-18 07:09:42', '2025-12-17 19:47:21', '41orVa7m', '5449671'), + (97500, 1191, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', '41orVa7m', '5453325'), + (97501, 1191, 1543, 'attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', '41orVa7m', '5454516'), + (97502, 1191, 1544, 'attending', '2022-09-17 08:25:43', '2025-12-17 19:47:11', '41orVa7m', '5454517'), + (97503, 1191, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', '41orVa7m', '5454605'), + (97504, 1191, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', '41orVa7m', '5455037'), + (97505, 1191, 1561, 'maybe', '2022-08-08 06:21:12', '2025-12-17 19:47:22', '41orVa7m', '5461278'), + (97506, 1191, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', '41orVa7m', '5469480'), + (97507, 1191, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', '41orVa7m', '5471073'), + (97508, 1191, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', '41orVa7m', '5474663'), + (97509, 1191, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', '41orVa7m', '5482022'), + (97510, 1191, 1575, 'maybe', '2022-08-18 12:22:13', '2025-12-17 19:47:23', '41orVa7m', '5482250'), + (97511, 1191, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', '41orVa7m', '5482793'), + (97512, 1191, 1578, 'maybe', '2022-08-02 13:07:15', '2025-12-17 19:47:21', '41orVa7m', '5483073'), + (97513, 1191, 1580, 'maybe', '2022-08-10 05:09:53', '2025-12-17 19:47:22', '41orVa7m', '5488912'), + (97514, 1191, 1581, 'maybe', '2022-08-10 01:53:42', '2025-12-17 19:47:22', '41orVa7m', '5490302'), + (97515, 1191, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', '41orVa7m', '5492192'), + (97516, 1191, 1588, 'attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', '41orVa7m', '5493139'), + (97517, 1191, 1590, 'maybe', '2022-08-08 19:29:30', '2025-12-17 19:47:23', '41orVa7m', '5493200'), + (97518, 1191, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', '41orVa7m', '5502188'), + (97519, 1191, 1606, 'not_attending', '2022-08-29 07:52:54', '2025-12-17 19:47:23', '41orVa7m', '5504585'), + (97520, 1191, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', '41orVa7m', '5505059'), + (97521, 1191, 1610, 'attending', '2022-08-22 03:36:11', '2025-12-17 19:47:23', '41orVa7m', '5506595'), + (97522, 1191, 1614, 'maybe', '2022-08-23 08:51:56', '2025-12-17 19:47:23', '41orVa7m', '5508371'), + (97523, 1191, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', '41orVa7m', '5509055'), + (97524, 1191, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', '41orVa7m', '5512862'), + (97525, 1191, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', '41orVa7m', '5513985'), + (97526, 1191, 1626, 'maybe', '2022-08-26 12:42:27', '2025-12-17 19:47:11', '41orVa7m', '5519981'), + (97527, 1191, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', '41orVa7m', '5522550'), + (97528, 1191, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', '41orVa7m', '5534683'), + (97529, 1191, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', '41orVa7m', '5537735'), + (97530, 1191, 1638, 'maybe', '2022-09-01 09:20:28', '2025-12-17 19:47:24', '41orVa7m', '5540402'), + (97531, 1191, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', '41orVa7m', '5540859'), + (97532, 1191, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', '41orVa7m', '5546619'), + (97533, 1191, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', '41orVa7m', '5555245'), + (97534, 1191, 1659, 'maybe', '2022-09-07 08:53:28', '2025-12-17 19:47:11', '41orVa7m', '5557747'), + (97535, 1191, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', '41orVa7m', '5560255'), + (97536, 1191, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', '41orVa7m', '5562906'), + (97537, 1191, 1667, 'attending', '2022-09-24 09:51:40', '2025-12-17 19:47:11', '41orVa7m', '5563221'), + (97538, 1191, 1668, 'attending', '2022-09-24 09:51:46', '2025-12-17 19:47:12', '41orVa7m', '5563222'), + (97539, 1191, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', '41orVa7m', '5600604'), + (97540, 1191, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', '41orVa7m', '5605544'), + (97541, 1191, 1699, 'not_attending', '2022-09-26 12:16:17', '2025-12-17 19:47:12', '41orVa7m', '5606737'), + (97542, 1191, 1719, 'attending', '2022-10-05 16:07:01', '2025-12-17 19:47:12', '41orVa7m', '5630958'), + (97543, 1191, 1720, 'attending', '2022-10-15 08:52:30', '2025-12-17 19:47:12', '41orVa7m', '5630959'), + (97544, 1191, 1721, 'attending', '2022-10-22 12:04:56', '2025-12-17 19:47:13', '41orVa7m', '5630960'), + (97545, 1191, 1722, 'attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', '41orVa7m', '5630961'), + (97546, 1191, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', '41orVa7m', '5630962'), + (97547, 1191, 1724, 'attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', '41orVa7m', '5630966'), + (97548, 1191, 1725, 'attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', '41orVa7m', '5630967'), + (97549, 1191, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', '41orVa7m', '5630968'), + (97550, 1191, 1727, 'maybe', '2022-12-03 12:24:04', '2025-12-17 19:47:16', '41orVa7m', '5630969'), + (97551, 1191, 1732, 'maybe', '2022-10-07 14:52:52', '2025-12-17 19:47:12', '41orVa7m', '5635406'), + (97552, 1191, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', '41orVa7m', '5638765'), + (97553, 1191, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', '41orVa7m', '5640097'), + (97554, 1191, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', '41orVa7m', '5640843'), + (97555, 1191, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', '41orVa7m', '5641521'), + (97556, 1191, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', '41orVa7m', '5642818'), + (97557, 1191, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', '41orVa7m', '5652395'), + (97558, 1191, 1762, 'attending', '2022-11-28 07:06:53', '2025-12-17 19:47:16', '41orVa7m', '5670445'), + (97559, 1191, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', '41orVa7m', '5671637'), + (97560, 1191, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', '41orVa7m', '5672329'), + (97561, 1191, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', '41orVa7m', '5674057'), + (97562, 1191, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', '41orVa7m', '5674060'), + (97563, 1191, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', '41orVa7m', '5677461'), + (97564, 1191, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', '41orVa7m', '5698046'), + (97565, 1191, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', '41orVa7m', '5699760'), + (97566, 1191, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', '41orVa7m', '5741601'), + (97567, 1191, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', '41orVa7m', '5763458'), + (97568, 1191, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', '41orVa7m', '5774172'), + (97569, 1191, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', '41orVa7m', '5818247'), + (97570, 1191, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', '41orVa7m', '5819471'), + (97571, 1191, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', '41orVa7m', '5827739'), + (97572, 1191, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', '41orVa7m', '5844306'), + (97573, 1191, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', '41orVa7m', '5850159'), + (97574, 1191, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', '41orVa7m', '5858999'), + (97575, 1191, 1853, 'attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', '41orVa7m', '5871984'), + (97576, 1191, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', '41orVa7m', '5876354'), + (97577, 1191, 1864, 'attending', '2023-01-21 04:27:55', '2025-12-17 19:47:05', '41orVa7m', '5879675'), + (97578, 1191, 1865, 'attending', '2023-01-28 07:05:36', '2025-12-17 19:47:06', '41orVa7m', '5879676'), + (97579, 1191, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', '41orVa7m', '5880939'), + (97580, 1191, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', '41orVa7m', '5880940'), + (97581, 1191, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '41orVa7m', '5880942'), + (97582, 1191, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '41orVa7m', '5880943'), + (97583, 1191, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', '41orVa7m', '5887890'), + (97584, 1191, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', '41orVa7m', '5888598'), + (97585, 1191, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', '41orVa7m', '5893260'), + (97586, 1191, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', '41orVa7m', '5899826'), + (97587, 1191, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', '41orVa7m', '5900199'), + (97588, 1191, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '41orVa7m', '5900200'), + (97589, 1191, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '41orVa7m', '5900202'), + (97590, 1191, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '41orVa7m', '5900203'), + (97591, 1191, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', '41orVa7m', '5901108'), + (97592, 1191, 1896, 'attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', '41orVa7m', '5901126'), + (97593, 1191, 1897, 'attending', '2023-02-11 02:07:29', '2025-12-17 19:47:07', '41orVa7m', '5901128'), + (97594, 1191, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', '41orVa7m', '5909655'), + (97595, 1191, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', '41orVa7m', '5910522'), + (97596, 1191, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', '41orVa7m', '5910526'), + (97597, 1191, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', '41orVa7m', '5910528'), + (97598, 1191, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '41orVa7m', '5916219'), + (97599, 1191, 1933, 'attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '41orVa7m', '5936234'), + (97600, 1191, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '41orVa7m', '5958351'), + (97601, 1191, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '41orVa7m', '5959751'), + (97602, 1191, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '41orVa7m', '5959755'), + (97603, 1191, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '41orVa7m', '5960055'), + (97604, 1191, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '41orVa7m', '5961684'), + (97605, 1191, 1944, 'maybe', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '41orVa7m', '5962132'), + (97606, 1191, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '41orVa7m', '5962133'), + (97607, 1191, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '41orVa7m', '5962134'), + (97608, 1191, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '41orVa7m', '5962317'), + (97609, 1191, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '41orVa7m', '5962318'), + (97610, 1191, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '41orVa7m', '5965933'), + (97611, 1191, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '41orVa7m', '5967014'), + (97612, 1191, 1956, 'not_attending', '2023-03-06 04:34:20', '2025-12-17 19:47:09', '41orVa7m', '5972763'), + (97613, 1191, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '41orVa7m', '5972815'), + (97614, 1191, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '41orVa7m', '5974016'), + (97615, 1191, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '41orVa7m', '5981515'), + (97616, 1191, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '41orVa7m', '5993516'), + (97617, 1191, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '41orVa7m', '5998939'), + (97618, 1191, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '41orVa7m', '6028191'), + (97619, 1191, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '41orVa7m', '6040066'), + (97620, 1191, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '41orVa7m', '6042717'), + (97621, 1191, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', '41orVa7m', '6044838'), + (97622, 1191, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', '41orVa7m', '6044839'), + (97623, 1191, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '41orVa7m', '6045684'), + (97624, 1191, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', '41orVa7m', '6050104'), + (97625, 1191, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', '41orVa7m', '6053195'), + (97626, 1191, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', '41orVa7m', '6053198'), + (97627, 1191, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', '41orVa7m', '6056085'), + (97628, 1191, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', '41orVa7m', '6056916'), + (97629, 1191, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', '41orVa7m', '6059290'), + (97630, 1191, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', '41orVa7m', '6060328'), + (97631, 1191, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', '41orVa7m', '6061037'), + (97632, 1191, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', '41orVa7m', '6061039'), + (97633, 1191, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', '41orVa7m', '6067245'), + (97634, 1191, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', '41orVa7m', '6068094'), + (97635, 1191, 2028, 'attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', '41orVa7m', '6068252'), + (97636, 1191, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', '41orVa7m', '6068253'), + (97637, 1191, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', '41orVa7m', '6068254'), + (97638, 1191, 2031, 'attending', '2023-04-18 00:53:08', '2025-12-17 19:47:03', '41orVa7m', '6068280'), + (97639, 1191, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', '41orVa7m', '6069093'), + (97640, 1191, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', '41orVa7m', '6072528'), + (97641, 1191, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', '41orVa7m', '6079840'), + (97642, 1191, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', '41orVa7m', '6083398'), + (97643, 1191, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', '41orVa7m', '6093504'), + (97644, 1191, 2060, 'attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', '41orVa7m', '6097414'), + (97645, 1191, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', '41orVa7m', '6097442'), + (97646, 1191, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', '41orVa7m', '6097684'), + (97647, 1191, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', '41orVa7m', '6098762'), + (97648, 1191, 2064, 'maybe', '2023-06-19 10:14:36', '2025-12-17 19:46:50', '41orVa7m', '6099988'), + (97649, 1191, 2065, 'attending', '2023-05-22 09:55:34', '2025-12-17 19:46:49', '41orVa7m', '6101169'), + (97650, 1191, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', '41orVa7m', '6101361'), + (97651, 1191, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', '41orVa7m', '6101362'), + (97652, 1191, 2068, 'not_attending', '2023-05-16 00:00:15', '2025-12-17 19:47:03', '41orVa7m', '6102837'), + (97653, 1191, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', '41orVa7m', '6107314'), + (97654, 1191, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', '41orVa7m', '6120034'), + (97655, 1191, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', '41orVa7m', '6136733'), + (97656, 1191, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', '41orVa7m', '6137989'), + (97657, 1191, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', '41orVa7m', '6150864'), + (97658, 1191, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', '41orVa7m', '6155491'), + (97659, 1191, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', '41orVa7m', '6164417'), + (97660, 1191, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', '41orVa7m', '6166388'), + (97661, 1191, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', '41orVa7m', '6176439'), + (97662, 1191, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', '41orVa7m', '6182410'), + (97663, 1191, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', '41orVa7m', '6185812'), + (97664, 1191, 2133, 'attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', '41orVa7m', '6187651'), + (97665, 1191, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', '41orVa7m', '6187963'), + (97666, 1191, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', '41orVa7m', '6187964'), + (97667, 1191, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', '41orVa7m', '6187966'), + (97668, 1191, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', '41orVa7m', '6187967'), + (97669, 1191, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', '41orVa7m', '6187969'), + (97670, 1191, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', '41orVa7m', '6334878'), + (97671, 1191, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', '41orVa7m', '6337236'), + (97672, 1191, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', '41orVa7m', '6337970'), + (97673, 1191, 2156, 'maybe', '2023-07-12 21:18:53', '2025-12-17 19:46:52', '41orVa7m', '6338308'), + (97674, 1191, 2160, 'attending', '2023-07-29 15:34:16', '2025-12-17 19:46:54', '41orVa7m', '6338358'), + (97675, 1191, 2162, 'not_attending', '2023-07-16 06:33:06', '2025-12-17 19:46:53', '41orVa7m', '6340845'), + (97676, 1191, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', '41orVa7m', '6341710'), + (97677, 1191, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', '41orVa7m', '6342044'), + (97678, 1191, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', '41orVa7m', '6342298'), + (97679, 1191, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', '41orVa7m', '6343294'), + (97680, 1191, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', '41orVa7m', '6347034'), + (97681, 1191, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', '41orVa7m', '6347056'), + (97682, 1191, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', '41orVa7m', '6353830'), + (97683, 1191, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', '41orVa7m', '6353831'), + (97684, 1191, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', '41orVa7m', '6357867'), + (97685, 1191, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', '41orVa7m', '6358652'), + (97686, 1191, 2204, 'attending', '2023-08-20 00:40:15', '2025-12-17 19:46:55', '41orVa7m', '6361542'), + (97687, 1191, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', '41orVa7m', '6361709'), + (97688, 1191, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', '41orVa7m', '6361710'), + (97689, 1191, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', '41orVa7m', '6361711'), + (97690, 1191, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', '41orVa7m', '6361712'), + (97691, 1191, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', '41orVa7m', '6361713'), + (97692, 1191, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', '41orVa7m', '6382573'), + (97693, 1191, 2239, 'attending', '2023-09-01 01:39:23', '2025-12-17 19:46:56', '41orVa7m', '6387592'), + (97694, 1191, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:44', '41orVa7m', '6388604'), + (97695, 1191, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', '41orVa7m', '6394629'), + (97696, 1191, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', '41orVa7m', '6394631'), + (97697, 1191, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', '41orVa7m', '6440863'), + (97698, 1191, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', '41orVa7m', '6445440'), + (97699, 1191, 2276, 'maybe', '2023-10-08 04:06:55', '2025-12-17 19:46:46', '41orVa7m', '6453951'), + (97700, 1191, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', '41orVa7m', '6461696'), + (97701, 1191, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', '41orVa7m', '6462129'), + (97702, 1191, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', '41orVa7m', '6463218'), + (97703, 1191, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', '41orVa7m', '6472181'), + (97704, 1191, 2304, 'attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', '41orVa7m', '6482693'), + (97705, 1191, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', '41orVa7m', '6484200'), + (97706, 1191, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', '41orVa7m', '6484680'), + (97707, 1191, 2310, 'attending', '2023-11-11 23:57:29', '2025-12-17 19:46:47', '41orVa7m', '6487709'), + (97708, 1191, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', '41orVa7m', '6507741'), + (97709, 1191, 2318, 'attending', '2023-10-31 18:41:47', '2025-12-17 19:46:47', '41orVa7m', '6508566'), + (97710, 1191, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', '41orVa7m', '6514659'), + (97711, 1191, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', '41orVa7m', '6514660'), + (97712, 1191, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', '41orVa7m', '6519103'), + (97713, 1191, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', '41orVa7m', '6535681'), + (97714, 1191, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', '41orVa7m', '6584747'), + (97715, 1191, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', '41orVa7m', '6587097'), + (97716, 1191, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', '41orVa7m', '6609022'), + (97717, 1191, 2370, 'maybe', '2023-12-13 12:46:48', '2025-12-17 19:46:36', '41orVa7m', '6623765'), + (97718, 1191, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', '41orVa7m', '6632757'), + (97719, 1191, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', '41orVa7m', '6644187'), + (97720, 1191, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', '41orVa7m', '6648951'), + (97721, 1191, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', '41orVa7m', '6648952'), + (97722, 1191, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', '41orVa7m', '6655401'), + (97723, 1191, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', '41orVa7m', '6661585'), + (97724, 1191, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', '41orVa7m', '6661588'), + (97725, 1191, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', '41orVa7m', '6661589'), + (97726, 1191, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', '41orVa7m', '6699906'), + (97727, 1191, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', '41orVa7m', '6699913'), + (97728, 1191, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', '41orVa7m', '6701109'), + (97729, 1191, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', '41orVa7m', '6705219'), + (97730, 1191, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', '41orVa7m', '6710153'), + (97731, 1191, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', '41orVa7m', '6711552'), + (97732, 1191, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', '41orVa7m', '6711553'), + (97733, 1191, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', '41orVa7m', '6722688'), + (97734, 1191, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', '41orVa7m', '6730620'), + (97735, 1191, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', '41orVa7m', '6730642'), + (97736, 1191, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', '41orVa7m', '6740364'), + (97737, 1191, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', '41orVa7m', '6743829'), + (97738, 1191, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', '41orVa7m', '7030380'), + (97739, 1191, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', '41orVa7m', '7033677'), + (97740, 1191, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', '41orVa7m', '7035415'), + (97741, 1191, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', '41orVa7m', '7074364'), + (97742, 1191, 2525, 'maybe', '2024-06-13 20:35:31', '2025-12-17 19:46:28', '41orVa7m', '7074365'), + (97743, 1191, 2529, 'maybe', '2024-05-23 01:42:36', '2025-12-17 19:46:35', '41orVa7m', '7074369'), + (97744, 1191, 2627, 'maybe', '2024-05-25 16:38:07', '2025-12-17 19:46:35', '41orVa7m', '7264724'), + (97745, 1191, 2628, 'maybe', '2024-06-01 21:20:43', '2025-12-17 19:46:36', '41orVa7m', '7264725'), + (97746, 1191, 2629, 'maybe', '2024-06-08 21:25:09', '2025-12-17 19:46:28', '41orVa7m', '7264726'), + (97747, 1191, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', '41orVa7m', '7302674'), + (97748, 1191, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', '41orVa7m', '7324073'), + (97749, 1191, 2689, 'maybe', '2024-06-28 13:27:41', '2025-12-17 19:46:29', '41orVa7m', '7324074'), + (97750, 1191, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', '41orVa7m', '7324075'), + (97751, 1191, 2691, 'maybe', '2024-07-18 11:20:59', '2025-12-17 19:46:30', '41orVa7m', '7324076'), + (97752, 1191, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', '41orVa7m', '7324078'), + (97753, 1191, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', '41orVa7m', '7324082'), + (97754, 1191, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', '41orVa7m', '7331457'), + (97755, 1191, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', '41orVa7m', '7356752'), + (97756, 1191, 2766, 'maybe', '2024-07-30 08:08:03', '2025-12-17 19:46:30', '41orVa7m', '7363643'), + (97757, 1191, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', '41orVa7m', '7368606'), + (97758, 1191, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', '41orVa7m', '7397462'), + (97759, 1191, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', '41orVa7m', '7424275'), + (97760, 1191, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', '41orVa7m', '7424276'), + (97761, 1191, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', '41orVa7m', '7432751'), + (97762, 1191, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', '41orVa7m', '7432752'), + (97763, 1191, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', '41orVa7m', '7432753'), + (97764, 1191, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', '41orVa7m', '7432754'), + (97765, 1191, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', '41orVa7m', '7432755'), + (97766, 1191, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', '41orVa7m', '7432756'), + (97767, 1191, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', '41orVa7m', '7432758'), + (97768, 1191, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', '41orVa7m', '7432759'), + (97769, 1191, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', '41orVa7m', '7433834'), + (97770, 1191, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', '41orVa7m', '7470197'), + (97771, 1191, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', '41orVa7m', '7685613'), + (97772, 1191, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', '41orVa7m', '7688194'), + (97773, 1191, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', '41orVa7m', '7688196'), + (97774, 1191, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', '41orVa7m', '7688289'), + (97775, 1191, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', '41orVa7m', '7692763'), + (97776, 1191, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', '41orVa7m', '7697552'), + (97777, 1191, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', '41orVa7m', '7699878'), + (97778, 1191, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', '41orVa7m', '7704043'), + (97779, 1191, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', '41orVa7m', '7712467'), + (97780, 1191, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', '41orVa7m', '7713585'), + (97781, 1191, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', '41orVa7m', '7713586'), + (97782, 1191, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', '41orVa7m', '7738518'), + (97783, 1191, 2962, 'not_attending', '2024-12-27 22:26:20', '2025-12-17 19:46:22', '41orVa7m', '7750632'), + (97784, 1191, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', '41orVa7m', '7750636'), + (97785, 1191, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', '41orVa7m', '7796540'), + (97786, 1191, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', '41orVa7m', '7796541'), + (97787, 1191, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', '41orVa7m', '7796542'), + (97788, 1192, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mLGq9Nwd', '6045684'), + (97789, 1193, 258, 'maybe', '2021-06-25 04:39:22', '2025-12-17 19:47:47', 'NmL3pO8d', '3149489'), + (97790, 1193, 262, 'attending', '2021-06-25 04:39:39', '2025-12-17 19:47:38', 'NmL3pO8d', '3149493'), + (97791, 1193, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'NmL3pO8d', '4021848'), + (97792, 1193, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'NmL3pO8d', '4136937'), + (97793, 1193, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'NmL3pO8d', '4136938'), + (97794, 1193, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'NmL3pO8d', '4225444'), + (97795, 1193, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'NmL3pO8d', '4229417'), + (97796, 1193, 892, 'not_attending', '2021-07-05 15:36:39', '2025-12-17 19:47:39', 'NmL3pO8d', '4229418'), + (97797, 1193, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'NmL3pO8d', '4239259'), + (97798, 1193, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'NmL3pO8d', '4250163'), + (97799, 1193, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'NmL3pO8d', '4275957'), + (97800, 1193, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'NmL3pO8d', '6045684'), + (97801, 1194, 262, 'not_attending', '2021-06-29 21:27:42', '2025-12-17 19:47:38', 'nm60xJ14', '3149493'); +INSERT INTO `calendar_events_signups` (`id`, `member_id`, `event_id`, `status`, `created_at`, `updated_at`, `guilded_member_id`, `guilded_event_id`) VALUES + (97802, 1194, 393, 'not_attending', '2021-06-18 03:21:30', '2025-12-17 19:47:38', 'nm60xJ14', '3236448'), + (97803, 1194, 823, 'not_attending', '2021-06-17 03:10:44', '2025-12-17 19:47:48', 'nm60xJ14', '3974109'), + (97804, 1194, 844, 'not_attending', '2021-06-17 15:28:12', '2025-12-17 19:47:38', 'nm60xJ14', '4014338'), + (97805, 1194, 867, 'not_attending', '2021-06-25 18:00:21', '2025-12-17 19:47:38', 'nm60xJ14', '4021848'), + (97806, 1194, 870, 'not_attending', '2021-06-30 04:41:56', '2025-12-17 19:47:39', 'nm60xJ14', '4136937'), + (97807, 1194, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', 'nm60xJ14', '4136938'), + (97808, 1194, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', 'nm60xJ14', '4136947'), + (97809, 1194, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', 'nm60xJ14', '4210314'), + (97810, 1194, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', 'nm60xJ14', '4225444'), + (97811, 1194, 891, 'not_attending', '2021-06-30 04:43:36', '2025-12-17 19:47:38', 'nm60xJ14', '4229417'), + (97812, 1194, 892, 'not_attending', '2021-07-06 23:01:50', '2025-12-17 19:47:39', 'nm60xJ14', '4229418'), + (97813, 1194, 893, 'not_attending', '2021-07-21 14:12:56', '2025-12-17 19:47:40', 'nm60xJ14', '4229420'), + (97814, 1194, 894, 'not_attending', '2021-07-20 13:17:32', '2025-12-17 19:47:40', 'nm60xJ14', '4229423'), + (97815, 1194, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', 'nm60xJ14', '4239259'), + (97816, 1194, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', 'nm60xJ14', '4240316'), + (97817, 1194, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', 'nm60xJ14', '4240317'), + (97818, 1194, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', 'nm60xJ14', '4240318'), + (97819, 1194, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', 'nm60xJ14', '4240320'), + (97820, 1194, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', 'nm60xJ14', '4250163'), + (97821, 1194, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', 'nm60xJ14', '4275957'), + (97822, 1194, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', 'nm60xJ14', '4277819'), + (97823, 1194, 923, 'not_attending', '2021-07-26 20:31:42', '2025-12-17 19:47:40', 'nm60xJ14', '4292773'), + (97824, 1194, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', 'nm60xJ14', '4301723'), + (97825, 1194, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', 'nm60xJ14', '4302093'), + (97826, 1194, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', 'nm60xJ14', '4304151'), + (97827, 1194, 940, 'not_attending', '2021-07-30 16:29:43', '2025-12-17 19:47:40', 'nm60xJ14', '4309049'), + (97828, 1194, 947, 'not_attending', '2021-07-30 16:30:41', '2025-12-17 19:47:41', 'nm60xJ14', '4315713'), + (97829, 1194, 948, 'not_attending', '2021-08-11 05:28:14', '2025-12-17 19:47:41', 'nm60xJ14', '4315714'), + (97830, 1194, 949, 'not_attending', '2021-08-15 06:57:10', '2025-12-17 19:47:42', 'nm60xJ14', '4315726'), + (97831, 1194, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', 'nm60xJ14', '4356801'), + (97832, 1194, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', 'nm60xJ14', '4366186'), + (97833, 1194, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', 'nm60xJ14', '4366187'), + (97834, 1194, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', 'nm60xJ14', '4420735'), + (97835, 1194, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', 'nm60xJ14', '4420738'), + (97836, 1194, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'nm60xJ14', '4420739'), + (97837, 1194, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', 'nm60xJ14', '4420741'), + (97838, 1194, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'nm60xJ14', '4420744'), + (97839, 1194, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'nm60xJ14', '4420747'), + (97840, 1194, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'nm60xJ14', '4420748'), + (97841, 1194, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'nm60xJ14', '4420749'), + (97842, 1194, 1054, 'maybe', '2022-03-19 17:32:22', '2025-12-17 19:47:25', 'nm60xJ14', '4496619'), + (97843, 1194, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'nm60xJ14', '4736497'), + (97844, 1194, 1177, 'attending', '2022-02-11 23:00:53', '2025-12-17 19:47:32', 'nm60xJ14', '4736499'), + (97845, 1194, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'nm60xJ14', '4736500'), + (97846, 1194, 1179, 'not_attending', '2022-02-16 16:03:33', '2025-12-17 19:47:32', 'nm60xJ14', '4736501'), + (97847, 1194, 1180, 'not_attending', '2022-02-27 00:46:27', '2025-12-17 19:47:33', 'nm60xJ14', '4736502'), + (97848, 1194, 1181, 'not_attending', '2022-02-27 00:46:44', '2025-12-17 19:47:33', 'nm60xJ14', '4736503'), + (97849, 1194, 1182, 'not_attending', '2022-03-11 00:05:18', '2025-12-17 19:47:33', 'nm60xJ14', '4736504'), + (97850, 1194, 1201, 'not_attending', '2022-01-21 00:15:15', '2025-12-17 19:47:32', 'nm60xJ14', '4766841'), + (97851, 1194, 1212, 'not_attending', '2022-01-27 21:37:57', '2025-12-17 19:47:32', 'nm60xJ14', '4780759'), + (97852, 1194, 1213, 'attending', '2022-01-27 21:38:20', '2025-12-17 19:47:32', 'nm60xJ14', '4780760'), + (97853, 1194, 1232, 'not_attending', '2022-02-09 22:29:44', '2025-12-17 19:47:32', 'nm60xJ14', '5038850'), + (97854, 1194, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'nm60xJ14', '5045826'), + (97855, 1194, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'nm60xJ14', '5132533'), + (97856, 1194, 1272, 'attending', '2022-03-19 17:32:15', '2025-12-17 19:47:25', 'nm60xJ14', '5186582'), + (97857, 1194, 1273, 'attending', '2022-03-25 15:28:32', '2025-12-17 19:47:25', 'nm60xJ14', '5186583'), + (97858, 1194, 1274, 'maybe', '2022-03-22 22:32:41', '2025-12-17 19:47:26', 'nm60xJ14', '5186585'), + (97859, 1194, 1281, 'not_attending', '2022-04-08 23:49:42', '2025-12-17 19:47:27', 'nm60xJ14', '5190437'), + (97860, 1194, 1284, 'not_attending', '2022-04-12 23:32:11', '2025-12-17 19:47:27', 'nm60xJ14', '5195095'), + (97861, 1194, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', 'nm60xJ14', '5215989'), + (97862, 1194, 1307, 'not_attending', '2022-04-04 21:15:56', '2025-12-17 19:47:26', 'nm60xJ14', '5223686'), + (97863, 1194, 1309, 'not_attending', '2022-04-06 03:42:57', '2025-12-17 19:47:26', 'nm60xJ14', '5227432'), + (97864, 1194, 1346, 'not_attending', '2022-04-23 17:50:40', '2025-12-17 19:47:27', 'nm60xJ14', '5247467'), + (97865, 1194, 1362, 'not_attending', '2022-04-27 19:03:56', '2025-12-17 19:47:28', 'nm60xJ14', '5260800'), + (97866, 1194, 1374, 'not_attending', '2022-05-07 23:06:13', '2025-12-17 19:47:28', 'nm60xJ14', '5269930'), + (97867, 1194, 1378, 'not_attending', '2022-05-13 12:43:18', '2025-12-17 19:47:29', 'nm60xJ14', '5271448'), + (97868, 1194, 1379, 'not_attending', '2022-05-21 22:33:18', '2025-12-17 19:47:30', 'nm60xJ14', '5271449'), + (97869, 1194, 1380, 'not_attending', '2022-05-30 01:18:36', '2025-12-17 19:47:30', 'nm60xJ14', '5271450'), + (97870, 1194, 1383, 'not_attending', '2022-05-04 00:15:41', '2025-12-17 19:47:28', 'nm60xJ14', '5276469'), + (97871, 1194, 1386, 'not_attending', '2022-05-06 20:12:20', '2025-12-17 19:47:28', 'nm60xJ14', '5278159'), + (97872, 1194, 1407, 'maybe', '2022-05-30 01:18:42', '2025-12-17 19:47:30', 'nm60xJ14', '5363695'), + (97873, 1194, 1408, 'not_attending', '2022-05-19 23:34:43', '2025-12-17 19:47:29', 'nm60xJ14', '5365960'), + (97874, 1194, 1415, 'not_attending', '2022-05-19 09:50:08', '2025-12-17 19:47:30', 'nm60xJ14', '5368973'), + (97875, 1194, 1428, 'not_attending', '2022-05-26 18:52:57', '2025-12-17 19:47:30', 'nm60xJ14', '5378247'), + (97876, 1194, 1431, 'not_attending', '2022-06-11 22:26:24', '2025-12-17 19:47:31', 'nm60xJ14', '5389605'), + (97877, 1194, 1442, 'not_attending', '2022-06-18 22:45:43', '2025-12-17 19:47:17', 'nm60xJ14', '5397265'), + (97878, 1194, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'nm60xJ14', '5403967'), + (97879, 1194, 1458, 'not_attending', '2022-06-10 00:37:45', '2025-12-17 19:47:17', 'nm60xJ14', '5404786'), + (97880, 1194, 1462, 'not_attending', '2022-06-10 17:55:10', '2025-12-17 19:47:17', 'nm60xJ14', '5405203'), + (97881, 1194, 1478, 'not_attending', '2022-06-15 01:11:11', '2025-12-17 19:47:17', 'nm60xJ14', '5408794'), + (97882, 1194, 1480, 'not_attending', '2022-06-21 20:03:17', '2025-12-17 19:47:19', 'nm60xJ14', '5411699'), + (97883, 1194, 1482, 'not_attending', '2022-06-20 01:52:41', '2025-12-17 19:47:19', 'nm60xJ14', '5412550'), + (97884, 1194, 1484, 'not_attending', '2022-06-20 20:40:32', '2025-12-17 19:47:17', 'nm60xJ14', '5415046'), + (97885, 1194, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'nm60xJ14', '5422086'), + (97886, 1194, 1498, 'not_attending', '2022-07-02 22:45:40', '2025-12-17 19:47:19', 'nm60xJ14', '5422406'), + (97887, 1194, 1502, 'not_attending', '2022-07-08 20:11:14', '2025-12-17 19:47:19', 'nm60xJ14', '5424565'), + (97888, 1194, 1504, 'not_attending', '2022-07-12 23:20:10', '2025-12-17 19:47:19', 'nm60xJ14', '5426882'), + (97889, 1194, 1505, 'not_attending', '2022-07-04 20:50:21', '2025-12-17 19:47:19', 'nm60xJ14', '5427083'), + (97890, 1194, 1511, 'not_attending', '2022-07-06 23:39:28', '2025-12-17 19:47:19', 'nm60xJ14', '5437733'), + (97891, 1194, 1513, 'not_attending', '2022-07-09 06:08:33', '2025-12-17 19:47:19', 'nm60xJ14', '5441125'), + (97892, 1194, 1514, 'not_attending', '2022-07-22 21:36:38', '2025-12-17 19:47:20', 'nm60xJ14', '5441126'), + (97893, 1194, 1515, 'not_attending', '2022-08-03 21:17:14', '2025-12-17 19:47:21', 'nm60xJ14', '5441128'), + (97894, 1194, 1518, 'not_attending', '2022-09-01 19:21:25', '2025-12-17 19:47:24', 'nm60xJ14', '5441131'), + (97895, 1194, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'nm60xJ14', '5441132'), + (97896, 1194, 1528, 'not_attending', '2022-07-13 22:34:48', '2025-12-17 19:47:20', 'nm60xJ14', '5446643'), + (97897, 1194, 1534, 'not_attending', '2022-08-03 21:17:11', '2025-12-17 19:47:21', 'nm60xJ14', '5448759'), + (97898, 1194, 1540, 'not_attending', '2022-07-22 21:36:12', '2025-12-17 19:47:20', 'nm60xJ14', '5453325'), + (97899, 1194, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'nm60xJ14', '5454516'), + (97900, 1194, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'nm60xJ14', '5454605'), + (97901, 1194, 1546, 'not_attending', '2022-07-25 19:41:54', '2025-12-17 19:47:20', 'nm60xJ14', '5454607'), + (97902, 1194, 1547, 'maybe', '2022-07-24 18:43:22', '2025-12-17 19:47:20', 'nm60xJ14', '5454608'), + (97903, 1194, 1551, 'not_attending', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'nm60xJ14', '5455037'), + (97904, 1194, 1561, 'not_attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'nm60xJ14', '5461278'), + (97905, 1194, 1562, 'not_attending', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'nm60xJ14', '5469480'), + (97906, 1194, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'nm60xJ14', '5471073'), + (97907, 1194, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'nm60xJ14', '5474663'), + (97908, 1194, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'nm60xJ14', '5482022'), + (97909, 1194, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'nm60xJ14', '5482793'), + (97910, 1194, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'nm60xJ14', '5488912'), + (97911, 1194, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'nm60xJ14', '5492192'), + (97912, 1194, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'nm60xJ14', '5493139'), + (97913, 1194, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'nm60xJ14', '5493200'), + (97914, 1194, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'nm60xJ14', '5502188'), + (97915, 1194, 1608, 'not_attending', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'nm60xJ14', '5505059'), + (97916, 1194, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'nm60xJ14', '5509055'), + (97917, 1194, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'nm60xJ14', '5512862'), + (97918, 1194, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'nm60xJ14', '5513985'), + (97919, 1194, 1626, 'not_attending', '2022-08-26 18:42:53', '2025-12-17 19:47:11', 'nm60xJ14', '5519981'), + (97920, 1194, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'nm60xJ14', '5522550'), + (97921, 1194, 1630, 'not_attending', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'nm60xJ14', '5534683'), + (97922, 1194, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:11', 'nm60xJ14', '5537735'), + (97923, 1194, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'nm60xJ14', '5540859'), + (97924, 1194, 1646, 'not_attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'nm60xJ14', '5546619'), + (97925, 1194, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'nm60xJ14', '5557747'), + (97926, 1194, 1662, 'not_attending', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'nm60xJ14', '5560255'), + (97927, 1194, 1664, 'not_attending', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'nm60xJ14', '5562906'), + (97928, 1194, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'nm60xJ14', '5600604'), + (97929, 1194, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'nm60xJ14', '5605544'), + (97930, 1194, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'nm60xJ14', '5630960'), + (97931, 1194, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'nm60xJ14', '5630961'), + (97932, 1194, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'nm60xJ14', '5630962'), + (97933, 1194, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'nm60xJ14', '5630966'), + (97934, 1194, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'nm60xJ14', '5630967'), + (97935, 1194, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'nm60xJ14', '5630968'), + (97936, 1194, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'nm60xJ14', '5635406'), + (97937, 1194, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'nm60xJ14', '5638765'), + (97938, 1194, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'nm60xJ14', '5640097'), + (97939, 1194, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'nm60xJ14', '5640843'), + (97940, 1194, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'nm60xJ14', '5641521'), + (97941, 1194, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'nm60xJ14', '5642818'), + (97942, 1194, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'nm60xJ14', '5652395'), + (97943, 1194, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'nm60xJ14', '5670445'), + (97944, 1194, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'nm60xJ14', '5671637'), + (97945, 1194, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'nm60xJ14', '5672329'), + (97946, 1194, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'nm60xJ14', '5674057'), + (97947, 1194, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'nm60xJ14', '5674060'), + (97948, 1194, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'nm60xJ14', '5677461'), + (97949, 1194, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'nm60xJ14', '5698046'), + (97950, 1194, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'nm60xJ14', '5699760'), + (97951, 1194, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'nm60xJ14', '5741601'), + (97952, 1194, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'nm60xJ14', '5763458'), + (97953, 1194, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'nm60xJ14', '5774172'), + (97954, 1194, 1832, 'not_attending', '2022-12-03 19:12:58', '2025-12-17 19:47:16', 'nm60xJ14', '5818247'), + (97955, 1194, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'nm60xJ14', '5819471'), + (97956, 1194, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'nm60xJ14', '5827739'), + (97957, 1194, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'nm60xJ14', '5844306'), + (97958, 1194, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'nm60xJ14', '5850159'), + (97959, 1194, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'nm60xJ14', '5858999'), + (97960, 1194, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'nm60xJ14', '5871984'), + (97961, 1194, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'nm60xJ14', '5876354'), + (97962, 1194, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:06', 'nm60xJ14', '5880939'), + (97963, 1194, 1867, 'not_attending', '2023-02-07 18:02:50', '2025-12-17 19:47:07', 'nm60xJ14', '5880940'), + (97964, 1194, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', 'nm60xJ14', '5880942'), + (97965, 1194, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'nm60xJ14', '5880943'), + (97966, 1194, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'nm60xJ14', '5887890'), + (97967, 1194, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'nm60xJ14', '5888598'), + (97968, 1194, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'nm60xJ14', '5893260'), + (97969, 1194, 1884, 'not_attending', '2023-01-30 21:30:17', '2025-12-17 19:47:06', 'nm60xJ14', '5899826'), + (97970, 1194, 1889, 'not_attending', '2023-02-07 18:01:42', '2025-12-17 19:47:07', 'nm60xJ14', '5900199'), + (97971, 1194, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', 'nm60xJ14', '5900200'), + (97972, 1194, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'nm60xJ14', '5900202'), + (97973, 1194, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'nm60xJ14', '5900203'), + (97974, 1194, 1895, 'not_attending', '2023-02-01 01:46:10', '2025-12-17 19:47:06', 'nm60xJ14', '5901108'), + (97975, 1194, 1896, 'not_attending', '2023-01-31 21:44:01', '2025-12-17 19:47:06', 'nm60xJ14', '5901126'), + (97976, 1194, 1910, 'not_attending', '2023-02-11 04:40:24', '2025-12-17 19:47:07', 'nm60xJ14', '5909655'), + (97977, 1194, 1915, 'not_attending', '2023-02-07 17:54:51', '2025-12-17 19:47:07', 'nm60xJ14', '5910522'), + (97978, 1194, 1916, 'not_attending', '2023-02-08 01:07:47', '2025-12-17 19:47:08', 'nm60xJ14', '5910526'), + (97979, 1194, 1917, 'not_attending', '2023-02-08 01:08:03', '2025-12-17 19:47:10', 'nm60xJ14', '5910528'), + (97980, 1194, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', 'nm60xJ14', '5916219'), + (97981, 1194, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', 'nm60xJ14', '5936234'), + (97982, 1194, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', 'nm60xJ14', '5958351'), + (97983, 1194, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', 'nm60xJ14', '5959751'), + (97984, 1194, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', 'nm60xJ14', '5959755'), + (97985, 1194, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', 'nm60xJ14', '5960055'), + (97986, 1194, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', 'nm60xJ14', '5961684'), + (97987, 1194, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', 'nm60xJ14', '5962132'), + (97988, 1194, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', 'nm60xJ14', '5962133'), + (97989, 1194, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', 'nm60xJ14', '5962134'), + (97990, 1194, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'nm60xJ14', '5962317'), + (97991, 1194, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'nm60xJ14', '5962318'), + (97992, 1194, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'nm60xJ14', '5965933'), + (97993, 1194, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'nm60xJ14', '5967014'), + (97994, 1194, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'nm60xJ14', '5972815'), + (97995, 1194, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'nm60xJ14', '5974016'), + (97996, 1194, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'nm60xJ14', '5981515'), + (97997, 1194, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'nm60xJ14', '5993516'), + (97998, 1194, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'nm60xJ14', '5998939'), + (97999, 1194, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'nm60xJ14', '6028191'), + (98000, 1194, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'nm60xJ14', '6040066'), + (98001, 1194, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'nm60xJ14', '6042717'), + (98002, 1194, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'nm60xJ14', '6044838'), + (98003, 1194, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'nm60xJ14', '6044839'), + (98004, 1194, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'nm60xJ14', '6045684'), + (98005, 1194, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'nm60xJ14', '6050104'), + (98006, 1194, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'nm60xJ14', '6053195'), + (98007, 1194, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'nm60xJ14', '6053198'), + (98008, 1194, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'nm60xJ14', '6056085'), + (98009, 1194, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'nm60xJ14', '6056916'), + (98010, 1194, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'nm60xJ14', '6059290'), + (98011, 1194, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'nm60xJ14', '6060328'), + (98012, 1194, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'nm60xJ14', '6061037'), + (98013, 1194, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'nm60xJ14', '6061039'), + (98014, 1194, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'nm60xJ14', '6067245'), + (98015, 1194, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'nm60xJ14', '6068094'), + (98016, 1194, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'nm60xJ14', '6068252'), + (98017, 1194, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'nm60xJ14', '6068253'), + (98018, 1194, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'nm60xJ14', '6068254'), + (98019, 1194, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'nm60xJ14', '6068280'), + (98020, 1194, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'nm60xJ14', '6069093'), + (98021, 1194, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:02', 'nm60xJ14', '6072528'), + (98022, 1194, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'nm60xJ14', '6079840'), + (98023, 1194, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'nm60xJ14', '6083398'), + (98024, 1194, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'nm60xJ14', '6093504'), + (98025, 1194, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'nm60xJ14', '6097414'), + (98026, 1194, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'nm60xJ14', '6097442'), + (98027, 1194, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'nm60xJ14', '6097684'), + (98028, 1194, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'nm60xJ14', '6098762'), + (98029, 1194, 2066, 'not_attending', '2023-06-04 17:58:22', '2025-12-17 19:47:04', 'nm60xJ14', '6101361'), + (98030, 1194, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'nm60xJ14', '6101362'), + (98031, 1194, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'nm60xJ14', '6107314'), + (98032, 1194, 2087, 'not_attending', '2023-05-31 17:35:44', '2025-12-17 19:47:04', 'nm60xJ14', '6120034'), + (98033, 1194, 2095, 'not_attending', '2023-06-05 20:05:56', '2025-12-17 19:46:51', 'nm60xJ14', '6136733'), + (98034, 1194, 2096, 'not_attending', '2023-06-06 18:57:02', '2025-12-17 19:47:04', 'nm60xJ14', '6137989'), + (98035, 1194, 2108, 'not_attending', '2023-06-18 16:56:52', '2025-12-17 19:46:50', 'nm60xJ14', '6150864'), + (98036, 1194, 2110, 'not_attending', '2023-06-21 09:00:29', '2025-12-17 19:46:50', 'nm60xJ14', '6155491'), + (98037, 1194, 2118, 'not_attending', '2023-06-25 18:24:17', '2025-12-17 19:46:50', 'nm60xJ14', '6164417'), + (98038, 1194, 2120, 'not_attending', '2023-06-26 21:35:48', '2025-12-17 19:46:50', 'nm60xJ14', '6166388'), + (98039, 1194, 2121, 'not_attending', '2023-06-29 07:44:16', '2025-12-17 19:46:50', 'nm60xJ14', '6176439'), + (98040, 1194, 2128, 'not_attending', '2023-07-02 18:20:38', '2025-12-17 19:46:51', 'nm60xJ14', '6182410'), + (98041, 1194, 2131, 'not_attending', '2023-07-05 08:56:00', '2025-12-17 19:46:51', 'nm60xJ14', '6185812'), + (98042, 1194, 2133, 'not_attending', '2023-07-06 16:56:57', '2025-12-17 19:46:51', 'nm60xJ14', '6187651'), + (98043, 1194, 2134, 'not_attending', '2023-07-06 21:11:08', '2025-12-17 19:46:52', 'nm60xJ14', '6187963'), + (98044, 1194, 2135, 'not_attending', '2023-07-06 21:12:18', '2025-12-17 19:46:52', 'nm60xJ14', '6187964'), + (98045, 1194, 2136, 'not_attending', '2023-07-06 21:12:38', '2025-12-17 19:46:53', 'nm60xJ14', '6187966'), + (98046, 1194, 2137, 'not_attending', '2023-07-06 21:13:18', '2025-12-17 19:46:54', 'nm60xJ14', '6187967'), + (98047, 1194, 2138, 'not_attending', '2023-07-06 21:21:10', '2025-12-17 19:46:52', 'nm60xJ14', '6187969'), + (98048, 1194, 2144, 'not_attending', '2023-07-08 22:23:51', '2025-12-17 19:46:52', 'nm60xJ14', '6334878'), + (98049, 1194, 2153, 'not_attending', '2023-07-17 02:03:21', '2025-12-17 19:46:53', 'nm60xJ14', '6337236'), + (98050, 1194, 2155, 'not_attending', '2023-07-19 09:23:34', '2025-12-17 19:46:53', 'nm60xJ14', '6337970'), + (98051, 1194, 2156, 'not_attending', '2023-07-12 21:18:53', '2025-12-17 19:46:52', 'nm60xJ14', '6338308'), + (98052, 1194, 2163, 'not_attending', '2023-07-16 20:05:18', '2025-12-17 19:46:52', 'nm60xJ14', '6341710'), + (98053, 1194, 2165, 'not_attending', '2023-08-02 19:54:22', '2025-12-17 19:46:54', 'nm60xJ14', '6342044'), + (98054, 1194, 2167, 'not_attending', '2023-07-17 19:05:55', '2025-12-17 19:46:53', 'nm60xJ14', '6342298'), + (98055, 1194, 2174, 'not_attending', '2023-07-23 07:35:09', '2025-12-17 19:46:54', 'nm60xJ14', '6343294'), + (98056, 1194, 2176, 'not_attending', '2023-07-23 07:36:47', '2025-12-17 19:46:54', 'nm60xJ14', '6347034'), + (98057, 1194, 2178, 'not_attending', '2023-07-23 07:38:55', '2025-12-17 19:46:53', 'nm60xJ14', '6347056'), + (98058, 1194, 2185, 'not_attending', '2023-07-29 19:45:48', '2025-12-17 19:46:54', 'nm60xJ14', '6353830'), + (98059, 1194, 2186, 'not_attending', '2023-07-29 19:46:46', '2025-12-17 19:46:54', 'nm60xJ14', '6353831'), + (98060, 1194, 2189, 'not_attending', '2023-08-02 15:51:01', '2025-12-17 19:46:54', 'nm60xJ14', '6357867'), + (98061, 1194, 2191, 'not_attending', '2023-08-03 22:57:36', '2025-12-17 19:46:54', 'nm60xJ14', '6358652'), + (98062, 1194, 2208, 'not_attending', '2023-08-09 16:13:53', '2025-12-17 19:46:54', 'nm60xJ14', '6361709'), + (98063, 1194, 2209, 'not_attending', '2023-08-23 15:25:19', '2025-12-17 19:46:55', 'nm60xJ14', '6361710'), + (98064, 1194, 2210, 'not_attending', '2023-08-30 00:05:12', '2025-12-17 19:46:55', 'nm60xJ14', '6361711'), + (98065, 1194, 2211, 'not_attending', '2023-08-18 10:13:16', '2025-12-17 19:46:55', 'nm60xJ14', '6361712'), + (98066, 1194, 2212, 'not_attending', '2023-09-28 20:38:29', '2025-12-17 19:46:45', 'nm60xJ14', '6361713'), + (98067, 1194, 2235, 'not_attending', '2023-08-25 15:08:52', '2025-12-17 19:46:55', 'nm60xJ14', '6382573'), + (98068, 1194, 2241, 'not_attending', '2023-09-10 14:38:32', '2025-12-17 19:46:45', 'nm60xJ14', '6388604'), + (98069, 1194, 2248, 'not_attending', '2023-09-13 01:12:28', '2025-12-17 19:46:44', 'nm60xJ14', '6394629'), + (98070, 1194, 2250, 'not_attending', '2023-09-26 16:29:06', '2025-12-17 19:46:45', 'nm60xJ14', '6394631'), + (98071, 1194, 2268, 'not_attending', '2023-10-01 02:59:44', '2025-12-17 19:46:45', 'nm60xJ14', '6440863'), + (98072, 1194, 2272, 'not_attending', '2023-10-03 01:31:44', '2025-12-17 19:46:45', 'nm60xJ14', '6445440'), + (98073, 1194, 2276, 'not_attending', '2023-10-08 04:06:55', '2025-12-17 19:46:46', 'nm60xJ14', '6453951'), + (98074, 1194, 2287, 'not_attending', '2023-10-10 23:22:31', '2025-12-17 19:46:46', 'nm60xJ14', '6461696'), + (98075, 1194, 2289, 'not_attending', '2023-10-11 05:27:57', '2025-12-17 19:46:46', 'nm60xJ14', '6462129'), + (98076, 1194, 2293, 'not_attending', '2023-10-11 22:08:03', '2025-12-17 19:46:46', 'nm60xJ14', '6463218'), + (98077, 1194, 2299, 'not_attending', '2023-10-21 02:10:40', '2025-12-17 19:46:46', 'nm60xJ14', '6472181'), + (98078, 1194, 2304, 'not_attending', '2023-11-01 04:45:59', '2025-12-17 19:46:47', 'nm60xJ14', '6482693'), + (98079, 1194, 2306, 'not_attending', '2023-11-15 19:57:27', '2025-12-17 19:46:47', 'nm60xJ14', '6484200'), + (98080, 1194, 2307, 'not_attending', '2023-10-22 18:40:49', '2025-12-17 19:46:47', 'nm60xJ14', '6484680'), + (98081, 1194, 2317, 'not_attending', '2023-10-29 20:18:30', '2025-12-17 19:46:47', 'nm60xJ14', '6507741'), + (98082, 1194, 2322, 'not_attending', '2023-11-18 21:07:53', '2025-12-17 19:46:48', 'nm60xJ14', '6514659'), + (98083, 1194, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'nm60xJ14', '6514660'), + (98084, 1194, 2333, 'not_attending', '2023-11-07 22:37:34', '2025-12-17 19:46:47', 'nm60xJ14', '6519103'), + (98085, 1194, 2337, 'not_attending', '2023-11-09 04:23:31', '2025-12-17 19:46:48', 'nm60xJ14', '6535681'), + (98086, 1194, 2351, 'not_attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'nm60xJ14', '6584747'), + (98087, 1194, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'nm60xJ14', '6587097'), + (98088, 1194, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'nm60xJ14', '6609022'), + (98089, 1194, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'nm60xJ14', '6632757'), + (98090, 1194, 2376, 'maybe', '2024-01-03 16:10:54', '2025-12-17 19:46:40', 'nm60xJ14', '6642900'), + (98091, 1194, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'nm60xJ14', '6644187'), + (98092, 1194, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'nm60xJ14', '6648951'), + (98093, 1194, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'nm60xJ14', '6648952'), + (98094, 1194, 2388, 'maybe', '2024-01-03 16:10:39', '2025-12-17 19:46:37', 'nm60xJ14', '6649244'), + (98095, 1194, 2391, 'not_attending', '2024-01-11 17:41:46', '2025-12-17 19:46:37', 'nm60xJ14', '6654138'), + (98096, 1194, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'nm60xJ14', '6655401'), + (98097, 1194, 2399, 'not_attending', '2024-01-11 17:41:49', '2025-12-17 19:46:38', 'nm60xJ14', '6657583'), + (98098, 1194, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'nm60xJ14', '6661585'), + (98099, 1194, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'nm60xJ14', '6661588'), + (98100, 1194, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'nm60xJ14', '6661589'), + (98101, 1194, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'nm60xJ14', '6699906'), + (98102, 1194, 2408, 'not_attending', '2024-01-27 17:21:42', '2025-12-17 19:46:40', 'nm60xJ14', '6699907'), + (98103, 1194, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'nm60xJ14', '6699913'), + (98104, 1194, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'nm60xJ14', '6701109'), + (98105, 1194, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'nm60xJ14', '6705219'), + (98106, 1194, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'nm60xJ14', '6710153'), + (98107, 1194, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'nm60xJ14', '6711552'), + (98108, 1194, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'nm60xJ14', '6711553'), + (98109, 1194, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'nm60xJ14', '6722688'), + (98110, 1194, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'nm60xJ14', '6730620'), + (98111, 1194, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'nm60xJ14', '6740364'), + (98112, 1194, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'nm60xJ14', '6743829'), + (98113, 1194, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'nm60xJ14', '7030380'), + (98114, 1194, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'nm60xJ14', '7033677'), + (98115, 1194, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'nm60xJ14', '7044715'), + (98116, 1194, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'nm60xJ14', '7050318'), + (98117, 1194, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'nm60xJ14', '7050319'), + (98118, 1194, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'nm60xJ14', '7050322'), + (98119, 1194, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'nm60xJ14', '7057804'), + (98120, 1194, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'nm60xJ14', '7072824'), + (98121, 1194, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'nm60xJ14', '7074348'), + (98122, 1194, 2524, 'not_attending', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'nm60xJ14', '7074364'), + (98123, 1194, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'nm60xJ14', '7089267'), + (98124, 1194, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'nm60xJ14', '7098747'), + (98125, 1194, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'nm60xJ14', '7113468'), + (98126, 1194, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'nm60xJ14', '7114856'), + (98127, 1194, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'nm60xJ14', '7114951'), + (98128, 1194, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'nm60xJ14', '7114955'), + (98129, 1194, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'nm60xJ14', '7114956'), + (98130, 1194, 2558, 'not_attending', '2024-05-02 20:34:31', '2025-12-17 19:46:35', 'nm60xJ14', '7114957'), + (98131, 1194, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'nm60xJ14', '7159484'), + (98132, 1194, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'nm60xJ14', '7178446'), + (98133, 1194, 2602, 'not_attending', '2024-04-26 04:43:39', '2025-12-17 19:46:34', 'nm60xJ14', '7220467'), + (98134, 1194, 2609, 'not_attending', '2024-05-07 00:52:15', '2025-12-17 19:46:35', 'nm60xJ14', '7240354'), + (98135, 1194, 2617, 'not_attending', '2024-05-03 19:12:43', '2025-12-17 19:46:35', 'nm60xJ14', '7251633'), + (98136, 1194, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'nm60xJ14', '7324073'), + (98137, 1194, 2689, 'not_attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'nm60xJ14', '7324074'), + (98138, 1194, 2690, 'not_attending', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'nm60xJ14', '7324075'), + (98139, 1194, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'nm60xJ14', '7324078'), + (98140, 1194, 2697, 'not_attending', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'nm60xJ14', '7324082'), + (98141, 1194, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:30', 'nm60xJ14', '7331457'), + (98142, 1194, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:31', 'nm60xJ14', '7363643'), + (98143, 1194, 2774, 'not_attending', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'nm60xJ14', '7368606'), + (98144, 1194, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'nm60xJ14', '7397462'), + (98145, 1194, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'nm60xJ14', '7424275'), + (98146, 1194, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'nm60xJ14', '7432751'), + (98147, 1194, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'nm60xJ14', '7432752'), + (98148, 1194, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'nm60xJ14', '7432753'), + (98149, 1194, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'nm60xJ14', '7432754'), + (98150, 1194, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'nm60xJ14', '7432755'), + (98151, 1194, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'nm60xJ14', '7432756'), + (98152, 1194, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'nm60xJ14', '7432758'), + (98153, 1194, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'nm60xJ14', '7432759'), + (98154, 1194, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'nm60xJ14', '7433834'), + (98155, 1194, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'nm60xJ14', '7470197'), + (98156, 1194, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'nm60xJ14', '7685613'), + (98157, 1194, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'nm60xJ14', '7688194'), + (98158, 1194, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'nm60xJ14', '7688196'), + (98159, 1194, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'nm60xJ14', '7688289'), + (98160, 1194, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'nm60xJ14', '7692763'), + (98161, 1194, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'nm60xJ14', '7697552'), + (98162, 1194, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'nm60xJ14', '7699878'), + (98163, 1194, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'nm60xJ14', '7704043'), + (98164, 1194, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'nm60xJ14', '7712467'), + (98165, 1194, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'nm60xJ14', '7713585'), + (98166, 1194, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'nm60xJ14', '7713586'), + (98167, 1194, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'nm60xJ14', '7738518'), + (98168, 1194, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'nm60xJ14', '7750636'), + (98169, 1194, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'nm60xJ14', '7796540'), + (98170, 1194, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'nm60xJ14', '7796541'), + (98171, 1194, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'nm60xJ14', '7796542'), + (98172, 1194, 2979, 'not_attending', '2025-01-28 22:22:30', '2025-12-17 19:46:23', 'nm60xJ14', '7825913'), + (98173, 1194, 2982, 'not_attending', '2025-01-30 00:18:21', '2025-12-17 19:46:23', 'nm60xJ14', '7826209'), + (98174, 1194, 2985, 'not_attending', '2025-02-03 21:29:08', '2025-12-17 19:46:23', 'nm60xJ14', '7834742'), + (98175, 1194, 2989, 'not_attending', '2025-02-10 19:52:02', '2025-12-17 19:46:24', 'nm60xJ14', '7842108'), + (98176, 1194, 2991, 'not_attending', '2025-02-11 04:06:46', '2025-12-17 19:46:24', 'nm60xJ14', '7842902'), + (98177, 1194, 2992, 'not_attending', '2025-02-11 04:06:54', '2025-12-17 19:46:24', 'nm60xJ14', '7842903'), + (98178, 1194, 2993, 'not_attending', '2025-02-11 04:07:20', '2025-12-17 19:46:19', 'nm60xJ14', '7842904'), + (98179, 1194, 2994, 'not_attending', '2025-02-11 04:07:07', '2025-12-17 19:46:18', 'nm60xJ14', '7842905'), + (98180, 1194, 3006, 'not_attending', '2025-02-19 23:28:57', '2025-12-17 19:46:24', 'nm60xJ14', '7855719'), + (98181, 1194, 3007, 'not_attending', '2025-02-25 05:45:56', '2025-12-17 19:46:24', 'nm60xJ14', '7860683'), + (98182, 1194, 3008, 'not_attending', '2025-02-25 05:46:10', '2025-12-17 19:46:24', 'nm60xJ14', '7860684'), + (98183, 1194, 3012, 'not_attending', '2025-03-02 04:03:25', '2025-12-17 19:46:19', 'nm60xJ14', '7866095'), + (98184, 1194, 3013, 'not_attending', '2025-03-06 15:49:27', '2025-12-17 19:46:18', 'nm60xJ14', '7869170'), + (98185, 1194, 3017, 'not_attending', '2025-03-26 02:50:59', '2025-12-17 19:46:19', 'nm60xJ14', '7869188'), + (98186, 1194, 3029, 'not_attending', '2025-03-04 04:08:46', '2025-12-17 19:46:18', 'nm60xJ14', '7869201'), + (98187, 1194, 3033, 'not_attending', '2025-03-11 05:12:23', '2025-12-17 19:46:19', 'nm60xJ14', '7877465'), + (98188, 1194, 3056, 'not_attending', '2025-03-21 15:24:23', '2025-12-17 19:46:19', 'nm60xJ14', '7888250'), + (98189, 1194, 3088, 'not_attending', '2025-06-13 21:53:52', '2025-12-17 19:46:15', 'nm60xJ14', '7904777'), + (98190, 1194, 3104, 'not_attending', '2025-04-26 23:29:50', '2025-12-17 19:46:15', 'nm60xJ14', '8349164'), + (98191, 1194, 3105, 'not_attending', '2025-04-27 02:03:52', '2025-12-17 19:46:15', 'nm60xJ14', '8349545'), + (98192, 1194, 3131, 'not_attending', '2025-05-15 16:38:56', '2025-12-17 19:46:21', 'nm60xJ14', '8368028'), + (98193, 1194, 3132, 'not_attending', '2025-05-19 22:18:13', '2025-12-17 19:46:21', 'nm60xJ14', '8368029'), + (98194, 1194, 3143, 'not_attending', '2025-05-28 03:43:08', '2025-12-17 19:46:21', 'nm60xJ14', '8388462'), + (98195, 1194, 3153, 'not_attending', '2025-06-03 21:32:29', '2025-12-17 19:46:15', 'nm60xJ14', '8400273'), + (98196, 1194, 3155, 'not_attending', '2025-06-28 22:13:43', '2025-12-17 19:46:16', 'nm60xJ14', '8400275'), + (98197, 1194, 3156, 'not_attending', '2025-06-28 22:14:02', '2025-12-17 19:46:16', 'nm60xJ14', '8400276'), + (98198, 1194, 3169, 'not_attending', '2025-06-10 19:45:08', '2025-12-17 19:46:15', 'nm60xJ14', '8404977'), + (98199, 1194, 3181, 'not_attending', '2025-06-29 02:55:54', '2025-12-17 19:46:16', 'nm60xJ14', '8430783'), + (98200, 1194, 3182, 'not_attending', '2025-06-29 02:56:00', '2025-12-17 19:46:16', 'nm60xJ14', '8430784'), + (98201, 1194, 3183, 'not_attending', '2025-06-29 02:56:10', '2025-12-17 19:46:17', 'nm60xJ14', '8430799'), + (98202, 1194, 3184, 'not_attending', '2025-06-29 02:56:22', '2025-12-17 19:46:17', 'nm60xJ14', '8430800'), + (98203, 1194, 3185, 'not_attending', '2025-06-29 02:56:29', '2025-12-17 19:46:17', 'nm60xJ14', '8430801'), + (98204, 1194, 3188, 'not_attending', '2025-07-15 19:55:02', '2025-12-17 19:46:17', 'nm60xJ14', '8438709'), + (98205, 1194, 3193, 'not_attending', '2025-07-17 22:37:28', '2025-12-17 19:46:17', 'nm60xJ14', '8457738'), + (98206, 1194, 3200, 'not_attending', '2025-07-20 03:17:06', '2025-12-17 19:46:17', 'nm60xJ14', '8459566'), + (98207, 1194, 3201, 'not_attending', '2025-07-20 03:17:12', '2025-12-17 19:46:17', 'nm60xJ14', '8459567'), + (98208, 1194, 3203, 'not_attending', '2025-07-20 03:17:23', '2025-12-17 19:46:17', 'nm60xJ14', '8461032'), + (98209, 1194, 3214, 'not_attending', '2025-08-05 06:25:53', '2025-12-17 19:46:17', 'nm60xJ14', '8477877'), + (98210, 1194, 3233, 'not_attending', '2025-08-12 12:51:17', '2025-12-17 19:46:18', 'nm60xJ14', '8485688'), + (98211, 1194, 3235, 'not_attending', '2025-08-19 19:30:29', '2025-12-17 19:46:18', 'nm60xJ14', '8490587'), + (98212, 1194, 3236, 'not_attending', '2025-08-19 19:29:52', '2025-12-17 19:46:18', 'nm60xJ14', '8493552'), + (98213, 1194, 3237, 'not_attending', '2025-08-19 19:30:19', '2025-12-17 19:46:11', 'nm60xJ14', '8493553'), + (98214, 1194, 3238, 'not_attending', '2025-08-19 19:30:06', '2025-12-17 19:46:11', 'nm60xJ14', '8493554'), + (98215, 1194, 3239, 'not_attending', '2025-08-19 19:31:39', '2025-12-17 19:46:12', 'nm60xJ14', '8493555'), + (98216, 1194, 3240, 'not_attending', '2025-08-19 19:33:48', '2025-12-17 19:46:12', 'nm60xJ14', '8493556'), + (98217, 1194, 3241, 'not_attending', '2025-08-19 19:37:40', '2025-12-17 19:46:13', 'nm60xJ14', '8493557'), + (98218, 1194, 3242, 'not_attending', '2025-08-19 19:38:08', '2025-12-17 19:46:14', 'nm60xJ14', '8493558'), + (98219, 1194, 3243, 'not_attending', '2025-08-19 19:37:54', '2025-12-17 19:46:14', 'nm60xJ14', '8493559'), + (98220, 1194, 3244, 'not_attending', '2025-08-19 19:35:37', '2025-12-17 19:46:13', 'nm60xJ14', '8493560'), + (98221, 1194, 3245, 'not_attending', '2025-08-19 19:35:11', '2025-12-17 19:46:12', 'nm60xJ14', '8493561'), + (98222, 1194, 3253, 'not_attending', '2025-08-19 19:44:12', '2025-12-17 19:46:14', 'nm60xJ14', '8493572'), + (98223, 1194, 3284, 'not_attending', '2025-10-08 18:55:05', '2025-12-17 19:46:13', 'nm60xJ14', '8540725'), + (98224, 1194, 3322, 'not_attending', '2025-11-14 03:50:34', '2025-12-17 19:46:14', 'nm60xJ14', '8555421'), + (98225, 1195, 1098, 'attending', '2021-11-08 01:01:22', '2025-12-17 19:47:36', 'Ae76Mjzd', '4598861'), + (98226, 1195, 1103, 'attending', '2021-11-10 20:30:15', '2025-12-17 19:47:36', 'Ae76Mjzd', '4616350'), + (98227, 1195, 1114, 'maybe', '2021-11-13 13:58:47', '2025-12-17 19:47:36', 'Ae76Mjzd', '4637896'), + (98228, 1195, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', 'Ae76Mjzd', '4642994'), + (98229, 1195, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', 'Ae76Mjzd', '4642995'), + (98230, 1195, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', 'Ae76Mjzd', '4642996'), + (98231, 1195, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', 'Ae76Mjzd', '4642997'), + (98232, 1195, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', 'Ae76Mjzd', '4645687'), + (98233, 1195, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', 'Ae76Mjzd', '4645698'), + (98234, 1195, 1128, 'attending', '2021-11-17 01:44:54', '2025-12-17 19:47:37', 'Ae76Mjzd', '4645704'), + (98235, 1195, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', 'Ae76Mjzd', '4645705'), + (98236, 1195, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'Ae76Mjzd', '4668385'), + (98237, 1195, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'Ae76Mjzd', '4694407'), + (98238, 1195, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'Ae76Mjzd', '4746789'), + (98239, 1195, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'Ae76Mjzd', '4753929'), + (98240, 1195, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'Ae76Mjzd', '6045684'), + (98241, 1196, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'mG2V1WYd', '6045684'), + (98242, 1197, 665, 'attending', '2021-09-02 09:15:16', '2025-12-17 19:47:43', 'mpKvzeqd', '3547143'), + (98243, 1197, 884, 'not_attending', '2021-08-11 05:34:42', '2025-12-17 19:47:42', 'mpKvzeqd', '4210314'), + (98244, 1197, 903, 'not_attending', '2021-08-17 17:29:07', '2025-12-17 19:47:42', 'mpKvzeqd', '4240320'), + (98245, 1197, 935, 'not_attending', '2021-08-17 17:29:05', '2025-12-17 19:47:41', 'mpKvzeqd', '4304151'), + (98246, 1197, 948, 'not_attending', '2021-08-17 17:29:01', '2025-12-17 19:47:41', 'mpKvzeqd', '4315714'), + (98247, 1197, 949, 'not_attending', '2021-08-17 17:28:56', '2025-12-17 19:47:42', 'mpKvzeqd', '4315726'), + (98248, 1197, 950, 'not_attending', '2021-08-10 22:12:00', '2025-12-17 19:47:42', 'mpKvzeqd', '4315730'), + (98249, 1197, 951, 'attending', '2021-08-10 22:13:03', '2025-12-17 19:47:43', 'mpKvzeqd', '4315731'), + (98250, 1197, 971, 'maybe', '2021-09-08 20:31:43', '2025-12-17 19:47:43', 'mpKvzeqd', '4356801'), + (98251, 1197, 973, 'maybe', '2021-08-17 17:28:48', '2025-12-17 19:47:42', 'mpKvzeqd', '4366186'), + (98252, 1197, 974, 'maybe', '2021-08-17 17:27:01', '2025-12-17 19:47:42', 'mpKvzeqd', '4366187'), + (98253, 1197, 990, 'attending', '2021-09-02 09:15:18', '2025-12-17 19:47:43', 'mpKvzeqd', '4420735'), + (98254, 1197, 991, 'attending', '2021-09-06 16:18:13', '2025-12-17 19:47:43', 'mpKvzeqd', '4420738'), + (98255, 1197, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', 'mpKvzeqd', '4420739'), + (98256, 1197, 993, 'attending', '2021-09-25 13:13:55', '2025-12-17 19:47:34', 'mpKvzeqd', '4420741'), + (98257, 1197, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', 'mpKvzeqd', '4420744'), + (98258, 1197, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', 'mpKvzeqd', '4420747'), + (98259, 1197, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', 'mpKvzeqd', '4420748'), + (98260, 1197, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', 'mpKvzeqd', '4420749'), + (98261, 1197, 1000, 'not_attending', '2021-09-02 09:15:26', '2025-12-17 19:47:43', 'mpKvzeqd', '4424456'), + (98262, 1197, 1001, 'attending', '2021-09-02 09:15:07', '2025-12-17 19:47:43', 'mpKvzeqd', '4424687'), + (98263, 1197, 1002, 'maybe', '2021-08-30 20:57:56', '2025-12-17 19:47:43', 'mpKvzeqd', '4424932'), + (98264, 1197, 1003, 'not_attending', '2021-09-06 11:18:35', '2025-12-17 19:47:43', 'mpKvzeqd', '4438802'), + (98265, 1197, 1014, 'not_attending', '2021-09-06 11:18:31', '2025-12-17 19:47:43', 'mpKvzeqd', '4439233'), + (98266, 1197, 1017, 'not_attending', '2021-09-06 11:18:40', '2025-12-17 19:47:43', 'mpKvzeqd', '4441822'), + (98267, 1197, 1018, 'not_attending', '2021-09-06 11:18:25', '2025-12-17 19:47:43', 'mpKvzeqd', '4448883'), + (98268, 1197, 1023, 'not_attending', '2021-09-14 09:34:45', '2025-12-17 19:47:43', 'mpKvzeqd', '4461883'), + (98269, 1197, 1067, 'maybe', '2021-09-24 21:46:34', '2025-12-17 19:47:34', 'mpKvzeqd', '4508342'), + (98270, 1197, 1070, 'attending', '2021-10-01 23:13:46', '2025-12-17 19:47:34', 'mpKvzeqd', '4512562'), + (98271, 1197, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', 'mpKvzeqd', '4568602'), + (98272, 1197, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'mpKvzeqd', '6045684'), + (98273, 1198, 2524, 'maybe', '2024-07-01 15:00:25', '2025-12-17 19:46:29', 'd5jgo5Km', '7074364'), + (98274, 1198, 2627, 'not_attending', '2024-05-25 22:23:20', '2025-12-17 19:46:35', 'd5jgo5Km', '7264724'), + (98275, 1198, 2641, 'attending', '2024-05-18 01:38:45', '2025-12-17 19:46:35', 'd5jgo5Km', '7276107'), + (98276, 1198, 2644, 'maybe', '2024-05-23 18:02:52', '2025-12-17 19:46:35', 'd5jgo5Km', '7279039'), + (98277, 1198, 2646, 'maybe', '2024-05-20 14:01:59', '2025-12-17 19:46:35', 'd5jgo5Km', '7281768'), + (98278, 1198, 2651, 'attending', '2024-05-24 23:20:34', '2025-12-17 19:46:35', 'd5jgo5Km', '7288200'), + (98279, 1198, 2661, 'not_attending', '2024-06-02 16:16:15', '2025-12-17 19:46:28', 'd5jgo5Km', '7302674'), + (98280, 1198, 2688, 'not_attending', '2024-06-28 13:27:30', '2025-12-17 19:46:29', 'd5jgo5Km', '7324073'), + (98281, 1198, 2689, 'attending', '2024-06-28 13:27:41', '2025-12-17 19:46:29', 'd5jgo5Km', '7324074'), + (98282, 1198, 2690, 'maybe', '2024-07-07 03:09:10', '2025-12-17 19:46:30', 'd5jgo5Km', '7324075'), + (98283, 1198, 2692, 'attending', '2024-07-27 22:37:29', '2025-12-17 19:46:30', 'd5jgo5Km', '7324077'), + (98284, 1198, 2693, 'not_attending', '2024-08-01 18:46:29', '2025-12-17 19:46:31', 'd5jgo5Km', '7324078'), + (98285, 1198, 2697, 'maybe', '2024-08-31 20:13:37', '2025-12-17 19:46:32', 'd5jgo5Km', '7324082'), + (98286, 1198, 2699, 'maybe', '2024-06-12 21:15:04', '2025-12-17 19:46:28', 'd5jgo5Km', '7324385'), + (98287, 1198, 2722, 'not_attending', '2024-07-10 15:28:00', '2025-12-17 19:46:29', 'd5jgo5Km', '7331457'), + (98288, 1198, 2737, 'attending', '2024-07-02 21:48:48', '2025-12-17 19:46:29', 'd5jgo5Km', '7344070'), + (98289, 1198, 2742, 'attending', '2024-07-03 23:22:05', '2025-12-17 19:46:29', 'd5jgo5Km', '7345167'), + (98290, 1198, 2743, 'maybe', '2024-07-04 14:13:16', '2025-12-17 19:46:29', 'd5jgo5Km', '7345688'), + (98291, 1198, 2754, 'not_attending', '2024-07-08 16:54:33', '2025-12-17 19:46:30', 'd5jgo5Km', '7356752'), + (98292, 1198, 2766, 'not_attending', '2024-07-31 00:03:41', '2025-12-17 19:46:30', 'd5jgo5Km', '7363643'), + (98293, 1198, 2774, 'maybe', '2024-07-21 18:46:15', '2025-12-17 19:46:30', 'd5jgo5Km', '7368606'), + (98294, 1198, 2776, 'maybe', '2024-07-25 20:17:40', '2025-12-17 19:46:30', 'd5jgo5Km', '7370690'), + (98295, 1198, 2801, 'not_attending', '2024-08-20 11:03:45', '2025-12-17 19:46:32', 'd5jgo5Km', '7397462'), + (98296, 1198, 2806, 'attending', '2024-09-18 22:30:55', '2025-12-17 19:46:25', 'd5jgo5Km', '7404888'), + (98297, 1198, 2821, 'not_attending', '2024-10-12 18:04:17', '2025-12-17 19:46:26', 'd5jgo5Km', '7424275'), + (98298, 1198, 2822, 'not_attending', '2024-11-10 21:55:08', '2025-12-17 19:46:26', 'd5jgo5Km', '7424276'), + (98299, 1198, 2824, 'not_attending', '2024-09-08 02:56:28', '2025-12-17 19:46:25', 'd5jgo5Km', '7432751'), + (98300, 1198, 2825, 'not_attending', '2024-09-08 02:56:58', '2025-12-17 19:46:25', 'd5jgo5Km', '7432752'), + (98301, 1198, 2826, 'not_attending', '2024-09-08 02:57:40', '2025-12-17 19:46:25', 'd5jgo5Km', '7432753'), + (98302, 1198, 2827, 'not_attending', '2024-09-08 02:58:02', '2025-12-17 19:46:26', 'd5jgo5Km', '7432754'), + (98303, 1198, 2828, 'not_attending', '2024-09-08 02:58:32', '2025-12-17 19:46:26', 'd5jgo5Km', '7432755'), + (98304, 1198, 2829, 'not_attending', '2024-09-08 02:59:05', '2025-12-17 19:46:26', 'd5jgo5Km', '7432756'), + (98305, 1198, 2830, 'not_attending', '2024-09-08 02:59:31', '2025-12-17 19:46:26', 'd5jgo5Km', '7432758'), + (98306, 1198, 2831, 'not_attending', '2024-09-08 02:59:58', '2025-12-17 19:46:26', 'd5jgo5Km', '7432759'), + (98307, 1198, 2833, 'not_attending', '2024-09-10 18:57:27', '2025-12-17 19:46:25', 'd5jgo5Km', '7433834'), + (98308, 1198, 2839, 'attending', '2024-09-13 03:39:10', '2025-12-17 19:46:25', 'd5jgo5Km', '7439262'), + (98309, 1198, 2862, 'not_attending', '2024-10-01 16:31:52', '2025-12-17 19:46:25', 'd5jgo5Km', '7470197'), + (98310, 1198, 2898, 'not_attending', '2024-11-09 02:48:26', '2025-12-17 19:46:27', 'd5jgo5Km', '7685613'), + (98311, 1198, 2903, 'not_attending', '2024-11-08 23:48:43', '2025-12-17 19:46:27', 'd5jgo5Km', '7688194'), + (98312, 1198, 2904, 'not_attending', '2024-11-08 23:48:58', '2025-12-17 19:46:28', 'd5jgo5Km', '7688196'), + (98313, 1198, 2905, 'not_attending', '2024-11-09 04:29:08', '2025-12-17 19:46:27', 'd5jgo5Km', '7688289'), + (98314, 1198, 2912, 'not_attending', '2024-11-18 00:48:23', '2025-12-17 19:46:27', 'd5jgo5Km', '7692763'), + (98315, 1198, 2913, 'not_attending', '2024-11-16 18:44:28', '2025-12-17 19:46:27', 'd5jgo5Km', '7697552'), + (98316, 1198, 2917, 'not_attending', '2024-11-18 19:22:35', '2025-12-17 19:46:28', 'd5jgo5Km', '7699878'), + (98317, 1198, 2919, 'not_attending', '2024-11-21 19:37:29', '2025-12-17 19:46:27', 'd5jgo5Km', '7704043'), + (98318, 1198, 2924, 'not_attending', '2024-11-28 01:51:52', '2025-12-17 19:46:28', 'd5jgo5Km', '7712467'), + (98319, 1198, 2926, 'not_attending', '2024-12-07 22:30:16', '2025-12-17 19:46:21', 'd5jgo5Km', '7713585'), + (98320, 1198, 2927, 'not_attending', '2024-12-17 02:52:46', '2025-12-17 19:46:22', 'd5jgo5Km', '7713586'), + (98321, 1198, 2958, 'not_attending', '2024-12-18 21:23:26', '2025-12-17 19:46:22', 'd5jgo5Km', '7738518'), + (98322, 1198, 2963, 'not_attending', '2024-12-28 19:09:01', '2025-12-17 19:46:22', 'd5jgo5Km', '7750636'), + (98323, 1198, 2964, 'not_attending', '2025-01-07 04:34:11', '2025-12-17 19:46:22', 'd5jgo5Km', '7796540'), + (98324, 1198, 2965, 'not_attending', '2025-01-07 04:34:22', '2025-12-17 19:46:22', 'd5jgo5Km', '7796541'), + (98325, 1198, 2966, 'not_attending', '2025-01-07 04:34:28', '2025-12-17 19:46:22', 'd5jgo5Km', '7796542'), + (98326, 1199, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', 'xAYxbz0m', '4736497'), + (98327, 1199, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', 'xAYxbz0m', '4736499'), + (98328, 1199, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', 'xAYxbz0m', '4736500'), + (98329, 1199, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', 'xAYxbz0m', '4736503'), + (98330, 1199, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', 'xAYxbz0m', '4736504'), + (98331, 1199, 1185, 'not_attending', '2022-01-12 23:28:47', '2025-12-17 19:47:31', 'xAYxbz0m', '4746789'), + (98332, 1199, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'xAYxbz0m', '4753929'), + (98333, 1199, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', 'xAYxbz0m', '5038850'), + (98334, 1199, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', 'xAYxbz0m', '5045826'), + (98335, 1199, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', 'xAYxbz0m', '5132533'), + (98336, 1199, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'xAYxbz0m', '6045684'), + (98337, 1200, 604, 'maybe', '2021-02-26 03:55:50', '2025-12-17 19:47:50', '6AXgn8Em', '3470305'), + (98338, 1200, 621, 'not_attending', '2021-03-04 20:29:25', '2025-12-17 19:47:51', '6AXgn8Em', '3517815'), + (98339, 1200, 622, 'not_attending', '2021-03-10 09:49:16', '2025-12-17 19:47:51', '6AXgn8Em', '3517816'), + (98340, 1200, 623, 'not_attending', '2021-02-26 11:21:08', '2025-12-17 19:47:51', '6AXgn8Em', '3523941'), + (98341, 1200, 631, 'not_attending', '2021-03-01 00:40:58', '2025-12-17 19:47:51', '6AXgn8Em', '3533850'), + (98342, 1200, 638, 'not_attending', '2021-03-01 18:41:45', '2025-12-17 19:47:44', '6AXgn8Em', '3536632'), + (98343, 1200, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '6AXgn8Em', '3536656'), + (98344, 1200, 641, 'not_attending', '2021-03-03 12:42:15', '2025-12-17 19:47:44', '6AXgn8Em', '3539916'), + (98345, 1200, 642, 'not_attending', '2021-03-03 12:44:52', '2025-12-17 19:47:44', '6AXgn8Em', '3539917'), + (98346, 1200, 643, 'not_attending', '2021-03-03 12:45:18', '2025-12-17 19:47:45', '6AXgn8Em', '3539918'), + (98347, 1200, 644, 'not_attending', '2021-03-03 12:45:36', '2025-12-17 19:47:46', '6AXgn8Em', '3539919'), + (98348, 1200, 645, 'not_attending', '2021-03-03 12:48:10', '2025-12-17 19:47:46', '6AXgn8Em', '3539920'), + (98349, 1200, 646, 'not_attending', '2021-03-03 12:48:17', '2025-12-17 19:47:46', '6AXgn8Em', '3539921'), + (98350, 1200, 647, 'not_attending', '2021-03-03 12:48:26', '2025-12-17 19:47:46', '6AXgn8Em', '3539922'), + (98351, 1200, 648, 'not_attending', '2021-03-03 12:48:34', '2025-12-17 19:47:47', '6AXgn8Em', '3539923'), + (98352, 1200, 649, 'not_attending', '2021-03-20 02:24:20', '2025-12-17 19:47:51', '6AXgn8Em', '3539927'), + (98353, 1200, 706, 'not_attending', '2021-03-19 17:59:27', '2025-12-17 19:47:45', '6AXgn8Em', '3582734'), + (98354, 1200, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', '6AXgn8Em', '3619523'), + (98355, 1200, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '6AXgn8Em', '3674262'), + (98356, 1200, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '6AXgn8Em', '3677402'), + (98357, 1200, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '6AXgn8Em', '6045684'), + (98358, 1201, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'AQbW1QN4', '5630967'), + (98359, 1201, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'AQbW1QN4', '5630968'), + (98360, 1201, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'AQbW1QN4', '5642818'), + (98361, 1201, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'AQbW1QN4', '5670445'), + (98362, 1201, 1784, 'not_attending', '2022-11-16 19:58:39', '2025-12-17 19:47:16', 'AQbW1QN4', '5699760'), + (98363, 1201, 1788, 'not_attending', '2022-11-17 09:26:56', '2025-12-17 19:47:16', 'AQbW1QN4', '5727236'), + (98364, 1201, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'AQbW1QN4', '5741601'), + (98365, 1201, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'AQbW1QN4', '5763458'), + (98366, 1201, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'AQbW1QN4', '5774172'), + (98367, 1201, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'AQbW1QN4', '5818247'), + (98368, 1201, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'AQbW1QN4', '5819471'), + (98369, 1201, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'AQbW1QN4', '5827739'), + (98370, 1201, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'AQbW1QN4', '5844306'), + (98371, 1201, 1846, 'not_attending', '2022-12-18 18:53:42', '2025-12-17 19:47:04', 'AQbW1QN4', '5845237'), + (98372, 1201, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'AQbW1QN4', '5850159'), + (98373, 1201, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'AQbW1QN4', '5858999'), + (98374, 1201, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'AQbW1QN4', '5871984'), + (98375, 1201, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'AQbW1QN4', '5876354'), + (98376, 1201, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AQbW1QN4', '6045684'), + (98377, 1202, 2323, 'not_attending', '2023-11-28 23:59:39', '2025-12-17 19:46:49', 'd81KyXGm', '6514660'), + (98378, 1202, 2351, 'attending', '2023-11-21 02:14:14', '2025-12-17 19:46:48', 'd81KyXGm', '6584747'), + (98379, 1202, 2352, 'not_attending', '2023-11-21 09:51:00', '2025-12-17 19:46:48', 'd81KyXGm', '6587097'), + (98380, 1202, 2359, 'not_attending', '2023-12-02 00:40:10', '2025-12-17 19:46:48', 'd81KyXGm', '6596617'), + (98381, 1202, 2363, 'not_attending', '2023-12-04 23:38:15', '2025-12-17 19:46:49', 'd81KyXGm', '6609022'), + (98382, 1202, 2374, 'not_attending', '2023-12-18 22:28:53', '2025-12-17 19:46:36', 'd81KyXGm', '6632757'), + (98383, 1202, 2379, 'not_attending', '2023-12-30 02:46:01', '2025-12-17 19:46:37', 'd81KyXGm', '6644187'), + (98384, 1202, 2386, 'not_attending', '2024-01-02 23:53:41', '2025-12-17 19:46:37', 'd81KyXGm', '6648951'), + (98385, 1202, 2387, 'not_attending', '2024-01-04 21:30:36', '2025-12-17 19:46:37', 'd81KyXGm', '6648952'), + (98386, 1202, 2390, 'not_attending', '2024-01-07 21:22:21', '2025-12-17 19:46:37', 'd81KyXGm', '6651141'), + (98387, 1202, 2396, 'not_attending', '2024-01-17 01:15:14', '2025-12-17 19:46:38', 'd81KyXGm', '6655401'), + (98388, 1202, 2401, 'not_attending', '2024-01-09 19:03:08', '2025-12-17 19:46:37', 'd81KyXGm', '6661585'), + (98389, 1202, 2402, 'not_attending', '2024-01-09 19:05:05', '2025-12-17 19:46:38', 'd81KyXGm', '6661588'), + (98390, 1202, 2403, 'not_attending', '2024-01-09 19:06:37', '2025-12-17 19:46:40', 'd81KyXGm', '6661589'), + (98391, 1202, 2407, 'not_attending', '2024-01-15 03:38:44', '2025-12-17 19:46:40', 'd81KyXGm', '6699906'), + (98392, 1202, 2411, 'not_attending', '2024-02-17 00:01:34', '2025-12-17 19:46:42', 'd81KyXGm', '6699913'), + (98393, 1202, 2416, 'not_attending', '2024-01-16 06:21:33', '2025-12-17 19:46:40', 'd81KyXGm', '6701109'), + (98394, 1202, 2425, 'not_attending', '2024-01-19 05:06:55', '2025-12-17 19:46:40', 'd81KyXGm', '6705219'), + (98395, 1202, 2428, 'not_attending', '2024-01-21 05:17:54', '2025-12-17 19:46:40', 'd81KyXGm', '6710153'), + (98396, 1202, 2429, 'not_attending', '2024-01-22 02:45:43', '2025-12-17 19:46:40', 'd81KyXGm', '6711552'), + (98397, 1202, 2430, 'not_attending', '2024-01-22 02:46:54', '2025-12-17 19:46:40', 'd81KyXGm', '6711553'), + (98398, 1202, 2437, 'not_attending', '2024-01-27 19:34:41', '2025-12-17 19:46:41', 'd81KyXGm', '6722688'), + (98399, 1202, 2439, 'not_attending', '2024-01-31 02:58:29', '2025-12-17 19:46:41', 'd81KyXGm', '6730620'), + (98400, 1202, 2440, 'not_attending', '2024-01-31 07:48:30', '2025-12-17 19:46:41', 'd81KyXGm', '6730642'), + (98401, 1202, 2453, 'not_attending', '2024-02-10 03:07:01', '2025-12-17 19:46:42', 'd81KyXGm', '6740364'), + (98402, 1202, 2460, 'not_attending', '2024-02-09 21:03:57', '2025-12-17 19:46:41', 'd81KyXGm', '6743829'), + (98403, 1202, 2468, 'not_attending', '2024-02-25 21:29:58', '2025-12-17 19:46:43', 'd81KyXGm', '7030380'), + (98404, 1202, 2472, 'not_attending', '2024-02-20 23:59:21', '2025-12-17 19:46:42', 'd81KyXGm', '7033677'), + (98405, 1202, 2474, 'not_attending', '2024-02-21 16:01:31', '2025-12-17 19:46:43', 'd81KyXGm', '7035415'), + (98406, 1202, 2481, 'not_attending', '2024-03-01 04:29:52', '2025-12-17 19:46:43', 'd81KyXGm', '7044715'), + (98407, 1202, 2490, 'not_attending', '2024-02-28 02:16:26', '2025-12-17 19:46:43', 'd81KyXGm', '7050318'), + (98408, 1202, 2491, 'not_attending', '2024-02-28 02:36:10', '2025-12-17 19:46:44', 'd81KyXGm', '7050319'), + (98409, 1202, 2492, 'not_attending', '2024-02-28 02:36:22', '2025-12-17 19:46:32', 'd81KyXGm', '7050322'), + (98410, 1202, 2499, 'not_attending', '2024-03-07 03:58:04', '2025-12-17 19:46:43', 'd81KyXGm', '7057804'), + (98411, 1202, 2507, 'not_attending', '2024-03-14 23:45:40', '2025-12-17 19:46:33', 'd81KyXGm', '7072824'), + (98412, 1202, 2508, 'not_attending', '2024-03-13 14:36:32', '2025-12-17 19:46:32', 'd81KyXGm', '7074348'), + (98413, 1202, 2540, 'not_attending', '2024-03-16 21:50:01', '2025-12-17 19:46:32', 'd81KyXGm', '7089267'), + (98414, 1202, 2548, 'not_attending', '2024-03-23 18:31:08', '2025-12-17 19:46:33', 'd81KyXGm', '7098747'), + (98415, 1202, 2553, 'not_attending', '2024-03-30 08:08:08', '2025-12-17 19:46:33', 'd81KyXGm', '7113468'), + (98416, 1202, 2554, 'not_attending', '2024-03-30 21:43:29', '2025-12-17 19:46:33', 'd81KyXGm', '7114856'), + (98417, 1202, 2555, 'not_attending', '2024-04-03 00:13:06', '2025-12-17 19:46:34', 'd81KyXGm', '7114951'), + (98418, 1202, 2556, 'not_attending', '2024-04-03 00:13:11', '2025-12-17 19:46:34', 'd81KyXGm', '7114955'), + (98419, 1202, 2557, 'not_attending', '2024-04-03 00:12:15', '2025-12-17 19:46:34', 'd81KyXGm', '7114956'), + (98420, 1202, 2568, 'not_attending', '2024-04-05 18:49:47', '2025-12-17 19:46:33', 'd81KyXGm', '7153615'), + (98421, 1202, 2571, 'not_attending', '2024-04-08 22:03:14', '2025-12-17 19:46:33', 'd81KyXGm', '7159484'), + (98422, 1202, 2590, 'not_attending', '2024-04-16 19:59:33', '2025-12-17 19:46:34', 'd81KyXGm', '7178446'), + (98423, 1203, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'dKPrJram', '5630968'), + (98424, 1203, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'dKPrJram', '5642818'), + (98425, 1203, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'dKPrJram', '5670445'), + (98426, 1203, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'dKPrJram', '5774172'), + (98427, 1203, 1832, 'not_attending', '2022-12-03 19:14:08', '2025-12-17 19:47:16', 'dKPrJram', '5818247'), + (98428, 1203, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'dKPrJram', '5819471'), + (98429, 1203, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'dKPrJram', '5827739'), + (98430, 1203, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'dKPrJram', '5844306'), + (98431, 1203, 1846, 'not_attending', '2022-12-18 18:53:46', '2025-12-17 19:47:04', 'dKPrJram', '5845237'), + (98432, 1203, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'dKPrJram', '5850159'), + (98433, 1203, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'dKPrJram', '5858999'), + (98434, 1203, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'dKPrJram', '5871984'), + (98435, 1203, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'dKPrJram', '5876354'), + (98436, 1203, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', 'dKPrJram', '5880943'), + (98437, 1203, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', 'dKPrJram', '5900202'), + (98438, 1203, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', 'dKPrJram', '5900203'), + (98439, 1203, 1916, 'not_attending', '2023-02-26 20:49:52', '2025-12-17 19:47:08', 'dKPrJram', '5910526'), + (98440, 1203, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', 'dKPrJram', '5910528'), + (98441, 1203, 1921, 'attending', '2023-02-26 18:02:44', '2025-12-17 19:47:08', 'dKPrJram', '5914092'), + (98442, 1203, 1936, 'not_attending', '2023-02-28 17:17:10', '2025-12-17 19:47:08', 'dKPrJram', '5959397'), + (98443, 1203, 1939, 'not_attending', '2023-02-28 17:16:41', '2025-12-17 19:47:08', 'dKPrJram', '5959755'), + (98444, 1203, 1941, 'not_attending', '2023-02-26 06:52:06', '2025-12-17 19:47:09', 'dKPrJram', '5961684'), + (98445, 1203, 1944, 'not_attending', '2023-02-28 17:11:36', '2025-12-17 19:47:09', 'dKPrJram', '5962132'), + (98446, 1203, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', 'dKPrJram', '5962317'), + (98447, 1203, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', 'dKPrJram', '5962318'), + (98448, 1203, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', 'dKPrJram', '5965933'), + (98449, 1203, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', 'dKPrJram', '5967014'), + (98450, 1203, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', 'dKPrJram', '5972815'), + (98451, 1203, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', 'dKPrJram', '5974016'), + (98452, 1203, 1962, 'not_attending', '2023-03-08 02:00:27', '2025-12-17 19:47:09', 'dKPrJram', '5975052'), + (98453, 1203, 1963, 'not_attending', '2023-03-08 02:09:42', '2025-12-17 19:47:10', 'dKPrJram', '5975054'), + (98454, 1203, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', 'dKPrJram', '5981515'), + (98455, 1203, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', 'dKPrJram', '5993516'), + (98456, 1203, 1973, 'attending', '2023-03-13 07:33:17', '2025-12-17 19:46:56', 'dKPrJram', '5993777'), + (98457, 1203, 1974, 'maybe', '2023-03-18 22:50:32', '2025-12-17 19:46:57', 'dKPrJram', '5993778'), + (98458, 1203, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', 'dKPrJram', '5998939'), + (98459, 1203, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', 'dKPrJram', '6028191'), + (98460, 1203, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', 'dKPrJram', '6040066'), + (98461, 1203, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', 'dKPrJram', '6042717'), + (98462, 1203, 1986, 'not_attending', '2023-04-03 15:47:32', '2025-12-17 19:46:58', 'dKPrJram', '6044838'), + (98463, 1203, 1987, 'not_attending', '2023-04-18 21:50:17', '2025-12-17 19:47:00', 'dKPrJram', '6044839'), + (98464, 1203, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'dKPrJram', '6045684'), + (98465, 1203, 1994, 'not_attending', '2023-04-02 16:08:23', '2025-12-17 19:46:59', 'dKPrJram', '6050104'), + (98466, 1203, 2005, 'not_attending', '2023-04-04 22:31:41', '2025-12-17 19:46:58', 'dKPrJram', '6053195'), + (98467, 1203, 2006, 'not_attending', '2023-04-10 04:39:00', '2025-12-17 19:46:59', 'dKPrJram', '6053198'), + (98468, 1203, 2010, 'not_attending', '2023-04-07 18:37:30', '2025-12-17 19:47:00', 'dKPrJram', '6056085'), + (98469, 1203, 2011, 'not_attending', '2023-04-09 04:11:02', '2025-12-17 19:46:59', 'dKPrJram', '6056916'), + (98470, 1203, 2012, 'not_attending', '2023-04-10 23:17:45', '2025-12-17 19:46:59', 'dKPrJram', '6059290'), + (98471, 1203, 2013, 'not_attending', '2023-04-11 19:11:13', '2025-12-17 19:46:59', 'dKPrJram', '6060328'), + (98472, 1203, 2015, 'not_attending', '2023-04-13 20:04:06', '2025-12-17 19:47:00', 'dKPrJram', '6061037'), + (98473, 1203, 2016, 'not_attending', '2023-04-27 18:22:06', '2025-12-17 19:47:02', 'dKPrJram', '6061039'), + (98474, 1203, 2020, 'not_attending', '2023-04-14 17:15:50', '2025-12-17 19:46:59', 'dKPrJram', '6065813'), + (98475, 1203, 2022, 'not_attending', '2023-05-15 05:46:07', '2025-12-17 19:47:03', 'dKPrJram', '6067245'), + (98476, 1203, 2027, 'not_attending', '2023-04-18 01:44:30', '2025-12-17 19:47:00', 'dKPrJram', '6068094'), + (98477, 1203, 2028, 'not_attending', '2023-04-18 00:48:07', '2025-12-17 19:47:00', 'dKPrJram', '6068252'), + (98478, 1203, 2029, 'not_attending', '2023-04-18 00:49:38', '2025-12-17 19:47:01', 'dKPrJram', '6068253'), + (98479, 1203, 2030, 'not_attending', '2023-04-18 00:49:47', '2025-12-17 19:47:02', 'dKPrJram', '6068254'), + (98480, 1203, 2031, 'not_attending', '2023-04-18 00:53:08', '2025-12-17 19:47:04', 'dKPrJram', '6068280'), + (98481, 1203, 2033, 'not_attending', '2023-04-19 00:09:03', '2025-12-17 19:47:00', 'dKPrJram', '6069093'), + (98482, 1203, 2041, 'not_attending', '2023-04-24 02:33:56', '2025-12-17 19:47:01', 'dKPrJram', '6072528'), + (98483, 1203, 2045, 'not_attending', '2023-04-27 13:15:21', '2025-12-17 19:47:01', 'dKPrJram', '6075556'), + (98484, 1203, 2049, 'not_attending', '2023-04-29 17:51:38', '2025-12-17 19:47:01', 'dKPrJram', '6079840'), + (98485, 1203, 2051, 'not_attending', '2023-05-01 04:19:30', '2025-12-17 19:47:02', 'dKPrJram', '6083398'), + (98486, 1203, 2056, 'not_attending', '2023-05-06 20:51:54', '2025-12-17 19:47:03', 'dKPrJram', '6093504'), + (98487, 1203, 2060, 'not_attending', '2023-05-08 22:23:45', '2025-12-17 19:47:03', 'dKPrJram', '6097414'), + (98488, 1203, 2061, 'not_attending', '2023-05-09 00:06:37', '2025-12-17 19:47:02', 'dKPrJram', '6097442'), + (98489, 1203, 2062, 'not_attending', '2023-05-09 01:04:00', '2025-12-17 19:47:02', 'dKPrJram', '6097684'), + (98490, 1203, 2063, 'not_attending', '2023-05-09 20:38:39', '2025-12-17 19:47:03', 'dKPrJram', '6098762'), + (98491, 1203, 2067, 'not_attending', '2023-05-13 18:21:59', '2025-12-17 19:47:03', 'dKPrJram', '6101362'), + (98492, 1203, 2075, 'not_attending', '2023-05-17 22:44:59', '2025-12-17 19:46:50', 'dKPrJram', '6107314'), + (98493, 1204, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', 'AgkXJlRA', '4668385'), + (98494, 1204, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', 'AgkXJlRA', '4694407'), + (98495, 1204, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', 'AgkXJlRA', '4746789'), + (98496, 1204, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:32', 'AgkXJlRA', '4753929'), + (98497, 1204, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'AgkXJlRA', '6045684'), + (98498, 1205, 1379, 'attending', '2022-05-20 23:11:44', '2025-12-17 19:47:29', 'd5YPxwLd', '5271449'), + (98499, 1205, 1380, 'attending', '2022-05-28 22:45:43', '2025-12-17 19:47:30', 'd5YPxwLd', '5271450'), + (98500, 1205, 1393, 'attending', '2022-05-22 03:34:56', '2025-12-17 19:47:30', 'd5YPxwLd', '5280603'), + (98501, 1205, 1394, 'not_attending', '2022-05-27 03:55:53', '2025-12-17 19:47:30', 'd5YPxwLd', '5280667'), + (98502, 1205, 1407, 'not_attending', '2022-06-04 02:33:25', '2025-12-17 19:47:30', 'd5YPxwLd', '5363695'), + (98503, 1205, 1409, 'attending', '2022-05-20 23:11:18', '2025-12-17 19:47:30', 'd5YPxwLd', '5367032'), + (98504, 1205, 1415, 'not_attending', '2022-06-04 02:33:06', '2025-12-17 19:47:30', 'd5YPxwLd', '5368973'), + (98505, 1205, 1416, 'not_attending', '2022-05-24 20:13:08', '2025-12-17 19:47:30', 'd5YPxwLd', '5369628'), + (98506, 1205, 1418, 'not_attending', '2022-05-24 19:35:56', '2025-12-17 19:47:30', 'd5YPxwLd', '5372162'), + (98507, 1205, 1419, 'not_attending', '2022-06-08 22:52:41', '2025-12-17 19:47:30', 'd5YPxwLd', '5373081'), + (98508, 1205, 1420, 'attending', '2022-05-27 20:28:55', '2025-12-17 19:47:30', 'd5YPxwLd', '5374882'), + (98509, 1205, 1421, 'attending', '2022-05-30 21:49:01', '2025-12-17 19:47:30', 'd5YPxwLd', '5374885'), + (98510, 1205, 1422, 'attending', '2022-05-28 20:04:27', '2025-12-17 19:47:30', 'd5YPxwLd', '5375603'), + (98511, 1205, 1423, 'not_attending', '2022-06-16 01:44:38', '2025-12-17 19:47:17', 'd5YPxwLd', '5375727'), + (98512, 1205, 1424, 'attending', '2022-05-26 22:58:48', '2025-12-17 19:47:30', 'd5YPxwLd', '5375772'), + (98513, 1205, 1425, 'not_attending', '2022-05-26 21:45:22', '2025-12-17 19:47:30', 'd5YPxwLd', '5375861'), + (98514, 1205, 1426, 'not_attending', '2022-05-24 22:30:24', '2025-12-17 19:47:30', 'd5YPxwLd', '5375873'), + (98515, 1205, 1427, 'not_attending', '2022-05-24 22:30:42', '2025-12-17 19:47:30', 'd5YPxwLd', '5376074'), + (98516, 1205, 1428, 'maybe', '2022-05-30 02:24:44', '2025-12-17 19:47:30', 'd5YPxwLd', '5378247'), + (98517, 1205, 1429, 'attending', '2022-06-03 03:51:48', '2025-12-17 19:47:30', 'd5YPxwLd', '5388761'), + (98518, 1205, 1430, 'attending', '2022-05-30 02:23:50', '2025-12-17 19:47:30', 'd5YPxwLd', '5389402'), + (98519, 1205, 1431, 'attending', '2022-06-01 03:25:34', '2025-12-17 19:47:30', 'd5YPxwLd', '5389605'), + (98520, 1205, 1433, 'not_attending', '2022-06-01 03:23:50', '2025-12-17 19:47:30', 'd5YPxwLd', '5391667'), + (98521, 1205, 1436, 'attending', '2022-06-03 03:51:40', '2025-12-17 19:47:30', 'd5YPxwLd', '5394292'), + (98522, 1205, 1437, 'maybe', '2022-06-01 03:23:57', '2025-12-17 19:47:30', 'd5YPxwLd', '5394493'), + (98523, 1205, 1440, 'not_attending', '2022-06-08 04:20:55', '2025-12-17 19:47:30', 'd5YPxwLd', '5396080'), + (98524, 1205, 1442, 'not_attending', '2022-06-18 13:59:43', '2025-12-17 19:47:17', 'd5YPxwLd', '5397265'), + (98525, 1205, 1449, 'not_attending', '2022-06-14 16:30:21', '2025-12-17 19:47:31', 'd5YPxwLd', '5403335'), + (98526, 1205, 1450, 'not_attending', '2022-06-10 18:01:56', '2025-12-17 19:47:30', 'd5YPxwLd', '5403421'), + (98527, 1205, 1451, 'not_attending', '2022-06-14 05:14:34', '2025-12-17 19:47:17', 'd5YPxwLd', '5403967'), + (98528, 1205, 1454, 'attending', '2022-06-13 02:37:16', '2025-12-17 19:47:31', 'd5YPxwLd', '5404771'), + (98529, 1205, 1455, 'not_attending', '2022-06-13 02:36:56', '2025-12-17 19:47:31', 'd5YPxwLd', '5404772'), + (98530, 1205, 1458, 'not_attending', '2022-06-10 17:26:33', '2025-12-17 19:47:17', 'd5YPxwLd', '5404786'), + (98531, 1205, 1462, 'not_attending', '2022-06-14 05:03:10', '2025-12-17 19:47:17', 'd5YPxwLd', '5405203'), + (98532, 1205, 1463, 'not_attending', '2022-06-14 23:59:44', '2025-12-17 19:47:31', 'd5YPxwLd', '5405208'), + (98533, 1205, 1465, 'not_attending', '2022-06-13 05:53:08', '2025-12-17 19:47:31', 'd5YPxwLd', '5406355'), + (98534, 1205, 1470, 'attending', '2022-06-13 01:23:14', '2025-12-17 19:47:17', 'd5YPxwLd', '5407053'), + (98535, 1205, 1471, 'maybe', '2022-06-18 14:00:04', '2025-12-17 19:47:17', 'd5YPxwLd', '5407063'), + (98536, 1205, 1473, 'not_attending', '2022-06-14 23:59:38', '2025-12-17 19:47:31', 'd5YPxwLd', '5407267'), + (98537, 1205, 1475, 'attending', '2022-06-16 22:51:54', '2025-12-17 19:47:17', 'd5YPxwLd', '5408108'), + (98538, 1205, 1478, 'not_attending', '2022-06-24 22:45:24', '2025-12-17 19:47:19', 'd5YPxwLd', '5408794'), + (98539, 1205, 1479, 'attending', '2022-06-17 22:23:09', '2025-12-17 19:47:17', 'd5YPxwLd', '5410322'), + (98540, 1205, 1480, 'not_attending', '2022-06-21 22:34:03', '2025-12-17 19:47:19', 'd5YPxwLd', '5411699'), + (98541, 1205, 1481, 'not_attending', '2022-06-21 22:34:37', '2025-12-17 19:47:17', 'd5YPxwLd', '5412237'), + (98542, 1205, 1482, 'attending', '2022-06-21 02:51:58', '2025-12-17 19:47:19', 'd5YPxwLd', '5412550'), + (98543, 1205, 1484, 'maybe', '2022-06-21 02:51:50', '2025-12-17 19:47:17', 'd5YPxwLd', '5415046'), + (98544, 1205, 1487, 'not_attending', '2022-06-27 14:42:29', '2025-12-17 19:47:19', 'd5YPxwLd', '5419006'), + (98545, 1205, 1489, 'attending', '2022-07-06 14:36:49', '2025-12-17 19:47:19', 'd5YPxwLd', '5420155'), + (98546, 1205, 1490, 'maybe', '2022-06-24 18:04:24', '2025-12-17 19:47:19', 'd5YPxwLd', '5420156'), + (98547, 1205, 1491, 'attending', '2022-06-24 18:03:56', '2025-12-17 19:47:19', 'd5YPxwLd', '5420158'), + (98548, 1205, 1492, 'attending', '2022-06-26 03:26:04', '2025-12-17 19:47:19', 'd5YPxwLd', '5420175'), + (98549, 1205, 1495, 'not_attending', '2022-06-26 03:24:30', '2025-12-17 19:47:19', 'd5YPxwLd', '5422086'), + (98550, 1205, 1496, 'attending', '2022-06-26 15:04:03', '2025-12-17 19:47:19', 'd5YPxwLd', '5422404'), + (98551, 1205, 1497, 'attending', '2022-06-26 15:04:05', '2025-12-17 19:47:19', 'd5YPxwLd', '5422405'), + (98552, 1205, 1498, 'not_attending', '2022-07-02 22:25:13', '2025-12-17 19:47:19', 'd5YPxwLd', '5422406'), + (98553, 1205, 1500, 'not_attending', '2022-06-30 16:29:51', '2025-12-17 19:47:19', 'd5YPxwLd', '5423915'), + (98554, 1205, 1501, 'maybe', '2022-06-29 02:39:44', '2025-12-17 19:47:19', 'd5YPxwLd', '5424546'), + (98555, 1205, 1502, 'attending', '2022-06-28 17:19:00', '2025-12-17 19:47:19', 'd5YPxwLd', '5424565'), + (98556, 1205, 1504, 'not_attending', '2022-07-13 06:05:18', '2025-12-17 19:47:19', 'd5YPxwLd', '5426882'), + (98557, 1205, 1505, 'maybe', '2022-07-05 18:28:08', '2025-12-17 19:47:19', 'd5YPxwLd', '5427083'), + (98558, 1205, 1509, 'maybe', '2022-07-06 14:36:57', '2025-12-17 19:47:19', 'd5YPxwLd', '5434019'), + (98559, 1205, 1511, 'maybe', '2022-07-09 17:06:57', '2025-12-17 19:47:19', 'd5YPxwLd', '5437733'), + (98560, 1205, 1513, 'not_attending', '2022-07-09 12:33:49', '2025-12-17 19:47:20', 'd5YPxwLd', '5441125'), + (98561, 1205, 1514, 'not_attending', '2022-07-10 21:26:01', '2025-12-17 19:47:20', 'd5YPxwLd', '5441126'), + (98562, 1205, 1515, 'not_attending', '2022-08-06 22:05:44', '2025-12-17 19:47:21', 'd5YPxwLd', '5441128'), + (98563, 1205, 1516, 'not_attending', '2022-08-08 14:34:46', '2025-12-17 19:47:23', 'd5YPxwLd', '5441129'), + (98564, 1205, 1517, 'not_attending', '2022-08-18 01:41:46', '2025-12-17 19:47:23', 'd5YPxwLd', '5441130'), + (98565, 1205, 1518, 'maybe', '2022-08-29 14:20:14', '2025-12-17 19:47:24', 'd5YPxwLd', '5441131'), + (98566, 1205, 1519, 'not_attending', '2022-09-01 19:21:56', '2025-12-17 19:47:24', 'd5YPxwLd', '5441132'), + (98567, 1205, 1520, 'not_attending', '2022-07-10 21:25:31', '2025-12-17 19:47:19', 'd5YPxwLd', '5441645'), + (98568, 1205, 1521, 'not_attending', '2022-07-13 02:41:34', '2025-12-17 19:47:19', 'd5YPxwLd', '5442180'), + (98569, 1205, 1522, 'maybe', '2022-07-10 21:25:50', '2025-12-17 19:47:20', 'd5YPxwLd', '5442832'), + (98570, 1205, 1525, 'not_attending', '2022-07-13 02:41:44', '2025-12-17 19:47:19', 'd5YPxwLd', '5444962'), + (98571, 1205, 1526, 'attending', '2022-07-13 06:05:48', '2025-12-17 19:47:20', 'd5YPxwLd', '5445059'), + (98572, 1205, 1528, 'not_attending', '2022-07-14 03:36:09', '2025-12-17 19:47:20', 'd5YPxwLd', '5446643'), + (98573, 1205, 1540, 'attending', '2022-07-18 17:10:02', '2025-12-17 19:47:20', 'd5YPxwLd', '5453325'), + (98574, 1205, 1543, 'not_attending', '2022-07-19 02:19:19', '2025-12-17 19:47:21', 'd5YPxwLd', '5454516'), + (98575, 1205, 1545, 'not_attending', '2022-07-19 13:43:33', '2025-12-17 19:47:20', 'd5YPxwLd', '5454605'), + (98576, 1205, 1547, 'not_attending', '2022-07-22 03:55:20', '2025-12-17 19:47:20', 'd5YPxwLd', '5454608'), + (98577, 1205, 1551, 'maybe', '2022-07-19 22:50:51', '2025-12-17 19:47:20', 'd5YPxwLd', '5455037'), + (98578, 1205, 1558, 'maybe', '2022-09-14 02:18:28', '2025-12-17 19:47:10', 'd5YPxwLd', '5458730'), + (98579, 1205, 1561, 'attending', '2022-08-10 01:04:58', '2025-12-17 19:47:22', 'd5YPxwLd', '5461278'), + (98580, 1205, 1562, 'maybe', '2022-08-07 18:06:53', '2025-12-17 19:47:22', 'd5YPxwLd', '5469480'), + (98581, 1205, 1565, 'not_attending', '2022-07-27 22:24:42', '2025-12-17 19:47:21', 'd5YPxwLd', '5471073'), + (98582, 1205, 1566, 'not_attending', '2022-07-27 20:27:45', '2025-12-17 19:47:21', 'd5YPxwLd', '5474663'), + (98583, 1205, 1571, 'not_attending', '2022-08-01 18:40:43', '2025-12-17 19:47:21', 'd5YPxwLd', '5482022'), + (98584, 1205, 1575, 'not_attending', '2022-08-18 01:41:54', '2025-12-17 19:47:23', 'd5YPxwLd', '5482250'), + (98585, 1205, 1577, 'not_attending', '2022-08-01 23:55:34', '2025-12-17 19:47:21', 'd5YPxwLd', '5482793'), + (98586, 1205, 1578, 'attending', '2022-08-03 02:26:00', '2025-12-17 19:47:21', 'd5YPxwLd', '5483073'), + (98587, 1205, 1580, 'not_attending', '2022-08-10 16:19:35', '2025-12-17 19:47:22', 'd5YPxwLd', '5488912'), + (98588, 1205, 1581, 'not_attending', '2022-08-11 20:15:39', '2025-12-17 19:47:22', 'd5YPxwLd', '5490302'), + (98589, 1205, 1586, 'maybe', '2022-08-08 14:35:02', '2025-12-17 19:47:23', 'd5YPxwLd', '5492019'), + (98590, 1205, 1587, 'not_attending', '2022-08-08 02:51:40', '2025-12-17 19:47:22', 'd5YPxwLd', '5492192'), + (98591, 1205, 1588, 'not_attending', '2022-08-09 16:57:55', '2025-12-17 19:47:22', 'd5YPxwLd', '5493139'), + (98592, 1205, 1590, 'not_attending', '2022-08-08 19:29:30', '2025-12-17 19:47:23', 'd5YPxwLd', '5493200'), + (98593, 1205, 1592, 'attending', '2022-08-10 13:19:10', '2025-12-17 19:47:22', 'd5YPxwLd', '5494031'), + (98594, 1205, 1595, 'maybe', '2022-08-10 13:19:31', '2025-12-17 19:47:22', 'd5YPxwLd', '5495736'), + (98595, 1205, 1603, 'not_attending', '2022-08-13 23:36:30', '2025-12-17 19:47:23', 'd5YPxwLd', '5497895'), + (98596, 1205, 1605, 'not_attending', '2022-08-15 02:23:20', '2025-12-17 19:47:23', 'd5YPxwLd', '5502188'), + (98597, 1205, 1608, 'maybe', '2022-08-29 07:08:15', '2025-12-17 19:47:24', 'd5YPxwLd', '5505059'), + (98598, 1205, 1610, 'maybe', '2022-08-29 14:19:49', '2025-12-17 19:47:23', 'd5YPxwLd', '5506595'), + (98599, 1205, 1615, 'not_attending', '2022-08-31 08:28:07', '2025-12-17 19:47:23', 'd5YPxwLd', '5509055'), + (98600, 1205, 1619, 'not_attending', '2022-08-24 05:25:50', '2025-12-17 19:47:23', 'd5YPxwLd', '5512862'), + (98601, 1205, 1624, 'not_attending', '2022-08-23 06:48:45', '2025-12-17 19:47:24', 'd5YPxwLd', '5513985'), + (98602, 1205, 1626, 'not_attending', '2022-08-26 18:44:43', '2025-12-17 19:47:12', 'd5YPxwLd', '5519981'), + (98603, 1205, 1629, 'not_attending', '2022-08-26 05:52:52', '2025-12-17 19:47:11', 'd5YPxwLd', '5522550'), + (98604, 1205, 1630, 'maybe', '2022-08-27 05:13:43', '2025-12-17 19:47:10', 'd5YPxwLd', '5534683'), + (98605, 1205, 1635, 'not_attending', '2022-09-14 21:55:58', '2025-12-17 19:47:10', 'd5YPxwLd', '5537735'), + (98606, 1205, 1637, 'not_attending', '2022-09-03 06:53:50', '2025-12-17 19:47:24', 'd5YPxwLd', '5539591'), + (98607, 1205, 1640, 'not_attending', '2022-09-14 21:55:52', '2025-12-17 19:47:10', 'd5YPxwLd', '5540859'), + (98608, 1205, 1643, 'maybe', '2022-09-03 06:54:26', '2025-12-17 19:47:11', 'd5YPxwLd', '5545856'), + (98609, 1205, 1644, 'maybe', '2022-09-03 06:54:10', '2025-12-17 19:47:11', 'd5YPxwLd', '5545857'), + (98610, 1205, 1645, 'not_attending', '2022-09-11 21:26:29', '2025-12-17 19:47:25', 'd5YPxwLd', '5546559'), + (98611, 1205, 1646, 'attending', '2022-09-02 00:03:47', '2025-12-17 19:47:24', 'd5YPxwLd', '5546619'), + (98612, 1205, 1647, 'maybe', '2022-09-18 01:58:20', '2025-12-17 19:47:11', 'd5YPxwLd', '5548660'), + (98613, 1205, 1651, 'attending', '2022-09-06 00:43:01', '2025-12-17 19:47:24', 'd5YPxwLd', '5551425'), + (98614, 1205, 1658, 'not_attending', '2022-09-06 04:11:08', '2025-12-17 19:47:24', 'd5YPxwLd', '5555245'), + (98615, 1205, 1659, 'not_attending', '2022-09-07 08:53:28', '2025-12-17 19:47:11', 'd5YPxwLd', '5557747'), + (98616, 1205, 1662, 'maybe', '2022-09-09 00:29:33', '2025-12-17 19:47:11', 'd5YPxwLd', '5560255'), + (98617, 1205, 1664, 'maybe', '2022-09-10 19:18:46', '2025-12-17 19:47:25', 'd5YPxwLd', '5562906'), + (98618, 1205, 1665, 'attending', '2022-09-11 21:26:37', '2025-12-17 19:47:25', 'd5YPxwLd', '5563133'), + (98619, 1205, 1666, 'not_attending', '2022-09-18 01:59:07', '2025-12-17 19:47:11', 'd5YPxwLd', '5563208'), + (98620, 1205, 1667, 'not_attending', '2022-09-24 23:21:08', '2025-12-17 19:47:11', 'd5YPxwLd', '5563221'), + (98621, 1205, 1670, 'maybe', '2022-09-18 01:58:13', '2025-12-17 19:47:11', 'd5YPxwLd', '5575076'), + (98622, 1205, 1677, 'not_attending', '2022-09-22 18:49:16', '2025-12-17 19:47:11', 'd5YPxwLd', '5600604'), + (98623, 1205, 1684, 'not_attending', '2022-09-25 03:20:15', '2025-12-17 19:47:12', 'd5YPxwLd', '5605544'), + (98624, 1205, 1699, 'not_attending', '2022-09-26 12:18:08', '2025-12-17 19:47:12', 'd5YPxwLd', '5606737'), + (98625, 1205, 1719, 'not_attending', '2022-10-08 16:23:52', '2025-12-17 19:47:12', 'd5YPxwLd', '5630958'), + (98626, 1205, 1721, 'not_attending', '2022-10-22 15:09:23', '2025-12-17 19:47:13', 'd5YPxwLd', '5630960'), + (98627, 1205, 1722, 'not_attending', '2022-10-25 06:10:55', '2025-12-17 19:47:14', 'd5YPxwLd', '5630961'), + (98628, 1205, 1723, 'not_attending', '2022-11-01 23:02:21', '2025-12-17 19:47:15', 'd5YPxwLd', '5630962'), + (98629, 1205, 1724, 'not_attending', '2022-11-07 01:14:36', '2025-12-17 19:47:15', 'd5YPxwLd', '5630966'), + (98630, 1205, 1725, 'not_attending', '2022-11-16 00:05:26', '2025-12-17 19:47:16', 'd5YPxwLd', '5630967'), + (98631, 1205, 1726, 'not_attending', '2022-11-20 23:17:41', '2025-12-17 19:47:16', 'd5YPxwLd', '5630968'), + (98632, 1205, 1732, 'not_attending', '2022-10-07 14:52:52', '2025-12-17 19:47:12', 'd5YPxwLd', '5635406'), + (98633, 1205, 1738, 'not_attending', '2022-10-09 02:49:12', '2025-12-17 19:47:14', 'd5YPxwLd', '5638765'), + (98634, 1205, 1739, 'not_attending', '2022-10-25 16:34:52', '2025-12-17 19:47:14', 'd5YPxwLd', '5640097'), + (98635, 1205, 1740, 'not_attending', '2022-10-09 21:07:02', '2025-12-17 19:47:13', 'd5YPxwLd', '5640843'), + (98636, 1205, 1743, 'not_attending', '2022-10-10 11:21:41', '2025-12-17 19:47:12', 'd5YPxwLd', '5641521'), + (98637, 1205, 1744, 'not_attending', '2022-11-23 22:56:16', '2025-12-17 19:47:16', 'd5YPxwLd', '5642818'), + (98638, 1205, 1751, 'not_attending', '2022-10-16 18:41:04', '2025-12-17 19:47:13', 'd5YPxwLd', '5652395'), + (98639, 1205, 1762, 'not_attending', '2022-12-02 04:16:41', '2025-12-17 19:47:16', 'd5YPxwLd', '5670445'), + (98640, 1205, 1764, 'not_attending', '2022-10-24 13:26:56', '2025-12-17 19:47:14', 'd5YPxwLd', '5671637'), + (98641, 1205, 1765, 'not_attending', '2022-10-24 22:34:05', '2025-12-17 19:47:14', 'd5YPxwLd', '5672329'), + (98642, 1205, 1766, 'not_attending', '2022-10-25 01:24:50', '2025-12-17 19:47:15', 'd5YPxwLd', '5674057'), + (98643, 1205, 1767, 'not_attending', '2022-10-25 01:30:58', '2025-12-17 19:47:15', 'd5YPxwLd', '5674060'), + (98644, 1205, 1772, 'not_attending', '2022-10-26 19:37:56', '2025-12-17 19:47:14', 'd5YPxwLd', '5677461'), + (98645, 1205, 1782, 'not_attending', '2022-11-03 04:33:09', '2025-12-17 19:47:15', 'd5YPxwLd', '5698046'), + (98646, 1205, 1784, 'not_attending', '2022-11-12 19:17:04', '2025-12-17 19:47:16', 'd5YPxwLd', '5699760'), + (98647, 1205, 1794, 'not_attending', '2022-11-14 18:55:58', '2025-12-17 19:47:16', 'd5YPxwLd', '5741601'), + (98648, 1205, 1798, 'not_attending', '2022-11-19 05:37:22', '2025-12-17 19:47:16', 'd5YPxwLd', '5763458'), + (98649, 1205, 1824, 'not_attending', '2022-11-27 18:14:19', '2025-12-17 19:47:04', 'd5YPxwLd', '5774172'), + (98650, 1205, 1832, 'not_attending', '2022-12-03 19:13:30', '2025-12-17 19:47:16', 'd5YPxwLd', '5818247'), + (98651, 1205, 1835, 'not_attending', '2023-01-06 04:43:27', '2025-12-17 19:47:05', 'd5YPxwLd', '5819471'), + (98652, 1205, 1842, 'not_attending', '2022-12-20 00:21:51', '2025-12-17 19:47:04', 'd5YPxwLd', '5827739'), + (98653, 1205, 1844, 'not_attending', '2022-12-18 00:28:13', '2025-12-17 19:47:05', 'd5YPxwLd', '5844306'), + (98654, 1205, 1847, 'not_attending', '2022-12-23 16:48:51', '2025-12-17 19:47:05', 'd5YPxwLd', '5850159'), + (98655, 1205, 1850, 'not_attending', '2023-01-02 17:56:56', '2025-12-17 19:47:05', 'd5YPxwLd', '5858999'), + (98656, 1205, 1853, 'not_attending', '2023-01-10 02:33:36', '2025-12-17 19:47:05', 'd5YPxwLd', '5871984'), + (98657, 1205, 1861, 'not_attending', '2023-01-17 19:06:08', '2025-12-17 19:47:05', 'd5YPxwLd', '5876354'), + (98658, 1205, 1864, 'not_attending', '2023-01-22 00:22:07', '2025-12-17 19:47:05', 'd5YPxwLd', '5879675'), + (98659, 1205, 1866, 'not_attending', '2023-01-24 20:28:14', '2025-12-17 19:47:05', 'd5YPxwLd', '5880939'), + (98660, 1205, 1874, 'not_attending', '2023-01-21 22:02:37', '2025-12-17 19:47:05', 'd5YPxwLd', '5887890'), + (98661, 1205, 1876, 'not_attending', '2023-01-22 00:10:55', '2025-12-17 19:47:06', 'd5YPxwLd', '5888598'), + (98662, 1205, 1880, 'not_attending', '2023-01-24 20:48:47', '2025-12-17 19:47:06', 'd5YPxwLd', '5893260'), + (98663, 1205, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', 'd5YPxwLd', '6045684'), + (98664, 1206, 407, 'not_attending', '2021-04-15 04:37:22', '2025-12-17 19:47:44', 'R40NlObm', '3236465'), + (98665, 1206, 641, 'not_attending', '2021-04-02 15:27:23', '2025-12-17 19:47:44', 'R40NlObm', '3539916'), + (98666, 1206, 643, 'not_attending', '2021-04-15 05:37:05', '2025-12-17 19:47:45', 'R40NlObm', '3539918'), + (98667, 1206, 644, 'not_attending', '2021-04-18 15:49:46', '2025-12-17 19:47:46', 'R40NlObm', '3539919'), + (98668, 1206, 645, 'not_attending', '2021-04-22 03:47:25', '2025-12-17 19:47:46', 'R40NlObm', '3539920'), + (98669, 1206, 646, 'not_attending', '2021-05-12 03:47:03', '2025-12-17 19:47:46', 'R40NlObm', '3539921'), + (98670, 1206, 689, 'attending', '2021-03-25 01:59:43', '2025-12-17 19:47:44', 'R40NlObm', '3555564'), + (98671, 1206, 700, 'not_attending', '2021-03-30 21:39:53', '2025-12-17 19:47:44', 'R40NlObm', '3575725'), + (98672, 1206, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', 'R40NlObm', '3583262'), + (98673, 1206, 717, 'not_attending', '2021-03-25 11:56:23', '2025-12-17 19:47:44', 'R40NlObm', '3619523'), + (98674, 1206, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', 'R40NlObm', '3661369'), + (98675, 1206, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', 'R40NlObm', '3674262'), + (98676, 1206, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', 'R40NlObm', '3677402'), + (98677, 1206, 774, 'not_attending', '2021-04-20 23:23:51', '2025-12-17 19:47:45', 'R40NlObm', '3730212'), + (98678, 1206, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', 'R40NlObm', '3793156'), + (98679, 1206, 802, 'not_attending', '2021-05-12 15:35:06', '2025-12-17 19:47:46', 'R40NlObm', '3803310'), + (98680, 1206, 806, 'not_attending', '2021-05-14 05:25:27', '2025-12-17 19:47:46', 'R40NlObm', '3806392'), + (98681, 1206, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', 'R40NlObm', '6045684'), + (98682, 1207, 26, 'attending', '2020-04-04 00:37:10', '2025-12-17 19:47:57', '8418nM8A', '2958082'), + (98683, 1207, 30, 'not_attending', '2020-04-06 15:55:53', '2025-12-17 19:47:57', '8418nM8A', '2961895'), + (98684, 1207, 33, 'attending', '2020-04-07 22:45:59', '2025-12-17 19:47:57', '8418nM8A', '2963932'), + (98685, 1207, 40, 'maybe', '2020-04-09 15:23:29', '2025-12-17 19:47:57', '8418nM8A', '2970718'), + (98686, 1207, 41, 'not_attending', '2020-04-10 00:23:24', '2025-12-17 19:47:57', '8418nM8A', '2971546'), + (98687, 1207, 44, 'not_attending', '2020-04-11 22:15:05', '2025-12-17 19:47:57', '8418nM8A', '2974534'), + (98688, 1207, 46, 'attending', '2020-04-08 09:32:17', '2025-12-17 19:47:57', '8418nM8A', '2974955'), + (98689, 1207, 55, 'not_attending', '2020-04-06 15:50:35', '2025-12-17 19:47:57', '8418nM8A', '2975384'), + (98690, 1207, 56, 'not_attending', '2020-04-12 03:28:55', '2025-12-17 19:47:57', '8418nM8A', '2975385'), + (98691, 1207, 57, 'not_attending', '2020-04-10 19:34:43', '2025-12-17 19:47:57', '8418nM8A', '2976575'), + (98692, 1207, 58, 'attending', '2020-04-16 18:39:55', '2025-12-17 19:47:57', '8418nM8A', '2977127'), + (98693, 1207, 60, 'maybe', '2020-04-20 11:08:59', '2025-12-17 19:47:57', '8418nM8A', '2977129'), + (98694, 1207, 61, 'attending', '2020-04-12 02:24:49', '2025-12-17 19:47:57', '8418nM8A', '2977130'), + (98695, 1207, 62, 'not_attending', '2020-05-12 22:21:29', '2025-12-17 19:47:57', '8418nM8A', '2977131'), + (98696, 1207, 64, 'attending', '2020-05-31 22:29:55', '2025-12-17 19:47:58', '8418nM8A', '2977133'), + (98697, 1207, 69, 'attending', '2020-06-28 19:03:55', '2025-12-17 19:47:55', '8418nM8A', '2977138'), + (98698, 1207, 70, 'not_attending', '2020-04-10 17:17:57', '2025-12-17 19:47:57', '8418nM8A', '2977343'), + (98699, 1207, 72, 'not_attending', '2020-05-05 21:47:42', '2025-12-17 19:47:57', '8418nM8A', '2977812'), + (98700, 1207, 73, 'not_attending', '2020-04-16 19:10:36', '2025-12-17 19:47:57', '8418nM8A', '2977931'), + (98701, 1207, 74, 'attending', '2020-04-15 01:56:55', '2025-12-17 19:47:57', '8418nM8A', '2978244'), + (98702, 1207, 75, 'attending', '2020-04-19 17:31:50', '2025-12-17 19:47:57', '8418nM8A', '2978245'), + (98703, 1207, 76, 'attending', '2020-05-02 22:26:51', '2025-12-17 19:47:57', '8418nM8A', '2978246'), + (98704, 1207, 77, 'attending', '2020-05-04 00:15:46', '2025-12-17 19:47:57', '8418nM8A', '2978247'), + (98705, 1207, 78, 'attending', '2020-05-17 21:44:54', '2025-12-17 19:47:57', '8418nM8A', '2978249'), + (98706, 1207, 79, 'attending', '2020-05-24 02:27:52', '2025-12-17 19:47:57', '8418nM8A', '2978250'), + (98707, 1207, 80, 'not_attending', '2020-06-03 11:12:08', '2025-12-17 19:47:58', '8418nM8A', '2978251'), + (98708, 1207, 81, 'attending', '2020-06-09 22:40:19', '2025-12-17 19:47:58', '8418nM8A', '2978252'), + (98709, 1207, 82, 'not_attending', '2020-04-11 00:22:24', '2025-12-17 19:47:57', '8418nM8A', '2978433'), + (98710, 1207, 83, 'not_attending', '2020-05-08 22:05:12', '2025-12-17 19:47:57', '8418nM8A', '2978438'), + (98711, 1207, 84, 'not_attending', '2020-04-13 23:29:08', '2025-12-17 19:47:57', '8418nM8A', '2980871'), + (98712, 1207, 85, 'attending', '2020-04-22 23:02:37', '2025-12-17 19:47:57', '8418nM8A', '2980872'), + (98713, 1207, 86, 'not_attending', '2020-04-14 17:45:00', '2025-12-17 19:47:57', '8418nM8A', '2981388'), + (98714, 1207, 92, 'not_attending', '2020-04-19 07:02:42', '2025-12-17 19:47:57', '8418nM8A', '2986743'), + (98715, 1207, 95, 'attending', '2020-04-19 18:21:35', '2025-12-17 19:47:57', '8418nM8A', '2987452'), + (98716, 1207, 96, 'attending', '2020-05-04 00:15:03', '2025-12-17 19:47:57', '8418nM8A', '2987453'), + (98717, 1207, 97, 'attending', '2020-05-04 00:16:18', '2025-12-17 19:47:57', '8418nM8A', '2987454'), + (98718, 1207, 98, 'attending', '2020-05-05 23:48:15', '2025-12-17 19:47:57', '8418nM8A', '2987455'), + (98719, 1207, 102, 'not_attending', '2020-04-28 13:02:12', '2025-12-17 19:47:57', '8418nM8A', '2990784'), + (98720, 1207, 104, 'not_attending', '2020-04-24 13:43:01', '2025-12-17 19:47:57', '8418nM8A', '2991471'), + (98721, 1207, 106, 'not_attending', '2020-04-26 22:34:50', '2025-12-17 19:47:57', '8418nM8A', '2993501'), + (98722, 1207, 109, 'not_attending', '2020-05-11 20:59:36', '2025-12-17 19:47:57', '8418nM8A', '2994480'), + (98723, 1207, 115, 'attending', '2020-05-10 02:04:35', '2025-12-17 19:47:57', '8418nM8A', '3001217'), + (98724, 1207, 121, 'not_attending', '2020-05-26 15:57:21', '2025-12-17 19:47:57', '8418nM8A', '3023063'), + (98725, 1207, 130, 'attending', '2020-05-19 21:34:12', '2025-12-17 19:47:57', '8418nM8A', '3028781'), + (98726, 1207, 133, 'not_attending', '2020-06-24 16:58:55', '2025-12-17 19:47:58', '8418nM8A', '3034321'), + (98727, 1207, 136, 'not_attending', '2020-05-24 20:04:10', '2025-12-17 19:47:57', '8418nM8A', '3035881'), + (98728, 1207, 137, 'attending', '2020-05-31 13:21:36', '2025-12-17 19:47:58', '8418nM8A', '3042188'), + (98729, 1207, 138, 'maybe', '2020-05-30 21:04:45', '2025-12-17 19:47:58', '8418nM8A', '3042932'), + (98730, 1207, 141, 'attending', '2020-05-31 22:30:06', '2025-12-17 19:47:58', '8418nM8A', '3049830'), + (98731, 1207, 143, 'not_attending', '2020-06-07 21:47:55', '2025-12-17 19:47:58', '8418nM8A', '3049983'), + (98732, 1207, 171, 'maybe', '2020-06-09 22:40:14', '2025-12-17 19:47:58', '8418nM8A', '3058743'), + (98733, 1207, 172, 'not_attending', '2020-06-07 05:15:46', '2025-12-17 19:47:58', '8418nM8A', '3058959'), + (98734, 1207, 173, 'not_attending', '2020-06-17 12:09:43', '2025-12-17 19:47:58', '8418nM8A', '3067093'), + (98735, 1207, 175, 'attending', '2020-06-09 22:40:58', '2025-12-17 19:47:58', '8418nM8A', '3068305'), + (98736, 1207, 180, 'attending', '2020-06-15 18:03:47', '2025-12-17 19:47:58', '8418nM8A', '3074048'), + (98737, 1207, 181, 'maybe', '2020-06-17 12:09:49', '2025-12-17 19:47:58', '8418nM8A', '3074513'), + (98738, 1207, 182, 'attending', '2020-06-17 12:10:29', '2025-12-17 19:47:55', '8418nM8A', '3074514'), + (98739, 1207, 183, 'not_attending', '2020-06-15 17:43:12', '2025-12-17 19:47:58', '8418nM8A', '3075228'), + (98740, 1207, 184, 'attending', '2020-06-15 19:58:52', '2025-12-17 19:47:58', '8418nM8A', '3075262'), + (98741, 1207, 185, 'not_attending', '2020-06-16 01:11:00', '2025-12-17 19:47:58', '8418nM8A', '3075456'), + (98742, 1207, 186, 'not_attending', '2020-06-18 19:20:30', '2025-12-17 19:47:55', '8418nM8A', '3083791'), + (98743, 1207, 187, 'not_attending', '2020-06-18 19:20:35', '2025-12-17 19:47:55', '8418nM8A', '3085151'), + (98744, 1207, 190, 'not_attending', '2020-06-30 19:02:27', '2025-12-17 19:47:55', '8418nM8A', '3087258'), + (98745, 1207, 191, 'attending', '2020-06-30 19:02:41', '2025-12-17 19:47:55', '8418nM8A', '3087259'), + (98746, 1207, 192, 'not_attending', '2020-07-12 18:43:14', '2025-12-17 19:47:55', '8418nM8A', '3087260'), + (98747, 1207, 193, 'not_attending', '2020-07-19 21:20:23', '2025-12-17 19:47:55', '8418nM8A', '3087261'), + (98748, 1207, 194, 'not_attending', '2020-07-28 22:28:17', '2025-12-17 19:47:56', '8418nM8A', '3087262'), + (98749, 1207, 195, 'attending', '2020-08-06 13:24:19', '2025-12-17 19:47:56', '8418nM8A', '3087264'), + (98750, 1207, 196, 'not_attending', '2020-08-09 16:08:14', '2025-12-17 19:47:56', '8418nM8A', '3087265'), + (98751, 1207, 197, 'not_attending', '2020-08-14 22:16:29', '2025-12-17 19:47:56', '8418nM8A', '3087266'), + (98752, 1207, 198, 'not_attending', '2020-08-29 19:56:40', '2025-12-17 19:47:56', '8418nM8A', '3087267'), + (98753, 1207, 199, 'attending', '2020-09-05 17:35:13', '2025-12-17 19:47:56', '8418nM8A', '3087268'), + (98754, 1207, 201, 'not_attending', '2020-06-20 22:37:22', '2025-12-17 19:47:55', '8418nM8A', '3088653'), + (98755, 1207, 205, 'attending', '2020-07-01 11:58:26', '2025-12-17 19:47:55', '8418nM8A', '3104804'), + (98756, 1207, 209, 'not_attending', '2020-06-28 23:28:32', '2025-12-17 19:47:55', '8418nM8A', '3106813'), + (98757, 1207, 210, 'attending', '2020-06-30 19:02:12', '2025-12-17 19:47:55', '8418nM8A', '3108972'), + (98758, 1207, 223, 'attending', '2020-09-08 12:15:11', '2025-12-17 19:47:56', '8418nM8A', '3129980'), + (98759, 1207, 226, 'not_attending', '2020-07-13 19:51:19', '2025-12-17 19:47:55', '8418nM8A', '3132817'), + (98760, 1207, 227, 'not_attending', '2020-07-13 20:08:11', '2025-12-17 19:47:55', '8418nM8A', '3132820'), + (98761, 1207, 233, 'attending', '2020-07-19 21:19:56', '2025-12-17 19:47:55', '8418nM8A', '3139773'), + (98762, 1207, 248, 'not_attending', '2021-01-12 13:45:12', '2025-12-17 19:47:48', '8418nM8A', '3149479'), + (98763, 1207, 266, 'attending', '2020-07-27 19:34:17', '2025-12-17 19:47:55', '8418nM8A', '3152194'), + (98764, 1207, 267, 'attending', '2020-07-29 03:00:38', '2025-12-17 19:47:55', '8418nM8A', '3152781'), + (98765, 1207, 269, 'attending', '2020-07-29 03:01:29', '2025-12-17 19:47:55', '8418nM8A', '3153076'), + (98766, 1207, 270, 'maybe', '2020-08-09 16:08:20', '2025-12-17 19:47:56', '8418nM8A', '3154457'), + (98767, 1207, 271, 'not_attending', '2020-07-30 20:58:45', '2025-12-17 19:47:56', '8418nM8A', '3155321'), + (98768, 1207, 273, 'not_attending', '2020-08-06 20:31:11', '2025-12-17 19:47:56', '8418nM8A', '3162006'), + (98769, 1207, 277, 'not_attending', '2020-08-03 21:10:48', '2025-12-17 19:47:56', '8418nM8A', '3163442'), + (98770, 1207, 281, 'maybe', '2020-08-09 16:05:30', '2025-12-17 19:47:56', '8418nM8A', '3166945'), + (98771, 1207, 283, 'not_attending', '2020-08-06 22:28:53', '2025-12-17 19:47:56', '8418nM8A', '3169555'), + (98772, 1207, 290, 'not_attending', '2020-08-19 17:45:52', '2025-12-17 19:47:56', '8418nM8A', '3170251'), + (98773, 1207, 291, 'not_attending', '2020-08-19 17:45:57', '2025-12-17 19:47:56', '8418nM8A', '3170252'), + (98774, 1207, 293, 'not_attending', '2020-08-14 22:16:18', '2025-12-17 19:47:56', '8418nM8A', '3172832'), + (98775, 1207, 294, 'not_attending', '2020-08-14 22:16:47', '2025-12-17 19:47:56', '8418nM8A', '3172833'), + (98776, 1207, 295, 'not_attending', '2020-08-10 03:22:18', '2025-12-17 19:47:56', '8418nM8A', '3172834'), + (98777, 1207, 296, 'attending', '2020-08-19 17:46:04', '2025-12-17 19:47:56', '8418nM8A', '3172876'), + (98778, 1207, 298, 'maybe', '2020-08-23 14:29:20', '2025-12-17 19:47:56', '8418nM8A', '3174556'), + (98779, 1207, 303, 'maybe', '2020-08-14 22:13:58', '2025-12-17 19:47:56', '8418nM8A', '3178444'), + (98780, 1207, 304, 'maybe', '2020-09-03 21:01:39', '2025-12-17 19:47:56', '8418nM8A', '3178916'), + (98781, 1207, 305, 'attending', '2020-08-14 22:14:14', '2025-12-17 19:47:56', '8418nM8A', '3179555'), + (98782, 1207, 307, 'not_attending', '2020-08-17 19:16:58', '2025-12-17 19:47:56', '8418nM8A', '3182590'), + (98783, 1207, 308, 'attending', '2020-08-19 17:33:48', '2025-12-17 19:47:56', '8418nM8A', '3183341'), + (98784, 1207, 311, 'not_attending', '2020-09-16 15:23:31', '2025-12-17 19:47:56', '8418nM8A', '3186057'), + (98785, 1207, 312, 'not_attending', '2020-09-08 12:14:57', '2025-12-17 19:47:56', '8418nM8A', '3187795'), + (98786, 1207, 314, 'not_attending', '2020-08-23 14:28:54', '2025-12-17 19:47:56', '8418nM8A', '3188480'), + (98787, 1207, 315, 'maybe', '2020-09-06 11:25:49', '2025-12-17 19:47:56', '8418nM8A', '3189085'), + (98788, 1207, 317, 'not_attending', '2020-08-26 04:25:49', '2025-12-17 19:47:56', '8418nM8A', '3191735'), + (98789, 1207, 319, 'attending', '2020-08-30 14:13:15', '2025-12-17 19:47:56', '8418nM8A', '3194179'), + (98790, 1207, 322, 'not_attending', '2020-09-14 23:51:53', '2025-12-17 19:47:56', '8418nM8A', '3197080'), + (98791, 1207, 333, 'not_attending', '2020-09-20 22:18:25', '2025-12-17 19:47:52', '8418nM8A', '3199782'), + (98792, 1207, 335, 'not_attending', '2020-09-01 22:30:56', '2025-12-17 19:47:56', '8418nM8A', '3200209'), + (98793, 1207, 339, 'not_attending', '2020-09-08 12:14:35', '2025-12-17 19:47:56', '8418nM8A', '3204469'), + (98794, 1207, 340, 'maybe', '2020-09-18 15:42:20', '2025-12-17 19:47:56', '8418nM8A', '3204470'), + (98795, 1207, 341, 'not_attending', '2020-09-21 17:54:15', '2025-12-17 19:47:52', '8418nM8A', '3204471'), + (98796, 1207, 342, 'not_attending', '2020-09-24 23:56:09', '2025-12-17 19:47:52', '8418nM8A', '3204472'), + (98797, 1207, 344, 'maybe', '2020-10-30 19:48:57', '2025-12-17 19:47:53', '8418nM8A', '3206906'), + (98798, 1207, 345, 'maybe', '2020-09-10 22:31:26', '2025-12-17 19:47:56', '8418nM8A', '3207423'), + (98799, 1207, 346, 'not_attending', '2020-09-14 11:14:29', '2025-12-17 19:47:56', '8418nM8A', '3207515'), + (98800, 1207, 348, 'not_attending', '2020-09-29 15:26:51', '2025-12-17 19:47:52', '8418nM8A', '3209159'), + (98801, 1207, 349, 'not_attending', '2020-09-14 23:51:51', '2025-12-17 19:47:56', '8418nM8A', '3209194'), + (98802, 1207, 351, 'not_attending', '2020-09-15 20:53:34', '2025-12-17 19:47:56', '8418nM8A', '3209257'), + (98803, 1207, 352, 'not_attending', '2020-09-12 22:06:19', '2025-12-17 19:47:56', '8418nM8A', '3210514'), + (98804, 1207, 355, 'attending', '2020-09-14 11:14:36', '2025-12-17 19:47:56', '8418nM8A', '3212571'), + (98805, 1207, 356, 'attending', '2020-09-14 11:59:51', '2025-12-17 19:47:51', '8418nM8A', '3212572'), + (98806, 1207, 357, 'attending', '2020-09-14 12:00:01', '2025-12-17 19:47:52', '8418nM8A', '3212573'), + (98807, 1207, 362, 'not_attending', '2020-09-23 21:39:24', '2025-12-17 19:47:52', '8418nM8A', '3214207'), + (98808, 1207, 363, 'not_attending', '2020-09-23 21:39:32', '2025-12-17 19:47:52', '8418nM8A', '3217037'), + (98809, 1207, 364, 'not_attending', '2020-09-21 21:51:47', '2025-12-17 19:47:56', '8418nM8A', '3217106'), + (98810, 1207, 365, 'maybe', '2020-09-18 16:01:30', '2025-12-17 19:47:51', '8418nM8A', '3218510'), + (98811, 1207, 366, 'not_attending', '2020-09-20 18:26:04', '2025-12-17 19:47:56', '8418nM8A', '3219750'), + (98812, 1207, 367, 'not_attending', '2020-09-24 23:55:34', '2025-12-17 19:47:51', '8418nM8A', '3219751'), + (98813, 1207, 375, 'maybe', '2020-10-02 16:33:54', '2025-12-17 19:47:52', '8418nM8A', '3222825'), + (98814, 1207, 380, 'not_attending', '2020-09-30 01:25:29', '2025-12-17 19:47:52', '8418nM8A', '3226281'), + (98815, 1207, 382, 'not_attending', '2020-10-12 21:01:06', '2025-12-17 19:47:52', '8418nM8A', '3226873'), + (98816, 1207, 384, 'attending', '2020-09-29 15:26:30', '2025-12-17 19:47:52', '8418nM8A', '3228696'), + (98817, 1207, 385, 'not_attending', '2020-09-29 09:00:26', '2025-12-17 19:47:52', '8418nM8A', '3228698'), + (98818, 1207, 386, 'not_attending', '2020-10-10 18:44:58', '2025-12-17 19:47:52', '8418nM8A', '3228699'), + (98819, 1207, 387, 'not_attending', '2020-10-11 18:30:08', '2025-12-17 19:47:52', '8418nM8A', '3228700'), + (98820, 1207, 388, 'attending', '2020-10-24 22:25:51', '2025-12-17 19:47:52', '8418nM8A', '3228701'), + (98821, 1207, 389, 'attending', '2020-09-30 20:20:43', '2025-12-17 19:47:52', '8418nM8A', '3231284'), + (98822, 1207, 390, 'not_attending', '2020-10-04 22:01:20', '2025-12-17 19:47:52', '8418nM8A', '3231510'), + (98823, 1207, 412, 'not_attending', '2020-10-05 20:25:15', '2025-12-17 19:47:52', '8418nM8A', '3236636'), + (98824, 1207, 413, 'not_attending', '2020-10-12 21:01:51', '2025-12-17 19:47:52', '8418nM8A', '3236670'), + (98825, 1207, 414, 'not_attending', '2020-10-12 21:01:27', '2025-12-17 19:47:52', '8418nM8A', '3237277'), + (98826, 1207, 415, 'maybe', '2020-10-08 00:29:40', '2025-12-17 19:47:52', '8418nM8A', '3238044'), + (98827, 1207, 416, 'maybe', '2020-10-06 23:13:14', '2025-12-17 19:47:52', '8418nM8A', '3238073'), + (98828, 1207, 417, 'maybe', '2020-10-11 18:29:49', '2025-12-17 19:47:52', '8418nM8A', '3238779'), + (98829, 1207, 418, 'not_attending', '2020-10-11 18:29:57', '2025-12-17 19:47:52', '8418nM8A', '3241728'), + (98830, 1207, 419, 'not_attending', '2020-10-11 18:29:53', '2025-12-17 19:47:52', '8418nM8A', '3242234'), + (98831, 1207, 420, 'not_attending', '2020-10-12 21:01:18', '2025-12-17 19:47:52', '8418nM8A', '3245293'), + (98832, 1207, 421, 'not_attending', '2020-10-12 21:01:55', '2025-12-17 19:47:52', '8418nM8A', '3245294'), + (98833, 1207, 424, 'not_attending', '2020-10-19 14:26:08', '2025-12-17 19:47:52', '8418nM8A', '3245751'), + (98834, 1207, 425, 'maybe', '2020-10-14 17:17:09', '2025-12-17 19:47:52', '8418nM8A', '3250097'), + (98835, 1207, 426, 'maybe', '2020-10-14 17:17:31', '2025-12-17 19:47:52', '8418nM8A', '3250232'), + (98836, 1207, 428, 'maybe', '2020-10-25 02:13:13', '2025-12-17 19:47:53', '8418nM8A', '3250332'), + (98837, 1207, 430, 'not_attending', '2020-10-21 22:55:06', '2025-12-17 19:47:52', '8418nM8A', '3253094'), + (98838, 1207, 438, 'maybe', '2020-10-28 23:21:22', '2025-12-17 19:47:53', '8418nM8A', '3256163'), + (98839, 1207, 439, 'not_attending', '2020-10-28 22:32:24', '2025-12-17 19:47:53', '8418nM8A', '3256164'), + (98840, 1207, 440, 'not_attending', '2020-11-06 21:46:37', '2025-12-17 19:47:53', '8418nM8A', '3256168'), + (98841, 1207, 441, 'not_attending', '2020-11-14 20:55:53', '2025-12-17 19:47:54', '8418nM8A', '3256169'), + (98842, 1207, 442, 'not_attending', '2020-10-22 23:05:04', '2025-12-17 19:47:52', '8418nM8A', '3260345'), + (98843, 1207, 443, 'not_attending', '2020-10-25 02:11:18', '2025-12-17 19:47:53', '8418nM8A', '3263578'), + (98844, 1207, 444, 'maybe', '2020-10-27 15:22:06', '2025-12-17 19:47:53', '8418nM8A', '3263745'), + (98845, 1207, 445, 'maybe', '2020-10-30 19:49:09', '2025-12-17 19:47:54', '8418nM8A', '3266138'), + (98846, 1207, 449, 'attending', '2020-11-06 21:46:46', '2025-12-17 19:47:53', '8418nM8A', '3272055'), + (98847, 1207, 451, 'maybe', '2020-11-02 19:22:51', '2025-12-17 19:47:53', '8418nM8A', '3272186'), + (98848, 1207, 454, 'maybe', '2020-11-06 21:47:06', '2025-12-17 19:47:54', '8418nM8A', '3275665'), + (98849, 1207, 456, 'not_attending', '2020-11-05 05:32:44', '2025-12-17 19:47:54', '8418nM8A', '3276428'), + (98850, 1207, 458, 'maybe', '2020-11-08 23:42:05', '2025-12-17 19:47:53', '8418nM8A', '3279233'), + (98851, 1207, 459, 'not_attending', '2020-11-09 23:31:56', '2025-12-17 19:47:54', '8418nM8A', '3281467'), + (98852, 1207, 461, 'not_attending', '2020-11-09 23:25:56', '2025-12-17 19:47:53', '8418nM8A', '3281469'), + (98853, 1207, 462, 'attending', '2020-11-08 23:42:13', '2025-12-17 19:47:53', '8418nM8A', '3281470'), + (98854, 1207, 466, 'maybe', '2020-11-09 23:32:17', '2025-12-17 19:47:54', '8418nM8A', '3281829'), + (98855, 1207, 468, 'not_attending', '2020-11-21 00:33:31', '2025-12-17 19:47:54', '8418nM8A', '3285413'), + (98856, 1207, 469, 'not_attending', '2020-11-19 19:23:40', '2025-12-17 19:47:54', '8418nM8A', '3285414'), + (98857, 1207, 480, 'not_attending', '2020-11-21 00:33:27', '2025-12-17 19:47:54', '8418nM8A', '3295313'), + (98858, 1207, 481, 'not_attending', '2020-11-19 22:50:27', '2025-12-17 19:47:54', '8418nM8A', '3297764'), + (98859, 1207, 484, 'not_attending', '2020-11-21 00:33:21', '2025-12-17 19:47:54', '8418nM8A', '3297792'), + (98860, 1207, 487, 'not_attending', '2020-12-01 01:47:53', '2025-12-17 19:47:54', '8418nM8A', '3311122'), + (98861, 1207, 493, 'maybe', '2020-12-01 01:48:07', '2025-12-17 19:47:54', '8418nM8A', '3313856'), + (98862, 1207, 499, 'not_attending', '2020-11-30 03:46:19', '2025-12-17 19:47:55', '8418nM8A', '3314909'), + (98863, 1207, 500, 'not_attending', '2020-12-14 02:14:52', '2025-12-17 19:47:55', '8418nM8A', '3314964'), + (98864, 1207, 501, 'not_attending', '2020-12-08 01:37:28', '2025-12-17 19:47:54', '8418nM8A', '3317834'), + (98865, 1207, 502, 'maybe', '2020-12-08 01:37:51', '2025-12-17 19:47:55', '8418nM8A', '3323365'), + (98866, 1207, 508, 'not_attending', '2021-01-13 10:23:46', '2025-12-17 19:47:48', '8418nM8A', '3324231'), + (98867, 1207, 513, 'maybe', '2020-12-15 00:22:56', '2025-12-17 19:47:55', '8418nM8A', '3329383'), + (98868, 1207, 517, 'attending', '2020-12-27 00:25:26', '2025-12-17 19:47:48', '8418nM8A', '3337137'), + (98869, 1207, 521, 'maybe', '2020-12-29 20:49:42', '2025-12-17 19:47:48', '8418nM8A', '3337454'), + (98870, 1207, 526, 'attending', '2020-12-27 00:25:19', '2025-12-17 19:47:48', '8418nM8A', '3351539'), + (98871, 1207, 529, 'attending', '2020-12-29 20:50:08', '2025-12-17 19:47:48', '8418nM8A', '3364568'), + (98872, 1207, 530, 'not_attending', '2021-01-04 19:36:14', '2025-12-17 19:47:48', '8418nM8A', '3373923'), + (98873, 1207, 532, 'not_attending', '2021-01-08 13:51:01', '2025-12-17 19:47:48', '8418nM8A', '3381412'), + (98874, 1207, 534, 'not_attending', '2021-01-08 13:51:18', '2025-12-17 19:47:48', '8418nM8A', '3384157'), + (98875, 1207, 535, 'not_attending', '2021-01-08 13:51:12', '2025-12-17 19:47:48', '8418nM8A', '3384729'), + (98876, 1207, 536, 'attending', '2021-01-07 13:40:17', '2025-12-17 19:47:48', '8418nM8A', '3386848'), + (98877, 1207, 537, 'not_attending', '2021-01-08 13:51:15', '2025-12-17 19:47:48', '8418nM8A', '3387153'), + (98878, 1207, 538, 'maybe', '2021-01-07 13:52:32', '2025-12-17 19:47:48', '8418nM8A', '3388151'), + (98879, 1207, 539, 'maybe', '2021-01-12 13:45:28', '2025-12-17 19:47:48', '8418nM8A', '3389158'), + (98880, 1207, 540, 'not_attending', '2021-01-07 13:40:32', '2025-12-17 19:47:48', '8418nM8A', '3389527'), + (98881, 1207, 543, 'not_attending', '2021-01-12 13:45:40', '2025-12-17 19:47:48', '8418nM8A', '3396499'), + (98882, 1207, 544, 'not_attending', '2021-01-12 13:45:15', '2025-12-17 19:47:48', '8418nM8A', '3396500'), + (98883, 1207, 548, 'attending', '2021-01-12 13:45:43', '2025-12-17 19:47:48', '8418nM8A', '3403650'), + (98884, 1207, 549, 'maybe', '2021-01-18 23:46:08', '2025-12-17 19:47:49', '8418nM8A', '3406988'), + (98885, 1207, 555, 'attending', '2021-01-23 20:08:25', '2025-12-17 19:47:49', '8418nM8A', '3416576'), + (98886, 1207, 556, 'maybe', '2021-01-26 14:27:53', '2025-12-17 19:47:49', '8418nM8A', '3417170'), + (98887, 1207, 557, 'maybe', '2021-01-20 01:55:39', '2025-12-17 19:47:49', '8418nM8A', '3418748'), + (98888, 1207, 558, 'maybe', '2021-01-20 17:23:54', '2025-12-17 19:47:49', '8418nM8A', '3418925'), + (98889, 1207, 559, 'maybe', '2021-01-25 22:24:31', '2025-12-17 19:47:49', '8418nM8A', '3421439'), + (98890, 1207, 560, 'attending', '2021-01-20 01:55:36', '2025-12-17 19:47:49', '8418nM8A', '3421715'), + (98891, 1207, 563, 'maybe', '2021-01-25 22:23:57', '2025-12-17 19:47:49', '8418nM8A', '3425913'), + (98892, 1207, 568, 'attending', '2021-01-25 22:24:37', '2025-12-17 19:47:50', '8418nM8A', '3430267'), + (98893, 1207, 569, 'maybe', '2021-01-27 22:47:33', '2025-12-17 19:47:49', '8418nM8A', '3432673'), + (98894, 1207, 570, 'not_attending', '2021-02-06 00:04:52', '2025-12-17 19:47:50', '8418nM8A', '3435538'), + (98895, 1207, 571, 'not_attending', '2021-02-13 21:50:11', '2025-12-17 19:47:50', '8418nM8A', '3435539'), + (98896, 1207, 577, 'not_attending', '2021-01-28 23:58:39', '2025-12-17 19:47:49', '8418nM8A', '3439167'), + (98897, 1207, 578, 'maybe', '2021-01-31 19:01:55', '2025-12-17 19:47:50', '8418nM8A', '3440043'), + (98898, 1207, 579, 'not_attending', '2021-02-06 21:31:43', '2025-12-17 19:47:50', '8418nM8A', '3440978'), + (98899, 1207, 580, 'not_attending', '2021-01-31 04:12:51', '2025-12-17 19:47:50', '8418nM8A', '3444240'), + (98900, 1207, 582, 'maybe', '2021-01-31 04:00:05', '2025-12-17 19:47:50', '8418nM8A', '3445769'), + (98901, 1207, 584, 'not_attending', '2021-02-04 12:06:17', '2025-12-17 19:47:50', '8418nM8A', '3449466'), + (98902, 1207, 591, 'maybe', '2021-02-08 00:50:51', '2025-12-17 19:47:50', '8418nM8A', '3465880'), + (98903, 1207, 598, 'maybe', '2021-02-08 00:51:05', '2025-12-17 19:47:50', '8418nM8A', '3468003'), + (98904, 1207, 599, 'not_attending', '2021-02-15 22:23:04', '2025-12-17 19:47:50', '8418nM8A', '3468117'), + (98905, 1207, 600, 'not_attending', '2021-02-22 00:29:03', '2025-12-17 19:47:50', '8418nM8A', '3468125'), + (98906, 1207, 601, 'maybe', '2021-02-08 23:41:45', '2025-12-17 19:47:50', '8418nM8A', '3468131'), + (98907, 1207, 602, 'not_attending', '2021-02-13 21:50:15', '2025-12-17 19:47:50', '8418nM8A', '3470303'), + (98908, 1207, 603, 'not_attending', '2021-02-19 23:14:17', '2025-12-17 19:47:50', '8418nM8A', '3470304'), + (98909, 1207, 604, 'attending', '2021-02-27 18:50:37', '2025-12-17 19:47:50', '8418nM8A', '3470305'), + (98910, 1207, 605, 'not_attending', '2021-02-07 17:22:08', '2025-12-17 19:47:50', '8418nM8A', '3470991'), + (98911, 1207, 606, 'not_attending', '2021-02-10 00:21:24', '2025-12-17 19:47:50', '8418nM8A', '3470998'), + (98912, 1207, 607, 'maybe', '2021-02-15 22:23:21', '2025-12-17 19:47:50', '8418nM8A', '3471882'), + (98913, 1207, 608, 'not_attending', '2021-02-10 00:21:18', '2025-12-17 19:47:50', '8418nM8A', '3475332'), + (98914, 1207, 612, 'maybe', '2021-02-15 22:23:12', '2025-12-17 19:47:50', '8418nM8A', '3490040'), + (98915, 1207, 618, 'not_attending', '2021-02-20 20:03:33', '2025-12-17 19:47:50', '8418nM8A', '3503991'), + (98916, 1207, 621, 'attending', '2021-02-28 19:31:44', '2025-12-17 19:47:51', '8418nM8A', '3517815'), + (98917, 1207, 622, 'attending', '2021-03-05 01:19:40', '2025-12-17 19:47:51', '8418nM8A', '3517816'), + (98918, 1207, 623, 'not_attending', '2021-02-28 19:31:28', '2025-12-17 19:47:51', '8418nM8A', '3523941'), + (98919, 1207, 626, 'not_attending', '2021-03-06 20:27:28', '2025-12-17 19:47:51', '8418nM8A', '3533298'), + (98920, 1207, 627, 'not_attending', '2021-03-10 00:16:57', '2025-12-17 19:47:51', '8418nM8A', '3533303'), + (98921, 1207, 628, 'not_attending', '2021-03-14 22:38:17', '2025-12-17 19:47:51', '8418nM8A', '3533305'), + (98922, 1207, 629, 'attending', '2021-03-17 22:53:21', '2025-12-17 19:47:51', '8418nM8A', '3533307'), + (98923, 1207, 630, 'not_attending', '2021-02-28 23:39:19', '2025-12-17 19:47:51', '8418nM8A', '3533425'), + (98924, 1207, 631, 'maybe', '2021-03-05 21:55:16', '2025-12-17 19:47:51', '8418nM8A', '3533850'), + (98925, 1207, 632, 'maybe', '2021-03-05 01:18:55', '2025-12-17 19:47:51', '8418nM8A', '3533853'), + (98926, 1207, 638, 'maybe', '2021-03-10 00:18:04', '2025-12-17 19:47:44', '8418nM8A', '3536632'), + (98927, 1207, 639, 'not_attending', '2021-03-01 19:38:53', '2025-12-17 19:47:51', '8418nM8A', '3536656'), + (98928, 1207, 641, 'attending', '2021-04-02 18:36:54', '2025-12-17 19:47:44', '8418nM8A', '3539916'), + (98929, 1207, 642, 'maybe', '2021-04-10 21:27:28', '2025-12-17 19:47:44', '8418nM8A', '3539917'), + (98930, 1207, 643, 'attending', '2021-04-15 00:59:31', '2025-12-17 19:47:45', '8418nM8A', '3539918'), + (98931, 1207, 644, 'not_attending', '2021-04-24 18:31:44', '2025-12-17 19:47:46', '8418nM8A', '3539919'), + (98932, 1207, 645, 'not_attending', '2021-05-07 22:22:46', '2025-12-17 19:47:46', '8418nM8A', '3539920'), + (98933, 1207, 646, 'attending', '2021-05-12 23:27:50', '2025-12-17 19:47:46', '8418nM8A', '3539921'), + (98934, 1207, 647, 'not_attending', '2021-05-20 22:04:55', '2025-12-17 19:47:46', '8418nM8A', '3539922'), + (98935, 1207, 648, 'not_attending', '2021-05-27 20:59:22', '2025-12-17 19:47:47', '8418nM8A', '3539923'), + (98936, 1207, 649, 'maybe', '2021-03-20 20:00:37', '2025-12-17 19:47:51', '8418nM8A', '3539927'), + (98937, 1207, 650, 'attending', '2021-03-05 01:25:39', '2025-12-17 19:47:44', '8418nM8A', '3539928'), + (98938, 1207, 651, 'not_attending', '2021-03-07 11:59:06', '2025-12-17 19:47:51', '8418nM8A', '3541045'), + (98939, 1207, 680, 'maybe', '2021-03-10 00:17:04', '2025-12-17 19:47:51', '8418nM8A', '3547700'), + (98940, 1207, 683, 'not_attending', '2021-03-10 00:18:37', '2025-12-17 19:47:51', '8418nM8A', '3548818'), + (98941, 1207, 684, 'maybe', '2021-03-10 00:17:31', '2025-12-17 19:47:51', '8418nM8A', '3549257'), + (98942, 1207, 687, 'maybe', '2021-03-10 00:17:20', '2025-12-17 19:47:51', '8418nM8A', '3553405'), + (98943, 1207, 690, 'maybe', '2021-03-18 23:22:58', '2025-12-17 19:47:44', '8418nM8A', '3559954'), + (98944, 1207, 693, 'not_attending', '2021-03-14 22:38:20', '2025-12-17 19:47:51', '8418nM8A', '3565907'), + (98945, 1207, 695, 'maybe', '2021-03-14 22:38:38', '2025-12-17 19:47:51', '8418nM8A', '3567535'), + (98946, 1207, 696, 'maybe', '2021-03-14 22:38:55', '2025-12-17 19:47:51', '8418nM8A', '3567536'), + (98947, 1207, 703, 'maybe', '2021-04-04 20:36:40', '2025-12-17 19:47:44', '8418nM8A', '3578388'), + (98948, 1207, 706, 'maybe', '2021-04-04 20:37:16', '2025-12-17 19:47:45', '8418nM8A', '3582734'), + (98949, 1207, 707, 'not_attending', '2021-04-11 06:02:32', '2025-12-17 19:47:46', '8418nM8A', '3583262'), + (98950, 1207, 708, 'maybe', '2021-03-23 22:59:11', '2025-12-17 19:47:44', '8418nM8A', '3587850'), + (98951, 1207, 709, 'maybe', '2021-04-02 18:37:07', '2025-12-17 19:47:44', '8418nM8A', '3587852'), + (98952, 1207, 710, 'maybe', '2021-04-04 20:35:59', '2025-12-17 19:47:44', '8418nM8A', '3587853'), + (98953, 1207, 711, 'attending', '2021-04-01 23:11:11', '2025-12-17 19:47:44', '8418nM8A', '3588075'), + (98954, 1207, 715, 'maybe', '2021-03-28 18:30:44', '2025-12-17 19:47:44', '8418nM8A', '3604146'), + (98955, 1207, 717, 'maybe', '2021-03-27 15:39:22', '2025-12-17 19:47:44', '8418nM8A', '3619523'), + (98956, 1207, 719, 'not_attending', '2021-04-04 20:35:45', '2025-12-17 19:47:44', '8418nM8A', '3635405'), + (98957, 1207, 723, 'maybe', '2021-04-04 20:35:53', '2025-12-17 19:47:44', '8418nM8A', '3649179'), + (98958, 1207, 724, 'not_attending', '2021-04-11 06:03:26', '2025-12-17 19:47:46', '8418nM8A', '3661369'), + (98959, 1207, 731, 'not_attending', '2021-04-04 01:48:59', '2025-12-17 19:47:44', '8418nM8A', '3674262'), + (98960, 1207, 734, 'maybe', '2021-04-07 22:43:20', '2025-12-17 19:47:44', '8418nM8A', '3676806'), + (98961, 1207, 735, 'not_attending', '2021-04-05 00:19:14', '2025-12-17 19:47:46', '8418nM8A', '3677402'), + (98962, 1207, 736, 'maybe', '2021-04-08 10:48:08', '2025-12-17 19:47:44', '8418nM8A', '3677701'), + (98963, 1207, 737, 'not_attending', '2021-04-06 20:46:38', '2025-12-17 19:47:44', '8418nM8A', '3679349'), + (98964, 1207, 752, 'maybe', '2021-04-15 00:59:23', '2025-12-17 19:47:44', '8418nM8A', '3699422'), + (98965, 1207, 764, 'maybe', '2021-04-20 10:37:53', '2025-12-17 19:47:45', '8418nM8A', '3720507'), + (98966, 1207, 765, 'not_attending', '2021-04-20 10:37:43', '2025-12-17 19:47:45', '8418nM8A', '3720508'), + (98967, 1207, 771, 'not_attending', '2021-04-29 22:22:16', '2025-12-17 19:47:46', '8418nM8A', '3726420'), + (98968, 1207, 772, 'maybe', '2021-04-29 22:22:28', '2025-12-17 19:47:46', '8418nM8A', '3726421'), + (98969, 1207, 774, 'maybe', '2021-04-20 23:35:49', '2025-12-17 19:47:45', '8418nM8A', '3730212'), + (98970, 1207, 777, 'maybe', '2021-05-01 19:47:43', '2025-12-17 19:47:46', '8418nM8A', '3746248'), + (98971, 1207, 779, 'maybe', '2021-05-02 21:44:02', '2025-12-17 19:47:46', '8418nM8A', '3757118'), + (98972, 1207, 782, 'maybe', '2021-05-02 21:44:08', '2025-12-17 19:47:46', '8418nM8A', '3761843'), + (98973, 1207, 784, 'maybe', '2021-05-02 21:44:18', '2025-12-17 19:47:46', '8418nM8A', '3768775'), + (98974, 1207, 788, 'not_attending', '2021-05-07 22:22:35', '2025-12-17 19:47:46', '8418nM8A', '3781975'), + (98975, 1207, 791, 'maybe', '2021-05-07 22:22:59', '2025-12-17 19:47:46', '8418nM8A', '3792735'), + (98976, 1207, 792, 'not_attending', '2021-05-07 21:02:55', '2025-12-17 19:47:46', '8418nM8A', '3793156'), + (98977, 1207, 815, 'not_attending', '2021-05-27 20:59:17', '2025-12-17 19:47:47', '8418nM8A', '3818136'), + (98978, 1207, 816, 'maybe', '2021-05-19 18:55:05', '2025-12-17 19:47:46', '8418nM8A', '3826524'), + (98979, 1207, 823, 'not_attending', '2021-06-19 20:25:07', '2025-12-17 19:47:48', '8418nM8A', '3974109'), + (98980, 1207, 825, 'maybe', '2021-05-31 22:36:18', '2025-12-17 19:47:47', '8418nM8A', '3975283'), + (98981, 1207, 826, 'maybe', '2021-06-16 14:22:27', '2025-12-17 19:47:48', '8418nM8A', '3975310'), + (98982, 1207, 827, 'attending', '2021-06-04 18:24:26', '2025-12-17 19:47:47', '8418nM8A', '3975311'), + (98983, 1207, 828, 'not_attending', '2021-06-09 23:09:58', '2025-12-17 19:47:47', '8418nM8A', '3975312'), + (98984, 1207, 838, 'not_attending', '2021-06-06 23:36:48', '2025-12-17 19:47:47', '8418nM8A', '3994992'), + (98985, 1207, 844, 'not_attending', '2021-06-10 12:27:51', '2025-12-17 19:47:38', '8418nM8A', '4014338'), + (98986, 1207, 867, 'not_attending', '2021-06-22 09:09:56', '2025-12-17 19:47:38', '8418nM8A', '4021848'), + (98987, 1207, 869, 'not_attending', '2021-06-14 00:21:45', '2025-12-17 19:47:38', '8418nM8A', '4136744'), + (98988, 1207, 870, 'maybe', '2021-06-27 23:27:30', '2025-12-17 19:47:39', '8418nM8A', '4136937'), + (98989, 1207, 871, 'not_attending', '2021-07-04 23:54:15', '2025-12-17 19:47:39', '8418nM8A', '4136938'), + (98990, 1207, 872, 'not_attending', '2021-06-21 20:53:06', '2025-12-17 19:47:40', '8418nM8A', '4136947'), + (98991, 1207, 882, 'not_attending', '2021-06-22 09:10:04', '2025-12-17 19:47:38', '8418nM8A', '4207630'), + (98992, 1207, 884, 'not_attending', '2021-07-17 04:16:58', '2025-12-17 19:47:42', '8418nM8A', '4210314'), + (98993, 1207, 887, 'not_attending', '2021-07-11 15:56:48', '2025-12-17 19:47:39', '8418nM8A', '4225444'), + (98994, 1207, 897, 'maybe', '2021-06-27 23:27:06', '2025-12-17 19:47:38', '8418nM8A', '4232132'), + (98995, 1207, 899, 'not_attending', '2021-07-02 06:40:44', '2025-12-17 19:47:39', '8418nM8A', '4239259'), + (98996, 1207, 900, 'not_attending', '2021-07-18 19:18:42', '2025-12-17 19:47:40', '8418nM8A', '4240316'), + (98997, 1207, 901, 'not_attending', '2021-07-26 18:31:24', '2025-12-17 19:47:40', '8418nM8A', '4240317'), + (98998, 1207, 902, 'not_attending', '2021-08-04 05:11:36', '2025-12-17 19:47:41', '8418nM8A', '4240318'), + (98999, 1207, 903, 'not_attending', '2021-08-11 05:26:28', '2025-12-17 19:47:42', '8418nM8A', '4240320'), + (99000, 1207, 905, 'not_attending', '2021-07-04 06:06:54', '2025-12-17 19:47:39', '8418nM8A', '4250163'), + (99001, 1207, 919, 'not_attending', '2021-07-14 04:03:34', '2025-12-17 19:47:39', '8418nM8A', '4275957'), + (99002, 1207, 920, 'not_attending', '2021-07-25 08:56:08', '2025-12-17 19:47:40', '8418nM8A', '4277819'), + (99003, 1207, 933, 'not_attending', '2021-07-25 03:13:40', '2025-12-17 19:47:40', '8418nM8A', '4301723'), + (99004, 1207, 934, 'not_attending', '2021-08-03 05:48:04', '2025-12-17 19:47:40', '8418nM8A', '4302093'), + (99005, 1207, 935, 'not_attending', '2021-08-11 21:03:11', '2025-12-17 19:47:41', '8418nM8A', '4304151'), + (99006, 1207, 961, 'not_attending', '2021-08-08 05:59:30', '2025-12-17 19:47:42', '8418nM8A', '4345519'), + (99007, 1207, 971, 'not_attending', '2021-09-07 03:46:14', '2025-12-17 19:47:43', '8418nM8A', '4356801'), + (99008, 1207, 972, 'not_attending', '2021-08-13 23:26:34', '2025-12-17 19:47:42', '8418nM8A', '4358025'), + (99009, 1207, 973, 'not_attending', '2021-08-15 21:25:38', '2025-12-17 19:47:42', '8418nM8A', '4366186'), + (99010, 1207, 974, 'not_attending', '2021-08-15 21:25:45', '2025-12-17 19:47:42', '8418nM8A', '4366187'), + (99011, 1207, 988, 'not_attending', '2021-08-24 02:24:51', '2025-12-17 19:47:42', '8418nM8A', '4402823'), + (99012, 1207, 990, 'not_attending', '2021-08-28 22:26:47', '2025-12-17 19:47:43', '8418nM8A', '4420735'), + (99013, 1207, 991, 'not_attending', '2021-08-28 22:27:01', '2025-12-17 19:47:43', '8418nM8A', '4420738'), + (99014, 1207, 992, 'not_attending', '2021-08-28 22:27:28', '2025-12-17 19:47:33', '8418nM8A', '4420739'), + (99015, 1207, 993, 'not_attending', '2021-08-28 22:27:38', '2025-12-17 19:47:34', '8418nM8A', '4420741'), + (99016, 1207, 995, 'not_attending', '2021-08-28 22:27:48', '2025-12-17 19:47:34', '8418nM8A', '4420744'), + (99017, 1207, 996, 'not_attending', '2021-08-28 22:27:57', '2025-12-17 19:47:35', '8418nM8A', '4420747'), + (99018, 1207, 997, 'not_attending', '2021-08-28 22:28:05', '2025-12-17 19:47:35', '8418nM8A', '4420748'), + (99019, 1207, 998, 'not_attending', '2021-08-28 22:28:11', '2025-12-17 19:47:36', '8418nM8A', '4420749'), + (99020, 1207, 1023, 'not_attending', '2021-09-09 19:52:13', '2025-12-17 19:47:43', '8418nM8A', '4461883'), + (99021, 1207, 1067, 'not_attending', '2021-09-22 22:44:50', '2025-12-17 19:47:34', '8418nM8A', '4508342'), + (99022, 1207, 1086, 'not_attending', '2021-10-13 02:08:17', '2025-12-17 19:47:35', '8418nM8A', '4568602'), + (99023, 1207, 1087, 'not_attending', '2021-10-15 06:25:26', '2025-12-17 19:47:35', '8418nM8A', '4572153'), + (99024, 1207, 1093, 'not_attending', '2021-10-22 12:03:24', '2025-12-17 19:47:35', '8418nM8A', '4585962'), + (99025, 1207, 1095, 'not_attending', '2021-10-27 20:09:07', '2025-12-17 19:47:36', '8418nM8A', '4596356'), + (99026, 1207, 1097, 'not_attending', '2021-10-28 02:33:09', '2025-12-17 19:47:36', '8418nM8A', '4598860'), + (99027, 1207, 1098, 'not_attending', '2021-10-28 02:33:53', '2025-12-17 19:47:36', '8418nM8A', '4598861'), + (99028, 1207, 1099, 'not_attending', '2021-10-31 01:25:42', '2025-12-17 19:47:36', '8418nM8A', '4602797'), + (99029, 1207, 1114, 'not_attending', '2021-11-12 00:49:23', '2025-12-17 19:47:36', '8418nM8A', '4637896'), + (99030, 1207, 1116, 'not_attending', '2021-11-13 00:44:36', '2025-12-17 19:47:37', '8418nM8A', '4642994'), + (99031, 1207, 1117, 'not_attending', '2021-11-13 00:44:54', '2025-12-17 19:47:37', '8418nM8A', '4642995'), + (99032, 1207, 1118, 'not_attending', '2021-11-13 00:45:02', '2025-12-17 19:47:38', '8418nM8A', '4642996'), + (99033, 1207, 1119, 'not_attending', '2021-11-13 00:44:25', '2025-12-17 19:47:31', '8418nM8A', '4642997'), + (99034, 1207, 1126, 'not_attending', '2021-11-14 22:08:38', '2025-12-17 19:47:38', '8418nM8A', '4645687'), + (99035, 1207, 1127, 'not_attending', '2021-11-14 22:26:13', '2025-12-17 19:47:38', '8418nM8A', '4645698'), + (99036, 1207, 1128, 'not_attending', '2021-11-14 22:30:12', '2025-12-17 19:47:37', '8418nM8A', '4645704'), + (99037, 1207, 1129, 'not_attending', '2021-11-14 22:30:18', '2025-12-17 19:47:37', '8418nM8A', '4645705'), + (99038, 1207, 1134, 'not_attending', '2021-11-24 06:58:36', '2025-12-17 19:47:37', '8418nM8A', '4668385'), + (99039, 1207, 1149, 'not_attending', '2021-12-08 03:35:20', '2025-12-17 19:47:38', '8418nM8A', '4694407'), + (99040, 1207, 1175, 'not_attending', '2022-01-22 22:42:39', '2025-12-17 19:47:32', '8418nM8A', '4736497'), + (99041, 1207, 1177, 'not_attending', '2022-02-12 23:02:50', '2025-12-17 19:47:32', '8418nM8A', '4736499'), + (99042, 1207, 1178, 'not_attending', '2022-01-22 22:28:18', '2025-12-17 19:47:32', '8418nM8A', '4736500'), + (99043, 1207, 1181, 'not_attending', '2022-03-05 21:32:04', '2025-12-17 19:47:33', '8418nM8A', '4736503'), + (99044, 1207, 1182, 'not_attending', '2022-03-08 22:59:25', '2025-12-17 19:47:33', '8418nM8A', '4736504'), + (99045, 1207, 1185, 'not_attending', '2022-01-09 04:45:35', '2025-12-17 19:47:31', '8418nM8A', '4746789'), + (99046, 1207, 1188, 'not_attending', '2022-01-11 03:20:39', '2025-12-17 19:47:31', '8418nM8A', '4753929'), + (99047, 1207, 1232, 'not_attending', '2022-02-08 21:52:28', '2025-12-17 19:47:32', '8418nM8A', '5038850'), + (99048, 1207, 1236, 'not_attending', '2022-02-14 08:46:07', '2025-12-17 19:47:32', '8418nM8A', '5045826'), + (99049, 1207, 1259, 'not_attending', '2022-02-28 22:16:48', '2025-12-17 19:47:33', '8418nM8A', '5132533'), + (99050, 1207, 1272, 'not_attending', '2022-03-15 20:45:11', '2025-12-17 19:47:25', '8418nM8A', '5186582'), + (99051, 1207, 1273, 'not_attending', '2022-03-15 20:47:08', '2025-12-17 19:47:25', '8418nM8A', '5186583'), + (99052, 1207, 1274, 'not_attending', '2022-03-15 20:47:15', '2025-12-17 19:47:26', '8418nM8A', '5186585'), + (99053, 1207, 1281, 'not_attending', '2022-03-17 15:06:07', '2025-12-17 19:47:27', '8418nM8A', '5190437'), + (99054, 1207, 1297, 'not_attending', '2022-03-28 21:17:26', '2025-12-17 19:47:25', '8418nM8A', '5215989'), + (99055, 1207, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:58', '8418nM8A', '6045684'), + (99056, 1208, 1868, 'not_attending', '2023-02-22 00:26:14', '2025-12-17 19:47:07', '4Wb8b9pA', '5880942'), + (99057, 1208, 1869, 'not_attending', '2023-03-07 23:14:30', '2025-12-17 19:47:09', '4Wb8b9pA', '5880943'), + (99058, 1208, 1890, 'not_attending', '2023-02-21 19:59:26', '2025-12-17 19:47:08', '4Wb8b9pA', '5900200'), + (99059, 1208, 1891, 'not_attending', '2023-03-22 17:40:30', '2025-12-17 19:46:56', '4Wb8b9pA', '5900202'), + (99060, 1208, 1892, 'not_attending', '2023-03-16 21:51:52', '2025-12-17 19:46:56', '4Wb8b9pA', '5900203'), + (99061, 1208, 1915, 'not_attending', '2023-02-15 19:28:22', '2025-12-17 19:47:07', '4Wb8b9pA', '5910522'), + (99062, 1208, 1916, 'not_attending', '2023-02-18 17:27:39', '2025-12-17 19:47:08', '4Wb8b9pA', '5910526'), + (99063, 1208, 1917, 'not_attending', '2023-03-09 12:34:09', '2025-12-17 19:47:10', '4Wb8b9pA', '5910528'), + (99064, 1208, 1922, 'not_attending', '2023-02-17 02:05:23', '2025-12-17 19:47:07', '4Wb8b9pA', '5916219'), + (99065, 1208, 1933, 'not_attending', '2023-02-21 18:00:12', '2025-12-17 19:47:08', '4Wb8b9pA', '5936234'), + (99066, 1208, 1934, 'not_attending', '2023-02-20 19:06:43', '2025-12-17 19:47:08', '4Wb8b9pA', '5936691'), + (99067, 1208, 1935, 'not_attending', '2023-02-24 16:57:57', '2025-12-17 19:47:09', '4Wb8b9pA', '5958351'), + (99068, 1208, 1938, 'not_attending', '2023-02-24 04:19:09', '2025-12-17 19:47:08', '4Wb8b9pA', '5959751'), + (99069, 1208, 1939, 'not_attending', '2023-02-24 04:29:29', '2025-12-17 19:47:08', '4Wb8b9pA', '5959755'), + (99070, 1208, 1940, 'not_attending', '2023-02-24 06:17:38', '2025-12-17 19:47:09', '4Wb8b9pA', '5960055'), + (99071, 1208, 1941, 'not_attending', '2023-02-25 23:34:57', '2025-12-17 19:47:09', '4Wb8b9pA', '5961684'), + (99072, 1208, 1944, 'not_attending', '2023-02-25 23:07:58', '2025-12-17 19:47:09', '4Wb8b9pA', '5962132'), + (99073, 1208, 1945, 'not_attending', '2023-02-25 23:08:23', '2025-12-17 19:47:10', '4Wb8b9pA', '5962133'), + (99074, 1208, 1946, 'not_attending', '2023-02-25 23:08:32', '2025-12-17 19:46:56', '4Wb8b9pA', '5962134'), + (99075, 1208, 1948, 'not_attending', '2023-02-26 04:39:38', '2025-12-17 19:46:57', '4Wb8b9pA', '5962317'), + (99076, 1208, 1949, 'not_attending', '2023-02-26 04:44:15', '2025-12-17 19:46:59', '4Wb8b9pA', '5962318'), + (99077, 1208, 1951, 'not_attending', '2023-03-17 22:37:31', '2025-12-17 19:46:57', '4Wb8b9pA', '5965933'), + (99078, 1208, 1954, 'not_attending', '2023-03-03 03:11:44', '2025-12-17 19:47:08', '4Wb8b9pA', '5967014'), + (99079, 1208, 1957, 'not_attending', '2023-03-08 20:55:51', '2025-12-17 19:47:10', '4Wb8b9pA', '5972815'), + (99080, 1208, 1961, 'not_attending', '2023-03-07 00:55:20', '2025-12-17 19:47:10', '4Wb8b9pA', '5974016'), + (99081, 1208, 1965, 'not_attending', '2023-03-10 22:07:26', '2025-12-17 19:47:09', '4Wb8b9pA', '5981515'), + (99082, 1208, 1969, 'not_attending', '2023-03-12 23:06:41', '2025-12-17 19:46:56', '4Wb8b9pA', '5993516'), + (99083, 1208, 1977, 'not_attending', '2023-03-16 04:48:53', '2025-12-17 19:46:56', '4Wb8b9pA', '5998939'), + (99084, 1208, 1978, 'not_attending', '2023-03-16 19:32:57', '2025-12-17 19:46:58', '4Wb8b9pA', '6028191'), + (99085, 1208, 1982, 'not_attending', '2023-03-23 23:33:55', '2025-12-17 19:46:57', '4Wb8b9pA', '6040066'), + (99086, 1208, 1984, 'not_attending', '2023-03-25 20:54:39', '2025-12-17 19:46:57', '4Wb8b9pA', '6042717'), + (99087, 1208, 1990, 'not_attending', '2023-03-28 19:55:26', '2025-12-17 19:46:57', '4Wb8b9pA', '6045684'); -- Dumping data for table milsim_website_development.course_attendee_roles: ~5 rows (approximately) INSERT INTO `course_attendee_roles` (`id`, `name`, `description`, `created_at`, `updated_at`, `deleted`) VALUES @@ -102456,61 +102534,2190 @@ INSERT INTO `course_attendee_roles` (`id`, `name`, `description`, `created_at`, (4, 'Assistant Trainer', 'Individual assisting the Primary Trainer as a support trainer.', '2023-05-03 01:48:12', '2025-12-15 23:38:56', 0), (5, 'No-Show', 'Individual who signed up but did not attend the training.', '2025-11-20 16:27:35', '2025-11-20 16:28:59', 0); --- Dumping data for table milsim_website_development.course_attendees: ~24 rows (approximately) -INSERT INTO `course_attendees` (`passed_bookwork`, `passed_qual`, `attendee_id`, `course_event_id`, `attendee_role_id`, `created_at`, `updated_at`, `remarks`, `expired`, `expired_reason`) VALUES - (1, 0, 3, 5, 2, '2025-12-21 18:14:52', '2025-12-21 18:14:52', '', 0, '0'); -INSERT INTO `course_attendees` (`passed_bookwork`, `passed_qual`, `attendee_id`, `course_event_id`, `attendee_role_id`, `created_at`, `updated_at`, `remarks`, `expired`, `expired_reason`) VALUES - (0, 0, 8, 2, 5, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), - (0, 0, 9, 2, 2, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), - (0, 1, 24, 1, 2, '2025-12-17 20:06:22', '2025-12-17 20:06:22', '', 0, '0'), - (0, 0, 24, 9, 2, '2025-12-28 18:53:40', '2025-12-28 18:53:40', 'Soft Failures:\n- Landing at the Hot LZ outside of the 30 second time-frame.\n- Failing to drop the sling loaded vehicle within the helipad during the sling load portion.\n- Moving outside of the Drop Zone assigned during the para-drop portion.\n\nHard Failures:\n- Catastrophic loss of airframe (UH-60) during autorotation.', 0, '0'), - (1, 1, 28, 3, 1, '2025-12-21 18:11:17', '2025-12-21 18:11:17', '', 0, '0'), - (1, 1, 28, 4, 1, '2025-12-21 18:11:17', '2025-12-21 18:11:17', '', 0, '0'), - (1, 0, 28, 5, 1, '2025-12-21 18:14:52', '2025-12-21 18:14:52', '', 0, '0'), - (0, 0, 28, 6, 1, '2025-12-28 13:41:12', '2025-12-28 13:41:12', '', 0, '0'), - (0, 0, 28, 7, 1, '2025-12-28 14:12:36', '2025-12-28 14:12:36', '', 0, '0'), - (1, 1, 28, 8, 1, '2025-12-28 16:24:57', '2025-12-28 16:24:57', '1) Make sure your Steam Wishlist is Up to Date and viewable by others\n2) Wishlist should contain a variety of game categories (Be considerate of others who may not feel comfortable purchasing from specific categories Lack of Variety will void participation.) \n3) Gifts will be selected from your individuals Wishlist\n4) Gift price range will be $10 to $30 (If they have multiple games on their Wishlist, maybe get them two to get to $10)\n5) Users must have joined and been ACTIVE in the Iceberg community for a reasonable amount of time (Iceberg Admin Discretion) and be in good stating within the community.\n6) Secret Santa is just that A Secret ;)\n\n', 0, '0'), - (0, 0, 37, 2, 1, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), - (1, 1, 38, 3, 2, '2025-12-21 18:11:17', '2025-12-21 18:11:17', '', 0, '0'), - (1, 1, 38, 4, 2, '2025-12-21 18:11:17', '2025-12-21 18:11:17', '', 0, '0'), - (1, 0, 38, 5, 2, '2025-12-21 18:14:52', '2025-12-21 18:14:52', '', 0, '0'), - (0, 1, 38, 6, 2, '2025-12-28 13:41:12', '2025-12-28 13:41:12', '', 0, '0'), - (1, 0, 46, 7, 2, '2025-12-28 14:12:36', '2025-12-28 14:12:36', '1) Make sure your Steam Wishlist is Up to Date and viewable by others\n2) Wishlist should contain a variety of game categories (Be considerate of others who may not feel comfortable purchasing from specific categories Lack of Variety will void participation.) \n3) Gifts will be selected from your individuals Wishlist\n4) Gift price range will be $10 to $30 (If they have multiple games on their Wishlist, maybe get them two to get to $10)\n5) Users must have joined and been ACTIVE in the Iceberg community for a reasonable amount of time (Iceberg Admin Discretion) and be in good stating within the community.\n6) Secret Santa is just that A Secret ;)', 0, '0'), - (1, 1, 46, 8, 2, '2025-12-28 16:24:57', '2025-12-28 16:24:57', '1) Make sure your Steam Wishlist is Up to Date and viewable by others\n2) Wishlist should contain a variety of game categories (Be considerate of others who may not feel comfortable purchasing from specific categories Lack of Variety will void participation.) \n3) Gifts will be selected from your individuals Wishlist\n4) Gift price range will be $10 to $30 (If they have multiple games on their Wishlist, maybe get them two to get to $10)\n5) Users must have joined and been ACTIVE in the Iceberg community for a reasonable amount of time (Iceberg Admin Discretion) and be in good stating within the community.\n6) Secret Santa is just that A Secret ;)\n\n', 0, '0'), - (0, 0, 47, 2, 2, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), - (0, 0, 70, 2, 4, '2025-12-20 23:53:06', '2025-12-20 23:53:06', '', 0, '0'), - (0, 0, 80, 1, 1, '2025-12-17 20:06:22', '2025-12-17 20:06:22', '', 0, '0'), - (0, 0, 80, 9, 1, '2025-12-28 18:53:40', '2025-12-28 18:53:40', '', 0, '0'), - (1, 1, 539, 3, 2, '2025-12-21 18:11:17', '2025-12-21 18:11:17', 'yeeyee', 0, '0'), - (1, 1, 539, 4, 2, '2025-12-21 18:11:17', '2025-12-21 18:11:17', 'yeeyee', 0, '0'); +-- Dumping data for table milsim_website_development.course_attendees: ~1,709 rows (approximately) +INSERT INTO `course_attendees` (`id`, `passed_bookwork`, `passed_qual`, `attendee_id`, `course_event_id`, `attendee_role_id`, `created_at`, `updated_at`, `remarks`, `expired`, `expired_reason`, `expired_date`) VALUES + (1, 1, 0, 1, 244, 2, '2025-12-30 20:38:47', '2025-12-30 20:38:47', '', 0, NULL, NULL); +INSERT INTO `course_attendees` (`id`, `passed_bookwork`, `passed_qual`, `attendee_id`, `course_event_id`, `attendee_role_id`, `created_at`, `updated_at`, `remarks`, `expired`, `expired_reason`, `expired_date`) VALUES + (2, 0, 0, 1, 390, 1, '2026-01-01 21:14:19', '2026-01-01 21:14:19', '', 0, NULL, NULL), + (3, 0, 0, 2, 78, 1, '2025-12-22 23:28:09', '2025-12-22 23:28:09', '', 0, '0', NULL), + (4, 0, 0, 2, 79, 1, '2025-12-22 23:30:21', '2025-12-22 23:30:21', '', 0, '0', NULL), + (5, 0, 0, 2, 80, 1, '2025-12-22 23:31:11', '2025-12-22 23:31:11', '', 0, '0', NULL), + (6, 0, 0, 2, 92, 3, '2025-12-23 20:43:48', '2025-12-23 20:43:48', '', 0, '0', NULL), + (7, 0, 0, 2, 116, 1, '2025-12-26 23:21:17', '2025-12-26 23:21:17', '', 0, '0', NULL), + (8, 0, 0, 2, 117, 1, '2025-12-26 23:22:24', '2025-12-26 23:22:24', '', 0, '0', NULL), + (9, 0, 0, 2, 129, 1, '2025-12-28 15:12:54', '2025-12-28 15:12:54', '', 0, '0', NULL), + (10, 0, 0, 2, 130, 1, '2025-12-28 15:13:49', '2025-12-28 15:13:49', '', 0, '0', NULL), + (11, 0, 0, 2, 173, 1, '2025-12-28 19:32:33', '2025-12-28 19:32:33', '', 0, NULL, NULL), + (12, 0, 0, 2, 174, 1, '2025-12-28 19:33:29', '2025-12-28 19:33:29', '', 0, NULL, NULL), + (13, 0, 0, 2, 179, 3, '2025-12-28 20:10:50', '2025-12-28 20:10:50', '', 0, NULL, NULL), + (14, 0, 0, 2, 185, 1, '2025-12-28 21:12:59', '2025-12-28 21:12:59', '', 0, NULL, NULL), + (15, 0, 0, 2, 186, 1, '2025-12-28 21:17:42', '2025-12-28 21:17:42', '', 0, NULL, NULL), + (16, 0, 0, 2, 187, 1, '2025-12-28 21:19:39', '2025-12-28 21:19:39', '', 0, NULL, NULL), + (17, 0, 0, 2, 196, 4, '2025-12-29 00:01:53', '2025-12-29 00:01:53', '', 0, NULL, NULL), + (18, 0, 0, 2, 200, 4, '2025-12-29 22:23:58', '2025-12-29 22:23:58', '', 0, NULL, NULL), + (19, 1, 1, 2, 221, 2, '2025-12-30 15:50:20', '2025-12-30 15:50:20', '', 0, NULL, NULL), + (20, 1, 0, 2, 232, 2, '2025-12-30 17:11:22', '2025-12-30 17:11:22', '', 0, NULL, NULL), + (21, 0, 0, 2, 234, 4, '2025-12-30 17:38:22', '2025-12-30 17:38:22', '', 0, NULL, NULL), + (22, 0, 0, 2, 235, 4, '2025-12-30 17:42:23', '2025-12-30 17:42:23', '', 0, NULL, NULL), + (23, 0, 0, 2, 236, 4, '2025-12-30 17:43:27', '2025-12-30 17:43:27', '', 0, NULL, NULL), + (24, 1, 1, 2, 237, 2, '2025-12-30 17:47:34', '2025-12-30 17:47:34', '', 0, NULL, NULL), + (25, 1, 0, 2, 238, 2, '2025-12-30 18:03:25', '2025-12-30 18:03:25', '', 0, NULL, NULL), + (26, 1, 1, 2, 240, 2, '2025-12-30 18:41:44', '2025-12-30 18:41:44', '', 0, NULL, NULL), + (27, 0, 0, 2, 247, 4, '2025-12-30 20:42:34', '2025-12-30 20:42:34', '', 0, NULL, NULL), + (28, 1, 0, 2, 251, 2, '2025-12-30 20:48:56', '2025-12-30 20:48:56', '', 0, NULL, NULL), + (29, 1, 0, 2, 252, 2, '2025-12-30 22:41:36', '2025-12-30 22:41:36', '', 0, NULL, NULL), + (30, 0, 0, 2, 266, 3, '2025-12-31 01:17:27', '2025-12-31 01:17:27', '', 0, NULL, NULL), + (31, 0, 0, 2, 269, 4, '2025-12-31 16:57:23', '2025-12-31 16:57:23', '', 0, NULL, NULL), + (32, 0, 0, 2, 270, 4, '2025-12-31 16:58:37', '2025-12-31 16:58:37', '', 0, NULL, NULL), + (33, 0, 0, 2, 271, 3, '2025-12-31 17:00:33', '2025-12-31 17:00:33', '', 0, NULL, NULL), + (34, 1, 0, 2, 283, 2, '2025-12-31 17:50:20', '2025-12-31 17:50:20', '', 0, NULL, NULL), + (35, 1, 0, 2, 284, 2, '2025-12-31 17:51:22', '2025-12-31 17:51:22', '', 0, NULL, NULL), + (36, 0, 1, 2, 309, 2, '2025-12-31 21:03:38', '2025-12-31 21:03:38', '1:12 28/30', 0, NULL, NULL), + (37, 0, 1, 2, 310, 2, '2025-12-31 21:04:39', '2025-12-31 21:04:39', '5/5 1st Attempt', 0, NULL, NULL), + (38, 1, 0, 2, 311, 2, '2025-12-31 21:06:14', '2025-12-31 21:06:14', 'Going Alpha', 0, NULL, NULL), + (39, 0, 0, 2, 361, 3, '2026-01-01 16:15:50', '2026-01-01 16:15:50', '', 0, NULL, NULL), + (40, 0, 0, 2, 370, 1, '2026-01-01 18:49:02', '2026-01-01 18:49:02', '', 0, NULL, NULL), + (41, 0, 0, 2, 371, 4, '2026-01-01 18:51:48', '2026-01-01 18:51:48', '', 0, NULL, NULL), + (42, 0, 0, 2, 372, 3, '2026-01-01 18:56:04', '2026-01-01 18:56:04', '', 0, NULL, NULL), + (43, 0, 0, 3, 63, 2, '2025-12-22 21:57:38', '2025-12-22 21:57:38', 'Fail 1 hard fail', 0, '0', NULL), + (44, 1, 0, 3, 68, 2, '2025-12-22 22:21:05', '2025-12-22 22:21:05', '', 0, '0', NULL), + (45, 0, 0, 3, 389, 3, '2026-01-01 21:12:04', '2026-01-01 21:12:04', '', 0, NULL, NULL), + (46, 1, 0, 3, 390, 2, '2026-01-01 21:14:19', '2026-01-01 21:14:19', 'Going Alpha', 0, NULL, NULL), + (47, 0, 0, 4, 107, 1, '2025-12-24 23:56:21', '2025-12-24 23:56:21', '', 0, '0', NULL), + (48, 0, 0, 4, 114, 1, '2025-12-26 22:18:31', '2025-12-26 22:18:31', '', 0, '0', NULL), + (49, 0, 0, 4, 124, 1, '2025-12-28 14:51:12', '2025-12-28 14:51:12', '', 0, '0', NULL), + (50, 0, 0, 4, 125, 1, '2025-12-28 14:51:51', '2025-12-28 14:51:51', '', 0, '0', NULL), + (51, 0, 0, 4, 137, 1, '2025-12-28 15:34:43', '2025-12-28 15:34:43', '', 0, '0', NULL), + (52, 0, 0, 4, 138, 1, '2025-12-28 15:35:32', '2025-12-28 15:35:32', '', 0, '0', NULL), + (53, 0, 0, 4, 139, 3, '2025-12-28 15:40:38', '2025-12-28 15:40:38', '', 0, '0', NULL), + (54, 0, 0, 4, 156, 4, '2025-12-28 17:29:22', '2025-12-28 17:29:22', '- Observation Requirement Met', 0, NULL, NULL), + (55, 0, 0, 4, 157, 2, '2025-12-28 17:34:27', '2025-12-28 17:34:27', '- Observation Requirement Met', 0, NULL, NULL), + (56, 0, 1, 4, 213, 2, '2025-12-30 14:34:47', '2025-12-30 14:34:47', '', 0, NULL, NULL), + (57, 0, 0, 4, 230, 3, '2025-12-30 16:53:12', '2025-12-30 16:53:12', '', 0, NULL, NULL), + (58, 1, 0, 4, 239, 2, '2025-12-30 18:31:31', '2025-12-30 18:31:31', '', 0, NULL, NULL), + (59, 1, 1, 4, 240, 2, '2025-12-30 18:41:44', '2025-12-30 18:41:44', '', 0, NULL, NULL), + (60, 1, 0, 4, 242, 2, '2025-12-30 19:34:27', '2025-12-30 19:34:27', '', 0, NULL, NULL), + (61, 1, 0, 4, 243, 2, '2025-12-30 20:37:35', '2025-12-30 20:37:35', '', 0, NULL, NULL), + (62, 1, 0, 4, 244, 2, '2025-12-30 20:38:47', '2025-12-30 20:38:47', '', 0, NULL, NULL), + (63, 1, 0, 4, 249, 2, '2025-12-30 20:46:03', '2025-12-30 20:46:03', '', 0, NULL, NULL), + (64, 1, 0, 4, 255, 2, '2025-12-30 22:52:44', '2025-12-30 22:52:44', '', 0, NULL, NULL), + (65, 1, 0, 4, 256, 2, '2025-12-30 22:55:58', '2025-12-30 22:55:58', '', 0, NULL, NULL), + (66, 1, 0, 4, 360, 2, '2026-01-01 16:09:30', '2026-01-01 16:09:30', 'Going Alpha', 0, NULL, NULL), + (67, 0, 0, 4, 370, 3, '2026-01-01 18:49:02', '2026-01-01 18:49:02', '', 0, NULL, NULL), + (68, 1, 0, 4, 373, 2, '2026-01-01 18:58:14', '2026-01-01 18:58:14', 'Going Alpha', 0, NULL, NULL), + (69, 0, 0, 5, 144, 3, '2025-12-28 16:38:42', '2025-12-28 16:38:42', '', 0, NULL, NULL), + (70, 0, 0, 5, 168, 1, '2025-12-28 18:50:13', '2025-12-28 18:50:13', '', 0, NULL, NULL), + (71, 1, 0, 5, 238, 2, '2025-12-30 18:03:25', '2025-12-30 18:03:25', '', 0, NULL, NULL), + (72, 1, 0, 5, 300, 2, '2025-12-31 19:56:20', '2025-12-31 19:56:20', '', 0, NULL, NULL), + (73, 1, 0, 5, 302, 2, '2025-12-31 20:07:01', '2025-12-31 20:07:01', '', 0, NULL, NULL), + (74, 1, 0, 5, 303, 2, '2025-12-31 20:15:38', '2025-12-31 20:15:38', '', 0, NULL, NULL), + (75, 1, 1, 5, 307, 2, '2025-12-31 20:58:30', '2025-12-31 20:58:30', '', 0, NULL, NULL), + (76, 1, 0, 5, 308, 2, '2025-12-31 21:01:51', '2025-12-31 21:01:51', '', 0, NULL, NULL), + (77, 1, 0, 5, 343, 2, '2026-01-01 01:13:23', '2026-01-01 01:13:23', '', 0, NULL, NULL), + (78, 0, 1, 5, 350, 2, '2026-01-01 01:48:42', '2026-01-01 01:48:42', '', 0, NULL, NULL), + (79, 1, 0, 5, 384, 2, '2026-01-01 20:55:06', '2026-01-01 20:55:06', 'Going Alpha', 0, NULL, NULL), + (80, 1, 0, 5, 407, 2, '2026-01-02 21:02:17', '2026-01-02 21:02:17', '', 0, NULL, NULL), + (81, 0, 1, 6, 170, 2, '2025-12-28 19:21:36', '2025-12-28 19:21:36', '', 0, NULL, NULL), + (82, 1, 1, 6, 250, 2, '2025-12-30 20:47:21', '2025-12-30 20:47:21', 'Trainee has sufficiently and satisfactorily demonstrated skills required to run RTO in official operations', 0, NULL, NULL), + (83, 1, 1, 6, 263, 2, '2025-12-31 01:12:46', '2025-12-31 01:12:46', '', 0, NULL, NULL), + (84, 0, 0, 6, 360, 1, '2026-01-01 16:09:30', '2026-01-01 16:11:06', 'Going Alpha', 0, NULL, NULL), + (85, 0, 1, 7, 33, 2, '2025-12-21 23:11:33', '2025-12-21 23:14:35', '', 0, '0', NULL), + (86, 0, 0, 7, 35, 1, '2025-12-21 23:18:06', '2025-12-21 23:18:06', '', 0, '0', NULL), + (87, 0, 0, 7, 64, 1, '2025-12-22 22:06:02', '2025-12-22 22:06:02', '', 0, '0', NULL), + (88, 0, 0, 7, 84, 1, '2025-12-23 20:20:49', '2025-12-23 20:20:49', '', 0, '0', NULL), + (89, 0, 0, 7, 106, 1, '2025-12-24 23:22:37', '2025-12-24 23:22:37', '', 0, '0', NULL), + (90, 0, 0, 7, 123, 1, '2025-12-28 14:49:43', '2025-12-28 14:49:43', '', 0, '0', NULL), + (91, 0, 0, 7, 155, 1, '2025-12-28 17:26:14', '2025-12-28 17:26:14', '', 0, NULL, NULL), + (92, 0, 0, 7, 170, 1, '2025-12-28 19:21:36', '2025-12-28 19:21:36', '', 0, NULL, NULL), + (93, 0, 0, 7, 197, 1, '2025-12-29 00:03:01', '2025-12-29 00:03:01', '', 0, NULL, NULL), + (94, 0, 0, 7, 205, 1, '2025-12-29 22:37:37', '2025-12-29 22:37:37', '', 0, NULL, NULL), + (95, 0, 0, 7, 229, 1, '2025-12-30 16:43:20', '2025-12-30 16:43:20', '', 0, NULL, NULL), + (96, 1, 1, 7, 248, 2, '2025-12-30 20:43:58', '2025-12-30 20:43:58', 'notes: SCARAB has COMBAT JUMP WINGS and SENIOR JUMP MASTER\ni have personally seen him jump on more than one occasion\nas a JUMP WINGS SME', 0, NULL, NULL), + (97, 0, 0, 7, 262, 1, '2025-12-31 01:11:03', '2025-12-31 01:11:03', '', 0, NULL, NULL), + (98, 0, 0, 7, 275, 1, '2025-12-31 17:05:01', '2025-12-31 17:05:01', '', 0, NULL, NULL), + (99, 1, 0, 7, 330, 2, '2025-12-31 22:45:42', '2025-12-31 22:45:42', '', 0, NULL, NULL), + (100, 0, 0, 7, 350, 1, '2026-01-01 01:48:42', '2026-01-01 01:48:42', '', 0, NULL, NULL), + (101, 1, 0, 7, 379, 2, '2026-01-01 20:14:12', '2026-01-01 20:14:12', 'Going Echo', 0, NULL, NULL), + (102, 0, 0, 7, 405, 2, '2026-01-02 20:48:52', '2026-01-02 20:48:52', '', 0, NULL, NULL), + (103, 0, 0, 8, 2, 4, '2025-12-19 15:04:18', '2025-12-19 15:04:18', '', 0, '0', NULL), + (104, 0, 0, 8, 4, 4, '2025-12-19 15:33:58', '2025-12-19 15:33:58', '', 0, '0', NULL), + (105, 0, 0, 8, 9, 4, '2025-12-21 00:07:16', '2025-12-21 00:07:16', '', 0, '0', NULL), + (106, 0, 0, 8, 15, 1, '2025-12-21 00:42:24', '2025-12-21 00:42:24', '', 0, '0', NULL), + (107, 1, 1, 8, 20, 2, '2025-12-21 19:30:23', '2025-12-21 19:30:23', '', 0, '0', NULL), + (108, 0, 0, 8, 59, 1, '2025-12-22 21:29:39', '2025-12-22 21:29:39', '', 0, '0', NULL), + (109, 0, 0, 8, 63, 1, '2025-12-22 21:57:38', '2025-12-22 21:57:38', '', 0, '0', NULL), + (110, 0, 0, 8, 91, 4, '2025-12-23 20:39:15', '2025-12-23 20:39:15', '-Medi', 0, '0', NULL), + (111, 0, 0, 8, 92, 1, '2025-12-23 20:43:48', '2025-12-23 20:43:48', '', 0, '0', NULL), + (112, 0, 0, 8, 109, 1, '2025-12-25 00:02:31', '2025-12-25 00:02:31', '', 0, '0', NULL), + (113, 0, 0, 8, 112, 1, '2025-12-26 22:09:15', '2025-12-26 22:09:15', '', 0, '0', NULL), + (114, 1, 0, 8, 113, 2, '2025-12-26 22:15:38', '2025-12-26 22:15:38', 'Trainee should work on using cover when moving to locations to avoid being spotted, as well as take some time to note and make sure to properly identify assets.', 0, '0', NULL), + (115, 0, 0, 8, 133, 4, '2025-12-28 15:24:40', '2025-12-28 15:24:40', '', 0, '0', NULL), + (116, 0, 0, 8, 134, 4, '2025-12-28 15:27:42', '2025-12-28 15:27:42', '', 0, '0', NULL), + (117, 0, 0, 8, 137, 3, '2025-12-28 15:34:43', '2025-12-28 15:34:43', '', 0, '0', NULL), + (118, 0, 0, 8, 138, 3, '2025-12-28 15:35:32', '2025-12-28 15:35:32', '', 0, '0', NULL), + (119, 0, 0, 8, 185, 3, '2025-12-28 21:12:59', '2025-12-28 21:12:59', '', 0, NULL, NULL), + (120, 0, 1, 8, 186, 2, '2025-12-28 21:17:42', '2025-12-28 21:17:42', '5/5 1st attempt', 0, NULL, NULL), + (121, 1, 0, 8, 190, 2, '2025-12-28 23:08:35', '2025-12-28 23:08:35', '', 0, NULL, NULL), + (122, 1, 0, 8, 191, 2, '2025-12-28 23:32:53', '2025-12-28 23:32:53', '', 0, NULL, NULL), + (123, 1, 0, 8, 203, 2, '2025-12-29 22:33:22', '2025-12-29 22:33:22', '', 0, NULL, NULL), + (124, 1, 0, 8, 209, 2, '2025-12-29 22:45:30', '2025-12-29 22:45:30', '', 0, NULL, NULL), + (125, 0, 0, 8, 214, 4, '2025-12-30 14:36:48', '2025-12-30 14:36:48', '', 0, NULL, NULL), + (126, 1, 1, 8, 216, 2, '2025-12-30 14:46:26', '2025-12-30 14:46:26', '', 0, NULL, NULL), + (127, 1, 1, 8, 219, 2, '2025-12-30 14:52:25', '2025-12-30 14:52:25', '', 0, NULL, NULL), + (128, 0, 1, 8, 224, 2, '2025-12-30 16:08:25', '2025-12-30 16:08:25', '1:08, 28/30 1st attempt', 0, NULL, NULL), + (129, 0, 0, 8, 225, 2, '2025-12-30 16:09:16', '2025-12-30 16:09:16', '4/5 3 attempts', 0, NULL, NULL), + (130, 0, 1, 8, 226, 2, '2025-12-30 16:12:41', '2025-12-30 16:12:41', '', 0, NULL, NULL), + (131, 1, 0, 8, 227, 2, '2025-12-30 16:16:26', '2025-12-30 16:16:26', 'Going Alpha', 0, NULL, NULL), + (132, 1, 0, 8, 230, 2, '2025-12-30 16:53:12', '2025-12-30 16:53:12', '', 0, NULL, NULL), + (133, 0, 0, 8, 371, 3, '2026-01-01 18:51:48', '2026-01-01 18:51:48', '', 0, NULL, NULL), + (134, 0, 0, 8, 372, 3, '2026-01-01 18:56:04', '2026-01-01 18:56:04', '', 0, NULL, NULL), + (135, 1, 0, 8, 381, 2, '2026-01-01 20:24:28', '2026-01-01 20:24:28', 'Going Alpha', 0, NULL, NULL), + (136, 0, 1, 9, 8, 2, '2025-12-20 23:28:16', '2025-12-20 23:28:16', '2nd attempt', 0, '0', NULL), + (137, 0, 0, 9, 15, 3, '2025-12-21 00:42:24', '2025-12-21 00:42:24', '', 0, '0', NULL), + (138, 1, 1, 9, 20, 2, '2025-12-21 19:30:23', '2025-12-21 19:30:23', 'While it was a pass, Sam needs to work on not instantly ID\'ing all vehicles as tanks, work on proper HAT usage as well, but other than that was more than passing in the qualification.', 0, '0', NULL), + (139, 1, 1, 9, 21, 2, '2025-12-21 20:02:02', '2025-12-21 20:02:02', '', 0, '0', NULL), + (140, 0, 1, 9, 41, 2, '2025-12-22 00:44:55', '2025-12-22 00:44:55', '27/30, 1 min 8 seconds', 0, '0', NULL), + (141, 1, 0, 9, 42, 2, '2025-12-22 00:46:23', '2025-12-22 00:46:23', ' Pass, going Alpha', 0, '0', NULL), + (142, 1, 0, 10, 13, 2, '2025-12-21 00:35:25', '2025-12-21 00:35:25', '(PASS - ECHO)', 0, '0', NULL), + (143, 1, 0, 10, 388, 2, '2026-01-01 21:08:44', '2026-01-01 21:08:44', 'Going Alpha', 0, NULL, NULL), + (144, 1, 0, 11, 2, 2, '2025-12-19 15:04:18', '2025-12-19 15:04:18', '', 0, '0', NULL), + (145, 0, 0, 11, 101, 3, '2025-12-24 22:48:14', '2025-12-24 22:48:14', '', 0, '0', NULL), + (146, 0, 0, 11, 109, 3, '2025-12-25 00:02:31', '2025-12-25 00:02:31', '', 0, '0', NULL), + (147, 0, 0, 11, 147, 1, '2025-12-28 16:50:45', '2025-12-28 16:50:45', '', 0, NULL, NULL), + (148, 0, 0, 11, 165, 1, '2025-12-28 18:43:28', '2025-12-28 18:43:28', '', 0, NULL, NULL), + (149, 0, 0, 11, 179, 1, '2025-12-28 20:10:50', '2025-12-28 20:10:50', '', 0, NULL, NULL), + (150, 0, 0, 11, 180, 3, '2025-12-28 20:19:12', '2025-12-28 20:19:12', '', 0, NULL, NULL), + (151, 0, 0, 11, 191, 4, '2025-12-28 23:32:53', '2025-12-28 23:32:53', '', 0, NULL, NULL), + (152, 1, 0, 11, 194, 2, '2025-12-28 23:53:49', '2025-12-28 23:53:49', '', 0, NULL, NULL), + (153, 0, 0, 11, 217, 1, '2025-12-30 14:48:39', '2025-12-30 14:48:39', '', 0, NULL, NULL), + (154, 0, 0, 11, 218, 1, '2025-12-30 14:50:04', '2025-12-30 14:50:04', '', 0, NULL, NULL), + (155, 0, 0, 11, 219, 4, '2025-12-30 14:52:25', '2025-12-30 14:52:25', '', 0, NULL, NULL), + (156, 0, 0, 11, 220, 1, '2025-12-30 14:54:40', '2025-12-30 14:54:40', '', 0, NULL, NULL), + (157, 0, 0, 11, 230, 1, '2025-12-30 16:53:12', '2025-12-30 16:53:12', '', 0, NULL, NULL), + (158, 0, 0, 11, 232, 1, '2025-12-30 17:11:22', '2025-12-30 17:11:22', '', 0, NULL, NULL), + (159, 0, 0, 11, 234, 1, '2025-12-30 17:38:22', '2025-12-30 17:38:22', '', 0, NULL, NULL), + (160, 0, 0, 11, 235, 1, '2025-12-30 17:42:23', '2025-12-30 17:42:23', '', 0, NULL, NULL), + (161, 0, 0, 11, 236, 1, '2025-12-30 17:43:27', '2025-12-30 17:43:27', '', 0, NULL, NULL), + (162, 1, 1, 11, 240, 2, '2025-12-30 18:41:44', '2025-12-30 18:41:44', '', 0, NULL, NULL), + (163, 0, 0, 11, 245, 1, '2025-12-30 20:39:48', '2025-12-30 20:39:48', '', 0, NULL, NULL), + (164, 0, 0, 11, 246, 1, '2025-12-30 20:40:55', '2025-12-30 20:40:55', '', 0, NULL, NULL), + (165, 0, 0, 11, 247, 1, '2025-12-30 20:42:34', '2025-12-30 20:42:34', '', 0, NULL, NULL), + (166, 0, 0, 11, 251, 4, '2025-12-30 20:48:56', '2025-12-30 20:48:56', '', 0, NULL, NULL), + (167, 0, 0, 11, 252, 4, '2025-12-30 22:41:36', '2025-12-30 22:41:36', '', 0, NULL, NULL), + (168, 0, 0, 11, 253, 4, '2025-12-30 22:44:16', '2025-12-30 22:44:16', '', 0, NULL, NULL), + (169, 0, 0, 11, 259, 1, '2025-12-30 23:11:38', '2025-12-30 23:11:38', '', 0, NULL, NULL), + (170, 0, 0, 11, 260, 1, '2025-12-30 23:12:54', '2025-12-30 23:12:54', '', 0, NULL, NULL), + (171, 0, 0, 11, 261, 1, '2025-12-30 23:13:29', '2025-12-30 23:13:29', '', 0, NULL, NULL), + (172, 0, 0, 11, 264, 3, '2025-12-31 01:14:35', '2025-12-31 01:14:35', '', 0, NULL, NULL), + (173, 0, 0, 11, 265, 3, '2025-12-31 01:15:19', '2025-12-31 01:15:19', '', 0, NULL, NULL), + (174, 0, 0, 11, 266, 3, '2025-12-31 01:17:27', '2025-12-31 01:17:27', '', 0, NULL, NULL), + (175, 0, 0, 11, 277, 1, '2025-12-31 17:41:51', '2025-12-31 17:41:51', '', 0, NULL, NULL), + (176, 0, 0, 11, 278, 1, '2025-12-31 17:43:23', '2025-12-31 17:43:23', '', 0, NULL, NULL), + (177, 0, 0, 11, 279, 1, '2025-12-31 17:44:53', '2025-12-31 17:44:53', '', 0, NULL, NULL), + (178, 0, 0, 11, 280, 1, '2025-12-31 17:46:21', '2025-12-31 17:46:21', '', 0, NULL, NULL), + (179, 0, 0, 11, 281, 1, '2025-12-31 17:47:43', '2025-12-31 17:47:43', '', 0, NULL, NULL), + (180, 0, 0, 11, 285, 1, '2025-12-31 17:52:39', '2025-12-31 17:52:39', '', 0, NULL, NULL), + (181, 0, 0, 11, 286, 1, '2025-12-31 17:53:31', '2025-12-31 17:53:31', '', 0, NULL, NULL), + (182, 0, 0, 11, 294, 1, '2025-12-31 19:26:36', '2025-12-31 19:26:36', '', 0, NULL, NULL), + (183, 0, 0, 11, 299, 1, '2025-12-31 19:53:00', '2025-12-31 19:53:00', '', 0, NULL, NULL), + (184, 1, 0, 11, 301, 2, '2025-12-31 20:01:02', '2025-12-31 20:01:02', '', 0, NULL, NULL), + (185, 0, 0, 11, 303, 4, '2025-12-31 20:15:38', '2025-12-31 20:15:38', '', 0, NULL, NULL), + (186, 1, 1, 11, 307, 2, '2025-12-31 20:58:29', '2025-12-31 20:58:29', '', 0, NULL, NULL), + (187, 0, 0, 11, 308, 1, '2025-12-31 21:01:52', '2025-12-31 21:01:52', '', 0, NULL, NULL), + (188, 0, 0, 11, 309, 1, '2025-12-31 21:03:38', '2025-12-31 21:03:38', '', 0, NULL, NULL), + (189, 0, 0, 11, 310, 1, '2025-12-31 21:04:39', '2025-12-31 21:04:39', '', 0, NULL, NULL), + (190, 0, 0, 11, 311, 1, '2025-12-31 21:06:14', '2025-12-31 21:06:14', '', 0, NULL, NULL), + (191, 0, 0, 11, 314, 1, '2025-12-31 21:16:43', '2025-12-31 21:16:43', '', 0, NULL, NULL), + (192, 0, 0, 11, 315, 1, '2025-12-31 21:17:48', '2025-12-31 21:17:48', '', 0, NULL, NULL), + (193, 0, 0, 11, 317, 1, '2025-12-31 21:23:45', '2025-12-31 21:23:45', '', 0, NULL, NULL), + (194, 1, 0, 11, 318, 2, '2025-12-31 21:31:27', '2025-12-31 21:31:27', '', 0, NULL, NULL), + (195, 1, 0, 11, 322, 2, '2025-12-31 21:51:17', '2025-12-31 21:51:17', '', 0, NULL, NULL), + (196, 0, 0, 11, 331, 1, '2025-12-31 22:55:47', '2025-12-31 22:55:47', '', 0, NULL, NULL), + (197, 0, 0, 11, 332, 1, '2025-12-31 22:57:19', '2025-12-31 22:57:19', '', 0, NULL, NULL), + (198, 0, 0, 11, 333, 3, '2025-12-31 23:01:54', '2025-12-31 23:01:54', '', 0, NULL, NULL), + (199, 1, 0, 11, 334, 2, '2025-12-31 23:05:21', '2025-12-31 23:05:21', '', 0, NULL, NULL), + (200, 0, 0, 11, 337, 4, '2026-01-01 00:31:58', '2026-01-01 00:31:58', '', 0, NULL, NULL), + (201, 1, 1, 11, 338, 2, '2026-01-01 00:33:47', '2026-01-01 00:33:47', '', 0, NULL, NULL), + (202, 1, 0, 11, 343, 2, '2026-01-01 01:13:23', '2026-01-01 01:13:23', '', 0, NULL, NULL), + (203, 1, 0, 11, 344, 2, '2026-01-01 01:22:13', '2026-01-01 01:22:13', '', 0, NULL, NULL), + (204, 1, 0, 11, 367, 2, '2026-01-01 18:34:16', '2026-01-01 18:34:16', '', 0, NULL, NULL), + (205, 1, 0, 11, 368, 2, '2026-01-01 18:37:09', '2026-01-01 18:37:09', '', 0, NULL, NULL), + (206, 1, 0, 11, 369, 2, '2026-01-01 18:39:27', '2026-01-01 18:39:27', '', 0, NULL, NULL), + (207, 1, 1, 11, 406, 2, '2026-01-02 20:57:29', '2026-01-02 20:57:29', 'Did well! work on your grid flips, Right numbers wrong order.', 0, NULL, NULL), + (208, 1, 0, 11, 412, 1, '2026-01-02 23:53:16', '2026-01-02 23:53:16', '', 0, NULL, NULL), + (209, 0, 0, 11, 413, 1, '2026-01-03 00:02:58', '2026-01-03 00:02:58', '', 0, NULL, NULL), + (210, 1, 0, 11, 415, 2, '2026-01-03 00:08:01', '2026-01-03 00:08:01', 'Going Alpha', 0, NULL, NULL), + (211, 0, 0, 12, 15, 4, '2025-12-21 00:42:24', '2025-12-21 00:42:24', '', 0, '0', NULL), + (212, 0, 0, 12, 27, 1, '2025-12-21 22:18:19', '2025-12-21 22:18:19', '', 0, '0', NULL), + (213, 0, 0, 12, 95, 2, '2025-12-24 22:05:14', '2025-12-24 22:05:14', 'Soft fail for striking dangerously close to friendly positions during DAPS Gunnery\nSoft fail for expending all Hydras on the Apache\nAdvised on improving standoff for Apache to avoid damage', 0, '0', NULL), + (214, 1, 0, 12, 96, 2, '2025-12-24 22:06:51', '2025-12-24 22:06:51', '', 0, '0', NULL), + (215, 1, 1, 12, 151, 2, '2025-12-28 17:09:17', '2025-12-28 17:09:17', '', 0, NULL, NULL), + (216, 1, 1, 12, 152, 2, '2025-12-28 17:10:39', '2025-12-28 17:10:39', '', 0, NULL, NULL), + (217, 0, 1, 12, 155, 2, '2025-12-28 17:26:14', '2025-12-28 17:26:14', '', 0, NULL, NULL), + (218, 1, 1, 12, 160, 2, '2025-12-28 17:39:23', '2025-12-28 17:39:23', '', 0, NULL, NULL), + (219, 0, 0, 12, 169, 1, '2025-12-28 19:19:02', '2025-12-28 19:19:02', '', 0, NULL, NULL), + (220, 0, 0, 12, 180, 4, '2025-12-28 20:19:11', '2025-12-28 20:19:11', '', 0, NULL, NULL), + (221, 0, 0, 12, 182, 1, '2025-12-28 20:34:29', '2025-12-28 20:34:29', '', 0, NULL, NULL), + (222, 1, 0, 12, 192, 2, '2025-12-28 23:36:15', '2025-12-28 23:36:15', '', 0, NULL, NULL), + (223, 0, 0, 12, 196, 1, '2025-12-29 00:01:53', '2025-12-29 00:01:53', '', 0, NULL, NULL), + (224, 1, 0, 12, 205, 2, '2025-12-29 22:37:37', '2025-12-29 22:37:37', '', 0, NULL, NULL), + (225, 0, 1, 12, 213, 2, '2025-12-30 14:34:47', '2025-12-30 14:34:47', '', 0, NULL, NULL), + (226, 0, 0, 12, 214, 4, '2025-12-30 14:36:48', '2025-12-30 14:36:48', '', 0, NULL, NULL), + (227, 0, 0, 12, 216, 1, '2025-12-30 14:46:26', '2025-12-30 14:46:26', '', 0, NULL, NULL), + (228, 1, 1, 12, 221, 2, '2025-12-30 15:50:20', '2025-12-30 15:50:20', '', 0, NULL, NULL), + (229, 1, 0, 12, 222, 2, '2025-12-30 16:00:43', '2025-12-30 16:00:43', '', 0, NULL, NULL), + (230, 0, 0, 12, 224, 1, '2025-12-30 16:08:25', '2025-12-30 16:08:25', '', 0, NULL, NULL), + (231, 0, 0, 12, 225, 1, '2025-12-30 16:09:16', '2025-12-30 16:09:16', '', 0, NULL, NULL), + (232, 0, 0, 12, 226, 1, '2025-12-30 16:12:41', '2025-12-30 16:12:41', '', 0, NULL, NULL), + (233, 0, 0, 12, 227, 1, '2025-12-30 16:16:26', '2025-12-30 16:16:26', '', 0, NULL, NULL), + (234, 0, 0, 12, 237, 4, '2025-12-30 17:47:34', '2025-12-30 17:47:34', '', 0, NULL, NULL), + (235, 0, 0, 12, 239, 4, '2025-12-30 18:31:31', '2025-12-30 18:31:31', '', 0, NULL, NULL), + (236, 1, 1, 12, 240, 2, '2025-12-30 18:41:44', '2025-12-30 18:41:44', '', 0, NULL, NULL), + (237, 1, 1, 12, 241, 2, '2025-12-30 18:42:27', '2025-12-30 18:42:27', '', 0, NULL, NULL), + (238, 0, 0, 12, 253, 1, '2025-12-30 22:44:16', '2025-12-30 22:44:16', '', 0, NULL, NULL), + (239, 0, 0, 12, 254, 4, '2025-12-30 22:48:52', '2025-12-30 22:48:52', '', 0, NULL, NULL), + (240, 0, 0, 12, 257, 1, '2025-12-30 23:09:35', '2025-12-30 23:09:35', '', 0, NULL, NULL), + (241, 0, 0, 12, 258, 1, '2025-12-30 23:10:20', '2025-12-30 23:10:20', '', 0, NULL, NULL), + (242, 0, 0, 12, 264, 3, '2025-12-31 01:14:34', '2025-12-31 01:14:34', '', 0, NULL, NULL), + (243, 0, 0, 12, 265, 3, '2025-12-31 01:15:19', '2025-12-31 01:15:19', '', 0, NULL, NULL), + (244, 0, 0, 12, 266, 1, '2025-12-31 01:17:27', '2025-12-31 01:17:27', '', 0, NULL, NULL), + (245, 0, 0, 12, 271, 4, '2025-12-31 17:00:33', '2025-12-31 17:00:33', '', 0, NULL, NULL), + (246, 0, 0, 12, 288, 4, '2025-12-31 18:04:22', '2025-12-31 18:04:22', '', 0, NULL, NULL), + (247, 1, 0, 12, 302, 4, '2025-12-31 20:07:01', '2025-12-31 20:07:01', '', 0, NULL, NULL), + (248, 0, 0, 12, 306, 4, '2025-12-31 20:55:44', '2025-12-31 20:55:44', '', 0, NULL, NULL), + (249, 1, 1, 12, 307, 2, '2025-12-31 20:58:30', '2025-12-31 20:58:30', '(Left a little early but considered passed - will discuss with him later for supplemental material)', 0, NULL, NULL), + (250, 0, 0, 12, 309, 4, '2025-12-31 21:03:38', '2025-12-31 21:03:38', '', 0, NULL, NULL), + (251, 0, 0, 12, 310, 4, '2025-12-31 21:04:39', '2025-12-31 21:04:39', '', 0, NULL, NULL), + (252, 0, 0, 12, 311, 4, '2025-12-31 21:06:14', '2025-12-31 21:06:14', '', 0, NULL, NULL), + (253, 0, 0, 12, 314, 4, '2025-12-31 21:16:43', '2025-12-31 21:16:43', '', 0, NULL, NULL), + (254, 0, 0, 12, 315, 4, '2025-12-31 21:17:48', '2025-12-31 21:17:48', '', 0, NULL, NULL), + (255, 0, 0, 12, 317, 4, '2025-12-31 21:23:45', '2025-12-31 21:23:45', '', 0, NULL, NULL), + (256, 1, 0, 12, 318, 2, '2025-12-31 21:31:27', '2025-12-31 21:31:27', '', 0, NULL, NULL), + (257, 1, 0, 12, 319, 2, '2025-12-31 21:36:28', '2025-12-31 21:36:28', '', 0, NULL, NULL), + (258, 1, 0, 12, 320, 2, '2025-12-31 21:37:36', '2025-12-31 21:37:36', '', 0, NULL, NULL), + (259, 1, 1, 12, 326, 2, '2025-12-31 22:36:37', '2025-12-31 22:36:37', '', 0, NULL, NULL), + (260, 1, 0, 12, 334, 2, '2025-12-31 23:05:21', '2025-12-31 23:05:21', '', 0, NULL, NULL), + (261, 1, 0, 12, 339, 2, '2026-01-01 00:38:21', '2026-01-01 00:38:21', '', 0, NULL, NULL), + (262, 1, 0, 12, 354, 2, '2026-01-01 02:03:44', '2026-01-01 02:03:44', 'Going Alpha', 0, NULL, NULL), + (263, 0, 1, 12, 397, 2, '2026-01-02 19:54:22', '2026-01-02 19:54:22', '1 min 6 seconds - 29/30', 0, NULL, NULL), + (264, 0, 1, 12, 398, 2, '2026-01-02 20:12:47', '2026-01-02 20:12:47', '', 0, NULL, NULL), + (265, 1, 1, 12, 399, 2, '2026-01-02 20:14:48', '2026-01-02 20:14:48', '', 0, NULL, NULL), + (266, 0, 0, 13, 139, 5, '2025-12-28 15:40:38', '2025-12-28 15:40:38', '', 0, '0', NULL), + (267, 0, 0, 13, 237, 1, '2025-12-30 17:47:34', '2025-12-30 17:47:34', '', 0, NULL, NULL), + (268, 0, 0, 13, 302, 1, '2025-12-31 20:07:01', '2025-12-31 20:07:01', '', 0, NULL, NULL), + (269, 0, 0, 13, 337, 1, '2026-01-01 00:31:58', '2026-01-01 00:31:58', '', 0, NULL, NULL), + (270, 0, 0, 13, 359, 3, '2026-01-01 02:15:08', '2026-01-01 02:15:08', '', 0, NULL, NULL), + (271, 0, 0, 13, 366, 4, '2026-01-01 16:43:09', '2026-01-01 16:43:09', '', 0, NULL, NULL), + (272, 1, 1, 13, 408, 2, '2026-01-02 21:57:33', '2026-01-02 21:57:33', '', 0, NULL, NULL), + (273, 1, 0, 13, 409, 2, '2026-01-02 21:59:39', '2026-01-02 21:59:39', '', 0, NULL, NULL), + (274, 1, 1, 13, 411, 2, '2026-01-02 22:04:13', '2026-01-02 22:04:13', '', 0, NULL, NULL), + (275, 0, 1, 14, 124, 2, '2025-12-28 14:51:12', '2025-12-28 14:51:12', '27/30, 62.04', 0, '0', NULL), + (276, 0, 1, 14, 125, 2, '2025-12-28 14:51:51', '2025-12-28 14:51:51', '5/5', 0, '0', NULL), + (277, 1, 0, 14, 139, 2, '2025-12-28 15:40:38', '2025-12-28 15:40:38', 'Going Alpha', 0, '0', NULL), + (278, 0, 0, 15, 177, 1, '2025-12-28 19:46:48', '2025-12-28 19:46:48', '', 0, NULL, NULL), + (279, 0, 0, 15, 193, 1, '2025-12-28 23:49:59', '2025-12-28 23:49:59', '', 0, NULL, NULL), + (280, 0, 0, 15, 195, 1, '2025-12-28 23:59:59', '2025-12-28 23:59:59', '', 0, NULL, NULL), + (281, 0, 0, 15, 206, 1, '2025-12-29 22:38:52', '2025-12-29 22:38:52', '', 0, NULL, NULL), + (282, 0, 1, 15, 267, 2, '2025-12-31 01:20:11', '2025-12-31 01:20:11', '', 0, NULL, NULL), + (283, 1, 1, 15, 287, 2, '2025-12-31 18:01:32', '2025-12-31 18:01:32', '', 0, NULL, NULL), + (284, 1, 0, 15, 324, 2, '2025-12-31 22:12:20', '2025-12-31 22:12:20', '', 0, NULL, NULL), + (285, 1, 0, 15, 325, 2, '2025-12-31 22:12:50', '2025-12-31 22:12:50', '', 0, NULL, NULL), + (286, 0, 1, 15, 327, 2, '2025-12-31 22:37:45', '2025-12-31 22:37:45', '', 0, NULL, NULL), + (287, 0, 0, 15, 352, 1, '2026-01-01 01:52:43', '2026-01-01 01:52:43', '', 0, NULL, NULL), + (288, 0, 0, 15, 353, 1, '2026-01-01 01:54:17', '2026-01-01 01:54:17', '', 0, NULL, NULL), + (289, 1, 0, 15, 395, 2, '2026-01-01 22:51:21', '2026-01-01 22:51:21', '', 0, NULL, NULL), + (290, 1, 0, 16, 359, 2, '2026-01-01 02:15:08', '2026-01-01 02:15:08', 'Going Alpha', 0, NULL, NULL), + (291, 1, 0, 16, 367, 2, '2026-01-01 18:34:16', '2026-01-01 18:34:16', '', 0, NULL, NULL), + (292, 1, 0, 16, 375, 2, '2026-01-01 19:57:38', '2026-01-01 19:57:38', '', 0, NULL, NULL), + (293, 0, 0, 17, 92, 5, '2025-12-23 20:43:48', '2025-12-23 20:43:48', '', 0, '0', NULL), + (294, 1, 0, 17, 107, 2, '2025-12-24 23:56:21', '2025-12-24 23:56:21', '', 0, '0', NULL), + (295, 0, 1, 17, 153, 2, '2025-12-28 17:20:58', '2025-12-28 17:20:58', '- 5/5 - PASS', 0, NULL, NULL), + (296, 1, 0, 17, 161, 2, '2025-12-28 18:35:14', '2025-12-28 18:35:14', 'Going Alpha', 0, NULL, NULL), + (297, 0, 1, 17, 162, 2, '2025-12-28 18:36:53', '2025-12-28 18:36:53', 'PASS (29/30, 60s)', 0, NULL, NULL), + (298, 0, 0, 17, 163, 2, '2025-12-28 18:38:20', '2025-12-28 18:38:20', '', 0, NULL, NULL), + (299, 1, 0, 18, 72, 2, '2025-12-22 23:20:16', '2025-12-22 23:20:16', '', 0, '0', NULL), + (300, 1, 1, 18, 184, 2, '2025-12-28 20:40:48', '2025-12-28 20:40:48', '', 0, NULL, NULL), + (301, 0, 1, 18, 208, 2, '2025-12-29 22:42:28', '2025-12-29 22:42:28', '1 soft fail issued for over-extension of EOD, preventing security team from providing effective cover.', 0, NULL, NULL), + (302, 0, 0, 18, 210, 2, '2025-12-29 23:03:50', '2025-12-29 23:03:50', '1st Soft Fail issued for danger to the security team, who were sent to positions that were not cleared by EOD and almost triggered mines.\n2nd Soft Fail issued for repeated danger to self, due to improper utilization of security team. Trainee did not reposition security team to cover new angles as trainee progressed through minefield, causing minutes-long gaps in security that threatened trainee.\nDiscussed with trainee on improving the following:\nEffective and safe use of security team\nTime spent on route clearance and avoiding taking too long to give wide lanes through minefield\nMinute movements to safely clear mines\nPlacing more markers to prevent confusion on minefield route', 0, NULL, NULL), + (303, 0, 0, 18, 213, 2, '2025-12-30 14:34:47', '2025-12-30 14:34:47', '', 0, NULL, NULL), + (304, 1, 1, 18, 263, 2, '2025-12-31 01:12:46', '2025-12-31 01:12:46', '', 0, NULL, NULL), + (305, 1, 0, 18, 295, 2, '2025-12-31 19:32:54', '2025-12-31 19:32:54', '- Soft Fail (No Recovery/Muster Point) - Soft Fail ( Unclear Path ) - Fail (Trainer blew up at Fireteam Stack / Breach)\nOverall Fail\n- Can attempt again in 48 hours', 0, NULL, NULL), + (306, 1, 0, 18, 341, 2, '2026-01-01 01:00:33', '2026-01-01 01:00:33', '', 0, NULL, NULL), + (307, 1, 1, 18, 349, 2, '2026-01-01 01:41:36', '2026-01-01 01:41:36', '', 0, NULL, NULL), + (308, 1, 0, 18, 385, 2, '2026-01-01 20:57:17', '2026-01-01 20:57:17', 'Going Echo', 0, NULL, NULL), + (309, 0, 0, 19, 28, 2, '2025-12-21 22:23:57', '2025-12-21 22:23:57', '', 0, '0', NULL), + (310, 1, 1, 19, 133, 2, '2025-12-28 15:24:40', '2025-12-28 15:24:40', '', 0, '0', NULL), + (311, 1, 1, 19, 134, 2, '2025-12-28 15:27:42', '2025-12-28 15:27:42', '', 0, '0', NULL), + (312, 1, 0, 19, 395, 2, '2026-01-01 22:51:21', '2026-01-01 22:51:21', '', 0, NULL, NULL), + (313, 0, 0, 20, 128, 1, '2025-12-28 15:11:20', '2025-12-28 15:11:20', '', 0, '0', NULL), + (314, 1, 0, 20, 147, 2, '2025-12-28 16:50:45', '2025-12-28 16:50:45', '', 0, NULL, NULL), + (315, 1, 0, 20, 149, 2, '2025-12-28 17:05:25', '2025-12-28 17:05:25', '', 0, NULL, NULL), + (316, 1, 0, 20, 234, 2, '2025-12-30 17:38:22', '2025-12-30 17:38:22', '(going Alpha)', 0, NULL, NULL), + (317, 0, 1, 20, 235, 2, '2025-12-30 17:42:23', '2025-12-30 17:42:23', ' 1:22 28/30', 0, NULL, NULL), + (318, 0, 1, 20, 236, 2, '2025-12-30 17:43:27', '2025-12-30 17:43:27', '5/5 3rd attempt', 0, NULL, NULL), + (319, 0, 0, 21, 169, 4, '2025-12-28 19:19:02', '2025-12-28 19:19:02', '', 0, NULL, NULL), + (320, 1, 0, 21, 203, 1, '2025-12-29 22:33:22', '2025-12-29 22:33:22', '', 0, NULL, NULL), + (321, 0, 0, 21, 227, 4, '2025-12-30 16:16:27', '2025-12-30 16:16:27', '', 0, NULL, NULL), + (322, 0, 0, 21, 239, 1, '2025-12-30 18:31:31', '2025-12-30 18:31:31', '', 0, NULL, NULL), + (323, 0, 0, 21, 326, 3, '2025-12-31 22:36:37', '2025-12-31 22:36:37', '', 0, NULL, NULL), + (324, 0, 0, 21, 385, 1, '2026-01-01 20:57:17', '2026-01-01 20:57:17', '', 0, NULL, NULL), + (325, 0, 0, 21, 387, 3, '2026-01-01 21:06:49', '2026-01-01 21:06:49', '', 0, NULL, NULL), + (326, 0, 0, 21, 389, 1, '2026-01-01 21:12:04', '2026-01-01 21:12:04', '', 0, NULL, NULL), + (327, 0, 0, 22, 183, 2, '2025-12-28 20:38:42', '2025-12-28 20:38:42', 'Went trough the document with the trainee then practiced some of the tasks. We completed a portion of the Qual and will finish it later due to time constraints.', 0, NULL, NULL), + (328, 0, 0, 22, 198, 1, '2025-12-29 22:19:55', '2025-12-29 22:19:55', '', 0, NULL, NULL), + (329, 0, 0, 22, 199, 1, '2025-12-29 22:20:25', '2025-12-29 22:20:25', '', 0, NULL, NULL), + (330, 0, 0, 22, 209, 1, '2025-12-29 22:45:30', '2025-12-29 22:45:30', '', 0, NULL, NULL), + (331, 1, 1, 22, 240, 2, '2025-12-30 18:41:43', '2025-12-30 18:41:43', '', 0, NULL, NULL), + (332, 1, 0, 22, 351, 2, '2026-01-01 01:51:28', '2026-01-01 01:51:28', '', 0, NULL, NULL), + (333, 1, 0, 22, 363, 2, '2026-01-01 16:19:01', '2026-01-01 16:19:01', 'Going Alpha', 0, NULL, NULL), + (334, 1, 0, 22, 367, 2, '2026-01-01 18:34:17', '2026-01-01 18:34:17', '(Left Early but I\'m pretty sure are qualled):', 0, NULL, NULL), + (335, 0, 0, 22, 390, 1, '2026-01-01 21:14:19', '2026-01-01 21:14:19', '', 0, NULL, NULL), + (336, 1, 0, 23, 31, 2, '2025-12-21 22:40:49', '2025-12-21 22:40:49', '', 0, '0', NULL), + (337, 0, 0, 23, 41, 1, '2025-12-22 00:44:55', '2025-12-22 00:44:55', '', 0, '0', NULL), + (338, 0, 0, 23, 42, 1, '2025-12-22 00:46:23', '2025-12-22 00:46:23', '', 0, '0', NULL), + (339, 0, 0, 23, 115, 1, '2025-12-26 22:24:39', '2025-12-26 22:24:39', '', 0, '0', NULL), + (340, 0, 0, 23, 116, 4, '2025-12-26 23:21:17', '2025-12-26 23:21:17', '', 0, '0', NULL), + (341, 0, 0, 23, 117, 4, '2025-12-26 23:22:24', '2025-12-26 23:22:24', '', 0, '0', NULL), + (342, 0, 0, 23, 129, 4, '2025-12-28 15:12:54', '2025-12-28 15:12:54', '', 0, '0', NULL), + (343, 0, 0, 23, 130, 4, '2025-12-28 15:13:50', '2025-12-28 15:13:50', '', 0, '0', NULL), + (344, 1, 0, 23, 156, 2, '2025-12-28 17:29:22', '2025-12-28 17:29:22', '(Soft fail: Need to be more clear on Muster Point Location, Soft Fail: Very unclear Path Marking and explanation. Need to work on Clear Direct Instructions)', 0, NULL, NULL), + (345, 1, 1, 23, 158, 2, '2025-12-28 17:36:18', '2025-12-28 17:36:18', '', 0, NULL, NULL), + (346, 0, 0, 23, 166, 4, '2025-12-28 18:45:24', '2025-12-28 18:45:24', '', 0, NULL, NULL), + (347, 0, 0, 23, 175, 1, '2025-12-28 19:41:29', '2025-12-28 19:41:29', '', 0, NULL, NULL), + (348, 0, 0, 23, 200, 4, '2025-12-29 22:23:58', '2025-12-29 22:23:58', '', 0, NULL, NULL), + (349, 1, 0, 23, 205, 2, '2025-12-29 22:37:37', '2025-12-29 22:37:37', '', 0, NULL, NULL), + (350, 1, 0, 23, 209, 2, '2025-12-29 22:45:30', '2025-12-29 22:45:30', '', 0, NULL, NULL), + (351, 1, 0, 23, 214, 2, '2025-12-30 14:36:48', '2025-12-30 14:36:48', '', 0, NULL, NULL), + (352, 1, 0, 23, 217, 2, '2025-12-30 14:48:39', '2025-12-30 14:48:39', '', 0, NULL, NULL), + (353, 1, 0, 23, 220, 2, '2025-12-30 14:54:40', '2025-12-30 14:54:40', '', 0, NULL, NULL), + (354, 1, 0, 23, 222, 2, '2025-12-30 16:00:43', '2025-12-30 16:00:43', '', 0, NULL, NULL), + (355, 0, 0, 23, 227, 4, '2025-12-30 16:16:27', '2025-12-30 16:16:27', '', 0, NULL, NULL), + (356, 1, 0, 23, 230, 2, '2025-12-30 16:53:11', '2025-12-30 16:53:11', '', 0, NULL, NULL), + (357, 0, 1, 23, 269, 2, '2025-12-31 16:57:22', '2025-12-31 16:57:22', '27/30 60:02', 0, NULL, NULL), + (358, 0, 1, 23, 270, 2, '2025-12-31 16:58:37', '2025-12-31 16:58:37', '5/5 1st attempt', 0, NULL, NULL), + (359, 1, 0, 23, 271, 2, '2025-12-31 17:00:33', '2025-12-31 17:00:33', 'Pass (Going Alpha)', 0, NULL, NULL), + (360, 0, 0, 23, 361, 3, '2026-01-01 16:15:50', '2026-01-01 16:15:50', '', 0, NULL, NULL), + (361, 0, 0, 23, 372, 4, '2026-01-01 18:56:04', '2026-01-01 18:56:04', '', 0, NULL, NULL), + (362, 0, 1, 24, 1, 2, '2025-12-17 20:06:22', '2025-12-17 20:06:22', '', 0, '0', NULL), + (363, 0, 0, 24, 10, 2, '2025-12-21 00:12:56', '2025-12-21 00:20:10', 'Soft Failures:\n- Landing at the Hot LZ outside of the 30 second time-frame.\n- Failing to drop the sling loaded vehicle within the helipad during the sling load portion.\n- Moving outside of the Drop Zone assigned during the para-drop portion.\n\nHard Failures:\n- Catastrophic loss of airframe (UH-60) during autorotation.', 0, '0', NULL), + (364, 0, 0, 24, 16, 2, '2025-12-21 00:46:18', '2025-12-21 00:46:18', '', 0, '0', NULL), + (365, 1, 1, 24, 25, 4, '2025-12-21 20:33:14', '2025-12-21 20:33:14', '', 0, '0', NULL), + (366, 1, 0, 24, 43, 2, '2025-12-22 00:48:13', '2025-12-22 00:48:13', '', 0, '0', NULL), + (367, 1, 0, 24, 52, 2, '2025-12-22 01:16:57', '2025-12-22 01:16:57', '', 0, '0', NULL), + (368, 1, 1, 24, 54, 2, '2025-12-22 01:20:22', '2025-12-22 01:20:22', '', 0, '0', NULL), + (369, 0, 1, 24, 56, 2, '2025-12-22 21:22:35', '2025-12-22 21:22:35', '51.30 sec, 30/30, 1st attempt - Pass', 0, '0', NULL), + (370, 0, 1, 24, 57, 2, '2025-12-22 21:23:34', '2025-12-22 21:23:34', '5/5, 1st attempt - Pass', 0, '0', NULL), + (371, 1, 0, 24, 58, 2, '2025-12-22 21:26:46', '2025-12-22 21:26:46', '- going Echo', 0, '0', NULL), + (372, 0, 1, 25, 181, 2, '2025-12-28 20:33:09', '2025-12-28 20:33:09', 'Trainees participated as a duo\nTrainees advised on excessive caution, which leads to rushed maneuvers/recon as time pressure increases\nTrainees noted to be effective at breaking contact\nTrainees advised on improving descriptions of enemy dispositions, and "painting a clearer picture" of the AO', 0, NULL, NULL), + (373, 1, 0, 25, 192, 2, '2025-12-28 23:36:15', '2025-12-28 23:36:15', '', 0, NULL, NULL), + (374, 1, 1, 25, 233, 2, '2025-12-30 17:28:35', '2025-12-30 17:28:35', '', 0, NULL, NULL), + (375, 0, 0, 25, 237, 4, '2025-12-30 17:47:34', '2025-12-30 17:47:34', '', 0, NULL, NULL), + (376, 1, 0, 25, 239, 2, '2025-12-30 18:31:31', '2025-12-30 18:31:31', '', 0, NULL, NULL), + (377, 1, 1, 25, 240, 2, '2025-12-30 18:41:44', '2025-12-30 18:41:44', '', 0, NULL, NULL), + (378, 1, 0, 25, 249, 2, '2025-12-30 20:46:03', '2025-12-30 20:46:03', '', 0, NULL, NULL), + (379, 0, 1, 25, 257, 2, '2025-12-30 23:09:35', '2025-12-30 23:09:35', '29/30 1:29 2nd attempt', 0, NULL, NULL), + (380, 0, 1, 25, 258, 2, '2025-12-30 23:10:20', '2025-12-30 23:10:20', '5/5 3rd attempt', 0, NULL, NULL), + (381, 1, 1, 25, 263, 2, '2025-12-31 01:12:46', '2025-12-31 01:12:46', '', 0, NULL, NULL), + (382, 1, 0, 25, 354, 2, '2026-01-01 02:03:44', '2026-01-01 02:03:44', 'Going Alpha', 0, NULL, NULL), + (383, 0, 0, 25, 370, 3, '2026-01-01 18:49:02', '2026-01-01 18:49:02', '', 0, NULL, NULL), + (384, 1, 0, 26, 3, 4, '2025-12-19 15:13:14', '2025-12-19 15:13:14', '', 0, '0', NULL), + (385, 0, 0, 26, 4, 4, '2025-12-19 15:33:58', '2025-12-19 15:33:58', '', 0, '0', NULL), + (386, 0, 0, 26, 5, 1, '2025-12-19 15:41:43', '2025-12-19 15:41:43', '', 0, '0', NULL), + (387, 0, 0, 26, 6, 1, '2025-12-19 15:43:56', '2025-12-19 15:51:49', '', 0, '0', NULL), + (388, 0, 0, 26, 7, 1, '2025-12-19 16:12:42', '2025-12-19 16:12:42', '', 0, '0', NULL), + (389, 0, 0, 26, 9, 4, '2025-12-21 00:07:16', '2025-12-21 00:07:16', '', 0, '0', NULL), + (390, 1, 1, 26, 14, 2, '2025-12-21 00:37:27', '2025-12-21 00:38:09', 'Otto understood how to make use of microterrain, landmarks, and his tools (map + map tools, compass, no GPS/Microdagr) in order to provide an accurate location of his position, within a 10 meter error. Otto also had familiarity with contour lines and map reading from his real life work experience, making the material all that much more familiar to him. Well done!', 0, '0', NULL), + (391, 1, 1, 26, 25, 2, '2025-12-21 20:33:15', '2025-12-21 20:33:15', '', 0, '0', NULL), + (392, 0, 0, 26, 56, 1, '2025-12-22 21:22:35', '2025-12-22 21:22:35', '', 0, '0', NULL), + (393, 0, 0, 26, 57, 1, '2025-12-22 21:23:34', '2025-12-22 21:23:34', '', 0, '0', NULL), + (394, 0, 0, 26, 58, 1, '2025-12-22 21:26:46', '2025-12-22 21:26:46', '', 0, '0', NULL), + (395, 0, 0, 26, 69, 1, '2025-12-22 23:14:06', '2025-12-22 23:14:06', '', 0, '0', NULL), + (396, 0, 0, 26, 70, 1, '2025-12-22 23:16:21', '2025-12-22 23:16:21', '', 0, '0', NULL), + (397, 0, 0, 26, 71, 1, '2025-12-22 23:18:13', '2025-12-22 23:18:13', '', 0, '0', NULL), + (398, 0, 0, 26, 75, 1, '2025-12-22 23:25:37', '2025-12-22 23:25:37', '', 0, '0', NULL), + (399, 0, 0, 26, 76, 1, '2025-12-22 23:26:12', '2025-12-22 23:26:12', '', 0, '0', NULL), + (400, 0, 0, 26, 77, 1, '2025-12-22 23:27:05', '2025-12-22 23:27:05', '', 0, '0', NULL), + (401, 0, 1, 26, 82, 2, '2025-12-22 23:38:23', '2025-12-22 23:38:23', 'Passed, points for improvement discussed with trainee. Soft issue failed for\nvery close\nfire mission.', 0, '0', NULL), + (402, 0, 0, 26, 85, 1, '2025-12-23 20:23:19', '2025-12-23 20:23:19', '', 0, '0', NULL), + (403, 0, 0, 26, 86, 1, '2025-12-23 20:24:02', '2025-12-23 20:24:02', '', 0, '0', NULL), + (404, 0, 0, 26, 87, 1, '2025-12-23 20:25:43', '2025-12-23 20:25:43', '', 0, '0', NULL), + (405, 0, 0, 26, 88, 1, '2025-12-23 20:30:54', '2025-12-23 20:30:54', '', 0, '0', NULL), + (406, 1, 0, 26, 96, 2, '2025-12-24 22:06:51', '2025-12-24 22:06:51', '', 0, '0', NULL), + (407, 1, 1, 26, 101, 2, '2025-12-24 22:48:14', '2025-12-24 22:48:14', '', 0, '0', NULL), + (408, 1, 1, 26, 102, 2, '2025-12-24 22:59:45', '2025-12-24 22:59:45', '', 0, '0', NULL), + (409, 0, 0, 26, 107, 4, '2025-12-24 23:56:22', '2025-12-24 23:56:22', '', 0, '0', NULL), + (410, 0, 0, 26, 129, 4, '2025-12-28 15:12:54', '2025-12-28 15:12:54', '', 0, '0', NULL), + (411, 0, 0, 26, 130, 4, '2025-12-28 15:13:49', '2025-12-28 15:13:49', '', 0, '0', NULL), + (412, 0, 0, 26, 144, 3, '2025-12-28 16:38:42', '2025-12-28 16:38:42', '', 0, NULL, NULL), + (413, 0, 0, 26, 169, 3, '2025-12-28 19:19:02', '2025-12-28 19:19:02', '(Cleared to run RTO training under supervision)', 0, NULL, NULL), + (414, 0, 0, 26, 186, 3, '2025-12-28 21:17:42', '2025-12-28 21:17:42', '', 0, NULL, NULL), + (415, 0, 0, 26, 187, 3, '2025-12-28 21:19:40', '2025-12-28 21:19:40', '', 0, NULL, NULL), + (416, 1, 0, 26, 190, 2, '2025-12-28 23:08:35', '2025-12-28 23:08:35', '', 0, NULL, NULL), + (417, 0, 0, 26, 200, 4, '2025-12-29 22:23:58', '2025-12-29 22:23:58', '', 0, NULL, NULL), + (418, 1, 1, 26, 201, 2, '2025-12-29 22:29:19', '2025-12-29 22:29:19', '', 0, NULL, NULL), + (419, 0, 1, 26, 204, 2, '2025-12-29 22:36:13', '2025-12-29 22:36:13', 'Trainee failed after accidentally running onto a mine.\nDiscussed with trainee the following:\nHis demonstrated improvement on communication and usage of security team\nHis decision not to defuse mines far from his safe route\nPersonal movement\nIn light of keybinds being the reason he failed, trainee is allowed to re-qualify after a 24 hour period.', 0, NULL, NULL), + (420, 0, 0, 26, 213, 2, '2025-12-30 14:34:47', '2025-12-30 14:34:47', '', 0, NULL, NULL), + (421, 1, 0, 26, 218, 2, '2025-12-30 14:50:04', '2025-12-30 14:50:04', '', 0, NULL, NULL), + (422, 0, 0, 26, 222, 5, '2025-12-30 16:00:43', '2025-12-30 16:00:43', '', 0, NULL, NULL), + (423, 1, 1, 26, 233, 2, '2025-12-30 17:28:35', '2025-12-30 17:28:35', '', 0, NULL, NULL), + (424, 1, 0, 26, 242, 2, '2025-12-30 19:34:27', '2025-12-30 19:34:27', '', 0, NULL, NULL), + (425, 1, 0, 26, 243, 2, '2025-12-30 20:37:35', '2025-12-30 20:37:35', '', 0, NULL, NULL), + (426, 1, 0, 26, 244, 2, '2025-12-30 20:38:47', '2025-12-30 20:38:47', '', 0, NULL, NULL), + (427, 1, 1, 26, 253, 2, '2025-12-30 22:44:16', '2025-12-30 22:44:16', '', 0, NULL, NULL), + (428, 1, 1, 26, 254, 2, '2025-12-30 22:48:52', '2025-12-30 22:48:52', '', 0, NULL, NULL), + (429, 1, 0, 26, 259, 2, '2025-12-30 23:11:38', '2025-12-30 23:11:38', '(going Alpha)', 0, NULL, NULL), + (430, 0, 1, 26, 260, 2, '2025-12-30 23:12:54', '2025-12-30 23:12:54', '50 sec, 29/30', 0, NULL, NULL), + (431, 0, 1, 26, 261, 2, '2025-12-30 23:13:29', '2025-12-30 23:13:29', '5/5, 3rd attempt', 0, NULL, NULL), + (432, 0, 0, 26, 371, 1, '2026-01-01 18:51:48', '2026-01-01 18:51:48', '', 0, NULL, NULL), + (433, 0, 0, 26, 372, 3, '2026-01-01 18:56:04', '2026-01-01 18:56:04', '', 0, NULL, NULL), + (434, 1, 0, 26, 396, 2, '2026-01-02 18:31:47', '2026-01-02 18:31:47', '', 0, NULL, NULL), + (435, 0, 0, 27, 228, 3, '2025-12-30 16:28:30', '2025-12-30 16:28:30', '', 0, NULL, NULL), + (436, 0, 0, 27, 267, 1, '2025-12-31 01:20:11', '2025-12-31 01:20:11', '', 0, NULL, NULL), + (437, 0, 0, 27, 327, 1, '2025-12-31 22:37:45', '2025-12-31 22:37:45', '', 0, NULL, NULL), + (438, 0, 0, 27, 375, 1, '2026-01-01 19:57:39', '2026-01-01 19:57:39', '', 0, NULL, NULL), + (439, 0, 0, 27, 376, 1, '2026-01-01 20:00:24', '2026-01-01 20:00:24', '', 0, NULL, NULL), + (440, 1, 1, 27, 410, 2, '2026-01-02 22:00:57', '2026-01-02 22:00:57', '', 0, NULL, NULL), + (441, 1, 0, 28, 147, 2, '2025-12-28 16:50:45', '2025-12-28 16:50:45', '', 0, NULL, NULL), + (442, 1, 1, 28, 345, 2, '2026-01-01 01:27:31', '2026-01-01 01:27:31', '', 0, NULL, NULL), + (443, 1, 0, 28, 362, 2, '2026-01-01 16:17:39', '2026-01-01 16:17:39', 'Going Echo\nChallenged Basic and Proved Knowledge retention from previous time in Unit. Covered New Policy Changes.', 0, NULL, NULL), + (444, 0, 0, 28, 393, 2, '2026-01-01 22:44:03', '2026-01-01 22:44:03', '', 0, NULL, NULL), + (445, 1, 0, 28, 401, 2, '2026-01-02 20:23:21', '2026-01-02 20:23:49', '', 0, NULL, NULL), + (446, 0, 0, 29, 9, 5, '2025-12-21 00:07:16', '2025-12-21 00:07:16', '', 0, '0', NULL), + (447, 0, 1, 29, 17, 2, '2025-12-21 00:48:56', '2025-12-21 00:48:56', '27/30, 1:04, 2nd Attemp', 0, '0', NULL), + (448, 0, 0, 29, 18, 2, '2025-12-21 00:50:42', '2025-12-21 00:50:42', 'Fail - May attempt again after 48 hours', 0, '0', NULL), + (449, 1, 0, 29, 19, 2, '2025-12-21 19:23:27', '2025-12-21 19:23:27', 'Going Alpha', 0, '0', NULL), + (450, 1, 0, 30, 29, 2, '2025-12-21 22:37:05', '2025-12-21 22:37:05', '', 0, '0', NULL), + (451, 1, 0, 30, 36, 2, '2025-12-22 00:00:37', '2025-12-22 00:00:37', '', 0, '0', NULL), + (452, 0, 1, 30, 49, 2, '2025-12-22 01:09:26', '2025-12-22 01:10:19', 'Re-Qualification\r\n\r\nTrainee was able to land at the hot LZ in the desired time frame and plot an 8 digit within the provided grid coordinate.', 0, '0', NULL), + (453, 0, 0, 30, 50, 2, '2025-12-22 01:12:29', '2025-12-22 01:12:29', '- Fail\n\nSoft failures:\nSoft Fail - Causing avoidable damage to the airframe during the hot LZ portion.\nSoft Fail - Plotting an LZ 100 meters off the requested location during the sling load portion.', 0, '0', NULL), + (454, 0, 0, 30, 53, 2, '2025-12-22 01:18:49', '2025-12-22 01:18:49', 'Soft failures:\nSoft Fail - Plotting map markers more than 10m off from the assigned LZ.\nSoft Fail - Landing more than 10m off the assigned LZ.\nSoft Fail - Causing avoidable damage to the airframe.\nSoft Fail - Not landing at the hot LZ within 30 seconds.\nHard Fail - Causing catastrophic damage during the Antitorque and Autorotation portions.\nHard Fail - Causing catastrophic damage during the sling load portion.', 0, '0', NULL), + (455, 1, 0, 30, 73, 2, '2025-12-22 23:22:03', '2025-12-22 23:22:03', '', 0, '0', NULL), + (456, 1, 0, 30, 81, 2, '2025-12-22 23:32:41', '2025-12-22 23:32:41', '', 0, '0', NULL), + (457, 0, 0, 30, 83, 2, '2025-12-23 20:13:11', '2025-12-23 20:13:11', '- Failed\n- Gets the concepts just needs practice with application.', 0, '0', NULL), + (458, 1, 0, 30, 84, 2, '2025-12-23 20:20:49', '2025-12-23 20:20:49', '', 0, '0', NULL), + (459, 0, 1, 30, 91, 2, '2025-12-23 20:39:15', '2025-12-23 20:39:15', 'Requal after previous attempt 48 hours ago, passed with 1 soft fail', 0, '0', NULL), + (460, 1, 0, 30, 92, 2, '2025-12-23 20:43:48', '2025-12-23 20:43:48', '', 0, '0', NULL), + (461, 1, 1, 30, 254, 2, '2025-12-30 22:48:52', '2025-12-30 22:48:52', '', 0, NULL, NULL), + (462, 0, 0, 31, 215, 3, '2025-12-30 14:44:16', '2025-12-30 14:44:16', '', 0, NULL, NULL), + (463, 1, 0, 31, 416, 4, '2026-01-03 00:10:56', '2026-01-03 00:10:56', '', 0, NULL, NULL), + (464, 1, 0, 32, 24, 2, '2025-12-21 20:15:52', '2025-12-21 20:15:52', '', 0, '0', NULL), + (465, 1, 1, 32, 254, 2, '2025-12-30 22:48:52', '2025-12-30 22:48:52', '', 0, NULL, NULL), + (466, 1, 0, 33, 118, 2, '2025-12-26 23:23:51', '2025-12-26 23:23:51', 'Pass, going Alpha', 0, '0', NULL), + (467, 0, 1, 33, 119, 2, '2025-12-26 23:24:52', '2025-12-26 23:24:52', '0:50 27/30 1st try', 0, '0', NULL), + (468, 0, 1, 33, 120, 2, '2025-12-26 23:25:24', '2025-12-26 23:25:24', '5/5 1st try', 0, '0', NULL), + (469, 1, 0, 33, 364, 2, '2026-01-01 16:37:07', '2026-01-01 16:37:07', 'Going Alpha', 0, NULL, NULL), + (470, 0, 1, 33, 365, 2, '2026-01-01 16:39:16', '2026-01-01 16:39:16', '1st Attempt - 30/30 - 43.76 secs', 0, NULL, NULL), + (471, 1, 1, 33, 366, 2, '2026-01-01 16:43:09', '2026-01-01 16:43:09', '', 0, NULL, NULL), + (472, 1, 1, 34, 25, 2, '2025-12-21 20:33:15', '2025-12-21 20:33:15', '', 0, '0', NULL), + (473, 1, 1, 34, 30, 2, '2025-12-21 22:38:57', '2025-12-21 22:38:57', '', 0, '0', NULL), + (474, 1, 0, 34, 32, 2, '2025-12-21 22:44:42', '2025-12-21 22:50:48', '', 0, '0', NULL), + (475, 0, 1, 34, 33, 2, '2025-12-21 23:11:33', '2025-12-21 23:14:34', '', 0, '0', NULL), + (476, 1, 1, 34, 34, 2, '2025-12-21 23:13:40', '2025-12-21 23:13:40', '', 0, '0', NULL), + (477, 1, 1, 34, 37, 2, '2025-12-22 00:02:44', '2025-12-22 00:02:44', 'Passed. Trainee had completed this training the last time he was in the unit, so it was quite...', 0, '0', NULL), + (478, 1, 0, 34, 65, 2, '2025-12-22 22:13:51', '2025-12-22 22:13:51', '', 0, '0', NULL), + (479, 1, 0, 34, 66, 2, '2025-12-22 22:18:32', '2025-12-22 22:18:32', '', 0, '0', NULL), + (480, 1, 1, 34, 88, 2, '2025-12-23 20:30:54', '2025-12-23 20:30:54', 'Trainee was advised on the following points of improvement:\nBrevity and being concise when talking on radios and constant reporting to platoon lead.\nMaking sure to give timely corrections anytime a mistake is done and realized on the part of the RTO.\nReporting the proper 6-line and fire mission requests for CAS and IDF, respectively.', 0, '0', NULL), + (481, 1, 1, 34, 92, 2, '2025-12-23 20:43:48', '2025-12-23 20:43:48', 'Has completed all necessary requirements to fill the role of medic during official ops. Admin complete', 0, '0', NULL), + (482, 1, 1, 34, 103, 2, '2025-12-24 23:15:17', '2025-12-24 23:15:17', '', 0, '0', NULL), + (483, 1, 1, 34, 109, 2, '2025-12-25 00:02:31', '2025-12-25 00:02:31', 'Passed 2nd try (2 soft fails)', 0, '0', NULL), + (484, 0, 0, 34, 111, 2, '2025-12-25 00:14:21', '2025-12-25 00:14:21', 'Trainee was spotted and killed by OPFOR\nTrainee advised on improving personal recon', 0, '0', NULL), + (485, 1, 1, 34, 114, 2, '2025-12-26 22:18:31', '2025-12-26 22:19:28', '(Soft Fail: Need to work on clear paths through the minefield)', 0, '0', NULL), + (486, 1, 1, 34, 121, 2, '2025-12-26 23:31:08', '2025-12-26 23:31:08', '', 0, '0', NULL), + (487, 1, 0, 34, 371, 2, '2026-01-01 18:51:48', '2026-01-01 18:51:48', 'Going Alpha', 0, NULL, NULL), + (488, 1, 0, 34, 392, 2, '2026-01-01 21:37:39', '2026-01-01 21:37:39', '- PASS RANGER', 0, NULL, NULL), + (489, 0, 0, 35, 271, 3, '2025-12-31 17:00:33', '2025-12-31 17:00:33', '', 0, NULL, NULL), + (490, 1, 1, 35, 282, 2, '2025-12-31 17:49:16', '2025-12-31 17:49:16', '', 0, NULL, NULL), + (491, 1, 0, 35, 321, 2, '2025-12-31 21:40:48', '2025-12-31 21:40:48', '', 0, NULL, NULL), + (492, 1, 0, 35, 334, 2, '2025-12-31 23:05:21', '2025-12-31 23:05:21', '', 0, NULL, NULL), + (493, 1, 1, 35, 337, 2, '2026-01-01 00:31:58', '2026-01-01 00:31:58', '', 0, NULL, NULL), + (494, 1, 1, 35, 338, 2, '2026-01-01 00:33:47', '2026-01-01 00:33:47', '', 0, NULL, NULL), + (495, 1, 0, 35, 339, 2, '2026-01-01 00:38:21', '2026-01-01 00:38:21', '', 0, NULL, NULL), + (496, 1, 0, 35, 343, 2, '2026-01-01 01:13:23', '2026-01-01 01:13:23', '', 0, NULL, NULL), + (497, 1, 0, 35, 344, 2, '2026-01-01 01:22:13', '2026-01-01 01:22:13', '', 0, NULL, NULL), + (498, 1, 1, 35, 345, 2, '2026-01-01 01:27:31', '2026-01-01 01:27:31', '', 0, NULL, NULL), + (499, 1, 0, 35, 346, 2, '2026-01-01 01:35:30', '2026-01-01 01:35:30', 'Going Alpha', 0, NULL, NULL), + (500, 0, 1, 35, 347, 2, '2026-01-01 01:36:39', '2026-01-01 01:36:39', '28/30 - 58 seconds - Pass', 0, NULL, NULL), + (501, 0, 1, 35, 348, 2, '2026-01-01 01:37:06', '2026-01-01 01:37:06', '- 1st Attempt - Pass', 0, NULL, NULL), + (502, 1, 0, 36, 24, 2, '2025-12-21 20:15:52', '2025-12-21 20:15:52', '', 0, '0', NULL), + (503, 0, 0, 36, 27, 5, '2025-12-21 22:18:19', '2025-12-21 22:18:19', '', 0, '0', NULL), + (504, 0, 0, 37, 8, 1, '2025-12-20 23:28:16', '2025-12-20 23:28:16', '', 0, '0', NULL), + (505, 0, 0, 37, 19, 1, '2025-12-21 19:23:27', '2025-12-21 19:23:27', '', 0, '0', NULL), + (506, 0, 0, 37, 20, 1, '2025-12-21 19:30:23', '2025-12-21 19:30:23', '', 0, '0', NULL), + (507, 0, 0, 37, 26, 1, '2025-12-21 21:41:03', '2025-12-21 21:41:03', '', 0, '0', NULL), + (508, 0, 0, 37, 63, 3, '2025-12-22 21:57:38', '2025-12-22 21:57:38', '', 0, '0', NULL), + (509, 0, 0, 37, 72, 1, '2025-12-22 23:20:16', '2025-12-22 23:20:16', '', 0, '0', NULL), + (510, 0, 0, 37, 91, 4, '2025-12-23 20:39:15', '2025-12-23 20:39:15', '', 0, '0', NULL), + (511, 0, 0, 37, 118, 1, '2025-12-26 23:23:51', '2025-12-26 23:23:51', '', 0, '0', NULL), + (512, 0, 0, 37, 119, 1, '2025-12-26 23:24:52', '2025-12-26 23:24:52', '', 0, '0', NULL), + (513, 0, 0, 37, 120, 1, '2025-12-26 23:25:24', '2025-12-26 23:25:24', '', 0, '0', NULL), + (514, 1, 0, 37, 131, 2, '2025-12-28 15:19:32', '2025-12-28 15:19:32', '', 0, '0', NULL), + (515, 0, 0, 37, 133, 3, '2025-12-28 15:24:40', '2025-12-28 15:24:40', '', 0, '0', NULL), + (516, 0, 0, 37, 144, 1, '2025-12-28 16:38:42', '2025-12-28 16:38:42', '', 0, NULL, NULL), + (517, 1, 1, 37, 146, 2, '2025-12-28 16:48:49', '2025-12-28 16:48:49', '', 0, NULL, NULL), + (518, 1, 0, 37, 149, 2, '2025-12-28 17:05:25', '2025-12-28 17:05:25', '', 0, NULL, NULL), + (519, 0, 0, 37, 165, 3, '2025-12-28 18:43:28', '2025-12-28 18:43:28', '', 0, NULL, NULL), + (520, 0, 0, 37, 168, 3, '2025-12-28 18:50:13', '2025-12-28 18:50:13', '', 0, NULL, NULL), + (521, 0, 1, 37, 169, 2, '2025-12-28 19:19:01', '2025-12-28 19:19:01', '', 0, NULL, NULL), + (522, 0, 1, 37, 172, 2, '2025-12-28 19:29:35', '2025-12-28 19:29:35', 'Passed. Trainee scored 100% on first stage of knowledge check. Trainee scored 100% on second, timed, knowledge check with a 90% kill rate.', 0, NULL, NULL), + (523, 1, 0, 37, 230, 2, '2025-12-30 16:53:12', '2025-12-30 16:53:12', '', 0, NULL, NULL), + (524, 1, 0, 37, 367, 2, '2026-01-01 18:34:17', '2026-01-01 18:34:17', '', 0, NULL, NULL), + (525, 0, 0, 37, 372, 1, '2026-01-01 18:56:04', '2026-01-01 18:56:04', '', 0, NULL, NULL), + (526, 0, 0, 38, 83, 1, '2025-12-23 20:13:11', '2025-12-23 20:13:11', '', 0, '0', NULL), + (527, 0, 0, 38, 121, 1, '2025-12-26 23:31:08', '2025-12-26 23:31:08', '', 0, '0', NULL), + (528, 0, 0, 38, 156, 1, '2025-12-28 17:29:22', '2025-12-28 17:29:22', '', 0, NULL, NULL), + (529, 0, 0, 38, 157, 1, '2025-12-28 17:34:27', '2025-12-28 17:34:27', '', 0, NULL, NULL), + (530, 0, 0, 38, 173, 4, '2025-12-28 19:32:33', '2025-12-28 19:32:33', '', 0, NULL, NULL), + (531, 0, 0, 38, 174, 4, '2025-12-28 19:33:29', '2025-12-28 19:33:29', '', 0, NULL, NULL), + (532, 0, 0, 38, 182, 3, '2025-12-28 20:34:29', '2025-12-28 20:34:29', '', 0, NULL, NULL), + (533, 0, 0, 38, 222, 3, '2025-12-30 16:00:43', '2025-12-30 16:00:43', '', 0, NULL, NULL), + (534, 0, 0, 38, 249, 1, '2025-12-30 20:46:03', '2025-12-30 20:46:03', '', 0, NULL, NULL), + (535, 0, 0, 38, 295, 1, '2025-12-31 19:32:54', '2025-12-31 19:32:54', '', 0, NULL, NULL), + (536, 0, 0, 38, 326, 3, '2025-12-31 22:36:37', '2025-12-31 22:36:37', '', 0, NULL, NULL), + (537, 0, 0, 38, 331, 1, '2025-12-31 22:55:47', '2025-12-31 22:55:47', '', 0, NULL, NULL), + (538, 0, 0, 38, 332, 1, '2025-12-31 22:57:19', '2025-12-31 22:57:19', '', 0, NULL, NULL), + (539, 0, 0, 38, 333, 3, '2025-12-31 23:01:54', '2025-12-31 23:01:54', '', 0, NULL, NULL), + (540, 0, 0, 38, 338, 1, '2026-01-01 00:33:47', '2026-01-01 00:33:47', '', 0, NULL, NULL), + (541, 0, 0, 38, 346, 1, '2026-01-01 01:35:30', '2026-01-01 01:35:30', '', 0, NULL, NULL), + (542, 0, 0, 38, 347, 1, '2026-01-01 01:36:39', '2026-01-01 01:36:39', '', 0, NULL, NULL), + (543, 0, 0, 38, 348, 1, '2026-01-01 01:37:06', '2026-01-01 01:37:06', '', 0, NULL, NULL), + (544, 1, 1, 38, 349, 2, '2026-01-01 01:41:37', '2026-01-01 01:41:37', '', 0, NULL, NULL), + (545, 0, 0, 38, 351, 4, '2026-01-01 01:51:28', '2026-01-01 01:51:28', '', 0, NULL, NULL), + (546, 0, 0, 38, 354, 4, '2026-01-01 02:03:44', '2026-01-01 02:03:44', '', 0, NULL, NULL), + (547, 0, 0, 38, 355, 1, '2026-01-01 02:04:58', '2026-01-01 02:04:58', '', 0, NULL, NULL), + (548, 0, 0, 38, 356, 4, '2026-01-01 02:07:40', '2026-01-01 02:07:40', '', 0, NULL, NULL), + (549, 0, 0, 38, 357, 1, '2026-01-01 02:09:40', '2026-01-01 02:09:40', '', 0, NULL, NULL), + (550, 0, 0, 38, 358, 1, '2026-01-01 02:10:41', '2026-01-01 02:10:41', '', 0, NULL, NULL), + (551, 0, 0, 38, 360, 3, '2026-01-01 16:09:30', '2026-01-01 16:11:01', '', 0, NULL, NULL), + (552, 0, 0, 38, 361, 3, '2026-01-01 16:15:50', '2026-01-01 16:15:50', '', 0, NULL, NULL), + (553, 0, 0, 38, 362, 1, '2026-01-01 16:17:39', '2026-01-01 16:17:39', '', 0, NULL, NULL), + (554, 0, 0, 38, 363, 1, '2026-01-01 16:19:01', '2026-01-01 16:19:01', '', 0, NULL, NULL), + (555, 0, 0, 38, 368, 1, '2026-01-01 18:37:09', '2026-01-01 18:37:09', '', 0, NULL, NULL), + (556, 0, 1, 38, 393, 2, '2026-01-01 22:44:02', '2026-01-01 22:44:02', '30/30 rounds, 58 seconds.', 0, NULL, NULL), + (557, 1, 0, 38, 395, 2, '2026-01-01 22:51:22', '2026-01-01 22:51:22', '', 0, NULL, NULL), + (558, 0, 0, 38, 396, 1, '2026-01-02 18:31:47', '2026-01-02 18:31:47', '', 0, NULL, NULL), + (559, 0, 0, 38, 397, 1, '2026-01-02 19:54:22', '2026-01-02 19:54:22', '', 0, NULL, NULL), + (560, 0, 0, 38, 398, 1, '2026-01-02 20:12:47', '2026-01-02 20:12:47', '', 0, NULL, NULL), + (561, 0, 0, 38, 399, 1, '2026-01-02 20:14:48', '2026-01-02 20:14:48', '', 0, NULL, NULL), + (562, 0, 0, 38, 400, 3, '2026-01-02 20:17:10', '2026-01-02 20:17:10', '', 0, NULL, NULL), + (563, 0, 0, 38, 401, 1, '2026-01-02 20:23:21', '2026-01-02 20:23:21', '', 0, NULL, NULL), + (564, 1, 0, 38, 402, 2, '2026-01-02 20:40:49', '2026-01-02 20:40:49', '', 0, NULL, NULL), + (565, 0, 0, 38, 403, 1, '2026-01-02 20:45:05', '2026-01-02 20:45:05', '', 0, NULL, NULL), + (566, 0, 0, 38, 404, 1, '2026-01-02 20:45:26', '2026-01-02 20:45:26', '', 0, NULL, NULL), + (567, 0, 0, 38, 405, 4, '2026-01-02 20:48:52', '2026-01-02 20:48:52', '', 0, NULL, NULL), + (568, 0, 0, 38, 406, 1, '2026-01-02 20:57:29', '2026-01-02 20:57:29', '', 0, NULL, NULL), + (569, 1, 0, 38, 407, 4, '2026-01-02 21:02:17', '2026-01-02 21:02:17', '', 0, NULL, NULL), + (570, 0, 0, 38, 408, 4, '2026-01-02 21:57:33', '2026-01-02 21:57:33', '', 0, NULL, NULL), + (571, 0, 0, 38, 409, 4, '2026-01-02 21:59:39', '2026-01-02 21:59:39', '', 0, NULL, NULL), + (572, 0, 0, 38, 410, 1, '2026-01-02 22:00:57', '2026-01-02 22:00:57', '', 0, NULL, NULL), + (573, 0, 0, 38, 411, 1, '2026-01-02 22:04:13', '2026-01-02 22:04:13', '', 0, NULL, NULL), + (574, 1, 0, 39, 9, 2, '2025-12-21 00:07:16', '2025-12-21 00:09:59', '', 0, '0', NULL), + (575, 0, 0, 39, 26, 2, '2025-12-21 21:41:03', '2025-12-21 21:41:03', '', 0, '0', NULL), + (576, 1, 0, 39, 318, 2, '2025-12-31 21:31:27', '2025-12-31 21:31:27', '', 0, NULL, NULL), + (577, 1, 0, 39, 342, 2, '2026-01-01 01:06:25', '2026-01-01 01:06:25', '', 0, NULL, NULL), + (578, 0, 0, 39, 384, 1, '2026-01-01 20:55:06', '2026-01-01 20:55:06', '', 0, NULL, NULL), + (579, 0, 0, 39, 386, 3, '2026-01-01 21:02:55', '2026-01-01 21:02:55', '', 0, NULL, NULL), + (580, 0, 0, 39, 387, 1, '2026-01-01 21:06:49', '2026-01-01 21:06:49', '', 0, NULL, NULL), + (581, 0, 0, 39, 388, 1, '2026-01-01 21:08:44', '2026-01-01 21:08:44', '', 0, NULL, NULL), + (582, 0, 0, 39, 391, 1, '2026-01-01 21:25:52', '2026-01-01 21:25:52', '', 0, NULL, NULL), + (583, 1, 1, 40, 30, 2, '2025-12-21 22:38:58', '2025-12-21 22:38:58', '', 0, '0', NULL), + (584, 1, 0, 40, 38, 2, '2025-12-22 00:05:00', '2025-12-22 00:05:00', '', 0, '0', NULL), + (585, 1, 0, 40, 59, 2, '2025-12-22 21:29:39', '2025-12-22 21:29:39', '', 0, '0', NULL), + (586, 0, 1, 40, 60, 2, '2025-12-22 21:31:14', '2025-12-22 21:31:14', 'Marksman: 48.03 sec, 30/30, 1st attempt - Pass', 0, '0', NULL), + (587, 0, 0, 40, 61, 2, '2025-12-22 21:39:07', '2025-12-22 21:39:07', 'Failed', 0, '0', NULL), + (588, 1, 0, 40, 62, 2, '2025-12-22 21:54:19', '2025-12-22 21:54:19', '(Alpha)', 0, '0', NULL), + (589, 1, 0, 40, 383, 2, '2026-01-01 20:33:00', '2026-01-01 20:33:00', 'Going Echo', 0, NULL, NULL), + (590, 1, 1, 41, 239, 2, '2025-12-30 18:31:31', '2025-12-30 18:31:31', '', 0, NULL, NULL), + (591, 1, 0, 41, 334, 2, '2025-12-31 23:05:21', '2025-12-31 23:05:21', '', 0, NULL, NULL), + (592, 1, 0, 41, 335, 2, '2025-12-31 23:06:59', '2025-12-31 23:06:59', '', 0, NULL, NULL), + (593, 1, 1, 41, 337, 2, '2026-01-01 00:31:58', '2026-01-01 00:31:58', '', 0, NULL, NULL), + (594, 1, 0, 41, 355, 2, '2026-01-01 02:04:58', '2026-01-01 02:04:58', 'Going Alpha', 0, NULL, NULL), + (595, 1, 0, 41, 367, 2, '2026-01-01 18:34:16', '2026-01-01 18:34:16', '', 0, NULL, NULL), + (596, 1, 0, 41, 368, 2, '2026-01-01 18:37:09', '2026-01-01 18:37:09', '', 0, NULL, NULL), + (597, 0, 1, 41, 403, 2, '2026-01-02 20:45:04', '2026-01-02 20:45:04', ' 29/30 - 59 Seconds', 0, NULL, NULL), + (598, 0, 1, 41, 404, 2, '2026-01-02 20:45:26', '2026-01-02 20:45:26', 'Pass 1st Attempt', 0, NULL, NULL), + (599, 0, 0, 42, 29, 4, '2025-12-21 22:37:05', '2025-12-21 22:37:05', '', 0, '0', NULL), + (600, 0, 0, 42, 36, 1, '2025-12-22 00:00:37', '2025-12-22 00:00:37', '', 0, '0', NULL), + (601, 0, 0, 42, 43, 1, '2025-12-22 00:48:13', '2025-12-22 00:48:13', '', 0, '0', NULL), + (602, 0, 0, 42, 44, 1, '2025-12-22 00:49:32', '2025-12-22 00:49:32', '', 0, '0', NULL), + (603, 0, 0, 42, 47, 3, '2025-12-22 01:05:11', '2025-12-22 01:05:11', '', 0, '0', NULL), + (604, 0, 0, 42, 54, 1, '2025-12-22 01:20:22', '2025-12-22 01:20:22', '', 0, '0', NULL), + (605, 0, 0, 42, 73, 1, '2025-12-22 23:22:03', '2025-12-22 23:22:03', '', 0, '0', NULL), + (606, 0, 0, 42, 93, 3, '2025-12-23 21:31:21', '2025-12-23 21:31:21', '', 0, '0', NULL), + (607, 0, 0, 42, 99, 1, '2025-12-24 22:12:50', '2025-12-24 22:12:50', '', 0, '0', NULL), + (608, 0, 0, 42, 100, 1, '2025-12-24 22:14:03', '2025-12-24 22:14:03', '', 0, '0', NULL), + (609, 0, 0, 42, 104, 1, '2025-12-24 23:17:19', '2025-12-24 23:17:19', '', 0, '0', NULL), + (610, 0, 0, 42, 108, 1, '2025-12-24 23:58:23', '2025-12-24 23:58:23', '', 0, '0', NULL), + (611, 0, 0, 42, 135, 3, '2025-12-28 15:29:04', '2025-12-28 15:29:04', '', 0, '0', NULL), + (612, 0, 0, 42, 151, 3, '2025-12-28 17:09:17', '2025-12-28 17:09:17', '', 0, NULL, NULL), + (613, 0, 0, 42, 152, 1, '2025-12-28 17:10:39', '2025-12-28 17:10:39', '', 0, NULL, NULL), + (614, 0, 0, 42, 164, 1, '2025-12-28 18:40:22', '2025-12-28 18:40:22', '', 0, NULL, NULL), + (615, 0, 0, 42, 167, 1, '2025-12-28 18:47:38', '2025-12-28 18:47:38', '', 0, NULL, NULL), + (616, 0, 0, 42, 169, 4, '2025-12-28 19:19:02', '2025-12-28 19:19:02', '', 0, NULL, NULL), + (617, 0, 0, 42, 178, 1, '2025-12-28 20:06:53', '2025-12-28 20:06:53', '', 0, NULL, NULL), + (618, 0, 0, 42, 183, 1, '2025-12-28 20:38:42', '2025-12-28 20:38:42', '', 0, NULL, NULL), + (619, 0, 0, 42, 189, 1, '2025-12-28 23:05:14', '2025-12-28 23:05:14', '', 0, NULL, NULL), + (620, 0, 0, 42, 239, 4, '2025-12-30 18:31:31', '2025-12-30 18:31:31', '', 0, NULL, NULL), + (621, 0, 0, 42, 268, 1, '2025-12-31 01:21:17', '2025-12-31 01:21:17', '', 0, NULL, NULL), + (622, 0, 0, 42, 272, 1, '2025-12-31 17:01:51', '2025-12-31 17:01:51', '', 0, NULL, NULL), + (623, 0, 0, 42, 273, 1, '2025-12-31 17:03:06', '2025-12-31 17:03:06', '', 0, NULL, NULL), + (624, 0, 0, 42, 274, 1, '2025-12-31 17:03:51', '2025-12-31 17:03:51', '', 0, NULL, NULL), + (625, 0, 0, 42, 289, 1, '2025-12-31 18:09:55', '2025-12-31 18:09:55', '', 0, NULL, NULL), + (626, 0, 0, 42, 290, 1, '2025-12-31 18:10:49', '2025-12-31 18:10:49', '', 0, NULL, NULL), + (627, 0, 0, 42, 293, 1, '2025-12-31 18:47:26', '2025-12-31 18:47:26', '', 0, NULL, NULL), + (628, 0, 0, 42, 312, 1, '2025-12-31 21:08:44', '2025-12-31 21:08:44', '', 0, NULL, NULL), + (629, 0, 0, 42, 313, 1, '2025-12-31 21:11:23', '2025-12-31 21:11:23', '', 0, NULL, NULL), + (630, 1, 0, 42, 334, 2, '2025-12-31 23:05:21', '2025-12-31 23:05:21', '', 0, NULL, NULL), + (631, 0, 0, 42, 335, 1, '2025-12-31 23:06:59', '2025-12-31 23:06:59', '', 0, NULL, NULL), + (632, 0, 0, 42, 341, 1, '2026-01-01 01:00:33', '2026-01-01 01:00:33', '', 0, NULL, NULL), + (633, 1, 1, 42, 352, 2, '2026-01-01 01:52:43', '2026-01-01 01:52:43', '', 0, NULL, NULL), + (634, 1, 0, 42, 356, 2, '2026-01-01 02:07:40', '2026-01-01 02:07:40', 'Going Echo', 0, NULL, NULL), + (635, 1, 0, 42, 367, 2, '2026-01-01 18:34:16', '2026-01-01 18:34:16', '', 0, NULL, NULL), + (636, 1, 0, 42, 368, 2, '2026-01-01 18:37:09', '2026-01-01 18:37:09', '', 0, NULL, NULL), + (637, 1, 0, 42, 369, 2, '2026-01-01 18:39:27', '2026-01-01 18:39:27', '', 0, NULL, NULL), + (638, 0, 1, 42, 376, 2, '2026-01-01 20:00:24', '2026-01-01 20:00:24', '', 0, NULL, NULL), + (639, 0, 0, 42, 377, 1, '2026-01-01 20:01:53', '2026-01-01 20:01:53', '', 0, NULL, NULL), + (640, 0, 0, 42, 378, 1, '2026-01-01 20:02:53', '2026-01-01 20:02:53', '', 0, NULL, NULL), + (641, 1, 1, 42, 406, 2, '2026-01-02 20:57:29', '2026-01-02 20:57:29', '- Nothing of note to work on', 0, NULL, NULL), + (642, 0, 0, 43, 11, 3, '2025-12-21 00:26:53', '2025-12-21 00:26:53', '', 0, '0', NULL), + (643, 0, 0, 43, 12, 3, '2025-12-21 00:28:23', '2025-12-21 00:28:23', '', 0, '0', NULL), + (644, 0, 0, 43, 13, 3, '2025-12-21 00:35:26', '2025-12-21 00:35:26', '', 0, '0', NULL), + (645, 0, 0, 43, 16, 2, '2025-12-21 00:46:18', '2025-12-21 00:46:18', '', 0, '0', NULL), + (646, 1, 1, 43, 25, 1, '2025-12-21 20:33:14', '2025-12-21 20:33:14', '', 0, '0', NULL), + (647, 0, 0, 43, 153, 1, '2025-12-28 17:20:58', '2025-12-28 17:20:58', '', 0, NULL, NULL), + (648, 0, 0, 43, 184, 1, '2025-12-28 20:40:48', '2025-12-28 20:40:48', '', 0, NULL, NULL), + (649, 1, 1, 43, 197, 2, '2025-12-29 00:03:01', '2025-12-29 00:03:01', '', 0, NULL, NULL), + (650, 1, 1, 43, 240, 1, '2025-12-30 18:41:44', '2025-12-30 18:41:44', '', 0, NULL, NULL), + (651, 0, 0, 43, 241, 1, '2025-12-30 18:42:27', '2025-12-30 18:42:27', '', 0, NULL, NULL), + (652, 0, 0, 43, 248, 1, '2025-12-30 20:43:58', '2025-12-30 20:43:58', '', 0, NULL, NULL), + (653, 1, 0, 43, 302, 2, '2025-12-31 20:07:01', '2025-12-31 20:07:01', '', 0, NULL, NULL), + (654, 0, 0, 43, 345, 1, '2026-01-01 01:27:31', '2026-01-01 01:27:31', '', 0, NULL, NULL), + (655, 0, 0, 44, 114, 5, '2025-12-26 22:18:31', '2025-12-26 22:18:31', '', 0, '0', NULL), + (656, 1, 1, 44, 328, 2, '2025-12-31 22:40:18', '2025-12-31 22:40:18', '', 0, NULL, NULL), + (657, 0, 0, 44, 329, 5, '2025-12-31 22:42:10', '2025-12-31 22:42:10', '', 0, NULL, NULL), + (658, 1, 0, 44, 370, 2, '2026-01-01 18:49:02', '2026-01-01 18:49:02', 'Going Alpha', 0, NULL, NULL), + (659, 1, 0, 44, 389, 2, '2026-01-01 21:12:04', '2026-01-01 21:12:04', 'Going Alpha', 0, NULL, NULL), + (660, 1, 1, 45, 276, 2, '2025-12-31 17:39:52', '2025-12-31 17:39:52', '', 0, NULL, NULL), + (661, 0, 0, 45, 305, 1, '2025-12-31 20:21:10', '2025-12-31 20:21:10', '', 0, NULL, NULL), + (662, 1, 0, 45, 322, 2, '2025-12-31 21:51:17', '2025-12-31 21:51:17', '', 0, NULL, NULL), + (663, 0, 0, 45, 342, 2, '2026-01-01 01:06:25', '2026-01-01 01:06:25', '', 0, NULL, NULL), + (664, 1, 0, 45, 386, 2, '2026-01-01 21:02:55', '2026-01-01 21:02:55', 'Going Echo', 0, NULL, NULL), + (665, 0, 0, 46, 34, 1, '2025-12-21 23:13:40', '2025-12-21 23:13:40', '', 0, '0', NULL), + (666, 0, 0, 46, 45, 1, '2025-12-22 00:55:01', '2025-12-22 00:55:19', '', 0, '0', NULL), + (667, 0, 0, 46, 48, 1, '2025-12-22 01:07:51', '2025-12-22 01:07:51', '', 0, '0', NULL), + (668, 0, 0, 46, 55, 1, '2025-12-22 21:20:04', '2025-12-22 21:20:04', '', 0, '0', NULL), + (669, 0, 0, 46, 89, 4, '2025-12-23 20:34:02', '2025-12-23 20:34:02', '', 0, '0', NULL), + (670, 0, 0, 46, 141, 1, '2025-12-28 16:17:04', '2025-12-28 16:21:31', '', 0, '0', NULL), + (671, 0, 0, 46, 213, 4, '2025-12-30 14:34:47', '2025-12-30 14:34:47', '', 0, NULL, NULL), + (672, 0, 0, 46, 215, 1, '2025-12-30 14:44:16', '2025-12-30 14:44:16', '', 0, NULL, NULL), + (673, 0, 0, 46, 233, 1, '2025-12-30 17:28:36', '2025-12-30 17:28:36', '', 0, NULL, NULL), + (674, 0, 0, 46, 276, 4, '2025-12-31 17:39:53', '2025-12-31 17:39:53', '', 0, NULL, NULL), + (675, 1, 0, 47, 2, 2, '2025-12-19 15:04:18', '2025-12-19 15:04:18', '', 0, '0', NULL), + (676, 1, 0, 47, 3, 2, '2025-12-19 15:13:13', '2025-12-19 15:13:13', '', 0, '0', NULL), + (677, 1, 0, 47, 4, 2, '2025-12-19 15:33:58', '2025-12-19 15:33:58', '', 0, '0', NULL), + (678, 0, 1, 47, 8, 2, '2025-12-20 23:28:16', '2025-12-20 23:28:16', '2nd attempt', 0, '0', NULL), + (679, 1, 0, 47, 9, 2, '2025-12-21 00:07:16', '2025-12-21 00:09:58', '', 0, '0', NULL), + (680, 0, 1, 47, 17, 2, '2025-12-21 00:48:56', '2025-12-21 00:48:56', '29/30, 1:02, 1st Attempt', 0, '0', NULL), + (681, 0, 0, 47, 18, 2, '2025-12-21 00:50:41', '2025-12-21 00:50:41', 'Fail - May attempt again after 48 hours', 0, '0', NULL), + (682, 1, 0, 47, 19, 2, '2025-12-21 19:23:27', '2025-12-21 19:23:27', 'Going Alpha', 0, '0', NULL), + (683, 1, 1, 47, 20, 2, '2025-12-21 19:30:23', '2025-12-21 19:30:23', '', 0, '0', NULL), + (684, 1, 1, 47, 21, 2, '2025-12-21 20:02:02', '2025-12-21 20:02:02', '', 0, '0', NULL), + (685, 1, 0, 48, 289, 2, '2025-12-31 18:09:55', '2025-12-31 18:09:55', '', 0, NULL, NULL), + (686, 1, 0, 48, 290, 2, '2025-12-31 18:10:49', '2025-12-31 18:10:49', '', 0, NULL, NULL), + (687, 0, 1, 49, 198, 2, '2025-12-29 22:19:55', '2025-12-29 22:19:55', '(28/30, 1.09)', 0, NULL, NULL), + (688, 0, 1, 49, 199, 2, '2025-12-29 22:20:25', '2025-12-29 22:20:25', '(5/5, second go)', 0, NULL, NULL), + (689, 1, 0, 49, 200, 2, '2025-12-29 22:23:58', '2025-12-29 22:23:58', '(going Alpha)', 0, NULL, NULL), + (690, 1, 0, 50, 2, 2, '2025-12-19 15:04:18', '2025-12-19 15:04:18', '', 0, '0', NULL), + (691, 1, 0, 50, 3, 2, '2025-12-19 15:13:13', '2025-12-19 15:13:13', '', 0, '0', NULL), + (692, 1, 0, 50, 4, 2, '2025-12-19 15:33:58', '2025-12-19 15:33:58', '', 0, '0', NULL), + (693, 1, 1, 50, 25, 2, '2025-12-21 20:33:15', '2025-12-21 20:33:15', '', 0, '0', NULL), + (694, 0, 1, 50, 35, 2, '2025-12-21 23:18:06', '2025-12-21 23:18:06', '', 0, '0', NULL), + (695, 1, 0, 50, 48, 2, '2025-12-22 01:07:51', '2025-12-22 01:07:51', '', 0, '0', NULL), + (696, 1, 1, 50, 51, 2, '2025-12-22 01:15:25', '2025-12-22 01:15:25', 'Passed. Soft fail issued for missing three fire missions. Corrected with trainer instruction.', 0, '0', NULL), + (697, 1, 1, 50, 55, 2, '2025-12-22 21:20:04', '2025-12-22 21:20:04', '', 0, '0', NULL), + (698, 0, 0, 50, 103, 5, '2025-12-24 23:15:17', '2025-12-24 23:15:17', '(Ran late due to a 1-1 qual and missed crucial starting info)', 0, '0', NULL), + (699, 0, 1, 50, 104, 2, '2025-12-24 23:17:19', '2025-12-24 23:17:19', 'Trainee should practice further with the M230 in the DAP, Otherwise good runs all around.', 0, '0', NULL), + (700, 1, 0, 50, 105, 2, '2025-12-24 23:18:38', '2025-12-24 23:18:38', '', 0, '0', NULL), + (701, 1, 0, 50, 108, 2, '2025-12-24 23:58:23', '2025-12-24 23:58:23', 'Covered the contents of the Rotary CAS doc, as well as practiced with all 3 aircraft. Advised the pilot on controlling speeds on approach to allow for more time on target, as well as making sure to go further away and try to break contact before re-engaging the same position.\nQual to be held next week.', 0, '0', NULL), + (702, 1, 1, 50, 109, 2, '2025-12-25 00:02:31', '2025-12-25 00:02:31', 'Passed 2nd try', 0, '0', NULL), + (703, 1, 1, 50, 114, 2, '2025-12-26 22:18:31', '2025-12-26 22:19:24', '(Soft Fail: Need to be clear to the fireteam where security needs to be posted and where the muster point is for wounded.)', 0, '0', NULL), + (704, 1, 1, 50, 121, 2, '2025-12-26 23:31:08', '2025-12-26 23:31:08', '', 0, '0', NULL), + (705, 1, 1, 50, 123, 2, '2025-12-28 14:49:43', '2025-12-28 14:49:43', '', 0, '0', NULL), + (706, 0, 1, 50, 126, 2, '2025-12-28 14:53:42', '2025-12-28 14:53:42', 'Trainee completed retest of Paradrop, and both engine/rotor failure', 0, '0', NULL), + (707, 1, 0, 50, 127, 2, '2025-12-28 14:55:48', '2025-12-28 14:55:48', '1x Hard Fail on Autorotation\n1x Hard Fail on Antitorque Loss\n1x Soft Fail on CH-47 Paradrop', 0, '0', NULL), + (708, 1, 0, 50, 128, 2, '2025-12-28 15:11:20', '2025-12-28 15:11:20', '', 0, '0', NULL), + (709, 0, 1, 50, 129, 2, '2025-12-28 15:12:54', '2025-12-28 15:12:54', '28/30, 1:18 seconds 1st attempt', 0, '0', NULL), + (710, 0, 1, 50, 130, 2, '2025-12-28 15:13:49', '2025-12-28 15:13:49', '5/5 1st attempt', 0, '0', NULL), + (711, 1, 0, 50, 372, 2, '2026-01-01 18:56:04', '2026-01-01 18:56:04', 'Going Echo', 0, NULL, NULL), + (712, 0, 1, 51, 331, 2, '2025-12-31 22:55:47', '2025-12-31 22:55:47', '28/30 - 56 seconds', 0, NULL, NULL), + (713, 0, 1, 51, 332, 2, '2025-12-31 22:57:19', '2025-12-31 22:57:19', '5/5 Pass', 0, NULL, NULL), + (714, 1, 0, 51, 333, 2, '2025-12-31 23:01:54', '2025-12-31 23:01:54', 'Going Alpha', 0, NULL, NULL), + (715, 0, 1, 52, 5, 2, '2025-12-19 15:41:43', '2025-12-19 15:41:43', '51.72 sec, 29/30, 1st attempt - Pass', 0, '0', NULL), + (716, 0, 1, 52, 6, 2, '2025-12-19 15:43:56', '2025-12-19 15:51:50', '5/5, 1st attempt - Pass', 0, '0', NULL), + (717, 1, 0, 52, 7, 2, '2025-12-19 16:12:42', '2025-12-19 16:12:42', 'Going Alpha', 0, '0', NULL), + (718, 0, 0, 53, 223, 1, '2025-12-30 16:05:49', '2025-12-30 16:05:49', '', 0, NULL, NULL), + (719, 1, 1, 53, 241, 2, '2025-12-30 18:42:27', '2025-12-30 18:42:27', '', 0, NULL, NULL), + (720, 0, 0, 53, 253, 4, '2025-12-30 22:44:16', '2025-12-30 22:44:16', '', 0, NULL, NULL), + (721, 1, 1, 53, 254, 2, '2025-12-30 22:48:52', '2025-12-30 22:48:52', '', 0, NULL, NULL), + (722, 0, 0, 53, 259, 4, '2025-12-30 23:11:38', '2025-12-30 23:11:38', '', 0, NULL, NULL), + (723, 1, 0, 53, 262, 2, '2025-12-31 01:11:03', '2025-12-31 01:11:03', '', 0, NULL, NULL), + (724, 0, 0, 53, 266, 3, '2025-12-31 01:17:27', '2025-12-31 01:17:27', '', 0, NULL, NULL), + (725, 1, 1, 53, 329, 2, '2025-12-31 22:42:10', '2025-12-31 22:42:10', '', 0, NULL, NULL), + (726, 0, 0, 53, 386, 3, '2026-01-01 21:02:55', '2026-01-01 21:02:55', '', 0, NULL, NULL), + (727, 1, 0, 53, 389, 2, '2026-01-01 21:12:03', '2026-01-01 21:12:03', 'Going Alpha', 0, NULL, NULL), + (728, 0, 0, 53, 408, 1, '2026-01-02 21:57:33', '2026-01-02 21:57:33', '', 0, NULL, NULL), + (729, 0, 0, 53, 409, 1, '2026-01-02 21:59:39', '2026-01-02 21:59:39', '', 0, NULL, NULL), + (730, 1, 1, 54, 121, 2, '2025-12-26 23:31:08', '2025-12-26 23:31:08', '', 0, '0', NULL), + (731, 1, 1, 54, 131, 2, '2025-12-28 15:19:32', '2025-12-28 15:19:32', '', 0, '0', NULL), + (732, 0, 0, 54, 132, 2, '2025-12-28 15:21:30', '2025-12-28 15:21:30', 'Misinterpreted a patrol and was caught by them.\nTrainee showed marked improvement in personal recon', 0, '0', NULL), + (733, 0, 0, 54, 136, 2, '2025-12-28 15:30:57', '2025-12-28 15:30:57', 'Instruction given on deeper scouting of OPs and routes, and improved observation on known enemy patrols.\nTrainee had good principles for breaking contact, but was presented with an awful scenario to begin with.\nOverall, spend more time doing personal route recon, both to discover enemy patrols and continually be aware of enemy patrols\' locations.', 0, '0', NULL), + (734, 1, 1, 54, 145, 2, '2025-12-28 16:47:26', '2025-12-28 16:47:26', '', 0, NULL, NULL), + (735, 1, 0, 54, 148, 2, '2025-12-28 17:01:01', '2025-12-28 17:01:01', '', 0, NULL, NULL), + (736, 1, 0, 54, 150, 2, '2025-12-28 17:07:19', '2025-12-28 17:07:19', '', 0, NULL, NULL), + (737, 1, 0, 54, 156, 2, '2025-12-28 17:29:22', '2025-12-28 17:29:22', '(Hard Fail: Ended up blowing self up and becoming combat ineffective unable to complete qualification. (Self Removed knowing failure))', 0, NULL, NULL), + (738, 1, 0, 54, 157, 2, '2025-12-28 17:34:27', '2025-12-28 17:34:27', '', 0, NULL, NULL), + (739, 1, 1, 54, 158, 2, '2025-12-28 17:36:18', '2025-12-28 17:36:18', '', 0, NULL, NULL), + (740, 0, 0, 54, 161, 3, '2025-12-28 18:35:14', '2025-12-28 18:35:14', '', 0, NULL, NULL), + (741, 0, 1, 54, 163, 2, '2025-12-28 18:38:20', '2025-12-28 18:38:20', '', 0, NULL, NULL), + (742, 1, 0, 54, 165, 2, '2025-12-28 18:43:28', '2025-12-28 18:43:28', '', 0, NULL, NULL), + (743, 1, 0, 54, 168, 2, '2025-12-28 18:50:13', '2025-12-28 18:50:13', '', 0, NULL, NULL), + (744, 1, 0, 54, 171, 2, '2025-12-28 19:23:27', '2025-12-28 19:23:27', '', 0, NULL, NULL), + (745, 1, 0, 54, 179, 2, '2025-12-28 20:10:50', '2025-12-28 20:10:50', '', 0, NULL, NULL), + (746, 1, 1, 54, 180, 2, '2025-12-28 20:19:11', '2025-12-28 20:19:11', '', 0, NULL, NULL), + (747, 1, 0, 54, 196, 2, '2025-12-29 00:01:53', '2025-12-29 00:01:53', '(Going Alpha)', 0, NULL, NULL), + (748, 1, 0, 54, 230, 2, '2025-12-30 16:53:11', '2025-12-30 16:53:11', '', 0, NULL, NULL), + (749, 0, 0, 56, 21, 1, '2025-12-21 20:02:02', '2025-12-21 20:02:02', '', 0, '0', NULL), + (750, 0, 0, 56, 33, 1, '2025-12-21 23:11:33', '2025-12-21 23:11:33', '', 0, '0', NULL), + (751, 0, 0, 56, 40, 3, '2025-12-22 00:42:57', '2025-12-22 00:42:57', '', 0, '0', NULL), + (752, 0, 0, 56, 89, 1, '2025-12-23 20:34:02', '2025-12-23 20:34:02', '', 0, '0', NULL), + (753, 0, 0, 56, 110, 4, '2025-12-25 00:12:42', '2025-12-25 00:12:42', '', 0, '0', NULL), + (754, 1, 0, 56, 112, 2, '2025-12-26 22:09:15', '2025-12-26 22:09:15', '', 0, '0', NULL), + (755, 0, 0, 56, 113, 1, '2025-12-26 22:15:38', '2025-12-26 22:15:38', '', 0, '0', NULL), + (756, 1, 0, 56, 128, 2, '2025-12-28 15:11:20', '2025-12-28 15:11:20', '', 0, '0', NULL), + (757, 0, 0, 56, 131, 4, '2025-12-28 15:19:32', '2025-12-28 15:19:32', '', 0, '0', NULL), + (758, 0, 0, 56, 132, 3, '2025-12-28 15:21:30', '2025-12-28 15:21:30', '', 0, '0', NULL), + (759, 0, 0, 56, 136, 3, '2025-12-28 15:30:57', '2025-12-28 15:30:57', '', 0, '0', NULL), + (760, 1, 1, 56, 145, 2, '2025-12-28 16:47:26', '2025-12-28 16:47:26', '', 0, NULL, NULL), + (761, 1, 0, 56, 150, 2, '2025-12-28 17:07:19', '2025-12-28 17:07:19', '', 0, NULL, NULL), + (762, 1, 0, 56, 157, 2, '2025-12-28 17:34:27', '2025-12-28 17:34:27', '', 0, NULL, NULL), + (763, 1, 1, 56, 158, 2, '2025-12-28 17:36:18', '2025-12-28 17:36:18', '', 0, NULL, NULL), + (764, 0, 1, 56, 159, 2, '2025-12-28 17:37:57', '2025-12-28 17:37:57', 'Completion of the missed qual sections from last night.', 0, NULL, NULL), + (765, 1, 0, 56, 160, 2, '2025-12-28 17:39:23', '2025-12-28 17:39:23', 'Trainee had to leave before end. Will do 1-1 finishing with trainee', 0, NULL, NULL), + (766, 0, 0, 56, 161, 3, '2025-12-28 18:35:14', '2025-12-28 18:35:14', '', 0, NULL, NULL), + (767, 0, 0, 56, 162, 3, '2025-12-28 18:36:54', '2025-12-28 18:36:54', '', 0, NULL, NULL), + (768, 1, 0, 56, 168, 2, '2025-12-28 18:50:13', '2025-12-28 18:50:13', '', 0, NULL, NULL), + (769, 1, 0, 56, 171, 2, '2025-12-28 19:23:27', '2025-12-28 19:23:27', '', 0, NULL, NULL), + (770, 1, 1, 56, 180, 2, '2025-12-28 20:19:11', '2025-12-28 20:19:11', '1 soft fail, not enough verbalizing treatment with patient', 0, NULL, NULL), + (771, 0, 1, 56, 181, 2, '2025-12-28 20:33:09', '2025-12-28 20:33:09', 'Trainees participated as a duo\nTrainees advised on excessive caution, which leads to rushed maneuvers/recon as time pressure increases\nTrainees noted to be effective at breaking contact\nTrainees advised on improving descriptions of enemy dispositions, and "painting a clearer picture" of the AO', 0, NULL, NULL), + (772, 0, 1, 56, 182, 2, '2025-12-28 20:34:29', '2025-12-28 20:34:29', '', 0, NULL, NULL), + (773, 1, 0, 56, 188, 2, '2025-12-28 22:54:26', '2025-12-28 22:54:26', '', 0, NULL, NULL), + (774, 1, 0, 56, 192, 2, '2025-12-28 23:36:15', '2025-12-28 23:36:15', '', 0, NULL, NULL), + (775, 0, 1, 56, 229, 2, '2025-12-30 16:43:20', '2025-12-30 16:43:20', '', 0, NULL, NULL), + (776, 1, 1, 56, 233, 2, '2025-12-30 17:28:35', '2025-12-30 17:28:35', '', 0, NULL, NULL), + (777, 1, 0, 56, 239, 2, '2025-12-30 18:31:31', '2025-12-30 18:31:31', '', 0, NULL, NULL), + (778, 0, 1, 56, 245, 2, '2025-12-30 20:39:48', '2025-12-30 20:39:48', '48sec 28/30', 0, NULL, NULL), + (779, 0, 1, 56, 246, 2, '2025-12-30 20:40:55', '2025-12-30 20:40:55', '', 0, NULL, NULL), + (780, 1, 0, 56, 247, 2, '2025-12-30 20:42:34', '2025-12-30 20:42:34', 'Going Alpha', 0, NULL, NULL), + (781, 0, 0, 56, 371, 3, '2026-01-01 18:51:49', '2026-01-01 18:51:49', '', 0, NULL, NULL), + (782, 1, 0, 56, 374, 2, '2026-01-01 19:01:24', '2026-01-01 19:01:24', 'Going Alpha', 0, NULL, NULL), + (783, 0, 0, 58, 214, 4, '2025-12-30 14:36:48', '2025-12-30 14:36:48', '', 0, NULL, NULL), + (784, 0, 0, 58, 264, 1, '2025-12-31 01:14:34', '2025-12-31 01:14:34', '', 0, NULL, NULL), + (785, 0, 0, 58, 265, 1, '2025-12-31 01:15:19', '2025-12-31 01:15:19', '', 0, NULL, NULL), + (786, 0, 0, 58, 266, 4, '2025-12-31 01:17:27', '2025-12-31 01:17:27', '', 0, NULL, NULL), + (787, 0, 0, 58, 334, 2, '2025-12-31 23:05:21', '2025-12-31 23:05:21', '', 0, NULL, NULL), + (788, 1, 0, 58, 342, 2, '2026-01-01 01:06:25', '2026-01-01 01:06:25', '', 0, NULL, NULL), + (789, 0, 0, 58, 368, 4, '2026-01-01 18:37:09', '2026-01-01 18:37:09', '', 0, NULL, NULL), + (790, 1, 0, 58, 384, 2, '2026-01-01 20:55:06', '2026-01-01 20:55:06', 'Going Alpha', 0, NULL, NULL), + (791, 1, 1, 59, 131, 2, '2025-12-28 15:19:32', '2025-12-28 15:19:32', '', 0, '0', NULL), + (792, 0, 1, 59, 353, 2, '2026-01-01 01:54:17', '2026-01-01 01:54:17', 'Soft fail for grid coordinate plotting.', 0, NULL, NULL), + (793, 1, 0, 59, 357, 2, '2026-01-01 02:09:40', '2026-01-01 02:09:40', 'Going Echo', 0, NULL, NULL), + (794, 0, 0, 60, 180, 3, '2025-12-28 20:19:12', '2025-12-28 20:19:12', '', 0, NULL, NULL), + (795, 0, 0, 60, 383, 3, '2026-01-01 20:33:00', '2026-01-01 20:33:00', '', 0, NULL, NULL), + (796, 0, 0, 61, 19, 3, '2025-12-21 19:23:27', '2025-12-21 19:23:27', '', 0, '0', NULL), + (797, 0, 0, 61, 26, 2, '2025-12-21 21:41:03', '2025-12-21 21:41:03', '', 0, '0', NULL), + (798, 0, 0, 61, 63, 3, '2025-12-22 21:57:38', '2025-12-22 21:57:38', '', 0, '0', NULL), + (799, 0, 0, 61, 91, 1, '2025-12-23 20:39:15', '2025-12-23 20:39:15', '', 0, '0', NULL), + (800, 0, 0, 61, 92, 4, '2025-12-23 20:43:48', '2025-12-23 20:43:48', '', 0, '0', NULL), + (801, 0, 0, 61, 109, 4, '2025-12-25 00:02:31', '2025-12-25 00:02:31', '', 0, '0', NULL), + (802, 0, 1, 61, 110, 2, '2025-12-25 00:12:42', '2025-12-25 00:12:42', 'Passed. Soft fail issued due to partially incomplete scouting. Trainee advised on expanding angles of recon and considering spawn distances.', 0, '0', NULL), + (803, 0, 0, 61, 112, 3, '2025-12-26 22:09:15', '2025-12-26 22:09:15', '', 0, '0', NULL), + (804, 1, 1, 61, 121, 2, '2025-12-26 23:31:08', '2025-12-26 23:31:08', '', 0, '0', NULL), + (805, 0, 0, 61, 128, 4, '2025-12-28 15:11:20', '2025-12-28 15:11:20', '', 0, '0', NULL), + (806, 0, 0, 61, 133, 1, '2025-12-28 15:24:40', '2025-12-28 15:24:40', '', 0, '0', NULL), + (807, 0, 0, 61, 134, 1, '2025-12-28 15:27:42', '2025-12-28 15:27:42', '', 0, '0', NULL), + (808, 0, 1, 61, 141, 2, '2025-12-28 16:17:04', '2025-12-28 16:21:26', 'Be mindful of stopping at positions too close to roads.\nSpend more time recon-ing your route ahead, as well as the surrounding areas. (Biggest point to improve upon)\nIt is good the enemy didn\'t see you, but you didn\'t see them either.\nMovements through forests and use of foliage was good.\nOBJ recon was near perfect. Good SALUTE reports.\nDecent choice of air assault location.', 1, 'Anderp\'s qualification has been revoked. This is now invalid. Multiple rules broke while leading RRC Operation.', '2025-04-06 18:00:00'), + (809, 1, 1, 61, 146, 2, '2025-12-28 16:48:49', '2025-12-28 16:48:49', '', 0, NULL, NULL), + (810, 0, 0, 61, 149, 3, '2025-12-28 17:05:25', '2025-12-28 17:05:25', '', 0, NULL, NULL), + (811, 0, 0, 61, 158, 3, '2025-12-28 17:36:18', '2025-12-28 17:36:18', '', 0, NULL, NULL), + (812, 0, 0, 61, 180, 1, '2025-12-28 20:19:11', '2025-12-28 20:19:11', '', 0, NULL, NULL), + (813, 0, 0, 61, 200, 4, '2025-12-29 22:23:58', '2025-12-29 22:23:58', '', 0, NULL, NULL), + (814, 0, 0, 61, 214, 1, '2025-12-30 14:36:48', '2025-12-30 14:36:48', '', 0, NULL, NULL), + (815, 1, 0, 61, 215, 2, '2025-12-30 14:44:16', '2025-12-30 14:44:16', '', 0, NULL, NULL), + (816, 0, 0, 61, 219, 4, '2025-12-30 14:52:25', '2025-12-30 14:52:25', '', 0, NULL, NULL), + (817, 0, 0, 61, 230, 3, '2025-12-30 16:53:12', '2025-12-30 16:53:12', '', 0, NULL, NULL), + (818, 1, 1, 61, 231, 2, '2025-12-30 17:05:59', '2025-12-30 17:05:59', '', 0, NULL, NULL), + (819, 1, 1, 61, 240, 2, '2025-12-30 18:41:44', '2025-12-30 18:41:44', '', 0, NULL, NULL), + (820, 1, 0, 61, 249, 2, '2025-12-30 20:46:03', '2025-12-30 20:46:03', '', 0, NULL, NULL), + (821, 0, 1, 61, 281, 2, '2025-12-31 17:47:43', '2025-12-31 17:47:43', '5/5 3rd attempt', 0, NULL, NULL), + (822, 0, 0, 61, 288, 1, '2025-12-31 18:04:22', '2025-12-31 18:04:22', '', 0, NULL, NULL), + (823, 1, 1, 61, 307, 2, '2025-12-31 20:58:30', '2025-12-31 20:58:30', '', 0, NULL, NULL), + (824, 0, 0, 61, 337, 4, '2026-01-01 00:31:58', '2026-01-01 00:31:58', '', 0, NULL, NULL), + (825, 1, 0, 61, 364, 2, '2026-01-01 16:37:07', '2026-01-01 16:37:07', 'Going Alpha', 0, NULL, NULL), + (826, 0, 1, 61, 365, 2, '2026-01-01 16:39:16', '2026-01-01 16:39:16', '1st Attempt - 29/30 - 74.23secs', 0, NULL, NULL), + (827, 1, 1, 61, 366, 2, '2026-01-01 16:43:08', '2026-01-01 16:43:08', '', 0, NULL, NULL), + (828, 1, 0, 61, 367, 2, '2026-01-01 18:34:16', '2026-01-01 18:34:16', '', 0, NULL, NULL), + (829, 1, 0, 61, 368, 2, '2026-01-01 18:37:09', '2026-01-01 18:37:09', '', 0, NULL, NULL), + (830, 1, 0, 61, 369, 2, '2026-01-01 18:39:27', '2026-01-01 18:39:27', '', 0, NULL, NULL), + (831, 1, 0, 62, 88, 2, '2025-12-23 20:30:54', '2025-12-23 20:30:54', '- Fail, will requal at a later time\nTrainee was unable to complete qual in a fair manner due to a health issue. Trainee was advised on the following points of improvement:\nChoice of proper ingress and egress to avoid enemy threat on logistics airframes.\nFull confirmation of CAS and IDF target locations and identification with platoon lead before requesting missions.\nEnsuring that readback from other party is correct and compliant to the initiated request.\nUse of markers whenever possible, and informing assets in the absence thereof.', 0, '0', NULL), + (832, 1, 1, 62, 89, 2, '2025-12-23 20:34:02', '2025-12-23 20:34:02', '', 0, '0', NULL), + (833, 1, 0, 62, 94, 2, '2025-12-24 21:59:17', '2025-12-24 22:01:07', '', 0, '0', NULL), + (834, 1, 0, 62, 188, 2, '2025-12-28 22:54:26', '2025-12-28 22:54:26', '', 0, NULL, NULL), + (835, 1, 1, 62, 253, 2, '2025-12-30 22:44:16', '2025-12-30 22:44:16', '', 0, NULL, NULL), + (836, 1, 1, 62, 254, 2, '2025-12-30 22:48:52', '2025-12-30 22:48:52', '', 0, NULL, NULL), + (837, 1, 0, 62, 255, 2, '2025-12-30 22:52:44', '2025-12-30 22:52:44', '', 0, NULL, NULL), + (838, 1, 0, 62, 283, 2, '2025-12-31 17:50:20', '2025-12-31 17:50:20', '', 0, NULL, NULL), + (839, 1, 0, 62, 284, 2, '2025-12-31 17:51:22', '2025-12-31 17:51:22', '', 0, NULL, NULL), + (840, 1, 0, 62, 291, 2, '2025-12-31 18:43:43', '2025-12-31 18:43:43', '', 0, NULL, NULL), + (841, 1, 0, 62, 292, 2, '2025-12-31 18:45:50', '2025-12-31 18:45:50', '', 0, NULL, NULL), + (842, 1, 0, 62, 296, 2, '2025-12-31 19:50:01', '2025-12-31 19:50:01', 'Going Alpha', 0, NULL, NULL), + (843, 0, 1, 62, 297, 2, '2025-12-31 19:51:05', '2025-12-31 19:51:05', '00:50:13 , 28/30', 0, NULL, NULL), + (844, 0, 1, 62, 298, 2, '2025-12-31 19:51:35', '2025-12-31 19:51:35', '5/5 2nd Attempt', 0, NULL, NULL), + (845, 1, 0, 62, 396, 2, '2026-01-02 18:31:47', '2026-01-02 18:31:47', '', 0, NULL, NULL), + (846, 0, 0, 63, 39, 2, '2025-12-22 00:40:57', '2025-12-22 00:40:57', '', 0, '0', NULL), + (847, 1, 0, 63, 40, 2, '2025-12-22 00:42:57', '2025-12-22 00:42:57', 'Pass - Echo', 0, '0', NULL), + (848, 1, 0, 63, 43, 2, '2025-12-22 00:48:13', '2025-12-22 00:48:13', '', 0, '0', NULL), + (849, 1, 1, 63, 44, 2, '2025-12-22 00:49:32', '2025-12-22 00:49:32', '', 0, '0', NULL), + (850, 0, 0, 64, 11, 1, '2025-12-21 00:26:53', '2025-12-21 00:26:53', '', 0, '0', NULL), + (851, 0, 0, 64, 12, 1, '2025-12-21 00:28:22', '2025-12-21 00:28:22', '', 0, '0', NULL), + (852, 0, 0, 64, 13, 1, '2025-12-21 00:35:25', '2025-12-21 00:35:25', '', 0, '0', NULL), + (853, 0, 0, 64, 24, 1, '2025-12-21 20:15:52', '2025-12-21 20:15:52', '', 0, '0', NULL), + (854, 0, 0, 64, 29, 1, '2025-12-21 22:37:05', '2025-12-21 22:37:05', '', 0, '0', NULL), + (855, 0, 0, 64, 39, 1, '2025-12-22 00:40:57', '2025-12-22 00:40:57', '', 0, '0', NULL), + (856, 0, 0, 64, 40, 1, '2025-12-22 00:42:57', '2025-12-22 00:42:57', '', 0, '0', NULL), + (857, 0, 0, 64, 46, 1, '2025-12-22 00:57:21', '2025-12-22 00:57:21', '', 0, '0', NULL), + (858, 0, 0, 64, 47, 1, '2025-12-22 01:05:11', '2025-12-22 01:05:11', '', 0, '0', NULL), + (859, 0, 0, 64, 52, 1, '2025-12-22 01:16:57', '2025-12-22 01:16:57', '', 0, '0', NULL), + (860, 0, 0, 64, 60, 1, '2025-12-22 21:31:14', '2025-12-22 21:31:14', '', 0, '0', NULL), + (861, 0, 0, 64, 61, 1, '2025-12-22 21:39:07', '2025-12-22 21:39:07', '', 0, '0', NULL), + (862, 0, 0, 64, 62, 1, '2025-12-22 21:54:19', '2025-12-22 21:54:19', '', 0, '0', NULL), + (863, 1, 0, 64, 74, 2, '2025-12-22 23:24:40', '2025-12-22 23:24:40', '', 0, '0', NULL), + (864, 0, 0, 64, 90, 1, '2025-12-23 20:36:05', '2025-12-23 20:36:05', '', 0, '0', NULL), + (865, 0, 0, 64, 94, 1, '2025-12-24 21:59:17', '2025-12-24 21:59:17', '', 0, '0', NULL), + (866, 0, 0, 64, 139, 1, '2025-12-28 15:40:38', '2025-12-28 15:40:38', '', 0, '0', NULL), + (867, 0, 0, 64, 140, 1, '2025-12-28 16:11:35', '2025-12-28 16:11:35', '', 0, '0', NULL), + (868, 0, 0, 64, 148, 1, '2025-12-28 17:01:01', '2025-12-28 17:01:01', '', 0, NULL, NULL), + (869, 0, 0, 64, 154, 1, '2025-12-28 17:25:02', '2025-12-28 17:25:02', '', 0, NULL, NULL), + (870, 0, 1, 64, 155, 2, '2025-12-28 17:26:14', '2025-12-28 17:26:14', '', 0, NULL, NULL), + (871, 0, 0, 64, 161, 1, '2025-12-28 18:35:14', '2025-12-28 18:35:14', '', 0, NULL, NULL), + (872, 0, 0, 64, 162, 1, '2025-12-28 18:36:53', '2025-12-28 18:36:53', '', 0, NULL, NULL), + (873, 0, 0, 64, 163, 1, '2025-12-28 18:38:20', '2025-12-28 18:38:20', '', 0, NULL, NULL), + (874, 1, 0, 64, 165, 2, '2025-12-28 18:43:28', '2025-12-28 18:43:28', '', 0, NULL, NULL), + (875, 0, 0, 64, 166, 1, '2025-12-28 18:45:24', '2025-12-28 18:45:24', '', 0, NULL, NULL), + (876, 0, 0, 64, 175, 3, '2025-12-28 19:41:29', '2025-12-28 19:41:29', '', 0, NULL, NULL), + (877, 0, 0, 64, 176, 2, '2025-12-28 19:45:24', '2025-12-28 19:45:24', 'Trainee had to sleep before all training and practice was complete. Will meet with trainee to complete training and conduct more guided practice at a later date.', 0, NULL, NULL), + (878, 1, 1, 64, 177, 2, '2025-12-28 19:46:48', '2025-12-28 19:46:48', 'Soft fail - remember to throttle down after touching down on the runway', 0, NULL, NULL), + (879, 0, 1, 64, 178, 2, '2025-12-28 20:06:53', '2025-12-28 20:06:53', '', 0, NULL, NULL), + (880, 0, 0, 64, 193, 2, '2025-12-28 23:49:59', '2025-12-28 23:49:59', 'Result: Fail\nHard fail: crashed during carrier landing\nSoft fails: avoidable damage during both A-10 and F/A-181 landings. Passed on touch and go, though.', 0, NULL, NULL), + (881, 0, 0, 64, 194, 2, '2025-12-28 23:53:49', '2025-12-28 23:53:49', 'had to leave early. Cannot pass :\')', 0, NULL, NULL), + (882, 1, 0, 64, 195, 2, '2025-12-28 23:59:59', '2025-12-28 23:59:59', '', 0, NULL, NULL), + (883, 1, 0, 64, 205, 2, '2025-12-29 22:37:37', '2025-12-29 22:37:37', '', 0, NULL, NULL), + (884, 1, 1, 64, 206, 2, '2025-12-29 22:38:52', '2025-12-29 22:38:52', '', 0, NULL, NULL), + (885, 0, 1, 64, 207, 2, '2025-12-29 22:40:05', '2025-12-29 22:40:05', '', 0, NULL, NULL), + (886, 1, 0, 64, 211, 2, '2025-12-30 14:30:14', '2025-12-30 14:30:14', '', 0, NULL, NULL), + (887, 0, 0, 64, 212, 1, '2025-12-30 14:32:23', '2025-12-30 14:32:23', '', 0, NULL, NULL), + (888, 1, 1, 64, 216, 2, '2025-12-30 14:46:26', '2025-12-30 14:46:26', '', 0, NULL, NULL), + (889, 1, 0, 64, 217, 2, '2025-12-30 14:48:39', '2025-12-30 14:48:39', '', 0, NULL, NULL), + (890, 1, 0, 64, 218, 2, '2025-12-30 14:50:04', '2025-12-30 14:50:04', '', 0, NULL, NULL), + (891, 1, 1, 64, 219, 2, '2025-12-30 14:52:25', '2025-12-30 14:52:25', '', 0, NULL, NULL), + (892, 1, 0, 64, 220, 2, '2025-12-30 14:54:40', '2025-12-30 14:54:40', '', 0, NULL, NULL), + (893, 1, 1, 64, 221, 2, '2025-12-30 15:50:21', '2025-12-30 15:50:21', '', 0, NULL, NULL), + (894, 1, 0, 64, 223, 2, '2025-12-30 16:05:49', '2025-12-30 16:05:49', '', 0, NULL, NULL), + (895, 1, 0, 64, 227, 2, '2025-12-30 16:16:26', '2025-12-30 16:16:26', 'Going Echo', 0, NULL, NULL), + (896, 0, 0, 64, 228, 3, '2025-12-30 16:28:30', '2025-12-30 16:28:30', '', 0, NULL, NULL), + (897, 0, 0, 64, 361, 1, '2026-01-01 16:15:50', '2026-01-01 16:15:50', '', 0, NULL, NULL), + (898, 1, 0, 65, 2, 2, '2025-12-19 15:04:18', '2025-12-19 15:04:18', '', 0, '0', NULL), + (899, 0, 1, 65, 11, 2, '2025-12-21 00:26:53', '2025-12-21 00:26:53', 'Pass (30/30 65.153s)', 0, '0', NULL), + (900, 0, 1, 65, 12, 2, '2025-12-21 00:28:22', '2025-12-21 00:28:22', '', 0, '0', NULL), + (901, 1, 0, 65, 13, 2, '2025-12-21 00:35:25', '2025-12-21 00:35:25', '(PASS - ALPHA)', 0, '0', NULL), + (902, 0, 1, 66, 85, 2, '2025-12-23 20:23:19', '2025-12-23 20:23:19', '38.60 sec, 30/30, 1st attempt - Pass', 0, '0', NULL), + (903, 0, 1, 66, 86, 2, '2025-12-23 20:24:02', '2025-12-23 20:24:02', ' 5/5, 2nd attempt - Pass', 0, '0', NULL), + (904, 1, 0, 66, 87, 2, '2025-12-23 20:25:43', '2025-12-23 20:25:43', 'going Alpha', 0, '0', NULL), + (905, 0, 0, 67, 2, 1, '2025-12-19 15:04:18', '2025-12-19 15:04:18', '', 0, '0', NULL), + (906, 1, 0, 67, 3, 1, '2025-12-19 15:13:13', '2025-12-19 15:13:13', '', 0, '0', NULL), + (907, 0, 0, 67, 4, 1, '2025-12-19 15:33:58', '2025-12-19 15:33:58', '', 0, '0', NULL), + (908, 0, 0, 67, 9, 1, '2025-12-21 00:07:16', '2025-12-21 00:07:16', '', 0, '0', NULL), + (909, 0, 0, 67, 14, 1, '2025-12-21 00:37:27', '2025-12-21 00:37:27', '', 0, '0', NULL), + (910, 0, 0, 67, 17, 1, '2025-12-21 00:48:56', '2025-12-21 00:48:56', '', 0, '0', NULL), + (911, 0, 0, 67, 18, 1, '2025-12-21 00:50:42', '2025-12-21 00:50:42', '', 0, '0', NULL), + (912, 0, 0, 67, 19, 3, '2025-12-21 19:23:27', '2025-12-21 19:23:27', '', 0, '0', NULL), + (913, 0, 0, 67, 22, 1, '2025-12-21 20:08:28', '2025-12-21 20:08:28', '', 0, '0', NULL), + (914, 0, 0, 67, 23, 1, '2025-12-21 20:09:32', '2025-12-21 20:09:32', '', 0, '0', NULL), + (915, 0, 0, 67, 24, 3, '2025-12-21 20:15:52', '2025-12-21 20:15:52', '', 0, '0', NULL), + (916, 0, 0, 67, 26, 2, '2025-12-21 21:41:03', '2025-12-21 21:41:03', '', 0, '0', NULL), + (917, 0, 0, 67, 63, 3, '2025-12-22 21:57:38', '2025-12-22 21:57:38', '', 0, '0', NULL), + (918, 0, 0, 67, 65, 1, '2025-12-22 22:13:51', '2025-12-22 22:13:51', '', 0, '0', NULL), + (919, 0, 0, 67, 66, 1, '2025-12-22 22:18:32', '2025-12-22 22:18:32', '', 0, '0', NULL), + (920, 0, 0, 67, 67, 1, '2025-12-22 22:19:45', '2025-12-22 22:19:45', '', 0, '0', NULL), + (921, 0, 0, 67, 68, 1, '2025-12-22 22:21:05', '2025-12-22 22:21:05', '', 0, '0', NULL), + (922, 0, 0, 67, 81, 5, '2025-12-22 23:32:41', '2025-12-22 23:32:41', '', 0, '0', NULL), + (923, 0, 0, 67, 91, 4, '2025-12-23 20:39:15', '2025-12-23 20:39:15', '', 0, '0', NULL), + (924, 0, 1, 67, 189, 2, '2025-12-28 23:05:14', '2025-12-28 23:05:14', '', 0, NULL, NULL), + (925, 0, 0, 67, 190, 1, '2025-12-28 23:08:35', '2025-12-28 23:08:35', '', 0, NULL, NULL), + (926, 0, 0, 67, 191, 1, '2025-12-28 23:32:53', '2025-12-28 23:32:53', '', 0, NULL, NULL), + (927, 0, 0, 67, 194, 1, '2025-12-28 23:53:49', '2025-12-28 23:53:49', '', 0, NULL, NULL), + (928, 0, 0, 67, 232, 4, '2025-12-30 17:11:22', '2025-12-30 17:11:22', '', 0, NULL, NULL), + (929, 0, 0, 67, 250, 4, '2025-12-30 20:47:21', '2025-12-30 20:47:21', '', 0, NULL, NULL), + (930, 1, 0, 67, 312, 2, '2025-12-31 21:08:43', '2025-12-31 21:08:43', '', 0, NULL, NULL), + (931, 1, 0, 67, 313, 2, '2025-12-31 21:11:22', '2025-12-31 21:11:22', '', 0, NULL, NULL), + (932, 0, 0, 67, 359, 1, '2026-01-01 02:15:08', '2026-01-01 02:15:08', '', 0, NULL, NULL), + (933, 0, 0, 67, 367, 1, '2026-01-01 18:34:17', '2026-01-01 18:34:17', '', 0, NULL, NULL), + (934, 0, 0, 67, 369, 1, '2026-01-01 18:39:28', '2026-01-01 18:39:28', '', 0, NULL, NULL), + (935, 1, 0, 67, 375, 2, '2026-01-01 19:57:39', '2026-01-01 19:57:39', '', 0, NULL, NULL), + (936, 0, 1, 67, 376, 2, '2026-01-01 20:00:24', '2026-01-01 20:00:24', '- Pass (Soft fail exceeded hot LZ time limit)', 0, NULL, NULL), + (937, 1, 0, 67, 377, 2, '2026-01-01 20:01:53', '2026-01-01 20:01:53', 'Trainee had already done the bookwork previously so we went through the new stuff (ATRQ failure, Autorotation, ACE hellfires) and did some practice runs.\nTrainer', 0, NULL, NULL), + (938, 0, 0, 67, 378, 2, '2026-01-01 20:02:53', '2026-01-01 20:02:53', '- FAIL\nSoft Fail: Unecessary damage to the aircraft\nHard Fail: Crashing at any point during the qualification\nTrainee was downed by a BMP-2 during the convoy task in the AH-64\nTrainee may retake the qualification after 7pm CST on 11/23/2024.', 0, NULL, NULL), + (939, 1, 0, 67, 391, 2, '2026-01-01 21:25:51', '2026-01-01 21:25:51', 'Going Alpha', 0, NULL, NULL), + (940, 1, 0, 67, 415, 1, '2026-01-03 00:08:01', '2026-01-03 00:08:01', '', 0, NULL, NULL), + (941, 1, 1, 68, 133, 2, '2025-12-28 15:24:40', '2025-12-28 15:24:40', 'Advised to double check tags are marked on the patient when initially tagging', 0, '0', NULL), + (942, 0, 0, 68, 134, 3, '2025-12-28 15:27:42', '2025-12-28 15:27:42', '', 0, '0', NULL), + (943, 1, 0, 68, 139, 2, '2025-12-28 15:40:38', '2025-12-28 15:40:38', 'Going Alpha', 0, '0', NULL), + (944, 0, 1, 68, 140, 2, '2025-12-28 16:11:35', '2025-12-28 16:11:35', 'Marksman 28/30 72.17 sec', 0, '0', NULL), + (945, 0, 0, 69, 37, 5, '2025-12-22 00:02:44', '2025-12-22 00:02:44', '', 0, '0', NULL), + (946, 1, 1, 69, 45, 2, '2025-12-22 00:55:01', '2025-12-22 00:55:01', '', 0, '0', NULL), + (947, 1, 0, 69, 48, 2, '2025-12-22 01:07:51', '2025-12-22 01:07:51', '', 0, '0', NULL), + (948, 1, 1, 69, 51, 2, '2025-12-22 01:15:25', '2025-12-22 01:15:25', 'Passed. Soft fail issued for missing two fire missions.', 0, '0', NULL), + (949, 1, 0, 69, 59, 2, '2025-12-22 21:29:39', '2025-12-22 21:29:39', '', 0, '0', NULL), + (950, 0, 0, 69, 63, 3, '2025-12-22 21:57:38', '2025-12-22 21:57:38', '', 0, '0', NULL), + (951, 1, 1, 69, 64, 2, '2025-12-22 22:06:02', '2025-12-22 22:06:02', '', 0, '0', NULL), + (952, 1, 0, 69, 65, 2, '2025-12-22 22:13:51', '2025-12-22 22:13:51', '', 0, '0', NULL), + (953, 1, 0, 69, 66, 2, '2025-12-22 22:18:32', '2025-12-22 22:18:32', '', 0, '0', NULL), + (954, 1, 0, 69, 67, 2, '2025-12-22 22:19:45', '2025-12-22 22:19:45', '', 0, '0', NULL), + (955, 1, 0, 69, 68, 2, '2025-12-22 22:21:05', '2025-12-22 22:21:05', '', 0, '0', NULL), + (956, 1, 0, 69, 239, 2, '2025-12-30 18:31:31', '2025-12-30 18:31:31', '', 0, NULL, NULL), + (957, 0, 0, 69, 253, 4, '2025-12-30 22:44:16', '2025-12-30 22:44:16', '', 0, NULL, NULL), + (958, 1, 1, 69, 282, 2, '2025-12-31 17:49:16', '2025-12-31 17:49:16', '', 0, NULL, NULL), + (959, 1, 0, 69, 283, 2, '2025-12-31 17:50:20', '2025-12-31 17:50:20', '', 0, NULL, NULL), + (960, 1, 0, 69, 284, 2, '2025-12-31 17:51:22', '2025-12-31 17:51:22', '', 0, NULL, NULL), + (961, 0, 1, 69, 285, 2, '2025-12-31 17:52:39', '2025-12-31 17:52:39', '1:09 28/30 (pass)', 0, NULL, NULL), + (962, 0, 1, 69, 286, 2, '2025-12-31 17:53:30', '2025-12-31 17:53:30', '5/5 3rd attempt ', 0, NULL, NULL), + (963, 1, 1, 69, 288, 2, '2025-12-31 18:04:22', '2025-12-31 18:04:22', '', 0, NULL, NULL), + (964, 1, 0, 69, 291, 2, '2025-12-31 18:43:43', '2025-12-31 18:43:43', '', 0, NULL, NULL), + (965, 1, 0, 69, 292, 2, '2025-12-31 18:45:50', '2025-12-31 18:45:50', '', 0, NULL, NULL), + (966, 1, 0, 69, 294, 2, '2025-12-31 19:26:36', '2025-12-31 19:26:36', 'Going Alpha', 0, NULL, NULL), + (967, 0, 0, 70, 8, 3, '2025-12-20 23:28:16', '2025-12-20 23:28:16', '', 0, '0', NULL), + (968, 1, 1, 70, 20, 2, '2025-12-21 19:30:23', '2025-12-21 19:30:23', '', 0, '0', NULL), + (969, 0, 0, 70, 26, 2, '2025-12-21 21:41:03', '2025-12-21 21:41:03', '', 0, '0', NULL), + (970, 1, 0, 70, 88, 2, '2025-12-23 20:30:54', '2025-12-23 20:30:54', '- Could not pass qual due to time, will qual at a later time', 0, '0', NULL), + (971, 0, 0, 70, 91, 4, '2025-12-23 20:39:15', '2025-12-23 20:39:15', '', 0, '0', NULL), + (972, 0, 0, 70, 101, 2, '2025-12-24 22:48:14', '2025-12-24 22:50:46', 'DC\'d partly through, DNP', 0, '0', NULL), + (973, 1, 0, 70, 114, 2, '2025-12-26 22:18:31', '2025-12-26 22:19:43', '(Hard Fail: Ended up blowing self up and was unable to complete qualification)', 0, '0', NULL), + (974, 1, 1, 70, 133, 2, '2025-12-28 15:24:40', '2025-12-28 15:24:40', '1 SF, Trainee Advised to yap more, Lost track of patient who woke up', 0, '0', NULL), + (975, 0, 0, 70, 134, 3, '2025-12-28 15:27:42', '2025-12-28 15:27:42', '', 0, '0', NULL), + (976, 1, 0, 70, 144, 2, '2025-12-28 16:38:42', '2025-12-28 16:38:42', '', 0, NULL, NULL), + (977, 1, 0, 70, 156, 2, '2025-12-28 17:29:22', '2025-12-28 17:29:22', 'Soft fail: Did not setup Muster Point prior to entering minefield, Soft Fail: Confusing Path with Paint Marks & Paint marks not easy to find, Hard Fail: Did not clear far enough for Fireteam to stack, Fireteam Blew up on breach.)', 0, NULL, NULL), + (978, 1, 0, 70, 157, 2, '2025-12-28 17:34:27', '2025-12-28 17:34:27', '', 0, NULL, NULL), + (979, 1, 0, 70, 165, 2, '2025-12-28 18:43:28', '2025-12-28 18:43:28', '', 0, NULL, NULL), + (980, 0, 1, 70, 170, 2, '2025-12-28 19:21:36', '2025-12-28 19:21:36', '', 0, NULL, NULL), + (981, 0, 1, 70, 173, 2, '2025-12-28 19:32:33', '2025-12-28 19:32:33', '1:24 2nd try 29/30', 0, NULL, NULL), + (982, 0, 1, 70, 174, 2, '2025-12-28 19:33:29', '2025-12-28 19:33:29', '1st try, 5/5', 0, NULL, NULL), + (983, 1, 0, 70, 230, 2, '2025-12-30 16:53:11', '2025-12-30 16:53:11', '', 0, NULL, NULL), + (984, 1, 0, 70, 361, 2, '2026-01-01 16:15:50', '2026-01-01 16:15:50', 'Going Alpha', 0, NULL, NULL), + (985, 1, 0, 71, 380, 2, '2026-01-01 20:22:50', '2026-01-01 20:22:50', 'Going Alpha', 0, NULL, NULL), + (986, 1, 1, 72, 15, 2, '2025-12-21 00:42:24', '2025-12-21 00:42:42', '1 softfail', 0, '0', NULL), + (987, 0, 1, 72, 22, 2, '2025-12-21 20:08:28', '2025-12-21 20:08:28', '29/30, 1:02 - 2nd attempt', 0, '0', NULL), + (988, 0, 1, 72, 23, 2, '2025-12-21 20:09:32', '2025-12-21 20:09:32', '2nd attempt', 0, '0', NULL), + (989, 1, 1, 72, 25, 2, '2025-12-21 20:33:15', '2025-12-21 20:33:15', '', 0, '0', NULL), + (990, 1, 0, 72, 27, 2, '2025-12-21 22:18:19', '2025-12-21 22:18:19', '(Going Alpha)', 0, '0', NULL), + (991, 0, 0, 73, 2, 4, '2025-12-19 15:04:18', '2025-12-19 15:04:18', '', 0, '0', NULL), + (992, 1, 0, 73, 3, 4, '2025-12-19 15:13:13', '2025-12-19 15:13:13', '', 0, '0', NULL), + (993, 0, 0, 73, 4, 4, '2025-12-19 15:33:58', '2025-12-19 15:33:58', '', 0, '0', NULL), + (994, 0, 0, 73, 9, 4, '2025-12-21 00:07:16', '2025-12-21 00:07:16', '', 0, '0', NULL), + (995, 0, 0, 73, 15, 3, '2025-12-21 00:42:24', '2025-12-21 00:42:24', '', 0, '0', NULL), + (996, 1, 1, 73, 25, 1, '2025-12-21 20:33:14', '2025-12-21 20:33:14', '', 0, '0', NULL), + (997, 1, 0, 73, 31, 2, '2025-12-21 22:40:49', '2025-12-21 22:40:49', '', 0, '0', NULL), + (998, 0, 0, 73, 51, 3, '2025-12-22 01:15:25', '2025-12-22 01:15:25', '', 0, '0', NULL), + (999, 1, 1, 73, 55, 2, '2025-12-22 21:20:04', '2025-12-22 21:20:04', 'Refresher ', 0, '0', NULL), + (1000, 0, 0, 73, 56, 3, '2025-12-22 21:22:35', '2025-12-22 21:22:35', '', 0, '0', NULL), + (1001, 0, 0, 73, 57, 3, '2025-12-22 21:23:34', '2025-12-22 21:23:34', '', 0, '0', NULL), + (1002, 0, 0, 73, 58, 3, '2025-12-22 21:26:46', '2025-12-22 21:26:46', '', 0, '0', NULL), + (1003, 1, 1, 73, 64, 2, '2025-12-22 22:06:02', '2025-12-22 22:06:02', '(May already have the ribbon)', 0, '0', NULL), + (1004, 0, 0, 73, 65, 4, '2025-12-22 22:13:51', '2025-12-22 22:13:51', '', 0, '0', NULL), + (1005, 0, 0, 73, 66, 4, '2025-12-22 22:18:32', '2025-12-22 22:18:32', '', 0, '0', NULL), + (1006, 0, 0, 73, 83, 2, '2025-12-23 20:13:11', '2025-12-23 20:13:11', '- Left Early', 0, '0', NULL), + (1007, 0, 0, 73, 96, 3, '2025-12-24 22:06:51', '2025-12-24 22:06:51', '', 0, '0', NULL), + (1008, 0, 0, 73, 101, 3, '2025-12-24 22:48:14', '2025-12-24 22:48:14', '', 0, '0', NULL), + (1009, 0, 0, 73, 115, 3, '2025-12-26 22:24:39', '2025-12-26 22:24:39', '', 0, '0', NULL), + (1010, 0, 0, 73, 122, 2, '2025-12-28 14:44:09', '2025-12-28 14:44:09', 'was there for 1/2 the training', 0, '0', NULL), + (1011, 0, 0, 73, 179, 4, '2025-12-28 20:10:50', '2025-12-28 20:10:50', '', 0, NULL, NULL), + (1012, 0, 0, 73, 186, 3, '2025-12-28 21:17:42', '2025-12-28 21:17:42', '', 0, NULL, NULL), + (1013, 0, 0, 73, 187, 3, '2025-12-28 21:19:39', '2025-12-28 21:19:39', '', 0, NULL, NULL), + (1014, 1, 0, 73, 190, 2, '2025-12-28 23:08:35', '2025-12-28 23:08:35', '', 0, NULL, NULL), + (1015, 1, 0, 73, 194, 2, '2025-12-28 23:53:49', '2025-12-28 23:53:49', '', 0, NULL, NULL), + (1016, 0, 0, 73, 218, 4, '2025-12-30 14:50:04', '2025-12-30 14:50:04', '', 0, NULL, NULL), + (1017, 0, 0, 73, 232, 1, '2025-12-30 17:11:22', '2025-12-30 17:11:22', '', 0, NULL, NULL), + (1018, 1, 0, 73, 299, 2, '2025-12-31 19:53:00', '2025-12-31 19:53:00', '', 0, NULL, NULL), + (1019, 1, 0, 73, 300, 2, '2025-12-31 19:56:20', '2025-12-31 19:56:20', '', 0, NULL, NULL), + (1020, 1, 0, 73, 301, 2, '2025-12-31 20:01:02', '2025-12-31 20:01:02', '', 0, NULL, NULL), + (1021, 1, 0, 73, 304, 2, '2025-12-31 20:18:02', '2025-12-31 20:18:02', '', 0, NULL, NULL), + (1022, 1, 1, 73, 306, 2, '2025-12-31 20:55:44', '2025-12-31 20:55:44', '-- Previously Qualified; Refresh.', 0, NULL, NULL), + (1023, 1, 0, 73, 308, 2, '2025-12-31 21:01:52', '2025-12-31 21:01:52', '', 0, NULL, NULL), + (1024, 1, 0, 73, 321, 2, '2025-12-31 21:40:48', '2025-12-31 21:40:48', '', 0, NULL, NULL), + (1025, 1, 0, 73, 322, 2, '2025-12-31 21:51:17', '2025-12-31 21:51:17', '', 0, NULL, NULL), + (1026, 1, 0, 73, 342, 2, '2026-01-01 01:06:25', '2026-01-01 01:06:25', '', 0, NULL, NULL), + (1027, 1, 0, 73, 344, 2, '2026-01-01 01:22:13', '2026-01-01 01:22:13', '', 0, NULL, NULL), + (1028, 1, 1, 73, 345, 2, '2026-01-01 01:27:31', '2026-01-01 01:27:31', '', 0, NULL, NULL), + (1029, 0, 0, 73, 368, 1, '2026-01-01 18:37:09', '2026-01-01 18:37:09', '', 0, NULL, NULL), + (1030, 0, 0, 73, 374, 1, '2026-01-01 19:01:24', '2026-01-01 19:01:24', '', 0, NULL, NULL), + (1031, 0, 0, 73, 379, 4, '2026-01-01 20:14:12', '2026-01-01 20:14:12', '', 0, NULL, NULL), + (1032, 0, 0, 73, 387, 3, '2026-01-01 21:06:49', '2026-01-01 21:06:49', '', 0, NULL, NULL), + (1033, 0, 0, 73, 390, 1, '2026-01-01 21:14:19', '2026-01-01 21:14:19', '', 0, NULL, NULL), + (1034, 0, 0, 73, 391, 1, '2026-01-01 21:25:52', '2026-01-01 21:25:52', '', 0, NULL, NULL), + (1035, 1, 1, 74, 282, 2, '2025-12-31 17:49:16', '2025-12-31 17:49:16', '', 0, NULL, NULL), + (1036, 1, 1, 74, 293, 2, '2025-12-31 18:47:26', '2025-12-31 18:47:26', '', 0, NULL, NULL), + (1037, 1, 0, 74, 336, 2, '2025-12-31 23:29:37', '2025-12-31 23:29:37', '', 0, NULL, NULL), + (1038, 1, 1, 74, 338, 2, '2026-01-01 00:33:47', '2026-01-01 00:33:47', '', 0, NULL, NULL), + (1039, 1, 0, 74, 340, 2, '2026-01-01 00:55:33', '2026-01-01 00:55:33', '', 0, NULL, NULL), + (1040, 1, 0, 74, 344, 2, '2026-01-01 01:22:13', '2026-01-01 01:22:13', '', 0, NULL, NULL), + (1041, 1, 0, 74, 368, 2, '2026-01-01 18:37:09', '2026-01-01 18:37:09', '', 0, NULL, NULL), + (1042, 1, 0, 74, 414, 2, '2026-01-03 00:06:36', '2026-01-03 00:06:36', 'Going Alpha', 0, NULL, NULL), + (1043, 0, 1, 75, 78, 2, '2025-12-22 23:28:09', '2025-12-22 23:28:09', '1:28 29/30 3rd try PASS', 0, '0', NULL), + (1044, 0, 1, 75, 79, 2, '2025-12-22 23:30:21', '2025-12-22 23:30:21', '5/5, 3rd try PAS', 0, '0', NULL), + (1045, 1, 0, 75, 80, 2, '2025-12-22 23:31:11', '2025-12-22 23:31:11', '', 0, '0', NULL), + (1046, 0, 0, 76, 336, 1, '2025-12-31 23:29:37', '2025-12-31 23:29:37', '', 0, NULL, NULL), + (1047, 0, 1, 76, 350, 2, '2026-01-01 01:48:42', '2026-01-01 01:48:42', '', 0, NULL, NULL), + (1048, 1, 0, 76, 382, 2, '2026-01-01 20:25:22', '2026-01-01 20:25:22', 'Going Alpha', 0, NULL, NULL), + (1049, 0, 0, 76, 402, 4, '2026-01-02 20:40:49', '2026-01-02 20:40:49', '', 0, NULL, NULL), + (1050, 1, 0, 77, 194, 2, '2025-12-28 23:53:49', '2025-12-28 23:53:49', '', 0, NULL, NULL), + (1051, 0, 1, 77, 202, 2, '2025-12-29 22:31:49', '2025-12-29 22:31:49', 'Soft fail issued for running out of Hydras on a mission\nDiscussed with trainee on improving the following:\nBetter utilizing sensors to find targets at a distance\nIncreasing standoff when using guided munitions\nDisengaging when discovering \'pop-up\' targets and reengaging with a better attack angle', 0, NULL, NULL), + (1052, 1, 0, 77, 228, 2, '2025-12-30 16:28:30', '2025-12-30 16:28:30', '', 0, NULL, NULL), + (1053, 1, 1, 77, 240, 2, '2025-12-30 18:41:44', '2025-12-30 18:41:44', '', 0, NULL, NULL), + (1054, 0, 0, 77, 253, 5, '2025-12-30 22:44:16', '2025-12-30 22:44:16', '', 0, NULL, NULL), + (1055, 0, 1, 77, 268, 2, '2025-12-31 01:21:17', '2025-12-31 01:21:17', '', 0, NULL, NULL), + (1056, 0, 0, 77, 272, 2, '2025-12-31 17:01:51', '2025-12-31 17:01:51', 'Hard Fail: Crashing at any point during the qualification - Trainee crashed while attempting a autorotation.\nRequested the trainee put in extra practice on the autorotation procedure, as well as other points such as 8 digit grids and sling loading. Trainee can retake the qual after 48 hours (June 5 2024 - 8pm cst)', 0, NULL, NULL), + (1057, 1, 0, 77, 273, 2, '2025-12-31 17:03:06', '2025-12-31 17:03:06', 'Covered all the contents on the Rotary Logi doc as well as ran trought several tasks with the trainee. Advised the trainee to improve on marking 8 digit grids.\nInformational training, no admin necessary.', 0, NULL, NULL), + (1058, 1, 1, 77, 274, 2, '2025-12-31 17:03:51', '2025-12-31 17:03:51', '', 0, NULL, NULL), + (1059, 1, 0, 77, 275, 2, '2025-12-31 17:05:01', '2025-12-31 17:05:01', '', 0, NULL, NULL), + (1060, 0, 1, 77, 277, 2, '2025-12-31 17:41:51', '2025-12-31 17:41:51', 'Marksman: 28/30 57 sec (pass)', 0, NULL, NULL), + (1061, 0, 1, 77, 278, 2, '2025-12-31 17:43:23', '2025-12-31 17:43:23', '5/5 1st Attempt (pass)', 0, NULL, NULL), + (1062, 1, 0, 77, 279, 2, '2025-12-31 17:44:53', '2025-12-31 17:44:53', '(going Echo)', 0, NULL, NULL), + (1063, 0, 0, 79, 340, 1, '2026-01-01 00:55:33', '2026-01-01 00:55:33', '', 0, NULL, NULL), + (1064, 1, 1, 79, 349, 2, '2026-01-01 01:41:36', '2026-01-01 01:41:36', '', 0, NULL, NULL), + (1065, 0, 1, 79, 350, 2, '2026-01-01 01:48:42', '2026-01-01 01:48:42', '', 0, NULL, NULL), + (1066, 1, 0, 79, 358, 2, '2026-01-01 02:10:41', '2026-01-01 02:10:41', 'Going Echo', 0, NULL, NULL), + (1067, 0, 0, 79, 402, 1, '2026-01-02 20:40:49', '2026-01-02 20:40:49', '', 0, NULL, NULL), + (1068, 0, 0, 80, 1, 1, '2025-12-17 20:06:22', '2025-12-17 20:06:22', '', 0, '0', NULL), + (1069, 0, 0, 80, 10, 1, '2025-12-21 00:12:56', '2025-12-21 00:12:56', '', 0, '0', NULL), + (1070, 0, 0, 80, 16, 1, '2025-12-21 00:46:19', '2025-12-21 00:46:19', '', 0, '0', NULL), + (1071, 0, 0, 80, 36, 3, '2025-12-22 00:00:37', '2025-12-22 00:00:37', '', 0, '0', NULL), + (1072, 0, 1, 80, 46, 2, '2025-12-22 00:57:21', '2025-12-22 00:57:21', 'PASS (No soft fails)', 0, '0', NULL), + (1073, 0, 0, 80, 47, 2, '2025-12-22 01:05:11', '2025-12-22 01:05:11', 'FAILS:\nHard fail - Carrier landing. Crashed the bird due to lack of abort\nHard fail - A-10 T-72 Hotel Mission. Blue on Blue incident.\nSoft fail - A-10 T-72 Hotel Mission. Took too long to arrive and friendly forces suffered casualties.', 0, '0', NULL), + (1074, 0, 0, 80, 49, 1, '2025-12-22 01:09:26', '2025-12-22 01:09:26', '', 0, '0', NULL), + (1075, 0, 0, 80, 50, 1, '2025-12-22 01:12:29', '2025-12-22 01:12:29', '', 0, '0', NULL), + (1076, 0, 0, 80, 53, 1, '2025-12-22 01:18:49', '2025-12-22 01:18:49', '', 0, '0', NULL), + (1077, 0, 0, 80, 74, 1, '2025-12-22 23:24:40', '2025-12-22 23:24:40', '', 0, '0', NULL), + (1078, 0, 0, 80, 81, 1, '2025-12-22 23:32:41', '2025-12-22 23:32:41', '', 0, '0', NULL), + (1079, 0, 0, 80, 93, 1, '2025-12-23 21:31:21', '2025-12-23 21:31:21', '', 0, '0', NULL), + (1080, 0, 1, 80, 97, 2, '2025-12-24 22:09:27', '2025-12-24 22:09:27', 'Pass, soft fail issued for running out of ammo for a section\nTrainee showed marked improvement on preserving the airframe.', 0, '0', NULL), + (1081, 0, 1, 80, 98, 2, '2025-12-24 22:11:03', '2025-12-24 22:11:03', 'Trainee killed on DAPS Gunnery Section\nAdditional points of improvement for AH-6 given', 0, '0', NULL), + (1082, 0, 0, 80, 99, 4, '2025-12-24 22:12:50', '2025-12-24 22:12:50', '', 0, '0', NULL), + (1083, 1, 0, 80, 122, 2, '2025-12-28 14:44:09', '2025-12-28 14:44:09', '', 0, '0', NULL), + (1084, 1, 1, 80, 135, 2, '2025-12-28 15:29:04', '2025-12-28 15:29:04', '', 0, '0', NULL), + (1085, 1, 1, 80, 151, 2, '2025-12-28 17:09:17', '2025-12-28 17:09:17', '', 0, NULL, NULL), + (1086, 1, 0, 80, 154, 2, '2025-12-28 17:25:02', '2025-12-28 17:25:02', '', 0, NULL, NULL), + (1087, 1, 0, 80, 291, 2, '2025-12-31 18:43:43', '2025-12-31 18:43:43', '', 0, NULL, NULL), + (1088, 1, 0, 80, 292, 2, '2025-12-31 18:45:50', '2025-12-31 18:45:50', '', 0, NULL, NULL), + (1089, 1, 0, 80, 299, 2, '2025-12-31 19:53:00', '2025-12-31 19:53:00', '', 0, NULL, NULL), + (1090, 1, 0, 80, 300, 2, '2025-12-31 19:56:20', '2025-12-31 19:56:20', '', 0, NULL, NULL), + (1091, 1, 0, 80, 303, 2, '2025-12-31 20:15:38', '2025-12-31 20:15:38', '', 0, NULL, NULL), + (1092, 1, 0, 80, 308, 2, '2025-12-31 21:01:51', '2025-12-31 21:01:51', '', 0, NULL, NULL), + (1093, 0, 1, 80, 314, 2, '2025-12-31 21:16:43', '2025-12-31 21:16:43', '30/30 00:52.53', 0, NULL, NULL), + (1094, 0, 1, 80, 315, 2, '2025-12-31 21:17:48', '2025-12-31 21:17:48', '5/5 1st attempt', 0, NULL, NULL), + (1095, 1, 0, 80, 317, 2, '2025-12-31 21:23:45', '2025-12-31 21:23:45', 'Going Alpha', 0, NULL, NULL), + (1096, 0, 0, 81, 368, 1, '2026-01-01 18:37:09', '2026-01-01 18:37:09', '', 0, NULL, NULL), + (1097, 0, 0, 81, 388, 1, '2026-01-01 21:08:44', '2026-01-01 21:08:44', '', 0, NULL, NULL), + (1098, 0, 0, 81, 390, 1, '2026-01-01 21:14:19', '2026-01-01 21:14:19', '', 0, NULL, NULL), + (1099, 0, 0, 81, 391, 1, '2026-01-01 21:25:51', '2026-01-01 21:25:51', '', 0, NULL, NULL), + (1100, 1, 1, 81, 410, 2, '2026-01-02 22:00:57', '2026-01-02 22:00:57', '', 0, NULL, NULL), + (1101, 0, 0, 82, 337, 4, '2026-01-01 00:31:58', '2026-01-01 00:31:58', '', 0, NULL, NULL), + (1102, 0, 1, 170, 173, 2, '2025-12-28 19:32:33', '2026-01-03 07:02:32', ' 1:05 2nd try 30/30', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1103, 0, 1, 170, 174, 2, '2025-12-28 19:33:29', '2026-01-03 07:02:32', '1st try, 5/5', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1104, 1, 0, 170, 361, 2, '2026-01-01 16:15:50', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1105, 1, 0, 181, 214, 2, '2025-12-30 14:36:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1106, 1, 0, 181, 238, 2, '2025-12-30 18:03:26', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1107, 1, 0, 197, 304, 2, '2025-12-31 20:18:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1108, 1, 1, 197, 306, 2, '2025-12-31 20:55:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1109, 0, 0, 209, 214, 4, '2025-12-30 14:36:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1110, 0, 0, 209, 219, 4, '2025-12-30 14:52:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1111, 1, 0, 209, 222, 2, '2025-12-30 16:00:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1112, 0, 0, 209, 226, 4, '2025-12-30 16:12:41', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1113, 0, 0, 209, 237, 4, '2025-12-30 17:47:34', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1114, 0, 0, 209, 314, 4, '2025-12-31 21:16:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1115, 0, 0, 209, 315, 4, '2025-12-31 21:17:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1116, 0, 0, 209, 317, 4, '2025-12-31 21:23:45', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1117, 0, 0, 209, 405, 2, '2026-01-02 20:48:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1118, 1, 1, 209, 406, 2, '2026-01-02 20:57:29', '2026-01-03 07:02:32', '- Practice with reading correct order, issue is only with which order to read numbers work on that and success is yours! After that more practice will make you get faster.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1119, 1, 1, 224, 240, 2, '2025-12-30 18:41:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1120, 1, 0, 224, 242, 2, '2025-12-30 19:34:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1121, 1, 0, 224, 243, 2, '2025-12-30 20:37:35', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1122, 1, 0, 224, 249, 2, '2025-12-30 20:46:03', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1123, 1, 0, 224, 251, 2, '2025-12-30 20:48:56', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1124, 1, 0, 224, 252, 2, '2025-12-30 22:41:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1125, 1, 1, 224, 263, 2, '2025-12-31 01:12:46', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1126, 1, 1, 243, 366, 2, '2026-01-01 16:43:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1127, 0, 0, 243, 379, 3, '2026-01-01 20:14:12', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1128, 0, 0, 243, 380, 3, '2026-01-01 20:22:50', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1129, 1, 1, 243, 411, 2, '2026-01-02 22:04:13', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1130, 0, 0, 245, 223, 5, '2025-12-30 16:05:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1131, 0, 1, 245, 229, 2, '2025-12-30 16:43:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1132, 0, 0, 246, 267, 5, '2025-12-31 01:20:11', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1133, 1, 0, 246, 304, 2, '2025-12-31 20:18:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1134, 0, 0, 246, 305, 5, '2025-12-31 20:21:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1135, 1, 0, 246, 306, 2, '2025-12-31 20:55:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1136, 0, 1, 256, 75, 2, '2025-12-22 23:25:37', '2026-01-03 07:02:32', '63.50 sec, 31/30, 1st attempt - Pass', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1137, 0, 1, 256, 76, 2, '2025-12-22 23:26:12', '2026-01-03 07:02:32', '5/5, 1st attempt - Pass', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1138, 1, 0, 256, 77, 2, '2025-12-22 23:27:05', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1139, 1, 0, 262, 340, 2, '2026-01-01 00:55:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1140, 0, 1, 269, 257, 2, '2025-12-30 23:09:35', '2026-01-03 07:02:32', '30/30 (31/30 because of ricochet?) 0:49 1st attempt', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1141, 0, 1, 269, 258, 2, '2025-12-30 23:10:20', '2026-01-03 07:02:32', '5/5 1st attempt', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1142, 1, 1, 275, 240, 2, '2025-12-30 18:41:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1143, 1, 0, 275, 249, 2, '2025-12-30 20:46:03', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1144, 1, 0, 275, 251, 2, '2025-12-30 20:48:56', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1145, 1, 0, 275, 252, 2, '2025-12-30 22:41:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1146, 1, 1, 276, 233, 2, '2025-12-30 17:28:35', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1147, 0, 0, 276, 247, 4, '2025-12-30 20:42:34', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1148, 0, 0, 276, 253, 4, '2025-12-30 22:44:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1149, 0, 0, 276, 254, 4, '2025-12-30 22:48:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1150, 1, 0, 276, 255, 2, '2025-12-30 22:52:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1151, 0, 0, 276, 259, 4, '2025-12-30 23:11:38', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1152, 0, 0, 276, 260, 4, '2025-12-30 23:12:54', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1153, 0, 0, 276, 261, 4, '2025-12-30 23:13:29', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1154, 0, 0, 276, 269, 4, '2025-12-31 16:57:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1155, 0, 0, 276, 270, 4, '2025-12-31 16:58:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1156, 0, 0, 276, 271, 3, '2025-12-31 17:00:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1157, 1, 1, 276, 282, 2, '2025-12-31 17:49:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1158, 1, 1, 276, 288, 2, '2025-12-31 18:04:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1159, 1, 0, 276, 295, 2, '2025-12-31 19:32:54', '2026-01-03 07:02:32', '- Left after Course Training (Qualification Still Needed) - No Pass / No Fail', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1160, 1, 0, 276, 299, 2, '2025-12-31 19:53:00', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1161, 1, 0, 276, 300, 2, '2025-12-31 19:56:19', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1162, 1, 0, 276, 301, 2, '2025-12-31 20:01:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1163, 1, 0, 276, 303, 2, '2025-12-31 20:15:38', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1164, 1, 0, 276, 413, 2, '2026-01-03 00:02:58', '2026-01-03 07:02:32', '(going Alpha)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1165, 0, 0, 280, 384, 3, '2026-01-01 20:55:06', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1166, 1, 0, 290, 232, 2, '2025-12-30 17:11:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1167, 1, 1, 299, 337, 2, '2026-01-01 00:31:58', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1168, 1, 0, 299, 342, 2, '2026-01-01 01:06:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1169, 1, 0, 299, 343, 2, '2026-01-01 01:13:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1170, 1, 1, 299, 345, 2, '2026-01-01 01:27:31', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1171, 1, 0, 299, 351, 2, '2026-01-01 01:51:28', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1172, 1, 0, 299, 395, 2, '2026-01-01 22:51:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1173, 1, 0, 312, 161, 2, '2025-12-28 18:35:14', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1174, 0, 1, 322, 393, 2, '2026-01-01 22:44:02', '2026-01-03 07:02:32', '29/30, 65 seconds.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1175, 0, 0, 322, 394, 2, '2026-01-01 22:45:10', '2026-01-03 07:02:32', ' Failed x3. Must wait until 24/6/2020, 19:50 CST.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1176, 1, 1, 323, 408, 2, '2026-01-02 21:57:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1177, 1, 0, 323, 409, 2, '2026-01-02 21:59:39', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1178, 1, 0, 354, 384, 2, '2026-01-01 20:55:06', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1179, 1, 1, 368, 219, 2, '2025-12-30 14:52:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1180, 0, 1, 368, 226, 2, '2025-12-30 16:12:41', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1181, 0, 1, 373, 393, 2, '2026-01-01 22:44:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1182, 1, 0, 376, 360, 2, '2026-01-01 16:09:30', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1183, 1, 0, 383, 185, 2, '2025-12-28 21:12:59', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1184, 0, 1, 383, 186, 2, '2025-12-28 21:17:42', '2026-01-03 07:02:32', '5/5 1st try', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1185, 0, 1, 383, 187, 2, '2025-12-28 21:19:39', '2026-01-03 07:02:32', '29/30 1st try Time?', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1186, 1, 0, 417, 374, 2, '2026-01-01 19:01:24', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1187, 1, 0, 431, 367, 2, '2026-01-01 18:34:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1188, 1, 1, 431, 399, 2, '2026-01-02 20:14:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1189, 0, 1, 437, 393, 2, '2026-01-01 22:44:02', '2026-01-03 07:02:32', '29/30, 50 seconds', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1190, 0, 1, 437, 394, 2, '2026-01-01 22:45:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1191, 1, 0, 437, 395, 2, '2026-01-01 22:51:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1192, 1, 1, 437, 400, 2, '2026-01-02 20:17:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1193, 1, 0, 437, 401, 2, '2026-01-02 20:23:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1194, 1, 0, 439, 390, 2, '2026-01-01 21:14:19', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1195, 0, 1, 448, 280, 2, '2025-12-31 17:46:21', '2026-01-03 07:02:32', '27/30 58 sec (pass', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1196, 0, 1, 448, 281, 2, '2025-12-31 17:47:43', '2026-01-03 07:02:32', '5/5 2nd attempt', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1197, 1, 0, 451, 354, 2, '2026-01-01 02:03:44', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1198, 0, 1, 452, 226, 2, '2025-12-30 16:12:41', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1199, 0, 0, 468, 28, 1, '2025-12-21 22:23:57', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1200, 1, 1, 468, 30, 1, '2025-12-21 22:38:57', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1201, 0, 0, 468, 31, 1, '2025-12-21 22:40:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1202, 1, 0, 468, 32, 1, '2025-12-21 22:44:42', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1203, 0, 0, 468, 37, 1, '2025-12-22 00:02:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1204, 0, 0, 468, 38, 1, '2025-12-22 00:05:00', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1205, 0, 0, 468, 51, 1, '2025-12-22 01:15:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1206, 0, 0, 468, 82, 1, '2025-12-22 23:38:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1207, 0, 0, 468, 88, 4, '2025-12-23 20:30:54', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1208, 0, 0, 468, 95, 1, '2025-12-24 22:05:14', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1209, 0, 0, 468, 96, 1, '2025-12-24 22:06:51', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1210, 0, 0, 468, 97, 1, '2025-12-24 22:09:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1211, 0, 0, 468, 98, 1, '2025-12-24 22:11:03', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1212, 0, 0, 468, 101, 1, '2025-12-24 22:48:14', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1213, 0, 0, 468, 102, 1, '2025-12-24 22:59:45', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1214, 0, 0, 468, 103, 1, '2025-12-24 23:15:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1215, 0, 0, 468, 105, 1, '2025-12-24 23:18:38', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1216, 0, 0, 468, 110, 1, '2025-12-25 00:12:42', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1217, 0, 0, 468, 111, 1, '2025-12-25 00:14:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1218, 0, 0, 468, 113, 4, '2025-12-26 22:15:38', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1219, 0, 0, 468, 114, 4, '2025-12-26 22:18:31', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1220, 0, 0, 468, 128, 3, '2025-12-28 15:11:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1221, 0, 0, 468, 131, 1, '2025-12-28 15:19:32', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1222, 0, 0, 468, 132, 1, '2025-12-28 15:21:30', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1223, 0, 0, 468, 136, 1, '2025-12-28 15:30:57', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1224, 0, 0, 468, 145, 1, '2025-12-28 16:47:26', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1225, 0, 0, 468, 146, 1, '2025-12-28 16:48:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1226, 0, 0, 468, 150, 1, '2025-12-28 17:07:19', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1227, 0, 0, 468, 158, 1, '2025-12-28 17:36:18', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1228, 0, 0, 468, 159, 1, '2025-12-28 17:37:57', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1229, 0, 0, 468, 160, 1, '2025-12-28 17:39:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1230, 0, 0, 468, 171, 1, '2025-12-28 19:23:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1231, 0, 0, 468, 172, 1, '2025-12-28 19:29:35', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1232, 0, 0, 468, 176, 1, '2025-12-28 19:45:24', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1233, 0, 0, 468, 181, 1, '2025-12-28 20:33:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1234, 0, 0, 468, 188, 1, '2025-12-28 22:54:26', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1235, 0, 0, 468, 192, 1, '2025-12-28 23:36:15', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1236, 1, 1, 468, 201, 1, '2025-12-29 22:29:19', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1237, 0, 0, 468, 202, 1, '2025-12-29 22:31:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1238, 0, 0, 468, 204, 1, '2025-12-29 22:36:13', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1239, 0, 0, 468, 208, 1, '2025-12-29 22:42:28', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1240, 0, 0, 468, 210, 1, '2025-12-29 23:03:50', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1241, 0, 0, 468, 216, 3, '2025-12-30 14:46:26', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1242, 0, 0, 468, 217, 3, '2025-12-30 14:48:39', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1243, 0, 0, 468, 220, 3, '2025-12-30 14:54:40', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1244, 0, 0, 468, 221, 1, '2025-12-30 15:50:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1245, 0, 0, 468, 226, 4, '2025-12-30 16:12:41', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1246, 0, 0, 468, 238, 1, '2025-12-30 18:03:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1247, 0, 0, 468, 263, 1, '2025-12-31 01:12:46', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1248, 0, 0, 468, 304, 1, '2025-12-31 20:18:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1249, 0, 0, 468, 307, 1, '2025-12-31 20:58:29', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1250, 0, 0, 468, 328, 1, '2025-12-31 22:40:19', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1251, 0, 0, 468, 330, 1, '2025-12-31 22:45:42', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1252, 0, 0, 468, 339, 1, '2026-01-01 00:38:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1253, 0, 0, 468, 367, 1, '2026-01-01 18:34:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1254, 0, 0, 468, 368, 3, '2026-01-01 18:37:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1255, 0, 0, 468, 369, 1, '2026-01-01 18:39:28', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1256, 0, 0, 468, 389, 1, '2026-01-01 21:12:04', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1257, 0, 0, 468, 393, 1, '2026-01-01 22:44:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1258, 0, 0, 468, 394, 1, '2026-01-01 22:45:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1259, 0, 0, 468, 400, 1, '2026-01-02 20:17:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1260, 0, 0, 468, 414, 4, '2026-01-03 00:06:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1261, 1, 0, 469, 322, 2, '2025-12-31 21:51:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1262, 1, 0, 469, 343, 2, '2026-01-01 01:13:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1263, 1, 1, 469, 408, 2, '2026-01-02 21:57:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1264, 1, 0, 469, 409, 2, '2026-01-02 21:59:39', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1265, 0, 0, 483, 276, 1, '2025-12-31 17:39:53', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1266, 0, 0, 483, 299, 4, '2025-12-31 19:53:00', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1267, 0, 0, 483, 300, 1, '2025-12-31 19:56:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1268, 0, 0, 483, 301, 1, '2025-12-31 20:01:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1269, 0, 0, 483, 303, 1, '2025-12-31 20:15:38', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1270, 1, 0, 483, 318, 2, '2025-12-31 21:31:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1271, 0, 0, 483, 324, 1, '2025-12-31 22:12:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1272, 0, 0, 483, 325, 1, '2025-12-31 22:12:50', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1273, 0, 0, 483, 344, 1, '2026-01-01 01:22:13', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1274, 0, 0, 483, 368, 1, '2026-01-01 18:37:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1275, 1, 0, 483, 401, 2, '2026-01-02 20:23:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1276, 1, 0, 492, 368, 2, '2026-01-01 18:37:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1277, 1, 0, 492, 369, 2, '2026-01-01 18:39:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1278, 1, 1, 492, 405, 2, '2026-01-02 20:48:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1279, 0, 0, 493, 175, 3, '2025-12-28 19:41:29', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1280, 0, 0, 493, 186, 3, '2025-12-28 21:17:42', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1281, 0, 0, 493, 187, 3, '2025-12-28 21:19:40', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1282, 0, 0, 493, 196, 3, '2025-12-29 00:01:53', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1283, 0, 0, 493, 200, 1, '2025-12-29 22:23:58', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1284, 0, 0, 493, 219, 1, '2025-12-30 14:52:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1285, 0, 0, 493, 226, 5, '2025-12-30 16:12:41', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1286, 0, 0, 493, 227, 4, '2025-12-30 16:16:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1287, 0, 0, 493, 247, 4, '2025-12-30 20:42:34', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1288, 0, 0, 493, 253, 3, '2025-12-30 22:44:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1289, 0, 0, 493, 254, 1, '2025-12-30 22:48:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1290, 0, 0, 493, 257, 4, '2025-12-30 23:09:35', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1291, 0, 0, 493, 258, 4, '2025-12-30 23:10:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1292, 0, 0, 493, 266, 3, '2025-12-31 01:17:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1293, 0, 0, 493, 269, 1, '2025-12-31 16:57:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1294, 0, 0, 493, 270, 1, '2025-12-31 16:58:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1295, 0, 0, 493, 271, 1, '2025-12-31 17:00:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1296, 1, 1, 493, 276, 2, '2025-12-31 17:39:53', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1297, 0, 0, 493, 277, 4, '2025-12-31 17:41:51', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1298, 0, 0, 493, 278, 4, '2025-12-31 17:43:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1299, 0, 0, 493, 279, 4, '2025-12-31 17:44:53', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1300, 0, 0, 493, 280, 4, '2025-12-31 17:46:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1301, 0, 0, 493, 281, 4, '2025-12-31 17:47:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1302, 0, 0, 493, 282, 1, '2025-12-31 17:49:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1303, 0, 0, 493, 288, 4, '2025-12-31 18:04:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1304, 0, 0, 493, 296, 1, '2025-12-31 19:50:01', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1305, 0, 0, 493, 297, 1, '2025-12-31 19:51:05', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1306, 0, 0, 493, 298, 1, '2025-12-31 19:51:35', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1307, 1, 1, 493, 329, 2, '2025-12-31 22:42:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1308, 0, 0, 493, 337, 4, '2026-01-01 00:31:58', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1309, 1, 0, 493, 343, 2, '2026-01-01 01:13:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1310, 1, 0, 493, 351, 2, '2026-01-01 01:51:28', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1311, 0, 0, 493, 361, 3, '2026-01-01 16:15:50', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1312, 1, 0, 493, 367, 2, '2026-01-01 18:34:17', '2026-01-03 07:02:32', '(Left Early but I\'m pretty sure are qualled):', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1313, 0, 0, 493, 379, 3, '2026-01-01 20:14:12', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1314, 0, 1, 497, 269, 2, '2025-12-31 16:57:22', '2026-01-03 07:02:32', '28/30 58:47', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1315, 0, 1, 497, 270, 2, '2025-12-31 16:58:37', '2026-01-03 07:02:32', '5/5 1st attempt', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1316, 1, 0, 497, 271, 2, '2025-12-31 17:00:33', '2026-01-03 07:02:32', 'Pass (Going Alpha)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1317, 0, 0, 501, 207, 1, '2025-12-29 22:40:05', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1318, 0, 0, 501, 211, 1, '2025-12-30 14:30:14', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1319, 0, 0, 501, 228, 1, '2025-12-30 16:28:30', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1320, 0, 0, 501, 231, 1, '2025-12-30 17:06:00', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1321, 0, 0, 501, 287, 1, '2025-12-31 18:01:32', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1322, 0, 0, 501, 304, 2, '2025-12-31 20:18:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1323, 0, 0, 501, 306, 1, '2025-12-31 20:55:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1324, 0, 0, 501, 329, 1, '2025-12-31 22:42:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1325, 1, 0, 501, 341, 2, '2026-01-01 01:00:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1326, 0, 0, 501, 344, 2, '2026-01-01 01:22:13', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1327, 0, 0, 501, 349, 1, '2026-01-01 01:41:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1328, 1, 1, 504, 156, 2, '2025-12-28 17:29:22', '2026-01-03 07:02:32', '(Soft Fail: Did not bring Injured Person back to designated Muster Point / Friendly died)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1329, 1, 0, 504, 157, 2, '2025-12-28 17:34:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1330, 0, 0, 504, 222, 2, '2025-12-30 16:00:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1331, 0, 1, 504, 229, 2, '2025-12-30 16:43:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1332, 1, 0, 504, 230, 2, '2025-12-30 16:53:12', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1333, 1, 0, 504, 238, 2, '2025-12-30 18:03:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1334, 1, 1, 504, 239, 2, '2025-12-30 18:31:31', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1335, 1, 1, 504, 240, 2, '2025-12-30 18:41:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1336, 1, 1, 504, 253, 2, '2025-12-30 22:44:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1337, 1, 1, 504, 254, 2, '2025-12-30 22:48:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1338, 1, 0, 504, 255, 2, '2025-12-30 22:52:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1339, 1, 0, 504, 256, 2, '2025-12-30 22:55:58', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1340, 0, 1, 504, 267, 2, '2025-12-31 01:20:11', '2026-01-03 07:02:32', 'Warmonger soft fail using all hydras to destroy BMP. Per Flight lead no retake needed.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1341, 1, 1, 504, 276, 2, '2025-12-31 17:39:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1342, 0, 1, 504, 285, 2, '2025-12-31 17:52:39', '2026-01-03 07:02:32', '1:26 27/30 (pass)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1343, 0, 1, 504, 286, 2, '2025-12-31 17:53:30', '2026-01-03 07:02:32', '5/5 3rd attempt ', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1344, 1, 1, 504, 288, 2, '2025-12-31 18:04:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1345, 1, 0, 504, 289, 2, '2025-12-31 18:09:55', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1346, 1, 0, 504, 290, 2, '2025-12-31 18:10:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1347, 1, 0, 504, 291, 2, '2025-12-31 18:43:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1348, 1, 0, 504, 292, 2, '2025-12-31 18:45:50', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1349, 1, 1, 504, 293, 2, '2025-12-31 18:47:26', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1350, 1, 0, 504, 294, 2, '2025-12-31 19:26:36', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1351, 0, 1, 508, 393, 2, '2026-01-01 22:44:02', '2026-01-03 07:02:32', ' 28/30, 55 seconds.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1352, 0, 1, 508, 394, 2, '2026-01-01 22:45:10', '2026-01-03 07:02:32', ' ', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1353, 1, 0, 513, 395, 2, '2026-01-01 22:51:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1354, 0, 0, 516, 336, 4, '2025-12-31 23:29:37', '2025-12-31 23:29:37', '', 0, NULL, NULL), + (1355, 1, 1, 516, 400, 2, '2026-01-02 20:17:10', '2026-01-02 20:17:10', '', 0, NULL, NULL), + (1356, 1, 1, 516, 406, 2, '2026-01-02 20:57:29', '2026-01-02 20:57:29', ' Work on Tool Interactions - Find best way that tools work for you. Once you do that you will be within 5m accurate EZ.', 0, NULL, NULL), + (1357, 1, 0, 525, 232, 2, '2025-12-30 17:11:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1358, 1, 1, 525, 237, 2, '2025-12-30 17:47:34', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1359, 1, 0, 534, 379, 2, '2026-01-01 20:14:12', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1360, 0, 0, 542, 387, 3, '2026-01-01 21:06:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1361, 1, 1, 546, 282, 2, '2025-12-31 17:49:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1362, 0, 0, 554, 360, 3, '2026-01-01 16:09:30', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1363, 1, 0, 557, 301, 2, '2025-12-31 20:01:02', '2025-12-31 20:01:02', '', 0, NULL, NULL), + (1364, 1, 0, 557, 303, 2, '2025-12-31 20:15:38', '2025-12-31 20:15:38', '', 0, NULL, NULL), + (1365, 0, 1, 557, 350, 2, '2026-01-01 01:48:42', '2026-01-01 01:48:42', '', 0, NULL, NULL), + (1366, 1, 0, 557, 416, 2, '2026-01-03 00:10:56', '2026-01-03 00:10:56', 'Going Alpha', 0, NULL, NULL), + (1367, 1, 0, 562, 383, 2, '2026-01-01 20:33:00', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1368, 1, 0, 573, 389, 2, '2026-01-01 21:12:03', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1369, 1, 0, 591, 387, 2, '2026-01-01 21:06:49', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1370, 0, 0, 592, 366, 3, '2026-01-01 16:43:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1371, 1, 0, 603, 90, 2, '2025-12-23 20:36:05', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1372, 0, 1, 612, 393, 2, '2026-01-01 22:44:03', '2026-01-01 22:44:03', '27/30, 68 seconds.', 0, NULL, NULL), + (1373, 1, 0, 620, 416, 2, '2026-01-03 00:10:56', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1374, 1, 1, 623, 352, 2, '2026-01-01 01:52:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1375, 1, 0, 623, 367, 2, '2026-01-01 18:34:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1376, 1, 1, 623, 399, 2, '2026-01-02 20:14:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1377, 1, 0, 624, 395, 2, '2026-01-01 22:51:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1378, 0, 0, 625, 250, 1, '2025-12-30 20:47:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1379, 0, 0, 625, 326, 1, '2025-12-31 22:36:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1380, 1, 0, 625, 360, 2, '2026-01-01 16:09:30', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1381, 1, 1, 625, 366, 2, '2026-01-01 16:43:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1382, 1, 1, 625, 411, 2, '2026-01-02 22:04:13', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1383, 1, 0, 626, 190, 2, '2025-12-28 23:08:35', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1384, 0, 1, 628, 393, 2, '2026-01-01 22:44:02', '2026-01-03 07:02:32', '29/30, 69 seconds.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1385, 0, 1, 628, 394, 2, '2026-01-01 22:45:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1386, 1, 0, 638, 356, 2, '2026-01-01 02:07:40', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1387, 1, 0, 641, 185, 2, '2025-12-28 21:12:59', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1388, 0, 1, 641, 186, 2, '2025-12-28 21:17:42', '2026-01-03 07:02:32', '5/5 1st try', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1389, 0, 1, 641, 187, 2, '2025-12-28 21:19:39', '2026-01-03 07:02:32', '50 seconds 30/30 1st attempt', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1390, 0, 0, 644, 343, 1, '2026-01-01 01:13:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1391, 0, 0, 644, 357, 1, '2026-01-01 02:09:40', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1392, 1, 1, 646, 237, 2, '2025-12-30 17:47:34', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1393, 1, 0, 665, 408, 2, '2026-01-02 21:57:33', '2026-01-03 07:02:32', '-Bookwork complete/Can complete qual after completing Demolitions training', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1394, 0, 0, 665, 409, 2, '2026-01-02 21:59:39', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1395, 0, 0, 667, 259, 2, '2025-12-30 23:11:38', '2026-01-03 07:02:32', '(did not complete due to network issues, will reschedule)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1396, 1, 0, 673, 341, 2, '2026-01-01 01:00:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1397, 1, 1, 673, 349, 2, '2026-01-01 01:41:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1398, 1, 0, 673, 367, 2, '2026-01-01 18:34:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1399, 1, 0, 673, 368, 2, '2026-01-01 18:37:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1400, 1, 0, 673, 369, 2, '2026-01-01 18:39:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1401, 1, 0, 673, 402, 2, '2026-01-02 20:40:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1402, 1, 0, 676, 388, 2, '2026-01-01 21:08:44', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1403, 1, 0, 698, 360, 2, '2026-01-01 16:09:30', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1404, 1, 0, 720, 128, 2, '2025-12-28 15:11:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1405, 0, 1, 720, 137, 2, '2025-12-28 15:34:43', '2026-01-03 07:02:32', '29/30, 48.08 seconds', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1406, 0, 1, 720, 138, 2, '2025-12-28 15:35:32', '2026-01-03 07:02:32', ' 5/5 2nd attempt', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1407, 1, 0, 720, 139, 2, '2025-12-28 15:40:38', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1408, 0, 1, 722, 331, 2, '2025-12-31 22:55:47', '2026-01-03 07:02:32', '- 29/30 - 1min 6seconds', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1409, 0, 1, 722, 332, 2, '2025-12-31 22:57:19', '2026-01-03 07:02:32', '5/5 Pass', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1410, 1, 0, 722, 333, 2, '2025-12-31 23:01:54', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1411, 0, 1, 731, 56, 2, '2025-12-22 21:22:35', '2026-01-03 07:02:32', '60.57 sec, 30/30, 2nd attempt - Pass', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1412, 0, 1, 731, 57, 2, '2025-12-22 21:23:34', '2026-01-03 07:02:32', '5/5, 1st attempt - Pass', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1413, 1, 0, 731, 58, 2, '2025-12-22 21:26:46', '2026-01-03 07:02:32', '- going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1414, 1, 0, 747, 222, 2, '2025-12-30 16:00:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1415, 1, 0, 747, 232, 2, '2025-12-30 17:11:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1416, 1, 1, 747, 240, 2, '2025-12-30 18:41:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1417, 1, 0, 747, 251, 2, '2025-12-30 20:48:56', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1418, 1, 0, 747, 252, 2, '2025-12-30 22:41:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1419, 1, 0, 747, 255, 2, '2025-12-30 22:52:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1420, 1, 0, 747, 256, 2, '2025-12-30 22:55:58', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1421, 0, 1, 747, 280, 2, '2025-12-31 17:46:21', '2026-01-03 07:02:32', '28/30 1:24 (pass)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1422, 0, 1, 747, 281, 2, '2025-12-31 17:47:43', '2026-01-03 07:02:32', '5/5 3rd attempt', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1423, 1, 0, 761, 300, 2, '2025-12-31 19:56:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1424, 1, 0, 761, 318, 2, '2025-12-31 21:31:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1425, 1, 0, 761, 319, 2, '2025-12-31 21:36:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1426, 1, 0, 761, 320, 2, '2025-12-31 21:37:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1427, 1, 0, 761, 321, 2, '2025-12-31 21:40:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1428, 1, 0, 761, 322, 2, '2025-12-31 21:51:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1429, 1, 0, 761, 328, 2, '2025-12-31 22:40:19', '2026-01-03 07:02:32', ' DNP - Had to leave early for other reasons. Will complete with him at a later date', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1430, 1, 0, 765, 205, 2, '2025-12-29 22:37:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1431, 1, 0, 765, 212, 2, '2025-12-30 14:32:22', '2026-01-03 07:02:32', '- 2 Soft Fail; Trainee may request another qualification in 7 days time.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1432, 1, 1, 765, 231, 2, '2025-12-30 17:05:59', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1433, 1, 1, 765, 306, 2, '2025-12-31 20:55:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1434, 1, 1, 778, 102, 2, '2025-12-24 22:59:45', '2026-01-03 07:02:32', 'Soft fail issued for time to calculate. Passed.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1435, 0, 0, 778, 106, 3, '2025-12-24 23:22:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1436, 1, 0, 778, 107, 2, '2025-12-24 23:56:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1437, 1, 0, 778, 122, 2, '2025-12-28 14:44:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1438, 0, 0, 778, 167, 2, '2025-12-28 18:47:38', '2026-01-03 07:02:32', 'Trainee already has the co-pilot badge, this was a refresher.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1439, 0, 1, 778, 169, 2, '2025-12-28 19:19:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1440, 0, 0, 778, 253, 5, '2025-12-30 22:44:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1441, 1, 0, 783, 391, 2, '2026-01-01 21:25:51', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1442, 1, 1, 791, 221, 2, '2025-12-30 15:50:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1443, 0, 0, 791, 288, 2, '2025-12-31 18:04:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1444, 1, 0, 791, 302, 2, '2025-12-31 20:07:01', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1445, 1, 1, 791, 307, 2, '2025-12-31 20:58:30', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1446, 0, 0, 791, 308, 5, '2025-12-31 21:01:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1447, 1, 0, 791, 319, 2, '2025-12-31 21:36:28', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1448, 1, 0, 791, 320, 2, '2025-12-31 21:37:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1449, 1, 0, 791, 321, 2, '2025-12-31 21:40:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1450, 1, 0, 791, 322, 2, '2025-12-31 21:51:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1451, 1, 1, 791, 326, 2, '2025-12-31 22:36:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1452, 0, 0, 791, 329, 5, '2025-12-31 22:42:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1453, 0, 1, 791, 331, 2, '2025-12-31 22:55:47', '2026-01-03 07:02:32', '- 28/30 - 1min 16seconds', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1454, 0, 1, 791, 332, 2, '2025-12-31 22:57:19', '2026-01-03 07:02:32', 'Fail - may reattempt in 48hrs', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1455, 1, 0, 791, 333, 2, '2025-12-31 23:01:54', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1456, 1, 0, 795, 416, 1, '2026-01-03 00:10:56', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1457, 0, 0, 797, 122, 1, '2025-12-28 14:44:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1458, 0, 0, 797, 126, 1, '2025-12-28 14:53:42', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1459, 0, 0, 797, 127, 1, '2025-12-28 14:55:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1460, 0, 0, 797, 133, 3, '2025-12-28 15:24:40', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1461, 0, 0, 797, 135, 1, '2025-12-28 15:29:04', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1462, 1, 1, 797, 146, 2, '2025-12-28 16:48:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1463, 0, 0, 797, 147, 4, '2025-12-28 16:50:45', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1464, 0, 0, 797, 149, 1, '2025-12-28 17:05:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1465, 0, 0, 797, 151, 1, '2025-12-28 17:09:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1466, 1, 1, 797, 160, 2, '2025-12-28 17:39:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1467, 0, 0, 797, 161, 4, '2025-12-28 18:35:14', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1468, 0, 1, 797, 164, 2, '2025-12-28 18:40:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1469, 0, 0, 797, 165, 4, '2025-12-28 18:43:28', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1470, 0, 0, 797, 176, 3, '2025-12-28 19:45:24', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1471, 0, 0, 797, 185, 3, '2025-12-28 21:12:59', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1472, 1, 0, 797, 238, 2, '2025-12-30 18:03:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1473, 1, 1, 797, 240, 2, '2025-12-30 18:41:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1474, 0, 0, 797, 245, 4, '2025-12-30 20:39:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1475, 0, 0, 797, 246, 4, '2025-12-30 20:40:55', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1476, 0, 0, 797, 247, 4, '2025-12-30 20:42:34', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1477, 1, 0, 797, 249, 2, '2025-12-30 20:46:03', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1478, 0, 0, 797, 256, 4, '2025-12-30 22:55:58', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1479, 1, 1, 797, 276, 2, '2025-12-31 17:39:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1480, 1, 1, 797, 295, 2, '2025-12-31 19:32:54', '2026-01-03 07:02:32', 'Soft Fail (Poor Placement of Fireteam No Security for EOD) - Soft Fail (Poor Path marking) -', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1481, 1, 1, 797, 305, 2, '2025-12-31 20:21:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1482, 1, 0, 797, 308, 2, '2025-12-31 21:01:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1483, 1, 0, 797, 312, 2, '2025-12-31 21:08:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1484, 1, 0, 797, 313, 2, '2025-12-31 21:11:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1485, 1, 0, 797, 321, 2, '2025-12-31 21:40:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1486, 1, 1, 797, 326, 2, '2025-12-31 22:36:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1487, 1, 1, 797, 328, 2, '2025-12-31 22:40:18', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1488, 1, 0, 797, 330, 2, '2025-12-31 22:45:42', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1489, 1, 0, 797, 334, 2, '2025-12-31 23:05:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1490, 1, 1, 797, 338, 2, '2026-01-01 00:33:47', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1491, 1, 0, 797, 340, 2, '2026-01-01 00:55:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1492, 1, 0, 797, 341, 2, '2026-01-01 01:00:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1493, 1, 0, 797, 342, 2, '2026-01-01 01:06:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1494, 1, 1, 797, 349, 2, '2026-01-01 01:41:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1495, 1, 1, 805, 288, 2, '2025-12-31 18:04:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1496, 1, 0, 805, 299, 2, '2025-12-31 19:53:00', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1497, 1, 0, 805, 300, 2, '2025-12-31 19:56:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1498, 1, 0, 805, 302, 2, '2025-12-31 20:07:01', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1499, 1, 1, 805, 307, 2, '2025-12-31 20:58:29', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1500, 1, 1, 815, 306, 2, '2025-12-31 20:55:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1501, 1, 1, 815, 328, 2, '2025-12-31 22:40:19', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1502, 1, 0, 815, 335, 2, '2025-12-31 23:06:59', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1503, 1, 0, 815, 336, 2, '2025-12-31 23:29:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1504, 1, 1, 815, 338, 2, '2026-01-01 00:33:47', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1505, 1, 0, 815, 339, 2, '2026-01-01 00:38:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1506, 1, 1, 815, 349, 2, '2026-01-01 01:41:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1507, 1, 0, 822, 390, 2, '2026-01-01 21:14:19', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1508, 0, 0, 827, 356, 4, '2026-01-01 02:07:40', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1509, 0, 0, 828, 305, 3, '2025-12-31 20:21:10', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1510, 1, 0, 829, 218, 2, '2025-12-30 14:50:04', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1511, 1, 1, 829, 219, 2, '2025-12-30 14:52:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1512, 1, 0, 834, 359, 2, '2026-01-01 02:15:08', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1513, 0, 0, 840, 356, 1, '2026-01-01 02:07:40', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1514, 0, 0, 840, 373, 1, '2026-01-01 18:58:14', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1515, 0, 0, 840, 374, 3, '2026-01-01 19:01:24', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1516, 0, 0, 840, 380, 1, '2026-01-01 20:22:50', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1517, 0, 0, 840, 381, 1, '2026-01-01 20:24:29', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1518, 0, 0, 840, 382, 1, '2026-01-01 20:25:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1519, 1, 1, 840, 408, 2, '2026-01-02 21:57:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1520, 1, 0, 840, 409, 2, '2026-01-02 21:59:39', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1521, 1, 1, 840, 411, 2, '2026-01-02 22:04:13', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1522, 1, 0, 845, 299, 2, '2025-12-31 19:53:00', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1523, 1, 0, 845, 300, 2, '2025-12-31 19:56:19', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1524, 1, 0, 845, 303, 2, '2025-12-31 20:15:38', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1525, 1, 0, 845, 304, 2, '2025-12-31 20:18:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1526, 1, 0, 866, 390, 2, '2026-01-01 21:14:19', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1527, 1, 0, 869, 388, 2, '2026-01-01 21:08:44', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1528, 1, 0, 870, 381, 2, '2026-01-01 20:24:29', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1529, 1, 0, 882, 389, 2, '2026-01-01 21:12:03', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1530, 1, 0, 882, 401, 2, '2026-01-02 20:23:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1531, 1, 1, 886, 216, 2, '2025-12-30 14:46:26', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1532, 1, 0, 886, 249, 2, '2025-12-30 20:46:03', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1533, 1, 0, 886, 300, 2, '2025-12-31 19:56:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1534, 0, 0, 886, 308, 3, '2025-12-31 21:01:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1535, 0, 0, 886, 321, 3, '2025-12-31 21:40:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1536, 0, 0, 886, 322, 1, '2025-12-31 21:51:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1537, 0, 0, 886, 331, 1, '2025-12-31 22:55:47', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1538, 0, 0, 886, 332, 1, '2025-12-31 22:57:19', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1539, 0, 0, 886, 333, 1, '2025-12-31 23:01:54', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1540, 0, 0, 886, 334, 1, '2025-12-31 23:05:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1541, 0, 0, 886, 342, 1, '2026-01-01 01:06:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1542, 1, 0, 886, 343, 2, '2026-01-01 01:13:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1543, 1, 0, 886, 344, 2, '2026-01-01 01:22:13', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1544, 0, 0, 886, 364, 1, '2026-01-01 16:37:07', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1545, 0, 0, 886, 365, 1, '2026-01-01 16:39:16', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1546, 0, 1, 916, 393, 2, '2026-01-01 22:44:02', '2026-01-03 07:02:32', '28/30, 64 seconds.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1547, 0, 0, 918, 233, 4, '2025-12-30 17:28:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1548, 0, 0, 918, 383, 1, '2026-01-01 20:33:00', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1549, 1, 0, 918, 388, 2, '2026-01-01 21:08:44', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1550, 0, 0, 918, 414, 1, '2026-01-03 00:06:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1551, 0, 0, 933, 181, 2, '2025-12-28 20:33:09', '2026-01-03 07:02:32', 'Trainee was engaged by enemies in close quarters and killed\nAdvised on route scouting and recommended to use A3TI thermal mod', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1552, 0, 0, 933, 182, 4, '2025-12-28 20:34:29', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1553, 1, 0, 933, 192, 2, '2025-12-28 23:36:15', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1554, 0, 0, 933, 228, 2, '2025-12-30 16:28:30', '2026-01-03 07:02:32', 'Left Early', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1555, 0, 0, 933, 239, 4, '2025-12-30 18:31:31', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1556, 1, 0, 933, 301, 2, '2025-12-31 20:01:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1557, 1, 0, 933, 303, 2, '2025-12-31 20:15:38', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1558, 1, 0, 933, 318, 2, '2025-12-31 21:31:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1559, 1, 0, 933, 387, 2, '2026-01-01 21:06:49', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1560, 1, 1, 938, 237, 2, '2025-12-30 17:47:34', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1561, 0, 0, 951, 213, 1, '2025-12-30 14:34:47', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1562, 0, 0, 951, 222, 1, '2025-12-30 16:00:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1563, 1, 0, 951, 308, 2, '2025-12-31 21:01:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1564, 0, 0, 951, 342, 2, '2026-01-01 01:06:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1565, 1, 0, 951, 344, 2, '2026-01-01 01:22:13', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1566, 0, 0, 951, 351, 1, '2026-01-01 01:51:28', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1567, 1, 0, 951, 367, 2, '2026-01-01 18:34:17', '2026-01-03 07:02:32', '(Left Early but I\'m pretty sure are qualled):', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1568, 0, 0, 951, 368, 2, '2026-01-01 18:37:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1569, 0, 0, 951, 379, 1, '2026-01-01 20:14:12', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1570, 0, 0, 951, 386, 1, '2026-01-01 21:02:55', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1571, 0, 0, 951, 405, 1, '2026-01-02 20:48:52', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1572, 1, 0, 951, 407, 1, '2026-01-02 21:02:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1573, 0, 0, 951, 408, 4, '2026-01-02 21:57:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1574, 0, 0, 951, 409, 4, '2026-01-02 21:59:39', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1575, 0, 1, 976, 277, 2, '2025-12-31 17:41:51', '2026-01-03 07:02:32', 'Marksman: 28/30 1:10 (pass)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1576, 0, 1, 976, 278, 2, '2025-12-31 17:43:23', '2026-01-03 07:02:32', '5/5 2nd Attempt (pass)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1577, 1, 0, 976, 279, 2, '2025-12-31 17:44:53', '2026-01-03 07:02:32', '(going Alpha)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1578, 0, 1, 985, 69, 2, '2025-12-22 23:14:06', '2026-01-03 07:02:32', '56.13 sec, 28/30, 2st attempt - Pass', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1579, 0, 1, 985, 70, 2, '2025-12-22 23:16:21', '2026-01-03 07:02:32', '5/5, 2nd attempt - Pass', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1580, 1, 0, 985, 71, 2, '2025-12-22 23:18:13', '2026-01-03 07:02:32', 'Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1581, 1, 0, 986, 360, 2, '2026-01-01 16:09:30', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1582, 1, 0, 993, 354, 2, '2026-01-01 02:03:44', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1583, 0, 1, 993, 397, 2, '2026-01-02 20:12:13', '2026-01-03 07:02:32', '1 min 6 seconds - 29/30', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1584, 0, 1, 993, 398, 2, '2026-01-02 20:12:47', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1585, 1, 0, 999, 354, 2, '2026-01-01 02:03:44', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1586, 0, 1, 999, 397, 2, '2026-01-02 19:54:22', '2026-01-03 07:02:32', '1 min 15 sec - 27/30', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1587, 0, 1, 999, 398, 2, '2026-01-02 20:12:47', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1588, 1, 0, 1009, 380, 2, '2026-01-01 20:22:50', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1589, 1, 0, 1014, 357, 2, '2026-01-01 02:09:40', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1590, 1, 1, 1019, 240, 2, '2025-12-30 18:41:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1591, 1, 0, 1019, 249, 2, '2025-12-30 20:46:03', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1592, 1, 0, 1019, 299, 2, '2025-12-31 19:53:00', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1593, 1, 0, 1019, 303, 2, '2025-12-31 20:15:38', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1594, 1, 0, 1019, 342, 2, '2026-01-01 01:06:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1595, 1, 0, 1019, 343, 2, '2026-01-01 01:13:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1596, 1, 0, 1021, 356, 2, '2026-01-01 02:07:40', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1597, 1, 0, 1022, 386, 2, '2026-01-01 21:02:55', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1598, 1, 0, 1047, 356, 2, '2026-01-01 02:07:40', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1599, 0, 0, 1056, 391, 2, '2026-01-01 21:25:51', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1600, 1, 0, 1067, 238, 2, '2025-12-30 18:03:26', '2025-12-30 18:03:26', '', 0, NULL, NULL), + (1601, 1, 1, 1067, 240, 2, '2025-12-30 18:41:44', '2025-12-30 18:41:44', '', 0, NULL, NULL), + (1602, 1, 0, 1067, 251, 2, '2025-12-30 20:48:56', '2025-12-30 20:48:56', '', 0, NULL, NULL), + (1603, 1, 0, 1067, 252, 2, '2025-12-30 22:41:36', '2025-12-30 22:41:36', '', 0, NULL, NULL), + (1604, 0, 0, 1067, 255, 2, '2025-12-30 22:52:44', '2025-12-30 22:52:44', '', 0, NULL, NULL), + (1605, 1, 0, 1067, 256, 2, '2025-12-30 22:55:58', '2025-12-30 22:55:58', '', 0, NULL, NULL), + (1606, 0, 1, 1067, 264, 2, '2025-12-31 01:14:34', '2025-12-31 01:14:34', '29/30 1:04 1st attempt', 0, NULL, NULL), + (1607, 0, 1, 1067, 265, 2, '2025-12-31 01:15:18', '2025-12-31 01:15:18', '5/5 2nd attempt', 0, NULL, NULL), + (1608, 1, 0, 1067, 266, 2, '2025-12-31 01:17:27', '2025-12-31 01:17:27', '(Going RRC, cleared with Giland)', 0, NULL, NULL), + (1609, 1, 0, 1082, 416, 2, '2026-01-03 00:10:56', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1610, 1, 0, 1088, 351, 2, '2026-01-01 01:51:28', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1611, 1, 0, 1088, 368, 2, '2026-01-01 18:37:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1612, 1, 0, 1088, 369, 2, '2026-01-01 18:39:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1613, 0, 0, 1088, 416, 3, '2026-01-03 00:10:56', '2026-01-03 07:02:32', '- left after 45 mins', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1614, 1, 0, 1099, 356, 2, '2026-01-01 02:07:40', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1615, 1, 0, 1104, 262, 2, '2025-12-31 01:11:03', '2025-12-31 01:11:03', '', 0, NULL, NULL), + (1616, 0, 0, 1104, 392, 1, '2026-01-01 21:37:39', '2026-01-01 21:37:39', '', 0, NULL, NULL), + (1617, 1, 0, 1115, 374, 2, '2026-01-01 19:01:24', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1618, 1, 0, 1117, 190, 2, '2025-12-28 23:08:35', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1619, 1, 0, 1117, 194, 2, '2025-12-28 23:53:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1620, 1, 0, 1117, 396, 2, '2026-01-02 18:31:47', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1621, 1, 0, 1120, 401, 2, '2026-01-02 20:23:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1622, 0, 0, 1128, 251, 2, '2025-12-30 20:48:56', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1623, 1, 0, 1128, 252, 2, '2025-12-30 22:41:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1624, 1, 0, 1128, 321, 2, '2025-12-31 21:40:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1625, 0, 1, 1128, 331, 2, '2025-12-31 22:55:47', '2026-01-03 07:02:32', '27/30 - 1 minutes 5 seconds', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1626, 1, 0, 1128, 333, 2, '2025-12-31 23:01:54', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1627, 1, 0, 1137, 342, 2, '2026-01-01 01:06:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1628, 0, 0, 1173, 175, 2, '2025-12-28 19:41:29', '2026-01-03 07:02:32', 'Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1629, 1, 1, 1173, 408, 2, '2026-01-02 21:57:33', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1630, 1, 0, 1173, 409, 2, '2026-01-02 21:59:39', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1631, 1, 1, 1185, 288, 2, '2025-12-31 18:04:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1632, 1, 0, 1190, 379, 2, '2026-01-01 20:14:12', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1633, 1, 0, 1205, 386, 2, '2026-01-01 21:02:55', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1634, 1, 0, 2221, 238, 2, '2025-12-30 18:03:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1635, 0, 0, 2221, 242, 1, '2025-12-30 19:34:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1636, 0, 0, 2221, 243, 1, '2025-12-30 20:37:35', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1637, 0, 0, 2221, 244, 1, '2025-12-30 20:38:47', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1638, 0, 0, 2221, 251, 1, '2025-12-30 20:48:56', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1639, 0, 0, 2221, 252, 1, '2025-12-30 22:41:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1640, 0, 0, 2221, 255, 1, '2025-12-30 22:52:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1641, 0, 0, 2221, 256, 1, '2025-12-30 22:55:58', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1642, 0, 0, 2221, 283, 1, '2025-12-31 17:50:20', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1643, 0, 0, 2221, 284, 1, '2025-12-31 17:51:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1644, 0, 0, 2221, 291, 1, '2025-12-31 18:43:43', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1645, 0, 0, 2221, 292, 1, '2025-12-31 18:45:50', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1646, 1, 0, 2221, 304, 2, '2025-12-31 20:18:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1647, 0, 0, 2221, 318, 1, '2025-12-31 21:31:27', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1648, 0, 0, 2221, 319, 1, '2025-12-31 21:36:28', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1649, 0, 0, 2221, 320, 1, '2025-12-31 21:37:36', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1650, 0, 0, 2221, 321, 1, '2025-12-31 21:40:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1651, 1, 0, 2221, 322, 2, '2025-12-31 21:51:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1652, 0, 0, 2221, 395, 1, '2026-01-01 22:51:22', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1653, 1, 0, 2221, 407, 2, '2026-01-02 21:02:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1654, 0, 0, 2223, 354, 1, '2026-01-01 02:03:44', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1655, 0, 0, 2223, 366, 1, '2026-01-01 16:43:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1656, 0, 0, 2223, 373, 3, '2026-01-01 18:58:14', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1657, 1, 0, 2223, 389, 2, '2026-01-01 21:12:03', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1658, 1, 0, 2224, 289, 2, '2025-12-31 18:09:55', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1659, 1, 0, 2224, 290, 2, '2025-12-31 18:10:49', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1660, 0, 0, 2226, 383, 3, '2026-01-01 20:33:00', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1661, 1, 1, 2227, 337, 2, '2026-01-01 00:31:58', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1662, 1, 1, 2227, 338, 2, '2026-01-01 00:33:47', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1663, 1, 0, 2227, 339, 2, '2026-01-01 00:38:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1664, 1, 0, 2227, 343, 2, '2026-01-01 01:13:23', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1665, 0, 1, 3348, 93, 2, '2025-12-23 21:31:21', '2026-01-03 07:02:32', '1x Soft Fail: Rotor Striking a tree w/ the Chinook whilst landing at a LZ.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1666, 1, 0, 3348, 94, 2, '2025-12-24 21:59:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1667, 1, 0, 3348, 99, 2, '2025-12-24 22:12:50', '2026-01-03 07:02:32', 'Covered the contents of the Rotary Logistics doc. Quallification to be scheduled at a later date.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1668, 1, 1, 3348, 100, 2, '2025-12-24 22:14:03', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1669, 1, 0, 3348, 412, 2, '2026-01-02 23:53:16', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1670, 1, 1, 3349, 101, 2, '2025-12-24 22:48:14', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1671, 1, 1, 3349, 102, 2, '2025-12-24 22:59:45', '2026-01-03 07:02:32', 'Passed. Recommended to practice calculating missions and 8 digits.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1672, 0, 0, 3349, 103, 5, '2025-12-24 23:15:17', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1673, 0, 0, 3349, 105, 5, '2025-12-24 23:18:38', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1674, 1, 1, 3349, 106, 2, '2025-12-24 23:22:37', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1675, 1, 0, 3349, 107, 2, '2025-12-24 23:56:21', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1676, 1, 0, 3349, 115, 2, '2025-12-26 22:24:39', '2026-01-03 07:02:32', 'Pass, going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1677, 0, 1, 3349, 116, 2, '2025-12-26 23:21:17', '2026-01-03 07:02:32', '27/30 1:00 min 1st try', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1678, 0, 1, 3349, 117, 2, '2025-12-26 23:22:24', '2026-01-03 07:02:32', '5/5 3rd try', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1679, 0, 1, 3350, 110, 2, '2025-12-25 00:12:42', '2026-01-03 07:02:32', 'Failed due to incomplete scouting of the objective and repeated risks to personal safety. Trainee advised on preserving their drone and conducting personal recon.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1680, 0, 0, 3350, 112, 3, '2025-12-26 22:09:15', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1681, 1, 0, 3350, 147, 2, '2025-12-28 16:50:45', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1682, 1, 0, 3350, 149, 2, '2025-12-28 17:05:25', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1683, 0, 1, 3350, 169, 2, '2025-12-28 19:19:02', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1684, 0, 0, 3350, 180, 4, '2025-12-28 20:19:11', '2026-01-03 07:02:32', '(assisted as CLS for qual)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1685, 1, 0, 3350, 214, 2, '2025-12-30 14:36:48', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1686, 1, 0, 3351, 115, 2, '2025-12-26 22:24:39', '2026-01-03 07:02:32', 'Pass, going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1687, 0, 1, 3351, 116, 2, '2025-12-26 23:21:17', '2026-01-03 07:02:32', '29/30 1:00 min 2nd try', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1688, 0, 1, 3351, 117, 2, '2025-12-26 23:22:24', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1689, 1, 1, 3352, 121, 2, '2025-12-26 23:31:08', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1690, 1, 1, 3352, 131, 2, '2025-12-28 15:19:32', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1691, 1, 1, 3352, 133, 2, '2025-12-28 15:24:40', '2026-01-03 07:02:32', 'SF - Failure to Do security', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1692, 1, 1, 3352, 134, 2, '2025-12-28 15:27:42', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1693, 1, 0, 3352, 144, 2, '2025-12-28 16:38:42', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1694, 1, 0, 3352, 367, 2, '2026-01-01 18:34:17', '2026-01-03 07:02:32', '(Left Early but I\'m pretty sure are qualled):', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1695, 1, 0, 3352, 368, 2, '2026-01-01 18:37:09', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1696, 1, 1, 3352, 406, 2, '2026-01-02 20:57:29', '2026-01-03 07:02:32', '- Nothing of note to work on.', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1697, 1, 0, 3353, 139, 2, '2025-12-28 15:41:49', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1698, 0, 1, 3353, 140, 2, '2025-12-28 16:11:35', '2026-01-03 07:02:32', 'Marksman 28/30 48.34 sec', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1699, 0, 0, 3354, 144, 5, '2025-12-28 16:38:42', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1700, 1, 0, 3354, 166, 2, '2025-12-28 18:45:24', '2026-01-03 07:02:32', 'Going Echo', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1701, 1, 0, 3356, 228, 2, '2025-12-30 16:28:30', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1702, 1, 1, 3356, 263, 2, '2025-12-31 01:12:46', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1703, 0, 1, 3356, 269, 2, '2025-12-31 16:57:22', '2026-01-03 07:02:32', '27/30 53:72', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1704, 0, 1, 3356, 270, 2, '2025-12-31 16:58:37', '2026-01-03 07:02:32', '5/5 1st attempt', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1705, 1, 0, 3356, 271, 2, '2025-12-31 17:00:33', '2026-01-03 07:02:32', 'Pass (Going Echo)', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1706, 1, 0, 3357, 262, 2, '2025-12-31 01:11:03', '2026-01-03 07:02:32', '', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1707, 0, 1, 3358, 314, 2, '2025-12-31 21:16:43', '2026-01-03 07:02:32', '27/30 01:20', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1708, 0, 1, 3358, 315, 2, '2025-12-31 21:17:48', '2026-01-03 07:02:32', '5/5 1st attempt', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1709, 1, 0, 3358, 317, 2, '2025-12-31 21:23:45', '2026-01-03 07:02:32', 'Going Alpha', 1, 'No longer in the unit (Platform Migration)', '2026-01-03 07:02:32'), + (1710, 0, 0, 28, 417, 1, '2026-01-17 10:02:08', '2026-01-17 10:02:08', '', 0, NULL, NULL), + (1711, 0, 0, 38, 417, 2, '2026-01-17 10:02:08', '2026-01-17 10:02:08', '', 0, NULL, NULL), + (1712, 0, 0, 28, 418, 1, '2026-01-17 10:03:18', '2026-01-17 10:03:18', '', 0, NULL, NULL), + (1713, 0, 0, 48, 418, 2, '2026-01-17 10:03:18', '2026-01-17 10:03:18', '', 0, NULL, NULL), + (1714, 0, 0, 28, 419, 1, '2026-01-17 10:03:18', '2026-01-17 10:03:18', '', 0, NULL, NULL), + (1715, 0, 0, 48, 419, 2, '2026-01-17 10:03:18', '2026-01-17 10:03:18', '', 0, NULL, NULL), + (1716, 0, 0, 28, 420, 1, '2026-01-17 10:03:18', '2026-01-17 10:03:18', '', 0, NULL, NULL), + (1717, 0, 0, 48, 420, 2, '2026-01-17 10:03:18', '2026-01-17 10:03:18', '', 0, NULL, NULL), + (1718, 0, 0, 22, 421, 1, '2026-01-17 10:06:28', '2026-01-17 10:06:28', '', 0, NULL, NULL), + (1719, 0, 0, 28, 421, 2, '2026-01-17 10:06:28', '2026-01-17 10:06:28', '', 0, NULL, NULL), + (1720, 0, 0, 22, 422, 1, '2026-01-17 10:06:28', '2026-01-17 10:06:28', '', 0, NULL, NULL), + (1721, 0, 0, 28, 422, 2, '2026-01-17 10:06:28', '2026-01-17 10:06:28', '', 0, NULL, NULL), + (1722, 0, 0, 22, 423, 1, '2026-01-17 10:06:28', '2026-01-17 10:06:28', '', 0, NULL, NULL), + (1723, 0, 0, 28, 423, 2, '2026-01-17 10:06:28', '2026-01-17 10:06:28', '', 0, NULL, NULL), + (1724, 0, 0, 561, 424, 1, '2026-01-17 10:07:19', '2026-01-17 10:07:19', '', 0, NULL, NULL), + (1725, 0, 0, 38, 424, 2, '2026-01-17 10:07:19', '2026-01-17 10:07:19', '', 0, NULL, NULL), + (1726, 0, 0, 561, 425, 1, '2026-01-17 10:07:20', '2026-01-17 10:07:20', '', 0, NULL, NULL), + (1727, 0, 0, 38, 425, 2, '2026-01-17 10:07:20', '2026-01-17 10:07:20', '', 0, NULL, NULL), + (1728, 0, 0, 561, 426, 1, '2026-01-17 10:07:20', '2026-01-17 10:07:20', '', 0, NULL, NULL), + (1729, 0, 0, 38, 426, 2, '2026-01-17 10:07:20', '2026-01-17 10:07:20', '', 0, NULL, NULL), + (1730, 0, 0, 28, 427, 1, '2026-01-17 10:09:00', '2026-01-17 10:09:00', '', 0, NULL, NULL), + (1731, 0, 0, 48, 427, 2, '2026-01-17 10:09:00', '2026-01-17 10:09:00', '', 0, NULL, NULL), + (1732, 0, 0, 28, 428, 1, '2026-01-17 10:10:18', '2026-01-17 10:10:18', '', 0, NULL, NULL), + (1733, 0, 0, 1, 428, 2, '2026-01-17 10:10:18', '2026-01-17 10:10:18', '', 0, NULL, NULL), + (1734, 0, 0, 561, 429, 1, '2026-01-17 10:11:58', '2026-01-17 10:11:58', '', 0, NULL, NULL), + (1735, 0, 0, 48, 429, 2, '2026-01-17 10:11:58', '2026-01-17 10:11:58', '', 0, NULL, NULL); -- Dumping data for table milsim_website_development.course_category: ~0 rows (approximately) --- Dumping data for table milsim_website_development.course_events: ~9 rows (approximately) +-- Dumping data for table milsim_website_development.course_events: ~412 rows (approximately) INSERT INTO `course_events` (`id`, `course_id`, `event_type`, `event_date`, `guilded_event_id`, `guilded_report_id`, `created_at`, `updated_at`, `deleted`, `report_url`, `remarks`, `created_by`, `hasBookwork`, `hasQual`) VALUES - (1, 25, NULL, '2025-12-16 18:00:00', NULL, '826566727', '2025-12-17 20:06:22', '2025-12-20 23:58:37', 0, NULL, 'This was a re-qualification following up on a qualification previously hosted on 12/4/2025; \n\nThe trainee showed marked improvement in all areas and was able to correct all hard and soft failures during the re-qualification.', 37, 1, 1); + (1, 25, NULL, '2025-12-16 18:00:00', NULL, 'N/A', '2025-12-17 20:06:22', '2025-12-21 18:31:55', 0, NULL, 'This was a re-qualification following up on a qualification previously hosted on 12/4/2025; \n\nThe trainee showed marked improvement in all areas and was able to correct all hard and soft failures during the re-qualification.', 80, 1, 1); INSERT INTO `course_events` (`id`, `course_id`, `event_type`, `event_date`, `guilded_event_id`, `guilded_report_id`, `created_at`, `updated_at`, `deleted`, `report_url`, `remarks`, `created_by`, `hasBookwork`, `hasQual`) VALUES - (2, 8, NULL, '2025-12-04 18:00:00', NULL, '826566727', '2025-12-20 23:53:06', '2025-12-20 23:58:37', 0, NULL, '', 37, 1, 0), - (3, 9, NULL, '2025-12-20 19:00:00', NULL, NULL, '2025-12-21 18:11:17', '2025-12-21 18:11:17', 0, NULL, 'Remarkable', 28, 1, 1), - (4, 9, NULL, '2025-12-20 19:00:00', NULL, NULL, '2025-12-21 18:11:17', '2025-12-21 18:11:17', 0, NULL, 'Remarkable', 28, 1, 1), - (5, 33, NULL, '2025-12-20 19:00:00', NULL, NULL, '2025-12-21 18:14:52', '2025-12-21 18:14:52', 0, NULL, 'Test', 28, 1, 0), - (6, 14, NULL, '2025-12-27 19:00:00', NULL, NULL, '2025-12-28 13:41:11', '2025-12-28 13:41:11', 0, NULL, '', 28, 0, 1), - (7, 4, NULL, '2025-12-27 19:00:00', NULL, NULL, '2025-12-28 14:12:36', '2025-12-28 14:12:36', 0, NULL, '', 28, 1, 0), - (8, 10, NULL, '2025-12-27 19:00:00', NULL, NULL, '2025-12-28 16:24:57', '2025-12-28 16:24:57', 0, NULL, '', 28, 1, 1), - (9, 25, NULL, '2025-12-03 18:00:00', NULL, NULL, '2025-12-28 18:53:40', '2025-12-28 18:53:40', 0, NULL, 'Trainee was advised to practice autorotations, especially in adverse terrain. Additionally, trainee was asked to practice with sling loading vehicles utilizing the Chinook. *Report Transferred From Guilded*', 38, 1, 1); + (2, 36, NULL, '2025-12-15 18:00:00', NULL, '1563043717', '2025-12-19 15:04:18', '2025-12-21 20:01:24', 0, NULL, '*Report Transferred From Guilded*', 67, 1, 0), + (3, 35, NULL, '2025-12-10 18:00:00', NULL, '1434015304', '2025-12-19 15:13:13', '2025-12-21 20:01:24', 0, NULL, '*Report Transferred From Guilded*', 67, 1, 0), + (4, 34, NULL, '2025-12-07 18:00:00', NULL, '1300604303', '2025-12-19 15:33:58', '2025-12-21 20:01:24', 0, NULL, '*Report Transferred From Guilded*', 67, 1, 0), + (5, 13, NULL, '2025-12-07 18:00:00', NULL, '1972243477', '2025-12-19 15:41:43', '2025-12-21 20:01:25', 0, NULL, '*Report Transferred From Guilded*', 26, 0, 1), + (6, 14, NULL, '2025-12-07 18:00:00', NULL, '1972243477', '2025-12-19 15:43:56', '2025-12-21 20:01:26', 0, NULL, '*Report Transferred From Guilded*', 26, 0, 1), + (7, 1, NULL, '2025-12-07 18:00:00', NULL, '432190027', '2025-12-19 16:12:42', '2025-12-21 20:01:28', 0, NULL, '*Report Transferred From Guilded*', 26, 1, 0), + (8, 14, NULL, '2025-12-04 18:00:00', NULL, '1502583040', '2025-12-20 23:28:16', '2025-12-21 20:01:28', 0, NULL, '*Report Transferred From Guilded*', 37, 1, 0), + (9, 4, NULL, '2025-12-04 18:00:00', NULL, '1673716972', '2025-12-21 00:07:16', '2025-12-21 20:01:31', 0, NULL, '*Report Transferred From Guilded*', 67, 1, 0), + (10, 25, NULL, '2025-12-03 18:00:00', NULL, '1569210807', '2025-12-21 00:12:56', '2025-12-21 20:01:44', 0, NULL, 'Trainee was advised to practice autorotations, especially in adverse terrain. Additionally, trainee was asked to practice with sling loading vehicles utilizing the Chinook.\r\n\r\n*Report Transferred From Guilded*', 80, 1, 1), + (11, 13, NULL, '2025-11-30 18:00:00', NULL, '1309080815', '2025-12-21 00:26:53', '2025-12-21 20:01:31', 0, NULL, '*Report Transferred From Guilded*', 64, 0, 1), + (12, 14, NULL, '2025-11-30 18:00:00', NULL, '1309080815', '2025-12-21 00:28:22', '2025-12-21 20:01:32', 0, NULL, '*Report Transferred From Guilded*', 64, 0, 1), + (13, 1, NULL, '2025-11-30 18:00:00', NULL, '1280115985', '2025-12-21 00:35:25', '2025-12-21 20:01:32', 0, NULL, '*Report Transferred From Guilded*', 64, 1, 0), + (14, 12, NULL, '2025-11-23 18:00:00', NULL, '1369802840', '2025-12-21 00:37:26', '2025-12-21 20:01:32', 0, NULL, '*Report Transferred From Guilded*', 67, 1, 1), + (15, 2, NULL, '2025-11-20 18:00:00', NULL, '1722941452', '2025-12-21 00:42:24', '2025-12-21 20:01:33', 0, NULL, '*Report Transferred From Guilded*', 8, 1, 1), + (16, 40, NULL, '2025-11-19 18:00:00', NULL, '1085192268', '2025-12-21 00:46:18', '2025-12-21 20:02:03', 0, NULL, 'This training was purely informational and practice for all involved. No admin is required.\r\n\r\n*Report Transferred From Guilded*', 80, 0, 0), + (17, 13, NULL, '2025-11-18 18:00:00', NULL, '2137120843', '2025-12-21 00:48:56', '2025-12-21 20:01:34', 0, NULL, '*Report Transferred From Guilded*', 67, 0, 1), + (18, 14, NULL, '2025-11-18 18:00:00', NULL, '2137120843', '2025-12-21 00:50:41', '2025-12-21 20:01:34', 0, NULL, '*Report Transferred From Guilded*', 67, 0, 1), + (19, 1, NULL, '2025-11-18 18:00:00', NULL, '1963773535', '2025-12-21 19:23:27', '2025-12-21 20:01:34', 0, NULL, '*Report Transferred From Guilded*', 37, 1, 0), + (20, 10, NULL, '2025-12-11 18:00:00', NULL, '990618653', '2025-12-21 19:30:23', '2025-12-21 20:01:35', 0, NULL, '*Report Transferred From Guilded*', 37, 1, 1), + (21, 32, NULL, '2025-12-12 18:00:00', NULL, '1984705962', '2025-12-21 20:02:02', '2025-12-21 20:03:34', 0, NULL, 'Trainee\'s have been asked to work on spotting and marking targets on the map, as well as moving more in cover and hiding in defilade.\nWind during the qual was very erratic and all over the place, unsure of the reason.\n\n*Report Transferred From Guilded*', 56, 1, 1), + (22, 13, NULL, '2025-11-17 18:00:00', NULL, '85364549', '2025-12-21 20:08:28', '2025-12-21 20:33:59', 0, NULL, '*Report Transferred From Guilded*', 67, 0, 1), + (23, 14, NULL, '2025-11-17 18:00:00', NULL, '85364549', '2025-12-21 20:09:32', '2025-12-21 20:33:59', 0, NULL, '*Report Transferred From Guilded*', 67, 0, 1), + (24, 1, NULL, '2025-11-13 18:00:00', NULL, '379188661', '2025-12-21 20:15:52', '2025-12-21 20:34:00', 0, NULL, '*Report Transferred From Guilded*', 64, 1, 0), + (25, 9, NULL, '2025-11-12 18:00:00', NULL, '885490235', '2025-12-21 20:33:14', '2025-12-21 20:34:08', 0, NULL, '*Report Transferred From Guilded*', 73, 1, 1), + (26, 41, NULL, '2025-11-12 18:00:00', NULL, '964797589', '2025-12-21 21:41:03', '2025-12-21 22:15:26', 0, NULL, 'Anti Armor FTX\r\n\r\nNo admin necessary since FTX\r\n\r\n*Report Transferred From Guilded*', 37, 0, 0), + (27, 1, NULL, '2025-11-08 18:00:00', NULL, '1681816894', '2025-12-21 22:18:19', '2025-12-21 22:18:35', 0, NULL, '', 12, 1, 0), + (28, 24, NULL, '2025-10-25 19:00:00', NULL, '293722596', '2025-12-21 22:23:57', '2025-12-21 22:24:33', 0, NULL, 'Training was a Challenge\n\nFailed, shot down during Apache section by BMP-2 - Trainee must attend RW-CAS Training and show improvement in Apache rocketry positioning. \n\nTrainee barred from challenging any training for 2 months.', 468, 1, 1), + (29, 19, NULL, '2025-10-24 19:00:00', NULL, '1301095118', '2025-12-21 22:37:05', '2025-12-21 22:37:20', 0, NULL, 'Bookwork Only ', 64, 1, 1), + (30, 10, NULL, '2025-10-21 19:00:00', NULL, '1781038425', '2025-12-21 22:38:57', '2025-12-21 22:39:08', 0, NULL, '', 468, 1, 1), + (31, 8, NULL, '2025-10-20 19:00:00', NULL, '1504265384', '2025-12-21 22:40:49', '2025-12-21 22:40:58', 0, NULL, 'Refresher for both, and both are considered to have Observed the training for trainer certification.', 468, 1, 0), + (32, 27, NULL, '2025-10-18 19:00:00', NULL, '1296354757', '2025-12-21 22:44:42', '2025-12-21 22:44:54', 0, NULL, 'Trainee was previously PF/CD qualed and had partaken in combat dives during ops, so this was zmooth to cover', 468, 1, 0), + (33, 32, NULL, '2025-10-18 19:00:00', NULL, '510753078', '2025-12-21 23:11:33', '2025-12-21 23:11:43', 0, NULL, 'Notes: Both Attendees showed great use and understanding of skills and knowledge of material. Small reminder to stay in cover/concealment as often as possible and to mark targets if they are moving/patrolling or just standing around.\n\nNotes for Trainer: Needs to work on noting the jobs of Spotter and Sniper clearly and separate bullet drop and wind calls.', 56, 1, 1), + (34, 30, NULL, '2025-10-15 19:00:00', NULL, '318794620', '2025-12-21 23:13:40', '2025-12-21 23:13:50', 0, NULL, 'Advised trainee to take more time scouting OBJ areas to not miss important information. Also to work on finer drone movements like landing. (I miss my Raven drone but I understand we can\'t be crashing the server).\n\nRecon provided was in good detail and appropriate. Movements and pathfinding was ideal. No detections.', 46, 1, 1), + (35, 23, NULL, '2025-10-15 19:00:00', NULL, '1675854119', '2025-12-21 23:18:06', '2025-12-21 23:18:16', 0, NULL, '', 7, 1, 1), + (36, 24, NULL, '2025-10-14 19:00:00', NULL, '793341498', '2025-12-22 00:00:37', '2025-12-22 00:01:01', 0, NULL, 'Covered the contents of the Rotary CAS document and ran some practice tasks. No admin necessary.', 42, 1, 1), + (37, 26, NULL, '2025-10-14 19:00:00', NULL, '208364557', '2025-12-22 00:02:44', '2025-12-22 00:02:55', 0, NULL, '', 468, 1, 1), + (38, 8, NULL, '2025-10-12 19:00:00', NULL, '749278453', '2025-12-22 00:05:00', '2025-12-22 00:05:12', 0, NULL, '', 468, 1, 0), + (39, 13, NULL, '2025-10-12 19:00:00', NULL, '880297908', '2025-12-22 00:40:57', '2025-12-22 00:41:30', 0, NULL, '', 64, 0, 1), + (40, 1, NULL, '2025-10-12 19:00:00', NULL, '929522316', '2025-12-22 00:42:57', '2025-12-22 00:43:31', 0, NULL, '', 64, 1, 0), + (41, 13, NULL, '2025-10-11 19:00:00', NULL, '769453815', '2025-12-22 00:44:55', '2025-12-22 00:45:07', 0, NULL, '', 23, 0, 1), + (42, 1, NULL, '2025-10-11 19:00:00', NULL, '661937663', '2025-12-22 00:46:23', '2025-12-22 00:46:32', 0, NULL, '', 23, 1, 0), + (43, 25, NULL, '2025-10-09 19:00:00', NULL, '627524073', '2025-12-22 00:48:13', '2025-12-22 00:48:23', 0, NULL, 'Covered the contents of the Rotary Training documents and ran some practice tasks', 42, 1, 1), + (44, 17, NULL, '2025-10-08 19:00:00', NULL, '1780989064', '2025-12-22 00:49:32', '2025-12-22 00:49:44', 0, NULL, '', 42, 1, 1), + (45, 29, NULL, '2025-10-08 19:00:00', NULL, '27452323', '2025-12-22 00:55:01', '2025-12-22 00:55:44', 0, NULL, '1 on 1', 46, 1, 1), + (46, 19, NULL, '2025-10-12 19:00:00', NULL, '1998759161', '2025-12-22 00:57:21', '2025-12-22 00:57:33', 0, NULL, '', 64, 1, 1), + (47, 19, NULL, '2025-10-08 19:00:00', NULL, '1606932964', '2025-12-22 01:05:11', '2025-12-22 01:05:25', 0, NULL, 'TIPS:\nGet to taskings faster, longer arrival times mean more chances for friendlies to die.', 64, 1, 1), + (48, 30, NULL, '2025-10-08 19:00:00', NULL, '1457976624', '2025-12-22 01:07:51', '2025-12-22 01:08:00', 0, NULL, '', 46, 1, 1), + (49, 25, NULL, '2025-10-08 19:00:00', NULL, '437576783', '2025-12-22 01:09:26', '2025-12-22 01:09:32', 0, NULL, '', 80, 1, 1), + (50, 25, NULL, '2025-10-06 19:00:00', NULL, '2144535685', '2025-12-22 01:12:29', '2025-12-22 01:12:41', 0, NULL, 'Notes:\nTrainee showed substantial improvement in flying since last qualification in all areas.', 80, 1, 1), + (51, 20, NULL, '2025-10-05 19:00:00', NULL, '131365933', '2025-12-22 01:15:25', '2025-12-22 01:15:36', 0, NULL, '', 468, 1, 1), + (52, 18, NULL, '2025-10-02 19:00:00', NULL, '1195185357', '2025-12-22 01:16:57', '2025-12-22 01:17:08', 0, NULL, '', 64, 1, 0), + (53, 25, NULL, '2025-09-30 19:00:00', NULL, '641618332', '2025-12-22 01:18:49', '2025-12-22 01:19:01', 0, NULL, 'Trainee was advised to practice with MH-6, especially in tighter LZs and situations that require finer control before attempting to re-qualify, along with repetition with anti-torque and auto-rotation. Trainee was also advised to pay special note when regarding 8-digit grid references and to utilize tools to write down grid coordinates to maintain situational awareness when in flight.', 80, 1, 1), + (54, 17, NULL, '2025-09-30 19:00:00', NULL, '715927708', '2025-12-22 01:20:22', '2025-12-22 01:20:34', 0, NULL, '', 42, 1, 1), + (55, 29, NULL, '2025-10-01 19:00:00', NULL, '1531107876', '2025-12-22 21:20:04', '2025-12-22 21:20:18', 0, NULL, '', 46, 1, 1), + (56, 13, NULL, '2025-09-29 19:00:00', NULL, '2039377803', '2025-12-22 21:22:35', '2025-12-22 21:23:53', 0, NULL, '', 26, 0, 1), + (57, 14, NULL, '2025-09-29 19:00:00', NULL, '2039377803', '2025-12-22 21:23:34', '2025-12-22 21:23:53', 0, NULL, '', 26, 0, 1), + (58, 1, NULL, '2025-09-29 19:00:00', NULL, '842634261', '2025-12-22 21:26:46', '2025-12-22 21:27:14', 0, NULL, '', 26, 1, 0), + (59, 2, NULL, '2025-09-23 19:00:00', NULL, '1735519190', '2025-12-22 21:29:38', '2025-12-22 21:29:49', 0, NULL, '', 8, 1, 1), + (60, 13, NULL, '2025-09-23 19:00:00', NULL, '1023286365', '2025-12-22 21:31:14', '2025-12-22 21:35:05', 0, NULL, '', 64, 0, 1), + (61, 14, NULL, '2025-09-23 19:00:00', NULL, '1023286365', '2025-12-22 21:39:07', '2025-12-22 21:39:17', 0, NULL, '', 64, 0, 1), + (62, 1, NULL, '2025-09-23 19:00:00', NULL, '521472402', '2025-12-22 21:54:19', '2025-12-22 21:54:41', 0, NULL, '', 64, 1, 0), + (63, 2, NULL, '2025-09-22 19:00:00', NULL, '672546429', '2025-12-22 21:57:37', '2025-12-22 22:00:22', 0, NULL, 'Was a Qualification Challenge ', 8, 1, 1), + (64, 42, NULL, '2025-09-21 19:00:00', NULL, '1689825899', '2025-12-22 22:06:02', '2025-12-22 22:08:40', 0, NULL, '', 7, 1, 1), + (65, 36, NULL, '2025-09-17 19:00:00', NULL, '208169623', '2025-12-22 22:13:51', '2025-12-22 22:13:56', 0, NULL, '', 67, 1, 0), + (66, 35, NULL, '2025-09-15 19:00:00', NULL, '1948937366', '2025-12-22 22:18:32', '2025-12-22 22:18:34', 0, NULL, '', 67, 1, 0), + (67, 34, NULL, '2025-09-10 19:00:00', NULL, '1065836128', '2025-12-22 22:19:45', '2025-12-22 22:20:02', 0, NULL, '', 67, 1, 0), + (68, 4, NULL, '2025-09-08 19:00:00', NULL, '1337704735', '2025-12-22 22:21:05', '2025-12-22 22:22:37', 0, NULL, '', 67, 1, 0), + (69, 13, NULL, '2025-08-27 19:00:00', NULL, '2135476338', '2025-12-22 23:14:06', '2025-12-22 23:16:34', 0, NULL, '', 26, 0, 1), + (70, 14, NULL, '2025-08-27 19:00:00', NULL, '2135476338', '2025-12-22 23:16:21', '2025-12-22 23:16:34', 0, NULL, '', 26, 0, 1), + (71, 1, NULL, '2025-08-27 19:00:00', NULL, '1988433967', '2025-12-22 23:18:13', '2025-12-22 23:18:35', 0, NULL, '', 26, 1, 0), + (72, 8, NULL, '2025-08-25 19:00:00', NULL, '1838808993', '2025-12-22 23:20:16', '2025-12-22 23:20:25', 0, NULL, 'Training ended early due to only 1 trainee showing up, thus simplifying the teaching process.', 37, 1, 0), + (73, 17, NULL, '2025-08-16 19:00:00', NULL, '1878053746', '2025-12-22 23:22:03', '2025-12-22 23:22:13', 0, NULL, '', 42, 1, 1), + (74, 25, NULL, '2025-08-15 19:00:00', NULL, '183650291', '2025-12-22 23:24:40', '2025-12-22 23:24:49', 0, NULL, 'Trainee has completed the ground/book work portion of the training, no admin is required.\nQualification to be hosted at a later date.', 80, 1, 1), + (75, 13, NULL, '2025-08-15 19:00:00', NULL, '334802892', '2025-12-22 23:25:37', '2025-12-22 23:26:24', 0, NULL, '', 26, 0, 1), + (76, 14, NULL, '2025-08-15 19:00:00', NULL, '334802892', '2025-12-22 23:26:12', '2025-12-22 23:26:24', 0, NULL, '', 26, 0, 1), + (77, 1, NULL, '2025-08-15 19:00:00', NULL, '1170039741', '2025-12-22 23:27:05', '2025-12-22 23:29:46', 0, NULL, '', 26, 1, 0), + (78, 13, NULL, '2025-08-09 19:00:00', NULL, '923883358', '2025-12-22 23:28:09', '2025-12-22 23:30:30', 0, NULL, '', 2, 0, 1), + (79, 14, NULL, '2025-08-09 19:00:00', NULL, '923883358', '2025-12-22 23:30:21', '2025-12-22 23:30:30', 0, NULL, '', 2, 0, 1), + (80, 1, NULL, '2025-08-09 19:00:00', NULL, '434191695', '2025-12-22 23:31:11', '2025-12-22 23:31:21', 0, NULL, '', 2, 1, 0), + (81, 25, NULL, '2025-08-08 19:00:00', NULL, '34136366', '2025-12-22 23:32:41', '2025-12-22 23:32:49', 0, NULL, 'Trainee has completed the ground/book work portion of the training, no admin is required.\nQualification to be hosted at a later date.', 80, 1, 1), + (82, 21, NULL, '2025-07-19 19:00:00', NULL, '1222325621', '2025-12-22 23:38:23', '2025-12-22 23:38:38', 0, NULL, '', 468, 1, 1), + (83, 12, NULL, '2025-08-03 19:00:00', NULL, '793065579', '2025-12-23 20:13:11', '2025-12-23 20:14:56', 0, NULL, '', 38, 1, 1), + (84, 18, NULL, '2025-07-30 19:00:00', NULL, '1299591957', '2025-12-23 20:20:49', '2025-12-23 20:21:02', 0, NULL, '', 7, 1, 0), + (85, 13, NULL, '2025-07-24 19:00:00', NULL, '404510433', '2025-12-23 20:23:19', '2025-12-23 20:24:14', 0, NULL, '', 26, 0, 1), + (86, 14, NULL, '2025-07-24 19:00:00', NULL, '404510433', '2025-12-23 20:24:02', '2025-12-23 20:24:14', 0, NULL, '', 26, 0, 1), + (87, 1, NULL, '2025-07-24 19:00:00', NULL, '552874373', '2025-12-23 20:25:43', '2025-12-23 20:26:04', 0, NULL, '', 26, 1, 0), + (88, 6, NULL, '2025-07-24 19:00:00', NULL, '649861913', '2025-12-23 20:30:54', '2025-12-23 20:31:10', 0, NULL, '', 26, 1, 1), + (89, 32, NULL, '2025-07-23 19:00:00', NULL, '1282722397', '2025-12-23 20:34:02', '2025-12-23 20:34:12', 0, NULL, '', 56, 1, 1), + (90, 1, NULL, '2025-07-17 19:00:00', NULL, '2013421111', '2025-12-23 20:36:05', '2025-12-23 20:36:21', 0, NULL, '', 64, 1, 0), + (91, 2, NULL, '2025-07-17 19:00:00', NULL, '358021782', '2025-12-23 20:39:15', '2025-12-23 20:39:24', 0, NULL, 'Thanks for being bodies', 61, 1, 1), + (92, 2, NULL, '2025-07-15 19:00:00', NULL, '412066389', '2025-12-23 20:43:48', '2025-12-23 20:43:58', 0, NULL, 'Tiger did the qual under supervision, having previously taught the class itself under supervision he is now fully certified to teach the entire CLS course without supervision.', 8, 1, 1), + (93, 25, NULL, '2025-07-09 19:00:00', NULL, '358727111', '2025-12-23 21:31:20', '2025-12-23 21:31:32', 0, NULL, '', 80, 1, 1), + (94, 18, NULL, '2025-07-04 18:00:00', NULL, '409615953', '2025-12-24 21:59:17', '2025-12-24 22:02:56', 0, NULL, '', 64, 1, 0), + (95, 24, NULL, '2025-06-30 19:00:00', NULL, '737391441', '2025-12-24 22:05:14', '2025-12-24 22:05:23', 0, NULL, '', 468, 1, 1), + (96, 21, NULL, '2025-06-25 19:00:00', NULL, '963966420', '2025-12-24 22:06:51', '2025-12-24 22:07:01', 0, NULL, 'Both ready to qual', 468, 1, 1), + (97, 24, NULL, '2025-06-24 19:00:00', NULL, '1872964764', '2025-12-24 22:09:27', '2025-12-24 22:09:37', 0, NULL, '', 468, 1, 1), + (98, 24, NULL, '2025-06-21 19:00:00', NULL, '420302445', '2025-12-24 22:11:02', '2025-12-24 22:11:14', 0, NULL, '', 468, 1, 1), + (99, 25, NULL, '2025-06-19 19:00:00', NULL, '2119236030', '2025-12-24 22:12:50', '2025-12-24 22:12:57', 0, NULL, '', 42, 1, 1), + (100, 17, NULL, '2025-06-13 19:00:00', NULL, '2035315192', '2025-12-24 22:14:03', '2025-12-24 22:14:11', 0, NULL, '', 42, 1, 1), + (101, 10, NULL, '2025-06-12 19:00:00', NULL, '1811714101', '2025-12-24 22:48:14', '2025-12-24 22:49:40', 0, NULL, '', 468, 1, 1), + (102, 20, NULL, '2025-06-13 19:00:00', NULL, '1898263500', '2025-12-24 22:59:45', '2025-12-24 23:02:02', 0, NULL, '', 468, 1, 1), + (103, 29, NULL, '2025-06-09 19:00:00', NULL, '1608092364', '2025-12-24 23:15:17', '2025-12-24 23:15:27', 0, NULL, '', 468, 1, 1), + (104, 24, NULL, '2025-06-09 19:00:00', NULL, '626458306', '2025-12-24 23:17:19', '2025-12-24 23:17:24', 0, NULL, '', 42, 1, 1), + (105, 8, NULL, '2025-06-08 19:00:00', NULL, '1582953385', '2025-12-24 23:18:38', '2025-12-24 23:19:03', 0, NULL, '', 468, 1, 0), + (106, 23, NULL, '2025-06-07 19:00:00', NULL, '1738705398', '2025-12-24 23:22:37', '2025-12-24 23:22:42', 0, NULL, '', 7, 1, 1), + (107, 4, NULL, '2025-06-05 19:00:00', NULL, '1864025759', '2025-12-24 23:56:21', '2025-12-24 23:56:31', 0, NULL, '', 4, 1, 0), + (108, 24, NULL, '2025-06-05 19:00:00', NULL, '226562356', '2025-12-24 23:58:23', '2025-12-24 23:58:33', 0, NULL, '', 42, 1, 1), + (109, 5, NULL, '2025-05-27 19:00:00', NULL, '404685034', '2025-12-25 00:02:31', '2025-12-25 00:03:41', 0, NULL, '', 8, 1, 1), + (110, 30, NULL, '2025-05-30 19:00:00', NULL, '1144118121', '2025-12-25 00:12:42', '2025-12-25 00:12:51', 0, NULL, '', 468, 1, 1), + (111, 30, NULL, '2025-05-29 19:00:00', NULL, '2058088991', '2025-12-25 00:14:21', '2025-12-25 00:15:03', 0, NULL, 'Qual Only', 468, 1, 1), + (112, 2, NULL, '2025-05-09 19:00:00', NULL, '1451513168', '2025-12-26 22:09:15', '2025-12-26 22:09:27', 0, NULL, '', 8, 1, 1), + (113, 32, NULL, '2025-05-08 19:00:00', NULL, '1645948892', '2025-12-26 22:15:38', '2025-12-26 22:15:52', 0, NULL, 'David is qualified to teach Sniper School on his own. Be sure to spend more time explaining each section of the Horizontal MRADs formula so trainees have a better understanding of how and why to apply it (Discussed with him how to do this)', 56, 1, 1), + (114, 7, NULL, '2025-05-07 19:00:00', NULL, '1575332186', '2025-12-26 22:18:31', '2025-12-26 22:18:48', 0, NULL, 'Washington is now qualified to teach EOD by himself.', 4, 1, 1), + (115, 1, NULL, '2025-05-06 19:00:00', NULL, '136306139', '2025-12-26 22:24:39', '2025-12-26 22:25:03', 0, NULL, '', 23, 1, 0), + (116, 13, NULL, '2025-05-06 19:00:00', NULL, '1172660361', '2025-12-26 23:21:17', '2025-12-26 23:22:30', 0, NULL, '', 2, 0, 1), + (117, 14, NULL, '2025-05-06 19:00:00', NULL, '1172660361', '2025-12-26 23:22:24', '2025-12-26 23:22:30', 0, NULL, '', 2, 0, 1), + (118, 1, NULL, '2025-05-03 19:00:00', NULL, '1349118148', '2025-12-26 23:23:51', '2025-12-26 23:23:59', 0, NULL, 'Basic Training was run as an Accelerated Basic', 37, 1, 0), + (119, 13, NULL, '2025-05-03 19:00:00', NULL, '18375517', '2025-12-26 23:24:52', '2025-12-26 23:25:34', 0, NULL, '', 37, 0, 1), + (120, 14, NULL, '2025-05-03 19:00:00', NULL, '18375517', '2025-12-26 23:25:24', '2025-12-26 23:25:34', 0, NULL, '', 37, 0, 1), + (121, 12, NULL, '2025-04-23 19:00:00', NULL, '1173106923', '2025-12-26 23:31:08', '2025-12-26 23:31:20', 0, NULL, '', 38, 1, 1), + (122, 19, NULL, '2025-04-22 19:00:00', NULL, '1788577193', '2025-12-28 14:44:09', '2025-12-28 14:44:16', 0, NULL, '', 797, 1, 1), + (123, 42, NULL, '2025-04-22 19:00:00', NULL, '30843258', '2025-12-28 14:49:43', '2025-12-28 14:49:53', 0, NULL, '', 7, 1, 1), + (124, 13, NULL, '2025-04-22 19:00:00', NULL, '1519745882', '2025-12-28 14:51:11', '2025-12-28 14:51:59', 0, NULL, '', 4, 0, 1), + (125, 14, NULL, '2025-04-22 19:00:00', NULL, '1519745882', '2025-12-28 14:51:51', '2025-12-28 14:51:59', 0, NULL, '', 4, 0, 1), + (126, 25, NULL, '2025-04-19 19:00:00', NULL, '820550514', '2025-12-28 14:53:42', '2025-12-28 14:57:00', 0, NULL, '', 797, 1, 1), + (127, 25, NULL, '2025-04-17 19:00:00', NULL, '577323605', '2025-12-28 14:55:48', '2025-12-28 14:56:07', 0, NULL, 'Trainee may retake the qual in 48 hours', 797, 1, 1), + (128, 4, NULL, '2025-04-17 19:00:00', NULL, '1763549497', '2025-12-28 15:11:20', '2025-12-28 15:11:46', 0, NULL, '', 20, 1, 0), + (129, 13, NULL, '2025-04-15 19:00:00', NULL, '561708439', '2025-12-28 15:12:54', '2025-12-28 15:13:57', 0, NULL, '', 2, 0, 1), + (130, 14, NULL, '2025-04-15 19:00:00', NULL, '561708439', '2025-12-28 15:13:49', '2025-12-28 15:13:57', 0, NULL, '', 2, 0, 1), + (131, 32, NULL, '2025-04-09 19:00:00', NULL, '1302207722', '2025-12-28 15:19:32', '2025-12-28 15:19:52', 0, NULL, '', 468, 1, 1), + (132, 30, NULL, '2025-04-09 19:00:00', NULL, '1864252354', '2025-12-28 15:21:29', '2025-12-28 15:21:39', 0, NULL, '', 468, 1, 1), + (133, 2, NULL, '2025-04-10 19:00:00', NULL, '905723410', '2025-12-28 15:24:40', '2025-12-28 15:24:55', 0, NULL, '', 61, 1, 1), + (134, 5, NULL, '2025-04-10 19:00:00', NULL, '1950148377', '2025-12-28 15:27:41', '2025-12-28 15:27:54', 0, NULL, '68W Challenge!', 61, 1, 1), + (135, 17, NULL, '2025-04-12 19:00:00', NULL, '2095385509', '2025-12-28 15:29:04', '2025-12-28 15:29:10', 0, NULL, 'Nick is now qualified to teach Copilot', 797, 1, 1), + (136, 30, NULL, '2025-04-05 19:00:00', NULL, '1510105480', '2025-12-28 15:30:57', '2025-12-28 15:31:05', 0, NULL, 'Qualification', 468, 1, 1), + (137, 13, NULL, '2025-04-05 19:00:00', NULL, '711501759', '2025-12-28 15:34:43', '2025-12-28 15:35:48', 0, NULL, '', 4, 0, 1), + (138, 14, NULL, '2025-04-05 19:00:00', NULL, '711501759', '2025-12-28 15:35:32', '2025-12-28 15:35:48', 0, NULL, '', 4, 0, 1), + (139, 1, NULL, '2025-04-04 19:00:00', NULL, '1167778564', '2025-12-28 15:40:37', '2025-12-28 15:44:45', 0, NULL, '', 64, 1, 0), + (140, 13, NULL, '2025-04-04 19:00:00', NULL, '2026042275', '2025-12-28 16:11:34', '2025-12-28 16:12:45', 0, NULL, '', 64, 0, 1), + (141, 30, NULL, '2024-08-06 19:00:00', NULL, '812501526', '2025-12-28 16:17:04', '2025-12-28 16:17:17', 0, NULL, '', 46, 1, 1), + (144, 8, NULL, '2025-04-03 19:00:00', NULL, '838772135', '2025-12-28 16:38:42', '2025-12-28 16:39:17', 0, NULL, '', 37, 1, 0), + (145, 29, NULL, '2025-04-01 19:00:00', NULL, '238852213', '2025-12-28 16:47:26', '2025-12-28 16:47:35', 0, NULL, '', 468, 1, 1), + (146, 29, NULL, '2025-04-01 19:00:00', NULL, '1694917836', '2025-12-28 16:48:49', '2025-12-28 16:48:56', 0, NULL, '', 468, 1, 1), + (147, 34, NULL, '2025-03-29 19:00:00', NULL, '1003074351', '2025-12-28 16:50:45', '2025-12-28 16:50:52', 0, NULL, '', 11, 1, 0), + (148, 18, NULL, '2025-03-28 19:00:00', NULL, '1227655967', '2025-12-28 17:01:01', '2025-12-28 17:01:10', 0, NULL, '', 64, 1, 0), + (149, 4, NULL, '2025-03-28 19:00:00', NULL, '2119892731', '2025-12-28 17:05:25', '2025-12-28 17:05:38', 0, NULL, '', 797, 1, 0), + (150, 30, NULL, '2025-03-26 19:00:00', NULL, '831762371', '2025-12-28 17:07:19', '2025-12-28 17:07:53', 0, NULL, 'Bookwork Only', 468, 1, 1), + (151, 25, NULL, '2025-03-24 19:00:00', NULL, '1213956398', '2025-12-28 17:09:17', '2025-12-28 17:09:29', 0, NULL, '', 42, 1, 1), + (152, 17, NULL, '2025-03-24 19:00:00', NULL, '1314282100', '2025-12-28 17:10:39', '2025-12-28 17:10:48', 0, NULL, '', 42, 1, 1), + (153, 14, NULL, '2025-03-22 19:00:00', NULL, '1358680322', '2025-12-28 17:20:58', '2025-12-28 17:21:07', 0, NULL, '', 43, 0, 1), + (154, 18, NULL, '2025-03-17 19:00:00', NULL, '1565376019', '2025-12-28 17:25:02', '2025-12-28 17:25:08', 0, NULL, '', 64, 1, 0), + (155, 23, NULL, '2025-03-20 19:00:00', NULL, '122114678', '2025-12-28 17:26:14', '2025-12-28 17:26:27', 0, NULL, '', 7, 1, 1), + (156, 7, NULL, '2025-03-19 19:00:00', NULL, '987337362', '2025-12-28 17:29:22', '2025-12-28 17:29:36', 0, NULL, '', 38, 1, 1), + (157, 3, NULL, '2025-03-19 19:00:00', NULL, '22566487', '2025-12-28 17:34:27', '2025-12-28 17:34:49', 0, NULL, '', 38, 1, 0), + (158, 26, NULL, '2025-03-18 19:00:00', NULL, '1893061123', '2025-12-28 17:36:18', '2025-12-28 17:36:28', 0, NULL, '', 468, 1, 1), + (159, 28, NULL, '2025-03-17 19:00:00', NULL, '679199841', '2025-12-28 17:37:57', '2025-12-28 17:38:12', 0, NULL, '', 468, 1, 1), + (160, 28, NULL, '2025-03-16 19:00:00', NULL, '550146849', '2025-12-28 17:39:23', '2025-12-28 17:39:52', 0, NULL, '', 468, 1, 1), + (161, 1, NULL, '2025-03-13 19:00:00', NULL, '47054674', '2025-12-28 18:35:14', '2025-12-28 18:35:24', 0, NULL, '', 64, 1, 0), + (162, 13, NULL, '2025-03-13 19:00:00', NULL, '675532632', '2025-12-28 18:36:53', '2025-12-28 18:38:29', 0, NULL, '', 64, 0, 1), + (163, 14, NULL, '2025-03-13 19:00:00', NULL, '675532632', '2025-12-28 18:38:19', '2025-12-28 18:38:29', 0, NULL, '', 64, 0, 1), + (164, 38, NULL, '2025-03-10 19:00:00', NULL, '1303919716', '2025-12-28 18:40:22', '2025-12-28 18:40:31', 0, NULL, 'Qualification', 42, 1, 1), + (165, 4, NULL, '2025-03-03 18:00:00', NULL, '1995463350', '2025-12-28 18:43:28', '2025-12-28 18:43:32', 0, NULL, '', 11, 1, 0), + (166, 1, NULL, '2025-03-05 18:00:00', NULL, '802750218', '2025-12-28 18:45:24', '2025-12-28 18:45:38', 0, NULL, '', 64, 1, 0), + (167, 17, NULL, '2025-02-27 18:00:00', NULL, '1444696341', '2025-12-28 18:47:38', '2025-12-28 18:47:44', 0, NULL, '', 42, 1, 1), + (168, 8, NULL, '2025-02-21 18:00:00', NULL, '1161269991', '2025-12-28 18:50:13', '2025-12-28 18:50:20', 0, NULL, 'Hairy can now run heavy weapons under observation', 5, 1, 0), + (169, 6, NULL, '2025-02-20 18:00:00', NULL, '1085818970', '2025-12-28 19:19:01', '2025-12-28 19:19:51', 0, NULL, '', 12, 1, 1), + (170, 20, NULL, '2025-02-19 18:00:00', NULL, '884776923', '2025-12-28 19:21:36', '2025-12-28 19:21:43', 0, NULL, '', 7, 1, 1), + (171, 27, NULL, '2025-02-19 18:00:00', NULL, '340107654', '2025-12-28 19:23:27', '2025-12-28 19:23:34', 0, NULL, '', 468, 1, 0), + (172, 10, NULL, '2025-02-19 18:00:00', NULL, '1834420648', '2025-12-28 19:29:35', '2025-12-28 19:30:10', 0, NULL, 'Challenge', 468, 1, 1), + (173, 13, NULL, '2025-02-12 18:00:00', NULL, '901326630', '2025-12-28 19:32:33', '2025-12-28 19:33:43', 0, NULL, '', 2, 0, 1), + (174, 14, NULL, '2025-02-12 18:00:00', NULL, '901326630', '2025-12-28 19:33:29', '2025-12-28 19:33:43', 0, NULL, '', 2, 0, 1), + (175, 1, NULL, '2025-02-06 18:00:00', NULL, '1166914208', '2025-12-28 19:41:29', '2025-12-28 19:43:13', 0, NULL, 'Clasonnnn\r\nCan now teach basic training SOLO\r\n\r\nForukan\r\nCan now Teach basic under supervision', 23, 1, 0), + (176, 24, NULL, '2025-02-05 18:00:00', NULL, '1896142064', '2025-12-28 19:45:24', '2025-12-28 19:45:31', 0, NULL, '', 468, 1, 1), + (177, 38, NULL, '2025-01-31 18:00:00', NULL, '1839772830', '2025-12-28 19:46:48', '2025-12-28 19:46:57', 0, NULL, '', 15, 1, 1), + (178, 19, NULL, '2025-01-23 18:00:00', NULL, '2064669239', '2025-12-28 20:06:53', '2025-12-28 20:07:08', 0, NULL, '', 42, 1, 1), + (179, 35, NULL, '2025-01-22 18:00:00', NULL, '1322506162', '2025-12-28 20:10:50', '2025-12-28 20:10:57', 0, NULL, '', 11, 1, 0), + (180, 5, NULL, '2025-01-20 18:00:00', NULL, '368805341', '2025-12-28 20:19:11', '2025-12-28 20:20:31', 0, NULL, '@dethofme has completed both requirements to fill the role of a medic during official Ops', 61, 1, 1), + (181, 30, NULL, '2024-12-11 18:00:00', NULL, '1859707109', '2025-12-28 20:33:09', '2025-12-28 20:33:20', 0, NULL, ' Qualification', 468, 1, 1), + (182, 6, NULL, '2024-12-16 18:00:00', NULL, '45768056', '2025-12-28 20:34:29', '2025-12-28 20:34:36', 0, NULL, '', 12, 1, 1), + (183, 19, NULL, '2024-12-16 18:00:00', NULL, '2077095260', '2025-12-28 20:38:42', '2025-12-28 20:38:52', 0, NULL, '', 42, 1, 1), + (184, 23, NULL, '2024-12-13 18:00:00', NULL, '631005412', '2025-12-28 20:40:48', '2025-12-28 20:40:55', 0, NULL, 'Training Challenge.', 43, 1, 1), + (185, 1, NULL, '2024-12-12 18:00:00', NULL, '1628446645', '2025-12-28 21:12:59', '2025-12-28 21:13:13', 0, NULL, '', 2, 1, 0), + (186, 14, NULL, '2024-12-12 18:00:00', NULL, '490381297', '2025-12-28 21:17:42', '2025-12-28 21:19:50', 0, NULL, '', 2, 0, 1), + (187, 13, NULL, '2024-12-12 18:00:00', NULL, '490381297', '2025-12-28 21:19:39', '2025-12-28 21:19:50', 0, NULL, '', 2, 0, 1), + (188, 30, NULL, '2024-11-25 18:00:00', NULL, '1626272693', '2025-12-28 22:54:26', '2025-12-28 22:54:35', 0, NULL, 'Qualification to be held at a later date', 468, 1, 1), + (189, 24, NULL, '2024-11-23 18:00:00', NULL, '946470712', '2025-12-28 23:05:14', '2025-12-28 23:05:25', 0, NULL, '', 42, 1, 1), + (190, 35, NULL, '2024-11-04 18:00:00', NULL, '1942946701', '2025-12-28 23:08:35', '2025-12-28 23:08:49', 0, NULL, '', 67, 1, 0), + (191, 36, NULL, '2024-11-11 18:00:00', NULL, '1108000384', '2025-12-28 23:32:53', '2025-12-28 23:33:14', 0, NULL, '', 67, 1, 0), + (192, 30, NULL, '2024-11-14 18:00:00', NULL, '23040005', '2025-12-28 23:36:15', '2025-12-28 23:36:29', 0, NULL, '', 468, 1, 1), + (193, 19, NULL, '2024-10-23 19:00:00', NULL, '1011716302', '2025-12-28 23:49:59', '2025-12-28 23:50:07', 0, NULL, '', 15, 1, 1), + (194, 4, NULL, '2024-10-21 19:00:00', NULL, '1525099123', '2025-12-28 23:53:49', '2025-12-28 23:53:59', 0, NULL, '', 67, 1, 0), + (195, 19, NULL, '2024-10-09 19:00:00', NULL, '1971175689', '2025-12-28 23:59:59', '2025-12-29 00:00:08', 0, NULL, 'NOTE: Add HUD nomenclature information to training document.', 15, 1, 1), + (196, 1, NULL, '2024-10-04 19:00:00', NULL, '1255131688', '2025-12-29 00:01:52', '2025-12-29 00:01:59', 0, NULL, '', 12, 1, 0), + (197, 42, NULL, '2024-09-19 19:00:00', NULL, '2092418912', '2025-12-29 00:03:01', '2025-12-29 00:03:09', 0, NULL, 'Challenge', 7, 1, 1), + (198, 13, NULL, '2024-09-15 19:00:00', NULL, '719146270', '2025-12-29 22:19:55', '2025-12-29 22:20:41', 0, NULL, '', 22, 0, 1), + (199, 14, NULL, '2024-09-15 19:00:00', NULL, '719146270', '2025-12-29 22:20:25', '2025-12-29 22:20:41', 0, NULL, '', 22, 0, 1), + (200, 1, NULL, '2024-09-15 19:00:00', NULL, '1556691466', '2025-12-29 22:23:58', '2025-12-29 22:24:18', 0, NULL, 'Accelerated Basic', 493, 1, 0), + (201, 7, NULL, '2024-09-09 19:00:00', NULL, '564863024', '2025-12-29 22:29:19', '2025-12-29 22:29:29', 0, NULL, '', 468, 1, 1), + (202, 24, NULL, '2024-09-08 19:00:00', NULL, '1564772045', '2025-12-29 22:31:49', '2025-12-29 22:31:59', 0, NULL, '', 468, 1, 1), + (203, 33, NULL, '2024-09-05 19:00:00', NULL, '2049665406', '2025-12-29 22:33:22', '2025-12-29 22:33:33', 0, NULL, '', 21, 1, 0), + (204, 7, NULL, '2024-08-29 19:00:00', NULL, '553084241', '2025-12-29 22:36:13', '2025-12-29 22:36:21', 0, NULL, '', 468, 1, 1), + (205, 18, NULL, '2024-08-18 19:00:00', NULL, '1194555736', '2025-12-29 22:37:37', '2025-12-29 22:37:45', 0, NULL, '', 7, 1, 0), + (206, 17, NULL, '2024-08-15 19:00:00', NULL, '280157658', '2025-12-29 22:38:51', '2025-12-29 22:39:01', 0, NULL, '', 15, 1, 1), + (207, 21, NULL, '2024-08-15 19:00:00', NULL, '1875931414', '2025-12-29 22:40:05', '2025-12-29 22:40:13', 0, NULL, '', 501, 1, 1), + (208, 7, NULL, '2024-08-12 19:00:00', NULL, '252925751', '2025-12-29 22:42:28', '2025-12-29 22:42:36', 0, NULL, '', 468, 1, 1), + (209, 4, NULL, '2024-08-11 19:00:00', NULL, '1253909214', '2025-12-29 22:45:30', '2025-12-29 22:45:37', 0, NULL, '', 22, 1, 0), + (210, 7, NULL, '2024-08-10 19:00:00', NULL, '801923198', '2025-12-29 23:03:50', '2025-12-29 23:03:58', 0, NULL, '', 468, 1, 1), + (211, 21, NULL, '2024-08-01 19:00:00', NULL, '1919456990', '2025-12-30 14:30:14', '2025-12-30 14:30:25', 0, NULL, 'qualification to follow.', 501, 1, 1), + (212, 21, NULL, '2024-08-08 19:00:00', NULL, '1543574279', '2025-12-30 14:32:22', '2025-12-30 14:32:28', 0, NULL, 'Instructor notes: Objectives are named such that the type of tasking is described that should be used for that objective. IE: Hotel 1 should not use a Golf tasking. The 17th system is different than other mil-sim units; it takes time and practice to be accustomed to it. I encourage those that want to run as JTAC to reach out to those experienced in using it for practice to get used to the way CAS is requested, especially since the call is almost identical to RTO calls for resupply and such. This is by design. The 5 line + remarks system is designed to cut down on the extra information that isn\'t needed in the ARMA environment.', 501, 1, 1), + (213, 7, NULL, '2024-08-06 19:00:00', NULL, '2105682704', '2025-12-30 14:34:47', '2025-12-30 14:35:03', 0, NULL, '', 951, 1, 1), + (214, 2, NULL, '2024-08-02 19:00:00', NULL, '2056882001', '2025-12-30 14:36:48', '2025-12-30 14:37:00', 0, NULL, '', 61, 1, 1), + (215, 30, NULL, '2024-07-31 19:00:00', NULL, '1279926948', '2025-12-30 14:44:16', '2025-12-30 14:44:27', 0, NULL, 'Bookwork', 46, 1, 1), + (216, 6, NULL, '2024-07-29 19:00:00', NULL, '1756990542', '2025-12-30 14:46:26', '2025-12-30 14:46:28', 0, NULL, '', 12, 1, 1), + (217, 35, NULL, '2024-07-22 19:00:00', NULL, '1871477369', '2025-12-30 14:48:39', '2025-12-30 14:48:49', 0, NULL, 'Ghost is qualified to teach RS3', 11, 1, 0), + (218, 36, NULL, '2024-07-24 19:00:00', NULL, '1504847467', '2025-12-30 14:50:04', '2025-12-30 14:50:14', 0, NULL, '', 11, 1, 0), + (219, 5, NULL, '2024-07-24 19:00:00', NULL, '1339307491', '2025-12-30 14:52:25', '2025-12-30 14:52:37', 0, NULL, '', 493, 1, 1), + (220, 34, NULL, '2024-07-20 19:00:00', NULL, '1736447774', '2025-12-30 14:54:40', '2025-12-30 14:54:54', 0, NULL, '', 11, 1, 0), + (221, 20, NULL, '2024-07-15 19:00:00', NULL, '591724169', '2025-12-30 15:50:20', '2025-12-30 15:50:30', 0, NULL, '', 468, 1, 1), + (222, 3, NULL, '2024-07-14 19:00:00', NULL, '212870488', '2025-12-30 16:00:43', '2025-12-30 16:00:59', 0, NULL, '', 951, 1, 0), + (223, 18, NULL, '2024-07-16 19:00:00', NULL, '794348324', '2025-12-30 16:05:49', '2025-12-30 16:07:05', 0, NULL, '', 53, 1, 0), + (224, 13, NULL, '2024-07-13 19:00:00', NULL, '835651412', '2025-12-30 16:08:25', '2025-12-30 16:09:24', 0, NULL, '', 12, 0, 1), + (225, 14, NULL, '2024-07-13 19:00:00', NULL, '835651412', '2025-12-30 16:09:16', '2025-12-30 16:09:24', 0, NULL, '', 12, 0, 1), + (226, 2, NULL, '2024-07-13 19:00:00', NULL, '1068133482', '2025-12-30 16:12:40', '2025-12-30 16:12:50', 0, NULL, '', 12, 1, 1), + (227, 1, NULL, '2024-07-13 19:00:00', NULL, '1581575157', '2025-12-30 16:16:26', '2025-12-30 16:16:37', 0, NULL, '', 12, 1, 0), + (228, 24, NULL, '2024-07-10 19:00:00', NULL, '1993804826', '2025-12-30 16:28:30', '2025-12-30 16:28:43', 0, NULL, '', 501, 1, 1), + (229, 20, NULL, '2024-07-04 19:00:00', NULL, '700352762', '2025-12-30 16:43:20', '2025-12-30 16:43:31', 0, NULL, '', 7, 1, 1), + (230, 34, NULL, '2025-03-17 19:00:00', NULL, '1058336078', '2025-12-30 16:53:11', '2025-12-30 17:14:18', 0, NULL, '', 11, 1, 0), + (231, 6, NULL, '2024-07-04 19:00:00', NULL, '697765127', '2025-12-30 17:05:59', '2025-12-30 17:06:14', 0, NULL, '', 501, 1, 1), + (232, 4, NULL, '2024-06-30 19:00:00', NULL, '842607732', '2025-12-30 17:11:22', '2025-12-30 17:11:34', 0, NULL, '', 11, 1, 0), + (233, 32, NULL, '2024-06-27 19:00:00', NULL, '354302354', '2025-12-30 17:28:35', '2025-12-30 17:28:47', 0, NULL, '', 46, 1, 1), + (234, 1, NULL, '2024-06-27 19:00:00', NULL, '1812849911', '2025-12-30 17:38:22', '2025-12-30 17:38:29', 0, NULL, '', 11, 1, 0), + (235, 13, NULL, '2024-06-27 19:00:00', NULL, '306772997', '2025-12-30 17:42:23', '2025-12-30 17:43:33', 0, NULL, '', 11, 0, 1), + (236, 14, NULL, '2024-06-27 19:00:00', NULL, '306772997', '2025-12-30 17:43:27', '2025-12-30 17:43:33', 0, NULL, '', 11, 0, 1), + (237, 2, NULL, '2024-06-24 19:00:00', NULL, '1025503018', '2025-12-30 17:47:34', '2025-12-30 17:47:43', 0, NULL, '', 13, 1, 1), + (238, 8, NULL, '2024-06-22 19:00:00', NULL, '634735023', '2025-12-30 18:03:25', '2025-12-30 18:03:38', 0, NULL, '', 468, 1, 0), + (239, 6, NULL, '2024-06-23 19:00:00', NULL, '1222430933', '2025-12-30 18:31:31', '2025-12-30 18:31:43', 0, NULL, '', 21, 1, 1), + (240, 11, NULL, '2024-06-23 19:00:00', NULL, '565567154', '2025-12-30 18:41:43', '2025-12-30 18:42:36', 0, NULL, '', 43, 1, 1), + (241, 22, NULL, '2024-06-23 19:00:00', NULL, '565567154', '2025-12-30 18:42:27', '2025-12-30 18:42:36', 0, NULL, '', 43, 1, 1), + (242, 34, NULL, '2024-06-21 19:00:00', NULL, 'NmLXbkLm', '2025-12-30 19:34:27', '2025-12-30 20:03:30', 0, NULL, '', 2221, 1, 0), + (243, 4, NULL, '2024-06-21 19:00:00', NULL, '1776929023', '2025-12-30 20:37:35', '2025-12-30 20:37:46', 0, NULL, '', 2221, 1, 0), + (244, 35, NULL, '2024-06-21 19:00:00', NULL, '67624021', '2025-12-30 20:38:47', '2025-12-30 20:38:55', 0, NULL, '', 2221, 1, 0), + (245, 13, NULL, '2024-06-18 19:00:00', NULL, '1334578768', '2025-12-30 20:39:48', '2025-12-30 20:41:04', 0, NULL, '', 11, 0, 1), + (246, 14, NULL, '2024-06-18 19:00:00', NULL, '1334578768', '2025-12-30 20:40:55', '2025-12-30 20:41:04', 0, NULL, '', 11, 0, 1), + (247, 1, NULL, '2024-06-18 19:00:00', NULL, '1122195902', '2025-12-30 20:42:34', '2025-12-30 20:42:43', 0, NULL, '', 11, 1, 0), + (248, 11, NULL, '2024-06-18 19:00:00', NULL, '1041937101', '2025-12-30 20:43:57', '2025-12-30 20:44:08', 0, NULL, 'CHALLENGE', 43, 1, 1), + (249, 3, NULL, '2024-06-17 19:00:00', NULL, '1369518854', '2025-12-30 20:46:03', '2025-12-30 20:46:14', 0, NULL, '', 38, 1, 0), + (250, 6, NULL, '2024-06-17 19:00:00', NULL, '714336543', '2025-12-30 20:47:21', '2025-12-30 20:47:30', 0, NULL, '', 625, 1, 1), + (251, 4, NULL, '2024-06-15 19:00:00', NULL, '1176631608', '2025-12-30 20:48:56', '2025-12-30 20:49:04', 0, NULL, '', 2221, 1, 0), + (252, 34, NULL, '2024-06-15 19:00:00', NULL, '172548106', '2025-12-30 22:41:36', '2025-12-30 22:41:57', 0, NULL, '', 2221, 1, 0), + (253, 5, NULL, '2024-06-15 19:00:00', NULL, '358029569', '2025-12-30 22:44:16', '2025-12-30 22:44:22', 0, NULL, '', 12, 1, 1), + (254, 2, NULL, '2024-06-15 19:00:00', NULL, '1096372723', '2025-12-30 22:48:52', '2025-12-30 22:51:12', 0, NULL, '', 493, 1, 1), + (255, 36, NULL, '2024-06-14 19:00:00', NULL, '274202304', '2025-12-30 22:52:44', '2025-12-30 22:52:50', 0, NULL, '', 2221, 1, 0), + (256, 35, NULL, '2024-06-14 19:00:00', NULL, '259050189', '2025-12-30 22:55:58', '2025-12-30 22:56:06', 0, NULL, '', 2221, 1, 0), + (257, 13, NULL, '2024-06-12 19:00:00', NULL, '315454381', '2025-12-30 23:09:35', '2025-12-30 23:10:27', 0, NULL, '', 12, 0, 1), + (258, 14, NULL, '2024-06-12 19:00:00', NULL, '315454381', '2025-12-30 23:10:20', '2025-12-30 23:10:27', 0, NULL, '', 12, 0, 1), + (259, 1, NULL, '2024-06-12 19:00:00', NULL, '2007089048', '2025-12-30 23:11:38', '2025-12-30 23:11:52', 0, NULL, '', 11, 1, 0), + (260, 13, NULL, '2024-06-12 19:00:00', NULL, '284011993', '2025-12-30 23:12:54', '2025-12-30 23:13:39', 0, NULL, '', 11, 0, 1), + (261, 14, NULL, '2024-06-12 19:00:00', NULL, '284011993', '2025-12-30 23:13:29', '2025-12-30 23:13:39', 0, NULL, '', 11, 0, 1), + (262, 18, NULL, '2024-06-11 19:00:00', NULL, '937799980', '2025-12-31 01:11:03', '2025-12-31 01:11:16', 0, NULL, '', 7, 1, 0), + (263, 26, NULL, '2024-06-10 19:00:00', NULL, '1790413524', '2025-12-31 01:12:46', '2025-12-31 01:12:54', 0, NULL, '', 468, 1, 1), + (264, 13, NULL, '2024-06-09 19:00:00', NULL, '91711293', '2025-12-31 01:14:34', '2025-12-31 01:15:25', 0, NULL, '', 58, 0, 1), + (265, 14, NULL, '2024-06-09 19:00:00', NULL, '91711293', '2025-12-31 01:15:18', '2025-12-31 01:15:25', 0, NULL, '', 58, 0, 1), + (266, 1, NULL, '2024-06-09 19:00:00', NULL, '346291078', '2025-12-31 01:17:27', '2025-12-31 01:17:40', 0, NULL, 'Accelerated Basic Training', 12, 1, 0), + (267, 24, NULL, '2024-06-05 19:00:00', NULL, '1758869502', '2025-12-31 01:20:11', '2025-12-31 01:20:18', 0, NULL, '', 27, 1, 1), + (268, 25, NULL, '2024-06-05 19:00:00', NULL, '31120416', '2025-12-31 01:21:17', '2025-12-31 01:21:24', 0, NULL, '', 42, 1, 1), + (269, 13, NULL, '2024-06-03 19:00:00', NULL, '2137017760', '2025-12-31 16:57:22', '2025-12-31 16:58:55', 0, NULL, '', 493, 0, 1), + (270, 14, NULL, '2024-06-03 19:00:00', NULL, '2137017760', '2025-12-31 16:58:37', '2025-12-31 16:58:55', 0, NULL, '', 493, 0, 1), + (271, 1, NULL, '2024-06-03 19:00:00', NULL, '1900307726', '2025-12-31 17:00:33', '2025-12-31 17:00:48', 0, NULL, '', 493, 1, 0), + (272, 25, NULL, '2024-06-02 19:00:00', NULL, '1045892785', '2025-12-31 17:01:51', '2025-12-31 17:02:00', 0, NULL, '', 42, 1, 1), + (273, 25, NULL, '2024-06-02 19:00:00', NULL, '388796708', '2025-12-31 17:03:06', '2025-12-31 17:03:12', 0, NULL, '', 42, 1, 1), + (274, 17, NULL, '2024-06-02 19:00:00', NULL, '484281725', '2025-12-31 17:03:51', '2025-12-31 17:04:02', 0, NULL, '', 42, 1, 1), + (275, 18, NULL, '2024-06-02 19:00:00', NULL, '995492994', '2025-12-31 17:05:01', '2025-12-31 17:05:13', 0, NULL, '', 7, 1, 0), + (276, 32, NULL, '2024-05-30 19:00:00', NULL, '1122022253', '2025-12-31 17:39:52', '2025-12-31 17:39:59', 0, NULL, '', 483, 1, 1), + (277, 13, NULL, '2024-05-28 19:00:00', NULL, '303425549', '2025-12-31 17:41:51', '2025-12-31 17:43:30', 0, NULL, '', 11, 0, 1), + (278, 14, NULL, '2024-05-28 19:00:00', NULL, '303425549', '2025-12-31 17:43:23', '2025-12-31 17:43:30', 0, NULL, '', 11, 0, 1), + (279, 1, NULL, '2024-05-28 19:00:00', NULL, '303425549', '2025-12-31 17:44:53', '2025-12-31 17:44:56', 0, NULL, 'Accelerated Basic', 11, 1, 0), + (280, 13, NULL, '2024-05-27 19:00:00', NULL, '277011548', '2025-12-31 17:46:21', '2025-12-31 17:47:49', 0, NULL, '', 11, 0, 1), + (281, 14, NULL, '2024-05-27 19:00:00', NULL, '277011548', '2025-12-31 17:47:43', '2025-12-31 17:47:49', 0, NULL, '', 11, 0, 1), + (282, 5, NULL, '2024-05-27 19:00:00', NULL, '621221938', '2025-12-31 17:49:15', '2025-12-31 17:49:24', 0, NULL, '', 493, 1, 1), + (283, 35, NULL, '2024-05-25 19:00:00', NULL, '78692294', '2025-12-31 17:50:20', '2025-12-31 17:50:33', 0, NULL, '', 2221, 1, 0), + (284, 36, NULL, '2024-05-25 19:00:00', NULL, '862607401', '2025-12-31 17:51:22', '2025-12-31 17:51:27', 0, NULL, '', 2221, 1, 0), + (285, 13, NULL, '2024-05-15 19:00:00', NULL, '1143065559', '2025-12-31 17:52:38', '2025-12-31 17:53:37', 0, NULL, '', 11, 0, 1), + (286, 14, NULL, '2024-05-15 19:00:00', NULL, '1143065559', '2025-12-31 17:53:30', '2025-12-31 17:53:37', 0, NULL, '', 11, 0, 1), + (287, 21, NULL, '2024-05-22 19:00:00', NULL, '1371139633', '2025-12-31 18:01:32', '2025-12-31 18:01:49', 0, NULL, 'Challenge', 501, 1, 1), + (288, 2, NULL, '2024-05-22 19:00:00', NULL, '1703259056', '2025-12-31 18:04:22', '2025-12-31 18:04:34', 0, NULL, '', 61, 1, 1), + (289, 44, NULL, '2024-05-19 19:00:00', NULL, '376580342', '2025-12-31 18:09:55', '2025-12-31 18:12:44', 0, NULL, 'Shared with the trainees the joy of flying the best asset in the game. Covered all the contents on the Tiltrotor doc as well as ran through several tasks.\nInformational training, no admin necessary', 42, 1, 1), + (290, 43, NULL, '2024-05-19 19:00:00', NULL, '376580342', '2025-12-31 18:10:49', '2025-12-31 18:12:44', 0, NULL, 'Shared with the trainees the joy of flying the best asset in the game. Covered all the contents on the Tiltrotor doc as well as ran through several tasks.\nInformational training, no admin necessary', 42, 1, 1), + (291, 4, NULL, '2024-05-18 19:00:00', NULL, '106725640', '2025-12-31 18:43:43', '2025-12-31 18:43:50', 0, NULL, '', 2221, 1, 0), + (292, 34, NULL, '2024-05-18 19:00:00', NULL, '720172968', '2025-12-31 18:45:50', '2025-12-31 18:45:57', 0, NULL, '', 2221, 1, 0), + (293, 17, NULL, '2024-05-16 19:00:00', NULL, '441839973', '2025-12-31 18:47:26', '2025-12-31 18:47:36', 0, NULL, '', 42, 1, 1), + (294, 1, NULL, '2024-05-15 19:00:00', NULL, '891404935', '2025-12-31 19:26:36', '2025-12-31 19:26:50', 0, NULL, '', 11, 1, 0), + (295, 7, NULL, '2024-05-13 19:00:00', NULL, '2079115383', '2025-12-31 19:32:54', '2025-12-31 19:33:01', 0, NULL, '', 38, 1, 1), + (296, 1, NULL, '2024-05-11 19:00:00', NULL, '831452', '2025-12-31 19:50:01', '2025-12-31 19:50:14', 0, NULL, '', 493, 1, 0), + (297, 13, NULL, '2024-05-14 19:00:00', NULL, '1902662939', '2025-12-31 19:51:05', '2025-12-31 19:51:41', 0, NULL, '', 493, 0, 1), + (298, 14, NULL, '2024-05-14 19:00:00', NULL, '1902662939', '2025-12-31 19:51:35', '2025-12-31 19:51:41', 0, NULL, '', 493, 0, 1), + (299, 36, NULL, '2024-05-09 19:00:00', NULL, '592228550', '2025-12-31 19:53:00', '2025-12-31 19:53:09', 0, NULL, '', 11, 1, 0), + (300, 35, NULL, '2024-05-08 19:00:00', NULL, '503329135', '2025-12-31 19:56:19', '2025-12-31 19:57:27', 0, NULL, '', 483, 1, 0), + (301, 34, NULL, '2024-05-07 19:00:00', NULL, '558838230', '2025-12-31 20:01:02', '2025-12-31 20:01:09', 0, NULL, '', 483, 1, 0), + (302, 5, NULL, '2024-05-02 19:00:00', NULL, '785513398', '2025-12-31 20:07:01', '2025-12-31 20:07:09', 0, NULL, '', 13, 1, 1), + (303, 4, NULL, '2024-05-06 19:00:00', NULL, '1996778619', '2025-12-31 20:15:38', '2025-12-31 20:15:57', 0, NULL, '', 483, 1, 0), + (304, 21, NULL, '2024-05-04 19:00:00', NULL, '505886867', '2025-12-31 20:18:02', '2025-12-31 20:18:08', 0, NULL, 'Qualification to occur at a later date.', 468, 1, 1), + (305, 21, NULL, '2024-04-30 19:00:00', NULL, '1371243144', '2025-12-31 20:21:09', '2025-12-31 20:22:34', 0, NULL, '', 45, 1, 1), + (306, 6, NULL, '2024-04-25 19:00:00', NULL, '1537767764', '2025-12-31 20:55:44', '2025-12-31 20:56:00', 0, NULL, '', 501, 1, 1), + (307, 10, NULL, '2024-04-27 19:00:00', NULL, '1786388370', '2025-12-31 20:58:29', '2025-12-31 20:58:36', 0, NULL, '', 468, 1, 1), + (308, 36, NULL, '2024-04-17 19:00:00', NULL, '1032422736', '2025-12-31 21:01:51', '2025-12-31 21:02:05', 0, NULL, '', 11, 1, 0), + (309, 13, NULL, '2024-04-16 19:00:00', NULL, '1500020087', '2025-12-31 21:03:38', '2025-12-31 21:04:46', 0, NULL, '', 11, 0, 1), + (310, 14, NULL, '2024-04-16 19:00:00', NULL, '1500020087', '2025-12-31 21:04:39', '2025-12-31 21:04:46', 0, NULL, '', 11, 0, 1), + (311, 1, NULL, '2024-04-16 19:00:00', NULL, '1689462814', '2025-12-31 21:06:14', '2025-12-31 21:06:26', 0, NULL, '', 11, 1, 0), + (312, 44, NULL, '2024-04-08 19:00:00', NULL, '1094688812', '2025-12-31 21:08:43', '2025-12-31 21:11:25', 0, NULL, 'Covered all the contents on the Tiltrotor Training doc as well as simulated some of the tasks for the trainees.\nInformational training, no admin necessary.', 42, 1, 1), + (313, 43, NULL, '2024-04-08 19:00:00', NULL, '1094688812', '2025-12-31 21:11:22', '2025-12-31 21:11:25', 0, NULL, '', 42, 1, 1), + (314, 13, NULL, '2024-04-07 19:00:00', NULL, '1567861986', '2025-12-31 21:16:43', '2025-12-31 21:22:19', 0, NULL, '', 11, 0, 1), + (315, 14, NULL, '2024-04-07 19:00:00', NULL, '1567861986', '2025-12-31 21:17:48', '2025-12-31 21:22:19', 0, NULL, '', 11, 0, 1), + (317, 1, NULL, '2024-04-07 19:00:00', NULL, '1698840657', '2025-12-31 21:23:45', '2025-12-31 21:23:55', 0, NULL, '', 11, 1, 0), + (318, 35, NULL, '2024-04-04 19:00:00', NULL, '1385665768', '2025-12-31 21:31:27', '2025-12-31 21:34:26', 0, NULL, '', 2221, 1, 0), + (319, 4, NULL, '2024-04-04 19:00:00', NULL, '1265545055', '2025-12-31 21:36:27', '2025-12-31 21:38:02', 0, NULL, '', 2221, 1, 0), + (320, 34, NULL, '2024-04-04 19:00:00', NULL, '1265545055', '2025-12-31 21:37:35', '2025-12-31 21:38:02', 0, NULL, '', 2221, 1, 0), + (321, 35, NULL, '2024-04-03 19:00:00', NULL, '775713670', '2025-12-31 21:40:48', '2025-12-31 21:45:21', 0, NULL, '', 886, 1, 0), + (322, 36, NULL, '2024-04-02 19:00:00', NULL, '1376577963', '2025-12-31 21:51:17', '2025-12-31 21:51:55', 0, NULL, '', 886, 1, 0), + (324, 4, NULL, '2024-04-02 19:00:00', NULL, '711896097', '2025-12-31 22:12:19', '2025-12-31 22:12:58', 0, NULL, 'Challenge', 483, 1, 0), + (325, 35, NULL, '2024-04-02 19:00:00', NULL, '711896097', '2025-12-31 22:12:50', '2025-12-31 22:12:58', 0, NULL, 'Challenge', 483, 1, 0), + (326, 6, NULL, '2024-03-31 19:00:00', NULL, '1926719387', '2025-12-31 22:36:37', '2025-12-31 22:36:43', 0, NULL, '', 625, 1, 1), + (327, 38, NULL, '2024-03-28 19:00:00', NULL, '1674649387', '2025-12-31 22:37:45', '2025-12-31 22:37:55', 0, NULL, '', 27, 1, 1), + (328, 20, NULL, '2024-03-27 19:00:00', NULL, '1126114507', '2025-12-31 22:40:18', '2025-12-31 22:40:28', 0, NULL, '', 468, 1, 1), + (329, 28, NULL, '2024-03-26 19:00:00', NULL, '1279357929', '2025-12-31 22:42:10', '2025-12-31 22:43:49', 0, NULL, '', 501, 1, 1), + (330, 27, NULL, '2024-03-24 19:00:00', NULL, '2001361735', '2025-12-31 22:45:42', '2025-12-31 22:45:50', 0, NULL, '', 468, 1, 0), + (331, 13, NULL, '2024-03-18 19:00:00', NULL, '1414056180', '2025-12-31 22:55:47', '2025-12-31 22:57:50', 0, NULL, '', 886, 0, 1), + (332, 14, NULL, '2024-03-18 19:00:00', NULL, '1414056180', '2025-12-31 22:57:19', '2025-12-31 22:57:50', 0, NULL, '', 886, 0, 1), + (333, 1, NULL, '2024-03-18 19:00:00', NULL, '1203012643', '2025-12-31 23:01:54', '2025-12-31 23:03:08', 0, NULL, '', 886, 1, 0), + (334, 36, NULL, '2024-03-17 19:00:00', NULL, '1101385016', '2025-12-31 23:05:21', '2025-12-31 23:05:28', 0, NULL, '', 886, 1, 0), + (335, 25, NULL, '2024-03-10 19:00:00', NULL, '555164053', '2025-12-31 23:06:59', '2025-12-31 23:07:07', 0, NULL, '', 42, 1, 1), + (336, 20, NULL, '2024-03-06 18:00:00', NULL, '1600040217', '2025-12-31 23:29:37', '2025-12-31 23:29:46', 0, NULL, '', 516, 1, 1), + (337, 2, NULL, '2024-03-04 18:00:00', NULL, '584415746', '2026-01-01 00:31:58', '2026-01-01 00:32:09', 0, NULL, '', 13, 1, 1), + (338, 12, NULL, '2024-03-03 18:00:00', NULL, '1024628001', '2026-01-01 00:33:47', '2026-01-01 00:33:57', 0, NULL, '', 38, 1, 1), + (339, 8, NULL, '2024-02-29 18:00:00', NULL, '1224889057', '2026-01-01 00:38:21', '2026-01-01 00:38:42', 0, NULL, '', 468, 1, 0), + (340, 18, NULL, '2024-02-28 18:00:00', NULL, '1700447408', '2026-01-01 00:55:33', '2026-01-01 00:55:46', 0, NULL, '', 79, 1, 0), + (341, 24, NULL, '2024-02-26 18:00:00', NULL, '93916918', '2026-01-01 01:00:33', '2026-01-01 01:00:43', 0, NULL, '', 42, 1, 1), + (342, 35, NULL, '2024-02-27 18:00:00', NULL, '698083064', '2026-01-01 01:06:25', '2026-01-01 01:06:35', 0, NULL, '', 886, 1, 0), + (343, 34, NULL, '2024-02-26 18:00:00', NULL, '34860460', '2026-01-01 01:13:23', '2026-01-01 01:13:36', 0, NULL, '', 644, 1, 0), + (344, 4, NULL, '2024-02-21 18:00:00', NULL, '273122391', '2026-01-01 01:22:13', '2026-01-01 01:22:26', 0, NULL, '', 483, 1, 0), + (345, 11, NULL, '2024-02-19 18:00:00', NULL, '950454242', '2026-01-01 01:27:31', '2026-01-01 01:27:38', 0, NULL, '', 43, 1, 1), + (346, 1, NULL, '2024-02-07 18:00:00', NULL, '1558910996', '2026-01-01 01:35:30', '2026-01-01 01:35:45', 0, NULL, '', 38, 1, 0), + (347, 13, NULL, '2024-02-07 18:00:00', NULL, '1449525100', '2026-01-01 01:36:39', '2026-01-01 01:37:12', 0, NULL, '', 38, 0, 1), + (348, 14, NULL, '2024-02-07 18:00:00', NULL, '1449525100', '2026-01-01 01:37:06', '2026-01-01 01:37:12', 0, NULL, '', 38, 0, 1), + (349, 17, NULL, '2024-01-20 18:00:00', NULL, '910548644', '2026-01-01 01:41:36', '2026-01-01 01:41:44', 0, NULL, '', 501, 1, 1), + (350, 42, NULL, '2024-01-14 18:00:00', NULL, '1615449079', '2026-01-01 01:48:42', '2026-01-01 01:48:50', 0, NULL, '', 7, 1, 1), + (351, 3, NULL, '2024-01-08 18:00:00', NULL, '1370940375', '2026-01-01 01:51:28', '2026-01-01 01:51:35', 0, NULL, '', 951, 1, 0), + (352, 20, NULL, '2024-01-04 18:00:00', NULL, '1822366223', '2026-01-01 01:52:43', '2026-01-01 01:52:46', 0, NULL, '', 15, 1, 1), + (353, 25, NULL, '2024-01-04 18:00:00', NULL, '1528313881', '2026-01-01 01:54:16', '2026-01-01 01:54:26', 0, NULL, '', 15, 1, 1), + (354, 1, NULL, '2023-11-13 18:00:00', NULL, '1792800834', '2026-01-01 02:03:44', '2026-01-01 02:03:59', 0, NULL, '', 2223, 1, 0), + (355, 1, NULL, '2023-09-07 19:00:00', NULL, '969935269', '2026-01-01 02:04:58', '2026-01-01 02:05:06', 0, NULL, '', 38, 1, 0), + (356, 1, NULL, '2023-07-20 19:00:00', NULL, '1836438279', '2026-01-01 02:07:40', '2026-01-01 02:08:10', 0, NULL, '', 840, 1, 0), + (357, 1, NULL, '2023-07-19 19:00:00', NULL, '1092590515', '2026-01-01 02:09:40', '2026-01-01 02:09:48', 0, NULL, '', 644, 1, 0), + (358, 1, NULL, '2023-03-09 18:00:00', NULL, '727733223', '2026-01-01 02:10:41', '2026-01-01 02:10:50', 0, NULL, '', 38, 1, 0), + (359, 1, NULL, '2022-07-15 19:00:00', NULL, '186812455', '2026-01-01 02:15:08', '2026-01-01 02:15:15', 0, NULL, '', 67, 1, 0), + (360, 1, NULL, '2022-06-14 19:00:00', NULL, '133144021', '2026-01-01 16:09:30', '2026-01-01 16:09:59', 0, NULL, '', 6, 1, 0), + (361, 1, NULL, '2025-02-12 18:00:00', NULL, '1450586245', '2026-01-01 16:15:50', '2026-01-01 16:16:09', 0, NULL, '', 64, 1, 0), + (362, 1, NULL, '2022-03-08 18:00:00', NULL, '2123563031', '2026-01-01 16:17:39', '2026-01-01 16:17:58', 0, NULL, '', 38, 1, 0), + (363, 1, NULL, '2022-01-10 18:00:00', NULL, '2043259843', '2026-01-01 16:19:01', '2026-01-01 16:19:16', 0, NULL, '', 38, 1, 0), + (364, 1, NULL, '2022-11-16 18:00:00', NULL, '829987622', '2026-01-01 16:37:07', '2026-01-01 16:37:39', 0, NULL, '', 886, 1, 0), + (365, 13, NULL, '2022-11-16 18:00:00', NULL, '2122701456', '2026-01-01 16:39:16', '2026-01-01 16:39:25', 0, NULL, '', 886, 0, 1), + (366, 5, NULL, '2022-12-19 18:00:00', NULL, '1173271969', '2026-01-01 16:43:08', '2026-01-01 16:43:19', 0, NULL, '', 2223, 1, 1), + (367, 35, NULL, '2023-11-13 18:00:00', NULL, '1580692042', '2026-01-01 18:34:16', '2026-01-01 18:34:30', 0, NULL, '', 67, 1, 0), + (368, 34, NULL, '2023-10-09 19:00:00', NULL, '1482207442', '2026-01-01 18:37:09', '2026-01-01 18:37:36', 0, NULL, '', 67, 1, 0), + (369, 4, NULL, '2023-09-25 19:00:00', NULL, '1191244315', '2026-01-01 18:39:27', '2026-01-01 18:39:34', 0, NULL, '', 67, 1, 0), + (370, 1, NULL, '2025-05-01 19:00:00', NULL, '1203192331', '2026-01-01 18:49:02', '2026-01-01 18:49:16', 0, NULL, '', 2, 1, 0), + (371, 1, NULL, '2025-04-21 19:00:00', NULL, '631278506', '2026-01-01 18:51:48', '2026-01-01 18:52:01', 0, NULL, '', 26, 1, 0), + (372, 1, NULL, '2025-04-15 19:00:00', NULL, '966478773', '2026-01-01 18:56:04', '2026-01-01 18:59:36', 0, NULL, '', 37, 1, 0), + (373, 1, NULL, '2023-10-20 19:00:00', NULL, '38639577', '2026-01-01 18:58:14', '2026-01-01 18:58:23', 0, NULL, '', 840, 1, 0), + (374, 1, NULL, '2023-07-12 19:00:00', NULL, '1444693549', '2026-01-01 19:01:24', '2026-01-01 19:01:35', 0, NULL, '', 73, 1, 0), + (375, 25, NULL, '2023-07-16 19:00:00', NULL, '1005892028', '2026-01-01 19:57:38', '2026-01-01 19:58:02', 0, NULL, '', 27, 1, 1), + (376, 25, NULL, '2023-07-27 19:00:00', NULL, '1106612095', '2026-01-01 20:00:24', '2026-01-01 20:00:29', 0, NULL, '', 27, 1, 1), + (377, 24, NULL, '2024-11-20 18:00:00', NULL, '2027201691', '2026-01-01 20:01:53', '2026-01-01 20:01:59', 0, NULL, '', 42, 1, 1), + (378, 24, NULL, '2024-11-20 18:00:00', NULL, '2005565839', '2026-01-01 20:02:53', '2026-01-01 20:03:01', 0, NULL, '', 42, 1, 1), + (379, 1, NULL, '2023-03-13 19:00:00', NULL, '1894122442', '2026-01-01 20:14:12', '2026-01-01 20:14:19', 0, NULL, '', 951, 1, 0), + (380, 1, NULL, '2022-12-06 18:00:00', NULL, '1557822653', '2026-01-01 20:22:50', '2026-01-01 20:22:59', 0, NULL, '', 840, 1, 0), + (381, 1, NULL, '2022-11-11 18:00:00', NULL, '1626969519', '2026-01-01 20:24:28', '2026-01-01 20:24:35', 0, NULL, '', 840, 1, 0), + (382, 1, NULL, '2022-11-01 19:00:00', NULL, '2047581245', '2026-01-01 20:25:22', '2026-01-01 20:25:30', 0, NULL, '', 840, 1, 0), + (383, 1, NULL, '2022-10-19 19:00:00', NULL, '528152776', '2026-01-01 20:33:00', '2026-01-01 20:33:02', 0, NULL, '', 918, 1, 0), + (384, 1, NULL, '2022-08-03 19:00:00', NULL, '1216806586', '2026-01-01 20:55:06', '2026-01-01 20:55:16', 0, NULL, '', 39, 1, 0), + (385, 1, NULL, '2022-07-24 19:00:00', NULL, '1699435887', '2026-01-01 20:57:17', '2026-01-01 20:57:23', 0, NULL, '', 21, 1, 0), + (386, 1, NULL, '2022-05-21 19:00:00', NULL, '140613720', '2026-01-01 21:02:54', '2026-01-01 21:03:02', 0, NULL, '', 951, 1, 0), + (387, 1, NULL, '2022-05-15 19:00:00', NULL, 'kdKMreZA', '2026-01-01 21:06:49', '2026-01-01 21:06:57', 0, NULL, '', 951, 1, 0), + (388, 1, NULL, '2022-04-23 19:00:00', NULL, '939429004', '2026-01-01 21:08:44', '2026-01-01 21:08:56', 0, NULL, '', 81, 1, 0), + (389, 1, NULL, '2022-04-10 19:00:00', NULL, '759503861', '2026-01-01 21:12:03', '2026-01-01 21:12:10', 0, NULL, '', 21, 1, 0), + (390, 1, NULL, '2022-03-28 19:00:00', NULL, '621654515', '2026-01-01 21:14:19', '2026-01-01 21:14:43', 0, NULL, '', 81, 1, 0), + (391, 1, NULL, '2021-02-11 18:00:00', NULL, '1453673180', '2026-01-01 21:25:51', '2026-01-01 21:26:33', 0, NULL, '', 81, 1, 0), + (392, 1, NULL, '2021-09-22 19:00:00', NULL, '1139242776', '2026-01-01 21:37:39', '2026-01-01 21:37:46', 0, NULL, '', 1104, 1, 0), + (393, 13, NULL, '2020-06-21 19:00:00', NULL, '1121820592', '2026-01-01 22:44:02', '2026-01-01 22:45:22', 0, NULL, '', 468, 0, 1), + (394, 14, NULL, '2020-06-21 19:00:00', NULL, '1121820592', '2026-01-01 22:45:10', '2026-01-01 22:45:22', 0, NULL, '', 468, 0, 1), + (395, 34, NULL, '2020-08-25 19:00:00', NULL, '46052761', '2026-01-01 22:51:21', '2026-01-01 22:51:33', 0, NULL, '', 2221, 1, 0), + (396, 3, NULL, '2024-10-13 19:00:00', NULL, '463073116', '2026-01-02 18:31:47', '2026-01-02 18:32:00', 0, NULL, '', 38, 1, 0), + (397, 13, NULL, '2023-11-13 18:00:00', NULL, '1144587814', '2026-01-02 19:54:22', '2026-01-02 20:13:03', 0, NULL, '', 38, 0, 1), + (398, 14, NULL, '2023-11-13 18:00:00', NULL, '1144587814', '2026-01-02 20:12:47', '2026-01-02 20:13:03', 0, NULL, '', 38, 0, 1), + (399, 12, NULL, '2023-11-12 18:00:00', NULL, '1070663334', '2026-01-02 20:14:48', '2026-01-02 20:14:55', 0, NULL, 'All did well, 8 Digit Grids are Perfect. Practice with the Map tools and Compass to get more accurate Triangulation will make them exceptional!', 38, 1, 1), + (400, 10, NULL, '2020-09-07 19:00:00', NULL, '411840523', '2026-01-02 20:17:10', '2026-01-02 20:17:24', 0, NULL, '', 1104, 1, 1), + (401, 6, NULL, '2020-11-19 18:00:00', NULL, '1864053274', '2026-01-02 20:23:20', '2026-01-02 20:23:35', 0, NULL, 'RTO Bookwork was completed and Practical is needed for qualification of the Badge', 38, 1, 1), + (402, 18, NULL, '2023-10-04 19:00:00', NULL, '385906640', '2026-01-02 20:40:49', '2026-01-02 20:41:12', 0, NULL, '', 79, 1, 0), + (403, 13, NULL, '2023-09-07 19:00:00', NULL, '1670175350', '2026-01-02 20:45:04', '2026-01-02 20:45:34', 0, NULL, '', 38, 0, 1), + (404, 14, NULL, '2023-09-07 19:00:00', NULL, '1670175350', '2026-01-02 20:45:26', '2026-01-02 20:45:34', 0, NULL, '', 38, 0, 1), + (405, 7, NULL, '2023-08-28 19:00:00', NULL, '367777958', '2026-01-02 20:48:52', '2026-01-02 20:58:30', 0, NULL, '', 951, 1, 1), + (406, 12, NULL, '2023-08-20 19:00:00', NULL, '695958055', '2026-01-02 20:57:29', '2026-01-02 20:57:31', 0, NULL, '', 38, 1, 1), + (407, 3, NULL, '2023-04-26 19:00:00', NULL, '680629463', '2026-01-02 21:02:17', '2026-01-02 21:02:24', 0, NULL, '', 951, 1, 0), + (408, 7, NULL, '2023-02-25 18:00:00', NULL, '387019417', '2026-01-02 21:57:33', '2026-01-02 21:57:49', 0, NULL, '', 53, 1, 1), + (409, 3, NULL, '2023-02-25 18:00:00', NULL, '2038369794', '2026-01-02 21:59:39', '2026-01-02 21:59:46', 0, NULL, '', 53, 1, 0), + (410, 6, NULL, '2022-09-10 19:00:00', NULL, '865420690', '2026-01-02 22:00:57', '2026-01-02 22:00:59', 0, NULL, '', 38, 1, 1), + (411, 12, NULL, '2022-09-21 19:00:00', NULL, '2023655280', '2026-01-02 22:04:12', '2026-01-02 22:04:24', 0, NULL, '', 38, 1, 1), + (412, 1, NULL, '2025-06-13 19:00:00', NULL, '1994316641', '2026-01-02 23:53:16', '2026-01-02 23:54:46', 0, NULL, '', 11, 1, 0), + (413, 1, NULL, '2024-05-04 19:00:00', NULL, '1529551789', '2026-01-03 00:02:58', '2026-01-03 00:03:00', 0, NULL, '', 11, 1, 0), + (414, 1, NULL, '2023-09-15 19:00:00', NULL, '996049181', '2026-01-03 00:06:36', '2026-01-03 00:06:42', 0, NULL, '', 918, 1, 0), + (415, 1, NULL, '2023-07-28 19:00:00', NULL, '2070839233', '2026-01-03 00:08:01', '2026-01-03 00:08:12', 0, NULL, 'Notes: Ghost has run with the unit for several weeks now and was very familiar already with our system of things. Covered all material necessary on Training Server as part of regular Basic Training, and did quick knowledge check tests on the following:\n- Map Reading (6 digits and 8 digits)\n- ACE Checks\n- First Aid\n- Asset familiarization\nNeeds the following checkmarks:\n-\nJump Wings\n-\nMass Cas', 67, 1, 0), + (416, 1, NULL, '2022-11-10 18:00:00', NULL, '1270039669', '2026-01-03 00:10:56', '2026-01-03 00:11:00', 0, NULL, '', 795, 1, 0), + (417, 9, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:02:08', '2026-01-17 10:02:08', 0, NULL, '', 28, 1, 1), + (418, 2, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:03:18', '2026-01-17 10:03:18', 0, NULL, '', 28, 1, 1), + (419, 2, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:03:18', '2026-01-17 10:03:18', 0, NULL, '', 28, 1, 1), + (420, 2, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:03:18', '2026-01-17 10:03:18', 0, NULL, '', 28, 1, 1), + (421, 1, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:06:28', '2026-01-17 10:06:28', 0, NULL, '', 28, 1, 0), + (422, 1, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:06:28', '2026-01-17 10:06:28', 0, NULL, '', 28, 1, 0), + (423, 1, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:06:28', '2026-01-17 10:06:28', 0, NULL, '', 28, 1, 0), + (424, 27, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:07:19', '2026-01-17 10:07:19', 0, NULL, '', 28, 1, 0), + (425, 27, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:07:19', '2026-01-17 10:07:19', 0, NULL, '', 28, 1, 0), + (426, 27, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:07:20', '2026-01-17 10:07:20', 0, NULL, '', 28, 1, 0), + (427, 17, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:09:00', '2026-01-17 10:09:00', 0, NULL, '', 28, 1, 1), + (428, 39, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:10:18', '2026-01-17 10:10:18', 0, NULL, '', 28, 1, 0), + (429, 9, NULL, '2026-01-16 19:00:00', NULL, NULL, '2026-01-17 10:11:58', '2026-01-17 10:11:58', 0, NULL, '', 28, 1, 1); -- Dumping data for table milsim_website_development.course_qualified_trainers: ~0 rows (approximately) --- Dumping data for table milsim_website_development.courses: ~39 rows (approximately) +-- Dumping data for table milsim_website_development.course_requests: ~0 rows (approximately) + +-- Dumping data for table milsim_website_development.courses: ~44 rows (approximately) INSERT INTO `courses` (`id`, `name`, `short_name`, `category`, `description`, `image_url`, `created_at`, `updated_at`, `deleted`, `prereq_id`, `hasBookwork`, `hasQual`) VALUES - (1, 'Basic Training', 'BCT', 'Required', 'This is Basic Training', NULL, '2023-04-25 00:18:00', '2025-11-24 12:39:20', 0, NULL, 1, 0); + (1, 'Basic Training (BCT)', 'BCT', 'Required', 'This is Basic Training', NULL, '2023-04-25 00:18:00', '2025-12-31 17:57:33', 0, NULL, 1, 0); INSERT INTO `courses` (`id`, `name`, `short_name`, `category`, `description`, `image_url`, `created_at`, `updated_at`, `deleted`, `prereq_id`, `hasBookwork`, `hasQual`) VALUES - (2, 'Combat Life Saver', 'CLS', 'Infantry', 'Provides core information needed to be a Combat Life Saver and assist Combat Medics in providing medical care', NULL, '2023-05-01 05:06:06', '2023-05-01 05:06:06', 0, NULL, 0, 0), - (3, 'Demolitions', 'DEMO', 'Infantry', 'Introduces basic demolition and explosives handling and detection skills.', NULL, '2023-05-02 20:28:52', '2025-12-17 21:20:06', 0, NULL, 1, 0), - (4, 'Advanced Infantry Training 1', 'AIT-1', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-02 20:29:29', '2025-11-20 12:11:28', 0, NULL, 1, 0), - (5, 'Combat Medic', '68W', 'Infantry', 'Delves into the intricacies of being a Combat Medic and teaches the procedures and technical knowledge needed to save, stabilize, and revive injured members', NULL, '2023-05-02 20:29:51', '2025-11-20 12:11:20', 0, NULL, 1, 1), - (6, 'Communications / RTO', 'RTO', 'Infantry', 'Trains the ability to manage multiple radios and requests, such as logistics, transportation, mortars, and CAS', NULL, '2023-05-02 20:30:22', '2025-11-24 12:39:11', 0, NULL, 1, 1), - (7, 'Explosive Ordinance Disposal ', 'EOD', 'Infantry', 'Advances knowledge of demolition, explosives handling or disposal, and IED/minefield clearance', NULL, '2023-05-02 20:30:44', '2025-11-24 12:39:13', 0, NULL, 1, 1), + (2, 'Combat Life Saver (CLS)', 'CLS', 'Infantry', 'Provides core information needed to be a Combat Life Saver and assist Combat Medics in providing medical care', NULL, '2023-05-01 05:06:06', '2025-12-31 17:57:38', 0, NULL, 1, 1), + (3, 'Demolitions (DEMO)', 'DEMO', 'Infantry', 'Introduces basic demolition and explosives handling and detection skills.', NULL, '2023-05-02 20:28:52', '2025-12-31 17:57:47', 0, NULL, 1, 0), + (4, 'Ranger School 1', 'RNGSCH-1', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-02 20:29:29', '2025-12-19 23:08:54', 0, NULL, 1, 0), + (5, 'Combat Medic (68W)', '68W', 'Infantry', 'Delves into the intricacies of being a Combat Medic and teaches the procedures and technical knowledge needed to save, stabilize, and revive injured members', NULL, '2023-05-02 20:29:51', '2025-12-31 20:06:24', 0, NULL, 1, 1), + (6, 'Communications / Radio Transmission Operator (RTO)', 'RTO', 'Infantry', 'Trains the ability to manage multiple radios and requests, such as logistics, transportation, mortars, and CAS', NULL, '2023-05-02 20:30:22', '2025-12-31 17:58:10', 0, NULL, 1, 1), + (7, 'Explosive Ordinance Disposal (EOD)', 'EOD', 'Infantry', 'Advances knowledge of demolition, explosives handling or disposal, and IED/minefield clearance', NULL, '2023-05-02 20:30:44', '2025-12-31 17:58:15', 0, NULL, 1, 1), (8, 'Heavy Weapons', 'HVYWP', 'Infantry', 'Provides advanced knowledge and familiarization on infantry-based Anti-Tank launchers and Crew-Served Weapons.', NULL, '2023-05-02 20:31:09', '2025-11-24 12:39:15', 0, NULL, 1, 0), (9, 'Air Assault', 'AIRASLT', 'Infantry', 'Demonstrates the effectiveness of helicopter Air Assaults, and teaches how to plan and execute Air Assaults.', NULL, '2023-05-02 20:31:45', '2025-12-17 21:30:01', 0, NULL, 1, 1), (10, 'Anti Armor', 'ATIARM', 'Infantry', 'Provides advanced knowledge on enemy Armored Fighting Vehicles\' capabilities, weaknesses, differences, and identification', NULL, '2023-05-02 20:32:04', '2025-12-17 21:30:21', 0, NULL, 1, 1), @@ -102518,31 +104725,36 @@ INSERT INTO `courses` (`id`, `name`, `short_name`, `category`, `description`, `i (12, 'Land Navigation', 'LANDNAV', 'Infantry', 'Teaches advanced cartography and map reading, navigation, and orientation without use of GPS systems.', NULL, '2023-05-02 20:32:55', '2025-11-24 21:49:28', 0, NULL, 1, 1), (13, 'Marksman', 'MRKSMN', 'Infantry', 'Qualifies members on rapid snap shooting at close-medium range with accuracy, required to use a 3x scope.', NULL, '2023-05-02 20:33:17', '2025-12-02 21:25:25', 0, NULL, 0, 1), (14, 'Sharpshooter', 'SHRPSHOT', 'Infantry', 'Qualifies members on rapid, precision shooting at long range with exceptional accuracy, required to use a 4x scope.', NULL, '2023-05-02 20:33:49', '2025-12-17 21:30:53', 0, NULL, 0, 1), - (15, 'Air Crew', 'AIRCRW', 'Support', 'Provides information on how to act as a basic helicopter crew member, guiding the pilots into a tight LZ and providing medical support where needed.', NULL, '2023-05-02 20:34:09', '2025-12-17 21:37:12', 1, NULL, 0, 0), + (15, 'Air Crew', 'AIRCRW', 'Support', 'Provides information on how to act as a basic helicopter crew member, guiding the pilots into a tight LZ and providing medical support where needed.', NULL, '2023-05-02 20:34:09', '2025-12-21 00:41:39', 1, NULL, 1, 1), (16, 'Convoy Training', 'CONVOY', 'Support', NULL, NULL, '2023-05-02 20:34:38', '2025-12-17 21:37:34', 0, NULL, 1, 0), (17, 'Co-Pilot', 'COPILT', 'Support', 'Introduces the responsibilities of the cockpit crew, teaching copilots how to receive and relay communications, plot flight routes, and operate the helicopter\'s weapon systems.', NULL, '2023-05-02 20:35:13', '2025-12-17 21:38:05', 0, NULL, 1, 1), (18, 'Echo Orientation', 'ECHORENT', 'Support', 'Introduces attendees to the vehicles, roles, and Echo\'s general scope of operations.', NULL, '2023-05-02 20:35:43', '2025-12-17 21:38:15', 0, NULL, 1, 0), - (19, 'Fixed Wing Close Air Support', 'FWCAS', 'Support', 'Trains fixed-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:36:04', '2025-11-24 12:40:06', 0, NULL, 1, 1), - (20, 'Indirect Fire (Mortars)', 'IDF', 'Support', 'Trains IDF specialists in receiving call-for-fires and calculating artillery solutions for the Mk.6 Mortar, and familiarizing trainees on the M109A6 Paladin and M142 HIMARS.', NULL, '2023-05-02 20:36:28', '2025-11-24 12:40:10', 0, NULL, 1, 1), - (21, 'Joint Terminal Attack Controller', 'JTAC', 'Support', 'Provides the necessary knowledge to interpret CAS requests from infantry elements and request CAS strikes from allied Fixed-Wing or Rotary-Wing aircraft.', NULL, '2023-05-02 20:36:46', '2025-12-17 21:43:34', 0, NULL, 1, 1), + (19, 'Fixed Wing Close Air Support (F-CAS)', 'FWCAS', 'Support', 'Trains fixed-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:36:04', '2025-12-31 17:59:07', 0, NULL, 1, 1), + (20, 'Indirect Fire / Mortars (IDF)', 'IDF', 'Support', 'Trains IDF specialists in receiving call-for-fires and calculating artillery solutions for the Mk.6 Mortar, and familiarizing trainees on the M109A6 Paladin and M142 HIMARS.', NULL, '2023-05-02 20:36:28', '2025-12-31 17:59:21', 0, NULL, 1, 1), + (21, 'Joint Terminal Attack Controller (JTAC)', 'JTAC', 'Support', 'Provides the necessary knowledge to interpret CAS requests from infantry elements and request CAS strikes from allied Fixed-Wing or Rotary-Wing aircraft.', NULL, '2023-05-02 20:36:46', '2025-12-31 17:58:34', 0, NULL, 1, 1), (22, 'Jump Master', 'JMPMSTR', 'Support', 'Trains Jump Masters in plotting paradrop DZs, parameters such as speed and altitude, and executing the jump.', NULL, '2023-05-02 20:36:59', '2025-12-17 21:43:44', 0, NULL, 1, 1), (23, 'Mechanized', 'MECH', 'Support', 'Trains attendees to be expert mechanized drivers, gunners, and commanders, able to act independently or attached to an infantry element.', NULL, '2023-05-02 20:37:27', '2025-12-17 21:44:00', 0, NULL, 1, 1), - (24, 'Rotary Close Air Support', 'RTRCAS', 'Support', 'Trains Rotary-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:37:44', '2025-12-17 21:44:11', 0, NULL, 1, 1), + (24, 'Rotary Close Air Support (R-CAS)', 'RTRCAS', 'Support', 'Trains Rotary-wing pilots in receiving communications and plotting grids while in forward movement, and how to operate the aircraft\'s Air-To-Ground and Air-To-Air systems.', NULL, '2023-05-02 20:37:44', '2025-12-31 17:59:04', 0, NULL, 1, 1), (25, 'Rotary Logistics', 'RTRLOGI', 'Support', 'Trains Rotary-wing pilots in conducting landings, paradrops, hot LZs, resupplies in various rotary-wing aircraft, and ensures the pilot can recover from substantial engine or tail-rotor damage.', NULL, '2023-05-02 20:38:12', '2025-12-17 21:44:20', 0, NULL, 1, 1), (26, 'Advanced Unmanned Aerial Vehicle', 'AUAV', 'Specialty', 'Fully explores the Darter and Yabhon\'s flight abilities, radar and technology suites, armaments, and camera systems to perform reconnaissance and place guided munitions onto targets.', NULL, '2023-05-02 20:38:45', '2025-12-17 21:44:32', 0, NULL, 1, 1), (27, 'Combat Diver', 'CMBDVR', 'Specialty', 'Teaches the skills need to be a Ranger Recon Company (RRC) diver, and practicing the various methods of insertion such as SDV, Helocast, and diving.', NULL, '2023-05-02 20:39:16', '2025-11-24 12:40:41', 0, NULL, 1, 0), (28, 'Forward Observer', 'FO', 'Specialty', 'Trains Forward Observers to call in and correct IDF strikes until enemies have been destroyed with 110% accuracy.', NULL, '2023-05-02 20:39:33', '2025-11-24 12:39:26', 0, NULL, 1, 1), (29, 'Master Free Fall', 'MFF', 'Specialty', 'Advances paradropping abilities to better suit the needs of RRC.', NULL, '2023-05-02 20:39:42', '2025-12-17 21:45:17', 0, NULL, 1, 1), (30, 'Pathfinder', 'PTHFDR', 'Specialty', 'Teaches the basic scope of action of RRC and trains usage of the Raven drone and general recon and stealth practices.', NULL, '2023-05-02 20:39:57', '2025-11-24 12:40:37', 0, NULL, 1, 1), - (31, 'Reconnaissance and Surveillance Leaders Course', 'RSLC', 'Specialty', 'Trains NCOs to plan, prepare, and execute RRC missions.', NULL, '2023-05-02 20:40:23', '2025-11-24 12:40:34', 0, NULL, 1, 1), + (31, 'Reconnaissance and Surveillance Leaders Course (RSLC)', 'RSLC', 'Specialty', 'Trains NCOs to plan, prepare, and execute RRC missions.', NULL, '2023-05-02 20:40:23', '2025-12-31 17:59:46', 0, NULL, 1, 1), (32, 'Sniper', 'SNPR', 'Specialty', 'Trains personnel on how to employ long-range scopes and rifles to observe areas from protected keyholes, and place high-precision, long-range shots on priority targets.', NULL, '2023-05-02 20:40:37', '2025-11-24 12:40:32', 0, NULL, 1, 1), (33, 'Basic Communications Proficiency', 'BCOMPROF', 'Additional', 'Trains on the usage of the AN/PRC-152 short-range radio, and general communication etiquette and efficiency. ', NULL, '2023-05-02 20:41:17', '2025-12-17 21:45:25', 0, NULL, 1, 0), - (34, 'Advanced Infantry Training 2', 'AIT-2', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:58:52', '2025-11-24 12:40:20', 0, NULL, 1, 0), - (35, 'Advanced Infantry Training 3', 'AIT-3', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:03', '2025-11-24 12:40:21', 0, NULL, 1, 0), - (36, 'Advanced Infantry Training 4', 'AIT-4', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:18', '2025-11-24 12:40:21', 0, NULL, 1, 0), + (34, 'Ranger School 2', 'RNGSCH-2', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:58:52', '2025-12-19 23:08:46', 0, NULL, 1, 0), + (35, 'Ranger School 3', 'RNGSCH-3', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:03', '2025-12-19 23:08:48', 0, NULL, 1, 0), + (36, 'Ranger School 4', 'RNGSCH-4', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:18', '2025-12-19 23:08:52', 0, NULL, 1, 0), (37, 'Advanced Infantry Training (GLOBAL)', 'AITCORE', 'Infantry', 'Introduces advanced-level tactics and trainings for infantry; namely Fire Superiority, Bounding and Aggression, Military Operations in Urban Terrain, and CQB', NULL, '2023-05-08 05:59:38', '2025-12-17 21:46:02', 1, NULL, 0, 0), (38, 'Fixed Wings Logistics', 'FWLOGI', 'Support', 'Trains fixed-wing pilots in receiving and executing logistical requests such as paradrops and resupply while in forward movement.', NULL, '2023-05-19 20:38:19', '2025-12-17 21:46:18', 0, NULL, 1, 1), - (39, '(USAF) AC-130U Spooky Guide', 'AC-130-SG', 'Additional', 'Learn how to operate the aircraft and it\'s systems.', NULL, '2025-12-01 00:39:57', '2025-12-01 00:39:57', 0, NULL, 1, 0); + (39, '(USAF) AC-130U Spooky Guide', 'AC-130-SG', 'Additional', 'Learn how to operate the aircraft and it\'s systems.', NULL, '2025-12-01 00:39:57', '2025-12-01 00:39:57', 0, NULL, 1, 0), + (40, 'Flight Training', 'FLTTRN', 'Additional', 'Flight training practice session not related to any specific qualification training', NULL, '2025-12-21 00:45:20', '2025-12-21 00:45:20', 0, NULL, 0, 0), + (41, 'Field Training Exercise (FTX)', 'FTX', 'Additional', NULL, NULL, '2025-12-21 20:43:13', '2025-12-21 20:44:53', 0, NULL, 0, 0), + (42, 'Echo Gunnery', 'EGUNRY', 'Support', 'To ensure basic competence on vehicle-based weapon systems, and familiarize Echo members with the various weapon systems we employ on vehicles.', NULL, '2025-12-22 22:03:03', '2025-12-22 22:03:03', 0, NULL, 1, 1), + (43, 'Tiltrotar Logistics (T-LOGI)', 'TRLOGI', 'Support', NULL, NULL, '2025-12-31 18:06:47', '2025-12-31 18:08:38', 0, NULL, 1, 1), + (44, 'Tiltrotar Close Air Support (T-CAS)', 'TRCAS', 'Support', NULL, NULL, '2025-12-31 18:07:16', '2025-12-31 18:08:39', 0, NULL, 1, 1); -- Dumping data for table milsim_website_development.courses_sme: ~0 rows (approximately) @@ -102560,7 +104772,7 @@ INSERT INTO `event_types` (`id`, `event_type`, `event_category`, `deleted`) VALU -- Dumping data for table milsim_website_development.guilded_events: ~0 rows (approximately) --- Dumping data for table milsim_website_development.leave_of_absences: ~27 rows (approximately) +-- Dumping data for table milsim_website_development.leave_of_absences: ~36 rows (approximately) INSERT INTO `leave_of_absences` (`id`, `member_id`, `filed_date`, `start_date`, `end_date`, `extended_till`, `type_id`, `reason`, `created_by_id`, `deleted`, `expired`, `closed_by`, `ended_at`, `closed`, `created_at`, `updated_at`) VALUES (1, 1, '2025-12-09 00:00:00', '2025-12-10 00:00:00', '2026-01-10 00:00:00', NULL, 1, 'Changing work schedule/personal.', 166, 0, NULL, NULL, NULL, NULL, '2025-12-18 01:52:48', '2025-12-18 03:06:54'); INSERT INTO `leave_of_absences` (`id`, `member_id`, `filed_date`, `start_date`, `end_date`, `extended_till`, `type_id`, `reason`, `created_by_id`, `deleted`, `expired`, `closed_by`, `ended_at`, `closed`, `created_at`, `updated_at`) VALUES @@ -102568,11 +104780,11 @@ INSERT INTO `leave_of_absences` (`id`, `member_id`, `filed_date`, `start_date`, (3, 70, '2025-11-11 00:00:00', '2025-11-15 00:00:00', '2025-11-30 00:00:00', NULL, 2, 'out of country/ Holidays', 166, 0, NULL, NULL, '2025-12-07', 1, '2025-12-18 04:09:38', '2025-12-18 04:31:37'), (4, 30, '2025-10-31 23:45:55', '2025-11-01 00:00:00', '2026-04-01 00:00:00', NULL, 1, 'Starting new job that conflicts with operations, unknown of when conflict will be resolved\\nAdditional Note: there’s the chance I may be able to join the occasional operation and I should be able to remain active in the discord and Guilded(till Guilded shuts down) fairly regularly', 166, 0, NULL, NULL, NULL, NULL, '2025-12-18 05:06:55', '2025-12-18 05:10:25'), (5, 6, '2025-10-30 14:56:06', '2025-11-01 00:00:00', '2025-12-05 00:00:00', '2026-01-23 00:00:00', 1, '6/12\'s No more Saturdays.', 166, 0, NULL, NULL, NULL, NULL, '2025-12-18 05:09:21', '2025-12-18 19:52:02'), - (6, 1207, '2025-10-28 15:52:38', '2025-11-01 00:00:00', '2025-11-08 00:00:00', NULL, 1, '7day /12 hr shifts at night', 166, 0, NULL, NULL, '2025-11-17', 1, '2025-12-18 05:18:11', '2025-12-18 19:52:03'), + (6, 34, '2025-10-28 15:52:38', '2025-11-01 00:00:00', '2025-11-08 00:00:00', NULL, 1, '7day /12 hr shifts at night', 166, 0, NULL, NULL, '2025-11-17', 1, '2025-12-18 05:18:11', '2025-12-22 19:49:30'), (7, 7, '2025-10-27 12:15:20', '2025-11-01 00:00:00', '2025-11-11 00:00:00', NULL, 2, 'Vacation', 166, 0, NULL, NULL, '2025-11-17', 1, '2025-12-18 05:23:17', '2025-12-18 19:52:03'), - (8, 729, '2025-10-26 20:55:36', '2025-10-27 00:00:00', '2025-01-12 00:00:00', NULL, 1, 'A break. May be around if I\'m not busy with vacation/birthday stuff', 166, 0, NULL, NULL, '2025-12-07', 1, '2025-12-18 05:24:48', '2025-12-18 19:52:03'), + (8, 27, '2025-10-26 20:55:36', '2025-10-27 00:00:00', '2025-01-12 00:00:00', NULL, 1, 'A break. May be around if I\'m not busy with vacation/birthday stuff', 166, 0, NULL, NULL, '2025-12-07', 1, '2025-12-18 05:24:48', '2025-12-22 19:48:04'), (9, 69, '2025-10-16 14:57:26', '2025-10-16 14:57:26', '2025-12-13 18:14:04', NULL, 1, 'Family Medical', 166, 0, NULL, NULL, '2025-12-15', 1, '2025-12-18 05:37:48', '2025-12-18 19:52:03'), - (10, 2, '2025-10-14 16:53:30', '2025-10-14 16:53:30', '2026-04-15 00:00:00', NULL, 1, 'got a promotion at work to foreman so ill be goin back on the road this weekend and will be working weekends and ill only be home a couple days a month. im gunna bring my pc still but if im working 70-80 hours a week im not sure how much time ill have for anything until this job is done. if i am home on a weekend i may still be able to attend but i know alot of my time is going to be occupied by this next job and my kids when im home', 166, 0, NULL, NULL, NULL, NULL, '2025-12-18 05:39:27', '2025-12-18 19:52:04'), + (10, 2, '2025-10-14 16:53:30', '2025-10-14 16:53:30', '2026-04-15 00:00:00', NULL, 1, 'got a promotion at work to foreman so ill be goin back on the road this weekend and will be working weekends and ill only be home a couple days a month. im gunna bring my pc still but if im working 70-80 hours a week im not sure how much time ill have for anything until this job is done. if i am home on a weekend i may still be able to attend but i know alot of my time is going to be occupied by this next job and my kids when im home', 166, 0, NULL, NULL, NULL, NULL, '2025-12-18 05:39:27', '2026-01-02 19:40:28'), (11, 74, '2025-10-04 08:38:48', '2025-10-04 00:00:00', '2025-11-10 00:00:00', NULL, 1, 'Work and personal obligations have been affecting attendance recently and will continue to affect it. Will update if need to extend', 166, 0, NULL, NULL, '2025-11-11', 1, '2025-12-18 05:40:23', '2025-12-18 19:52:04'), (12, 12, '2025-10-01 20:20:24', '2025-10-05 00:00:00', '2025-10-19 00:00:00', NULL, 2, 'Vacation out of country😎', 166, 0, NULL, NULL, '2025-10-19', 1, '2025-12-18 05:52:34', '2025-12-18 19:52:04'), (13, 19, '2025-12-17 23:58:01', '2025-09-27 00:00:00', '2025-10-05 00:00:00', NULL, 2, 'Vacation to PA to hangout with an old member, SeaLyons', 166, 0, NULL, NULL, '2025-10-05', 1, '2025-12-18 05:57:29', '2025-12-18 19:52:04'), @@ -102588,8 +104800,17 @@ INSERT INTO `leave_of_absences` (`id`, `member_id`, `filed_date`, `start_date`, (23, 23, '2025-07-19 13:55:09', '2025-07-27 00:00:00', '2025-09-27 00:00:00', NULL, 1, 'Caring for a family member.', 166, 0, NULL, NULL, '2025-09-27', 1, '2025-12-18 19:51:00', '2025-12-18 19:52:10'), (24, 44, '2025-07-17 11:05:57', '2025-08-01 00:00:00', '2025-12-19 20:25:00', NULL, 1, 'applying for new visa in country grinding to earn more money to pay for said visa', 166, 0, NULL, NULL, NULL, NULL, '2025-12-18 19:57:53', '2025-12-18 20:16:38'), (25, 20, '2025-07-12 21:22:54', '2025-07-18 00:00:00', '2025-10-03 00:00:00', NULL, 3, 'First attempt at RTAC, 3rd, 4th and possibly 5th attempt at Ranger :)', 166, 0, NULL, NULL, '2025-09-06', 1, '2025-12-18 20:11:03', '2025-12-18 20:16:45'), - (26, 77, '2025-07-12 21:22:54', '2025-07-06 19:23:36', '2025-09-01 00:00:00', NULL, NULL, 'Tourist season here means Saturday hours go until 11p EST, and I cannot guarantee that I will have them off, but I also cannot guarantee that I will never have a Saturday free. I just ask for attendance amnesty until the summer is over.', NULL, 0, NULL, NULL, NULL, NULL, '2025-12-18 20:14:24', '2025-12-18 20:14:24'), - (27, 4, '2025-07-01 17:49:01', '2025-07-01 00:00:00', '2025-08-06 00:00:00', NULL, 1, 'Finishing summer classes and vacations', 166, 0, NULL, NULL, '2025-08-11', 1, '2025-12-18 20:16:33', '2025-12-18 20:16:49'); + (26, 77, '2025-07-12 21:22:54', '2025-07-06 19:23:36', '2025-09-01 00:00:00', NULL, 1, 'Tourist season here means Saturday hours go until 11p EST, and I cannot guarantee that I will have them off, but I also cannot guarantee that I will never have a Saturday free. I just ask for attendance amnesty until the summer is over.', NULL, 0, NULL, NULL, NULL, NULL, '2025-12-18 20:14:24', '2025-12-19 04:12:49'), + (27, 4, '2025-07-01 17:49:01', '2025-07-01 00:00:00', '2025-08-06 00:00:00', NULL, 1, 'Finishing summer classes and vacations', 166, 0, NULL, NULL, '2025-08-11', 1, '2025-12-18 20:16:33', '2025-12-18 20:16:49'), + (28, 21, '2025-06-02 16:07:21', '2025-06-03 00:00:00', '2025-08-03 00:00:00', NULL, 1, 'Mental Health break', 166, 0, NULL, NULL, NULL, NULL, '2025-12-19 04:42:58', '2025-12-19 04:42:58'), + (29, 45, '2025-04-20 16:20:06', '2025-04-20 16:20:06', '2025-07-20 00:00:00', '2025-08-07 00:00:00', 1, 'Unsure exact date of return \\nJust not feeling it as of lately, often feel as if my Saturday nights are either boring/more stressful than they’re worth. Gonna take a break and come back when I’m feeling it again, I assume it’ll be a few months.', NULL, 0, NULL, NULL, '2025-08-12', 1, '2025-12-19 04:49:58', '2025-12-19 04:50:04'), + (30, 26, '2025-12-27 14:37:46', '2025-12-26 17:00:00', '2026-01-26 17:00:00', NULL, 1, 'Traveled back to Algeria for family health visit. Will drop in for some ops/trainings but unreliably due to time difference.', NULL, 0, NULL, NULL, NULL, NULL, '2025-12-27 14:36:06', '2025-12-27 14:36:06'), + (31, 40, '2026-01-02 16:10:11', '2026-01-02 02:00:00', '2026-01-12 02:00:00', NULL, 2, 'Physically can\'t attend due to WIFI/ISP Issues. I will update LOA as needed.', NULL, 0, NULL, NULL, NULL, NULL, '2026-01-02 16:09:01', '2026-01-02 16:09:01'), + (32, 38, '2026-01-16 22:56:06', '2026-01-17 00:00:00', '2026-01-20 00:00:00', '2026-07-25 00:00:00', 1, 'Self Added', NULL, 0, NULL, NULL, NULL, NULL, '2026-01-16 22:54:36', '2026-01-17 16:52:29'), + (33, 38, '2026-01-17 16:52:47', '2026-01-18 00:00:00', '2026-01-19 00:00:00', NULL, 1, 'Testing', NULL, 0, NULL, 38, '2026-01-17', 1, '2026-01-17 16:51:16', '2026-01-17 16:51:29'), + (34, 38, '2026-01-17 16:53:14', '2026-01-17 00:00:00', '2026-01-20 00:00:00', NULL, 2, 'Test', NULL, 0, NULL, NULL, NULL, NULL, '2026-01-17 16:51:43', '2026-01-17 16:51:43'), + (35, 28, '2026-01-19 19:01:46', '2026-01-19 00:00:00', '2026-01-20 00:00:00', NULL, 1, 'test', NULL, 0, NULL, 28, '2026-01-19', 1, '2026-01-19 18:00:13', '2026-01-19 18:00:44'), + (36, 28, '2026-01-19 19:05:13', '2026-01-18 23:00:00', '2026-01-20 23:00:00', NULL, 1, 'test', NULL, 0, NULL, 28, '2026-01-19', 1, '2026-01-19 19:03:39', '2026-01-19 19:04:20'); -- Dumping data for table milsim_website_development.leave_of_absences_types: ~3 rows (approximately) INSERT INTO `leave_of_absences_types` (`id`, `name`, `max_length_days`, `extendable`) VALUES @@ -102598,1437 +104819,1498 @@ INSERT INTO `leave_of_absences_types` (`id`, `name`, `max_length_days`, `extenda (2, 'Vacation', 31, 0), (3, 'Military Deployment', 365, 0); --- Dumping data for table milsim_website_development.members: ~1,052 rows (approximately) +-- Dumping data for table milsim_website_development.members: ~1,063 rows (approximately) INSERT INTO `members` (`id`, `name`, `timezone`, `email`, `website`, `guilded_id`, `steam_id_64`, `teamspeak_uid`, `steam_profile_name`, `discord_id`, `discord_username`, `aliases`, `created_at`, `updated_at`, `deleted`, `remarks`, `authentik_sub`, `authentik_issuer`, `state`, `displayName`, `last_activity`, `last_login`) VALUES - (1, 'raccoonzanuff', NULL, NULL, NULL, 'dlYNOzlm', NULL, NULL, NULL, '445693785024888843', 'raccoonzanuff', NULL, '2025-12-14 21:38:34', '2025-12-15 03:59:20', NULL, NULL, NULL, NULL, 'member', 'raccoon', NULL, NULL); + (1, 'raccoonzanuff_testing', NULL, NULL, NULL, 'dlYNOzlm', NULL, NULL, NULL, '445693785024888843', 'raccoonzanuff', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'raccoonzanuff_testing', NULL, NULL); INSERT INTO `members` (`id`, `name`, `timezone`, `email`, `website`, `guilded_id`, `steam_id_64`, `teamspeak_uid`, `steam_profile_name`, `discord_id`, `discord_username`, `aliases`, `created_at`, `updated_at`, `deleted`, `remarks`, `authentik_sub`, `authentik_issuer`, `state`, `displayName`, `last_activity`, `last_login`) VALUES - (2, 'cstuder93', NULL, NULL, NULL, 'dBbJMp8d', NULL, NULL, NULL, '1228002686788440245', 'cstuder93', NULL, '2025-12-14 21:38:34', '2025-12-15 03:47:06', NULL, NULL, NULL, NULL, 'member', 'cstuder', NULL, NULL), - (3, 'alvil2001', NULL, NULL, NULL, 'AnnplqbA', NULL, NULL, NULL, '667243420892397578', 'alvil2001', NULL, '2025-12-14 21:38:34', '2025-12-15 03:46:56', NULL, NULL, NULL, NULL, 'member', 'Alvil', NULL, NULL), - (4, 'markymarks', NULL, NULL, NULL, '54k7D2w4', NULL, NULL, NULL, '260884944027516938', 'markymarks', NULL, '2025-12-14 21:38:34', '2025-12-15 03:58:22', NULL, NULL, NULL, NULL, 'member', 'Washington', NULL, NULL), - (5, 'thesaladking', NULL, NULL, NULL, 'AYwOz8od', NULL, NULL, NULL, '122119740134129664', 'thesaladking', NULL, '2025-12-14 21:38:34', '2025-12-17 19:39:59', NULL, NULL, '{"id":"aa1d1cad9eae1051332c3465ad5f41dba8754b85075cb21913154e6eadf6e111","displayName":"TheSaladKing","username":"thesaladking","name":{"givenName":"TheSaladKing"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Salad', NULL, '2025-12-17 19:41:26'), - (6, 'triggs_', NULL, NULL, NULL, 'ndaRDaKm', NULL, NULL, NULL, '365991855789309955', 'triggs_', NULL, '2025-12-14 21:38:34', '2025-12-18 20:08:17', NULL, NULL, '{"id":"c724edf873b152655666e24214232811264b5510a90825940c84ef7171a1d195","displayName":"triggs","username":"triggs_","name":{"givenName":"triggs"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'TriggerTigger', NULL, '2025-12-18 20:09:46'), - (7, 'capnquartermain', NULL, NULL, NULL, 'dOxojqLm', NULL, NULL, NULL, '164876908671139841', 'capnquartermain', NULL, '2025-12-14 21:38:34', '2025-12-17 20:28:57', NULL, NULL, '{"id":"aa141795f629810e94cd42cd466ef28f46d55a2bcfb6666741cd959b41e313c6","displayName":"CapnQuartermain","username":"capnquartermain","name":{"givenName":"CapnQuartermain"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Scarab', NULL, '2025-12-17 20:30:24'), - (8, 'tigertamer988', NULL, NULL, NULL, 'Arr7X9XA', NULL, NULL, NULL, '553042599817117698', 'tigertamer988', NULL, '2025-12-14 21:38:34', '2025-12-15 03:58:32', NULL, NULL, NULL, NULL, 'member', 'Tigertamer', NULL, NULL), - (9, 'difty.', NULL, NULL, NULL, 'dKw8DJ5d', NULL, NULL, NULL, '295263170468249611', 'difty.', NULL, '2025-12-14 21:38:34', '2025-12-18 17:28:39', NULL, NULL, '{"id":"61f9b7d6e68b936874910390adbaa4d9dd8b30382128ef76c8443f2fdd540168","displayName":"Difty","username":"difty.","name":{"givenName":"Difty"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Sam', NULL, '2025-12-18 17:30:08'), - (10, 'themightyzef', NULL, NULL, NULL, 'dKnJnJa4', NULL, NULL, NULL, '344498524760834051', 'themightyzef', NULL, '2025-12-14 21:38:34', '2025-12-15 03:47:50', NULL, NULL, NULL, NULL, 'member', 'SCRUFF', NULL, NULL), - (11, 'friendlyghost00', NULL, NULL, NULL, 'mjj86rgm', NULL, NULL, NULL, '227542544182018051', 'friendlyghost00', NULL, '2025-12-14 21:38:34', '2025-12-15 03:59:49', NULL, NULL, NULL, NULL, 'member', 'notsofriendlyghost', NULL, NULL), - (12, '.dalterino', NULL, NULL, NULL, 'dKZaNBe4', NULL, NULL, NULL, '305917909807661056', '.dalterino', NULL, '2025-12-14 21:38:34', '2025-12-17 19:11:49', NULL, NULL, '{"id":"aa4ad1eb22346fbfe051a83c2da3602c5789b2992c8b74e412286b43e6f6f0c3","displayName":"Dalterino","username":".dalterino","name":{"givenName":"Dalterino"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Dalterino "tHe gOaT"', NULL, '2025-12-17 19:13:16'), - (13, 'zupersly', NULL, NULL, NULL, 'ZdNrg9kd', NULL, NULL, NULL, '163467259673575424', 'zupersly', NULL, '2025-12-14 21:38:35', '2025-12-15 04:09:55', NULL, NULL, NULL, NULL, 'member', 'Doc Sly', NULL, NULL), - (14, 'purplejizzstain', NULL, NULL, NULL, 'dVoXyYym', NULL, NULL, NULL, '313008022396076034', 'purplejizzstain', NULL, '2025-12-14 21:38:35', '2025-12-15 03:56:51', NULL, NULL, NULL, NULL, 'member', 'Emiliano Zapata', NULL, NULL), - (15, 'blitzcraig', NULL, NULL, NULL, 'EdVaaRZ4', NULL, NULL, NULL, '132515202192113665', 'blitzcraig', NULL, '2025-12-14 21:38:35', '2025-12-15 03:52:58', NULL, NULL, NULL, NULL, 'member', 'Blitzcraig "Arborist"', NULL, NULL), - (16, 'seal0553', NULL, NULL, NULL, 'O4ZrpPl4', NULL, NULL, NULL, '241420870893961227', 'seal0553', NULL, '2025-12-14 21:38:35', '2025-12-15 03:59:02', NULL, NULL, NULL, NULL, 'member', 'Seal', NULL, NULL), - (17, 'the_handicap', NULL, NULL, NULL, 'dOKY6z8d', NULL, NULL, NULL, '342651919421931523', 'the_handicap', NULL, '2025-12-14 21:38:35', '2025-12-15 03:56:14', NULL, NULL, NULL, NULL, 'member', 'Deimos', NULL, NULL), - (18, 'taters159', NULL, NULL, NULL, 'mpQ3lnqA', NULL, NULL, NULL, '589531393978138634', 'taters159', NULL, '2025-12-14 21:38:35', '2025-12-17 18:54:38', NULL, NULL, '{"id":"71c153dc45103de72029ee28ad0929c3ef1c719c28806320202d2002e6e63ab9","displayName":"Taters159","username":"taters159","name":{"givenName":"Taters159"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Taters159', NULL, '2025-12-17 18:56:06'), - (19, 'purple_pop_rocks', NULL, NULL, NULL, 'GAneZjYm', NULL, NULL, NULL, '538899663877701652', 'purple_pop_rocks', NULL, '2025-12-14 21:38:35', '2025-12-15 03:47:19', NULL, NULL, NULL, NULL, 'member', 'Pop Rocks “Luke”', NULL, NULL), - (20, 'sgteddy1212', NULL, NULL, NULL, 'dzbNypVd', NULL, NULL, NULL, '300812795455340546', 'sgteddy1212', NULL, '2025-12-14 21:38:35', '2025-12-15 03:58:43', NULL, NULL, NULL, NULL, 'member', 'Teddy', NULL, NULL), - (21, 'bones8070', NULL, NULL, NULL, 'AnbyDDkA', NULL, NULL, NULL, '538865138690686986', 'bones8070', NULL, '2025-12-14 21:38:35', '2025-12-15 03:55:38', NULL, NULL, NULL, NULL, 'member', 'Bones', NULL, NULL), - (22, 'slothdotpy', NULL, NULL, NULL, 'd5Dx1pO4', NULL, NULL, NULL, '120218059133812738', 'slothdotpy', NULL, '2025-12-14 21:38:35', '2025-12-15 03:58:52', NULL, NULL, NULL, NULL, 'member', 'Slothdothpy', NULL, NULL), - (23, 'caernarvon', NULL, NULL, NULL, 'AeBO3kP4', NULL, NULL, NULL, '357189993757671444', 'caernarvon', NULL, '2025-12-14 21:38:35', '2025-12-18 06:52:16', NULL, NULL, '{"id":"87a8d57fd33511cf31bcb3a0d7e7b1ac28f70817731150e2ddace9f1e53938ce","displayName":"Clason","username":"caernarvon","name":{"givenName":"Clason"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Clason', NULL, '2025-12-18 06:53:44'), - (24, 'fortyone._.', NULL, NULL, NULL, 'mL2QO3a4', NULL, NULL, NULL, '186304877289406464', 'fortyone._.', NULL, '2025-12-14 21:38:35', '2025-12-15 03:57:04', NULL, NULL, NULL, NULL, 'member', 'fortyone', NULL, NULL), - (25, '_radagast_da_brown', NULL, NULL, NULL, '4WB6BgnA', NULL, NULL, NULL, '204337967811002369', '_radagast_da_brown', NULL, '2025-12-14 21:38:35', '2025-12-15 03:59:19', NULL, NULL, NULL, NULL, 'member', 'Radagast', NULL, NULL), - (26, 'ottomaniac', NULL, NULL, NULL, 'dJZQ6EMd', NULL, NULL, NULL, '274116737509883915', 'ottomaniac', NULL, '2025-12-14 21:38:35', '2025-12-15 03:46:41', NULL, NULL, NULL, NULL, 'member', 'Ottomaniac', NULL, NULL), - (27, 'mike48', NULL, NULL, NULL, 'VdxEJ2Xm', NULL, NULL, NULL, '275167852925812736', 'mike48', NULL, '2025-12-14 21:38:35', '2025-12-17 19:32:44', NULL, NULL, '{"id":"06159149f8cc81f9c34da62a1ad24ce1e1e33c8e80e09b6a13125b8106239d4c","displayName":"Mike48","username":"mike48","name":{"givenName":"Mike48"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'M. "Powerline" McCann', NULL, '2025-12-17 19:34:11'), - (28, 'ajdj100_1', NULL, NULL, NULL, '2d28vkMA', '76561198124304546', NULL, NULL, '275726520641781767', 'ajdj100', NULL, '2025-12-14 21:38:35', '2025-12-30 11:51:05', NULL, NULL, '{"id":"16a7e74b4cdf2ab9a5565bdfed7a27c0b0107bb05070213bf571179705896d7a","displayName":"Ajdj100","username":"ajdj100","name":{"givenName":"Ajdj100"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Ajdj100 TEST', NULL, '2025-12-30 12:52:10'), - (29, '_morgz', NULL, NULL, NULL, 'dJVbgOwd', NULL, NULL, NULL, '872889035792715908', '_morgz', NULL, '2025-12-14 21:38:35', '2025-12-18 11:10:30', NULL, NULL, '{"id":"c03dbb61e2c59a6f58b23d45db31395668a1940bb12ea8662737b4d47ca66353","displayName":"Morgz","username":"_morgz","name":{"givenName":"Morgz"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Morgz', NULL, '2025-12-18 11:11:59'), - (30, 'fataldesolation', NULL, NULL, NULL, 'ArbMKbqA', NULL, NULL, NULL, '527020120359567361', 'fataldesolation', NULL, '2025-12-14 21:38:35', '2025-12-15 03:58:49', NULL, NULL, NULL, NULL, 'member', 'SumNoots The Professional Idiot', NULL, NULL), - (31, 'xylemicgaming', NULL, NULL, NULL, '4Z6z17l4', NULL, NULL, NULL, '339713252042866690', 'xylemicgaming', NULL, '2025-12-14 21:38:35', '2025-12-15 03:58:17', NULL, NULL, NULL, NULL, 'member', 'Xylemic', NULL, NULL), - (32, 'the.buck', NULL, NULL, NULL, '401W2ORd', NULL, NULL, NULL, '307392720408805377', 'the.buck', NULL, '2025-12-14 21:38:35', '2025-12-15 04:12:07', NULL, NULL, NULL, NULL, 'member', 'Buck', NULL, NULL), - (33, 'silentassassin6093', NULL, NULL, NULL, 'mjVP59Nm', NULL, NULL, NULL, '370339387533164544', 'silentassassin6093', NULL, '2025-12-14 21:38:35', '2025-12-15 03:58:55', NULL, NULL, NULL, NULL, 'member', 'Silent Assassin', NULL, NULL), - (34, 'zmooth565', NULL, NULL, NULL, 'dVo6zbpm', NULL, NULL, NULL, '1349521857937932328', 'zmooth565', NULL, '2025-12-14 21:38:35', '2025-12-18 04:03:31', NULL, NULL, '{"id":"f39279acbea187c648ab22e7cb242fd96c3b38b3c08dcbebbe3c5905739318df","displayName":"zmooth","username":"zmooth565","name":{"givenName":"zmooth"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'zmooth', NULL, '2025-12-18 04:04:59'), - (35, 's.asterisk', NULL, NULL, NULL, 'dxKzV994', NULL, NULL, NULL, '167849550428635136', 's.asterisk', NULL, '2025-12-14 21:38:35', '2025-12-17 20:20:51', NULL, NULL, '{"id":"bb06ca7f1032a568e8b827ded6ec7559c88ff38d6509c5450408716c39452eb4","displayName":"duck","username":"s.asterisk","name":{"givenName":"duck"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Jaggi', NULL, '2025-12-17 20:22:18'), - (36, 'castironcreature_47268_85039', NULL, NULL, NULL, '4EKLYLXm', NULL, NULL, NULL, '1427771541923434626', 'castironcreature_47268_85039', NULL, '2025-12-14 21:38:35', '2025-12-15 03:55:52', NULL, NULL, NULL, NULL, 'member', 'CastIronCreature', NULL, NULL), - (37, 'hairy._.', NULL, NULL, NULL, 'dJxQEoqA', NULL, NULL, NULL, '410893084956819467', 'hairy._.', NULL, '2025-12-14 21:38:35', '2025-12-15 03:57:31', NULL, NULL, NULL, NULL, 'member', 'Hairy', NULL, NULL), - (38, 'eagletrooper', NULL, NULL, NULL, 'VmyeBRym', NULL, NULL, NULL, '245793112809668608', 'eagletrooper', NULL, '2025-12-14 21:38:35', '2025-12-28 18:51:57', NULL, NULL, '{"id":"790450f1534192e5addde40f9be2ca4b9e1f86d719815d5b466916d3637437f6","displayName":"eagletrooper","username":"eagletrooper","name":{"givenName":"eagletrooper"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'EagleTrooper', NULL, '2025-12-28 18:53:39'), - (39, 'mattpod', NULL, NULL, NULL, 'kdKMreZA', NULL, NULL, NULL, '343047357962649600', 'mattpod', NULL, '2025-12-14 21:38:35', '2025-12-17 19:20:42', NULL, NULL, '{"id":"6a7f7b6dd79b747c868dee8769d9f459ad4ddd6ef9afc494c0af7f24679a3d8e","displayName":"MattPod","username":"mattpod","name":{"givenName":"MattPod"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'MattPod "Iceberg Ace"', NULL, '2025-12-17 19:22:10'), - (40, 'ecksbox', NULL, NULL, NULL, 'xAYyPO0A', NULL, NULL, NULL, '217676491075354628', 'ecksbox', NULL, '2025-12-14 21:38:35', '2025-12-15 03:56:57', NULL, NULL, NULL, NULL, 'member', 'Festivized Ecksbox', NULL, NULL), - (41, 'fredo7436', NULL, NULL, NULL, 'dxMXk3Om', NULL, NULL, NULL, '173178653138485248', 'fredo7436', NULL, '2025-12-14 21:38:35', '2025-12-15 03:57:21', NULL, NULL, NULL, NULL, 'member', 'Fredo', NULL, NULL), - (42, 'fibonacci1123', NULL, NULL, NULL, 'dVDLp6ZA', NULL, NULL, NULL, '228933190767738880', 'fibonacci1123', NULL, '2025-12-14 21:38:35', '2025-12-15 03:57:02', NULL, NULL, NULL, NULL, 'member', 'Fibonacci "Lumberjack"', NULL, NULL), - (43, '_kenjeongun_', NULL, NULL, NULL, 'x4oeVOJm', NULL, NULL, NULL, '316069635944611853', '_kenjeongun_', NULL, '2025-12-14 21:38:35', '2025-12-17 22:42:08', NULL, NULL, '{"id":"7f47d23061a51bbf9378738f905522413064b242b9b0f9964fcef165e6949623","displayName":"KEN JEONG UN","username":"_kenjeongun_","name":{"givenName":"KEN JEONG UN"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Himothy Himandez', NULL, '2025-12-17 22:43:36'), - (44, 'commandshot', NULL, NULL, NULL, 'd5Y0BbOd', NULL, NULL, NULL, '568033336740806666', 'commandshot', NULL, '2025-12-14 21:38:35', '2025-12-15 03:58:34', NULL, NULL, NULL, NULL, 'member', 'tiberius', NULL, NULL), - (45, 'theandi.', NULL, NULL, NULL, 'd9oPaqqA', NULL, NULL, NULL, '274286874162364431', 'theandi.', NULL, '2025-12-14 21:38:35', '2025-12-15 03:55:19', NULL, NULL, NULL, NULL, 'member', 'Andi "Jedi"', NULL, NULL), - (46, 'okami2222', NULL, NULL, NULL, 'd3R13PZ4', NULL, NULL, NULL, '214304905484173312', 'okami2222', NULL, '2025-12-14 21:38:35', '2025-12-15 03:59:37', NULL, NULL, NULL, NULL, 'member', 'Okami "Honorary Asian"', NULL, NULL), - (47, 'vlasyny', NULL, NULL, NULL, 'd2rMEvod', NULL, NULL, NULL, '581334750711775232', 'vlasyny', NULL, '2025-12-14 21:38:35', '2025-12-18 18:28:52', NULL, NULL, '{"id":"23a6fb220f0a2623e0ae685279ef37a4e05a8d7cae185839f26a3b0e1b0df00d","displayName":"Bama","username":"vlasyny","name":{"givenName":"Bama"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Bama', NULL, '2025-12-18 18:30:20'), - (48, 'rearmoistmantis', NULL, NULL, NULL, 'oAgrkRqm', NULL, NULL, NULL, '237239213312049153', 'rearmoistmantis', NULL, '2025-12-14 21:38:35', '2025-12-17 18:56:40', NULL, NULL, '{"id":"87a840d83bb118baef3c482dbee1e36c938bf6f0231b9b48187149882eb74bd0","displayName":"rearmoistmantis","username":"rearmoistmantis","name":{"givenName":"rearmoistmantis"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Paradox', NULL, '2025-12-17 18:58:08'), - (49, 'jpspider', NULL, NULL, NULL, '4ZE2DlrA', NULL, NULL, NULL, '110837047199027200', 'jpspider', NULL, '2025-12-14 21:38:36', '2025-12-15 04:09:15', NULL, NULL, NULL, NULL, 'member', 'Jpspider6', NULL, NULL), - (50, '.bezzy', NULL, NULL, NULL, 'AnjQqeyA', NULL, NULL, NULL, '176520069562499072', '.bezzy', NULL, '2025-12-14 21:38:36', '2025-12-15 03:52:40', NULL, NULL, NULL, NULL, 'member', 'Bezzy "Stopsign"', NULL, NULL), - (51, 'murdock2713', NULL, NULL, NULL, '1ArLNqYd', NULL, NULL, NULL, '136305948011528193', 'murdock2713', NULL, '2025-12-14 21:38:36', '2025-12-15 03:58:06', NULL, NULL, NULL, NULL, 'member', 'Murdock', NULL, NULL), - (52, 'bulltrup', NULL, NULL, NULL, 'mpL0jgQm', NULL, NULL, NULL, '141736412843212800', 'bulltrup', NULL, '2025-12-14 21:38:36', '2025-12-17 18:59:01', NULL, NULL, '{"id":"4ef72cf91e1ef09a4f5734917f999ccbc2f3ecc7e192ae674b5f1fbf4c32c218","displayName":"Bulltrup","username":"bulltrup","name":{"givenName":"Bulltrup"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Bulltrup', NULL, '2025-12-17 19:00:28'), - (53, 'wolfcaboose', NULL, NULL, NULL, 'dzkzQzym', NULL, NULL, NULL, '206252219429814272', 'wolfcaboose', NULL, '2025-12-14 21:38:36', '2025-12-15 03:55:48', NULL, NULL, NULL, NULL, 'member', 'Caboose', NULL, NULL), - (54, 'dethofme', NULL, NULL, NULL, '4oqqKeJm', NULL, NULL, NULL, '322419743749570580', 'dethofme', NULL, '2025-12-14 21:38:36', '2025-12-18 15:24:21', NULL, NULL, '{"id":"4b167f75b8a6ffabb48c602d088233b64857ca5a2e57e0eed46a819adaeec4a7","displayName":"dethofme","username":"dethofme","name":{"givenName":"dethofme"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'dethofme', NULL, '2025-12-18 15:25:50'), - (55, 'beepbop99', NULL, NULL, NULL, '410kvG7A', NULL, NULL, NULL, '239441428823015424', 'beepbop99', NULL, '2025-12-14 21:38:36', '2025-12-15 04:07:03', NULL, NULL, NULL, NULL, 'member', 'Peter', NULL, NULL), - (56, 'sentinelace', NULL, NULL, NULL, 'v4Do21MA', NULL, NULL, NULL, '236200731885961216', 'sentinelace', NULL, '2025-12-14 21:38:36', '2025-12-17 23:28:55', NULL, NULL, '{"id":"5f35170fb96a91ef31dabf7203713f7edf60564034d4ce58afe75b416c541947","displayName":"Sentinel Ace","username":"sentinelace","name":{"givenName":"Sentinel Ace"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'David', NULL, '2025-12-17 23:30:23'), - (57, 'blaze_nomad', NULL, NULL, NULL, 'xAY1yRaA', NULL, NULL, NULL, '150387953565302785', 'blaze_nomad', NULL, '2025-12-14 21:38:36', '2025-12-17 18:54:07', NULL, NULL, '{"id":"ab6d723e78bbb22452864447dcf077d1a8d715b84992b85418a1ceddf4712684","displayName":"Blaze","username":"blaze_nomad","name":{"givenName":"Blaze"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Blaze', NULL, '2025-12-17 18:55:34'), - (58, 'luluxliengod', NULL, NULL, NULL, 'GmjRr03m', NULL, NULL, NULL, '177241493847670784', 'luluxliengod', NULL, '2025-12-14 21:38:36', '2025-12-15 04:02:04', NULL, NULL, NULL, NULL, 'member', 'Luluxliengod', NULL, NULL), - (59, 'derekk', NULL, NULL, NULL, 'dxMJoEXm', NULL, NULL, NULL, '90348605793120256', 'derekk', NULL, '2025-12-14 21:38:36', '2025-12-15 04:01:46', NULL, NULL, NULL, NULL, 'member', 'J. "Go Around" Franco', NULL, NULL), - (60, 'zengoblin', NULL, NULL, NULL, '8mR9wNYd', NULL, NULL, NULL, '150460526508507136', 'zengoblin', NULL, '2025-12-14 21:38:36', '2025-12-15 03:58:11', NULL, NULL, NULL, NULL, 'member', 'Easy as SPC ZennyG', NULL, NULL), - (61, 'anderp.', NULL, NULL, NULL, 'dOpMqqEm', NULL, NULL, NULL, '165983949338836992', 'anderp.', NULL, '2025-12-14 21:38:36', '2025-12-17 20:02:56', NULL, NULL, '{"id":"80615a7ac91bc817f3b1520915786e5bdd37b221b415f1e87e440f830d88d357","displayName":"Anderp","username":"anderp.","name":{"givenName":"Anderp"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Anderp', NULL, '2025-12-17 20:04:24'), - (62, 'archaikm', NULL, NULL, NULL, 'dO6Jw0n4', NULL, NULL, NULL, '643124853700034600', 'archaikm', NULL, '2025-12-14 21:38:36', '2025-12-15 03:55:23', NULL, NULL, NULL, NULL, 'member', 'Arkay', NULL, NULL), - (63, 'greatnamehere', NULL, NULL, NULL, '401wK9Ed', NULL, NULL, NULL, '221777318757007360', 'greatnamehere', NULL, '2025-12-14 21:38:36', '2025-12-15 04:07:14', NULL, NULL, NULL, NULL, 'member', 'GreatNameHere', NULL, NULL), - (64, 'forukan', NULL, NULL, NULL, 'mLzK5gZ4', NULL, NULL, NULL, '104419117829734400', 'forukan', NULL, '2025-12-14 21:38:36', '2025-12-18 15:29:03', NULL, NULL, '{"id":"1bb6de6a5e6c0b099d5fe2fde4ad21e178d2c713070552762f901f6be52ca592","displayName":"Forukan","username":"forukan","name":{"givenName":"Forukan"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Forukan "Tailhook"', NULL, '2025-12-18 15:30:32'), - (65, 'grafeisen', NULL, NULL, NULL, 'dazMLRZm', NULL, NULL, NULL, '84291698015891456', 'grafeisen', NULL, '2025-12-14 21:38:36', '2025-12-18 16:54:46', NULL, NULL, '{"id":"39f62bdfc895df2e25a260a1b473c81eb0c04fb4cac0633b63de18bfe2a0a7bf","displayName":"GRAF","username":"grafeisen","name":{"givenName":"GRAF"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'GRAF', NULL, '2025-12-18 16:56:15'), - (66, 'cptshrike', NULL, NULL, NULL, 'nm6a881d', NULL, NULL, NULL, '230573084652863490', 'cptshrike', NULL, '2025-12-14 21:38:36', '2025-12-18 02:04:40', NULL, NULL, '{"id":"bc8504bf4d02036b413c7043dcf1819c92e222e7ce5a69bb6b85ddb901c0045b","displayName":"Shrike","username":"cptshrike","name":{"givenName":"Shrike"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Shrike', NULL, '2025-12-18 02:06:08'), - (67, 'sherman6914', NULL, NULL, NULL, 'mRBRe9Ym', NULL, NULL, NULL, '322911769863651331', 'sherman6914', NULL, '2025-12-14 21:38:36', '2025-12-18 16:24:18', NULL, NULL, '{"id":"9a576891e3170aa8caa623af44c1590eca5d12134673d5371117370e3ea32b7e","displayName":"Sherman","username":"sherman6914","name":{"givenName":"Sherman"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Sherman', NULL, '2025-12-18 16:25:46'), - (68, 'shinji1018', NULL, NULL, NULL, 'mq6lQajA', NULL, NULL, NULL, '262815751558135809', 'shinji1018', NULL, '2025-12-14 21:38:36', '2025-12-15 03:51:08', NULL, NULL, NULL, NULL, 'member', 'Shinji', NULL, NULL), - (69, 'nubquint', NULL, NULL, NULL, 'dljWe8OA', NULL, NULL, NULL, '248181823308431360', 'nubquint', NULL, '2025-12-14 21:38:36', '2025-12-15 03:51:16', NULL, NULL, NULL, NULL, 'member', 'NuBQuint', NULL, NULL), - (70, 'pi2tpur', NULL, NULL, NULL, 'dz7V5Ebm', NULL, NULL, NULL, '133013103804678144', 'pi2tpur', NULL, '2025-12-14 21:38:36', '2025-12-15 04:06:51', NULL, NULL, NULL, NULL, 'member', 'Piper', NULL, NULL), - (71, 'mechasaurusrex', NULL, NULL, NULL, 'GmjM985d', NULL, NULL, NULL, '204244766865620992', 'mechasaurusrex', NULL, '2025-12-14 21:38:36', '2025-12-15 04:01:01', NULL, NULL, NULL, NULL, 'member', 'MechaSaurusRex', NULL, NULL), - (72, 'aryctix', NULL, NULL, NULL, 'd5b07J1m', NULL, NULL, NULL, '920651678544461834', 'aryctix', NULL, '2025-12-14 21:38:36', '2025-12-15 03:52:53', NULL, NULL, NULL, NULL, 'member', 'Aryctix', NULL, NULL), - (73, 'waykook', NULL, NULL, NULL, '841PEgPA', NULL, NULL, NULL, '210260153839124490', 'waykook', NULL, '2025-12-14 21:38:36', '2025-12-18 16:27:52', NULL, NULL, '{"id":"b566b4e30961dc7452d194ac4468dee2e7d636ba9b97df6801f6cd442b272bf8","displayName":"waykook","username":"waykook","name":{"givenName":"waykook"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'waykook', NULL, '2025-12-18 16:29:21'), - (74, 'nuclearpee', NULL, NULL, NULL, 'amG6Ynrd', NULL, NULL, NULL, '444341220945428480', 'nuclearpee', NULL, '2025-12-14 21:38:36', '2025-12-15 03:59:44', NULL, NULL, NULL, NULL, 'member', 'Nuclearpee', NULL, NULL), - (75, 'thedon7870', NULL, NULL, NULL, '4Wpw0zEd', NULL, NULL, NULL, '544136318653956116', 'thedon7870', NULL, '2025-12-14 21:38:36', '2025-12-15 03:58:38', NULL, NULL, NULL, NULL, 'member', 'TheDon', NULL, NULL), - (76, 'opposum42', NULL, NULL, NULL, 'mp1j1klA', NULL, NULL, NULL, '705523697313644604', 'opposum42', NULL, '2025-12-14 21:38:36', '2025-12-15 03:59:36', NULL, NULL, NULL, NULL, 'member', 'Opossum42', NULL, NULL), - (77, 'besttubahorse', NULL, NULL, NULL, 'AYg6GRGd', NULL, NULL, NULL, '158346812292464641', 'besttubahorse', NULL, '2025-12-14 21:38:36', '2025-12-15 03:55:25', NULL, NULL, NULL, NULL, 'member', 'Armad "Landing Gear"', NULL, NULL), - (78, 'raddlad', NULL, NULL, NULL, 'mGWO76km', NULL, NULL, NULL, '116298723180412931', 'raddlad', NULL, '2025-12-14 21:38:36', '2025-12-15 03:59:17', NULL, NULL, NULL, NULL, 'member', 'Radd Lad', NULL, NULL), - (79, 'broski69', NULL, NULL, NULL, 'ydw10ZjA', NULL, NULL, NULL, '440227538049171477', 'broski69', NULL, '2025-12-14 21:38:36', '2025-12-15 03:53:14', NULL, NULL, NULL, NULL, 'member', 'Broski', NULL, NULL), - (80, 'timothyyyyy', NULL, NULL, NULL, 'mLo70Lad', NULL, NULL, NULL, '198239703298867200', 'timothyyyyy', NULL, '2025-12-14 21:38:36', '2025-12-18 15:48:47', NULL, NULL, '{"id":"e6e933554ac3cf78c687a207fb8bfdf879c4bae28d7117356f1b2b5145f31ac4","displayName":"tiMOTHY","username":"timothyyyyy","name":{"givenName":"tiMOTHY"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'tiMOTHY', NULL, '2025-12-18 15:50:16'), - (81, 'wooceanman', NULL, NULL, NULL, '841br9Ed', NULL, NULL, NULL, '112288508760055808', 'wooceanman', NULL, '2025-12-14 21:38:36', '2025-12-17 23:40:40', NULL, NULL, '{"id":"1484736a03af2dd73d4b8cb08b20843fcdedf234dd9b0a6087de43cb4525bbc9","displayName":"Wooceanman","username":"wooceanman","name":{"givenName":"Wooceanman"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Ocean', NULL, '2025-12-17 23:42:07'), - (82, 'imnaga', NULL, NULL, NULL, 'kdK0eo5m', NULL, NULL, NULL, '155144163631824896', 'imnaga', NULL, '2025-12-14 21:38:36', '2025-12-17 20:45:58', NULL, NULL, '{"id":"c17f83f1e48205269a5e16fb80e49a64a84bb8b882f20f2a48424f0a95f21a3b","displayName":"naga","username":"imnaga","name":{"givenName":"naga"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'naga', NULL, '2025-12-17 20:47:25'), - (165, '17th Administration Tasks', NULL, NULL, NULL, '40a8orYd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', '17th Administration Tasks', NULL, NULL), - (166, '17th Automation', NULL, NULL, NULL, 'AXZEkrRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', '17th Automation', NULL, NULL), - (167, '2_Z_Zach', NULL, NULL, NULL, '1ArKKVX4', '76561198237332918', NULL, '2_Z_Zach', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', '2_Z_Zach', NULL, NULL), - (168, '43(', NULL, NULL, NULL, 'Qd53g9VA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', '43(', NULL, NULL), - (169, '757Life', NULL, NULL, NULL, 'my10reWm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', '757Life', NULL, NULL), - (170, 'Abdul Jabar', NULL, NULL, NULL, 'AXonw1Em', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Abdul Jabar', NULL, NULL), - (171, 'A. Blachy', NULL, NULL, NULL, 'AQRN1X04', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'A. Blachy', NULL, NULL), - (172, 'Ace', NULL, NULL, NULL, '64vqJ0WA', '76561198859067179', NULL, 'ZeroAce', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ace', NULL, NULL), - (173, 'AdamTorrence', NULL, NULL, NULL, '401ExNRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'AdamTorrence', NULL, NULL), - (174, '+Adrian+', NULL, NULL, NULL, 'rdOP6W8m', '76561198092658635', NULL, 'Shadow', '216246731988271115', NULL, NULL, '2025-12-15 10:57:11', '2025-12-16 21:20:04', NULL, NULL, NULL, NULL, 'guest', 'Adrian', NULL, NULL), - (175, 'Adshadow', NULL, NULL, NULL, 'dxD095Gd', '76561198253090767', NULL, 'AdShadow', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Adshadow', NULL, NULL), - (176, 'Aiglos_', NULL, NULL, NULL, 'mMbOKBYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Aiglos_', NULL, NULL), - (177, 'akleeder', NULL, NULL, NULL, '4WP20JPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'akleeder', NULL, NULL), - (178, 'AlbonBlaze', NULL, NULL, NULL, 'AQRkr1a4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'AlbonBlaze', NULL, NULL), - (179, 'Alec', NULL, NULL, NULL, 'mj6BxZbm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Alec', NULL, NULL), - (180, 'Alexander.C', NULL, NULL, NULL, 'AYVQOGo4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Alexander.C', NULL, NULL), - (181, 'Alien Dad', NULL, NULL, NULL, 'mqnGJx1A', NULL, NULL, NULL, '209143849027633152', NULL, NULL, '2025-12-15 10:57:11', '2025-12-16 21:22:36', NULL, NULL, NULL, NULL, 'guest', 'Alien Dad', NULL, NULL), - (182, 'Alligator', NULL, NULL, NULL, 'mybLjMgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Alligator', NULL, NULL), - (183, 'AlwaysPanic', NULL, NULL, NULL, 'dzO1KBpm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'AlwaysPanic', NULL, NULL), - (184, 'AMATHYST', NULL, NULL, NULL, 'VdxQr0Gm', '76561197998740645', NULL, 'AMATHYST', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'AMATHYST', NULL, NULL), - (185, 'AmericanSoulMan', NULL, NULL, NULL, 'dzOY0rRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'AmericanSoulMan', NULL, NULL), - (186, 'Amplify', NULL, NULL, NULL, '2d2Ev3M4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Amplify', NULL, NULL), - (187, 'andycranns', NULL, NULL, NULL, 'ndaMxJad', '76561198982013563', NULL, 'andycranns', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'andycranns', NULL, NULL), - (188, 'Angry Burrito', NULL, NULL, NULL, 'xd96qyZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Angry Burrito', NULL, NULL), - (189, 'Anime Foo', NULL, NULL, NULL, '4E5a3p04', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Anime Foo', NULL, NULL), - (190, 'Antherial', NULL, NULL, NULL, 'dKb1r7Y4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Antherial', NULL, NULL), - (191, 'Ant-man', NULL, NULL, NULL, 'Agkj0pjA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ant-man', NULL, NULL), - (192, 'Anton Rayne', NULL, NULL, NULL, 'mybg8agA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Anton Rayne', NULL, NULL), - (193, 'ApacheLeader939', NULL, NULL, NULL, 'dzO9pjam', '76561198271913322', NULL, 'ApacheLeader939', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ApacheLeader939', NULL, NULL), - (194, 'Apollo', NULL, NULL, NULL, 'amGy6jL4', '76561198403679806', NULL, 'Apollo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 20:59:34', NULL, NULL, NULL, NULL, 'guest', 'Apollo', NULL, NULL), - (195, 'Arashi', NULL, NULL, NULL, '40kgWbKA', '76561198072073694', NULL, 'Arashi', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Arashi', NULL, NULL), - (196, 'Arc', NULL, NULL, NULL, 'AQ9PRZgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Arc', NULL, NULL), - (197, 'ArchAngel', NULL, NULL, NULL, 'Agvo9ggm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ArchAngel', NULL, NULL), - (198, 'Arejay', NULL, NULL, NULL, 'GmjorN3A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Arejay', NULL, NULL), - (199, 'AriesHorn', NULL, NULL, NULL, 'LmpjJqQ4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'AriesHorn', NULL, NULL), - (200, 'ArmAdillio4110', NULL, NULL, NULL, 'mj6EzlNm', '76561198035714168', NULL, 'ArmAdiLLio4110', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ArmAdillio4110', NULL, NULL), - (201, 'Asclepius', NULL, NULL, NULL, '4E5gqyX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Asclepius', NULL, NULL), - (202, 'ASSET12', NULL, NULL, NULL, 'dKG7GGNd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ASSET12', NULL, NULL), - (203, 'Attract', NULL, NULL, NULL, 'dVB17ryd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Attract', NULL, NULL), - (204, 'AureusCrush', NULL, NULL, NULL, 'QdJxR7nA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'AureusCrush', NULL, NULL), - (205, 'austinm85', NULL, NULL, NULL, '4DpLWeo4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'austinm85', NULL, NULL), - (206, 'Average', NULL, NULL, NULL, 'LmpJy8N4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Average', NULL, NULL), - (207, 'Avvrial', NULL, NULL, NULL, 'd8qQgVpm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Avvrial', NULL, NULL), - (208, 'BakedZT', NULL, NULL, NULL, 'dKZ81694', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BakedZT', NULL, NULL), - (209, 'Baker', NULL, NULL, NULL, 'dzgb7Mpm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Baker', NULL, NULL), - (210, 'Bananaman', NULL, NULL, NULL, 'AQ91XjxA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bananaman', NULL, NULL), - (211, 'Bandit', NULL, NULL, NULL, '40k5NaEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bandit', NULL, NULL), - (212, 'BannanaBoat', NULL, NULL, NULL, 'dVbr7epd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BannanaBoat', NULL, NULL), - (213, 'Barely', NULL, NULL, NULL, 'pmbpnwE4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Barely', NULL, NULL), - (214, 'Bayonetta', NULL, NULL, NULL, 'dBnl00wd', NULL, NULL, 'Domino', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bayonetta', NULL, NULL), - (215, 'BB0wser', NULL, NULL, NULL, 'GmjM1Vad', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BB0wser', NULL, NULL), - (216, 'Beachhead', NULL, NULL, NULL, '6AXQbev4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Beachhead', NULL, NULL), - (217, 'Bear', NULL, NULL, NULL, 'x4o8e3nd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bear', NULL, NULL), - (218, 'Beard', NULL, NULL, NULL, 'LmpJz8N4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Beard', NULL, NULL), - (219, 'Bears', NULL, NULL, NULL, 'm6Yzl7Rd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bears', NULL, NULL), - (220, 'BEEG YOSHI', NULL, NULL, NULL, 'xAYL689m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BEEG YOSHI', NULL, NULL), - (221, 'Beholder', NULL, NULL, NULL, 'dODP7NPm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Beholder', NULL, NULL), - (222, 'Bellociraptor', NULL, NULL, NULL, 'dVBvL8pd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bellociraptor', NULL, NULL), - (223, 'Ben', NULL, NULL, NULL, 'dK39RzZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ben', NULL, NULL), - (224, 'BenBalling', NULL, NULL, NULL, 'dJQe07w4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BenBalling', NULL, NULL), - (225, 'benches', NULL, NULL, NULL, 'pmbejZKd', NULL, NULL, 'szarcik', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'benches', NULL, NULL), - (226, 'Bennett', NULL, NULL, NULL, 'da7pZrDA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bennett', NULL, NULL), - (227, 'Beowulf', NULL, NULL, NULL, 'dBWaRaPm', '76561198972874093', NULL, 'Beowulf', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Beowulf', NULL, NULL), - (228, 'BernTeas', NULL, NULL, NULL, 'dOpbaM8m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BernTeas', NULL, NULL), - (229, 'BigBiscuit', NULL, NULL, NULL, 'N4E0NnWA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BigBiscuit', NULL, NULL), - (230, 'Big Guy', NULL, NULL, NULL, 'dx6oqzOA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Big Guy', NULL, NULL), - (231, 'bighugejohnson', NULL, NULL, NULL, 'v4DPq664', '76561198858458703', NULL, 'Bighugejohnson', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'bighugejohnson', NULL, NULL), - (232, 'BigolBitc', NULL, NULL, NULL, 'Aen3RgV4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BigolBitc', NULL, NULL), - (233, 'Big Papi', NULL, NULL, NULL, 'myDzWVJd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Big Papi', NULL, NULL), - (234, 'Bill', NULL, NULL, NULL, 'd9n8lJem', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bill', NULL, NULL), - (235, 'BillboardBomber', NULL, NULL, NULL, 'w4Wk1xp4', '76561198044421570', NULL, 'BillboardBomber', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BillboardBomber', NULL, NULL), - (236, 'Bill McSwaggins', NULL, NULL, NULL, 'QdJ6ZJwd', NULL, NULL, 'Bill McSwaggins', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bill McSwaggins', NULL, NULL), - (237, 'Billy', NULL, NULL, NULL, 'm7zOvzPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Billy', NULL, NULL), - (238, 'BillyBrown', NULL, NULL, NULL, 'mq1eqrLm', '76561198024059165', NULL, 'Billy Brown', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BillyBrown', NULL, NULL), - (239, 'Billy woods', NULL, NULL, NULL, '8mRz3zlm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Billy woods', NULL, NULL), - (240, 'BimboGrimbo', NULL, NULL, NULL, 'rdOr5j84', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BimboGrimbo', NULL, NULL), - (241, 'Bird', NULL, NULL, NULL, 'amG67wLd', '76561198986400591', NULL, 'PVT T. Logan', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bird', NULL, NULL), - (242, 'Birdbrain32', NULL, NULL, NULL, 'd8L5Oo0d', NULL, NULL, NULL, '845029600019218513', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 11:29:51', NULL, NULL, NULL, NULL, 'guest', 'Birdbrain32', NULL, NULL), - (243, 'birdman850', NULL, NULL, NULL, 'O4Zobld1', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'birdman850', NULL, NULL), - (244, 'Bivmo', NULL, NULL, NULL, 'Ae7wW0Wd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bivmo', NULL, NULL), - (245, 'Bl4ckTr0nX', NULL, NULL, NULL, 'dKwYOlBd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bl4ckTr0nX', NULL, NULL), - (246, 'Blackwell', NULL, NULL, NULL, 'dxObDGD4', '76561198306071341', NULL, 'M1LK', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Blackwell', NULL, NULL), - (247, 'Stormblade9886', NULL, NULL, NULL, 'ydwM1N5A', '76561198048396885', NULL, 'Stormblade9886', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Blade', NULL, NULL), - (248, 'Blank', NULL, NULL, NULL, 'ArQxe8wm', '76561199077975287', NULL, 'Blank', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Blank', NULL, NULL), - (249, 'Blivion', NULL, NULL, NULL, 'xd9BzWZm', '76561198211457311', NULL, 'Blivion', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Blivion', NULL, NULL), - (250, 'Blix', NULL, NULL, NULL, '6AXqYJY4', '76561198968956616', NULL, 'Blix', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Blix', NULL, NULL), - (251, 'Blizzy', NULL, NULL, NULL, 'd3ROYLe4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Blizzy', NULL, NULL), - (252, 'Blonde Walmart Lil Huddy', NULL, NULL, NULL, 'R40J3LKm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Blonde Walmart Lil Huddy', NULL, NULL), - (253, 'Bluedragon267', NULL, NULL, NULL, 'ndaVPZKm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bluedragon267', NULL, NULL), - (254, 'Bmend', NULL, NULL, NULL, 'x4oRKGoA', '76561198938659355', NULL, 'bmend', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bmend', NULL, NULL), - (255, 'Bobit', NULL, NULL, NULL, 'dlO6PYV4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bobit', NULL, NULL), - (256, 'Bone', NULL, NULL, NULL, 'AnJZbzJA', NULL, NULL, NULL, '690184412817784859', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:06:38', NULL, NULL, NULL, NULL, 'guest', 'Bone', NULL, NULL), - (257, 'boomchukkalaka', NULL, NULL, NULL, 'oAgMxVyd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'boomchukkalaka', NULL, NULL), - (258, 'BOOMerTheMighty', NULL, NULL, NULL, 'NmLgQ1yd', NULL, NULL, NULL, '203202052560519168', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 11:29:08', NULL, NULL, NULL, NULL, 'guest', 'BOOMerTheMighty', NULL, NULL), - (259, 'Boom_wildcat', NULL, NULL, NULL, '4Dn2vDLm', NULL, NULL, NULL, '548763200787578902', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 11:29:28', NULL, NULL, NULL, NULL, 'guest', 'Boom_wildcat', NULL, NULL), - (260, 'Bouncey', NULL, NULL, NULL, 'm7jRy8Md', NULL, NULL, NULL, '279256373575811072', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 11:29:08', NULL, NULL, NULL, NULL, 'guest', 'Bouncey', NULL, NULL), - (261, 'Boyle', NULL, NULL, NULL, 'nm6bX13m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Boyle', NULL, NULL), - (262, 'Brady', NULL, NULL, NULL, 'dKZBJje4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Brady', NULL, NULL), - (263, 'brain', NULL, NULL, NULL, 'nm6yEkGd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'brain', NULL, NULL), - (264, 'Brandon1234', NULL, NULL, NULL, 'oAQv9DN4', '76561198099029893', NULL, 'bfranklin7555', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Brandon1234', NULL, NULL), - (265, 'BravoFoxtrot', NULL, NULL, NULL, 'kdKjenY4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BravoFoxtrot', NULL, NULL), - (266, 'breadman', NULL, NULL, NULL, '4v81gJWm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'breadman', NULL, NULL), - (267, 'Brian', NULL, NULL, NULL, '4PNnq6Mm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Brian', NULL, NULL), - (268, 'BriskCascade', NULL, NULL, NULL, 'm6qyjWLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BriskCascade', NULL, NULL), - (269, 'Brobie', NULL, NULL, NULL, 'mybqnRwA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Brobie', NULL, NULL), - (270, 'Brojangs', NULL, NULL, NULL, 'mLDwX28m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Brojangs', NULL, NULL), - (271, 'BroncoBoolin', NULL, NULL, NULL, 'm7QaMGl4', '76561198272935302', NULL, 'BroncoBoolin', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BroncoBoolin', NULL, NULL), - (272, 'Brooks', NULL, NULL, NULL, '4knNDqLA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Brooks', NULL, NULL), - (273, 'BROTHERS KEEPER', NULL, NULL, NULL, '4Z7Znnrd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BROTHERS KEEPER', NULL, NULL), - (274, 'Browne', NULL, NULL, NULL, 'mG7jyBwm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Browne', NULL, NULL), - (275, 'Bruhnobi', NULL, NULL, NULL, 'mybqKV6A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bruhnobi', NULL, NULL), - (276, 'Brute', NULL, NULL, NULL, 'dJVD5EQd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Brute', NULL, NULL), - (277, 'bryce', NULL, NULL, NULL, 'mLLBzXZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'bryce', NULL, NULL), - (278, 'Buck', NULL, NULL, NULL, 'AYzJ2nw4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Buck', NULL, NULL), - (279, 'Burb', NULL, NULL, NULL, 'dN9VnnW4', '76561198150489905', NULL, 'Burb', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Burb', NULL, NULL), - (280, 'Burntcopper', NULL, NULL, NULL, '4ZkX9bLd', '76561198283190871', NULL, 'Joe.whit', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Burntcopper', NULL, NULL), - (281, 'Butters', NULL, NULL, NULL, 'mqEaZO5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Butters', NULL, NULL), - (282, 'ButterToast', NULL, NULL, NULL, 'w4WeBkqm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ButterToast', NULL, NULL), - (283, 'Bwood135', NULL, NULL, NULL, 'v4D0GyL4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bwood135', NULL, NULL), - (284, 'Byte', NULL, NULL, NULL, 'AYzjRPe4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Byte', NULL, NULL), - (285, 'cacrush', NULL, NULL, NULL, 'ArngEwYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'cacrush', NULL, NULL), - (286, 'Cactus', NULL, NULL, NULL, 'dw8QYw0m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cactus', NULL, NULL), - (287, 'Cain', NULL, NULL, NULL, 'Pm7NE5ld', '76561198026877665', NULL, 'Cainiculs', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cain', NULL, NULL), - (288, 'CalamitousPanda', NULL, NULL, NULL, 'dlOQvPX4', NULL, NULL, NULL, '266741836331221003', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:01:30', NULL, NULL, NULL, NULL, 'guest', 'CalamitousPanda', NULL, NULL), - (289, 'Cale', NULL, NULL, NULL, 'nm6wWxgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cale', NULL, NULL), - (290, 'Camel Baron', NULL, NULL, NULL, '4EZ368Wd', NULL, NULL, NULL, '173872803798319104', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:01:55', NULL, NULL, NULL, NULL, 'guest', 'Camel Baron', NULL, NULL), - (291, 'Captain Ali', NULL, NULL, NULL, 'VmMOryY4', '76561198282935938', NULL, 'Captain Ali', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Captain Ali', NULL, NULL), - (292, 'Captin228', NULL, NULL, NULL, 'dOjwMey4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Captin228', NULL, NULL), - (293, 'Cardiac', NULL, NULL, NULL, 'AXZe87vd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cardiac', NULL, NULL), - (294, 'Carioquensi', NULL, NULL, NULL, '6AXe2Q64', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Carioquensi', NULL, NULL), - (295, 'Carroll', NULL, NULL, NULL, 'rdOPwZym', '76561198187182735', NULL, 'carroll2007', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Carroll', NULL, NULL), - (296, 'Carrot', NULL, NULL, NULL, 'EdVWLErm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Carrot', NULL, NULL), - (297, 'Carter', NULL, NULL, NULL, 'm6ozY30A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Carter', NULL, NULL), - (298, 'Carter Knox', NULL, NULL, NULL, 'QdJY2Pn4', '76561198400542118', NULL, 'carter', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Carter Knox', NULL, NULL), - (299, 'Casbha', NULL, NULL, NULL, 'xAYQZxGA', '76561198351512645', NULL, 'Casbha', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Casbha', NULL, NULL), - (300, 'Castaway', NULL, NULL, NULL, 'ndaxPMZ4', NULL, NULL, NULL, '132052109477543936', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:02:39', NULL, NULL, NULL, NULL, 'guest', 'Castaway', NULL, NULL), - (301, 'CatTamer007', NULL, NULL, NULL, '54koj9p4', '76561198203700975', NULL, 'CatTamer007', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'CatTamer007', NULL, NULL), - (302, 'CB8086', NULL, NULL, NULL, 'mR1ej6Ed', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'CB8086', NULL, NULL), - (303, 'Celdiseth', NULL, NULL, NULL, 'Pm7ky95m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Celdiseth', NULL, NULL), - (304, 'cerenoal', NULL, NULL, NULL, 'dKZwYbN4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'cerenoal', NULL, NULL), - (305, 'cha0syn', NULL, NULL, NULL, 'dwYPBJaA', '76561197987771037', NULL, 'chaøsyn', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'cha0syn', NULL, NULL), - (306, 'Chase C.', NULL, NULL, NULL, 'dx632oDA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Chase C.', NULL, NULL), - (307, 'cheap method', NULL, NULL, NULL, '54ko9aX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'cheap method', NULL, NULL), - (308, 'Cheddar', NULL, NULL, NULL, 'mbqMKNPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cheddar', NULL, NULL), - (309, 'CheersToUs', NULL, NULL, NULL, '6AXveo6d', NULL, NULL, NULL, '437728529002659851', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:03:46', NULL, NULL, NULL, NULL, 'guest', 'CheersToUs', NULL, NULL), - (310, 'Cheif22', NULL, NULL, NULL, 'dlO8V9Y4', '76561198119546164', NULL, 'cheif22', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cheif22', NULL, NULL), - (311, 'CherryyBoomb', NULL, NULL, NULL, '8mRE5nEd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'CherryyBoomb', NULL, NULL), - (312, 'Chilly_Bearr', NULL, NULL, NULL, 'bdz5OMl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Chilly', NULL, NULL), - (313, 'Chintzy', NULL, NULL, NULL, 'dKbaEGZ4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Chintzy', NULL, NULL), - (314, 'Chongy', NULL, NULL, NULL, 'dJrj7qwd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Chongy', NULL, NULL), - (315, 'Chops', NULL, NULL, NULL, 'd31kM2OA', '76561199114007165', NULL, 'Chops', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Chops', NULL, NULL), - (316, 'ChrisPwhy', NULL, NULL, NULL, 'd2pDMV5A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ChrisPwhy', NULL, NULL), - (317, 'Chrome', NULL, NULL, NULL, 'QdJ3Q7bm', '76561198066520407', NULL, 'Chrome', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Chrome', NULL, NULL), - (318, 'Chronos', NULL, NULL, NULL, 'x4oRgMXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Chronos', NULL, NULL), - (319, 'Chugalug', NULL, NULL, NULL, 'LmpJzb24', '76561198014695190', NULL, 'ML Chugalug', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Chugalug', NULL, NULL), - (320, 'Chuggy', NULL, NULL, NULL, 'mjY2ggad', '76561198426320721', NULL, 'Chuggy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Chuggy', NULL, NULL), - (321, 'chvrlye', NULL, NULL, NULL, 'ArQLP9Xm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'chvrlye', NULL, NULL), - (322, 'ClassicKirbs', NULL, NULL, NULL, 'Qd58nkE4', '76561198447850448', NULL, 'ClassicKirbs', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ClassicKirbs', NULL, NULL), - (323, 'Cletus', NULL, NULL, NULL, '0mqrMqXA', '76561198088813614', NULL, 'Cletus', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cletus', NULL, NULL), - (324, 'Cmos', NULL, NULL, NULL, 'v4DgwbLA', '76561198272027298', NULL, 'Cmos', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cmos', NULL, NULL), - (325, 'C. Nahrstedt', NULL, NULL, NULL, 'dN6vOP0d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'C. Nahrstedt', NULL, NULL), - (326, 'cobrafighter', NULL, NULL, NULL, 'AgZWOzRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'cobrafighter', NULL, NULL), - (327, 'codux', NULL, NULL, NULL, 'ndlRoKwA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'codux', NULL, NULL), - (328, 'colto Reed', NULL, NULL, NULL, '4orR2VVA', '76561198190564191', NULL, 'Jon Groth', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'colto Reed', NULL, NULL), - (329, 'competingsnail', NULL, NULL, NULL, '6AXW3xRm', '76561198100212135', NULL, 'Competingsnail', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'competingsnail', NULL, NULL), - (330, 'Comradequestion', NULL, NULL, NULL, 'AQ1VD73A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Comra', NULL, NULL), - (331, 'connor', NULL, NULL, NULL, 'nm6LVPq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'connor', NULL, NULL), - (332, 'Contigo', NULL, NULL, NULL, 'mG2OY3Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Contigo', NULL, NULL), - (333, 'Coop', NULL, NULL, NULL, '41orQxRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Coop', NULL, NULL), - (334, 'C. Ord', NULL, NULL, NULL, 'amGzQpKd', '76561198120511365', NULL, 'NR. straycord', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'C. Ord', NULL, NULL), - (335, 'Cortex', NULL, NULL, NULL, 'm6jpBVRm', '76561198136447547', NULL, 'Po', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cortex', NULL, NULL), - (336, 'Couch', NULL, NULL, NULL, 'd9nXgXJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Couch', NULL, NULL), - (337, 'Court15634', NULL, NULL, NULL, 'mjn99L0m', '76561198122891244', NULL, 'Court15634', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Court', NULL, NULL), - (338, 'Crimson', NULL, NULL, NULL, 'Ar08bpXd', '76561199117940201', NULL, 'Crimson', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Crimson', NULL, NULL), - (339, 'Cronley', NULL, NULL, NULL, 'Md3M5qZA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cronley', NULL, NULL), - (340, 'CrowQ', NULL, NULL, NULL, 'dVZgwN5d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'CrowQ', NULL, NULL), - (341, 'Cryptic', NULL, NULL, NULL, 'dxDpDg2d', '76561198163416292', NULL, 'Senator Jon Ossoff', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cryptic', NULL, NULL), - (342, 'Curly', NULL, NULL, NULL, '4olZMeZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Curly', NULL, NULL), - (343, 'Cynicalyz', NULL, NULL, NULL, 'dwpXRp0m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Cynicalyz', NULL, NULL), - (344, 'Daisy', NULL, NULL, NULL, 'dl3z7pl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Daisy', NULL, NULL), - (345, 'dalejunior93', NULL, NULL, NULL, 'VdxEKg5m', NULL, NULL, 'dalejunior93', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'dalejunior93', NULL, NULL), - (346, 'Damaged', NULL, NULL, NULL, 'LmpkKKkd', '76561198198724038', NULL, 'Damaged', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Damaged', NULL, NULL), - (347, 'Damascus', NULL, NULL, NULL, 'Md3Q1OLA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Damascus', NULL, NULL), - (348, 'Daniel G', NULL, NULL, NULL, 'dNMo8z74', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Daniel G', NULL, NULL), - (349, 'DaRealWamos', NULL, NULL, NULL, 'm6Y3XJ5d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DaRealWamos', NULL, NULL), - (350, 'Datleee', NULL, NULL, NULL, '841kKg7m', '76561198867472448', NULL, 'datleee', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Datleee', NULL, NULL), - (351, 'David', NULL, NULL, NULL, 'dVD3MvrA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'David', NULL, NULL), - (352, 'DaviruzZ', NULL, NULL, NULL, 'dlO2elB4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DaviruzZ', NULL, NULL), - (353, 'Dawsyn', NULL, NULL, NULL, 'mpOg17ld', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dawsyn', NULL, NULL), - (354, 'Deadlines', NULL, NULL, NULL, 'pmbOPkXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Deadlines', NULL, NULL), - (355, 'deadshot', NULL, NULL, NULL, 'd5j5YLqm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'deadshot', NULL, NULL), - (356, 'DeathpactAngel', NULL, NULL, NULL, 'QdJXvVnA', '76561198327983879', NULL, 'DeathpactAngel', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DeathpactAngel', NULL, NULL), - (357, 'Decker', NULL, NULL, NULL, 'AXB8j9vd', NULL, NULL, NULL, '269307869789290497', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 19:32:30', NULL, NULL, '{"id":"2fc0ed3b58e5c5255b0c12cf6f2da1dce4d98068ba61cfb4ebc818d84e937025","displayName":"Decker","username":"maddogdecker","name":{"givenName":"Decker"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Decker', NULL, '2025-12-17 19:33:57'), - (358, 'Ded', NULL, NULL, NULL, 'VdxEB7wm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ded', NULL, NULL), - (359, 'DeepWinter', NULL, NULL, NULL, 'dKwqnXRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DeepWinter', NULL, NULL), - (360, 'Delta8', NULL, NULL, NULL, 'dVbMP86d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Delta8', NULL, NULL), - (361, 'Demon', NULL, NULL, NULL, 'mLLZ0VQm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Demon', NULL, NULL), - (362, 'Dempsey', NULL, NULL, NULL, 'd2VKpZod', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dempsey', NULL, NULL), - (363, 'Denis Prager', NULL, NULL, NULL, '4WPkqONd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Denis Prager', NULL, NULL), - (364, 'Dennis', NULL, NULL, NULL, 'dxDx6GEd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dennis', NULL, NULL), - (365, 'Depressing_Tyrant', NULL, NULL, NULL, 'dlkOgEY4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Depressing_Tyrant', NULL, NULL), - (366, 'Derek', NULL, NULL, NULL, '4kqBGbRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Derek', NULL, NULL), - (367, 'DerLoeweVonAfrika', NULL, NULL, NULL, 'AXBNLjzd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DerLoeweVonAfrika', NULL, NULL), - (368, 'derpymemeo', NULL, NULL, NULL, 'mjEvk15d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'derpymemeo', NULL, NULL), - (369, 'Devildoc', NULL, NULL, NULL, 'dlkgN5V4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Devildoc', NULL, NULL), - (370, 'DevourRocks', NULL, NULL, NULL, 'Ar6VnZXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DevourRocks', NULL, NULL), - (371, 'Dhariq', NULL, NULL, NULL, 'd2VRGKJd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dhariq', NULL, NULL), - (372, 'Dieoxide', NULL, NULL, NULL, 'dODBVy3m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dieoxide', NULL, NULL), - (373, 'dillpickledc', NULL, NULL, NULL, 'O4Z5J8lA', '76561198106162328', NULL, 'dillpickledc', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'dillpickledc', NULL, NULL), - (374, 'Dizskies', NULL, NULL, NULL, 'GmjzxPam', '76561198109628693', NULL, 'Limes and Lemons', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dizskies', NULL, NULL), - (375, 'Dj Yamato', NULL, NULL, NULL, 'dxKz7n24', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dj Yamato', NULL, NULL), - (376, 'DocSlick', NULL, NULL, NULL, 'dw8Wbv0m', '76561198047704464', NULL, '[PHTAC] DocSlick', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DocSlick', NULL, NULL), - (377, 'Doctor_Jonesy', NULL, NULL, NULL, '40kNGKEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Doctor_Jonesy', NULL, NULL), - (378, 'Dodo', NULL, NULL, NULL, '41WDLg7m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dodo', NULL, NULL), - (379, 'Doeboy', NULL, NULL, NULL, 'mj6QGq5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Doeboy', NULL, NULL), - (380, 'Doglegs', NULL, NULL, NULL, 'ZdNYvEy4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Doglegs', NULL, NULL), - (381, 'Dominguez', NULL, NULL, NULL, 'dNMjqYW4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dominguez', NULL, NULL), - (382, 'Don', NULL, NULL, NULL, 'VmMzYEkA', '76561198324977192', NULL, 'Don', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Don', NULL, NULL), - (383, 'Dongas', NULL, NULL, NULL, '4E92NPn4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dongas', NULL, NULL), - (384, 'Dopplerizer', NULL, NULL, NULL, 'oAgLGQj4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dopplerizer', NULL, NULL), - (385, 'DoubleTap', NULL, NULL, NULL, '40k0QWYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DoubleTap', NULL, NULL), - (386, 'Dragon', NULL, NULL, NULL, 'daJeNzlm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dragon', NULL, NULL), - (387, 'Dragon1326452', NULL, NULL, NULL, '41qEGjR4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dragon', NULL, NULL), - (388, 'Dr. Angle', NULL, NULL, NULL, 'v4Dgx36A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dr. Angle', NULL, NULL), - (389, 'DrBlox3s', NULL, NULL, NULL, 'd8qWLL8m', '76561199590616283', NULL, 'DrStages', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DrBlox3s', NULL, NULL), - (390, 'Dread', NULL, NULL, NULL, 'AXNVpNRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dread', NULL, NULL), - (391, 'D. Reid', NULL, NULL, NULL, '54kyQKzm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'D. Reid', NULL, NULL), - (415, 'DrippyIce', NULL, NULL, NULL, '4E2kMeXd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DrippyIce', NULL, NULL), - (416, 'Dr. Machicken', NULL, NULL, NULL, 'd8V6poOA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Dr. Machicken', NULL, NULL), - (417, 'Duane', NULL, NULL, NULL, 'd56Bq3Vm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Duane', NULL, NULL), - (418, 'Ducky', NULL, NULL, NULL, 'mM6Pq3EA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ducky', NULL, NULL), - (419, 'DudeGuy', NULL, NULL, NULL, 'kdKM7rYA', '76561198093312690', NULL, 'DudeGuy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'DudeGuy', NULL, NULL), - (420, 'Duke', NULL, NULL, NULL, 'dzk319ym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Duke', NULL, NULL), - (421, 'Durkio503', NULL, NULL, NULL, 'dNrYQgkd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Durkio', NULL, NULL), - (422, 'dyligan', NULL, NULL, NULL, '4WB0aXNA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'dyligan', NULL, NULL), - (423, 'Eaglehart', NULL, NULL, NULL, 'Md32Pb24', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Eaglehart', NULL, NULL), - (424, 'Earl Listerine', NULL, NULL, NULL, 'ndlVJqOA', '76561198137171251', NULL, 'Earl Listerine', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Earl Listerine', NULL, NULL), - (425, 'Edge', NULL, NULL, NULL, 'x4oEO8Xm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Edge', NULL, NULL), - (426, 'awesome332476', NULL, NULL, NULL, 'dKOgPzNd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ehab32', NULL, NULL), - (427, 'Elfipe', NULL, NULL, NULL, 'bdzMnq14', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Elfipe', NULL, NULL), - (428, 'Ellezz', NULL, NULL, NULL, '4036lZVA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ellezz', NULL, NULL), - (429, 'E. Newton', NULL, NULL, NULL, 'N4ErKoDd', '76561198073563973', NULL, 'BOT Jack', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'E. Newton', NULL, NULL), - (430, 'eprov', NULL, NULL, NULL, 'dzvMjKld', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'eprov', NULL, NULL), - (431, 'ErikoAurelion', NULL, NULL, NULL, 'd2wE9B8m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ErikoAurelion', NULL, NULL), - (432, 'Eru', NULL, NULL, NULL, '8d8lBL0d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Eru', NULL, NULL), - (433, 'Eternus', NULL, NULL, NULL, 'mpqn6vkA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Eternus', NULL, NULL), - (434, 'Evan', NULL, NULL, NULL, '4P107gwd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Evan', NULL, NULL), - (435, 'evilbawb', NULL, NULL, NULL, '40Da6Lx4', '76561198054182170', NULL, 'evilbawb', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'evilbawb', NULL, NULL), - (436, 'exceL', NULL, NULL, NULL, 'd8GMXNV4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'exceL', NULL, NULL), - (437, 'ExpiredDawn', NULL, NULL, NULL, 'v4DOV8qA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ExpiredDawn', NULL, NULL), - (438, 'Expo_Indigo', NULL, NULL, NULL, 'LmpJ3j94', NULL, NULL, 'Expo_Indigo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Expo_Indigo', NULL, NULL), - (439, 'ExtremeDream', NULL, NULL, NULL, 'd9ovY5pA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ExtremeDream', NULL, NULL), - (440, 'Eyebr0wz', NULL, NULL, NULL, 'dzva1L9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Eyebr0wz', NULL, NULL), - (441, 'F13tch (Fletch)', NULL, NULL, NULL, '4kqkE0Lm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'F13tch (Fletch)', NULL, NULL), - (442, 'Face', NULL, NULL, NULL, '41xa1GEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Face', NULL, NULL), - (443, 'Fafnir', NULL, NULL, NULL, 'dK3lXY5d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fafnir', NULL, NULL), - (444, 'Fantasy', NULL, NULL, NULL, 'ndlboPlA', '76561198087847108', NULL, 'TFantasyGaming.TTV', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fantasy', NULL, NULL), - (445, 'FauxShot', NULL, NULL, NULL, 'ydw70y5d', NULL, NULL, 'FauxShot', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'FauxShot', NULL, NULL), - (446, 'Felix The Husky', NULL, NULL, NULL, 'dVkr9Epm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Felix The Husky', NULL, NULL), - (447, 'Fenrir', NULL, NULL, NULL, 'v4D3kbyA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fenrir', NULL, NULL), - (448, 'god_ferny', NULL, NULL, NULL, 'd8L1qKVd', '76561198263380204', NULL, 'god_ferny', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ferny', NULL, NULL), - (449, 'fiIicity', NULL, NULL, NULL, '40YY7OVd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'fiIicity', NULL, NULL), - (450, 'Fin Silver', NULL, NULL, NULL, 'Md3a2MGA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fin Silver', NULL, NULL), - (451, 'fis10tris10', NULL, NULL, NULL, 'mRrE1lom', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'fis10tris10', NULL, NULL), - (452, 'Fission', NULL, NULL, NULL, 'mR1NrPYd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fission', NULL, NULL), - (453, 'Flap_Jacks', NULL, NULL, NULL, '54kMebXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Flap_Jacks', NULL, NULL), - (454, 'Flickir', NULL, NULL, NULL, '0mqjLozA', '76561198428723765', NULL, 'Flickir', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Flickir', NULL, NULL), - (455, 'flippa', NULL, NULL, NULL, 'd3Rl0OY4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'flippa', NULL, NULL), - (456, 'Flipzzz21', NULL, NULL, NULL, 'dlno03XA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Flipzzy', NULL, NULL), - (457, 'FluffyEvil', NULL, NULL, NULL, 'mjnDNL3m', '76561198014354731', NULL, 'FluffyEvil', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'FluffyEvil', NULL, NULL), - (458, 'Flunky', NULL, NULL, NULL, 'mGOpGLZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Flunky', NULL, NULL), - (459, 'Fochezatto', NULL, NULL, NULL, 'AQ0675xm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fochezatto', NULL, NULL), - (460, 'Folz', NULL, NULL, NULL, 'dwYlB71A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Folz', NULL, NULL), - (461, 'Fonzie', NULL, NULL, NULL, 'mj68Y3bm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fonzie', NULL, NULL), - (462, 'Fordring', NULL, NULL, NULL, 'dxMkLv1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fordring', NULL, NULL), - (463, 'ForrestFox', NULL, NULL, NULL, 'mjYq0MVd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ForrestFox', NULL, NULL), - (464, 'Forsaken', NULL, NULL, NULL, 'dJrGrkbd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Forsaken', NULL, NULL), - (465, 'FrankensteinMD', NULL, NULL, NULL, 'mGGwaMrm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'FrankensteinMD', NULL, NULL), - (466, 'Frankiepals', NULL, NULL, NULL, '41YVG154', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Frankiepals', NULL, NULL), - (467, 'Freelancer', NULL, NULL, NULL, '0mq8bX5d', '76561198327259293', NULL, 'Freelancer19', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Freelancer', NULL, NULL), - (468, 'French Toast?', NULL, NULL, NULL, 'NmLXw9Nm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'French Toast?', NULL, NULL), - (469, 'FreqiMANN', NULL, NULL, NULL, 'dJ9OElB4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'FreqiMANN', NULL, NULL), - (470, 'Froltz', NULL, NULL, NULL, 'Anal0wJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Froltz', NULL, NULL), - (471, 'FrostyWolfe', NULL, NULL, NULL, 'rdO7KaPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'FrostyWolfe', NULL, NULL), - (472, 'FrozenRider', NULL, NULL, NULL, '0mqqyG1m', '76561198859865745', NULL, 'FrozenRider91', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'FrozenRider', NULL, NULL), - (473, 'Fruitloop', NULL, NULL, NULL, 'm6YMMDQd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fruitloop', NULL, NULL), - (474, 'Fugton', NULL, NULL, NULL, 'Agv90Kym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Fugton', NULL, NULL), - (475, 'FuntyMcCraiger', NULL, NULL, NULL, 'AgkMV1jA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'FuntyMcCraiger', NULL, NULL), - (476, 'fustev', NULL, NULL, NULL, 'kdKXWGNm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'fustev', NULL, NULL), - (477, 'gagestep', NULL, NULL, NULL, 'rdOPZ8em', '76561198168728585', NULL, 'gagestep', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'gagestep', NULL, NULL), - (478, 'Gandalf_theGr8p', NULL, NULL, NULL, 'dlj52DXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gandalf', NULL, NULL), - (479, 'Ganrax', NULL, NULL, NULL, 'Pm7kELXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ganrax', NULL, NULL), - (480, 'Gary', NULL, NULL, NULL, 'mRB3oJYm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gary', NULL, NULL), - (481, 'George419', NULL, NULL, NULL, 'o4PKBRlA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'George419', NULL, NULL), - (482, 'Gies', NULL, NULL, NULL, 'mb268pXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gies', NULL, NULL), - (483, 'Giland', NULL, NULL, NULL, 'NmLpqJam', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Giland', NULL, NULL), - (484, 'Gilbert', NULL, NULL, NULL, 'ZdNBGWwd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gilbert', NULL, NULL), - (485, 'Gillette', NULL, NULL, NULL, 'ZdNXQDGA', '76561198075144501', NULL, 'zgillette2018', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gillette', NULL, NULL), - (486, 'Gio', NULL, NULL, NULL, 'x4oaR1Gm', '76561198050158782', NULL, 'Gio7181', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gio', NULL, NULL), - (487, 'Giraffe_Actual', NULL, NULL, NULL, 'mb1neeEd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Giraffe_Actual', NULL, NULL), - (488, 'Glass', NULL, NULL, NULL, 'ZdNRzxkd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Glass', NULL, NULL), - (489, 'Gleg', NULL, NULL, NULL, '4oj73eoA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gleg', NULL, NULL), - (490, 'GLI', NULL, NULL, NULL, 'w4WDkpjd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'GLI', NULL, NULL), - (491, 'G. Misfit', NULL, NULL, NULL, '4EQ0NkD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'G. Misfit', NULL, NULL), - (492, 'goatman', NULL, NULL, NULL, 'dOOOlzWd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'goatman', NULL, NULL), - (493, 'Goblin', NULL, NULL, NULL, 'dJPNk9nA', '76561199269066043', NULL, 'Goblin', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Goblin', NULL, NULL), - (494, 'Goblin0136', NULL, NULL, NULL, '4ZDqkbem', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Goblin0136', NULL, NULL), - (495, 'gocubsgo', NULL, NULL, NULL, 'dNMllJo4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'gocubsgo', NULL, NULL), - (496, 'Haochen Goemon', NULL, NULL, NULL, '1ArKK6Y4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Goemon', NULL, NULL), - (497, 'Gomeasy45', NULL, NULL, NULL, 'mybg6JJA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gomeasy45', NULL, NULL), - (498, 'Gonzas', NULL, NULL, NULL, '4vExLzOA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gonzas', NULL, NULL), - (499, 'Goose117', NULL, NULL, NULL, 'AQ9y71aA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Goose117', NULL, NULL), - (500, 'Gorilla', NULL, NULL, NULL, '4DQBMX6d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gorilla', NULL, NULL), - (501, 'gossler', NULL, NULL, NULL, 'xd9V7YEm', '76561197962019610', NULL, 'chickendoose', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'gossler', NULL, NULL), - (502, 'Goyu', NULL, NULL, NULL, '64vvYGk4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Goyu', NULL, NULL), - (503, 'Grass(aka your lawn)', NULL, NULL, NULL, '54koopR4', '76561198194924901', NULL, 'Grass(aka your lawn)', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Grass(aka your lawn)', NULL, NULL), - (504, 'Graver', NULL, NULL, NULL, '4v0WwbOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Graver', NULL, NULL), - (505, 'Gravity', NULL, NULL, NULL, 'O4Za9geA', '76561198101905312', NULL, 'Gravityyy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gravity', NULL, NULL), - (506, 'grayy', NULL, NULL, NULL, 'GmjJa35m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'grayy', NULL, NULL), - (507, 'Gree', NULL, NULL, NULL, 'm6YVxaRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gree', NULL, NULL), - (508, 'BacktothePasture', NULL, NULL, NULL, 'bdz9ePb4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gregory House MD', NULL, NULL), - (509, 'Grenzoocoon', NULL, NULL, NULL, 'dxOW7r24', '76561198132489026', NULL, 'Grenz', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Grenzoocoon', NULL, NULL), - (510, 'Grey', NULL, NULL, NULL, 'x4o11yMm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Grey', NULL, NULL), - (511, 'Griffin', NULL, NULL, NULL, 'd3RVlrO4', NULL, NULL, 'mwelshans', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Griffin', NULL, NULL), - (512, 'RavePanda', NULL, NULL, NULL, '6AXMZBY4', '76561198034261728', NULL, 'RavePanda', '275103975873708042', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 13:59:29', NULL, NULL, NULL, NULL, 'guest', 'Griggs', NULL, NULL), - (513, 'Grim', NULL, NULL, NULL, 'm7OVvxMm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Grim', NULL, NULL), - (514, 'Grim5902', NULL, NULL, NULL, '8mRVk07m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Grim5902', NULL, NULL), - (515, 'GrimmHearted', NULL, NULL, NULL, 'ndaRleZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'GrimmHearted', NULL, NULL), - (516, 'Grizzly', NULL, NULL, NULL, 'bdzYJ5y4', '76561198067735811', NULL, 'sweaty_tacos', '440322430884642817', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 13:58:46', NULL, NULL, NULL, NULL, 'member', 'Grizzly', NULL, NULL), - (517, 'GroundControl', NULL, NULL, NULL, 'QdJ60Jod', '76561198255420821', NULL, 'GroundControl', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'GroundControl', NULL, NULL), - (518, 'gtsiam', NULL, NULL, NULL, 'mj58L1Vd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'gtsiam', NULL, NULL), - (519, 'Guardian', NULL, NULL, NULL, 'Anaer1Jm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Guardian', NULL, NULL), - (520, 'Gumi', NULL, NULL, NULL, 'ArQp7J8m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gumi', NULL, NULL), - (521, 'Gumpy', NULL, NULL, NULL, '6AXWk10m', '76561199102427874', NULL, 'Gumpy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Gumpy', NULL, NULL), - (522, 'gunmetals', NULL, NULL, NULL, 'ndae8EZd', '76561198079555940', NULL, 'gunmetals', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'gunmetals', NULL, NULL), - (523, 'Hadchaos', NULL, NULL, NULL, 'dBnqEwvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hadchaos', NULL, NULL), - (524, 'Hakugard', NULL, NULL, NULL, 'dVbj3vZd', '76561197999851233', NULL, 'Hakugard', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hakugard', NULL, NULL), - (525, 'Hallway', NULL, NULL, NULL, 'AQOjJNLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hallway', NULL, NULL), - (526, 'Han', NULL, NULL, NULL, 'kdKjkM74', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Han', NULL, NULL), - (527, 'Harambe', NULL, NULL, NULL, '4oMeX9Gm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Harambe', NULL, NULL), - (528, 'HawkeyeIsTaken', NULL, NULL, NULL, 'AQOjKlgd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hawkeye', NULL, NULL), - (529, 'HeadGoesBoom', NULL, NULL, NULL, 'ydwvP3Q4', '76561198046119897', NULL, 'HeadGoesBoom', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'HeadGoesBoom', NULL, NULL), - (530, 'Hearts', NULL, NULL, NULL, 'daBo50rm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hearts', NULL, NULL), - (531, 'helicobtor', NULL, NULL, NULL, '4oxybLYd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'helicobtor', NULL, NULL), - (532, 'Hells', NULL, NULL, NULL, 'kdKjj8M4', '76561198044479225', NULL, 'hells_armorer', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hells', NULL, NULL), - (533, 'HellzGuard', NULL, NULL, NULL, 'm6qlzRzd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'HellzGuard', NULL, NULL), - (534, 'Hephaestus', NULL, NULL, NULL, 'dKbl16R4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hephaestus', NULL, NULL), - (535, 'Hexiam', NULL, NULL, NULL, '4PPG8al4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hexiam', NULL, NULL), - (536, 'Hey_ImMatt', NULL, NULL, NULL, '0mqNlbkA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hey_ImMatt', NULL, NULL), - (537, 'Hippiejesus', NULL, NULL, NULL, 'ndalZan4', '76561197998936468', NULL, 'HippieJesus', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hippiejesus', NULL, NULL), - (538, 'Hips', NULL, NULL, NULL, 'm6o1vJzA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hips', NULL, NULL), - (539, 'Hizumi', NULL, NULL, NULL, '54k7DM54', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hizumi', NULL, NULL), - (540, 'Hobday', NULL, NULL, NULL, 'o4PyjPvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hobday', NULL, NULL), - (541, 'Homerow', NULL, NULL, NULL, '41w56QMm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Homerow', NULL, NULL), - (542, 'Homie', NULL, NULL, NULL, 'dVbZqVld', '76561199200901479', NULL, 'ThyHomie', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Homie', NULL, NULL), - (543, 'horrorhynde', NULL, NULL, NULL, 'dOpPgrOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'horrorhynde', NULL, NULL), - (544, 'HouzevnatyKacer', NULL, NULL, NULL, '4E51DgD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'HouzevnatyKacer', NULL, NULL), - (545, 'hoverdoge', NULL, NULL, NULL, 'NmL2aZJ4', '76561198882266024', NULL, 'hoverdoge', '398632461665435671', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:01:38', NULL, NULL, NULL, NULL, 'guest', 'hoverdoge', NULL, NULL), - (546, 'Huffy', NULL, NULL, NULL, 'm6ZnNjRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Huffy', NULL, NULL), - (547, 'HumbleGoat316', NULL, NULL, NULL, 'dVBgEaqd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'HumbleGoat316', NULL, NULL), - (548, 'Humble_Marksman', NULL, NULL, NULL, 'amGO55Zm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Humble_Marksman', NULL, NULL), - (549, 'hybu', NULL, NULL, NULL, 'AgxgKPj4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'hybu', NULL, NULL), - (550, 'HyDa_Scarface', NULL, NULL, NULL, 'xd96pVzm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'HyDa_Scarface', NULL, NULL), - (551, 'HydnalX42', NULL, NULL, NULL, 'pmbMM9Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'HydnalX42', NULL, NULL), - (552, 'Hydra', NULL, NULL, NULL, 'd9XQBry4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hydra', NULL, NULL), - (553, 'Hyper', NULL, NULL, NULL, '41G2ZoEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Hyper', NULL, NULL), - (554, 'IAmNomad', NULL, NULL, NULL, 'dVb1zMpd', '76561198829888667', NULL, 'Shadow7EV3N', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'IAmNomad', NULL, NULL), - (555, 'Iceberg Bot', NULL, NULL, NULL, 'rdOlX8Pm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Iceberg Bot', NULL, NULL), - (556, 'Iceberg Gaming Team', NULL, NULL, NULL, 'AnjKD2pA', NULL, NULL, NULL, '615301505074987008', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:02:48', NULL, NULL, NULL, NULL, 'guest', 'Iceberg Gaming Team', NULL, NULL), - (557, 'IdentityNull', NULL, NULL, NULL, '8d8PrVvd', NULL, NULL, NULL, '305161162910072832', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 19:03:58', NULL, NULL, '{"id":"4da8d03a3ff898132f3ec52784995af00d09d46dc156436b4c9c48e46424348c","displayName":"IdentityNull","username":"identitynull","name":{"givenName":"IdentityNull"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'IdentityNull', NULL, '2025-12-17 19:05:25'), - (558, 'igelnico', NULL, NULL, NULL, '4WP8xObd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'igelnico', NULL, NULL), - (559, 'Illuminasty', NULL, NULL, NULL, 'dzON9nLm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Illuminasty', NULL, NULL), - (560, 'ImageNation', NULL, NULL, NULL, '4ZVRlM74', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ImageNation', NULL, NULL), - (561, 'ImpeeialGamer1', NULL, NULL, NULL, 'dankzXDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ImpeeialGamer1', NULL, NULL), - (562, 'IndigoFox', NULL, NULL, NULL, 'o4P6bvmR', '76561197991996737', NULL, 'IndigoFox', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'IndigoFox', NULL, NULL), - (563, 'internetiger01', NULL, NULL, NULL, 'pmbGG2VA', '76561198116821249', NULL, 'internetiger01', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'internetiger01', NULL, NULL), - (564, 'iPoopLegos', NULL, NULL, NULL, 'ArgB5Kw4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'iPoopLegos', NULL, NULL), - (565, 'PhoenixInIris', NULL, NULL, NULL, 'dVDa6EzA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Iris', NULL, NULL), - (566, 'irmatt', NULL, NULL, NULL, '41oMNaEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'irmatt', NULL, NULL), - (567, 'Iron', NULL, NULL, NULL, 'd8VzLnvA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Iron', NULL, NULL), - (568, 'Itskaiser', NULL, NULL, NULL, 'AYznBMa4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Itskaiser', NULL, NULL), - (569, 'ItzBlueTV', NULL, NULL, NULL, '4v81QGBm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ItzBlueTV', NULL, NULL), - (570, 'Ivan', NULL, NULL, NULL, 'd90KjvE4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ivan', NULL, NULL), - (571, 'J2K Whiro', NULL, NULL, NULL, '4kRwppEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'J2K Whiro', NULL, NULL), - (572, 'jack', NULL, NULL, NULL, 'ndlRWWYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'jack', NULL, NULL), - (573, 'Jackal', NULL, NULL, NULL, 'd8DzyGpd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jackal', NULL, NULL), - (574, 'Jacket', NULL, NULL, NULL, 'Md3MjvgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jacket', NULL, NULL), - (575, 'Jackson', NULL, NULL, NULL, '6AX5PQ64', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jackson', NULL, NULL), - (576, 'Acehunter243', NULL, NULL, NULL, 'An28Z32A', NULL, NULL, NULL, '326577793959723009', NULL, NULL, '2025-12-15 10:57:11', '2025-12-16 21:20:55', NULL, NULL, NULL, NULL, 'guest', 'Jackson', NULL, NULL), - (577, 'Jaime', NULL, NULL, NULL, 'dl3J95l4', '76561198796299229', NULL, 'Jaime', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jaime', NULL, NULL), - (578, 'Jalopy', NULL, NULL, NULL, '8d8l0Kgd', NULL, NULL, 'jalopy13f', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jalopy', NULL, NULL), - (579, 'JAM', NULL, NULL, NULL, 'Vdxw5kO4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'JAM', NULL, NULL), - (580, 'james', NULL, NULL, NULL, 'ydwen00A', '76561198363032208', NULL, 'spuge bob', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'james', NULL, NULL), - (581, 'Jay', NULL, NULL, NULL, 'lAerOQ34', '76561198821564480', NULL, 'Jay', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jay', NULL, NULL), - (582, 'jbandzbabyy', NULL, NULL, NULL, 'AnbvzkLA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'jbandzbabyy', NULL, NULL), - (583, 'Jbriggs', NULL, NULL, NULL, 'Ae725qOd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jbriggs', NULL, NULL), - (584, 'J. Connor', NULL, NULL, NULL, 'EdVaR3p4', '76561198264352221', NULL, 'antpatrick7891', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'J. Connor', NULL, NULL), - (585, 'J. Diest', NULL, NULL, NULL, 'VdxNEKGA', '76561198253724229', NULL, 'jervdiest', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'J. Diest', NULL, NULL), - (586, 'J. Drake', NULL, NULL, NULL, '4E2y78Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'J. Drake', NULL, NULL), - (587, 'JDUBB', NULL, NULL, NULL, 'dx6roa9A', '76561199122637149', NULL, 'JDUBB', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'JDUBB', NULL, NULL), - (588, 'Jefferson', NULL, NULL, NULL, 'mp1RZo9A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jefferson', NULL, NULL), - (589, 'Jenkins17', NULL, NULL, NULL, 'pmbOM2KA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jenkins17', NULL, NULL), - (590, 'Jeska', NULL, NULL, NULL, 'EdVMllz4', '76561198125667979', NULL, 'Jeska', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jeska', NULL, NULL), - (591, 'Jessekjames08', NULL, NULL, NULL, '4PNgvaym', '76561198995360783', NULL, 'JesseKJames08', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jessekjames08', NULL, NULL), - (592, 'jester', NULL, NULL, NULL, 'd9qJlyZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'jester', NULL, NULL), - (593, 'Jimmiee26', NULL, NULL, NULL, 'dannVXDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jimmiee26', NULL, NULL), - (594, 'jinxmaster', NULL, NULL, NULL, '4WPyy60d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'jinxmaster', NULL, NULL), - (595, 'JJ', NULL, NULL, NULL, '4E2kB81d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'JJ', NULL, NULL), - (596, 'JJ1234r', NULL, NULL, NULL, 'daPJkNp4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'JJ1234r', NULL, NULL), - (597, 'Joe B', NULL, NULL, NULL, 'QdJJEjBd', '76561198093706678', NULL, 'Rebound', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Joe B', NULL, NULL), - (598, 'joemoso', NULL, NULL, NULL, 'dxML9MXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'joemoso', NULL, NULL), - (599, 'Johnny', NULL, NULL, NULL, 'dN9LBYR4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Johnny', NULL, NULL), - (600, 'Jokerzrus', NULL, NULL, NULL, 'R40q3XVd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jokerzrus', NULL, NULL), - (601, 'JonnyBravo', NULL, NULL, NULL, '8dBaDw84', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'JonnyBravo', NULL, NULL), - (602, 'Jrip', NULL, NULL, NULL, 'myDrr50d', '76561198049009610', NULL, 'Jrip', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jrip', NULL, NULL), - (603, 'JTheriot3', NULL, NULL, NULL, '4onn90oA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'JTheriot3', NULL, NULL), - (604, 'JustSam0709', NULL, NULL, NULL, '4v8yPnkm', '76561198309463925', NULL, 'JustSam0709', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'JustSam0709', NULL, NULL), - (605, 'J. Wayne', NULL, NULL, NULL, 'LmpJ6PQ4', '76561198088979734', NULL, 'YaBoiNuttyBuddy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'J. Wayne', NULL, NULL), - (606, 'JWR19HTY', NULL, NULL, NULL, '4ol7aOVd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'JWR19HTY', NULL, NULL), - (607, 'K3rnalS', NULL, NULL, NULL, 'mq1a80qm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'K3rnalS', NULL, NULL), - (608, 'Kage', NULL, NULL, NULL, 'dxDRpJ1d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kage', NULL, NULL), - (609, 'Kaguto', NULL, NULL, NULL, 'daJnKRDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kaguto', NULL, NULL), - (610, 'Kaiwoo', NULL, NULL, NULL, 'dVbq39Zd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kaiwoo', NULL, NULL), - (611, 'Kansas', NULL, NULL, NULL, 'daBenyDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kansas', NULL, NULL), - (612, 'Karthstrom_', NULL, NULL, NULL, 'NmLXxVam', NULL, NULL, NULL, '194656541033496578', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 19:11:58', NULL, NULL, '{"id":"dab5ce12cc303078c89a1884148f00d5f6022873864f7b88f5083a3cb9fe42b7","displayName":"Karthstrom","username":"karthstrom","name":{"givenName":"Karthstrom"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Karthstrom_', NULL, '2025-12-17 19:13:25'), - (613, 'Karthstrom97', NULL, NULL, NULL, '4EK9rRDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Karthstrom97', NULL, NULL), - (614, 'Katana', NULL, NULL, NULL, 'AYznaq04', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Katana', NULL, NULL), - (615, 'KaylebStorm', NULL, NULL, NULL, 'm6o67OgA', '76561198178291949', NULL, 'KaylebStorm', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'KaylebStorm', NULL, NULL), - (616, 'Kaz', NULL, NULL, NULL, '2d2PNVYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kaz', NULL, NULL), - (617, 'Kcmo', NULL, NULL, NULL, 'd8DaZ3gd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kcmo', NULL, NULL), - (618, 'kelton', NULL, NULL, NULL, 'dN7oeeXm', '76561198025291613', NULL, 'Kelton', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'kelton', NULL, NULL), - (619, 'Kerjack Live', NULL, NULL, NULL, 'Argl5r84', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kerjack Live', NULL, NULL), - (620, 'Kerwin', NULL, NULL, NULL, '4voNO8Od', '76561198800377696', NULL, 'Kerwin', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kerwin', NULL, NULL), - (621, 'KetchupDuncan', NULL, NULL, NULL, 'd3RkK1e4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'KetchupDuncan', NULL, NULL), - (622, 'Kevc0re_', NULL, NULL, NULL, 'AYzbJjw4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kevc0re_', NULL, NULL), - (623, 'KeystonePirate', NULL, NULL, NULL, '409Nn7yd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'KeystonePirate', NULL, NULL), - (624, 'Kfir', NULL, NULL, NULL, 'oAQJrkN4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kfir', NULL, NULL), - (625, 'Khodi', NULL, NULL, NULL, 'dN9EV6G4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Khodi', NULL, NULL), - (626, 'king_roblosSIGMA', NULL, NULL, NULL, '4oql9XXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kilo', NULL, NULL), - (627, 'King 0-1', NULL, NULL, NULL, 'dVgwNzrm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'King 0-1', NULL, NULL), - (628, 'KINgGh0sT', NULL, NULL, NULL, 'nm687ZR4', '76561197962482488', NULL, 'KINgGh0sT', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'KINgGh0sT', NULL, NULL), - (629, 'KingOfCato', NULL, NULL, NULL, '4D9EVr9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'KingOfCato', NULL, NULL), - (630, 'KingPerds', NULL, NULL, NULL, 'd5DwZKq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'KingPerds', NULL, NULL), - (631, 'KitaNiyo', NULL, NULL, NULL, 'dwqlLk8A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'KitaNiyo', NULL, NULL), - (632, 'Kiwi', NULL, NULL, NULL, 'myxyao5d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kiwi', NULL, NULL), - (633, 'kj', NULL, NULL, NULL, 'v4DNqB9m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'kj', NULL, NULL), - (634, 'Klay_9911', NULL, NULL, NULL, 'Arx1nGgd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Klay_9911', NULL, NULL), - (635, 'Klein_66', NULL, NULL, NULL, '4WPeaW0d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Klein_66', NULL, NULL), - (636, 'Knightmare', NULL, NULL, NULL, 'dx656kEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Knightmare', NULL, NULL), - (637, 'Kole', NULL, NULL, NULL, 'm6xlG204', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kole', NULL, NULL), - (638, 'Kraber', NULL, NULL, NULL, '4k3aBJR4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kraber', NULL, NULL), - (639, 'Kraige', NULL, NULL, NULL, '2d20EjoA', '76561198015840705', NULL, 'Krage', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kraige', NULL, NULL), - (640, 'Kraz3d God', NULL, NULL, NULL, 'mq1nab1m', '76561198391178209', NULL, 'QTR KillShot', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kraz3d God', NULL, NULL), - (641, 'Krazy_Panzer', NULL, NULL, NULL, 'AXoMKVQm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Krazy_Panzer', NULL, NULL), - (642, 'Krescendo', NULL, NULL, NULL, 'm6jjvn3m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Krescendo', NULL, NULL), - (643, 'Krill', NULL, NULL, NULL, '2d2B7PJd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Krill', NULL, NULL), - (644, 'Kron', NULL, NULL, NULL, 'xd98Epq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kron', NULL, NULL), - (645, 'Kronez', NULL, NULL, NULL, 'mpOqPe9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kronez', NULL, NULL), - (646, 'KRONK!', NULL, NULL, NULL, 'dOx5BLLm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'KRONK!', NULL, NULL), - (647, 'Krovy', NULL, NULL, NULL, 'dl2p7PVA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Krovy', NULL, NULL), - (648, 'Krusty', NULL, NULL, NULL, 'myDGDeWd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Krusty', NULL, NULL), - (665, 'Kuya luya ginger', NULL, NULL, NULL, 'mR02wvQ4', '76561198375823625', NULL, 'Clover_arch', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kuya luya ginger', NULL, NULL), - (666, 'Krazydawgs', NULL, NULL, NULL, 'dBb0rbbd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'kyandavis04', NULL, NULL), - (667, 'L0GAN1sDope', NULL, NULL, NULL, 'mLoVwz8d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'L0GAN1sDope', NULL, NULL), - (668, 'Laboy', NULL, NULL, NULL, 'dVD1xlrA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Laboy', NULL, NULL), - (669, 'Laces27', NULL, NULL, NULL, 'oAQqO2gA', NULL, NULL, 'Laces2727', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Laces27', NULL, NULL), - (670, 'Lad Andre', NULL, NULL, NULL, 'Vmy6a8yA', '76561198146749916', NULL, 'Tacoriffics', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Lad Andre', NULL, NULL), - (671, 'Lagia', NULL, NULL, NULL, 'AnneYvYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Lagia', NULL, NULL), - (672, 'L.E.Pierce', NULL, NULL, NULL, 'w4W50Mqm', NULL, NULL, 'L.E.Pierce', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-18 01:06:40', NULL, NULL, NULL, NULL, 'member', 'L.E.Pierce', NULL, NULL), - (673, 'LeumasRelwood', NULL, NULL, NULL, 'd3GJVGGd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'LeumasRelwood', NULL, NULL), - (674, 'Levi', NULL, NULL, NULL, 'NmLrDoZ4', '76561198104861888', NULL, 'Levi', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Levi', NULL, NULL), - (675, 'levix97', NULL, NULL, NULL, 'dOOeV88d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'levix97', NULL, NULL), - (676, 'Lewis', NULL, NULL, NULL, 'mqEkvrjm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Lewis', NULL, NULL), - (677, 'Liam Thome', NULL, NULL, NULL, 'lAepJYPm', '76561199041120384', NULL, 'skyaholic', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Liam Thome', NULL, NULL), - (678, 'Lightlaw', NULL, NULL, NULL, 'dBGPpv1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Lightlaw', NULL, NULL), - (679, 'lilburritochef', NULL, NULL, NULL, '4WPbQKpd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'lilburritochef', NULL, NULL), - (680, 'lilfitti', NULL, NULL, NULL, 'o4PKzewA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'lilfitti', NULL, NULL), - (681, 'Limelight', NULL, NULL, NULL, 'd3Yly1gA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Limelight', NULL, NULL), - (682, 'Link', NULL, NULL, NULL, '40kyrOyA', '76561198146199462', NULL, 'GhostIsSpooky', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Link', NULL, NULL), - (683, 'Little', NULL, NULL, NULL, 'mGGlGakm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Little', NULL, NULL), - (684, 'L. Jefferson', NULL, NULL, NULL, '2d27Z2Pm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'L. Jefferson', NULL, NULL), - (685, 'logan6martin', NULL, NULL, NULL, 'QdJ6n0wd', '76561198960383769', NULL, 'logan6martin', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'logan6martin', NULL, NULL), - (686, 'Lonestar', NULL, NULL, NULL, 'dJZMZVod', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Lonestar', NULL, NULL), - (687, 'LoneWolfHDPro', NULL, NULL, NULL, 'EdVGlG6m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'LoneWolfHDPro', NULL, NULL), - (688, 'LooseCanoness', NULL, NULL, NULL, 'ndaobMlA', NULL, NULL, 'comsorrels', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'LooseCanoness', NULL, NULL), - (689, 'Lotion', NULL, NULL, NULL, 'x4oYk6Ym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Lotion', NULL, NULL), - (690, 'Lottoma', NULL, NULL, NULL, 'kdKoePBd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Lottoma', NULL, NULL), - (691, 'Louge', NULL, NULL, NULL, 'Agk5xMRA', '76561198870341933', NULL, 'Yee Yee Ass Haircut', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Louge', NULL, NULL), - (692, 'Louis', NULL, NULL, NULL, 'GmjwwOgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Louis', NULL, NULL), - (693, 'lowkey', NULL, NULL, NULL, '4PRkellm', '76561198968278992', NULL, 'emonerd', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'lowkey', NULL, NULL), - (694, 'Loyal', NULL, NULL, NULL, 'xAY1YN0A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Loyal', NULL, NULL), - (695, 'lProwlerl', NULL, NULL, NULL, '4v0pOYBm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'lProwlerl', NULL, NULL), - (696, 'Luccas', NULL, NULL, NULL, 'mbZ0PJam', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Luccas', NULL, NULL), - (697, 'Lucifer', NULL, NULL, NULL, 'ndla2kbm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Lucifer', NULL, NULL), - (698, 'LuciNaut', NULL, NULL, NULL, '4DnkGqym', '76561198098982410', NULL, 'LuciNaut', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'LuciNaut', NULL, NULL), - (699, 'Lucky', NULL, NULL, NULL, 'LmpVLZk4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Lucky', NULL, NULL), - (700, 'lukedenvir', NULL, NULL, NULL, 'VmMzM3rA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'lukedenvir', NULL, NULL), - (701, 'luke walker', NULL, NULL, NULL, '4PP5yPl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'luke walker', NULL, NULL), - (702, 'Luna', NULL, NULL, NULL, 'mM6lNBkA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Luna', NULL, NULL), - (703, 'LunchBox', NULL, NULL, NULL, 'AQ1oVjNA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'LunchBox', NULL, NULL), - (704, 'Luter', NULL, NULL, NULL, 'ArrpbPqA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Luter', NULL, NULL), - (705, 'Madenote', NULL, NULL, NULL, '1ArED5Bm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Madenote', NULL, NULL), - (706, 'Maggnar', NULL, NULL, NULL, 'ArQKkjYm', '76561198050542043', NULL, 'Maggnar of Anime', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Maggnar', NULL, NULL), - (707, 'NGXII', NULL, NULL, NULL, 'daDMjbK4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Magnet', NULL, NULL), - (708, 'MailMan', NULL, NULL, NULL, 'lAeXawzm', '76561198110717670', NULL, 'Unstablemailman', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MailMan', NULL, NULL), - (709, 'Makarov', NULL, NULL, NULL, 'mjjMya5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Makarov', NULL, NULL), - (710, 'malf', NULL, NULL, NULL, 'Arb2RR8A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'malf', NULL, NULL), - (711, 'Malic', NULL, NULL, NULL, '8dBeWjv4', NULL, NULL, 'Paramedia', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Malic', NULL, NULL), - (712, 'Malk', NULL, NULL, NULL, 'dxO05ND4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Malk', NULL, NULL), - (713, 'MANDO', NULL, NULL, NULL, 'dNxOQMoA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MANDO', NULL, NULL), - (714, 'Manik', NULL, NULL, NULL, 'AgkZVxrA', NULL, NULL, 'manik', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Manik', NULL, NULL), - (715, 'Marchand', NULL, NULL, NULL, 'mR09Xw54', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Marchand', NULL, NULL), - (716, 'marinc', NULL, NULL, NULL, 'd2jYaY9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'marinc', NULL, NULL), - (717, 'markj', NULL, NULL, NULL, '4E5P7kX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'markj', NULL, NULL), - (718, 'Masayra', NULL, NULL, NULL, 'myx78L1d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Masayra', NULL, NULL), - (719, 'maste', NULL, NULL, NULL, 'O4ZrXoe4', '76561198041197015', NULL, 'festive fishhero12 landon', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'maste', NULL, NULL), - (720, 'Math', NULL, NULL, NULL, '41qKwzE4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Math', NULL, NULL), - (721, 'Mathioks', NULL, NULL, NULL, 'd3R9xke4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mathioks', NULL, NULL), - (722, 'Matt', NULL, NULL, NULL, 'myxqLX0d', '76561198127046981', NULL, 'Matt', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Matt', NULL, NULL), - (723, 'Matthew Nichols', NULL, NULL, NULL, 'ydwwL1kd', '76561198246303494', NULL, 'Matthew Nichols', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Matthew Nichols', NULL, NULL), - (724, 'Maverick1', NULL, NULL, NULL, 'mR6oaVgm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Maverick1', NULL, NULL), - (725, 'Max', NULL, NULL, NULL, '4kRjJORA', '76561198205029441', NULL, 'Max', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Max', NULL, NULL), - (726, 'Maxedout', NULL, NULL, NULL, 'mb29oVXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Maxedout', NULL, NULL), - (727, 'MaybachKing', NULL, NULL, NULL, '4orXBxXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MaybachKing', NULL, NULL), - (728, 'M.beattie', NULL, NULL, NULL, 'mpGO9Nld', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'M.beattie', NULL, NULL), - (729, 'Mcanaan', NULL, NULL, NULL, 'w4WM2Jqm', '76561198028195847', NULL, 'mcanaan20', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mcanaan', NULL, NULL), - (730, 'McCloud', NULL, NULL, NULL, 'x4oeVrMm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'McCloud', NULL, NULL), - (731, 'Medical', NULL, NULL, NULL, 'Arneo6wA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Medical', NULL, NULL), - (732, 'CCfrogfr', NULL, NULL, NULL, 'dNrlPjGd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Melon A.', NULL, NULL), - (733, 'MemeDictator', NULL, NULL, NULL, '4kxlDVzd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MemeDictator', NULL, NULL), - (734, 'Memz', NULL, NULL, NULL, 'mRBnX7Qm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Memz', NULL, NULL), - (735, 'MentalCaz', NULL, NULL, NULL, 'AXBv5Bvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MentalCaz', NULL, NULL), - (736, 'Merc', NULL, NULL, NULL, 'LmpVXGB4', '76561198307448861', NULL, 'ImHarpZ', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Merc', NULL, NULL), - (737, 'Metro', NULL, NULL, NULL, 'Qd5zVgOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Metro', NULL, NULL), - (738, 'MetroDontTrustU', NULL, NULL, NULL, 'dw83JB0m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MetroDontTrustU', NULL, NULL), - (739, 'metzu', NULL, NULL, NULL, 'AnbbDwwA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'metzu', NULL, NULL), - (740, 'Mezori', NULL, NULL, NULL, 'Pm7X27pA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mezori', NULL, NULL), - (741, 'Micah', NULL, NULL, NULL, 'm7Q1o9Y4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Micah', NULL, NULL), - (742, 'Mickey', NULL, NULL, NULL, 'QdJbkbPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mickey', NULL, NULL), - (743, 'middyko', NULL, NULL, NULL, 'AYwOGa9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'middyko', NULL, NULL), - (744, 'midnightowl23', NULL, NULL, NULL, 'rdOrzKW4', '76561198206516652', NULL, 'Midnightowl23', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'midnightowl23', NULL, NULL), - (745, 'MigjolVanMjol', NULL, NULL, NULL, 'AnbXzrLA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MigjolVanMjol', NULL, NULL), - (746, 'Mijo33', NULL, NULL, NULL, 'oAQp8RZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mijo33', NULL, NULL), - (747, 'Mike', NULL, NULL, NULL, 'myDBjDwd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mike', NULL, NULL), - (748, 'mikey', NULL, NULL, NULL, '4DnM363m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'mikey', NULL, NULL), - (749, 'Milklin', NULL, NULL, NULL, 'dJQGxOb4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Milklin', NULL, NULL), - (750, 'Miller5622', NULL, NULL, NULL, 'ndlEEEYm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Miller5622', NULL, NULL), - (751, 'Mils', NULL, NULL, NULL, 'NmLj55J4', '76561197989682469', NULL, 'Mils2327', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mils', NULL, NULL), - (752, 'MinuteMan', NULL, NULL, NULL, 'mRB33Eom', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MinuteMan', NULL, NULL), - (753, 'Mithrandir', NULL, NULL, NULL, '2d2GZj9m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mithrandir', NULL, NULL), - (754, 'M.Jackal', NULL, NULL, NULL, '4v6OQZN4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'M.Jackal', NULL, NULL), - (755, 'mjjay', NULL, NULL, NULL, 'mj62BqVm', '76561198198360453', NULL, 'mjay', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'mjjay', NULL, NULL), - (756, 'Mlobb5920', NULL, NULL, NULL, 'm7zeYEed', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mlobb5920', NULL, NULL), - (757, 'tboltz', NULL, NULL, NULL, 'R40Q9Ybd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'M. Mefferd', NULL, NULL), - (758, 'Mobius', NULL, NULL, NULL, '4oMYJDvm', '76561198093929086', NULL, 'Mobius', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mobius', NULL, NULL), - (759, 'MocKX', NULL, NULL, NULL, 'kdK0aaBm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MocKX', NULL, NULL), - (760, 'Mohammed', NULL, NULL, NULL, 'd3YjJxzA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mohammed', NULL, NULL), - (761, 'Molder', NULL, NULL, NULL, 'Md3N3XD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Molder', NULL, NULL), - (762, 'Monarch', NULL, NULL, NULL, 'ndaRrKpm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Monarch', NULL, NULL), - (763, 'MoneyMan', NULL, NULL, NULL, '6AX5WDz4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MoneyMan', NULL, NULL), - (764, 'monke', NULL, NULL, NULL, '4olXe3od', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'monke', NULL, NULL), - (765, 'Moodyx', NULL, NULL, NULL, 'ndlkJ8b4', '76561198041849544', NULL, 'Moodyx', '124701124300242944', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:04:41', NULL, NULL, NULL, NULL, 'guest', 'Moodyx', NULL, NULL), - (766, 'MoopyPlays', NULL, NULL, NULL, 'dN9zVk74', NULL, NULL, NULL, '478417495431053312', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:05:06', NULL, NULL, NULL, NULL, 'guest', 'MoopyPlays', NULL, NULL), - (767, 'Moosedog', NULL, NULL, NULL, 'bdzxzqbA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Moosedog', NULL, NULL), - (768, 'Mortuus', NULL, NULL, NULL, '1Are5NBm', NULL, NULL, NULL, '144973796812521474', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:06:09', NULL, NULL, NULL, NULL, 'guest', 'Mortuus', NULL, NULL), - (769, 'Mountain', NULL, NULL, NULL, 'ArBjWNBA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mountain', NULL, NULL), - (770, 'MoveZeeChains', NULL, NULL, NULL, 'Lmp0DO9m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MoveZeeChains', NULL, NULL), - (771, 'Mr. Burke', NULL, NULL, NULL, 'mjnM7DJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mr. Burke', NULL, NULL), - (772, 'Mr. Engineer', NULL, NULL, NULL, 'dOWbaDnd', '76561198319642148', NULL, 'Mr. Engineer', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mr. Engineer', NULL, NULL), - (773, 'Mr_Hghwy', NULL, NULL, NULL, 'AXjwyzQd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mr_Hghwy', NULL, NULL), - (774, 'Mr_Magnanimous', NULL, NULL, NULL, 'ArgX9Rn4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mr_Magnanimous', NULL, NULL), - (775, 'MrSelfDestruct', NULL, NULL, NULL, '54kjyNlA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'MrSelfDestruct', NULL, NULL), - (776, 'M.Skaalid', NULL, NULL, NULL, 'dODVOKym', '76561198312471203', NULL, 'mushroomwater', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'M.Skaalid', NULL, NULL), - (777, 'mudskipper', NULL, NULL, NULL, 'AnaKYpkm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'mudskipper', NULL, NULL), - (778, 'Muffin', NULL, NULL, NULL, '54kpKPNd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Muffin', NULL, NULL), - (779, 'Muffins', NULL, NULL, NULL, 'w4W5L2qm', '76561198046216435', NULL, 'Darthmuffins', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Muffins', NULL, NULL), - (780, 'mugatss', NULL, NULL, NULL, '403p8qbA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'mugatss', NULL, NULL), - (781, 'Mute', NULL, NULL, NULL, 'd8bw0GBA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Mute', NULL, NULL), - (782, 'myka1405', NULL, NULL, NULL, 'dOO121nd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Myka', NULL, NULL), - (783, 'Nate Garcia', NULL, NULL, NULL, 'mjnw1xJm', '76561198302727995', NULL, 'Mr.Nate', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nate Garcia', NULL, NULL), - (784, 'Naz', NULL, NULL, NULL, 'AYgYJ9Rd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Naz', NULL, NULL), - (785, 'Neifer', NULL, NULL, NULL, 'dKPMLzem', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Neifer', NULL, NULL), - (786, 'NEO', NULL, NULL, NULL, 'dVBkwjqd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'NEO', NULL, NULL), - (787, 'Neorim', NULL, NULL, NULL, '4vrBGVb4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Neorim', NULL, NULL), - (788, 'nerdyxen', NULL, NULL, NULL, 'daOLN7ZA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'nerdyxen', NULL, NULL), - (789, 'nerfgunner24', NULL, NULL, NULL, 'bdzpw7VA', NULL, NULL, 'nerfgunner24', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'nerfgunner24', NULL, NULL), - (790, 'Nero', NULL, NULL, NULL, 'd3R7WbD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nero', NULL, NULL), - (791, 'Nessle', NULL, NULL, NULL, 'dljLEeBA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nessle', NULL, NULL), - (792, 'nevertryty', NULL, NULL, NULL, 'VmMVyWbA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'nevertryty', NULL, NULL), - (793, 'Newberry', NULL, NULL, NULL, 'mb1JLe6d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Newberry', NULL, NULL), - (794, 'Newboots', NULL, NULL, NULL, '4090MrKd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Newboots', NULL, NULL), - (795, 'MustachedNewt79', NULL, NULL, NULL, 'nda9aXVd', '76561198444486008', NULL, 'MustachedNewt79', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Newt', NULL, NULL), - (796, 'nezz', NULL, NULL, NULL, 'AXBe2ZZd', '76561199126039849', NULL, 'NEZZ', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'nezz', NULL, NULL), - (797, 'Nick', NULL, NULL, NULL, 'dxMQYVOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nick', NULL, NULL), - (798, 'NightHawk', NULL, NULL, NULL, '41o5LVRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'NightHawk', NULL, NULL), - (799, 'Nightmare18', NULL, NULL, NULL, 'mb2lygEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nightmare18', NULL, NULL), - (800, 'Nightmare2tuRnt', NULL, NULL, NULL, 'dxK3Op24', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nightmare2tuRnt', NULL, NULL), - (801, 'Nightrader', NULL, NULL, NULL, 'oAgeoZMd', '76561198027996462', NULL, 'Nightrader', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nightrader', NULL, NULL), - (802, 'Niklaus', NULL, NULL, NULL, 'mMp5NZYd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Niklaus', NULL, NULL), - (803, 'Ninja Crab', NULL, NULL, NULL, 'dxDr08wd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ninja Crab', NULL, NULL), - (804, 'Ninjaslappe', NULL, NULL, NULL, 'o4PyBMnd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ninjaslappe', NULL, NULL), - (805, 'Nixeen', NULL, NULL, NULL, '841XajMA', NULL, NULL, NULL, '152253612289032192', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:02:08', NULL, NULL, NULL, NULL, 'guest', 'Nixeen', NULL, NULL), - (806, 'Nodine', NULL, NULL, NULL, 'rdOJWoP4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nodine', NULL, NULL), - (807, 'Nomad', NULL, NULL, NULL, 'd9oGkMpA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nomad', NULL, NULL), - (808, 'Nostra', NULL, NULL, NULL, 'dKZnkrY4', '76561198066125980', NULL, 'BizmoTheWizmo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nostra', NULL, NULL), - (809, 'Not_Jacob', NULL, NULL, NULL, '1ArjK9lA', '76561198382493821', NULL, 'Not-Jacob', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Not_Jacob', NULL, NULL), - (810, 'NotZane', NULL, NULL, NULL, 'dx6OrX1A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'NotZane', NULL, NULL), - (811, 'Nvth1s', NULL, NULL, NULL, 'nda5rLnd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nvth1s', NULL, NULL), - (812, 'Nylons', NULL, NULL, NULL, 'w4WkZoP4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Nylons', NULL, NULL), - (813, 'nYn_', NULL, NULL, NULL, 'lAe9LlzA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'nYn_', NULL, NULL), - (814, 'Oak', NULL, NULL, NULL, 'oAQyv3LA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Oak', NULL, NULL), - (815, 'Obelisk', NULL, NULL, NULL, 'dVD9ygpA', NULL, NULL, NULL, '266050505023684608', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:03:37', NULL, NULL, NULL, NULL, 'guest', 'Obelisk', NULL, NULL), - (816, 'Off-Brand', NULL, NULL, NULL, 'pmb61Q6m', NULL, NULL, 'Off-brand', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Off-Brand', NULL, NULL), - (817, 'OldCraig', NULL, NULL, NULL, '4oMY95Mm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'OldCraig', NULL, NULL), - (818, 'OMBRE', NULL, NULL, NULL, 'GmjMOQbd', '76561198205169681', NULL, 'OMBRE', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'OMBRE', NULL, NULL), - (819, 'Omni', NULL, NULL, NULL, 'daPe9lp4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Omni', NULL, NULL), - (820, 'macy00518', NULL, NULL, NULL, 'Arxk10Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'opera', NULL, NULL), - (821, 'OperatorAbsolut', NULL, NULL, NULL, 'rdOKrVEd', '76561198100590875', NULL, 'Adrian A.', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'OperatorAbsolut', NULL, NULL), - (822, 'Origin_storm', NULL, NULL, NULL, 'AgxeLXR4', '76561198851008068', NULL, 'Origin_Storm', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Origin_storm', NULL, NULL), - (823, 'Orion', NULL, NULL, NULL, 'mRQYOzYd', '76561198281046743', NULL, 'Orion', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Orion', NULL, NULL), - (824, 'ORPsymon', NULL, NULL, NULL, '2d28Q65A', '76561198275568382', NULL, 'Orpsymon', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ORPsymon', NULL, NULL), - (825, 'BartholomewjJames', NULL, NULL, NULL, 'Arnl9YnA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Oscar', NULL, NULL), - (826, 'Otter Freedom', NULL, NULL, NULL, 'dxPJ3y1d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Otter Freedom', NULL, NULL), - (827, 'Page', NULL, NULL, NULL, 'dBLQEWPA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Page', NULL, NULL), - (828, 'Pancho_sebs', NULL, NULL, NULL, 'mLDJpvJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PanchoSebs', NULL, NULL), - (829, 'Pao', NULL, NULL, NULL, 'Vmyl5z1d', '76561198095917590', NULL, 'Jpao', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Pao', NULL, NULL), - (830, 'PapaBless', NULL, NULL, NULL, 'AXZDx1Zd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PapaBless', NULL, NULL), - (831, 'papapeahead', NULL, NULL, NULL, '54kwV8z4', '76561198084170207', NULL, 'papapeahead', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'papapeahead', NULL, NULL), - (832, 'Papa Pendejo', NULL, NULL, NULL, '8mRbE7Em', NULL, NULL, 'Papa Pendejo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Papa Pendejo', NULL, NULL), - (833, 'Papi', NULL, NULL, NULL, 'dKRoqz54', '76561198090421700', NULL, 'VoidPapi', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Papi', NULL, NULL), - (834, 'Paranoid Dude', NULL, NULL, NULL, 'd8DojRNd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Paranoid Dude', NULL, NULL), - (835, 'ParsecTV', NULL, NULL, NULL, 'xAY89qnm', '76561198317394086', NULL, 'parsectv', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ParsecTV', NULL, NULL), - (836, 'paulki', NULL, NULL, NULL, 'NmLq3RgA', '76561198341781541', NULL, 'theppaulki', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'paulki', NULL, NULL), - (837, 'PawelTriceps', NULL, NULL, NULL, 'dKRvyp54', '76561198030778004', NULL, 'PawelTriceps', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PawelTriceps', NULL, NULL), - (838, 'Peacekeeper', NULL, NULL, NULL, 'lAekNrPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Peacekeeper', NULL, NULL), - (839, 'Pearly', NULL, NULL, NULL, 'AY2jJ9W4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Pearly', NULL, NULL), - (840, 'Pedano', NULL, NULL, NULL, 'AgxWpzq4', '76561198830130893', NULL, 'Wavey', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Pedano', NULL, NULL), - (841, 'Peebird_XL', NULL, NULL, NULL, 'd5jREKOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Peebird_XL', NULL, NULL), - (842, 'perhaps', NULL, NULL, NULL, 'ndlplxld', '76561198278363091', NULL, 'acidjazz', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'perhaps', NULL, NULL), - (843, 'PetrolDrinker', NULL, NULL, NULL, 'AgkZVeMA', '76561198281763775', NULL, 'hi im a guy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PetrolDrinker', NULL, NULL), - (844, 'PFC Crocker', NULL, NULL, NULL, 'd8Go37v4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PFC Crocker', NULL, NULL), - (845, 'Phil-101321', NULL, NULL, NULL, '4ojJnrZA', '76561198147639182', NULL, 'Irphil47', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Phil', NULL, NULL), - (846, 'philtaculous', NULL, NULL, NULL, 'mq1VBn1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'philtaculous', NULL, NULL), - (847, 'pickle_wit_a_gun', NULL, NULL, NULL, '841kEKMm', '76561198372008567', NULL, '2019 Toyota Camry', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'pickle_wit_a_gun', NULL, NULL), - (848, 'pickle zay', NULL, NULL, NULL, 'm7Qjkb54', '76561198280179320', NULL, 'pickle zay', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'pickle zay', NULL, NULL), - (849, 'Piggy', NULL, NULL, NULL, 'd56WXgrm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Piggy', NULL, NULL), - (850, 'Pilotfreak', NULL, NULL, NULL, '1ArjgwZA', '76561198151373583', NULL, 'Pilotfreak', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Pilot', NULL, NULL), - (851, 'Pixy', NULL, NULL, NULL, '4vjVNj14', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Pixy', NULL, NULL), - (852, 'plasticxplosiv', NULL, NULL, NULL, 'x4oRDGnA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'plasticxplosiv', NULL, NULL), - (853, 'Platapus', NULL, NULL, NULL, '4oxGnYMd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Platapus', NULL, NULL), - (854, 'Plombo', NULL, NULL, NULL, 'Pm7o7GYm', '76561198019545113', NULL, 'Plombo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Plombo', NULL, NULL), - (855, 'plutoc39', NULL, NULL, NULL, 'dKOv1DBd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'plutoc39', NULL, NULL), - (856, 'PocketsTheWizard', NULL, NULL, NULL, 'daJp8Epm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PocketsTheWizard', NULL, NULL), - (857, 'Pogfish', NULL, NULL, NULL, 'AgPbGry4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Pogfish', NULL, NULL), - (858, 'Poi!', NULL, NULL, NULL, 'xAYLkKRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Poi!', NULL, NULL), - (859, 'Polo', NULL, NULL, NULL, '41YKlP84', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Polo', NULL, NULL), - (860, 'PopeFrancis', NULL, NULL, NULL, 'VdxBlnXA', '76561198040223161', NULL, 'PopeFrancis', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PopeFrancis', NULL, NULL), - (861, 'porkupine.exe', NULL, NULL, NULL, 'd9nJYMem', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'porkupine.exe', NULL, NULL), - (862, 'Post Malone', NULL, NULL, NULL, '4DQwr0yd', '76561199143721037', NULL, 'Post Malone', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Post Malone', NULL, NULL), - (863, 'Praetorian Guard', NULL, NULL, NULL, '4ZkjEErd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Praetorian Guard', NULL, NULL), - (864, 'Prestige', NULL, NULL, NULL, 'rdOeYxEA', '76561198841097467', NULL, 'Prestige Xronize', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Prestige', NULL, NULL), - (865, 'PricyJethro', NULL, NULL, NULL, '4EKjz8Zm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PricyJethro', NULL, NULL), - (866, 'priest', NULL, NULL, NULL, 'd9oEzweA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'priest', NULL, NULL), - (867, 'privateagent9090', NULL, NULL, NULL, '4DMQRx3d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'privateagent9090', NULL, NULL), - (868, 'Private Doggy', NULL, NULL, NULL, 'Pm72e15d', '76561198984803187', NULL, 'Doggy907', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Private Doggy', NULL, NULL), - (869, 'privatekitty', NULL, NULL, NULL, 'mpQ6axqA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'privatekitty', NULL, NULL), - (870, 'Proxy', NULL, NULL, NULL, 'daDEYVl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Proxy', NULL, NULL), - (871, 'Pubz', NULL, NULL, NULL, 'mbZ6E6zm', '76561198185137767', NULL, 'L l Pubz', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Pubz', NULL, NULL), - (872, 'Puma1335', NULL, NULL, NULL, '406g6vRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Puma1335', NULL, NULL), - (873, 'Puriadark', NULL, NULL, NULL, 'Lmp0wDWm', '76561198002918180', NULL, 'Puriadark', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Puriadark', NULL, NULL), - (874, 'PVT.Bee', NULL, NULL, NULL, 'xd9ZbRym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PVT.Bee', NULL, NULL), - (875, 'PVT D. Rad', NULL, NULL, NULL, 'ZdNeWDo4', '76561198349962356', NULL, 'RadicalD', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PVT D. Rad', NULL, NULL), - (876, 'PVT Jalopy', NULL, NULL, NULL, 'ndaKkoVA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'PVT Jalopy', NULL, NULL), - (877, 'Pvt. Mclovin', NULL, NULL, NULL, '4oo036Z4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Pvt. Mclovin', NULL, NULL), - (878, 'Pvt. Tomee762', NULL, NULL, NULL, 'ArxK7R8d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Pvt. Tomee762', NULL, NULL), - (879, 'QuickElo', NULL, NULL, NULL, 'o4PZQEGm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'QuickElo', NULL, NULL), - (880, 'Ragdoll', NULL, NULL, NULL, 'myD7bnWd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ragdoll', NULL, NULL), - (881, 'Raider', NULL, NULL, NULL, 'd8V7NJvA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Raider', NULL, NULL), - (882, 'Rain', NULL, NULL, NULL, 'kdK0nLZm', '76561198154705579', NULL, 'Rain', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rain', NULL, NULL), - (883, 'Rainbow', NULL, NULL, NULL, 'mbZOZKEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rainbow', NULL, NULL), - (884, 'raleighdb', NULL, NULL, NULL, '64vwwwkd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'raleighdb', NULL, NULL), - (885, 'Rammus', NULL, NULL, NULL, 'Ae75vozd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rammus', NULL, NULL), - (886, 'Randy', NULL, NULL, NULL, 'o4PKJyGA', '76561198138671014', NULL, 'drandall3554', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Randy', NULL, NULL), - (887, 'RangerDanger', NULL, NULL, NULL, 'bdzyrkL4', '76561198022897318', NULL, 'Ranger Danger', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'RangerDanger', NULL, NULL), - (915, 'RangerSix', NULL, NULL, NULL, '6AXQDZ64', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'RangerSix', NULL, NULL), - (916, 'Rasphorian', NULL, NULL, NULL, 'amGX6NqA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rasphorian', NULL, NULL), - (917, 'Rat', NULL, NULL, NULL, 'dJQn8Wq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rat', NULL, NULL), - (918, 'Raven367', NULL, NULL, NULL, '4WBMYObA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Raven367', NULL, NULL), - (919, 'R&D', NULL, NULL, NULL, 'dlnBLwYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'R&D', NULL, NULL), - (920, 'Reaper', NULL, NULL, NULL, '6AXqWOQ4', NULL, NULL, 'cqc_reaper', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Reaper', NULL, NULL), - (921, 'RecyclingWizard', NULL, NULL, NULL, '41olEapm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'RecyclingWizard', NULL, NULL), - (922, 'RedFist13F', NULL, NULL, NULL, 'pmbxKLg4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'RedFist13F', NULL, NULL), - (923, 'redrabbit', NULL, NULL, NULL, 'dOj68D54', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'redrabbit', NULL, NULL), - (924, 'Relic', NULL, NULL, NULL, 'mq1pqQXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Relic', NULL, NULL), - (925, 'Remonade', NULL, NULL, NULL, 'x4oNZgGA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Remonade', NULL, NULL), - (926, 'Ressedue', NULL, NULL, NULL, 'v4DLM6o4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ressedue', NULL, NULL), - (927, 'Retro', NULL, NULL, NULL, '4PPRXBG4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Retro', NULL, NULL), - (928, 'Retroark', NULL, NULL, NULL, '8412WDwd', '76561198027123215', NULL, 'Retroark', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Retroark', NULL, NULL), - (929, 'Reveem', NULL, NULL, NULL, 'dKRvvVZ4', '76561198198593957', NULL, 'Reveem', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Reveem', NULL, NULL), - (930, 'Rexiford', NULL, NULL, NULL, 'mLDJDMJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rexiford', NULL, NULL), - (931, 'ReXyHolt', NULL, NULL, NULL, 'ndlwGx54', NULL, NULL, 'ReXy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ReXyHolt', NULL, NULL), - (932, 'Rhenium', NULL, NULL, NULL, 'GmjeNObd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rhenium', NULL, NULL), - (933, 'rhy94', NULL, NULL, NULL, 'mR695gEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'rhy94', NULL, NULL), - (934, 'Ripper', NULL, NULL, NULL, 'dlO2Qkl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ripper', NULL, NULL), - (935, 'Risky', NULL, NULL, NULL, '41WP2Vbm', '76561199013529488', NULL, 'Risky', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Risky', NULL, NULL), - (936, 'RiZ', NULL, NULL, NULL, 'R40XbQV4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'RiZ', NULL, NULL), - (937, 'R. Nohara', NULL, NULL, NULL, 'd2jMg0Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'R. Nohara', NULL, NULL), - (938, 'Robo', NULL, NULL, NULL, '403vyByA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Robo', NULL, NULL), - (939, 'Ronin', NULL, NULL, NULL, 'dODObNWm', '76561199122663957', NULL, 'Reidan', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ronin', NULL, NULL), - (940, 'Rose', NULL, NULL, NULL, 'An2RlrXA', '76561198260256368', NULL, 'DeadRoses', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rose', NULL, NULL), - (941, 'Rosey', NULL, NULL, NULL, 'd9nJKGqm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rosey', NULL, NULL), - (942, 'Ross', NULL, NULL, NULL, 'dVBkpPrd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ross', NULL, NULL), - (943, 'Rozzi', NULL, NULL, NULL, '4v8oWW5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rozzi', NULL, NULL), - (944, 'R. Salami', NULL, NULL, NULL, 'AeBNK1W4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'R. Salami', NULL, NULL), - (945, 'Rugged', NULL, NULL, NULL, 'd9LbGPg4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rugged', NULL, NULL), - (946, 'N_O_T_A_C_E_', NULL, NULL, NULL, 'm6obYezA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ryan', NULL, NULL), - (947, 'Ryan10151999', NULL, NULL, NULL, 'xd9VKoJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Ryan10151999', NULL, NULL), - (948, 'Rybo', NULL, NULL, NULL, 'kdKrxDe4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Rybo', NULL, NULL), - (949, 'RyderFromGTASA', NULL, NULL, NULL, 'pmbkZ0RA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'RyderFromGTASA', NULL, NULL), - (950, 'RyToastee', NULL, NULL, NULL, 'Aen0O0j4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'RyToastee', NULL, NULL), - (951, 'Sadert', NULL, NULL, NULL, 'dlOnPVX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sadert', NULL, NULL), - (952, 'SailorJerrys', NULL, NULL, NULL, 'Pm7QVLP4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SailorJerrys', NULL, NULL), - (953, 'Saint', NULL, NULL, NULL, '4ZkLvKWd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Saint', NULL, NULL), - (954, 'Saint Pablo', NULL, NULL, NULL, 'dzO27l1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Saint Pablo', NULL, NULL), - (955, 'Salami', NULL, NULL, NULL, '4ZkENLLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Salami', NULL, NULL), - (956, 'Salty_Sawyer', NULL, NULL, NULL, 'm6YlDZRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Salty_Sawyer', NULL, NULL), - (957, 'SanShine', NULL, NULL, NULL, '4vEyyVkA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SanShine', NULL, NULL), - (958, 'Sargent Schultz', NULL, NULL, NULL, '4EQLVPn4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sargent Schultz', NULL, NULL), - (959, 'Sashka', NULL, NULL, NULL, 'mLzPbxy4', '76561198040524850', NULL, 'Sashka-サシュカ', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sashka', NULL, NULL), - (960, 'Sassy', NULL, NULL, NULL, '4ZgwX0Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sassy', NULL, NULL), - (961, 'Satch', NULL, NULL, NULL, 'myDlkJgd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Satch', NULL, NULL), - (962, 'Saucey5321', NULL, NULL, NULL, '2d2EloM4', '76561198799012414', NULL, 'Saucey5321', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Saucey5321', NULL, NULL), - (963, 'Saving Private Le', NULL, NULL, NULL, '4WP72Xjd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Saving Private Le', NULL, NULL), - (964, 'Sawgunner17', NULL, NULL, NULL, 'dVgJGDrm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sawgunner17', NULL, NULL), - (965, 'SBesty', NULL, NULL, NULL, '4DYbJZLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SBesty', NULL, NULL), - (966, 'Schneemann', NULL, NULL, NULL, '0mqjJWlA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Schneemann', NULL, NULL), - (967, 'Scooter', NULL, NULL, NULL, 'd2OXVO8m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Scooter', NULL, NULL), - (968, 'Scorby Dao', NULL, NULL, NULL, 'oAgeGNqd', '76561198083936408', NULL, 'Scorby Dao', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Scorby Dao', NULL, NULL), - (969, 'Scottish', NULL, NULL, NULL, '4orbn6JA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Scottish', NULL, NULL), - (970, 'Scribs', NULL, NULL, NULL, '41WD6j8m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Scribs', NULL, NULL), - (971, 'Scruff', NULL, NULL, NULL, 'ArQK5rBm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Scruff', NULL, NULL), - (972, 'Scuba', NULL, NULL, NULL, 'dODKNwym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Scuba', NULL, NULL), - (973, 'Sea', NULL, NULL, NULL, 'dODnKK5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sea', NULL, NULL), - (974, 'sean97T', NULL, NULL, NULL, 'AX2M2Jvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'sean97T', NULL, NULL), - (975, 'Seanman122', NULL, NULL, NULL, 'd2rggqVd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Seanman122', NULL, NULL), - (976, 'Seb', NULL, NULL, NULL, 'AXZ9NBZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Seb', NULL, NULL), - (977, 'Sentinal', NULL, NULL, NULL, '4E2rVMZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sentinal', NULL, NULL), - (978, 'SeriousSam557', NULL, NULL, NULL, 'GAneQwbm', NULL, NULL, 'SeriousSam557', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SeriousSam557', NULL, NULL), - (979, 'SGTxSnuggles', NULL, NULL, NULL, '4oMXO5Ym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SGTxSnuggles', NULL, NULL), - (980, 'Shadow', NULL, NULL, NULL, 'mLzGroL4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Shadow', NULL, NULL), - (981, 'Shampoo N Rinse', NULL, NULL, NULL, 'mGMb37P4', '76561198414369676', NULL, 'Shampoo N Rinse', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Shampoo N Rinse', NULL, NULL), - (982, 'Sheep', NULL, NULL, NULL, '4PNaOJZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sheep', NULL, NULL), - (983, 'Shelton R.', NULL, NULL, NULL, 'kdKXPlam', '76561198103035752', NULL, 'Hector S.', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Shelton R.', NULL, NULL), - (984, 'Shepard3B', NULL, NULL, NULL, 'oAgLn6V4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Shepard3B', NULL, NULL), - (985, 'Sheppard', NULL, NULL, NULL, 'ndloDNY4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sheppard', NULL, NULL), - (986, 'Shmokey', NULL, NULL, NULL, 'm6ok8yzA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Shmokey', NULL, NULL), - (987, 'Show Time', NULL, NULL, NULL, 'bdz21yad', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Show Time', NULL, NULL), - (988, 'SidP', NULL, NULL, NULL, 'mbZvVkRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SidP', NULL, NULL), - (989, 'SingleMoms6', NULL, NULL, NULL, 'dO6GO8e4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SingleMoms6', NULL, NULL), - (990, 'Sinstar', NULL, NULL, NULL, 'bdz6r0Ld', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sinstar', NULL, NULL), - (991, 'Sipping', NULL, NULL, NULL, 'pmbxDWz4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sipping', NULL, NULL), - (992, 'Sir_TinkTink', NULL, NULL, NULL, 'NmLaxygA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sir_TinkTink', NULL, NULL), - (993, 'SixFiftySix', NULL, NULL, NULL, 'dw2bPaM4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SixFiftySix', NULL, NULL), - (994, 'Sk8sage', NULL, NULL, NULL, 'ndlzWnwA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sk8sage', NULL, NULL), - (995, 'Skark18', NULL, NULL, NULL, 'm7zEyzMd', '76561198054805078', NULL, 'Skark18', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Skark18', NULL, NULL), - (996, 'skarks', NULL, NULL, NULL, '4ol91zMd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'skarks', NULL, NULL), - (997, 'SKD', NULL, NULL, NULL, 'amGR3Jkd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SKD', NULL, NULL), - (998, 'Skizzy', NULL, NULL, NULL, 'N4EeZ1w4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Skizzy', NULL, NULL), - (999, 'sky', NULL, NULL, NULL, 'd3R6VJ24', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'sky', NULL, NULL), - (1000, 'Slabsyyy', NULL, NULL, NULL, 'mjVOrW5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Slabsyyy', NULL, NULL), - (1001, 'Slandr', NULL, NULL, NULL, 'AgxD25n4', '76561198373461106', NULL, 'Slandr', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Slandr', NULL, NULL), - (1002, 'Slater', NULL, NULL, NULL, '841vvvRd', '76561199135492777', NULL, 'Aru', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Slater', NULL, NULL), - (1003, 'Slay US', NULL, NULL, NULL, 'O4Z5pM9A', '76561198990488549', NULL, 'MocKSlay', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Slay US', NULL, NULL), - (1004, 'Sleepy', NULL, NULL, NULL, 'd90BPKE4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sleepy', NULL, NULL), - (1005, 'Slugs', NULL, NULL, NULL, 'd3V9LjY4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Slugs', NULL, NULL), - (1006, 'Smo', NULL, NULL, NULL, '4WWw56j4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Smo', NULL, NULL), - (1007, 'Smorconomics', NULL, NULL, NULL, 'VmMkrJJ4', '76561197976598311', NULL, 'SMOrconomics', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Smorconomics', NULL, NULL), - (1008, 'S. Myers', NULL, NULL, NULL, 'd81gn6km', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'S. Myers', NULL, NULL), - (1009, 'SneaknysnakE', NULL, NULL, NULL, 'mGOk1anm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SneaknysnakE', NULL, NULL), - (1010, 'Snowfox', NULL, NULL, NULL, 'dKP6GPem', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Snowfox', NULL, NULL), - (1011, 'soarin', NULL, NULL, NULL, 'kdKlG99m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'soarin', NULL, NULL), - (1012, 'SocietalPhalanx', NULL, NULL, NULL, 'dxOr5nD4', '76561198138849538', NULL, 'societalPHALANX', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SocietalPhalanx', NULL, NULL), - (1013, 'Solidify', NULL, NULL, NULL, '41WMnERm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Solidify', NULL, NULL), - (1014, 'Solid Something', NULL, NULL, NULL, 'AXV3GXvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Solid Something', NULL, NULL), - (1015, 'Solisoo', NULL, NULL, NULL, 'daBnr1Dm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Solisoo', NULL, NULL), - (1016, 'Sonny Quinn', NULL, NULL, NULL, 'dwYoWLaA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sonny Quinn', NULL, NULL), - (1017, 'Soogy', NULL, NULL, NULL, 'd9Xg3GX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Soogy', NULL, NULL), - (1018, 'Southerndraw81', NULL, NULL, NULL, 'Gmjwwe0A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Southerndraw81', NULL, NULL), - (1019, 'Spades', NULL, NULL, NULL, 'dxMx6p1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Spades', NULL, NULL), - (1020, 'spartainman64', NULL, NULL, NULL, '0mq8QOLd', '76561198245754822', NULL, 'spartainman64', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'spartainman64', NULL, NULL), - (1021, 'SPARXLXRD', NULL, NULL, NULL, '41GBnN8m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SPARXLXRD', NULL, NULL), - (1022, 'Spazz', NULL, NULL, NULL, '4oMoxJwm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Spazz', NULL, NULL), - (1023, 'Imightbehum4n', NULL, NULL, NULL, '41WV1yEm', '76561198853319271', NULL, 'Imightbehum4n', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SPC Human', NULL, NULL), - (1024, 'Spectre', NULL, NULL, NULL, 'VmyZvY1A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Spectre', NULL, NULL), - (1025, 'Spek', NULL, NULL, NULL, 'd56zRMOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Spek', NULL, NULL), - (1026, 'spike100002', NULL, NULL, NULL, '4kRQerLA', '76561198799368459', NULL, 'spike', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'spike100002', NULL, NULL), - (1027, 'Spooky', NULL, NULL, NULL, 'N4Er0JRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Spooky', NULL, NULL), - (1028, 'squiffy', NULL, NULL, NULL, 'd8b7vrVA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'squiffy', NULL, NULL), - (1029, 'Stanio15', NULL, NULL, NULL, 'R40yKWEd', '76561197998519320', NULL, 'Stanio15', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Stanio15', NULL, NULL), - (1030, 'Star-Casm', NULL, NULL, NULL, 'mbqWlw6d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Star-Casm', NULL, NULL), - (1031, 'StarTeller', NULL, NULL, NULL, 'NmLjz6g4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'StarTeller', NULL, NULL), - (1032, 'Steph', NULL, NULL, NULL, 'd2wKPkZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Steph', NULL, NULL), - (1033, 'sterlingtrombone', NULL, NULL, NULL, 'dJNwVJ6d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'sterlingtrombone', NULL, NULL), - (1034, 'stev', NULL, NULL, NULL, '4v8qbebm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'stev', NULL, NULL), - (1035, 'Steve \'Killjoy\'', NULL, NULL, NULL, '41oPGr8m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Steve \'Killjoy\'', NULL, NULL), - (1036, 'Stilgar', NULL, NULL, NULL, 'mbZNWRzm', '76561198076519461', NULL, 'Stilgar', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Stilgar', NULL, NULL), - (1037, 'Stingray_84041', NULL, NULL, NULL, '4Pz0ORvm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Stingray_84041', NULL, NULL), - (1038, 'stinkynoodle', NULL, NULL, NULL, 'm6Yj0JQd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'stinkynoodle', NULL, NULL), - (1039, 'stoner', NULL, NULL, NULL, '4EQlP9n4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'stoner', NULL, NULL), - (1040, 'Stormruler', NULL, NULL, NULL, '4kRMMjwA', '76561198020074124', NULL, 'Ainsley, Lord of Oil', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Stormruler', NULL, NULL), - (1041, 'Stredman', NULL, NULL, NULL, '4oOZWZJ4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Stredman', NULL, NULL), - (1042, 'Street', NULL, NULL, NULL, 'ndaxNQp4', '76561198253755489', NULL, 'street', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Street', NULL, NULL), - (1043, 'Strider', NULL, NULL, NULL, 'm6YW7Eqd', '76561198051430084', NULL, 'Strider', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Strider', NULL, NULL), - (1044, 'Strikerzero', NULL, NULL, NULL, 'pmbMYjgd', '76561198175348294', NULL, 'Strikezer0', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Strikerzero', NULL, NULL), - (1045, 'StrngCheze', NULL, NULL, NULL, 'd5j1rN5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'StrngCheze', NULL, NULL), - (1046, 'Stu', NULL, NULL, NULL, 'mb10vYRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Stu', NULL, NULL), - (1047, 'Super Eubanks', NULL, NULL, NULL, 'AYRakkR4', '76561198071951723', NULL, 'Super Eubanks', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Super Eubanks', NULL, NULL), - (1048, 'SuperKai44', NULL, NULL, NULL, 'o4Po0QwA', '76561199091960429', NULL, 'SuperKai44', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'SuperKai44', NULL, NULL), - (1049, 'Surreal', NULL, NULL, NULL, 'bdzMMpD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Surreal', NULL, NULL), - (1050, 'sushistation4', NULL, NULL, NULL, 'AnaYGVYm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'sushistation4', NULL, NULL), - (1051, 'Suu1uu', NULL, NULL, NULL, '4PNL6PZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Suu1uu', NULL, NULL), - (1052, 'Sverne', NULL, NULL, NULL, '8dBNlzvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sverne', NULL, NULL), - (1053, 'swag', NULL, NULL, NULL, 'nda6Q9am', '76561198149980592', NULL, 'Misto', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'swag', NULL, NULL), - (1054, 'swamp', NULL, NULL, NULL, 'AgkYqBrA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'swamp', NULL, NULL), - (1055, 'Switch', NULL, NULL, NULL, 'dzbaOMbd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Switch', NULL, NULL), - (1056, 'S. Wolf', NULL, NULL, NULL, 'd9nPZvEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'S. Wolf', NULL, NULL), - (1057, 'Syender', NULL, NULL, NULL, 'ydwwbMjd', NULL, NULL, NULL, '125714602984996864', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 14:01:48', NULL, NULL, NULL, NULL, 'guest', 'Syender', NULL, NULL), - (1058, 'Sykeen', NULL, NULL, NULL, 'NmLPbEJm', '76561198041387644', NULL, 'Sykeen', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sykeen', NULL, NULL), - (1059, 'Sync', NULL, NULL, NULL, 'xAYxbq9m', '76561198141697028', NULL, 'Koolz', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Sync', NULL, NULL), - (1060, 'T8ter', NULL, NULL, NULL, '8mRlpDQ4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'T8ter', NULL, NULL), - (1061, 'Talon', NULL, NULL, NULL, '4ooDMYw4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Talon', NULL, NULL), - (1062, 'Tanis Atreides', NULL, NULL, NULL, '1ArL9Wwd', '76561197997728193', NULL, 'Tanis Atreides', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tanis Atreides', NULL, NULL), - (1063, 'Tanner H.', NULL, NULL, NULL, 'lAe1EMWA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tanner H.', NULL, NULL), - (1064, 'Tap', NULL, NULL, NULL, 'N4ErGrDd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tap', NULL, NULL), - (1065, 'Tapia', NULL, NULL, NULL, 'mR6vj3Pm', '76561198246401704', NULL, 'MarksMan', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tapia', NULL, NULL), - (1066, 'Taylor', NULL, NULL, NULL, '0mqwqKX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Taylor', NULL, NULL), - (1067, 'tdotdotdot', NULL, NULL, NULL, 'GAneN0Jm', '76561197994345216', NULL, 'T...', '220365572800512000', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 20:14:00', NULL, NULL, '{"id":"31813f442e4147cfb0a697362b22de45ea410cc4abbc6ac4a4d8c439cee7af3b","displayName":"t...","username":"tdotdot","name":{"givenName":"t..."}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'tdotdot', NULL, '2025-12-17 20:15:27'), - (1068, 'Teal', NULL, NULL, NULL, 'NmLGzPJd', '76561198142825309', NULL, 'Angel', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Teal', NULL, NULL), - (1069, 'TechPriestPratt', NULL, NULL, NULL, 'Ae7VLJOd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TechPriestPratt', NULL, NULL), - (1070, 'Teggs', NULL, NULL, NULL, 'w4WENrEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Teggs', NULL, NULL), - (1071, 'TEMTEM', NULL, NULL, NULL, 'nm62xD1m', NULL, NULL, NULL, '395601603157032967', NULL, NULL, '2025-12-15 10:57:11', '2025-12-16 21:24:10', NULL, NULL, NULL, NULL, 'guest', 'TEMTEM', NULL, NULL), - (1072, 'Tesla', NULL, NULL, NULL, 'ydwD6DMm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tesla', NULL, NULL), - (1073, 'Tex', NULL, NULL, NULL, 'mRoDkloA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tex', NULL, NULL), - (1074, 'Teyl', NULL, NULL, NULL, 'R40OJqVA', '76561197984588232', NULL, 'Teyl', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Teyl', NULL, NULL), - (1075, 'ThatsColin', NULL, NULL, NULL, '8d8DY6Nd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ThatsColin', NULL, NULL), - (1076, 'TheDiscount', NULL, NULL, NULL, 'dzb96lLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TheDiscount', NULL, NULL), - (1077, 'The Jedi Gamer', NULL, NULL, NULL, '4oMyE8om', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'The Jedi Gamer', NULL, NULL), - (1078, 'The_PFlare', NULL, NULL, NULL, 'dBnge3wd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'The_PFlare', NULL, NULL), - (1079, 'ThePlagueHealer', NULL, NULL, NULL, '41qWD0b4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ThePlagueHealer', NULL, NULL), - (1080, 'Theseus', NULL, NULL, NULL, 'd3VYzrO4', '76561198162667081', NULL, 'Myst', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Theseus', NULL, NULL), - (1081, 'TheWesternRider', NULL, NULL, NULL, '4oxjazYd', '76561198397538071', NULL, 'thewesternrider44', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TheWesternRider', NULL, NULL), - (1082, 'TheWikiFish', NULL, NULL, NULL, 'o4PK2xrA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TheWikiFish', NULL, NULL), - (1083, 'ThomasMrSheep', NULL, NULL, NULL, 'x4o1pKJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ThomasMrSheep', NULL, NULL), - (1084, 'Thorn', NULL, NULL, NULL, 'mRBbYXYm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Thorn', NULL, NULL), - (1085, 'Thorsell', NULL, NULL, NULL, 'dK3xjJ9d', '76561198010222003', NULL, 'Thorsell', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Thorsell', NULL, NULL), - (1086, 'ThunderKing', NULL, NULL, NULL, 'bdz1vya4', '76561199114664807', NULL, 'ThunderKing', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ThunderKing', NULL, NULL), - (1087, 'tiger', NULL, NULL, NULL, 'VmM1BMQm', '76561199041202728', NULL, 'Jaeger Main', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'tiger', NULL, NULL), - (1088, 'TimmyTheWhale', NULL, NULL, NULL, 'dlK19nw4', '76561198307914666', NULL, 'TimmyTheWhale', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TimmyTheWhale', NULL, NULL), - (1089, 'TipsyTactician', NULL, NULL, NULL, 'rdO1gaWA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TipsyTactician', NULL, NULL), - (1090, 'T. Jordon', NULL, NULL, NULL, '406JJWRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'T. Jordon', NULL, NULL), - (1091, 'TOAD', NULL, NULL, NULL, 'dlk7oNl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TOAD', NULL, NULL), - (1092, 'Toaninja', NULL, NULL, NULL, '8dB9BjL4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Toaninja', NULL, NULL), - (1093, 'tom44499', NULL, NULL, NULL, 'AYpq90wm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tobias', NULL, NULL), - (1094, 'Tommy_10inch', NULL, NULL, NULL, 'Pm7vD5ad', '76561198027152335', NULL, 'Tommy_10inch', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tommy_10inch', NULL, NULL), - (1095, 'TommyBoy', NULL, NULL, NULL, 'mqEnP9lm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TommyBoy', NULL, NULL), - (1096, 'Toscha', NULL, NULL, NULL, '64veN7BA', '76561198058577590', NULL, 'Toscha', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Toscha', NULL, NULL), - (1097, 'tovarish', NULL, NULL, NULL, 'kdKVpzR4', '76561198996290041', NULL, 'TheGoodStalker', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'tovarish', NULL, NULL), - (1098, 'Tree Sprite', NULL, NULL, NULL, 'myDE7GWd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tree Sprite', NULL, NULL), - (1099, 'Tremor41', NULL, NULL, NULL, 'dKZ5lWY4', '76561198079550305', NULL, 'Tremor41', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tremor41', NULL, NULL), - (1100, 'T_rent47', NULL, NULL, NULL, 'GmjoW3aA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'T_rent47', NULL, NULL), - (1101, 'Triskalweiss', NULL, NULL, NULL, 'ArgyLXL4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Triskalweiss', NULL, NULL), - (1102, 'Trogdor', NULL, NULL, NULL, 'Pm7XqnMA', '76561198150355752', NULL, 'Trogdor the Burninator', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Trogdor', NULL, NULL), - (1103, 'Trooper', NULL, NULL, NULL, '8dB5vBw4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Trooper', NULL, NULL), - (1104, 'Turbo District', NULL, NULL, NULL, 'o4PX3ww4', '76561198045413412', NULL, 'Turbo District', '111263331418923008', NULL, NULL, '2025-12-15 10:57:11', '2025-12-17 21:17:53', NULL, NULL, '{"id":"4920786bf97824ba86908cd388f02820d58bb33b991883573f58646ba876b5f0","displayName":"Turbo District","username":"turbodistrict","name":{"givenName":"Turbo District"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Turbo District', NULL, '2025-12-17 21:19:20'), - (1105, 'TurtleBread', NULL, NULL, NULL, 'm7GvVXem', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TurtleBread', NULL, NULL), - (1106, 'Tyler', NULL, NULL, NULL, 'dxM7BL2m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Tyler', NULL, NULL), - (1107, 'tysmart', NULL, NULL, NULL, '4PPQNEG4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'tysmart', NULL, NULL), - (1108, 'Uncivilized (UC)', NULL, NULL, NULL, 'VdxRqJDA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Uncivilized (UC)', NULL, NULL), - (1109, 'UnforgivenBoiBen', NULL, NULL, NULL, 'kdK0MoRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'UnforgivenBoiBen', NULL, NULL), - (1110, 'Unit-Tracker', NULL, NULL, NULL, 'd2wwXVVm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Unit-Tracker', NULL, NULL), - (1111, 'Unkept', NULL, NULL, NULL, 'AeVQQNX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Unkept', NULL, NULL), - (1112, 'Unsafeknave', NULL, NULL, NULL, 'R40R7wQm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Unsafeknave', NULL, NULL), - (1113, 'UsGunney66', NULL, NULL, NULL, 'daB7qbDm', '76561198131353099', NULL, 'skLer', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'UsGunney66', NULL, NULL), - (1114, 'UwU-Nator', NULL, NULL, NULL, 'AYR3ME94', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'UwU-Nator', NULL, NULL), - (1115, 'V1_P3R', NULL, NULL, NULL, 'Lmp0Za2m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'V1_P3R', NULL, NULL), - (1116, 'Valiant', NULL, NULL, NULL, 'rdOa9l5A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Valiant', NULL, NULL), - (1117, 'Vancey', NULL, NULL, NULL, 'Arxb8YZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vancey', NULL, NULL), - (1118, 'Vecxna13', NULL, NULL, NULL, '4ZElzOLA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vecxna13', NULL, NULL), - (1119, 'Venom.T3H', NULL, NULL, NULL, '841yBBp4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Venom.T3H', NULL, NULL), - (1120, 'Vent', NULL, NULL, NULL, 'nm6bl8qm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vent', NULL, NULL), - (1121, 'Venti', NULL, NULL, NULL, '4vbVvX14', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Venti', NULL, NULL), - (1122, 'Vermin', NULL, NULL, NULL, 'mM9kM09m', '76561198037373308', NULL, 'MercilessManiac', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vermin', NULL, NULL), - (1123, 'VeRo_SGS', NULL, NULL, NULL, 'ArgqoEq4', '76561199197634697', NULL, 'SG.VeRo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'VeRo_SGS', NULL, NULL), - (1124, 'Verta', NULL, NULL, NULL, 'daJjeOZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Verta', NULL, NULL), - (1125, 'Veyleaf', NULL, NULL, NULL, 'GmjzRPbm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Veyleaf', NULL, NULL), - (1126, 'VibeCheckCon', NULL, NULL, NULL, 'oAgR0gjm', '76561198217647812', NULL, 'VibeCheck', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'VibeCheckCon', NULL, NULL), - (1127, 'Victoria', NULL, NULL, NULL, '4oj6kOMA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Victoria', NULL, NULL), - (1128, 'Vilenpepsi', NULL, NULL, NULL, 'd3yBZLDA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vilenpepsi', NULL, NULL), - (1129, 'Violet Lauro', NULL, NULL, NULL, 'kdKXkBam', '76561198159859656', NULL, 'Vinniehat', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'VioletSnow', NULL, NULL), - (1130, 'Viper', NULL, NULL, NULL, '4ZknkYGd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Viper', NULL, NULL), - (1131, 'Vision (Qc)', NULL, NULL, NULL, 'R40q8LQd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vision (Qc)', NULL, NULL), - (1132, 'Vizion', NULL, NULL, NULL, 'dx61xDGA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vizion', NULL, NULL), - (1133, 'Vlad', NULL, NULL, NULL, '4oMDG0nm', '76561198314353885', NULL, 'Hohenheim The Cuddler', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vlad', NULL, NULL), - (1134, 'Vortex', NULL, NULL, NULL, '2d2WQWJm', '76561198225229248', NULL, 'Vortex', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vortex', NULL, NULL), - (1135, 'Vortexblaster', NULL, NULL, NULL, 'EdVl2G5A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vortexblaster', NULL, NULL), - (1136, 'Vuka', NULL, NULL, NULL, 'ydweXYjA', '76561198185264359', NULL, 'Драгослав Рачић', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Vuka', NULL, NULL), - (1137, 'WacktheMedic', NULL, NULL, NULL, 'dBWV8YPm', '76561197975408060', NULL, 'WacktheMedic', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'WacktheMedic', NULL, NULL), - (1138, 'Wagaga', NULL, NULL, NULL, 'w4WLzQqd', '76561198073864510', NULL, 'Wagaga', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Wagaga', NULL, NULL), - (1139, 'WakeUpToJustice', NULL, NULL, NULL, '41oz6QMm', '76561198268977771', NULL, 'WakeUpToJustice', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'WakeUpToJustice', NULL, NULL), - (1140, 'Walker', NULL, NULL, NULL, 'Qd5XkkO4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Walker', NULL, NULL), - (1141, 'WallyWorld', NULL, NULL, NULL, 'v4DbGQqm', '76561198201328891', NULL, 'WallyWorld', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'WallyWorld', NULL, NULL), - (1142, 'Walrusking56', NULL, NULL, NULL, '4DrX66Mm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Walrusking56', NULL, NULL), - (1165, 'Warcrimes', NULL, NULL, NULL, 'mqM2p0Lm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Warcrimes', NULL, NULL), - (1166, 'wardaddy1980', NULL, NULL, NULL, 'mG2vprPd', '76561198299139590', NULL, 'Wardaddy1980', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'wardaddy1980', NULL, NULL), - (1167, 'Watson', NULL, NULL, NULL, '841vDPwd', '76561198421692610', NULL, 'Bugerkingman', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Watson', NULL, NULL), - (1168, 'WeAreWhispers', NULL, NULL, NULL, 'dKZw1pR4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'WeAreWhispers', NULL, NULL), - (1169, 'Whiskey', NULL, NULL, NULL, '2d26ywPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Whiskey', NULL, NULL), - (1170, 'WhiskeyTracker', NULL, NULL, NULL, '4EnnRNDd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'WhiskeyTracker', NULL, NULL), - (1171, 'will', NULL, NULL, NULL, 'Pm7DrZYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'will', NULL, NULL), - (1172, 'Willis_35', NULL, NULL, NULL, 'AQ9Be37A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Willis_35', NULL, NULL), - (1173, 'Wimpy', NULL, NULL, NULL, 'dVgaBEqm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Wimpy', NULL, NULL), - (1174, 'Wiploc', NULL, NULL, NULL, 'dOjDg7O4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Wiploc', NULL, NULL), - (1175, 'WNUSS97', NULL, NULL, NULL, 'd5wN5bqA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'WNUSS97', NULL, NULL), - (1176, 'Wolf', NULL, NULL, NULL, 'oAg03eq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Wolf', NULL, NULL), - (1177, 'Wolfe', NULL, NULL, NULL, 'd9nV8Wpm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Wolfe', NULL, NULL), - (1178, 'Wolfer', NULL, NULL, NULL, 'dN9ZOJy4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Wolfer', NULL, NULL), - (1179, 'Woods', NULL, NULL, NULL, 'd5wM583A', '76561198011217903', NULL, 'Woods', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Woods', NULL, NULL), - (1180, 'TheBeastWorgen', NULL, NULL, NULL, 'GAnO3vX4', '76561199019738622', NULL, 'TheBeastWorgen', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Worgen', NULL, NULL), - (1181, 'Wozzo', NULL, NULL, NULL, 'ZdNyKgX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Wozzo', NULL, NULL), - (1182, 'Wright', NULL, NULL, NULL, 'dVBLOD6d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Wright', NULL, NULL), - (1183, 'WyldKarrde', NULL, NULL, NULL, 'd8j0vx0A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'WyldKarrde', NULL, NULL), - (1184, 'Wynholdt', NULL, NULL, NULL, '64vkO1Wd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Wynholdt', NULL, NULL), - (1185, 'xiirou', NULL, NULL, NULL, '8418gG8A', '76561198133364673', NULL, 'xiirou', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'xiirou', NULL, NULL), - (1186, 'Xil', NULL, NULL, NULL, 'amGR6vnd', '76561198058539050', NULL, 'Xil', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Xil', NULL, NULL), - (1187, 'Xkdy idky', NULL, NULL, NULL, 'mbXGj2V4', '76561199526624745', NULL, 'God Can\'t Help Us', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Xkdy idky', NULL, NULL), - (1188, 'XOMBY', NULL, NULL, NULL, 'LmpJy094', NULL, NULL, '76561198386943052', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'XOMBY', NULL, NULL), - (1189, 'Xray105', NULL, NULL, NULL, 'xd95eKEd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Xray105', NULL, NULL), - (1190, 'xufffer', NULL, NULL, NULL, 'Ag5rGXnd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'xufffer', NULL, NULL), - (1191, 'Xylemic', NULL, NULL, NULL, '41orVa7m', '76561198397413444', NULL, 'XylemicGaming', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Xylemic', NULL, NULL), - (1192, 'yeldarB13', NULL, NULL, NULL, 'mLGq9Nwd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'yeldarB13', NULL, NULL), - (1193, 'Yume', NULL, NULL, NULL, 'NmL3pO8d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Yume', NULL, NULL), - (1194, 'Zachattack974', NULL, NULL, NULL, 'nm60xJ14', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zachattack974', NULL, NULL), - (1195, 'Zacho', NULL, NULL, NULL, 'Ae76Mjzd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zacho', NULL, NULL), - (1196, 'Zagreus', NULL, NULL, NULL, 'mG2V1WYd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zagreus', NULL, NULL), - (1197, 'ZamuHale', NULL, NULL, NULL, 'mpKvzeqd', '76561198071797124', NULL, 'ZamuHale', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ZamuHale', NULL, NULL), - (1198, 'Zay', NULL, NULL, NULL, 'd5jgo5Km', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zay', NULL, NULL), - (1199, 'Zen', NULL, NULL, NULL, 'xAYxbz0m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zen', NULL, NULL), - (1200, 'Zenix', NULL, NULL, NULL, '6AXgn8Em', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zenix', NULL, NULL), - (1201, 'Zennith_Zephyr', NULL, NULL, NULL, 'AQbW1QN4', '76561198399266919', NULL, 'Zennith', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zennith_Zephyr', NULL, NULL), - (1202, 'Zenro', NULL, NULL, NULL, 'd81KyXGm', '76561198188507358', NULL, 'Zenro3113', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zenro', NULL, NULL), - (1203, 'zeps', NULL, NULL, NULL, 'dKPrJram', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'zeps', NULL, NULL), - (1204, 'ZeroFrame', NULL, NULL, NULL, 'AgkXJlRA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'ZeroFrame', NULL, NULL), - (1205, 'Zhu', NULL, NULL, NULL, 'd5YPxwLd', '76561198011686101', NULL, 'Naiuhz', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zhu', NULL, NULL), - (1206, 'Zion', NULL, NULL, NULL, 'R40NlObm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Zion', NULL, NULL), - (1207, 'zmooth', NULL, NULL, NULL, '8418nM8A', '76561198123427577', NULL, 'zmooth', NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'zmooth', NULL, NULL), - (1208, 'zombie/whiteout', NULL, NULL, NULL, '4Wb8b9pA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'zombie/whiteout', NULL, NULL), - (2221, 'Walrus', NULL, NULL, NULL, 'NmLXbkLm', NULL, NULL, NULL, '241969545307357185', NULL, NULL, '2025-12-15 14:01:07', '2025-12-17 11:30:42', NULL, NULL, NULL, NULL, 'guest', 'Walrus', NULL, NULL), - (2222, 'Raccoon', NULL, NULL, NULL, '8d8NNkkA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Raccoon', NULL, NULL), - (2223, 'Doc Halladay', NULL, NULL, NULL, '4EQzpZZ4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Doc Halladay', NULL, NULL), - (2224, 'Jaeger', NULL, NULL, NULL, 'd8DjnzOd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Jaeger', NULL, NULL), - (2225, 'Radd Lad', NULL, NULL, NULL, 'R40MPBKd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Radd Lad', NULL, NULL), - (2226, 'TrashPandaTX', NULL, NULL, NULL, 'AnnNaNYA', '76561198010343900', NULL, 'TrashPandaTX', NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'TrashPandaTX', NULL, NULL), - (2227, 'BadDad', NULL, NULL, NULL, 'dlKGaDB4', '76561198374330885', NULL, 'Bad_Dad', NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'BadDad', NULL, NULL), - (2228, 'Bion', NULL, NULL, NULL, 'AgPbYej4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Bion', NULL, NULL), - (2229, 'A-Train', NULL, NULL, NULL, 'GAneDy2m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'A-Train', NULL, NULL), - (2230, 'Kruton', NULL, NULL, NULL, '4kRgJPEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Kruton', NULL, NULL), - (2231, 'CapnQuartermain/Scarab', NULL, NULL, NULL, 'EdVMpqy4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'CapnQuartermain/Scarab', NULL, NULL), - (2232, 'KarlKirbs', NULL, NULL, NULL, 'Lmp6VzB4', '76561198091496917', NULL, 'KarlKirbs', NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'KarlKirbs', NULL, NULL), - (2233, 'Moonss1', NULL, NULL, NULL, 'O4Z5BJ9A', '76561198123934580', NULL, 'WhoNeedsHostages', NULL, NULL, NULL, '2025-12-15 14:01:07', '2025-12-15 21:00:33', NULL, NULL, NULL, NULL, 'guest', 'Moonss1', NULL, NULL), - (3348, 'user4752', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-21 17:58:03', '2025-12-23 17:15:54', NULL, NULL, '{"id":"b08b1bc6e9ea94335f21a26ef271d058038fa4e546ad30268d478f03905068ee","displayName":"hizumi","username":"user4752","name":{"givenName":"hizumi"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', NULL, NULL, '2025-12-23 17:17:29'); + (2, 'cstuder93_testing', NULL, NULL, NULL, 'dBbJMp8d', NULL, NULL, NULL, '1228002686788440245', 'cstuder93', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, '{"id":"4f0929853eea108f0c33341271b4f6b0c05e94a66ee7e998043aaa9228ccae2f","displayName":"cstuder","username":"cstuder93","name":{"givenName":"cstuder"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'cstuder93_testing', NULL, '2025-12-23 14:20:55'), + (3, 'alvil2001_testing', NULL, NULL, NULL, 'AnnplqbA', NULL, NULL, NULL, '667243420892397578', 'alvil2001', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'alvil2001_testing', NULL, NULL), + (4, 'markymarks_testing', NULL, NULL, NULL, '54k7D2w4', NULL, NULL, NULL, '260884944027516938', 'markymarks', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, '{"id":"421d35e4af43a2e1a469ce2a2699dd7a1d5019e7e4dcdd04a648d9570cdff822","displayName":"Marky Marks","username":"markymarks","name":{"givenName":"Marky Marks"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'markymarks_testing', NULL, '2025-12-25 17:24:01'), + (5, 'thesaladking_testing', NULL, NULL, NULL, 'AYwOz8od', NULL, NULL, NULL, '122119740134129664', 'thesaladking', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, '{"id":"aa1d1cad9eae1051332c3465ad5f41dba8754b85075cb21913154e6eadf6e111","displayName":"TheSaladKing","username":"thesaladking","name":{"givenName":"TheSaladKing"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'thesaladking_testing', NULL, '2025-12-30 19:44:12'), + (6, 'triggs__testing', NULL, NULL, NULL, 'ndaRDaKm', NULL, NULL, NULL, '365991855789309955', 'triggs_', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, '{"id":"c724edf873b152655666e24214232811264b5510a90825940c84ef7171a1d195","displayName":"triggs","username":"triggs_","name":{"givenName":"triggs"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'triggs__testing', NULL, '2025-12-30 18:34:01'), + (7, 'capnquartermain_testing', NULL, NULL, NULL, 'dOxojqLm', NULL, NULL, NULL, '164876908671139841', 'capnquartermain', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, '{"id":"aa141795f629810e94cd42cd466ef28f46d55a2bcfb6666741cd959b41e313c6","displayName":"CapnQuartermain","username":"capnquartermain","name":{"givenName":"CapnQuartermain"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'capnquartermain_testing', NULL, '2025-12-17 20:30:24'), + (8, 'tigertamer988_testing', NULL, NULL, NULL, 'Arr7X9XA', NULL, NULL, NULL, '553042599817117698', 'tigertamer988', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, '{"id":"276316120b7adb373cf8c075200c5b94e81b59a127261e4da93280420934cf2f","displayName":"Tigertamer988","username":"tigertamer988","name":{"givenName":"Tigertamer988"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'tigertamer988_testing', NULL, '2026-01-02 14:16:58'), + (9, 'difty._testing', NULL, NULL, NULL, 'dKw8DJ5d', NULL, NULL, NULL, '295263170468249611', 'difty.', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, '{"id":"61f9b7d6e68b936874910390adbaa4d9dd8b30382128ef76c8443f2fdd540168","displayName":"Difty","username":"difty.","name":{"givenName":"Difty"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'difty._testing', NULL, '2026-01-02 10:47:39'), + (10, 'themightyzef_testing', NULL, NULL, NULL, 'dKnJnJa4', NULL, NULL, NULL, '344498524760834051', 'themightyzef', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, '{"id":"513d00d92b91011140917c011cd6fdbcf252a56f26773da7bf636c29352ffc95","displayName":"Zef ( Aboutta Flip This Trip )","username":"themightyzef","name":{"givenName":"Zef ( Aboutta Flip This Trip )"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'themightyzef_testing', NULL, '2025-12-20 17:49:09'), + (11, 'friendlyghost00_testing', NULL, NULL, NULL, 'mjj86rgm', NULL, NULL, NULL, '227542544182018051', 'friendlyghost00', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'friendlyghost00_testing', NULL, NULL), + (12, '.dalterino_testing', NULL, NULL, NULL, 'dKZaNBe4', NULL, NULL, NULL, '305917909807661056', '.dalterino', NULL, '2025-12-14 21:38:34', '2026-01-03 07:11:33', NULL, NULL, '{"id":"aa4ad1eb22346fbfe051a83c2da3602c5789b2992c8b74e412286b43e6f6f0c3","displayName":"Dalterino","username":".dalterino","name":{"givenName":"Dalterino"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', '.dalterino_testing', NULL, '2026-01-02 01:02:14'), + (13, 'zupersly_testing', NULL, NULL, NULL, 'ZdNrg9kd', NULL, NULL, NULL, '163467259673575424', 'zupersly', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"36d4fe3d5665fd16de4bc06250b65f783fb4cb991b39dc2851aaec950374dc87","displayName":"ZuperSly","username":"zupersly","name":{"givenName":"ZuperSly"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'zupersly_testing', NULL, '2026-01-02 15:01:15'), + (14, 'purplejizzstain_testing', NULL, NULL, NULL, 'dVoXyYym', NULL, NULL, NULL, '313008022396076034', 'purplejizzstain', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"fbae5ec37beac9f6c26d3b7b6313acde0a94c0674d36ba6c9b5bcc13a3ab4622","displayName":"purplejizzstain","username":"purplejizzstain","name":{"givenName":"purplejizzstain"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'purplejizzstain_testing', NULL, '2026-01-02 16:08:55'), + (15, 'blitzcraig_testing', NULL, NULL, NULL, 'EdVaaRZ4', NULL, NULL, NULL, '132515202192113665', 'blitzcraig', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'blitzcraig_testing', NULL, NULL), + (16, 'seal0553_testing', NULL, NULL, NULL, 'O4ZrpPl4', NULL, NULL, NULL, '241420870893961227', 'seal0553', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'seal0553_testing', NULL, NULL), + (17, 'the_handicap_testing', NULL, NULL, NULL, 'dOKY6z8d', NULL, NULL, NULL, '342651919421931523', 'the_handicap', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'the_handicap_testing', NULL, NULL), + (18, 'taters159_testing', NULL, NULL, NULL, 'mpQ3lnqA', NULL, NULL, NULL, '589531393978138634', 'taters159', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"71c153dc45103de72029ee28ad0929c3ef1c719c28806320202d2002e6e63ab9","displayName":"Taters159","username":"taters159","name":{"givenName":"Taters159"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'taters159_testing', NULL, '2025-12-17 18:56:06'), + (19, 'purple_pop_rocks_testing', NULL, NULL, NULL, 'GAneZjYm', NULL, NULL, NULL, '538899663877701652', 'purple_pop_rocks', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"cd26efaf00ca2887ccca1e558f1e049ece45ba268ab3f3383c8c292da02e763c","displayName":"Pop Rocks \\"Luke\\"","username":"purple_pop_rocks","name":{"givenName":"Pop Rocks \\"Luke\\""}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'purple_pop_rocks_testing', NULL, '2025-12-29 18:10:02'), + (20, 'sgteddy1212_testing', NULL, NULL, NULL, 'dzbNypVd', NULL, NULL, NULL, '300812795455340546', 'sgteddy1212', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"0c8811e731af9d712eff6d1abd50dfa9a71bccd8c18b42f64ed29c26139e68a9","displayName":"Teddy","username":"sgteddy1212","name":{"givenName":"Teddy"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'sgteddy1212_testing', NULL, '2025-12-29 18:22:38'), + (21, 'bones8070_testing', NULL, NULL, NULL, 'AnbyDDkA', NULL, NULL, NULL, '538865138690686986', 'bones8070', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'bones8070_testing', NULL, NULL), + (22, 'slothdotpy_testing', NULL, NULL, NULL, 'd5Dx1pO4', NULL, NULL, NULL, '120218059133812738', 'slothdotpy', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'slothdotpy_testing', NULL, NULL), + (23, 'caernarvon_testing', NULL, NULL, NULL, 'AeBO3kP4', NULL, NULL, NULL, '357189993757671444', 'caernarvon', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"87a8d57fd33511cf31bcb3a0d7e7b1ac28f70817731150e2ddace9f1e53938ce","displayName":"Clason","username":"caernarvon","name":{"givenName":"Clason"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'caernarvon_testing', NULL, '2025-12-31 08:07:54'), + (24, 'fortyone._._testing', NULL, NULL, NULL, 'mL2QO3a4', NULL, NULL, NULL, '186304877289406464', 'fortyone._.', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'fortyone._._testing', NULL, NULL), + (25, '_radagast_da_brown_testing', NULL, NULL, NULL, '4WB6BgnA', NULL, NULL, NULL, '204337967811002369', '_radagast_da_brown', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', '_radagast_da_brown_testing', NULL, NULL), + (26, 'ottomaniac_testing', NULL, NULL, NULL, 'dJZQ6EMd', NULL, NULL, NULL, '274116737509883915', 'ottomaniac', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"be4eb539177245db75fdc29b604c31cd1d15f3221d744cf16854080e135a78bc","displayName":"Ottomaniac","username":"ottomaniac","name":{"givenName":"Ottomaniac"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'ottomaniac_testing', NULL, '2025-12-27 14:08:29'), + (27, 'mike48_testing', NULL, NULL, NULL, 'VdxEJ2Xm', NULL, NULL, NULL, '275167852925812736', 'mike48', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"06159149f8cc81f9c34da62a1ad24ce1e1e33c8e80e09b6a13125b8106239d4c","displayName":"Mike48","username":"mike48","name":{"givenName":"Mike48"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'mike48_testing', NULL, '2026-01-02 00:12:59'), + (28, 'ajdj100_testing', NULL, NULL, NULL, '2d28vkMA', '76561198124304546', NULL, NULL, '275726520641781767', 'ajdj100', NULL, '2025-12-14 21:38:35', '2026-01-20 16:32:34', NULL, NULL, '{"id":"16a7e74b4cdf2ab9a5565bdfed7a27c0b0107bb05070213bf571179705896d7a","displayName":"Ajdj100","username":"ajdj100","name":{"givenName":"Ajdj100"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'ajdj100_testing', NULL, '2026-01-20 17:34:09'), + (29, '_morgz_testing', NULL, NULL, NULL, 'dJVbgOwd', NULL, NULL, NULL, '872889035792715908', '_morgz', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"c03dbb61e2c59a6f58b23d45db31395668a1940bb12ea8662737b4d47ca66353","displayName":"Morgz","username":"_morgz","name":{"givenName":"Morgz"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', '_morgz_testing', NULL, '2026-01-01 23:07:30'), + (30, 'fataldesolation_testing', NULL, NULL, NULL, 'ArbMKbqA', NULL, NULL, NULL, '527020120359567361', 'fataldesolation', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'fataldesolation_testing', NULL, NULL), + (31, 'xylemicgaming_testing', NULL, NULL, NULL, '4Z6z17l4', '76561198397413444', NULL, 'XylemicGaming', '339713252042866690', 'xylemicgaming', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"23055bd6d09e490b0ba464840bb16dbfabdd6d83e39ad6990a0084543f500c47","displayName":"XylemicGaming","username":"xylemicgaming","name":{"givenName":"XylemicGaming"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'xylemicgaming_testing', NULL, '2025-12-25 00:49:53'), + (32, 'the.buck_testing', NULL, NULL, NULL, '401W2ORd', NULL, NULL, NULL, '307392720408805377', 'the.buck', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'the.buck_testing', NULL, NULL), + (33, 'silentassassin6093_testing', NULL, NULL, NULL, 'mjVP59Nm', NULL, NULL, NULL, '370339387533164544', 'silentassassin6093', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'silentassassin6093_testing', NULL, NULL), + (34, 'zmooth565_testing', NULL, NULL, NULL, 'dVo6zbpm', '76561198123427577', NULL, 'zmooth', '1349521857937932328', 'zmooth565', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"f39279acbea187c648ab22e7cb242fd96c3b38b3c08dcbebbe3c5905739318df","displayName":"zmooth","username":"zmooth565","name":{"givenName":"zmooth"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'zmooth565_testing', NULL, '2025-12-31 17:05:36'), + (35, 's.asterisk_testing', NULL, NULL, NULL, 'dxKzV994', NULL, NULL, NULL, '167849550428635136', 's.asterisk', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"bb06ca7f1032a568e8b827ded6ec7559c88ff38d6509c5450408716c39452eb4","displayName":"duck","username":"s.asterisk","name":{"givenName":"duck"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 's.asterisk_testing', NULL, '2026-01-02 16:36:57'), + (36, 'castironcreature_47268_85039_testing', NULL, NULL, NULL, '4EKLYLXm', NULL, NULL, NULL, '1427771541923434626', 'castironcreature_47268_85039', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'castironcreature_47268_85039_testing', NULL, NULL), + (37, 'hairy._._testing', NULL, NULL, NULL, 'dJxQEoqA', NULL, NULL, NULL, '410893084956819467', 'hairy._.', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'hairy._._testing', NULL, NULL), + (38, 'eagletrooper_testing', NULL, NULL, NULL, 'VmyeBRym', NULL, NULL, NULL, '245793112809668608', 'eagletrooper', NULL, '2025-12-14 21:38:35', '2026-01-20 23:52:22', NULL, NULL, '{"id":"790450f1534192e5addde40f9be2ca4b9e1f86d719815d5b466916d3637437f6","displayName":"eagletrooper","username":"eagletrooper","name":{"givenName":"eagletrooper"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'eagletrooper_testing', NULL, '2026-01-20 23:53:58'), + (39, 'mattpod_testing', NULL, NULL, NULL, 'kdKMreZA', NULL, NULL, NULL, '343047357962649600', 'mattpod', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"6a7f7b6dd79b747c868dee8769d9f459ad4ddd6ef9afc494c0af7f24679a3d8e","displayName":"MattPod","username":"mattpod","name":{"givenName":"MattPod"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'mattpod_testing', NULL, '2026-01-02 10:53:58'), + (40, 'ecksbox_testing', NULL, NULL, NULL, 'xAYyPO0A', NULL, NULL, NULL, '217676491075354628', 'ecksbox', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"881901b1cf447d9260fe666edcc7355b0ad9c02552f298f1d43e0c561142dd06","displayName":"Festivized Ecksbox","username":"ecksbox","name":{"givenName":"Festivized Ecksbox"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'ecksbox_testing', NULL, '2025-12-23 23:59:52'), + (41, 'fredo7436_testing', NULL, NULL, NULL, 'dxMXk3Om', NULL, NULL, NULL, '173178653138485248', 'fredo7436', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'fredo7436_testing', NULL, NULL), + (42, 'fibonacci1123_testing', NULL, NULL, NULL, 'dVDLp6ZA', NULL, NULL, NULL, '228933190767738880', 'fibonacci1123', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"2f8818ac7f2a30f476b54f353311826ed27ccfebbd181e805edac31cba54d11a","displayName":"Fibonacci","username":"fibonacci1123","name":{"givenName":"Fibonacci"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'fibonacci1123_testing', NULL, '2025-12-20 15:03:51'), + (43, '_kenjeongun__testing', NULL, NULL, NULL, 'x4oeVOJm', NULL, NULL, NULL, '316069635944611853', '_kenjeongun_', NULL, '2025-12-14 21:38:35', '2026-01-15 19:29:36', NULL, NULL, '{"id":"7f47d23061a51bbf9378738f905522413064b242b9b0f9964fcef165e6949623","displayName":"KEN JEONG UN","username":"_kenjeongun_","name":{"givenName":"KEN JEONG UN"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', '_kenjeongun__testing_but_with_a_really_long_name', NULL, '2026-01-02 07:24:05'), + (44, 'commandshot_testing', NULL, NULL, NULL, 'd5Y0BbOd', NULL, NULL, NULL, '568033336740806666', 'commandshot', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'commandshot_testing', NULL, NULL), + (45, 'theandi._testing', NULL, NULL, NULL, 'd9oPaqqA', NULL, NULL, NULL, '274286874162364431', 'theandi.', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'theandi._testing', NULL, NULL), + (46, 'okami2222_testing', NULL, NULL, NULL, 'd3R13PZ4', NULL, NULL, NULL, '214304905484173312', 'okami2222', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"30f0a13586e58a0baecb17c0d181319108ee0714ec427eea3891334f0dd696a9","displayName":"okami2222","username":"okami2222","name":{"givenName":"okami2222"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'okami2222_testing', NULL, '2025-12-25 16:35:17'), + (47, 'vlasyny_testing', NULL, NULL, NULL, 'd2rMEvod', NULL, NULL, NULL, '581334750711775232', 'vlasyny', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"23a6fb220f0a2623e0ae685279ef37a4e05a8d7cae185839f26a3b0e1b0df00d","displayName":"Bama","username":"vlasyny","name":{"givenName":"Bama"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'vlasyny_testing', NULL, '2025-12-29 22:24:19'), + (48, 'rearmoistmantis_testing', NULL, NULL, NULL, 'oAgrkRqm', NULL, NULL, NULL, '237239213312049153', 'rearmoistmantis', NULL, '2025-12-14 21:38:35', '2026-01-03 07:11:33', NULL, NULL, '{"id":"87a840d83bb118baef3c482dbee1e36c938bf6f0231b9b48187149882eb74bd0","displayName":"rearmoistmantis","username":"rearmoistmantis","name":{"givenName":"rearmoistmantis"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'rearmoistmantis_testing', NULL, '2025-12-20 17:55:50'), + (49, 'jpspider_testing', NULL, NULL, NULL, '4ZE2DlrA', NULL, NULL, NULL, '110837047199027200', 'jpspider', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"25e249735bfb669f673286f3f6e4d27ae7cb252df6d81ff5f843252af8693055","displayName":"Jp","username":"jpspider","name":{"givenName":"Jp"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'jpspider_testing', NULL, '2025-12-29 18:48:32'), + (50, '.bezzy_testing', NULL, NULL, NULL, 'AnjQqeyA', NULL, NULL, NULL, '176520069562499072', '.bezzy', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"7deb8cea5e0175b213fd0645b1ef653b02438a663496123e77b5fb100b130717","displayName":"Bezzy","username":".bezzy","name":{"givenName":"Bezzy"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', '.bezzy_testing', NULL, '2025-12-29 18:28:11'), + (51, 'murdock2713_testing', NULL, NULL, NULL, '1ArLNqYd', NULL, NULL, NULL, '136305948011528193', 'murdock2713', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'murdock2713_testing', NULL, NULL), + (52, 'bulltrup_testing', NULL, NULL, NULL, 'mpL0jgQm', NULL, NULL, NULL, '141736412843212800', 'bulltrup', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"4ef72cf91e1ef09a4f5734917f999ccbc2f3ecc7e192ae674b5f1fbf4c32c218","displayName":"Bulltrup","username":"bulltrup","name":{"givenName":"Bulltrup"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'bulltrup_testing', NULL, '2025-12-27 12:02:01'), + (53, 'wolfcaboose_testing', NULL, NULL, NULL, 'dzkzQzym', NULL, NULL, NULL, '206252219429814272', 'wolfcaboose', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'wolfcaboose_testing', NULL, NULL), + (54, 'dethofme_testing', NULL, NULL, NULL, '4oqqKeJm', NULL, NULL, NULL, '322419743749570580', 'dethofme', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"4b167f75b8a6ffabb48c602d088233b64857ca5a2e57e0eed46a819adaeec4a7","displayName":"dethofme","username":"dethofme","name":{"givenName":"dethofme"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'dethofme_testing', NULL, '2025-12-18 15:25:50'), + (55, 'beepbop99_testing', NULL, NULL, NULL, '410kvG7A', NULL, NULL, NULL, '239441428823015424', 'beepbop99', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'beepbop99_testing', NULL, NULL), + (56, 'sentinelace_testing', NULL, NULL, NULL, 'v4Do21MA', NULL, NULL, NULL, '236200731885961216', 'sentinelace', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"5f35170fb96a91ef31dabf7203713f7edf60564034d4ce58afe75b416c541947","displayName":"Sentinel Ace","username":"sentinelace","name":{"givenName":"Sentinel Ace"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'sentinelace_testing', NULL, '2025-12-29 18:29:20'), + (57, 'blaze_nomad_testing', NULL, NULL, NULL, 'xAY1yRaA', NULL, NULL, NULL, '150387953565302785', 'blaze_nomad', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"ab6d723e78bbb22452864447dcf077d1a8d715b84992b85418a1ceddf4712684","displayName":"Blaze","username":"blaze_nomad","name":{"givenName":"Blaze"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'blaze_nomad_testing', NULL, '2025-12-24 07:02:43'), + (58, 'luluxliengod_testing', NULL, NULL, NULL, 'GmjRr03m', NULL, NULL, NULL, '177241493847670784', 'luluxliengod', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'luluxliengod_testing', NULL, NULL), + (59, 'derekk_testing', NULL, NULL, NULL, 'dxMJoEXm', NULL, NULL, NULL, '90348605793120256', 'derekk', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"e871696581c3a724e3e7b608ffb5d55f07da3ac9ac052a8b966c7f279adf130e","displayName":"Derek","username":"derekk","name":{"givenName":"Derek"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'derekk_testing', NULL, '2025-12-27 19:43:17'), + (60, 'zengoblin_testing', NULL, NULL, NULL, '8mR9wNYd', NULL, NULL, NULL, '150460526508507136', 'zengoblin', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"3a73405115f6d823fbb884628e19e18b612c84c19958d05c6e6298f90bfb595a","displayName":"Zen","username":"zengoblin","name":{"givenName":"Zen"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'zengoblin_testing', NULL, '2026-01-02 15:48:16'), + (61, 'anderp._testing', NULL, NULL, NULL, 'dOpMqqEm', NULL, NULL, NULL, '165983949338836992', 'anderp.', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"80615a7ac91bc817f3b1520915786e5bdd37b221b415f1e87e440f830d88d357","displayName":"Anderp","username":"anderp.","name":{"givenName":"Anderp"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'anderp._testing', NULL, '2025-12-24 23:22:03'), + (62, 'archaikm_testing', NULL, NULL, NULL, 'dO6Jw0n4', NULL, NULL, NULL, '643124853700034600', 'archaikm', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'archaikm_testing', NULL, NULL), + (63, 'greatnamehere_testing', NULL, NULL, NULL, '401wK9Ed', NULL, NULL, NULL, '221777318757007360', 'greatnamehere', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'greatnamehere_testing', NULL, NULL), + (64, 'forukan_testing', NULL, NULL, NULL, 'mLzK5gZ4', NULL, NULL, NULL, '104419117829734400', 'forukan', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"1bb6de6a5e6c0b099d5fe2fde4ad21e178d2c713070552762f901f6be52ca592","displayName":"Forukan","username":"forukan","name":{"givenName":"Forukan"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'forukan_testing', NULL, '2025-12-29 20:22:53'), + (65, 'grafeisen_testing', NULL, NULL, NULL, 'dazMLRZm', NULL, NULL, NULL, '84291698015891456', 'grafeisen', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"39f62bdfc895df2e25a260a1b473c81eb0c04fb4cac0633b63de18bfe2a0a7bf","displayName":"GRAF","username":"grafeisen","name":{"givenName":"GRAF"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'grafeisen_testing', NULL, '2025-12-31 17:27:03'), + (66, 'cptshrike_testing', NULL, NULL, NULL, 'nm6a881d', NULL, NULL, NULL, '230573084652863490', 'cptshrike', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"bc8504bf4d02036b413c7043dcf1819c92e222e7ce5a69bb6b85ddb901c0045b","displayName":"Shrike","username":"cptshrike","name":{"givenName":"Shrike"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'cptshrike_testing', NULL, '2026-01-02 21:51:26'), + (67, 'sherman6914_testing', NULL, NULL, NULL, 'mRBRe9Ym', NULL, NULL, NULL, '322911769863651331', 'sherman6914', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"9a576891e3170aa8caa623af44c1590eca5d12134673d5371117370e3ea32b7e","displayName":"Sherman","username":"sherman6914","name":{"givenName":"Sherman"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'sherman6914_testing', NULL, '2025-12-29 20:03:35'), + (68, 'shinji1018_testing', NULL, NULL, NULL, 'mq6lQajA', NULL, NULL, NULL, '262815751558135809', 'shinji1018', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"1a0a4de423a8c7605707628d364014c5917a7ec46ec2aa54050edfb4e4e83a6e","displayName":"Shinji","username":"shinji1018","name":{"givenName":"Shinji"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'shinji1018_testing', NULL, '2026-01-02 06:15:34'), + (69, 'nubquint_testing', NULL, NULL, NULL, 'dljWe8OA', NULL, NULL, NULL, '248181823308431360', 'nubquint', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'nubquint_testing', NULL, NULL), + (70, 'pi2tpur_testing', NULL, NULL, NULL, 'dz7V5Ebm', NULL, NULL, NULL, '133013103804678144', 'pi2tpur', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"05953a8cb382b91eb31632359ca3f53c87c096a05f8bd9856f953159d58cba2e","displayName":"Pi2tpur","username":"pi2tpur","name":{"givenName":"Pi2tpur"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'pi2tpur_testing', NULL, '2026-01-01 13:31:54'), + (71, 'mechasaurusrex_testing', NULL, NULL, NULL, 'GmjM985d', NULL, NULL, NULL, '204244766865620992', 'mechasaurusrex', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'mechasaurusrex_testing', NULL, NULL), + (72, 'aryctix_testing', NULL, NULL, NULL, 'd5b07J1m', NULL, NULL, NULL, '920651678544461834', 'aryctix', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'aryctix_testing', NULL, NULL), + (73, 'waykook_testing', NULL, NULL, NULL, '841PEgPA', NULL, NULL, NULL, '210260153839124490', 'waykook', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"b566b4e30961dc7452d194ac4468dee2e7d636ba9b97df6801f6cd442b272bf8","displayName":"waykook","username":"waykook","name":{"givenName":"waykook"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'waykook_testing', NULL, '2026-01-01 22:08:59'), + (74, 'nuclearpee_testing', NULL, NULL, NULL, 'amG6Ynrd', NULL, NULL, NULL, '444341220945428480', 'nuclearpee', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'nuclearpee_testing', NULL, NULL), + (75, 'thedon7870_testing', NULL, NULL, NULL, '4Wpw0zEd', NULL, NULL, NULL, '544136318653956116', 'thedon7870', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'thedon7870_testing', NULL, NULL), + (76, 'opposum42_testing', NULL, NULL, NULL, 'mp1j1klA', NULL, NULL, NULL, '705523697313644604', 'opposum42', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'opposum42_testing', NULL, NULL), + (77, 'besttubahorse_testing', NULL, NULL, NULL, 'AYg6GRGd', NULL, NULL, NULL, '158346812292464641', 'besttubahorse', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'besttubahorse_testing', NULL, NULL), + (78, 'raddlad_testing', NULL, NULL, NULL, 'mGWO76km', NULL, NULL, NULL, '116298723180412931', 'raddlad', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'raddlad_testing', NULL, NULL), + (79, 'broski69_testing', NULL, NULL, NULL, 'ydw10ZjA', NULL, NULL, NULL, '440227538049171477', 'broski69', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'broski69_testing', NULL, NULL), + (80, 'timothyyyyy_testing', NULL, NULL, NULL, 'mLo70Lad', NULL, NULL, NULL, '198239703298867200', 'timothyyyyy', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"e6e933554ac3cf78c687a207fb8bfdf879c4bae28d7117356f1b2b5145f31ac4","displayName":"tiMOTHY","username":"timothyyyyy","name":{"givenName":"tiMOTHY"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'timothyyyyy_testing', NULL, '2025-12-23 12:07:18'), + (81, 'wooceanman_testing', NULL, NULL, NULL, '841br9Ed', NULL, NULL, NULL, '112288508760055808', 'wooceanman', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"1484736a03af2dd73d4b8cb08b20843fcdedf234dd9b0a6087de43cb4525bbc9","displayName":"Wooceanman","username":"wooceanman","name":{"givenName":"Wooceanman"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'wooceanman_testing', NULL, '2025-12-19 05:46:50'), + (82, 'imnaga_testing', NULL, NULL, NULL, 'kdK0eo5m', NULL, NULL, NULL, '155144163631824896', 'imnaga', NULL, '2025-12-14 21:38:36', '2026-01-03 07:11:33', NULL, NULL, '{"id":"c17f83f1e48205269a5e16fb80e49a64a84bb8b882f20f2a48424f0a95f21a3b","displayName":"naga","username":"imnaga","name":{"givenName":"naga"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'imnaga_testing', NULL, '2026-01-03 00:40:56'), + (165, '17th Administration Tasks_testing', NULL, NULL, NULL, '40a8orYd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', '17th Administration Tasks_testing', NULL, NULL), + (166, '17th Automation_testing', NULL, NULL, NULL, 'AXZEkrRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', '17th Automation_testing', NULL, NULL), + (167, '2_Z_Zach_testing', NULL, NULL, NULL, '1ArKKVX4', '76561198237332918', NULL, '2_Z_Zach', '183400069305729024', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', '2_Z_Zach_testing', NULL, NULL), + (168, '43(_testing', NULL, NULL, NULL, 'Qd53g9VA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', '43(_testing', NULL, NULL), + (169, '757Life_testing', NULL, NULL, NULL, 'my10reWm', NULL, NULL, NULL, '964297042195275776', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', '757Life_testing', NULL, NULL), + (170, 'Abdul Jabar_testing', NULL, NULL, NULL, 'AXonw1Em', NULL, NULL, NULL, '546054116271587340', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Abdul Jabar_testing', NULL, NULL), + (171, 'A. Blachy_testing', NULL, NULL, NULL, 'AQRN1X04', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'A. Blachy_testing', NULL, NULL), + (172, 'Ace_testing', NULL, NULL, NULL, '64vqJ0WA', '76561198859067179', NULL, 'ZeroAce', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ace_testing', NULL, NULL), + (173, 'AdamTorrence_testing', NULL, NULL, NULL, '401ExNRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'AdamTorrence_testing', NULL, NULL), + (174, '+Adrian+_testing', NULL, NULL, NULL, 'rdOP6W8m', '76561198092658635', NULL, 'Shadow', '216246731988271115', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', '+Adrian+_testing', NULL, NULL), + (175, 'Adshadow_testing', NULL, NULL, NULL, 'dxD095Gd', '76561198253090767', NULL, 'AdShadow', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Adshadow_testing', NULL, NULL), + (176, 'Aiglos__testing', NULL, NULL, NULL, 'mMbOKBYA', NULL, NULL, NULL, '416675171810934786', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Aiglos__testing', NULL, NULL), + (177, 'akleeder_testing', NULL, NULL, NULL, '4WP20JPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'akleeder_testing', NULL, NULL), + (178, 'AlbonBlaze_testing', NULL, NULL, NULL, 'AQRkr1a4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'AlbonBlaze_testing', NULL, NULL), + (179, 'Alec_testing', NULL, NULL, NULL, 'mj6BxZbm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Alec_testing', NULL, NULL), + (180, 'Alexander.C_testing', NULL, NULL, NULL, 'AYVQOGo4', NULL, NULL, NULL, '835911694735376435', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Alexander.C_testing', NULL, NULL), + (181, 'Alien Dad_testing', NULL, NULL, NULL, 'mqnGJx1A', NULL, NULL, NULL, '209143849027633152', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Alien Dad_testing', NULL, NULL), + (182, 'Alligator_testing', NULL, NULL, NULL, 'mybLjMgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Alligator_testing', NULL, NULL), + (183, 'AlwaysPanic_testing', NULL, NULL, NULL, 'dzO1KBpm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'AlwaysPanic_testing', NULL, NULL), + (184, 'AMATHYST_testing', NULL, NULL, NULL, 'VdxQr0Gm', '76561197998740645', NULL, 'AMATHYST', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'AMATHYST_testing', NULL, NULL), + (185, 'AmericanSoulMan_testing', NULL, NULL, NULL, 'dzOY0rRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'AmericanSoulMan_testing', NULL, NULL), + (186, 'Amplify_testing', NULL, NULL, NULL, '2d2Ev3M4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Amplify_testing', NULL, NULL), + (187, 'andycranns_testing', NULL, NULL, NULL, 'ndaMxJad', '76561198982013563', NULL, 'andycranns', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'andycranns_testing', NULL, NULL), + (188, 'Angry Burrito_testing', NULL, NULL, NULL, 'xd96qyZm', NULL, NULL, NULL, '517129955096657932', 'bakeractual', NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Angry Burrito_testing', NULL, NULL), + (189, 'Anime Foo_testing', NULL, NULL, NULL, '4E5a3p04', NULL, NULL, NULL, '466747352674336790', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Anime Foo_testing', NULL, NULL), + (190, 'Antherial_testing', NULL, NULL, NULL, 'dKb1r7Y4', NULL, NULL, NULL, '259751552879820801', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Antherial_testing', NULL, NULL), + (191, 'Ant-man_testing', NULL, NULL, NULL, 'Agkj0pjA', NULL, NULL, NULL, '420739692703514636', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ant-man_testing', NULL, NULL), + (192, 'Anton Rayne_testing', NULL, NULL, NULL, 'mybg8agA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Anton Rayne_testing', NULL, NULL), + (193, 'ApacheLeader939_testing', NULL, NULL, NULL, 'dzO9pjam', '76561198271913322', NULL, 'ApacheLeader939', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ApacheLeader939_testing', NULL, NULL), + (194, 'Apollo_testing', NULL, NULL, NULL, 'amGy6jL4', '76561198403679806', NULL, 'Apollo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Apollo_testing', NULL, NULL), + (195, 'Arashi_testing', NULL, NULL, NULL, '40kgWbKA', '76561198072073694', NULL, 'Arashi', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Arashi_testing', NULL, NULL), + (196, 'Arc_testing', NULL, NULL, NULL, 'AQ9PRZgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Arc_testing', NULL, NULL), + (197, 'ArchAngel_testing', NULL, NULL, NULL, 'Agvo9ggm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ArchAngel_testing', NULL, NULL), + (198, 'Arejay_testing', NULL, NULL, NULL, 'GmjorN3A', NULL, NULL, NULL, '110857891954577408', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Arejay_testing', NULL, NULL), + (199, 'AriesHorn_testing', NULL, NULL, NULL, 'LmpjJqQ4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'AriesHorn_testing', NULL, NULL), + (200, 'ArmAdillio4110_testing', NULL, NULL, NULL, 'mj6EzlNm', '76561198035714168', NULL, 'ArmAdiLLio4110', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ArmAdillio4110_testing', NULL, NULL), + (201, 'Asclepius_testing', NULL, NULL, NULL, '4E5gqyX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Asclepius_testing', NULL, NULL), + (202, 'ASSET12_testing', NULL, NULL, NULL, 'dKG7GGNd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ASSET12_testing', NULL, NULL), + (203, 'Attract_testing', NULL, NULL, NULL, 'dVB17ryd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Attract_testing', NULL, NULL), + (204, 'AureusCrush_testing', NULL, NULL, NULL, 'QdJxR7nA', NULL, NULL, NULL, '82371814654742528', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'AureusCrush_testing', NULL, NULL), + (205, 'austinm85_testing', NULL, NULL, NULL, '4DpLWeo4', NULL, NULL, NULL, '357729769598615563', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'austinm85_testing', NULL, NULL), + (206, 'Average_testing', NULL, NULL, NULL, 'LmpJy8N4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Average_testing', NULL, NULL), + (207, 'Avvrial_testing', NULL, NULL, NULL, 'd8qQgVpm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Avvrial_testing', NULL, NULL), + (208, 'BakedZT_testing', NULL, NULL, NULL, 'dKZ81694', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BakedZT_testing', NULL, NULL), + (209, 'Baker_testing', NULL, NULL, NULL, 'dzgb7Mpm', NULL, NULL, NULL, '328759124798210052', 'bread_witch', NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Baker_testing', NULL, NULL), + (210, 'Bananaman_testing', NULL, NULL, NULL, 'AQ91XjxA', NULL, NULL, NULL, '115142163066519558', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bananaman_testing', NULL, NULL), + (211, 'Bandit_testing', NULL, NULL, NULL, '40k5NaEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bandit_testing', NULL, NULL), + (212, 'BannanaBoat_testing', NULL, NULL, NULL, 'dVbr7epd', NULL, NULL, NULL, '952697452761342002', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BannanaBoat_testing', NULL, NULL), + (213, 'Barely_testing', NULL, NULL, NULL, 'pmbpnwE4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Barely_testing', NULL, NULL), + (214, 'Bayonetta_testing', NULL, NULL, NULL, 'dBnl00wd', NULL, NULL, 'Domino', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bayonetta_testing', NULL, NULL), + (215, 'BB0wser_testing', NULL, NULL, NULL, 'GmjM1Vad', NULL, NULL, NULL, '184058619585626112', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BB0wser_testing', NULL, NULL), + (216, 'Beachhead_testing', NULL, NULL, NULL, '6AXQbev4', NULL, NULL, NULL, '273597519747874818', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Beachhead_testing', NULL, NULL), + (217, 'Bear_testing', NULL, NULL, NULL, 'x4o8e3nd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bear_testing', NULL, NULL), + (218, 'Beard_testing', NULL, NULL, NULL, 'LmpJz8N4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Beard_testing', NULL, NULL), + (219, 'Bears_testing', NULL, NULL, NULL, 'm6Yzl7Rd', NULL, NULL, NULL, '152166717198434304', 'rancidmuffin ', NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bears_testing', NULL, NULL), + (220, 'BEEG YOSHI_testing', NULL, NULL, NULL, 'xAYL689m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BEEG YOSHI_testing', NULL, NULL), + (221, 'Beholder_testing', NULL, NULL, NULL, 'dODP7NPm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Beholder_testing', NULL, NULL), + (222, 'Bellociraptor_testing', NULL, NULL, NULL, 'dVBvL8pd', NULL, NULL, NULL, '428996390404882432', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bellociraptor_testing', NULL, NULL), + (223, 'Ben_testing', NULL, NULL, NULL, 'dK39RzZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ben_testing', NULL, NULL), + (224, 'BenBalling_testing', NULL, NULL, NULL, 'dJQe07w4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BenBalling_testing', NULL, NULL), + (225, 'benches_testing', NULL, NULL, NULL, 'pmbejZKd', NULL, NULL, 'szarcik', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'benches_testing', NULL, NULL), + (226, 'Bennett_testing', NULL, NULL, NULL, 'da7pZrDA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bennett_testing', NULL, NULL), + (227, 'Beowulf_testing', NULL, NULL, NULL, 'dBWaRaPm', '76561198972874093', NULL, 'Beowulf', '715382670053343273', 'Beowulf', NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Beowulf_testing', NULL, NULL), + (228, 'BernTeas_testing', NULL, NULL, NULL, 'dOpbaM8m', NULL, NULL, NULL, '381943343128772612', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BernTeas_testing', NULL, NULL), + (229, 'BigBiscuit_testing', NULL, NULL, NULL, 'N4E0NnWA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BigBiscuit_testing', NULL, NULL), + (230, 'Big Guy_testing', NULL, NULL, NULL, 'dx6oqzOA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Big Guy_testing', NULL, NULL), + (231, 'bighugejohnson_testing', NULL, NULL, NULL, 'v4DPq664', '76561198858458703', NULL, 'Bighugejohnson', '489239162650755072', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'bighugejohnson_testing', NULL, NULL), + (232, 'BigolBitc_testing', NULL, NULL, NULL, 'Aen3RgV4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BigolBitc_testing', NULL, NULL), + (233, 'Big Papi_testing', NULL, NULL, NULL, 'myDzWVJd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Big Papi_testing', NULL, NULL), + (234, 'Bill_testing', NULL, NULL, NULL, 'd9n8lJem', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bill_testing', NULL, NULL), + (235, 'BillboardBomber_testing', NULL, NULL, NULL, 'w4Wk1xp4', '76561198044421570', NULL, 'BillboardBomber', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BillboardBomber_testing', NULL, NULL), + (236, 'Bill McSwaggins_testing', NULL, NULL, NULL, 'QdJ6ZJwd', NULL, NULL, 'Bill McSwaggins', '219199726820524033', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bill McSwaggins_testing', NULL, NULL), + (237, 'Billy_testing', NULL, NULL, NULL, 'm7zOvzPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Billy_testing', NULL, NULL), + (238, 'BillyBrown_testing', NULL, NULL, NULL, 'mq1eqrLm', '76561198024059165', NULL, 'Billy Brown', '115107558330597376', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BillyBrown_testing', NULL, NULL), + (239, 'Billy woods_testing', NULL, NULL, NULL, '8mRz3zlm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Billy woods_testing', NULL, NULL), + (240, 'BimboGrimbo_testing', NULL, NULL, NULL, 'rdOr5j84', NULL, NULL, NULL, '461465779834060844', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BimboGrimbo_testing', NULL, NULL), + (241, 'Bird_testing', NULL, NULL, NULL, 'amG67wLd', '76561198986400591', NULL, 'PVT T. Logan', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bird_testing', NULL, NULL), + (242, 'Birdbrain32_testing', NULL, NULL, NULL, 'd8L5Oo0d', NULL, NULL, NULL, '845029600019218513', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Birdbrain32_testing', NULL, NULL), + (243, 'birdman850_testing', NULL, NULL, NULL, 'O4Zobld1', NULL, NULL, NULL, '308006485495906304', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'birdman850_testing', NULL, NULL), + (244, 'Bivmo_testing', NULL, NULL, NULL, 'Ae7wW0Wd', NULL, NULL, NULL, '375073635020570644', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bivmo_testing', NULL, NULL), + (245, 'Bl4ckTr0nX_testing', NULL, NULL, NULL, 'dKwYOlBd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bl4ckTr0nX_testing', NULL, NULL), + (246, 'Blackwell_testing', NULL, NULL, NULL, 'dxObDGD4', '76561198306071341', NULL, 'M1LK', '165852678272843777', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Blackwell_testing', NULL, NULL), + (247, 'Stormblade9886_testing', NULL, NULL, NULL, 'ydwM1N5A', '76561198048396885', NULL, 'Stormblade9886', '136634153452961792', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Stormblade9886_testing', NULL, NULL), + (248, 'Blank_testing', NULL, NULL, NULL, 'ArQxe8wm', '76561199077975287', NULL, 'Blank', '556671069600350228', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Blank_testing', NULL, NULL), + (249, 'Blivion_testing', NULL, NULL, NULL, 'xd9BzWZm', '76561198211457311', NULL, 'Blivion', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Blivion_testing', NULL, NULL), + (250, 'Blix_testing', NULL, NULL, NULL, '6AXqYJY4', '76561198968956616', NULL, 'Blix', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Blix_testing', NULL, NULL), + (251, 'Blizzy_testing', NULL, NULL, NULL, 'd3ROYLe4', NULL, NULL, NULL, '413462464022446084', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Blizzy_testing', NULL, NULL), + (252, 'Blonde Walmart Lil Huddy_testing', NULL, NULL, NULL, 'R40J3LKm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Blonde Walmart Lil Huddy_testing', NULL, NULL), + (253, 'Bluedragon267_testing', NULL, NULL, NULL, 'ndaVPZKm', NULL, NULL, NULL, '194972887596269568', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bluedragon267_testing', NULL, NULL), + (254, 'Bmend_testing', NULL, NULL, NULL, 'x4oRKGoA', '76561198938659355', NULL, 'bmend', '861413262192541740', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bmend_testing', NULL, NULL), + (255, 'Bobit_testing', NULL, NULL, NULL, 'dlO6PYV4', NULL, NULL, NULL, '331810001024974849', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bobit_testing', NULL, NULL), + (256, 'Bone_testing', NULL, NULL, NULL, 'AnJZbzJA', NULL, NULL, NULL, '690184412817784859', 'your.bone.daddi', NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bone_testing', NULL, NULL), + (257, 'boomchukkalaka_testing', NULL, NULL, NULL, 'oAgMxVyd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'boomchukkalaka_testing', NULL, NULL), + (258, 'BOOMerTheMighty_testing', NULL, NULL, NULL, 'NmLgQ1yd', NULL, NULL, NULL, '203202052560519168', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BOOMerTheMighty_testing', NULL, NULL), + (259, 'Boom_wildcat_testing', NULL, NULL, NULL, '4Dn2vDLm', NULL, NULL, NULL, '548763200787578902', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Boom_wildcat_testing', NULL, NULL), + (260, 'Bouncey_testing', NULL, NULL, NULL, 'm7jRy8Md', NULL, NULL, NULL, '279256373575811072', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bouncey_testing', NULL, NULL), + (261, 'Boyle_testing', NULL, NULL, NULL, 'nm6bX13m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Boyle_testing', NULL, NULL), + (262, 'Brady (Dino)_testing', NULL, NULL, NULL, 'dKZBJje4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Brady (Dino)_testing', NULL, NULL), + (263, 'brain_testing', NULL, NULL, NULL, 'nm6yEkGd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'brain_testing', NULL, NULL), + (264, 'Brandon1234_testing', NULL, NULL, NULL, 'oAQv9DN4', '76561198099029893', NULL, 'bfranklin7555', '819336928444153918', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Brandon1234_testing', NULL, NULL), + (265, 'BravoFoxtrot_testing', NULL, NULL, NULL, 'kdKjenY4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BravoFoxtrot_testing', NULL, NULL), + (266, 'breadman_testing', NULL, NULL, NULL, '4v81gJWm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'breadman_testing', NULL, NULL), + (267, 'Brian_testing', NULL, NULL, NULL, '4PNnq6Mm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Brian_testing', NULL, NULL), + (268, 'BriskCascade_testing', NULL, NULL, NULL, 'm6qyjWLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BriskCascade_testing', NULL, NULL), + (269, 'Brobie_testing', NULL, NULL, NULL, 'mybqnRwA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Brobie_testing', NULL, NULL), + (270, 'Brojangs_testing', NULL, NULL, NULL, 'mLDwX28m', NULL, NULL, NULL, '156190628089298944', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Brojangs_testing', NULL, NULL), + (271, 'BroncoBoolin_testing', NULL, NULL, NULL, 'm7QaMGl4', '76561198272935302', NULL, 'BroncoBoolin', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BroncoBoolin_testing', NULL, NULL), + (272, 'Brooks_testing', NULL, NULL, NULL, '4knNDqLA', NULL, NULL, NULL, '624313180620980224', '1guy', NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Brooks_testing', NULL, NULL), + (273, 'BROTHERS KEEPER_testing', NULL, NULL, NULL, '4Z7Znnrd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BROTHERS KEEPER_testing', NULL, NULL), + (274, 'Browne_testing', NULL, NULL, NULL, 'mG7jyBwm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Browne_testing', NULL, NULL), + (275, 'Bruhnobi_testing', NULL, NULL, NULL, 'mybqKV6A', NULL, NULL, NULL, '563106068452999195', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bruhnobi_testing', NULL, NULL), + (276, 'Brute (BrutanamoBay)_testing', NULL, NULL, NULL, 'dJVD5EQd', NULL, NULL, NULL, '283360013064339458', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Brute (BrutanamoBay)_testing', NULL, NULL), + (277, 'bryce_testing', NULL, NULL, NULL, 'mLLBzXZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'bryce_testing', NULL, NULL), + (278, 'Buck_testing', NULL, NULL, NULL, 'AYzJ2nw4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Buck_testing', NULL, NULL), + (279, 'Burb_testing', NULL, NULL, NULL, 'dN9VnnW4', '76561198150489905', NULL, 'Burb', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Burb_testing', NULL, NULL), + (280, 'Burntcopper_testing', NULL, NULL, NULL, '4ZkX9bLd', '76561198283190871', NULL, 'Joe.whit', '707773880340840470', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Burntcopper_testing', NULL, NULL), + (281, 'Butters_testing', NULL, NULL, NULL, 'mqEaZO5m', NULL, NULL, NULL, '192797343245008905', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Butters_testing', NULL, NULL), + (282, 'ButterToast_testing', NULL, NULL, NULL, 'w4WeBkqm', NULL, NULL, NULL, '402364831522357248', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ButterToast_testing', NULL, NULL), + (283, 'Bwood135_testing', NULL, NULL, NULL, 'v4D0GyL4', NULL, NULL, NULL, '733733637761269823', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bwood135_testing', NULL, NULL), + (284, 'Byte_testing', NULL, NULL, NULL, 'AYzjRPe4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Byte_testing', NULL, NULL), + (285, 'cacrush_testing', NULL, NULL, NULL, 'ArngEwYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'cacrush_testing', NULL, NULL), + (286, 'Cactus_testing', NULL, NULL, NULL, 'dw8QYw0m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cactus_testing', NULL, NULL), + (287, 'Cain_testing', NULL, NULL, NULL, 'Pm7NE5ld', '76561198026877665', NULL, 'Cainiculs', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cain_testing', NULL, NULL), + (288, 'CalamitousPanda_testing', NULL, NULL, NULL, 'dlOQvPX4', NULL, NULL, NULL, '266741836331221003', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'CalamitousPanda_testing', NULL, NULL), + (289, 'Cale_testing', NULL, NULL, NULL, 'nm6wWxgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cale_testing', NULL, NULL), + (290, 'Camel Baron_testing', NULL, NULL, NULL, '4EZ368Wd', NULL, NULL, NULL, '173872803798319104', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Camel Baron_testing', NULL, NULL), + (291, 'Captain Ali_testing', NULL, NULL, NULL, 'VmMOryY4', '76561198282935938', NULL, 'Captain Ali', '263793864513421313', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Captain Ali_testing', NULL, NULL), + (292, 'Captin228_testing', NULL, NULL, NULL, 'dOjwMey4', NULL, NULL, NULL, '142001770967728134', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Captin228_testing', NULL, NULL), + (293, 'Cardiac_testing', NULL, NULL, NULL, 'AXZe87vd', NULL, NULL, NULL, '568146714305888257', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cardiac_testing', NULL, NULL), + (294, 'Carioquensi_testing', NULL, NULL, NULL, '6AXe2Q64', NULL, NULL, NULL, '611448993804845056', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Carioquensi_testing', NULL, NULL), + (295, 'Carroll_testing', NULL, NULL, NULL, 'rdOPwZym', '76561198187182735', NULL, 'carroll2007', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Carroll_testing', NULL, NULL), + (296, 'Carrot_testing', NULL, NULL, NULL, 'EdVWLErm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Carrot_testing', NULL, NULL), + (297, 'Carter_testing', NULL, NULL, NULL, 'm6ozY30A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Carter_testing', NULL, NULL), + (298, 'Carter Knox_testing', NULL, NULL, NULL, 'QdJY2Pn4', '76561198400542118', NULL, 'carter', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Carter Knox_testing', NULL, NULL), + (299, 'Casbha_testing', NULL, NULL, NULL, 'xAYQZxGA', '76561198351512645', NULL, 'Casbha', '462806699347017729', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Casbha_testing', NULL, NULL), + (300, 'Castaway_testing', NULL, NULL, NULL, 'ndaxPMZ4', NULL, NULL, NULL, '132052109477543936', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Castaway_testing', NULL, NULL), + (301, 'CatTamer007_testing', NULL, NULL, NULL, '54koj9p4', '76561198203700975', NULL, 'CatTamer007', '619976521964060675', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'CatTamer007_testing', NULL, NULL), + (302, 'CB8086_testing', NULL, NULL, NULL, 'mR1ej6Ed', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'CB8086_testing', NULL, NULL), + (303, 'Celdiseth_testing', NULL, NULL, NULL, 'Pm7ky95m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Celdiseth_testing', NULL, NULL), + (304, 'cerenoal_testing', NULL, NULL, NULL, 'dKZwYbN4', NULL, NULL, NULL, '678771985131634688', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'cerenoal_testing', NULL, NULL), + (305, 'cha0syn_testing', NULL, NULL, NULL, 'dwYPBJaA', '76561197987771037', NULL, 'chaøsyn', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'cha0syn_testing', NULL, NULL), + (306, 'Chase C._testing', NULL, NULL, NULL, 'dx632oDA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Chase C._testing', NULL, NULL), + (307, 'cheap method_testing', NULL, NULL, NULL, '54ko9aX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'cheap method_testing', NULL, NULL), + (308, 'Cheddar_testing', NULL, NULL, NULL, 'mbqMKNPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cheddar_testing', NULL, NULL), + (309, 'CheersToUs_testing', NULL, NULL, NULL, '6AXveo6d', NULL, NULL, NULL, '437728529002659851', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'CheersToUs_testing', NULL, NULL), + (310, 'Cheif22_testing', NULL, NULL, NULL, 'dlO8V9Y4', '76561198119546164', NULL, 'cheif22', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cheif22_testing', NULL, NULL), + (311, 'CherryyBoomb_testing', NULL, NULL, NULL, '8mRE5nEd', NULL, NULL, NULL, '660264932171841537', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'CherryyBoomb_testing', NULL, NULL), + (312, 'Chilly_Bearr_testing', NULL, NULL, NULL, 'bdz5OMl4', NULL, NULL, NULL, '176864415583436801', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Chilly_Bearr_testing', NULL, NULL), + (313, 'Chintzy_testing', NULL, NULL, NULL, 'dKbaEGZ4', NULL, NULL, NULL, '298635985711923204', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Chintzy_testing', NULL, NULL), + (314, 'Chongy_testing', NULL, NULL, NULL, 'dJrj7qwd', NULL, NULL, NULL, '255467280614424577', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Chongy_testing', NULL, NULL), + (315, 'Chops_testing', NULL, NULL, NULL, 'd31kM2OA', '76561199114007165', NULL, 'Chops', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Chops_testing', NULL, NULL), + (316, 'ChrisPwhy_testing', NULL, NULL, NULL, 'd2pDMV5A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ChrisPwhy_testing', NULL, NULL), + (317, 'Chrome_testing', NULL, NULL, NULL, 'QdJ3Q7bm', '76561198066520407', NULL, 'Chrome', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Chrome_testing', NULL, NULL), + (318, 'Chronos_testing', NULL, NULL, NULL, 'x4oRgMXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Chronos_testing', NULL, NULL), + (319, 'Chugalug_testing', NULL, NULL, NULL, 'LmpJzb24', '76561198014695190', NULL, 'ML Chugalug', '373130491899019264', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Chugalug_testing', NULL, NULL), + (320, 'Chuggy_testing', NULL, NULL, NULL, 'mjY2ggad', '76561198426320721', NULL, 'Chuggy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Chuggy_testing', NULL, NULL), + (321, 'chvrlye_testing', NULL, NULL, NULL, 'ArQLP9Xm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'chvrlye_testing', NULL, NULL), + (322, 'ClassicKirbs_testing', NULL, NULL, NULL, 'Qd58nkE4', '76561198447850448', NULL, 'ClassicKirbs', '284883976730968076', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ClassicKirbs_testing', NULL, NULL), + (323, 'Cletus_testing', NULL, NULL, NULL, '0mqrMqXA', '76561198088813614', NULL, 'Cletus', '203308396735234048\r\n', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cletus_testing', NULL, NULL), + (324, 'Cmos_testing', NULL, NULL, NULL, 'v4DgwbLA', '76561198272027298', NULL, 'Cmos', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cmos_testing', NULL, NULL), + (325, 'C. Nahrstedt_testing', NULL, NULL, NULL, 'dN6vOP0d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'C. Nahrstedt_testing', NULL, NULL), + (326, 'cobrafighter_testing', NULL, NULL, NULL, 'AgZWOzRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'cobrafighter_testing', NULL, NULL), + (327, 'codux_testing', NULL, NULL, NULL, 'ndlRoKwA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'codux_testing', NULL, NULL), + (328, 'colto Reed_testing', NULL, NULL, NULL, '4orR2VVA', '76561198190564191', NULL, 'Jon Groth', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'colto Reed_testing', NULL, NULL), + (329, 'competingsnail_testing', NULL, NULL, NULL, '6AXW3xRm', '76561198100212135', NULL, 'Competingsnail', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'competingsnail_testing', NULL, NULL), + (330, 'Comradequestion_testing', NULL, NULL, NULL, 'AQ1VD73A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Comradequestion_testing', NULL, NULL), + (331, 'connor_testing', NULL, NULL, NULL, 'nm6LVPq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'connor_testing', NULL, NULL), + (332, 'Contigo_testing', NULL, NULL, NULL, 'mG2OY3Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Contigo_testing', NULL, NULL), + (333, 'Coop_testing', NULL, NULL, NULL, '41orQxRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Coop_testing', NULL, NULL), + (334, 'C. Ord_testing', NULL, NULL, NULL, 'amGzQpKd', '76561198120511365', NULL, 'NR. straycord', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'C. Ord_testing', NULL, NULL), + (335, 'Cortex_testing', NULL, NULL, NULL, 'm6jpBVRm', '76561198136447547', NULL, 'Po', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cortex_testing', NULL, NULL), + (336, 'Couch_testing', NULL, NULL, NULL, 'd9nXgXJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Couch_testing', NULL, NULL), + (337, 'Court15634_testing', NULL, NULL, NULL, 'mjn99L0m', '76561198122891244', NULL, 'Court15634', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Court15634_testing', NULL, NULL), + (338, 'Crimson_testing', NULL, NULL, NULL, 'Ar08bpXd', '76561199117940201', NULL, 'Crimson', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Crimson_testing', NULL, NULL), + (339, 'Cronley_testing', NULL, NULL, NULL, 'Md3M5qZA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cronley_testing', NULL, NULL), + (340, 'CrowQ_testing', NULL, NULL, NULL, 'dVZgwN5d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'CrowQ_testing', NULL, NULL), + (341, 'Cryptic_testing', NULL, NULL, NULL, 'dxDpDg2d', '76561198163416292', NULL, 'Senator Jon Ossoff', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cryptic_testing', NULL, NULL), + (342, 'Curly_testing', NULL, NULL, NULL, '4olZMeZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Curly_testing', NULL, NULL), + (343, 'Cynicalyz_testing', NULL, NULL, NULL, 'dwpXRp0m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Cynicalyz_testing', NULL, NULL), + (344, 'Daisy_testing', NULL, NULL, NULL, 'dl3z7pl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Daisy_testing', NULL, NULL), + (345, 'dalejunior93_testing', NULL, NULL, NULL, 'VdxEKg5m', NULL, NULL, 'dalejunior93', '314498739832094731', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'dalejunior93_testing', NULL, NULL), + (346, 'Damaged_testing', NULL, NULL, NULL, 'LmpkKKkd', '76561198198724038', NULL, 'Damaged', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Damaged_testing', NULL, NULL), + (347, 'Damascus_testing', NULL, NULL, NULL, 'Md3Q1OLA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Damascus_testing', NULL, NULL), + (348, 'Daniel G_testing', NULL, NULL, NULL, 'dNMo8z74', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Daniel G_testing', NULL, NULL), + (349, 'DaRealWamos_testing', NULL, NULL, NULL, 'm6Y3XJ5d', NULL, NULL, NULL, '475421247967330304', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DaRealWamos_testing', NULL, NULL), + (350, 'Datleee_testing', NULL, NULL, NULL, '841kKg7m', '76561198867472448', NULL, 'datleee', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Datleee_testing', NULL, NULL), + (351, 'David - (LEGACY)_testing', NULL, NULL, NULL, 'dVD3MvrA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'David - (LEGACY)_testing', NULL, NULL), + (352, 'DaviruzZ_testing', NULL, NULL, NULL, 'dlO2elB4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DaviruzZ_testing', NULL, NULL), + (353, 'Dawsyn_testing', NULL, NULL, NULL, 'mpOg17ld', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dawsyn_testing', NULL, NULL), + (354, 'Deadlines_testing', NULL, NULL, NULL, 'pmbOPkXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Deadlines_testing', NULL, NULL), + (355, 'deadshot_testing', NULL, NULL, NULL, 'd5j5YLqm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'deadshot_testing', NULL, NULL), + (356, 'DeathpactAngel_testing', NULL, NULL, NULL, 'QdJXvVnA', '76561198327983879', NULL, 'DeathpactAngel', '268545918763139076', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DeathpactAngel_testing', NULL, NULL), + (357, 'Decker_testing', NULL, NULL, NULL, 'AXB8j9vd', NULL, NULL, NULL, '269307869789290497', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, '{"id":"2fc0ed3b58e5c5255b0c12cf6f2da1dce4d98068ba61cfb4ebc818d84e937025","displayName":"Decker","username":"maddogdecker","name":{"givenName":"Decker"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Decker_testing', NULL, '2025-12-28 15:31:23'), + (358, 'Ded_testing', NULL, NULL, NULL, 'VdxEB7wm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ded_testing', NULL, NULL), + (359, 'DeepWinter_testing', NULL, NULL, NULL, 'dKwqnXRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DeepWinter_testing', NULL, NULL), + (360, 'Delta8_testing', NULL, NULL, NULL, 'dVbMP86d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Delta8_testing', NULL, NULL), + (361, 'Demon_testing', NULL, NULL, NULL, 'mLLZ0VQm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Demon_testing', NULL, NULL), + (362, 'Dempsey_testing', NULL, NULL, NULL, 'd2VKpZod', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dempsey_testing', NULL, NULL), + (363, 'Denis Prager_testing', NULL, NULL, NULL, '4WPkqONd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Denis Prager_testing', NULL, NULL), + (364, 'Dennis_testing', NULL, NULL, NULL, 'dxDx6GEd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dennis_testing', NULL, NULL), + (365, 'Depressing_Tyrant_testing', NULL, NULL, NULL, 'dlkOgEY4', NULL, NULL, NULL, '692155144464367757', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Depressing_Tyrant_testing', NULL, NULL), + (366, 'Derek_testing', NULL, NULL, NULL, '4kqBGbRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Derek_testing', NULL, NULL), + (367, 'DerLoeweVonAfrika_testing', NULL, NULL, NULL, 'AXBNLjzd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DerLoeweVonAfrika_testing', NULL, NULL), + (368, 'derpymemeo_testing', NULL, NULL, NULL, 'mjEvk15d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'derpymemeo_testing', NULL, NULL), + (369, 'Devildoc_testing', NULL, NULL, NULL, 'dlkgN5V4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Devildoc_testing', NULL, NULL), + (370, 'DevourRocks_testing', NULL, NULL, NULL, 'Ar6VnZXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DevourRocks_testing', NULL, NULL), + (371, 'Dhariq_testing', NULL, NULL, NULL, 'd2VRGKJd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dhariq_testing', NULL, NULL), + (372, 'Dieoxide_testing', NULL, NULL, NULL, 'dODBVy3m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dieoxide_testing', NULL, NULL), + (373, 'dillpickledc_testing', NULL, NULL, NULL, 'O4Z5J8lA', '76561198106162328', NULL, 'dillpickledc', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'dillpickledc_testing', NULL, NULL), + (374, 'Dizskies_testing', NULL, NULL, NULL, 'GmjzxPam', '76561198109628693', NULL, 'Limes and Lemons', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dizskies_testing', NULL, NULL), + (375, 'Dj Yamato_testing', NULL, NULL, NULL, 'dxKz7n24', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dj Yamato_testing', NULL, NULL), + (376, 'DocSlick_testing', NULL, NULL, NULL, 'dw8Wbv0m', '76561198047704464', NULL, '[PHTAC] DocSlick', '213071287403151361', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DocSlick_testing', NULL, NULL), + (377, 'Doctor_Jonesy_testing', NULL, NULL, NULL, '40kNGKEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Doctor_Jonesy_testing', NULL, NULL), + (378, 'Dodo_testing', NULL, NULL, NULL, '41WDLg7m', '76561198976572145', NULL, NULL, '542358830219001857', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dodo_testing', NULL, NULL), + (379, 'Doeboy_testing', NULL, NULL, NULL, 'mj6QGq5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Doeboy_testing', NULL, NULL), + (380, 'Doglegs_testing', NULL, NULL, NULL, 'ZdNYvEy4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Doglegs_testing', NULL, NULL), + (381, 'Dominguez_testing', NULL, NULL, NULL, 'dNMjqYW4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dominguez_testing', NULL, NULL), + (382, 'Don_testing', NULL, NULL, NULL, 'VmMzYEkA', '76561198324977192', NULL, 'Don', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Don_testing', NULL, NULL), + (383, 'Dongas_testing', NULL, NULL, NULL, '4E92NPn4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dongas_testing', NULL, NULL), + (384, 'Dopplerizer_testing', NULL, NULL, NULL, 'oAgLGQj4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dopplerizer_testing', NULL, NULL), + (385, 'DoubleTap_testing', NULL, NULL, NULL, '40k0QWYA', NULL, NULL, NULL, '149759596871811073', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DoubleTap_testing', NULL, NULL), + (386, 'Dragon_testing', NULL, NULL, NULL, 'daJeNzlm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dragon_testing', NULL, NULL), + (387, 'Dragon1326452_testing', NULL, NULL, NULL, '41qEGjR4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dragon1326452_testing', NULL, NULL), + (388, 'Dr. Angle_testing', NULL, NULL, NULL, 'v4Dgx36A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dr. Angle_testing', NULL, NULL), + (389, 'DrBlox3s_testing', NULL, NULL, NULL, 'd8qWLL8m', '76561199590616283', NULL, 'DrStages', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DrBlox3s_testing', NULL, NULL), + (390, 'Dread_testing', NULL, NULL, NULL, 'AXNVpNRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dread_testing', NULL, NULL), + (391, 'D. Reid_testing', NULL, NULL, NULL, '54kyQKzm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'D. Reid_testing', NULL, NULL), + (415, 'DrippyIce_testing', NULL, NULL, NULL, '4E2kMeXd', NULL, NULL, NULL, '542939417363349518', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DrippyIce_testing', NULL, NULL), + (416, 'Dr. Machicken_testing', NULL, NULL, NULL, 'd8V6poOA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Dr. Machicken_testing', NULL, NULL), + (417, 'Duane_testing', NULL, NULL, NULL, 'd56Bq3Vm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Duane_testing', NULL, NULL), + (418, 'Ducky_testing', NULL, NULL, NULL, 'mM6Pq3EA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ducky_testing', NULL, NULL), + (419, 'DudeGuy_testing', NULL, NULL, NULL, 'kdKM7rYA', '76561198093312690', NULL, 'DudeGuy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'DudeGuy_testing', NULL, NULL), + (420, 'Duke_testing', NULL, NULL, NULL, 'dzk319ym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Duke_testing', NULL, NULL), + (421, 'Durkio503_testing', NULL, NULL, NULL, 'dNrYQgkd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Durkio503_testing', NULL, NULL), + (422, 'dyligan_testing', NULL, NULL, NULL, '4WB0aXNA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'dyligan_testing', NULL, NULL), + (423, 'Eaglehart_testing', NULL, NULL, NULL, 'Md32Pb24', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Eaglehart_testing', NULL, NULL), + (424, 'Earl Listerine_testing', NULL, NULL, NULL, 'ndlVJqOA', '76561198137171251', NULL, 'Earl Listerine', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Earl Listerine_testing', NULL, NULL), + (425, 'Edge_testing', NULL, NULL, NULL, 'x4oEO8Xm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Edge_testing', NULL, NULL), + (426, 'awesome332476_testing', NULL, NULL, NULL, 'dKOgPzNd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'awesome332476_testing', NULL, NULL), + (427, 'Elfipe_testing', NULL, NULL, NULL, 'bdzMnq14', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Elfipe_testing', NULL, NULL), + (428, 'Ellezz_testing', NULL, NULL, NULL, '4036lZVA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ellezz_testing', NULL, NULL), + (429, 'E. Newton_testing', NULL, NULL, NULL, 'N4ErKoDd', '76561198073563973', NULL, 'BOT Jack', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'E. Newton_testing', NULL, NULL), + (430, 'eprov_testing', NULL, NULL, NULL, 'dzvMjKld', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'eprov_testing', NULL, NULL), + (431, 'ErikoAurelion_testing', NULL, NULL, NULL, 'd2wE9B8m', NULL, NULL, NULL, '156279959965401088', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ErikoAurelion_testing', NULL, NULL), + (432, 'Eru_testing', NULL, NULL, NULL, '8d8lBL0d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Eru_testing', NULL, NULL), + (433, 'Eternus_testing', NULL, NULL, NULL, 'mpqn6vkA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Eternus_testing', NULL, NULL), + (434, 'Evan_testing', NULL, NULL, NULL, '4P107gwd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Evan_testing', NULL, NULL), + (435, 'evilbawb_testing', NULL, NULL, NULL, '40Da6Lx4', '76561198054182170', NULL, 'evilbawb', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'evilbawb_testing', NULL, NULL), + (436, 'exceL_testing', NULL, NULL, NULL, 'd8GMXNV4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'exceL_testing', NULL, NULL), + (437, 'ExpiredDawn_testing', NULL, NULL, NULL, 'v4DOV8qA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ExpiredDawn_testing', NULL, NULL), + (438, 'Expo_Indigo_testing', NULL, NULL, NULL, 'LmpJ3j94', NULL, NULL, 'Expo_Indigo', '821845958182174770', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Expo_Indigo_testing', NULL, NULL), + (439, 'ExtremeDream_testing', NULL, NULL, NULL, 'd9ovY5pA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ExtremeDream_testing', NULL, NULL), + (440, 'Eyebr0wz_testing', NULL, NULL, NULL, 'dzva1L9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Eyebr0wz_testing', NULL, NULL), + (441, 'F13tch (Fletch)_testing', NULL, NULL, NULL, '4kqkE0Lm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'F13tch (Fletch)_testing', NULL, NULL), + (442, 'Face_testing', NULL, NULL, NULL, '41xa1GEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Face_testing', NULL, NULL), + (443, 'Fafnir_testing', NULL, NULL, NULL, 'dK3lXY5d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fafnir_testing', NULL, NULL), + (444, 'Fantasy_testing', NULL, NULL, NULL, 'ndlboPlA', '76561198087847108', NULL, 'TFantasyGaming.TTV', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fantasy_testing', NULL, NULL), + (445, 'FauxShot_testing', NULL, NULL, NULL, 'ydw70y5d', NULL, NULL, 'FauxShot', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'FauxShot_testing', NULL, NULL), + (446, 'Felix The Husky_testing', NULL, NULL, NULL, 'dVkr9Epm', NULL, NULL, NULL, '501122648806260740', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Felix The Husky_testing', NULL, NULL), + (447, 'Fenrir_testing', NULL, NULL, NULL, 'v4D3kbyA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fenrir_testing', NULL, NULL), + (448, 'god_ferny_testing', NULL, NULL, NULL, 'd8L1qKVd', '76561198263380204', NULL, 'god_ferny', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'god_ferny_testing', NULL, NULL), + (449, 'fiIicity_testing', NULL, NULL, NULL, '40YY7OVd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'fiIicity_testing', NULL, NULL), + (450, 'Fin Silver_testing', NULL, NULL, NULL, 'Md3a2MGA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fin Silver_testing', NULL, NULL), + (451, 'fis10tris10_testing', NULL, NULL, NULL, 'mRrE1lom', NULL, NULL, NULL, '821810920090239008', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'fis10tris10_testing', NULL, NULL), + (452, 'Fission_testing', NULL, NULL, NULL, 'mR1NrPYd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fission_testing', NULL, NULL), + (453, 'Flap_Jacks_testing', NULL, NULL, NULL, '54kMebXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Flap_Jacks_testing', NULL, NULL), + (454, 'Flickir_testing', NULL, NULL, NULL, '0mqjLozA', '76561198428723765', NULL, 'Flickir', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Flickir_testing', NULL, NULL), + (455, 'flippa_testing', NULL, NULL, NULL, 'd3Rl0OY4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'flippa_testing', NULL, NULL), + (456, 'Flipzzz21_testing', NULL, NULL, NULL, 'dlno03XA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Flipzzz21_testing', NULL, NULL), + (457, 'FluffyEvil_testing', NULL, NULL, NULL, 'mjnDNL3m', '76561198014354731', NULL, 'FluffyEvil', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'FluffyEvil_testing', NULL, NULL), + (458, 'Flunky_testing', NULL, NULL, NULL, 'mGOpGLZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Flunky_testing', NULL, NULL), + (459, 'Fochezatto_testing', NULL, NULL, NULL, 'AQ0675xm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fochezatto_testing', NULL, NULL), + (460, 'Folz_testing', NULL, NULL, NULL, 'dwYlB71A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Folz_testing', NULL, NULL), + (461, 'Fonzie_testing', NULL, NULL, NULL, 'mj68Y3bm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fonzie_testing', NULL, NULL), + (462, 'Fordring_testing', NULL, NULL, NULL, 'dxMkLv1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fordring_testing', NULL, NULL), + (463, 'ForrestFox_testing', NULL, NULL, NULL, 'mjYq0MVd', NULL, NULL, NULL, '95593961481043968', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ForrestFox_testing', NULL, NULL), + (464, 'Forsaken_testing', NULL, NULL, NULL, 'dJrGrkbd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Forsaken_testing', NULL, NULL), + (465, 'FrankensteinMD_testing', NULL, NULL, NULL, 'mGGwaMrm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'FrankensteinMD_testing', NULL, NULL), + (466, 'Frankiepals_testing', NULL, NULL, NULL, '41YVG154', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Frankiepals_testing', NULL, NULL), + (467, 'Freelancer_testing', NULL, NULL, NULL, '0mq8bX5d', '76561198327259293', NULL, 'Freelancer19', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Freelancer_testing', NULL, NULL), + (468, 'French Toast?_testing', NULL, NULL, NULL, 'NmLXw9Nm', NULL, NULL, NULL, '215578832374202368', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'French Toast?_testing', NULL, NULL), + (469, 'FreqiMANN_testing', NULL, NULL, NULL, 'dJ9OElB4', NULL, NULL, NULL, '302965181452124160', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'FreqiMANN_testing', NULL, NULL), + (470, 'Froltz_testing', NULL, NULL, NULL, 'Anal0wJm', NULL, NULL, NULL, '226117096126283786', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Froltz_testing', NULL, NULL), + (471, 'FrostyWolfe_testing', NULL, NULL, NULL, 'rdO7KaPd', NULL, NULL, NULL, 'FrostyWolfe', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'FrostyWolfe_testing', NULL, NULL), + (472, 'FrozenRider_testing', NULL, NULL, NULL, '0mqqyG1m', '76561198859865745', NULL, 'FrozenRider91', '490292528583671808', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'FrozenRider_testing', NULL, NULL), + (473, 'Fruitloop_testing', NULL, NULL, NULL, 'm6YMMDQd', NULL, NULL, NULL, '187425290635444224', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fruitloop_testing', NULL, NULL), + (474, 'Fugton_testing', NULL, NULL, NULL, 'Agv90Kym', NULL, NULL, NULL, '344979047274512386', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Fugton_testing', NULL, NULL), + (475, 'FuntyMcCraiger_testing', NULL, NULL, NULL, 'AgkMV1jA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'FuntyMcCraiger_testing', NULL, NULL), + (476, 'fustev_testing', NULL, NULL, NULL, 'kdKXWGNm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'fustev_testing', NULL, NULL), + (477, 'gagestep_testing', NULL, NULL, NULL, 'rdOPZ8em', '76561198168728585', NULL, 'gagestep', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'gagestep_testing', NULL, NULL), + (478, 'Gandalf_theGr8p_testing', NULL, NULL, NULL, 'dlj52DXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gandalf_theGr8p_testing', NULL, NULL), + (479, 'Ganrax_testing', NULL, NULL, NULL, 'Pm7kELXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ganrax_testing', NULL, NULL), + (480, 'Gary_testing', NULL, NULL, NULL, 'mRB3oJYm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gary_testing', NULL, NULL), + (481, 'George419_testing', NULL, NULL, NULL, 'o4PKBRlA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'George419_testing', NULL, NULL), + (482, 'Gies_testing', NULL, NULL, NULL, 'mb268pXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gies_testing', NULL, NULL), + (483, 'Giland_testing', NULL, NULL, NULL, 'NmLpqJam', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Giland_testing', NULL, NULL), + (484, 'Gilbert_testing', NULL, NULL, NULL, 'ZdNBGWwd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gilbert_testing', NULL, NULL), + (485, 'Gillette_testing', NULL, NULL, NULL, 'ZdNXQDGA', '76561198075144501', NULL, 'zgillette2018', '246418959224537090', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gillette_testing', NULL, NULL), + (486, 'Gio_testing', NULL, NULL, NULL, 'x4oaR1Gm', '76561198050158782', NULL, 'Gio7181', '279825415948730369', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gio_testing', NULL, NULL), + (487, 'Giraffe_Actual_testing', NULL, NULL, NULL, 'mb1neeEd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Giraffe_Actual_testing', NULL, NULL), + (488, 'Glass_testing', NULL, NULL, NULL, 'ZdNRzxkd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Glass_testing', NULL, NULL), + (489, 'Gleg_testing', NULL, NULL, NULL, '4oj73eoA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gleg_testing', NULL, NULL), + (490, 'GLI_testing', NULL, NULL, NULL, 'w4WDkpjd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'GLI_testing', NULL, NULL), + (491, 'G. Misfit_testing', NULL, NULL, NULL, '4EQ0NkD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'G. Misfit_testing', NULL, NULL), + (492, 'goatman_testing', NULL, NULL, NULL, 'dOOOlzWd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'goatman_testing', NULL, NULL), + (493, 'Goblin_testing', NULL, NULL, NULL, 'dJPNk9nA', '76561199269066043', NULL, 'Goblin', '521994383659106305', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Goblin_testing', NULL, NULL), + (494, 'Goblin0136_testing', NULL, NULL, NULL, '4ZDqkbem', NULL, NULL, NULL, '279246365564076034', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Goblin0136_testing', NULL, NULL), + (495, 'gocubsgo_testing', NULL, NULL, NULL, 'dNMllJo4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'gocubsgo_testing', NULL, NULL), + (496, 'Haochen Goemon_testing', NULL, NULL, NULL, '1ArKK6Y4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Haochen Goemon_testing', NULL, NULL), + (497, 'Gomeasy45_testing', NULL, NULL, NULL, 'mybg6JJA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gomeasy45_testing', NULL, NULL), + (498, 'Gonzas_testing', NULL, NULL, NULL, '4vExLzOA', NULL, NULL, NULL, '411607414933291010', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gonzas_testing', NULL, NULL), + (499, 'Goose117_testing', NULL, NULL, NULL, 'AQ9y71aA', NULL, NULL, NULL, '367116246971449345', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Goose117_testing', NULL, NULL), + (500, 'Gorilla_testing', NULL, NULL, NULL, '4DQBMX6d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gorilla_testing', NULL, NULL), + (501, 'gossler_testing', NULL, NULL, NULL, 'xd9V7YEm', '76561197962019610', NULL, 'chickendoose', '254468385948041216', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'gossler_testing', NULL, NULL), + (502, 'Goyu_testing', NULL, NULL, NULL, '64vvYGk4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Goyu_testing', NULL, NULL), + (503, 'Grass(aka your lawn)_testing', NULL, NULL, NULL, '54koopR4', '76561198194924901', NULL, 'Grass(aka your lawn)', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Grass(aka your lawn)_testing', NULL, NULL), + (504, 'Graver_testing', NULL, NULL, NULL, '4v0WwbOm', NULL, NULL, NULL, '1248417958804590642', '0704.graver.1776\r\n', NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Graver_testing', NULL, NULL), + (505, 'Gravity_testing', NULL, NULL, NULL, 'O4Za9geA', '76561198101905312', NULL, 'Gravityyy', '821790945279344785', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gravity_testing', NULL, NULL), + (506, 'grayy_testing', NULL, NULL, NULL, 'GmjJa35m', NULL, NULL, NULL, '151118999965532161', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'grayy_testing', NULL, NULL), + (507, 'Gree_testing', NULL, NULL, NULL, 'm6YVxaRd', NULL, NULL, NULL, '335173439121915935', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gree_testing', NULL, NULL), + (508, 'BacktothePasture_testing', NULL, NULL, NULL, 'bdz9ePb4', NULL, NULL, NULL, '135612395891589120', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BacktothePasture_testing', NULL, NULL), + (509, 'Grenzoocoon_testing', NULL, NULL, NULL, 'dxOW7r24', '76561198132489026', NULL, 'Grenz', '429534768603070474', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Grenzoocoon_testing', NULL, NULL), + (510, 'Grey_testing', NULL, NULL, NULL, 'x4o11yMm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Grey_testing', NULL, NULL), + (511, 'Griffin_testing', NULL, NULL, NULL, 'd3RVlrO4', NULL, NULL, 'mwelshans', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Griffin_testing', NULL, NULL), + (512, 'RavePanda_testing', NULL, NULL, NULL, '6AXMZBY4', '76561198034261728', NULL, 'RavePanda', '275103975873708042', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'RavePanda_testing', NULL, NULL), + (513, 'Grim_testing', NULL, NULL, NULL, 'm7OVvxMm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Grim_testing', NULL, NULL), + (514, 'Grim5902_testing', NULL, NULL, NULL, '8mRVk07m', NULL, NULL, NULL, '210533370474528768', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Grim5902_testing', NULL, NULL), + (515, 'GrimmHearted_testing', NULL, NULL, NULL, 'ndaRleZm', NULL, NULL, NULL, '715707014566641715', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'GrimmHearted_testing', NULL, NULL), + (516, 'Grizzly_testing', NULL, NULL, NULL, 'bdzYJ5y4', '76561198067735811', NULL, 'sweaty_tacos', '440322430884642817', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'Grizzly_testing', NULL, NULL), + (517, 'GroundControl_testing', NULL, NULL, NULL, 'QdJ60Jod', '76561198255420821', NULL, 'GroundControl', '805097158239453225', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'GroundControl_testing', NULL, NULL), + (518, 'gtsiam_testing', NULL, NULL, NULL, 'mj58L1Vd', NULL, NULL, NULL, '222694946560278528', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'gtsiam_testing', NULL, NULL), + (519, 'Guardian_testing', NULL, NULL, NULL, 'Anaer1Jm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Guardian_testing', NULL, NULL), + (520, 'Gumi_testing', NULL, NULL, NULL, 'ArQp7J8m', NULL, NULL, NULL, '917926118886109264', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gumi_testing', NULL, NULL), + (521, 'Gumpy_testing', NULL, NULL, NULL, '6AXWk10m', '76561199102427874', NULL, 'Gumpy', '272539130741915648', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Gumpy_testing', NULL, NULL), + (522, 'gunmetals_testing', NULL, NULL, NULL, 'ndae8EZd', '76561198079555940', NULL, 'gunmetals', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'gunmetals_testing', NULL, NULL), + (523, 'Hadchaos_testing', NULL, NULL, NULL, 'dBnqEwvd', NULL, NULL, NULL, '321700070036733953', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hadchaos_testing', NULL, NULL), + (524, 'Hakugard_testing', NULL, NULL, NULL, 'dVbj3vZd', '76561197999851233', NULL, 'Hakugard', '112454588585484288', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hakugard_testing', NULL, NULL), + (525, 'Hallway_testing', NULL, NULL, NULL, 'AQOjJNLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hallway_testing', NULL, NULL), + (526, 'Han_testing', NULL, NULL, NULL, 'kdKjkM74', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Han_testing', NULL, NULL), + (527, 'Harambe_testing', NULL, NULL, NULL, '4oMeX9Gm', NULL, NULL, NULL, '339599573896921088', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Harambe_testing', NULL, NULL), + (528, 'HawkeyeIsTaken_testing', NULL, NULL, NULL, 'AQOjKlgd', NULL, NULL, NULL, '276843876025630731', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'HawkeyeIsTaken_testing', NULL, NULL), + (529, 'HeadGoesBoom_testing', NULL, NULL, NULL, 'ydwvP3Q4', '76561198046119897', NULL, 'HeadGoesBoom', '235838079372492800', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'HeadGoesBoom_testing', NULL, NULL), + (530, 'Hearts_testing', NULL, NULL, NULL, 'daBo50rm', NULL, NULL, NULL, '180552271413772288', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hearts_testing', NULL, NULL), + (531, 'helicobtor_testing', NULL, NULL, NULL, '4oxybLYd', NULL, NULL, NULL, '517486759274086410', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'helicobtor_testing', NULL, NULL), + (532, 'Hells_testing', NULL, NULL, NULL, 'kdKjj8M4', '76561198044479225', NULL, 'hells_armorer', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hells_testing', NULL, NULL), + (533, 'HellzGuard_testing', NULL, NULL, NULL, 'm6qlzRzd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'HellzGuard_testing', NULL, NULL), + (534, 'Hephaestus_testing', NULL, NULL, NULL, 'dKbl16R4', NULL, NULL, NULL, '232195409047584769', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hephaestus_testing', NULL, NULL), + (535, 'Hexiam_testing', NULL, NULL, NULL, '4PPG8al4', NULL, NULL, NULL, '284534150776487936', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hexiam_testing', NULL, NULL), + (536, 'Hey_ImMatt_testing', NULL, NULL, NULL, '0mqNlbkA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hey_ImMatt_testing', NULL, NULL), + (537, 'Hippiejesus_testing', NULL, NULL, NULL, 'ndalZan4', '76561197998936468', NULL, 'HippieJesus', '253363115968823297', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hippiejesus_testing', NULL, NULL), + (538, 'Hips_testing', NULL, NULL, NULL, 'm6o1vJzA', NULL, NULL, NULL, '388445686108127232', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hips_testing', NULL, NULL), + (539, 'Hizumi_testing', NULL, NULL, NULL, '54k7DM54', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-08 21:59:25', NULL, NULL, '{"id":"b08b1bc6e9ea94335f21a26ef271d058038fa4e546ad30268d478f03905068ee","displayName":"hizumi","username":"user4752","name":{"givenName":"hizumi"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Hizumi_testing', NULL, '2026-01-08 22:00:44'), + (540, 'Hobday_testing', NULL, NULL, NULL, 'o4PyjPvd', NULL, NULL, NULL, '296806055541997568', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hobday_testing', NULL, NULL), + (541, 'Homerow_testing', NULL, NULL, NULL, '41w56QMm', NULL, NULL, NULL, '209453495185571841', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Homerow_testing', NULL, NULL), + (542, 'Homie_testing', NULL, NULL, NULL, 'dVbZqVld', '76561199200901479', NULL, 'ThyHomie', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Homie_testing', NULL, NULL), + (543, 'horrorhynde_testing', NULL, NULL, NULL, 'dOpPgrOm', NULL, NULL, NULL, '564486078732697601', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'horrorhynde_testing', NULL, NULL), + (544, 'HouzevnatyKacer_testing', NULL, NULL, NULL, '4E51DgD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'HouzevnatyKacer_testing', NULL, NULL), + (545, 'hoverdoge_testing', NULL, NULL, NULL, 'NmL2aZJ4', '76561198882266024', NULL, 'hoverdoge', '398632461665435671', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'hoverdoge_testing', NULL, NULL), + (546, 'Huffy_testing', NULL, NULL, NULL, 'm6ZnNjRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Huffy_testing', NULL, NULL), + (547, 'HumbleGoat316_testing', NULL, NULL, NULL, 'dVBgEaqd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'HumbleGoat316_testing', NULL, NULL), + (548, 'Humble_Marksman_testing', NULL, NULL, NULL, 'amGO55Zm', NULL, NULL, NULL, '169586294731571200', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Humble_Marksman_testing', NULL, NULL), + (549, 'hybu_testing', NULL, NULL, NULL, 'AgxgKPj4', NULL, NULL, NULL, '325788179255001091', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'hybu_testing', NULL, NULL), + (550, 'HyDa_Scarface_testing', NULL, NULL, NULL, 'xd96pVzm', NULL, NULL, NULL, '265621889890779138', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'HyDa_Scarface_testing', NULL, NULL), + (551, 'HydnalX42_testing', NULL, NULL, NULL, 'pmbMM9Xd', NULL, NULL, NULL, '95194758158225408', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'HydnalX42_testing', NULL, NULL), + (552, 'Hydra_testing', NULL, NULL, NULL, 'd9XQBry4', NULL, NULL, NULL, '969517104040661002', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hydra_testing', NULL, NULL), + (553, 'Hyper_testing', NULL, NULL, NULL, '41G2ZoEm', NULL, NULL, NULL, '182217291688181760', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Hyper_testing', NULL, NULL), + (554, 'IAmNomad_testing', NULL, NULL, NULL, 'dVb1zMpd', '76561198829888667', NULL, 'Shadow7EV3N', '367249392274767882', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'IAmNomad_testing', NULL, NULL), + (555, 'Iceberg Bot_testing', NULL, NULL, NULL, 'rdOlX8Pm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Iceberg Bot_testing', NULL, NULL), + (556, 'Iceberg Gaming Team_testing', NULL, NULL, NULL, 'AnjKD2pA', NULL, NULL, NULL, '615301505074987008', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Iceberg Gaming Team_testing', NULL, NULL), + (557, 'IdentityNull_testing', NULL, NULL, NULL, '8d8PrVvd', NULL, NULL, NULL, '305161162910072832', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, '{"id":"4da8d03a3ff898132f3ec52784995af00d09d46dc156436b4c9c48e46424348c","displayName":"IdentityNull","username":"identitynull","name":{"givenName":"IdentityNull"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'IdentityNull_testing', NULL, '2025-12-27 16:36:05'), + (558, 'igelnico_testing', NULL, NULL, NULL, '4WP8xObd', NULL, NULL, NULL, '242048186561200129', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'igelnico_testing', NULL, NULL), + (559, 'Illuminasty_testing', NULL, NULL, NULL, 'dzON9nLm', NULL, NULL, NULL, '368535215691268096', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Illuminasty_testing', NULL, NULL), + (560, 'ImageNation_testing', NULL, NULL, NULL, '4ZVRlM74', NULL, NULL, NULL, '255935105388904449', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ImageNation_testing', NULL, NULL), + (561, 'ImpeeialGamer1_testing', NULL, NULL, NULL, 'dankzXDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ImpeeialGamer1_testing', NULL, NULL), + (562, 'IndigoFox_testing', NULL, NULL, NULL, 'o4P6bvmR', '76561197991996737', NULL, 'IndigoFox', '57217075608825856', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'IndigoFox_testing', NULL, NULL), + (563, 'internetiger01_testing', NULL, NULL, NULL, 'pmbGG2VA', '76561198116821249', NULL, 'internetiger01', '258767298448457728', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'internetiger01_testing', NULL, NULL), + (564, 'iPoopLegos_testing', NULL, NULL, NULL, 'ArgB5Kw4', NULL, NULL, NULL, '336278824129921025', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'iPoopLegos_testing', NULL, NULL), + (565, 'PhoenixInIris_testing', NULL, NULL, NULL, 'dVDa6EzA', NULL, NULL, NULL, '217704905052389377', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PhoenixInIris_testing', NULL, NULL), + (566, 'irmatt_testing', NULL, NULL, NULL, '41oMNaEm', NULL, NULL, NULL, '269308105139945472', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'irmatt_testing', NULL, NULL), + (567, 'Iron_testing', NULL, NULL, NULL, 'd8VzLnvA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Iron_testing', NULL, NULL), + (568, 'Itskaiser_testing', NULL, NULL, NULL, 'AYznBMa4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Itskaiser_testing', NULL, NULL), + (569, 'ItzBlueTV_testing', NULL, NULL, NULL, '4v81QGBm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ItzBlueTV_testing', NULL, NULL), + (570, 'Ivan_testing', NULL, NULL, NULL, 'd90KjvE4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ivan_testing', NULL, NULL), + (571, 'J2K Whiro_testing', NULL, NULL, NULL, '4kRwppEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'J2K Whiro_testing', NULL, NULL), + (572, 'jack_testing', NULL, NULL, NULL, 'ndlRWWYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'jack_testing', NULL, NULL), + (573, 'Jackal_testing', NULL, NULL, NULL, 'd8DzyGpd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jackal_testing', NULL, NULL), + (574, 'Jacket_testing', NULL, NULL, NULL, 'Md3MjvgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jacket_testing', NULL, NULL), + (575, 'Jackson_testing', NULL, NULL, NULL, '6AX5PQ64', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jackson_testing', NULL, NULL), + (576, 'Acehunter243_testing', NULL, NULL, NULL, 'An28Z32A', NULL, NULL, NULL, '326577793959723009', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Acehunter243_testing', NULL, NULL), + (577, 'Jaime_testing', NULL, NULL, NULL, 'dl3J95l4', '76561198796299229', NULL, 'Jaime', '519211806112350218', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jaime_testing', NULL, NULL), + (578, 'Jalopy_testing', NULL, NULL, NULL, '8d8l0Kgd', NULL, NULL, 'jalopy13f', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jalopy_testing', NULL, NULL), + (579, 'JAM_testing', NULL, NULL, NULL, 'Vdxw5kO4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'JAM_testing', NULL, NULL), + (580, 'james_testing', NULL, NULL, NULL, 'ydwen00A', '76561198363032208', NULL, 'spuge bob', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'james_testing', NULL, NULL), + (581, 'Jay_testing', NULL, NULL, NULL, 'lAerOQ34', '76561198821564480', NULL, 'Jay', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jay_testing', NULL, NULL), + (582, 'jbandzbabyy_testing', NULL, NULL, NULL, 'AnbvzkLA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'jbandzbabyy_testing', NULL, NULL), + (583, 'Jbriggs_testing', NULL, NULL, NULL, 'Ae725qOd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jbriggs_testing', NULL, NULL), + (584, 'J. Connor_testing', NULL, NULL, NULL, 'EdVaR3p4', '76561198264352221', NULL, 'antpatrick7891', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'J. Connor_testing', NULL, NULL), + (585, 'J. Diest_testing', NULL, NULL, NULL, 'VdxNEKGA', '76561198253724229', NULL, 'jervdiest', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'J. Diest_testing', NULL, NULL), + (586, 'J. Drake_testing', NULL, NULL, NULL, '4E2y78Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'J. Drake_testing', NULL, NULL), + (587, 'JDUBB_testing', NULL, NULL, NULL, 'dx6roa9A', '76561199122637149', NULL, 'JDUBB', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'JDUBB_testing', NULL, NULL), + (588, 'Jefferson_testing', NULL, NULL, NULL, 'mp1RZo9A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jefferson_testing', NULL, NULL), + (589, 'Jenkins17_testing', NULL, NULL, NULL, 'pmbOM2KA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jenkins17_testing', NULL, NULL), + (590, 'Jeska_testing', NULL, NULL, NULL, 'EdVMllz4', '76561198125667979', NULL, 'Jeska', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jeska_testing', NULL, NULL), + (591, 'Jessekjames08_testing', NULL, NULL, NULL, '4PNgvaym', '76561198995360783', NULL, 'JesseKJames08', '756201756630974495', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jessekjames08_testing', NULL, NULL), + (592, 'jester_testing', NULL, NULL, NULL, 'd9qJlyZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'jester_testing', NULL, NULL), + (593, 'Jimmiee26_testing', NULL, NULL, NULL, 'dannVXDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jimmiee26_testing', NULL, NULL), + (594, 'jinxmaster_testing', NULL, NULL, NULL, '4WPyy60d', NULL, NULL, NULL, '451738436601380865', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'jinxmaster_testing', NULL, NULL), + (595, 'JJ_testing', NULL, NULL, NULL, '4E2kB81d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'JJ_testing', NULL, NULL), + (596, 'JJ1234r_testing', NULL, NULL, NULL, 'daPJkNp4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'JJ1234r_testing', NULL, NULL), + (597, 'Joe B_testing', NULL, NULL, NULL, 'QdJJEjBd', '76561198093706678', NULL, 'Rebound', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Joe B_testing', NULL, NULL), + (598, 'joemoso_testing', NULL, NULL, NULL, 'dxML9MXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'joemoso_testing', NULL, NULL), + (599, 'Johnny_testing', NULL, NULL, NULL, 'dN9LBYR4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Johnny_testing', NULL, NULL), + (600, 'Jokerzrus_testing', NULL, NULL, NULL, 'R40q3XVd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jokerzrus_testing', NULL, NULL), + (601, 'JonnyBravo_testing', NULL, NULL, NULL, '8dBaDw84', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'JonnyBravo_testing', NULL, NULL), + (602, 'Jrip_testing', NULL, NULL, NULL, 'myDrr50d', '76561198049009610', NULL, 'Jrip', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jrip_testing', NULL, NULL), + (603, 'JTheriot3_testing', NULL, NULL, NULL, '4onn90oA', NULL, NULL, NULL, '468555677263200256', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'JTheriot3_testing', NULL, NULL), + (604, 'JustSam0709_testing', NULL, NULL, NULL, '4v8yPnkm', '76561198309463925', NULL, 'JustSam0709', '525172062671732746', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'JustSam0709_testing', NULL, NULL), + (605, 'J. Wayne_testing', NULL, NULL, NULL, 'LmpJ6PQ4', '76561198088979734', NULL, 'YaBoiNuttyBuddy', '237371253323726849', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'J. Wayne_testing', NULL, NULL), + (606, 'JWR19HTY_testing', NULL, NULL, NULL, '4ol7aOVd', NULL, NULL, NULL, '533657576290910211', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'JWR19HTY_testing', NULL, NULL), + (607, 'K3rnalS_testing', NULL, NULL, NULL, 'mq1a80qm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'K3rnalS_testing', NULL, NULL), + (608, 'Kage_testing', NULL, NULL, NULL, 'dxDRpJ1d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kage_testing', NULL, NULL), + (609, 'Kaguto_testing', NULL, NULL, NULL, 'daJnKRDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kaguto_testing', NULL, NULL), + (610, 'Kaiwoo_testing', NULL, NULL, NULL, 'dVbq39Zd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kaiwoo_testing', NULL, NULL), + (611, 'Kansas_testing', NULL, NULL, NULL, 'daBenyDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kansas_testing', NULL, NULL), + (612, 'Karthstrom__testing', NULL, NULL, NULL, 'NmLXxVam', NULL, NULL, NULL, '194656541033496578', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, '{"id":"dab5ce12cc303078c89a1884148f00d5f6022873864f7b88f5083a3cb9fe42b7","displayName":"Karthstrom","username":"karthstrom","name":{"givenName":"Karthstrom"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Karthstrom__testing', NULL, '2026-01-02 20:05:48'), + (613, 'Karthstrom97_testing', NULL, NULL, NULL, '4EK9rRDm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Karthstrom97_testing', NULL, NULL), + (614, 'Katana_testing', NULL, NULL, NULL, 'AYznaq04', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Katana_testing', NULL, NULL), + (615, 'KaylebStorm_testing', NULL, NULL, NULL, 'm6o67OgA', '76561198178291949', NULL, 'KaylebStorm', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'KaylebStorm_testing', NULL, NULL), + (616, 'Kaz_testing', NULL, NULL, NULL, '2d2PNVYA', NULL, NULL, NULL, '113380546540761088', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kaz_testing', NULL, NULL), + (617, 'Kcmo_testing', NULL, NULL, NULL, 'd8DaZ3gd', NULL, NULL, NULL, '121068145245945858', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kcmo_testing', NULL, NULL), + (618, 'kelton_testing', NULL, NULL, NULL, 'dN7oeeXm', '76561198025291613', NULL, 'Kelton', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'kelton_testing', NULL, NULL), + (619, 'Kerjack Live_testing', NULL, NULL, NULL, 'Argl5r84', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kerjack Live_testing', NULL, NULL), + (620, 'Kerwin_testing', NULL, NULL, NULL, '4voNO8Od', '76561198800377696', NULL, 'Kerwin', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kerwin_testing', NULL, NULL), + (621, 'KetchupDuncan_testing', NULL, NULL, NULL, 'd3RkK1e4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'KetchupDuncan_testing', NULL, NULL), + (622, 'Kevc0re__testing', NULL, NULL, NULL, 'AYzbJjw4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kevc0re__testing', NULL, NULL), + (623, 'KeystonePirate_testing', NULL, NULL, NULL, '409Nn7yd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'KeystonePirate_testing', NULL, NULL), + (624, 'Kfir_testing', NULL, NULL, NULL, 'oAQJrkN4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kfir_testing', NULL, NULL), + (625, 'Khodi_testing', NULL, NULL, NULL, 'dN9EV6G4', NULL, NULL, NULL, '705615238497566730', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Khodi_testing', NULL, NULL), + (626, 'king_roblosSIGMA_testing', NULL, NULL, NULL, '4oql9XXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'king_roblosSIGMA_testing', NULL, NULL), + (627, 'King 0-1_testing', NULL, NULL, NULL, 'dVgwNzrm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'King 0-1_testing', NULL, NULL), + (628, 'KINgGh0sT_testing', NULL, NULL, NULL, 'nm687ZR4', '76561197962482488', NULL, 'KINgGh0sT', '206546416636526592', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'KINgGh0sT_testing', NULL, NULL), + (629, 'KingOfCato_testing', NULL, NULL, NULL, '4D9EVr9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'KingOfCato_testing', NULL, NULL), + (630, 'KingPerds_testing', NULL, NULL, NULL, 'd5DwZKq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'KingPerds_testing', NULL, NULL), + (631, 'KitaNiyo_testing', NULL, NULL, NULL, 'dwqlLk8A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'KitaNiyo_testing', NULL, NULL), + (632, 'Kiwi_testing', NULL, NULL, NULL, 'myxyao5d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kiwi_testing', NULL, NULL), + (633, 'kj_testing', NULL, NULL, NULL, 'v4DNqB9m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'kj_testing', NULL, NULL), + (634, 'Klay_9911_testing', NULL, NULL, NULL, 'Arx1nGgd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Klay_9911_testing', NULL, NULL), + (635, 'Klein_66_testing', NULL, NULL, NULL, '4WPeaW0d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Klein_66_testing', NULL, NULL), + (636, 'Knightmare_testing', NULL, NULL, NULL, 'dx656kEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Knightmare_testing', NULL, NULL), + (637, 'Kole_testing', NULL, NULL, NULL, 'm6xlG204', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kole_testing', NULL, NULL), + (638, 'Kraber_testing', NULL, NULL, NULL, '4k3aBJR4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kraber_testing', NULL, NULL), + (639, 'Kraige_testing', NULL, NULL, NULL, '2d20EjoA', '76561198015840705', NULL, 'Krage', '232313941940895744', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kraige_testing', NULL, NULL), + (640, 'Kraz3d God_testing', NULL, NULL, NULL, 'mq1nab1m', '76561198391178209', NULL, 'QTR KillShot', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kraz3d God_testing', NULL, NULL), + (641, 'Krazy_Panzer_testing', NULL, NULL, NULL, 'AXoMKVQm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Krazy_Panzer_testing', NULL, NULL), + (642, 'Krescendo_testing', NULL, NULL, NULL, 'm6jjvn3m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Krescendo_testing', NULL, NULL), + (643, 'Krill_testing', NULL, NULL, NULL, '2d2B7PJd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Krill_testing', NULL, NULL), + (644, 'Kron_testing', NULL, NULL, NULL, 'xd98Epq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kron_testing', NULL, NULL), + (645, 'Kronez_testing', NULL, NULL, NULL, 'mpOqPe9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kronez_testing', NULL, NULL), + (646, 'KRONK!_testing', NULL, NULL, NULL, 'dOx5BLLm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'KRONK!_testing', NULL, NULL), + (647, 'Krovy_testing', NULL, NULL, NULL, 'dl2p7PVA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Krovy_testing', NULL, NULL), + (648, 'Krusty_testing', NULL, NULL, NULL, 'myDGDeWd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Krusty_testing', NULL, NULL), + (665, 'Kuya luya ginger_testing', NULL, NULL, NULL, 'mR02wvQ4', '76561198375823625', NULL, 'Clover_arch', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kuya luya ginger_testing', NULL, NULL), + (666, 'Krazydawgs_testing', NULL, NULL, NULL, 'dBb0rbbd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Krazydawgs_testing', NULL, NULL), + (667, 'L0GAN1sDope_testing', NULL, NULL, NULL, 'mLoVwz8d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'L0GAN1sDope_testing', NULL, NULL), + (668, 'Laboy_testing', NULL, NULL, NULL, 'dVD1xlrA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Laboy_testing', NULL, NULL), + (669, 'Laces27_testing', NULL, NULL, NULL, 'oAQqO2gA', NULL, NULL, 'Laces2727', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Laces27_testing', NULL, NULL), + (670, 'Lad Andre_testing', NULL, NULL, NULL, 'Vmy6a8yA', '76561198146749916', NULL, 'Tacoriffics', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Lad Andre_testing', NULL, NULL), + (671, 'Lagia_testing', NULL, NULL, NULL, 'AnneYvYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Lagia_testing', NULL, NULL), + (672, 'L.E.Pierce_testing', NULL, NULL, NULL, 'w4W50Mqm', NULL, NULL, 'L.E.Pierce', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'member', 'L.E.Pierce_testing', NULL, NULL), + (673, 'LeumasRelwood_testing', NULL, NULL, NULL, 'd3GJVGGd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'LeumasRelwood_testing', NULL, NULL), + (674, 'Levi_testing', NULL, NULL, NULL, 'NmLrDoZ4', '76561198104861888', NULL, 'Levi', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Levi_testing', NULL, NULL), + (675, 'levix97_testing', NULL, NULL, NULL, 'dOOeV88d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'levix97_testing', NULL, NULL), + (676, 'Lewis_testing', NULL, NULL, NULL, 'mqEkvrjm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Lewis_testing', NULL, NULL), + (677, 'Liam Thome_testing', NULL, NULL, NULL, 'lAepJYPm', '76561199041120384', NULL, 'skyaholic', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Liam Thome_testing', NULL, NULL), + (678, 'Lightlaw_testing', NULL, NULL, NULL, 'dBGPpv1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Lightlaw_testing', NULL, NULL), + (679, 'lilburritochef_testing', NULL, NULL, NULL, '4WPbQKpd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'lilburritochef_testing', NULL, NULL), + (680, 'lilfitti_testing', NULL, NULL, NULL, 'o4PKzewA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'lilfitti_testing', NULL, NULL), + (681, 'Limelight_testing', NULL, NULL, NULL, 'd3Yly1gA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Limelight_testing', NULL, NULL), + (682, 'Link_testing', NULL, NULL, NULL, '40kyrOyA', '76561198146199462', NULL, 'GhostIsSpooky', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Link_testing', NULL, NULL), + (683, 'Little_testing', NULL, NULL, NULL, 'mGGlGakm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Little_testing', NULL, NULL), + (684, 'L. Jefferson_testing', NULL, NULL, NULL, '2d27Z2Pm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'L. Jefferson_testing', NULL, NULL), + (685, 'logan6martin_testing', NULL, NULL, NULL, 'QdJ6n0wd', '76561198960383769', NULL, 'logan6martin', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'logan6martin_testing', NULL, NULL), + (686, 'Lonestar_testing', NULL, NULL, NULL, 'dJZMZVod', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Lonestar_testing', NULL, NULL), + (687, 'LoneWolfHDPro_testing', NULL, NULL, NULL, 'EdVGlG6m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'LoneWolfHDPro_testing', NULL, NULL), + (688, 'LooseCanoness_testing', NULL, NULL, NULL, 'ndaobMlA', NULL, NULL, 'comsorrels', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'LooseCanoness_testing', NULL, NULL), + (689, 'Lotion_testing', NULL, NULL, NULL, 'x4oYk6Ym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Lotion_testing', NULL, NULL), + (690, 'Lottoma_testing', NULL, NULL, NULL, 'kdKoePBd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Lottoma_testing', NULL, NULL), + (691, 'Louge_testing', NULL, NULL, NULL, 'Agk5xMRA', '76561198870341933', NULL, 'Yee Yee Ass Haircut', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Louge_testing', NULL, NULL), + (692, 'Louis_testing', NULL, NULL, NULL, 'GmjwwOgA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Louis_testing', NULL, NULL), + (693, 'lowkey_testing', NULL, NULL, NULL, '4PRkellm', '76561198968278992', NULL, 'emonerd', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'lowkey_testing', NULL, NULL), + (694, 'Loyal_testing', NULL, NULL, NULL, 'xAY1YN0A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Loyal_testing', NULL, NULL), + (695, 'lProwlerl_testing', NULL, NULL, NULL, '4v0pOYBm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'lProwlerl_testing', NULL, NULL), + (696, 'Luccas_testing', NULL, NULL, NULL, 'mbZ0PJam', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Luccas_testing', NULL, NULL), + (697, 'Lucifer_testing', NULL, NULL, NULL, 'ndla2kbm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Lucifer_testing', NULL, NULL), + (698, 'LuciNaut_testing', NULL, NULL, NULL, '4DnkGqym', '76561198098982410', NULL, 'LuciNaut', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'LuciNaut_testing', NULL, NULL), + (699, 'Lucky_testing', NULL, NULL, NULL, 'LmpVLZk4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Lucky_testing', NULL, NULL), + (700, 'lukedenvir_testing', NULL, NULL, NULL, 'VmMzM3rA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'lukedenvir_testing', NULL, NULL), + (701, 'luke walker_testing', NULL, NULL, NULL, '4PP5yPl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'luke walker_testing', NULL, NULL), + (702, 'Luna_testing', NULL, NULL, NULL, 'mM6lNBkA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Luna_testing', NULL, NULL), + (703, 'LunchBox_testing', NULL, NULL, NULL, 'AQ1oVjNA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'LunchBox_testing', NULL, NULL), + (704, 'Luter_testing', NULL, NULL, NULL, 'ArrpbPqA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Luter_testing', NULL, NULL), + (705, 'Madenote_testing', NULL, NULL, NULL, '1ArED5Bm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Madenote_testing', NULL, NULL), + (706, 'Maggnar_testing', NULL, NULL, NULL, 'ArQKkjYm', '76561198050542043', NULL, 'Maggnar of Anime', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Maggnar_testing', NULL, NULL), + (707, 'NGXII_testing', NULL, NULL, NULL, 'daDMjbK4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'NGXII_testing', NULL, NULL), + (708, 'MailMan_testing', NULL, NULL, NULL, 'lAeXawzm', '76561198110717670', NULL, 'Unstablemailman', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MailMan_testing', NULL, NULL), + (709, 'Makarov_testing', NULL, NULL, NULL, 'mjjMya5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Makarov_testing', NULL, NULL), + (710, 'malf_testing', NULL, NULL, NULL, 'Arb2RR8A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'malf_testing', NULL, NULL), + (711, 'Malic_testing', NULL, NULL, NULL, '8dBeWjv4', NULL, NULL, 'Paramedia', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Malic_testing', NULL, NULL), + (712, 'Malk_testing', NULL, NULL, NULL, 'dxO05ND4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Malk_testing', NULL, NULL), + (713, 'MANDO_testing', NULL, NULL, NULL, 'dNxOQMoA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MANDO_testing', NULL, NULL), + (714, 'Manik_testing', NULL, NULL, NULL, 'AgkZVxrA', NULL, NULL, 'manik', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Manik_testing', NULL, NULL), + (715, 'Marchand_testing', NULL, NULL, NULL, 'mR09Xw54', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Marchand_testing', NULL, NULL), + (716, 'marinc_testing', NULL, NULL, NULL, 'd2jYaY9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'marinc_testing', NULL, NULL), + (717, 'markj_testing', NULL, NULL, NULL, '4E5P7kX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'markj_testing', NULL, NULL), + (718, 'Masayra_testing', NULL, NULL, NULL, 'myx78L1d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Masayra_testing', NULL, NULL), + (719, 'maste_testing', NULL, NULL, NULL, 'O4ZrXoe4', '76561198041197015', NULL, 'festive fishhero12 landon', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'maste_testing', NULL, NULL), + (720, 'Math_testing', NULL, NULL, NULL, '41qKwzE4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Math_testing', NULL, NULL), + (721, 'Mathioks_testing', NULL, NULL, NULL, 'd3R9xke4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mathioks_testing', NULL, NULL), + (722, 'Matt_testing', NULL, NULL, NULL, 'myxqLX0d', '76561198127046981', NULL, 'Matt', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Matt_testing', NULL, NULL), + (723, 'Matthew Nichols_testing', NULL, NULL, NULL, 'ydwwL1kd', '76561198246303494', NULL, 'Matthew Nichols', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Matthew Nichols_testing', NULL, NULL), + (724, 'Maverick1_testing', NULL, NULL, NULL, 'mR6oaVgm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Maverick1_testing', NULL, NULL), + (725, 'Max_testing', NULL, NULL, NULL, '4kRjJORA', '76561198205029441', NULL, 'Max', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Max_testing', NULL, NULL), + (726, 'Maxedout_testing', NULL, NULL, NULL, 'mb29oVXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Maxedout_testing', NULL, NULL), + (727, 'MaybachKing_testing', NULL, NULL, NULL, '4orXBxXA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MaybachKing_testing', NULL, NULL), + (728, 'M.beattie_testing', NULL, NULL, NULL, 'mpGO9Nld', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'M.beattie_testing', NULL, NULL), + (729, 'Mcanaan_testing', NULL, NULL, NULL, 'w4WM2Jqm', '76561198028195847', NULL, 'mcanaan20', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mcanaan_testing', NULL, NULL), + (730, 'McCloud_testing', NULL, NULL, NULL, 'x4oeVrMm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'McCloud_testing', NULL, NULL), + (731, 'Medical_testing', NULL, NULL, NULL, 'Arneo6wA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Medical_testing', NULL, NULL), + (732, 'CCfrogfr_testing', NULL, NULL, NULL, 'dNrlPjGd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'CCfrogfr_testing', NULL, NULL), + (733, 'MemeDictator_testing', NULL, NULL, NULL, '4kxlDVzd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MemeDictator_testing', NULL, NULL), + (734, 'Memz_testing', NULL, NULL, NULL, 'mRBnX7Qm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Memz_testing', NULL, NULL), + (735, 'MentalCaz_testing', NULL, NULL, NULL, 'AXBv5Bvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MentalCaz_testing', NULL, NULL), + (736, 'Merc_testing', NULL, NULL, NULL, 'LmpVXGB4', '76561198307448861', NULL, 'ImHarpZ', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Merc_testing', NULL, NULL), + (737, 'Metro_testing', NULL, NULL, NULL, 'Qd5zVgOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Metro_testing', NULL, NULL), + (738, 'MetroDontTrustU_testing', NULL, NULL, NULL, 'dw83JB0m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MetroDontTrustU_testing', NULL, NULL), + (739, 'metzu_testing', NULL, NULL, NULL, 'AnbbDwwA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'metzu_testing', NULL, NULL), + (740, 'Mezori_testing', NULL, NULL, NULL, 'Pm7X27pA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mezori_testing', NULL, NULL), + (741, 'Micah_testing', NULL, NULL, NULL, 'm7Q1o9Y4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Micah_testing', NULL, NULL), + (742, 'Mickey_testing', NULL, NULL, NULL, 'QdJbkbPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mickey_testing', NULL, NULL), + (743, 'middyko_testing', NULL, NULL, NULL, 'AYwOGa9d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'middyko_testing', NULL, NULL), + (744, 'midnightowl23_testing', NULL, NULL, NULL, 'rdOrzKW4', '76561198206516652', NULL, 'Midnightowl23', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'midnightowl23_testing', NULL, NULL), + (745, 'MigjolVanMjol_testing', NULL, NULL, NULL, 'AnbXzrLA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MigjolVanMjol_testing', NULL, NULL), + (746, 'Mijo33_testing', NULL, NULL, NULL, 'oAQp8RZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mijo33_testing', NULL, NULL), + (747, 'Mike_testing', NULL, NULL, NULL, 'myDBjDwd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mike_testing', NULL, NULL), + (748, 'mikey_testing', NULL, NULL, NULL, '4DnM363m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'mikey_testing', NULL, NULL), + (749, 'Milklin_testing', NULL, NULL, NULL, 'dJQGxOb4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Milklin_testing', NULL, NULL), + (750, 'Miller5622_testing', NULL, NULL, NULL, 'ndlEEEYm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Miller5622_testing', NULL, NULL), + (751, 'Mils_testing', NULL, NULL, NULL, 'NmLj55J4', '76561197989682469', NULL, 'Mils2327', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mils_testing', NULL, NULL), + (752, 'MinuteMan_testing', NULL, NULL, NULL, 'mRB33Eom', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MinuteMan_testing', NULL, NULL), + (753, 'Mithrandir_testing', NULL, NULL, NULL, '2d2GZj9m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mithrandir_testing', NULL, NULL), + (754, 'M.Jackal_testing', NULL, NULL, NULL, '4v6OQZN4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'M.Jackal_testing', NULL, NULL), + (755, 'mjjay_testing', NULL, NULL, NULL, 'mj62BqVm', '76561198198360453', NULL, 'mjay', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'mjjay_testing', NULL, NULL), + (756, 'Mlobb5920_testing', NULL, NULL, NULL, 'm7zeYEed', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mlobb5920_testing', NULL, NULL), + (757, 'tboltz_testing', NULL, NULL, NULL, 'R40Q9Ybd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'tboltz_testing', NULL, NULL), + (758, 'Mobius_testing', NULL, NULL, NULL, '4oMYJDvm', '76561198093929086', NULL, 'Mobius', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mobius_testing', NULL, NULL), + (759, 'MocKX_testing', NULL, NULL, NULL, 'kdK0aaBm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MocKX_testing', NULL, NULL), + (760, 'Mohammed_testing', NULL, NULL, NULL, 'd3YjJxzA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mohammed_testing', NULL, NULL), + (761, 'Molder_testing', NULL, NULL, NULL, 'Md3N3XD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Molder_testing', NULL, NULL), + (762, 'Monarch_testing', NULL, NULL, NULL, 'ndaRrKpm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Monarch_testing', NULL, NULL), + (763, 'MoneyMan_testing', NULL, NULL, NULL, '6AX5WDz4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MoneyMan_testing', NULL, NULL), + (764, 'monke_testing', NULL, NULL, NULL, '4olXe3od', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'monke_testing', NULL, NULL), + (765, 'Moodyx_testing', NULL, NULL, NULL, 'ndlkJ8b4', '76561198041849544', NULL, 'Moodyx', '124701124300242944', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Moodyx_testing', NULL, NULL), + (766, 'MoopyPlays_testing', NULL, NULL, NULL, 'dN9zVk74', NULL, NULL, NULL, '478417495431053312', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MoopyPlays_testing', NULL, NULL), + (767, 'Moosedog_testing', NULL, NULL, NULL, 'bdzxzqbA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Moosedog_testing', NULL, NULL), + (768, 'Mortuus_testing', NULL, NULL, NULL, '1Are5NBm', NULL, NULL, NULL, '144973796812521474', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mortuus_testing', NULL, NULL), + (769, 'Mountain_testing', NULL, NULL, NULL, 'ArBjWNBA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mountain_testing', NULL, NULL), + (770, 'MoveZeeChains_testing', NULL, NULL, NULL, 'Lmp0DO9m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MoveZeeChains_testing', NULL, NULL), + (771, 'Mr. Burke_testing', NULL, NULL, NULL, 'mjnM7DJm', NULL, NULL, NULL, '210895222253551617', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mr. Burke_testing', NULL, NULL), + (772, 'Mr. Engineer_testing', NULL, NULL, NULL, 'dOWbaDnd', '76561198319642148', NULL, 'Mr. Engineer', '634442860531417118', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mr. Engineer_testing', NULL, NULL), + (773, 'Mr_Hghwy_testing', NULL, NULL, NULL, 'AXjwyzQd', NULL, NULL, NULL, '749512342982623272', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mr_Hghwy_testing', NULL, NULL), + (774, 'Mr_Magnanimous_testing', NULL, NULL, NULL, 'ArgX9Rn4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mr_Magnanimous_testing', NULL, NULL), + (775, 'MrSelfDestruct_testing', NULL, NULL, NULL, '54kjyNlA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MrSelfDestruct_testing', NULL, NULL), + (776, 'M.Skaalid_testing', NULL, NULL, NULL, 'dODVOKym', '76561198312471203', NULL, 'mushroomwater', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'M.Skaalid_testing', NULL, NULL), + (777, 'mudskipper_testing', NULL, NULL, NULL, 'AnaKYpkm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'mudskipper_testing', NULL, NULL), + (778, 'Muffin_testing', NULL, NULL, NULL, '54kpKPNd', NULL, NULL, NULL, '189906966196387841', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Muffin_testing', NULL, NULL), + (779, 'Muffins_testing', NULL, NULL, NULL, 'w4W5L2qm', '76561198046216435', NULL, 'Darthmuffins', '195764351024496640', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Muffins_testing', NULL, NULL), + (780, 'mugatss_testing', NULL, NULL, NULL, '403p8qbA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'mugatss_testing', NULL, NULL), + (781, 'Mute_testing', NULL, NULL, NULL, 'd8bw0GBA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Mute_testing', NULL, NULL), + (782, 'myka1405_testing', NULL, NULL, NULL, 'dOO121nd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'myka1405_testing', NULL, NULL), + (783, 'Nate Garcia_testing', NULL, NULL, NULL, 'mjnw1xJm', '76561198302727995', NULL, 'Mr.Nate', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nate Garcia_testing', NULL, NULL), + (784, 'Naz_testing', NULL, NULL, NULL, 'AYgYJ9Rd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Naz_testing', NULL, NULL), + (785, 'Neifer_testing', NULL, NULL, NULL, 'dKPMLzem', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Neifer_testing', NULL, NULL), + (786, 'NEO_testing', NULL, NULL, NULL, 'dVBkwjqd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'NEO_testing', NULL, NULL), + (787, 'Neorim_testing', NULL, NULL, NULL, '4vrBGVb4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Neorim_testing', NULL, NULL), + (788, 'nerdyxen_testing', NULL, NULL, NULL, 'daOLN7ZA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'nerdyxen_testing', NULL, NULL), + (789, 'nerfgunner24_testing', NULL, NULL, NULL, 'bdzpw7VA', NULL, NULL, 'nerfgunner24', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'nerfgunner24_testing', NULL, NULL), + (790, 'Nero_testing', NULL, NULL, NULL, 'd3R7WbD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nero_testing', NULL, NULL), + (791, 'Nessle_testing', NULL, NULL, NULL, 'dljLEeBA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nessle_testing', NULL, NULL), + (792, 'nevertryty_testing', NULL, NULL, NULL, 'VmMVyWbA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'nevertryty_testing', NULL, NULL), + (793, 'Newberry_testing', NULL, NULL, NULL, 'mb1JLe6d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Newberry_testing', NULL, NULL), + (794, 'Newboots_testing', NULL, NULL, NULL, '4090MrKd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Newboots_testing', NULL, NULL), + (795, 'MustachedNewt79_testing', NULL, NULL, NULL, 'nda9aXVd', '76561198444486008', NULL, 'MustachedNewt79', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'MustachedNewt79_testing', NULL, NULL), + (796, 'nezz_testing', NULL, NULL, NULL, 'AXBe2ZZd', '76561199126039849', NULL, 'NEZZ', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'nezz_testing', NULL, NULL), + (797, 'Nick_testing', NULL, NULL, NULL, 'dxMQYVOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nick_testing', NULL, NULL), + (798, 'NightHawk_testing', NULL, NULL, NULL, '41o5LVRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'NightHawk_testing', NULL, NULL), + (799, 'Nightmare18_testing', NULL, NULL, NULL, 'mb2lygEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nightmare18_testing', NULL, NULL), + (800, 'Nightmare2tuRnt_testing', NULL, NULL, NULL, 'dxK3Op24', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nightmare2tuRnt_testing', NULL, NULL), + (801, 'Nightrader_testing', NULL, NULL, NULL, 'oAgeoZMd', '76561198027996462', NULL, 'Nightrader', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nightrader_testing', NULL, NULL), + (802, 'Niklaus_testing', NULL, NULL, NULL, 'mMp5NZYd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Niklaus_testing', NULL, NULL), + (803, 'Ninja Crab_testing', NULL, NULL, NULL, 'dxDr08wd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ninja Crab_testing', NULL, NULL), + (804, 'Ninjaslappe_testing', NULL, NULL, NULL, 'o4PyBMnd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ninjaslappe_testing', NULL, NULL), + (805, 'Nixeen_testing', NULL, NULL, NULL, '841XajMA', NULL, NULL, NULL, '152253612289032192', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nixeen_testing', NULL, NULL), + (806, 'Nodine_testing', NULL, NULL, NULL, 'rdOJWoP4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nodine_testing', NULL, NULL), + (807, 'Nomad_testing', NULL, NULL, NULL, 'd9oGkMpA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nomad_testing', NULL, NULL), + (808, 'Nostra_testing', NULL, NULL, NULL, 'dKZnkrY4', '76561198066125980', NULL, 'BizmoTheWizmo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nostra_testing', NULL, NULL), + (809, 'Not_Jacob_testing', NULL, NULL, NULL, '1ArjK9lA', '76561198382493821', NULL, 'Not-Jacob', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Not_Jacob_testing', NULL, NULL), + (810, 'NotZane_testing', NULL, NULL, NULL, 'dx6OrX1A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'NotZane_testing', NULL, NULL), + (811, 'Nvth1s_testing', NULL, NULL, NULL, 'nda5rLnd', NULL, NULL, NULL, '971814541103071323', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nvth1s_testing', NULL, NULL), + (812, 'Nylons_testing', NULL, NULL, NULL, 'w4WkZoP4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Nylons_testing', NULL, NULL), + (813, 'nYn__testing', NULL, NULL, NULL, 'lAe9LlzA', NULL, NULL, NULL, '137874373661949952', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'nYn__testing', NULL, NULL), + (814, 'Oak_testing', NULL, NULL, NULL, 'oAQyv3LA', NULL, NULL, NULL, '307612051113639946', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Oak_testing', NULL, NULL), + (815, 'Obelisk_testing', NULL, NULL, NULL, 'dVD9ygpA', NULL, NULL, NULL, '266050505023684608', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Obelisk_testing', NULL, NULL), + (816, 'Off-Brand_testing', NULL, NULL, NULL, 'pmb61Q6m', NULL, NULL, 'Off-brand', '120638272916422659', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Off-Brand_testing', NULL, NULL), + (817, 'OldCraig_testing', NULL, NULL, NULL, '4oMY95Mm', NULL, NULL, NULL, '376928523488854016', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'OldCraig_testing', NULL, NULL), + (818, 'OMBRE_testing', NULL, NULL, NULL, 'GmjMOQbd', '76561198205169681', NULL, 'OMBRE', '526271034241056769', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'OMBRE_testing', NULL, NULL), + (819, 'Omni_testing', NULL, NULL, NULL, 'daPe9lp4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Omni_testing', NULL, NULL), + (820, 'macy00518_testing', NULL, NULL, NULL, 'Arxk10Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'macy00518_testing', NULL, NULL), + (821, 'OperatorAbsolut_testing', NULL, NULL, NULL, 'rdOKrVEd', '76561198100590875', NULL, 'Adrian A.', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'OperatorAbsolut_testing', NULL, NULL), + (822, 'Origin_storm_testing', NULL, NULL, NULL, 'AgxeLXR4', '76561198851008068', NULL, 'Origin_Storm', '652235691433918497', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Origin_storm_testing', NULL, NULL), + (823, 'Orion_testing', NULL, NULL, NULL, 'mRQYOzYd', '76561198281046743', NULL, 'Orion', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Orion_testing', NULL, NULL), + (824, 'ORPsymon_testing', NULL, NULL, NULL, '2d28Q65A', '76561198275568382', NULL, 'Orpsymon', '332921972621180938', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ORPsymon_testing', NULL, NULL), + (825, 'BartholomewjJames_testing', NULL, NULL, NULL, 'Arnl9YnA', NULL, NULL, NULL, '1279428531499307040', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BartholomewjJames_testing', NULL, NULL), + (826, 'Otter Freedom_testing', NULL, NULL, NULL, 'dxPJ3y1d', NULL, NULL, NULL, '265173303105290252', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Otter Freedom_testing', NULL, NULL), + (827, 'Page_testing', NULL, NULL, NULL, 'dBLQEWPA', NULL, NULL, NULL, '358336065570078730', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Page_testing', NULL, NULL), + (828, 'Pancho_sebs_testing', NULL, NULL, NULL, 'mLDJpvJm', NULL, NULL, NULL, '262118137682460673', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pancho_sebs_testing', NULL, NULL), + (829, 'Pao_testing', NULL, NULL, NULL, 'Vmyl5z1d', '76561198095917590', NULL, 'Jpao', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pao_testing', NULL, NULL), + (830, 'PapaBless_testing', NULL, NULL, NULL, 'AXZDx1Zd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PapaBless_testing', NULL, NULL), + (831, 'papapeahead_testing', NULL, NULL, NULL, '54kwV8z4', '76561198084170207', NULL, 'papapeahead', '233664443941126154', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'papapeahead_testing', NULL, NULL), + (832, 'Papa Pendejo_testing', NULL, NULL, NULL, '8mRbE7Em', NULL, NULL, 'Papa Pendejo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Papa Pendejo_testing', NULL, NULL), + (833, 'Papi_testing', NULL, NULL, NULL, 'dKRoqz54', '76561198090421700', NULL, 'VoidPapi', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Papi_testing', NULL, NULL), + (834, 'Paranoid Dude_testing', NULL, NULL, NULL, 'd8DojRNd', NULL, NULL, NULL, '87608770623975424', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Paranoid Dude_testing', NULL, NULL), + (835, 'ParsecTV_testing', NULL, NULL, NULL, 'xAY89qnm', '76561198317394086', NULL, 'parsectv', '177874580268908544', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ParsecTV_testing', NULL, NULL), + (836, 'paulki_testing', NULL, NULL, NULL, 'NmLq3RgA', '76561198341781541', NULL, 'theppaulki', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'paulki_testing', NULL, NULL), + (837, 'PawelTriceps_testing', NULL, NULL, NULL, 'dKRvyp54', '76561198030778004', NULL, 'PawelTriceps', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PawelTriceps_testing', NULL, NULL), + (838, 'Peacekeeper_testing', NULL, NULL, NULL, 'lAekNrPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Peacekeeper_testing', NULL, NULL), + (839, 'Pearly_testing', NULL, NULL, NULL, 'AY2jJ9W4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pearly_testing', NULL, NULL), + (840, 'Pedano_testing', NULL, NULL, NULL, 'AgxWpzq4', '76561198830130893', NULL, 'Wavey', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pedano_testing', NULL, NULL), + (841, 'Peebird_XL_testing', NULL, NULL, NULL, 'd5jREKOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Peebird_XL_testing', NULL, NULL), + (842, 'perhaps_testing', NULL, NULL, NULL, 'ndlplxld', '76561198278363091', NULL, 'acidjazz', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'perhaps_testing', NULL, NULL), + (843, 'PetrolDrinker_testing', NULL, NULL, NULL, 'AgkZVeMA', '76561198281763775', NULL, 'hi im a guy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PetrolDrinker_testing', NULL, NULL), + (844, 'PFC Crocker_testing', NULL, NULL, NULL, 'd8Go37v4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PFC Crocker_testing', NULL, NULL), + (845, 'Phil-101321_testing', NULL, NULL, NULL, '4ojJnrZA', '76561198147639182', NULL, 'Irphil47', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Phil-101321_testing', NULL, NULL), + (846, 'philtaculous_testing', NULL, NULL, NULL, 'mq1VBn1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'philtaculous_testing', NULL, NULL), + (847, 'pickle_wit_a_gun_testing', NULL, NULL, NULL, '841kEKMm', '76561198372008567', NULL, '2019 Toyota Camry', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'pickle_wit_a_gun_testing', NULL, NULL), + (848, 'pickle zay_testing', NULL, NULL, NULL, 'm7Qjkb54', '76561198280179320', NULL, 'pickle zay', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'pickle zay_testing', NULL, NULL), + (849, 'Piggy_testing', NULL, NULL, NULL, 'd56WXgrm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Piggy_testing', NULL, NULL), + (850, 'Pilotfreak_testing', NULL, NULL, NULL, '1ArjgwZA', '76561198151373583', NULL, 'Pilotfreak', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pilotfreak_testing', NULL, NULL), + (851, 'Pixy_testing', NULL, NULL, NULL, '4vjVNj14', NULL, NULL, NULL, '326659778019590146', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pixy_testing', NULL, NULL), + (852, 'plasticxplosiv_testing', NULL, NULL, NULL, 'x4oRDGnA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'plasticxplosiv_testing', NULL, NULL), + (853, 'Platapus_testing', NULL, NULL, NULL, '4oxGnYMd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Platapus_testing', NULL, NULL), + (854, 'Plombo_testing', NULL, NULL, NULL, 'Pm7o7GYm', '76561198019545113', NULL, 'Plombo', '301138194395824128', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Plombo_testing', NULL, NULL), + (855, 'plutoc39_testing', NULL, NULL, NULL, 'dKOv1DBd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'plutoc39_testing', NULL, NULL), + (856, 'PocketsTheWizard_testing', NULL, NULL, NULL, 'daJp8Epm', NULL, NULL, NULL, '96747451754508288', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PocketsTheWizard_testing', NULL, NULL), + (857, 'Pogfish_testing', NULL, NULL, NULL, 'AgPbGry4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pogfish_testing', NULL, NULL), + (858, 'Poi!_testing', NULL, NULL, NULL, 'xAYLkKRm', NULL, NULL, NULL, '205321959402242048', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Poi!_testing', NULL, NULL), + (859, 'Polo_testing', NULL, NULL, NULL, '41YKlP84', NULL, NULL, NULL, '344618781466951683', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Polo_testing', NULL, NULL), + (860, 'PopeFrancis_testing', NULL, NULL, NULL, 'VdxBlnXA', '76561198040223161', NULL, 'PopeFrancis', '462543298268102657', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PopeFrancis_testing', NULL, NULL), + (861, 'porkupine.exe_testing', NULL, NULL, NULL, 'd9nJYMem', NULL, NULL, NULL, '187336123180253187', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'porkupine.exe_testing', NULL, NULL), + (862, 'Post Malone_testing', NULL, NULL, NULL, '4DQwr0yd', '76561199143721037', NULL, 'Post Malone', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Post Malone_testing', NULL, NULL), + (863, 'Praetorian Guard_testing', NULL, NULL, NULL, '4ZkjEErd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Praetorian Guard_testing', NULL, NULL), + (864, 'Prestige_testing', NULL, NULL, NULL, 'rdOeYxEA', '76561198841097467', NULL, 'Prestige Xronize', '169215000135729152', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Prestige_testing', NULL, NULL), + (865, 'PricyJethro_testing', NULL, NULL, NULL, '4EKjz8Zm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PricyJethro_testing', NULL, NULL), + (866, 'priest_testing', NULL, NULL, NULL, 'd9oEzweA', NULL, NULL, NULL, '835936978699550771', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'priest_testing', NULL, NULL), + (867, 'privateagent9090_testing', NULL, NULL, NULL, '4DMQRx3d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'privateagent9090_testing', NULL, NULL), + (868, 'Private Doggy_testing', NULL, NULL, NULL, 'Pm72e15d', '76561198984803187', NULL, 'Doggy907', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Private Doggy_testing', NULL, NULL), + (869, 'privatekitty_testing', NULL, NULL, NULL, 'mpQ6axqA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'privatekitty_testing', NULL, NULL), + (870, 'Proxy_testing', NULL, NULL, NULL, 'daDEYVl4', NULL, NULL, NULL, '218945885638230016', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Proxy_testing', NULL, NULL), + (871, 'Pubz_testing', NULL, NULL, NULL, 'mbZ6E6zm', '76561198185137767', NULL, 'L l Pubz', '335733913559498753', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pubz_testing', NULL, NULL), + (872, 'Puma1335_testing', NULL, NULL, NULL, '406g6vRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Puma1335_testing', NULL, NULL), + (873, 'Puriadark_testing', NULL, NULL, NULL, 'Lmp0wDWm', '76561198002918180', NULL, 'Puriadark', '174698956662505472', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Puriadark_testing', NULL, NULL), + (874, 'PVT.Bee_testing', NULL, NULL, NULL, 'xd9ZbRym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PVT.Bee_testing', NULL, NULL), + (875, 'PVT D. Rad_testing', NULL, NULL, NULL, 'ZdNeWDo4', '76561198349962356', NULL, 'RadicalD', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PVT D. Rad_testing', NULL, NULL), + (876, 'PVT Jalopy_testing', NULL, NULL, NULL, 'ndaKkoVA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'PVT Jalopy_testing', NULL, NULL), + (877, 'Pvt. Mclovin_testing', NULL, NULL, NULL, '4oo036Z4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pvt. Mclovin_testing', NULL, NULL), + (878, 'Pvt. Tomee762_testing', NULL, NULL, NULL, 'ArxK7R8d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Pvt. Tomee762_testing', NULL, NULL), + (879, 'QuickElo_testing', NULL, NULL, NULL, 'o4PZQEGm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'QuickElo_testing', NULL, NULL), + (880, 'Ragdoll_testing', NULL, NULL, NULL, 'myD7bnWd', NULL, NULL, NULL, '744428217561251880', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ragdoll_testing', NULL, NULL), + (881, 'Raider_testing', NULL, NULL, NULL, 'd8V7NJvA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Raider_testing', NULL, NULL), + (882, 'Rain_testing', NULL, NULL, NULL, 'kdK0nLZm', '76561198154705579', NULL, 'Rain', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rain_testing', NULL, NULL), + (883, 'Rainbow_testing', NULL, NULL, NULL, 'mbZOZKEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rainbow_testing', NULL, NULL), + (884, 'raleighdb_testing', NULL, NULL, NULL, '64vwwwkd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'raleighdb_testing', NULL, NULL), + (885, 'Rammus_testing', NULL, NULL, NULL, 'Ae75vozd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rammus_testing', NULL, NULL), + (886, 'Randy_testing', NULL, NULL, NULL, 'VmM2No9A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Randy_testing', NULL, NULL), + (887, 'RangerDanger_testing', NULL, NULL, NULL, 'bdzyrkL4', '76561198022897318', NULL, 'Ranger Danger', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'RangerDanger_testing', NULL, NULL), + (915, 'RangerSix_testing', NULL, NULL, NULL, '6AXQDZ64', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'RangerSix_testing', NULL, NULL), + (916, 'Rasphorian_testing', NULL, NULL, NULL, 'amGX6NqA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rasphorian_testing', NULL, NULL), + (917, 'Rat_testing', NULL, NULL, NULL, 'dJQn8Wq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rat_testing', NULL, NULL), + (918, 'Raven367_testing', NULL, NULL, NULL, '4WBMYObA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Raven367_testing', NULL, NULL), + (919, 'R&D_testing', NULL, NULL, NULL, 'dlnBLwYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'R&D_testing', NULL, NULL), + (920, 'Reaper_testing', NULL, NULL, NULL, '6AXqWOQ4', NULL, NULL, 'cqc_reaper', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Reaper_testing', NULL, NULL), + (921, 'RecyclingWizard_testing', NULL, NULL, NULL, '41olEapm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'RecyclingWizard_testing', NULL, NULL), + (922, 'RedFist13F_testing', NULL, NULL, NULL, 'pmbxKLg4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'RedFist13F_testing', NULL, NULL), + (923, 'redrabbit_testing', NULL, NULL, NULL, 'dOj68D54', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'redrabbit_testing', NULL, NULL), + (924, 'Relic_testing', NULL, NULL, NULL, 'mq1pqQXm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Relic_testing', NULL, NULL), + (925, 'Remonade_testing', NULL, NULL, NULL, 'x4oNZgGA', NULL, NULL, NULL, '236611595629756417', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Remonade_testing', NULL, NULL), + (926, 'Ressedue_testing', NULL, NULL, NULL, 'v4DLM6o4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ressedue_testing', NULL, NULL), + (927, 'Retro_testing', NULL, NULL, NULL, '4PPRXBG4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Retro_testing', NULL, NULL), + (928, 'Retroark_testing', NULL, NULL, NULL, '8412WDwd', '76561198027123215', NULL, 'Retroark', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Retroark_testing', NULL, NULL), + (929, 'Reveem_testing', NULL, NULL, NULL, 'dKRvvVZ4', '76561198198593957', NULL, 'Reveem', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Reveem_testing', NULL, NULL), + (930, 'Rexiford_testing', NULL, NULL, NULL, 'mLDJDMJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rexiford_testing', NULL, NULL), + (931, 'ReXyHolt_testing', NULL, NULL, NULL, 'ndlwGx54', NULL, NULL, 'ReXy', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ReXyHolt_testing', NULL, NULL), + (932, 'Rhenium_testing', NULL, NULL, NULL, 'GmjeNObd', NULL, NULL, NULL, '161247315670073344', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rhenium_testing', NULL, NULL), + (933, 'rhy94_testing', NULL, NULL, NULL, 'mR695gEm', NULL, NULL, NULL, '654112136972206101', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'rhy94_testing', NULL, NULL), + (934, 'Ripper_testing', NULL, NULL, NULL, 'dlO2Qkl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ripper_testing', NULL, NULL), + (935, 'Risky_testing', NULL, NULL, NULL, '41WP2Vbm', '76561199013529488', NULL, 'Risky', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Risky_testing', NULL, NULL), + (936, 'RiZ_testing', NULL, NULL, NULL, 'R40XbQV4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'RiZ_testing', NULL, NULL), + (937, 'R. Nohara_testing', NULL, NULL, NULL, 'd2jMg0Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'R. Nohara_testing', NULL, NULL), + (938, 'Robo_testing', NULL, NULL, NULL, '403vyByA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Robo_testing', NULL, NULL), + (939, 'Ronin_testing', NULL, NULL, NULL, 'dODObNWm', '76561199122663957', NULL, 'Reidan', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ronin_testing', NULL, NULL), + (940, 'Rose_testing', NULL, NULL, NULL, 'An2RlrXA', '76561198260256368', NULL, 'DeadRoses', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rose_testing', NULL, NULL), + (941, 'Rosey_testing', NULL, NULL, NULL, 'd9nJKGqm', NULL, NULL, NULL, '870469196478304287', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rosey_testing', NULL, NULL), + (942, 'Ross_testing', NULL, NULL, NULL, 'dVBkpPrd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ross_testing', NULL, NULL), + (943, 'Rozzi_testing', NULL, NULL, NULL, '4v8oWW5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rozzi_testing', NULL, NULL), + (944, 'R. Salami_testing', NULL, NULL, NULL, 'AeBNK1W4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'R. Salami_testing', NULL, NULL), + (945, 'Rugged_testing', NULL, NULL, NULL, 'd9LbGPg4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rugged_testing', NULL, NULL), + (946, 'N_O_T_A_C_E__testing', NULL, NULL, NULL, 'm6obYezA', NULL, NULL, NULL, '303124145552621568', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'N_O_T_A_C_E__testing', NULL, NULL), + (947, 'Ryan10151999_testing', NULL, NULL, NULL, 'xd9VKoJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ryan10151999_testing', NULL, NULL), + (948, 'Rybo_testing', NULL, NULL, NULL, 'kdKrxDe4', NULL, NULL, NULL, '561586495907954709', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Rybo_testing', NULL, NULL), + (949, 'RyderFromGTASA_testing', NULL, NULL, NULL, 'pmbkZ0RA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'RyderFromGTASA_testing', NULL, NULL), + (950, 'RyToastee_testing', NULL, NULL, NULL, 'Aen0O0j4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'RyToastee_testing', NULL, NULL), + (951, 'Sadert_testing', NULL, NULL, NULL, 'dlOnPVX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sadert_testing', NULL, NULL), + (952, 'SailorJerrys_testing', NULL, NULL, NULL, 'Pm7QVLP4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SailorJerrys_testing', NULL, NULL), + (953, 'Saint_testing', NULL, NULL, NULL, '4ZkLvKWd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Saint_testing', NULL, NULL), + (954, 'Saint Pablo_testing', NULL, NULL, NULL, 'dzO27l1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Saint Pablo_testing', NULL, NULL), + (955, 'Salami_testing', NULL, NULL, NULL, '4ZkENLLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Salami_testing', NULL, NULL), + (956, 'Salty_Sawyer_testing', NULL, NULL, NULL, 'm6YlDZRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Salty_Sawyer_testing', NULL, NULL), + (957, 'SanShine_testing', NULL, NULL, NULL, '4vEyyVkA', NULL, NULL, NULL, '247896784280485891', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SanShine_testing', NULL, NULL), + (958, 'Sargent Schultz_testing', NULL, NULL, NULL, '4EQLVPn4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sargent Schultz_testing', NULL, NULL), + (959, 'Sashka_testing', NULL, NULL, NULL, 'mLzPbxy4', '76561198040524850', NULL, 'Sashka-サシュカ', '328323877530894336', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sashka_testing', NULL, NULL), + (960, 'Sassy_testing', NULL, NULL, NULL, '4ZgwX0Xd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sassy_testing', NULL, NULL), + (961, 'Satch_testing', NULL, NULL, NULL, 'myDlkJgd', NULL, NULL, NULL, '343751280965189634', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Satch_testing', NULL, NULL), + (962, 'Saucey5321_testing', NULL, NULL, NULL, '2d2EloM4', '76561198799012414', NULL, 'Saucey5321', '430688879704801331', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Saucey5321_testing', NULL, NULL), + (963, 'Saving Private Le_testing', NULL, NULL, NULL, '4WP72Xjd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Saving Private Le_testing', NULL, NULL), + (964, 'Sawgunner17_testing', NULL, NULL, NULL, 'dVgJGDrm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sawgunner17_testing', NULL, NULL), + (965, 'SBesty_testing', NULL, NULL, NULL, '4DYbJZLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SBesty_testing', NULL, NULL), + (966, 'Schneemann_testing', NULL, NULL, NULL, '0mqjJWlA', NULL, NULL, NULL, '164888077557432321', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Schneemann_testing', NULL, NULL), + (967, 'Scooter_testing', NULL, NULL, NULL, 'd2OXVO8m', NULL, NULL, NULL, '659291877178343425', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Scooter_testing', NULL, NULL), + (968, 'Scorby Dao_testing', NULL, NULL, NULL, 'oAgeGNqd', '76561198083936408', NULL, 'Scorby Dao', '195661475744972800', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Scorby Dao_testing', NULL, NULL), + (969, 'Scottish_testing', NULL, NULL, NULL, '4orbn6JA', NULL, NULL, NULL, '189197730734800896', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Scottish_testing', NULL, NULL), + (970, 'Scribs_testing', NULL, NULL, NULL, '41WD6j8m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Scribs_testing', NULL, NULL), + (971, 'Scruff - LEGACY ACCOUNT_testing', NULL, NULL, NULL, 'ArQK5rBm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Scruff - LEGACY ACCOUNT_testing', NULL, NULL), + (972, 'Scuba_testing', NULL, NULL, NULL, 'dODKNwym', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Scuba_testing', NULL, NULL), + (973, 'Sea_testing', NULL, NULL, NULL, 'dODnKK5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sea_testing', NULL, NULL), + (974, 'sean97T_testing', NULL, NULL, NULL, 'AX2M2Jvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'sean97T_testing', NULL, NULL), + (975, 'Seanman122_testing', NULL, NULL, NULL, 'd2rggqVd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Seanman122_testing', NULL, NULL), + (976, 'Seb_testing', NULL, NULL, NULL, 'AXZ9NBZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Seb_testing', NULL, NULL), + (977, 'Sentinal_testing', NULL, NULL, NULL, '4E2rVMZd', NULL, NULL, NULL, '428659870837899265', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sentinal_testing', NULL, NULL), + (978, 'SeriousSam557_testing', NULL, NULL, NULL, 'GAneQwbm', NULL, NULL, 'SeriousSam557', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SeriousSam557_testing', NULL, NULL), + (979, 'SGTxSnuggles_testing', NULL, NULL, NULL, '4oMXO5Ym', NULL, NULL, NULL, '521062653574119427', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SGTxSnuggles_testing', NULL, NULL), + (980, 'Shadow_testing', NULL, NULL, NULL, 'mLzGroL4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Shadow_testing', NULL, NULL), + (981, 'Shampoo N Rinse_testing', NULL, NULL, NULL, 'mGMb37P4', '76561198414369676', NULL, 'Shampoo N Rinse', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Shampoo N Rinse_testing', NULL, NULL), + (982, 'Sheep_testing', NULL, NULL, NULL, '4PNaOJZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sheep_testing', NULL, NULL), + (983, 'Shelton R._testing', NULL, NULL, NULL, 'kdKXPlam', '76561198103035752', NULL, 'Hector S.', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Shelton R._testing', NULL, NULL), + (984, 'Shepard3B_testing', NULL, NULL, NULL, 'oAgLn6V4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Shepard3B_testing', NULL, NULL), + (985, 'Sheppard_testing', NULL, NULL, NULL, 'ndloDNY4', NULL, NULL, NULL, '214814368762691584', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sheppard_testing', NULL, NULL), + (986, 'Shmokey_testing', NULL, NULL, NULL, 'm6ok8yzA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Shmokey_testing', NULL, NULL), + (987, 'Show Time_testing', NULL, NULL, NULL, 'bdz21yad', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Show Time_testing', NULL, NULL), + (988, 'SidP_testing', NULL, NULL, NULL, 'mbZvVkRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SidP_testing', NULL, NULL), + (989, 'SingleMoms6_testing', NULL, NULL, NULL, 'dO6GO8e4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SingleMoms6_testing', NULL, NULL), + (990, 'Sinstar_testing', NULL, NULL, NULL, 'bdz6r0Ld', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sinstar_testing', NULL, NULL), + (991, 'Sipping_testing', NULL, NULL, NULL, 'pmbxDWz4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sipping_testing', NULL, NULL), + (992, 'Sir_TinkTink_testing', NULL, NULL, NULL, 'NmLaxygA', NULL, NULL, NULL, '301018582924656640', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sir_TinkTink_testing', NULL, NULL), + (993, 'SixFiftySix_testing', NULL, NULL, NULL, 'dw2bPaM4', NULL, NULL, NULL, '256142105724846080', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SixFiftySix_testing', NULL, NULL), + (994, 'Sk8sage_testing', NULL, NULL, NULL, 'ndlzWnwA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sk8sage_testing', NULL, NULL), + (995, 'Skark18_testing', NULL, NULL, NULL, 'm7zEyzMd', '76561198054805078', NULL, 'Skark18', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Skark18_testing', NULL, NULL), + (996, 'skarks_testing', NULL, NULL, NULL, '4ol91zMd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'skarks_testing', NULL, NULL), + (997, 'SKD_testing', NULL, NULL, NULL, 'amGR3Jkd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SKD_testing', NULL, NULL), + (998, 'Skizzy_testing', NULL, NULL, NULL, 'N4EeZ1w4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Skizzy_testing', NULL, NULL), + (999, 'sky_testing', NULL, NULL, NULL, 'd3R6VJ24', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'sky_testing', NULL, NULL), + (1000, 'Slabsyyy_testing', NULL, NULL, NULL, 'mjVOrW5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Slabsyyy_testing', NULL, NULL), + (1001, 'Slandr_testing', NULL, NULL, NULL, 'AgxD25n4', '76561198373461106', NULL, 'Slandr', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Slandr_testing', NULL, NULL), + (1002, 'Slater_testing', NULL, NULL, NULL, '841vvvRd', '76561199135492777', NULL, 'Aru', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Slater_testing', NULL, NULL), + (1003, 'Slay US_testing', NULL, NULL, NULL, 'O4Z5pM9A', '76561198990488549', NULL, 'MocKSlay', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Slay US_testing', NULL, NULL), + (1004, 'Sleepy_testing', NULL, NULL, NULL, 'd90BPKE4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sleepy_testing', NULL, NULL), + (1005, 'Slugs_testing', NULL, NULL, NULL, 'd3V9LjY4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Slugs_testing', NULL, NULL), + (1006, 'Smo_testing', NULL, NULL, NULL, '4WWw56j4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Smo_testing', NULL, NULL), + (1007, 'Smorconomics_testing', NULL, NULL, NULL, 'VmMkrJJ4', '76561197976598311', NULL, 'SMOrconomics', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Smorconomics_testing', NULL, NULL), + (1008, 'S. Myers_testing', NULL, NULL, NULL, 'd81gn6km', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'S. Myers_testing', NULL, NULL), + (1009, 'SneaknysnakE_testing', NULL, NULL, NULL, 'mGOk1anm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SneaknysnakE_testing', NULL, NULL), + (1010, 'Snowfox_testing', NULL, NULL, NULL, 'dKP6GPem', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Snowfox_testing', NULL, NULL), + (1011, 'soarin_testing', NULL, NULL, NULL, 'kdKlG99m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'soarin_testing', NULL, NULL), + (1012, 'SocietalPhalanx_testing', NULL, NULL, NULL, 'dxOr5nD4', '76561198138849538', NULL, 'societalPHALANX', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SocietalPhalanx_testing', NULL, NULL), + (1013, 'Solidify_testing', NULL, NULL, NULL, '41WMnERm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Solidify_testing', NULL, NULL), + (1014, 'Solid Something_testing', NULL, NULL, NULL, 'AXV3GXvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Solid Something_testing', NULL, NULL), + (1015, 'Solisoo_testing', NULL, NULL, NULL, 'daBnr1Dm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Solisoo_testing', NULL, NULL), + (1016, 'Sonny Quinn_testing', NULL, NULL, NULL, 'dwYoWLaA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sonny Quinn_testing', NULL, NULL), + (1017, 'Soogy_testing', NULL, NULL, NULL, 'd9Xg3GX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Soogy_testing', NULL, NULL), + (1018, 'Southerndraw81_testing', NULL, NULL, NULL, 'Gmjwwe0A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Southerndraw81_testing', NULL, NULL), + (1019, 'Spades_testing', NULL, NULL, NULL, 'dxMx6p1m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Spades_testing', NULL, NULL), + (1020, 'spartainman64_testing', NULL, NULL, NULL, '0mq8QOLd', '76561198245754822', NULL, 'spartainman64', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'spartainman64_testing', NULL, NULL), + (1021, 'SPARXLXRD_testing', NULL, NULL, NULL, '41GBnN8m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SPARXLXRD_testing', NULL, NULL), + (1022, 'Spazz_testing', NULL, NULL, NULL, '4oMoxJwm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Spazz_testing', NULL, NULL), + (1023, 'Imightbehum4n_testing', NULL, NULL, NULL, '41WV1yEm', '76561198853319271', NULL, 'Imightbehum4n', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Imightbehum4n_testing', NULL, NULL), + (1024, 'Spectre_testing', NULL, NULL, NULL, 'VmyZvY1A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Spectre_testing', NULL, NULL), + (1025, 'Spek_testing', NULL, NULL, NULL, 'd56zRMOm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Spek_testing', NULL, NULL), + (1026, 'spike100002_testing', NULL, NULL, NULL, '4kRQerLA', '76561198799368459', NULL, 'spike', '408009225126805514', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'spike100002_testing', NULL, NULL), + (1027, 'Spooky_testing', NULL, NULL, NULL, 'N4Er0JRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Spooky_testing', NULL, NULL), + (1028, 'squiffy_testing', NULL, NULL, NULL, 'd8b7vrVA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'squiffy_testing', NULL, NULL), + (1029, 'Stanio15_testing', NULL, NULL, NULL, 'R40yKWEd', '76561197998519320', NULL, 'Stanio15', '260223532129058818', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Stanio15_testing', NULL, NULL), + (1030, 'Star-Casm_testing', NULL, NULL, NULL, 'mbqWlw6d', NULL, NULL, NULL, '393262606636285952', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Star-Casm_testing', NULL, NULL), + (1031, 'StarTeller_testing', NULL, NULL, NULL, 'NmLjz6g4', NULL, NULL, NULL, '727994351065497732', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'StarTeller_testing', NULL, NULL), + (1032, 'Steph_testing', NULL, NULL, NULL, 'd2wKPkZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Steph_testing', NULL, NULL), + (1033, 'sterlingtrombone_testing', NULL, NULL, NULL, 'dJNwVJ6d', NULL, NULL, NULL, '716104990502158346', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'sterlingtrombone_testing', NULL, NULL), + (1034, 'stev_testing', NULL, NULL, NULL, '4v8qbebm', NULL, NULL, NULL, '138394765145145344', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'stev_testing', NULL, NULL), + (1035, 'Steve \'Killjoy\'_testing', NULL, NULL, NULL, '41oPGr8m', NULL, NULL, NULL, '338170417506287616', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Steve \'Killjoy\'_testing', NULL, NULL), + (1036, 'Stilgar_testing', NULL, NULL, NULL, 'mbZNWRzm', '76561198076519461', NULL, 'Stilgar', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Stilgar_testing', NULL, NULL), + (1037, 'Stingray_84041_testing', NULL, NULL, NULL, '4Pz0ORvm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Stingray_84041_testing', NULL, NULL), + (1038, 'stinkynoodle_testing', NULL, NULL, NULL, 'm6Yj0JQd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'stinkynoodle_testing', NULL, NULL), + (1039, 'stoner_testing', NULL, NULL, NULL, '4EQlP9n4', NULL, NULL, NULL, '375650465486209044', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'stoner_testing', NULL, NULL), + (1040, 'Stormruler_testing', NULL, NULL, NULL, '4kRMMjwA', '76561198020074124', NULL, 'Ainsley, Lord of Oil', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Stormruler_testing', NULL, NULL), + (1041, 'Stredman_testing', NULL, NULL, NULL, '4oOZWZJ4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Stredman_testing', NULL, NULL), + (1042, 'Street_testing', NULL, NULL, NULL, 'ndaxNQp4', '76561198253755489', NULL, 'street', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Street_testing', NULL, NULL), + (1043, 'Strider_testing', NULL, NULL, NULL, 'm6YW7Eqd', '76561198051430084', NULL, 'Strider', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Strider_testing', NULL, NULL), + (1044, 'Strikerzero_testing', NULL, NULL, NULL, 'pmbMYjgd', '76561198175348294', NULL, 'Strikezer0', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Strikerzero_testing', NULL, NULL), + (1045, 'StrngCheze_testing', NULL, NULL, NULL, 'd5j1rN5m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'StrngCheze_testing', NULL, NULL), + (1046, 'Stu_testing', NULL, NULL, NULL, 'mb10vYRd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Stu_testing', NULL, NULL), + (1047, 'Super Eubanks_testing', NULL, NULL, NULL, 'AYRakkR4', '76561198071951723', NULL, 'Super Eubanks', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Super Eubanks_testing', NULL, NULL), + (1048, 'SuperKai44_testing', NULL, NULL, NULL, 'o4Po0QwA', '76561199091960429', NULL, 'SuperKai44', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'SuperKai44_testing', NULL, NULL), + (1049, 'Surreal_testing', NULL, NULL, NULL, 'bdzMMpD4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Surreal_testing', NULL, NULL), + (1050, 'sushistation4_testing', NULL, NULL, NULL, 'AnaYGVYm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'sushistation4_testing', NULL, NULL), + (1051, 'Suu1uu_testing', NULL, NULL, NULL, '4PNL6PZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Suu1uu_testing', NULL, NULL), + (1052, 'Sverne_testing', NULL, NULL, NULL, '8dBNlzvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sverne_testing', NULL, NULL), + (1053, 'swag_testing', NULL, NULL, NULL, 'nda6Q9am', '76561198149980592', NULL, 'Misto', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'swag_testing', NULL, NULL), + (1054, 'swamp_testing', NULL, NULL, NULL, 'AgkYqBrA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'swamp_testing', NULL, NULL), + (1055, 'Switch_testing', NULL, NULL, NULL, 'dzbaOMbd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Switch_testing', NULL, NULL), + (1056, 'S. Wolf_testing', NULL, NULL, NULL, 'd9nPZvEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'S. Wolf_testing', NULL, NULL), + (1057, 'Syender_testing', NULL, NULL, NULL, 'ydwwbMjd', NULL, NULL, NULL, '125714602984996864', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Syender_testing', NULL, NULL), + (1058, 'Sykeen_testing', NULL, NULL, NULL, 'NmLPbEJm', '76561198041387644', NULL, 'Sykeen', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sykeen_testing', NULL, NULL), + (1059, 'Sync_testing', NULL, NULL, NULL, 'xAYxbq9m', '76561198141697028', NULL, 'Koolz', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Sync_testing', NULL, NULL), + (1060, 'T8ter_testing', NULL, NULL, NULL, '8mRlpDQ4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'T8ter_testing', NULL, NULL), + (1061, 'Talon_testing', NULL, NULL, NULL, '4ooDMYw4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Talon_testing', NULL, NULL), + (1062, 'Tanis Atreides_testing', NULL, NULL, NULL, '1ArL9Wwd', '76561197997728193', NULL, 'Tanis Atreides', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tanis Atreides_testing', NULL, NULL), + (1063, 'Tanner H._testing', NULL, NULL, NULL, 'lAe1EMWA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tanner H._testing', NULL, NULL), + (1064, 'Tap_testing', NULL, NULL, NULL, 'N4ErGrDd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tap_testing', NULL, NULL), + (1065, 'Tapia_testing', NULL, NULL, NULL, 'mR6vj3Pm', '76561198246401704', NULL, 'MarksMan', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tapia_testing', NULL, NULL), + (1066, 'Taylor_testing', NULL, NULL, NULL, '0mqwqKX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Taylor_testing', NULL, NULL), + (1067, 'tdotdotdot_testing', NULL, NULL, NULL, 'GAneN0Jm', '76561197994345216', NULL, 'T...', '220365572800512000', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, '{"id":"31813f442e4147cfb0a697362b22de45ea410cc4abbc6ac4a4d8c439cee7af3b","displayName":"t...","username":"tdotdot","name":{"givenName":"t..."}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'tdotdotdot_testing', NULL, '2025-12-29 17:01:46'), + (1068, 'Teal_testing', NULL, NULL, NULL, 'NmLGzPJd', '76561198142825309', NULL, 'Angel', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Teal_testing', NULL, NULL), + (1069, 'TechPriestPratt_testing', NULL, NULL, NULL, 'Ae7VLJOd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TechPriestPratt_testing', NULL, NULL), + (1070, 'Teggs_testing', NULL, NULL, NULL, 'w4WENrEm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Teggs_testing', NULL, NULL), + (1071, 'TEMTEM_testing', NULL, NULL, NULL, 'nm62xD1m', NULL, NULL, NULL, '395601603157032967', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TEMTEM_testing', NULL, NULL), + (1072, 'Tesla_testing', NULL, NULL, NULL, 'ydwD6DMm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tesla_testing', NULL, NULL), + (1073, 'Tex_testing', NULL, NULL, NULL, 'mRoDkloA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tex_testing', NULL, NULL), + (1074, 'Teyl_testing', NULL, NULL, NULL, 'R40OJqVA', '76561197984588232', NULL, 'Teyl', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Teyl_testing', NULL, NULL), + (1075, 'ThatsColin_testing', NULL, NULL, NULL, '8d8DY6Nd', NULL, NULL, NULL, '272066436606853121', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ThatsColin_testing', NULL, NULL), + (1076, 'TheDiscount_testing', NULL, NULL, NULL, 'dzb96lLd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TheDiscount_testing', NULL, NULL), + (1077, 'The Jedi Gamer_testing', NULL, NULL, NULL, '4oMyE8om', NULL, NULL, NULL, '252880903662075904', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'The Jedi Gamer_testing', NULL, NULL), + (1078, 'The_PFlare_testing', NULL, NULL, NULL, 'dBnge3wd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'The_PFlare_testing', NULL, NULL), + (1079, 'ThePlagueHealer_testing', NULL, NULL, NULL, '41qWD0b4', NULL, NULL, NULL, '272568523090558976', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ThePlagueHealer_testing', NULL, NULL), + (1080, 'Theseus_testing', NULL, NULL, NULL, 'd3VYzrO4', '76561198162667081', NULL, 'Myst', '795418979283107880', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Theseus_testing', NULL, NULL), + (1081, 'TheWesternRider_testing', NULL, NULL, NULL, '4oxjazYd', '76561198397538071', NULL, 'thewesternrider44', '429878960386473986', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TheWesternRider_testing', NULL, NULL), + (1082, 'TheWikiFish_testing', NULL, NULL, NULL, 'o4PK2xrA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TheWikiFish_testing', NULL, NULL), + (1083, 'ThomasMrSheep_testing', NULL, NULL, NULL, 'x4o1pKJm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ThomasMrSheep_testing', NULL, NULL), + (1084, 'Thorn_testing', NULL, NULL, NULL, 'mRBbYXYm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Thorn_testing', NULL, NULL), + (1085, 'Thorsell_testing', NULL, NULL, NULL, 'dK3xjJ9d', '76561198010222003', NULL, 'Thorsell', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Thorsell_testing', NULL, NULL), + (1086, 'ThunderKing_testing', NULL, NULL, NULL, 'bdz1vya4', '76561199114664807', NULL, 'ThunderKing', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ThunderKing_testing', NULL, NULL), + (1087, 'tiger_testing', NULL, NULL, NULL, 'VmM1BMQm', '76561199041202728', NULL, 'Jaeger Main', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'tiger_testing', NULL, NULL), + (1088, 'TimmyTheWhale_testing', NULL, NULL, NULL, 'dlK19nw4', '76561198307914666', NULL, 'TimmyTheWhale', '197524422058442753', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TimmyTheWhale_testing', NULL, NULL), + (1089, 'TipsyTactician_testing', NULL, NULL, NULL, 'rdO1gaWA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TipsyTactician_testing', NULL, NULL), + (1090, 'T. Jordon_testing', NULL, NULL, NULL, '406JJWRm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'T. Jordon_testing', NULL, NULL), + (1091, 'TOAD_testing', NULL, NULL, NULL, 'dlk7oNl4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TOAD_testing', NULL, NULL), + (1092, 'Toaninja_testing', NULL, NULL, NULL, '8dB9BjL4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Toaninja_testing', NULL, NULL), + (1093, 'tom44499_testing', NULL, NULL, NULL, 'AYpq90wm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'tom44499_testing', NULL, NULL), + (1094, 'Tommy_10inch_testing', NULL, NULL, NULL, 'Pm7vD5ad', '76561198027152335', NULL, 'Tommy_10inch', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tommy_10inch_testing', NULL, NULL), + (1095, 'TommyBoy_testing', NULL, NULL, NULL, 'mqEnP9lm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TommyBoy_testing', NULL, NULL), + (1096, 'Toscha_testing', NULL, NULL, NULL, '64veN7BA', '76561198058577590', NULL, 'Toscha', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Toscha_testing', NULL, NULL), + (1097, 'tovarish_testing', NULL, NULL, NULL, 'kdKVpzR4', '76561198996290041', NULL, 'TheGoodStalker', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'tovarish_testing', NULL, NULL), + (1098, 'Tree Sprite_testing', NULL, NULL, NULL, 'myDE7GWd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tree Sprite_testing', NULL, NULL), + (1099, 'Tremor41_testing', NULL, NULL, NULL, 'dKZ5lWY4', '76561198079550305', NULL, 'Tremor41', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tremor41_testing', NULL, NULL), + (1100, 'T_rent47_testing', NULL, NULL, NULL, 'GmjoW3aA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'T_rent47_testing', NULL, NULL), + (1101, 'Triskalweiss_testing', NULL, NULL, NULL, 'ArgyLXL4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Triskalweiss_testing', NULL, NULL), + (1102, 'Trogdor_testing', NULL, NULL, NULL, 'Pm7XqnMA', '76561198150355752', NULL, 'Trogdor the Burninator', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Trogdor_testing', NULL, NULL), + (1103, 'Trooper_testing', NULL, NULL, NULL, '8dB5vBw4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Trooper_testing', NULL, NULL), + (1104, 'Turbo District_testing', NULL, NULL, NULL, 'o4PX3ww4', '76561198045413412', NULL, 'Turbo District', '111263331418923008', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, '{"id":"4920786bf97824ba86908cd388f02820d58bb33b991883573f58646ba876b5f0","displayName":"Turbo District","username":"turbodistrict","name":{"givenName":"Turbo District"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'member', 'Turbo District_testing', NULL, '2025-12-31 22:01:23'), + (1105, 'TurtleBread_testing', NULL, NULL, NULL, 'm7GvVXem', NULL, NULL, NULL, '1071994521824542750', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TurtleBread_testing', NULL, NULL), + (1106, 'Tyler_testing', NULL, NULL, NULL, 'dxM7BL2m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Tyler_testing', NULL, NULL), + (1107, 'tysmart_testing', NULL, NULL, NULL, '4PPQNEG4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'tysmart_testing', NULL, NULL), + (1108, 'Uncivilized (UC)_testing', NULL, NULL, NULL, 'VdxRqJDA', NULL, NULL, NULL, '671935733485010974', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Uncivilized (UC)_testing', NULL, NULL), + (1109, 'UnforgivenBoiBen_testing', NULL, NULL, NULL, 'kdK0MoRm', NULL, NULL, NULL, '341681194393534465', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'UnforgivenBoiBen_testing', NULL, NULL), + (1110, 'Unit-Tracker_testing', NULL, NULL, NULL, 'd2wwXVVm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Unit-Tracker_testing', NULL, NULL), + (1111, 'Unkept_testing', NULL, NULL, NULL, 'AeVQQNX4', NULL, NULL, NULL, '210813204476067841', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Unkept_testing', NULL, NULL), + (1112, 'Unsafeknave_testing', NULL, NULL, NULL, 'R40R7wQm', NULL, NULL, NULL, '248436466915475457', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Unsafeknave_testing', NULL, NULL), + (1113, 'UsGunney66_testing', NULL, NULL, NULL, 'daB7qbDm', '76561198131353099', NULL, 'skLer', '472188214678126593', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'UsGunney66_testing', NULL, NULL), + (1114, 'UwU-Nator_testing', NULL, NULL, NULL, 'AYR3ME94', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'UwU-Nator_testing', NULL, NULL), + (1115, 'V1_P3R_testing', NULL, NULL, NULL, 'Lmp0Za2m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'V1_P3R_testing', NULL, NULL), + (1116, 'Valiant_testing', NULL, NULL, NULL, 'rdOa9l5A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Valiant_testing', NULL, NULL), + (1117, 'Vancey_testing', NULL, NULL, NULL, 'Arxb8YZd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vancey_testing', NULL, NULL), + (1118, 'Vecxna13_testing', NULL, NULL, NULL, '4ZElzOLA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vecxna13_testing', NULL, NULL), + (1119, 'Venom.T3H_testing', NULL, NULL, NULL, '841yBBp4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Venom.T3H_testing', NULL, NULL), + (1120, 'Vent_testing', NULL, NULL, NULL, 'nm6bl8qm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vent_testing', NULL, NULL), + (1121, 'Venti_testing', NULL, NULL, NULL, '4vbVvX14', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Venti_testing', NULL, NULL), + (1122, 'Vermin_testing', NULL, NULL, NULL, 'mM9kM09m', '76561198037373308', NULL, 'MercilessManiac', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vermin_testing', NULL, NULL), + (1123, 'VeRo_SGS_testing', NULL, NULL, NULL, 'ArgqoEq4', '76561199197634697', NULL, 'SG.VeRo', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'VeRo_SGS_testing', NULL, NULL), + (1124, 'Verta_testing', NULL, NULL, NULL, 'daJjeOZm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Verta_testing', NULL, NULL), + (1125, 'Veyleaf_testing', NULL, NULL, NULL, 'GmjzRPbm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Veyleaf_testing', NULL, NULL), + (1126, 'VibeCheckCon_testing', NULL, NULL, NULL, 'oAgR0gjm', '76561198217647812', NULL, 'VibeCheck', '780238874244284420', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'VibeCheckCon_testing', NULL, NULL), + (1127, 'Victoria_testing', NULL, NULL, NULL, '4oj6kOMA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Victoria_testing', NULL, NULL), + (1128, 'Vilenpepsi_testing', NULL, NULL, NULL, 'd3yBZLDA', NULL, NULL, NULL, '246766180612833280', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vilenpepsi_testing', NULL, NULL), + (1129, 'Violet Lauro_testing', NULL, NULL, NULL, 'kdKXkBam', '76561198159859656', NULL, 'Vinniehat', '1175861557486432288', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Violet Lauro_testing', NULL, NULL), + (1130, 'Viper_testing', NULL, NULL, NULL, '4ZknkYGd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Viper_testing', NULL, NULL), + (1131, 'Vision (Qc)_testing', NULL, NULL, NULL, 'R40q8LQd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vision (Qc)_testing', NULL, NULL), + (1132, 'Vizion_testing', NULL, NULL, NULL, 'dx61xDGA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vizion_testing', NULL, NULL), + (1133, 'Vlad_testing', NULL, NULL, NULL, '4oMDG0nm', '76561198314353885', NULL, 'Hohenheim The Cuddler', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vlad_testing', NULL, NULL), + (1134, 'Vortex_testing', NULL, NULL, NULL, '2d2WQWJm', '76561198225229248', NULL, 'Vortex', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vortex_testing', NULL, NULL), + (1135, 'Vortexblaster_testing', NULL, NULL, NULL, 'EdVl2G5A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vortexblaster_testing', NULL, NULL), + (1136, 'Vuka_testing', NULL, NULL, NULL, 'ydweXYjA', '76561198185264359', NULL, 'Драгослав Рачић', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Vuka_testing', NULL, NULL), + (1137, 'WacktheMedic_testing', NULL, NULL, NULL, 'dBWV8YPm', '76561197975408060', NULL, 'WacktheMedic', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'WacktheMedic_testing', NULL, NULL), + (1138, 'Wagaga_testing', NULL, NULL, NULL, 'w4WLzQqd', '76561198073864510', NULL, 'Wagaga', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Wagaga_testing', NULL, NULL), + (1139, 'WakeUpToJustice_testing', NULL, NULL, NULL, '41oz6QMm', '76561198268977771', NULL, 'WakeUpToJustice', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'WakeUpToJustice_testing', NULL, NULL), + (1140, 'Walker_testing', NULL, NULL, NULL, 'Qd5XkkO4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Walker_testing', NULL, NULL), + (1141, 'WallyWorld_testing', NULL, NULL, NULL, 'v4DbGQqm', '76561198201328891', NULL, 'WallyWorld', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'WallyWorld_testing', NULL, NULL), + (1142, 'Walrusking56_testing', NULL, NULL, NULL, '4DrX66Mm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Walrusking56_testing', NULL, NULL), + (1165, 'Warcrimes_testing', NULL, NULL, NULL, 'mqM2p0Lm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Warcrimes_testing', NULL, NULL), + (1166, 'wardaddy1980_testing', NULL, NULL, NULL, 'mG2vprPd', '76561198299139590', NULL, 'Wardaddy1980', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'wardaddy1980_testing', NULL, NULL), + (1167, 'Watson_testing', NULL, NULL, NULL, '841vDPwd', '76561198421692610', NULL, 'Bugerkingman', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Watson_testing', NULL, NULL), + (1168, 'WeAreWhispers_testing', NULL, NULL, NULL, 'dKZw1pR4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'WeAreWhispers_testing', NULL, NULL), + (1169, 'Whiskey_testing', NULL, NULL, NULL, '2d26ywPd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Whiskey_testing', NULL, NULL), + (1170, 'WhiskeyTracker_testing', NULL, NULL, NULL, '4EnnRNDd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'WhiskeyTracker_testing', NULL, NULL), + (1171, 'will_testing', NULL, NULL, NULL, 'Pm7DrZYA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'will_testing', NULL, NULL), + (1172, 'Willis_35_testing', NULL, NULL, NULL, 'AQ9Be37A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Willis_35_testing', NULL, NULL), + (1173, 'Wimpy_testing', NULL, NULL, NULL, 'dVgaBEqm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Wimpy_testing', NULL, NULL), + (1174, 'Wiploc_testing', NULL, NULL, NULL, 'dOjDg7O4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Wiploc_testing', NULL, NULL), + (1175, 'WNUSS97_testing', NULL, NULL, NULL, 'd5wN5bqA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'WNUSS97_testing', NULL, NULL), + (1176, 'Wolf_testing', NULL, NULL, NULL, 'oAg03eq4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Wolf_testing', NULL, NULL), + (1177, 'Wolfe_testing', NULL, NULL, NULL, 'd9nV8Wpm', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Wolfe_testing', NULL, NULL), + (1178, 'Wolfer_testing', NULL, NULL, NULL, 'dN9ZOJy4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Wolfer_testing', NULL, NULL), + (1179, 'Woods_testing', NULL, NULL, NULL, 'd5wM583A', '76561198011217903', NULL, 'Woods', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Woods_testing', NULL, NULL), + (1180, 'TheBeastWorgen_testing', NULL, NULL, NULL, 'GAnO3vX4', '76561199019738622', NULL, 'TheBeastWorgen', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TheBeastWorgen_testing', NULL, NULL), + (1181, 'Wozzo_testing', NULL, NULL, NULL, 'ZdNyKgX4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Wozzo_testing', NULL, NULL), + (1182, 'Wright_testing', NULL, NULL, NULL, 'dVBLOD6d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Wright_testing', NULL, NULL), + (1183, 'WyldKarrde_testing', NULL, NULL, NULL, 'd8j0vx0A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'WyldKarrde_testing', NULL, NULL), + (1184, 'Wynholdt_testing', NULL, NULL, NULL, '64vkO1Wd', NULL, NULL, NULL, '223978537558867970', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Wynholdt_testing', NULL, NULL), + (1185, 'xiirou_testing', NULL, NULL, NULL, '8418gG8A', '76561198133364673', NULL, 'xiirou', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'xiirou_testing', NULL, NULL), + (1186, 'Xil_testing', NULL, NULL, NULL, 'amGR6vnd', '76561198058539050', NULL, 'Xil', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Xil_testing', NULL, NULL), + (1187, 'Xkdy idky_testing', NULL, NULL, NULL, 'mbXGj2V4', '76561199526624745', NULL, 'God Can\'t Help Us', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Xkdy idky_testing', NULL, NULL), + (1188, 'XOMBY_testing', NULL, NULL, NULL, 'LmpJy094', NULL, NULL, '76561198386943052', '493244976050864149', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'XOMBY_testing', NULL, NULL), + (1189, 'Xray105_testing', NULL, NULL, NULL, 'xd95eKEd', NULL, NULL, NULL, '160709700071981056', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Xray105_testing', NULL, NULL), + (1190, 'xufffer_testing', NULL, NULL, NULL, 'Ag5rGXnd', NULL, NULL, NULL, '228158988737314817', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'xufffer_testing', NULL, NULL), + (1191, 'Xylemic (LEGACY)_testing', NULL, NULL, NULL, '41orVa7m', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Xylemic (LEGACY)_testing', NULL, NULL), + (1192, 'yeldarB13_testing', NULL, NULL, NULL, 'mLGq9Nwd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'yeldarB13_testing', NULL, NULL), + (1193, 'Yume_testing', NULL, NULL, NULL, 'NmL3pO8d', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Yume_testing', NULL, NULL), + (1194, 'Zachattack974_testing', NULL, NULL, NULL, 'nm60xJ14', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zachattack974_testing', NULL, NULL), + (1195, 'Zacho_testing', NULL, NULL, NULL, 'Ae76Mjzd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zacho_testing', NULL, NULL), + (1196, 'Zagreus_testing', NULL, NULL, NULL, 'mG2V1WYd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zagreus_testing', NULL, NULL), + (1197, 'ZamuHale_testing', NULL, NULL, NULL, 'mpKvzeqd', '76561198071797124', NULL, 'ZamuHale', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ZamuHale_testing', NULL, NULL), + (1198, 'Zay_testing', NULL, NULL, NULL, 'd5jgo5Km', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zay_testing', NULL, NULL), + (1199, 'Zen_testing', NULL, NULL, NULL, 'xAYxbz0m', NULL, NULL, NULL, '436687245366263819', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zen_testing', NULL, NULL), + (1200, 'Zenix_testing', NULL, NULL, NULL, '6AXgn8Em', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zenix_testing', NULL, NULL), + (1201, 'Zennith_Zephyr_testing', NULL, NULL, NULL, 'AQbW1QN4', '76561198399266919', NULL, 'Zennith', '705527108805460108', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zennith_Zephyr_testing', NULL, NULL), + (1202, 'Zenro_testing', NULL, NULL, NULL, 'd81KyXGm', '76561198188507358', NULL, 'Zenro3113', NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zenro_testing', NULL, NULL), + (1203, 'zeps_testing', NULL, NULL, NULL, 'dKPrJram', NULL, NULL, NULL, '241759494550454274', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'zeps_testing', NULL, NULL), + (1204, 'ZeroFrame_testing', NULL, NULL, NULL, 'AgkXJlRA', NULL, NULL, NULL, '181556409173803009', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'ZeroFrame_testing', NULL, NULL), + (1205, 'Zhu_testing', NULL, NULL, NULL, 'd5YPxwLd', '76561198011686101', NULL, 'Naiuhz', '165923782035243008', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zhu_testing', NULL, NULL), + (1206, 'Zion_testing', NULL, NULL, NULL, 'R40NlObm', NULL, NULL, NULL, '95412431177650176', NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Zion_testing', NULL, NULL), + (1207, 'zmooth - (LEGACY)_testing', NULL, NULL, NULL, '8418nM8A', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'zmooth - (LEGACY)_testing', NULL, NULL), + (1208, 'zombie/whiteout_testing', NULL, NULL, NULL, '4Wb8b9pA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 10:57:11', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'zombie/whiteout_testing', NULL, NULL), + (2221, 'Walrus_testing', NULL, NULL, NULL, 'NmLXbkLm', NULL, NULL, NULL, '241969545307357185', NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Walrus_testing', NULL, NULL), + (2222, 'Raccoon - (LEGACY)_testing', NULL, NULL, NULL, '8d8NNkkA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Raccoon - (LEGACY)_testing', NULL, NULL), + (2223, 'Doc Halladay_testing', NULL, NULL, NULL, '4EQzpZZ4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Doc Halladay_testing', NULL, NULL), + (2224, 'Jaeger_testing', NULL, NULL, NULL, 'd8DjnzOd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Jaeger_testing', NULL, NULL), + (2225, 'Radd Lad - (LEGACY)_testing', NULL, NULL, NULL, 'R40MPBKd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Radd Lad - (LEGACY)_testing', NULL, NULL), + (2226, 'TrashPandaTX_testing', NULL, NULL, NULL, 'AnnNaNYA', '76561198010343900', NULL, 'TrashPandaTX', NULL, NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'TrashPandaTX_testing', NULL, NULL), + (2227, 'BadDad_testing', NULL, NULL, NULL, 'dlKGaDB4', '76561198374330885', NULL, 'Bad_Dad', '298135665114218504', NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'BadDad_testing', NULL, NULL), + (2228, 'Bion_testing', NULL, NULL, NULL, 'AgPbYej4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Bion_testing', NULL, NULL), + (2229, 'A-Train_testing', NULL, NULL, NULL, 'GAneDy2m', NULL, NULL, NULL, '335583811075178496', NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'A-Train_testing', NULL, NULL), + (2230, 'Kruton_testing', NULL, NULL, NULL, '4kRgJPEA', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Kruton_testing', NULL, NULL), + (2231, 'CapnQuartermain/Scarab (LEGACY)_testing', NULL, NULL, NULL, 'EdVMpqy4', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'CapnQuartermain/Scarab (LEGACY)_testing', NULL, NULL), + (2232, 'KarlKirbs_testing', NULL, NULL, NULL, 'Lmp6VzB4', '76561198091496917', NULL, 'KarlKirbs', '383458549566537740', NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'KarlKirbs_testing', NULL, NULL), + (2233, 'Moonss1_testing', NULL, NULL, NULL, 'O4Z5BJ9A', '76561198123934580', NULL, 'WhoNeedsHostages', NULL, NULL, NULL, '2025-12-15 14:01:07', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Moonss1_testing', NULL, NULL), + (3348, 'AmuroCried_testing', NULL, NULL, NULL, '40168gKd', NULL, NULL, NULL, '181480490287628289', 'd1amonddude', NULL, '2025-12-23 21:29:32', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'AmuroCried_testing', NULL, NULL), + (3349, 'Necromorphhh_testing', NULL, NULL, NULL, 'mqMBa31m', NULL, NULL, NULL, '406933885037838339', NULL, NULL, '2025-12-24 22:44:40', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Necromorphhh_testing', NULL, NULL), + (3350, 'voicepossum_testing', NULL, NULL, NULL, 'mybG0BWA', NULL, NULL, NULL, '447784208740384769\r\n', NULL, NULL, '2025-12-25 00:09:23', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'voicepossum_testing', NULL, NULL), + (3351, 'screenhugger_testing', NULL, NULL, NULL, 'd3KwK9ed', NULL, NULL, NULL, '490170053606506506', 'Screenhugger', NULL, '2025-12-26 22:23:26', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'screenhugger_testing', NULL, NULL), + (3352, 'Ashley_testing', NULL, NULL, NULL, 'Argwrpg4', NULL, NULL, NULL, '300345039232565248', 'aaashleyyyy', NULL, '2025-12-26 23:29:44', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Ashley_testing', NULL, NULL), + (3353, 'Theshy_testing', NULL, NULL, NULL, 'd9XYevK4', NULL, NULL, NULL, '115275328443645960', 'theshy', NULL, '2025-12-28 15:39:03', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'Theshy_testing', NULL, NULL), + (3354, 'CrazySquid_testing', NULL, NULL, NULL, 'd8L5XDvd', NULL, NULL, NULL, NULL, NULL, NULL, '2025-12-28 16:32:54', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'CrazySquid_testing', NULL, NULL), + (3355, 'pythonusmc_testing', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '591319748810244096', NULL, NULL, '2025-12-29 18:47:49', '2026-01-03 07:11:33', NULL, NULL, '{"id":"eaa51a3865f9c4917708ea88e0bac8ac709c788c539ea8533b03e81a9e464775","displayName":"PythonUSMC","username":"pythonusmc","name":{"givenName":"PythonUSMC"}}', 'https://sso.iceberg-gaming.com/application/o/17th-admin-app/', 'guest', 'pythonusmc_testing', NULL, '2025-12-29 18:49:31'), + (3356, 'xdnation _testing', NULL, NULL, NULL, 'mbNejvzm', NULL, NULL, NULL, '168781643090231296', 'xdnation', NULL, '2025-12-30 16:26:44', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'xdnation _testing', NULL, NULL), + (3357, 'baboon1_actual_testing', NULL, NULL, NULL, '4Pxe83Z4', NULL, NULL, NULL, '606695545972457493', NULL, NULL, '2025-12-30 23:16:18', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'baboon1_actual_testing', NULL, NULL), + (3358, 'mind.meld_testing', NULL, NULL, NULL, 'AXZk7Qad', NULL, NULL, NULL, '573520724376158248', 'mind.meld', NULL, '2025-12-31 21:13:49', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'mind.meld_testing', NULL, NULL), + (3361, 'RCT Randy_testing', NULL, NULL, NULL, 'o4PKJyGA', '76561198138671014', NULL, 'drandall3554', NULL, NULL, NULL, '2025-12-31 21:44:21', '2026-01-03 07:11:33', NULL, NULL, NULL, NULL, 'guest', 'RCT Randy_testing', NULL, NULL); -- Dumping data for table milsim_website_development.members_awards: ~0 rows (approximately) -- Dumping data for table milsim_website_development.members_qualifications: ~0 rows (approximately) --- Dumping data for table milsim_website_development.members_ranks: ~85 rows (approximately) -INSERT INTO `members_ranks` (`id`, `member_id`, `rank_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date`, `end_date`, `created_at`, `updated_at`) VALUES - (1, 46, 22, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', NULL, '2025-12-16 19:53:07', '2025-12-16 20:58:02'); -INSERT INTO `members_ranks` (`id`, `member_id`, `rank_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date`, `end_date`, `created_at`, `updated_at`) VALUES - (2, 48, 21, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', NULL, '2025-12-16 19:54:09', '2025-12-16 20:58:17'), - (3, 53, 17, 166, 166, 'Migration from Guilded', '2024-11-19 00:00:00', NULL, '2025-12-16 19:55:14', '2025-12-16 20:58:28'), - (4, 38, 17, 166, 166, 'Migration from Guilded', '2024-12-10 00:00:00', NULL, '2025-12-16 19:55:42', '2025-12-16 20:58:56'), - (5, 61, 20, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', NULL, '2025-12-16 19:55:55', '2025-12-16 20:59:08'), - (6, 20, 16, 166, 166, 'Migration from Guilded', '2025-06-01 00:00:00', NULL, '2025-12-16 19:56:49', '2025-12-16 21:01:11'), - (7, 5, 7, 166, 166, 'Migration from Guilded', '2024-08-24 00:00:00', NULL, '2025-12-16 19:57:52', '2025-12-16 21:02:41'), - (8, 73, 7, 166, 166, 'Migration from Guilded', '2025-10-04 00:00:00', NULL, '2025-12-16 19:58:44', '2025-12-16 21:02:56'), - (9, 23, 6, 166, 166, 'Migration from Guilded', '2025-01-25 00:00:00', NULL, '2025-12-16 20:00:38', '2025-12-16 21:03:22'), - (10, 2, 6, 166, 166, 'Migration from Guilded', '2024-12-15 00:00:00', NULL, '2025-12-16 20:01:01', '2025-12-16 21:03:34'), - (11, 12, 6, 166, 166, 'Migration from Guilded', '2025-08-08 00:00:00', NULL, '2025-12-16 20:01:32', '2025-12-16 21:03:46'), - (12, 539, 6, 166, 166, 'Migration from Guilded', '2020-11-28 00:00:00', NULL, '2025-12-16 20:01:47', '2025-12-16 21:04:03'), - (13, 26, 6, 166, 166, 'Migration from Guilded', '2025-10-25 00:00:00', NULL, '2025-12-16 20:03:55', '2025-12-16 21:04:17'), - (14, 4, 6, 166, 166, 'Migration from Guilded', '2024-10-07 00:00:00', NULL, '2025-12-16 20:04:41', '2025-12-16 21:04:34'), - (15, 56, 5, 166, 166, 'Migration from Guilded', '2025-03-08 00:00:00', NULL, '2025-12-16 20:05:19', '2025-12-16 21:04:57'), - (16, 37, 5, 166, 166, 'Migration from Guilded', '2025-11-17 00:00:00', NULL, '2025-12-16 20:05:55', '2025-12-16 22:03:38'), - (17, 70, 5, 166, 166, 'Migration from Guilded', '2025-06-07 00:00:00', NULL, '2025-12-16 20:06:32', '2025-12-16 22:04:53'), - (18, 8, 5, 166, 166, 'Migration from Guilded', '2025-01-18 00:00:00', NULL, '2025-12-16 20:06:42', '2025-12-16 22:05:14'), - (19, 3, 4, 166, 166, 'Migration from Guilded', '2025-08-08 00:00:00', NULL, '2025-12-16 20:07:21', '2025-12-16 22:06:21'), - (20, 62, 4, 166, 166, 'Migration from Guilded', '2024-08-24 00:00:00', NULL, '2025-12-16 20:10:09', '2025-12-16 22:06:34'), - (21, 21, 4, 166, 166, 'Migration from Guilded', '2025-05-15 00:00:00', NULL, '2025-12-16 20:10:45', '2025-12-16 22:06:50'), - (22, 17, 4, 166, 166, 'Migration from Guilded', '2025-07-12 00:00:00', NULL, '2025-12-16 20:14:18', '2025-12-16 22:07:05'), - (23, 54, 4, 166, 166, 'Migration from Guilded', '2025-01-13 00:00:00', NULL, '2025-12-16 20:14:47', '2025-12-16 22:07:20'), - (24, 41, 4, 166, 166, 'Migration from Guilded', '2025-09-23 00:00:00', NULL, '2025-12-16 20:15:04', '2025-12-16 22:07:38'), - (25, 49, 4, 166, 166, 'Migration from Guilded', '2024-10-07 00:00:00', NULL, '2025-12-16 20:15:45', '2025-12-16 22:09:00'), - (26, 58, 4, 166, 166, 'Migration from Guilded', '2023-10-07 00:00:00', NULL, '2025-12-16 20:16:26', '2025-12-16 22:10:14'), - (27, 39, 4, 166, 166, 'Migration from Guilded', '2023-07-24 00:00:00', NULL, '2025-12-16 20:16:43', '2025-12-16 22:10:31'), - (28, 71, 4, 166, 166, 'Migration from Guilded', '2024-11-11 00:00:00', NULL, '2025-12-16 20:16:52', '2025-12-16 22:10:52'), - (29, 51, 4, 166, 166, 'Migration from Guilded', '2025-01-25 00:00:00', NULL, '2025-12-16 20:17:10', '2025-12-16 22:11:19'), - (30, 82, 4, 166, 166, 'Migration from Guilded', '2021-04-03 00:00:00', NULL, '2025-12-16 20:17:30', '2025-12-16 22:11:55'), - (31, 11, 4, 166, 166, 'Migration from Guilded', '2025-03-26 00:00:00', NULL, '2025-12-16 20:18:08', '2025-12-16 22:33:18'), - (32, 81, 4, 166, 166, 'Migration from Guilded', '2024-11-10 00:00:00', NULL, '2025-12-16 20:18:31', '2025-12-16 22:33:37'), - (33, 2222, 4, 166, 166, 'Migration from Guilded', '2025-10-10 00:00:00', NULL, '2025-12-16 20:18:47', '2025-12-16 22:33:54'), - (34, 25, 4, 166, 166, 'Migration from Guilded', '2025-09-23 00:00:00', NULL, '2025-12-16 20:19:05', '2025-12-16 22:34:12'), - (35, 16, 4, 166, 166, 'Migration from Guilded', '2023-06-13 00:00:00', NULL, '2025-12-16 20:19:28', '2025-12-16 22:34:23'), - (36, 68, 4, 166, 166, 'Migration from Guilded', '2025-08-16 00:00:00', NULL, '2025-12-16 20:19:52', '2025-12-16 22:34:39'), - (37, 66, 4, 166, 166, 'Migration from Guilded', '2025-10-25 00:00:00', NULL, '2025-12-16 20:20:07', '2025-12-16 22:34:50'), - (38, 22, 4, 166, 166, 'Migration from Guilded', '2024-11-16 00:00:00', NULL, '2025-12-16 20:20:17', '2025-12-16 22:36:10'), - (39, 13, 4, 166, 166, 'Migration from Guilded', '2022-10-08 00:00:00', NULL, '2025-12-16 20:20:44', '2025-12-16 22:36:21'), - (40, 6, 4, 166, 166, 'Migration from Guilded', '2025-10-29 00:00:00', NULL, '2025-12-16 20:21:06', '2025-12-16 22:36:42'), - (41, 1191, 4, 166, 166, 'Migration from Guilded', '2025-10-28 00:00:00', NULL, '2025-12-16 20:21:17', '2025-12-16 22:36:56'), - (42, 1207, 4, 166, 166, 'Migration from Guilded', '2025-08-16 00:00:00', NULL, '2025-12-16 20:24:03', '2025-12-16 22:42:57'), - (43, 14, 3, 166, 166, 'Migration from Guilded', '2025-05-03 00:00:00', NULL, '2025-12-16 20:24:32', '2025-12-16 22:43:43'), - (44, 69, 3, 166, 166, 'Migration from Guilded', '2025-09-23 00:00:00', NULL, '2025-12-16 20:24:44', '2025-12-16 22:43:54'), - (45, 33, 3, 166, 166, 'Migration from Guilded', '2025-05-31 00:00:00', NULL, '2025-12-16 20:24:59', '2025-12-16 22:44:05'), - (46, 72, 2, 166, 166, 'Migration from Guilded', '2025-11-17 00:00:00', NULL, '2025-12-16 20:25:22', '2025-12-16 22:44:20'), - (47, 47, 2, 166, 166, 'Migration from Guilded', '2025-11-18 00:00:00', NULL, '2025-12-16 20:25:51', '2025-12-16 22:44:59'), - (48, 256, 2, 166, 166, 'Migration from Guilded', '2025-08-16 00:00:00', NULL, '2025-12-16 20:26:04', '2025-12-16 22:45:35'), - (49, 52, 2, 166, 166, 'Migration from Guilded', '2025-12-09 00:00:00', NULL, '2025-12-16 20:26:13', '2025-12-16 22:47:16'), - (50, 278, 2, 166, 166, 'Migration from Guilded', '2025-11-14 00:00:00', NULL, '2025-12-16 20:26:27', '2025-12-16 22:54:28'), - (51, 36, 2, 166, 166, 'Migration from Guilded', '2025-11-14 00:00:00', NULL, '2025-12-16 20:26:35', '2025-12-16 22:54:43'), - (52, 40, 2, 166, 166, 'Migration from Guilded', '2025-09-24 00:00:00', NULL, '2025-12-16 20:26:54', '2025-12-16 22:54:59'), - (53, 65, 2, 166, 166, 'Migration from Guilded', '2025-12-01 00:00:00', NULL, '2025-12-16 20:27:07', '2025-12-16 22:55:11'), - (54, 29, 2, 166, 166, 'Migration from Guilded', '2025-11-19 00:00:00', NULL, '2025-12-16 20:27:34', '2025-12-16 22:55:28'), - (55, 731, 2, 166, 166, 'Migration from Guilded', '2025-09-30 00:00:00', NULL, '2025-12-16 20:27:47', '2025-12-16 22:55:42'), - (56, 9, 2, 166, 166, 'Migration from Guilded', '2025-10-12 00:00:00', NULL, '2025-12-16 20:27:58', '2025-12-16 22:56:25'), - (57, 75, 2, 166, 166, 'Migration from Guilded', '2025-08-10 00:00:00', NULL, '2025-12-16 20:29:03', '2025-12-16 22:56:47'), - (58, 44, 2, 166, 166, 'Migration from Guilded', '2025-05-02 00:00:00', NULL, '2025-12-16 20:29:25', '2025-12-16 22:57:07'), - (59, 43, 20, 166, 166, 'Migration from Guilded', '2024-11-10 00:00:00', NULL, '2025-12-16 20:29:43', '2025-12-16 22:57:20'), - (60, 42, 19, 166, 166, 'Migration from Guilded', '2024-11-10 00:00:00', NULL, '2025-12-16 20:29:52', '2025-12-16 22:57:37'), - (61, 80, 14, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', NULL, '2025-12-16 20:30:19', '2025-12-16 22:57:55'), - (62, 64, 12, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', NULL, '2025-12-16 20:30:40', '2025-12-16 22:58:08'), - (63, 28, 11, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', NULL, '2025-12-16 20:31:02', '2025-12-16 22:58:44'), - (64, 45, 11, 166, 166, 'Migration from Guilded', '2023-09-18 00:00:00', NULL, '2025-12-16 20:32:13', '2025-12-16 22:58:58'), - (65, 77, 11, 166, 166, 'Migration from Guilded', '2024-12-07 00:00:00', NULL, '2025-12-16 20:32:51', '2025-12-16 22:59:25'), - (66, 50, 11, 166, 166, 'Migration from Guilded', '2025-05-22 00:00:00', NULL, '2025-12-16 20:33:16', '2025-12-16 22:59:48'), - (67, 15, 16, 166, 166, 'Migration from Guilded', '2025-11-17 00:00:00', NULL, '2025-12-16 20:33:27', '2025-12-16 23:00:05'), - (68, 729, 11, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', NULL, '2025-12-16 20:33:51', '2025-12-16 23:00:20'), - (69, 19, 11, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', NULL, '2025-12-16 20:34:11', '2025-12-16 23:00:17'), - (70, 59, 11, 166, 166, 'Migration from Guilded', '2025-12-09 00:00:00', NULL, '2025-12-16 20:34:43', '2025-12-16 23:00:43'), - (71, 30, 11, 166, 166, 'Migration from Guilded', '2025-08-08 00:00:00', NULL, '2025-12-16 20:35:01', '2025-12-16 23:01:09'), - (72, 18, 11, 166, 166, 'Migration from Guilded', '2024-03-09 00:00:00', NULL, '2025-12-16 20:35:19', '2025-12-16 23:01:36'), - (73, 24, 10, 166, 166, 'Migration from Guilded', '2025-10-04 00:00:00', NULL, '2025-12-16 20:36:20', '2025-12-16 23:01:47'), - (74, 7, 8, 166, 166, 'Migration from Guilded', '2025-06-07 00:00:00', NULL, '2025-12-16 20:37:05', '2025-12-16 23:02:06'), - (75, 57, 4, 166, 166, 'Migration from Guilded', '2021-10-30 00:00:00', NULL, '2025-12-16 20:37:19', '2025-12-16 23:02:21'), - (76, 79, 4, 166, 166, 'Migration from Guilded', '2025-05-11 00:00:00', NULL, '2025-12-16 20:37:32', '2025-12-16 23:02:47'), - (77, 74, 4, 166, 166, 'Migration from Guilded', '2024-05-19 00:00:00', NULL, '2025-12-16 20:37:41', '2025-12-16 23:03:27'), - (78, 76, 4, 166, 166, 'Migration from Guilded', '2025-07-12 00:00:00', NULL, '2025-12-16 20:37:52', '2025-12-16 23:03:25'), - (79, 78, 4, 166, 166, 'Migration from Guilded', '2024-04-11 00:00:00', NULL, '2025-12-16 20:38:31', '2025-12-16 23:08:43'), - (80, 63, 2, 166, 166, 'Migration from Guilded', '2025-10-13 00:00:00', NULL, '2025-12-16 20:38:53', '2025-12-16 23:08:58'), - (81, 971, 2, 166, 166, 'Migration from Guilded', '2025-12-01 00:00:00', NULL, '2025-12-16 20:39:03', '2025-12-16 23:09:08'), - (82, 173, 1, 166, 166, 'Migration from Guilded', '2025-09-09 00:00:00', NULL, '2025-12-16 20:39:14', '2025-12-16 23:09:27'), - (83, 1142, 1, 166, 166, 'Migration from Guilded', '2025-09-29 00:00:00', '2025-10-16 00:00:00', '2025-12-16 20:39:23', '2025-12-16 23:10:21'), - (84, 67, 19, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', NULL, '2025-12-16 21:00:15', '2025-12-16 21:00:28'), - (85, 35, 4, 166, 166, 'Migration from Guilded', '2024-05-19 00:00:00', NULL, '2025-12-16 22:08:30', '2025-12-16 22:12:29'); +-- Dumping data for table milsim_website_development.members_ranks: ~117 rows (approximately) +INSERT INTO `members_ranks` (`id`, `member_id`, `rank_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date_og`, `start_date`, `end_date_og`, `end_date`, `created_at`, `created_at_ts`, `updated_at`, `batch`) VALUES + (1, 46, 22, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', '2025-10-26', NULL, '2026-01-16', '2025-12-16 19:53:07', '2026-01-17 05:21:28', '2026-01-16 14:27:21', NULL); +INSERT INTO `members_ranks` (`id`, `member_id`, `rank_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date_og`, `start_date`, `end_date_og`, `end_date`, `created_at`, `created_at_ts`, `updated_at`, `batch`) VALUES + (2, 48, 21, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', '2025-10-26', '2026-01-04 18:00:00', '2026-01-04', '2025-12-16 19:54:09', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (3, 53, 17, 166, 166, 'Migration from Guilded', '2024-11-19 00:00:00', '2024-11-19', NULL, NULL, '2025-12-16 19:55:14', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (4, 38, 17, 166, 166, 'Migration from Guilded', '2024-12-10 00:00:00', '2024-12-10', '2026-01-04 18:00:00', '2026-01-04', '2025-12-16 19:55:42', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (5, 61, 20, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', '2025-10-26', NULL, NULL, '2025-12-16 19:55:55', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (6, 20, 16, 166, 166, 'Migration from Guilded', '2025-06-01 00:00:00', '2025-06-01', NULL, NULL, '2025-12-16 19:56:49', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (7, 5, 7, 166, 166, 'Migration from Guilded', '2024-08-24 00:00:00', '2024-08-24', NULL, NULL, '2025-12-16 19:57:52', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (8, 73, 7, 166, 166, 'Migration from Guilded', '2025-10-04 00:00:00', '2025-10-04', NULL, NULL, '2025-12-16 19:58:44', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (9, 23, 6, 166, 166, 'Migration from Guilded', '2025-01-25 00:00:00', '2025-01-25', NULL, NULL, '2025-12-16 20:00:38', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (10, 2, 6, 166, 166, 'Migration from Guilded', '2024-12-15 00:00:00', '2024-12-15', NULL, '2026-01-16', '2025-12-16 20:01:01', '2026-01-17 05:21:28', '2026-01-16 18:12:00', NULL), + (11, 12, 6, 166, 166, 'Migration from Guilded', '2025-08-08 00:00:00', '2025-08-08', NULL, NULL, '2025-12-16 20:01:32', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (12, 539, 6, 166, 166, 'Migration from Guilded', '2020-11-28 00:00:00', '2020-11-28', '2026-01-14 18:00:00', '2026-01-14', '2025-12-16 20:01:47', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (13, 26, 6, 166, 166, 'Migration from Guilded', '2025-10-25 00:00:00', '2025-10-25', NULL, NULL, '2025-12-16 20:03:55', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (14, 4, 6, 166, 166, 'Migration from Guilded', '2024-10-07 00:00:00', '2024-10-07', NULL, NULL, '2025-12-16 20:04:41', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (15, 56, 5, 166, 166, 'Migration from Guilded', '2025-03-08 00:00:00', '2025-03-08', '2026-01-04 18:00:00', '2026-01-04', '2025-12-16 20:05:19', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (16, 37, 5, 166, 166, 'Migration from Guilded', '2025-11-17 00:00:00', '2025-11-17', '2025-12-06 00:00:00', '2025-12-06', '2025-12-16 20:05:55', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (17, 70, 5, 166, 166, 'Migration from Guilded', '2025-06-07 00:00:00', '2025-06-07', NULL, NULL, '2025-12-16 20:06:32', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (18, 8, 5, 166, 166, 'Migration from Guilded', '2025-01-18 00:00:00', '2025-01-18', NULL, NULL, '2025-12-16 20:06:42', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (19, 3, 4, 166, 166, 'Migration from Guilded', '2025-08-08 00:00:00', '2025-08-08', NULL, '2026-01-16', '2025-12-16 20:07:21', '2026-01-17 05:21:28', '2026-01-16 16:23:34', NULL), + (20, 62, 4, 166, 166, 'Migration from Guilded', '2024-08-24 00:00:00', '2024-08-24', NULL, NULL, '2025-12-16 20:10:09', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (21, 21, 4, 166, 166, 'Migration from Guilded', '2025-05-15 00:00:00', '2025-05-15', NULL, NULL, '2025-12-16 20:10:45', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (22, 17, 4, 166, 166, 'Migration from Guilded', '2025-07-12 00:00:00', '2025-07-12', NULL, NULL, '2025-12-16 20:14:18', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (23, 54, 4, 166, 166, 'Migration from Guilded', '2025-01-13 00:00:00', '2025-01-13', NULL, NULL, '2025-12-16 20:14:47', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (24, 41, 4, 166, 166, 'Migration from Guilded', '2025-09-23 00:00:00', '2025-09-23', NULL, NULL, '2025-12-16 20:15:04', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (25, 49, 4, 166, 166, 'Migration from Guilded', '2024-10-07 00:00:00', '2024-10-07', NULL, NULL, '2025-12-16 20:15:45', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (26, 58, 4, 166, 166, 'Migration from Guilded', '2023-10-07 00:00:00', '2023-10-07', NULL, NULL, '2025-12-16 20:16:26', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (27, 39, 4, 166, 166, 'Migration from Guilded', '2023-07-24 00:00:00', '2023-07-24', NULL, NULL, '2025-12-16 20:16:43', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (28, 71, 4, 166, 166, 'Migration from Guilded', '2024-11-11 00:00:00', '2024-11-11', NULL, NULL, '2025-12-16 20:16:52', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (29, 51, 4, 166, 166, 'Migration from Guilded', '2025-01-25 00:00:00', '2025-01-25', NULL, '2026-01-16', '2025-12-16 20:17:10', '2026-01-17 05:21:28', '2026-01-16 18:31:17', NULL), + (30, 82, 4, 166, 166, 'Migration from Guilded', '2021-04-03 00:00:00', '2021-04-03', NULL, NULL, '2025-12-16 20:17:30', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (31, 11, 4, 166, 166, 'Migration from Guilded', '2025-03-26 00:00:00', '2025-03-26', NULL, NULL, '2025-12-16 20:18:08', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (32, 81, 4, 166, 166, 'Migration from Guilded', '2024-11-10 00:00:00', '2024-11-10', NULL, NULL, '2025-12-16 20:18:31', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (33, 1, 4, 166, 166, 'Migration from Guilded', '2025-10-10 00:00:00', '2025-10-10', NULL, '2026-01-16', '2025-12-16 20:18:47', '2026-01-17 05:21:28', '2026-01-16 14:29:09', NULL), + (34, 25, 4, 166, 166, 'Migration from Guilded', '2025-09-23 00:00:00', '2025-09-23', NULL, NULL, '2025-12-16 20:19:05', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (35, 16, 4, 166, 166, 'Migration from Guilded', '2023-06-13 00:00:00', '2023-06-13', NULL, NULL, '2025-12-16 20:19:28', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (36, 68, 4, 166, 166, 'Migration from Guilded', '2025-08-16 00:00:00', '2025-08-16', NULL, NULL, '2025-12-16 20:19:52', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (37, 66, 4, 166, 166, 'Migration from Guilded', '2025-10-25 00:00:00', '2025-10-25', NULL, NULL, '2025-12-16 20:20:07', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (38, 22, 4, 166, 166, 'Migration from Guilded', '2024-11-16 00:00:00', '2024-11-16', NULL, NULL, '2025-12-16 20:20:17', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (39, 13, 4, 166, 166, 'Migration from Guilded', '2022-10-08 00:00:00', '2022-10-08', NULL, NULL, '2025-12-16 20:20:44', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (40, 6, 4, 166, 166, 'Migration from Guilded', '2025-10-29 00:00:00', '2025-10-29', NULL, NULL, '2025-12-16 20:21:06', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (41, 31, 4, 166, 166, 'Migration from Guilded', '2025-10-28 00:00:00', '2025-10-28', NULL, NULL, '2025-12-16 20:21:17', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (42, 34, 4, 166, 166, 'Migration from Guilded', '2025-08-16 00:00:00', '2025-08-16', NULL, NULL, '2025-12-16 20:24:03', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (43, 14, 3, 166, 166, 'Migration from Guilded', '2025-05-03 00:00:00', '2025-05-03', NULL, NULL, '2025-12-16 20:24:32', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (44, 69, 3, 166, 166, 'Migration from Guilded', '2025-09-23 00:00:00', '2025-09-23', NULL, NULL, '2025-12-16 20:24:44', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (45, 33, 3, 166, 166, 'Migration from Guilded', '2025-05-31 00:00:00', '2025-05-31', NULL, NULL, '2025-12-16 20:24:59', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (46, 72, 2, 166, 166, 'Migration from Guilded', '2025-11-17 00:00:00', '2025-11-17', NULL, NULL, '2025-12-16 20:25:22', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (47, 47, 2, 166, 166, 'Migration from Guilded', '2025-11-18 00:00:00', '2025-11-18', '2025-12-06 00:00:00', '2025-12-06', '2025-12-16 20:25:51', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (48, 256, 2, 166, 166, 'Migration from Guilded', '2025-08-16 00:00:00', '2025-08-16', NULL, NULL, '2025-12-16 20:26:04', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (49, 52, 2, 166, 166, 'Migration from Guilded', '2025-12-09 00:00:00', '2025-12-09', NULL, NULL, '2025-12-16 20:26:13', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (50, 32, 2, 166, 166, 'Migration from Guilded', '2025-11-14 00:00:00', '2025-11-14', NULL, NULL, '2025-12-16 20:26:27', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (51, 36, 2, 166, 166, 'Migration from Guilded', '2025-11-14 00:00:00', '2025-11-14', NULL, NULL, '2025-12-16 20:26:35', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (52, 40, 2, 166, 166, 'Migration from Guilded', '2025-09-24 00:00:00', '2025-09-24', NULL, NULL, '2025-12-16 20:26:54', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (53, 65, 2, 166, 166, 'Migration from Guilded', '2025-12-01 00:00:00', '2025-12-01', NULL, NULL, '2025-12-16 20:27:07', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (54, 29, 2, 166, 166, 'Migration from Guilded', '2025-11-19 00:00:00', '2025-11-19', NULL, NULL, '2025-12-16 20:27:34', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (55, 731, 2, 166, 166, 'Migration from Guilded', '2025-09-30 00:00:00', '2025-09-30', NULL, NULL, '2025-12-16 20:27:47', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (56, 9, 2, 166, 166, 'Migration from Guilded', '2025-10-12 00:00:00', '2025-10-12', '2025-12-06 00:00:00', '2025-12-06', '2025-12-16 20:27:58', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (57, 75, 2, 166, 166, 'Migration from Guilded', '2025-08-10 00:00:00', '2025-08-10', NULL, NULL, '2025-12-16 20:29:03', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (58, 44, 2, 166, 166, 'Migration from Guilded', '2025-05-02 00:00:00', '2025-05-02', NULL, NULL, '2025-12-16 20:29:25', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (59, 43, 20, 166, 166, 'Migration from Guilded', '2024-11-10 00:00:00', '2024-11-10', NULL, '2026-01-15', '2025-12-16 20:29:43', '2026-01-17 05:21:28', '2026-01-15 21:44:00', NULL), + (60, 42, 19, 166, 166, 'Migration from Guilded', '2024-11-10 00:00:00', '2024-11-10', NULL, NULL, '2025-12-16 20:29:52', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (61, 80, 14, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', '2025-10-26', NULL, NULL, '2025-12-16 20:30:19', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (62, 64, 12, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', '2025-10-26', NULL, NULL, '2025-12-16 20:30:40', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (63, 28, 11, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', '2025-10-26', '2026-01-14 19:00:00', '2026-01-14', '2025-12-16 20:31:02', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (64, 45, 11, 166, 166, 'Migration from Guilded', '2023-09-18 00:00:00', '2023-09-18', NULL, NULL, '2025-12-16 20:32:13', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (65, 77, 11, 166, 166, 'Migration from Guilded', '2024-12-07 00:00:00', '2024-12-07', NULL, NULL, '2025-12-16 20:32:51', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (66, 50, 11, 166, 166, 'Migration from Guilded', '2025-05-22 00:00:00', '2025-05-22', NULL, NULL, '2025-12-16 20:33:16', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (67, 15, 16, 166, 166, 'Migration from Guilded', '2025-11-17 00:00:00', '2025-11-17', '2026-01-04 18:00:00', '2026-01-04', '2025-12-16 20:33:27', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (68, 27, 11, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', '2025-10-26', NULL, NULL, '2025-12-16 20:33:51', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (69, 19, 11, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', '2025-10-26', NULL, NULL, '2025-12-16 20:34:11', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (70, 59, 11, 166, 166, 'Migration from Guilded', '2025-12-09 00:00:00', '2025-12-09', NULL, NULL, '2025-12-16 20:34:43', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (71, 30, 11, 166, 166, 'Migration from Guilded', '2025-08-08 00:00:00', '2025-08-08', '2026-01-04 18:00:00', '2026-01-04', '2025-12-16 20:35:01', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (72, 18, 11, 166, 166, 'Migration from Guilded', '2024-03-09 00:00:00', '2024-03-09', NULL, NULL, '2025-12-16 20:35:19', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (73, 24, 10, 166, 166, 'Migration from Guilded', '2025-10-04 00:00:00', '2025-10-04', NULL, NULL, '2025-12-16 20:36:20', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (74, 7, 8, 166, 166, 'Migration from Guilded', '2025-06-07 00:00:00', '2025-06-07', NULL, NULL, '2025-12-16 20:37:05', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (75, 57, 4, 166, 166, 'Migration from Guilded', '2021-10-30 00:00:00', '2021-10-30', NULL, NULL, '2025-12-16 20:37:19', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (76, 79, 4, 166, 166, 'Migration from Guilded', '2025-05-11 00:00:00', '2025-05-11', NULL, NULL, '2025-12-16 20:37:32', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (77, 74, 4, 166, 166, 'Migration from Guilded', '2024-05-19 00:00:00', '2024-05-19', NULL, NULL, '2025-12-16 20:37:41', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (78, 76, 4, 166, 166, 'Migration from Guilded', '2025-07-12 00:00:00', '2025-07-12', NULL, NULL, '2025-12-16 20:37:52', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (79, 78, 4, 166, 166, 'Migration from Guilded', '2024-04-11 00:00:00', '2024-04-11', NULL, NULL, '2025-12-16 20:38:31', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (80, 63, 2, 166, 166, 'Migration from Guilded', '2025-10-13 00:00:00', '2025-10-13', NULL, NULL, '2025-12-16 20:38:53', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (81, 10, 2, 166, 166, 'Migration from Guilded', '2025-12-01 00:00:00', '2025-12-01', NULL, NULL, '2025-12-16 20:39:03', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (82, 173, 1, 166, 166, 'Migration from Guilded', '2025-09-09 00:00:00', '2025-09-09', NULL, '2026-01-16', '2025-12-16 20:39:14', '2026-01-17 05:21:28', '2026-01-16 16:20:51', NULL), + (83, 1142, 1, 166, 166, 'Migration from Guilded', '2025-09-29 00:00:00', '2025-09-29', '2025-10-16 00:00:00', '2025-10-16', '2025-12-16 20:39:23', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (84, 67, 19, 166, 166, 'Migration from Guilded', '2025-10-26 00:00:00', '2025-10-26', NULL, NULL, '2025-12-16 21:00:15', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (85, 35, 4, 166, 166, 'Migration from Guilded', '2024-05-19 00:00:00', '2024-05-19', NULL, NULL, '2025-12-16 22:08:30', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (87, 60, 4, 166, 166, 'Migration from Guilded', '2023-07-24 00:00:00', '2023-07-24', NULL, NULL, '2025-12-30 20:57:31', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (88, 37, 6, 61, 38, 'Rank Change', '2025-12-06 00:00:00', '2025-12-06', NULL, NULL, '2025-12-31 20:44:24', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (89, 47, 3, 61, 38, 'Rank Change', '2025-12-06 00:00:00', '2025-12-06', NULL, NULL, '2025-12-31 20:45:58', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (90, 9, 3, 61, 38, 'Rank Change', '2025-12-06 00:00:00', '2025-12-06', NULL, NULL, '2025-12-31 20:46:43', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (91, 38, 20, 38, 38, 'Rank Change', '2026-01-04 18:00:00', '2026-01-04', '2026-01-14 18:00:00', '2026-01-14', '2026-01-05 21:06:42', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (92, 48, 4, 38, 38, 'Rank Change', '2026-01-04 18:00:00', '2026-01-04', '2026-01-05 18:00:00', '2026-01-05', '2026-01-05 21:06:42', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (93, 439, 2, 38, 38, 'Rank Change', '2026-01-04 18:00:00', '2026-01-04', NULL, NULL, '2026-01-05 21:06:42', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (94, 30, 4, 38, 38, 'Rank Change', '2026-01-04 18:00:00', '2026-01-04', NULL, '2026-01-14', '2026-01-05 22:04:27', '2026-01-17 05:21:28', '2026-01-15 21:42:07', NULL), + (95, 1170, 10, 38, 38, 'Rank Change', '2026-01-04 18:00:00', '2026-01-04', NULL, NULL, '2026-01-05 22:04:27', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (96, 15, 3, 38, 38, 'Rank Change', '2026-01-04 18:00:00', '2026-01-04', NULL, NULL, '2026-01-05 22:04:27', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (97, 56, 7, 38, 38, 'Rank Change', '2026-01-04 18:00:00', '2026-01-04', NULL, NULL, '2026-01-05 22:04:27', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (98, 48, 8, 38, 38, 'Rank Change', '2026-01-05 18:00:00', '2026-01-05', NULL, '2026-01-14', '2026-01-05 22:04:27', '2026-01-17 05:21:28', '2026-01-15 21:35:40', NULL), + (99, 38, 10, 38, 38, 'Rank Change', '2026-01-14 18:00:00', '2026-01-14', NULL, '2026-01-16', '2026-01-15 19:47:10', '2026-01-17 05:21:28', '2026-01-16 14:28:42', NULL), + (100, 539, 17, 38, 38, 'Rank Change', '2026-01-14 18:00:00', '2026-01-14', NULL, NULL, '2026-01-15 19:56:12', '2026-01-17 05:21:28', '2026-01-15 21:19:47', NULL), + (101, 28, 2, 28, 28, 'Rank Change', '2026-01-14 19:00:00', '2026-01-14', NULL, '2026-01-14', '2026-01-15 20:34:45', '2026-01-17 05:21:28', '2026-01-15 21:38:19', NULL), + (102, 48, 3, 28, 28, 'Rank Change', NULL, '2026-01-14', NULL, '2026-01-16', '2026-01-15 21:35:40', '2026-01-17 05:21:28', '2026-01-16 15:56:14', NULL), + (103, 28, 8, 28, 28, 'Rank Change', NULL, '2026-01-14', NULL, '2026-01-16', '2026-01-15 21:38:19', '2026-01-17 05:21:28', '2026-01-16 15:47:32', NULL), + (104, 30, 10, 38, 38, 'Rank Change', NULL, '2026-01-14', NULL, NULL, '2026-01-15 21:42:07', '2026-01-17 05:21:28', '2026-01-15 21:42:07', NULL), + (105, 43, 15, 28, 28, 'Rank Change', NULL, '2026-01-15', NULL, NULL, '2026-01-15 21:44:00', '2026-01-17 05:21:28', '2026-01-15 21:44:00', NULL), + (107, 38, 2, 28, 28, 'Rank Change', NULL, '2026-01-16', NULL, NULL, '2026-01-16 14:28:42', '2026-01-17 05:21:28', '2026-01-16 14:28:42', NULL), + (108, 1, 10, 28, 46, 'Rank Change', NULL, '2026-01-16', NULL, NULL, '2026-01-16 14:29:09', '2026-01-17 05:21:28', '2026-01-16 14:29:09', NULL), + (109, 28, 4, 28, 38, 'Rank Change', NULL, '2026-01-16', NULL, NULL, '2026-01-16 15:47:32', '2026-01-17 05:21:28', '2026-01-16 15:47:32', NULL), + (110, 48, 2, 28, 28, 'Rank Change', NULL, '2026-01-16', NULL, NULL, '2026-01-16 15:56:14', '2026-01-17 05:21:28', '2026-01-16 15:56:14', NULL), + (111, 46, 9, 28, 28, 'Rank Change', NULL, '2026-01-16', NULL, '2026-01-16', '2026-01-16 16:08:06', '2026-01-17 05:21:28', '2026-01-16 23:18:29', NULL), + (112, 173, 2, 28, 28, 'Rank Change', NULL, '2026-01-16', NULL, NULL, '2026-01-16 16:20:51', '2026-01-17 05:21:28', '2026-01-16 16:20:51', NULL), + (113, 3, 2, 28, 28, 'Rank Change', NULL, '2026-01-16', NULL, NULL, '2026-01-16 16:23:34', '2026-01-17 05:21:28', '2026-01-16 16:23:34', NULL), + (114, 2, 2, 38, 28, 'Rank Change', NULL, '2026-01-16', NULL, NULL, '2026-01-16 18:12:00', '2026-01-17 05:21:28', '2026-01-16 18:12:00', NULL), + (115, 51, 3, 28, 28, 'Rank Change', NULL, '2026-01-16', NULL, NULL, '2026-01-16 18:31:17', '2026-01-17 05:21:28', '2026-01-16 18:31:17', NULL), + (116, 46, 2, 38, 38, 'Rank Change', NULL, '2026-01-16', NULL, '2026-01-16', '2026-01-16 23:18:29', '2026-01-17 05:21:28', '2026-01-16 23:18:46', NULL), + (117, 46, 3, 28, 38, 'Rank Change', NULL, '2026-01-16', NULL, NULL, '2026-01-16 23:18:46', '2026-01-17 05:21:28', '2026-01-16 23:18:46', NULL), + (118, 174, 2, 28, 28, 'Rank Change', NULL, '2026-01-17', NULL, NULL, '2026-01-17 17:11:38', '2026-01-17 23:11:38', '2026-01-17 17:11:38', NULL), + (119, 216, 3, 46, 28, 'Rank Change', NULL, '2026-01-17', NULL, NULL, '2026-01-17 22:09:31', '2026-01-18 04:09:31', '2026-01-17 22:09:31', NULL); --- Dumping data for table milsim_website_development.members_roles: ~87 rows (approximately) -INSERT INTO `members_roles` (`member_id`, `role_id`) VALUES - (1, 3); -INSERT INTO `members_roles` (`member_id`, `role_id`) VALUES - (2, 3), - (3, 3), - (4, 3), - (5, 3), - (6, 3), - (7, 3), - (8, 3), - (9, 3), - (10, 3), - (11, 3), - (12, 3), - (13, 3), - (14, 3), - (15, 3), - (16, 3), - (17, 3), - (18, 3), - (19, 3), - (20, 3), - (21, 3), - (22, 3), - (23, 3), - (24, 3), - (25, 3), - (26, 3), - (27, 3), - (28, 2), - (28, 3), - (29, 3), - (30, 3), - (31, 3), - (32, 3), - (33, 3), - (34, 3), - (35, 3), - (36, 3), - (37, 3), - (38, 2), - (38, 3), - (38, 4), - (38, 5), - (39, 3), - (40, 3), - (41, 3), - (42, 3), - (43, 3), - (44, 3), - (45, 3), - (46, 2), - (46, 3), - (47, 3), - (48, 3), - (49, 3), - (50, 3), - (51, 3), - (52, 3), - (53, 3), - (54, 3), - (55, 3), - (56, 3), - (57, 3), - (58, 3), - (59, 3), - (60, 3), - (61, 3), - (62, 3), - (63, 3), - (64, 3), - (65, 3), - (66, 3), - (67, 3), - (68, 3), - (69, 3), - (70, 3), - (71, 3), - (72, 3), - (73, 3), - (74, 3), - (75, 3), - (76, 3), - (77, 3), - (78, 3), - (79, 3), - (80, 3), - (81, 3), - (82, 3); +-- Dumping data for table milsim_website_development.members_roles: ~102 rows (approximately) +INSERT INTO `members_roles` (`id`, `member_id`, `role_id`) VALUES + (1, 1, 3); +INSERT INTO `members_roles` (`id`, `member_id`, `role_id`) VALUES + (2, 2, 3), + (3, 3, 3), + (4, 4, 3), + (5, 5, 3), + (6, 5, 9), + (7, 6, 3), + (8, 7, 3), + (9, 8, 3), + (10, 9, 3), + (11, 10, 3), + (12, 11, 3), + (13, 12, 3), + (14, 12, 5), + (15, 13, 3), + (16, 14, 3), + (17, 15, 3), + (18, 16, 3), + (19, 17, 3), + (20, 18, 3), + (21, 19, 3), + (22, 20, 3), + (23, 20, 8), + (24, 21, 3), + (25, 22, 3), + (26, 23, 3), + (27, 24, 3), + (28, 25, 3), + (29, 26, 3), + (30, 27, 3), + (31, 28, 2), + (32, 28, 3), + (33, 29, 3), + (34, 30, 3), + (35, 31, 3), + (36, 32, 3), + (37, 33, 3), + (38, 34, 3), + (39, 35, 3), + (40, 36, 3), + (41, 37, 3), + (43, 38, 3), + (44, 38, 4), + (45, 38, 5), + (46, 38, 8), + (47, 38, 9), + (48, 39, 3), + (49, 40, 3), + (50, 41, 3), + (51, 41, 5), + (52, 42, 3), + (53, 42, 8), + (54, 43, 3), + (55, 43, 6), + (56, 44, 3), + (57, 45, 3), + (58, 46, 3), + (59, 46, 6), + (60, 47, 3), + (61, 48, 3), + (62, 48, 6), + (63, 48, 8), + (64, 49, 3), + (65, 50, 3), + (66, 51, 3), + (67, 52, 3), + (68, 53, 3), + (69, 53, 5), + (70, 53, 8), + (71, 54, 3), + (72, 55, 3), + (73, 56, 3), + (74, 57, 3), + (75, 58, 3), + (76, 59, 3), + (77, 60, 3), + (78, 61, 3), + (79, 61, 6), + (80, 62, 3), + (81, 63, 3), + (82, 64, 3), + (83, 65, 3), + (84, 66, 3), + (85, 67, 3), + (86, 67, 8), + (87, 68, 3), + (88, 69, 3), + (89, 70, 3), + (90, 71, 3), + (91, 72, 3), + (92, 73, 3), + (93, 74, 3), + (94, 74, 9), + (95, 75, 3), + (96, 76, 3), + (97, 77, 3), + (98, 78, 3), + (99, 79, 3), + (100, 80, 3), + (101, 81, 3), + (102, 82, 3), + (103, 38, 2), + (104, 216, 3), + (105, 174, 3), + (107, 28, 7); -- Dumping data for table milsim_website_development.members_statuses: ~89 rows (approximately) -INSERT INTO `members_statuses` (`id`, `member_id`, `status_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date`, `end_date`, `created_at`, `updated_at`) VALUES - (1, 173, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:50:25'); -INSERT INTO `members_statuses` (`id`, `member_id`, `status_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date`, `end_date`, `created_at`, `updated_at`) VALUES - (2, 28, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:50:25'), - (3, 3, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:50:25'), - (4, 61, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:50:25'), - (5, 45, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:50:25'), - (6, 62, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:50:25'), - (7, 77, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (8, 72, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (9, 47, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (10, 50, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (11, 57, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (12, 15, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (13, 256, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (14, 21, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (15, 79, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (16, 276, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:50:26'), - (17, 52, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (18, 53, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (19, 36, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (20, 23, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (21, 2, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (22, 12, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (23, 56, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (24, 17, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (25, 54, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (26, 38, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:50:27'), - (27, 40, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (28, 14, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (29, 42, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (30, 24, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (31, 64, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (32, 41, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (33, 65, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (34, 63, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (35, 37, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (36, 539, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:50:28'), - (37, 561, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (38, 35, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (39, 59, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (40, 49, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (41, 43, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (42, 58, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (43, 39, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (44, 27, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (45, 71, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (46, 731, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:50:29'), - (47, 29, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:50:30'), - (48, 51, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:50:30'), - (49, 82, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:50:30'), - (50, 11, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:50:30'), - (51, 69, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:50:30'), - (52, 74, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:50:30'), - (53, 81, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:50:30'), - (54, 46, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:50:31'), - (55, 76, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:50:31'), - (56, 26, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:50:31'), - (57, 32, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:50:31'), - (58, 48, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:50:31'), - (59, 55, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:50:31'), - (60, 70, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:50:31'), - (61, 19, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:50:31'), - (62, 1, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (63, 25, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (64, 78, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (65, 5, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (66, 9, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (67, 7, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (68, 10, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (69, 16, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (70, 985, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (71, 67, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:50:32'), - (72, 68, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (73, 66, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (74, 33, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (75, 22, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (76, 13, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (77, 30, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (78, 18, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (79, 20, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (80, 75, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (81, 44, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:50:33'), - (82, 8, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:50:34'), - (83, 80, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:50:34'), - (84, 6, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:50:34'), - (85, 4, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:50:34'), - (86, 73, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:50:34'), - (87, 31, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:50:34'), - (88, 60, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:50:34'), - (89, 34, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:50:34'); +INSERT INTO `members_statuses` (`id`, `member_id`, `status_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date_og`, `start_date`, `end_date_og`, `end_date`, `created_at`, `updated_at`) VALUES + (1, 173, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:17:00'); +INSERT INTO `members_statuses` (`id`, `member_id`, `status_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date_og`, `start_date`, `end_date_og`, `end_date`, `created_at`, `updated_at`) VALUES + (2, 28, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:17:00'), + (3, 3, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:17:00'), + (4, 61, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:17:00'), + (5, 45, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:17:00'), + (6, 62, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:17:00'), + (7, 77, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (8, 72, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (9, 47, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (10, 50, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (11, 57, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (12, 15, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (13, 256, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (14, 21, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (15, 79, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (16, 276, 4, 215, 215, 'Migration From Guilded', '2024-05-03 00:00:00', '2024-05-03', '2025-09-10 00:00:00', '2025-09-10', '2025-12-16 19:50:26', '2026-01-16 22:17:00'), + (17, 52, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (18, 53, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (19, 36, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (20, 23, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (21, 2, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (22, 12, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (23, 56, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (24, 17, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (25, 54, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (26, 38, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:17:00'), + (27, 40, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (28, 14, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (29, 42, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (30, 24, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (31, 64, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (32, 41, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (33, 65, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (34, 63, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (35, 37, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (36, 539, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:17:00'), + (37, 561, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (38, 35, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (39, 59, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (40, 49, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (41, 43, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (42, 58, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (43, 39, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (44, 27, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (45, 71, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (46, 731, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:17:00'), + (47, 29, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:17:00'), + (48, 51, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:17:00'), + (49, 82, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:17:00'), + (50, 11, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:17:00'), + (51, 69, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:17:00'), + (52, 74, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:17:00'), + (53, 81, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:17:00'), + (54, 46, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:17:00'), + (55, 76, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:17:00'), + (56, 26, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:17:00'), + (57, 32, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:17:00'), + (58, 48, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:17:00'), + (59, 55, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:17:00'), + (60, 70, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:17:00'), + (61, 19, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:17:00'), + (62, 1, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (63, 25, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (64, 78, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (65, 5, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (66, 9, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (67, 7, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (68, 10, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (69, 16, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (70, 985, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (71, 67, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:17:00'), + (72, 68, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (73, 66, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (74, 33, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (75, 22, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (76, 13, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (77, 30, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (78, 18, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (79, 20, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (80, 75, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (81, 44, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:17:00'), + (82, 8, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:17:00'), + (83, 80, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:17:00'), + (84, 6, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:17:00'), + (85, 4, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:17:00'), + (86, 73, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:17:00'), + (87, 31, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:17:00'), + (88, 60, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:17:00'), + (89, 34, 4, 215, 215, 'Migration From Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:17:00'); -- Dumping data for table milsim_website_development.members_unit: ~95 rows (approximately) -INSERT INTO `members_unit` (`id`, `member_id`, `unit_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date`, `end_date`, `created_at`, `updated_at`) VALUES - (1, 173, 2, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:51:39'); -INSERT INTO `members_unit` (`id`, `member_id`, `unit_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date`, `end_date`, `created_at`, `updated_at`) VALUES - (2, 28, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:51:34'), - (3, 3, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:51:35'), - (4, 61, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:51:35'), - (5, 45, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:51:40'), - (6, 62, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', NULL, '2025-12-16 19:50:25', '2025-12-16 19:51:40'), - (7, 77, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:40'), - (8, 72, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:40'), - (9, 47, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:41'), - (10, 50, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:41'), - (11, 57, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:41'), - (12, 15, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:41'), - (13, 256, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:41'), - (14, 21, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:41'), - (15, 79, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:42'), - (16, 276, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', NULL, '2025-12-16 19:50:26', '2025-12-16 19:51:42'), - (17, 52, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:42'), - (18, 53, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:42'), - (19, 36, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:42'), - (20, 23, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:42'), - (21, 2, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:43'), - (22, 12, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:43'), - (23, 56, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:43'), - (24, 17, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:43'), - (25, 54, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:44'), - (26, 38, 3, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', NULL, '2025-12-16 19:50:27', '2025-12-16 19:51:44'), - (27, 40, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:44'), - (28, 14, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:44'), - (29, 42, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:44'), - (30, 24, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:45'), - (31, 64, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:45'), - (32, 41, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:45'), - (33, 65, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:45'), - (34, 63, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:45'), - (35, 37, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:45'), - (36, 539, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', NULL, '2025-12-16 19:50:28', '2025-12-16 19:51:46'), - (37, 561, 2, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:46'), - (38, 35, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:46'), - (39, 59, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:46'), - (40, 49, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:46'), - (41, 43, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:47'), - (42, 58, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:47'), - (43, 39, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:47'), - (44, 27, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:47'), - (45, 71, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:47'), - (46, 731, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', NULL, '2025-12-16 19:50:29', '2025-12-16 19:51:47'), - (47, 29, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:51:48'), - (48, 51, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:51:48'), - (49, 82, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:51:48'), - (50, 11, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:51:48'), - (51, 69, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:51:48'), - (52, 74, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:51:49'), - (53, 81, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:51:49'), - (54, 46, 3, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', NULL, '2025-12-16 19:50:30', '2025-12-16 19:51:49'), - (55, 76, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:51:49'), - (56, 26, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:51:49'), - (57, 32, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:51:49'), - (58, 48, 3, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:51:50'), - (59, 55, 2, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:51:50'), - (60, 70, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:51:50'), - (61, 19, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', NULL, '2025-12-16 19:50:31', '2025-12-16 19:51:50'), - (62, 1, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:50'), - (63, 25, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:50'), - (64, 78, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:51'), - (65, 5, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:51'), - (66, 9, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:51'), - (67, 7, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:52'), - (68, 10, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:52'), - (69, 16, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:52'), - (70, 985, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:52'), - (71, 67, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:52'), - (72, 68, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', NULL, '2025-12-16 19:50:32', '2025-12-16 19:51:53'), - (73, 66, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:53'), - (74, 33, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:53'), - (75, 22, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:53'), - (76, 13, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:53'), - (77, 30, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:53'), - (78, 18, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:54'), - (79, 20, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:54'), - (80, 75, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:54'), - (81, 44, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:54'), - (82, 8, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', NULL, '2025-12-16 19:50:33', '2025-12-16 19:51:55'), - (83, 80, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:51:55'), - (84, 6, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:51:55'), - (85, 4, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:51:55'), - (86, 73, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:51:55'), - (87, 31, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:51:56'), - (88, 60, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:51:56'), - (89, 34, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', NULL, '2025-12-16 19:50:34', '2025-12-16 19:51:56'), - (90, 557, 6, 166, 166, 'Migration from Guilded', '2025-12-17 11:10:08', NULL, '2025-12-17 11:10:08', '2025-12-17 11:10:09'), - (91, 357, 6, 166, 166, '', '2025-12-18 01:07:32', NULL, '2025-12-18 01:07:32', '2025-12-18 01:07:32'), - (92, 672, 6, 166, 166, '', '2025-12-18 01:09:26', NULL, '2025-12-18 01:09:26', '2025-12-18 01:09:26'), - (93, 1067, 6, 166, 166, '', '2025-12-18 01:10:25', NULL, '2025-12-18 01:10:25', '2025-12-18 01:10:25'), - (94, 1104, 6, 166, 166, '', '2025-12-18 01:10:44', NULL, '2025-12-18 01:10:44', '2025-12-18 01:10:44'), - (95, 612, 6, 166, 166, '', '2025-12-18 01:11:25', NULL, '2025-12-18 01:11:25', '2025-12-18 01:11:25'); +INSERT INTO `members_unit` (`id`, `member_id`, `unit_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date_og`, `start_date`, `end_date_og`, `end_date`, `created_at`, `updated_at`) VALUES + (1, 173, 2, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:42:56'); +INSERT INTO `members_unit` (`id`, `member_id`, `unit_id`, `authorized_by_id`, `created_by_id`, `reason`, `start_date_og`, `start_date`, `end_date_og`, `end_date`, `created_at`, `updated_at`) VALUES + (2, 28, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:42:56'), + (3, 3, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:42:56'), + (4, 61, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:42:56'), + (5, 45, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:42:56'), + (6, 62, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:25', '2025-12-16', NULL, NULL, '2025-12-16 19:50:25', '2026-01-16 22:42:56'), + (7, 77, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (8, 72, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (9, 47, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (10, 50, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (11, 57, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (12, 15, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (13, 256, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (14, 21, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (15, 79, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', NULL, NULL, '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (16, 276, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:26', '2025-12-16', '2025-09-10 00:00:00', '2025-09-10', '2025-12-16 19:50:26', '2026-01-16 22:42:56'), + (17, 52, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (18, 53, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (19, 36, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (20, 23, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (21, 2, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (22, 12, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (23, 56, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (24, 17, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (25, 54, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (26, 38, 3, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:27', '2025-12-16', NULL, NULL, '2025-12-16 19:50:27', '2026-01-16 22:42:56'), + (27, 40, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (28, 14, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (29, 42, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (30, 24, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (31, 64, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (32, 41, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (33, 65, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (34, 63, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (35, 37, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (36, 539, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:28', '2025-12-16', NULL, NULL, '2025-12-16 19:50:28', '2026-01-16 22:42:56'), + (37, 561, 2, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (38, 35, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (39, 59, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (40, 49, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (41, 43, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (42, 58, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (43, 39, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (44, 27, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (45, 71, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (46, 731, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:29', '2025-12-16', NULL, NULL, '2025-12-16 19:50:29', '2026-01-16 22:42:56'), + (47, 29, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:42:56'), + (48, 51, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:42:56'), + (49, 82, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:42:56'), + (50, 11, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:42:56'), + (51, 69, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:42:56'), + (52, 74, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:42:56'), + (53, 81, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:42:56'), + (54, 46, 3, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:30', '2025-12-16', NULL, NULL, '2025-12-16 19:50:30', '2026-01-16 22:42:56'), + (55, 76, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:42:56'), + (56, 26, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:42:56'), + (57, 32, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:42:56'), + (58, 48, 3, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:42:56'), + (59, 55, 2, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:42:56'), + (60, 70, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:42:56'), + (61, 19, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:31', '2025-12-16', NULL, NULL, '2025-12-16 19:50:31', '2026-01-16 22:42:56'), + (62, 1, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (63, 25, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (64, 78, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (65, 5, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (66, 9, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (67, 7, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (68, 10, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (69, 16, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (70, 985, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (71, 67, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (72, 68, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:32', '2025-12-16', NULL, NULL, '2025-12-16 19:50:32', '2026-01-16 22:42:56'), + (73, 66, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (74, 33, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (75, 22, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (76, 13, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (77, 30, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (78, 18, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (79, 20, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (80, 75, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (81, 44, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (82, 8, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:33', '2025-12-16', NULL, NULL, '2025-12-16 19:50:33', '2026-01-16 22:42:56'), + (83, 80, 5, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:42:56'), + (84, 6, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:42:56'), + (85, 4, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:42:56'), + (86, 73, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:42:56'), + (87, 31, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:42:56'), + (88, 60, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:42:56'), + (89, 34, 4, 166, 166, 'Migration from Guilded', '2025-12-16 19:50:34', '2025-12-16', NULL, NULL, '2025-12-16 19:50:34', '2026-01-16 22:42:56'), + (90, 557, 6, 166, 166, 'Migration from Guilded', '2025-12-17 11:10:08', '2025-12-17', NULL, NULL, '2025-12-17 11:10:08', '2026-01-16 22:42:56'), + (91, 357, 6, 166, 166, '', '2025-12-18 01:07:32', '2025-12-18', NULL, NULL, '2025-12-18 01:07:32', '2026-01-16 22:42:56'), + (92, 672, 6, 166, 166, '', '2025-12-18 01:09:26', '2025-12-18', NULL, NULL, '2025-12-18 01:09:26', '2026-01-16 22:42:56'), + (93, 1067, 6, 166, 166, '', '2025-12-18 01:10:25', '2025-12-18', NULL, NULL, '2025-12-18 01:10:25', '2026-01-16 22:42:56'), + (94, 1104, 6, 166, 166, '', '2025-12-18 01:10:44', '2025-12-18', NULL, NULL, '2025-12-18 01:10:44', '2026-01-16 22:42:56'), + (95, 612, 6, 166, 166, '', '2025-12-18 01:11:25', '2025-12-18', NULL, NULL, '2025-12-18 01:11:25', '2026-01-16 22:42:56'); -- Dumping data for table milsim_website_development.mission_attendee_roles: ~0 rows (approximately) @@ -104077,7 +106359,7 @@ INSERT INTO `roles` (`id`, `name`, `color`, `description`) VALUES (8, '17th HQ', '#000000', NULL), (9, '17th Recruiter', '#7e2626', NULL); --- Dumping data for table milsim_website_development.site_config: ~1 rows (approximately) +-- Dumping data for table milsim_website_development.site_config: ~0 rows (approximately) INSERT INTO `site_config` (`id`, `discord_guild_id`, `application_unit_on_accept`, `application_rank_on_accept`, `application_status_on_accept`, `loa_consecutive_gap_days`, `loa_consecutive_count`) VALUES (1, NULL, 2, 1, 2, 0, 0); diff --git a/api/scripts/migrate.js b/api/scripts/migrate.js index 7dde6da..aae79b0 100644 --- a/api/scripts/migrate.js +++ b/api/scripts/migrate.js @@ -2,8 +2,7 @@ const dotenv = require('dotenv'); const path = require('path'); const { execSync } = require('child_process'); -const mode = process.env.NODE_ENV || "development"; -dotenv.config({ path: path.resolve(process.cwd(), `.env.${mode}`) }); +dotenv.config({ path: path.resolve(process.cwd(), `.env`) }); const db = { user: process.env.DB_USERNAME, @@ -12,17 +11,17 @@ const db = { port: process.env.DB_PORT, name: process.env.DB_DATABASE, }; -const dbUrl = `mysql://${db.user}:${db.pass}@tcp(host.docker.internal:${db.port})/${db.name}`; +const dbUrl = `mysql://${db.user}:${db.pass}@tcp(${db.host}:${db.port})/${db.name}`; const args = process.argv.slice(2).join(" "); const migrations = path.join(process.cwd(), "migrations"); const cmd = [ "docker run --rm", - `-v ${migrations}:/migrations`, + `-v "${migrations}:/migrations"`, "migrate/migrate", - `-path=/migrations`, - `-database \"${dbUrl}\"`, + "-path=/migrations", + `-database "mysql://${db.user}:${db.pass}@tcp(${db.host}:${db.port})/${db.name}"`, // Use double quotes args, ].join(" "); diff --git a/api/scripts/seed.js b/api/scripts/seed.js index 88ba22a..21c30f0 100644 --- a/api/scripts/seed.js +++ b/api/scripts/seed.js @@ -3,13 +3,13 @@ const path = require("path"); const mariadb = require("mariadb"); const fs = require("fs"); -const mode = process.env.NODE_ENV || "development"; -dotenv.config({ path: path.resolve(process.cwd(), `.env.${mode}`) }); +dotenv.config({ path: path.resolve(process.cwd(), `.env`) }); -const { DB_HOST, DB_PORT, DB_USERNAME, DB_PASSWORD, DB_NAME } = process.env; +const { DB_HOST, DB_PORT, DB_USERNAME, DB_PASSWORD, DB_DATABASE, APPLICATION_ENVIRONMENT } = process.env; //do not accidentally seed prod pls -if (mode !== "development") { +if (APPLICATION_ENVIRONMENT !== "dev") { + console.log("PLEASE DO NOT SEED PROD!!!!"); process.exit(0); } @@ -19,7 +19,7 @@ if (mode !== "development") { port: DB_PORT, user: DB_USERNAME, password: DB_PASSWORD, - database: DB_NAME, + database: DB_DATABASE, multipleStatements: true, });